diff --git a/monitoring/uss_qualifier/configurations/dev/geoawareness_cis.yaml b/monitoring/uss_qualifier/configurations/dev/geoawareness_cis.yaml index 25b30da1f3..2420794d27 100644 --- a/monitoring/uss_qualifier/configurations/dev/geoawareness_cis.yaml +++ b/monitoring/uss_qualifier/configurations/dev/geoawareness_cis.yaml @@ -3,15 +3,25 @@ v1: test_run: resources: resource_declarations: - source_document: + source_document_ed269: resource_type: resources.eurocae.ed269.source_document.SourceDocument specification: - url: file://./test_data/che/geoawareness/cis_source_sample.json + url: file://./test_data/che/geoawareness/cis_source_sample_ed269.json + source_document_ed318: + resource_type: resources.eurocae.ed318.source_document.SourceDocument + specification: + url: file://./test_data/che/geoawareness/cis_source_sample_ed318.json + source_schema_ed318_geozones: + resource_type: resources.eurocae.ed318.source_schema.SourceSchema + specification: + url: file://./test_data/che/geoawareness/flattened_schema.json action: test_suite: suite_type: suites.uspace.geo_awareness_cis resources: - source_document: source_document + source_document_ed269: source_document_ed269 + source_document_ed318: source_document_ed318 + source_schema_ed318_geozones: source_schema_ed318_geozones execution: stop_fast: true artifacts: diff --git a/monitoring/uss_qualifier/resources/eurocae/ed318/__init__.py b/monitoring/uss_qualifier/resources/eurocae/ed318/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/monitoring/uss_qualifier/resources/eurocae/ed318/source_document.py b/monitoring/uss_qualifier/resources/eurocae/ed318/source_document.py new file mode 100644 index 0000000000..afb39ef215 --- /dev/null +++ b/monitoring/uss_qualifier/resources/eurocae/ed318/source_document.py @@ -0,0 +1,23 @@ +from implicitdict import ImplicitDict + +from monitoring.uss_qualifier import fileio +from monitoring.uss_qualifier.resources.resource import Resource + + +class SourceDocumentSpecification(ImplicitDict): + url: str + """Url of the ED-318 document to verify""" + + +class SourceDocument(Resource[SourceDocumentSpecification]): + specification: SourceDocumentSpecification + + raw_document: str + """Content of the document""" + + def __init__( + self, specification: SourceDocumentSpecification, resource_origin: str + ): + super(SourceDocument, self).__init__(specification, resource_origin) + self.specification = specification + self.raw_document = fileio.load_content(specification.url) diff --git a/monitoring/uss_qualifier/resources/eurocae/ed318/source_schema.py b/monitoring/uss_qualifier/resources/eurocae/ed318/source_schema.py new file mode 100644 index 0000000000..6b0e542bf0 --- /dev/null +++ b/monitoring/uss_qualifier/resources/eurocae/ed318/source_schema.py @@ -0,0 +1,22 @@ +from implicitdict import ImplicitDict + +from monitoring.uss_qualifier import fileio +from monitoring.uss_qualifier.resources.resource import Resource + +class SourceSchemaSpecification(ImplicitDict): + url: str + """Url of the ED-318 schema to verify""" + + +class SourceSchema(Resource[SourceSchemaSpecification]): + specification: SourceSchemaSpecification + + raw_schema: str + """Content of the schema""" + + def __init__( + self, specification: SourceSchemaSpecification, resource_origin: str + ): + super(SourceSchema, self).__init__(specification, resource_origin) + self.specification = specification + self.raw_schema = fileio.load_content(specification.url) \ No newline at end of file diff --git a/monitoring/uss_qualifier/scenarios/eurocae/ed318/__init__.py b/monitoring/uss_qualifier/scenarios/eurocae/ed318/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/monitoring/uss_qualifier/scenarios/eurocae/ed318/source_data_model.md b/monitoring/uss_qualifier/scenarios/eurocae/ed318/source_data_model.md new file mode 100644 index 0000000000..89efb5fb21 --- /dev/null +++ b/monitoring/uss_qualifier/scenarios/eurocae/ed318/source_data_model.md @@ -0,0 +1,23 @@ +# EUROCAE ED-318 UAS geographical zone model test scenario + +## Overview + +This scenario verifies that a JSON document complies with the ED-318 UAS Geographical Zone Model for Geo-Awareness purpose. + +## Resources + +### source_document + +The file or url of the document to be tested. + +## ED-318 data model compliance test case + +### Valid source test step + +#### 🛑 Valid JSON check + +The JSON file is properly formatted and can be read successfully. + +#### 🛑 Valid schema and values check + +The file respects the ED-318 schema and values are valid. diff --git a/monitoring/uss_qualifier/scenarios/eurocae/ed318/source_data_model.py b/monitoring/uss_qualifier/scenarios/eurocae/ed318/source_data_model.py new file mode 100644 index 0000000000..5b0039c945 --- /dev/null +++ b/monitoring/uss_qualifier/scenarios/eurocae/ed318/source_data_model.py @@ -0,0 +1,79 @@ +import json +from typing import List +from jsonschema import validate + +from implicitdict import ImplicitDict, StringBasedDateTime + +from monitoring.uss_qualifier.resources.eurocae.ed318.source_document import ( + SourceDocument, +) +from monitoring.uss_qualifier.resources.eurocae.ed318.source_schema import ( + SourceSchema, +) +from monitoring.uss_qualifier.scenarios.scenario import TestScenario +from monitoring.uss_qualifier.suites.suite import ExecutionContext + + +class SourceDataModelValidation(TestScenario): + source_document: SourceDocument + source_schema: SourceSchema + + def __init__(self, source_document: SourceDocument, source_schema: SourceSchema): + super().__init__() + self.source_document = source_document + self.source_schema = source_schema + + def run(self, context: ExecutionContext): + self.begin_test_scenario(context) + + self.record_note( + "Document", + f"Ready at {self.source_document.specification.url}", + ) + self.record_note( + "Schema", + f"Ready at {self.source_schema.specification.url}", + ) + + self.begin_test_case("ED-318 data model compliance") + self.begin_test_step("Valid source") + + data = None + with self.check( + "Valid JSON", [self.source_document.specification.url], + ) as check: + try: + data = json.loads(self.source_document.raw_document) + except json.decoder.JSONDecodeError as e: + check.record_failed( + summary="Unable to deserialize the document as JSON", + details=str(e), + ) + + schema = None + with self.check( + "Valid JSON", [self.source_schema.specification.url], + ) as check: + try: + schema = json.loads(self.source_schema.raw_schema) + except json.decoder.JSONDecodeError as e: + check.record_failed( + summary="Unable to deserialize the document as JSON", + details=str(e), + ) + + if data and schema: + with self.check( + "Valid schema and values", [self.source_document.specification.url] + ) as check: + try: + validate(instance=data, schema=schema) + except ValueError as e: + check.record_failed( + summary="Invalid format error", + details=str(e), + ) + + self.end_test_step() + self.end_test_case() + self.end_test_scenario() diff --git a/monitoring/uss_qualifier/suites/uspace/geo_awareness_cis.yaml b/monitoring/uss_qualifier/suites/uspace/geo_awareness_cis.yaml index c4b9a0d435..5d6888132a 100644 --- a/monitoring/uss_qualifier/suites/uspace/geo_awareness_cis.yaml +++ b/monitoring/uss_qualifier/suites/uspace/geo_awareness_cis.yaml @@ -1,9 +1,17 @@ name: U-Space Common Information Service resources: - source_document: resources.eurocae.ed269.source_document.SourceDocument + source_document_ed269: resources.eurocae.ed269.source_document.SourceDocument + source_document_ed318: resources.eurocae.ed318.source_document.SourceDocument + source_schema_ed318_geozones: resources.eurocae.ed318.source_schema.SourceSchema actions: - test_scenario: scenario_type: scenarios.eurocae.ed269.source_data_model.SourceDataModelValidation resources: - source_document: source_document + source_document: source_document_ed269 + on_failure: Abort + - test_scenario: + scenario_type: scenarios.eurocae.ed318.source_data_model.SourceDataModelValidation + resources: + source_document: source_document_ed318 + source_schema: source_schema_ed318_geozones on_failure: Abort diff --git a/monitoring/uss_qualifier/test_data/che/geoawareness/Schema_GeoJSONGeometries.json b/monitoring/uss_qualifier/test_data/che/geoawareness/Schema_GeoJSONGeometries.json new file mode 100644 index 0000000000..a5ea57a93d --- /dev/null +++ b/monitoring/uss_qualifier/test_data/che/geoawareness/Schema_GeoJSONGeometries.json @@ -0,0 +1,251 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "title": "Any one of the GeoJSON geometry types, including LayeredGeoJSON validation.", + "definitions": { + "normalGeometry": { + "allOf": [ + { + "oneOf": [ + {"type": "null"}, + { + "title": "GeoJSON Point with LayeredGeoJSON extent validation", + "type": "object", + "required": [ + "type", + "coordinates" + ], + "properties": { + "type": { + "type": "string", + "enum": ["Point"] + }, + "coordinates": { + "type": "array", + "minItems": 2, + "items": {"type": "number"} + }, + "bbox": { + "type": "array", + "minItems": 4, + "items": {"type": "number"} + } + }, + "extent": { + "type": "object", + "required": [ + "subType", + "radius" + ], + "properties": { + "subType": { + "type": "string", + "enum": [ + "Circle" + ] + }, + "radius": { + "type": "number" + } + } + } + }, + { + "title": "GeoJSON LineString", + "type": "object", + "required": [ + "type", + "coordinates" + ], + "properties": { + "type": { + "type": "string", + "enum": ["LineString"] + }, + "coordinates": { + "type": "array", + "minItems": 2, + "items": { + "type": "array", + "minItems": 2, + "items": {"type": "number"} + } + }, + "bbox": { + "type": "array", + "minItems": 4, + "items": {"type": "number"} + } + } + }, + { + "title": "GeoJSON Polygon", + "type": "object", + "required": [ + "type", + "coordinates" + ], + "properties": { + "type": { + "type": "string", + "enum": ["Polygon"] + }, + "coordinates": { + "type": "array", + "items": { + "type": "array", + "minItems": 4, + "items": { + "type": "array", + "minItems": 2, + "items": {"type": "number"} + } + } + }, + "bbox": { + "type": "array", + "minItems": 4, + "items": {"type": "number"} + } + } + }, + { + "title": "GeoJSON MultiPoint", + "type": "object", + "required": [ + "type", + "coordinates" + ], + "properties": { + "type": { + "type": "string", + "enum": ["MultiPoint"] + }, + "coordinates": { + "type": "array", + "items": { + "type": "array", + "minItems": 2, + "items": {"type": "number"} + } + }, + "bbox": { + "type": "array", + "minItems": 4, + "items": {"type": "number"} + } + } + }, + { + "title": "GeoJSON MultiLineString", + "type": "object", + "required": [ + "type", + "coordinates" + ], + "properties": { + "type": { + "type": "string", + "enum": ["MultiLineString"] + }, + "coordinates": { + "type": "array", + "items": { + "type": "array", + "minItems": 2, + "items": { + "type": "array", + "minItems": 2, + "items": {"type": "number"} + } + } + }, + "bbox": { + "type": "array", + "minItems": 4, + "items": {"type": "number"} + } + } + }, + { + "title": "GeoJSON MultiPolygon", + "type": "object", + "required": [ + "type", + "coordinates" + ], + "properties": { + "type": { + "type": "string", + "enum": ["MultiPolygon"] + }, + "coordinates": { + "type": "array", + "items": { + "type": "array", + "items": { + "type": "array", + "minItems": 4, + "items": { + "type": "array", + "minItems": 2, + "items": {"type": "number"} + } + } + } + }, + "bbox": { + "type": "array", + "minItems": 4, + "items": {"type": "number"} + } + } + } + ] + }, + { + "$ref": "./Schema_LayeredGeoJSON.json" + } + ] + }, + "geometryCollection": { + "allOf": [ + { + "title": "GeoJSON GeometryCollection", + "type": "object", + "required": [ + "type", + "geometries" + ], + "properties": { + "type": { + "type": "string", + "enum": ["GeometryCollection"] + }, + "geometries": { + "type": "array", + "items": { + "$ref": "#/definitions/normalGeometry" + } + }, + "bbox": { + "type": "array", + "minItems": 4, + "items": {"type": "number"} + } + } + }, + { + "$ref": "./Schema_LayeredGeoJSON.json" + } + ] + } + }, + "oneOf": [ + { + "$ref": "#/definitions/normalGeometry" + }, + { + "$ref": "#/definitions/geometryCollection" + } + ] +} \ No newline at end of file diff --git a/monitoring/uss_qualifier/test_data/che/geoawareness/Schema_GeoZoneAuthority.json b/monitoring/uss_qualifier/test_data/che/geoawareness/Schema_GeoZoneAuthority.json new file mode 100644 index 0000000000..4f55ce5143 --- /dev/null +++ b/monitoring/uss_qualifier/test_data/che/geoawareness/Schema_GeoZoneAuthority.json @@ -0,0 +1,47 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "title": "authority", + "type": "object", + "properties": { + "name": { + "type": "array", + "items": { + "minItems": 1, + "$ref": "./Schema_GeoZoneDataTypes.json#/definitions/textShortType" + } + }, + "service": { + "type": "array", + "items": { + "minItems": 1, + "$ref": "./Schema_GeoZoneDataTypes.json#/definitions/textShortType" + } + }, + "contactName": { + "type": "array", + "items": { + "minItems": 1, + "$ref": "./Schema_GeoZoneDataTypes.json#/definitions/textShortType" + } + }, + "siteURL": { + "type": "string", + "format": "uri" + }, + "email": { + "type": "string", + "format": "email" + }, + "phone": { + "type": "string", + "maxLength": 200 + }, + "purpose": {"$ref": "./Schema_GeoZoneDataTypes.json#/definitions/authorityRole"}, + "intervalBefore": { + "description": "A period of time expressed according to the ISO 8601 rules for time intervals.", + "type": "string", + "format": "duration" + } + }, + "required": ["purpose"] +} \ No newline at end of file diff --git a/monitoring/uss_qualifier/test_data/che/geoawareness/Schema_GeoZoneCollectionMetadata.json b/monitoring/uss_qualifier/test_data/che/geoawareness/Schema_GeoZoneCollectionMetadata.json new file mode 100644 index 0000000000..ecf1b01628 --- /dev/null +++ b/monitoring/uss_qualifier/test_data/che/geoawareness/Schema_GeoZoneCollectionMetadata.json @@ -0,0 +1,42 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "title": "collection metadata", + "type": "object", + "properties": { + "validFrom": { + "type": "string", + "format": "date-time" + }, + "validTo": { + "type": "string", + "format": "date-time" + }, + "issued": { + "type": "string", + "format": "date-time" + }, + "provider": { + "type": "array", + "items": { + "minItems": 1, + "$ref": "./Schema_GeoZoneDataTypes.json#/definitions/textShortType" + } + }, + "description": { + "type": "array", + "items": { + "minItems": 1, + "$ref": "./Schema_GeoZoneDataTypes.json#/definitions/textShortType" + } + }, + "otherGeoid": {"$ref": "./Schema_GeoZoneDataTypes.json#/definitions/URNType"}, + "technicalLimitations": { + "type": "array", + "items": { + "minItems": 1, + "$ref": "./Schema_GeoZoneDataTypes.json#/definitions/textShortType" + } + } + }, + "required": [] +} diff --git a/monitoring/uss_qualifier/test_data/che/geoawareness/Schema_GeoZoneDataTypes.json b/monitoring/uss_qualifier/test_data/che/geoawareness/Schema_GeoZoneDataTypes.json new file mode 100644 index 0000000000..608989508b --- /dev/null +++ b/monitoring/uss_qualifier/test_data/che/geoawareness/Schema_GeoZoneDataTypes.json @@ -0,0 +1,127 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "title": "geoZonesDataTypes", + "type": "object", + "additionalProperties": false, + "definitions": { + "zoneType": { + "type": "string", + "enum": [ + "USPACE", + "PROHIBITED", + "REQ_AUTHORIZATION", + "CONDITIONAL", + "NO_RESTRICTION" + ] + }, + "zoneVariant": { + "type": "string", + "enum": [ + "COMMON", + "CUSTOMIZED" + ] + }, + "zoneReason" : { + "type": "array", + "maxItems": 9, + "items": { + "type": "string", + "enum": [ + "AIR_TRAFFIC", + "SENSITIVE", + "PRIVACY", + "POPULATION", + "NATURE", + "NOISE", + "EMERGENCY", + "DAR", + "OTHER" + ] + } + }, + "weekDayType": { + "type": "string", + "enum": [ + "MON", + "TUE", + "WED", + "THU", + "FRI", + "SAT", + "SUN", + "ANY" + ] + }, + "daylightEventType": { + "type": "string", + "enum": [ + "BMCT", + "SR", + "SS", + "EECT" + ] + }, + "authorityRole": { + "type": "string", + "enum": [ + "AUTHORIZATION", + "NOTIFICATION", + "INFORMATION" + ] + }, + "yesNoType" : { + "type": "string", + "enum": [ + "YES", + "NO" + ] + }, + "textShortType": { + "type": "object", + "properties": { + "text": { + "type": "string", + "maxLength": 200 + }, + "lang": { + "type": "string", + "maxLength": 5 + } + }, + "required": ["lang"] + }, + "textLongType": { + "type": "object", + "properties": { + "text": { + "type": "string", + "maxLength": 1000 + }, + "lang": { + "type": "string", + "maxLength": 5 + } + }, + "required": ["lang"] + }, + "URNType": {"type": "string"}, + "metadata": { + "type": "object", + "properties": { + "creationDate": { + "type": "string", + "format": "DateTimeType" + }, + "updateDateTime": { + "type": "string", + "format": "DateTimeType" + }, + "originator": { + "$ref": "#/definitions/textShortType" + } + } + } + }, + "properties": {}, + "required": [] +} \ No newline at end of file diff --git a/monitoring/uss_qualifier/test_data/che/geoawareness/Schema_GeoZoneProperties.json b/monitoring/uss_qualifier/test_data/che/geoawareness/Schema_GeoZoneProperties.json new file mode 100644 index 0000000000..0200aa5848 --- /dev/null +++ b/monitoring/uss_qualifier/test_data/che/geoawareness/Schema_GeoZoneProperties.json @@ -0,0 +1,62 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "title": "UASZoneVersion", + "type": "object", + "properties": { + "identifier": { + "type": "string", + "maxLength": 7 + }, + "country": { + "type": "string", + "minLength": 3, + "maxLength": 3 + }, + "name": { + "type": "array", + "items": { + "minItems": 1, + "$ref": "./Schema_GeoZoneDataTypes.json#/definitions/textShortType" + } + }, + "type": {"$ref": "./Schema_GeoZoneDataTypes.json#/definitions/zoneType"}, + "variant": {"$ref": "./Schema_GeoZoneDataTypes.json#/definitions/zoneVariant"}, + "restrictionConditions": {"type": "string"}, + "region": {"type": "integer"}, + "reason": {"$ref": "./Schema_GeoZoneDataTypes.json#/definitions/zoneReason"}, + "otherReasonInfo": { + "type": "array", + "items": { + "minItems": 1, + "$ref": "./Schema_GeoZoneDataTypes.json#/definitions/textShortType" + } + }, + "regulationExemption": {"$ref": "./Schema_GeoZoneDataTypes.json#/definitions/yesNoType"}, + "message": { + "type": "array", + "items": { + "minItems": 1, + "$ref": "./Schema_GeoZoneDataTypes.json#/definitions/textShortType" + } + }, + "zoneAuthority": { + "type": "array", + "items": {"$ref": "./Schema_GeoZoneAuthority.json"}, + "minItems": 1 + }, + "limitedApplicability": { + "type": "array", + "items": {"$ref": "./Schema_GeoZoneTimePeriod.json"} + }, + "dataSource": {"$ref": "./Schema_GeoZoneDataTypes.json#/definitions/metadata"}, + "extendedProperties": {"type": "object"} + }, + "required": [ + "identifier", + "country", + "type", + "variant", + "zoneAuthority" + ], + "additionalProperties": false +} \ No newline at end of file diff --git a/monitoring/uss_qualifier/test_data/che/geoawareness/Schema_GeoZoneTimePeriod.json b/monitoring/uss_qualifier/test_data/che/geoawareness/Schema_GeoZoneTimePeriod.json new file mode 100644 index 0000000000..b75f642f65 --- /dev/null +++ b/monitoring/uss_qualifier/test_data/che/geoawareness/Schema_GeoZoneTimePeriod.json @@ -0,0 +1,58 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "title": "timePeriod", + "type": "object", + "definitions": { + "dailyPeriod": { + "type": "object", + "additionalProperties": false, + "required": [ + "day" + ], + "properties": { + "day": { + "type": "array", + "items": { + "minItems": 1, + "maxItems": 7, + "$ref": "./Schema_GeoZoneDataTypes.json#/definitions/weekDayType" + } + }, + "startTime": { + "type": "string", + "format": "time" + }, + "startEvent": { + "$ref": "./Schema_GeoZoneDataTypes.json#/definitions/daylightEventType" + }, + "endTime": { + "type": "string", + "format": "time" + }, + "endEvent": { + "$ref": "./Schema_GeoZoneDataTypes.json#/definitions/daylightEventType" + } + } + } + }, + "properties": { + "startDateTime": { + "type": "string", + "format": "date-time" + }, + "endDateTime": { + "type": "string", + "format": "date-time" + }, + "schedule": { + "type": "array", + "items": { + "minItems": 1, + "$ref": "#/definitions/dailyPeriod" + } + } + }, + "additionalProperties": false, + "required": [] + +} \ No newline at end of file diff --git a/monitoring/uss_qualifier/test_data/che/geoawareness/Schema_GeoZones.json b/monitoring/uss_qualifier/test_data/che/geoawareness/Schema_GeoZones.json new file mode 100644 index 0000000000..c0227d07c1 --- /dev/null +++ b/monitoring/uss_qualifier/test_data/che/geoawareness/Schema_GeoZones.json @@ -0,0 +1,66 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "title": "GeoJSON FeatureCollection", + "type": "object", + "required": [ + "type", + "features" + ], + "properties": { + "type": { + "type": "string", + "enum": ["FeatureCollection"] + }, + "name": { + "type": "string", + "maxLength": 200 + }, + "bbox": { + "type": "array", + "minItems": 4, + "items": {"type": "number"} + }, + "metadata": {"$ref": "./Schema_GeoZoneCollectionMetadata.json"}, + "features": { + "type": "array", + "items": { + "title": "GeoJSON Feature", + "type": "object", + "required": [ + "type", + "properties", + "geometry" + ], + "properties": { + "type": { + "type": "string", + "enum": ["Feature"] + }, + "id": { + "oneOf": [ + {"type": "number"}, + {"type": "string"} + ] + }, + "properties": { + "oneOf": [ + {"type": "null"}, + {"$ref": "./Schema_GeoZoneProperties.json"} + ] + }, + "geometry": { + "oneOf": [ + {"type": "null"}, + {"$ref": "./Schema_GeoJSONGeometries.json"} + ] + }, + "bbox": { + "type": "array", + "minItems": 4, + "items": {"type": "number"} + } + } + } + } + } +} diff --git a/monitoring/uss_qualifier/test_data/che/geoawareness/Schema_LayeredGeoJSON.json b/monitoring/uss_qualifier/test_data/che/geoawareness/Schema_LayeredGeoJSON.json new file mode 100644 index 0000000000..4af27f6d6d --- /dev/null +++ b/monitoring/uss_qualifier/test_data/che/geoawareness/Schema_LayeredGeoJSON.json @@ -0,0 +1,47 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "title": "LayeredGeoJSON members", + "description": "A vertical layer extent for all standard GeoJSON geometries", + "type": "object", + "definitions": { + "verticalReference": { + "description": "A code indicating a vertical reference system. Allowed values:\nAGL = Above ground level (or above water surface, as applicable)\nAMSL = Above Mean Sea Level\nWGS84 = Above the surface of the WGS-84 ellipsoid (Ellipsoidal height)", + "type": "string", + "enum": [ + "AGL", + "AMSL", + "WGS84" + ] + } + }, + "properties": { + "layer": { + "type": "object", + "properties": { + "upper": { + "description": "The value of the upper limit of the airspace layer expressed in metres (m) or feet (ft), in relation with the vertical datum specified in the upperReference property. A positive value is interpreted as meaning \"above\" the reference surface.", + "type": "number" + }, + "upperReference": { + "$ref": "#/definitions/verticalReference" + }, + "lower": { + "description": "The value of the lower limit of the airspace layer expressed in metres (m) or feet (ft), in relation with the vertical datum specified in the lowerReference property. A positive value is interpreted as meaning \"above\" the reference surface.", + "type": "number" + }, + "lowerReference": { + "$ref": "#/definitions/verticalReference" + }, + "uom": { + "description": "The unit of measurement in which the upper and lower values are expressed. Allowable values:\nm = metres\nft = feet\nIf this member is not specified, the units should be assumed to be metres.", + "type": "string", + "enum": [ + "m", + "ft" + ], + "default": "m" + } + } + } + } +} \ No newline at end of file diff --git a/monitoring/uss_qualifier/test_data/che/geoawareness/SwissGeozones_ED318_Testdaten-errors.json b/monitoring/uss_qualifier/test_data/che/geoawareness/SwissGeozones_ED318_Testdaten-errors.json new file mode 100644 index 0000000000..d6b7e5acb6 --- /dev/null +++ b/monitoring/uss_qualifier/test_data/che/geoawareness/SwissGeozones_ED318_Testdaten-errors.json @@ -0,0 +1,340147 @@ +{ + "type" : "FeatureCollection", + "name" : "Test data of the Swiss UAS Geozones according to ED-318 converted from the ED-269 data model", + "bbox" : [ 5.9643748, 45.8193544, 10.5591277, 47.7720945 ], + "description" : "Test data of the Swiss UAS Geozones according to ED-318 - format version 2.0", + "metadata" : { + "validFrom" : "2016-09-15T00:00:00+02:00", + "provider" : [ + { + "text" : "BAZL", + "lang" : "de-CH" + }, + { + "text" : "OFAC", + "lang" : "fr-CH" + }, + { + "text" : "UFAC", + "lang" : "it-CH" + }, + { + "text" : "FOCA", + "lang" : "en-GB" + } + ], + "issued" : "2025-03-13T13:58:00+01:00", + "description" : [ + { + "text" : "Testdaten der Schweizerischen UAS Geozones, herausgegeben vom Bundesamt für Zivilluftfahrt (BAZL). Der Datensatz hat keine Rechtskraft. Umwandlung aus dem Modell ED-269", + "lang" : "de-CH" + }, + { + "text" : "Données de test des UAS Geozones suisses publiées par l'Office fédéral de l'aviation civile (OFAC). L'ensemble de données n'a pas de valeur juridique. Conversion à partir du modèle ED-269", + "lang" : "fr-CH" + }, + { + "text" : "Dati di prova delle Geozones UAS svizzere emesse dall'Ufficio federale dell'aviazione civile (UFAC). Il dataset non ha valore legale. Conversione dal modello ED-269", + "lang" : "it-CH" + }, + { + "text" : "Test data of the Swiss UAS Geozones issued by the Federal Office of Civil Aviation (FOCA). The dataset has no legal validity. Conversion from the ED-269 model", + "lang" : "en-GB" + } + ], + "otherGeoid" : "CHGeo2004", + "technicalLimitation" : [ + { + "text" : "Der Datensatz entsteht durch die Umwandlung der Originaldaten des ED-269-Modells ins neue ED-318. Für die Umwandlung sind einige Datenänderungen nötig", + "lang" : "de-CH" + }, + { + "text" : "Le fichier a été créé en convertissant les données originales du modèle ED-269 dans le nouveau ED-318. La conversion nécessite des modifications des données", + "lang" : "fr-CH" + }, + { + "text" : "Il dataset è stato creato convertendo i dati originali del modello ED-269 nel nuovo ED-318. Per la conversione alcune modifiche dei dati sono necessarie", + "lang" : "it-CH" + }, + { + "text" : "The dataset was created by converting the original data from the ED-269 model to the new ED-318. Some data modifications are necessary for conversion", + "lang" : "en-GB" + } + ] + }, + "features" : [ + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4355068, 46.9402526 ], + [ 7.4368695, 46.9418327 ], + [ 7.4387706, 46.9437947 ], + [ 7.4408192, 46.9456857 ], + [ 7.4430096, 46.9475007 ], + [ 7.4453359, 46.9492347 ], + [ 7.4477917, 46.9508829 ], + [ 7.4503702, 46.9524407 ], + [ 7.4530644, 46.9539039 ], + [ 7.4558669, 46.9552685 ], + [ 7.45877, 46.9565308 ], + [ 7.4617657, 46.9576872 ], + [ 7.4648458, 46.9587345 ], + [ 7.4680019, 46.95967 ], + [ 7.4712253, 46.9604911 ], + [ 7.4745071, 46.9611954 ], + [ 7.4778383, 46.961781 ], + [ 7.4812098, 46.9622464 ], + [ 7.4846123, 46.9625903 ], + [ 7.4880365, 46.9628117 ], + [ 7.4914728, 46.9629099 ], + [ 7.494912, 46.9628848 ], + [ 7.4983446, 46.9627365 ], + [ 7.5017610999999995, 46.9624652 ], + [ 7.5051521, 46.9620718 ], + [ 7.5085083, 46.9615573 ], + [ 7.5093889, 46.9613887 ], + [ 7.4355068, 46.9402526 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 60, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZB003", + "country" : "CHE", + "name" : [ + { + "text" : "LSZB Bern-Belp 2", + "lang" : "de-CH" + }, + { + "text" : "LSZB Bern-Belp 2", + "lang" : "fr-CH" + }, + { + "text" : "LSZB Bern-Belp 2", + "lang" : "it-CH" + }, + { + "text" : "LSZB Bern-Belp 2", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Special Flight Office (SFO)", + "lang" : "de-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "fr-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "it-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "en-GB" + } + ], + "siteURL" : "https://skyguide.ch/services/special-flights", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "foo", + "fee" : [ + [ + [ faa, 47.4931128 ], + [ 7.5380571, 47.4931546 ], + [ 7.538315, 47.4932532 ], + [ 7.5385897, 47.493358 ], + [ 7.5386419, 47.4933807 ], + [ 7.5387059, 47.4933811 ], + [ 7.538958, 47.493485 ], + [ 7.5390456, 47.4935621 ], + [ 7.5391291, 47.4935929 ], + [ 7.5391899, 47.493658 ], + [ 7.5392657, 47.4937026 ], + [ 7.5394173, 47.493705 ], + [ 7.5394293, 47.49368 ], + [ 7.5394407, 47.4936561 ], + [ 7.5396604, 47.4931961 ], + [ 7.538932, 47.4930931 ], + [ 7.5381406, 47.4929805 ], + [ 7.5380771, 47.4931128 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns058", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Langmatt", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Langmatt", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Langmatt", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Langmatt", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.1289534, 46.9783049 ], + [ 7.1285816, 46.9789731 ], + [ 7.136025, 46.9802911 ], + [ 7.136396, 46.9795329 ], + [ 7.130964, 46.9786 ], + [ 7.1311429, 46.9781174 ], + [ 7.1295214, 46.9778234 ], + [ 7.1292357, 46.9783542 ], + [ 7.1289534, 46.9783049 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSTB002", + "country" : "CHE", + "name" : [ + { + "text" : "LSTB Bellechasse (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSTB Bellechasse (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSTB Bellechasse (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSTB Bellechasse (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Segelfluggruppe Freiburg", + "lang" : "de-CH" + }, + { + "text" : "Segelfluggruppe Freiburg", + "lang" : "fr-CH" + }, + { + "text" : "Segelfluggruppe Freiburg", + "lang" : "it-CH" + }, + { + "text" : "Segelfluggruppe Freiburg", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Reto Petri", + "lang" : "de-CH" + }, + { + "text" : "Reto Petri", + "lang" : "fr-CH" + }, + { + "text" : "Reto Petri", + "lang" : "it-CH" + }, + { + "text" : "Reto Petri", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.sg-freiburg.com/kontakt", + "email" : "flugplatzleiter@sg-freiburg.ch", + "phone" : "0041266731933", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P02DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.887319699999999, 46.1667559 ], + [ 8.887262400000001, 46.1660143 ], + [ 8.8855276, 46.1659331 ], + [ 8.8855738, 46.1644039 ], + [ 8.8874688, 46.1603847 ], + [ 8.8726788, 46.1583828 ], + [ 8.8713434, 46.1618107 ], + [ 8.8720901, 46.1615502 ], + [ 8.8718865, 46.166458 ], + [ 8.8735294, 46.1666414 ], + [ 8.874399, 46.166768 ], + [ 8.8758694, 46.1667916 ], + [ 8.8868463, 46.166824 ], + [ 8.887319699999999, 46.1667559 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSMO002", + "country" : "CHE", + "name" : [ + { + "text" : "LSMO Locarno (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSMO Locarno (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSMO Locarno (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSMO Locarno (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Special Flight Office (SFO)", + "lang" : "de-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "fr-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "it-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "en-GB" + } + ], + "siteURL" : "https://skyguide.ch/services/special-flights", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6305266, 47.5053824 ], + [ 7.6305271999999995, 47.505382 ], + [ 7.6307176, 47.504957 ], + [ 7.6307434, 47.5049196 ], + [ 7.6307259, 47.5048741 ], + [ 7.6306997, 47.5048286 ], + [ 7.6306746, 47.5047809 ], + [ 7.6306375, 47.5047156 ], + [ 7.6306254, 47.5046752 ], + [ 7.6305914999999995, 47.5045806 ], + [ 7.6305641, 47.504502 ], + [ 7.6305444, 47.5044294 ], + [ 7.6305301, 47.5043817 ], + [ 7.6305181, 47.5043523 ], + [ 7.630505, 47.504331 ], + [ 7.6304886, 47.5043083 ], + [ 7.6304713, 47.5042973 ], + [ 7.6304528, 47.5042929 ], + [ 7.6304084, 47.5042923 ], + [ 7.6303596, 47.5042792 ], + [ 7.6303216, 47.5042635 ], + [ 7.630291, 47.5042485 ], + [ 7.6302639, 47.5042307 ], + [ 7.630241, 47.5042104 ], + [ 7.6302228, 47.504188 ], + [ 7.6302076, 47.5041523 ], + [ 7.6301987, 47.5041156 ], + [ 7.6301886, 47.5040785 ], + [ 7.6301816, 47.5040411 ], + [ 7.6301777, 47.5040034 ], + [ 7.6301769, 47.5039657 ], + [ 7.6301737, 47.5039033 ], + [ 7.6301701, 47.503841 ], + [ 7.6301371, 47.5035458 ], + [ 7.6301082000000005, 47.5034008 ], + [ 7.6271145, 47.5035022 ], + [ 7.627079, 47.5035749 ], + [ 7.6270109, 47.5037109 ], + [ 7.6269402, 47.5038435 ], + [ 7.6268869, 47.5039343 ], + [ 7.6268270000000005, 47.5040404 ], + [ 7.6267894, 47.5041158 ], + [ 7.6267518, 47.5041913 ], + [ 7.6267168, 47.5042921 ], + [ 7.6266917, 47.5043297 ], + [ 7.6266272, 47.5043744 ], + [ 7.6265533, 47.5043992 ], + [ 7.6264929, 47.5044099 ], + [ 7.6264401, 47.5044103 ], + [ 7.6263813, 47.50441 ], + [ 7.6263089, 47.504402 ], + [ 7.6261767, 47.5043791 ], + [ 7.6260411999999995, 47.504358 ], + [ 7.6260213, 47.5043542 ], + [ 7.6260006, 47.5043537 ], + [ 7.6259697, 47.5043582 ], + [ 7.6259414, 47.5043677 ], + [ 7.6259293, 47.5043759 ], + [ 7.625921, 47.5043861 ], + [ 7.6259131, 47.504398 ], + [ 7.6259078, 47.5044106 ], + [ 7.6259053, 47.5044235 ], + [ 7.6259056, 47.5044366 ], + [ 7.625909, 47.5044675 ], + [ 7.6259091, 47.5044984 ], + [ 7.6259032, 47.5045236 ], + [ 7.625893, 47.5045482 ], + [ 7.6258338, 47.5046464 ], + [ 7.6258177, 47.5046767 ], + [ 7.625807, 47.504708 ], + [ 7.6258018, 47.50474 ], + [ 7.6258023999999995, 47.5047722 ], + [ 7.6258078000000005, 47.5048126 ], + [ 7.6258178, 47.5048527 ], + [ 7.6259064, 47.5051743 ], + [ 7.6259605, 47.5053958 ], + [ 7.6259815, 47.5054559 ], + [ 7.6260107, 47.5055145 ], + [ 7.6262294, 47.5059196 ], + [ 7.6262814, 47.5060021 ], + [ 7.6263407999999995, 47.5060823 ], + [ 7.6263874, 47.5061364 ], + [ 7.6264412, 47.5061873 ], + [ 7.6264749, 47.5062185 ], + [ 7.6265145, 47.5062464 ], + [ 7.6265613, 47.5062705 ], + [ 7.6266123, 47.5062903 ], + [ 7.6266355, 47.5062942 ], + [ 7.6266591, 47.5062962 ], + [ 7.6266829, 47.5062964 ], + [ 7.626718, 47.5063239 ], + [ 7.6268611, 47.5064979 ], + [ 7.6279882, 47.5061031 ], + [ 7.6286914, 47.5059966 ], + [ 7.6295423, 47.5058695 ], + [ 7.6297786, 47.5058314 ], + [ 7.6305266, 47.5053824 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr029", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Spitalholz", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Spitalholz", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Spitalholz", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Spitalholz", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.9478895, 46.5349198 ], + [ 8.9478802, 46.5347787 ], + [ 8.9478602, 46.5346381 ], + [ 8.9478296, 46.5344984 ], + [ 8.9477884, 46.53436 ], + [ 8.9477368, 46.5342233 ], + [ 8.947674899999999, 46.5340886 ], + [ 8.9476029, 46.5339564 ], + [ 8.9475209, 46.5338269 ], + [ 8.9474292, 46.5337006 ], + [ 8.9473281, 46.5335777 ], + [ 8.9472178, 46.5334587 ], + [ 8.9470986, 46.5333438 ], + [ 8.9469709, 46.5332334 ], + [ 8.946835, 46.5331277 ], + [ 8.9466912, 46.5330271 ], + [ 8.94654, 46.5329319 ], + [ 8.9463818, 46.5328422 ], + [ 8.9462171, 46.5327584 ], + [ 8.9460461, 46.5326806 ], + [ 8.9458696, 46.5326091 ], + [ 8.9456878, 46.5325441 ], + [ 8.9455014, 46.5324857 ], + [ 8.9453108, 46.5324342 ], + [ 8.9451165, 46.5323896 ], + [ 8.9449191, 46.532352 ], + [ 8.9447192, 46.5323217 ], + [ 8.9445172, 46.5322986 ], + [ 8.9443138, 46.5322829 ], + [ 8.9441094, 46.5322745 ], + [ 8.9439047, 46.5322735 ], + [ 8.9437002, 46.5322799 ], + [ 8.9434964, 46.5322937 ], + [ 8.943294, 46.5323148 ], + [ 8.9430935, 46.5323432 ], + [ 8.9428954, 46.5323788 ], + [ 8.9427002, 46.5324216 ], + [ 8.9425086, 46.5324713 ], + [ 8.942321, 46.5325278 ], + [ 8.9421379, 46.5325911 ], + [ 8.9419599, 46.5326609 ], + [ 8.941787399999999, 46.532737 ], + [ 8.941621, 46.5328192 ], + [ 8.941461, 46.5329074 ], + [ 8.9413079, 46.5330012 ], + [ 8.9411621, 46.5331004 ], + [ 8.9410241, 46.5332047 ], + [ 8.9408941, 46.5333139 ], + [ 8.9407726, 46.5334276 ], + [ 8.9406599, 46.5335455 ], + [ 8.9405563, 46.5336674 ], + [ 8.9404621, 46.5337928 ], + [ 8.9403775, 46.5339215 ], + [ 8.9403028, 46.534053 ], + [ 8.9402381, 46.5341871 ], + [ 8.9401837, 46.5343233 ], + [ 8.9401398, 46.5344613 ], + [ 8.9401063, 46.5346007 ], + [ 8.9400835, 46.5347411 ], + [ 8.9400713, 46.5348821 ], + [ 8.9400699, 46.5350234 ], + [ 8.9400792, 46.5351645 ], + [ 8.9400991, 46.5353052 ], + [ 8.9401297, 46.5354449 ], + [ 8.9401709, 46.5355833 ], + [ 8.9402225, 46.53572 ], + [ 8.9402844, 46.5358547 ], + [ 8.9403564, 46.5359869 ], + [ 8.9404384, 46.5361164 ], + [ 8.94053, 46.5362427 ], + [ 8.9406311, 46.5363656 ], + [ 8.9407414, 46.5364846 ], + [ 8.9408606, 46.5365995 ], + [ 8.9409883, 46.5367099 ], + [ 8.9411243, 46.5368156 ], + [ 8.941268, 46.5369162 ], + [ 8.9414192, 46.5370114 ], + [ 8.9415774, 46.5371011 ], + [ 8.9417422, 46.537185 ], + [ 8.9419131, 46.5372628 ], + [ 8.9420897, 46.5373343 ], + [ 8.9422715, 46.5373993 ], + [ 8.9424579, 46.5374577 ], + [ 8.9426485, 46.5375092 ], + [ 8.9428428, 46.5375538 ], + [ 8.9430402, 46.5375913 ], + [ 8.9432402, 46.5376217 ], + [ 8.9434422, 46.5376448 ], + [ 8.9436456, 46.5376605 ], + [ 8.94385, 46.5376689 ], + [ 8.9440547, 46.5376699 ], + [ 8.9442593, 46.5376635 ], + [ 8.944463, 46.5376497 ], + [ 8.9446655, 46.5376286 ], + [ 8.944866, 46.5376001 ], + [ 8.9450642, 46.5375645 ], + [ 8.9452593, 46.5375218 ], + [ 8.945451, 46.5374721 ], + [ 8.9456386, 46.5374155 ], + [ 8.9458217, 46.5373523 ], + [ 8.9459997, 46.5372825 ], + [ 8.9461722, 46.5372064 ], + [ 8.9463386, 46.5371241 ], + [ 8.9464986, 46.537036 ], + [ 8.9466517, 46.5369421 ], + [ 8.9467975, 46.5368429 ], + [ 8.9469356, 46.5367386 ], + [ 8.9470655, 46.5366294 ], + [ 8.947187, 46.5365157 ], + [ 8.9472997, 46.5363978 ], + [ 8.9474033, 46.5362759 ], + [ 8.9474975, 46.5361504 ], + [ 8.9475821, 46.5360218 ], + [ 8.9476568, 46.5358902 ], + [ 8.9477214, 46.5357562 ], + [ 8.9477758, 46.53562 ], + [ 8.9478197, 46.535482 ], + [ 8.9478532, 46.5353426 ], + [ 8.947876, 46.5352022 ], + [ 8.9478881, 46.5350611 ], + [ 8.9478895, 46.5349198 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0082", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Olivone", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Olivone", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Olivone", + "lang" : "it-CH" + }, + { + "text" : "Substation Olivone", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8314676, 47.4478551 ], + [ 7.8312162999999995, 47.4477358 ], + [ 7.8312022, 47.4477184 ], + [ 7.8311882, 47.4477011 ], + [ 7.8310994, 47.4475914 ], + [ 7.8310797999999995, 47.4475762 ], + [ 7.8310524, 47.4475549 ], + [ 7.8309299, 47.4474598 ], + [ 7.830842, 47.4473873 ], + [ 7.8308142, 47.4473645 ], + [ 7.8307475, 47.4473626 ], + [ 7.830721, 47.4473619 ], + [ 7.8306373, 47.4474463 ], + [ 7.8305648, 47.4475625 ], + [ 7.830531, 47.4476166 ], + [ 7.830494, 47.4476054 ], + [ 7.8302753, 47.4475393 ], + [ 7.8302204, 47.4475227 ], + [ 7.8301856, 47.447533 ], + [ 7.8301407, 47.4475463 ], + [ 7.8301400999999995, 47.4476046 ], + [ 7.8302531, 47.4476934 ], + [ 7.830281, 47.4478901 ], + [ 7.8303127, 47.448113 ], + [ 7.8305588, 47.4483486 ], + [ 7.8308175, 47.4485158 ], + [ 7.8308194, 47.4485171 ], + [ 7.8310926, 47.4487256 ], + [ 7.8313348, 47.4489106 ], + [ 7.8314798, 47.4489614 ], + [ 7.83151, 47.448972 ], + [ 7.8316691, 47.4489322 ], + [ 7.8317612, 47.4489092 ], + [ 7.8319583999999995, 47.448135 ], + [ 7.8314676, 47.4478551 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr091", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Dubenrain", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Dubenrain", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Dubenrain", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Dubenrain", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.4604121, 47.5089116 ], + [ 9.449423, 47.5012908 ], + [ 9.4494082, 47.5013158 ], + [ 9.4493168, 47.5014661 ], + [ 9.4494114, 47.5015983 ], + [ 9.449464, 47.5016488 ], + [ 9.4494659, 47.501655 ], + [ 9.4494871, 47.5016473 ], + [ 9.4495331, 47.5018084 ], + [ 9.448788, 47.5024691 ], + [ 9.4481988, 47.5026863 ], + [ 9.446939, 47.5027262 ], + [ 9.4468788, 47.5028891 ], + [ 9.4470587, 47.5030839 ], + [ 9.4470257, 47.5032644 ], + [ 9.4468019, 47.5033133 ], + [ 9.4467229, 47.504736199999996 ], + [ 9.4466582, 47.5047823 ], + [ 9.4467688, 47.5052482 ], + [ 9.4466752, 47.5052318 ], + [ 9.4462856, 47.5054635 ], + [ 9.4461536, 47.5054838 ], + [ 9.4458321, 47.5057592 ], + [ 9.4456987, 47.5057436 ], + [ 9.4453687, 47.5057943 ], + [ 9.4452343, 47.505751599999996 ], + [ 9.4452575, 47.5056612 ], + [ 9.445055, 47.5055748 ], + [ 9.4449656, 47.5056663 ], + [ 9.4443202, 47.5054526 ], + [ 9.4439238, 47.5055044 ], + [ 9.4436904, 47.5053015 ], + [ 9.4435594, 47.5053488 ], + [ 9.4433587, 47.5053073 ], + [ 9.4433621, 47.5053972 ], + [ 9.443096, 47.5053838 ], + [ 9.4428272, 47.5052985 ], + [ 9.4425483, 47.5049435 ], + [ 9.4422853, 47.505011 ], + [ 9.4422139, 47.5048773 ], + [ 9.4414211, 47.504981 ], + [ 9.4411193, 47.5050761 ], + [ 9.4407621, 47.5051093 ], + [ 9.4406277, 47.5050667 ], + [ 9.4403249, 47.5051349 ], + [ 9.440165, 47.5051196 ], + [ 9.4399891, 47.5050327 ], + [ 9.4395611, 47.5049501 ], + [ 9.4385633, 47.5048954 ], + [ 9.437847, 47.5052676 ], + [ 9.4367371, 47.5057636 ], + [ 9.4357737, 47.5065146 ], + [ 9.4358029, 47.5065647 ], + [ 9.4540129, 47.5142567 ], + [ 9.4604121, 47.5089116 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "WZV0030", + "country" : "CHE", + "name" : [ + { + "text" : "Wasser- und Zugvogelreservat Rorschacher Bucht / Arbon", + "lang" : "de-CH" + }, + { + "text" : "Réserve d'oiseaux d'eau et de migrateurs Rorschacher Bucht / Arbon", + "lang" : "fr-CH" + }, + { + "text" : "Riserva di uccelli acquatici e migratori Rorschacher Bucht / Arbon", + "lang" : "it-CH" + }, + { + "text" : "Water Bird and Migratory Bird Reserves Rorschacher Bucht / Arbon", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6084235, 47.5781319 ], + [ 7.6083979, 47.5780394 ], + [ 7.6083487, 47.5779022 ], + [ 7.608289, 47.5777668 ], + [ 7.6082189, 47.5776337 ], + [ 7.6081386, 47.5775034 ], + [ 7.6080483, 47.577376 ], + [ 7.6079483, 47.577252 ], + [ 7.6078388, 47.5771317 ], + [ 7.6077202, 47.5770155 ], + [ 7.6075928, 47.5769036 ], + [ 7.6074569, 47.5767964 ], + [ 7.6073128, 47.5766941 ], + [ 7.6071611, 47.5765971 ], + [ 7.6070021, 47.5765056 ], + [ 7.6068362, 47.5764198 ], + [ 7.6066639, 47.5763401 ], + [ 7.6064856, 47.5762665 ], + [ 7.606302, 47.5761994 ], + [ 7.6061133, 47.5761389 ], + [ 7.6059203, 47.5760851 ], + [ 7.6057234000000005, 47.5760382 ], + [ 7.6055231, 47.5759984 ], + [ 7.60532, 47.5759657 ], + [ 7.6051146, 47.5759402 ], + [ 7.6049076, 47.5759221 ], + [ 7.6046995, 47.5759113 ], + [ 7.6044908, 47.5759079 ], + [ 7.6042821, 47.5759119 ], + [ 7.604074, 47.5759233 ], + [ 7.6038671, 47.575942 ], + [ 7.6036619, 47.575968 ], + [ 7.6034591, 47.5760013 ], + [ 7.6032589999999995, 47.5760417 ], + [ 7.6030624, 47.5760891 ], + [ 7.6028697, 47.5761434 ], + [ 7.6026815, 47.5762045 ], + [ 7.6024982, 47.5762722 ], + [ 7.6023205, 47.5763462 ], + [ 7.6021487, 47.5764265 ], + [ 7.6019833, 47.5765127 ], + [ 7.6018249, 47.5766046 ], + [ 7.6016737, 47.5767021 ], + [ 7.6015303, 47.5768047 ], + [ 7.6013950999999995, 47.5769123 ], + [ 7.6012683, 47.5770246 ], + [ 7.6011505, 47.5771412 ], + [ 7.6010417, 47.5772617 ], + [ 7.6009425, 47.577386 ], + [ 7.600853, 47.5775136 ], + [ 7.6007735, 47.5776442 ], + [ 7.6007043, 47.5777775 ], + [ 7.6006454, 47.577913 ], + [ 7.600597, 47.5780504 ], + [ 7.6005594, 47.5781894 ], + [ 7.6005326, 47.5783295 ], + [ 7.6005166, 47.5784703 ], + [ 7.6005116, 47.5786115 ], + [ 7.6005175, 47.5787527 ], + [ 7.6005343, 47.5788935 ], + [ 7.600562, 47.5790335 ], + [ 7.6006004, 47.5791723 ], + [ 7.6006496, 47.5793096 ], + [ 7.6007092, 47.579445 ], + [ 7.6007793, 47.579578 ], + [ 7.6008596, 47.5797084 ], + [ 7.6009499, 47.5798358 ], + [ 7.6010499, 47.5799598 ], + [ 7.6011593, 47.5800801 ], + [ 7.6012778999999995, 47.5801963 ], + [ 7.6014053, 47.5803082 ], + [ 7.6015412, 47.5804154 ], + [ 7.6016852, 47.5805177 ], + [ 7.601837, 47.5806147 ], + [ 7.601996, 47.5807063 ], + [ 7.6021619000000005, 47.580792 ], + [ 7.6023342, 47.5808718 ], + [ 7.6025124, 47.5809453 ], + [ 7.6026961, 47.5810125 ], + [ 7.6028847, 47.581073 ], + [ 7.6030777, 47.5811268 ], + [ 7.6032747, 47.5811737 ], + [ 7.6034749999999995, 47.5812135 ], + [ 7.6036781, 47.5812462 ], + [ 7.6038834, 47.5812717 ], + [ 7.6040905, 47.5812898 ], + [ 7.6042986, 47.5813006 ], + [ 7.6044319, 47.5813028 ], + [ 7.6044691, 47.5812992 ], + [ 7.6047005, 47.5811761 ], + [ 7.6047687, 47.5804091 ], + [ 7.605339, 47.579888 ], + [ 7.6048884999999995, 47.5778789 ], + [ 7.6078589, 47.5781013 ], + [ 7.6084235, 47.5781319 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BAG0001", + "country" : "CHE", + "name" : [ + { + "text" : "Gefängnis Bässlergut", + "lang" : "de-CH" + }, + { + "text" : "Gefängnis Bässlergut", + "lang" : "fr-CH" + }, + { + "text" : "Gefängnis Bässlergut", + "lang" : "it-CH" + }, + { + "text" : "Gefängnis Bässlergut", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Gefängnis Bässlergut", + "lang" : "de-CH" + }, + { + "text" : "Gefängnis Bässlergut", + "lang" : "fr-CH" + }, + { + "text" : "Gefängnis Bässlergut", + "lang" : "it-CH" + }, + { + "text" : "Gefängnis Bässlergut", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Leitung", + "lang" : "de-CH" + }, + { + "text" : "Leitung", + "lang" : "fr-CH" + }, + { + "text" : "Leitung", + "lang" : "it-CH" + }, + { + "text" : "Leitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Fabian Henz", + "lang" : "de-CH" + }, + { + "text" : "Fabian Henz", + "lang" : "fr-CH" + }, + { + "text" : "Fabian Henz", + "lang" : "it-CH" + }, + { + "text" : "Fabian Henz", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.bdm.bs.ch/Ueber-uns/Organisation/Amt-fuer-Justizvollzug/Gefaengnis-Baesslergut.html", + "email" : "info.gb@jsd.bs.ch", + "phone" : "0041616383101", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.478507, 47.4451167 ], + [ 7.4787332, 47.4448508 ], + [ 7.4775816, 47.4445836 ], + [ 7.4769592, 47.444472 ], + [ 7.4747728, 47.4440904 ], + [ 7.4747908, 47.4440558 ], + [ 7.4748002, 47.4440498 ], + [ 7.4748087, 47.4440433 ], + [ 7.4748164, 47.4440362 ], + [ 7.4748231, 47.4440288 ], + [ 7.4748289, 47.444021 ], + [ 7.4748336, 47.4440128 ], + [ 7.4748372, 47.4440044 ], + [ 7.4749586, 47.4436679 ], + [ 7.4733245, 47.4433031 ], + [ 7.473103, 47.4437457 ], + [ 7.4727513, 47.4436562 ], + [ 7.4712362, 47.4432442 ], + [ 7.4711009, 47.4432062 ], + [ 7.4709668, 47.4431662 ], + [ 7.4708341, 47.4431242 ], + [ 7.4703374, 47.4429626 ], + [ 7.4702281, 47.4429284 ], + [ 7.4701173, 47.4428965 ], + [ 7.4700051, 47.4428668 ], + [ 7.4695094, 47.4427416 ], + [ 7.468977, 47.4425875 ], + [ 7.4691995, 47.4422169 ], + [ 7.4696209, 47.4417114 ], + [ 7.4703972, 47.4412776 ], + [ 7.4702455, 47.4411844 ], + [ 7.4698944, 47.4414141 ], + [ 7.4694904, 47.4416755 ], + [ 7.4690766, 47.4421836 ], + [ 7.4687079, 47.4420259 ], + [ 7.4685756, 47.4421837 ], + [ 7.4689935, 47.4423683 ], + [ 7.4688753, 47.4425543 ], + [ 7.4687461, 47.4424997 ], + [ 7.4687504, 47.4425891 ], + [ 7.468766, 47.4426976 ], + [ 7.4686377, 47.4429456 ], + [ 7.4685231, 47.4433894 ], + [ 7.4684059, 47.4435597 ], + [ 7.4683933, 47.443585 ], + [ 7.4712298, 47.4439062 ], + [ 7.4741525, 47.444356 ], + [ 7.4741710999999995, 47.4443589 ], + [ 7.4768852, 47.4447514 ], + [ 7.478507, 47.4451167 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns321", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Forstweid", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Forstweid", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Forstweid", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Forstweid", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.297820399999999, 47.0359019 ], + [ 8.297812799999999, 47.0357607 ], + [ 8.2977943, 47.03562 ], + [ 8.2977651, 47.0354801 ], + [ 8.2977252, 47.0353415 ], + [ 8.2976748, 47.0352045 ], + [ 8.2976139, 47.0350695 ], + [ 8.2975428, 47.0349369 ], + [ 8.2974617, 47.0348069 ], + [ 8.2973707, 47.0346801 ], + [ 8.2972701, 47.0345567 ], + [ 8.2971602, 47.034437 ], + [ 8.2970413, 47.0343215 ], + [ 8.2969137, 47.0342104 ], + [ 8.2967778, 47.0341039 ], + [ 8.2966339, 47.0340025 ], + [ 8.2964825, 47.0339064 ], + [ 8.2963239, 47.0338158 ], + [ 8.2961586, 47.0337311 ], + [ 8.2959871, 47.0336523 ], + [ 8.2958097, 47.0335798 ], + [ 8.295627, 47.0335138 ], + [ 8.2954396, 47.0334543 ], + [ 8.2952478, 47.0334017 ], + [ 8.2950523, 47.033356 ], + [ 8.2948535, 47.0333174 ], + [ 8.2946521, 47.0332859 ], + [ 8.2944485, 47.0332617 ], + [ 8.2942434, 47.0332447 ], + [ 8.2940372, 47.0332352 ], + [ 8.2938306, 47.033233 ], + [ 8.2936241, 47.0332383 ], + [ 8.2934183, 47.0332509 ], + [ 8.2932137, 47.0332709 ], + [ 8.293011, 47.0332981 ], + [ 8.2928106, 47.0333326 ], + [ 8.2926131, 47.0333742 ], + [ 8.2924191, 47.0334228 ], + [ 8.292229, 47.0334783 ], + [ 8.2920435, 47.0335405 ], + [ 8.291863, 47.0336092 ], + [ 8.291688, 47.0336844 ], + [ 8.291519, 47.0337657 ], + [ 8.2913564, 47.0338529 ], + [ 8.2912008, 47.0339458 ], + [ 8.2910524, 47.0340441 ], + [ 8.2909118, 47.0341477 ], + [ 8.2907793, 47.0342561 ], + [ 8.2906553, 47.0343691 ], + [ 8.2905401, 47.0344864 ], + [ 8.2904341, 47.0346076 ], + [ 8.2903375, 47.0347325 ], + [ 8.290250499999999, 47.0348607 ], + [ 8.2901735, 47.0349918 ], + [ 8.2901066, 47.0351255 ], + [ 8.2900501, 47.0352614 ], + [ 8.2900041, 47.0353991 ], + [ 8.2899686, 47.0355383 ], + [ 8.2899438, 47.0356785 ], + [ 8.2899299, 47.0358195 ], + [ 8.2899267, 47.0359607 ], + [ 8.2899344, 47.0361019 ], + [ 8.2899528, 47.0362426 ], + [ 8.289982, 47.0363825 ], + [ 8.2900218, 47.0365211 ], + [ 8.2900723, 47.0366581 ], + [ 8.2901331, 47.0367932 ], + [ 8.2902042, 47.0369258 ], + [ 8.2902853, 47.0370557 ], + [ 8.2903763, 47.0371826 ], + [ 8.2904769, 47.037306 ], + [ 8.2905868, 47.0374257 ], + [ 8.2907057, 47.0375412 ], + [ 8.2908332, 47.0376523 ], + [ 8.2909691, 47.0377588 ], + [ 8.291113, 47.0378602 ], + [ 8.2912645, 47.0379563 ], + [ 8.2914231, 47.0380469 ], + [ 8.2915883, 47.0381317 ], + [ 8.2917599, 47.0382104 ], + [ 8.2919373, 47.0382829 ], + [ 8.29212, 47.038349 ], + [ 8.2923074, 47.0384084 ], + [ 8.2924992, 47.0384611 ], + [ 8.2926948, 47.0385068 ], + [ 8.2928935, 47.0385454 ], + [ 8.293095, 47.0385769 ], + [ 8.2932986, 47.0386011 ], + [ 8.2935038, 47.038618 ], + [ 8.2937099, 47.0386276 ], + [ 8.2939166, 47.0386297 ], + [ 8.2941231, 47.0386245 ], + [ 8.2943289, 47.0386119 ], + [ 8.2945335, 47.0385919 ], + [ 8.2947363, 47.0385647 ], + [ 8.2949367, 47.0385302 ], + [ 8.2951342, 47.0384886 ], + [ 8.2953282, 47.03844 ], + [ 8.2955183, 47.0383845 ], + [ 8.2957038, 47.0383223 ], + [ 8.2958843, 47.0382535 ], + [ 8.2960593, 47.0381784 ], + [ 8.2962284, 47.0380971 ], + [ 8.2963909, 47.0380099 ], + [ 8.2965466, 47.0379169 ], + [ 8.2966949, 47.0378186 ], + [ 8.2968355, 47.037715 ], + [ 8.296968, 47.0376066 ], + [ 8.297092, 47.0374936 ], + [ 8.2972072, 47.0373763 ], + [ 8.2973132, 47.037255 ], + [ 8.2974099, 47.0371301 ], + [ 8.2974968, 47.037002 ], + [ 8.2975738, 47.0368709 ], + [ 8.2976406, 47.0367372 ], + [ 8.2976971, 47.0366013 ], + [ 8.2977432, 47.0364636 ], + [ 8.297778600000001, 47.0363244 ], + [ 8.2978033, 47.0361841 ], + [ 8.2978173, 47.0360432 ], + [ 8.297820399999999, 47.0359019 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LUZ0001", + "country" : "CHE", + "name" : [ + { + "text" : "Justizvollzugsanstalt Grosshof", + "lang" : "de-CH" + }, + { + "text" : "Justizvollzugsanstalt Grosshof", + "lang" : "fr-CH" + }, + { + "text" : "Justizvollzugsanstalt Grosshof", + "lang" : "it-CH" + }, + { + "text" : "Justizvollzugsanstalt Grosshof", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Luzerner Polizei", + "lang" : "de-CH" + }, + { + "text" : "Police de Lucen", + "lang" : "fr-CH" + }, + { + "text" : "Polizia di Lucerna", + "lang" : "it-CH" + }, + { + "text" : "Lucerne Police", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Planung und Einsatz", + "lang" : "de-CH" + }, + { + "text" : "Planification et engagement", + "lang" : "fr-CH" + }, + { + "text" : "Planificatione e impiego", + "lang" : "it-CH" + }, + { + "text" : "Execution and deployment", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Franz Baumgartner", + "lang" : "de-CH" + }, + { + "text" : "Franz Baumgartner", + "lang" : "fr-CH" + }, + { + "text" : "Franz Baumgartner", + "lang" : "it-CH" + }, + { + "text" : "Franz Baumgartner", + "lang" : "en-GB" + } + ], + "siteURL" : "https://polizei.lu.ch/", + "email" : "einsatzplanung.polizei@lu.ch", + "phone" : "0041412488489", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.3843891, 47.2921413 ], + [ 9.3843947, 47.2920454 ], + [ 9.3844903, 47.2919256 ], + [ 9.3845275, 47.2917672 ], + [ 9.384572, 47.2915806 ], + [ 9.3847009, 47.291466 ], + [ 9.3848102, 47.2912446 ], + [ 9.3849669, 47.2909661 ], + [ 9.3851479, 47.2906478 ], + [ 9.3852518, 47.2905054 ], + [ 9.3850191, 47.2901986 ], + [ 9.3848986, 47.2900199 ], + [ 9.3847059, 47.2899267 ], + [ 9.3843753, 47.2899256 ], + [ 9.3841267, 47.2899291 ], + [ 9.3839751, 47.2898298 ], + [ 9.3837985, 47.2897251 ], + [ 9.3836158, 47.2896768 ], + [ 9.3832831, 47.2896195 ], + [ 9.3831068, 47.2895204 ], + [ 9.3829478, 47.2894663 ], + [ 9.3825724, 47.2893475 ], + [ 9.3822616, 47.2891883 ], + [ 9.3817489, 47.2888854 ], + [ 9.3814603, 47.28863 ], + [ 9.3812336, 47.2885091 ], + [ 9.3810095, 47.288484 ], + [ 9.3807613, 47.2884762 ], + [ 9.3805614, 47.2884114 ], + [ 9.380368, 47.2883182 ], + [ 9.3800492, 47.2881422 ], + [ 9.3797041, 47.2879497 ], + [ 9.3793539, 47.2878417 ], + [ 9.3791696, 47.2877485 ], + [ 9.3790581, 47.2876147 ], + [ 9.3789601, 47.2873736 ], + [ 9.3788282, 47.2870879 ], + [ 9.3787085, 47.2869542 ], + [ 9.3785003, 47.2869119 ], + [ 9.3783106, 47.2869203 ], + [ 9.3781294, 47.2869397 ], + [ 9.3779876, 47.2869021 ], + [ 9.3779184, 47.286796 ], + [ 9.3779307, 47.286655 ], + [ 9.3778952, 47.2865652 ], + [ 9.3777368, 47.2865054 ], + [ 9.3773449, 47.2863867 ], + [ 9.3768194, 47.2862305 ], + [ 9.376277, 47.2860632 ], + [ 9.3758488, 47.2858324 ], + [ 9.3754871, 47.2856119 ], + [ 9.3752338, 47.2854405 ], + [ 9.3751006, 47.2854142 ], + [ 9.3749026, 47.2854226 ], + [ 9.3746548, 47.2854261 ], + [ 9.3744463, 47.2853727 ], + [ 9.3742615, 47.2852681 ], + [ 9.374183500000001, 47.2851451 ], + [ 9.3741043, 47.2849658 ], + [ 9.3740422, 47.2848257 ], + [ 9.3739003, 47.2847655 ], + [ 9.3737399, 47.2846719 ], + [ 9.3736055, 47.2845893 ], + [ 9.3735531, 47.2844885 ], + [ 9.3734824, 47.2843372 ], + [ 9.3733899, 47.2842708 ], + [ 9.3733232, 47.2842549 ], + [ 9.373216, 47.2842619 ], + [ 9.3729757, 47.2842428 ], + [ 9.3727506, 47.2841895 ], + [ 9.3724581, 47.2840752 ], + [ 9.3722149, 47.2839544 ], + [ 9.3720227, 47.2838726 ], + [ 9.3718716, 47.2837844 ], + [ 9.3718528, 47.2837226 ], + [ 9.3718927, 47.2836601 ], + [ 9.3719916, 47.2836531 ], + [ 9.3720678, 47.2837028 ], + [ 9.3721937, 47.28378 ], + [ 9.3722928, 47.2837786 ], + [ 9.3723577, 47.2837213 ], + [ 9.3723548, 47.2836423 ], + [ 9.3722452, 47.2835594 ], + [ 9.372119, 47.2834991 ], + [ 9.3720592, 47.283421 ], + [ 9.372005, 47.2832695 ], + [ 9.372009, 47.2831059 ], + [ 9.3719217, 47.2829549 ], + [ 9.371836, 47.2828489 ], + [ 9.3718582, 47.2827528 ], + [ 9.3718718, 47.2826511 ], + [ 9.3719266, 47.2825433 ], + [ 9.3719149, 47.282425 ], + [ 9.3718608, 47.2822791 ], + [ 9.3717917, 47.2821504 ], + [ 9.3718217, 47.2820654 ], + [ 9.371819, 47.2819696 ], + [ 9.3717016, 47.2818979 ], + [ 9.371561, 47.281894199999996 ], + [ 9.3714119, 47.281885 ], + [ 9.3712443, 47.2818196 ], + [ 9.3711101, 47.2817426 ], + [ 9.3709481, 47.2815814 ], + [ 9.3708038, 47.2814311 ], + [ 9.3706434, 47.2813149 ], + [ 9.3705171, 47.281249 ], + [ 9.370333, 47.2811614 ], + [ 9.3701825, 47.2810901 ], + [ 9.3700966, 47.2809785 ], + [ 9.3700934, 47.2808658 ], + [ 9.3701477, 47.2807692 ], + [ 9.370335, 47.2806707 ], + [ 9.3705318, 47.280606 ], + [ 9.3706462, 47.2805481 ], + [ 9.3706192, 47.2804864 ], + [ 9.370502, 47.2804204 ], + [ 9.3703261, 47.2803551 ], + [ 9.370176, 47.2802952 ], + [ 9.3700408, 47.2802125 ], + [ 9.3700045, 47.2800777 ], + [ 9.3700512, 47.2799755 ], + [ 9.3701543, 47.2798332 ], + [ 9.3703082, 47.2797239 ], + [ 9.3704955, 47.2796255 ], + [ 9.3706737, 47.2795046 ], + [ 9.3706872, 47.2793973 ], + [ 9.3706594, 47.2792905 ], + [ 9.3704903, 47.2791632 ], + [ 9.3703636, 47.2790634 ], + [ 9.37032, 47.279 ], + [ 9.3702606, 47.2789126 ], + [ 9.3701059, 47.278723 ], + [ 9.3698524, 47.2785236 ], + [ 9.3696322, 47.2783293 ], + [ 9.369392, 47.2780394 ], + [ 9.3693203, 47.2778375 ], + [ 9.3692483, 47.2776299 ], + [ 9.3691385, 47.2775637 ], + [ 9.369039, 47.2775538 ], + [ 9.3688986, 47.2775558 ], + [ 9.3688075, 47.2775514 ], + [ 9.368733, 47.2775467 ], + [ 9.368683, 47.2775135 ], + [ 9.3686878, 47.2774177 ], + [ 9.3687193, 47.2773496 ], + [ 9.3687176, 47.2773045 ], + [ 9.3686578, 47.2772263 ], + [ 9.3685971, 47.2771257 ], + [ 9.3685431, 47.2769799 ], + [ 9.3685058, 47.2768168 ], + [ 9.368453, 47.2767048 ], + [ 9.3683432, 47.2766388 ], + [ 9.3681009, 47.2765406 ], + [ 9.367918, 47.2764868 ], + [ 9.3678499, 47.2764312 ], + [ 9.3678809, 47.2763519 ], + [ 9.3679687, 47.2762435 ], + [ 9.3680573, 47.2761577 ], + [ 9.3680546, 47.2760619 ], + [ 9.3680006, 47.2759162 ], + [ 9.3678878, 47.2757202 ], + [ 9.367758, 47.275536 ], + [ 9.3676121, 47.2753407 ], + [ 9.3674941, 47.2752521 ], + [ 9.3673585, 47.2751582 ], + [ 9.3672495, 47.275092 ], + [ 9.3671391, 47.2749864 ], + [ 9.3670863, 47.2748743 ], + [ 9.3670178, 47.2748077 ], + [ 9.3669171, 47.2747413 ], + [ 9.3668081, 47.2746752 ], + [ 9.3667062, 47.2745977 ], + [ 9.3666955, 47.2745076 ], + [ 9.3666248, 47.2743564 ], + [ 9.3665212, 47.2741886 ], + [ 9.3664082, 47.2740098 ], + [ 9.3664017, 47.2737618 ], + [ 9.3663281, 47.273509 ], + [ 9.3663744, 47.2733956 ], + [ 9.3664866, 47.2732757 ], + [ 9.366516, 47.2731513 ], + [ 9.3665185, 47.2729483 ], + [ 9.366477, 47.2726443 ], + [ 9.3665051, 47.2724861 ], + [ 9.3666091, 47.2723437 ], + [ 9.3668402, 47.2720416 ], + [ 9.3670921, 47.271604 ], + [ 9.367272700000001, 47.2712745 ], + [ 9.3674154, 47.271064 ], + [ 9.3674442, 47.2709226 ], + [ 9.3674385, 47.2707197 ], + [ 9.3674506, 47.2705504 ], + [ 9.3675388, 47.2704533 ], + [ 9.3677097, 47.2703832 ], + [ 9.3680886, 47.2703273 ], + [ 9.3683681, 47.2702896 ], + [ 9.368747, 47.2702336 ], + [ 9.3690354, 47.2701902 ], + [ 9.3693052, 47.2700905 ], + [ 9.3696071, 47.2699623 ], + [ 9.3699922, 47.2698274 ], + [ 9.3704437, 47.2697254 ], + [ 9.3707709, 47.2696136 ], + [ 9.3709415, 47.2695098 ], + [ 9.3710518, 47.2693166 ], + [ 9.3711625, 47.2691572 ], + [ 9.3713073, 47.2690029 ], + [ 9.3714923, 47.2688425 ], + [ 9.3717521, 47.2686697 ], + [ 9.3720867, 47.2685128 ], + [ 9.3723318, 47.268413699999996 ], + [ 9.3726846, 47.2683467 ], + [ 9.372966, 47.2683597 ], + [ 9.3731012, 47.2684424 ], + [ 9.3733857, 47.268292 ], + [ 9.37364, 47.2682208 ], + [ 9.3739528, 47.2681656 ], + [ 9.374273, 47.268088 ], + [ 9.3745447, 47.2680616 ], + [ 9.3748248, 47.2680407 ], + [ 9.3751635, 47.2680417 ], + [ 9.3752811, 47.2677976 ], + [ 9.3755529, 47.2674781 ], + [ 9.375671, 47.2672961 ], + [ 9.3758631, 47.2670567 ], + [ 9.3760489, 47.2669187 ], + [ 9.3762682, 47.2667916 ], + [ 9.3764957, 47.2666418 ], + [ 9.3766672, 47.2665888 ], + [ 9.376857, 47.2665579 ], + [ 9.3770946, 47.2664813 ], + [ 9.377274, 47.2664167 ], + [ 9.3774771, 47.2663011 ], + [ 9.3776535, 47.266107 ], + [ 9.3778383, 47.2659184 ], + [ 9.3780167, 47.2658031 ], + [ 9.3781366, 47.2656493 ], + [ 9.378263, 47.2654671 ], + [ 9.3784057, 47.2652564 ], + [ 9.3785655, 47.2650626 ], + [ 9.3786946, 47.2649537 ], + [ 9.3788486, 47.26485 ], + [ 9.3789791, 47.2647805 ], + [ 9.3791162, 47.2646658 ], + [ 9.3792861, 47.264545 ], + [ 9.3794814, 47.2644183 ], + [ 9.3796839, 47.2642858 ], + [ 9.3798446, 47.2641369 ], + [ 9.3800362, 47.2638863 ], + [ 9.3808651, 47.2616701 ], + [ 9.3809092, 47.2614947 ], + [ 9.3809476, 47.2613927 ], + [ 9.3810692, 47.2613063 ], + [ 9.3811412, 47.2612208 ], + [ 9.3811367, 47.2610742 ], + [ 9.381216, 47.2609604 ], + [ 9.3811882, 47.2608536 ], + [ 9.3811296, 47.2608093 ], + [ 9.3810289, 47.2607656 ], + [ 9.3808138, 47.2607574 ], + [ 9.3805492, 47.2607498 ], + [ 9.3802406, 47.2606469 ], + [ 9.3802353, 47.2604779 ], + [ 9.3803823, 47.2604082 ], + [ 9.3805224, 47.2604006 ], + [ 9.3805784, 47.2603264 ], + [ 9.3806424, 47.2602693 ], + [ 9.3807314, 47.2601947 ], + [ 9.3808534, 47.2601423 ], + [ 9.3809527, 47.260124 ], + [ 9.3810334, 47.260072 ], + [ 9.3810978, 47.2600035 ], + [ 9.3812361, 47.2599452 ], + [ 9.3813511, 47.2599042 ], + [ 9.3814819, 47.2598685 ], + [ 9.3816202, 47.2597876 ], + [ 9.3817338, 47.2597071 ], + [ 9.3817967, 47.259599 ], + [ 9.3818086, 47.2594467 ], + [ 9.3817372, 47.259256 ], + [ 9.3817335, 47.259132 ], + [ 9.3818043, 47.2590125 ], + [ 9.3818913, 47.2588591 ], + [ 9.3819033, 47.2587124 ], + [ 9.3819512, 47.2586441 ], + [ 9.3820496, 47.2586257 ], + [ 9.3822152, 47.2586348 ], + [ 9.3827077, 47.2582332 ], + [ 9.3821033, 47.2578977 ], + [ 9.3818682, 47.2577712 ], + [ 9.3817326, 47.2576774 ], + [ 9.3816817, 47.257616 ], + [ 9.3816695, 47.2574865 ], + [ 9.381633, 47.2573686 ], + [ 9.3815086, 47.2573308 ], + [ 9.3812826, 47.2572494 ], + [ 9.3809388, 47.2570625 ], + [ 9.3805519, 47.2568254 ], + [ 9.380524, 47.2570118 ], + [ 9.3797917, 47.2565428 ], + [ 9.3794029, 47.256255 ], + [ 9.3790484, 47.2560006 ], + [ 9.3787459, 47.2558131 ], + [ 9.3785377, 47.2557427 ], + [ 9.378353, 47.2556607 ], + [ 9.3780594, 47.2555126 ], + [ 9.3777575, 47.2553419 ], + [ 9.3774459, 47.2551546 ], + [ 9.3769352, 47.2548966 ], + [ 9.376551599999999, 47.2547948 ], + [ 9.3763531, 47.2547864 ], + [ 9.3761393, 47.2548119 ], + [ 9.3758576, 47.2547875 ], + [ 9.3755994, 47.2547292 ], + [ 9.3754325, 47.2546582 ], + [ 9.3752921, 47.2546601 ], + [ 9.3751192, 47.2546739 ], + [ 9.3747172, 47.254499 ], + [ 9.3742822, 47.254302 ], + [ 9.3739802, 47.2541484 ], + [ 9.3737935, 47.2539875 ], + [ 9.3735655, 47.2538045 ], + [ 9.3732205, 47.2535838 ], + [ 9.3727427, 47.2533423 ], + [ 9.3723226, 47.2531001 ], + [ 9.3718095, 47.252797 ], + [ 9.3712813, 47.2525337 ], + [ 9.3708115, 47.2522639 ], + [ 9.3707327, 47.2521183 ], + [ 9.3705887, 47.2519963 ], + [ 9.3703954, 47.2518807 ], + [ 9.3700853, 47.2517326 ], + [ 9.3696679, 47.2515862 ], + [ 9.3691746, 47.2513731 ], + [ 9.3687655, 47.2512266 ], + [ 9.3684324, 47.2511297 ], + [ 9.3681165, 47.251072 ], + [ 9.3678095, 47.2510085 ], + [ 9.3674597, 47.2509288 ], + [ 9.3670866, 47.2508663 ], + [ 9.3667707, 47.2508087 ], + [ 9.3664645, 47.2507904 ], + [ 9.3662652, 47.2507593 ], + [ 9.3660989, 47.2507051 ], + [ 9.3659076, 47.2506684 ], + [ 9.3656577, 47.2506097 ], + [ 9.3653181, 47.2505581 ], + [ 9.3649939, 47.2505005 ], + [ 9.3646534, 47.2504488 ], + [ 9.3643535, 47.2503515 ], + [ 9.3634106, 47.2500148 ], + [ 9.3629851, 47.2498967 ], + [ 9.3626435, 47.2497887 ], + [ 9.362368, 47.2496853 ], + [ 9.3620874, 47.2496891 ], + [ 9.3617492, 47.2496994 ], + [ 9.3615196, 47.2497703 ], + [ 9.3607129, 47.2495896 ], + [ 9.360181, 47.249473 ], + [ 9.3595927, 47.249419 ], + [ 9.3597632, 47.2495914 ], + [ 9.359099, 47.2494934 ], + [ 9.3582454, 47.2493867 ], + [ 9.3583986, 47.2495595 ], + [ 9.3584838, 47.2496316 ], + [ 9.3586432, 47.2497252 ], + [ 9.3588107, 47.2498131 ], + [ 9.3588377, 47.2498973 ], + [ 9.3587805, 47.2499151 ], + [ 9.3586485, 47.2499169 ], + [ 9.3583006, 47.2498878 ], + [ 9.3579861, 47.2498696 ], + [ 9.3577378, 47.249856 ], + [ 9.3574809, 47.2498313 ], + [ 9.3571818, 47.2497566 ], + [ 9.3568659, 47.2496989 ], + [ 9.3564355, 47.2496484 ], + [ 9.3559553, 47.2496155 ], + [ 9.3556738, 47.2495969 ], + [ 9.3555492, 47.249576 ], + [ 9.3554312, 47.2495099 ], + [ 9.3552653, 47.2494672 ], + [ 9.3550004, 47.2494707 ], + [ 9.3547028, 47.2494409 ], + [ 9.3544544, 47.2494219 ], + [ 9.354122, 47.2493644 ], + [ 9.353699, 47.2493138 ], + [ 9.3532114, 47.2493035 ], + [ 9.352485, 47.2493135 ], + [ 9.3523366, 47.2493211 ], + [ 9.3522186, 47.2492551 ], + [ 9.3520833, 47.2491442 ], + [ 9.3519658, 47.2490668 ], + [ 9.351766, 47.2490244 ], + [ 9.3517771, 47.2491258 ], + [ 9.351544, 47.2490501 ], + [ 9.3513783, 47.249058 ], + [ 9.3511556, 47.2490666 ], + [ 9.3510068, 47.2490631 ], + [ 9.3508655, 47.2490367 ], + [ 9.350782, 47.2489872 ], + [ 9.3506883, 47.2489095 ], + [ 9.3506034, 47.2488205 ], + [ 9.3504687, 47.2487264 ], + [ 9.3503514, 47.2486547 ], + [ 9.3501935, 47.2486287 ], + [ 9.3500606, 47.248608 ], + [ 9.3498948, 47.2485877 ], + [ 9.3497861, 47.2485272 ], + [ 9.3495728, 47.2485922 ], + [ 9.3493965, 47.2485099 ], + [ 9.3493139, 47.2485111 ], + [ 9.3491656, 47.2485188 ], + [ 9.3490248, 47.2484868 ], + [ 9.3489737, 47.2484424 ], + [ 9.348873, 47.2483987 ], + [ 9.3488175, 47.2484614 ], + [ 9.3487184, 47.2484628 ], + [ 9.3486534, 47.2485145 ], + [ 9.3485312, 47.2485612 ], + [ 9.3483008, 47.2486095 ], + [ 9.3481621, 47.248679 ], + [ 9.3479984, 47.2487208 ], + [ 9.3478176, 47.2487457 ], + [ 9.347661, 47.2487761 ], + [ 9.3475195, 47.2487442 ], + [ 9.3473538, 47.248707 ], + [ 9.3471793, 47.2486756 ], + [ 9.3470228, 47.2486889 ], + [ 9.346924, 47.248696 ], + [ 9.3468245, 47.2487086 ], + [ 9.3466346, 47.2487112 ], + [ 9.3464476, 47.2488152 ], + [ 9.344986, 47.248542 ], + [ 9.34498, 47.2486265 ], + [ 9.3448827, 47.2486786 ], + [ 9.3448358, 47.2487751 ], + [ 9.3446964, 47.2488278 ], + [ 9.3446582, 47.2489354 ], + [ 9.3445515, 47.2489537 ], + [ 9.3446126, 47.2490714 ], + [ 9.3447568, 47.249199 ], + [ 9.3448842, 47.2493213 ], + [ 9.3450029, 47.2494325 ], + [ 9.3447883, 47.2494354 ], + [ 9.34489, 47.2495299 ], + [ 9.3446405, 47.2494825 ], + [ 9.3444664, 47.2494399 ], + [ 9.3442582, 47.2493919 ], + [ 9.344101, 47.2493828 ], + [ 9.3439365, 47.249402 ], + [ 9.3437793, 47.2494154 ], + [ 9.343614, 47.2493895 ], + [ 9.3434396, 47.2493637 ], + [ 9.3432661, 47.2493828 ], + [ 9.3430422, 47.2494494 ], + [ 9.34258, 47.249457 ], + [ 9.3407142, 47.249011 ], + [ 9.3323454, 47.2496259 ], + [ 9.3315403, 47.2492793 ], + [ 9.3304073, 47.249001 ], + [ 9.329636, 47.2488607 ], + [ 9.3284443, 47.2487903 ], + [ 9.3278156, 47.2485757 ], + [ 9.3273493, 47.2484664 ], + [ 9.3268141, 47.2482773 ], + [ 9.3259405, 47.2478598 ], + [ 9.3252063, 47.2476469 ], + [ 9.324876100000001, 47.2476523 ], + [ 9.3244117, 47.2475969 ], + [ 9.3242692, 47.2473024 ], + [ 9.3237572, 47.2470229 ], + [ 9.3237396, 47.2470157 ], + [ 9.3179856, 47.255368 ], + [ 9.3178118, 47.2556411 ], + [ 9.3176021, 47.2558299 ], + [ 9.3174568, 47.2559502 ], + [ 9.3172687, 47.2560261 ], + [ 9.3170466, 47.2560742 ], + [ 9.3168752, 47.2561554 ], + [ 9.3166967, 47.256248 ], + [ 9.3165097, 47.2563801 ], + [ 9.3163132, 47.2564505 ], + [ 9.3160333, 47.2564767 ], + [ 9.3157854, 47.2564744 ], + [ 9.315456, 47.2565013 ], + [ 9.3151585, 47.2565223 ], + [ 9.3149625, 47.2566095 ], + [ 9.3146374, 47.2568055 ], + [ 9.314271, 47.2570021 ], + [ 9.313894, 47.2571086 ], + [ 9.3128072, 47.2584312 ], + [ 9.3125847, 47.258468 ], + [ 9.312173, 47.2585299 ], + [ 9.311763, 47.2586368 ], + [ 9.3116605, 47.2588242 ], + [ 9.3116051, 47.2588926 ], + [ 9.3114915, 47.2589732 ], + [ 9.3112373, 47.2590498 ], + [ 9.3107128, 47.2591921 ], + [ 9.3104582, 47.2592575 ], + [ 9.31032, 47.2593439 ], + [ 9.3102974, 47.2594288 ], + [ 9.3102095, 47.2595371 ], + [ 9.3100904, 47.2596966 ], + [ 9.3098969, 47.259575 ], + [ 9.3096722, 47.2598317 ], + [ 9.3094795, 47.2600373 ], + [ 9.309278, 47.2602035 ], + [ 9.3090987, 47.2602961 ], + [ 9.3074756, 47.2607913 ], + [ 9.3064002, 47.2610538 ], + [ 9.3061962, 47.261146600000004 ], + [ 9.3060833, 47.2612497 ], + [ 9.3058169, 47.261473 ], + [ 9.3055332, 47.2616741 ], + [ 9.3053232, 47.2618348 ], + [ 9.3051313, 47.2620629 ], + [ 9.3049311, 47.2623135 ], + [ 9.3047106, 47.2626943 ], + [ 9.3044394, 47.2630643 ], + [ 9.3042322, 47.2633489 ], + [ 9.304056899999999, 47.2635825 ], + [ 9.3038322, 47.2638167 ], + [ 9.303501, 47.2641029 ], + [ 9.302258, 47.2651963 ], + [ 9.3020002, 47.2654309 ], + [ 9.3018482, 47.2655964 ], + [ 9.3017854, 47.2657381 ], + [ 9.3017421, 47.2659642 ], + [ 9.3017236, 47.26619 ], + [ 9.3016871, 47.2663541 ], + [ 9.3015428, 47.2665251 ], + [ 9.3012824, 47.2666863 ], + [ 9.301063, 47.2668133 ], + [ 9.300836199999999, 47.2669685 ], + [ 9.3003775, 47.2671269 ], + [ 9.2999767, 47.26729 ], + [ 9.2994482, 47.2679116 ], + [ 9.2991611, 47.2682762 ], + [ 9.2991089, 47.2684855 ], + [ 9.2991863, 47.2685973 ], + [ 9.2993278, 47.2686518 ], + [ 9.2996345, 47.2686816 ], + [ 9.3005733, 47.2688552 ], + [ 9.3009307, 47.268918 ], + [ 9.300923, 47.2689577 ], + [ 9.3008581, 47.2689923 ], + [ 9.3007109, 47.2690338 ], + [ 9.3005396, 47.2691206 ], + [ 9.3004906, 47.2691607 ], + [ 9.3004841, 47.2692116 ], + [ 9.3005519, 47.2692839 ], + [ 9.3006614, 47.2693445 ], + [ 9.3007778, 47.2693656 ], + [ 9.3009933, 47.2693853 ], + [ 9.3010437, 47.2694354 ], + [ 9.3009624, 47.2694703 ], + [ 9.3008801, 47.2695052 ], + [ 9.3007657, 47.2695405 ], + [ 9.3005522, 47.2695771 ], + [ 9.3003207, 47.2695972 ], + [ 9.2999755, 47.2696694 ], + [ 9.2997132, 47.2697291 ], + [ 9.2994259, 47.2698063 ], + [ 9.2991148, 47.2699119 ], + [ 9.29887, 47.2700222 ], + [ 9.2986411, 47.270138 ], + [ 9.2984635, 47.2702813 ], + [ 9.2983024, 47.2704244 ], + [ 9.2981484, 47.2705561 ], + [ 9.2980132, 47.2707326 ], + [ 9.2978295, 47.2709606 ], + [ 9.2977276, 47.271165 ], + [ 9.2976173, 47.271392 ], + [ 9.2974926, 47.2716529 ], + [ 9.2973256, 47.2718863 ], + [ 9.2969963, 47.2722515 ], + [ 9.2959887, 47.2719547 ], + [ 9.2956722, 47.2718799 ], + [ 9.295407, 47.2718552 ], + [ 9.2952267, 47.2718971 ], + [ 9.2950799, 47.2719779 ], + [ 9.2949094, 47.2720873 ], + [ 9.2946653, 47.2722426 ], + [ 9.2943719, 47.2723819 ], + [ 9.2940594, 47.2724479 ], + [ 9.2935989, 47.272533 ], + [ 9.2934102, 47.2725693 ], + [ 9.2931606, 47.2725219 ], + [ 9.2930652, 47.2726527 ], + [ 9.292911, 47.2727563 ], + [ 9.292689, 47.2728099 ], + [ 9.29235, 47.2728031 ], + [ 9.2926837, 47.2732272 ], + [ 9.2928808, 47.2734784 ], + [ 9.2931593, 47.2736946 ], + [ 9.2935116, 47.2738704 ], + [ 9.2940203, 47.2740554 ], + [ 9.2944114, 47.2741348 ], + [ 9.2947064, 47.2743508 ], + [ 9.2949504, 47.2744998 ], + [ 9.2952106, 47.2746655 ], + [ 9.2956384, 47.2748741 ], + [ 9.2961326, 47.2751382 ], + [ 9.296586, 47.275369 ], + [ 9.2970226, 47.275617 ], + [ 9.2975594, 47.27592 ], + [ 9.29808, 47.2762289 ], + [ 9.2985432, 47.2765273 ], + [ 9.2993537, 47.2771424 ], + [ 9.2995485, 47.2773258 ], + [ 9.2997776, 47.2775483 ], + [ 9.2999895, 47.2777486 ], + [ 9.3001443, 47.2779439 ], + [ 9.3002649, 47.278134 ], + [ 9.3004104, 47.2783012 ], + [ 9.3005533, 47.2783951 ], + [ 9.3007033, 47.2784551 ], + [ 9.3008881, 47.2785655 ], + [ 9.3009819, 47.2786489 ], + [ 9.3009174, 47.2787174 ], + [ 9.3007447, 47.2787421 ], + [ 9.3003087, 47.2788212 ], + [ 9.3005167, 47.2788861 ], + [ 9.3006261, 47.2789411 ], + [ 9.3007118, 47.2790527 ], + [ 9.3007459, 47.2791085 ], + [ 9.3006067, 47.2791443 ], + [ 9.3004659, 47.2791349 ], + [ 9.3001778, 47.2791669 ], + [ 9.3005344, 47.2795343 ], + [ 9.3006474, 47.2797188 ], + [ 9.3006017, 47.2798773 ], + [ 9.3004467, 47.2799582 ], + [ 9.300169, 47.2800748 ], + [ 9.2998742, 47.2801744 ], + [ 9.3000106, 47.2803193 ], + [ 9.2997734, 47.2804126 ], + [ 9.2999049, 47.2806984 ], + [ 9.2998422, 47.280795 ], + [ 9.2997563, 47.2809879 ], + [ 9.2997619, 47.2811964 ], + [ 9.2998684, 47.2814769 ], + [ 9.3001502, 47.2820935 ], + [ 9.300463, 47.282343 ], + [ 9.3006985, 47.282509 ], + [ 9.3009496, 47.2826241 ], + [ 9.301301, 47.2827717 ], + [ 9.3015281, 47.282909599999996 ], + [ 9.301730599999999, 47.2830535 ], + [ 9.3018755, 47.2832265 ], + [ 9.3019801, 47.2834054 ], + [ 9.3021155, 47.283522 ], + [ 9.302617, 47.2837297 ], + [ 9.3030104, 47.2838992 ], + [ 9.3033964, 47.2841141 ], + [ 9.3035989, 47.2842805 ], + [ 9.3038703, 47.2845024 ], + [ 9.304108, 47.2847304 ], + [ 9.3042617, 47.28492 ], + [ 9.3044583, 47.2851543 ], + [ 9.30459, 47.2854232 ], + [ 9.3071033, 47.2863258 ], + [ 9.3076168, 47.286381 ], + [ 9.3081639, 47.2864301 ], + [ 9.3086103, 47.2864354 ], + [ 9.3090893, 47.2864009 ], + [ 9.3096327, 47.2863203 ], + [ 9.3100284, 47.2862925 ], + [ 9.3103173, 47.2862605 ], + [ 9.3108794, 47.2862644 ], + [ 9.3113424, 47.2862695 ], + [ 9.3118219, 47.2862743 ], + [ 9.3123751, 47.2862388 ], + [ 9.3128782, 47.286187 ], + [ 9.31347, 47.286072 ], + [ 9.3143948, 47.2860259 ], + [ 9.3170886, 47.2859729 ], + [ 9.3188653, 47.2860878 ], + [ 9.3188868, 47.2858076 ], + [ 9.3192964, 47.2854231 ], + [ 9.3195295, 47.2852843 ], + [ 9.3196147, 47.285076 ], + [ 9.3209466, 47.2842265 ], + [ 9.3216766, 47.2843046 ], + [ 9.3217417, 47.2842765 ], + [ 9.3219863, 47.2837147 ], + [ 9.3223764, 47.2835284 ], + [ 9.3236125, 47.2829414 ], + [ 9.3237639, 47.283132 ], + [ 9.3239765, 47.2833491 ], + [ 9.3242717, 47.283565 ], + [ 9.3245754, 47.283764 ], + [ 9.3248519, 47.2838956 ], + [ 9.3251853, 47.2839982 ], + [ 9.325567, 47.2840663 ], + [ 9.3261987, 47.2841707 ], + [ 9.3273912, 47.2851526 ], + [ 9.327419, 47.2852593 ], + [ 9.3274744, 47.2854728 ], + [ 9.3275974, 47.2857249 ], + [ 9.3277847, 47.2859028 ], + [ 9.3279047, 47.2860703 ], + [ 9.3280127, 47.2863902 ], + [ 9.3280954, 47.286671 ], + [ 9.3282409, 47.2868608 ], + [ 9.3283617, 47.2870283 ], + [ 9.3284142, 47.2871572 ], + [ 9.3284432, 47.2872979 ], + [ 9.3284243, 47.2875123 ], + [ 9.3283215, 47.287666 ], + [ 9.3282783, 47.287892 ], + [ 9.3283261, 47.2881451 ], + [ 9.328468, 47.2884646 ], + [ 9.328553, 47.2888582 ], + [ 9.3286783, 47.2892004 ], + [ 9.3287525, 47.2894982 ], + [ 9.3287409, 47.2896844 ], + [ 9.3288352, 47.289779 ], + [ 9.3288879, 47.289891 ], + [ 9.3288832, 47.2900152 ], + [ 9.3290129, 47.290222 ], + [ 9.329124, 47.2903502 ], + [ 9.329136, 47.2905023 ], + [ 9.3290257, 47.2907012 ], + [ 9.3288251, 47.2909181 ], + [ 9.3284702, 47.2912329 ], + [ 9.3281416, 47.2915926 ], + [ 9.328365, 47.2916009 ], + [ 9.3286852, 47.2915176 ], + [ 9.3295089, 47.2914162 ], + [ 9.3296844, 47.2914703 ], + [ 9.329826, 47.2915247 ], + [ 9.3300686, 47.2916061 ], + [ 9.330485, 47.2917189 ], + [ 9.3308182, 47.2918159 ], + [ 9.3312114, 47.2919741 ], + [ 9.3316198, 47.2920926 ], + [ 9.3320276, 47.2921942 ], + [ 9.3324851, 47.2923008 ], + [ 9.3328268, 47.2923808 ], + [ 9.3332776, 47.2925325 ], + [ 9.3337043, 47.2927241 ], + [ 9.3340045, 47.2928215 ], + [ 9.3344886, 47.2929785 ], + [ 9.3347969, 47.2930476 ], + [ 9.3350955, 47.2930774 ], + [ 9.3353199, 47.2931365 ], + [ 9.3356773, 47.2931937 ], + [ 9.3361024, 47.2933176 ], + [ 9.3364266, 47.2933921 ], + [ 9.3367355, 47.2934781 ], + [ 9.3372361, 47.2936574 ], + [ 9.3377369, 47.2938198 ], + [ 9.339358, 47.2944067 ], + [ 9.3393617, 47.2945589 ], + [ 9.3395543, 47.2946522 ], + [ 9.3397893, 47.2947731 ], + [ 9.3399807, 47.2948099 ], + [ 9.3401548, 47.2948244 ], + [ 9.3402476, 47.2948796 ], + [ 9.3404068, 47.294962 ], + [ 9.3406, 47.2950721 ], + [ 9.3408835, 47.2951417 ], + [ 9.3412494, 47.2952269 ], + [ 9.3416169, 47.2953571 ], + [ 9.3415115, 47.2954376 ], + [ 9.341918100000001, 47.2954828 ], + [ 9.34202, 47.2955829 ], + [ 9.3421459, 47.2956376 ], + [ 9.342503, 47.2957061 ], + [ 9.3425219, 47.295796 ], + [ 9.3430123, 47.2958739 ], + [ 9.3428741, 47.2959603 ], + [ 9.3430747, 47.2960478 ], + [ 9.3432746, 47.2960902 ], + [ 9.3432439, 47.2961808 ], + [ 9.3435601, 47.2962385 ], + [ 9.3437023, 47.2963099 ], + [ 9.3436387, 47.2963784 ], + [ 9.3437049, 47.2964057 ], + [ 9.3437891, 47.2964497 ], + [ 9.3438661, 47.2965445 ], + [ 9.3439692, 47.2966784 ], + [ 9.3440954, 47.2967612 ], + [ 9.3442697, 47.2967814 ], + [ 9.3444619, 47.2968409 ], + [ 9.3446132, 47.2969347 ], + [ 9.3447669, 47.2970961 ], + [ 9.3449599, 47.2972231 ], + [ 9.3451697, 47.2973104 ], + [ 9.3453609, 47.2973643 ], + [ 9.3452152, 47.2971746 ], + [ 9.3451463, 47.2970739 ], + [ 9.3450196, 47.2969743 ], + [ 9.3449269, 47.2969248 ], + [ 9.3448089, 47.2968362 ], + [ 9.3446578, 47.296748 ], + [ 9.3446626, 47.2966296 ], + [ 9.3446014, 47.2965119 ], + [ 9.3445738, 47.2964109 ], + [ 9.3447195, 47.2963018 ], + [ 9.3449321, 47.2962143 ], + [ 9.3449793, 47.2961234 ], + [ 9.3449084, 47.2959665 ], + [ 9.3447392, 47.2958335 ], + [ 9.3445111, 47.2956505 ], + [ 9.344299, 47.295473 ], + [ 9.3441382, 47.2953455 ], + [ 9.3440929, 47.2952108 ], + [ 9.3440482, 47.2950704 ], + [ 9.343988, 47.294981 ], + [ 9.343819, 47.2948763 ], + [ 9.3436775, 47.2948274 ], + [ 9.3434501, 47.2946839 ], + [ 9.3432567, 47.2945681 ], + [ 9.3431193, 47.2944009 ], + [ 9.3433591, 47.2943807 ], + [ 9.3436474, 47.2943542 ], + [ 9.3439442, 47.2943333 ], + [ 9.344185, 47.2943639 ], + [ 9.3443432, 47.2943956 ], + [ 9.3446341, 47.2944423 ], + [ 9.3449668, 47.2945223 ], + [ 9.3452754, 47.2946027 ], + [ 9.3455484, 47.2946329 ], + [ 9.3458908, 47.2947297 ], + [ 9.3462726, 47.2947978 ], + [ 9.3466296, 47.2948436 ], + [ 9.3469031, 47.2948625 ], + [ 9.3470008, 47.2948217 ], + [ 9.34714, 47.2947634 ], + [ 9.3473544, 47.2947492 ], + [ 9.3476452, 47.2947904 ], + [ 9.3479356, 47.2948203 ], + [ 9.3482098, 47.2948616 ], + [ 9.3484171, 47.2948813 ], + [ 9.3486154, 47.2948786 ], + [ 9.3488799, 47.2948807 ], + [ 9.3490635, 47.294929 ], + [ 9.3492223, 47.295 ], + [ 9.3493877, 47.2950034 ], + [ 9.3495114, 47.294996 ], + [ 9.349618, 47.2949496 ], + [ 9.3497403, 47.2949027 ], + [ 9.3499549, 47.2948942 ], + [ 9.3501383, 47.2949367 ], + [ 9.350363, 47.2949788 ], + [ 9.350529, 47.2950216 ], + [ 9.3507694, 47.295041 ], + [ 9.3509765, 47.295055 ], + [ 9.3511447, 47.2951372 ], + [ 9.351238, 47.2952262 ], + [ 9.3514312, 47.2953363 ], + [ 9.3516487, 47.2954293 ], + [ 9.3518238, 47.2954719 ], + [ 9.3519056, 47.2954482 ], + [ 9.3520617, 47.2954236 ], + [ 9.352129, 47.2954565 ], + [ 9.3521887, 47.2955065 ], + [ 9.3522808, 47.295539 ], + [ 9.3523881, 47.2955601 ], + [ 9.3524399, 47.2956214 ], + [ 9.352427, 47.2957456 ], + [ 9.3524826, 47.2959591 ], + [ 9.3527315, 47.2959839 ], + [ 9.3533224, 47.296145 ], + [ 9.3540882, 47.2962924 ], + [ 9.3551446, 47.296526 ], + [ 9.355817, 47.2966297 ], + [ 9.3562829, 47.2967134 ], + [ 9.3566256, 47.2968441 ], + [ 9.3568346, 47.2969314 ], + [ 9.3568779, 47.2970097 ], + [ 9.3569063, 47.2971334 ], + [ 9.3570663, 47.2972384 ], + [ 9.357145299999999, 47.2973895 ], + [ 9.3571977, 47.2974902 ], + [ 9.3573581, 47.2976065 ], + [ 9.3574599, 47.297701 ], + [ 9.3574959, 47.2978075 ], + [ 9.3575403, 47.2978915 ], + [ 9.3575923, 47.297981 ], + [ 9.3576692, 47.2980758 ], + [ 9.3576968, 47.298177 ], + [ 9.3577573, 47.298272 ], + [ 9.357851, 47.2983722 ], + [ 9.3580273, 47.2984487 ], + [ 9.3581778, 47.2985198 ], + [ 9.358329, 47.2985855 ], + [ 9.3584628, 47.2986513 ], + [ 9.3585637, 47.2987232 ], + [ 9.3587078, 47.2988227 ], + [ 9.3588408, 47.298866 ], + [ 9.3589835, 47.2989261 ], + [ 9.3591508, 47.2990027 ], + [ 9.3593013, 47.2990514 ], + [ 9.3594762, 47.299111 ], + [ 9.3596513, 47.2991538 ], + [ 9.3598851, 47.2992182 ], + [ 9.3601189, 47.2993051 ], + [ 9.3602869, 47.2994044 ], + [ 9.3604639, 47.2995204 ], + [ 9.3606821, 47.2996358 ], + [ 9.3609409, 47.2997054 ], + [ 9.3610985, 47.2997202 ], + [ 9.3611998, 47.2998034 ], + [ 9.3613754, 47.2998799 ], + [ 9.3615509, 47.2999339 ], + [ 9.3616924, 47.2999826 ], + [ 9.3618421, 47.2999863 ], + [ 9.3621071, 47.2999996 ], + [ 9.3625716, 47.3000665 ], + [ 9.363395, 47.3002299 ], + [ 9.3639623, 47.3003968 ], + [ 9.3644953, 47.3005305 ], + [ 9.3648941, 47.3006096 ], + [ 9.3652345, 47.30065 ], + [ 9.3654018, 47.3007041 ], + [ 9.365536, 47.3007812 ], + [ 9.3656872, 47.3008467 ], + [ 9.3659026, 47.3008833 ], + [ 9.3662091, 47.3009015 ], + [ 9.3665412, 47.3009421 ], + [ 9.3667422, 47.3010126 ], + [ 9.3667684, 47.3010743 ], + [ 9.3667884, 47.3011924 ], + [ 9.3668893, 47.3012643 ], + [ 9.3670056, 47.3012796 ], + [ 9.3671721, 47.3013112 ], + [ 9.3673133, 47.3013318 ], + [ 9.3674724, 47.3014085 ], + [ 9.3676646, 47.3014679 ], + [ 9.3678313, 47.301505 ], + [ 9.3680375, 47.3014909 ], + [ 9.368262, 47.3015273 ], + [ 9.3684753, 47.3014848 ], + [ 9.3686394, 47.3014263 ], + [ 9.3688951, 47.3014114 ], + [ 9.3691252, 47.3013744 ], + [ 9.3693243, 47.3013943 ], + [ 9.3695722, 47.3013682 ], + [ 9.3697364, 47.3013377 ], + [ 9.3698082, 47.3012409 ], + [ 9.3698714, 47.3011385 ], + [ 9.3700115, 47.3011254 ], + [ 9.3701257, 47.3010617 ], + [ 9.3702391, 47.3009981 ], + [ 9.3704084, 47.3008323 ], + [ 9.370579, 47.3007284 ], + [ 9.3706856, 47.3007044 ], + [ 9.3707932, 47.3007087 ], + [ 9.371002, 47.3007677 ], + [ 9.3712433, 47.3008095 ], + [ 9.3714436, 47.3008857 ], + [ 9.3716601, 47.3009278 ], + [ 9.371834, 47.3009367 ], + [ 9.3719901, 47.300912 ], + [ 9.3721792, 47.3008586 ], + [ 9.3723031, 47.3008795 ], + [ 9.3724441, 47.3008944 ], + [ 9.372583, 47.3008249 ], + [ 9.3727462, 47.3007437 ], + [ 9.3728516, 47.3006632 ], + [ 9.372941, 47.3006225 ], + [ 9.3731226, 47.3006144 ], + [ 9.373336, 47.3005493 ], + [ 9.3736074, 47.3005117 ], + [ 9.373747, 47.3004647 ], + [ 9.3738956, 47.300457 ], + [ 9.3739875, 47.300484 ], + [ 9.374088, 47.3005221 ], + [ 9.3742285, 47.3005202 ], + [ 9.3743524, 47.3005184 ], + [ 9.3745076, 47.3004656 ], + [ 9.3746063, 47.3004303 ], + [ 9.3747135, 47.3004232 ], + [ 9.3748209, 47.3004216 ], + [ 9.374961, 47.3004085 ], + [ 9.3750676, 47.3003845 ], + [ 9.3752157, 47.3003429 ], + [ 9.3753299, 47.3003019 ], + [ 9.3754782, 47.3002886 ], + [ 9.3756028, 47.3002811 ], + [ 9.3757587, 47.3002508 ], + [ 9.3759058, 47.3002037 ], + [ 9.376028699999999, 47.3001513 ], + [ 9.3761522, 47.3001382 ], + [ 9.3763332, 47.3001131 ], + [ 9.3765069, 47.3000939 ], + [ 9.376811, 47.3000445 ], + [ 9.3770909, 47.2999899 ], + [ 9.3772644, 47.2999875 ], + [ 9.3774038, 47.2999574 ], + [ 9.3775598, 47.2999044 ], + [ 9.3777548, 47.2997889 ], + [ 9.3779023, 47.2997305 ], + [ 9.3781066, 47.2996656 ], + [ 9.3783671, 47.2995099 ], + [ 9.3786772, 47.2993534 ], + [ 9.3790176, 47.299123 ], + [ 9.3793629, 47.2987743 ], + [ 9.3796722, 47.2983021 ], + [ 9.3798047, 47.2980351 ], + [ 9.3799086, 47.2979153 ], + [ 9.3800458, 47.2978007 ], + [ 9.3801565, 47.2976187 ], + [ 9.3802675, 47.2974424 ], + [ 9.3803811, 47.2973844 ], + [ 9.380453, 47.2972932 ], + [ 9.3805336, 47.2972131 ], + [ 9.380731, 47.2971879 ], + [ 9.3808618, 47.2971239 ], + [ 9.3810147, 47.2969865 ], + [ 9.3810535, 47.2968958 ], + [ 9.3809429, 47.2967846 ], + [ 9.3807987, 47.2966625 ], + [ 9.3809008, 47.2964694 ], + [ 9.3810718, 47.2963769 ], + [ 9.3812747, 47.29625 ], + [ 9.3814842, 47.2960553 ], + [ 9.3817118, 47.2959055 ], + [ 9.3819839, 47.2956142 ], + [ 9.382255, 47.2952496 ], + [ 9.3825177, 47.2952008 ], + [ 9.3826466, 47.2950637 ], + [ 9.3827515, 47.294972 ], + [ 9.3828754, 47.2949703 ], + [ 9.3830082, 47.2949853 ], + [ 9.3831311, 47.2949554 ], + [ 9.3832342, 47.2948131 ], + [ 9.3832783, 47.2946151 ], + [ 9.3833983, 47.2944838 ], + [ 9.3835645, 47.2945097 ], + [ 9.383947, 47.2945719 ], + [ 9.3843795, 47.2946674 ], + [ 9.384424899999999, 47.2945089 ], + [ 9.3845131, 47.2944345 ], + [ 9.3846695, 47.2943927 ], + [ 9.384856599999999, 47.2942886 ], + [ 9.3849025, 47.294164 ], + [ 9.385, 47.2940949 ], + [ 9.3852212, 47.2940411 ], + [ 9.385486, 47.2940261 ], + [ 9.3857257, 47.2940284 ], + [ 9.3858641, 47.2939476 ], + [ 9.3859544, 47.2939293 ], + [ 9.3861291, 47.2939608 ], + [ 9.386462, 47.2940463 ], + [ 9.3867867, 47.294132 ], + [ 9.3869106, 47.2941077 ], + [ 9.3871975, 47.2940191 ], + [ 9.3875147, 47.2938569 ], + [ 9.3872477, 47.2937648 ], + [ 9.3869631, 47.2936446 ], + [ 9.3865059, 47.2935496 ], + [ 9.3860396, 47.2934546 ], + [ 9.3862451, 47.2931303 ], + [ 9.3862819, 47.2929607 ], + [ 9.3862549, 47.2928765 ], + [ 9.3861448, 47.2928047 ], + [ 9.3859947, 47.2927673 ], + [ 9.3858218, 47.2927867 ], + [ 9.3856324, 47.2928062 ], + [ 9.3854482, 47.2927411 ], + [ 9.38534, 47.2926975 ], + [ 9.3852539, 47.2925803 ], + [ 9.3851257, 47.2924412 ], + [ 9.3849908, 47.2923472 ], + [ 9.384832, 47.2922987 ], + [ 9.3845999, 47.2922793 ], + [ 9.3844498, 47.292242 ], + [ 9.3843891, 47.2921413 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "JBG0033", + "country" : "CHE", + "name" : [ + { + "text" : "Eidgenössisches Jagdbanngebiet Säntis", + "lang" : "de-CH" + }, + { + "text" : "District franc fédéral Säntis", + "lang" : "fr-CH" + }, + { + "text" : "Bandita federale di caccia Säntis", + "lang" : "it-CH" + }, + { + "text" : "Federal Game Reserve Säntis", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.6289183, 47.3787407 ], + [ 8.6289097, 47.3785995 ], + [ 8.6288902, 47.3784589 ], + [ 8.62886, 47.3783191 ], + [ 8.628819, 47.3781806 ], + [ 8.6287674, 47.3780438 ], + [ 8.6287053, 47.377909 ], + [ 8.6286329, 47.3777765 ], + [ 8.6285504, 47.3776468 ], + [ 8.628458, 47.3775203 ], + [ 8.628356, 47.3773972 ], + [ 8.6282447, 47.3772778 ], + [ 8.6281243, 47.3771627 ], + [ 8.6279952, 47.3770519 ], + [ 8.6278578, 47.3769459 ], + [ 8.6277124, 47.3768449 ], + [ 8.6275593, 47.3767492 ], + [ 8.6273992, 47.3766591 ], + [ 8.6272323, 47.3765748 ], + [ 8.6270591, 47.3764966 ], + [ 8.6268802, 47.3764246 ], + [ 8.6266959, 47.3763591 ], + [ 8.6265069, 47.3763002 ], + [ 8.6263136, 47.3762481 ], + [ 8.6261165, 47.376203 ], + [ 8.6259163, 47.3761649 ], + [ 8.6257133, 47.376134 ], + [ 8.6255083, 47.3761104 ], + [ 8.6253017, 47.3760941 ], + [ 8.6250942, 47.3760851 ], + [ 8.6248862, 47.3760836 ], + [ 8.6246784, 47.3760894 ], + [ 8.624471400000001, 47.3761026 ], + [ 8.6242656, 47.3761232 ], + [ 8.6240617, 47.376151 ], + [ 8.6238603, 47.376186 ], + [ 8.6236618, 47.3762282 ], + [ 8.6234668, 47.3762774 ], + [ 8.6232759, 47.3763334 ], + [ 8.6230896, 47.3763961 ], + [ 8.6229083, 47.3764654 ], + [ 8.6227327, 47.376541 ], + [ 8.6225631, 47.3766228 ], + [ 8.6224, 47.3767105 ], + [ 8.6222439, 47.3768038 ], + [ 8.6220953, 47.3769026 ], + [ 8.6219544, 47.3770065 ], + [ 8.6218217, 47.3771153 ], + [ 8.6216976, 47.3772287 ], + [ 8.6215824, 47.3773463 ], + [ 8.6214764, 47.3774678 ], + [ 8.62138, 47.377593 ], + [ 8.6212933, 47.3777214 ], + [ 8.6212166, 47.3778527 ], + [ 8.6211501, 47.3779865 ], + [ 8.6210941, 47.3781226 ], + [ 8.6210486, 47.3782604 ], + [ 8.6210138, 47.3783997 ], + [ 8.620989699999999, 47.37854 ], + [ 8.6209765, 47.378681 ], + [ 8.6209742, 47.3788223 ], + [ 8.6209828, 47.3789634 ], + [ 8.6210022, 47.379104 ], + [ 8.6210325, 47.3792438 ], + [ 8.6210735, 47.3793823 ], + [ 8.6211251, 47.3795192 ], + [ 8.6211871, 47.379654 ], + [ 8.6212595, 47.3797864 ], + [ 8.621342, 47.3799161 ], + [ 8.6214343, 47.3800427 ], + [ 8.6215363, 47.3801658 ], + [ 8.6216477, 47.3802851 ], + [ 8.621768, 47.3804003 ], + [ 8.6218971, 47.3805111 ], + [ 8.6220346, 47.3806171 ], + [ 8.62218, 47.3807181 ], + [ 8.622333, 47.3808138 ], + [ 8.6224932, 47.3809039 ], + [ 8.6226601, 47.3809882 ], + [ 8.6228332, 47.3810664 ], + [ 8.6230122, 47.3811384 ], + [ 8.6231964, 47.3812039 ], + [ 8.6233855, 47.3812628 ], + [ 8.6235788, 47.3813149 ], + [ 8.6237759, 47.38136 ], + [ 8.6239762, 47.3813981 ], + [ 8.6241791, 47.381429 ], + [ 8.6243842, 47.3814527 ], + [ 8.6245908, 47.381469 ], + [ 8.6247984, 47.3814779 ], + [ 8.6250063, 47.3814795 ], + [ 8.6252141, 47.3814737 ], + [ 8.6254212, 47.3814605 ], + [ 8.625627, 47.3814399 ], + [ 8.6258309, 47.381412 ], + [ 8.6260324, 47.381377 ], + [ 8.6262309, 47.3813348 ], + [ 8.6264258, 47.3812857 ], + [ 8.6266168, 47.3812296 ], + [ 8.6268031, 47.3811669 ], + [ 8.6269844, 47.3810976 ], + [ 8.6271601, 47.381022 ], + [ 8.6273297, 47.3809402 ], + [ 8.6274927, 47.3808525 ], + [ 8.6276488, 47.3807592 ], + [ 8.6277975, 47.3806604 ], + [ 8.6279383, 47.3805565 ], + [ 8.628071, 47.3804477 ], + [ 8.6281951, 47.3803343 ], + [ 8.6283103, 47.3802167 ], + [ 8.6284163, 47.3800951 ], + [ 8.6285127, 47.37997 ], + [ 8.6285994, 47.3798416 ], + [ 8.6286761, 47.3797102 ], + [ 8.6287425, 47.3795764 ], + [ 8.6287985, 47.3794403 ], + [ 8.628844, 47.3793025 ], + [ 8.6288788, 47.3791632 ], + [ 8.6289028, 47.3790229 ], + [ 8.628916, 47.3788819 ], + [ 8.6289183, 47.3787407 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0032", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Fällanden", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Fällanden", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Fällanden", + "lang" : "it-CH" + }, + { + "text" : "Substation Fällanden", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.8307948, 47.1039767 ], + [ 6.8310526, 47.1039812 ], + [ 6.8313067, 47.1039513 ], + [ 6.8313417, 47.1039421 ], + [ 6.8313866999999995, 47.1039368 ], + [ 6.8316285, 47.1038733 ], + [ 6.8318474, 47.1037787 ], + [ 6.832035, 47.1036567 ], + [ 6.832184, 47.103512 ], + [ 6.8322886, 47.1033502 ], + [ 6.8323561999999995, 47.1032095 ], + [ 6.8324123, 47.1030376 ], + [ 6.8324182, 47.1028615 ], + [ 6.8323738, 47.102688 ], + [ 6.8322807, 47.1025238 ], + [ 6.8321426, 47.1023751 ], + [ 6.8319646, 47.1022476 ], + [ 6.8317537, 47.1021462 ], + [ 6.8315179, 47.1020749 ], + [ 6.8312748, 47.10202 ], + [ 6.8310219, 47.1019813 ], + [ 6.8307629, 47.1019771 ], + [ 6.8305076, 47.1020076 ], + [ 6.8302661, 47.1020717 ], + [ 6.8300475, 47.1021668 ], + [ 6.8298605, 47.1022893 ], + [ 6.8297122, 47.1024344 ], + [ 6.8296084, 47.1025965 ], + [ 6.8295416, 47.1027365 ], + [ 6.8294858, 47.1029094 ], + [ 6.8294808, 47.1030865 ], + [ 6.8295266, 47.1032607 ], + [ 6.8296215, 47.1034255 ], + [ 6.8297619, 47.1035744 ], + [ 6.8299422, 47.1037016 ], + [ 6.8299679, 47.1037137 ], + [ 6.8300155, 47.1037476 ], + [ 6.8302254, 47.1038482 ], + [ 6.8304599, 47.1039192 ], + [ 6.8305433, 47.103938 ], + [ 6.8307948, 47.1039767 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "NE05", + "country" : "CHE", + "name" : [ + { + "text" : "Tribunal régional Chaux-de-Fonds", + "lang" : "de-CH" + }, + { + "text" : "Tribunal régional Chaux-de-Fonds", + "lang" : "fr-CH" + }, + { + "text" : "Tribunal régional Chaux-de-Fonds", + "lang" : "it-CH" + }, + { + "text" : "Tribunal régional Chaux-de-Fonds", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "regulationExemption" : "YES", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Police Neuchâteloise", + "lang" : "de-CH" + }, + { + "text" : "Police Neuchâteloise", + "lang" : "fr-CH" + }, + { + "text" : "Police Neuchâteloise", + "lang" : "it-CH" + }, + { + "text" : "Police Neuchâteloise", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "PN - Rens et opérations", + "lang" : "de-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "fr-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "it-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "PN - Rens et opérationsPN - Rens et opérations", + "lang" : "de-CH" + }, + { + "text" : "PN - Rens et opérationsPN - Rens et opérations", + "lang" : "fr-CH" + }, + { + "text" : "PN - Rens et opérationsPN - Rens et opérations", + "lang" : "it-CH" + }, + { + "text" : "PN - Rens et opérationsPN - Rens et opérations", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ne.ch/autorites/DESC/PONE/Pages/Drones.aspx", + "email" : "Police.Neuchateloise@ne.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.7942593, 47.3367529 ], + [ 8.7796325, 47.3326373 ], + [ 8.7656914, 47.3307295 ], + [ 8.7508806, 47.3310787 ], + [ 8.7406199, 47.3335338 ], + [ 8.7453898, 47.3418908 ], + [ 8.729198, 47.3618632 ], + [ 8.7068483, 47.3907162 ], + [ 8.7616569, 47.4107911 ], + [ 8.8033808, 47.3842189 ], + [ 8.8265118, 47.3803573 ], + [ 8.8263053, 47.3693728 ], + [ 8.8217082, 47.3577547 ], + [ 8.8124172, 47.3478103 ], + [ 8.8038056, 47.3413496 ], + [ 8.7942593, 47.3367529 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZK001", + "country" : "CHE", + "name" : [ + { + "text" : "LSZK Speck-Fehraltorf", + "lang" : "de-CH" + }, + { + "text" : "LSZK Speck-Fehraltorf", + "lang" : "fr-CH" + }, + { + "text" : "LSZK Speck-Fehraltorf", + "lang" : "it-CH" + }, + { + "text" : "LSZK Speck-Fehraltorf", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Flugplatz Speck-Fehraltorf", + "lang" : "de-CH" + }, + { + "text" : "Flugplatz Speck-Fehraltorf", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatz Speck-Fehraltorf", + "lang" : "it-CH" + }, + { + "text" : "Flugplatz Speck-Fehraltorf", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Luca Marchetti", + "lang" : "de-CH" + }, + { + "text" : "Luca Marchetti", + "lang" : "fr-CH" + }, + { + "text" : "Luca Marchetti", + "lang" : "it-CH" + }, + { + "text" : "Luca Marchetti", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.fgzo.ch/flugvorbereitung.php", + "email" : "flugplatzleiter@fgzo.ch", + "phone" : "0041449541252", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6814955, 46.6173328 ], + [ 7.6818576, 46.6171297 ], + [ 7.6821288, 46.6173423 ], + [ 7.6829202, 46.6168215 ], + [ 7.6829377999999995, 46.6166856 ], + [ 7.682878, 46.6164474 ], + [ 7.6823995, 46.6160067 ], + [ 7.6826704, 46.6158514 ], + [ 7.6820728, 46.6153453 ], + [ 7.6821965, 46.6152758 ], + [ 7.6818556000000005, 46.6149554 ], + [ 7.6815495, 46.6151063 ], + [ 7.6809327, 46.6143763 ], + [ 7.6811398, 46.6142688 ], + [ 7.6808159, 46.6139492 ], + [ 7.6803742, 46.6141445 ], + [ 7.6774930999999995, 46.6114897 ], + [ 7.6763851, 46.6106617 ], + [ 7.6750462, 46.6101527 ], + [ 7.6751929, 46.6099734 ], + [ 7.6748621, 46.6098481 ], + [ 7.674633, 46.6099997 ], + [ 7.6743833, 46.6098986 ], + [ 7.6732777, 46.6105063 ], + [ 7.6727263, 46.6100801 ], + [ 7.6724932, 46.6102101 ], + [ 7.6727448, 46.6104543 ], + [ 7.6728959, 46.6103775 ], + [ 7.6732601, 46.6106826 ], + [ 7.6735857, 46.6105047 ], + [ 7.6814955, 46.6173328 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSGR002", + "country" : "CHE", + "name" : [ + { + "text" : "LSGR Reichenbach (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSGR Reichenbach (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSGR Reichenbach (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSGR Reichenbach (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Flugplatzgenossenschaft Reichenbach", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzgenossenschaft Reichenbach", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzgenossenschaft Reichenbach", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzgenossenschaft Reichenbach", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Roland Lüscher", + "lang" : "de-CH" + }, + { + "text" : "Roland Lüscher", + "lang" : "fr-CH" + }, + { + "text" : "Roland Lüscher", + "lang" : "it-CH" + }, + { + "text" : "Roland Lüscher", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.flugplatz-reichenbach.ch/?page_id=173", + "email" : "flugplatzleiter@flugplatz-reichenbach.ch", + "phone" : "0041796421761", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7173338000000005, 47.4684964 ], + [ 7.7173344, 47.4685098 ], + [ 7.7173351, 47.4685228 ], + [ 7.7173374, 47.4685342 ], + [ 7.717341, 47.4685483 ], + [ 7.7173445, 47.4685601 ], + [ 7.7173504, 47.4685734 ], + [ 7.7173562, 47.4685848 ], + [ 7.7173638, 47.4685958 ], + [ 7.717372, 47.4686068 ], + [ 7.7173812999999996, 47.4686185 ], + [ 7.7173924, 47.4686295 ], + [ 7.7175957, 47.468829 ], + [ 7.7177109, 47.4689171 ], + [ 7.717748, 47.468939 ], + [ 7.7177969, 47.4689641 ], + [ 7.7195723, 47.4674102 ], + [ 7.7195585, 47.4674071 ], + [ 7.719545, 47.4674031 ], + [ 7.7195321, 47.4673984 ], + [ 7.7195198, 47.467393 ], + [ 7.7195081, 47.467387 ], + [ 7.7194973000000005, 47.4673803 ], + [ 7.7194873, 47.467373 ], + [ 7.7193616, 47.4672738 ], + [ 7.7193328, 47.4672489 ], + [ 7.719307, 47.4672226 ], + [ 7.7192845, 47.4671949 ], + [ 7.7192655, 47.467166 ], + [ 7.7192384, 47.4671197 ], + [ 7.7192249, 47.4670992 ], + [ 7.7192089, 47.4670795 ], + [ 7.7191905, 47.4670607 ], + [ 7.7191697999999995, 47.4670431 ], + [ 7.7191471, 47.4670267 ], + [ 7.7190952, 47.4669905 ], + [ 7.719046, 47.4669526 ], + [ 7.7189997, 47.466913 ], + [ 7.7188412, 47.4667576 ], + [ 7.7188228, 47.466741 ], + [ 7.7188026, 47.4667253 ], + [ 7.7187805, 47.4667109 ], + [ 7.7187567, 47.4666976 ], + [ 7.7187315, 47.4666858 ], + [ 7.7186001, 47.4666291 ], + [ 7.7185929, 47.4666272 ], + [ 7.7185854, 47.4666254 ], + [ 7.7185754, 47.4666244 ], + [ 7.7185668, 47.4666247 ], + [ 7.7185582, 47.4666262 ], + [ 7.7185503, 47.4666285 ], + [ 7.7185423, 47.4666314 ], + [ 7.7185358, 47.4666354 ], + [ 7.7185298, 47.4666403 ], + [ 7.718524, 47.466648 ], + [ 7.7184764999999995, 47.4667523 ], + [ 7.7183619, 47.4669931 ], + [ 7.7181989, 47.4673027 ], + [ 7.7181084, 47.4673913 ], + [ 7.7179522, 47.4675441 ], + [ 7.7178578, 47.4676552 ], + [ 7.7176626, 47.4678866 ], + [ 7.7176206, 47.4679547 ], + [ 7.7175201, 47.4681286 ], + [ 7.7174162, 47.4683128 ], + [ 7.7173554, 47.4684229 ], + [ 7.7173497, 47.4684343 ], + [ 7.7173445, 47.4684457 ], + [ 7.7173405, 47.4684583 ], + [ 7.7173377, 47.4684713 ], + [ 7.7173348, 47.4684839 ], + [ 7.7173338000000005, 47.4684964 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns220", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Stellihübel - Furtboden", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Stellihübel - Furtboden", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Stellihübel - Furtboden", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Stellihübel - Furtboden", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.3006875, 46.4443401 ], + [ 6.3006828, 46.4441635 ], + [ 6.3006615, 46.4439875 ], + [ 6.3006235, 46.4438129 ], + [ 6.3005691, 46.4436404 ], + [ 6.3004985, 46.4434706 ], + [ 6.300412, 46.443304499999996 ], + [ 6.30031, 46.4431426 ], + [ 6.3001929, 46.4429856 ], + [ 6.3000611, 46.4428343 ], + [ 6.2999153, 46.4426893 ], + [ 6.2997562, 46.4425512 ], + [ 6.2995843, 46.4424206 ], + [ 6.2994004, 46.442298 ], + [ 6.2992053, 46.442184 ], + [ 6.2989998, 46.442079 ], + [ 6.2987849, 46.4419836 ], + [ 6.2986767, 46.4419406 ], + [ 6.2986687, 46.4419375 ], + [ 6.2960855, 46.4409462 ], + [ 6.2959682, 46.4409029 ], + [ 6.295737, 46.4408277 ], + [ 6.2954993, 46.4407631 ], + [ 6.295256, 46.4407094 ], + [ 6.2950815, 46.4406782 ], + [ 6.2950331, 46.440666 ], + [ 6.2947898, 46.4406123 ], + [ 6.2945419, 46.4405697 ], + [ 6.2942905, 46.4405384 ], + [ 6.2940367, 46.4405185 ], + [ 6.2937815, 46.4405101 ], + [ 6.2935261, 46.4405133 ], + [ 6.2932715, 46.4405281 ], + [ 6.2930189, 46.4405543 ], + [ 6.2927693, 46.4405919 ], + [ 6.2925238, 46.4406407 ], + [ 6.2922834, 46.4407004 ], + [ 6.2920492, 46.440771 ], + [ 6.2918222, 46.4408519 ], + [ 6.2916033, 46.440943 ], + [ 6.2913935, 46.4410437 ], + [ 6.2911937, 46.4411537 ], + [ 6.2910047, 46.4412726 ], + [ 6.2908274, 46.4413997 ], + [ 6.2906624, 46.4415345 ], + [ 6.2905106, 46.4416766 ], + [ 6.2903725, 46.4418251 ], + [ 6.2903131, 46.4418964 ], + [ 6.2902048, 46.442031 ], + [ 6.2901405, 46.4421143 ], + [ 6.2900316, 46.442274 ], + [ 6.2899381, 46.4424384 ], + [ 6.2898604, 46.4426066 ], + [ 6.2897988, 46.442778 ], + [ 6.2897535, 46.4429518 ], + [ 6.2897247, 46.4431273 ], + [ 6.2897126, 46.4433037 ], + [ 6.2897172, 46.4434802 ], + [ 6.2897385, 46.4436562 ], + [ 6.2897764, 46.4438308 ], + [ 6.2898308, 46.4440034 ], + [ 6.2899013, 46.4441731 ], + [ 6.2899878, 46.4443393 ], + [ 6.2900898, 46.4445012 ], + [ 6.2902069, 46.4446582 ], + [ 6.2903386, 46.4448095 ], + [ 6.2904844, 46.4449545 ], + [ 6.2906436, 46.4450926 ], + [ 6.2908154, 46.4452233 ], + [ 6.2909993, 46.4453459 ], + [ 6.2911944, 46.4454599 ], + [ 6.2913999, 46.4455649 ], + [ 6.2916148, 46.4456603 ], + [ 6.2917218, 46.4457029 ], + [ 6.2944783, 46.4467602 ], + [ 6.2945949, 46.4468032 ], + [ 6.294826, 46.4468784 ], + [ 6.2950638, 46.446943 ], + [ 6.2953072, 46.4469967 ], + [ 6.2955551, 46.4470393 ], + [ 6.2958065, 46.4470706 ], + [ 6.2960604, 46.4470905 ], + [ 6.2963156, 46.4470989 ], + [ 6.2963416, 46.4470991 ], + [ 6.2963829, 46.4471015 ], + [ 6.2966381, 46.4471099 ], + [ 6.2968935, 46.4471067 ], + [ 6.2971481, 46.4470919 ], + [ 6.2974008, 46.4470657 ], + [ 6.2976504, 46.4470281 ], + [ 6.297896, 46.4469793 ], + [ 6.2981363, 46.4469195 ], + [ 6.2983706, 46.446849 ], + [ 6.2985976, 46.446768 ], + [ 6.2988165, 46.4466769 ], + [ 6.2990262999999995, 46.4465762 ], + [ 6.2992261, 46.4464661 ], + [ 6.2994151, 46.4463473 ], + [ 6.2995925, 46.4462202 ], + [ 6.2997574, 46.4460853 ], + [ 6.2999092, 46.4459433 ], + [ 6.3000473, 46.4457947 ], + [ 6.3001082, 46.4457216 ], + [ 6.300197, 46.4456109 ], + [ 6.3002598, 46.4455295 ], + [ 6.3003686, 46.4453697 ], + [ 6.3004621, 46.4452054 ], + [ 6.3005398, 46.4450372 ], + [ 6.3006014, 46.4448658 ], + [ 6.3006467, 46.444692 ], + [ 6.3006754, 46.4445165 ], + [ 6.3006875, 46.4443401 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00039", + "country" : "CHE", + "name" : [ + { + "text" : "Centre gendarmerie mobile - Région Ouest (Bursins)", + "lang" : "de-CH" + }, + { + "text" : "Centre gendarmerie mobile - Région Ouest (Bursins)", + "lang" : "fr-CH" + }, + { + "text" : "Centre gendarmerie mobile - Région Ouest (Bursins)", + "lang" : "it-CH" + }, + { + "text" : "Centre gendarmerie mobile - Région Ouest (Bursins)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kantonspolizei Waadt", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale vaudoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Vaud", + "lang" : "it-CH" + }, + { + "text" : "Vaud Cantonal Police", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.pcv@vd.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4604917, 46.9547261 ], + [ 7.4613855000000004, 46.9558975 ], + [ 7.4617512999999995, 46.956377 ], + [ 7.4618197, 46.9563526 ], + [ 7.4618815, 46.9564368 ], + [ 7.4625086, 46.9562146 ], + [ 7.4626208, 46.9562381 ], + [ 7.4626414, 46.9562646 ], + [ 7.4632272, 46.9560543 ], + [ 7.4632307, 46.956059 ], + [ 7.463358, 46.9560135 ], + [ 7.4632823, 46.9559149 ], + [ 7.4632768, 46.9558971 ], + [ 7.4632842, 46.9558789 ], + [ 7.4633018, 46.9558645 ], + [ 7.46354, 46.9557749 ], + [ 7.4636064, 46.9557838 ], + [ 7.4636609, 46.9558096 ], + [ 7.4636701, 46.9558052 ], + [ 7.4635403, 46.9556765 ], + [ 7.4630603, 46.9552008 ], + [ 7.4624597, 46.9546055 ], + [ 7.4619368999999995, 46.9540873 ], + [ 7.4615764, 46.9542395 ], + [ 7.4615744, 46.9542435 ], + [ 7.4615721, 46.9542475 ], + [ 7.4615693, 46.9542514 ], + [ 7.4615663, 46.9542552 ], + [ 7.461563, 46.9542588 ], + [ 7.4615593, 46.9542623 ], + [ 7.4615553, 46.9542656 ], + [ 7.4615489, 46.9542704 ], + [ 7.4615422, 46.9542751 ], + [ 7.4615352, 46.9542795 ], + [ 7.4615279, 46.9542837 ], + [ 7.4615203, 46.9542877 ], + [ 7.4615124999999995, 46.9542914 ], + [ 7.4615044, 46.9542949 ], + [ 7.4611026, 46.9544597 ], + [ 7.4610906, 46.9544647 ], + [ 7.4610787, 46.9544699 ], + [ 7.4610669, 46.9544751 ], + [ 7.4610552, 46.9544805 ], + [ 7.4610436, 46.9544859 ], + [ 7.4610322, 46.9544915 ], + [ 7.4610208, 46.9544972 ], + [ 7.460941, 46.9545379 ], + [ 7.4609296, 46.9545435 ], + [ 7.4609182, 46.9545491 ], + [ 7.4609066, 46.9545546 ], + [ 7.4608948999999996, 46.95456 ], + [ 7.4608831, 46.9545652 ], + [ 7.4608712, 46.9545703 ], + [ 7.4608592, 46.9545753 ], + [ 7.4604917, 46.9547261 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VBS_1", + "country" : "CHE", + "name" : [ + { + "text" : "VBS_1 Bern", + "lang" : "de-CH" + }, + { + "text" : "VBS_1 Bern", + "lang" : "fr-CH" + }, + { + "text" : "VBS_1 Bern", + "lang" : "it-CH" + }, + { + "text" : "VBS_1 Bern", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "regulationExemption" : "YES", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Eidgenössisches Departement für Verteidigung, Bevölkerungsschutz und Sport (VBS)", + "lang" : "de-CH" + }, + { + "text" : "Département fédéral de la défense, de la protection de la population et des sports (DDPS)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento federale della difesa, della protezione della popolazione e dello sport (DDPS)", + "lang" : "it-CH" + }, + { + "text" : "Federal Department of Defence, Civil Protection and Sport (DDPS)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Lageverfolgungszentrum der Armee LVZ A", + "lang" : "de-CH" + }, + { + "text" : "Centre de suivi de la situation de l’armée, CSS A", + "lang" : "fr-CH" + }, + { + "text" : "Centro di monitoraggio della situazione dell’esercito, Centro mon sit Es", + "lang" : "it-CH" + }, + { + "text" : "Joint Operation Center, JOC", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vtg.admin.ch/en/joint-operations-command", + "email" : "lvz.op@vtg.admin.ch", + "phone" : "+41 58 464 96 43", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.5237672, 47.3812559 ], + [ 8.5237588, 47.3811148 ], + [ 8.5237397, 47.3809741 ], + [ 8.5237097, 47.3808343 ], + [ 8.5236689, 47.3806958 ], + [ 8.5236176, 47.3805589 ], + [ 8.5235558, 47.380424 ], + [ 8.5234836, 47.3802915 ], + [ 8.523401400000001, 47.3801618 ], + [ 8.5233093, 47.3800351 ], + [ 8.5232075, 47.3799119 ], + [ 8.5230964, 47.3797925 ], + [ 8.5229762, 47.3796772 ], + [ 8.5228474, 47.3795663 ], + [ 8.5227101, 47.3794602 ], + [ 8.5225649, 47.3793591 ], + [ 8.5224121, 47.3792633 ], + [ 8.5222521, 47.379173 ], + [ 8.5220854, 47.3790886 ], + [ 8.5219123, 47.3790102 ], + [ 8.5217335, 47.378938 ], + [ 8.5215494, 47.3788723 ], + [ 8.5213605, 47.3788133 ], + [ 8.5211672, 47.378761 ], + [ 8.5209703, 47.3787157 ], + [ 8.5207701, 47.3786775 ], + [ 8.5205672, 47.3786464 ], + [ 8.5203622, 47.3786226 ], + [ 8.5201556, 47.378606 ], + [ 8.5199481, 47.3785969 ], + [ 8.5197401, 47.3785952 ], + [ 8.5195323, 47.3786008 ], + [ 8.5193252, 47.3786138 ], + [ 8.5191194, 47.3786342 ], + [ 8.5189155, 47.3786618 ], + [ 8.5187139, 47.3786967 ], + [ 8.5185154, 47.3787387 ], + [ 8.5183203, 47.3787877 ], + [ 8.5181293, 47.3788435 ], + [ 8.5179428, 47.3789061 ], + [ 8.5177614, 47.3789752 ], + [ 8.5175856, 47.3790507 ], + [ 8.5174158, 47.3791323 ], + [ 8.517252599999999, 47.3792198 ], + [ 8.5170963, 47.379313 ], + [ 8.5169474, 47.3794116 ], + [ 8.5168064, 47.3795154 ], + [ 8.5166735, 47.3796241 ], + [ 8.5165491, 47.3797373 ], + [ 8.5164337, 47.3798549 ], + [ 8.5163275, 47.3799763 ], + [ 8.5162308, 47.3801014 ], + [ 8.5161438, 47.3802297 ], + [ 8.5160669, 47.3803609 ], + [ 8.5160001, 47.3804947 ], + [ 8.5159438, 47.3806307 ], + [ 8.515898, 47.3807685 ], + [ 8.5158629, 47.3809078 ], + [ 8.5158386, 47.3810481 ], + [ 8.5158252, 47.381189 ], + [ 8.5158226, 47.3813303 ], + [ 8.5158309, 47.3814714 ], + [ 8.51585, 47.3816121 ], + [ 8.51588, 47.3817519 ], + [ 8.5159207, 47.3818904 ], + [ 8.515972, 47.3820273 ], + [ 8.5160338, 47.3821622 ], + [ 8.516106, 47.3822947 ], + [ 8.5161882, 47.3824245 ], + [ 8.5162803, 47.3825511 ], + [ 8.516382, 47.3826743 ], + [ 8.5164931, 47.3827937 ], + [ 8.5166133, 47.3829091 ], + [ 8.5167422, 47.3830199 ], + [ 8.5168794, 47.3831261 ], + [ 8.5170246, 47.3832272 ], + [ 8.5171775, 47.383323 ], + [ 8.5173375, 47.3834133 ], + [ 8.5175042, 47.3834977 ], + [ 8.5176772, 47.3835761 ], + [ 8.517856, 47.3836483 ], + [ 8.5180402, 47.383714 ], + [ 8.5182291, 47.383773 ], + [ 8.5184224, 47.3838253 ], + [ 8.5186194, 47.3838706 ], + [ 8.5188196, 47.3839089 ], + [ 8.5190225, 47.38394 ], + [ 8.5192275, 47.3839638 ], + [ 8.5194341, 47.3839803 ], + [ 8.5196416, 47.3839894 ], + [ 8.5198496, 47.3839912 ], + [ 8.5200574, 47.3839855 ], + [ 8.5202645, 47.3839725 ], + [ 8.5204704, 47.3839522 ], + [ 8.5206743, 47.3839245 ], + [ 8.5208759, 47.3838896 ], + [ 8.5210745, 47.3838476 ], + [ 8.5212696, 47.3837987 ], + [ 8.5214606, 47.3837428 ], + [ 8.5216471, 47.3836802 ], + [ 8.5218285, 47.3836111 ], + [ 8.5220043, 47.3835356 ], + [ 8.5221741, 47.383454 ], + [ 8.5223373, 47.3833665 ], + [ 8.5224936, 47.3832733 ], + [ 8.5226425, 47.3831746 ], + [ 8.5227836, 47.3830708 ], + [ 8.522916500000001, 47.3829622 ], + [ 8.5230408, 47.3828489 ], + [ 8.5231562, 47.3827314 ], + [ 8.5232624, 47.3826099 ], + [ 8.5233591, 47.3824849 ], + [ 8.5234461, 47.3823565 ], + [ 8.523523, 47.3822253 ], + [ 8.5235897, 47.3820915 ], + [ 8.523646, 47.3819555 ], + [ 8.5236918, 47.3818177 ], + [ 8.5237268, 47.3816784 ], + [ 8.5237511, 47.3815382 ], + [ 8.5237646, 47.3813972 ], + [ 8.5237672, 47.3812559 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GZW0001", + "country" : "CHE", + "name" : [ + { + "text" : "Gefängnis Zürich West", + "lang" : "de-CH" + }, + { + "text" : "Gefängnis Zürich West", + "lang" : "fr-CH" + }, + { + "text" : "Gefängnis Zürich West", + "lang" : "it-CH" + }, + { + "text" : "Gefängnis Zürich West", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "de-CH" + }, + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "fr-CH" + }, + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "it-CH" + }, + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "de-CH" + }, + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "fr-CH" + }, + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "it-CH" + }, + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Reno Berner", + "lang" : "de-CH" + }, + { + "text" : "Reno Berner", + "lang" : "fr-CH" + }, + { + "text" : "Reno Berner", + "lang" : "it-CH" + }, + { + "text" : "Reno Berner", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.zh.ch/de/direktion-der-justiz-und-des-innern/justizvollzug-wiedereingliederung.html", + "email" : "sicherheit-juwe@ji.zh.ch", + "phone" : "0041432583400", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT12H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6306057, 47.5173899 ], + [ 7.6304698, 47.5174394 ], + [ 7.6303804, 47.5175962 ], + [ 7.6301586, 47.5178336 ], + [ 7.6299768, 47.5179645 ], + [ 7.6297675, 47.5181326 ], + [ 7.6296715, 47.5183098 ], + [ 7.6295045, 47.518585 ], + [ 7.6293095, 47.5187783 ], + [ 7.6291104, 47.5189337 ], + [ 7.6290136, 47.5190427 ], + [ 7.6288709, 47.5191534 ], + [ 7.6287429, 47.5192252 ], + [ 7.628567, 47.5192795 ], + [ 7.6283452, 47.5192981 ], + [ 7.6282896000000004, 47.519298 ], + [ 7.628124, 47.5192979 ], + [ 7.6280731, 47.5192978 ], + [ 7.6279644, 47.5192991 ], + [ 7.6279259, 47.5192753 ], + [ 7.6278676999999995, 47.5192273 ], + [ 7.6277787, 47.5191217 ], + [ 7.6277339, 47.5190904 ], + [ 7.6276767, 47.5190948 ], + [ 7.6276195, 47.5191086 ], + [ 7.6276519, 47.5192057 ], + [ 7.6276617, 47.519269800000004 ], + [ 7.627532, 47.5192522 ], + [ 7.6275024, 47.519314 ], + [ 7.6274535, 47.5193988 ], + [ 7.6273509, 47.5195118 ], + [ 7.6271225, 47.519564 ], + [ 7.6269876, 47.519574 ], + [ 7.6269649, 47.5195623 ], + [ 7.6268861, 47.5195215 ], + [ 7.6269347, 47.5193935 ], + [ 7.6269162999999995, 47.5192692 ], + [ 7.626915, 47.5192603 ], + [ 7.6268507, 47.5191473 ], + [ 7.6267838, 47.5190979 ], + [ 7.6267484, 47.5191011 ], + [ 7.6267521, 47.5191223 ], + [ 7.6265026, 47.5192038 ], + [ 7.6264856, 47.5192094 ], + [ 7.6263963, 47.5193594 ], + [ 7.6263179999999995, 47.5193931 ], + [ 7.6263083, 47.5194107 ], + [ 7.6260262999999995, 47.5195287 ], + [ 7.6260022, 47.5195288 ], + [ 7.6259818, 47.5195376 ], + [ 7.6259615, 47.5195464 ], + [ 7.6257628, 47.5195411 ], + [ 7.6255415, 47.5195627 ], + [ 7.6255095, 47.5195679 ], + [ 7.6254935, 47.5195704 ], + [ 7.6254776, 47.519573 ], + [ 7.6250619, 47.5197897 ], + [ 7.6251304, 47.5200611 ], + [ 7.6251666, 47.520345 ], + [ 7.6253048, 47.5202738 ], + [ 7.625489, 47.5202472 ], + [ 7.6255295, 47.5202188 ], + [ 7.625579, 47.520217099999996 ], + [ 7.625648, 47.5202605 ], + [ 7.6257363, 47.5202544 ], + [ 7.6258009, 47.5202016 ], + [ 7.6260902, 47.5200907 ], + [ 7.626175, 47.5200794 ], + [ 7.6262551, 47.5200944 ], + [ 7.6263646, 47.5200926 ], + [ 7.6264669, 47.520039 ], + [ 7.6265469, 47.5200414 ], + [ 7.6266606, 47.5200791 ], + [ 7.6267051, 47.5200811 ], + [ 7.6267608, 47.5200646 ], + [ 7.6269246, 47.520053 ], + [ 7.627091, 47.5199852 ], + [ 7.6272584, 47.5199746 ], + [ 7.6273954, 47.5199403 ], + [ 7.6275335, 47.5198746 ], + [ 7.627626, 47.519851 ], + [ 7.6277665, 47.5198415 ], + [ 7.6278189, 47.5198318 ], + [ 7.627843, 47.5198078 ], + [ 7.6278479, 47.5197269 ], + [ 7.6279264, 47.5197012 ], + [ 7.6280478, 47.519735 ], + [ 7.6281207, 47.519729 ], + [ 7.6281861, 47.5196745 ], + [ 7.6282486, 47.5196636 ], + [ 7.6283549, 47.5196742 ], + [ 7.6284257, 47.5196677 ], + [ 7.6285282, 47.5196109 ], + [ 7.6286113, 47.5195883 ], + [ 7.6286933, 47.5196165 ], + [ 7.6287627, 47.5196058 ], + [ 7.6288341, 47.5195326 ], + [ 7.6289169, 47.5195 ], + [ 7.6292116, 47.5194088 ], + [ 7.6293932, 47.5193072 ], + [ 7.6295125, 47.5192529 ], + [ 7.6296658, 47.519161 ], + [ 7.6297067, 47.5190815 ], + [ 7.629758, 47.5190686 ], + [ 7.6298669, 47.5190691 ], + [ 7.6299406, 47.5189242 ], + [ 7.6299969, 47.5188655 ], + [ 7.6300763, 47.5186766 ], + [ 7.6300821, 47.5185903 ], + [ 7.6300579, 47.518531 ], + [ 7.6300773, 47.5184622 ], + [ 7.630158, 47.5184135 ], + [ 7.6302036, 47.5183328 ], + [ 7.6304316, 47.5181857 ], + [ 7.6304909, 47.5179714 ], + [ 7.6304542, 47.517853099999996 ], + [ 7.630539, 47.5177752 ], + [ 7.6306142999999995, 47.5175851 ], + [ 7.6306057, 47.5173899 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr073", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Asphof", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Asphof", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Asphof", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Asphof", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7918865, 47.3756655 ], + [ 7.7917818, 47.3755318 ], + [ 7.7920072, 47.3751814 ], + [ 7.7923057, 47.3750123 ], + [ 7.7926631, 47.3748265 ], + [ 7.7929793, 47.3746387 ], + [ 7.7925315, 47.37406 ], + [ 7.7922058, 47.3736028 ], + [ 7.791756, 47.3729741 ], + [ 7.7915725, 47.3730074 ], + [ 7.791338, 47.3730455 ], + [ 7.7910955, 47.3730843 ], + [ 7.7907334, 47.3731489 ], + [ 7.7905571, 47.373199 ], + [ 7.7905189, 47.3731987 ], + [ 7.790316, 47.3731821 ], + [ 7.7897609, 47.3731602 ], + [ 7.7890581999999995, 47.3731457 ], + [ 7.7884887, 47.3731433 ], + [ 7.7880754, 47.373149 ], + [ 7.787736, 47.3731634 ], + [ 7.7876148, 47.3731882 ], + [ 7.7875043999999995, 47.3732179 ], + [ 7.7874262, 47.3732196 ], + [ 7.7873669, 47.3732017 ], + [ 7.7870115, 47.3731825 ], + [ 7.7859732, 47.3731264 ], + [ 7.7859571, 47.373151 ], + [ 7.7858913, 47.3731735 ], + [ 7.7858532, 47.3731635 ], + [ 7.7858276, 47.3731568 ], + [ 7.7858007, 47.3731389 ], + [ 7.7857762, 47.3731068 ], + [ 7.7853587, 47.3734224 ], + [ 7.7854252, 47.3736222 ], + [ 7.7848992, 47.3738513 ], + [ 7.784549, 47.3744261 ], + [ 7.7848952, 47.3751023 ], + [ 7.7852920999999995, 47.3752139 ], + [ 7.7857787, 47.3752513 ], + [ 7.7861213, 47.3752642 ], + [ 7.7862015, 47.3749956 ], + [ 7.7871595, 47.374863 ], + [ 7.7880628, 47.3751295 ], + [ 7.7886947, 47.3752736 ], + [ 7.7897251, 47.3754473 ], + [ 7.7909361, 47.3755834 ], + [ 7.7917673, 47.3756552 ], + [ 7.7918865, 47.3756655 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns114", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Schellenberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Schellenberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Schellenberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Schellenberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.976013, 46.0426781 ], + [ 8.9760099, 46.0426311 ], + [ 8.9760033, 46.0425842 ], + [ 8.9759932, 46.0425376 ], + [ 8.9759795, 46.0424915 ], + [ 8.9759625, 46.0424459 ], + [ 8.975942, 46.042401 ], + [ 8.9759182, 46.042357 ], + [ 8.9758911, 46.0423138 ], + [ 8.9758608, 46.0422717 ], + [ 8.9758273, 46.0422308 ], + [ 8.9757909, 46.0421911 ], + [ 8.9757515, 46.0421528 ], + [ 8.9757093, 46.042116 ], + [ 8.9756644, 46.0420808 ], + [ 8.9756169, 46.0420473 ], + [ 8.9755669, 46.0420156 ], + [ 8.9755146, 46.0419857 ], + [ 8.9754602, 46.0419578 ], + [ 8.9754037, 46.0419318 ], + [ 8.9753454, 46.041908 ], + [ 8.9752853, 46.0418864 ], + [ 8.9752237, 46.0418669 ], + [ 8.9751608, 46.0418498 ], + [ 8.9750966, 46.0418349 ], + [ 8.9750314, 46.0418224 ], + [ 8.9749653, 46.0418123 ], + [ 8.9748986, 46.0418047 ], + [ 8.9748314, 46.0417994 ], + [ 8.9747639, 46.0417967 ], + [ 8.9746963, 46.0417963 ], + [ 8.9746287, 46.0417985 ], + [ 8.9745614, 46.0418031 ], + [ 8.9744945, 46.0418102 ], + [ 8.9744283, 46.0418197 ], + [ 8.9743629, 46.0418315 ], + [ 8.9742984, 46.0418458 ], + [ 8.9742351, 46.0418624 ], + [ 8.9741732, 46.0418813 ], + [ 8.9741127, 46.0419024 ], + [ 8.9740539, 46.0419256 ], + [ 8.9739969, 46.041951 ], + [ 8.973942, 46.0419784 ], + [ 8.9738891, 46.0420078 ], + [ 8.9738386, 46.0420391 ], + [ 8.9737904, 46.0420722 ], + [ 8.9737449, 46.042107 ], + [ 8.973702, 46.0421434 ], + [ 8.9736618, 46.0421813 ], + [ 8.9736246, 46.0422206 ], + [ 8.973590399999999, 46.0422613 ], + [ 8.9735593, 46.0423031 ], + [ 8.9735314, 46.042346 ], + [ 8.9735068, 46.0423898 ], + [ 8.9734854, 46.0424345 ], + [ 8.9734675, 46.0424799 ], + [ 8.973453, 46.0425259 ], + [ 8.973442, 46.0425724 ], + [ 8.9734345, 46.0426192 ], + [ 8.9734305, 46.0426662 ], + [ 8.97343, 46.0427133 ], + [ 8.9734331, 46.0427604 ], + [ 8.9734398, 46.0428072 ], + [ 8.9734499, 46.0428538 ], + [ 8.9734635, 46.0428999 ], + [ 8.9734806, 46.0429455 ], + [ 8.9735011, 46.0429904 ], + [ 8.9735249, 46.0430345 ], + [ 8.973552, 46.0430776 ], + [ 8.9735823, 46.0431197 ], + [ 8.9736157, 46.0431606 ], + [ 8.9736522, 46.0432003 ], + [ 8.9736916, 46.0432386 ], + [ 8.9737338, 46.0432754 ], + [ 8.9737787, 46.0433106 ], + [ 8.9738262, 46.0433441 ], + [ 8.9738762, 46.0433759 ], + [ 8.9739284, 46.0434057 ], + [ 8.9739829, 46.0434337 ], + [ 8.9740394, 46.0434596 ], + [ 8.9740977, 46.0434834 ], + [ 8.9741578, 46.0435051 ], + [ 8.974219399999999, 46.0435245 ], + [ 8.9742823, 46.0435417 ], + [ 8.9743465, 46.0435565 ], + [ 8.9744117, 46.043569 ], + [ 8.9744778, 46.0435791 ], + [ 8.9745445, 46.0435868 ], + [ 8.9746117, 46.043592 ], + [ 8.9746792, 46.0435948 ], + [ 8.9747469, 46.0435951 ], + [ 8.9748144, 46.0435929 ], + [ 8.9748817, 46.0435883 ], + [ 8.9749486, 46.0435813 ], + [ 8.9750148, 46.0435718 ], + [ 8.9750803, 46.0435599 ], + [ 8.9751447, 46.0435456 ], + [ 8.975208, 46.043529 ], + [ 8.97527, 46.0435102 ], + [ 8.9753304, 46.0434891 ], + [ 8.9753892, 46.0434658 ], + [ 8.9754462, 46.0434404 ], + [ 8.9755012, 46.043413 ], + [ 8.975554, 46.0433836 ], + [ 8.9756045, 46.0433523 ], + [ 8.9756527, 46.0433192 ], + [ 8.9756983, 46.0432844 ], + [ 8.9757412, 46.043248 ], + [ 8.9757813, 46.0432101 ], + [ 8.975818499999999, 46.0431708 ], + [ 8.9758527, 46.0431302 ], + [ 8.9758838, 46.0430883 ], + [ 8.9759117, 46.0430454 ], + [ 8.9759363, 46.0430016 ], + [ 8.9759576, 46.0429569 ], + [ 8.9759756, 46.0429115 ], + [ 8.9759901, 46.0428655 ], + [ 8.9760011, 46.042819 ], + [ 8.9760086, 46.0427722 ], + [ 8.9760126, 46.0427252 ], + [ 8.976013, 46.0426781 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "STP0001", + "country" : "CHE", + "name" : [ + { + "text" : "Carcere Penale Lo Stampino", + "lang" : "de-CH" + }, + { + "text" : "Carcere Penale Lo Stampino", + "lang" : "fr-CH" + }, + { + "text" : "Carcere Penale Lo Stampino", + "lang" : "it-CH" + }, + { + "text" : "Carcere Penale Lo Stampino", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Strutture Carcerarie Cantonali, Casella Postale, 6901 Lugano", + "lang" : "de-CH" + }, + { + "text" : "Strutture Carcerarie Cantonali, Casella Postale, 6901 Lugano", + "lang" : "fr-CH" + }, + { + "text" : "Strutture Carcerarie Cantonali, Casella Postale, 6901 Lugano", + "lang" : "it-CH" + }, + { + "text" : "Strutture Carcerarie Cantonali, Casella Postale, 6901 Lugano", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Direzione delle Strutture Carcerarie / Staff di direzione", + "lang" : "de-CH" + }, + { + "text" : "Direzione delle Strutture Carcerarie / Staff di direzione", + "lang" : "fr-CH" + }, + { + "text" : "Direzione delle Strutture Carcerarie / Staff di direzione", + "lang" : "it-CH" + }, + { + "text" : "Direzione delle Strutture Carcerarie / Staff di direzione", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.ti.ch/carcere", + "email" : "di-penitenziario.cantonale@ti.ch", + "phone" : "0041918150011", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.2481127, 46.2997747 ], + [ 6.247775, 46.2994126 ], + [ 6.2465247999999995, 46.2988143 ], + [ 6.2450395, 46.2985932 ], + [ 6.2435452, 46.2987829 ], + [ 6.2422693, 46.2993545 ], + [ 6.2414061, 46.3002209 ], + [ 6.2410869, 46.3012504 ], + [ 6.2411148, 46.3013557 ], + [ 6.2410464, 46.3015761 ], + [ 6.2404497, 46.302175 ], + [ 6.2401306, 46.3032045 ], + [ 6.2404042, 46.3042403 ], + [ 6.2407641, 46.3046262 ], + [ 6.2415153, 46.3043691 ], + [ 6.2419226, 46.3041936 ], + [ 6.2423986, 46.3037687 ], + [ 6.2425139, 46.3036915 ], + [ 6.2427524, 46.3035552 ], + [ 6.2431762, 46.3033841 ], + [ 6.2432457, 46.3033632 ], + [ 6.2432828, 46.3033617 ], + [ 6.2434806, 46.303379 ], + [ 6.2435941, 46.3034171 ], + [ 6.2436393, 46.3034384 ], + [ 6.2437484, 46.303521 ], + [ 6.2439422, 46.3036931 ], + [ 6.2440198, 46.3037707 ], + [ 6.2441065, 46.3038423 ], + [ 6.2442244, 46.3039317 ], + [ 6.244342, 46.3039946 ], + [ 6.2444379, 46.3040266 ], + [ 6.244585, 46.3040511 ], + [ 6.2446455, 46.3040518 ], + [ 6.2447006, 46.3040408 ], + [ 6.2448135, 46.3039569 ], + [ 6.2448419, 46.3039152 ], + [ 6.244908, 46.30378 ], + [ 6.2450572, 46.3033431 ], + [ 6.2450826, 46.3032536 ], + [ 6.2451499, 46.3031443 ], + [ 6.2452876, 46.3030263 ], + [ 6.2454046, 46.3029771 ], + [ 6.2455762, 46.302918 ], + [ 6.2456893, 46.3028854 ], + [ 6.2457446, 46.3028621 ], + [ 6.2458383, 46.3028295 ], + [ 6.2460076, 46.3027798 ], + [ 6.2461656, 46.3027324 ], + [ 6.2462631, 46.3027103 ], + [ 6.246374, 46.3026816 ], + [ 6.2465348, 46.3026483 ], + [ 6.2466163, 46.3026364 ], + [ 6.2467381, 46.3026361 ], + [ 6.2469052, 46.3026821 ], + [ 6.2471089, 46.3027335 ], + [ 6.2472317, 46.3027538 ], + [ 6.247339, 46.3027583 ], + [ 6.2474875, 46.3027397 ], + [ 6.2475467, 46.3027209 ], + [ 6.2476783, 46.3026689 ], + [ 6.2477021, 46.3026258 ], + [ 6.2477738, 46.3025137 ], + [ 6.247802, 46.3023412 ], + [ 6.2478461, 46.3022075 ], + [ 6.2479184, 46.3021063 ], + [ 6.2479476, 46.3020683 ], + [ 6.248021, 46.3019827 ], + [ 6.2480496, 46.3019596 ], + [ 6.2481225, 46.3019249 ], + [ 6.2482101, 46.3019133 ], + [ 6.2483068, 46.301908 ], + [ 6.2483986, 46.3019187 ], + [ 6.2484902, 46.3019353 ], + [ 6.2485783, 46.3019448 ], + [ 6.2486968, 46.3019895 ], + [ 6.2487288, 46.3019946 ], + [ 6.2488051, 46.3017483 ], + [ 6.2487773, 46.301643 ], + [ 6.2488225, 46.301497 ], + [ 6.2486645, 46.3013518 ], + [ 6.2486257, 46.3013098 ], + [ 6.2485294, 46.3011676 ], + [ 6.2484613, 46.3010093 ], + [ 6.2483735, 46.3008784 ], + [ 6.2483083, 46.3007785 ], + [ 6.2482203, 46.3007252 ], + [ 6.2480776, 46.3006874 ], + [ 6.2479237, 46.300681 ], + [ 6.2478553, 46.3006889 ], + [ 6.2477734, 46.3007315 ], + [ 6.2476706, 46.3007548 ], + [ 6.2475964, 46.300738 ], + [ 6.2474563, 46.3007241 ], + [ 6.2472647, 46.3006851 ], + [ 6.2472297, 46.300653 ], + [ 6.2472192, 46.3005937 ], + [ 6.2472221, 46.3005348 ], + [ 6.2472235, 46.3003537 ], + [ 6.2471844, 46.3002664 ], + [ 6.2470178, 46.3000891 ], + [ 6.2469732, 46.3000151 ], + [ 6.2470041, 46.2999543 ], + [ 6.2474353, 46.2998391 ], + [ 6.2475586, 46.2998676 ], + [ 6.2477735, 46.3000231 ], + [ 6.2478957, 46.3000311 ], + [ 6.2479644, 46.2999893 ], + [ 6.2480254, 46.2998879 ], + [ 6.2480423, 46.2998423 ], + [ 6.2481127, 46.2997747 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-57", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8136477, 47.4804342 ], + [ 7.8136809, 47.4806891 ], + [ 7.8137126, 47.4808329 ], + [ 7.8139386, 47.4807329 ], + [ 7.814157, 47.4806438 ], + [ 7.8144846999999995, 47.4806521 ], + [ 7.8146422, 47.4807283 ], + [ 7.815071, 47.4810822 ], + [ 7.8157824, 47.4814018 ], + [ 7.8161956, 47.4816221 ], + [ 7.8162921999999995, 47.4817915 ], + [ 7.8161096, 47.4820346 ], + [ 7.8159451, 47.482247 ], + [ 7.8159219, 47.4823857 ], + [ 7.8159406, 47.4825404 ], + [ 7.8160544, 47.482799 ], + [ 7.8161436, 47.4828599 ], + [ 7.8162009999999995, 47.4828545 ], + [ 7.8162521, 47.4828222 ], + [ 7.8162697, 47.4827361 ], + [ 7.8162304, 47.4825527 ], + [ 7.8162475, 47.4824356 ], + [ 7.8165425, 47.4822003 ], + [ 7.8165841, 47.482207 ], + [ 7.8170494999999995, 47.4819185 ], + [ 7.8172394, 47.4820089 ], + [ 7.8175325, 47.4821825 ], + [ 7.8176983, 47.4822164 ], + [ 7.8177472, 47.4822112 ], + [ 7.817959, 47.4820923 ], + [ 7.8181937999999995, 47.4819596 ], + [ 7.8181973, 47.4819193 ], + [ 7.8180013, 47.4818712 ], + [ 7.8179447, 47.481672 ], + [ 7.8178298, 47.4815707 ], + [ 7.8175261, 47.4813575 ], + [ 7.8174983000000005, 47.4813399 ], + [ 7.8174655, 47.4812997 ], + [ 7.8173875, 47.4812132 ], + [ 7.8176438, 47.4811107 ], + [ 7.818015, 47.4812817 ], + [ 7.8181353, 47.4813381 ], + [ 7.8185955, 47.4813341 ], + [ 7.8186451, 47.4813323 ], + [ 7.8186668, 47.4812949 ], + [ 7.8187666, 47.481292 ], + [ 7.8189505, 47.4813267 ], + [ 7.8190639, 47.4814142 ], + [ 7.8192104, 47.4815032 ], + [ 7.8193181, 47.4814861 ], + [ 7.8194297, 47.4813878 ], + [ 7.8192409, 47.4812398 ], + [ 7.8194316, 47.4810966 ], + [ 7.8192185, 47.4809945 ], + [ 7.8191392, 47.4809667 ], + [ 7.8190627, 47.4809401 ], + [ 7.8189902, 47.4809305 ], + [ 7.8188923, 47.4809181 ], + [ 7.8187959, 47.4809084 ], + [ 7.8186686, 47.4809144 ], + [ 7.81843, 47.4810657 ], + [ 7.8181887, 47.481014 ], + [ 7.8181111, 47.4810203 ], + [ 7.8180213, 47.4810159 ], + [ 7.8178087, 47.4809568 ], + [ 7.8178296, 47.480937 ], + [ 7.8177426, 47.4809183 ], + [ 7.8174174, 47.4808059 ], + [ 7.8170558, 47.4805951 ], + [ 7.817527, 47.480141 ], + [ 7.8178627, 47.4798158 ], + [ 7.8181166, 47.4799031 ], + [ 7.8185744, 47.4801283 ], + [ 7.8189929, 47.4803024 ], + [ 7.8190489, 47.4803088 ], + [ 7.8192996, 47.4803338 ], + [ 7.8194236, 47.4803509 ], + [ 7.8198687, 47.4804345 ], + [ 7.8205492, 47.4808627 ], + [ 7.82121, 47.4811805 ], + [ 7.8212546, 47.4813886 ], + [ 7.8212584, 47.4814134 ], + [ 7.8212847, 47.4818665 ], + [ 7.8219328, 47.4816614 ], + [ 7.8230217, 47.4816059 ], + [ 7.8238226, 47.4815847 ], + [ 7.8246417, 47.4815251 ], + [ 7.8254062, 47.481638 ], + [ 7.8261001, 47.4817435 ], + [ 7.8269738, 47.4818757 ], + [ 7.8279145, 47.4819042 ], + [ 7.828752, 47.4819373 ], + [ 7.8297728, 47.4819759 ], + [ 7.8308188, 47.4820957 ], + [ 7.8316907, 47.4822729 ], + [ 7.8325986, 47.4824596 ], + [ 7.8329930999999995, 47.4817484 ], + [ 7.8332372, 47.4813658 ], + [ 7.8335264, 47.4808385 ], + [ 7.8343003, 47.479674 ], + [ 7.834623, 47.4782729 ], + [ 7.8338411, 47.4780038 ], + [ 7.8331018, 47.4777978 ], + [ 7.8322678, 47.4777962 ], + [ 7.8311967, 47.4776984 ], + [ 7.8304718, 47.4776716 ], + [ 7.8301142, 47.4776583 ], + [ 7.8299022, 47.477514 ], + [ 7.8295132, 47.4771769 ], + [ 7.8290578, 47.4768999 ], + [ 7.8287454, 47.476612 ], + [ 7.8284148, 47.4762609 ], + [ 7.8279946, 47.4757203 ], + [ 7.827895, 47.4755106 ], + [ 7.8276405, 47.4750356 ], + [ 7.8272644, 47.4747306 ], + [ 7.8267942, 47.474421 ], + [ 7.8264584, 47.4742173 ], + [ 7.8259955, 47.4737183 ], + [ 7.8261676, 47.4732863 ], + [ 7.8263663999999995, 47.4729378 ], + [ 7.8266568, 47.4724209 ], + [ 7.8269689, 47.4718764 ], + [ 7.8267898, 47.4718141 ], + [ 7.8266033, 47.4717599 ], + [ 7.8263819, 47.4717179 ], + [ 7.8260414, 47.4716976 ], + [ 7.8255780999999995, 47.4717063 ], + [ 7.8252098, 47.4717384 ], + [ 7.8249786, 47.4717892 ], + [ 7.8246983, 47.4718687 ], + [ 7.8245317, 47.4719574 ], + [ 7.824378, 47.4720027 ], + [ 7.8240972, 47.4720926 ], + [ 7.8237391, 47.472305 ], + [ 7.8237187, 47.47231 ], + [ 7.8237068, 47.4723255 ], + [ 7.8236079, 47.4724735 ], + [ 7.8236253, 47.4727091 ], + [ 7.823652, 47.4727294 ], + [ 7.8237707, 47.4728587 ], + [ 7.8238307, 47.4728845 ], + [ 7.8243146, 47.4738513 ], + [ 7.824419, 47.4745077 ], + [ 7.8249504, 47.4750835 ], + [ 7.824997, 47.4751528 ], + [ 7.8253475, 47.4755014 ], + [ 7.8249564, 47.4756631 ], + [ 7.8249978, 47.4757126 ], + [ 7.8252177, 47.4759344 ], + [ 7.8256355, 47.4757614 ], + [ 7.8259234, 47.4759716 ], + [ 7.8265578, 47.4760728 ], + [ 7.8270497, 47.4765635 ], + [ 7.8272281, 47.4766717 ], + [ 7.8274044, 47.4767774 ], + [ 7.8277000999999995, 47.4770442 ], + [ 7.8278088, 47.4772052 ], + [ 7.8279294, 47.477362 ], + [ 7.8280462, 47.4775257 ], + [ 7.8283403, 47.4779197 ], + [ 7.8280921, 47.4782403 ], + [ 7.828094, 47.4782443 ], + [ 7.8279874, 47.4783791 ], + [ 7.8281639, 47.47871 ], + [ 7.8282647999999995, 47.4789299 ], + [ 7.8277964, 47.479349 ], + [ 7.8271872, 47.4795965 ], + [ 7.8266029, 47.479307 ], + [ 7.825757, 47.4790238 ], + [ 7.8254237, 47.479284 ], + [ 7.8250367, 47.4794912 ], + [ 7.8242574, 47.4796587 ], + [ 7.8240058, 47.4797312 ], + [ 7.8235101, 47.4798738 ], + [ 7.8233901, 47.4798968 ], + [ 7.8230006, 47.4799714 ], + [ 7.822409, 47.4795511 ], + [ 7.8218485, 47.4796114 ], + [ 7.821557, 47.4796443 ], + [ 7.8211822, 47.4793648 ], + [ 7.8214637, 47.4791299 ], + [ 7.8216336, 47.4788844 ], + [ 7.821709, 47.478636 ], + [ 7.8217824, 47.4783981 ], + [ 7.8218127, 47.4782904 ], + [ 7.8216939, 47.4780853 ], + [ 7.821644, 47.4779468 ], + [ 7.8216304, 47.4779093 ], + [ 7.8215386, 47.4776656 ], + [ 7.8215872, 47.4775765 ], + [ 7.8216085, 47.4775371 ], + [ 7.8216619, 47.4774572 ], + [ 7.8216536, 47.4774536 ], + [ 7.8209295, 47.4773168 ], + [ 7.8207059999999995, 47.4772174 ], + [ 7.82036, 47.4770262 ], + [ 7.8202052, 47.4770167 ], + [ 7.8197638, 47.4769894 ], + [ 7.8192536, 47.476832 ], + [ 7.8190276999999995, 47.4767434 ], + [ 7.8178358, 47.4762688 ], + [ 7.8178263, 47.4762823 ], + [ 7.8178354, 47.4763205 ], + [ 7.8179005, 47.4765982 ], + [ 7.8179020999999995, 47.4767935 ], + [ 7.8173131, 47.4768995 ], + [ 7.8166929, 47.4769431 ], + [ 7.8162046, 47.4768427 ], + [ 7.8156972, 47.4768022 ], + [ 7.8156391, 47.476781 ], + [ 7.8155995, 47.4767966 ], + [ 7.8157339, 47.4768976 ], + [ 7.8159038, 47.4769981 ], + [ 7.8160261, 47.4771703 ], + [ 7.8160871, 47.4775226 ], + [ 7.8156426, 47.4777978 ], + [ 7.8152106, 47.47792 ], + [ 7.8144545, 47.4779922 ], + [ 7.8144114, 47.477769 ], + [ 7.81446, 47.47767 ], + [ 7.8143603, 47.4775383 ], + [ 7.8141365, 47.4776054 ], + [ 7.8140883, 47.4776654 ], + [ 7.8142173, 47.4778136 ], + [ 7.8142061, 47.4778437 ], + [ 7.8141834, 47.4779026 ], + [ 7.8141715, 47.4779379 ], + [ 7.814141, 47.4779792 ], + [ 7.8141121, 47.4780226 ], + [ 7.8140631, 47.4781668 ], + [ 7.8140642, 47.4783253 ], + [ 7.8140906, 47.4784773 ], + [ 7.8141151, 47.4785994 ], + [ 7.8140364, 47.4786317 ], + [ 7.8145548, 47.4789788 ], + [ 7.8145492999999995, 47.4789929 ], + [ 7.8144621, 47.4792128 ], + [ 7.8144536, 47.479213 ], + [ 7.8142531, 47.47926 ], + [ 7.8140129, 47.4792825 ], + [ 7.8140087, 47.47928 ], + [ 7.8137460999999995, 47.4794382 ], + [ 7.8131032, 47.4794506 ], + [ 7.8124732, 47.4793595 ], + [ 7.8119771, 47.4792504 ], + [ 7.8117276, 47.4795483 ], + [ 7.812011, 47.4797923 ], + [ 7.8120894, 47.4798623 ], + [ 7.8121709, 47.4799345 ], + [ 7.8123073, 47.4799171 ], + [ 7.8124239, 47.4800043 ], + [ 7.8127078, 47.4799538 ], + [ 7.8128568, 47.4800955 ], + [ 7.8132892, 47.4801792 ], + [ 7.8134323, 47.4802806 ], + [ 7.8136477, 47.4804342 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns275", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Sissacher Fluh - Bischofsstein", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Sissacher Fluh - Bischofsstein", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Sissacher Fluh - Bischofsstein", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Sissacher Fluh - Bischofsstein", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.6688887, 47.3936328 ], + [ 8.6688644, 47.3935648 ], + [ 8.6685504, 47.3928966 ], + [ 8.6658271, 47.3937637 ], + [ 8.6657838, 47.3937755 ], + [ 8.6639973, 47.3942435 ], + [ 8.6639292, 47.3942044 ], + [ 8.664077, 47.3941047 ], + [ 8.6642767, 47.3939768 ], + [ 8.6642308, 47.3939438 ], + [ 8.6642431, 47.393936 ], + [ 8.6642319, 47.3939176 ], + [ 8.6638781, 47.3933367 ], + [ 8.6637048, 47.3930521 ], + [ 8.6636898, 47.3930273 ], + [ 8.6634411, 47.3930901 ], + [ 8.6632554, 47.3931369 ], + [ 8.6629092, 47.3932243 ], + [ 8.662297, 47.3933787 ], + [ 8.6622842, 47.3933819 ], + [ 8.6625306, 47.3936875 ], + [ 8.6626015, 47.3937755 ], + [ 8.6628815, 47.3941229 ], + [ 8.6629453, 47.394202 ], + [ 8.6629596, 47.3942144 ], + [ 8.6629764, 47.3942253 ], + [ 8.6630319, 47.3943094 ], + [ 8.6629858, 47.3943183 ], + [ 8.6628376, 47.3943468 ], + [ 8.6618123, 47.3945444 ], + [ 8.6615541, 47.3945898 ], + [ 8.6612854, 47.3946344 ], + [ 8.6610218, 47.394671 ], + [ 8.66082, 47.3946948 ], + [ 8.6606363, 47.3947164 ], + [ 8.660318, 47.3947458 ], + [ 8.6601505, 47.3947573 ], + [ 8.6593641, 47.3948113 ], + [ 8.6583304, 47.3948826 ], + [ 8.6572105, 47.3949599 ], + [ 8.6560908, 47.3950371 ], + [ 8.654944799999999, 47.3951161 ], + [ 8.6548699, 47.3951213 ], + [ 8.6527435, 47.3952679 ], + [ 8.6512823, 47.3953687 ], + [ 8.6512217, 47.3953729 ], + [ 8.650028, 47.3954552 ], + [ 8.650027399999999, 47.3954509 ], + [ 8.6476797, 47.3956128 ], + [ 8.6340064, 47.3985906 ], + [ 8.6366, 47.4040818 ], + [ 8.6383906, 47.4049735 ], + [ 8.6359673, 47.4070268 ], + [ 8.6356514, 47.4074936 ], + [ 8.6358076, 47.4075377 ], + [ 8.6365419, 47.4077449 ], + [ 8.6372758, 47.4079512 ], + [ 8.6382306, 47.40822 ], + [ 8.639032, 47.408446 ], + [ 8.6395207, 47.4081983 ], + [ 8.6397308, 47.4081082 ], + [ 8.6402003, 47.4078564 ], + [ 8.6403591, 47.4077947 ], + [ 8.6405032, 47.4077183 ], + [ 8.6415803, 47.4071677 ], + [ 8.6420907, 47.4069069 ], + [ 8.6428655, 47.4065111 ], + [ 8.6431686, 47.4063562 ], + [ 8.644473, 47.4056896 ], + [ 8.6446091, 47.4056201 ], + [ 8.644745499999999, 47.4055102 ], + [ 8.6448344, 47.4054014 ], + [ 8.6449145, 47.4052882 ], + [ 8.6449329, 47.4052826 ], + [ 8.64511, 47.4053212 ], + [ 8.645733, 47.4048083 ], + [ 8.6457482, 47.4047749 ], + [ 8.6457223, 47.4047454 ], + [ 8.6453761, 47.404553 ], + [ 8.6454026, 47.4044951 ], + [ 8.645443, 47.4044074 ], + [ 8.6458529, 47.4035341 ], + [ 8.6462532, 47.4026771 ], + [ 8.646453900000001, 47.4022474 ], + [ 8.6466531, 47.4018195 ], + [ 8.6468528, 47.4013905 ], + [ 8.6470418, 47.4009846 ], + [ 8.6472513, 47.4005321 ], + [ 8.6475483, 47.3998906 ], + [ 8.647612, 47.3997681 ], + [ 8.6477362, 47.3996663 ], + [ 8.6477871, 47.3996204 ], + [ 8.6479351, 47.3995694 ], + [ 8.6483179, 47.3994373 ], + [ 8.6488891, 47.3993098 ], + [ 8.6493238, 47.3994074 ], + [ 8.6496338, 47.399477 ], + [ 8.6510508, 47.399795 ], + [ 8.6511093, 47.3998028 ], + [ 8.6510132, 47.4001194 ], + [ 8.6510392, 47.4001181 ], + [ 8.6529028, 47.4000274 ], + [ 8.6535213, 47.3996344 ], + [ 8.6537556, 47.3995136 ], + [ 8.6538825, 47.3994388 ], + [ 8.6540265, 47.399354 ], + [ 8.6545997, 47.3990618 ], + [ 8.6551318, 47.3988159 ], + [ 8.6558201, 47.3985421 ], + [ 8.6560266, 47.3984637 ], + [ 8.6565259, 47.3982939 ], + [ 8.6570281, 47.3981343 ], + [ 8.6575418, 47.3979892 ], + [ 8.6582816, 47.397807 ], + [ 8.6590334, 47.3976338 ], + [ 8.6597921, 47.3974641 ], + [ 8.6613042, 47.3971431 ], + [ 8.6620632, 47.3969887 ], + [ 8.6629846, 47.3968233 ], + [ 8.6634461, 47.3967496 ], + [ 8.6639185, 47.3966847 ], + [ 8.6641703, 47.3966454 ], + [ 8.6642311, 47.3966368 ], + [ 8.6643133, 47.396625 ], + [ 8.6657703, 47.3964768 ], + [ 8.6657968, 47.3964778 ], + [ 8.6658221, 47.3964833 ], + [ 8.6658446, 47.396493 ], + [ 8.6658627, 47.3965062 ], + [ 8.6660985, 47.3964843 ], + [ 8.6673396, 47.3964055 ], + [ 8.6682012, 47.3963691 ], + [ 8.668152899999999, 47.3963352 ], + [ 8.6681501, 47.3963036 ], + [ 8.6680519, 47.396299 ], + [ 8.6679595, 47.3962761 ], + [ 8.6679178, 47.3962582 ], + [ 8.6678473, 47.3962117 ], + [ 8.667557, 47.3959701 ], + [ 8.6669349, 47.395437 ], + [ 8.666877, 47.3953839 ], + [ 8.6684591, 47.3949461 ], + [ 8.6698459, 47.3947219 ], + [ 8.6696397, 47.3945613 ], + [ 8.6694721, 47.3944123 ], + [ 8.669357699999999, 47.394281 ], + [ 8.6693342, 47.3942494 ], + [ 8.6688887, 47.3936328 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSMD002", + "country" : "CHE", + "name" : [ + { + "text" : "LSMD Dübendorf (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSMD Dübendorf (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSMD Dübendorf (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSMD Dübendorf (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Special Flight Office (SFO)", + "lang" : "de-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "fr-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "it-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "en-GB" + } + ], + "siteURL" : "https://skyguide.ch/services/special-flights", + "email" : "specialflight@skyguide.ch", + "phone" : "0041439316236", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.4876498, 47.2251285 ], + [ 9.4876389, 47.2249874 ], + [ 9.4876173, 47.2248469 ], + [ 9.4875848, 47.2247074 ], + [ 9.4875417, 47.2245692 ], + [ 9.4874881, 47.2244327 ], + [ 9.487424, 47.2242984 ], + [ 9.4873497, 47.2241665 ], + [ 9.4872654, 47.2240374 ], + [ 9.4871713, 47.2239116 ], + [ 9.4870676, 47.2237892 ], + [ 9.4869547, 47.2236707 ], + [ 9.4868328, 47.2235564 ], + [ 9.4867023, 47.2234466 ], + [ 9.4865636, 47.2233416 ], + [ 9.4864169, 47.2232417 ], + [ 9.4862628, 47.2231472 ], + [ 9.4861017, 47.2230583 ], + [ 9.485934, 47.2229752 ], + [ 9.48576, 47.2228983 ], + [ 9.4855805, 47.2228276 ], + [ 9.4853957, 47.2227635 ], + [ 9.4852063, 47.222706 ], + [ 9.4850127, 47.2226554 ], + [ 9.4848155, 47.2226117 ], + [ 9.4846152, 47.2225751 ], + [ 9.4844124, 47.2225457 ], + [ 9.4842076, 47.2225236 ], + [ 9.4840013, 47.2225088 ], + [ 9.4837943, 47.2225014 ], + [ 9.4835869, 47.2225014 ], + [ 9.4833798, 47.2225088 ], + [ 9.4831736, 47.2225235 ], + [ 9.4829688, 47.2225456 ], + [ 9.4827659, 47.222575 ], + [ 9.4825656, 47.2226115 ], + [ 9.4823684, 47.2226552 ], + [ 9.4821748, 47.2227058 ], + [ 9.4819853, 47.2227632 ], + [ 9.4818006, 47.2228273 ], + [ 9.481621, 47.222898 ], + [ 9.481447, 47.2229749 ], + [ 9.4812792, 47.2230579 ], + [ 9.4811181, 47.2231468 ], + [ 9.4809639, 47.2232413 ], + [ 9.4808173, 47.2233412 ], + [ 9.4806785, 47.2234461 ], + [ 9.480548, 47.2235559 ], + [ 9.4804261, 47.2236702 ], + [ 9.4803131, 47.2237887 ], + [ 9.4802094, 47.223911 ], + [ 9.4801152, 47.2240369 ], + [ 9.4800308, 47.2241659 ], + [ 9.4799565, 47.2242978 ], + [ 9.4798923, 47.2244321 ], + [ 9.4798386, 47.2245686 ], + [ 9.4797955, 47.2247068 ], + [ 9.479763, 47.2248463 ], + [ 9.4797413, 47.2249868 ], + [ 9.4797304, 47.2251279 ], + [ 9.4797304, 47.2252691 ], + [ 9.4797412, 47.2254102 ], + [ 9.4797628, 47.2255507 ], + [ 9.4797952, 47.2256903 ], + [ 9.4798383, 47.2258284 ], + [ 9.4798919, 47.2259649 ], + [ 9.479956, 47.2260993 ], + [ 9.4800303, 47.2262312 ], + [ 9.4801146, 47.2263602 ], + [ 9.4802087, 47.2264861 ], + [ 9.4803124, 47.2266085 ], + [ 9.4804253, 47.226727 ], + [ 9.4805472, 47.2268413 ], + [ 9.4806777, 47.2269511 ], + [ 9.4808164, 47.2270561 ], + [ 9.480963, 47.227156 ], + [ 9.4811171, 47.2272505 ], + [ 9.4812782, 47.2273394 ], + [ 9.481446, 47.2274225 ], + [ 9.4816199, 47.2274995 ], + [ 9.4817995, 47.2275701 ], + [ 9.4819843, 47.2276343 ], + [ 9.4821737, 47.2276917 ], + [ 9.4823673, 47.2277424 ], + [ 9.4825645, 47.2277861 ], + [ 9.4827649, 47.2278226 ], + [ 9.4829677, 47.227852 ], + [ 9.4831725, 47.2278741 ], + [ 9.4833788, 47.2278889 ], + [ 9.4835859, 47.2278963 ], + [ 9.4837933, 47.2278964 ], + [ 9.4840004, 47.227889 ], + [ 9.4842066, 47.2278742 ], + [ 9.4844115, 47.2278521 ], + [ 9.4846143, 47.2278228 ], + [ 9.4848147, 47.2277862 ], + [ 9.4850119, 47.2277426 ], + [ 9.4852055, 47.227692 ], + [ 9.485395, 47.2276345 ], + [ 9.4855798, 47.2275704 ], + [ 9.4857594, 47.2274998 ], + [ 9.4859333, 47.2274229 ], + [ 9.486101099999999, 47.2273398 ], + [ 9.4862623, 47.2272509 ], + [ 9.4864164, 47.2271564 ], + [ 9.4865631, 47.2270565 ], + [ 9.4867019, 47.2269515 ], + [ 9.4868324, 47.2268418 ], + [ 9.4869543, 47.2267275 ], + [ 9.4870672, 47.226609 ], + [ 9.487171, 47.2264867 ], + [ 9.4872651, 47.2263608 ], + [ 9.4873495, 47.2262317 ], + [ 9.4874238, 47.2260999 ], + [ 9.4874879, 47.2259655 ], + [ 9.4875416, 47.225829 ], + [ 9.4875847, 47.2256909 ], + [ 9.4876172, 47.2255513 ], + [ 9.4876389, 47.2254108 ], + [ 9.4876498, 47.2252698 ], + [ 9.4876498, 47.2251285 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SAX0001", + "country" : "CHE", + "name" : [ + { + "text" : "Kantonale Strafanstalt Saxerriet", + "lang" : "de-CH" + }, + { + "text" : "Kantonale Strafanstalt Saxerriet", + "lang" : "fr-CH" + }, + { + "text" : "Kantonale Strafanstalt Saxerriet", + "lang" : "it-CH" + }, + { + "text" : "Kantonale Strafanstalt Saxerriet", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kantonale Strafanstalt Saxerriet", + "lang" : "de-CH" + }, + { + "text" : "Prison cantonale de Saxerriet", + "lang" : "fr-CH" + }, + { + "text" : "Carcere cantonale Saxerriet", + "lang" : "it-CH" + }, + { + "text" : "Cantonal prison Saxerriet", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Direktion", + "lang" : "de-CH" + }, + { + "text" : "Direction", + "lang" : "fr-CH" + }, + { + "text" : "Direzione", + "lang" : "it-CH" + }, + { + "text" : "Directorate", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Frau Barbara Looser", + "lang" : "de-CH" + }, + { + "text" : "Frau Barbara Looser", + "lang" : "fr-CH" + }, + { + "text" : "Frau Barbara Looser", + "lang" : "it-CH" + }, + { + "text" : "Frau Barbara Looser", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.saxerriet.sg.ch", + "email" : "zentrale@saxerriet.ch", + "phone" : "0041582282900", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.1364428, 46.1418122 ], + [ 6.1350744, 46.1418793 ], + [ 6.1337213, 46.1423479 ], + [ 6.1336222, 46.1424012 ], + [ 6.1327881, 46.1430171 ], + [ 6.1322692, 46.1437823 ], + [ 6.1321165, 46.1446215 ], + [ 6.1323452, 46.1454523 ], + [ 6.1329327, 46.1461931 ], + [ 6.1330556, 46.146303 ], + [ 6.1342009, 46.1469919 ], + [ 6.1356382, 46.1473238 ], + [ 6.136322, 46.1472895 ], + [ 6.1367469, 46.1473163 ], + [ 6.1370354, 46.1472538 ], + [ 6.1371489, 46.1472482 ], + [ 6.1372922, 46.1471983 ], + [ 6.1381915, 46.1470036 ], + [ 6.1393544, 46.1463309 ], + [ 6.1394024, 46.1462897 ], + [ 6.1400097, 46.1455584 ], + [ 6.1402622000000004, 46.1447324 ], + [ 6.1402583, 46.144707 ], + [ 6.1401593, 46.1446832 ], + [ 6.1398724, 46.1445799 ], + [ 6.1397808, 46.1445242 ], + [ 6.1395677, 46.144486 ], + [ 6.1393927999999995, 46.1444505 ], + [ 6.1393217, 46.1444252 ], + [ 6.1386748, 46.1440369 ], + [ 6.1385974, 46.1439983 ], + [ 6.1383981, 46.1438622 ], + [ 6.1382544, 46.1437881 ], + [ 6.1381909, 46.1437591 ], + [ 6.1381221, 46.1437191 ], + [ 6.1380458, 46.1436605 ], + [ 6.1379547, 46.1435994 ], + [ 6.1379122, 46.1435789 ], + [ 6.1377906, 46.1435441 ], + [ 6.1377495, 46.1435217 ], + [ 6.1377122, 46.1434771 ], + [ 6.1376662, 46.1434396 ], + [ 6.1375723, 46.1433907 ], + [ 6.1374937, 46.1433574 ], + [ 6.1374532, 46.1433353 ], + [ 6.1372489, 46.1432031 ], + [ 6.1371688, 46.1431334 ], + [ 6.1370976, 46.1430843 ], + [ 6.1368774, 46.1429693 ], + [ 6.1368006, 46.1428925 ], + [ 6.1367507, 46.1427708 ], + [ 6.1367008, 46.1427315 ], + [ 6.1366019, 46.1425618 ], + [ 6.1365656, 46.1424397 ], + [ 6.136493, 46.1423928 ], + [ 6.1364445, 46.1423639 ], + [ 6.1364326, 46.1423598 ], + [ 6.1363975, 46.142319 ], + [ 6.1363881, 46.1423052 ], + [ 6.1363791, 46.14227 ], + [ 6.1364115, 46.141968 ], + [ 6.1364428, 46.1418122 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-58", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.0126585, 46.3334784 ], + [ 8.0126517, 46.3333372 ], + [ 8.0126342, 46.3331964 ], + [ 8.0126061, 46.3330565 ], + [ 8.0125675, 46.3329177 ], + [ 8.0125184, 46.3327806 ], + [ 8.012459, 46.3326454 ], + [ 8.0123895, 46.3325126 ], + [ 8.0123101, 46.3323825 ], + [ 8.012221, 46.3322554 ], + [ 8.0121223, 46.3321317 ], + [ 8.0120145, 46.3320118 ], + [ 8.0118977, 46.3318959 ], + [ 8.0117724, 46.3317845 ], + [ 8.0116388, 46.3316777 ], + [ 8.0114973, 46.331576 ], + [ 8.0113484, 46.3314795 ], + [ 8.0111923, 46.3313885 ], + [ 8.0110296, 46.3313033 ], + [ 8.0108607, 46.3312241 ], + [ 8.010686, 46.3311512 ], + [ 8.010506, 46.3310847 ], + [ 8.0103213, 46.3310248 ], + [ 8.0101323, 46.3309716 ], + [ 8.0099395, 46.3309255 ], + [ 8.0097436, 46.3308863 ], + [ 8.0095449, 46.3308543 ], + [ 8.0093441, 46.3308296 ], + [ 8.0091417, 46.3308122 ], + [ 8.0089382, 46.3308021 ], + [ 8.0087343, 46.3307994 ], + [ 8.0085305, 46.3308042 ], + [ 8.0083272, 46.3308163 ], + [ 8.0081252, 46.3308357 ], + [ 8.007925, 46.3308625 ], + [ 8.007727, 46.3308965 ], + [ 8.0075318, 46.3309376 ], + [ 8.0073401, 46.3309857 ], + [ 8.0071522, 46.3310407 ], + [ 8.0069688, 46.3311024 ], + [ 8.0067902, 46.3311708 ], + [ 8.0066171, 46.3312455 ], + [ 8.0064498, 46.3313263 ], + [ 8.0062889, 46.3314131 ], + [ 8.0061348, 46.3315057 ], + [ 8.0059879, 46.3316037 ], + [ 8.0058485, 46.3317069 ], + [ 8.0057172, 46.3318149 ], + [ 8.0055942, 46.3319276 ], + [ 8.0054799, 46.3320447 ], + [ 8.0053746, 46.3321657 ], + [ 8.0052785, 46.3322903 ], + [ 8.0051921, 46.3324183 ], + [ 8.0051154, 46.3325492 ], + [ 8.0050487, 46.3326827 ], + [ 8.0049922, 46.3328185 ], + [ 8.004946, 46.3329561 ], + [ 8.0049102, 46.3330952 ], + [ 8.0048851, 46.3332354 ], + [ 8.004870499999999, 46.3333763 ], + [ 8.0048667, 46.3335176 ], + [ 8.0048735, 46.3336588 ], + [ 8.0048909, 46.3337996 ], + [ 8.004919, 46.3339395 ], + [ 8.0049577, 46.3340782 ], + [ 8.0050067, 46.3342154 ], + [ 8.005066, 46.3343505 ], + [ 8.0051355, 46.3344834 ], + [ 8.0052149, 46.3346135 ], + [ 8.0053041, 46.3347406 ], + [ 8.0054027, 46.3348643 ], + [ 8.0055105, 46.3349842 ], + [ 8.0056273, 46.3351001 ], + [ 8.0057526, 46.3352115 ], + [ 8.0058862, 46.3353183 ], + [ 8.0060277, 46.3354201 ], + [ 8.0061766, 46.3355166 ], + [ 8.0063327, 46.3356076 ], + [ 8.0064954, 46.3356928 ], + [ 8.0066644, 46.335772 ], + [ 8.006839, 46.3358449 ], + [ 8.007019, 46.3359114 ], + [ 8.0072038, 46.3359713 ], + [ 8.0073928, 46.3360244 ], + [ 8.0075855, 46.3360706 ], + [ 8.0077815, 46.3361098 ], + [ 8.0079802, 46.3361418 ], + [ 8.0081811, 46.3361665 ], + [ 8.0083835, 46.3361839 ], + [ 8.0085869, 46.336194 ], + [ 8.0087909, 46.3361967 ], + [ 8.0089948, 46.3361919 ], + [ 8.009198, 46.3361798 ], + [ 8.0094, 46.3361604 ], + [ 8.0096003, 46.3361336 ], + [ 8.0097983, 46.3360996 ], + [ 8.0099935, 46.3360585 ], + [ 8.0101852, 46.3360104 ], + [ 8.0103731, 46.3359554 ], + [ 8.0105566, 46.3358936 ], + [ 8.0107351, 46.3358253 ], + [ 8.0109083, 46.3357506 ], + [ 8.0110755, 46.3356697 ], + [ 8.0112365, 46.3355829 ], + [ 8.0113906, 46.3354904 ], + [ 8.0115375, 46.3353924 ], + [ 8.0116768, 46.3352892 ], + [ 8.0118082, 46.3351811 ], + [ 8.0119312, 46.3350684 ], + [ 8.0120455, 46.3349513 ], + [ 8.0121508, 46.3348303 ], + [ 8.0122468, 46.3347057 ], + [ 8.0123333, 46.3345777 ], + [ 8.0124099, 46.3344468 ], + [ 8.0124766, 46.3343133 ], + [ 8.0125331, 46.3341775 ], + [ 8.0125793, 46.3340399 ], + [ 8.012615, 46.3339008 ], + [ 8.0126402, 46.3337606 ], + [ 8.0126547, 46.3336197 ], + [ 8.0126585, 46.3334784 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0017", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Bitsch", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Bitsch", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Bitsch", + "lang" : "it-CH" + }, + { + "text" : "Substation Bitsch", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.4822931, 47.5170679 ], + [ 8.4824978, 47.517228 ], + [ 8.4825149, 47.5172406 ], + [ 8.482826, 47.5174739 ], + [ 8.4831539, 47.5176983 ], + [ 8.483446, 47.5178818 ], + [ 8.4837503, 47.5180551 ], + [ 8.484066, 47.5182191 ], + [ 8.4843938, 47.5183727 ], + [ 8.4847842, 47.5185404 ], + [ 8.4851831, 47.5186977 ], + [ 8.4861452, 47.51906 ], + [ 8.4870786, 47.5194105 ], + [ 8.4871135, 47.5193886 ], + [ 8.4873668, 47.5192014 ], + [ 8.488498, 47.5183657 ], + [ 8.4885621, 47.5183184 ], + [ 8.4886338, 47.5182599 ], + [ 8.4886673, 47.5182294 ], + [ 8.4886992, 47.5181982 ], + [ 8.4887295, 47.5181662 ], + [ 8.4887581, 47.5181335 ], + [ 8.488785, 47.5181001 ], + [ 8.4888101, 47.5180662 ], + [ 8.4890729, 47.5176627 ], + [ 8.489122, 47.5176017 ], + [ 8.4891493, 47.5175722 ], + [ 8.4891783, 47.5175436 ], + [ 8.4892091, 47.5175158 ], + [ 8.4892264, 47.5175004 ], + [ 8.4892344, 47.5174924 ], + [ 8.489242, 47.5174842 ], + [ 8.4892492, 47.5174758 ], + [ 8.4892559, 47.5174673 ], + [ 8.4892621, 47.5174586 ], + [ 8.4892679, 47.5174497 ], + [ 8.4892732, 47.5174408 ], + [ 8.4892781, 47.5174317 ], + [ 8.4892824, 47.5174224 ], + [ 8.4892863, 47.5174131 ], + [ 8.4892896, 47.5174037 ], + [ 8.4892925, 47.5173942 ], + [ 8.4892949, 47.5173847 ], + [ 8.4892967, 47.5173751 ], + [ 8.4892981, 47.5173655 ], + [ 8.4892989, 47.5173558 ], + [ 8.4892993, 47.5173461 ], + [ 8.4892991, 47.5173364 ], + [ 8.4892984, 47.5173268 ], + [ 8.4892972, 47.5173171 ], + [ 8.4892954, 47.5173075 ], + [ 8.4892932, 47.517298 ], + [ 8.4892905, 47.5172885 ], + [ 8.4892872, 47.517279 ], + [ 8.489283499999999, 47.5172697 ], + [ 8.4892793, 47.5172605 ], + [ 8.4892746, 47.5172513 ], + [ 8.4892694, 47.5172423 ], + [ 8.4892637, 47.5172334 ], + [ 8.4889145, 47.5166694 ], + [ 8.4888082, 47.5164818 ], + [ 8.4887634, 47.5163859 ], + [ 8.4886677, 47.51618 ], + [ 8.4885593, 47.5159765 ], + [ 8.4885325, 47.5159331 ], + [ 8.4885173, 47.5159119 ], + [ 8.4885009, 47.5158912 ], + [ 8.4884835, 47.5158708 ], + [ 8.4884649, 47.5158509 ], + [ 8.4884452, 47.5158316 ], + [ 8.4884245, 47.5158127 ], + [ 8.4884027, 47.5157943 ], + [ 8.48838, 47.5157765 ], + [ 8.4883563, 47.5157593 ], + [ 8.4882876, 47.5157114 ], + [ 8.4882514, 47.5156888 ], + [ 8.4882139, 47.5156671 ], + [ 8.4881753, 47.5156463 ], + [ 8.4881355, 47.5156266 ], + [ 8.488053, 47.5155902 ], + [ 8.4880103, 47.5155736 ], + [ 8.4879668, 47.5155581 ], + [ 8.4879224, 47.5155437 ], + [ 8.4878772, 47.5155304 ], + [ 8.4878769, 47.5155303 ], + [ 8.4878999, 47.5154979 ], + [ 8.4876337, 47.5151838 ], + [ 8.4884497, 47.5149383 ], + [ 8.488761, 47.5149054 ], + [ 8.4888193, 47.5147764 ], + [ 8.4889555, 47.5148149 ], + [ 8.4890018, 47.5148027 ], + [ 8.4891927, 47.5147656 ], + [ 8.4892577, 47.5145771 ], + [ 8.4894182, 47.5144261 ], + [ 8.4894374, 47.5142203 ], + [ 8.4894506, 47.5141857 ], + [ 8.4899385, 47.5129163 ], + [ 8.4900429, 47.5128737 ], + [ 8.4905722, 47.5128892 ], + [ 8.4905503, 47.5123029 ], + [ 8.4905373, 47.5122029 ], + [ 8.490492, 47.5120045 ], + [ 8.4903947, 47.5117122 ], + [ 8.4902021, 47.5112728 ], + [ 8.489947, 47.5107476 ], + [ 8.4899009, 47.5106712 ], + [ 8.4898172, 47.5105611 ], + [ 8.4893673, 47.5100155 ], + [ 8.489194, 47.5097918 ], + [ 8.4890765, 47.5096444 ], + [ 8.4890615, 47.5095135 ], + [ 8.4891983, 47.508958 ], + [ 8.4893062, 47.5086525 ], + [ 8.4894498, 47.5083528 ], + [ 8.4897478, 47.5078698 ], + [ 8.4898153, 47.5077502 ], + [ 8.489844, 47.5076891 ], + [ 8.4898909, 47.5075662 ], + [ 8.4899093, 47.507504 ], + [ 8.4899892, 47.5072258 ], + [ 8.4900343, 47.5070957 ], + [ 8.4900845, 47.5069731 ], + [ 8.4901572, 47.5068073 ], + [ 8.490207999999999, 47.506722 ], + [ 8.4922289, 47.5015018 ], + [ 8.4922769, 47.5013605 ], + [ 8.4923515, 47.501203 ], + [ 8.4924107, 47.5011228 ], + [ 8.492132699999999, 47.5009831 ], + [ 8.4918314, 47.5008401 ], + [ 8.4912422, 47.5005718 ], + [ 8.4911216, 47.5005304 ], + [ 8.49105, 47.5003235 ], + [ 8.4916301, 47.4998288 ], + [ 8.4920269, 47.499583200000004 ], + [ 8.4922064, 47.4995075 ], + [ 8.4923815, 47.4994338 ], + [ 8.4920276, 47.4993626 ], + [ 8.4918602, 47.4994594 ], + [ 8.4915249, 47.4992935 ], + [ 8.4908562, 47.4991688 ], + [ 8.4909099, 47.4991242 ], + [ 8.4908435, 47.499108 ], + [ 8.4906556, 47.4990623 ], + [ 8.4905552, 47.4990428 ], + [ 8.4903563, 47.499001 ], + [ 8.4894343, 47.4988523 ], + [ 8.4890188, 47.49885 ], + [ 8.4887283, 47.4987584 ], + [ 8.4884719, 47.49863 ], + [ 8.4880135, 47.498317 ], + [ 8.4875836, 47.4980237 ], + [ 8.4870498, 47.4977294 ], + [ 8.4867682, 47.4975834 ], + [ 8.4862343, 47.4973066 ], + [ 8.4851637, 47.496751 ], + [ 8.4848726, 47.4965856 ], + [ 8.4845894, 47.4964145 ], + [ 8.484182, 47.4961326 ], + [ 8.4840379, 47.4960145 ], + [ 8.4835148, 47.4957624 ], + [ 8.4829659, 47.4955069 ], + [ 8.482427, 47.4952434 ], + [ 8.482187, 47.4951365 ], + [ 8.4820353, 47.4950802 ], + [ 8.4805405, 47.4946182 ], + [ 8.4805136, 47.4947414 ], + [ 8.480469, 47.4947373 ], + [ 8.4802664, 47.4947159 ], + [ 8.4799253, 47.494622 ], + [ 8.4799384, 47.4945872 ], + [ 8.4797649, 47.494546 ], + [ 8.4796534, 47.4945114 ], + [ 8.4795904, 47.4944887 ], + [ 8.4795288, 47.4944642 ], + [ 8.4794107, 47.4944099 ], + [ 8.4789878, 47.4941928 ], + [ 8.4777644, 47.4935234 ], + [ 8.4776692, 47.4935404 ], + [ 8.4774459, 47.4936138 ], + [ 8.4769568, 47.4937419 ], + [ 8.4767962, 47.4937862 ], + [ 8.4765856, 47.4937929 ], + [ 8.4762197, 47.4937581 ], + [ 8.4756767, 47.493644 ], + [ 8.4753104, 47.4935854 ], + [ 8.4743619, 47.4935653 ], + [ 8.4738632, 47.4935602 ], + [ 8.4733289, 47.4935317 ], + [ 8.473213, 47.4937088 ], + [ 8.4731523, 47.4938379 ], + [ 8.4730859, 47.4940336 ], + [ 8.4730296, 47.4942103 ], + [ 8.4730006, 47.4943666 ], + [ 8.47302, 47.4945501 ], + [ 8.4730493, 47.4946709 ], + [ 8.4730689, 47.4947307 ], + [ 8.4731178, 47.4948482 ], + [ 8.4731471, 47.4949059 ], + [ 8.4732491, 47.4950759 ], + [ 8.4733732, 47.4952393 ], + [ 8.4738816, 47.4958696 ], + [ 8.4738658, 47.4958755 ], + [ 8.4747576, 47.496991 ], + [ 8.4752959, 47.4976624 ], + [ 8.4753693, 47.4977548 ], + [ 8.4754506, 47.4978548 ], + [ 8.4756529, 47.4980872 ], + [ 8.4758664, 47.498315 ], + [ 8.475941, 47.4983918 ], + [ 8.4760663, 47.4985115 ], + [ 8.4761149, 47.4985559 ], + [ 8.4762298, 47.4986528 ], + [ 8.4764064, 47.4987872 ], + [ 8.4765944, 47.4989142 ], + [ 8.4767941, 47.4990328 ], + [ 8.4770066, 47.4991401 ], + [ 8.4772326, 47.4992344 ], + [ 8.477470199999999, 47.499315 ], + [ 8.4777186, 47.4993786 ], + [ 8.4779748, 47.4994251 ], + [ 8.4781216, 47.499441 ], + [ 8.4780629, 47.4996525 ], + [ 8.478048, 47.4996512 ], + [ 8.4780404, 47.4996508 ], + [ 8.4780329, 47.4996507 ], + [ 8.4780253, 47.4996507 ], + [ 8.4780178, 47.499651 ], + [ 8.4780103, 47.4996514 ], + [ 8.4780028, 47.4996519 ], + [ 8.4779953, 47.4996527 ], + [ 8.4779879, 47.4996537 ], + [ 8.4779806, 47.4996548 ], + [ 8.4779733, 47.4996561 ], + [ 8.4779661, 47.4996577 ], + [ 8.4779519, 47.4996612 ], + [ 8.477945, 47.4996632 ], + [ 8.4779382, 47.4996655 ], + [ 8.4779315, 47.4996678 ], + [ 8.4779249, 47.4996704 ], + [ 8.4779185, 47.4996731 ], + [ 8.4779122, 47.4996759 ], + [ 8.4779061, 47.499679 ], + [ 8.4779002, 47.4996821 ], + [ 8.4778944, 47.4996854 ], + [ 8.4778888, 47.4996889 ], + [ 8.4778835, 47.4996925 ], + [ 8.4774451, 47.4999983 ], + [ 8.4772482, 47.5001232 ], + [ 8.4773292, 47.5002519 ], + [ 8.4775418, 47.5006142 ], + [ 8.4777191, 47.500985299999996 ], + [ 8.4778519, 47.5013645 ], + [ 8.4778807, 47.5014647 ], + [ 8.4782235, 47.5026576 ], + [ 8.4783281, 47.5030214 ], + [ 8.4784535, 47.5034585 ], + [ 8.4786095, 47.504002 ], + [ 8.4786198, 47.5040374 ], + [ 8.4786832, 47.5042615 ], + [ 8.4788325, 47.5047803 ], + [ 8.4789814, 47.5052994 ], + [ 8.4790144, 47.5054145 ], + [ 8.4790403, 47.5055055 ], + [ 8.4790788, 47.5056387 ], + [ 8.4791033, 47.505724 ], + [ 8.4792187, 47.5061278 ], + [ 8.4792904, 47.5063772 ], + [ 8.4793221, 47.5064875 ], + [ 8.4794163, 47.5068415 ], + [ 8.4794745, 47.5071993 ], + [ 8.4794914, 47.5075587 ], + [ 8.4794641, 47.5079179 ], + [ 8.4793781, 47.5083339 ], + [ 8.479242, 47.5087443 ], + [ 8.4791667, 47.5089151 ], + [ 8.4791807, 47.5089411 ], + [ 8.4792122, 47.5089586 ], + [ 8.4792608, 47.5089716 ], + [ 8.4791915, 47.5091017 ], + [ 8.4791159, 47.5092298 ], + [ 8.4791402, 47.509237 ], + [ 8.4790328, 47.5093764 ], + [ 8.4787833, 47.5097266 ], + [ 8.4785642, 47.5100861 ], + [ 8.4784011, 47.5104018 ], + [ 8.4783209, 47.5105893 ], + [ 8.4783023, 47.5106327 ], + [ 8.4781876, 47.5108412 ], + [ 8.4783272, 47.5108842 ], + [ 8.4784666, 47.5109272 ], + [ 8.4783456, 47.5116963 ], + [ 8.4783679, 47.5123316 ], + [ 8.4786002, 47.5132205 ], + [ 8.4791117, 47.514254 ], + [ 8.4795755, 47.514801 ], + [ 8.4796408, 47.5149139 ], + [ 8.4798711, 47.5151336 ], + [ 8.4798924, 47.515153 ], + [ 8.4801135, 47.5153476 ], + [ 8.480423, 47.515601 ], + [ 8.4807396, 47.5158503 ], + [ 8.4811621, 47.5161872 ], + [ 8.4813316, 47.5163145 ], + [ 8.4819335, 47.5167867 ], + [ 8.4822931, 47.5170679 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "WZV0023", + "country" : "CHE", + "name" : [ + { + "text" : "Wasser- und Zugvogelreservat Neeracher Ried", + "lang" : "de-CH" + }, + { + "text" : "Réserve d'oiseaux d'eau et de migrateurs Neeracher Ried", + "lang" : "fr-CH" + }, + { + "text" : "Riserva di uccelli acquatici e migratori Neeracher Ried", + "lang" : "it-CH" + }, + { + "text" : "Water Bird and Migratory Bird Reserves Neeracher Ried", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8509253, 47.4763614 ], + [ 7.8511236, 47.4764254 ], + [ 7.8511776, 47.4764274 ], + [ 7.8511895, 47.4764127 ], + [ 7.8511473, 47.4763513 ], + [ 7.8511233, 47.4763114 ], + [ 7.8511323, 47.4762256 ], + [ 7.8512179, 47.476075 ], + [ 7.8512837, 47.4759079 ], + [ 7.8513197, 47.4757784 ], + [ 7.8513570999999995, 47.4756205 ], + [ 7.8514002, 47.475447 ], + [ 7.8512024, 47.4754108 ], + [ 7.8511188, 47.4756991 ], + [ 7.8510235999999995, 47.476029 ], + [ 7.8509253, 47.4763614 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns167", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Warteckweiher", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Warteckweiher", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Warteckweiher", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Warteckweiher", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.575531, 47.4123603 ], + [ 8.5755225, 47.4122192 ], + [ 8.5755032, 47.4120785 ], + [ 8.575473, 47.4119387 ], + [ 8.5754321, 47.4118002 ], + [ 8.5753806, 47.4116634 ], + [ 8.5753186, 47.4115285 ], + [ 8.5752463, 47.411396 ], + [ 8.5751639, 47.4112663 ], + [ 8.5750716, 47.4111397 ], + [ 8.5749697, 47.411016599999996 ], + [ 8.5748584, 47.4108972 ], + [ 8.5747381, 47.4107819 ], + [ 8.574609, 47.4106711 ], + [ 8.5744716, 47.4105651 ], + [ 8.5743262, 47.410464 ], + [ 8.5741732, 47.4103683 ], + [ 8.574013, 47.4102781 ], + [ 8.5738461, 47.4101937 ], + [ 8.5736729, 47.4101154 ], + [ 8.5734939, 47.4100433 ], + [ 8.5733096, 47.4099777 ], + [ 8.5731205, 47.4099188 ], + [ 8.5729271, 47.4098666 ], + [ 8.57273, 47.4098214 ], + [ 8.5725296, 47.4097832 ], + [ 8.5723266, 47.4097522 ], + [ 8.5721214, 47.4097285 ], + [ 8.5719148, 47.4097121 ], + [ 8.5717071, 47.409703 ], + [ 8.571499, 47.4097014 ], + [ 8.5712911, 47.4097071 ], + [ 8.5710839, 47.4097202 ], + [ 8.570878, 47.4097407 ], + [ 8.5706739, 47.4097684 ], + [ 8.5704723, 47.4098034 ], + [ 8.5702737, 47.4098454 ], + [ 8.5700785, 47.4098945 ], + [ 8.5698874, 47.4099505 ], + [ 8.5697009, 47.4100131 ], + [ 8.5695195, 47.4100823 ], + [ 8.5693436, 47.4101578 ], + [ 8.5691739, 47.4102395 ], + [ 8.5690106, 47.4103271 ], + [ 8.5688543, 47.4104204 ], + [ 8.5687055, 47.4105191 ], + [ 8.5685644, 47.410623 ], + [ 8.568431499999999, 47.4107317 ], + [ 8.5683073, 47.410845 ], + [ 8.5681919, 47.4109625 ], + [ 8.5680857, 47.411084 ], + [ 8.567989, 47.4112091 ], + [ 8.5679022, 47.4113375 ], + [ 8.567825299999999, 47.4114688 ], + [ 8.5677587, 47.4116026 ], + [ 8.5677024, 47.4117386 ], + [ 8.5676568, 47.4118764 ], + [ 8.5676218, 47.4120157 ], + [ 8.5675976, 47.412156 ], + [ 8.5675843, 47.412297 ], + [ 8.5675818, 47.4124382 ], + [ 8.567590299999999, 47.4125794 ], + [ 8.5676096, 47.41272 ], + [ 8.5676397, 47.4128598 ], + [ 8.5676806, 47.4129983 ], + [ 8.567732, 47.4131352 ], + [ 8.567794, 47.41327 ], + [ 8.5678663, 47.4134025 ], + [ 8.5679487, 47.4135322 ], + [ 8.568041000000001, 47.4136588 ], + [ 8.5681429, 47.413782 ], + [ 8.5682542, 47.4139014 ], + [ 8.568374500000001, 47.4140166 ], + [ 8.5685036, 47.4141275 ], + [ 8.568641, 47.4142335 ], + [ 8.5687864, 47.4143346 ], + [ 8.5689394, 47.4144303 ], + [ 8.5690996, 47.4145205 ], + [ 8.5692665, 47.4146049 ], + [ 8.5694397, 47.4146832 ], + [ 8.5696187, 47.4147553 ], + [ 8.569803, 47.4148209 ], + [ 8.5699921, 47.4148799 ], + [ 8.570185500000001, 47.4149321 ], + [ 8.5703827, 47.4149773 ], + [ 8.5705831, 47.4150154 ], + [ 8.5707861, 47.4150464 ], + [ 8.5709913, 47.4150702 ], + [ 8.571198, 47.4150866 ], + [ 8.5714057, 47.4150956 ], + [ 8.5716138, 47.4150973 ], + [ 8.5718217, 47.4150916 ], + [ 8.572029, 47.4150784 ], + [ 8.5722349, 47.415058 ], + [ 8.5724389, 47.4150302 ], + [ 8.5726406, 47.4149953 ], + [ 8.5728392, 47.4149532 ], + [ 8.5730344, 47.4149041 ], + [ 8.5732255, 47.4148482 ], + [ 8.573412, 47.4147855 ], + [ 8.5735935, 47.4147163 ], + [ 8.5737693, 47.4146408 ], + [ 8.5739391, 47.4145591 ], + [ 8.5741024, 47.4144715 ], + [ 8.5742587, 47.4143782 ], + [ 8.5744075, 47.4142795 ], + [ 8.5745486, 47.4141756 ], + [ 8.5746814, 47.4140669 ], + [ 8.5748057, 47.4139536 ], + [ 8.5749211, 47.413836 ], + [ 8.5750273, 47.4137145 ], + [ 8.5751239, 47.4135894 ], + [ 8.5752108, 47.413461 ], + [ 8.5752876, 47.4133298 ], + [ 8.5753542, 47.4131959 ], + [ 8.575410399999999, 47.4130599 ], + [ 8.5754561, 47.4129221 ], + [ 8.575491, 47.4127828 ], + [ 8.5755152, 47.4126425 ], + [ 8.5755285, 47.4125016 ], + [ 8.575531, 47.4123603 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0005", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Auwiesen", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Auwiesen", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Auwiesen", + "lang" : "it-CH" + }, + { + "text" : "Substation Auwiesen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8672737999999995, 47.443622 ], + [ 7.8672962, 47.4436445 ], + [ 7.8673310999999995, 47.4436726 ], + [ 7.8673585, 47.4436932 ], + [ 7.8673921, 47.4437149 ], + [ 7.8674224, 47.4437304 ], + [ 7.8674543, 47.4437453 ], + [ 7.8674865, 47.443757 ], + [ 7.8675394999999995, 47.4437709 ], + [ 7.8675876, 47.4437781 ], + [ 7.8676309, 47.4437837 ], + [ 7.8676779, 47.4437871 ], + [ 7.8677222, 47.4437892 ], + [ 7.8677564, 47.4437881 ], + [ 7.8677204, 47.4439103 ], + [ 7.8676872, 47.4439861 ], + [ 7.8676837, 47.444013 ], + [ 7.8676841, 47.4440179 ], + [ 7.8679112, 47.4441242 ], + [ 7.8680528, 47.4442026 ], + [ 7.8681655, 47.4442904 ], + [ 7.8683204, 47.4444332 ], + [ 7.8684872, 47.4445921 ], + [ 7.8686541, 47.4447568 ], + [ 7.8687992, 47.4448939 ], + [ 7.8690126, 47.4450939 ], + [ 7.8691339, 47.4451978 ], + [ 7.8695242, 47.4455219 ], + [ 7.8698481000000005, 47.4458421 ], + [ 7.8700147, 47.4461554 ], + [ 7.870129, 47.4463661 ], + [ 7.870162, 47.4463636 ], + [ 7.8702658, 47.4463509 ], + [ 7.8703488, 47.4463364 ], + [ 7.8703956999999996, 47.4463246 ], + [ 7.8704385, 47.4463099 ], + [ 7.870476, 47.4462912 ], + [ 7.8705087, 47.4462736 ], + [ 7.8705247, 47.4462601 ], + [ 7.8705491, 47.4462354 ], + [ 7.8705632, 47.4462149 ], + [ 7.8705739999999995, 47.4461981 ], + [ 7.8705856999999995, 47.4461814 ], + [ 7.870599, 47.4461551 ], + [ 7.8706092, 47.4461238 ], + [ 7.8706291, 47.4460659 ], + [ 7.8706391, 47.4460358 ], + [ 7.870739, 47.4457358 ], + [ 7.8707412, 47.4457241 ], + [ 7.8707428, 47.4456865 ], + [ 7.87074, 47.4456459 ], + [ 7.8707272, 47.445593 ], + [ 7.8707065, 47.4455359 ], + [ 7.8706845, 47.4454879 ], + [ 7.8706545, 47.4454379 ], + [ 7.8706867, 47.4452565 ], + [ 7.8706848, 47.4451401 ], + [ 7.870618, 47.4448781 ], + [ 7.8705959, 47.4448005 ], + [ 7.8706527, 47.4447854 ], + [ 7.8709409, 47.4446944 ], + [ 7.8711875, 47.4445297 ], + [ 7.8711202, 47.444231 ], + [ 7.8710105, 47.4439379 ], + [ 7.8708016, 47.4435722 ], + [ 7.870676, 47.4433436 ], + [ 7.8704662, 47.4431318 ], + [ 7.8703639, 47.4430682 ], + [ 7.8703031, 47.4430399 ], + [ 7.870231, 47.4430105 ], + [ 7.8700928, 47.4429909 ], + [ 7.8699466000000005, 47.4429738 ], + [ 7.8698119, 47.4429681 ], + [ 7.8696711, 47.4429693 ], + [ 7.8695504, 47.4429922 ], + [ 7.86942, 47.4430141 ], + [ 7.8690411000000005, 47.4431166 ], + [ 7.8687071, 47.4432038 ], + [ 7.8684278, 47.4432835 ], + [ 7.8681676, 47.4433538 ], + [ 7.8675722, 47.4435216 ], + [ 7.8672737999999995, 47.443622 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns254", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Zangenweidli", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Zangenweidli", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Zangenweidli", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Zangenweidli", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8332094, 47.4814095 ], + [ 7.8329930999999995, 47.4817484 ], + [ 7.833925, 47.4825329 ], + [ 7.8344776, 47.4830078 ], + [ 7.8345645, 47.4829345 ], + [ 7.8345829, 47.4826487 ], + [ 7.8346458, 47.4824238 ], + [ 7.834629, 47.4821979 ], + [ 7.8346504, 47.4821258 ], + [ 7.8347389, 47.4820416 ], + [ 7.8348229, 47.4819382 ], + [ 7.8348404, 47.4818737 ], + [ 7.8349415, 47.4817643 ], + [ 7.8350714, 47.4816284 ], + [ 7.8351768, 47.4815652 ], + [ 7.8354874, 47.4814127 ], + [ 7.8356822, 47.4812464 ], + [ 7.8357564, 47.4810565 ], + [ 7.835833, 47.4809018 ], + [ 7.8359833, 47.48082 ], + [ 7.8360925, 47.4807012 ], + [ 7.8361345, 47.480435 ], + [ 7.83618, 47.4801999 ], + [ 7.8361676, 47.4799201 ], + [ 7.8362469, 47.4796709 ], + [ 7.8363152, 47.4795383 ], + [ 7.8364319, 47.4794767 ], + [ 7.8366795, 47.4794282 ], + [ 7.8368713, 47.4793873 ], + [ 7.8370414, 47.4793025 ], + [ 7.8372487, 47.4791442 ], + [ 7.8373649, 47.4789841 ], + [ 7.8374714999999995, 47.4788098 ], + [ 7.8375333, 47.4787291 ], + [ 7.8375059, 47.4786516 ], + [ 7.8375231, 47.4785285 ], + [ 7.8375476, 47.4784627 ], + [ 7.8376513, 47.4784275 ], + [ 7.8377617, 47.4784576 ], + [ 7.837925, 47.4784434 ], + [ 7.8380708, 47.4783471 ], + [ 7.8383283, 47.4781768 ], + [ 7.8385182, 47.4779364 ], + [ 7.8386557, 47.4777511 ], + [ 7.8387923, 47.4775527 ], + [ 7.8390357999999996, 47.4772783 ], + [ 7.8389362, 47.477271 ], + [ 7.8370128, 47.4770539 ], + [ 7.8369451, 47.4770381 ], + [ 7.836943, 47.4770389 ], + [ 7.836535, 47.477201 ], + [ 7.8360556, 47.4773908 ], + [ 7.8360573, 47.4773919 ], + [ 7.8369584, 47.477053 ], + [ 7.8371877, 47.4776073 ], + [ 7.8368285, 47.4779277 ], + [ 7.8366252, 47.4781088 ], + [ 7.8364226, 47.4783917 ], + [ 7.8361978, 47.4791835 ], + [ 7.836197, 47.4791873 ], + [ 7.8361966, 47.4791878 ], + [ 7.8361899, 47.4792112 ], + [ 7.8353577, 47.4801577 ], + [ 7.8350215, 47.480825 ], + [ 7.8344151, 47.481854 ], + [ 7.8339422, 47.4815827 ], + [ 7.8336147, 47.4815884 ], + [ 7.8332094, 47.4814095 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr049", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Fippleten", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Fippleten", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Fippleten", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Fippleten", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.0158088, 46.1716916 ], + [ 6.0157336, 46.1719316 ], + [ 6.0147545, 46.1723684 ], + [ 6.0138897, 46.1732331 ], + [ 6.013567, 46.174262 ], + [ 6.0138356, 46.1752983 ], + [ 6.0146547, 46.1761843 ], + [ 6.0158995, 46.1767851 ], + [ 6.0173805, 46.1770092 ], + [ 6.0177598, 46.1769618 ], + [ 6.0178182, 46.17699 ], + [ 6.0192993, 46.1772141 ], + [ 6.0193741, 46.1772047 ], + [ 6.0203006, 46.1776518 ], + [ 6.0217817, 46.1778759 ], + [ 6.0232735, 46.1776892 ], + [ 6.0245488, 46.1771201 ], + [ 6.0252566, 46.1764123 ], + [ 6.0256137, 46.1762529 ], + [ 6.0264784, 46.1753881 ], + [ 6.0268009, 46.1743592 ], + [ 6.026532, 46.1733229 ], + [ 6.0259096, 46.1726498 ], + [ 6.0259096, 46.1726497 ], + [ 6.0250904, 46.1717638 ], + [ 6.0238456, 46.1711631 ], + [ 6.0223647, 46.170939 ], + [ 6.0222223, 46.1709569 ], + [ 6.0221661, 46.170896 ], + [ 6.0209213, 46.1702953 ], + [ 6.0194405, 46.1700712 ], + [ 6.0179489, 46.1702578 ], + [ 6.0166736, 46.1708269 ], + [ 6.0158088, 46.1716916 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-26", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5017256, 47.4514024 ], + [ 7.5016809, 47.4515986 ], + [ 7.5016309, 47.4517208 ], + [ 7.5015787, 47.4518393 ], + [ 7.5015673, 47.4518936 ], + [ 7.501595, 47.4519446 ], + [ 7.5016467, 47.451971 ], + [ 7.5017064, 47.451978 ], + [ 7.5018155, 47.4519487 ], + [ 7.5025191, 47.4517364 ], + [ 7.5027371, 47.4517014 ], + [ 7.502759, 47.4516976 ], + [ 7.5032988, 47.4516654 ], + [ 7.5037896, 47.4516472 ], + [ 7.5041682, 47.4516356 ], + [ 7.5043912, 47.4516425 ], + [ 7.5046191, 47.451669 ], + [ 7.5046702, 47.4516791 ], + [ 7.5048291, 47.4517197 ], + [ 7.5049803, 47.4517654 ], + [ 7.5050197, 47.4517789 ], + [ 7.5050951, 47.4518048 ], + [ 7.505196, 47.4518388 ], + [ 7.5053219, 47.4518735 ], + [ 7.5053422, 47.4518791 ], + [ 7.5053428, 47.4518783 ], + [ 7.5056531, 47.4519672 ], + [ 7.5056974, 47.4519801 ], + [ 7.505668, 47.4519513 ], + [ 7.5056068, 47.4518895 ], + [ 7.5055665000000005, 47.4518524 ], + [ 7.5054774, 47.4517638 ], + [ 7.5054151000000005, 47.4516854 ], + [ 7.5053856, 47.4516203 ], + [ 7.5053916, 47.4514974 ], + [ 7.5053883, 47.4514812 ], + [ 7.5053976, 47.4513761 ], + [ 7.505469, 47.4511466 ], + [ 7.5055414, 47.4509968 ], + [ 7.5055786, 47.4509151 ], + [ 7.5055979, 47.4508372 ], + [ 7.5056122, 47.4507738 ], + [ 7.5056265, 47.4506016 ], + [ 7.505642, 47.4504816 ], + [ 7.5056836, 47.450365 ], + [ 7.5057226, 47.4502643 ], + [ 7.5057671, 47.4501589 ], + [ 7.5058156, 47.4500456 ], + [ 7.5059302, 47.4497844 ], + [ 7.5060135, 47.4495986 ], + [ 7.5061203, 47.4493665 ], + [ 7.5061896, 47.4491901 ], + [ 7.5062563, 47.4490254 ], + [ 7.5063252, 47.448849 ], + [ 7.5064145, 47.4486369 ], + [ 7.5065034, 47.4484242 ], + [ 7.5066249, 47.4481245 ], + [ 7.5066925, 47.447972 ], + [ 7.5067293, 47.4478683 ], + [ 7.5067324, 47.4478596 ], + [ 7.5067967, 47.4476875 ], + [ 7.5068903, 47.447444 ], + [ 7.506924, 47.4473322 ], + [ 7.5069324, 47.4472303 ], + [ 7.5069054, 47.4471945 ], + [ 7.5068962, 47.4471275 ], + [ 7.5068375, 47.4470229 ], + [ 7.5067122, 47.4468253 ], + [ 7.5066158, 47.4466451 ], + [ 7.5065758, 47.446521 ], + [ 7.5065665, 47.446492 ], + [ 7.5065543, 47.4464399 ], + [ 7.5065328000000004, 47.4463729 ], + [ 7.5064743, 47.4462621 ], + [ 7.5064287, 47.4461783 ], + [ 7.5063864, 47.4461227 ], + [ 7.5063467, 47.4460648 ], + [ 7.5063376, 47.4460435 ], + [ 7.5062967, 47.4459971 ], + [ 7.5062176, 47.4459115 ], + [ 7.5061726, 47.4458641 ], + [ 7.5061173, 47.4458079 ], + [ 7.5060711, 47.4457414 ], + [ 7.506004, 47.4457405 ], + [ 7.5059601, 47.4457383 ], + [ 7.5058839, 47.445745 ], + [ 7.5057451, 47.4457489 ], + [ 7.5056413, 47.4457435 ], + [ 7.5055659, 47.4457337 ], + [ 7.5053635, 47.4457009 ], + [ 7.5051488, 47.4456557 ], + [ 7.5049433, 47.4456103 ], + [ 7.50461, 47.4459102 ], + [ 7.5038515, 47.4465949 ], + [ 7.5036904, 47.4467403 ], + [ 7.5025154, 47.4482017 ], + [ 7.5025098, 47.4482086 ], + [ 7.502508, 47.4482108 ], + [ 7.5024463, 47.4482877 ], + [ 7.5012407, 47.4496741 ], + [ 7.5013808, 47.4497222 ], + [ 7.501562, 47.449798 ], + [ 7.5019736, 47.4499731 ], + [ 7.502313, 47.4501663 ], + [ 7.5025183, 47.4502997 ], + [ 7.5025718999999995, 47.4503454 ], + [ 7.5026754, 47.4504332 ], + [ 7.5027139, 47.4504897 ], + [ 7.5027255, 47.4505068 ], + [ 7.5027403, 47.4506044 ], + [ 7.5027278, 47.4506908 ], + [ 7.5026695, 47.4507502 ], + [ 7.5025486, 47.4508805 ], + [ 7.5024862, 47.450964 ], + [ 7.5024791, 47.450988100000004 ], + [ 7.5017482, 47.4513899 ], + [ 7.5017256, 47.4514024 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns025", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Radme, Hanslifels und Chällengraben", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Radme, Hanslifels und Chällengraben", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Radme, Hanslifels und Chällengraben", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Radme, Hanslifels und Chällengraben", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.8719643, 46.1682898 ], + [ 8.872151, 46.1682823 ], + [ 8.8729506, 46.1682502 ], + [ 8.8739237, 46.168227 ], + [ 8.875116, 46.1682009 ], + [ 8.8762452, 46.1681756 ], + [ 8.8779009, 46.1681654 ], + [ 8.8812443, 46.1681336 ], + [ 8.8833156, 46.1681071 ], + [ 8.8843744, 46.1680827 ], + [ 8.8846565, 46.1680681 ], + [ 8.8849056, 46.1679995 ], + [ 8.8851083, 46.1679206 ], + [ 8.8853402, 46.1677867 ], + [ 8.8855395, 46.1676097 ], + [ 8.8856585, 46.1673682 ], + [ 8.8857897, 46.1670067 ], + [ 8.8858362, 46.1668959 ], + [ 8.8858844, 46.1645069 ], + [ 8.8859454, 46.1643658 ], + [ 8.8860377, 46.1641847 ], + [ 8.8899472, 46.1563959 ], + [ 8.8901327, 46.1560399 ], + [ 8.8901586, 46.1557966 ], + [ 8.8901456, 46.1555827 ], + [ 8.890086, 46.1553801 ], + [ 8.8900391, 46.1552304 ], + [ 8.8899872, 46.1550728 ], + [ 8.889895, 46.1548931 ], + [ 8.8897788, 46.1546922 ], + [ 8.8896342, 46.1545177 ], + [ 8.8894462, 46.1543572 ], + [ 8.8890749, 46.1541181 ], + [ 8.8855196, 46.1516212 ], + [ 8.8852234, 46.1514396 ], + [ 8.8849604, 46.1512847 ], + [ 8.8846815, 46.1511407 ], + [ 8.8842997, 46.1510214 ], + [ 8.883899, 46.150924 ], + [ 8.8832406, 46.1507777 ], + [ 8.8787984, 46.1499455 ], + [ 8.8784475, 46.1498933 ], + [ 8.8782454, 46.1498392 ], + [ 8.8780822, 46.1497846 ], + [ 8.8778771, 46.1497081 ], + [ 8.877625, 46.1496312 ], + [ 8.8773386, 46.1495673 ], + [ 8.8770462, 46.1495252 ], + [ 8.8768032, 46.1495166 ], + [ 8.8765769, 46.1495258 ], + [ 8.8763504, 46.1495278 ], + [ 8.8761011, 46.1495534 ], + [ 8.87585, 46.1496052 ], + [ 8.875665399999999, 46.1496301 ], + [ 8.8754224, 46.1496502 ], + [ 8.8752668, 46.1496405 ], + [ 8.874983199999999, 46.149592 ], + [ 8.8746908, 46.1495498 ], + [ 8.8744827, 46.1495128 ], + [ 8.8743331, 46.149486 ], + [ 8.8738524, 46.1494192 ], + [ 8.8733819, 46.1493721 ], + [ 8.8728138, 46.1493398 ], + [ 8.8724891, 46.149298 ], + [ 8.8723047, 46.1492707 ], + [ 8.8722285, 46.1492329 ], + [ 8.87218, 46.1492048 ], + [ 8.8721082, 46.1491823 ], + [ 8.8717824, 46.1491594 ], + [ 8.8691758, 46.1492312 ], + [ 8.8668462, 46.1493462 ], + [ 8.866756, 46.149701 ], + [ 8.8650784, 46.1497185 ], + [ 8.8650735, 46.1497176 ], + [ 8.8601012, 46.1488304 ], + [ 8.8597269, 46.1487784 ], + [ 8.8594452, 46.1487406 ], + [ 8.8592247, 46.1487271 ], + [ 8.8589577, 46.1487233 ], + [ 8.8587315, 46.1487369 ], + [ 8.8582685, 46.1487599 ], + [ 8.8574062, 46.1488931 ], + [ 8.8564549, 46.1490832 ], + [ 8.8555603, 46.1491888 ], + [ 8.854829, 46.1479343 ], + [ 8.8546167, 46.1476596 ], + [ 8.8541627, 46.1471546 ], + [ 8.8531754, 46.1468582 ], + [ 8.8520073, 46.1466209 ], + [ 8.8491609, 46.1459267 ], + [ 8.8481108, 46.1454053 ], + [ 8.8471156, 46.1450258 ], + [ 8.8467886, 46.1450765 ], + [ 8.8458569, 46.144804 ], + [ 8.845347, 46.1447312 ], + [ 8.8448541, 46.1446107 ], + [ 8.8441153, 46.1446753 ], + [ 8.843531, 46.1447657 ], + [ 8.8430029, 46.1448277 ], + [ 8.8421147, 46.1448388 ], + [ 8.8417204, 46.1447882 ], + [ 8.8412735, 46.1447882 ], + [ 8.840151, 46.1788467 ], + [ 8.8403359, 46.1786524 ], + [ 8.8406277, 46.178247 ], + [ 8.8408601, 46.1782171 ], + [ 8.8410562, 46.1777828 ], + [ 8.8412673, 46.1774928 ], + [ 8.8412636, 46.1773489 ], + [ 8.8413757, 46.1766727 ], + [ 8.841387, 46.1761058 ], + [ 8.8414885, 46.1755197 ], + [ 8.841842, 46.1751644 ], + [ 8.842063, 46.1751977 ], + [ 8.842324099999999, 46.1747715 ], + [ 8.8426475, 46.1747585 ], + [ 8.8431409, 46.1743114 ], + [ 8.8431503, 46.1741764 ], + [ 8.8431469, 46.1740415 ], + [ 8.8437963, 46.1741687 ], + [ 8.8438954, 46.1742138 ], + [ 8.8442252, 46.1741359 ], + [ 8.8445755, 46.1740947 ], + [ 8.8448503, 46.1740804 ], + [ 8.8451585, 46.1741045 ], + [ 8.845483699999999, 46.1741571 ], + [ 8.8457611, 46.1742445 ], + [ 8.8459971, 46.1743549 ], + [ 8.8462912, 46.1744602 ], + [ 8.8466024, 46.1745967 ], + [ 8.8467333, 46.1746517 ], + [ 8.8468147, 46.1746687 ], + [ 8.8469212, 46.1746566 ], + [ 8.8470234, 46.1746031 ], + [ 8.8470868, 46.1745195 ], + [ 8.8471441, 46.1744783 ], + [ 8.8472882, 46.1744496 ], + [ 8.8474037, 46.1744373 ], + [ 8.8475664, 46.1744694 ], + [ 8.8480869, 46.1745656 ], + [ 8.8491784, 46.1748587 ], + [ 8.8497563, 46.1750143 ], + [ 8.8500163, 46.1750525 ], + [ 8.8502697, 46.1750835 ], + [ 8.850560699999999, 46.1750691 ], + [ 8.8508055, 46.1751119 ], + [ 8.8509625, 46.1751104 ], + [ 8.8511184, 46.1750695 ], + [ 8.8516173, 46.1749215 ], + [ 8.8528809, 46.1746112 ], + [ 8.853648, 46.1744142 ], + [ 8.8538635, 46.174359 ], + [ 8.8542998, 46.1742335 ], + [ 8.8546894, 46.1741196 ], + [ 8.8549038, 46.1740513 ], + [ 8.8551879, 46.1739606 ], + [ 8.855639, 46.1738133 ], + [ 8.8559658, 46.1737109 ], + [ 8.85623, 46.1735985 ], + [ 8.8567124, 46.1734398 ], + [ 8.857396, 46.1731476 ], + [ 8.8579227, 46.1728901 ], + [ 8.8585899, 46.1725873 ], + [ 8.8591489, 46.1723294 ], + [ 8.859464, 46.1721507 ], + [ 8.8597982, 46.1719613 ], + [ 8.8606505, 46.1715252 ], + [ 8.8612539, 46.1712013 ], + [ 8.8616256, 46.1709894 ], + [ 8.8620601, 46.1707985 ], + [ 8.8623469, 46.170653 ], + [ 8.8627035, 46.1704849 ], + [ 8.863138, 46.1702942 ], + [ 8.8634642, 46.17017 ], + [ 8.8637126, 46.1700469 ], + [ 8.8640078, 46.169945 ], + [ 8.8643033, 46.1698213 ], + [ 8.864692, 46.1697073 ], + [ 8.8651589, 46.1695487 ], + [ 8.8656107, 46.1694012 ], + [ 8.8661564, 46.1692526 ], + [ 8.8666705, 46.1691042 ], + [ 8.8667341, 46.1690903 ], + [ 8.8675131, 46.1689191 ], + [ 8.8679186, 46.1688267 ], + [ 8.8685746, 46.1686875 ], + [ 8.8686036, 46.1686834 ], + [ 8.8691689, 46.1686036 ], + [ 8.8698646, 46.1684967 ], + [ 8.8705843, 46.1684112 ], + [ 8.8713668, 46.1683141 ], + [ 8.8719643, 46.1682898 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "WZV0005", + "country" : "CHE", + "name" : [ + { + "text" : "Wasser- und Zugvogelreservat Bolle di Magadino", + "lang" : "de-CH" + }, + { + "text" : "Réserve d'oiseaux d'eau et de migrateurs Bolle di Magadino", + "lang" : "fr-CH" + }, + { + "text" : "Riserva di uccelli acquatici e migratori Bolle di Magadino", + "lang" : "it-CH" + }, + { + "text" : "Water Bird and Migratory Bird Reserves Bolle di Magadino", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5288409, 47.4495765 ], + [ 7.5288412000000005, 47.4495826 ], + [ 7.5288805, 47.4497552 ], + [ 7.5290325, 47.4504223 ], + [ 7.5291901, 47.4511139 ], + [ 7.5292201, 47.4512456 ], + [ 7.5293828, 47.4511548 ], + [ 7.5298772, 47.451018 ], + [ 7.5302547, 47.4510333 ], + [ 7.5303043, 47.4510498 ], + [ 7.5304158999999995, 47.4510869 ], + [ 7.5306364, 47.4511094 ], + [ 7.5307505, 47.4511211 ], + [ 7.53091, 47.4511374 ], + [ 7.5305172, 47.452455 ], + [ 7.5312687, 47.4527702 ], + [ 7.5312966, 47.4527581 ], + [ 7.531325, 47.4527464 ], + [ 7.5313537, 47.4527352 ], + [ 7.5313828, 47.4527244 ], + [ 7.5313976, 47.4527192 ], + [ 7.5314122999999995, 47.452714 ], + [ 7.5314421, 47.4527041 ], + [ 7.5314722, 47.4526946 ], + [ 7.5314964, 47.4526806 ], + [ 7.5317468, 47.4525444 ], + [ 7.5318843, 47.4524695 ], + [ 7.5325052, 47.4522065 ], + [ 7.5331486, 47.4517499 ], + [ 7.5336694, 47.4512583 ], + [ 7.5338012, 47.4513023 ], + [ 7.5339496, 47.4513518 ], + [ 7.5340598, 47.4512515 ], + [ 7.5341648, 47.4512167 ], + [ 7.5350956, 47.4512173 ], + [ 7.5356185, 47.4513067 ], + [ 7.5358272, 47.4513474 ], + [ 7.5359344, 47.4513683 ], + [ 7.536215, 47.4514674 ], + [ 7.5363727, 47.4517014 ], + [ 7.5367571, 47.4517258 ], + [ 7.537018, 47.4517028 ], + [ 7.5375133, 47.4516106 ], + [ 7.5375032, 47.4514471 ], + [ 7.5375028, 47.4514332 ], + [ 7.537507, 47.4513915 ], + [ 7.5375101, 47.4513777 ], + [ 7.537514, 47.451364 ], + [ 7.5375188, 47.4513505 ], + [ 7.5375244, 47.4513371 ], + [ 7.5375308, 47.4513239 ], + [ 7.5377488, 47.4508417 ], + [ 7.5377826, 47.4507671 ], + [ 7.5378221, 47.4505077 ], + [ 7.5378726, 47.4501744 ], + [ 7.5383209, 47.4498789 ], + [ 7.5387287, 47.4494999 ], + [ 7.5393854000000005, 47.4485348 ], + [ 7.5397887, 47.4481492 ], + [ 7.5394168, 47.447946 ], + [ 7.539112, 47.4477794 ], + [ 7.5391004, 47.4477731 ], + [ 7.5384182, 47.4475319 ], + [ 7.5384139, 47.447557 ], + [ 7.5384086, 47.4475821 ], + [ 7.5384025, 47.4476071 ], + [ 7.5383954, 47.447632 ], + [ 7.5383873, 47.4476567 ], + [ 7.5383675, 47.4477058 ], + [ 7.5383657, 47.4477095 ], + [ 7.5383578, 47.44773 ], + [ 7.5383462, 47.4477541 ], + [ 7.5380812, 47.4481864 ], + [ 7.5379759, 47.448321 ], + [ 7.5379667, 47.4483319 ], + [ 7.5379566, 47.4483425 ], + [ 7.5379459, 47.4483528 ], + [ 7.5379344, 47.4483627 ], + [ 7.5379223, 47.4483722 ], + [ 7.5379095, 47.4483813 ], + [ 7.5378961, 47.44839 ], + [ 7.5378821, 47.4483982 ], + [ 7.5378675, 47.448406 ], + [ 7.5378524, 47.4484133 ], + [ 7.5378368, 47.4484201 ], + [ 7.5378207, 47.4484264 ], + [ 7.5378042, 47.4484321 ], + [ 7.5378007, 47.4484332 ], + [ 7.5377962, 47.4484346 ], + [ 7.5377873, 47.4484373 ], + [ 7.5377594, 47.4484459 ], + [ 7.5377317999999995, 47.4484549 ], + [ 7.5377046, 47.4484646 ], + [ 7.5376778, 47.4484747 ], + [ 7.5376515, 47.4484854 ], + [ 7.5376256, 47.4484965 ], + [ 7.5376002, 47.4485081 ], + [ 7.5375753, 47.4485203 ], + [ 7.537551, 47.4485329 ], + [ 7.5375271, 47.4485459 ], + [ 7.5375038, 47.4485595 ], + [ 7.5374657, 47.4485817 ], + [ 7.537427, 47.4486034 ], + [ 7.5373878, 47.4486246 ], + [ 7.537348, 47.4486454 ], + [ 7.5373076, 47.4486656 ], + [ 7.5372667, 47.4486854 ], + [ 7.5372253, 47.4487046 ], + [ 7.5371833, 47.4487234 ], + [ 7.5371427, 47.4487395 ], + [ 7.5371024, 47.4487562 ], + [ 7.5370626, 47.4487733 ], + [ 7.5370232999999995, 47.4487909 ], + [ 7.5369844, 47.4488089 ], + [ 7.536946, 47.4488275 ], + [ 7.5369081, 47.4488465 ], + [ 7.5368707, 47.4488659 ], + [ 7.5368338, 47.4488858 ], + [ 7.5366311, 47.4489913 ], + [ 7.5364612, 47.4490733 ], + [ 7.5361752, 47.4491953 ], + [ 7.5361435, 47.4492105 ], + [ 7.5361123, 47.4492261 ], + [ 7.5360817, 47.4492423 ], + [ 7.5360516, 47.4492589 ], + [ 7.5360221, 47.449276 ], + [ 7.5359931, 47.4492935 ], + [ 7.5359896, 47.4492958 ], + [ 7.5359863, 47.4492978 ], + [ 7.5359648, 47.4493115 ], + [ 7.5359359999999995, 47.4493271 ], + [ 7.5359066, 47.4493423 ], + [ 7.5358765, 47.4493569 ], + [ 7.535846, 47.449371 ], + [ 7.5358149, 47.4493846 ], + [ 7.5357833, 47.4493975 ], + [ 7.5357512, 47.4494099 ], + [ 7.5357186, 47.4494218 ], + [ 7.5356856, 47.449433 ], + [ 7.5356521, 47.4494437 ], + [ 7.5356183, 47.4494538 ], + [ 7.535584, 47.4494632 ], + [ 7.5355495, 47.449472 ], + [ 7.5355145, 47.4494803 ], + [ 7.5354793, 47.4494879 ], + [ 7.5354438, 47.4494948 ], + [ 7.5354081, 47.4495011 ], + [ 7.5353714, 47.4495072 ], + [ 7.5353349, 47.4495138 ], + [ 7.5352987, 47.449521 ], + [ 7.5352627, 47.4495287 ], + [ 7.5352269, 47.4495369 ], + [ 7.5351915, 47.4495456 ], + [ 7.5351563, 47.4495549 ], + [ 7.5351213999999995, 47.4495647 ], + [ 7.5350916, 47.4495736 ], + [ 7.5350619, 47.4495829 ], + [ 7.5350326, 47.4495926 ], + [ 7.5350035, 47.4496026 ], + [ 7.5349747, 47.449613 ], + [ 7.5349462, 47.4496238 ], + [ 7.5349165, 47.4496352 ], + [ 7.5348863999999995, 47.4496462 ], + [ 7.5348559, 47.4496567 ], + [ 7.5348251, 47.4496666 ], + [ 7.5347939, 47.4496761 ], + [ 7.5347623, 47.449685 ], + [ 7.5347305, 47.4496935 ], + [ 7.5346984, 47.4497014 ], + [ 7.534666, 47.4497087 ], + [ 7.5346333, 47.4497155 ], + [ 7.5346004, 47.4497218 ], + [ 7.5345673, 47.4497275 ], + [ 7.5342721, 47.4497739 ], + [ 7.5342500999999995, 47.4497767 ], + [ 7.534228, 47.449779 ], + [ 7.5342059, 47.4497807 ], + [ 7.5341836, 47.4497819 ], + [ 7.5341613, 47.4497825 ], + [ 7.534139, 47.4497826 ], + [ 7.5341167, 47.4497822 ], + [ 7.5340944, 47.4497812 ], + [ 7.5340722, 47.4497797 ], + [ 7.5340501, 47.4497776 ], + [ 7.5340281000000004, 47.449775 ], + [ 7.5338146, 47.4497423 ], + [ 7.533637, 47.4497153 ], + [ 7.5333897, 47.4496923 ], + [ 7.5333898999999995, 47.4496992 ], + [ 7.533391, 47.4498344 ], + [ 7.533393, 47.4500731 ], + [ 7.5326269, 47.4500737 ], + [ 7.5326275, 47.449607 ], + [ 7.5326276, 47.4496019 ], + [ 7.5325869, 47.4496012 ], + [ 7.5325392, 47.4495998 ], + [ 7.5324915, 47.4495978 ], + [ 7.5324439, 47.4495951 ], + [ 7.5323963, 47.4495919 ], + [ 7.5323489, 47.449588 ], + [ 7.5323016, 47.4495835 ], + [ 7.5322544, 47.4495783 ], + [ 7.5322074, 47.4495726 ], + [ 7.5321605, 47.4495663 ], + [ 7.5321138, 47.4495593 ], + [ 7.5320674, 47.4495518 ], + [ 7.5320543, 47.4495496 ], + [ 7.5319826, 47.4495377 ], + [ 7.5318689, 47.4495242 ], + [ 7.5317536, 47.4495163 ], + [ 7.5314457, 47.4494843 ], + [ 7.5312646999999995, 47.4494652 ], + [ 7.5312293, 47.4494619 ], + [ 7.5311939, 47.4494593 ], + [ 7.5311582999999995, 47.4494572 ], + [ 7.5311227, 47.4494556 ], + [ 7.5310871, 47.4494547 ], + [ 7.5310514, 47.4494543 ], + [ 7.5310157, 47.4494546 ], + [ 7.5309801, 47.4494553 ], + [ 7.5309444, 47.4494567 ], + [ 7.5309089, 47.4494586 ], + [ 7.5306828, 47.4494751 ], + [ 7.5306141, 47.4494811 ], + [ 7.5305453, 47.4494864 ], + [ 7.5304763999999995, 47.4494912 ], + [ 7.5304074, 47.4494953 ], + [ 7.5303383, 47.4494989 ], + [ 7.5302692, 47.4495019 ], + [ 7.5302, 47.4495042 ], + [ 7.5301308, 47.449506 ], + [ 7.5300615, 47.4495071 ], + [ 7.5299923, 47.4495076 ], + [ 7.529923, 47.4495076 ], + [ 7.5298537, 47.4495069 ], + [ 7.5297845, 47.4495056 ], + [ 7.5297153, 47.4495038 ], + [ 7.5296461, 47.4495013 ], + [ 7.5295385, 47.4495011 ], + [ 7.5295084, 47.4495019 ], + [ 7.5294783, 47.449503 ], + [ 7.5294483, 47.4495046 ], + [ 7.5294183, 47.4495065 ], + [ 7.5293842, 47.4495091 ], + [ 7.5293501, 47.4495123 ], + [ 7.5293162, 47.4495159 ], + [ 7.5292823, 47.44952 ], + [ 7.5290704, 47.4495485 ], + [ 7.5288409, 47.4495765 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns018", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Chlus", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Chlus", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Chlus", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Chlus", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7141376, 47.5383826 ], + [ 7.7134858, 47.5380322 ], + [ 7.7134393, 47.5379676 ], + [ 7.7134166, 47.5379637 ], + [ 7.7133948, 47.5379582 ], + [ 7.7133737, 47.5379512 ], + [ 7.713354, 47.5379428 ], + [ 7.7133358, 47.537933 ], + [ 7.7133215, 47.5379237 ], + [ 7.7118225, 47.5371212 ], + [ 7.7117553999999995, 47.5371789 ], + [ 7.7117544, 47.5371795 ], + [ 7.7117533, 47.5371801 ], + [ 7.711752, 47.5371806 ], + [ 7.7117508, 47.537181 ], + [ 7.7117495, 47.5371813 ], + [ 7.711748, 47.5371816 ], + [ 7.7117467, 47.5371817 ], + [ 7.7117452, 47.5371817 ], + [ 7.7117436999999995, 47.5371816 ], + [ 7.7117424, 47.5371815 ], + [ 7.711741, 47.5371812 ], + [ 7.7117396, 47.5371808 ], + [ 7.7117384, 47.5371804 ], + [ 7.7117372, 47.5371798 ], + [ 7.7117362, 47.5371792 ], + [ 7.7117352, 47.5371785 ], + [ 7.7117343, 47.5371777 ], + [ 7.7117338, 47.5371771 ], + [ 7.7116336, 47.5371217 ], + [ 7.7116045, 47.5371759 ], + [ 7.7115335, 47.5372075 ], + [ 7.7116345, 47.537261 ], + [ 7.7116359, 47.5372615 ], + [ 7.7116372, 47.5372622 ], + [ 7.7116384, 47.5372629 ], + [ 7.7116396, 47.5372638 ], + [ 7.7116407, 47.5372646 ], + [ 7.7116415, 47.5372656 ], + [ 7.7116423, 47.5372666 ], + [ 7.7116429, 47.5372677 ], + [ 7.7116431, 47.5372688 ], + [ 7.7116434, 47.5372699 ], + [ 7.7116434, 47.5372711 ], + [ 7.7116433, 47.5372721 ], + [ 7.711643, 47.5372733 ], + [ 7.7116425, 47.5372744 ], + [ 7.7116418, 47.5372755 ], + [ 7.7115793, 47.5373291 ], + [ 7.7115914, 47.5373356 ], + [ 7.7115933, 47.5373371 ], + [ 7.7115947, 47.5373387 ], + [ 7.7115960999999995, 47.5373404 ], + [ 7.7115972, 47.5373422 ], + [ 7.7115978, 47.5373441 ], + [ 7.7115984, 47.537346 ], + [ 7.7115985, 47.5373479 ], + [ 7.7115984, 47.5373499 ], + [ 7.7115979, 47.5373517 ], + [ 7.7115972, 47.5373535 ], + [ 7.7115962, 47.5373553 ], + [ 7.7115948, 47.5373571 ], + [ 7.7115934, 47.5373588 ], + [ 7.7115915, 47.5373602 ], + [ 7.7115895, 47.5373616 ], + [ 7.7115876, 47.5373627 ], + [ 7.7115566, 47.5373848 ], + [ 7.7115224, 47.5374045 ], + [ 7.7115032, 47.537414 ], + [ 7.7114649, 47.5374299 ], + [ 7.7114243, 47.5374429 ], + [ 7.7113949999999996, 47.5374502 ], + [ 7.7113256, 47.5374624 ], + [ 7.7112547, 47.5374696 ], + [ 7.7112359999999995, 47.5374706 ], + [ 7.7111643, 47.5374714 ], + [ 7.711093, 47.5374671 ], + [ 7.7110138, 47.5374562 ], + [ 7.7109006, 47.5374341 ], + [ 7.7108606, 47.537424 ], + [ 7.710826, 47.5374153 ], + [ 7.7107892, 47.5374032 ], + [ 7.7105559, 47.5373147 ], + [ 7.7104501, 47.5372755 ], + [ 7.7104486, 47.5372727 ], + [ 7.7104119, 47.5372722 ], + [ 7.7102438, 47.5372699 ], + [ 7.7102291, 47.5372695 ], + [ 7.7102143, 47.5372686 ], + [ 7.7101997, 47.5372674 ], + [ 7.7101851, 47.5372657 ], + [ 7.7101707, 47.5372636 ], + [ 7.7101564, 47.5372611 ], + [ 7.7101421, 47.5372582 ], + [ 7.710128, 47.5372548 ], + [ 7.7101141, 47.5372511 ], + [ 7.7101005, 47.537247 ], + [ 7.7100872, 47.5372425 ], + [ 7.7100741, 47.5372376 ], + [ 7.7090279, 47.5368336 ], + [ 7.7084288, 47.5366023 ], + [ 7.7084261, 47.5366056 ], + [ 7.7083532, 47.5365792 ], + [ 7.7076584, 47.5374134 ], + [ 7.7083332, 47.5376699 ], + [ 7.7135331, 47.5396456 ], + [ 7.7141376, 47.5383826 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns036", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Kraftwerkstausee", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Kraftwerkstausee", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Kraftwerkstausee", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Kraftwerkstausee", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.9474929, 47.2876986 ], + [ 7.9474862, 47.2875574 ], + [ 7.9474685, 47.2874166 ], + [ 7.9474401, 47.2872767 ], + [ 7.9474009, 47.287138 ], + [ 7.9473512, 47.2870008 ], + [ 7.9472909, 47.2868656 ], + [ 7.9472203, 47.2867328 ], + [ 7.9471396, 47.2866026 ], + [ 7.9470491, 47.2864755 ], + [ 7.9469487999999995, 47.2863518 ], + [ 7.9468392, 47.2862318 ], + [ 7.9467205, 47.2861159 ], + [ 7.946593, 47.2860044 ], + [ 7.9464572, 47.2858976 ], + [ 7.9463133, 47.2857957 ], + [ 7.9461618, 47.2856991 ], + [ 7.946003, 47.2856081 ], + [ 7.9458375, 47.2855228 ], + [ 7.9456657, 47.2854435 ], + [ 7.945488, 47.2853705 ], + [ 7.9453049, 47.2853039 ], + [ 7.9451169, 47.2852439 ], + [ 7.9449246, 47.2851907 ], + [ 7.9447285, 47.2851444 ], + [ 7.944529, 47.2851051 ], + [ 7.9443268, 47.285073 ], + [ 7.9441225, 47.2850482 ], + [ 7.9439165, 47.2850306 ], + [ 7.9437093999999995, 47.2850205 ], + [ 7.9435018, 47.2850177 ], + [ 7.9432943, 47.2850223 ], + [ 7.9430875, 47.2850343 ], + [ 7.9428818, 47.2850536 ], + [ 7.9426779, 47.2850802 ], + [ 7.9424764, 47.2851141 ], + [ 7.9422777, 47.2851551 ], + [ 7.9420824, 47.2852031 ], + [ 7.9418911, 47.285258 ], + [ 7.9417043, 47.2853196 ], + [ 7.9415225, 47.2853878 ], + [ 7.9413462, 47.2854624 ], + [ 7.9411759, 47.2855431 ], + [ 7.941012, 47.2856298 ], + [ 7.940855, 47.2857223 ], + [ 7.9407053, 47.2858202 ], + [ 7.9405633, 47.2859233 ], + [ 7.9404295, 47.2860313 ], + [ 7.9403042, 47.2861439 ], + [ 7.9401877, 47.2862608 ], + [ 7.9400803, 47.2863817 ], + [ 7.9399824, 47.2865063 ], + [ 7.9398943, 47.2866342 ], + [ 7.939816, 47.2867651 ], + [ 7.939748, 47.2868985 ], + [ 7.9396903, 47.2870342 ], + [ 7.9396431, 47.2871718 ], + [ 7.9396066, 47.2873109 ], + [ 7.9395808, 47.287451 ], + [ 7.9395658000000005, 47.2875919 ], + [ 7.9395617, 47.2877332 ], + [ 7.9395685, 47.2878744 ], + [ 7.9395861, 47.2880151 ], + [ 7.9396145, 47.2881551 ], + [ 7.9396536, 47.2882938 ], + [ 7.9397034, 47.288431 ], + [ 7.9397636, 47.2885661 ], + [ 7.9398342, 47.288699 ], + [ 7.9399149, 47.2888292 ], + [ 7.9400054, 47.2889563 ], + [ 7.9401057, 47.28908 ], + [ 7.9402153, 47.2892 ], + [ 7.940334, 47.2893159 ], + [ 7.9404614, 47.2894274 ], + [ 7.9405973, 47.2895343 ], + [ 7.9407412, 47.2896361 ], + [ 7.9408927, 47.2897327 ], + [ 7.9410514, 47.2898238 ], + [ 7.9412169, 47.2899091 ], + [ 7.9413888, 47.2899883 ], + [ 7.9415665, 47.2900614 ], + [ 7.9417496, 47.290128 ], + [ 7.9419376, 47.290188 ], + [ 7.9421299, 47.2902412 ], + [ 7.9423261, 47.2902875 ], + [ 7.9425256, 47.2903268 ], + [ 7.9427278, 47.2903589 ], + [ 7.9429321999999996, 47.2903837 ], + [ 7.9431382, 47.2904013 ], + [ 7.9433453, 47.290411399999996 ], + [ 7.9435529, 47.2904142 ], + [ 7.9437604, 47.2904096 ], + [ 7.9439672, 47.2903977 ], + [ 7.9441729, 47.2903783 ], + [ 7.9443768, 47.2903517 ], + [ 7.9445784, 47.2903178 ], + [ 7.9447771, 47.2902768 ], + [ 7.9449724, 47.2902288 ], + [ 7.9451637, 47.2901739 ], + [ 7.9453505, 47.2901123 ], + [ 7.9455323, 47.2900441 ], + [ 7.9457087, 47.2899695 ], + [ 7.945879, 47.2898887 ], + [ 7.9460429, 47.289802 ], + [ 7.9461999, 47.2897096 ], + [ 7.9463496, 47.2896117 ], + [ 7.9464915, 47.2895086 ], + [ 7.9466254, 47.2894006 ], + [ 7.9467507, 47.2892879 ], + [ 7.9468672, 47.289171 ], + [ 7.9469745, 47.2890501 ], + [ 7.9470724, 47.2889255 ], + [ 7.9471606, 47.2887976 ], + [ 7.9472388, 47.2886667 ], + [ 7.9473068, 47.2885333 ], + [ 7.9473645, 47.2883976 ], + [ 7.9474116, 47.28826 ], + [ 7.9474481, 47.2881209 ], + [ 7.9474739, 47.2879807 ], + [ 7.9474889, 47.2878398 ], + [ 7.9474929, 47.2876986 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "ZOF0001", + "country" : "CHE", + "name" : [ + { + "text" : "Bezirksgefängnis Zofingen", + "lang" : "de-CH" + }, + { + "text" : "Bezirksgefängnis Zofingen", + "lang" : "fr-CH" + }, + { + "text" : "Bezirksgefängnis Zofingen", + "lang" : "it-CH" + }, + { + "text" : "Bezirksgefängnis Zofingen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Bezirksgefängnis Zofingen", + "lang" : "de-CH" + }, + { + "text" : "Bezirksgefängnis Zofingen", + "lang" : "fr-CH" + }, + { + "text" : "Bezirksgefängnis Zofingen", + "lang" : "it-CH" + }, + { + "text" : "Bezirksgefängnis Zofingen", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Gefängnisleitung", + "lang" : "de-CH" + }, + { + "text" : "Gefängnisleitung", + "lang" : "fr-CH" + }, + { + "text" : "Gefängnisleitung", + "lang" : "it-CH" + }, + { + "text" : "Gefängnisleitung", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ag.ch/de/verwaltung/dvi/strafverfolgung-strafvollzug/strafvollzug/bezirksgefaengnisse", + "email" : "justizvollzug@ag.ch", + "phone" : "0041627451150", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.1980159, 46.1835097 ], + [ 6.1976128, 46.1834494 ], + [ 6.1973719, 46.1835265 ], + [ 6.1973212, 46.1835546 ], + [ 6.1972666, 46.1836019 ], + [ 6.1971919, 46.1837169 ], + [ 6.1971084, 46.1837729 ], + [ 6.1970179, 46.183793 ], + [ 6.196925, 46.1837992 ], + [ 6.1967089, 46.1837466 ], + [ 6.1964627, 46.1837479 ], + [ 6.1962959, 46.1837639 ], + [ 6.1962119, 46.1837888 ], + [ 6.1961781, 46.1838367 ], + [ 6.1960895, 46.1841071 ], + [ 6.196056, 46.1841549 ], + [ 6.1959646, 46.1842063 ], + [ 6.1959007, 46.1842206 ], + [ 6.1957955, 46.1841898 ], + [ 6.1957407, 46.1840709 ], + [ 6.1956922, 46.184017 ], + [ 6.1956138, 46.1839827 ], + [ 6.1954606, 46.1840062 ], + [ 6.1950625, 46.1842075 ], + [ 6.1949813, 46.1842063 ], + [ 6.194878, 46.1841626 ], + [ 6.1947879, 46.1840071 ], + [ 6.1948441, 46.1837624 ], + [ 6.1949135, 46.1836526 ], + [ 6.1949213, 46.183635 ], + [ 6.1950118, 46.1834623 ], + [ 6.1949528, 46.1834108 ], + [ 6.1946227, 46.1833962 ], + [ 6.1942252, 46.1833839 ], + [ 6.1941723, 46.1833579 ], + [ 6.1941983, 46.1832944 ], + [ 6.1942512, 46.1832458 ], + [ 6.1943107, 46.1831709 ], + [ 6.1943245, 46.1830641 ], + [ 6.1942671, 46.1830156 ], + [ 6.1939194, 46.1830118 ], + [ 6.193871, 46.182976 ], + [ 6.193874, 46.182870199999996 ], + [ 6.193871, 46.1828203 ], + [ 6.1938172, 46.1827897 ], + [ 6.1933062, 46.1827688 ], + [ 6.1932434, 46.1827647 ], + [ 6.1932137, 46.1827603 ], + [ 6.1931769, 46.1827509 ], + [ 6.1931062, 46.1826537 ], + [ 6.1930806, 46.1825909 ], + [ 6.1930545, 46.182539 ], + [ 6.1929962, 46.182444 ], + [ 6.1928745, 46.18231 ], + [ 6.1927311, 46.1821802 ], + [ 6.1926373, 46.1821269 ], + [ 6.1925751, 46.1821182 ], + [ 6.1921776, 46.1821392 ], + [ 6.1920619, 46.1821641 ], + [ 6.1920432, 46.1821846 ], + [ 6.191967, 46.1822079 ], + [ 6.1918701, 46.1821667 ], + [ 6.191825, 46.182119900000004 ], + [ 6.1918243, 46.1821173 ], + [ 6.1909134, 46.1822327 ], + [ 6.1896397, 46.1828037 ], + [ 6.1887775, 46.1836697 ], + [ 6.188458, 46.1846991 ], + [ 6.18873, 46.1857349 ], + [ 6.1895521, 46.1866197 ], + [ 6.1897954, 46.1867365 ], + [ 6.189657, 46.1867986 ], + [ 6.1887948, 46.1876646 ], + [ 6.1886754, 46.1880493 ], + [ 6.188657, 46.1880028 ], + [ 6.1880847, 46.1874006 ], + [ 6.1880075, 46.1873111 ], + [ 6.1875178, 46.1869323 ], + [ 6.187346, 46.1868423 ], + [ 6.1866187, 46.1864185 ], + [ 6.1866186, 46.1864185 ], + [ 6.1864451, 46.1863703 ], + [ 6.1863289, 46.1863094 ], + [ 6.1860197, 46.1862521 ], + [ 6.1854776, 46.1861015 ], + [ 6.1854775, 46.1861015 ], + [ 6.1854774, 46.1861015 ], + [ 6.1851232, 46.186086 ], + [ 6.1848899, 46.1860428 ], + [ 6.1846378, 46.1860648 ], + [ 6.184251, 46.1860479 ], + [ 6.1842509, 46.186048 ], + [ 6.1842508, 46.186048 ], + [ 6.1837412, 46.1861402 ], + [ 6.1837099, 46.1861458 ], + [ 6.1834123, 46.1861718 ], + [ 6.1832785, 46.1862239 ], + [ 6.1830617, 46.1862631 ], + [ 6.1830616, 46.1862631 ], + [ 6.1830614, 46.1862632 ], + [ 6.1826024, 46.1864686 ], + [ 6.1822893, 46.1866088 ], + [ 6.182113, 46.1866774 ], + [ 6.182112, 46.186678 ], + [ 6.18212, 46.1866846 ], + [ 6.1820287, 46.1867254 ], + [ 6.1820027, 46.1867416 ], + [ 6.1818669, 46.1867973 ], + [ 6.1818398, 46.1868142 ], + [ 6.1813953, 46.1871925 ], + [ 6.181167, 46.1870828 ], + [ 6.1810313, 46.1865661 ], + [ 6.1802094, 46.1856813 ], + [ 6.1789626, 46.1850823 ], + [ 6.1784941, 46.1850121 ], + [ 6.1785627, 46.1847831 ], + [ 6.1786026, 46.1845509 ], + [ 6.1786135, 46.1843172 ], + [ 6.1785953, 46.1840837 ], + [ 6.1785481, 46.1838522 ], + [ 6.1784724, 46.1836243 ], + [ 6.1783686, 46.1834019 ], + [ 6.1782446, 46.1831968 ], + [ 6.1780968, 46.1829995 ], + [ 6.1779262, 46.1828113 ], + [ 6.1777339, 46.1826335 ], + [ 6.1775212, 46.1824672 ], + [ 6.1772896, 46.1823137 ], + [ 6.1770407, 46.1821738 ], + [ 6.176776, 46.1820486 ], + [ 6.1767255, 46.1820272 ], + [ 6.1767054, 46.1820187 ], + [ 6.1764992, 46.1819384 ], + [ 6.1762864, 46.1818669 ], + [ 6.1760678, 46.1818045 ], + [ 6.1756799, 46.1814302 ], + [ 6.1755811, 46.1813662 ], + [ 6.1745732, 46.1808938 ], + [ 6.1734044, 46.180661 ], + [ 6.1721893, 46.1806905 ], + [ 6.1710467, 46.1809794 ], + [ 6.1706245, 46.1812086 ], + [ 6.1706047, 46.1812102 ], + [ 6.1694965, 46.1815602 ], + [ 6.1685986, 46.1821312 ], + [ 6.1685571, 46.1821674 ], + [ 6.1679581, 46.1829025 ], + [ 6.1677156, 46.1837302 ], + [ 6.1678534, 46.1845694 ], + [ 6.167865, 46.1845871 ], + [ 6.1675458, 46.1856143 ], + [ 6.1678174, 46.1866502 ], + [ 6.1684615, 46.1873439 ], + [ 6.168459, 46.1873462 ], + [ 6.1683866, 46.1874884 ], + [ 6.1674421, 46.1876078 ], + [ 6.166168, 46.1881785 ], + [ 6.1657241, 46.1886241 ], + [ 6.1654454, 46.1886738 ], + [ 6.1652835, 46.1880562 ], + [ 6.1652588, 46.1880296 ], + [ 6.1651375, 46.187567 ], + [ 6.1643159, 46.1866821 ], + [ 6.1640001, 46.1865303 ], + [ 6.1639078, 46.1859852 ], + [ 6.1633992, 46.1852179 ], + [ 6.1631614, 46.1849704 ], + [ 6.1625725, 46.1845606 ], + [ 6.1625722, 46.1845604 ], + [ 6.1624803, 46.1842437 ], + [ 6.1618734, 46.1835014 ], + [ 6.161803, 46.1834404 ], + [ 6.1606713, 46.1827738 ], + [ 6.1592623, 46.1824505 ], + [ 6.1577815, 46.1825177 ], + [ 6.1576084, 46.1825757 ], + [ 6.1575897, 46.1825768 ], + [ 6.1573717, 46.182655 ], + [ 6.1573233, 46.1826713 ], + [ 6.157305, 46.1826658 ], + [ 6.1562787, 46.1826568 ], + [ 6.1561785, 46.182391 ], + [ 6.1561764, 46.1823881 ], + [ 6.1561761, 46.1823876 ], + [ 6.156176, 46.1823875 ], + [ 6.1561088999999996, 46.1822915 ], + [ 6.1561088, 46.1822914 ], + [ 6.1560667, 46.1822312 ], + [ 6.1559369, 46.1820455 ], + [ 6.1556231, 46.1817331 ], + [ 6.1557221, 46.1814147 ], + [ 6.1554508, 46.1803787 ], + [ 6.1546294, 46.1794937 ], + [ 6.153383, 46.1788944 ], + [ 6.1526292, 46.1787813 ], + [ 6.1516003, 46.1782866 ], + [ 6.1511987, 46.1782263 ], + [ 6.1509598, 46.1780292 ], + [ 6.1499279, 46.1775829 ], + [ 6.1487479, 46.17738 ], + [ 6.148606, 46.1773871 ], + [ 6.148549, 46.1768305 ], + [ 6.1478713, 46.175889 ], + [ 6.1474574, 46.1755185 ], + [ 6.1463125, 46.1748285 ], + [ 6.1456953, 46.1746856 ], + [ 6.1455474, 46.1741201 ], + [ 6.1447262, 46.1732351 ], + [ 6.1434801, 46.1726357 ], + [ 6.1421043, 46.1724291 ], + [ 6.1418776, 46.172281 ], + [ 6.1407776, 46.1719208 ], + [ 6.1395712, 46.1718146 ], + [ 6.1393535, 46.1718434 ], + [ 6.1395071, 46.1713498 ], + [ 6.1392362, 46.1703138 ], + [ 6.1384152, 46.1694287 ], + [ 6.1371692, 46.1688292 ], + [ 6.1356878, 46.1686067 ], + [ 6.1350051, 46.1686929 ], + [ 6.134831, 46.1680268 ], + [ 6.1340101, 46.1671417 ], + [ 6.1330406, 46.1666751 ], + [ 6.1330437, 46.1666148 ], + [ 6.1330998, 46.1664503 ], + [ 6.1330671, 46.1661736 ], + [ 6.133084, 46.1658532 ], + [ 6.1330135, 46.165721 ], + [ 6.133, 46.1656074 ], + [ 6.1325912, 46.1649295 ], + [ 6.1325586, 46.1648684 ], + [ 6.1325452, 46.1648532 ], + [ 6.1325296, 46.1648274 ], + [ 6.1324758, 46.164767 ], + [ 6.132092, 46.1644808 ], + [ 6.1317404, 46.1641955 ], + [ 6.1316679, 46.1641647 ], + [ 6.1314437, 46.1639975 ], + [ 6.1307736, 46.1637849 ], + [ 6.130703, 46.163755 ], + [ 6.130653, 46.1637467 ], + [ 6.1300667, 46.1635607 ], + [ 6.1285539, 46.1635228 ], + [ 6.1271352, 46.1638896 ], + [ 6.1269991, 46.1639478 ], + [ 6.125889, 46.1646644 ], + [ 6.125258, 46.1656217 ], + [ 6.1252022, 46.1666738 ], + [ 6.1257301, 46.1676608 ], + [ 6.1257837, 46.1677212 ], + [ 6.1259354, 46.1678441 ], + [ 6.1257357, 46.1681102 ], + [ 6.1256353, 46.1688936 ], + [ 6.1252712, 46.1687944 ], + [ 6.1250238, 46.1687974 ], + [ 6.1251653, 46.1683433 ], + [ 6.1248946, 46.1673072 ], + [ 6.1240739, 46.166422 ], + [ 6.1239773, 46.1663755 ], + [ 6.1241276, 46.165893 ], + [ 6.1238569, 46.164857 ], + [ 6.1230362, 46.1639718 ], + [ 6.1217905, 46.1633721 ], + [ 6.1211803, 46.1632804 ], + [ 6.1214686, 46.1631593 ], + [ 6.1220174, 46.162705 ], + [ 6.1221193, 46.162815 ], + [ 6.123365, 46.1634146 ], + [ 6.1248461, 46.1636373 ], + [ 6.1263372, 46.1634492 ], + [ 6.1276111, 46.162879 ], + [ 6.128474, 46.1620134 ], + [ 6.1287944, 46.1609842 ], + [ 6.1285237, 46.1599482 ], + [ 6.127935, 46.1593132 ], + [ 6.1280012, 46.1592468 ], + [ 6.1283216, 46.1582177 ], + [ 6.1280509, 46.1571817 ], + [ 6.1272303, 46.1562965 ], + [ 6.1259847, 46.1556969 ], + [ 6.1245038, 46.1554742 ], + [ 6.123013, 46.1556623 ], + [ 6.1217392, 46.1562325 ], + [ 6.1208763, 46.157098 ], + [ 6.1206517, 46.1578189 ], + [ 6.1194507, 46.1572407 ], + [ 6.1189002, 46.1571579 ], + [ 6.1186473, 46.1570361 ], + [ 6.1171664, 46.1568133 ], + [ 6.1156755, 46.1570013 ], + [ 6.1144016, 46.1575714 ], + [ 6.1135386, 46.1584369 ], + [ 6.1132178, 46.159466 ], + [ 6.1134883, 46.1605021 ], + [ 6.1143087, 46.1613874 ], + [ 6.1151818, 46.1618077 ], + [ 6.1153954, 46.1622971 ], + [ 6.1154133999999996, 46.1623224 ], + [ 6.1162797, 46.1631198 ], + [ 6.1175043, 46.1636435 ], + [ 6.1179959, 46.1637054 ], + [ 6.1175443, 46.1639075 ], + [ 6.1174281, 46.1640242 ], + [ 6.1168962, 46.1642037 ], + [ 6.1168406, 46.164241 ], + [ 6.1158717, 46.163774599999996 ], + [ 6.1143907, 46.1635517 ], + [ 6.1128996, 46.1637396 ], + [ 6.1126752, 46.16384 ], + [ 6.1128602, 46.1632466 ], + [ 6.1125897, 46.1622106 ], + [ 6.1117693, 46.1613253 ], + [ 6.1105238, 46.1607255 ], + [ 6.1103681, 46.1607021 ], + [ 6.1102603, 46.1605434 ], + [ 6.1094183, 46.159925 ], + [ 6.1093536, 46.1598905 ], + [ 6.1082601, 46.1594811 ], + [ 6.1079892, 46.1594482 ], + [ 6.1077361, 46.1593661 ], + [ 6.1071573, 46.1593473 ], + [ 6.1070365, 46.1593326 ], + [ 6.1069576, 46.1593408 ], + [ 6.1062312, 46.1593172 ], + [ 6.1048127, 46.15967 ], + [ 6.1036941, 46.1603713 ], + [ 6.1036623, 46.1604009 ], + [ 6.1036566, 46.1604062 ], + [ 6.1035711, 46.1604862 ], + [ 6.1030065, 46.1612371 ], + [ 6.1029188, 46.1616004 ], + [ 6.102323, 46.1621978 ], + [ 6.102002, 46.1632268 ], + [ 6.1022723, 46.1642629 ], + [ 6.1023069, 46.1643003 ], + [ 6.1018011, 46.1644777 ], + [ 6.1009393, 46.1650724 ], + [ 6.100939, 46.1650723 ], + [ 6.1007946, 46.1652092 ], + [ 6.1007937, 46.16521 ], + [ 6.1007932, 46.1652105 ], + [ 6.1002375, 46.1659614 ], + [ 6.100043, 46.1667949 ], + [ 6.1002287, 46.1676293 ], + [ 6.1007764, 46.168383 ], + [ 6.1011741, 46.1686614 ], + [ 6.1020235, 46.1693049 ], + [ 6.1021489, 46.1693688 ], + [ 6.1023746, 46.1694496 ], + [ 6.1025054, 46.1695163 ], + [ 6.1026075, 46.1695528 ], + [ 6.1026692, 46.1695994 ], + [ 6.1027407, 46.1696357 ], + [ 6.1038235, 46.1700211 ], + [ 6.1041311, 46.1700554 ], + [ 6.1037586, 46.1704287 ], + [ 6.1034486, 46.1714227 ], + [ 6.1031185, 46.171373 ], + [ 6.1016271, 46.1715608 ], + [ 6.1010292, 46.1718282 ], + [ 6.0999915, 46.1719588 ], + [ 6.098717, 46.1725288 ], + [ 6.0978535, 46.1733941 ], + [ 6.0975324, 46.1744232 ], + [ 6.0978026, 46.1754593 ], + [ 6.0986231, 46.1763447 ], + [ 6.0988163, 46.1764378 ], + [ 6.0984423, 46.1767648 ], + [ 6.097308, 46.1765416 ], + [ 6.0964031, 46.1766151 ], + [ 6.0961984, 46.176615 ], + [ 6.0960849, 46.1766409 ], + [ 6.0958033, 46.1766638 ], + [ 6.0955441, 46.1767642 ], + [ 6.0950315, 46.1768811 ], + [ 6.0940425, 46.1773869 ], + [ 6.0933689, 46.1780441 ], + [ 6.0933646, 46.1780425 ], + [ 6.0933486, 46.1780639 ], + [ 6.0933301, 46.1780819 ], + [ 6.0933289, 46.1780836 ], + [ 6.0933235, 46.1780977 ], + [ 6.0933043, 46.1781234 ], + [ 6.0933087, 46.178125 ], + [ 6.0932697, 46.178163 ], + [ 6.0932685, 46.1781647 ], + [ 6.0928739, 46.1791683 ], + [ 6.0929859, 46.1798066 ], + [ 6.0925049, 46.1800217 ], + [ 6.0921603, 46.180367 ], + [ 6.0917205, 46.1801552 ], + [ 6.0902391, 46.1799321 ], + [ 6.0891312, 46.1800714 ], + [ 6.0891881, 46.1800028 ], + [ 6.0896211, 46.1798093 ], + [ 6.0904848, 46.178944 ], + [ 6.090806, 46.1779149 ], + [ 6.0905359, 46.1768788 ], + [ 6.0897156, 46.1759934 ], + [ 6.0884835, 46.1753999 ], + [ 6.0884168, 46.175144 ], + [ 6.0882475, 46.1749612 ], + [ 6.0883832, 46.1745266 ], + [ 6.0884481, 46.1744615 ], + [ 6.0887694, 46.1734325 ], + [ 6.0884994, 46.1723963 ], + [ 6.0876792, 46.1715109 ], + [ 6.0864337, 46.1709108 ], + [ 6.0849525, 46.1706876 ], + [ 6.0834611, 46.1708752 ], + [ 6.0824057, 46.171347 ], + [ 6.0822219, 46.1711486 ], + [ 6.0809765, 46.1705485 ], + [ 6.0794954, 46.1703252 ], + [ 6.078004, 46.1705127 ], + [ 6.0769933, 46.1709644 ], + [ 6.0763221, 46.1702395 ], + [ 6.0750767, 46.1696394 ], + [ 6.0735956, 46.169416 ], + [ 6.0721043, 46.1696034 ], + [ 6.072033, 46.1696352 ], + [ 6.07164, 46.1695759 ], + [ 6.0701486, 46.1697633 ], + [ 6.0688739, 46.1703329 ], + [ 6.06801, 46.1711981 ], + [ 6.0676883, 46.1722271 ], + [ 6.0677033, 46.1722847 ], + [ 6.0675777, 46.1723408 ], + [ 6.0667394, 46.172022 ], + [ 6.0654653, 46.1718732 ], + [ 6.0647996, 46.1719514 ], + [ 6.0645052, 46.171901 ], + [ 6.0632189, 46.1719837 ], + [ 6.0630028, 46.1720519 ], + [ 6.0628721, 46.1720419 ], + [ 6.0614283, 46.1723293 ], + [ 6.0602493, 46.1729757 ], + [ 6.0595113, 46.1738845 ], + [ 6.0593774, 46.1741661 ], + [ 6.0591905, 46.1751975 ], + [ 6.0595786, 46.1762015 ], + [ 6.0604843, 46.177029 ], + [ 6.0611204, 46.1772898 ], + [ 6.0607492, 46.1773766 ], + [ 6.0606162, 46.1774249 ], + [ 6.0594371, 46.1780847 ], + [ 6.0587105, 46.1790074 ], + [ 6.0585469, 46.180053 ], + [ 6.058971, 46.1810626 ], + [ 6.059015, 46.1811213 ], + [ 6.0597388, 46.1818004 ], + [ 6.0607295, 46.1822908 ], + [ 6.06189, 46.1825443 ], + [ 6.0619605, 46.1825438 ], + [ 6.0623294, 46.1828924 ], + [ 6.0633339, 46.1833887 ], + [ 6.0640462, 46.1835416 ], + [ 6.0640985, 46.1835605 ], + [ 6.0641502, 46.1835639 ], + [ 6.0645116, 46.1836414 ], + [ 6.0652074, 46.1836323 ], + [ 6.0655914, 46.1836571 ], + [ 6.0657422, 46.1836252 ], + [ 6.065744, 46.1836252 ], + [ 6.0657554, 46.1836225 ], + [ 6.0670258, 46.1833539 ], + [ 6.0671115, 46.1833221 ], + [ 6.0680899, 46.1828073 ], + [ 6.0687883, 46.1821062 ], + [ 6.0691369, 46.1812887 ], + [ 6.0691009, 46.1804364 ], + [ 6.068684, 46.1796345 ], + [ 6.0686248, 46.1795601 ], + [ 6.0676555, 46.1787608 ], + [ 6.0663218, 46.1782773 ], + [ 6.0656926, 46.1782372 ], + [ 6.0652767, 46.1778468 ], + [ 6.0653059, 46.1778441 ], + [ 6.0654577, 46.1778512 ], + [ 6.0657735, 46.1778226 ], + [ 6.0672093, 46.1774857 ], + [ 6.0679223, 46.1770528 ], + [ 6.0679909, 46.1770858 ], + [ 6.0688848, 46.1772207 ], + [ 6.0690329, 46.1777899 ], + [ 6.0698529, 46.1786755 ], + [ 6.0707745, 46.1791196 ], + [ 6.0714485, 46.1798474 ], + [ 6.0711607, 46.1801338 ], + [ 6.0710019, 46.1802581 ], + [ 6.0709683, 46.1803253 ], + [ 6.0708885, 46.1804047 ], + [ 6.0706098, 46.1810416 ], + [ 6.070506, 46.1812489 ], + [ 6.0705011, 46.1812732 ], + [ 6.0705236, 46.182119 ], + [ 6.0705952, 46.1822628 ], + [ 6.0706111, 46.1824509 ], + [ 6.0707643000000004, 46.1826705 ], + [ 6.0707711, 46.1829084 ], + [ 6.0705787, 46.1830966 ], + [ 6.0704008, 46.1833562 ], + [ 6.0700337, 46.1843249 ], + [ 6.0701775, 46.185183 ], + [ 6.0696219, 46.1851515 ], + [ 6.0681808, 46.1854729 ], + [ 6.0676006, 46.1858142 ], + [ 6.0674712, 46.1858166 ], + [ 6.0674412, 46.1857926 ], + [ 6.0673334, 46.1856982 ], + [ 6.0672196, 46.1856071 ], + [ 6.0671001, 46.1855197 ], + [ 6.0667833, 46.1852663 ], + [ 6.0657417, 46.1848309 ], + [ 6.0647691, 46.1845574 ], + [ 6.0645621, 46.1843615 ], + [ 6.064476, 46.1843024 ], + [ 6.0632115, 46.1837219 ], + [ 6.0617234, 46.1835217 ], + [ 6.0602383, 46.1837322 ], + [ 6.0600164, 46.1838363 ], + [ 6.0599615, 46.1838441 ], + [ 6.0599241, 46.183855 ], + [ 6.0588901, 46.1843002 ], + [ 6.0581051, 46.1849457 ], + [ 6.0576459, 46.1857282 ], + [ 6.0575576, 46.186571 ], + [ 6.0578489, 46.1873914 ], + [ 6.0578789, 46.1874408 ], + [ 6.0580383, 46.1876043 ], + [ 6.0580627, 46.1876476 ], + [ 6.0585865, 46.1882161 ], + [ 6.0587093, 46.1883843 ], + [ 6.0587985, 46.1884461 ], + [ 6.0588784, 46.1885329 ], + [ 6.0590284, 46.1886056 ], + [ 6.0591834, 46.1887131 ], + [ 6.0591985, 46.1887337 ], + [ 6.0592649, 46.1887968 ], + [ 6.0592937, 46.1888152 ], + [ 6.0594167, 46.1889831 ], + [ 6.0596229, 46.1891804 ], + [ 6.0598619, 46.189334 ], + [ 6.0598833, 46.1893546 ], + [ 6.0598948, 46.189362 ], + [ 6.0599747, 46.189471 ], + [ 6.0600448, 46.189538 ], + [ 6.0603082, 46.1897072 ], + [ 6.0612494, 46.1903231 ], + [ 6.0612971, 46.1903439 ], + [ 6.0622236, 46.1906375 ], + [ 6.0632281, 46.1907539 ], + [ 6.0642416, 46.190685 ], + [ 6.0642963, 46.1906761 ], + [ 6.0644948, 46.1906138 ], + [ 6.0646947, 46.1906226 ], + [ 6.0655861, 46.1910462 ], + [ 6.065674, 46.1910752 ], + [ 6.067144, 46.1913323 ], + [ 6.0686437, 46.1911792 ], + [ 6.069945, 46.1906392 ], + [ 6.0700063, 46.1905821 ], + [ 6.0711145, 46.1904939 ], + [ 6.0722225, 46.190142 ], + [ 6.0731190999999995, 46.1895692 ], + [ 6.0731598, 46.1895335 ], + [ 6.073756, 46.1887976 ], + [ 6.0739956, 46.1879697 ], + [ 6.0738734, 46.1872405 ], + [ 6.0746344, 46.1873195 ], + [ 6.0760418, 46.1872862 ], + [ 6.0773396, 46.1869068 ], + [ 6.0783575, 46.186231 ], + [ 6.0786535, 46.1857983 ], + [ 6.0788873, 46.1857768 ], + [ 6.0794614, 46.1855817 ], + [ 6.0803219, 46.1861384 ], + [ 6.0804162999999996, 46.186179 ], + [ 6.0815377, 46.1865052 ], + [ 6.0827494, 46.1865747 ], + [ 6.0839326, 46.1863807 ], + [ 6.0849716, 46.1859421 ], + [ 6.0857646, 46.1853021 ], + [ 6.085829, 46.1852297 ], + [ 6.0863589, 46.1842433 ], + [ 6.0863051, 46.1831911 ], + [ 6.0856757, 46.1822333 ], + [ 6.0849817999999996, 46.1817843 ], + [ 6.0857006, 46.1818471 ], + [ 6.0865693, 46.1816819 ], + [ 6.0862876, 46.1825838 ], + [ 6.0865576, 46.1836199 ], + [ 6.087378, 46.1845054 ], + [ 6.0886238, 46.1851054 ], + [ 6.0899138, 46.1852997 ], + [ 6.0899333, 46.1853747 ], + [ 6.0907538, 46.1862602 ], + [ 6.0910248, 46.1863907 ], + [ 6.0908742, 46.1864607 ], + [ 6.089996, 46.1868631 ], + [ 6.0899255, 46.1869082 ], + [ 6.0895340000000004, 46.1872806 ], + [ 6.0891809, 46.187583 ], + [ 6.0891424, 46.1876532 ], + [ 6.0890335, 46.1877567 ], + [ 6.0889421, 46.1880174 ], + [ 6.0887439, 46.1883779 ], + [ 6.0887262, 46.1886333 ], + [ 6.0886756, 46.1887775 ], + [ 6.0887065, 46.1889167 ], + [ 6.0886849, 46.1892277 ], + [ 6.0888912, 46.1897484 ], + [ 6.0889061, 46.1898159 ], + [ 6.0889276, 46.1898406 ], + [ 6.0890098, 46.190048 ], + [ 6.0896863, 46.1907574 ], + [ 6.0897806, 46.1908286 ], + [ 6.0899575, 46.1909623 ], + [ 6.0901063, 46.191044 ], + [ 6.0901159, 46.1910512 ], + [ 6.0901601, 46.1910736 ], + [ 6.0904531, 46.1912345 ], + [ 6.090145, 46.1914331 ], + [ 6.0895139, 46.192377 ], + [ 6.0894561, 46.1932372 ], + [ 6.0893245, 46.1935811 ], + [ 6.0888775, 46.1934951 ], + [ 6.0876615, 46.1935326 ], + [ 6.0865218, 46.1938294 ], + [ 6.086108, 46.1939925 ], + [ 6.0860005, 46.1940348 ], + [ 6.0859296, 46.1940534 ], + [ 6.0858878, 46.19407 ], + [ 6.0858499, 46.194085 ], + [ 6.0857909, 46.1941083 ], + [ 6.0852708, 46.1944213 ], + [ 6.0842315, 46.1939582 ], + [ 6.0827411, 46.1937716 ], + [ 6.0812612, 46.1939948 ], + [ 6.0800165, 46.1945938 ], + [ 6.0799437, 46.1946461 ], + [ 6.0791231, 46.1955302 ], + [ 6.0790058, 46.1959772 ], + [ 6.0787343, 46.1962338 ], + [ 6.0781832, 46.1963178 ], + [ 6.0771336, 46.1967454 ], + [ 6.0770921, 46.1967691 ], + [ 6.0762847, 46.1974007 ], + [ 6.0760031, 46.1978484 ], + [ 6.0758245, 46.198034 ], + [ 6.0758047, 46.1980673 ], + [ 6.0755205, 46.1988889 ], + [ 6.0755612, 46.199247 ], + [ 6.0755513, 46.1992724 ], + [ 6.0755397, 46.1993472 ], + [ 6.0755455, 46.1993923 ], + [ 6.0754517, 46.1999462 ], + [ 6.0756904, 46.200775 ], + [ 6.0762865, 46.2015118 ], + [ 6.0771817, 46.2020844 ], + [ 6.0782881, 46.2024367 ], + [ 6.0783202, 46.202443 ], + [ 6.0795287, 46.2025404 ], + [ 6.0795463, 46.2025379 ], + [ 6.079585, 46.202541 ], + [ 6.0804607, 46.2024177 ], + [ 6.0805628, 46.2025226 ], + [ 6.0806718, 46.2026242 ], + [ 6.0807876, 46.202722 ], + [ 6.0806754, 46.2027726 ], + [ 6.0798164, 46.2036391 ], + [ 6.0794997, 46.2046679 ], + [ 6.079498, 46.2047532 ], + [ 6.0797536, 46.2057196 ], + [ 6.0797596, 46.2057524 ], + [ 6.0797635, 46.2057572 ], + [ 6.0797714, 46.2057869 ], + [ 6.0799161999999995, 46.2059425 ], + [ 6.0802661, 46.2063673 ], + [ 6.0803368, 46.2064793 ], + [ 6.0803903, 46.2065181 ], + [ 6.0805121, 46.206666 ], + [ 6.08083, 46.2068369 ], + [ 6.0812743, 46.207159 ], + [ 6.0812908, 46.2071674 ], + [ 6.0824662, 46.2075737 ], + [ 6.0837693999999995, 46.2076852 ], + [ 6.0850518, 46.207489 ], + [ 6.0861668, 46.2070076 ], + [ 6.0861831, 46.2069976 ], + [ 6.0863787, 46.2068312 ], + [ 6.0866227, 46.2067168 ], + [ 6.0866387, 46.2067065 ], + [ 6.0868836, 46.2064881 ], + [ 6.0874356, 46.2070672 ], + [ 6.0883887, 46.2075931 ], + [ 6.0895295, 46.2078886 ], + [ 6.0907459, 46.2079245 ], + [ 6.0919186, 46.2076974 ], + [ 6.0919462, 46.2076886 ], + [ 6.0931743, 46.2070729 ], + [ 6.0936202999999995, 46.2065715 ], + [ 6.0939312, 46.2067212 ], + [ 6.0941088, 46.2067479 ], + [ 6.0938282, 46.2068856 ], + [ 6.0936041, 46.2070373 ], + [ 6.0928765, 46.2077143 ], + [ 6.0928495, 46.2077695 ], + [ 6.0925441, 46.2080504 ], + [ 6.0924024, 46.2083358 ], + [ 6.0923807, 46.2083575 ], + [ 6.0923616, 46.2084182 ], + [ 6.0921472, 46.20885 ], + [ 6.0921405, 46.2091197 ], + [ 6.0920569, 46.2093849 ], + [ 6.0921271, 46.2096579 ], + [ 6.0921262, 46.2096957 ], + [ 6.0921518, 46.2097536 ], + [ 6.0923234, 46.2104203 ], + [ 6.0931396, 46.2113062 ], + [ 6.0932329, 46.2113736 ], + [ 6.0932601, 46.2113934 ], + [ 6.0932602, 46.2113934 ], + [ 6.0933781, 46.2114786 ], + [ 6.0943521, 46.2119904 ], + [ 6.0955069, 46.2122671 ], + [ 6.0967283, 46.2122813 ], + [ 6.0967782, 46.2122706 ], + [ 6.0968952, 46.2122722 ], + [ 6.0980619, 46.2120265 ], + [ 6.0982686, 46.2119263 ], + [ 6.0983165, 46.2119209 ], + [ 6.0996062, 46.211368 ], + [ 6.0996966, 46.2113096 ], + [ 6.1002007, 46.2108625 ], + [ 6.1003458, 46.2107949 ], + [ 6.1006295, 46.2106118 ], + [ 6.1012789, 46.2099883 ], + [ 6.1020631, 46.2103253 ], + [ 6.1032445, 46.210526 ], + [ 6.1044574, 46.2104635 ], + [ 6.1052812, 46.2102295 ], + [ 6.1051082, 46.2103439 ], + [ 6.1047192, 46.210844 ], + [ 6.1046787, 46.2108846 ], + [ 6.1046727, 46.2109039 ], + [ 6.1045297, 46.2110878 ], + [ 6.104311, 46.2119193 ], + [ 6.1044267, 46.2125152 ], + [ 6.1036505, 46.2128621 ], + [ 6.1027865, 46.2137276 ], + [ 6.1024652, 46.2147566 ], + [ 6.1026745, 46.2155583 ], + [ 6.1019857, 46.2162481 ], + [ 6.1016645, 46.2172771 ], + [ 6.1016832, 46.217349 ], + [ 6.1016535, 46.2174442 ], + [ 6.1017457, 46.2177971 ], + [ 6.1016534, 46.2177834 ], + [ 6.1012148, 46.2178151 ], + [ 6.1007739, 46.2175744 ], + [ 6.1009164, 46.2175045 ], + [ 6.101662, 46.21679 ], + [ 6.1016783, 46.2167672 ], + [ 6.1018033, 46.2164546 ], + [ 6.1020293, 46.2159931 ], + [ 6.1020313999999996, 46.2158839 ], + [ 6.1020751, 46.2157745 ], + [ 6.1020379, 46.215548 ], + [ 6.1020457, 46.2151487 ], + [ 6.1019298, 46.2148894 ], + [ 6.101907, 46.2147509 ], + [ 6.1018158, 46.2146343 ], + [ 6.1016853, 46.2143421 ], + [ 6.1012607, 46.2139248 ], + [ 6.1011987, 46.2138456 ], + [ 6.1011542, 46.2138201 ], + [ 6.1009835, 46.2136524 ], + [ 6.100009, 46.213147 ], + [ 6.0996838, 46.2130281 ], + [ 6.0982304, 46.2127288 ], + [ 6.0967226, 46.2128382 ], + [ 6.0953897, 46.2133397 ], + [ 6.0944345, 46.2141569 ], + [ 6.0943938, 46.2142104 ], + [ 6.0942499, 46.2145036 ], + [ 6.094157, 46.2144762 ], + [ 6.0931513, 46.2139922 ], + [ 6.0917688, 46.2137841 ], + [ 6.0915248, 46.2135209 ], + [ 6.0912236, 46.2133759 ], + [ 6.0909616, 46.2123713 ], + [ 6.0901407, 46.2114859 ], + [ 6.0888943, 46.2108859 ], + [ 6.087412, 46.2106627 ], + [ 6.0859196, 46.2108503 ], + [ 6.0846441, 46.2114201 ], + [ 6.0844899, 46.2115745 ], + [ 6.0844336, 46.2115138 ], + [ 6.0831872, 46.2109137 ], + [ 6.081705, 46.2106905 ], + [ 6.0802125, 46.210878 ], + [ 6.078937, 46.2114477 ], + [ 6.0788122, 46.2115726 ], + [ 6.078546, 46.211466 ], + [ 6.0770446, 46.2113288 ], + [ 6.0755816, 46.2116003 ], + [ 6.0743789, 46.2122392 ], + [ 6.074277, 46.2123196 ], + [ 6.0742738, 46.2123213 ], + [ 6.0742253999999996, 46.2123595 ], + [ 6.0735737, 46.213074399999996 ], + [ 6.0732727, 46.2138942 ], + [ 6.0733522, 46.2147384 ], + [ 6.0738003, 46.2155169 ], + [ 6.0732513, 46.2152526 ], + [ 6.071769, 46.2150292 ], + [ 6.0702764, 46.2152166 ], + [ 6.0690006, 46.2157862 ], + [ 6.068136, 46.2166513 ], + [ 6.0678141, 46.2176803 ], + [ 6.0680839, 46.2187165 ], + [ 6.0689045, 46.2196021 ], + [ 6.0701509, 46.2202023 ], + [ 6.0716334, 46.2204257 ], + [ 6.0731261, 46.2202384 ], + [ 6.0731266, 46.2202382 ], + [ 6.0729567, 46.220806 ], + [ 6.0732396, 46.2218399 ], + [ 6.0740708, 46.2227201 ], + [ 6.0742524, 46.2228485 ], + [ 6.0747545, 46.2230859 ], + [ 6.0748434, 46.2232483 ], + [ 6.0758786, 46.2240129 ], + [ 6.0772556, 46.2244456 ], + [ 6.0784487, 46.2244737 ], + [ 6.0783489, 46.2246246 ], + [ 6.078208, 46.2254638 ], + [ 6.0783325, 46.2258935 ], + [ 6.0780932, 46.2258203 ], + [ 6.0779178, 46.2258081 ], + [ 6.077502, 46.2256073 ], + [ 6.0760199, 46.2253825 ], + [ 6.0745267, 46.2255684 ], + [ 6.0744762, 46.2255821 ], + [ 6.0743938, 46.2255703 ], + [ 6.0743403, 46.2255521 ], + [ 6.0742301, 46.2255468 ], + [ 6.0736206, 46.2254592 ], + [ 6.0733586, 46.2254935 ], + [ 6.072895, 46.2249933 ], + [ 6.0722136, 46.2246652 ], + [ 6.071893, 46.2243193 ], + [ 6.0706465, 46.2237192 ], + [ 6.0704341, 46.2236872 ], + [ 6.0708684, 46.2232526 ], + [ 6.0711903, 46.2222236 ], + [ 6.0709204, 46.2211875 ], + [ 6.0700997, 46.2203019 ], + [ 6.0688533, 46.2197016 ], + [ 6.0673709, 46.2194782 ], + [ 6.0658781, 46.2196655 ], + [ 6.0650199, 46.2200486 ], + [ 6.0645659, 46.2196834 ], + [ 6.0640481, 46.2193796 ], + [ 6.0640451, 46.2193772 ], + [ 6.0638318, 46.2192522 ], + [ 6.0631595, 46.218969799999996 ], + [ 6.0635571, 46.2190237 ], + [ 6.0647702, 46.2189199 ], + [ 6.0658769, 46.2185598 ], + [ 6.0667678, 46.2179789 ], + [ 6.0668631, 46.2178935 ], + [ 6.0670597, 46.2176204 ], + [ 6.067158, 46.2175435 ], + [ 6.0672182, 46.2174476 ], + [ 6.0673673, 46.2173074 ], + [ 6.067478, 46.2172137 ], + [ 6.0674858, 46.217196 ], + [ 6.0678703, 46.2168344 ], + [ 6.0682355, 46.2158126 ], + [ 6.0680099, 46.2147716 ], + [ 6.067995, 46.2147544 ], + [ 6.0690469, 46.2144421 ], + [ 6.0699635, 46.2138856 ], + [ 6.0700808, 46.213788 ], + [ 6.0708034, 46.2128692 ], + [ 6.070968, 46.2118287 ], + [ 6.0705499, 46.2108229 ], + [ 6.0702305, 46.2105439 ], + [ 6.0701607, 46.2098505 ], + [ 6.0697019, 46.209065 ], + [ 6.0689149, 46.208417 ], + [ 6.0687912, 46.2083428 ], + [ 6.0674812, 46.2078252 ], + [ 6.0667119, 46.2077569 ], + [ 6.0662734, 46.2075764 ], + [ 6.0650827, 46.2073915 ], + [ 6.0638682, 46.2074719 ], + [ 6.0627494, 46.2078098 ], + [ 6.0625557, 46.207929 ], + [ 6.0623809, 46.2079763 ], + [ 6.0614281, 46.2085236 ], + [ 6.0613437, 46.2085904 ], + [ 6.0606872, 46.2093171 ], + [ 6.0603922, 46.2101502 ], + [ 6.0604249, 46.2104394 ], + [ 6.0603588, 46.2107929 ], + [ 6.0605145, 46.2111952 ], + [ 6.0605182, 46.2112359 ], + [ 6.0605553, 46.2113005 ], + [ 6.0607514, 46.2118071 ], + [ 6.0609474, 46.2119845 ], + [ 6.0609694, 46.2120229 ], + [ 6.0612309, 46.2122411 ], + [ 6.0616721, 46.2126405 ], + [ 6.0617358, 46.2126794 ], + [ 6.0618168, 46.2127149 ], + [ 6.0619097, 46.2127713 ], + [ 6.0627152, 46.2131235 ], + [ 6.0623954, 46.2131355 ], + [ 6.0610274, 46.2135903 ], + [ 6.0609444, 46.2136335 ], + [ 6.0599313, 46.2144171 ], + [ 6.0599243, 46.2144308 ], + [ 6.0597958, 46.2145241 ], + [ 6.0597075, 46.2146513 ], + [ 6.0596694, 46.2146812 ], + [ 6.059625, 46.2147703 ], + [ 6.0592674, 46.2152857 ], + [ 6.0592029, 46.2156171 ], + [ 6.0591746, 46.2156739 ], + [ 6.0591798, 46.2157357 ], + [ 6.0591042999999996, 46.2161234 ], + [ 6.0593226, 46.216955 ], + [ 6.0599008, 46.2176989 ], + [ 6.0599626, 46.2177551 ], + [ 6.059967, 46.2177591 ], + [ 6.0599672, 46.2177594 ], + [ 6.0599953, 46.2177848 ], + [ 6.060055, 46.2178391 ], + [ 6.0600672, 46.2178563 ], + [ 6.0600917, 46.2178785 ], + [ 6.0603896, 46.2180602 ], + [ 6.0603846, 46.2180635 ], + [ 6.0603862, 46.2180647 ], + [ 6.0604554, 46.2181003 ], + [ 6.0605233, 46.2181417 ], + [ 6.0606201, 46.2182049 ], + [ 6.0607199, 46.2182658 ], + [ 6.0608227, 46.2183243 ], + [ 6.0612308, 46.2185732 ], + [ 6.0614716, 46.2186301 ], + [ 6.0603922, 46.2186937 ], + [ 6.0592705, 46.2190219 ], + [ 6.05835, 46.2195748 ], + [ 6.0577971, 46.2200302 ], + [ 6.057168, 46.2207536 ], + [ 6.0570691, 46.2210485 ], + [ 6.0569738, 46.2210941 ], + [ 6.0568804, 46.2211418 ], + [ 6.0567891, 46.2211913 ], + [ 6.0563892, 46.2214491 ], + [ 6.0563644, 46.2214675 ], + [ 6.0563266, 46.2214955 ], + [ 6.0563262, 46.2214958 ], + [ 6.0563023, 46.2215135 ], + [ 6.0563022, 46.2215136 ], + [ 6.0562525, 46.2215505 ], + [ 6.0562524, 46.2215506 ], + [ 6.0562387, 46.2215607 ], + [ 6.0561709, 46.2216111 ], + [ 6.0561656, 46.221615 ], + [ 6.0561529, 46.2216244 ], + [ 6.0560576, 46.2216985 ], + [ 6.0559663, 46.2217749 ], + [ 6.0558791, 46.2218536 ], + [ 6.0558468, 46.2218257 ], + [ 6.0558422, 46.221823 ], + [ 6.0557566, 46.2217489 ], + [ 6.0556007, 46.2216894 ], + [ 6.0556055, 46.2216855 ], + [ 6.0555407, 46.2216478 ], + [ 6.0554614, 46.2215778 ], + [ 6.055383, 46.2215472 ], + [ 6.055331, 46.221502 ], + [ 6.0552677, 46.2214776 ], + [ 6.0552244, 46.2214399 ], + [ 6.0551017, 46.2213927 ], + [ 6.0550828, 46.2213817 ], + [ 6.0550531, 46.2213704 ], + [ 6.055024, 46.2213471 ], + [ 6.0549214, 46.2212874 ], + [ 6.0548227, 46.22123 ], + [ 6.0547134, 46.2211663 ], + [ 6.0547081, 46.2211632 ], + [ 6.0546863, 46.2211505 ], + [ 6.0545037, 46.2210812 ], + [ 6.0541532, 46.2208773 ], + [ 6.0531097, 46.2204425 ], + [ 6.0519238, 46.220253 ], + [ 6.0507115, 46.2203272 ], + [ 6.0495916, 46.220658 ], + [ 6.048674, 46.2212128 ], + [ 6.0484239, 46.2214201 ], + [ 6.0476959, 46.2223433 ], + [ 6.047532, 46.2233897 ], + [ 6.0476636, 46.2237024 ], + [ 6.047754, 46.2244233 ], + [ 6.047756, 46.2244266 ], + [ 6.0477464, 46.2244875 ], + [ 6.0477723, 46.2245489 ], + [ 6.0478094, 46.2248425 ], + [ 6.0480868, 46.2252959 ], + [ 6.0481719, 46.225498 ], + [ 6.0482537, 46.2255687 ], + [ 6.048285, 46.2256197 ], + [ 6.0485047, 46.225795 ], + [ 6.0487757, 46.2260972 ], + [ 6.049053, 46.226259 ], + [ 6.049122, 46.2263186 ], + [ 6.0492127, 46.2263713 ], + [ 6.0492185, 46.2263665 ], + [ 6.0492938, 46.2264309 ], + [ 6.0487606, 46.2265785 ], + [ 6.0485887, 46.226651 ], + [ 6.0485834, 46.2266533 ], + [ 6.0474366, 46.2271391 ], + [ 6.0474336, 46.2271404 ], + [ 6.0466719, 46.2274638 ], + [ 6.0466692, 46.2274649 ], + [ 6.045795, 46.2278367 ], + [ 6.0455715, 46.2279315 ], + [ 6.0455704, 46.227932 ], + [ 6.0449112, 46.2282119 ], + [ 6.0449106, 46.2282122 ], + [ 6.0440882, 46.2285616 ], + [ 6.0438041, 46.2286816 ], + [ 6.0437868, 46.228689 ], + [ 6.04189, 46.2295002 ], + [ 6.0407821, 46.2302133 ], + [ 6.0403022, 46.2309357 ], + [ 6.0401066, 46.2310305 ], + [ 6.0401037, 46.2310319 ], + [ 6.0398923, 46.2311344 ], + [ 6.0398916, 46.2311348 ], + [ 6.0396805, 46.2312373 ], + [ 6.0394492, 46.2313588 ], + [ 6.0391695, 46.2315175 ], + [ 6.0391528, 46.231527 ], + [ 6.0389589, 46.2316382 ], + [ 6.0386925, 46.2317897 ], + [ 6.0386659, 46.2318002 ], + [ 6.0378299, 46.2322813 ], + [ 6.0372329, 46.2326239 ], + [ 6.0372286, 46.2326264 ], + [ 6.036631, 46.2329703 ], + [ 6.0366244, 46.2329741 ], + [ 6.0364049, 46.2331011 ], + [ 6.0362484, 46.2331966 ], + [ 6.0356987, 46.2335506 ], + [ 6.0356983, 46.2335509 ], + [ 6.0349395, 46.2340398 ], + [ 6.0349359, 46.2340422 ], + [ 6.0343406, 46.2344267 ], + [ 6.0322818, 46.2357512 ], + [ 6.0322703, 46.2357586 ], + [ 6.0310413, 46.2365557 ], + [ 6.0307771, 46.2368019 ], + [ 6.0322383, 46.2375954 ], + [ 6.0336528, 46.2385514 ], + [ 6.0388915, 46.2351721 ], + [ 6.0407126, 46.2341257 ], + [ 6.0421279, 46.233309 ], + [ 6.0461113, 46.2313936 ], + [ 6.046147, 46.2314222 ], + [ 6.0462191, 46.2314958 ], + [ 6.0463245, 46.2316406 ], + [ 6.0465269, 46.2319315 ], + [ 6.0468744, 46.2324718 ], + [ 6.0472802, 46.2330956 ], + [ 6.0474518, 46.2334037 ], + [ 6.047666, 46.2332938 ], + [ 6.0479287, 46.2331719 ], + [ 6.0480063, 46.2331499 ], + [ 6.0480296, 46.2331599 ], + [ 6.0482131, 46.2333114 ], + [ 6.0484784, 46.2334811 ], + [ 6.0487848, 46.2337143 ], + [ 6.0490088, 46.2338818 ], + [ 6.0495062, 46.2342891 ], + [ 6.0495621, 46.2343822 ], + [ 6.0496731, 46.2345281 ], + [ 6.049662, 46.2345461 ], + [ 6.0499856, 46.2348651 ], + [ 6.0502982, 46.2351392 ], + [ 6.0504303, 46.2353188 ], + [ 6.0505964, 46.2355373 ], + [ 6.0507172, 46.2357205 ], + [ 6.0508327, 46.2358635 ], + [ 6.051012, 46.2363119 ], + [ 6.0510762, 46.2364666 ], + [ 6.0511618, 46.2365725 ], + [ 6.0512473, 46.2367278 ], + [ 6.0513331, 46.2369085 ], + [ 6.0515039999999996, 46.2371682 ], + [ 6.0515763, 46.2372859 ], + [ 6.0517014, 46.2374709 ], + [ 6.0517194, 46.2375501 ], + [ 6.0518702, 46.2377365 ], + [ 6.0520151, 46.2378901 ], + [ 6.0521554, 46.2380967 ], + [ 6.0520902, 46.2382323 ], + [ 6.0527063, 46.2388075 ], + [ 6.0533037, 46.2393819 ], + [ 6.0542916, 46.2394773 ], + [ 6.0555264, 46.2393158 ], + [ 6.0570065, 46.2389426 ], + [ 6.0570135, 46.2389408 ], + [ 6.0581252, 46.2386588 ], + [ 6.0590257, 46.2383323 ], + [ 6.0597735, 46.2378551 ], + [ 6.0603178, 46.2372598 ], + [ 6.0603278, 46.2372449 ], + [ 6.0606386, 46.236542 ], + [ 6.0606644, 46.2358071 ], + [ 6.0605065, 46.2353759 ], + [ 6.0606893, 46.2350041 ], + [ 6.0607034, 46.2348002 ], + [ 6.0607217, 46.2347953 ], + [ 6.0619405, 46.2342687 ], + [ 6.0628008, 46.2334711 ], + [ 6.0631855, 46.2325112 ], + [ 6.0630421, 46.2315199 ], + [ 6.0623901, 46.2306322 ], + [ 6.0623578, 46.2306031 ], + [ 6.0622346, 46.2304978 ], + [ 6.0617257, 46.2300848 ], + [ 6.0608078, 46.2295399 ], + [ 6.0606255, 46.229487 ], + [ 6.0605654, 46.2288713 ], + [ 6.0601108, 46.2280868 ], + [ 6.0593435, 46.2271977 ], + [ 6.0585057, 46.2265162 ], + [ 6.0573927, 46.2260626 ], + [ 6.0561271, 46.2258869 ], + [ 6.056002, 46.2258987 ], + [ 6.0560236, 46.2258808 ], + [ 6.0563297, 46.2256273 ], + [ 6.0564323, 46.2254973 ], + [ 6.056462, 46.2255166 ], + [ 6.0564625, 46.2255169 ], + [ 6.0565206, 46.2255546 ], + [ 6.0565217, 46.2255552 ], + [ 6.0566845, 46.2256607 ], + [ 6.0569419, 46.225814 ], + [ 6.0572175, 46.2259512 ], + [ 6.0575092, 46.2260713 ], + [ 6.0578149, 46.2261734 ], + [ 6.0581321, 46.2262566 ], + [ 6.0584586, 46.2263205 ], + [ 6.0587918, 46.2263643 ], + [ 6.0591293, 46.226388 ], + [ 6.0591321, 46.2263881 ], + [ 6.0594723, 46.2263911 ], + [ 6.0598115, 46.2263735 ], + [ 6.0601472, 46.2263355 ], + [ 6.0604769, 46.2262773 ], + [ 6.0607981, 46.2261995 ], + [ 6.0611082, 46.2261025 ], + [ 6.061405, 46.2259871 ], + [ 6.0616862, 46.2258542 ], + [ 6.0619496, 46.2257049 ], + [ 6.0621933, 46.2255402 ], + [ 6.062202, 46.2255337 ], + [ 6.0624206, 46.2253715 ], + [ 6.0626409, 46.2251937 ], + [ 6.0628383, 46.2250034 ], + [ 6.0630112, 46.2248019 ], + [ 6.0631583, 46.2245909 ], + [ 6.0635858, 46.2244673 ], + [ 6.0644265, 46.2239654 ], + [ 6.0645058, 46.224051 ], + [ 6.0657522, 46.2246513 ], + [ 6.0659646, 46.2246833 ], + [ 6.0655303, 46.2251178 ], + [ 6.0654591, 46.2253453 ], + [ 6.0646846, 46.22612 ], + [ 6.0643626, 46.227149 ], + [ 6.0644246, 46.2273872 ], + [ 6.0639699, 46.2278419 ], + [ 6.0638694, 46.2281631 ], + [ 6.063736, 46.2282966 ], + [ 6.0634139, 46.2293256 ], + [ 6.0636838, 46.2303617 ], + [ 6.0645045, 46.2312474 ], + [ 6.064734, 46.2313579 ], + [ 6.0646773, 46.231539 ], + [ 6.0649472, 46.2325752 ], + [ 6.065768, 46.2334608 ], + [ 6.0670146, 46.2340611 ], + [ 6.0684975, 46.2342845 ], + [ 6.0699906, 46.2340972 ], + [ 6.0712668, 46.2335276 ], + [ 6.0721317, 46.2326624 ], + [ 6.0722352, 46.2323316 ], + [ 6.07247, 46.232366999999996 ], + [ 6.0739631, 46.2321796 ], + [ 6.0747501, 46.2318283 ], + [ 6.0754999, 46.2319421 ], + [ 6.0756899, 46.2319185 ], + [ 6.0758418, 46.2319916 ], + [ 6.0764417, 46.232082 ], + [ 6.07661, 46.2327273 ], + [ 6.0766468, 46.2327671 ], + [ 6.0761776, 46.2329766 ], + [ 6.0753128, 46.2338418 ], + [ 6.0751061, 46.2345026 ], + [ 6.0748945, 46.2345291 ], + [ 6.0736183, 46.2350988 ], + [ 6.0727534, 46.235964 ], + [ 6.0724315, 46.236993 ], + [ 6.0727015, 46.2380292 ], + [ 6.0734886, 46.2388783 ], + [ 6.0737053, 46.2397093 ], + [ 6.0745263, 46.2405949 ], + [ 6.0757732, 46.2411951 ], + [ 6.0772563, 46.2414184 ], + [ 6.0787496, 46.2412309 ], + [ 6.0797329, 46.240792 ], + [ 6.0809344, 46.2406412 ], + [ 6.0822106, 46.2400714 ], + [ 6.0830754, 46.2392061 ], + [ 6.0833972, 46.2381771 ], + [ 6.0833412, 46.2379624 ], + [ 6.0837209, 46.2376533 ], + [ 6.0843587, 46.2369274 ], + [ 6.0846396, 46.2360999 ], + [ 6.0845868, 46.2356707 ], + [ 6.0846822, 46.2355752 ], + [ 6.0847172, 46.2355805 ], + [ 6.0862104, 46.2353929 ], + [ 6.0874864, 46.2348231 ], + [ 6.0883511, 46.2339578 ], + [ 6.0886727, 46.2329288 ], + [ 6.0884024, 46.2318926 ], + [ 6.0875813, 46.2310072 ], + [ 6.0863344, 46.2304071 ], + [ 6.0852148, 46.2302386 ], + [ 6.085106, 46.2298215 ], + [ 6.084285, 46.228936 ], + [ 6.0830382, 46.2283359 ], + [ 6.0815555, 46.2281126 ], + [ 6.0810758, 46.2281729 ], + [ 6.0810284, 46.2279845 ], + [ 6.0812247, 46.2280471 ], + [ 6.0815862, 46.2280763 ], + [ 6.0817296, 46.228108399999996 ], + [ 6.0818797, 46.2281 ], + [ 6.0824333, 46.2281448 ], + [ 6.0836262, 46.2279785 ], + [ 6.0841123, 46.2277887 ], + [ 6.0846217, 46.2281862 ], + [ 6.0846437, 46.2281984 ], + [ 6.0847315, 46.2282504 ], + [ 6.0848093, 46.2282953 ], + [ 6.0849408, 46.2283693 ], + [ 6.0850264, 46.2284178 ], + [ 6.0857725, 46.22885 ], + [ 6.0868777, 46.2292993 ], + [ 6.0870039, 46.229317 ], + [ 6.0873605, 46.2295609 ], + [ 6.0873757, 46.2295712 ], + [ 6.0879876, 46.2299851 ], + [ 6.0879913, 46.229993 ], + [ 6.0880133, 46.2300346 ], + [ 6.0880326, 46.2300736 ], + [ 6.0880863, 46.2301756 ], + [ 6.0881334, 46.2302597 ], + [ 6.0881525, 46.230293 ], + [ 6.0881996, 46.2303739 ], + [ 6.0884158, 46.2306858 ], + [ 6.0884665, 46.2307484 ], + [ 6.08851, 46.230804 ], + [ 6.0885636, 46.230873 ], + [ 6.0886742, 46.231006 ], + [ 6.0887652, 46.2311086 ], + [ 6.0887695, 46.2311135 ], + [ 6.0888581, 46.231213 ], + [ 6.0889325, 46.2312978 ], + [ 6.0890187, 46.2313916 ], + [ 6.0891, 46.2314763 ], + [ 6.0891448, 46.231522 ], + [ 6.0892584, 46.2316352 ], + [ 6.0893142, 46.2316893 ], + [ 6.0894373, 46.2318057 ], + [ 6.0894643, 46.2318309 ], + [ 6.0894668, 46.2318332 ], + [ 6.0895769, 46.2320279 ], + [ 6.0894906, 46.232331 ], + [ 6.089714, 46.2332778 ], + [ 6.089815, 46.2334751 ], + [ 6.0902816, 46.2341078 ], + [ 6.0909701, 46.2346339 ], + [ 6.0910113, 46.2346581 ], + [ 6.0911942, 46.2348027 ], + [ 6.0916431, 46.2350718 ], + [ 6.0911752, 46.2358425 ], + [ 6.0911555, 46.2368761 ], + [ 6.0916973, 46.2378391 ], + [ 6.092721, 46.23859 ], + [ 6.0927898, 46.2386241 ], + [ 6.0938908, 46.2390043 ], + [ 6.094222, 46.2390376 ], + [ 6.0941818, 46.2391277 ], + [ 6.0942017, 46.2399766 ], + [ 6.0946008, 46.2407793 ], + [ 6.0953395, 46.2414562 ], + [ 6.0955128, 46.2415716 ], + [ 6.0970018, 46.2405119 ], + [ 6.0990618, 46.2390648 ], + [ 6.1014504, 46.2376466 ], + [ 6.1018123, 46.237879 ], + [ 6.104589, 46.2396623 ], + [ 6.1054739, 46.2402307 ], + [ 6.106853, 46.2411708 ], + [ 6.1088275, 46.2398703 ], + [ 6.1113026, 46.2415555 ], + [ 6.1136151, 46.2431314 ], + [ 6.1164827, 46.2450846 ], + [ 6.1182411, 46.2462822 ], + [ 6.1196291, 46.2472273 ], + [ 6.1207862, 46.2480154 ], + [ 6.1202939, 46.248503 ], + [ 6.1209109999999995, 46.2488307 ], + [ 6.1229667, 46.2502313 ], + [ 6.1235784, 46.2506481 ], + [ 6.1244681, 46.2512542 ], + [ 6.1238428, 46.2518371 ], + [ 6.1243997, 46.2525215 ], + [ 6.1244574, 46.2525925 ], + [ 6.1242787, 46.25264 ], + [ 6.1240898, 46.2526655 ], + [ 6.1240684, 46.2526436 ], + [ 6.1239958, 46.252611 ], + [ 6.123916, 46.2526081 ], + [ 6.123808, 46.2526778 ], + [ 6.1236425, 46.2526939 ], + [ 6.123459, 46.2527183 ], + [ 6.1234377, 46.2528245 ], + [ 6.123343, 46.2529061 ], + [ 6.1231569, 46.252902399999996 ], + [ 6.1230792, 46.2529192 ], + [ 6.1230379, 46.2529916 ], + [ 6.1230822, 46.2530888 ], + [ 6.1230468, 46.2531334 ], + [ 6.122585, 46.2532727 ], + [ 6.1225217, 46.2532974 ], + [ 6.1223108, 46.2533881 ], + [ 6.1222386, 46.2534134 ], + [ 6.1221538, 46.2533991 ], + [ 6.1221088, 46.2534099 ], + [ 6.1220966, 46.2534172 ], + [ 6.1222537, 46.2535268 ], + [ 6.1223131, 46.2535567 ], + [ 6.1228956, 46.2541238 ], + [ 6.1239069, 46.254634 ], + [ 6.1241333, 46.2547133 ], + [ 6.1248661, 46.2549083 ], + [ 6.1255447, 46.2549863 ], + [ 6.1257405, 46.2553239 ], + [ 6.1257416, 46.2553251 ], + [ 6.1257416, 46.2553252 ], + [ 6.1257428, 46.2553266 ], + [ 6.1257712, 46.2553595 ], + [ 6.1258534000000004, 46.2554224 ], + [ 6.1258596, 46.2554316 ], + [ 6.1258396, 46.2554401 ], + [ 6.1258405, 46.2554411 ], + [ 6.125893, 46.2554809 ], + [ 6.1259358, 46.2555442 ], + [ 6.1259557000000004, 46.2555642 ], + [ 6.1259846, 46.2555504 ], + [ 6.1268448, 46.2562029 ], + [ 6.1273762, 46.2563788 ], + [ 6.1273826, 46.2564379 ], + [ 6.1280652, 46.2573779 ], + [ 6.1281058, 46.257414 ], + [ 6.1281703, 46.2574526 ], + [ 6.1282231, 46.2574994 ], + [ 6.1291149, 46.2580747 ], + [ 6.1298766, 46.2583201 ], + [ 6.1302994, 46.2585014 ], + [ 6.1303921, 46.2585283 ], + [ 6.1308545, 46.2586173 ], + [ 6.1306501, 46.2587866 ], + [ 6.1301951, 46.2595704 ], + [ 6.1301118, 46.2604134 ], + [ 6.1304084, 46.2612329 ], + [ 6.1306679, 46.2615197 ], + [ 6.1307278, 46.2617105 ], + [ 6.1315799, 46.2625688 ], + [ 6.1316167, 46.2625937 ], + [ 6.1316429, 46.2626065 ], + [ 6.1317312, 46.2627129 ], + [ 6.1317739, 46.2627467 ], + [ 6.1325791, 46.2631761 ], + [ 6.1327604000000004, 46.2632811 ], + [ 6.132793, 46.2632902 ], + [ 6.1329768, 46.2633882 ], + [ 6.1334909, 46.2634842 ], + [ 6.1338919, 46.2635956 ], + [ 6.1341525, 46.2636077 ], + [ 6.1344421, 46.2636618 ], + [ 6.1347398, 46.2636349 ], + [ 6.1351082, 46.2636519 ], + [ 6.1356985, 46.2635483 ], + [ 6.1359468, 46.2635258 ], + [ 6.1360416, 46.263488 ], + [ 6.1362899, 46.2634444 ], + [ 6.1369879, 46.2631392 ], + [ 6.1371184, 46.2631688 ], + [ 6.137282, 46.2631691 ], + [ 6.1374366, 46.2632296 ], + [ 6.1379132, 46.2632698 ], + [ 6.1382923, 46.2633342 ], + [ 6.1383867, 46.2633294 ], + [ 6.1395523, 46.2637619 ], + [ 6.1410274, 46.2638723 ], + [ 6.1410539, 46.2638671 ], + [ 6.1412838, 46.2646074 ], + [ 6.1418955, 46.2653375 ], + [ 6.1428027, 46.2659008 ], + [ 6.1439164, 46.266242 ], + [ 6.1451277, 46.2663278 ], + [ 6.1451729, 46.2663261 ], + [ 6.1463647, 46.2661476 ], + [ 6.1467797, 46.26598 ], + [ 6.1469493, 46.265943 ], + [ 6.1471269, 46.2658398 ], + [ 6.1474184, 46.2657221 ], + [ 6.1476818, 46.2655174 ], + [ 6.1481118, 46.2652676 ], + [ 6.1488138, 46.2643354 ], + [ 6.1489486, 46.2632878 ], + [ 6.1489403, 46.2632341 ], + [ 6.1489311, 46.2632105 ], + [ 6.1489585, 46.2631351 ], + [ 6.1489612, 46.2630989 ], + [ 6.148832, 46.2622585 ], + [ 6.1483345, 46.261487 ], + [ 6.1475173, 46.2608601 ], + [ 6.1467177, 46.2605417 ], + [ 6.1466831, 46.260387 ], + [ 6.146573, 46.2602615 ], + [ 6.1473554, 46.2606372 ], + [ 6.1488393, 46.2608596 ], + [ 6.1503329, 46.2606712 ], + [ 6.1516088, 46.2601007 ], + [ 6.1524728, 46.2592349 ], + [ 6.1527934, 46.2582057 ], + [ 6.1527199, 46.2579253 ], + [ 6.1533061, 46.2580131 ], + [ 6.1547996, 46.2578247 ], + [ 6.1549808, 46.2577436 ], + [ 6.1556835, 46.2578489 ], + [ 6.157177, 46.2576604 ], + [ 6.1584528, 46.2570898 ], + [ 6.1593167, 46.2562239 ], + [ 6.1596371, 46.2551947 ], + [ 6.1593653, 46.2541587 ], + [ 6.1585427, 46.2532738 ], + [ 6.1572946, 46.2526745 ], + [ 6.1570307, 46.252635 ], + [ 6.1569707, 46.2524063 ], + [ 6.1561482, 46.2515213 ], + [ 6.1556188, 46.2512671 ], + [ 6.1549009, 46.2504946 ], + [ 6.1548202, 46.2504559 ], + [ 6.1545811, 46.2501986 ], + [ 6.153333, 46.2495993 ], + [ 6.1518495, 46.2493769 ], + [ 6.1503562, 46.2495654 ], + [ 6.1490804, 46.2501359 ], + [ 6.1482165, 46.2510017 ], + [ 6.148109, 46.2513468 ], + [ 6.147873, 46.2515832 ], + [ 6.1475524, 46.2526125 ], + [ 6.147824, 46.2536484 ], + [ 6.1481496, 46.2539989 ], + [ 6.1478428, 46.2543063 ], + [ 6.1475222, 46.2553356 ], + [ 6.1476008, 46.2556354 ], + [ 6.1474739, 46.2556514 ], + [ 6.146198, 46.2562219 ], + [ 6.1453339, 46.2570876 ], + [ 6.1450221, 46.2580882 ], + [ 6.1447004, 46.2577618 ], + [ 6.1446699, 46.2577461 ], + [ 6.1448653, 46.2571189 ], + [ 6.1445938, 46.2560829 ], + [ 6.1444211, 46.255897 ], + [ 6.1443224, 46.2555204 ], + [ 6.1441578, 46.2553433 ], + [ 6.1442447, 46.255227 ], + [ 6.1444431999999995, 46.2543933 ], + [ 6.1442602, 46.2535578 ], + [ 6.1437138000000004, 46.2528025 ], + [ 6.1428574, 46.2522015 ], + [ 6.142754, 46.2521487 ], + [ 6.142708, 46.2521338 ], + [ 6.1435572, 46.251283 ], + [ 6.1438779, 46.2502538 ], + [ 6.1436064, 46.2492178 ], + [ 6.1427841, 46.2483327 ], + [ 6.1415363, 46.2477333 ], + [ 6.1400528, 46.2475108 ], + [ 6.1385595, 46.2476991 ], + [ 6.1372837, 46.2482695 ], + [ 6.1364196, 46.2491351 ], + [ 6.136256, 46.2496602 ], + [ 6.1362214, 46.2495526 ], + [ 6.1355955, 46.2488212 ], + [ 6.1348883, 46.2483921 ], + [ 6.1348774, 46.2483835 ], + [ 6.1348702, 46.2483811 ], + [ 6.1346725, 46.2482612 ], + [ 6.1338441, 46.2480168 ], + [ 6.1343244, 46.2473708 ], + [ 6.1344514, 46.2463226 ], + [ 6.1339912, 46.2453204 ], + [ 6.1330137, 46.2445164 ], + [ 6.1330097, 46.2445142 ], + [ 6.1329682, 46.2444799 ], + [ 6.132962, 46.2444764 ], + [ 6.1329557, 46.2444729 ], + [ 6.1329214, 46.2444539 ], + [ 6.1318623, 46.2440356 ], + [ 6.1308406, 46.2438899 ], + [ 6.1315787, 46.2435599 ], + [ 6.1324428, 46.2426942 ], + [ 6.1325457, 46.2423643 ], + [ 6.1330847, 46.2418243 ], + [ 6.1334055, 46.2407951 ], + [ 6.1331343, 46.2397591 ], + [ 6.1323124, 46.2388739 ], + [ 6.1310649, 46.2382744 ], + [ 6.1299075, 46.2381007 ], + [ 6.1299398, 46.2380863 ], + [ 6.1300804, 46.2379453 ], + [ 6.1304481, 46.237899 ], + [ 6.1305608, 46.2380204 ], + [ 6.1318083, 46.2386199 ], + [ 6.1332915, 46.2388426 ], + [ 6.1347846, 46.2386544 ], + [ 6.135753, 46.2382214 ], + [ 6.1364263, 46.2385449 ], + [ 6.1375234, 46.2387095 ], + [ 6.1375419, 46.2387294 ], + [ 6.1375607, 46.2388014 ], + [ 6.1383827, 46.2396865 ], + [ 6.1386498, 46.2398148 ], + [ 6.1386546, 46.2398245 ], + [ 6.1387522, 46.2399528 ], + [ 6.1392227, 46.2403939 ], + [ 6.138445, 46.2404919 ], + [ 6.1372776, 46.2410139 ], + [ 6.1371477, 46.2409944 ], + [ 6.1356546, 46.2411826 ], + [ 6.1356545, 46.2411826 ], + [ 6.1343789, 46.241753 ], + [ 6.1335148, 46.2426186 ], + [ 6.133194, 46.2436478 ], + [ 6.1334652, 46.2446838 ], + [ 6.1342873, 46.245569 ], + [ 6.135535, 46.2461685 ], + [ 6.1370184, 46.246391 ], + [ 6.1385117, 46.2462028 ], + [ 6.1394125, 46.2458 ], + [ 6.1395541, 46.245868 ], + [ 6.1410376, 46.2460906 ], + [ 6.1425308, 46.2459023 ], + [ 6.142643, 46.2458521 ], + [ 6.1430789, 46.2463213 ], + [ 6.1439901, 46.246759 ], + [ 6.1441295, 46.2472907 ], + [ 6.1441669, 46.2473311 ], + [ 6.1442902, 46.2478013 ], + [ 6.1451124, 46.2486864 ], + [ 6.1463602999999996, 46.2492858 ], + [ 6.1478439, 46.2495082 ], + [ 6.1493372, 46.2493198 ], + [ 6.1506129, 46.2487493 ], + [ 6.1511388, 46.2482222 ], + [ 6.1522192, 46.2484 ], + [ 6.1537177, 46.2482325 ], + [ 6.1537185, 46.2482323 ], + [ 6.1538656, 46.2481944 ], + [ 6.1538665, 46.2481942 ], + [ 6.153867, 46.2481939 ], + [ 6.1545578, 46.248099 ], + [ 6.1546327, 46.2480775 ], + [ 6.1556708, 46.2476368 ], + [ 6.1564618, 46.2469951 ], + [ 6.1564928, 46.2469433 ], + [ 6.1565023, 46.2469355 ], + [ 6.1568894, 46.2462801 ], + [ 6.1569282, 46.2462152 ], + [ 6.1569284, 46.2462142 ], + [ 6.1569641, 46.2461538 ], + [ 6.1570548, 46.2453112 ], + [ 6.1567656, 46.2444905 ], + [ 6.1567406, 46.2444492 ], + [ 6.155893, 46.2435769 ], + [ 6.1558733, 46.2435678 ], + [ 6.1558486, 46.2435425 ], + [ 6.1552521, 46.2432683 ], + [ 6.1551954, 46.2431995 ], + [ 6.1546304, 46.2428941 ], + [ 6.1549993, 46.2424752 ], + [ 6.1550488, 46.2423307 ], + [ 6.1552336, 46.2421404 ], + [ 6.1553452, 46.2417633 ], + [ 6.1553612, 46.2417364 ], + [ 6.1553652, 46.2416957 ], + [ 6.1555373, 46.2411143 ], + [ 6.1552549, 46.2400852 ], + [ 6.1551797, 46.2399559 ], + [ 6.1545483, 46.2392277 ], + [ 6.1538456, 46.2388061 ], + [ 6.1541262, 46.237905 ], + [ 6.1538546, 46.236869 ], + [ 6.1530323, 46.2359841 ], + [ 6.1525907, 46.2357719 ], + [ 6.152928, 46.235621 ], + [ 6.1537916, 46.2347552 ], + [ 6.154112, 46.233726 ], + [ 6.1538404, 46.23269 ], + [ 6.1536488, 46.2324837 ], + [ 6.1537676, 46.2323109 ], + [ 6.1539264, 46.2314735 ], + [ 6.1539254, 46.2314474 ], + [ 6.1539246, 46.2314442 ], + [ 6.1539252, 46.2314409 ], + [ 6.1539228, 46.2313833 ], + [ 6.1539228, 46.2313832 ], + [ 6.1539188, 46.2312869 ], + [ 6.153915, 46.2311935 ], + [ 6.153909, 46.2310487 ], + [ 6.1536844, 46.2302189 ], + [ 6.1535443, 46.2300409 ], + [ 6.1535597, 46.2298194 ], + [ 6.1535529, 46.2297766 ], + [ 6.1534458, 46.2295407 ], + [ 6.1532147, 46.2289154 ], + [ 6.1531097, 46.228801 ], + [ 6.1530985, 46.2287764 ], + [ 6.1530508, 46.2287368 ], + [ 6.1525574, 46.2281991 ], + [ 6.1517668, 46.2277483 ], + [ 6.1526121, 46.2272194 ], + [ 6.153221, 46.2264842 ], + [ 6.153471, 46.225654 ], + [ 6.1533374, 46.2248111 ], + [ 6.1533215, 46.2247708 ], + [ 6.1530737, 46.2244264 ], + [ 6.1530762, 46.2244182 ], + [ 6.1528203, 46.2234415 ], + [ 6.1534371, 46.2233637 ], + [ 6.1547121, 46.2227931 ], + [ 6.1555755, 46.2219273 ], + [ 6.1558958, 46.220898 ], + [ 6.1556242, 46.2198621 ], + [ 6.1548022, 46.2189771 ], + [ 6.1535549, 46.2183778 ], + [ 6.1533127, 46.2183415 ], + [ 6.1535097, 46.2177085 ], + [ 6.1538207, 46.2176138 ], + [ 6.1548654, 46.2168634 ], + [ 6.1554219, 46.2158939 ], + [ 6.1554219, 46.2158938 ], + [ 6.1554233, 46.2158884 ], + [ 6.1554248, 46.2158829 ], + [ 6.1555292999999995, 46.2154952 ], + [ 6.1555284, 46.2154398 ], + [ 6.1556211, 46.2150959 ], + [ 6.1556042, 46.2140659 ], + [ 6.1557753, 46.2138944 ], + [ 6.1560955, 46.2128652 ], + [ 6.156012, 46.2125464 ], + [ 6.156069, 46.2124891 ], + [ 6.1563893, 46.2114599 ], + [ 6.1561177, 46.2104239 ], + [ 6.1552959, 46.2095389 ], + [ 6.1552329, 46.2095087 ], + [ 6.1550759, 46.2093396 ], + [ 6.1538288, 46.2087403 ], + [ 6.1533597, 46.2086699 ], + [ 6.1527184, 46.2079794 ], + [ 6.1525033, 46.207876 ], + [ 6.1525182, 46.2078418 ], + [ 6.1525274, 46.2077936 ], + [ 6.1525276, 46.2070879 ], + [ 6.1523194, 46.2065489 ], + [ 6.152356, 46.2065756 ], + [ 6.1523871, 46.2065909 ], + [ 6.1527468, 46.2067042 ], + [ 6.15294, 46.2067715 ], + [ 6.1529559, 46.2067982 ], + [ 6.1537688, 46.2074495 ], + [ 6.1541714, 46.2076155 ], + [ 6.154211, 46.207643 ], + [ 6.1543893, 46.2077282 ], + [ 6.1552146, 46.2080282 ], + [ 6.1552339, 46.2080333 ], + [ 6.1564307, 46.2082054 ], + [ 6.1576453, 46.208111 ], + [ 6.1585966, 46.2078104 ], + [ 6.1587845, 46.2079007 ], + [ 6.1584902, 46.2089001 ], + [ 6.1584539, 46.2098385 ], + [ 6.1588828, 46.2107288 ], + [ 6.1597251, 46.2114632 ], + [ 6.1608788, 46.2119529 ], + [ 6.1616041, 46.2120545 ], + [ 6.1654961, 46.2153677 ], + [ 6.1665958, 46.2160115 ], + [ 6.1679574, 46.2163336 ], + [ 6.1693945, 46.2162899 ], + [ 6.1700343, 46.2160937 ], + [ 6.1701254, 46.2161498 ], + [ 6.1701803, 46.2161742 ], + [ 6.1712963, 46.2165123 ], + [ 6.1720154, 46.2165608 ], + [ 6.172633, 46.2171183 ], + [ 6.173811, 46.2175902 ], + [ 6.1737838, 46.217746 ], + [ 6.1741902, 46.2187592 ], + [ 6.1742097, 46.2187859 ], + [ 6.1749349, 46.2194803 ], + [ 6.1759373, 46.2199816 ], + [ 6.1771158, 46.2202393 ], + [ 6.1780849, 46.2202299 ], + [ 6.1781086, 46.2202318 ], + [ 6.1781202, 46.2202296 ], + [ 6.1783512, 46.2202273 ], + [ 6.1793403, 46.2199898 ], + [ 6.1793518, 46.2199875 ], + [ 6.17981, 46.2199296 ], + [ 6.1810084, 46.2193929 ], + [ 6.1817376, 46.2201774 ], + [ 6.1829852, 46.2207764 ], + [ 6.1844682, 46.2209983 ], + [ 6.1857726, 46.2208332 ], + [ 6.1859844, 46.2208649 ], + [ 6.1874768, 46.220676 ], + [ 6.1887514, 46.220105 ], + [ 6.1894046, 46.2194493 ], + [ 6.1904179, 46.2189954 ], + [ 6.1912806, 46.2181294 ], + [ 6.1913552, 46.2178891 ], + [ 6.1916051, 46.2176382 ], + [ 6.1919246, 46.2166089 ], + [ 6.1916524, 46.215573 ], + [ 6.1908299, 46.2146883 ], + [ 6.1895823, 46.2140894 ], + [ 6.1880995, 46.2138676 ], + [ 6.1866073, 46.2140565 ], + [ 6.1854174, 46.2145895 ], + [ 6.185364, 46.214386 ], + [ 6.1845416, 46.2135012 ], + [ 6.1832941, 46.2129023 ], + [ 6.1818114, 46.2126803 ], + [ 6.1803192, 46.2128691 ], + [ 6.1801608, 46.2129401 ], + [ 6.1799919, 46.212859 ], + [ 6.1786199, 46.2126536 ], + [ 6.1794564, 46.2118141 ], + [ 6.1797761, 46.2107848 ], + [ 6.1795042, 46.2097489 ], + [ 6.1786819, 46.208864 ], + [ 6.1774346, 46.208265 ], + [ 6.175952, 46.208043 ], + [ 6.17446, 46.2082317 ], + [ 6.1735967, 46.2086184 ], + [ 6.1732019, 46.2081935 ], + [ 6.1719546, 46.2075944 ], + [ 6.1704721, 46.2073723 ], + [ 6.1697619, 46.2074621 ], + [ 6.1665246, 46.2060049 ], + [ 6.1665722, 46.2058516 ], + [ 6.1672139, 46.2059621 ], + [ 6.1678632, 46.2058944 ], + [ 6.1685898, 46.2066766 ], + [ 6.169837, 46.2072757 ], + [ 6.1713195, 46.2074979 ], + [ 6.1728116, 46.2073092 ], + [ 6.1740861, 46.2067384 ], + [ 6.174213, 46.206611 ], + [ 6.1743329, 46.2066685 ], + [ 6.1758154, 46.2068906 ], + [ 6.1759838, 46.2068693 ], + [ 6.1764033, 46.2073283 ], + [ 6.1764443, 46.2073822 ], + [ 6.1764353, 46.2073873 ], + [ 6.1764716, 46.207418 ], + [ 6.1764803, 46.2074295 ], + [ 6.1764816, 46.2074307 ], + [ 6.1765001999999996, 46.2074423 ], + [ 6.1765037, 46.2074453 ], + [ 6.1765044, 46.207445 ], + [ 6.1765174, 46.2074531 ], + [ 6.1765356, 46.2074731 ], + [ 6.176537, 46.2074742 ], + [ 6.1766272, 46.2075222 ], + [ 6.1773878, 46.2080006 ], + [ 6.1785043, 46.2083468 ], + [ 6.1797204, 46.2084352 ], + [ 6.1809159, 46.2082568 ], + [ 6.1815834, 46.2079868 ], + [ 6.1817938, 46.2079413 ], + [ 6.1820986, 46.2078261 ], + [ 6.1831541, 46.207242 ], + [ 6.1833889, 46.2069755 ], + [ 6.1834256, 46.2069338 ], + [ 6.1835431, 46.2068595 ], + [ 6.183717, 46.2066029 ], + [ 6.1838583, 46.2064425 ], + [ 6.1838613, 46.2064322 ], + [ 6.1840072, 46.206276 ], + [ 6.184079, 46.2060687 ], + [ 6.1841884, 46.2059074 ], + [ 6.1842015, 46.2057158 ], + [ 6.1843071, 46.2054111 ], + [ 6.18474, 46.2058769 ], + [ 6.1859874, 46.2064758 ], + [ 6.1874699, 46.2066977 ], + [ 6.1889619, 46.2065088 ], + [ 6.1902362, 46.2059378 ], + [ 6.1910987, 46.2050718 ], + [ 6.1914183, 46.2040424 ], + [ 6.1911461, 46.2030065 ], + [ 6.1910584, 46.2029121 ], + [ 6.1916805, 46.202912 ], + [ 6.1928428, 46.202648 ], + [ 6.1938293, 46.2021463 ], + [ 6.1938793, 46.2021112 ], + [ 6.1940159, 46.2019793 ], + [ 6.1941638, 46.2021384 ], + [ 6.1954112, 46.2027372 ], + [ 6.1967955, 46.2029443 ], + [ 6.1963017, 46.2031656 ], + [ 6.1954393, 46.2040317 ], + [ 6.1951199, 46.205061 ], + [ 6.1953921, 46.2060969 ], + [ 6.1962146, 46.2069816 ], + [ 6.1974621, 46.2075804 ], + [ 6.1989447, 46.2078022 ], + [ 6.1999708, 46.2076721 ], + [ 6.2001662, 46.2079556 ], + [ 6.2010049, 46.2085675 ], + [ 6.2012745, 46.2087106 ], + [ 6.2022539, 46.2090447 ], + [ 6.2022584, 46.2090693 ], + [ 6.2026354, 46.2096253 ], + [ 6.2026388, 46.2096323 ], + [ 6.2026418, 46.2096347 ], + [ 6.2027765, 46.2098334 ], + [ 6.2036094, 46.2104488 ], + [ 6.203635, 46.2104626 ], + [ 6.2038132, 46.2105243 ], + [ 6.2042806, 46.2107759 ], + [ 6.2053468, 46.2111826 ], + [ 6.2065418, 46.2113406 ], + [ 6.2077486, 46.2112344 ], + [ 6.2082117, 46.2110829 ], + [ 6.2085445, 46.2110992 ], + [ 6.2088781, 46.2110959 ], + [ 6.2092101, 46.2110729 ], + [ 6.2095381, 46.2110306 ], + [ 6.2097172, 46.2111944 ], + [ 6.2110268, 46.2117255 ], + [ 6.2118009, 46.211799 ], + [ 6.2118292, 46.2118083 ], + [ 6.2130371, 46.2119136 ], + [ 6.2142052, 46.211758 ], + [ 6.2147545, 46.2118829 ], + [ 6.2156697, 46.2118351 ], + [ 6.2165158, 46.2118603 ], + [ 6.2176878, 46.211634 ], + [ 6.2179353, 46.21152 ], + [ 6.2179697, 46.2115134 ], + [ 6.2181043, 46.2114516 ], + [ 6.2181866, 46.2114263 ], + [ 6.2182681, 46.2113998 ], + [ 6.2183487, 46.2113721 ], + [ 6.2175015, 46.212073 ], + [ 6.2170453, 46.2130771 ], + [ 6.2170968, 46.2134865 ], + [ 6.2167191, 46.2138659 ], + [ 6.2156256, 46.2133414 ], + [ 6.2141428, 46.2131199 ], + [ 6.2126507, 46.2133092 ], + [ 6.2113765, 46.2138804 ], + [ 6.2105141, 46.2147466 ], + [ 6.2101949, 46.215776 ], + [ 6.210445, 46.2167264 ], + [ 6.2096983, 46.2163682 ], + [ 6.2082154, 46.2161466 ], + [ 6.2067232, 46.2163357 ], + [ 6.2054488, 46.2169069 ], + [ 6.2052781, 46.2170784 ], + [ 6.2045960000000004, 46.2163451 ], + [ 6.2033482, 46.2157463 ], + [ 6.2018654, 46.2155247 ], + [ 6.2006968, 46.2156727 ], + [ 6.2005641, 46.2155217 ], + [ 6.2005511, 46.2155112 ], + [ 6.2005345, 46.215502 ], + [ 6.2004827, 46.2154598 ], + [ 6.2004776, 46.2154628 ], + [ 6.2004465, 46.2154263 ], + [ 6.2004338, 46.2154163 ], + [ 6.2003631, 46.2153758 ], + [ 6.200331, 46.2153496 ], + [ 6.2000063, 46.2151712 ], + [ 6.1994876, 46.2148738 ], + [ 6.1994429, 46.2148616 ], + [ 6.1991447, 46.2146978 ], + [ 6.1976898, 46.2144097 ], + [ 6.1961867999999996, 46.214529 ], + [ 6.1958262, 46.2146675 ], + [ 6.1957342, 46.2146822 ], + [ 6.1951534, 46.2149259 ], + [ 6.194863, 46.2150375 ], + [ 6.1948012, 46.2150737 ], + [ 6.1946844, 46.2151227 ], + [ 6.1946741, 46.2151288 ], + [ 6.1946615, 46.2151398 ], + [ 6.1946498, 46.2151466 ], + [ 6.1946323, 46.2151534 ], + [ 6.1946219, 46.2151595 ], + [ 6.1938274, 46.215799 ], + [ 6.1937408, 46.2159421 ], + [ 6.1937304, 46.2159511 ], + [ 6.1937197, 46.2159769 ], + [ 6.1936257, 46.2161325 ], + [ 6.1933775, 46.2163546 ], + [ 6.1929774, 46.2173697 ], + [ 6.193167, 46.2184138 ], + [ 6.1939175, 46.2193282 ], + [ 6.1940042, 46.2193976 ], + [ 6.1952017999999995, 46.2200433 ], + [ 6.1964528, 46.2202816 ], + [ 6.1965389, 46.2206092 ], + [ 6.1963828, 46.2207319 ], + [ 6.1961769, 46.2208382 ], + [ 6.1960271, 46.2210114 ], + [ 6.1958842, 46.2211237 ], + [ 6.1958225, 46.221248 ], + [ 6.1953999, 46.2217366 ], + [ 6.1951746, 46.2227728 ], + [ 6.1951767, 46.2228049 ], + [ 6.1955399, 46.223827 ], + [ 6.1961421, 46.2243949 ], + [ 6.1955987, 46.2243137 ], + [ 6.1941062, 46.2245027 ], + [ 6.1928316, 46.2250737 ], + [ 6.1919687, 46.2259398 ], + [ 6.1916491, 46.2269691 ], + [ 6.1919214, 46.228005 ], + [ 6.1927441, 46.2288897 ], + [ 6.1939921, 46.2294885 ], + [ 6.1954753, 46.2297103 ], + [ 6.1969679, 46.2295213 ], + [ 6.1982426, 46.2289503 ], + [ 6.1991054, 46.2280841 ], + [ 6.1994249, 46.2270547 ], + [ 6.1991525, 46.2260189 ], + [ 6.1984822, 46.2252982 ], + [ 6.1992366, 46.2253779 ], + [ 6.1993023, 46.2253758 ], + [ 6.2004957, 46.2252057 ], + [ 6.2009646, 46.2250205 ], + [ 6.2012135, 46.2252881 ], + [ 6.2024615, 46.2258869 ], + [ 6.2039447, 46.2261085 ], + [ 6.2054371, 46.2259194 ], + [ 6.2067117, 46.2253483 ], + [ 6.2075743, 46.224482 ], + [ 6.2078936, 46.2234527 ], + [ 6.2076211, 46.2224168 ], + [ 6.2074058, 46.2221854 ], + [ 6.2073591, 46.2220081 ], + [ 6.2067384, 46.2213408 ], + [ 6.2080932, 46.2215433 ], + [ 6.2095856, 46.2213541 ], + [ 6.21086, 46.2207829 ], + [ 6.2117224, 46.2199166 ], + [ 6.2120416, 46.2188872 ], + [ 6.2117915, 46.2179368 ], + [ 6.2125383, 46.2182951 ], + [ 6.2140213, 46.2185166 ], + [ 6.2155135, 46.2183273 ], + [ 6.2167878, 46.2177561 ], + [ 6.217264, 46.2172776 ], + [ 6.2183575, 46.2178021 ], + [ 6.2198405, 46.2180236 ], + [ 6.2209601, 46.2178815 ], + [ 6.2220568, 46.2184733 ], + [ 6.2235192999999995, 46.2187522 ], + [ 6.2235904, 46.2187558 ], + [ 6.2248026, 46.2186838 ], + [ 6.2248424, 46.2186722 ], + [ 6.2252794, 46.2188252 ], + [ 6.2267917, 46.2189036 ], + [ 6.2282322, 46.2185744 ], + [ 6.2287454, 46.2183731 ], + [ 6.2296982, 46.2178476 ], + [ 6.2303701, 46.2171433 ], + [ 6.2306955, 46.2163293 ], + [ 6.2306424, 46.2154854 ], + [ 6.2303686, 46.2149774 ], + [ 6.230485, 46.2147496 ], + [ 6.2305162, 46.2146201 ], + [ 6.2305052, 46.2136884 ], + [ 6.2303931, 46.2134784 ], + [ 6.2307782, 46.213663 ], + [ 6.2322611, 46.2138844 ], + [ 6.2337532, 46.2136949 ], + [ 6.2350272, 46.2131234 ], + [ 6.235201, 46.2129487 ], + [ 6.2352262, 46.2129374 ], + [ 6.2360881, 46.2120709 ], + [ 6.2360908, 46.2120621 ], + [ 6.2361391, 46.2120136 ], + [ 6.2363483, 46.2113377 ], + [ 6.2368171, 46.2108664 ], + [ 6.2371358, 46.209837 ], + [ 6.2368628, 46.2088012 ], + [ 6.2360396, 46.2079168 ], + [ 6.2350912, 46.2074621 ], + [ 6.2351568, 46.2072503 ], + [ 6.2349083, 46.2063075 ], + [ 6.2348371, 46.2063103 ], + [ 6.2346937, 46.2063613 ], + [ 6.2345611, 46.2063838 ], + [ 6.2344044, 46.2063827 ], + [ 6.234239, 46.206392 ], + [ 6.2340143, 46.2064233 ], + [ 6.2338885, 46.2063856 ], + [ 6.2337929, 46.2063396 ], + [ 6.233668, 46.2062458 ], + [ 6.233601, 46.2061815 ], + [ 6.2335541, 46.2061126 ], + [ 6.2334785, 46.2059883 ], + [ 6.2334379, 46.2059533 ], + [ 6.23339, 46.2059291 ], + [ 6.2333439, 46.2059247 ], + [ 6.2332925, 46.20594 ], + [ 6.2332013, 46.2059748 ], + [ 6.2331042, 46.2060009 ], + [ 6.2329764, 46.2060198 ], + [ 6.2328466, 46.2060274 ], + [ 6.2327188, 46.2060132 ], + [ 6.2326164, 46.2059605 ], + [ 6.2325759, 46.2059033 ], + [ 6.2325219, 46.2058408 ], + [ 6.2324000999999996, 46.2057008 ], + [ 6.2322206, 46.2055702 ], + [ 6.2321745, 46.2055272 ], + [ 6.2321339, 46.2054815 ], + [ 6.2320439, 46.2053761 ], + [ 6.2317966, 46.2051567 ], + [ 6.2317624, 46.2051032 ], + [ 6.2317481, 46.2050016 ], + [ 6.2317197, 46.2049238 ], + [ 6.231636, 46.2048914 ], + [ 6.2314066, 46.2048483 ], + [ 6.2313209, 46.2048102 ], + [ 6.231252, 46.2047572 ], + [ 6.2311814, 46.2046828 ], + [ 6.2311362, 46.2046289 ], + [ 6.231115, 46.2045967 ], + [ 6.231081, 46.2045421 ], + [ 6.2298384, 46.2046999 ], + [ 6.2285645, 46.2052713 ], + [ 6.2277026, 46.2061377 ], + [ 6.2273838, 46.2071671 ], + [ 6.2276565999999995, 46.2082029 ], + [ 6.2284796, 46.2090874 ], + [ 6.228839, 46.2092597 ], + [ 6.22862, 46.2099667 ], + [ 6.2287022, 46.2102789 ], + [ 6.2284342, 46.2111444 ], + [ 6.2286288, 46.2118831 ], + [ 6.2279677, 46.2116205 ], + [ 6.2266294, 46.2114623 ], + [ 6.2262229, 46.2115143 ], + [ 6.2260099, 46.2113648 ], + [ 6.2259544, 46.2113365 ], + [ 6.2259142, 46.2113163 ], + [ 6.2256398, 46.2111912 ], + [ 6.2253519, 46.2110818 ], + [ 6.2250524, 46.2109886 ], + [ 6.2247431, 46.2109122 ], + [ 6.2244261, 46.2108532 ], + [ 6.2242277, 46.2107863 ], + [ 6.2241271, 46.2107769 ], + [ 6.22408, 46.210763299999996 ], + [ 6.2240201, 46.2107532 ], + [ 6.2240155, 46.2107665 ], + [ 6.2237083, 46.2107377 ], + [ 6.2234443, 46.2106812 ], + [ 6.2232418, 46.2106941 ], + [ 6.2230084, 46.2106722 ], + [ 6.2229469, 46.2106733 ], + [ 6.2229483, 46.2107128 ], + [ 6.2220454, 46.2107704 ], + [ 6.2219713, 46.2107472 ], + [ 6.2207617, 46.2106548 ], + [ 6.2195702, 46.2108266 ], + [ 6.2191694, 46.2109856 ], + [ 6.219428, 46.2108132 ], + [ 6.2196632, 46.2106255 ], + [ 6.2198733, 46.2104239 ], + [ 6.2200566, 46.210210000000004 ], + [ 6.2202115, 46.2099856 ], + [ 6.2203369, 46.2097525 ], + [ 6.2204317, 46.2095125 ], + [ 6.2204951, 46.2092676 ], + [ 6.2205268, 46.2090197 ], + [ 6.2205271, 46.2090135 ], + [ 6.2205305, 46.2088943 ], + [ 6.2205265, 46.2087751 ], + [ 6.2205152, 46.2086561 ], + [ 6.2209001, 46.208224 ], + [ 6.2211889, 46.2074037 ], + [ 6.2210984, 46.2065615 ], + [ 6.2206374, 46.20578 ], + [ 6.2198511, 46.2051357 ], + [ 6.2193089, 46.2048117 ], + [ 6.2179886, 46.2042936 ], + [ 6.2164833999999995, 46.2041657 ], + [ 6.2150221, 46.2044475 ], + [ 6.2141861, 46.2049014 ], + [ 6.2139058, 46.2047943 ], + [ 6.2147449, 46.204418 ], + [ 6.2147542, 46.2044088 ], + [ 6.2147574, 46.2044073 ], + [ 6.2156195, 46.203541 ], + [ 6.2159386, 46.2025116 ], + [ 6.215666, 46.2014758 ], + [ 6.2148432, 46.2005913 ], + [ 6.2135957, 46.1999927 ], + [ 6.2121132, 46.1997711 ], + [ 6.2109535, 46.1999182 ], + [ 6.2110421, 46.1998785 ], + [ 6.2111218, 46.1998801 ], + [ 6.2113395, 46.1998549 ], + [ 6.2116663, 46.1997717 ], + [ 6.2118049, 46.1997556 ], + [ 6.2119438, 46.1997202 ], + [ 6.2119485, 46.1997361 ], + [ 6.2119496, 46.1997359 ], + [ 6.2124494, 46.1995914 ], + [ 6.2131558, 46.1994115 ], + [ 6.2132307, 46.1993655 ], + [ 6.2133159, 46.1993408 ], + [ 6.213712, 46.19907 ], + [ 6.2142337, 46.1987497 ], + [ 6.2142883, 46.1986759 ], + [ 6.2143704, 46.1986197 ], + [ 6.2145934, 46.1982633 ], + [ 6.214891, 46.1978609 ], + [ 6.2149051, 46.1977651 ], + [ 6.2149602, 46.1976771 ], + [ 6.214975, 46.1972913 ], + [ 6.2150376, 46.196867 ], + [ 6.2150374, 46.1968661 ], + [ 6.2149912, 46.1968688 ], + [ 6.2149996, 46.1966497 ], + [ 6.2149638, 46.1965002 ], + [ 6.2148362, 46.196236 ], + [ 6.2148207, 46.1961721 ], + [ 6.2147777, 46.1960835 ], + [ 6.214795, 46.1960811 ], + [ 6.2147948, 46.1960803 ], + [ 6.2147722, 46.1960423 ], + [ 6.214767, 46.1954968 ], + [ 6.2147598, 46.1954666 ], + [ 6.2147082, 46.1952499 ], + [ 6.2141744, 46.194265 ], + [ 6.2137616, 46.1939587 ], + [ 6.2137824, 46.1940029 ], + [ 6.2138326, 46.1941027 ], + [ 6.2138225, 46.1941316 ], + [ 6.2137751, 46.1941739 ], + [ 6.2137418, 46.1941816 ], + [ 6.2137447, 46.1941904 ], + [ 6.213673, 46.1942156 ], + [ 6.2136027, 46.1942347 ], + [ 6.2135273, 46.1942419 ], + [ 6.2134873, 46.1942492 ], + [ 6.2134284, 46.1942492 ], + [ 6.2133119, 46.1942284 ], + [ 6.2132052, 46.1941701 ], + [ 6.2131093, 46.1941629 ], + [ 6.2130588, 46.1941809 ], + [ 6.2129515, 46.1942877 ], + [ 6.212865, 46.194313 ], + [ 6.2128031, 46.1943189 ], + [ 6.2127282, 46.1942981 ], + [ 6.2126792, 46.1942635 ], + [ 6.2126636, 46.1942129 ], + [ 6.2127089, 46.1941756 ], + [ 6.2127729, 46.1940902 ], + [ 6.212816, 46.1940169 ], + [ 6.2127998, 46.1940121 ], + [ 6.2127867, 46.193969 ], + [ 6.2127874, 46.1939122 ], + [ 6.2127793, 46.1938905 ], + [ 6.2127672, 46.193877 ], + [ 6.2127505, 46.1938709 ], + [ 6.2126859, 46.1938637 ], + [ 6.2125936, 46.1938462 ], + [ 6.2125825, 46.1938421 ], + [ 6.2125386, 46.193807 ], + [ 6.2124709, 46.1937433 ], + [ 6.2123069, 46.1936154 ], + [ 6.2122068, 46.193495 ], + [ 6.21211, 46.1933675 ], + [ 6.2120921, 46.1933469 ], + [ 6.2120476, 46.193313 ], + [ 6.211995, 46.193298 ], + [ 6.2119368999999995, 46.1932872 ], + [ 6.2118757, 46.1932787 ], + [ 6.2117865, 46.1932702 ], + [ 6.2117506, 46.1932639 ], + [ 6.2117203, 46.1932563 ], + [ 6.2116748, 46.1932427 ], + [ 6.211624, 46.1932093 ], + [ 6.211583, 46.1931705 ], + [ 6.2115565, 46.1931332 ], + [ 6.2115282, 46.1930768 ], + [ 6.2115221, 46.1930517 ], + [ 6.2115359, 46.1930261 ], + [ 6.2115581, 46.1930072 ], + [ 6.2115753, 46.1929989 ], + [ 6.2110755, 46.192889 ], + [ 6.2098596, 46.1928953 ], + [ 6.209537, 46.1929326 ], + [ 6.208825, 46.1930974 ], + [ 6.2083908, 46.1926303 ], + [ 6.2082426, 46.1925533 ], + [ 6.2081684, 46.1925132 ], + [ 6.2081355, 46.1924772 ], + [ 6.2078225, 46.1924094 ], + [ 6.2077016, 46.1924185 ], + [ 6.207489, 46.192448 ], + [ 6.2073436, 46.1924305 ], + [ 6.2071811, 46.19239 ], + [ 6.2071148, 46.1923769 ], + [ 6.207013, 46.1923582 ], + [ 6.2069843, 46.1923489 ], + [ 6.2069793, 46.1923485 ], + [ 6.2069659999999995, 46.1923429 ], + [ 6.2069302, 46.1923253 ], + [ 6.2069032, 46.1923057 ], + [ 6.20689, 46.1922835 ], + [ 6.2068685, 46.192213 ], + [ 6.2068336, 46.1921839 ], + [ 6.2068223, 46.1921853 ], + [ 6.206814, 46.1921812 ], + [ 6.2067783, 46.1921552 ], + [ 6.2062729, 46.1920376 ], + [ 6.2062716, 46.1920446 ], + [ 6.2062337, 46.1920221 ], + [ 6.2062133, 46.1919901 ], + [ 6.2062051, 46.1919787 ], + [ 6.2061986, 46.1919626 ], + [ 6.2061798, 46.1919358 ], + [ 6.2061525, 46.1919016 ], + [ 6.2060932, 46.1918552 ], + [ 6.205994, 46.1917843 ], + [ 6.2059659, 46.1917652 ], + [ 6.2059491, 46.1917517 ], + [ 6.2059349, 46.191737 ], + [ 6.2058958, 46.1916858 ], + [ 6.2058898, 46.1916674 ], + [ 6.2058804, 46.1916481 ], + [ 6.2058615, 46.1916162 ], + [ 6.2058462, 46.191599 ], + [ 6.2058287, 46.1915876 ], + [ 6.205791, 46.1915794 ], + [ 6.2057708, 46.1915783 ], + [ 6.2057164, 46.191597 ], + [ 6.2056879, 46.1916076 ], + [ 6.2056344, 46.191631 ], + [ 6.2056371, 46.1916327 ], + [ 6.2056049, 46.1916387 ], + [ 6.205586, 46.191644 ], + [ 6.2055534, 46.1916489 ], + [ 6.2055179, 46.191658 ], + [ 6.2054805, 46.1916764 ], + [ 6.2054618, 46.1916843 ], + [ 6.2053933, 46.1917202 ], + [ 6.2053741, 46.1917269 ], + [ 6.2052661, 46.191769 ], + [ 6.2051904, 46.1917627 ], + [ 6.2050863, 46.1915965 ], + [ 6.205035, 46.1915274 ], + [ 6.2050479, 46.1914671 ], + [ 6.2051197, 46.1914041 ], + [ 6.2051874, 46.1913809 ], + [ 6.2052621, 46.191359 ], + [ 6.2053186, 46.1913049 ], + [ 6.2052941, 46.1912845 ], + [ 6.2051661, 46.1912024 ], + [ 6.20512, 46.191152 ], + [ 6.2051325, 46.191122 ], + [ 6.2051579, 46.1910815 ], + [ 6.2052407, 46.1909158 ], + [ 6.2052192, 46.1908638 ], + [ 6.2051401, 46.1908408 ], + [ 6.2050633, 46.1908731 ], + [ 6.2050111, 46.1908965 ], + [ 6.2049378, 46.1909141 ], + [ 6.2049, 46.1908994 ], + [ 6.204838, 46.1908746 ], + [ 6.2047904, 46.1908545 ], + [ 6.2045593, 46.1907118 ], + [ 6.2045626, 46.1906734 ], + [ 6.2047112, 46.1905425 ], + [ 6.2047682, 46.190468 ], + [ 6.2047827, 46.1903755 ], + [ 6.2047387, 46.1903059 ], + [ 6.2047986, 46.1901205 ], + [ 6.2049004, 46.1898824 ], + [ 6.2048815, 46.1897907 ], + [ 6.2046874, 46.1896802 ], + [ 6.2046151, 46.1896684 ], + [ 6.2043579, 46.1896932 ], + [ 6.2042999, 46.1896523 ], + [ 6.2042376, 46.1895127 ], + [ 6.2040956, 46.1894487 ], + [ 6.2038112, 46.1893564 ], + [ 6.2038263, 46.1892671 ], + [ 6.2038799000000004, 46.1892385 ], + [ 6.2039483, 46.1891168 ], + [ 6.2039074, 46.1890665 ], + [ 6.203768, 46.1890495 ], + [ 6.2030438, 46.188961 ], + [ 6.2027217, 46.1890893 ], + [ 6.2021666, 46.188409300000004 ], + [ 6.2017506000000004, 46.1878997 ], + [ 6.2019703, 46.1877257 ], + [ 6.2020159, 46.1876897 ], + [ 6.2018137, 46.1876099 ], + [ 6.2018098, 46.1873014 ], + [ 6.2017731, 46.1872014 ], + [ 6.2017165, 46.1871145 ], + [ 6.2016875, 46.1869927 ], + [ 6.2016446, 46.1868627 ], + [ 6.2016362, 46.1867925 ], + [ 6.201624, 46.186732 ], + [ 6.2015774, 46.1866958 ], + [ 6.2014752, 46.1866771 ], + [ 6.2013865, 46.186668 ], + [ 6.2013096, 46.1866733 ], + [ 6.2011786, 46.1866784 ], + [ 6.2010529, 46.1866952 ], + [ 6.200979, 46.1866894 ], + [ 6.200895, 46.1866764 ], + [ 6.2007878, 46.1866235 ], + [ 6.2007217, 46.1865505 ], + [ 6.2006172, 46.1864475 ], + [ 6.2005081, 46.1863564 ], + [ 6.2003863, 46.1862755 ], + [ 6.200291, 46.186234 ], + [ 6.2002564, 46.1861774 ], + [ 6.2002517, 46.1860981 ], + [ 6.2002233, 46.186037 ], + [ 6.2001616, 46.1859931 ], + [ 6.1999789, 46.1859459 ], + [ 6.1998347, 46.1859142 ], + [ 6.1997494, 46.1858776 ], + [ 6.1996999, 46.1858054 ], + [ 6.1995982, 46.1857655 ], + [ 6.1994487, 46.1857148 ], + [ 6.1993311, 46.185656 ], + [ 6.1992001, 46.1855844 ], + [ 6.1990374, 46.1854822 ], + [ 6.198998, 46.1854429 ], + [ 6.1989735, 46.1853953 ], + [ 6.1989069, 46.1853483 ], + [ 6.198737, 46.185255 ], + [ 6.1986877, 46.1851676 ], + [ 6.1986804, 46.1850936 ], + [ 6.1987151, 46.1850327 ], + [ 6.1987615, 46.1849976 ], + [ 6.1989247, 46.1849717 ], + [ 6.1989909, 46.1849199 ], + [ 6.1990177, 46.1848827 ], + [ 6.1990467, 46.184831 ], + [ 6.1990441, 46.1847843 ], + [ 6.1990164, 46.1847485 ], + [ 6.1988049, 46.184577 ], + [ 6.1987871, 46.184533 ], + [ 6.1987861, 46.1844917 ], + [ 6.198716, 46.1843958 ], + [ 6.198615, 46.1843171 ], + [ 6.1985083, 46.1842467 ], + [ 6.1984553, 46.1842043 ], + [ 6.1982819, 46.1839907 ], + [ 6.1981857, 46.1837877 ], + [ 6.1981165, 46.183602 ], + [ 6.1980176, 46.1835108 ], + [ 6.1980159, 46.1835097 ] + ], + [ + [ 6.1106265, 46.1656109 ], + [ 6.1106159, 46.165645 ], + [ 6.1105966, 46.1656243 ], + [ 6.1106265, 46.1656109 ] + ], + [ + [ 6.1057098, 46.1819971 ], + [ 6.1063944, 46.1823266 ], + [ 6.107876, 46.1825496 ], + [ 6.1093676, 46.1823617 ], + [ 6.1106421, 46.1817916 ], + [ 6.1115056, 46.1809262 ], + [ 6.1118264, 46.179897 ], + [ 6.1115559, 46.178861 ], + [ 6.1107353, 46.1779757 ], + [ 6.1094894, 46.1773759 ], + [ 6.1080079, 46.177153 ], + [ 6.1067869, 46.1773068 ], + [ 6.1061024, 46.1769772 ], + [ 6.1060168, 46.1769644 ], + [ 6.1056025, 46.1764088 ], + [ 6.105311, 46.176209 ], + [ 6.1057519, 46.1760117 ], + [ 6.106291, 46.1754714 ], + [ 6.1064583, 46.1755894 ], + [ 6.1070688, 46.1758775 ], + [ 6.1081687, 46.1762369 ], + [ 6.1089723, 46.1763073 ], + [ 6.1089821, 46.1763449 ], + [ 6.1098028, 46.1772302 ], + [ 6.1110487, 46.1778299 ], + [ 6.1125301, 46.1780528 ], + [ 6.113158, 46.1779737 ], + [ 6.1134225, 46.1789865 ], + [ 6.1137191, 46.1793065 ], + [ 6.1136902, 46.1794887 ], + [ 6.1139378, 46.1803165 ], + [ 6.1139425, 46.1803251 ], + [ 6.1139779, 46.1803899 ], + [ 6.1140214, 46.1804697 ], + [ 6.1140285, 46.1804776 ], + [ 6.114035, 46.1804897 ], + [ 6.1142386, 46.1807171 ], + [ 6.1141721, 46.1809302 ], + [ 6.114243, 46.1812015 ], + [ 6.1137547, 46.181263 ], + [ 6.1124802, 46.1818331 ], + [ 6.1121614, 46.1821527 ], + [ 6.1121272, 46.1821603 ], + [ 6.111748, 46.1823524 ], + [ 6.1114667, 46.1824554 ], + [ 6.1113386, 46.1825598 ], + [ 6.1111343, 46.1826632 ], + [ 6.1107193, 46.1830644 ], + [ 6.1105153, 46.1832306 ], + [ 6.1105129, 46.1832336 ], + [ 6.1105352, 46.1832424 ], + [ 6.1104172, 46.1833564 ], + [ 6.1104058, 46.1833722 ], + [ 6.1096366, 46.1831898 ], + [ 6.1084206, 46.1831773 ], + [ 6.108205, 46.1832235 ], + [ 6.1069817, 46.1826347 ], + [ 6.1065712, 46.1825729 ], + [ 6.1064258, 46.1824161 ], + [ 6.1055875, 46.1820125 ], + [ 6.1057098, 46.1819971 ] + ], + [ + [ 6.1892856, 46.1903091 ], + [ 6.1895001, 46.19054 ], + [ 6.1893268, 46.190514 ], + [ 6.1891726, 46.1905335 ], + [ 6.189284, 46.1903311 ], + [ 6.1892856, 46.1903091 ] + ], + [ + [ 6.1735906, 46.1913719 ], + [ 6.174347, 46.1914509 ], + [ 6.1743665, 46.1914476 ], + [ 6.1743801, 46.1914489 ], + [ 6.1744263, 46.1914408 ], + [ 6.1746831, 46.1917276 ], + [ 6.1749543, 46.1918626 ], + [ 6.1749986, 46.1921959 ], + [ 6.1750104, 46.1927707 ], + [ 6.1750457, 46.1928854 ], + [ 6.1750708, 46.1929261 ], + [ 6.1748017, 46.1931596 ], + [ 6.174716, 46.1933173 ], + [ 6.1746699, 46.1932391 ], + [ 6.1746527, 46.1931322 ], + [ 6.1741956, 46.1924341 ], + [ 6.1741825, 46.1924119 ], + [ 6.1741778, 46.192407 ], + [ 6.1741474, 46.1923605 ], + [ 6.1740907, 46.192301 ], + [ 6.1737229, 46.1920223 ], + [ 6.1735906, 46.1913719 ] + ], + [ + [ 6.0965158, 46.1913551 ], + [ 6.0960946, 46.1909634 ], + [ 6.0959727, 46.1909125 ], + [ 6.0961787, 46.1907047 ], + [ 6.096336, 46.1905708 ], + [ 6.0963225, 46.190614 ], + [ 6.0965158, 46.1913551 ] + ], + [ + [ 6.1624884, 46.1925362 ], + [ 6.1620771, 46.1923386 ], + [ 6.1616638, 46.1922766 ], + [ 6.1621816, 46.191757 ], + [ 6.1621908, 46.1917272 ], + [ 6.1623014, 46.1923111 ], + [ 6.1624884, 46.1925362 ] + ], + [ + [ 6.1840666, 46.1928764 ], + [ 6.1841098, 46.1928728 ], + [ 6.1841587, 46.1928812 ], + [ 6.1848307, 46.1928126 ], + [ 6.1855076, 46.192756 ], + [ 6.1853793, 46.1931693 ], + [ 6.1855562, 46.193843 ], + [ 6.1850676, 46.194062 ], + [ 6.1836762, 46.1938537 ], + [ 6.1828318, 46.1939606 ], + [ 6.1833431, 46.1933778 ], + [ 6.1835477, 46.192779 ], + [ 6.1840666, 46.1928764 ] + ], + [ + [ 6.0981599, 46.1947098 ], + [ 6.0980376, 46.1946198 ], + [ 6.0980172, 46.1945898 ], + [ 6.0974421, 46.1941665 ], + [ 6.0974927, 46.1940342 ], + [ 6.0973333, 46.1932086 ], + [ 6.0974003, 46.1928375 ], + [ 6.0971986, 46.1923038 ], + [ 6.0974134, 46.1925355 ], + [ 6.0975185, 46.1925861 ], + [ 6.0973581, 46.1931003 ], + [ 6.0976284, 46.1941364 ], + [ 6.0981599, 46.1947098 ] + ], + [ + [ 6.1744003, 46.1950357 ], + [ 6.1747108, 46.1957159 ], + [ 6.1743617, 46.195811 ], + [ 6.1738385, 46.1956693 ], + [ 6.1741449, 46.1954583 ], + [ 6.1744003, 46.1950357 ] + ], + [ + [ 6.0997612, 46.1956316 ], + [ 6.0995341, 46.1959935 ], + [ 6.0994599, 46.196951 ], + [ 6.099856, 46.1978294 ], + [ 6.0991174, 46.1979224 ], + [ 6.0993024, 46.1973616 ], + [ 6.0993114, 46.1971477 ], + [ 6.099323, 46.1968702 ], + [ 6.0993312, 46.1966753 ], + [ 6.0991759, 46.1958376 ], + [ 6.0987028, 46.1951439 ], + [ 6.0996952, 46.1956216 ], + [ 6.0997612, 46.1956316 ] + ], + [ + [ 6.204832, 46.199253 ], + [ 6.2048719, 46.1991164 ], + [ 6.2048341, 46.1989807 ], + [ 6.2048359, 46.1987428 ], + [ 6.2052789, 46.1992193 ], + [ 6.2059511, 46.1995419 ], + [ 6.2060136, 46.1996091 ], + [ 6.2072611, 46.2002078 ], + [ 6.2087435, 46.2004294 ], + [ 6.2099033, 46.2002824 ], + [ 6.2093476, 46.2005315 ], + [ 6.2093384, 46.2005408 ], + [ 6.2093351, 46.2005422 ], + [ 6.2085445, 46.2013365 ], + [ 6.2073109, 46.2007269 ], + [ 6.2058342, 46.2004909 ], + [ 6.2057517, 46.2004892 ], + [ 6.2048483, 46.2005695 ], + [ 6.2048, 46.2005549 ], + [ 6.2041835, 46.2005461 ], + [ 6.2045718, 46.2001445 ], + [ 6.2046799, 46.1997741 ], + [ 6.2048305, 46.199458 ], + [ 6.204832, 46.199253 ] + ], + [ + [ 6.1176429, 46.2006177 ], + [ 6.1176188, 46.200548 ], + [ 6.1176163, 46.2005439 ], + [ 6.1176021, 46.2005479 ], + [ 6.1174312, 46.2002062 ], + [ 6.1174105, 46.2001813 ], + [ 6.117, 46.199845 ], + [ 6.1178668, 46.1997358 ], + [ 6.1191416, 46.1991657 ], + [ 6.119304, 46.199002899999996 ], + [ 6.1193488, 46.1990064 ], + [ 6.1194266, 46.199002 ], + [ 6.1206116999999995, 46.1988006 ], + [ 6.1207414, 46.1987447 ], + [ 6.1207495, 46.1987433 ], + [ 6.1209163, 46.198671 ], + [ 6.1209843, 46.1986573 ], + [ 6.121112, 46.1985862 ], + [ 6.1215721, 46.1983868 ], + [ 6.1216484, 46.1983539 ], + [ 6.1216489, 46.1983535 ], + [ 6.121781, 46.1982962 ], + [ 6.1220863, 46.1980439 ], + [ 6.1221125, 46.1980293 ], + [ 6.1221936, 46.1980683 ], + [ 6.1236757, 46.198291 ], + [ 6.1250121, 46.1981225 ], + [ 6.1253012, 46.1985035 ], + [ 6.1251477, 46.1985713 ], + [ 6.1241836, 46.1986699 ], + [ 6.1240935, 46.1987027 ], + [ 6.1240793, 46.1987024 ], + [ 6.1239689, 46.1986759 ], + [ 6.123368, 46.1986695 ], + [ 6.1231918, 46.198652 ], + [ 6.1230147, 46.19864 ], + [ 6.122837, 46.1986337 ], + [ 6.1228365, 46.1986337 ], + [ 6.1226878, 46.1986326 ], + [ 6.1225392, 46.1986355 ], + [ 6.1223908, 46.1986423 ], + [ 6.1221963, 46.1986573 ], + [ 6.121919, 46.1986834 ], + [ 6.1217656, 46.1987001 ], + [ 6.1216133, 46.1987209 ], + [ 6.1214624, 46.1987459 ], + [ 6.1214589, 46.1987465 ], + [ 6.1211162, 46.1988202 ], + [ 6.1207845, 46.1989153 ], + [ 6.1204668, 46.1990311 ], + [ 6.1201656, 46.1991665 ], + [ 6.1199883, 46.1991834 ], + [ 6.1198099, 46.199246 ], + [ 6.1195207, 46.1992927 ], + [ 6.1191404, 46.1994808 ], + [ 6.1188463, 46.199584 ], + [ 6.118652, 46.1997224 ], + [ 6.1182923, 46.1999004 ], + [ 6.1180921, 46.2001215 ], + [ 6.1179534, 46.2002204 ], + [ 6.1178042, 46.2004395 ], + [ 6.1176429, 46.2006177 ] + ], + [ + [ 6.1035324, 46.2035404 ], + [ 6.1048446, 46.2034201 ], + [ 6.1060227, 46.2030009 ], + [ 6.1069298, 46.2023316 ], + [ 6.1069656, 46.202294 ], + [ 6.1070876, 46.2021028 ], + [ 6.1070919, 46.202099 ], + [ 6.1071011, 46.2020816 ], + [ 6.107164, 46.201983 ], + [ 6.1072583, 46.2018935 ], + [ 6.1073211, 46.2017368 ], + [ 6.1074885, 46.2014745 ], + [ 6.1075068, 46.201322 ], + [ 6.1075584, 46.2012247 ], + [ 6.1075634, 46.2011324 ], + [ 6.1076313, 46.200963 ], + [ 6.10759, 46.2006393 ], + [ 6.1075909, 46.2006241 ], + [ 6.107596, 46.2005814 ], + [ 6.1075935, 46.2005747 ], + [ 6.1076041, 46.200378 ], + [ 6.1075353, 46.2002104 ], + [ 6.1075086, 46.2000009 ], + [ 6.1073629, 46.1997905 ], + [ 6.1073195, 46.1996849 ], + [ 6.1077468, 46.1994654 ], + [ 6.1088973, 46.1986791 ], + [ 6.1090511, 46.1985275 ], + [ 6.1093408, 46.1985837 ], + [ 6.1105487, 46.1986808 ], + [ 6.1117407, 46.1985139 ], + [ 6.1124632, 46.1982312 ], + [ 6.1129932, 46.1988028 ], + [ 6.1132661, 46.1989341 ], + [ 6.1126142, 46.1990258 ], + [ 6.1124704, 46.1990654 ], + [ 6.1122491, 46.1991585 ], + [ 6.1121383, 46.1991829 ], + [ 6.1120756, 46.1992048 ], + [ 6.1118545, 46.1993246 ], + [ 6.1113638, 46.1995312 ], + [ 6.1111637, 46.1996991 ], + [ 6.1108805, 46.1998526 ], + [ 6.1106631, 46.2001192 ], + [ 6.1105388, 46.2002235 ], + [ 6.1104633, 46.2003641 ], + [ 6.1101333, 46.2007687 ], + [ 6.1099477, 46.2018135 ], + [ 6.1100188, 46.2019919 ], + [ 6.1094289, 46.2020315 ], + [ 6.1080935, 46.2025236 ], + [ 6.1080394, 46.2025543 ], + [ 6.1070736, 46.2033653 ], + [ 6.1070355, 46.2034512 ], + [ 6.1064962, 46.2038806 ], + [ 6.1058163, 46.2036589 ], + [ 6.1057932, 46.2036581 ], + [ 6.1057724, 46.2036514 ], + [ 6.1046026, 46.2036179 ], + [ 6.1043098, 46.203608 ], + [ 6.1043043, 46.2036093 ], + [ 6.1042623, 46.2036081 ], + [ 6.1028426, 46.2039679 ], + [ 6.1026708, 46.2040404 ], + [ 6.1026705, 46.2040405 ], + [ 6.1026259, 46.2040593 ], + [ 6.1026642, 46.2039365 ], + [ 6.1025216, 46.2033901 ], + [ 6.1035324, 46.2035404 ] + ], + [ + [ 6.0933285, 46.1996839 ], + [ 6.093373, 46.1996404 ], + [ 6.0938469, 46.1998201 ], + [ 6.095043, 46.1999757 ], + [ 6.0950861, 46.1999766 ], + [ 6.0950862, 46.1999766 ], + [ 6.0952657, 46.1999801 ], + [ 6.0952658, 46.1999801 ], + [ 6.095309, 46.1999809 ], + [ 6.0966052, 46.199828 ], + [ 6.0965745, 46.1999262 ], + [ 6.0965648, 46.1999266 ], + [ 6.0965037, 46.199918 ], + [ 6.0961387, 46.1999475 ], + [ 6.0954818, 46.1999796 ], + [ 6.0954348, 46.1999885 ], + [ 6.0954115, 46.1999929 ], + [ 6.0953251999999996, 46.2000092 ], + [ 6.095325, 46.2000093 ], + [ 6.095316, 46.200011 ], + [ 6.0953061, 46.2000141 ], + [ 6.0953057, 46.200013 ], + [ 6.0952949, 46.2000151 ], + [ 6.0951523, 46.200042 ], + [ 6.094043, 46.2003891 ], + [ 6.093454, 46.2007607 ], + [ 6.0932553, 46.2007308 ], + [ 6.0917632, 46.2009185 ], + [ 6.0916764, 46.2009572 ], + [ 6.0911526, 46.2004664 ], + [ 6.0911799, 46.2003459 ], + [ 6.0920473, 46.200243 ], + [ 6.0933285, 46.1996839 ] + ], + [ + [ 6.200119, 46.2017375 ], + [ 6.2003337, 46.2017868 ], + [ 6.2006646, 46.2017877 ], + [ 6.2003984, 46.2021651 ], + [ 6.2000787, 46.2025567 ], + [ 6.1991659, 46.2024202 ], + [ 6.1996597, 46.2021989 ], + [ 6.200119, 46.2017375 ] + ], + [ + [ 6.1174317, 46.2028401 ], + [ 6.1175008, 46.2029469 ], + [ 6.1175207, 46.2030069 ], + [ 6.1172995, 46.2032286 ], + [ 6.1172612, 46.2030821 ], + [ 6.1172922, 46.203035 ], + [ 6.1173355, 46.2030001 ], + [ 6.1174317, 46.2028401 ] + ], + [ + [ 6.0749578, 46.2163493 ], + [ 6.0756878, 46.216668 ], + [ 6.0768672, 46.2168747 ], + [ 6.0775223, 46.2168443 ], + [ 6.0775294, 46.2168449 ], + [ 6.0775364, 46.2168436 ], + [ 6.0777519, 46.2168336 ], + [ 6.0776839, 46.2170512 ], + [ 6.0779475, 46.2180625 ], + [ 6.0777272, 46.2180108 ], + [ 6.0765067, 46.2180016 ], + [ 6.0754449, 46.2182332 ], + [ 6.0755883, 46.2177745 ], + [ 6.0753183, 46.2167383 ], + [ 6.0749578, 46.2163493 ] + ], + [ + [ 6.1378354, 46.2523944 ], + [ 6.1373198, 46.2527202 ], + [ 6.136945, 46.2525925 ], + [ 6.1366941, 46.2525676 ], + [ 6.1363959, 46.2524947 ], + [ 6.1360754, 46.2525064 ], + [ 6.1357373, 46.2524729 ], + [ 6.1354066, 46.2525131 ], + [ 6.135642, 46.252366 ], + [ 6.1362939, 46.2514288 ], + [ 6.1363689, 46.2512295 ], + [ 6.1363727, 46.251203 ], + [ 6.1371923, 46.2520854 ], + [ 6.1378354, 46.2523944 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-0", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.6463434, 46.7605038 ], + [ 6.6460865, 46.7605078 ], + [ 6.6458305, 46.7605233 ], + [ 6.6455766, 46.7605503 ], + [ 6.6453257, 46.7605887 ], + [ 6.6450791, 46.7606382 ], + [ 6.6448377, 46.7606987 ], + [ 6.6446026, 46.76077 ], + [ 6.6445532, 46.7607866 ], + [ 6.6436656, 46.7610903 ], + [ 6.6434872, 46.7611554 ], + [ 6.6432676, 46.7612471 ], + [ 6.6430572, 46.7613485 ], + [ 6.6428569, 46.7614591 ], + [ 6.6426676, 46.7615785 ], + [ 6.6424900000000004, 46.7617062 ], + [ 6.642325, 46.7618416 ], + [ 6.6421732, 46.761984 ], + [ 6.6420353, 46.762133 ], + [ 6.6419118, 46.7622879 ], + [ 6.6418034, 46.762448 ], + [ 6.6417104, 46.7626127 ], + [ 6.6416333, 46.7627811 ], + [ 6.6415724, 46.7629527 ], + [ 6.641528, 46.7631266 ], + [ 6.6415002, 46.7633022 ], + [ 6.6414892, 46.7634786 ], + [ 6.641495, 46.7636552 ], + [ 6.6415176, 46.7638311 ], + [ 6.6415568, 46.7640056 ], + [ 6.6416126, 46.764178 ], + [ 6.6416847, 46.7643475 ], + [ 6.6417728, 46.7645134 ], + [ 6.6418765, 46.764675 ], + [ 6.641901, 46.7647094 ], + [ 6.6420299, 46.7648872 ], + [ 6.6421242, 46.7650094 ], + [ 6.6422577, 46.7651603 ], + [ 6.6424053, 46.7653049 ], + [ 6.6425663, 46.7654425 ], + [ 6.6427401, 46.7655726 ], + [ 6.6429258, 46.7656946 ], + [ 6.6431228, 46.7658081 ], + [ 6.6433302, 46.7659124 ], + [ 6.643547, 46.7660071 ], + [ 6.6437724, 46.766092 ], + [ 6.6440054, 46.7661665 ], + [ 6.644245, 46.7662303 ], + [ 6.6444902, 46.7662833 ], + [ 6.6447399, 46.7663252 ], + [ 6.6449929999999995, 46.7663557 ], + [ 6.6452485, 46.7663748 ], + [ 6.6455053, 46.7663823 ], + [ 6.6457622, 46.7663784 ], + [ 6.6460182, 46.7663628 ], + [ 6.6462722, 46.7663358 ], + [ 6.646523, 46.7662975 ], + [ 6.6467697, 46.7662479 ], + [ 6.6470111, 46.7661874 ], + [ 6.6472463, 46.7661161 ], + [ 6.6472932, 46.7661004 ], + [ 6.6481811, 46.7657971 ], + [ 6.648362, 46.7657312 ], + [ 6.6485816, 46.7656394 ], + [ 6.648792, 46.765538 ], + [ 6.6489923, 46.7654274 ], + [ 6.6491816, 46.765308 ], + [ 6.6493592, 46.7651803 ], + [ 6.6495242, 46.7650449 ], + [ 6.6496759999999995, 46.7649024 ], + [ 6.6498139, 46.7647534 ], + [ 6.6499372999999995, 46.7645985 ], + [ 6.6500457, 46.7644384 ], + [ 6.6501387, 46.7642738 ], + [ 6.6502158, 46.7641053 ], + [ 6.6502766, 46.7639337 ], + [ 6.650321, 46.7637598 ], + [ 6.6503488, 46.7635842 ], + [ 6.6503598, 46.7634078 ], + [ 6.650354, 46.7632313 ], + [ 6.6503314, 46.7630554 ], + [ 6.6502921, 46.7628808 ], + [ 6.6502362, 46.7627085 ], + [ 6.6501641, 46.762539 ], + [ 6.650076, 46.7623731 ], + [ 6.6499723, 46.7622115 ], + [ 6.6499481, 46.7621775 ], + [ 6.6498189, 46.7619992 ], + [ 6.6497242, 46.7618766 ], + [ 6.6495907, 46.7617257 ], + [ 6.6494432, 46.7615812 ], + [ 6.6492822, 46.7614435 ], + [ 6.6491084, 46.7613134 ], + [ 6.6489226, 46.7611914 ], + [ 6.6487256, 46.761078 ], + [ 6.6485183, 46.7609737 ], + [ 6.6483014, 46.760879 ], + [ 6.6480761, 46.7607941 ], + [ 6.6478431, 46.7607196 ], + [ 6.6476035, 46.7606558 ], + [ 6.6473584, 46.7606028 ], + [ 6.6471087, 46.760561 ], + [ 6.6468556, 46.7605304 ], + [ 6.6466001, 46.7605114 ], + [ 6.6463434, 46.7605038 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00040", + "country" : "CHE", + "name" : [ + { + "text" : "Centre gendarmerie mobile - Région Nord (Yverdon-les-Bains)", + "lang" : "de-CH" + }, + { + "text" : "Centre gendarmerie mobile - Région Nord (Yverdon-les-Bains)", + "lang" : "fr-CH" + }, + { + "text" : "Centre gendarmerie mobile - Région Nord (Yverdon-les-Bains)", + "lang" : "it-CH" + }, + { + "text" : "Centre gendarmerie mobile - Région Nord (Yverdon-les-Bains)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kantonspolizei Waadt", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale vaudoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Vaud", + "lang" : "it-CH" + }, + { + "text" : "Vaud Cantonal Police", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.pcv@vd.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.9830957, 46.299068 ], + [ 6.9978866, 46.2357966 ], + [ 6.9601071, 46.2273665 ], + [ 6.9338872, 46.2453337 ], + [ 6.9132511999999995, 46.2876097 ], + [ 6.9830957, 46.299068 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSEC001", + "country" : "CHE", + "name" : [ + { + "text" : "LSEC Collombey-Muraz", + "lang" : "de-CH" + }, + { + "text" : "LSEC Collombey-Muraz", + "lang" : "fr-CH" + }, + { + "text" : "LSEC Collombey-Muraz", + "lang" : "it-CH" + }, + { + "text" : "LSEC Collombey-Muraz", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Héliport Collombey-Muraz", + "lang" : "de-CH" + }, + { + "text" : "Héliport Collombey-Muraz", + "lang" : "fr-CH" + }, + { + "text" : "Héliport Collombey-Muraz", + "lang" : "it-CH" + }, + { + "text" : "Héliport Collombey-Muraz", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Chef d'aérodrome", + "lang" : "de-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "fr-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "it-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Christian Rosat", + "lang" : "de-CH" + }, + { + "text" : "Christian Rosat", + "lang" : "fr-CH" + }, + { + "text" : "Christian Rosat", + "lang" : "it-CH" + }, + { + "text" : "Christian Rosat", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.air-glaciers.ch/collombey", + "email" : "collombey@air-glaciers.ch", + "phone" : "0041244737070", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P01DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.2238123, 46.2229017 ], + [ 6.2235576, 46.222934 ], + [ 6.2234525, 46.2229183 ], + [ 6.2219602, 46.2231077 ], + [ 6.2206858, 46.223679 ], + [ 6.2198235, 46.2245454 ], + [ 6.2195044, 46.2255748 ], + [ 6.2195156, 46.2256174 ], + [ 6.2194256, 46.2259077 ], + [ 6.2196984, 46.2269435 ], + [ 6.2205216, 46.227828 ], + [ 6.2217698, 46.2284266 ], + [ 6.2228375, 46.2285859 ], + [ 6.2230059, 46.229225 ], + [ 6.2238291, 46.2301095 ], + [ 6.2240691, 46.2302245 ], + [ 6.2243365, 46.2305118 ], + [ 6.2255849, 46.2311103 ], + [ 6.2270683, 46.2313317 ], + [ 6.2285608, 46.2311422 ], + [ 6.2298352, 46.2305708 ], + [ 6.2306976, 46.2297044 ], + [ 6.2310165, 46.228675 ], + [ 6.2307434, 46.2276392 ], + [ 6.2299201, 46.2267548 ], + [ 6.2296801, 46.2266397 ], + [ 6.2294127, 46.2263525 ], + [ 6.2281644, 46.225754 ], + [ 6.2276298, 46.2256742 ], + [ 6.2276398, 46.2256418 ], + [ 6.2273669, 46.2246061 ], + [ 6.2265437, 46.2237216 ], + [ 6.2252955, 46.2231231 ], + [ 6.2238123, 46.2229017 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-31", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6305266, 47.5053824 ], + [ 7.6297786, 47.5058314 ], + [ 7.6295423, 47.5058695 ], + [ 7.6286914, 47.5059966 ], + [ 7.6279882, 47.5061031 ], + [ 7.6268611, 47.5064979 ], + [ 7.6272196999999995, 47.5066845 ], + [ 7.6276821, 47.5068491 ], + [ 7.6281995, 47.5069939 ], + [ 7.6287022, 47.5070698 ], + [ 7.629048, 47.5071125 ], + [ 7.6292804, 47.507118 ], + [ 7.6294981, 47.5070862 ], + [ 7.6296198, 47.5070269 ], + [ 7.6297444, 47.5069559 ], + [ 7.6298631, 47.5068514 ], + [ 7.6298689, 47.5068416 ], + [ 7.6304332, 47.5062916 ], + [ 7.6305172, 47.5062167 ], + [ 7.630601, 47.5061834 ], + [ 7.6307, 47.5061751 ], + [ 7.6309323, 47.5061747 ], + [ 7.6311231, 47.5061299 ], + [ 7.631251, 47.5060754 ], + [ 7.6313388, 47.5059938 ], + [ 7.6313465, 47.5059179 ], + [ 7.6312822, 47.5058474 ], + [ 7.631162, 47.5058205 ], + [ 7.6309937, 47.5057882 ], + [ 7.6308415, 47.5057885 ], + [ 7.6307215, 47.5058104 ], + [ 7.6304815, 47.5058759 ], + [ 7.6303453999999995, 47.5058924 ], + [ 7.6302492, 47.5058709 ], + [ 7.630193, 47.5058275 ], + [ 7.6301607, 47.505751599999996 ], + [ 7.6301524, 47.5056648 ], + [ 7.6302095, 47.505574 ], + [ 7.6305266, 47.5053824 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr074", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Spitalholz", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Spitalholz", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Spitalholz", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Spitalholz", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8884460999999995, 47.4200379 ], + [ 7.8890177999999995, 47.4203713 ], + [ 7.88892, 47.4204972 ], + [ 7.8889282, 47.4205091 ], + [ 7.8890293, 47.4206305 ], + [ 7.8890944, 47.420724 ], + [ 7.8891279, 47.4207691 ], + [ 7.8891675, 47.4207897 ], + [ 7.8892364, 47.4208357 ], + [ 7.8893983, 47.4208928 ], + [ 7.8894945, 47.4209441 ], + [ 7.8896719, 47.4209732 ], + [ 7.8898444, 47.4210389 ], + [ 7.8900255999999995, 47.4207828 ], + [ 7.8901196, 47.4205858 ], + [ 7.8900459, 47.4205637 ], + [ 7.8901491, 47.4204829 ], + [ 7.8902704, 47.4204062 ], + [ 7.8903315, 47.420252 ], + [ 7.8902978, 47.4201402 ], + [ 7.8902426, 47.420014 ], + [ 7.8901655, 47.419881 ], + [ 7.8901243, 47.4198646 ], + [ 7.8899326, 47.4199892 ], + [ 7.8897522, 47.4202372 ], + [ 7.8896958999999995, 47.4202107 ], + [ 7.8897271, 47.4201484 ], + [ 7.8895091, 47.4197527 ], + [ 7.8896788, 47.4196389 ], + [ 7.8896985, 47.4195602 ], + [ 7.8894963, 47.4194564 ], + [ 7.8893239, 47.4194105 ], + [ 7.8893123, 47.4194215 ], + [ 7.8891217000000005, 47.4196015 ], + [ 7.8890618, 47.4196328 ], + [ 7.8887972, 47.4197954 ], + [ 7.888595, 47.4198973 ], + [ 7.888443, 47.4200272 ], + [ 7.8884381999999995, 47.4200316 ], + [ 7.8884460999999995, 47.4200379 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr092", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Weid", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Weid", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Weid", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Weid", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7052587, 47.4174864 ], + [ 7.705156, 47.4174177 ], + [ 7.7051091, 47.4173857 ], + [ 7.7051084, 47.4173859 ], + [ 7.7051082, 47.4173857 ], + [ 7.7047678, 47.4174717 ], + [ 7.7050499, 47.4177947 ], + [ 7.7048331999999995, 47.417938 ], + [ 7.7047155, 47.4182381 ], + [ 7.704773, 47.4185236 ], + [ 7.7049783, 47.4189038 ], + [ 7.7052111, 47.4191841 ], + [ 7.7054158, 47.4194549 ], + [ 7.7055143, 47.4195261 ], + [ 7.7056687, 47.41954 ], + [ 7.705844, 47.4195491 ], + [ 7.7061176, 47.4195723 ], + [ 7.7063977, 47.4195717 ], + [ 7.706385, 47.4194941 ], + [ 7.7063463, 47.4192412 ], + [ 7.7063799, 47.419088 ], + [ 7.706446, 47.4190121 ], + [ 7.7065956, 47.4188838 ], + [ 7.7068403, 47.4187674 ], + [ 7.7070719, 47.4186958 ], + [ 7.7069346, 47.4186044 ], + [ 7.7063705, 47.418230199999996 ], + [ 7.7063702, 47.4182303 ], + [ 7.7061531, 47.4180815 ], + [ 7.7059527, 47.417948 ], + [ 7.7058596, 47.4178861 ], + [ 7.7054458, 47.4176105 ], + [ 7.7052587, 47.4174864 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns353", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Schöni", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Schöni", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Schöni", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Schöni", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.6666080999999995, 46.7902112 ], + [ 6.6827276, 46.7962269 ], + [ 6.6834288, 46.7964886 ], + [ 6.7009069, 46.8029833 ], + [ 6.7030747999999996, 46.8006588 ], + [ 6.704501, 46.7991294 ], + [ 6.7042983, 46.7990957 ], + [ 6.7038572, 46.7990149 ], + [ 6.7031158, 46.7988717 ], + [ 6.7028227000000005, 46.7988151 ], + [ 6.7020243, 46.7986293 ], + [ 6.7013563, 46.7984551 ], + [ 6.7002512, 46.7981237 ], + [ 6.6988129, 46.7976191 ], + [ 6.6984806, 46.7975025 ], + [ 6.6971052, 46.7970137 ], + [ 6.6966838, 46.7968639 ], + [ 6.6963111, 46.7967315 ], + [ 6.6955316, 46.7964459 ], + [ 6.6945822, 46.7960668 ], + [ 6.6942946, 46.7959518 ], + [ 6.6937098, 46.7956924 ], + [ 6.6931185, 46.7954084 ], + [ 6.6929237, 46.7953148 ], + [ 6.6921724000000005, 46.7949354 ], + [ 6.691026, 46.7943306 ], + [ 6.6907174, 46.7941678 ], + [ 6.6901487, 46.7938678 ], + [ 6.6901114, 46.7938481 ], + [ 6.6897155999999995, 46.7936393 ], + [ 6.6881139, 46.7927947 ], + [ 6.6877242, 46.7925982 ], + [ 6.6874412, 46.7924556 ], + [ 6.6870787, 46.7922931 ], + [ 6.6867439, 46.792143 ], + [ 6.6865448, 46.7920618 ], + [ 6.6860330999999995, 46.7918533 ], + [ 6.685805, 46.7917718 ], + [ 6.6853974, 46.7916263 ], + [ 6.6853075, 46.7915942 ], + [ 6.684564, 46.7913554 ], + [ 6.6843399, 46.7912952 ], + [ 6.6826051, 46.7908291 ], + [ 6.6801852, 46.7901993 ], + [ 6.678506, 46.7897565 ], + [ 6.6774493, 46.7894604 ], + [ 6.6764661, 46.7891568 ], + [ 6.6762087999999995, 46.7890773 ], + [ 6.6753257, 46.7887868 ], + [ 6.6749305, 46.7886445 ], + [ 6.6744386, 46.7884674 ], + [ 6.6734946, 46.788106 ], + [ 6.6720002, 46.7875242 ], + [ 6.6715753, 46.7873567 ], + [ 6.6708191, 46.7870586 ], + [ 6.6703902, 46.7868896 ], + [ 6.6702787, 46.7868473 ], + [ 6.6698799, 46.7866908 ], + [ 6.6673696, 46.7857088 ], + [ 6.6668395, 46.7855045 ], + [ 6.6661171, 46.7852093 ], + [ 6.6655305, 46.7849257 ], + [ 6.6626011, 46.7834146 ], + [ 6.6623917, 46.783304 ], + [ 6.6586622, 46.7813757 ], + [ 6.6567788, 46.7804054 ], + [ 6.6567439, 46.7804643 ], + [ 6.6567393, 46.7804721 ], + [ 6.6566699, 46.7804698 ], + [ 6.6566629, 46.780472 ], + [ 6.6566244999999995, 46.7804844 ], + [ 6.6565817, 46.780513 ], + [ 6.6565755, 46.7805172 ], + [ 6.6565261, 46.7805502 ], + [ 6.6564899, 46.7806433 ], + [ 6.6564367, 46.780722 ], + [ 6.6564214, 46.7807889 ], + [ 6.6564018, 46.7808745 ], + [ 6.6563965, 46.7809356 ], + [ 6.6563752, 46.7809742 ], + [ 6.6562893, 46.7810912 ], + [ 6.6559856, 46.7813694 ], + [ 6.6559533, 46.781399 ], + [ 6.6559279, 46.781417 ], + [ 6.6558947, 46.7814406 ], + [ 6.65582, 46.7814936 ], + [ 6.6556486, 46.7816152 ], + [ 6.6555694, 46.7816714 ], + [ 6.6555082, 46.7817632 ], + [ 6.6555131, 46.7818685 ], + [ 6.6555159, 46.7819277 ], + [ 6.6555903, 46.7820813 ], + [ 6.6555908, 46.7821146 ], + [ 6.6555918, 46.7821754 ], + [ 6.6555632, 46.7822669 ], + [ 6.6555228, 46.7823142 ], + [ 6.6554918, 46.7823504 ], + [ 6.6554196999999995, 46.7824347 ], + [ 6.655416, 46.782439 ], + [ 6.6553423, 46.7825754 ], + [ 6.6552866999999996, 46.7826668 ], + [ 6.6551796, 46.7827659 ], + [ 6.6551521000000005, 46.7828702 ], + [ 6.6551507999999995, 46.782875 ], + [ 6.6550873, 46.783044 ], + [ 6.6550719, 46.7830717 ], + [ 6.6550038, 46.7831937 ], + [ 6.6550028, 46.783195 ], + [ 6.6549984, 46.7832009 ], + [ 6.6550085, 46.7832038 ], + [ 6.6550574000000005, 46.7832178 ], + [ 6.6551039, 46.7832311 ], + [ 6.6571452, 46.7839162 ], + [ 6.6566369, 46.7847689 ], + [ 6.6569609, 46.7848241 ], + [ 6.657515, 46.7848457 ], + [ 6.6577047, 46.7849035 ], + [ 6.6578216, 46.785103 ], + [ 6.657455, 46.7856066 ], + [ 6.6572224, 46.7858412 ], + [ 6.6569558, 46.786053 ], + [ 6.656623, 46.7862534 ], + [ 6.6560479, 46.7865168 ], + [ 6.6556318, 46.7867056 ], + [ 6.6549906, 46.7869462 ], + [ 6.6544581, 46.7870952 ], + [ 6.6541084, 46.7871639 ], + [ 6.6532842, 46.7871587 ], + [ 6.6527926, 46.7871303 ], + [ 6.6520349, 46.7871134 ], + [ 6.6515524, 46.787085 ], + [ 6.651319, 46.7870909 ], + [ 6.6500445, 46.7874621 ], + [ 6.6499805, 46.7874693 ], + [ 6.6497784, 46.7874919 ], + [ 6.64788, 46.7874469 ], + [ 6.6477134, 46.7874813 ], + [ 6.6468979, 46.7878306 ], + [ 6.6459477, 46.788544 ], + [ 6.6447268, 46.7894607 ], + [ 6.6452719, 46.7897663 ], + [ 6.6448351, 46.7901298 ], + [ 6.6447627, 46.7901019 ], + [ 6.6446904, 46.7900741 ], + [ 6.6444215, 46.7899782 ], + [ 6.6439439, 46.7896976 ], + [ 6.6437739, 46.7896 ], + [ 6.6437014, 46.7895804 ], + [ 6.6436408, 46.7895753 ], + [ 6.6436053, 46.7895803 ], + [ 6.6435766, 46.7895843 ], + [ 6.6435103, 46.7896112 ], + [ 6.6432588, 46.7897475 ], + [ 6.643184, 46.7897684 ], + [ 6.6431024, 46.7897762 ], + [ 6.6430467, 46.789766 ], + [ 6.6399285, 46.7880261 ], + [ 6.639776, 46.7882081 ], + [ 6.6395032, 46.7885338 ], + [ 6.6392337, 46.7888566 ], + [ 6.6383568, 46.7899053 ], + [ 6.6381513, 46.7901511 ], + [ 6.6380547, 46.7900612 ], + [ 6.6374718999999995, 46.7895188 ], + [ 6.6374161, 46.7894669 ], + [ 6.6372449, 46.7892509 ], + [ 6.6371741, 46.7893698 ], + [ 6.6370053, 46.7895935 ], + [ 6.6369674, 46.7896427 ], + [ 6.6368339, 46.7898161 ], + [ 6.6367742, 46.7898949 ], + [ 6.6366648, 46.7900394 ], + [ 6.6365828, 46.7901494 ], + [ 6.6364977, 46.7902636 ], + [ 6.6363387, 46.7904736 ], + [ 6.6362473, 46.7905932 ], + [ 6.6360785, 46.7908166 ], + [ 6.6359164, 46.7910327 ], + [ 6.6359099, 46.7910399 ], + [ 6.6358805, 46.7910802 ], + [ 6.6357309, 46.7913118 ], + [ 6.63543, 46.7912094 ], + [ 6.6353716, 46.7911887 ], + [ 6.6350801, 46.7910898 ], + [ 6.635005, 46.791164 ], + [ 6.6348572, 46.7913433 ], + [ 6.6346598, 46.7915824 ], + [ 6.6345749, 46.7916852 ], + [ 6.6344625, 46.7918215 ], + [ 6.6342665, 46.7920587 ], + [ 6.634123, 46.7922327 ], + [ 6.6339356, 46.7924599 ], + [ 6.6337367, 46.7927009 ], + [ 6.6335371, 46.7929418 ], + [ 6.6333385, 46.7931833 ], + [ 6.6331398, 46.7934244 ], + [ 6.6330387, 46.7935462 ], + [ 6.6329619, 46.7936393 ], + [ 6.6328857, 46.7937318 ], + [ 6.6327735, 46.7938675 ], + [ 6.6327835, 46.7939886 ], + [ 6.6328679, 46.7941065 ], + [ 6.6328685, 46.7941073 ], + [ 6.6329329, 46.7941434 ], + [ 6.6321123, 46.7953142 ], + [ 6.6320897, 46.7955686 ], + [ 6.6321647, 46.7958049 ], + [ 6.6321595, 46.7974681 ], + [ 6.6322285, 46.7980533 ], + [ 6.6323361, 46.7986326 ], + [ 6.6324525, 46.7992811 ], + [ 6.6325047, 46.799563 ], + [ 6.6323074, 46.7996164 ], + [ 6.6323041, 46.7997289 ], + [ 6.6310362, 46.7999853 ], + [ 6.6311304, 46.8001434 ], + [ 6.6306881, 46.8003741 ], + [ 6.6309434, 46.8007637 ], + [ 6.6313886, 46.8012696 ], + [ 6.6318562, 46.8016463 ], + [ 6.6321889, 46.8018457 ], + [ 6.6323851, 46.8018704 ], + [ 6.6325726, 46.8018114 ], + [ 6.6327242, 46.8016939 ], + [ 6.6327267, 46.8016897 ], + [ 6.6334709, 46.8022423 ], + [ 6.6339589, 46.8018628 ], + [ 6.6345064, 46.8014942 ], + [ 6.6346583, 46.8014125 ], + [ 6.6348237999999995, 46.8014034 ], + [ 6.6349941999999995, 46.8013939 ], + [ 6.635359, 46.8015882 ], + [ 6.6356727, 46.8017965 ], + [ 6.6359686, 46.8021584 ], + [ 6.6361848, 46.8023217 ], + [ 6.6362925, 46.8024035 ], + [ 6.6364466, 46.8026115 ], + [ 6.6365092, 46.8028099 ], + [ 6.6364512, 46.8029634 ], + [ 6.6364137, 46.8030611 ], + [ 6.636421, 46.8032285 ], + [ 6.6364271, 46.8033741 ], + [ 6.6364332, 46.803511 ], + [ 6.6364964, 46.8036644 ], + [ 6.6366855000000005, 46.8037794 ], + [ 6.636795, 46.8038464 ], + [ 6.6369308, 46.8038566 ], + [ 6.6371876, 46.8038761 ], + [ 6.6373994, 46.8039507 ], + [ 6.6380013, 46.8041627 ], + [ 6.6382302, 46.8042433 ], + [ 6.6385792, 46.8044006 ], + [ 6.6387768, 46.80449 ], + [ 6.6394268, 46.804719 ], + [ 6.6395588, 46.8047654 ], + [ 6.6406393999999995, 46.8052227 ], + [ 6.640732, 46.8051604 ], + [ 6.6408365, 46.8051791 ], + [ 6.6409689, 46.8050901 ], + [ 6.6410968, 46.8052979 ], + [ 6.6415486999999995, 46.8054673 ], + [ 6.6423313, 46.8057609 ], + [ 6.6428557, 46.8059578 ], + [ 6.6431177, 46.8061231 ], + [ 6.6437643, 46.8065309 ], + [ 6.644314, 46.8068485 ], + [ 6.6450244, 46.8072594 ], + [ 6.6451303, 46.8071881 ], + [ 6.6452857, 46.8073061 ], + [ 6.6452593, 46.807324 ], + [ 6.6458881, 46.807658 ], + [ 6.6461693, 46.8078071 ], + [ 6.646261, 46.8078077 ], + [ 6.6464954, 46.8078993 ], + [ 6.6467541, 46.808126 ], + [ 6.64695, 46.8081723 ], + [ 6.6469491, 46.8082353 ], + [ 6.6471059, 46.8082634 ], + [ 6.6471724, 46.8081919 ], + [ 6.6476832, 46.8084307 ], + [ 6.6475425999999995, 46.8085219 ], + [ 6.647042, 46.808872 ], + [ 6.648496, 46.8097915 ], + [ 6.6484987, 46.8096566 ], + [ 6.6489524, 46.8094924 ], + [ 6.6491741, 46.8092843 ], + [ 6.6493484, 46.8091263 ], + [ 6.6500876, 46.808302 ], + [ 6.6525672, 46.8055529 ], + [ 6.6666080999999995, 46.7902112 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "WZV0012", + "country" : "CHE", + "name" : [ + { + "text" : "Wasser- und Zugvogelreservat Grandson jusqu'à Champ-Pittet", + "lang" : "de-CH" + }, + { + "text" : "Réserve d'oiseaux d'eau et de migrateurs Grandson jusqu'à Champ-Pittet", + "lang" : "fr-CH" + }, + { + "text" : "Riserva di uccelli acquatici e migratori Grandson jusqu'à Champ-Pittet", + "lang" : "it-CH" + }, + { + "text" : "Water Bird and Migratory Bird Reserves Grandson jusqu'à Champ-Pittet", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7367681, 47.4228637 ], + [ 7.7367619, 47.4227225 ], + [ 7.7367448, 47.4225817 ], + [ 7.7367168, 47.4224417 ], + [ 7.7366781, 47.4223029 ], + [ 7.7366288, 47.4221657 ], + [ 7.7365689, 47.4220304 ], + [ 7.7364987, 47.4218974 ], + [ 7.7364183, 47.4217671 ], + [ 7.736328, 47.4216398 ], + [ 7.736228, 47.421516 ], + [ 7.7361185, 47.4213958 ], + [ 7.736, 47.4212797 ], + [ 7.7358727, 47.4211679 ], + [ 7.7357369, 47.4210609 ], + [ 7.735593, 47.4209588 ], + [ 7.7354415, 47.4208619 ], + [ 7.7352827, 47.4207706 ], + [ 7.7351171, 47.420685 ], + [ 7.7349452, 47.4206054 ], + [ 7.7347673, 47.4205321 ], + [ 7.734584, 47.4204651 ], + [ 7.7343958, 47.4204048 ], + [ 7.7342032, 47.4203512 ], + [ 7.7340067, 47.4203046 ], + [ 7.733807, 47.420265 ], + [ 7.7336044, 47.4202325 ], + [ 7.7333996, 47.4202073 ], + [ 7.7331931, 47.4201894 ], + [ 7.7329856, 47.4201788 ], + [ 7.7327775, 47.4201757 ], + [ 7.7325695, 47.4201799 ], + [ 7.732362, 47.4201915 ], + [ 7.7321558, 47.4202105 ], + [ 7.7319513, 47.4202367 ], + [ 7.7317491, 47.4202702 ], + [ 7.7315497, 47.4203108 ], + [ 7.7313538, 47.4203585 ], + [ 7.7311618, 47.420413 ], + [ 7.7309742, 47.4204743 ], + [ 7.7307917, 47.4205422 ], + [ 7.7306146, 47.4206164 ], + [ 7.7304435, 47.4206969 ], + [ 7.7302789, 47.4207833 ], + [ 7.7301211, 47.4208754 ], + [ 7.7299707, 47.4209731 ], + [ 7.7298279, 47.4210759 ], + [ 7.7296934, 47.4211837 ], + [ 7.7295673, 47.421296 ], + [ 7.72945, 47.4214128 ], + [ 7.7293419, 47.4215335 ], + [ 7.7292433, 47.4216579 ], + [ 7.7291543, 47.4217856 ], + [ 7.7290754, 47.4219163 ], + [ 7.7290067, 47.4220497 ], + [ 7.7289483, 47.4221852 ], + [ 7.7289004, 47.4223227 ], + [ 7.7288633, 47.4224617 ], + [ 7.7288368, 47.4226018 ], + [ 7.7288213, 47.4227427 ], + [ 7.7288166, 47.4228839 ], + [ 7.7288228, 47.4230251 ], + [ 7.7288399, 47.4231659 ], + [ 7.7288678, 47.4233059 ], + [ 7.7289065, 47.4234447 ], + [ 7.7289559, 47.423582 ], + [ 7.7290157, 47.4237172 ], + [ 7.7290859, 47.4238502 ], + [ 7.7291663, 47.4239805 ], + [ 7.7292566, 47.4241078 ], + [ 7.7293566, 47.4242317 ], + [ 7.729466, 47.4243519 ], + [ 7.7295846, 47.424468 ], + [ 7.7297119, 47.4245798 ], + [ 7.7298477, 47.4246868 ], + [ 7.7299915, 47.4247889 ], + [ 7.730143, 47.4248858 ], + [ 7.7303018, 47.4249772 ], + [ 7.7304674, 47.4250627 ], + [ 7.7306394, 47.4251423 ], + [ 7.7308173, 47.4252157 ], + [ 7.7310006, 47.4252826 ], + [ 7.7311888, 47.425343 ], + [ 7.7313814, 47.4253965 ], + [ 7.7315779, 47.4254432 ], + [ 7.7317777, 47.4254828 ], + [ 7.7319803, 47.4255153 ], + [ 7.7321851, 47.4255405 ], + [ 7.7323916, 47.4255584 ], + [ 7.7325991, 47.425569 ], + [ 7.7328072, 47.4255721 ], + [ 7.7330153, 47.4255679 ], + [ 7.7332228, 47.4255563 ], + [ 7.733429, 47.4255373 ], + [ 7.7336336, 47.4255111 ], + [ 7.7338358, 47.4254776 ], + [ 7.7340352, 47.4254369 ], + [ 7.7342311, 47.4253893 ], + [ 7.7344231, 47.4253347 ], + [ 7.7346107, 47.4252734 ], + [ 7.7347932, 47.4252056 ], + [ 7.7349703, 47.4251313 ], + [ 7.7351414, 47.4250508 ], + [ 7.7353061, 47.4249644 ], + [ 7.7354638, 47.4248723 ], + [ 7.7356143, 47.4247746 ], + [ 7.7357569999999996, 47.4246718 ], + [ 7.7358916, 47.424564 ], + [ 7.7360177, 47.4244516 ], + [ 7.7361349, 47.4243349 ], + [ 7.736243, 47.4242142 ], + [ 7.7363416, 47.4240898 ], + [ 7.7364305, 47.4239621 ], + [ 7.7365095, 47.4238313 ], + [ 7.7365782, 47.423698 ], + [ 7.7366366, 47.4235624 ], + [ 7.7366844, 47.4234249 ], + [ 7.7367215, 47.4232859 ], + [ 7.7367479, 47.4231458 ], + [ 7.7367635, 47.4230049 ], + [ 7.7367681, 47.4228637 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "MZA0001", + "country" : "CHE", + "name" : [ + { + "text" : "Massnahmenzentrum für junge Erwachsene Arxhof", + "lang" : "de-CH" + }, + { + "text" : "Massnahmenzentrum für junge Erwachsene Arxhof", + "lang" : "fr-CH" + }, + { + "text" : "Massnahmenzentrum für junge Erwachsene Arxhof", + "lang" : "it-CH" + }, + { + "text" : "Massnahmenzentrum für junge Erwachsene Arxhof", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Justizvollzug Basel-Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Amt für Justizvollzug Basel-Landschaft", + "lang" : "fr-CH" + }, + { + "text" : "Amt für Justizvollzug Basel-Landschaft", + "lang" : "it-CH" + }, + { + "text" : "Amt für Justizvollzug Basel-Landschaft", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Amtsleitung", + "lang" : "de-CH" + }, + { + "text" : "Amtsleitung", + "lang" : "fr-CH" + }, + { + "text" : "Amtsleitung", + "lang" : "it-CH" + }, + { + "text" : "Amtsleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Nicolas Pozar", + "lang" : "de-CH" + }, + { + "text" : "Nicolas Pozar", + "lang" : "fr-CH" + }, + { + "text" : "Nicolas Pozar", + "lang" : "it-CH" + }, + { + "text" : "Nicolas Pozar", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/sicherheitsdirektion/bv-sid/justizvollzug", + "email" : "kanzlei.ajv@bl.ch", + "phone" : "0041615529045", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P21DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.3565238, 47.4044535 ], + [ 9.3563483, 47.4021021 ], + [ 9.3559918, 47.3997602 ], + [ 9.3554553, 47.3974341 ], + [ 9.3547403, 47.3951303 ], + [ 9.3538488, 47.392855 ], + [ 9.3527833, 47.3906146 ], + [ 9.3515466, 47.3884151 ], + [ 9.3501423, 47.3862625 ], + [ 9.3485741, 47.3841627 ], + [ 9.3468464, 47.3821216 ], + [ 9.3449639, 47.3801446 ], + [ 9.3429317, 47.3782372 ], + [ 9.3407556, 47.3764047 ], + [ 9.3384414, 47.3746519 ], + [ 9.3359955, 47.3729838 ], + [ 9.3334245, 47.3714049 ], + [ 9.3307356, 47.3699195 ], + [ 9.3279361, 47.3685316 ], + [ 9.3250337, 47.3672451 ], + [ 9.3220362, 47.3660635 ], + [ 9.318952, 47.3649901 ], + [ 9.3157894, 47.3640276 ], + [ 9.3125572, 47.3631789 ], + [ 9.3092641, 47.3624461 ], + [ 9.3059191, 47.3618314 ], + [ 9.3025314, 47.3613364 ], + [ 9.2991103, 47.3609624 ], + [ 9.2956651, 47.3607105 ], + [ 9.2922053, 47.3605813 ], + [ 9.2887402, 47.3605752 ], + [ 9.2852795, 47.3606923 ], + [ 9.2818324, 47.3609322 ], + [ 9.2784085, 47.3612942 ], + [ 9.2750172, 47.3617774 ], + [ 9.2716676, 47.3623804 ], + [ 9.268369, 47.3631016 ], + [ 9.2651303, 47.363939 ], + [ 9.2619605, 47.3648904 ], + [ 9.2588682, 47.3659531 ], + [ 9.2558618, 47.3671242 ], + [ 9.2529497, 47.3684005 ], + [ 9.2501397, 47.3697785 ], + [ 9.2474396, 47.3712545 ], + [ 9.2448567, 47.3728244 ], + [ 9.2423982, 47.374484 ], + [ 9.2400707, 47.3762286 ], + [ 9.2378807, 47.3780535 ], + [ 9.2358342, 47.3799538 ], + [ 9.2339367, 47.3819241 ], + [ 9.2321936, 47.3839592 ], + [ 9.2306095, 47.3860534 ], + [ 9.2291888, 47.3882011 ], + [ 9.2279355, 47.3903962 ], + [ 9.226853, 47.392633000000004 ], + [ 9.2259442, 47.3949051 ], + [ 9.2252118, 47.3972063 ], + [ 9.2246577, 47.3995305 ], + [ 9.2242834, 47.4018711 ], + [ 9.2240901, 47.4042219 ], + [ 9.2240782, 47.4065762 ], + [ 9.2242479, 47.4089278 ], + [ 9.2245987, 47.4112701 ], + [ 9.2251295, 47.4135968 ], + [ 9.2258392, 47.4159014 ], + [ 9.2267256, 47.4181776 ], + [ 9.2277863, 47.4204192 ], + [ 9.2290186, 47.42262 ], + [ 9.2304191, 47.4247741 ], + [ 9.2319838, 47.4268754 ], + [ 9.2337086, 47.4289182 ], + [ 9.2355887, 47.430897 ], + [ 9.2376189, 47.4328062 ], + [ 9.2397938, 47.4346407 ], + [ 9.2421074, 47.4363954 ], + [ 9.2445533, 47.4380654 ], + [ 9.2471248, 47.4396463 ], + [ 9.2498149, 47.4411336 ], + [ 9.2526162, 47.4425233 ], + [ 9.255521, 47.4438116 ], + [ 9.2585213, 47.4449949 ], + [ 9.261609, 47.44607 ], + [ 9.2647755, 47.4470339 ], + [ 9.268012, 47.4478839 ], + [ 9.2713099, 47.4486178 ], + [ 9.2746599, 47.4492335 ], + [ 9.2780529, 47.4497294 ], + [ 9.2814796, 47.450104 ], + [ 9.2849305, 47.4503563 ], + [ 9.2883962, 47.4504857 ], + [ 9.2918671, 47.4504918 ], + [ 9.2953337, 47.4503745 ], + [ 9.298786400000001, 47.4501342 ], + [ 9.3022159, 47.4497716 ], + [ 9.3056126, 47.4492877 ], + [ 9.3089673, 47.4486837 ], + [ 9.3122707, 47.4479613 ], + [ 9.3155137, 47.4471226 ], + [ 9.3186875, 47.4461698 ], + [ 9.3217832, 47.4451055 ], + [ 9.3247926, 47.4439328 ], + [ 9.3277071, 47.4426547 ], + [ 9.3305189, 47.4412748 ], + [ 9.3332203, 47.4397969 ], + [ 9.3358038, 47.438225 ], + [ 9.3382624, 47.4365635 ], + [ 9.3405892, 47.4348169 ], + [ 9.342778, 47.4329901 ], + [ 9.3448228, 47.431088 ], + [ 9.3467179, 47.4291158 ], + [ 9.3484582, 47.4270791 ], + [ 9.3500389, 47.4249832 ], + [ 9.3514556, 47.4228341 ], + [ 9.3527046, 47.4206377 ], + [ 9.3537824, 47.4183998 ], + [ 9.3546861, 47.4161267 ], + [ 9.3554132, 47.4138246 ], + [ 9.3559617, 47.4114999 ], + [ 9.3563302, 47.4091588 ], + [ 9.3565178, 47.4068079 ], + [ 9.3565238, 47.4044535 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSXO001", + "country" : "CHE", + "name" : [ + { + "text" : "LSXO Gossau", + "lang" : "de-CH" + }, + { + "text" : "LSXO Gossau", + "lang" : "fr-CH" + }, + { + "text" : "LSXO Gossau", + "lang" : "it-CH" + }, + { + "text" : "LSXO Gossau", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "REGA", + "lang" : "de-CH" + }, + { + "text" : "REGA", + "lang" : "fr-CH" + }, + { + "text" : "REGA", + "lang" : "it-CH" + }, + { + "text" : "REGA", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Basis St. Gallen", + "lang" : "de-CH" + }, + { + "text" : "Basis St. Gallen", + "lang" : "fr-CH" + }, + { + "text" : "Basis St. Gallen", + "lang" : "it-CH" + }, + { + "text" : "Basis St. Gallen", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.rega.ch/en/our-missions/sites-and-infrastructure/rega-7-st-gallen-base/lsxo-gossau-authorization-for-drone-pilot", + "email" : "ebsg@rega.ch", + "phone" : "0041713139933", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P01DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.7971248, 47.3516588 ], + [ 8.7976225, 47.3514027 ], + [ 8.7979763, 47.3515548 ], + [ 8.7984514, 47.3516924 ], + [ 8.7986171, 47.3516105 ], + [ 8.798873, 47.3514839 ], + [ 8.7992571, 47.3514928 ], + [ 8.799608, 47.3513038 ], + [ 8.7998305, 47.3514957 ], + [ 8.800146, 47.3517676 ], + [ 8.8002273, 47.3516404 ], + [ 8.800533399999999, 47.3511619 ], + [ 8.8005272, 47.3511305 ], + [ 8.8004974, 47.3510804 ], + [ 8.8005998, 47.350913 ], + [ 8.8008486, 47.3505132 ], + [ 8.8005851, 47.3504661 ], + [ 8.8002635, 47.3504085 ], + [ 8.8002415, 47.3499026 ], + [ 8.7997828, 47.3495001 ], + [ 8.7995563, 47.349538 ], + [ 8.7995879, 47.349414 ], + [ 8.7991381, 47.3491636 ], + [ 8.7979897, 47.3489652 ], + [ 8.7979735, 47.348814 ], + [ 8.7979777, 47.3487854 ], + [ 8.7979919, 47.3487582 ], + [ 8.7982346, 47.3484794 ], + [ 8.798128, 47.3484829 ], + [ 8.7981658, 47.3484381 ], + [ 8.7981969, 47.3483947 ], + [ 8.798222299999999, 47.3483524 ], + [ 8.7982417, 47.3483011 ], + [ 8.7982637, 47.3482237 ], + [ 8.7982771, 47.3481661 ], + [ 8.7983139, 47.3480185 ], + [ 8.7983449, 47.3479049 ], + [ 8.7983635, 47.3478546 ], + [ 8.7983613, 47.3478346 ], + [ 8.7983858, 47.3477573 ], + [ 8.7984121, 47.3476859 ], + [ 8.7984411, 47.3476219 ], + [ 8.7985689, 47.3473776 ], + [ 8.7985854, 47.3473449 ], + [ 8.7986785, 47.347168 ], + [ 8.7987036, 47.3471112 ], + [ 8.7987212, 47.3470579 ], + [ 8.798737599999999, 47.3469887 ], + [ 8.7987513, 47.3469064 ], + [ 8.7987717, 47.3467334 ], + [ 8.7988223, 47.3463514 ], + [ 8.798836099999999, 47.3462426 ], + [ 8.7988668, 47.3459872 ], + [ 8.7988703, 47.3459623 ], + [ 8.7988905, 47.3458479 ], + [ 8.7989121, 47.3457531 ], + [ 8.7989928, 47.3453822 ], + [ 8.7990824, 47.3449708 ], + [ 8.7990923, 47.3449356 ], + [ 8.7991041, 47.344895 ], + [ 8.7991212, 47.3448366 ], + [ 8.7991823, 47.3446731 ], + [ 8.7992902, 47.3443615 ], + [ 8.7998702, 47.3427143 ], + [ 8.7999438, 47.3425302 ], + [ 8.8000825, 47.3425071 ], + [ 8.8002083, 47.3425428 ], + [ 8.80032, 47.342579 ], + [ 8.8004527, 47.3426224 ], + [ 8.8005862, 47.3426693 ], + [ 8.8006864, 47.3427047 ], + [ 8.8008225, 47.3427554 ], + [ 8.8013019, 47.3429338 ], + [ 8.8016784, 47.3430358 ], + [ 8.8019838, 47.3430794 ], + [ 8.8022455, 47.3431118 ], + [ 8.8028906, 47.3431751 ], + [ 8.8034831, 47.3432213 ], + [ 8.8041138, 47.3423864 ], + [ 8.8049807, 47.341265 ], + [ 8.8054338, 47.3406213 ], + [ 8.8056167, 47.340294 ], + [ 8.8057723, 47.3399621 ], + [ 8.8058268, 47.3398396 ], + [ 8.8058548, 47.3396825 ], + [ 8.805914, 47.3394946 ], + [ 8.8059324, 47.3394026 ], + [ 8.8059487, 47.3392476 ], + [ 8.8059579, 47.3391597 ], + [ 8.8059832, 47.338887 ], + [ 8.8060485, 47.3379523 ], + [ 8.8060544, 47.3374764 ], + [ 8.8060713, 47.3370806 ], + [ 8.8042066, 47.337014 ], + [ 8.8039073, 47.3367585 ], + [ 8.8031939, 47.3372591 ], + [ 8.8008315, 47.3360811 ], + [ 8.7995421, 47.3354978 ], + [ 8.7966443, 47.3341868 ], + [ 8.7964021, 47.3340772 ], + [ 8.795371, 47.3337945 ], + [ 8.7937987, 47.3335942 ], + [ 8.7928113, 47.3335626 ], + [ 8.7914685, 47.3337376 ], + [ 8.7906841, 47.3337548 ], + [ 8.7903858, 47.3338032 ], + [ 8.7893547, 47.3339701 ], + [ 8.7891365, 47.3339149 ], + [ 8.7890172, 47.3338904 ], + [ 8.7889363, 47.3338769 ], + [ 8.788834, 47.3338551 ], + [ 8.7887442, 47.3338244 ], + [ 8.788535, 47.3337663 ], + [ 8.7880697, 47.3336187 ], + [ 8.787931, 47.3337558 ], + [ 8.7878566, 47.3338243 ], + [ 8.7875594, 47.3337813 ], + [ 8.7872412, 47.3337421 ], + [ 8.7872076, 47.333801 ], + [ 8.78634, 47.3336225 ], + [ 8.7862765, 47.3336094 ], + [ 8.7859847, 47.3335215 ], + [ 8.785575399999999, 47.3333981 ], + [ 8.7849348, 47.3332049 ], + [ 8.7847829, 47.3331591 ], + [ 8.7845498, 47.3330889 ], + [ 8.7829169, 47.3324172 ], + [ 8.7821517, 47.3321206 ], + [ 8.7820616, 47.3320857 ], + [ 8.7819594, 47.3321636 ], + [ 8.7818003, 47.332316 ], + [ 8.7816006, 47.3325776 ], + [ 8.7813665, 47.3328913 ], + [ 8.7811854, 47.3330719 ], + [ 8.7810292, 47.3332246 ], + [ 8.7808885, 47.3333235 ], + [ 8.7806444, 47.3335057 ], + [ 8.78037, 47.3336779 ], + [ 8.7801172, 47.333814 ], + [ 8.7800205, 47.3338664 ], + [ 8.7799242, 47.333929 ], + [ 8.7797605, 47.334012799999996 ], + [ 8.7796123, 47.3341119 ], + [ 8.7794189, 47.3342115 ], + [ 8.7792626, 47.3342901 ], + [ 8.7791358, 47.3343428 ], + [ 8.7789936, 47.3343803 ], + [ 8.7788571, 47.3344095 ], + [ 8.778763, 47.3344273 ], + [ 8.778701, 47.3344307 ], + [ 8.7786447, 47.3344307 ], + [ 8.7785776, 47.3344391 ], + [ 8.7786137, 47.3344894 ], + [ 8.7786545, 47.3345295 ], + [ 8.778676, 47.3345935 ], + [ 8.7786447, 47.3347326 ], + [ 8.7785941, 47.3348955 ], + [ 8.7785145, 47.335096 ], + [ 8.778351, 47.3355173 ], + [ 8.7782118, 47.335918 ], + [ 8.7781374, 47.3361252 ], + [ 8.778078, 47.3362482 ], + [ 8.7778652, 47.3362667 ], + [ 8.777556, 47.3362936 ], + [ 8.7773832, 47.3363275 ], + [ 8.7770841, 47.336471 ], + [ 8.7766441, 47.3367021 ], + [ 8.7763147, 47.336892399999996 ], + [ 8.7761416, 47.3370815 ], + [ 8.7761001, 47.3371733 ], + [ 8.7760617, 47.3372579 ], + [ 8.7759793, 47.3374145 ], + [ 8.7758162, 47.337680399999996 ], + [ 8.7757255, 47.337834 ], + [ 8.7756969, 47.3379278 ], + [ 8.7755918, 47.3382735 ], + [ 8.7755654, 47.3386494 ], + [ 8.7755564, 47.3387775 ], + [ 8.7755513, 47.3393923 ], + [ 8.7755496, 47.3395946 ], + [ 8.7755504, 47.3397251 ], + [ 8.7755108, 47.3398082 ], + [ 8.7751161, 47.3405127 ], + [ 8.7748889, 47.3410301 ], + [ 8.7747986, 47.3412454 ], + [ 8.7747672, 47.3413415 ], + [ 8.7747545, 47.3414421 ], + [ 8.774816, 47.3422347 ], + [ 8.7748182, 47.3422569 ], + [ 8.7748324, 47.3424597 ], + [ 8.774833, 47.3424874 ], + [ 8.7748339, 47.3425209 ], + [ 8.7748287, 47.3426786 ], + [ 8.7748179, 47.3428398 ], + [ 8.7747949, 47.343244 ], + [ 8.7747989, 47.343404 ], + [ 8.7748026, 47.343615 ], + [ 8.7747993, 47.3437474 ], + [ 8.7747862, 47.3442471 ], + [ 8.774799, 47.3445933 ], + [ 8.7747708, 47.3448533 ], + [ 8.7747692, 47.3448664 ], + [ 8.7747523, 47.3450103 ], + [ 8.7747483, 47.345045 ], + [ 8.7747257, 47.3454013 ], + [ 8.7747103, 47.3456424 ], + [ 8.7746436, 47.3458847 ], + [ 8.7745463, 47.3462291 ], + [ 8.7745001, 47.3463004 ], + [ 8.7744683, 47.3463505 ], + [ 8.774459, 47.3463767 ], + [ 8.7742577, 47.3466932 ], + [ 8.7741877, 47.3468055 ], + [ 8.7739815, 47.3470298 ], + [ 8.7739203, 47.3470966 ], + [ 8.7738863, 47.3471247 ], + [ 8.7738621, 47.3471504 ], + [ 8.7738276, 47.3471904 ], + [ 8.7737593, 47.3472712 ], + [ 8.7736662, 47.347387499999996 ], + [ 8.7735804, 47.3474939 ], + [ 8.773501, 47.3475959 ], + [ 8.7734002, 47.3477302 ], + [ 8.7732649, 47.3479105 ], + [ 8.7731969, 47.3480048 ], + [ 8.7731375, 47.3481109 ], + [ 8.773117599999999, 47.3481404 ], + [ 8.7730788, 47.3482111 ], + [ 8.7729043, 47.3485093 ], + [ 8.7728724, 47.348556 ], + [ 8.7728483, 47.3485863 ], + [ 8.7728111, 47.3486211 ], + [ 8.7727707, 47.3486567 ], + [ 8.772725, 47.3486849 ], + [ 8.7726785, 47.3487102 ], + [ 8.7726672, 47.3487215 ], + [ 8.7726577, 47.3487396 ], + [ 8.7725678, 47.3490458 ], + [ 8.7724455, 47.3494496 ], + [ 8.7724111, 47.3495293 ], + [ 8.772344, 47.3496546 ], + [ 8.7723313, 47.3496776 ], + [ 8.7723025, 47.3497168 ], + [ 8.7722655, 47.3497606 ], + [ 8.7722212, 47.3498075 ], + [ 8.7720425, 47.3500033 ], + [ 8.7720066, 47.3500598 ], + [ 8.7719838, 47.3501042 ], + [ 8.7719659, 47.3501508 ], + [ 8.7719475, 47.3502093 ], + [ 8.7719222, 47.3502882 ], + [ 8.7718215, 47.350528 ], + [ 8.7717461, 47.3506919 ], + [ 8.7717177, 47.3507454 ], + [ 8.7716637, 47.3507359 ], + [ 8.771654999999999, 47.3507506 ], + [ 8.7716319, 47.350786 ], + [ 8.7715808, 47.3508598 ], + [ 8.7714903, 47.3509798 ], + [ 8.7714388, 47.3510395 ], + [ 8.7713896, 47.351091 ], + [ 8.771329, 47.3511485 ], + [ 8.7713006, 47.3511705 ], + [ 8.7712422, 47.3512153 ], + [ 8.7711762, 47.3512565 ], + [ 8.771115, 47.3512908 ], + [ 8.7710122, 47.3513489 ], + [ 8.7709666, 47.3513771 ], + [ 8.7708471, 47.3514608 ], + [ 8.7707326, 47.3515466 ], + [ 8.7706248, 47.3516376 ], + [ 8.770569, 47.3516883 ], + [ 8.7705206, 47.3517368 ], + [ 8.770457799999999, 47.3518071 ], + [ 8.7704088, 47.3518667 ], + [ 8.7703422, 47.3519467 ], + [ 8.7702966, 47.3520087 ], + [ 8.770236, 47.3521028 ], + [ 8.7701856, 47.3522043 ], + [ 8.7701378, 47.3523096 ], + [ 8.7700623, 47.3524683 ], + [ 8.7699832, 47.3526122 ], + [ 8.7698614, 47.3528043 ], + [ 8.7698185, 47.3528751 ], + [ 8.7696943, 47.353068 ], + [ 8.7696291, 47.3531743 ], + [ 8.769528, 47.3533332 ], + [ 8.7695227, 47.3533415 ], + [ 8.7693154, 47.3536648 ], + [ 8.7693123, 47.3536761 ], + [ 8.7692471, 47.3539131 ], + [ 8.769181, 47.354149 ], + [ 8.7692253, 47.3541522 ], + [ 8.7691938, 47.35423 ], + [ 8.769153, 47.3543251 ], + [ 8.7690968, 47.3544325 ], + [ 8.7690315, 47.3545679 ], + [ 8.7689236, 47.3548039 ], + [ 8.7688618, 47.3549233 ], + [ 8.7688258, 47.3549897 ], + [ 8.7684093, 47.3556612 ], + [ 8.768318, 47.355797 ], + [ 8.7682117, 47.3559567 ], + [ 8.7680614, 47.3561664 ], + [ 8.7679354, 47.3563452 ], + [ 8.7677651, 47.3565585 ], + [ 8.7676842, 47.3566345 ], + [ 8.7675701, 47.3567336 ], + [ 8.7675042, 47.356812 ], + [ 8.7673228, 47.3570346 ], + [ 8.7669704, 47.3574681 ], + [ 8.766676499999999, 47.3578283 ], + [ 8.7664076, 47.3581586 ], + [ 8.7661547, 47.3584708 ], + [ 8.7661435, 47.3584837 ], + [ 8.7660953, 47.358543 ], + [ 8.7662536, 47.3587524 ], + [ 8.7663093, 47.3588319 ], + [ 8.766404, 47.3589798 ], + [ 8.7664974, 47.3591398 ], + [ 8.7666123, 47.3593344 ], + [ 8.7667704, 47.3596026 ], + [ 8.7668026, 47.3596661 ], + [ 8.7669334, 47.3599355 ], + [ 8.7670731, 47.3602278 ], + [ 8.7671977, 47.3604801 ], + [ 8.7672343, 47.3605556 ], + [ 8.7673, 47.3607006 ], + [ 8.7673194, 47.3607497 ], + [ 8.7673314, 47.3607982 ], + [ 8.7673429, 47.360861 ], + [ 8.7673465, 47.360907 ], + [ 8.7673419, 47.3610221 ], + [ 8.767339, 47.3610364 ], + [ 8.7673255, 47.3611262 ], + [ 8.7672263, 47.3614978 ], + [ 8.7671716, 47.3616919 ], + [ 8.7671754, 47.3617132 ], + [ 8.7670488, 47.3621431 ], + [ 8.7670275, 47.3622165 ], + [ 8.7670244, 47.3622912 ], + [ 8.7670212, 47.3623632 ], + [ 8.7670239, 47.3624409 ], + [ 8.7670336, 47.3627617 ], + [ 8.767036, 47.3627923 ], + [ 8.7670445, 47.362834 ], + [ 8.7670576, 47.3628598 ], + [ 8.7670756, 47.3628852 ], + [ 8.767102, 47.3629176 ], + [ 8.7671258, 47.3629412 ], + [ 8.7671596, 47.3629685 ], + [ 8.767189, 47.3629892 ], + [ 8.7672075, 47.3629999 ], + [ 8.7678192, 47.3632747 ], + [ 8.7681263, 47.3634135 ], + [ 8.7682486, 47.3634679 ], + [ 8.7682711, 47.3634789 ], + [ 8.7697312, 47.364191 ], + [ 8.7710107, 47.3647167 ], + [ 8.7716478, 47.3649784 ], + [ 8.7718381, 47.3650566 ], + [ 8.7718698, 47.3650661 ], + [ 8.7729755, 47.3653999 ], + [ 8.7730129, 47.3654112 ], + [ 8.7730794, 47.3653295 ], + [ 8.7732072, 47.3651724 ], + [ 8.7734295, 47.3652016 ], + [ 8.7736946, 47.3652364 ], + [ 8.774425, 47.3652608 ], + [ 8.774934, 47.3651956 ], + [ 8.7763779, 47.3651915 ], + [ 8.7768613, 47.3650986 ], + [ 8.7774444, 47.3651215 ], + [ 8.7774635, 47.3650681 ], + [ 8.7775193, 47.3649125 ], + [ 8.7775836, 47.3647331 ], + [ 8.7779845, 47.3643869 ], + [ 8.7786154, 47.3642669 ], + [ 8.7792133, 47.364386 ], + [ 8.7798408, 47.3644632 ], + [ 8.7809427, 47.3643181 ], + [ 8.781441, 47.3641602 ], + [ 8.7820989, 47.3635715 ], + [ 8.7825977, 47.3637267 ], + [ 8.7830081, 47.3632667 ], + [ 8.7830151, 47.3627576 ], + [ 8.7834803, 47.3622401 ], + [ 8.7854634, 47.3599028 ], + [ 8.7861779, 47.3584705 ], + [ 8.7868851, 47.358697 ], + [ 8.7869, 47.3586739 ], + [ 8.7869098, 47.3586589 ], + [ 8.78694, 47.3586129 ], + [ 8.7869657, 47.3585819 ], + [ 8.7869898, 47.3585516 ], + [ 8.7870244, 47.3585133 ], + [ 8.7870785, 47.3584596 ], + [ 8.7873721, 47.3581628 ], + [ 8.7874972, 47.3580361 ], + [ 8.7875036, 47.3580294 ], + [ 8.7875625, 47.3579707 ], + [ 8.7876158, 47.3579169 ], + [ 8.7877731, 47.3577581 ], + [ 8.78787, 47.3576643 ], + [ 8.7880055, 47.3575257 ], + [ 8.7880426, 47.357487 ], + [ 8.7882742, 47.3572544 ], + [ 8.7886074, 47.3569181 ], + [ 8.7886442, 47.3568713 ], + [ 8.7886649, 47.356839 ], + [ 8.7886831, 47.3568068 ], + [ 8.7886916, 47.35678 ], + [ 8.7882056, 47.3566721 ], + [ 8.7878249, 47.356566 ], + [ 8.788781, 47.3550186 ], + [ 8.7895376, 47.3551994 ], + [ 8.789953, 47.355298 ], + [ 8.7903235, 47.3553889 ], + [ 8.7903743, 47.3551765 ], + [ 8.7904298, 47.3549485 ], + [ 8.7904638, 47.3548209 ], + [ 8.7904782, 47.3547715 ], + [ 8.790481400000001, 47.354765 ], + [ 8.7904947, 47.3547373 ], + [ 8.7905208, 47.35469 ], + [ 8.7905439, 47.3546513 ], + [ 8.7905646, 47.3546206 ], + [ 8.7905869, 47.3545888 ], + [ 8.7906689, 47.354492 ], + [ 8.7907429, 47.3544082 ], + [ 8.7907872, 47.3543617 ], + [ 8.7908373, 47.354314 ], + [ 8.791105, 47.3541069 ], + [ 8.7911659, 47.35406 ], + [ 8.7912155, 47.3540275 ], + [ 8.7912775, 47.3539915 ], + [ 8.7913429, 47.3539586 ], + [ 8.7913919, 47.353934 ], + [ 8.7914353, 47.3539175 ], + [ 8.7914755, 47.3539033 ], + [ 8.7915502, 47.3538821 ], + [ 8.7916086, 47.3538671 ], + [ 8.7916506, 47.3538575 ], + [ 8.791713, 47.3538405 ], + [ 8.7918395, 47.3538061 ], + [ 8.7919686, 47.3537732 ], + [ 8.7920714, 47.3537479 ], + [ 8.7921429, 47.3537306 ], + [ 8.7921709, 47.3537239 ], + [ 8.7922251, 47.3537075 ], + [ 8.7921224, 47.353638 ], + [ 8.7923729, 47.3534683 ], + [ 8.792394999999999, 47.3534615 ], + [ 8.7924486, 47.3534544 ], + [ 8.7925164, 47.3534522 ], + [ 8.7925604, 47.3534596 ], + [ 8.7925887, 47.3534714 ], + [ 8.792603100000001, 47.3534774 ], + [ 8.7926316, 47.3534595 ], + [ 8.7926998, 47.3534083 ], + [ 8.792993899999999, 47.3538148 ], + [ 8.7928352, 47.3539209 ], + [ 8.7934418, 47.3546519 ], + [ 8.7934594, 47.3546522 ], + [ 8.7939135, 47.3546469 ], + [ 8.7939367, 47.3546167 ], + [ 8.7939753, 47.3545717 ], + [ 8.7940316, 47.3545062 ], + [ 8.794059, 47.3544809 ], + [ 8.7940905, 47.3544504 ], + [ 8.794122, 47.3544186 ], + [ 8.7941632, 47.3543794 ], + [ 8.794167999999999, 47.3543752 ], + [ 8.7942173, 47.3543266 ], + [ 8.7942802, 47.3542645 ], + [ 8.7943204, 47.3542195 ], + [ 8.7943677, 47.3541596 ], + [ 8.794456, 47.3540509 ], + [ 8.7945169, 47.353974 ], + [ 8.7946091, 47.3538585 ], + [ 8.7947446, 47.3536888 ], + [ 8.7948483, 47.3535403 ], + [ 8.7949702, 47.3533793 ], + [ 8.7951063, 47.3532143 ], + [ 8.7952816, 47.3530137 ], + [ 8.795404, 47.3528702 ], + [ 8.7954988, 47.3527679 ], + [ 8.7956193, 47.3526672 ], + [ 8.7957288, 47.3525823 ], + [ 8.795842799999999, 47.3524655 ], + [ 8.795846, 47.3524621 ], + [ 8.7958969, 47.3524149 ], + [ 8.7959747, 47.3523509 ], + [ 8.7960292, 47.3523123 ], + [ 8.7961106, 47.3522617 ], + [ 8.796202, 47.352211 ], + [ 8.7962625, 47.3521834 ], + [ 8.7963239, 47.3521587 ], + [ 8.7963944, 47.3521344 ], + [ 8.7964683, 47.3521124 ], + [ 8.796516, 47.3521009 ], + [ 8.7966026, 47.3520899 ], + [ 8.7966704, 47.3520891 ], + [ 8.7967872, 47.3520939 ], + [ 8.7968718, 47.3521014 ], + [ 8.7969606, 47.3521155 ], + [ 8.7970546, 47.3521346 ], + [ 8.7970946, 47.3521433 ], + [ 8.7971554, 47.3521603 ], + [ 8.7971979, 47.352175 ], + [ 8.7972031, 47.3521719 ], + [ 8.7972051, 47.3521656 ], + [ 8.7971804, 47.352134 ], + [ 8.797161299999999, 47.3521022 ], + [ 8.7971379, 47.352057 ], + [ 8.7971198, 47.3519996 ], + [ 8.7971076, 47.3519426 ], + [ 8.7970988, 47.3518871 ], + [ 8.7970844, 47.3516796 ], + [ 8.7971248, 47.3516588 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "WZV0024", + "country" : "CHE", + "name" : [ + { + "text" : "Wasser- und Zugvogelreservat Pfäffikersee", + "lang" : "de-CH" + }, + { + "text" : "Réserve d'oiseaux d'eau et de migrateurs Pfäffikersee", + "lang" : "fr-CH" + }, + { + "text" : "Riserva di uccelli acquatici e migratori Pfäffikersee", + "lang" : "it-CH" + }, + { + "text" : "Water Bird and Migratory Bird Reserves Pfäffikersee", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.4018961, 46.6618285 ], + [ 9.4019885, 46.6615635 ], + [ 9.402022, 46.6615859 ], + [ 9.402089, 46.661046 ], + [ 9.4020739, 46.6605415 ], + [ 9.4020827, 46.6597501 ], + [ 9.4020321, 46.6595949 ], + [ 9.4020266, 46.659578 ], + [ 9.4019292, 46.6592796 ], + [ 9.4010649, 46.6586943 ], + [ 9.4006268, 46.6583697 ], + [ 9.4000298, 46.6580593 ], + [ 9.3991145, 46.6577294 ], + [ 9.3982508, 46.6575638 ], + [ 9.3971784, 46.6574309 ], + [ 9.3958593, 46.6573182 ], + [ 9.394715, 46.6572747 ], + [ 9.3940136, 46.6566272 ], + [ 9.393155, 46.6560591 ], + [ 9.3923953, 46.6556023 ], + [ 9.3914535, 46.6550809 ], + [ 9.3908501, 46.6547954 ], + [ 9.3903517, 46.6544041 ], + [ 9.3895137, 46.6539532 ], + [ 9.3890037, 46.6535349 ], + [ 9.3887489, 46.6531959 ], + [ 9.3884206, 46.6528131 ], + [ 9.3881733, 46.6523881 ], + [ 9.3877198, 46.6519079 ], + [ 9.3872751, 46.6514661 ], + [ 9.3868061, 46.6510742 ], + [ 9.3862601, 46.650564 ], + [ 9.3857982, 46.6500975 ], + [ 9.385232, 46.649572 ], + [ 9.3849825, 46.6491063 ], + [ 9.3848081, 46.6487321 ], + [ 9.3846629, 46.6482375 ], + [ 9.3845967, 46.6479653 ], + [ 9.3844827, 46.6473392 ], + [ 9.3843323, 46.6468154 ], + [ 9.3842073, 46.6461806 ], + [ 9.3839181, 46.6456998 ], + [ 9.383419, 46.64513 ], + [ 9.3829317, 46.6446821 ], + [ 9.382345, 46.6441297 ], + [ 9.3817046, 46.6436934 ], + [ 9.3811669, 46.6434088 ], + [ 9.3806335, 46.6432215 ], + [ 9.3800543, 46.6430326 ], + [ 9.3794028, 46.6427636 ], + [ 9.3788716, 46.6424564 ], + [ 9.3781201, 46.6420401 ], + [ 9.3775019, 46.6416961 ], + [ 9.3767813, 46.6412295 ], + [ 9.3761625, 46.6406662 ], + [ 9.3755597, 46.6402045 ], + [ 9.3749015, 46.6398362 ], + [ 9.3738813, 46.6394832 ], + [ 9.3732102, 46.6393026 ], + [ 9.3722118, 46.6391954 ], + [ 9.3713917, 46.639049 ], + [ 9.3705201, 46.638994 ], + [ 9.3697483, 46.6390093 ], + [ 9.3689941, 46.6389702 ], + [ 9.3681478, 46.6389847 ], + [ 9.367389, 46.639 ], + [ 9.3667259, 46.6390202 ], + [ 9.3660931, 46.6390876 ], + [ 9.3654221, 46.6392526 ], + [ 9.3649602, 46.6394186 ], + [ 9.3647489, 46.6395396 ], + [ 9.36434, 46.63982 ], + [ 9.3636137, 46.6400831 ], + [ 9.362946, 46.6403407 ], + [ 9.3621073, 46.6402216 ], + [ 9.3615195, 46.6400667 ], + [ 9.3609149, 46.6398262 ], + [ 9.3606345, 46.6388528 ], + [ 9.3605224, 46.6379285 ], + [ 9.3603137, 46.637225 ], + [ 9.3599938, 46.6364284 ], + [ 9.3595718, 46.6356269 ], + [ 9.3592932, 46.6354396 ], + [ 9.3587304, 46.6350629 ], + [ 9.3581636, 46.6348759 ], + [ 9.3576231, 46.6347586 ], + [ 9.3570039, 46.6345432 ], + [ 9.3563544, 46.6344164 ], + [ 9.355799, 46.63434 ], + [ 9.3551639, 46.6343214 ], + [ 9.3549474, 46.6339477 ], + [ 9.3546298, 46.6333974 ], + [ 9.3543975, 46.6326694 ], + [ 9.3543379, 46.6319339 ], + [ 9.3545199, 46.6312645 ], + [ 9.3549029, 46.6305555 ], + [ 9.3552436, 46.6296641 ], + [ 9.3556682, 46.6289318 ], + [ 9.3563139, 46.6283312 ], + [ 9.3571544, 46.6272417 ], + [ 9.3576764, 46.6268397 ], + [ 9.3582252, 46.6263855 ], + [ 9.3589402, 46.6258082 ], + [ 9.358969, 46.6257473 ], + [ 9.3589671, 46.6256689 ], + [ 9.358960100000001, 46.6254493 ], + [ 9.3587382, 46.625223 ], + [ 9.3583526, 46.6251252 ], + [ 9.3575722, 46.6251247 ], + [ 9.3568526, 46.6249283 ], + [ 9.355996, 46.6245962 ], + [ 9.3557096, 46.6244625 ], + [ 9.3555252, 46.6244192 ], + [ 9.3547354, 46.6246596 ], + [ 9.3543939, 46.6249052 ], + [ 9.3538314, 46.6249703 ], + [ 9.3530044, 46.6251081 ], + [ 9.3526311, 46.6253999 ], + [ 9.3520371, 46.6255229 ], + [ 9.3514848, 46.62537 ], + [ 9.3507835, 46.6252537 ], + [ 9.3506832, 46.6252321 ], + [ 9.3504152, 46.6251555 ], + [ 9.350272499999999, 46.6248135 ], + [ 9.3501697, 46.6247002 ], + [ 9.3500437, 46.6243923 ], + [ 9.3500229, 46.6242435 ], + [ 9.3500381, 46.6236354 ], + [ 9.3499037, 46.622995 ], + [ 9.3496179, 46.6223224 ], + [ 9.3494923, 46.622003 ], + [ 9.3492778, 46.6214783 ], + [ 9.3489182, 46.6210934 ], + [ 9.3485532, 46.6205595 ], + [ 9.3482561, 46.6203513 ], + [ 9.3478085, 46.6200653 ], + [ 9.3472159, 46.619672 ], + [ 9.3468375, 46.6192415 ], + [ 9.3458722, 46.6182321 ], + [ 9.3457329, 46.6177092 ], + [ 9.3456056, 46.6171307 ], + [ 9.3453748, 46.6163486 ], + [ 9.3449744, 46.6157119 ], + [ 9.3437471, 46.614628 ], + [ 9.342989, 46.614237 ], + [ 9.3422055, 46.6141447 ], + [ 9.3414579, 46.6141206 ], + [ 9.3403636, 46.6141701 ], + [ 9.339585, 46.6142382 ], + [ 9.3388557, 46.6142941 ], + [ 9.3379322, 46.6144903 ], + [ 9.3372224, 46.6146608 ], + [ 9.3363343, 46.6149368 ], + [ 9.3359427, 46.6151715 ], + [ 9.3354527, 46.615465 ], + [ 9.3346796, 46.6157164 ], + [ 9.3336609, 46.616086 ], + [ 9.3329906, 46.6164508 ], + [ 9.3324787, 46.6165611 ], + [ 9.3315483, 46.6165394 ], + [ 9.3306302, 46.616357 ], + [ 9.3296588, 46.6160952 ], + [ 9.3289223, 46.6158759 ], + [ 9.3279991, 46.6155445 ], + [ 9.3276273, 46.6153202 ], + [ 9.3261595, 46.6150765 ], + [ 9.3251869, 46.6147573 ], + [ 9.3246336, 46.6145699 ], + [ 9.3237633, 46.6143294 ], + [ 9.322243, 46.6140062 ], + [ 9.3214564, 46.613799 ], + [ 9.3201189, 46.6134732 ], + [ 9.3190744, 46.6129369 ], + [ 9.3186707, 46.6127588 ], + [ 9.3179578, 46.6122296 ], + [ 9.3173317, 46.6118252 ], + [ 9.3170774, 46.6116223 ], + [ 9.3164055, 46.6113561 ], + [ 9.3157535, 46.6111929 ], + [ 9.3149697, 46.6110889 ], + [ 9.3144049, 46.6110622 ], + [ 9.3137899, 46.6110476 ], + [ 9.3134221, 46.6109609 ], + [ 9.3128975, 46.6107978 ], + [ 9.3128654, 46.6108612 ], + [ 9.3120638, 46.6110903 ], + [ 9.3117693, 46.6112572 ], + [ 9.3113163, 46.6113726 ], + [ 9.3107785, 46.6116784 ], + [ 9.3100378, 46.6121584 ], + [ 9.30944, 46.6126182 ], + [ 9.309015, 46.6127871 ], + [ 9.3084952, 46.6128587 ], + [ 9.3068027, 46.6130034 ], + [ 9.3060602, 46.6131014 ], + [ 9.3058669, 46.6131267 ], + [ 9.3047197, 46.6139374 ], + [ 9.3045885, 46.6140977 ], + [ 9.3043689, 46.614366 ], + [ 9.3038111, 46.61523 ], + [ 9.3028165, 46.6155432 ], + [ 9.3018851, 46.615892 ], + [ 9.301811, 46.6159196 ], + [ 9.3019227, 46.6159637 ], + [ 9.3022478, 46.6160924 ], + [ 9.3022282, 46.6164691 ], + [ 9.3024146, 46.6171425 ], + [ 9.302325, 46.6179311 ], + [ 9.3018444, 46.6182654 ], + [ 9.3014616, 46.6185228 ], + [ 9.3010558, 46.6186362 ], + [ 9.300655, 46.6186364 ], + [ 9.3002876, 46.6185357 ], + [ 9.3000072, 46.6183332 ], + [ 9.2997238, 46.6180427 ], + [ 9.2996072, 46.6178312 ], + [ 9.2994059, 46.6175332 ], + [ 9.2962415, 46.6176172 ], + [ 9.2957774, 46.617625 ], + [ 9.2953865, 46.6176029 ], + [ 9.2950301, 46.6175859 ], + [ 9.2946733, 46.6175805 ], + [ 9.2943903, 46.6175622 ], + [ 9.2941162, 46.6175438 ], + [ 9.2938414, 46.6175255 ], + [ 9.2936334, 46.617506 ], + [ 9.293393, 46.6174929 ], + [ 9.2930605, 46.6174812 ], + [ 9.2928041, 46.6175028 ], + [ 9.2924411, 46.6175547 ], + [ 9.2920789, 46.6176296 ], + [ 9.2918058, 46.6176629 ], + [ 9.291599, 46.6176779 ], + [ 9.2913258, 46.6176825 ], + [ 9.2911015, 46.6176863 ], + [ 9.290678400000001, 46.6176762 ], + [ 9.2902805, 46.6176885 ], + [ 9.2897408, 46.6176574 ], + [ 9.2895231, 46.6176151 ], + [ 9.2892336, 46.6176199 ], + [ 9.288834, 46.6175807 ], + [ 9.2884361, 46.6175931 ], + [ 9.288174, 46.6176837 ], + [ 9.2878875, 46.6178032 ], + [ 9.2877085, 46.6179152 ], + [ 9.2874709, 46.6179823 ], + [ 9.2869728, 46.6182144 ], + [ 9.2867363, 46.6183389 ], + [ 9.2865321, 46.6184284 ], + [ 9.2862425, 46.6184561 ], + [ 9.2859449, 46.6184898 ], + [ 9.2855318, 46.618531 ], + [ 9.2852255, 46.6185477 ], + [ 9.2848529, 46.6185596 ], + [ 9.2843054, 46.618563 ], + [ 9.2838988, 46.6185584 ], + [ 9.2833927, 46.6185553 ], + [ 9.282962, 46.6185855 ], + [ 9.2825669, 46.6186552 ], + [ 9.2823412, 46.6186189 ], + [ 9.2820417, 46.6185952 ], + [ 9.2818328, 46.618547 ], + [ 9.2815235, 46.6184776 ], + [ 9.2811402, 46.6184151 ], + [ 9.280782, 46.6183694 ], + [ 9.2805483, 46.6183389 ], + [ 9.2803065, 46.6182856 ], + [ 9.2800946, 46.618223 ], + [ 9.2799337, 46.6186035 ], + [ 9.2797143, 46.6188466 ], + [ 9.2794558, 46.619118 ], + [ 9.2793593, 46.6194237 ], + [ 9.279276, 46.6197107 ], + [ 9.2792503, 46.6201536 ], + [ 9.2793492, 46.6206865 ], + [ 9.2793308, 46.6209355 ], + [ 9.2791462, 46.6214132 ], + [ 9.2792669, 46.6218167 ], + [ 9.279412, 46.6221461 ], + [ 9.2793926, 46.6223676 ], + [ 9.2790518, 46.6229538 ], + [ 9.2786818, 46.6234759 ], + [ 9.2781861, 46.6238525 ], + [ 9.2776266, 46.6243223 ], + [ 9.2774742, 46.6245459 ], + [ 9.2775886, 46.6247653 ], + [ 9.2778821, 46.6251384 ], + [ 9.277942, 46.6253401 ], + [ 9.277913, 46.6256631 ], + [ 9.2780444, 46.6267669 ], + [ 9.2779082, 46.6270825 ], + [ 9.2779214, 46.6274693 ], + [ 9.277998, 46.6277538 ], + [ 9.2783863, 46.6289456 ], + [ 9.2784588, 46.6295158 ], + [ 9.2785036, 46.6300404 ], + [ 9.2784657, 46.630511 ], + [ 9.2785333, 46.6309153 ], + [ 9.2784362, 46.6312026 ], + [ 9.2786041, 46.6314119 ], + [ 9.2786384, 46.6316509 ], + [ 9.2785685, 46.6323341 ], + [ 9.2783501, 46.6329919 ], + [ 9.2783363, 46.6333792 ], + [ 9.2784194, 46.6334699 ], + [ 9.278624, 46.6334614 ], + [ 9.278813, 46.6334009 ], + [ 9.2790006, 46.6333232 ], + [ 9.2791487, 46.6332863 ], + [ 9.2793301, 46.6332431 ], + [ 9.2796198, 46.6332153 ], + [ 9.279718, 46.6331735 ], + [ 9.2797971, 46.6330747 ], + [ 9.2798523, 46.6329704 ], + [ 9.2798883, 46.6328034 ], + [ 9.2801441, 46.6327648 ], + [ 9.2803599, 46.6327726 ], + [ 9.2806088, 46.6327685 ], + [ 9.2807824, 46.6327598 ], + [ 9.2811324, 46.6327998 ], + [ 9.2815251, 46.632873599999996 ], + [ 9.2816814, 46.6328367 ], + [ 9.2818537, 46.6327879 ], + [ 9.2820175, 46.6327335 ], + [ 9.2822808, 46.6326488 ], + [ 9.2825356, 46.6325814 ], + [ 9.2828333, 46.6325478 ], + [ 9.2830977, 46.6325204 ], + [ 9.2833624, 46.6325045 ], + [ 9.2837206, 46.6325444 ], + [ 9.2839648, 46.6326436 ], + [ 9.283866, 46.6326683 ], + [ 9.2836936, 46.6327342 ], + [ 9.2836405, 46.6328786 ], + [ 9.2834951, 46.6329957 ], + [ 9.283382, 46.6330779 ], + [ 9.2832094, 46.6331382 ], + [ 9.2830958, 46.633209 ], + [ 9.2830103, 46.6333826 ], + [ 9.2830242, 46.6335487 ], + [ 9.2831276, 46.6334207 ], + [ 9.2832304, 46.6335165 ], + [ 9.2834583, 46.6336389 ], + [ 9.2836378, 46.6337794 ], + [ 9.2838883, 46.6340851 ], + [ 9.2838899, 46.634372 ], + [ 9.2840114, 46.6345364 ], + [ 9.2840911, 46.6346956 ], + [ 9.2841555, 46.634884 ], + [ 9.2841867, 46.6350555 ], + [ 9.2842828, 46.6352146 ], + [ 9.2844619, 46.6353435 ], + [ 9.2844895, 46.6354349 ], + [ 9.2845961, 46.6356397 ], + [ 9.2846929, 46.6357987 ], + [ 9.2849205, 46.6361507 ], + [ 9.2849465, 46.6361961 ], + [ 9.2850938, 46.6363716 ], + [ 9.2851982, 46.6365362 ], + [ 9.2853116, 46.6367007 ], + [ 9.2854421, 46.6368649 ], + [ 9.2855985, 46.6370689 ], + [ 9.2855936, 46.6371894 ], + [ 9.2857411, 46.6373707 ], + [ 9.2859027, 46.6374884 ], + [ 9.2861377, 46.637582 ], + [ 9.2863959, 46.6376121 ], + [ 9.2867281, 46.6376066 ], + [ 9.2869995, 46.6375447 ], + [ 9.2872177, 46.6375984 ], + [ 9.2873639, 46.6377681 ], + [ 9.2876318, 46.6378438 ], + [ 9.287731, 46.6378307 ], + [ 9.2877847, 46.6379446 ], + [ 9.2878746, 46.6381382 ], + [ 9.2879299, 46.6382979 ], + [ 9.2879748, 46.6384177 ], + [ 9.2880707, 46.638548 ], + [ 9.2881899, 46.6386436 ], + [ 9.2883986, 46.6386803 ], + [ 9.288574, 46.6387002 ], + [ 9.2887565, 46.6387144 ], + [ 9.2889238, 46.6387575 ], + [ 9.2890506, 46.6388128 ], + [ 9.2891939, 46.6388735 ], + [ 9.2893522, 46.6388938 ], + [ 9.2896673, 46.6388942 ], + [ 9.2899516, 46.6389698 ], + [ 9.2902774, 46.639016 ], + [ 9.2905354, 46.6390403 ], + [ 9.290381, 46.6391577 ], + [ 9.2903089, 46.639222 ], + [ 9.2902278, 46.6392865 ], + [ 9.2901308, 46.6393627 ], + [ 9.2900092, 46.6394336 ], + [ 9.2899024, 46.6394641 ], + [ 9.2897395, 46.6395701 ], + [ 9.2897016, 46.6396798 ], + [ 9.2896301, 46.6397613 ], + [ 9.2894518, 46.6398962 ], + [ 9.2893297, 46.6399557 ], + [ 9.2891828, 46.6400269 ], + [ 9.288987, 46.6401278 ], + [ 9.2888246, 46.640251 ], + [ 9.2887109, 46.6403161 ], + [ 9.288582, 46.6404387 ], + [ 9.2885061, 46.6406293 ], + [ 9.2884769, 46.640756 ], + [ 9.2883665, 46.6409414 ], + [ 9.2883993, 46.6411589 ], + [ 9.2884283, 46.6412905 ], + [ 9.2884962, 46.641582 ], + [ 9.2885163, 46.6416906 ], + [ 9.2885031, 46.6417826 ], + [ 9.2884919, 46.641932 ], + [ 9.2885983, 46.6421541 ], + [ 9.2888813, 46.6424075 ], + [ 9.2890005, 46.6425031 ], + [ 9.2892222, 46.642683 ], + [ 9.2894181, 46.6428461 ], + [ 9.289646, 46.6429454 ], + [ 9.2898807, 46.6430277 ], + [ 9.2900585, 46.6431165 ], + [ 9.290386, 46.6432372 ], + [ 9.2905027, 46.6432583 ], + [ 9.2904967, 46.6433215 ], + [ 9.2905078, 46.6434073 ], + [ 9.2905286, 46.6435389 ], + [ 9.2905495, 46.6436476 ], + [ 9.2904956, 46.6437919 ], + [ 9.2904974, 46.6438435 ], + [ 9.2905801, 46.644066 ], + [ 9.2907101, 46.644236 ], + [ 9.2909143, 46.6443817 ], + [ 9.2912914, 46.6444492 ], + [ 9.2918567, 46.6445506 ], + [ 9.2921525, 46.6445827 ], + [ 9.2922617, 46.6446454 ], + [ 9.2922318, 46.6449409 ], + [ 9.2922406, 46.6451987 ], + [ 9.2919843, 46.6455347 ], + [ 9.2918834, 46.6457114 ], + [ 9.2919836, 46.6458941 ], + [ 9.2918701, 46.6461079 ], + [ 9.2917134, 46.6462303 ], + [ 9.2916803, 46.6464335 ], + [ 9.2919302, 46.6466967 ], + [ 9.2921142, 46.6469886 ], + [ 9.2923666, 46.6473255 ], + [ 9.2930247, 46.6477756 ], + [ 9.2932978, 46.6479279 ], + [ 9.2936883, 46.6480045 ], + [ 9.2938524, 46.6481216 ], + [ 9.2938979, 46.6482568 ], + [ 9.2938846, 46.6484642 ], + [ 9.2942261, 46.6488504 ], + [ 9.2947629, 46.6492841 ], + [ 9.2950823, 46.649619799999996 ], + [ 9.2956916, 46.6496467 ], + [ 9.2962541, 46.6496653 ], + [ 9.2965112, 46.6495413 ], + [ 9.2969815, 46.6492064 ], + [ 9.2974118, 46.6488723 ], + [ 9.2978369, 46.6486262 ], + [ 9.2980229, 46.6487149 ], + [ 9.2982497, 46.6488029 ], + [ 9.2984611, 46.6489198 ], + [ 9.2988002, 46.6491149 ], + [ 9.2990373, 46.649266 ], + [ 9.2992412, 46.6494001 ], + [ 9.2995461, 46.6495729 ], + [ 9.2998592, 46.6497742 ], + [ 9.3001155, 46.6499823 ], + [ 9.3003447, 46.6501391 ], + [ 9.3004239, 46.6502581 ], + [ 9.3003942, 46.6503677 ], + [ 9.3004256, 46.650568 ], + [ 9.3004598, 46.6508256 ], + [ 9.3005543, 46.6511741 ], + [ 9.3007719, 46.6514687 ], + [ 9.3008658, 46.6518 ], + [ 9.3011427, 46.6524411 ], + [ 9.301204, 46.6526079 ], + [ 9.3013613, 46.6528582 ], + [ 9.3019161, 46.653103 ], + [ 9.3029266, 46.6535597 ], + [ 9.30383, 46.6537998 ], + [ 9.3046268, 46.6537661 ], + [ 9.3051854, 46.6535292 ], + [ 9.3057759, 46.6532689 ], + [ 9.3064955, 46.6528693 ], + [ 9.3074087, 46.6522606 ], + [ 9.3086542, 46.6516474 ], + [ 9.3095585, 46.6513026 ], + [ 9.3102155, 46.6510528 ], + [ 9.3106286, 46.6509555 ], + [ 9.3114556, 46.6508296 ], + [ 9.312138, 46.6508663 ], + [ 9.3132315, 46.650842 ], + [ 9.3139929, 46.6504741 ], + [ 9.3142626, 46.650293 ], + [ 9.3146138, 46.6500823 ], + [ 9.3149744, 46.6499056 ], + [ 9.3153775, 46.6497804 ], + [ 9.3157813, 46.6496491 ], + [ 9.3161591, 46.6495011 ], + [ 9.3164973, 46.6494108 ], + [ 9.3167766, 46.6493156 ], + [ 9.3168664, 46.6492687 ], + [ 9.3172799, 46.6492062 ], + [ 9.3179962, 46.6489736 ], + [ 9.3185115, 46.648692 ], + [ 9.3189206, 46.6484575 ], + [ 9.3191973, 46.6482648 ], + [ 9.3195078, 46.6480602 ], + [ 9.3197946, 46.6479248 ], + [ 9.3200004, 46.6478534 ], + [ 9.3207011, 46.6476898 ], + [ 9.3212968, 46.6476078 ], + [ 9.3218772, 46.6475547 ], + [ 9.3225072, 46.647541 ], + [ 9.3232136, 46.6475666 ], + [ 9.3235879, 46.6475735 ], + [ 9.3240931, 46.6475442 ], + [ 9.3245847, 46.6475896 ], + [ 9.3249408, 46.647568 ], + [ 9.3257546, 46.6475577 ], + [ 9.3263034, 46.6475796 ], + [ 9.3270823, 46.6475297 ], + [ 9.3278788, 46.6475139 ], + [ 9.3287295, 46.6476466 ], + [ 9.329312, 46.6477023 ], + [ 9.3296789, 46.647755 ], + [ 9.3299625, 46.6477859 ], + [ 9.3302306, 46.6478857 ], + [ 9.3303991, 46.6479639 ], + [ 9.330419299999999, 46.6481185 ], + [ 9.3305352, 46.6483979 ], + [ 9.3306569, 46.6486086 ], + [ 9.3307364, 46.6487797 ], + [ 9.3308832, 46.6489842 ], + [ 9.3309687, 46.6490691 ], + [ 9.3310717, 46.6491883 ], + [ 9.3314627, 46.6492063 ], + [ 9.3317539, 46.6492428 ], + [ 9.3321379, 46.6493182 ], + [ 9.33264, 46.6494552 ], + [ 9.3330177, 46.6496053 ], + [ 9.3331464, 46.6497356 ], + [ 9.333294, 46.6499859 ], + [ 9.3333504, 46.6502204 ], + [ 9.3335297, 46.6503959 ], + [ 9.333758, 46.6505478 ], + [ 9.3339304, 46.6507807 ], + [ 9.3340939, 46.6509966 ], + [ 9.334185399999999, 46.6512993 ], + [ 9.3343085, 46.6515501 ], + [ 9.3344307, 46.6517492 ], + [ 9.3346186, 46.651936 ], + [ 9.3349787, 46.6520748 ], + [ 9.3353136, 46.6521681 ], + [ 9.3357066, 46.6522664 ], + [ 9.3360299, 46.6522394 ], + [ 9.3363882, 46.6522807 ], + [ 9.3367964, 46.6523214 ], + [ 9.3372698, 46.6523384 ], + [ 9.337637, 46.6523968 ], + [ 9.3380704, 46.6524601 ], + [ 9.3383708, 46.6525252 ], + [ 9.3386222, 46.6525907 ], + [ 9.3387391, 46.652618 ], + [ 9.3389803, 46.6527415 ], + [ 9.3394343, 46.6527155 ], + [ 9.340104, 46.6527136 ], + [ 9.3406909, 46.653054 ], + [ 9.3412524, 46.6534133 ], + [ 9.3415968, 46.6536839 ], + [ 9.3416888, 46.6540235 ], + [ 9.3416173, 46.6542643 ], + [ 9.3415494, 46.654634 ], + [ 9.3415202, 46.6549386 ], + [ 9.3414088, 46.6551847 ], + [ 9.3414548, 46.6557277 ], + [ 9.3414257, 46.6560599 ], + [ 9.3412959, 46.6561543 ], + [ 9.3408838, 46.6562349 ], + [ 9.3405934, 46.6563596 ], + [ 9.3404771, 46.6564906 ], + [ 9.3404955, 46.6566193 ], + [ 9.3406602, 46.6567271 ], + [ 9.3409593, 46.6568696 ], + [ 9.3411685, 46.6571057 ], + [ 9.3412352, 46.6574916 ], + [ 9.3411673, 46.6578338 ], + [ 9.3412491, 46.6582564 ], + [ 9.3413677, 46.6585862 ], + [ 9.3417772, 46.6588005 ], + [ 9.3419549, 46.658908 ], + [ 9.3421028, 46.6593019 ], + [ 9.3423312, 46.659502 ], + [ 9.3425425, 46.6599119 ], + [ 9.342586, 46.6604261 ], + [ 9.342664599999999, 46.6605944 ], + [ 9.3426136, 46.6610002 ], + [ 9.3422477, 46.6617442 ], + [ 9.3422946, 46.6624956 ], + [ 9.3422987, 46.6625646 ], + [ 9.3423081, 46.662715 ], + [ 9.3423368, 46.6627644 ], + [ 9.3424473, 46.6629556 ], + [ 9.3424568, 46.6632254 ], + [ 9.342287, 46.6633686 ], + [ 9.342076, 46.6635467 ], + [ 9.3420556, 46.663709 ], + [ 9.3420773, 46.6637692 ], + [ 9.3421279, 46.6639058 ], + [ 9.3421368, 46.6641576 ], + [ 9.3419803, 46.6645381 ], + [ 9.3417081, 46.6649746 ], + [ 9.341395, 46.6653387 ], + [ 9.3417557, 46.6655816 ], + [ 9.3420767, 46.6657424 ], + [ 9.3424136, 46.6658685 ], + [ 9.3426999, 46.6659725 ], + [ 9.3428938, 46.6660494 ], + [ 9.3431803, 46.6661592 ], + [ 9.3433893, 46.6662014 ], + [ 9.3436067, 46.6662263 ], + [ 9.3439565, 46.6662547 ], + [ 9.3446955, 46.6662474 ], + [ 9.3454905, 46.6661816 ], + [ 9.3459967, 46.6661726 ], + [ 9.3465515, 46.6661054 ], + [ 9.3469468, 46.6660353 ], + [ 9.3473589, 46.6659304 ], + [ 9.3476057, 46.6658629 ], + [ 9.3478514, 46.6657667 ], + [ 9.3480307, 46.6656831 ], + [ 9.348218, 46.6655765 ], + [ 9.3482475, 46.6655538 ], + [ 9.3483919, 46.6652941 ], + [ 9.3486063, 46.6649588 ], + [ 9.3488801, 46.6646398 ], + [ 9.3493685, 46.6642896 ], + [ 9.3497339, 46.6639983 ], + [ 9.3500703, 46.6638333 ], + [ 9.350457, 46.6637023 ], + [ 9.3505641, 46.6639589 ], + [ 9.3507702, 46.66422 ], + [ 9.3509423, 46.6644416 ], + [ 9.3510802, 46.6646233 ], + [ 9.3512876, 46.6648958 ], + [ 9.351416799999999, 46.6650605 ], + [ 9.351596, 46.6652303 ], + [ 9.3517749, 46.6653942 ], + [ 9.3520189, 46.665523 ], + [ 9.3523803, 46.6656708 ], + [ 9.3524767, 46.665742 ], + [ 9.3525994, 46.6656767 ], + [ 9.3528288, 46.6656038 ], + [ 9.3530317, 46.6654739 ], + [ 9.3531687, 46.6653509 ], + [ 9.3533212, 46.6652047 ], + [ 9.3534332, 46.6650936 ], + [ 9.3535635, 46.6650109 ], + [ 9.3539025, 46.6649877 ], + [ 9.3541853, 46.6649942 ], + [ 9.3547589, 46.6649955 ], + [ 9.3555422, 46.6650619 ], + [ 9.3558432, 46.6651197 ], + [ 9.3561955, 46.6652168 ], + [ 9.3564647, 46.665298 ], + [ 9.356859, 46.6654058 ], + [ 9.357429, 46.6655392 ], + [ 9.357728, 46.6655397 ], + [ 9.3580183, 46.665523 ], + [ 9.3582395, 46.6654502 ], + [ 9.3584463, 46.6654293 ], + [ 9.3586793, 46.6654366 ], + [ 9.3589626, 46.6654546 ], + [ 9.3593141, 46.6655287 ], + [ 9.3597429, 46.6656646 ], + [ 9.3601385, 46.6658068 ], + [ 9.3604422, 46.6659392 ], + [ 9.3608297, 46.6660872 ], + [ 9.3610898, 46.66614 ], + [ 9.3613875, 46.666106 ], + [ 9.3616925, 46.6660431 ], + [ 9.3618655, 46.6660171 ], + [ 9.3622715, 46.6659696 ], + [ 9.3625746, 46.6660849 ], + [ 9.3627971, 46.6662531 ], + [ 9.3630363, 46.6664325 ], + [ 9.3632678, 46.6666236 ], + [ 9.3634658, 46.6668153 ], + [ 9.3636452, 46.6669441 ], + [ 9.3638332, 46.6670842 ], + [ 9.3640626, 46.6672409 ], + [ 9.3643098, 46.6673915 ], + [ 9.3645821, 46.6675818 ], + [ 9.3648146, 46.6678015 ], + [ 9.3649866, 46.6679534 ], + [ 9.3651077, 46.6680719 ], + [ 9.3652808, 46.6682755 ], + [ 9.3655239, 46.668540899999996 ], + [ 9.3657293, 46.6687095 ], + [ 9.3659844, 46.6688772 ], + [ 9.3661963, 46.6689766 ], + [ 9.366506, 46.6690458 ], + [ 9.366905, 46.6690559 ], + [ 9.3671134, 46.6690579 ], + [ 9.3673438, 46.6690136 ], + [ 9.3676249, 46.6689684 ], + [ 9.3679654, 46.6689623 ], + [ 9.3682411, 46.6690205 ], + [ 9.3687777, 46.6691544 ], + [ 9.3692487, 46.6693011 ], + [ 9.3693995, 46.6693384 ], + [ 9.3696498, 46.6693685 ], + [ 9.3698851, 46.6694389 ], + [ 9.3700113, 46.6694711 ], + [ 9.3702427, 46.6694326 ], + [ 9.370715, 46.6694126 ], + [ 9.3712474, 46.6694259 ], + [ 9.3716048, 46.6694369 ], + [ 9.3720553, 46.6694919 ], + [ 9.3725221, 46.6695237 ], + [ 9.3727976, 46.6695532 ], + [ 9.3730126, 46.6695322 ], + [ 9.3732795, 46.6695732 ], + [ 9.3736909, 46.6696749 ], + [ 9.3740474, 46.6696628 ], + [ 9.374171, 46.6698501 ], + [ 9.3741265, 46.6700002 ], + [ 9.373971, 46.6700603 ], + [ 9.3739329, 46.6701586 ], + [ 9.3739537, 46.6702616 ], + [ 9.3740473, 46.6705469 ], + [ 9.374191, 46.6706132 ], + [ 9.3744776, 46.670723 ], + [ 9.3748971, 46.6708245 ], + [ 9.37519, 46.670882399999996 ], + [ 9.3755269, 46.6710026 ], + [ 9.3758871, 46.6710938 ], + [ 9.3760938, 46.6712738 ], + [ 9.376212, 46.6713347 ], + [ 9.3763486, 46.6714299 ], + [ 9.3764447, 46.6715602 ], + [ 9.3764976, 46.6716454 ], + [ 9.3766024, 46.671787 ], + [ 9.3767657, 46.6719219 ], + [ 9.3769458, 46.6720679 ], + [ 9.377073, 46.6721517 ], + [ 9.3771698, 46.6722762 ], + [ 9.3773303, 46.6723538 ], + [ 9.3775813, 46.672177 ], + [ 9.3777068, 46.6722149 ], + [ 9.3780014, 46.6723187 ], + [ 9.3783368, 46.6723988 ], + [ 9.3786063, 46.6724859 ], + [ 9.3786945, 46.672622 ], + [ 9.3787013, 46.6728114 ], + [ 9.3786008, 46.673014 ], + [ 9.3785825, 46.6731866 ], + [ 9.3785227, 46.6733658 ], + [ 9.3786777, 46.673495 ], + [ 9.3789412, 46.6734385 ], + [ 9.3792899, 46.6734323 ], + [ 9.3794436, 46.67355 ], + [ 9.3796346, 46.6737706 ], + [ 9.3795426, 46.6739617 ], + [ 9.379473, 46.6741178 ], + [ 9.3795125, 46.6742836 ], + [ 9.3797803, 46.6743247 ], + [ 9.3800505, 46.674228 ], + [ 9.3801395, 46.6741575 ], + [ 9.3803151, 46.6741774 ], + [ 9.3805413, 46.6742422 ], + [ 9.3807118, 46.6743482 ], + [ 9.3809061, 46.6744366 ], + [ 9.3810911, 46.6744906 ], + [ 9.3812968, 46.674441 ], + [ 9.3813422, 46.6745434 ], + [ 9.3813223, 46.6746702 ], + [ 9.381226999999999, 46.6747924 ], + [ 9.3814716, 46.6748913 ], + [ 9.3817905, 46.674966 ], + [ 9.3821736, 46.6750108 ], + [ 9.3825231, 46.6750275 ], + [ 9.3828749, 46.6750842 ], + [ 9.3829593, 46.675091 ], + [ 9.3829838, 46.6748433 ], + [ 9.3830067, 46.6746168 ], + [ 9.3830987, 46.6744257 ], + [ 9.3832334, 46.6742397 ], + [ 9.383466, 46.6740288 ], + [ 9.3838062, 46.6737873 ], + [ 9.384076199999999, 46.6736849 ], + [ 9.3844817, 46.6734192 ], + [ 9.3849015, 46.6733025 ], + [ 9.3851882, 46.6732113 ], + [ 9.3854699, 46.6731833 ], + [ 9.3857767, 46.673172 ], + [ 9.3865037, 46.6730761 ], + [ 9.3873795, 46.6728491 ], + [ 9.3876032, 46.6727532 ], + [ 9.3877547, 46.6724924 ], + [ 9.3879853, 46.6722028 ], + [ 9.3882905, 46.6721239 ], + [ 9.3888664, 46.6721233 ], + [ 9.3894056, 46.6722339 ], + [ 9.3897098, 46.6723777 ], + [ 9.3901885, 46.6723062 ], + [ 9.3902693, 46.6722385 ], + [ 9.3901887, 46.6721316 ], + [ 9.3901273, 46.6720399 ], + [ 9.3900543, 46.6719615 ], + [ 9.3900444, 46.6718689 ], + [ 9.3899639, 46.6717908 ], + [ 9.3899413, 46.6716851 ], + [ 9.3898931, 46.6715931 ], + [ 9.3899203, 46.6714646 ], + [ 9.3899435, 46.6713846 ], + [ 9.3899333, 46.6712831 ], + [ 9.389923, 46.6711794 ], + [ 9.3899499, 46.671042 ], + [ 9.3899577, 46.670896 ], + [ 9.3899322, 46.670733 ], + [ 9.389933, 46.6705738 ], + [ 9.3899346, 46.6704368 ], + [ 9.3899493, 46.6702995 ], + [ 9.389951, 46.6701891 ], + [ 9.3900112, 46.6700687 ], + [ 9.3900582, 46.6699464 ], + [ 9.3900924, 46.6698308 ], + [ 9.3901399, 46.6697196 ], + [ 9.3901821, 46.6696437 ], + [ 9.3901712, 46.6695246 ], + [ 9.3901999, 46.6694357 ], + [ 9.390223, 46.6693514 ], + [ 9.3902258, 46.6692497 ], + [ 9.3902389, 46.6690903 ], + [ 9.3902419, 46.6689931 ], + [ 9.390236, 46.6688297 ], + [ 9.3902653, 46.6685772 ], + [ 9.3902914, 46.6684177 ], + [ 9.3902859, 46.6682675 ], + [ 9.3903081, 46.6681566 ], + [ 9.3903368, 46.66807 ], + [ 9.3904038, 46.6679583 ], + [ 9.3904392, 46.6678738 ], + [ 9.390481, 46.6677891 ], + [ 9.3905299, 46.6677175 ], + [ 9.3905904, 46.6676281 ], + [ 9.3906129, 46.667526 ], + [ 9.390635, 46.6674374 ], + [ 9.3906514, 46.6673486 ], + [ 9.3906671, 46.6672644 ], + [ 9.3907288, 46.6671838 ], + [ 9.3907842, 46.6671121 ], + [ 9.3907937, 46.6670369 ], + [ 9.3908111, 46.6669747 ], + [ 9.3908595, 46.66689 ], + [ 9.3909201, 46.666805 ], + [ 9.390956599999999, 46.6667512 ], + [ 9.3909744, 46.6667024 ], + [ 9.3909983, 46.6666622 ], + [ 9.3910432, 46.6666614 ], + [ 9.3910387, 46.6666968 ], + [ 9.39104, 46.6667322 ], + [ 9.3910292, 46.6667943 ], + [ 9.3910504, 46.6668601 ], + [ 9.3910725, 46.6669305 ], + [ 9.3911069, 46.6670006 ], + [ 9.3911607, 46.6670659 ], + [ 9.3911896, 46.6671406 ], + [ 9.3912111, 46.6672153 ], + [ 9.3912268, 46.6672901 ], + [ 9.3912436, 46.6673915 ], + [ 9.391236, 46.667429 ], + [ 9.3912612, 46.667473 ], + [ 9.3913038, 46.6674745 ], + [ 9.3914429, 46.6674147 ], + [ 9.3915506, 46.6673642 ], + [ 9.3916456, 46.6673272 ], + [ 9.3917537, 46.667312 ], + [ 9.391795, 46.6673909 ], + [ 9.3918172, 46.6674613 ], + [ 9.3918399, 46.6675493 ], + [ 9.3918237, 46.6676424 ], + [ 9.3918277, 46.6677528 ], + [ 9.3918248, 46.6678545 ], + [ 9.3917962, 46.6679433 ], + [ 9.3918062, 46.6680404 ], + [ 9.391835799999999, 46.668157 ], + [ 9.3918412, 46.6683071 ], + [ 9.391846, 46.6684396 ], + [ 9.3918443, 46.6685722 ], + [ 9.3918416, 46.6686784 ], + [ 9.3918717, 46.6687883 ], + [ 9.3919204, 46.6688936 ], + [ 9.392001, 46.6689982 ], + [ 9.3920571, 46.6691255 ], + [ 9.392113, 46.6692482 ], + [ 9.3921547, 46.6693403 ], + [ 9.3921956, 46.6694081 ], + [ 9.3923411, 46.669525 ], + [ 9.392570599999999, 46.669658 ], + [ 9.3926958, 46.6697531 ], + [ 9.3928871, 46.6698911 ], + [ 9.3931634, 46.6700765 ], + [ 9.393372, 46.6701525 ], + [ 9.3935597, 46.6701912 ], + [ 9.3937331, 46.6701971 ], + [ 9.393854900000001, 46.6701995 ], + [ 9.3939963, 46.6702014 ], + [ 9.3940374, 46.6702758 ], + [ 9.3940736, 46.6703945 ], + [ 9.3940844, 46.6705137 ], + [ 9.3941084, 46.670632499999996 ], + [ 9.3941269, 46.6707825 ], + [ 9.3941682, 46.6708636 ], + [ 9.3941899, 46.6709427 ], + [ 9.3942654, 46.6710651 ], + [ 9.3943979, 46.6711822 ], + [ 9.3945571, 46.6713387 ], + [ 9.3947964, 46.6715599 ], + [ 9.3949366, 46.6715741 ], + [ 9.3950533, 46.6715488 ], + [ 9.3951424, 46.6715274 ], + [ 9.3953837, 46.6714658 ], + [ 9.3954572, 46.6713995 ], + [ 9.3955432, 46.671427 ], + [ 9.3956801, 46.6714857 ], + [ 9.3958098, 46.6715706 ], + [ 9.3959098, 46.6716446 ], + [ 9.3960081, 46.6716748 ], + [ 9.3961893, 46.6716717 ], + [ 9.3962816, 46.6716469 ], + [ 9.3963468, 46.6715992 ], + [ 9.3964947, 46.6714863 ], + [ 9.3966375, 46.6713444 ], + [ 9.3968767, 46.6711834 ], + [ 9.3972946, 46.6708334 ], + [ 9.3976255, 46.6705429 ], + [ 9.3978036, 46.6704515 ], + [ 9.3976936, 46.6701665 ], + [ 9.3976555, 46.6700408 ], + [ 9.3974949, 46.6695328 ], + [ 9.3974067, 46.6693967 ], + [ 9.3973207, 46.6690997 ], + [ 9.3972959, 46.6688876 ], + [ 9.3972735, 46.6687217 ], + [ 9.3972863, 46.6686238 ], + [ 9.3975358, 46.6684069 ], + [ 9.39777, 46.6682419 ], + [ 9.3981521, 46.668011 ], + [ 9.3985221, 46.6679182 ], + [ 9.3988745, 46.667791199999996 ], + [ 9.3991445, 46.6676887 ], + [ 9.3995715, 46.6675489 ], + [ 9.3998676, 46.6674691 ], + [ 9.4002033, 46.6673539 ], + [ 9.4004814, 46.6672282 ], + [ 9.4006264, 46.6671051 ], + [ 9.4007652, 46.6668327 ], + [ 9.400809, 46.6666653 ], + [ 9.4007919, 46.6664418 ], + [ 9.400754, 46.666322 ], + [ 9.4007042, 46.666099 ], + [ 9.400629, 46.6658707 ], + [ 9.4005392, 46.6656944 ], + [ 9.4004487, 46.6654952 ], + [ 9.4002736, 46.6652629 ], + [ 9.4001318, 46.6650244 ], + [ 9.4000463, 46.6648992 ], + [ 9.4000765, 46.6645839 ], + [ 9.400041, 46.6642345 ], + [ 9.399982, 46.6639141 ], + [ 9.399933, 46.6636453 ], + [ 9.3998612, 46.6634456 ], + [ 9.400029, 46.6632311 ], + [ 9.4003599, 46.6628942 ], + [ 9.4006422, 46.6625924 ], + [ 9.4008753, 46.6623312 ], + [ 9.4011279, 46.6621559 ], + [ 9.4017191, 46.6618594 ], + [ 9.4018961, 46.6618285 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "JBG0006", + "country" : "CHE", + "name" : [ + { + "text" : "Eidgenössisches Jagdbanngebiet Beverin", + "lang" : "de-CH" + }, + { + "text" : "District franc fédéral Beverin", + "lang" : "fr-CH" + }, + { + "text" : "Bandita federale di caccia Beverin", + "lang" : "it-CH" + }, + { + "text" : "Federal Game Reserve Beverin", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.744114, 47.4555795 ], + [ 7.7438626, 47.455641 ], + [ 7.7432244, 47.4558398 ], + [ 7.7428412, 47.4560046 ], + [ 7.7431939, 47.4564009 ], + [ 7.7432117, 47.4563906 ], + [ 7.7432296, 47.4563804 ], + [ 7.7432476, 47.4563703 ], + [ 7.7439493, 47.455976 ], + [ 7.7439937, 47.455951400000004 ], + [ 7.7440386, 47.4559272 ], + [ 7.744084, 47.4559034 ], + [ 7.74413, 47.4558801 ], + [ 7.7441764, 47.4558573 ], + [ 7.7442232, 47.4558349 ], + [ 7.7442706, 47.4558129 ], + [ 7.7443184, 47.4557915 ], + [ 7.744114, 47.4555795 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns095", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Grüngen", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Grüngen", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Grüngen", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Grüngen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.3387145, 46.2175589 ], + [ 7.3365012, 46.2168319 ], + [ 7.3365007, 46.2168325 ], + [ 7.3358606, 46.2177129 ], + [ 7.3368673, 46.2179756 ], + [ 7.3380885, 46.2182943 ], + [ 7.3387145, 46.2175589 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSMS002", + "country" : "CHE", + "name" : [ + { + "text" : "LSMS Sion (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSMS Sion (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSMS Sion (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSMS Sion (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Special Flight Office (SFO)", + "lang" : "de-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "fr-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "it-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "en-GB" + } + ], + "siteURL" : "https://skyguide.ch/services/special-flights", + "email" : "specialflight@skyguide.ch", + "phone" : "0041439316236", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.3546709, 47.4338904 ], + [ 7.3547141, 47.4338897 ], + [ 7.3550444, 47.4338913 ], + [ 7.3549711, 47.4337739 ], + [ 7.354627, 47.4332228 ], + [ 7.3545169, 47.4328325 ], + [ 7.354438, 47.4325483 ], + [ 7.3542673, 47.4318219 ], + [ 7.3541754, 47.4314572 ], + [ 7.3540911, 47.4312197 ], + [ 7.353306, 47.4313492 ], + [ 7.3533683, 47.4320352 ], + [ 7.3533809, 47.432228 ], + [ 7.3533845, 47.4323568 ], + [ 7.3533864, 47.4324743 ], + [ 7.353356, 47.4326872 ], + [ 7.3530054, 47.4329241 ], + [ 7.3527062, 47.4329782 ], + [ 7.3523814, 47.433039 ], + [ 7.351857, 47.433107 ], + [ 7.3512059, 47.4330289 ], + [ 7.3506466, 47.4325739 ], + [ 7.3502487, 47.4321788 ], + [ 7.3500262, 47.432295 ], + [ 7.349799, 47.4324822 ], + [ 7.3498715, 47.4326449 ], + [ 7.3501199, 47.4332032 ], + [ 7.3502488, 47.4333446 ], + [ 7.3503812, 47.4335571 ], + [ 7.3504632, 47.4336887 ], + [ 7.3505672, 47.4337513 ], + [ 7.3509287, 47.4339688 ], + [ 7.3515163, 47.4341406 ], + [ 7.3533172, 47.4339696 ], + [ 7.3544983, 47.4338931 ], + [ 7.3546709, 47.4338904 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns324", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Chlini Asp", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Chlini Asp", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Chlini Asp", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Chlini Asp", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6455333, 47.4907222 ], + [ 7.6455347, 47.4907433 ], + [ 7.6455321, 47.4907644 ], + [ 7.6455254, 47.4907851 ], + [ 7.6455148, 47.490805 ], + [ 7.6454977, 47.4908277 ], + [ 7.6454761, 47.4908485 ], + [ 7.6454504, 47.4908671 ], + [ 7.6454211, 47.4908831 ], + [ 7.6453888, 47.4908962 ], + [ 7.6453541, 47.490906 ], + [ 7.6453242, 47.4909119 ], + [ 7.6452932, 47.4909138 ], + [ 7.6452622, 47.4909116 ], + [ 7.6452324, 47.4909055 ], + [ 7.6451799, 47.4908982 ], + [ 7.6451268, 47.4908934 ], + [ 7.6450733, 47.4908912 ], + [ 7.6450197, 47.4908915 ], + [ 7.6449202, 47.4908925 ], + [ 7.6448209, 47.4908967 ], + [ 7.644722, 47.4909041 ], + [ 7.6446237, 47.490914599999996 ], + [ 7.6445014, 47.4909301 ], + [ 7.6444328, 47.4909397 ], + [ 7.6443635, 47.4909464 ], + [ 7.6442938, 47.4909504 ], + [ 7.6442239, 47.4909516 ], + [ 7.6438106, 47.4909514 ], + [ 7.6437359, 47.4909561 ], + [ 7.6436617, 47.4909634 ], + [ 7.6435122, 47.490985 ], + [ 7.6433653, 47.4910135 ], + [ 7.6433248, 47.4910252 ], + [ 7.6432859, 47.4910392 ], + [ 7.643249, 47.4910555 ], + [ 7.6432142, 47.4910739 ], + [ 7.6431846, 47.4910913 ], + [ 7.6431568, 47.4911101 ], + [ 7.6431309, 47.4911302 ], + [ 7.6431071, 47.4911513 ], + [ 7.6429065, 47.4913251 ], + [ 7.6427723, 47.491353 ], + [ 7.642686, 47.4913353 ], + [ 7.642638, 47.4913289 ], + [ 7.642568, 47.4913198 ], + [ 7.6425459, 47.4913158 ], + [ 7.6425241, 47.491311 ], + [ 7.6424582999999995, 47.4912993 ], + [ 7.6423916, 47.4912899 ], + [ 7.6423243, 47.4912829 ], + [ 7.6422565, 47.491278199999996 ], + [ 7.6421656, 47.4912755 ], + [ 7.6420745, 47.4912762 ], + [ 7.6419837, 47.4912805 ], + [ 7.6418934, 47.4912882 ], + [ 7.6415001, 47.4913239 ], + [ 7.6407658, 47.4914115 ], + [ 7.6406633, 47.4914252 ], + [ 7.640562, 47.4914425 ], + [ 7.6404621, 47.4914631 ], + [ 7.6403638, 47.4914871 ], + [ 7.6401407, 47.4915486 ], + [ 7.6400667, 47.4915677 ], + [ 7.6399913999999995, 47.4915843 ], + [ 7.639915, 47.4915985 ], + [ 7.6398377, 47.4916102 ], + [ 7.639695, 47.4916309 ], + [ 7.639551, 47.4916468 ], + [ 7.6393777, 47.4916561 ], + [ 7.6392043, 47.4916647 ], + [ 7.6388281, 47.4916756 ], + [ 7.6386921999999995, 47.4916812 ], + [ 7.6385565, 47.4916894 ], + [ 7.6384536, 47.4916966 ], + [ 7.638364, 47.4917027 ], + [ 7.6382741, 47.4917061 ], + [ 7.6381841, 47.4917067 ], + [ 7.6381211, 47.4917053 ], + [ 7.6380498, 47.4916667 ], + [ 7.637497, 47.4916831 ], + [ 7.6371970000000005, 47.4916818 ], + [ 7.636919, 47.4916944 ], + [ 7.6366901, 47.4917281 ], + [ 7.6367975999999995, 47.4921257 ], + [ 7.636433, 47.4924908 ], + [ 7.6365944, 47.4930144 ], + [ 7.6365644, 47.4932063 ], + [ 7.6368838, 47.493536399999996 ], + [ 7.6374019, 47.4936921 ], + [ 7.6381004, 47.4936953 ], + [ 7.6386123999999995, 47.4939498 ], + [ 7.6385842, 47.4941154 ], + [ 7.6389125, 47.4942505 ], + [ 7.6390837, 47.4942781 ], + [ 7.6390532, 47.4943501 ], + [ 7.6389806, 47.4944483 ], + [ 7.6389524, 47.494573 ], + [ 7.6388396, 47.4947105 ], + [ 7.6386659, 47.4948019 ], + [ 7.6387281, 47.4948227 ], + [ 7.6396299, 47.4950973 ], + [ 7.6397388, 47.495128 ], + [ 7.6398513, 47.4948314 ], + [ 7.6399202, 47.4947152 ], + [ 7.640184, 47.4946732 ], + [ 7.6404039, 47.4945182 ], + [ 7.640956, 47.4946508 ], + [ 7.6411781, 47.4945216 ], + [ 7.6415147999999995, 47.4947459 ], + [ 7.6420101, 47.4950207 ], + [ 7.6427344999999995, 47.4955099 ], + [ 7.6434829, 47.4956836 ], + [ 7.6436338, 47.4956138 ], + [ 7.6439525, 47.4954994 ], + [ 7.6444323, 47.4959879 ], + [ 7.6449739999999995, 47.4965367 ], + [ 7.6454123, 47.4965857 ], + [ 7.6460076, 47.4964995 ], + [ 7.6468541, 47.4969027 ], + [ 7.6470316, 47.4969872 ], + [ 7.6470932, 47.4969832 ], + [ 7.6472309, 47.4969977 ], + [ 7.647476, 47.4970441 ], + [ 7.6476102, 47.4970474 ], + [ 7.647716, 47.4970339 ], + [ 7.647811, 47.4970051 ], + [ 7.6478906, 47.4969583 ], + [ 7.6479499, 47.4968976 ], + [ 7.6479859, 47.4968298 ], + [ 7.6480657, 47.4966062 ], + [ 7.6481516, 47.4963818 ], + [ 7.6482303, 47.4962044 ], + [ 7.6483004999999995, 47.4960422 ], + [ 7.6483446, 47.4958871 ], + [ 7.6483597, 47.4957251 ], + [ 7.6483626000000005, 47.495447 ], + [ 7.6483845, 47.4952555 ], + [ 7.6484895, 47.494798 ], + [ 7.6485484, 47.4946855 ], + [ 7.6486291, 47.4946224 ], + [ 7.6487428, 47.4945676 ], + [ 7.6488695, 47.4945387 ], + [ 7.6491406, 47.4945423 ], + [ 7.6493499, 47.4945545 ], + [ 7.6495923999999995, 47.4945618 ], + [ 7.6497556, 47.4945649 ], + [ 7.6500633, 47.4945663 ], + [ 7.6502251, 47.4944787 ], + [ 7.6502467, 47.494468 ], + [ 7.6502658, 47.4944552 ], + [ 7.6502818, 47.4944407 ], + [ 7.6502945, 47.4944247 ], + [ 7.6503843, 47.4942697 ], + [ 7.650397, 47.4942455 ], + [ 7.6504084, 47.4942209 ], + [ 7.6497983, 47.4939672 ], + [ 7.6490805, 47.493583 ], + [ 7.6486056, 47.4933483 ], + [ 7.6480668, 47.4929352 ], + [ 7.6473168000000005, 47.4923868 ], + [ 7.6468834, 47.4919949 ], + [ 7.647243, 47.4912832 ], + [ 7.6463148, 47.4910347 ], + [ 7.6455333, 47.4907222 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr003", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Gobenrai", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Gobenrai", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Gobenrai", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Gobenrai", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.9075641, 46.1398603 ], + [ 8.9073005, 46.139777 ], + [ 8.906892599999999, 46.139645 ], + [ 8.9067499, 46.1395988 ], + [ 8.9067568, 46.1395912 ], + [ 8.9066757, 46.1395486 ], + [ 8.9064672, 46.1394232 ], + [ 8.9066331, 46.1392906 ], + [ 8.9066296, 46.1392189 ], + [ 8.9062476, 46.139032 ], + [ 8.905729000000001, 46.1388082 ], + [ 8.905725799999999, 46.138807 ], + [ 8.9057189, 46.1388056 ], + [ 8.9057117, 46.138806 ], + [ 8.9057083, 46.1388066 ], + [ 8.9057054, 46.1388078 ], + [ 8.9057003, 46.1388108 ], + [ 8.9056984, 46.1388128 ], + [ 8.9056959, 46.1388171 ], + [ 8.9056129, 46.1388671 ], + [ 8.9057694, 46.1390362 ], + [ 8.905838, 46.1391285 ], + [ 8.9058441, 46.1391387 ], + [ 8.9058485, 46.1391466 ], + [ 8.9058532, 46.1391558 ], + [ 8.9058575, 46.1391651 ], + [ 8.9058614, 46.1391745 ], + [ 8.9058648, 46.139184 ], + [ 8.9058678, 46.1391936 ], + [ 8.9058701, 46.1392018 ], + [ 8.905872, 46.13921 ], + [ 8.9058736, 46.1392183 ], + [ 8.905875, 46.1392266 ], + [ 8.905876, 46.1392349 ], + [ 8.9058767, 46.1392433 ], + [ 8.9058771, 46.1392516 ], + [ 8.9057443, 46.1392359 ], + [ 8.9056, 46.1392188 ], + [ 8.905593, 46.139218 ], + [ 8.9055784, 46.1392372 ], + [ 8.9054927, 46.1393419 ], + [ 8.905126, 46.1397902 ], + [ 8.9047741, 46.1401817 ], + [ 8.904333, 46.1405279 ], + [ 8.9042891, 46.1405454 ], + [ 8.9040295, 46.1407128 ], + [ 8.9039764, 46.140791 ], + [ 8.9030672, 46.1421301 ], + [ 8.9031079, 46.142155 ], + [ 8.9031952, 46.1422434 ], + [ 8.9032633, 46.1423301 ], + [ 8.903314, 46.1423756 ], + [ 8.9033544, 46.1424014 ], + [ 8.9033672, 46.142424 ], + [ 8.9034515, 46.1425028 ], + [ 8.9035716, 46.142488 ], + [ 8.9036553, 46.1424431 ], + [ 8.9038081, 46.1424201 ], + [ 8.9039284, 46.1424091 ], + [ 8.9040366, 46.1423562 ], + [ 8.9041265, 46.142237 ], + [ 8.9043024, 46.1419146 ], + [ 8.9043681, 46.141731300000004 ], + [ 8.9044934, 46.1415571 ], + [ 8.9046111, 46.141393 ], + [ 8.9051296, 46.1406697 ], + [ 8.9051848, 46.1405969 ], + [ 8.9052437, 46.1405257 ], + [ 8.9054648, 46.1402899 ], + [ 8.9056257, 46.1403633 ], + [ 8.9057567, 46.1405738 ], + [ 8.905998199999999, 46.1406993 ], + [ 8.9063389, 46.1409036 ], + [ 8.9073554, 46.1408992 ], + [ 8.9082956, 46.1409219 ], + [ 8.9087069, 46.1409318 ], + [ 8.908598, 46.1421079 ], + [ 8.9087748, 46.1421291 ], + [ 8.9089704, 46.1421526 ], + [ 8.9103108, 46.1423293 ], + [ 8.9105612, 46.1415191 ], + [ 8.9104507, 46.1414205 ], + [ 8.910427, 46.1413066 ], + [ 8.9104412, 46.1410707 ], + [ 8.9103303, 46.1409579 ], + [ 8.9099669, 46.1408163 ], + [ 8.9095786, 46.1407035 ], + [ 8.9093073, 46.1407392 ], + [ 8.9091665, 46.1407691 ], + [ 8.9089498, 46.1408152 ], + [ 8.9086018, 46.1408439 ], + [ 8.9082469, 46.1408271 ], + [ 8.9082462, 46.1407985 ], + [ 8.9083317, 46.1400417 ], + [ 8.9083415, 46.1399546 ], + [ 8.9082138, 46.1399456 ], + [ 8.9077252, 46.1399113 ], + [ 8.9075641, 46.1398603 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VBS_14", + "country" : "CHE", + "name" : [ + { + "text" : "VBS_14 Monte Ceneri 2", + "lang" : "de-CH" + }, + { + "text" : "VBS_14 Monte Ceneri 2", + "lang" : "fr-CH" + }, + { + "text" : "VBS_14 Monte Ceneri 2", + "lang" : "it-CH" + }, + { + "text" : "VBS_14 Monte Ceneri 2", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "regulationExemption" : "YES", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Eidgenössisches Departement für Verteidigung, Bevölkerungsschutz und Sport (VBS)", + "lang" : "de-CH" + }, + { + "text" : "Département fédéral de la défense, de la protection de la population et des sports (DDPS)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento federale della difesa, della protezione della popolazione e dello sport (DDPS)", + "lang" : "it-CH" + }, + { + "text" : "Federal Department of Defence, Civil Protection and Sport (DDPS)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Lageverfolgungszentrum der Armee LVZ A", + "lang" : "de-CH" + }, + { + "text" : "Centre de suivi de la situation de l’armée, CSS A", + "lang" : "fr-CH" + }, + { + "text" : "Centro di monitoraggio della situazione dell’esercito, Centro mon sit Es", + "lang" : "it-CH" + }, + { + "text" : "Joint Operation Center, JOC", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vtg.admin.ch/en/joint-operations-command", + "email" : "lvz.op@vtg.admin.ch", + "phone" : "+41 58 464 96 43", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.9362807, 47.4653228 ], + [ 7.9357183, 47.4655962 ], + [ 7.935468, 47.4656835 ], + [ 7.9350933999999995, 47.4658688 ], + [ 7.934772, 47.4660073 ], + [ 7.9344904, 47.4661584 ], + [ 7.9341969, 47.4663426 ], + [ 7.9339548, 47.466529 ], + [ 7.9338027, 47.4667154 ], + [ 7.933922, 47.4670902 ], + [ 7.9343212, 47.4673604 ], + [ 7.9345982, 47.467548 ], + [ 7.9349039, 47.4677097 ], + [ 7.935245, 47.4678561 ], + [ 7.9356013999999995, 47.4679679 ], + [ 7.9360538, 47.468089 ], + [ 7.936621, 47.468164 ], + [ 7.937086, 47.4682156 ], + [ 7.9375094, 47.4682928 ], + [ 7.9378845, 47.4683928 ], + [ 7.9382654, 47.4685099 ], + [ 7.9388619, 47.4686312 ], + [ 7.9383856999999995, 47.4682645 ], + [ 7.9380612, 47.4680375 ], + [ 7.9372092, 47.4676981 ], + [ 7.9363823, 47.4675536 ], + [ 7.9358505, 47.467404 ], + [ 7.9357435, 47.4673415 ], + [ 7.935634, 47.4672797 ], + [ 7.935427, 47.467165 ], + [ 7.9350711, 47.4669213 ], + [ 7.9359241, 47.4666354 ], + [ 7.9365645, 47.4664256 ], + [ 7.9367111, 47.4663762 ], + [ 7.937622, 47.4659177 ], + [ 7.9379263, 47.46585 ], + [ 7.938234, 47.4657817 ], + [ 7.9384127, 47.4656063 ], + [ 7.9377746, 47.4653903 ], + [ 7.9374271, 47.4652032 ], + [ 7.936989, 47.4649689 ], + [ 7.9369594, 47.4649531 ], + [ 7.9362807, 47.4653228 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns055", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Roti Flue - Dübach", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Roti Flue - Dübach", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Roti Flue - Dübach", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Roti Flue - Dübach", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.2888371, 47.3782449 ], + [ 8.288829400000001, 47.3781037 ], + [ 8.2888109, 47.377963 ], + [ 8.2887815, 47.3778232 ], + [ 8.2887414, 47.3776846 ], + [ 8.2886906, 47.3775476 ], + [ 8.2886294, 47.3774126 ], + [ 8.2885579, 47.3772799 ], + [ 8.2884762, 47.37715 ], + [ 8.2883847, 47.3770232 ], + [ 8.2882834, 47.3768998 ], + [ 8.2881729, 47.3767801 ], + [ 8.2880532, 47.3766646 ], + [ 8.2879248, 47.3765534 ], + [ 8.2877881, 47.376447 ], + [ 8.2876433, 47.3763456 ], + [ 8.2874909, 47.3762495 ], + [ 8.2873313, 47.3761589 ], + [ 8.287165, 47.3760741 ], + [ 8.2869923, 47.3759954 ], + [ 8.286813800000001, 47.3759229 ], + [ 8.28663, 47.3758568 ], + [ 8.2864414, 47.3757974 ], + [ 8.2862484, 47.3757447 ], + [ 8.2860516, 47.375699 ], + [ 8.2858516, 47.3756603 ], + [ 8.2856489, 47.3756289 ], + [ 8.285444, 47.3756046 ], + [ 8.2852375, 47.3755877 ], + [ 8.28503, 47.3755781 ], + [ 8.2848221, 47.3755759 ], + [ 8.2846143, 47.3755812 ], + [ 8.2844071, 47.3755938 ], + [ 8.2842013, 47.3756137 ], + [ 8.2839972, 47.3756409 ], + [ 8.2837955, 47.3756754 ], + [ 8.2835968, 47.375717 ], + [ 8.2834015, 47.3757656 ], + [ 8.2832102, 47.375821 ], + [ 8.2830235, 47.3758832 ], + [ 8.2828418, 47.3759519 ], + [ 8.2826657, 47.3760271 ], + [ 8.2824955, 47.3761083 ], + [ 8.282331899999999, 47.3761955 ], + [ 8.2821753, 47.3762884 ], + [ 8.2820259, 47.3763867 ], + [ 8.2818844, 47.3764902 ], + [ 8.2817511, 47.3765986 ], + [ 8.2816262, 47.3767116 ], + [ 8.2815103, 47.3768289 ], + [ 8.2814035, 47.3769501 ], + [ 8.2813063, 47.377075 ], + [ 8.2812188, 47.3772032 ], + [ 8.2811412, 47.3773342 ], + [ 8.281073899999999, 47.3774679 ], + [ 8.281017, 47.3776038 ], + [ 8.2809706, 47.3777415 ], + [ 8.2809349, 47.3778806 ], + [ 8.28091, 47.3780209 ], + [ 8.2808959, 47.3781618 ], + [ 8.2808927, 47.3783031 ], + [ 8.2809004, 47.3784443 ], + [ 8.2809189, 47.378585 ], + [ 8.2809483, 47.3787248 ], + [ 8.2809884, 47.3788634 ], + [ 8.2810391, 47.3790004 ], + [ 8.2811003, 47.3791354 ], + [ 8.2811718, 47.3792681 ], + [ 8.2812534, 47.379398 ], + [ 8.281345, 47.3795248 ], + [ 8.2814462, 47.3796483 ], + [ 8.2815568, 47.3797679 ], + [ 8.2816764, 47.3798835 ], + [ 8.2818048, 47.3799946 ], + [ 8.2819415, 47.380101 ], + [ 8.2820863, 47.3802025 ], + [ 8.2822387, 47.3802986 ], + [ 8.2823983, 47.3803892 ], + [ 8.2825646, 47.380474 ], + [ 8.2827373, 47.3805527 ], + [ 8.2829158, 47.3806252 ], + [ 8.2830996, 47.3806913 ], + [ 8.2832883, 47.3807507 ], + [ 8.2834813, 47.3808034 ], + [ 8.2836781, 47.3808491 ], + [ 8.2838781, 47.380887799999996 ], + [ 8.2840809, 47.3809193 ], + [ 8.2842858, 47.3809435 ], + [ 8.2844923, 47.3809604 ], + [ 8.2846998, 47.38097 ], + [ 8.2849077, 47.3809722 ], + [ 8.2851156, 47.380967 ], + [ 8.2853227, 47.3809544 ], + [ 8.2855286, 47.3809344 ], + [ 8.2857327, 47.3809072 ], + [ 8.2859344, 47.3808727 ], + [ 8.2861332, 47.3808311 ], + [ 8.2863285, 47.3807825 ], + [ 8.2865198, 47.3807271 ], + [ 8.2867065, 47.3806649 ], + [ 8.2868882, 47.3805961 ], + [ 8.2870643, 47.380521 ], + [ 8.2872345, 47.3804398 ], + [ 8.2873981, 47.3803526 ], + [ 8.2875548, 47.3802597 ], + [ 8.2877041, 47.3801613 ], + [ 8.2878456, 47.3800578 ], + [ 8.287979, 47.3799494 ], + [ 8.2881038, 47.3798364 ], + [ 8.288219699999999, 47.3797191 ], + [ 8.2883265, 47.3795979 ], + [ 8.2884237, 47.379473 ], + [ 8.2885112, 47.3793448 ], + [ 8.2885887, 47.3792138 ], + [ 8.288656, 47.3790801 ], + [ 8.2887129, 47.3789442 ], + [ 8.2887593, 47.3788065 ], + [ 8.288795, 47.3786673 ], + [ 8.2888199, 47.3785271 ], + [ 8.2888339, 47.3783862 ], + [ 8.2888371, 47.3782449 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0079", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Niederwil", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Niederwil", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Niederwil", + "lang" : "it-CH" + }, + { + "text" : "Substation Niederwil", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.0413226, 47.5746434 ], + [ 9.0538336, 47.5741449 ], + [ 9.0545403, 47.5740838 ], + [ 9.0563826, 47.5736875 ], + [ 9.0557983, 47.5728788 ], + [ 9.0538107, 47.5733923 ], + [ 9.0507191, 47.5736207 ], + [ 9.0501006, 47.5727792 ], + [ 9.0463937, 47.5730133 ], + [ 9.042242, 47.5733092 ], + [ 9.0422499, 47.574010799999996 ], + [ 9.0413157, 47.5742845 ], + [ 9.0413226, 47.5746434 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSPA002", + "country" : "CHE", + "name" : [ + { + "text" : "LSPA Amlikon (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSPA Amlikon (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSPA Amlikon (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSPA Amlikon (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Segelfluggruppe Cumulus", + "lang" : "de-CH" + }, + { + "text" : "Segelfluggruppe Cumulus", + "lang" : "fr-CH" + }, + { + "text" : "Segelfluggruppe Cumulus", + "lang" : "it-CH" + }, + { + "text" : "Segelfluggruppe Cumulus", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Fabian Grunder", + "lang" : "de-CH" + }, + { + "text" : "Fabian Grunder", + "lang" : "fr-CH" + }, + { + "text" : "Fabian Grunder", + "lang" : "it-CH" + }, + { + "text" : "Fabian Grunder", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.cumulus-segelflug.ch/flugplatz/drohnen/", + "email" : "info@cumulus-segelflug.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P02DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6910793, 47.403998 ], + [ 7.6911614, 47.4041655 ], + [ 7.6911996, 47.404184 ], + [ 7.6912034, 47.4042405 ], + [ 7.6912071, 47.4042777 ], + [ 7.6912109, 47.4043269 ], + [ 7.6912377, 47.4043689 ], + [ 7.691236, 47.404399 ], + [ 7.6912576, 47.4044615 ], + [ 7.6912951, 47.4045299 ], + [ 7.6913181999999995, 47.4045599 ], + [ 7.6913361, 47.404608 ], + [ 7.6913629, 47.4046536 ], + [ 7.6913702, 47.4047058 ], + [ 7.6914041, 47.4047683 ], + [ 7.6914594, 47.4048595 ], + [ 7.691479, 47.4049039 ], + [ 7.691515, 47.4050319 ], + [ 7.6915261, 47.4051304 ], + [ 7.6915409, 47.4052561 ], + [ 7.6915731, 47.4053486 ], + [ 7.6916196, 47.4054434 ], + [ 7.6916658, 47.4054824 ], + [ 7.6917084, 47.4055207 ], + [ 7.6917688, 47.4055855 ], + [ 7.6917762, 47.4056539 ], + [ 7.6917905, 47.4056767 ], + [ 7.6918118, 47.4057019 ], + [ 7.6918437, 47.4057186 ], + [ 7.6918667, 47.4057593 ], + [ 7.6919314, 47.4058235 ], + [ 7.692013, 47.405862 ], + [ 7.6920434, 47.4058722 ], + [ 7.692087, 47.4058837 ], + [ 7.6921554, 47.4059286 ], + [ 7.6922013, 47.4060225 ], + [ 7.6922701, 47.4061549 ], + [ 7.69254, 47.4064049 ], + [ 7.6927474, 47.4065735 ], + [ 7.6929498, 47.4064857 ], + [ 7.6932191, 47.4067246 ], + [ 7.6949705999999995, 47.4059823 ], + [ 7.6945214, 47.405805 ], + [ 7.6941153, 47.4055735 ], + [ 7.6938341999999995, 47.4053845 ], + [ 7.6935147, 47.4052148 ], + [ 7.6937839, 47.4049775 ], + [ 7.6940546, 47.4048973 ], + [ 7.6940748, 47.4047612 ], + [ 7.6941273, 47.4044579 ], + [ 7.6940602, 47.4042463 ], + [ 7.694052, 47.4040975 ], + [ 7.6940233, 47.4039759 ], + [ 7.6943766, 47.4038238 ], + [ 7.6946672, 47.4037179 ], + [ 7.6947048, 47.4037082 ], + [ 7.6949792, 47.4036292 ], + [ 7.6951259, 47.4035918 ], + [ 7.6953005, 47.4038671 ], + [ 7.6955389, 47.4042427 ], + [ 7.6960744, 47.4045203 ], + [ 7.6964677, 47.4046071 ], + [ 7.696937, 47.4047089 ], + [ 7.6969557, 47.40469 ], + [ 7.6970386, 47.4046057 ], + [ 7.69727, 47.4043742 ], + [ 7.6973937, 47.4042605 ], + [ 7.6977013, 47.4039184 ], + [ 7.6978264, 47.4038197 ], + [ 7.6980369, 47.4037739 ], + [ 7.6985712, 47.4034406 ], + [ 7.6988081, 47.4032137 ], + [ 7.6988989, 47.4032306 ], + [ 7.6993561, 47.4029123 ], + [ 7.6998075, 47.4025982 ], + [ 7.6998407, 47.4026172 ], + [ 7.6999511, 47.4026482 ], + [ 7.7000715, 47.4026799 ], + [ 7.7001982, 47.4027015 ], + [ 7.7003147, 47.4027221 ], + [ 7.7004629, 47.4027407 ], + [ 7.7007086000000005, 47.4027646 ], + [ 7.7008532, 47.4027789 ], + [ 7.7010552, 47.4028006 ], + [ 7.7012067, 47.4028169 ], + [ 7.7013866, 47.4028324 ], + [ 7.701526, 47.4028411 ], + [ 7.7016936, 47.4028457 ], + [ 7.7018678, 47.4028456 ], + [ 7.7021331, 47.4028316 ], + [ 7.7023133999999995, 47.4028223 ], + [ 7.7025268, 47.4028053 ], + [ 7.7027718, 47.4027863 ], + [ 7.7029699, 47.4027641 ], + [ 7.7033845, 47.4027213 ], + [ 7.703581, 47.4026966 ], + [ 7.7035998, 47.4026653 ], + [ 7.7037423, 47.4025535 ], + [ 7.7037968, 47.4025111 ], + [ 7.7037017, 47.4024685 ], + [ 7.7036523, 47.402385 ], + [ 7.7035839, 47.4020644 ], + [ 7.7035637999999995, 47.4019211 ], + [ 7.7031121, 47.4018458 ], + [ 7.7028443, 47.4018768 ], + [ 7.7026281999999995, 47.4018639 ], + [ 7.7023367, 47.4018066 ], + [ 7.7020702, 47.4018022 ], + [ 7.7015512, 47.4017411 ], + [ 7.7010756, 47.401685 ], + [ 7.7012739, 47.4015417 ], + [ 7.70199, 47.4010236 ], + [ 7.7026465, 47.4004849 ], + [ 7.7031429, 47.4000751 ], + [ 7.703164, 47.4000577 ], + [ 7.7031754, 47.4000483 ], + [ 7.703182, 47.4000429 ], + [ 7.7031715, 47.4000407 ], + [ 7.7030524, 47.4000091 ], + [ 7.7029055, 47.3999463 ], + [ 7.7027280000000005, 47.3998826 ], + [ 7.7023971, 47.3997897 ], + [ 7.7022765, 47.3997617 ], + [ 7.7021264, 47.3997269 ], + [ 7.7019379, 47.399717 ], + [ 7.7016621, 47.3997278 ], + [ 7.7014036, 47.3997649 ], + [ 7.7009521, 47.3997768 ], + [ 7.7008021, 47.3997915 ], + [ 7.7006063000000005, 47.3998277 ], + [ 7.7004442, 47.3998498 ], + [ 7.7002689, 47.3998539 ], + [ 7.6998543, 47.3998321 ], + [ 7.6994841, 47.3997983 ], + [ 7.6990653, 47.3997801 ], + [ 7.6991551, 47.3998477 ], + [ 7.6992657, 47.3999733 ], + [ 7.69938, 47.4001877 ], + [ 7.6994386, 47.4002564 ], + [ 7.6996339, 47.4003428 ], + [ 7.6997035, 47.4003736 ], + [ 7.6997279, 47.4003861 ], + [ 7.6996623, 47.4004013 ], + [ 7.6995939, 47.4004032 ], + [ 7.6995331, 47.4004071 ], + [ 7.6994991, 47.4004049 ], + [ 7.6994291, 47.4003901 ], + [ 7.6993618, 47.4003979 ], + [ 7.699259, 47.4004068 ], + [ 7.6992025, 47.4004348 ], + [ 7.6991475, 47.4004585 ], + [ 7.6990649, 47.4004877 ], + [ 7.6989991, 47.4004904 ], + [ 7.6988674, 47.4005235 ], + [ 7.6987784999999995, 47.4005382 ], + [ 7.6986495999999995, 47.4005837 ], + [ 7.6985537, 47.4006126 ], + [ 7.6984552, 47.4006359 ], + [ 7.6983318, 47.4006741 ], + [ 7.6982516, 47.4006586 ], + [ 7.6981429, 47.4006576 ], + [ 7.6980571, 47.400646 ], + [ 7.6979485, 47.4006141 ], + [ 7.697909, 47.4005982 ], + [ 7.6978596, 47.4005749 ], + [ 7.6977937, 47.4005271 ], + [ 7.697777, 47.4005155 ], + [ 7.69775, 47.4005044 ], + [ 7.6977185, 47.4005039 ], + [ 7.6976772, 47.4005133 ], + [ 7.6976377, 47.4005418 ], + [ 7.6975673, 47.4005304 ], + [ 7.6975283999999995, 47.400521499999996 ], + [ 7.6974863, 47.4005192 ], + [ 7.6973949, 47.4004769 ], + [ 7.6972641, 47.4004221 ], + [ 7.6972459, 47.4004194 ], + [ 7.6970995, 47.4003858 ], + [ 7.6969662, 47.400358 ], + [ 7.6969324, 47.400354 ], + [ 7.6969013, 47.4003515 ], + [ 7.6968872, 47.400348 ], + [ 7.6968393, 47.4002985 ], + [ 7.6965972, 47.4002345 ], + [ 7.6965425, 47.4002237 ], + [ 7.6964951, 47.4002115 ], + [ 7.696429, 47.4001967 ], + [ 7.6962469, 47.4001386 ], + [ 7.6961698, 47.4001172 ], + [ 7.6960909, 47.4000899 ], + [ 7.6960589, 47.4000803 ], + [ 7.6958988, 47.4000461 ], + [ 7.6958376, 47.400055 ], + [ 7.6957466, 47.4001277 ], + [ 7.6955197, 47.4003088 ], + [ 7.6954395, 47.400374 ], + [ 7.6954903, 47.4004883 ], + [ 7.695552, 47.4007274 ], + [ 7.6959884, 47.4010815 ], + [ 7.6963013, 47.4014166 ], + [ 7.6964956, 47.4015878 ], + [ 7.6968204, 47.4018894 ], + [ 7.6965093, 47.4019643 ], + [ 7.6960135, 47.4020426 ], + [ 7.6960203, 47.4022154 ], + [ 7.6963403, 47.4024874 ], + [ 7.6958687, 47.4023401 ], + [ 7.6955243, 47.4023059 ], + [ 7.6951903999999995, 47.4022731 ], + [ 7.6950948, 47.402267 ], + [ 7.6950135, 47.4025064 ], + [ 7.6949514, 47.4027077 ], + [ 7.6947038, 47.4026533 ], + [ 7.6944545, 47.4022442 ], + [ 7.6943985999999995, 47.4021117 ], + [ 7.6944722, 47.4018026 ], + [ 7.694787, 47.4017493 ], + [ 7.6950050999999995, 47.4016863 ], + [ 7.6953349, 47.4017504 ], + [ 7.6955687, 47.4013236 ], + [ 7.6955191, 47.4010644 ], + [ 7.6953437000000005, 47.400756 ], + [ 7.6949508, 47.4006691 ], + [ 7.6944059, 47.400512 ], + [ 7.6943883, 47.400634 ], + [ 7.6943429, 47.4008363 ], + [ 7.6942872, 47.4010808 ], + [ 7.6942135, 47.4013376 ], + [ 7.6940724, 47.4015732 ], + [ 7.6937804, 47.4016039 ], + [ 7.6937445, 47.4016177 ], + [ 7.693848, 47.4017428 ], + [ 7.6939784, 47.4019168 ], + [ 7.6939169, 47.401904 ], + [ 7.6938788, 47.4019035 ], + [ 7.6937282, 47.401944 ], + [ 7.6936824999999995, 47.4019918 ], + [ 7.6935318, 47.4017976 ], + [ 7.6933177, 47.4017726 ], + [ 7.6929285, 47.4017237 ], + [ 7.6929278, 47.4017543 ], + [ 7.6929188, 47.402121 ], + [ 7.6929133, 47.402326 ], + [ 7.6927543, 47.4025928 ], + [ 7.6927338, 47.4027873 ], + [ 7.6927547, 47.4032887 ], + [ 7.6922385, 47.4032631 ], + [ 7.6922719, 47.4030821 ], + [ 7.6921805, 47.4030565 ], + [ 7.6919808, 47.403005 ], + [ 7.6916608, 47.4030794 ], + [ 7.6913852, 47.4030962 ], + [ 7.6909876, 47.4031713 ], + [ 7.690907, 47.4032571 ], + [ 7.6907399, 47.4034368 ], + [ 7.6908048, 47.4037506 ], + [ 7.6910793, 47.403998 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns258", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Rifenstein - Horniflue", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Rifenstein - Horniflue", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Rifenstein - Horniflue", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Rifenstein - Horniflue", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6606321, 47.5137756 ], + [ 7.6605742, 47.5137838 ], + [ 7.6605564, 47.5137869 ], + [ 7.66057, 47.5138121 ], + [ 7.6607135, 47.5140769 ], + [ 7.6609096, 47.5144388 ], + [ 7.6609422, 47.5144989 ], + [ 7.6609766, 47.5145021 ], + [ 7.6610311, 47.5145208 ], + [ 7.6610564, 47.5145295 ], + [ 7.6611949, 47.5146001 ], + [ 7.6612772, 47.5146187 ], + [ 7.6612901, 47.5146172 ], + [ 7.6613541, 47.514609899999996 ], + [ 7.6613664, 47.5146048 ], + [ 7.6615167, 47.5145423 ], + [ 7.6616897, 47.5144918 ], + [ 7.6618734, 47.5144571 ], + [ 7.6619866, 47.5144469 ], + [ 7.6620622, 47.51444 ], + [ 7.6627918, 47.5144139 ], + [ 7.6627443, 47.5137628 ], + [ 7.6626933, 47.5137577 ], + [ 7.6626294, 47.5137703 ], + [ 7.6625631, 47.5137665 ], + [ 7.6624554, 47.5137476 ], + [ 7.6618531, 47.5137127 ], + [ 7.6615069, 47.5136926 ], + [ 7.6611963, 47.5137039 ], + [ 7.6610572, 47.5137196 ], + [ 7.660971, 47.5137293 ], + [ 7.6609226, 47.5137348 ], + [ 7.6606321, 47.5137756 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns315", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Zinggibrunn", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Zinggibrunn", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Zinggibrunn", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Zinggibrunn", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.3324487, 47.3710234 ], + [ 8.3324787, 47.371006 ], + [ 8.3325283, 47.3710137 ], + [ 8.332582, 47.3709799 ], + [ 8.332651, 47.3709116 ], + [ 8.3326645, 47.3708586 ], + [ 8.3326754, 47.3708424 ], + [ 8.3327198, 47.3708271 ], + [ 8.3328041, 47.3708115 ], + [ 8.3328449, 47.3707756 ], + [ 8.3329362, 47.3707025 ], + [ 8.3329907, 47.3706262 ], + [ 8.3330451, 47.3705441 ], + [ 8.3330423, 47.370474 ], + [ 8.3330162, 47.3704431 ], + [ 8.3329633, 47.3704262 ], + [ 8.3329357, 47.3704034 ], + [ 8.3329497, 47.3703826 ], + [ 8.3330356, 47.3703636 ], + [ 8.3330922, 47.370316 ], + [ 8.3331284, 47.3702916 ], + [ 8.3331953, 47.3702808 ], + [ 8.333256, 47.3702826 ], + [ 8.3332955, 47.3702605 ], + [ 8.3333154, 47.3702167 ], + [ 8.3333099, 47.3701718 ], + [ 8.3332677, 47.3701319 ], + [ 8.3331922, 47.3700952 ], + [ 8.3331589, 47.3700678 ], + [ 8.3331422, 47.370048 ], + [ 8.3331123, 47.3700299 ], + [ 8.3331118, 47.3700061 ], + [ 8.3331483, 47.3699796 ], + [ 8.3331821, 47.3699285 ], + [ 8.3332171, 47.3698782 ], + [ 8.3332151, 47.369836 ], + [ 8.3331826, 47.3697972 ], + [ 8.3331125, 47.3697771 ], + [ 8.3330319, 47.3697818 ], + [ 8.332906, 47.3697934 ], + [ 8.3328545, 47.3697982 ], + [ 8.3327663, 47.3698045 ], + [ 8.3327256, 47.3697841 ], + [ 8.3326767, 47.3697954 ], + [ 8.3325807, 47.3697925 ], + [ 8.3324161, 47.3697888 ], + [ 8.3322709, 47.3697811 ], + [ 8.3322043, 47.3697756 ], + [ 8.3321153, 47.3697466 ], + [ 8.3320027, 47.369677 ], + [ 8.3319311, 47.3696416 ], + [ 8.3318357, 47.3696157 ], + [ 8.3317117, 47.3695786 ], + [ 8.3316522, 47.3695515 ], + [ 8.3316208, 47.3695065 ], + [ 8.3315948, 47.3694645 ], + [ 8.3315518, 47.3694396 ], + [ 8.3314984, 47.3694432 ], + [ 8.3313928, 47.3694512 ], + [ 8.3313125, 47.3694651 ], + [ 8.3312905, 47.3694561 ], + [ 8.3313108, 47.3693875 ], + [ 8.3313242, 47.3693474 ], + [ 8.331365, 47.3693178 ], + [ 8.3314301, 47.3693049 ], + [ 8.3314506, 47.3692939 ], + [ 8.3314522, 47.3692693 ], + [ 8.3314276, 47.3692365 ], + [ 8.3313526, 47.3691966 ], + [ 8.3312516, 47.3691661 ], + [ 8.331154399999999, 47.3691532 ], + [ 8.3310475, 47.3691505 ], + [ 8.3309619, 47.3691798 ], + [ 8.3309272, 47.3692362 ], + [ 8.3309747, 47.369321 ], + [ 8.3309961, 47.3693515 ], + [ 8.3310455, 47.3693687 ], + [ 8.3310757, 47.3694053 ], + [ 8.3311154, 47.3694801 ], + [ 8.331153, 47.3695036 ], + [ 8.3312163, 47.3695068 ], + [ 8.3312358, 47.3695511 ], + [ 8.3312485, 47.3695879 ], + [ 8.3312966, 47.3696427 ], + [ 8.331366, 47.3697311 ], + [ 8.331424, 47.369792 ], + [ 8.3314671, 47.3698707 ], + [ 8.331516, 47.3699163 ], + [ 8.3315588, 47.3699827 ], + [ 8.3315811, 47.3700032 ], + [ 8.3315921, 47.3700592 ], + [ 8.3316119, 47.3700713 ], + [ 8.3316222, 47.3700927 ], + [ 8.3316096, 47.3701357 ], + [ 8.3315924, 47.3702451 ], + [ 8.3316041, 47.370367 ], + [ 8.3316238, 47.3704002 ], + [ 8.3316086, 47.370444 ], + [ 8.3315971, 47.3705154 ], + [ 8.3316208, 47.3705934 ], + [ 8.3317051, 47.3707573 ], + [ 8.3317931, 47.3709511 ], + [ 8.3318376, 47.3710324 ], + [ 8.3319327, 47.3710824 ], + [ 8.3319951, 47.3710946 ], + [ 8.3320684, 47.3710871 ], + [ 8.3322149, 47.3710654 ], + [ 8.3323536, 47.3710586 ], + [ 8.3324314, 47.3710385 ], + [ 8.3324487, 47.3710234 ] + ], + [ + [ 8.3328243, 47.3703808 ], + [ 8.3326594, 47.3703679 ], + [ 8.3325951, 47.3703686 ], + [ 8.3325031, 47.3703526 ], + [ 8.3324611, 47.3703254 ], + [ 8.3324014, 47.370283 ], + [ 8.3323961, 47.37024 ], + [ 8.3324184, 47.3701614 ], + [ 8.3324376, 47.3701374 ], + [ 8.332486, 47.3701077 ], + [ 8.3325249, 47.3700943 ], + [ 8.3325787, 47.3701114 ], + [ 8.3326227, 47.3701294 ], + [ 8.3326418, 47.3701553 ], + [ 8.3326475, 47.3702182 ], + [ 8.3326592, 47.3702581 ], + [ 8.332708, 47.3702975 ], + [ 8.3328014, 47.3703288 ], + [ 8.3328379, 47.3703546 ], + [ 8.3328243, 47.3703808 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "KTAG502", + "country" : "CHE", + "name" : [ + { + "text" : "Hegnau", + "lang" : "de-CH" + }, + { + "text" : "Hegnau", + "lang" : "fr-CH" + }, + { + "text" : "Hegnau", + "lang" : "it-CH" + }, + { + "text" : "Hegnau", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "regulationExemption" : "NO", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "schedule" : [ + { + "day" : [ "ANY" ], + "startTime" : "00:00:00.00+01:00", + "endTime" : "00:00:00.00+01:00" + } + ] + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Aargau", + "lang" : "de-CH" + }, + { + "text" : "Canton d'Argovie", + "lang" : "fr-CH" + }, + { + "text" : "Canton Argovia", + "lang" : "it-CH" + }, + { + "text" : "Canton of Aargau", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Departement Bau, Verkehr und Umwelt (BVU)", + "lang" : "de-CH" + }, + { + "text" : "Département de la construction, des transports et de l'environnement (CTE)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento delle costruzioni, dei trasporti e dell'ambiente (CTA)", + "lang" : "it-CH" + }, + { + "text" : "Department of Civil Engineering,Transport and Environment (CTE)", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Sektion Gewässernutzung", + "lang" : "de-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "fr-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "it-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ag.ch/de/verwaltung/bvu/umwelt-natur-landschaft/hochwasserschutz-gewaesser/gewaessernutzung", + "email" : "alg@ag.ch", + "phone" : "0041 62 835 34 50", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4523958, 47.4466833 ], + [ 7.452498, 47.4467443 ], + [ 7.4528351, 47.4469196 ], + [ 7.4528702, 47.4469383 ], + [ 7.4529049, 47.4469575 ], + [ 7.4529392, 47.446977 ], + [ 7.452973, 47.4469968 ], + [ 7.4530064, 47.447017 ], + [ 7.4530393, 47.4470375 ], + [ 7.4530717, 47.4470584 ], + [ 7.4531037, 47.4470796 ], + [ 7.4531351, 47.4471011 ], + [ 7.4531661, 47.4471229 ], + [ 7.4531966, 47.4471451 ], + [ 7.4532266, 47.4471675 ], + [ 7.45325, 47.4471836 ], + [ 7.4532727, 47.4472 ], + [ 7.4532948, 47.4472168 ], + [ 7.4533162, 47.4472341 ], + [ 7.4533369, 47.4472517 ], + [ 7.4533569, 47.4472697 ], + [ 7.4533762, 47.4472881 ], + [ 7.4533948, 47.4473068 ], + [ 7.4534120999999995, 47.4473253 ], + [ 7.4534288, 47.4473441 ], + [ 7.4534447, 47.4473632 ], + [ 7.4534599, 47.4473826 ], + [ 7.4534743, 47.4474022 ], + [ 7.453488, 47.4474221 ], + [ 7.4535009, 47.4474422 ], + [ 7.4535131, 47.4474626 ], + [ 7.4535244, 47.4474831 ], + [ 7.453537, 47.4475029 ], + [ 7.4535505, 47.4475224 ], + [ 7.4535648, 47.4475416 ], + [ 7.4535799, 47.4475605 ], + [ 7.4535959, 47.447579 ], + [ 7.4536127, 47.4475973 ], + [ 7.4536303, 47.4476152 ], + [ 7.4536486, 47.4476327 ], + [ 7.4536678, 47.4476499 ], + [ 7.4536876, 47.4476667 ], + [ 7.4538862, 47.4478109 ], + [ 7.454105, 47.4479094 ], + [ 7.4549479, 47.4481828 ], + [ 7.4552867, 47.4482997 ], + [ 7.4560623, 47.4485763 ], + [ 7.4567535, 47.4488173 ], + [ 7.4570056, 47.4489188 ], + [ 7.4570973, 47.4489643 ], + [ 7.4572971, 47.4483225 ], + [ 7.4574086, 47.4479651 ], + [ 7.4569228, 47.4478563 ], + [ 7.4568798, 47.4478461 ], + [ 7.4567953, 47.4478228 ], + [ 7.4562265, 47.4476506 ], + [ 7.4560427, 47.4475891 ], + [ 7.4558664, 47.4475184 ], + [ 7.4556985000000005, 47.4474387 ], + [ 7.4550626, 47.4471116 ], + [ 7.4550438, 47.4471023 ], + [ 7.4550246, 47.4470934 ], + [ 7.455005, 47.4470851 ], + [ 7.4545194, 47.4468859 ], + [ 7.4544635, 47.4468617 ], + [ 7.4544093, 47.4468356 ], + [ 7.4543572, 47.4468078 ], + [ 7.4538868, 47.4465443 ], + [ 7.4538476, 47.4465215 ], + [ 7.4538097, 47.4464976 ], + [ 7.4537731, 47.4464728 ], + [ 7.4535384, 47.4463175 ], + [ 7.4532897, 47.4461725 ], + [ 7.4532346, 47.4461443 ], + [ 7.4525951, 47.4465475 ], + [ 7.4524483, 47.44664 ], + [ 7.4523958, 47.4466833 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns101", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Challhollen", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Challhollen", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Challhollen", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Challhollen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6518428, 47.0933637 ], + [ 7.6518368, 47.0932225 ], + [ 7.65182, 47.0930817 ], + [ 7.6517925, 47.0929417 ], + [ 7.6517542, 47.0928028 ], + [ 7.6517054, 47.0926656 ], + [ 7.6516461, 47.0925302 ], + [ 7.6515765, 47.0923972 ], + [ 7.6514968, 47.0922668 ], + [ 7.6514073, 47.0921394 ], + [ 7.6513081, 47.0920155 ], + [ 7.6511995, 47.0918952 ], + [ 7.6510819, 47.091779 ], + [ 7.6509555, 47.0916672 ], + [ 7.6508208, 47.09156 ], + [ 7.650678, 47.0914578 ], + [ 7.6505275, 47.0913608 ], + [ 7.6503699, 47.0912693 ], + [ 7.6502054, 47.0911836 ], + [ 7.6500346, 47.0911039 ], + [ 7.649858, 47.0910304 ], + [ 7.6496759, 47.0909633 ], + [ 7.649489, 47.0909029 ], + [ 7.6492976, 47.0908492 ], + [ 7.6491025, 47.0908024 ], + [ 7.648904, 47.0907626 ], + [ 7.6487027, 47.09073 ], + [ 7.6484992, 47.0907046 ], + [ 7.6482941, 47.0906865 ], + [ 7.6480878, 47.0906758 ], + [ 7.647881, 47.0906725 ], + [ 7.6476742, 47.0906766 ], + [ 7.647468, 47.090688 ], + [ 7.647263, 47.0907068 ], + [ 7.6470597, 47.090733 ], + [ 7.6468587, 47.0907663 ], + [ 7.6466606, 47.0908068 ], + [ 7.6464658, 47.0908543 ], + [ 7.6462748, 47.0909087 ], + [ 7.6460884, 47.0909699 ], + [ 7.6459068, 47.0910376 ], + [ 7.6457308, 47.0911117 ], + [ 7.6455606, 47.0911921 ], + [ 7.6453968, 47.0912783 ], + [ 7.6452399, 47.0913704 ], + [ 7.6450902, 47.0914679 ], + [ 7.6449482, 47.0915706 ], + [ 7.6448143, 47.0916783 ], + [ 7.6446888, 47.0917906 ], + [ 7.644572, 47.0919072 ], + [ 7.6444644, 47.0920279 ], + [ 7.6443662, 47.0921522 ], + [ 7.6442776, 47.0922799 ], + [ 7.644199, 47.0924106 ], + [ 7.6441304, 47.0925439 ], + [ 7.6440722, 47.0926794 ], + [ 7.6440244, 47.0928169 ], + [ 7.6439872, 47.0929559 ], + [ 7.6439608, 47.093096 ], + [ 7.6439451, 47.0932368 ], + [ 7.6439402, 47.0933781 ], + [ 7.6439462, 47.0935193 ], + [ 7.6439629, 47.0936601 ], + [ 7.6439905, 47.0938001 ], + [ 7.6440287, 47.093939 ], + [ 7.6440775, 47.0940762 ], + [ 7.6441368, 47.0942116 ], + [ 7.6442063000000005, 47.0943446 ], + [ 7.644286, 47.094475 ], + [ 7.6443756, 47.0946024 ], + [ 7.6444747, 47.0947264 ], + [ 7.6445833, 47.0948466 ], + [ 7.6447009, 47.0949628 ], + [ 7.6448273, 47.0950747 ], + [ 7.644962, 47.0951819 ], + [ 7.6451048, 47.0952841 ], + [ 7.6452553, 47.0953811 ], + [ 7.6454129, 47.0954726 ], + [ 7.6455774, 47.0955583 ], + [ 7.6457482, 47.095638 ], + [ 7.6459249, 47.0957115 ], + [ 7.6461068999999995, 47.0957786 ], + [ 7.6462939, 47.095839 ], + [ 7.6464852, 47.0958928 ], + [ 7.6466804, 47.0959396 ], + [ 7.6468789, 47.0959793 ], + [ 7.6470801999999996, 47.096012 ], + [ 7.6472837, 47.0960373 ], + [ 7.6474889, 47.0960554 ], + [ 7.6476952, 47.0960661 ], + [ 7.647902, 47.0960694 ], + [ 7.6481088, 47.0960654 ], + [ 7.648315, 47.0960539 ], + [ 7.64852, 47.0960351 ], + [ 7.6487233, 47.096009 ], + [ 7.6489244, 47.0959756 ], + [ 7.6491226, 47.0959351 ], + [ 7.6493174, 47.0958876 ], + [ 7.6495083, 47.0958332 ], + [ 7.6496948, 47.095772 ], + [ 7.6498763, 47.0957043 ], + [ 7.6500524, 47.0956302 ], + [ 7.6502226, 47.0955498 ], + [ 7.6503864, 47.0954635 ], + [ 7.6505433, 47.0953715 ], + [ 7.650693, 47.095274 ], + [ 7.650835, 47.0951712 ], + [ 7.6509689, 47.0950636 ], + [ 7.6510944, 47.0949512 ], + [ 7.6512111, 47.0948346 ], + [ 7.6513188, 47.0947139 ], + [ 7.651417, 47.0945896 ], + [ 7.6515055, 47.0944619 ], + [ 7.6515842, 47.0943313 ], + [ 7.6516527, 47.094198 ], + [ 7.6517109, 47.0940624 ], + [ 7.6517587, 47.0939249 ], + [ 7.6517958, 47.093786 ], + [ 7.6518223, 47.0936458 ], + [ 7.6518379, 47.093505 ], + [ 7.6518428, 47.0933637 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0015", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Bickigen", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Bickigen", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Bickigen", + "lang" : "it-CH" + }, + { + "text" : "Substation Bickigen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.9979487, 46.3491992 ], + [ 6.9979413, 46.3489523 ], + [ 6.9979789, 46.3485538 ], + [ 6.9980362, 46.348372499999996 ], + [ 6.9980743, 46.3483065 ], + [ 6.9980625, 46.3482983 ], + [ 6.9980626, 46.3482893 ], + [ 6.9980497, 46.3482802 ], + [ 6.9980497, 46.3482712 ], + [ 6.9980367, 46.3482712 ], + [ 6.9980238, 46.3482621 ], + [ 6.9980109, 46.3482531 ], + [ 6.997998, 46.348244 ], + [ 6.9979981, 46.348235 ], + [ 6.9979851, 46.348226 ], + [ 6.9979721, 46.3482259 ], + [ 6.9979462, 46.3482169 ], + [ 6.9979333, 46.3482078 ], + [ 6.9979203, 46.3482078 ], + [ 6.9979074, 46.3481987 ], + [ 6.9978945, 46.3481897 ], + [ 6.9978685, 46.3481896 ], + [ 6.9978556, 46.3481805 ], + [ 6.9978427, 46.3481715 ], + [ 6.9978297, 46.3481714 ], + [ 6.9978038, 46.3481623 ], + [ 6.9977908, 46.3481623 ], + [ 6.9977649, 46.3481532 ], + [ 6.9977519, 46.3481531 ], + [ 6.997726, 46.348144 ], + [ 6.9977131, 46.348135 ], + [ 6.9977001, 46.3481349 ], + [ 6.9976742, 46.3481258 ], + [ 6.9976612, 46.3481258 ], + [ 6.9976353, 46.3481167 ], + [ 6.9976223, 46.3481166 ], + [ 6.9975964, 46.3481075 ], + [ 6.9975834, 46.3481075 ], + [ 6.9975575, 46.3480984 ], + [ 6.9975446, 46.3480893 ], + [ 6.9975316, 46.3480893 ], + [ 6.9975057, 46.3480802 ], + [ 6.9974927000000005, 46.3480801 ], + [ 6.9974668, 46.348071 ], + [ 6.9974539, 46.348062 ], + [ 6.9974409, 46.3480619 ], + [ 6.997415, 46.3480529 ], + [ 6.997402, 46.3480528 ], + [ 6.9973890999999995, 46.3480438 ], + [ 6.9973761, 46.3480347 ], + [ 6.9973502, 46.3480346 ], + [ 6.9973372, 46.3480256 ], + [ 6.9973243, 46.3480165 ], + [ 6.9973113, 46.3480165 ], + [ 6.9972854, 46.3480074 ], + [ 6.9972725, 46.3479983 ], + [ 6.9972595, 46.3479983 ], + [ 6.9972466, 46.3479892 ], + [ 6.9972337, 46.3479802 ], + [ 6.9972208, 46.3479711 ], + [ 6.9971948, 46.347971 ], + [ 6.9971819, 46.347962 ], + [ 6.9971689999999995, 46.3479529 ], + [ 6.997156, 46.3479529 ], + [ 6.9971431, 46.3479438 ], + [ 6.9971301, 46.3479348 ], + [ 6.9971172, 46.3479257 ], + [ 6.9971043, 46.3479167 ], + [ 6.9970913, 46.3479167 ], + [ 6.9970654, 46.3479076 ], + [ 6.9970525, 46.3478985 ], + [ 6.9970396, 46.3478895 ], + [ 6.9970267, 46.3478804 ], + [ 6.9970137, 46.3478804 ], + [ 6.9970008, 46.3478713 ], + [ 6.9969878, 46.3478623 ], + [ 6.9969749, 46.3478532 ], + [ 6.996962, 46.3478442 ], + [ 6.9969491, 46.3478351 ], + [ 6.9969361, 46.3478351 ], + [ 6.9969232, 46.347826 ], + [ 6.9969103, 46.347817 ], + [ 6.9968973, 46.3478079 ], + [ 6.9968844, 46.3477989 ], + [ 6.9968715, 46.3477899 ], + [ 6.9968585999999995, 46.3477808 ], + [ 6.9968457, 46.3477718 ], + [ 6.9968328, 46.3477627 ], + [ 6.9968198, 46.3477537 ], + [ 6.9968069, 46.3477446 ], + [ 6.9967939, 46.3477446 ], + [ 6.996781, 46.3477355 ], + [ 6.9967681, 46.3477265 ], + [ 6.9967552, 46.3477174 ], + [ 6.9967423, 46.3477084 ], + [ 6.9967293999999995, 46.3476993 ], + [ 6.9967164, 46.3476903 ], + [ 6.9967035, 46.3476812 ], + [ 6.9966906, 46.3476722 ], + [ 6.9966777, 46.3476632 ], + [ 6.9966648, 46.3476541 ], + [ 6.9966519, 46.3476451 ], + [ 6.9966389, 46.347636 ], + [ 6.996613, 46.3476269 ], + [ 6.9966001, 46.3476179 ], + [ 6.9965871, 46.3476178 ], + [ 6.9965741999999995, 46.3476088 ], + [ 6.9965613, 46.3475997 ], + [ 6.9965484, 46.3475907 ], + [ 6.9965355, 46.3475816 ], + [ 6.9965225, 46.3475816 ], + [ 6.9965095999999996, 46.3475725 ], + [ 6.9964966, 46.3475635 ], + [ 6.9964707, 46.3475544 ], + [ 6.9964577, 46.3475543 ], + [ 6.9964448, 46.3475453 ], + [ 6.9964319, 46.3475362 ], + [ 6.9964189, 46.3475362 ], + [ 6.996393, 46.3475271 ], + [ 6.99638, 46.3475271 ], + [ 6.9963671, 46.347518 ], + [ 6.9963541, 46.347518 ], + [ 6.9963282, 46.3475089 ], + [ 6.9963152, 46.3475088 ], + [ 6.9963022, 46.3475088 ], + [ 6.9962893, 46.3474997 ], + [ 6.9962633, 46.3474996 ], + [ 6.9962503, 46.3474996 ], + [ 6.9962374, 46.3474995 ], + [ 6.9962115, 46.3474904 ], + [ 6.9961985, 46.3474904 ], + [ 6.9961855, 46.3474903 ], + [ 6.9961595, 46.3474902 ], + [ 6.9961465, 46.3474902 ], + [ 6.9961206, 46.3474811 ], + [ 6.9961076, 46.347481 ], + [ 6.9960946, 46.347481 ], + [ 6.9960686, 46.3474809 ], + [ 6.9960556, 46.3474808 ], + [ 6.9960297, 46.3474807 ], + [ 6.9960167, 46.3474806 ], + [ 6.9960037, 46.3474806 ], + [ 6.9959777, 46.3474805 ], + [ 6.9959647, 46.3474804 ], + [ 6.9959387, 46.3474803 ], + [ 6.9959257, 46.3474803 ], + [ 6.9958998, 46.3474802 ], + [ 6.9958869, 46.3474711 ], + [ 6.9958739, 46.3474711 ], + [ 6.9958479, 46.347471 ], + [ 6.9958349, 46.3474709 ], + [ 6.9958089, 46.347470799999996 ], + [ 6.9957959, 46.347470799999996 ], + [ 6.9957699, 46.3474707 ], + [ 6.995757, 46.3474706 ], + [ 6.9957309, 46.3474795 ], + [ 6.9957179, 46.3474795 ], + [ 6.9957049, 46.3474794 ], + [ 6.9956789, 46.3474793 ], + [ 6.995666, 46.3474793 ], + [ 6.99564, 46.3474792 ], + [ 6.995627, 46.3474791 ], + [ 6.995614, 46.3474791 ], + [ 6.995588, 46.347479 ], + [ 6.995575, 46.3474789 ], + [ 6.995549, 46.3474878 ], + [ 6.9955359999999995, 46.3474878 ], + [ 6.995523, 46.3474877 ], + [ 6.995497, 46.3474876 ], + [ 6.9954839, 46.3474966 ], + [ 6.995471, 46.3474965 ], + [ 6.995445, 46.3474964 ], + [ 6.9954319, 46.3475053 ], + [ 6.9954189, 46.3475053 ], + [ 6.9954059, 46.3475142 ], + [ 6.9953799, 46.3475141 ], + [ 6.9953668, 46.3475231 ], + [ 6.9953538, 46.347523 ], + [ 6.9953408, 46.347532 ], + [ 6.9953148, 46.3475319 ], + [ 6.9953017, 46.3475408 ], + [ 6.9952887, 46.3475498 ], + [ 6.9952756, 46.3475587 ], + [ 6.9952626, 46.3475587 ], + [ 6.9952495, 46.3475676 ], + [ 6.9952365, 46.3475765 ], + [ 6.9952234, 46.3475855 ], + [ 6.9952103, 46.3475944 ], + [ 6.9951973, 46.3476034 ], + [ 6.9951842, 46.3476123 ], + [ 6.9951712, 46.3476213 ], + [ 6.9951581, 46.3476302 ], + [ 6.995145, 46.3476392 ], + [ 6.995132, 46.3476481 ], + [ 6.9951189, 46.347657 ], + [ 6.9951058, 46.347666 ], + [ 6.9950928, 46.3476749 ], + [ 6.9950797, 46.3476839 ], + [ 6.9950667, 46.3476928 ], + [ 6.9950536, 46.3477018 ], + [ 6.9950406, 46.3477017 ], + [ 6.9950275, 46.3477107 ], + [ 6.9950145, 46.3477196 ], + [ 6.9950014, 46.3477285 ], + [ 6.9949753999999995, 46.3477374 ], + [ 6.9949623, 46.3477464 ], + [ 6.9949492, 46.3477553 ], + [ 6.9949362, 46.3477553 ], + [ 6.9949232, 46.3477642 ], + [ 6.9949101, 46.3477732 ], + [ 6.994897, 46.3477821 ], + [ 6.9948841, 46.3477821 ], + [ 6.994871, 46.347791 ], + [ 6.994845, 46.3477909 ], + [ 6.9948319, 46.3477998 ], + [ 6.994819, 46.3477998 ], + [ 6.9948059, 46.3478087 ], + [ 6.9947799, 46.3478086 ], + [ 6.9947669, 46.3478086 ], + [ 6.9947539, 46.3478175 ], + [ 6.9947409, 46.3478175 ], + [ 6.9947149, 46.3478174 ], + [ 6.9947019, 46.3478173 ], + [ 6.9946889, 46.3478173 ], + [ 6.9946629, 46.3478262 ], + [ 6.9946499, 46.3478261 ], + [ 6.9946369, 46.3478261 ], + [ 6.9946109, 46.347826 ], + [ 6.9945979, 46.3478259 ], + [ 6.9945719, 46.3478258 ], + [ 6.9945588999999995, 46.3478258 ], + [ 6.9945459, 46.3478257 ], + [ 6.99452, 46.3478256 ], + [ 6.994507, 46.3478256 ], + [ 6.994481, 46.3478255 ], + [ 6.9944679999999995, 46.3478254 ], + [ 6.994442, 46.3478253 ], + [ 6.994429, 46.3478253 ], + [ 6.994416, 46.3478252 ], + [ 6.9943901, 46.3478251 ], + [ 6.9943772, 46.3478161 ], + [ 6.9943512, 46.347816 ], + [ 6.9943382, 46.3478159 ], + [ 6.9943121999999995, 46.3478158 ], + [ 6.9942992, 46.3478157 ], + [ 6.9942732, 46.3478156 ], + [ 6.9942602, 46.3478156 ], + [ 6.9942473, 46.3478155 ], + [ 6.9942212999999995, 46.3478154 ], + [ 6.9942084, 46.3478064 ], + [ 6.9941824, 46.3478063 ], + [ 6.9941694, 46.3478062 ], + [ 6.9941434000000005, 46.3478061 ], + [ 6.9941303999999995, 46.3478061 ], + [ 6.9941044, 46.347806 ], + [ 6.9940914, 46.3478059 ], + [ 6.9940785, 46.3478059 ], + [ 6.9940525000000004, 46.3478058 ], + [ 6.9940394999999995, 46.3478057 ], + [ 6.9940135, 46.3478056 ], + [ 6.9940005, 46.3478056 ], + [ 6.9939875, 46.3478055 ], + [ 6.9939615, 46.3478054 ], + [ 6.9939485999999995, 46.3478054 ], + [ 6.9939356, 46.3478053 ], + [ 6.9939096, 46.3478052 ], + [ 6.9938966, 46.3478052 ], + [ 6.9938706, 46.3478051 ], + [ 6.9938576, 46.347805 ], + [ 6.9938446, 46.347805 ], + [ 6.9938187, 46.3478049 ], + [ 6.9938057, 46.3478048 ], + [ 6.9937927, 46.3478048 ], + [ 6.9937667, 46.3478047 ], + [ 6.9937537, 46.3478046 ], + [ 6.9937407, 46.3478046 ], + [ 6.9937147, 46.3478045 ], + [ 6.9937017, 46.3478044 ], + [ 6.9936758, 46.3478043 ], + [ 6.9936628, 46.3478042 ], + [ 6.9936498, 46.3478042 ], + [ 6.9936238, 46.3478041 ], + [ 6.9936108, 46.347804 ], + [ 6.9935978, 46.347804 ], + [ 6.9935718, 46.3478129 ], + [ 6.9935588, 46.3478128 ], + [ 6.9935458, 46.3478128 ], + [ 6.9935198, 46.3478127 ], + [ 6.9935068, 46.3478126 ], + [ 6.9934937999999995, 46.3478126 ], + [ 6.9934679, 46.3478125 ], + [ 6.9934549, 46.3478124 ], + [ 6.9934419, 46.3478124 ], + [ 6.9934159, 46.3478123 ], + [ 6.9934028999999995, 46.3478122 ], + [ 6.9933769, 46.3478121 ], + [ 6.9933639, 46.3478121 ], + [ 6.9933509, 46.347812 ], + [ 6.993325, 46.3478119 ], + [ 6.9933119999999995, 46.3478119 ], + [ 6.993286, 46.3478118 ], + [ 6.993273, 46.3478117 ], + [ 6.99326, 46.3478117 ], + [ 6.993234, 46.3478116 ], + [ 6.993221, 46.3478115 ], + [ 6.9931951, 46.3478114 ], + [ 6.9931821, 46.3478113 ], + [ 6.9931692, 46.3478023 ], + [ 6.9931432000000004, 46.3478022 ], + [ 6.9931301999999995, 46.3478021 ], + [ 6.9931042, 46.347802 ], + [ 6.9930912, 46.347802 ], + [ 6.9930782, 46.3478019 ], + [ 6.9930523, 46.3478018 ], + [ 6.9930392999999995, 46.3478018 ], + [ 6.9930263, 46.3477927 ], + [ 6.9930004, 46.3477926 ], + [ 6.9929874, 46.3477926 ], + [ 6.9929614, 46.3477925 ], + [ 6.9929483999999995, 46.3477924 ], + [ 6.9929355, 46.3477834 ], + [ 6.9929095, 46.3477833 ], + [ 6.9928965, 46.3477832 ], + [ 6.9928836, 46.3477742 ], + [ 6.9928706, 46.3477741 ], + [ 6.9928446, 46.347774 ], + [ 6.9928317, 46.347765 ], + [ 6.9928187, 46.3477649 ], + [ 6.9928057, 46.3477649 ], + [ 6.9927798, 46.3477558 ], + [ 6.9927668, 46.3477557 ], + [ 6.9927539, 46.3477467 ], + [ 6.9927409, 46.3477466 ], + [ 6.992728, 46.3477376 ], + [ 6.9927019999999995, 46.3477375 ], + [ 6.9926891, 46.3477284 ], + [ 6.9926761, 46.3477284 ], + [ 6.9926632, 46.3477193 ], + [ 6.9926502, 46.3477193 ], + [ 6.9926373, 46.3477102 ], + [ 6.9926113, 46.3477101 ], + [ 6.9925984, 46.3477011 ], + [ 6.9925854, 46.347701 ], + [ 6.9925725, 46.347692 ], + [ 6.9925596, 46.347683 ], + [ 6.9925466, 46.3476829 ], + [ 6.9925207, 46.3476738 ], + [ 6.9925078, 46.3476648 ], + [ 6.9924948, 46.3476647 ], + [ 6.9924819, 46.3476557 ], + [ 6.992469, 46.3476466 ], + [ 6.992443, 46.3476465 ], + [ 6.9924301, 46.3476375 ], + [ 6.9924172, 46.3476284 ], + [ 6.9923912, 46.3476193 ], + [ 6.9923783, 46.3476193 ], + [ 6.9923653, 46.3476102 ], + [ 6.9923394, 46.3476011 ], + [ 6.9923265, 46.3475921 ], + [ 6.9923135, 46.347592 ], + [ 6.9922876, 46.3475829 ], + [ 6.9922747, 46.3475739 ], + [ 6.9922488, 46.3475648 ], + [ 6.9922359, 46.3475557 ], + [ 6.9922099, 46.3475556 ], + [ 6.992197, 46.3475466 ], + [ 6.9921711, 46.3475375 ], + [ 6.9921581, 46.3475374 ], + [ 6.9921322, 46.3475283 ], + [ 6.9921192, 46.3475283 ], + [ 6.9920933, 46.3475192 ], + [ 6.9920803, 46.3475191 ], + [ 6.9920673, 46.3475191 ], + [ 6.9920414, 46.34751 ], + [ 6.9920284, 46.3475099 ], + [ 6.9920154, 46.3475099 ], + [ 6.9920024, 46.3475098 ], + [ 6.9919894, 46.3475188 ], + [ 6.9919764, 46.3475187 ], + [ 6.9919633, 46.3475277 ], + [ 6.9919503, 46.3475276 ], + [ 6.9919373, 46.3475366 ], + [ 6.9919242, 46.3475455 ], + [ 6.9919241, 46.3475545 ], + [ 6.9919111, 46.3475634 ], + [ 6.991911, 46.3475724 ], + [ 6.9919108, 46.3475904 ], + [ 6.9918978, 46.3475994 ], + [ 6.9918977, 46.3476084 ], + [ 6.9918976, 46.3476264 ], + [ 6.9918974, 46.3476444 ], + [ 6.9918973, 46.3476533 ], + [ 6.9918972, 46.3476713 ], + [ 6.9918971, 46.3476803 ], + [ 6.991897, 46.3476983 ], + [ 6.9918968, 46.3477163 ], + [ 6.9918967, 46.3477253 ], + [ 6.9918966, 46.3477433 ], + [ 6.9919095, 46.3477523 ], + [ 6.9919094, 46.3477703 ], + [ 6.9919093, 46.3477793 ], + [ 6.9919221, 46.3477974 ], + [ 6.9919221, 46.3478064 ], + [ 6.991922, 46.3478154 ], + [ 6.9919348, 46.3478334 ], + [ 6.9919347, 46.3478424 ], + [ 6.9919477, 46.3478515 ], + [ 6.9919475, 46.3478694 ], + [ 6.9919604, 46.3478785 ], + [ 6.9919604, 46.3478875 ], + [ 6.9919733, 46.3478965 ], + [ 6.9919731, 46.3479145 ], + [ 6.991986, 46.3479236 ], + [ 6.991999, 46.3479326 ], + [ 6.9919989, 46.3479416 ], + [ 6.9920118, 46.3479507 ], + [ 6.9920247, 46.3479597 ], + [ 6.9920246, 46.3479777 ], + [ 6.9920375, 46.3479867 ], + [ 6.9920374, 46.3479957 ], + [ 6.9920503, 46.3480048 ], + [ 6.9920632, 46.3480138 ], + [ 6.9920632, 46.3480228 ], + [ 6.992076, 46.3480409 ], + [ 6.9920889, 46.3480499 ], + [ 6.9920888, 46.3480589 ], + [ 6.9921018, 46.348068 ], + [ 6.9921147, 46.348077 ], + [ 6.9921145, 46.348095 ], + [ 6.9921274, 46.348104 ], + [ 6.9921274, 46.348113 ], + [ 6.9921403, 46.3481221 ], + [ 6.9921532, 46.3481311 ], + [ 6.9921531, 46.3481491 ], + [ 6.992166, 46.3481582 ], + [ 6.9921659, 46.3481672 ], + [ 6.9921788, 46.3481762 ], + [ 6.9921787, 46.3481942 ], + [ 6.9921916, 46.3482033 ], + [ 6.9922045, 46.3482123 ], + [ 6.9922043, 46.3482303 ], + [ 6.9922173, 46.3482393 ], + [ 6.9922172, 46.3482483 ], + [ 6.9922301000000004, 46.3482574 ], + [ 6.99223, 46.3482754 ], + [ 6.9922429, 46.3482844 ], + [ 6.9922558, 46.3482935 ], + [ 6.9922557, 46.3483025 ], + [ 6.9922686, 46.3483205 ], + [ 6.9922685, 46.3483295 ], + [ 6.9922813999999995, 46.3483385 ], + [ 6.9922943, 46.3483476 ], + [ 6.9922942, 46.3483566 ], + [ 6.9923072, 46.3483656 ], + [ 6.99232, 46.3483837 ], + [ 6.9923329, 46.3483927 ], + [ 6.9923328, 46.3484017 ], + [ 6.9923458, 46.3484108 ], + [ 6.9923587, 46.3484198 ], + [ 6.9923716, 46.3484289 ], + [ 6.9923845, 46.3484379 ], + [ 6.9923974, 46.348447 ], + [ 6.9923973, 46.3484559 ], + [ 6.9924102999999995, 46.348465 ], + [ 6.9924232, 46.348474 ], + [ 6.9924361, 46.3484831 ], + [ 6.992449, 46.3484921 ], + [ 6.9924619, 46.3485012 ], + [ 6.9924748, 46.3485102 ], + [ 6.9924878, 46.3485193 ], + [ 6.9925007, 46.3485283 ], + [ 6.9925137, 46.3485284 ], + [ 6.9925266, 46.3485374 ], + [ 6.9925525, 46.3485465 ], + [ 6.9925654, 46.3485556 ], + [ 6.9925783, 46.3485646 ], + [ 6.9925912, 46.3485737 ], + [ 6.9926041, 46.3485827 ], + [ 6.9926171, 46.3485828 ], + [ 6.9926300999999995, 46.3485918 ], + [ 6.992643, 46.3486008 ], + [ 6.9926559, 46.3486099 ], + [ 6.9926819, 46.34861 ], + [ 6.9926948, 46.348619 ], + [ 6.9927077, 46.3486281 ], + [ 6.9927206, 46.3486371 ], + [ 6.9927335, 46.3486462 ], + [ 6.9927465, 46.3486462 ], + [ 6.9927724, 46.3486553 ], + [ 6.9927852999999995, 46.3486644 ], + [ 6.9927983, 46.3486734 ], + [ 6.9928113, 46.3486735 ], + [ 6.9928242, 46.3486825 ], + [ 6.9928501, 46.3486916 ], + [ 6.992863, 46.3487007 ], + [ 6.9928759, 46.3487097 ], + [ 6.9928889, 46.3487098 ], + [ 6.9929018, 46.3487188 ], + [ 6.9929147, 46.3487279 ], + [ 6.9929406, 46.348737 ], + [ 6.9929536, 46.348737 ], + [ 6.9929665, 46.3487461 ], + [ 6.9929795, 46.3487551 ], + [ 6.9929924, 46.3487642 ], + [ 6.9930053, 46.3487732 ], + [ 6.9930182, 46.3487822 ], + [ 6.9930312, 46.3487823 ], + [ 6.9930571, 46.3487914 ], + [ 6.99307, 46.3488004 ], + [ 6.9930829, 46.3488095 ], + [ 6.9930959, 46.3488185 ], + [ 6.9931088, 46.3488276 ], + [ 6.9931218, 46.3488276 ], + [ 6.9931347, 46.3488367 ], + [ 6.9931476, 46.3488457 ], + [ 6.9931605, 46.3488548 ], + [ 6.9931734, 46.3488638 ], + [ 6.9931863, 46.3488729 ], + [ 6.9931993, 46.3488819 ], + [ 6.9932122, 46.348891 ], + [ 6.9932251999999995, 46.348891 ], + [ 6.9932381, 46.3489001 ], + [ 6.993264, 46.3489092 ], + [ 6.9932769, 46.3489182 ], + [ 6.9932898, 46.3489272 ], + [ 6.9933027, 46.3489363 ], + [ 6.9933156, 46.3489453 ], + [ 6.9933156, 46.3489543 ], + [ 6.9933285, 46.3489634 ], + [ 6.9933414, 46.3489724 ], + [ 6.9933543, 46.3489815 ], + [ 6.9933672, 46.3489905 ], + [ 6.9933802, 46.3489996 ], + [ 6.9933931, 46.3490086 ], + [ 6.993406, 46.3490177 ], + [ 6.9934189, 46.3490267 ], + [ 6.9934318, 46.3490358 ], + [ 6.9934446999999995, 46.3490448 ], + [ 6.9934577, 46.3490538 ], + [ 6.9934706, 46.3490629 ], + [ 6.9934835, 46.3490719 ], + [ 6.9934834, 46.3490809 ], + [ 6.9934963, 46.34909 ], + [ 6.9935092, 46.349099 ], + [ 6.9935222, 46.3491081 ], + [ 6.9935351, 46.3491171 ], + [ 6.993548, 46.3491262 ], + [ 6.9935479, 46.3491352 ], + [ 6.9935608, 46.3491442 ], + [ 6.9935738, 46.3491533 ], + [ 6.9935866, 46.3491713 ], + [ 6.9935995, 46.3491803 ], + [ 6.9936124, 46.3491894 ], + [ 6.9936124, 46.3491984 ], + [ 6.9936253, 46.3492074 ], + [ 6.9936381999999995, 46.3492165 ], + [ 6.9936511, 46.3492255 ], + [ 6.993651, 46.3492345 ], + [ 6.9936639, 46.3492526 ], + [ 6.9936768, 46.3492616 ], + [ 6.9936897, 46.3492707 ], + [ 6.9937026, 46.3492797 ], + [ 6.9937024999999995, 46.3492887 ], + [ 6.9937155, 46.3492978 ], + [ 6.9937284, 46.3493068 ], + [ 6.9937413, 46.3493158 ], + [ 6.9937412, 46.3493338 ], + [ 6.9937541, 46.3493429 ], + [ 6.993767, 46.3493519 ], + [ 6.9937799, 46.349361 ], + [ 6.9937798, 46.34937 ], + [ 6.9937927, 46.349379 ], + [ 6.9938056, 46.3493971 ], + [ 6.9938185, 46.3494061 ], + [ 6.9938184, 46.3494151 ], + [ 6.9938313, 46.3494241 ], + [ 6.9938443, 46.3494332 ], + [ 6.9938572, 46.3494422 ], + [ 6.9938571, 46.3494512 ], + [ 6.9938699, 46.3494693 ], + [ 6.9938829, 46.3494783 ], + [ 6.9938958, 46.3494874 ], + [ 6.9938956999999995, 46.3494964 ], + [ 6.9939086, 46.3495054 ], + [ 6.9939215, 46.3495145 ], + [ 6.9939345, 46.3495235 ], + [ 6.9939473, 46.3495415 ], + [ 6.9939472, 46.3495505 ], + [ 6.9939601, 46.3495596 ], + [ 6.9939731, 46.3495686 ], + [ 6.993986, 46.3495777 ], + [ 6.9939989, 46.3495867 ], + [ 6.9939988, 46.3495957 ], + [ 6.9940117, 46.3496048 ], + [ 6.9940245999999995, 46.3496228 ], + [ 6.9940375, 46.3496319 ], + [ 6.9940504, 46.3496409 ], + [ 6.9940503, 46.3496499 ], + [ 6.9940633, 46.349659 ], + [ 6.9940762, 46.349668 ], + [ 6.9940891, 46.349677 ], + [ 6.994102, 46.3496861 ], + [ 6.9941019, 46.3496951 ], + [ 6.9941148, 46.3497041 ], + [ 6.9941277, 46.3497222 ], + [ 6.9941406, 46.3497312 ], + [ 6.9941534999999995, 46.3497403 ], + [ 6.9941664, 46.3497493 ], + [ 6.9941794, 46.3497584 ], + [ 6.9941793, 46.3497674 ], + [ 6.9941922, 46.3497764 ], + [ 6.9942051, 46.3497855 ], + [ 6.994218, 46.3497945 ], + [ 6.9942309, 46.3498035 ], + [ 6.9942439, 46.3498126 ], + [ 6.9942568, 46.3498216 ], + [ 6.9942567, 46.3498306 ], + [ 6.9942696, 46.3498397 ], + [ 6.9942825, 46.3498577 ], + [ 6.9942954, 46.3498668 ], + [ 6.9943083, 46.3498758 ], + [ 6.9943212, 46.3498849 ], + [ 6.9943341, 46.3498939 ], + [ 6.994347, 46.349903 ], + [ 6.99436, 46.349912 ], + [ 6.9943599, 46.349921 ], + [ 6.9943728, 46.34993 ], + [ 6.9943857, 46.3499391 ], + [ 6.9943986, 46.3499481 ], + [ 6.9944116, 46.3499572 ], + [ 6.9944245, 46.3499662 ], + [ 6.9944374, 46.3499753 ], + [ 6.9944503000000005, 46.3499843 ], + [ 6.9944632, 46.3499934 ], + [ 6.9944761, 46.3500024 ], + [ 6.9944891, 46.3500115 ], + [ 6.994489, 46.3500205 ], + [ 6.9945018999999995, 46.3500295 ], + [ 6.9945148, 46.3500385 ], + [ 6.9945277, 46.3500476 ], + [ 6.9945407, 46.3500566 ], + [ 6.9945536, 46.3500657 ], + [ 6.9945664999999995, 46.3500747 ], + [ 6.9945794, 46.3500838 ], + [ 6.9945923, 46.3500928 ], + [ 6.9946052, 46.3501019 ], + [ 6.9946182, 46.3501109 ], + [ 6.9946311, 46.35012 ], + [ 6.994631, 46.350129 ], + [ 6.9946439, 46.350138 ], + [ 6.9946568, 46.3501471 ], + [ 6.9946697, 46.3501561 ], + [ 6.9946749, 46.3501597 ], + [ 6.9947034, 46.3501769 ], + [ 6.9947801, 46.3501673 ], + [ 6.9949179, 46.3501499 ], + [ 6.9950285, 46.3501368 ], + [ 6.995572, 46.3500706 ], + [ 6.9955888999999996, 46.3500698 ], + [ 6.9956369, 46.3500789 ], + [ 6.9957262, 46.3501144 ], + [ 6.996138, 46.3502761 ], + [ 6.9961626, 46.3502897 ], + [ 6.9963549, 46.3504407 ], + [ 6.9965551999999995, 46.3505818 ], + [ 6.9972876, 46.350609 ], + [ 6.9973733, 46.3506138 ], + [ 6.9975192, 46.3505658 ], + [ 6.9975115, 46.3505541 ], + [ 6.9975116, 46.3505451 ], + [ 6.9974986999999995, 46.350536 ], + [ 6.9974988, 46.350518 ], + [ 6.9974859, 46.350509 ], + [ 6.997486, 46.3505 ], + [ 6.9974731, 46.3504819 ], + [ 6.9974732, 46.3504729 ], + [ 6.9974733, 46.3504639 ], + [ 6.9974604, 46.3504459 ], + [ 6.9974605, 46.3504369 ], + [ 6.9974606999999995, 46.3504189 ], + [ 6.9974477, 46.3504099 ], + [ 6.9974479, 46.3503919 ], + [ 6.997448, 46.3503829 ], + [ 6.997448, 46.3503739 ], + [ 6.9974352, 46.3503558 ], + [ 6.9974353, 46.3503469 ], + [ 6.9974354, 46.3503289 ], + [ 6.9974355, 46.3503199 ], + [ 6.9974356, 46.3503109 ], + [ 6.9974226999999996, 46.3502928 ], + [ 6.9974228, 46.3502838 ], + [ 6.9974229, 46.3502658 ], + [ 6.9974229999999995, 46.3502568 ], + [ 6.9974231, 46.3502479 ], + [ 6.9974232, 46.3502299 ], + [ 6.9974103, 46.3502208 ], + [ 6.9974104, 46.3502028 ], + [ 6.9974105, 46.3501938 ], + [ 6.9974106, 46.3501848 ], + [ 6.9974107, 46.3501668 ], + [ 6.9974108, 46.3501578 ], + [ 6.9974109, 46.3501489 ], + [ 6.997411, 46.3501309 ], + [ 6.9974111, 46.3501219 ], + [ 6.9974113, 46.3501039 ], + [ 6.9974113, 46.3500949 ], + [ 6.9974114, 46.3500859 ], + [ 6.9974115, 46.3500679 ], + [ 6.9974115999999995, 46.3500589 ], + [ 6.9974117, 46.3500499 ], + [ 6.9974118, 46.3500319 ], + [ 6.9974118999999995, 46.3500229 ], + [ 6.997412, 46.3500139 ], + [ 6.9974121, 46.3499959 ], + [ 6.9974122, 46.3499869 ], + [ 6.9974123, 46.3499779 ], + [ 6.9974124, 46.3499599 ], + [ 6.9974125, 46.349951 ], + [ 6.9974126, 46.349933 ], + [ 6.9974127, 46.349924 ], + [ 6.9974128, 46.349915 ], + [ 6.9974129, 46.349897 ], + [ 6.997413, 46.349888 ], + [ 6.9974131, 46.349879 ], + [ 6.9974132, 46.349861 ], + [ 6.9974133, 46.349852 ], + [ 6.9974264, 46.3498431 ], + [ 6.9974264999999995, 46.3498251 ], + [ 6.9974266, 46.3498161 ], + [ 6.9974267, 46.3497981 ], + [ 6.9974267999999995, 46.3497891 ], + [ 6.9974269, 46.3497801 ], + [ 6.997427, 46.3497621 ], + [ 6.9974401, 46.3497532 ], + [ 6.9974402, 46.3497352 ], + [ 6.9974403, 46.3497262 ], + [ 6.9974404, 46.3497172 ], + [ 6.9974535, 46.3496992 ], + [ 6.9974536, 46.3496902 ], + [ 6.9974537, 46.3496812 ], + [ 6.9974538, 46.3496632 ], + [ 6.9974669, 46.3496543 ], + [ 6.997467, 46.3496453 ], + [ 6.9974671, 46.3496273 ], + [ 6.9974802, 46.3496184 ], + [ 6.9974803, 46.3496004 ], + [ 6.9974804, 46.3495914 ], + [ 6.9974934, 46.3495824 ], + [ 6.9974935, 46.3495734 ], + [ 6.9975067, 46.3495555 ], + [ 6.9975067, 46.3495465 ], + [ 6.9975198, 46.3495376 ], + [ 6.9975199, 46.3495196 ], + [ 6.997533, 46.3495106 ], + [ 6.9975331, 46.349501599999996 ], + [ 6.9975461, 46.3494927 ], + [ 6.9975593, 46.3494747 ], + [ 6.9975594, 46.3494658 ], + [ 6.9975724, 46.3494568 ], + [ 6.9975855, 46.3494479 ], + [ 6.9975986, 46.3494299 ], + [ 6.9975987, 46.3494209 ], + [ 6.9976118, 46.349412 ], + [ 6.9976248, 46.349403 ], + [ 6.9976379, 46.3493941 ], + [ 6.9976509, 46.3493851 ], + [ 6.997664, 46.3493762 ], + [ 6.9976771, 46.3493673 ], + [ 6.9976902, 46.3493493 ], + [ 6.9977032999999995, 46.3493404 ], + [ 6.9977163000000004, 46.3493314 ], + [ 6.9977294, 46.3493225 ], + [ 6.9977425, 46.3493135 ], + [ 6.9977555, 46.349304599999996 ], + [ 6.9977686, 46.3492956 ], + [ 6.9977946, 46.3492868 ], + [ 6.9978077, 46.3492778 ], + [ 6.9978207999999995, 46.3492689 ], + [ 6.9978338, 46.3492599 ], + [ 6.9978468, 46.34926 ], + [ 6.9978599, 46.349251 ], + [ 6.9978859, 46.3492421 ], + [ 6.997899, 46.3492332 ], + [ 6.9979121, 46.3492242 ], + [ 6.9979251, 46.3492153 ], + [ 6.9979382, 46.3492064 ], + [ 6.9979487, 46.3491992 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00053", + "country" : "CHE", + "name" : [ + { + "text" : "La Riondaz", + "lang" : "de-CH" + }, + { + "text" : "La Riondaz", + "lang" : "fr-CH" + }, + { + "text" : "La Riondaz", + "lang" : "it-CH" + }, + { + "text" : "La Riondaz", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "startDateTime" : "2024-11-15T00:00:00+01:00", + "endDateTime" : "2025-04-15T00:00:00+02:00" + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Generaldirektion für Umwelt", + "lang" : "de-CH" + }, + { + "text" : "Direction générale de l'environnement", + "lang" : "fr-CH" + }, + { + "text" : "Direzione generale dell'Ambiente", + "lang" : "it-CH" + }, + { + "text" : "Environment Department", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.dge@vd.ch", + "phone" : "0041213164422", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4522313, 47.4524559 ], + [ 7.4508094, 47.4512149 ], + [ 7.4509475, 47.4511499 ], + [ 7.4511087, 47.4510684 ], + [ 7.4511358, 47.4510477 ], + [ 7.4511602, 47.4510255 ], + [ 7.4511815, 47.4510019 ], + [ 7.4511996, 47.450977 ], + [ 7.4512129, 47.450954 ], + [ 7.4512235, 47.4509304 ], + [ 7.4512313, 47.4509062 ], + [ 7.4512034, 47.4508974 ], + [ 7.4510813, 47.4508589 ], + [ 7.4509793, 47.4508141 ], + [ 7.4508478, 47.4507781 ], + [ 7.4507112, 47.4507341 ], + [ 7.4506493, 47.4507156 ], + [ 7.4506193, 47.4506752 ], + [ 7.450535, 47.4506579 ], + [ 7.4503620999999995, 47.4506145 ], + [ 7.4502133, 47.4505499 ], + [ 7.4500984, 47.4504574 ], + [ 7.4499788, 47.4503503 ], + [ 7.4499328, 47.4502889 ], + [ 7.4498523, 47.4504019 ], + [ 7.4497821, 47.4504593 ], + [ 7.4497248, 47.4505064 ], + [ 7.44969, 47.4505368 ], + [ 7.4496545, 47.4505662 ], + [ 7.4496176, 47.4505954 ], + [ 7.449558, 47.4506572 ], + [ 7.4495249999999995, 47.4506849 ], + [ 7.4494853, 47.4507105 ], + [ 7.4494375999999995, 47.4507315 ], + [ 7.4494053, 47.4507419 ], + [ 7.4492908, 47.45077 ], + [ 7.4492398, 47.4507845 ], + [ 7.4491903, 47.4508076 ], + [ 7.4491743, 47.4508206 ], + [ 7.4491676, 47.4508281 ], + [ 7.4491551, 47.4508435 ], + [ 7.4491448, 47.4508574 ], + [ 7.4491377, 47.450866 ], + [ 7.4491309, 47.45087 ], + [ 7.4491124, 47.4508697 ], + [ 7.4491024, 47.450868 ], + [ 7.4490786, 47.4508623 ], + [ 7.4490298, 47.4508479 ], + [ 7.4489795, 47.4508296 ], + [ 7.4489275, 47.4508166 ], + [ 7.4488759, 47.4508061 ], + [ 7.4488233, 47.4507976 ], + [ 7.4487686, 47.4507942 ], + [ 7.448712, 47.4507913 ], + [ 7.4486549, 47.4507826 ], + [ 7.448606, 47.4507679 ], + [ 7.4485405, 47.4507441 ], + [ 7.4484955, 47.4507247 ], + [ 7.448454, 47.4507022 ], + [ 7.4484127, 47.450676 ], + [ 7.448374, 47.4506496 ], + [ 7.4483343, 47.4506222 ], + [ 7.4482965, 47.4505946 ], + [ 7.4482585, 47.4505689 ], + [ 7.4482363, 47.4505543 ], + [ 7.4481852, 47.4505691 ], + [ 7.4481469, 47.4505995 ], + [ 7.4480916, 47.4506799 ], + [ 7.4480476, 47.4507241 ], + [ 7.447923, 47.4508144 ], + [ 7.4477994, 47.4509058 ], + [ 7.4476700000000005, 47.4509859 ], + [ 7.4475458, 47.4510508 ], + [ 7.4474588, 47.4511313 ], + [ 7.4473719, 47.4511996 ], + [ 7.44728, 47.4512653 ], + [ 7.4471902, 47.4513134 ], + [ 7.4470826, 47.4513328 ], + [ 7.4469414, 47.4513409 ], + [ 7.446928, 47.4515418 ], + [ 7.4469235, 47.4515921 ], + [ 7.4469715, 47.451611 ], + [ 7.4473158999999995, 47.4517333 ], + [ 7.447678, 47.4518387 ], + [ 7.4480084, 47.4519184 ], + [ 7.4483004, 47.4519839 ], + [ 7.4484166, 47.4520085 ], + [ 7.4484766, 47.4520156 ], + [ 7.4485337, 47.4520191 ], + [ 7.448591, 47.4520194 ], + [ 7.4486482, 47.4520166 ], + [ 7.4487389, 47.4520057 ], + [ 7.4488289, 47.451992 ], + [ 7.4489179, 47.4519757 ], + [ 7.449009, 47.4519559 ], + [ 7.4490988, 47.4519333 ], + [ 7.4491868, 47.451908 ], + [ 7.4492871, 47.4518655 ], + [ 7.4492928, 47.4519171 ], + [ 7.4492999, 47.4519418 ], + [ 7.4492526, 47.4520515 ], + [ 7.4491906, 47.4521681 ], + [ 7.4491671, 47.4522227 ], + [ 7.44915, 47.4522487 ], + [ 7.4491296, 47.4522736 ], + [ 7.4491059, 47.4522971 ], + [ 7.4490815, 47.4523222 ], + [ 7.449063, 47.4523348 ], + [ 7.4495362, 47.4527352 ], + [ 7.4494917, 47.4527686 ], + [ 7.4494546, 47.4527949 ], + [ 7.449415, 47.4528199 ], + [ 7.4493666, 47.4528367 ], + [ 7.4493183, 47.4528579 ], + [ 7.4492643, 47.4528722 ], + [ 7.4492102, 47.4528816 ], + [ 7.4491562, 47.4528892 ], + [ 7.4491034, 47.4528997 ], + [ 7.4490486, 47.4529088 ], + [ 7.448999, 47.4529243 ], + [ 7.4489513, 47.452945 ], + [ 7.4489133, 47.4529719 ], + [ 7.4488787, 47.4530023 ], + [ 7.4488492, 47.4530325 ], + [ 7.4488247, 47.4530646 ], + [ 7.4488129, 47.453081 ], + [ 7.4486368, 47.4531077 ], + [ 7.4486036, 47.4531217 ], + [ 7.4485554, 47.4531456 ], + [ 7.4485281, 47.4531603 ], + [ 7.4484919, 47.4531871 ], + [ 7.4484581, 47.4532177 ], + [ 7.448416, 47.453241 ], + [ 7.4483683, 47.453258 ], + [ 7.4483551, 47.4532611 ], + [ 7.4483053, 47.4532787 ], + [ 7.4482796, 47.4532891 ], + [ 7.4482341, 47.4533065 ], + [ 7.4481881, 47.4533275 ], + [ 7.4481463, 47.4533494 ], + [ 7.4481065, 47.4533722 ], + [ 7.4480732, 47.4533999 ], + [ 7.4480139, 47.4534605 ], + [ 7.4479790999999995, 47.4534915 ], + [ 7.4479679, 47.4535243 ], + [ 7.4479628, 47.4535516 ], + [ 7.4479647, 47.4535755 ], + [ 7.4479729, 47.4536088 ], + [ 7.4479965, 47.4536561 ], + [ 7.448011, 47.453674 ], + [ 7.4480698, 47.4537292 ], + [ 7.4480914, 47.4537466 ], + [ 7.4480919, 47.4537603 ], + [ 7.4480885, 47.4537668 ], + [ 7.4480403, 47.4537864 ], + [ 7.4480221, 47.453793 ], + [ 7.4479777, 47.4538124 ], + [ 7.4479354, 47.4538367 ], + [ 7.4479048, 47.4538694 ], + [ 7.4478985, 47.4539059 ], + [ 7.447902, 47.4539418 ], + [ 7.4479088, 47.4539766 ], + [ 7.447914, 47.4540104 ], + [ 7.4479182999999995, 47.454044 ], + [ 7.4479163, 47.4540801 ], + [ 7.4479084, 47.4541121 ], + [ 7.4479006, 47.4541271 ], + [ 7.4478916, 47.454141 ], + [ 7.4478809, 47.4541602 ], + [ 7.447852, 47.4542052 ], + [ 7.4479144, 47.4542502 ], + [ 7.4479742, 47.4542933 ], + [ 7.4480657, 47.4543715 ], + [ 7.4481643, 47.4544483 ], + [ 7.4482271, 47.4545243 ], + [ 7.4483132, 47.4546074 ], + [ 7.4484123, 47.4546777 ], + [ 7.4485037, 47.4547265 ], + [ 7.4485434999999995, 47.4547389 ], + [ 7.4486687, 47.4547161 ], + [ 7.4488043, 47.4546956 ], + [ 7.448957, 47.4546726 ], + [ 7.4490613, 47.4546839 ], + [ 7.4491304, 47.4546993 ], + [ 7.4492552, 47.4546827 ], + [ 7.4493667, 47.4546542 ], + [ 7.4494425, 47.4546573 ], + [ 7.4494977, 47.454677 ], + [ 7.4496486, 47.4547586 ], + [ 7.4499729, 47.4544689 ], + [ 7.4508124, 47.4537154 ], + [ 7.4513618, 47.4532338 ], + [ 7.4516774, 47.4529503 ], + [ 7.4519932, 47.4526675 ], + [ 7.4522313, 47.4524559 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns106", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Blüttenenchöpfli - Chaselboden", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Blüttenenchöpfli - Chaselboden", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Blüttenenchöpfli - Chaselboden", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Blüttenenchöpfli - Chaselboden", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.8504178, 47.3203818 ], + [ 8.8504086, 47.3202407 ], + [ 8.8503886, 47.3201001 ], + [ 8.8503578, 47.3199604 ], + [ 8.8503163, 47.3198219 ], + [ 8.8502641, 47.3196852 ], + [ 8.8502015, 47.3195505 ], + [ 8.850128699999999, 47.3194182 ], + [ 8.8500458, 47.3192887 ], + [ 8.849953, 47.3191623 ], + [ 8.8498506, 47.3190394 ], + [ 8.8497389, 47.3189203 ], + [ 8.8496181, 47.3188053 ], + [ 8.8494887, 47.3186948 ], + [ 8.849351, 47.318589 ], + [ 8.8492053, 47.3184883 ], + [ 8.8490521, 47.3183929 ], + [ 8.8488917, 47.3183031 ], + [ 8.8487247, 47.3182192 ], + [ 8.8485514, 47.3181413 ], + [ 8.8483723, 47.3180696 ], + [ 8.848188, 47.3180045 ], + [ 8.8479989, 47.3179459 ], + [ 8.8478056, 47.3178942 ], + [ 8.8476086, 47.3178495 ], + [ 8.847408399999999, 47.3178118 ], + [ 8.8472055, 47.3177813 ], + [ 8.8470006, 47.317758 ], + [ 8.8467942, 47.3177421 ], + [ 8.8465869, 47.3177336 ], + [ 8.8463791, 47.3177324 ], + [ 8.8461716, 47.3177386 ], + [ 8.8459648, 47.3177522 ], + [ 8.8457594, 47.3177732 ], + [ 8.8455558, 47.3178014 ], + [ 8.845354799999999, 47.3178369 ], + [ 8.8451567, 47.3178794 ], + [ 8.8449621, 47.3179289 ], + [ 8.8447716, 47.3179853 ], + [ 8.8445858, 47.3180484 ], + [ 8.844405, 47.318118 ], + [ 8.8442299, 47.318194 ], + [ 8.8440608, 47.3182761 ], + [ 8.8438983, 47.3183641 ], + [ 8.8437428, 47.3184577 ], + [ 8.8435947, 47.3185568 ], + [ 8.8434544, 47.318661 ], + [ 8.8433223, 47.3187701 ], + [ 8.8431988, 47.3188837 ], + [ 8.8430842, 47.3190015 ], + [ 8.8429789, 47.3191232 ], + [ 8.8428831, 47.3192486 ], + [ 8.842797, 47.3193772 ], + [ 8.8427209, 47.3195086 ], + [ 8.8426551, 47.3196426 ], + [ 8.8425997, 47.3197788 ], + [ 8.8425548, 47.3199167 ], + [ 8.8425206, 47.320056 ], + [ 8.8424972, 47.3201964 ], + [ 8.8424846, 47.3203374 ], + [ 8.8424829, 47.3204787 ], + [ 8.842492, 47.3206198 ], + [ 8.842512, 47.3207604 ], + [ 8.8425428, 47.3209001 ], + [ 8.8425843, 47.3210385 ], + [ 8.8426364, 47.3211753 ], + [ 8.842699, 47.32131 ], + [ 8.8427718, 47.3214423 ], + [ 8.8428548, 47.3215718 ], + [ 8.8429475, 47.3216982 ], + [ 8.8430499, 47.3218212 ], + [ 8.8431616, 47.3219403 ], + [ 8.8432823, 47.3220552 ], + [ 8.8434117, 47.3221658 ], + [ 8.8435495, 47.3222715 ], + [ 8.843695199999999, 47.3223722 ], + [ 8.8438484, 47.3224676 ], + [ 8.8440088, 47.3225574 ], + [ 8.8441758, 47.3226414 ], + [ 8.8443491, 47.3227193 ], + [ 8.8445282, 47.322791 ], + [ 8.8447125, 47.3228561 ], + [ 8.8449016, 47.3229147 ], + [ 8.8450949, 47.3229664 ], + [ 8.845292, 47.3230111 ], + [ 8.8454922, 47.3230488 ], + [ 8.8456951, 47.3230793 ], + [ 8.8459, 47.3231026 ], + [ 8.8461064, 47.3231185 ], + [ 8.8463138, 47.323127 ], + [ 8.8465215, 47.3231282 ], + [ 8.8467291, 47.323122 ], + [ 8.8469359, 47.3231084 ], + [ 8.8471413, 47.3230874 ], + [ 8.8473449, 47.3230592 ], + [ 8.847546, 47.3230238 ], + [ 8.8477441, 47.3229812 ], + [ 8.8479387, 47.3229317 ], + [ 8.8481292, 47.3228753 ], + [ 8.848315, 47.3228122 ], + [ 8.8484958, 47.3227425 ], + [ 8.848671, 47.3226666 ], + [ 8.84884, 47.3225845 ], + [ 8.8490026, 47.3224965 ], + [ 8.8491581, 47.3224028 ], + [ 8.849306200000001, 47.3223037 ], + [ 8.849446499999999, 47.322199499999996 ], + [ 8.8495785, 47.3220905 ], + [ 8.849702, 47.3219769 ], + [ 8.8498166, 47.321859 ], + [ 8.8499219, 47.3217373 ], + [ 8.8500178, 47.3216119 ], + [ 8.8501038, 47.3214833 ], + [ 8.8501799, 47.3213519 ], + [ 8.8502457, 47.3212179 ], + [ 8.8503011, 47.3210817 ], + [ 8.8503459, 47.3209438 ], + [ 8.8503801, 47.3208045 ], + [ 8.8504035, 47.3206641 ], + [ 8.8504161, 47.3205231 ], + [ 8.8504178, 47.3203818 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VZB0001", + "country" : "CHE", + "name" : [ + { + "text" : "Vollzugszentrum Bachtel", + "lang" : "de-CH" + }, + { + "text" : "Vollzugszentrum Bachtel", + "lang" : "fr-CH" + }, + { + "text" : "Vollzugszentrum Bachtel", + "lang" : "it-CH" + }, + { + "text" : "Vollzugszentrum Bachtel", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "de-CH" + }, + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "fr-CH" + }, + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "it-CH" + }, + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "de-CH" + }, + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "fr-CH" + }, + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "it-CH" + }, + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Reno Berner", + "lang" : "de-CH" + }, + { + "text" : "Reno Berner", + "lang" : "fr-CH" + }, + { + "text" : "Reno Berner", + "lang" : "it-CH" + }, + { + "text" : "Reno Berner", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.zh.ch/de/direktion-der-justiz-und-des-innern/justizvollzug-wiedereingliederung.html", + "email" : "sicherheit-juwe@ji.zh.ch", + "phone" : "0041432583400", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT12H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4867355, 46.2681218 ], + [ 7.4874352, 46.2684709 ], + [ 7.4882999, 46.2684392 ], + [ 7.4904629, 46.2656275 ], + [ 7.488687, 46.2641316 ], + [ 7.4863856, 46.2634077 ], + [ 7.4862192, 46.262297 ], + [ 7.4792559, 46.260876 ], + [ 7.4789407, 46.2616688 ], + [ 7.4786937, 46.2631812 ], + [ 7.4782956, 46.2637915 ], + [ 7.4814543, 46.264729 ], + [ 7.4807455, 46.2659167 ], + [ 7.4819911, 46.2659884 ], + [ 7.4859819, 46.2676745 ], + [ 7.4867355, 46.2681218 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "CRE0001", + "country" : "CHE", + "name" : [ + { + "text" : "Etablissement pénitentiaire de Crêtelongue", + "lang" : "de-CH" + }, + { + "text" : "Etablissement pénitentiaire de Crêtelongue", + "lang" : "fr-CH" + }, + { + "text" : "Etablissement pénitentiaire de Crêtelongue", + "lang" : "it-CH" + }, + { + "text" : "Etablissement pénitentiaire de Crêtelongue", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Dienststelle für Straf-und Massnahmenvollzug", + "lang" : "de-CH" + }, + { + "text" : "Service de l'application des peines et mesures", + "lang" : "fr-CH" + }, + { + "text" : "Service de l'application des peines et mesures", + "lang" : "it-CH" + }, + { + "text" : "Service de l'application des peines et mesures", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Dienststelle für Straf-und Massnahmenvollzug", + "lang" : "de-CH" + }, + { + "text" : "Service de l'application des peines et mesures", + "lang" : "fr-CH" + }, + { + "text" : "Service de l'application des peines et mesures", + "lang" : "it-CH" + }, + { + "text" : "Service de l'application des peines et mesures", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.polizeiwallis.ch/", + "email" : "SAPEM-DIRECTION@admin.vs.ch", + "phone" : "0041276065166", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.9353247, 47.4472523 ], + [ 7.9356767999999995, 47.4474233 ], + [ 7.9358493, 47.4473223 ], + [ 7.9359856, 47.4472605 ], + [ 7.9362341999999995, 47.4472956 ], + [ 7.9365412, 47.4473706 ], + [ 7.9369377, 47.4473755 ], + [ 7.9372575, 47.4473969 ], + [ 7.9374948, 47.447342 ], + [ 7.9376388, 47.4472805 ], + [ 7.9376035, 47.4472717 ], + [ 7.937568, 47.4472633 ], + [ 7.9375322, 47.4472554 ], + [ 7.9374963, 47.4472479 ], + [ 7.9374326, 47.4472356 ], + [ 7.9373687, 47.4472237 ], + [ 7.9373046, 47.4472124 ], + [ 7.9372403, 47.4472015 ], + [ 7.9371758, 47.4471911 ], + [ 7.9371112, 47.4471812 ], + [ 7.9370464, 47.4471718 ], + [ 7.9369815, 47.4471629 ], + [ 7.9359279, 47.4470114 ], + [ 7.9357781, 47.4470511 ], + [ 7.9355366, 47.4471278 ], + [ 7.9353247, 47.4472523 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns253", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Tal", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Tal", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Tal", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Tal", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 10.1261083, 46.7324731 ], + [ 10.1268074, 46.7320382 ], + [ 10.1292123, 46.7323075 ], + [ 10.1294229, 46.7323793 ], + [ 10.1298859, 46.7325404 ], + [ 10.1302544, 46.7327122 ], + [ 10.1304735, 46.7329207 ], + [ 10.1305208, 46.7331149 ], + [ 10.1306671, 46.7332103 ], + [ 10.130694, 46.7333067 ], + [ 10.130758, 46.733392 ], + [ 10.1308726, 46.7335393 ], + [ 10.13141, 46.7334064 ], + [ 10.1316607, 46.7333645 ], + [ 10.1319724, 46.7333473 ], + [ 10.1322668, 46.7333108 ], + [ 10.132397600000001, 46.7332755 ], + [ 10.1325133, 46.7332342 ], + [ 10.1327828, 46.7331588 ], + [ 10.1328052, 46.7330335 ], + [ 10.1328764, 46.7329523 ], + [ 10.132895, 46.7329147 ], + [ 10.1328449, 46.7328788 ], + [ 10.1328078, 46.7327088 ], + [ 10.1328494, 46.7324939 ], + [ 10.1329656, 46.7324125 ], + [ 10.1330555, 46.7323776 ], + [ 10.133122, 46.7323164 ], + [ 10.1331216, 46.7322762 ], + [ 10.1331267, 46.7321804 ], + [ 10.1330226, 46.7320802 ], + [ 10.1327666, 46.731917 ], + [ 10.132864, 46.731623 ], + [ 10.1329953, 46.7315173 ], + [ 10.133511, 46.7313918 ], + [ 10.1336643, 46.731299 ], + [ 10.1343397, 46.7313725 ], + [ 10.1345183, 46.7313603 ], + [ 10.1347515, 46.7313772 ], + [ 10.1349234, 46.7313624 ], + [ 10.1351098, 46.7312633 ], + [ 10.135231, 46.7311509 ], + [ 10.1351599, 46.7310711 ], + [ 10.1352179, 46.7309857 ], + [ 10.1352699, 46.7309466 ], + [ 10.1353184, 46.730902 ], + [ 10.1353371, 46.7308177 ], + [ 10.1359031, 46.7306508 ], + [ 10.1362495, 46.730495 ], + [ 10.1365553, 46.730376 ], + [ 10.1368233, 46.7303034 ], + [ 10.1375619, 46.7299083 ], + [ 10.13786, 46.7297828 ], + [ 10.1381496, 46.7296675 ], + [ 10.138234, 46.7295401 ], + [ 10.1382465, 46.7293481 ], + [ 10.1384254, 46.7291796 ], + [ 10.1387289, 46.729098 ], + [ 10.1390164, 46.7289905 ], + [ 10.1393862, 46.7286475 ], + [ 10.1396583, 46.7283963 ], + [ 10.1397522, 46.7282293 ], + [ 10.140034, 46.7277793 ], + [ 10.1409848, 46.7278323 ], + [ 10.1411324, 46.7278378 ], + [ 10.1413619, 46.7278152 ], + [ 10.1414421, 46.7277833 ], + [ 10.1415026, 46.7277645 ], + [ 10.1416753, 46.7278002 ], + [ 10.1417539, 46.7278342 ], + [ 10.1419583, 46.7279451 ], + [ 10.14213, 46.7280085 ], + [ 10.1421412, 46.7280846 ], + [ 10.1421727, 46.7281582 ], + [ 10.1422544, 46.7282383 ], + [ 10.1423627, 46.7282935 ], + [ 10.1425521, 46.7283183 ], + [ 10.1427186, 46.7283094 ], + [ 10.1429029, 46.7282662 ], + [ 10.1430317, 46.7282227 ], + [ 10.1430961, 46.7281868 ], + [ 10.14327, 46.7281135 ], + [ 10.14347, 46.7281043 ], + [ 10.1472314, 46.7268623 ], + [ 10.1473865, 46.726809 ], + [ 10.1473751, 46.726743 ], + [ 10.1473031, 46.7266909 ], + [ 10.1472021, 46.7266483 ], + [ 10.1470846, 46.7264228 ], + [ 10.1469924, 46.7262867 ], + [ 10.1469496, 46.7261125 ], + [ 10.1468842, 46.7260064 ], + [ 10.1469414, 46.7258118 ], + [ 10.1467828, 46.7256092 ], + [ 10.1466633, 46.7254143 ], + [ 10.1467806, 46.7251681 ], + [ 10.1469042, 46.7247771 ], + [ 10.147089, 46.7246605 ], + [ 10.1472619, 46.7245473 ], + [ 10.1473707, 46.724383 ], + [ 10.1470624, 46.7242957 ], + [ 10.1467274, 46.7242312 ], + [ 10.1466513, 46.7239808 ], + [ 10.1463712, 46.7236952 ], + [ 10.1462488, 46.7235251 ], + [ 10.1458431, 46.7231411 ], + [ 10.1455462, 46.722704 ], + [ 10.1452721, 46.7219599 ], + [ 10.1448019, 46.7216264 ], + [ 10.1449711, 46.7215698 ], + [ 10.1452647, 46.7213633 ], + [ 10.1458612, 46.7203351 ], + [ 10.1460977, 46.720012 ], + [ 10.1463302, 46.7194555 ], + [ 10.1467008, 46.7191055 ], + [ 10.1467677, 46.7187577 ], + [ 10.1465134, 46.7183895 ], + [ 10.1464017, 46.7182301 ], + [ 10.1450229, 46.7174562 ], + [ 10.1443555, 46.7171251 ], + [ 10.1442168, 46.7169799 ], + [ 10.14401, 46.7169441 ], + [ 10.1434498, 46.7165427 ], + [ 10.1431283, 46.7162136 ], + [ 10.1420482, 46.7156509 ], + [ 10.1416322, 46.715544 ], + [ 10.1405348, 46.7153095 ], + [ 10.1404042, 46.7151697 ], + [ 10.1392092, 46.7147421 ], + [ 10.1384359, 46.714863 ], + [ 10.136353100000001, 46.7151756 ], + [ 10.1360177, 46.7153533 ], + [ 10.1353108, 46.715522 ], + [ 10.1347166, 46.7157321 ], + [ 10.1337456, 46.7161724 ], + [ 10.1330194, 46.7167152 ], + [ 10.1322098, 46.7168703 ], + [ 10.1308248, 46.717259 ], + [ 10.1304918, 46.7171007 ], + [ 10.1290773, 46.7169423 ], + [ 10.1271063, 46.7177452 ], + [ 10.1261672, 46.7185492 ], + [ 10.1254308, 46.71911 ], + [ 10.1248216, 46.7194647 ], + [ 10.1240085, 46.7204152 ], + [ 10.1235458, 46.7206551 ], + [ 10.1230248, 46.7207755 ], + [ 10.1222275, 46.7212981 ], + [ 10.121789, 46.7213377 ], + [ 10.121483, 46.7216661 ], + [ 10.1210205, 46.7219403 ], + [ 10.1203641, 46.7222797 ], + [ 10.1197421, 46.7225848 ], + [ 10.1193228, 46.7228491 ], + [ 10.1182816, 46.7232161 ], + [ 10.1178905, 46.7233699 ], + [ 10.1175534, 46.7235645 ], + [ 10.1164566, 46.7240964 ], + [ 10.1160761, 46.7242642 ], + [ 10.1152569, 46.7246088 ], + [ 10.1150686, 46.7250976 ], + [ 10.1147603, 46.7253575 ], + [ 10.1144325, 46.7256328 ], + [ 10.1142379, 46.7258368 ], + [ 10.1141, 46.726031 ], + [ 10.1139195, 46.7262054 ], + [ 10.1139872, 46.7264802 ], + [ 10.1141023, 46.7267055 ], + [ 10.114177, 46.7269208 ], + [ 10.1142108, 46.7271667 ], + [ 10.1142077, 46.7272468 ], + [ 10.1141772, 46.7273214 ], + [ 10.1142729, 46.7275098 ], + [ 10.1143522, 46.727609 ], + [ 10.1144671, 46.7276561 ], + [ 10.1145802, 46.727778 ], + [ 10.1147508, 46.727927 ], + [ 10.1149216, 46.7280409 ], + [ 10.1151352, 46.7282125 ], + [ 10.1151927, 46.7284557 ], + [ 10.1152131, 46.7285529 ], + [ 10.1152126, 46.7287103 ], + [ 10.1152246, 46.7288122 ], + [ 10.1154018, 46.7289468 ], + [ 10.1156747, 46.7292797 ], + [ 10.1157336, 46.7295067 ], + [ 10.1157789, 46.7298111 ], + [ 10.1159099, 46.7300121 ], + [ 10.1160973, 46.7302053 ], + [ 10.1162038, 46.7303361 ], + [ 10.1163848, 46.7304986 ], + [ 10.1165973, 46.7306432 ], + [ 10.1167876, 46.7309232 ], + [ 10.1168029, 46.7310786 ], + [ 10.1169801, 46.7314382 ], + [ 10.1167415, 46.7320593 ], + [ 10.1173215, 46.7323013 ], + [ 10.1174553, 46.7325868 ], + [ 10.1173893, 46.7335415 ], + [ 10.1174897, 46.7339976 ], + [ 10.1177486, 46.7343976 ], + [ 10.1178865, 46.734491 ], + [ 10.1179785, 46.7346726 ], + [ 10.1185607, 46.7349073 ], + [ 10.1188288, 46.7351845 ], + [ 10.119139, 46.7351962 ], + [ 10.119435, 46.7352832 ], + [ 10.1195183, 46.7354353 ], + [ 10.1198684, 46.7356682 ], + [ 10.1196507, 46.736129 ], + [ 10.1194256, 46.736418 ], + [ 10.1195352, 46.736625 ], + [ 10.119345, 46.7372092 ], + [ 10.1195732, 46.7374608 ], + [ 10.1194778, 46.7376236 ], + [ 10.1192776, 46.7377531 ], + [ 10.1192547, 46.737805 ], + [ 10.1199075, 46.737955 ], + [ 10.1203484, 46.7383137 ], + [ 10.120689, 46.7384321 ], + [ 10.1209747, 46.7384352 ], + [ 10.1211321, 46.73831 ], + [ 10.121271, 46.7381582 ], + [ 10.1213216, 46.7379255 ], + [ 10.1212582, 46.7376863 ], + [ 10.1211167, 46.7372602 ], + [ 10.1211476, 46.7372082 ], + [ 10.1217638, 46.7371598 ], + [ 10.1219468, 46.7370705 ], + [ 10.1221348, 46.7370511 ], + [ 10.1222081, 46.737045 ], + [ 10.1223671, 46.7369512 ], + [ 10.1225603, 46.7368215 ], + [ 10.1227867, 46.7365204 ], + [ 10.122891, 46.736363 ], + [ 10.122939, 46.7361771 ], + [ 10.1229344, 46.7359695 ], + [ 10.1229968, 46.7354981 ], + [ 10.1230455, 46.7354087 ], + [ 10.1231086, 46.7352616 ], + [ 10.1231281, 46.7351449 ], + [ 10.1231035, 46.7350436 ], + [ 10.12302, 46.7348135 ], + [ 10.1232922, 46.7340026 ], + [ 10.1255218, 46.7328376 ], + [ 10.1261083, 46.7324731 ] + ] + ], + "layer" : { + "upper" : 300, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "NPA0001", + "country" : "CHE", + "name" : [ + { + "text" : "Schweizerischer Nationalpark", + "lang" : "de-CH" + }, + { + "text" : "Parc National Suisse", + "lang" : "fr-CH" + }, + { + "text" : "Parco Nazionale Svizzero", + "lang" : "it-CH" + }, + { + "text" : "Swiss National Park", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Schweizerischer Nationalpark", + "lang" : "de-CH" + }, + { + "text" : "Parc National Suisse", + "lang" : "fr-CH" + }, + { + "text" : "Parco Nazionale Svizzero", + "lang" : "it-CH" + }, + { + "text" : "Swiss National Park", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Bereich Naturschutz und Naturraummanagement", + "lang" : "de-CH" + }, + { + "text" : "Division Protection et gestion de la nature", + "lang" : "fr-CH" + }, + { + "text" : "Divisione conservazione e gestione della natura", + "lang" : "it-CH" + }, + { + "text" : "Conservation and Natural Resources Department", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Flurin Filli", + "lang" : "de-CH" + }, + { + "text" : "Flurin Filli", + "lang" : "fr-CH" + }, + { + "text" : "Flurin Filli", + "lang" : "it-CH" + }, + { + "text" : "Flurin Filli", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.nationalpark.ch/en/visit/hiking/protection-regulations/", + "email" : "info@nationalpark.ch", + "phone" : "0041818514111", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P01DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.238704, 47.4447551 ], + [ 8.2389825, 47.4444933 ], + [ 8.2391407, 47.4443447 ], + [ 8.2397943, 47.4437276 ], + [ 8.2402204, 47.4433172 ], + [ 8.2393389, 47.442888 ], + [ 8.2385309, 47.4425005 ], + [ 8.2380501, 47.4422691 ], + [ 8.2379547, 47.4423624 ], + [ 8.2377734, 47.4425579 ], + [ 8.2349477, 47.4421817 ], + [ 8.2320959, 47.4418289 ], + [ 8.2294419, 47.44149 ], + [ 8.2293018, 47.4416097 ], + [ 8.2284365, 47.4424414 ], + [ 8.2278635, 47.4430569 ], + [ 8.2273431, 47.4436352 ], + [ 8.2272219, 47.4437745 ], + [ 8.2269523, 47.4440183 ], + [ 8.2269648, 47.4440524 ], + [ 8.2269971, 47.44409 ], + [ 8.2270361, 47.4441221 ], + [ 8.2270975, 47.4441549 ], + [ 8.2271736, 47.4441886 ], + [ 8.227239, 47.4442169 ], + [ 8.2273178, 47.4442524 ], + [ 8.2273964, 47.4442833 ], + [ 8.2274484, 47.4442992 ], + [ 8.2275627, 47.4443173 ], + [ 8.2284467, 47.4444749 ], + [ 8.229699, 47.4446939 ], + [ 8.2305108, 47.4448125 ], + [ 8.2318312, 47.4449716 ], + [ 8.231971099999999, 47.4450183 ], + [ 8.2321044, 47.4450651 ], + [ 8.2321391, 47.445081 ], + [ 8.2321431, 47.4450828 ], + [ 8.2327465, 47.4453584 ], + [ 8.2327945, 47.4453805 ], + [ 8.2340609, 47.4442322 ], + [ 8.2352031, 47.4443647 ], + [ 8.2369907, 47.4445592 ], + [ 8.238704, 47.4447551 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZF002", + "country" : "CHE", + "name" : [ + { + "text" : "LSZF Birrfeld (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSZF Birrfeld (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSZF Birrfeld (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSZF Birrfeld (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Flugplatz Birrfeld", + "lang" : "de-CH" + }, + { + "text" : "Flugplatz Birrfeld", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatz Birrfeld", + "lang" : "it-CH" + }, + { + "text" : "Flugplatz Birrfeld", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Carlo Ferrari", + "lang" : "de-CH" + }, + { + "text" : "Carlo Ferrari", + "lang" : "fr-CH" + }, + { + "text" : "Carlo Ferrari", + "lang" : "it-CH" + }, + { + "text" : "Carlo Ferrari", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.birrfeld.ch/home/drohnen/", + "email" : "info@birrfeld.ch", + "phone" : "0041564644040", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.3275327, 47.3796396 ], + [ 8.3275745, 47.3796629 ], + [ 8.3277051, 47.3796793 ], + [ 8.3277709, 47.3796631 ], + [ 8.3278243, 47.3796274 ], + [ 8.3278482, 47.3795363 ], + [ 8.3278405, 47.3794302 ], + [ 8.3277859, 47.3793747 ], + [ 8.3277892, 47.3793458 ], + [ 8.327827, 47.3793223 ], + [ 8.3278908, 47.3792726 ], + [ 8.3278961, 47.3792029 ], + [ 8.3279531, 47.3790974 ], + [ 8.3280693, 47.3788739 ], + [ 8.3280652, 47.3787743 ], + [ 8.3280227, 47.3786801 ], + [ 8.3280059, 47.3786528 ], + [ 8.327973, 47.3786468 ], + [ 8.3279307, 47.3786613 ], + [ 8.3279154, 47.3786808 ], + [ 8.3278897, 47.378692 ], + [ 8.3278703, 47.378687 ], + [ 8.3278159, 47.3786933 ], + [ 8.3277843, 47.3787281 ], + [ 8.3277825, 47.3787755 ], + [ 8.3278004, 47.3788376 ], + [ 8.3278114, 47.3788897 ], + [ 8.3277962, 47.3789404 ], + [ 8.327744, 47.3790127 ], + [ 8.3277184, 47.3790774 ], + [ 8.3276596, 47.3791265 ], + [ 8.3276335, 47.3792032 ], + [ 8.327612, 47.3792912 ], + [ 8.3276052, 47.3793387 ], + [ 8.3275758, 47.3793633 ], + [ 8.3275519, 47.3794297 ], + [ 8.3275377, 47.3794828 ], + [ 8.3275258, 47.3795839 ], + [ 8.3275327, 47.3796396 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "KTAG504", + "country" : "CHE", + "name" : [ + { + "text" : "Alte Reuss", + "lang" : "de-CH" + }, + { + "text" : "Alte Reuss", + "lang" : "fr-CH" + }, + { + "text" : "Alte Reuss", + "lang" : "it-CH" + }, + { + "text" : "Alte Reuss", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "regulationExemption" : "NO", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "schedule" : [ + { + "day" : [ "ANY" ], + "startTime" : "00:00:00.00+01:00", + "endTime" : "00:00:00.00+01:00" + } + ] + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Aargau", + "lang" : "de-CH" + }, + { + "text" : "Canton d'Argovie", + "lang" : "fr-CH" + }, + { + "text" : "Canton Argovia", + "lang" : "it-CH" + }, + { + "text" : "Canton of Aargau", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Departement Bau, Verkehr und Umwelt (BVU)", + "lang" : "de-CH" + }, + { + "text" : "Département de la construction, des transports et de l'environnement (CTE)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento delle costruzioni, dei trasporti e dell'ambiente (CTA)", + "lang" : "it-CH" + }, + { + "text" : "Department of Civil Engineering,Transport and Environment (CTE)", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Sektion Gewässernutzung", + "lang" : "de-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "fr-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "it-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ag.ch/de/verwaltung/bvu/umwelt-natur-landschaft/hochwasserschutz-gewaesser/gewaessernutzung", + "email" : "alg@ag.ch", + "phone" : "0041 62 835 34 50", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.9312889, 47.4363984 ], + [ 7.9309415, 47.4367766 ], + [ 7.9307889, 47.4369743 ], + [ 7.9306602999999996, 47.4371808 ], + [ 7.9305329, 47.4374381 ], + [ 7.9305024, 47.4375785 ], + [ 7.9304895, 47.4378789 ], + [ 7.9304666, 47.4380606 ], + [ 7.9303941, 47.4382708 ], + [ 7.9302869, 47.4385489 ], + [ 7.9302209999999995, 47.4386943 ], + [ 7.9301502, 47.4388332 ], + [ 7.9314653, 47.4396634 ], + [ 7.9316144, 47.4395508 ], + [ 7.9317324, 47.4394118 ], + [ 7.9318071, 47.4392608 ], + [ 7.9318877, 47.4389294 ], + [ 7.9319991, 47.4385792 ], + [ 7.9321855, 47.4383511 ], + [ 7.9319747, 47.437971 ], + [ 7.9316252, 47.4373671 ], + [ 7.9315692, 47.4372428 ], + [ 7.9315508, 47.4371131 ], + [ 7.931597, 47.4366664 ], + [ 7.9315955, 47.4365443 ], + [ 7.931343, 47.4364471 ], + [ 7.9312889, 47.4363984 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns077", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Schleipfet", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Schleipfet", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Schleipfet", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Schleipfet", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4086607, 47.4081519 ], + [ 7.4087278, 47.4081451 ], + [ 7.4088218999999995, 47.4081355 ], + [ 7.408903, 47.4081272 ], + [ 7.408914, 47.4081261 ], + [ 7.4089895, 47.4081116 ], + [ 7.4090716, 47.4080959 ], + [ 7.4091064, 47.4080892 ], + [ 7.4092223, 47.408067 ], + [ 7.4092961, 47.4080529 ], + [ 7.4093474, 47.4080431 ], + [ 7.4093953, 47.4080339 ], + [ 7.4094863, 47.4080164 ], + [ 7.4097421, 47.4079674 ], + [ 7.4097965, 47.4079476 ], + [ 7.4098796, 47.4079172 ], + [ 7.4099614, 47.4078874 ], + [ 7.4100466, 47.4078563 ], + [ 7.4102006, 47.4078001 ], + [ 7.4103200000000005, 47.4077565 ], + [ 7.4103653, 47.4077456 ], + [ 7.4104265, 47.4077308 ], + [ 7.4104784, 47.4077182 ], + [ 7.4105616, 47.4076982 ], + [ 7.4106333, 47.4076808 ], + [ 7.4106995, 47.4076649 ], + [ 7.4107520000000005, 47.4077877 ], + [ 7.4113544000000005, 47.407711 ], + [ 7.4113809, 47.4077077 ], + [ 7.4118064, 47.4075873 ], + [ 7.4124148, 47.4074152 ], + [ 7.4124448, 47.4074067 ], + [ 7.4125303, 47.4073826 ], + [ 7.4126035, 47.4073542 ], + [ 7.4128065, 47.4072756 ], + [ 7.4130393, 47.4071855 ], + [ 7.413116, 47.4071322 ], + [ 7.4131843, 47.4070855 ], + [ 7.4132537, 47.4070396 ], + [ 7.4133825, 47.4069524 ], + [ 7.4134789, 47.4068872 ], + [ 7.4135613, 47.4068319 ], + [ 7.4136481, 47.4067736 ], + [ 7.4137376, 47.4067135 ], + [ 7.4138443, 47.4066418 ], + [ 7.4138499, 47.4066381 ], + [ 7.4139882, 47.406616 ], + [ 7.4142806, 47.4065694 ], + [ 7.4143364, 47.406537 ], + [ 7.4142054, 47.4064491 ], + [ 7.4141405, 47.4064623 ], + [ 7.4141101, 47.406478 ], + [ 7.4140425, 47.4065078 ], + [ 7.4139897, 47.4065216 ], + [ 7.4138935, 47.4065431 ], + [ 7.4137786, 47.4065736 ], + [ 7.4137445, 47.4065866 ], + [ 7.4136342, 47.406617 ], + [ 7.4135328, 47.406653 ], + [ 7.4134282, 47.4066828 ], + [ 7.4133445, 47.4066934 ], + [ 7.4132754, 47.4067059 ], + [ 7.4130887, 47.4067047 ], + [ 7.4129918, 47.4067059 ], + [ 7.4128372, 47.4067041 ], + [ 7.4127463, 47.4065482 ], + [ 7.4126294999999995, 47.406388 ], + [ 7.4125383, 47.4062466 ], + [ 7.4124586, 47.4061323 ], + [ 7.4124519, 47.4061227 ], + [ 7.4124474, 47.4061107 ], + [ 7.4124024, 47.4059899 ], + [ 7.4128298, 47.4058991 ], + [ 7.4133148, 47.4058097 ], + [ 7.4137834, 47.4057233 ], + [ 7.414144, 47.4056708 ], + [ 7.414303, 47.4056611 ], + [ 7.4143978, 47.4056554 ], + [ 7.4145632, 47.4056356 ], + [ 7.4145666, 47.4054428 ], + [ 7.4146082, 47.4052858 ], + [ 7.4146281, 47.4052005 ], + [ 7.4146998, 47.4050224 ], + [ 7.4147779, 47.4048998 ], + [ 7.4148594, 47.4048023 ], + [ 7.4148601, 47.4047603 ], + [ 7.4148602, 47.4047533 ], + [ 7.4148546, 47.4047273 ], + [ 7.4147443, 47.404762 ], + [ 7.4147127, 47.4047678 ], + [ 7.4145329, 47.4047987 ], + [ 7.41441, 47.4048238 ], + [ 7.4143741, 47.4048301 ], + [ 7.4142271, 47.4048559 ], + [ 7.4140836, 47.4048627 ], + [ 7.414066, 47.4048635 ], + [ 7.4140291, 47.4048979 ], + [ 7.4139699, 47.4049123 ], + [ 7.41385, 47.4049417 ], + [ 7.4136878, 47.4049792 ], + [ 7.4136477, 47.4049885 ], + [ 7.4134828, 47.4050321 ], + [ 7.4132919, 47.4050827 ], + [ 7.4132147, 47.4051031 ], + [ 7.4128876, 47.4051833 ], + [ 7.4127309, 47.4052217 ], + [ 7.4123473, 47.4052995 ], + [ 7.4122937, 47.4053037 ], + [ 7.4120908, 47.4053192 ], + [ 7.4120063, 47.4053257 ], + [ 7.4120188, 47.4053792 ], + [ 7.4118417, 47.4054136 ], + [ 7.4118182, 47.4054167 ], + [ 7.4116712, 47.4054362 ], + [ 7.4115186, 47.4054563 ], + [ 7.411066, 47.4055127 ], + [ 7.4109915, 47.405522 ], + [ 7.4108133, 47.4055442 ], + [ 7.4105959, 47.4055747 ], + [ 7.4101783, 47.4056407 ], + [ 7.4101741, 47.4056824 ], + [ 7.4100908, 47.4057598 ], + [ 7.4098046, 47.4057918 ], + [ 7.4096583, 47.4058081 ], + [ 7.4092182, 47.4058572 ], + [ 7.408873, 47.4059708 ], + [ 7.408677, 47.4061621 ], + [ 7.4082497, 47.4062564 ], + [ 7.4079094, 47.4063311 ], + [ 7.4072615, 47.4065208 ], + [ 7.4071105, 47.406524 ], + [ 7.4066526, 47.4065335 ], + [ 7.4062538, 47.4065659 ], + [ 7.4060018, 47.4065986 ], + [ 7.4056764, 47.406641 ], + [ 7.4053651, 47.4065711 ], + [ 7.4048595, 47.4066449 ], + [ 7.4041418, 47.4067547 ], + [ 7.4040399, 47.4067702 ], + [ 7.4037338, 47.4067645 ], + [ 7.4037128, 47.4067581 ], + [ 7.4036536, 47.4067401 ], + [ 7.4033139, 47.406637 ], + [ 7.4029512, 47.4066444 ], + [ 7.4023254, 47.4066744 ], + [ 7.4016709, 47.4066826 ], + [ 7.4012545, 47.406688 ], + [ 7.4002041, 47.4068592 ], + [ 7.3999995, 47.4068923 ], + [ 7.3998017, 47.4069252 ], + [ 7.3996151, 47.4069566 ], + [ 7.3992927, 47.4070109 ], + [ 7.3991309, 47.4070381 ], + [ 7.3987517, 47.4071013 ], + [ 7.3985269, 47.4071385 ], + [ 7.398508, 47.4071417 ], + [ 7.3984165, 47.4071688 ], + [ 7.3981726, 47.4072409 ], + [ 7.3980524, 47.4072765 ], + [ 7.3978943, 47.4073233 ], + [ 7.3977018, 47.4073802 ], + [ 7.3975328, 47.4074295 ], + [ 7.3974527, 47.4074529 ], + [ 7.3973636, 47.407479 ], + [ 7.3973022, 47.4074969 ], + [ 7.3971896, 47.4075231 ], + [ 7.3971186, 47.4075627 ], + [ 7.3967788, 47.4076504 ], + [ 7.3967213, 47.4076735 ], + [ 7.3966041, 47.407741 ], + [ 7.3965281, 47.4077884 ], + [ 7.3964332, 47.4078633 ], + [ 7.3963253, 47.4079572 ], + [ 7.3962050999999995, 47.4080386 ], + [ 7.3961004, 47.4081269 ], + [ 7.3960122, 47.4082028 ], + [ 7.3958986, 47.4082835 ], + [ 7.3958882, 47.4083223 ], + [ 7.3958613, 47.4083483 ], + [ 7.3958107, 47.408397 ], + [ 7.3955998, 47.4086526 ], + [ 7.3956142, 47.408795 ], + [ 7.3956378, 47.4088678 ], + [ 7.3956551, 47.408887 ], + [ 7.3956993, 47.4089231 ], + [ 7.39573, 47.4089395 ], + [ 7.395708, 47.4089493 ], + [ 7.3955201, 47.4090763 ], + [ 7.3956072, 47.40914 ], + [ 7.3957087, 47.409205299999996 ], + [ 7.3958325, 47.4091249 ], + [ 7.3959147, 47.4089246 ], + [ 7.396187, 47.4088268 ], + [ 7.3963665, 47.4086911 ], + [ 7.3965197, 47.4086566 ], + [ 7.3968092, 47.4085914 ], + [ 7.3969805, 47.4085089 ], + [ 7.3971964, 47.4083987 ], + [ 7.3974989, 47.4082867 ], + [ 7.3975281, 47.4082758 ], + [ 7.3977589, 47.4081648 ], + [ 7.3979334, 47.4082084 ], + [ 7.3980195, 47.4082299 ], + [ 7.3983365, 47.4082498 ], + [ 7.3986501, 47.4082257 ], + [ 7.3988432, 47.4082289 ], + [ 7.399165, 47.4082117 ], + [ 7.3995238, 47.4082024 ], + [ 7.3998661, 47.4081973 ], + [ 7.4001317, 47.4081585 ], + [ 7.4003556, 47.4081384 ], + [ 7.4006232, 47.4081227 ], + [ 7.4007392, 47.4081479 ], + [ 7.4008654, 47.4081489 ], + [ 7.4010657, 47.4081276 ], + [ 7.4012832, 47.4080991 ], + [ 7.4014868, 47.408067 ], + [ 7.4015259, 47.4081008 ], + [ 7.4015953, 47.4081805 ], + [ 7.4016269, 47.4082511 ], + [ 7.4017345, 47.4083573 ], + [ 7.4022681, 47.4082843 ], + [ 7.4029517, 47.4081262 ], + [ 7.403542, 47.4080549 ], + [ 7.4038006, 47.4082081 ], + [ 7.4040701, 47.4083678 ], + [ 7.4041045, 47.4083882 ], + [ 7.4041638, 47.4084233 ], + [ 7.4042055, 47.4084236 ], + [ 7.404252, 47.408424 ], + [ 7.4043244, 47.4084246 ], + [ 7.4045908, 47.4084267 ], + [ 7.4047677, 47.4084281 ], + [ 7.404986, 47.4084298 ], + [ 7.4050972, 47.4084307 ], + [ 7.4051704, 47.4083925 ], + [ 7.4052443, 47.4083539 ], + [ 7.405341, 47.4083035 ], + [ 7.4057562, 47.4080866 ], + [ 7.4066825, 47.4081127 ], + [ 7.406731, 47.408265 ], + [ 7.4070469, 47.408251 ], + [ 7.4072095000000004, 47.4082446 ], + [ 7.4072035, 47.4081677 ], + [ 7.407053, 47.4079744 ], + [ 7.4070086, 47.4079399 ], + [ 7.4069128, 47.4078653 ], + [ 7.4070449, 47.4078591 ], + [ 7.407304, 47.4078436 ], + [ 7.4076156, 47.4078039 ], + [ 7.4079182, 47.4077565 ], + [ 7.4080915, 47.4077176 ], + [ 7.4083995, 47.4076776 ], + [ 7.4086575, 47.4079504 ], + [ 7.4086925, 47.4080561 ], + [ 7.4086191, 47.4080943 ], + [ 7.4086607, 47.4081519 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns008", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Erhollen - Chlummen", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Erhollen - Chlummen", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Erhollen - Chlummen", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Erhollen - Chlummen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.1991022, 46.774681 ], + [ 9.1990922, 46.7745398 ], + [ 9.1990715, 46.7743993 ], + [ 9.1990401, 46.7742597 ], + [ 9.1989981, 46.7741213 ], + [ 9.1989456, 46.7739847 ], + [ 9.1988828, 46.7738502 ], + [ 9.1988098, 46.773718099999996 ], + [ 9.1987269, 46.7735888 ], + [ 9.1986342, 46.7734627 ], + [ 9.198532, 46.7733401 ], + [ 9.1984207, 46.7732213 ], + [ 9.1983004, 46.7731067 ], + [ 9.1981716, 46.7729966 ], + [ 9.1980346, 46.7728912 ], + [ 9.1978897, 46.772791 ], + [ 9.1977374, 46.772696 ], + [ 9.1975781, 46.7726067 ], + [ 9.1974122, 46.7725232 ], + [ 9.1972402, 46.7724458 ], + [ 9.1970625, 46.7723747 ], + [ 9.1968796, 46.7723101 ], + [ 9.1966921, 46.7722522 ], + [ 9.1965004, 46.772201 ], + [ 9.1963051, 46.7721569 ], + [ 9.1961066, 46.7721198 ], + [ 9.1959057, 46.7720899 ], + [ 9.1957027, 46.7720673 ], + [ 9.1954983, 46.772052 ], + [ 9.1952929, 46.772044 ], + [ 9.1950873, 46.7720435 ], + [ 9.1948819, 46.7720504 ], + [ 9.1946773, 46.7720646 ], + [ 9.1944741, 46.7720862 ], + [ 9.1942728, 46.772115 ], + [ 9.194074, 46.7721511 ], + [ 9.1938782, 46.7721942 ], + [ 9.1936859, 46.7722443 ], + [ 9.1934978, 46.7723013 ], + [ 9.1933142, 46.772365 ], + [ 9.1931357, 46.7724351 ], + [ 9.1929628, 46.7725116 ], + [ 9.192796, 46.7725942 ], + [ 9.1926357, 46.7726827 ], + [ 9.1924824, 46.7727769 ], + [ 9.1923364, 46.7728764 ], + [ 9.1921982, 46.772981 ], + [ 9.1920682, 46.7730905 ], + [ 9.1919467, 46.7732045 ], + [ 9.191834, 46.7733227 ], + [ 9.1917305, 46.7734447 ], + [ 9.1916365, 46.7735704 ], + [ 9.1915521, 46.7736992 ], + [ 9.1914777, 46.7738309 ], + [ 9.1914134, 46.7739651 ], + [ 9.1913594, 46.7741015 ], + [ 9.1913159, 46.7742395 ], + [ 9.1912829, 46.774379 ], + [ 9.1912606, 46.7745194 ], + [ 9.1912491, 46.7746605 ], + [ 9.1912483, 46.7748018 ], + [ 9.1912583, 46.7749429 ], + [ 9.191279, 46.7750835 ], + [ 9.1913104, 46.7752231 ], + [ 9.1913524, 46.7753614 ], + [ 9.1914048, 46.775498 ], + [ 9.1914676, 46.7756326 ], + [ 9.1915406, 46.7757646 ], + [ 9.1916235, 46.7758939 ], + [ 9.1917161, 46.7760201 ], + [ 9.1918183, 46.7761427 ], + [ 9.1919296, 46.7762615 ], + [ 9.1920499, 46.7763761 ], + [ 9.1921787, 46.7764862 ], + [ 9.1923157, 46.7765916 ], + [ 9.1924606, 46.7766919 ], + [ 9.1926129, 46.776786799999996 ], + [ 9.1927722, 46.7768761 ], + [ 9.1929381, 46.7769596 ], + [ 9.1931101, 46.777037 ], + [ 9.1932878, 46.7771081 ], + [ 9.1934707, 46.7771728 ], + [ 9.1936583, 46.7772307 ], + [ 9.19385, 46.7772818 ], + [ 9.1940453, 46.777326 ], + [ 9.1942438, 46.7773631 ], + [ 9.1944448, 46.777393000000004 ], + [ 9.1946478, 46.7774156 ], + [ 9.1948522, 46.7774309 ], + [ 9.1950575, 46.7774389 ], + [ 9.1952632, 46.7774394 ], + [ 9.1954686, 46.7774325 ], + [ 9.1956732, 46.7774183 ], + [ 9.1958764, 46.7773967 ], + [ 9.1960778, 46.7773679 ], + [ 9.1962766, 46.7773318 ], + [ 9.1964724, 46.7772887 ], + [ 9.1966647, 46.7772385 ], + [ 9.1968529, 46.7771816 ], + [ 9.1970365, 46.7771179 ], + [ 9.197215, 46.7770477 ], + [ 9.1973879, 46.7769712 ], + [ 9.1975547, 46.7768886 ], + [ 9.197715, 46.7768001 ], + [ 9.1978683, 46.7767059 ], + [ 9.1980143, 46.7766064 ], + [ 9.1981525, 46.7765018 ], + [ 9.1982825, 46.7763923 ], + [ 9.198404, 46.7762783 ], + [ 9.1985167, 46.7761601 ], + [ 9.1986201, 46.776038 ], + [ 9.1987142, 46.7759124 ], + [ 9.1987985, 46.7757835 ], + [ 9.198873, 46.7756518 ], + [ 9.1989372, 46.7755176 ], + [ 9.1989912, 46.7753813 ], + [ 9.1990347, 46.7752432 ], + [ 9.1990676, 46.7751038 ], + [ 9.1990899, 46.7749633 ], + [ 9.1991014, 46.7748222 ], + [ 9.1991022, 46.774681 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0054", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Ilanz", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Ilanz", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Ilanz", + "lang" : "it-CH" + }, + { + "text" : "Substation Ilanz", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8411217, 47.3948952 ], + [ 7.8412873, 47.394867 ], + [ 7.8414421999999995, 47.3950129 ], + [ 7.8417837, 47.3947531 ], + [ 7.8419691, 47.394577 ], + [ 7.842898, 47.393772 ], + [ 7.842893, 47.3935144 ], + [ 7.8433503, 47.3927668 ], + [ 7.843674, 47.3933027 ], + [ 7.8436563, 47.3935893 ], + [ 7.8436549, 47.3936049 ], + [ 7.8436526, 47.3936203 ], + [ 7.8436495, 47.3936358 ], + [ 7.8436454, 47.3936511 ], + [ 7.8436406, 47.3936663 ], + [ 7.8436348, 47.3936814 ], + [ 7.8436281999999995, 47.3936963 ], + [ 7.8436208, 47.393711 ], + [ 7.8436125, 47.3937255 ], + [ 7.8436035, 47.3937398 ], + [ 7.8435936, 47.3937538 ], + [ 7.8435828999999995, 47.3937676 ], + [ 7.8435714999999995, 47.3937811 ], + [ 7.8435593, 47.3937943 ], + [ 7.8435464, 47.3938072 ], + [ 7.8435328, 47.3938197 ], + [ 7.8431651, 47.3941455 ], + [ 7.842906, 47.3941892 ], + [ 7.8429755, 47.3942553 ], + [ 7.8429258, 47.3943007 ], + [ 7.8427831999999995, 47.3944241 ], + [ 7.8426681, 47.3945151 ], + [ 7.8425659, 47.3945861 ], + [ 7.8424851, 47.394636 ], + [ 7.842439, 47.3946624 ], + [ 7.8424534, 47.3946825 ], + [ 7.8427143, 47.3949807 ], + [ 7.8427029, 47.3949815 ], + [ 7.8425174, 47.3949993 ], + [ 7.842568, 47.3951351 ], + [ 7.8439721, 47.3952034 ], + [ 7.8440338, 47.3953439 ], + [ 7.8440737, 47.3953167 ], + [ 7.8441156, 47.3952881 ], + [ 7.8442728, 47.3951792 ], + [ 7.8445227, 47.395039 ], + [ 7.8446717, 47.3949448 ], + [ 7.8448012, 47.3948154 ], + [ 7.8448636, 47.3947163 ], + [ 7.8449101, 47.394552 ], + [ 7.8449142, 47.3944101 ], + [ 7.8448965, 47.3941929 ], + [ 7.8449165, 47.3940813 ], + [ 7.8449273, 47.3940622 ], + [ 7.8449373, 47.3940429 ], + [ 7.8449465, 47.3940234 ], + [ 7.8449549, 47.3940037 ], + [ 7.8449625, 47.3939839 ], + [ 7.8449693, 47.3939639 ], + [ 7.8449753, 47.3939439 ], + [ 7.8449805, 47.3939237 ], + [ 7.8449849, 47.3939034 ], + [ 7.8449892, 47.3938836 ], + [ 7.8449942, 47.3938638 ], + [ 7.8449998, 47.393844 ], + [ 7.8450062, 47.3938244 ], + [ 7.8450133, 47.3938049 ], + [ 7.845021, 47.3937855 ], + [ 7.8450294, 47.3937663 ], + [ 7.8450385, 47.3937472 ], + [ 7.8450531, 47.3937184 ], + [ 7.8450686, 47.3936899 ], + [ 7.8450848, 47.3936615 ], + [ 7.8451017, 47.3936334 ], + [ 7.8451194, 47.3936055 ], + [ 7.8451379, 47.3935778 ], + [ 7.8451571, 47.3935503 ], + [ 7.8451783, 47.3935201 ], + [ 7.8451986, 47.3934896 ], + [ 7.845218, 47.3934589 ], + [ 7.8452367, 47.3934279 ], + [ 7.8452544, 47.3933967 ], + [ 7.8452714, 47.3933653 ], + [ 7.8452874, 47.3933337 ], + [ 7.8453026, 47.3933019 ], + [ 7.8453169, 47.3932699 ], + [ 7.8451053, 47.3931961 ], + [ 7.8447066, 47.3933211 ], + [ 7.8447531, 47.3931612 ], + [ 7.8447963, 47.3930079 ], + [ 7.8448272, 47.3929157 ], + [ 7.8448901, 47.3927056 ], + [ 7.8446644, 47.3925703 ], + [ 7.8442652, 47.3925144 ], + [ 7.8438406, 47.3925114 ], + [ 7.843592, 47.3925504 ], + [ 7.8432911, 47.3925932 ], + [ 7.8430839, 47.3926237 ], + [ 7.8425674, 47.3927005 ], + [ 7.8424247, 47.3928627 ], + [ 7.8423893, 47.3929031 ], + [ 7.8420283, 47.3929001 ], + [ 7.8417411999999995, 47.392893 ], + [ 7.8413798, 47.3933474 ], + [ 7.8410134, 47.3937073 ], + [ 7.8405705, 47.3936308 ], + [ 7.8405839, 47.3933417 ], + [ 7.840301, 47.3932184 ], + [ 7.8400119, 47.3932996 ], + [ 7.8397302, 47.3933723 ], + [ 7.839359, 47.3934697 ], + [ 7.8394848, 47.3936184 ], + [ 7.8393057, 47.3937071 ], + [ 7.8389779, 47.3938121 ], + [ 7.8388092, 47.3939113 ], + [ 7.8386692, 47.3940494 ], + [ 7.8385842, 47.3942725 ], + [ 7.8389755999999995, 47.3942688 ], + [ 7.8391611, 47.3942703 ], + [ 7.8392288, 47.3942659 ], + [ 7.839208, 47.394542 ], + [ 7.8396207, 47.3948893 ], + [ 7.8392733, 47.3951877 ], + [ 7.8392912, 47.3955394 ], + [ 7.8396087, 47.3959371 ], + [ 7.8399280000000005, 47.395555 ], + [ 7.8402874, 47.3953379 ], + [ 7.8409355, 47.3949332 ], + [ 7.8411217, 47.3948952 ] + ], + [ + [ 7.8438797000000005, 47.3926527 ], + [ 7.844093, 47.3927099 ], + [ 7.8439791, 47.3928724 ], + [ 7.8437561, 47.3928008 ], + [ 7.8438797000000005, 47.3926527 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns322", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Breiten", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Breiten", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Breiten", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Breiten", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8721856, 47.4425558 ], + [ 7.8726286, 47.4429066 ], + [ 7.8727499, 47.443057 ], + [ 7.8733397, 47.4437404 ], + [ 7.8739159, 47.4444298 ], + [ 7.8739184, 47.4444345 ], + [ 7.8742943, 47.4451259 ], + [ 7.8745476, 47.4456019 ], + [ 7.8745481, 47.4456027 ], + [ 7.8746206, 47.4454232 ], + [ 7.8747648, 47.4449637 ], + [ 7.8748153, 47.4446695 ], + [ 7.8748473, 47.4444802 ], + [ 7.8748265, 47.4444244 ], + [ 7.8748064, 47.4443702 ], + [ 7.8747877, 47.4443201 ], + [ 7.8747691, 47.44427 ], + [ 7.874745, 47.4442316 ], + [ 7.8747204, 47.4441924 ], + [ 7.8746221, 47.4440355 ], + [ 7.8745595999999995, 47.4439358 ], + [ 7.8745111, 47.4438587 ], + [ 7.874509, 47.4438553 ], + [ 7.8744088, 47.4436928 ], + [ 7.8743787, 47.443644 ], + [ 7.8741371000000004, 47.4433201 ], + [ 7.8740827, 47.443125 ], + [ 7.8739979, 47.4429587 ], + [ 7.8739443, 47.4428728 ], + [ 7.8737631, 47.4426871 ], + [ 7.8736568, 47.4426086 ], + [ 7.8735289, 47.44248 ], + [ 7.8734331, 47.4423943 ], + [ 7.8733439, 47.4422159 ], + [ 7.8733315, 47.442218 ], + [ 7.8732093, 47.4422338 ], + [ 7.8728537, 47.4423492 ], + [ 7.8728096999999995, 47.4423635 ], + [ 7.8724836, 47.442441 ], + [ 7.8722658, 47.4425232 ], + [ 7.8721856, 47.4425558 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr043", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Steiholde", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Steiholde", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Steiholde", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Steiholde", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 10.1474454, 46.680055 ], + [ 10.1474329, 46.679914 ], + [ 10.1474097, 46.6797736 ], + [ 10.1473759, 46.679634300000004 ], + [ 10.1473316, 46.6794963 ], + [ 10.1472768, 46.6793602 ], + [ 10.1472117, 46.6792262 ], + [ 10.1471366, 46.6790947 ], + [ 10.1470515, 46.6789661 ], + [ 10.1469568, 46.6788408 ], + [ 10.1468527, 46.678719 ], + [ 10.1467394, 46.6786012 ], + [ 10.1466174, 46.6784875 ], + [ 10.1464869, 46.6783785 ], + [ 10.1463483, 46.6782743 ], + [ 10.1462019, 46.6781752 ], + [ 10.1460482, 46.6780816 ], + [ 10.1458876, 46.6779936 ], + [ 10.1457206, 46.6779115 ], + [ 10.1455475, 46.6778355 ], + [ 10.1453688, 46.6777659 ], + [ 10.1451852, 46.6777028 ], + [ 10.144997, 46.6776464 ], + [ 10.1448047, 46.6775969 ], + [ 10.144608999999999, 46.6775543 ], + [ 10.1444103, 46.6775189 ], + [ 10.1442091, 46.6774907 ], + [ 10.1440061, 46.6774697 ], + [ 10.1438018, 46.6774561 ], + [ 10.1435967, 46.6774499 ], + [ 10.1433915, 46.6774511 ], + [ 10.1431866, 46.6774597 ], + [ 10.1429826, 46.6774756 ], + [ 10.1427801, 46.6774988 ], + [ 10.1425797, 46.6775294 ], + [ 10.1423819, 46.6775671 ], + [ 10.1421872, 46.6776118 ], + [ 10.1419962, 46.6776636 ], + [ 10.1418093, 46.6777221 ], + [ 10.1416272, 46.6777873 ], + [ 10.1414503, 46.6778589 ], + [ 10.1412791, 46.6779369 ], + [ 10.141114, 46.6780209 ], + [ 10.1409555, 46.6781107 ], + [ 10.1408041, 46.6782061 ], + [ 10.1406602, 46.6783068 ], + [ 10.1405241, 46.6784126 ], + [ 10.1403962, 46.6785231 ], + [ 10.1402769, 46.6786381 ], + [ 10.1401666, 46.6787572 ], + [ 10.1400654, 46.6788801 ], + [ 10.1399737, 46.6790066 ], + [ 10.1398918, 46.6791361 ], + [ 10.1398198, 46.6792684 ], + [ 10.139758, 46.6794031 ], + [ 10.1397065, 46.6795399 ], + [ 10.1396655, 46.6796783 ], + [ 10.139635, 46.6798181 ], + [ 10.1396152, 46.6799587 ], + [ 10.1396062, 46.6800998 ], + [ 10.1396079, 46.6802411 ], + [ 10.1396203, 46.6803821 ], + [ 10.1396435, 46.6805225 ], + [ 10.1396773, 46.6806619 ], + [ 10.1397216, 46.6807998 ], + [ 10.1397764, 46.680936 ], + [ 10.1398414, 46.68107 ], + [ 10.1399166, 46.6812015 ], + [ 10.1400016, 46.6813301 ], + [ 10.1400963, 46.6814554 ], + [ 10.1402004, 46.6815772 ], + [ 10.1403136, 46.6816951 ], + [ 10.1404357, 46.6818087 ], + [ 10.1405662, 46.6819177 ], + [ 10.1407048, 46.6820219 ], + [ 10.1408512, 46.682121 ], + [ 10.1410049, 46.6822147 ], + [ 10.1411655, 46.6823027 ], + [ 10.1413325, 46.6823848 ], + [ 10.1415056, 46.6824607 ], + [ 10.1416843, 46.6825304 ], + [ 10.1418679, 46.6825935 ], + [ 10.1420562, 46.6826499 ], + [ 10.1422484, 46.6826994 ], + [ 10.1424442, 46.6827419 ], + [ 10.1426429, 46.6827774 ], + [ 10.1428441, 46.6828056 ], + [ 10.1430471, 46.6828266 ], + [ 10.1432514, 46.6828402 ], + [ 10.1434565, 46.6828464 ], + [ 10.1436618, 46.6828452 ], + [ 10.1438667, 46.6828366 ], + [ 10.1440707, 46.6828207 ], + [ 10.1442732, 46.6827974 ], + [ 10.1444737, 46.6827669 ], + [ 10.1446715, 46.6827292 ], + [ 10.1448662, 46.6826844 ], + [ 10.1450572, 46.6826327 ], + [ 10.1452441, 46.6825742 ], + [ 10.1454262, 46.682509 ], + [ 10.1456032, 46.6824373 ], + [ 10.1457744, 46.6823594 ], + [ 10.1459395, 46.6822754 ], + [ 10.146097900000001, 46.6821856 ], + [ 10.1462493, 46.6820902 ], + [ 10.1463933, 46.6819894 ], + [ 10.1465294, 46.6818837 ], + [ 10.1466572, 46.6817731 ], + [ 10.1467765, 46.6816581 ], + [ 10.1468869, 46.681539 ], + [ 10.146988, 46.6814161 ], + [ 10.1470797, 46.6812896 ], + [ 10.1471616, 46.6811601 ], + [ 10.1472336, 46.6810278 ], + [ 10.1472954, 46.680893 ], + [ 10.1473469, 46.6807563 ], + [ 10.1473879, 46.6806178 ], + [ 10.1474183, 46.6804781 ], + [ 10.147438, 46.6803375 ], + [ 10.1474471, 46.6801963 ], + [ 10.1474454, 46.680055 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0084", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Ova Spin", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Ova Spin", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Ova Spin", + "lang" : "it-CH" + }, + { + "text" : "Substation Ova Spin", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.5516226, 46.9129667 ], + [ 9.5503859, 46.9121977 ], + [ 9.5506092, 46.9132643 ], + [ 9.5506754, 46.9132583 ], + [ 9.5507385, 46.913422 ], + [ 9.5518282, 46.9132573 ], + [ 9.5516226, 46.9129667 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSXU002", + "country" : "CHE", + "name" : [ + { + "text" : "LSXU Untervaz (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSXU Untervaz (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSXU Untervaz (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSXU Untervaz (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swiss Helicopter AG", + "lang" : "de-CH" + }, + { + "text" : "Swiss Helicopter AG", + "lang" : "fr-CH" + }, + { + "text" : "Swiss Helicopter AG", + "lang" : "it-CH" + }, + { + "text" : "Swiss Helicopter AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Adrian Roffler", + "lang" : "de-CH" + }, + { + "text" : "Adrian Roffler", + "lang" : "fr-CH" + }, + { + "text" : "Adrian Roffler", + "lang" : "it-CH" + }, + { + "text" : "Adrian Roffler", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swisshelicopter.ch/en/about-us/helicopter-bases/untervaz", + "email" : "untervaz@swisshelicopter.ch", + "phone" : "0041813225757", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.4723185, 47.0501307 ], + [ 8.5060077, 46.9822249 ], + [ 8.5116458, 46.9628819 ], + [ 8.3408747, 46.9296069 ], + [ 8.3092819, 47.0103174 ], + [ 8.3383722, 47.0304232 ], + [ 8.4249633, 47.0431644 ], + [ 8.4723185, 47.0501307 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 120, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "CTR0003", + "country" : "CHE", + "name" : [ + { + "text" : "CTR BUOCHS (MIL/CIV)", + "lang" : "de-CH" + }, + { + "text" : "CTR BUOCHS (MIL/CIV)", + "lang" : "fr-CH" + }, + { + "text" : "CTR BUOCHS (MIL/CIV)", + "lang" : "it-CH" + }, + { + "text" : "CTR BUOCHS (MIL/CIV)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only permitted from an altitude of 120 m above ground with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Skyguide Special Flight Office", + "lang" : "de-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "it-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "en-GB" + } + ], + "siteURL" : "https://skyguide.ch/services/special-flights", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4210307, 46.4908235 ], + [ 7.4210176, 46.4908145 ], + [ 7.4206945, 46.4910407 ], + [ 7.4202482, 46.4911664 ], + [ 7.4199851, 46.4911988 ], + [ 7.4109672, 46.4972574 ], + [ 7.4108434, 46.4971657 ], + [ 7.4105441, 46.4973284 ], + [ 7.410388, 46.4971734 ], + [ 7.4102462, 46.4970318 ], + [ 7.4100656, 46.4971566 ], + [ 7.4095495, 46.4974413 ], + [ 7.4093949, 46.4975375 ], + [ 7.4086658, 46.4979531 ], + [ 7.408326, 46.4981322 ], + [ 7.4081733, 46.4981998 ], + [ 7.4087137, 46.4984484 ], + [ 7.4087691, 46.4984427 ], + [ 7.4088088, 46.4984515 ], + [ 7.4088443, 46.4984703 ], + [ 7.4088847, 46.4984998 ], + [ 7.4081825, 46.4988612 ], + [ 7.4076914, 46.499072 ], + [ 7.4075035, 46.499126 ], + [ 7.4075745, 46.499178 ], + [ 7.4074276, 46.499274 ], + [ 7.4071622, 46.4990784 ], + [ 7.4069029, 46.4991654 ], + [ 7.4062376, 46.4993872 ], + [ 7.4061557, 46.4994224 ], + [ 7.4060858, 46.4994573 ], + [ 7.4060062, 46.4995163 ], + [ 7.4059528, 46.4995777 ], + [ 7.4059175, 46.4996474 ], + [ 7.4059016, 46.4997142 ], + [ 7.4058728, 46.5000114 ], + [ 7.4057597, 46.5000138 ], + [ 7.4057456, 46.5000568 ], + [ 7.4057374, 46.5000604 ], + [ 7.4056529, 46.500047 ], + [ 7.4053345, 46.4998563 ], + [ 7.4050266, 46.4996635 ], + [ 7.4048733, 46.4995676 ], + [ 7.4047846, 46.4996062 ], + [ 7.4039702, 46.500053 ], + [ 7.403924, 46.5000811 ], + [ 7.4038144, 46.5000615 ], + [ 7.4032009, 46.5004928 ], + [ 7.4030919, 46.5005652 ], + [ 7.4027679, 46.5007755 ], + [ 7.4028261, 46.5008208 ], + [ 7.402461, 46.5011071 ], + [ 7.4026043999999995, 46.5010259 ], + [ 7.4034376, 46.5012877 ], + [ 7.4041934, 46.5008202 ], + [ 7.4043497, 46.5009282 ], + [ 7.4044801, 46.5007483 ], + [ 7.4047235, 46.5005933 ], + [ 7.4049993, 46.5007813 ], + [ 7.4053385, 46.5009531 ], + [ 7.4054091, 46.5010012 ], + [ 7.4041146, 46.5018457 ], + [ 7.4037757, 46.5021154 ], + [ 7.4029421, 46.5020027 ], + [ 7.4024545, 46.50259 ], + [ 7.4029936, 46.5028348 ], + [ 7.4019768, 46.5039139 ], + [ 7.402758, 46.5046159 ], + [ 7.4033146, 46.5042272 ], + [ 7.403317, 46.5042289 ], + [ 7.4054331, 46.5027481 ], + [ 7.4223035, 46.4909653 ], + [ 7.4215743, 46.4904254 ], + [ 7.4210307, 46.4908235 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSTS002", + "country" : "CHE", + "name" : [ + { + "text" : "LSTS St. Stephan (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSTS St. Stephan (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSTS St. Stephan (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSTS St. Stephan (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Airfield St. Stephan", + "lang" : "de-CH" + }, + { + "text" : "Airfield St. Stephan", + "lang" : "fr-CH" + }, + { + "text" : "Airfield St. Stephan", + "lang" : "it-CH" + }, + { + "text" : "Airfield St. Stephan", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Stephan Speiser", + "lang" : "de-CH" + }, + { + "text" : "Stephan Speiser", + "lang" : "fr-CH" + }, + { + "text" : "Stephan Speiser", + "lang" : "it-CH" + }, + { + "text" : "Stephan Speiser", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.p-c-a.ch/modellflug.html", + "email" : "info@p-c-a.ch", + "phone" : "0041787341880", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5666774, 47.4962949 ], + [ 7.566688, 47.4963576 ], + [ 7.566867, 47.4963388 ], + [ 7.5669887, 47.4963258 ], + [ 7.5670297, 47.4963214 ], + [ 7.5671557, 47.4962657 ], + [ 7.5675609, 47.496287 ], + [ 7.5677941, 47.4962764 ], + [ 7.5687686, 47.4964865 ], + [ 7.5695324, 47.4966456 ], + [ 7.5700412, 47.4966837 ], + [ 7.570567, 47.496812 ], + [ 7.5704776, 47.4970146 ], + [ 7.5704927, 47.4970194 ], + [ 7.5708859, 47.497154 ], + [ 7.5714197, 47.4973597 ], + [ 7.5715582, 47.4974209 ], + [ 7.5716782, 47.4974956 ], + [ 7.5719694, 47.4976944 ], + [ 7.5721887, 47.4974282 ], + [ 7.5722009, 47.4974135 ], + [ 7.5722711, 47.4973263 ], + [ 7.5721635, 47.4972248 ], + [ 7.5716003, 47.4969792 ], + [ 7.5712699, 47.496884 ], + [ 7.570839, 47.4967637 ], + [ 7.5706636, 47.4967144 ], + [ 7.570679, 47.4967749 ], + [ 7.5698915, 47.4965754 ], + [ 7.5697568, 47.4965883 ], + [ 7.5694534, 47.4965069 ], + [ 7.569343, 47.4964513 ], + [ 7.5681975999999995, 47.4962936 ], + [ 7.5680477, 47.4962154 ], + [ 7.5678334, 47.4961969 ], + [ 7.5675671, 47.4962306 ], + [ 7.5671051, 47.4961633 ], + [ 7.5670288, 47.4962459 ], + [ 7.5666774, 47.4962949 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns039", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Mooswasen", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Mooswasen", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Mooswasen", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Mooswasen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.0170119, 46.8702557 ], + [ 7.0152758, 46.8715217 ], + [ 7.0124123, 46.87351 ], + [ 7.0097475, 46.8752965 ], + [ 7.0101323, 46.8753992 ], + [ 7.0106635, 46.8754621 ], + [ 7.0108522, 46.8753579 ], + [ 7.0112557, 46.8752644 ], + [ 7.0115672, 46.8751865 ], + [ 7.0117062, 46.8752082 ], + [ 7.0118485, 46.8752922 ], + [ 7.0118924, 46.8753322 ], + [ 7.012033, 46.8754521 ], + [ 7.0121509, 46.8756101 ], + [ 7.0121386, 46.8756996 ], + [ 7.0118754, 46.8761277 ], + [ 7.0118347, 46.8763167 ], + [ 7.0120025, 46.8764239 ], + [ 7.0125221, 46.8765812 ], + [ 7.013056, 46.8765671 ], + [ 7.0134939, 46.876843 ], + [ 7.0138307, 46.8773504 ], + [ 7.0140267, 46.877501 ], + [ 7.0141704, 46.8775114 ], + [ 7.0146388, 46.8773425 ], + [ 7.0148213, 46.877188 ], + [ 7.0149939, 46.8769295 ], + [ 7.015184, 46.8768166 ], + [ 7.015288, 46.876814 ], + [ 7.0153884, 46.8769106 ], + [ 7.0155046, 46.8770305 ], + [ 7.0154478, 46.8772105 ], + [ 7.0153742, 46.877634 ], + [ 7.0153866, 46.8778599 ], + [ 7.0152899, 46.8782515 ], + [ 7.0153271, 46.8784782 ], + [ 7.0156069, 46.8787277 ], + [ 7.015745, 46.8788179 ], + [ 7.01581, 46.8789279 ], + [ 7.0158448, 46.8790627 ], + [ 7.0158693, 46.8791582 ], + [ 7.0158725, 46.8791769 ], + [ 7.0180121, 46.8796865 ], + [ 7.0180732, 46.8796053 ], + [ 7.018107, 46.8795599 ], + [ 7.0181893, 46.8794499 ], + [ 7.0201729, 46.8777013 ], + [ 7.0208877, 46.8770496 ], + [ 7.0209155, 46.8770248 ], + [ 7.0209837, 46.8769626 ], + [ 7.021005, 46.8769419 ], + [ 7.0212868, 46.8766843 ], + [ 7.0213097, 46.8766909 ], + [ 7.0213363, 46.8766984 ], + [ 7.0213583, 46.8767046 ], + [ 7.022955, 46.8753053 ], + [ 7.0242552, 46.8741687 ], + [ 7.0170119, 46.8702557 ] + ] + ], + "layer" : { + "upper" : 300, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "FR005", + "country" : "CHE", + "name" : [ + { + "text" : "CIG Nord", + "lang" : "de-CH" + }, + { + "text" : "CIG Nord", + "lang" : "fr-CH" + }, + { + "text" : "CIG Nord", + "lang" : "it-CH" + }, + { + "text" : "CIG Nord", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kantonspolizei (Pol)", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale (Pol)", + "lang" : "fr-CH" + }, + { + "text" : "Police cantonale (Pol)", + "lang" : "it-CH" + }, + { + "text" : "Police cantonale (Pol)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Kommandant", + "lang" : "de-CH" + }, + { + "text" : "Commandant", + "lang" : "fr-CH" + }, + { + "text" : "Commandant", + "lang" : "it-CH" + }, + { + "text" : "Commandant", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.fr.ch/police-et-securite/criminalite-ordre-public-et-circulation/drones-legislation-et-demandes-de-derogation", + "email" : "CEA@fr.ch", + "phone" : "0041263470117", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.7800339, 47.1695787 ], + [ 8.779884599999999, 47.1672264 ], + [ 8.7795549, 47.1648826 ], + [ 8.7790459, 47.1625538 ], + [ 8.7783589, 47.1602463 ], + [ 8.7774958, 47.1579665 ], + [ 8.7764591, 47.1557206 ], + [ 8.7752517, 47.1535148 ], + [ 8.7738767, 47.1513552 ], + [ 8.772338, 47.1492475 ], + [ 8.770639899999999, 47.1471977 ], + [ 8.768787, 47.1452112 ], + [ 8.7667844, 47.1432936 ], + [ 8.7646377, 47.1414501 ], + [ 8.7623525, 47.1396858 ], + [ 8.7599354, 47.1380054 ], + [ 8.7573928, 47.1364136 ], + [ 8.7547318, 47.1349147 ], + [ 8.7519596, 47.1335128 ], + [ 8.7490838, 47.1322118 ], + [ 8.7461123, 47.1310152 ], + [ 8.7430533, 47.1299263 ], + [ 8.739915, 47.128948 ], + [ 8.7367062, 47.1280831 ], + [ 8.7334355, 47.127333899999996 ], + [ 8.7301119, 47.1267025 ], + [ 8.7267446, 47.1261905 ], + [ 8.7233426, 47.1257995 ], + [ 8.7199154, 47.1255304 ], + [ 8.7164722, 47.1253839 ], + [ 8.7130225, 47.1253606 ], + [ 8.7095758, 47.1254604 ], + [ 8.7061414, 47.1256831 ], + [ 8.7027288, 47.126028 ], + [ 8.6993472, 47.1264943 ], + [ 8.696006, 47.1270806 ], + [ 8.6927142, 47.1277854 ], + [ 8.6894808, 47.1286067 ], + [ 8.6863148, 47.1295423 ], + [ 8.6832248, 47.1305896 ], + [ 8.6802191, 47.1317457 ], + [ 8.6773061, 47.1330075 ], + [ 8.6744937, 47.1343716 ], + [ 8.6717897, 47.1358342 ], + [ 8.6692014, 47.1373913 ], + [ 8.666735899999999, 47.1390386 ], + [ 8.6643999, 47.1407717 ], + [ 8.6622, 47.1425858 ], + [ 8.6601421, 47.1444759 ], + [ 8.6582318, 47.1464369 ], + [ 8.6564744, 47.1484633 ], + [ 8.6548748, 47.1505497 ], + [ 8.6534373, 47.1526904 ], + [ 8.6521659, 47.1548794 ], + [ 8.6510641, 47.1571108 ], + [ 8.650135, 47.1593784 ], + [ 8.649381, 47.1616762 ], + [ 8.6488043, 47.1639976 ], + [ 8.6484065, 47.1663365 ], + [ 8.6481887, 47.1686864 ], + [ 8.6481515, 47.1710408 ], + [ 8.6482951, 47.1733933 ], + [ 8.6486191, 47.1757375 ], + [ 8.6491226, 47.1780669 ], + [ 8.6498042, 47.1803751 ], + [ 8.6506622, 47.1826558 ], + [ 8.6516941, 47.1849028 ], + [ 8.6528972, 47.1871099 ], + [ 8.6542682, 47.189271 ], + [ 8.6558033, 47.1913802 ], + [ 8.6574984, 47.1934317 ], + [ 8.6593488, 47.1954199 ], + [ 8.6613495, 47.1973393 ], + [ 8.663495, 47.1991847 ], + [ 8.6657794, 47.200951 ], + [ 8.6681964, 47.2026334 ], + [ 8.6707395, 47.2042271 ], + [ 8.6734016, 47.2057279 ], + [ 8.6761755, 47.2071317 ], + [ 8.6790536, 47.2084345 ], + [ 8.6820278, 47.2096328 ], + [ 8.6850902, 47.2107233 ], + [ 8.6882322, 47.2117031 ], + [ 8.6914453, 47.2125693 ], + [ 8.6947206, 47.2133197 ], + [ 8.6980492, 47.2139521 ], + [ 8.7014218, 47.2144649 ], + [ 8.7048292, 47.2148566 ], + [ 8.7082621, 47.2151262 ], + [ 8.7117111, 47.2152729 ], + [ 8.7151665, 47.2152963 ], + [ 8.7186191, 47.2151963 ], + [ 8.7220591, 47.2149732 ], + [ 8.7254773, 47.2146277 ], + [ 8.7288643, 47.2141607 ], + [ 8.7322106, 47.2135734 ], + [ 8.7355071, 47.2128675 ], + [ 8.7387449, 47.2120449 ], + [ 8.7419149, 47.2111079 ], + [ 8.7450084, 47.2100591 ], + [ 8.7480171, 47.2089013 ], + [ 8.7509325, 47.2076377 ], + [ 8.7537468, 47.2062717 ], + [ 8.7564522, 47.2048072 ], + [ 8.7590412, 47.2032482 ], + [ 8.7615068, 47.2015989 ], + [ 8.7638423, 47.1998639 ], + [ 8.7660411, 47.1980479 ], + [ 8.7680974, 47.1961559 ], + [ 8.7700054, 47.1941931 ], + [ 8.7717599, 47.192165 ], + [ 8.7733562, 47.190077 ], + [ 8.7747899, 47.1879348 ], + [ 8.7760571, 47.1857445 ], + [ 8.7771543, 47.1835119 ], + [ 8.7780785, 47.1812433 ], + [ 8.7788272, 47.1789447 ], + [ 8.7793984, 47.1766226 ], + [ 8.7797905, 47.1742833 ], + [ 8.7800026, 47.1719332 ], + [ 8.7800339, 47.1695787 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSXS001", + "country" : "CHE", + "name" : [ + { + "text" : "LSXS Schindellegi SZ", + "lang" : "de-CH" + }, + { + "text" : "LSXS Schindellegi SZ", + "lang" : "fr-CH" + }, + { + "text" : "LSXS Schindellegi SZ", + "lang" : "it-CH" + }, + { + "text" : "LSXS Schindellegi SZ", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Fuchs Helikopter", + "lang" : "de-CH" + }, + { + "text" : "Fuchs Helikopter", + "lang" : "fr-CH" + }, + { + "text" : "Fuchs Helikopter", + "lang" : "it-CH" + }, + { + "text" : "Fuchs Helikopter", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.fuchshelikopter.ch/en/", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.6965533, 47.0373156 ], + [ 6.6966166, 47.0373221 ], + [ 6.6975944, 47.0379138 ], + [ 6.6989388, 47.0388221 ], + [ 6.6993151, 47.0391454 ], + [ 6.7006428, 47.0401038 ], + [ 6.7016083, 47.0407721 ], + [ 6.7035611, 47.042386 ], + [ 6.7045999, 47.0433555 ], + [ 6.7058358, 47.0443328 ], + [ 6.7088322, 47.0449762 ], + [ 6.7088351, 47.0449795 ], + [ 6.7088527, 47.0449832 ], + [ 6.7115291, 47.0480502 ], + [ 6.7150417000000004, 47.0494775 ], + [ 6.7156333, 47.0497055 ], + [ 6.7164217, 47.0500453 ], + [ 6.7173566000000005, 47.0504321 ], + [ 6.7185777, 47.050911 ], + [ 6.7188068, 47.0510321 ], + [ 6.719171, 47.0511828 ], + [ 6.7194880999999995, 47.051796 ], + [ 6.7194888, 47.0517971 ], + [ 6.7194888, 47.0517975 ], + [ 6.7196087, 47.0520293 ], + [ 6.719609, 47.0520297 ], + [ 6.7195944999999995, 47.0520332 ], + [ 6.7195048, 47.0520549 ], + [ 6.71947, 47.0520841 ], + [ 6.7194112, 47.0521061 ], + [ 6.7192861, 47.0521749 ], + [ 6.7189875, 47.0522088 ], + [ 6.7189636, 47.0522158 ], + [ 6.718861, 47.0522784 ], + [ 6.7188027, 47.0522951 ], + [ 6.7186131, 47.0523056 ], + [ 6.7185462, 47.0522966 ], + [ 6.7183449, 47.0522978 ], + [ 6.7182683, 47.0522905 ], + [ 6.7178794, 47.0523347 ], + [ 6.7178506, 47.052344 ], + [ 6.7176894, 47.0523826 ], + [ 6.7175576, 47.0524258 ], + [ 6.7175571, 47.0524258 ], + [ 6.7173333, 47.0525027 ], + [ 6.7171361, 47.0525027 ], + [ 6.7167196, 47.0525419 ], + [ 6.7166678, 47.0525595 ], + [ 6.7164871, 47.0526057 ], + [ 6.7163351, 47.0526509 ], + [ 6.7161969, 47.0527029 ], + [ 6.7160627999999996, 47.0527256 ], + [ 6.7159627, 47.0527309 ], + [ 6.7158555, 47.0527638 ], + [ 6.7151555, 47.0529582 ], + [ 6.7148666, 47.0529555 ], + [ 6.7145885, 47.0530087 ], + [ 6.7144239, 47.0530767 ], + [ 6.7143195, 47.0531301 ], + [ 6.7141514, 47.0531402 ], + [ 6.7140629, 47.0531341 ], + [ 6.7134138, 47.0533055 ], + [ 6.7130166, 47.0533305 ], + [ 6.7122499, 47.0535499 ], + [ 6.7112972, 47.0541027 ], + [ 6.7111222, 47.0542638 ], + [ 6.7109860999999995, 47.0545944 ], + [ 6.7106527, 47.0550444 ], + [ 6.7102499, 47.055536 ], + [ 6.7100888, 47.0558499 ], + [ 6.7099523, 47.0560105 ], + [ 6.7099169, 47.0560726 ], + [ 6.7098759999999995, 47.0561003 ], + [ 6.7096472, 47.0563693 ], + [ 6.7096833, 47.0565027 ], + [ 6.7096416, 47.0566832 ], + [ 6.7094138, 47.0570416 ], + [ 6.7092361, 47.0573999 ], + [ 6.7089694, 47.0576694 ], + [ 6.7089034, 47.057624 ], + [ 6.7088258, 47.0577065 ], + [ 6.7119444, 47.0630555 ], + [ 6.827778, 47.1252771 ], + [ 6.9338888, 47.1788888 ], + [ 6.9741666, 47.1355555 ], + [ 6.8708333, 47.0999999 ], + [ 6.7916666, 47.0297216 ], + [ 6.7197222, 46.9808327 ], + [ 6.6481351, 47.0140007 ], + [ 6.6483682, 47.0146153 ], + [ 6.6520081, 47.0199791 ], + [ 6.6536234, 47.0223427 ], + [ 6.6548482, 47.0234787 ], + [ 6.6548523, 47.0234952 ], + [ 6.6552083, 47.0238221 ], + [ 6.6565332999999995, 47.024911 ], + [ 6.6568214, 47.0252247 ], + [ 6.6569068, 47.0253009 ], + [ 6.6571128, 47.0255058 ], + [ 6.657199, 47.0256274 ], + [ 6.6572704, 47.0257134 ], + [ 6.65735, 47.0257999 ], + [ 6.6593537, 47.0273759 ], + [ 6.6594114, 47.0273908 ], + [ 6.6594411000000004, 47.0274004 ], + [ 6.6599555, 47.0274999 ], + [ 6.6603722, 47.0278444 ], + [ 6.6609583, 47.0282249 ], + [ 6.6609986, 47.028198 ], + [ 6.6610704, 47.0281321 ], + [ 6.6610848, 47.0281405 ], + [ 6.6610916, 47.028136 ], + [ 6.6618499, 47.0285471 ], + [ 6.662209, 47.0288023 ], + [ 6.6623888, 47.0289081 ], + [ 6.6626656, 47.0290262 ], + [ 6.6635472, 47.0293221 ], + [ 6.6647499, 47.0298694 ], + [ 6.6662555, 47.0304471 ], + [ 6.6668388, 47.0309638 ], + [ 6.6677944, 47.031311 ], + [ 6.6694555, 47.0321055 ], + [ 6.6706083, 47.0323666 ], + [ 6.6710916000000005, 47.0326388 ], + [ 6.6726319, 47.0332793 ], + [ 6.6727593, 47.0333191 ], + [ 6.6729288, 47.0333899 ], + [ 6.6733937, 47.0335742 ], + [ 6.6735811, 47.033674 ], + [ 6.6736166, 47.0336888 ], + [ 6.6750111, 47.0344638 ], + [ 6.6754444, 47.0345749 ], + [ 6.6756114, 47.0347538 ], + [ 6.6757248, 47.0347768 ], + [ 6.6761585, 47.0349594 ], + [ 6.6764499, 47.0350582 ], + [ 6.6784833, 47.0355388 ], + [ 6.6793361, 47.0358416 ], + [ 6.6796344, 47.0359088 ], + [ 6.6806949, 47.0361066 ], + [ 6.6812428, 47.036289 ], + [ 6.6823499, 47.0365805 ], + [ 6.6834666, 47.036786 ], + [ 6.6838972, 47.0369527 ], + [ 6.6843833, 47.0370166 ], + [ 6.6854721999999995, 47.0373666 ], + [ 6.6878361, 47.037561 ], + [ 6.6899444, 47.0374416 ], + [ 6.6908666, 47.037286 ], + [ 6.6917357, 47.0372581 ], + [ 6.6922875, 47.03723 ], + [ 6.6933027, 47.0371471 ], + [ 6.6938449, 47.0371507 ], + [ 6.6942465, 47.0371302 ], + [ 6.69475, 47.0370018 ], + [ 6.6947594, 47.0369947 ], + [ 6.6947767, 47.036995 ], + [ 6.6948444, 47.0369777 ], + [ 6.6950345, 47.0369984 ], + [ 6.6951839, 47.0370004 ], + [ 6.6952122, 47.0370178 ], + [ 6.6952777, 47.0370249 ], + [ 6.6956768, 47.0372179 ], + [ 6.6957433, 47.0372324 ], + [ 6.6959694, 47.0372556 ], + [ 6.6965402, 47.0373068 ], + [ 6.6965533, 47.0373156 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 120, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "CTR0008", + "country" : "CHE", + "name" : [ + { + "text" : "CTR LES EPLATURES", + "lang" : "de-CH" + }, + { + "text" : "CTR LES EPLATURES", + "lang" : "fr-CH" + }, + { + "text" : "CTR LES EPLATURES", + "lang" : "it-CH" + }, + { + "text" : "CTR LES EPLATURES", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only permitted from an altitude of 120 m above ground with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Skyguide Special Flight Office", + "lang" : "de-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "it-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "en-GB" + } + ], + "siteURL" : "https://skyguide.ch/services/special-flights", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5809785, 47.5033491 ], + [ 7.5809727, 47.5032079 ], + [ 7.5809560000000005, 47.503067 ], + [ 7.5809284, 47.502927 ], + [ 7.58089, 47.5027882 ], + [ 7.5808409999999995, 47.5026509 ], + [ 7.5807814, 47.5025155 ], + [ 7.5807115, 47.5023825 ], + [ 7.5806314, 47.502252 ], + [ 7.5805413, 47.5021246 ], + [ 7.5804415, 47.5020006 ], + [ 7.5803323, 47.5018803 ], + [ 7.5802139, 47.501764 ], + [ 7.5800867, 47.5016521 ], + [ 7.579951, 47.5015449 ], + [ 7.5798073, 47.5014426 ], + [ 7.5796558, 47.5013455 ], + [ 7.579497, 47.501254 ], + [ 7.5793314, 47.5011682 ], + [ 7.5791594, 47.5010884 ], + [ 7.5789815, 47.5010148 ], + [ 7.5787981, 47.5009476 ], + [ 7.5786098, 47.500887 ], + [ 7.5784171, 47.5008332 ], + [ 7.5782205000000005, 47.5007863 ], + [ 7.5780205, 47.5007464 ], + [ 7.5778177, 47.5007137 ], + [ 7.5776126999999995, 47.5006882 ], + [ 7.577406, 47.50067 ], + [ 7.5771982, 47.5006591 ], + [ 7.5769898, 47.5006557 ], + [ 7.5767814, 47.5006596 ], + [ 7.5765736, 47.500671 ], + [ 7.576367, 47.5006896 ], + [ 7.5761621, 47.5007156 ], + [ 7.5759595, 47.5007488 ], + [ 7.5757597, 47.5007892 ], + [ 7.5755634, 47.5008366 ], + [ 7.5753709, 47.5008909 ], + [ 7.5751829, 47.5009519 ], + [ 7.5749999, 47.5010195 ], + [ 7.5748223, 47.5010935 ], + [ 7.5746508, 47.5011738 ], + [ 7.5744856, 47.5012599 ], + [ 7.5743273, 47.5013519 ], + [ 7.5741764, 47.5014493 ], + [ 7.5740331, 47.5015519 ], + [ 7.573898, 47.5016595 ], + [ 7.5737714, 47.5017717 ], + [ 7.5736536, 47.5018882 ], + [ 7.573545, 47.5020088 ], + [ 7.5734459, 47.5021331 ], + [ 7.5733564, 47.5022607 ], + [ 7.573277, 47.5023913 ], + [ 7.5732077, 47.5025245 ], + [ 7.5731489, 47.50266 ], + [ 7.5731006, 47.5027974 ], + [ 7.5730629, 47.5029364 ], + [ 7.573036, 47.5030765 ], + [ 7.5730201, 47.5032173 ], + [ 7.573015, 47.5033585 ], + [ 7.5730208, 47.5034997 ], + [ 7.5730375, 47.5036405 ], + [ 7.573065, 47.5037805 ], + [ 7.5731034, 47.5039194 ], + [ 7.5731524, 47.5040567 ], + [ 7.5732119, 47.5041921 ], + [ 7.5732819, 47.5043251 ], + [ 7.5733619999999995, 47.5044556 ], + [ 7.573452, 47.504583 ], + [ 7.5735518, 47.504707 ], + [ 7.5736609999999995, 47.5048273 ], + [ 7.5737794, 47.5049436 ], + [ 7.5739066, 47.5050555 ], + [ 7.5740423, 47.5051628 ], + [ 7.574186, 47.5052651 ], + [ 7.5743375, 47.5053621 ], + [ 7.5744962000000005, 47.5054537 ], + [ 7.5746618, 47.5055395 ], + [ 7.5748339, 47.5056193 ], + [ 7.5750118, 47.5056929 ], + [ 7.5751952, 47.5057601 ], + [ 7.5753835, 47.5058207 ], + [ 7.5755763, 47.5058745 ], + [ 7.5757729, 47.5059214 ], + [ 7.5759729, 47.5059613 ], + [ 7.5761757, 47.505994 ], + [ 7.5763807, 47.5060195 ], + [ 7.5765874, 47.5060377 ], + [ 7.5767953, 47.5060486 ], + [ 7.5770037, 47.506052 ], + [ 7.5772121, 47.5060481 ], + [ 7.5774199, 47.5060367 ], + [ 7.5776266, 47.5060181 ], + [ 7.5778315, 47.5059921 ], + [ 7.5780341, 47.5059589 ], + [ 7.5782339, 47.5059185 ], + [ 7.5784303, 47.5058711 ], + [ 7.5786227, 47.5058168 ], + [ 7.5788107, 47.5057558 ], + [ 7.5789938, 47.5056882 ], + [ 7.5791713, 47.5056141 ], + [ 7.5793429, 47.5055339 ], + [ 7.5795081, 47.5054477 ], + [ 7.5796664, 47.5053558 ], + [ 7.5798173, 47.5052584 ], + [ 7.5799606, 47.5051557 ], + [ 7.5800957, 47.5050481 ], + [ 7.5802223, 47.5049359 ], + [ 7.58034, 47.5048194 ], + [ 7.5804487, 47.5046988 ], + [ 7.5805478, 47.5045745 ], + [ 7.5806372, 47.5044469 ], + [ 7.5807166, 47.5043163 ], + [ 7.5807859, 47.5041831 ], + [ 7.5808447, 47.5040476 ], + [ 7.580893, 47.5039101 ], + [ 7.5809306, 47.5037712 ], + [ 7.5809575, 47.5036311 ], + [ 7.5809735, 47.5034903 ], + [ 7.5809785, 47.5033491 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0040", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Froloo", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Froloo", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Froloo", + "lang" : "it-CH" + }, + { + "text" : "Substation Froloo", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.3053261, 46.2486264 ], + [ 6.3053138, 46.2486075 ], + [ 6.3046356, 46.2478939 ], + [ 6.3036698, 46.2473632 ], + [ 6.3025132, 46.2470687 ], + [ 6.3012819, 46.2470399 ], + [ 6.3000994, 46.2472796 ], + [ 6.3000453, 46.2472974 ], + [ 6.2988468, 46.2479114 ], + [ 6.2980688, 46.2487929 ], + [ 6.2978255, 46.2498127 ], + [ 6.2981527, 46.2508211 ], + [ 6.2981647, 46.2508401 ], + [ 6.2988379, 46.2515621 ], + [ 6.2998042, 46.2521006 ], + [ 6.3009658, 46.2524009 ], + [ 6.3022045, 46.252432400000004 ], + [ 6.3033946, 46.2521921 ], + [ 6.3034489, 46.2521742 ], + [ 6.304654, 46.2515553 ], + [ 6.3054321, 46.2506663 ], + [ 6.3056678, 46.2496391 ], + [ 6.3053261, 46.2486264 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-50", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.7630711, 47.5342572 ], + [ 8.7900962, 47.535128 ], + [ 8.8050204, 47.5325939 ], + [ 8.8036947, 47.5220919 ], + [ 8.7766344, 47.4905648 ], + [ 8.7529535, 47.4984236 ], + [ 8.7519066, 47.5033288 ], + [ 8.7630711, 47.5342572 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSPH001", + "country" : "CHE", + "name" : [ + { + "text" : "LSPH Winterthur", + "lang" : "de-CH" + }, + { + "text" : "LSPH Winterthur", + "lang" : "fr-CH" + }, + { + "text" : "LSPH Winterthur", + "lang" : "it-CH" + }, + { + "text" : "LSPH Winterthur", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Segelfluggruppe Winterthur", + "lang" : "de-CH" + }, + { + "text" : "Segelfluggruppe Winterthur", + "lang" : "fr-CH" + }, + { + "text" : "Segelfluggruppe Winterthur", + "lang" : "it-CH" + }, + { + "text" : "Segelfluggruppe Winterthur", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Christian Spaltenstein", + "lang" : "de-CH" + }, + { + "text" : "Christian Spaltenstein", + "lang" : "fr-CH" + }, + { + "text" : "Christian Spaltenstein", + "lang" : "it-CH" + }, + { + "text" : "Christian Spaltenstein", + "lang" : "en-GB" + } + ], + "siteURL" : "https://sgw.ch/drohnen-operationen/vereinbarung-fur-drohnen-operationen/", + "email" : "flugplatzchef@sgw.ch", + "phone" : "0041523372393", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7414254, 47.1810381 ], + [ 7.740898, 47.1820406 ], + [ 7.7385231999999995, 47.1808667 ], + [ 7.7378813, 47.1814387 ], + [ 7.7448589, 47.1848851 ], + [ 7.7450559, 47.1847218 ], + [ 7.7443301, 47.1837712 ], + [ 7.7440947, 47.1834372 ], + [ 7.743843, 47.1834945 ], + [ 7.7429526, 47.1830552 ], + [ 7.7431133, 47.1829981 ], + [ 7.7424037, 47.1821086 ], + [ 7.7425908, 47.1815954 ], + [ 7.7414254, 47.1810381 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSPL002", + "country" : "CHE", + "name" : [ + { + "text" : "LSPL Langenthal (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSPL Langenthal (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSPL Langenthal (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSPL Langenthal (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Flugplatz Langenthal", + "lang" : "de-CH" + }, + { + "text" : "Flugplatz Langenthal", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatz Langenthal", + "lang" : "it-CH" + }, + { + "text" : "Flugplatz Langenthal", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Pauk Zeltner", + "lang" : "de-CH" + }, + { + "text" : "Pauk Zeltner", + "lang" : "fr-CH" + }, + { + "text" : "Pauk Zeltner", + "lang" : "it-CH" + }, + { + "text" : "Pauk Zeltner", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.lspl.ch/", + "email" : "info@lspl.ch", + "phone" : "0041629225072", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.1544455, 46.2313494 ], + [ 9.1542825, 46.2289974 ], + [ 9.1539424, 46.2266545 ], + [ 9.1534261, 46.2243271 ], + [ 9.1527351, 46.2220217 ], + [ 9.1518712, 46.2197445 ], + [ 9.150837, 46.2175019 ], + [ 9.1496351, 46.2152998 ], + [ 9.148268999999999, 46.2131445 ], + [ 9.1467424, 46.2110417 ], + [ 9.1450595, 46.2089972 ], + [ 9.1432249, 46.2070166 ], + [ 9.1412436, 46.2051054 ], + [ 9.1391211, 46.2032688 ], + [ 9.1368633, 46.2015117 ], + [ 9.1344762, 46.1998391 ], + [ 9.1319665, 46.1982554 ], + [ 9.1293411, 46.1967651 ], + [ 9.126607, 46.1953722 ], + [ 9.1237719, 46.1940804 ], + [ 9.1208434, 46.1928935 ], + [ 9.1178296, 46.1918144 ], + [ 9.1147387, 46.1908464 ], + [ 9.1115792, 46.1899919 ], + [ 9.1083597, 46.1892533 ], + [ 9.1050891, 46.1886327 ], + [ 9.1017762, 46.1881317 ], + [ 9.0984302, 46.1877517 ], + [ 9.0950602, 46.1874937 ], + [ 9.0916754, 46.1873585 ], + [ 9.088285, 46.1873465 ], + [ 9.0848983, 46.1874575 ], + [ 9.0815247, 46.1876915 ], + [ 9.0781732, 46.1880476 ], + [ 9.0748532, 46.188525 ], + [ 9.0715736, 46.1891223 ], + [ 9.0683434, 46.1898378 ], + [ 9.0651714, 46.1906698 ], + [ 9.0620664, 46.1916158 ], + [ 9.0590368, 46.1926733 ], + [ 9.056091, 46.1938393 ], + [ 9.0532369, 46.1951108 ], + [ 9.0504824, 46.1964842 ], + [ 9.0478351, 46.1979557 ], + [ 9.0453021, 46.1995214 ], + [ 9.0428905, 46.201177 ], + [ 9.0406068, 46.2029178 ], + [ 9.0384573, 46.2047392 ], + [ 9.036448, 46.2066362 ], + [ 9.0345842, 46.208603600000004 ], + [ 9.0328711, 46.210636 ], + [ 9.0313135, 46.2127278 ], + [ 9.0299156, 46.2148733 ], + [ 9.0286813, 46.2170667 ], + [ 9.0276139, 46.2193019 ], + [ 9.0267165, 46.2215727 ], + [ 9.0259914, 46.2238731 ], + [ 9.0254407, 46.2261967 ], + [ 9.025066, 46.228537 ], + [ 9.0248682, 46.2308878 ], + [ 9.024848, 46.2332426 ], + [ 9.0250054, 46.2355948 ], + [ 9.02534, 46.2379381 ], + [ 9.025851, 46.240266 ], + [ 9.0265368, 46.2425722 ], + [ 9.0273958, 46.2448504 ], + [ 9.0284255, 46.2470942 ], + [ 9.0296231, 46.2492975 ], + [ 9.0309854, 46.2514543 ], + [ 9.0325087, 46.2535586 ], + [ 9.0341888, 46.2556048 ], + [ 9.036021, 46.2575871 ], + [ 9.0380005, 46.2595002 ], + [ 9.0401217, 46.2613387 ], + [ 9.042379, 46.2630977 ], + [ 9.0447659, 46.2647723 ], + [ 9.0472762, 46.2663579 ], + [ 9.0499027, 46.2678501 ], + [ 9.0526385, 46.2692449 ], + [ 9.0554759, 46.2705384 ], + [ 9.0584071, 46.2717271 ], + [ 9.0614242, 46.2728077 ], + [ 9.0645187, 46.2737773 ], + [ 9.0676824, 46.2746331 ], + [ 9.0709063, 46.2753728 ], + [ 9.0741818, 46.2759944 ], + [ 9.0774998, 46.2764963 ], + [ 9.0808511, 46.2768769 ], + [ 9.0842266, 46.2771352 ], + [ 9.087617, 46.2772707 ], + [ 9.091013, 46.2772828 ], + [ 9.0944052, 46.2771715 ], + [ 9.0977843, 46.2769372 ], + [ 9.1011411, 46.2765805 ], + [ 9.1044664, 46.2761023 ], + [ 9.1077509, 46.2755041 ], + [ 9.1109856, 46.2747874 ], + [ 9.1141618, 46.2739541 ], + [ 9.1172706, 46.2730067 ], + [ 9.1203035, 46.2719477 ], + [ 9.1232522, 46.2707799 ], + [ 9.1261086, 46.2695067 ], + [ 9.1288649, 46.2681314 ], + [ 9.1315135, 46.266658 ], + [ 9.134047, 46.2650904 ], + [ 9.1364587, 46.2634329 ], + [ 9.1387419, 46.2616901 ], + [ 9.1408903, 46.2598668 ], + [ 9.142898, 46.2579679 ], + [ 9.1447595, 46.2559987 ], + [ 9.1464698, 46.2539647 ], + [ 9.1480242, 46.2518712 ], + [ 9.1494184, 46.2497243 ], + [ 9.1506486, 46.2475296 ], + [ 9.1517114, 46.2452932 ], + [ 9.152604, 46.2430214 ], + [ 9.153324, 46.2407202 ], + [ 9.1538694, 46.238396 ], + [ 9.1542386, 46.2360552 ], + [ 9.1544308, 46.2337042 ], + [ 9.1544455, 46.2313494 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSXV001", + "country" : "CHE", + "name" : [ + { + "text" : "LSXV San Vittore Heliport", + "lang" : "de-CH" + }, + { + "text" : "LSXV San Vittore Heliport", + "lang" : "fr-CH" + }, + { + "text" : "LSXV San Vittore Heliport", + "lang" : "it-CH" + }, + { + "text" : "LSXV San Vittore Heliport", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "HELI REZIA SA", + "lang" : "de-CH" + }, + { + "text" : "HELI REZIA SA", + "lang" : "fr-CH" + }, + { + "text" : "HELI REZIA SA", + "lang" : "it-CH" + }, + { + "text" : "HELI REZIA SA", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Capo d'aerodromo", + "lang" : "de-CH" + }, + { + "text" : "Capo d'aerodromo", + "lang" : "fr-CH" + }, + { + "text" : "Capo d'aerodromo", + "lang" : "it-CH" + }, + { + "text" : "Capo d'aerodromo", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.helirezia.ch/", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7979531, 47.4340668 ], + [ 7.7979942, 47.434229 ], + [ 7.7980761, 47.4343859 ], + [ 7.7981898, 47.4345301 ], + [ 7.7983137, 47.4346279 ], + [ 7.7986138, 47.4348195 ], + [ 7.7994463, 47.435419 ], + [ 7.7995719999999995, 47.4355094 ], + [ 7.8001913, 47.4359555 ], + [ 7.8008089, 47.436424 ], + [ 7.8009006, 47.4364573 ], + [ 7.8010835, 47.4365121 ], + [ 7.8011478, 47.4364489 ], + [ 7.8009972, 47.4360934 ], + [ 7.8007267, 47.4357271 ], + [ 7.8005935, 47.4356352 ], + [ 7.7999493, 47.4353316 ], + [ 7.7998022, 47.4352769 ], + [ 7.7997013, 47.4352243 ], + [ 7.7993413, 47.4347523 ], + [ 7.7991804, 47.4346099 ], + [ 7.7989425, 47.4343795 ], + [ 7.7986103, 47.4339747 ], + [ 7.7985096, 47.4338727 ], + [ 7.798377, 47.4337923 ], + [ 7.7982542, 47.4337533 ], + [ 7.7981297, 47.4337592 ], + [ 7.7980045, 47.4338134 ], + [ 7.7979701, 47.4338819 ], + [ 7.7979531, 47.4340668 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns171", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Hefletenweiher", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Hefletenweiher", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Hefletenweiher", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Hefletenweiher", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8425273, 47.3782108 ], + [ 7.8426501, 47.3783505 ], + [ 7.8427427, 47.378443 ], + [ 7.8428798, 47.3785218 ], + [ 7.8430069, 47.3785805 ], + [ 7.8431588, 47.3786238 ], + [ 7.843385, 47.378672 ], + [ 7.8435121, 47.3787121 ], + [ 7.843578, 47.3787446 ], + [ 7.8436444, 47.3787235 ], + [ 7.8435783, 47.3786575 ], + [ 7.8434586, 47.3786168 ], + [ 7.8431399, 47.3785477 ], + [ 7.8429994, 47.3784975 ], + [ 7.8428740999999995, 47.3784322 ], + [ 7.8427664, 47.3783519 ], + [ 7.8426131, 47.3781743 ], + [ 7.8425741, 47.3781599 ], + [ 7.8425344, 47.3781685 ], + [ 7.8425273, 47.3782108 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns050", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Hecken-Komplex Schmutzberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Hecken-Komplex Schmutzberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Hecken-Komplex Schmutzberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Hecken-Komplex Schmutzberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8323081, 46.3021195 ], + [ 7.8335965, 46.3020439 ], + [ 7.8334498, 46.3011538 ], + [ 7.832155, 46.3012267 ], + [ 7.8323081, 46.3021195 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSER002", + "country" : "CHE", + "name" : [ + { + "text" : "LSER Raron (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSER Raron (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSER Raron (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSER Raron (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Air Zermatt AG", + "lang" : "de-CH" + }, + { + "text" : "Air Zermatt AG", + "lang" : "fr-CH" + }, + { + "text" : "Air Zermatt AG", + "lang" : "it-CH" + }, + { + "text" : "Air Zermatt AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.air-zermatt.ch/en/air-zermatt/contact", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.0014376, 47.5249943 ], + [ 9.0025827, 47.5254565 ], + [ 9.0029834, 47.5249024 ], + [ 9.0079228, 47.5265771 ], + [ 9.0083278, 47.5260804 ], + [ 9.0073283, 47.5256064 ], + [ 9.0042156, 47.5241733 ], + [ 9.0010348, 47.523359 ], + [ 8.9986456, 47.522722 ], + [ 8.9992032, 47.5236203 ], + [ 8.9981058, 47.523242 ], + [ 8.9977182, 47.5237015 ], + [ 9.0014376, 47.5249943 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZT002", + "country" : "CHE", + "name" : [ + { + "text" : "LSZT Lommis (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSZT Lommis (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSZT Lommis (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSZT Lommis (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Motorfluggruppe Thurgau", + "lang" : "de-CH" + }, + { + "text" : "Motorfluggruppe Thurgau", + "lang" : "fr-CH" + }, + { + "text" : "Motorfluggruppe Thurgau", + "lang" : "it-CH" + }, + { + "text" : "Motorfluggruppe Thurgau", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.mfgt.ch/flugplatz/drohnen/drones/", + "phone" : "0041523663333", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P04DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5602675999999995, 47.4238802 ], + [ 7.5601557, 47.4244376 ], + [ 7.56026, 47.4252956 ], + [ 7.5603045, 47.4257801 ], + [ 7.560327, 47.4258137 ], + [ 7.5603858, 47.4259504 ], + [ 7.560496, 47.4261847 ], + [ 7.5604975, 47.4261875 ], + [ 7.5604994, 47.4261901 ], + [ 7.5605017, 47.4261927 ], + [ 7.5605043, 47.4261951 ], + [ 7.5605659, 47.4262471 ], + [ 7.5606075, 47.4262744 ], + [ 7.5606186, 47.4262811 ], + [ 7.5606306, 47.4262869 ], + [ 7.5606433, 47.426292 ], + [ 7.5607062, 47.4263098 ], + [ 7.5609676, 47.426382 ], + [ 7.5612107, 47.4264551 ], + [ 7.5613707, 47.4265454 ], + [ 7.56125, 47.4272616 ], + [ 7.5613971, 47.4278828 ], + [ 7.5614152, 47.4279077 ], + [ 7.5614121, 47.4279618 ], + [ 7.5615482, 47.4282157 ], + [ 7.56167, 47.4284484 ], + [ 7.56176, 47.4286169 ], + [ 7.5617944999999995, 47.4287232 ], + [ 7.5618084, 47.4288348 ], + [ 7.5617704, 47.4291577 ], + [ 7.5617928, 47.4293334 ], + [ 7.5618248999999995, 47.4295283 ], + [ 7.5618825, 47.4299149 ], + [ 7.5618766, 47.4300032 ], + [ 7.5618768, 47.4300698 ], + [ 7.5618779, 47.4301214 ], + [ 7.5618335, 47.4301227 ], + [ 7.5613268, 47.4301373 ], + [ 7.5605457, 47.4301982 ], + [ 7.5604427, 47.4303325 ], + [ 7.5603413, 47.4303753 ], + [ 7.5600735, 47.4303887 ], + [ 7.5588788000000005, 47.4304068 ], + [ 7.5592505, 47.4309482 ], + [ 7.5592267, 47.4309547 ], + [ 7.5592913, 47.4310298 ], + [ 7.5594038, 47.4311606 ], + [ 7.5596148, 47.4314221 ], + [ 7.559903, 47.4316836 ], + [ 7.5601456, 47.4318636 ], + [ 7.5603353, 47.4318018 ], + [ 7.5607667, 47.4316378 ], + [ 7.5610862999999995, 47.4315297 ], + [ 7.5614213, 47.4314043 ], + [ 7.561767, 47.4312629 ], + [ 7.5620942, 47.4310978 ], + [ 7.562396, 47.4309206 ], + [ 7.5625948, 47.4307721 ], + [ 7.5626421, 47.4307097 ], + [ 7.5626794, 47.4306255 ], + [ 7.5626992, 47.430568 ], + [ 7.5627168000000005, 47.4303683 ], + [ 7.5627214, 47.4302057 ], + [ 7.5627445, 47.4301017 ], + [ 7.5628108, 47.4299631 ], + [ 7.5629729999999995, 47.4298098 ], + [ 7.5632961, 47.4295553 ], + [ 7.56345, 47.4294105 ], + [ 7.5635099, 47.4293009 ], + [ 7.5635549, 47.4292244 ], + [ 7.5635613, 47.4292119 ], + [ 7.5635661, 47.4291991 ], + [ 7.5635693, 47.4291861 ], + [ 7.5635708, 47.4291729 ], + [ 7.5635706, 47.4291597 ], + [ 7.5635688, 47.4291466 ], + [ 7.5635653, 47.4291336 ], + [ 7.5635601, 47.4291208 ], + [ 7.5635534, 47.4291084 ], + [ 7.5635451, 47.4290965 ], + [ 7.5635354, 47.4290851 ], + [ 7.5635242, 47.4290743 ], + [ 7.5635117, 47.4290641 ], + [ 7.5634087999999995, 47.4289878 ], + [ 7.5633007, 47.428882 ], + [ 7.5631862, 47.4287173 ], + [ 7.5631124, 47.4284929 ], + [ 7.5630328, 47.4281829 ], + [ 7.5629773, 47.4279262 ], + [ 7.5629544, 47.4277881 ], + [ 7.5629687, 47.427618 ], + [ 7.563002, 47.4274197 ], + [ 7.5630457, 47.4272209 ], + [ 7.5630723, 47.4270408 ], + [ 7.5630790999999995, 47.4270109 ], + [ 7.5630793, 47.4270098 ], + [ 7.5630793, 47.4270086 ], + [ 7.5630792, 47.4269262 ], + [ 7.563073, 47.4266793 ], + [ 7.5630611, 47.4265584 ], + [ 7.5630397, 47.4264876 ], + [ 7.5627802, 47.4259179 ], + [ 7.5626121, 47.4256574 ], + [ 7.5624363, 47.4253577 ], + [ 7.5623994, 47.4252716 ], + [ 7.562362, 47.4251026 ], + [ 7.5622837, 47.4246936 ], + [ 7.5622579, 47.424531 ], + [ 7.5622593, 47.4242652 ], + [ 7.5622826, 47.4241127 ], + [ 7.5623194, 47.4240006 ], + [ 7.5624163, 47.4238856 ], + [ 7.56263, 47.4236877 ], + [ 7.5627001, 47.4235696 ], + [ 7.5626975, 47.4234974 ], + [ 7.5626206, 47.4233294 ], + [ 7.5625897, 47.4232229 ], + [ 7.5625868, 47.4226345 ], + [ 7.5625308, 47.4223457 ], + [ 7.5625314, 47.4221193 ], + [ 7.5625051, 47.4218542 ], + [ 7.5624466, 47.4216124 ], + [ 7.5623616, 47.421302 ], + [ 7.5622457, 47.4208737 ], + [ 7.5621469, 47.4205939 ], + [ 7.562055, 47.4203135 ], + [ 7.5617712, 47.4195746 ], + [ 7.5615616, 47.4192008 ], + [ 7.5616921, 47.419165 ], + [ 7.5618332, 47.419133 ], + [ 7.5619771, 47.4191079 ], + [ 7.5618852, 47.418974 ], + [ 7.560916, 47.4189662 ], + [ 7.5607821, 47.4189309 ], + [ 7.5602929, 47.418802 ], + [ 7.5600732, 47.4188142 ], + [ 7.5599146, 47.418823 ], + [ 7.5597327, 47.4188331 ], + [ 7.5597338, 47.4188639 ], + [ 7.5597416, 47.4190425 ], + [ 7.559823, 47.4190954 ], + [ 7.5598827, 47.4191395 ], + [ 7.5599431, 47.4191919 ], + [ 7.5599994, 47.4192421 ], + [ 7.560043, 47.4192861 ], + [ 7.5600942, 47.4193451 ], + [ 7.5601365, 47.4194064 ], + [ 7.5601985, 47.4195003 ], + [ 7.5602788, 47.4196475 ], + [ 7.5603429, 47.4197732 ], + [ 7.5603549999999995, 47.4198035 ], + [ 7.5603648, 47.4198122 ], + [ 7.5603697, 47.4198239 ], + [ 7.5603783, 47.4198338 ], + [ 7.5603881, 47.4198432 ], + [ 7.5603991, 47.419852 ], + [ 7.5604113, 47.4198601 ], + [ 7.5604258, 47.4198667 ], + [ 7.5604356, 47.4198754 ], + [ 7.5604533, 47.4198795 ], + [ 7.560467, 47.4199035 ], + [ 7.5605366, 47.4200993 ], + [ 7.5604875, 47.4201058 ], + [ 7.5605288, 47.420245800000004 ], + [ 7.5605979, 47.4204594 ], + [ 7.5607269, 47.420818 ], + [ 7.5608273, 47.4210401 ], + [ 7.5608438, 47.4211079 ], + [ 7.5608445, 47.4211667 ], + [ 7.5608271, 47.4212323 ], + [ 7.5607856, 47.4213434 ], + [ 7.5607554, 47.4214563 ], + [ 7.5607369, 47.4215349 ], + [ 7.5607215, 47.4217483 ], + [ 7.5607006, 47.4219647 ], + [ 7.5606936000000005, 47.4221069 ], + [ 7.5606942, 47.422184 ], + [ 7.5607124, 47.4222987 ], + [ 7.560737, 47.4223762 ], + [ 7.5607835, 47.4224924 ], + [ 7.5608097, 47.4225712 ], + [ 7.5608186, 47.4226257 ], + [ 7.5608194, 47.4226704 ], + [ 7.5608061, 47.4228045 ], + [ 7.5608063, 47.4228606 ], + [ 7.5602675999999995, 47.4238802 ] + ], + [ + [ 7.5611397, 47.4214494 ], + [ 7.5613136, 47.4214402 ], + [ 7.5615986, 47.421556 ], + [ 7.5620648, 47.4220824 ], + [ 7.5620718, 47.4224149 ], + [ 7.5616468, 47.4224981 ], + [ 7.5610216999999995, 47.4226224 ], + [ 7.5609103, 47.4222576 ], + [ 7.5609235, 47.4217636 ], + [ 7.5610432, 47.4214621 ], + [ 7.5611397, 47.4214494 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns345", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Schällbächli", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Schällbächli", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Schällbächli", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Schällbächli", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.1959239, 46.4679959 ], + [ 7.1962883, 46.4678024 ], + [ 7.1963732, 46.4677645 ], + [ 7.1964374, 46.4677463 ], + [ 7.1965025, 46.4677387 ], + [ 7.1965441, 46.4677411 ], + [ 7.1966008, 46.467756 ], + [ 7.1972976, 46.4680845 ], + [ 7.1978456, 46.4684336 ], + [ 7.1980224, 46.4685319 ], + [ 7.1981135, 46.4685554 ], + [ 7.1983939, 46.4685661 ], + [ 7.1984592, 46.468576 ], + [ 7.1985167, 46.4685925 ], + [ 7.1985992, 46.4686317 ], + [ 7.1989278, 46.4688281 ], + [ 7.1990295, 46.4688798 ], + [ 7.1991202, 46.4689099 ], + [ 7.1994051, 46.4689857 ], + [ 7.199615, 46.4690533 ], + [ 7.1998686, 46.4691399 ], + [ 7.2003268, 46.4693123 ], + [ 7.2003814, 46.4693446 ], + [ 7.2004466, 46.469395 ], + [ 7.200781, 46.4697293 ], + [ 7.2009095, 46.4698314 ], + [ 7.2009819, 46.4698741 ], + [ 7.2010467, 46.4699025 ], + [ 7.2014602, 46.4700501 ], + [ 7.2015698, 46.470096 ], + [ 7.2016469, 46.4701423 ], + [ 7.201921, 46.4703303 ], + [ 7.2022611, 46.4704927 ], + [ 7.2023267, 46.4705419 ], + [ 7.2023982, 46.4706103 ], + [ 7.2026164, 46.470867 ], + [ 7.2027197, 46.4709402 ], + [ 7.2028365, 46.4710041 ], + [ 7.2029375, 46.4710414 ], + [ 7.2030263, 46.4710627 ], + [ 7.2031757, 46.4710783 ], + [ 7.2034209, 46.4711169 ], + [ 7.2036636, 46.471181 ], + [ 7.2039146, 46.4712859 ], + [ 7.204239, 46.471465 ], + [ 7.204594, 46.4717034 ], + [ 7.2050255, 46.4718761 ], + [ 7.2060959, 46.4721482 ], + [ 7.2063016, 46.4721405 ], + [ 7.2066275, 46.4720665 ], + [ 7.2067905, 46.4720075 ], + [ 7.2068986, 46.4719996 ], + [ 7.207169, 46.4720829 ], + [ 7.2075032, 46.472188 ], + [ 7.2077854, 46.472256 ], + [ 7.2086183, 46.4723477 ], + [ 7.2087797, 46.4723777 ], + [ 7.2093323, 46.4725434 ], + [ 7.2102296, 46.4727917 ], + [ 7.2115061, 46.4729814 ], + [ 7.2126526, 46.4731186 ], + [ 7.2144489, 46.4732419 ], + [ 7.2160095, 46.4730578 ], + [ 7.2168438, 46.472813 ], + [ 7.2175054, 46.4724626 ], + [ 7.2179835, 46.4720749 ], + [ 7.2186863, 46.4708556 ], + [ 7.2188736, 46.4705986 ], + [ 7.2192093, 46.4696808 ], + [ 7.2190458, 46.4692208 ], + [ 7.2191196, 46.4686812 ], + [ 7.2196273, 46.4680516 ], + [ 7.220298, 46.4676724 ], + [ 7.2209632, 46.4677025 ], + [ 7.2225006, 46.4677342 ], + [ 7.2228343, 46.4676197 ], + [ 7.2228371, 46.4669307 ], + [ 7.2225076, 46.4659819 ], + [ 7.2211389, 46.4654629 ], + [ 7.2197294, 46.4643978 ], + [ 7.2179901, 46.4631305 ], + [ 7.2179772, 46.4630963 ], + [ 7.2162097, 46.4627051 ], + [ 7.213944, 46.4619189 ], + [ 7.2115716, 46.4608356 ], + [ 7.2090704, 46.4600533 ], + [ 7.2076735, 46.459777 ], + [ 7.2070219, 46.4596479 ], + [ 7.2062404, 46.4597714 ], + [ 7.2046454, 46.4597098 ], + [ 7.2043905, 46.4594026 ], + [ 7.2040555, 46.45908 ], + [ 7.2026855, 46.4580183 ], + [ 7.2025127, 46.4578953 ], + [ 7.2022248, 46.4576356 ], + [ 7.2020216, 46.457386 ], + [ 7.2018365, 46.4574387 ], + [ 7.2016409, 46.457512 ], + [ 7.2013972, 46.4575862 ], + [ 7.2012017, 46.4576487 ], + [ 7.201095, 46.4576287 ], + [ 7.2009897, 46.4576096 ], + [ 7.2003372, 46.4574022 ], + [ 7.2000928, 46.4573351 ], + [ 7.1999707, 46.457262 ], + [ 7.2000273, 46.4571146 ], + [ 7.1997917, 46.4571267 ], + [ 7.1997336, 46.4570195 ], + [ 7.1994813, 46.4569578 ], + [ 7.1995045, 46.4567267 ], + [ 7.1995115, 46.456608 ], + [ 7.1995198, 46.4565009 ], + [ 7.1995122, 46.4564559 ], + [ 7.1994864, 46.4563992 ], + [ 7.1994136, 46.4563829 ], + [ 7.1991286, 46.4563661 ], + [ 7.1987943, 46.4563276 ], + [ 7.198575, 46.4564576 ], + [ 7.1984771, 46.4565203 ], + [ 7.1983392, 46.4565146 ], + [ 7.198087, 46.4564475 ], + [ 7.197728, 46.4563802 ], + [ 7.197231, 46.4563422 ], + [ 7.1969706, 46.4563597 ], + [ 7.1967428, 46.4563601 ], + [ 7.1964645, 46.4563037 ], + [ 7.196155, 46.4562374 ], + [ 7.1959509, 46.4561866 ], + [ 7.1957976, 46.456108 ], + [ 7.1956182, 46.4560689 ], + [ 7.1954049, 46.4560298 ], + [ 7.1951864, 46.4559906 ], + [ 7.1950068, 46.4559794 ], + [ 7.194835, 46.45598 ], + [ 7.1946566, 46.4559976 ], + [ 7.1945265, 46.4559865 ], + [ 7.1944199, 46.4559638 ], + [ 7.1942899, 46.4559302 ], + [ 7.194126, 46.4558912 ], + [ 7.1939724, 46.4559088 ], + [ 7.1938097, 46.4559085 ], + [ 7.1935727, 46.455926 ], + [ 7.1933606, 46.4559156 ], + [ 7.1932473, 46.4559208 ], + [ 7.1931741, 46.455989 ], + [ 7.1932309, 46.4560853 ], + [ 7.1932978, 46.4562708 ], + [ 7.1933462, 46.4565075 ], + [ 7.19338, 46.4568008 ], + [ 7.1934047, 46.4570887 ], + [ 7.193398, 46.4574162 ], + [ 7.1933502, 46.4576248 ], + [ 7.1932936, 46.4577722 ], + [ 7.1932284, 46.4577999 ], + [ 7.1930178, 46.4580261 ], + [ 7.1923079, 46.4578357 ], + [ 7.1922593, 46.4579372 ], + [ 7.1919822, 46.4578926 ], + [ 7.1917886, 46.458108 ], + [ 7.1918051, 46.4582088 ], + [ 7.1917563, 46.4583337 ], + [ 7.1916674, 46.4584235 ], + [ 7.1915861, 46.4585646 ], + [ 7.1915295, 46.4586832 ], + [ 7.1915291, 46.4587848 ], + [ 7.1915298, 46.4589207 ], + [ 7.1915708, 46.4590449 ], + [ 7.1915548, 46.4591465 ], + [ 7.1914582, 46.459203 ], + [ 7.191214, 46.4593725 ], + [ 7.1910516, 46.4595934 ], + [ 7.190881, 46.4598809 ], + [ 7.1906701, 46.4601692 ], + [ 7.1905492, 46.4604289 ], + [ 7.1904688, 46.4606491 ], + [ 7.1904107, 46.4608181 ], + [ 7.1903708, 46.4610051 ], + [ 7.1903792, 46.4611518 ], + [ 7.1903958, 46.4612301 ], + [ 7.1904706, 46.4613886 ], + [ 7.1905519, 46.4615345 ], + [ 7.1906086, 46.4616587 ], + [ 7.1906506, 46.4618621 ], + [ 7.1906512, 46.4620312 ], + [ 7.1906934, 46.4621888 ], + [ 7.1907501, 46.4623076 ], + [ 7.1908314, 46.4624706 ], + [ 7.1909243, 46.4626364 ], + [ 7.1910885, 46.462616 ], + [ 7.1913437, 46.4625896 ], + [ 7.1917359, 46.4625068 ], + [ 7.1923892, 46.4622806 ], + [ 7.1929832, 46.4621965 ], + [ 7.1937037, 46.4620505 ], + [ 7.1937586, 46.4622791 ], + [ 7.1939186, 46.4623055 ], + [ 7.1939155, 46.462427 ], + [ 7.1939955, 46.4625693 ], + [ 7.1940811, 46.4626576 ], + [ 7.1941588, 46.4627351 ], + [ 7.1944928, 46.4628555 ], + [ 7.194948, 46.4629447 ], + [ 7.1952568, 46.4628931 ], + [ 7.1953206, 46.462896 ], + [ 7.1953822, 46.4627936 ], + [ 7.1954552, 46.4627712 ], + [ 7.1955531, 46.4627193 ], + [ 7.1959781, 46.462865 ], + [ 7.1959732, 46.4628029 ], + [ 7.1960056, 46.4625511 ], + [ 7.1961377, 46.4624102 ], + [ 7.196269, 46.4624392 ], + [ 7.1962735, 46.4626021 ], + [ 7.1962326, 46.4627333 ], + [ 7.1963154, 46.4628351 ], + [ 7.1965552, 46.4630624 ], + [ 7.196923, 46.4631909 ], + [ 7.1971677, 46.4632175 ], + [ 7.197412, 46.4633026 ], + [ 7.1975646, 46.4635278 ], + [ 7.1976517, 46.4635505 ], + [ 7.1978482, 46.463568 ], + [ 7.1978273, 46.463881 ], + [ 7.1976322, 46.4647316 ], + [ 7.197268, 46.4655251 ], + [ 7.1967936, 46.4662176 ], + [ 7.1960999, 46.4670599 ], + [ 7.1955095, 46.4677684 ], + [ 7.1954624, 46.4681093 ], + [ 7.1955873, 46.4681203 ], + [ 7.1957007, 46.4681035 ], + [ 7.1958063, 46.468065 ], + [ 7.1959239, 46.4679959 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00016", + "country" : "CHE", + "name" : [ + { + "text" : "Pierreuse - Gummfluh", + "lang" : "de-CH" + }, + { + "text" : "Pierreuse - Gummfluh", + "lang" : "fr-CH" + }, + { + "text" : "Pierreuse - Gummfluh", + "lang" : "it-CH" + }, + { + "text" : "Pierreuse - Gummfluh", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "startDateTime" : "2024-11-15T00:00:00+01:00", + "endDateTime" : "2025-04-15T00:00:00+02:00" + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Generaldirektion für Umwelt", + "lang" : "de-CH" + }, + { + "text" : "Direction générale de l'environnement", + "lang" : "fr-CH" + }, + { + "text" : "Direzione generale dell'Ambiente", + "lang" : "it-CH" + }, + { + "text" : "Environment Department", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.dge@vd.ch", + "phone" : "0041213164422", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.616399, 46.4115361 ], + [ 8.6163906, 46.411395 ], + [ 8.6163715, 46.4112543 ], + [ 8.6163418, 46.4111145 ], + [ 8.6163016, 46.410976 ], + [ 8.6162509, 46.4108391 ], + [ 8.61619, 46.4107043 ], + [ 8.6161189, 46.4105718 ], + [ 8.6160379, 46.4104421 ], + [ 8.6159472, 46.4103155 ], + [ 8.6158471, 46.4101924 ], + [ 8.6157378, 46.410073 ], + [ 8.6156195, 46.4099578 ], + [ 8.6154928, 46.409847 ], + [ 8.6153578, 46.409741 ], + [ 8.615215, 46.4096399 ], + [ 8.6150648, 46.4095442 ], + [ 8.6149075, 46.4094541 ], + [ 8.6147436, 46.4093698 ], + [ 8.6145735, 46.4092915 ], + [ 8.6143978, 46.4092195 ], + [ 8.6142168, 46.4091539 ], + [ 8.6140312, 46.409095 ], + [ 8.6138413, 46.4090429 ], + [ 8.6136478, 46.4089978 ], + [ 8.6134511, 46.4089597 ], + [ 8.6132518, 46.4089288 ], + [ 8.6130504, 46.4089051 ], + [ 8.6128475, 46.4088887 ], + [ 8.6126437, 46.4088798 ], + [ 8.6124395, 46.4088782 ], + [ 8.6122354, 46.408884 ], + [ 8.612032, 46.4088972 ], + [ 8.6118299, 46.4089177 ], + [ 8.6116297, 46.4089455 ], + [ 8.6114318, 46.4089806 ], + [ 8.6112368, 46.4090227 ], + [ 8.6110453, 46.4090719 ], + [ 8.6108578, 46.4091279 ], + [ 8.6106748, 46.4091906 ], + [ 8.6104968, 46.4092599 ], + [ 8.6103242, 46.4093355 ], + [ 8.6101576, 46.4094172 ], + [ 8.6099974, 46.4095049 ], + [ 8.6098441, 46.4095983 ], + [ 8.6096981, 46.409697 ], + [ 8.6095597, 46.409801 ], + [ 8.6094294, 46.4099098 ], + [ 8.6093075, 46.4100231 ], + [ 8.6091943, 46.4101407 ], + [ 8.6090902, 46.4102623 ], + [ 8.6089954, 46.4103874 ], + [ 8.6089102, 46.4105159 ], + [ 8.6088349, 46.4106472 ], + [ 8.6087696, 46.4107811 ], + [ 8.6087145, 46.4109171 ], + [ 8.6086698, 46.411055 ], + [ 8.6086355, 46.4111943 ], + [ 8.6086119, 46.4113346 ], + [ 8.6085989, 46.4114756 ], + [ 8.6085966, 46.4116169 ], + [ 8.608605, 46.411758 ], + [ 8.6086241, 46.4118987 ], + [ 8.6086537, 46.4120385 ], + [ 8.608694, 46.412177 ], + [ 8.6087446, 46.4123139 ], + [ 8.6088055, 46.4124488 ], + [ 8.6088766, 46.4125812 ], + [ 8.6089576, 46.4127109 ], + [ 8.6090482, 46.4128375 ], + [ 8.6091484, 46.4129607 ], + [ 8.6092577, 46.41308 ], + [ 8.6093759, 46.4131953 ], + [ 8.6095026, 46.4133061 ], + [ 8.6096376, 46.4134121 ], + [ 8.6097804, 46.4135131 ], + [ 8.6099307, 46.4136088 ], + [ 8.610088, 46.413699 ], + [ 8.6102519, 46.4137833 ], + [ 8.6104219, 46.4138616 ], + [ 8.6105977, 46.4139336 ], + [ 8.6107786, 46.4139992 ], + [ 8.6109643, 46.4140581 ], + [ 8.6111542, 46.4141102 ], + [ 8.6113477, 46.4141554 ], + [ 8.6115444, 46.4141935 ], + [ 8.6117438, 46.4142244 ], + [ 8.6119452, 46.4142481 ], + [ 8.6121481, 46.4142644 ], + [ 8.6123519, 46.4142734 ], + [ 8.6125562, 46.414275 ], + [ 8.6127603, 46.4142691 ], + [ 8.6129637, 46.414256 ], + [ 8.6131658, 46.4142354 ], + [ 8.6133661, 46.4142076 ], + [ 8.613564, 46.4141726 ], + [ 8.6137589, 46.4141304 ], + [ 8.6139504, 46.4140813 ], + [ 8.614138, 46.4140252 ], + [ 8.614321, 46.4139625 ], + [ 8.614499, 46.4138932 ], + [ 8.6146716, 46.4138176 ], + [ 8.6148382, 46.4137359 ], + [ 8.6149984, 46.4136482 ], + [ 8.6151517, 46.4135548 ], + [ 8.6152977, 46.413456 ], + [ 8.6154361, 46.4133521 ], + [ 8.6155664, 46.4132433 ], + [ 8.6156883, 46.4131299 ], + [ 8.6158015, 46.4130123 ], + [ 8.6159056, 46.4128907 ], + [ 8.6160004, 46.4127656 ], + [ 8.6160856, 46.4126372 ], + [ 8.6161609, 46.4125058 ], + [ 8.6162262, 46.412372 ], + [ 8.6162812, 46.4122359 ], + [ 8.6163259, 46.412098 ], + [ 8.6163601, 46.4119587 ], + [ 8.6163838, 46.4118184 ], + [ 8.6163967, 46.4116774 ], + [ 8.616399, 46.4115361 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0086", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Peccia", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Peccia", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Peccia", + "lang" : "it-CH" + }, + { + "text" : "Substation Peccia", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.7136544, 47.1707051 ], + [ 8.7138592, 47.1706343 ], + [ 8.7140946, 47.1705239 ], + [ 8.7143969, 47.1704064 ], + [ 8.714673, 47.1702815 ], + [ 8.7153299, 47.1700705 ], + [ 8.7155702, 47.1699976 ], + [ 8.7164922, 47.1696601 ], + [ 8.7163408, 47.1693928 ], + [ 8.7161991, 47.1691483 ], + [ 8.7160428, 47.1691462 ], + [ 8.7159723, 47.1691502 ], + [ 8.7158801, 47.1691668 ], + [ 8.7158273, 47.1691808 ], + [ 8.7154918, 47.1692955 ], + [ 8.7154518, 47.1693104 ], + [ 8.7154148, 47.1693333 ], + [ 8.7153775, 47.1693605 ], + [ 8.715351, 47.1693873 ], + [ 8.7153357, 47.1694211 ], + [ 8.7152652, 47.169443 ], + [ 8.7135109, 47.1700581 ], + [ 8.7133559, 47.1701543 ], + [ 8.7134131, 47.170416 ], + [ 8.7136544, 47.1707051 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSXS002", + "country" : "CHE", + "name" : [ + { + "text" : "LSXS Schindellegi SZ (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSXS Schindellegi SZ (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSXS Schindellegi SZ (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSXS Schindellegi SZ (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Fuchs Helikopter", + "lang" : "de-CH" + }, + { + "text" : "Fuchs Helikopter", + "lang" : "fr-CH" + }, + { + "text" : "Fuchs Helikopter", + "lang" : "it-CH" + }, + { + "text" : "Fuchs Helikopter", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.fuchshelikopter.ch/en/", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.1088243, 46.6132972 ], + [ 7.1095266, 46.6131454 ], + [ 7.1100039, 46.6133006 ], + [ 7.1103284, 46.6123788 ], + [ 7.1101088, 46.6117849 ], + [ 7.1098669, 46.6113954 ], + [ 7.1098582, 46.6113995 ], + [ 7.1097294, 46.6111191 ], + [ 7.1096318, 46.6106341 ], + [ 7.1098011, 46.6103345 ], + [ 7.1096064, 46.6101879 ], + [ 7.1095889, 46.6101836 ], + [ 7.1090073, 46.6101528 ], + [ 7.1088289, 46.6102052 ], + [ 7.108035, 46.6101315 ], + [ 7.107863, 46.6100239 ], + [ 7.1071021, 46.6101883 ], + [ 7.1064885, 46.6098756 ], + [ 7.1061565, 46.6095191 ], + [ 7.1058807999999996, 46.6094231 ], + [ 7.1052576, 46.6096712 ], + [ 7.1046398, 46.6090505 ], + [ 7.1046351, 46.6090438 ], + [ 7.1045343, 46.6090948 ], + [ 7.1040085, 46.6092266 ], + [ 7.1033721, 46.609377 ], + [ 7.1025699, 46.609527 ], + [ 7.101879, 46.609563 ], + [ 7.1016536, 46.6098958 ], + [ 7.1016329, 46.609877 ], + [ 7.1009159, 46.6107181 ], + [ 7.1002215, 46.6115327 ], + [ 7.1000503, 46.6117335 ], + [ 7.0990256, 46.6121075 ], + [ 7.0984576, 46.6123148 ], + [ 7.0977814, 46.6125616 ], + [ 7.0954125, 46.6140704 ], + [ 7.0953735, 46.6141237 ], + [ 7.095138, 46.6142846 ], + [ 7.0952037, 46.6144925 ], + [ 7.0956297, 46.6150158 ], + [ 7.0958842, 46.6151044 ], + [ 7.0959622, 46.6153049 ], + [ 7.0960724, 46.6155883 ], + [ 7.096126, 46.6171923 ], + [ 7.0958676, 46.6177188 ], + [ 7.0962885, 46.6177505 ], + [ 7.1055342, 46.6208339 ], + [ 7.1054632, 46.6206254 ], + [ 7.1054635, 46.6205644 ], + [ 7.1054651, 46.6203178 ], + [ 7.1054666, 46.6203168 ], + [ 7.1055221, 46.6202788 ], + [ 7.1056898, 46.6201643 ], + [ 7.1058173, 46.6200772 ], + [ 7.1056118, 46.6199977 ], + [ 7.105531, 46.6199665 ], + [ 7.1055246, 46.6199106 ], + [ 7.1055171, 46.6198455 ], + [ 7.1055008, 46.6197027 ], + [ 7.1054538, 46.6195877 ], + [ 7.1053784, 46.619403 ], + [ 7.1053751, 46.6193948 ], + [ 7.1054181, 46.6192103 ], + [ 7.1055389, 46.6186922 ], + [ 7.1058273, 46.6184514 ], + [ 7.1056443, 46.6171107 ], + [ 7.1055226, 46.6161656 ], + [ 7.1056542, 46.6155069 ], + [ 7.1061672, 46.615047 ], + [ 7.107064, 46.6143905 ], + [ 7.1076099, 46.613755 ], + [ 7.1088243, 46.6132972 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "WZV0021", + "country" : "CHE", + "name" : [ + { + "text" : "Wasser- und Zugvogelreservat Lac de la Gruyère à Broc", + "lang" : "de-CH" + }, + { + "text" : "Réserve d'oiseaux d'eau et de migrateurs Lac de la Gruyère à Broc", + "lang" : "fr-CH" + }, + { + "text" : "Riserva di uccelli acquatici e migratori Lac de la Gruyère à Broc", + "lang" : "it-CH" + }, + { + "text" : "Water Bird and Migratory Bird Reserves Lac de la Gruyère à Broc", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5246839, 47.4485394 ], + [ 7.5247571, 47.4486984 ], + [ 7.5250867, 47.4494135 ], + [ 7.5251137, 47.4494721 ], + [ 7.5251937, 47.4496456 ], + [ 7.5252155, 47.4496483 ], + [ 7.5252375, 47.4496504 ], + [ 7.5252596, 47.4496519 ], + [ 7.5252818, 47.4496528 ], + [ 7.525304, 47.4496531 ], + [ 7.5253262, 47.4496527 ], + [ 7.5253484, 47.4496518 ], + [ 7.5253705, 47.4496503 ], + [ 7.5253925, 47.4496482 ], + [ 7.5254128, 47.4496467 ], + [ 7.5254332, 47.4496459 ], + [ 7.5254536, 47.4496457 ], + [ 7.5254741, 47.4496461 ], + [ 7.5254944, 47.4496472 ], + [ 7.5255147000000004, 47.449649 ], + [ 7.5255348, 47.4496514 ], + [ 7.5255548, 47.4496544 ], + [ 7.5255745, 47.4496581 ], + [ 7.5255939, 47.4496624 ], + [ 7.525613, 47.4496673 ], + [ 7.5256318, 47.4496728 ], + [ 7.5256501, 47.4496788 ], + [ 7.5256605, 47.4496823 ], + [ 7.5256703, 47.4496864 ], + [ 7.5256796999999995, 47.449691 ], + [ 7.5256884, 47.4496962 ], + [ 7.5256964, 47.4497018 ], + [ 7.5257038, 47.4497078 ], + [ 7.5257104, 47.4497142 ], + [ 7.5257142, 47.4497187 ], + [ 7.5257161, 47.449721 ], + [ 7.525721, 47.4497281 ], + [ 7.5257251, 47.4497355 ], + [ 7.5257281, 47.449743 ], + [ 7.5257303, 47.4497507 ], + [ 7.5257315, 47.4497585 ], + [ 7.5257318, 47.4497663 ], + [ 7.525731, 47.4497741 ], + [ 7.5257293, 47.4497819 ], + [ 7.5257267, 47.4497895 ], + [ 7.5257231, 47.449797 ], + [ 7.5257187, 47.4498042 ], + [ 7.5257176, 47.4498055 ], + [ 7.5257133, 47.4498111 ], + [ 7.5257071, 47.4498177 ], + [ 7.5257002, 47.449824 ], + [ 7.5256924, 47.4498298 ], + [ 7.5256239, 47.4498753 ], + [ 7.5256226, 47.4498761 ], + [ 7.5254674, 47.449979 ], + [ 7.5253403, 47.450069 ], + [ 7.5252193, 47.4501621 ], + [ 7.5252019, 47.4501758 ], + [ 7.5251851, 47.4501899 ], + [ 7.5251689, 47.4502042 ], + [ 7.5251532, 47.4502189 ], + [ 7.5251382, 47.4502338 ], + [ 7.5251239, 47.450249 ], + [ 7.5251101, 47.4502645 ], + [ 7.525097, 47.4502803 ], + [ 7.5250846, 47.4502963 ], + [ 7.5250804, 47.4503035 ], + [ 7.525077, 47.4503109 ], + [ 7.5250746, 47.4503185 ], + [ 7.5250732, 47.4503261 ], + [ 7.5250727, 47.4503339 ], + [ 7.5250731, 47.4503416 ], + [ 7.5250745, 47.4503493 ], + [ 7.5250768, 47.4503569 ], + [ 7.5250801, 47.4503643 ], + [ 7.5250842, 47.4503715 ], + [ 7.5250892, 47.4503785 ], + [ 7.5250951, 47.4503851 ], + [ 7.5251017000000004, 47.4503914 ], + [ 7.5251092, 47.4503974 ], + [ 7.5251173, 47.4504028 ], + [ 7.525126, 47.4504078 ], + [ 7.5251353, 47.450412299999996 ], + [ 7.5251451, 47.4504162 ], + [ 7.5251554, 47.4504196 ], + [ 7.5251661, 47.4504224 ], + [ 7.5251771, 47.4504245 ], + [ 7.5251955, 47.4504267 ], + [ 7.5252142, 47.4504283 ], + [ 7.5252329, 47.4504292 ], + [ 7.5252516, 47.4504296 ], + [ 7.5252703, 47.4504293 ], + [ 7.5252891, 47.4504283 ], + [ 7.5253077, 47.4504268 ], + [ 7.5253262, 47.4504246 ], + [ 7.5253445, 47.4504219 ], + [ 7.5253626, 47.4504185 ], + [ 7.5253946, 47.4504121 ], + [ 7.5254265, 47.4504052 ], + [ 7.5254581, 47.4503978 ], + [ 7.5254895, 47.4503899 ], + [ 7.5255205, 47.4503815 ], + [ 7.5255512, 47.4503725 ], + [ 7.5255816, 47.4503631 ], + [ 7.5256117, 47.4503531 ], + [ 7.5256414, 47.4503427 ], + [ 7.5258389999999995, 47.4502722 ], + [ 7.5261348, 47.4501506 ], + [ 7.5267505, 47.449928 ], + [ 7.5267726, 47.4499195 ], + [ 7.5267943, 47.4499105 ], + [ 7.5268154, 47.4499009 ], + [ 7.526836, 47.4498907 ], + [ 7.526856, 47.4498801 ], + [ 7.5268754, 47.4498689 ], + [ 7.5268912, 47.4498591 ], + [ 7.5268942, 47.4498573 ], + [ 7.5269123, 47.4498451 ], + [ 7.5269297, 47.4498326 ], + [ 7.5269465, 47.4498195 ], + [ 7.5269624, 47.4498061 ], + [ 7.5269777, 47.4497923 ], + [ 7.5269878, 47.4497827 ], + [ 7.5269986, 47.4497736 ], + [ 7.5270101, 47.4497648 ], + [ 7.5270223, 47.4497564 ], + [ 7.5270352, 47.4497485 ], + [ 7.5270486, 47.4497411 ], + [ 7.5270624999999995, 47.4497341 ], + [ 7.527077, 47.4497277 ], + [ 7.527092, 47.4497218 ], + [ 7.5271074, 47.4497164 ], + [ 7.5271232, 47.4497115 ], + [ 7.5271394, 47.4497073 ], + [ 7.5271558, 47.4497036 ], + [ 7.5271725, 47.4497005 ], + [ 7.5271895, 47.449698 ], + [ 7.5272065999999995, 47.4496961 ], + [ 7.5272238, 47.4496948 ], + [ 7.5272411, 47.4496942 ], + [ 7.5272584, 47.4496941 ], + [ 7.5275856999999995, 47.4497056 ], + [ 7.5276092, 47.4497067 ], + [ 7.5276303, 47.4497071 ], + [ 7.5276327, 47.4497071 ], + [ 7.5276347, 47.4497071 ], + [ 7.5276562, 47.449707 ], + [ 7.5276713, 47.4497065 ], + [ 7.5276689999999995, 47.4496728 ], + [ 7.5276855000000005, 47.449601 ], + [ 7.5277345, 47.4495854 ], + [ 7.527837, 47.4495664 ], + [ 7.5281217, 47.449512 ], + [ 7.5284873999999995, 47.4494248 ], + [ 7.5285583, 47.4493978 ], + [ 7.5286335, 47.4493784 ], + [ 7.5287264, 47.4493787 ], + [ 7.5293338, 47.4492527 ], + [ 7.5293247, 47.4493665 ], + [ 7.5294022, 47.4493648 ], + [ 7.5294754, 47.4493501 ], + [ 7.5295711, 47.4493168 ], + [ 7.529626, 47.4493154 ], + [ 7.5296465, 47.4492034 ], + [ 7.5299029, 47.449206 ], + [ 7.5303415000000005, 47.4491838 ], + [ 7.5308811, 47.4491526 ], + [ 7.5308821, 47.4492066 ], + [ 7.5308842, 47.4493157 ], + [ 7.5311993, 47.4492994 ], + [ 7.5313623, 47.449298 ], + [ 7.5315182, 47.4493072 ], + [ 7.531721, 47.449343 ], + [ 7.5319108, 47.4493511 ], + [ 7.5319852, 47.4493689 ], + [ 7.5320241, 47.4493781 ], + [ 7.5320264, 47.4493653 ], + [ 7.5320773, 47.4492591 ], + [ 7.5322186, 47.4491528 ], + [ 7.5325463, 47.449049 ], + [ 7.5332713, 47.4488192 ], + [ 7.5338973, 47.4488473 ], + [ 7.5341109, 47.4487649 ], + [ 7.5348218, 47.4485246 ], + [ 7.5349958, 47.4491484 ], + [ 7.5350009, 47.4491668 ], + [ 7.5350304, 47.4492725 ], + [ 7.5350311, 47.4492752 ], + [ 7.5351040000000005, 47.4495363 ], + [ 7.5351068, 47.4495416 ], + [ 7.5351424, 47.4495316 ], + [ 7.5351783, 47.4495221 ], + [ 7.5352145, 47.4495131 ], + [ 7.535251, 47.4495047 ], + [ 7.5352878, 47.4494969 ], + [ 7.5353248, 47.4494896 ], + [ 7.535362, 47.4494828 ], + [ 7.5353994, 47.4494767 ], + [ 7.5354341, 47.4494705 ], + [ 7.5354686, 47.4494637 ], + [ 7.5355028, 47.4494564 ], + [ 7.5355367, 47.4494484 ], + [ 7.5355703, 47.4494398 ], + [ 7.5356035, 47.4494306 ], + [ 7.5356364, 47.4494209 ], + [ 7.5356689, 47.4494105 ], + [ 7.5357009, 47.4493996 ], + [ 7.5357326, 47.4493881 ], + [ 7.5357638, 47.4493761 ], + [ 7.5357945, 47.4493635 ], + [ 7.5358247, 47.4493504 ], + [ 7.5358544, 47.4493367 ], + [ 7.5358835, 47.4493225 ], + [ 7.5359121, 47.4493078 ], + [ 7.5359402, 47.4492926 ], + [ 7.5359691, 47.4492743 ], + [ 7.5359986, 47.4492564 ], + [ 7.5360287, 47.449239 ], + [ 7.5360594, 47.4492221 ], + [ 7.5360906, 47.4492057 ], + [ 7.5361224, 47.4491897 ], + [ 7.5361547, 47.4491743 ], + [ 7.5364406, 47.4490523 ], + [ 7.536609, 47.448971 ], + [ 7.5368109, 47.448866 ], + [ 7.5368481, 47.4488459 ], + [ 7.5368859, 47.4488263 ], + [ 7.5369242, 47.4488071 ], + [ 7.536963, 47.4487884 ], + [ 7.5370023, 47.4487701 ], + [ 7.5370421, 47.4487523 ], + [ 7.5370823, 47.448735 ], + [ 7.5371229, 47.4487182 ], + [ 7.537164, 47.4487019 ], + [ 7.5372053, 47.4486834 ], + [ 7.537246, 47.4486645 ], + [ 7.5372863, 47.448645 ], + [ 7.537326, 47.4486251 ], + [ 7.5373652, 47.4486046 ], + [ 7.5374038, 47.4485837 ], + [ 7.5374419, 47.4485624 ], + [ 7.5374793, 47.4485405 ], + [ 7.5375034, 47.4485265 ], + [ 7.5375281, 47.448513 ], + [ 7.5375533, 47.4485 ], + [ 7.5375791, 47.4484874 ], + [ 7.5376054, 47.4484754 ], + [ 7.5376321, 47.4484639 ], + [ 7.5376594, 47.4484529 ], + [ 7.5376871, 47.4484424 ], + [ 7.5377152, 47.4484324 ], + [ 7.5377437, 47.448423 ], + [ 7.5377726, 47.4484142 ], + [ 7.5377891, 47.4484091 ], + [ 7.5378051, 47.4484034 ], + [ 7.537807, 47.4484027 ], + [ 7.5378117, 47.4484008 ], + [ 7.5378206, 47.4483972 ], + [ 7.5378357000000005, 47.4483905 ], + [ 7.5378503, 47.4483832 ], + [ 7.5378642, 47.4483755 ], + [ 7.5378776, 47.4483672 ], + [ 7.5378903, 47.4483585 ], + [ 7.5379024, 47.4483494 ], + [ 7.5379342000000005, 47.4483197 ], + [ 7.5380476, 47.4481757 ], + [ 7.5381286, 47.4480436 ], + [ 7.5383040999999995, 47.4477431 ], + [ 7.5383153, 47.4477199 ], + [ 7.5383256, 47.4476965 ], + [ 7.538335, 47.447673 ], + [ 7.5383436, 47.4476493 ], + [ 7.5383513, 47.4476254 ], + [ 7.5383581, 47.4476015 ], + [ 7.5383641, 47.4475774 ], + [ 7.538368, 47.4475585 ], + [ 7.5383396000000005, 47.4475503 ], + [ 7.5369406, 47.4471457 ], + [ 7.5368864, 47.4471316 ], + [ 7.5366155, 47.4471429 ], + [ 7.5363514, 47.447106 ], + [ 7.5363259, 47.447179 ], + [ 7.53603, 47.447585 ], + [ 7.5355308999999995, 47.4480956 ], + [ 7.5346277, 47.4482017 ], + [ 7.5338626, 47.4481623 ], + [ 7.5330783, 47.4481474 ], + [ 7.5324417, 47.4480933 ], + [ 7.5323267, 47.4480836 ], + [ 7.5323228, 47.4478514 ], + [ 7.5322502, 47.447851 ], + [ 7.5315517, 47.4478467 ], + [ 7.5315358, 47.4481036 ], + [ 7.529832, 47.4480963 ], + [ 7.5298304, 47.4480473 ], + [ 7.5298303, 47.4480421 ], + [ 7.5298005, 47.4480123 ], + [ 7.5297586, 47.4480102 ], + [ 7.5292993, 47.4480696 ], + [ 7.5289158, 47.4480793 ], + [ 7.5280278, 47.4482534 ], + [ 7.527559, 47.4482153 ], + [ 7.5268051, 47.4483071 ], + [ 7.5262439, 47.4483648 ], + [ 7.5253998, 47.448433 ], + [ 7.5253001, 47.4483597 ], + [ 7.5246839, 47.4485394 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns020", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Chlus", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Chlus", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Chlus", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Chlus", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5988712, 47.52359 ], + [ 7.5988653, 47.5234488 ], + [ 7.5988485, 47.523308 ], + [ 7.5988209, 47.523168 ], + [ 7.5987825, 47.5230292 ], + [ 7.5987334, 47.5228919 ], + [ 7.5986737, 47.5227565 ], + [ 7.5986037, 47.5226235 ], + [ 7.5985235, 47.5224931 ], + [ 7.5984334, 47.5223657 ], + [ 7.5983335, 47.5222417 ], + [ 7.5982242, 47.5221214 ], + [ 7.5981057, 47.5220052 ], + [ 7.5979784, 47.5218933 ], + [ 7.5978427, 47.521786 ], + [ 7.5976988, 47.5216838 ], + [ 7.5975472, 47.5215867 ], + [ 7.5973884, 47.5214952 ], + [ 7.5972227, 47.5214094 ], + [ 7.5970506, 47.5213297 ], + [ 7.5968726, 47.5212561 ], + [ 7.5966891, 47.5211889 ], + [ 7.5965007, 47.5211284 ], + [ 7.5963079, 47.5210746 ], + [ 7.5961112, 47.5210277 ], + [ 7.5959111, 47.5209879 ], + [ 7.5957082, 47.5209552 ], + [ 7.5955031, 47.520929699999996 ], + [ 7.5952963, 47.5209115 ], + [ 7.5950884, 47.5209007 ], + [ 7.5948799000000005, 47.5208973 ], + [ 7.5946715000000005, 47.5209013 ], + [ 7.5944636, 47.5209127 ], + [ 7.5942568999999995, 47.5209314 ], + [ 7.5940519, 47.5209574 ], + [ 7.5938493000000005, 47.5209906 ], + [ 7.5936494, 47.521031 ], + [ 7.593453, 47.5210784 ], + [ 7.5932604999999995, 47.5211327 ], + [ 7.5930724, 47.5211938 ], + [ 7.5928894, 47.5212615 ], + [ 7.5927118, 47.5213355 ], + [ 7.5925401, 47.5214157 ], + [ 7.5923749, 47.521502 ], + [ 7.5922166, 47.5215939 ], + [ 7.5920656, 47.5216913 ], + [ 7.5919224, 47.521794 ], + [ 7.5917873, 47.5219016 ], + [ 7.5916606, 47.5220138 ], + [ 7.5915429, 47.5221304 ], + [ 7.5914342, 47.522251 ], + [ 7.5913351, 47.5223752 ], + [ 7.5912457, 47.5225029 ], + [ 7.5911663, 47.5226335 ], + [ 7.5910969999999995, 47.5227667 ], + [ 7.5910382, 47.5229022 ], + [ 7.5909899, 47.5230397 ], + [ 7.5909523, 47.5231786 ], + [ 7.5909255, 47.5233187 ], + [ 7.5909095, 47.5234595 ], + [ 7.5909045, 47.5236007 ], + [ 7.5909103, 47.523742 ], + [ 7.5909271, 47.5238828 ], + [ 7.5909547, 47.5240228 ], + [ 7.5909931, 47.5241616 ], + [ 7.5910422, 47.5242989 ], + [ 7.5911018, 47.5244343 ], + [ 7.5911718, 47.5245673 ], + [ 7.591252, 47.5246977 ], + [ 7.5913421, 47.5248251 ], + [ 7.591442, 47.5249491 ], + [ 7.5915513, 47.5250694 ], + [ 7.5916698, 47.5251857 ], + [ 7.5917971, 47.5252976 ], + [ 7.5919328, 47.5254048 ], + [ 7.5920767, 47.5255071 ], + [ 7.5922282, 47.5256041 ], + [ 7.5923871, 47.5256957 ], + [ 7.5925528, 47.5257814 ], + [ 7.5927249, 47.5258612 ], + [ 7.5929029, 47.5259348 ], + [ 7.5930864, 47.526002 ], + [ 7.5932748, 47.5260625 ], + [ 7.5934676, 47.5261163 ], + [ 7.5936644, 47.5261632 ], + [ 7.5938644, 47.5262031 ], + [ 7.5940673, 47.5262358 ], + [ 7.5942725, 47.5262612 ], + [ 7.5944793, 47.5262794 ], + [ 7.5946872, 47.5262902 ], + [ 7.5948957, 47.5262936 ], + [ 7.5951042, 47.5262896 ], + [ 7.5953121, 47.5262783 ], + [ 7.5955188, 47.5262596 ], + [ 7.5957238, 47.526233500000004 ], + [ 7.5959265, 47.5262003 ], + [ 7.5961263, 47.5261599 ], + [ 7.5963228, 47.526112499999996 ], + [ 7.5965153, 47.5260582 ], + [ 7.5967033, 47.5259971 ], + [ 7.5968864, 47.5259294 ], + [ 7.597064, 47.5258554 ], + [ 7.5972357, 47.5257751 ], + [ 7.5974009, 47.5256889 ], + [ 7.5975592, 47.525597 ], + [ 7.5977102, 47.5254995 ], + [ 7.5978534, 47.5253969 ], + [ 7.5979885, 47.5252893 ], + [ 7.5981152, 47.525177 ], + [ 7.5982329, 47.5250604 ], + [ 7.5983415, 47.5249399 ], + [ 7.5984407, 47.5248156 ], + [ 7.5985301, 47.524688 ], + [ 7.5986095, 47.5245573 ], + [ 7.5986787, 47.5244241 ], + [ 7.5987376, 47.5242886 ], + [ 7.5987858, 47.5241511 ], + [ 7.5988234, 47.5240122 ], + [ 7.5988502, 47.5238721 ], + [ 7.5988662, 47.5237313 ], + [ 7.5988712, 47.52359 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VZK0001", + "country" : "CHE", + "name" : [ + { + "text" : "Vollzugszentrum Klosterfiechten", + "lang" : "de-CH" + }, + { + "text" : "Vollzugszentrum Klosterfiechten", + "lang" : "fr-CH" + }, + { + "text" : "Vollzugszentrum Klosterfiechten", + "lang" : "it-CH" + }, + { + "text" : "Vollzugszentrum Klosterfiechten", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Vollzugszentrum Klosterfiechten", + "lang" : "de-CH" + }, + { + "text" : "Vollzugszentrum Klosterfiechten", + "lang" : "fr-CH" + }, + { + "text" : "Vollzugszentrum Klosterfiechten", + "lang" : "it-CH" + }, + { + "text" : "Vollzugszentrum Klosterfiechten", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Co-Leitung", + "lang" : "de-CH" + }, + { + "text" : "Co-Leitung", + "lang" : "fr-CH" + }, + { + "text" : "Co-Leitung", + "lang" : "it-CH" + }, + { + "text" : "Co-Leitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Daniel Beyeler", + "lang" : "de-CH" + }, + { + "text" : "Daniel Beyeler", + "lang" : "fr-CH" + }, + { + "text" : "Daniel Beyeler", + "lang" : "it-CH" + }, + { + "text" : "Daniel Beyeler", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.bdm.bs.ch/Ueber-uns/Organisation/Amt-fuer-Justizvollzug/vollzugszentrum-klosterfiechten.html", + "email" : "daniel.beyeler@jsd.bs.ch", + "phone" : "0041613657575", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8345344, 47.3750375 ], + [ 7.8345792, 47.3750944 ], + [ 7.8349606, 47.3752674 ], + [ 7.8353421, 47.3754626 ], + [ 7.8354308, 47.3754766 ], + [ 7.8355005, 47.3754352 ], + [ 7.8355024, 47.3753908 ], + [ 7.8351651, 47.3751859 ], + [ 7.8347884, 47.3750097 ], + [ 7.8346179, 47.3749833 ], + [ 7.8345344, 47.3750375 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns198", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Hecken-Komplex Schmutzberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Hecken-Komplex Schmutzberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Hecken-Komplex Schmutzberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Hecken-Komplex Schmutzberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7355615, 47.3933685 ], + [ 7.7355205, 47.3933562 ], + [ 7.7354799, 47.3933435 ], + [ 7.7353296, 47.3932955 ], + [ 7.7352942, 47.3932844 ], + [ 7.7352584, 47.393274 ], + [ 7.7352223, 47.3932642 ], + [ 7.7351859, 47.393255 ], + [ 7.7351491, 47.3932463 ], + [ 7.735112, 47.3932383 ], + [ 7.7350746, 47.393231 ], + [ 7.735037, 47.3932242 ], + [ 7.7349992, 47.3932181 ], + [ 7.7349611, 47.3932126 ], + [ 7.7349229, 47.3932077 ], + [ 7.7348845, 47.3932035 ], + [ 7.7348459, 47.3931999 ], + [ 7.7348072, 47.3931969 ], + [ 7.7347684999999995, 47.3931946 ], + [ 7.7347297, 47.393193 ], + [ 7.7346908, 47.3931919 ], + [ 7.7346519, 47.3931916 ], + [ 7.7346129999999995, 47.3931918 ], + [ 7.7345741, 47.3931928 ], + [ 7.7343106, 47.3932012 ], + [ 7.7342421, 47.3932038 ], + [ 7.7341738, 47.3932069 ], + [ 7.7341055, 47.3932106 ], + [ 7.7340373, 47.393215 ], + [ 7.7339690999999995, 47.3932199 ], + [ 7.7339011, 47.3932255 ], + [ 7.7338952, 47.393226 ], + [ 7.7338332, 47.3932317 ], + [ 7.7337708, 47.3932379 ], + [ 7.7337085, 47.3932447 ], + [ 7.7336463, 47.393252 ], + [ 7.7335843, 47.3932598 ], + [ 7.7335225, 47.3932681 ], + [ 7.7334607, 47.3932769 ], + [ 7.7333992, 47.3932862 ], + [ 7.7330116, 47.3933441 ], + [ 7.7329608, 47.3933515 ], + [ 7.7329099, 47.3933586 ], + [ 7.7328589, 47.3933653 ], + [ 7.7328078, 47.3933718 ], + [ 7.7325403, 47.3934046 ], + [ 7.7314419999999995, 47.3935419 ], + [ 7.7310298, 47.3935999 ], + [ 7.7308689, 47.3939064 ], + [ 7.7307266, 47.3941588 ], + [ 7.7306127, 47.3943822 ], + [ 7.7305029, 47.3949144 ], + [ 7.7305274, 47.3949427 ], + [ 7.7306954999999995, 47.3951285 ], + [ 7.730817, 47.3953066 ], + [ 7.7309351, 47.3954826 ], + [ 7.7313086, 47.3955005 ], + [ 7.7316479000000005, 47.3955178 ], + [ 7.7318784, 47.3955109 ], + [ 7.7321738, 47.39541 ], + [ 7.7325939, 47.3953354 ], + [ 7.7330137, 47.3952691 ], + [ 7.7333903, 47.3952244 ], + [ 7.7341153, 47.3950438 ], + [ 7.7342096, 47.3950195 ], + [ 7.7345486999999995, 47.3948963 ], + [ 7.7348662, 47.3947838 ], + [ 7.7351539, 47.3946954 ], + [ 7.7353727, 47.39462 ], + [ 7.7355542, 47.3945601 ], + [ 7.7358493, 47.39446 ], + [ 7.7362265, 47.3942678 ], + [ 7.7364817, 47.394129 ], + [ 7.7365185, 47.3941045 ], + [ 7.7364766, 47.3940823 ], + [ 7.7362628, 47.3939691 ], + [ 7.7361537, 47.3939112 ], + [ 7.7363824999999995, 47.3935705 ], + [ 7.7360866, 47.3934953 ], + [ 7.7357705, 47.3934227 ], + [ 7.7357282, 47.3934128 ], + [ 7.7356862, 47.3934024 ], + [ 7.7356443, 47.3933916 ], + [ 7.7356028, 47.3933802 ], + [ 7.7355615, 47.3933685 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns334", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Leisenberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Leisenberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Leisenberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Leisenberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.5114906, 46.3365985 ], + [ 9.5114992, 46.3366141 ], + [ 9.5115822, 46.3367431 ], + [ 9.5116749, 46.336869 ], + [ 9.5117769, 46.3369914 ], + [ 9.5118881, 46.3371098 ], + [ 9.512008, 46.3372241 ], + [ 9.5121364, 46.3373339 ], + [ 9.5122729, 46.3374389 ], + [ 9.5124172, 46.3375387 ], + [ 9.5125689, 46.3376333 ], + [ 9.5127274, 46.3377221 ], + [ 9.5128925, 46.3378052 ], + [ 9.5130636, 46.3378821 ], + [ 9.5132403, 46.3379527 ], + [ 9.5134221, 46.3380168 ], + [ 9.5136084, 46.3380742 ], + [ 9.5137989, 46.3381248 ], + [ 9.5139929, 46.3381685 ], + [ 9.51419, 46.338205 ], + [ 9.5143895, 46.3382343 ], + [ 9.514591, 46.3382564 ], + [ 9.5147939, 46.3382711 ], + [ 9.5149976, 46.3382785 ], + [ 9.5152016, 46.3382784 ], + [ 9.5154053, 46.338271 ], + [ 9.515608199999999, 46.338256200000004 ], + [ 9.5158096, 46.338234 ], + [ 9.5160092, 46.3382046 ], + [ 9.5162062, 46.338168 ], + [ 9.5164002, 46.3381243 ], + [ 9.5165906, 46.3380736 ], + [ 9.5167769, 46.3380161 ], + [ 9.5169586, 46.3379519 ], + [ 9.5171353, 46.3378813 ], + [ 9.5173063, 46.3378043 ], + [ 9.5174713, 46.3377212 ], + [ 9.5176298, 46.3376322 ], + [ 9.5177813, 46.3375377 ], + [ 9.5179255, 46.3374377 ], + [ 9.518062, 46.3373327 ], + [ 9.5181903, 46.3372229 ], + [ 9.5183101, 46.3371085 ], + [ 9.5184212, 46.33699 ], + [ 9.5185231, 46.3368676 ], + [ 9.5186157, 46.3367417 ], + [ 9.5186986, 46.3366126 ], + [ 9.5187716, 46.3364807 ], + [ 9.5188346, 46.3363463 ], + [ 9.5188873, 46.3362098 ], + [ 9.5189296, 46.3360716 ], + [ 9.5189615, 46.3359321 ], + [ 9.5189827, 46.3357916 ], + [ 9.5189933, 46.3356505 ], + [ 9.5189933, 46.3355092 ], + [ 9.5189825, 46.3353681 ], + [ 9.5189611, 46.3352276 ], + [ 9.5189292, 46.335088 ], + [ 9.5188867, 46.3349498 ], + [ 9.5188338, 46.3348134 ], + [ 9.5187707, 46.334679 ], + [ 9.5186976, 46.3345471 ], + [ 9.5186145, 46.3344181 ], + [ 9.5185219, 46.3342922 ], + [ 9.5184198, 46.3341699 ], + [ 9.5183087, 46.3340514 ], + [ 9.5181887, 46.3339371 ], + [ 9.5180603, 46.3338274 ], + [ 9.5179238, 46.3337224 ], + [ 9.5177795, 46.3336225 ], + [ 9.5176279, 46.333528 ], + [ 9.5174693, 46.3334391 ], + [ 9.5173043, 46.3333561 ], + [ 9.5171332, 46.3332792 ], + [ 9.5169565, 46.3332086 ], + [ 9.5167747, 46.3331445 ], + [ 9.5165883, 46.3330871 ], + [ 9.5163979, 46.3330365 ], + [ 9.5162039, 46.3329929 ], + [ 9.5160069, 46.3329563 ], + [ 9.5158073, 46.332927 ], + [ 9.5156058, 46.332905 ], + [ 9.515403, 46.3328902 ], + [ 9.5151993, 46.3328829 ], + [ 9.5149953, 46.3328829 ], + [ 9.5147916, 46.3328904 ], + [ 9.5145888, 46.3329052 ], + [ 9.5143873, 46.3329273 ], + [ 9.5141878, 46.3329567 ], + [ 9.5139908, 46.3329933 ], + [ 9.5137969, 46.333037 ], + [ 9.5136065, 46.3330877 ], + [ 9.5135771, 46.3330967 ], + [ 9.5135383, 46.3331299 ], + [ 9.5135339, 46.3331803 ], + [ 9.513565700000001, 46.3333831 ], + [ 9.5135028, 46.3338463 ], + [ 9.5135208, 46.334177 ], + [ 9.5135737, 46.334315 ], + [ 9.5135903, 46.3345536 ], + [ 9.513829, 46.3353116 ], + [ 9.5138119, 46.335468 ], + [ 9.513781, 46.3355314 ], + [ 9.5133572, 46.3355996 ], + [ 9.5130589, 46.3356565 ], + [ 9.512666, 46.335828 ], + [ 9.5126067, 46.3358968 ], + [ 9.5123279, 46.3360539 ], + [ 9.5121544, 46.3363552 ], + [ 9.5116209, 46.3365031 ], + [ 9.5114906, 46.3365985 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0022", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Castasegna", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Castasegna", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Castasegna", + "lang" : "it-CH" + }, + { + "text" : "Substation Castasegna", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.666128, 47.4968724 ], + [ 7.6666274, 47.4974991 ], + [ 7.6668861, 47.4978698 ], + [ 7.6672308000000005, 47.498362 ], + [ 7.6673282, 47.4988709 ], + [ 7.6673741, 47.4996154 ], + [ 7.6674261, 47.4997652 ], + [ 7.6679564, 47.4995194 ], + [ 7.6686926, 47.4992928 ], + [ 7.6694184, 47.4990592 ], + [ 7.6699058, 47.4989315 ], + [ 7.6703168, 47.4988106 ], + [ 7.6700821, 47.4986537 ], + [ 7.6697302, 47.4984183 ], + [ 7.6697283, 47.4984171 ], + [ 7.6695665, 47.4983105 ], + [ 7.6687433, 47.4977661 ], + [ 7.6680682000000004, 47.4974811 ], + [ 7.6674175, 47.4972065 ], + [ 7.666128, 47.4968724 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr058", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Ebnethölzli", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Ebnethölzli", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Ebnethölzli", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Ebnethölzli", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.0286688, 47.0326582 ], + [ 7.0286623, 47.0328267 ], + [ 7.0287034, 47.0332437 ], + [ 7.0287339, 47.0335572 ], + [ 7.0287348, 47.0335659 ], + [ 7.0287482, 47.0336866 ], + [ 7.0287959, 47.0338676 ], + [ 7.028878, 47.0340069 ], + [ 7.0300758, 47.0337624 ], + [ 7.0340915, 47.0339198 ], + [ 7.0341368, 47.0337862 ], + [ 7.0341474999999996, 47.0336709 ], + [ 7.0341883, 47.0332295 ], + [ 7.0342162, 47.0329285 ], + [ 7.0342217, 47.0328688 ], + [ 7.0342544, 47.0325155 ], + [ 7.034276, 47.032282 ], + [ 7.0342668, 47.0321047 ], + [ 7.0342068, 47.0319321 ], + [ 7.0340985, 47.0317709 ], + [ 7.033946, 47.0316273 ], + [ 7.0337552, 47.031507 ], + [ 7.0335336, 47.0314147 ], + [ 7.0333938, 47.0313798 ], + [ 7.0294263, 47.0313206 ], + [ 7.0291824, 47.0314288 ], + [ 7.0290091, 47.031549 ], + [ 7.0288716, 47.0316892 ], + [ 7.0287748, 47.0318445 ], + [ 7.0287222, 47.0320094 ], + [ 7.0287155, 47.0321781 ], + [ 7.0287386, 47.0324132 ], + [ 7.0287431, 47.0324584 ], + [ 7.0287213, 47.0324934 ], + [ 7.0286688, 47.0326582 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "NE13", + "country" : "CHE", + "name" : [ + { + "text" : "VITOGAZ SWITZERLAND AG", + "lang" : "de-CH" + }, + { + "text" : "VITOGAZ SWITZERLAND AG", + "lang" : "fr-CH" + }, + { + "text" : "VITOGAZ SWITZERLAND AG", + "lang" : "it-CH" + }, + { + "text" : "VITOGAZ SWITZERLAND AG", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "regulationExemption" : "YES", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Police Neuchâteloise", + "lang" : "de-CH" + }, + { + "text" : "Police Neuchâteloise", + "lang" : "fr-CH" + }, + { + "text" : "Police Neuchâteloise", + "lang" : "it-CH" + }, + { + "text" : "Police Neuchâteloise", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "PN - Rens et opérations", + "lang" : "de-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "fr-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "it-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "PN - Rens et opérations", + "lang" : "de-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "fr-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "it-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ne.ch/autorites/DESC/PONE/Pages/Drones.aspx", + "email" : "Police.Neuchateloise@ne.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.2611472, 46.4083788 ], + [ 6.261259, 46.4081956 ], + [ 6.2608687, 46.4078783 ], + [ 6.2607684, 46.4076753 ], + [ 6.2610448, 46.4075109 ], + [ 6.2603535, 46.406943 ], + [ 6.2603292, 46.4069223 ], + [ 6.2606189, 46.4068224 ], + [ 6.2603497, 46.4066278 ], + [ 6.2596866, 46.406148 ], + [ 6.2590977, 46.4055518 ], + [ 6.2589245, 46.4056439 ], + [ 6.2586215, 46.4053585 ], + [ 6.258399, 46.4055075 ], + [ 6.2582213, 46.4053598 ], + [ 6.2579842, 46.4054867 ], + [ 6.2560362, 46.4038851 ], + [ 6.2556673, 46.4041502 ], + [ 6.2551721, 46.4045062 ], + [ 6.2564076, 46.4055329 ], + [ 6.2559752, 46.4057838 ], + [ 6.2568593, 46.4067544 ], + [ 6.2572427, 46.4071844 ], + [ 6.2573678, 46.4072498 ], + [ 6.257776, 46.4072383 ], + [ 6.2585491, 46.4077428 ], + [ 6.2596416, 46.4084548 ], + [ 6.2604674, 46.4089915 ], + [ 6.2605508, 46.4089853 ], + [ 6.2608429, 46.4087005 ], + [ 6.2611472, 46.4083788 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSGP002", + "country" : "CHE", + "name" : [ + { + "text" : "LSGP La Côte (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSGP La Côte (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSGP La Côte (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSGP La Côte (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Aérodrome de la Côte", + "lang" : "de-CH" + }, + { + "text" : "Aérodrome de la Côte", + "lang" : "fr-CH" + }, + { + "text" : "Aérodrome de la Côte", + "lang" : "it-CH" + }, + { + "text" : "Aérodrome de la Côte", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Chef d'aérodrome", + "lang" : "de-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "fr-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "it-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Marc Kleiner", + "lang" : "de-CH" + }, + { + "text" : "Marc Kleiner", + "lang" : "fr-CH" + }, + { + "text" : "Marc Kleiner", + "lang" : "it-CH" + }, + { + "text" : "Marc Kleiner", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.lsgp.ch/", + "email" : "info@lsgp.ch", + "phone" : "0041223630990", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.6082372, 46.7590333 ], + [ 6.608392, 46.7591347 ], + [ 6.6083809, 46.7591535 ], + [ 6.6083118, 46.759268 ], + [ 6.6082921, 46.7595233 ], + [ 6.6079141, 46.7600136 ], + [ 6.6124301, 46.7629426 ], + [ 6.6124259, 46.7629457 ], + [ 6.6168218, 46.7657737 ], + [ 6.6184881, 46.7645603 ], + [ 6.6184876, 46.76456 ], + [ 6.6185437, 46.7645191 ], + [ 6.6090835, 46.758409 ], + [ 6.6090209, 46.7584543 ], + [ 6.6090204, 46.758454 ], + [ 6.6089735, 46.7584887 ], + [ 6.6087948, 46.7586181 ], + [ 6.6033043, 46.7550861 ], + [ 6.602772, 46.7554816 ], + [ 6.6082555, 46.759019 ], + [ 6.6082372, 46.7590333 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSGY002", + "country" : "CHE", + "name" : [ + { + "text" : "LSGY Yverdon-les-Bains (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSGY Yverdon-les-Bains (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSGY Yverdon-les-Bains (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSGY Yverdon-les-Bains (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Air-Club Yverdon /Aérodrome Yverdon-les Bains", + "lang" : "de-CH" + }, + { + "text" : "Air-Club Yverdon /Aérodrome Yverdon-les Bains", + "lang" : "fr-CH" + }, + { + "text" : "Air-Club Yverdon /Aérodrome Yverdon-les Bains", + "lang" : "it-CH" + }, + { + "text" : "Air-Club Yverdon /Aérodrome Yverdon-les Bains", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Chef d'aérodrome", + "lang" : "de-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "fr-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "it-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "en-GB" + } + ], + "siteURL" : "https://airport.lsgy.ch/vol-de-drone-ballons-ou-lanternes", + "email" : "admin@air-club-yverdon.ch", + "phone" : "0041244252724", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P02DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.674703, 47.4852688 ], + [ 7.6746838, 47.4856461 ], + [ 7.6746833, 47.4856537 ], + [ 7.6746821, 47.4856635 ], + [ 7.6746372, 47.4859693 ], + [ 7.6746361, 47.4860778 ], + [ 7.6746446, 47.4861604 ], + [ 7.6746548, 47.4862195 ], + [ 7.6746647, 47.4862657 ], + [ 7.6746736, 47.4862907 ], + [ 7.6746792, 47.4863018 ], + [ 7.6747031, 47.486335 ], + [ 7.6747301, 47.4863675 ], + [ 7.6747568, 47.4863899 ], + [ 7.6747775, 47.4864052 ], + [ 7.6748124, 47.4864223 ], + [ 7.6748823999999995, 47.486455 ], + [ 7.6750039999999995, 47.4865054 ], + [ 7.6750101, 47.486508 ], + [ 7.6751652, 47.4865749 ], + [ 7.675168, 47.4865761 ], + [ 7.6753198, 47.4866427 ], + [ 7.6753235, 47.4866444 ], + [ 7.6753335, 47.486649 ], + [ 7.6753504, 47.4866571 ], + [ 7.6753617, 47.4866628 ], + [ 7.6753629, 47.4866634 ], + [ 7.6754668, 47.4867175 ], + [ 7.6754846, 47.4867273 ], + [ 7.675623, 47.4868084 ], + [ 7.6756242, 47.4868091 ], + [ 7.6756432, 47.4868212 ], + [ 7.6756466, 47.4868235 ], + [ 7.6758033999999995, 47.4869317 ], + [ 7.6758134, 47.4869389 ], + [ 7.6758313000000005, 47.4869521 ], + [ 7.6758357, 47.4869554 ], + [ 7.6758424, 47.4869608 ], + [ 7.6759833, 47.4870748 ], + [ 7.6759931, 47.4870831 ], + [ 7.6759977, 47.4870872 ], + [ 7.6761178999999995, 47.487197 ], + [ 7.6761205, 47.4871992 ], + [ 7.6762624, 47.4873067 ], + [ 7.6764292, 47.4874249 ], + [ 7.6764393, 47.4874324 ], + [ 7.6764564, 47.4874454 ], + [ 7.676457, 47.4874459 ], + [ 7.6764668, 47.4874537 ], + [ 7.6765635, 47.487534 ], + [ 7.6765704, 47.4875398 ], + [ 7.6765741, 47.4875431 ], + [ 7.676587, 47.4875549 ], + [ 7.6765986, 47.4875659 ], + [ 7.6766889, 47.4876569 ], + [ 7.6767027, 47.4876719 ], + [ 7.6767044, 47.4876739 ], + [ 7.6769015, 47.4879082 ], + [ 7.6769874, 47.488003 ], + [ 7.6769883, 47.4880039 ], + [ 7.6769954, 47.4880104 ], + [ 7.6770181, 47.488031 ], + [ 7.6770371, 47.488042 ], + [ 7.6770886, 47.4880637 ], + [ 7.6772196, 47.488103 ], + [ 7.6772232, 47.4881041 ], + [ 7.677996, 47.488342 ], + [ 7.6780063, 47.4883453 ], + [ 7.6780293, 47.4883536 ], + [ 7.6780369, 47.4883566 ], + [ 7.6780574, 47.488365 ], + [ 7.6780719, 47.4883712 ], + [ 7.6780925, 47.4883811 ], + [ 7.6784426, 47.4885612 ], + [ 7.6784388, 47.4885502 ], + [ 7.6784344, 47.4885328 ], + [ 7.6784318, 47.4885152 ], + [ 7.6784309, 47.4884975 ], + [ 7.6784316, 47.4884799 ], + [ 7.6784341, 47.4884623 ], + [ 7.6784383, 47.4884449 ], + [ 7.6784441, 47.4884277 ], + [ 7.6784516, 47.4884108 ], + [ 7.6784607, 47.4883942 ], + [ 7.6784714, 47.4883781 ], + [ 7.6784836, 47.4883625 ], + [ 7.6784875, 47.488358 ], + [ 7.6785033, 47.4883401 ], + [ 7.6785131, 47.4883296 ], + [ 7.6785282, 47.4883152 ], + [ 7.6785447, 47.4883015 ], + [ 7.6785625, 47.4882886 ], + [ 7.6785814, 47.4882765 ], + [ 7.6786015, 47.4882652 ], + [ 7.6786226, 47.4882549 ], + [ 7.6786446999999995, 47.4882455 ], + [ 7.6786469, 47.4882447 ], + [ 7.678676, 47.4882333 ], + [ 7.6786968, 47.4882258 ], + [ 7.6787205, 47.4882185 ], + [ 7.6787448, 47.4882122 ], + [ 7.6787607, 47.4882088 ], + [ 7.6787782, 47.4882053 ], + [ 7.6787872, 47.4882035 ], + [ 7.6788126, 47.4881995 ], + [ 7.6788137, 47.4881993 ], + [ 7.6794587, 47.4881122 ], + [ 7.6798934, 47.4880248 ], + [ 7.6800239, 47.4879828 ], + [ 7.6801322, 47.4879479 ], + [ 7.6793218, 47.4878215 ], + [ 7.6786397, 47.4875495 ], + [ 7.6786357, 47.4875488 ], + [ 7.6786225, 47.4875466 ], + [ 7.6786116, 47.4875448 ], + [ 7.6786083, 47.4875443 ], + [ 7.6785955, 47.4875422 ], + [ 7.6785737, 47.4875386 ], + [ 7.678532, 47.4875324 ], + [ 7.6785253, 47.4875314 ], + [ 7.6784987000000005, 47.4875271 ], + [ 7.678496, 47.4875266 ], + [ 7.6784564, 47.48752 ], + [ 7.6784343, 47.4875164 ], + [ 7.6783926000000005, 47.4875102 ], + [ 7.6783859, 47.4875092 ], + [ 7.6783593, 47.4875049 ], + [ 7.6783566, 47.4875044 ], + [ 7.6783167, 47.4874978 ], + [ 7.678295, 47.4874943 ], + [ 7.6782534, 47.487488 ], + [ 7.6782468, 47.487487 ], + [ 7.6782202, 47.4874828 ], + [ 7.6782164999999996, 47.4874821 ], + [ 7.6782034, 47.4874799 ], + [ 7.6781927, 47.4874782 ], + [ 7.678189, 47.4874776 ], + [ 7.678176, 47.4874754 ], + [ 7.6781656, 47.4874737 ], + [ 7.6781617, 47.487473 ], + [ 7.6781485, 47.4874708 ], + [ 7.6781378, 47.487469 ], + [ 7.6781331999999995, 47.4874682 ], + [ 7.6781068, 47.4874636 ], + [ 7.6781042, 47.4874631 ], + [ 7.6781003, 47.4874624 ], + [ 7.6780901, 47.4874605 ], + [ 7.678087, 47.4874599 ], + [ 7.6780653999999995, 47.4874557 ], + [ 7.6780562, 47.4874541 ], + [ 7.6780512, 47.4874532 ], + [ 7.6780226, 47.4874476 ], + [ 7.6780133, 47.487446 ], + [ 7.6780111, 47.4874456 ], + [ 7.6779847, 47.4874409 ], + [ 7.677977, 47.4874395 ], + [ 7.6779668999999995, 47.4874375 ], + [ 7.6779614, 47.4874364 ], + [ 7.6779573, 47.4874356 ], + [ 7.677956, 47.4874353 ], + [ 7.6779501, 47.4874341 ], + [ 7.6779453, 47.4874331 ], + [ 7.6779312, 47.48743 ], + [ 7.6779269, 47.487429 ], + [ 7.6779111, 47.4874255 ], + [ 7.6779097, 47.4874252 ], + [ 7.6779069, 47.4874245 ], + [ 7.677897, 47.4874222 ], + [ 7.677893, 47.4874213 ], + [ 7.6778831, 47.4874189 ], + [ 7.6778773000000005, 47.4874175 ], + [ 7.6778508, 47.4874107 ], + [ 7.6778267, 47.4874048 ], + [ 7.6778244, 47.4874042 ], + [ 7.6777996, 47.4873979 ], + [ 7.6777769, 47.4873924 ], + [ 7.6777745, 47.4873919 ], + [ 7.6777606, 47.4873884 ], + [ 7.6777539, 47.4873868 ], + [ 7.6777442, 47.4873842 ], + [ 7.677736, 47.487382 ], + [ 7.6777235, 47.4873786 ], + [ 7.6777228, 47.4873784 ], + [ 7.6777153, 47.4873762 ], + [ 7.6776976999999995, 47.487371 ], + [ 7.6776945, 47.4873701 ], + [ 7.6776754, 47.4873643 ], + [ 7.6776721, 47.4873633 ], + [ 7.6776651000000005, 47.4873611 ], + [ 7.6776376, 47.4873527 ], + [ 7.6776353, 47.487352 ], + [ 7.6776286, 47.48735 ], + [ 7.6776012, 47.4873416 ], + [ 7.6775995, 47.4873411 ], + [ 7.6775793, 47.4873349 ], + [ 7.6775772, 47.4873342 ], + [ 7.677561, 47.4873291 ], + [ 7.6775558, 47.4873275 ], + [ 7.6775519, 47.4873262 ], + [ 7.6775506, 47.4873258 ], + [ 7.6775412, 47.4873227 ], + [ 7.6775395, 47.4873222 ], + [ 7.6775366, 47.4873212 ], + [ 7.6775233, 47.4873167 ], + [ 7.6775179, 47.4873148 ], + [ 7.6775047, 47.4873102 ], + [ 7.6774982, 47.487307799999996 ], + [ 7.6774886, 47.4873043 ], + [ 7.677472, 47.4872983 ], + [ 7.6774701, 47.4872977 ], + [ 7.677457, 47.4872929 ], + [ 7.6774514, 47.4872908 ], + [ 7.6774411, 47.4872869 ], + [ 7.6774238, 47.4872805 ], + [ 7.677418, 47.4872783 ], + [ 7.6774076, 47.4872743 ], + [ 7.6773986, 47.4872709 ], + [ 7.6773948, 47.4872694 ], + [ 7.6773795, 47.4872638 ], + [ 7.6773765, 47.4872627 ], + [ 7.6773634, 47.4872579 ], + [ 7.6773572, 47.4872555 ], + [ 7.6773562, 47.4872551 ], + [ 7.6773524, 47.4872536 ], + [ 7.6773471, 47.4872515 ], + [ 7.6773343, 47.4872463 ], + [ 7.677326, 47.4872429 ], + [ 7.6773211, 47.4872408 ], + [ 7.6773153, 47.4872382 ], + [ 7.6773002, 47.4872315 ], + [ 7.6772984, 47.4872307 ], + [ 7.6772933, 47.4872284 ], + [ 7.6772884, 47.4872261 ], + [ 7.6772808999999995, 47.4872225 ], + [ 7.6772687, 47.487216599999996 ], + [ 7.6772626, 47.4872135 ], + [ 7.6772529, 47.4872086 ], + [ 7.6772503, 47.4872073 ], + [ 7.6772453, 47.4872046 ], + [ 7.677241, 47.4872024 ], + [ 7.6772351, 47.4871991 ], + [ 7.6772309, 47.4871968 ], + [ 7.6772254, 47.4871937 ], + [ 7.6772171, 47.4871889 ], + [ 7.6772141, 47.4871872 ], + [ 7.6772075, 47.4871833 ], + [ 7.6772068, 47.4871829 ], + [ 7.6772017, 47.4871798 ], + [ 7.6771972, 47.4871771 ], + [ 7.6771903, 47.4871727 ], + [ 7.6771858, 47.4871699 ], + [ 7.6771795, 47.4871657 ], + [ 7.6771752, 47.4871628 ], + [ 7.6771744, 47.4871623 ], + [ 7.677169, 47.4871586 ], + [ 7.6771647, 47.4871556 ], + [ 7.6771584, 47.487151 ], + [ 7.6771542, 47.487148 ], + [ 7.6771481999999995, 47.4871435 ], + [ 7.6771473, 47.4871427 ], + [ 7.6771433, 47.4871396 ], + [ 7.6771361, 47.4871339 ], + [ 7.6771283, 47.4871275 ], + [ 7.6771256999999995, 47.4871254 ], + [ 7.6771135, 47.4871152 ], + [ 7.6771104999999995, 47.4871126 ], + [ 7.6771071, 47.4871097 ], + [ 7.6771042, 47.4871073 ], + [ 7.6771025999999996, 47.4871059 ], + [ 7.6770994, 47.4871029 ], + [ 7.6770942, 47.4870982 ], + [ 7.6770897, 47.4870941 ], + [ 7.6770864, 47.4870909 ], + [ 7.6770838, 47.4870885 ], + [ 7.6770803999999995, 47.4870851 ], + [ 7.6770761, 47.4870808 ], + [ 7.6770744, 47.4870791 ], + [ 7.6770734, 47.4870782 ], + [ 7.677071, 47.4870757 ], + [ 7.6770678, 47.4870724 ], + [ 7.6770637, 47.4870681 ], + [ 7.6770609, 47.4870651 ], + [ 7.6770585, 47.4870626 ], + [ 7.6770548, 47.4870584 ], + [ 7.6770509, 47.487054 ], + [ 7.6770478, 47.4870505 ], + [ 7.677047, 47.4870496 ], + [ 7.6770448, 47.487047 ], + [ 7.6770402, 47.4870414 ], + [ 7.6770351, 47.4870351 ], + [ 7.6770329, 47.4870323 ], + [ 7.6770309, 47.4870297 ], + [ 7.6770277, 47.4870255 ], + [ 7.677021, 47.4870165 ], + [ 7.6770194, 47.4870144 ], + [ 7.6770176, 47.4870119 ], + [ 7.6770111, 47.4870029 ], + [ 7.6770075, 47.4869977 ], + [ 7.6769901, 47.4869719 ], + [ 7.6769889, 47.4869701 ], + [ 7.6769869, 47.4869671 ], + [ 7.6769837, 47.4869622 ], + [ 7.6769824, 47.4869601 ], + [ 7.6769815, 47.4869586 ], + [ 7.6769808, 47.4869575 ], + [ 7.6769762, 47.4869498 ], + [ 7.6769752, 47.4869483 ], + [ 7.6769728, 47.4869448 ], + [ 7.6769704, 47.4869414 ], + [ 7.6769680000000005, 47.4869379 ], + [ 7.6769618, 47.4869289 ], + [ 7.6769567, 47.4869211 ], + [ 7.6769526, 47.4869146 ], + [ 7.6769518, 47.4869132 ], + [ 7.6769505, 47.4869112 ], + [ 7.6769491, 47.4869088 ], + [ 7.6769482, 47.4869073 ], + [ 7.6769451, 47.4869028 ], + [ 7.6769422, 47.4868985 ], + [ 7.6769387, 47.4868933 ], + [ 7.6769337, 47.4868856 ], + [ 7.6769318, 47.4868828 ], + [ 7.6769303, 47.4868806 ], + [ 7.6769242, 47.4868714 ], + [ 7.6769192, 47.4868638 ], + [ 7.6769113, 47.486851 ], + [ 7.6769087, 47.4868471 ], + [ 7.6769058999999995, 47.486843 ], + [ 7.6769025, 47.4868381 ], + [ 7.6768936, 47.4868246 ], + [ 7.6768908, 47.4868204 ], + [ 7.6768876, 47.4868155 ], + [ 7.6768805, 47.4868044 ], + [ 7.6768795, 47.4868029 ], + [ 7.6768765, 47.486798 ], + [ 7.6768742, 47.4867946 ], + [ 7.6768709, 47.4867898 ], + [ 7.676868, 47.4867858 ], + [ 7.6768653, 47.486782 ], + [ 7.676859, 47.4867729 ], + [ 7.6768537, 47.4867648 ], + [ 7.6768496, 47.4867583 ], + [ 7.6768482, 47.4867561 ], + [ 7.6768475, 47.486755 ], + [ 7.6768461, 47.4867527 ], + [ 7.6768452, 47.4867512 ], + [ 7.6768419, 47.4867463 ], + [ 7.6768388, 47.4867418 ], + [ 7.6768346, 47.4867356 ], + [ 7.6768304, 47.4867291 ], + [ 7.6768277, 47.4867248 ], + [ 7.6768275, 47.4867244 ], + [ 7.6768258, 47.4867217 ], + [ 7.6768205, 47.4867125 ], + [ 7.676819, 47.4867099 ], + [ 7.6768163, 47.4867049 ], + [ 7.6768144, 47.4867012 ], + [ 7.6768122, 47.4866972 ], + [ 7.6768097, 47.4866922 ], + [ 7.6768072, 47.4866871 ], + [ 7.6768042, 47.4866808 ], + [ 7.6768022, 47.4866768 ], + [ 7.6767984, 47.4866686 ], + [ 7.6767972, 47.486666 ], + [ 7.6767953, 47.4866614 ], + [ 7.6767935, 47.4866573 ], + [ 7.6767899, 47.4866487 ], + [ 7.6767889, 47.4866463 ], + [ 7.6767885, 47.4866454 ], + [ 7.6767883, 47.486645 ], + [ 7.6767861, 47.4866405 ], + [ 7.6767842, 47.4866362 ], + [ 7.6767832, 47.4866343 ], + [ 7.6767829, 47.4866338 ], + [ 7.6767797, 47.486627 ], + [ 7.6767769999999995, 47.4866213 ], + [ 7.6767753, 47.4866179 ], + [ 7.6767717, 47.4866101 ], + [ 7.6767706, 47.4866076 ], + [ 7.6767689, 47.4866038 ], + [ 7.6767675, 47.4866003 ], + [ 7.6767668, 47.4865987 ], + [ 7.6767633, 47.4865908 ], + [ 7.6767611, 47.4865856 ], + [ 7.6767606, 47.4865847 ], + [ 7.6767578, 47.4865785 ], + [ 7.6767552, 47.4865726 ], + [ 7.6767536, 47.4865691 ], + [ 7.6767495, 47.4865599 ], + [ 7.6767483, 47.4865569 ], + [ 7.6767477, 47.4865553 ], + [ 7.6767462, 47.4865515 ], + [ 7.676746, 47.4865509 ], + [ 7.6767445, 47.4865476 ], + [ 7.6767423, 47.4865428 ], + [ 7.6767411, 47.4865403 ], + [ 7.6767378, 47.486533 ], + [ 7.6767366, 47.4865304 ], + [ 7.6767354, 47.4865275 ], + [ 7.676729, 47.4865124 ], + [ 7.676728, 47.4865097 ], + [ 7.676726, 47.486505 ], + [ 7.676725, 47.4865027 ], + [ 7.676722, 47.4864955 ], + [ 7.6767215, 47.4864942 ], + [ 7.6767202999999995, 47.4864912 ], + [ 7.6767183, 47.486486 ], + [ 7.676718, 47.4864851 ], + [ 7.6767157, 47.4864796 ], + [ 7.6767146, 47.4864769 ], + [ 7.6767138, 47.486475 ], + [ 7.6767134, 47.4864741 ], + [ 7.6767119, 47.4864704 ], + [ 7.6767085999999995, 47.4864623 ], + [ 7.6767076, 47.4864598 ], + [ 7.6767072, 47.4864588 ], + [ 7.6767050999999995, 47.4864535 ], + [ 7.6767039, 47.4864506 ], + [ 7.676702, 47.486446 ], + [ 7.6766997, 47.48644 ], + [ 7.6766985, 47.4864369 ], + [ 7.6766958, 47.4864288 ], + [ 7.6766935, 47.4864215 ], + [ 7.6766908, 47.4864135 ], + [ 7.6766886, 47.4864068 ], + [ 7.6766877000000004, 47.4864037 ], + [ 7.6766876, 47.4864035 ], + [ 7.6766864, 47.486399 ], + [ 7.6766855, 47.4863957 ], + [ 7.6766833, 47.4863892 ], + [ 7.6766817, 47.4863841 ], + [ 7.6766816, 47.4863838 ], + [ 7.6766807, 47.4863807 ], + [ 7.6766795, 47.4863762 ], + [ 7.6766784, 47.4863722 ], + [ 7.676676, 47.4863645 ], + [ 7.6766751, 47.4863617 ], + [ 7.6766735, 47.4863562 ], + [ 7.6766727, 47.486353 ], + [ 7.6766711, 47.4863465 ], + [ 7.6766704, 47.4863433 ], + [ 7.6766696, 47.4863398 ], + [ 7.6766676, 47.4863304 ], + [ 7.6766672, 47.4863285 ], + [ 7.6766662, 47.4863232 ], + [ 7.6766657, 47.4863199 ], + [ 7.6766645, 47.4863119 ], + [ 7.6766641, 47.4863086 ], + [ 7.6766635999999995, 47.4863044 ], + [ 7.6766635, 47.4863027 ], + [ 7.6766632, 47.4862993 ], + [ 7.6766628, 47.4862949 ], + [ 7.6766626, 47.4862915 ], + [ 7.6766623, 47.4862871 ], + [ 7.676662, 47.4862803 ], + [ 7.6766619, 47.4862767 ], + [ 7.6766618, 47.4862699 ], + [ 7.6766617, 47.4862678 ], + [ 7.6766616, 47.4862575 ], + [ 7.6766616, 47.4862561 ], + [ 7.6766616, 47.4862559 ], + [ 7.6766616, 47.4862558 ], + [ 7.6766616, 47.4862489 ], + [ 7.6766616, 47.4862458 ], + [ 7.6766617, 47.4862355 ], + [ 7.6766619, 47.4862307 ], + [ 7.676662, 47.4862273 ], + [ 7.6766622, 47.486223 ], + [ 7.6766624, 47.4862196 ], + [ 7.6766628, 47.4862146 ], + [ 7.6766629, 47.4862138 ], + [ 7.6766632, 47.4862105 ], + [ 7.6766642, 47.4862025 ], + [ 7.6766646, 47.4861992 ], + [ 7.6766661, 47.4861903 ], + [ 7.6766664, 47.4861886 ], + [ 7.6766670999999995, 47.4861853 ], + [ 7.6766701, 47.4861726 ], + [ 7.6766717, 47.4861669 ], + [ 7.6766725000000005, 47.4861639 ], + [ 7.6766738, 47.4861596 ], + [ 7.6766746999999995, 47.4861568 ], + [ 7.6766777, 47.4861478 ], + [ 7.6766787, 47.486145 ], + [ 7.6766802, 47.4861412 ], + [ 7.6766839000000004, 47.4861322 ], + [ 7.6766888, 47.4861213 ], + [ 7.6766915000000004, 47.4861155 ], + [ 7.6766928, 47.4861129 ], + [ 7.6766938, 47.4861107 ], + [ 7.6766974, 47.4861037 ], + [ 7.6766989, 47.486101 ], + [ 7.6767007, 47.4860978 ], + [ 7.6767050999999995, 47.4860899 ], + [ 7.6767088999999995, 47.4860835 ], + [ 7.6767109, 47.4860802 ], + [ 7.6767125, 47.4860776 ], + [ 7.6767212, 47.4860648 ], + [ 7.6767217, 47.4860641 ], + [ 7.6767236, 47.4860614 ], + [ 7.6767312, 47.4860515 ], + [ 7.6767333, 47.4860489 ], + [ 7.6767374, 47.4860439 ], + [ 7.6767377, 47.4860436 ], + [ 7.6767392999999995, 47.4860417 ], + [ 7.6767459, 47.4860342 ], + [ 7.6767483, 47.4860316 ], + [ 7.676755, 47.4860245 ], + [ 7.6767556, 47.4860239 ], + [ 7.6767598, 47.4860196 ], + [ 7.676768, 47.4860116 ], + [ 7.6767707, 47.4860091 ], + [ 7.6767769, 47.4860034 ], + [ 7.6767769999999995, 47.4860033 ], + [ 7.6767797, 47.4860009 ], + [ 7.6767834, 47.4859977 ], + [ 7.6767888, 47.4859931 ], + [ 7.6767900000000004, 47.4859919 ], + [ 7.6767944, 47.485988 ], + [ 7.6767966, 47.485986 ], + [ 7.6767993, 47.4859836 ], + [ 7.6768062, 47.4859778 ], + [ 7.6768091, 47.4859754 ], + [ 7.6768144, 47.4859712 ], + [ 7.6768173, 47.4859688 ], + [ 7.6768194, 47.4859672 ], + [ 7.6768221, 47.4859651 ], + [ 7.6768282, 47.4859605 ], + [ 7.6768304, 47.4859588 ], + [ 7.6768417, 47.4859504 ], + [ 7.6768464, 47.4859469 ], + [ 7.6768495, 47.4859447 ], + [ 7.6768567999999995, 47.4859395 ], + [ 7.67686, 47.4859373 ], + [ 7.6768608, 47.4859368 ], + [ 7.6768672, 47.4859325 ], + [ 7.6768705, 47.4859304 ], + [ 7.6768742, 47.485928 ], + [ 7.6768814, 47.4859234 ], + [ 7.6769042, 47.4859084 ], + [ 7.67691, 47.4859047 ], + [ 7.6769172999999995, 47.4859001 ], + [ 7.676924, 47.485896 ], + [ 7.6769277, 47.4858938 ], + [ 7.6769286999999995, 47.4858932 ], + [ 7.6769344, 47.4858898 ], + [ 7.6769382, 47.4858876 ], + [ 7.6769445, 47.485884 ], + [ 7.676954, 47.4858788 ], + [ 7.6769579, 47.4858767 ], + [ 7.6769614, 47.4858748 ], + [ 7.6769655, 47.4858726 ], + [ 7.6769676, 47.4858716 ], + [ 7.6769711, 47.4858697 ], + [ 7.6769777999999995, 47.4858663 ], + [ 7.676984, 47.4858633 ], + [ 7.67699, 47.4858604 ], + [ 7.6769998, 47.4858557 ], + [ 7.6770038, 47.4858538 ], + [ 7.6770173, 47.4858476 ], + [ 7.6770198, 47.4858465 ], + [ 7.67702, 47.4858464 ], + [ 7.6770339, 47.48584 ], + [ 7.6770398, 47.4858373 ], + [ 7.6770443, 47.4858353 ], + [ 7.6769827, 47.4854489 ], + [ 7.6769687, 47.4854308 ], + [ 7.674703, 47.4852688 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr150", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Mieschhalden", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Mieschhalden", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Mieschhalden", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Mieschhalden", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.0507284, 46.1748465 ], + [ 6.0507229, 46.1749155 ], + [ 6.0506889, 46.1749695 ], + [ 6.0505905, 46.1752817 ], + [ 6.0505195, 46.1761251 ], + [ 6.0508274, 46.1769424 ], + [ 6.0514839, 46.1776536 ], + [ 6.0524249, 46.1781889 ], + [ 6.0535581, 46.1784958 ], + [ 6.0537143, 46.1785194 ], + [ 6.0537594, 46.1785262 ], + [ 6.0552736, 46.1785456 ], + [ 6.0566835, 46.1781613 ], + [ 6.0577746, 46.1774317 ], + [ 6.0583812, 46.1764677 ], + [ 6.0584797, 46.1761556 ], + [ 6.0584865, 46.1760759 ], + [ 6.0585245, 46.1760149 ], + [ 6.0586214, 46.175703 ], + [ 6.0586886, 46.1748599 ], + [ 6.0583775, 46.1740436 ], + [ 6.0577185, 46.173334 ], + [ 6.0567762, 46.1728007 ], + [ 6.0556427, 46.1724958 ], + [ 6.0554412, 46.1724656 ], + [ 6.0539259, 46.1724488 ], + [ 6.0525165, 46.172836 ], + [ 6.0514278, 46.1735685 ], + [ 6.0508253, 46.1745346 ], + [ 6.0507284, 46.1748465 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-39", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.943549, 46.6474081 ], + [ 7.9434375, 46.6450546 ], + [ 7.9431474, 46.6427083 ], + [ 7.9426794, 46.6403757 ], + [ 7.9420348, 46.6380632 ], + [ 7.9412154, 46.6357771 ], + [ 7.9402235999999995, 46.6335236 ], + [ 7.939062, 46.631309 ], + [ 7.9377339, 46.6291393 ], + [ 7.9362428, 46.6270204 ], + [ 7.9345929, 46.6249581 ], + [ 7.9327888, 46.6229581 ], + [ 7.9308354, 46.6210259 ], + [ 7.928738, 46.6191668 ], + [ 7.9265024, 46.6173858 ], + [ 7.9241347, 46.6156877 ], + [ 7.9216415, 46.6140774 ], + [ 7.9190295, 46.6125591 ], + [ 7.916306, 46.611137 ], + [ 7.9134782999999995, 46.6098151 ], + [ 7.9105542, 46.6085968 ], + [ 7.9075417, 46.6074857 ], + [ 7.9044492, 46.6064846 ], + [ 7.9012849, 46.6055963 ], + [ 7.8980576, 46.6048233 ], + [ 7.8947761, 46.6041677 ], + [ 7.8914494, 46.6036312 ], + [ 7.8880866, 46.6032154 ], + [ 7.8846968, 46.6029214 ], + [ 7.8812894, 46.6027499 ], + [ 7.8778737, 46.6027015 ], + [ 7.8744589, 46.6027762 ], + [ 7.8710545, 46.6029739 ], + [ 7.8676698, 46.6032941 ], + [ 7.8643139, 46.6037358 ], + [ 7.8609960999999995, 46.6042979 ], + [ 7.8577254, 46.6049787 ], + [ 7.8545109, 46.6057765 ], + [ 7.8513611999999995, 46.6066891 ], + [ 7.848285, 46.607714 ], + [ 7.8452908, 46.6088483 ], + [ 7.8423867, 46.610089 ], + [ 7.8395806, 46.6114327 ], + [ 7.8368801999999995, 46.6128756 ], + [ 7.8342931, 46.614414 ], + [ 7.8318261, 46.6160434 ], + [ 7.8294861000000004, 46.6177596 ], + [ 7.8272796, 46.6195577 ], + [ 7.8252125, 46.6214329 ], + [ 7.8232905, 46.62338 ], + [ 7.8215189, 46.6253938 ], + [ 7.8199026, 46.6274686 ], + [ 7.8184461, 46.6295989 ], + [ 7.8171532, 46.6317787 ], + [ 7.8160277, 46.6340022 ], + [ 7.8150725, 46.6362631 ], + [ 7.8142903, 46.6385554 ], + [ 7.8136833, 46.6408728 ], + [ 7.8132532999999995, 46.6432088 ], + [ 7.8130012, 46.6455572 ], + [ 7.812928, 46.6479114 ], + [ 7.8130337999999995, 46.650265 ], + [ 7.8133183, 46.6526116 ], + [ 7.8137809, 46.6549447 ], + [ 7.8144200999999995, 46.657258 ], + [ 7.8152344, 46.659545 ], + [ 7.8162215, 46.6617995 ], + [ 7.8173787, 46.6640154 ], + [ 7.8187029, 46.6661865 ], + [ 7.8201903999999995, 46.668307 ], + [ 7.8218372, 46.6703709 ], + [ 7.8236388, 46.6723726 ], + [ 7.8255903, 46.6743066 ], + [ 7.8276863, 46.6761677 ], + [ 7.8299211, 46.6779506 ], + [ 7.8322885, 46.6796506 ], + [ 7.8347821, 46.6812629 ], + [ 7.837395, 46.6827831 ], + [ 7.8401201, 46.6842071 ], + [ 7.8429499, 46.6855308 ], + [ 7.8458766, 46.6867508 ], + [ 7.8488922, 46.6878636 ], + [ 7.8519884, 46.6888662 ], + [ 7.8551568, 46.6897558 ], + [ 7.8583885, 46.69053 ], + [ 7.8616748, 46.6911867 ], + [ 7.8650066, 46.691724 ], + [ 7.8683748, 46.6921405 ], + [ 7.8717701, 46.692435 ], + [ 7.8751831, 46.6926068 ], + [ 7.8786045, 46.6926553 ], + [ 7.882025, 46.6925804 ], + [ 7.885435, 46.6923824 ], + [ 7.8888252, 46.6920617 ], + [ 7.8921864, 46.6916193 ], + [ 7.8955092, 46.6910563 ], + [ 7.8987846, 46.6903744 ], + [ 7.9020036, 46.6895753 ], + [ 7.9051572, 46.6886613 ], + [ 7.9082369, 46.6876349 ], + [ 7.9112342, 46.686499 ], + [ 7.9141409, 46.6852565 ], + [ 7.916949, 46.683911 ], + [ 7.9196507, 46.6824662 ], + [ 7.9222387, 46.6809259 ], + [ 7.9247059, 46.6792945 ], + [ 7.9270455, 46.6775764 ], + [ 7.9292511, 46.6757764 ], + [ 7.9313167, 46.6738993 ], + [ 7.9332365, 46.6719503 ], + [ 7.9350055, 46.6699348 ], + [ 7.9366186, 46.6678584 ], + [ 7.9380714999999995, 46.6657266 ], + [ 7.9393603, 46.6635454 ], + [ 7.9404813999999995, 46.6613208 ], + [ 7.9414318, 46.6590587 ], + [ 7.9422089, 46.6567656 ], + [ 7.9428105, 46.6544475 ], + [ 7.9432351, 46.652111 ], + [ 7.9434815, 46.6497624 ], + [ 7.943549, 46.6474081 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSXG001", + "country" : "CHE", + "name" : [ + { + "text" : "LSXG Gsteigwiler", + "lang" : "de-CH" + }, + { + "text" : "LSXG Gsteigwiler", + "lang" : "fr-CH" + }, + { + "text" : "LSXG Gsteigwiler", + "lang" : "it-CH" + }, + { + "text" : "LSXG Gsteigwiler", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swiss Helicopter AG", + "lang" : "de-CH" + }, + { + "text" : "Swiss Helicopter AG", + "lang" : "fr-CH" + }, + { + "text" : "Swiss Helicopter AG", + "lang" : "it-CH" + }, + { + "text" : "Swiss Helicopter AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Basis Gsteigwiler", + "lang" : "de-CH" + }, + { + "text" : "Basis Gsteigwiler", + "lang" : "fr-CH" + }, + { + "text" : "Basis Gsteigwiler", + "lang" : "it-CH" + }, + { + "text" : "Basis Gsteigwiler", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Martin Burgener", + "lang" : "de-CH" + }, + { + "text" : "Martin Burgener", + "lang" : "fr-CH" + }, + { + "text" : "Martin Burgener", + "lang" : "it-CH" + }, + { + "text" : "Martin Burgener", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swisshelicopter.ch/en/about-us/helicopter-bases/gsteigwiler-interlaken", + "email" : "berneroberland@swisshelicopter.ch", + "phone" : "0041338289000", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P02DT12H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7144471, 46.8318966 ], + [ 7.7144856, 46.8319071 ], + [ 7.7144333, 46.8319811 ], + [ 7.7144854, 46.8320404 ], + [ 7.7166508, 46.8325849 ], + [ 7.716737, 46.8325729 ], + [ 7.7178089, 46.8312041 ], + [ 7.7178207, 46.8311475 ], + [ 7.7177745, 46.8311056 ], + [ 7.7175503, 46.8310547 ], + [ 7.7171967, 46.8309866 ], + [ 7.7170596, 46.8309676 ], + [ 7.7169123, 46.8309621 ], + [ 7.7167749, 46.8309654 ], + [ 7.7160387, 46.8310093 ], + [ 7.7158967, 46.8310131 ], + [ 7.7156175000000005, 46.8310014 ], + [ 7.7150851, 46.8309063 ], + [ 7.7148695, 46.830855 ], + [ 7.714666, 46.8307866 ], + [ 7.7140984, 46.8314239 ], + [ 7.7138314, 46.8317246 ], + [ 7.7144471, 46.8318966 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VBS_23", + "country" : "CHE", + "name" : [ + { + "text" : "VBS_23 Heimenschwand", + "lang" : "de-CH" + }, + { + "text" : "VBS_23 Heimenschwand", + "lang" : "fr-CH" + }, + { + "text" : "VBS_23 Heimenschwand", + "lang" : "it-CH" + }, + { + "text" : "VBS_23 Heimenschwand", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "regulationExemption" : "YES", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Eidgenössisches Departement für Verteidigung, Bevölkerungsschutz und Sport (VBS)", + "lang" : "de-CH" + }, + { + "text" : "Département fédéral de la défense, de la protection de la population et des sports (DDPS)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento federale della difesa, della protezione della popolazione e dello sport (DDPS)", + "lang" : "it-CH" + }, + { + "text" : "Federal Department of Defence, Civil Protection and Sport (DDPS)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Lageverfolgungszentrum der Armee LVZ A", + "lang" : "de-CH" + }, + { + "text" : "Centre de suivi de la situation de l’armée, CSS A", + "lang" : "fr-CH" + }, + { + "text" : "Centro di monitoraggio della situazione dell’esercito, Centro mon sit Es", + "lang" : "it-CH" + }, + { + "text" : "Joint Operation Center, JOC", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vtg.admin.ch/en/joint-operations-command", + "email" : "lvz.op@vtg.admin.ch", + "phone" : "+41 58 464 96 43", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8054298, 47.4092964 ], + [ 7.8057471, 47.4092706 ], + [ 7.8057255, 47.4091759 ], + [ 7.8056804, 47.4090043 ], + [ 7.8056702, 47.408487 ], + [ 7.8056974, 47.4084388 ], + [ 7.8059937999999995, 47.4083676 ], + [ 7.8060172, 47.4083252 ], + [ 7.8059783, 47.408298 ], + [ 7.8060802, 47.4081498 ], + [ 7.8061413, 47.4079912 ], + [ 7.8060763, 47.4079097 ], + [ 7.8056851, 47.4078948 ], + [ 7.8056601, 47.4079454 ], + [ 7.8056843, 47.407978 ], + [ 7.805676, 47.4080477 ], + [ 7.8053736, 47.4082225 ], + [ 7.8053334, 47.4083326 ], + [ 7.8053794, 47.4084064 ], + [ 7.8052041, 47.4086665 ], + [ 7.8052164, 47.4087274 ], + [ 7.8053029, 47.4088971 ], + [ 7.8053735, 47.4090649 ], + [ 7.8054298, 47.4092964 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr124", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Holten", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Holten", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Holten", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Holten", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4093538, 47.4112523 ], + [ 7.4097931, 47.4112408 ], + [ 7.4100313, 47.4113207 ], + [ 7.4103686, 47.4113547 ], + [ 7.4108245, 47.4112956 ], + [ 7.4111235, 47.4112413 ], + [ 7.411415, 47.4112505 ], + [ 7.4116213, 47.4112296 ], + [ 7.4120182, 47.4111063 ], + [ 7.4125634, 47.4110071 ], + [ 7.4131088, 47.4109755 ], + [ 7.4137135, 47.4109334 ], + [ 7.4146518, 47.4110108 ], + [ 7.4153861, 47.4110514 ], + [ 7.4159413, 47.4110318 ], + [ 7.4165678, 47.411069499999996 ], + [ 7.4170017999999995, 47.4111142 ], + [ 7.4173294, 47.4109765 ], + [ 7.417208, 47.4109805 ], + [ 7.4169628, 47.4109924 ], + [ 7.4168785, 47.4109812 ], + [ 7.4167099, 47.4109456 ], + [ 7.4165320999999995, 47.4109141 ], + [ 7.4162018, 47.4108731 ], + [ 7.4159042, 47.4108375 ], + [ 7.4155328, 47.4107922 ], + [ 7.4151296, 47.4107424 ], + [ 7.4146906999999995, 47.4106865 ], + [ 7.4142535, 47.4106319 ], + [ 7.4139102, 47.4105872 ], + [ 7.4136108, 47.4105499 ], + [ 7.4132591, 47.4105078 ], + [ 7.4130126, 47.4104763 ], + [ 7.4129836000000005, 47.4104701 ], + [ 7.4124588, 47.4103118 ], + [ 7.4124418, 47.4102784 ], + [ 7.4124728, 47.4102453 ], + [ 7.4125145, 47.41022 ], + [ 7.4125814, 47.4101977 ], + [ 7.4125204, 47.410204 ], + [ 7.4124368, 47.4102126 ], + [ 7.4123583, 47.4102208 ], + [ 7.4122134, 47.4102357 ], + [ 7.4120753, 47.41025 ], + [ 7.412043, 47.4102533 ], + [ 7.4119647, 47.4102569 ], + [ 7.4117626, 47.4102661 ], + [ 7.4116278, 47.4102723 ], + [ 7.4113195, 47.4102863 ], + [ 7.4102448, 47.410166 ], + [ 7.4102029, 47.4101613 ], + [ 7.4100909, 47.4101487 ], + [ 7.4099823, 47.4101365 ], + [ 7.4099195, 47.4101296 ], + [ 7.4099077, 47.4101274 ], + [ 7.4098283, 47.4101126 ], + [ 7.4097543, 47.4100988 ], + [ 7.4095531, 47.4100619 ], + [ 7.4092504, 47.4100064 ], + [ 7.4089562, 47.4099524 ], + [ 7.4084845999999995, 47.4097683 ], + [ 7.4081917, 47.409654 ], + [ 7.4079274999999996, 47.4095534 ], + [ 7.4078001, 47.40961 ], + [ 7.4077856, 47.4096396 ], + [ 7.4075282, 47.4097285 ], + [ 7.406481, 47.4100787 ], + [ 7.4058074, 47.4102072 ], + [ 7.4050438, 47.4102801 ], + [ 7.4049512, 47.4102896 ], + [ 7.4048569, 47.4102992 ], + [ 7.4046706, 47.4103182 ], + [ 7.4046008, 47.4103253 ], + [ 7.4044495, 47.4103407 ], + [ 7.404331, 47.4103528 ], + [ 7.404213, 47.410364799999996 ], + [ 7.4040224, 47.4103843 ], + [ 7.4039012, 47.4103966 ], + [ 7.4038908, 47.4103977 ], + [ 7.4037553, 47.4104117 ], + [ 7.4033083, 47.4104578 ], + [ 7.4031247, 47.4104768 ], + [ 7.4029, 47.4104998 ], + [ 7.4027642, 47.4104805 ], + [ 7.4023786, 47.4104194 ], + [ 7.4021999, 47.4103935 ], + [ 7.4018971, 47.4103507 ], + [ 7.401792, 47.4103693 ], + [ 7.4016248000000004, 47.4103988 ], + [ 7.4012898, 47.4104575 ], + [ 7.4009685, 47.4105137 ], + [ 7.4007325, 47.4106311 ], + [ 7.4005283, 47.4107327 ], + [ 7.4002013, 47.4107868 ], + [ 7.3998888, 47.4108743 ], + [ 7.3998191, 47.4108939 ], + [ 7.3997519, 47.4109128 ], + [ 7.3997337, 47.4109179 ], + [ 7.3994968, 47.4109106 ], + [ 7.399488, 47.4109103 ], + [ 7.3992793, 47.4109621 ], + [ 7.3991369, 47.410997 ], + [ 7.3989926, 47.4110324 ], + [ 7.3987096, 47.4111019 ], + [ 7.3986357, 47.41112 ], + [ 7.3979906, 47.4112783 ], + [ 7.3984783, 47.4125094 ], + [ 7.3985944, 47.4124848 ], + [ 7.3989548, 47.412434 ], + [ 7.3995238, 47.4122493 ], + [ 7.4002681, 47.4121039 ], + [ 7.400453, 47.412122600000004 ], + [ 7.4010064, 47.4120065 ], + [ 7.4014704, 47.4118951 ], + [ 7.4020835, 47.4118584 ], + [ 7.4026194, 47.411796 ], + [ 7.4031558, 47.4118377 ], + [ 7.4032345, 47.4118326 ], + [ 7.4032453, 47.4118319 ], + [ 7.4032554, 47.4118312 ], + [ 7.4032815, 47.4118296 ], + [ 7.4035440999999995, 47.4118127 ], + [ 7.4035709, 47.411811 ], + [ 7.4039598, 47.4117859 ], + [ 7.404595, 47.4117137 ], + [ 7.4051983, 47.4115044 ], + [ 7.4059692, 47.4114129 ], + [ 7.4064289, 47.411319 ], + [ 7.4070023, 47.4112486 ], + [ 7.4074387999999995, 47.4112264 ], + [ 7.4075029, 47.4112153 ], + [ 7.4076556, 47.4111886 ], + [ 7.4081247999999995, 47.4112605 ], + [ 7.4082578, 47.4112809 ], + [ 7.4085829, 47.4112724 ], + [ 7.4093538, 47.4112523 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns118", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Albachhollen", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Albachhollen", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Albachhollen", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Albachhollen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8842463, 47.4140612 ], + [ 7.8842005, 47.4140759 ], + [ 7.8842311, 47.4141787 ], + [ 7.8842965, 47.4143125 ], + [ 7.8843557, 47.4144327 ], + [ 7.8844098, 47.4145157 ], + [ 7.8844344, 47.4145868 ], + [ 7.8844370999999995, 47.4146614 ], + [ 7.8844139, 47.4147465 ], + [ 7.8843902, 47.4148125 ], + [ 7.8843986, 47.4148687 ], + [ 7.8844183, 47.4149279 ], + [ 7.8844446999999995, 47.4149924 ], + [ 7.8844935, 47.4150364 ], + [ 7.8845536, 47.4150709 ], + [ 7.8846035, 47.4150897 ], + [ 7.8846688, 47.4151097 ], + [ 7.8847387, 47.4151203 ], + [ 7.8848209, 47.4151572 ], + [ 7.8848761, 47.4151794 ], + [ 7.8849949, 47.4152296 ], + [ 7.8850724, 47.4152793 ], + [ 7.8851412, 47.4153304 ], + [ 7.8851998, 47.4153706 ], + [ 7.8852399, 47.4153941 ], + [ 7.8853807, 47.415463 ], + [ 7.8853983, 47.415505 ], + [ 7.8854869, 47.4155679 ], + [ 7.885601, 47.4156591 ], + [ 7.8856532999999995, 47.4157306 ], + [ 7.8857164, 47.4158594 ], + [ 7.8858002, 47.4160749 ], + [ 7.8858166, 47.4161768 ], + [ 7.8858887, 47.4162593 ], + [ 7.8859178, 47.4162977 ], + [ 7.8859353, 47.4163867 ], + [ 7.8859503, 47.4165402 ], + [ 7.885986, 47.4166746 ], + [ 7.8860812, 47.4168992 ], + [ 7.8861409, 47.416997 ], + [ 7.8861972, 47.41707 ], + [ 7.8862455, 47.4171162 ], + [ 7.886233, 47.4171424 ], + [ 7.886167, 47.4172323 ], + [ 7.886236, 47.4173523 ], + [ 7.8862713, 47.4174553 ], + [ 7.8863178, 47.4175645 ], + [ 7.8863914, 47.4176422 ], + [ 7.8864249, 47.4177461 ], + [ 7.8865048, 47.4177232 ], + [ 7.8865139, 47.4177187 ], + [ 7.8865672, 47.4176995 ], + [ 7.8864873, 47.4175773 ], + [ 7.8863786, 47.4173825 ], + [ 7.8863128, 47.4172189 ], + [ 7.8863197, 47.4171087 ], + [ 7.8863303, 47.4171077 ], + [ 7.8863482, 47.4170605 ], + [ 7.8862914, 47.4169289 ], + [ 7.8862273, 47.4167973 ], + [ 7.8861568, 47.416681 ], + [ 7.8861038, 47.4166021 ], + [ 7.8860538, 47.4164656 ], + [ 7.8860356, 47.4163382 ], + [ 7.886029, 47.4162597 ], + [ 7.8859236, 47.4161391 ], + [ 7.8859107999999996, 47.4160699 ], + [ 7.88588, 47.4159631 ], + [ 7.8858467999999995, 47.4158673 ], + [ 7.8858193, 47.4158261 ], + [ 7.885775, 47.4157474 ], + [ 7.8857046, 47.4156517 ], + [ 7.8856679, 47.4156159 ], + [ 7.8855909, 47.4155499 ], + [ 7.8855466, 47.4155044 ], + [ 7.8855265, 47.4154531 ], + [ 7.885485, 47.4154259 ], + [ 7.8853328, 47.4153595 ], + [ 7.8852703, 47.415278 ], + [ 7.8852402999999995, 47.4152315 ], + [ 7.8851744, 47.4151768 ], + [ 7.8850867000000004, 47.4151479 ], + [ 7.8849889, 47.4151208 ], + [ 7.884884, 47.4151035 ], + [ 7.8847805, 47.4150767 ], + [ 7.8846938, 47.4150375 ], + [ 7.8846239, 47.4149889 ], + [ 7.8845965, 47.414938 ], + [ 7.8846183, 47.4147866 ], + [ 7.8846059, 47.4146282 ], + [ 7.8845867, 47.4145579 ], + [ 7.8845427, 47.4144557 ], + [ 7.8845033, 47.4144072 ], + [ 7.8844398, 47.4143625 ], + [ 7.8843812, 47.4142318 ], + [ 7.8843521, 47.4141568 ], + [ 7.8843213, 47.4141085 ], + [ 7.8842737, 47.4140577 ], + [ 7.8842463, 47.4140612 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns177", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Mapprach - Hofmatt", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Mapprach - Hofmatt", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Mapprach - Hofmatt", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Mapprach - Hofmatt", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.1379968, 46.249398 ], + [ 6.1379948, 46.2492567 ], + [ 6.1379822, 46.2491157 ], + [ 6.137959, 46.2489754 ], + [ 6.1379252, 46.248836 ], + [ 6.1378809, 46.2486981 ], + [ 6.1378263, 46.248562 ], + [ 6.1377616, 46.2484281 ], + [ 6.1376868, 46.2482966 ], + [ 6.1376022, 46.2481681 ], + [ 6.137508, 46.2480429 ], + [ 6.1374045, 46.2479212 ], + [ 6.1372919, 46.2478034 ], + [ 6.1371706, 46.2476899 ], + [ 6.137041, 46.247581 ], + [ 6.1369033, 46.2474769 ], + [ 6.1367579, 46.247378 ], + [ 6.1366052, 46.2472844 ], + [ 6.1364458, 46.2471966 ], + [ 6.1362799, 46.2471146 ], + [ 6.136108, 46.2470388 ], + [ 6.1359307, 46.2469693 ], + [ 6.1357484, 46.2469064 ], + [ 6.1355615, 46.2468502 ], + [ 6.1353707, 46.2468008 ], + [ 6.1351765, 46.2467584 ], + [ 6.1349793, 46.2467232 ], + [ 6.1347797, 46.2466951 ], + [ 6.1345782, 46.2466743 ], + [ 6.1343755, 46.2466609 ], + [ 6.1341721, 46.2466548 ], + [ 6.1339684, 46.2466562 ], + [ 6.1337652, 46.2466649 ], + [ 6.1335628, 46.246681 ], + [ 6.133362, 46.2467045 ], + [ 6.1331632, 46.2467352 ], + [ 6.132967, 46.246773 ], + [ 6.132774, 46.246818 ], + [ 6.1325845, 46.2468698 ], + [ 6.1323993, 46.2469285 ], + [ 6.1322187, 46.2469939 ], + [ 6.1320433, 46.2470657 ], + [ 6.1318736, 46.2471437 ], + [ 6.13171, 46.2472279 ], + [ 6.131553, 46.2473178 ], + [ 6.1314029, 46.2474134 ], + [ 6.1312603, 46.2475142 ], + [ 6.1311255, 46.2476201 ], + [ 6.1309988, 46.2477307 ], + [ 6.1308807, 46.2478458 ], + [ 6.1307714, 46.247965 ], + [ 6.1306712, 46.2480881 ], + [ 6.1305805, 46.2482146 ], + [ 6.1304994, 46.2483442 ], + [ 6.1304283, 46.2484765 ], + [ 6.1303672, 46.2486113 ], + [ 6.1303163, 46.2487481 ], + [ 6.1302759, 46.2488866 ], + [ 6.1302459, 46.2490263 ], + [ 6.1302266, 46.249167 ], + [ 6.1302178, 46.2493082 ], + [ 6.1302198, 46.2494494 ], + [ 6.1302323, 46.2495905 ], + [ 6.1302556, 46.2497308 ], + [ 6.1302893, 46.2498702 ], + [ 6.1303335, 46.2500081 ], + [ 6.1303881, 46.2501442 ], + [ 6.1304529, 46.2502781 ], + [ 6.1305277, 46.2504096 ], + [ 6.1306123, 46.2505381 ], + [ 6.1307064, 46.2506633 ], + [ 6.13081, 46.250785 ], + [ 6.1309225, 46.2509028 ], + [ 6.1310438, 46.2510163 ], + [ 6.1311734, 46.2511252 ], + [ 6.1313111, 46.2512293 ], + [ 6.1314565, 46.2513283 ], + [ 6.1316091, 46.2514218 ], + [ 6.1317686, 46.2515097 ], + [ 6.1319345, 46.2515917 ], + [ 6.1321064, 46.2516675 ], + [ 6.1322837, 46.251737 ], + [ 6.1324661, 46.2517999 ], + [ 6.1326529, 46.2518561 ], + [ 6.1328437, 46.2519055 ], + [ 6.133038, 46.2519479 ], + [ 6.1332352, 46.2519832 ], + [ 6.1334348, 46.2520112 ], + [ 6.1336363, 46.252032 ], + [ 6.133839, 46.2520454 ], + [ 6.1340425, 46.2520515 ], + [ 6.1342462, 46.2520501 ], + [ 6.1344495, 46.2520414 ], + [ 6.1346518, 46.2520253 ], + [ 6.1348526, 46.2520018 ], + [ 6.1350514, 46.2519712 ], + [ 6.1352477, 46.2519333 ], + [ 6.1354407, 46.2518883 ], + [ 6.1356302, 46.2518365 ], + [ 6.1358154, 46.2517778 ], + [ 6.1359960000000004, 46.2517124 ], + [ 6.1361714, 46.2516406 ], + [ 6.1363412, 46.2515625 ], + [ 6.1365048, 46.2514784 ], + [ 6.1366618, 46.2513884 ], + [ 6.1368118, 46.2512929 ], + [ 6.1369545, 46.251192 ], + [ 6.1370893, 46.2510861 ], + [ 6.1372159, 46.2509755 ], + [ 6.1373341, 46.2508604 ], + [ 6.1374434, 46.2507412 ], + [ 6.1375435, 46.2506181 ], + [ 6.1376342, 46.2504917 ], + [ 6.1377153, 46.250362 ], + [ 6.1377864, 46.2502297 ], + [ 6.1378475, 46.2500949 ], + [ 6.1378983, 46.2499581 ], + [ 6.1379388, 46.2498196 ], + [ 6.1379687, 46.2496798 ], + [ 6.137988, 46.2495392 ], + [ 6.1379968, 46.249398 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0039", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Foretaille", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Foretaille", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Foretaille", + "lang" : "it-CH" + }, + { + "text" : "Substation Foretaille", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.843195, 47.462626 ], + [ 7.8429518, 47.4625405 ], + [ 7.8429333, 47.4625282 ], + [ 7.8428998, 47.4625229 ], + [ 7.8425714, 47.4623662 ], + [ 7.8422609, 47.4623356 ], + [ 7.842102, 47.462243 ], + [ 7.8420396, 47.4621449 ], + [ 7.8418946, 47.4621149 ], + [ 7.8418945, 47.4623327 ], + [ 7.841665, 47.4622944 ], + [ 7.8411864, 47.4622736 ], + [ 7.8407997, 47.4622004 ], + [ 7.8405938, 47.462196 ], + [ 7.8403215, 47.4621485 ], + [ 7.839571, 47.4618824 ], + [ 7.8390582, 47.4617115 ], + [ 7.8387711, 47.4616747 ], + [ 7.8382779, 47.4615678 ], + [ 7.838297, 47.4615327 ], + [ 7.8380814999999995, 47.4614846 ], + [ 7.8380244, 47.4615365 ], + [ 7.8379624, 47.4615929 ], + [ 7.8378833, 47.4615838 ], + [ 7.8376461, 47.4615564 ], + [ 7.8372243, 47.4615077 ], + [ 7.8370393, 47.4614864 ], + [ 7.8370386, 47.4614859 ], + [ 7.8369552, 47.4614762 ], + [ 7.8368804999999995, 47.4614675 ], + [ 7.8368073, 47.4614589 ], + [ 7.8367822, 47.4614692 ], + [ 7.8367502, 47.4614822 ], + [ 7.8367296, 47.4615838 ], + [ 7.837134, 47.4617894 ], + [ 7.8371503, 47.4617977 ], + [ 7.8372091, 47.4617986 ], + [ 7.8373516, 47.4618007 ], + [ 7.8373534, 47.4618133 ], + [ 7.8373661, 47.4619076 ], + [ 7.8377056, 47.4619133 ], + [ 7.8379585, 47.4619432 ], + [ 7.8382408, 47.4619583 ], + [ 7.8384992, 47.4619686 ], + [ 7.8387047, 47.4619951 ], + [ 7.8389683, 47.4620875 ], + [ 7.8391689, 47.4621606 ], + [ 7.8394373, 47.4622501 ], + [ 7.8396063, 47.4623215 ], + [ 7.839692, 47.4623457 ], + [ 7.8398377, 47.4623867 ], + [ 7.8399875, 47.4624187 ], + [ 7.8402107, 47.4624658 ], + [ 7.8405393, 47.4624795 ], + [ 7.8408487000000004, 47.4624783 ], + [ 7.841149, 47.4625133 ], + [ 7.8415707999999995, 47.4625616 ], + [ 7.8419389, 47.4625874 ], + [ 7.8420286, 47.4625815 ], + [ 7.8423037, 47.4625634 ], + [ 7.8425803, 47.462576 ], + [ 7.8426101, 47.4625797 ], + [ 7.8426390999999995, 47.4625857 ], + [ 7.8426651, 47.4625932 ], + [ 7.8426909, 47.4626031 ], + [ 7.8427147, 47.4626148 ], + [ 7.842715, 47.4626149 ], + [ 7.8427369, 47.4626284 ], + [ 7.8427565, 47.4626435 ], + [ 7.8427734000000004, 47.46266 ], + [ 7.8427787, 47.462668 ], + [ 7.8428048, 47.4627075 ], + [ 7.8428144, 47.4627352 ], + [ 7.8428291, 47.462778 ], + [ 7.8428369, 47.4628008 ], + [ 7.8428504, 47.4628948 ], + [ 7.8428667, 47.4630082 ], + [ 7.8429778, 47.463273 ], + [ 7.8430073, 47.4631843 ], + [ 7.8430114, 47.4631723 ], + [ 7.8429974, 47.4631372 ], + [ 7.8429474, 47.4627754 ], + [ 7.8429418, 47.4627354 ], + [ 7.8430792, 47.46268 ], + [ 7.8431067, 47.4626688 ], + [ 7.8431314, 47.4626589 ], + [ 7.8431922, 47.4626344 ], + [ 7.843195, 47.462626 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr087", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Hochstatt", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Hochstatt", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Hochstatt", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Hochstatt", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5055454, 47.4450709 ], + [ 7.5055461, 47.4450716 ], + [ 7.5055504, 47.4450756 ], + [ 7.505552, 47.4450771 ], + [ 7.5056461, 47.4452087 ], + [ 7.5060047, 47.4455888 ], + [ 7.5065869, 47.4464982 ], + [ 7.5071696, 47.4466414 ], + [ 7.5074538, 47.4466938 ], + [ 7.5076260999999995, 47.4467871 ], + [ 7.5077472, 47.4472192 ], + [ 7.5078765, 47.4473944 ], + [ 7.5082132, 47.4480599 ], + [ 7.5081444, 47.4481476 ], + [ 7.5082051, 47.4484687 ], + [ 7.5083257, 47.4485388 ], + [ 7.5085844, 47.4488832 ], + [ 7.5086024, 47.4494964 ], + [ 7.508551, 47.4496541 ], + [ 7.5083919, 47.4498323 ], + [ 7.508393, 47.4498389 ], + [ 7.5089389, 47.4497982 ], + [ 7.5089416, 47.4498014 ], + [ 7.5090951, 47.4497693 ], + [ 7.5093665, 47.4496009 ], + [ 7.5097088, 47.4494806 ], + [ 7.5099801, 47.4492721 ], + [ 7.5102162, 47.4491679 ], + [ 7.5104287, 47.4491197 ], + [ 7.5106411, 47.4490554 ], + [ 7.5110425, 47.448927 ], + [ 7.511243, 47.4487587 ], + [ 7.51129, 47.4486065 ], + [ 7.5112898, 47.4484543 ], + [ 7.511418, 47.4482393 ], + [ 7.5116537999999995, 47.4479428 ], + [ 7.5119013, 47.4475982 ], + [ 7.5122551, 47.4472695 ], + [ 7.51255, 47.446965 ], + [ 7.5130094, 47.4462037 ], + [ 7.5132314000000004, 47.4459892 ], + [ 7.5138568, 47.4456763 ], + [ 7.5143996, 47.4453716 ], + [ 7.5147062, 47.4451151 ], + [ 7.5150933, 47.4447166 ], + [ 7.5156829, 47.4441796 ], + [ 7.5158596, 47.443859 ], + [ 7.5159652, 47.4434344 ], + [ 7.516093, 47.4429 ], + [ 7.5163042, 47.4420187 ], + [ 7.5163038, 47.4416823 ], + [ 7.5163028, 47.4410411 ], + [ 7.5163028, 47.4410379 ], + [ 7.5162645, 47.4410312 ], + [ 7.5131016, 47.4417354 ], + [ 7.5112655, 47.4424559 ], + [ 7.509449, 47.4431746 ], + [ 7.5076912, 47.4438913 ], + [ 7.5065735, 47.4445019 ], + [ 7.5055454, 47.4450709 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr004", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Rittenberg", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Rittenberg", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Rittenberg", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Rittenberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.644782, 46.5166061 ], + [ 6.6445263, 46.5166101 ], + [ 6.6442714, 46.5166256 ], + [ 6.6440186, 46.5166526 ], + [ 6.6437688999999995, 46.5166909 ], + [ 6.6435234, 46.5167405 ], + [ 6.6432831, 46.516801 ], + [ 6.6430489999999995, 46.5168723 ], + [ 6.6428222, 46.5169539 ], + [ 6.6427078, 46.5170002 ], + [ 6.6425059, 46.5170624 ], + [ 6.6422791, 46.5171441 ], + [ 6.6420604999999995, 46.5172358 ], + [ 6.6419816, 46.5172724 ], + [ 6.6417856, 46.5173655 ], + [ 6.6416550999999995, 46.5174304 ], + [ 6.6414557, 46.517541 ], + [ 6.6412673, 46.5176604 ], + [ 6.641148, 46.5177447 ], + [ 6.6410064, 46.5178247 ], + [ 6.640818, 46.5179441 ], + [ 6.6406412, 46.5180718 ], + [ 6.6404769, 46.5182072 ], + [ 6.6403258, 46.5183496 ], + [ 6.6401885, 46.5184986 ], + [ 6.6400656, 46.5186535 ], + [ 6.6399576, 46.5188136 ], + [ 6.6398651, 46.5189783 ], + [ 6.6397883, 46.5191467 ], + [ 6.6397277, 46.5193183 ], + [ 6.6396835, 46.5194922 ], + [ 6.6396558, 46.5196678 ], + [ 6.6396448, 46.5198442 ], + [ 6.6396505999999995, 46.5200208 ], + [ 6.6396730999999996, 46.5201967 ], + [ 6.6397121, 46.5203712 ], + [ 6.6397677, 46.5205436 ], + [ 6.6398395, 46.5207131 ], + [ 6.6399270999999995, 46.520879 ], + [ 6.6400303, 46.5210406 ], + [ 6.6401486, 46.5211972 ], + [ 6.6402815, 46.5213481 ], + [ 6.6403396, 46.5214077 ], + [ 6.6404889, 46.5215566 ], + [ 6.6405777, 46.5216416 ], + [ 6.6406049, 46.5216663 ], + [ 6.6406495, 46.5217108 ], + [ 6.6407407, 46.5217982 ], + [ 6.6409009999999995, 46.5219359 ], + [ 6.641074, 46.522066 ], + [ 6.6412589, 46.522188 ], + [ 6.641455, 46.5223014 ], + [ 6.6416614, 46.5224058 ], + [ 6.6418773, 46.5225005 ], + [ 6.6421016999999996, 46.5225854 ], + [ 6.6423336, 46.5226599 ], + [ 6.6425722, 46.5227238 ], + [ 6.6428162, 46.5227767 ], + [ 6.6430648, 46.5228186 ], + [ 6.6433167, 46.5228491 ], + [ 6.6435711, 46.5228682 ], + [ 6.6438267, 46.5228758 ], + [ 6.6440825, 46.5228718 ], + [ 6.6443373, 46.5228563 ], + [ 6.6445902, 46.5228293 ], + [ 6.6448399, 46.5227909 ], + [ 6.6450855, 46.5227414 ], + [ 6.6453258, 46.5226808 ], + [ 6.6455599, 46.5226096 ], + [ 6.6456405, 46.5225821 ], + [ 6.6457277, 46.5225587 ], + [ 6.6457824, 46.5225431 ], + [ 6.645823, 46.5225333 ], + [ 6.6458264, 46.5225325 ], + [ 6.645951, 46.5225002 ], + [ 6.6459543, 46.5224993 ], + [ 6.6459768, 46.5224931 ], + [ 6.6460466, 46.5224732 ], + [ 6.6460498999999995, 46.5224722 ], + [ 6.6461542, 46.5224403 ], + [ 6.6461575, 46.5224393 ], + [ 6.6462176, 46.5224198 ], + [ 6.6462595, 46.5224057 ], + [ 6.6462627, 46.5224046 ], + [ 6.6463744, 46.5223648 ], + [ 6.6463776, 46.5223637 ], + [ 6.6464508, 46.5223358 ], + [ 6.6464661, 46.5223299 ], + [ 6.6464692, 46.5223287 ], + [ 6.6465669, 46.5222889 ], + [ 6.6465700000000005, 46.5222876 ], + [ 6.6466723, 46.5222431 ], + [ 6.6466753, 46.5222418 ], + [ 6.6466787, 46.5222402 ], + [ 6.6467596, 46.5222027 ], + [ 6.6467626, 46.5222013 ], + [ 6.6468634, 46.5221516 ], + [ 6.6468663, 46.5221502 ], + [ 6.6468941, 46.5221359 ], + [ 6.6469517, 46.5221054 ], + [ 6.6469545, 46.5221039 ], + [ 6.6470416, 46.5220556 ], + [ 6.6470444, 46.522054 ], + [ 6.6470991, 46.5220221 ], + [ 6.6471268, 46.5220055 ], + [ 6.6471295999999995, 46.5220039 ], + [ 6.6472257, 46.5219438 ], + [ 6.6472283, 46.5219421 ], + [ 6.647293, 46.5218993 ], + [ 6.6473001, 46.5218945 ], + [ 6.6473027, 46.5218928 ], + [ 6.6473864, 46.5218341 ], + [ 6.6473889, 46.5218323 ], + [ 6.6474565, 46.5217821 ], + [ 6.647459, 46.5217803 ], + [ 6.6474773, 46.5217663 ], + [ 6.6475444, 46.5217131 ], + [ 6.6475466999999995, 46.5217112 ], + [ 6.6475736, 46.5216891 ], + [ 6.647652, 46.5216304 ], + [ 6.6477109, 46.521584 ], + [ 6.647779, 46.521539 ], + [ 6.6479558, 46.5214113 ], + [ 6.6481201, 46.5212759 ], + [ 6.6482712, 46.5211334 ], + [ 6.6484085, 46.5209844 ], + [ 6.6485313, 46.5208295 ], + [ 6.6486392, 46.5206694 ], + [ 6.6487318, 46.5205048 ], + [ 6.6488085, 46.5203363 ], + [ 6.6488691, 46.5201647 ], + [ 6.6489133, 46.5199908 ], + [ 6.648941, 46.5198152 ], + [ 6.6489519, 46.5196388 ], + [ 6.6489461, 46.5194622 ], + [ 6.6489236, 46.5192863 ], + [ 6.6488845, 46.5191118 ], + [ 6.6488289, 46.5189394 ], + [ 6.6487571, 46.5187699 ], + [ 6.6486694, 46.518604 ], + [ 6.6485662, 46.5184424 ], + [ 6.6484479, 46.5182859 ], + [ 6.648315, 46.518135 ], + [ 6.6482588, 46.5180772 ], + [ 6.6482194, 46.5180379 ], + [ 6.6481637, 46.5179773 ], + [ 6.6481101, 46.5179223 ], + [ 6.6479612, 46.5177731 ], + [ 6.6478678, 46.5176835 ], + [ 6.6477075, 46.5175459 ], + [ 6.6475345, 46.5174158 ], + [ 6.6473496, 46.5172938 ], + [ 6.6471535, 46.5171804 ], + [ 6.6469471, 46.517076 ], + [ 6.6467312, 46.5169813 ], + [ 6.6465068, 46.5168965 ], + [ 6.6462749, 46.516822 ], + [ 6.6460364, 46.5167581 ], + [ 6.6457923999999995, 46.5167051 ], + [ 6.6455439, 46.5166633 ], + [ 6.6452919, 46.5166327 ], + [ 6.6450376, 46.5166136 ], + [ 6.644782, 46.5166061 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00027", + "country" : "CHE", + "name" : [ + { + "text" : "Tribunal fédéral", + "lang" : "de-CH" + }, + { + "text" : "Tribunal fédéral", + "lang" : "fr-CH" + }, + { + "text" : "Tribunal fédéral", + "lang" : "it-CH" + }, + { + "text" : "Tribunal fédéral", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kantonspolizei Waadt", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale vaudoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Vaud", + "lang" : "it-CH" + }, + { + "text" : "Vaud Cantonal Police", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.pcv@vd.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.6631964, 46.3760339 ], + [ 9.6631852, 46.3758928 ], + [ 9.6631635, 46.3757523 ], + [ 9.6631311, 46.3756128 ], + [ 9.6630882, 46.3754747 ], + [ 9.6630349, 46.3753383 ], + [ 9.6629714, 46.375204 ], + [ 9.6628979, 46.3750722 ], + [ 9.6628144, 46.3749433 ], + [ 9.6627214, 46.3748175 ], + [ 9.6626189, 46.3746953 ], + [ 9.662507399999999, 46.374577 ], + [ 9.662387, 46.3744629 ], + [ 9.6622582, 46.3743533 ], + [ 9.6621213, 46.3742485 ], + [ 9.6619767, 46.3741488 ], + [ 9.6618247, 46.3740545 ], + [ 9.6616658, 46.3739658 ], + [ 9.6615004, 46.373883 ], + [ 9.6613289, 46.3738063 ], + [ 9.6611519, 46.3737359 ], + [ 9.6609699, 46.3736721 ], + [ 9.660783200000001, 46.3736149 ], + [ 9.6605925, 46.3735645 ], + [ 9.6603982, 46.3735211 ], + [ 9.6602009, 46.3734849 ], + [ 9.6600012, 46.3734558 ], + [ 9.6597995, 46.373434 ], + [ 9.6595965, 46.3734195 ], + [ 9.6593926, 46.3734124 ], + [ 9.659188499999999, 46.3734127 ], + [ 9.6589846, 46.3734204 ], + [ 9.6587817, 46.3734355 ], + [ 9.6585801, 46.3734579 ], + [ 9.6583806, 46.3734876 ], + [ 9.6581835, 46.3735244 ], + [ 9.6579895, 46.3735684 ], + [ 9.6577991, 46.3736193 ], + [ 9.6576128, 46.373677 ], + [ 9.6574311, 46.3737414 ], + [ 9.6572546, 46.3738123 ], + [ 9.6570836, 46.3738895 ], + [ 9.6569187, 46.3739728 ], + [ 9.6567604, 46.3740619 ], + [ 9.6566089, 46.3741567 ], + [ 9.6564649, 46.3742568 ], + [ 9.6563286, 46.374362 ], + [ 9.6562005, 46.374472 ], + [ 9.6560809, 46.3745865 ], + [ 9.6559701, 46.3747051 ], + [ 9.6558684, 46.3748276 ], + [ 9.6557761, 46.3749537 ], + [ 9.6556934, 46.3750829 ], + [ 9.6556207, 46.3752149 ], + [ 9.655558, 46.3753493 ], + [ 9.6555056, 46.3754859 ], + [ 9.6554636, 46.3756241 ], + [ 9.655432, 46.3757637 ], + [ 9.6554111, 46.3759043 ], + [ 9.6554009, 46.3760454 ], + [ 9.6554013, 46.3761867 ], + [ 9.6554124, 46.3763277 ], + [ 9.6554342, 46.3764682 ], + [ 9.6554665, 46.3766077 ], + [ 9.6555094, 46.3767459 ], + [ 9.6555626, 46.3768823 ], + [ 9.6556261, 46.3770165 ], + [ 9.6556997, 46.3771483 ], + [ 9.6557831, 46.3772773 ], + [ 9.6558761, 46.377403 ], + [ 9.6559786, 46.3775253 ], + [ 9.6560901, 46.3776436 ], + [ 9.656210399999999, 46.3777577 ], + [ 9.6563392, 46.3778673 ], + [ 9.6564762, 46.3779721 ], + [ 9.6566208, 46.3780718 ], + [ 9.6567728, 46.3781661 ], + [ 9.6569317, 46.3782548 ], + [ 9.6570971, 46.3783376 ], + [ 9.6572686, 46.3784143 ], + [ 9.657445599999999, 46.3784847 ], + [ 9.657627699999999, 46.3785486 ], + [ 9.6578143, 46.3786058 ], + [ 9.6580051, 46.3786562 ], + [ 9.6581993, 46.3786995 ], + [ 9.6583966, 46.3787358 ], + [ 9.6585964, 46.3787649 ], + [ 9.6587981, 46.3787867 ], + [ 9.6590012, 46.3788012 ], + [ 9.6592051, 46.3788083 ], + [ 9.6594092, 46.378808 ], + [ 9.659613, 46.3788003 ], + [ 9.659816, 46.3787852 ], + [ 9.6600176, 46.3787628 ], + [ 9.6602172, 46.3787331 ], + [ 9.6604142, 46.3786963 ], + [ 9.6606083, 46.3786523 ], + [ 9.6607987, 46.3786014 ], + [ 9.660985, 46.3785437 ], + [ 9.6611667, 46.3784792 ], + [ 9.6613433, 46.3784083 ], + [ 9.6615142, 46.3783311 ], + [ 9.6616791, 46.3782478 ], + [ 9.6618375, 46.3781587 ], + [ 9.6619889, 46.3780639 ], + [ 9.6621329, 46.3779638 ], + [ 9.6622692, 46.3778586 ], + [ 9.6623973, 46.3777486 ], + [ 9.662517, 46.3776341 ], + [ 9.6626278, 46.3775155 ], + [ 9.6627295, 46.3773929 ], + [ 9.6628217, 46.3772669 ], + [ 9.6629044, 46.3771377 ], + [ 9.662977099999999, 46.3770057 ], + [ 9.6630398, 46.3768712 ], + [ 9.6630922, 46.3767347 ], + [ 9.6631342, 46.3765964 ], + [ 9.6631657, 46.3764568 ], + [ 9.6631866, 46.3763163 ], + [ 9.6631968, 46.3761752 ], + [ 9.6631964, 46.3760339 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0066", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Löbbia", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Löbbia", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Löbbia", + "lang" : "it-CH" + }, + { + "text" : "Substation Löbbia", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.030215, 46.1905824 ], + [ 6.0302133, 46.1904411 ], + [ 6.030201, 46.1903001 ], + [ 6.0301781, 46.1901597 ], + [ 6.0301446, 46.1900204 ], + [ 6.0301007, 46.1898824 ], + [ 6.0300464, 46.1897463 ], + [ 6.029982, 46.1896122 ], + [ 6.0299075, 46.1894808 ], + [ 6.0298233, 46.1893522 ], + [ 6.0297294, 46.1892268 ], + [ 6.0296263, 46.189105 ], + [ 6.0295141, 46.1889872 ], + [ 6.0293932, 46.1888736 ], + [ 6.0292638, 46.1887645 ], + [ 6.0291265, 46.1886603 ], + [ 6.0289815, 46.1885612 ], + [ 6.0288292, 46.1884675 ], + [ 6.0286701, 46.1883795 ], + [ 6.0285045, 46.1882974 ], + [ 6.028333, 46.1882214 ], + [ 6.028156, 46.1881518 ], + [ 6.027974, 46.1880887 ], + [ 6.0277875, 46.1880323 ], + [ 6.027597, 46.1879827 ], + [ 6.027403, 46.1879401 ], + [ 6.0272061, 46.1879047 ], + [ 6.0270068, 46.1878764 ], + [ 6.0268056, 46.1878555 ], + [ 6.0266031, 46.1878419 ], + [ 6.0263999, 46.1878356 ], + [ 6.0261965, 46.1878368 ], + [ 6.0259934, 46.1878453 ], + [ 6.0257913, 46.1878612 ], + [ 6.0255906, 46.1878845 ], + [ 6.025392, 46.187915 ], + [ 6.0251959, 46.1879526 ], + [ 6.025003, 46.1879974 ], + [ 6.0248137, 46.1880491 ], + [ 6.0246285, 46.1881076 ], + [ 6.024448, 46.1881728 ], + [ 6.0242727, 46.1882444 ], + [ 6.0241029, 46.1883223 ], + [ 6.0239394, 46.1884063 ], + [ 6.0237823, 46.1884961 ], + [ 6.0236322, 46.1885915 ], + [ 6.0234895999999996, 46.1886922 ], + [ 6.0233547, 46.188798 ], + [ 6.0232279, 46.1889085 ], + [ 6.0231097, 46.1890234 ], + [ 6.0230003, 46.1891426 ], + [ 6.0229, 46.1892655 ], + [ 6.0228091, 46.1893919 ], + [ 6.0227279, 46.1895214 ], + [ 6.0226565, 46.1896537 ], + [ 6.0225952, 46.1897884 ], + [ 6.0225442, 46.1899252 ], + [ 6.0225035, 46.1900636 ], + [ 6.0224733, 46.1902034 ], + [ 6.0224537, 46.190344 ], + [ 6.0224447, 46.1904851 ], + [ 6.0224463, 46.1906264 ], + [ 6.0224586, 46.1907675 ], + [ 6.0224815, 46.1909078 ], + [ 6.022515, 46.1910472 ], + [ 6.0225589, 46.1911852 ], + [ 6.0226131, 46.1913213 ], + [ 6.0226776, 46.1914553 ], + [ 6.022752, 46.1915868 ], + [ 6.0228363, 46.1917154 ], + [ 6.0229301, 46.1918408 ], + [ 6.0230332, 46.1919626 ], + [ 6.0231454, 46.1920804 ], + [ 6.0232663, 46.1921941 ], + [ 6.0233956, 46.1923031 ], + [ 6.023533, 46.1924074 ], + [ 6.023678, 46.1925064 ], + [ 6.0238303, 46.1926001 ], + [ 6.0239894, 46.1926882 ], + [ 6.024155, 46.1927703 ], + [ 6.0243265, 46.1928463 ], + [ 6.0245035, 46.1929159 ], + [ 6.0246855, 46.192979 ], + [ 6.0248721, 46.1930354 ], + [ 6.0250626, 46.193085 ], + [ 6.0252566, 46.1931276 ], + [ 6.0254535, 46.193163 ], + [ 6.0256529, 46.1931913 ], + [ 6.025854, 46.1932122 ], + [ 6.0260565, 46.1932258 ], + [ 6.0262598, 46.1932321 ], + [ 6.0264632, 46.1932309 ], + [ 6.0266663, 46.1932224 ], + [ 6.0268685, 46.1932065 ], + [ 6.0270691, 46.1931832 ], + [ 6.0272678, 46.1931527 ], + [ 6.0274639, 46.1931151 ], + [ 6.0276568, 46.1930703 ], + [ 6.0278462, 46.1930186 ], + [ 6.0280313, 46.1929601 ], + [ 6.0282118, 46.1928949 ], + [ 6.0283872, 46.1928233 ], + [ 6.0285569, 46.1927453 ], + [ 6.0287205, 46.1926614 ], + [ 6.0288776, 46.1925716 ], + [ 6.0290276, 46.1924762 ], + [ 6.0291703, 46.1923754 ], + [ 6.0293052, 46.1922697 ], + [ 6.0294319, 46.1921592 ], + [ 6.0295502, 46.1920442 ], + [ 6.0296596, 46.191925 ], + [ 6.0297598, 46.1918021 ], + [ 6.0298507, 46.1916757 ], + [ 6.0299319, 46.1915462 ], + [ 6.0300033, 46.1914139 ], + [ 6.0300645, 46.1912791 ], + [ 6.0301156, 46.1911424 ], + [ 6.0301563, 46.1910039 ], + [ 6.0301864, 46.1908642 ], + [ 6.030206, 46.1907236 ], + [ 6.030215, 46.1905824 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0124", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Verbois", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Verbois", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Verbois", + "lang" : "it-CH" + }, + { + "text" : "Substation Verbois", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5107009, 47.437909 ], + [ 7.5105383, 47.4380297 ], + [ 7.5099806000000005, 47.4384431 ], + [ 7.5089036, 47.4392413 ], + [ 7.5080732999999995, 47.4400674 ], + [ 7.5077179, 47.4404145 ], + [ 7.507091, 47.4410412 ], + [ 7.5061271, 47.4420174 ], + [ 7.5059605, 47.4429047 ], + [ 7.5057036, 47.4442382 ], + [ 7.5056613, 47.444453 ], + [ 7.5055387, 47.4450746 ], + [ 7.5065735, 47.4445017 ], + [ 7.5076912, 47.4438913 ], + [ 7.5082427, 47.4436664 ], + [ 7.509449, 47.4431746 ], + [ 7.5101174, 47.4429101 ], + [ 7.5112655, 47.4424559 ], + [ 7.5120897, 47.4421325 ], + [ 7.5131016, 47.4417354 ], + [ 7.5146093, 47.4413998 ], + [ 7.5158816999999996, 47.4411164 ], + [ 7.5162645, 47.4410312 ], + [ 7.5164713, 47.4410671 ], + [ 7.516376, 47.440591 ], + [ 7.5164713, 47.4400468 ], + [ 7.5165972, 47.4396367 ], + [ 7.5166443, 47.4395837 ], + [ 7.5163683, 47.4395299 ], + [ 7.5161845, 47.4394707 ], + [ 7.5161262, 47.4395517 ], + [ 7.516031, 47.4395328 ], + [ 7.5158577, 47.4394982 ], + [ 7.5158521, 47.4393506 ], + [ 7.5159614999999995, 47.4392073 ], + [ 7.5161526, 47.4391167 ], + [ 7.5161781, 47.439001 ], + [ 7.5161897, 47.438953 ], + [ 7.5161166999999995, 47.4388881 ], + [ 7.5160392, 47.4388493 ], + [ 7.5159578, 47.4388147 ], + [ 7.5158273, 47.4387967 ], + [ 7.5158237, 47.4387806 ], + [ 7.5157943, 47.4387372 ], + [ 7.5157387, 47.4386725 ], + [ 7.5157235, 47.4386548 ], + [ 7.5157181, 47.4386422 ], + [ 7.5159705, 47.4386008 ], + [ 7.5160264, 47.4385887 ], + [ 7.5161059, 47.4385845 ], + [ 7.5162192, 47.4385664 ], + [ 7.516258, 47.4385603 ], + [ 7.5165002, 47.4385227 ], + [ 7.5165766, 47.4385104 ], + [ 7.5166146, 47.4385038 ], + [ 7.5166524, 47.4384968 ], + [ 7.5166901, 47.4384895 ], + [ 7.5167359000000005, 47.43848 ], + [ 7.5167814, 47.4384701 ], + [ 7.5168267, 47.4384596 ], + [ 7.5168717, 47.4384487 ], + [ 7.5169163999999995, 47.4384373 ], + [ 7.5170642, 47.4384018 ], + [ 7.5168665, 47.4382332 ], + [ 7.5167712, 47.4381519 ], + [ 7.5167497, 47.4381406 ], + [ 7.5165295, 47.4380243 ], + [ 7.5166516, 47.4379574 ], + [ 7.5167076999999995, 47.4378888 ], + [ 7.5167775, 47.4377269 ], + [ 7.5168847, 47.4376102 ], + [ 7.5170770000000005, 47.4374295 ], + [ 7.5173224, 47.4372254 ], + [ 7.5176735, 47.4369603 ], + [ 7.5177632, 47.4368977 ], + [ 7.5178722, 47.4368299 ], + [ 7.5181254, 47.4366998 ], + [ 7.5181445, 47.436694 ], + [ 7.5182043, 47.4366425 ], + [ 7.5182562, 47.4366244 ], + [ 7.5182888, 47.4366115 ], + [ 7.5183102, 47.436603 ], + [ 7.5182788, 47.436577 ], + [ 7.5172194999999995, 47.4357688 ], + [ 7.5161447, 47.4349271 ], + [ 7.5161312, 47.4349292 ], + [ 7.5161493, 47.4349536 ], + [ 7.5160704, 47.4350149 ], + [ 7.5159111, 47.4351366 ], + [ 7.5158209, 47.4352112 ], + [ 7.5157005, 47.4353488 ], + [ 7.5156269, 47.4354317 ], + [ 7.5154378, 47.4355703 ], + [ 7.5153178, 47.4356785 ], + [ 7.5151864, 47.4358245 ], + [ 7.5150731, 47.4359666 ], + [ 7.5149713, 47.4360875 ], + [ 7.5148323, 47.4362167 ], + [ 7.5147488, 47.4363004 ], + [ 7.5147105, 47.4363388 ], + [ 7.5146761, 47.4362664 ], + [ 7.5146492, 47.4362267 ], + [ 7.5145877, 47.4362001 ], + [ 7.5144718, 47.4361774 ], + [ 7.5142739, 47.4361782 ], + [ 7.5139964, 47.4362111 ], + [ 7.51377, 47.4362545 ], + [ 7.5135445, 47.4363083 ], + [ 7.5131684, 47.4364279 ], + [ 7.5129168, 47.4365182 ], + [ 7.5127076, 47.4366007 ], + [ 7.5125215, 47.4366868 ], + [ 7.5123291, 47.4367953 ], + [ 7.5120953, 47.4369232 ], + [ 7.511937, 47.4369915 ], + [ 7.5107009, 47.437909 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns124", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Sunnenrain", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Sunnenrain", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Sunnenrain", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Sunnenrain", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.3283702, 47.3777824 ], + [ 8.3284092, 47.3777927 ], + [ 8.3284378, 47.3778126 ], + [ 8.3284936, 47.3778047 ], + [ 8.3285271, 47.377801 ], + [ 8.3285395, 47.377793 ], + [ 8.3285434, 47.3777867 ], + [ 8.328562699999999, 47.3777547 ], + [ 8.3286345, 47.3776714 ], + [ 8.3286972, 47.3776079 ], + [ 8.3287267, 47.3775664 ], + [ 8.3287791, 47.3774892 ], + [ 8.3287941, 47.377454 ], + [ 8.3287963, 47.3774345 ], + [ 8.3287866, 47.3774162 ], + [ 8.3287616, 47.3774261 ], + [ 8.3287032, 47.3774686 ], + [ 8.3286241, 47.3775244 ], + [ 8.3285681, 47.3775738 ], + [ 8.3284934, 47.3776146 ], + [ 8.3283973, 47.3776647 ], + [ 8.3283111, 47.3777167 ], + [ 8.3282655, 47.3777399 ], + [ 8.3281575, 47.3777723 ], + [ 8.3280343, 47.377811 ], + [ 8.3280061, 47.3778305 ], + [ 8.3280128, 47.3778423 ], + [ 8.3280446, 47.3778467 ], + [ 8.3281072, 47.3778456 ], + [ 8.328141, 47.377847 ], + [ 8.3282093, 47.3778313 ], + [ 8.3282354, 47.3778308 ], + [ 8.3282685, 47.3778332 ], + [ 8.3283183, 47.3778298 ], + [ 8.3283489, 47.3778207 ], + [ 8.3283444, 47.3778099 ], + [ 8.3283312, 47.3777946 ], + [ 8.3283428, 47.3777834 ], + [ 8.3283702, 47.3777824 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "KTAG503", + "country" : "CHE", + "name" : [ + { + "text" : "Alte Reuss", + "lang" : "de-CH" + }, + { + "text" : "Alte Reuss", + "lang" : "fr-CH" + }, + { + "text" : "Alte Reuss", + "lang" : "it-CH" + }, + { + "text" : "Alte Reuss", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "regulationExemption" : "NO", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "schedule" : [ + { + "day" : [ "ANY" ], + "startTime" : "00:00:00.00+01:00", + "endTime" : "00:00:00.00+01:00" + } + ] + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Aargau", + "lang" : "de-CH" + }, + { + "text" : "Canton d'Argovie", + "lang" : "fr-CH" + }, + { + "text" : "Canton Argovia", + "lang" : "it-CH" + }, + { + "text" : "Canton of Aargau", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Departement Bau, Verkehr und Umwelt (BVU)", + "lang" : "de-CH" + }, + { + "text" : "Département de la construction, des transports et de l'environnement (CTE)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento delle costruzioni, dei trasporti e dell'ambiente (CTA)", + "lang" : "it-CH" + }, + { + "text" : "Department of Civil Engineering,Transport and Environment (CTE)", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Sektion Gewässernutzung", + "lang" : "de-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "fr-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "it-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ag.ch/de/verwaltung/bvu/umwelt-natur-landschaft/hochwasserschutz-gewaesser/gewaessernutzung", + "email" : "alg@ag.ch", + "phone" : "0041 62 835 34 50", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.6332598, 46.5307986 ], + [ 6.6332656, 46.5309751 ], + [ 6.633288, 46.531151 ], + [ 6.6333271, 46.5313256 ], + [ 6.6333336, 46.5313488 ], + [ 6.6333348, 46.5313531 ], + [ 6.6333903, 46.5315255 ], + [ 6.6334621, 46.531695 ], + [ 6.6335498, 46.531861 ], + [ 6.633653, 46.5320226 ], + [ 6.6337713, 46.5321791 ], + [ 6.6339041, 46.5323301 ], + [ 6.6340509999999995, 46.5324747 ], + [ 6.6342113, 46.5326123 ], + [ 6.6343843, 46.5327424 ], + [ 6.6345693, 46.5328645 ], + [ 6.6347654, 46.5329779 ], + [ 6.6349719, 46.5330822 ], + [ 6.6351878, 46.533177 ], + [ 6.6352322, 46.5331949 ], + [ 6.6353176, 46.5332287 ], + [ 6.6353192, 46.5332293 ], + [ 6.6353327, 46.5332347 ], + [ 6.6354681, 46.5332888 ], + [ 6.6354941, 46.533299 ], + [ 6.6355002, 46.5333014 ], + [ 6.6356356, 46.5333553 ], + [ 6.6356565, 46.5333636 ], + [ 6.6356649, 46.5333669 ], + [ 6.6357509, 46.5334011 ], + [ 6.635756, 46.5334031 ], + [ 6.6357607, 46.533405 ], + [ 6.6358422, 46.5334382 ], + [ 6.6360619, 46.5335211 ], + [ 6.6362939, 46.5335957 ], + [ 6.6365324999999995, 46.5336595 ], + [ 6.6367766, 46.5337125 ], + [ 6.6370252, 46.5337544 ], + [ 6.6372772, 46.5337849 ], + [ 6.6375316, 46.5338041 ], + [ 6.6377873, 46.5338116 ], + [ 6.6380431, 46.5338077 ], + [ 6.638298, 46.5337921 ], + [ 6.6384003, 46.5337826 ], + [ 6.6386061, 46.5337598 ], + [ 6.6388559, 46.5337215 ], + [ 6.6391015, 46.5336719 ], + [ 6.6393419, 46.5336114 ], + [ 6.6395761, 46.5335402 ], + [ 6.6396144, 46.5335273 ], + [ 6.6397884, 46.533468 ], + [ 6.6399769, 46.5333992 ], + [ 6.6401956, 46.5333075 ], + [ 6.6404051, 46.5332061 ], + [ 6.6406046, 46.5330954 ], + [ 6.6407931, 46.532976 ], + [ 6.6409699, 46.5328484 ], + [ 6.6411343, 46.532713 ], + [ 6.6412854, 46.5325705 ], + [ 6.6414228, 46.5324215 ], + [ 6.6415457, 46.5322666 ], + [ 6.6416536, 46.5321065 ], + [ 6.6417462, 46.5319419 ], + [ 6.6417684, 46.531897 ], + [ 6.6418102, 46.5318187 ], + [ 6.641887, 46.5316502 ], + [ 6.6419476, 46.5314786 ], + [ 6.6419918, 46.5313047 ], + [ 6.6420195, 46.5311291 ], + [ 6.6420305, 46.5309527 ], + [ 6.6420247, 46.5307761 ], + [ 6.6420072999999995, 46.5306305 ], + [ 6.642003, 46.5304025 ], + [ 6.6419805, 46.5302265 ], + [ 6.6419414, 46.530052 ], + [ 6.6418858, 46.5298796 ], + [ 6.6418140999999995, 46.5297101 ], + [ 6.6417264, 46.5295442 ], + [ 6.6416231, 46.5293826 ], + [ 6.6416047, 46.5293565 ], + [ 6.6415066, 46.529219499999996 ], + [ 6.6414067, 46.529089 ], + [ 6.6412738000000004, 46.5289381 ], + [ 6.6411269, 46.5287935 ], + [ 6.6409666, 46.5286559 ], + [ 6.6407936, 46.5285257 ], + [ 6.6406087, 46.5284037 ], + [ 6.6404126, 46.5282903 ], + [ 6.6402061, 46.528186 ], + [ 6.6399902, 46.5280912 ], + [ 6.6397658, 46.5280064 ], + [ 6.6395338, 46.5279318 ], + [ 6.6392953, 46.527868 ], + [ 6.6390512, 46.527815 ], + [ 6.6388027, 46.5277731 ], + [ 6.6385506, 46.5277426 ], + [ 6.6382963, 46.5277235 ], + [ 6.6380407, 46.5277159 ], + [ 6.6377849, 46.5277199 ], + [ 6.63753, 46.5277354 ], + [ 6.6372771, 46.5277623 ], + [ 6.6370274, 46.5278007 ], + [ 6.6367818, 46.5278502 ], + [ 6.6365414, 46.5279107 ], + [ 6.6363828, 46.5279576 ], + [ 6.6362834, 46.5279743 ], + [ 6.6360378, 46.5280238 ], + [ 6.6360026, 46.5280319 ], + [ 6.6359872, 46.5280355 ], + [ 6.6357821, 46.5280879 ], + [ 6.635548, 46.5281591 ], + [ 6.6353859, 46.5282161 ], + [ 6.6353716, 46.5282214 ], + [ 6.6353068, 46.5282461 ], + [ 6.6350882, 46.5283378 ], + [ 6.6348787, 46.5284392 ], + [ 6.6348628, 46.5284475 ], + [ 6.6348508, 46.5284538 ], + [ 6.6346672, 46.5285561 ], + [ 6.6344787, 46.5286755 ], + [ 6.6343929, 46.5287354 ], + [ 6.6343824, 46.5287429 ], + [ 6.6342915, 46.5288106 ], + [ 6.6341271, 46.528946 ], + [ 6.6339896, 46.5290748 ], + [ 6.633981, 46.529083299999996 ], + [ 6.6339673999999995, 46.529097 ], + [ 6.63383, 46.529246 ], + [ 6.6337071, 46.5294009 ], + [ 6.6336705, 46.5294522 ], + [ 6.6336639, 46.5294616 ], + [ 6.6335926, 46.5295704 ], + [ 6.6335, 46.529735 ], + [ 6.6334416, 46.5298594 ], + [ 6.6334373, 46.5298694 ], + [ 6.6334189, 46.5299134 ], + [ 6.6333583, 46.530085 ], + [ 6.633314, 46.5302589 ], + [ 6.6333085, 46.5302864 ], + [ 6.6333066, 46.5302967 ], + [ 6.6332843, 46.5304448 ], + [ 6.6332739, 46.5305963 ], + [ 6.6332708, 46.5306221 ], + [ 6.6332598, 46.5307986 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00032", + "country" : "CHE", + "name" : [ + { + "text" : "Tribunal cantonal", + "lang" : "de-CH" + }, + { + "text" : "Tribunal cantonal", + "lang" : "fr-CH" + }, + { + "text" : "Tribunal cantonal", + "lang" : "it-CH" + }, + { + "text" : "Tribunal cantonal", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kantonspolizei Waadt", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale vaudoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Vaud", + "lang" : "it-CH" + }, + { + "text" : "Vaud Cantonal Police", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.pcv@vd.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.9141156, 46.5852464 ], + [ 7.9141104, 46.5852464 ], + [ 7.9138768, 46.5852384 ], + [ 7.913861, 46.5852268 ], + [ 7.9139355, 46.5846462 ], + [ 7.9135987, 46.5846233 ], + [ 7.9135632, 46.5848956 ], + [ 7.9131601, 46.5848638 ], + [ 7.9131011, 46.5851634 ], + [ 7.9129836000000005, 46.585592 ], + [ 7.9136655, 46.5856936 ], + [ 7.9140041, 46.5857641 ], + [ 7.9140319, 46.5856678 ], + [ 7.9142004, 46.5856896 ], + [ 7.9143375, 46.5852527 ], + [ 7.9141156, 46.5852464 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSXL002", + "country" : "CHE", + "name" : [ + { + "text" : "LSXL Lauterbrunnen (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSXL Lauterbrunnen (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSXL Lauterbrunnen (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSXL Lauterbrunnen (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Air-Glaciers SA", + "lang" : "de-CH" + }, + { + "text" : "Air-Glaciers SA", + "lang" : "fr-CH" + }, + { + "text" : "Air-Glaciers SA", + "lang" : "it-CH" + }, + { + "text" : "Air-Glaciers SA", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Basis Lauterbrunnen", + "lang" : "de-CH" + }, + { + "text" : "Basis Lauterbrunnen", + "lang" : "fr-CH" + }, + { + "text" : "Basis Lauterbrunnen", + "lang" : "it-CH" + }, + { + "text" : "Basis Lauterbrunnen", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.air-glaciers.ch/de-ch/lauterbrunnen-de", + "email" : "agl@air-glaciers.ch", + "phone" : "0041338560560", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P02DT12H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7525282, 47.3517746 ], + [ 7.7525462, 47.3519542 ], + [ 7.7565272, 47.3517684 ], + [ 7.7565085, 47.3516658 ], + [ 7.7565153, 47.3515875 ], + [ 7.7525282, 47.3517746 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns110", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Helfenbergrüttenen", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Helfenbergrüttenen", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Helfenbergrüttenen", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Helfenbergrüttenen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7030626, 47.3947502 ], + [ 7.7030573, 47.3947695 ], + [ 7.7030497, 47.3947884 ], + [ 7.7030397, 47.3948068 ], + [ 7.7030276, 47.3948246 ], + [ 7.7030133, 47.3948416 ], + [ 7.702993, 47.3948587 ], + [ 7.7029706000000004, 47.3948744 ], + [ 7.7029461999999995, 47.3948888 ], + [ 7.7029201, 47.3949016 ], + [ 7.7028283, 47.3949429 ], + [ 7.7027827, 47.3949588 ], + [ 7.7026126999999995, 47.3950464 ], + [ 7.7025923, 47.3950598 ], + [ 7.7025732, 47.3950742 ], + [ 7.7025556, 47.3950893 ], + [ 7.7025429, 47.3950992 ], + [ 7.7025288, 47.3951082 ], + [ 7.7025136, 47.3951163 ], + [ 7.7024974, 47.3951235 ], + [ 7.7024802999999995, 47.3951296 ], + [ 7.7024224, 47.3951798 ], + [ 7.70237, 47.3952327 ], + [ 7.7023232, 47.395288 ], + [ 7.7023048, 47.3953157 ], + [ 7.7022898, 47.3953443 ], + [ 7.7022782, 47.3953737 ], + [ 7.7022701, 47.3954036 ], + [ 7.7022657, 47.3954338 ], + [ 7.7022748, 47.3954676 ], + [ 7.7022885, 47.3955008 ], + [ 7.7023066, 47.3955329 ], + [ 7.7023288999999995, 47.3955638 ], + [ 7.7023693, 47.3956117 ], + [ 7.7024161, 47.3956569 ], + [ 7.7024688999999995, 47.3956989 ], + [ 7.702508, 47.3957325 ], + [ 7.7025456, 47.3957669 ], + [ 7.7025818, 47.3958021 ], + [ 7.7028079, 47.3960425 ], + [ 7.7028581, 47.3960829 ], + [ 7.7029113, 47.3961214 ], + [ 7.7029673, 47.3961581 ], + [ 7.7030198, 47.3961864 ], + [ 7.7030755, 47.3962116 ], + [ 7.703134, 47.3962338 ], + [ 7.7032138, 47.3962621 ], + [ 7.7032533, 47.3962773 ], + [ 7.7032907, 47.3962947 ], + [ 7.7033258, 47.3963143 ], + [ 7.7033583, 47.3963359 ], + [ 7.7034244, 47.3963817 ], + [ 7.7034849, 47.3964309 ], + [ 7.7035393, 47.3964834 ], + [ 7.7035872, 47.3965386 ], + [ 7.7036166999999995, 47.3965723 ], + [ 7.7036465, 47.3966059 ], + [ 7.7036764, 47.3966394 ], + [ 7.7037134, 47.3966711 ], + [ 7.7037543, 47.3967006 ], + [ 7.7037987, 47.3967276 ], + [ 7.7038463, 47.3967521 ], + [ 7.7038958, 47.3967688 ], + [ 7.7039474, 47.3967823 ], + [ 7.7040007, 47.3967924 ], + [ 7.7040551, 47.396799 ], + [ 7.7040982, 47.3968049 ], + [ 7.7041403, 47.3968136 ], + [ 7.704181, 47.3968249 ], + [ 7.70422, 47.3968388 ], + [ 7.704257, 47.396855 ], + [ 7.7043419, 47.3968986 ], + [ 7.7044223, 47.396946 ], + [ 7.704498, 47.3969968 ], + [ 7.7045282, 47.397017 ], + [ 7.7045557, 47.3970389 ], + [ 7.7045804, 47.3970623 ], + [ 7.7046021, 47.397087 ], + [ 7.7046206999999995, 47.3971128 ], + [ 7.7046358999999995, 47.3971397 ], + [ 7.7046477, 47.3971673 ], + [ 7.704656, 47.3971955 ], + [ 7.7046568, 47.3971989 ], + [ 7.7046581, 47.3972055 ], + [ 7.7046601, 47.3972297 ], + [ 7.7046589, 47.3972538 ], + [ 7.7046545, 47.3972778 ], + [ 7.7046469, 47.3973014 ], + [ 7.7046361999999995, 47.3973245 ], + [ 7.7046225, 47.3973468 ], + [ 7.7046057999999995, 47.3973682 ], + [ 7.7045864, 47.3973885 ], + [ 7.7045446, 47.3974345 ], + [ 7.7046654, 47.3975164 ], + [ 7.7047199, 47.3975269 ], + [ 7.7051847, 47.3972644 ], + [ 7.7056422, 47.3970095 ], + [ 7.7058621, 47.3968863 ], + [ 7.7062109, 47.3967353 ], + [ 7.7064161, 47.396834 ], + [ 7.7066298, 47.3969453 ], + [ 7.7069624, 47.3968467 ], + [ 7.7069893, 47.3968345 ], + [ 7.7070206, 47.3968163 ], + [ 7.7070402, 47.3968024 ], + [ 7.7070632, 47.396784 ], + [ 7.7070882, 47.3967607 ], + [ 7.7071054, 47.3967409 ], + [ 7.7071205, 47.3967194 ], + [ 7.7071345, 47.3966928 ], + [ 7.7071434, 47.3966685 ], + [ 7.7071872, 47.396556 ], + [ 7.7072114, 47.3965376 ], + [ 7.7070986, 47.3964731 ], + [ 7.7070852, 47.3964555 ], + [ 7.7070475, 47.3963956 ], + [ 7.7069959, 47.3963338 ], + [ 7.7069421, 47.3962852 ], + [ 7.7073037, 47.3961178 ], + [ 7.7075056, 47.3960243 ], + [ 7.7077522, 47.395733 ], + [ 7.7073826, 47.3956375 ], + [ 7.7070469, 47.3955396 ], + [ 7.7068309, 47.3953392 ], + [ 7.7068738, 47.3951426 ], + [ 7.7068876, 47.394981 ], + [ 7.7065236, 47.3948747 ], + [ 7.7061095, 47.3948257 ], + [ 7.7059004, 47.3946729 ], + [ 7.7058572, 47.3945933 ], + [ 7.7056877, 47.3944716 ], + [ 7.7058312, 47.394299 ], + [ 7.7058792, 47.394175 ], + [ 7.7059121, 47.3940965 ], + [ 7.7059353999999995, 47.393979 ], + [ 7.7059607, 47.3938219 ], + [ 7.7058712, 47.3937998 ], + [ 7.705775, 47.3937752 ], + [ 7.7057348999999995, 47.3937513 ], + [ 7.7057108, 47.3937198 ], + [ 7.7057008, 47.393682 ], + [ 7.7057021, 47.3936514 ], + [ 7.7057449, 47.3935244 ], + [ 7.7053852, 47.3935041 ], + [ 7.7052784, 47.3936257 ], + [ 7.7051131, 47.3938251 ], + [ 7.7050383, 47.3939318 ], + [ 7.7050031, 47.3939967 ], + [ 7.7049356, 47.3941332 ], + [ 7.7048866, 47.3942191 ], + [ 7.7048003, 47.394338 ], + [ 7.7046778, 47.3944467 ], + [ 7.7045641, 47.3945693 ], + [ 7.7030633, 47.3947451 ], + [ 7.7030626, 47.3947502 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns260", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Baberten", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Baberten", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Baberten", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Baberten", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.0170871, 47.1807009 ], + [ 8.0219507, 47.1792663 ], + [ 8.0217122, 47.1784027 ], + [ 8.0280992, 47.1783875 ], + [ 8.0281134, 47.1774596 ], + [ 8.0283444, 47.1738907 ], + [ 8.0287685, 47.1738359 ], + [ 8.0294638, 47.1738587 ], + [ 8.0300253, 47.1740006 ], + [ 8.0316338, 47.1745453 ], + [ 8.034135, 47.1754934 ], + [ 8.0359609, 47.1747467 ], + [ 8.0372298, 47.1742661 ], + [ 8.0389404, 47.1735726 ], + [ 8.0402087, 47.1730394 ], + [ 8.0408993, 47.1726408 ], + [ 8.041758, 47.1720828 ], + [ 8.0415805, 47.1705513 ], + [ 8.0421145, 47.1700827 ], + [ 8.0406803, 47.169121 ], + [ 8.0406613, 47.1690981 ], + [ 8.0415641, 47.1687574 ], + [ 8.0424764, 47.1684158 ], + [ 8.042574, 47.1683781 ], + [ 8.0426306, 47.1683573 ], + [ 8.0420697, 47.1662642 ], + [ 8.036944, 47.1612162 ], + [ 8.0368393, 47.1611465 ], + [ 8.0364192, 47.1607767 ], + [ 8.0356059, 47.1600635 ], + [ 8.0352028, 47.1597089 ], + [ 8.0348556, 47.1594046 ], + [ 8.0344679, 47.1590638 ], + [ 8.0344239, 47.1590465 ], + [ 8.034356, 47.1590167 ], + [ 8.0324987, 47.1586687 ], + [ 8.031232, 47.1584382 ], + [ 8.0299512, 47.1580932 ], + [ 8.0292295, 47.157861 ], + [ 8.0290885, 47.1578124 ], + [ 8.0270617, 47.1571102 ], + [ 8.0269753, 47.1571094 ], + [ 8.0268387, 47.1571 ], + [ 8.0231455, 47.1577933 ], + [ 8.0231077, 47.1578133 ], + [ 8.0230878, 47.1577897 ], + [ 8.0227686, 47.1574067 ], + [ 8.0221102, 47.156618 ], + [ 8.0220578, 47.1566079 ], + [ 8.0220033, 47.156618 ], + [ 8.0215867, 47.1568503 ], + [ 8.0211191, 47.1571109 ], + [ 8.020582, 47.1574103 ], + [ 8.0204017, 47.1575108 ], + [ 8.0200999, 47.1576789 ], + [ 8.0198461, 47.1578206 ], + [ 8.019404, 47.1580679 ], + [ 8.0187681, 47.1584235 ], + [ 8.0186494, 47.158493 ], + [ 8.0185256, 47.1585619 ], + [ 8.0180594, 47.1588205 ], + [ 8.0174251, 47.1591723 ], + [ 8.017077, 47.1593676 ], + [ 8.0167216, 47.1595665 ], + [ 8.0160775, 47.1599271 ], + [ 8.0157762, 47.1600953 ], + [ 8.0088528, 47.1616353 ], + [ 8.0088435, 47.1616573 ], + [ 8.0087635, 47.1616485 ], + [ 8.0086984, 47.1616628 ], + [ 8.0085763, 47.1617794 ], + [ 8.0083792, 47.1619209 ], + [ 8.0082797, 47.1619909 ], + [ 8.0081388, 47.1620065 ], + [ 8.0077716, 47.1620291 ], + [ 8.0074432, 47.162043 ], + [ 8.0073284, 47.1620951 ], + [ 8.0070979, 47.1624027 ], + [ 8.006809, 47.1629879 ], + [ 8.0066721, 47.1635119 ], + [ 8.0066705, 47.16362 ], + [ 8.0067424, 47.1637083 ], + [ 8.0070271, 47.1641665 ], + [ 8.0070404, 47.164428 ], + [ 8.0063495, 47.1651199 ], + [ 8.005866, 47.1655307 ], + [ 8.0052781, 47.1658477 ], + [ 8.0047659, 47.166197 ], + [ 8.0043909, 47.1664527 ], + [ 8.0040762, 47.1666673 ], + [ 8.004671, 47.1709008 ], + [ 8.0046647, 47.1709656 ], + [ 8.0048517, 47.1713258 ], + [ 8.0051534, 47.1719068 ], + [ 8.0053581, 47.172301 ], + [ 8.0056574, 47.1728789 ], + [ 8.0056438, 47.1730184 ], + [ 8.0056436, 47.1730363 ], + [ 8.0056372, 47.1730925 ], + [ 8.0056782, 47.1730917 ], + [ 8.0093873, 47.1730737 ], + [ 8.0119276, 47.1775678 ], + [ 8.0117778, 47.1775721 ], + [ 8.0118734, 47.1807152 ], + [ 8.0120491, 47.1807161 ], + [ 8.012147, 47.1807192 ], + [ 8.0122426, 47.1807137 ], + [ 8.0149803, 47.1807112 ], + [ 8.0170515, 47.1807011 ], + [ 8.0170871, 47.1807009 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "WZV0035", + "country" : "CHE", + "name" : [ + { + "text" : "Wasser- und Zugvogelreservat Wauwilermoos", + "lang" : "de-CH" + }, + { + "text" : "Réserve d'oiseaux d'eau et de migrateurs Wauwilermoos", + "lang" : "fr-CH" + }, + { + "text" : "Riserva di uccelli acquatici e migratori Wauwilermoos", + "lang" : "it-CH" + }, + { + "text" : "Water Bird and Migratory Bird Reserves Wauwilermoos", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7541671, 47.3821887 ], + [ 7.7544041, 47.3820404 ], + [ 7.7547437, 47.3820461 ], + [ 7.7549241, 47.3820476 ], + [ 7.7556392, 47.3820589 ], + [ 7.7557364, 47.3819631 ], + [ 7.7564843, 47.3819655 ], + [ 7.7573624, 47.3819437 ], + [ 7.7585855, 47.3819797 ], + [ 7.7590852, 47.3819259 ], + [ 7.7593747, 47.3817582 ], + [ 7.7601873, 47.3816957 ], + [ 7.7603917, 47.3816861 ], + [ 7.7607076, 47.3815585 ], + [ 7.7607044, 47.3814594 ], + [ 7.7609182, 47.3814427 ], + [ 7.7612993, 47.3814312 ], + [ 7.7617018, 47.3814229 ], + [ 7.7621456, 47.3814209 ], + [ 7.762637, 47.3814434 ], + [ 7.7626146, 47.3813068 ], + [ 7.7630504, 47.3812376 ], + [ 7.7637021, 47.3811568 ], + [ 7.7643735, 47.3807132 ], + [ 7.7650319, 47.3804921 ], + [ 7.7658662, 47.380404 ], + [ 7.7666161, 47.3803385 ], + [ 7.7675119, 47.3801205 ], + [ 7.7678702, 47.3798933 ], + [ 7.7685911, 47.3796306 ], + [ 7.7689042, 47.3793987 ], + [ 7.7691338, 47.3791879 ], + [ 7.7702507, 47.3789066 ], + [ 7.7704863, 47.3788473 ], + [ 7.7724339, 47.3784529 ], + [ 7.7733093, 47.3783167 ], + [ 7.7767756, 47.3783068 ], + [ 7.7770111, 47.3791179 ], + [ 7.7775375, 47.3790231 ], + [ 7.7779547, 47.3790656 ], + [ 7.7784337, 47.379031 ], + [ 7.7788033, 47.3789936 ], + [ 7.7790416, 47.3790386 ], + [ 7.7791471, 47.3790587 ], + [ 7.7792797, 47.3790826 ], + [ 7.7794887, 47.3790933 ], + [ 7.7797524, 47.3791128 ], + [ 7.7802086, 47.3791389 ], + [ 7.7802311, 47.3790152 ], + [ 7.7802728, 47.3788333 ], + [ 7.7805111, 47.3788484 ], + [ 7.781054, 47.3788359 ], + [ 7.7811999, 47.3788237 ], + [ 7.7817423, 47.3787809 ], + [ 7.7823173, 47.3789309 ], + [ 7.7829124, 47.3789169 ], + [ 7.7835194, 47.3788457 ], + [ 7.7835474, 47.3788478 ], + [ 7.7840312, 47.3788241 ], + [ 7.7841221, 47.3788112 ], + [ 7.7845062, 47.3786967 ], + [ 7.7847978, 47.3786782 ], + [ 7.7850751, 47.3786653 ], + [ 7.785462, 47.3787464 ], + [ 7.7857943, 47.3787821 ], + [ 7.7861514, 47.3787411 ], + [ 7.786461, 47.3787178 ], + [ 7.7865965, 47.3787166 ], + [ 7.7869579, 47.3787039 ], + [ 7.787675, 47.3787275 ], + [ 7.7880527, 47.3788231 ], + [ 7.7886141, 47.3787081 ], + [ 7.7893124, 47.3786405 ], + [ 7.7895627, 47.3789685 ], + [ 7.7897586, 47.3791035 ], + [ 7.7900568, 47.379091 ], + [ 7.7903859, 47.3791101 ], + [ 7.790556, 47.3792034 ], + [ 7.7909097, 47.379311 ], + [ 7.7908363, 47.3789478 ], + [ 7.7905337, 47.3785365 ], + [ 7.7904358, 47.3781223 ], + [ 7.7903553, 47.3777926 ], + [ 7.7901758, 47.3771626 ], + [ 7.7897013, 47.3774129 ], + [ 7.7893742, 47.3774332 ], + [ 7.7889304, 47.3773821 ], + [ 7.7886947, 47.3773012 ], + [ 7.7881067999999996, 47.377289 ], + [ 7.7876777, 47.377216 ], + [ 7.7873681999999995, 47.3772836 ], + [ 7.7870352, 47.3770858 ], + [ 7.7870197999999995, 47.3770811 ], + [ 7.786766, 47.3770246 ], + [ 7.786264, 47.3770083 ], + [ 7.785991, 47.3768703 ], + [ 7.7856439, 47.3767789 ], + [ 7.7849955, 47.3767595 ], + [ 7.7847551, 47.3767332 ], + [ 7.784324, 47.3767888 ], + [ 7.7841007, 47.3767831 ], + [ 7.7838975999999995, 47.376782 ], + [ 7.7828113, 47.3767672 ], + [ 7.7824871, 47.3769371 ], + [ 7.7817217, 47.3769245 ], + [ 7.7813377, 47.3768391 ], + [ 7.7802318, 47.3768765 ], + [ 7.7796343, 47.3768198 ], + [ 7.7790531, 47.3768099 ], + [ 7.7789753, 47.3768127 ], + [ 7.7784467, 47.376823 ], + [ 7.7777361, 47.3767891 ], + [ 7.7775131, 47.3767948 ], + [ 7.7772179, 47.3768022 ], + [ 7.7763653999999995, 47.3768941 ], + [ 7.7756674, 47.3769999 ], + [ 7.7751633, 47.3771279 ], + [ 7.7742093, 47.3771939 ], + [ 7.7734281, 47.3773852 ], + [ 7.7728987, 47.3774778 ], + [ 7.7726185, 47.3772485 ], + [ 7.7712535, 47.3774705 ], + [ 7.770735, 47.3775842 ], + [ 7.7699614, 47.377731 ], + [ 7.7693263, 47.3778829 ], + [ 7.769223, 47.3777849 ], + [ 7.7687678, 47.377453 ], + [ 7.7678625, 47.3782792 ], + [ 7.7677899, 47.3783418 ], + [ 7.7676647, 47.3784326 ], + [ 7.7675262, 47.3785139 ], + [ 7.767376, 47.378585 ], + [ 7.7672156999999995, 47.378645 ], + [ 7.767047, 47.3786934 ], + [ 7.7668718, 47.3787294 ], + [ 7.7666919, 47.3787529 ], + [ 7.7663193, 47.3788088 ], + [ 7.7659383, 47.3788944 ], + [ 7.7655727, 47.3790066 ], + [ 7.7654698, 47.3790405 ], + [ 7.7651932, 47.3791151 ], + [ 7.7649066, 47.3791697 ], + [ 7.7646132, 47.3792037 ], + [ 7.7643163, 47.3792167 ], + [ 7.7640188, 47.3792084 ], + [ 7.7635446, 47.3791365 ], + [ 7.7628063, 47.3793649 ], + [ 7.762406, 47.3794017 ], + [ 7.7621128, 47.3794851 ], + [ 7.7616506, 47.3796168 ], + [ 7.760714, 47.3800774 ], + [ 7.760004, 47.3801664 ], + [ 7.7597125, 47.3801872 ], + [ 7.7596591, 47.380191 ], + [ 7.7596381999999995, 47.3802047 ], + [ 7.7594998, 47.3802163 ], + [ 7.759384, 47.3802442 ], + [ 7.7592317, 47.3802971 ], + [ 7.7590806, 47.3802752 ], + [ 7.7589497, 47.3803073 ], + [ 7.7588675, 47.3803568 ], + [ 7.7584105999999995, 47.3803829 ], + [ 7.7582905, 47.3803608 ], + [ 7.7580355999999995, 47.3803486 ], + [ 7.7580072, 47.3803408 ], + [ 7.7580784, 47.3802522 ], + [ 7.7578712, 47.3802183 ], + [ 7.7577020999999995, 47.3802098 ], + [ 7.7574411, 47.3802257 ], + [ 7.7570703, 47.3802216 ], + [ 7.7568645, 47.3802557 ], + [ 7.756402, 47.3803985 ], + [ 7.7559093, 47.38048 ], + [ 7.7553447, 47.3805058 ], + [ 7.7549441, 47.3805355 ], + [ 7.7546869, 47.3805194 ], + [ 7.7543806, 47.3804814 ], + [ 7.7537574, 47.3804304 ], + [ 7.7535652, 47.3804254 ], + [ 7.7525831, 47.3804983 ], + [ 7.7515103, 47.3806112 ], + [ 7.7515153, 47.3806309 ], + [ 7.7518086, 47.3817867 ], + [ 7.7511869, 47.3818245 ], + [ 7.7507519, 47.3818714 ], + [ 7.7504808, 47.3809593 ], + [ 7.7503546, 47.3809895 ], + [ 7.7502441, 47.381007 ], + [ 7.7501108, 47.3810204 ], + [ 7.7499944, 47.381042 ], + [ 7.7499655, 47.3810206 ], + [ 7.7495749, 47.3808183 ], + [ 7.7493985, 47.3808362 ], + [ 7.7493801, 47.3808906 ], + [ 7.7493055, 47.380976 ], + [ 7.7492564999999995, 47.3810945 ], + [ 7.7493002, 47.3813127 ], + [ 7.749265, 47.3818 ], + [ 7.7493948, 47.3818383 ], + [ 7.749645, 47.3819136 ], + [ 7.7498322, 47.3820517 ], + [ 7.7493824, 47.3820367 ], + [ 7.7486712, 47.3819307 ], + [ 7.7484289, 47.3818731 ], + [ 7.748263, 47.3818315 ], + [ 7.7484037, 47.3820351 ], + [ 7.7484455, 47.3820955 ], + [ 7.748508, 47.3821615 ], + [ 7.7485347, 47.3822055 ], + [ 7.7486417, 47.3822662 ], + [ 7.7487323, 47.3823043 ], + [ 7.748795, 47.3823304 ], + [ 7.7490189, 47.382471699999996 ], + [ 7.7491944, 47.3825917 ], + [ 7.7496030000000005, 47.3822975 ], + [ 7.7497515, 47.3821898 ], + [ 7.749785, 47.3822123 ], + [ 7.7498832, 47.3822902 ], + [ 7.7499665, 47.3823436 ], + [ 7.7500565, 47.3823962 ], + [ 7.7501504, 47.3824458 ], + [ 7.7502591, 47.3824992 ], + [ 7.750353, 47.3825471 ], + [ 7.7504376, 47.382586 ], + [ 7.7506979, 47.3827144 ], + [ 7.7507543, 47.3827415 ], + [ 7.7507987, 47.3827722 ], + [ 7.7508443, 47.382813 ], + [ 7.7508835, 47.3828547 ], + [ 7.7509252, 47.3829028 ], + [ 7.7509467, 47.3829318 ], + [ 7.7509764, 47.3829535 ], + [ 7.7510207, 47.3829879 ], + [ 7.7510704, 47.3830141 ], + [ 7.7511562, 47.3830466 ], + [ 7.7512434, 47.3830701 ], + [ 7.7513412, 47.3831021 ], + [ 7.7513694, 47.3831138 ], + [ 7.7514512, 47.3831372 ], + [ 7.751525, 47.3831698 ], + [ 7.7515826, 47.3831905 ], + [ 7.751643, 47.3832067 ], + [ 7.7516862, 47.3832172 ], + [ 7.7517732, 47.3832404 ], + [ 7.7520447, 47.383115 ], + [ 7.7520875, 47.3827523 ], + [ 7.7520917, 47.3826964 ], + [ 7.7526209, 47.3824575 ], + [ 7.7535378999999995, 47.3823782 ], + [ 7.7541671, 47.3821887 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns281", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Rehhag", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Rehhag", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Rehhag", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Rehhag", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.8324894, 45.9873349 ], + [ 8.9112544, 46.0619235 ], + [ 8.9158594, 46.0657003 ], + [ 8.9211659, 46.0690011 ], + [ 8.9270741, 46.0717631 ], + [ 8.9334718, 46.0739338 ], + [ 8.9402376, 46.0754719 ], + [ 8.947243199999999, 46.0763483 ], + [ 8.9543554, 46.0765463 ], + [ 8.9614392, 46.0760621 ], + [ 8.96836, 46.074905 ], + [ 8.9749865, 46.0730969 ], + [ 8.9811929, 46.0706721 ], + [ 8.9868614, 46.0676768 ], + [ 8.9918844, 46.0641676 ], + [ 8.9961668, 46.0602114 ], + [ 8.9996275, 46.055883 ], + [ 9.0022009, 46.0512647 ], + [ 9.0038386, 46.0464441 ], + [ 9.0045098, 46.0415124 ], + [ 9.0042019, 46.0365634 ], + [ 9.002921, 46.0316907 ], + [ 9.0006917, 46.0269866 ], + [ 8.9975564, 46.0225403 ], + [ 8.9104495, 45.9176513 ], + [ 8.909538, 45.9176964 ], + [ 8.9074461, 45.917790600000004 ], + [ 8.9040166, 45.9220453 ], + [ 8.9024325, 45.9232429 ], + [ 8.9016458, 45.9237114 ], + [ 8.9004046, 45.9241255 ], + [ 8.8989845, 45.924945 ], + [ 8.8975707, 45.9258358 ], + [ 8.8968169, 45.9264458 ], + [ 8.8961006, 45.9271719 ], + [ 8.8954549, 45.9282178 ], + [ 8.8951189, 45.928735 ], + [ 8.8945744, 45.9295379 ], + [ 8.893315, 45.9311823 ], + [ 8.893126, 45.931766 ], + [ 8.8929305, 45.9323407 ], + [ 8.8927718, 45.9334217 ], + [ 8.8927241, 45.9342723 ], + [ 8.8929588, 45.9351684 ], + [ 8.8930434, 45.9357067 ], + [ 8.8934974, 45.9373881 ], + [ 8.8941782, 45.9384306 ], + [ 8.894631799999999, 45.9390536 ], + [ 8.8951443, 45.9397918 ], + [ 8.8959902, 45.9407616 ], + [ 8.8965462, 45.9414318 ], + [ 8.8974507, 45.9428423 ], + [ 8.8979657, 45.943702 ], + [ 8.8984001, 45.9450531 ], + [ 8.8985964, 45.9462602 ], + [ 8.8985008, 45.9474757 ], + [ 8.898199, 45.9489299 ], + [ 8.8980698, 45.9493566 ], + [ 8.8971368, 45.9503986 ], + [ 8.8968674, 45.9508434 ], + [ 8.8967165, 45.9513358 ], + [ 8.8966376, 45.9518926 ], + [ 8.8966695, 45.9530855 ], + [ 8.8966703, 45.9541266 ], + [ 8.8966468, 45.9547532 ], + [ 8.895147, 45.9570367 ], + [ 8.893658, 45.9589814 ], + [ 8.8870879, 45.9575787 ], + [ 8.884068899999999, 45.9572394 ], + [ 8.8799383, 45.9567513 ], + [ 8.8782128, 45.9566418 ], + [ 8.8774519, 45.9569725 ], + [ 8.8766025, 45.9575171 ], + [ 8.8761219, 45.9578831 ], + [ 8.8757436, 45.9582119 ], + [ 8.8756303, 45.9583213 ], + [ 8.8754032, 45.9585131 ], + [ 8.8752056, 45.9587187 ], + [ 8.875085200000001, 45.9588195 ], + [ 8.8749532, 45.9589129 ], + [ 8.8748105, 45.9589984 ], + [ 8.8746581, 45.9590753 ], + [ 8.874497, 45.959143 ], + [ 8.8743284, 45.9592012 ], + [ 8.8741535, 45.9592494 ], + [ 8.8739734, 45.9592872 ], + [ 8.8737894, 45.9593145 ], + [ 8.8736028, 45.959331 ], + [ 8.8734149, 45.9593366 ], + [ 8.8732627, 45.9593358 ], + [ 8.8730482, 45.9593423 ], + [ 8.8728352, 45.9593612 ], + [ 8.8726251, 45.9593924 ], + [ 8.8724196, 45.9594357 ], + [ 8.8722199, 45.9594907 ], + [ 8.8720275, 45.9595572 ], + [ 8.8718436, 45.9596345 ], + [ 8.8716696, 45.9597223 ], + [ 8.871338, 45.9599222 ], + [ 8.8711571, 45.960014 ], + [ 8.8709656, 45.9600945 ], + [ 8.8707647, 45.9601631 ], + [ 8.8705561, 45.9602194 ], + [ 8.8703413, 45.9602628 ], + [ 8.8699789, 45.9602469 ], + [ 8.8697341, 45.960259 ], + [ 8.8695287, 45.9602976 ], + [ 8.8682986, 45.9606192 ], + [ 8.8678005, 45.9609323 ], + [ 8.867610299999999, 45.9611316 ], + [ 8.8665776, 45.9627813 ], + [ 8.866323, 45.9631525 ], + [ 8.8653748, 45.964507 ], + [ 8.8651137, 45.9649041 ], + [ 8.8647332, 45.9654579 ], + [ 8.8641897, 45.9654258 ], + [ 8.8635648, 45.9654689 ], + [ 8.8630128, 45.9655365 ], + [ 8.8622576, 45.9656546 ], + [ 8.8612894, 45.9658837 ], + [ 8.8606932, 45.9661111 ], + [ 8.8601335, 45.9664078 ], + [ 8.8596071, 45.9667303 ], + [ 8.859342999999999, 45.9669814 ], + [ 8.8591883, 45.9670328 ], + [ 8.8589967, 45.9671071 ], + [ 8.8585551, 45.9673802 ], + [ 8.8581027, 45.9677441 ], + [ 8.8579663, 45.9678247 ], + [ 8.8578269, 45.967934 ], + [ 8.8576751, 45.968035 ], + [ 8.8575121, 45.9681271 ], + [ 8.8573389, 45.9682097 ], + [ 8.8565621, 45.9685524 ], + [ 8.8563548, 45.9686484 ], + [ 8.8561618, 45.9687579 ], + [ 8.8559848, 45.9688799 ], + [ 8.8551931, 45.9694897 ], + [ 8.8538621, 45.9705292 ], + [ 8.8535791, 45.9707502 ], + [ 8.8534053, 45.9708925 ], + [ 8.8532387, 45.971038899999996 ], + [ 8.8530795, 45.9711893 ], + [ 8.8528635, 45.9713828 ], + [ 8.8526247, 45.9715629 ], + [ 8.8523648, 45.9717281 ], + [ 8.8520857, 45.9718773 ], + [ 8.8517894, 45.9720094 ], + [ 8.851478, 45.9721234 ], + [ 8.8511538, 45.9722185 ], + [ 8.8507444, 45.9723467 ], + [ 8.8503526, 45.9724992 ], + [ 8.8499812, 45.9726748 ], + [ 8.8496332, 45.9728723 ], + [ 8.849311, 45.9730901 ], + [ 8.8490172, 45.9733266 ], + [ 8.848754, 45.97358 ], + [ 8.8485233, 45.9738484 ], + [ 8.848327, 45.9741298 ], + [ 8.8481665, 45.974422 ], + [ 8.8479711, 45.9748987 ], + [ 8.847879, 45.9750699 ], + [ 8.8477672, 45.9752354 ], + [ 8.8476365, 45.975394 ], + [ 8.8474877, 45.9755447 ], + [ 8.847322, 45.9756864 ], + [ 8.8471665, 45.9758113 ], + [ 8.8462841, 45.9764472 ], + [ 8.8461599, 45.9765252 ], + [ 8.8460268, 45.9765958 ], + [ 8.8458857, 45.9766583 ], + [ 8.8457375, 45.9767125 ], + [ 8.8455493, 45.9767553 ], + [ 8.8453565, 45.9767868 ], + [ 8.8451605, 45.9768068 ], + [ 8.8449628, 45.976815 ], + [ 8.8446431, 45.9768187 ], + [ 8.844624, 45.9768208 ], + [ 8.8446008, 45.9768285 ], + [ 8.8445274, 45.976868 ], + [ 8.8444891, 45.9768823 ], + [ 8.8444478, 45.9768917 ], + [ 8.8443544, 45.9769045 ], + [ 8.8442852, 45.9769289 ], + [ 8.8440957, 45.9770347 ], + [ 8.8439377, 45.9771381 ], + [ 8.8437915, 45.9772497 ], + [ 8.8436579, 45.9773688 ], + [ 8.8434644, 45.9775674 ], + [ 8.8434284, 45.9776079 ], + [ 8.8433623, 45.9777135 ], + [ 8.8433156, 45.977903 ], + [ 8.8433004, 45.9783171 ], + [ 8.843341, 45.9786405 ], + [ 8.8433278, 45.978847 ], + [ 8.8432175, 45.9792813 ], + [ 8.8432119, 45.9795069 ], + [ 8.8432236, 45.9796017 ], + [ 8.843332, 45.9798597 ], + [ 8.8433667, 45.9799935 ], + [ 8.8433659, 45.9800799 ], + [ 8.8432935, 45.9803664 ], + [ 8.8432464, 45.980522 ], + [ 8.8426977, 45.9814711 ], + [ 8.8401024, 45.9816592 ], + [ 8.8400588, 45.981730999999996 ], + [ 8.8398175, 45.9820655 ], + [ 8.8397683, 45.9821246 ], + [ 8.839716, 45.9822111 ], + [ 8.8396597, 45.982399 ], + [ 8.8396486, 45.9824792 ], + [ 8.839683, 45.9827646 ], + [ 8.8396959, 45.9828252 ], + [ 8.8397001, 45.982921 ], + [ 8.8396866, 45.9830175 ], + [ 8.839663, 45.9831243 ], + [ 8.8395429, 45.983532 ], + [ 8.839492, 45.9838313 ], + [ 8.8394322, 45.9839601 ], + [ 8.8393832, 45.984048 ], + [ 8.8393302, 45.98413 ], + [ 8.8392329, 45.9842207 ], + [ 8.8391126, 45.9842954 ], + [ 8.8389401, 45.9843775 ], + [ 8.838805, 45.9844183 ], + [ 8.8386506, 45.9844399 ], + [ 8.8384906, 45.9844297 ], + [ 8.8383468, 45.9844371 ], + [ 8.8382391, 45.9844671 ], + [ 8.8378924, 45.9845929 ], + [ 8.8376273, 45.9846593 ], + [ 8.8374858, 45.9846816 ], + [ 8.8371421, 45.9846549 ], + [ 8.8369145, 45.9846404 ], + [ 8.836624, 45.9846487 ], + [ 8.8363358, 45.9846822 ], + [ 8.8360009, 45.9847699 ], + [ 8.8354125, 45.9848664 ], + [ 8.8349369, 45.9849914 ], + [ 8.8346527, 45.9850266 ], + [ 8.8343988, 45.9850848 ], + [ 8.8341248, 45.9852163 ], + [ 8.8339778, 45.9853262 ], + [ 8.8338288, 45.9855504 ], + [ 8.8336918, 45.985815 ], + [ 8.833369, 45.9862181 ], + [ 8.8330708, 45.9865084 ], + [ 8.8329975, 45.9866117 ], + [ 8.8327791, 45.9869938 ], + [ 8.8325621, 45.9872851 ], + [ 8.8324894, 45.9873349 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 120, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "CTR0010", + "country" : "CHE", + "name" : [ + { + "text" : "CTR LUGANO", + "lang" : "de-CH" + }, + { + "text" : "CTR LUGANO", + "lang" : "fr-CH" + }, + { + "text" : "CTR LUGANO", + "lang" : "it-CH" + }, + { + "text" : "CTR LUGANO", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only permitted from an altitude of 120 m above ground with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Skyguide Special Flight Office", + "lang" : "de-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "it-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "en-GB" + } + ], + "siteURL" : "https://skyguide.ch/services/special-flights", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7614297, 47.4002226 ], + [ 7.7613704, 47.3997785 ], + [ 7.7613629, 47.3997229 ], + [ 7.7613676, 47.3997216 ], + [ 7.7614028, 47.3997087 ], + [ 7.7613979, 47.3997055 ], + [ 7.7618777, 47.3995346 ], + [ 7.7622143999999995, 47.3994345 ], + [ 7.7623048, 47.3993861 ], + [ 7.7625674, 47.3992434 ], + [ 7.7629835, 47.3990464 ], + [ 7.7635741, 47.3989847 ], + [ 7.7637901, 47.3989821 ], + [ 7.763775, 47.3993077 ], + [ 7.7637602, 47.3996246 ], + [ 7.7638823, 47.3996845 ], + [ 7.7638951, 47.3996908 ], + [ 7.7640218999999995, 47.3996494 ], + [ 7.764158, 47.3995633 ], + [ 7.7642204, 47.3994418 ], + [ 7.7659845, 47.3984246 ], + [ 7.7659669000000005, 47.398414 ], + [ 7.7659506, 47.3984024 ], + [ 7.765936, 47.39839 ], + [ 7.7659229, 47.3983767 ], + [ 7.7659116, 47.3983627 ], + [ 7.7659021, 47.3983481 ], + [ 7.7658945, 47.398333 ], + [ 7.7658888, 47.3983175 ], + [ 7.7651829, 47.3972507 ], + [ 7.7651192, 47.3972507 ], + [ 7.7650664, 47.3972537 ], + [ 7.7650068999999995, 47.3972527 ], + [ 7.7649533, 47.39725 ], + [ 7.764889, 47.397235 ], + [ 7.7648667, 47.3972332 ], + [ 7.7648448, 47.39723 ], + [ 7.7648235, 47.3972253 ], + [ 7.7647001, 47.3971904 ], + [ 7.7645806, 47.3971497 ], + [ 7.7644656, 47.3971035 ], + [ 7.7641862, 47.3969823 ], + [ 7.7641225, 47.3969529 ], + [ 7.7638467, 47.3968177 ], + [ 7.7638129, 47.3968006 ], + [ 7.7637799, 47.3967828 ], + [ 7.7637477, 47.3967643 ], + [ 7.763542, 47.3966423 ], + [ 7.7634745, 47.3966064 ], + [ 7.7634833, 47.3965684 ], + [ 7.7634602, 47.3965241 ], + [ 7.7634373, 47.3965157 ], + [ 7.7634135, 47.3965087 ], + [ 7.7633889, 47.396503 ], + [ 7.7632487999999995, 47.3964787 ], + [ 7.7631092, 47.3964532 ], + [ 7.7629701, 47.3964265 ], + [ 7.7628495, 47.3964033 ], + [ 7.7627266, 47.3963869 ], + [ 7.7626021, 47.3963774 ], + [ 7.7624769, 47.3963749 ], + [ 7.7623394999999995, 47.396378 ], + [ 7.7622032, 47.3963899 ], + [ 7.7620691, 47.3964103 ], + [ 7.7619734, 47.3964346 ], + [ 7.7618799, 47.3964624 ], + [ 7.7617887, 47.3964936 ], + [ 7.7617492, 47.3965083 ], + [ 7.7617079, 47.3965206 ], + [ 7.7616653, 47.3965305 ], + [ 7.7616215, 47.3965379 ], + [ 7.761577, 47.3965427 ], + [ 7.7615321, 47.3965449 ], + [ 7.7614804, 47.3965445 ], + [ 7.761429, 47.3965411 ], + [ 7.7613782, 47.3965346 ], + [ 7.7613285, 47.396525 ], + [ 7.7612802, 47.3965125 ], + [ 7.7612596, 47.3965071 ], + [ 7.7612397, 47.3965003 ], + [ 7.7612208, 47.3964924 ], + [ 7.7612030999999995, 47.3964833 ], + [ 7.7611867, 47.3964732 ], + [ 7.7611717, 47.3964621 ], + [ 7.7611583, 47.3964501 ], + [ 7.7611465, 47.3964373 ], + [ 7.7611431, 47.3964316 ], + [ 7.7611404, 47.3964257 ], + [ 7.7611386, 47.3964197 ], + [ 7.7611374, 47.3964136 ], + [ 7.7611371, 47.3964074 ], + [ 7.7600209, 47.396436 ], + [ 7.75897, 47.3965222 ], + [ 7.7583573, 47.3966191 ], + [ 7.7575697, 47.3967879 ], + [ 7.7568871, 47.3969206 ], + [ 7.754593, 47.3971768 ], + [ 7.7540852000000005, 47.3972377 ], + [ 7.7535963, 47.3975365 ], + [ 7.752792, 47.3978481 ], + [ 7.7524744, 47.3979826 ], + [ 7.7530401, 47.3979819 ], + [ 7.7535788, 47.3978954 ], + [ 7.7537721, 47.3978632 ], + [ 7.7540933, 47.397826 ], + [ 7.7544277, 47.3977879 ], + [ 7.7546513, 47.3978077 ], + [ 7.7549082, 47.3978361 ], + [ 7.755072, 47.3980098 ], + [ 7.7552652, 47.3982133 ], + [ 7.7552791, 47.3982279 ], + [ 7.7553088, 47.3982592 ], + [ 7.7557355, 47.3980367 ], + [ 7.7558066, 47.398004 ], + [ 7.7561812, 47.3980448 ], + [ 7.7564872, 47.3979123 ], + [ 7.7568535, 47.3977534 ], + [ 7.7573664, 47.3978863 ], + [ 7.7575883999999995, 47.3980155 ], + [ 7.7578286, 47.3981501 ], + [ 7.7581725, 47.3982284 ], + [ 7.7585006, 47.3983075 ], + [ 7.7587782, 47.398358 ], + [ 7.7590603, 47.3984456 ], + [ 7.7593284, 47.3985376 ], + [ 7.7599807, 47.3985518 ], + [ 7.7598009999999995, 47.3986502 ], + [ 7.7597834, 47.3986612 ], + [ 7.7596893, 47.3987485 ], + [ 7.7593993999999995, 47.398903 ], + [ 7.7590052, 47.3990889 ], + [ 7.7586501, 47.399288 ], + [ 7.7583546, 47.3994283 ], + [ 7.7579214, 47.3995672 ], + [ 7.7574475, 47.399681 ], + [ 7.7572476, 47.399650199999996 ], + [ 7.7568304, 47.399913 ], + [ 7.7567164, 47.3999956 ], + [ 7.756822, 47.4001872 ], + [ 7.7568147, 47.4003896 ], + [ 7.7574438, 47.4004138 ], + [ 7.7578281, 47.4003962 ], + [ 7.7580198, 47.4003862 ], + [ 7.7581039, 47.4003819 ], + [ 7.7582208, 47.4003482 ], + [ 7.7583431, 47.400337 ], + [ 7.7585439, 47.4003106 ], + [ 7.7585934, 47.4003105 ], + [ 7.7587093, 47.4002703 ], + [ 7.7588405, 47.400167 ], + [ 7.7589623, 47.4001041 ], + [ 7.7590729, 47.4000615 ], + [ 7.7592066, 47.4000586 ], + [ 7.7592896, 47.4000547 ], + [ 7.7595453, 47.399985 ], + [ 7.7595811, 47.3999204 ], + [ 7.7596408, 47.3999132 ], + [ 7.7597712, 47.399924 ], + [ 7.7598475, 47.4000103 ], + [ 7.7599279, 47.4000097 ], + [ 7.7601501, 47.3999929 ], + [ 7.7602655, 47.4000147 ], + [ 7.7604313, 47.4000158 ], + [ 7.7606380999999995, 47.3999811 ], + [ 7.7609968, 47.3999947 ], + [ 7.7610379, 47.4001277 ], + [ 7.7610396999999995, 47.400205 ], + [ 7.761082, 47.4003101 ], + [ 7.7610878, 47.4003914 ], + [ 7.7611629, 47.4004851 ], + [ 7.7612412, 47.4005492 ], + [ 7.7613135, 47.4005501 ], + [ 7.7614297, 47.4002226 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns333", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Dielenberg - Hangelimatt", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Dielenberg - Hangelimatt", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Dielenberg - Hangelimatt", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Dielenberg - Hangelimatt", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8268071, 47.4637121 ], + [ 7.826807, 47.4637197 ], + [ 7.8268078, 47.4638306 ], + [ 7.8268082, 47.4638847 ], + [ 7.8270572, 47.4640235 ], + [ 7.8270968, 47.4640455 ], + [ 7.8272629, 47.464086 ], + [ 7.8274624, 47.4641041 ], + [ 7.8276771, 47.4640907 ], + [ 7.8279628, 47.4639852 ], + [ 7.828058, 47.4638972 ], + [ 7.8284294, 47.4638063 ], + [ 7.8284896, 47.4637217 ], + [ 7.8286654, 47.4636289 ], + [ 7.8286452, 47.4635653 ], + [ 7.8286416, 47.4635537 ], + [ 7.8285176, 47.4635988 ], + [ 7.8284359, 47.4636204 ], + [ 7.8283887, 47.4636365 ], + [ 7.8282682, 47.4636597 ], + [ 7.8282224, 47.4636685 ], + [ 7.8280806, 47.463695799999996 ], + [ 7.8280718, 47.4637018 ], + [ 7.8280425000000005, 47.4637054 ], + [ 7.8278589, 47.4637278 ], + [ 7.8277828, 47.4637359 ], + [ 7.8276006, 47.4637436 ], + [ 7.8275777, 47.4637445 ], + [ 7.8275566, 47.4637454 ], + [ 7.8273378000000005, 47.4637449 ], + [ 7.8270339, 47.4637376 ], + [ 7.8268071, 47.4637121 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr102", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Wolfacher", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Wolfacher", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Wolfacher", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Wolfacher", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.0332529, 46.1724207 ], + [ 6.0343228, 46.1731642 ], + [ 6.0346506, 46.1733166 ], + [ 6.0360497, 46.1737199 ], + [ 6.0375645, 46.1737208 ], + [ 6.0389645, 46.1733191 ], + [ 6.040037, 46.172576 ], + [ 6.0400746, 46.172537 ], + [ 6.0405853, 46.17177 ], + [ 6.0407295, 46.1709309 ], + [ 6.0404931, 46.1701019 ], + [ 6.0398992, 46.1693644 ], + [ 6.0390061, 46.1687906 ], + [ 6.038678, 46.1686383 ], + [ 6.0375729, 46.1682845 ], + [ 6.0363644, 46.1681856 ], + [ 6.0351712, 46.1683513 ], + [ 6.0341103, 46.1687654 ], + [ 6.0332859, 46.1693872 ], + [ 6.0332485, 46.1694262 ], + [ 6.0326717, 46.1703982 ], + [ 6.0326733, 46.1714495 ], + [ 6.0332529, 46.1724207 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-44", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4206072, 47.4026984 ], + [ 7.4206112, 47.4027397 ], + [ 7.4205906, 47.4027453 ], + [ 7.4204228, 47.4027976 ], + [ 7.420056, 47.4029392 ], + [ 7.419829, 47.4030262 ], + [ 7.4198367, 47.4030819 ], + [ 7.4197874, 47.4030853 ], + [ 7.4197684, 47.4031797 ], + [ 7.4197528, 47.4033238 ], + [ 7.4197922, 47.4035097 ], + [ 7.4197478, 47.4035359 ], + [ 7.4194676, 47.4036038 ], + [ 7.4194286, 47.4036355 ], + [ 7.4193013, 47.4036946 ], + [ 7.4191186, 47.4037541 ], + [ 7.4189997, 47.4037917 ], + [ 7.4189987, 47.4038912 ], + [ 7.4191494, 47.4038888 ], + [ 7.4193521, 47.4038731 ], + [ 7.4195474, 47.4038421 ], + [ 7.4196082, 47.4039316 ], + [ 7.4197136, 47.4040145 ], + [ 7.4198354, 47.4040148 ], + [ 7.4199675, 47.4040257 ], + [ 7.4200948, 47.4040417 ], + [ 7.4200949, 47.404048 ], + [ 7.4199536, 47.4040432 ], + [ 7.4198354, 47.4040292 ], + [ 7.4197357, 47.404029 ], + [ 7.4198334, 47.4040877 ], + [ 7.4200866, 47.4040657 ], + [ 7.4201322, 47.4040426 ], + [ 7.4202621, 47.4040065 ], + [ 7.4204265, 47.4039792 ], + [ 7.4206584, 47.4039507 ], + [ 7.4208687, 47.4039123 ], + [ 7.4209391, 47.4039 ], + [ 7.4211766, 47.4038525 ], + [ 7.4214413, 47.403785 ], + [ 7.4216584, 47.4037154 ], + [ 7.4218548, 47.403631 ], + [ 7.4220257, 47.403522 ], + [ 7.4222295, 47.403373 ], + [ 7.4222487, 47.4033599 ], + [ 7.4224674, 47.4032104 ], + [ 7.4227209, 47.4030322 ], + [ 7.4229007, 47.4029327 ], + [ 7.4229618, 47.4029051 ], + [ 7.4230792, 47.4028522 ], + [ 7.4232872, 47.4027506 ], + [ 7.423366, 47.4027118 ], + [ 7.4234483, 47.4026766 ], + [ 7.4235337999999995, 47.4026451 ], + [ 7.4236222, 47.4026176 ], + [ 7.4238049, 47.4025617 ], + [ 7.4239095, 47.4025297 ], + [ 7.4240917, 47.4024669 ], + [ 7.4242775, 47.4023882 ], + [ 7.4245354, 47.4022757 ], + [ 7.4247878, 47.4021773 ], + [ 7.424926, 47.4021274 ], + [ 7.4249465, 47.4021213 ], + [ 7.4250043, 47.4020994 ], + [ 7.4252192, 47.4020149 ], + [ 7.4253292, 47.4018822 ], + [ 7.4253744, 47.4017906 ], + [ 7.4254683, 47.4014165 ], + [ 7.4254736, 47.401394 ], + [ 7.4254889, 47.4013289 ], + [ 7.425446, 47.4013191 ], + [ 7.4254389, 47.4012748 ], + [ 7.4253655, 47.4012701 ], + [ 7.4252882, 47.401314 ], + [ 7.4250634, 47.4012736 ], + [ 7.4247435, 47.4012174 ], + [ 7.4247315, 47.4012614 ], + [ 7.4244655999999996, 47.4012543 ], + [ 7.4241195, 47.4012575 ], + [ 7.4238566, 47.4013247 ], + [ 7.4238354, 47.4013808 ], + [ 7.4238071, 47.4015105 ], + [ 7.4237441, 47.4016163 ], + [ 7.4235707, 47.4016962 ], + [ 7.4235445, 47.4018062 ], + [ 7.4235631, 47.4019004 ], + [ 7.423558, 47.4019737 ], + [ 7.4234539999999996, 47.4020579 ], + [ 7.4232551, 47.4021309 ], + [ 7.4230865999999995, 47.4022066 ], + [ 7.4228299, 47.4023037 ], + [ 7.4225462, 47.4024222 ], + [ 7.4222898, 47.4025469 ], + [ 7.422023, 47.4026401 ], + [ 7.4218799, 47.4026322 ], + [ 7.4216692, 47.4027325 ], + [ 7.4215498, 47.4027789 ], + [ 7.4214756, 47.4027846 ], + [ 7.4214341, 47.4027878 ], + [ 7.4212732, 47.4028232 ], + [ 7.4211027, 47.4028029 ], + [ 7.4209851, 47.4027759 ], + [ 7.4208011, 47.4027607 ], + [ 7.4206072, 47.4026984 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr051", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Sägibergli", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Sägibergli", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Sägibergli", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Sägibergli", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.9328717, 46.4681735 ], + [ 9.9325783, 46.4683193 ], + [ 9.9323178, 46.4684536 ], + [ 9.9322276, 46.4685001 ], + [ 9.9320656, 46.4686581 ], + [ 9.9319675, 46.468721 ], + [ 9.931727, 46.4688011 ], + [ 9.9315332, 46.4688522 ], + [ 9.9312369, 46.4692074 ], + [ 9.930991, 46.4693826 ], + [ 9.93072, 46.4695441 ], + [ 9.9304747, 46.4697333 ], + [ 9.9303699, 46.4699334 ], + [ 9.9303122, 46.4701129 ], + [ 9.9302149, 46.4702988 ], + [ 9.930095099999999, 46.4703666 ], + [ 9.9298739, 46.470459 ], + [ 9.929568, 46.470658 ], + [ 9.9293096, 46.4709182 ], + [ 9.9292325, 46.4710283 ], + [ 9.9291275, 46.4711344 ], + [ 9.9288398, 46.4712884 ], + [ 9.9282756, 46.4715882 ], + [ 9.9280413, 46.471769 ], + [ 9.9278982, 46.4719159 ], + [ 9.9278316, 46.4719732 ], + [ 9.9277926, 46.47201 ], + [ 9.9277542, 46.4720587 ], + [ 9.9278373, 46.4720968 ], + [ 9.9278915, 46.4721594 ], + [ 9.9279068, 46.472227 ], + [ 9.9279045, 46.4724427 ], + [ 9.9277294, 46.4725303 ], + [ 9.9276494, 46.472667799999996 ], + [ 9.9276505, 46.4728154 ], + [ 9.9274393, 46.4731275 ], + [ 9.92723, 46.4734793 ], + [ 9.9270527, 46.4736429 ], + [ 9.9268613, 46.4737468 ], + [ 9.9265572, 46.4739172 ], + [ 9.9260458, 46.4741081 ], + [ 9.9256455, 46.4742046 ], + [ 9.9253228, 46.4743394 ], + [ 9.9251684, 46.4745065 ], + [ 9.9246422, 46.4748733 ], + [ 9.9243619, 46.475063 ], + [ 9.924123999999999, 46.4752918 ], + [ 9.9239707, 46.4756065 ], + [ 9.9239164, 46.4758073 ], + [ 9.9239711, 46.4758619 ], + [ 9.9239747, 46.4759417 ], + [ 9.9238294, 46.4760407 ], + [ 9.9236398, 46.4765758 ], + [ 9.9229814, 46.4773287 ], + [ 9.9228168, 46.4773962 ], + [ 9.9226164, 46.4775723 ], + [ 9.9224391, 46.4778595 ], + [ 9.9222008, 46.4783278 ], + [ 9.9221148, 46.4784774 ], + [ 9.9217488, 46.478681 ], + [ 9.9217062, 46.4787657 ], + [ 9.9216836, 46.4788939 ], + [ 9.9216462, 46.4789666 ], + [ 9.9214676, 46.4791023 ], + [ 9.9209102, 46.4794298 ], + [ 9.9204379, 46.4797156 ], + [ 9.920141, 46.4799177 ], + [ 9.9200489, 46.4800394 ], + [ 9.9198632, 46.4801633 ], + [ 9.9196449, 46.4803037 ], + [ 9.919453, 46.4804157 ], + [ 9.9192087, 46.4805049 ], + [ 9.9187204, 46.4805634 ], + [ 9.9184018, 46.4806661 ], + [ 9.9179716, 46.4808752 ], + [ 9.9176477, 46.4812336 ], + [ 9.9174773, 46.4813012 ], + [ 9.9170952, 46.4812975 ], + [ 9.9169354, 46.4813289 ], + [ 9.9168228, 46.4813952 ], + [ 9.9166131, 46.4814916 ], + [ 9.9158647, 46.4817082 ], + [ 9.9156579, 46.4819719 ], + [ 9.9159086, 46.4821837 ], + [ 9.9162596, 46.4823989 ], + [ 9.916711, 46.4826345 ], + [ 9.9169171, 46.4827786 ], + [ 9.9172156, 46.4831099 ], + [ 9.9173306, 46.4832563 ], + [ 9.9175073, 46.4834702 ], + [ 9.917599599999999, 46.4835869 ], + [ 9.9176854, 46.4836954 ], + [ 9.9178531, 46.4839093 ], + [ 9.9180637, 46.4841338 ], + [ 9.9182814, 46.484335 ], + [ 9.9182852, 46.4843378 ], + [ 9.918686, 46.4846349 ], + [ 9.9192146, 46.4849202 ], + [ 9.9194367, 46.4850583 ], + [ 9.9196591, 46.4851848 ], + [ 9.9198482, 46.4853121 ], + [ 9.9200629, 46.4854675 ], + [ 9.9203801, 46.4856719 ], + [ 9.9206023, 46.4858099 ], + [ 9.9208826, 46.4859394 ], + [ 9.9210865, 46.4860332 ], + [ 9.9211816, 46.4861725 ], + [ 9.921479099999999, 46.4862495 ], + [ 9.921754, 46.4863123 ], + [ 9.9220527, 46.4864161 ], + [ 9.9226844, 46.4865158 ], + [ 9.9229919, 46.4865271 ], + [ 9.923243, 46.486444 ], + [ 9.9234696, 46.4863763 ], + [ 9.9239319, 46.4862825 ], + [ 9.9241978, 46.4862379 ], + [ 9.9243809, 46.4861652 ], + [ 9.9245188, 46.4860636 ], + [ 9.9245994, 46.486029 ], + [ 9.9246977, 46.4860403 ], + [ 9.925040599999999, 46.4860948 ], + [ 9.9251983, 46.4860876 ], + [ 9.9253005, 46.486008 ], + [ 9.925616, 46.4858565 ], + [ 9.9258153, 46.4857814 ], + [ 9.9261245, 46.4857576 ], + [ 9.9268153, 46.4857252 ], + [ 9.9270197, 46.4857431 ], + [ 9.9272662, 46.4858283 ], + [ 9.9275096, 46.4858607 ], + [ 9.9277287, 46.485861 ], + [ 9.9279023, 46.4858461 ], + [ 9.9282274, 46.4857613 ], + [ 9.9285334, 46.4856502 ], + [ 9.928842, 46.4854911 ], + [ 9.9290882, 46.4854081 ], + [ 9.9292688, 46.4852786 ], + [ 9.9294939, 46.485199 ], + [ 9.9300639, 46.4850911 ], + [ 9.9302361, 46.4850285 ], + [ 9.9305469, 46.484791 ], + [ 9.9306998, 46.484629 ], + [ 9.9308996, 46.4845639 ], + [ 9.931297, 46.4844047 ], + [ 9.9315385, 46.4842723 ], + [ 9.9317889, 46.4841569 ], + [ 9.9321593, 46.4839408 ], + [ 9.9324924, 46.4838176 ], + [ 9.9329024, 46.4837385 ], + [ 9.9329477, 46.4836604 ], + [ 9.9332631, 46.4836663 ], + [ 9.9335854, 46.4835031 ], + [ 9.93393, 46.4832763 ], + [ 9.9341691, 46.4830921 ], + [ 9.9343367, 46.4829847 ], + [ 9.9346354, 46.4828221 ], + [ 9.9350182, 46.4826985 ], + [ 9.9353602, 46.4825394 ], + [ 9.9358542, 46.4824459 ], + [ 9.936239, 46.4823478 ], + [ 9.936361, 46.4821867 ], + [ 9.9365904, 46.4819681 ], + [ 9.9366925, 46.4820279 ], + [ 9.9368359, 46.4821005 ], + [ 9.9370437, 46.4820684 ], + [ 9.937206, 46.4821269 ], + [ 9.9373363, 46.4821447 ], + [ 9.9374637, 46.4821005 ], + [ 9.9375694, 46.4820086 ], + [ 9.9378518, 46.4818646 ], + [ 9.9381945, 46.4817192 ], + [ 9.9385396, 46.4816289 ], + [ 9.9389062, 46.4815795 ], + [ 9.9391448, 46.4815605 ], + [ 9.9394084, 46.4814513 ], + [ 9.9396575, 46.481432 ], + [ 9.9398929, 46.4813442 ], + [ 9.9400074, 46.4812315 ], + [ 9.9402104, 46.4810961 ], + [ 9.9403457, 46.4810105 ], + [ 9.9404291, 46.4808777 ], + [ 9.9407943, 46.4807801 ], + [ 9.9411548, 46.4805998 ], + [ 9.9413937, 46.4805877 ], + [ 9.9414527, 46.4805795 ], + [ 9.941555900000001, 46.4804326 ], + [ 9.9416516, 46.4803547 ], + [ 9.9419883, 46.4802922 ], + [ 9.9425584, 46.4799075 ], + [ 9.9428401, 46.4799599 ], + [ 9.943029, 46.479942 ], + [ 9.9435682, 46.4797336 ], + [ 9.9437795, 46.4795671 ], + [ 9.9439313, 46.4793984 ], + [ 9.9441647, 46.4792692 ], + [ 9.9441923, 46.4791438 ], + [ 9.9442108, 46.4789987 ], + [ 9.9441442, 46.4789322 ], + [ 9.944045, 46.4788463 ], + [ 9.944063, 46.4787955 ], + [ 9.944128899999999, 46.4787589 ], + [ 9.9441589, 46.4787394 ], + [ 9.9443752, 46.4786968 ], + [ 9.9447218, 46.4786212 ], + [ 9.9449337, 46.4784323 ], + [ 9.9450331, 46.4784163 ], + [ 9.9452817, 46.478404 ], + [ 9.9455942, 46.4782594 ], + [ 9.9457774, 46.4781175 ], + [ 9.9461971, 46.4781427 ], + [ 9.9465396, 46.4781891 ], + [ 9.9467109, 46.4782485 ], + [ 9.9471629, 46.4783211 ], + [ 9.947381, 46.4783025 ], + [ 9.9476252, 46.4781939 ], + [ 9.9478976, 46.4782567 ], + [ 9.9483019, 46.4783717 ], + [ 9.9485021, 46.4784043 ], + [ 9.9487163, 46.4784935 ], + [ 9.9488896, 46.4785428 ], + [ 9.9490812, 46.4785487 ], + [ 9.9493504, 46.4785073 ], + [ 9.949586, 46.4785123 ], + [ 9.9497348, 46.4784025 ], + [ 9.9498678, 46.4782677 ], + [ 9.9499918, 46.4780977 ], + [ 9.9501015, 46.4779178 ], + [ 9.9501847, 46.4778146 ], + [ 9.9505314, 46.4777055 ], + [ 9.9508399, 46.4775465 ], + [ 9.9510992, 46.4774495 ], + [ 9.9512477, 46.4773145 ], + [ 9.9514418, 46.4772341 ], + [ 9.9515271, 46.4771765 ], + [ 9.9515822, 46.4771013 ], + [ 9.9516097, 46.4770632 ], + [ 9.9517494, 46.4768978 ], + [ 9.9519932, 46.4766237 ], + [ 9.9520667, 46.47647 ], + [ 9.9521132, 46.4763676 ], + [ 9.9523356, 46.4762461 ], + [ 9.9525438, 46.4761553 ], + [ 9.9526638, 46.4761256 ], + [ 9.9527257, 46.4760743 ], + [ 9.952764, 46.4760042 ], + [ 9.9529702, 46.4756927 ], + [ 9.9532078, 46.4754801 ], + [ 9.953446, 46.475296 ], + [ 9.9537395, 46.4750418 ], + [ 9.9539845, 46.4748288 ], + [ 9.9542006, 46.4746798 ], + [ 9.9544572, 46.474524 ], + [ 9.9546674, 46.474421 ], + [ 9.9549602, 46.4743275 ], + [ 9.9552536, 46.4742282 ], + [ 9.9556023, 46.4740931 ], + [ 9.9559277, 46.4739815 ], + [ 9.9561313, 46.4739132 ], + [ 9.956384, 46.4738321 ], + [ 9.9567102, 46.4737378 ], + [ 9.9570634, 46.4736828 ], + [ 9.9574051, 46.4735708 ], + [ 9.9578411, 46.4733531 ], + [ 9.9581576, 46.4732416 ], + [ 9.958707, 46.4729751 ], + [ 9.9590974, 46.4728446 ], + [ 9.9595768, 46.4726659 ], + [ 9.9601443, 46.4724391 ], + [ 9.960519, 46.4723204 ], + [ 9.9608767, 46.4721851 ], + [ 9.9612682, 46.4720775 ], + [ 9.9619024, 46.471849 ], + [ 9.9623017, 46.4717355 ], + [ 9.9625059, 46.4716787 ], + [ 9.9631889, 46.4714316 ], + [ 9.9639634, 46.4712109 ], + [ 9.9645423, 46.4710355 ], + [ 9.9649275, 46.4709501 ], + [ 9.9653646, 46.4709824 ], + [ 9.9661968, 46.4711082 ], + [ 9.9681075, 46.471192 ], + [ 9.9685839, 46.4713317 ], + [ 9.9688763, 46.4714395 ], + [ 9.969051799999999, 46.4714837 ], + [ 9.9691483, 46.4714935 ], + [ 9.9692524, 46.4714912 ], + [ 9.969241199999999, 46.4714253 ], + [ 9.9692538, 46.4713288 ], + [ 9.9693271, 46.471225 ], + [ 9.9695135, 46.4711186 ], + [ 9.9697692, 46.4709985 ], + [ 9.969885, 46.4708638 ], + [ 9.9699944, 46.4707831 ], + [ 9.9702096, 46.4707362 ], + [ 9.9705913, 46.4707157 ], + [ 9.9712716, 46.4707426 ], + [ 9.971642899999999, 46.4706742 ], + [ 9.9723305, 46.4706829 ], + [ 9.9725627, 46.4706176 ], + [ 9.9730034, 46.4705536 ], + [ 9.973555, 46.470439 ], + [ 9.9741342, 46.4701676 ], + [ 9.9747142, 46.4699141 ], + [ 9.9749821, 46.4698292 ], + [ 9.9752656, 46.4695881 ], + [ 9.9757851, 46.4691735 ], + [ 9.9758135, 46.4689791 ], + [ 9.9758525, 46.4687179 ], + [ 9.9759479, 46.4685474 ], + [ 9.9759499, 46.4682771 ], + [ 9.976125, 46.4680691 ], + [ 9.9762389, 46.4676686 ], + [ 9.9763307, 46.4672635 ], + [ 9.9768678, 46.4668255 ], + [ 9.977221, 46.4664757 ], + [ 9.9774355, 46.46617 ], + [ 9.9775642, 46.4660855 ], + [ 9.9777156, 46.4660158 ], + [ 9.977743199999999, 46.465806 ], + [ 9.9775603, 46.4653764 ], + [ 9.977508199999999, 46.4652042 ], + [ 9.9775969, 46.464891 ], + [ 9.9775746, 46.46457 ], + [ 9.9776019, 46.4640593 ], + [ 9.9776124, 46.4638143 ], + [ 9.9777756, 46.4635095 ], + [ 9.9778188, 46.4633198 ], + [ 9.9778836, 46.4629817 ], + [ 9.977917, 46.462583 ], + [ 9.9779178, 46.4622871 ], + [ 9.9779625, 46.4619902 ], + [ 9.9779798, 46.4615613 ], + [ 9.9780203, 46.4613307 ], + [ 9.9780418, 46.4611466 ], + [ 9.9781243, 46.4610325 ], + [ 9.9781923, 46.4609034 ], + [ 9.9782611, 46.4607897 ], + [ 9.9783388, 46.4607114 ], + [ 9.9784691, 46.4608157 ], + [ 9.9785769, 46.4609102 ], + [ 9.9786186, 46.4608634 ], + [ 9.9786761, 46.4608212 ], + [ 9.9787595, 46.4608806 ], + [ 9.9788436, 46.4609399 ], + [ 9.9788854, 46.4610308 ], + [ 9.9788958, 46.4610969 ], + [ 9.9789889, 46.4612071 ], + [ 9.9791306, 46.4613824 ], + [ 9.9792407, 46.4613698 ], + [ 9.9792884, 46.4614503 ], + [ 9.9793069, 46.4615316 ], + [ 9.9793476, 46.4616021 ], + [ 9.9794431, 46.4617631 ], + [ 9.9796, 46.4619485 ], + [ 9.9796861, 46.462222 ], + [ 9.979771, 46.4624547 ], + [ 9.9797964, 46.4625256 ], + [ 9.9798673, 46.4626158 ], + [ 9.9799383, 46.4627061 ], + [ 9.980043, 46.4627344 ], + [ 9.9801185, 46.4626255 ], + [ 9.980137, 46.4625333 ], + [ 9.9802122, 46.4624194 ], + [ 9.9803952, 46.4625378 ], + [ 9.9804955, 46.4626274 ], + [ 9.9806097, 46.4627013 ], + [ 9.980695, 46.462628 ], + [ 9.9807568, 46.4625398 ], + [ 9.9808394, 46.4624104 ], + [ 9.980938, 46.4624643 ], + [ 9.9811669, 46.4626225 ], + [ 9.9813546, 46.4626846 ], + [ 9.9815075, 46.4624925 ], + [ 9.9816552, 46.4623259 ], + [ 9.9818074, 46.4624295 ], + [ 9.9820552, 46.4625057 ], + [ 9.9821297, 46.4623764 ], + [ 9.9821631, 46.4622889 ], + [ 9.9822509, 46.4621136 ], + [ 9.9823151, 46.4620764 ], + [ 9.9824818, 46.4621594 ], + [ 9.982718, 46.4623174 ], + [ 9.9828619, 46.4620896 ], + [ 9.9829253, 46.4620167 ], + [ 9.9831401, 46.4620325 ], + [ 9.9832665, 46.4620551 ], + [ 9.9833646, 46.4620987 ], + [ 9.9834284, 46.4620361 ], + [ 9.9835044, 46.4619375 ], + [ 9.9835589, 46.4618342 ], + [ 9.9836866, 46.4618824 ], + [ 9.9837511, 46.4618351 ], + [ 9.9837907, 46.4617424 ], + [ 9.983868, 46.4616539 ], + [ 9.9839824, 46.4617329 ], + [ 9.9840958, 46.4617916 ], + [ 9.9842238, 46.4616917 ], + [ 9.9843157, 46.4616031 ], + [ 9.984405, 46.4614582 ], + [ 9.9844205, 46.46132 ], + [ 9.9845389, 46.4613276 ], + [ 9.9845333, 46.4612105 ], + [ 9.9845361, 46.4611134 ], + [ 9.9847649, 46.4610981 ], + [ 9.9849359, 46.4609768 ], + [ 9.9850554, 46.4608518 ], + [ 9.9851173, 46.4607483 ], + [ 9.985359, 46.4607124 ], + [ 9.985566, 46.4607179 ], + [ 9.985707399999999, 46.46073 ], + [ 9.9856932, 46.4604623 ], + [ 9.9857354, 46.4602345 ], + [ 9.9858754, 46.4600798 ], + [ 9.9861648, 46.4599841 ], + [ 9.9864622, 46.4598697 ], + [ 9.9867695, 46.4596874 ], + [ 9.9869588, 46.4595416 ], + [ 9.9870757, 46.4594651 ], + [ 9.9869536, 46.459431 ], + [ 9.9871166, 46.4592981 ], + [ 9.9872406, 46.4591998 ], + [ 9.9873245, 46.4591826 ], + [ 9.987404399999999, 46.4591685 ], + [ 9.9875919, 46.4590013 ], + [ 9.9878003, 46.4589842 ], + [ 9.9878971, 46.4589483 ], + [ 9.9879827, 46.4588817 ], + [ 9.9879268, 46.4588184 ], + [ 9.988062, 46.4587691 ], + [ 9.9881857, 46.458751 ], + [ 9.9882646, 46.4587496 ], + [ 9.988324800000001, 46.4587307 ], + [ 9.9883245, 46.4586566 ], + [ 9.9883913, 46.4586742 ], + [ 9.9884835, 46.4586969 ], + [ 9.9884939, 46.4586576 ], + [ 9.9884914, 46.4586219 ], + [ 9.9884867, 46.4585566 ], + [ 9.9884445, 46.4585066 ], + [ 9.9884098, 46.4584787 ], + [ 9.9883729, 46.4584564 ], + [ 9.9883329, 46.4584357 ], + [ 9.9882942, 46.4584096 ], + [ 9.9883313, 46.4583857 ], + [ 9.9883803, 46.4583877 ], + [ 9.9884384, 46.4583944 ], + [ 9.988499, 46.4584023 ], + [ 9.9885934, 46.4583326 ], + [ 9.9885288, 46.4582755 ], + [ 9.9884945, 46.4582025 ], + [ 9.9886388, 46.4579653 ], + [ 9.9886164, 46.4578705 ], + [ 9.9885309, 46.4577494 ], + [ 9.9883732, 46.4576144 ], + [ 9.9882323, 46.4574577 ], + [ 9.9882362, 46.4572984 ], + [ 9.9882864, 46.457189 ], + [ 9.9881287, 46.4567783 ], + [ 9.9880876, 46.4564924 ], + [ 9.988010899999999, 46.4562456 ], + [ 9.987904, 46.4557382 ], + [ 9.9878536, 46.4554461 ], + [ 9.9876188, 46.4549544 ], + [ 9.9875379, 46.4546184 ], + [ 9.9873993, 46.4544048 ], + [ 9.9871316, 46.4542006 ], + [ 9.986722199999999, 46.4537318 ], + [ 9.9864109, 46.4533946 ], + [ 9.9861807, 46.4532087 ], + [ 9.985908, 46.4528961 ], + [ 9.98579, 46.4527394 ], + [ 9.9854611, 46.4522179 ], + [ 9.9850734, 46.451796 ], + [ 9.9848864, 46.4514548 ], + [ 9.9847574, 46.4511694 ], + [ 9.9845838, 46.4508165 ], + [ 9.9844208, 46.4506735 ], + [ 9.9842867, 46.4505745 ], + [ 9.9841811, 46.4503014 ], + [ 9.9840142, 46.4500402 ], + [ 9.9838641, 46.4497901 ], + [ 9.9836804, 46.4495349 ], + [ 9.9835203, 46.4492276 ], + [ 9.9832738, 46.448832 ], + [ 9.9828936, 46.4483945 ], + [ 9.9826311, 46.4481071 ], + [ 9.9825086, 46.447855 ], + [ 9.9823545, 46.4475207 ], + [ 9.9820985, 46.4471632 ], + [ 9.9818767, 46.4469642 ], + [ 9.9816208, 46.446817 ], + [ 9.9813045, 46.446754 ], + [ 9.9811046, 46.4466221 ], + [ 9.9808811, 46.4464021 ], + [ 9.980809, 46.4462539 ], + [ 9.9807457, 46.4461001 ], + [ 9.9806915, 46.445969 ], + [ 9.9806607, 46.4458145 ], + [ 9.9805799, 46.4456379 ], + [ 9.980516, 46.4454897 ], + [ 9.9804456, 46.4453761 ], + [ 9.9802597, 46.4452817 ], + [ 9.9800654, 46.4451817 ], + [ 9.9798545, 46.4450761 ], + [ 9.9797039, 46.4450213 ], + [ 9.9794838, 46.4449102 ], + [ 9.979174, 46.4448121 ], + [ 9.9789157, 46.4447705 ], + [ 9.9786322, 46.444712 ], + [ 9.9781274, 46.4446552 ], + [ 9.9773475, 46.4443697 ], + [ 9.9771621, 46.4441991 ], + [ 9.9772782, 46.4437945 ], + [ 9.977436, 46.4436712 ], + [ 9.9774057, 46.44351 ], + [ 9.976750299999999, 46.4435555 ], + [ 9.976181, 46.4435801 ], + [ 9.9755615, 46.4436815 ], + [ 9.9750882, 46.4440007 ], + [ 9.974852, 46.4441867 ], + [ 9.9743642, 46.4443889 ], + [ 9.974361, 46.4443901 ], + [ 9.9742296, 46.4444337 ], + [ 9.9739689, 46.4444805 ], + [ 9.9737624, 46.444503 ], + [ 9.9735183, 46.4445723 ], + [ 9.9733335, 46.4446747 ], + [ 9.9731887, 46.4447645 ], + [ 9.972947, 46.4448856 ], + [ 9.9727215, 46.4450061 ], + [ 9.9725144, 46.445155 ], + [ 9.9722748, 46.4453218 ], + [ 9.9720203, 46.4455179 ], + [ 9.9718059, 46.4456841 ], + [ 9.9714788, 46.4459278 ], + [ 9.9711316, 46.4460917 ], + [ 9.9707812, 46.4461868 ], + [ 9.9704864, 46.4462517 ], + [ 9.9688956, 46.4463093 ], + [ 9.968258, 46.4463008 ], + [ 9.9676602, 46.4462746 ], + [ 9.9673143, 46.4462202 ], + [ 9.966859, 46.4464393 ], + [ 9.9662531, 46.4466581 ], + [ 9.9659824, 46.4466994 ], + [ 9.965664, 46.4467822 ], + [ 9.9652315, 46.4468966 ], + [ 9.9648304, 46.4469872 ], + [ 9.9644213, 46.447078 ], + [ 9.9639744, 46.4472329 ], + [ 9.9633963, 46.4474199 ], + [ 9.9629051, 46.4475126 ], + [ 9.9626839, 46.44757 ], + [ 9.9622742, 46.4476493 ], + [ 9.9619705, 46.4476972 ], + [ 9.961057, 46.4479501 ], + [ 9.9600091, 46.4481662 ], + [ 9.9597316, 46.4482363 ], + [ 9.9592245, 46.4483584 ], + [ 9.9587089, 46.4484691 ], + [ 9.9582425, 46.4485727 ], + [ 9.9578913, 46.4486678 ], + [ 9.9575081, 46.4487751 ], + [ 9.957133, 46.4488822 ], + [ 9.9569455, 46.4489271 ], + [ 9.9567275, 46.449036 ], + [ 9.956487899999999, 46.4492029 ], + [ 9.9562865, 46.4493171 ], + [ 9.9559965, 46.4494681 ], + [ 9.9559853, 46.4494738 ], + [ 9.9555856, 46.4496794 ], + [ 9.955321, 46.4498354 ], + [ 9.9550344, 46.4500609 ], + [ 9.9547465, 46.4502404 ], + [ 9.9544123, 46.4503521 ], + [ 9.9542163, 46.4505466 ], + [ 9.9539498, 46.4506798 ], + [ 9.9537915, 46.45081 ], + [ 9.9536814, 46.4509277 ], + [ 9.9535157, 46.4510754 ], + [ 9.9533673, 46.4512456 ], + [ 9.953214, 46.451485 ], + [ 9.953057, 46.451644 ], + [ 9.952884, 46.4518264 ], + [ 9.952785, 46.4519896 ], + [ 9.9526393, 46.4522 ], + [ 9.9526267, 46.4522807 ], + [ 9.9523668, 46.4523791 ], + [ 9.9513432, 46.4525946 ], + [ 9.9510091, 46.452534 ], + [ 9.9506588, 46.4524741 ], + [ 9.9502849, 46.4524491 ], + [ 9.9499825, 46.4525257 ], + [ 9.9496583, 46.4526601 ], + [ 9.949417, 46.4527925 ], + [ 9.9490873, 46.4529846 ], + [ 9.9487144, 46.4531204 ], + [ 9.9482577, 46.4532583 ], + [ 9.9477391, 46.4534666 ], + [ 9.9475001, 46.4534899 ], + [ 9.947067, 46.4535927 ], + [ 9.9466858, 46.4537458 ], + [ 9.9464288, 46.4539073 ], + [ 9.9462744, 46.4541065 ], + [ 9.9460631, 46.4545002 ], + [ 9.9459401, 46.4546564 ], + [ 9.9457548, 46.4548206 ], + [ 9.9455581, 46.4549483 ], + [ 9.9453743, 46.4550391 ], + [ 9.9449756, 46.4552359 ], + [ 9.9448256, 46.4553881 ], + [ 9.9446773, 46.4557383 ], + [ 9.9444946, 46.4561693 ], + [ 9.9443452, 46.4562827 ], + [ 9.9439956, 46.4564504 ], + [ 9.943855, 46.4567006 ], + [ 9.943717, 46.4570092 ], + [ 9.9435932, 46.4572876 ], + [ 9.943463, 46.4574301 ], + [ 9.9432586, 46.4574987 ], + [ 9.9430456, 46.4575034 ], + [ 9.9428643, 46.4574734 ], + [ 9.9427187, 46.457386 ], + [ 9.9425065, 46.4576375 ], + [ 9.9424795, 46.458005 ], + [ 9.9423941, 46.4581304 ], + [ 9.9422956, 46.4583059 ], + [ 9.9421571, 46.4586559 ], + [ 9.9420735, 46.4588179 ], + [ 9.9418962, 46.4591554 ], + [ 9.9418222, 46.4593338 ], + [ 9.941829, 46.4594805 ], + [ 9.941864, 46.4598333 ], + [ 9.9418318, 46.4599642 ], + [ 9.9417142, 46.4602369 ], + [ 9.9412957, 46.4613103 ], + [ 9.9411143, 46.4615778 ], + [ 9.9410564, 46.461786 ], + [ 9.9409967, 46.4619573 ], + [ 9.9408549, 46.4621106 ], + [ 9.940629, 46.4622423 ], + [ 9.9403951, 46.4624143 ], + [ 9.939908299999999, 46.4628354 ], + [ 9.939618, 46.4630739 ], + [ 9.9394244, 46.463233 ], + [ 9.939051599999999, 46.4635148 ], + [ 9.9386606, 46.4638436 ], + [ 9.9381213, 46.4641891 ], + [ 9.9372697, 46.4646615 ], + [ 9.9369861, 46.4649013 ], + [ 9.9367237, 46.4650739 ], + [ 9.9360485, 46.4654537 ], + [ 9.9358232, 46.4655815 ], + [ 9.9356398, 46.4657166 ], + [ 9.9356544, 46.4658754 ], + [ 9.9356869, 46.4659962 ], + [ 9.9356505, 46.4660906 ], + [ 9.935588, 46.4661996 ], + [ 9.9354599, 46.466352 ], + [ 9.9353093, 46.466477 ], + [ 9.9351371, 46.4665556 ], + [ 9.9347966, 46.4666566 ], + [ 9.9346709, 46.4667203 ], + [ 9.9345013, 46.4668549 ], + [ 9.9342147, 46.4669595 ], + [ 9.934108, 46.4669946 ], + [ 9.934049, 46.467038 ], + [ 9.9340113, 46.4671043 ], + [ 9.9338282, 46.4673889 ], + [ 9.9336904, 46.4676306 ], + [ 9.9335361, 46.4677977 ], + [ 9.9333128, 46.4679524 ], + [ 9.9330216, 46.468099 ], + [ 9.9328717, 46.4681735 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "JBG0004", + "country" : "CHE", + "name" : [ + { + "text" : "Eidgenössisches Jagdbanngebiet Bernina-Albris", + "lang" : "de-CH" + }, + { + "text" : "District franc fédéral Bernina-Albris", + "lang" : "fr-CH" + }, + { + "text" : "Bandita federale di caccia Bernina-Albris", + "lang" : "it-CH" + }, + { + "text" : "Federal Game Reserve Bernina-Albris", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8674127, 47.4115312 ], + [ 7.8672804, 47.4116781 ], + [ 7.8673093, 47.4117222 ], + [ 7.8673226, 47.4117266 ], + [ 7.8673608999999995, 47.4117273 ], + [ 7.8674064, 47.4117263 ], + [ 7.8675882, 47.4117224 ], + [ 7.8679214, 47.4119385 ], + [ 7.8681292, 47.4120729 ], + [ 7.8684682, 47.4121491 ], + [ 7.8687138999999995, 47.4122022 ], + [ 7.8689035, 47.4122112 ], + [ 7.8693081, 47.412346 ], + [ 7.869722, 47.412321 ], + [ 7.8697993, 47.4123757 ], + [ 7.8702789, 47.4127148 ], + [ 7.8702881, 47.4127212 ], + [ 7.8703282, 47.4127497 ], + [ 7.8704725, 47.412698 ], + [ 7.870636, 47.4126256 ], + [ 7.8707269, 47.4125847 ], + [ 7.8708048, 47.4125916 ], + [ 7.870883, 47.4126411 ], + [ 7.8709403, 47.412701 ], + [ 7.8714606, 47.413184 ], + [ 7.8714953, 47.4131945 ], + [ 7.8718346, 47.4132785 ], + [ 7.8719798, 47.4133073 ], + [ 7.8720525, 47.4133049 ], + [ 7.8722033, 47.4132441 ], + [ 7.8723487, 47.413228 ], + [ 7.8724571, 47.4132382 ], + [ 7.8729664, 47.4133706 ], + [ 7.8732513, 47.4134845 ], + [ 7.8734546, 47.4135719 ], + [ 7.8735428, 47.4136387 ], + [ 7.8736406, 47.413655 ], + [ 7.8736715, 47.4136648 ], + [ 7.8737447, 47.4135796 ], + [ 7.873803, 47.413534 ], + [ 7.8740756, 47.4133573 ], + [ 7.8741487, 47.4132295 ], + [ 7.8743026, 47.4132545 ], + [ 7.8744336, 47.4132943 ], + [ 7.8749933, 47.4133883 ], + [ 7.8752265, 47.413423 ], + [ 7.8752936, 47.4133856 ], + [ 7.8753400000000005, 47.4132693 ], + [ 7.8753802, 47.4132437 ], + [ 7.8754737, 47.4132357 ], + [ 7.8757302, 47.4133063 ], + [ 7.8757947999999995, 47.4133265 ], + [ 7.8758865, 47.4133569 ], + [ 7.8759034, 47.4133625 ], + [ 7.8759679, 47.4133666 ], + [ 7.8760148, 47.4132026 ], + [ 7.8760148999999995, 47.4132025 ], + [ 7.87575, 47.4130496 ], + [ 7.8756158, 47.4129948 ], + [ 7.8754573, 47.4129563 ], + [ 7.8753303, 47.4129375 ], + [ 7.8752056, 47.4129254 ], + [ 7.8750070999999995, 47.4129062 ], + [ 7.8749421, 47.4129313 ], + [ 7.8749062, 47.4129934 ], + [ 7.8749029, 47.4129991 ], + [ 7.874743, 47.4129706 ], + [ 7.8743809, 47.4128154 ], + [ 7.8742114999999995, 47.4127342 ], + [ 7.8740818, 47.4126621 ], + [ 7.8739713, 47.4126409 ], + [ 7.8737536, 47.4126751 ], + [ 7.8735504, 47.41268 ], + [ 7.8735039, 47.4126817 ], + [ 7.8734614, 47.4126823 ], + [ 7.8734142, 47.4126778 ], + [ 7.8733595, 47.4126734 ], + [ 7.8732917, 47.4126597 ], + [ 7.8730701, 47.4126058 ], + [ 7.8728689, 47.4125601 ], + [ 7.8727619, 47.4125466 ], + [ 7.8725448, 47.4124836 ], + [ 7.872323, 47.4124531 ], + [ 7.8721709, 47.4124664 ], + [ 7.871952, 47.4123647 ], + [ 7.871881, 47.4123001 ], + [ 7.8718181, 47.4121985 ], + [ 7.8717551, 47.4120969 ], + [ 7.8713142, 47.4119686 ], + [ 7.8712064, 47.4118852 ], + [ 7.8708942, 47.4117295 ], + [ 7.8707562, 47.411681 ], + [ 7.8706795, 47.4116449 ], + [ 7.8704992, 47.4116054 ], + [ 7.8702345, 47.4115868 ], + [ 7.870156, 47.4115854 ], + [ 7.8700048, 47.4115617 ], + [ 7.8698405, 47.4115149 ], + [ 7.8697218, 47.4114893 ], + [ 7.869625, 47.4113621 ], + [ 7.8694144, 47.4112092 ], + [ 7.8693131, 47.4111217 ], + [ 7.8691956, 47.4111396 ], + [ 7.8682314, 47.4113699 ], + [ 7.8674547, 47.4114479 ], + [ 7.8674127, 47.4115312 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr045", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Flueacher", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Flueacher", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Flueacher", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Flueacher", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5747747, 47.4614165 ], + [ 7.5747844, 47.4614288 ], + [ 7.5749069, 47.4614198 ], + [ 7.5750056, 47.4614475 ], + [ 7.5750591, 47.4615185 ], + [ 7.5751482, 47.4616199 ], + [ 7.5752823, 47.4617326 ], + [ 7.575321, 47.4617959 ], + [ 7.5751563, 47.4618444 ], + [ 7.5750553, 47.461923 ], + [ 7.5750904, 47.4620021 ], + [ 7.5751458, 47.4620958 ], + [ 7.5750572, 47.4621325 ], + [ 7.5750025999999995, 47.4620233 ], + [ 7.5749642999999995, 47.462033 ], + [ 7.5750407, 47.4622831 ], + [ 7.5752277, 47.4621122 ], + [ 7.5754328, 47.4619248 ], + [ 7.5754073, 47.4617065 ], + [ 7.5759837, 47.4618733 ], + [ 7.5760781, 47.4622098 ], + [ 7.57665, 47.462146 ], + [ 7.5767472, 47.4621344 ], + [ 7.5770231, 47.4621013 ], + [ 7.5775727, 47.4619803 ], + [ 7.5776567, 47.4619618 ], + [ 7.5780142, 47.4618337 ], + [ 7.5783503, 47.4617133 ], + [ 7.5784339, 47.4616292 ], + [ 7.5787241, 47.4613378 ], + [ 7.5788613, 47.4611096 ], + [ 7.5789332, 47.4609903 ], + [ 7.5791937, 47.4607714 ], + [ 7.5792452, 47.4607282 ], + [ 7.5795245, 47.4603984 ], + [ 7.5798062999999996, 47.4600566 ], + [ 7.5798789, 47.4598155 ], + [ 7.5793474, 47.4599599 ], + [ 7.57903, 47.4601152 ], + [ 7.5788936, 47.4601464 ], + [ 7.5787109, 47.4601535 ], + [ 7.5783403, 47.4601271 ], + [ 7.5781447, 47.46017 ], + [ 7.5776538, 47.4602468 ], + [ 7.5775496, 47.460276 ], + [ 7.5773728, 47.4603564 ], + [ 7.5775831, 47.4603989 ], + [ 7.577576, 47.4604192 ], + [ 7.5774553000000004, 47.4604824 ], + [ 7.5773126, 47.460579 ], + [ 7.5772476, 47.4606248 ], + [ 7.5771606, 47.4606666 ], + [ 7.5770911, 47.4606958 ], + [ 7.5769228, 47.4607558 ], + [ 7.5767776, 47.460794 ], + [ 7.5765661, 47.4608423 ], + [ 7.5764533, 47.4608675 ], + [ 7.5762848, 47.4609175 ], + [ 7.5761364, 47.4609489 ], + [ 7.5760328, 47.4609761 ], + [ 7.5759666, 47.4609862 ], + [ 7.5758645, 47.4610099 ], + [ 7.5758347, 47.4609633 ], + [ 7.575807, 47.4609003 ], + [ 7.5759652, 47.4608295 ], + [ 7.5761135, 47.4607592 ], + [ 7.576241, 47.4607177 ], + [ 7.5761807999999995, 47.46063 ], + [ 7.575985, 47.4606624 ], + [ 7.5757025, 47.4606812 ], + [ 7.575544, 47.4606673 ], + [ 7.5755745999999995, 47.4607973 ], + [ 7.5755758, 47.4608948 ], + [ 7.5755896, 47.4609783 ], + [ 7.575623, 47.4610115 ], + [ 7.5755928, 47.4610807 ], + [ 7.5755392, 47.4611513 ], + [ 7.5753717, 47.4611869 ], + [ 7.5752908, 47.4612137 ], + [ 7.5752382, 47.4612627 ], + [ 7.5752030999999995, 47.4613087 ], + [ 7.5751407, 47.4613275 ], + [ 7.5749379, 47.4613652 ], + [ 7.5748435, 47.4613685 ], + [ 7.5747683, 47.4613957 ], + [ 7.5747747, 47.4614165 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns089", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Kleinfegg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Kleinfegg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Kleinfegg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Kleinfegg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.8945008, 46.1217256 ], + [ 8.8865903, 46.1206681 ], + [ 8.8832494, 46.1202841 ], + [ 8.8798842, 46.1200221 ], + [ 8.8765039, 46.1198828 ], + [ 8.8731178, 46.1198666 ], + [ 8.8697351, 46.1199736 ], + [ 8.866365, 46.1202035 ], + [ 8.8630168, 46.1205556 ], + [ 8.8596997, 46.1210289 ], + [ 8.8564226, 46.1216223 ], + [ 8.8531946, 46.122334 ], + [ 8.8500246, 46.1231621 ], + [ 8.846921, 46.1241043 ], + [ 8.8438926, 46.1251582 ], + [ 8.8409475, 46.1263207 ], + [ 8.8380938, 46.1275887 ], + [ 8.8353393, 46.1289588 ], + [ 8.8326916, 46.1304271 ], + [ 8.8301579, 46.1319897 ], + [ 8.8277451, 46.1336423 ], + [ 8.8254599, 46.1353804 ], + [ 8.8233085, 46.1371993 ], + [ 8.8212969, 46.1390938 ], + [ 8.8194305, 46.1410589 ], + [ 8.8177146, 46.1430893 ], + [ 8.8161537, 46.1451792 ], + [ 8.8147521, 46.147323 ], + [ 8.8135139, 46.1495149 ], + [ 8.8124423, 46.1517487 ], + [ 8.8115402, 46.1540185 ], + [ 8.8108103, 46.156318 ], + [ 8.8102546, 46.1586409 ], + [ 8.8098744, 46.1609808 ], + [ 8.809671, 46.1633313 ], + [ 8.809645, 46.165686 ], + [ 8.8097963, 46.1680384 ], + [ 8.8101246, 46.1703821 ], + [ 8.8106291, 46.1727107 ], + [ 8.8113084, 46.1750177 ], + [ 8.8121606, 46.1772968 ], + [ 8.8131834, 46.1795419 ], + [ 8.814374, 46.1817466 ], + [ 8.8157292, 46.183905 ], + [ 8.817245400000001, 46.1860112 ], + [ 8.8189182, 46.1880594 ], + [ 8.8207433, 46.1900439 ], + [ 8.8227155, 46.1919594 ], + [ 8.8248295, 46.1938005 ], + [ 8.8270795, 46.1955621 ], + [ 8.8294593, 46.1972396 ], + [ 8.8319625, 46.1988282 ], + [ 8.8345821, 46.2003236 ], + [ 8.8373109, 46.2017217 ], + [ 8.8401415, 46.2030186 ], + [ 8.843066199999999, 46.2042108 ], + [ 8.8460768, 46.2052951 ], + [ 8.8491651, 46.2062683 ], + [ 8.8523226, 46.2071279 ], + [ 8.8555407, 46.2078716 ], + [ 8.8588106, 46.2084971 ], + [ 8.8621231, 46.2090029 ], + [ 8.870046, 46.2100621 ], + [ 8.8733923, 46.2104465 ], + [ 8.8767631, 46.2107087 ], + [ 8.880149, 46.210848 ], + [ 8.8835408, 46.210864 ], + [ 8.8869292, 46.2107566 ], + [ 8.8903048, 46.2105261 ], + [ 8.8936583, 46.2101732 ], + [ 8.8969806, 46.2096988 ], + [ 8.9002625, 46.2091043 ], + [ 8.903495, 46.2083912 ], + [ 8.9066692, 46.2075616 ], + [ 8.9097765, 46.2066177 ], + [ 8.9128082, 46.2055621 ], + [ 8.915756, 46.2043977 ], + [ 8.918612, 46.2031277 ], + [ 8.9213681, 46.2017556 ], + [ 8.9240169, 46.2002852 ], + [ 8.9265511, 46.1987205 ], + [ 8.9289637, 46.1970657 ], + [ 8.9312482, 46.1953255 ], + [ 8.9333983, 46.1935046 ], + [ 8.935408, 46.1916081 ], + [ 8.9372719, 46.189641 ], + [ 8.9389849, 46.1876089 ], + [ 8.9405423, 46.1855173 ], + [ 8.9419399, 46.1833719 ], + [ 8.9431737, 46.1811786 ], + [ 8.9442406, 46.1789435 ], + [ 8.9451375, 46.1766726 ], + [ 8.945862, 46.1743723 ], + [ 8.9464121, 46.1720487 ], + [ 8.9467865, 46.1697084 ], + [ 8.946984, 46.1673576 ], + [ 8.9470041, 46.1650029 ], + [ 8.9468469, 46.1626506 ], + [ 8.9465127, 46.1603073 ], + [ 8.9460025, 46.1579794 ], + [ 8.9453178, 46.1556732 ], + [ 8.9444604, 46.1533951 ], + [ 8.9434326, 46.1511513 ], + [ 8.9422374, 46.1489479 ], + [ 8.940878099999999, 46.146791 ], + [ 8.9393583, 46.1446864 ], + [ 8.9376822, 46.1426401 ], + [ 8.9358545, 46.1406574 ], + [ 8.9338801, 46.138744 ], + [ 8.9317646, 46.1369049 ], + [ 8.9295136, 46.1351454 ], + [ 8.9271334, 46.13347 ], + [ 8.9246305, 46.1318835 ], + [ 8.9220117, 46.1303902 ], + [ 8.9192843, 46.1289942 ], + [ 8.916455599999999, 46.1276993 ], + [ 8.9135335, 46.1265089 ], + [ 8.9105259, 46.1254265 ], + [ 8.9074411, 46.124455 ], + [ 8.9042875, 46.1235969 ], + [ 8.9010736, 46.1228546 ], + [ 8.8978085, 46.1222303 ], + [ 8.8945008, 46.1217256 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSMO-01", + "country" : "CHE", + "name" : [ + { + "text" : "LSMO Locarno", + "lang" : "de-CH" + }, + { + "text" : "LSMO Locarno", + "lang" : "fr-CH" + }, + { + "text" : "LSMO Locarno", + "lang" : "it-CH" + }, + { + "text" : "LSMO Locarno", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Special Flight Office (SFO)", + "lang" : "de-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "fr-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "it-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "en-GB" + } + ], + "siteURL" : "https://skyguide.ch/services/special-flights", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7253827, 47.436446 ], + [ 7.7257903, 47.4365184 ], + [ 7.7261152, 47.4366301 ], + [ 7.7262292, 47.4365866 ], + [ 7.7266197, 47.4364102 ], + [ 7.7265391999999995, 47.43633 ], + [ 7.7257302, 47.4363836 ], + [ 7.7254143, 47.4363815 ], + [ 7.7253856, 47.4364402 ], + [ 7.7253827, 47.436446 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns164", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Weiher Brunnmatt", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Weiher Brunnmatt", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Weiher Brunnmatt", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Weiher Brunnmatt", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7821257, 47.3579022 ], + [ 7.7819331, 47.3580922 ], + [ 7.7819471, 47.3580972 ], + [ 7.7820559, 47.3580339 ], + [ 7.7821163, 47.3580569 ], + [ 7.7822168, 47.3580094 ], + [ 7.7826509999999995, 47.3582201 ], + [ 7.7829486, 47.3583318 ], + [ 7.7831072, 47.3583536 ], + [ 7.7832097000000005, 47.3584423 ], + [ 7.7832608, 47.3584558 ], + [ 7.7833389, 47.3584513 ], + [ 7.783518, 47.3585008 ], + [ 7.7835529, 47.3583871 ], + [ 7.783689, 47.3583812 ], + [ 7.7837769, 47.3583965 ], + [ 7.7838887, 47.3584159 ], + [ 7.7840967, 47.3583584 ], + [ 7.7843641, 47.3584454 ], + [ 7.7846027, 47.3584466 ], + [ 7.7849395, 47.3584826 ], + [ 7.7851619, 47.3585865 ], + [ 7.7854659, 47.3588012 ], + [ 7.7858541, 47.3589723 ], + [ 7.7862414, 47.3590863 ], + [ 7.78645, 47.3592159 ], + [ 7.7866017, 47.3592953 ], + [ 7.7866991, 47.3593059 ], + [ 7.7867161, 47.3592476 ], + [ 7.7869544, 47.3592429 ], + [ 7.7870151, 47.3592013 ], + [ 7.787238, 47.3592914 ], + [ 7.7872331, 47.3594296 ], + [ 7.7874019, 47.3595438 ], + [ 7.7874279, 47.3596765 ], + [ 7.7875905, 47.3597302 ], + [ 7.7876396, 47.3596996 ], + [ 7.7880169, 47.3597986 ], + [ 7.788267, 47.3598857 ], + [ 7.7883455999999995, 47.3599579 ], + [ 7.7884662, 47.3600045 ], + [ 7.78882, 47.3601045 ], + [ 7.7889584, 47.3601184 ], + [ 7.789118, 47.3601925 ], + [ 7.7894959, 47.3602833 ], + [ 7.7901659, 47.360355 ], + [ 7.7901711, 47.3603912 ], + [ 7.7905157, 47.3604753 ], + [ 7.7906994, 47.360494 ], + [ 7.7907466, 47.3605483 ], + [ 7.7910243999999995, 47.3606038 ], + [ 7.7911241, 47.3606745 ], + [ 7.791275, 47.3607352 ], + [ 7.7914136, 47.360763 ], + [ 7.7915238, 47.360773 ], + [ 7.7917197, 47.3608099 ], + [ 7.7918265, 47.3608302 ], + [ 7.7919830999999995, 47.36086 ], + [ 7.7922362, 47.3609033 ], + [ 7.7922937999999995, 47.3609636 ], + [ 7.7923108, 47.3610016 ], + [ 7.7923952, 47.3610381 ], + [ 7.7923205, 47.3611391 ], + [ 7.7927051, 47.3612303 ], + [ 7.7929902, 47.361248 ], + [ 7.7930824, 47.3611563 ], + [ 7.7931291, 47.3611616 ], + [ 7.7931733, 47.3611809 ], + [ 7.7932153, 47.361218 ], + [ 7.7932353, 47.3612501 ], + [ 7.79327, 47.3613065 ], + [ 7.7933406, 47.3613239 ], + [ 7.7934211, 47.3611965 ], + [ 7.7935528, 47.3611942 ], + [ 7.7936523, 47.3612212 ], + [ 7.7937832, 47.3611771 ], + [ 7.7938495, 47.3610666 ], + [ 7.7941223, 47.3611927 ], + [ 7.7944544, 47.3612041 ], + [ 7.7946194, 47.3611746 ], + [ 7.7949423, 47.3611937 ], + [ 7.7950121, 47.3611655 ], + [ 7.7951613, 47.361172 ], + [ 7.795203, 47.3612879 ], + [ 7.795251, 47.3613061 ], + [ 7.79529, 47.3612718 ], + [ 7.7954635, 47.3612985 ], + [ 7.7954735, 47.3613384 ], + [ 7.7955439, 47.3613409 ], + [ 7.7955893, 47.3612866 ], + [ 7.795854, 47.3613248 ], + [ 7.7958671, 47.3613773 ], + [ 7.7960061, 47.3614206 ], + [ 7.796336, 47.361467 ], + [ 7.7964817, 47.3614532 ], + [ 7.7967767, 47.3615191 ], + [ 7.7968195, 47.3614996 ], + [ 7.7971518, 47.3615596 ], + [ 7.7973104, 47.3615229 ], + [ 7.7974362, 47.3615599 ], + [ 7.7974321, 47.3616111 ], + [ 7.7974283, 47.3616449 ], + [ 7.7976003, 47.3616758 ], + [ 7.7975881, 47.3616047 ], + [ 7.7977656, 47.3616367 ], + [ 7.797986, 47.3617065 ], + [ 7.7980721, 47.3616764 ], + [ 7.7981706, 47.3616916 ], + [ 7.7982072, 47.3615749 ], + [ 7.7983019, 47.3615883 ], + [ 7.7983319, 47.3617207 ], + [ 7.798608, 47.3617606 ], + [ 7.7986495, 47.3616829 ], + [ 7.7989046, 47.3616948 ], + [ 7.7990003, 47.3616831 ], + [ 7.7990895, 47.3616269 ], + [ 7.7995548, 47.3616452 ], + [ 7.7997939, 47.3616367 ], + [ 7.8002225, 47.3617679 ], + [ 7.8003086, 47.3617466 ], + [ 7.8002186, 47.3616847 ], + [ 7.800206, 47.3616799 ], + [ 7.799804, 47.3614088 ], + [ 7.7992777, 47.3612276 ], + [ 7.7990901, 47.3611732 ], + [ 7.7982132, 47.3610026 ], + [ 7.7971231, 47.3608456 ], + [ 7.7962891, 47.3607234 ], + [ 7.7954182, 47.3605829 ], + [ 7.7945333, 47.3604275 ], + [ 7.7941037, 47.3603563 ], + [ 7.793734, 47.3602945 ], + [ 7.7931047, 47.3600387 ], + [ 7.792643, 47.3600537 ], + [ 7.7920576, 47.3599287 ], + [ 7.7917662, 47.359891 ], + [ 7.7907339, 47.3596131 ], + [ 7.7899831, 47.3594596 ], + [ 7.7893118999999995, 47.3592701 ], + [ 7.7885862, 47.3590499 ], + [ 7.78796, 47.3588464 ], + [ 7.7872901, 47.3586403 ], + [ 7.7866024, 47.358385 ], + [ 7.7860342, 47.3582074 ], + [ 7.7853945, 47.3580076 ], + [ 7.7847693, 47.3578759 ], + [ 7.7840431, 47.3576947 ], + [ 7.7833868, 47.3575039 ], + [ 7.7827638, 47.3573013 ], + [ 7.7821257, 47.3579022 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns013", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Dürstelberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Dürstelberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Dürstelberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Dürstelberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.782033, 47.4595638 ], + [ 7.782625, 47.4598706 ], + [ 7.7827454, 47.4598902 ], + [ 7.7831401, 47.4599544 ], + [ 7.7835804, 47.4600294 ], + [ 7.7836844, 47.4601164 ], + [ 7.7836967999999995, 47.460228 ], + [ 7.7837615, 47.4602544 ], + [ 7.7839071, 47.4596761 ], + [ 7.7841097999999995, 47.4591762 ], + [ 7.7840599, 47.4591688 ], + [ 7.7836672, 47.4591114 ], + [ 7.7834874, 47.4590856 ], + [ 7.7835505, 47.4589662 ], + [ 7.7832734, 47.4588697 ], + [ 7.7831006, 47.4588095 ], + [ 7.7826538, 47.4588516 ], + [ 7.7823865, 47.4591711 ], + [ 7.782124, 47.4594644 ], + [ 7.782033, 47.4595638 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns184", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Mergelgrube \"Tal\"", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Mergelgrube \"Tal\"", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Mergelgrube \"Tal\"", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Mergelgrube \"Tal\"", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8359694, 47.4874024 ], + [ 7.8357997, 47.4870806 ], + [ 7.835725, 47.4865492 ], + [ 7.83572, 47.4865135 ], + [ 7.8356692, 47.4860671 ], + [ 7.8360779, 47.4858524 ], + [ 7.8362628999999995, 47.4857558 ], + [ 7.8364774, 47.4856999 ], + [ 7.8368636, 47.4857265 ], + [ 7.8371873, 47.4856927 ], + [ 7.837523, 47.4856719 ], + [ 7.8382433, 47.4856901 ], + [ 7.8382903, 47.4856702 ], + [ 7.838221, 47.4855898 ], + [ 7.8382166, 47.4855843 ], + [ 7.8382129, 47.4855786 ], + [ 7.83821, 47.4855727 ], + [ 7.8382078, 47.4855667 ], + [ 7.8382062999999995, 47.4855605 ], + [ 7.8382057, 47.4855543 ], + [ 7.8382059, 47.4855481 ], + [ 7.8382069, 47.4855419 ], + [ 7.8382086, 47.4855358 ], + [ 7.8382112, 47.4855298 ], + [ 7.8382144, 47.4855239 ], + [ 7.8382178, 47.4855179 ], + [ 7.8382204, 47.4855116 ], + [ 7.8382222, 47.4855052 ], + [ 7.8382231, 47.4854987 ], + [ 7.8382231, 47.4854922 ], + [ 7.8382222, 47.4854857 ], + [ 7.8382205, 47.4854793 ], + [ 7.8382171, 47.4854716 ], + [ 7.838213, 47.4854641 ], + [ 7.8382081, 47.4854568 ], + [ 7.8382024999999995, 47.4854498 ], + [ 7.8381962, 47.485443 ], + [ 7.8381892, 47.4854366 ], + [ 7.838181, 47.4854298 ], + [ 7.838172, 47.4854235 ], + [ 7.8381624, 47.4854177 ], + [ 7.8381521, 47.4854124 ], + [ 7.8381413, 47.4854076 ], + [ 7.83813, 47.4854034 ], + [ 7.8381183, 47.4853998 ], + [ 7.8381062, 47.4853967 ], + [ 7.8380937, 47.4853943 ], + [ 7.8380811, 47.4853926 ], + [ 7.8380683, 47.4853914 ], + [ 7.8379717, 47.4853857 ], + [ 7.8372713, 47.4850544 ], + [ 7.8368356, 47.4848484 ], + [ 7.8362144, 47.4845546 ], + [ 7.836163, 47.4846037 ], + [ 7.8359269, 47.4845091 ], + [ 7.8358232999999995, 47.484454 ], + [ 7.8352709, 47.4841601 ], + [ 7.8346887, 47.4837679 ], + [ 7.833869, 47.4834294 ], + [ 7.8338129, 47.4834062 ], + [ 7.8338514, 47.4833211 ], + [ 7.8345559, 47.4830751 ], + [ 7.8346116, 47.4830533 ], + [ 7.8345566, 47.4829996 ], + [ 7.8346252, 47.4829929 ], + [ 7.8348669, 47.4829693 ], + [ 7.836245, 47.482793 ], + [ 7.8362227, 47.4825572 ], + [ 7.8362768, 47.4825675 ], + [ 7.836335, 47.4825688 ], + [ 7.8364153, 47.4825302 ], + [ 7.8364184, 47.4825155 ], + [ 7.8364221, 47.482501 ], + [ 7.8364264, 47.4824865 ], + [ 7.8364314, 47.4824721 ], + [ 7.8364438, 47.4824388 ], + [ 7.836457, 47.4824057 ], + [ 7.8364709999999995, 47.4823727 ], + [ 7.8364857, 47.4823399 ], + [ 7.8365010999999996, 47.4823072 ], + [ 7.8365173, 47.4822747 ], + [ 7.8365341, 47.4822423 ], + [ 7.8365518, 47.4822102 ], + [ 7.8365701, 47.4821782 ], + [ 7.8365831, 47.4821566 ], + [ 7.8365968, 47.4821352 ], + [ 7.8366114, 47.482114 ], + [ 7.8366266, 47.482093 ], + [ 7.8366427, 47.4820724 ], + [ 7.8366594, 47.4820519 ], + [ 7.8366722, 47.4820361 ], + [ 7.8366842, 47.48202 ], + [ 7.8366955, 47.4820037 ], + [ 7.8367061, 47.4819871 ], + [ 7.8367158, 47.4819704 ], + [ 7.8367248, 47.4819534 ], + [ 7.836733, 47.4819362 ], + [ 7.8367404, 47.4819189 ], + [ 7.836747, 47.4819014 ], + [ 7.8358351, 47.4818274 ], + [ 7.834982, 47.4817581 ], + [ 7.8349379, 47.481738 ], + [ 7.8349421, 47.4817341 ], + [ 7.8349732, 47.4817039 ], + [ 7.8350037, 47.4816735 ], + [ 7.8350335, 47.4816427 ], + [ 7.8350626, 47.4816117 ], + [ 7.8350911, 47.4815803 ], + [ 7.8351, 47.481571 ], + [ 7.8351097, 47.481562 ], + [ 7.8351201, 47.4815534 ], + [ 7.8351311, 47.4815453 ], + [ 7.8351429, 47.4815375 ], + [ 7.8351552, 47.4815302 ], + [ 7.8351681, 47.4815234 ], + [ 7.8351816, 47.4815171 ], + [ 7.8353798, 47.4814298 ], + [ 7.8354009, 47.4814201 ], + [ 7.8354215, 47.4814099 ], + [ 7.8354415, 47.4813992 ], + [ 7.8354609, 47.4813881 ], + [ 7.8354798, 47.4813764 ], + [ 7.8354979, 47.4813643 ], + [ 7.8355155, 47.4813518 ], + [ 7.8355323, 47.4813389 ], + [ 7.8355485, 47.4813255 ], + [ 7.8355639, 47.4813118 ], + [ 7.8355786, 47.4812977 ], + [ 7.8355925, 47.4812832 ], + [ 7.8356056, 47.4812684 ], + [ 7.8356179, 47.4812533 ], + [ 7.8356295, 47.481237899999996 ], + [ 7.8356402, 47.4812222 ], + [ 7.83565, 47.4812063 ], + [ 7.835659, 47.4811901 ], + [ 7.835755, 47.4810075 ], + [ 7.8357634, 47.4809922 ], + [ 7.8357724, 47.4809771 ], + [ 7.8357821, 47.4809621 ], + [ 7.8357924, 47.4809473 ], + [ 7.8358033, 47.4809328 ], + [ 7.8358148, 47.4809184 ], + [ 7.8358204, 47.4809123 ], + [ 7.8358267999999995, 47.4809065 ], + [ 7.835834, 47.4809011 ], + [ 7.8358419, 47.4808962 ], + [ 7.8358503, 47.4808918 ], + [ 7.8358593, 47.4808879 ], + [ 7.8358688, 47.4808846 ], + [ 7.8358787, 47.4808818 ], + [ 7.8359138999999995, 47.4808615 ], + [ 7.8359381, 47.4808488 ], + [ 7.8359605, 47.4808346 ], + [ 7.8359808, 47.4808191 ], + [ 7.8359991, 47.4808024 ], + [ 7.836015, 47.4807847 ], + [ 7.8360284, 47.480766 ], + [ 7.8360392999999995, 47.4807466 ], + [ 7.8360476, 47.4807266 ], + [ 7.8360531, 47.4807062 ], + [ 7.8361353, 47.4805605 ], + [ 7.8361667, 47.480351 ], + [ 7.8361709, 47.4803208 ], + [ 7.8361743, 47.4802906 ], + [ 7.8361769, 47.4802604 ], + [ 7.8361788, 47.4802301 ], + [ 7.83618, 47.4801999 ], + [ 7.8361844, 47.4800272 ], + [ 7.8361853, 47.4800058 ], + [ 7.836187, 47.4799844 ], + [ 7.8361894, 47.4799631 ], + [ 7.8361925, 47.4799418 ], + [ 7.8361965, 47.4799206 ], + [ 7.8362011, 47.4798995 ], + [ 7.8362065, 47.4798784 ], + [ 7.8362126, 47.4798574 ], + [ 7.8362831, 47.4796306 ], + [ 7.8362862, 47.4796217 ], + [ 7.8362898, 47.479613 ], + [ 7.836294, 47.4796045 ], + [ 7.8362987, 47.479596 ], + [ 7.8363039, 47.4795877 ], + [ 7.8362972, 47.4795842 ], + [ 7.8363648, 47.4794825 ], + [ 7.8363927, 47.4794711 ], + [ 7.836422, 47.4794615 ], + [ 7.8364524, 47.4794537 ], + [ 7.836645, 47.4794255 ], + [ 7.8367152, 47.4794128 ], + [ 7.8367834, 47.479396 ], + [ 7.8368491, 47.4793751 ], + [ 7.8369085, 47.4793517 ], + [ 7.8369644, 47.4793245 ], + [ 7.8370161, 47.4792939 ], + [ 7.8370632, 47.47926 ], + [ 7.8372316, 47.4791303 ], + [ 7.837262, 47.4791028 ], + [ 7.837289, 47.4790737 ], + [ 7.8373125, 47.4790432 ], + [ 7.8373323, 47.4790116 ], + [ 7.8373482, 47.4789789 ], + [ 7.8373956, 47.4788759 ], + [ 7.8374028, 47.4788631 ], + [ 7.8374106, 47.4788505 ], + [ 7.8374192, 47.4788382 ], + [ 7.8374707, 47.4787666 ], + [ 7.8376116, 47.4786858 ], + [ 7.8376443, 47.4786692 ], + [ 7.8376745, 47.4786505 ], + [ 7.8377017, 47.4786299 ], + [ 7.8377844, 47.4785582 ], + [ 7.8377886, 47.4785519 ], + [ 7.837792, 47.4785454 ], + [ 7.8377945, 47.4785387 ], + [ 7.8378311, 47.4785064 ], + [ 7.8379066, 47.4784268 ], + [ 7.8379171, 47.4784221 ], + [ 7.8379269, 47.4784168 ], + [ 7.8379362, 47.478411 ], + [ 7.8381995, 47.478233 ], + [ 7.8382192, 47.4782193 ], + [ 7.8382383, 47.4782052 ], + [ 7.8382569, 47.4781908 ], + [ 7.8382749, 47.478176 ], + [ 7.8382922, 47.4781608 ], + [ 7.8383088999999995, 47.4781454 ], + [ 7.838325, 47.4781296 ], + [ 7.8383404, 47.4781136 ], + [ 7.8383551, 47.4780972 ], + [ 7.8383690999999995, 47.4780806 ], + [ 7.8385119, 47.4779062 ], + [ 7.8385285, 47.4778854 ], + [ 7.8385444, 47.4778644 ], + [ 7.8385598, 47.4778431 ], + [ 7.8385744, 47.4778217 ], + [ 7.8385885, 47.4778001 ], + [ 7.8386018, 47.4777783 ], + [ 7.8386145, 47.4777562 ], + [ 7.8387158, 47.4775754 ], + [ 7.8387261, 47.4775579 ], + [ 7.8387372, 47.4775406 ], + [ 7.8387492, 47.4775236 ], + [ 7.8387621, 47.4775069 ], + [ 7.8387757, 47.4774905 ], + [ 7.8387901, 47.4774743 ], + [ 7.8388053, 47.4774586 ], + [ 7.8388213, 47.4774431 ], + [ 7.838838, 47.4774281 ], + [ 7.8389288, 47.4773491 ], + [ 7.8389381, 47.4773406 ], + [ 7.8389468, 47.4773319 ], + [ 7.8389548, 47.4773229 ], + [ 7.8389622, 47.4773137 ], + [ 7.838969, 47.4773042 ], + [ 7.8389751, 47.4772945 ], + [ 7.8389806, 47.4772846 ], + [ 7.8389853, 47.4772746 ], + [ 7.8389894, 47.4772645 ], + [ 7.8389927, 47.4772543 ], + [ 7.8389953, 47.4772439 ], + [ 7.8389972, 47.4772335 ], + [ 7.8389983999999995, 47.4772231 ], + [ 7.8389989, 47.4772126 ], + [ 7.8389987, 47.4772022 ], + [ 7.8389977, 47.4771917 ], + [ 7.8389793999999995, 47.4770466 ], + [ 7.8389765, 47.4770202 ], + [ 7.8389745, 47.4769937 ], + [ 7.8389732, 47.4769671 ], + [ 7.8389727, 47.4769406 ], + [ 7.838973, 47.4769141 ], + [ 7.8389741, 47.4768875 ], + [ 7.838976, 47.476861 ], + [ 7.8389787, 47.4768346 ], + [ 7.8389822, 47.4768081 ], + [ 7.8389865, 47.4767818 ], + [ 7.8390085, 47.4766227 ], + [ 7.8386428, 47.4765884 ], + [ 7.8381386, 47.4765398 ], + [ 7.8373794, 47.4764671 ], + [ 7.83709, 47.4764471 ], + [ 7.8367879, 47.4764255 ], + [ 7.8364754, 47.4764016 ], + [ 7.8363700000000005, 47.4763959 ], + [ 7.8362454, 47.4763869 ], + [ 7.8361119, 47.4763861 ], + [ 7.8359891, 47.4763866 ], + [ 7.8357803, 47.4763885 ], + [ 7.8356399, 47.4763925 ], + [ 7.8355011999999995, 47.4763966 ], + [ 7.8353871, 47.4763934 ], + [ 7.8352731, 47.4763831 ], + [ 7.8351799, 47.4763704 ], + [ 7.8350974, 47.476354 ], + [ 7.8350077, 47.4763316 ], + [ 7.8349443999999995, 47.4763116 ], + [ 7.8348688, 47.4762977 ], + [ 7.8347967, 47.4762895 ], + [ 7.8347037, 47.4762958 ], + [ 7.8346371999999995, 47.4763067 ], + [ 7.834483, 47.4763477 ], + [ 7.8343516, 47.4763827 ], + [ 7.8342658, 47.4764044 ], + [ 7.8341764, 47.4764214 ], + [ 7.8340519, 47.4764302 ], + [ 7.8339168, 47.4764366 ], + [ 7.8337115, 47.4764348 ], + [ 7.8334095, 47.4764311 ], + [ 7.8333251, 47.4764186 ], + [ 7.8332132, 47.4764508 ], + [ 7.8331706, 47.4764218 ], + [ 7.8332461, 47.4763924 ], + [ 7.8331824, 47.4763606 ], + [ 7.8330873, 47.4762972 ], + [ 7.8330151, 47.4762251 ], + [ 7.8329546, 47.4761468 ], + [ 7.832895, 47.4760717 ], + [ 7.8328254, 47.4760012 ], + [ 7.8327469, 47.4759356 ], + [ 7.8326591, 47.4758753 ], + [ 7.8325627, 47.4758246 ], + [ 7.8325124, 47.4758048 ], + [ 7.8324314, 47.4758669 ], + [ 7.8323283, 47.4759362 ], + [ 7.8322689, 47.475963899999996 ], + [ 7.8320974, 47.476043 ], + [ 7.8319644, 47.4760767 ], + [ 7.8318241, 47.4761117 ], + [ 7.8316979, 47.4761169 ], + [ 7.8315646, 47.4761221 ], + [ 7.8313926, 47.4761334 ], + [ 7.83124, 47.4761458 ], + [ 7.8309926, 47.4761478 ], + [ 7.8308838, 47.4761482 ], + [ 7.8307626, 47.4761367 ], + [ 7.8306626, 47.4761334 ], + [ 7.8306081, 47.4761265 ], + [ 7.8304816, 47.4761091 ], + [ 7.8303868, 47.4760999 ], + [ 7.8301796, 47.4760827 ], + [ 7.8299705, 47.4760632 ], + [ 7.8296844, 47.4760475 ], + [ 7.8295102, 47.4760017 ], + [ 7.8294436, 47.4759972 ], + [ 7.8290817, 47.4759627 ], + [ 7.8288516999999995, 47.4759421 ], + [ 7.8288312, 47.4759419 ], + [ 7.8288428, 47.4758362 ], + [ 7.8288503, 47.4757362 ], + [ 7.8288575, 47.4755972 ], + [ 7.8288649, 47.4754999 ], + [ 7.8288684, 47.4754166 ], + [ 7.828876, 47.4753387 ], + [ 7.828892, 47.475272 ], + [ 7.8289121, 47.475233 ], + [ 7.8289283, 47.4751885 ], + [ 7.8289441, 47.4751301 ], + [ 7.8289683, 47.4750578 ], + [ 7.8289923, 47.474991 ], + [ 7.8289918, 47.4749188 ], + [ 7.8289992, 47.4748076 ], + [ 7.8290028, 47.4747325 ], + [ 7.8290023, 47.474663 ], + [ 7.8290017, 47.4745852 ], + [ 7.8290257, 47.4745073 ], + [ 7.8290662, 47.4744516 ], + [ 7.8291026, 47.4743793 ], + [ 7.8291268, 47.4743098 ], + [ 7.8291386, 47.4742569 ], + [ 7.8291423, 47.4742013 ], + [ 7.8291458, 47.4741207 ], + [ 7.8291329, 47.4740458 ], + [ 7.829112, 47.4739735 ], + [ 7.8290828999999995, 47.4739125 ], + [ 7.8290289, 47.4738238 ], + [ 7.8289545, 47.4737462 ], + [ 7.8288389, 47.4736299 ], + [ 7.8287275, 47.4735164 ], + [ 7.8286119, 47.4734028 ], + [ 7.828529, 47.4732809 ], + [ 7.828438, 47.4731616 ], + [ 7.8282342, 47.472895 ], + [ 7.8281395, 47.4728283 ], + [ 7.828049, 47.4727633 ], + [ 7.8279627, 47.4726983 ], + [ 7.8278798, 47.4726313 ], + [ 7.8277985999999995, 47.4725639 ], + [ 7.8277154, 47.4724986 ], + [ 7.8276281, 47.472434 ], + [ 7.8275427, 47.4723699 ], + [ 7.827452, 47.4723114 ], + [ 7.8273541, 47.4722591 ], + [ 7.8272429, 47.4722168 ], + [ 7.8271311, 47.4721697 ], + [ 7.8270646, 47.4721313 ], + [ 7.827019, 47.4720956 ], + [ 7.8269813, 47.4720344 ], + [ 7.8269689, 47.4718764 ], + [ 7.8266568, 47.4724209 ], + [ 7.8263663999999995, 47.4729378 ], + [ 7.8261676, 47.4732863 ], + [ 7.8259955, 47.4737183 ], + [ 7.8264584, 47.4742173 ], + [ 7.8267942, 47.474421 ], + [ 7.8272644, 47.4747306 ], + [ 7.8276405, 47.4750356 ], + [ 7.827895, 47.4755106 ], + [ 7.8279946, 47.4757203 ], + [ 7.8284148, 47.4762609 ], + [ 7.8287454, 47.476612 ], + [ 7.8290578, 47.4768999 ], + [ 7.8295132, 47.4771769 ], + [ 7.8299022, 47.477514 ], + [ 7.8301142, 47.4776583 ], + [ 7.8304718, 47.4776716 ], + [ 7.8311967, 47.4776984 ], + [ 7.8322678, 47.4777962 ], + [ 7.8331018, 47.4777978 ], + [ 7.8338411, 47.4780038 ], + [ 7.834623, 47.4782729 ], + [ 7.8343003, 47.479674 ], + [ 7.8335264, 47.4808385 ], + [ 7.8332372, 47.4813658 ], + [ 7.8329930999999995, 47.4817484 ], + [ 7.8325986, 47.4824596 ], + [ 7.8316907, 47.4822729 ], + [ 7.8308188, 47.4820957 ], + [ 7.8297728, 47.4819759 ], + [ 7.828752, 47.4819373 ], + [ 7.8279145, 47.4819042 ], + [ 7.8269738, 47.4818757 ], + [ 7.8261001, 47.4817435 ], + [ 7.8254062, 47.481638 ], + [ 7.8246417, 47.4815251 ], + [ 7.8238226, 47.4815847 ], + [ 7.8230217, 47.4816059 ], + [ 7.8219328, 47.4816614 ], + [ 7.8212847, 47.4818665 ], + [ 7.8212427, 47.4818798 ], + [ 7.8211354, 47.4819065 ], + [ 7.8209895, 47.4821571 ], + [ 7.8205524, 47.4821438 ], + [ 7.8204226, 47.4820838 ], + [ 7.8198334, 47.4822304 ], + [ 7.8196988, 47.4823028 ], + [ 7.8192494, 47.4823793 ], + [ 7.818572, 47.4825519 ], + [ 7.8176909, 47.4829787 ], + [ 7.8176143, 47.4831758 ], + [ 7.8176165, 47.4833888 ], + [ 7.8173834, 47.4835204 ], + [ 7.8171771, 47.4835632 ], + [ 7.8167786, 47.483542 ], + [ 7.8165651, 47.4835162 ], + [ 7.8164356999999995, 47.483578 ], + [ 7.8162247, 47.4835511 ], + [ 7.8161862, 47.4835748 ], + [ 7.8156321, 47.4836745 ], + [ 7.8152268, 47.483748 ], + [ 7.8148596, 47.4838139 ], + [ 7.8144371, 47.4841287 ], + [ 7.8141303, 47.4843133 ], + [ 7.8140426, 47.4843661 ], + [ 7.8140776, 47.4843865 ], + [ 7.8141885, 47.4844225 ], + [ 7.8144775, 47.4845834 ], + [ 7.8145416, 47.4846288 ], + [ 7.8146398999999995, 47.4846983 ], + [ 7.8146602, 47.484713 ], + [ 7.8146798, 47.4847282 ], + [ 7.8146987, 47.4847438 ], + [ 7.8147169, 47.4847598 ], + [ 7.8147344, 47.4847761 ], + [ 7.8147511, 47.4847928 ], + [ 7.8147671, 47.4848098 ], + [ 7.8147705, 47.4848136 ], + [ 7.8147812, 47.4848184 ], + [ 7.8147924, 47.4848225 ], + [ 7.814804, 47.4848259 ], + [ 7.814816, 47.4848287 ], + [ 7.8148283, 47.4848308 ], + [ 7.8148408, 47.4848322 ], + [ 7.8148534, 47.4848328 ], + [ 7.8148661, 47.4848328 ], + [ 7.8148788, 47.484832 ], + [ 7.8148912, 47.4848305 ], + [ 7.8149035, 47.4848283 ], + [ 7.8149155, 47.4848254 ], + [ 7.815, 47.4848002 ], + [ 7.8151307, 47.4847519 ], + [ 7.8153056, 47.4846972 ], + [ 7.8157247, 47.4845712 ], + [ 7.8158119, 47.4845478 ], + [ 7.8158996, 47.4845254 ], + [ 7.8159879, 47.4845038 ], + [ 7.816086, 47.4844865 ], + [ 7.8161857, 47.4844743 ], + [ 7.8162865, 47.4844673 ], + [ 7.8164442, 47.4844602 ], + [ 7.8166016, 47.4844505 ], + [ 7.8167586, 47.4844382 ], + [ 7.8168686, 47.4844245 ], + [ 7.8169763, 47.4844042 ], + [ 7.817081, 47.4843775 ], + [ 7.8171817, 47.4843446 ], + [ 7.817287, 47.4842994 ], + [ 7.8173885, 47.4842504 ], + [ 7.817486, 47.4841978 ], + [ 7.8175847, 47.4841435 ], + [ 7.8176806, 47.4840869 ], + [ 7.8177734999999995, 47.4840281 ], + [ 7.8178316, 47.4839892 ], + [ 7.8178868999999995, 47.4839485 ], + [ 7.8179393, 47.483906 ], + [ 7.8179878, 47.4838721 ], + [ 7.8180395, 47.4838405 ], + [ 7.8180941, 47.4838112 ], + [ 7.8181888, 47.4837614 ], + [ 7.8182769, 47.4837063 ], + [ 7.8183578, 47.4836463 ], + [ 7.8184383, 47.483562 ], + [ 7.8185142, 47.4834758 ], + [ 7.8185854, 47.4833877 ], + [ 7.8186166, 47.4833576 ], + [ 7.8186514, 47.4833294 ], + [ 7.8186897, 47.4833032 ], + [ 7.818731, 47.4832793 ], + [ 7.8187751, 47.4832578 ], + [ 7.8188217, 47.483239 ], + [ 7.8188705, 47.4832228 ], + [ 7.8189211, 47.4832095 ], + [ 7.8189732, 47.4831991 ], + [ 7.8190542, 47.4831838 ], + [ 7.8191368, 47.4831728 ], + [ 7.8192203, 47.4831662 ], + [ 7.8192996, 47.4831576 ], + [ 7.8193777, 47.4831451 ], + [ 7.8194543, 47.4831289 ], + [ 7.8195629, 47.4830938 ], + [ 7.8196697, 47.483056 ], + [ 7.8197744, 47.4830158 ], + [ 7.8198563, 47.4829876 ], + [ 7.8199418, 47.4829648 ], + [ 7.82003, 47.4829475 ], + [ 7.8201203, 47.4829359 ], + [ 7.8202118, 47.4829301 ], + [ 7.8204001, 47.4829165 ], + [ 7.8204528, 47.4829121 ], + [ 7.8205057, 47.4829108 ], + [ 7.8205587, 47.4829127 ], + [ 7.8206112, 47.4829178 ], + [ 7.8206628, 47.482926 ], + [ 7.8207132, 47.4829373 ], + [ 7.8207619, 47.4829515 ], + [ 7.8208086, 47.4829686 ], + [ 7.8208528, 47.482988399999996 ], + [ 7.8209835, 47.4830406 ], + [ 7.8211188, 47.4830871 ], + [ 7.8212582, 47.4831278 ], + [ 7.8212992, 47.4831417 ], + [ 7.8213417, 47.4831532 ], + [ 7.8213855, 47.4831623 ], + [ 7.8214303, 47.4831689 ], + [ 7.8214757, 47.483173 ], + [ 7.8215215, 47.4831745 ], + [ 7.8215673, 47.4831734 ], + [ 7.8216128, 47.4831697 ], + [ 7.8216577, 47.4831636 ], + [ 7.8217038, 47.4831544 ], + [ 7.8217489, 47.4831431 ], + [ 7.8217928, 47.4831297 ], + [ 7.8218253, 47.4831179 ], + [ 7.8218592000000005, 47.4831081 ], + [ 7.8218942, 47.4831002 ], + [ 7.8219301, 47.4830943 ], + [ 7.8219666, 47.4830906 ], + [ 7.8220034, 47.4830889 ], + [ 7.8220403, 47.4830894 ], + [ 7.822077, 47.483092 ], + [ 7.8221132, 47.4830967 ], + [ 7.8221488, 47.4831034 ], + [ 7.8221833, 47.4831122 ], + [ 7.8222167, 47.4831229 ], + [ 7.8222485, 47.4831355 ], + [ 7.8224191, 47.4831847 ], + [ 7.822448, 47.4831948 ], + [ 7.8224781, 47.4832031 ], + [ 7.8225090999999995, 47.4832096 ], + [ 7.8225408, 47.4832143 ], + [ 7.822573, 47.4832172 ], + [ 7.8226054, 47.4832183 ], + [ 7.8226379, 47.4832174 ], + [ 7.8226701, 47.4832147 ], + [ 7.8227019, 47.4832102 ], + [ 7.8227329, 47.4832038 ], + [ 7.8227630999999995, 47.4831956 ], + [ 7.8227922, 47.4831858 ], + [ 7.8228199, 47.4831743 ], + [ 7.8229495, 47.4831299 ], + [ 7.8230187, 47.4831114 ], + [ 7.8230858, 47.4830895 ], + [ 7.8231503, 47.4830644 ], + [ 7.8233013, 47.4830022 ], + [ 7.8233719, 47.4829777 ], + [ 7.8234452, 47.4829574 ], + [ 7.8235209, 47.4829414 ], + [ 7.8235982, 47.4829297 ], + [ 7.8236768, 47.4829225 ], + [ 7.8240300000000005, 47.4828819 ], + [ 7.8240719, 47.4828788 ], + [ 7.8241141, 47.4828782 ], + [ 7.8241562, 47.4828801 ], + [ 7.8241978, 47.4828845 ], + [ 7.8242388, 47.4828914 ], + [ 7.8242787, 47.4829007 ], + [ 7.8243172, 47.4829124 ], + [ 7.824354, 47.4829263 ], + [ 7.824389, 47.4829423 ], + [ 7.8244216, 47.4829604 ], + [ 7.8244519, 47.4829803 ], + [ 7.8244793999999995, 47.483002 ], + [ 7.8246345, 47.4831123 ], + [ 7.8247599, 47.4831969 ], + [ 7.8248164, 47.4832431 ], + [ 7.8249388, 47.4833268 ], + [ 7.8250524, 47.4834025 ], + [ 7.8251725, 47.4834681 ], + [ 7.8254193, 47.4835856 ], + [ 7.8254735, 47.483607 ], + [ 7.8255299, 47.4836255 ], + [ 7.8255883, 47.4836411 ], + [ 7.8256483, 47.4836536 ], + [ 7.8258928, 47.4837269 ], + [ 7.8259083, 47.4837341 ], + [ 7.8259246000000005, 47.4837405 ], + [ 7.8259417, 47.4837458 ], + [ 7.8259594, 47.4837501 ], + [ 7.8259776, 47.4837534 ], + [ 7.8260411, 47.483774 ], + [ 7.8261015, 47.4837985 ], + [ 7.8261583, 47.4838267 ], + [ 7.826211, 47.4838584 ], + [ 7.8262591, 47.4838932 ], + [ 7.8263022, 47.483931 ], + [ 7.8263399, 47.4839713 ], + [ 7.8263593, 47.4839912 ], + [ 7.8267134, 47.4843534 ], + [ 7.8267790999999995, 47.4844064 ], + [ 7.8268307, 47.4844477 ], + [ 7.8268527, 47.4844583 ], + [ 7.8268761, 47.4844675 ], + [ 7.8269005, 47.4844753 ], + [ 7.8269259, 47.4844817 ], + [ 7.826952, 47.4844864 ], + [ 7.8269786, 47.4844896 ], + [ 7.8270055, 47.4844911 ], + [ 7.8270325, 47.4844911 ], + [ 7.827093, 47.4844825 ], + [ 7.8271522000000004, 47.4844706 ], + [ 7.8272097, 47.4844553 ], + [ 7.8272651, 47.4844367 ], + [ 7.8272913, 47.4844325 ], + [ 7.827318, 47.4844298 ], + [ 7.8273449, 47.4844287 ], + [ 7.8273718, 47.4844292 ], + [ 7.8273986, 47.4844313 ], + [ 7.827425, 47.484435 ], + [ 7.8274508, 47.4844402 ], + [ 7.8274759, 47.4844469 ], + [ 7.8275, 47.484455 ], + [ 7.827523, 47.4844646 ], + [ 7.8275445999999995, 47.4844755 ], + [ 7.8275648, 47.4844876 ], + [ 7.8275833, 47.4845008 ], + [ 7.8276001, 47.4845151 ], + [ 7.8276224, 47.4845273 ], + [ 7.8276462, 47.484538 ], + [ 7.8276714, 47.4845472 ], + [ 7.8276978, 47.4845548 ], + [ 7.827725, 47.4845607 ], + [ 7.8277529, 47.4845649 ], + [ 7.8277813, 47.4845674 ], + [ 7.8278099, 47.4845681 ], + [ 7.827928, 47.4845761 ], + [ 7.8280443, 47.484592 ], + [ 7.8281579, 47.4846154 ], + [ 7.8285177, 47.4846856 ], + [ 7.8286226, 47.4847005 ], + [ 7.828729, 47.4847091 ], + [ 7.8288361, 47.4847113 ], + [ 7.8294391999999995, 47.4847071 ], + [ 7.8295853, 47.4846984 ], + [ 7.8297299, 47.4846817 ], + [ 7.829872, 47.484657 ], + [ 7.8314892, 47.4843334 ], + [ 7.8315632, 47.4843171 ], + [ 7.8316384, 47.4843034 ], + [ 7.8317145, 47.4842925 ], + [ 7.8318033, 47.4842768 ], + [ 7.8318365, 47.4842724 ], + [ 7.831869, 47.4842661 ], + [ 7.8319006, 47.484258 ], + [ 7.8319312, 47.4842482 ], + [ 7.8319485, 47.4842722 ], + [ 7.8321565, 47.4857167 ], + [ 7.8321662, 47.4857581 ], + [ 7.8320138, 47.4862226 ], + [ 7.8320175, 47.4863945 ], + [ 7.8319673, 47.4867262 ], + [ 7.8320311, 47.4868515 ], + [ 7.8322432, 47.4867132 ], + [ 7.8322512, 47.4867084 ], + [ 7.8322595, 47.4867039 ], + [ 7.8322682, 47.4866996 ], + [ 7.8322771, 47.4866957 ], + [ 7.8322864, 47.4866921 ], + [ 7.8323345, 47.4864959 ], + [ 7.8326936, 47.4862433 ], + [ 7.8328996, 47.485984 ], + [ 7.8330002, 47.4856868 ], + [ 7.8329927999999995, 47.4856467 ], + [ 7.8330152, 47.4856453 ], + [ 7.8330377, 47.4856444 ], + [ 7.8330601, 47.4856442 ], + [ 7.8330826, 47.4856446 ], + [ 7.8331051, 47.4856457 ], + [ 7.8331274, 47.4856473 ], + [ 7.8331497, 47.4856496 ], + [ 7.8331717, 47.4856525 ], + [ 7.8331935999999995, 47.4856561 ], + [ 7.8332153, 47.4856602 ], + [ 7.8332366, 47.485665 ], + [ 7.8332577, 47.4856703 ], + [ 7.8332784, 47.4856762 ], + [ 7.8332988, 47.4856827 ], + [ 7.8334752, 47.4857422 ], + [ 7.8337973, 47.4851991 ], + [ 7.8341752, 47.4851614 ], + [ 7.8343362, 47.4851444 ], + [ 7.8344366999999995, 47.4851592 ], + [ 7.8342547, 47.4853468 ], + [ 7.83424, 47.4854324 ], + [ 7.8342704, 47.4855094 ], + [ 7.83428, 47.4855844 ], + [ 7.834417, 47.4857966 ], + [ 7.8344566, 47.4858275 ], + [ 7.8342921, 47.4859235 ], + [ 7.8342801, 47.4859302 ], + [ 7.8342676, 47.4859365 ], + [ 7.8342545999999995, 47.4859422 ], + [ 7.8342411, 47.4859475 ], + [ 7.8342273, 47.4859523 ], + [ 7.834213, 47.4859566 ], + [ 7.8341985, 47.4859603 ], + [ 7.8341837, 47.4859635 ], + [ 7.8341686, 47.4859662 ], + [ 7.8344437, 47.4865301 ], + [ 7.8342326, 47.4869431 ], + [ 7.8343861, 47.4869834 ], + [ 7.8343978, 47.4869882 ], + [ 7.834409, 47.4869934 ], + [ 7.8344196, 47.4869992 ], + [ 7.8344296, 47.4870054 ], + [ 7.834439, 47.487012 ], + [ 7.8344477999999995, 47.4870191 ], + [ 7.8344558, 47.4870265 ], + [ 7.8344631, 47.4870343 ], + [ 7.8344697, 47.4870423 ], + [ 7.8344754, 47.4870507 ], + [ 7.8344803, 47.4870593 ], + [ 7.8344844, 47.4870681 ], + [ 7.8344875, 47.487077 ], + [ 7.8344899, 47.4870861 ], + [ 7.8344913, 47.4870953 ], + [ 7.8345386999999995, 47.4872958 ], + [ 7.8345407, 47.487302 ], + [ 7.8345436, 47.4873079 ], + [ 7.8345475, 47.4873137 ], + [ 7.8345521, 47.4873191 ], + [ 7.8345576, 47.4873242 ], + [ 7.8345639, 47.4873288 ], + [ 7.8345708, 47.487333 ], + [ 7.8345784, 47.4873366 ], + [ 7.8345864, 47.4873398 ], + [ 7.8345949, 47.4873423 ], + [ 7.8346038, 47.4873442 ], + [ 7.8346129, 47.4873455 ], + [ 7.8346221, 47.4873461 ], + [ 7.8346314, 47.4873461 ], + [ 7.8346406, 47.4873454 ], + [ 7.8346497, 47.4873441 ], + [ 7.8346585, 47.4873421 ], + [ 7.8346941999999995, 47.4873335 ], + [ 7.8347302, 47.4873254 ], + [ 7.8347663999999995, 47.4873179 ], + [ 7.8348029, 47.4873109 ], + [ 7.8348396000000005, 47.4873044 ], + [ 7.8348764, 47.4872984 ], + [ 7.8349135, 47.487293 ], + [ 7.8349507, 47.4872882 ], + [ 7.8349881, 47.4872839 ], + [ 7.8350256, 47.4872801 ], + [ 7.8350632000000004, 47.4872769 ], + [ 7.8350831, 47.4872757 ], + [ 7.8351030999999995, 47.4872752 ], + [ 7.8351232, 47.4872754 ], + [ 7.8351432, 47.4872762 ], + [ 7.8351631, 47.4872778 ], + [ 7.8351828, 47.48728 ], + [ 7.8352024, 47.4872828 ], + [ 7.8352217, 47.4872864 ], + [ 7.8352408, 47.4872906 ], + [ 7.8352595, 47.4872954 ], + [ 7.8352778, 47.4873009 ], + [ 7.8352957, 47.487307 ], + [ 7.8353131, 47.4873137 ], + [ 7.83533, 47.487321 ], + [ 7.8353463, 47.4873289 ], + [ 7.835362, 47.4873373 ], + [ 7.8353771, 47.4873462 ], + [ 7.8353915, 47.4873557 ], + [ 7.8354052, 47.4873656 ], + [ 7.8354181, 47.4873759 ], + [ 7.8354302, 47.4873867 ], + [ 7.8354396, 47.4873959 ], + [ 7.8354484, 47.4874054 ], + [ 7.8354567, 47.4874151 ], + [ 7.8354643, 47.487425 ], + [ 7.8354713, 47.4874352 ], + [ 7.8354777, 47.4874455 ], + [ 7.8354834, 47.487456 ], + [ 7.8354888, 47.4874666 ], + [ 7.835495, 47.4874769 ], + [ 7.8355021, 47.4874871 ], + [ 7.8355099, 47.4874969 ], + [ 7.8355186, 47.4875065 ], + [ 7.835528, 47.4875157 ], + [ 7.8355381, 47.4875245 ], + [ 7.8355489, 47.487533 ], + [ 7.8355603, 47.487541 ], + [ 7.8355724, 47.4875486 ], + [ 7.8355851, 47.4875558 ], + [ 7.8355984, 47.4875625 ], + [ 7.835617, 47.487571 ], + [ 7.835636, 47.4875791 ], + [ 7.8356554, 47.4875868 ], + [ 7.8356752, 47.487594 ], + [ 7.8356954, 47.4876007 ], + [ 7.8357159, 47.4876069 ], + [ 7.8357367, 47.4876127 ], + [ 7.8357578, 47.487618 ], + [ 7.8357791, 47.4876228 ], + [ 7.8359201, 47.4876677 ], + [ 7.8359694, 47.4874024 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns079", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Chienberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Chienberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Chienberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Chienberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5163028, 47.4410379 ], + [ 7.5163028, 47.4410117 ], + [ 7.5162779, 47.4406117 ], + [ 7.5160931, 47.4405313 ], + [ 7.5158816, 47.4403165 ], + [ 7.5157131, 47.4399816 ], + [ 7.5157152, 47.4399583 ], + [ 7.5158576, 47.4394994 ], + [ 7.5158631, 47.4393514 ], + [ 7.5159777, 47.4391956 ], + [ 7.5161612, 47.4391137 ], + [ 7.5161839, 47.4389463 ], + [ 7.5160331, 47.4388052 ], + [ 7.5162508, 47.4385598 ], + [ 7.5164688, 47.4385246 ], + [ 7.5170712, 47.4384035 ], + [ 7.5167724, 47.4381584 ], + [ 7.5166406, 47.4382675 ], + [ 7.5165315, 47.438217 ], + [ 7.5163879, 47.4381159 ], + [ 7.516405, 47.438073 ], + [ 7.5165942999999995, 47.4379911 ], + [ 7.5166917, 47.4379132 ], + [ 7.5167661, 47.4377652 ], + [ 7.5167876, 47.4377058 ], + [ 7.5168563, 47.4376357 ], + [ 7.5172232, 47.4373357 ], + [ 7.5177562, 47.436907 ], + [ 7.5180715, 47.4367199 ], + [ 7.5182207, 47.436677 ], + [ 7.5187483, 47.436481 ], + [ 7.5190882, 47.4363628 ], + [ 7.5197692, 47.436126 ], + [ 7.5203196, 47.4357869 ], + [ 7.5202618, 47.4355416 ], + [ 7.5201061, 47.4353726 ], + [ 7.5199847, 47.4354334 ], + [ 7.5199582, 47.4354477 ], + [ 7.5194393, 47.4353533 ], + [ 7.5185661, 47.4351758 ], + [ 7.5181222, 47.4350913 ], + [ 7.5176408, 47.4349729 ], + [ 7.5169531, 47.4348546 ], + [ 7.5165688, 47.434837 ], + [ 7.5165611, 47.4348453 ], + [ 7.5163, 47.4348455 ], + [ 7.5161392, 47.4347638 ], + [ 7.5160086, 47.4346753 ], + [ 7.5158077, 47.4346278 ], + [ 7.5156168, 47.4345666 ], + [ 7.5154159, 47.434559899999996 ], + [ 7.5153256, 47.4345531 ], + [ 7.5151246, 47.4344919 ], + [ 7.5149439000000005, 47.4344716 ], + [ 7.5147932, 47.4344513 ], + [ 7.5147028, 47.4344241 ], + [ 7.5146525, 47.434356 ], + [ 7.5143913, 47.4342948 ], + [ 7.5142104, 47.4342132 ], + [ 7.5141929, 47.4342154 ], + [ 7.5138346, 47.434191 ], + [ 7.513605, 47.4341639 ], + [ 7.5134153, 47.4341744 ], + [ 7.51381, 47.4355006 ], + [ 7.513842, 47.4355934 ], + [ 7.5138384, 47.435596 ], + [ 7.5138394, 47.4355995 ], + [ 7.5122945, 47.4367275 ], + [ 7.5121542, 47.4368368 ], + [ 7.5105495, 47.4380412 ], + [ 7.5094246, 47.4388551 ], + [ 7.5089243, 47.4392259 ], + [ 7.5082461, 47.4399265 ], + [ 7.5076297, 47.4405028 ], + [ 7.507091, 47.4410412 ], + [ 7.5061271, 47.4420174 ], + [ 7.5059654, 47.4428783 ], + [ 7.505869, 47.4434788 ], + [ 7.5057613, 47.4439384 ], + [ 7.5057036, 47.4442382 ], + [ 7.5055406, 47.4450664 ], + [ 7.5055454, 47.4450709 ], + [ 7.5065735, 47.4445019 ], + [ 7.5076912, 47.4438913 ], + [ 7.509449, 47.4431746 ], + [ 7.5112655, 47.4424559 ], + [ 7.5131016, 47.4417354 ], + [ 7.5162645, 47.4410312 ], + [ 7.5163028, 47.4410379 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr002", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Rittenberg", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Rittenberg", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Rittenberg", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Rittenberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.638677, 47.6950591 ], + [ 8.638668299999999, 47.694918 ], + [ 8.6386487, 47.6947774 ], + [ 8.6386182, 47.6946376 ], + [ 8.638577, 47.6944992 ], + [ 8.638525, 47.6943623 ], + [ 8.6384626, 47.6942275 ], + [ 8.6383897, 47.6940951 ], + [ 8.6383067, 47.6939655 ], + [ 8.638213799999999, 47.6938389 ], + [ 8.6381111, 47.6937158 ], + [ 8.6379991, 47.6935966 ], + [ 8.637878, 47.6934814 ], + [ 8.6377481, 47.6933707 ], + [ 8.6376098, 47.6932647 ], + [ 8.637463499999999, 47.6931637 ], + [ 8.6373096, 47.6930681 ], + [ 8.6371484, 47.692978 ], + [ 8.6369805, 47.6928937 ], + [ 8.6368063, 47.6928155 ], + [ 8.6366263, 47.6927436 ], + [ 8.6364409, 47.6926781 ], + [ 8.6362508, 47.6926192 ], + [ 8.6360563, 47.6925672 ], + [ 8.635858, 47.692522 ], + [ 8.6356566, 47.692484 ], + [ 8.6354524, 47.6924531 ], + [ 8.6352461, 47.6924295 ], + [ 8.6350383, 47.6924132 ], + [ 8.6348295, 47.6924043 ], + [ 8.6346203, 47.6924027 ], + [ 8.6344113, 47.6924086 ], + [ 8.634203, 47.6924218 ], + [ 8.6339961, 47.6924424 ], + [ 8.633791, 47.6924702 ], + [ 8.6335883, 47.6925053 ], + [ 8.6333886, 47.6925475 ], + [ 8.6331925, 47.6925967 ], + [ 8.6330005, 47.6926527 ], + [ 8.632813, 47.6927154 ], + [ 8.6326307, 47.6927847 ], + [ 8.632454, 47.6928603 ], + [ 8.6322835, 47.6929421 ], + [ 8.6321194, 47.6930298 ], + [ 8.631962399999999, 47.6931231 ], + [ 8.6318129, 47.6932219 ], + [ 8.6316712, 47.6933258 ], + [ 8.6315378, 47.6934346 ], + [ 8.6314129, 47.693548 ], + [ 8.6312971, 47.6936656 ], + [ 8.6311905, 47.6937871 ], + [ 8.6310935, 47.6939123 ], + [ 8.6310063, 47.6940407 ], + [ 8.6309292, 47.694172 ], + [ 8.6308623, 47.6943058 ], + [ 8.630806, 47.6944419 ], + [ 8.6307602, 47.6945797 ], + [ 8.6307252, 47.6947189 ], + [ 8.6307011, 47.6948593 ], + [ 8.6306878, 47.6950002 ], + [ 8.6306855, 47.6951415 ], + [ 8.6306942, 47.6952826 ], + [ 8.6307138, 47.6954232 ], + [ 8.6307442, 47.695563 ], + [ 8.6307855, 47.6957014 ], + [ 8.6308374, 47.6958383 ], + [ 8.6308999, 47.6959731 ], + [ 8.6309727, 47.6961055 ], + [ 8.6310557, 47.6962351 ], + [ 8.6311486, 47.6963617 ], + [ 8.6312513, 47.6964848 ], + [ 8.6313633, 47.6966041 ], + [ 8.6314844, 47.6967192 ], + [ 8.6316142, 47.69683 ], + [ 8.6317525, 47.696936 ], + [ 8.6318988, 47.6970369 ], + [ 8.6320528, 47.6971326 ], + [ 8.6322139, 47.6972227 ], + [ 8.6323818, 47.697307 ], + [ 8.632556, 47.6973852 ], + [ 8.6327361, 47.6974571 ], + [ 8.6329215, 47.6975226 ], + [ 8.6331117, 47.6975815 ], + [ 8.6333061, 47.6976336 ], + [ 8.6335044, 47.6976787 ], + [ 8.6337059, 47.6977167 ], + [ 8.6339101, 47.6977476 ], + [ 8.6341164, 47.6977712 ], + [ 8.6343242, 47.6977875 ], + [ 8.634533, 47.6977964 ], + [ 8.6347422, 47.697798 ], + [ 8.6349513, 47.6977921 ], + [ 8.6351596, 47.6977789 ], + [ 8.6353666, 47.6977583 ], + [ 8.6355717, 47.6977305 ], + [ 8.6357744, 47.6976954 ], + [ 8.635974, 47.6976532 ], + [ 8.6361702, 47.697604 ], + [ 8.6363622, 47.697548 ], + [ 8.6365497, 47.6974853 ], + [ 8.636732, 47.697416 ], + [ 8.6369087, 47.6973403 ], + [ 8.6370793, 47.6972586 ], + [ 8.6372433, 47.6971709 ], + [ 8.6374003, 47.6970775 ], + [ 8.6375499, 47.6969787 ], + [ 8.6376915, 47.6968748 ], + [ 8.637825, 47.696766 ], + [ 8.6379498, 47.6966526 ], + [ 8.6380657, 47.696535 ], + [ 8.6381722, 47.6964135 ], + [ 8.6382692, 47.6962883 ], + [ 8.6383564, 47.6961599 ], + [ 8.6384335, 47.6960286 ], + [ 8.6385003, 47.6958948 ], + [ 8.6385567, 47.6957587 ], + [ 8.6386024, 47.6956209 ], + [ 8.6386374, 47.6954816 ], + [ 8.6386615, 47.6953413 ], + [ 8.6386747, 47.6952004 ], + [ 8.638677, 47.6950591 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SHA0001", + "country" : "CHE", + "name" : [ + { + "text" : "Kantonales Gefängnis Schaffhausen", + "lang" : "de-CH" + }, + { + "text" : "Kantonales Gefängnis Schaffhausen", + "lang" : "fr-CH" + }, + { + "text" : "Kantonales Gefängnis Schaffhausen", + "lang" : "it-CH" + }, + { + "text" : "Kantonales Gefängnis Schaffhausen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kantonales Gefängnis Schaffhausen", + "lang" : "de-CH" + }, + { + "text" : "Kantonales Gefängnis Schaffhausen", + "lang" : "fr-CH" + }, + { + "text" : "Kantonales Gefängnis Schaffhausen", + "lang" : "it-CH" + }, + { + "text" : "Kantonales Gefängnis Schaffhausen", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Leitung", + "lang" : "de-CH" + }, + { + "text" : "Leitung", + "lang" : "fr-CH" + }, + { + "text" : "Leitung", + "lang" : "it-CH" + }, + { + "text" : "Leitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Lorenz Ammann", + "lang" : "de-CH" + }, + { + "text" : "Lorenz Ammann", + "lang" : "fr-CH" + }, + { + "text" : "Lorenz Ammann", + "lang" : "it-CH" + }, + { + "text" : "Lorenz Ammann", + "lang" : "en-GB" + } + ], + "siteURL" : "https://sh.ch/CMS/Webseite/Kanton-Schaffhausen/Beh-rde/Verwaltung/Volkswirtschaftsdepartement/Gef-ngnisverwaltung-3876-DE.html", + "email" : "lorenz.ammann@sh.ch", + "phone" : "0041526328050", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.1823809, 47.3799622 ], + [ 8.1823735, 47.379821 ], + [ 8.1823552, 47.3796803 ], + [ 8.1823261, 47.3795404 ], + [ 8.1822862, 47.3794017 ], + [ 8.1822358, 47.3792647 ], + [ 8.1821748, 47.3791296 ], + [ 8.1821035, 47.3789969 ], + [ 8.1820221, 47.3788669 ], + [ 8.1819308, 47.37874 ], + [ 8.1818299, 47.3786165 ], + [ 8.1817195, 47.3784968 ], + [ 8.1816001, 47.3783811 ], + [ 8.1814719, 47.3782698 ], + [ 8.1813354, 47.3781633 ], + [ 8.1811908, 47.3780618 ], + [ 8.1810386, 47.3779655 ], + [ 8.1808792, 47.3778748 ], + [ 8.180713, 47.3777898 ], + [ 8.1805405, 47.3777109 ], + [ 8.1803621, 47.3776383 ], + [ 8.1801785, 47.377572 ], + [ 8.1799899, 47.3775124 ], + [ 8.179797, 47.3774596 ], + [ 8.1796003, 47.3774137 ], + [ 8.1794004, 47.3773749 ], + [ 8.1791977, 47.3773432 ], + [ 8.1789929, 47.377318700000004 ], + [ 8.1787864, 47.3773016 ], + [ 8.178579, 47.3772919 ], + [ 8.178371, 47.3772895 ], + [ 8.1781632, 47.3772945 ], + [ 8.177956, 47.377307 ], + [ 8.1777501, 47.3773267 ], + [ 8.177546, 47.3773538 ], + [ 8.1773442, 47.377388 ], + [ 8.1771454, 47.3774294 ], + [ 8.17695, 47.3774778 ], + [ 8.1767586, 47.3775331 ], + [ 8.1765718, 47.3775951 ], + [ 8.1763899, 47.3776637 ], + [ 8.1762136, 47.3777386 ], + [ 8.1760434, 47.3778198 ], + [ 8.1758796, 47.3779068 ], + [ 8.1757227, 47.3779996 ], + [ 8.1755732, 47.3780977 ], + [ 8.1754314, 47.3782011 ], + [ 8.1752979, 47.3783094 ], + [ 8.1751728, 47.3784223 ], + [ 8.1750566, 47.3785394 ], + [ 8.1749496, 47.3786606 ], + [ 8.1748521, 47.3787854 ], + [ 8.1747643, 47.3789134 ], + [ 8.1746866, 47.3790444 ], + [ 8.174619, 47.379178 ], + [ 8.1745618, 47.3793139 ], + [ 8.1745151, 47.3794515 ], + [ 8.1744791, 47.3795907 ], + [ 8.1744539, 47.3797309 ], + [ 8.1744396, 47.3798718 ], + [ 8.1744361, 47.3800131 ], + [ 8.1744435, 47.3801542 ], + [ 8.1744617, 47.3802949 ], + [ 8.1744908, 47.3804348 ], + [ 8.1745306, 47.3805735 ], + [ 8.1745811, 47.3807105 ], + [ 8.174642, 47.3808456 ], + [ 8.1747133, 47.3809783 ], + [ 8.1747947, 47.3811083 ], + [ 8.174886, 47.3812352 ], + [ 8.1749869, 47.3813587 ], + [ 8.1750972, 47.3814785 ], + [ 8.1752167, 47.3815942 ], + [ 8.1753448, 47.3817054 ], + [ 8.1754814, 47.381812 ], + [ 8.1756259, 47.3819135 ], + [ 8.1757782, 47.3820098 ], + [ 8.1759376, 47.3821005 ], + [ 8.1761038, 47.3821855 ], + [ 8.1762763, 47.3822644 ], + [ 8.1764546, 47.3823371 ], + [ 8.1766383, 47.3824033 ], + [ 8.1768269, 47.3824629 ], + [ 8.1770198, 47.3825157 ], + [ 8.1772165, 47.3825616 ], + [ 8.1774165, 47.3826005 ], + [ 8.1776192, 47.3826322 ], + [ 8.177824, 47.3826566 ], + [ 8.1780305, 47.3826737 ], + [ 8.178238, 47.3826835 ], + [ 8.1784459, 47.3826858 ], + [ 8.1786538, 47.3826808 ], + [ 8.178861, 47.3826684 ], + [ 8.1790669, 47.3826486 ], + [ 8.1792711, 47.3826216 ], + [ 8.1794729, 47.3825873 ], + [ 8.1796717, 47.3825459 ], + [ 8.1798671, 47.3824975 ], + [ 8.1800585, 47.3824422 ], + [ 8.1802454, 47.3823802 ], + [ 8.1804272, 47.3823116 ], + [ 8.1806035, 47.3822367 ], + [ 8.1807738, 47.3821556 ], + [ 8.1809376, 47.3820685 ], + [ 8.1810945, 47.3819757 ], + [ 8.181244, 47.3818775 ], + [ 8.1813857, 47.3817741 ], + [ 8.1815193, 47.3816659 ], + [ 8.1816443, 47.381553 ], + [ 8.1817605, 47.3814358 ], + [ 8.1818675, 47.3813147 ], + [ 8.181965, 47.3811899 ], + [ 8.1820528, 47.3810618 ], + [ 8.1821305, 47.3809308 ], + [ 8.1821981, 47.3807972 ], + [ 8.1822553, 47.3806614 ], + [ 8.1823019, 47.3805237 ], + [ 8.1823379, 47.3803845 ], + [ 8.1823631, 47.3802443 ], + [ 8.1823774, 47.3801034 ], + [ 8.1823809, 47.3799622 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSA0001", + "country" : "CHE", + "name" : [ + { + "text" : "Justizvollzugsanstalt Lenzburg Strafanstalt", + "lang" : "de-CH" + }, + { + "text" : "Justizvollzugsanstalt Lenzburg Strafanstalt", + "lang" : "fr-CH" + }, + { + "text" : "Justizvollzugsanstalt Lenzburg Strafanstalt", + "lang" : "it-CH" + }, + { + "text" : "Justizvollzugsanstalt Lenzburg Strafanstalt", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Justizvollzugsanstalt Lenzburg", + "lang" : "de-CH" + }, + { + "text" : "Justizvollzugsanstalt Lenzburg", + "lang" : "fr-CH" + }, + { + "text" : "Justizvollzugsanstalt Lenzburg", + "lang" : "it-CH" + }, + { + "text" : "Justizvollzugsanstalt Lenzburg", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Direktion", + "lang" : "de-CH" + }, + { + "text" : "Direktion", + "lang" : "fr-CH" + }, + { + "text" : "Direktion", + "lang" : "it-CH" + }, + { + "text" : "Direktion", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ag.ch/de/verwaltung/dvi/strafverfolgung-strafvollzug/strafvollzug/justizvollzugsanstalt-lenzburg", + "email" : "direktion.jva@ag.ch", + "phone" : "0041628887766", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5041334, 47.4454205 ], + [ 7.5040933, 47.4454075 ], + [ 7.5040556, 47.4453948 ], + [ 7.5040182, 47.4453817 ], + [ 7.5039811, 47.4453684 ], + [ 7.5039441, 47.4453546 ], + [ 7.5039076, 47.4453405 ], + [ 7.5038713, 47.4453261 ], + [ 7.5035658, 47.4451997 ], + [ 7.5033104, 47.4450813 ], + [ 7.5032904, 47.4450667 ], + [ 7.5032709, 47.4450519 ], + [ 7.5032519, 47.4450366 ], + [ 7.5032336, 47.4450211 ], + [ 7.5032157, 47.4450052 ], + [ 7.5031984, 47.4449891 ], + [ 7.5031818, 47.4449728 ], + [ 7.5031657, 47.4449561 ], + [ 7.5031503, 47.4449392 ], + [ 7.5031355, 47.444922 ], + [ 7.5031210999999995, 47.4449044 ], + [ 7.5031075, 47.4448866 ], + [ 7.5030944, 47.4448686 ], + [ 7.5030821, 47.4448503 ], + [ 7.5030705, 47.4448318 ], + [ 7.5030595, 47.4448132 ], + [ 7.5030491, 47.4447944 ], + [ 7.5030396, 47.4447754 ], + [ 7.5029377, 47.4445681 ], + [ 7.5029232, 47.4445436 ], + [ 7.5029082, 47.4445193 ], + [ 7.5028925, 47.4444951 ], + [ 7.5028766000000005, 47.4444711 ], + [ 7.50286, 47.4444471 ], + [ 7.502843, 47.4444235 ], + [ 7.5028229, 47.4443966 ], + [ 7.5028023, 47.4443699 ], + [ 7.5027809, 47.4443435 ], + [ 7.502759, 47.4443174 ], + [ 7.5027366, 47.4442914 ], + [ 7.5027135, 47.4442657 ], + [ 7.5024068, 47.4439296 ], + [ 7.5023831, 47.4438982 ], + [ 7.50236, 47.4438663 ], + [ 7.5023377, 47.4438343 ], + [ 7.5023163, 47.4438021 ], + [ 7.5022957, 47.4437695 ], + [ 7.5022759, 47.4437367 ], + [ 7.502257, 47.4437037 ], + [ 7.5022388, 47.4436705 ], + [ 7.5022228, 47.4436391 ], + [ 7.5022072, 47.4436076 ], + [ 7.5021926, 47.4435758 ], + [ 7.5021786, 47.443544 ], + [ 7.5021655, 47.4435121 ], + [ 7.5021531, 47.4434799 ], + [ 7.5020549, 47.4432038 ], + [ 7.5020188, 47.4431026 ], + [ 7.5020088000000005, 47.4430785 ], + [ 7.5019984, 47.4430549 ], + [ 7.5019875, 47.4430312 ], + [ 7.5019761, 47.4430075 ], + [ 7.5019053, 47.4428717 ], + [ 7.5018852, 47.4428394 ], + [ 7.5018642, 47.4428073 ], + [ 7.5018426, 47.4427754 ], + [ 7.5018199, 47.4427438 ], + [ 7.5017952999999995, 47.4427111 ], + [ 7.5017698, 47.4426787 ], + [ 7.5017434, 47.4426466 ], + [ 7.5017162, 47.4426149 ], + [ 7.5014198, 47.4422956 ], + [ 7.5012189, 47.4420165 ], + [ 7.5012086, 47.4420028 ], + [ 7.5011991, 47.441989 ], + [ 7.5011902, 47.4419749 ], + [ 7.501182, 47.4419607 ], + [ 7.5011744, 47.4419462 ], + [ 7.5011676, 47.4419315 ], + [ 7.5011615, 47.4419168 ], + [ 7.5011562, 47.441902 ], + [ 7.5011514, 47.4418859 ], + [ 7.5011472999999995, 47.4418699 ], + [ 7.5011441, 47.4418538 ], + [ 7.5011418, 47.4418377 ], + [ 7.5011402, 47.4418214 ], + [ 7.5011395, 47.4418051 ], + [ 7.5011396999999995, 47.4417888 ], + [ 7.5011408, 47.4417725 ], + [ 7.5011522, 47.441662 ], + [ 7.5011543, 47.4416434 ], + [ 7.501157, 47.4416248 ], + [ 7.5011607, 47.4416062 ], + [ 7.5011652, 47.4415878 ], + [ 7.5011705, 47.4415694 ], + [ 7.5011766, 47.4415512 ], + [ 7.5011835, 47.4415331 ], + [ 7.501191, 47.4415151 ], + [ 7.5011995, 47.4414973 ], + [ 7.5012087, 47.4414797 ], + [ 7.5012188, 47.4414623 ], + [ 7.5012295, 47.441445 ], + [ 7.501241, 47.441428 ], + [ 7.5012533, 47.4414112 ], + [ 7.5012663, 47.4413948 ], + [ 7.50128, 47.4413785 ], + [ 7.5017375, 47.4408601 ], + [ 7.5021176, 47.44043 ], + [ 7.5021365, 47.4404093 ], + [ 7.5021563, 47.4403889 ], + [ 7.5021768, 47.4403688 ], + [ 7.5021979, 47.4403492 ], + [ 7.50222, 47.4403298 ], + [ 7.5022427, 47.4403109 ], + [ 7.5022638, 47.4402943 ], + [ 7.5022854, 47.440278 ], + [ 7.5023077, 47.4402622 ], + [ 7.5023303, 47.4402464 ], + [ 7.5023536, 47.4402312 ], + [ 7.5023773, 47.4402163 ], + [ 7.5023882, 47.4401893 ], + [ 7.502389, 47.4401829 ], + [ 7.5023907, 47.4401766 ], + [ 7.5023933, 47.4401704 ], + [ 7.5023968, 47.4401644 ], + [ 7.5024013, 47.4401588 ], + [ 7.5024064, 47.4401535 ], + [ 7.5024124, 47.4401485 ], + [ 7.502419, 47.440144 ], + [ 7.5024264, 47.44014 ], + [ 7.5024342, 47.4401364 ], + [ 7.5024421, 47.4401336 ], + [ 7.5024503, 47.4401313 ], + [ 7.5024589, 47.4401295 ], + [ 7.5024676, 47.4401282 ], + [ 7.5024764, 47.4401276 ], + [ 7.5024854, 47.4401276 ], + [ 7.5024942, 47.440128 ], + [ 7.502503, 47.4401291 ], + [ 7.5025115, 47.4401307 ], + [ 7.5025199, 47.4401329 ], + [ 7.5025278, 47.4401357 ], + [ 7.5025354, 47.4401388 ], + [ 7.5026392, 47.4401152 ], + [ 7.5026606000000005, 47.4401098 ], + [ 7.5026824, 47.4401047 ], + [ 7.5027042, 47.4401001 ], + [ 7.5027264, 47.440096 ], + [ 7.5027486, 47.4400922 ], + [ 7.502771, 47.4400889 ], + [ 7.5027936, 47.4400859 ], + [ 7.5028162, 47.4400833 ], + [ 7.5030868, 47.4400655 ], + [ 7.5034279, 47.4400376 ], + [ 7.5037598, 47.4399893 ], + [ 7.5041662, 47.4399396 ], + [ 7.504574, 47.4399068 ], + [ 7.5049787, 47.4398461 ], + [ 7.5052769, 47.4398038 ], + [ 7.5053128000000005, 47.439792 ], + [ 7.5053483, 47.4397795 ], + [ 7.5053833, 47.4397666 ], + [ 7.5054179, 47.439753 ], + [ 7.505452, 47.4397389 ], + [ 7.5054855, 47.4397242 ], + [ 7.5055186, 47.4397091 ], + [ 7.5055511, 47.4396934 ], + [ 7.505583, 47.4396771 ], + [ 7.5056145, 47.4396605 ], + [ 7.5056454, 47.4396432 ], + [ 7.5056757, 47.4396254 ], + [ 7.5057055, 47.4396071 ], + [ 7.5057347, 47.4395884 ], + [ 7.505763, 47.4395691 ], + [ 7.5057907, 47.4395495 ], + [ 7.5058092, 47.4395331 ], + [ 7.5058273, 47.4395165 ], + [ 7.5058446, 47.4394995 ], + [ 7.5058613, 47.4394822 ], + [ 7.5058773, 47.4394646 ], + [ 7.5058928, 47.4394469 ], + [ 7.5059077, 47.4394288 ], + [ 7.5059218, 47.4394105 ], + [ 7.5059349, 47.4393924 ], + [ 7.5059474999999996, 47.4393741 ], + [ 7.5059591999999995, 47.4393556 ], + [ 7.5059705, 47.4393368 ], + [ 7.5059811, 47.439318 ], + [ 7.5059908, 47.4392989 ], + [ 7.5060001, 47.4392796 ], + [ 7.5060084, 47.4392603 ], + [ 7.506093, 47.4390753 ], + [ 7.5061973, 47.4388974 ], + [ 7.5063362, 47.4387007 ], + [ 7.506503, 47.4384894 ], + [ 7.5066305, 47.4383855 ], + [ 7.5066507, 47.4383745 ], + [ 7.5066714999999995, 47.438364 ], + [ 7.5066927, 47.4383542 ], + [ 7.5067144, 47.4383448 ], + [ 7.5067356, 47.4383344 ], + [ 7.5069197, 47.4382799 ], + [ 7.5086455, 47.4377842 ], + [ 7.5092912, 47.4365432 ], + [ 7.5091533, 47.4351473 ], + [ 7.5091489, 47.4345794 ], + [ 7.5091504, 47.4345557 ], + [ 7.5091528, 47.434532 ], + [ 7.5091561, 47.4345083 ], + [ 7.5091604, 47.4344847 ], + [ 7.5091656, 47.4344612 ], + [ 7.5091717, 47.4344378 ], + [ 7.5091786, 47.4344145 ], + [ 7.5091866, 47.4343914 ], + [ 7.5091954, 47.4343683 ], + [ 7.5092051, 47.4343455 ], + [ 7.5092359, 47.4342409 ], + [ 7.5093094, 47.4340225 ], + [ 7.509366, 47.4338429 ], + [ 7.5093673, 47.433823 ], + [ 7.5093695, 47.4338032 ], + [ 7.5093726, 47.4337834 ], + [ 7.5093767, 47.4337637 ], + [ 7.5093817, 47.4337442 ], + [ 7.5093876, 47.4337247 ], + [ 7.5093944, 47.4337053 ], + [ 7.509402, 47.4336862 ], + [ 7.5094106, 47.4336672 ], + [ 7.5094201, 47.4336484 ], + [ 7.5094304, 47.4336298 ], + [ 7.5094435, 47.4336104 ], + [ 7.5094557, 47.4335907 ], + [ 7.509467, 47.4335708 ], + [ 7.5094775, 47.4335507 ], + [ 7.5094871, 47.4335304 ], + [ 7.5094958, 47.4335099 ], + [ 7.5095036, 47.4334892 ], + [ 7.5095106, 47.4334684 ], + [ 7.5095165, 47.4334475 ], + [ 7.5095216, 47.4334264 ], + [ 7.5095258000000005, 47.4334053 ], + [ 7.509529, 47.433384 ], + [ 7.5095313, 47.4333628 ], + [ 7.5095271, 47.4333337 ], + [ 7.5095220000000005, 47.4333047 ], + [ 7.509516, 47.4332758 ], + [ 7.5095091, 47.433247 ], + [ 7.5095012, 47.4332183 ], + [ 7.5094925, 47.4331897 ], + [ 7.5094828, 47.4331612 ], + [ 7.5094722, 47.4331329 ], + [ 7.5094607, 47.4331048 ], + [ 7.5094483, 47.4330768 ], + [ 7.5094431, 47.4330636 ], + [ 7.5094387000000005, 47.4330503 ], + [ 7.5094351, 47.4330369 ], + [ 7.5094324, 47.4330233 ], + [ 7.5094306, 47.4330097 ], + [ 7.5094297, 47.4329961 ], + [ 7.5094296, 47.4329825 ], + [ 7.5094304, 47.4329688 ], + [ 7.5094385, 47.4329384 ], + [ 7.5094474, 47.4329081 ], + [ 7.5094571, 47.4328779 ], + [ 7.5094674999999995, 47.4328478 ], + [ 7.5094787, 47.4328178 ], + [ 7.5094906, 47.432788 ], + [ 7.5095033, 47.4327583 ], + [ 7.5095168, 47.4327288 ], + [ 7.5095338, 47.4326997 ], + [ 7.5095827, 47.432652 ], + [ 7.5096434, 47.4326022 ], + [ 7.5096653, 47.4325831 ], + [ 7.509688, 47.4325645 ], + [ 7.5097113, 47.4325463 ], + [ 7.5097354, 47.4325285 ], + [ 7.5097602, 47.4325112 ], + [ 7.5097856, 47.4324943 ], + [ 7.5098117, 47.4324779 ], + [ 7.5098384, 47.432462 ], + [ 7.5098658, 47.4324466 ], + [ 7.5098938, 47.4324317 ], + [ 7.5099222999999995, 47.4324173 ], + [ 7.50993, 47.4324127 ], + [ 7.5099371, 47.4324077 ], + [ 7.5099437, 47.4324024 ], + [ 7.510307, 47.4324837 ], + [ 7.5103166, 47.4324893 ], + [ 7.5103269, 47.4324944 ], + [ 7.5103376, 47.432499 ], + [ 7.5103489, 47.432503 ], + [ 7.5103605, 47.4325065 ], + [ 7.5103725, 47.4325093 ], + [ 7.5103847, 47.4325116 ], + [ 7.5103972, 47.4325132 ], + [ 7.5104617000000005, 47.4325223 ], + [ 7.5104861, 47.4325311 ], + [ 7.51051, 47.4325404 ], + [ 7.5105334, 47.4325504 ], + [ 7.5105562, 47.4325608 ], + [ 7.5105786, 47.4325718 ], + [ 7.5106003, 47.4325834 ], + [ 7.5106215, 47.4325954 ], + [ 7.510642, 47.4326079 ], + [ 7.5106619, 47.4326209 ], + [ 7.5106811, 47.4326343 ], + [ 7.5106996, 47.4326482 ], + [ 7.5107174, 47.4326625 ], + [ 7.5107344, 47.4326773 ], + [ 7.5107507, 47.4326924 ], + [ 7.5107662, 47.4327079 ], + [ 7.5107808, 47.4327238 ], + [ 7.5109045, 47.4328464 ], + [ 7.5109998000000004, 47.4329307 ], + [ 7.5110423, 47.4329699 ], + [ 7.5111639, 47.4330831 ], + [ 7.5111855, 47.4331046 ], + [ 7.5112077, 47.4331259 ], + [ 7.5112304, 47.4331469 ], + [ 7.5112538, 47.4331675 ], + [ 7.5112777, 47.4331879 ], + [ 7.511329, 47.4332342 ], + [ 7.5113503999999995, 47.4332541 ], + [ 7.5113725, 47.4332735 ], + [ 7.5113954, 47.4332927 ], + [ 7.5114189, 47.4333114 ], + [ 7.5114431, 47.4333297 ], + [ 7.511468, 47.4333476 ], + [ 7.5114935, 47.4333651 ], + [ 7.5115196, 47.4333821 ], + [ 7.5115464, 47.4333987 ], + [ 7.5115738, 47.4334148 ], + [ 7.5116017, 47.4334305 ], + [ 7.5116302, 47.4334457 ], + [ 7.5116593, 47.4334604 ], + [ 7.5116889, 47.4334746 ], + [ 7.511719, 47.4334883 ], + [ 7.5117496, 47.4335015 ], + [ 7.5117807, 47.4335142 ], + [ 7.5118122, 47.4335264 ], + [ 7.5118442, 47.433538 ], + [ 7.5125526, 47.4338099 ], + [ 7.5134191999999995, 47.4325543 ], + [ 7.5132784, 47.4325019 ], + [ 7.5129929, 47.4323765 ], + [ 7.5126377, 47.4321894 ], + [ 7.5125886, 47.4321643 ], + [ 7.5117484, 47.4317136 ], + [ 7.5117167, 47.4317412 ], + [ 7.5116546, 47.4317076 ], + [ 7.5116884, 47.4316812 ], + [ 7.5114365, 47.4315467 ], + [ 7.5114197, 47.4315617 ], + [ 7.511394, 47.4315493 ], + [ 7.5114115, 47.4315334 ], + [ 7.5110569, 47.4313445 ], + [ 7.5109376, 47.4313811 ], + [ 7.5096793, 47.4310395 ], + [ 7.5099492, 47.4312452 ], + [ 7.5094736, 47.4314001 ], + [ 7.509067, 47.4313517 ], + [ 7.508973, 47.4313761 ], + [ 7.5088837, 47.4313903 ], + [ 7.5086708, 47.4315837 ], + [ 7.5083103, 47.4320224 ], + [ 7.5080488, 47.4325047 ], + [ 7.5079441, 47.4329244 ], + [ 7.5078312, 47.4332674 ], + [ 7.5077311, 47.4334767 ], + [ 7.5074954, 47.4338392 ], + [ 7.5072332, 47.4342184 ], + [ 7.5068283000000005, 47.4347952 ], + [ 7.5070689, 47.4348519 ], + [ 7.506851, 47.4351724 ], + [ 7.5066985, 47.4353978 ], + [ 7.5065764, 47.4355785 ], + [ 7.5067626, 47.4358629 ], + [ 7.5068232, 47.4358854 ], + [ 7.5068806, 47.4359061 ], + [ 7.5070656, 47.4359223 ], + [ 7.5070629, 47.4361038 ], + [ 7.5069958, 47.4362043 ], + [ 7.5068056, 47.4362976 ], + [ 7.5063718999999995, 47.4365095 ], + [ 7.5058048, 47.4363575 ], + [ 7.5057808999999995, 47.4363511 ], + [ 7.5056127, 47.4362087 ], + [ 7.5052327, 47.4363225 ], + [ 7.5048477, 47.4364377 ], + [ 7.5044599, 47.4365534 ], + [ 7.5040715, 47.4366691 ], + [ 7.5039235, 47.4367129 ], + [ 7.5035399, 47.4367635 ], + [ 7.503486, 47.4367728 ], + [ 7.5035164, 47.4368228 ], + [ 7.5029639, 47.4369411 ], + [ 7.5029389, 47.4369752 ], + [ 7.5030824, 47.4370895 ], + [ 7.5027593, 47.4372761 ], + [ 7.5027071, 47.4372343 ], + [ 7.5023599, 47.4374559 ], + [ 7.5022866, 47.4374752 ], + [ 7.5020441, 47.4375487 ], + [ 7.5020215, 47.4375523 ], + [ 7.5019762, 47.4375595 ], + [ 7.5019333, 47.4375663 ], + [ 7.5018905, 47.4375731 ], + [ 7.5018476, 47.4375799 ], + [ 7.5018047, 47.4375866 ], + [ 7.5017619, 47.4375934 ], + [ 7.501719, 47.4376002 ], + [ 7.5016761, 47.437607 ], + [ 7.5016333, 47.4376138 ], + [ 7.5015903999999995, 47.4376205 ], + [ 7.5015476, 47.4376273 ], + [ 7.5015023, 47.4376345 ], + [ 7.5011702, 47.4376853 ], + [ 7.5011305, 47.4377002 ], + [ 7.5011114, 47.4377074 ], + [ 7.501115, 47.4377118 ], + [ 7.5010272, 47.4377445 ], + [ 7.5010239, 47.4377404 ], + [ 7.5007374, 47.4378489 ], + [ 7.5006771, 47.4378021 ], + [ 7.500612, 47.4378964 ], + [ 7.5004415, 47.438139 ], + [ 7.5002721999999995, 47.4383831 ], + [ 7.5001032, 47.438627 ], + [ 7.5000217, 47.4388235 ], + [ 7.4998077, 47.438965 ], + [ 7.4995998, 47.4388965 ], + [ 7.4995464, 47.4388794 ], + [ 7.4995691, 47.4387558 ], + [ 7.4995779, 47.4387348 ], + [ 7.4995877, 47.4387139 ], + [ 7.499598, 47.4386931 ], + [ 7.4996114, 47.438673 ], + [ 7.4996221, 47.4386422 ], + [ 7.4997323, 47.4385042 ], + [ 7.500069, 47.4380174 ], + [ 7.5000807, 47.4379963 ], + [ 7.5001929, 47.4378406 ], + [ 7.500173, 47.4378306 ], + [ 7.4999326, 47.4380459 ], + [ 7.4998214, 47.4381455 ], + [ 7.4995876, 47.4383543 ], + [ 7.4994374, 47.4385258 ], + [ 7.4992973, 47.4387141 ], + [ 7.4990499, 47.4389532 ], + [ 7.4989543, 47.4390682 ], + [ 7.4990475, 47.4392247 ], + [ 7.4990254, 47.4392583 ], + [ 7.4991004, 47.4392932 ], + [ 7.4989135, 47.4394284 ], + [ 7.4987394, 47.4395398 ], + [ 7.4986359, 47.4396039 ], + [ 7.4985719, 47.4396748 ], + [ 7.4986996, 47.4397365 ], + [ 7.4985475, 47.4399724 ], + [ 7.4984289, 47.4399167 ], + [ 7.4983453, 47.4400805 ], + [ 7.498305, 47.44016 ], + [ 7.4982792, 47.4402163 ], + [ 7.4982088, 47.4403816 ], + [ 7.4981231, 47.4405758 ], + [ 7.4980359, 47.4407498 ], + [ 7.4980177999999995, 47.4407857 ], + [ 7.4978885, 47.4409378 ], + [ 7.497899, 47.4409752 ], + [ 7.4978849, 47.4410706 ], + [ 7.4977763, 47.4411955 ], + [ 7.4977268, 47.4411832 ], + [ 7.4976984, 47.4412463 ], + [ 7.4977038, 47.4412446 ], + [ 7.4977095, 47.4412435 ], + [ 7.4977154, 47.441243 ], + [ 7.4977213, 47.441243 ], + [ 7.4977271, 47.4412437 ], + [ 7.4977328, 47.4412449 ], + [ 7.49774, 47.4412464 ], + [ 7.4977475, 47.4412472 ], + [ 7.497755, 47.4412475 ], + [ 7.4977625, 47.4412472 ], + [ 7.49777, 47.4412464 ], + [ 7.4977772, 47.4412449 ], + [ 7.4977842, 47.441243 ], + [ 7.4977908, 47.4412404 ], + [ 7.4977969, 47.4412374 ], + [ 7.4978025, 47.441234 ], + [ 7.4978075, 47.4412301 ], + [ 7.4978118, 47.4412259 ], + [ 7.4978419, 47.4411872 ], + [ 7.4978614, 47.4411919 ], + [ 7.4978636, 47.4413203 ], + [ 7.4977666, 47.4415265 ], + [ 7.4975878, 47.4414851 ], + [ 7.4975664, 47.4415316 ], + [ 7.4976538999999995, 47.4415463 ], + [ 7.4977474, 47.4415973 ], + [ 7.4977058, 47.441777 ], + [ 7.4976791, 47.441898 ], + [ 7.4976662, 47.4419426 ], + [ 7.4976325, 47.4420812 ], + [ 7.4975943, 47.4422671 ], + [ 7.4976661, 47.4422848 ], + [ 7.4977371, 47.4425796 ], + [ 7.4976452, 47.4425846 ], + [ 7.4976603, 47.4427371 ], + [ 7.4976621, 47.4427611 ], + [ 7.4976754, 47.4429641 ], + [ 7.4977874, 47.4431678 ], + [ 7.4978294, 47.4432437 ], + [ 7.4979404, 47.4433655 ], + [ 7.4981349999999996, 47.4435744 ], + [ 7.4981799, 47.4436233 ], + [ 7.4981334, 47.4436431 ], + [ 7.4982009, 47.4437268 ], + [ 7.4982122, 47.4437221 ], + [ 7.4983126, 47.4436815 ], + [ 7.498386, 47.4437665 ], + [ 7.4982864, 47.4438076 ], + [ 7.4982754, 47.4438119 ], + [ 7.4983198, 47.443869 ], + [ 7.4983676, 47.4438491 ], + [ 7.498449, 47.4439496 ], + [ 7.4984874999999995, 47.4439959 ], + [ 7.4985446, 47.4440642 ], + [ 7.4985624, 47.4440856 ], + [ 7.4985686, 47.4440931 ], + [ 7.4986017, 47.4441598 ], + [ 7.4987742, 47.4445083 ], + [ 7.4989951, 47.4448187 ], + [ 7.4992149999999995, 47.4452259 ], + [ 7.4993322, 47.4454454 ], + [ 7.4994697, 47.4457032 ], + [ 7.4995318, 47.4457746 ], + [ 7.4995706, 47.4458196 ], + [ 7.4996892, 47.4459571 ], + [ 7.4998416, 47.4461338 ], + [ 7.4995344, 47.4463353 ], + [ 7.4993715, 47.4461981 ], + [ 7.4990453, 47.4459234 ], + [ 7.4988677, 47.4455693 ], + [ 7.4987434, 47.4453241 ], + [ 7.4984821, 47.4450012 ], + [ 7.4984052, 47.4447784 ], + [ 7.4980899, 47.4444511 ], + [ 7.4980436, 47.4443656 ], + [ 7.498, 47.4442853 ], + [ 7.497989, 47.444265 ], + [ 7.4979574, 47.4442067 ], + [ 7.4979504, 47.4441939 ], + [ 7.4979197, 47.4441687 ], + [ 7.497818, 47.4440811 ], + [ 7.4977602, 47.4441067 ], + [ 7.4976755, 47.4440377 ], + [ 7.4975115, 47.4439025 ], + [ 7.4975658, 47.4438805 ], + [ 7.4975319, 47.4438533 ], + [ 7.4973553, 47.4437159 ], + [ 7.4972008, 47.4435976 ], + [ 7.4968956, 47.4433635 ], + [ 7.4968606, 47.443339 ], + [ 7.4965941, 47.4433303 ], + [ 7.49654, 47.4434069 ], + [ 7.4963932, 47.4434317 ], + [ 7.4963715, 47.4433356 ], + [ 7.4962878, 47.4433365 ], + [ 7.4957559, 47.443365 ], + [ 7.4956868, 47.4433693 ], + [ 7.4953245, 47.4434795 ], + [ 7.4948271, 47.4436339 ], + [ 7.4947993, 47.4436102 ], + [ 7.4947712, 47.443586 ], + [ 7.495167, 47.4431252 ], + [ 7.4953081, 47.4429464 ], + [ 7.4955042, 47.4426935 ], + [ 7.4955868, 47.4425726 ], + [ 7.4955557, 47.4424504 ], + [ 7.4955528, 47.4423605 ], + [ 7.4955793, 47.4423465 ], + [ 7.4955637, 47.4423322 ], + [ 7.4953498, 47.4424223 ], + [ 7.4950776999999995, 47.4425068 ], + [ 7.4948718, 47.4425835 ], + [ 7.4943634, 47.4428995 ], + [ 7.494224, 47.4429754 ], + [ 7.494028, 47.4430561 ], + [ 7.4938372, 47.4431237 ], + [ 7.493605, 47.4431805 ], + [ 7.4933744, 47.443221 ], + [ 7.4931464, 47.4432294 ], + [ 7.4928853, 47.4432152 ], + [ 7.4926772, 47.4431616 ], + [ 7.4927118, 47.4431368 ], + [ 7.4927783, 47.4430389 ], + [ 7.4927077, 47.4428997 ], + [ 7.4927654, 47.4428315 ], + [ 7.4927661, 47.4427907 ], + [ 7.492766, 47.4427459 ], + [ 7.4924385000000004, 47.4425911 ], + [ 7.4920166, 47.4425187 ], + [ 7.4918731, 47.4424941 ], + [ 7.4917505, 47.4424979 ], + [ 7.4916176, 47.4425025 ], + [ 7.4911683, 47.4425164 ], + [ 7.4908869, 47.4425836 ], + [ 7.4906184, 47.4426478 ], + [ 7.4898514, 47.4428963 ], + [ 7.4898465, 47.442898 ], + [ 7.489041, 47.4433187 ], + [ 7.4890214, 47.4433017 ], + [ 7.4888685, 47.4431687 ], + [ 7.4893401, 47.4428642 ], + [ 7.4897486, 47.442692 ], + [ 7.4899897, 47.4425884 ], + [ 7.4907107, 47.442235 ], + [ 7.4916501, 47.4420981 ], + [ 7.4923018, 47.4421625 ], + [ 7.4923125, 47.4421636 ], + [ 7.4929513, 47.4421816 ], + [ 7.4929045, 47.4418212 ], + [ 7.4929974999999995, 47.441786 ], + [ 7.4932104, 47.4417067 ], + [ 7.4933423999999995, 47.4416562 ], + [ 7.4934321, 47.4416227 ], + [ 7.4935174, 47.4415905 ], + [ 7.4937211999999995, 47.4415149 ], + [ 7.4937196, 47.4414528 ], + [ 7.4937153, 47.4412918 ], + [ 7.4934941, 47.441168 ], + [ 7.4933339, 47.4410436 ], + [ 7.4930448, 47.4409639 ], + [ 7.4928565, 47.4409079 ], + [ 7.4926007, 47.44085 ], + [ 7.4923528, 47.4408347 ], + [ 7.4920764, 47.440804 ], + [ 7.4919777, 47.4407651 ], + [ 7.4919597, 47.4406576 ], + [ 7.4918649, 47.4405152 ], + [ 7.4917242, 47.4403102 ], + [ 7.4917139, 47.4401747 ], + [ 7.4917841, 47.4401721 ], + [ 7.4918855, 47.4401996 ], + [ 7.4920153, 47.4401677 ], + [ 7.4923269, 47.4401103 ], + [ 7.4925920999999995, 47.4400089 ], + [ 7.4928013, 47.4398792 ], + [ 7.4930201, 47.4397849 ], + [ 7.4931723, 47.4397045 ], + [ 7.4933126, 47.4396101 ], + [ 7.4934024, 47.4395268 ], + [ 7.493477, 47.4394562 ], + [ 7.4934811, 47.4394074 ], + [ 7.4934278, 47.4393797 ], + [ 7.4932742, 47.4393823 ], + [ 7.4929987, 47.4394028 ], + [ 7.492783, 47.4393853 ], + [ 7.4926177, 47.4393667 ], + [ 7.4924335, 47.4393612 ], + [ 7.4922945, 47.4393876 ], + [ 7.4921848, 47.4394878 ], + [ 7.4920194, 47.4395505 ], + [ 7.4917625, 47.4395653 ], + [ 7.4917133, 47.4395715 ], + [ 7.4914788, 47.439601 ], + [ 7.4911932, 47.439663 ], + [ 7.4908935, 47.4397326 ], + [ 7.490622, 47.4397919 ], + [ 7.4904874, 47.4398362 ], + [ 7.4903171, 47.4399291 ], + [ 7.4901971, 47.4399786 ], + [ 7.4901171, 47.4399592 ], + [ 7.4898029, 47.4400668 ], + [ 7.4895262, 47.4401234 ], + [ 7.4892511, 47.4402173 ], + [ 7.4889426, 47.4403294 ], + [ 7.4887857, 47.4403919 ], + [ 7.4888115, 47.4405441 ], + [ 7.4888017, 47.4405767 ], + [ 7.4884976, 47.440623 ], + [ 7.4883216, 47.4406618 ], + [ 7.4883029, 47.4407325 ], + [ 7.4883199, 47.44086 ], + [ 7.4884072, 47.4410687 ], + [ 7.4885182, 47.4413517 ], + [ 7.4885678, 47.4415595 ], + [ 7.4882497, 47.4416843 ], + [ 7.4878900999999995, 47.4418658 ], + [ 7.4876112, 47.4419966 ], + [ 7.4872911, 47.4421378 ], + [ 7.4870058, 47.4422512 ], + [ 7.4867772, 47.442266599999996 ], + [ 7.4866077, 47.4423487 ], + [ 7.4864817, 47.4424918 ], + [ 7.4863124, 47.4426784 ], + [ 7.4861349, 47.4428807 ], + [ 7.4859417, 47.4430947 ], + [ 7.4856647, 47.4434074 ], + [ 7.4853506, 47.4432007 ], + [ 7.4851121, 47.4430359 ], + [ 7.4851507999999995, 47.442895 ], + [ 7.4852874, 47.4426542 ], + [ 7.4854362, 47.4423893 ], + [ 7.4855118, 47.4422094 ], + [ 7.4855131, 47.4421024 ], + [ 7.4854185, 47.4418561 ], + [ 7.4852337, 47.441501 ], + [ 7.4850256, 47.4410432 ], + [ 7.4849459, 47.4409462 ], + [ 7.4849591, 47.4408789 ], + [ 7.4850405, 47.4408839 ], + [ 7.4852583, 47.4408535 ], + [ 7.4854023, 47.4408236 ], + [ 7.4853823, 47.4406751 ], + [ 7.4853477999999996, 47.4403492 ], + [ 7.4853414, 47.4400386 ], + [ 7.4853399, 47.4399123 ], + [ 7.4853383000000004, 47.4397839 ], + [ 7.4853493, 47.4394475 ], + [ 7.4857154999999995, 47.4393578 ], + [ 7.4859755, 47.4392769 ], + [ 7.4862423, 47.4392112 ], + [ 7.486467, 47.4391545 ], + [ 7.4865627, 47.4391332 ], + [ 7.4864755, 47.4389213 ], + [ 7.4862762, 47.4388675 ], + [ 7.4861867, 47.4388002 ], + [ 7.4861615, 47.4388 ], + [ 7.4861036, 47.4387538 ], + [ 7.4860544, 47.4387145 ], + [ 7.4860082, 47.4386777 ], + [ 7.4859413, 47.4386242 ], + [ 7.4859102, 47.4385994 ], + [ 7.4858769, 47.4385728 ], + [ 7.4858575, 47.4385573 ], + [ 7.4858153, 47.4385333 ], + [ 7.4857418, 47.4384914 ], + [ 7.4856625, 47.4384461 ], + [ 7.4855232, 47.4383667 ], + [ 7.4853661, 47.4382771 ], + [ 7.4852977, 47.438238 ], + [ 7.4853059, 47.4381765 ], + [ 7.485313, 47.4381236 ], + [ 7.4853218, 47.4380584 ], + [ 7.4853259, 47.4380285 ], + [ 7.4853446, 47.4378893 ], + [ 7.4853481, 47.4378633 ], + [ 7.4853857, 47.4377861 ], + [ 7.4854132, 47.4377299 ], + [ 7.4854690999999995, 47.4376151 ], + [ 7.4854996, 47.4375526 ], + [ 7.4855295, 47.4374912 ], + [ 7.4855802, 47.4373874 ], + [ 7.4856005, 47.4373456 ], + [ 7.485601, 47.4373392 ], + [ 7.4856076, 47.4372532 ], + [ 7.4856116, 47.437201 ], + [ 7.4856157, 47.4371475 ], + [ 7.4856226, 47.4370571 ], + [ 7.4854864, 47.437029 ], + [ 7.4851614, 47.436962 ], + [ 7.485202, 47.43637 ], + [ 7.4852712, 47.4356957 ], + [ 7.4845225, 47.4357102 ], + [ 7.4837122, 47.4355605 ], + [ 7.4836776, 47.4354222 ], + [ 7.4836557, 47.4353346 ], + [ 7.483638, 47.4352637 ], + [ 7.48363, 47.4352315 ], + [ 7.4836193, 47.4351886 ], + [ 7.4835737, 47.4351048 ], + [ 7.4835365, 47.4350364 ], + [ 7.4834955, 47.4349609 ], + [ 7.4834577, 47.4348914 ], + [ 7.4834183, 47.4348189 ], + [ 7.4833833, 47.4347547 ], + [ 7.48336, 47.4347117 ], + [ 7.4833452, 47.4346845 ], + [ 7.4828855, 47.4346968 ], + [ 7.4827114, 47.4345678 ], + [ 7.4825443, 47.434444 ], + [ 7.4824257, 47.4343561 ], + [ 7.482386, 47.4343362 ], + [ 7.4819925, 47.4341396 ], + [ 7.4819066, 47.4340968 ], + [ 7.4817719, 47.4340294 ], + [ 7.4817512, 47.4339605 ], + [ 7.4817257, 47.4338753 ], + [ 7.4817133, 47.433834 ], + [ 7.4816827, 47.433732 ], + [ 7.4816598, 47.4336557 ], + [ 7.4816487, 47.4336185 ], + [ 7.4816294, 47.4335542 ], + [ 7.481598, 47.4334496 ], + [ 7.4815892999999996, 47.4333961 ], + [ 7.4815749, 47.4333085 ], + [ 7.4815634, 47.4332384 ], + [ 7.4815525, 47.4331723 ], + [ 7.4815416, 47.4331059 ], + [ 7.4815292, 47.4330302 ], + [ 7.4815176, 47.4329598 ], + [ 7.4815102, 47.4329145 ], + [ 7.4815074, 47.4328898 ], + [ 7.4815000000000005, 47.4328257 ], + [ 7.4814875, 47.432716 ], + [ 7.4814749, 47.4326054 ], + [ 7.481466, 47.4325276 ], + [ 7.4814584, 47.4324611 ], + [ 7.4814509, 47.4323948 ], + [ 7.4814437, 47.432332 ], + [ 7.4814435, 47.4323278 ], + [ 7.4814397, 47.4322617 ], + [ 7.4814377, 47.432227 ], + [ 7.4814349, 47.432177 ], + [ 7.4814301, 47.4320942 ], + [ 7.481428, 47.4320562 ], + [ 7.4814241, 47.4319885 ], + [ 7.4814203, 47.4319219 ], + [ 7.4814183, 47.4318863 ], + [ 7.4814133, 47.4317992 ], + [ 7.4814105, 47.43175 ], + [ 7.481408, 47.431706 ], + [ 7.4821382, 47.4315381 ], + [ 7.48291, 47.4314355 ], + [ 7.4831074, 47.4314092 ], + [ 7.4839366, 47.4313857 ], + [ 7.4839639, 47.4313866 ], + [ 7.484137, 47.4313812 ], + [ 7.4842398, 47.431378 ], + [ 7.4843419, 47.4313749 ], + [ 7.4844465, 47.4313716 ], + [ 7.4845129, 47.4313145 ], + [ 7.48458, 47.4312568 ], + [ 7.4846428, 47.4312027 ], + [ 7.4847766, 47.4310876 ], + [ 7.4848688, 47.4310778 ], + [ 7.4849685, 47.4310672 ], + [ 7.485074, 47.431056 ], + [ 7.4851862, 47.4310441 ], + [ 7.4852924, 47.4310329 ], + [ 7.4853789, 47.4310237 ], + [ 7.4854655, 47.4310145 ], + [ 7.4855694, 47.4310035 ], + [ 7.4855577, 47.4307228 ], + [ 7.4855527, 47.4306035 ], + [ 7.4855482, 47.4304961 ], + [ 7.4855462, 47.430449 ], + [ 7.4855403, 47.4303067 ], + [ 7.486338, 47.430241 ], + [ 7.486836, 47.4302178 ], + [ 7.4871805, 47.4301899 ], + [ 7.4875074, 47.4301613 ], + [ 7.4874662, 47.429837 ], + [ 7.4874414, 47.4297018 ], + [ 7.4875651, 47.4297015 ], + [ 7.4878584, 47.4296997 ], + [ 7.4882902, 47.4297315 ], + [ 7.4886625, 47.4297893 ], + [ 7.4890345, 47.4298601 ], + [ 7.4893525, 47.4299427 ], + [ 7.4895765, 47.4300509 ], + [ 7.4897029, 47.4301307 ], + [ 7.4896151, 47.4302307 ], + [ 7.4894862, 47.4303373 ], + [ 7.4893515, 47.4304568 ], + [ 7.4893471, 47.4304635 ], + [ 7.4893582, 47.4304651 ], + [ 7.4892986, 47.4306217 ], + [ 7.4892441, 47.4307648 ], + [ 7.4892389, 47.4307785 ], + [ 7.4892131, 47.4308011 ], + [ 7.4891248, 47.4308788 ], + [ 7.4890875999999995, 47.4309115 ], + [ 7.4889086, 47.4310689 ], + [ 7.4888378, 47.4311312 ], + [ 7.4887668, 47.4312488 ], + [ 7.4887192, 47.4313275 ], + [ 7.4886887, 47.431378 ], + [ 7.4886141, 47.4315016 ], + [ 7.4885439, 47.4316178 ], + [ 7.4885121, 47.4316704 ], + [ 7.4885111, 47.431693 ], + [ 7.4888402, 47.4316845 ], + [ 7.4891792, 47.4316783 ], + [ 7.4891831, 47.4316377 ], + [ 7.4891233, 47.4316185 ], + [ 7.4889119, 47.4316023 ], + [ 7.4887386, 47.4316081 ], + [ 7.4887735, 47.4314288 ], + [ 7.4888429, 47.4312978 ], + [ 7.4889447, 47.4311691 ], + [ 7.4890312, 47.43118 ], + [ 7.4892145, 47.4311917 ], + [ 7.4893952, 47.4312148 ], + [ 7.4896411, 47.4312368 ], + [ 7.4896751, 47.4312519 ], + [ 7.4896712, 47.4312938 ], + [ 7.4896551, 47.4313409 ], + [ 7.4896749, 47.4314479 ], + [ 7.489667, 47.4315231 ], + [ 7.48962, 47.4316879 ], + [ 7.4897269, 47.4316871 ], + [ 7.4897844, 47.4314293 ], + [ 7.4899543, 47.4314349 ], + [ 7.4900561, 47.4314082 ], + [ 7.4901876, 47.4313321 ], + [ 7.4901671, 47.4312832 ], + [ 7.4900869, 47.4311388 ], + [ 7.4899996, 47.4310059 ], + [ 7.4900084, 47.430904 ], + [ 7.4900144, 47.4307634 ], + [ 7.4900153, 47.4307617 ], + [ 7.4901016, 47.4306083 ], + [ 7.4902294, 47.4304432 ], + [ 7.4902334, 47.430362 ], + [ 7.490238, 47.4303367 ], + [ 7.4903766, 47.4303078 ], + [ 7.4905621, 47.4302411 ], + [ 7.490708, 47.4301526 ], + [ 7.4908817, 47.4300209 ], + [ 7.4910147, 47.4298032 ], + [ 7.4910832, 47.4296479 ], + [ 7.4911593, 47.429448 ], + [ 7.491257, 47.4292463 ], + [ 7.491442, 47.4291039 ], + [ 7.4915952, 47.4288878 ], + [ 7.491659, 47.4286462 ], + [ 7.4920164, 47.4286163 ], + [ 7.4924800000000005, 47.4286046 ], + [ 7.4928421, 47.4286237 ], + [ 7.4931153, 47.4286607 ], + [ 7.4931247, 47.4286355 ], + [ 7.4932894, 47.4286484 ], + [ 7.4936472, 47.4286762 ], + [ 7.4939355, 47.4286987 ], + [ 7.494001, 47.4287038 ], + [ 7.4941414, 47.4287147 ], + [ 7.4941996, 47.4287192 ], + [ 7.4941483, 47.4291707 ], + [ 7.4950432, 47.4293198 ], + [ 7.4957562, 47.4293678 ], + [ 7.4958185, 47.4293398 ], + [ 7.4959302, 47.4292894 ], + [ 7.4961553, 47.429188 ], + [ 7.4962543, 47.4291434 ], + [ 7.4963399, 47.4291048 ], + [ 7.4964031, 47.4290763 ], + [ 7.496486, 47.429039 ], + [ 7.4965697, 47.4290013 ], + [ 7.4966688999999995, 47.428960000000004 ], + [ 7.4968088999999996, 47.4289042 ], + [ 7.4969429, 47.4288508 ], + [ 7.4970445, 47.4288103 ], + [ 7.497068, 47.428815 ], + [ 7.4971624, 47.4288342 ], + [ 7.4972667, 47.4288553 ], + [ 7.4973911, 47.4288805 ], + [ 7.4974756, 47.4287734 ], + [ 7.4975204, 47.4287165 ], + [ 7.4971184, 47.4287294 ], + [ 7.4970666, 47.4287305 ], + [ 7.4968218, 47.4287228 ], + [ 7.4962185, 47.4287857 ], + [ 7.496059, 47.4286557 ], + [ 7.4959353, 47.4286611 ], + [ 7.4958004, 47.4287756 ], + [ 7.4957516, 47.4288875 ], + [ 7.4958845, 47.4289125 ], + [ 7.4958194, 47.4290926 ], + [ 7.495649, 47.4292521 ], + [ 7.4955707, 47.4292797 ], + [ 7.4953986, 47.4293089 ], + [ 7.4952311, 47.4293049 ], + [ 7.4952207, 47.4292318 ], + [ 7.4951435, 47.4291775 ], + [ 7.4950408, 47.4290598 ], + [ 7.4950341, 47.4290411 ], + [ 7.4949465, 47.4289767 ], + [ 7.4949147, 47.4290385 ], + [ 7.4948967, 47.429063 ], + [ 7.4947905, 47.4292181 ], + [ 7.4947048, 47.4292149 ], + [ 7.4944993, 47.4291725 ], + [ 7.4943013, 47.4291135 ], + [ 7.4943501, 47.4288935 ], + [ 7.49436, 47.4288464 ], + [ 7.4943966, 47.4288507 ], + [ 7.4944142, 47.428725 ], + [ 7.4945129, 47.4287401 ], + [ 7.4945088, 47.4287138 ], + [ 7.4945037, 47.4286814 ], + [ 7.4945287, 47.4285658 ], + [ 7.4944149, 47.4285566 ], + [ 7.4943219, 47.428552 ], + [ 7.494165, 47.4285598 ], + [ 7.4939992, 47.4285723 ], + [ 7.4939037, 47.4285846 ], + [ 7.4938538, 47.4285754 ], + [ 7.4937838, 47.4284201 ], + [ 7.4937127, 47.4284074 ], + [ 7.4936839, 47.4284812 ], + [ 7.492927, 47.4282915 ], + [ 7.4925499, 47.4283487 ], + [ 7.492263, 47.4283351 ], + [ 7.4919767, 47.4282469 ], + [ 7.4918615, 47.4280949 ], + [ 7.4918478, 47.4280595 ], + [ 7.491966, 47.4279402 ], + [ 7.4922398, 47.4278707 ], + [ 7.492351, 47.4277859 ], + [ 7.4925529, 47.4276629 ], + [ 7.4924131, 47.4276522 ], + [ 7.4923383999999995, 47.4276122 ], + [ 7.4923295, 47.4276028 ], + [ 7.4915809, 47.4277427 ], + [ 7.4915676, 47.4276869 ], + [ 7.4915646, 47.427673 ], + [ 7.4915412, 47.427677 ], + [ 7.4908137, 47.4277996 ], + [ 7.4908179, 47.4278108 ], + [ 7.4902771999999995, 47.4278901 ], + [ 7.4899089, 47.4279522 ], + [ 7.4896645, 47.4280351 ], + [ 7.4889928999999995, 47.4281067 ], + [ 7.4885308, 47.4281846 ], + [ 7.4880157, 47.4283769 ], + [ 7.4872162, 47.4284876 ], + [ 7.4868603, 47.4285428 ], + [ 7.4867586, 47.428576 ], + [ 7.4865936, 47.4286299 ], + [ 7.4855689, 47.4292212 ], + [ 7.4852863, 47.429334 ], + [ 7.4850687, 47.4294556 ], + [ 7.4847896, 47.4296177 ], + [ 7.484415, 47.4297677 ], + [ 7.4837956, 47.4299349 ], + [ 7.4836459, 47.4299847 ], + [ 7.4834528, 47.4300502 ], + [ 7.4826397, 47.4303016 ], + [ 7.482249, 47.4304235 ], + [ 7.4816408, 47.4306109 ], + [ 7.4811914, 47.4307524 ], + [ 7.4805068, 47.4309834 ], + [ 7.4804829999999995, 47.4310262 ], + [ 7.4803813, 47.4312361 ], + [ 7.4803375, 47.4313434 ], + [ 7.4802734, 47.4315509 ], + [ 7.4802587, 47.4316442 ], + [ 7.4802501, 47.4317196 ], + [ 7.4802444999999995, 47.4320343 ], + [ 7.4802475, 47.4322051 ], + [ 7.4802622, 47.4323679 ], + [ 7.480277, 47.432489 ], + [ 7.4802918, 47.4325843 ], + [ 7.4803181, 47.4326836 ], + [ 7.4803386, 47.432758 ], + [ 7.4804735, 47.4330399 ], + [ 7.4805408, 47.4332008 ], + [ 7.48057, 47.4332782 ], + [ 7.480651, 47.4335474 ], + [ 7.4807238, 47.4338534 ], + [ 7.4808687, 47.4340426 ], + [ 7.4810999, 47.4342678 ], + [ 7.4814026, 47.4345371 ], + [ 7.4817551, 47.4348338 ], + [ 7.4821766, 47.4351432 ], + [ 7.4826071, 47.435418 ], + [ 7.4830974999999995, 47.4357399 ], + [ 7.4833944, 47.4359651 ], + [ 7.4835978, 47.436206 ], + [ 7.4837906, 47.4364338 ], + [ 7.4839221, 47.4366214 ], + [ 7.4839356, 47.4368446 ], + [ 7.4839549, 47.4371212 ], + [ 7.4839164, 47.4373862 ], + [ 7.4838153, 47.4376245 ], + [ 7.4838198, 47.4378341 ], + [ 7.4835552, 47.4381671 ], + [ 7.4833625999999995, 47.4384844 ], + [ 7.4832113, 47.4387508 ], + [ 7.4831184, 47.4390536 ], + [ 7.483017, 47.4393912 ], + [ 7.4829542, 47.439675 ], + [ 7.4829157, 47.4400533 ], + [ 7.4828958, 47.4403906 ], + [ 7.4829232, 47.4406814 ], + [ 7.483008, 47.4409882 ], + [ 7.483093, 47.4412746 ], + [ 7.4831332, 47.4416069 ], + [ 7.483155, 47.4419346 ], + [ 7.4832067, 47.4422852 ], + [ 7.48323, 47.4424756 ], + [ 7.4832193, 47.4427182 ], + [ 7.4831383, 47.4429531 ], + [ 7.4830441, 47.4431307 ], + [ 7.4829062, 47.4433204 ], + [ 7.4828901, 47.4433407 ], + [ 7.4828733, 47.4433608 ], + [ 7.4828555, 47.4433805 ], + [ 7.4828372, 47.4433999 ], + [ 7.482818, 47.4434191 ], + [ 7.4827983, 47.4434378 ], + [ 7.4827777, 47.4434562 ], + [ 7.4827563999999995, 47.4434742 ], + [ 7.4824996, 47.4436566 ], + [ 7.4822578, 47.4438341 ], + [ 7.4821256, 47.443925 ], + [ 7.4821113, 47.4439331 ], + [ 7.4821152, 47.4439379 ], + [ 7.4820012, 47.4440641 ], + [ 7.4819136, 47.4441559 ], + [ 7.4815369, 47.4446082 ], + [ 7.4814601, 47.4447055 ], + [ 7.4812531, 47.4448947 ], + [ 7.4810462, 47.4450802 ], + [ 7.4808392999999995, 47.4453072 ], + [ 7.4805501, 47.4457072 ], + [ 7.4804308, 47.4458279 ], + [ 7.4803247, 47.4459252 ], + [ 7.4802397, 47.4459883 ], + [ 7.4801601, 47.4460442 ], + [ 7.4799771, 47.4461505 ], + [ 7.4796346, 47.4463523 ], + [ 7.4794648, 47.4464641 ], + [ 7.4793135, 47.4465793 ], + [ 7.4792738, 47.446655 ], + [ 7.4792526, 47.4467234 ], + [ 7.479226, 47.4468099 ], + [ 7.4792129, 47.4469667 ], + [ 7.4792052, 47.4472026 ], + [ 7.4791894, 47.4474277 ], + [ 7.4791444, 47.4475952 ], + [ 7.4791258, 47.4476672 ], + [ 7.480179, 47.4488874 ], + [ 7.482101, 47.4495086 ], + [ 7.4826864, 47.4496308 ], + [ 7.4835219, 47.4497104 ], + [ 7.4836143, 47.4497047 ], + [ 7.4838061, 47.4497351 ], + [ 7.4839709, 47.4498277 ], + [ 7.4841923999999995, 47.4496559 ], + [ 7.4839024, 47.4494541 ], + [ 7.4840361, 47.4493541 ], + [ 7.4841444, 47.4492751 ], + [ 7.4842939, 47.4491776 ], + [ 7.4844408, 47.4490899 ], + [ 7.4846099, 47.4489462 ], + [ 7.4844807, 47.4488499 ], + [ 7.4845616, 47.4487717 ], + [ 7.484752, 47.4485997 ], + [ 7.4849063, 47.448553 ], + [ 7.485049, 47.4484519 ], + [ 7.4852308, 47.4483992 ], + [ 7.4854173, 47.4483291 ], + [ 7.4856218, 47.44829 ], + [ 7.485879, 47.4482801 ], + [ 7.4860314, 47.4482874 ], + [ 7.48604, 47.4483915 ], + [ 7.486056, 47.4484997 ], + [ 7.4860704, 47.448618 ], + [ 7.4862031, 47.4486696 ], + [ 7.4861317, 47.4488373 ], + [ 7.4861457, 47.4488431 ], + [ 7.4861448, 47.4488445 ], + [ 7.4862431, 47.4488832 ], + [ 7.4861854, 47.4489757 ], + [ 7.4860848, 47.4490823 ], + [ 7.4860099, 47.4491865 ], + [ 7.4859847, 47.4492215 ], + [ 7.4859436, 47.4493165 ], + [ 7.4859296, 47.4493916 ], + [ 7.4859388, 47.4494424 ], + [ 7.4859924, 47.4494826 ], + [ 7.4860521, 47.449516 ], + [ 7.4861512999999995, 47.4495454 ], + [ 7.486263, 47.4495412 ], + [ 7.4863623, 47.4495192 ], + [ 7.4864518, 47.4494652 ], + [ 7.4865037, 47.4493813 ], + [ 7.4865494, 47.4492397 ], + [ 7.4865558, 47.4492199 ], + [ 7.4866095999999995, 47.4490445 ], + [ 7.4866798, 47.4489203 ], + [ 7.4867669, 47.4488321 ], + [ 7.4868678, 47.4487786 ], + [ 7.4870325, 47.4487689 ], + [ 7.4872316, 47.4487831 ], + [ 7.487549, 47.448827 ], + [ 7.4879033, 47.4488654 ], + [ 7.4882649, 47.4489253 ], + [ 7.4886292, 47.448996 ], + [ 7.4890243, 47.449081 ], + [ 7.4891797, 47.4491095 ], + [ 7.4893415, 47.4491469 ], + [ 7.4893464, 47.4491372 ], + [ 7.4887578, 47.4488859 ], + [ 7.4884278, 47.4486173 ], + [ 7.488167, 47.4484055 ], + [ 7.4879866, 47.4482409 ], + [ 7.4878776, 47.448045 ], + [ 7.4878481, 47.4478519 ], + [ 7.4878883, 47.4475954 ], + [ 7.4878505, 47.447587 ], + [ 7.4879629, 47.4473557 ], + [ 7.4880837, 47.4472621 ], + [ 7.4882213, 47.4471906 ], + [ 7.4883906, 47.4471323 ], + [ 7.4886392, 47.4470787 ], + [ 7.4889461, 47.4470348 ], + [ 7.4891597, 47.447015 ], + [ 7.4894179, 47.4470003 ], + [ 7.4896284, 47.447 ], + [ 7.4899018, 47.4470026 ], + [ 7.4901365, 47.4470115 ], + [ 7.49032, 47.4470333 ], + [ 7.4903875, 47.4470414 ], + [ 7.4905834, 47.4470715 ], + [ 7.4908469, 47.4471124 ], + [ 7.4910917, 47.4471749 ], + [ 7.4913068, 47.4472331 ], + [ 7.4914456, 47.447277 ], + [ 7.4912998, 47.4471626 ], + [ 7.4911035, 47.4469537 ], + [ 7.4908654, 47.4467971 ], + [ 7.4906901999999995, 47.4466737 ], + [ 7.490396, 47.4465124 ], + [ 7.490144, 47.4464317 ], + [ 7.490039, 47.4463653 ], + [ 7.4899689, 47.4462514 ], + [ 7.4899687, 47.4460472 ], + [ 7.4900174, 47.4458335 ], + [ 7.4901501, 47.4455769 ], + [ 7.4902411, 47.4454914 ], + [ 7.490423, 47.4453299 ], + [ 7.4907239, 47.4451967 ], + [ 7.4911297, 47.4451111 ], + [ 7.4914962, 47.4450966 ], + [ 7.4915325, 47.4450963 ], + [ 7.4915825, 47.4451062 ], + [ 7.4916556, 47.4451317 ], + [ 7.4917393, 47.4451823 ], + [ 7.4918537, 47.4452713 ], + [ 7.4919866, 47.4453708 ], + [ 7.4921618, 47.4455263 ], + [ 7.492415, 47.4456915 ], + [ 7.4925565, 47.445783 ], + [ 7.4926753, 47.4458599 ], + [ 7.4927353, 47.4459204 ], + [ 7.4928039, 47.4459896 ], + [ 7.4929237, 47.4461641 ], + [ 7.4930378, 47.4463006 ], + [ 7.493201, 47.4464545 ], + [ 7.4933582, 47.4465921 ], + [ 7.4935298, 47.4467455 ], + [ 7.4936375, 47.4468326 ], + [ 7.4937776, 47.4468805 ], + [ 7.4937873, 47.4468838 ], + [ 7.4939213, 47.4468858 ], + [ 7.4940776, 47.4468293 ], + [ 7.4942867, 47.4466941 ], + [ 7.4944819, 47.4465846 ], + [ 7.4946975, 47.4465174 ], + [ 7.4948727, 47.4464869 ], + [ 7.4952683, 47.4464471 ], + [ 7.4954733, 47.4464215 ], + [ 7.4954917, 47.4464171 ], + [ 7.496336, 47.4457811 ], + [ 7.4963607, 47.4459013 ], + [ 7.4963486, 47.4460297 ], + [ 7.4964343, 47.4461831 ], + [ 7.4965261, 47.446407 ], + [ 7.4967037, 47.4466929 ], + [ 7.4967221, 47.4467799 ], + [ 7.4967713, 47.4469996 ], + [ 7.4968938, 47.4473312 ], + [ 7.4969012, 47.4474058 ], + [ 7.4974421, 47.4477076 ], + [ 7.4991266, 47.4481161 ], + [ 7.5017114, 47.4491328 ], + [ 7.5024463, 47.4482877 ], + [ 7.502508, 47.4482108 ], + [ 7.5025162, 47.4482007 ], + [ 7.5036904, 47.4467403 ], + [ 7.5038515, 47.4465949 ], + [ 7.50461, 47.4459102 ], + [ 7.5049433, 47.4456103 ], + [ 7.5047646, 47.4455709 ], + [ 7.5044232, 47.4454957 ], + [ 7.5043809, 47.4454866 ], + [ 7.5043389, 47.4454769 ], + [ 7.5042972, 47.4454667 ], + [ 7.5042557, 47.445456 ], + [ 7.5042146, 47.4454447 ], + [ 7.5041738, 47.4454328 ], + [ 7.5041334, 47.4454205 ] + ], + [ + [ 7.4990448, 47.4418292 ], + [ 7.4991742, 47.4421033 ], + [ 7.4988558, 47.4421725 ], + [ 7.4988018, 47.4420333 ], + [ 7.4988271, 47.4418765 ], + [ 7.4990448, 47.4418292 ] + ], + [ + [ 7.4881576, 47.4452667 ], + [ 7.4881296, 47.4452778 ], + [ 7.4883172, 47.4454241 ], + [ 7.4882651, 47.4454875 ], + [ 7.4881991, 47.4455754 ], + [ 7.4881018, 47.4456288 ], + [ 7.4879927, 47.445627 ], + [ 7.4879287, 47.4456017 ], + [ 7.4878789999999995, 47.4455379 ], + [ 7.4878522, 47.4455314 ], + [ 7.4874884, 47.4456611 ], + [ 7.487439, 47.4456312 ], + [ 7.4873704, 47.4456533 ], + [ 7.48727, 47.4456722 ], + [ 7.4872057, 47.4456901 ], + [ 7.487156, 47.4456954 ], + [ 7.4871079, 47.4456897 ], + [ 7.4870529999999995, 47.4456578 ], + [ 7.4870405, 47.4455938 ], + [ 7.48704, 47.4455912 ], + [ 7.4870662, 47.4455574 ], + [ 7.4872263, 47.4454272 ], + [ 7.4874095, 47.4453072 ], + [ 7.4875656, 47.445206 ], + [ 7.4877353, 47.4451102 ], + [ 7.4877815, 47.4450842 ], + [ 7.487828, 47.4450578 ], + [ 7.4877808, 47.4451505 ], + [ 7.4880118, 47.4450754 ], + [ 7.4881576, 47.4452667 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns091", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Dittinger Weide und Dittinger Wald", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Dittinger Weide und Dittinger Wald", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Dittinger Weide und Dittinger Wald", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Dittinger Weide und Dittinger Wald", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.9147005, 47.4072972 ], + [ 7.9146525, 47.407387 ], + [ 7.9145075, 47.4076475 ], + [ 7.9143588, 47.4079134 ], + [ 7.914336, 47.4079561 ], + [ 7.9144967, 47.4079962 ], + [ 7.914396, 47.4082247 ], + [ 7.9142695, 47.4083988 ], + [ 7.9147196, 47.408615 ], + [ 7.9154053, 47.4090284 ], + [ 7.915448, 47.4090558 ], + [ 7.9153721, 47.4090989 ], + [ 7.9153151, 47.409190100000004 ], + [ 7.9153514, 47.409208 ], + [ 7.9155674, 47.4091101 ], + [ 7.9156936, 47.4090694 ], + [ 7.9158798, 47.4090673 ], + [ 7.9160724, 47.4090835 ], + [ 7.9163186, 47.4091377 ], + [ 7.9163708, 47.4091492 ], + [ 7.9164494, 47.4092082 ], + [ 7.916452, 47.4092758 ], + [ 7.9164264, 47.4094075 ], + [ 7.9164262, 47.4094934 ], + [ 7.9164508, 47.4095029 ], + [ 7.9164813, 47.4095145 ], + [ 7.9165628, 47.4095456 ], + [ 7.9165867, 47.409589 ], + [ 7.9165461, 47.4096717 ], + [ 7.916528, 47.4097784 ], + [ 7.9162885, 47.4098235 ], + [ 7.9161321000000004, 47.4098315 ], + [ 7.9158934, 47.4098617 ], + [ 7.9157668, 47.4099234 ], + [ 7.914997, 47.4103417 ], + [ 7.9148727999999995, 47.4101351 ], + [ 7.9148559, 47.4101727 ], + [ 7.9148165, 47.4102841 ], + [ 7.9147102, 47.4108018 ], + [ 7.9146002, 47.4113361 ], + [ 7.9145598, 47.4115488 ], + [ 7.9145517, 47.4116898 ], + [ 7.9146054, 47.411908 ], + [ 7.9146062, 47.411912 ], + [ 7.9146427, 47.4120686 ], + [ 7.914664, 47.4120643 ], + [ 7.9147842, 47.4120262 ], + [ 7.9149329999999996, 47.4120314 ], + [ 7.9150106000000005, 47.4120881 ], + [ 7.9151475, 47.4121231 ], + [ 7.9152954, 47.4122198 ], + [ 7.9153806, 47.4123477 ], + [ 7.9154297, 47.4124298 ], + [ 7.915608, 47.4124465 ], + [ 7.9156212, 47.4124312 ], + [ 7.9162704999999995, 47.4125146 ], + [ 7.9165398, 47.4125482 ], + [ 7.9168833, 47.4122864 ], + [ 7.9180084, 47.412008 ], + [ 7.9180307, 47.4122392 ], + [ 7.9181853, 47.4122165 ], + [ 7.9181975, 47.4122111 ], + [ 7.9184739, 47.4121864 ], + [ 7.9185268, 47.412439 ], + [ 7.9187109, 47.4126294 ], + [ 7.9189025, 47.412828 ], + [ 7.9188603, 47.4131636 ], + [ 7.9192903999999995, 47.4132613 ], + [ 7.9195408, 47.4133006 ], + [ 7.9200435, 47.4133617 ], + [ 7.9205448, 47.4133598 ], + [ 7.9206478, 47.4132461 ], + [ 7.9207205, 47.4130424 ], + [ 7.9208201, 47.4128119 ], + [ 7.9209025, 47.4123343 ], + [ 7.9210095, 47.4121207 ], + [ 7.9212027, 47.4111657 ], + [ 7.9212612, 47.4109965 ], + [ 7.9212717999999995, 47.4109441 ], + [ 7.9214169, 47.4104748 ], + [ 7.9214846, 47.4099289 ], + [ 7.9233895, 47.4103001 ], + [ 7.9237532999999996, 47.4103822 ], + [ 7.9242927, 47.4102808 ], + [ 7.9258071999999995, 47.4102887 ], + [ 7.9258255, 47.4092473 ], + [ 7.9257063, 47.4092351 ], + [ 7.9250523, 47.4090122 ], + [ 7.9250468, 47.409008 ], + [ 7.9249521, 47.4091772 ], + [ 7.923788, 47.4091733 ], + [ 7.923408, 47.4090521 ], + [ 7.9230746, 47.4088727 ], + [ 7.9230564999999995, 47.408863 ], + [ 7.9224915, 47.4085777 ], + [ 7.9223595, 47.4085111 ], + [ 7.9219068, 47.4086627 ], + [ 7.9215761, 47.4085987 ], + [ 7.9210512, 47.4084468 ], + [ 7.9209802, 47.4083991 ], + [ 7.9206521, 47.4081792 ], + [ 7.9204042, 47.4080987 ], + [ 7.9200805, 47.4079935 ], + [ 7.9196197999999995, 47.4077998 ], + [ 7.9193961, 47.4076918 ], + [ 7.9190293, 47.4075272 ], + [ 7.9187451, 47.4072663 ], + [ 7.9185348, 47.4071245 ], + [ 7.9183361, 47.407035 ], + [ 7.9181989, 47.4069708 ], + [ 7.9180525, 47.4067686 ], + [ 7.9178349, 47.4063826 ], + [ 7.9171151, 47.4060977 ], + [ 7.9170993, 47.4060884 ], + [ 7.9170967999999995, 47.4060504 ], + [ 7.9172842, 47.4058127 ], + [ 7.9173881999999995, 47.4056808 ], + [ 7.9174035, 47.4056175 ], + [ 7.91744, 47.4055873 ], + [ 7.9173439, 47.4055928 ], + [ 7.9172616, 47.4056397 ], + [ 7.9171916, 47.4057007 ], + [ 7.917079, 47.4057227 ], + [ 7.9167894, 47.4057132 ], + [ 7.9165299000000005, 47.405674 ], + [ 7.9163378, 47.4057858 ], + [ 7.9163289, 47.4057903 ], + [ 7.9162713, 47.4056895 ], + [ 7.9162153, 47.4057151 ], + [ 7.916148, 47.4057789 ], + [ 7.9160421, 47.4059456 ], + [ 7.9159393, 47.4060476 ], + [ 7.9157249, 47.4061409 ], + [ 7.9155925, 47.4062021 ], + [ 7.9155326, 47.4062544 ], + [ 7.9153955, 47.4064806 ], + [ 7.9152852, 47.4066075 ], + [ 7.915087, 47.4067701 ], + [ 7.9150832, 47.4067742 ], + [ 7.9148525, 47.4070156 ], + [ 7.9148111, 47.4070907 ], + [ 7.9147005, 47.4072972 ] + ], + [ + [ 7.9152587, 47.4112865 ], + [ 7.9154529, 47.4113088 ], + [ 7.9156521, 47.411262 ], + [ 7.9161451, 47.411112 ], + [ 7.9168223, 47.410964 ], + [ 7.9169509, 47.4109724 ], + [ 7.917097, 47.4110322 ], + [ 7.9171013, 47.4110323 ], + [ 7.9171111, 47.4111059 ], + [ 7.9171025, 47.4111082 ], + [ 7.9170044, 47.4112104 ], + [ 7.9169213, 47.4112772 ], + [ 7.9167771, 47.4113873 ], + [ 7.9167732, 47.4113904 ], + [ 7.916713, 47.4115669 ], + [ 7.9167055, 47.4115675 ], + [ 7.9163763, 47.4117333 ], + [ 7.9160391, 47.4119034 ], + [ 7.9160049, 47.4120989 ], + [ 7.9160093, 47.4121043 ], + [ 7.9157922, 47.4120552 ], + [ 7.9155663, 47.4120102 ], + [ 7.9153464, 47.4119977 ], + [ 7.9149284, 47.4117606 ], + [ 7.914982, 47.4114659 ], + [ 7.9152214999999995, 47.4113104 ], + [ 7.9152575, 47.4112901 ], + [ 7.9152587, 47.4112865 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns097", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Gipsgrube", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Gipsgrube", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Gipsgrube", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Gipsgrube", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8142907, 47.4245519 ], + [ 7.8128025999999995, 47.4243435 ], + [ 7.8120692, 47.4241912 ], + [ 7.8110112, 47.4241072 ], + [ 7.8109977, 47.4241296 ], + [ 7.8108457, 47.4244001 ], + [ 7.8107866, 47.4245879 ], + [ 7.8108068, 47.4245921 ], + [ 7.8107218, 47.4247718 ], + [ 7.8106649, 47.4248385 ], + [ 7.8106393, 47.4248451 ], + [ 7.8104761, 47.4252593 ], + [ 7.8104111, 47.4254725 ], + [ 7.8103077, 47.4259692 ], + [ 7.8102421, 47.4262592 ], + [ 7.8101097, 47.4267214 ], + [ 7.8099708, 47.4271109 ], + [ 7.8098735, 47.4273629 ], + [ 7.8105109, 47.4275884 ], + [ 7.8108746, 47.4272812 ], + [ 7.8112895, 47.4269289 ], + [ 7.8119496999999996, 47.4263692 ], + [ 7.8123081, 47.4260707 ], + [ 7.8127103, 47.4257436 ], + [ 7.8131257, 47.4254171 ], + [ 7.8136882, 47.4249874 ], + [ 7.8139315, 47.4248116 ], + [ 7.8142907, 47.4245519 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr128", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Rutenrain", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Rutenrain", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Rutenrain", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Rutenrain", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6546278, 47.504455899999996 ], + [ 7.6541678, 47.5047716 ], + [ 7.6541932, 47.5048231 ], + [ 7.6539179, 47.5050053 ], + [ 7.6537881, 47.5050847 ], + [ 7.6535938, 47.5052712 ], + [ 7.6537443, 47.5055283 ], + [ 7.653881, 47.5058441 ], + [ 7.6539271, 47.5060684 ], + [ 7.6539722999999995, 47.5060989 ], + [ 7.6543693, 47.5062232 ], + [ 7.6552384, 47.5065656 ], + [ 7.6558875, 47.5067284 ], + [ 7.6563683000000005, 47.506849 ], + [ 7.6565778, 47.5065529 ], + [ 7.6578826, 47.5054695 ], + [ 7.6583904, 47.5050057 ], + [ 7.6583173, 47.5049467 ], + [ 7.658205, 47.5047429 ], + [ 7.6580973, 47.5044957 ], + [ 7.6580083, 47.5043778 ], + [ 7.6578019, 47.504144 ], + [ 7.65759, 47.5038487 ], + [ 7.6574390999999995, 47.5037572 ], + [ 7.6573478999999995, 47.5035228 ], + [ 7.6571063, 47.5033193 ], + [ 7.6569851, 47.5031258 ], + [ 7.6567289, 47.5030447 ], + [ 7.6558411, 47.5030566 ], + [ 7.6554052, 47.5031798 ], + [ 7.65521, 47.5032923 ], + [ 7.6552836, 47.5035182 ], + [ 7.655182, 47.5038022 ], + [ 7.6550477, 47.5040778 ], + [ 7.6549881, 47.5042309 ], + [ 7.6546278, 47.504455899999996 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr026", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Waldstäge", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Waldstäge", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Waldstäge", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Waldstäge", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.1586789, 46.170042 ], + [ 6.1592664, 46.1700542 ], + [ 6.1595156, 46.170094 ], + [ 6.1607266, 46.1700199 ], + [ 6.1608082, 46.1700057 ], + [ 6.1621782, 46.169556 ], + [ 6.1631963, 46.1687764 ], + [ 6.1637077, 46.1677855 ], + [ 6.1636345, 46.1667341 ], + [ 6.1636211, 46.1666968 ], + [ 6.1631457, 46.1659195 ], + [ 6.1623479, 46.1652823 ], + [ 6.1613056, 46.1648477 ], + [ 6.1601211, 46.1646582 ], + [ 6.1598226, 46.1646765 ], + [ 6.1595121, 46.1646285 ], + [ 6.1580257, 46.164808 ], + [ 6.1567499, 46.1653676 ], + [ 6.1566932, 46.1654049 ], + [ 6.155819, 46.1662622 ], + [ 6.1554822, 46.1672866 ], + [ 6.155734, 46.1683226 ], + [ 6.1565362, 46.1692133 ], + [ 6.1565722, 46.1692399 ], + [ 6.1575341, 46.169757 ], + [ 6.1586789, 46.170042 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-42", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.0967042, 47.0468365 ], + [ 9.1021131, 47.0464658 ], + [ 9.1027202, 47.0463844 ], + [ 9.103269, 47.0462817 ], + [ 9.1036534, 47.0462109 ], + [ 9.1100781, 47.0451516 ], + [ 9.1105461, 47.0450958 ], + [ 9.1108971, 47.0450089 ], + [ 9.1110993, 47.0449253 ], + [ 9.1112526, 47.0448541 ], + [ 9.1114317, 47.0447938 ], + [ 9.1115623, 47.0447625 ], + [ 9.1117529, 47.0447808 ], + [ 9.1119615, 47.044821 ], + [ 9.1122045, 47.0448833 ], + [ 9.1123942, 47.0448732 ], + [ 9.1126747, 47.0448725 ], + [ 9.1128646, 47.0448682 ], + [ 9.1131632, 47.0448952 ], + [ 9.1133476, 47.0449531 ], + [ 9.1135397, 47.0449938 ], + [ 9.113798, 47.0450443 ], + [ 9.1138905, 47.0450816 ], + [ 9.1139701, 47.0451813 ], + [ 9.114002, 47.0453328 ], + [ 9.1140556, 47.0454162 ], + [ 9.1142403, 47.0454852 ], + [ 9.1146367, 47.0456398 ], + [ 9.1149183, 47.0458307 ], + [ 9.1151687, 47.0460505 ], + [ 9.1153807, 47.0461754 ], + [ 9.1156081, 47.0462659 ], + [ 9.1157535, 47.0463642 ], + [ 9.1158574, 47.0464521 ], + [ 9.1159613, 47.0465625 ], + [ 9.1161222, 47.0466321 ], + [ 9.1163854, 47.0467896 ], + [ 9.1167658, 47.0469557 ], + [ 9.1171026, 47.0471002 ], + [ 9.1173299, 47.0471853 ], + [ 9.1176225, 47.0472575 ], + [ 9.1178089, 47.0473491 ], + [ 9.1180219, 47.0474795 ], + [ 9.1182497, 47.0475815 ], + [ 9.1185343, 47.0476596 ], + [ 9.1188597, 47.0477255 ], + [ 9.1192176, 47.0477793 ], + [ 9.1196438, 47.0478879 ], + [ 9.1199973, 47.0480095 ], + [ 9.1202, 47.0481008 ], + [ 9.1204278, 47.0482027 ], + [ 9.1206571, 47.0483271 ], + [ 9.1208848, 47.0484235 ], + [ 9.1211435, 47.0484908 ], + [ 9.1215604, 47.0485603 ], + [ 9.1223189, 47.0481934 ], + [ 9.1225216, 47.0482846 ], + [ 9.1227578, 47.0483919 ], + [ 9.1229666, 47.0484379 ], + [ 9.1232142, 47.0484379 ], + [ 9.1234733, 47.0484884 ], + [ 9.1237146, 47.0485222 ], + [ 9.1239139, 47.0485571 ], + [ 9.1241542, 47.0485574 ], + [ 9.124433, 47.0485284 ], + [ 9.1246276, 47.0484394 ], + [ 9.1248632, 47.0483719 ], + [ 9.1251305, 47.0482643 ], + [ 9.1253406, 47.0481692 ], + [ 9.1254655, 47.0480086 ], + [ 9.1256871, 47.0479922 ], + [ 9.1259599, 47.0479803 ], + [ 9.1261565, 47.0479533 ], + [ 9.1262991, 47.0478317 ], + [ 9.1265509, 47.0475721 ], + [ 9.1266943, 47.0472925 ], + [ 9.1267968, 47.0470196 ], + [ 9.1268244, 47.0467483 ], + [ 9.1269962, 47.0465357 ], + [ 9.1272183, 47.0463503 ], + [ 9.1274338, 47.0460351 ], + [ 9.1276303, 47.0458221 ], + [ 9.1276394, 47.0456697 ], + [ 9.127563, 47.0454628 ], + [ 9.1274864, 47.0452502 ], + [ 9.1274881, 47.0449401 ], + [ 9.127524, 47.0446687 ], + [ 9.1276349, 47.0444011 ], + [ 9.1277125, 47.0441231 ], + [ 9.1278637, 47.043832 ], + [ 9.1280024, 47.0436373 ], + [ 9.1281691, 47.043498 ], + [ 9.1283211, 47.0433874 ], + [ 9.1285298, 47.0432755 ], + [ 9.1286201, 47.0430874 ], + [ 9.1286469, 47.042788 ], + [ 9.1287315, 47.0424985 ], + [ 9.1288424, 47.0422309 ], + [ 9.1290504, 47.0420964 ], + [ 9.1292909, 47.0419501 ], + [ 9.1296406, 47.0416657 ], + [ 9.1301212, 47.0413615 ], + [ 9.1307185, 47.0407389 ], + [ 9.1380896, 47.0391319 ], + [ 9.133877, 47.0342275 ], + [ 9.1250815, 47.0318468 ], + [ 9.1251334, 47.0315636 ], + [ 9.1251327, 47.0313832 ], + [ 9.1245179, 47.0290968 ], + [ 9.1244648, 47.0290303 ], + [ 9.1242888, 47.0289779 ], + [ 9.124162, 47.0289189 ], + [ 9.1240428, 47.0288426 ], + [ 9.1240061, 47.0287758 ], + [ 9.1240847, 47.0286838 ], + [ 9.1242192, 47.028568 ], + [ 9.1240542, 47.0283969 ], + [ 9.1239175, 47.0283098 ], + [ 9.1238, 47.0282618 ], + [ 9.1237384, 47.0281842 ], + [ 9.1237346, 47.0281167 ], + [ 9.1236905, 47.02805 ], + [ 9.1235721, 47.0279963 ], + [ 9.1233204, 47.0279175 ], + [ 9.1233207, 47.0277428 ], + [ 9.123315, 47.0276413 ], + [ 9.1233033, 47.027557 ], + [ 9.123381, 47.0274651 ], + [ 9.1234316, 47.0273229 ], + [ 9.123376, 47.0272001 ], + [ 9.1232563, 47.027107 ], + [ 9.1230885, 47.0270545 ], + [ 9.1229226, 47.0270357 ], + [ 9.1227744, 47.027056 ], + [ 9.1226039, 47.0270994 ], + [ 9.1224359, 47.0268833 ], + [ 9.1223898, 47.0266194 ], + [ 9.1223844, 47.0265011 ], + [ 9.122421, 47.02641 ], + [ 9.1225309, 47.0262948 ], + [ 9.122652, 47.0262243 ], + [ 9.1228131, 47.0261417 ], + [ 9.1228527, 47.0259378 ], + [ 9.1228828, 47.0257172 ], + [ 9.1228786, 47.0254523 ], + [ 9.1228618, 47.0252835 ], + [ 9.122861, 47.0251032 ], + [ 9.1229051, 47.0249894 ], + [ 9.1230262, 47.024761 ], + [ 9.1228744, 47.0245333 ], + [ 9.1227252, 47.0243394 ], + [ 9.1225894, 47.0241 ], + [ 9.1224909, 47.0239501 ], + [ 9.1224235, 47.023743 ], + [ 9.1220249, 47.0236957 ], + [ 9.1217325, 47.023629 ], + [ 9.1214884, 47.0235276 ], + [ 9.1212494, 47.0233808 ], + [ 9.1210666, 47.0231875 ], + [ 9.1208219, 47.0229112 ], + [ 9.1205016, 47.0226084 ], + [ 9.1202499, 47.0223435 ], + [ 9.1200242, 47.0221231 ], + [ 9.1198229, 47.0218909 ], + [ 9.1194904, 47.0216731 ], + [ 9.1192008, 47.0214823 ], + [ 9.1189448, 47.0213189 ], + [ 9.1186662, 47.02119 ], + [ 9.1183589, 47.0209884 ], + [ 9.1181023, 47.0208025 ], + [ 9.1178546, 47.020639 ], + [ 9.1176511, 47.0205197 ], + [ 9.117473, 47.0204278 ], + [ 9.1171776, 47.0202881 ], + [ 9.1170016, 47.0202357 ], + [ 9.1167988, 47.0201388 ], + [ 9.1165864, 47.0200252 ], + [ 9.1163236, 47.0198789 ], + [ 9.116219, 47.0197686 ], + [ 9.1161871, 47.0196171 ], + [ 9.1161722, 47.019481999999996 ], + [ 9.1160983, 47.019326 ], + [ 9.1158831, 47.0191504 ], + [ 9.1156443, 47.018981 ], + [ 9.1154286, 47.0187886 ], + [ 9.1151623, 47.0185804 ], + [ 9.114995, 47.0183587 ], + [ 9.1148594, 47.0181249 ], + [ 9.1147577, 47.0178962 ], + [ 9.1147168, 47.0177448 ], + [ 9.1146782, 47.017616 ], + [ 9.1146224, 47.0174876 ], + [ 9.1145502, 47.0173595 ], + [ 9.1144704, 47.0172543 ], + [ 9.114333, 47.0171446 ], + [ 9.1141735, 47.0170919 ], + [ 9.114041, 47.0170893 ], + [ 9.1136983, 47.0164881 ], + [ 9.1137899, 47.0161589 ], + [ 9.1138341, 47.0158873 ], + [ 9.1138378, 47.015611 ], + [ 9.1138313, 47.0154815 ], + [ 9.113651, 47.0153446 ], + [ 9.1133678, 47.0151199 ], + [ 9.1130188, 47.0148967 ], + [ 9.1125623, 47.0146815 ], + [ 9.1122305, 47.0144804 ], + [ 9.1119176, 47.0143352 ], + [ 9.1116138, 47.01419 ], + [ 9.1113869, 47.0141106 ], + [ 9.111162, 47.0140706 ], + [ 9.1128919, 47.0133094 ], + [ 9.1125014, 47.0132563 ], + [ 9.113172, 47.0129592 ], + [ 9.1125829, 47.0128936 ], + [ 9.1129326, 47.0127954 ], + [ 9.1121235, 47.0127913 ], + [ 9.1126392, 47.012695 ], + [ 9.1130397, 47.0126183 ], + [ 9.113448, 47.0125299 ], + [ 9.1131894, 47.0124626 ], + [ 9.1142964, 47.0123189 ], + [ 9.1138061, 47.0122568 ], + [ 9.1134154, 47.0121981 ], + [ 9.113233, 47.012174 ], + [ 9.1130778, 47.0122057 ], + [ 9.1128779, 47.0121764 ], + [ 9.1127035, 47.0121466 ], + [ 9.1125279, 47.0121055 ], + [ 9.1123785, 47.0120864 ], + [ 9.1121706, 47.0120629 ], + [ 9.1120212, 47.0120437 ], + [ 9.1118725, 47.0120471 ], + [ 9.1117106, 47.0121016 ], + [ 9.1115583, 47.0122009 ], + [ 9.1114724, 47.0122931 ], + [ 9.1113429, 47.0123581 ], + [ 9.1112532, 47.0123826 ], + [ 9.1111382, 47.0123852 ], + [ 9.111022, 47.0123767 ], + [ 9.1109279, 47.0123111 ], + [ 9.1107701, 47.0122864 ], + [ 9.1106061, 47.0123015 ], + [ 9.1105155, 47.0123205 ], + [ 9.1103719, 47.0124083 ], + [ 9.1101378, 47.0121768 ], + [ 9.1099478, 47.0120177 ], + [ 9.1097204, 47.0119213 ], + [ 9.1094892, 47.0119153 ], + [ 9.1091421, 47.0119119 ], + [ 9.1087865, 47.0118975 ], + [ 9.10848, 47.0118762 ], + [ 9.1083224, 47.0118573 ], + [ 9.1082055, 47.0116682 ], + [ 9.1079007, 47.0116752 ], + [ 9.107668, 47.0116467 ], + [ 9.1075097, 47.0116051 ], + [ 9.1073891, 47.0115064 ], + [ 9.1073826, 47.0113768 ], + [ 9.1072162, 47.0113412 ], + [ 9.1072179, 47.0112114 ], + [ 9.1070521, 47.0111927 ], + [ 9.1071373, 47.0110779 ], + [ 9.107182, 47.0109811 ], + [ 9.1071775, 47.0108909 ], + [ 9.1071341, 47.0108412 ], + [ 9.1070347, 47.0108435 ], + [ 9.1068481, 47.0108985 ], + [ 9.1066198, 47.01096 ], + [ 9.1064318, 47.0109925 ], + [ 9.1063411, 47.0110114 ], + [ 9.1064148, 47.0108181 ], + [ 9.1062415, 47.010822 ], + [ 9.1061958, 47.0107272 ], + [ 9.106057, 47.0107586 ], + [ 9.1059855, 47.0106531 ], + [ 9.1057625, 47.0106469 ], + [ 9.1055628, 47.0106232 ], + [ 9.1053691, 47.0105261 ], + [ 9.1052623, 47.0103706 ], + [ 9.1051986, 47.0102537 ], + [ 9.1051673, 47.0101191 ], + [ 9.1050766, 47.009952 ], + [ 9.1049716, 47.0098247 ], + [ 9.104873, 47.009669 ], + [ 9.104758, 47.0095138 ], + [ 9.1045355, 47.0093385 ], + [ 9.1035477, 47.0090564 ], + [ 9.1035393, 47.0088931 ], + [ 9.1035265, 47.0087974 ], + [ 9.1034423, 47.00876 ], + [ 9.1033168, 47.0087177 ], + [ 9.103165, 47.0089918 ], + [ 9.1030153, 47.0091474 ], + [ 9.1028868, 47.009218 ], + [ 9.1027107, 47.00916 ], + [ 9.1025101, 47.0091081 ], + [ 9.1023182, 47.0090674 ], + [ 9.1021294, 47.0092633 ], + [ 9.1021171, 47.0093425 ], + [ 9.1016331, 47.0094044 ], + [ 9.1017941, 47.0096656 ], + [ 9.1019093, 47.0098266 ], + [ 9.1020471, 47.0099475 ], + [ 9.1021359, 47.0100808 ], + [ 9.1022609, 47.0102697 ], + [ 9.1023414, 47.0103975 ], + [ 9.1024468, 47.010536 ], + [ 9.1026438, 47.0106839 ], + [ 9.1028723, 47.0107915 ], + [ 9.1030228, 47.0110023 ], + [ 9.1028251, 47.0115198 ], + [ 9.1021577, 47.011208 ], + [ 9.1020792, 47.0112999 ], + [ 9.1020004, 47.0112003 ], + [ 9.1019382, 47.0112862 ], + [ 9.1016916, 47.0111283 ], + [ 9.1016305, 47.0114116 ], + [ 9.1014626, 47.0113534 ], + [ 9.1014092, 47.0114336 ], + [ 9.101262, 47.0113015 ], + [ 9.1011872, 47.0114612 ], + [ 9.1009697, 47.0113928 ], + [ 9.1008096, 47.0115036 ], + [ 9.1004899, 47.0113755 ], + [ 9.1001026, 47.0112151 ], + [ 9.0998484, 47.0110743 ], + [ 9.0996175, 47.0109216 ], + [ 9.0994302, 47.0107906 ], + [ 9.0993263, 47.0107027 ], + [ 9.0991541, 47.0107178 ], + [ 9.0991331, 47.0109664 ], + [ 9.0988572, 47.0108994 ], + [ 9.0986218, 47.0108089 ], + [ 9.0984842, 47.0106937 ], + [ 9.098252, 47.010682 ], + [ 9.09819, 47.010937 ], + [ 9.0978621, 47.0108092 ], + [ 9.0979913, 47.011263 ], + [ 9.0980528, 47.0116844 ], + [ 9.0977157, 47.0117089 ], + [ 9.0976432, 47.0115697 ], + [ 9.0974363, 47.0115519 ], + [ 9.0971224, 47.0115589 ], + [ 9.0969323, 47.011552 ], + [ 9.0968623, 47.0114689 ], + [ 9.0967929, 47.0114029 ], + [ 9.0967003, 47.0113598 ], + [ 9.0965843, 47.0113568 ], + [ 9.0964306, 47.0114111 ], + [ 9.0962336, 47.0114493 ], + [ 9.0959444, 47.0114278 ], + [ 9.0957652, 47.0114825 ], + [ 9.0957291, 47.0115905 ], + [ 9.0957589, 47.0117025 ], + [ 9.0958238, 47.0118364 ], + [ 9.0958367, 47.0119319 ], + [ 9.0958332, 47.0120336 ], + [ 9.0957299, 47.0121204 ], + [ 9.0955108, 47.0120295 ], + [ 9.095311, 47.0118143 ], + [ 9.0951863, 47.0116365 ], + [ 9.0951216, 47.0114858 ], + [ 9.0951235, 47.0113618 ], + [ 9.0951694, 47.0112761 ], + [ 9.0951083, 47.0112155 ], + [ 9.0950365, 47.0110987 ], + [ 9.0949867, 47.010925 ], + [ 9.0949304, 47.0107798 ], + [ 9.0948847, 47.010685 ], + [ 9.0947559, 47.0105863 ], + [ 9.0945179, 47.0104395 ], + [ 9.0943805, 47.0103298 ], + [ 9.0942842, 47.0102192 ], + [ 9.0942215, 47.0101079 ], + [ 9.0940027, 47.0100226 ], + [ 9.093655, 47.0098387 ], + [ 9.0933849, 47.0097153 ], + [ 9.0931794, 47.0095564 ], + [ 9.0929869, 47.0093407 ], + [ 9.0928963, 47.0091738 ], + [ 9.0927483, 47.0090135 ], + [ 9.0925198, 47.0088834 ], + [ 9.0923583, 47.0087911 ], + [ 9.0921308, 47.0086893 ], + [ 9.091934, 47.008547 ], + [ 9.0918132, 47.0084426 ], + [ 9.0916139, 47.0082442 ], + [ 9.0915318, 47.0080882 ], + [ 9.0911499, 47.0077251 ], + [ 9.0910326, 47.0078427 ], + [ 9.0908896, 47.0080277 ], + [ 9.090813, 47.008185 ], + [ 9.0907115, 47.008331 ], + [ 9.0907661, 47.0085287 ], + [ 9.0903866, 47.0085655 ], + [ 9.0903146, 47.008469 ], + [ 9.0902335, 47.0084009 ], + [ 9.0901112, 47.0083266 ], + [ 9.0899256, 47.0080658 ], + [ 9.0897639, 47.0079406 ], + [ 9.0895175, 47.0078937 ], + [ 9.0892861, 47.0079597 ], + [ 9.0891432, 47.0081505 ], + [ 9.0891715, 47.0084044 ], + [ 9.0891911, 47.0086921 ], + [ 9.0891809, 47.0088161 ], + [ 9.0889768, 47.0087018 ], + [ 9.08873, 47.0087227 ], + [ 9.0886119, 47.0088909 ], + [ 9.0885672, 47.0091217 ], + [ 9.0885622, 47.0093868 ], + [ 9.0876241, 47.0094081 ], + [ 9.0874331, 47.0090007 ], + [ 9.0872654, 47.0086781 ], + [ 9.0870467, 47.0084905 ], + [ 9.0865458, 47.0084022 ], + [ 9.0861686, 47.0083542 ], + [ 9.0856986, 47.0083621 ], + [ 9.0856105, 47.0082205 ], + [ 9.0854563, 47.008101 ], + [ 9.0852602, 47.0080318 ], + [ 9.0850628, 47.0080022 ], + [ 9.0847414, 47.008028 ], + [ 9.0845189, 47.008066 ], + [ 9.0843712, 47.0080197 ], + [ 9.0842188, 47.0078212 ], + [ 9.0839917, 47.0075996 ], + [ 9.0836981, 47.0074621 ], + [ 9.0834194, 47.0073811 ], + [ 9.0830982, 47.0073901 ], + [ 9.082769, 47.0073764 ], + [ 9.0827578, 47.0075736 ], + [ 9.0826827, 47.0077797 ], + [ 9.0828921, 47.0077983 ], + [ 9.0831461, 47.0079335 ], + [ 9.0833261, 47.0080648 ], + [ 9.083409, 47.008249 ], + [ 9.0834421, 47.0084174 ], + [ 9.0834835, 47.0085856 ], + [ 9.08353, 47.0087085 ], + [ 9.0836268, 47.008836 ], + [ 9.0837802, 47.0089341 ], + [ 9.0839007, 47.0090272 ], + [ 9.0839787, 47.0091044 ], + [ 9.0840074, 47.0091827 ], + [ 9.0839454, 47.0092799 ], + [ 9.0838759, 47.0093717 ], + [ 9.083879, 47.0094449 ], + [ 9.0838996, 47.0095291 ], + [ 9.0839687, 47.0095839 ], + [ 9.084066, 47.0097283 ], + [ 9.0841336, 47.0099185 ], + [ 9.084158, 47.0100984 ], + [ 9.0841908, 47.0102555 ], + [ 9.0842474, 47.0104122 ], + [ 9.0843558, 47.0105957 ], + [ 9.0844751, 47.0108412 ], + [ 9.0845955, 47.0111203 ], + [ 9.0846883, 47.0113325 ], + [ 9.0846962, 47.0115071 ], + [ 9.0846637, 47.0116826 ], + [ 9.0845719, 47.0118256 ], + [ 9.0843871, 47.011937 ], + [ 9.0841452, 47.0120664 ], + [ 9.0839689, 47.0121606 ], + [ 9.0838982, 47.0122411 ], + [ 9.0838948, 47.0123427 ], + [ 9.0838568, 47.0124169 ], + [ 9.0837627, 47.0125148 ], + [ 9.0836641, 47.0127031 ], + [ 9.0836134, 47.0128452 ], + [ 9.0836034, 47.0129751 ], + [ 9.0838341, 47.0133138 ], + [ 9.0840702, 47.0135849 ], + [ 9.08434, 47.0138832 ], + [ 9.0845146, 47.0140822 ], + [ 9.0846791, 47.014242 ], + [ 9.0847449, 47.014404 ], + [ 9.084754, 47.0145955 ], + [ 9.0846586, 47.0148346 ], + [ 9.0846185, 47.0150272 ], + [ 9.0845524, 47.0152034 ], + [ 9.0845535, 47.0154008 ], + [ 9.0845769, 47.0155468 ], + [ 9.0846429, 47.0157144 ], + [ 9.0847494, 47.0158643 ], + [ 9.0849288, 47.0160012 ], + [ 9.0851661, 47.0161255 ], + [ 9.0853796, 47.0162786 ], + [ 9.085676, 47.0164241 ], + [ 9.0859713, 47.0165641 ], + [ 9.0862083, 47.0166771 ], + [ 9.0863115, 47.0167706 ], + [ 9.0863611, 47.0169386 ], + [ 9.0862921, 47.0170474 ], + [ 9.0861659, 47.0171686 ], + [ 9.085893, 47.0173326 ], + [ 9.0853636, 47.0176547 ], + [ 9.0851667, 47.0178565 ], + [ 9.0850226, 47.0181192 ], + [ 9.084889, 47.0184266 ], + [ 9.0847373, 47.0187062 ], + [ 9.0846623, 47.0188603 ], + [ 9.0845802, 47.0190537 ], + [ 9.0844873, 47.019349 ], + [ 9.0843922, 47.0195992 ], + [ 9.0842569, 47.0198787 ], + [ 9.0841035, 47.0201301 ], + [ 9.083924, 47.0203372 ], + [ 9.0838053, 47.0206218 ], + [ 9.0837124, 47.020917 ], + [ 9.0836262, 47.0211896 ], + [ 9.0835621, 47.0215632 ], + [ 9.083571, 47.0219352 ], + [ 9.0835863, 47.0222449 ], + [ 9.0836, 47.0225321 ], + [ 9.0835789, 47.0227806 ], + [ 9.0834756, 47.0230311 ], + [ 9.0833444, 47.0232315 ], + [ 9.0831052, 47.0233947 ], + [ 9.0827183, 47.0235951 ], + [ 9.0823365, 47.023722 ], + [ 9.0822919, 47.0240106 ], + [ 9.0822192, 47.0243732 ], + [ 9.0822051, 47.0246103 ], + [ 9.0822736, 47.0248342 ], + [ 9.0823298, 47.0251375 ], + [ 9.0824328, 47.0253833 ], + [ 9.0825045, 47.0256861 ], + [ 9.0826533, 47.0260323 ], + [ 9.0827838, 47.0263452 ], + [ 9.0828703, 47.0265912 ], + [ 9.0829162, 47.0268553 ], + [ 9.0829418, 47.0270464 ], + [ 9.0829545, 47.0274859 ], + [ 9.0828988, 47.027707 ], + [ 9.082797, 47.0279799 ], + [ 9.0829632, 47.02801 ], + [ 9.0832457, 47.0280488 ], + [ 9.0836376, 47.0281189 ], + [ 9.0838795, 47.0281756 ], + [ 9.0840878, 47.0282103 ], + [ 9.0842929, 47.0281944 ], + [ 9.0846758, 47.0280787 ], + [ 9.0850905, 47.0279508 ], + [ 9.0853836, 47.027854 ], + [ 9.0856527, 47.0277803 ], + [ 9.085839, 47.027714 ], + [ 9.0861079, 47.0276347 ], + [ 9.0863265, 47.0275509 ], + [ 9.0867423, 47.0274344 ], + [ 9.0871592, 47.0273516 ], + [ 9.0875212, 47.0273322 ], + [ 9.0878595, 47.0273133 ], + [ 9.0881801, 47.0272835 ], + [ 9.0885179, 47.0272759 ], + [ 9.0885, 47.0274173 ], + [ 9.088541, 47.0275741 ], + [ 9.0886115, 47.0276741 ], + [ 9.088698, 47.0277567 ], + [ 9.0885307, 47.0278789 ], + [ 9.0882632, 47.0278173 ], + [ 9.0879889, 47.0277783 ], + [ 9.0877006, 47.0281345 ], + [ 9.08806, 47.0282166 ], + [ 9.0879891, 47.0282915 ], + [ 9.087808, 47.0283125 ], + [ 9.0876303, 47.0283898 ], + [ 9.0875772, 47.0284812 ], + [ 9.087527, 47.0286403 ], + [ 9.0875323, 47.0287584 ], + [ 9.0875159, 47.0289224 ], + [ 9.0874695, 47.0289911 ], + [ 9.087368, 47.0291118 ], + [ 9.0872074, 47.0292113 ], + [ 9.0870725, 47.0293158 ], + [ 9.0870443, 47.0294179 ], + [ 9.087057, 47.0295078 ], + [ 9.0871092, 47.0295744 ], + [ 9.087254, 47.0296557 ], + [ 9.0874757, 47.0294589 ], + [ 9.0878325, 47.0295072 ], + [ 9.0877077, 47.029995 ], + [ 9.0875758, 47.0301727 ], + [ 9.087421, 47.0303792 ], + [ 9.0872239, 47.0305754 ], + [ 9.0870638, 47.0306918 ], + [ 9.0869227, 47.030836 ], + [ 9.086771, 47.0309578 ], + [ 9.0866506, 47.0310281 ], + [ 9.086584, 47.0311875 ], + [ 9.0865336, 47.0313409 ], + [ 9.0864651, 47.0314664 ], + [ 9.086338, 47.0315595 ], + [ 9.0862608, 47.0316684 ], + [ 9.0861847, 47.0318167 ], + [ 9.0860873, 47.0320163 ], + [ 9.0860151, 47.0322378 ], + [ 9.0860072, 47.0324072 ], + [ 9.0860468, 47.0325472 ], + [ 9.0860531, 47.0326711 ], + [ 9.0860748, 47.032789 ], + [ 9.0861277, 47.0328498 ], + [ 9.085989, 47.0328868 ], + [ 9.0858919, 47.0329398 ], + [ 9.0858249, 47.0330878 ], + [ 9.0857658, 47.0332244 ], + [ 9.0857143, 47.0333666 ], + [ 9.0856796, 47.033497 ], + [ 9.0857979, 47.0335452 ], + [ 9.0859829, 47.0336255 ], + [ 9.0861836, 47.0336774 ], + [ 9.0860731, 47.0337757 ], + [ 9.0858877, 47.0338702 ], + [ 9.0857, 47.0339194 ], + [ 9.0855043, 47.0339746 ], + [ 9.0853408, 47.0340065 ], + [ 9.085197, 47.0341168 ], + [ 9.0849199, 47.0343599 ], + [ 9.0846245, 47.0345696 ], + [ 9.0844022, 47.0347493 ], + [ 9.0842191, 47.0348945 ], + [ 9.084061, 47.0350503 ], + [ 9.0839368, 47.0352109 ], + [ 9.0838781, 47.0353588 ], + [ 9.0837388, 47.0355649 ], + [ 9.083678, 47.0356735 ], + [ 9.0840452, 47.0360881 ], + [ 9.084212, 47.0359489 ], + [ 9.0843266, 47.0359294 ], + [ 9.0844347, 47.0359439 ], + [ 9.0844888, 47.0360442 ], + [ 9.0843299, 47.0361719 ], + [ 9.0841114, 47.0362613 ], + [ 9.083961, 47.0364001 ], + [ 9.0839043, 47.0365874 ], + [ 9.0838873, 47.036757 ], + [ 9.0838939, 47.0368921 ], + [ 9.0839502, 47.0370374 ], + [ 9.083883, 47.0371799 ], + [ 9.0837651, 47.0373066 ], + [ 9.083649, 47.0374615 ], + [ 9.0835905, 47.0376206 ], + [ 9.0836068, 47.0378007 ], + [ 9.0836805, 47.0379514 ], + [ 9.0837522, 47.0380625 ], + [ 9.0839555, 47.0381763 ], + [ 9.0835218, 47.0385977 ], + [ 9.0833952, 47.0388937 ], + [ 9.0833023, 47.039189 ], + [ 9.0832342, 47.0394894 ], + [ 9.082666, 47.0393612 ], + [ 9.0821775, 47.0393384 ], + [ 9.0817889, 47.0393245 ], + [ 9.081443, 47.0393379 ], + [ 9.081262, 47.0393646 ], + [ 9.081087, 47.0395039 ], + [ 9.0808847, 47.0395873 ], + [ 9.0806476, 47.0396322 ], + [ 9.0803676, 47.0396498 ], + [ 9.0801796, 47.0396878 ], + [ 9.0800349, 47.03977 ], + [ 9.0798737, 47.0398526 ], + [ 9.0796518, 47.0398857 ], + [ 9.0793063, 47.0399105 ], + [ 9.0790306, 47.0400125 ], + [ 9.0777852, 47.0405762 ], + [ 9.0774464, 47.0407416 ], + [ 9.077279, 47.0408637 ], + [ 9.0771105, 47.0409747 ], + [ 9.0769084, 47.0410639 ], + [ 9.0765351, 47.0412019 ], + [ 9.0763507, 47.0413076 ], + [ 9.0761267, 47.0414591 ], + [ 9.0760169, 47.04158 ], + [ 9.0759564, 47.0416998 ], + [ 9.0759042, 47.041825 ], + [ 9.0759103, 47.0419432 ], + [ 9.0758832, 47.0420791 ], + [ 9.0758672, 47.0422544 ], + [ 9.0758411, 47.0423959 ], + [ 9.0757624, 47.0424879 ], + [ 9.075609, 47.0425533 ], + [ 9.0754954, 47.0426067 ], + [ 9.0753844, 47.0426881 ], + [ 9.0753056, 47.0427744 ], + [ 9.0752303, 47.0429227 ], + [ 9.0751393, 47.0430939 ], + [ 9.0750539, 47.0432086 ], + [ 9.0748745, 47.0432577 ], + [ 9.0746604, 47.0432794 ], + [ 9.074337, 47.0432472 ], + [ 9.0741775, 47.043358 ], + [ 9.0739534, 47.0435095 ], + [ 9.0737679, 47.043604 ], + [ 9.0741441, 47.043883 ], + [ 9.0745267, 47.0439364 ], + [ 9.0748063, 47.0439077 ], + [ 9.0750854, 47.043862 ], + [ 9.0753305, 47.0438056 ], + [ 9.07558, 47.0436817 ], + [ 9.0758898, 47.0435901 ], + [ 9.0761841, 47.0435272 ], + [ 9.0764399, 47.043527 ], + [ 9.0766786, 47.0435048 ], + [ 9.0768253, 47.0434619 ], + [ 9.0769947, 47.0433792 ], + [ 9.077172, 47.0432851 ], + [ 9.0773267, 47.0432308 ], + [ 9.0776296, 47.0431846 ], + [ 9.0775982, 47.0433938 ], + [ 9.0775664, 47.0435919 ], + [ 9.0776015, 47.0437998 ], + [ 9.0775598, 47.0439699 ], + [ 9.0774931, 47.0441293 ], + [ 9.0773555, 47.0443635 ], + [ 9.077234, 47.0445861 ], + [ 9.0771275, 47.0447633 ], + [ 9.0769528, 47.0449138 ], + [ 9.0768163, 47.0449958 ], + [ 9.0767576, 47.0451494 ], + [ 9.0767726, 47.0452901 ], + [ 9.0768762, 47.0453949 ], + [ 9.0770999, 47.0455815 ], + [ 9.0771811, 47.0457094 ], + [ 9.0772211, 47.0458608 ], + [ 9.0773116, 47.0460221 ], + [ 9.0776579, 47.0461835 ], + [ 9.0779905, 47.0464073 ], + [ 9.0783365, 47.0465573 ], + [ 9.0787195, 47.0466277 ], + [ 9.079237, 47.0467345 ], + [ 9.079837, 47.0468506 ], + [ 9.0804641, 47.0469944 ], + [ 9.081066, 47.0471444 ], + [ 9.0812926, 47.047049 ], + [ 9.0815036, 47.0469822 ], + [ 9.081668, 47.0469503 ], + [ 9.0819324, 47.0469613 ], + [ 9.0822056, 47.0469665 ], + [ 9.0823444, 47.0469295 ], + [ 9.0824819, 47.0468813 ], + [ 9.0825611, 47.0468062 ], + [ 9.0826484, 47.046731 ], + [ 9.0827382, 47.0467064 ], + [ 9.082814, 47.0467385 ], + [ 9.082742, 47.0469657 ], + [ 9.0836562, 47.0467308 ], + [ 9.0846277, 47.046489 ], + [ 9.085148, 47.0463138 ], + [ 9.0856361, 47.0461619 ], + [ 9.0854512, 47.0464367 ], + [ 9.0854851, 47.0466277 ], + [ 9.0855245, 47.046762 ], + [ 9.0855666, 47.0469528 ], + [ 9.0861027, 47.0465967 ], + [ 9.0861589, 47.0467365 ], + [ 9.0865069, 47.0465764 ], + [ 9.0865064, 47.0469091 ], + [ 9.0866622, 47.0468943 ], + [ 9.0864475, 47.0482579 ], + [ 9.0875453, 47.0482444 ], + [ 9.0876436, 47.048231 ], + [ 9.0877312, 47.0481613 ], + [ 9.0878101, 47.0480806 ], + [ 9.0878814, 47.048017 ], + [ 9.0879716, 47.0480093 ], + [ 9.0880662, 47.0480861 ], + [ 9.0881526, 47.0481687 ], + [ 9.0882365, 47.0481951 ], + [ 9.0883922, 47.0481746 ], + [ 9.0885629, 47.0481087 ], + [ 9.0887654, 47.0480309 ], + [ 9.0888707, 47.0479778 ], + [ 9.0891901, 47.047931 ], + [ 9.0895833, 47.0478489 ], + [ 9.0899345, 47.0477676 ], + [ 9.0903498, 47.0476568 ], + [ 9.0905052, 47.047625 ], + [ 9.0906351, 47.0475714 ], + [ 9.0908446, 47.047454 ], + [ 9.0910804, 47.0473922 ], + [ 9.0913604, 47.0473746 ], + [ 9.0916638, 47.047317 ], + [ 9.0918928, 47.0472724 ], + [ 9.0921548, 47.0472326 ], + [ 9.092494, 47.0472418 ], + [ 9.0928326, 47.0472285 ], + [ 9.0931129, 47.0472222 ], + [ 9.0932501, 47.0471627 ], + [ 9.0935289, 47.0471057 ], + [ 9.0936354, 47.0470919 ], + [ 9.0938727, 47.0470528 ], + [ 9.0940864, 47.0470198 ], + [ 9.0943094, 47.0470204 ], + [ 9.0945322, 47.0470153 ], + [ 9.0947548, 47.0470047 ], + [ 9.0950293, 47.0470492 ], + [ 9.0952853, 47.0470546 ], + [ 9.0956409, 47.0470636 ], + [ 9.0958144, 47.0470596 ], + [ 9.0960617, 47.0470483 ], + [ 9.0962661, 47.04701 ], + [ 9.0964848, 47.046926 ], + [ 9.0967042, 47.0468365 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "JBG0030", + "country" : "CHE", + "name" : [ + { + "text" : "Eidgenössisches Jagdbanngebiet Schilt", + "lang" : "de-CH" + }, + { + "text" : "District franc fédéral Schilt", + "lang" : "fr-CH" + }, + { + "text" : "Bandita federale di caccia Schilt", + "lang" : "it-CH" + }, + { + "text" : "Federal Game Reserve Schilt", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.6028875, 46.8877053 ], + [ 8.6027612, 46.8877706 ], + [ 8.6028437, 46.8877746 ], + [ 8.6029319, 46.8877758 ], + [ 8.6034196, 46.8878009 ], + [ 8.6039039, 46.8878472 ], + [ 8.6043206, 46.887905 ], + [ 8.6045361, 46.8879467 ], + [ 8.60482, 46.8880058 ], + [ 8.6050974, 46.888071 ], + [ 8.6053713, 46.8881428 ], + [ 8.6055369, 46.8881894 ], + [ 8.6059354, 46.8883077 ], + [ 8.6061987, 46.8883907 ], + [ 8.6065951, 46.8885193 ], + [ 8.6066026, 46.8885059 ], + [ 8.6066335, 46.8885162 ], + [ 8.6067023, 46.8885393 ], + [ 8.606753, 46.8885563 ], + [ 8.6067456, 46.8885682 ], + [ 8.607119, 46.8886901 ], + [ 8.6078772, 46.888938 ], + [ 8.6084099, 46.8891117 ], + [ 8.6084329, 46.8891192 ], + [ 8.6097536, 46.8895499 ], + [ 8.610593099999999, 46.8898237 ], + [ 8.6108578, 46.8899108 ], + [ 8.6108586, 46.8899111 ], + [ 8.6111113, 46.8899936 ], + [ 8.6114893, 46.8901173 ], + [ 8.6116788, 46.8901783 ], + [ 8.6120588, 46.8902989 ], + [ 8.6121941, 46.8903402 ], + [ 8.6123301, 46.8903806 ], + [ 8.6124666, 46.8904201 ], + [ 8.6126037, 46.8904586 ], + [ 8.6127413, 46.8904962 ], + [ 8.6128671, 46.8905286 ], + [ 8.6129937, 46.8905596 ], + [ 8.613121, 46.8905892 ], + [ 8.613249, 46.8906173 ], + [ 8.613377700000001, 46.8906439 ], + [ 8.6135377, 46.8906755 ], + [ 8.6136991, 46.8907035 ], + [ 8.6138617, 46.890728 ], + [ 8.6140254, 46.8907487 ], + [ 8.6141958, 46.8907672 ], + [ 8.614197, 46.8907619 ], + [ 8.6143043, 46.8907726 ], + [ 8.614328, 46.8907396 ], + [ 8.6143268, 46.8907385 ], + [ 8.6143171, 46.8907307 ], + [ 8.6142968, 46.8907141 ], + [ 8.6142904, 46.8907103 ], + [ 8.614283799999999, 46.8907068 ], + [ 8.6142768, 46.8907036 ], + [ 8.6142695, 46.8907006 ], + [ 8.6142619, 46.890698 ], + [ 8.6142542, 46.8906957 ], + [ 8.6142462, 46.8906938 ], + [ 8.6142381, 46.8906922 ], + [ 8.6142298, 46.890691 ], + [ 8.6142215, 46.8906901 ], + [ 8.6140548, 46.8906593 ], + [ 8.613925, 46.8906398 ], + [ 8.6136515, 46.8906012 ], + [ 8.6135116, 46.890578 ], + [ 8.613379, 46.8905547 ], + [ 8.613256, 46.8905286 ], + [ 8.6131232, 46.8904992 ], + [ 8.6129986, 46.8904699 ], + [ 8.6128328, 46.8904273 ], + [ 8.6123643, 46.8903052 ], + [ 8.6120951, 46.8902289 ], + [ 8.6118947, 46.8901686 ], + [ 8.6116339, 46.8900878 ], + [ 8.6113894, 46.8900082 ], + [ 8.6111143, 46.8899174 ], + [ 8.6107982, 46.8898187 ], + [ 8.6099748, 46.889549 ], + [ 8.6094694, 46.8893772 ], + [ 8.6092629, 46.8893081 ], + [ 8.6086608, 46.8891117 ], + [ 8.6086485, 46.8891073 ], + [ 8.6086339, 46.8891019 ], + [ 8.6086014, 46.8890905 ], + [ 8.6086553, 46.8890764 ], + [ 8.6088662, 46.8890298 ], + [ 8.609033, 46.8889695 ], + [ 8.6091825, 46.8889156 ], + [ 8.6092773, 46.8888939 ], + [ 8.609552, 46.8888068 ], + [ 8.6097029, 46.8887633 ], + [ 8.6098546, 46.8887326 ], + [ 8.6099518, 46.8886927 ], + [ 8.6100726, 46.8886324 ], + [ 8.6101481, 46.8885791 ], + [ 8.6101968, 46.888511 ], + [ 8.6101076, 46.8884677 ], + [ 8.6100479, 46.8884866 ], + [ 8.6099386, 46.8885424 ], + [ 8.6098433, 46.8885913 ], + [ 8.6097618, 46.888622 ], + [ 8.6096085, 46.8886511 ], + [ 8.6093376, 46.8887354 ], + [ 8.6091288, 46.8887959 ], + [ 8.6089959, 46.8888266 ], + [ 8.608821, 46.8888932 ], + [ 8.6086917, 46.8889238 ], + [ 8.6085922, 46.8889546 ], + [ 8.6084232, 46.8890299 ], + [ 8.6079815, 46.8888924 ], + [ 8.6074544, 46.8887223 ], + [ 8.6069537, 46.8885569 ], + [ 8.6068006, 46.8885155 ], + [ 8.6067707, 46.8885096 ], + [ 8.6070535, 46.8883693 ], + [ 8.6087838, 46.8875334 ], + [ 8.6087929, 46.8875415 ], + [ 8.6088598, 46.8875145 ], + [ 8.6088928, 46.8874911 ], + [ 8.6089213, 46.8874898 ], + [ 8.6089499, 46.8874899 ], + [ 8.6089785, 46.8874913 ], + [ 8.6090068, 46.887494 ], + [ 8.6090348, 46.887498 ], + [ 8.6090623, 46.8875033 ], + [ 8.6090893, 46.8875099 ], + [ 8.6091155, 46.8875177 ], + [ 8.6095157, 46.8876124 ], + [ 8.6097797, 46.8876797 ], + [ 8.6100354, 46.8877439 ], + [ 8.6107783, 46.8879261 ], + [ 8.6112237, 46.8880357 ], + [ 8.611684, 46.8881493 ], + [ 8.6122725, 46.8882969 ], + [ 8.6132019, 46.8885286 ], + [ 8.6144667, 46.8888427 ], + [ 8.6150324, 46.8889879 ], + [ 8.6150633, 46.8889302 ], + [ 8.6143006, 46.8887407 ], + [ 8.6139798, 46.8886609 ], + [ 8.6135737, 46.88856 ], + [ 8.612139299999999, 46.8881989 ], + [ 8.610676699999999, 46.8878373 ], + [ 8.6091807, 46.8874674 ], + [ 8.6093094, 46.8872792 ], + [ 8.6095501, 46.8871691 ], + [ 8.6099069, 46.8869974 ], + [ 8.6102938, 46.8868094 ], + [ 8.6106011, 46.8866555 ], + [ 8.6113176, 46.8863106 ], + [ 8.6114541, 46.8862848 ], + [ 8.6116054, 46.8862281 ], + [ 8.6117973, 46.8861442 ], + [ 8.611892600000001, 46.8861067 ], + [ 8.6119994, 46.8860334 ], + [ 8.6121448, 46.8859189 ], + [ 8.6123136, 46.8858364 ], + [ 8.6126226, 46.8856867 ], + [ 8.6129386, 46.8855325 ], + [ 8.6132785, 46.8853722 ], + [ 8.613571199999999, 46.885225 ], + [ 8.6137444, 46.8851401 ], + [ 8.6140045, 46.8850153 ], + [ 8.6142115, 46.8849129 ], + [ 8.614808, 46.8846247 ], + [ 8.614992, 46.884549 ], + [ 8.6150273, 46.8845225 ], + [ 8.615025, 46.884521 ], + [ 8.6149912, 46.8844982 ], + [ 8.6149659, 46.8844811 ], + [ 8.6149368, 46.8844536 ], + [ 8.6148993, 46.8844282 ], + [ 8.61382, 46.884956 ], + [ 8.612997, 46.8853593 ], + [ 8.6120437, 46.8858241 ], + [ 8.6120663, 46.8858437 ], + [ 8.611489, 46.8861219 ], + [ 8.6108384, 46.8864389 ], + [ 8.6104697, 46.8865528 ], + [ 8.6099595, 46.8868078 ], + [ 8.6096733, 46.8869795 ], + [ 8.6087427, 46.8874373 ], + [ 8.6086981, 46.887414 ], + [ 8.6086977, 46.8874138 ], + [ 8.6086656, 46.8873957 ], + [ 8.6086098, 46.8873676 ], + [ 8.6085561, 46.8873467 ], + [ 8.6085371, 46.8873366 ], + [ 8.6085289, 46.8873302 ], + [ 8.6085203, 46.887319 ], + [ 8.6085123, 46.8873029 ], + [ 8.6084912, 46.8872751 ], + [ 8.6084605, 46.8872519 ], + [ 8.6084287, 46.8872347 ], + [ 8.6084014, 46.8872225 ], + [ 8.608378, 46.8872082 ], + [ 8.6083677, 46.8871983 ], + [ 8.6083627, 46.8871875 ], + [ 8.6083451, 46.8871609 ], + [ 8.6083175, 46.8871355 ], + [ 8.6082842, 46.8871169 ], + [ 8.6082588, 46.8870994 ], + [ 8.6082407, 46.8870832 ], + [ 8.6081657, 46.8870275 ], + [ 8.6081199, 46.8870035 ], + [ 8.6081089, 46.8869955 ], + [ 8.6080936, 46.8869822 ], + [ 8.6080899, 46.8869797 ], + [ 8.6080793, 46.8869724 ], + [ 8.6080574, 46.8869575 ], + [ 8.6080339, 46.8869444 ], + [ 8.6079586, 46.8869206 ], + [ 8.6078802, 46.8868911 ], + [ 8.607781899999999, 46.8868624 ], + [ 8.6077733, 46.8868892 ], + [ 8.6077663, 46.8869097 ], + [ 8.6071972, 46.8868256 ], + [ 8.6069624, 46.886774 ], + [ 8.6065986, 46.8867129 ], + [ 8.6065465, 46.8868872 ], + [ 8.6059947, 46.8868123 ], + [ 8.6060291, 46.8866917 ], + [ 8.6059811, 46.8866719 ], + [ 8.6058728, 46.8866527 ], + [ 8.6056745, 46.8866133 ], + [ 8.6055691, 46.8865877 ], + [ 8.6055453, 46.8865841 ], + [ 8.6055368, 46.8865832 ], + [ 8.6054798, 46.8867474 ], + [ 8.6053458, 46.8871317 ], + [ 8.6052999, 46.8870955 ], + [ 8.6052121, 46.887147 ], + [ 8.6042493, 46.8877111 ], + [ 8.603654, 46.8875823 ], + [ 8.6031582, 46.8875535 ], + [ 8.6030204, 46.8876308 ], + [ 8.6028875, 46.8877053 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "KTUR0-1", + "country" : "CHE", + "name" : [ + { + "text" : "Reussdelta", + "lang" : "de-CH" + }, + { + "text" : "Reussdelta", + "lang" : "fr-CH" + }, + { + "text" : "Reussdelta", + "lang" : "it-CH" + }, + { + "text" : "Reussdelta", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Uri", + "lang" : "de-CH" + }, + { + "text" : "Canton d'Uri", + "lang" : "fr-CH" + }, + { + "text" : "Cantone Uri", + "lang" : "it-CH" + }, + { + "text" : "Canton Uri", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Amt für Raumentwicklung", + "lang" : "de-CH" + }, + { + "text" : "Office du développement territorial", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio per lo sviluppo territoriale", + "lang" : "it-CH" + }, + { + "text" : "Office of Spatial Development", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ur.ch/aemter/847", + "email" : "raumplanung@ur.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.4895847, 47.4278705 ], + [ 8.488260499999999, 47.4288149 ], + [ 8.4860037, 47.4306032 ], + [ 8.4838878, 47.4324691 ], + [ 8.4819186, 47.4344076 ], + [ 8.4801015, 47.4364133 ], + [ 8.4784414, 47.4384808 ], + [ 8.4769429, 47.4406044 ], + [ 8.4756102, 47.4427782 ], + [ 8.474447, 47.4449964 ], + [ 8.4734563, 47.4472528 ], + [ 8.4726411, 47.4495413 ], + [ 8.4720034, 47.4518556 ], + [ 8.4715451, 47.4541894 ], + [ 8.4712675, 47.4565362 ], + [ 8.4711714, 47.4588896 ], + [ 8.471257, 47.4612433 ], + [ 8.4715242, 47.4635907 ], + [ 8.4717097, 47.4645574 ], + [ 8.4713828, 47.4653988 ], + [ 8.470684, 47.4676656 ], + [ 8.4701581, 47.4699537 ], + [ 8.4698066, 47.4722572 ], + [ 8.4696304, 47.4745699 ], + [ 8.46963, 47.4768856 ], + [ 8.4698055, 47.4791983 ], + [ 8.4698594, 47.4795517 ], + [ 8.4697448, 47.481454 ], + [ 8.469785, 47.4838081 ], + [ 8.4700069, 47.4861577 ], + [ 8.47041, 47.4884961 ], + [ 8.470993, 47.490817 ], + [ 8.4717546, 47.4931141 ], + [ 8.4726925, 47.495381 ], + [ 8.4738043, 47.4976115 ], + [ 8.475087, 47.4997995 ], + [ 8.4765369, 47.5019389 ], + [ 8.4781503, 47.504024 ], + [ 8.4799226, 47.506049 ], + [ 8.481849, 47.5080084 ], + [ 8.4839242, 47.5098967 ], + [ 8.4861427, 47.5117088 ], + [ 8.4884982, 47.5134397 ], + [ 8.4909843, 47.5150846 ], + [ 8.4935943, 47.5166391 ], + [ 8.4963209, 47.5180989 ], + [ 8.4991567, 47.5194599 ], + [ 8.5020939, 47.5207184 ], + [ 8.5051245, 47.521871 ], + [ 8.5082401, 47.5229145 ], + [ 8.5114321, 47.523846 ], + [ 8.5146919, 47.524663 ], + [ 8.5180104, 47.5253633 ], + [ 8.5213785, 47.5259448 ], + [ 8.524787, 47.526406 ], + [ 8.5282265, 47.5267457 ], + [ 8.5316876, 47.5269629 ], + [ 8.5351608, 47.527057 ], + [ 8.5386364, 47.5270277 ], + [ 8.5421051, 47.5268752 ], + [ 8.5455571, 47.5265998 ], + [ 8.5489831, 47.5262023 ], + [ 8.5523736, 47.5256839 ], + [ 8.5557193, 47.5250458 ], + [ 8.5590111, 47.5242899 ], + [ 8.5622399, 47.5234183 ], + [ 8.5653967, 47.5224334 ], + [ 8.568473000000001, 47.5213377 ], + [ 8.5714603, 47.5201345 ], + [ 8.5743504, 47.5188269 ], + [ 8.5771354, 47.5174186 ], + [ 8.5798076, 47.5159134 ], + [ 8.5823597, 47.5143154 ], + [ 8.5847847, 47.5126291 ], + [ 8.6131684, 47.4918166 ], + [ 8.6154214, 47.4900757 ], + [ 8.6175065, 47.4882864 ], + [ 8.6197436, 47.4866873 ], + [ 8.6219982, 47.4848965 ], + [ 8.6241114, 47.483028 ], + [ 8.6260772, 47.4810872 ], + [ 8.6278904, 47.4790792 ], + [ 8.6295459, 47.4770096 ], + [ 8.6310393, 47.4748841 ], + [ 8.6323664, 47.4727085 ], + [ 8.6335237, 47.4704887 ], + [ 8.634508, 47.468231 ], + [ 8.6353166, 47.4659413 ], + [ 8.6359473, 47.4636262 ], + [ 8.6363984, 47.4612918 ], + [ 8.6366688, 47.4589446 ], + [ 8.6367576, 47.456591 ], + [ 8.6366646, 47.4542375 ], + [ 8.6363902, 47.4518905 ], + [ 8.6359352, 47.4495564 ], + [ 8.6353007, 47.4472417 ], + [ 8.6344885, 47.4449527 ], + [ 8.633501, 47.4426957 ], + [ 8.6323408, 47.4404768 ], + [ 8.6310111, 47.4383021 ], + [ 8.6295156, 47.4361776 ], + [ 8.6278584, 47.4341091 ], + [ 8.626044, 47.4321022 ], + [ 8.6240775, 47.4301625 ], + [ 8.6219643, 47.4282953 ], + [ 8.61971, 47.4265056 ], + [ 8.617321, 47.4247984 ], + [ 8.6148037, 47.423178300000004 ], + [ 8.6121651, 47.4216498 ], + [ 8.6094125, 47.420217 ], + [ 8.6065532, 47.4188839 ], + [ 8.6035952, 47.4176541 ], + [ 8.6005465, 47.416531 ], + [ 8.5984554, 47.4158542 ], + [ 8.5967526, 47.4148319 ], + [ 8.5940379, 47.4133663 ], + [ 8.5912142, 47.4119992 ], + [ 8.588289, 47.4107342 ], + [ 8.5852704, 47.4095747 ], + [ 8.5821667, 47.408524 ], + [ 8.5789863, 47.407585 ], + [ 8.5757381, 47.4067601 ], + [ 8.5724307, 47.4060517 ], + [ 8.5690734, 47.4054616 ], + [ 8.5656753, 47.4049916 ], + [ 8.5622456, 47.4046428 ], + [ 8.5587937, 47.4044162 ], + [ 8.5553292, 47.4043126 ], + [ 8.5518614, 47.404332 ], + [ 8.5488195, 47.4044573 ], + [ 8.5457417, 47.4044667 ], + [ 8.542336, 47.4045963 ], + [ 8.5389446, 47.4048446 ], + [ 8.5355764, 47.4052111 ], + [ 8.5322405, 47.4056946 ], + [ 8.5289455, 47.4062941 ], + [ 8.5257003, 47.4070077 ], + [ 8.5225135, 47.4078338 ], + [ 8.5193934, 47.4087701 ], + [ 8.5163483, 47.409814 ], + [ 8.5133863, 47.410963 ], + [ 8.5105152, 47.4122138 ], + [ 8.5077426, 47.4135632 ], + [ 8.5050759, 47.4150077 ], + [ 8.5025222, 47.4165434 ], + [ 8.5000881, 47.4181662 ], + [ 8.4977802, 47.4198719 ], + [ 8.4956046, 47.4216559 ], + [ 8.4935671, 47.4235135 ], + [ 8.491673, 47.4254398 ], + [ 8.4899274, 47.427429599999996 ], + [ 8.4895847, 47.4278705 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZH001", + "country" : "CHE", + "name" : [ + { + "text" : "LSZH Zürich", + "lang" : "de-CH" + }, + { + "text" : "LSZH Zürich", + "lang" : "fr-CH" + }, + { + "text" : "LSZH Zürich", + "lang" : "it-CH" + }, + { + "text" : "LSZH Zürich", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Flughafen Zürich AG / Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Flughafen Zürich AG / Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Flughafen Zürich AG / Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Flughafen Zürich AG / Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Skyguide Special Flight Office", + "lang" : "de-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "it-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.skyguide.ch/services/special-flights", + "email" : "drones@zurich-airport.com", + "phone" : "0041438162211", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7482315, 47.4359073 ], + [ 7.7476217, 47.4362267 ], + [ 7.7482755999999995, 47.4365529 ], + [ 7.7489042999999995, 47.4368664 ], + [ 7.7497519, 47.4371687 ], + [ 7.7502313, 47.4374001 ], + [ 7.7511576, 47.4367484 ], + [ 7.7510583, 47.4365695 ], + [ 7.7508481, 47.4363201 ], + [ 7.7504769, 47.4358503 ], + [ 7.7503972999999995, 47.4358038 ], + [ 7.7504001, 47.4356901 ], + [ 7.7503983, 47.435485 ], + [ 7.7504036, 47.435441 ], + [ 7.7504141, 47.4353974 ], + [ 7.7504299, 47.4353546 ], + [ 7.7504508, 47.4353127 ], + [ 7.7504101, 47.4352322 ], + [ 7.749639, 47.4354587 ], + [ 7.7489402, 47.435664 ], + [ 7.7482315, 47.4359073 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns211", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Tanneboden - Allmet", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Tanneboden - Allmet", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Tanneboden - Allmet", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Tanneboden - Allmet", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.9788799, 46.3318675 ], + [ 6.9791647, 46.3312057 ], + [ 6.9784384, 46.3306315 ], + [ 6.9785897, 46.3299511 ], + [ 6.9795481, 46.3290249 ], + [ 6.9794742, 46.328393 ], + [ 6.979324, 46.3281855 ], + [ 6.9787499, 46.3282093 ], + [ 6.9780769, 46.3280932 ], + [ 6.9776448, 46.327907 ], + [ 6.9771046, 46.3275936 ], + [ 6.9766178, 46.3272731 ], + [ 6.9757829000000005, 46.3286317 ], + [ 6.975827, 46.3297095 ], + [ 6.97653, 46.3313281 ], + [ 6.9775231, 46.3318341 ], + [ 6.9788799, 46.3318675 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00001", + "country" : "CHE", + "name" : [ + { + "text" : "Roc de Veyges", + "lang" : "de-CH" + }, + { + "text" : "Roc de Veyges", + "lang" : "fr-CH" + }, + { + "text" : "Roc de Veyges", + "lang" : "it-CH" + }, + { + "text" : "Roc de Veyges", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "startDateTime" : "2025-01-01T00:00:00+01:00", + "endDateTime" : "2025-06-01T00:00:00+02:00" + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Generaldirektion für Umwelt", + "lang" : "de-CH" + }, + { + "text" : "Direction générale de l'environnement", + "lang" : "fr-CH" + }, + { + "text" : "Direzione generale dell'Ambiente", + "lang" : "it-CH" + }, + { + "text" : "Environment Department", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.dge@vd.ch", + "phone" : "0041213164422", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.5145328, 47.1731044 ], + [ 8.5145245, 47.1729632 ], + [ 8.514505400000001, 47.1728226 ], + [ 8.5144756, 47.1726828 ], + [ 8.514435, 47.1725442 ], + [ 8.5143839, 47.1724073 ], + [ 8.5143224, 47.1722724 ], + [ 8.5142505, 47.1721399 ], + [ 8.5141686, 47.1720101 ], + [ 8.5140769, 47.1718835 ], + [ 8.5139756, 47.1717603 ], + [ 8.5138649, 47.1716408 ], + [ 8.5137452, 47.1715255 ], + [ 8.5136169, 47.1714146 ], + [ 8.5134802, 47.1713085 ], + [ 8.5133355, 47.1712073 ], + [ 8.5131833, 47.1711115 ], + [ 8.513024, 47.1710212 ], + [ 8.5128579, 47.1709368 ], + [ 8.5126856, 47.1708583 ], + [ 8.5125075, 47.1707862 ], + [ 8.5123241, 47.1707205 ], + [ 8.5121359, 47.1706614 ], + [ 8.5119434, 47.1706091 ], + [ 8.5117472, 47.1705638 ], + [ 8.5115478, 47.1705255 ], + [ 8.5113457, 47.1704944 ], + [ 8.5111415, 47.1704706 ], + [ 8.5109358, 47.1704541 ], + [ 8.510729, 47.1704449 ], + [ 8.5105219, 47.1704431 ], + [ 8.510314900000001, 47.1704488 ], + [ 8.5101086, 47.1704618 ], + [ 8.5099036, 47.1704821 ], + [ 8.5097004, 47.1705098 ], + [ 8.5094997, 47.1705446 ], + [ 8.5093018, 47.1705866 ], + [ 8.5091075, 47.1706356 ], + [ 8.508917199999999, 47.1706914 ], + [ 8.5087315, 47.170754 ], + [ 8.5085508, 47.170823 ], + [ 8.5083756, 47.1708985 ], + [ 8.5082065, 47.1709801 ], + [ 8.5080439, 47.1710676 ], + [ 8.5078882, 47.1711608 ], + [ 8.5077399, 47.1712595 ], + [ 8.5075994, 47.1713633 ], + [ 8.507467, 47.1714719 ], + [ 8.5073431, 47.1715852 ], + [ 8.5072281, 47.1717027 ], + [ 8.5071223, 47.1718241 ], + [ 8.5070259, 47.1719492 ], + [ 8.506939299999999, 47.1720775 ], + [ 8.5068626, 47.1722088 ], + [ 8.5067961, 47.1723425 ], + [ 8.50674, 47.1724785 ], + [ 8.5066944, 47.1726163 ], + [ 8.5066594, 47.1727556 ], + [ 8.5066351, 47.1728959 ], + [ 8.5066217, 47.1730369 ], + [ 8.5066191, 47.1731781 ], + [ 8.5066273, 47.1733193 ], + [ 8.5066464, 47.17346 ], + [ 8.5066762, 47.1735998 ], + [ 8.5067167, 47.1737383 ], + [ 8.5067679, 47.1738752 ], + [ 8.5068294, 47.1740101 ], + [ 8.5069012, 47.1741426 ], + [ 8.5069831, 47.1742724 ], + [ 8.5070748, 47.1743991 ], + [ 8.5071761, 47.1745223 ], + [ 8.5072868, 47.1746417 ], + [ 8.5074065, 47.1747571 ], + [ 8.5075348, 47.174868 ], + [ 8.5076715, 47.1749741 ], + [ 8.5078161, 47.1750753 ], + [ 8.5079684, 47.1751711 ], + [ 8.5081277, 47.1752614 ], + [ 8.5082938, 47.1753459 ], + [ 8.5084661, 47.1754243 ], + [ 8.508644199999999, 47.1754964 ], + [ 8.5088276, 47.1755622 ], + [ 8.5090159, 47.1756212 ], + [ 8.5092083, 47.1756735 ], + [ 8.5094046, 47.1757188 ], + [ 8.509604, 47.1757571 ], + [ 8.5098061, 47.1757882 ], + [ 8.5100103, 47.1758121 ], + [ 8.5102161, 47.1758286 ], + [ 8.5104228, 47.1758377 ], + [ 8.51063, 47.1758395 ], + [ 8.510837, 47.1758339 ], + [ 8.5110433, 47.1758209 ], + [ 8.5112484, 47.1758005 ], + [ 8.5114515, 47.1757729 ], + [ 8.5116523, 47.175738 ], + [ 8.5118502, 47.1756961 ], + [ 8.5120445, 47.1756471 ], + [ 8.5122348, 47.1755912 ], + [ 8.5124206, 47.1755287 ], + [ 8.5126013, 47.1754596 ], + [ 8.5127764, 47.1753841 ], + [ 8.5129456, 47.1753025 ], + [ 8.5131082, 47.175215 ], + [ 8.5132639, 47.1751218 ], + [ 8.5134122, 47.1750231 ], + [ 8.5135527, 47.1749193 ], + [ 8.5136851, 47.1748107 ], + [ 8.513809, 47.1746974 ], + [ 8.513924, 47.1745799 ], + [ 8.5140298, 47.1744584 ], + [ 8.5141261, 47.1743334 ], + [ 8.5142128, 47.174205 ], + [ 8.5142894, 47.1740738 ], + [ 8.5143559, 47.17394 ], + [ 8.514412, 47.173804 ], + [ 8.5144576, 47.1736662 ], + [ 8.5144926, 47.1735269 ], + [ 8.514516799999999, 47.1733866 ], + [ 8.5145302, 47.1732457 ], + [ 8.5145328, 47.1731044 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "ZUG0001", + "country" : "CHE", + "name" : [ + { + "text" : "Kantonale Strafanstalt Zug", + "lang" : "de-CH" + }, + { + "text" : "Kantonale Strafanstalt Zug", + "lang" : "fr-CH" + }, + { + "text" : "Kantonale Strafanstalt Zug", + "lang" : "it-CH" + }, + { + "text" : "Kantonale Strafanstalt Zug", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Justizvollzug des Kantons Zug", + "lang" : "de-CH" + }, + { + "text" : "Amt für Justizvollzug des Kantons Zug", + "lang" : "fr-CH" + }, + { + "text" : "Amt für Justizvollzug des Kantons Zug", + "lang" : "it-CH" + }, + { + "text" : "Amt für Justizvollzug des Kantons Zug", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Kantonale Strafanstalt Zug", + "lang" : "de-CH" + }, + { + "text" : "Kantonale Strafanstalt Zug", + "lang" : "fr-CH" + }, + { + "text" : "Kantonale Strafanstalt Zug", + "lang" : "it-CH" + }, + { + "text" : "Kantonale Strafanstalt Zug", + "lang" : "en-GB" + } + ], + "siteURL" : "https://zg.ch/de/sicherheitsdirektion/amt-fuer-justizvollzug/strafanstalt-zug", + "email" : "strafanstalt@zg.ch", + "phone" : "0041417236000", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.1156468, 46.3813637 ], + [ 7.1162943, 46.3837305 ], + [ 7.1188829, 46.3860722 ], + [ 7.1182135, 46.3873666 ], + [ 7.1182973, 46.388145 ], + [ 7.119609, 46.389919 ], + [ 7.1198938, 46.3903318 ], + [ 7.1204158, 46.391554 ], + [ 7.120811, 46.3917683 ], + [ 7.121406, 46.3918465 ], + [ 7.1224028, 46.3910253 ], + [ 7.1230672, 46.3905692 ], + [ 7.1239526, 46.3900985 ], + [ 7.1245938, 46.3896128 ], + [ 7.1255927, 46.3886233 ], + [ 7.1260591, 46.3879994 ], + [ 7.1259522, 46.3873883 ], + [ 7.124811, 46.386455 ], + [ 7.1231641, 46.3853214 ], + [ 7.1209441, 46.3841548 ], + [ 7.1204418, 46.3833752 ], + [ 7.1194097, 46.3827012 ], + [ 7.1156468, 46.3813637 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00052", + "country" : "CHE", + "name" : [ + { + "text" : "Lioson", + "lang" : "de-CH" + }, + { + "text" : "Lioson", + "lang" : "fr-CH" + }, + { + "text" : "Lioson", + "lang" : "it-CH" + }, + { + "text" : "Lioson", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "startDateTime" : "2024-11-15T00:00:00+01:00", + "endDateTime" : "2025-04-15T00:00:00+02:00" + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Generaldirektion für Umwelt", + "lang" : "de-CH" + }, + { + "text" : "Direction générale de l'environnement", + "lang" : "fr-CH" + }, + { + "text" : "Direzione generale dell'Ambiente", + "lang" : "it-CH" + }, + { + "text" : "Environment Department", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.dge@vd.ch", + "phone" : "0041213164422", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8514163, 47.4754501 ], + [ 7.8513737, 47.4756227 ], + [ 7.8513359, 47.475781 ], + [ 7.8512988, 47.4759122 ], + [ 7.8512332, 47.4760784 ], + [ 7.8511464, 47.4762277 ], + [ 7.851142, 47.4763089 ], + [ 7.8511600999999995, 47.4763477 ], + [ 7.8511913, 47.4764035 ], + [ 7.8511944, 47.4763978 ], + [ 7.8512004, 47.476378 ], + [ 7.8511945999999995, 47.476307 ], + [ 7.8514655, 47.476311 ], + [ 7.8518115, 47.4763181 ], + [ 7.8523027, 47.4763252 ], + [ 7.8522762, 47.47627 ], + [ 7.8520592, 47.4757911 ], + [ 7.8519697, 47.4755932 ], + [ 7.8519583, 47.4755543 ], + [ 7.8514163, 47.4754501 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns166", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Warteckweiher", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Warteckweiher", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Warteckweiher", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Warteckweiher", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8767261, 47.3997775 ], + [ 7.8765903999999995, 47.3997371 ], + [ 7.8764645, 47.3997107 ], + [ 7.8763551, 47.3997158 ], + [ 7.8762273, 47.3997464 ], + [ 7.8760948, 47.3997737 ], + [ 7.8760042, 47.3997962 ], + [ 7.8759391, 47.3998091 ], + [ 7.8758391, 47.3998174 ], + [ 7.8757157, 47.3998163 ], + [ 7.8755992, 47.3998072 ], + [ 7.875471, 47.3997935 ], + [ 7.8753497, 47.3997655 ], + [ 7.8751305, 47.3997189 ], + [ 7.8749766999999995, 47.3997068 ], + [ 7.8748579, 47.3997041 ], + [ 7.8746577, 47.3997049 ], + [ 7.8744506, 47.399712 ], + [ 7.8742947, 47.3997284 ], + [ 7.8741321, 47.3997685 ], + [ 7.8740067, 47.3998196 ], + [ 7.8738510999999995, 47.3998565 ], + [ 7.8737186, 47.3998839 ], + [ 7.8735906, 47.399897 ], + [ 7.8734999, 47.39991 ], + [ 7.8733955, 47.3999452 ], + [ 7.8733051, 47.3999961 ], + [ 7.8731915, 47.4000534 ], + [ 7.8731451, 47.4000757 ], + [ 7.8729302, 47.4001623 ], + [ 7.872559, 47.4002445 ], + [ 7.8721437, 47.4003874 ], + [ 7.8719216, 47.4004994 ], + [ 7.8717149, 47.400692 ], + [ 7.8716416, 47.4008236 ], + [ 7.8715086, 47.4009352 ], + [ 7.8713163999999995, 47.4010773 ], + [ 7.8712732, 47.4012491 ], + [ 7.8713638, 47.4014104 ], + [ 7.871439, 47.4015212 ], + [ 7.8716925, 47.4015909 ], + [ 7.8720349, 47.40163 ], + [ 7.872318, 47.4016895 ], + [ 7.8725422, 47.4018301 ], + [ 7.8727818, 47.4020211 ], + [ 7.8730354, 47.402111 ], + [ 7.8733785, 47.4021418 ], + [ 7.8733853, 47.4021252 ], + [ 7.8735971, 47.4021101 ], + [ 7.8739275, 47.4020852 ], + [ 7.8742044, 47.4020683 ], + [ 7.8744163, 47.402066 ], + [ 7.8745397, 47.4020702 ], + [ 7.8747471, 47.4020868 ], + [ 7.8749381, 47.4021019 ], + [ 7.8751245999999995, 47.4021202 ], + [ 7.8753297, 47.4021495 ], + [ 7.8754836, 47.4021742 ], + [ 7.8756909, 47.4021892 ], + [ 7.8758446, 47.4021981 ], + [ 7.8759239, 47.4022041 ], + [ 7.8760334, 47.4022164 ], + [ 7.8761616, 47.402238 ], + [ 7.8763645, 47.402271999999996 ], + [ 7.8766862, 47.4023245 ], + [ 7.8767866, 47.4023605 ], + [ 7.8768895, 47.4024091 ], + [ 7.8769324, 47.4024362 ], + [ 7.877321, 47.4023046 ], + [ 7.8780888000000004, 47.4020432 ], + [ 7.8782939, 47.4019749 ], + [ 7.8789955, 47.4018555 ], + [ 7.8796112, 47.4017538 ], + [ 7.8798083, 47.4017207 ], + [ 7.8777096, 47.4012589 ], + [ 7.8776837, 47.4012196 ], + [ 7.8776472, 47.4011662 ], + [ 7.8776294, 47.4011401 ], + [ 7.8775379, 47.4009981 ], + [ 7.8774852, 47.400918 ], + [ 7.8772579, 47.4005763 ], + [ 7.8769046, 47.4000448 ], + [ 7.8767261, 47.3997775 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr023", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Vorderer Wisenberg", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Vorderer Wisenberg", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Vorderer Wisenberg", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Vorderer Wisenberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.218549, 46.4429006 ], + [ 6.2182936, 46.4429036 ], + [ 6.218039, 46.4429182 ], + [ 6.2177863, 46.4429443 ], + [ 6.2175367, 46.4429817 ], + [ 6.2172911, 46.4430303 ], + [ 6.2170506, 46.4430899 ], + [ 6.2168163, 46.4431603 ], + [ 6.2165891, 46.4432411 ], + [ 6.2163701, 46.443332 ], + [ 6.2161602, 46.4434326 ], + [ 6.2159602, 46.4435425 ], + [ 6.215771, 46.4436612 ], + [ 6.2155935, 46.4437882 ], + [ 6.2154284, 46.4439229 ], + [ 6.2152763, 46.4440649 ], + [ 6.2151381, 46.4442133 ], + [ 6.2150141, 46.4443678 ], + [ 6.2149051, 46.4445275 ], + [ 6.2148114, 46.4446918 ], + [ 6.2147334, 46.4448599 ], + [ 6.2146715, 46.4450313 ], + [ 6.214626, 46.445205 ], + [ 6.2146066, 46.44531 ], + [ 6.2145937, 46.4453927 ], + [ 6.2145841, 46.4454632 ], + [ 6.2145717, 46.4456396 ], + [ 6.2145761, 46.4458161 ], + [ 6.2145971, 46.4459921 ], + [ 6.2146348, 46.4461668 ], + [ 6.2146889, 46.4463394 ], + [ 6.2147593, 46.4465092 ], + [ 6.2148455, 46.4466754 ], + [ 6.2149473, 46.4468374 ], + [ 6.2150642, 46.4469944 ], + [ 6.2151957, 46.4471458 ], + [ 6.2153413, 46.4472909 ], + [ 6.2155003, 46.4474292 ], + [ 6.215672, 46.4475599 ], + [ 6.2158557, 46.4476827 ], + [ 6.2160506, 46.4477968 ], + [ 6.2162559, 46.4479019 ], + [ 6.2164708, 46.4479975 ], + [ 6.2166942, 46.4480831 ], + [ 6.2169252, 46.4481585 ], + [ 6.2171629, 46.4482233 ], + [ 6.2174062, 46.4482772 ], + [ 6.2176541, 46.44832 ], + [ 6.2179055, 46.4483515 ], + [ 6.2179998, 46.4483603 ], + [ 6.2181187, 46.4483703 ], + [ 6.2182783, 46.4483816 ], + [ 6.2185334, 46.4483901 ], + [ 6.2187889, 46.4483871 ], + [ 6.2190435, 46.4483725 ], + [ 6.2192962, 46.4483465 ], + [ 6.2195459, 46.448309 ], + [ 6.2197915, 46.4482604 ], + [ 6.220032, 46.4482008 ], + [ 6.2202663, 46.4481304 ], + [ 6.2204935, 46.4480496 ], + [ 6.2207125, 46.4479587 ], + [ 6.2209225, 46.4478581 ], + [ 6.2211225, 46.4477482 ], + [ 6.2213116, 46.4476295 ], + [ 6.2214892, 46.4475025 ], + [ 6.2216543, 46.4473677 ], + [ 6.2218063, 46.4472258 ], + [ 6.2219446, 46.4470773 ], + [ 6.2220685, 46.4469228 ], + [ 6.2221775, 46.4467631 ], + [ 6.2222712, 46.4465988 ], + [ 6.2223492, 46.4464307 ], + [ 6.222411, 46.4462593 ], + [ 6.2224566, 46.4460856 ], + [ 6.2224693, 46.4460204 ], + [ 6.2224842, 46.4459361 ], + [ 6.2225005, 46.4458258 ], + [ 6.2225128, 46.4456494 ], + [ 6.2225084, 46.4454729 ], + [ 6.2224873, 46.4452969 ], + [ 6.2224496, 46.4451222 ], + [ 6.2223955, 46.4449496 ], + [ 6.2223251, 46.4447799 ], + [ 6.2222389, 46.4446136 ], + [ 6.2221371, 46.4444517 ], + [ 6.2220201, 46.4442947 ], + [ 6.2218886, 46.4441433 ], + [ 6.2217431, 46.4439981 ], + [ 6.2215841, 46.4438599 ], + [ 6.2214124, 46.4437292 ], + [ 6.2212286, 46.4436064 ], + [ 6.2210336999999996, 46.4434923 ], + [ 6.2208284, 46.4433872 ], + [ 6.2206136, 46.4432916 ], + [ 6.2203902, 46.443206 ], + [ 6.2201592, 46.4431306 ], + [ 6.2199215, 46.4430658 ], + [ 6.2196782, 46.443012 ], + [ 6.2194304, 46.4429692 ], + [ 6.219179, 46.4429377 ], + [ 6.219005, 46.4429227 ], + [ 6.218884, 46.4429142 ], + [ 6.2188042, 46.4429091 ], + [ 6.218549, 46.4429006 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00038", + "country" : "CHE", + "name" : [ + { + "text" : "Clinique de Genolier", + "lang" : "de-CH" + }, + { + "text" : "Clinique de Genolier", + "lang" : "fr-CH" + }, + { + "text" : "Clinique de Genolier", + "lang" : "it-CH" + }, + { + "text" : "Clinique de Genolier", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kantonspolizei Waadt", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale vaudoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Vaud", + "lang" : "it-CH" + }, + { + "text" : "Vaud Cantonal Police", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.pcv@vd.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.6316729, 47.0001108 ], + [ 8.6316644, 46.9999696 ], + [ 8.6316451, 46.999829 ], + [ 8.631615, 46.9996892 ], + [ 8.6315743, 46.9995507 ], + [ 8.631523, 46.9994138 ], + [ 8.6314614, 46.999279 ], + [ 8.6313895, 46.9991466 ], + [ 8.6313076, 46.9990169 ], + [ 8.6312158, 46.9988903 ], + [ 8.6311146, 46.9987672 ], + [ 8.631004, 46.9986479 ], + [ 8.6308845, 46.9985326 ], + [ 8.6307563, 46.9984219 ], + [ 8.6306198, 46.9983159 ], + [ 8.6304754, 46.9982149 ], + [ 8.6303235, 46.9981192 ], + [ 8.6301644, 46.9980291 ], + [ 8.6299987, 46.9979448 ], + [ 8.6298268, 46.9978665 ], + [ 8.6296491, 46.9977946 ], + [ 8.6294661, 46.997729 ], + [ 8.6292784, 46.9976702 ], + [ 8.6290865, 46.9976181 ], + [ 8.6288908, 46.9975729 ], + [ 8.6286919, 46.9975349 ], + [ 8.6284904, 46.997504 ], + [ 8.6282868, 46.9974803 ], + [ 8.6280817, 46.997464 ], + [ 8.6278757, 46.9974551 ], + [ 8.6276692, 46.9974535 ], + [ 8.6274628, 46.9974594 ], + [ 8.6272573, 46.9974726 ], + [ 8.627053, 46.9974931 ], + [ 8.6268505, 46.997521 ], + [ 8.6266505, 46.997556 ], + [ 8.626453399999999, 46.9975982 ], + [ 8.6262598, 46.9976474 ], + [ 8.626070200000001, 46.9977034 ], + [ 8.625885199999999, 46.9977662 ], + [ 8.6257053, 46.9978354 ], + [ 8.6255308, 46.9979111 ], + [ 8.6253625, 46.9979929 ], + [ 8.6252006, 46.9980805 ], + [ 8.6250456, 46.9981739 ], + [ 8.624898, 46.9982727 ], + [ 8.6247581, 46.9983766 ], + [ 8.6246264, 46.9984854 ], + [ 8.6245031, 46.9985988 ], + [ 8.6243888, 46.9987164 ], + [ 8.6242835, 46.998838 ], + [ 8.6241878, 46.9989632 ], + [ 8.6241017, 46.9990916 ], + [ 8.6240256, 46.9992229 ], + [ 8.6239596, 46.9993568 ], + [ 8.6239039, 46.9994928 ], + [ 8.6238587, 46.9996307 ], + [ 8.6238242, 46.99977 ], + [ 8.6238003, 46.9999103 ], + [ 8.6237872, 47.0000513 ], + [ 8.6237849, 47.0001926 ], + [ 8.6237935, 47.0003337 ], + [ 8.6238128, 47.0004744 ], + [ 8.6238428, 47.0006142 ], + [ 8.6238835, 47.0007527 ], + [ 8.6239348, 47.0008895 ], + [ 8.6239964, 47.0010244 ], + [ 8.6240683, 47.0011568 ], + [ 8.6241502, 47.0012865 ], + [ 8.6242419, 47.0014131 ], + [ 8.6243431, 47.0015362 ], + [ 8.6244537, 47.0016556 ], + [ 8.6245732, 47.0017708 ], + [ 8.6247014, 47.0018815 ], + [ 8.6248379, 47.0019876 ], + [ 8.6249823, 47.0020886 ], + [ 8.6251342, 47.0021842 ], + [ 8.6252933, 47.0022744 ], + [ 8.625459, 47.0023587 ], + [ 8.6256309, 47.0024369 ], + [ 8.6258086, 47.0025089 ], + [ 8.6259916, 47.0025744 ], + [ 8.6261793, 47.0026333 ], + [ 8.6263713, 47.0026854 ], + [ 8.626567, 47.0027305 ], + [ 8.6267658, 47.0027686 ], + [ 8.6269674, 47.0027995 ], + [ 8.627171, 47.0028231 ], + [ 8.6273761, 47.0028395 ], + [ 8.627582199999999, 47.0028484 ], + [ 8.6277887, 47.00285 ], + [ 8.6279951, 47.0028441 ], + [ 8.6282007, 47.0028309 ], + [ 8.628405, 47.0028104 ], + [ 8.6286075, 47.0027825 ], + [ 8.6288075, 47.0027474 ], + [ 8.6290046, 47.0027053 ], + [ 8.6291982, 47.0026561 ], + [ 8.6293878, 47.0026001 ], + [ 8.6295728, 47.0025373 ], + [ 8.6297528, 47.002468 ], + [ 8.629927200000001, 47.0023924 ], + [ 8.6300956, 47.0023106 ], + [ 8.6302575, 47.0022229 ], + [ 8.6304125, 47.0021295 ], + [ 8.6305601, 47.0020307 ], + [ 8.630700000000001, 47.0019268 ], + [ 8.6308317, 47.001818 ], + [ 8.6309549, 47.0017046 ], + [ 8.6310693, 47.001587 ], + [ 8.6311745, 47.0014654 ], + [ 8.6312703, 47.0013402 ], + [ 8.6313563, 47.0012118 ], + [ 8.6314325, 47.0010805 ], + [ 8.6314984, 47.0009466 ], + [ 8.6315541, 47.0008105 ], + [ 8.6315992, 47.0006727 ], + [ 8.6316338, 47.0005334 ], + [ 8.6316576, 47.0003931 ], + [ 8.6316707, 47.0002521 ], + [ 8.6316729, 47.0001108 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0055", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Ingenbohl", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Ingenbohl", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Ingenbohl", + "lang" : "it-CH" + }, + { + "text" : "Substation Ingenbohl", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 10.3363557, 46.8050195 ], + [ 10.3363427, 46.8048785 ], + [ 10.336319, 46.8047382 ], + [ 10.3362847, 46.8045989 ], + [ 10.3362397, 46.804461 ], + [ 10.3361843, 46.804325 ], + [ 10.3361186, 46.8041911 ], + [ 10.3360428, 46.8040597 ], + [ 10.3359571, 46.8039313 ], + [ 10.3358618, 46.8038061 ], + [ 10.335757, 46.8036845 ], + [ 10.3356431, 46.8035669 ], + [ 10.3355203, 46.8034535 ], + [ 10.3353891, 46.8033446 ], + [ 10.3352498, 46.8032406 ], + [ 10.3351028, 46.8031418 ], + [ 10.3349484, 46.8030484 ], + [ 10.3347871, 46.8029607 ], + [ 10.3346194, 46.8028789 ], + [ 10.3344456, 46.8028032 ], + [ 10.3342664, 46.8027339 ], + [ 10.334082, 46.8026711 ], + [ 10.3338932, 46.802615 ], + [ 10.3337003, 46.802565799999996 ], + [ 10.333504, 46.8025236 ], + [ 10.3333047, 46.8024885 ], + [ 10.333103, 46.8024606 ], + [ 10.3328994, 46.80244 ], + [ 10.3326946, 46.8024267 ], + [ 10.332489, 46.8024208 ], + [ 10.3322833, 46.8024224 ], + [ 10.3320779, 46.8024313 ], + [ 10.3318736, 46.8024475 ], + [ 10.3316707, 46.8024711 ], + [ 10.3314699, 46.802502 ], + [ 10.3312718, 46.80254 ], + [ 10.3310768, 46.8025851 ], + [ 10.3308855, 46.8026371 ], + [ 10.3306984, 46.802696 ], + [ 10.3305161, 46.8027615 ], + [ 10.330339, 46.8028334 ], + [ 10.3301677, 46.8029116 ], + [ 10.330002499999999, 46.8029959 ], + [ 10.329844, 46.803086 ], + [ 10.3296926, 46.8031816 ], + [ 10.3295487, 46.8032826 ], + [ 10.3294127, 46.8033886 ], + [ 10.3292849, 46.8034993 ], + [ 10.3291657, 46.8036145 ], + [ 10.3290555, 46.8037338 ], + [ 10.3289545, 46.8038569 ], + [ 10.3288631, 46.8039835 ], + [ 10.3287814, 46.8041131 ], + [ 10.3287097, 46.8042456 ], + [ 10.3286482, 46.8043804 ], + [ 10.3285971, 46.8045172 ], + [ 10.3285565, 46.8046557 ], + [ 10.3285264, 46.8047955 ], + [ 10.3285071, 46.8049362 ], + [ 10.3284985, 46.8050773 ], + [ 10.3285007, 46.8052186 ], + [ 10.3285137, 46.8053596 ], + [ 10.3285374, 46.8055 ], + [ 10.3285717, 46.8056393 ], + [ 10.3286167, 46.8057771 ], + [ 10.328672, 46.8059132 ], + [ 10.3287377, 46.8060471 ], + [ 10.3288135, 46.8061784 ], + [ 10.3288992, 46.8063069 ], + [ 10.3289945, 46.8064321 ], + [ 10.3290993, 46.8065537 ], + [ 10.3292132, 46.8066713 ], + [ 10.3293359, 46.8067848 ], + [ 10.3294671, 46.8068936 ], + [ 10.3296064, 46.8069976 ], + [ 10.3297535, 46.8070964 ], + [ 10.3299079, 46.8071898 ], + [ 10.3300691, 46.8072776 ], + [ 10.3302369, 46.8073594 ], + [ 10.3304106, 46.807435 ], + [ 10.3305899, 46.8075044 ], + [ 10.3307743, 46.8075672 ], + [ 10.3309631, 46.8076233 ], + [ 10.331156, 46.8076725 ], + [ 10.3313524, 46.8077147 ], + [ 10.3315517, 46.8077498 ], + [ 10.3317534, 46.8077777 ], + [ 10.331957, 46.8077983 ], + [ 10.3321618, 46.8078116 ], + [ 10.3323674, 46.8078174 ], + [ 10.3325732, 46.8078159 ], + [ 10.3327786, 46.807807 ], + [ 10.332983, 46.8077908 ], + [ 10.3331858, 46.8077672 ], + [ 10.3333866, 46.8077363 ], + [ 10.3335848, 46.8076983 ], + [ 10.3337798, 46.8076532 ], + [ 10.3339711, 46.8076011 ], + [ 10.3341582, 46.8075423 ], + [ 10.3343405, 46.8074768 ], + [ 10.3345176, 46.8074048 ], + [ 10.334689, 46.8073266 ], + [ 10.3348541, 46.8072424 ], + [ 10.3350126, 46.8071523 ], + [ 10.335164, 46.8070566 ], + [ 10.335308, 46.8069556 ], + [ 10.335444, 46.8068496 ], + [ 10.3355718, 46.8067389 ], + [ 10.3356909, 46.8066237 ], + [ 10.3358011, 46.8065044 ], + [ 10.3359021, 46.8063813 ], + [ 10.3359935, 46.8062547 ], + [ 10.3360752, 46.806125 ], + [ 10.3361469, 46.8059926 ], + [ 10.3362083, 46.8058578 ], + [ 10.3362595, 46.8057209 ], + [ 10.3363001, 46.8055824 ], + [ 10.3363301, 46.8054426 ], + [ 10.3363494, 46.805302 ], + [ 10.3363579, 46.8051608 ], + [ 10.3363557, 46.8050195 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0092", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Pradella B", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Pradella B", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Pradella B", + "lang" : "it-CH" + }, + { + "text" : "Substation Pradella B", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.1040382, 46.7230408 ], + [ 8.1039941, 46.722843 ], + [ 8.1039394, 46.7227183 ], + [ 8.1038114, 46.7226155 ], + [ 8.1036487, 46.7225462 ], + [ 8.1034787, 46.7224824 ], + [ 8.103357, 46.7224304 ], + [ 8.1031629, 46.722338 ], + [ 8.103026, 46.7222409 ], + [ 8.1028236, 46.7221316 ], + [ 8.1026857, 46.7220906 ], + [ 8.1024968, 46.7220886 ], + [ 8.1022195, 46.7220744 ], + [ 8.1019817, 46.7220832 ], + [ 8.1016715, 46.7220517 ], + [ 8.1014427, 46.7219986 ], + [ 8.1013217, 46.7219296 ], + [ 8.1011523, 46.7218489 ], + [ 8.1009978, 46.7217853 ], + [ 8.1008598, 46.7217331 ], + [ 8.1007219, 46.7216922 ], + [ 8.1005517, 46.7216114 ], + [ 8.1000134, 46.7211772 ], + [ 8.0998127, 46.7210117 ], + [ 8.0995618, 46.7208906 ], + [ 8.0993769, 46.7207421 ], + [ 8.0992346, 46.7205376 ], + [ 8.0991723, 46.7203903 ], + [ 8.0990523, 46.7202763 ], + [ 8.0987752, 46.7198788 ], + [ 8.0986424, 46.7195842 ], + [ 8.0985655, 46.7193806 ], + [ 8.0984951, 46.7192389 ], + [ 8.0984074, 46.7191478 ], + [ 8.0983883, 46.7189276 ], + [ 8.0983303, 46.7185944 ], + [ 8.0982712, 46.718312 ], + [ 8.0981438, 46.7181866 ], + [ 8.0979649, 46.7181283 ], + [ 8.0978677, 46.718071 ], + [ 8.097822, 46.7179464 ], + [ 8.0977345, 46.7178102 ], + [ 8.0975983, 46.7177016 ], + [ 8.0971718, 46.7173871 ], + [ 8.0969347, 46.7173845 ], + [ 8.0968866, 46.7173276 ], + [ 8.0969135, 46.717249 ], + [ 8.0970214, 46.7171825 ], + [ 8.0977388, 46.7166208 ], + [ 8.1085097, 46.7181273 ], + [ 8.1126137, 46.7151999 ], + [ 8.1129284, 46.7125874 ], + [ 8.1129823, 46.7123907 ], + [ 8.1312458, 46.7084034 ], + [ 8.1404242, 46.7176022 ], + [ 8.1403805, 46.7177595 ], + [ 8.140302, 46.7179448 ], + [ 8.1402498, 46.7180851 ], + [ 8.1402054, 46.7182538 ], + [ 8.1401935, 46.7184003 ], + [ 8.1402553, 46.71857 ], + [ 8.1402914, 46.7187621 ], + [ 8.1403375, 46.7189147 ], + [ 8.140302, 46.7190159 ], + [ 8.1402673, 46.7191114 ], + [ 8.1403046, 46.7192752 ], + [ 8.1403177, 46.719405 ], + [ 8.1402646, 46.719596 ], + [ 8.1402205, 46.7197197 ], + [ 8.1402748, 46.7198781 ], + [ 8.1403703, 46.7199917 ], + [ 8.1404712, 46.720207 ], + [ 8.1407675, 46.720165 ], + [ 8.1409713, 46.7201896 ], + [ 8.1412079, 46.7202145 ], + [ 8.1415107, 46.7202402 ], + [ 8.141893, 46.7203399 ], + [ 8.1421123, 46.7204154 ], + [ 8.1422679, 46.720434 ], + [ 8.1423588, 46.7203897 ], + [ 8.1424813, 46.7203798 ], + [ 8.1426211, 46.7203756 ], + [ 8.142818, 46.7203662 ], + [ 8.1429476, 46.7204014 ], + [ 8.143145, 46.7203697 ], + [ 8.1433342, 46.7203321 ], + [ 8.1435966, 46.7203292 ], + [ 8.1437426, 46.7203644 ], + [ 8.143938, 46.7204284 ], + [ 8.1441167, 46.7204698 ], + [ 8.1443143, 46.7204492 ], + [ 8.1444225, 46.7203432 ], + [ 8.1444906, 46.7202424 ], + [ 8.1448167, 46.7202909 ], + [ 8.1451685, 46.7203171 ], + [ 8.1456895, 46.7204576 ], + [ 8.1458035, 46.720487 ], + [ 8.1459499, 46.7204941 ], + [ 8.1461072, 46.7204507 ], + [ 8.1463209, 46.7204134 ], + [ 8.1465647, 46.7204948 ], + [ 8.146727, 46.7205245 ], + [ 8.1469316, 46.7205379 ], + [ 8.1471781, 46.7205123 ], + [ 8.1473917, 46.7204638 ], + [ 8.1476066, 46.7203926 ], + [ 8.1479047, 46.720249 ], + [ 8.1481514, 46.7201727 ], + [ 8.1483658, 46.7201298 ], + [ 8.1486197, 46.7200985 ], + [ 8.1488574, 46.720084 ], + [ 8.1490302, 46.7200463 ], + [ 8.1493019, 46.720004 ], + [ 8.1495484, 46.7199727 ], + [ 8.149737, 46.7199577 ], + [ 8.1499418, 46.719926 ], + [ 8.1501392, 46.7198941 ], + [ 8.1503349, 46.7199187 ], + [ 8.1505051, 46.7199937 ], + [ 8.1507507, 46.7200187 ], + [ 8.1510205, 46.7200158 ], + [ 8.1513002, 46.7199679 ], + [ 8.1515062, 46.7199024 ], + [ 8.1517886, 46.7197418 ], + [ 8.1523865, 46.7193363 ], + [ 8.152538, 46.7195351 ], + [ 8.152652, 46.7195701 ], + [ 8.1527824, 46.7195996 ], + [ 8.1529632, 46.7195451 ], + [ 8.1530701, 46.7195292 ], + [ 8.1531689, 46.7195247 ], + [ 8.1532342, 46.719514 ], + [ 8.1533072, 46.7195317 ], + [ 8.1535051, 46.7194773 ], + [ 8.1537849, 46.7194294 ], + [ 8.1540308, 46.719415 ], + [ 8.1542461, 46.7193156 ], + [ 8.1542475, 46.7192368 ], + [ 8.1542981, 46.7191697 ], + [ 8.1544143, 46.7191144 ], + [ 8.1547117, 46.7189821 ], + [ 8.1550664, 46.7188504 ], + [ 8.1553482, 46.7187123 ], + [ 8.1554718, 46.7186629 ], + [ 8.1555542, 46.7186468 ], + [ 8.1556934, 46.7186652 ], + [ 8.1559064, 46.7186335 ], + [ 8.1561871, 46.7185348 ], + [ 8.1566101, 46.7183136 ], + [ 8.1570485, 46.7180926 ], + [ 8.1576431, 46.7178618 ], + [ 8.1583628, 46.7175196 ], + [ 8.158546, 46.7174031 ], + [ 8.1586853, 46.7173706 ], + [ 8.1588997, 46.717322 ], + [ 8.159097, 46.7172846 ], + [ 8.1592446, 46.7172578 ], + [ 8.1594089, 46.717254 ], + [ 8.1595473, 46.7172722 ], + [ 8.1597356, 46.7172966 ], + [ 8.1599077, 46.7172702 ], + [ 8.1600566, 46.7172153 ], + [ 8.1602223, 46.7171324 ], + [ 8.1604613, 46.7170333 ], + [ 8.1606353, 46.7169618 ], + [ 8.1608759, 46.7168008 ], + [ 8.1610409, 46.7167348 ], + [ 8.1611561, 46.7167246 ], + [ 8.1613197, 46.716732 ], + [ 8.1614189, 46.7166934 ], + [ 8.1614854, 46.7166546 ], + [ 8.161724, 46.7165895 ], + [ 8.1620139, 46.7164458 ], + [ 8.1623946, 46.7162411 ], + [ 8.1626278, 46.7160799 ], + [ 8.1627617, 46.715946 ], + [ 8.1627985, 46.7157604 ], + [ 8.1628527, 46.7155354 ], + [ 8.1629796, 46.7153675 ], + [ 8.1631631, 46.7152172 ], + [ 8.1638152, 46.7149587 ], + [ 8.1641204, 46.7148547 ], + [ 8.164335, 46.7147666 ], + [ 8.1644037, 46.714649 ], + [ 8.1644722, 46.7145144 ], + [ 8.1645808, 46.7143858 ], + [ 8.1648294, 46.71427 ], + [ 8.1650534, 46.7141481 ], + [ 8.1654746, 46.7139832 ], + [ 8.1658042, 46.7138738 ], + [ 8.1660189, 46.7137969 ], + [ 8.1661267, 46.7137248 ], + [ 8.166236, 46.7135906 ], + [ 8.1663389, 46.7133999 ], + [ 8.1663075, 46.7133151 ], + [ 8.1662703, 46.7131625 ], + [ 8.1663045, 46.7130896 ], + [ 8.1663803, 46.7130114 ], + [ 8.1664712, 46.7129673 ], + [ 8.1665714, 46.7128781 ], + [ 8.1666791, 46.7128058 ], + [ 8.1668198, 46.7127508 ], + [ 8.1669357, 46.7126787 ], + [ 8.1670621, 46.7125391 ], + [ 8.1671698, 46.7124613 ], + [ 8.1672695, 46.7124002 ], + [ 8.1674189, 46.7123228 ], + [ 8.1675365, 46.7121942 ], + [ 8.1676927, 46.7121395 ], + [ 8.167848, 46.7121411 ], + [ 8.1679953, 46.7121538 ], + [ 8.1681504, 46.7121948 ], + [ 8.168345, 46.7122644 ], + [ 8.1685077, 46.7123224 ], + [ 8.1686373, 46.7123575 ], + [ 8.1687934, 46.7123534 ], + [ 8.1689833, 46.7122538 ], + [ 8.1691255, 46.7121313 ], + [ 8.1692675, 46.7119974 ], + [ 8.1693751, 46.7119703 ], + [ 8.1694415, 46.7119259 ], + [ 8.1695083, 46.7118476 ], + [ 8.169652, 46.7116573 ], + [ 8.1698131, 46.7114165 ], + [ 8.1699739, 46.7111588 ], + [ 8.1701088, 46.7109855 ], + [ 8.1702166, 46.7109188 ], + [ 8.1704487, 46.7107916 ], + [ 8.1707463, 46.7106761 ], + [ 8.1711261, 46.7105333 ], + [ 8.1716958, 46.710291 ], + [ 8.1719115, 46.7101691 ], + [ 8.1720777, 46.7100693 ], + [ 8.1721621, 46.7099574 ], + [ 8.1723286, 46.7098238 ], + [ 8.1725203, 46.7096734 ], + [ 8.1726296, 46.7095393 ], + [ 8.1727225, 46.7093993 ], + [ 8.1728079, 46.7092479 ], + [ 8.172926, 46.7090912 ], + [ 8.1730594, 46.7089854 ], + [ 8.1733006, 46.708813 ], + [ 8.1736327, 46.7085909 ], + [ 8.1737589, 46.7084344 ], + [ 8.1738431, 46.7083167 ], + [ 8.1739138, 46.7081032 ], + [ 8.1740159, 46.7079183 ], + [ 8.1741078, 46.707829 ], + [ 8.1742325, 46.70774 ], + [ 8.1743086, 46.7076281 ], + [ 8.1743966, 46.7073696 ], + [ 8.174441999999999, 46.7071558 ], + [ 8.1744047, 46.7070032 ], + [ 8.1743494, 46.7069013 ], + [ 8.1743443, 46.7067659 ], + [ 8.1743304, 46.7066474 ], + [ 8.1742758, 46.7065396 ], + [ 8.1742777, 46.7064383 ], + [ 8.1743789, 46.706304 ], + [ 8.174612400000001, 46.706109 ], + [ 8.1749263, 46.7059881 ], + [ 8.1751912, 46.705878 ], + [ 8.1754465, 46.7057791 ], + [ 8.1757656, 46.7058047 ], + [ 8.1757395, 46.7055058 ], + [ 8.1756577, 46.7051441 ], + [ 8.1755404, 46.7048725 ], + [ 8.1754219, 46.7046965 ], + [ 8.1752598, 46.7046159 ], + [ 8.1751632, 46.7045418 ], + [ 8.1751499, 46.7044062 ], + [ 8.1751211, 46.7042144 ], + [ 8.1751825, 46.7040401 ], + [ 8.1753358, 46.7037711 ], + [ 8.1755131, 46.7035304 ], + [ 8.1756153, 46.7033511 ], + [ 8.175659, 46.7032049 ], + [ 8.1756391, 46.7030018 ], + [ 8.1752874, 46.7022654 ], + [ 8.175162, 46.7019993 ], + [ 8.1750774, 46.7017842 ], + [ 8.1750977, 46.7015928 ], + [ 8.1751267, 46.7013844 ], + [ 8.1751727, 46.7011594 ], + [ 8.1751123, 46.7009277 ], + [ 8.1750004, 46.7008139 ], + [ 8.1748231, 46.7006993 ], + [ 8.1746038, 46.7006183 ], + [ 8.1743921, 46.7005541 ], + [ 8.1741475, 46.7005348 ], + [ 8.173878, 46.7004926 ], + [ 8.1736444, 46.7003211 ], + [ 8.1733722, 46.7000704 ], + [ 8.1731555, 46.6998822 ], + [ 8.1730266, 46.6997794 ], + [ 8.1728563, 46.6996989 ], + [ 8.1726621, 46.699601 ], + [ 8.1725583, 46.699476 ], + [ 8.1724894, 46.699278 ], + [ 8.1724374, 46.6990577 ], + [ 8.1723842, 46.6988711 ], + [ 8.1722732, 46.6987065 ], + [ 8.1721858, 46.6985873 ], + [ 8.172131, 46.6984627 ], + [ 8.1722261, 46.6982438 ], + [ 8.172336, 46.6980927 ], + [ 8.1725122, 46.6978859 ], + [ 8.1726885, 46.697696 ], + [ 8.1728237, 46.6974774 ], + [ 8.1729849, 46.6972536 ], + [ 8.1731856, 46.6970471 ], + [ 8.1733936, 46.6969025 ], + [ 8.1738712, 46.6967438 ], + [ 8.17402, 46.6966889 ], + [ 8.1741527, 46.6965944 ], + [ 8.1742442, 46.6965332 ], + [ 8.1743843, 46.6965008 ], + [ 8.1745647, 46.6964858 ], + [ 8.1747618, 46.696437 ], + [ 8.1749526, 46.6963487 ], + [ 8.1751104, 46.6962319 ], + [ 8.175195, 46.6960861 ], + [ 8.1752646, 46.6959177 ], + [ 8.1752917, 46.6958052 ], + [ 8.1753684, 46.6956763 ], + [ 8.175486, 46.6955479 ], + [ 8.1756024, 46.6954589 ], + [ 8.1758257, 46.695354 ], + [ 8.1761139, 46.6952723 ], + [ 8.1764515, 46.6951628 ], + [ 8.1767167, 46.6950132 ], + [ 8.1769251, 46.6948405 ], + [ 8.1770426, 46.6947065 ], + [ 8.1771776, 46.6945387 ], + [ 8.1773348, 46.6944445 ], + [ 8.1775086, 46.6943617 ], + [ 8.1777565, 46.6942683 ], + [ 8.1780767, 46.6941982 ], + [ 8.1783563, 46.6941445 ], + [ 8.1785623, 46.6940902 ], + [ 8.1786461, 46.6940066 ], + [ 8.1787957, 46.6938896 ], + [ 8.1789705, 46.6937673 ], + [ 8.1791446, 46.6936506 ], + [ 8.1793595, 46.6935344 ], + [ 8.179583, 46.6934464 ], + [ 8.1797654, 46.6933356 ], + [ 8.17994, 46.6932019 ], + [ 8.1801394, 46.6930798 ], + [ 8.1803713, 46.6929525 ], + [ 8.1806701, 46.6927525 ], + [ 8.1808792, 46.692563 ], + [ 8.1810481, 46.6923109 ], + [ 8.1811323, 46.6921935 ], + [ 8.1812079, 46.692104 ], + [ 8.1813161, 46.6920149 ], + [ 8.1814252, 46.6919201 ], + [ 8.1815184, 46.6917518 ], + [ 8.1815971, 46.6915329 ], + [ 8.1817014, 46.6912746 ], + [ 8.1818041, 46.6910726 ], + [ 8.1818637, 46.6909549 ], + [ 8.1819389, 46.6908935 ], + [ 8.1820717, 46.6908103 ], + [ 8.1822033, 46.6907553 ], + [ 8.1823857, 46.6906443 ], + [ 8.1825774, 46.6905053 ], + [ 8.1827356, 46.6903602 ], + [ 8.1828874, 46.6901758 ], + [ 8.1829983, 46.6899795 ], + [ 8.1830833, 46.6898057 ], + [ 8.1831793, 46.6895416 ], + [ 8.1832437, 46.6892322 ], + [ 8.1832778, 46.6891592 ], + [ 8.1833366, 46.6890978 ], + [ 8.1837902, 46.6885724 ], + [ 8.1839403, 46.6884385 ], + [ 8.1841148, 46.6882938 ], + [ 8.1843881, 46.6881498 ], + [ 8.1846286, 46.6879944 ], + [ 8.184803, 46.6879003 ], + [ 8.1849612, 46.6877608 ], + [ 8.188349, 46.6839833 ], + [ 8.1884022, 46.6838091 ], + [ 8.1884231, 46.683612 ], + [ 8.1884294, 46.683302 ], + [ 8.1883936, 46.6830761 ], + [ 8.1883087, 46.6828498 ], + [ 8.1881654, 46.6826511 ], + [ 8.1879892, 46.6824915 ], + [ 8.1877152, 46.6822916 ], + [ 8.1875467, 46.6821601 ], + [ 8.1873785, 46.6819895 ], + [ 8.1872672, 46.6818586 ], + [ 8.1871295, 46.681412 ], + [ 8.1870353, 46.6812193 ], + [ 8.1869081, 46.6810658 ], + [ 8.1867967, 46.6809239 ], + [ 8.1866345, 46.680832 ], + [ 8.1864393, 46.6807794 ], + [ 8.1862274, 46.6807547 ], + [ 8.1859904, 46.6807467 ], + [ 8.1856712, 46.6807605 ], + [ 8.185246, 46.6807338 ], + [ 8.1848379, 46.6807016 ], + [ 8.1843806, 46.6806576 ], + [ 8.1839562, 46.6806253 ], + [ 8.1836804, 46.6805267 ], + [ 8.1834447, 46.6804399 ], + [ 8.1832755, 46.6803142 ], + [ 8.183083, 46.68016 ], + [ 8.1829144, 46.6800174 ], + [ 8.1830373, 46.6799848 ], + [ 8.1831698, 46.6799353 ], + [ 8.1833024, 46.6798409 ], + [ 8.1834282, 46.679718 ], + [ 8.183563, 46.6795447 ], + [ 8.1836992, 46.6792923 ], + [ 8.1837936, 46.6790903 ], + [ 8.1837797, 46.6789717 ], + [ 8.1837991, 46.6788423 ], + [ 8.1838588, 46.6787245 ], + [ 8.1839603, 46.6785677 ], + [ 8.1840537, 46.6784107 ], + [ 8.1842619, 46.6782268 ], + [ 8.1845451, 46.6780322 ], + [ 8.1847185, 46.6779268 ], + [ 8.1848857, 46.6777931 ], + [ 8.1849795, 46.6776025 ], + [ 8.1850084, 46.6773941 ], + [ 8.1849529, 46.6773372 ], + [ 8.1848148, 46.6772738 ], + [ 8.1846458, 46.6771651 ], + [ 8.1844604, 46.6770449 ], + [ 8.1843555, 46.6769649 ], + [ 8.1843498, 46.6768464 ], + [ 8.1843528, 46.6767112 ], + [ 8.1843067, 46.6765641 ], + [ 8.1842289, 46.6763773 ], + [ 8.184175, 46.6762584 ], + [ 8.1840947, 46.6761843 ], + [ 8.1839246, 46.6761094 ], + [ 8.1837379, 46.6760173 ], + [ 8.1835521, 46.6759309 ], + [ 8.1833998, 46.6757884 ], + [ 8.1833533, 46.6756753 ], + [ 8.1832076, 46.6755892 ], + [ 8.1830237, 46.675407 ], + [ 8.1827999, 46.6751681 ], + [ 8.1825999, 46.6749462 ], + [ 8.1824412, 46.6747473 ], + [ 8.1822897, 46.6745429 ], + [ 8.182253, 46.6743734 ], + [ 8.1822892, 46.6742158 ], + [ 8.1823264, 46.6740077 ], + [ 8.1823871, 46.6738504 ], + [ 8.1823172, 46.6736975 ], + [ 8.1821979, 46.6735216 ], + [ 8.1821513, 46.6733971 ], + [ 8.1822116, 46.6732681 ], + [ 8.1823051, 46.6731169 ], + [ 8.1823734, 46.6729765 ], + [ 8.1823769, 46.6728131 ], + [ 8.1822493, 46.6726822 ], + [ 8.1820718, 46.6725508 ], + [ 8.1817885, 46.6724409 ], + [ 8.1815199, 46.6723874 ], + [ 8.1811525, 46.6723444 ], + [ 8.1807367, 46.6722783 ], + [ 8.1803874, 46.6721789 ], + [ 8.1799645, 46.6720733 ], + [ 8.1799705, 46.6717972 ], + [ 8.1799259, 46.6715825 ], + [ 8.1798895, 46.6713736 ], + [ 8.1797383, 46.6711861 ], + [ 8.1795217, 46.6709979 ], + [ 8.1792753, 46.6706628 ], + [ 8.1791973, 46.6705099 ], + [ 8.1790382, 46.6702885 ], + [ 8.1789854, 46.6700737 ], + [ 8.1787612, 46.6698629 ], + [ 8.1786591, 46.6696816 ], + [ 8.1786216, 46.669512 ], + [ 8.1785685, 46.6693312 ], + [ 8.1784729, 46.6692118 ], + [ 8.1783295, 46.6690526 ], + [ 8.1782596, 46.6688997 ], + [ 8.1779631, 46.6686037 ], + [ 8.1776902, 46.6683585 ], + [ 8.17741, 46.6681133 ], + [ 8.1771514, 46.6679586 ], + [ 8.176966, 46.6678383 ], + [ 8.1768144, 46.6676789 ], + [ 8.1766647, 46.6674238 ], + [ 8.176595, 46.6672258 ], + [ 8.1764845, 46.6670331 ], + [ 8.1763155, 46.666913 ], + [ 8.1760407, 46.6667693 ], + [ 8.1663775, 46.6614527 ], + [ 8.1501087, 46.6651833 ], + [ 8.141178, 46.6634066 ], + [ 8.1224241, 46.6542551 ], + [ 8.1073165, 46.6498853 ], + [ 8.1072943, 46.6501387 ], + [ 8.107119, 46.650289 ], + [ 8.1070107, 46.6503781 ], + [ 8.1069509, 46.6504959 ], + [ 8.1068906, 46.6506361 ], + [ 8.1067067, 46.6508146 ], + [ 8.1065313, 46.6509593 ], + [ 8.106348, 46.6511209 ], + [ 8.106221, 46.6512886 ], + [ 8.1061355, 46.6514399 ], + [ 8.1059913, 46.6516583 ], + [ 8.1057722, 46.651966 ], + [ 8.1055527, 46.6522399 ], + [ 8.1053912, 46.6525201 ], + [ 8.1052611, 46.6528287 ], + [ 8.1051146, 46.6531316 ], + [ 8.104896, 46.6534112 ], + [ 8.1046546, 46.6535722 ], + [ 8.1045043, 46.6537002 ], + [ 8.1043707, 46.653851 ], + [ 8.1042526, 46.6540076 ], + [ 8.1041818, 46.6542323 ], + [ 8.1040533, 46.6544677 ], + [ 8.1039325, 46.654737 ], + [ 8.1037979, 46.6548821 ], + [ 8.1036096, 46.6549028 ], + [ 8.1033009, 46.6548318 ], + [ 8.1033858, 46.65503 ], + [ 8.1033984, 46.6551937 ], + [ 8.103186, 46.6551858 ], + [ 8.1032874, 46.6553953 ], + [ 8.1030008, 46.655398 ], + [ 8.1028121, 46.6554524 ], + [ 8.1025494, 46.6554778 ], + [ 8.1022221, 46.6554856 ], + [ 8.1020823, 46.6555348 ], + [ 8.1020229, 46.6556187 ], + [ 8.1019139, 46.6557247 ], + [ 8.1017555, 46.6558526 ], + [ 8.1015884, 46.6560088 ], + [ 8.1012818, 46.6561802 ], + [ 8.1010913, 46.656291 ], + [ 8.1009171, 46.6564075 ], + [ 8.1007341, 46.6565296 ], + [ 8.1005739, 46.656714 ], + [ 8.1003922, 46.6568134 ], + [ 8.1001269, 46.6569572 ], + [ 8.1000344, 46.657069 ], + [ 8.1000551, 46.6572271 ], + [ 8.1000828, 46.6574247 ], + [ 8.1000786, 46.6576163 ], + [ 8.0999446, 46.657739 ], + [ 8.0997535, 46.6578722 ], + [ 8.0975873, 46.6592246 ], + [ 8.0974218, 46.6593188 ], + [ 8.09729, 46.6593568 ], + [ 8.0969784, 46.6593816 ], + [ 8.0964626, 46.6594101 ], + [ 8.0958805, 46.6594827 ], + [ 8.0955357, 46.6595411 ], + [ 8.0952621, 46.6596735 ], + [ 8.0951364, 46.6598131 ], + [ 8.0950923, 46.6599423 ], + [ 8.0951122, 46.6601679 ], + [ 8.0952297, 46.6603609 ], + [ 8.0953486, 46.6605369 ], + [ 8.0954831, 46.6607187 ], + [ 8.095553, 46.6608942 ], + [ 8.095565, 46.6610747 ], + [ 8.0956166, 46.6612895 ], + [ 8.095596, 46.6614754 ], + [ 8.0956567, 46.6616959 ], + [ 8.0957094, 46.6618712 ], + [ 8.0958021, 46.6621033 ], + [ 8.0958393, 46.6622729 ], + [ 8.0958746, 46.662493 ], + [ 8.095884999999999, 46.6627412 ], + [ 8.0958879, 46.6629781 ], + [ 8.095848, 46.6632596 ], + [ 8.0958526, 46.6634342 ], + [ 8.0958978, 46.6635927 ], + [ 8.0959344, 46.6637848 ], + [ 8.0959198, 46.6640551 ], + [ 8.0958529, 46.664466 ], + [ 8.0958397, 46.6646575 ], + [ 8.0957629, 46.6647864 ], + [ 8.0955893, 46.6648803 ], + [ 8.095349, 46.6650018 ], + [ 8.0951023, 46.6650669 ], + [ 8.0949134, 46.66511 ], + [ 8.0947325, 46.6651474 ], + [ 8.0945751, 46.6652359 ], + [ 8.0943011, 46.6653966 ], + [ 8.0940778, 46.665507 ], + [ 8.0937809, 46.6656052 ], + [ 8.0934612, 46.6656469 ], + [ 8.0929926, 46.6657264 ], + [ 8.0926055, 46.6658632 ], + [ 8.0923722, 46.6660186 ], + [ 8.0920101, 46.6661331 ], + [ 8.0919566, 46.6663017 ], + [ 8.0917982, 46.6664353 ], + [ 8.0916686, 46.6663944 ], + [ 8.0914561, 46.6663752 ], + [ 8.0912839, 46.6663903 ], + [ 8.090975, 46.6663081 ], + [ 8.0907883, 46.6662666 ], + [ 8.0905904, 46.6663152 ], + [ 8.0904452, 46.6662573 ], + [ 8.0901535, 46.6661132 ], + [ 8.0897647, 46.6659738 ], + [ 8.0893436, 46.6658002 ], + [ 8.0891328, 46.6657189 ], + [ 8.0889806, 46.6655651 ], + [ 8.0887409, 46.6653257 ], + [ 8.0884774, 46.6650805 ], + [ 8.088283, 46.6650052 ], + [ 8.0881515, 46.6650094 ], + [ 8.0880525, 46.665059 ], + [ 8.0879686, 46.6651484 ], + [ 8.0878279, 46.6651975 ], + [ 8.0876303, 46.6652632 ], + [ 8.0873265, 46.6653331 ], + [ 8.0870306, 46.6653807 ], + [ 8.0867838, 46.66544 ], + [ 8.0865856, 46.6655224 ], + [ 8.0864053, 46.6655431 ], + [ 8.0863154, 46.6655364 ], + [ 8.0862265, 46.6654792 ], + [ 8.086025, 46.6653642 ], + [ 8.0856916, 46.6652818 ], + [ 8.0852521, 46.6651981 ], + [ 8.0850798, 46.6652019 ], + [ 8.0850216, 46.665252 ], + [ 8.0849628, 46.6653189 ], + [ 8.0848636, 46.6653573 ], + [ 8.084765, 46.6653788 ], + [ 8.0846262, 46.6653774 ], + [ 8.0845035, 46.6653648 ], + [ 8.0843166, 46.6653064 ], + [ 8.0840911, 46.6651631 ], + [ 8.0839142, 46.6650484 ], + [ 8.0837278, 46.6649617 ], + [ 8.0834599, 46.6648969 ], + [ 8.0831913, 46.664832 ], + [ 8.0829397, 46.6647617 ], + [ 8.0826881, 46.6646857 ], + [ 8.0824613, 46.6645704 ], + [ 8.0822425, 46.664506 ], + [ 8.0819821, 46.6644525 ], + [ 8.0816226, 46.6644374 ], + [ 8.0812467, 46.6644221 ], + [ 8.0809295, 46.6643228 ], + [ 8.0806927, 46.6643258 ], + [ 8.0804863, 46.6644139 ], + [ 8.0802874, 46.6645131 ], + [ 8.0800641, 46.6646178 ], + [ 8.0798418, 46.6646775 ], + [ 8.0795297, 46.6647361 ], + [ 8.0792262, 46.664761 ], + [ 8.079039, 46.6647421 ], + [ 8.0788847, 46.664684 ], + [ 8.0787219, 46.664654 ], + [ 8.0786063, 46.6646867 ], + [ 8.0784821, 46.6647529 ], + [ 8.0783102, 46.664785 ], + [ 8.0782533, 46.6647392 ], + [ 8.0781977, 46.664671 ], + [ 8.0780939, 46.6645909 ], + [ 8.0779801, 46.6645671 ], + [ 8.077792, 46.6645426 ], + [ 8.0776775, 46.6645356 ], + [ 8.0775889, 46.6645008 ], + [ 8.0774989, 46.6644829 ], + [ 8.0774004, 46.6645101 ], + [ 8.0772774, 46.664537 ], + [ 8.0771122, 46.6645859 ], + [ 8.0769891, 46.6646071 ], + [ 8.0768275, 46.6645433 ], + [ 8.0766323, 46.6644736 ], + [ 8.0764373, 46.6644207 ], + [ 8.0762249, 46.6644128 ], + [ 8.0760697, 46.6644167 ], + [ 8.0758588, 46.6643299 ], + [ 8.0756726, 46.6642602 ], + [ 8.0754929, 46.6642583 ], + [ 8.0753119, 46.6642789 ], + [ 8.0752483, 46.6642219 ], + [ 8.0751841, 46.664176 ], + [ 8.0750145, 46.6640615 ], + [ 8.0748458, 46.6639525 ], + [ 8.0746438, 46.66386 ], + [ 8.0744318, 46.6638184 ], + [ 8.0741715, 46.6637705 ], + [ 8.073812, 46.6637552 ], + [ 8.073632, 46.6637307 ], + [ 8.0734698, 46.6636895 ], + [ 8.0732981, 46.6636708 ], + [ 8.0730293, 46.6636565 ], + [ 8.0726126, 46.6636407 ], + [ 8.0718858, 46.6635764 ], + [ 8.0715666, 46.6635899 ], + [ 8.0713045, 46.6635927 ], + [ 8.0711237, 46.6636301 ], + [ 8.0709428, 46.6636677 ], + [ 8.0707289, 46.6637442 ], + [ 8.0705224, 46.663821 ], + [ 8.0703574, 46.6638868 ], + [ 8.0701922, 46.6639413 ], + [ 8.0699543, 46.6639896 ], + [ 8.0698142, 46.6640162 ], + [ 8.0694938, 46.664069 ], + [ 8.0692804, 46.6641174 ], + [ 8.0691655, 46.6641387 ], + [ 8.0690419, 46.6641826 ], + [ 8.0687694, 46.6642754 ], + [ 8.0685547, 46.6643576 ], + [ 8.0683004, 46.6643943 ], + [ 8.0681375, 46.6643644 ], + [ 8.0679996, 46.6643065 ], + [ 8.0677806, 46.6642251 ], + [ 8.0673269, 46.6640454 ], + [ 8.0670614, 46.6638959 ], + [ 8.066796, 46.6636901 ], + [ 8.0665211, 46.6635744 ], + [ 8.0662029, 46.6635314 ], + [ 8.0657791, 46.6634647 ], + [ 8.0654277, 46.6634496 ], + [ 8.0650693, 46.6633837 ], + [ 8.0647926, 46.66333 ], + [ 8.0646559, 46.6632326 ], + [ 8.0645176, 46.6632029 ], + [ 8.0643548, 46.6631843 ], + [ 8.0641185, 46.6631591 ], + [ 8.0638903, 46.6631228 ], + [ 8.0635977, 46.6630351 ], + [ 8.0631522, 46.6628609 ], + [ 8.0628215, 46.6626544 ], + [ 8.0626599, 46.6625851 ], + [ 8.0625898, 46.6624546 ], + [ 8.0625511, 46.662364 ], + [ 8.0625044, 46.6622733 ], + [ 8.0624237, 46.6622216 ], + [ 8.062343, 46.6621588 ], + [ 8.0622635, 46.6620677 ], + [ 8.0622015, 46.6619317 ], + [ 8.0621308, 46.6618181 ], + [ 8.0620257, 46.6617718 ], + [ 8.0618943, 46.6617761 ], + [ 8.0613218, 46.6617698 ], + [ 8.0607669, 46.6617412 ], + [ 8.060244, 46.6617185 ], + [ 8.0596651, 46.6616501 ], + [ 8.0595033, 46.6615694 ], + [ 8.059456, 46.6615069 ], + [ 8.0593917, 46.6614555 ], + [ 8.0593182, 46.6614546 ], + [ 8.0592533, 46.6614257 ], + [ 8.0591978, 46.6613574 ], + [ 8.0591265, 46.6612608 ], + [ 8.0589172, 46.6611008 ], + [ 8.0587165, 46.6609745 ], + [ 8.0585856, 46.6609505 ], + [ 8.0583657, 46.6609311 ], + [ 8.0581288, 46.6609229 ], + [ 8.0577692, 46.6608964 ], + [ 8.0574034, 46.6608304 ], + [ 8.0570214, 46.6607078 ], + [ 8.0567476, 46.6605413 ], + [ 8.0564491, 46.6603633 ], + [ 8.05636, 46.660351 ], + [ 8.0559931, 46.6606233 ], + [ 8.0558276, 46.6607116 ], + [ 8.0557377, 46.6607049 ], + [ 8.055528, 46.6605842 ], + [ 8.0553461, 46.6606668 ], + [ 8.0552399, 46.6606656 ], + [ 8.0550286, 46.6606126 ], + [ 8.054703, 46.6605583 ], + [ 8.0529335, 46.661001 ], + [ 8.0527843, 46.6610951 ], + [ 8.052593, 46.6612227 ], + [ 8.0524006, 46.6613953 ], + [ 8.0521756, 46.6615676 ], + [ 8.0519826, 46.6617628 ], + [ 8.0518383, 46.661998 ], + [ 8.0516773, 46.6622048 ], + [ 8.0514938, 46.6623719 ], + [ 8.0512784, 46.6624653 ], + [ 8.0509243, 46.6625573 ], + [ 8.0507769, 46.662595 ], + [ 8.0506933, 46.6626448 ], + [ 8.0506264, 46.6627174 ], + [ 8.0503947, 46.6628163 ], + [ 8.0501544, 46.6629377 ], + [ 8.0498914, 46.6630081 ], + [ 8.0495791, 46.6630553 ], + [ 8.0492997, 46.6631143 ], + [ 8.0490618, 46.6631624 ], + [ 8.0488225, 46.6632386 ], + [ 8.0485501, 46.663337 ], + [ 8.0484253, 46.6634259 ], + [ 8.048217, 46.6635645 ], + [ 8.0480329, 46.6637541 ], + [ 8.047792, 46.6638925 ], + [ 8.0474875, 46.6639793 ], + [ 8.0472902, 46.6640108 ], + [ 8.0471024, 46.6640143 ], + [ 8.04675, 46.6640499 ], + [ 8.046527, 46.6641151 ], + [ 8.0464846, 46.6641936 ], + [ 8.046498, 46.6642952 ], + [ 8.0466292, 46.6646349 ], + [ 8.0467302, 46.6648276 ], + [ 8.0467835, 46.6649918 ], + [ 8.0468125, 46.6651724 ], + [ 8.0467349, 46.6653182 ], + [ 8.0466509, 46.6653962 ], + [ 8.0464924, 46.665541 ], + [ 8.0462924, 46.665691 ], + [ 8.0459856, 46.6658679 ], + [ 8.0457856, 46.666018 ], + [ 8.0456928, 46.6661128 ], + [ 8.0456726, 46.6662817 ], + [ 8.0456589, 46.6665126 ], + [ 8.0455699, 46.6668049 ], + [ 8.0454867, 46.6671816 ], + [ 8.0453945, 46.6672652 ], + [ 8.045272, 46.6672581 ], + [ 8.0451508, 46.6672286 ], + [ 8.0449305, 46.6671754 ], + [ 8.0445907, 46.6670307 ], + [ 8.0440139, 46.6668664 ], + [ 8.043679, 46.6668627 ], + [ 8.0434316, 46.6669389 ], + [ 8.0431754, 46.6670375 ], + [ 8.0429689, 46.6671197 ], + [ 8.0427653, 46.6671006 ], + [ 8.0424466, 46.66708 ], + [ 8.0420066, 46.6670301 ], + [ 8.0417299, 46.6669707 ], + [ 8.0414526, 46.666928 ], + [ 8.0411683, 46.6668516 ], + [ 8.0408905, 46.6668428 ], + [ 8.0405865, 46.6668959 ], + [ 8.040217, 46.6669425 ], + [ 8.0397993, 46.6669772 ], + [ 8.0394306, 46.6670182 ], + [ 8.0391679, 46.6670435 ], + [ 8.0389701, 46.6671089 ], + [ 8.0387384, 46.6672022 ], + [ 8.0385814, 46.6672624 ], + [ 8.0383515, 46.6672994 ], + [ 8.0379576, 46.6673513 ], + [ 8.0375552, 46.6674425 ], + [ 8.0371926, 46.6675232 ], + [ 8.0369966, 46.667521 ], + [ 8.0368332, 46.6675135 ], + [ 8.0366779, 46.667506 ], + [ 8.0365135, 46.667555 ], + [ 8.0363402, 46.6676151 ], + [ 8.0362077, 46.6676756 ], + [ 8.0360683, 46.6677022 ], + [ 8.0358798, 46.667717 ], + [ 8.0356505, 46.6677314 ], + [ 8.0354865, 46.6677464 ], + [ 8.0353703, 46.6677958 ], + [ 8.03518, 46.6678727 ], + [ 8.0350401, 46.6679218 ], + [ 8.0349175, 46.6679149 ], + [ 8.0347383, 46.6678902 ], + [ 8.0345912, 46.6678773 ], + [ 8.0343695, 46.66792 ], + [ 8.0341227, 46.6679848 ], + [ 8.0339244, 46.6680672 ], + [ 8.0337516, 46.6681046 ], + [ 8.0334376, 46.6682196 ], + [ 8.0332398, 46.6682737 ], + [ 8.0330268, 46.6682938 ], + [ 8.0327478, 46.6683245 ], + [ 8.032379, 46.6683543 ], + [ 8.0320668, 46.6684128 ], + [ 8.0317296, 46.6684992 ], + [ 8.0315096, 46.6684686 ], + [ 8.031289, 46.6684604 ], + [ 8.0310357, 46.6684463 ], + [ 8.0307082, 46.6684483 ], + [ 8.03042, 46.6685352 ], + [ 8.0301242, 46.6685994 ], + [ 8.0298937, 46.668659 ], + [ 8.029656, 46.6686563 ], + [ 8.0294203, 46.6686141 ], + [ 8.029168, 46.6685437 ], + [ 8.0290239, 46.6684349 ], + [ 8.0286169, 46.6683402 ], + [ 8.0282216, 46.6681158 ], + [ 8.0280041, 46.6680119 ], + [ 8.02776, 46.6679527 ], + [ 8.0275393, 46.6679277 ], + [ 8.0272855, 46.667953 ], + [ 8.0270633, 46.6680181 ], + [ 8.0268979, 46.6680615 ], + [ 8.0267178, 46.6680932 ], + [ 8.026562, 46.6681083 ], + [ 8.0263892, 46.6681403 ], + [ 8.0262328, 46.6681779 ], + [ 8.0261412, 46.6682502 ], + [ 8.0259847, 46.6682766 ], + [ 8.0258056, 46.6682521 ], + [ 8.0256165, 46.6682894 ], + [ 8.0255079, 46.668367 ], + [ 8.0254253, 46.6684282 ], + [ 8.0252373, 46.6684204 ], + [ 8.0250089, 46.6683727 ], + [ 8.0247889, 46.6683421 ], + [ 8.0246326, 46.6683854 ], + [ 8.0245479, 46.6684916 ], + [ 8.0244461, 46.6686651 ], + [ 8.0243993, 46.6688733 ], + [ 8.0242811, 46.669041 ], + [ 8.0241463, 46.6691861 ], + [ 8.0235113, 46.6693819 ], + [ 8.0231485, 46.6695187 ], + [ 8.0230394, 46.6696246 ], + [ 8.0229788, 46.6697593 ], + [ 8.0228937, 46.6698935 ], + [ 8.0227933, 46.669977 ], + [ 8.0226282, 46.6700484 ], + [ 8.0224455, 46.6701422 ], + [ 8.0222787, 46.6702813 ], + [ 8.022005, 46.6704248 ], + [ 8.021715, 46.6705737 ], + [ 8.0214742, 46.6707345 ], + [ 8.0213891, 46.6708687 ], + [ 8.0214094, 46.6710099 ], + [ 8.0214726, 46.6711178 ], + [ 8.0214621, 46.6712022 ], + [ 8.0213366, 46.671308 ], + [ 8.0212041, 46.6713684 ], + [ 8.0208925, 46.6714044 ], + [ 8.0204992, 46.6714394 ], + [ 8.020114, 46.6714689 ], + [ 8.0196872, 46.6715091 ], + [ 8.0193916, 46.6715847 ], + [ 8.0192351, 46.6716167 ], + [ 8.0189894, 46.6716309 ], + [ 8.0186602, 46.6717061 ], + [ 8.0184448, 46.6718052 ], + [ 8.0182867, 46.671916 ], + [ 8.0181865, 46.6720165 ], + [ 8.0179569, 46.6720082 ], + [ 8.0177294, 46.6719717 ], + [ 8.0174761, 46.6719577 ], + [ 8.0171084, 46.6719421 ], + [ 8.0167015, 46.671853 ], + [ 8.0166658, 46.6716496 ], + [ 8.016419, 46.6717145 ], + [ 8.0161972, 46.6717457 ], + [ 8.0159258, 46.6718047 ], + [ 8.0155493, 46.6718061 ], + [ 8.0153456, 46.6717813 ], + [ 8.0152498, 46.6716843 ], + [ 8.0151622, 46.6715817 ], + [ 8.0150321, 46.6715578 ], + [ 8.0148687, 46.6715559 ], + [ 8.0147129, 46.6715767 ], + [ 8.0145149, 46.6716196 ], + [ 8.0142448, 46.6716447 ], + [ 8.0140323, 46.671631 ], + [ 8.0138045, 46.6715664 ], + [ 8.0135839, 46.6715582 ], + [ 8.0133324, 46.6714877 ], + [ 8.0131624, 46.6714068 ], + [ 8.0130995, 46.6713272 ], + [ 8.0130931, 46.6712595 ], + [ 8.013111, 46.6711807 ], + [ 8.0130964, 46.6711128 ], + [ 8.0129575, 46.6711 ], + [ 8.0127778, 46.6711036 ], + [ 8.0125722, 46.6711295 ], + [ 8.0122688, 46.6711711 ], + [ 8.0119981, 46.6712131 ], + [ 8.0116693, 46.6712489 ], + [ 8.0113099, 46.6712448 ], + [ 8.0109999, 46.6712018 ], + [ 8.0109154, 46.6713248 ], + [ 8.0107853, 46.6713007 ], + [ 8.0106918, 46.6714238 ], + [ 8.0105833, 46.6715071 ], + [ 8.0104344, 46.6715618 ], + [ 8.0101805, 46.6715758 ], + [ 8.009862, 46.6715834 ], + [ 8.0095841, 46.6715577 ], + [ 8.0091277, 46.6715017 ], + [ 8.0085913, 46.671366 ], + [ 8.0080379, 46.6712469 ], + [ 8.0074033, 46.6710987 ], + [ 8.0071675, 46.6710452 ], + [ 8.0070205, 46.6710435 ], + [ 8.0068646, 46.6710586 ], + [ 8.0067672, 46.6710351 ], + [ 8.0067606, 46.670956 ], + [ 8.0067957, 46.6708719 ], + [ 8.006798, 46.6707816 ], + [ 8.0066493, 46.6708532 ], + [ 8.0065575, 46.670903 ], + [ 8.006476, 46.6709189 ], + [ 8.0063691, 46.6709289 ], + [ 8.0063294, 46.6708777 ], + [ 8.0062582, 46.6707867 ], + [ 8.0061619, 46.670718 ], + [ 8.0059704, 46.6708342 ], + [ 8.0058023, 46.670697 ], + [ 8.0057417, 46.6708428 ], + [ 8.0055806, 46.6707395 ], + [ 8.0055923, 46.67092 ], + [ 8.0053483, 46.6708666 ], + [ 8.0053295, 46.6709452 ], + [ 8.0053437, 46.6710469 ], + [ 8.005398, 46.6711715 ], + [ 8.0053395, 46.671199 ], + [ 8.0052414, 46.6711924 ], + [ 8.0050957, 46.6711568 ], + [ 8.0048516, 46.6710863 ], + [ 8.0045586, 46.6710379 ], + [ 8.00415, 46.6710107 ], + [ 8.0036755, 46.6710165 ], + [ 8.0033404, 46.6710013 ], + [ 8.0030364, 46.6710599 ], + [ 8.0020903, 46.6715903 ], + [ 8.0016912, 46.6718506 ], + [ 8.001491, 46.6719949 ], + [ 8.0014379, 46.6721521 ], + [ 8.0014253, 46.6723549 ], + [ 8.0013027, 46.6726693 ], + [ 8.0011865, 46.6730345 ], + [ 8.000965, 46.6737253 ], + [ 8.0008448, 46.6739494 ], + [ 8.0007287, 46.6740157 ], + [ 8.0006381, 46.674026 ], + [ 8.0004839, 46.6739621 ], + [ 8.0004063, 46.6741191 ], + [ 8.0000958, 46.6741156 ], + [ 8.0001467, 46.6743755 ], + [ 7.9999434, 46.6743055 ], + [ 7.9997562, 46.6742921 ], + [ 7.9998104, 46.6743941 ], + [ 7.9999055, 46.674508 ], + [ 7.999967, 46.6746891 ], + [ 7.9998123, 46.6746591 ], + [ 7.9998474, 46.6748907 ], + [ 7.9999868, 46.6748585 ], + [ 8.0002086, 46.6748216 ], + [ 8.0004245, 46.6746943 ], + [ 8.0005758, 46.6745551 ], + [ 8.0007542, 46.674269699999996 ], + [ 8.0009405, 46.6740463 ], + [ 8.0011657, 46.6738685 ], + [ 8.0013163, 46.6737406 ], + [ 8.0014563, 46.6736859 ], + [ 8.001653, 46.6736712 ], + [ 8.0018567, 46.6737018 ], + [ 8.0021504, 46.6737446 ], + [ 8.0024108, 46.6738095 ], + [ 8.0027696, 46.6738307 ], + [ 8.0030229, 46.6738391 ], + [ 8.0033592, 46.6738204 ], + [ 8.0037368, 46.6737571 ], + [ 8.0041653, 46.6736549 ], + [ 8.0045359, 46.673552 ], + [ 8.0048733, 46.673477 ], + [ 8.005258, 46.6734702 ], + [ 8.0057411, 46.6734306 ], + [ 8.0055905, 46.6735585 ], + [ 8.0054393, 46.673709 ], + [ 8.00538, 46.6738155 ], + [ 8.0053613, 46.6738998 ], + [ 8.0054079, 46.6739848 ], + [ 8.0055452, 46.674071 ], + [ 8.0056736, 46.6741571 ], + [ 8.0058037, 46.6741811 ], + [ 8.005944, 46.6741601 ], + [ 8.0060587, 46.674122 ], + [ 8.0062806, 46.6740907 ], + [ 8.0064523, 46.6741095 ], + [ 8.0066548, 46.6741795 ], + [ 8.006784, 46.6742656 ], + [ 8.0069636, 46.674262 ], + [ 8.007283, 46.67426 ], + [ 8.007545, 46.6742462 ], + [ 8.0076657, 46.6743039 ], + [ 8.0077482, 46.6742991 ], + [ 8.0080522, 46.6742351 ], + [ 8.0085044, 46.674133 ], + [ 8.0088074, 46.6741253 ], + [ 8.009086, 46.6741284 ], + [ 8.0093387, 46.6741539 ], + [ 8.0095255, 46.6742124 ], + [ 8.0097345, 46.6743557 ], + [ 8.0099021, 46.6745211 ], + [ 8.0100686, 46.6747428 ], + [ 8.010204, 46.6748797 ], + [ 8.0105489, 46.6751317 ], + [ 8.0106874, 46.6751671 ], + [ 8.0107925, 46.675219 ], + [ 8.0109209, 46.6753107 ], + [ 8.0110826, 46.6753858 ], + [ 8.0112951, 46.6753939 ], + [ 8.0114276, 46.675339 ], + [ 8.0116674, 46.675229 ], + [ 8.0118571, 46.6751691 ], + [ 8.0121596, 46.6751895 ], + [ 8.0123375, 46.6752536 ], + [ 8.0124491, 46.6753788 ], + [ 8.0125514, 46.6755491 ], + [ 8.0126359, 46.6757418 ], + [ 8.0128113, 46.6759467 ], + [ 8.0129215, 46.6760946 ], + [ 8.0128489, 46.6764095 ], + [ 8.0127084, 46.6767911 ], + [ 8.0126256, 46.6771511 ], + [ 8.012569, 46.6774323 ], + [ 8.0125539, 46.6777027 ], + [ 8.0124986, 46.6779557 ], + [ 8.0124128, 46.678107 ], + [ 8.0122617, 46.6782688 ], + [ 8.0120827, 46.6785655 ], + [ 8.0118424, 46.6790082 ], + [ 8.0114439, 46.6798718 ], + [ 8.0115019, 46.6801768 ], + [ 8.0115964, 46.6803132 ], + [ 8.0118628, 46.6804741 ], + [ 8.0120303, 46.6806283 ], + [ 8.0120842, 46.6807811 ], + [ 8.0121273, 46.6809958 ], + [ 8.0121466, 46.6811989 ], + [ 8.0122146, 46.6814422 ], + [ 8.0122258, 46.6816509 ], + [ 8.0122701, 46.681826 ], + [ 8.0123252, 46.6819339 ], + [ 8.0124525, 46.6820762 ], + [ 8.0125646, 46.6821677 ], + [ 8.0127169, 46.6822765 ], + [ 8.012943, 46.6824088 ], + [ 8.0131439, 46.6825576 ], + [ 8.0133104, 46.6827682 ], + [ 8.0134201, 46.6829498 ], + [ 8.0134044, 46.6832372 ], + [ 8.0133744, 46.6834848 ], + [ 8.0133277, 46.6837042 ], + [ 8.0133453, 46.6839749 ], + [ 8.0134954, 46.6841852 ], + [ 8.0138312, 46.6844878 ], + [ 8.0140889, 46.6846768 ], + [ 8.0143062, 46.6848258 ], + [ 8.0143774, 46.6849168 ], + [ 8.0144159, 46.6850018 ], + [ 8.0144125, 46.6851484 ], + [ 8.0144656, 46.6852956 ], + [ 8.0146404, 46.685523 ], + [ 8.0147011, 46.6856929 ], + [ 8.0147858, 46.6859024 ], + [ 8.0148712, 46.686095 ], + [ 8.0149395, 46.6862931 ], + [ 8.0150261, 46.6864463 ], + [ 8.0151797, 46.6865213 ], + [ 8.0153571, 46.6866079 ], + [ 8.015519, 46.6866943 ], + [ 8.0157852, 46.6868383 ], + [ 8.0160357, 46.6869596 ], + [ 8.0162607, 46.6871368 ], + [ 8.0166473, 46.6873836 ], + [ 8.0171653, 46.6876094 ], + [ 8.0174478, 46.6877422 ], + [ 8.0176676, 46.687818 ], + [ 8.0177802, 46.6878813 ], + [ 8.0179152, 46.688052 ], + [ 8.0179946, 46.6881431 ], + [ 8.0180992, 46.6882231 ], + [ 8.0182365, 46.688298 ], + [ 8.018332, 46.6883723 ], + [ 8.0184129, 46.6884409 ], + [ 8.0186622, 46.6886072 ], + [ 8.0188963, 46.688717 ], + [ 8.0191404, 46.6887761 ], + [ 8.0193676, 46.6888632 ], + [ 8.0195871, 46.6889052 ], + [ 8.0197653, 46.6889974 ], + [ 8.0199837, 46.6890902 ], + [ 8.0202021, 46.6891941 ], + [ 8.0204789, 46.6892479 ], + [ 8.0206966, 46.6893632 ], + [ 8.0208976, 46.6895063 ], + [ 8.021067, 46.6896098 ], + [ 8.0213918, 46.6897262 ], + [ 8.0216024, 46.689785 ], + [ 8.0218454, 46.6898892 ], + [ 8.0223903, 46.6900306 ], + [ 8.02292, 46.6901324 ], + [ 8.0235221, 46.6902689 ], + [ 8.0235459, 46.6902805 ], + [ 8.0235759, 46.6904105 ], + [ 8.0237113, 46.6905416 ], + [ 8.0239812, 46.6905616 ], + [ 8.0242586, 46.6905986 ], + [ 8.0245037, 46.6905956 ], + [ 8.0247169, 46.6905924 ], + [ 8.0249695, 46.6906066 ], + [ 8.0251081, 46.6906476 ], + [ 8.025247, 46.6906492 ], + [ 8.0254105, 46.6906566 ], + [ 8.0256708, 46.6907047 ], + [ 8.0258828, 46.6907353 ], + [ 8.0262086, 46.6907953 ], + [ 8.0265193, 46.6908102 ], + [ 8.0268785, 46.6908592 ], + [ 8.0271628, 46.6909245 ], + [ 8.027407, 46.6909893 ], + [ 8.0275297, 46.6910019 ], + [ 8.0276288, 46.6909523 ], + [ 8.0278261, 46.6909094 ], + [ 8.0279744, 46.6908717 ], + [ 8.0281239, 46.6908001 ], + [ 8.028282, 46.6906891 ], + [ 8.0285389, 46.690568 ], + [ 8.0290238, 46.690455 ], + [ 8.0292861, 46.690458 ], + [ 8.0295478, 46.6904721 ], + [ 8.0297356, 46.690463 ], + [ 8.0299799, 46.6905334 ], + [ 8.0303137, 46.6905767 ], + [ 8.0306222, 46.6906928 ], + [ 8.0308406, 46.6907911 ], + [ 8.030968, 46.6909335 ], + [ 8.0310306, 46.6910469 ], + [ 8.0311521, 46.6911047 ], + [ 8.0311663, 46.6912007 ], + [ 8.0311878, 46.6912967 ], + [ 8.0313339, 46.6913604 ], + [ 8.0315612, 46.6914419 ], + [ 8.0317889, 46.6914951 ], + [ 8.0320078, 46.6915653 ], + [ 8.0322443, 46.6915961 ], + [ 8.032405, 46.6917162 ], + [ 8.0324682, 46.6918185 ], + [ 8.0325372, 46.691994 ], + [ 8.0325637, 46.6922536 ], + [ 8.0325553, 46.6925975 ], + [ 8.0326361, 46.6929591 ], + [ 8.0327846, 46.6932371 ], + [ 8.0329856, 46.6933802 ], + [ 8.0333693, 46.6934239 ], + [ 8.0337863, 46.6934455 ], + [ 8.034031, 46.6934822 ], + [ 8.0343753, 46.6934353 ], + [ 8.03477, 46.6933608 ], + [ 8.0348086, 46.693457 ], + [ 8.0348228, 46.693553 ], + [ 8.0349029, 46.6936272 ], + [ 8.0348924, 46.6937173 ], + [ 8.0348406, 46.6938351 ], + [ 8.0347285, 46.6940425 ], + [ 8.0346435, 46.6941879 ], + [ 8.034615, 46.6943399 ], + [ 8.0346116, 46.6944751 ], + [ 8.0346731, 46.694645 ], + [ 8.0347994, 46.6948324 ], + [ 8.0348686, 46.6950249 ], + [ 8.0348715, 46.6952166 ], + [ 8.034859, 46.6954137 ], + [ 8.0347721, 46.6956044 ], + [ 8.0346258, 46.6958959 ], + [ 8.0344294, 46.6962433 ], + [ 8.0343075, 46.6965181 ], + [ 8.0342114, 46.6967707 ], + [ 8.0341329, 46.696984 ], + [ 8.0342018, 46.6971539 ], + [ 8.0343738, 46.6974829 ], + [ 8.0345457, 46.6978061 ], + [ 8.034575, 46.6979417 ], + [ 8.0345087, 46.6980029 ], + [ 8.0343761, 46.6980635 ], + [ 8.0341454, 46.6981116 ], + [ 8.0341514, 46.6982075 ], + [ 8.0343502, 46.6984465 ], + [ 8.0345342, 46.6986065 ], + [ 8.0346277, 46.6987879 ], + [ 8.034681, 46.6989519 ], + [ 8.0346924, 46.6991663 ], + [ 8.034737, 46.6993585 ], + [ 8.0347726, 46.6995506 ], + [ 8.0348177, 46.699709 ], + [ 8.0349698, 46.6998628 ], + [ 8.0351043, 46.7000561 ], + [ 8.0352953, 46.7002555 ], + [ 8.0354387, 46.7004375 ], + [ 8.0356558, 46.700564 ], + [ 8.0359317, 46.7006798 ], + [ 8.0362238, 46.7007845 ], + [ 8.0364667, 46.7008718 ], + [ 8.0366532, 46.7009641 ], + [ 8.0368706, 46.7011131 ], + [ 8.0370313, 46.7012333 ], + [ 8.0371814, 46.7014323 ], + [ 8.0372752, 46.7016307 ], + [ 8.0373594, 46.7018571 ], + [ 8.0374279, 46.7020664 ], + [ 8.037449, 46.7021963 ], + [ 8.0375268, 46.7023607 ], + [ 8.037662, 46.7025369 ], + [ 8.0378939, 46.7027425 ], + [ 8.0381686, 46.7028978 ], + [ 8.0384834, 46.7030592 ], + [ 8.0388568, 46.7031986 ], + [ 8.0394589, 46.7033238 ], + [ 8.0400787, 46.7034265 ], + [ 8.0404064, 46.7034245 ], + [ 8.0405879, 46.7033533 ], + [ 8.0407614, 46.7032988 ], + [ 8.0410258, 46.7031947 ], + [ 8.041331, 46.7030854 ], + [ 8.041561, 46.7030429 ], + [ 8.0418718, 46.7030632 ], + [ 8.0424354, 46.7031033 ], + [ 8.0424363, 46.703402 ], + [ 8.0426068, 46.7034547 ], + [ 8.0427605, 46.7035298 ], + [ 8.0428733, 46.7036042 ], + [ 8.0430352, 46.7036794 ], + [ 8.0433536, 46.7037223 ], + [ 8.0435229, 46.7038088 ], + [ 8.043661, 46.703878 ], + [ 8.0437236, 46.7039971 ], + [ 8.0437686, 46.7041498 ], + [ 8.0437636, 46.7043527 ], + [ 8.0437339, 46.7045497 ], + [ 8.0437348, 46.7048484 ], + [ 8.0437777, 46.7051026 ], + [ 8.0438555, 46.7052613 ], + [ 8.0440023, 46.7053024 ], + [ 8.0441073, 46.705343 ], + [ 8.0442044, 46.7054006 ], + [ 8.0442611, 46.7054294 ], + [ 8.0442665, 46.7055421 ], + [ 8.0442554, 46.7056435 ], + [ 8.0442347, 46.7058405 ], + [ 8.044379, 46.7059492 ], + [ 8.0444761, 46.7060124 ], + [ 8.0444825, 46.7060689 ], + [ 8.0444715, 46.7061815 ], + [ 8.0445009, 46.7063228 ], + [ 8.0446037, 46.706459100000004 ], + [ 8.0446321, 46.7066511 ], + [ 8.0446679, 46.7068545 ], + [ 8.0446378, 46.7070909 ], + [ 8.0445737, 46.7073496 ], + [ 8.0456995, 46.7075199 ], + [ 8.0458629, 46.7075161 ], + [ 8.0460206, 46.7074445 ], + [ 8.0461525, 46.7073954 ], + [ 8.0463156, 46.7074365 ], + [ 8.0464446, 46.7074944 ], + [ 8.0465847, 46.7074564 ], + [ 8.0467494, 46.7074189 ], + [ 8.0469287, 46.7074434 ], + [ 8.0471671, 46.7074234 ], + [ 8.0472476, 46.7074583 ], + [ 8.0473207, 46.7074929 ], + [ 8.0474182, 46.7075108 ], + [ 8.0475328, 46.7075234 ], + [ 8.0477213, 46.707503 ], + [ 8.0479841, 46.7074664 ], + [ 8.0482294, 46.7074747 ], + [ 8.0485081, 46.7074722 ], + [ 8.0487855, 46.7075035 ], + [ 8.0490799, 46.7075236 ], + [ 8.0494157, 46.7075104 ], + [ 8.0499634, 46.7075221 ], + [ 8.0503009, 46.7074413 ], + [ 8.0503327, 46.7075037 ], + [ 8.0504449, 46.7076007 ], + [ 8.0505741, 46.7076754 ], + [ 8.050761, 46.7077226 ], + [ 8.0509402, 46.7077415 ], + [ 8.0510956, 46.7077545 ], + [ 8.0512179, 46.7077954 ], + [ 8.0512978, 46.7078526 ], + [ 8.0513944, 46.7079382 ], + [ 8.0515394, 46.708035699999996 ], + [ 8.0517105, 46.7080601 ], + [ 8.0518664, 46.7080449 ], + [ 8.0519068, 46.7080735 ], + [ 8.0519284, 46.7081753 ], + [ 8.0519834, 46.7082717 ], + [ 8.0520559, 46.7083175 ], + [ 8.0521692, 46.7083696 ], + [ 8.0523568, 46.7083998 ], + [ 8.0526344, 46.708448 ], + [ 8.052844, 46.7085518 ], + [ 8.0530306, 46.708644 ], + [ 8.0531667, 46.7087526 ], + [ 8.0532772, 46.7089117 ], + [ 8.0533802, 46.7090538 ], + [ 8.053509, 46.709168 ], + [ 8.0535965, 46.7092479 ], + [ 8.0536201, 46.7093046 ], + [ 8.053723, 46.7094465 ], + [ 8.0538837, 46.7095554 ], + [ 8.0540128, 46.7096245 ], + [ 8.0540778, 46.7096591 ], + [ 8.0541403, 46.7097668 ], + [ 8.0542287, 46.7098468 ], + [ 8.0544572, 46.7098887 ], + [ 8.0546685, 46.7099249 ], + [ 8.0548146, 46.7099773 ], + [ 8.0549859, 46.7100185 ], + [ 8.0550818, 46.7101154 ], + [ 8.0552087, 46.7102747 ], + [ 8.0553385, 46.7103382 ], + [ 8.0554207, 46.7103053 ], + [ 8.0555457, 46.7102277 ], + [ 8.055836, 46.710383 ], + [ 8.0561195, 46.7105159 ], + [ 8.0563517, 46.7107326 ], + [ 8.056554, 46.710842 ], + [ 8.0567153, 46.7109339 ], + [ 8.0568863, 46.7109528 ], + [ 8.0570571, 46.7110223 ], + [ 8.0572779, 46.7110304 ], + [ 8.0574112, 46.7112517 ], + [ 8.057537, 46.711456 ], + [ 8.0576478, 46.7116375 ], + [ 8.0577927, 46.7117237 ], + [ 8.0577256, 46.7117906 ], + [ 8.0576106, 46.7118119 ], + [ 8.0574207, 46.7118662 ], + [ 8.057231699999999, 46.7119149 ], + [ 8.0571793, 46.7120496 ], + [ 8.0571181, 46.7122068 ], + [ 8.0570395, 46.7124088 ], + [ 8.056945, 46.7125769 ], + [ 8.0567531, 46.7127383 ], + [ 8.0566005, 46.7129678 ], + [ 8.0566357, 46.713188 ], + [ 8.0567366, 46.7134315 ], + [ 8.0568619, 46.713664 ], + [ 8.0570256, 46.7139758 ], + [ 8.0572006, 46.714192 ], + [ 8.0573996, 46.7144366 ], + [ 8.0575254, 46.7146409 ], + [ 8.0576033, 46.7148052 ], + [ 8.057565, 46.7150303 ], + [ 8.0574455, 46.7152263 ], + [ 8.0572611, 46.7153991 ], + [ 8.0575398, 46.7154021 ], + [ 8.0578015, 46.7154106 ], + [ 8.058096, 46.7154252 ], + [ 8.0584481, 46.715412 ], + [ 8.0587255, 46.715432 ], + [ 8.0589798, 46.7154405 ], + [ 8.059249, 46.715466 ], + [ 8.0595354, 46.7154861 ], + [ 8.0599278, 46.7154903 ], + [ 8.06028, 46.7154829 ], + [ 8.0605499, 46.7154915 ], + [ 8.0606889, 46.7154986 ], + [ 8.0609974, 46.7155978 ], + [ 8.0614195, 46.715766 ], + [ 8.061728, 46.7158651 ], + [ 8.062152, 46.7159149 ], + [ 8.062600400000001, 46.7160213 ], + [ 8.063074, 46.7160434 ], + [ 8.0638941, 46.7159959 ], + [ 8.0643046, 46.7159328 ], + [ 8.0646329, 46.7159082 ], + [ 8.0649497, 46.7160188 ], + [ 8.0652326, 46.7161628 ], + [ 8.0657272, 46.7163767 ], + [ 8.0659461, 46.7164355 ], + [ 8.0661838, 46.7164212 ], + [ 8.0667511, 46.7163428 ], + [ 8.0672113, 46.7162745 ], + [ 8.0674728, 46.7162662 ], + [ 8.0676996, 46.7163701 ], + [ 8.0680318, 46.7165316 ], + [ 8.0687115, 46.716849 ], + [ 8.0689613, 46.7170266 ], + [ 8.0691313, 46.717090400000004 ], + [ 8.069277, 46.7171821 ], + [ 8.0693893, 46.7172735 ], + [ 8.0695577, 46.7174164 ], + [ 8.0697893, 46.7176444 ], + [ 8.0699912, 46.7177818 ], + [ 8.0700963, 46.7178224 ], + [ 8.070275, 46.7178695 ], + [ 8.0705859, 46.7178897 ], + [ 8.0709195, 46.7179667 ], + [ 8.0712047, 46.7180262 ], + [ 8.0713023, 46.7180554 ], + [ 8.071334, 46.7181065 ], + [ 8.0713732, 46.7181746 ], + [ 8.0714041, 46.7182312 ], + [ 8.0714751, 46.7183561 ], + [ 8.0715297, 46.7184807 ], + [ 8.0715509, 46.7186163 ], + [ 8.0716281, 46.7187862 ], + [ 8.0716898, 46.7189559 ], + [ 8.071687, 46.7190687 ], + [ 8.0716768, 46.7191701 ], + [ 8.0716499, 46.7192486 ], + [ 8.0716325, 46.7192992 ], + [ 8.0716298, 46.7194176 ], + [ 8.0716598, 46.7195307 ], + [ 8.0717305, 46.7196385 ], + [ 8.0718423, 46.7197581 ], + [ 8.0719793, 46.7198723 ], + [ 8.0721084, 46.7199302 ], + [ 8.0722049, 46.7200044 ], + [ 8.0722594, 46.7201178 ], + [ 8.0724251, 46.7203733 ], + [ 8.0728189, 46.7207045 ], + [ 8.0730445, 46.7208423 ], + [ 8.0731477, 46.72099 ], + [ 8.0733166, 46.7211046 ], + [ 8.0735749, 46.7212426 ], + [ 8.0737447, 46.7213572 ], + [ 8.0739159, 46.7213873 ], + [ 8.074093, 46.7214964 ], + [ 8.0739108, 46.7219227 ], + [ 8.0737991, 46.7221583 ], + [ 8.0736948, 46.7223939 ], + [ 8.0735754, 46.7225956 ], + [ 8.0734735, 46.7227635 ], + [ 8.0733965, 46.7228868 ], + [ 8.073302, 46.7230549 ], + [ 8.0732214, 46.723364 ], + [ 8.0731694, 46.7238089 ], + [ 8.0742622, 46.7243337 ], + [ 8.0745055, 46.7244435 ], + [ 8.0746255, 46.7245632 ], + [ 8.0747289, 46.7246658 ], + [ 8.07494, 46.7247526 ], + [ 8.075174, 46.7249073 ], + [ 8.0753003, 46.7250778 ], + [ 8.0754536, 46.7251809 ], + [ 8.0758691, 46.7252644 ], + [ 8.0762036, 46.7253356 ], + [ 8.0765617, 46.7254071 ], + [ 8.0766611, 46.7253744 ], + [ 8.0770346, 46.7251586 ], + [ 8.0772177, 46.7253635 ], + [ 8.0771223, 46.725588 ], + [ 8.0771026, 46.7257232 ], + [ 8.0771426, 46.7257855 ], + [ 8.0772238, 46.7258089 ], + [ 8.0773613, 46.7258838 ], + [ 8.0775401, 46.7259365 ], + [ 8.0777021, 46.7260171 ], + [ 8.0778143, 46.7260973 ], + [ 8.0779855, 46.7261216 ], + [ 8.0783287, 46.7261761 ], + [ 8.0787278, 46.7262537 ], + [ 8.0790947, 46.7263084 ], + [ 8.0795256, 46.7264484 ], + [ 8.0796635, 46.7264893 ], + [ 8.0798038, 46.7264625 ], + [ 8.079952, 46.7264079 ], + [ 8.0805187, 46.7263464 ], + [ 8.0809619, 46.7262891 ], + [ 8.0812248, 46.7262524 ], + [ 8.0813792, 46.7263161 ], + [ 8.0814016, 46.7264123 ], + [ 8.0814061, 46.7265757 ], + [ 8.0814272, 46.7267056 ], + [ 8.0817729, 46.7269686 ], + [ 8.0821542, 46.727125 ], + [ 8.082536, 46.7272587 ], + [ 8.0828049, 46.727318 ], + [ 8.0828554, 46.727234 ], + [ 8.0828926, 46.7270653 ], + [ 8.0829623, 46.7268743 ], + [ 8.083168, 46.7268484 ], + [ 8.0833483, 46.7268165 ], + [ 8.0834864, 46.7268801 ], + [ 8.0836081, 46.7269321 ], + [ 8.0837783, 46.7270128 ], + [ 8.0840128, 46.7271394 ], + [ 8.0843911, 46.7273915 ], + [ 8.084762, 46.7276379 ], + [ 8.0850037, 46.7278152 ], + [ 8.08523, 46.7279361 ], + [ 8.0854329, 46.7280115 ], + [ 8.0856444, 46.7280588 ], + [ 8.0859057, 46.7280956 ], + [ 8.0861593, 46.7281038 ], + [ 8.0864887, 46.7280284 ], + [ 8.0866767, 46.7280248 ], + [ 8.0870319, 46.7279215 ], + [ 8.0872948, 46.7278849 ], + [ 8.0874829, 46.7278926 ], + [ 8.087736, 46.7279292 ], + [ 8.0879234, 46.7279424 ], + [ 8.0880695, 46.7279891 ], + [ 8.0882022, 46.7279397 ], + [ 8.088382, 46.727936 ], + [ 8.088677, 46.7279223 ], + [ 8.0890801, 46.7278477 ], + [ 8.0895504, 46.7277287 ], + [ 8.0897729, 46.7276691 ], + [ 8.0899119, 46.7276705 ], + [ 8.0899676, 46.7277444 ], + [ 8.089997, 46.72788 ], + [ 8.0900586, 46.7280386 ], + [ 8.0902036, 46.7281303 ], + [ 8.0905391, 46.7281509 ], + [ 8.0914312, 46.7281548 ], + [ 8.0926775, 46.728106 ], + [ 8.0927222, 46.7282869 ], + [ 8.0927679, 46.7284113 ], + [ 8.0929529, 46.72856 ], + [ 8.0930494, 46.7286286 ], + [ 8.09313, 46.7286746 ], + [ 8.0932862, 46.7286707 ], + [ 8.093518, 46.7285716 ], + [ 8.0938883, 46.7284967 ], + [ 8.0942442, 46.7283088 ], + [ 8.0943696, 46.728203 ], + [ 8.094561, 46.7280754 ], + [ 8.094718, 46.7280094 ], + [ 8.0949575, 46.7279387 ], + [ 8.0953032, 46.7278578 ], + [ 8.0955594, 46.7277478 ], + [ 8.095673, 46.7278055 ], + [ 8.0958192, 46.7278634 ], + [ 8.0959807, 46.7279608 ], + [ 8.0961097, 46.7280187 ], + [ 8.0962466, 46.7281159 ], + [ 8.096359, 46.7282129 ], + [ 8.0964382, 46.7283378 ], + [ 8.0965413, 46.7284741 ], + [ 8.0966858, 46.7285884 ], + [ 8.0967987, 46.728663 ], + [ 8.0968958, 46.7287147 ], + [ 8.0970349, 46.7287219 ], + [ 8.0971256, 46.7287171 ], + [ 8.0972304, 46.7287916 ], + [ 8.0973928, 46.7288327 ], + [ 8.0975062, 46.7288791 ], + [ 8.0977107, 46.7288925 ], + [ 8.0978911, 46.7288662 ], + [ 8.0979561, 46.7288951 ], + [ 8.0980374, 46.7289297 ], + [ 8.0982219, 46.7291008 ], + [ 8.0982175, 46.7292756 ], + [ 8.0981712, 46.7295062 ], + [ 8.1047903, 46.7266057 ], + [ 8.1047596, 46.7265038 ], + [ 8.1046816, 46.7263396 ], + [ 8.1046857, 46.726148 ], + [ 8.1047713, 46.7259967 ], + [ 8.1047558, 46.7256019 ], + [ 8.1047748, 46.7251511 ], + [ 8.1048205, 46.7249431 ], + [ 8.1048815, 46.7247859 ], + [ 8.1048219, 46.7245315 ], + [ 8.1047779, 46.7243451 ], + [ 8.1048389, 46.7241879 ], + [ 8.1049408, 46.7240312 ], + [ 8.1048386, 46.7238327 ], + [ 8.1046792, 46.7236394 ], + [ 8.1044136, 46.7234505 ], + [ 8.1040907, 46.7232499 ], + [ 8.1040024, 46.7231812 ], + [ 8.1040382, 46.7230408 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "JBG0031", + "country" : "CHE", + "name" : [ + { + "text" : "Eidgenössisches Jagdbanngebiet Schwarzhorn", + "lang" : "de-CH" + }, + { + "text" : "District franc fédéral Schwarzhorn", + "lang" : "fr-CH" + }, + { + "text" : "Bandita federale di caccia Schwarzhorn", + "lang" : "it-CH" + }, + { + "text" : "Federal Game Reserve Schwarzhorn", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7519126, 47.5213577 ], + [ 7.7518413, 47.5213612 ], + [ 7.751037, 47.5218446 ], + [ 7.7507666, 47.5219953 ], + [ 7.7507341, 47.5221978 ], + [ 7.7505607, 47.5222737 ], + [ 7.7503712, 47.5226165 ], + [ 7.7504758, 47.5227328 ], + [ 7.7504608, 47.5229182 ], + [ 7.7505144999999995, 47.5231047 ], + [ 7.7509084999999995, 47.522737 ], + [ 7.7511583, 47.5224704 ], + [ 7.7512508, 47.5223707 ], + [ 7.751531, 47.5219799 ], + [ 7.7517858, 47.5215635 ], + [ 7.7519126, 47.5213577 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns040", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Weiher Brüel", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Weiher Brüel", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Weiher Brüel", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Weiher Brüel", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7580421, 46.3624795 ], + [ 7.7578002999999995, 46.362365 ], + [ 7.7576628, 46.362319 ], + [ 7.757517, 46.3622448 ], + [ 7.7572825, 46.3621417 ], + [ 7.756725, 46.3619348 ], + [ 7.7566932, 46.3628799 ], + [ 7.7566734, 46.3631048 ], + [ 7.7567116, 46.3632513 ], + [ 7.7568391, 46.3633929 ], + [ 7.7570056, 46.3636643 ], + [ 7.7570527, 46.3637996 ], + [ 7.7570422, 46.3639459 ], + [ 7.7569905, 46.3641311 ], + [ 7.7569219, 46.3643388 ], + [ 7.7568539, 46.3645071 ], + [ 7.7567696999999995, 46.3646921 ], + [ 7.7567179, 46.3648718 ], + [ 7.7566825, 46.3650571 ], + [ 7.7566114, 46.3653942 ], + [ 7.7565586, 46.3656638 ], + [ 7.7564887, 46.3659333 ], + [ 7.7566994, 46.3659912 ], + [ 7.7566321, 46.3661483 ], + [ 7.7565072, 46.3663162 ], + [ 7.7564066, 46.3664672 ], + [ 7.7562574, 46.3666462 ], + [ 7.756125, 46.3667802 ], + [ 7.7560657, 46.366926 ], + [ 7.7560297, 46.3671565 ], + [ 7.7559691, 46.3673472 ], + [ 7.7559257, 46.3675607 ], + [ 7.7558494, 46.367712 ], + [ 7.7557578, 46.3678745 ], + [ 7.7556248, 46.3680479 ], + [ 7.7556236, 46.3681211 ], + [ 7.7556623, 46.3682114 ], + [ 7.7554888, 46.3683901 ], + [ 7.7553737, 46.3684342 ], + [ 7.7552477, 46.3686921 ], + [ 7.7551135, 46.3689442 ], + [ 7.7548452, 46.3694373 ], + [ 7.7546767, 46.3697961 ], + [ 7.7546238, 46.3700488 ], + [ 7.754401, 46.3706941 ], + [ 7.7543313, 46.3710031 ], + [ 7.7543207, 46.3711381 ], + [ 7.7543521, 46.3712282 ], + [ 7.7544397, 46.371347 ], + [ 7.7545754, 46.3715 ], + [ 7.7546874, 46.371619 ], + [ 7.754815, 46.3717663 ], + [ 7.7549595, 46.3718969 ], + [ 7.755039, 46.3720099 ], + [ 7.7550942, 46.3721454 ], + [ 7.7551155, 46.3723143 ], + [ 7.7551194, 46.3725732 ], + [ 7.7551189, 46.3726182 ], + [ 7.755084, 46.3727586 ], + [ 7.755066, 46.3728767 ], + [ 7.7550311, 46.3730283 ], + [ 7.7550287, 46.3731745 ], + [ 7.7550418, 46.3733265 ], + [ 7.7550477, 46.3734897 ], + [ 7.7550457999999995, 46.3735854 ], + [ 7.7549946, 46.3737257 ], + [ 7.7549367, 46.3738209 ], + [ 7.7548204, 46.3739381 ], + [ 7.7546973, 46.3739991 ], + [ 7.7545579, 46.3740543 ], + [ 7.7544668, 46.3741661 ], + [ 7.7544325, 46.3742671 ], + [ 7.7544308, 46.3744021 ], + [ 7.7544357999999995, 46.3745598 ], + [ 7.7544421, 46.3746723 ], + [ 7.7544904, 46.374729 ], + [ 7.7545543, 46.3748195 ], + [ 7.7545842, 46.3749379 ], + [ 7.754575, 46.3750277 ], + [ 7.7544838, 46.3751339 ], + [ 7.7544163, 46.3752516 ], + [ 7.7544477, 46.3753363 ], + [ 7.7544872, 46.3754378 ], + [ 7.7545991999999995, 46.3755512 ], + [ 7.7547517, 46.3756537 ], + [ 7.754775, 46.3757495 ], + [ 7.7547725, 46.3758788 ], + [ 7.7547383, 46.3760079 ], + [ 7.7546703, 46.3761875 ], + [ 7.754586, 46.3763557 ], + [ 7.754493, 46.3765519 ], + [ 7.7543925, 46.3767368 ], + [ 7.7543413999999995, 46.3768884 ], + [ 7.7543383, 46.3770458 ], + [ 7.7543522, 46.3771978 ], + [ 7.7543749, 46.377333 ], + [ 7.7543806, 46.377485 ], + [ 7.7543625, 46.3775693 ], + [ 7.7543695, 46.3776594 ], + [ 7.7544322, 46.3778229 ], + [ 7.7544778, 46.3779808 ], + [ 7.7544599, 46.3781214 ], + [ 7.7544574, 46.3782507 ], + [ 7.7544231, 46.3783574 ], + [ 7.7544532, 46.3785039 ], + [ 7.7544759, 46.3786278 ], + [ 7.7545292, 46.3788478 ], + [ 7.7545912999999995, 46.3790507 ], + [ 7.7546526, 46.3792594 ], + [ 7.7547309, 46.3794401 ], + [ 7.7548098, 46.3796037 ], + [ 7.7549131, 46.3797678 ], + [ 7.7549919, 46.3799033 ], + [ 7.7550145, 46.380016 ], + [ 7.7550216, 46.3801173 ], + [ 7.7550747, 46.3803146 ], + [ 7.7551687, 46.3805462 ], + [ 7.7552315, 46.380721 ], + [ 7.7553102, 46.3808511 ], + [ 7.7554317, 46.3809251 ], + [ 7.7556413, 46.3810561 ], + [ 7.7557294, 46.3811186 ], + [ 7.7558007, 46.3812317 ], + [ 7.755824, 46.3813331 ], + [ 7.7558216, 46.3814682 ], + [ 7.7558023, 46.3816368 ], + [ 7.7557756, 46.3817942 ], + [ 7.75579, 46.3819069 ], + [ 7.7558283, 46.3820477 ], + [ 7.7559716, 46.3822402 ], + [ 7.7562038, 46.3825007 ], + [ 7.7562432999999995, 46.3825911 ], + [ 7.7562896, 46.3827152 ], + [ 7.756361, 46.3828395 ], + [ 7.7563085, 46.3830417 ], + [ 7.7563462, 46.3832333 ], + [ 7.7564665, 46.3833748 ], + [ 7.7566343, 46.3835843 ], + [ 7.7566633, 46.3836917 ], + [ 7.7566874, 46.3837816 ], + [ 7.7566997, 46.3840686 ], + [ 7.7567199, 46.3843276 ], + [ 7.7565964, 46.3848836 ], + [ 7.7571596, 46.3847754 ], + [ 7.7572461, 46.3849786 ], + [ 7.7573019, 46.3850635 ], + [ 7.7573088, 46.3851423 ], + [ 7.7572751, 46.3852094 ], + [ 7.7572089, 46.3852765 ], + [ 7.7571501, 46.3853661 ], + [ 7.7571158, 46.3854783 ], + [ 7.7571221999999995, 46.3855909 ], + [ 7.7570967, 46.3856808 ], + [ 7.7570542, 46.3857761 ], + [ 7.7569467, 46.3858652 ], + [ 7.7568887, 46.3859493 ], + [ 7.756805, 46.3860836 ], + [ 7.7567951, 46.3862017 ], + [ 7.7568494999999995, 46.3863316 ], + [ 7.7569204, 46.3865009 ], + [ 7.7570475, 46.3867043 ], + [ 7.7571264, 46.3868457 ], + [ 7.7572633, 46.3869254 ], + [ 7.7574092, 46.3869996 ], + [ 7.7575786, 46.3870684 ], + [ 7.7576993, 46.3871426 ], + [ 7.757772, 46.3872162 ], + [ 7.7578515, 46.3873238 ], + [ 7.7579309, 46.3874312 ], + [ 7.7580272, 46.3875051 ], + [ 7.7581556, 46.3876411 ], + [ 7.7582032, 46.3877203 ], + [ 7.7582578, 46.3878782 ], + [ 7.7583373, 46.3880082 ], + [ 7.7586018, 46.388224 ], + [ 7.7588429, 46.3884565 ], + [ 7.7589617, 46.3886263 ], + [ 7.7590326, 46.3887956 ], + [ 7.7590471999999995, 46.3889195 ], + [ 7.7590202, 46.3890317 ], + [ 7.7589065999999995, 46.3890534 ], + [ 7.7588007999999995, 46.3890245 ], + [ 7.7585784, 46.3892028 ], + [ 7.7586091, 46.3893099 ], + [ 7.7586881, 46.3894681 ], + [ 7.7587918, 46.3895701 ], + [ 7.7589528, 46.3897177 ], + [ 7.7590154, 46.3898588 ], + [ 7.759063, 46.3899379 ], + [ 7.7592074, 46.3900459 ], + [ 7.7593847, 46.3901991 ], + [ 7.7593833, 46.3902497 ], + [ 7.7593571, 46.3903509 ], + [ 7.7592734, 46.3904908 ], + [ 7.7592392, 46.3906031 ], + [ 7.7592293, 46.3907212 ], + [ 7.7592919, 46.390868 ], + [ 7.7593965, 46.3909701 ], + [ 7.7595416, 46.3910499 ], + [ 7.7595879, 46.3911853 ], + [ 7.7596824, 46.3913773 ], + [ 7.7598021, 46.3915526 ], + [ 7.7598579, 46.3916374 ], + [ 7.7598811, 46.3917164 ], + [ 7.7599605, 46.3918183 ], + [ 7.7600725, 46.3919317 ], + [ 7.7601776000000005, 46.3919887 ], + [ 7.7602008, 46.3920564 ], + [ 7.7602564, 46.3921243 ], + [ 7.7603535, 46.3921926 ], + [ 7.7604092, 46.3922661 ], + [ 7.7604886, 46.3923736 ], + [ 7.7605687, 46.3924473 ], + [ 7.7607384, 46.3925668 ], + [ 7.7609485, 46.3926359 ], + [ 7.7611273, 46.3926542 ], + [ 7.7612155, 46.3927336 ], + [ 7.7612389, 46.3928351 ], + [ 7.7613107, 46.3928862 ], + [ 7.7614084, 46.3929151 ], + [ 7.7615058999999995, 46.3929158 ], + [ 7.7616271999999995, 46.3929617 ], + [ 7.7617731, 46.3930303 ], + [ 7.7618775, 46.3930986 ], + [ 7.7620645, 46.3931169 ], + [ 7.7623085, 46.393147 ], + [ 7.7625116, 46.3931542 ], + [ 7.7627486999999995, 46.3931165 ], + [ 7.7629769, 46.3930901 ], + [ 7.7631889, 46.3930804 ], + [ 7.7633515, 46.3931041 ], + [ 7.7634892, 46.3931559 ], + [ 7.7635686, 46.3932521 ], + [ 7.7636319, 46.3933764 ], + [ 7.7637765, 46.3935069 ], + [ 7.7639536, 46.3936376 ], + [ 7.764235, 46.3938254 ], + [ 7.7643884, 46.3939221 ], + [ 7.7644204, 46.3939731 ], + [ 7.7645894, 46.3941037 ], + [ 7.7648308, 46.3942575 ], + [ 7.7650248, 46.3943602 ], + [ 7.7651631, 46.3943837 ], + [ 7.7654232, 46.3944025 ], + [ 7.7656996, 46.3944159 ], + [ 7.7660336, 46.3944185 ], + [ 7.766113, 46.3945147 ], + [ 7.7662989, 46.3946286 ], + [ 7.766581, 46.3947826 ], + [ 7.7667587000000005, 46.3948684 ], + [ 7.7668727, 46.394903 ], + [ 7.7669609, 46.3949824 ], + [ 7.7669920999999995, 46.395039 ], + [ 7.767016, 46.3950954 ], + [ 7.7670474, 46.3951801 ], + [ 7.7670862, 46.3952703 ], + [ 7.7671738, 46.3953835 ], + [ 7.7672302, 46.3954345 ], + [ 7.7672947, 46.3954914 ], + [ 7.7673505, 46.3955705 ], + [ 7.7673574, 46.3956381 ], + [ 7.7673725000000005, 46.3957225 ], + [ 7.7674114, 46.3958298 ], + [ 7.7674258, 46.3959255 ], + [ 7.7674734, 46.3960158 ], + [ 7.7675861, 46.3961011 ], + [ 7.7677156, 46.3961471 ], + [ 7.7679751, 46.396194 ], + [ 7.768333, 46.3962417 ], + [ 7.768617, 46.3963059 ], + [ 7.7689097, 46.3963304 ], + [ 7.7690961, 46.3963825 ], + [ 7.7691937, 46.3964002 ], + [ 7.7693318, 46.3963956 ], + [ 7.7694464, 46.3963907 ], + [ 7.7697227, 46.3963929 ], + [ 7.7699185, 46.3963943 ], + [ 7.7701387, 46.3963848 ], + [ 7.7703426, 46.3963638 ], + [ 7.7705295, 46.3963594 ], + [ 7.7707485, 46.3964287 ], + [ 7.7710162, 46.3964813 ], + [ 7.7712841, 46.3965677 ], + [ 7.7716487, 46.3966605 ], + [ 7.7718101, 46.396746 ], + [ 7.7719316, 46.3968031 ], + [ 7.7721088, 46.3969339 ], + [ 7.7723984, 46.3971274 ], + [ 7.7726163, 46.397264 ], + [ 7.7727696, 46.3973439 ], + [ 7.7729235, 46.3973957 ], + [ 7.7730611, 46.3974417 ], + [ 7.7731902, 46.3975552 ], + [ 7.7734293, 46.397844 ], + [ 7.7738226, 46.3982125 ], + [ 7.7739272, 46.3983146 ], + [ 7.7740725, 46.398417 ], + [ 7.7742413, 46.3985083 ], + [ 7.7743708, 46.3985655 ], + [ 7.7745573, 46.3986288 ], + [ 7.7747432, 46.398737 ], + [ 7.7748483, 46.3987772 ], + [ 7.775002, 46.3988065 ], + [ 7.7751646999999995, 46.3988359 ], + [ 7.775343, 46.3988821 ], + [ 7.7756837999999995, 46.398941 ], + [ 7.775919, 46.3990047 ], + [ 7.7761468, 46.3990514 ], + [ 7.7763568, 46.3991149 ], + [ 7.7764945, 46.3991778 ], + [ 7.7766634, 46.3992859 ], + [ 7.7767843, 46.3993882 ], + [ 7.7770250999999995, 46.3995812 ], + [ 7.7771541, 46.3996778 ], + [ 7.7772831, 46.3997745 ], + [ 7.7774614, 46.3998264 ], + [ 7.7776808, 46.3998393 ], + [ 7.7779411, 46.399875 ], + [ 7.7781686, 46.3998824 ], + [ 7.7784607999999995, 46.3999465 ], + [ 7.7786872, 46.4000325 ], + [ 7.7788087, 46.4001065 ], + [ 7.7790095, 46.4002544 ], + [ 7.7792034999999995, 46.4003515 ], + [ 7.7793893, 46.4004428 ], + [ 7.7796658999999995, 46.4004842 ], + [ 7.7804464, 46.400552 ], + [ 7.780531, 46.4003107 ], + [ 7.7806247, 46.4000806 ], + [ 7.7807088, 46.3998957 ], + [ 7.7809006, 46.3996439 ], + [ 7.7810736, 46.3994989 ], + [ 7.7812866, 46.3993936 ], + [ 7.7815649, 46.3993168 ], + [ 7.7817781, 46.3992452 ], + [ 7.7820718, 46.3991687 ], + [ 7.782293, 46.3990803 ], + [ 7.7824098, 46.3989068 ], + [ 7.7825185, 46.3987501 ], + [ 7.7825689, 46.3986266 ], + [ 7.78253, 46.3985138 ], + [ 7.7825074, 46.398418 ], + [ 7.7825011, 46.3983167 ], + [ 7.782479, 46.3981646 ], + [ 7.7824812, 46.3980071 ], + [ 7.7824911, 46.3979002 ], + [ 7.7825667, 46.397777 ], + [ 7.7826158, 46.3976946 ], + [ 7.7826503, 46.3976371 ], + [ 7.7827020000000005, 46.3974574 ], + [ 7.7828104, 46.3972557 ], + [ 7.7829702, 46.396953 ], + [ 7.7829794, 46.396863 ], + [ 7.7830388, 46.3967454 ], + [ 7.7831055, 46.3966389 ], + [ 7.7831497, 46.3964256 ], + [ 7.7832094, 46.396229 ], + [ 7.7832611, 46.3960606 ], + [ 7.7832478, 46.3958917 ], + [ 7.7832325, 46.3957848 ], + [ 7.7832193, 46.3956215 ], + [ 7.7832216, 46.3954808 ], + [ 7.7832389, 46.3953797 ], + [ 7.783307, 46.3952339 ], + [ 7.7833662, 46.3950881 ], + [ 7.7834248, 46.3949704 ], + [ 7.7834997999999995, 46.3948866 ], + [ 7.7835659, 46.394797 ], + [ 7.7836157, 46.3947186 ], + [ 7.7836593, 46.3945446 ], + [ 7.7837599, 46.3943877 ], + [ 7.7838597, 46.3942309 ], + [ 7.7839759, 46.3941193 ], + [ 7.7840339, 46.3940353 ], + [ 7.7840275, 46.3939228 ], + [ 7.7840775, 46.3938612 ], + [ 7.7841517, 46.393783 ], + [ 7.7842605, 46.393632 ], + [ 7.7843677, 46.3935033 ], + [ 7.7844752, 46.3934084 ], + [ 7.7847639, 46.3932024 ], + [ 7.7848138, 46.393124 ], + [ 7.7848475, 46.3930455 ], + [ 7.7849067, 46.3929053 ], + [ 7.7850391, 46.3927769 ], + [ 7.7851634, 46.3926427 ], + [ 7.785222, 46.3925306 ], + [ 7.785387, 46.3924137 ], + [ 7.7856162, 46.3923028 ], + [ 7.7857488, 46.3921856 ], + [ 7.7859468, 46.3920183 ], + [ 7.7860803, 46.3918055 ], + [ 7.7861227, 46.3917046 ], + [ 7.7861650000000004, 46.3915923 ], + [ 7.786176, 46.3914068 ], + [ 7.7862608, 46.3911936 ], + [ 7.7863119, 46.3910589 ], + [ 7.7863171, 46.390727 ], + [ 7.7863117, 46.390518900000004 ], + [ 7.7863078, 46.3902881 ], + [ 7.7863506000000005, 46.3901197 ], + [ 7.7864099, 46.389985 ], + [ 7.7865421999999995, 46.3898453 ], + [ 7.7866996, 46.3896833 ], + [ 7.7867116, 46.3896522 ], + [ 7.7867676, 46.3895094 ], + [ 7.7868437, 46.3893468 ], + [ 7.7869836, 46.3892354 ], + [ 7.7872146, 46.3890289 ], + [ 7.7873389, 46.3888947 ], + [ 7.7874144, 46.3887602 ], + [ 7.7875974, 46.388531 ], + [ 7.787746, 46.3884026 ], + [ 7.7878778, 46.388291 ], + [ 7.7880596, 46.3881348 ], + [ 7.7882989, 46.3879453 ], + [ 7.7885536, 46.3877559 ], + [ 7.7888086, 46.3876059 ], + [ 7.7890228, 46.3874443 ], + [ 7.7892614, 46.3872659 ], + [ 7.7894176, 46.3871715 ], + [ 7.7896395, 46.3870661 ], + [ 7.789942, 46.3869839 ], + [ 7.7903427, 46.3868686 ], + [ 7.7904907, 46.3867742 ], + [ 7.7905418, 46.3866339 ], + [ 7.7906086, 46.3865386 ], + [ 7.7906828, 46.3864492 ], + [ 7.790889, 46.3862932 ], + [ 7.7909477, 46.3862036 ], + [ 7.7911933, 46.3861098 ], + [ 7.7913976, 46.3860437 ], + [ 7.7915452, 46.3859941 ], + [ 7.7917095, 46.385911 ], + [ 7.7918251, 46.3858105 ], + [ 7.7920136, 46.3856937 ], + [ 7.7922685, 46.3855324 ], + [ 7.7924996, 46.3853315 ], + [ 7.7927882, 46.3851199 ], + [ 7.7932162, 46.384836 ], + [ 7.7936758, 46.3845524 ], + [ 7.7939720999999995, 46.3843857 ], + [ 7.7941937, 46.3842411 ], + [ 7.7944236, 46.3841078 ], + [ 7.7946212, 46.384008 ], + [ 7.7948342, 46.3839026 ], + [ 7.7949503, 46.3837684 ], + [ 7.7950908, 46.3836457 ], + [ 7.7951419, 46.3834997 ], + [ 7.7952098, 46.3833314 ], + [ 7.7952363, 46.3831628 ], + [ 7.7952153, 46.3829319 ], + [ 7.7950608, 46.3824076 ], + [ 7.7952077, 46.3823862 ], + [ 7.7953547, 46.382376 ], + [ 7.7955427, 46.3823098 ], + [ 7.7956584, 46.3822318 ], + [ 7.7957739, 46.3821257 ], + [ 7.7959306, 46.3819919 ], + [ 7.7961117, 46.3818638 ], + [ 7.7963085, 46.3817696 ], + [ 7.7964554, 46.3817425 ], + [ 7.7967168000000004, 46.381705 ], + [ 7.7969273999999995, 46.381746 ], + [ 7.7971221, 46.3818205 ], + [ 7.7973734, 46.3818673 ], + [ 7.7975262, 46.3819865 ], + [ 7.7977597, 46.382174 ], + [ 7.7980495, 46.3823786 ], + [ 7.7982909, 46.382521 ], + [ 7.7984287, 46.3825895 ], + [ 7.7985917, 46.3825513 ], + [ 7.7987149, 46.3824959 ], + [ 7.7988623, 46.3824408 ], + [ 7.7989935, 46.3823685 ], + [ 7.7991667, 46.3822685 ], + [ 7.7993134, 46.3822133 ], + [ 7.7994933, 46.3821584 ], + [ 7.7996978, 46.3821205 ], + [ 7.7998302, 46.3819864 ], + [ 7.7999944, 46.3818751 ], + [ 7.8001424, 46.3817804 ], + [ 7.8003718, 46.381709 ], + [ 7.8007475, 46.3816329 ], + [ 7.8009844, 46.3815839 ], + [ 7.8011479999999995, 46.3815064 ], + [ 7.8012311, 46.3814282 ], + [ 7.8012234, 46.3813606 ], + [ 7.801152, 46.3812532 ], + [ 7.8010724, 46.3811458 ], + [ 7.8009121, 46.3809758 ], + [ 7.800785, 46.3808005 ], + [ 7.8006902, 46.3805917 ], + [ 7.8006768, 46.3804059 ], + [ 7.8006069, 46.3801634 ], + [ 7.8005791, 46.3798875 ], + [ 7.8006167, 46.3795614 ], + [ 7.8006613, 46.3793086 ], + [ 7.8007622, 46.3790898 ], + [ 7.8008794, 46.3788825 ], + [ 7.8010286, 46.3787092 ], + [ 7.8011928, 46.3786035 ], + [ 7.8012678, 46.3785196 ], + [ 7.8013669, 46.3784079 ], + [ 7.8014667, 46.3782622 ], + [ 7.8015416, 46.3781615 ], + [ 7.8016572, 46.3780835 ], + [ 7.8017883, 46.3780114 ], + [ 7.801985, 46.3779059 ], + [ 7.8021013, 46.3777998 ], + [ 7.8021437, 46.3776931 ], + [ 7.8022033, 46.3775024 ], + [ 7.8022717, 46.377289 ], + [ 7.8024289, 46.3771045 ], + [ 7.8027657999999995, 46.3769438 ], + [ 7.8029857, 46.3769172 ], + [ 7.803124, 46.3769407 ], + [ 7.8032941000000005, 46.3769813 ], + [ 7.8034397, 46.3770105 ], + [ 7.8035699, 46.3770508 ], + [ 7.8037962, 46.37712 ], + [ 7.8039589, 46.3771549 ], + [ 7.8041865999999995, 46.3771846 ], + [ 7.8044472, 46.3771696 ], + [ 7.8046922, 46.3771207 ], + [ 7.8049365, 46.3770775 ], + [ 7.8051566999999995, 46.3770903 ], + [ 7.8053748, 46.3771538 ], + [ 7.8055044, 46.377211 ], + [ 7.8056345, 46.3772345 ], + [ 7.8058133, 46.377247 ], + [ 7.8059603, 46.3772424 ], + [ 7.8062204, 46.3772555 ], + [ 7.8064399, 46.3772851 ], + [ 7.8066093, 46.3773426 ], + [ 7.8068197, 46.3774679 ], + [ 7.8069717, 46.3775984 ], + [ 7.8072052, 46.377769 ], + [ 7.8074224999999995, 46.3779562 ], + [ 7.807599, 46.378098 ], + [ 7.8078251, 46.3782572 ], + [ 7.8080828, 46.378411 ], + [ 7.8082518, 46.3785247 ], + [ 7.8086013, 46.378561 ], + [ 7.8090402999999995, 46.3785979 ], + [ 7.8092923, 46.3786221 ], + [ 7.8094956, 46.3786461 ], + [ 7.8097638, 46.3786648 ], + [ 7.8099839, 46.3786609 ], + [ 7.8101634, 46.3786565 ], + [ 7.8103589, 46.3786185 ], + [ 7.8105883, 46.378547 ], + [ 7.8108101, 46.3784305 ], + [ 7.8110568, 46.378269 ], + [ 7.8113121, 46.3780571 ], + [ 7.8116584, 46.3777388 ], + [ 7.8118164, 46.3775543 ], + [ 7.811876, 46.377369 ], + [ 7.8118701, 46.3772227 ], + [ 7.8118061, 46.3771322 ], + [ 7.8117929, 46.3769746 ], + [ 7.8118339, 46.376913 ], + [ 7.8118763, 46.3768233 ], + [ 7.8119431, 46.3767281 ], + [ 7.8119929, 46.3766496 ], + [ 7.812019, 46.3765486 ], + [ 7.8120699, 46.3763914 ], + [ 7.8121297, 46.376223 ], + [ 7.812229, 46.3761281 ], + [ 7.8123930999999995, 46.3760224 ], + [ 7.8125087, 46.3759388 ], + [ 7.8125754, 46.3758267 ], + [ 7.8126674, 46.3756305 ], + [ 7.8127771, 46.3753893 ], + [ 7.8128779999999995, 46.3751818 ], + [ 7.8130106999999995, 46.3749971 ], + [ 7.8131194, 46.3748517 ], + [ 7.8132192, 46.3747172 ], + [ 7.8134008, 46.3745442 ], + [ 7.8135424, 46.3743426 ], + [ 7.8136902, 46.3742312 ], + [ 7.8138544, 46.374131 ], + [ 7.8140263, 46.374076 ], + [ 7.8141656, 46.3740207 ], + [ 7.8142318, 46.3739536 ], + [ 7.8142498, 46.3738581 ], + [ 7.814227, 46.3737286 ], + [ 7.8141961, 46.3736102 ], + [ 7.8140927, 46.3734632 ], + [ 7.8140043, 46.3733669 ], + [ 7.8139081, 46.3733099 ], + [ 7.8138105, 46.373298 ], + [ 7.8136716, 46.3732971 ], + [ 7.8135585, 46.3732681 ], + [ 7.8134296, 46.373194 ], + [ 7.8126043, 46.3728336 ], + [ 7.812631, 46.3727045 ], + [ 7.8126647, 46.3726428 ], + [ 7.8126827, 46.3725361 ], + [ 7.8126673, 46.372429 ], + [ 7.8126685, 46.3723672 ], + [ 7.8126695, 46.3722827 ], + [ 7.8127032, 46.3722212 ], + [ 7.8127775, 46.3721598 ], + [ 7.8128273, 46.3720757 ], + [ 7.8129184, 46.3719751 ], + [ 7.8130746, 46.3718917 ], + [ 7.8131245, 46.3718247 ], + [ 7.8131175, 46.3717458 ], + [ 7.8130942, 46.3716669 ], + [ 7.8130797, 46.3715767 ], + [ 7.8130977, 46.37147 ], + [ 7.8131893, 46.3713243 ], + [ 7.8132722999999995, 46.3712237 ], + [ 7.8134201, 46.3711122 ], + [ 7.8136336, 46.3709786 ], + [ 7.8138073, 46.3708336 ], + [ 7.8139872, 46.3707786 ], + [ 7.8140295, 46.370672 ], + [ 7.8140554, 46.3705428 ], + [ 7.8140746, 46.3703742 ], + [ 7.8140768, 46.3702222 ], + [ 7.8140307, 46.370025 ], + [ 7.8140493, 46.3698844 ], + [ 7.8140509, 46.369772 ], + [ 7.8141414000000005, 46.369705 ], + [ 7.8142581, 46.369554 ], + [ 7.8144316, 46.3693808 ], + [ 7.8146051, 46.3692245 ], + [ 7.8147780000000004, 46.369085 ], + [ 7.8148777, 46.3689451 ], + [ 7.8148869, 46.3688664 ], + [ 7.814921, 46.3687485 ], + [ 7.8149633, 46.3686419 ], + [ 7.8150793, 46.3685021 ], + [ 7.815171, 46.3683733 ], + [ 7.8152394, 46.3681656 ], + [ 7.8153507, 46.3678119 ], + [ 7.8154499, 46.3677169 ], + [ 7.8155079, 46.3676386 ], + [ 7.8156227, 46.3675606 ], + [ 7.8157457, 46.3675053 ], + [ 7.8158607, 46.3674498 ], + [ 7.8159918, 46.3673889 ], + [ 7.8160673, 46.3672657 ], + [ 7.8161259, 46.3671591 ], + [ 7.8161588, 46.3671032 ], + [ 7.8162088, 46.3670528 ], + [ 7.816308, 46.3669523 ], + [ 7.8164315, 46.3668461 ], + [ 7.816572, 46.3667178 ], + [ 7.8166055, 46.3666336 ], + [ 7.8166065, 46.3665493 ], + [ 7.8166413, 46.3664032 ], + [ 7.8166592999999995, 46.3663077 ], + [ 7.8167016, 46.3662011 ], + [ 7.8167764, 46.3661059 ], + [ 7.8168744, 46.366056 ], + [ 7.8170631, 46.3659786 ], + [ 7.8172361, 46.3658673 ], + [ 7.8173927, 46.3657334 ], + [ 7.8175736, 46.3655771 ], + [ 7.8177389999999995, 46.3654207 ], + [ 7.8178549, 46.3652753 ], + [ 7.8180093, 46.3652875 ], + [ 7.8182132, 46.3652946 ], + [ 7.81836, 46.3652619 ], + [ 7.8184823, 46.3652178 ], + [ 7.8186136, 46.3651738 ], + [ 7.8187448, 46.3651128 ], + [ 7.8189079, 46.365097 ], + [ 7.819176, 46.3651046 ], + [ 7.8193224, 46.3651393 ], + [ 7.8194524, 46.3651516 ], + [ 7.8196069, 46.3651695 ], + [ 7.8197367, 46.3651536 ], + [ 7.8198599, 46.3651151 ], + [ 7.8199417, 46.3650817 ], + [ 7.8200648, 46.3650264 ], + [ 7.8201789, 46.3649709 ], + [ 7.8204077, 46.3649331 ], + [ 7.8206108, 46.3649458 ], + [ 7.8208307999999995, 46.3649306 ], + [ 7.8211808, 46.3649217 ], + [ 7.8214496, 46.364918 ], + [ 7.8216695, 46.3648857 ], + [ 7.8219065, 46.364865 ], + [ 7.822012, 46.3648545 ], + [ 7.8220539, 46.364804 ], + [ 7.8220948, 46.3647425 ], + [ 7.822218, 46.3646983 ], + [ 7.8224948, 46.3646777 ], + [ 7.8226824, 46.3646734 ], + [ 7.8228531, 46.3646916 ], + [ 7.8229831, 46.3647038 ], + [ 7.823105, 46.3647102 ], + [ 7.823211, 46.3646659 ], + [ 7.8232947, 46.364554 ], + [ 7.8234095, 46.3644704 ], + [ 7.823573, 46.3644041 ], + [ 7.82381, 46.3643775 ], + [ 7.8239486, 46.3643391 ], + [ 7.8240304, 46.3643003 ], + [ 7.8241454, 46.3642562 ], + [ 7.8243416, 46.3642069 ], + [ 7.8245616, 46.3641915 ], + [ 7.8246834, 46.3641924 ], + [ 7.824911, 46.3642165 ], + [ 7.8249923, 46.3642339 ], + [ 7.8250899, 46.3642458 ], + [ 7.825456, 46.3642259 ], + [ 7.8257985, 46.364189 ], + [ 7.8262542, 46.3641921 ], + [ 7.8266612, 46.3642063 ], + [ 7.8268968999999995, 46.3642304 ], + [ 7.8271892, 46.3642268 ], + [ 7.8274911, 46.3641952 ], + [ 7.8276948, 46.3641685 ], + [ 7.8279722, 46.3641253 ], + [ 7.8282422, 46.3640598 ], + [ 7.8285028, 46.3640447 ], + [ 7.8287964, 46.3639905 ], + [ 7.8293427, 46.3639437 ], + [ 7.8296195, 46.3639174 ], + [ 7.8300106, 46.3638752 ], + [ 7.8304675, 46.3638276 ], + [ 7.831143, 46.3637986 ], + [ 7.8316967, 46.3637687 ], + [ 7.8320554, 46.3637206 ], + [ 7.8323498, 46.363672 ], + [ 7.8329008, 46.3638221 ], + [ 7.8332897, 46.3639204 ], + [ 7.8336143, 46.3640014 ], + [ 7.8338484, 46.3641324 ], + [ 7.8346388000000005, 46.3646105 ], + [ 7.8349515, 46.364382 ], + [ 7.835116, 46.3642313 ], + [ 7.835256, 46.3641535 ], + [ 7.8355339, 46.3640654 ], + [ 7.8357218, 46.3639991 ], + [ 7.836186, 46.3638379 ], + [ 7.8362228, 46.3639782 ], + [ 7.836257, 46.3641018 ], + [ 7.8362506, 46.36422 ], + [ 7.8362038, 46.3643779 ], + [ 7.8361485, 46.3644739 ], + [ 7.8361341, 46.3646205 ], + [ 7.836087, 46.3647277 ], + [ 7.8359982, 46.3648016 ], + [ 7.835943, 46.3649257 ], + [ 7.8358871, 46.3650443 ], + [ 7.8358319, 46.3651686 ], + [ 7.8357768, 46.3652871 ], + [ 7.8357302, 46.3654675 ], + [ 7.8357242, 46.3656477 ], + [ 7.835768, 46.3658612 ], + [ 7.8357546, 46.3660301 ], + [ 7.8357564, 46.3661652 ], + [ 7.8358072, 46.3663393 ], + [ 7.8358099, 46.3664856 ], + [ 7.8357537, 46.3665816 ], + [ 7.835731, 46.3666887 ], + [ 7.8357411, 46.3668462 ], + [ 7.8358187, 46.3671269 ], + [ 7.8360442, 46.3675305 ], + [ 7.8361588, 46.3675409 ], + [ 7.8364282, 46.3676234 ], + [ 7.836724, 46.3677561 ], + [ 7.8370679, 46.3679112 ], + [ 7.8374205, 46.368038 ], + [ 7.837667, 46.368205 ], + [ 7.8380849, 46.3683706 ], + [ 7.8384374999999995, 46.3684975 ], + [ 7.8386742, 46.3685464 ], + [ 7.8388943, 46.3685391 ], + [ 7.8390241, 46.3685212 ], + [ 7.8392036, 46.3685199 ], + [ 7.8394724, 46.368518 ], + [ 7.8398235, 46.3685378 ], + [ 7.8401005, 46.3685413 ], + [ 7.8404019, 46.3685504 ], + [ 7.8407283, 46.368548 ], + [ 7.8411514, 46.3685335 ], + [ 7.8416241, 46.3685413 ], + [ 7.8419833, 46.3685611 ], + [ 7.8423844, 46.3686537 ], + [ 7.8430388, 46.3688401 ], + [ 7.8443249999999995, 46.3693426 ], + [ 7.8450048, 46.3695626 ], + [ 7.8457094, 46.369833 ], + [ 7.846202, 46.3700994 ], + [ 7.8464659999999995, 46.3703225 ], + [ 7.8465888, 46.3703385 ], + [ 7.8466945, 46.3703602 ], + [ 7.8468418, 46.3703928 ], + [ 7.8469728, 46.3704313 ], + [ 7.8471457000000004, 46.3705201 ], + [ 7.8472933, 46.3705977 ], + [ 7.8474988, 46.3707143 ], + [ 7.8477612, 46.3708194 ], + [ 7.847891, 46.3708071 ], + [ 7.8479805, 46.3708233 ], + [ 7.8481449, 46.3708726 ], + [ 7.84826, 46.3709393 ], + [ 7.8484483, 46.3710392 ], + [ 7.8485387, 46.3710611 ], + [ 7.8486373, 46.3711109 ], + [ 7.848727, 46.3711609 ], + [ 7.8489813999999996, 46.3712885 ], + [ 7.8493759, 46.3714712 ], + [ 7.8496795, 46.3716546 ], + [ 7.8499349, 46.3718102 ], + [ 7.8501487, 46.3719436 ], + [ 7.8503372, 46.3720548 ], + [ 7.8505265, 46.3721771 ], + [ 7.8506094, 46.3722835 ], + [ 7.8506756, 46.3723448 ], + [ 7.8507501, 46.3724175 ], + [ 7.8508084, 46.3724959 ], + [ 7.8509399, 46.3725904 ], + [ 7.8510712, 46.3726682 ], + [ 7.8513094, 46.3728072 ], + [ 7.8516627, 46.3730071 ], + [ 7.8520658999999995, 46.3732684 ], + [ 7.8525756, 46.3735348 ], + [ 7.852994, 46.3737511 ], + [ 7.8534214, 46.3739897 ], + [ 7.8537493, 46.3741617 ], + [ 7.8540279, 46.3742665 ], + [ 7.854241, 46.3743044 ], + [ 7.8544449, 46.3743141 ], + [ 7.8546075, 46.3743296 ], + [ 7.8548126, 46.3743788 ], + [ 7.8550332, 46.3744502 ], + [ 7.8553525, 46.3745547 ], + [ 7.8557619, 46.3746641 ], + [ 7.856146, 46.3747625 ], + [ 7.8568161, 46.3748587 ], + [ 7.8570362, 46.374857 ], + [ 7.8571577999999995, 46.3748168 ], + [ 7.8573614, 46.3747871 ], + [ 7.8575398, 46.3747406 ], + [ 7.8577676, 46.374694 ], + [ 7.8580107, 46.3746077 ], + [ 7.8582539, 46.3745439 ], + [ 7.8585627, 46.3744684 ], + [ 7.8588075, 46.374506 ], + [ 7.8586148, 46.3746874 ], + [ 7.8584952999999995, 46.3748797 ], + [ 7.8583756000000005, 46.375055 ], + [ 7.8582965, 46.3752302 ], + [ 7.8582495, 46.3753431 ], + [ 7.8582108999999996, 46.375501 ], + [ 7.8581968, 46.3756811 ], + [ 7.8582066, 46.3757936 ], + [ 7.8582328, 46.3759172 ], + [ 7.8582763, 46.3760857 ], + [ 7.8583352, 46.3762372 ], + [ 7.8583464, 46.3764284 ], + [ 7.8583902, 46.3766363 ], + [ 7.8583842, 46.3767995 ], + [ 7.8583699, 46.3769517 ], + [ 7.8583485, 46.3771206 ], + [ 7.8582941, 46.3773348 ], + [ 7.8582487, 46.3775603 ], + [ 7.8581703, 46.3778142 ], + [ 7.8580927, 46.3780735 ], + [ 7.8580556999999995, 46.3783383 ], + [ 7.8579764999999995, 46.3784908 ], + [ 7.8579539, 46.3786149 ], + [ 7.8579151, 46.3787503 ], + [ 7.8578507, 46.3788295 ], + [ 7.8577873, 46.37892 ], + [ 7.8577475, 46.3790272 ], + [ 7.8577084, 46.3791176 ], + [ 7.8577021, 46.3792583 ], + [ 7.8576378, 46.3793376 ], + [ 7.8575501, 46.3794508 ], + [ 7.8575353, 46.3795353 ], + [ 7.8575362, 46.3796479 ], + [ 7.8574731, 46.379789099999996 ], + [ 7.8574179, 46.3798964 ], + [ 7.8573869, 46.3799923 ], + [ 7.8573713, 46.3800768 ], + [ 7.8573083, 46.3802236 ], + [ 7.8572369, 46.380348 ], + [ 7.857182, 46.3804947 ], + [ 7.8571999, 46.3806071 ], + [ 7.8572249, 46.3806857 ], + [ 7.8572831999999995, 46.380764 ], + [ 7.8573334, 46.3808424 ], + [ 7.8573757, 46.3809547 ], + [ 7.8573947, 46.3811065 ], + [ 7.8574053, 46.3813258 ], + [ 7.857449, 46.3815056 ], + [ 7.8575092, 46.3817303 ], + [ 7.8575194, 46.381899 ], + [ 7.8575223, 46.3820566 ], + [ 7.8575161, 46.3822086 ], + [ 7.8575183, 46.3823886 ], + [ 7.8576771, 46.3826406 ], + [ 7.8577116, 46.3827979 ], + [ 7.8577385, 46.3829215 ], + [ 7.8577002, 46.3831075 ], + [ 7.8576939, 46.3832483 ], + [ 7.8576475, 46.3834456 ], + [ 7.8575359, 46.3836096 ], + [ 7.8574807, 46.3837227 ], + [ 7.8573851, 46.3838696 ], + [ 7.8572735, 46.3840336 ], + [ 7.8571283, 46.3841755 ], + [ 7.8570735, 46.3843335 ], + [ 7.8570522, 46.3845194 ], + [ 7.8570705, 46.3846824 ], + [ 7.8571048, 46.384806 ], + [ 7.8571647, 46.3849968 ], + [ 7.8572397, 46.3851369 ], + [ 7.8572992, 46.3852659 ], + [ 7.8573324, 46.3853557 ], + [ 7.857327, 46.3854964 ], + [ 7.8572802, 46.385643 ], + [ 7.8571919, 46.3857845 ], + [ 7.857072, 46.3859317 ], + [ 7.8570093, 46.3861291 ], + [ 7.8569006, 46.386462 ], + [ 7.8568478, 46.386783199999996 ], + [ 7.8568741, 46.3869293 ], + [ 7.857054, 46.3869673 ], + [ 7.8572996, 46.3870049 ], + [ 7.8575525, 46.3870311 ], + [ 7.8577563, 46.3870126 ], + [ 7.8579916999999995, 46.3869883 ], + [ 7.8583172, 46.3869464 ], + [ 7.8586102, 46.3869047 ], + [ 7.858903, 46.3868463 ], + [ 7.8591057, 46.3867884 ], + [ 7.8593418, 46.3867416 ], + [ 7.8596348, 46.3867057 ], + [ 7.8598627, 46.3866589 ], + [ 7.8599749, 46.3865623 ], + [ 7.8600471, 46.3864379 ], + [ 7.8601509, 46.3863134 ], + [ 7.8602562, 46.3862732 ], + [ 7.8605073999999995, 46.3861812 ], + [ 7.8608489, 46.3861111 ], + [ 7.8612324000000005, 46.3861193 ], + [ 7.8612976, 46.3861414 ], + [ 7.8614379, 46.3862134 ], + [ 7.8615358, 46.3862634 ], + [ 7.8616912, 46.386296 ], + [ 7.8619034, 46.3863168 ], + [ 7.8621722, 46.3862978 ], + [ 7.8623598, 46.3862908 ], + [ 7.8625641, 46.38634 ], + [ 7.8627356, 46.3863498 ], + [ 7.8629883, 46.3863479 ], + [ 7.8631918, 46.3862901 ], + [ 7.8634188, 46.386232 ], + [ 7.8636387, 46.3862022 ], + [ 7.8638093, 46.3861897 ], + [ 7.8639723, 46.3861546 ], + [ 7.8641425, 46.3861083 ], + [ 7.8643452, 46.3860561 ], + [ 7.864573, 46.3859925 ], + [ 7.8648081, 46.3859232 ], + [ 7.8650848, 46.3858817 ], + [ 7.8652966, 46.3858519 ], + [ 7.8654994, 46.3857997 ], + [ 7.8656947, 46.3857419 ], + [ 7.8659298, 46.3856782 ], + [ 7.8661335, 46.3856485 ], + [ 7.8662796, 46.3856305 ], + [ 7.8664752, 46.3856064 ], + [ 7.8666293, 46.3855715 ], + [ 7.866841, 46.3855305 ], + [ 7.8670679, 46.3854556 ], + [ 7.867311, 46.385375 ], + [ 7.8676202, 46.3853276 ], + [ 7.8679456, 46.3852799 ], + [ 7.8682561, 46.3853001 ], + [ 7.8685739, 46.3853145 ], + [ 7.8688114, 46.3853465 ], + [ 7.8691036, 46.3853104 ], + [ 7.869584, 46.3852447 ], + [ 7.8697301, 46.3852268 ], + [ 7.8699013, 46.3851917 ], + [ 7.8700634, 46.3851511 ], + [ 7.8702416, 46.3850765 ], + [ 7.8704775, 46.3850128 ], + [ 7.8707369, 46.384949 ], + [ 7.8709728, 46.3848796 ], + [ 7.8712243, 46.3848325 ], + [ 7.8714198, 46.3847917 ], + [ 7.8717205, 46.3847106 ], + [ 7.8720043, 46.3846408 ], + [ 7.8723049, 46.3845315 ], + [ 7.8726384, 46.3844784 ], + [ 7.8728978, 46.3844088 ], + [ 7.8730999, 46.3842891 ], + [ 7.8732779, 46.3841976 ], + [ 7.8734315, 46.3841007 ], + [ 7.8736505, 46.3840541 ], + [ 7.8739837999999995, 46.3839839 ], + [ 7.8747058, 46.3837475 ], + [ 7.874974, 46.3836498 ], + [ 7.8751275, 46.3835529 ], + [ 7.8752814, 46.3834956 ], + [ 7.8754840999999995, 46.3834377 ], + [ 7.875646, 46.3833633 ], + [ 7.8758157, 46.383255 ], + [ 7.8759286, 46.3831529 ], + [ 7.8760407, 46.3830507 ], + [ 7.8761379, 46.3830049 ], + [ 7.8762848, 46.3829869 ], + [ 7.8764628, 46.3829067 ], + [ 7.8766, 46.3827875 ], + [ 7.8769105, 46.3823011 ], + [ 7.8774907, 46.3824203 ], + [ 7.8778921, 46.3825298 ], + [ 7.8781694, 46.382567 ], + [ 7.8784718, 46.3825871 ], + [ 7.8787974, 46.3825678 ], + [ 7.8790744, 46.3825599 ], + [ 7.8793188, 46.3825411 ], + [ 7.8797011, 46.3824987 ], + [ 7.8799049, 46.3824804 ], + [ 7.8799854, 46.3823953 ], + [ 7.8801312, 46.3823434 ], + [ 7.8803583, 46.3822911 ], + [ 7.880513, 46.3822336 ], + [ 7.8806574, 46.3821142 ], + [ 7.8808026, 46.381978 ], + [ 7.8808819, 46.381848 ], + [ 7.8809868, 46.3817572 ], + [ 7.8811324, 46.3816772 ], + [ 7.8812863, 46.3816198 ], + [ 7.8814566, 46.3815847 ], + [ 7.8817497, 46.3815598 ], + [ 7.8820926, 46.3815741 ], + [ 7.8823778, 46.3815775 ], + [ 7.8827452000000005, 46.3816027 ], + [ 7.8830141, 46.3815949 ], + [ 7.8831925, 46.3815598 ], + [ 7.8833462999999995, 46.3814912 ], + [ 7.8835822, 46.3814218 ], + [ 7.8838658, 46.3813351 ], + [ 7.8840112, 46.3812382 ], + [ 7.8840914, 46.3811082 ], + [ 7.8842435, 46.3809326 ], + [ 7.8844202, 46.3807793 ], + [ 7.8845737, 46.3806767 ], + [ 7.8846529, 46.3805298 ], + [ 7.8848067, 46.3804611 ], + [ 7.8851238, 46.3803911 ], + [ 7.8854652, 46.3803209 ], + [ 7.8857984, 46.3802338 ], + [ 7.886179, 46.380079 ], + [ 7.8974206, 46.375201 ], + [ 7.8977318, 46.3753054 ], + [ 7.8980443, 46.3754661 ], + [ 7.8983895, 46.3756491 ], + [ 7.8987104, 46.3758491 ], + [ 7.8990979, 46.3761386 ], + [ 7.8994358, 46.3764172 ], + [ 7.8997165, 46.3766626 ], + [ 7.8998492, 46.3767909 ], + [ 7.9000566, 46.3770144 ], + [ 7.9002794, 46.3772321 ], + [ 7.9004123, 46.3773942 ], + [ 7.9005114, 46.3774891 ], + [ 7.9006849, 46.377634 ], + [ 7.9008255, 46.3777398 ], + [ 7.900999, 46.3778903 ], + [ 7.9011647, 46.3780748 ], + [ 7.9013221, 46.378248 ], + [ 7.9014415, 46.3786241 ], + [ 7.9015015, 46.3788036 ], + [ 7.9015602, 46.3789213 ], + [ 7.9016267, 46.3790108 ], + [ 7.9016768, 46.3790667 ], + [ 7.9017841, 46.3791784 ], + [ 7.9019995, 46.3793736 ], + [ 7.9021732, 46.3795466 ], + [ 7.9023383, 46.3796691 ], + [ 7.9024947, 46.3798086 ], + [ 7.9026109, 46.3799145 ], + [ 7.9026858, 46.3800265 ], + [ 7.902728, 46.3801162 ], + [ 7.9027867, 46.3802396 ], + [ 7.9028375, 46.3803798 ], + [ 7.9029138, 46.3805705 ], + [ 7.9030145, 46.3807499 ], + [ 7.9030664999999996, 46.3809407 ], + [ 7.9031418, 46.3811033 ], + [ 7.9032504, 46.3812656 ], + [ 7.9033996, 46.3814164 ], + [ 7.9036221, 46.3816059 ], + [ 7.9041178, 46.3819959 ], + [ 7.9043158, 46.3821631 ], + [ 7.9044811, 46.3823026 ], + [ 7.9046615, 46.3823967 ], + [ 7.9048105, 46.3825362 ], + [ 7.9049841999999995, 46.3827092 ], + [ 7.9051743, 46.3828878 ], + [ 7.9053153, 46.3830442 ], + [ 7.9053984, 46.3831562 ], + [ 7.9054405, 46.3832346 ], + [ 7.9054581, 46.3833076 ], + [ 7.9054922, 46.3833918 ], + [ 7.9055252, 46.3834534 ], + [ 7.9055596, 46.3835769 ], + [ 7.9056191, 46.3836946 ], + [ 7.905686, 46.3838291 ], + [ 7.905769, 46.3839297 ], + [ 7.9059021, 46.3841032 ], + [ 7.9060347, 46.3842259 ], + [ 7.9060932, 46.3843211 ], + [ 7.9061517, 46.3844107 ], + [ 7.9062345, 46.3844944 ], + [ 7.9063503, 46.3846454 ], + [ 7.9065493, 46.3848238 ], + [ 7.9067961, 46.3849964 ], + [ 7.9069449, 46.3851077 ], + [ 7.9069638, 46.3853158 ], + [ 7.9070235, 46.385456 ], + [ 7.907147, 46.3855506 ], + [ 7.9073109, 46.3856281 ], + [ 7.9075652, 46.3857161 ], + [ 7.9078781, 46.3859218 ], + [ 7.9080012, 46.3859658 ], + [ 7.9080839, 46.3860439 ], + [ 7.9080939, 46.3861621 ], + [ 7.9080703, 46.3862523 ], + [ 7.9079986, 46.3863261 ], + [ 7.9078288, 46.3864231 ], + [ 7.9077237, 46.3864801 ], + [ 7.9075218, 46.3866225 ], + [ 7.9074098, 46.3867304 ], + [ 7.907273, 46.3868833 ], + [ 7.9071127, 46.3870422 ], + [ 7.9069997999999995, 46.3871445 ], + [ 7.9069534, 46.3873249 ], + [ 7.9069728999999995, 46.3875048 ], + [ 7.9070238, 46.3876675 ], + [ 7.9070591, 46.387808 ], + [ 7.9071256, 46.3878863 ], + [ 7.9072317, 46.387936 ], + [ 7.9073887, 46.388053 ], + [ 7.9075365, 46.3881362 ], + [ 7.907726, 46.3882585 ], + [ 7.9078248, 46.3883083 ], + [ 7.9079726, 46.3883972 ], + [ 7.9081297, 46.3885253 ], + [ 7.9083195, 46.3886758 ], + [ 7.9084268, 46.3887761 ], + [ 7.9085597, 46.3889271 ], + [ 7.9086845, 46.389078 ], + [ 7.9087043999999995, 46.3893085 ], + [ 7.9087698, 46.3893531 ], + [ 7.9088687, 46.3894197 ], + [ 7.9089673, 46.3894528 ], + [ 7.9090904, 46.3895024 ], + [ 7.9091733, 46.3895974 ], + [ 7.9092074, 46.3896872 ], + [ 7.909209, 46.3897884 ], + [ 7.9091613, 46.3899013 ], + [ 7.9091223, 46.3899974 ], + [ 7.9091066, 46.390065 ], + [ 7.9090753, 46.3901103 ], + [ 7.9090599, 46.3902061 ], + [ 7.9090777, 46.3902903 ], + [ 7.9090953, 46.3903577 ], + [ 7.9091295, 46.3904532 ], + [ 7.9091639, 46.3905767 ], + [ 7.9091903, 46.3907172 ], + [ 7.9092002, 46.3908296 ], + [ 7.9091941, 46.3909703 ], + [ 7.9091879, 46.3910998 ], + [ 7.9091656, 46.3912464 ], + [ 7.9091352, 46.3913929 ], + [ 7.9091208, 46.3915168 ], + [ 7.9090673, 46.3917255 ], + [ 7.9090045, 46.3918835 ], + [ 7.90896, 46.3921821 ], + [ 7.9089944, 46.3923056 ], + [ 7.9090283, 46.3923842 ], + [ 7.9090869, 46.3924907 ], + [ 7.9091535, 46.3925746 ], + [ 7.9091378, 46.3926421 ], + [ 7.9091068, 46.3927212 ], + [ 7.9091156, 46.3927943 ], + [ 7.9091416, 46.3928898 ], + [ 7.9091431, 46.3929741 ], + [ 7.9091192, 46.3930193 ], + [ 7.9090881, 46.3930984 ], + [ 7.9090481, 46.3931718 ], + [ 7.9089757, 46.3932513 ], + [ 7.9089447, 46.3933302 ], + [ 7.9089224, 46.3934824 ], + [ 7.9089083, 46.3936288 ], + [ 7.9089266, 46.3937751 ], + [ 7.9089607, 46.3938704 ], + [ 7.9089945, 46.3939264 ], + [ 7.9090203, 46.3939937 ], + [ 7.9090628, 46.3941172 ], + [ 7.9090959, 46.3941845 ], + [ 7.9091219, 46.3942742 ], + [ 7.9091884, 46.3943581 ], + [ 7.9092712, 46.3944419 ], + [ 7.9093295999999995, 46.3945258 ], + [ 7.9094206, 46.3946207 ], + [ 7.9095356, 46.3946704 ], + [ 7.9095615, 46.3947434 ], + [ 7.9095793, 46.3948333 ], + [ 7.909581, 46.3949346 ], + [ 7.9096075, 46.3950807 ], + [ 7.9096486, 46.3951366 ], + [ 7.9097311, 46.3951922 ], + [ 7.909781, 46.3952312 ], + [ 7.909814, 46.3952873 ], + [ 7.9098481, 46.395377 ], + [ 7.9098658, 46.3954444 ], + [ 7.9099067, 46.3954835 ], + [ 7.909957, 46.3955618 ], + [ 7.9100073, 46.3956516 ], + [ 7.9100816, 46.3956847 ], + [ 7.9101886, 46.3957513 ], + [ 7.9102388999999995, 46.3958409 ], + [ 7.9102722, 46.3959251 ], + [ 7.9102981, 46.396015 ], + [ 7.9103079, 46.3961161 ], + [ 7.9102934, 46.3962232 ], + [ 7.9102941, 46.3962964 ], + [ 7.9103119, 46.3963863 ], + [ 7.9103621, 46.396459 ], + [ 7.9104205, 46.3965374 ], + [ 7.9104788, 46.3966101 ], + [ 7.9105053, 46.3967618 ], + [ 7.9104907, 46.3968519 ], + [ 7.9104589999999995, 46.3969534 ], + [ 7.9104042, 46.3971002 ], + [ 7.9104223, 46.3972182 ], + [ 7.9104414, 46.3973588 ], + [ 7.9105001999999995, 46.3974878 ], + [ 7.9105512000000004, 46.3976448 ], + [ 7.9105546, 46.3978588 ], + [ 7.9105174, 46.3980672 ], + [ 7.9105688, 46.3982694 ], + [ 7.9106127, 46.3984604 ], + [ 7.9105735, 46.3985394 ], + [ 7.9105741, 46.3986014 ], + [ 7.9106158, 46.398634799999996 ], + [ 7.9106325, 46.3986797 ], + [ 7.9106501, 46.3987471 ], + [ 7.9106764, 46.3988707 ], + [ 7.9107033, 46.3990674 ], + [ 7.9106807, 46.3991858 ], + [ 7.9106741, 46.399259 ], + [ 7.9107163, 46.3993544 ], + [ 7.9107426, 46.399478 ], + [ 7.9107117, 46.3995738 ], + [ 7.9107219, 46.3997145 ], + [ 7.9107145, 46.399799 ], + [ 7.910724, 46.3998664 ], + [ 7.9106597999999995, 46.3999625 ], + [ 7.9105801, 46.400042 ], + [ 7.9104513, 46.4001893 ], + [ 7.9104366, 46.4002738 ], + [ 7.9103816, 46.4003925 ], + [ 7.9102365, 46.4005344 ], + [ 7.9102314, 46.4006976 ], + [ 7.9102160999999995, 46.4008103 ], + [ 7.9101284, 46.4009123 ], + [ 7.9099672, 46.4010598 ], + [ 7.9098476, 46.4012297 ], + [ 7.909793, 46.4014045 ], + [ 7.9098209, 46.4016182 ], + [ 7.909847, 46.4017249 ], + [ 7.9098403, 46.4018038 ], + [ 7.9098085, 46.4018771 ], + [ 7.9097937, 46.4019504 ], + [ 7.9098025, 46.4020291 ], + [ 7.9098286, 46.4021415 ], + [ 7.9098964, 46.402276 ], + [ 7.9099550999999995, 46.4023824 ], + [ 7.9100802, 46.4025615 ], + [ 7.9100736, 46.4026517 ], + [ 7.9102492, 46.4029429 ], + [ 7.9104331, 46.4032509 ], + [ 7.910633, 46.4035194 ], + [ 7.9107746, 46.4037264 ], + [ 7.9108429000000005, 46.4039172 ], + [ 7.910926, 46.4040404 ], + [ 7.9109523, 46.4041696 ], + [ 7.9109862, 46.4042368 ], + [ 7.9110298, 46.4043884 ], + [ 7.9110887, 46.4045229 ], + [ 7.911173, 46.4046911 ], + [ 7.9112236, 46.404809 ], + [ 7.9112244, 46.4048989 ], + [ 7.9111937, 46.4050118 ], + [ 7.9111061, 46.405125 ], + [ 7.911042, 46.4052324 ], + [ 7.9110274, 46.4053282 ], + [ 7.9110533, 46.4054068 ], + [ 7.9110872, 46.4054798 ], + [ 7.9112772, 46.4056357 ], + [ 7.9114007, 46.4057361 ], + [ 7.9116232, 46.4058918 ], + [ 7.9118144, 46.4061097 ], + [ 7.9118069, 46.4061829 ], + [ 7.9118003, 46.4062618 ], + [ 7.9117606, 46.4063635 ], + [ 7.9117134, 46.4064538 ], + [ 7.9117298, 46.4064762 ], + [ 7.911829, 46.4065711 ], + [ 7.9118711, 46.4066439 ], + [ 7.9118485, 46.4067567 ], + [ 7.9117938, 46.4069146 ], + [ 7.9117389, 46.4070502 ], + [ 7.9117242999999995, 46.4071516 ], + [ 7.9116858, 46.4072982 ], + [ 7.9116717, 46.4074559 ], + [ 7.9116576, 46.4076079 ], + [ 7.9116112, 46.4077884 ], + [ 7.9115398, 46.4079016 ], + [ 7.9114443, 46.4080317 ], + [ 7.9113167, 46.4082241 ], + [ 7.9111638, 46.4084054 ], + [ 7.9110436, 46.408502 ], + [ 7.9109304, 46.4085761 ], + [ 7.9108253, 46.4086332 ], + [ 7.910654, 46.4086684 ], + [ 7.9105243, 46.408697599999996 ], + [ 7.9103866, 46.4087549 ], + [ 7.9102165, 46.4088238 ], + [ 7.9099888, 46.4089101 ], + [ 7.9096063999999995, 46.4089526 ], + [ 7.909329, 46.4089267 ], + [ 7.9092503, 46.4091355 ], + [ 7.9091968999999995, 46.4093498 ], + [ 7.909134, 46.4094967 ], + [ 7.9090530999999995, 46.4095479 ], + [ 7.9089968, 46.4096103 ], + [ 7.9089404, 46.4096782 ], + [ 7.9088191, 46.4097468 ], + [ 7.9085922, 46.4098218 ], + [ 7.9083977, 46.4098965 ], + [ 7.9083007, 46.4099536 ], + [ 7.908204, 46.41005 ], + [ 7.908131, 46.4100674 ], + [ 7.9080083, 46.4100685 ], + [ 7.9078945, 46.4100694 ], + [ 7.9077566, 46.4101043 ], + [ 7.9076351, 46.4101503 ], + [ 7.9075137, 46.4102131 ], + [ 7.9073911, 46.4102366 ], + [ 7.9071881, 46.4102552 ], + [ 7.9069845999999995, 46.4103187 ], + [ 7.90679, 46.4103766 ], + [ 7.906562, 46.410417699999996 ], + [ 7.9061555, 46.4105054 ], + [ 7.9061307, 46.4104549 ], + [ 7.9060236, 46.4103827 ], + [ 7.9059083999999995, 46.4103105 ], + [ 7.9058174999999995, 46.4102381 ], + [ 7.9057265999999995, 46.4101544 ], + [ 7.9056683, 46.4100873 ], + [ 7.9056103, 46.4100539 ], + [ 7.9054221, 46.4099992 ], + [ 7.905242, 46.40995 ], + [ 7.9050364, 46.4098616 ], + [ 7.9048725, 46.4097954 ], + [ 7.9047898, 46.4097229 ], + [ 7.9047232, 46.4096334 ], + [ 7.9046325, 46.4095834 ], + [ 7.9045026, 46.4095957 ], + [ 7.9043079, 46.4096424 ], + [ 7.9040154, 46.4097573 ], + [ 7.903855, 46.4099161 ], + [ 7.9036148, 46.4102388 ], + [ 7.9035598, 46.4103686 ], + [ 7.9034718999999996, 46.4104537 ], + [ 7.9033829, 46.4104995 ], + [ 7.903293, 46.4105397 ], + [ 7.9032379, 46.4106526 ], + [ 7.9032557, 46.4107425 ], + [ 7.9032412999999995, 46.4108664 ], + [ 7.9033066, 46.4108941 ], + [ 7.9034135, 46.4109438 ], + [ 7.9034718, 46.4110109 ], + [ 7.9035383, 46.4110836 ], + [ 7.9035806, 46.4111845 ], + [ 7.9035579, 46.4112859 ], + [ 7.9034774, 46.4113766 ], + [ 7.9034145, 46.4115348 ], + [ 7.9033675, 46.4116477 ], + [ 7.903378, 46.4118277 ], + [ 7.9033959, 46.4119288 ], + [ 7.9034786, 46.4119957 ], + [ 7.903382, 46.4121089 ], + [ 7.9033513, 46.4122274 ], + [ 7.9033529, 46.4123175 ], + [ 7.9034274, 46.4123788 ], + [ 7.9037169, 46.4126747 ], + [ 7.9038317, 46.412702 ], + [ 7.903987, 46.4127006 ], + [ 7.9041334, 46.4127107 ], + [ 7.9043209999999995, 46.412698 ], + [ 7.9044426, 46.4126576 ], + [ 7.9046042, 46.4125494 ], + [ 7.9046684, 46.4124476 ], + [ 7.9047817, 46.4123904 ], + [ 7.9049359, 46.4123667 ], + [ 7.905221, 46.4123363 ], + [ 7.9055954, 46.4122938 ], + [ 7.905921, 46.4122575 ], + [ 7.9061085, 46.4122278 ], + [ 7.9061567, 46.41216 ], + [ 7.9062283, 46.4120693 ], + [ 7.9064078, 46.412051 ], + [ 7.9066604, 46.4120377 ], + [ 7.9069863, 46.4120238 ], + [ 7.9073932, 46.4119868 ], + [ 7.9078253, 46.4119495 ], + [ 7.9081265, 46.4119021 ], + [ 7.9084024, 46.4118548 ], + [ 7.9085412999999996, 46.4118368 ], + [ 7.9087357, 46.4117564 ], + [ 7.9088826999999995, 46.411744 ], + [ 7.9089967, 46.4117713 ], + [ 7.9091201, 46.411849 ], + [ 7.9093745, 46.4119371 ], + [ 7.9095961, 46.4119972 ], + [ 7.909744, 46.412086 ], + [ 7.9099258, 46.4122364 ], + [ 7.9099517, 46.4123207 ], + [ 7.9100512, 46.4124549 ], + [ 7.9101259, 46.4125332 ], + [ 7.9103072999999995, 46.4126442 ], + [ 7.9105847, 46.4126645 ], + [ 7.9108618, 46.4126623 ], + [ 7.9111805, 46.4126597 ], + [ 7.9113689, 46.4127313 ], + [ 7.9115248, 46.4128088 ], + [ 7.9117224, 46.4129142 ], + [ 7.9119108, 46.4129802 ], + [ 7.9120172, 46.4129793 ], + [ 7.9121958, 46.4129498 ], + [ 7.9124144, 46.4128467 ], + [ 7.9126746, 46.4127601 ], + [ 7.9127958, 46.412686 ], + [ 7.9129908, 46.4126676 ], + [ 7.9130892, 46.412678 ], + [ 7.9132285, 46.4127106 ], + [ 7.9134735, 46.4127425 ], + [ 7.913645, 46.412741 ], + [ 7.9139465, 46.412733 ], + [ 7.9142236, 46.4127307 ], + [ 7.9144765, 46.4127343 ], + [ 7.9148104, 46.4127204 ], + [ 7.9151198, 46.4126785 ], + [ 7.9153639, 46.4126145 ], + [ 7.915576, 46.4126129 ], + [ 7.9158045999999995, 46.4126335 ], + [ 7.9159763, 46.4126547 ], + [ 7.9161888, 46.4126923 ], + [ 7.9164171, 46.4126792 ], + [ 7.9166615, 46.4126491 ], + [ 7.916921, 46.4125794 ], + [ 7.9172299, 46.4124869 ], + [ 7.917546, 46.4123773 ], + [ 7.9177891, 46.412291 ], + [ 7.9179685, 46.4122614 ], + [ 7.9181887, 46.4122596 ], + [ 7.9184738, 46.4122292 ], + [ 7.918702, 46.4122104 ], + [ 7.9189372, 46.4121522 ], + [ 7.9191166, 46.412117 ], + [ 7.9193845, 46.4120866 ], + [ 7.9196373, 46.4120845 ], + [ 7.9198263, 46.4121336 ], + [ 7.9200552, 46.4121881 ], + [ 7.9202688, 46.4122595 ], + [ 7.9204976, 46.4122971 ], + [ 7.9206598, 46.412262 ], + [ 7.9208543, 46.4121872 ], + [ 7.9210904, 46.4121458 ], + [ 7.9215554, 46.412142 ], + [ 7.9220363, 46.4121101 ], + [ 7.9223543, 46.4121243 ], + [ 7.9225342, 46.4121622 ], + [ 7.922772, 46.4122053 ], + [ 7.923132, 46.4122923 ], + [ 7.92345, 46.412312299999996 ], + [ 7.9236959, 46.4123553 ], + [ 7.9239977, 46.412381 ], + [ 7.9243002, 46.4123954 ], + [ 7.9245858, 46.4124268 ], + [ 7.9248725, 46.4124863 ], + [ 7.9251258, 46.4125462 ], + [ 7.9254127, 46.4126338 ], + [ 7.9256263, 46.4126997 ], + [ 7.9257174, 46.4127946 ], + [ 7.9258168, 46.4129176 ], + [ 7.9259577, 46.4130402 ], + [ 7.9260393, 46.4130677 ], + [ 7.9261623, 46.4130948 ], + [ 7.9264311, 46.4130701 ], + [ 7.9266268, 46.4130459 ], + [ 7.9267067, 46.4129833 ], + [ 7.9268521, 46.4128753 ], + [ 7.9269891, 46.4127503 ], + [ 7.9271833, 46.4126475 ], + [ 7.9273941, 46.4125895 ], + [ 7.9276454, 46.4125086 ], + [ 7.9279867, 46.4124101 ], + [ 7.9281567, 46.41233 ], + [ 7.9282536, 46.412256 ], + [ 7.9283748, 46.4121762 ], + [ 7.9284802, 46.4121529 ], + [ 7.9287327, 46.4121114 ], + [ 7.9290093, 46.4120527 ], + [ 7.9292281, 46.4119722 ], + [ 7.9294955, 46.41188 ], + [ 7.9298124, 46.4117816 ], + [ 7.9301691, 46.4116775 ], + [ 7.930421, 46.4115797 ], + [ 7.9306718, 46.4114482 ], + [ 7.9309471, 46.4113222 ], + [ 7.931271, 46.41119 ], + [ 7.9316271, 46.4110239 ], + [ 7.9319037, 46.4109541 ], + [ 7.9322355, 46.4107938 ], + [ 7.9324861, 46.4106454 ], + [ 7.9328422, 46.4104736 ], + [ 7.9331092, 46.4103307 ], + [ 7.9333504, 46.4101317 ], + [ 7.9334953, 46.4099786 ], + [ 7.9338173, 46.4097284 ], + [ 7.9342178, 46.4092524 ], + [ 7.9344608999999995, 46.4091715 ], + [ 7.9347117, 46.4090401 ], + [ 7.9349867, 46.4088914 ], + [ 7.9352858, 46.4087144 ], + [ 7.9355766, 46.4085207 ], + [ 7.9358419, 46.4082878 ], + [ 7.9361151, 46.4080323 ], + [ 7.9364688, 46.4076861 ], + [ 7.9366938, 46.4074928 ], + [ 7.9367665, 46.4074472 ], + [ 7.9368632, 46.4073621 ], + [ 7.9369906, 46.4071584 ], + [ 7.9370614, 46.4069946 ], + [ 7.9374885, 46.4066815 ], + [ 7.9376988, 46.4065617 ], + [ 7.9379401, 46.4063796 ], + [ 7.9381661, 46.4062088 ], + [ 7.9383101, 46.40605 ], + [ 7.9385947, 46.4059745 ], + [ 7.9389673, 46.4058308 ], + [ 7.9391853, 46.405677 ], + [ 7.939298, 46.4055579 ], + [ 7.9393042, 46.4054397 ], + [ 7.9393185, 46.40531 ], + [ 7.939242, 46.4051193 ], + [ 7.9391575, 46.4049457 ], + [ 7.9390892, 46.4047717 ], + [ 7.9390284, 46.4045246 ], + [ 7.9390667, 46.4043554 ], + [ 7.9391358, 46.4040905 ], + [ 7.9392303, 46.4038533 ], + [ 7.9393567, 46.4036328 ], + [ 7.939524, 46.4033612 ], + [ 7.9397792, 46.4030046 ], + [ 7.9398499, 46.4028296 ], + [ 7.9399207, 46.4026602 ], + [ 7.9399757, 46.402547 ], + [ 7.9399892, 46.4023276 ], + [ 7.9399934, 46.4020799 ], + [ 7.9399638, 46.4017819 ], + [ 7.9399014999999995, 46.4014615 ], + [ 7.9398669, 46.4013213 ], + [ 7.9399542, 46.4011741 ], + [ 7.9399678, 46.4009771 ], + [ 7.9400144, 46.4008303 ], + [ 7.9399723, 46.4007632 ], + [ 7.9399055, 46.4006568 ], + [ 7.9398469, 46.4005616 ], + [ 7.9397953, 46.4004327 ], + [ 7.9397926, 46.4002189 ], + [ 7.9398308, 46.4000496 ], + [ 7.9398858, 46.399931 ], + [ 7.9398907, 46.3997566 ], + [ 7.9398556, 46.3995599 ], + [ 7.9397791, 46.3993747 ], + [ 7.9397120999999995, 46.3992516 ], + [ 7.9396601, 46.3990719 ], + [ 7.9396337, 46.3989427 ], + [ 7.9396059999999995, 46.3987628 ], + [ 7.9396524, 46.3985936 ], + [ 7.9396096, 46.3984364 ], + [ 7.9395429, 46.3983468 ], + [ 7.9394589, 46.3982238 ], + [ 7.9393187, 46.3980899 ], + [ 7.9391855, 46.3979279 ], + [ 7.9390449, 46.3978277 ], + [ 7.9388722, 46.3976997 ], + [ 7.9386890999999995, 46.3974987 ], + [ 7.9385316, 46.3973367 ], + [ 7.9383816, 46.3971073 ], + [ 7.9382562, 46.3969001 ], + [ 7.9381297, 46.3966704 ], + [ 7.937996, 46.3964408 ], + [ 7.9378465, 46.3962675 ], + [ 7.9376792, 46.3960157 ], + [ 7.9374807, 46.3958091 ], + [ 7.9373151, 46.3956529 ], + [ 7.9370594, 46.3955031 ], + [ 7.9368121, 46.395297 ], + [ 7.9365735, 46.3951583 ], + [ 7.9365382, 46.3950235 ], + [ 7.9364713, 46.3949115 ], + [ 7.9363302000000004, 46.3947664 ], + [ 7.9360912, 46.3945713 ], + [ 7.9359656, 46.3943417 ], + [ 7.9358876, 46.3940779 ], + [ 7.9358835, 46.393807699999996 ], + [ 7.9359035, 46.3935038 ], + [ 7.9359573, 46.3933457 ], + [ 7.936102, 46.3931757 ], + [ 7.9363263, 46.3929149 ], + [ 7.9365894, 46.3925413 ], + [ 7.9369723, 46.3920316 ], + [ 7.9375447, 46.391087 ], + [ 7.9376482, 46.3909456 ], + [ 7.9377691, 46.3908433 ], + [ 7.9379713, 46.3907346 ], + [ 7.9381981, 46.3906652 ], + [ 7.9383669999999995, 46.3904725 ], + [ 7.9384623, 46.3903254 ], + [ 7.9385317, 46.3900884 ], + [ 7.9385533, 46.3898743 ], + [ 7.9385819, 46.3896265 ], + [ 7.9386516, 46.3894346 ], + [ 7.9386572, 46.3892489 ], + [ 7.938655, 46.3891026 ], + [ 7.9386821, 46.388776 ], + [ 7.9387205, 46.3886237 ], + [ 7.9387928, 46.3885274 ], + [ 7.9388321, 46.3884709 ], + [ 7.9389532, 46.3883911 ], + [ 7.9390581000000005, 46.3883113 ], + [ 7.9391709, 46.3882092 ], + [ 7.9392504, 46.3881072 ], + [ 7.9392982, 46.3879999 ], + [ 7.9393288, 46.387887 ], + [ 7.9393271, 46.3877858 ], + [ 7.9393332, 46.3876564 ], + [ 7.9393732, 46.387594 ], + [ 7.9394611, 46.3875201 ], + [ 7.939509, 46.3874241 ], + [ 7.939491, 46.3873173 ], + [ 7.9394484, 46.3871994 ], + [ 7.9393641, 46.3870427 ], + [ 7.9392888, 46.386897 ], + [ 7.9391805, 46.3867796 ], + [ 7.9390404, 46.3866457 ], + [ 7.9389495, 46.3865677 ], + [ 7.9388261, 46.3864956 ], + [ 7.9387422, 46.3863838 ], + [ 7.9386348, 46.3862833 ], + [ 7.9385174, 46.3860592 ], + [ 7.9384492, 46.3858854 ], + [ 7.9383982, 46.3857226 ], + [ 7.9382879, 46.3854816 ], + [ 7.9382277, 46.3853019 ], + [ 7.9383985, 46.3852274 ], + [ 7.9385025, 46.385142 ], + [ 7.9386395, 46.3850228 ], + [ 7.9386943, 46.3848815 ], + [ 7.938716, 46.3846845 ], + [ 7.9387612999999995, 46.3844871 ], + [ 7.9387266, 46.3843355 ], + [ 7.9379757, 46.3837789 ], + [ 7.9376468, 46.3836184 ], + [ 7.9375558, 46.3835291 ], + [ 7.9375297, 46.3834281 ], + [ 7.9375775, 46.3833207 ], + [ 7.9376808, 46.3831624 ], + [ 7.9377922, 46.3829869 ], + [ 7.9378629, 46.3828119 ], + [ 7.9379656, 46.382586 ], + [ 7.9380437, 46.3824166 ], + [ 7.9381062, 46.3822359 ], + [ 7.9381851, 46.3820721 ], + [ 7.9383864, 46.3818791 ], + [ 7.9385948, 46.3816522 ], + [ 7.9389222, 46.3812162 ], + [ 7.9391145, 46.3810176 ], + [ 7.9392585, 46.3808532 ], + [ 7.939354, 46.3807342 ], + [ 7.939376, 46.3805653 ], + [ 7.9394141, 46.3803735 ], + [ 7.9393701, 46.3801882 ], + [ 7.9393096, 46.3799637 ], + [ 7.9392673, 46.3798739 ], + [ 7.9392252, 46.3797955 ], + [ 7.9391341, 46.3797006 ], + [ 7.939059, 46.3795661 ], + [ 7.9389748, 46.3794262 ], + [ 7.9388492, 46.3791965 ], + [ 7.9387416, 46.379068 ], + [ 7.938633, 46.3789169 ], + [ 7.9385487999999995, 46.3787656 ], + [ 7.9384493, 46.378637 ], + [ 7.938357, 46.3784916 ], + [ 7.9382737, 46.3783627 ], + [ 7.9382394, 46.3782448 ], + [ 7.9382698, 46.3781096 ], + [ 7.9383242, 46.3779346 ], + [ 7.9383859, 46.377754 ], + [ 7.9384401, 46.3775453 ], + [ 7.9384446, 46.3773315 ], + [ 7.938418, 46.3771742 ], + [ 7.9384001, 46.3770842 ], + [ 7.9383498, 46.3770058 ], + [ 7.9383491, 46.3769215 ], + [ 7.9383554, 46.3768201 ], + [ 7.9384268, 46.3767182 ], + [ 7.9385069999999995, 46.3766106 ], + [ 7.9386347, 46.3764464 ], + [ 7.9387381999999995, 46.3763105 ], + [ 7.9388991, 46.3761348 ], + [ 7.9390189, 46.3759986 ], + [ 7.9391381, 46.3758063 ], + [ 7.9392736, 46.3756083 ], + [ 7.93949, 46.3753813 ], + [ 7.9396338, 46.3752056 ], + [ 7.9396898, 46.3751151 ], + [ 7.9397286, 46.3750022 ], + [ 7.9397667, 46.3748219 ], + [ 7.9397874, 46.3745966 ], + [ 7.9398342, 46.3744668 ], + [ 7.9398742, 46.3744045 ], + [ 7.9399792, 46.3743361 ], + [ 7.9400517, 46.3742736 ], + [ 7.9400992, 46.3742226 ], + [ 7.9401048, 46.3740481 ], + [ 7.9401094, 46.3738398 ], + [ 7.9400905999999996, 46.3736486 ], + [ 7.9401453, 46.3735019 ], + [ 7.9402007, 46.3734283 ], + [ 7.9402895000000004, 46.3733656 ], + [ 7.9404347, 46.3732631 ], + [ 7.9406044, 46.3731604 ], + [ 7.9408388, 46.3730403 ], + [ 7.9411703, 46.3728742 ], + [ 7.9414774, 46.3727029 ], + [ 7.9417522, 46.3725543 ], + [ 7.942132, 46.3723429 ], + [ 7.9423096, 46.3722232 ], + [ 7.94247, 46.3720924 ], + [ 7.942615, 46.3719618 ], + [ 7.942718, 46.371764 ], + [ 7.9427392, 46.3716063 ], + [ 7.9427768, 46.3713639 ], + [ 7.9428446, 46.3710538 ], + [ 7.9428116, 46.3710035 ], + [ 7.942873, 46.3707836 ], + [ 7.942927, 46.3705692 ], + [ 7.9429311, 46.3703047 ], + [ 7.942935, 46.3700233 ], + [ 7.9430364, 46.3697466 ], + [ 7.9432387, 46.3691428 ], + [ 7.9433157, 46.3688664 ], + [ 7.9433283, 46.3686412 ], + [ 7.9432773999999995, 46.368501 ], + [ 7.9432661, 46.3683322 ], + [ 7.9432866, 46.3680901 ], + [ 7.9433568999999995, 46.3678699 ], + [ 7.9434262, 46.3676387 ], + [ 7.9434982, 46.3675199 ], + [ 7.9436821, 46.3672989 ], + [ 7.9439872, 46.3669981 ], + [ 7.9445189, 46.3666222 ], + [ 7.9446625, 46.3664353 ], + [ 7.9447654, 46.3662263 ], + [ 7.9448754, 46.3660058 ], + [ 7.9449136, 46.3658367 ], + [ 7.944863, 46.3657246 ], + [ 7.9448042999999995, 46.3656068 ], + [ 7.9447864, 46.3655225 ], + [ 7.9448089, 46.3654098 ], + [ 7.9448717, 46.3652629 ], + [ 7.9449181, 46.3650938 ], + [ 7.9449478, 46.3648797 ], + [ 7.9449521, 46.3646433 ], + [ 7.9449567, 46.3644463 ], + [ 7.9448961, 46.3642161 ], + [ 7.9448922, 46.3639742 ], + [ 7.9449529, 46.3636866 ], + [ 7.9450313999999995, 46.3634833 ], + [ 7.9451023, 46.3633365 ], + [ 7.9451816, 46.3632177 ], + [ 7.9453592, 46.363098 ], + [ 7.945511, 46.3629223 ], + [ 7.9456302, 46.3627186 ], + [ 7.945733, 46.3625096 ], + [ 7.9458193999999995, 46.3622893 ], + [ 7.9458969, 46.3620579 ], + [ 7.9459268, 46.361872 ], + [ 7.9460057, 46.3617081 ], + [ 7.9461396, 46.3614426 ], + [ 7.9462893999999995, 46.3611261 ], + [ 7.9464402, 46.3608434 ], + [ 7.9465743, 46.3605947 ], + [ 7.9466691, 46.3603913 ], + [ 7.9468434, 46.3601028 ], + [ 7.9470333, 46.3597412 ], + [ 7.9471508, 46.3594532 ], + [ 7.9473579999999995, 46.3591194 ], + [ 7.9475086, 46.3588986 ], + [ 7.9477586, 46.3587108 ], + [ 7.9479589, 46.3585065 ], + [ 7.948144, 46.3583306 ], + [ 7.9482717, 46.3581719 ], + [ 7.9483669, 46.3580192 ], + [ 7.9484616, 46.3578158 ], + [ 7.9485483, 46.3576237 ], + [ 7.9486746, 46.3574088 ], + [ 7.9488273, 46.3572331 ], + [ 7.9489387, 46.3570802 ], + [ 7.9489936, 46.3569615 ], + [ 7.9489830999999995, 46.3567927 ], + [ 7.9489569, 46.3566861 ], + [ 7.9489309, 46.3565907 ], + [ 7.9488315, 46.3564789 ], + [ 7.9487973, 46.3563723 ], + [ 7.9488115, 46.3562427 ], + [ 7.948816, 46.3560344 ], + [ 7.9488541, 46.3558484 ], + [ 7.9489562, 46.3556562 ], + [ 7.9490754, 46.3554638 ], + [ 7.9491135, 46.3552834 ], + [ 7.9492022, 46.3552151 ], + [ 7.9492246, 46.3550968 ], + [ 7.9491817, 46.354934 ], + [ 7.9491457, 46.3547373 ], + [ 7.9491598, 46.3545964 ], + [ 7.9492145, 46.3544497 ], + [ 7.9492832, 46.3541565 ], + [ 7.9493769, 46.3539362 ], + [ 7.9494377, 46.35366 ], + [ 7.9494354, 46.3534968 ], + [ 7.9494489, 46.3532941 ], + [ 7.9493884, 46.3530751 ], + [ 7.9493604, 46.3528615 ], + [ 7.9492917, 46.3526426 ], + [ 7.9491971, 46.3523339 ], + [ 7.9490844, 46.3519183 ], + [ 7.9490742999999995, 46.351789 ], + [ 7.9490721, 46.3516484 ], + [ 7.9491091, 46.3514341 ], + [ 7.9491149, 46.3512765 ], + [ 7.9492175, 46.3510506 ], + [ 7.9493028, 46.350791 ], + [ 7.9494445, 46.3504915 ], + [ 7.9496182, 46.3501355 ], + [ 7.9497695, 46.3499091 ], + [ 7.9499696, 46.3496823 ], + [ 7.9502429, 46.3494718 ], + [ 7.9505736, 46.3492383 ], + [ 7.9511215, 46.3488791 ], + [ 7.9513134, 46.3486467 ], + [ 7.9515059, 46.3479641 ], + [ 7.9516596, 46.3473831 ], + [ 7.9517202, 46.3471013 ], + [ 7.9518143, 46.3468304 ], + [ 7.9518447, 46.3466895 ], + [ 7.9518737, 46.3464923 ], + [ 7.9518387, 46.3463125 ], + [ 7.9517786, 46.3461385 ], + [ 7.9517591, 46.3459699 ], + [ 7.9517488, 46.3458236 ], + [ 7.9516976, 46.3456383 ], + [ 7.9516456, 46.3454642 ], + [ 7.9516597, 46.3453234 ], + [ 7.9517142, 46.3451599 ], + [ 7.9517351, 46.3449627 ], + [ 7.9518215, 46.3447425 ], + [ 7.9519161, 46.3445278 ], + [ 7.9520029999999995, 46.344363799999996 ], + [ 7.9521143, 46.3441941 ], + [ 7.9522817, 46.3439563 ], + [ 7.9524014, 46.3438146 ], + [ 7.9525466, 46.3437177 ], + [ 7.9526841, 46.3436659 ], + [ 7.9529122, 46.3436584 ], + [ 7.9531483, 46.3436451 ], + [ 7.9533347, 46.3436097 ], + [ 7.9535057, 46.3435746 ], + [ 7.9536511999999995, 46.3435058 ], + [ 7.9538208, 46.34342 ], + [ 7.9539488, 46.3433006 ], + [ 7.9540451, 46.3431817 ], + [ 7.9541157, 46.3430067 ], + [ 7.9541683, 46.3427305 ], + [ 7.9541888, 46.3424996 ], + [ 7.9541692, 46.3423084 ], + [ 7.9541829, 46.3421281 ], + [ 7.9541872, 46.3418918 ], + [ 7.9541837, 46.3416949 ], + [ 7.9541891, 46.3414922 ], + [ 7.9542019, 46.3413007 ], + [ 7.9542314, 46.3410754 ], + [ 7.9542345999999995, 46.3408108 ], + [ 7.9542303, 46.340529599999996 ], + [ 7.9541861, 46.3403217 ], + [ 7.9541353, 46.3401814 ], + [ 7.9540751, 46.3399963 ], + [ 7.9539906, 46.3398169 ], + [ 7.9538411, 46.3396325 ], + [ 7.9536996, 46.339431 ], + [ 7.9535417, 46.3392185 ], + [ 7.9534085, 46.3390396 ], + [ 7.9532834999999995, 46.3388605 ], + [ 7.9532148, 46.3386417 ], + [ 7.9531624999999995, 46.3384282 ], + [ 7.953134, 46.3381584 ], + [ 7.9532051, 46.3380395 ], + [ 7.9533097, 46.3379431 ], + [ 7.9534291, 46.3377732 ], + [ 7.953565, 46.3376427 ], + [ 7.9536611, 46.3375011 ], + [ 7.953732, 46.3373654 ], + [ 7.9538435, 46.3372182 ], + [ 7.9539462, 46.3370091 ], + [ 7.9540157, 46.336806 ], + [ 7.9540782, 46.3366254 ], + [ 7.9540921, 46.3364676 ], + [ 7.9540899, 46.3363158 ], + [ 7.9540539, 46.3361191 ], + [ 7.9538708, 46.3358955 ], + [ 7.9536961999999995, 46.3356269 ], + [ 7.953447, 46.3353701 ], + [ 7.9532148, 46.3351132 ], + [ 7.9530083, 46.3349012 ], + [ 7.952877, 46.3348403 ], + [ 7.9527538, 46.3347626 ], + [ 7.9525322, 46.3346743 ], + [ 7.952409, 46.3346078 ], + [ 7.9523425, 46.3345353 ], + [ 7.9523165, 46.3344455 ], + [ 7.9522981999999995, 46.3343105 ], + [ 7.9523203, 46.3341584 ], + [ 7.9523504, 46.3339893 ], + [ 7.9524208, 46.3337974 ], + [ 7.9525158, 46.3336222 ], + [ 7.9525773, 46.3334303 ], + [ 7.9526799, 46.33321 ], + [ 7.9527329, 46.3329788 ], + [ 7.9527292, 46.3327537 ], + [ 7.9528053, 46.3323873 ], + [ 7.9528174, 46.3321227 ], + [ 7.9527005, 46.3319492 ], + [ 7.952592, 46.3318038 ], + [ 7.9526871, 46.3316512 ], + [ 7.9527595, 46.3315773 ], + [ 7.9528153, 46.3314756 ], + [ 7.9528609, 46.3313177 ], + [ 7.9528016, 46.331138 ], + [ 7.952739, 46.3307841 ], + [ 7.9526427, 46.3303797 ], + [ 7.952532, 46.3300936 ], + [ 7.952439, 46.3298637 ], + [ 7.9522801, 46.3296286 ], + [ 7.9521059, 46.3293992 ], + [ 7.9518905, 46.3291873 ], + [ 7.9515354, 46.3288864 ], + [ 7.9496313999999995, 46.3274111 ], + [ 7.9492612, 46.3272172 ], + [ 7.9490649, 46.3271402 ], + [ 7.9485159, 46.3269308 ], + [ 7.9476869, 46.3265495 ], + [ 7.9465962, 46.3260353 ], + [ 7.9461039, 46.3258087 ], + [ 7.9460149, 46.3258319 ], + [ 7.9459101, 46.3259061 ], + [ 7.9458877999999995, 46.3260468 ], + [ 7.9458737, 46.326182 ], + [ 7.9458421, 46.3262723 ], + [ 7.9457462, 46.3263519 ], + [ 7.9456657, 46.3264201 ], + [ 7.9454718, 46.3265175 ], + [ 7.9453266, 46.3266086 ], + [ 7.9452795, 46.3266991 ], + [ 7.9452411, 46.3268457 ], + [ 7.9451691, 46.3269588 ], + [ 7.9450967, 46.3270326 ], + [ 7.9450335, 46.3271232 ], + [ 7.9450114, 46.3272809 ], + [ 7.944973, 46.3274332 ], + [ 7.9449591, 46.3275965 ], + [ 7.9449608, 46.3276865 ], + [ 7.9449708999999995, 46.3278159 ], + [ 7.944958, 46.3279961 ], + [ 7.9450007, 46.3281421 ], + [ 7.945035, 46.3282487 ], + [ 7.9450614, 46.3283892 ], + [ 7.9450226, 46.3284851 ], + [ 7.9449422, 46.3285703 ], + [ 7.9448225, 46.3287007 ], + [ 7.944653, 46.328809 ], + [ 7.9445485, 46.3289112 ], + [ 7.9444355, 46.3289853 ], + [ 7.9443884, 46.3290645 ], + [ 7.9443739, 46.3291659 ], + [ 7.944342, 46.3292281 ], + [ 7.9442615, 46.3293019 ], + [ 7.9441891, 46.3293756 ], + [ 7.9441825999999995, 46.3294545 ], + [ 7.9441926, 46.3295782 ], + [ 7.9442692, 46.3297802 ], + [ 7.9443373, 46.3299484 ], + [ 7.9443555, 46.3300776 ], + [ 7.9443187, 46.3303144 ], + [ 7.9441716, 46.3302931 ], + [ 7.9415896, 46.3282494 ], + [ 7.9413634, 46.3283581 ], + [ 7.9411531, 46.3284443 ], + [ 7.9408940999999995, 46.328514 ], + [ 7.9406502, 46.3285667 ], + [ 7.9403577, 46.3286141 ], + [ 7.9400895, 46.3286614 ], + [ 7.9399277, 46.328719 ], + [ 7.939758, 46.3288048 ], + [ 7.9396204, 46.328851 ], + [ 7.9394009, 46.3288923 ], + [ 7.939182, 46.3289222 ], + [ 7.9390029, 46.3289519 ], + [ 7.938775, 46.3289762 ], + [ 7.9385562, 46.3290118 ], + [ 7.9383447, 46.3290473 ], + [ 7.9382234, 46.3290933 ], + [ 7.9380941, 46.3291564 ], + [ 7.9379646, 46.3292024 ], + [ 7.9378919, 46.3292312 ], + [ 7.9377127, 46.3292552 ], + [ 7.9375263, 46.3292906 ], + [ 7.9373715, 46.3293087 ], + [ 7.9371934, 46.3293665 ], + [ 7.9370074, 46.3294356 ], + [ 7.9368217, 46.3295441 ], + [ 7.9366034, 46.3296415 ], + [ 7.9364487, 46.3296766 ], + [ 7.936246, 46.3296952 ], + [ 7.9361006, 46.3297695 ], + [ 7.9359541, 46.3298213 ], + [ 7.9357924, 46.3298846 ], + [ 7.9355738, 46.3299483 ], + [ 7.9352733, 46.3300184 ], + [ 7.9349162, 46.3301057 ], + [ 7.9345034, 46.330233 ], + [ 7.9339672, 46.3303556 ], + [ 7.9338763, 46.3302663 ], + [ 7.9337364, 46.3301494 ], + [ 7.9335065, 46.330033 ], + [ 7.9332359, 46.3299114 ], + [ 7.9330225, 46.3298232 ], + [ 7.9327357, 46.3297075 ], + [ 7.9324331, 46.3296368 ], + [ 7.9321225, 46.3295718 ], + [ 7.9318859, 46.3295287 ], + [ 7.9317143, 46.3294908 ], + [ 7.9315022, 46.3294533 ], + [ 7.9312806, 46.329365 ], + [ 7.9310424, 46.3292318 ], + [ 7.930731, 46.3290825 ], + [ 7.9301551, 46.3287553 ], + [ 7.9294904, 46.3283949 ], + [ 7.9290308, 46.3281905 ], + [ 7.9286536, 46.3280304 ], + [ 7.9282278999999996, 46.3278933 ], + [ 7.9277203, 46.3276836 ], + [ 7.9273106, 46.3275126 ], + [ 7.9267785, 46.327365 ], + [ 7.926149, 46.3272182 ], + [ 7.9256354, 46.3271437 ], + [ 7.9252922, 46.3270734 ], + [ 7.9249982, 46.3270477 ], + [ 7.9248009, 46.3269479 ], + [ 7.9245719999999995, 46.3268542 ], + [ 7.9243507, 46.3267885 ], + [ 7.9240072999999995, 46.3266845 ], + [ 7.9234003, 46.3264192 ], + [ 7.9230663, 46.3263657 ], + [ 7.9228465, 46.3263844 ], + [ 7.9226512, 46.3264198 ], + [ 7.9224312999999995, 46.3264272 ], + [ 7.9222044, 46.3264572 ], + [ 7.9220328, 46.3264249 ], + [ 7.9219262, 46.3263921 ], + [ 7.9218193, 46.3263197 ], + [ 7.9216464, 46.3262255 ], + [ 7.9213933999999995, 46.3261544 ], + [ 7.9212638, 46.3261893 ], + [ 7.921167, 46.3262519 ], + [ 7.9210949, 46.326365 ], + [ 7.9209831, 46.3264728 ], + [ 7.920814, 46.3266263 ], + [ 7.920678, 46.3267512 ], + [ 7.9204764, 46.3269048 ], + [ 7.9202582, 46.3270079 ], + [ 7.9199835, 46.3271509 ], + [ 7.9198061, 46.3272761 ], + [ 7.9196541, 46.3274405 ], + [ 7.9195983, 46.3275479 ], + [ 7.9196, 46.3276548 ], + [ 7.9196343, 46.3277671 ], + [ 7.9196767, 46.327885 ], + [ 7.9196959, 46.3280368 ], + [ 7.919641, 46.3281611 ], + [ 7.9195366, 46.3282857 ], + [ 7.9192716, 46.328513 ], + [ 7.9192417, 46.3287102 ], + [ 7.9192124, 46.3288905 ], + [ 7.9191403, 46.3289923 ], + [ 7.9190757, 46.3290268 ], + [ 7.9189864, 46.3290273 ], + [ 7.918799, 46.3290402 ], + [ 7.9186115, 46.3290305 ], + [ 7.9183509, 46.329026999999996 ], + [ 7.9181389, 46.3290118 ], + [ 7.9178942, 46.3289632 ], + [ 7.9176812, 46.3289256 ], + [ 7.9175429, 46.3288817 ], + [ 7.9173228, 46.3288723 ], + [ 7.9172083, 46.3288619 ], + [ 7.9169879, 46.3288131 ], + [ 7.9168327, 46.3287918 ], + [ 7.9166045, 46.3287768 ], + [ 7.9164333, 46.3287782 ], + [ 7.9161643, 46.3287354 ], + [ 7.9158538, 46.3286872 ], + [ 7.9156243, 46.3286103 ], + [ 7.9153953999999995, 46.3285109 ], + [ 7.9152469, 46.3284276 ], + [ 7.9150913, 46.3283558 ], + [ 7.9149522999999995, 46.3283344 ], + [ 7.9146998, 46.3283252 ], + [ 7.9141128, 46.3283018 ], + [ 7.9126628, 46.3282518 ], + [ 7.9123526, 46.3282318 ], + [ 7.9120175, 46.32815 ], + [ 7.911732, 46.328068 ], + [ 7.9113147, 46.3279644 ], + [ 7.910865, 46.3278668 ], + [ 7.9104244999999995, 46.3277859 ], + [ 7.9099991, 46.3276825 ], + [ 7.9095493, 46.3275736 ], + [ 7.9091073, 46.3274139 ], + [ 7.9086151000000005, 46.3271928 ], + [ 7.9084366, 46.3271886 ], + [ 7.9083619, 46.3270991 ], + [ 7.9082701, 46.3269874 ], + [ 7.9081465, 46.3268645 ], + [ 7.9080703, 46.3266906 ], + [ 7.9079774, 46.3264608 ], + [ 7.9079255, 46.3262698 ], + [ 7.9079314, 46.3261066 ], + [ 7.9079861, 46.3259599 ], + [ 7.9080648, 46.3257679 ], + [ 7.9081679, 46.3255814 ], + [ 7.9081487, 46.3254352 ], + [ 7.9081144, 46.3253116 ], + [ 7.9080544, 46.3251264 ], + [ 7.9080031, 46.3249242 ], + [ 7.9078853, 46.324717 ], + [ 7.9078183, 46.3245656 ], + [ 7.907824, 46.3243797 ], + [ 7.9078772, 46.3241544 ], + [ 7.9079462, 46.3238724 ], + [ 7.9079681, 46.3236809 ], + [ 7.9080311, 46.3235509 ], + [ 7.9081727, 46.3232178 ], + [ 7.9082721, 46.3227949 ], + [ 7.9082949, 46.3227103 ], + [ 7.9082608, 46.3226205 ], + [ 7.9082845, 46.3225416 ], + [ 7.9082908, 46.322429 ], + [ 7.9083054, 46.3223275 ], + [ 7.908336, 46.3222091 ], + [ 7.9083341, 46.3220853 ], + [ 7.9082508, 46.3219229 ], + [ 7.908167, 46.3218053 ], + [ 7.9080269, 46.3216601 ], + [ 7.9078782, 46.3215376 ], + [ 7.9076622, 46.3212354 ], + [ 7.9072235, 46.3208 ], + [ 7.9071015, 46.3207785 ], + [ 7.9069287, 46.3206843 ], + [ 7.9066822, 46.3205231 ], + [ 7.9064929, 46.3204008 ], + [ 7.9062148, 46.3203355 ], + [ 7.906003, 46.3203429 ], + [ 7.9058082, 46.3203388 ], + [ 7.9056615, 46.3203625 ], + [ 7.9055079, 46.3204313 ], + [ 7.9053302, 46.3205284 ], + [ 7.9051688, 46.3206366 ], + [ 7.904967, 46.3207564 ], + [ 7.9047984, 46.3208816 ], + [ 7.904653, 46.3209615 ], + [ 7.904443, 46.3210759 ], + [ 7.9042896, 46.3211671 ], + [ 7.9041849, 46.3212692 ], + [ 7.9040737, 46.3214503 ], + [ 7.904019, 46.3216083 ], + [ 7.9038751, 46.3217671 ], + [ 7.9037457, 46.3218243 ], + [ 7.903615, 46.3218085 ], + [ 7.9034104, 46.3217089 ], + [ 7.9031469, 46.3215534 ], + [ 7.902959, 46.3215043 ], + [ 7.9028378, 46.3215616 ], + [ 7.9026925, 46.3216584 ], + [ 7.9025636, 46.3217607 ], + [ 7.9023871, 46.3219084 ], + [ 7.9022423, 46.3220616 ], + [ 7.9021322, 46.3222876 ], + [ 7.9020128, 46.322463 ], + [ 7.9019328, 46.3225987 ], + [ 7.9017558999999995, 46.3226958 ], + [ 7.9016269999999995, 46.3228151 ], + [ 7.9015478, 46.3229395 ], + [ 7.9015322, 46.3230184 ], + [ 7.9014689, 46.3231202 ], + [ 7.9013804, 46.3232053 ], + [ 7.9012594, 46.3232907 ], + [ 7.9011058, 46.3233595 ], + [ 7.90092, 46.3234622 ], + [ 7.9007582, 46.3235311 ], + [ 7.9005799, 46.3235607 ], + [ 7.9003347, 46.3235401 ], + [ 7.9001228, 46.3235363 ], + [ 7.8998878, 46.3235775 ], + [ 7.8997342, 46.323652 ], + [ 7.8995644, 46.3237321 ], + [ 7.8994016, 46.3237615 ], + [ 7.8992303, 46.3237628 ], + [ 7.8989939, 46.3237367 ], + [ 7.8988062, 46.3237044 ], + [ 7.8986763, 46.3237054 ], + [ 7.8984485, 46.3237298 ], + [ 7.8982695, 46.3237706 ], + [ 7.8980182, 46.323812 ], + [ 7.8977676, 46.3239209 ], + [ 7.8975484, 46.3240183 ], + [ 7.8973866, 46.324076 ], + [ 7.8971839, 46.3241 ], + [ 7.8969966, 46.324124 ], + [ 7.896704, 46.3241658 ], + [ 7.8963467, 46.3242361 ], + [ 7.8960472, 46.3243285 ], + [ 7.8956821999999995, 46.3244552 ], + [ 7.8954482, 46.3246147 ], + [ 7.8952152, 46.3247966 ], + [ 7.8949082, 46.3249622 ], + [ 7.8946418, 46.3251387 ], + [ 7.894417, 46.3253318 ], + [ 7.8943086000000005, 46.3251865 ], + [ 7.8942584, 46.3251024 ], + [ 7.8941431, 46.3250021 ], + [ 7.8939955, 46.3249076 ], + [ 7.8938399, 46.3248468 ], + [ 7.8936588, 46.3247301 ], + [ 7.8933884, 46.324614 ], + [ 7.8932248, 46.3245591 ], + [ 7.8930195, 46.3244707 ], + [ 7.8929124, 46.3243815 ], + [ 7.892789, 46.3242755 ], + [ 7.8926809, 46.3241639 ], + [ 7.8925412, 46.3240468 ], + [ 7.8923439, 46.3239359 ], + [ 7.8921303, 46.3238306 ], + [ 7.8917287, 46.3236423 ], + [ 7.8914499, 46.3234927 ], + [ 7.8912361, 46.3233593 ], + [ 7.8910958, 46.3232704 ], + [ 7.8909386, 46.3231085 ], + [ 7.8908394, 46.3229798 ], + [ 7.8908621, 46.3228839 ], + [ 7.8908604, 46.3227827 ], + [ 7.8908666, 46.3226476 ], + [ 7.8908322, 46.3225128 ], + [ 7.8907653, 46.322367 ], + [ 7.8907072, 46.3223111 ], + [ 7.8905841, 46.3222502 ], + [ 7.8904451, 46.3222176 ], + [ 7.8903142, 46.3221905 ], + [ 7.8901021, 46.3221471 ], + [ 7.8900116, 46.3220972 ], + [ 7.8898722, 46.3220307 ], + [ 7.889741, 46.321953 ], + [ 7.8895269, 46.3217802 ], + [ 7.8893037, 46.3215794 ], + [ 7.8890734, 46.3214068 ], + [ 7.8889663, 46.3213063 ], + [ 7.8888096, 46.321195 ], + [ 7.8887029, 46.3211564 ], + [ 7.8885558, 46.3211295 ], + [ 7.8883274, 46.3210863 ], + [ 7.8881963, 46.3210255 ], + [ 7.8880161, 46.3209256 ], + [ 7.8877785, 46.3208486 ], + [ 7.8878994, 46.3207408 ], + [ 7.8879383999999995, 46.320656 ], + [ 7.8879773, 46.3205432 ], + [ 7.8879916, 46.3204135 ], + [ 7.8879329, 46.320279 ], + [ 7.8878308, 46.3200041 ], + [ 7.8876326, 46.3197805 ], + [ 7.8872275, 46.319373 ], + [ 7.8866498, 46.3188822 ], + [ 7.8861978, 46.318582 ], + [ 7.8858201999999995, 46.3183542 ], + [ 7.8855727, 46.3181535 ], + [ 7.8853585, 46.3179583 ], + [ 7.8851761, 46.3177909 ], + [ 7.8850024, 46.317584 ], + [ 7.8848613, 46.3173938 ], + [ 7.8848189, 46.3172703 ], + [ 7.8847506, 46.3170514 ], + [ 7.884674, 46.3168213 ], + [ 7.8845967, 46.3165968 ], + [ 7.8845039, 46.3163612 ], + [ 7.8843791, 46.316182 ], + [ 7.884189, 46.3159529 ], + [ 7.8844464, 46.3157819 ], + [ 7.8845676000000005, 46.3157135 ], + [ 7.8847211999999995, 46.3156447 ], + [ 7.8849245, 46.3155982 ], + [ 7.8850459, 46.3155634 ], + [ 7.8852250999999995, 46.3155507 ], + [ 7.8853874, 46.3155495 ], + [ 7.8855830000000005, 46.3155592 ], + [ 7.8857705, 46.3155634 ], + [ 7.8859908, 46.3156122 ], + [ 7.8861945, 46.3156219 ], + [ 7.8864966, 46.3156533 ], + [ 7.8867895, 46.3156454 ], + [ 7.8871969, 46.3156478 ], + [ 7.8868932, 46.3155264 ], + [ 7.8865986, 46.3154274 ], + [ 7.8863779, 46.3153222 ], + [ 7.8861645, 46.3152226 ], + [ 7.8859673, 46.3151228 ], + [ 7.8856404, 46.3150354 ], + [ 7.8852566, 46.3149371 ], + [ 7.8850273, 46.314877 ], + [ 7.8848234, 46.3148505 ], + [ 7.8846841, 46.3147839 ], + [ 7.8844313, 46.3147241 ], + [ 7.8843325, 46.3146516 ], + [ 7.8842014, 46.3145965 ], + [ 7.8840369, 46.314519 ], + [ 7.883857, 46.3144472 ], + [ 7.883677, 46.3143642 ], + [ 7.8835216, 46.3143092 ], + [ 7.8833652, 46.3142373 ], + [ 7.8831773, 46.3141825 ], + [ 7.8830221, 46.3141499 ], + [ 7.8827938, 46.3141179 ], + [ 7.8826789999999995, 46.3140737 ], + [ 7.8825153, 46.3140019 ], + [ 7.8823264, 46.3139189 ], + [ 7.882179, 46.3138526 ], + [ 7.882033, 46.3138594 ], + [ 7.8818458, 46.313889 ], + [ 7.8815938, 46.3139304 ], + [ 7.8813996, 46.3139995 ], + [ 7.8812618, 46.3140061 ], + [ 7.8810421, 46.314036 ], + [ 7.8808223, 46.3140433 ], + [ 7.8806267, 46.3140392 ], + [ 7.8804554, 46.3140293 ], + [ 7.8803576, 46.3139793 ], + [ 7.8802348, 46.3139354 ], + [ 7.8801363, 46.3139024 ], + [ 7.8800055, 46.3138809 ], + [ 7.8798759, 46.3139044 ], + [ 7.8797382, 46.3139392 ], + [ 7.879601, 46.3140359 ], + [ 7.8797401, 46.3140687 ], + [ 7.8798306, 46.3141242 ], + [ 7.8798889, 46.3142139 ], + [ 7.8799706, 46.3142751 ], + [ 7.8800694, 46.3143531 ], + [ 7.8801613, 46.3144874 ], + [ 7.8802201, 46.3146333 ], + [ 7.8802946, 46.3147171 ], + [ 7.8804258, 46.3147836 ], + [ 7.880673, 46.3149448 ], + [ 7.880764, 46.3150623 ], + [ 7.8807498, 46.3152144 ], + [ 7.8806785999999995, 46.3153332 ], + [ 7.8805983, 46.3154407 ], + [ 7.8805756, 46.3155422 ], + [ 7.8806182, 46.3156938 ], + [ 7.8806453, 46.3158286 ], + [ 7.8806473, 46.3159806 ], + [ 7.8806086, 46.3161103 ], + [ 7.8806104999999995, 46.3162453 ], + [ 7.8806695, 46.3164081 ], + [ 7.8807133, 46.3166103 ], + [ 7.8807001, 46.3167848 ], + [ 7.8806686, 46.3168977 ], + [ 7.88063, 46.3170442 ], + [ 7.8806412, 46.3172299 ], + [ 7.8806676, 46.3173816 ], + [ 7.8806867, 46.3175333 ], + [ 7.8807130999999995, 46.3176852 ], + [ 7.8807556, 46.3178254 ], + [ 7.8808077, 46.3180445 ], + [ 7.8808755, 46.318196 ], + [ 7.880983, 46.3183471 ], + [ 7.8810334, 46.3184536 ], + [ 7.881035, 46.3185493 ], + [ 7.8809879, 46.3186453 ], + [ 7.8809805, 46.3187354 ], + [ 7.8809821, 46.3188367 ], + [ 7.8810084, 46.3189772 ], + [ 7.8810357, 46.3191402 ], + [ 7.8810375, 46.3192639 ], + [ 7.8810072, 46.3194217 ], + [ 7.8809928, 46.3195513 ], + [ 7.8809376, 46.319653 ], + [ 7.8808978, 46.3197434 ], + [ 7.880801, 46.3198116 ], + [ 7.8807456, 46.3198853 ], + [ 7.8807302, 46.3199866 ], + [ 7.8807399, 46.3200878 ], + [ 7.8807497, 46.3201891 ], + [ 7.8807108, 46.3203019 ], + [ 7.8807126, 46.3204257 ], + [ 7.8806743, 46.3206061 ], + [ 7.8806773, 46.3207749 ], + [ 7.8806701, 46.3208819 ], + [ 7.880631, 46.3209722 ], + [ 7.8806248, 46.3211018 ], + [ 7.8806428, 46.3212254 ], + [ 7.8806772, 46.3213545 ], + [ 7.8806788, 46.3214614 ], + [ 7.8806318, 46.3215687 ], + [ 7.880642, 46.3217263 ], + [ 7.8807428999999996, 46.3219505 ], + [ 7.8809357, 46.3223148 ], + [ 7.8810346, 46.3223985 ], + [ 7.8811171, 46.3224654 ], + [ 7.8811418, 46.3225158 ], + [ 7.8810865, 46.3226007 ], + [ 7.8810059, 46.3226687 ], + [ 7.8809829, 46.3227309 ], + [ 7.8809998, 46.3228095 ], + [ 7.8810257, 46.3228994 ], + [ 7.8810351, 46.3229668 ], + [ 7.8810277, 46.3230513 ], + [ 7.8810537, 46.3231524 ], + [ 7.8810389, 46.3232313 ], + [ 7.8810405, 46.3233213 ], + [ 7.8810753, 46.3235179 ], + [ 7.8811513, 46.3236805 ], + [ 7.8811692, 46.3237818 ], + [ 7.881113, 46.3238554 ], + [ 7.8810404, 46.3239177 ], + [ 7.8809607, 46.3239916 ], + [ 7.8809372, 46.3240987 ], + [ 7.8809391, 46.3242337 ], + [ 7.8809828, 46.3244135 ], + [ 7.881017, 46.3245256 ], + [ 7.880986, 46.3246048 ], + [ 7.8809299, 46.3247009 ], + [ 7.8808991, 46.3248025 ], + [ 7.880933, 46.324881 ], + [ 7.8809834, 46.3249874 ], + [ 7.8810582, 46.3251107 ], + [ 7.8811169, 46.3252396 ], + [ 7.8811431, 46.3253689 ], + [ 7.8811623, 46.3255263 ], + [ 7.8811886, 46.3256668 ], + [ 7.8813697, 46.3257835 ], + [ 7.8814027, 46.3258508 ], + [ 7.8813715, 46.325913 ], + [ 7.8813316, 46.3259921 ], + [ 7.8813005, 46.3260543 ], + [ 7.8812283, 46.3261617 ], + [ 7.8811974, 46.326252 ], + [ 7.8811575, 46.3263367 ], + [ 7.8811346, 46.3264157 ], + [ 7.8811027, 46.3264891 ], + [ 7.880999, 46.326608 ], + [ 7.8809591999999995, 46.3267096 ], + [ 7.8809442, 46.3267604 ], + [ 7.8809459, 46.3268673 ], + [ 7.8809059999999995, 46.3269521 ], + [ 7.8808674, 46.3270931 ], + [ 7.8808207, 46.3272396 ], + [ 7.880782, 46.3273751 ], + [ 7.8807838, 46.3274932 ], + [ 7.8807856, 46.3276114 ], + [ 7.8807952, 46.3277014 ], + [ 7.8807798, 46.3278028 ], + [ 7.8807583, 46.3279549 ], + [ 7.8807267, 46.3280564 ], + [ 7.8807364, 46.3281577 ], + [ 7.8807385, 46.3283095 ], + [ 7.8807319, 46.3283941 ], + [ 7.8806524, 46.3285072 ], + [ 7.8806207, 46.3286031 ], + [ 7.8806388, 46.3287325 ], + [ 7.8806727, 46.328799599999996 ], + [ 7.8807067, 46.3288951 ], + [ 7.8807735, 46.329024 ], + [ 7.8808158, 46.3291362 ], + [ 7.8808985, 46.3292312 ], + [ 7.8809902, 46.3293205 ], + [ 7.8810151, 46.3293879 ], + [ 7.8810246, 46.3294666 ], + [ 7.8809777, 46.3295795 ], + [ 7.8809214999999995, 46.329653 ], + [ 7.880825, 46.3297664 ], + [ 7.8807536, 46.3298684 ], + [ 7.8807799, 46.3300144 ], + [ 7.8808559, 46.3301714 ], + [ 7.8808737, 46.3302668 ], + [ 7.8808826, 46.3303625 ], + [ 7.8808761, 46.3304582 ], + [ 7.8808279, 46.3305204 ], + [ 7.880789, 46.3306333 ], + [ 7.8807419, 46.330735 ], + [ 7.8807345, 46.3308195 ], + [ 7.8807361, 46.3309207 ], + [ 7.8807133, 46.3310054 ], + [ 7.8806652, 46.3310788 ], + [ 7.880634, 46.3311298 ], + [ 7.8806104999999995, 46.3312425 ], + [ 7.8805729, 46.3314116 ], + [ 7.8805494, 46.3315188 ], + [ 7.88052, 46.3316877 ], + [ 7.8804976, 46.3318286 ], + [ 7.8804659, 46.3319301 ], + [ 7.8804106, 46.3320151 ], + [ 7.8803625, 46.3320885 ], + [ 7.8802739, 46.3321736 ], + [ 7.8801699, 46.3322533 ], + [ 7.8801220999999995, 46.3323718 ], + [ 7.8800916, 46.3325128 ], + [ 7.8800464, 46.3327381 ], + [ 7.8800662, 46.3329799 ], + [ 7.8800211000000004, 46.3332335 ], + [ 7.8800145, 46.333318 ], + [ 7.8800234, 46.333408 ], + [ 7.8801073, 46.3335424 ], + [ 7.8801737, 46.333632 ], + [ 7.8801583, 46.3337334 ], + [ 7.8801355, 46.3338236 ], + [ 7.8801531, 46.333891 ], + [ 7.8802357, 46.3339635 ], + [ 7.8802374, 46.3340704 ], + [ 7.8801974999999995, 46.3341663 ], + [ 7.8800846, 46.3342516 ], + [ 7.8799886, 46.3343312 ], + [ 7.8798517, 46.3344617 ], + [ 7.8798129, 46.3345746 ], + [ 7.8798145, 46.3346758 ], + [ 7.8798477, 46.3347656 ], + [ 7.8799313, 46.3348662 ], + [ 7.8800384, 46.3349667 ], + [ 7.8800401, 46.3350735 ], + [ 7.8800406, 46.3351355 ], + [ 7.8799933, 46.3352034 ], + [ 7.8799371, 46.335277 ], + [ 7.8798404, 46.3353678 ], + [ 7.8798013000000005, 46.3354582 ], + [ 7.8797951, 46.3355933 ], + [ 7.8797481, 46.3357006 ], + [ 7.8797248, 46.3358301 ], + [ 7.8797023, 46.3359542 ], + [ 7.8797212, 46.3360891 ], + [ 7.8797557, 46.3362351 ], + [ 7.8798063, 46.3363753 ], + [ 7.8798244, 46.3364991 ], + [ 7.8798258, 46.3365722 ], + [ 7.8797951, 46.3366963 ], + [ 7.8797401, 46.3368205 ], + [ 7.879742, 46.3369499 ], + [ 7.8797101, 46.3370176 ], + [ 7.8796698, 46.3370573 ], + [ 7.879647, 46.3371476 ], + [ 7.8796326, 46.3372715 ], + [ 7.879633, 46.3373277 ], + [ 7.879602, 46.3374012 ], + [ 7.8795378, 46.3374973 ], + [ 7.8794735, 46.337571 ], + [ 7.8794103, 46.3376841 ], + [ 7.8793634, 46.3378138 ], + [ 7.8793331, 46.3379829 ], + [ 7.879319, 46.3381462 ], + [ 7.8793141, 46.3383432 ], + [ 7.879332, 46.33845 ], + [ 7.879358, 46.3385511 ], + [ 7.8794245, 46.3386461 ], + [ 7.8794829, 46.3387301 ], + [ 7.8795087, 46.33882 ], + [ 7.8795511, 46.3389322 ], + [ 7.8795771, 46.3390446 ], + [ 7.8796194, 46.3391511 ], + [ 7.8796862999999995, 46.3392969 ], + [ 7.8797366, 46.3393923 ], + [ 7.8797302, 46.3395048 ], + [ 7.8796498, 46.3396011 ], + [ 7.8796435, 46.3397249 ], + [ 7.8797357, 46.3398819 ], + [ 7.8794652, 46.3397544 ], + [ 7.8795117999999995, 46.3396022 ], + [ 7.8795262, 46.3394727 ], + [ 7.8794501, 46.3392988 ], + [ 7.879351, 46.3391926 ], + [ 7.8792427, 46.3390472 ], + [ 7.8791355, 46.3389354 ], + [ 7.8790434, 46.3387899 ], + [ 7.8788937, 46.3385491 ], + [ 7.8787773, 46.3384093 ], + [ 7.8787347, 46.3382633 ], + [ 7.8787085, 46.3381397 ], + [ 7.8787064, 46.3379821 ], + [ 7.8787278, 46.3378188 ], + [ 7.8787824, 46.3376383 ], + [ 7.8787802, 46.3374639 ], + [ 7.8787527, 46.3372839 ], + [ 7.8786941, 46.337155 ], + [ 7.8785696, 46.3370209 ], + [ 7.8785518, 46.336931 ], + [ 7.8785837, 46.3368575 ], + [ 7.878574, 46.3367564 ], + [ 7.8785478, 46.3366328 ], + [ 7.8784811999999995, 46.3365264 ], + [ 7.8783971, 46.3363638 ], + [ 7.8782492, 46.3362468 ], + [ 7.8781327, 46.3360901 ], + [ 7.8780063, 46.3358267 ], + [ 7.877922, 46.335636 ], + [ 7.8778466, 46.3354509 ], + [ 7.8778439, 46.3353158 ], + [ 7.8778501, 46.3351807 ], + [ 7.8779061, 46.3350677 ], + [ 7.8779283, 46.33491 ], + [ 7.8779105, 46.3348088 ], + [ 7.877909, 46.3347245 ], + [ 7.8779894, 46.3346338 ], + [ 7.8781027, 46.3345878 ], + [ 7.8782319, 46.3345137 ], + [ 7.8783193, 46.334378 ], + [ 7.8783743, 46.3342482 ], + [ 7.8783967, 46.3341129 ], + [ 7.8783867999999995, 46.3339836 ], + [ 7.8783117, 46.3338322 ], + [ 7.8781713, 46.3337432 ], + [ 7.8782195999999995, 46.3336865 ], + [ 7.8782828, 46.3335679 ], + [ 7.8783051, 46.3334214 ], + [ 7.8783027, 46.3332188 ], + [ 7.8782754, 46.3330615 ], + [ 7.8781924, 46.3329383 ], + [ 7.8781178, 46.3328433 ], + [ 7.8780757, 46.3327535 ], + [ 7.8780821, 46.3326409 ], + [ 7.8780965, 46.332517 ], + [ 7.8780865, 46.3323765 ], + [ 7.8780024, 46.3322195 ], + [ 7.8779522, 46.3321355 ], + [ 7.8779271, 46.3320456 ], + [ 7.8779664, 46.3319777 ], + [ 7.8780632, 46.3319038 ], + [ 7.8781113, 46.3318303 ], + [ 7.8781015, 46.3317235 ], + [ 7.878035, 46.3316339 ], + [ 7.8780497, 46.3315438 ], + [ 7.878137, 46.3314025 ], + [ 7.8782157, 46.3311992 ], + [ 7.8782625, 46.3310582 ], + [ 7.8782834, 46.3308329 ], + [ 7.8782571, 46.3306868 ], + [ 7.8781647, 46.3305074 ], + [ 7.8780979, 46.3303786 ], + [ 7.8780476, 46.3302776 ], + [ 7.8780375, 46.3301258 ], + [ 7.8779859, 46.3299686 ], + [ 7.877927, 46.3298171 ], + [ 7.8778767, 46.3297219 ], + [ 7.8778669, 46.329615 ], + [ 7.8779219, 46.3294908 ], + [ 7.8779608, 46.3293836 ], + [ 7.8779406, 46.3290911 ], + [ 7.8779309, 46.3289899 ], + [ 7.8779709, 46.3289164 ], + [ 7.8779772999999995, 46.3288095 ], + [ 7.8779674, 46.3286913 ], + [ 7.8779331, 46.3285622 ], + [ 7.8779314, 46.3284497 ], + [ 7.8779623999999995, 46.3283706 ], + [ 7.877978, 46.3282861 ], + [ 7.8780008, 46.3282015 ], + [ 7.878057, 46.3281279 ], + [ 7.8781206, 46.3280543 ], + [ 7.8781767, 46.3279694 ], + [ 7.8781995, 46.3278792 ], + [ 7.8781813, 46.3277331 ], + [ 7.8781395, 46.3276827 ], + [ 7.8781147, 46.3276266 ], + [ 7.8780808, 46.3275537 ], + [ 7.8780804, 46.3274974 ], + [ 7.8780949, 46.3273848 ], + [ 7.8781013, 46.3272778 ], + [ 7.878051, 46.3271826 ], + [ 7.8779022, 46.327043 ], + [ 7.8778369, 46.3269985 ], + [ 7.8778275, 46.3269367 ], + [ 7.8778417, 46.3267902 ], + [ 7.877848, 46.3266664 ], + [ 7.8778059, 46.3265766 ], + [ 7.8777147, 46.3264367 ], + [ 7.8765830999999995, 46.3265074 ], + [ 7.8757947, 46.3265698 ], + [ 7.8753313, 46.3266747 ], + [ 7.8749588, 46.3267733 ], + [ 7.8746666, 46.3268711 ], + [ 7.874521, 46.3269398 ], + [ 7.8743514, 46.3270369 ], + [ 7.8742233, 46.327156 ], + [ 7.8740704, 46.3273148 ], + [ 7.8739179, 46.3274285 ], + [ 7.8737724, 46.3275084 ], + [ 7.8736179, 46.327566 ], + [ 7.8733832, 46.3276578 ], + [ 7.8730755, 46.3277445 ], + [ 7.8728481, 46.3278251 ], + [ 7.8726617999999995, 46.3278772 ], + [ 7.8723936, 46.3279242 ], + [ 7.8721747, 46.3279597 ], + [ 7.8720361, 46.3279777 ], + [ 7.8718984, 46.3280125 ], + [ 7.871785, 46.3280471 ], + [ 7.8715749, 46.3281557 ], + [ 7.8714294, 46.3282412 ], + [ 7.8712596, 46.3283157 ], + [ 7.8708445, 46.328375199999996 ], + [ 7.8704137, 46.3283898 ], + [ 7.8697121, 46.3283445 ], + [ 7.8697658, 46.3286705 ], + [ 7.8698838, 46.3289229 ], + [ 7.8699625, 46.3293274 ], + [ 7.8700257, 46.3297208 ], + [ 7.8700717000000004, 46.3300975 ], + [ 7.87015, 46.3304514 ], + [ 7.8701244, 46.3309075 ], + [ 7.8700262, 46.3309083 ], + [ 7.8696735, 46.3307477 ], + [ 7.8694526, 46.3306313 ], + [ 7.8692552, 46.3305091 ], + [ 7.8690902, 46.3303808 ], + [ 7.8685960999999995, 46.3299963 ], + [ 7.8684584, 46.3300255 ], + [ 7.8680997999999995, 46.3300508 ], + [ 7.86793, 46.3301253 ], + [ 7.8678907, 46.3301931 ], + [ 7.8678749, 46.3302438 ], + [ 7.867827, 46.3303399 ], + [ 7.8677311, 46.330436399999996 ], + [ 7.8676506, 46.3305213 ], + [ 7.8676348, 46.3305721 ], + [ 7.8676522, 46.330617 ], + [ 7.8676862, 46.3307012 ], + [ 7.8677283, 46.3307965 ], + [ 7.8677372, 46.3308921 ], + [ 7.8677222, 46.3309485 ], + [ 7.8676412, 46.3309659 ], + [ 7.8674862999999995, 46.3309897 ], + [ 7.8673487, 46.3310302 ], + [ 7.8672763, 46.3311208 ], + [ 7.8672775999999995, 46.331177 ], + [ 7.8672861, 46.3312332 ], + [ 7.8673038, 46.3313119 ], + [ 7.8672881, 46.3313739 ], + [ 7.8672328, 46.33147 ], + [ 7.8671619, 46.3316394 ], + [ 7.8671074999999995, 46.3318424 ], + [ 7.8669877, 46.3319896 ], + [ 7.8669584, 46.3321867 ], + [ 7.8669605, 46.3323499 ], + [ 7.8670284, 46.3325126 ], + [ 7.8671032, 46.3326359 ], + [ 7.8671878, 46.3328715 ], + [ 7.8672801, 46.3330453 ], + [ 7.8673143, 46.3331577 ], + [ 7.8673246, 46.3333319 ], + [ 7.8673421999999995, 46.3334106 ], + [ 7.867368, 46.3334892 ], + [ 7.8674996, 46.3336063 ], + [ 7.8675429, 46.3337355 ], + [ 7.8675608, 46.3338479 ], + [ 7.867594, 46.3339377 ], + [ 7.8676776, 46.3340439 ], + [ 7.8678091, 46.3341554 ], + [ 7.8675062, 46.3340228 ], + [ 7.8673752, 46.3339843 ], + [ 7.8671792, 46.3339408 ], + [ 7.8669349, 46.3339483 ], + [ 7.8667639, 46.3339722 ], + [ 7.8665374, 46.3340752 ], + [ 7.8664002, 46.3341832 ], + [ 7.8663123, 46.3342571 ], + [ 7.8662302, 46.3342296 ], + [ 7.8661639999999995, 46.3341794 ], + [ 7.8661057, 46.3340898 ], + [ 7.8660391, 46.333989 ], + [ 7.8658914, 46.3338832 ], + [ 7.8656584, 46.3335698 ], + [ 7.8655095, 46.3334191 ], + [ 7.8653037999999995, 46.3332687 ], + [ 7.865164, 46.3331403 ], + [ 7.8649747, 46.3330237 ], + [ 7.8647449, 46.3329073 ], + [ 7.8645324, 46.3328188 ], + [ 7.8642623, 46.3327365 ], + [ 7.8640746, 46.3327154 ], + [ 7.8636493, 46.3326117 ], + [ 7.8634287, 46.3325347 ], + [ 7.8631829, 46.3324465 ], + [ 7.8629047, 46.3323642 ], + [ 7.8626585, 46.3322366 ], + [ 7.8624368, 46.3321202 ], + [ 7.8622649, 46.3320371 ], + [ 7.8620356000000005, 46.3319769 ], + [ 7.8617992, 46.3319505 ], + [ 7.8614642, 46.33188 ], + [ 7.8611698, 46.3318091 ], + [ 7.8609169, 46.3317436 ], + [ 7.8607281, 46.3316775 ], + [ 7.8605723, 46.3315773 ], + [ 7.8603588, 46.3314777 ], + [ 7.8600802, 46.331339 ], + [ 7.859834, 46.3312002 ], + [ 7.8594664, 46.3311074 ], + [ 7.8590577, 46.3310486 ], + [ 7.8585611, 46.3310749 ], + [ 7.8583587, 46.3311384 ], + [ 7.8581809, 46.3312354 ], + [ 7.8580113, 46.3313492 ], + [ 7.857817, 46.3314126 ], + [ 7.8575254999999995, 46.3315049 ], + [ 7.8572979, 46.3315685 ], + [ 7.8571117, 46.3316206 ], + [ 7.8568596, 46.3316675 ], + [ 7.8565751, 46.3317203 ], + [ 7.8563806, 46.3317612 ], + [ 7.8561447, 46.3317911 ], + [ 7.8558765, 46.3318551 ], + [ 7.8557064, 46.3318958 ], + [ 7.8554878, 46.3319649 ], + [ 7.8552119, 46.3320796 ], + [ 7.8549207, 46.3322169 ], + [ 7.8545308, 46.3322817 ], + [ 7.8541491, 46.3323578 ], + [ 7.853866, 46.3324838 ], + [ 7.853649, 46.3326542 ], + [ 7.8535447, 46.3328239 ], + [ 7.8534991, 46.3330155 ], + [ 7.8534684, 46.3331396 ], + [ 7.853349, 46.3333375 ], + [ 7.8531729, 46.3335526 ], + [ 7.853037, 46.3337281 ], + [ 7.8529892, 46.3338354 ], + [ 7.8529989, 46.3339422 ], + [ 7.8530166, 46.3340321 ], + [ 7.853075, 46.3341273 ], + [ 7.853109, 46.3342284 ], + [ 7.8531513, 46.3343407 ], + [ 7.8531936, 46.3344585 ], + [ 7.8531804, 46.3346387 ], + [ 7.8531744, 46.3348188 ], + [ 7.8531604999999995, 46.3350215 ], + [ 7.8532025, 46.3350943 ], + [ 7.8532606, 46.3351614 ], + [ 7.8533105, 46.3352117 ], + [ 7.8533679, 46.3352845 ], + [ 7.8534433, 46.3353795 ], + [ 7.8534776, 46.3355087 ], + [ 7.8535213, 46.3357109 ], + [ 7.8535321, 46.3359472 ], + [ 7.8534942, 46.3360938 ], + [ 7.8533881999999995, 46.3361396 ], + [ 7.8532989, 46.3361291 ], + [ 7.8531933, 46.3361299 ], + [ 7.8530223, 46.3361593 ], + [ 7.8528106, 46.3361834 ], + [ 7.8525674, 46.336219 ], + [ 7.8523076, 46.3363167 ], + [ 7.8519679, 46.3364768 ], + [ 7.8519886, 46.3362178 ], + [ 7.8519626, 46.3360998 ], + [ 7.8518801, 46.3360329 ], + [ 7.8517729, 46.3359268 ], + [ 7.851592, 46.3358325 ], + [ 7.8514523, 46.3357098 ], + [ 7.8513119, 46.3356095 ], + [ 7.8511966, 46.3354978 ], + [ 7.851057, 46.335392 ], + [ 7.8508028, 46.3352588 ], + [ 7.8506381, 46.33517 ], + [ 7.8505065, 46.3350416 ], + [ 7.8504564, 46.3349632 ], + [ 7.8503887, 46.3348118 ], + [ 7.8503138, 46.3346829 ], + [ 7.8502877, 46.3345593 ], + [ 7.8501887, 46.3344588 ], + [ 7.8500727, 46.3343526 ], + [ 7.8499331, 46.3342469 ], + [ 7.8498171, 46.334152 ], + [ 7.8497353, 46.3340739 ], + [ 7.849522, 46.3339798 ], + [ 7.8494396, 46.3339354 ], + [ 7.8493163, 46.3338294 ], + [ 7.8491839, 46.3337122 ], + [ 7.8490119, 46.3336066 ], + [ 7.8487577, 46.3334904 ], + [ 7.8486417, 46.3333956 ], + [ 7.8485105, 46.3333177 ], + [ 7.8484198, 46.3332453 ], + [ 7.8482803, 46.3331451 ], + [ 7.8481733, 46.3330558 ], + [ 7.8480584, 46.3329948 ], + [ 7.8479271, 46.3329114 ], + [ 7.8477867, 46.3328111 ], + [ 7.8476476, 46.3327672 ], + [ 7.84755, 46.332751 ], + [ 7.8473786, 46.3327242 ], + [ 7.8471329, 46.3326472 ], + [ 7.8466411, 46.3324484 ], + [ 7.8463465, 46.332338 ], + [ 7.8460842, 46.3322218 ], + [ 7.8459124, 46.3321443 ], + [ 7.8457327, 46.3321007 ], + [ 7.8456019999999995, 46.3320961 ], + [ 7.8454639, 46.3320801 ], + [ 7.8453478, 46.3319798 ], + [ 7.8452572, 46.3319129 ], + [ 7.8450935, 46.3318353 ], + [ 7.8449704, 46.3317575 ], + [ 7.8447973, 46.3316294 ], + [ 7.8446567, 46.3314841 ], + [ 7.844509, 46.3313895 ], + [ 7.8443455, 46.3313345 ], + [ 7.8441821, 46.3313019 ], + [ 7.8440272, 46.3313199 ], + [ 7.8438152, 46.3313047 ], + [ 7.8436447, 46.3312947 ], + [ 7.8434327, 46.3312738 ], + [ 7.8432613, 46.3312581 ], + [ 7.8430902, 46.3312707 ], + [ 7.8429038, 46.331306 ], + [ 7.8427329, 46.3313635 ], + [ 7.8425301, 46.3313762 ], + [ 7.8423020999999995, 46.3313836 ], + [ 7.8420323, 46.3313462 ], + [ 7.8417472, 46.3313202 ], + [ 7.8415192, 46.3313219 ], + [ 7.8412344, 46.3313352 ], + [ 7.8411032, 46.3312632 ], + [ 7.8409223, 46.3311744 ], + [ 7.8407845, 46.3311923 ], + [ 7.8406294, 46.3311935 ], + [ 7.8404174, 46.3311669 ], + [ 7.8402458, 46.3311231 ], + [ 7.8400585, 46.3311528 ], + [ 7.8398967, 46.3312159 ], + [ 7.8397593, 46.3313013 ], + [ 7.839581, 46.3313307 ], + [ 7.8394015, 46.3313208 ], + [ 7.8392626, 46.331305 ], + [ 7.8391233, 46.3312384 ], + [ 7.838935, 46.331133 ], + [ 7.8387301, 46.3310726 ], + [ 7.8385423, 46.3310289 ], + [ 7.8383626, 46.3309853 ], + [ 7.8380685, 46.3309537 ], + [ 7.8376931, 46.3308946 ], + [ 7.8372282, 46.3308138 ], + [ 7.8367297, 46.3306824 ], + [ 7.8364681, 46.3306449 ], + [ 7.836256, 46.3306183 ], + [ 7.8361182, 46.3306362 ], + [ 7.8358986, 46.3306886 ], + [ 7.8357282999999995, 46.3307067 ], + [ 7.8355073, 46.3306746 ], + [ 7.8352869, 46.3306142 ], + [ 7.8350006, 46.3305376 ], + [ 7.8346979999999995, 46.3304499 ], + [ 7.8343389, 46.3304018 ], + [ 7.8339646, 46.3303822 ], + [ 7.8335812, 46.3303399 ], + [ 7.8331965, 46.3302302 ], + [ 7.8325655, 46.3299536 ], + [ 7.8317297, 46.3295377 ], + [ 7.8315762, 46.3296345 ], + [ 7.8314554, 46.3297592 ], + [ 7.8313841, 46.3299005 ], + [ 7.8312241, 46.3300985 ], + [ 7.8308424, 46.3301915 ], + [ 7.8307725999999995, 46.3301839 ], + [ 7.8306433, 46.330155 ], + [ 7.8305308, 46.3300811 ], + [ 7.8303692, 46.3299617 ], + [ 7.830169, 46.3297803 ], + [ 7.830025, 46.3296106 ], + [ 7.8299136, 46.3294747 ], + [ 7.8297434, 46.3293891 ], + [ 7.8294846, 46.3292974 ], + [ 7.8292502, 46.3292113 ], + [ 7.8289827, 46.329142 ], + [ 7.8287482, 46.329039 ], + [ 7.8284908, 46.3289022 ], + [ 7.8282742, 46.3286981 ], + [ 7.8280501000000005, 46.3284547 ], + [ 7.827899, 46.3282061 ], + [ 7.8276185, 46.3279171 ], + [ 7.8272952, 46.3277686 ], + [ 7.8270532, 46.3276318 ], + [ 7.8267956, 46.3274725 ], + [ 7.8265947, 46.3272967 ], + [ 7.8263788, 46.3270701 ], + [ 7.8261455, 46.3268941 ], + [ 7.8258966, 46.3267067 ], + [ 7.8253882, 46.3264388 ], + [ 7.8248565, 46.3260749 ], + [ 7.8242686, 46.3256938 ], + [ 7.8236969, 46.3253016 ], + [ 7.8233592, 46.3250516 ], + [ 7.8228673, 46.3248119 ], + [ 7.8222045, 46.3244978 ], + [ 7.8215749, 46.3241783 ], + [ 7.8210677, 46.3238427 ], + [ 7.8207538, 46.3236324 ], + [ 7.8204731, 46.323411 ], + [ 7.8202321999999995, 46.3231956 ], + [ 7.8200237, 46.3229803 ], + [ 7.8197513999999995, 46.3226859 ], + [ 7.81952, 46.3224367 ], + [ 7.8192709, 46.3222155 ], + [ 7.8191032, 46.3220231 ], + [ 7.818943, 46.3218531 ], + [ 7.8187899, 46.3217733 ], + [ 7.8185316, 46.3216251 ], + [ 7.8182578, 46.3214713 ], + [ 7.8178875, 46.3212042 ], + [ 7.817453, 46.32092 ], + [ 7.8170566, 46.3207427 ], + [ 7.8165572, 46.3204691 ], + [ 7.8159119, 46.3200932 ], + [ 7.8146318, 46.3198084 ], + [ 7.8144697, 46.3203025 ], + [ 7.8143689, 46.3205155 ], + [ 7.8143175, 46.3207064 ], + [ 7.8142815, 46.3208974 ], + [ 7.8142461999999995, 46.3210772 ], + [ 7.8142271999999995, 46.3212685 ], + [ 7.8142408, 46.3214654 ], + [ 7.8142385, 46.3216061 ], + [ 7.8142751, 46.3218482 ], + [ 7.8143367, 46.3220738 ], + [ 7.8143752, 46.3222428 ], + [ 7.8143893, 46.3224004 ], + [ 7.8144669, 46.3225979 ], + [ 7.814489, 46.3227499 ], + [ 7.8144863, 46.3229412 ], + [ 7.8144754, 46.3231156 ], + [ 7.8144802, 46.3233407 ], + [ 7.8144729, 46.3238245 ], + [ 7.8145027, 46.3240216 ], + [ 7.8145577, 46.324112 ], + [ 7.814646, 46.3242082 ], + [ 7.8147256, 46.3243269 ], + [ 7.8147402, 46.3244509 ], + [ 7.8147228, 46.3245183 ], + [ 7.8147294, 46.3246421 ], + [ 7.8147843, 46.3247212 ], + [ 7.8148646, 46.3248287 ], + [ 7.8148465, 46.3249129 ], + [ 7.8148443, 46.3250648 ], + [ 7.8148751999999995, 46.3252001 ], + [ 7.8145405, 46.3252651 ], + [ 7.8142819, 46.3251846 ], + [ 7.81403, 46.3251378 ], + [ 7.8140614, 46.3252168 ], + [ 7.8141171, 46.325296 ], + [ 7.8142454, 46.3254319 ], + [ 7.8143819, 46.3255623 ], + [ 7.8145083, 46.3257714 ], + [ 7.8145398, 46.3258728 ], + [ 7.8145439, 46.3261036 ], + [ 7.814468, 46.3262774 ], + [ 7.8143364, 46.3263834 ], + [ 7.8140268, 46.3264487 ], + [ 7.8139553, 46.3263188 ], + [ 7.8138915, 46.3262452 ], + [ 7.8137389, 46.3261261 ], + [ 7.8135693, 46.3260123 ], + [ 7.813401, 46.3258479 ], + [ 7.8132972, 46.3257347 ], + [ 7.8132021, 46.3255933 ], + [ 7.8130732, 46.3255023 ], + [ 7.8128956, 46.3254055 ], + [ 7.8127175, 46.3253536 ], + [ 7.8126206, 46.3252967 ], + [ 7.8125006, 46.3252057 ], + [ 7.8124043, 46.3251207 ], + [ 7.8123808, 46.3250136 ], + [ 7.8123832, 46.3248899 ], + [ 7.8123518, 46.3248052 ], + [ 7.8122643, 46.3247033 ], + [ 7.8121677, 46.3245901 ], + [ 7.8120796, 46.3245276 ], + [ 7.8120563, 46.3244375 ], + [ 7.8120662, 46.3243475 ], + [ 7.8120753, 46.3242575 ], + [ 7.812012, 46.3241333 ], + [ 7.8119651, 46.3240373 ], + [ 7.8119423999999995, 46.3239247 ], + [ 7.8119115, 46.3238007 ], + [ 7.8118326, 46.3236594 ], + [ 7.8117529999999995, 46.3235295 ], + [ 7.811666, 46.3233769 ], + [ 7.8116757, 46.3232646 ], + [ 7.8116938, 46.323169 ], + [ 7.8116954, 46.3230564 ], + [ 7.8116228, 46.3229941 ], + [ 7.8115027999999995, 46.3228919 ], + [ 7.8114482, 46.3227453 ], + [ 7.8114341, 46.3225764 ], + [ 7.8113806, 46.322351 ], + [ 7.8113353, 46.3221425 ], + [ 7.8112319, 46.321973 ], + [ 7.8111768, 46.3218601 ], + [ 7.8111622, 46.3217418 ], + [ 7.8111894, 46.3215675 ], + [ 7.811071, 46.3213473 ], + [ 7.8108740999999995, 46.3209127 ], + [ 7.8106475, 46.3213612 ], + [ 7.8105722, 46.3215012 ], + [ 7.8105537, 46.3216531 ], + [ 7.8106576, 46.3217775 ], + [ 7.8104767, 46.3218945 ], + [ 7.8104688, 46.3219281 ], + [ 7.810474, 46.3221026 ], + [ 7.8106283, 46.322115 ], + [ 7.8107862, 46.3224199 ], + [ 7.8103155, 46.3228891 ], + [ 7.8100591999999995, 46.3231517 ], + [ 7.8099834, 46.3233368 ], + [ 7.8099329, 46.3234378 ], + [ 7.8097039, 46.3235318 ], + [ 7.8097185, 46.3236556 ], + [ 7.8096281, 46.3237225 ], + [ 7.8095694, 46.3238009 ], + [ 7.8095343, 46.3240088 ], + [ 7.8092959, 46.3241646 ], + [ 7.8093424, 46.3243168 ], + [ 7.8093006, 46.3243785 ], + [ 7.8092178, 46.3244849 ], + [ 7.8091262, 46.3246247 ], + [ 7.8089597, 46.3248486 ], + [ 7.808704, 46.3250774 ], + [ 7.8085222, 46.3253069 ], + [ 7.8082896, 46.3256034 ], + [ 7.8080979, 46.3259339 ], + [ 7.8079385, 46.3262367 ], + [ 7.8078202, 46.3265114 ], + [ 7.8077832, 46.3267981 ], + [ 7.8076679, 46.3269042 ], + [ 7.8075361999999995, 46.3269989 ], + [ 7.8074703, 46.3270885 ], + [ 7.8074523, 46.327184 ], + [ 7.8075064, 46.3273869 ], + [ 7.8075928, 46.3275564 ], + [ 7.8076543, 46.3277706 ], + [ 7.8076992, 46.3280465 ], + [ 7.8077115, 46.3283055 ], + [ 7.8076744, 46.3285809 ], + [ 7.8075887, 46.3288785 ], + [ 7.807336, 46.3294337 ], + [ 7.80712, 46.3297753 ], + [ 7.8069618, 46.3300161 ], + [ 7.8069988, 46.3302077 ], + [ 7.807151, 46.3304 ], + [ 7.8073274, 46.3305532 ], + [ 7.8075456, 46.3306561 ], + [ 7.8077875, 46.3307759 ], + [ 7.8082564, 46.3309818 ], + [ 7.8089328, 46.3313861 ], + [ 7.8091106, 46.3315055 ], + [ 7.8092056, 46.33163 ], + [ 7.8092364, 46.3317427 ], + [ 7.8092585, 46.3318948 ], + [ 7.8092564, 46.3320635 ], + [ 7.809285, 46.3323169 ], + [ 7.8092972, 46.3325702 ], + [ 7.8093107, 46.332756 ], + [ 7.8092271, 46.3328791 ], + [ 7.8091682, 46.3330532 ], + [ 7.8091566, 46.3332556 ], + [ 7.8090806, 46.3334238 ], + [ 7.8089572, 46.3335299 ], + [ 7.8087937, 46.3336075 ], + [ 7.8086127, 46.3337187 ], + [ 7.8085048, 46.333853 ], + [ 7.808437, 46.334027 ], + [ 7.8084924, 46.3341679 ], + [ 7.8085875, 46.3343149 ], + [ 7.8086102, 46.3344219 ], + [ 7.8086403, 46.3345572 ], + [ 7.8086296, 46.334771 ], + [ 7.8085785, 46.3349001 ], + [ 7.8085675, 46.3350744 ], + [ 7.8085242, 46.3352653 ], + [ 7.8084088, 46.3353714 ], + [ 7.808294, 46.3354325 ], + [ 7.8080903, 46.3354366 ], + [ 7.8080318, 46.3355487 ], + [ 7.8078734, 46.3357784 ], + [ 7.8077851, 46.3356877 ], + [ 7.8076795, 46.3356757 ], + [ 7.8075265, 46.3356183 ], + [ 7.8074295, 46.3355501 ], + [ 7.8073575, 46.3354764 ], + [ 7.8073255, 46.3354255 ], + [ 7.8073284, 46.3352568 ], + [ 7.807315, 46.3350654 ], + [ 7.8073178, 46.3348797 ], + [ 7.8072712, 46.3347219 ], + [ 7.8072254999999995, 46.3345528 ], + [ 7.8071053, 46.3344281 ], + [ 7.8070494, 46.334332 ], + [ 7.8068726, 46.3342352 ], + [ 7.8066781, 46.3341606 ], + [ 7.8065332, 46.3340921 ], + [ 7.8062824, 46.3339778 ], + [ 7.8061537, 46.3339037 ], + [ 7.8060409, 46.333796 ], + [ 7.8059702, 46.333666 ], + [ 7.8058988, 46.3335474 ], + [ 7.8058361, 46.3334007 ], + [ 7.8057735, 46.3332539 ], + [ 7.8056868, 46.3330395 ], + [ 7.8056408, 46.3328479 ], + [ 7.8055939, 46.3327519 ], + [ 7.8054249, 46.3326044 ], + [ 7.8051336, 46.332501 ], + [ 7.804463, 46.3322374 ], + [ 7.8043476, 46.3323266 ], + [ 7.8043373, 46.3324953 ], + [ 7.8043507, 46.332664199999996 ], + [ 7.804316, 46.3328158 ], + [ 7.8042736999999995, 46.3329225 ], + [ 7.8043039, 46.3330747 ], + [ 7.8043578, 46.3332437 ], + [ 7.8043969, 46.3333791 ], + [ 7.8044914, 46.3335542 ], + [ 7.8045217000000005, 46.3337232 ], + [ 7.8045194, 46.3338639 ], + [ 7.8045404, 46.3340834 ], + [ 7.8044882, 46.3342799 ], + [ 7.8045253, 46.3344996 ], + [ 7.8044256, 46.3346397 ], + [ 7.8044025, 46.334572 ], + [ 7.8043637, 46.334476 ], + [ 7.8042657, 46.334509 ], + [ 7.8042071, 46.3346155 ], + [ 7.8041716, 46.3347615 ], + [ 7.8041538, 46.3348965 ], + [ 7.8041672, 46.3350767 ], + [ 7.8042143, 46.3352008 ], + [ 7.8043256, 46.3353366 ], + [ 7.8043645999999995, 46.3354606 ], + [ 7.8041371999999996, 46.3354421 ], + [ 7.8042092, 46.335527 ], + [ 7.8042724, 46.3356343 ], + [ 7.8042625, 46.3357243 ], + [ 7.8042528, 46.3358537 ], + [ 7.8042262000000004, 46.3359998 ], + [ 7.8042238, 46.3361347 ], + [ 7.8042210999999995, 46.3363373 ], + [ 7.8042438, 46.3364556 ], + [ 7.8042559, 46.3366807 ], + [ 7.804245, 46.3368719 ], + [ 7.8041859, 46.3370066 ], + [ 7.8041018, 46.3371803 ], + [ 7.8040422, 46.3373713 ], + [ 7.8040151, 46.3375624 ], + [ 7.8039634, 46.3377252 ], + [ 7.8038963, 46.3378935 ], + [ 7.8037792, 46.3380952 ], + [ 7.8036962, 46.3381845 ], + [ 7.8036132, 46.3382797 ], + [ 7.8034977, 46.3383745 ], + [ 7.8033836999999995, 46.3384356 ], + [ 7.8031787999999995, 46.3385072 ], + [ 7.8030552, 46.3385907 ], + [ 7.8029724, 46.338714 ], + [ 7.8028807, 46.3388482 ], + [ 7.8027165, 46.3389372 ], + [ 7.8025611, 46.3389978 ], + [ 7.8025839, 46.3391331 ], + [ 7.8026615, 46.339325 ], + [ 7.8027331, 46.3394774 ], + [ 7.8028438, 46.3396414 ], + [ 7.8029641, 46.3397828 ], + [ 7.8029857, 46.3399687 ], + [ 7.8030072, 46.3401545 ], + [ 7.8030541, 46.3402504 ], + [ 7.8030936, 46.3403352 ], + [ 7.8031406, 46.3404368 ], + [ 7.8031635, 46.3405776 ], + [ 7.8031856, 46.3407296 ], + [ 7.8032406, 46.3408257 ], + [ 7.8032395999999995, 46.3409213 ], + [ 7.8032366, 46.3410733 ], + [ 7.8031701, 46.3412022 ], + [ 7.8031033, 46.3412917 ], + [ 7.8029797, 46.3413809 ], + [ 7.8028806, 46.3414983 ], + [ 7.8029032, 46.3415997 ], + [ 7.8029752, 46.3416734 ], + [ 7.8030647, 46.3417077 ], + [ 7.8031766000000005, 46.3418098 ], + [ 7.8033043, 46.3419628 ], + [ 7.8033845, 46.3420646 ], + [ 7.8034877, 46.3422059 ], + [ 7.8035511, 46.3423246 ], + [ 7.8036625, 46.3424773 ], + [ 7.8037989, 46.3425964 ], + [ 7.8039035, 46.3427041 ], + [ 7.8040481, 46.3428345 ], + [ 7.8042065, 46.3430888 ], + [ 7.8039233, 46.3429856 ], + [ 7.8036808, 46.342905 ], + [ 7.8034694, 46.3428641 ], + [ 7.8032744, 46.3428402 ], + [ 7.80304, 46.3427485 ], + [ 7.8027162, 46.3426448 ], + [ 7.8024823, 46.3425137 ], + [ 7.8021922, 46.3423485 ], + [ 7.8018865, 46.3421494 ], + [ 7.8016298, 46.3418831 ], + [ 7.8015107, 46.3416853 ], + [ 7.8013998, 46.3414876 ], + [ 7.8013047, 46.3413462 ], + [ 7.8011932, 46.3411879 ], + [ 7.8010974, 46.3410635 ], + [ 7.8009936, 46.3409558 ], + [ 7.8008328, 46.3408253 ], + [ 7.8007039, 46.3407287 ], + [ 7.8006246, 46.340638 ], + [ 7.8005368, 46.3405024 ], + [ 7.8004734, 46.3403726 ], + [ 7.8004362, 46.3401473 ], + [ 7.8004228, 46.3399615 ], + [ 7.8004095, 46.3398038 ], + [ 7.8003625, 46.3396853 ], + [ 7.8002592, 46.3395384 ], + [ 7.8002126, 46.3393635 ], + [ 7.8001436, 46.3391211 ], + [ 7.8000902, 46.3388957 ], + [ 7.7999787, 46.3387317 ], + [ 7.7998335999999995, 46.3386519 ], + [ 7.799656, 46.338555 ], + [ 7.7995184, 46.3384865 ], + [ 7.7993315, 46.3384627 ], + [ 7.7991047, 46.3384046 ], + [ 7.7990404, 46.3383818 ], + [ 7.7989353999999995, 46.338336 ], + [ 7.7987903, 46.3382505 ], + [ 7.7985634, 46.3381869 ], + [ 7.7983771, 46.338135 ], + [ 7.7982652, 46.3380272 ], + [ 7.7981694, 46.3379029 ], + [ 7.7980075, 46.3378397 ], + [ 7.7977887, 46.3377819 ], + [ 7.7976606, 46.3376741 ], + [ 7.7975717, 46.3376228 ], + [ 7.7974005, 46.3376215 ], + [ 7.7971813, 46.33762 ], + [ 7.7969776, 46.3376241 ], + [ 7.7967338, 46.3375943 ], + [ 7.7964833, 46.3375249 ], + [ 7.7962726, 46.3374446 ], + [ 7.7960302, 46.337369699999996 ], + [ 7.7957065, 46.3372717 ], + [ 7.7955039, 46.3372084 ], + [ 7.7953421, 46.3371677 ], + [ 7.7951715, 46.3371497 ], + [ 7.7950327, 46.337143 ], + [ 7.7948784, 46.3371419 ], + [ 7.7947322, 46.337124 ], + [ 7.7945948, 46.3370893 ], + [ 7.7944654, 46.3370377 ], + [ 7.7943198, 46.3369916 ], + [ 7.7941497, 46.3369285 ], + [ 7.793956, 46.3368539 ], + [ 7.7938016, 46.3368247 ], + [ 7.7935248999999995, 46.3368339 ], + [ 7.7932964, 46.3368997 ], + [ 7.7930753, 46.336977 ], + [ 7.7926587, 46.3370751 ], + [ 7.7923565, 46.3371686 ], + [ 7.792121, 46.3371613 ], + [ 7.7920077, 46.3370873 ], + [ 7.7918464, 46.3369905 ], + [ 7.7916944, 46.3368375 ], + [ 7.7915016999999995, 46.3366672 ], + [ 7.7913816, 46.3365426 ], + [ 7.791254, 46.3363954 ], + [ 7.79116, 46.3361753 ], + [ 7.791081, 46.3360059 ], + [ 7.7909795, 46.335752 ], + [ 7.7909249, 46.335594 ], + [ 7.7908449, 46.3355203 ], + [ 7.790716, 46.3354294 ], + [ 7.7905634, 46.3352933 ], + [ 7.7904359, 46.3351629 ], + [ 7.7902827, 46.3350718 ], + [ 7.7901945, 46.3349811 ], + [ 7.7901475, 46.3348682 ], + [ 7.7900116, 46.3346872 ], + [ 7.7898672, 46.3345849 ], + [ 7.7897459, 46.3345333 ], + [ 7.789649, 46.334482 ], + [ 7.7895771, 46.3344027 ], + [ 7.7894888, 46.3343064 ], + [ 7.789377, 46.3342213 ], + [ 7.7892312, 46.3341357 ], + [ 7.7889725, 46.3340495 ], + [ 7.7886481, 46.3339739 ], + [ 7.7884296, 46.3339386 ], + [ 7.7882514, 46.3338754 ], + [ 7.78805, 46.3337389 ], + [ 7.7877594, 46.3335962 ], + [ 7.7874929999999996, 46.3334591 ], + [ 7.7872187, 46.3333277 ], + [ 7.7870419, 46.3332307 ], + [ 7.7868068, 46.3331503 ], + [ 7.7866132, 46.3330814 ], + [ 7.7864505, 46.3330352 ], + [ 7.7862332, 46.3329323 ], + [ 7.7860405, 46.3327509 ], + [ 7.7857845999999995, 46.332462 ], + [ 7.7854405, 46.3320994 ], + [ 7.7852874, 46.3320083 ], + [ 7.7851987, 46.3319852 ], + [ 7.7850843, 46.3319843 ], + [ 7.7849782, 46.3320172 ], + [ 7.7848882, 46.3320448 ], + [ 7.7848484, 46.3320332 ], + [ 7.7847346, 46.3320154 ], + [ 7.7846203, 46.3320315 ], + [ 7.7845785, 46.3320987 ], + [ 7.7845124, 46.3321714 ], + [ 7.7844624, 46.3322216 ], + [ 7.7843969, 46.332255 ], + [ 7.7842834, 46.3322709 ], + [ 7.7841857999999995, 46.3322422 ], + [ 7.784016, 46.3322127 ], + [ 7.7838209, 46.3321776 ], + [ 7.7835529, 46.3321475 ], + [ 7.7832930000000005, 46.3321174 ], + [ 7.7830175, 46.332076 ], + [ 7.7827327, 46.3320795 ], + [ 7.782464, 46.3320775 ], + [ 7.7821143, 46.3320975 ], + [ 7.7817326, 46.3320721 ], + [ 7.7814163, 46.3319854 ], + [ 7.780907, 46.3317961 ], + [ 7.7808008, 46.3318177 ], + [ 7.7806941, 46.3318844 ], + [ 7.7805792, 46.3319511 ], + [ 7.7804637, 46.3320347 ], + [ 7.7802428, 46.3321399 ], + [ 7.7799736, 46.3321886 ], + [ 7.7797775, 46.3322377 ], + [ 7.7795901, 46.3322588 ], + [ 7.7792978, 46.3322455 ], + [ 7.7790135, 46.3322039 ], + [ 7.7787372999999995, 46.3321682 ], + [ 7.7784618, 46.3321155 ], + [ 7.7780807, 46.3320564 ], + [ 7.7777076, 46.3319749 ], + [ 7.7773097, 46.3319382 ], + [ 7.7769923, 46.3319301 ], + [ 7.7766999, 46.3319112 ], + [ 7.7762927, 46.3319532 ], + [ 7.776088, 46.3320529 ], + [ 7.7758257, 46.3321578 ], + [ 7.775792, 46.3322251 ], + [ 7.7755483, 46.3322008 ], + [ 7.7754097, 46.3322279 ], + [ 7.7752304, 46.3322433 ], + [ 7.7749786, 46.3322134 ], + [ 7.7747513, 46.3322117 ], + [ 7.7744339, 46.3322093 ], + [ 7.774196, 46.3323257 ], + [ 7.7739014, 46.3324642 ], + [ 7.7734418, 46.332697 ], + [ 7.7732459, 46.3327743 ], + [ 7.7730659, 46.3328068 ], + [ 7.7729517, 46.3328453 ], + [ 7.7729505, 46.3329184 ], + [ 7.7729818, 46.332997399999996 ], + [ 7.7728351, 46.3330244 ], + [ 7.772607, 46.3330283 ], + [ 7.7723953, 46.333038 ], + [ 7.7722736, 46.3330595 ], + [ 7.7721105, 46.3330696 ], + [ 7.771923, 46.3330683 ], + [ 7.7717601, 46.3330952 ], + [ 7.7716784, 46.3331396 ], + [ 7.7714486, 46.3332672 ], + [ 7.7715205, 46.3333353 ], + [ 7.7714063, 46.3333851 ], + [ 7.7712995, 46.3334349 ], + [ 7.7711439, 46.3334731 ], + [ 7.7710135000000005, 46.3335228 ], + [ 7.7708898, 46.3336006 ], + [ 7.7707344, 46.3336783 ], + [ 7.7706362, 46.333683 ], + [ 7.7705309, 46.3337049 ], + [ 7.7703997000000005, 46.3337657 ], + [ 7.7702267, 46.3338713 ], + [ 7.7700213, 46.3339935 ], + [ 7.7697585, 46.3341604 ], + [ 7.7695376, 46.3342712 ], + [ 7.7692678, 46.3343592 ], + [ 7.7690472, 46.3343969 ], + [ 7.7688922, 46.3344014 ], + [ 7.7687861, 46.3344344 ], + [ 7.7686801, 46.3344899 ], + [ 7.7685488, 46.3345282 ], + [ 7.7683452, 46.3345436 ], + [ 7.7678262, 46.3344834 ], + [ 7.7680011, 46.3346872 ], + [ 7.7674425, 46.3345368 ], + [ 7.7672158, 46.3344844 ], + [ 7.766899, 46.3344482 ], + [ 7.7665977999999996, 46.334446 ], + [ 7.7664083, 46.3346415 ], + [ 7.7665039, 46.3347492 ], + [ 7.7667133, 46.3348801 ], + [ 7.7667845, 46.3349764 ], + [ 7.7667028, 46.3350264 ], + [ 7.7665955, 46.3351324 ], + [ 7.7665356, 46.3353008 ], + [ 7.7665564, 46.3355148 ], + [ 7.7665947, 46.3356838 ], + [ 7.7667459999999995, 46.335865 ], + [ 7.7670185, 46.3361034 ], + [ 7.7672681, 46.3363022 ], + [ 7.7674368, 46.3364159 ], + [ 7.7676143, 46.3364905 ], + [ 7.7678661, 46.3365318 ], + [ 7.7678638, 46.3366724 ], + [ 7.7680012, 46.3367185 ], + [ 7.7681225, 46.3367756 ], + [ 7.7681937, 46.3368718 ], + [ 7.7681921, 46.3370012 ], + [ 7.7680305, 46.3370035 ], + [ 7.7679066, 46.337044 ], + [ 7.767806, 46.337056 ], + [ 7.7676698, 46.3370817 ], + [ 7.7675339999999995, 46.3370503 ], + [ 7.7674099, 46.3370629 ], + [ 7.7673191, 46.3370769 ], + [ 7.7672463, 46.3371179 ], + [ 7.7670799, 46.337131 ], + [ 7.7669525, 46.3372734 ], + [ 7.7666416, 46.3373951 ], + [ 7.7664352999999995, 46.3375206 ], + [ 7.7661956, 46.3376059 ], + [ 7.7660222999999995, 46.3375541 ], + [ 7.7658087, 46.3375308 ], + [ 7.7656518, 46.3376277 ], + [ 7.76542, 46.3378216 ], + [ 7.7652466, 46.3378785 ], + [ 7.7650324, 46.3378895 ], + [ 7.7649, 46.3380151 ], + [ 7.7647017, 46.3381005 ], + [ 7.7644952, 46.3381858 ], + [ 7.7643378, 46.3383455 ], + [ 7.7642386, 46.3385855 ], + [ 7.7641468, 46.3388483 ], + [ 7.764055, 46.3390996 ], + [ 7.7639713, 46.339351 ], + [ 7.7639949, 46.3396369 ], + [ 7.7641427, 46.3399173 ], + [ 7.7641579, 46.3401459 ], + [ 7.7642068, 46.3403176 ], + [ 7.7642965, 46.3405177 ], + [ 7.7643121, 46.3406951 ], + [ 7.7642296, 46.3408778 ], + [ 7.7641293000000005, 46.3410662 ], + [ 7.7640468, 46.3412547 ], + [ 7.7640212, 46.3414605 ], + [ 7.7640697, 46.3416892 ], + [ 7.764225, 46.3420039 ], + [ 7.7643725, 46.3422271 ], + [ 7.7645776, 46.3424618 ], + [ 7.7647335, 46.342605 ], + [ 7.7648727, 46.3427997 ], + [ 7.7649543, 46.3429999 ], + [ 7.7649779, 46.3432857 ], + [ 7.7650018, 46.3434744 ], + [ 7.7650915, 46.3436747 ], + [ 7.7652967, 46.3439208 ], + [ 7.7655102, 46.3441786 ], + [ 7.7654435, 46.3442927 ], + [ 7.7651715, 46.3442923 ], + [ 7.7649166, 46.3442917 ], + [ 7.764627, 46.3444684 ], + [ 7.7643376, 46.3446736 ], + [ 7.7641395, 46.344799 ], + [ 7.7640397, 46.344959 ], + [ 7.7639316, 46.3452045 ], + [ 7.7637989, 46.3455415 ], + [ 7.7636493, 46.3457813 ], + [ 7.7634261, 46.3459238 ], + [ 7.7631866, 46.3460721 ], + [ 7.7629307, 46.3461687 ], + [ 7.7627331, 46.346117 ], + [ 7.7623782, 46.3460991 ], + [ 7.762263, 46.346116 ], + [ 7.7620971, 46.3463444 ], + [ 7.7621044, 46.3464873 ], + [ 7.7622773, 46.3467449 ], + [ 7.7623997, 46.3469851 ], + [ 7.7622912, 46.3473109 ], + [ 7.7621405, 46.3477736 ], + [ 7.7620655, 46.3479963 ], + [ 7.7619831, 46.3480705 ], + [ 7.761869, 46.3478473 ], + [ 7.761754, 46.3476241 ], + [ 7.7617548, 46.3474869 ], + [ 7.7614583, 46.3473321 ], + [ 7.7613933, 46.347189 ], + [ 7.7612612, 46.3470859 ], + [ 7.7608578999999995, 46.3469766 ], + [ 7.7606443, 46.3468333 ], + [ 7.7606287, 46.3466675 ], + [ 7.7604315, 46.3465413 ], + [ 7.7603072, 46.346541 ], + [ 7.7601832, 46.3467066 ], + [ 7.7601414, 46.3469181 ], + [ 7.7602556, 46.3471469 ], + [ 7.7602052, 46.3474155 ], + [ 7.7600722, 46.347701 ], + [ 7.7599064, 46.347958 ], + [ 7.7597816, 46.3481293 ], + [ 7.7597231, 46.3482664 ], + [ 7.759748, 46.3483578 ], + [ 7.7599121, 46.3485067 ], + [ 7.7600597, 46.3486213 ], + [ 7.7601748, 46.3487188 ], + [ 7.7601661, 46.3489017 ], + [ 7.7601247, 46.3490331 ], + [ 7.7600252, 46.34909 ], + [ 7.7598188, 46.3490725 ], + [ 7.7595717, 46.3490148 ], + [ 7.759358, 46.3489916 ], + [ 7.759209, 46.3490599 ], + [ 7.7590523000000005, 46.3490654 ], + [ 7.7590275, 46.3491225 ], + [ 7.7590932, 46.3492426 ], + [ 7.7591995, 46.3495057 ], + [ 7.7592064, 46.3497173 ], + [ 7.7592881, 46.3499461 ], + [ 7.759287, 46.3502949 ], + [ 7.7593105, 46.3505635 ], + [ 7.7593584, 46.3508381 ], + [ 7.7593903, 46.3511524 ], + [ 7.7594223, 46.3513412 ], + [ 7.7596096, 46.351856 ], + [ 7.7596271, 46.3520603 ], + [ 7.7596804, 46.3522857 ], + [ 7.759726, 46.3524436 ], + [ 7.7597638, 46.3526521 ], + [ 7.7597833, 46.3529279 ], + [ 7.7598449, 46.3531816 ], + [ 7.7598812, 46.3534238 ], + [ 7.7598939, 46.3536433 ], + [ 7.7598579999999995, 46.3538849 ], + [ 7.7598537, 46.3541212 ], + [ 7.7598265, 46.3543235 ], + [ 7.7598546, 46.3545488 ], + [ 7.7598686, 46.3547177 ], + [ 7.7599137, 46.3549207 ], + [ 7.7599589, 46.355146 ], + [ 7.7600047, 46.3553546 ], + [ 7.7600968, 46.3556815 ], + [ 7.760272, 46.3559248 ], + [ 7.7604061, 46.3562072 ], + [ 7.7605521, 46.3567371 ], + [ 7.7606136, 46.3569627 ], + [ 7.7606106, 46.3571427 ], + [ 7.7605832, 46.3573226 ], + [ 7.7605641, 46.3575137 ], + [ 7.7604286, 46.3578053 ], + [ 7.7603102, 46.3581137 ], + [ 7.7601185, 46.3583712 ], + [ 7.7599444, 46.3585836 ], + [ 7.7597927, 46.3588863 ], + [ 7.7595914, 46.359301 ], + [ 7.7593422, 46.359603 ], + [ 7.7591249, 46.3599277 ], + [ 7.7590053, 46.3602981 ], + [ 7.7589174, 46.3606744 ], + [ 7.7587638, 46.3606564 ], + [ 7.7587439, 46.3608587 ], + [ 7.7586973, 46.3612185 ], + [ 7.7585783, 46.3615496 ], + [ 7.7584679, 46.3618413 ], + [ 7.7582913, 46.3621888 ], + [ 7.7580421, 46.3624795 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "JBG0002", + "country" : "CHE", + "name" : [ + { + "text" : "Eidgenössisches Jagdbanngebiet Alpjuhorn", + "lang" : "de-CH" + }, + { + "text" : "District franc fédéral Alpjuhorn", + "lang" : "fr-CH" + }, + { + "text" : "Bandita federale di caccia Alpjuhorn", + "lang" : "it-CH" + }, + { + "text" : "Federal Game Reserve Alpjuhorn", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.3479507, 47.3667675 ], + [ 7.3479454, 47.3666263 ], + [ 7.3479294, 47.3664854 ], + [ 7.3479025, 47.3663453 ], + [ 7.3478648, 47.3662064 ], + [ 7.3478165, 47.366069 ], + [ 7.3477577, 47.3659335 ], + [ 7.3476885, 47.3658003 ], + [ 7.3476092, 47.3656697 ], + [ 7.3475199, 47.3655421 ], + [ 7.3474209, 47.3654179 ], + [ 7.3473125, 47.3652974 ], + [ 7.347195, 47.3651809 ], + [ 7.3470686, 47.3650687 ], + [ 7.3469337, 47.3649612 ], + [ 7.3467908, 47.3648586 ], + [ 7.3466402, 47.3647612 ], + [ 7.3464823, 47.3646693 ], + [ 7.3463175, 47.3645832 ], + [ 7.3461463, 47.364503 ], + [ 7.3459691, 47.3644291 ], + [ 7.3457865, 47.3643615 ], + [ 7.345599, 47.3643005 ], + [ 7.345407, 47.3642463 ], + [ 7.3452111, 47.364199 ], + [ 7.3450119, 47.3641587 ], + [ 7.3448098, 47.3641256 ], + [ 7.3446054, 47.3640996 ], + [ 7.3443993, 47.364081 ], + [ 7.3441921, 47.3640698 ], + [ 7.3439841999999995, 47.3640659 ], + [ 7.3437764, 47.3640694 ], + [ 7.3435691, 47.3640803 ], + [ 7.343363, 47.3640986 ], + [ 7.3431585, 47.3641241 ], + [ 7.3429563, 47.3641569 ], + [ 7.3427569, 47.3641969 ], + [ 7.3425608, 47.3642438 ], + [ 7.3423686, 47.3642977 ], + [ 7.3421809, 47.3643584 ], + [ 7.341998, 47.3644256 ], + [ 7.3418206999999995, 47.3644993 ], + [ 7.3416492, 47.3645791 ], + [ 7.3414841, 47.364665 ], + [ 7.3413258, 47.3647566 ], + [ 7.3411748, 47.3648537 ], + [ 7.3410315, 47.364956 ], + [ 7.3408963, 47.3650633 ], + [ 7.3407695, 47.3651753 ], + [ 7.3406515, 47.3652916 ], + [ 7.3405427, 47.365412 ], + [ 7.3404433000000004, 47.365536 ], + [ 7.3403535, 47.3656634 ], + [ 7.3402737, 47.3657939 ], + [ 7.3402041, 47.365927 ], + [ 7.3401448, 47.3660624 ], + [ 7.340096, 47.3661997 ], + [ 7.3400578, 47.3663386 ], + [ 7.3400304, 47.3664786 ], + [ 7.3400139, 47.3666194 ], + [ 7.3400081, 47.3667606 ], + [ 7.3400133, 47.3669018 ], + [ 7.3400294, 47.3670427 ], + [ 7.3400562, 47.3671828 ], + [ 7.3400939, 47.3673217 ], + [ 7.3401422, 47.3674591 ], + [ 7.340201, 47.3675946 ], + [ 7.3402701, 47.3677278 ], + [ 7.3403494, 47.3678584 ], + [ 7.3404387, 47.367986 ], + [ 7.3405377, 47.3681102 ], + [ 7.3406461, 47.3682308 ], + [ 7.3407636, 47.3683473 ], + [ 7.34089, 47.3684595 ], + [ 7.3410248, 47.368567 ], + [ 7.3411678, 47.3686696 ], + [ 7.3413184, 47.368767 ], + [ 7.3414763, 47.3688588 ], + [ 7.3416411, 47.368945 ], + [ 7.3418123, 47.3690251 ], + [ 7.3419895, 47.3690991 ], + [ 7.3421721, 47.3691667 ], + [ 7.3423596, 47.3692277 ], + [ 7.3425516, 47.3692819 ], + [ 7.3427475, 47.3693292 ], + [ 7.3429468, 47.3693695 ], + [ 7.3431489, 47.3694027 ], + [ 7.3433533, 47.3694286 ], + [ 7.3435595, 47.3694472 ], + [ 7.3437667, 47.3694585 ], + [ 7.3439746, 47.3694623 ], + [ 7.3441824, 47.3694588 ], + [ 7.3443897, 47.3694479 ], + [ 7.3445959, 47.3694297 ], + [ 7.3448004000000005, 47.3694041 ], + [ 7.3450026, 47.3693713 ], + [ 7.3452020000000005, 47.3693313 ], + [ 7.3453981, 47.3692843 ], + [ 7.3455903, 47.3692304 ], + [ 7.3457781, 47.3691698 ], + [ 7.3459609, 47.3691025 ], + [ 7.3461383, 47.3690289 ], + [ 7.3463098, 47.368949 ], + [ 7.3464749, 47.3688632 ], + [ 7.3466332, 47.3687715 ], + [ 7.3467842, 47.3686744 ], + [ 7.3469275, 47.3685721 ], + [ 7.3470627, 47.3684648 ], + [ 7.3471895, 47.3683528 ], + [ 7.3473074, 47.3682365 ], + [ 7.3474163, 47.3681161 ], + [ 7.3475157, 47.3679921 ], + [ 7.3476054, 47.3678646 ], + [ 7.3476852, 47.3677342 ], + [ 7.3477548, 47.3676011 ], + [ 7.3478141, 47.3674657 ], + [ 7.3478629, 47.3673284 ], + [ 7.347901, 47.3671895 ], + [ 7.3479284, 47.3670495 ], + [ 7.347945, 47.3669087 ], + [ 7.3479507, 47.3667675 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "DEL0001", + "country" : "CHE", + "name" : [ + { + "text" : "Prison de Delémont", + "lang" : "de-CH" + }, + { + "text" : "Prison de Delémont", + "lang" : "fr-CH" + }, + { + "text" : "Prison de Delémont", + "lang" : "it-CH" + }, + { + "text" : "Prison de Delémont", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Service juridique", + "lang" : "de-CH" + }, + { + "text" : "Service juridique", + "lang" : "fr-CH" + }, + { + "text" : "Service juridique", + "lang" : "it-CH" + }, + { + "text" : "Service juridique", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Service juridique", + "lang" : "de-CH" + }, + { + "text" : "Service juridique", + "lang" : "fr-CH" + }, + { + "text" : "Service juridique", + "lang" : "it-CH" + }, + { + "text" : "Service juridique", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.jura.ch/fr/Autorites/Administration/DIN/JUR/Prison-de-Delemont/Prison-de-Delemont.html", + "email" : "secr.jur@jura.ch", + "phone" : "0041324205630", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4413603, 47.4099127 ], + [ 7.4411476, 47.4099356 ], + [ 7.4411072, 47.4099399 ], + [ 7.440896, 47.4099731 ], + [ 7.4405417, 47.410043 ], + [ 7.4392728, 47.4103125 ], + [ 7.4391307, 47.4103092 ], + [ 7.4390355, 47.4102731 ], + [ 7.4390424, 47.410232 ], + [ 7.4390338, 47.4102015 ], + [ 7.4389946, 47.4101557 ], + [ 7.4389133, 47.4100511 ], + [ 7.4388688, 47.4099791 ], + [ 7.4388354, 47.4099016 ], + [ 7.438795, 47.4098331 ], + [ 7.4387362, 47.4097497 ], + [ 7.4387137, 47.4097133 ], + [ 7.4383913, 47.4091581 ], + [ 7.4382717, 47.4092111 ], + [ 7.4381928, 47.4092235 ], + [ 7.4380771, 47.4092418 ], + [ 7.4385551, 47.4099734 ], + [ 7.4384409, 47.4099932 ], + [ 7.438246, 47.4100167 ], + [ 7.4379611, 47.410048 ], + [ 7.4377015, 47.410077 ], + [ 7.437532, 47.4101083 ], + [ 7.437588, 47.4106607 ], + [ 7.4375892, 47.4106708 ], + [ 7.4379891, 47.4105957 ], + [ 7.4382927, 47.4105278 ], + [ 7.438298, 47.4105411 ], + [ 7.4384363, 47.4111615 ], + [ 7.4364765, 47.4116727 ], + [ 7.436075, 47.4118121 ], + [ 7.4352745, 47.412083 ], + [ 7.4345316, 47.4123257 ], + [ 7.4341071, 47.4124415 ], + [ 7.4339087, 47.4125245 ], + [ 7.4329108, 47.4128293 ], + [ 7.432084, 47.4130381 ], + [ 7.4326208, 47.413895 ], + [ 7.4333911, 47.4136691 ], + [ 7.4334761, 47.4136357 ], + [ 7.433511, 47.413622 ], + [ 7.433675, 47.4135576 ], + [ 7.4337722, 47.4135229 ], + [ 7.4342488, 47.4133527 ], + [ 7.4344814, 47.4132809 ], + [ 7.4346461999999995, 47.4132302 ], + [ 7.4349454, 47.4131677 ], + [ 7.4351167, 47.4131554 ], + [ 7.4353660999999995, 47.4130529 ], + [ 7.4359445, 47.4129426 ], + [ 7.4361447, 47.4129489 ], + [ 7.4362772, 47.4129109 ], + [ 7.4366898, 47.4128138 ], + [ 7.4369655, 47.412835 ], + [ 7.437283, 47.412866 ], + [ 7.4374315, 47.4128492 ], + [ 7.4375701, 47.4128018 ], + [ 7.4380375, 47.4127514 ], + [ 7.4377774, 47.4126428 ], + [ 7.4378243, 47.4126239 ], + [ 7.4379607, 47.4126595 ], + [ 7.4380529, 47.412666 ], + [ 7.4380991, 47.4126685 ], + [ 7.4383264, 47.4126021 ], + [ 7.4387096, 47.4125166 ], + [ 7.4392921, 47.4123456 ], + [ 7.4399272, 47.4120926 ], + [ 7.4405885, 47.4118183 ], + [ 7.4410661, 47.411658 ], + [ 7.4418062, 47.4114584 ], + [ 7.4425672, 47.411291 ], + [ 7.443979, 47.4110237 ], + [ 7.4444566, 47.4109239 ], + [ 7.4453382999999995, 47.4105463 ], + [ 7.4462619, 47.410165 ], + [ 7.4468182, 47.4100403 ], + [ 7.4474324, 47.4100228 ], + [ 7.4473461, 47.4094533 ], + [ 7.4480352, 47.4089448 ], + [ 7.4482316, 47.4086842 ], + [ 7.4481748, 47.4086819 ], + [ 7.4479206, 47.4086704 ], + [ 7.4478748, 47.4086685 ], + [ 7.4474204, 47.4086501 ], + [ 7.4473568, 47.4086686 ], + [ 7.4472495, 47.4086998 ], + [ 7.4468977, 47.4087338 ], + [ 7.4467377, 47.4087528 ], + [ 7.44672, 47.4087549 ], + [ 7.4466984, 47.4087061 ], + [ 7.4465046, 47.4087335 ], + [ 7.446237, 47.4087829 ], + [ 7.4460236, 47.4088322 ], + [ 7.4457999, 47.4088941 ], + [ 7.4455138, 47.4089708 ], + [ 7.4452901, 47.4090468 ], + [ 7.4451505000000004, 47.4090907 ], + [ 7.4450813, 47.4091055 ], + [ 7.4448518, 47.4091517 ], + [ 7.4446684, 47.4091948 ], + [ 7.4444780999999995, 47.4092434 ], + [ 7.444342, 47.4092888 ], + [ 7.4441816, 47.4093405 ], + [ 7.4436361, 47.4095002 ], + [ 7.4435526, 47.4095239 ], + [ 7.4431966, 47.4096342 ], + [ 7.4430308, 47.4096756 ], + [ 7.4428387, 47.4097147 ], + [ 7.4424355, 47.409787 ], + [ 7.4421213, 47.4098143 ], + [ 7.4418351, 47.4098439 ], + [ 7.4415959, 47.4098807 ], + [ 7.4413603, 47.4099127 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns119", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Liesbergweid - Tannig", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Liesbergweid - Tannig", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Liesbergweid - Tannig", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Liesbergweid - Tannig", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.6013922, 46.8890489 ], + [ 8.601389, 46.889051 ], + [ 8.602301, 46.8899221 ], + [ 8.6028637, 46.8904595 ], + [ 8.6013897, 46.892867 ], + [ 8.6035651, 46.8953286 ], + [ 8.6083277, 46.898657 ], + [ 8.6106556, 46.900039 ], + [ 8.611646499999999, 46.9003262 ], + [ 8.6124499, 46.9005591 ], + [ 8.6146428, 46.9008505 ], + [ 8.618116, 46.9012259 ], + [ 8.6192679, 46.9009069 ], + [ 8.6199134, 46.9007282 ], + [ 8.6201131, 46.9001647 ], + [ 8.6202738, 46.8997112 ], + [ 8.6202745, 46.8997093 ], + [ 8.6202738, 46.8997073 ], + [ 8.6203121, 46.8997011 ], + [ 8.6202827, 46.8996159 ], + [ 8.6201563, 46.8995993 ], + [ 8.6200384, 46.8996284 ], + [ 8.6199373, 46.8996344 ], + [ 8.6198362, 46.8995872 ], + [ 8.6197417, 46.899526 ], + [ 8.619636, 46.8994586 ], + [ 8.6195568, 46.8993723 ], + [ 8.6195222, 46.8992786 ], + [ 8.6193633, 46.8992127 ], + [ 8.619229, 46.8991888 ], + [ 8.6190938, 46.8991446 ], + [ 8.6189922, 46.8990826 ], + [ 8.6188771, 46.8990183 ], + [ 8.6187472, 46.8989511 ], + [ 8.6186317, 46.8989033 ], + [ 8.6186286, 46.8989023 ], + [ 8.6186718, 46.8988418 ], + [ 8.6191271, 46.8980272 ], + [ 8.619358, 46.8976472 ], + [ 8.6196918, 46.8970919 ], + [ 8.6198504, 46.8968281 ], + [ 8.6202707, 46.8961333 ], + [ 8.6202739, 46.8961315 ], + [ 8.6203937, 46.8960654 ], + [ 8.620557699999999, 46.895777 ], + [ 8.6205571, 46.8957084 ], + [ 8.6205333, 46.8956893 ], + [ 8.6206227, 46.8955593 ], + [ 8.6207418, 46.8953693 ], + [ 8.6213459, 46.894373 ], + [ 8.6215072, 46.89411 ], + [ 8.6215483, 46.8940423 ], + [ 8.6219022, 46.8934548 ], + [ 8.6220074, 46.8932786 ], + [ 8.6221159, 46.8931045 ], + [ 8.6222243, 46.8930102 ], + [ 8.6223245, 46.8929106 ], + [ 8.6223565, 46.8928643 ], + [ 8.6223724, 46.8928128 ], + [ 8.6223844, 46.8927385 ], + [ 8.622374, 46.8926543 ], + [ 8.6224111, 46.8925841 ], + [ 8.622434, 46.8925437 ], + [ 8.6226491, 46.8921863 ], + [ 8.6228125, 46.8922333 ], + [ 8.6231562, 46.8916881 ], + [ 8.6231146, 46.8916009 ], + [ 8.6233178, 46.8912217 ], + [ 8.6237062, 46.8905823 ], + [ 8.6243731, 46.8895229 ], + [ 8.624564, 46.8895464 ], + [ 8.624586, 46.8895194 ], + [ 8.6244357, 46.8894136 ], + [ 8.6248804, 46.8887073 ], + [ 8.6252988, 46.8880343 ], + [ 8.625373, 46.8879151 ], + [ 8.6257341, 46.887334 ], + [ 8.6256085, 46.8872197 ], + [ 8.6256024, 46.8871573 ], + [ 8.6255587, 46.8872278 ], + [ 8.6249988, 46.8881368 ], + [ 8.6242823, 46.889325 ], + [ 8.624212, 46.8894377 ], + [ 8.6241889, 46.8894435 ], + [ 8.6241136, 46.8894653 ], + [ 8.6240392, 46.8895584 ], + [ 8.6240356, 46.8897313 ], + [ 8.6235954, 46.8904564 ], + [ 8.6230055, 46.891426 ], + [ 8.622375, 46.8924543 ], + [ 8.6220685, 46.8929593 ], + [ 8.6219164, 46.89321 ], + [ 8.6216449, 46.8936479 ], + [ 8.6214225, 46.8940079 ], + [ 8.6214164, 46.8940063 ], + [ 8.6211643, 46.8944202 ], + [ 8.6209194, 46.8948189 ], + [ 8.6206566, 46.8952388 ], + [ 8.6205897, 46.89537 ], + [ 8.6204618, 46.8955735 ], + [ 8.6204196, 46.8956422 ], + [ 8.6203749, 46.8956742 ], + [ 8.6202266, 46.8958899 ], + [ 8.620079, 46.8958667 ], + [ 8.6200435, 46.8959357 ], + [ 8.6198921, 46.8961832 ], + [ 8.6197855, 46.896351 ], + [ 8.619523, 46.8967716 ], + [ 8.6193245, 46.8970899 ], + [ 8.6192771, 46.8971641 ], + [ 8.619275, 46.8971665 ], + [ 8.6192728, 46.8971688 ], + [ 8.6192703, 46.897171 ], + [ 8.6192676, 46.897173 ], + [ 8.6192648, 46.897175 ], + [ 8.6192617, 46.8971768 ], + [ 8.6192585, 46.8971784 ], + [ 8.6192551, 46.8971799 ], + [ 8.6192516, 46.8971813 ], + [ 8.6192479, 46.8971825 ], + [ 8.6192442, 46.8971835 ], + [ 8.6192403, 46.8971843 ], + [ 8.6192364, 46.897185 ], + [ 8.6192324, 46.8971855 ], + [ 8.6192284, 46.8971858 ], + [ 8.6192244, 46.8971859 ], + [ 8.6192204, 46.8971858 ], + [ 8.6192164, 46.8971856 ], + [ 8.6192124, 46.8971852 ], + [ 8.6192085, 46.8971845 ], + [ 8.6191784, 46.8971735 ], + [ 8.6190488, 46.8971271 ], + [ 8.6189411, 46.8970904 ], + [ 8.6187813, 46.8970326 ], + [ 8.6187162, 46.8970121 ], + [ 8.6185729, 46.8969672 ], + [ 8.6184706, 46.8969361 ], + [ 8.6183822, 46.8969072 ], + [ 8.6182995, 46.8968835 ], + [ 8.6181797, 46.8968606 ], + [ 8.6180263, 46.8968327 ], + [ 8.6179357, 46.8968152 ], + [ 8.6178248, 46.8967962 ], + [ 8.6176861, 46.8967719 ], + [ 8.6175246, 46.8967337 ], + [ 8.617394, 46.8967017 ], + [ 8.6172673, 46.8966703 ], + [ 8.6171644, 46.8966537 ], + [ 8.6169757, 46.8966167 ], + [ 8.6168038, 46.8965816 ], + [ 8.6166856, 46.8965611 ], + [ 8.6165692, 46.8965391 ], + [ 8.6164364, 46.8965134 ], + [ 8.6163324, 46.8964926 ], + [ 8.616299399999999, 46.8964505 ], + [ 8.6156808, 46.8962366 ], + [ 8.615069, 46.89575 ], + [ 8.6148964, 46.8956876 ], + [ 8.6150009, 46.8954077 ], + [ 8.6153844, 46.894713 ], + [ 8.6154223, 46.8946451 ], + [ 8.6156539, 46.8942295 ], + [ 8.6159235, 46.8937457 ], + [ 8.6159696, 46.893706 ], + [ 8.6162562, 46.8935577 ], + [ 8.6164895, 46.8934585 ], + [ 8.6165182, 46.893416 ], + [ 8.6169817, 46.892261 ], + [ 8.6167019, 46.8921427 ], + [ 8.6163516, 46.8920009 ], + [ 8.6159459, 46.8918455 ], + [ 8.6158553, 46.8918136 ], + [ 8.6156418, 46.8917375 ], + [ 8.6153389, 46.8916313 ], + [ 8.6150615, 46.8915375 ], + [ 8.614334, 46.8912982 ], + [ 8.6142273, 46.8912617 ], + [ 8.6138963, 46.8911549 ], + [ 8.6127296, 46.890772 ], + [ 8.6122472, 46.8906159 ], + [ 8.6115866, 46.8903996 ], + [ 8.6108024, 46.890142 ], + [ 8.6105411, 46.8900499 ], + [ 8.6102833, 46.8899473 ], + [ 8.610019, 46.8898555 ], + [ 8.6086571, 46.8894128 ], + [ 8.6081425, 46.8892429 ], + [ 8.6081224, 46.8892363 ], + [ 8.606977, 46.8888611 ], + [ 8.6064369, 46.8886848 ], + [ 8.6062863, 46.8886356 ], + [ 8.6060683, 46.8885654 ], + [ 8.6057641, 46.8884701 ], + [ 8.6056127, 46.8884242 ], + [ 8.6054603, 46.8883798 ], + [ 8.6051529, 46.8882956 ], + [ 8.604872499999999, 46.8882235 ], + [ 8.6046176, 46.8881669 ], + [ 8.6044884, 46.8881428 ], + [ 8.6043574, 46.8881214 ], + [ 8.6039616, 46.8880543 ], + [ 8.6037657, 46.8880301 ], + [ 8.6032537, 46.8879924 ], + [ 8.6027392, 46.8879792 ], + [ 8.6027543, 46.8882722 ], + [ 8.6027435, 46.8883639 ], + [ 8.6027233, 46.8884548 ], + [ 8.6027227, 46.8884575 ], + [ 8.6027223, 46.8884603 ], + [ 8.6027222, 46.8884631 ], + [ 8.6027223, 46.8884658 ], + [ 8.6027227, 46.8884686 ], + [ 8.6027233, 46.8884713 ], + [ 8.6027348, 46.8885231 ], + [ 8.6027415, 46.8885753 ], + [ 8.602743199999999, 46.8886278 ], + [ 8.6027371, 46.8886377 ], + [ 8.6027318, 46.8886479 ], + [ 8.6027274, 46.8886582 ], + [ 8.602724, 46.8886688 ], + [ 8.6027215, 46.8886794 ], + [ 8.6027131, 46.8887349 ], + [ 8.6026945, 46.8887361 ], + [ 8.6026777, 46.8887365 ], + [ 8.6026609, 46.8887364 ], + [ 8.6026442, 46.8887356 ], + [ 8.6026282, 46.8887343 ], + [ 8.6026124, 46.8887323 ], + [ 8.6025968, 46.8887297 ], + [ 8.6025504, 46.8887208 ], + [ 8.6024555, 46.8887007 ], + [ 8.6023608, 46.88868 ], + [ 8.6022982, 46.8886677 ], + [ 8.6022349, 46.888657 ], + [ 8.6021854, 46.8886284 ], + [ 8.6020329, 46.8882892 ], + [ 8.6019495, 46.8880894 ], + [ 8.6017279, 46.8881485 ], + [ 8.6018808, 46.8883827 ], + [ 8.6019269, 46.8885595 ], + [ 8.6019305, 46.8885775 ], + [ 8.6019323, 46.8885956 ], + [ 8.6019323, 46.8886138 ], + [ 8.6019305, 46.888632 ], + [ 8.6019269, 46.88865 ], + [ 8.6019215, 46.8886678 ], + [ 8.6019221, 46.8886677 ], + [ 8.601921, 46.8886682 ], + [ 8.6019196, 46.8886688 ], + [ 8.6019181, 46.8886694 ], + [ 8.6019167, 46.88867 ], + [ 8.6019152, 46.8886706 ], + [ 8.6019138, 46.8886711 ], + [ 8.6018996, 46.8886771 ], + [ 8.60172, 46.8887536 ], + [ 8.6017071, 46.8887608 ], + [ 8.6016943, 46.8887683 ], + [ 8.6016818, 46.888776 ], + [ 8.6016695, 46.888784 ], + [ 8.6016575, 46.8887921 ], + [ 8.6016458, 46.8888004 ], + [ 8.6016343, 46.8888089 ], + [ 8.6016232, 46.8888176 ], + [ 8.6016124, 46.8888265 ], + [ 8.6016019, 46.8888355 ], + [ 8.6015917, 46.8888447 ], + [ 8.6015818, 46.8888541 ], + [ 8.6015722, 46.8888636 ], + [ 8.601563, 46.8888733 ], + [ 8.6015542, 46.8888832 ], + [ 8.6015456, 46.8888931 ], + [ 8.6014765, 46.8889714 ], + [ 8.6014735, 46.8889753 ], + [ 8.6014704, 46.8889792 ], + [ 8.6014672, 46.888983 ], + [ 8.601464, 46.8889868 ], + [ 8.6014606, 46.8889906 ], + [ 8.6014572, 46.8889944 ], + [ 8.6014537, 46.8889981 ], + [ 8.6014501, 46.8890017 ], + [ 8.6014465, 46.8890054 ], + [ 8.6014427, 46.889009 ], + [ 8.6014389, 46.8890125 ], + [ 8.601435, 46.889016 ], + [ 8.6014311, 46.8890195 ], + [ 8.601427, 46.8890229 ], + [ 8.6014229, 46.8890263 ], + [ 8.6014187, 46.8890297 ], + [ 8.6014145, 46.889033 ], + [ 8.6014102, 46.8890363 ], + [ 8.6014058, 46.8890395 ], + [ 8.6014013, 46.8890427 ], + [ 8.6013968, 46.8890458 ], + [ 8.6013922, 46.8890489 ] + ], + [ + [ 8.6042123, 46.888177999999996 ], + [ 8.6040536, 46.8885103 ], + [ 8.6039767, 46.888613 ], + [ 8.6038627, 46.8887685 ], + [ 8.6037933, 46.8889314 ], + [ 8.6038208, 46.8889899 ], + [ 8.6038076, 46.8890271 ], + [ 8.6037968, 46.8890576 ], + [ 8.6037298, 46.8890447 ], + [ 8.6036966, 46.8890384 ], + [ 8.6035963, 46.8890191 ], + [ 8.6035881, 46.889017 ], + [ 8.6035798, 46.8890149 ], + [ 8.6035715, 46.8890129 ], + [ 8.6035631, 46.889010999999996 ], + [ 8.6035547, 46.8890092 ], + [ 8.6035463, 46.8890075 ], + [ 8.6035378, 46.8890059 ], + [ 8.6035293, 46.8890044 ], + [ 8.6035208, 46.8890029 ], + [ 8.6035122, 46.8890016 ], + [ 8.6035036, 46.8890003 ], + [ 8.603495, 46.8889991 ], + [ 8.6034863, 46.888998 ], + [ 8.6034776, 46.888997 ], + [ 8.6034689, 46.8889961 ], + [ 8.6034602, 46.8889953 ], + [ 8.6034549, 46.8889949 ], + [ 8.6034496, 46.8889946 ], + [ 8.6034443, 46.8889944 ], + [ 8.603439, 46.8889943 ], + [ 8.6034337, 46.8889943 ], + [ 8.6034284, 46.8889943 ], + [ 8.6034231, 46.8889945 ], + [ 8.6034178, 46.8889948 ], + [ 8.6034125, 46.8889952 ], + [ 8.6034073, 46.8889956 ], + [ 8.603401999999999, 46.8889962 ], + [ 8.6033968, 46.8889969 ], + [ 8.6033916, 46.8889976 ], + [ 8.6033865, 46.8889985 ], + [ 8.6033762, 46.8890005 ], + [ 8.6033559, 46.8890044 ], + [ 8.6033457, 46.8890062 ], + [ 8.6033354, 46.8890077 ], + [ 8.603325, 46.8890091 ], + [ 8.6033146, 46.8890103 ], + [ 8.6033041, 46.8890113 ], + [ 8.6032937, 46.8890122 ], + [ 8.6032846, 46.8890128 ], + [ 8.6032756, 46.8890133 ], + [ 8.6032569, 46.8890144 ], + [ 8.6032242, 46.8890155 ], + [ 8.6032103, 46.8890157 ], + [ 8.6031964, 46.8890156 ], + [ 8.603182499999999, 46.8890152 ], + [ 8.6031623, 46.8890144 ], + [ 8.6031583, 46.8890141 ], + [ 8.6031422, 46.8890132 ], + [ 8.6031222, 46.8890116 ], + [ 8.6031022, 46.8890098 ], + [ 8.6030415, 46.8886396 ], + [ 8.6029842, 46.8884604 ], + [ 8.602968, 46.8883556 ], + [ 8.6029591, 46.8882504 ], + [ 8.6032065, 46.8881585 ], + [ 8.6037996, 46.8881552 ], + [ 8.6042123, 46.888177999999996 ] + ], + [ + [ 8.6080143, 46.8942463 ], + [ 8.6081649, 46.8941925 ], + [ 8.6083954, 46.894114 ], + [ 8.6084727, 46.8940862 ], + [ 8.608623099999999, 46.8940214 ], + [ 8.6088167, 46.8939327 ], + [ 8.6090599, 46.8938235 ], + [ 8.6091668, 46.8937751 ], + [ 8.6092823, 46.8937645 ], + [ 8.6092888, 46.8937357 ], + [ 8.6093088, 46.8937351 ], + [ 8.6093574, 46.8937393 ], + [ 8.6094054, 46.8937459 ], + [ 8.6094585, 46.8937562 ], + [ 8.6095123, 46.8937642 ], + [ 8.6095318, 46.8937693 ], + [ 8.6096305, 46.8937667 ], + [ 8.6099242, 46.8937249 ], + [ 8.6100558, 46.8937133 ], + [ 8.6103529, 46.8936557 ], + [ 8.6104274, 46.8936281 ], + [ 8.6104997, 46.8935978 ], + [ 8.6105696, 46.8935649 ], + [ 8.6106421, 46.8935267 ], + [ 8.6107113, 46.8934858 ], + [ 8.6107771, 46.8934423 ], + [ 8.6109093, 46.8933055 ], + [ 8.611124, 46.8930948 ], + [ 8.611243, 46.8930112 ], + [ 8.6113859, 46.8929846 ], + [ 8.6115469, 46.892948 ], + [ 8.6116735, 46.8929093 ], + [ 8.6116999, 46.8929503 ], + [ 8.6119475, 46.892944 ], + [ 8.6120919, 46.8929234 ], + [ 8.6122161, 46.8928833 ], + [ 8.6124511, 46.8927762 ], + [ 8.6124548, 46.8927733 ], + [ 8.6124569, 46.8927713 ], + [ 8.6125119, 46.8927241 ], + [ 8.6124522, 46.8927005 ], + [ 8.6124492, 46.8926982 ], + [ 8.6124452, 46.8926955 ], + [ 8.6124408, 46.892693 ], + [ 8.6124362, 46.8926907 ], + [ 8.6124314, 46.8926886 ], + [ 8.6124264, 46.8926867 ], + [ 8.6124212, 46.8926851 ], + [ 8.6124159, 46.8926837 ], + [ 8.6124104, 46.8926826 ], + [ 8.6124049, 46.8926818 ], + [ 8.6124041, 46.8926817 ], + [ 8.6122685, 46.8926291 ], + [ 8.6121763, 46.8926819 ], + [ 8.6120971, 46.8927175 ], + [ 8.611926, 46.8927951 ], + [ 8.6118556, 46.8928066 ], + [ 8.6119587, 46.8927621 ], + [ 8.6113579, 46.8928596 ], + [ 8.6108868, 46.8931074 ], + [ 8.6107496, 46.893277 ], + [ 8.6105707, 46.8933919 ], + [ 8.6099919, 46.8936042 ], + [ 8.6096608, 46.8936743 ], + [ 8.609547599999999, 46.8936672 ], + [ 8.6093439, 46.8935613 ], + [ 8.6094509, 46.8934644 ], + [ 8.6096185, 46.8933346 ], + [ 8.6097483, 46.8932232 ], + [ 8.6100311, 46.8930133 ], + [ 8.6101199, 46.8929349 ], + [ 8.6102723, 46.8927959 ], + [ 8.6104637, 46.8926395 ], + [ 8.610717, 46.8924741 ], + [ 8.6107095, 46.8923343 ], + [ 8.6106799, 46.8921996 ], + [ 8.6106105, 46.8919619 ], + [ 8.6106025, 46.891971 ], + [ 8.6106345, 46.8919328 ], + [ 8.6106631, 46.8918933 ], + [ 8.6106881, 46.8918526 ], + [ 8.6106997, 46.8918357 ], + [ 8.6107126, 46.8918192 ], + [ 8.6107267, 46.8918032 ], + [ 8.6107421, 46.8917877 ], + [ 8.6107816, 46.8917516 ], + [ 8.6108246, 46.8917175 ], + [ 8.6108679, 46.8916855 ], + [ 8.6109089, 46.8916522 ], + [ 8.6109476, 46.891617600000004 ], + [ 8.6109677, 46.8916005 ], + [ 8.6109863, 46.8915826 ], + [ 8.6110031, 46.891564 ], + [ 8.6110183, 46.8915447 ], + [ 8.6110419, 46.8915129 ], + [ 8.6110628, 46.8914803 ], + [ 8.611081, 46.8914469 ], + [ 8.6111368, 46.8913705 ], + [ 8.6111805, 46.89132 ], + [ 8.6112196, 46.8912678 ], + [ 8.6112282, 46.891251 ], + [ 8.6112384, 46.8912347 ], + [ 8.6112503, 46.8912189 ], + [ 8.6112507, 46.8912171 ], + [ 8.6112513, 46.8912153 ], + [ 8.6112521, 46.8912135 ], + [ 8.611253, 46.8912118 ], + [ 8.6112541, 46.8912101 ], + [ 8.6112554, 46.8912085 ], + [ 8.6112568, 46.8912069 ], + [ 8.6112584, 46.8912054 ], + [ 8.6112602, 46.891204 ], + [ 8.6112621, 46.8912027 ], + [ 8.6112641, 46.8912014 ], + [ 8.6112662, 46.8912003 ], + [ 8.6112684, 46.8911993 ], + [ 8.6112707, 46.8911984 ], + [ 8.6112732, 46.8911975 ], + [ 8.6112757, 46.8911969 ], + [ 8.6112782, 46.8911963 ], + [ 8.6112808, 46.8911958 ], + [ 8.6112835, 46.8911955 ], + [ 8.6112862, 46.8911953 ], + [ 8.6112889, 46.8911952 ], + [ 8.6113126, 46.8911947 ], + [ 8.6113363, 46.8911953 ], + [ 8.6113599, 46.8911968 ], + [ 8.6113833, 46.8911993 ], + [ 8.6114065, 46.8912028 ], + [ 8.6114293, 46.8912073 ], + [ 8.6115159, 46.891221 ], + [ 8.6116034, 46.8912321 ], + [ 8.6116385, 46.8912332 ], + [ 8.6116737, 46.8912326 ], + [ 8.6117087, 46.8912303 ], + [ 8.6117434, 46.8912264 ], + [ 8.6117776, 46.8912208 ], + [ 8.6118112, 46.8912136 ], + [ 8.611844, 46.8912049 ], + [ 8.6119123, 46.8911825 ], + [ 8.6119793, 46.8911583 ], + [ 8.6121364, 46.8910978 ], + [ 8.6121509, 46.8910913 ], + [ 8.612166, 46.8910854 ], + [ 8.6121816, 46.8910802 ], + [ 8.6121977, 46.8910757 ], + [ 8.6122141, 46.8910719 ], + [ 8.6122309, 46.8910689 ], + [ 8.6122387, 46.8910737 ], + [ 8.6122469, 46.8910782 ], + [ 8.6122556, 46.8910823 ], + [ 8.6122647, 46.8910859 ], + [ 8.6122741, 46.8910891 ], + [ 8.6122838, 46.8910918 ], + [ 8.6122938, 46.8910941 ], + [ 8.6123039, 46.8910959 ], + [ 8.6123143, 46.8910973 ], + [ 8.6123247, 46.8910981 ], + [ 8.6123352, 46.8910985 ], + [ 8.6123457, 46.8910983 ], + [ 8.6123562, 46.8910977 ], + [ 8.6123665, 46.8910966 ], + [ 8.6123768, 46.891095 ], + [ 8.6123868, 46.8910929 ], + [ 8.6123967, 46.8910903 ], + [ 8.6124062, 46.8910873 ], + [ 8.6124154, 46.8910838 ], + [ 8.6124243, 46.89108 ], + [ 8.6124327, 46.8910757 ], + [ 8.6124651, 46.8910608 ], + [ 8.6125109, 46.8910384 ], + [ 8.6125735, 46.8910097 ], + [ 8.6126143, 46.8909784 ], + [ 8.6126884, 46.8909152 ], + [ 8.6127197, 46.890878 ], + [ 8.6127228, 46.8908495 ], + [ 8.6132672, 46.8910419 ], + [ 8.613591, 46.8911454 ], + [ 8.6136039, 46.8911328 ], + [ 8.6139894, 46.8912676 ], + [ 8.6140374, 46.8912819 ], + [ 8.6140817, 46.8912917 ], + [ 8.6141489, 46.8913275 ], + [ 8.6142139, 46.891356 ], + [ 8.6149562, 46.8916044 ], + [ 8.6151748, 46.8916683 ], + [ 8.6153215, 46.8917182 ], + [ 8.6150452, 46.8921826 ], + [ 8.6147833, 46.8926202 ], + [ 8.614488, 46.8930699 ], + [ 8.6142924, 46.8933942 ], + [ 8.6140971, 46.8934864 ], + [ 8.6136804, 46.8936168 ], + [ 8.6127081, 46.8938668 ], + [ 8.6124681, 46.8939142 ], + [ 8.6125143, 46.893969 ], + [ 8.6124775, 46.8939975 ], + [ 8.6124581, 46.8940081 ], + [ 8.6124087, 46.8940137 ], + [ 8.6123612, 46.8940565 ], + [ 8.612335, 46.8941179 ], + [ 8.6123273, 46.8941628 ], + [ 8.6123226, 46.8942522 ], + [ 8.6123769, 46.8942948 ], + [ 8.6124173, 46.894322 ], + [ 8.612478, 46.8943561 ], + [ 8.6124695, 46.8943826 ], + [ 8.6124371, 46.8944242 ], + [ 8.6123862, 46.8944605 ], + [ 8.61233, 46.8944913 ], + [ 8.6122492, 46.8945173 ], + [ 8.6121568, 46.8945291 ], + [ 8.6120803, 46.8945294 ], + [ 8.6120134, 46.8945217 ], + [ 8.6119869, 46.8945263 ], + [ 8.6119831, 46.8945248 ], + [ 8.6119579, 46.8944437 ], + [ 8.6116757, 46.8944636 ], + [ 8.6116638, 46.8944645 ], + [ 8.6115527, 46.8944723 ], + [ 8.611447, 46.8944746 ], + [ 8.6113442, 46.8944783 ], + [ 8.6111503, 46.8944974 ], + [ 8.6110804, 46.8945001 ], + [ 8.6110232, 46.894498 ], + [ 8.6109025, 46.894501 ], + [ 8.6108822, 46.8945023 ], + [ 8.6107823, 46.8945006 ], + [ 8.6107314, 46.8945018 ], + [ 8.6107265, 46.8945013 ], + [ 8.610637, 46.8943908 ], + [ 8.610566, 46.8944011 ], + [ 8.610308, 46.8944924 ], + [ 8.6102191, 46.8945384 ], + [ 8.6101439, 46.8945893 ], + [ 8.6100238, 46.8946355 ], + [ 8.6098721, 46.8946845 ], + [ 8.6096326, 46.89474 ], + [ 8.6095094, 46.8947737 ], + [ 8.6093812, 46.8948065 ], + [ 8.609263200000001, 46.8948353 ], + [ 8.6091776, 46.8948596 ], + [ 8.6090298, 46.894906399999996 ], + [ 8.6087792, 46.8949779 ], + [ 8.6084859, 46.8950296 ], + [ 8.6081489, 46.8947441 ], + [ 8.6076798, 46.894335 ], + [ 8.60778, 46.8942922 ], + [ 8.6080143, 46.8942463 ] + ], + [ + [ 8.6112441, 46.8966643 ], + [ 8.6111371, 46.896582 ], + [ 8.6109934, 46.8964704 ], + [ 8.61075, 46.8962546 ], + [ 8.6100175, 46.8956145 ], + [ 8.6099357, 46.8955652 ], + [ 8.6100125, 46.8954796 ], + [ 8.6101533, 46.895366 ], + [ 8.6102338, 46.8953461 ], + [ 8.6103224, 46.8953143 ], + [ 8.6104296, 46.8952814 ], + [ 8.6105293, 46.8952534 ], + [ 8.610598, 46.8952322 ], + [ 8.6109115, 46.8951632 ], + [ 8.6109378, 46.8951529 ], + [ 8.611036, 46.8951017 ], + [ 8.6110691, 46.8950831 ], + [ 8.6111041, 46.8950662 ], + [ 8.6111406, 46.8950509 ], + [ 8.6111786, 46.8950375 ], + [ 8.6112178, 46.8950258 ], + [ 8.6112581, 46.895016 ], + [ 8.6112993, 46.8950082 ], + [ 8.6115499, 46.8949442 ], + [ 8.6118265, 46.8948599 ], + [ 8.6122105, 46.894755 ], + [ 8.6127875, 46.8946096 ], + [ 8.6129162, 46.8945944 ], + [ 8.613046, 46.8945842 ], + [ 8.6130602, 46.8945447 ], + [ 8.6141001, 46.8942529 ], + [ 8.6146781, 46.8941171 ], + [ 8.6139755, 46.8953989 ], + [ 8.6139842, 46.8954014 ], + [ 8.6139643, 46.8954201 ], + [ 8.6139374, 46.8954331 ], + [ 8.6139085, 46.895444499999996 ], + [ 8.6138765, 46.895452399999996 ], + [ 8.6137634, 46.8954699 ], + [ 8.6136933, 46.8954944 ], + [ 8.613593999999999, 46.8955388 ], + [ 8.6134764, 46.8956006 ], + [ 8.6133739, 46.8956625 ], + [ 8.6132961, 46.8957159 ], + [ 8.6131944, 46.895788 ], + [ 8.6131176, 46.8958465 ], + [ 8.6129581, 46.8959782 ], + [ 8.6128574, 46.8960643 ], + [ 8.6126615, 46.8962491 ], + [ 8.6125923, 46.8963164 ], + [ 8.6125205, 46.8963963 ], + [ 8.612419599999999, 46.8965084 ], + [ 8.6123606, 46.8965692 ], + [ 8.6123198, 46.8966083 ], + [ 8.6122546, 46.8966658 ], + [ 8.6121864, 46.8967214 ], + [ 8.6121323, 46.8967618 ], + [ 8.6120702, 46.8968036 ], + [ 8.6120004, 46.8968478 ], + [ 8.6119114, 46.8968955 ], + [ 8.6118213, 46.8969423 ], + [ 8.6117162, 46.8969996 ], + [ 8.6116964, 46.8970113 ], + [ 8.611650000000001, 46.8969715 ], + [ 8.6115307, 46.896875 ], + [ 8.6113472, 46.896746 ], + [ 8.6112441, 46.8966643 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "KTUR0-0", + "country" : "CHE", + "name" : [ + { + "text" : "Reussdelta", + "lang" : "de-CH" + }, + { + "text" : "Reussdelta", + "lang" : "fr-CH" + }, + { + "text" : "Reussdelta", + "lang" : "it-CH" + }, + { + "text" : "Reussdelta", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Uri", + "lang" : "de-CH" + }, + { + "text" : "Canton d'Uri", + "lang" : "fr-CH" + }, + { + "text" : "Cantone Uri", + "lang" : "it-CH" + }, + { + "text" : "Canton Uri", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Amt für Raumentwicklung", + "lang" : "de-CH" + }, + { + "text" : "Office du développement territorial", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio per lo sviluppo territoriale", + "lang" : "it-CH" + }, + { + "text" : "Office of Spatial Development", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ur.ch/aemter/847", + "email" : "raumplanung@ur.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.2000422, 46.4273379 ], + [ 7.2000028, 46.4273362 ], + [ 7.1997031, 46.4274444 ], + [ 7.1995403, 46.4274954 ], + [ 7.1994188, 46.4276085 ], + [ 7.199313, 46.4276991 ], + [ 7.1991669, 46.4277842 ], + [ 7.1990278, 46.4277615 ], + [ 7.1989303, 46.4277451 ], + [ 7.1988327, 46.4277502 ], + [ 7.198661, 46.4277508 ], + [ 7.1984177, 46.4277575 ], + [ 7.1981494999999995, 46.4277974 ], + [ 7.1979126, 46.4278256 ], + [ 7.197694, 46.4278432 ], + [ 7.1975391, 46.4278608 ], + [ 7.1973765, 46.4278605 ], + [ 7.1972451, 46.4278611 ], + [ 7.1970345, 46.4278274 ], + [ 7.196864, 46.427845 ], + [ 7.1967494, 46.4278735 ], + [ 7.1966113, 46.4279128 ], + [ 7.1964237, 46.4279754 ], + [ 7.1962453, 46.4280209 ], + [ 7.1960825, 46.4280556 ], + [ 7.1959691, 46.4281004 ], + [ 7.1958062, 46.4281747 ], + [ 7.1957085, 46.4282023 ], + [ 7.1955042, 46.4282091 ], + [ 7.1953415, 46.4282258 ], + [ 7.1951553, 46.4282605 ], + [ 7.1949757, 46.4282718 ], + [ 7.1948702, 46.4283121 ], + [ 7.1947165, 46.4283513 ], + [ 7.1945939, 46.4284194 ], + [ 7.1944152, 46.4285216 ], + [ 7.1941803, 46.428674 ], + [ 7.1938379, 46.4290079 ], + [ 7.1937254, 46.4291543 ], + [ 7.1935542, 46.4293239 ], + [ 7.193425, 46.4294199 ], + [ 7.1932945, 46.4294943 ], + [ 7.1931405, 46.4296073 ], + [ 7.1930191, 46.4296916 ], + [ 7.1929043, 46.4297768 ], + [ 7.1927257, 46.4298394 ], + [ 7.1925392, 46.4299415 ], + [ 7.192328, 46.4300427 ], + [ 7.1921326, 46.4301053 ], + [ 7.1919945, 46.4301338 ], + [ 7.1918161, 46.4301739 ], + [ 7.1916285, 46.430231 ], + [ 7.1914331, 46.4302936 ], + [ 7.1912378, 46.4303165 ], + [ 7.1910908, 46.4303108 ], + [ 7.1909609, 46.4302718 ], + [ 7.1908299, 46.4301924 ], + [ 7.1907003, 46.4300743 ], + [ 7.1906018, 46.4299958 ], + [ 7.1905923, 46.4298095 ], + [ 7.1905603, 46.4296745 ], + [ 7.1904372, 46.4295726 ], + [ 7.1903396, 46.4295733 ], + [ 7.1902419, 46.4296019 ], + [ 7.1900712, 46.4296636 ], + [ 7.1899905, 46.4296814 ], + [ 7.1897955, 46.4296531 ], + [ 7.1896563, 46.429642 ], + [ 7.1894858, 46.4296542 ], + [ 7.189388, 46.4297052 ], + [ 7.1892333, 46.429687799999996 ], + [ 7.1890786, 46.4296551 ], + [ 7.1889082, 46.4296439 ], + [ 7.1887769, 46.4296274 ], + [ 7.188687, 46.4296614 ], + [ 7.1885657, 46.4297232 ], + [ 7.1884846, 46.4298139 ], + [ 7.1883475, 46.429937699999996 ], + [ 7.1881924, 46.429995 ], + [ 7.1881117, 46.4299948 ], + [ 7.1879805, 46.4299612 ], + [ 7.1878011, 46.4299275 ], + [ 7.1875007, 46.4298945 ], + [ 7.18719, 46.4298443 ], + [ 7.1869378, 46.429806 ], + [ 7.1867103, 46.4297668 ], + [ 7.1865385, 46.4297781 ], + [ 7.1864017, 46.4298291 ], + [ 7.1862622, 46.4298971 ], + [ 7.1861003, 46.4300218 ], + [ 7.1859382, 46.4301851 ], + [ 7.1857424, 46.4303214 ], + [ 7.185638, 46.4303779 ], + [ 7.1855223, 46.430356 ], + [ 7.1854575, 46.4303163 ], + [ 7.185377, 46.4302882 ], + [ 7.1852054, 46.4302546 ], + [ 7.1850103, 46.4302379 ], + [ 7.1847982, 46.4302384 ], + [ 7.1846604, 46.4302273 ], + [ 7.1844406, 46.4302169 ], + [ 7.1842285, 46.4302173 ], + [ 7.1840658, 46.430234 ], + [ 7.1838537, 46.4302398 ], + [ 7.183691, 46.4302521 ], + [ 7.1835453, 46.430258 ], + [ 7.1834307, 46.4302749 ], + [ 7.1832761, 46.4302412 ], + [ 7.1831293, 46.4301968 ], + [ 7.182967, 46.4301182 ], + [ 7.1827956, 46.4300503 ], + [ 7.1825759, 46.4300174 ], + [ 7.1823638, 46.4300179 ], + [ 7.182153, 46.4300291 ], + [ 7.1820543, 46.4299839 ], + [ 7.1819883, 46.4299226 ], + [ 7.1818261, 46.4298268 ], + [ 7.1815088, 46.4298099 ], + [ 7.1812801, 46.4297482 ], + [ 7.1810277, 46.4297432 ], + [ 7.1808807, 46.4297329 ], + [ 7.1806777, 46.4297559 ], + [ 7.1805072, 46.4297726 ], + [ 7.1803275, 46.4297955 ], + [ 7.1801324, 46.4297906 ], + [ 7.1799371, 46.4298189 ], + [ 7.1797172, 46.4298247 ], + [ 7.1795546, 46.4298199 ], + [ 7.1793595, 46.429814 ], + [ 7.1791229, 46.4297757 ], + [ 7.1789447, 46.4297753 ], + [ 7.1786674999999995, 46.4297818 ], + [ 7.1784151, 46.4297992 ], + [ 7.1781872, 46.4298338 ], + [ 7.1780245, 46.4298622 ], + [ 7.1778539, 46.429896 ], + [ 7.177634, 46.4298964 ], + [ 7.1774624, 46.4298627 ], + [ 7.1772428999999995, 46.4297956 ], + [ 7.1770636, 46.4297511 ], + [ 7.1768114, 46.4297065 ], + [ 7.1765255, 46.4296446 ], + [ 7.1761029, 46.4295951 ], + [ 7.1757439, 46.4295781 ], + [ 7.175476, 46.4295505 ], + [ 7.1752876, 46.4295005 ], + [ 7.1750757, 46.4294668 ], + [ 7.1749053, 46.4294619 ], + [ 7.1747504, 46.4294786 ], + [ 7.1745877, 46.4295016 ], + [ 7.1744666, 46.4295193 ], + [ 7.1743274, 46.4295244 ], + [ 7.1742142, 46.4295304 ], + [ 7.1740516, 46.4295309 ], + [ 7.1739124, 46.4295198 ], + [ 7.1737823, 46.4295141 ], + [ 7.1735782, 46.4294866 ], + [ 7.173391, 46.4294646 ], + [ 7.1732778, 46.4294643 ], + [ 7.1731308, 46.4294649 ], + [ 7.1729927, 46.4294934 ], + [ 7.1728625, 46.4295272 ], + [ 7.1727244, 46.4295611 ], + [ 7.1726265, 46.4296238 ], + [ 7.1725119, 46.4296524 ], + [ 7.1722842, 46.4296635 ], + [ 7.1720656, 46.4296585 ], + [ 7.171861, 46.4297327 ], + [ 7.171724, 46.4298115 ], + [ 7.171561, 46.4298966 ], + [ 7.1713655, 46.4299528 ], + [ 7.1704289, 46.4299326 ], + [ 7.1704205, 46.4297967 ], + [ 7.1697376, 46.4297645 ], + [ 7.1698101, 46.4295776 ], + [ 7.1695095, 46.4296012 ], + [ 7.1694522, 46.429601 ], + [ 7.1693612, 46.42959 ], + [ 7.1692885, 46.4295674 ], + [ 7.1692405, 46.4295448 ], + [ 7.1691823, 46.4294771 ], + [ 7.1691253, 46.4294095 ], + [ 7.1690271, 46.4292744 ], + [ 7.1689133, 46.4291509 ], + [ 7.1688068, 46.4291056 ], + [ 7.1687341, 46.4290776 ], + [ 7.1686365, 46.4290782 ], + [ 7.1685063, 46.4291067 ], + [ 7.1684007, 46.4291406 ], + [ 7.1682951, 46.4291917 ], + [ 7.1682376, 46.4292428 ], + [ 7.1681489, 46.429293 ], + [ 7.1680187, 46.4293214 ], + [ 7.1678067, 46.429311 ], + [ 7.1671958, 46.4291881 ], + [ 7.1668451, 46.4290865 ], + [ 7.1666748, 46.4290474 ], + [ 7.1665607, 46.4289743 ], + [ 7.1664544, 46.4289012 ], + [ 7.1663481, 46.4288173 ], + [ 7.166259, 46.4286929 ], + [ 7.1661764, 46.4285686 ], + [ 7.1660873, 46.4284226 ], + [ 7.1660369, 46.4283604 ], + [ 7.1659486, 46.4283215 ], + [ 7.165867, 46.4282647 ], + [ 7.165801, 46.4281862 ], + [ 7.1657026, 46.4280961 ], + [ 7.1656221, 46.4280734 ], + [ 7.1654584, 46.4280289 ], + [ 7.1652063, 46.4279617 ], + [ 7.1650025, 46.4278776 ], + [ 7.1646931, 46.4278264 ], + [ 7.1641966, 46.4280024 ], + [ 7.1640182, 46.4280371 ], + [ 7.1638632, 46.4280763 ], + [ 7.1637342, 46.4281102 ], + [ 7.1636275, 46.4281108 ], + [ 7.1635209, 46.4280998 ], + [ 7.1634077, 46.4280941 ], + [ 7.1633025, 46.4280722 ], + [ 7.1631792, 46.4280099 ], + [ 7.1630573, 46.4279421 ], + [ 7.1628778, 46.4279201 ], + [ 7.1627556, 46.427909 ], + [ 7.1626423, 46.4279321 ], + [ 7.1625289, 46.4279768 ], + [ 7.1623985, 46.428034 ], + [ 7.1622356, 46.4280966 ], + [ 7.1620963, 46.4281188 ], + [ 7.1618531, 46.4280966 ], + [ 7.1616984, 46.4280746 ], + [ 7.1615035, 46.4280238 ], + [ 7.1613398, 46.4279793 ], + [ 7.1612343, 46.4280024 ], + [ 7.1611197, 46.4280363 ], + [ 7.1610063, 46.4280756 ], + [ 7.1608345, 46.4280878 ], + [ 7.1606484, 46.428099 ], + [ 7.1604689, 46.4280878 ], + [ 7.1602818, 46.4280486 ], + [ 7.1600857, 46.4279816 ], + [ 7.1599806, 46.4279256 ], + [ 7.1597934, 46.4278972 ], + [ 7.1596544, 46.427869 ], + [ 7.1595804, 46.4278247 ], + [ 7.1594508, 46.4277398 ], + [ 7.1592873, 46.4276666 ], + [ 7.1591248, 46.4276275 ], + [ 7.1589622, 46.4276334 ], + [ 7.1588152, 46.4276222 ], + [ 7.1586931, 46.4275886 ], + [ 7.1585958, 46.4275326 ], + [ 7.1584895, 46.4274766 ], + [ 7.1583506, 46.4274088 ], + [ 7.1581804, 46.4273589 ], + [ 7.1579686, 46.4273251 ], + [ 7.1578139, 46.4273031 ], + [ 7.1576019, 46.4272864 ], + [ 7.1574069, 46.4272526 ], + [ 7.1570974, 46.4272473 ], + [ 7.1569024, 46.4272199 ], + [ 7.1567385, 46.4272141 ], + [ 7.1565263, 46.4272369 ], + [ 7.1564052, 46.42726 ], + [ 7.1562504, 46.4272659 ], + [ 7.1560956000000004, 46.4272601 ], + [ 7.1559822, 46.4272886 ], + [ 7.1558428, 46.4273288 ], + [ 7.1557373, 46.4273627 ], + [ 7.1555915, 46.427374 ], + [ 7.155412, 46.4273745 ], + [ 7.155152, 46.4273351 ], + [ 7.154867, 46.4273587 ], + [ 7.1545991, 46.4273472 ], + [ 7.1543454, 46.4273484 ], + [ 7.1541178, 46.4273316 ], + [ 7.1539302, 46.427377 ], + [ 7.1536465, 46.4273889 ], + [ 7.1535401, 46.4273383 ], + [ 7.1534258, 46.4273047 ], + [ 7.153231, 46.4272538 ], + [ 7.1530518, 46.4271922 ], + [ 7.1528229, 46.4271817 ], + [ 7.1527739, 46.4270971 ], + [ 7.1524085, 46.4270691 ], + [ 7.1523823, 46.4266004 ], + [ 7.1521874, 46.4265558 ], + [ 7.1521778, 46.4263984 ], + [ 7.1520726, 46.4263702 ], + [ 7.1518762, 46.4263706 ], + [ 7.1517303, 46.4264044 ], + [ 7.1507151, 46.4269812 ], + [ 7.1507303, 46.4268238 ], + [ 7.1506336, 46.426891 ], + [ 7.1505436, 46.4269421 ], + [ 7.1504132, 46.4269993 ], + [ 7.150275, 46.4270556 ], + [ 7.1501043, 46.4271119 ], + [ 7.149901, 46.4271743 ], + [ 7.1496888, 46.4272088 ], + [ 7.1495104, 46.4272318 ], + [ 7.1495183, 46.4272147 ], + [ 7.1495342, 46.4271581 ], + [ 7.1495672, 46.4270853 ], + [ 7.1496313, 46.4270171 ], + [ 7.1496238, 46.4269604 ], + [ 7.1495184, 46.4269556 ], + [ 7.1487041, 46.427182 ], + [ 7.1487938, 46.4274413 ], + [ 7.1486399, 46.4275093 ], + [ 7.1486406, 46.4276164 ], + [ 7.148258, 46.427888 ], + [ 7.1481351, 46.4277698 ], + [ 7.1479313, 46.4276802 ], + [ 7.147884, 46.4277646 ], + [ 7.1478187, 46.4278158 ], + [ 7.1477208, 46.4278776 ], + [ 7.147688, 46.4279171 ], + [ 7.1477371, 46.4279964 ], + [ 7.1478029, 46.4280811 ], + [ 7.1477623, 46.4281377 ], + [ 7.1476649, 46.4281095 ], + [ 7.1475415, 46.4280759 ], + [ 7.1473062, 46.4280312 ], + [ 7.14711, 46.4280028 ], + [ 7.1470214, 46.428026 ], + [ 7.146948, 46.4281158 ], + [ 7.1468747, 46.428201 ], + [ 7.1467936, 46.4282908 ], + [ 7.1466474, 46.4283705 ], + [ 7.1467211, 46.4284606 ], + [ 7.1467948, 46.4285508 ], + [ 7.1468191, 46.42863 ], + [ 7.1468277, 46.42872 ], + [ 7.1468687, 46.4288379 ], + [ 7.1468762, 46.4288892 ], + [ 7.1468929, 46.4289342 ], + [ 7.1469251, 46.4289964 ], + [ 7.1469740999999996, 46.4290694 ], + [ 7.1470244, 46.4291595 ], + [ 7.1470405, 46.4293007 ], + [ 7.1470735, 46.4294475 ], + [ 7.1470899, 46.4295599 ], + [ 7.1470579, 46.4296957 ], + [ 7.1470003, 46.4297522 ], + [ 7.1469275, 46.429752 ], + [ 7.1468951, 46.4297241 ], + [ 7.1468942, 46.4296449 ], + [ 7.1469193, 46.4295829 ], + [ 7.1469356, 46.429448 ], + [ 7.1469506, 46.4293347 ], + [ 7.1469344, 46.4291934 ], + [ 7.1468686, 46.4290925 ], + [ 7.1467795, 46.4289735 ], + [ 7.1466563, 46.4289066 ], + [ 7.1465756, 46.4289118 ], + [ 7.146535, 46.4289459 ], + [ 7.1464788, 46.4290024 ], + [ 7.1464213, 46.4290419 ], + [ 7.1463159, 46.4290479 ], + [ 7.1462184, 46.4290368 ], + [ 7.1461363, 46.4290654 ], + [ 7.1459658, 46.4290821 ], + [ 7.1457616999999995, 46.4290429 ], + [ 7.1455174, 46.4289981 ], + [ 7.1451991, 46.42892 ], + [ 7.145134, 46.4289315 ], + [ 7.1450778, 46.4289709 ], + [ 7.1449722, 46.4290165 ], + [ 7.1448903, 46.4289992 ], + [ 7.1448411, 46.4289604 ], + [ 7.1448169, 46.4288641 ], + [ 7.144768, 46.428774 ], + [ 7.144719, 46.4286893 ], + [ 7.1446531, 46.4286046 ], + [ 7.1445558, 46.4285486 ], + [ 7.1444495, 46.4284871 ], + [ 7.1443277, 46.4283914 ], + [ 7.1442058, 46.4283174 ], + [ 7.1440589, 46.4283071 ], + [ 7.1439936, 46.4283573 ], + [ 7.1439776, 46.4284202 ], + [ 7.1440032, 46.4285039 ], + [ 7.1440509, 46.4285778 ], + [ 7.1441168, 46.4286626 ], + [ 7.1442633, 46.4287466 ], + [ 7.1443929, 46.4288477 ], + [ 7.1445238, 46.4289326 ], + [ 7.1446301, 46.4290057 ], + [ 7.1446869, 46.4290904 ], + [ 7.1447125, 46.4291688 ], + [ 7.1447119, 46.4292704 ], + [ 7.1447206, 46.429355 ], + [ 7.1446549, 46.4294628 ], + [ 7.1445663, 46.4295021 ], + [ 7.144509, 46.4294966 ], + [ 7.1444273, 46.4294568 ], + [ 7.1443377, 46.4294233 ], + [ 7.144265, 46.4293952 ], + [ 7.1442328, 46.4293393 ], + [ 7.1442318, 46.4292773 ], + [ 7.1442309999999996, 46.4291981 ], + [ 7.1441665, 46.4290963 ], + [ 7.1440524, 46.4290123 ], + [ 7.1439221, 46.429057 ], + [ 7.1437996, 46.4290917 ], + [ 7.143711, 46.429114 ], + [ 7.143637, 46.4290976 ], + [ 7.1435318, 46.4290523 ], + [ 7.1434332, 46.4290071 ], + [ 7.1432864, 46.428968 ], + [ 7.1431486, 46.4289515 ], + [ 7.1430508, 46.4289908 ], + [ 7.1429933, 46.4290302 ], + [ 7.1428304, 46.4290928 ], + [ 7.1427182, 46.4291555 ], + [ 7.1425307, 46.4291838 ], + [ 7.1423107, 46.4292012 ], + [ 7.1420673, 46.4292239 ], + [ 7.1416673, 46.4293371 ], + [ 7.1414404, 46.4294337 ], + [ 7.1413905, 46.4295181 ], + [ 7.141399, 46.4296144 ], + [ 7.1413595, 46.4297105 ], + [ 7.1412538, 46.4297723 ], + [ 7.1411234, 46.4298233 ], + [ 7.1410333, 46.4298797 ], + [ 7.1409368, 46.4299199 ], + [ 7.1408388, 46.4300042 ], + [ 7.1407576, 46.4300895 ], + [ 7.1406599, 46.4301234 ], + [ 7.1405543, 46.4301519 ], + [ 7.1403994, 46.4301686 ], + [ 7.1402042, 46.4301915 ], + [ 7.1400495, 46.4301641 ], + [ 7.1399429, 46.4301413 ], + [ 7.139822, 46.4301248 ], + [ 7.1396663, 46.4300515 ], + [ 7.1395691, 46.4299784 ], + [ 7.1394707, 46.429899 ], + [ 7.1393241, 46.4298266 ], + [ 7.1392512, 46.4298435 ], + [ 7.1391377, 46.4298999 ], + [ 7.1390319, 46.4299617 ], + [ 7.1389419, 46.4300019 ], + [ 7.1387881, 46.4300528 ], + [ 7.1386489, 46.4300641 ], + [ 7.1385109, 46.4300754 ], + [ 7.1383717, 46.4300814 ], + [ 7.1381933, 46.430104299999996 ], + [ 7.1380552, 46.4301327 ], + [ 7.1378845, 46.4301898 ], + [ 7.1377619, 46.4302462 ], + [ 7.1376564, 46.4302576 ], + [ 7.1375094, 46.4302581 ], + [ 7.1373625, 46.4302352 ], + [ 7.1372579, 46.4303312 ], + [ 7.1371443, 46.4304109 ], + [ 7.1370385, 46.4304781 ], + [ 7.1369081, 46.430529 ], + [ 7.136753, 46.4305808 ], + [ 7.1366476, 46.4305922 ], + [ 7.1366318, 46.4306318 ], + [ 7.1365987, 46.4307333 ], + [ 7.1366072, 46.4308341 ], + [ 7.1366326, 46.4309529 ], + [ 7.1367048, 46.4310601 ], + [ 7.1367952, 46.4311782 ], + [ 7.1369337999999996, 46.4312964 ], + [ 7.1370398999999995, 46.4313921 ], + [ 7.1370887, 46.4315164 ], + [ 7.1370319, 46.4316628 ], + [ 7.1369919, 46.4318327 ], + [ 7.1378573, 46.4329766 ], + [ 7.1388293, 46.4329513 ], + [ 7.1392574, 46.4329407 ], + [ 7.1395916, 46.4329794 ], + [ 7.1400882, 46.4330464 ], + [ 7.1403405, 46.4330632 ], + [ 7.1406095, 46.4331251 ], + [ 7.1408785, 46.4331861 ], + [ 7.1411149, 46.4332542 ], + [ 7.1413422, 46.4333214 ], + [ 7.141546, 46.4334163 ], + [ 7.1417095, 46.4334842 ], + [ 7.1419534, 46.4336135 ], + [ 7.1421662, 46.4337148 ], + [ 7.1424426, 46.4338613 ], + [ 7.1427447, 46.4340582 ], + [ 7.1430457, 46.4341984 ], + [ 7.1434372, 46.4344684 ], + [ 7.1436008, 46.4345309 ], + [ 7.1437958, 46.4345584 ], + [ 7.1440001, 46.434558 ], + [ 7.14413, 46.4345863 ], + [ 7.1443093, 46.4346308 ], + [ 7.1445612, 46.4347268 ], + [ 7.1447405, 46.434783 ], + [ 7.1450093, 46.4348836 ], + [ 7.1453106, 46.4349797 ], + [ 7.1454651, 46.4350413 ], + [ 7.1456526, 46.4350184 ], + [ 7.1458231, 46.4350125 ], + [ 7.146044, 46.4350689 ], + [ 7.1462061, 46.435153 ], + [ 7.1463128, 46.4351586 ], + [ 7.1464261, 46.4351302 ], + [ 7.1465889, 46.4351072 ], + [ 7.1467201, 46.4351408 ], + [ 7.1468748, 46.4351799 ], + [ 7.1469801, 46.4351856 ], + [ 7.1471431, 46.435123 ], + [ 7.147436, 46.4350887 ], + [ 7.1477055, 46.435066 ], + [ 7.1479565, 46.4350882 ], + [ 7.1482099, 46.4351383 ], + [ 7.1484373, 46.4352055 ], + [ 7.1487151, 46.4353124 ], + [ 7.1490086, 46.4354193 ], + [ 7.1493512, 46.4355992 ], + [ 7.1496604, 46.4356773 ], + [ 7.1498959, 46.435677 ], + [ 7.1501158, 46.4356767 ], + [ 7.1503279, 46.4356763 ], + [ 7.1505633, 46.4356931 ], + [ 7.1508155, 46.4357324 ], + [ 7.1509871, 46.4357653 ], + [ 7.1511419, 46.435771 ], + [ 7.1512564, 46.4357767 ], + [ 7.1513866, 46.4357483 ], + [ 7.1515001, 46.4356919 ], + [ 7.1516383, 46.435641 ], + [ 7.1517596, 46.4355837 ], + [ 7.1519473, 46.4355329 ], + [ 7.1521022, 46.4355153 ], + [ 7.1523702, 46.4355268 ], + [ 7.1527213, 46.4355538 ], + [ 7.1532584, 46.4356154 ], + [ 7.153495, 46.435643 ], + [ 7.1537068, 46.4356939 ], + [ 7.1538209, 46.4357724 ], + [ 7.1539348, 46.4358798 ], + [ 7.1540331, 46.4359979 ], + [ 7.1540495, 46.4360933 ], + [ 7.1540413, 46.4361778 ], + [ 7.1540006, 46.4362515 ], + [ 7.1539274, 46.4362971 ], + [ 7.1538217, 46.4363706 ], + [ 7.1537002, 46.4364666 ], + [ 7.153602, 46.4365743 ], + [ 7.1535051, 46.4366982 ], + [ 7.1535146, 46.4368619 ], + [ 7.1536036, 46.4370025 ], + [ 7.1537095, 46.4371548 ], + [ 7.1538403, 46.437273 ], + [ 7.1539542, 46.4373974 ], + [ 7.1541589, 46.4375544 ], + [ 7.1544519, 46.4377576 ], + [ 7.1548675, 46.4379088 ], + [ 7.1547055, 46.4380281 ], + [ 7.1545423, 46.4381356 ], + [ 7.1544208, 46.4382316 ], + [ 7.1542655, 46.438322 ], + [ 7.1540713, 46.4383845 ], + [ 7.1539006, 46.4384354 ], + [ 7.1537218, 46.4385375 ], + [ 7.1536483, 46.438656 ], + [ 7.1536081, 46.4388754 ], + [ 7.1536002, 46.4391408 ], + [ 7.1536262, 46.4393837 ], + [ 7.1536100000000005, 46.4395024 ], + [ 7.153561, 46.4396543 ], + [ 7.1534874, 46.4398017 ], + [ 7.153407, 46.4399931 ], + [ 7.1533419, 46.4402475 ], + [ 7.1532457, 46.4404784 ], + [ 7.1531407, 46.4406428 ], + [ 7.1530265, 46.440835 ], + [ 7.1529542, 46.440976 ], + [ 7.1527995, 46.441179 ], + [ 7.152662, 46.4413486 ], + [ 7.1525568, 46.441558 ], + [ 7.1524997, 46.4417719 ], + [ 7.1524675, 46.4419634 ], + [ 7.1524599, 46.4421559 ], + [ 7.1524678999999995, 46.4423817 ], + [ 7.1525184, 46.4426688 ], + [ 7.1528287, 46.4433002 ], + [ 7.1530328, 46.4435706 ], + [ 7.1532698, 46.4437907 ], + [ 7.1533594, 46.4438296 ], + [ 7.1535062, 46.443880300000004 ], + [ 7.1537415, 46.4439142 ], + [ 7.1540184, 46.4439815 ], + [ 7.1544018, 46.4440652 ], + [ 7.1546463, 46.4441045 ], + [ 7.1549723, 46.4442277 ], + [ 7.1553074, 46.4443455 ], + [ 7.1556323, 46.4444182 ], + [ 7.1560641, 46.4444742 ], + [ 7.1565286, 46.4444906 ], + [ 7.1568616, 46.4445122 ], + [ 7.1570012, 46.444687 ], + [ 7.157156, 46.4447153 ], + [ 7.1573264, 46.4447202 ], + [ 7.1574902, 46.4447539 ], + [ 7.1575798, 46.4447937 ], + [ 7.1576862, 46.4448551 ], + [ 7.1578327999999996, 46.4449455 ], + [ 7.1579791, 46.4450862 ], + [ 7.1580606, 46.44517 ], + [ 7.158224, 46.4452829 ], + [ 7.1584029, 46.4454183 ], + [ 7.1585663, 46.4455365 ], + [ 7.1586892, 46.4456663 ], + [ 7.1588526, 46.4457783 ], + [ 7.1589589, 46.4458577 ], + [ 7.1589989, 46.4459307 ], + [ 7.1589672, 46.4460269 ], + [ 7.1589588, 46.4461339 ], + [ 7.1589674, 46.4462239 ], + [ 7.159058, 46.4463311 ], + [ 7.1591224, 46.4464491 ], + [ 7.1591232, 46.4465508 ], + [ 7.159115, 46.4466353 ], + [ 7.1590663, 46.4467261 ], + [ 7.1589615, 46.446867 ], + [ 7.1589205, 46.4469911 ], + [ 7.1588638, 46.4471322 ], + [ 7.1588396, 46.4472958 ], + [ 7.1588973, 46.447448 ], + [ 7.1589707, 46.4476011 ], + [ 7.1591832, 46.4477753 ], + [ 7.1593944, 46.4479557 ], + [ 7.1596733, 46.4481354 ], + [ 7.1600146, 46.4483377 ], + [ 7.1604066, 46.4485348 ], + [ 7.1606922, 46.4486642 ], + [ 7.1608468, 46.4487149 ], + [ 7.1610342, 46.4487253 ], + [ 7.1613023, 46.4487196 ], + [ 7.1615143, 46.4487471 ], + [ 7.1617431, 46.4487981 ], + [ 7.1619872, 46.4489048 ], + [ 7.162264, 46.4489829 ], + [ 7.1625906, 46.4490052 ], + [ 7.1627621, 46.4490551 ], + [ 7.1627526, 46.4491397 ], + [ 7.162696, 46.4492583 ], + [ 7.1625581, 46.4495017 ], + [ 7.162486, 46.4495978 ], + [ 7.1625181, 46.4496824 ], + [ 7.1625438, 46.4497608 ], + [ 7.1626904, 46.4498511 ], + [ 7.1628046, 46.4499017 ], + [ 7.1629829, 46.4499067 ], + [ 7.163178, 46.4499296 ], + [ 7.1633012, 46.4500253 ], + [ 7.1633751, 46.4500758 ], + [ 7.1635377, 46.4501032 ], + [ 7.1636754, 46.4501368 ], + [ 7.1637652, 46.4501371 ], + [ 7.1638954, 46.4501428 ], + [ 7.1640998, 46.4503736 ], + [ 7.1642395, 46.4505367 ], + [ 7.1644517, 46.4507846 ], + [ 7.1645902, 46.4509424 ], + [ 7.1648096, 46.4510437 ], + [ 7.1650138, 46.4510828 ], + [ 7.1653065, 46.4511105 ], + [ 7.1656003, 46.4511607 ], + [ 7.1656418, 46.4512004 ], + [ 7.1657805, 46.4513123 ], + [ 7.1659025, 46.4513854 ], + [ 7.1660246, 46.4514361 ], + [ 7.1661792, 46.4514815 ], + [ 7.1662858, 46.4515096 ], + [ 7.1663181, 46.4515484 ], + [ 7.1664075, 46.4516277 ], + [ 7.1664902999999995, 46.4517287 ], + [ 7.1666771, 46.451847 ], + [ 7.1668967, 46.4519204 ], + [ 7.1671175, 46.4520154 ], + [ 7.1674033, 46.452133 ], + [ 7.167598, 46.4522288 ], + [ 7.1677042, 46.4523307 ], + [ 7.1677453, 46.4524379 ], + [ 7.1678435, 46.4525838 ], + [ 7.1679495, 46.4527307 ], + [ 7.1680973, 46.4528435 ], + [ 7.1682284, 46.4529158 ], + [ 7.1683987, 46.4529666 ], + [ 7.1685378, 46.4529948 ], + [ 7.168717, 46.4530681 ], + [ 7.1688714000000004, 46.4531629 ], + [ 7.1690437, 46.4533207 ], + [ 7.1692055, 46.453501 ], + [ 7.1693089, 46.4536641 ], + [ 7.1693954, 46.4538002 ], + [ 7.1696542, 46.4535741 ], + [ 7.169752, 46.4535338 ], + [ 7.1698665, 46.4535395 ], + [ 7.1700371, 46.4535336 ], + [ 7.1702411999999995, 46.4535728 ], + [ 7.1704362, 46.453629 ], + [ 7.1706894, 46.4537412 ], + [ 7.1709257, 46.4538704 ], + [ 7.1710803, 46.4539211 ], + [ 7.1712026, 46.4539268 ], + [ 7.171325, 46.4539208 ], + [ 7.171471, 46.453886 ], + [ 7.1716259, 46.453881 ], + [ 7.171765, 46.4538975 ], + [ 7.1718782, 46.4539248 ], + [ 7.1719759, 46.4538971 ], + [ 7.1721062, 46.453874 ], + [ 7.1723102, 46.4539303 ], + [ 7.1725636, 46.4540307 ], + [ 7.1728569, 46.4541889 ], + [ 7.1729549, 46.4541207 ], + [ 7.1730595, 46.454013 ], + [ 7.1731251, 46.4539061 ], + [ 7.1732389, 46.4537931 ], + [ 7.1733694, 46.4537367 ], + [ 7.1735391, 46.4536345 ], + [ 7.1736766, 46.4534594 ], + [ 7.1738644, 46.4533744 ], + [ 7.1739789, 46.4533801 ], + [ 7.1742066, 46.4534076 ], + [ 7.1744094, 46.4534468 ], + [ 7.1745071, 46.4534299 ], + [ 7.1745895, 46.4533446 ], + [ 7.1746785, 46.4532603 ], + [ 7.174817, 46.4531527 ], + [ 7.1749462, 46.4530675 ], + [ 7.1750686, 46.4530615 ], + [ 7.1752636, 46.4531069 ], + [ 7.1753429, 46.4531368 ], + [ 7.1756884, 46.4532698 ], + [ 7.1759897, 46.4534154 ], + [ 7.1760479, 46.4534893 ], + [ 7.1760227, 46.4535792 ], + [ 7.1759907, 46.4537311 ], + [ 7.1759508, 46.4539235 ], + [ 7.1759097, 46.4540755 ], + [ 7.1758049, 46.4542003 ], + [ 7.1756834, 46.4542962 ], + [ 7.1755692, 46.4545056 ], + [ 7.1754639, 46.4547365 ], + [ 7.1753746, 46.4549117 ], + [ 7.1751966, 46.4551038 ], + [ 7.1748549, 46.4552514 ], + [ 7.1750106, 46.4553355 ], + [ 7.1751237, 46.4553753 ], + [ 7.1752458, 46.4554197 ], + [ 7.1754668, 46.4554876 ], + [ 7.1756787, 46.455543 ], + [ 7.1758577, 46.4556559 ], + [ 7.1759966, 46.4557453 ], + [ 7.1761839, 46.4557619 ], + [ 7.1764282999999995, 46.4558299 ], + [ 7.1765909, 46.4558465 ], + [ 7.1767131, 46.4558801 ], + [ 7.1768442, 46.4559532 ], + [ 7.1769752, 46.4560597 ], + [ 7.1771295, 46.4561779 ], + [ 7.1773007, 46.4562961 ], + [ 7.1775134, 46.456454 ], + [ 7.1778314, 46.4566338 ], + [ 7.1781248, 46.4567964 ], + [ 7.1786313, 46.4570332 ], + [ 7.1796921, 46.4575898 ], + [ 7.1799854, 46.4577641 ], + [ 7.1802946, 46.4578925 ], + [ 7.180556, 46.4579435 ], + [ 7.1807679, 46.4579935 ], + [ 7.18089, 46.4580495 ], + [ 7.1810368, 46.4581227 ], + [ 7.1812483, 46.4582518 ], + [ 7.1815259, 46.4584495 ], + [ 7.1817543, 46.4586119 ], + [ 7.1819916, 46.458787 ], + [ 7.1821395, 46.4589051 ], + [ 7.1823265, 46.4589838 ], + [ 7.1824733, 46.459057 ], + [ 7.1826437, 46.4590844 ], + [ 7.1830925, 46.4591349 ], + [ 7.1832395, 46.4591622 ], + [ 7.1833200999999995, 46.4591849 ], + [ 7.1834589, 46.459286 ], + [ 7.183638, 46.4593925 ], + [ 7.1837691, 46.459472 ], + [ 7.1838508, 46.459545 ], + [ 7.1839245, 46.4596351 ], + [ 7.1840881, 46.4597417 ], + [ 7.1842671, 46.4598716 ], + [ 7.1844059, 46.4599781 ], + [ 7.184594, 46.460108 ], + [ 7.1846915, 46.4601415 ], + [ 7.1848139, 46.4601355 ], + [ 7.1849125, 46.4601915 ], + [ 7.1850177, 46.4602538 ], + [ 7.1852459, 46.460445 ], + [ 7.1853859, 46.4605578 ], + [ 7.1855233, 46.4606984 ], + [ 7.185606, 46.4608164 ], + [ 7.1856393, 46.4609461 ], + [ 7.1857039, 46.4610479 ], + [ 7.1858193, 46.4611264 ], + [ 7.1858425, 46.4611939 ], + [ 7.1858357, 46.4612505 ], + [ 7.1858678, 46.4613352 ], + [ 7.1859327, 46.4613911 ], + [ 7.185991, 46.4614479 ], + [ 7.1860648, 46.4615263 ], + [ 7.1861462, 46.461656 ], + [ 7.1861131, 46.4617801 ], + [ 7.1860982, 46.4619105 ], + [ 7.1861957, 46.4619386 ], + [ 7.1863427, 46.4619488 ], + [ 7.1865055, 46.4619321 ], + [ 7.1867009, 46.4618975 ], + [ 7.1868715, 46.4618916 ], + [ 7.1870587, 46.4619477 ], + [ 7.18719, 46.4619813 ], + [ 7.1873202, 46.461987 ], + [ 7.1874177, 46.461998 ], + [ 7.1874986, 46.4619694 ], + [ 7.1876379, 46.461958 ], + [ 7.187841, 46.461963 ], + [ 7.1880607, 46.4620138 ], + [ 7.1882244, 46.4620871 ], + [ 7.1883868, 46.4621657 ], + [ 7.1885906, 46.4622777 ], + [ 7.188788, 46.4623906 ], + [ 7.1889425, 46.4624746 ], + [ 7.1890646, 46.4625306 ], + [ 7.1892363, 46.4625589 ], + [ 7.1893741, 46.4625979 ], + [ 7.1894559, 46.4626367 ], + [ 7.1896196, 46.4627216 ], + [ 7.1897495, 46.4627777 ], + [ 7.1898638, 46.462822 ], + [ 7.1900914, 46.4628783 ], + [ 7.1906467, 46.4630019 ], + [ 7.1909393999999995, 46.463052 ], + [ 7.1910292, 46.4630405 ], + [ 7.1910283, 46.4629721 ], + [ 7.1910287, 46.4628822 ], + [ 7.1909954, 46.4627579 ], + [ 7.1909295, 46.4626454 ], + [ 7.1909243, 46.4626364 ], + [ 7.1908314, 46.4624706 ], + [ 7.1907501, 46.4623076 ], + [ 7.1906934, 46.4621888 ], + [ 7.1906512, 46.4620312 ], + [ 7.1906506, 46.4618621 ], + [ 7.1906086, 46.4616587 ], + [ 7.1905519, 46.4615345 ], + [ 7.1904706, 46.4613886 ], + [ 7.1903958, 46.4612301 ], + [ 7.1903792, 46.4611518 ], + [ 7.1903708, 46.4610051 ], + [ 7.1904107, 46.4608181 ], + [ 7.1904688, 46.4606491 ], + [ 7.1905492, 46.4604289 ], + [ 7.1906701, 46.4601692 ], + [ 7.190881, 46.4598809 ], + [ 7.1910516, 46.4595934 ], + [ 7.191214, 46.4593725 ], + [ 7.1914582, 46.459203 ], + [ 7.1915548, 46.4591465 ], + [ 7.1915708, 46.4590449 ], + [ 7.1915298, 46.4589207 ], + [ 7.1915291, 46.4587848 ], + [ 7.1915295, 46.4586832 ], + [ 7.1915861, 46.4585646 ], + [ 7.1916674, 46.4584235 ], + [ 7.1917563, 46.4583337 ], + [ 7.1918051, 46.4582088 ], + [ 7.1917886, 46.458108 ], + [ 7.1919822, 46.4578926 ], + [ 7.1922593, 46.4579372 ], + [ 7.1923079, 46.4578357 ], + [ 7.1930178, 46.4580261 ], + [ 7.1932284, 46.4577999 ], + [ 7.1932936, 46.4577722 ], + [ 7.1933502, 46.4576248 ], + [ 7.193398, 46.4574162 ], + [ 7.1934047, 46.4570887 ], + [ 7.19338, 46.4568008 ], + [ 7.1933462, 46.4565075 ], + [ 7.1932978, 46.4562708 ], + [ 7.1932309, 46.4560853 ], + [ 7.1931741, 46.455989 ], + [ 7.1932473, 46.4559208 ], + [ 7.1933606, 46.4559156 ], + [ 7.1935727, 46.455926 ], + [ 7.1938097, 46.4559085 ], + [ 7.1939724, 46.4559088 ], + [ 7.194126, 46.4558912 ], + [ 7.1942899, 46.4559302 ], + [ 7.1944199, 46.4559638 ], + [ 7.1945265, 46.4559865 ], + [ 7.1946566, 46.4559976 ], + [ 7.194835, 46.45598 ], + [ 7.1950068, 46.4559794 ], + [ 7.1951864, 46.4559906 ], + [ 7.1954049, 46.4560298 ], + [ 7.1956182, 46.4560689 ], + [ 7.1957976, 46.456108 ], + [ 7.1959509, 46.4561866 ], + [ 7.196155, 46.4562374 ], + [ 7.1964645, 46.4563037 ], + [ 7.1967428, 46.4563601 ], + [ 7.1969706, 46.4563597 ], + [ 7.197231, 46.4563422 ], + [ 7.197728, 46.4563802 ], + [ 7.198087, 46.4564475 ], + [ 7.1983392, 46.4565146 ], + [ 7.1984771, 46.4565203 ], + [ 7.198575, 46.4564576 ], + [ 7.1987943, 46.4563276 ], + [ 7.1991286, 46.4563661 ], + [ 7.1994136, 46.4563829 ], + [ 7.1994864, 46.4563992 ], + [ 7.1995122, 46.4564559 ], + [ 7.1995198, 46.4565009 ], + [ 7.1995115, 46.456608 ], + [ 7.1995045, 46.4567267 ], + [ 7.1994813, 46.4569578 ], + [ 7.1997336, 46.4570195 ], + [ 7.1997917, 46.4571267 ], + [ 7.2000273, 46.4571146 ], + [ 7.1999707, 46.457262 ], + [ 7.2000928, 46.4573351 ], + [ 7.2003372, 46.4574022 ], + [ 7.2009897, 46.4576096 ], + [ 7.201095, 46.4576287 ], + [ 7.2012017, 46.4576487 ], + [ 7.2013972, 46.4575862 ], + [ 7.2016409, 46.457512 ], + [ 7.2018365, 46.4574387 ], + [ 7.2020216, 46.457386 ], + [ 7.202048, 46.4573024 ], + [ 7.2021292, 46.4571784 ], + [ 7.202152, 46.4570201 ], + [ 7.2021438, 46.4568231 ], + [ 7.2021926, 46.4566757 ], + [ 7.2023629, 46.4564161 ], + [ 7.2024105, 46.4562578 ], + [ 7.2025243, 46.4561393 ], + [ 7.202581, 46.4559703 ], + [ 7.2026209, 46.4557779 ], + [ 7.2026282, 46.4555863 ], + [ 7.2026769999999996, 46.4554281 ], + [ 7.2027743, 46.455225 ], + [ 7.2028713, 46.4550552 ], + [ 7.2029266, 46.4549024 ], + [ 7.2028946, 46.4547953 ], + [ 7.202796, 46.4547114 ], + [ 7.2026661, 46.4546553 ], + [ 7.2025036, 46.4546163 ], + [ 7.2021358, 46.4544869 ], + [ 7.2017211, 46.4543691 ], + [ 7.2013376, 46.4542738 ], + [ 7.2007588, 46.4541683 ], + [ 7.2004247, 46.4540902 ], + [ 7.2001712, 46.454006 ], + [ 7.1999674, 46.4538823 ], + [ 7.1996909, 46.4537189 ], + [ 7.1993796, 46.4534772 ], + [ 7.1990696, 46.4532463 ], + [ 7.1988012, 46.4530217 ], + [ 7.1985068, 46.4527683 ], + [ 7.1983021, 46.4525708 ], + [ 7.1981144, 46.4523456 ], + [ 7.1979759, 46.4521707 ], + [ 7.1979087, 46.4520582 ], + [ 7.1978283, 46.4519797 ], + [ 7.1977298, 46.4519004 ], + [ 7.1976237, 46.4517544 ], + [ 7.1974931, 46.4515742 ], + [ 7.1973446, 46.4512977 ], + [ 7.1972391, 46.4510213 ], + [ 7.1971556, 46.4507963 ], + [ 7.1971072, 46.4505596 ], + [ 7.1971147, 46.4503275 ], + [ 7.1971376, 46.4501476 ], + [ 7.1972429, 46.4498987 ], + [ 7.1973724, 46.4497352 ], + [ 7.1974783, 46.4496275 ], + [ 7.1975103, 46.4494756 ], + [ 7.1974939, 46.4493397 ], + [ 7.1974361, 46.4491821 ], + [ 7.1973951, 46.44903 ], + [ 7.1973451, 46.4488662 ], + [ 7.1973526, 46.4486521 ], + [ 7.1974338, 46.4485272 ], + [ 7.1975307, 46.4484033 ], + [ 7.1975065, 46.4482674 ], + [ 7.1974329, 46.448144 ], + [ 7.1973918, 46.4480306 ], + [ 7.1972529, 46.4479349 ], + [ 7.1970646, 46.4478455 ], + [ 7.1968453, 46.4477164 ], + [ 7.1966985, 46.4476432 ], + [ 7.1965104, 46.4475142 ], + [ 7.1963146, 46.4473671 ], + [ 7.196168, 46.4472606 ], + [ 7.1960864, 46.4471705 ], + [ 7.1960362, 46.4470409 ], + [ 7.1959719, 46.4468716 ], + [ 7.1958649, 46.4466519 ], + [ 7.1957824, 46.4464772 ], + [ 7.1957083, 46.4461784 ], + [ 7.1956429, 46.4459417 ], + [ 7.1956414, 46.4457159 ], + [ 7.1956653, 46.4455972 ], + [ 7.1957544, 46.4454615 ], + [ 7.1959335, 46.4452919 ], + [ 7.1960225, 46.4451787 ], + [ 7.1961361, 46.4450773 ], + [ 7.1961926, 46.4449641 ], + [ 7.1962166, 46.44484 ], + [ 7.1962093, 46.444733 ], + [ 7.1961433, 46.4446536 ], + [ 7.1960864, 46.4445582 ], + [ 7.1961427, 46.4444962 ], + [ 7.1962081, 46.4444226 ], + [ 7.1963217, 46.4443266 ], + [ 7.1964263, 46.4442189 ], + [ 7.1965076, 46.4440886 ], + [ 7.1965315, 46.4439816 ], + [ 7.1965072, 46.4438745 ], + [ 7.1964258, 46.4437565 ], + [ 7.1963521, 46.4436547 ], + [ 7.1962705, 46.4435592 ], + [ 7.196189, 46.4434465 ], + [ 7.196188, 46.4433899 ], + [ 7.1962533, 46.4433387 ], + [ 7.1963018, 46.4432435 ], + [ 7.1963087, 46.4431751 ], + [ 7.1963011, 46.443113 ], + [ 7.1963496, 46.443034 ], + [ 7.1964475, 46.4429667 ], + [ 7.1966419, 46.4428646 ], + [ 7.1968297, 46.4427795 ], + [ 7.196658, 46.4427513 ], + [ 7.1964864, 46.4427239 ], + [ 7.1963004, 46.4426902 ], + [ 7.1960884, 46.442679 ], + [ 7.1959662, 46.44264 ], + [ 7.1959171, 46.4425617 ], + [ 7.1958521, 46.4425444 ], + [ 7.195713, 46.4425226 ], + [ 7.1955988, 46.4424602 ], + [ 7.1954364, 46.4423987 ], + [ 7.194817, 46.4424001 ], + [ 7.1948246, 46.4421572 ], + [ 7.1948733, 46.4420215 ], + [ 7.19497, 46.4419254 ], + [ 7.1950916, 46.4418016 ], + [ 7.1952134, 46.4416426 ], + [ 7.1953104, 46.4414791 ], + [ 7.1953188, 46.4413379 ], + [ 7.1952197, 46.4411128 ], + [ 7.1950969, 46.4409209 ], + [ 7.1950078, 46.4407633 ], + [ 7.194958, 46.4406166 ], + [ 7.194951, 46.4406149 ], + [ 7.1936867, 46.437605 ], + [ 7.1931456, 46.4363167 ], + [ 7.1925415, 46.4352231 ], + [ 7.1928173, 46.4337612 ], + [ 7.1932421, 46.4333744 ], + [ 7.1948266, 46.4324077 ], + [ 7.195541, 46.4316273 ], + [ 7.1960728, 46.4313406 ], + [ 7.1960774, 46.4313381 ], + [ 7.1960788, 46.4313378 ], + [ 7.1960834, 46.4313354 ], + [ 7.196553, 46.431225 ], + [ 7.1969236, 46.4306065 ], + [ 7.1983625, 46.4298567 ], + [ 7.1991499, 46.4292621 ], + [ 7.1997148, 46.4285934 ], + [ 7.199928, 46.4281949 ], + [ 7.2000422, 46.4273379 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00018", + "country" : "CHE", + "name" : [ + { + "text" : "District franc fédéral Pierreuse-Gummfluh", + "lang" : "de-CH" + }, + { + "text" : "District franc fédéral Pierreuse-Gummfluh", + "lang" : "fr-CH" + }, + { + "text" : "District franc fédéral Pierreuse-Gummfluh", + "lang" : "it-CH" + }, + { + "text" : "District franc fédéral Pierreuse-Gummfluh", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "startDateTime" : "2024-11-15T00:00:00+01:00", + "endDateTime" : "2025-04-15T00:00:00+02:00" + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Generaldirektion für Umwelt", + "lang" : "de-CH" + }, + { + "text" : "Direction générale de l'environnement", + "lang" : "fr-CH" + }, + { + "text" : "Direzione generale dell'Ambiente", + "lang" : "it-CH" + }, + { + "text" : "Environment Department", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.dge@vd.ch", + "phone" : "0041213164422", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.6369188, 46.5245375 ], + [ 6.6369246, 46.5247141 ], + [ 6.6369302, 46.5247728 ], + [ 6.636932, 46.5247883 ], + [ 6.6369488, 46.5249056 ], + [ 6.6369879, 46.5250801 ], + [ 6.6370435, 46.5252525 ], + [ 6.6370491, 46.5252676 ], + [ 6.637069, 46.5253146 ], + [ 6.6371104, 46.525443 ], + [ 6.6371161, 46.5254584 ], + [ 6.6371877999999995, 46.5256279 ], + [ 6.6372755, 46.5257938 ], + [ 6.6373426, 46.5259021 ], + [ 6.6373521, 46.5259165 ], + [ 6.6373882, 46.5259698 ], + [ 6.6375065, 46.5261264 ], + [ 6.6376394, 46.5262773 ], + [ 6.6376867, 46.5263262 ], + [ 6.6376997, 46.5263393 ], + [ 6.6377992, 46.526435 ], + [ 6.6379595, 46.5265726 ], + [ 6.6381325, 46.5267027 ], + [ 6.6381326, 46.5267028 ], + [ 6.6381486, 46.5267141 ], + [ 6.6383335, 46.5268361 ], + [ 6.6385296, 46.5269495 ], + [ 6.6386661, 46.5270201 ], + [ 6.6386847, 46.5270293 ], + [ 6.6387547, 46.527063 ], + [ 6.6389705, 46.5271578 ], + [ 6.6391949, 46.5272426 ], + [ 6.6392714999999995, 46.5272686 ], + [ 6.6392922, 46.5272755 ], + [ 6.6394476000000004, 46.527324 ], + [ 6.6396861, 46.5273879 ], + [ 6.6399302, 46.5274409 ], + [ 6.6399523, 46.5274451 ], + [ 6.6402008, 46.527487 ], + [ 6.6404528, 46.5275175 ], + [ 6.6406221, 46.5275315 ], + [ 6.6406449, 46.527533 ], + [ 6.64073, 46.5275381 ], + [ 6.6409856, 46.5275457 ], + [ 6.6412414, 46.5275417 ], + [ 6.6413266, 46.5275378 ], + [ 6.6413495000000005, 46.5275366 ], + [ 6.6415192, 46.527525 ], + [ 6.641772, 46.527498 ], + [ 6.6420218, 46.5274597 ], + [ 6.642044, 46.5274557 ], + [ 6.6422896, 46.5274062 ], + [ 6.6425298999999995, 46.5273456 ], + [ 6.6426868, 46.5272993 ], + [ 6.6427076, 46.5272928 ], + [ 6.6427849, 46.5272679 ], + [ 6.6430118, 46.5271862 ], + [ 6.6432304, 46.5270945 ], + [ 6.6433013, 46.5270617 ], + [ 6.6433202, 46.5270528 ], + [ 6.6434588, 46.5269841 ], + [ 6.6436582, 46.5268735 ], + [ 6.6438466, 46.5267542 ], + [ 6.643863, 46.5267431 ], + [ 6.6438631, 46.526743 ], + [ 6.6440399, 46.5266154 ], + [ 6.6442042, 46.52648 ], + [ 6.6443065, 46.5263857 ], + [ 6.6443198, 46.5263728 ], + [ 6.6443687, 46.5263246 ], + [ 6.644506, 46.5261756 ], + [ 6.6446289, 46.5260207 ], + [ 6.6446665, 46.525968 ], + [ 6.6446764, 46.5259537 ], + [ 6.6447467, 46.5258464 ], + [ 6.6448393, 46.5256817 ], + [ 6.644916, 46.5255133 ], + [ 6.644916, 46.5255132 ], + [ 6.6449222, 46.525498 ], + [ 6.6449828, 46.5253264 ], + [ 6.645027, 46.5251525 ], + [ 6.6450473, 46.5250355 ], + [ 6.6450495, 46.5250198 ], + [ 6.6450569, 46.5249612 ], + [ 6.6450679, 46.5247848 ], + [ 6.6450621, 46.5246082 ], + [ 6.6450564, 46.5245496 ], + [ 6.6450547, 46.5245338 ], + [ 6.6450378, 46.5244165 ], + [ 6.6449987, 46.524242 ], + [ 6.6449432, 46.5240697 ], + [ 6.6449374, 46.5240544 ], + [ 6.6449374, 46.5240543 ], + [ 6.6449034000000005, 46.5239739 ], + [ 6.6448729, 46.5238794 ], + [ 6.6448673, 46.5238643 ], + [ 6.6447955, 46.5236948 ], + [ 6.6447078, 46.5235289 ], + [ 6.6446406, 46.5234205 ], + [ 6.6446313, 46.5234063 ], + [ 6.6445951999999995, 46.5233531 ], + [ 6.6444769, 46.5231965 ], + [ 6.644344, 46.5230456 ], + [ 6.6442966, 46.5229966 ], + [ 6.6442838, 46.5229838 ], + [ 6.6441843, 46.5228881 ], + [ 6.6440241, 46.5227505 ], + [ 6.6438511, 46.5226204 ], + [ 6.6438352, 46.5226092 ], + [ 6.6436503, 46.5224872 ], + [ 6.6434542, 46.5223738 ], + [ 6.6433176, 46.5223032 ], + [ 6.6432991999999995, 46.5222941 ], + [ 6.6432293, 46.5222604 ], + [ 6.6430135, 46.5221656 ], + [ 6.6427891, 46.5220808 ], + [ 6.6427125, 46.5220547 ], + [ 6.6426921, 46.522048 ], + [ 6.6425367, 46.5219995 ], + [ 6.6422982, 46.5219356 ], + [ 6.6420541, 46.5218826 ], + [ 6.6420324, 46.5218784 ], + [ 6.6417838, 46.5218366 ], + [ 6.6415318, 46.5218061 ], + [ 6.6413626, 46.5217921 ], + [ 6.6413401, 46.5217905 ], + [ 6.641255, 46.5217854 ], + [ 6.6409994, 46.521777900000004 ], + [ 6.6407436, 46.5217818 ], + [ 6.6406583, 46.5217857 ], + [ 6.6406358, 46.5217869 ], + [ 6.6404662, 46.5217986 ], + [ 6.6402134, 46.5218256 ], + [ 6.6399637, 46.5218639 ], + [ 6.6399417, 46.5218678 ], + [ 6.6396961999999995, 46.5219173 ], + [ 6.6394558, 46.5219778 ], + [ 6.639299, 46.5220241 ], + [ 6.6392784, 46.5220306 ], + [ 6.6392011, 46.5220555 ], + [ 6.6389743, 46.5221372 ], + [ 6.6387556, 46.5222289 ], + [ 6.6386848, 46.5222616 ], + [ 6.6386661, 46.5222705 ], + [ 6.6385275, 46.522339099999996 ], + [ 6.6383281, 46.5224498 ], + [ 6.6381396, 46.5225691 ], + [ 6.6381234, 46.5225801 ], + [ 6.6379466, 46.5227077 ], + [ 6.6377823, 46.5228431 ], + [ 6.63768, 46.5229373 ], + [ 6.6376669, 46.52295 ], + [ 6.637618, 46.5229983 ], + [ 6.6374807, 46.5231473 ], + [ 6.6373578, 46.5233022 ], + [ 6.6373202, 46.5233549 ], + [ 6.6373104, 46.523369 ], + [ 6.63724, 46.5234764 ], + [ 6.6371475, 46.523641 ], + [ 6.6370707, 46.5238095 ], + [ 6.6370646, 46.5238245 ], + [ 6.637004, 46.5239961 ], + [ 6.6369597, 46.52417 ], + [ 6.6369394, 46.5242869 ], + [ 6.6369372, 46.5243025 ], + [ 6.6369298, 46.5243611 ], + [ 6.6369188, 46.5245375 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00033", + "country" : "CHE", + "name" : [ + { + "text" : "CHUV", + "lang" : "de-CH" + }, + { + "text" : "CHUV", + "lang" : "fr-CH" + }, + { + "text" : "CHUV", + "lang" : "it-CH" + }, + { + "text" : "CHUV", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kantonspolizei Waadt", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale vaudoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Vaud", + "lang" : "it-CH" + }, + { + "text" : "Vaud Cantonal Police", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.pcv@vd.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.414369, 47.0907621 ], + [ 8.4149151, 47.09016 ], + [ 8.4146663, 47.0900613 ], + [ 8.4145051, 47.0902067 ], + [ 8.4144576, 47.0902463 ], + [ 8.4144403, 47.0902521 ], + [ 8.4144189, 47.0902547 ], + [ 8.4144004, 47.090254 ], + [ 8.4143821, 47.09025 ], + [ 8.4141453, 47.0901324 ], + [ 8.413951, 47.0903354 ], + [ 8.4139635, 47.0903522 ], + [ 8.4140128, 47.0904092 ], + [ 8.4141055, 47.090449 ], + [ 8.4140591, 47.0905036 ], + [ 8.4141153, 47.0905272 ], + [ 8.4140779, 47.0905694 ], + [ 8.4141287, 47.0905913 ], + [ 8.4141108, 47.0906111 ], + [ 8.414136599999999, 47.0906214 ], + [ 8.4141083, 47.0906516 ], + [ 8.414369, 47.0907621 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSXN002", + "country" : "CHE", + "name" : [ + { + "text" : "LSXN Haltikon (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSXN Haltikon (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSXN Haltikon (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSXN Haltikon (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Heliswiss International AG", + "lang" : "de-CH" + }, + { + "text" : "Heliswiss International AG", + "lang" : "fr-CH" + }, + { + "text" : "Heliswiss International AG", + "lang" : "it-CH" + }, + { + "text" : "Heliswiss International AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "DPFO", + "lang" : "de-CH" + }, + { + "text" : "DPFO", + "lang" : "fr-CH" + }, + { + "text" : "DPFO", + "lang" : "it-CH" + }, + { + "text" : "DPFO", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Sandra Werder", + "lang" : "de-CH" + }, + { + "text" : "Sandra Werder", + "lang" : "fr-CH" + }, + { + "text" : "Sandra Werder", + "lang" : "it-CH" + }, + { + "text" : "Sandra Werder", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.heliswissinternational.com/en/", + "email" : "info@heliswiss.com", + "phone" : "0041418543223", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P02DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7365589, 47.4375898 ], + [ 7.7365576, 47.4376398 ], + [ 7.7365693, 47.4376805 ], + [ 7.7365809, 47.437765 ], + [ 7.7365538, 47.4378507 ], + [ 7.7365429, 47.4378683 ], + [ 7.7365611, 47.4379018 ], + [ 7.7366258, 47.4380203 ], + [ 7.7367028, 47.4382255 ], + [ 7.7367188, 47.4383945 ], + [ 7.7367128, 47.4385401 ], + [ 7.7367107, 47.4385943 ], + [ 7.7367675, 47.4386025 ], + [ 7.7367346999999995, 47.4388722 ], + [ 7.7366453, 47.4392473 ], + [ 7.736698, 47.4392437 ], + [ 7.7371461, 47.4392132 ], + [ 7.7375656, 47.4391738 ], + [ 7.7379787, 47.4391332 ], + [ 7.7382634, 47.4391053 ], + [ 7.7383752999999995, 47.4390696 ], + [ 7.7382995999999995, 47.4388987 ], + [ 7.738225, 47.4386722 ], + [ 7.7381559, 47.438447 ], + [ 7.7380848, 47.4382341 ], + [ 7.7379627, 47.4379617 ], + [ 7.737815, 47.4377153 ], + [ 7.7377417, 47.4374514 ], + [ 7.7376837, 47.4371647 ], + [ 7.7377304, 47.436933 ], + [ 7.7378189, 47.4365312 ], + [ 7.737872, 47.4363685 ], + [ 7.7380595, 47.4358229 ], + [ 7.7379764, 47.4357107 ], + [ 7.7379001, 47.4356093 ], + [ 7.7378476, 47.4355308 ], + [ 7.7378163, 47.4355941 ], + [ 7.737742, 47.4356283 ], + [ 7.7376462, 47.4357433 ], + [ 7.7373588, 47.4358834 ], + [ 7.7372001, 47.4360005 ], + [ 7.7371574, 47.4360454 ], + [ 7.7370158, 47.4361563 ], + [ 7.73689, 47.4362769 ], + [ 7.7368727, 47.4363152 ], + [ 7.7368805, 47.4363777 ], + [ 7.7368327, 47.4364424 ], + [ 7.7368117, 47.4365096 ], + [ 7.7367794, 47.4365488 ], + [ 7.7367354, 47.4366313 ], + [ 7.7367303, 47.4367253 ], + [ 7.7367325000000005, 47.436795 ], + [ 7.7367232999999995, 47.4368277 ], + [ 7.7366866, 47.4368606 ], + [ 7.7366654, 47.4369186 ], + [ 7.7366613, 47.4369778 ], + [ 7.73664, 47.4370237 ], + [ 7.736598, 47.4370709 ], + [ 7.7365911, 47.4371604 ], + [ 7.7365706, 47.4371828 ], + [ 7.7365685, 47.4372104 ], + [ 7.7366024, 47.4373031 ], + [ 7.7366039, 47.4373382 ], + [ 7.7365899, 47.437393 ], + [ 7.7365673, 47.4374351 ], + [ 7.7365598, 47.4374722 ], + [ 7.7365441, 47.4375074 ], + [ 7.7365455999999995, 47.4375424 ], + [ 7.7365589, 47.4375898 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns207", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Wildenstein", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Wildenstein", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Wildenstein", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Wildenstein", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.0882148, 47.1833103 ], + [ 7.0909772, 47.1841696 ], + [ 7.0925546, 47.1846619 ], + [ 7.0940183, 47.1851997 ], + [ 7.0947024, 47.184277 ], + [ 7.087366, 47.1817777 ], + [ 7.0868175, 47.182528 ], + [ 7.0883946, 47.1830545 ], + [ 7.0882148, 47.1833103 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZJ002", + "country" : "CHE", + "name" : [ + { + "text" : "LSZJ Courtelary (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSZJ Courtelary (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSZJ Courtelary (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSZJ Courtelary (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Segelfluggruppe Biel", + "lang" : "de-CH" + }, + { + "text" : "Groupe de vol à voile Courtelary", + "lang" : "fr-CH" + }, + { + "text" : "Groupe de vol à voile Courtelary", + "lang" : "it-CH" + }, + { + "text" : "Groupe de vol à voile Courtelary", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleiter", + "lang" : "de-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "fr-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "it-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Cédric Bassin", + "lang" : "de-CH" + }, + { + "text" : "Cédric Bassin", + "lang" : "fr-CH" + }, + { + "text" : "Cédric Bassin", + "lang" : "it-CH" + }, + { + "text" : "Cédric Bassin", + "lang" : "en-GB" + } + ], + "siteURL" : "https://lszj.ch/fr/kontakt-ppr/", + "email" : "chefdaerodrome@lszj.ch", + "phone" : "0041329441280", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.0995608, 47.0624597 ], + [ 8.0995481, 47.0622079 ], + [ 8.0995161, 47.0619569 ], + [ 8.0994649, 47.0617074 ], + [ 8.0993946, 47.06146 ], + [ 8.0993055, 47.0612156 ], + [ 8.0991979, 47.0609746 ], + [ 8.0990719, 47.0607378 ], + [ 8.0989279, 47.0605059 ], + [ 8.0987664, 47.0602794 ], + [ 8.0985878, 47.060059 ], + [ 8.0983925, 47.0598453 ], + [ 8.0981811, 47.0596389 ], + [ 8.0979542, 47.0594403 ], + [ 8.0977125, 47.0592501 ], + [ 8.0974564, 47.0590688 ], + [ 8.0971869, 47.0588969 ], + [ 8.0969046, 47.0587349 ], + [ 8.0966102, 47.0585832 ], + [ 8.0963046, 47.0584423 ], + [ 8.0959887, 47.0583124 ], + [ 8.0956632, 47.0581941 ], + [ 8.0953292, 47.0580875 ], + [ 8.0949874, 47.057993 ], + [ 8.0946389, 47.0579109 ], + [ 8.0942845, 47.0578414 ], + [ 8.0939253, 47.0577846 ], + [ 8.0935623, 47.0577408 ], + [ 8.0931964, 47.05771 ], + [ 8.0928286, 47.0576923 ], + [ 8.09246, 47.0576878 ], + [ 8.0920916, 47.0576965 ], + [ 8.0917243, 47.0577184 ], + [ 8.0913592, 47.0577533 ], + [ 8.0909973, 47.0578013 ], + [ 8.0906395, 47.0578621 ], + [ 8.0902869, 47.0579357 ], + [ 8.0899404, 47.0580218 ], + [ 8.089601, 47.0581201 ], + [ 8.0892696, 47.0582305 ], + [ 8.088947, 47.0583525 ], + [ 8.0886343, 47.0584859 ], + [ 8.0883322, 47.0586303 ], + [ 8.0880416, 47.0587853 ], + [ 8.0877632, 47.0589506 ], + [ 8.0874979, 47.0591255 ], + [ 8.0872464, 47.0593097 ], + [ 8.0870092, 47.0595026 ], + [ 8.0867872, 47.0597037 ], + [ 8.0865809, 47.0599125 ], + [ 8.0863909, 47.0601284 ], + [ 8.0862176, 47.0603508 ], + [ 8.0860617, 47.0605791 ], + [ 8.0859234, 47.0608127 ], + [ 8.0858032, 47.0610508 ], + [ 8.0857014, 47.061293 ], + [ 8.0856183, 47.0615384 ], + [ 8.0855541, 47.0617865 ], + [ 8.085509, 47.0620366 ], + [ 8.0854831, 47.0622879 ], + [ 8.0854765, 47.0625398 ], + [ 8.0854891, 47.0627916 ], + [ 8.0855211, 47.0630426 ], + [ 8.0855722, 47.0632921 ], + [ 8.0856424, 47.0635395 ], + [ 8.0857314, 47.0637839 ], + [ 8.0858391, 47.0640249 ], + [ 8.085965, 47.0642617 ], + [ 8.0861089, 47.0644937 ], + [ 8.0862704, 47.0647202 ], + [ 8.086449, 47.0649406 ], + [ 8.0866442, 47.0651543 ], + [ 8.0868556, 47.0653607 ], + [ 8.0870824, 47.0655593 ], + [ 8.0873242, 47.0657496 ], + [ 8.0875802, 47.0659309 ], + [ 8.0878498, 47.0661028 ], + [ 8.0881321, 47.0662648 ], + [ 8.0884265, 47.0664165 ], + [ 8.0887321, 47.0665575 ], + [ 8.0890481, 47.0666874 ], + [ 8.0893736, 47.0668058 ], + [ 8.0897077, 47.0669123 ], + [ 8.0900495, 47.0670068 ], + [ 8.0903981, 47.0670889 ], + [ 8.0907525, 47.0671585 ], + [ 8.0911117, 47.0672153 ], + [ 8.0914748, 47.0672591 ], + [ 8.0918408, 47.0672899 ], + [ 8.0922086, 47.0673076 ], + [ 8.0925773, 47.0673121 ], + [ 8.0929458, 47.0673034 ], + [ 8.0933132, 47.0672815 ], + [ 8.0936783, 47.0672466 ], + [ 8.0940403, 47.0671986 ], + [ 8.0943981, 47.0671377 ], + [ 8.0947508, 47.0670642 ], + [ 8.0950973, 47.0669781 ], + [ 8.0954368, 47.0668797 ], + [ 8.0957683, 47.0667694 ], + [ 8.0960908, 47.0666473 ], + [ 8.0964036, 47.0665139 ], + [ 8.0967057, 47.0663694 ], + [ 8.0969963, 47.0662144 ], + [ 8.0972747, 47.0660492 ], + [ 8.09754, 47.0658742 ], + [ 8.0977916, 47.06569 ], + [ 8.0980287, 47.0654971 ], + [ 8.0982507, 47.0652959 ], + [ 8.098457, 47.0650871 ], + [ 8.098647, 47.0648712 ], + [ 8.0988202, 47.0646487 ], + [ 8.0989761, 47.0644204 ], + [ 8.0991143, 47.0641869 ], + [ 8.0992345, 47.0639487 ], + [ 8.0993362, 47.0637065 ], + [ 8.0994193, 47.0634611 ], + [ 8.0994834, 47.0632129 ], + [ 8.0995285, 47.0629629 ], + [ 8.0995543, 47.0627116 ], + [ 8.0995608, 47.0624597 ] + ] + ], + "layer" : { + "upper" : 2000, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "EVA0001", + "country" : "CHE", + "name" : [ + { + "text" : "Kompressorenstation Ruswil", + "lang" : "de-CH" + }, + { + "text" : "Kompressorenstation Ruswil", + "lang" : "fr-CH" + }, + { + "text" : "Kompressorenstation Ruswil", + "lang" : "it-CH" + }, + { + "text" : "Kompressorenstation Ruswil", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Transitgas AG", + "lang" : "de-CH" + }, + { + "text" : "Transitgas AG", + "lang" : "fr-CH" + }, + { + "text" : "Transitgas AG", + "lang" : "it-CH" + }, + { + "text" : "Transitgas AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Technik", + "lang" : "de-CH" + }, + { + "text" : "Technik", + "lang" : "fr-CH" + }, + { + "text" : "Technik", + "lang" : "it-CH" + }, + { + "text" : "Technik", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.transitgas.ch/en/contact/", + "email" : "info@transitgas.ch", + "phone" : "0041414926010", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8802371, 47.5004118 ], + [ 7.8802418, 47.5004215 ], + [ 7.8802457, 47.5004313 ], + [ 7.8802489, 47.5004413 ], + [ 7.8805048, 47.5005139 ], + [ 7.880909, 47.5005226 ], + [ 7.8820594, 47.5006037 ], + [ 7.8826345, 47.5006901 ], + [ 7.8829923, 47.5006873 ], + [ 7.8832583, 47.5005753 ], + [ 7.8837598, 47.500225 ], + [ 7.8838053, 47.5001311 ], + [ 7.8838844, 47.5001744 ], + [ 7.8841452, 47.5001099 ], + [ 7.8846053, 47.5000346 ], + [ 7.8848404, 47.5000019 ], + [ 7.8850441, 47.4999428 ], + [ 7.8852725, 47.4999587 ], + [ 7.8854539, 47.4999729 ], + [ 7.8857692, 47.500039 ], + [ 7.8860151, 47.5000857 ], + [ 7.88687, 47.5001829 ], + [ 7.887042, 47.5002105 ], + [ 7.8871305, 47.5002247 ], + [ 7.8876358, 47.5003343 ], + [ 7.8881318, 47.5004031 ], + [ 7.8887979999999995, 47.5003398 ], + [ 7.8894518, 47.5003582 ], + [ 7.890057, 47.5003224 ], + [ 7.890108, 47.5003118 ], + [ 7.8901932, 47.5001964 ], + [ 7.8902249, 47.5001283 ], + [ 7.8899929, 47.5000075 ], + [ 7.8899805, 47.499948 ], + [ 7.8896384, 47.499948 ], + [ 7.8894623, 47.5000458 ], + [ 7.8892529, 47.5000568 ], + [ 7.8891083, 47.5000471 ], + [ 7.8888445, 47.5000343 ], + [ 7.8885676, 47.5000677 ], + [ 7.8882432, 47.5000724 ], + [ 7.8876484, 47.5000283 ], + [ 7.8871044999999995, 47.4998991 ], + [ 7.886921, 47.4997973 ], + [ 7.8867742, 47.4997894 ], + [ 7.8866344, 47.4996227 ], + [ 7.8866257, 47.4996124 ], + [ 7.8859597, 47.4995429 ], + [ 7.8859527, 47.499542 ], + [ 7.8859457, 47.4995415 ], + [ 7.8859385, 47.4995414 ], + [ 7.8859314, 47.4995417 ], + [ 7.8859244, 47.4995424 ], + [ 7.8859161, 47.4995437 ], + [ 7.885908, 47.499545499999996 ], + [ 7.8859003, 47.4995479 ], + [ 7.8858929, 47.4995507 ], + [ 7.8858709, 47.4995569 ], + [ 7.8858484, 47.4995621 ], + [ 7.8858254, 47.4995664 ], + [ 7.8858087999999995, 47.4995689 ], + [ 7.885792, 47.4995708 ], + [ 7.8857751, 47.4995723 ], + [ 7.8857476, 47.4995741 ], + [ 7.8857282, 47.4995752 ], + [ 7.8857087, 47.4995756 ], + [ 7.8856892, 47.4995751 ], + [ 7.8856671, 47.4995735 ], + [ 7.8856453, 47.4995709 ], + [ 7.8856238, 47.4995672 ], + [ 7.8855863, 47.4995577 ], + [ 7.8855428, 47.4995517 ], + [ 7.8854988, 47.4995474 ], + [ 7.8854546, 47.4995448 ], + [ 7.8854057, 47.4995438 ], + [ 7.8853568, 47.4995452 ], + [ 7.8853082, 47.4995489 ], + [ 7.8847517, 47.4996061 ], + [ 7.8839071, 47.4996931 ], + [ 7.8835328, 47.4997041 ], + [ 7.8833492, 47.5000632 ], + [ 7.8831776, 47.500342 ], + [ 7.8831102, 47.5004105 ], + [ 7.8829416, 47.5004462 ], + [ 7.8827123, 47.5004658 ], + [ 7.8824344, 47.5004815 ], + [ 7.8824039, 47.5004808 ], + [ 7.8819395, 47.5004707 ], + [ 7.8813762, 47.5004492 ], + [ 7.8809354, 47.5004502 ], + [ 7.8806714, 47.5004632 ], + [ 7.8805321, 47.5004492 ], + [ 7.8803566, 47.5003941 ], + [ 7.8803005, 47.5004007 ], + [ 7.8802316999999995, 47.5004023 ], + [ 7.8802371, 47.5004118 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns087", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Allmetgraben", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Allmetgraben", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Allmetgraben", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Allmetgraben", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4865428, 46.9204886 ], + [ 7.4861713, 46.9206272 ], + [ 7.4857947, 46.9208127 ], + [ 7.4849797, 46.9211126 ], + [ 7.4845675, 46.9212423 ], + [ 7.4839743, 46.9214251 ], + [ 7.4832248, 46.921626 ], + [ 7.4824083, 46.9218179 ], + [ 7.4819685, 46.9218981 ], + [ 7.4818649, 46.9219602 ], + [ 7.483189, 46.9228215 ], + [ 7.484366, 46.923519 ], + [ 7.4846443, 46.9234038 ], + [ 7.4861851999999995, 46.9243603 ], + [ 7.4883088, 46.9234904 ], + [ 7.4901015, 46.9227286 ], + [ 7.4891538, 46.9215678 ], + [ 7.4891195, 46.9214455 ], + [ 7.4893138, 46.9214004 ], + [ 7.4948457, 46.9170972 ], + [ 7.495023, 46.9172033 ], + [ 7.4951437, 46.9171177 ], + [ 7.494948, 46.916991 ], + [ 7.4968552, 46.9155121 ], + [ 7.496926, 46.9154869 ], + [ 7.497035, 46.9155084 ], + [ 7.4982815, 46.9161168 ], + [ 7.4985165, 46.9161185 ], + [ 7.4986529, 46.9159961 ], + [ 7.498974, 46.9156001 ], + [ 7.4998457, 46.91445 ], + [ 7.5017001, 46.9151201 ], + [ 7.5017532, 46.9145102 ], + [ 7.5017581, 46.9141944 ], + [ 7.5018408, 46.9142079 ], + [ 7.5018867, 46.9141656 ], + [ 7.5018918, 46.9140531 ], + [ 7.5018601, 46.9138831 ], + [ 7.501915, 46.9137104 ], + [ 7.5021479, 46.9130302 ], + [ 7.5023418, 46.9127252 ], + [ 7.5026343, 46.9124767 ], + [ 7.5033335, 46.912068 ], + [ 7.5036142, 46.9119491 ], + [ 7.5039093999999995, 46.9118194 ], + [ 7.5042187, 46.9113829 ], + [ 7.5041675, 46.9113596 ], + [ 7.5042265, 46.9113083 ], + [ 7.5046147, 46.9109707 ], + [ 7.5054971, 46.9102173 ], + [ 7.5055705, 46.9101435 ], + [ 7.5056111, 46.9100041 ], + [ 7.5061455, 46.9101881 ], + [ 7.5063292, 46.9101089 ], + [ 7.5067754, 46.9100295 ], + [ 7.5056092, 46.9095588 ], + [ 7.5055068, 46.9095705 ], + [ 7.5053586, 46.9096318 ], + [ 7.5047464999999995, 46.9093083 ], + [ 7.5073781, 46.9071281 ], + [ 7.5079157, 46.906780499999996 ], + [ 7.5074809, 46.9064741 ], + [ 7.5068124, 46.9060922 ], + [ 7.5062738, 46.9057813 ], + [ 7.5057012, 46.9054488 ], + [ 7.5054445, 46.905887 ], + [ 7.5050932, 46.9062983 ], + [ 7.5048612, 46.9065197 ], + [ 7.5047758, 46.9064757 ], + [ 7.5024982, 46.9083264 ], + [ 7.4991131, 46.9071724 ], + [ 7.4999132, 46.9054979 ], + [ 7.4979821, 46.9050384 ], + [ 7.497204, 46.9065347 ], + [ 7.4950622, 46.9107392 ], + [ 7.493578, 46.9136616 ], + [ 7.4933042, 46.9142095 ], + [ 7.4928116, 46.9151939 ], + [ 7.492594, 46.9155781 ], + [ 7.4921365, 46.9162403 ], + [ 7.4916514, 46.9168675 ], + [ 7.4909564, 46.9176181 ], + [ 7.4899753, 46.9184748 ], + [ 7.4895804, 46.9187305 ], + [ 7.4890044, 46.9191517 ], + [ 7.4875611, 46.9199934 ], + [ 7.4865428, 46.9204886 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZB002", + "country" : "CHE", + "name" : [ + { + "text" : "LSZB Bern-Belp 1 (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSZB Bern-Belp 1 (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSZB Bern-Belp 1 (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSZB Bern-Belp 1 (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Special Flight Office (SFO)", + "lang" : "de-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "fr-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "it-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "en-GB" + } + ], + "siteURL" : "https://skyguide.ch/services/special-flights", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5903952, 47.5499892 ], + [ 7.5903894, 47.549848 ], + [ 7.5903726, 47.5497072 ], + [ 7.590345, 47.5495672 ], + [ 7.5903066, 47.5494284 ], + [ 7.5902575, 47.5492911 ], + [ 7.5901978, 47.5491557 ], + [ 7.5901278, 47.5490227 ], + [ 7.5900476, 47.5488923 ], + [ 7.5899574, 47.5487649 ], + [ 7.5898575, 47.5486409 ], + [ 7.5897482, 47.5485206 ], + [ 7.5896296, 47.5484043 ], + [ 7.5895022999999995, 47.5482924 ], + [ 7.5893665, 47.5481852 ], + [ 7.5892226, 47.5480829 ], + [ 7.589071, 47.5479858 ], + [ 7.5889121, 47.5478943 ], + [ 7.5887463, 47.5478085 ], + [ 7.5885741, 47.5477287 ], + [ 7.5883959999999995, 47.5476552 ], + [ 7.5882125, 47.547588 ], + [ 7.588024, 47.5475274 ], + [ 7.5878311, 47.547473600000004 ], + [ 7.5876342999999995, 47.5474267 ], + [ 7.5874342, 47.5473869 ], + [ 7.5872312, 47.5473541 ], + [ 7.587026, 47.5473287 ], + [ 7.5868191, 47.5473105 ], + [ 7.5866111, 47.547299699999996 ], + [ 7.5864025, 47.5472962 ], + [ 7.5861939, 47.5473002 ], + [ 7.585986, 47.5473115 ], + [ 7.5857792, 47.5473302 ], + [ 7.5855741, 47.5473562 ], + [ 7.5853713, 47.5473895 ], + [ 7.5851714, 47.5474299 ], + [ 7.5849748, 47.5474773 ], + [ 7.5847822, 47.5475316 ], + [ 7.584594, 47.5475926 ], + [ 7.5844109, 47.5476602 ], + [ 7.5842332, 47.5477343 ], + [ 7.5840615, 47.5478145 ], + [ 7.5838962, 47.5479007 ], + [ 7.5837378, 47.5479926 ], + [ 7.5835867, 47.5480901 ], + [ 7.5834433, 47.5481927 ], + [ 7.5833081, 47.5483003 ], + [ 7.5831814, 47.5484125 ], + [ 7.5830636, 47.5485291 ], + [ 7.5829549, 47.5486496 ], + [ 7.5828556, 47.5487739 ], + [ 7.5827662, 47.5489015 ], + [ 7.5826867, 47.5490321 ], + [ 7.5826174, 47.5491653 ], + [ 7.5825585, 47.5493009 ], + [ 7.5825101, 47.5494383 ], + [ 7.5824725, 47.5495772 ], + [ 7.5824456, 47.5497173 ], + [ 7.5824297, 47.5498581 ], + [ 7.5824245999999995, 47.5499993 ], + [ 7.5824304, 47.5501405 ], + [ 7.5824472, 47.5502813 ], + [ 7.5824748, 47.5504214 ], + [ 7.5825132, 47.5505602 ], + [ 7.5825623, 47.5506975 ], + [ 7.5826219, 47.5508329 ], + [ 7.5826919, 47.5509659 ], + [ 7.5827721, 47.5510963 ], + [ 7.5828623, 47.5512237 ], + [ 7.5829621, 47.5513477 ], + [ 7.5830715, 47.551468 ], + [ 7.58319, 47.5515843 ], + [ 7.5833173, 47.5516962 ], + [ 7.5834531, 47.5518035 ], + [ 7.583597, 47.5519057 ], + [ 7.5837486, 47.5520028 ], + [ 7.5839076, 47.5520943 ], + [ 7.5840733, 47.5521801 ], + [ 7.5842455, 47.5522599 ], + [ 7.5844236, 47.5523335 ], + [ 7.5846072, 47.5524007 ], + [ 7.5847957, 47.5524612 ], + [ 7.5849886, 47.5525151 ], + [ 7.5851854, 47.552562 ], + [ 7.5853856, 47.5526018 ], + [ 7.5855885, 47.5526346 ], + [ 7.5857938, 47.55266 ], + [ 7.5860007, 47.5526782 ], + [ 7.5862088, 47.552689 ], + [ 7.5864173, 47.5526925 ], + [ 7.5866259, 47.5526885 ], + [ 7.5868339, 47.5526772 ], + [ 7.5870407, 47.5526585 ], + [ 7.5872458, 47.5526325 ], + [ 7.5874486, 47.5525992 ], + [ 7.5876486, 47.5525589 ], + [ 7.5878451, 47.5525115 ], + [ 7.5880378, 47.5524572 ], + [ 7.5882259, 47.5523961 ], + [ 7.5884091, 47.5523285 ], + [ 7.5885868, 47.5522544 ], + [ 7.5887585, 47.5521742 ], + [ 7.5889238, 47.552088 ], + [ 7.5890822, 47.5519961 ], + [ 7.5892333, 47.5518986 ], + [ 7.5893766, 47.551796 ], + [ 7.5895119, 47.5516884 ], + [ 7.5896386, 47.5515762 ], + [ 7.5897564, 47.5514596 ], + [ 7.5898651, 47.551339 ], + [ 7.5899643, 47.5512147 ], + [ 7.5900538, 47.5510871 ], + [ 7.5901333, 47.5509565 ], + [ 7.5902025, 47.5508233 ], + [ 7.5902614, 47.5506877 ], + [ 7.5903097, 47.5505503 ], + [ 7.5903474, 47.5504114 ], + [ 7.5903742, 47.5502713 ], + [ 7.5903902, 47.5501305 ], + [ 7.5903952, 47.5499892 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LOH0001", + "country" : "CHE", + "name" : [ + { + "text" : "Untersuchungsgefängnis Basel-Stadt", + "lang" : "de-CH" + }, + { + "text" : "Untersuchungsgefängnis Basel-Stadt", + "lang" : "fr-CH" + }, + { + "text" : "Untersuchungsgefängnis Basel-Stadt", + "lang" : "it-CH" + }, + { + "text" : "Untersuchungsgefängnis Basel-Stadt", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Untersuchungsgefängnis Basel-Stadt", + "lang" : "de-CH" + }, + { + "text" : "Untersuchungsgefängnis Basel-Stadt", + "lang" : "fr-CH" + }, + { + "text" : "Untersuchungsgefängnis Basel-Stadt", + "lang" : "it-CH" + }, + { + "text" : "Untersuchungsgefängnis Basel-Stadt", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Leitung", + "lang" : "de-CH" + }, + { + "text" : "Leitung", + "lang" : "fr-CH" + }, + { + "text" : "Leitung", + "lang" : "it-CH" + }, + { + "text" : "Leitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Christian Kreidler", + "lang" : "de-CH" + }, + { + "text" : "Christian Kreidler", + "lang" : "fr-CH" + }, + { + "text" : "Christian Kreidler", + "lang" : "it-CH" + }, + { + "text" : "Christian Kreidler", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.bdm.bs.ch/Ueber-uns/Organisation/Amt-fuer-Justizvollzug/Untersuchungsgefaengnis.html", + "email" : "info.ug@jsd.bs.ch", + "phone" : "0041612675200", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6302848999999995, 47.4926965 ], + [ 7.6302011, 47.4927414 ], + [ 7.6302064, 47.4927942 ], + [ 7.6303021, 47.4929764 ], + [ 7.6303368, 47.4930449 ], + [ 7.6304612, 47.4934109 ], + [ 7.6307407, 47.4933791 ], + [ 7.6307776, 47.4935216 ], + [ 7.6307561, 47.4935241 ], + [ 7.6308231, 47.4939798 ], + [ 7.6306764000000005, 47.4939988 ], + [ 7.6306434, 47.4940809 ], + [ 7.6306458, 47.4941007 ], + [ 7.6306475, 47.4941204 ], + [ 7.6306615, 47.4943123 ], + [ 7.6306646, 47.4943642 ], + [ 7.630669, 47.494416 ], + [ 7.6307096, 47.4949216 ], + [ 7.6307218, 47.4950488 ], + [ 7.6307241, 47.4950925 ], + [ 7.6307253, 47.4951362 ], + [ 7.6307205, 47.4954104 ], + [ 7.6325164, 47.4956407 ], + [ 7.6325997, 47.4955634 ], + [ 7.6327055999999995, 47.4954384 ], + [ 7.632836, 47.4952825 ], + [ 7.6329532, 47.495164 ], + [ 7.6330175, 47.4950918 ], + [ 7.6330685, 47.4950132 ], + [ 7.6330817, 47.4949823 ], + [ 7.6330987, 47.494954 ], + [ 7.6331175, 47.494918 ], + [ 7.6331477, 47.4948716 ], + [ 7.6331893, 47.4948239 ], + [ 7.6332233, 47.4947724 ], + [ 7.6332781, 47.4946977 ], + [ 7.6333385, 47.4946255 ], + [ 7.6333915, 47.494565 ], + [ 7.6334634, 47.4944967 ], + [ 7.6335353, 47.4944271 ], + [ 7.633631, 47.4944835 ], + [ 7.633836, 47.4945886 ], + [ 7.6340268, 47.4947173 ], + [ 7.6342087, 47.494844 ], + [ 7.6343937, 47.4949768 ], + [ 7.6345607, 47.4950995 ], + [ 7.6346442, 47.4951598 ], + [ 7.6347515999999995, 47.4952443 ], + [ 7.634859, 47.4953167 ], + [ 7.6349276, 47.495369 ], + [ 7.6350051, 47.4954052 ], + [ 7.6351064, 47.4954614 ], + [ 7.6351779, 47.4954976 ], + [ 7.635321, 47.495578 ], + [ 7.635485, 47.4956684 ], + [ 7.6355803, 47.4957227 ], + [ 7.6356877, 47.495781 ], + [ 7.6357681, 47.4958131 ], + [ 7.6358187, 47.4958312 ], + [ 7.6358843, 47.4958593 ], + [ 7.6359409, 47.4958915 ], + [ 7.6360154, 47.4959296 ], + [ 7.6360928999999995, 47.4959597 ], + [ 7.6362418, 47.4960038 ], + [ 7.6363430999999995, 47.49604 ], + [ 7.636486, 47.4960881 ], + [ 7.6366319, 47.4961342 ], + [ 7.636757, 47.4961743 ], + [ 7.6369298, 47.4962264 ], + [ 7.6370161, 47.4962565 ], + [ 7.6371115, 47.4962987 ], + [ 7.6372634, 47.496363 ], + [ 7.6373588, 47.4964051 ], + [ 7.6374913, 47.4964574 ], + [ 7.6375262, 47.4964383 ], + [ 7.6375592, 47.4964289 ], + [ 7.6375934, 47.4964216 ], + [ 7.6376283, 47.4964164 ], + [ 7.6376638, 47.4964134 ], + [ 7.6377195, 47.4964105 ], + [ 7.6377752999999995, 47.4964105 ], + [ 7.6382297, 47.4964284 ], + [ 7.6382699, 47.4964295 ], + [ 7.6383101, 47.4964319 ], + [ 7.6385482, 47.4964471 ], + [ 7.6386779, 47.496455 ], + [ 7.6388082, 47.4964581 ], + [ 7.6390022, 47.4964573 ], + [ 7.6390625, 47.496455 ], + [ 7.6391229, 47.4964555 ], + [ 7.6392047, 47.4964566 ], + [ 7.6392863, 47.4964612 ], + [ 7.6393705, 47.4964666 ], + [ 7.6394534, 47.4964774 ], + [ 7.6396482, 47.4965205 ], + [ 7.6399498999999995, 47.4965864 ], + [ 7.6401188, 47.4966197 ], + [ 7.6402889, 47.4966498 ], + [ 7.6404903, 47.4966937 ], + [ 7.6406905, 47.4967401 ], + [ 7.6407828, 47.4967647 ], + [ 7.6408713, 47.4967949 ], + [ 7.6409555000000005, 47.4968304 ], + [ 7.6410346, 47.496871 ], + [ 7.6413644, 47.497058 ], + [ 7.641564, 47.4971702 ], + [ 7.6417644, 47.4972817 ], + [ 7.6418684, 47.4973332 ], + [ 7.6419744, 47.4973827 ], + [ 7.6420047, 47.497395 ], + [ 7.6420365, 47.4974057 ], + [ 7.6423097, 47.4974872 ], + [ 7.6426113, 47.4975669 ], + [ 7.6428955, 47.4976445 ], + [ 7.6431176, 47.4977094 ], + [ 7.6439743, 47.4964795 ], + [ 7.643861, 47.4964407 ], + [ 7.6437425999999995, 47.4964103 ], + [ 7.6436128, 47.4963778 ], + [ 7.6435235, 47.496351 ], + [ 7.643437, 47.4963199 ], + [ 7.6433507, 47.4962869 ], + [ 7.6432698, 47.4962539 ], + [ 7.6430931, 47.496178 ], + [ 7.6429871, 47.4961406 ], + [ 7.6429186, 47.4961082 ], + [ 7.6428547, 47.4960732 ], + [ 7.6427935, 47.4960369 ], + [ 7.642598, 47.4959078 ], + [ 7.6425034, 47.4958474 ], + [ 7.6424095, 47.4957894 ], + [ 7.6423117, 47.4957325 ], + [ 7.6422471, 47.4957 ], + [ 7.6421791, 47.4956701 ], + [ 7.6421078, 47.495644 ], + [ 7.6420361, 47.4956215 ], + [ 7.6419377, 47.4955949 ], + [ 7.6418349, 47.4955713 ], + [ 7.6417322, 47.4955524 ], + [ 7.6414534, 47.4955052 ], + [ 7.6410867, 47.4954464 ], + [ 7.6409427, 47.4954234 ], + [ 7.6407014, 47.4954108 ], + [ 7.6406647, 47.4954099 ], + [ 7.6406281, 47.4954114 ], + [ 7.6405918, 47.4954152 ], + [ 7.6405563, 47.4954214 ], + [ 7.6404291, 47.4954431 ], + [ 7.6403879, 47.4954469 ], + [ 7.6403463, 47.4954474 ], + [ 7.6403049, 47.4954445 ], + [ 7.6402643, 47.4954384 ], + [ 7.6402251, 47.495429 ], + [ 7.6401878, 47.4954165 ], + [ 7.6397167, 47.4951726 ], + [ 7.6396142000000005, 47.4951433 ], + [ 7.6386996, 47.494865 ], + [ 7.6383999, 47.4947665 ], + [ 7.6381735, 47.4946919 ], + [ 7.6380623, 47.4946656 ], + [ 7.6372186, 47.4943352 ], + [ 7.6369136, 47.4942181 ], + [ 7.6367594, 47.4941597 ], + [ 7.6367104999999995, 47.4941467 ], + [ 7.6364827, 47.49404 ], + [ 7.6362623, 47.4939007 ], + [ 7.635724, 47.493525 ], + [ 7.635474, 47.4933229 ], + [ 7.6352741, 47.4932142 ], + [ 7.634824, 47.4929969 ], + [ 7.6334976, 47.4925306 ], + [ 7.633214, 47.4924463 ], + [ 7.6322943, 47.4922199 ], + [ 7.6317926, 47.4921373 ], + [ 7.6314992, 47.49211 ], + [ 7.631341, 47.4921151 ], + [ 7.6312304, 47.4921585 ], + [ 7.6308927, 47.4924029 ], + [ 7.6305177, 47.4925994 ], + [ 7.6302848999999995, 47.4926965 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr115", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Gstüd", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Gstüd", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Gstüd", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Gstüd", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4156157, 47.4064078 ], + [ 7.4158615, 47.4062416 ], + [ 7.4170188, 47.4059758 ], + [ 7.4170396, 47.4059709 ], + [ 7.4183578, 47.4058867 ], + [ 7.4184024, 47.4054851 ], + [ 7.4184289, 47.4054159 ], + [ 7.4184664, 47.4053178 ], + [ 7.4184746, 47.4052961 ], + [ 7.4185166, 47.4051863 ], + [ 7.4192976999999996, 47.4048794 ], + [ 7.4195001, 47.4047999 ], + [ 7.4200633, 47.40463 ], + [ 7.4201363, 47.4045523 ], + [ 7.4201706, 47.4045158 ], + [ 7.4201828, 47.4044816 ], + [ 7.4202851, 47.4044611 ], + [ 7.4203685, 47.4044456 ], + [ 7.4204004999999995, 47.4044324 ], + [ 7.4204075, 47.4044125 ], + [ 7.4203983000000004, 47.4043923 ], + [ 7.4203855, 47.4043814 ], + [ 7.4202525999999995, 47.4043827 ], + [ 7.4199969, 47.4043833 ], + [ 7.4197604, 47.40438 ], + [ 7.4195906, 47.4043722 ], + [ 7.419546, 47.4044169 ], + [ 7.4194698, 47.4044461 ], + [ 7.4193704, 47.4044551 ], + [ 7.4192644, 47.4044191 ], + [ 7.4190425, 47.404473 ], + [ 7.4189034, 47.4044617 ], + [ 7.418804, 47.404473 ], + [ 7.4185656, 47.4044504 ], + [ 7.4185159, 47.404347 ], + [ 7.4184928, 47.4042773 ], + [ 7.4185165, 47.4042471 ], + [ 7.4183835, 47.404221 ], + [ 7.4183173, 47.404212 ], + [ 7.4182643, 47.404203 ], + [ 7.4181779, 47.404195 ], + [ 7.4180722, 47.4041895 ], + [ 7.4179861, 47.4041895 ], + [ 7.417847, 47.4041984 ], + [ 7.4176547, 47.4042205 ], + [ 7.4173301, 47.4042658 ], + [ 7.4165618, 47.4043826 ], + [ 7.4163697, 47.404405 ], + [ 7.4161114, 47.404432 ], + [ 7.4159855, 47.4044499 ], + [ 7.4158928, 47.4044679 ], + [ 7.415747, 47.4044993 ], + [ 7.415588, 47.4045398 ], + [ 7.4152634, 47.4046297 ], + [ 7.4149325, 47.4047295 ], + [ 7.4148602, 47.4047533 ], + [ 7.4148601, 47.4047603 ], + [ 7.4148594, 47.4048023 ], + [ 7.4147779, 47.4048998 ], + [ 7.4146998, 47.4050224 ], + [ 7.4146281, 47.4052005 ], + [ 7.4146082, 47.4052858 ], + [ 7.4145666, 47.4054428 ], + [ 7.4145632, 47.4056356 ], + [ 7.4143978, 47.4056554 ], + [ 7.414303, 47.4056611 ], + [ 7.414144, 47.4056708 ], + [ 7.4137834, 47.4057233 ], + [ 7.4133148, 47.4058097 ], + [ 7.4128298, 47.4058991 ], + [ 7.4124024, 47.4059899 ], + [ 7.4124474, 47.4061107 ], + [ 7.4124519, 47.4061227 ], + [ 7.4124586, 47.4061323 ], + [ 7.4125383, 47.4062466 ], + [ 7.4126294999999995, 47.406388 ], + [ 7.4127463, 47.4065482 ], + [ 7.4128372, 47.4067041 ], + [ 7.4129918, 47.4067059 ], + [ 7.4130887, 47.4067047 ], + [ 7.4132754, 47.4067059 ], + [ 7.4133445, 47.4066934 ], + [ 7.4134282, 47.4066828 ], + [ 7.4135328, 47.406653 ], + [ 7.4136342, 47.406617 ], + [ 7.4137445, 47.4065866 ], + [ 7.4137786, 47.4065736 ], + [ 7.4138935, 47.4065431 ], + [ 7.4139897, 47.4065216 ], + [ 7.4140425, 47.4065078 ], + [ 7.4141101, 47.406478 ], + [ 7.4141405, 47.4064623 ], + [ 7.4142054, 47.4064491 ], + [ 7.4143832, 47.4064014 ], + [ 7.4143891, 47.4064164 ], + [ 7.4153888, 47.4064228 ], + [ 7.4153986, 47.4064229 ], + [ 7.4154031, 47.4064217 ], + [ 7.4155905, 47.4064233 ], + [ 7.4156157, 47.4064078 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns121", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Erhollen - Chlummen", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Erhollen - Chlummen", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Erhollen - Chlummen", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Erhollen - Chlummen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4777173, 46.8875553 ], + [ 7.4777847, 46.8877013 ], + [ 7.4779301, 46.8879334 ], + [ 7.478805, 46.8878303 ], + [ 7.4789281, 46.887344 ], + [ 7.4789578, 46.8866932 ], + [ 7.4802795, 46.8865692 ], + [ 7.480308, 46.8859843 ], + [ 7.4803138, 46.8859127 ], + [ 7.4797366, 46.8859619 ], + [ 7.4789568, 46.8859021 ], + [ 7.478952, 46.8857843 ], + [ 7.4788869, 46.885702 ], + [ 7.4788349, 46.8857083 ], + [ 7.4783988, 46.8857614 ], + [ 7.4777398999999996, 46.8858426 ], + [ 7.4776958, 46.8862016 ], + [ 7.4776875, 46.886267 ], + [ 7.477437, 46.886303 ], + [ 7.4773376, 46.8863173 ], + [ 7.4774899, 46.8868798 ], + [ 7.477619, 46.887346 ], + [ 7.4777173, 46.8875553 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VBS_25", + "country" : "CHE", + "name" : [ + { + "text" : "VBS_25 Zimmerwald", + "lang" : "de-CH" + }, + { + "text" : "VBS_25 Zimmerwald", + "lang" : "fr-CH" + }, + { + "text" : "VBS_25 Zimmerwald", + "lang" : "it-CH" + }, + { + "text" : "VBS_25 Zimmerwald", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "regulationExemption" : "YES", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Eidgenössisches Departement für Verteidigung, Bevölkerungsschutz und Sport (VBS)", + "lang" : "de-CH" + }, + { + "text" : "Département fédéral de la défense, de la protection de la population et des sports (DDPS)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento federale della difesa, della protezione della popolazione e dello sport (DDPS)", + "lang" : "it-CH" + }, + { + "text" : "Federal Department of Defence, Civil Protection and Sport (DDPS)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Lageverfolgungszentrum der Armee LVZ A", + "lang" : "de-CH" + }, + { + "text" : "Centre de suivi de la situation de l’armée, CSS A", + "lang" : "fr-CH" + }, + { + "text" : "Centro di monitoraggio della situazione dell’esercito, Centro mon sit Es", + "lang" : "it-CH" + }, + { + "text" : "Joint Operation Center, JOC", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vtg.admin.ch/en/joint-operations-command", + "email" : "lvz.op@vtg.admin.ch", + "phone" : "+41 58 464 96 43", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6048129, 47.5070843 ], + [ 7.6048241, 47.5070932 ], + [ 7.6051763999999995, 47.5077823 ], + [ 7.6055387, 47.5083588 ], + [ 7.6060721000000004, 47.5087986 ], + [ 7.6064924, 47.5089552 ], + [ 7.6065479, 47.5089966 ], + [ 7.6065806, 47.5089884 ], + [ 7.6066172, 47.5089785 ], + [ 7.6066534, 47.5089681 ], + [ 7.6066893, 47.5089572 ], + [ 7.6067241, 47.5089459 ], + [ 7.6067585, 47.5089341 ], + [ 7.6067925, 47.5089218 ], + [ 7.606826, 47.5089089 ], + [ 7.606837, 47.5089217 ], + [ 7.6068812999999995, 47.5089036 ], + [ 7.6069252, 47.508885 ], + [ 7.6069687, 47.5088659 ], + [ 7.6070116, 47.5088463 ], + [ 7.6070541, 47.5088262 ], + [ 7.607096, 47.5088057 ], + [ 7.6071299, 47.5087884 ], + [ 7.6071635, 47.5087709 ], + [ 7.6071967, 47.508753 ], + [ 7.6072295, 47.5087348 ], + [ 7.607262, 47.5087163 ], + [ 7.6072941, 47.5086975 ], + [ 7.6073257, 47.5086784 ], + [ 7.607357, 47.508659 ], + [ 7.6073965, 47.5086326 ], + [ 7.6074353, 47.5086058 ], + [ 7.6074734, 47.5085785 ], + [ 7.6075107, 47.5085508 ], + [ 7.6075473, 47.5085226 ], + [ 7.6075832, 47.5084939 ], + [ 7.6076176, 47.5084653 ], + [ 7.6076513, 47.5084363 ], + [ 7.6076843, 47.5084069 ], + [ 7.6077164, 47.5083771 ], + [ 7.6077478, 47.5083469 ], + [ 7.6077783, 47.5083164 ], + [ 7.607799, 47.5082948 ], + [ 7.6078192, 47.5082731 ], + [ 7.6078389, 47.5082511 ], + [ 7.607858, 47.5082289 ], + [ 7.6078719, 47.5082115 ], + [ 7.6078505, 47.5081844 ], + [ 7.6077983, 47.5081276 ], + [ 7.6077821, 47.5080625 ], + [ 7.607714, 47.5080193 ], + [ 7.6075659, 47.5079843 ], + [ 7.6073899, 47.5079683 ], + [ 7.6072578, 47.5079278 ], + [ 7.6072498, 47.5079278 ], + [ 7.6071656, 47.5078521 ], + [ 7.6070092, 47.5077087 ], + [ 7.6067966, 47.5075193 ], + [ 7.6066402, 47.5073976 ], + [ 7.6065119, 47.5072758 ], + [ 7.6064277, 47.5072272 ], + [ 7.6061837, 47.5071923 ], + [ 7.6057835, 47.5071089 ], + [ 7.6054953, 47.5070443 ], + [ 7.6053752, 47.5069984 ], + [ 7.6052389, 47.5068793 ], + [ 7.6050867, 47.5067956 ], + [ 7.6049344, 47.5067036 ], + [ 7.6048662, 47.5066441 ], + [ 7.6047218, 47.5064899 ], + [ 7.6046737, 47.5064547 ], + [ 7.6045977, 47.5064467 ], + [ 7.6045298, 47.5064847 ], + [ 7.60449, 47.5065498 ], + [ 7.6044903999999995, 47.5066636 ], + [ 7.6045347, 47.5067801 ], + [ 7.604599, 47.5068911 ], + [ 7.6048129, 47.5070843 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr070", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Wissgrien", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Wissgrien", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Wissgrien", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Wissgrien", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6770852, 47.3919985 ], + [ 7.6775893, 47.3918329 ], + [ 7.6776271, 47.3918388 ], + [ 7.6776525, 47.3918448 ], + [ 7.6776731, 47.3918512 ], + [ 7.6777198, 47.3918668 ], + [ 7.6778031, 47.3918947 ], + [ 7.6779188, 47.3919335 ], + [ 7.6779934999999995, 47.391962 ], + [ 7.6781267, 47.3920228 ], + [ 7.6782045, 47.3920559 ], + [ 7.6782895, 47.3920838 ], + [ 7.6784061999999995, 47.3921163 ], + [ 7.678557, 47.3921553 ], + [ 7.67873, 47.3921932 ], + [ 7.6789779, 47.3922398 ], + [ 7.6791254, 47.392265 ], + [ 7.6791806000000005, 47.3922741 ], + [ 7.6792178, 47.3922775 ], + [ 7.6792545, 47.392278 ], + [ 7.6792896, 47.3922761 ], + [ 7.6793567, 47.3922703 ], + [ 7.6794708, 47.3922609 ], + [ 7.6795539999999995, 47.392254 ], + [ 7.6795892, 47.3922538 ], + [ 7.6796267, 47.3922583 ], + [ 7.6796592, 47.3922665 ], + [ 7.6798573, 47.3923165 ], + [ 7.6799233000000005, 47.3923237 ], + [ 7.6801207, 47.3923219 ], + [ 7.6801974, 47.3923319 ], + [ 7.6802852, 47.3923518 ], + [ 7.6803625, 47.3923559 ], + [ 7.6804521, 47.3923543 ], + [ 7.6805151, 47.392358 ], + [ 7.6807668, 47.3923944 ], + [ 7.6808484, 47.3924016 ], + [ 7.6816075999999995, 47.3924203 ], + [ 7.6821651, 47.3923911 ], + [ 7.6825742, 47.3923525 ], + [ 7.6827007, 47.3923556 ], + [ 7.6830668, 47.3923379 ], + [ 7.6835093, 47.3923315 ], + [ 7.6837733, 47.3923394 ], + [ 7.6839655, 47.3923702 ], + [ 7.6841512, 47.3924198 ], + [ 7.684299, 47.3923123 ], + [ 7.6845408, 47.392166 ], + [ 7.6849241, 47.3920632 ], + [ 7.6851443, 47.3920778 ], + [ 7.6851494, 47.3919468 ], + [ 7.6851969, 47.3914744 ], + [ 7.6851976, 47.3914361 ], + [ 7.6848689, 47.3913991 ], + [ 7.6840363, 47.3913111 ], + [ 7.683633, 47.3912913 ], + [ 7.6833316, 47.3912761 ], + [ 7.6830637, 47.3912363 ], + [ 7.6827597999999995, 47.3911262 ], + [ 7.6825553, 47.3910725 ], + [ 7.6823628, 47.3910419 ], + [ 7.6821879, 47.391032 ], + [ 7.6818907, 47.3910273 ], + [ 7.6819457, 47.3911353 ], + [ 7.6819102, 47.3911356 ], + [ 7.6817914, 47.3911339 ], + [ 7.6812237, 47.391197 ], + [ 7.6812316, 47.3912703 ], + [ 7.6803735, 47.3914136 ], + [ 7.6800748, 47.3914513 ], + [ 7.6795992, 47.3915231 ], + [ 7.6789195, 47.3915905 ], + [ 7.6786097, 47.3916144 ], + [ 7.67832, 47.39159 ], + [ 7.6780517, 47.3915675 ], + [ 7.678021, 47.3915649 ], + [ 7.6777401, 47.3915411 ], + [ 7.6775359, 47.3915238 ], + [ 7.6774418, 47.3915482 ], + [ 7.6771934, 47.3916129 ], + [ 7.6770493, 47.39163 ], + [ 7.6769704999999995, 47.3916566 ], + [ 7.6769028, 47.3916798 ], + [ 7.6768864, 47.3916798 ], + [ 7.6766961, 47.3916843 ], + [ 7.6767703, 47.3917576 ], + [ 7.6770402, 47.3919603 ], + [ 7.6770852, 47.3919985 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns240", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Deixberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Deixberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Deixberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Deixberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.825185, 47.3935337 ], + [ 7.8239019, 47.39419 ], + [ 7.8239146999999996, 47.3942886 ], + [ 7.8239322, 47.3946464 ], + [ 7.8239936, 47.3948905 ], + [ 7.8241922, 47.3949478 ], + [ 7.8242522999999995, 47.3949007 ], + [ 7.8243443, 47.3949298 ], + [ 7.8245819, 47.3950584 ], + [ 7.8248631, 47.3952295 ], + [ 7.825124, 47.3953877 ], + [ 7.8252763, 47.3954833 ], + [ 7.8255225, 47.39559 ], + [ 7.8255979, 47.3956237 ], + [ 7.8262854, 47.3955181 ], + [ 7.8262194, 47.3954192 ], + [ 7.8259537, 47.3950786 ], + [ 7.8259565, 47.394586 ], + [ 7.8259902, 47.394413 ], + [ 7.8261971, 47.3941544 ], + [ 7.8263481, 47.3940135 ], + [ 7.8264195999999995, 47.3938921 ], + [ 7.8269793, 47.393744 ], + [ 7.8270509, 47.3937967 ], + [ 7.8270707999999996, 47.3937913 ], + [ 7.8275868, 47.3936363 ], + [ 7.827727, 47.3935947 ], + [ 7.8279025, 47.3934964 ], + [ 7.8280132, 47.3934055 ], + [ 7.8280353, 47.3933873 ], + [ 7.828063, 47.3933645 ], + [ 7.8281206999999995, 47.3933102 ], + [ 7.8282209, 47.3932115 ], + [ 7.8284357, 47.393178 ], + [ 7.828574, 47.3930847 ], + [ 7.8288539, 47.3931951 ], + [ 7.8291143, 47.3933008 ], + [ 7.8292117999999995, 47.393356 ], + [ 7.82924, 47.3933778 ], + [ 7.8292616, 47.3933806 ], + [ 7.8293089, 47.3933702 ], + [ 7.8294234, 47.3932722 ], + [ 7.8296971, 47.3930383 ], + [ 7.8298852, 47.3929248 ], + [ 7.8300935, 47.3927273 ], + [ 7.8301471, 47.3926812 ], + [ 7.8301745, 47.3926607 ], + [ 7.8302824, 47.392578 ], + [ 7.8303754, 47.3924385 ], + [ 7.830501, 47.3924495 ], + [ 7.8307794, 47.3923191 ], + [ 7.8309794, 47.392416 ], + [ 7.831309, 47.3925442 ], + [ 7.83151, 47.3926985 ], + [ 7.8315944, 47.3927645 ], + [ 7.831859, 47.392739399999996 ], + [ 7.8324902, 47.3924041 ], + [ 7.8323669, 47.3920227 ], + [ 7.8326759, 47.3917729 ], + [ 7.8330128, 47.3919435 ], + [ 7.8331542, 47.3919531 ], + [ 7.8334073, 47.3921925 ], + [ 7.8337665, 47.3922764 ], + [ 7.8338485, 47.3923413 ], + [ 7.8341158, 47.3924133 ], + [ 7.834164, 47.392428699999996 ], + [ 7.8344531, 47.3925458 ], + [ 7.8345229, 47.3925924 ], + [ 7.8345678, 47.3925724 ], + [ 7.8358038, 47.3920145 ], + [ 7.8358185, 47.3919591 ], + [ 7.8355505999999995, 47.3919395 ], + [ 7.8352369, 47.3918796 ], + [ 7.8350025, 47.3917184 ], + [ 7.8346987, 47.391579 ], + [ 7.8343631, 47.3914734 ], + [ 7.8339302, 47.3913803 ], + [ 7.8335908, 47.3912288 ], + [ 7.8328282, 47.3910855 ], + [ 7.8323903999999995, 47.3910664 ], + [ 7.8321205, 47.3910267 ], + [ 7.832105, 47.3910619 ], + [ 7.831887, 47.3910185 ], + [ 7.8315521, 47.3909512 ], + [ 7.8310692, 47.390674 ], + [ 7.8309908, 47.3907254 ], + [ 7.830501, 47.3910464 ], + [ 7.8302338, 47.3913028 ], + [ 7.8300256, 47.3914508 ], + [ 7.8297827, 47.3916215 ], + [ 7.8295459, 47.3918316 ], + [ 7.8288913, 47.3923491 ], + [ 7.8285983, 47.3923218 ], + [ 7.828328, 47.392244 ], + [ 7.8283114, 47.3922516 ], + [ 7.8283005, 47.3922481 ], + [ 7.8282839, 47.3922422 ], + [ 7.8282678, 47.3922358 ], + [ 7.8282521, 47.3922289 ], + [ 7.828221, 47.3922132 ], + [ 7.8281988, 47.3922006 ], + [ 7.8281895, 47.3921944 ], + [ 7.8281796, 47.3921887 ], + [ 7.8281692, 47.3921834 ], + [ 7.8281583999999995, 47.3921785 ], + [ 7.8281472, 47.3921741 ], + [ 7.8281355999999995, 47.3921701 ], + [ 7.8281236, 47.3921667 ], + [ 7.828006, 47.3921453 ], + [ 7.8278345, 47.3921163 ], + [ 7.8277134, 47.3920965 ], + [ 7.8275615, 47.3920734 ], + [ 7.8274292, 47.3920531 ], + [ 7.8270772, 47.3919973 ], + [ 7.8267602, 47.3919479 ], + [ 7.8266822, 47.3919332 ], + [ 7.8265188, 47.3918923 ], + [ 7.8264028, 47.3918616 ], + [ 7.8263561, 47.3918526 ], + [ 7.8260133, 47.3917566 ], + [ 7.8253886999999995, 47.3919392 ], + [ 7.8250454, 47.3916817 ], + [ 7.8248949, 47.3917285 ], + [ 7.8249277, 47.3917633 ], + [ 7.8250974, 47.3919438 ], + [ 7.8251948, 47.3922459 ], + [ 7.8252684, 47.3923219 ], + [ 7.8254038999999995, 47.3923003 ], + [ 7.8255344000000004, 47.3924533 ], + [ 7.8256937, 47.3925014 ], + [ 7.8257705, 47.3925719 ], + [ 7.8258159, 47.3927408 ], + [ 7.8258623, 47.3927666 ], + [ 7.8258683, 47.392936399999996 ], + [ 7.8259301, 47.3929791 ], + [ 7.8262488999999995, 47.3929614 ], + [ 7.8264249, 47.3929746 ], + [ 7.82663, 47.3929885 ], + [ 7.8265607, 47.3930614 ], + [ 7.8264127, 47.3931867 ], + [ 7.8263915, 47.3932012 ], + [ 7.8263568, 47.3932197 ], + [ 7.8262951, 47.3932514 ], + [ 7.8262595, 47.3932664 ], + [ 7.8261709, 47.3932955 ], + [ 7.8261047, 47.3933189 ], + [ 7.8257493, 47.3934361 ], + [ 7.8254615, 47.3935313 ], + [ 7.8254204, 47.3935411 ], + [ 7.8254071, 47.3935449 ], + [ 7.8253924999999995, 47.393548 ], + [ 7.8253781, 47.3935505 ], + [ 7.8253634, 47.3935525 ], + [ 7.8253487, 47.3935538 ], + [ 7.8253338, 47.3935544 ], + [ 7.825319, 47.3935545 ], + [ 7.8253041, 47.3935539 ], + [ 7.8252893, 47.3935527 ], + [ 7.8252747, 47.3935509 ], + [ 7.8252603, 47.3935484 ], + [ 7.825185, 47.3935337 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns044", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Schanz - Walten", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Schanz - Walten", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Schanz - Walten", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Schanz - Walten", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.0599927, 46.6426866 ], + [ 7.060442, 46.6431571 ], + [ 7.0626799, 46.6421679 ], + [ 7.0643779, 46.6407536 ], + [ 7.0622962, 46.6399711 ], + [ 7.0619313, 46.6397885 ], + [ 7.0617288, 46.6395561 ], + [ 7.0611949, 46.6381311 ], + [ 7.0551946, 46.641472 ], + [ 7.0572131, 46.643482 ], + [ 7.057791, 46.643282 ], + [ 7.0590745, 46.6428057 ], + [ 7.0599927, 46.6426866 ] + ] + ], + "layer" : { + "upper" : 300, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "FR009", + "country" : "CHE", + "name" : [ + { + "text" : "HFR Riaz", + "lang" : "de-CH" + }, + { + "text" : "HFR Riaz", + "lang" : "fr-CH" + }, + { + "text" : "HFR Riaz", + "lang" : "it-CH" + }, + { + "text" : "HFR Riaz", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Freiburger Spital (HFR)", + "lang" : "de-CH" + }, + { + "text" : "Hôpital fribourgeois (HFR)", + "lang" : "fr-CH" + }, + { + "text" : "Hôpital fribourgeois (HFR)", + "lang" : "it-CH" + }, + { + "text" : "Hôpital fribourgeois (HFR)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Die Generaldirektion", + "lang" : "de-CH" + }, + { + "text" : "La direction générale", + "lang" : "fr-CH" + }, + { + "text" : "La direction générale", + "lang" : "it-CH" + }, + { + "text" : "La direction générale", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Sébastien Ruffieux, secrétaire général", + "lang" : "de-CH" + }, + { + "text" : "Sébastien Ruffieux, secrétaire général", + "lang" : "fr-CH" + }, + { + "text" : "Sébastien Ruffieux, secrétaire général", + "lang" : "it-CH" + }, + { + "text" : "Sébastien Ruffieux, secrétaire général", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.fr.ch/police-et-securite/criminalite-ordre-public-et-circulation/drones-legislation-et-demandes-de-derogation", + "email" : "sg@h-fr.ch", + "phone" : "0041263060110", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.0749698, 47.419694 ], + [ 7.0749653, 47.4195528 ], + [ 7.07495, 47.4194119 ], + [ 7.0749238, 47.4192718 ], + [ 7.0748868, 47.4191328 ], + [ 7.0748391, 47.4189952 ], + [ 7.0747809, 47.4188596 ], + [ 7.0747124, 47.4187262 ], + [ 7.0746336, 47.4185955 ], + [ 7.0745449, 47.4184677 ], + [ 7.0744464, 47.4183432 ], + [ 7.0743385, 47.4182225 ], + [ 7.0742214, 47.4181057 ], + [ 7.0740955, 47.4179932 ], + [ 7.073961, 47.4178854 ], + [ 7.0738185, 47.4177824 ], + [ 7.0736682, 47.4176847 ], + [ 7.0735105, 47.4175925 ], + [ 7.073346, 47.417506 ], + [ 7.073175, 47.4174254 ], + [ 7.0729981, 47.417351 ], + [ 7.0728157, 47.417283 ], + [ 7.0726282, 47.4172216 ], + [ 7.0724363, 47.417167 ], + [ 7.0722404, 47.4171192 ], + [ 7.0720412, 47.4170784 ], + [ 7.071839, 47.4170448 ], + [ 7.0716345, 47.4170184 ], + [ 7.0714283, 47.4169993 ], + [ 7.0712209, 47.4169875 ], + [ 7.0710129, 47.4169831 ], + [ 7.0708048, 47.4169862 ], + [ 7.0705972, 47.4169966 ], + [ 7.0703908, 47.4170143 ], + [ 7.0701859, 47.4170394 ], + [ 7.0699833, 47.4170717 ], + [ 7.0697835, 47.4171112 ], + [ 7.069587, 47.4171577 ], + [ 7.0693943, 47.4172111 ], + [ 7.0692061, 47.4172713 ], + [ 7.0690227, 47.4173382 ], + [ 7.0688447, 47.4174114 ], + [ 7.0686726, 47.4174908 ], + [ 7.0685069, 47.4175763 ], + [ 7.068348, 47.4176675 ], + [ 7.0681964, 47.4177643 ], + [ 7.0680524, 47.4178663 ], + [ 7.0679165, 47.4179733 ], + [ 7.067789, 47.4180849 ], + [ 7.0676703, 47.4182009 ], + [ 7.0675607, 47.418321 ], + [ 7.0674605, 47.4184449 ], + [ 7.0673701, 47.4185721 ], + [ 7.0672895, 47.4187023 ], + [ 7.0672191, 47.4188353 ], + [ 7.067159, 47.4189705 ], + [ 7.0671095, 47.4191077 ], + [ 7.0670706, 47.4192465 ], + [ 7.0670425, 47.4193865 ], + [ 7.0670252, 47.4195273 ], + [ 7.0670187, 47.4196685 ], + [ 7.0670232, 47.4198097 ], + [ 7.0670385, 47.4199506 ], + [ 7.0670647, 47.4200907 ], + [ 7.0671017, 47.4202297 ], + [ 7.0671493, 47.4203672 ], + [ 7.0672075, 47.4205028 ], + [ 7.067276, 47.4206362 ], + [ 7.0673548, 47.420767 ], + [ 7.0674435, 47.4208948 ], + [ 7.0675419, 47.4210192 ], + [ 7.0676499, 47.42114 ], + [ 7.0677669, 47.4212568 ], + [ 7.0678929, 47.4213693 ], + [ 7.0680273, 47.4214772 ], + [ 7.0681699, 47.4215801 ], + [ 7.0683202, 47.4216778 ], + [ 7.0684778, 47.4217701 ], + [ 7.0686424, 47.4218566 ], + [ 7.0688133, 47.4219372 ], + [ 7.0689903, 47.422011499999996 ], + [ 7.0691728, 47.4220795 ], + [ 7.0693602, 47.422141 ], + [ 7.0695521, 47.4221956 ], + [ 7.069748, 47.4222434 ], + [ 7.0699473, 47.4222842 ], + [ 7.0701495, 47.4223178 ], + [ 7.070354, 47.4223442 ], + [ 7.0705602, 47.4223633 ], + [ 7.0707676, 47.4223751 ], + [ 7.0709757, 47.4223794 ], + [ 7.0711838, 47.4223764 ], + [ 7.0713913999999995, 47.422366 ], + [ 7.0715979, 47.4223482 ], + [ 7.0718027, 47.4223231 ], + [ 7.0720053, 47.4222908 ], + [ 7.0722052, 47.4222513 ], + [ 7.0724017, 47.4222048 ], + [ 7.0725944, 47.4221514 ], + [ 7.0727827, 47.4220911 ], + [ 7.0729661, 47.4220243 ], + [ 7.073144, 47.4219511 ], + [ 7.0733160999999996, 47.4218716 ], + [ 7.0734818, 47.4217862 ], + [ 7.0736407, 47.4216949 ], + [ 7.0737924, 47.4215982 ], + [ 7.0739363, 47.4214962 ], + [ 7.0740723, 47.4213892 ], + [ 7.0741997, 47.4212775 ], + [ 7.0743184, 47.4211615 ], + [ 7.074428, 47.4210414 ], + [ 7.0745282, 47.4209175 ], + [ 7.0746186, 47.4207903 ], + [ 7.0746992, 47.4206601 ], + [ 7.0747696, 47.4205271 ], + [ 7.0748296, 47.4203919 ], + [ 7.0748791, 47.4202547 ], + [ 7.074918, 47.4201159 ], + [ 7.0749461, 47.419976 ], + [ 7.0749634, 47.4198352 ], + [ 7.0749698, 47.419694 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "MPO0001", + "country" : "CHE", + "name" : [ + { + "text" : "Prison de Porrentruy, l'Orangerie", + "lang" : "de-CH" + }, + { + "text" : "Prison de Porrentruy, l'Orangerie", + "lang" : "fr-CH" + }, + { + "text" : "Prison de Porrentruy, l'Orangerie", + "lang" : "it-CH" + }, + { + "text" : "Prison de Porrentruy, l'Orangerie", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Service juridique", + "lang" : "de-CH" + }, + { + "text" : "Service juridique", + "lang" : "fr-CH" + }, + { + "text" : "Service juridique", + "lang" : "it-CH" + }, + { + "text" : "Service juridique", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Service juridique", + "lang" : "de-CH" + }, + { + "text" : "Service juridique", + "lang" : "fr-CH" + }, + { + "text" : "Service juridique", + "lang" : "it-CH" + }, + { + "text" : "Service juridique", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.jura.ch/fr/Autorites/Administration/DIN/JUR/Prison-de-Porrentruy/Prison-de-Porrentruy.html", + "email" : "secr.jur@jura.ch", + "phone" : "0041324205630", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4937142, 47.4412498 ], + [ 7.4937248, 47.4412433 ], + [ 7.4937501, 47.4412304 ], + [ 7.4938999, 47.4411501 ], + [ 7.4938974, 47.4411425 ], + [ 7.4936179, 47.4406883 ], + [ 7.4939897, 47.4404812 ], + [ 7.4941332, 47.440242 ], + [ 7.4942009, 47.4401269 ], + [ 7.4945141, 47.4401063 ], + [ 7.4951082, 47.4402157 ], + [ 7.4955878, 47.4402695 ], + [ 7.4956800999999995, 47.440262 ], + [ 7.495955, 47.4402397 ], + [ 7.4960695, 47.4402305 ], + [ 7.4961827, 47.4402203 ], + [ 7.4962057, 47.440174 ], + [ 7.4961842, 47.4401566 ], + [ 7.4961603, 47.4401177 ], + [ 7.4961881, 47.4400527 ], + [ 7.4962546, 47.4399752 ], + [ 7.4963342, 47.4398745 ], + [ 7.4963812, 47.4397489 ], + [ 7.4963922, 47.439614 ], + [ 7.4963524, 47.4395164 ], + [ 7.4961749, 47.4393995 ], + [ 7.4960131, 47.4392548 ], + [ 7.4958679, 47.4390669 ], + [ 7.4959497, 47.4389532 ], + [ 7.495819, 47.4388274 ], + [ 7.4957501, 47.438884 ], + [ 7.4955878, 47.4389889 ], + [ 7.4954347, 47.4390632 ], + [ 7.49537, 47.4390678 ], + [ 7.4951433, 47.4391304 ], + [ 7.4948173, 47.4392607 ], + [ 7.494587, 47.439011 ], + [ 7.4944796, 47.4388512 ], + [ 7.4942984, 47.4387775 ], + [ 7.4942391, 47.4386765 ], + [ 7.4943073, 47.4386333 ], + [ 7.4944498, 47.4385057 ], + [ 7.4944818, 47.4384206 ], + [ 7.4945661999999995, 47.4383729 ], + [ 7.4946528, 47.4383074 ], + [ 7.4947822, 47.4381882 ], + [ 7.4949037, 47.4380649 ], + [ 7.4949062, 47.4379974 ], + [ 7.4949213, 47.4379348 ], + [ 7.4949683, 47.437847 ], + [ 7.4949826, 47.437764 ], + [ 7.4950699, 47.4376484 ], + [ 7.4951765, 47.4375139 ], + [ 7.495255, 47.4373749 ], + [ 7.4954149, 47.437228 ], + [ 7.4955109, 47.4370713 ], + [ 7.4956713, 47.4369191 ], + [ 7.4957842, 47.4368112 ], + [ 7.4959112, 47.4366974 ], + [ 7.4960223, 47.4365983 ], + [ 7.4961013, 47.4365153 ], + [ 7.4961453, 47.4364709 ], + [ 7.4959982, 47.4363762 ], + [ 7.4959369, 47.4364203 ], + [ 7.4957426, 47.436552 ], + [ 7.4955455, 47.4366728 ], + [ 7.4953745, 47.4367606 ], + [ 7.4950593, 47.4369101 ], + [ 7.4947182, 47.4370684 ], + [ 7.4943338, 47.4372635 ], + [ 7.494053, 47.4374297 ], + [ 7.4939504, 47.43749 ], + [ 7.4937843, 47.4375837 ], + [ 7.4937451, 47.4376033 ], + [ 7.4934896, 47.4377307 ], + [ 7.493159, 47.4378502 ], + [ 7.4928001, 47.4379737 ], + [ 7.4924276, 47.4381084 ], + [ 7.4922045, 47.4381865 ], + [ 7.4922257, 47.4382435 ], + [ 7.4917822, 47.4383799 ], + [ 7.4914056, 47.4384591 ], + [ 7.491409, 47.4384734 ], + [ 7.4907783, 47.4386101 ], + [ 7.4906982, 47.4386039 ], + [ 7.4904989, 47.4386232 ], + [ 7.4901231, 47.4387135 ], + [ 7.4896622, 47.4387668 ], + [ 7.4892471, 47.4387904 ], + [ 7.4888038, 47.4388045 ], + [ 7.4884636, 47.438808 ], + [ 7.48833, 47.4388084 ], + [ 7.488341, 47.4388341 ], + [ 7.4883896, 47.4388915 ], + [ 7.4884543, 47.4389724 ], + [ 7.4885071, 47.4390827 ], + [ 7.4884705, 47.4390899 ], + [ 7.4866026, 47.4395392 ], + [ 7.4853399, 47.4399123 ], + [ 7.4853414, 47.4400385 ], + [ 7.4853477999999996, 47.4403492 ], + [ 7.4853823, 47.4406751 ], + [ 7.4856535, 47.4406599 ], + [ 7.4858835, 47.4406361 ], + [ 7.4861426, 47.4405988 ], + [ 7.4861679, 47.4406444 ], + [ 7.4862329, 47.4406259 ], + [ 7.4863229, 47.4406003 ], + [ 7.486439, 47.4405712 ], + [ 7.4864828, 47.4405603 ], + [ 7.4865249, 47.4405465 ], + [ 7.4865649, 47.4405302 ], + [ 7.4865945, 47.4405156 ], + [ 7.4866224, 47.4404996 ], + [ 7.4866486, 47.4404822 ], + [ 7.4867468, 47.4404113 ], + [ 7.4868727, 47.4403299 ], + [ 7.487083, 47.4402463 ], + [ 7.4874335, 47.4401207 ], + [ 7.4878391, 47.4399685 ], + [ 7.4880007, 47.4399092 ], + [ 7.4882748, 47.4406707 ], + [ 7.4883216, 47.4406618 ], + [ 7.4884976, 47.440623 ], + [ 7.4888017, 47.4405767 ], + [ 7.4888115, 47.4405442 ], + [ 7.4887857, 47.4403919 ], + [ 7.4889426, 47.4403294 ], + [ 7.4892511, 47.4402173 ], + [ 7.4895262, 47.4401234 ], + [ 7.4898029, 47.4400668 ], + [ 7.4901171, 47.4399592 ], + [ 7.4901971, 47.4399786 ], + [ 7.4903171, 47.4399291 ], + [ 7.4904874, 47.4398362 ], + [ 7.490622, 47.4397919 ], + [ 7.4908935, 47.4397326 ], + [ 7.4911932, 47.439663 ], + [ 7.4914788, 47.439601 ], + [ 7.4917133, 47.4395715 ], + [ 7.4917625, 47.4395653 ], + [ 7.4920194, 47.4395505 ], + [ 7.4921848, 47.4394878 ], + [ 7.4922945, 47.4393876 ], + [ 7.4924335, 47.4393612 ], + [ 7.4926177, 47.4393667 ], + [ 7.492783, 47.4393853 ], + [ 7.4929987, 47.4394028 ], + [ 7.4932742, 47.4393823 ], + [ 7.4934278, 47.4393797 ], + [ 7.4934811, 47.4394074 ], + [ 7.493477, 47.4394562 ], + [ 7.4934024, 47.4395268 ], + [ 7.4933126, 47.4396101 ], + [ 7.4931723, 47.4397045 ], + [ 7.4930201, 47.4397849 ], + [ 7.4928013, 47.4398792 ], + [ 7.4925920999999995, 47.4400089 ], + [ 7.4923269, 47.4401103 ], + [ 7.4920153, 47.4401677 ], + [ 7.4918855, 47.4401996 ], + [ 7.4917841, 47.4401721 ], + [ 7.4917139, 47.4401747 ], + [ 7.4917242, 47.4403102 ], + [ 7.4918649, 47.4405152 ], + [ 7.4919597, 47.4406576 ], + [ 7.4919777, 47.4407651 ], + [ 7.4920764, 47.440804 ], + [ 7.4923528, 47.4408347 ], + [ 7.4926007, 47.44085 ], + [ 7.4928565, 47.4409079 ], + [ 7.4930448, 47.4409639 ], + [ 7.4933339, 47.4410436 ], + [ 7.4934941, 47.441168 ], + [ 7.4937153, 47.4412918 ], + [ 7.4937142, 47.4412498 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns015", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Hag", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Hag", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Hag", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Hag", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.1868662, 46.461894 ], + [ 7.1870539, 46.4619501 ], + [ 7.1871846999999995, 46.4619837 ], + [ 7.1873148, 46.461989 ], + [ 7.1874124, 46.4620001 ], + [ 7.1874939, 46.4619717 ], + [ 7.1876323, 46.4619602 ], + [ 7.1878357, 46.4619654 ], + [ 7.1880559, 46.4620158 ], + [ 7.1882191, 46.4620889 ], + [ 7.1883823, 46.4621675 ], + [ 7.188586, 46.4622798 ], + [ 7.1887824, 46.4623923 ], + [ 7.1889374, 46.4624767 ], + [ 7.18906, 46.4625329 ], + [ 7.1892307, 46.4625607 ], + [ 7.1893696, 46.4625999 ], + [ 7.1894508, 46.4626393 ], + [ 7.189614, 46.4627236 ], + [ 7.1897447, 46.4627798 ], + [ 7.1898584, 46.4628246 ], + [ 7.1900868, 46.4628806 ], + [ 7.1906411, 46.4630037 ], + [ 7.1909346, 46.4630538 ], + [ 7.1910242, 46.4630424 ], + [ 7.1910237, 46.4629746 ], + [ 7.1910241, 46.4628844 ], + [ 7.1909905, 46.4627603 ], + [ 7.1909251, 46.4626476 ], + [ 7.1908266, 46.462473 ], + [ 7.1907452, 46.4623095 ], + [ 7.190688, 46.4621911 ], + [ 7.1906464, 46.4620332 ], + [ 7.1906455, 46.461864 ], + [ 7.1906041, 46.4616609 ], + [ 7.190547, 46.461537 ], + [ 7.1904654, 46.4613905 ], + [ 7.1903913, 46.4612326 ], + [ 7.1903746, 46.4611536 ], + [ 7.1903663, 46.461007 ], + [ 7.1904062, 46.4608207 ], + [ 7.1904631, 46.4606513 ], + [ 7.1905439, 46.4604311 ], + [ 7.1906655, 46.4601713 ], + [ 7.1908759, 46.4598832 ], + [ 7.1910464, 46.4595952 ], + [ 7.1912085, 46.4593748 ], + [ 7.1914525, 46.4592051 ], + [ 7.1915496, 46.4591485 ], + [ 7.1915655, 46.4590469 ], + [ 7.1915246, 46.4589229 ], + [ 7.1915244, 46.4587875 ], + [ 7.1915241, 46.4586859 ], + [ 7.1915807, 46.4585673 ], + [ 7.1916619, 46.458426 ], + [ 7.191751, 46.4583357 ], + [ 7.1917996, 46.4582114 ], + [ 7.191783, 46.4581099 ], + [ 7.1919776, 46.4578951 ], + [ 7.1922548, 46.4579397 ], + [ 7.1923032, 46.4578381 ], + [ 7.1930126, 46.4580285 ], + [ 7.1932235, 46.4578024 ], + [ 7.1932887, 46.457774 ], + [ 7.1933447, 46.4576273 ], + [ 7.1933929, 46.4574184 ], + [ 7.1934000000000005, 46.4570912 ], + [ 7.1933753, 46.4568034 ], + [ 7.1933416, 46.4565102 ], + [ 7.1932923, 46.4562734 ], + [ 7.1932264, 46.4560873 ], + [ 7.1931691, 46.4559914 ], + [ 7.1932418, 46.4559235 ], + [ 7.1933557, 46.4559178 ], + [ 7.193568, 46.4559286 ], + [ 7.193804, 46.4559111 ], + [ 7.1939667, 46.4559109 ], + [ 7.1941213, 46.4558937 ], + [ 7.1942847, 46.4559328 ], + [ 7.1944147, 46.4559664 ], + [ 7.1945212, 46.4559887 ], + [ 7.1946513, 46.4559997 ], + [ 7.1948303, 46.4559825 ], + [ 7.1950012, 46.4559822 ], + [ 7.1951809, 46.4559931 ], + [ 7.1954004, 46.4560321 ], + [ 7.1956125, 46.4560712 ], + [ 7.1957922, 46.4561102 ], + [ 7.1959464, 46.456189 ], + [ 7.1961503, 46.4562393 ], + [ 7.19646, 46.4563065 ], + [ 7.1967372, 46.4563623 ], + [ 7.1969658, 46.4563618 ], + [ 7.1972262, 46.4563444 ], + [ 7.1977231, 46.4563828 ], + [ 7.1980815, 46.4564498 ], + [ 7.1983342, 46.4565169 ], + [ 7.1984725, 46.4565223 ], + [ 7.1985704, 46.4564601 ], + [ 7.1987898, 46.4563298 ], + [ 7.199124, 46.4563686 ], + [ 7.1994087, 46.456385 ], + [ 7.1994818, 46.4564017 ], + [ 7.1995068, 46.4564581 ], + [ 7.1995147, 46.4565033 ], + [ 7.1995069, 46.4566105 ], + [ 7.1994999, 46.456729 ], + [ 7.1994761, 46.4569603 ], + [ 7.1997288, 46.4570218 ], + [ 7.1997861, 46.4571289 ], + [ 7.2000221, 46.4571172 ], + [ 7.1999653, 46.4572639 ], + [ 7.2000878, 46.4573371 ], + [ 7.2003324, 46.4574042 ], + [ 7.2009847, 46.4576117 ], + [ 7.2011969, 46.4576508 ], + [ 7.2013916, 46.457588200000004 ], + [ 7.201636, 46.4575144 ], + [ 7.2018316, 46.4574407 ], + [ 7.2020429, 46.4573048 ], + [ 7.2021239, 46.4571804 ], + [ 7.2021474, 46.4570225 ], + [ 7.2021385, 46.456825 ], + [ 7.2021871, 46.4566782 ], + [ 7.2023575, 46.4564184 ], + [ 7.2024054, 46.4562603 ], + [ 7.2025189, 46.4561416 ], + [ 7.2025758, 46.4559722 ], + [ 7.2026157, 46.4557803 ], + [ 7.202623, 46.4555884 ], + [ 7.2026717, 46.4554304 ], + [ 7.2027686, 46.4552271 ], + [ 7.2028661, 46.4550577 ], + [ 7.2029221, 46.4549051 ], + [ 7.2028891999999995, 46.454798 ], + [ 7.2027912, 46.4547136 ], + [ 7.2026612, 46.4546575 ], + [ 7.2024979, 46.4546184 ], + [ 7.2021308, 46.4544893 ], + [ 7.2017156, 46.4543718 ], + [ 7.2013321, 46.4542766 ], + [ 7.2007533, 46.4541706 ], + [ 7.2004193, 46.4540923 ], + [ 7.2001667, 46.4540081 ], + [ 7.1999623, 46.4538844 ], + [ 7.1996856, 46.4537215 ], + [ 7.1993751, 46.4534795 ], + [ 7.1990646, 46.4532488 ], + [ 7.1987955, 46.4530238 ], + [ 7.1985013, 46.4527704 ], + [ 7.1982972, 46.4525734 ], + [ 7.1981086, 46.4523481 ], + [ 7.1979703, 46.4521735 ], + [ 7.1979041, 46.4520608 ], + [ 7.1978231, 46.451982 ], + [ 7.197725, 46.4519031 ], + [ 7.1976183, 46.4517567 ], + [ 7.1974873, 46.4515764 ], + [ 7.1973397, 46.4513003 ], + [ 7.1972336, 46.451024 ], + [ 7.1971508, 46.4507985 ], + [ 7.1971014, 46.4505617 ], + [ 7.1971089, 46.4503304 ], + [ 7.1971325, 46.4501497 ], + [ 7.1972377, 46.4499013 ], + [ 7.1973678, 46.4497374 ], + [ 7.1974732, 46.44963 ], + [ 7.1975048, 46.4494777 ], + [ 7.1974883, 46.4493423 ], + [ 7.1974313, 46.4491845 ], + [ 7.1973896, 46.4490322 ], + [ 7.1973399, 46.4488686 ], + [ 7.1973474, 46.4486543 ], + [ 7.1974285, 46.4485299 ], + [ 7.1975258, 46.4484056 ], + [ 7.1975012, 46.4482703 ], + [ 7.1974277, 46.4481463 ], + [ 7.1973868, 46.4480335 ], + [ 7.1972481, 46.4479379 ], + [ 7.1970598, 46.447848 ], + [ 7.1968399, 46.4477188 ], + [ 7.196693, 46.4476457 ], + [ 7.1965057, 46.4475164 ], + [ 7.1963095, 46.44737 ], + [ 7.1961628, 46.4472631 ], + [ 7.196081, 46.4471731 ], + [ 7.1960312, 46.4470434 ], + [ 7.1959661, 46.4468743 ], + [ 7.1958597, 46.4466544 ], + [ 7.1957775, 46.4464796 ], + [ 7.1957032, 46.4461808 ], + [ 7.1956376, 46.4459439 ], + [ 7.1956361, 46.4457184 ], + [ 7.1956602, 46.4455998 ], + [ 7.1957495, 46.4454642 ], + [ 7.1959284, 46.4452945 ], + [ 7.1960176, 46.4451816 ], + [ 7.1961311, 46.4450798 ], + [ 7.1961877, 46.4449669 ], + [ 7.1962118, 46.4448427 ], + [ 7.1962034, 46.4447354 ], + [ 7.1961378, 46.4446566 ], + [ 7.1960805, 46.4445609 ], + [ 7.1961377, 46.4444986 ], + [ 7.1962023, 46.4444252 ], + [ 7.1963158, 46.444329 ], + [ 7.1964212, 46.4442216 ], + [ 7.1965023, 46.4440916 ], + [ 7.1965264, 46.4439844 ], + [ 7.1965016, 46.4438773 ], + [ 7.19642, 46.443759 ], + [ 7.1963465, 46.4436575 ], + [ 7.1962647, 46.4435618 ], + [ 7.1961831, 46.4434492 ], + [ 7.1961825, 46.4433928 ], + [ 7.1962478, 46.4433418 ], + [ 7.1962962, 46.4432457 ], + [ 7.1963039, 46.4431781 ], + [ 7.196296, 46.443116 ], + [ 7.1963443, 46.443037 ], + [ 7.1964422, 46.442969 ], + [ 7.1966371, 46.4428671 ], + [ 7.1968237, 46.4427821 ], + [ 7.196653, 46.4427543 ], + [ 7.1964816, 46.4427264 ], + [ 7.1962946, 46.4426929 ], + [ 7.1960824, 46.4426821 ], + [ 7.1959606, 46.4426427 ], + [ 7.1959113, 46.4425639 ], + [ 7.1958463, 46.4425471 ], + [ 7.1957074, 46.4425248 ], + [ 7.1955938, 46.442463 ], + [ 7.1954306, 46.4424013 ], + [ 7.1948116, 46.4424026 ], + [ 7.1948192, 46.4421599 ], + [ 7.1948678, 46.4420243 ], + [ 7.194965, 46.4419283 ], + [ 7.1950868, 46.4418039 ], + [ 7.1952079, 46.4416457 ], + [ 7.1953054, 46.4414819 ], + [ 7.1953133, 46.4413408 ], + [ 7.1952143, 46.4411154 ], + [ 7.1950916, 46.4409237 ], + [ 7.195002, 46.440765999999996 ], + [ 7.1949392, 46.4406174 ], + [ 7.1931373, 46.4362326 ], + [ 7.1926206, 46.4353949 ], + [ 7.1924662999999995, 46.4349898 ], + [ 7.1924289, 46.4346299 ], + [ 7.1926262, 46.4341625 ], + [ 7.1929276, 46.4336684 ], + [ 7.1932154, 46.4333272 ], + [ 7.1937372, 46.4330405 ], + [ 7.1943629, 46.432772 ], + [ 7.1948852, 46.4323413 ], + [ 7.1952774, 46.4319194 ], + [ 7.1956039, 46.4316502 ], + [ 7.1964776, 46.4312023 ], + [ 7.1967394, 46.4308431 ], + [ 7.1968708, 46.4305465 ], + [ 7.1973009, 46.4303675 ], + [ 7.197953, 46.4300091 ], + [ 7.1990885, 46.4291839 ], + [ 7.1994545, 46.4287979 ], + [ 7.1999806, 46.4274766 ], + [ 7.1999967, 46.4273386 ], + [ 7.199697, 46.4274471 ], + [ 7.1995342, 46.4274982 ], + [ 7.1994125, 46.4276112 ], + [ 7.1993072, 46.4277018 ], + [ 7.1991605, 46.4277867 ], + [ 7.1990224, 46.4277644 ], + [ 7.1989249, 46.427747600000004 ], + [ 7.1988273, 46.4277535 ], + [ 7.1986557, 46.4277538 ], + [ 7.1984118, 46.42776 ], + [ 7.1981433, 46.4278001 ], + [ 7.1979073, 46.4278287 ], + [ 7.1976877, 46.4278461 ], + [ 7.1975332, 46.4278633 ], + [ 7.1973706, 46.4278636 ], + [ 7.1972396, 46.4278639 ], + [ 7.1970284, 46.4278304 ], + [ 7.1968576, 46.4278478 ], + [ 7.1967436, 46.4278762 ], + [ 7.1966052, 46.427916 ], + [ 7.1964179, 46.4279784 ], + [ 7.1962396, 46.428024 ], + [ 7.1960768999999996, 46.4280581 ], + [ 7.1959628, 46.4281035 ], + [ 7.1957999, 46.4281771 ], + [ 7.195703, 46.4282055 ], + [ 7.1954989, 46.4282116 ], + [ 7.1953362, 46.4282288 ], + [ 7.195149, 46.4282631 ], + [ 7.1949701, 46.4282746 ], + [ 7.1948642, 46.4283145 ], + [ 7.1947104, 46.4283542 ], + [ 7.1945881, 46.4284221 ], + [ 7.1944096, 46.428524 ], + [ 7.1941739, 46.4286769 ], + [ 7.1938325, 46.4290104 ], + [ 7.1937196, 46.4291573 ], + [ 7.1935489, 46.429327 ], + [ 7.1934192, 46.4294231 ], + [ 7.1932888, 46.4294968 ], + [ 7.1931346, 46.4296099 ], + [ 7.1930131, 46.4296948 ], + [ 7.1928989, 46.4297796 ], + [ 7.1927205, 46.429842 ], + [ 7.192533, 46.4299439 ], + [ 7.192322, 46.4300459 ], + [ 7.1921265, 46.4301083 ], + [ 7.1919882, 46.4301368 ], + [ 7.1918099, 46.4301767 ], + [ 7.1916226, 46.4302334 ], + [ 7.1914272, 46.430296 ], + [ 7.191232, 46.4303189 ], + [ 7.1910856, 46.4303135 ], + [ 7.1909549, 46.4302743 ], + [ 7.1908243, 46.4301956 ], + [ 7.1906939, 46.4300773 ], + [ 7.1905959, 46.4299986 ], + [ 7.190587, 46.4298124 ], + [ 7.1905543, 46.429677 ], + [ 7.190432, 46.4295757 ], + [ 7.1903344, 46.4295759 ], + [ 7.1902367, 46.4296043 ], + [ 7.1900657, 46.4296667 ], + [ 7.1899843, 46.4296838 ], + [ 7.1897892, 46.4296559 ], + [ 7.1896511, 46.4296449 ], + [ 7.1894794, 46.4296566 ], + [ 7.1893825, 46.4297076 ], + [ 7.1892272, 46.4296909 ], + [ 7.1890729, 46.429657399999996 ], + [ 7.1889022, 46.4296465 ], + [ 7.1887713, 46.4296298 ], + [ 7.1886817, 46.4296637 ], + [ 7.1885603, 46.4297261 ], + [ 7.1884794, 46.4298165 ], + [ 7.1883414, 46.4299408 ], + [ 7.1881866, 46.4299976 ], + [ 7.1881053, 46.4299978 ], + [ 7.1879746, 46.4299642 ], + [ 7.1877958, 46.4299306 ], + [ 7.1874943, 46.4298973 ], + [ 7.1871848, 46.4298472 ], + [ 7.1869321, 46.4298082 ], + [ 7.1867046, 46.4297692 ], + [ 7.1865329, 46.4297808 ], + [ 7.1863953, 46.4298318 ], + [ 7.1862567, 46.4298998 ], + [ 7.1860944, 46.4300242 ], + [ 7.1859318, 46.4301882 ], + [ 7.1857368, 46.4303239 ], + [ 7.1856317, 46.4303806 ], + [ 7.1855171, 46.4303583 ], + [ 7.1854523, 46.4303189 ], + [ 7.1853711, 46.4302908 ], + [ 7.1851997, 46.4302572 ], + [ 7.1850046, 46.4302407 ], + [ 7.1847923, 46.4302411 ], + [ 7.1846542, 46.4302301 ], + [ 7.1844347, 46.4302192 ], + [ 7.1842225, 46.4302197 ], + [ 7.1840598, 46.4302369 ], + [ 7.1838483, 46.4302429 ], + [ 7.1836856000000004, 46.4302545 ], + [ 7.1835392, 46.4302605 ], + [ 7.1834253, 46.4302777 ], + [ 7.1832702, 46.430244 ], + [ 7.183124, 46.4301992 ], + [ 7.1829609, 46.4301204 ], + [ 7.1827897, 46.4300531 ], + [ 7.1825695, 46.4300197 ], + [ 7.1823581, 46.4300201 ], + [ 7.1821466, 46.4300317 ], + [ 7.1820484, 46.4299868 ], + [ 7.1819829, 46.4299249 ], + [ 7.1818199, 46.4298293 ], + [ 7.1815028, 46.4298129 ], + [ 7.1812746, 46.4297513 ], + [ 7.1810218, 46.4297462 ], + [ 7.1808755, 46.4297352 ], + [ 7.1806721, 46.429758 ], + [ 7.1805012, 46.4297754 ], + [ 7.1803222, 46.4297983 ], + [ 7.1801271, 46.4297929 ], + [ 7.1799318, 46.4298216 ], + [ 7.1797114, 46.4298277 ], + [ 7.1795489, 46.4298222 ], + [ 7.1793537, 46.429817 ], + [ 7.1791173, 46.4297779 ], + [ 7.1789384, 46.4297782 ], + [ 7.1786611, 46.4297845 ], + [ 7.1784089, 46.4298019 ], + [ 7.1781811, 46.4298361 ], + [ 7.1780183, 46.4298646 ], + [ 7.1778474, 46.4298988 ], + [ 7.1776279, 46.4298991 ], + [ 7.1774565, 46.4298656 ], + [ 7.1772364, 46.4297983 ], + [ 7.1770578, 46.4297535 ], + [ 7.1768051, 46.4297089 ], + [ 7.17652, 46.4296474 ], + [ 7.1760966, 46.4295973 ], + [ 7.1757381, 46.429581 ], + [ 7.1754699, 46.4295534 ], + [ 7.1752823, 46.4295029 ], + [ 7.1750702, 46.4294694 ], + [ 7.1748995, 46.4294641 ], + [ 7.1747449, 46.4294813 ], + [ 7.1745822, 46.4295042 ], + [ 7.1744602, 46.4295214 ], + [ 7.1743219, 46.4295272 ], + [ 7.174208, 46.429533 ], + [ 7.1740454, 46.4295333 ], + [ 7.1739064, 46.4295223 ], + [ 7.1737763, 46.4295169 ], + [ 7.1735724, 46.429489 ], + [ 7.1733855, 46.4294668 ], + [ 7.1732716, 46.4294671 ], + [ 7.1731253, 46.4294673 ], + [ 7.1729869, 46.4294958 ], + [ 7.1728566, 46.4295298 ], + [ 7.1727182, 46.4295639 ], + [ 7.1726204, 46.4296262 ], + [ 7.1725064, 46.4296546 ], + [ 7.1722786, 46.4296663 ], + [ 7.1720591, 46.429661 ], + [ 7.1718555, 46.4297347 ], + [ 7.1717177, 46.429814 ], + [ 7.1715546, 46.4298989 ], + [ 7.17136, 46.4299556 ], + [ 7.1704234, 46.4299348 ], + [ 7.1704151, 46.4297995 ], + [ 7.1697314, 46.4297668 ], + [ 7.1698039, 46.4295804 ], + [ 7.1695029, 46.4296036 ], + [ 7.169446, 46.4296036 ], + [ 7.1693558, 46.4295926 ], + [ 7.1692828, 46.42957 ], + [ 7.1692341, 46.4295476 ], + [ 7.1691767, 46.42948 ], + [ 7.1691193, 46.4294124 ], + [ 7.1690216, 46.4292772 ], + [ 7.1689074999999995, 46.4291532 ], + [ 7.1688012, 46.4291083 ], + [ 7.1687282, 46.4290803 ], + [ 7.1686306, 46.4290805 ], + [ 7.1685004, 46.4291088 ], + [ 7.1683945, 46.4291429 ], + [ 7.1682886, 46.4291939 ], + [ 7.1682322, 46.4292448 ], + [ 7.1681425, 46.4292956 ], + [ 7.1680123, 46.4293241 ], + [ 7.1678009, 46.4293132 ], + [ 7.16719, 46.4291901 ], + [ 7.1668393, 46.4290892 ], + [ 7.1666687, 46.42905 ], + [ 7.1665545, 46.4289769 ], + [ 7.1664483, 46.4289037 ], + [ 7.1663422, 46.4288192 ], + [ 7.1662526, 46.4286953 ], + [ 7.1661703, 46.4285713 ], + [ 7.1660807, 46.4284248 ], + [ 7.1660315, 46.4283628 ], + [ 7.1659422, 46.4283235 ], + [ 7.1658604, 46.4282672 ], + [ 7.1657949, 46.4281884 ], + [ 7.165697, 46.4280982 ], + [ 7.1656158, 46.4280758 ], + [ 7.1654526, 46.428031 ], + [ 7.1652000000000005, 46.4279637 ], + [ 7.1649964, 46.4278795 ], + [ 7.1646868, 46.4278291 ], + [ 7.1641908, 46.428005 ], + [ 7.1640117, 46.4280391 ], + [ 7.163857, 46.4280788 ], + [ 7.1637276, 46.4281129 ], + [ 7.163621, 46.4281131 ], + [ 7.1635154, 46.428102 ], + [ 7.1634016, 46.4280965 ], + [ 7.163296, 46.4280742 ], + [ 7.1631735, 46.4280123 ], + [ 7.1630511, 46.4279449 ], + [ 7.1628723, 46.4279226 ], + [ 7.1627496, 46.4279115 ], + [ 7.1626357, 46.4279343 ], + [ 7.1625224, 46.4279796 ], + [ 7.162392, 46.4280363 ], + [ 7.1622291, 46.4280986 ], + [ 7.1620907, 46.4281214 ], + [ 7.1618469, 46.4280992 ], + [ 7.1616917, 46.4280769 ], + [ 7.1614968, 46.4280265 ], + [ 7.1613336, 46.4279817 ], + [ 7.1612278, 46.4280043 ], + [ 7.1611138, 46.4280385 ], + [ 7.1609998, 46.4280781 ], + [ 7.160829, 46.4280897 ], + [ 7.1606419, 46.4281013 ], + [ 7.160463, 46.4280903 ], + [ 7.1602754, 46.4280512 ], + [ 7.1600798, 46.4279838 ], + [ 7.1599744, 46.4279276 ], + [ 7.1597867, 46.4278997 ], + [ 7.1596486, 46.4278717 ], + [ 7.1595749, 46.4278267 ], + [ 7.1594444, 46.4277423 ], + [ 7.1592813, 46.4276692 ], + [ 7.1591189, 46.42763 ], + [ 7.1589554, 46.427636 ], + [ 7.1588092, 46.4276249 ], + [ 7.1586874, 46.4275913 ], + [ 7.1585893, 46.427535 ], + [ 7.158483, 46.4274788 ], + [ 7.1583442999999995, 46.4274112 ], + [ 7.1581739, 46.4273608 ], + [ 7.1579618, 46.4273274 ], + [ 7.1578074, 46.427305 ], + [ 7.1575953, 46.4272884 ], + [ 7.1574003, 46.4272548 ], + [ 7.1570906, 46.4272497 ], + [ 7.1568956, 46.427222 ], + [ 7.1567322, 46.4272165 ], + [ 7.1565206, 46.4272394 ], + [ 7.1563986, 46.4272622 ], + [ 7.156244, 46.4272681 ], + [ 7.1560896, 46.4272627 ], + [ 7.1559756, 46.4272912 ], + [ 7.1558372, 46.4273309 ], + [ 7.1557313, 46.4273649 ], + [ 7.1555849, 46.4273764 ], + [ 7.155406, 46.4273768 ], + [ 7.1551452, 46.4273376 ], + [ 7.1548605, 46.4273606 ], + [ 7.1545922, 46.4273499 ], + [ 7.1543393, 46.4273503 ], + [ 7.1541118, 46.4273337 ], + [ 7.1539245, 46.4273792 ], + [ 7.1536399, 46.4273909 ], + [ 7.1535336, 46.4273403 ], + [ 7.1534191, 46.4273067 ], + [ 7.1532243, 46.4272562 ], + [ 7.1530449, 46.4271944 ], + [ 7.1528165, 46.4271836 ], + [ 7.1527681, 46.427099 ], + [ 7.1524016, 46.4270714 ], + [ 7.1523756, 46.4266031 ], + [ 7.1521807, 46.4265583 ], + [ 7.1521717, 46.4264003 ], + [ 7.1520662, 46.4263723 ], + [ 7.1518702, 46.4263726 ], + [ 7.1517245, 46.4264068 ], + [ 7.1507084, 46.4269838 ], + [ 7.1507238, 46.4268259 ], + [ 7.1506267, 46.4268937 ], + [ 7.150537, 46.4269446 ], + [ 7.1504066, 46.4270013 ], + [ 7.1502689, 46.4270579 ], + [ 7.1500978, 46.4271145 ], + [ 7.1498942, 46.427177 ], + [ 7.1496827, 46.4272112 ], + [ 7.1495037, 46.427234 ], + [ 7.1495119, 46.4272171 ], + [ 7.1495284, 46.4271607 ], + [ 7.1495605, 46.4270873 ], + [ 7.1496251, 46.4270194 ], + [ 7.1496173, 46.4269631 ], + [ 7.1495116, 46.4269576 ], + [ 7.1486981, 46.4271846 ], + [ 7.1487878, 46.427444 ], + [ 7.1486338, 46.427512 ], + [ 7.148634, 46.4276191 ], + [ 7.1482521, 46.4278906 ], + [ 7.1481291, 46.4277722 ], + [ 7.1479255, 46.4276823 ], + [ 7.1478771, 46.4277671 ], + [ 7.1478118, 46.427818 ], + [ 7.1477147, 46.4278801 ], + [ 7.1476819, 46.4279197 ], + [ 7.1477311, 46.4279986 ], + [ 7.1477965, 46.4280832 ], + [ 7.1477556, 46.4281395 ], + [ 7.1476581, 46.4281116 ], + [ 7.1475355, 46.4280778 ], + [ 7.1473, 46.4280331 ], + [ 7.1471042, 46.4280052 ], + [ 7.1470146, 46.428028 ], + [ 7.1469418, 46.4281183 ], + [ 7.1468689, 46.428203 ], + [ 7.1467872, 46.4282935 ], + [ 7.1466412, 46.4283727 ], + [ 7.1467147, 46.4284628 ], + [ 7.1467882, 46.428553 ], + [ 7.146813, 46.428632 ], + [ 7.1468215, 46.4287223 ], + [ 7.1468623000000004, 46.4288406 ], + [ 7.1468701, 46.4288914 ], + [ 7.1468869999999995, 46.4289365 ], + [ 7.1469192, 46.4289986 ], + [ 7.1469684, 46.4290718 ], + [ 7.1470175, 46.429162 ], + [ 7.1470338, 46.4293031 ], + [ 7.1470672, 46.4294496 ], + [ 7.1470837, 46.4295625 ], + [ 7.1470512, 46.429698 ], + [ 7.146994, 46.4297545 ], + [ 7.1469208, 46.4297545 ], + [ 7.1468884, 46.4297265 ], + [ 7.1468881, 46.4296475 ], + [ 7.1469128, 46.4295853 ], + [ 7.146929, 46.42945 ], + [ 7.1469442, 46.429337 ], + [ 7.1469279, 46.429196 ], + [ 7.1468625, 46.4290946 ], + [ 7.1467729, 46.4289762 ], + [ 7.1466505, 46.4289087 ], + [ 7.1465692, 46.4289145 ], + [ 7.1465283, 46.4289484 ], + [ 7.1464719, 46.4290049 ], + [ 7.1464148, 46.4290445 ], + [ 7.1463091, 46.4290503 ], + [ 7.1462116, 46.4290392 ], + [ 7.1461301, 46.4290676 ], + [ 7.1459592, 46.4290847 ], + [ 7.1457554, 46.4290455 ], + [ 7.1455108, 46.4290007 ], + [ 7.1451933, 46.428922299999996 ], + [ 7.1451282, 46.4289337 ], + [ 7.1450711, 46.4289733 ], + [ 7.144966, 46.4290186 ], + [ 7.1448839, 46.4290018 ], + [ 7.1448354, 46.4289624 ], + [ 7.1448107, 46.4288665 ], + [ 7.1447616, 46.4287763 ], + [ 7.1447124, 46.4286917 ], + [ 7.144647, 46.4286072 ], + [ 7.1445497, 46.428551 ], + [ 7.1444436, 46.428489 ], + [ 7.1443213, 46.4283934 ], + [ 7.1441989, 46.4283201 ], + [ 7.1440526, 46.4283092 ], + [ 7.1439873, 46.42836 ], + [ 7.1439715, 46.4284221 ], + [ 7.1439963, 46.4285067 ], + [ 7.1440446, 46.4285799 ], + [ 7.1441101, 46.4286645 ], + [ 7.1442568, 46.4287488 ], + [ 7.1443871, 46.4288502 ], + [ 7.1445176, 46.4289346 ], + [ 7.1446237, 46.4290078 ], + [ 7.144681, 46.4290923 ], + [ 7.1447058, 46.4291714 ], + [ 7.144706, 46.4292729 ], + [ 7.1447145, 46.4293575 ], + [ 7.1446489, 46.4294649 ], + [ 7.14456, 46.4295044 ], + [ 7.1445032, 46.4294989 ], + [ 7.1444212, 46.4294595 ], + [ 7.144332, 46.4294258 ], + [ 7.1442581, 46.4293977 ], + [ 7.1442259, 46.4293414 ], + [ 7.1442254, 46.4292792 ], + [ 7.1442251, 46.4292004 ], + [ 7.1441597, 46.4290989 ], + [ 7.1440456, 46.4290144 ], + [ 7.143916, 46.4290597 ], + [ 7.1437939, 46.4290938 ], + [ 7.1437043, 46.4291165 ], + [ 7.1436312, 46.4290997 ], + [ 7.1435249, 46.4290547 ], + [ 7.1434268, 46.4290097 ], + [ 7.1432807, 46.4289705 ], + [ 7.1431425, 46.4289538 ], + [ 7.1430447, 46.4289933 ], + [ 7.1429876, 46.429033 ], + [ 7.1428246, 46.4290952 ], + [ 7.1427113, 46.4291575 ], + [ 7.1425241, 46.4291861 ], + [ 7.1423045, 46.4292034 ], + [ 7.1420604, 46.4292262 ], + [ 7.1416614, 46.4293397 ], + [ 7.141434, 46.429436 ], + [ 7.1413847, 46.4295207 ], + [ 7.1413931, 46.4296166 ], + [ 7.1413528, 46.4297125 ], + [ 7.1412476, 46.4297748 ], + [ 7.1411172, 46.4298257 ], + [ 7.1410274, 46.4298823 ], + [ 7.1409304, 46.429922 ], + [ 7.1408324, 46.4300067 ], + [ 7.1407514, 46.4300916 ], + [ 7.1406537, 46.4301255 ], + [ 7.1405478, 46.4301539 ], + [ 7.1403932, 46.430171 ], + [ 7.1401979, 46.430194 ], + [ 7.1400436, 46.430166 ], + [ 7.1399372, 46.4301435 ], + [ 7.1398153, 46.4301268 ], + [ 7.1396604, 46.4300537 ], + [ 7.1395624, 46.4299805 ], + [ 7.1394645, 46.4299016 ], + [ 7.1393177, 46.4298286 ], + [ 7.1392444, 46.4298455 ], + [ 7.1391311, 46.4299022 ], + [ 7.139025, 46.4299644 ], + [ 7.1389354, 46.430004 ], + [ 7.1387814, 46.430055 ], + [ 7.1386431, 46.4300666 ], + [ 7.1385048, 46.430078 ], + [ 7.1383657, 46.4300838 ], + [ 7.1381867, 46.4301067 ], + [ 7.1380483, 46.4301351 ], + [ 7.1378781, 46.4301918 ], + [ 7.1377558, 46.430248399999996 ], + [ 7.13765, 46.4302599 ], + [ 7.1375036, 46.4302601 ], + [ 7.1373566, 46.4302377 ], + [ 7.1372512, 46.4303339 ], + [ 7.1371377, 46.430413 ], + [ 7.1370316, 46.4304809 ], + [ 7.136902, 46.4305318 ], + [ 7.1367472, 46.4305829 ], + [ 7.1366415, 46.4305943 ], + [ 7.136625, 46.4306338 ], + [ 7.1365927, 46.4307354 ], + [ 7.1366011, 46.4308369 ], + [ 7.1366256, 46.4309554 ], + [ 7.136699, 46.4310625 ], + [ 7.1367895, 46.4311808 ], + [ 7.1369278, 46.4312991 ], + [ 7.1370338, 46.4313948 ], + [ 7.1370828, 46.4315189 ], + [ 7.1370258, 46.4316656 ], + [ 7.1369859, 46.431835 ], + [ 7.1378512, 46.432979 ], + [ 7.1392517, 46.4329431 ], + [ 7.1395849, 46.432982 ], + [ 7.1400822, 46.433049 ], + [ 7.1403342, 46.4330655 ], + [ 7.1406031, 46.4331272 ], + [ 7.1408719, 46.4331888 ], + [ 7.1411081, 46.4332562 ], + [ 7.1413363, 46.4333236 ], + [ 7.1415399, 46.4334191 ], + [ 7.1417029, 46.4334866 ], + [ 7.1419478, 46.433616 ], + [ 7.1421595, 46.4337172 ], + [ 7.1424368, 46.4338634 ], + [ 7.1427382, 46.4340604 ], + [ 7.14304, 46.434201 ], + [ 7.1434313, 46.4344712 ], + [ 7.1435944, 46.434533 ], + [ 7.1437894, 46.434561 ], + [ 7.1439935, 46.4345606 ], + [ 7.1441235, 46.4345885 ], + [ 7.1443029, 46.4346334 ], + [ 7.1445553, 46.434729 ], + [ 7.1447348, 46.4347851 ], + [ 7.1450034, 46.4348863 ], + [ 7.1453046, 46.4349816 ], + [ 7.1454595, 46.4350435 ], + [ 7.1456467, 46.4350206 ], + [ 7.1458175, 46.435014699999996 ], + [ 7.1460376, 46.4350708 ], + [ 7.1462006, 46.4351552 ], + [ 7.1463063, 46.4351606 ], + [ 7.1464203, 46.4351323 ], + [ 7.146583, 46.4351093 ], + [ 7.1467138, 46.435143 ], + [ 7.1468681, 46.4351823 ], + [ 7.1469746, 46.4351878 ], + [ 7.1471367, 46.4351254 ], + [ 7.1474297, 46.4350911 ], + [ 7.147699, 46.4350681 ], + [ 7.1479509, 46.4350902 ], + [ 7.1482036, 46.4351406 ], + [ 7.1484317, 46.435208 ], + [ 7.1487085, 46.4353147 ], + [ 7.1490023, 46.4354214 ], + [ 7.1493445, 46.4356015 ], + [ 7.1496539, 46.4356799 ], + [ 7.1498897, 46.4356795 ], + [ 7.1501101, 46.4356792 ], + [ 7.1503216, 46.4356789 ], + [ 7.1505573, 46.4356954 ], + [ 7.15081, 46.4357345 ], + [ 7.1509814, 46.435768 ], + [ 7.1511359, 46.4357734 ], + [ 7.1512497, 46.4357789 ], + [ 7.15138, 46.4357504 ], + [ 7.1514941, 46.4356938 ], + [ 7.1516319, 46.4356429 ], + [ 7.1517541, 46.4355862 ], + [ 7.1519414, 46.4355351 ], + [ 7.152096, 46.435518 ], + [ 7.1523643, 46.4355288 ], + [ 7.1527147, 46.4355565 ], + [ 7.1532527, 46.4356176 ], + [ 7.1534884, 46.4356454 ], + [ 7.1537004, 46.4356959 ], + [ 7.1538146, 46.4357746 ], + [ 7.1539287, 46.4358817 ], + [ 7.1540265, 46.436 ], + [ 7.1540431, 46.4360959 ], + [ 7.1540353, 46.4361805 ], + [ 7.1539951, 46.4362539 ], + [ 7.1539217, 46.4362991 ], + [ 7.1538156, 46.4363727 ], + [ 7.1536939, 46.4364688 ], + [ 7.1535965, 46.4365762 ], + [ 7.1534991, 46.4367005 ], + [ 7.153508, 46.4368641 ], + [ 7.1535975, 46.4370049 ], + [ 7.1537041, 46.4371571 ], + [ 7.1538344, 46.4372754 ], + [ 7.1539484, 46.4373993 ], + [ 7.1541525, 46.437557 ], + [ 7.1544458, 46.4377596 ], + [ 7.1548614, 46.4379111 ], + [ 7.154699, 46.4380299 ], + [ 7.1545366, 46.4381375 ], + [ 7.1544149, 46.4382336 ], + [ 7.1542599, 46.4383241 ], + [ 7.1540652, 46.4383865 ], + [ 7.1538942, 46.4384375 ], + [ 7.1537155, 46.4385394 ], + [ 7.1536425, 46.4386579 ], + [ 7.1536023, 46.4388781 ], + [ 7.1535944, 46.4391433 ], + [ 7.15362, 46.4393858 ], + [ 7.1536039, 46.4395043 ], + [ 7.1535551, 46.4396568 ], + [ 7.153482, 46.4398035 ], + [ 7.1534013, 46.4399956 ], + [ 7.1533365, 46.4402495 ], + [ 7.1532393, 46.4404809 ], + [ 7.1531343, 46.4406448 ], + [ 7.1530203, 46.4408368 ], + [ 7.152948, 46.4409779 ], + [ 7.1527932, 46.4411813 ], + [ 7.1526556, 46.4413508 ], + [ 7.1525504, 46.4415598 ], + [ 7.1524932, 46.4417743 ], + [ 7.1524613, 46.441966 ], + [ 7.1524538, 46.4421579 ], + [ 7.1524623, 46.4423836 ], + [ 7.152512, 46.4426712 ], + [ 7.1528227, 46.4433027 ], + [ 7.153027, 46.4435732 ], + [ 7.1532641, 46.4437928 ], + [ 7.1533534, 46.4438321 ], + [ 7.1535004, 46.4438826 ], + [ 7.153736, 46.4439161 ], + [ 7.154013, 46.4439834 ], + [ 7.1543965, 46.4440673 ], + [ 7.1546403, 46.4441064 ], + [ 7.1549666, 46.4442299 ], + [ 7.1553011, 46.4443479 ], + [ 7.1556269, 46.4444208 ], + [ 7.1560585, 46.4444764 ], + [ 7.1565228, 46.4444926 ], + [ 7.1568562, 46.4445145 ], + [ 7.1569951, 46.4446893 ], + [ 7.1571503, 46.4447172 ], + [ 7.1573211, 46.4447226 ], + [ 7.1574844, 46.4447561 ], + [ 7.1575737, 46.4447954 ], + [ 7.1576799, 46.4448574 ], + [ 7.1578267, 46.4449473 ], + [ 7.1579732, 46.4450882 ], + [ 7.1580549, 46.4451726 ], + [ 7.1582186, 46.4452852 ], + [ 7.1583976, 46.4454203 ], + [ 7.1585605, 46.4455385 ], + [ 7.1586835, 46.4456681 ], + [ 7.1588464, 46.4457807 ], + [ 7.1589525, 46.4458595 ], + [ 7.1589936, 46.4459327 ], + [ 7.1589614, 46.4460287 ], + [ 7.1589535, 46.446136 ], + [ 7.158962, 46.4462262 ], + [ 7.1590517, 46.4463333 ], + [ 7.159117, 46.4464516 ], + [ 7.1591173, 46.4465531 ], + [ 7.1591096, 46.4466377 ], + [ 7.1590603, 46.4467281 ], + [ 7.1589555, 46.4468694 ], + [ 7.1589149, 46.4469936 ], + [ 7.1588581, 46.4471347 ], + [ 7.1588337, 46.4472983 ], + [ 7.1588914, 46.4474506 ], + [ 7.1589647, 46.4476028 ], + [ 7.1591769, 46.4477774 ], + [ 7.1593891, 46.4479575 ], + [ 7.1596671, 46.4481376 ], + [ 7.1600093, 46.4483401 ], + [ 7.1604004, 46.4485369 ], + [ 7.1606861, 46.4486662 ], + [ 7.1608412, 46.4487167 ], + [ 7.1610282, 46.4487276 ], + [ 7.1612966, 46.4487215 ], + [ 7.1615088, 46.4487494 ], + [ 7.1617371, 46.4487998 ], + [ 7.1619814, 46.4489066 ], + [ 7.1622584, 46.448985 ], + [ 7.1625844, 46.4490071 ], + [ 7.1627558, 46.4490575 ], + [ 7.1627473, 46.4491422 ], + [ 7.1626905, 46.449260699999996 ], + [ 7.1625526, 46.4495037 ], + [ 7.1624797000000004, 46.4495997 ], + [ 7.1625127, 46.4496842 ], + [ 7.1625375, 46.4497631 ], + [ 7.1626843000000004, 46.4498532 ], + [ 7.1627987, 46.4499038 ], + [ 7.1629776, 46.4499091 ], + [ 7.1631727, 46.4499314 ], + [ 7.1632951, 46.4500271 ], + [ 7.1633688, 46.4500777 ], + [ 7.1635314, 46.4501056 ], + [ 7.1636703, 46.4501392 ], + [ 7.1637598, 46.4501391 ], + [ 7.1638899, 46.4501445 ], + [ 7.1640945, 46.4503754 ], + [ 7.1642336, 46.4505388 ], + [ 7.1644455, 46.4507867 ], + [ 7.1645846, 46.4509444 ], + [ 7.1648045, 46.4510456 ], + [ 7.1650085, 46.4510847 ], + [ 7.1653012, 46.4511124 ], + [ 7.1655946, 46.4511628 ], + [ 7.1656359, 46.4512021 ], + [ 7.1657744, 46.4513147 ], + [ 7.1658969, 46.4513878 ], + [ 7.1660195, 46.4514384 ], + [ 7.1661738, 46.4514832 ], + [ 7.1662802, 46.4515113 ], + [ 7.1663126, 46.4515508 ], + [ 7.1664025, 46.4516295 ], + [ 7.1664841, 46.4517309 ], + [ 7.1666714, 46.4518492 ], + [ 7.1668915, 46.4519221 ], + [ 7.1671123, 46.4520177 ], + [ 7.1673972, 46.4521356 ], + [ 7.1675927999999995, 46.4522312 ], + [ 7.1676988999999995, 46.4523325 ], + [ 7.1677398, 46.4524397 ], + [ 7.1678383, 46.4525861 ], + [ 7.1679442, 46.4527327 ], + [ 7.1680916, 46.4528452 ], + [ 7.1682222, 46.4529183 ], + [ 7.1683928, 46.4529688 ], + [ 7.1685318, 46.4529968 ], + [ 7.1687112, 46.4530699 ], + [ 7.1688661, 46.4531654 ], + [ 7.1690378, 46.4533231 ], + [ 7.1692004, 46.4535034 ], + [ 7.1693893, 46.4538022 ], + [ 7.1696491, 46.4535759 ], + [ 7.1697469, 46.4535362 ], + [ 7.1698608, 46.4535417 ], + [ 7.1700316, 46.4535358 ], + [ 7.1702356, 46.4535749 ], + [ 7.1704305999999995, 46.4536311 ], + [ 7.1706838, 46.4537434 ], + [ 7.1709199, 46.4538727 ], + [ 7.171075, 46.4539233 ], + [ 7.171197, 46.4539286 ], + [ 7.1713191, 46.4539227 ], + [ 7.1714657, 46.4538886 ], + [ 7.1716203, 46.4538828 ], + [ 7.1717593, 46.4538994 ], + [ 7.171873, 46.4539274 ], + [ 7.1719708, 46.4538991 ], + [ 7.1721011, 46.4538762 ], + [ 7.172305, 46.4539322 ], + [ 7.1725575, 46.4540333 ], + [ 7.1728512, 46.4541909 ], + [ 7.1729492, 46.4541229 ], + [ 7.1730546, 46.4540155 ], + [ 7.1731194, 46.4539083 ], + [ 7.173233, 46.4537953 ], + [ 7.1733635, 46.4537385 ], + [ 7.173534, 46.4536367 ], + [ 7.1736715, 46.4534615 ], + [ 7.173859, 46.4533766 ], + [ 7.1739729, 46.453382 ], + [ 7.1742014, 46.4534098 ], + [ 7.1744045, 46.4534489 ], + [ 7.1745022, 46.4534318 ], + [ 7.174584, 46.453347 ], + [ 7.1746731, 46.4532623 ], + [ 7.1748111, 46.4531548 ], + [ 7.1749408, 46.45307 ], + [ 7.1750637, 46.4530641 ], + [ 7.1752587, 46.4531088 ], + [ 7.1756826, 46.4532717 ], + [ 7.1759845, 46.4534179 ], + [ 7.1760419, 46.4534911 ], + [ 7.1760179, 46.4535814 ], + [ 7.1759854, 46.4537337 ], + [ 7.1759454, 46.4539256 ], + [ 7.1759048, 46.454078 ], + [ 7.1757992999999995, 46.4542025 ], + [ 7.1756776, 46.4542986 ], + [ 7.1755643, 46.4545075 ], + [ 7.1754591, 46.454739000000004 ], + [ 7.1753695, 46.4549141 ], + [ 7.1751913, 46.4551062 ], + [ 7.1748497, 46.4552536 ], + [ 7.1750047, 46.4553378 ], + [ 7.1751184, 46.4553772 ], + [ 7.175241, 46.455422 ], + [ 7.1754611, 46.4554894 ], + [ 7.1756732, 46.4555454 ], + [ 7.1758524, 46.4556579 ], + [ 7.1759911, 46.4557479 ], + [ 7.1761789, 46.4557645 ], + [ 7.1764235, 46.4558318 ], + [ 7.1765861, 46.4558484 ], + [ 7.176708, 46.455882 ], + [ 7.1768386, 46.4559551 ], + [ 7.1769699, 46.4560621 ], + [ 7.1771247, 46.4561802 ], + [ 7.1772958, 46.4562984 ], + [ 7.1775081, 46.456456 ], + [ 7.1778262, 46.456636 ], + [ 7.1781199, 46.456799 ], + [ 7.1786256, 46.457035 ], + [ 7.1796862, 46.4575917 ], + [ 7.1799799, 46.4577659 ], + [ 7.1802893, 46.4578951 ], + [ 7.1805502, 46.4579455 ], + [ 7.1807623, 46.4579959 ], + [ 7.1808849, 46.4580521 ], + [ 7.1810318, 46.4581251 ], + [ 7.1812435, 46.4582545 ], + [ 7.1815208, 46.4584514 ], + [ 7.1817494, 46.4586146 ], + [ 7.1819862, 46.458789 ], + [ 7.1821337, 46.4589073 ], + [ 7.1823212, 46.4589858 ], + [ 7.1824682, 46.459059 ], + [ 7.1826389, 46.4590868 ], + [ 7.1830869, 46.4591367 ], + [ 7.183234, 46.4591647 ], + [ 7.1833153, 46.4591871 ], + [ 7.1834539, 46.4592883 ], + [ 7.1836332, 46.4593951 ], + [ 7.1837639, 46.459474 ], + [ 7.1838457, 46.4595471 ], + [ 7.1839193, 46.4596373 ], + [ 7.1840823, 46.4597442 ], + [ 7.1842623, 46.4598736 ], + [ 7.1844009, 46.4599805 ], + [ 7.1845883, 46.4601099 ], + [ 7.1846866, 46.4601436 ], + [ 7.1848086, 46.4601377 ], + [ 7.1849068, 46.460194 ], + [ 7.1850123, 46.4602558 ], + [ 7.1852408, 46.4604472 ], + [ 7.1853802, 46.4605598 ], + [ 7.1855187, 46.4607005 ], + [ 7.1856011, 46.4608189 ], + [ 7.1856339, 46.4609485 ], + [ 7.1856993, 46.4610499 ], + [ 7.1858137, 46.4611287 ], + [ 7.1858378, 46.4611964 ], + [ 7.1858302, 46.4612529 ], + [ 7.1858631, 46.4613374 ], + [ 7.185928, 46.4613936 ], + [ 7.1859855, 46.46145 ], + [ 7.1860591, 46.4615289 ], + [ 7.1861407, 46.4616583 ], + [ 7.1861084, 46.4617827 ], + [ 7.1860931, 46.4619124 ], + [ 7.1861906, 46.4619404 ], + [ 7.186337, 46.4619514 ], + [ 7.1864998, 46.4619342 ], + [ 7.1866953, 46.4618999 ], + [ 7.1868662, 46.461894 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "JBG0027", + "country" : "CHE", + "name" : [ + { + "text" : "Eidgenössisches Jagdbanngebiet Pierreuse-Gummfluh", + "lang" : "de-CH" + }, + { + "text" : "District franc fédéral Pierreuse-Gummfluh", + "lang" : "fr-CH" + }, + { + "text" : "Bandita federale di caccia Pierreuse-Gummfluh", + "lang" : "it-CH" + }, + { + "text" : "Federal Game Reserve Pierreuse-Gummfluh", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5406344, 47.4955147 ], + [ 7.5406303, 47.4955294 ], + [ 7.5407076, 47.4955424 ], + [ 7.540786, 47.4955717 ], + [ 7.5408861, 47.4955958 ], + [ 7.5411471, 47.4957131 ], + [ 7.5413054, 47.4957737 ], + [ 7.5413707, 47.4957818 ], + [ 7.5417285, 47.4958826 ], + [ 7.541923, 47.4959116 ], + [ 7.5420576, 47.4959498 ], + [ 7.5422071, 47.4959901 ], + [ 7.5422303, 47.4959943 ], + [ 7.5423493, 47.496 ], + [ 7.5426400000000005, 47.4960463 ], + [ 7.5429718999999995, 47.4961035 ], + [ 7.5431044, 47.4960987 ], + [ 7.5431584, 47.4960815 ], + [ 7.5445396, 47.4957385 ], + [ 7.5446959, 47.4957002 ], + [ 7.544714, 47.4957459 ], + [ 7.5447024, 47.4957519 ], + [ 7.544767, 47.4959187 ], + [ 7.5447859, 47.4959675 ], + [ 7.5449041, 47.4962547 ], + [ 7.5449228, 47.4963745 ], + [ 7.5449253, 47.4963907 ], + [ 7.5449493, 47.4964894 ], + [ 7.5447623, 47.4965084 ], + [ 7.5447849, 47.4968456 ], + [ 7.5449463, 47.4969686 ], + [ 7.5450736, 47.4970279 ], + [ 7.5451705, 47.4970509 ], + [ 7.5451733, 47.4970421 ], + [ 7.5454361, 47.4970788 ], + [ 7.5454334, 47.4970876 ], + [ 7.5456900000000005, 47.4972075 ], + [ 7.546019, 47.4973491 ], + [ 7.5466809999999995, 47.4975445 ], + [ 7.5473559, 47.4977431 ], + [ 7.5475501, 47.4977914 ], + [ 7.5477494, 47.4978219 ], + [ 7.5483491, 47.4978798 ], + [ 7.5483518, 47.4978672 ], + [ 7.5483547, 47.4978538 ], + [ 7.5483607, 47.4978256 ], + [ 7.5480266, 47.4977771 ], + [ 7.5476493, 47.4977447 ], + [ 7.547256, 47.4975886 ], + [ 7.5470423, 47.4975305 ], + [ 7.5466474, 47.4974602 ], + [ 7.5462384, 47.4973456 ], + [ 7.5456062, 47.4970692 ], + [ 7.5451474, 47.4969294 ], + [ 7.5450591, 47.4968553 ], + [ 7.5449801, 47.4967511 ], + [ 7.5449855, 47.4966105 ], + [ 7.5450183, 47.4965298 ], + [ 7.5449909, 47.4963833 ], + [ 7.5449789, 47.4963316 ], + [ 7.544963, 47.4962472 ], + [ 7.5448631, 47.4959536 ], + [ 7.5447777, 47.4957129 ], + [ 7.5448103, 47.495696 ], + [ 7.5448385, 47.4956617 ], + [ 7.5451096, 47.4956418 ], + [ 7.5453774, 47.4955461 ], + [ 7.5455199, 47.4955439 ], + [ 7.5457996, 47.4954602 ], + [ 7.5460479, 47.4954608 ], + [ 7.5461217, 47.4955122 ], + [ 7.5462467, 47.4955591 ], + [ 7.5463388, 47.4956254 ], + [ 7.5464969, 47.4956562 ], + [ 7.5465461, 47.4956962 ], + [ 7.5468732, 47.4958419 ], + [ 7.546995, 47.4958674 ], + [ 7.5473426, 47.496044499999996 ], + [ 7.5474235, 47.4961029 ], + [ 7.5476763, 47.4962072 ], + [ 7.5477933, 47.4962737 ], + [ 7.5479101, 47.4963773 ], + [ 7.5481192, 47.4963657 ], + [ 7.5483478999999996, 47.4962968 ], + [ 7.5486993, 47.4963013 ], + [ 7.5488884, 47.4962635 ], + [ 7.5493397, 47.4963516 ], + [ 7.5492243, 47.496377 ], + [ 7.5492211000000005, 47.4963779 ], + [ 7.549218, 47.496379 ], + [ 7.5492151, 47.4963802 ], + [ 7.5492123, 47.4963817 ], + [ 7.5492098, 47.4963832 ], + [ 7.5492074, 47.496385 ], + [ 7.5492053, 47.4963869 ], + [ 7.5492035, 47.4963888 ], + [ 7.5492018, 47.4963909 ], + [ 7.5492004999999995, 47.4963931 ], + [ 7.5491995, 47.4963953 ], + [ 7.5491987, 47.4963976 ], + [ 7.5491982, 47.4964 ], + [ 7.5491981, 47.4964023 ], + [ 7.5491982, 47.4964047 ], + [ 7.5491987, 47.496407 ], + [ 7.5491994, 47.4964093 ], + [ 7.5492004999999995, 47.4964116 ], + [ 7.5492208, 47.4964495 ], + [ 7.5496609, 47.4965761 ], + [ 7.5496609, 47.4965771 ], + [ 7.5496698, 47.4965775 ], + [ 7.5496734, 47.4965777 ], + [ 7.5496771, 47.4965776 ], + [ 7.5496808, 47.4965773 ], + [ 7.5496844, 47.4965768 ], + [ 7.5497122, 47.4965891 ], + [ 7.5497146, 47.4964265 ], + [ 7.5497306, 47.496405 ], + [ 7.5497125, 47.4964 ], + [ 7.5497125, 47.4963611 ], + [ 7.5494305, 47.4962822 ], + [ 7.5493505, 47.49622 ], + [ 7.5490607, 47.4961851 ], + [ 7.5489346, 47.4961585 ], + [ 7.5488161, 47.4961514 ], + [ 7.5486149000000005, 47.4962008 ], + [ 7.5483539, 47.4962081 ], + [ 7.5482142, 47.4962281 ], + [ 7.5481873, 47.496232 ], + [ 7.5481117, 47.4962492 ], + [ 7.5481072000000005, 47.49625 ], + [ 7.5481025, 47.4962506 ], + [ 7.5480978, 47.4962509 ], + [ 7.5480656, 47.4962535 ], + [ 7.5480014, 47.4962586 ], + [ 7.5479802, 47.4962616 ], + [ 7.5478929, 47.4962251 ], + [ 7.5477892, 47.4961377 ], + [ 7.5475185, 47.4960141 ], + [ 7.5473074, 47.4958935 ], + [ 7.5471717, 47.4958165 ], + [ 7.5469885, 47.4957564 ], + [ 7.5467008, 47.4956208 ], + [ 7.5464798, 47.495528 ], + [ 7.5463585, 47.4954705 ], + [ 7.5461276999999995, 47.4953804 ], + [ 7.5458975, 47.4953634 ], + [ 7.5458749, 47.4953601 ], + [ 7.5458533, 47.4953571 ], + [ 7.5457522, 47.4953428 ], + [ 7.5456497, 47.4951634 ], + [ 7.5455978, 47.4951287 ], + [ 7.5455479, 47.4951133 ], + [ 7.5455374, 47.4951273 ], + [ 7.5452987, 47.4950526 ], + [ 7.5452634, 47.4950995 ], + [ 7.5452346, 47.4951368 ], + [ 7.5452741, 47.495176 ], + [ 7.5453864, 47.4951901 ], + [ 7.5454931, 47.4952021 ], + [ 7.5455719, 47.4952841 ], + [ 7.545596, 47.4953737 ], + [ 7.5454958, 47.4954335 ], + [ 7.5453209, 47.4954483 ], + [ 7.5452043, 47.495517 ], + [ 7.5449044, 47.4955816 ], + [ 7.5448426, 47.4955858 ], + [ 7.5446718, 47.4956161 ], + [ 7.5446137, 47.4956446 ], + [ 7.5442873, 47.4957146 ], + [ 7.5440458, 47.4957493 ], + [ 7.543767, 47.4958336 ], + [ 7.5435838, 47.4958804 ], + [ 7.5434476, 47.4959229 ], + [ 7.5432635999999995, 47.4959744 ], + [ 7.5431642, 47.4959997 ], + [ 7.543031, 47.4960403 ], + [ 7.5429498, 47.4960314 ], + [ 7.5427705, 47.4959729 ], + [ 7.5426573, 47.4959642 ], + [ 7.5424896, 47.4959241 ], + [ 7.5423739, 47.4959134 ], + [ 7.542155, 47.4958695 ], + [ 7.5420589, 47.4958658 ], + [ 7.5418481, 47.4958019 ], + [ 7.5417718, 47.4958083 ], + [ 7.5416763, 47.4957791 ], + [ 7.5414132, 47.4956984 ], + [ 7.541347, 47.4956952 ], + [ 7.5412463, 47.495664 ], + [ 7.541131, 47.495607 ], + [ 7.5410501, 47.4955591 ], + [ 7.5409211, 47.4955128 ], + [ 7.5408251, 47.4954889 ], + [ 7.5407671, 47.4954793 ], + [ 7.5406499, 47.4954589 ], + [ 7.5406426, 47.4954851 ], + [ 7.5406344, 47.4955147 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns161", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Schlifbach - Grossmattbach", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Schlifbach - Grossmattbach", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Schlifbach - Grossmattbach", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Schlifbach - Grossmattbach", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.9407971, 47.427395 ], + [ 7.9405653, 47.4274187 ], + [ 7.9403682, 47.4274655 ], + [ 7.9402197999999995, 47.427539 ], + [ 7.9397102, 47.4278699 ], + [ 7.9396914, 47.4278842 ], + [ 7.9396731, 47.4278989 ], + [ 7.9396555, 47.4279139 ], + [ 7.9396387, 47.4279294 ], + [ 7.9396225, 47.4279451 ], + [ 7.939607, 47.4279612 ], + [ 7.9395923, 47.4279776 ], + [ 7.9395783, 47.4279943 ], + [ 7.9395651, 47.4280113 ], + [ 7.9395526, 47.4280286 ], + [ 7.9395413999999995, 47.4280452 ], + [ 7.9395309, 47.4280621 ], + [ 7.9395211, 47.4280791 ], + [ 7.939512, 47.4280964 ], + [ 7.9395036999999995, 47.4281138 ], + [ 7.9394960999999995, 47.4281314 ], + [ 7.9394893, 47.4281491 ], + [ 7.9394833, 47.4281669 ], + [ 7.939478, 47.4281849 ], + [ 7.9394735, 47.4282029 ], + [ 7.9394228, 47.4284843 ], + [ 7.9394215, 47.4286874 ], + [ 7.9394225, 47.4287027 ], + [ 7.9394226, 47.4287179 ], + [ 7.9394219, 47.4287332 ], + [ 7.9394203999999995, 47.4287484 ], + [ 7.939418, 47.4287636 ], + [ 7.9394148, 47.4287787 ], + [ 7.9394107, 47.4287937 ], + [ 7.9394058, 47.428808599999996 ], + [ 7.9394001, 47.4288233 ], + [ 7.9394083, 47.4289612 ], + [ 7.9394368, 47.4291901 ], + [ 7.939478, 47.4292947 ], + [ 7.9395822, 47.4294635 ], + [ 7.9396434, 47.4296272 ], + [ 7.9396941, 47.4297142 ], + [ 7.9398076, 47.4298294 ], + [ 7.9401027, 47.4301701 ], + [ 7.9401933, 47.4303044 ], + [ 7.9403568, 47.4304274 ], + [ 7.9405211, 47.4306817 ], + [ 7.9405706, 47.4309049 ], + [ 7.9407025, 47.4310049 ], + [ 7.9409193, 47.431111 ], + [ 7.9411677, 47.4312788 ], + [ 7.9415089, 47.4314701 ], + [ 7.9418976, 47.4317213 ], + [ 7.9421773, 47.4319348 ], + [ 7.9423032, 47.4321302 ], + [ 7.9424688, 47.4324752 ], + [ 7.9425752, 47.4325791 ], + [ 7.9416018, 47.4327034 ], + [ 7.9410175, 47.4327342 ], + [ 7.9405955, 47.4327009 ], + [ 7.9400029, 47.4329251 ], + [ 7.9397416, 47.4330262 ], + [ 7.9396973, 47.4331103 ], + [ 7.9389112, 47.4332576 ], + [ 7.9384931, 47.4332695 ], + [ 7.9385074, 47.4332747 ], + [ 7.9385213, 47.4332804 ], + [ 7.9385347, 47.4332866 ], + [ 7.9385476, 47.4332932 ], + [ 7.93856, 47.4333003 ], + [ 7.9388807, 47.433483 ], + [ 7.9393225, 47.4337221 ], + [ 7.9397795, 47.4339197 ], + [ 7.9403354, 47.4340825 ], + [ 7.940681, 47.4341403 ], + [ 7.9407067, 47.4341441 ], + [ 7.9407322, 47.4341485 ], + [ 7.9407575, 47.4341534 ], + [ 7.9407826, 47.4341589 ], + [ 7.9408074, 47.4341649 ], + [ 7.9408319, 47.4341714 ], + [ 7.9408560999999995, 47.4341784 ], + [ 7.94088, 47.4341859 ], + [ 7.9409035, 47.434194 ], + [ 7.9409267, 47.4342025 ], + [ 7.9413449, 47.434409 ], + [ 7.9414455, 47.4344931 ], + [ 7.9415811, 47.4346484 ], + [ 7.9416723, 47.4347315 ], + [ 7.9417228, 47.4347721 ], + [ 7.9421653, 47.4350982 ], + [ 7.9423329, 47.4352097 ], + [ 7.9425906, 47.4353003 ], + [ 7.9427924, 47.435299 ], + [ 7.9431438, 47.4353098 ], + [ 7.9434295, 47.435312 ], + [ 7.9434897, 47.4353119 ], + [ 7.9435341, 47.4353118 ], + [ 7.943549, 47.4352718 ], + [ 7.9437603, 47.4352169 ], + [ 7.9438024, 47.4352875 ], + [ 7.9438423, 47.4353704 ], + [ 7.9438764, 47.4354141 ], + [ 7.9439197, 47.43548 ], + [ 7.9440963, 47.4357611 ], + [ 7.9443587, 47.4359105 ], + [ 7.9452817, 47.4356636 ], + [ 7.9453304, 47.4356498 ], + [ 7.9454186, 47.4357896 ], + [ 7.9455199, 47.4360387 ], + [ 7.9463405, 47.4361235 ], + [ 7.9470316, 47.4361697 ], + [ 7.9469985, 47.4363485 ], + [ 7.9470288, 47.4365364 ], + [ 7.9471004, 47.436701 ], + [ 7.9471988, 47.4368691 ], + [ 7.9472524, 47.4368537 ], + [ 7.9476986, 47.4366793 ], + [ 7.94764, 47.4365953 ], + [ 7.9475119, 47.4364661 ], + [ 7.9474813, 47.4363759 ], + [ 7.9474651, 47.4362763 ], + [ 7.947466, 47.4362178 ], + [ 7.9475057, 47.4361647 ], + [ 7.9475236, 47.4361178 ], + [ 7.947503, 47.4360153 ], + [ 7.9473969, 47.4357738 ], + [ 7.9473477, 47.435617 ], + [ 7.9471999, 47.4353861 ], + [ 7.9471635, 47.4352795 ], + [ 7.9471225, 47.4352555 ], + [ 7.9470898, 47.4350458 ], + [ 7.9471258, 47.4350424 ], + [ 7.9471386, 47.4349914 ], + [ 7.9471325, 47.4349419 ], + [ 7.9471542, 47.4348646 ], + [ 7.947118, 47.4347529 ], + [ 7.9470925, 47.4347142 ], + [ 7.9470392, 47.434703999999996 ], + [ 7.9469833, 47.4347034 ], + [ 7.9469902, 47.4345504 ], + [ 7.9473465, 47.4345813 ], + [ 7.9475065, 47.4345631 ], + [ 7.9476468, 47.4344811 ], + [ 7.9476931, 47.4345059 ], + [ 7.9481738, 47.4345812 ], + [ 7.9483466, 47.434481 ], + [ 7.9493988, 47.4340113 ], + [ 7.9495067, 47.4339277 ], + [ 7.9495497, 47.4338242 ], + [ 7.9495968, 47.4335887 ], + [ 7.9496573, 47.4335038 ], + [ 7.9497636, 47.433451 ], + [ 7.9500968, 47.4337435 ], + [ 7.9503094, 47.4339321 ], + [ 7.9504000999999995, 47.4340135 ], + [ 7.9511108, 47.4343566 ], + [ 7.9512593, 47.4340778 ], + [ 7.9512773, 47.434044 ], + [ 7.9515304, 47.4335687 ], + [ 7.9515787, 47.4334782 ], + [ 7.9517798, 47.4331006 ], + [ 7.9518021, 47.4330588 ], + [ 7.9519475, 47.4327859 ], + [ 7.95113, 47.4325558 ], + [ 7.9506016, 47.4321553 ], + [ 7.9500402999999995, 47.4317183 ], + [ 7.9507986, 47.431023 ], + [ 7.9516926, 47.4302189 ], + [ 7.9527922, 47.4292292 ], + [ 7.9541378, 47.428002 ], + [ 7.9546126, 47.4275691 ], + [ 7.9551192, 47.4271081 ], + [ 7.9548422, 47.4268424 ], + [ 7.9549179, 47.4268169 ], + [ 7.9550288, 47.4267697 ], + [ 7.9551847, 47.4267072 ], + [ 7.9552985, 47.4266349 ], + [ 7.9553241, 47.4265728 ], + [ 7.9552673, 47.4265333 ], + [ 7.9551603, 47.4264164 ], + [ 7.9548489, 47.4262966 ], + [ 7.9544928, 47.4262152 ], + [ 7.9539246, 47.4260461 ], + [ 7.9535462, 47.4259649 ], + [ 7.9531628, 47.4261006 ], + [ 7.9523582, 47.4261553 ], + [ 7.9518403, 47.42607 ], + [ 7.9511927, 47.4257046 ], + [ 7.9508475999999995, 47.4254765 ], + [ 7.9506423, 47.4251472 ], + [ 7.9502719, 47.4251497 ], + [ 7.9502445, 47.4251489 ], + [ 7.9502171, 47.4251476 ], + [ 7.9501898, 47.4251457 ], + [ 7.9501626, 47.4251434 ], + [ 7.9501355, 47.4251405 ], + [ 7.9501085, 47.4251371 ], + [ 7.9500817, 47.4251332 ], + [ 7.9500551, 47.4251288 ], + [ 7.9500286, 47.4251238 ], + [ 7.9500143, 47.4251206 ], + [ 7.9500003, 47.4251168 ], + [ 7.9499867, 47.4251124 ], + [ 7.9499735, 47.4251075 ], + [ 7.9499609, 47.425102 ], + [ 7.9499487, 47.4250959 ], + [ 7.9499372, 47.4250894 ], + [ 7.9499262, 47.4250823 ], + [ 7.949916, 47.4250748 ], + [ 7.9499065, 47.4250669 ], + [ 7.9498977, 47.4250586 ], + [ 7.9498897, 47.4250499 ], + [ 7.9498826, 47.4250409 ], + [ 7.9498763, 47.4250316 ], + [ 7.9498708, 47.4250221 ], + [ 7.9498663, 47.4250124 ], + [ 7.9498627, 47.4250024 ], + [ 7.94986, 47.4249924 ], + [ 7.9498581999999995, 47.4249822 ], + [ 7.9498574, 47.424972 ], + [ 7.9498597, 47.4249588 ], + [ 7.9498627, 47.4249456 ], + [ 7.9498667, 47.4249325 ], + [ 7.9498714, 47.4249196 ], + [ 7.949877, 47.4249068 ], + [ 7.9498834, 47.4248941 ], + [ 7.9498906, 47.4248817 ], + [ 7.9498986, 47.4248695 ], + [ 7.9499074, 47.4248576 ], + [ 7.9499169, 47.4248459 ], + [ 7.9499272, 47.4248345 ], + [ 7.9499374, 47.4248238 ], + [ 7.9499483, 47.4248133 ], + [ 7.9499599, 47.4248031 ], + [ 7.949972, 47.4247933 ], + [ 7.9499848, 47.4247839 ], + [ 7.9499981, 47.4247748 ], + [ 7.950012, 47.4247661 ], + [ 7.9500264, 47.4247578 ], + [ 7.9500413, 47.4247499 ], + [ 7.9500566, 47.4247425 ], + [ 7.9513126, 47.424334 ], + [ 7.9513395, 47.4243259 ], + [ 7.9513660999999995, 47.4243171 ], + [ 7.9513922, 47.4243078 ], + [ 7.9514178, 47.4242979 ], + [ 7.951443, 47.4242875 ], + [ 7.9514677, 47.4242766 ], + [ 7.9514919, 47.4242651 ], + [ 7.9515155, 47.4242531 ], + [ 7.9515386, 47.4242406 ], + [ 7.951561, 47.4242276 ], + [ 7.9515829, 47.4242141 ], + [ 7.9517363, 47.4241156 ], + [ 7.9516194, 47.4239391 ], + [ 7.9512121, 47.4236545 ], + [ 7.9509833, 47.4233164 ], + [ 7.9505945, 47.4230555 ], + [ 7.9501671, 47.4228517 ], + [ 7.9497558, 47.4228254 ], + [ 7.9494864, 47.4227916 ], + [ 7.9492616, 47.4228036 ], + [ 7.9491178, 47.4228438 ], + [ 7.949109, 47.4228468 ], + [ 7.9491005999999995, 47.4228504 ], + [ 7.9490928, 47.4228544 ], + [ 7.9490855, 47.422859 ], + [ 7.9490789, 47.422864 ], + [ 7.949073, 47.4228694 ], + [ 7.9490679, 47.4228751 ], + [ 7.9490636, 47.4228812 ], + [ 7.9490601, 47.4228874 ], + [ 7.9490575, 47.4228939 ], + [ 7.9490558, 47.4229005 ], + [ 7.9490551, 47.4229072 ], + [ 7.9490552, 47.4229139 ], + [ 7.9490563, 47.4229206 ], + [ 7.9490704999999995, 47.4229257 ], + [ 7.9490842, 47.4229314 ], + [ 7.9490974, 47.4229377 ], + [ 7.94911, 47.4229444 ], + [ 7.949122, 47.4229517 ], + [ 7.9491333, 47.4229595 ], + [ 7.9491439, 47.4229677 ], + [ 7.9491537999999995, 47.4229763 ], + [ 7.9491628, 47.4229854 ], + [ 7.949171, 47.4229948 ], + [ 7.9491784, 47.4230045 ], + [ 7.9491849, 47.4230145 ], + [ 7.9491905, 47.4230247 ], + [ 7.9491951, 47.4230352 ], + [ 7.9491988, 47.4230458 ], + [ 7.9492016, 47.4230565 ], + [ 7.9492034, 47.4230674 ], + [ 7.9492042, 47.4230783 ], + [ 7.9492041, 47.4230892 ], + [ 7.9492028999999995, 47.4231001 ], + [ 7.9492008, 47.4231109 ], + [ 7.9491978, 47.4231216 ], + [ 7.9491937, 47.4231322 ], + [ 7.9491195999999995, 47.423367 ], + [ 7.9490504, 47.423707 ], + [ 7.9489856, 47.4238721 ], + [ 7.9489119, 47.4239806 ], + [ 7.9487913, 47.4240704 ], + [ 7.9485322, 47.4242132 ], + [ 7.9481577, 47.4244514 ], + [ 7.9479431, 47.4246211 ], + [ 7.9477523, 47.4248091 ], + [ 7.9476154, 47.4250092 ], + [ 7.9475491, 47.4251585 ], + [ 7.9475098, 47.425326 ], + [ 7.9475042, 47.4254782 ], + [ 7.9475239, 47.4256543 ], + [ 7.94758, 47.4257999 ], + [ 7.9476802, 47.4259491 ], + [ 7.9477937999999995, 47.4260767 ], + [ 7.9479273, 47.4261835 ], + [ 7.9481069, 47.4263258 ], + [ 7.9481181, 47.426336 ], + [ 7.9481286, 47.4263465 ], + [ 7.9481382, 47.4263574 ], + [ 7.9481471, 47.4263686 ], + [ 7.948155, 47.4263801 ], + [ 7.9481622, 47.4263919 ], + [ 7.9481684, 47.4264039 ], + [ 7.9481737, 47.4264161 ], + [ 7.9481782, 47.4264285 ], + [ 7.9481816, 47.426441 ], + [ 7.9481842, 47.4264535 ], + [ 7.9481858, 47.4264662 ], + [ 7.9481865, 47.4264789 ], + [ 7.9481862, 47.4264916 ], + [ 7.948185, 47.4265043 ], + [ 7.9481828, 47.426517 ], + [ 7.9481797, 47.4265295 ], + [ 7.9482098, 47.4266924 ], + [ 7.9484859, 47.42675 ], + [ 7.9488232, 47.4267678 ], + [ 7.9490007, 47.42697 ], + [ 7.9488115, 47.4275467 ], + [ 7.9488009, 47.4275874 ], + [ 7.948566, 47.4275764 ], + [ 7.9481345999999995, 47.4275023 ], + [ 7.9478486, 47.4274411 ], + [ 7.9476726, 47.4274237 ], + [ 7.9475176, 47.4274459 ], + [ 7.9472662, 47.4275332 ], + [ 7.947035, 47.4275937 ], + [ 7.9467275, 47.4276269 ], + [ 7.9462249, 47.4276468 ], + [ 7.9460573, 47.4277004 ], + [ 7.9459734, 47.4277796 ], + [ 7.9459132, 47.4277818 ], + [ 7.9458683, 47.4276116 ], + [ 7.9458573999999995, 47.4275101 ], + [ 7.94594, 47.4274012 ], + [ 7.9460847999999995, 47.4273104 ], + [ 7.9454193, 47.4267648 ], + [ 7.9450724, 47.4268333 ], + [ 7.9448511, 47.4269048 ], + [ 7.9442727, 47.4271804 ], + [ 7.943983, 47.4273036 ], + [ 7.9439587, 47.4273121 ], + [ 7.943934, 47.4273201 ], + [ 7.9439089, 47.4273275 ], + [ 7.9438835, 47.4273343 ], + [ 7.9438577, 47.4273406 ], + [ 7.9438317, 47.427346299999996 ], + [ 7.9438054, 47.4273514 ], + [ 7.9437789, 47.427356 ], + [ 7.9437528, 47.42736 ], + [ 7.9437265, 47.4273634 ], + [ 7.9437, 47.4273663 ], + [ 7.9436735, 47.4273685 ], + [ 7.9436468, 47.4273702 ], + [ 7.9436201, 47.4273714 ], + [ 7.9435933, 47.4273719 ], + [ 7.9435666, 47.4273718 ], + [ 7.943325, 47.4273571 ], + [ 7.9432988, 47.427358 ], + [ 7.9432727, 47.4273596 ], + [ 7.9432466, 47.4273617 ], + [ 7.9432206, 47.4273644 ], + [ 7.9431948, 47.4273677 ], + [ 7.9431691, 47.4273715 ], + [ 7.9431437, 47.4273758 ], + [ 7.943119, 47.4273803 ], + [ 7.9430946, 47.4273853 ], + [ 7.9430704, 47.4273908 ], + [ 7.9430465, 47.4273969 ], + [ 7.9430228, 47.4274034 ], + [ 7.9429995, 47.4274104 ], + [ 7.9429765, 47.4274179 ], + [ 7.9429539, 47.4274259 ], + [ 7.9426644, 47.4275517 ], + [ 7.9424686, 47.4276321 ], + [ 7.9424481, 47.4276396 ], + [ 7.9424273, 47.4276466 ], + [ 7.9424060999999995, 47.4276531 ], + [ 7.9423846, 47.4276592 ], + [ 7.9423628, 47.4276648 ], + [ 7.9423407, 47.4276699 ], + [ 7.9423184, 47.4276744 ], + [ 7.9422958999999995, 47.4276785 ], + [ 7.9422738, 47.427682 ], + [ 7.9422516, 47.4276849 ], + [ 7.9422293, 47.4276874 ], + [ 7.9422068, 47.4276894 ], + [ 7.9421843, 47.4276908 ], + [ 7.9421617, 47.4276918 ], + [ 7.9421391, 47.4276923 ], + [ 7.9421164, 47.4276923 ], + [ 7.942091, 47.4276915 ], + [ 7.9420657, 47.42769 ], + [ 7.9420405, 47.427688 ], + [ 7.9420154, 47.4276853 ], + [ 7.9419905, 47.427682 ], + [ 7.9419657, 47.427678 ], + [ 7.9419412, 47.4276735 ], + [ 7.941917, 47.4276684 ], + [ 7.9415016, 47.4275837 ], + [ 7.940982, 47.4274362 ], + [ 7.9407971, 47.427395 ] + ], + [ + [ 7.9473511, 47.4322464 ], + [ 7.9471233, 47.4321578 ], + [ 7.9470575, 47.4320293 ], + [ 7.9470548999999995, 47.4320181 ], + [ 7.9470532, 47.4320067 ], + [ 7.9470525, 47.4319953 ], + [ 7.9470528, 47.4319838 ], + [ 7.947054, 47.4319725 ], + [ 7.9470562, 47.4319611 ], + [ 7.9470594, 47.4319499 ], + [ 7.9470635, 47.4319388 ], + [ 7.9470685, 47.4319279 ], + [ 7.9470745, 47.4319172 ], + [ 7.9470814, 47.4319068 ], + [ 7.9470890999999995, 47.4318967 ], + [ 7.9470977, 47.4318868 ], + [ 7.9471071, 47.4318774 ], + [ 7.9471173, 47.4318683 ], + [ 7.9471283, 47.4318596 ], + [ 7.94714, 47.4318514 ], + [ 7.9473838, 47.4317268 ], + [ 7.9477791, 47.4314555 ], + [ 7.9479308, 47.4313975 ], + [ 7.9480729, 47.4314409 ], + [ 7.9482606, 47.431454 ], + [ 7.9494778, 47.4315422 ], + [ 7.949589, 47.4318414 ], + [ 7.9488737, 47.4320784 ], + [ 7.9485845, 47.432176 ], + [ 7.9487916, 47.4322447 ], + [ 7.9489689, 47.4323279 ], + [ 7.9491291, 47.4324363 ], + [ 7.9490894, 47.4324602 ], + [ 7.9486314, 47.4326001 ], + [ 7.9481093, 47.4327595 ], + [ 7.9480501, 47.4327649 ], + [ 7.9480141, 47.432533 ], + [ 7.9479176, 47.4324276 ], + [ 7.9477851, 47.432359 ], + [ 7.9473511, 47.4322464 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns279", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Rumpel - Chlapfen", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Rumpel - Chlapfen", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Rumpel - Chlapfen", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Rumpel - Chlapfen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6302736, 47.5482519 ], + [ 7.6309064, 47.5481311 ], + [ 7.632815, 47.5477266 ], + [ 7.6329228, 47.5476554 ], + [ 7.6330367, 47.5475509 ], + [ 7.6330672, 47.5474365 ], + [ 7.6330322, 47.547235 ], + [ 7.6328654, 47.5467534 ], + [ 7.6326215, 47.5460491 ], + [ 7.632584, 47.54601 ], + [ 7.632573, 47.5459867 ], + [ 7.6325088, 47.5458504 ], + [ 7.6314346, 47.546107 ], + [ 7.6310972, 47.546189 ], + [ 7.6304042, 47.5463575 ], + [ 7.6303804, 47.5463633 ], + [ 7.6303813, 47.546384 ], + [ 7.6303554, 47.5463845 ], + [ 7.6303529999999995, 47.5464295 ], + [ 7.6303374999999996, 47.5464728 ], + [ 7.6303128000000005, 47.5465149 ], + [ 7.6300475, 47.5469135 ], + [ 7.6300025, 47.5469883 ], + [ 7.6299755000000005, 47.5470487 ], + [ 7.6299566, 47.5471102 ], + [ 7.629946, 47.5471728 ], + [ 7.6299434, 47.5472356 ], + [ 7.6301151, 47.5478699 ], + [ 7.6303057, 47.5478459 ], + [ 7.6303444, 47.5479879 ], + [ 7.6301541, 47.5480116 ], + [ 7.6302176, 47.5482472 ], + [ 7.6302232, 47.5482498 ], + [ 7.6302291, 47.548252 ], + [ 7.6302354999999995, 47.5482537 ], + [ 7.6302421, 47.5482547 ], + [ 7.6302488, 47.5482553 ], + [ 7.6302556, 47.5482552 ], + [ 7.6302603, 47.5482548 ], + [ 7.6302649, 47.5482541 ], + [ 7.6302693, 47.5482531 ], + [ 7.6302736, 47.5482519 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns306", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Muttenzer Hard", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Muttenzer Hard", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Muttenzer Hard", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Muttenzer Hard", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.9333098, 47.191864699999996 ], + [ 8.9251893, 47.1920545 ], + [ 8.9165062, 47.1918514 ], + [ 8.9127186, 47.1917358 ], + [ 8.9097056, 47.1917137 ], + [ 8.9085655, 47.1922455 ], + [ 8.9053914, 47.1932081 ], + [ 8.9043912, 47.1931916 ], + [ 8.8986453, 47.1934986 ], + [ 8.8973631, 47.1939107 ], + [ 8.8959535, 47.1954579 ], + [ 8.8919827, 47.1960119 ], + [ 8.8859866, 47.1968431 ], + [ 8.8827227, 47.19719 ], + [ 8.8824645, 47.195448 ], + [ 8.8828297, 47.1943099 ], + [ 8.8826043, 47.1918297 ], + [ 8.8707431, 47.1887528 ], + [ 8.8691538, 47.1914984 ], + [ 8.8687634, 47.1936804 ], + [ 8.8596499, 47.1977628 ], + [ 8.8581156, 47.198389 ], + [ 8.8532594, 47.1981789 ], + [ 8.849436, 47.1958418 ], + [ 8.8480463, 47.194442 ], + [ 8.8470714, 47.1937567 ], + [ 8.8452401, 47.1931269 ], + [ 8.843513699999999, 47.1927206 ], + [ 8.8417957, 47.1926292 ], + [ 8.8395693, 47.193286 ], + [ 8.8371449, 47.1939452 ], + [ 8.8346316, 47.1949878 ], + [ 8.8329964, 47.1955474 ], + [ 8.8318831, 47.1958757 ], + [ 8.8311209, 47.19575 ], + [ 8.8298639, 47.1956303 ], + [ 8.8282047, 47.195268 ], + [ 8.8264443, 47.1948169 ], + [ 8.8253616, 47.1950549 ], + [ 8.8236326, 47.1958179 ], + [ 8.8226946, 47.1965488 ], + [ 8.8209481, 47.1966373 ], + [ 8.820613, 47.1964389 ], + [ 8.8194215, 47.1962958 ], + [ 8.8176536, 47.1968343 ], + [ 8.8170043, 47.1985288 ], + [ 8.8164974, 47.2006265 ], + [ 8.8156432, 47.2007716 ], + [ 8.8129543, 47.2014335 ], + [ 8.8109882, 47.2019742 ], + [ 8.8093821, 47.2023982 ], + [ 8.8076603, 47.2021713 ], + [ 8.8061781, 47.2022788 ], + [ 8.8041551, 47.20318 ], + [ 8.8029105, 47.2041955 ], + [ 8.7998116, 47.2056131 ], + [ 8.799177, 47.2076537 ], + [ 8.800101699999999, 47.209747899999996 ], + [ 8.8047149, 47.2115284 ], + [ 8.8072263, 47.2135789 ], + [ 8.8096187, 47.2154846 ], + [ 8.8117802, 47.217393 ], + [ 8.8142331, 47.219073 ], + [ 8.8179934, 47.2202424 ], + [ 8.8210683, 47.2204305 ], + [ 8.8231982, 47.2198201 ], + [ 8.828070499999999, 47.2167702 ], + [ 8.831874299999999, 47.2158022 ], + [ 8.8340104, 47.215439 ], + [ 8.8377721, 47.2153933 ], + [ 8.8403123, 47.2153399 ], + [ 8.8417975, 47.2147034 ], + [ 8.8465866, 47.2135654 ], + [ 8.8497156, 47.2145616 ], + [ 8.8526056, 47.2165053 ], + [ 8.8537068, 47.218201 ], + [ 8.8568397, 47.219332 ], + [ 8.8581717, 47.2197654 ], + [ 8.860017299999999, 47.2196526 ], + [ 8.8640613, 47.2178034 ], + [ 8.8714193, 47.2164526 ], + [ 8.8785129, 47.2151047 ], + [ 8.8831556, 47.2159012 ], + [ 8.888744299999999, 47.2174952 ], + [ 8.8952475, 47.2187176 ], + [ 8.8993189, 47.2203303 ], + [ 8.9051896, 47.2207392 ], + [ 8.9117322, 47.2221626 ], + [ 8.9184277, 47.2231338 ], + [ 8.922784, 47.2242697 ], + [ 8.927481, 47.2245914 ], + [ 8.9324831, 47.2244907 ], + [ 8.9348362, 47.2184461 ], + [ 8.936589099999999, 47.2045488 ], + [ 8.935159, 47.1959039 ], + [ 8.9333098, 47.191864699999996 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSPV001", + "country" : "CHE", + "name" : [ + { + "text" : "LSPV Wangen-Lachen", + "lang" : "de-CH" + }, + { + "text" : "LSPV Wangen-Lachen", + "lang" : "fr-CH" + }, + { + "text" : "LSPV Wangen-Lachen", + "lang" : "it-CH" + }, + { + "text" : "LSPV Wangen-Lachen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "ASFG Ausserschwyzer Fluggemeinschaft Wangen", + "lang" : "de-CH" + }, + { + "text" : "ASFG Ausserschwyzer Fluggemeinschaft Wangen", + "lang" : "fr-CH" + }, + { + "text" : "ASFG Ausserschwyzer Fluggemeinschaft Wangen", + "lang" : "it-CH" + }, + { + "text" : "ASFG Ausserschwyzer Fluggemeinschaft Wangen", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.flugplatzwangen.ch/flugplatz/drohnenbewilligung/", + "email" : "drohnen@flugplatzwangen.ch", + "phone" : "0041554404217", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.2012068, 47.3941988 ], + [ 8.2010678, 47.3941546 ], + [ 8.2009862, 47.3941472 ], + [ 8.2009066, 47.3941627 ], + [ 8.200908, 47.3941828 ], + [ 8.2009789, 47.394268 ], + [ 8.201017, 47.3943787 ], + [ 8.2009999, 47.3944931 ], + [ 8.2009828, 47.3946361 ], + [ 8.2010396, 47.3946855 ], + [ 8.2007267, 47.3948513 ], + [ 8.2003194, 47.3947521 ], + [ 8.2001226, 47.3951675 ], + [ 8.2009483, 47.3953477 ], + [ 8.2008757, 47.3954917 ], + [ 8.2011044, 47.3958251 ], + [ 8.2013301, 47.3961534 ], + [ 8.2017745, 47.3962246 ], + [ 8.2023024, 47.3963097 ], + [ 8.2023556, 47.3963121 ], + [ 8.2023766, 47.3967687 ], + [ 8.2024342, 47.3972553 ], + [ 8.2026531, 47.3977176 ], + [ 8.2027276, 47.3981831 ], + [ 8.2028788, 47.3990133 ], + [ 8.2029404, 47.3993472 ], + [ 8.2032767, 47.399492 ], + [ 8.2036078, 47.3996441 ], + [ 8.2039411, 47.399807 ], + [ 8.2042619, 47.3999741 ], + [ 8.2045709, 47.4001442 ], + [ 8.2048834, 47.4003252 ], + [ 8.2050013, 47.4003936 ], + [ 8.2049976, 47.4004551 ], + [ 8.2051556, 47.4005655 ], + [ 8.2056072, 47.4008273 ], + [ 8.2061451, 47.4012294 ], + [ 8.2066238, 47.4016858 ], + [ 8.2066789, 47.4016598 ], + [ 8.2070191, 47.4015053 ], + [ 8.2073473, 47.4015427 ], + [ 8.2073182, 47.4014892 ], + [ 8.2074488, 47.4014519 ], + [ 8.2069985, 47.4007056 ], + [ 8.2060689, 47.3991536 ], + [ 8.2055735, 47.3983263 ], + [ 8.2050712, 47.3974877 ], + [ 8.2045711, 47.3966537 ], + [ 8.204495, 47.3965778 ], + [ 8.2042238, 47.3961713 ], + [ 8.2041283, 47.3959416 ], + [ 8.2041566, 47.3958969 ], + [ 8.2040962, 47.395742 ], + [ 8.2036994, 47.3956531 ], + [ 8.2031379, 47.3955142 ], + [ 8.2032659, 47.3952948 ], + [ 8.2032778, 47.3952745 ], + [ 8.2032735, 47.3952557 ], + [ 8.2028713, 47.3949872 ], + [ 8.2025777, 47.39482 ], + [ 8.2022603, 47.3946511 ], + [ 8.2019315, 47.3944926 ], + [ 8.2015807, 47.394341 ], + [ 8.2012068, 47.3941988 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VBS_12", + "country" : "CHE", + "name" : [ + { + "text" : "VBS_12 Othmarsingen", + "lang" : "de-CH" + }, + { + "text" : "VBS_12 Othmarsingen", + "lang" : "fr-CH" + }, + { + "text" : "VBS_12 Othmarsingen", + "lang" : "it-CH" + }, + { + "text" : "VBS_12 Othmarsingen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "regulationExemption" : "YES", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Eidgenössisches Departement für Verteidigung, Bevölkerungsschutz und Sport (VBS)", + "lang" : "de-CH" + }, + { + "text" : "Département fédéral de la défense, de la protection de la population et des sports (DDPS)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento federale della difesa, della protezione della popolazione e dello sport (DDPS)", + "lang" : "it-CH" + }, + { + "text" : "Federal Department of Defence, Civil Protection and Sport (DDPS)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Lageverfolgungszentrum der Armee LVZ A", + "lang" : "de-CH" + }, + { + "text" : "Centre de suivi de la situation de l’armée, CSS A", + "lang" : "fr-CH" + }, + { + "text" : "Centro di monitoraggio della situazione dell’esercito, Centro mon sit Es", + "lang" : "it-CH" + }, + { + "text" : "Joint Operation Center, JOC", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vtg.admin.ch/en/joint-operations-command", + "email" : "lvz.op@vtg.admin.ch", + "phone" : "+41 58 464 96 43", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.0653989, 46.1107689 ], + [ 7.0653945, 46.1106277 ], + [ 7.0653795, 46.1104868 ], + [ 7.065354, 46.1103466 ], + [ 7.0653179, 46.1102076 ], + [ 7.0652714, 46.11007 ], + [ 7.0652147, 46.1099344 ], + [ 7.0651478, 46.109801 ], + [ 7.065071, 46.1096702 ], + [ 7.0649844, 46.1095424 ], + [ 7.0648883, 46.1094179 ], + [ 7.064783, 46.1092971 ], + [ 7.0646687, 46.1091803 ], + [ 7.0645459, 46.1090678 ], + [ 7.0644147, 46.1089599 ], + [ 7.0642755, 46.1088569 ], + [ 7.0641289, 46.1087592 ], + [ 7.063975, 46.1086669 ], + [ 7.0638145, 46.1085804 ], + [ 7.0636476, 46.1084998 ], + [ 7.0634749, 46.1084254 ], + [ 7.0632969, 46.1083574 ], + [ 7.063114, 46.1082959 ], + [ 7.0629267, 46.1082413 ], + [ 7.0627355, 46.1081935 ], + [ 7.0625411, 46.1081527 ], + [ 7.0623438, 46.108119 ], + [ 7.0621442, 46.1080926 ], + [ 7.061943, 46.1080735 ], + [ 7.0617405, 46.1080617 ], + [ 7.0615375, 46.1080574 ], + [ 7.0613344, 46.1080604 ], + [ 7.0611318, 46.1080708 ], + [ 7.0609303, 46.1080885 ], + [ 7.0607304, 46.1081136 ], + [ 7.0605326999999996, 46.1081459 ], + [ 7.0603376, 46.1081854 ], + [ 7.0601458, 46.1082319 ], + [ 7.0599578, 46.1082854 ], + [ 7.059774, 46.1083456 ], + [ 7.0595951, 46.1084124 ], + [ 7.0594213, 46.1084856 ], + [ 7.0592534, 46.1085651 ], + [ 7.0590916, 46.1086505 ], + [ 7.0589365, 46.1087418 ], + [ 7.0587885, 46.1088385 ], + [ 7.058648, 46.1089405 ], + [ 7.0585153, 46.1090475 ], + [ 7.0583909, 46.1091592 ], + [ 7.058275, 46.1092752 ], + [ 7.058168, 46.1093954 ], + [ 7.0580702, 46.1095192 ], + [ 7.0579819, 46.1096464 ], + [ 7.0579032, 46.1097767 ], + [ 7.0578345, 46.1099096 ], + [ 7.0577758, 46.1100449 ], + [ 7.0577275, 46.1101821 ], + [ 7.0576895, 46.1103209 ], + [ 7.057662, 46.1104609 ], + [ 7.057645, 46.1106017 ], + [ 7.0576387, 46.1107429 ], + [ 7.0576431, 46.1108842 ], + [ 7.057658, 46.1110251 ], + [ 7.0576834999999996, 46.1111652 ], + [ 7.0577196, 46.1113043 ], + [ 7.0577661, 46.1114418 ], + [ 7.0578228, 46.1115775 ], + [ 7.0578897, 46.1117109 ], + [ 7.0579665, 46.1118417 ], + [ 7.0580531, 46.1119695 ], + [ 7.0581491, 46.112094 ], + [ 7.0582544, 46.1122148 ], + [ 7.0583687, 46.1123316 ], + [ 7.0584916, 46.1124441 ], + [ 7.0586227, 46.112552 ], + [ 7.0587619, 46.112655 ], + [ 7.0589085, 46.1127527 ], + [ 7.0590624, 46.112845 ], + [ 7.0592229, 46.1129315 ], + [ 7.0593898, 46.1130121 ], + [ 7.0595625, 46.1130865 ], + [ 7.0597405, 46.1131546 ], + [ 7.0599235, 46.113216 ], + [ 7.0601108, 46.1132707 ], + [ 7.0603019, 46.1133185 ], + [ 7.0604964, 46.1133593 ], + [ 7.0606937, 46.1133929 ], + [ 7.0608933, 46.1134194 ], + [ 7.0610946, 46.1134385 ], + [ 7.061297, 46.1134502 ], + [ 7.0615001, 46.1134546 ], + [ 7.0617032, 46.1134516 ], + [ 7.0619058, 46.1134412 ], + [ 7.0621073, 46.1134234 ], + [ 7.0623072, 46.1133983 ], + [ 7.062505, 46.113366 ], + [ 7.0627001, 46.1133265 ], + [ 7.0628919, 46.11328 ], + [ 7.0630799, 46.1132266 ], + [ 7.0632637, 46.1131664 ], + [ 7.0634427, 46.1130996 ], + [ 7.0636164, 46.1130263 ], + [ 7.0637844, 46.1129468 ], + [ 7.0639461, 46.1128614 ], + [ 7.0641013, 46.1127701 ], + [ 7.0642493, 46.1126734 ], + [ 7.0643898, 46.1125714 ], + [ 7.0645225, 46.1124644 ], + [ 7.0646469, 46.1123527 ], + [ 7.0647628, 46.1122366 ], + [ 7.0648698, 46.1121165 ], + [ 7.0649675, 46.1119927 ], + [ 7.0650559, 46.1118654 ], + [ 7.0651345, 46.1117352 ], + [ 7.0652032, 46.1116022 ], + [ 7.0652619, 46.111467 ], + [ 7.0653102, 46.1113297 ], + [ 7.0653482, 46.1111909 ], + [ 7.0653757, 46.1110509 ], + [ 7.0653926, 46.1109102 ], + [ 7.0653989, 46.1107689 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0010", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Bâtiaz", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Bâtiaz", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Bâtiaz", + "lang" : "it-CH" + }, + { + "text" : "Substation Bâtiaz", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.2103615, 47.0180439 ], + [ 9.2108284, 47.0184781 ], + [ 9.2109728, 47.0188057 ], + [ 9.2113614, 47.0195658 ], + [ 9.2114351, 47.0202243 ], + [ 9.2116852, 47.0208318 ], + [ 9.211833, 47.0213016 ], + [ 9.2120796, 47.0213517 ], + [ 9.2126239, 47.0216102 ], + [ 9.2126753, 47.0216901 ], + [ 9.2126775, 47.0217085 ], + [ 9.212687, 47.0217754 ], + [ 9.2127451, 47.0217737 ], + [ 9.2127946, 47.0217688 ], + [ 9.2128275, 47.0217642 ], + [ 9.2128479, 47.0217555 ], + [ 9.2128761, 47.0217325 ], + [ 9.2128949, 47.0217146 ], + [ 9.2129028, 47.0217071 ], + [ 9.2129192, 47.0217019 ], + [ 9.2129416, 47.0217023 ], + [ 9.212944, 47.0217023 ], + [ 9.2129814, 47.0217068 ], + [ 9.2130225, 47.0216986 ], + [ 9.2130387, 47.0216909 ], + [ 9.2130454, 47.0216824 ], + [ 9.2130475, 47.0216746 ], + [ 9.2130528, 47.0216548 ], + [ 9.2130566, 47.0216447 ], + [ 9.21307, 47.021632 ], + [ 9.2130997, 47.021614 ], + [ 9.2131433, 47.0215975 ], + [ 9.2131706, 47.0215896 ], + [ 9.2131925, 47.0215867 ], + [ 9.2132229, 47.0215896 ], + [ 9.2132425, 47.0215968 ], + [ 9.2132676, 47.021609 ], + [ 9.2133013, 47.0216285 ], + [ 9.2133181, 47.0216358 ], + [ 9.2133847, 47.0216489 ], + [ 9.2134151, 47.0216543 ], + [ 9.2134401, 47.0216581 ], + [ 9.2134568, 47.0216654 ], + [ 9.2134709, 47.0216752 ], + [ 9.2134905, 47.0216841 ], + [ 9.213521, 47.0216903 ], + [ 9.2135432, 47.0216958 ], + [ 9.2135836, 47.0217085 ], + [ 9.2136157, 47.0217231 ], + [ 9.2136394, 47.0217319 ], + [ 9.2136588, 47.0217358 ], + [ 9.2136797, 47.0217413 ], + [ 9.213702, 47.021751 ], + [ 9.2137218, 47.0217649 ], + [ 9.2137456, 47.0217762 ], + [ 9.2137708, 47.0217892 ], + [ 9.2137936, 47.0218155 ], + [ 9.2137942, 47.0218175 ], + [ 9.2137947, 47.0218194 ], + [ 9.2137999, 47.0218388 ], + [ 9.2137957, 47.0218814 ], + [ 9.2137879, 47.021915 ], + [ 9.213784799999999, 47.0219283 ], + [ 9.2137863, 47.0219759 ], + [ 9.2137904, 47.0220175 ], + [ 9.2138288, 47.0221004 ], + [ 9.2138493, 47.022136 ], + [ 9.2138663, 47.0221508 ], + [ 9.2139041, 47.0221702 ], + [ 9.2139461, 47.0221921 ], + [ 9.213966, 47.0222093 ], + [ 9.2140047, 47.0222588 ], + [ 9.2140571, 47.0223031 ], + [ 9.2140963, 47.0223234 ], + [ 9.2141173, 47.0223314 ], + [ 9.2141302, 47.0223328 ], + [ 9.2141311, 47.0223329 ], + [ 9.214153, 47.0223292 ], + [ 9.2141967, 47.0223169 ], + [ 9.2142324, 47.0223138 ], + [ 9.2142905, 47.022318 ], + [ 9.2143183, 47.0223267 ], + [ 9.2143476, 47.0223396 ], + [ 9.2143632, 47.0223511 ], + [ 9.2144069, 47.0223838 ], + [ 9.2144393, 47.022405 ], + [ 9.214452, 47.0224157 ], + [ 9.2144665, 47.022438 ], + [ 9.2144755, 47.0224656 ], + [ 9.2144787, 47.0224753 ], + [ 9.2144853, 47.0225095 ], + [ 9.2144914, 47.0225286 ], + [ 9.2145, 47.0225393 ], + [ 9.2145113, 47.0225466 ], + [ 9.2145308, 47.0225538 ], + [ 9.2145612, 47.0225576 ], + [ 9.2145862, 47.022563 ], + [ 9.2146058, 47.0225727 ], + [ 9.2146298, 47.0225924 ], + [ 9.2146457, 47.0226139 ], + [ 9.2146627, 47.0226303 ], + [ 9.2146797, 47.0226434 ], + [ 9.2147176, 47.0226662 ], + [ 9.2147765, 47.022697 ], + [ 9.2147822, 47.0227001 ], + [ 9.2148101, 47.0227149 ], + [ 9.214841, 47.0227328 ], + [ 9.2148509, 47.022741 ], + [ 9.2148641, 47.0227666 ], + [ 9.2148799, 47.0227873 ], + [ 9.2148956, 47.0228029 ], + [ 9.2149111, 47.0228143 ], + [ 9.2149517, 47.0228346 ], + [ 9.2149617, 47.0228388 ], + [ 9.2149922, 47.0228515 ], + [ 9.2150273, 47.022871 ], + [ 9.215061, 47.0228939 ], + [ 9.2150905, 47.0229109 ], + [ 9.2151201, 47.0229314 ], + [ 9.2151399, 47.0229478 ], + [ 9.2151556, 47.022965 ], + [ 9.2151756, 47.0229881 ], + [ 9.2151791, 47.0229935 ], + [ 9.2151873, 47.0230063 ], + [ 9.2152188, 47.023045 ], + [ 9.2152444, 47.0230705 ], + [ 9.2152725, 47.0230876 ], + [ 9.2153018, 47.0231005 ], + [ 9.215309, 47.0231096 ], + [ 9.215314, 47.0231346 ], + [ 9.2153211, 47.0231428 ], + [ 9.2153379, 47.0231501 ], + [ 9.2153574, 47.0231564 ], + [ 9.2153645, 47.0231647 ], + [ 9.2153691, 47.023178 ], + [ 9.215377, 47.0232121 ], + [ 9.215392, 47.0232511 ], + [ 9.2154112, 47.02329 ], + [ 9.2154259, 47.0233182 ], + [ 9.2154561, 47.0233578 ], + [ 9.2154864, 47.0234024 ], + [ 9.2155151, 47.0234378 ], + [ 9.215531, 47.0234626 ], + [ 9.215544, 47.0234791 ], + [ 9.2155864, 47.0235135 ], + [ 9.2156206, 47.0235489 ], + [ 9.2156491, 47.0235777 ], + [ 9.2156789, 47.0236048 ], + [ 9.2156973, 47.0236212 ], + [ 9.2157157, 47.0236312 ], + [ 9.2157211, 47.0236342 ], + [ 9.2157406, 47.0236389 ], + [ 9.2157697, 47.0236451 ], + [ 9.2158102, 47.0236637 ], + [ 9.2158187, 47.0236702 ], + [ 9.215823199999999, 47.0236819 ], + [ 9.2158214, 47.0237119 ], + [ 9.2158251, 47.0237312 ], + [ 9.215828, 47.0237469 ], + [ 9.2158385, 47.0237718 ], + [ 9.2158528, 47.0237891 ], + [ 9.2158697, 47.0238013 ], + [ 9.215916, 47.0238273 ], + [ 9.2159483, 47.0238452 ], + [ 9.215952, 47.0238484 ], + [ 9.2159596, 47.0238551 ], + [ 9.2159755, 47.0238774 ], + [ 9.2159854, 47.0238872 ], + [ 9.2159994, 47.0238928 ], + [ 9.2160229, 47.0238958 ], + [ 9.2160644, 47.0239002 ], + [ 9.216085, 47.0238991 ], + [ 9.2161166, 47.0238944 ], + [ 9.2161252, 47.0238929 ], + [ 9.2161431, 47.0238896 ], + [ 9.2161467, 47.023889 ], + [ 9.2161702, 47.0238894 ], + [ 9.2161937, 47.0238916 ], + [ 9.2162239, 47.0238986 ], + [ 9.2162242, 47.0238986 ], + [ 9.2162478, 47.0239041 ], + [ 9.2162837, 47.0239078 ], + [ 9.2163039, 47.0239075 ], + [ 9.2163099, 47.0239074 ], + [ 9.2163333, 47.0239053 ], + [ 9.2163655, 47.0239042 ], + [ 9.2163732, 47.0239039 ], + [ 9.2164062, 47.0239026 ], + [ 9.2164528, 47.0238952 ], + [ 9.2165309, 47.0238798 ], + [ 9.2165636, 47.0238741 ], + [ 9.2165884, 47.0238698 ], + [ 9.216603, 47.023868 ], + [ 9.2166275, 47.0238651 ], + [ 9.2166283, 47.023865 ], + [ 9.2166531, 47.0238663 ], + [ 9.2166767, 47.0238734 ], + [ 9.2166991, 47.0238831 ], + [ 9.2167316, 47.0239093 ], + [ 9.216757, 47.0239343 ], + [ 9.2167601, 47.0239373 ], + [ 9.2167798, 47.023952 ], + [ 9.2168007, 47.0239592 ], + [ 9.2168269, 47.0239588 ], + [ 9.216857, 47.0239525 ], + [ 9.2168589, 47.0239518 ], + [ 9.2169033, 47.0239343 ], + [ 9.2169319, 47.0239238 ], + [ 9.2169565, 47.0239193 ], + [ 9.2169744, 47.023919 ], + [ 9.2170035, 47.0239228 ], + [ 9.2170243, 47.0239275 ], + [ 9.2170509, 47.0239396 ], + [ 9.2170772, 47.0239597 ], + [ 9.217082, 47.0239633 ], + [ 9.2171199, 47.0239853 ], + [ 9.2171631, 47.0240021 ], + [ 9.217209, 47.0240156 ], + [ 9.2172407, 47.0240168 ], + [ 9.2172737, 47.024013 ], + [ 9.2173052, 47.0240075 ], + [ 9.2173183, 47.024005 ], + [ 9.2173381, 47.0240012 ], + [ 9.217367, 47.0239999 ], + [ 9.2173836, 47.0240038 ], + [ 9.2174352, 47.0240206 ], + [ 9.2174677, 47.0240341 ], + [ 9.2174789, 47.0240362 ], + [ 9.2174894, 47.024043 ], + [ 9.2175441, 47.0240656 ], + [ 9.2176224, 47.0241029 ], + [ 9.2176885, 47.0241453 ], + [ 9.2177503, 47.024181 ], + [ 9.2177701, 47.0241974 ], + [ 9.2177818, 47.0242173 ], + [ 9.2177895, 47.0242368 ], + [ 9.2177922, 47.0242438 ], + [ 9.2178081, 47.0242653 ], + [ 9.2178238, 47.0242826 ], + [ 9.2178548, 47.0243038 ], + [ 9.2179039, 47.0243331 ], + [ 9.2179656, 47.0243647 ], + [ 9.2180089, 47.0243841 ], + [ 9.2180458, 47.024396 ], + [ 9.2180535, 47.0243984 ], + [ 9.2180711, 47.0244039 ], + [ 9.2180715, 47.024404 ], + [ 9.2180989, 47.0244264 ], + [ 9.2181197, 47.0244434 ], + [ 9.2181324, 47.0244557 ], + [ 9.2181399, 47.0244723 ], + [ 9.2181484, 47.0244821 ], + [ 9.2181624, 47.0244894 ], + [ 9.2182152, 47.0245012 ], + [ 9.2182291, 47.0245051 ], + [ 9.2182432, 47.0245149 ], + [ 9.2182586, 47.024523 ], + [ 9.2182878, 47.0245301 ], + [ 9.2183141, 47.0245339 ], + [ 9.2183252, 47.0245387 ], + [ 9.2183623, 47.0245766 ], + [ 9.2183821, 47.0245921 ], + [ 9.2184086, 47.0246026 ], + [ 9.2184279, 47.0246039 ], + [ 9.2184515, 47.024602 ], + [ 9.218452599999999, 47.0246019 ], + [ 9.2184773, 47.024599 ], + [ 9.2184939, 47.0246004 ], + [ 9.2185106, 47.024606 ], + [ 9.2185207, 47.0246192 ], + [ 9.2185339, 47.0246432 ], + [ 9.2185542, 47.0246771 ], + [ 9.2185597, 47.0246886 ], + [ 9.2185705, 47.0247111 ], + [ 9.2185839, 47.0247443 ], + [ 9.2185943, 47.0247667 ], + [ 9.2186128, 47.0247847 ], + [ 9.2186309, 47.0247928 ], + [ 9.2186698, 47.0248022 ], + [ 9.2186935, 47.0248102 ], + [ 9.2187268, 47.0248164 ], + [ 9.2187502, 47.0248177 ], + [ 9.2187777, 47.024814 ], + [ 9.2188167, 47.0248091 ], + [ 9.218831, 47.0248073 ], + [ 9.2188873, 47.0248078 ], + [ 9.2189493, 47.0248325 ], + [ 9.2190448, 47.0248459 ], + [ 9.2190619, 47.0248513 ], + [ 9.21909, 47.0248602 ], + [ 9.2191319, 47.0248826 ], + [ 9.2191705, 47.0249032 ], + [ 9.2192083, 47.0249218 ], + [ 9.2192208, 47.0249266 ], + [ 9.2192334, 47.0249314 ], + [ 9.219264, 47.0249401 ], + [ 9.2192931, 47.0249472 ], + [ 9.2193211, 47.0249593 ], + [ 9.2193309, 47.0249658 ], + [ 9.2193531, 47.0249705 ], + [ 9.219378, 47.024971 ], + [ 9.2194151, 47.0249687 ], + [ 9.2194344, 47.0249684 ], + [ 9.2194662, 47.0249721 ], + [ 9.2194966, 47.0249767 ], + [ 9.2195123, 47.0249749 ], + [ 9.2195296, 47.0249728 ], + [ 9.2195927, 47.0249644 ], + [ 9.2196465, 47.0249644 ], + [ 9.2197002, 47.0249653 ], + [ 9.2197637, 47.0249693 ], + [ 9.2198177, 47.0249752 ], + [ 9.2198551, 47.0249813 ], + [ 9.2198814, 47.0249859 ], + [ 9.2199089, 47.0249838 ], + [ 9.2199446, 47.0249808 ], + [ 9.2199805, 47.0249819 ], + [ 9.2199916, 47.0249842 ], + [ 9.2200046, 47.0249902 ], + [ 9.2200196, 47.0249971 ], + [ 9.2200376, 47.0250002 ], + [ 9.2200642, 47.0249973 ], + [ 9.2200911, 47.0249944 ], + [ 9.2201016, 47.0249928 ], + [ 9.2201158, 47.0249907 ], + [ 9.2201724, 47.0249923 ], + [ 9.2202206, 47.0249933 ], + [ 9.2203004, 47.0249887 ], + [ 9.2203376, 47.024989 ], + [ 9.2203667, 47.0249927 ], + [ 9.2204069, 47.0250005 ], + [ 9.2204614, 47.0250085 ], + [ 9.2204996, 47.0250141 ], + [ 9.2205674, 47.0250231 ], + [ 9.2206076, 47.0250283 ], + [ 9.2206167, 47.0250289 ], + [ 9.2206697, 47.0250324 ], + [ 9.2206974, 47.0250361 ], + [ 9.2207155, 47.0250434 ], + [ 9.2207325, 47.0250565 ], + [ 9.2207373, 47.0250611 ], + [ 9.2207453, 47.0250688 ], + [ 9.220769, 47.0250776 ], + [ 9.2208217, 47.0250885 ], + [ 9.2208715, 47.0250961 ], + [ 9.2209241, 47.0251028 ], + [ 9.2209396, 47.0251072 ], + [ 9.2209575, 47.0251123 ], + [ 9.2210006, 47.025125 ], + [ 9.2210279, 47.0251326 ], + [ 9.2211063, 47.0251543 ], + [ 9.2211509, 47.0251711 ], + [ 9.2211942, 47.0251897 ], + [ 9.2212264, 47.025205 ], + [ 9.2212491, 47.0252272 ], + [ 9.221286, 47.0252584 ], + [ 9.2212954, 47.025267 ], + [ 9.2213129, 47.025283 ], + [ 9.2213203, 47.0252971 ], + [ 9.2213208, 47.0253121 ], + [ 9.2213266, 47.025322 ], + [ 9.2213364, 47.0253286 ], + [ 9.2213531, 47.0253325 ], + [ 9.2214129, 47.0253491 ], + [ 9.2214352, 47.025358 ], + [ 9.2214522, 47.0253719 ], + [ 9.2214638, 47.0253909 ], + [ 9.2214724, 47.0254008 ], + [ 9.2214849, 47.0254039 ], + [ 9.2215249, 47.0254058 ], + [ 9.2215388, 47.025409 ], + [ 9.2215667, 47.0254194 ], + [ 9.2215807, 47.025425 ], + [ 9.2215932, 47.0254242 ], + [ 9.2215985, 47.0254226 ], + [ 9.2216282, 47.0254135 ], + [ 9.2216676, 47.0254103 ], + [ 9.2216927, 47.025415 ], + [ 9.2217158, 47.0254236 ], + [ 9.2217313, 47.0254333 ], + [ 9.2217413, 47.0254397 ], + [ 9.2217962, 47.0254656 ], + [ 9.2218235, 47.0254739 ], + [ 9.2218634, 47.0254861 ], + [ 9.2218988, 47.0254894 ], + [ 9.221923, 47.0254878 ], + [ 9.2219237, 47.0254877 ], + [ 9.2220022, 47.0254738 ], + [ 9.2220271, 47.0254708 ], + [ 9.2220481, 47.0254769 ], + [ 9.2220838, 47.0254903 ], + [ 9.2221089, 47.0254937 ], + [ 9.2221297, 47.0254934 ], + [ 9.2221546, 47.025493 ], + [ 9.2222168, 47.0254882 ], + [ 9.2222876, 47.0254922 ], + [ 9.222344, 47.0255002 ], + [ 9.2223714, 47.0255112 ], + [ 9.2223991, 47.0255324 ], + [ 9.2224225, 47.0255486 ], + [ 9.222452, 47.0255609 ], + [ 9.2224632, 47.025569 ], + [ 9.2224796, 47.0255808 ], + [ 9.2224925, 47.0255933 ], + [ 9.222543, 47.0256116 ], + [ 9.2226057, 47.0256234 ], + [ 9.2226641, 47.0256288 ], + [ 9.2227202, 47.0256292 ], + [ 9.2228011, 47.0256241 ], + [ 9.2228446, 47.0256196 ], + [ 9.2228887, 47.0256144 ], + [ 9.2229067, 47.0256122 ], + [ 9.2229358, 47.0256117 ], + [ 9.223073, 47.0256108 ], + [ 9.2231499, 47.0256096 ], + [ 9.2232063, 47.0256189 ], + [ 9.2232438, 47.0256209 ], + [ 9.2232727, 47.0256166 ], + [ 9.2233038, 47.0256148 ], + [ 9.2233269, 47.0256195 ], + [ 9.2233417, 47.0256295 ], + [ 9.2233484, 47.0256434 ], + [ 9.2233655, 47.0256545 ], + [ 9.2233675, 47.0256558 ], + [ 9.2234053, 47.025668 ], + [ 9.2234222, 47.0256766 ], + [ 9.2234459, 47.0257004 ], + [ 9.2234608, 47.0257129 ], + [ 9.2234818, 47.0257202 ], + [ 9.2235422, 47.0257289 ], + [ 9.2235696, 47.0257328 ], + [ 9.2236155, 47.0257398 ], + [ 9.2236596, 47.0257543 ], + [ 9.2236953, 47.0257652 ], + [ 9.2237309, 47.0257723 ], + [ 9.2237768, 47.0257779 ], + [ 9.2237977, 47.0257776 ], + [ 9.2238142, 47.0257773 ], + [ 9.2238433, 47.0257769 ], + [ 9.2238725, 47.0257815 ], + [ 9.2239042, 47.0257963 ], + [ 9.2239337, 47.0258098 ], + [ 9.2239446, 47.0258167 ], + [ 9.2239804, 47.0258396 ], + [ 9.2240082, 47.0258621 ], + [ 9.2240313, 47.0258707 ], + [ 9.2240605, 47.025874 ], + [ 9.2240979, 47.0258722 ], + [ 9.2241376, 47.0258779 ], + [ 9.2242065, 47.0258883 ], + [ 9.2242358, 47.0258942 ], + [ 9.2242745, 47.0259047 ], + [ 9.2242756, 47.025905 ], + [ 9.2242804, 47.025907 ], + [ 9.2243589, 47.0259374 ], + [ 9.2243682, 47.0259404 ], + [ 9.2244352, 47.0259559 ], + [ 9.224471, 47.0259694 ], + [ 9.2244921, 47.025978 ], + [ 9.2245296, 47.0259812 ], + [ 9.2245528, 47.0259923 ], + [ 9.2245764, 47.0260135 ], + [ 9.2246121, 47.0260257 ], + [ 9.2246372, 47.0260317 ], + [ 9.2246542, 47.0260403 ], + [ 9.2246621, 47.0260457 ], + [ 9.2246636, 47.0260462 ], + [ 9.2248761, 47.0261647 ], + [ 9.2249488, 47.0262052 ], + [ 9.2251332, 47.0265068 ], + [ 9.2252399, 47.0266174 ], + [ 9.2254217, 47.0267312 ], + [ 9.2255662, 47.026807 ], + [ 9.2258001, 47.026842 ], + [ 9.2259852, 47.026829 ], + [ 9.2263539, 47.0267598 ], + [ 9.2268839, 47.0268556 ], + [ 9.227396, 47.0270835 ], + [ 9.2276202, 47.0272424 ], + [ 9.2280525, 47.027299 ], + [ 9.2282435, 47.0274436 ], + [ 9.2282855, 47.0273291 ], + [ 9.2282979, 47.0272912 ], + [ 9.2283112, 47.0272534 ], + [ 9.2283254, 47.0272158 ], + [ 9.2283406, 47.0271784 ], + [ 9.2283566, 47.0271412 ], + [ 9.2283736, 47.0271041 ], + [ 9.2283807, 47.0270894 ], + [ 9.2283882, 47.0270747 ], + [ 9.228396, 47.0270601 ], + [ 9.2284042, 47.0270457 ], + [ 9.2284127, 47.0270313 ], + [ 9.2284216, 47.027017 ], + [ 9.2284307, 47.0270028 ], + [ 9.2284403, 47.0269887 ], + [ 9.2284502, 47.0269747 ], + [ 9.2284604, 47.0269609 ], + [ 9.2284699, 47.0269484 ], + [ 9.2284798, 47.026936 ], + [ 9.22849, 47.0269237 ], + [ 9.2285004, 47.0269115 ], + [ 9.2285111, 47.0268995 ], + [ 9.2285222, 47.0268875 ], + [ 9.2285334, 47.0268757 ], + [ 9.228545, 47.0268641 ], + [ 9.2285569, 47.0268525 ], + [ 9.228569, 47.0268411 ], + [ 9.2285813, 47.0268298 ], + [ 9.2285926, 47.0268198 ], + [ 9.2286042, 47.0268099 ], + [ 9.228616, 47.0268002 ], + [ 9.228628, 47.0267907 ], + [ 9.2286402, 47.0267812 ], + [ 9.2286527, 47.0267719 ], + [ 9.2286654, 47.0267628 ], + [ 9.2286783, 47.0267537 ], + [ 9.2286915, 47.0267449 ], + [ 9.2287048, 47.0267362 ], + [ 9.2287184, 47.0267276 ], + [ 9.2287321, 47.0267192 ], + [ 9.2287561, 47.0267051 ], + [ 9.2287803, 47.0266912 ], + [ 9.2288049, 47.0266776 ], + [ 9.2288297, 47.0266643 ], + [ 9.2288549, 47.0266513 ], + [ 9.2288804, 47.0266385 ], + [ 9.2289062, 47.026626 ], + [ 9.2289352, 47.0266122 ], + [ 9.2289685, 47.0266013 ], + [ 9.2289751, 47.0265993 ], + [ 9.2289817, 47.0265973 ], + [ 9.2289883, 47.0265954 ], + [ 9.228995, 47.0265935 ], + [ 9.2290017, 47.0265918 ], + [ 9.2290085, 47.0265901 ], + [ 9.2290153, 47.0265885 ], + [ 9.2290222, 47.026587 ], + [ 9.2290291, 47.0265855 ], + [ 9.229036, 47.0265841 ], + [ 9.229341, 47.0265095 ], + [ 9.2294595, 47.0264424 ], + [ 9.2294673, 47.0264373 ], + [ 9.2294749, 47.0264321 ], + [ 9.2294824, 47.0264268 ], + [ 9.2294897, 47.0264214 ], + [ 9.229497, 47.026416 ], + [ 9.229504, 47.0264104 ], + [ 9.229511, 47.0264048 ], + [ 9.2295178, 47.0263991 ], + [ 9.2295244, 47.0263933 ], + [ 9.2295309, 47.0263875 ], + [ 9.2295373, 47.0263816 ], + [ 9.2295435, 47.0263755 ], + [ 9.2295495, 47.0263695 ], + [ 9.2295554, 47.0263633 ], + [ 9.2295612, 47.0263571 ], + [ 9.2295668, 47.0263508 ], + [ 9.2295722, 47.0263445 ], + [ 9.2295775, 47.0263381 ], + [ 9.2295826, 47.0263316 ], + [ 9.2295947, 47.0263163 ], + [ 9.2296071, 47.0263011 ], + [ 9.22962, 47.0262861 ], + [ 9.2296331, 47.0262712 ], + [ 9.2296467, 47.0262565 ], + [ 9.2296606, 47.0262419 ], + [ 9.2296749, 47.0262275 ], + [ 9.2296895, 47.0262133 ], + [ 9.2297068, 47.0261971 ], + [ 9.2297244, 47.0261812 ], + [ 9.2297424, 47.0261654 ], + [ 9.2297608, 47.0261499 ], + [ 9.2297796, 47.0261346 ], + [ 9.2297901, 47.0261261 ], + [ 9.2298004, 47.0261174 ], + [ 9.2298104, 47.0261087 ], + [ 9.2298202, 47.0260998 ], + [ 9.2298298, 47.0260909 ], + [ 9.2298392, 47.0260818 ], + [ 9.2298483, 47.0260726 ], + [ 9.2298573, 47.0260633 ], + [ 9.229866, 47.0260539 ], + [ 9.2300481, 47.0258173 ], + [ 9.2300782, 47.0258144 ], + [ 9.2302842, 47.0257947 ], + [ 9.2304447, 47.0256744 ], + [ 9.2304975, 47.0256561 ], + [ 9.2305507, 47.0256384 ], + [ 9.2306044, 47.0256213 ], + [ 9.2306584, 47.0256048 ], + [ 9.2307129, 47.0255889 ], + [ 9.2307677, 47.0255737 ], + [ 9.230823000000001, 47.0255591 ], + [ 9.2308785, 47.0255451 ], + [ 9.2309344, 47.0255318 ], + [ 9.2309906, 47.0255191 ], + [ 9.2310864, 47.0254973 ], + [ 9.2311817, 47.0254744 ], + [ 9.2312765, 47.0254504 ], + [ 9.2313706, 47.0254253 ], + [ 9.2314641, 47.0253992 ], + [ 9.231915, 47.0252676 ], + [ 9.232027, 47.0252334 ], + [ 9.2321381, 47.0251981 ], + [ 9.2322483, 47.0251614 ], + [ 9.2323577, 47.0251234 ], + [ 9.2324357, 47.0250952 ], + [ 9.2325131, 47.0250661 ], + [ 9.2325898, 47.0250361 ], + [ 9.2326657, 47.0250052 ], + [ 9.2327408, 47.0249735 ], + [ 9.2331158, 47.0248141 ], + [ 9.2333121, 47.0247327 ], + [ 9.2335098, 47.0246527 ], + [ 9.2335662, 47.0246297 ], + [ 9.233622, 47.0246061 ], + [ 9.2336773, 47.0245819 ], + [ 9.2337321, 47.0245571 ], + [ 9.2337862, 47.0245317 ], + [ 9.2338398, 47.0245058 ], + [ 9.2338927, 47.0244792 ], + [ 9.2344478, 47.0242 ], + [ 9.2348168, 47.0241433 ], + [ 9.234847, 47.0241407 ], + [ 9.2348771, 47.0241377 ], + [ 9.2349071, 47.0241344 ], + [ 9.234937, 47.0241308 ], + [ 9.2349669, 47.0241269 ], + [ 9.2351162, 47.024107 ], + [ 9.2351598, 47.024101 ], + [ 9.2352034, 47.0240945 ], + [ 9.2352467, 47.0240875 ], + [ 9.2352899, 47.02408 ], + [ 9.2353091, 47.0240767 ], + [ 9.2353284, 47.0240736 ], + [ 9.2353477, 47.0240707 ], + [ 9.2353672, 47.0240681 ], + [ 9.2353867, 47.0240656 ], + [ 9.2354062, 47.0240634 ], + [ 9.2354258, 47.0240614 ], + [ 9.2354454, 47.0240597 ], + [ 9.2354651, 47.0240582 ], + [ 9.235484, 47.0240569 ], + [ 9.2355029, 47.0240559 ], + [ 9.2355219, 47.0240551 ], + [ 9.2355408, 47.0240544 ], + [ 9.2355598, 47.024054 ], + [ 9.2355788, 47.0240539 ], + [ 9.2355978, 47.0240539 ], + [ 9.2356167, 47.0240541 ], + [ 9.2356357, 47.0240546 ], + [ 9.2358063, 47.0240575 ], + [ 9.2358275, 47.0240577 ], + [ 9.2358487, 47.0240582 ], + [ 9.2358698, 47.0240589 ], + [ 9.235891, 47.0240598 ], + [ 9.2359121, 47.024061 ], + [ 9.2359332, 47.0240624 ], + [ 9.2359542, 47.024064 ], + [ 9.2359752, 47.0240659 ], + [ 9.2359833, 47.0240666 ], + [ 9.2359913, 47.0240672 ], + [ 9.2359994, 47.0240677 ], + [ 9.2360075, 47.0240682 ], + [ 9.2360155, 47.0240685 ], + [ 9.2360236, 47.0240688 ], + [ 9.2360318, 47.0240689 ], + [ 9.2360398, 47.024069 ], + [ 9.236048, 47.024069 ], + [ 9.2360561, 47.0240689 ], + [ 9.2360642, 47.0240687 ], + [ 9.2360723, 47.0240684 ], + [ 9.2360803, 47.024068 ], + [ 9.2360884, 47.0240675 ], + [ 9.2360965, 47.0240669 ], + [ 9.2361045, 47.0240662 ], + [ 9.2361125, 47.0240654 ], + [ 9.2361206, 47.0240646 ], + [ 9.2361285, 47.0240636 ], + [ 9.2361365, 47.0240626 ], + [ 9.2361444, 47.0240615 ], + [ 9.2361512, 47.0240605 ], + [ 9.2361579, 47.0240595 ], + [ 9.2361646, 47.0240584 ], + [ 9.2361712, 47.0240572 ], + [ 9.2361779, 47.0240559 ], + [ 9.2361844, 47.0240546 ], + [ 9.236191, 47.0240532 ], + [ 9.2361975, 47.0240517 ], + [ 9.236204, 47.0240501 ], + [ 9.2362104, 47.0240485 ], + [ 9.2362168, 47.0240467 ], + [ 9.2362232, 47.0240449 ], + [ 9.2362295, 47.024043 ], + [ 9.2362357, 47.0240411 ], + [ 9.236242, 47.0240391 ], + [ 9.2362481, 47.024037 ], + [ 9.2362542, 47.0240348 ], + [ 9.2362603, 47.0240325 ], + [ 9.2362662, 47.0240302 ], + [ 9.2362722, 47.0240278 ], + [ 9.236278, 47.0240254 ], + [ 9.2362838, 47.0240228 ], + [ 9.2362895, 47.0240202 ], + [ 9.2362952, 47.0240176 ], + [ 9.2363008, 47.0240148 ], + [ 9.2363063, 47.024012 ], + [ 9.2363118, 47.0240092 ], + [ 9.2363172, 47.0240062 ], + [ 9.2363225, 47.0240032 ], + [ 9.2363277, 47.0240002 ], + [ 9.2363328, 47.0239971 ], + [ 9.2363379, 47.0239939 ], + [ 9.2363429, 47.0239906 ], + [ 9.2363478, 47.0239873 ], + [ 9.2363526, 47.023984 ], + [ 9.2363573, 47.0239806 ], + [ 9.2365016, 47.0229928 ], + [ 9.2365017, 47.0229898 ], + [ 9.2365018, 47.0229867 ], + [ 9.2365017, 47.0229837 ], + [ 9.2365016, 47.0229807 ], + [ 9.2365014, 47.0229776 ], + [ 9.2365012, 47.0229746 ], + [ 9.2365009, 47.0229716 ], + [ 9.2365004, 47.0229686 ], + [ 9.2365, 47.0229655 ], + [ 9.2364994, 47.0229625 ], + [ 9.2364988, 47.0229595 ], + [ 9.2364981, 47.0229565 ], + [ 9.2364973, 47.0229535 ], + [ 9.2364964, 47.0229506 ], + [ 9.2364955, 47.0229476 ], + [ 9.2364945, 47.0229446 ], + [ 9.2364934, 47.0229417 ], + [ 9.2364923, 47.0229388 ], + [ 9.236491, 47.0229358 ], + [ 9.2364897, 47.0229329 ], + [ 9.2364884, 47.0229301 ], + [ 9.2364869, 47.0229272 ], + [ 9.2364854, 47.0229243 ], + [ 9.2364838, 47.0229215 ], + [ 9.2364822, 47.0229187 ], + [ 9.2364804, 47.0229159 ], + [ 9.2364786, 47.0229131 ], + [ 9.2364768, 47.0229104 ], + [ 9.2364748, 47.0229076 ], + [ 9.2364728, 47.0229049 ], + [ 9.2364708, 47.0229022 ], + [ 9.2364686, 47.0228996 ], + [ 9.2364664, 47.0228969 ], + [ 9.2364642, 47.0228943 ], + [ 9.2364618, 47.0228917 ], + [ 9.2364594, 47.0228892 ], + [ 9.2364567, 47.0228862 ], + [ 9.236454, 47.0228832 ], + [ 9.2364513, 47.0228802 ], + [ 9.2364488, 47.0228772 ], + [ 9.2364463, 47.0228741 ], + [ 9.2364439, 47.022871 ], + [ 9.2364416, 47.0228678 ], + [ 9.2364394, 47.0228647 ], + [ 9.2364373, 47.0228615 ], + [ 9.2364352, 47.0228583 ], + [ 9.2364332, 47.022855 ], + [ 9.2364313, 47.0228518 ], + [ 9.2364295, 47.0228485 ], + [ 9.2364277, 47.0228452 ], + [ 9.2364261, 47.0228419 ], + [ 9.2364245, 47.0228385 ], + [ 9.236423, 47.0228352 ], + [ 9.2364217, 47.0228318 ], + [ 9.2364203, 47.0228284 ], + [ 9.236419099999999, 47.022825 ], + [ 9.236418, 47.0228215 ], + [ 9.2364169, 47.0228181 ], + [ 9.236416, 47.0228147 ], + [ 9.2364151, 47.0228112 ], + [ 9.2364143, 47.0228077 ], + [ 9.2364136, 47.0228043 ], + [ 9.236413, 47.0228008 ], + [ 9.2364125, 47.0227973 ], + [ 9.236412, 47.0227938 ], + [ 9.2364117, 47.0227903 ], + [ 9.2364114, 47.0227868 ], + [ 9.2364086, 47.0227282 ], + [ 9.2364071, 47.0226697 ], + [ 9.2364069, 47.0226111 ], + [ 9.2364082, 47.0225526 ], + [ 9.2364107, 47.0224941 ], + [ 9.2364132, 47.0224575 ], + [ 9.2364165, 47.0224209 ], + [ 9.2364206, 47.0223845 ], + [ 9.2364256, 47.022348 ], + [ 9.2364314, 47.0223116 ], + [ 9.236438, 47.0222753 ], + [ 9.2364455, 47.022239 ], + [ 9.2364538, 47.0222029 ], + [ 9.2365577, 47.0219868 ], + [ 9.2366517, 47.0217916 ], + [ 9.236656, 47.0217868 ], + [ 9.2366606, 47.021782 ], + [ 9.2366652, 47.0217773 ], + [ 9.2366699, 47.0217727 ], + [ 9.2366748, 47.0217681 ], + [ 9.2366798, 47.0217636 ], + [ 9.2366849, 47.0217591 ], + [ 9.2366901, 47.0217547 ], + [ 9.2366954, 47.0217504 ], + [ 9.2367008, 47.0217461 ], + [ 9.2367064, 47.0217419 ], + [ 9.236712, 47.0217378 ], + [ 9.2367177, 47.0217337 ], + [ 9.2367236, 47.0217297 ], + [ 9.2367295, 47.0217257 ], + [ 9.2367355, 47.0217219 ], + [ 9.2367417, 47.0217181 ], + [ 9.2367479, 47.0217143 ], + [ 9.2367542, 47.0217107 ], + [ 9.2367607, 47.0217071 ], + [ 9.2367672, 47.0217036 ], + [ 9.2367737, 47.0217002 ], + [ 9.2367804, 47.0216969 ], + [ 9.2367872, 47.0216936 ], + [ 9.236794, 47.0216904 ], + [ 9.2368009, 47.0216873 ], + [ 9.2368079, 47.0216843 ], + [ 9.236815, 47.0216813 ], + [ 9.2368395, 47.0216711 ], + [ 9.2368638, 47.0216606 ], + [ 9.2368878, 47.0216498 ], + [ 9.2369115, 47.0216388 ], + [ 9.2369349, 47.0216274 ], + [ 9.236958, 47.0216158 ], + [ 9.2369809, 47.0216039 ], + [ 9.2370034, 47.0215918 ], + [ 9.2370606, 47.0215608 ], + [ 9.2371184, 47.0215303 ], + [ 9.2371769, 47.0215004 ], + [ 9.2373493, 47.0214081 ], + [ 9.2374679, 47.0213417 ], + [ 9.2375879, 47.0212765 ], + [ 9.2376098, 47.0212646 ], + [ 9.2376313, 47.0212524 ], + [ 9.2376526, 47.0212401 ], + [ 9.2376735, 47.0212274 ], + [ 9.2376942, 47.0212146 ], + [ 9.2377145, 47.0212015 ], + [ 9.2377345, 47.0211882 ], + [ 9.2377542, 47.0211746 ], + [ 9.2377735, 47.0211609 ], + [ 9.2377925, 47.0211469 ], + [ 9.2378112, 47.0211327 ], + [ 9.2378277, 47.0211196 ], + [ 9.237844, 47.0211064 ], + [ 9.2378599, 47.0210929 ], + [ 9.2378755, 47.0210793 ], + [ 9.2378907, 47.0210655 ], + [ 9.2379056, 47.0210515 ], + [ 9.2379201, 47.0210374 ], + [ 9.2379343, 47.0210231 ], + [ 9.2379481, 47.0210086 ], + [ 9.2379615, 47.0209939 ], + [ 9.2379746, 47.0209791 ], + [ 9.2379873, 47.0209642 ], + [ 9.2380127, 47.0209343 ], + [ 9.2380387, 47.0209047 ], + [ 9.2380653, 47.0208754 ], + [ 9.2380927, 47.0208463 ], + [ 9.2381207, 47.0208176 ], + [ 9.2381494, 47.0207892 ], + [ 9.2381886, 47.0207503 ], + [ 9.2382271, 47.0207111 ], + [ 9.2382649, 47.0206716 ], + [ 9.2383525, 47.0205821 ], + [ 9.238523, 47.0205047 ], + [ 9.238533, 47.0205017 ], + [ 9.2385429, 47.0204987 ], + [ 9.2385527, 47.0204955 ], + [ 9.2385625, 47.0204922 ], + [ 9.2385722, 47.0204888 ], + [ 9.2385818, 47.0204853 ], + [ 9.2385913, 47.0204817 ], + [ 9.2386007, 47.020478 ], + [ 9.2386101, 47.0204741 ], + [ 9.2386193, 47.0204702 ], + [ 9.2386284, 47.0204661 ], + [ 9.2386374, 47.020462 ], + [ 9.2386464, 47.0204577 ], + [ 9.2386552, 47.0204534 ], + [ 9.2386799, 47.0204411 ], + [ 9.2387049, 47.0204291 ], + [ 9.2387302, 47.0204174 ], + [ 9.2387557, 47.0204059 ], + [ 9.2387815, 47.0203947 ], + [ 9.2388076, 47.0203838 ], + [ 9.2388124, 47.0203818 ], + [ 9.2388171, 47.0203797 ], + [ 9.2388218, 47.0203776 ], + [ 9.2388264, 47.0203754 ], + [ 9.238831, 47.0203732 ], + [ 9.2388355, 47.0203709 ], + [ 9.23884, 47.0203686 ], + [ 9.2388444, 47.0203662 ], + [ 9.2388488, 47.0203637 ], + [ 9.238853, 47.0203613 ], + [ 9.2388573, 47.0203587 ], + [ 9.2388614, 47.0203561 ], + [ 9.2388655, 47.0203535 ], + [ 9.2388695, 47.0203508 ], + [ 9.2388735, 47.0203481 ], + [ 9.2388774, 47.0203453 ], + [ 9.2388812, 47.0203424 ], + [ 9.238885, 47.0203396 ], + [ 9.2388886, 47.0203367 ], + [ 9.2388922, 47.0203337 ], + [ 9.2388958, 47.0203307 ], + [ 9.2388992, 47.0203277 ], + [ 9.2389026, 47.0203246 ], + [ 9.2389059, 47.0203215 ], + [ 9.2389091, 47.0203183 ], + [ 9.2389122, 47.0203151 ], + [ 9.2389153, 47.0203119 ], + [ 9.2389182, 47.0203086 ], + [ 9.2389211, 47.0203053 ], + [ 9.2389239, 47.020302 ], + [ 9.2389266, 47.0202986 ], + [ 9.2389293, 47.0202952 ], + [ 9.2389318, 47.0202918 ], + [ 9.2389353, 47.0202874 ], + [ 9.2389387, 47.020283 ], + [ 9.2389419, 47.0202785 ], + [ 9.238945, 47.020274 ], + [ 9.238948, 47.0202694 ], + [ 9.2389509, 47.0202649 ], + [ 9.2389537, 47.0202602 ], + [ 9.2389564, 47.0202556 ], + [ 9.2389589, 47.0202509 ], + [ 9.2389614, 47.0202462 ], + [ 9.2389637, 47.0202415 ], + [ 9.2389659, 47.0202367 ], + [ 9.2389679, 47.0202319 ], + [ 9.2389699, 47.0202271 ], + [ 9.2389717, 47.0202223 ], + [ 9.2389734, 47.0202174 ], + [ 9.238975, 47.0202126 ], + [ 9.2389764, 47.0202077 ], + [ 9.2389778, 47.0202028 ], + [ 9.2389789, 47.0201979 ], + [ 9.23898, 47.0201929 ], + [ 9.238981, 47.020188 ], + [ 9.2389818, 47.020183 ], + [ 9.2389825, 47.020178 ], + [ 9.2389831, 47.0201731 ], + [ 9.2389835, 47.0201681 ], + [ 9.2389839, 47.0201631 ], + [ 9.2389841, 47.0201581 ], + [ 9.2389841, 47.0201531 ], + [ 9.2389841, 47.0201481 ], + [ 9.2389839, 47.0201431 ], + [ 9.2389836, 47.0201382 ], + [ 9.2389832, 47.0201332 ], + [ 9.2389826, 47.0201282 ], + [ 9.2389819, 47.0201232 ], + [ 9.2389811, 47.0201183 ], + [ 9.2389801, 47.0201133 ], + [ 9.2389597, 47.0200351 ], + [ 9.238959, 47.0200296 ], + [ 9.2389582, 47.0200241 ], + [ 9.2389572, 47.0200187 ], + [ 9.2389561, 47.0200132 ], + [ 9.2389548, 47.0200077 ], + [ 9.2389534, 47.0200023 ], + [ 9.2389519, 47.0199969 ], + [ 9.2389503, 47.0199915 ], + [ 9.2389485, 47.0199861 ], + [ 9.2389465, 47.0199808 ], + [ 9.2389445, 47.0199754 ], + [ 9.2389423, 47.0199701 ], + [ 9.2389399, 47.0199648 ], + [ 9.2389375, 47.0199596 ], + [ 9.2389349, 47.0199544 ], + [ 9.2389321, 47.0199492 ], + [ 9.2389293, 47.019944 ], + [ 9.2389263, 47.0199389 ], + [ 9.2389232, 47.0199338 ], + [ 9.2389199, 47.0199288 ], + [ 9.2389166, 47.0199238 ], + [ 9.2389131, 47.0199188 ], + [ 9.2389094, 47.0199139 ], + [ 9.2389069, 47.0199104 ], + [ 9.2389044, 47.0199069 ], + [ 9.2389021, 47.0199034 ], + [ 9.2388998, 47.0198999 ], + [ 9.2388976, 47.0198963 ], + [ 9.2388955, 47.0198927 ], + [ 9.2388935, 47.0198891 ], + [ 9.2388916, 47.0198854 ], + [ 9.2388898, 47.0198818 ], + [ 9.238888, 47.0198781 ], + [ 9.2388864, 47.0198744 ], + [ 9.2388848, 47.0198706 ], + [ 9.2388834, 47.0198669 ], + [ 9.238882, 47.0198631 ], + [ 9.2388807, 47.0198594 ], + [ 9.2388796, 47.0198556 ], + [ 9.2388785, 47.0198518 ], + [ 9.2388775, 47.019848 ], + [ 9.2388766, 47.0198442 ], + [ 9.2388758, 47.0198403 ], + [ 9.2388752, 47.0198365 ], + [ 9.2388746, 47.0198326 ], + [ 9.2388741, 47.0198288 ], + [ 9.2388736, 47.0198249 ], + [ 9.2388733, 47.019821 ], + [ 9.2388731, 47.0198172 ], + [ 9.238873, 47.0198133 ], + [ 9.238873, 47.0198094 ], + [ 9.2388731, 47.0198056 ], + [ 9.2388733, 47.0198017 ], + [ 9.2388736, 47.0197978 ], + [ 9.2388739, 47.019794 ], + [ 9.2388744, 47.0197901 ], + [ 9.2388753, 47.0197839 ], + [ 9.2388764, 47.0197776 ], + [ 9.2388776, 47.0197714 ], + [ 9.238879, 47.0197652 ], + [ 9.2388805, 47.019759 ], + [ 9.2388822, 47.0197528 ], + [ 9.2388841, 47.0197467 ], + [ 9.2388861, 47.0197405 ], + [ 9.2388883, 47.0197344 ], + [ 9.2388906, 47.0197283 ], + [ 9.238893, 47.0197223 ], + [ 9.2388957, 47.0197163 ], + [ 9.2388984, 47.0197103 ], + [ 9.2389014, 47.0197043 ], + [ 9.2389045, 47.0196984 ], + [ 9.2389077, 47.0196925 ], + [ 9.2389111, 47.0196867 ], + [ 9.2389146, 47.0196809 ], + [ 9.2389182, 47.0196751 ], + [ 9.2389221, 47.0196694 ], + [ 9.238926, 47.0196637 ], + [ 9.2389301, 47.0196581 ], + [ 9.2389343, 47.0196525 ], + [ 9.2389387, 47.019647 ], + [ 9.2389432, 47.0196415 ], + [ 9.2389499, 47.0196333 ], + [ 9.2389567, 47.0196251 ], + [ 9.2389638, 47.0196169 ], + [ 9.238971, 47.0196089 ], + [ 9.2389784, 47.0196009 ], + [ 9.2389861, 47.0195931 ], + [ 9.2389939, 47.0195853 ], + [ 9.2390019, 47.0195776 ], + [ 9.2390101, 47.01957 ], + [ 9.2390185, 47.0195625 ], + [ 9.2390271, 47.0195551 ], + [ 9.2390359, 47.0195478 ], + [ 9.2390448, 47.0195406 ], + [ 9.2390737, 47.0195169 ], + [ 9.2391031, 47.0194936 ], + [ 9.2391331, 47.0194705 ], + [ 9.2391637, 47.0194479 ], + [ 9.2391947, 47.0194255 ], + [ 9.2392262, 47.0194035 ], + [ 9.2392583, 47.0193818 ], + [ 9.2392909, 47.0193605 ], + [ 9.2393239, 47.0193395 ], + [ 9.2393574, 47.0193189 ], + [ 9.2394088, 47.0192873 ], + [ 9.2394594, 47.0192551 ], + [ 9.2395093, 47.0192224 ], + [ 9.2395583, 47.0191891 ], + [ 9.2396065, 47.0191553 ], + [ 9.2396539, 47.0191209 ], + [ 9.2397005, 47.019086 ], + [ 9.2397141, 47.0190755 ], + [ 9.2397274, 47.0190648 ], + [ 9.2397404, 47.019054 ], + [ 9.239753199999999, 47.019043 ], + [ 9.2397657, 47.0190318 ], + [ 9.2397779, 47.0190206 ], + [ 9.2397898, 47.0190091 ], + [ 9.2398015, 47.0189976 ], + [ 9.2398144, 47.0189842 ], + [ 9.2398271, 47.0189707 ], + [ 9.2398395, 47.0189571 ], + [ 9.2398515, 47.0189433 ], + [ 9.2398632, 47.0189294 ], + [ 9.2398746, 47.0189154 ], + [ 9.2398857, 47.0189013 ], + [ 9.2398946, 47.0188895 ], + [ 9.2399032, 47.0188776 ], + [ 9.2399115, 47.0188656 ], + [ 9.2399195, 47.0188535 ], + [ 9.2399272, 47.0188414 ], + [ 9.2399346, 47.0188291 ], + [ 9.2399417, 47.0188168 ], + [ 9.2399485, 47.0188044 ], + [ 9.239955, 47.0187919 ], + [ 9.2399613, 47.0187793 ], + [ 9.2399716, 47.0187584 ], + [ 9.2399825, 47.0187376 ], + [ 9.2399939, 47.0187169 ], + [ 9.2400058, 47.0186964 ], + [ 9.2400182, 47.018676 ], + [ 9.2400312, 47.0186558 ], + [ 9.2400465, 47.0186329 ], + [ 9.2400623, 47.0186102 ], + [ 9.2400786, 47.0185876 ], + [ 9.2400955, 47.0185653 ], + [ 9.2401128, 47.0185431 ], + [ 9.2401302, 47.0185209 ], + [ 9.240147, 47.0184986 ], + [ 9.2401634, 47.018476 ], + [ 9.2401791, 47.0184533 ], + [ 9.2401944, 47.0184304 ], + [ 9.2402088, 47.0184086 ], + [ 9.2402238, 47.0183871 ], + [ 9.2402393, 47.0183657 ], + [ 9.2402902, 47.0183023 ], + [ 9.2401267, 47.0180556 ], + [ 9.2404701, 47.0178235 ], + [ 9.2410671, 47.0177754 ], + [ 9.2418528, 47.0164926 ], + [ 9.2418358, 47.0162607 ], + [ 9.2419802, 47.0161081 ], + [ 9.2419934, 47.0160974 ], + [ 9.2420064, 47.0160866 ], + [ 9.2420191, 47.0160756 ], + [ 9.2420315, 47.0160645 ], + [ 9.2420437, 47.0160532 ], + [ 9.2420556, 47.0160418 ], + [ 9.2420673, 47.0160303 ], + [ 9.2420787, 47.0160186 ], + [ 9.2420898, 47.0160069 ], + [ 9.2421006, 47.015995 ], + [ 9.2421112, 47.015983 ], + [ 9.242217, 47.0158597 ], + [ 9.24223, 47.0158442 ], + [ 9.2422426, 47.0158285 ], + [ 9.2422549, 47.0158127 ], + [ 9.2422667, 47.0157968 ], + [ 9.2422781, 47.0157807 ], + [ 9.2422891, 47.0157645 ], + [ 9.2422997, 47.0157481 ], + [ 9.2423099, 47.0157317 ], + [ 9.2423124, 47.0157275 ], + [ 9.2423148, 47.0157232 ], + [ 9.242317, 47.015719 ], + [ 9.2423192, 47.0157147 ], + [ 9.2423213, 47.0157104 ], + [ 9.2423233, 47.015706 ], + [ 9.2423251, 47.0157017 ], + [ 9.2423269, 47.0156973 ], + [ 9.2423285, 47.0156929 ], + [ 9.24233, 47.0156885 ], + [ 9.2423315, 47.0156841 ], + [ 9.2423328, 47.0156796 ], + [ 9.242334, 47.0156752 ], + [ 9.2423351, 47.0156707 ], + [ 9.2423361, 47.0156662 ], + [ 9.242337, 47.0156617 ], + [ 9.2423377, 47.0156572 ], + [ 9.2423384, 47.0156527 ], + [ 9.242339, 47.0156482 ], + [ 9.2423394, 47.0156436 ], + [ 9.2423397, 47.0156391 ], + [ 9.24234, 47.0156353 ], + [ 9.2423404, 47.0156315 ], + [ 9.2423409, 47.0156277 ], + [ 9.2423414, 47.0156239 ], + [ 9.2423421, 47.0156201 ], + [ 9.2423429, 47.0156163 ], + [ 9.2423437, 47.0156125 ], + [ 9.2423446, 47.0156087 ], + [ 9.2423457, 47.015605 ], + [ 9.2423468, 47.0156012 ], + [ 9.242348, 47.0155975 ], + [ 9.2423494, 47.0155938 ], + [ 9.2423508, 47.0155901 ], + [ 9.2423522, 47.0155864 ], + [ 9.2423538, 47.0155827 ], + [ 9.2423555, 47.0155791 ], + [ 9.2423573, 47.0155755 ], + [ 9.2423592, 47.0155719 ], + [ 9.2423611, 47.0155683 ], + [ 9.2423631, 47.0155648 ], + [ 9.2423653, 47.0155612 ], + [ 9.2423675, 47.0155577 ], + [ 9.2423698, 47.0155542 ], + [ 9.2423722, 47.0155508 ], + [ 9.2423747, 47.0155473 ], + [ 9.2423822, 47.0155374 ], + [ 9.24239, 47.0155275 ], + [ 9.242398, 47.0155177 ], + [ 9.2424063, 47.015508 ], + [ 9.2424148, 47.0154984 ], + [ 9.2424236, 47.0154889 ], + [ 9.2424326, 47.0154795 ], + [ 9.2424418, 47.0154702 ], + [ 9.2424513, 47.015461 ], + [ 9.242461, 47.0154519 ], + [ 9.2424709, 47.015443 ], + [ 9.242481, 47.0154341 ], + [ 9.2424914, 47.0154254 ], + [ 9.242502, 47.0154168 ], + [ 9.2425128, 47.0154084 ], + [ 9.2425238, 47.0154 ], + [ 9.242535, 47.0153918 ], + [ 9.2425427, 47.0153862 ], + [ 9.2425502, 47.0153806 ], + [ 9.2425576, 47.0153748 ], + [ 9.2425649, 47.0153689 ], + [ 9.2425719, 47.015363 ], + [ 9.2425789, 47.015357 ], + [ 9.2425857, 47.0153509 ], + [ 9.2425923, 47.0153447 ], + [ 9.2425988, 47.0153385 ], + [ 9.2426052, 47.0153321 ], + [ 9.2426114, 47.0153257 ], + [ 9.2426174, 47.0153193 ], + [ 9.2426233, 47.0153127 ], + [ 9.242629, 47.0153061 ], + [ 9.2426345, 47.0152995 ], + [ 9.2426399, 47.0152927 ], + [ 9.2426451, 47.0152859 ], + [ 9.2426501, 47.0152791 ], + [ 9.242655, 47.0152722 ], + [ 9.2426597, 47.0152652 ], + [ 9.2426642, 47.0152582 ], + [ 9.2426686, 47.0152511 ], + [ 9.2426728, 47.015244 ], + [ 9.2426768, 47.0152369 ], + [ 9.2426806, 47.0152297 ], + [ 9.2427047, 47.0151818 ], + [ 9.2427277, 47.0151336 ], + [ 9.2427494, 47.0150853 ], + [ 9.24277, 47.0150366 ], + [ 9.2427894, 47.0149878 ], + [ 9.2428076, 47.0149387 ], + [ 9.2428131, 47.0149221 ], + [ 9.2428182, 47.0149055 ], + [ 9.2428228, 47.0148888 ], + [ 9.242827, 47.0148721 ], + [ 9.2428308, 47.0148554 ], + [ 9.2428342, 47.0148386 ], + [ 9.2428371, 47.0148217 ], + [ 9.2428397, 47.0148048 ], + [ 9.2428418, 47.0147879 ], + [ 9.2428434, 47.014771 ], + [ 9.2428447, 47.0147541 ], + [ 9.2428455, 47.0147371 ], + [ 9.2428459, 47.0147201 ], + [ 9.2428459, 47.0147032 ], + [ 9.2428455, 47.0146862 ], + [ 9.2428446, 47.0146692 ], + [ 9.2428433, 47.0146523 ], + [ 9.2428351, 47.0146088 ], + [ 9.2427803, 47.0143162 ], + [ 9.2427688, 47.0142814 ], + [ 9.2427565, 47.0142469 ], + [ 9.2427434, 47.0142124 ], + [ 9.2427295, 47.0141781 ], + [ 9.2427148, 47.014144 ], + [ 9.2426733, 47.014048 ], + [ 9.2426339, 47.0139516 ], + [ 9.2425967, 47.0138548 ], + [ 9.2425615, 47.0137577 ], + [ 9.2425286, 47.0136602 ], + [ 9.2424663, 47.0134766 ], + [ 9.2424454, 47.0134154 ], + [ 9.2424257, 47.013354 ], + [ 9.2424073, 47.0132925 ], + [ 9.2423333, 47.01304 ], + [ 9.2423213, 47.0129979 ], + [ 9.2423103, 47.0129556 ], + [ 9.2423002, 47.0129133 ], + [ 9.2422911, 47.0128708 ], + [ 9.2422831, 47.0128282 ], + [ 9.242276, 47.0127856 ], + [ 9.2422636, 47.0126979 ], + [ 9.2422534, 47.0126102 ], + [ 9.2422454, 47.0125223 ], + [ 9.2422429, 47.0124846 ], + [ 9.2422413, 47.0124468 ], + [ 9.2422407, 47.0124091 ], + [ 9.242241, 47.0123713 ], + [ 9.2422422, 47.0123335 ], + [ 9.2422444, 47.0122958 ], + [ 9.2422474, 47.0122581 ], + [ 9.2423015, 47.0117619 ], + [ 9.2424145, 47.01133 ], + [ 9.242403, 47.0109383 ], + [ 9.2423856, 47.0108279 ], + [ 9.2423654, 47.0107177 ], + [ 9.2423424, 47.0106077 ], + [ 9.2423414, 47.0106036 ], + [ 9.2423403, 47.0105995 ], + [ 9.2423392, 47.0105955 ], + [ 9.2423379, 47.0105914 ], + [ 9.2423365, 47.0105874 ], + [ 9.242335, 47.0105833 ], + [ 9.2423335, 47.0105793 ], + [ 9.2423318, 47.0105753 ], + [ 9.24233, 47.0105714 ], + [ 9.2423281, 47.0105674 ], + [ 9.2423261, 47.0105635 ], + [ 9.2423241, 47.0105596 ], + [ 9.2423219, 47.0105557 ], + [ 9.2423196, 47.0105519 ], + [ 9.2423172, 47.0105481 ], + [ 9.2423148, 47.0105443 ], + [ 9.2423122, 47.0105405 ], + [ 9.2423095, 47.0105368 ], + [ 9.2423068, 47.0105331 ], + [ 9.2423039, 47.0105294 ], + [ 9.242301, 47.0105258 ], + [ 9.242298, 47.0105222 ], + [ 9.2422949, 47.0105186 ], + [ 9.2422916, 47.0105151 ], + [ 9.2422884, 47.0105116 ], + [ 9.242285, 47.0105082 ], + [ 9.2422814, 47.0105046 ], + [ 9.242278, 47.010501 ], + [ 9.2422747, 47.0104973 ], + [ 9.2422714, 47.0104936 ], + [ 9.2422683, 47.0104899 ], + [ 9.2422652, 47.0104861 ], + [ 9.2422623, 47.0104823 ], + [ 9.2422594, 47.0104785 ], + [ 9.2422566, 47.0104746 ], + [ 9.2422539, 47.0104707 ], + [ 9.2422514, 47.0104668 ], + [ 9.2422489, 47.0104628 ], + [ 9.2422465, 47.0104588 ], + [ 9.2422442, 47.0104548 ], + [ 9.242242, 47.0104507 ], + [ 9.2422399, 47.0104467 ], + [ 9.242238, 47.0104426 ], + [ 9.2422361, 47.0104385 ], + [ 9.2422343, 47.0104343 ], + [ 9.2422326, 47.0104302 ], + [ 9.2422311, 47.010426 ], + [ 9.2422296, 47.0104218 ], + [ 9.2422282, 47.0104176 ], + [ 9.242227, 47.0104134 ], + [ 9.2422258, 47.0104091 ], + [ 9.2422223, 47.0103945 ], + [ 9.242219, 47.0103799 ], + [ 9.2422161, 47.0103653 ], + [ 9.2422135, 47.0103506 ], + [ 9.2422113, 47.0103359 ], + [ 9.2422094, 47.0103211 ], + [ 9.2422078, 47.0103064 ], + [ 9.2422066, 47.0102916 ], + [ 9.2422058, 47.0102768 ], + [ 9.2422052, 47.010262 ], + [ 9.242205, 47.0102436 ], + [ 9.2422052, 47.0102251 ], + [ 9.2422058, 47.0102066 ], + [ 9.2422068, 47.0101881 ], + [ 9.2422083, 47.0101697 ], + [ 9.2422101, 47.0101512 ], + [ 9.2422124, 47.0101328 ], + [ 9.2422151, 47.0101144 ], + [ 9.2422268, 47.0100451 ], + [ 9.2422401, 47.0099759 ], + [ 9.242255, 47.0099069 ], + [ 9.2422714, 47.009838 ], + [ 9.2422895, 47.0097693 ], + [ 9.242309, 47.0097009 ], + [ 9.2423315, 47.0096185 ], + [ 9.2423521, 47.009536 ], + [ 9.2423709, 47.0094533 ], + [ 9.2423878, 47.0093704 ], + [ 9.2424029, 47.0092873 ], + [ 9.2424041, 47.0092802 ], + [ 9.242405, 47.0092731 ], + [ 9.2424058, 47.009266 ], + [ 9.2424064, 47.0092589 ], + [ 9.2424068, 47.0092518 ], + [ 9.242407, 47.0092446 ], + [ 9.2424071, 47.0092375 ], + [ 9.242407, 47.0092304 ], + [ 9.2424067, 47.0092233 ], + [ 9.2424063, 47.0092162 ], + [ 9.2424056, 47.0092091 ], + [ 9.2424049, 47.0092019 ], + [ 9.2424039, 47.0091949 ], + [ 9.2424027, 47.0091878 ], + [ 9.2423987, 47.009163 ], + [ 9.2423952, 47.0091383 ], + [ 9.2423924, 47.0091135 ], + [ 9.2423901, 47.0090887 ], + [ 9.242388, 47.0090653 ], + [ 9.2423853, 47.009042 ], + [ 9.242382, 47.0090187 ], + [ 9.2423782, 47.0089955 ], + [ 9.2423739, 47.0089723 ], + [ 9.242369, 47.0089491 ], + [ 9.2423635, 47.008926 ], + [ 9.2423383, 47.0087489 ], + [ 9.2424262, 47.008586 ], + [ 9.2424365, 47.0085671 ], + [ 9.2424473, 47.0085482 ], + [ 9.2424585, 47.0085295 ], + [ 9.2424702, 47.0085109 ], + [ 9.2424823, 47.0084925 ], + [ 9.2424949, 47.0084742 ], + [ 9.242508, 47.008456 ], + [ 9.2425215, 47.008438 ], + [ 9.2425354, 47.0084202 ], + [ 9.2425411, 47.0084131 ], + [ 9.2425471, 47.0084061 ], + [ 9.2425532, 47.0083992 ], + [ 9.2425594, 47.0083924 ], + [ 9.2425659, 47.0083856 ], + [ 9.2425725, 47.008379 ], + [ 9.2425792, 47.0083724 ], + [ 9.2425862, 47.0083658 ], + [ 9.2425933, 47.0083594 ], + [ 9.2426006, 47.0083531 ], + [ 9.242608, 47.0083468 ], + [ 9.2426156, 47.0083406 ], + [ 9.2426233, 47.0083345 ], + [ 9.2426312, 47.0083285 ], + [ 9.2426393, 47.0083226 ], + [ 9.2426475, 47.0083168 ], + [ 9.2426558, 47.0083111 ], + [ 9.2426643, 47.0083055 ], + [ 9.2426729, 47.0083 ], + [ 9.2426817, 47.0082946 ], + [ 9.2426906, 47.0082893 ], + [ 9.2426996, 47.0082841 ], + [ 9.2427088, 47.0082791 ], + [ 9.2428617, 47.0081585 ], + [ 9.2428666, 47.0081493 ], + [ 9.2428713, 47.0081399 ], + [ 9.2428758, 47.0081305 ], + [ 9.24288, 47.008121 ], + [ 9.242884, 47.0081115 ], + [ 9.2428878, 47.008102 ], + [ 9.2428914, 47.0080924 ], + [ 9.2428947, 47.0080828 ], + [ 9.2428977, 47.0080731 ], + [ 9.2429005, 47.0080634 ], + [ 9.2429031, 47.0080537 ], + [ 9.242905499999999, 47.0080439 ], + [ 9.2429076, 47.0080341 ], + [ 9.2429094, 47.0080243 ], + [ 9.242911, 47.0080145 ], + [ 9.2429124, 47.0080047 ], + [ 9.2429136, 47.0079948 ], + [ 9.2429144, 47.0079849 ], + [ 9.2429151, 47.0079751 ], + [ 9.2429155, 47.0079652 ], + [ 9.2429156, 47.0079553 ], + [ 9.2429155, 47.0079454 ], + [ 9.2429152, 47.0079355 ], + [ 9.2429146, 47.0079256 ], + [ 9.2429066, 47.0077193 ], + [ 9.2429057, 47.0077044 ], + [ 9.2429045, 47.0076895 ], + [ 9.2429029, 47.0076747 ], + [ 9.242901, 47.0076599 ], + [ 9.2428986, 47.0076451 ], + [ 9.2428959, 47.0076303 ], + [ 9.2428928, 47.0076156 ], + [ 9.2428893, 47.0076009 ], + [ 9.2428855, 47.0075862 ], + [ 9.2428813, 47.0075716 ], + [ 9.2428767, 47.0075571 ], + [ 9.2428249, 47.0072594 ], + [ 9.2430146, 47.0070799 ], + [ 9.2430676, 47.0070298 ], + [ 9.243072, 47.0070249 ], + [ 9.2430762, 47.0070198 ], + [ 9.2430804, 47.0070147 ], + [ 9.2430844, 47.0070096 ], + [ 9.2430883, 47.0070044 ], + [ 9.243092, 47.0069992 ], + [ 9.2430957, 47.0069939 ], + [ 9.2430992, 47.0069886 ], + [ 9.243102499999999, 47.0069832 ], + [ 9.2431058, 47.0069778 ], + [ 9.2431089, 47.0069724 ], + [ 9.2431118, 47.006967 ], + [ 9.2431147, 47.0069615 ], + [ 9.2431173, 47.0069559 ], + [ 9.2431199, 47.0069504 ], + [ 9.2431223, 47.0069448 ], + [ 9.2431275, 47.006932 ], + [ 9.2431325, 47.0069191 ], + [ 9.2431371, 47.0069062 ], + [ 9.2431415, 47.0068933 ], + [ 9.2431455, 47.0068803 ], + [ 9.2431493, 47.0068673 ], + [ 9.2431528, 47.0068542 ], + [ 9.2431567, 47.0068383 ], + [ 9.2431601, 47.0068223 ], + [ 9.2431632, 47.0068064 ], + [ 9.2431659, 47.0067903 ], + [ 9.2431681, 47.0067743 ], + [ 9.24317, 47.0067582 ], + [ 9.2431715, 47.0067421 ], + [ 9.2431726, 47.006726 ], + [ 9.2431733, 47.0067099 ], + [ 9.2431736, 47.0066937 ], + [ 9.2431741, 47.0066758 ], + [ 9.243175, 47.0066579 ], + [ 9.2431764, 47.00664 ], + [ 9.2431783, 47.0066221 ], + [ 9.2431806, 47.0066043 ], + [ 9.2431834, 47.0065865 ], + [ 9.2431866, 47.0065687 ], + [ 9.2431902, 47.0065509 ], + [ 9.2431943, 47.0065332 ], + [ 9.2432001, 47.0065108 ], + [ 9.2432063, 47.0064884 ], + [ 9.2432131, 47.006466 ], + [ 9.2432204, 47.0064438 ], + [ 9.2432282, 47.0064216 ], + [ 9.2432365, 47.0063995 ], + [ 9.2432452, 47.0063775 ], + [ 9.2432545, 47.0063556 ], + [ 9.2432669, 47.0063264 ], + [ 9.2432786, 47.006297 ], + [ 9.2432895, 47.0062676 ], + [ 9.2432997, 47.006238 ], + [ 9.2433091, 47.0062082 ], + [ 9.2433178, 47.0061784 ], + [ 9.2433194, 47.0061757 ], + [ 9.243321, 47.006173 ], + [ 9.2433225, 47.0061702 ], + [ 9.2433239, 47.0061674 ], + [ 9.2433253, 47.0061646 ], + [ 9.2433266, 47.0061618 ], + [ 9.2433278, 47.006159 ], + [ 9.243329, 47.0061562 ], + [ 9.24333, 47.0061533 ], + [ 9.243331, 47.0061505 ], + [ 9.243332, 47.0061476 ], + [ 9.2433328, 47.0061447 ], + [ 9.2433336, 47.0061418 ], + [ 9.2433343, 47.0061389 ], + [ 9.2433349, 47.006136 ], + [ 9.2433355, 47.0061331 ], + [ 9.243336, 47.0061302 ], + [ 9.2433364, 47.0061272 ], + [ 9.2433368, 47.0061243 ], + [ 9.243337, 47.0061214 ], + [ 9.2433372, 47.0061184 ], + [ 9.2433373, 47.0061155 ], + [ 9.2433374, 47.0061125 ], + [ 9.2433373, 47.0061096 ], + [ 9.2433372, 47.0061067 ], + [ 9.2433371, 47.0061037 ], + [ 9.2433368, 47.0061008 ], + [ 9.2433365, 47.0060979 ], + [ 9.2433361, 47.0060949 ], + [ 9.2433356, 47.006092 ], + [ 9.2433351, 47.0060891 ], + [ 9.2433344, 47.0060862 ], + [ 9.2433337, 47.0060833 ], + [ 9.243333, 47.0060804 ], + [ 9.2433321, 47.0060775 ], + [ 9.2433312, 47.0060746 ], + [ 9.2433302, 47.0060718 ], + [ 9.2433292, 47.0060689 ], + [ 9.2433289, 47.0060643 ], + [ 9.2433287, 47.0060597 ], + [ 9.2433287, 47.0060551 ], + [ 9.2433288, 47.0060505 ], + [ 9.243329, 47.0060459 ], + [ 9.2433293, 47.0060413 ], + [ 9.2433297, 47.0060367 ], + [ 9.2433303, 47.0060321 ], + [ 9.2433309, 47.0060275 ], + [ 9.2433317, 47.0060229 ], + [ 9.2433326, 47.0060184 ], + [ 9.2433336, 47.0060138 ], + [ 9.2433347, 47.0060093 ], + [ 9.2433359, 47.0060047 ], + [ 9.2433372, 47.0060002 ], + [ 9.2433387, 47.0059957 ], + [ 9.2433402, 47.0059912 ], + [ 9.2433419, 47.0059868 ], + [ 9.2433437, 47.0059823 ], + [ 9.2433456, 47.0059779 ], + [ 9.2433476, 47.0059735 ], + [ 9.2433497, 47.0059691 ], + [ 9.2433519, 47.0059648 ], + [ 9.2433542, 47.0059604 ], + [ 9.243417, 47.0058977 ], + [ 9.2435486, 47.0057595 ], + [ 9.2437051, 47.005676 ], + [ 9.2437939, 47.0056236 ], + [ 9.2438003, 47.0056199 ], + [ 9.2438065, 47.005616 ], + [ 9.2438127, 47.0056121 ], + [ 9.2438188, 47.0056082 ], + [ 9.2438247, 47.0056041 ], + [ 9.2438306, 47.0056 ], + [ 9.2438363, 47.0055959 ], + [ 9.243842, 47.0055916 ], + [ 9.2438476, 47.0055873 ], + [ 9.243853, 47.0055829 ], + [ 9.2438584, 47.0055785 ], + [ 9.2438636, 47.005574 ], + [ 9.2438687, 47.0055695 ], + [ 9.2438737, 47.0055649 ], + [ 9.243889, 47.0055502 ], + [ 9.243904, 47.0055354 ], + [ 9.2439186, 47.0055205 ], + [ 9.2439328, 47.0055053 ], + [ 9.2439466, 47.00549 ], + [ 9.2439601, 47.0054746 ], + [ 9.2439731, 47.005459 ], + [ 9.2439858, 47.0054432 ], + [ 9.2439981, 47.0054273 ], + [ 9.24401, 47.0054112 ], + [ 9.2440199, 47.0053979 ], + [ 9.2440301, 47.0053846 ], + [ 9.2440407, 47.0053715 ], + [ 9.2440516, 47.0053584 ], + [ 9.2440628, 47.0053456 ], + [ 9.2440743, 47.0053328 ], + [ 9.2440862, 47.0053202 ], + [ 9.2440983, 47.0053077 ], + [ 9.2441108, 47.0052954 ], + [ 9.2441236, 47.0052832 ], + [ 9.2441367, 47.0052711 ], + [ 9.24415, 47.0052593 ], + [ 9.2441528, 47.0052569 ], + [ 9.2441556, 47.0052546 ], + [ 9.2441584, 47.0052523 ], + [ 9.2441613, 47.0052501 ], + [ 9.2441643, 47.0052479 ], + [ 9.2441673, 47.0052457 ], + [ 9.2441704, 47.0052435 ], + [ 9.2441735, 47.0052414 ], + [ 9.2441767, 47.0052394 ], + [ 9.2441799, 47.0052373 ], + [ 9.2441832, 47.0052353 ], + [ 9.2441865, 47.0052334 ], + [ 9.2441899, 47.0052315 ], + [ 9.2441933, 47.0052296 ], + [ 9.2441967, 47.0052277 ], + [ 9.2442002, 47.0052259 ], + [ 9.2442038, 47.0052242 ], + [ 9.2442074, 47.0052225 ], + [ 9.244211, 47.0052208 ], + [ 9.2442147, 47.0052192 ], + [ 9.2442184, 47.0052176 ], + [ 9.2442222, 47.005216 ], + [ 9.244226, 47.0052145 ], + [ 9.2442298, 47.0052131 ], + [ 9.2442337, 47.0052117 ], + [ 9.2442376, 47.0052103 ], + [ 9.2442415, 47.005209 ], + [ 9.2442464, 47.0052074 ], + [ 9.2442511, 47.0052057 ], + [ 9.2442559, 47.005204 ], + [ 9.2442606, 47.0052022 ], + [ 9.2442652, 47.0052004 ], + [ 9.2442698, 47.0051985 ], + [ 9.2442743, 47.0051965 ], + [ 9.2442788, 47.0051945 ], + [ 9.2442833, 47.0051925 ], + [ 9.2442877, 47.0051904 ], + [ 9.244292, 47.0051882 ], + [ 9.2442963, 47.005186 ], + [ 9.2443006, 47.0051838 ], + [ 9.2443047, 47.0051815 ], + [ 9.2443089, 47.0051791 ], + [ 9.2443129, 47.0051767 ], + [ 9.2443169, 47.0051743 ], + [ 9.2443209, 47.0051718 ], + [ 9.2443248, 47.0051693 ], + [ 9.2443286, 47.0051667 ], + [ 9.2443323, 47.0051641 ], + [ 9.244336, 47.0051614 ], + [ 9.2443439, 47.0051555 ], + [ 9.2443516, 47.0051495 ], + [ 9.2443592, 47.0051434 ], + [ 9.2443666, 47.0051373 ], + [ 9.2443738, 47.005131 ], + [ 9.2443809, 47.0051247 ], + [ 9.2443879, 47.0051183 ], + [ 9.2443947, 47.0051118 ], + [ 9.2444013, 47.0051052 ], + [ 9.2444077, 47.0050986 ], + [ 9.244414, 47.0050918 ], + [ 9.2444364, 47.0050669 ], + [ 9.2444583, 47.0050418 ], + [ 9.2444796, 47.0050165 ], + [ 9.244568, 47.0049258 ], + [ 9.2446855, 47.0041187 ], + [ 9.2447094, 47.0039294 ], + [ 9.2447162, 47.0038819 ], + [ 9.2447229, 47.0038423 ], + [ 9.2447305, 47.0038027 ], + [ 9.244739, 47.0037633 ], + [ 9.2447405, 47.0037567 ], + [ 9.2447423, 47.0037501 ], + [ 9.2447442, 47.0037436 ], + [ 9.2447462, 47.0037371 ], + [ 9.2447485, 47.0037306 ], + [ 9.2447509, 47.0037241 ], + [ 9.2447534, 47.0037177 ], + [ 9.2447561, 47.0037112 ], + [ 9.244759, 47.0037049 ], + [ 9.244762099999999, 47.0036985 ], + [ 9.2447653, 47.0036922 ], + [ 9.2447686, 47.003686 ], + [ 9.2447721, 47.0036797 ], + [ 9.2447758, 47.0036736 ], + [ 9.2447796, 47.0036674 ], + [ 9.2447836, 47.0036613 ], + [ 9.2447877, 47.0036553 ], + [ 9.244792, 47.0036493 ], + [ 9.2447953, 47.0036449 ], + [ 9.2447987, 47.0036405 ], + [ 9.2448022, 47.0036362 ], + [ 9.2448058, 47.0036319 ], + [ 9.2448096, 47.0036276 ], + [ 9.2448134, 47.0036234 ], + [ 9.2448173, 47.0036193 ], + [ 9.2448214, 47.0036152 ], + [ 9.2448255, 47.0036111 ], + [ 9.2448297, 47.0036071 ], + [ 9.2448341, 47.0036031 ], + [ 9.2448385, 47.0035992 ], + [ 9.244843, 47.0035954 ], + [ 9.2448477, 47.0035915 ], + [ 9.2448524, 47.0035878 ], + [ 9.2448572, 47.0035841 ], + [ 9.2448621, 47.0035805 ], + [ 9.2448671, 47.0035769 ], + [ 9.2448722, 47.0035734 ], + [ 9.2448774, 47.0035699 ], + [ 9.2448879, 47.0035631 ], + [ 9.2448986, 47.0035565 ], + [ 9.2449094, 47.0035499 ], + [ 9.2449203, 47.0035435 ], + [ 9.2449314, 47.0035372 ], + [ 9.2449427, 47.0035311 ], + [ 9.2449541, 47.0035251 ], + [ 9.2449657, 47.0035192 ], + [ 9.2449774, 47.0035134 ], + [ 9.2449892, 47.0035078 ], + [ 9.2450037, 47.0035011 ], + [ 9.2450183, 47.0034947 ], + [ 9.245033, 47.0034884 ], + [ 9.2450479, 47.0034822 ], + [ 9.2450629, 47.0034763 ], + [ 9.2450781, 47.0034705 ], + [ 9.2450934, 47.0034648 ], + [ 9.2451089, 47.0034594 ], + [ 9.2451244, 47.0034541 ], + [ 9.2451401, 47.003449 ], + [ 9.2451559, 47.0034441 ], + [ 9.2451719, 47.0034393 ], + [ 9.2451879, 47.0034347 ], + [ 9.2452041, 47.0034303 ], + [ 9.2452203, 47.0034261 ], + [ 9.2452356, 47.0034222 ], + [ 9.2452507, 47.003418 ], + [ 9.2452657, 47.0034137 ], + [ 9.2452807, 47.0034092 ], + [ 9.2452955, 47.0034046 ], + [ 9.2453102, 47.0033997 ], + [ 9.2453247, 47.0033947 ], + [ 9.2453392, 47.0033895 ], + [ 9.2453535, 47.0033842 ], + [ 9.2453676, 47.0033787 ], + [ 9.2453817, 47.003373 ], + [ 9.2453955, 47.0033671 ], + [ 9.2454093, 47.0033611 ], + [ 9.2454228, 47.0033549 ], + [ 9.2454363, 47.0033486 ], + [ 9.2454495, 47.0033421 ], + [ 9.2454732, 47.0033301 ], + [ 9.2454966, 47.0033178 ], + [ 9.2455197, 47.0033052 ], + [ 9.245542499999999, 47.0032924 ], + [ 9.245565, 47.0032793 ], + [ 9.2455872, 47.0032659 ], + [ 9.245609, 47.0032523 ], + [ 9.2456305, 47.0032385 ], + [ 9.2456516, 47.0032244 ], + [ 9.2456783, 47.0032059 ], + [ 9.2457046, 47.0031872 ], + [ 9.2457304, 47.0031682 ], + [ 9.2457557, 47.0031488 ], + [ 9.2457805, 47.0031292 ], + [ 9.2458049, 47.0031093 ], + [ 9.2458287, 47.0030891 ], + [ 9.2458413, 47.003078 ], + [ 9.2458537, 47.0030667 ], + [ 9.2458659, 47.0030554 ], + [ 9.2458778, 47.0030439 ], + [ 9.2458894, 47.0030322 ], + [ 9.2459007, 47.0030205 ], + [ 9.2459117, 47.0030086 ], + [ 9.2459225, 47.0029966 ], + [ 9.245933, 47.0029845 ], + [ 9.2459432, 47.0029722 ], + [ 9.2459531, 47.0029599 ], + [ 9.2459743, 47.0029326 ], + [ 9.245995, 47.002905 ], + [ 9.246015, 47.0028773 ], + [ 9.2460345, 47.0028493 ], + [ 9.2460533, 47.0028212 ], + [ 9.246075, 47.0027875 ], + [ 9.246095799999999, 47.0027535 ], + [ 9.2461158, 47.0027193 ], + [ 9.2461349, 47.0026849 ], + [ 9.2461532, 47.0026503 ], + [ 9.2461706, 47.0026155 ], + [ 9.2461872, 47.0025805 ], + [ 9.246204, 47.0025455 ], + [ 9.2462216, 47.0025107 ], + [ 9.2462399, 47.0024761 ], + [ 9.2462591, 47.0024417 ], + [ 9.246279, 47.0024075 ], + [ 9.2462997, 47.0023735 ], + [ 9.2463212, 47.0023397 ], + [ 9.2463277, 47.0023299 ], + [ 9.2463344, 47.0023202 ], + [ 9.2463414, 47.0023106 ], + [ 9.2463486, 47.002301 ], + [ 9.246356, 47.0022915 ], + [ 9.2463636, 47.0022821 ], + [ 9.2463714, 47.0022728 ], + [ 9.2463795, 47.0022636 ], + [ 9.2463878, 47.0022545 ], + [ 9.2463963, 47.0022454 ], + [ 9.246405, 47.0022365 ], + [ 9.2464139, 47.0022276 ], + [ 9.2464231, 47.0022189 ], + [ 9.2464322, 47.0022101 ], + [ 9.2464411, 47.0022012 ], + [ 9.2464498, 47.0021923 ], + [ 9.2464582, 47.0021832 ], + [ 9.2464664, 47.002174 ], + [ 9.2464744, 47.0021648 ], + [ 9.246482199999999, 47.0021554 ], + [ 9.2464897, 47.002146 ], + [ 9.246497, 47.0021364 ], + [ 9.246504, 47.0021268 ], + [ 9.2465108, 47.0021171 ], + [ 9.2465173, 47.0021073 ], + [ 9.2465236, 47.0020975 ], + [ 9.2465354, 47.0020782 ], + [ 9.2465467, 47.0020588 ], + [ 9.2465575, 47.0020393 ], + [ 9.2465679, 47.0020197 ], + [ 9.2465779, 47.0019999 ], + [ 9.2465873, 47.0019801 ], + [ 9.2465963, 47.0019601 ], + [ 9.2466049, 47.0019401 ], + [ 9.246613, 47.0019199 ], + [ 9.2466206, 47.0018997 ], + [ 9.2466282, 47.0018795 ], + [ 9.2466363, 47.0018594 ], + [ 9.246645, 47.0018393 ], + [ 9.246654, 47.0018194 ], + [ 9.2466636, 47.0017996 ], + [ 9.2466737, 47.0017799 ], + [ 9.2466842, 47.0017603 ], + [ 9.2466953, 47.0017408 ], + [ 9.2467067, 47.0017214 ], + [ 9.2467187, 47.0017022 ], + [ 9.2467398, 47.0016698 ], + [ 9.2467616, 47.0016376 ], + [ 9.2467842, 47.0016057 ], + [ 9.2468075, 47.001574 ], + [ 9.2468315, 47.0015426 ], + [ 9.2468563, 47.0015114 ], + [ 9.2468817, 47.0014805 ], + [ 9.2469411, 47.0014085 ], + [ 9.2469991, 47.0013359 ], + [ 9.2470555, 47.0012627 ], + [ 9.2470993, 47.0012037 ], + [ 9.2471419, 47.0011443 ], + [ 9.2471832, 47.0010845 ], + [ 9.2472009, 47.0010589 ], + [ 9.2472192, 47.0010334 ], + [ 9.2472381, 47.0010082 ], + [ 9.2472576, 47.0009831 ], + [ 9.2472776, 47.0009583 ], + [ 9.2472983, 47.0009337 ], + [ 9.2473194, 47.0009093 ], + [ 9.2473282, 47.0008996 ], + [ 9.2473373, 47.0008899 ], + [ 9.2473466, 47.0008804 ], + [ 9.2473561, 47.0008709 ], + [ 9.2473658, 47.0008616 ], + [ 9.2473758, 47.0008524 ], + [ 9.247386, 47.0008433 ], + [ 9.2473965, 47.0008344 ], + [ 9.2474072, 47.0008255 ], + [ 9.2474235, 47.0008125 ], + [ 9.24744, 47.0007996 ], + [ 9.2474569, 47.0007868 ], + [ 9.247474, 47.0007743 ], + [ 9.2474914, 47.0007619 ], + [ 9.2475091, 47.0007497 ], + [ 9.2475259, 47.0007384 ], + [ 9.2475431, 47.0007273 ], + [ 9.2475605, 47.0007164 ], + [ 9.2475782, 47.0007058 ], + [ 9.247596099999999, 47.0006953 ], + [ 9.2476143, 47.0006851 ], + [ 9.2476328, 47.0006751 ], + [ 9.2476515, 47.0006653 ], + [ 9.2476705, 47.0006557 ], + [ 9.2476897, 47.0006463 ], + [ 9.2477091, 47.0006372 ], + [ 9.2477288, 47.0006283 ], + [ 9.2477487, 47.0006197 ], + [ 9.2477688, 47.0006112 ], + [ 9.2477772, 47.0006077 ], + [ 9.2477856, 47.0006041 ], + [ 9.2477939, 47.0006004 ], + [ 9.2478021, 47.0005965 ], + [ 9.2478102, 47.0005926 ], + [ 9.2478183, 47.0005887 ], + [ 9.2478262, 47.0005846 ], + [ 9.247834, 47.0005804 ], + [ 9.2478418, 47.0005762 ], + [ 9.2478494, 47.0005718 ], + [ 9.2479854, 47.0004265 ], + [ 9.2481527, 47.0002911 ], + [ 9.2482201, 47.0002004 ], + [ 9.2483892, 46.9998142 ], + [ 9.2486023, 46.9993271 ], + [ 9.2496825, 46.9979553 ], + [ 9.2497311, 46.9978203 ], + [ 9.2497401, 46.997214 ], + [ 9.2495044, 46.996182 ], + [ 9.2495134, 46.9960217 ], + [ 9.2498819, 46.9952116 ], + [ 9.2475393, 46.9946439 ], + [ 9.2468733, 46.9933895 ], + [ 9.24632, 46.9930773 ], + [ 9.2461893, 46.9929327 ], + [ 9.2459072, 46.9924919 ], + [ 9.2458247, 46.9923771 ], + [ 9.2455838, 46.9921996 ], + [ 9.2455588, 46.992196 ], + [ 9.2453743, 46.9915674 ], + [ 9.2454718, 46.9911992 ], + [ 9.2452729, 46.9909921 ], + [ 9.2452037, 46.9910285 ], + [ 9.2451953, 46.9910232 ], + [ 9.2449501, 46.9910332 ], + [ 9.244753, 46.9910211 ], + [ 9.2446604, 46.9910154 ], + [ 9.2441353, 46.9910087 ], + [ 9.2440961, 46.9910008 ], + [ 9.244026, 46.9909866 ], + [ 9.2439783, 46.990976 ], + [ 9.2439304, 46.9909586 ], + [ 9.2438646, 46.9909454 ], + [ 9.2438017, 46.9909368 ], + [ 9.2437301, 46.9909189 ], + [ 9.2436584, 46.9908962 ], + [ 9.243513, 46.9908597 ], + [ 9.2435073, 46.9908583 ], + [ 9.2434898, 46.9908557 ], + [ 9.2434617, 46.990851 ], + [ 9.2434498, 46.99085 ], + [ 9.2434243, 46.9908463 ], + [ 9.243124, 46.9908029 ], + [ 9.2430033, 46.990779 ], + [ 9.242817, 46.9907422 ], + [ 9.2426427, 46.9907077 ], + [ 9.2425152, 46.9906952 ], + [ 9.2424754, 46.9906913 ], + [ 9.2424199, 46.9906858 ], + [ 9.2421893, 46.9907001 ], + [ 9.2419435, 46.9907253 ], + [ 9.2418527, 46.9907587 ], + [ 9.2417945, 46.990761 ], + [ 9.2416886, 46.9907493 ], + [ 9.2416683, 46.9907481 ], + [ 9.2416631, 46.9907478 ], + [ 9.2416342, 46.9907462 ], + [ 9.2415505, 46.9907413 ], + [ 9.2414558, 46.9906481 ], + [ 9.241397, 46.9906129 ], + [ 9.24139, 46.9906087 ], + [ 9.2413792, 46.9906023 ], + [ 9.2413228, 46.9905685 ], + [ 9.241209, 46.9905246 ], + [ 9.2411316, 46.9904947 ], + [ 9.2409441, 46.9903886 ], + [ 9.2408449, 46.9903529 ], + [ 9.2408126, 46.9903413 ], + [ 9.2408019, 46.9903375 ], + [ 9.2406628, 46.99031 ], + [ 9.240635, 46.9902888 ], + [ 9.2405273, 46.9902067 ], + [ 9.2404866, 46.990168 ], + [ 9.2403952, 46.9900811 ], + [ 9.2403461, 46.990051199999996 ], + [ 9.2403228, 46.9900347 ], + [ 9.2403077, 46.9900241 ], + [ 9.2402764, 46.9900036 ], + [ 9.2402684, 46.9899983 ], + [ 9.2402519, 46.989977 ], + [ 9.240239, 46.9899603 ], + [ 9.2402245, 46.9899547 ], + [ 9.2401894, 46.9899412 ], + [ 9.2401709, 46.9899165 ], + [ 9.2401565, 46.9898993 ], + [ 9.2401514, 46.9898933 ], + [ 9.2401447, 46.9898898 ], + [ 9.2401316, 46.9898828 ], + [ 9.2401058, 46.9898691 ], + [ 9.2400799, 46.9898403 ], + [ 9.2400767, 46.9898344 ], + [ 9.2400599, 46.9898036 ], + [ 9.2400024, 46.9897639 ], + [ 9.2399532, 46.9897255 ], + [ 9.2399284, 46.9897126 ], + [ 9.2399214, 46.9897089 ], + [ 9.2398574, 46.9896608 ], + [ 9.239846, 46.9896552 ], + [ 9.239814, 46.9896394 ], + [ 9.2397664, 46.9896152 ], + [ 9.2397215, 46.9895811 ], + [ 9.239689, 46.9895424 ], + [ 9.2396709, 46.9895007 ], + [ 9.2396426, 46.9894634 ], + [ 9.2395925, 46.9894271 ], + [ 9.2395504, 46.9894025 ], + [ 9.23949, 46.9893942 ], + [ 9.239422, 46.9893768 ], + [ 9.2393682, 46.9893486 ], + [ 9.239298, 46.989327 ], + [ 9.2392549, 46.9893113 ], + [ 9.2392124, 46.9892787 ], + [ 9.2391682, 46.9892609 ], + [ 9.2391139, 46.9892483 ], + [ 9.2390592, 46.989225 ], + [ 9.23902, 46.9892022 ], + [ 9.238972799999999, 46.9891845 ], + [ 9.2389109, 46.9891628 ], + [ 9.238877, 46.9891434 ], + [ 9.2388338, 46.9891228 ], + [ 9.2388174, 46.9890982 ], + [ 9.2388233, 46.9890563 ], + [ 9.2388207, 46.9890435 ], + [ 9.2388158, 46.9890195 ], + [ 9.2387792, 46.9889796 ], + [ 9.2386991, 46.9889404 ], + [ 9.2386627, 46.9889055 ], + [ 9.2386357, 46.9888754 ], + [ 9.2385887, 46.9888538 ], + [ 9.238581, 46.9888475 ], + [ 9.2385751, 46.9888281 ], + [ 9.2385356, 46.9887968 ], + [ 9.23851, 46.988777 ], + [ 9.2384952, 46.9887655 ], + [ 9.2384591, 46.988742 ], + [ 9.2384139, 46.9887221 ], + [ 9.2383797, 46.9886936 ], + [ 9.2383489, 46.988639 ], + [ 9.2383625, 46.9886378 ], + [ 9.2383213, 46.9886137 ], + [ 9.2382614, 46.988559 ], + [ 9.2381335, 46.988504 ], + [ 9.2380822, 46.9884819 ], + [ 9.2380721, 46.9884774 ], + [ 9.2379192, 46.9884088 ], + [ 9.2378121, 46.9883634 ], + [ 9.2377845, 46.988353599999996 ], + [ 9.2377346, 46.9883358 ], + [ 9.2377123, 46.9883279 ], + [ 9.2376691, 46.9882686 ], + [ 9.2375694, 46.9882373 ], + [ 9.2373926, 46.9881645 ], + [ 9.2372581, 46.9881223 ], + [ 9.2371108, 46.9881104 ], + [ 9.2370907, 46.9881099 ], + [ 9.2369752, 46.9881068 ], + [ 9.2369751, 46.9881068 ], + [ 9.2368676, 46.9880995 ], + [ 9.2368394, 46.9880976 ], + [ 9.2367306, 46.9880665 ], + [ 9.2366101, 46.9880327 ], + [ 9.2365784, 46.9880292 ], + [ 9.2364985, 46.9880316 ], + [ 9.2364342, 46.9880336 ], + [ 9.2363797, 46.9880474 ], + [ 9.2362946, 46.988038 ], + [ 9.236201, 46.9880094 ], + [ 9.2360999, 46.9879895 ], + [ 9.2359872, 46.9879824 ], + [ 9.235963, 46.9879809 ], + [ 9.2359338, 46.9879823 ], + [ 9.235869, 46.9879856 ], + [ 9.2358072, 46.9879865 ], + [ 9.2357608, 46.9879873 ], + [ 9.235721, 46.987982099999996 ], + [ 9.2357057, 46.9879801 ], + [ 9.2356646, 46.9879748 ], + [ 9.235589300000001, 46.987976 ], + [ 9.2355427, 46.9879819 ], + [ 9.2355127, 46.9879858 ], + [ 9.2354608, 46.9879823 ], + [ 9.2354439, 46.9879781 ], + [ 9.2354085, 46.9879692 ], + [ 9.2353966, 46.9879727 ], + [ 9.2353861, 46.9879757 ], + [ 9.2353541, 46.987985 ], + [ 9.2353011, 46.9879955 ], + [ 9.2352472, 46.9879781 ], + [ 9.2351978, 46.9879574 ], + [ 9.2351631, 46.9879526 ], + [ 9.23513, 46.9879477 ], + [ 9.2351132, 46.9879147 ], + [ 9.235113, 46.9879082 ], + [ 9.235112, 46.9878793 ], + [ 9.2350936, 46.9878463 ], + [ 9.2350804, 46.9878324 ], + [ 9.2350781, 46.98783 ], + [ 9.2350562, 46.9878071 ], + [ 9.234983, 46.9877782 ], + [ 9.2349219, 46.9877351 ], + [ 9.2348516, 46.9876965 ], + [ 9.2347238, 46.9876781 ], + [ 9.2346412, 46.9876493 ], + [ 9.2346032, 46.987648899999996 ], + [ 9.2345533, 46.9876485 ], + [ 9.2344902, 46.9876471 ], + [ 9.2344685, 46.9876466 ], + [ 9.2344641, 46.9876488 ], + [ 9.2344598, 46.9876509 ], + [ 9.2344216, 46.9876697 ], + [ 9.2344191, 46.987671 ], + [ 9.2344083, 46.9876763 ], + [ 9.234206, 46.9877517 ], + [ 9.2340341, 46.9878151 ], + [ 9.2338785, 46.9878881 ], + [ 9.2337566, 46.9879349 ], + [ 9.2336926, 46.987937 ], + [ 9.2336266, 46.9879252 ], + [ 9.2335615, 46.9879422 ], + [ 9.2335122, 46.9879644 ], + [ 9.2334612, 46.9879834 ], + [ 9.2334001, 46.9879769 ], + [ 9.2333146, 46.9879921 ], + [ 9.2332908, 46.9879979 ], + [ 9.2332495, 46.9880081 ], + [ 9.2332218, 46.9880453 ], + [ 9.2332212, 46.9880461 ], + [ 9.2332181, 46.9880503 ], + [ 9.2331697, 46.9880992 ], + [ 9.2331207, 46.988131 ], + [ 9.233045, 46.9881557 ], + [ 9.232992, 46.9881608 ], + [ 9.2328931, 46.9881474 ], + [ 9.2327948, 46.9881072 ], + [ 9.2326798, 46.9880812 ], + [ 9.2326286, 46.9880456 ], + [ 9.232536, 46.9879861 ], + [ 9.2325117, 46.9879734 ], + [ 9.2324707, 46.9879518 ], + [ 9.2324122, 46.987929199999996 ], + [ 9.2323973, 46.9879267 ], + [ 9.2323744, 46.987923 ], + [ 9.2323417, 46.9879284 ], + [ 9.2323107, 46.9879336 ], + [ 9.2322581, 46.9879483 ], + [ 9.2322029, 46.9879644 ], + [ 9.2321961, 46.9879664 ], + [ 9.2321509, 46.9879692 ], + [ 9.2321174, 46.9879562 ], + [ 9.2321034, 46.9879507 ], + [ 9.2320684, 46.987932 ], + [ 9.232007, 46.9879202 ], + [ 9.2319427, 46.9879126 ], + [ 9.231863, 46.9878981 ], + [ 9.2318462, 46.9878937 ], + [ 9.2318117, 46.9878847 ], + [ 9.2317996, 46.9878738 ], + [ 9.2317805, 46.9878566 ], + [ 9.2317717, 46.9878523 ], + [ 9.2317289, 46.9878312 ], + [ 9.2317285, 46.987831 ], + [ 9.2317099, 46.987822800000004 ], + [ 9.2316787, 46.9878089 ], + [ 9.2316497, 46.987801 ], + [ 9.2316292, 46.9877954 ], + [ 9.2315894, 46.9877582 ], + [ 9.2315388, 46.9877133 ], + [ 9.2314813, 46.9876785 ], + [ 9.2314336, 46.9876557 ], + [ 9.2314004, 46.9876315 ], + [ 9.2313876, 46.9876221 ], + [ 9.2313616, 46.9876055 ], + [ 9.2313449, 46.9875949 ], + [ 9.2312897, 46.9875851 ], + [ 9.2312819, 46.9875838 ], + [ 9.2312555, 46.9875835 ], + [ 9.2312255, 46.9875832 ], + [ 9.2311777, 46.987589 ], + [ 9.2311283, 46.9875817 ], + [ 9.2311159, 46.9875799 ], + [ 9.2310423, 46.9875961 ], + [ 9.2309788, 46.9876103 ], + [ 9.2309652, 46.9876128 ], + [ 9.2308756, 46.9876051 ], + [ 9.2308072, 46.9876197 ], + [ 9.2307445, 46.9876468 ], + [ 9.23073, 46.9876531 ], + [ 9.2306656, 46.9876612 ], + [ 9.2306131, 46.9876513 ], + [ 9.2305429, 46.9876446 ], + [ 9.2304683, 46.9876586 ], + [ 9.2303699, 46.9876494 ], + [ 9.2302792, 46.987653 ], + [ 9.230228, 46.9876509 ], + [ 9.2301833, 46.9876252 ], + [ 9.2301699, 46.9876215 ], + [ 9.2301443, 46.9876144 ], + [ 9.230057, 46.9875951 ], + [ 9.2300063, 46.9875759 ], + [ 9.2299207, 46.9875765 ], + [ 9.2299073, 46.987578 ], + [ 9.2299042, 46.9875783 ], + [ 9.2298459, 46.9875848 ], + [ 9.2297809, 46.9875779 ], + [ 9.2297041, 46.987557699999996 ], + [ 9.2296649, 46.9875398 ], + [ 9.2295967, 46.9875308 ], + [ 9.2295343, 46.9875221 ], + [ 9.2295003, 46.9875173 ], + [ 9.2294107, 46.9875249 ], + [ 9.2293636, 46.9875264 ], + [ 9.2293125, 46.9875137 ], + [ 9.2292317, 46.9874935 ], + [ 9.2290404, 46.9874103 ], + [ 9.2289767, 46.9873841 ], + [ 9.2288733, 46.9873442 ], + [ 9.2288634, 46.9873421 ], + [ 9.2286125, 46.9873027 ], + [ 9.2283899, 46.9872667 ], + [ 9.2283885, 46.9872664 ], + [ 9.228114, 46.9872437 ], + [ 9.227888, 46.9872202 ], + [ 9.227767, 46.9872 ], + [ 9.2277492, 46.987197 ], + [ 9.2276905, 46.9871784 ], + [ 9.227629199999999, 46.9871591 ], + [ 9.2275152, 46.9870955 ], + [ 9.2275038, 46.9870892 ], + [ 9.227473700000001, 46.9870724 ], + [ 9.2274129, 46.9870434 ], + [ 9.2273605, 46.9870184 ], + [ 9.227289, 46.9870016 ], + [ 9.2272721, 46.9869976 ], + [ 9.2271944, 46.9869793 ], + [ 9.227189599999999, 46.9869782 ], + [ 9.2271703, 46.9869789 ], + [ 9.2271315, 46.9869803 ], + [ 9.2270445, 46.9869836 ], + [ 9.2269253, 46.9869696 ], + [ 9.2268554, 46.9869532 ], + [ 9.2267788, 46.9869353 ], + [ 9.2267245, 46.9869274 ], + [ 9.2266698, 46.9869194 ], + [ 9.2265622, 46.9869037 ], + [ 9.2262044, 46.9868489 ], + [ 9.2260641, 46.9868187 ], + [ 9.2260458, 46.9868148 ], + [ 9.2259226, 46.986753 ], + [ 9.225799, 46.986677 ], + [ 9.2257091, 46.9865972 ], + [ 9.2256465, 46.9865361 ], + [ 9.2255309, 46.9864838 ], + [ 9.2253885, 46.9864271 ], + [ 9.2252706, 46.9863764 ], + [ 9.2251394, 46.9862925 ], + [ 9.2250905, 46.986239 ], + [ 9.2250363, 46.9861795 ], + [ 9.2249007, 46.9860383 ], + [ 9.2248535, 46.9859984 ], + [ 9.2248235, 46.9859731 ], + [ 9.2247906, 46.9859556 ], + [ 9.2247472, 46.9859326 ], + [ 9.2247009, 46.9858887 ], + [ 9.2246972, 46.9858853 ], + [ 9.2246401, 46.9858529 ], + [ 9.2246129, 46.9858374 ], + [ 9.2245276, 46.9858088 ], + [ 9.2244614, 46.9857801 ], + [ 9.2244468, 46.9857738 ], + [ 9.2243717, 46.9857528 ], + [ 9.2243611, 46.9857499 ], + [ 9.224338, 46.9857434 ], + [ 9.2243098, 46.9857383 ], + [ 9.2242673, 46.9857306 ], + [ 9.2242563, 46.9857287 ], + [ 9.2241592, 46.9857216 ], + [ 9.2240697, 46.9857048 ], + [ 9.224032, 46.9857028 ], + [ 9.2239633, 46.985699 ], + [ 9.2239055, 46.985692 ], + [ 9.223877, 46.9856886 ], + [ 9.223818, 46.985695 ], + [ 9.2237852, 46.9856986 ], + [ 9.2237053, 46.9856913 ], + [ 9.2236272, 46.9856893 ], + [ 9.2235281, 46.9856684 ], + [ 9.2234591, 46.9856609 ], + [ 9.2234275, 46.9856528 ], + [ 9.2234229, 46.9856516 ], + [ 9.223404, 46.9856468 ], + [ 9.2232719, 46.9856189 ], + [ 9.223235, 46.9856137 ], + [ 9.2231966, 46.9856084 ], + [ 9.2231224, 46.985586 ], + [ 9.2230363, 46.9855655 ], + [ 9.2230044, 46.9855579 ], + [ 9.2229775, 46.9855542 ], + [ 9.2229103, 46.985545 ], + [ 9.2228851, 46.9855416 ], + [ 9.2228109, 46.9855393 ], + [ 9.2227223, 46.985526899999996 ], + [ 9.2226728, 46.9855198 ], + [ 9.2226487, 46.9855164 ], + [ 9.2225813, 46.9855063 ], + [ 9.2225119, 46.9854869 ], + [ 9.2224526, 46.9854769 ], + [ 9.2224511, 46.9854769 ], + [ 9.2223956, 46.9854764 ], + [ 9.2223829, 46.985481300000004 ], + [ 9.2223611, 46.9854898 ], + [ 9.2223586, 46.9854907 ], + [ 9.2223371, 46.9855139 ], + [ 9.2223063, 46.9855481 ], + [ 9.2222943, 46.9855558 ], + [ 9.2222919, 46.985557299999996 ], + [ 9.2222901, 46.9855585 ], + [ 9.2222743, 46.9855686 ], + [ 9.2222276, 46.9855757 ], + [ 9.2222156, 46.9855776 ], + [ 9.2222091, 46.985576 ], + [ 9.2221764, 46.9855682 ], + [ 9.2221504, 46.9855586 ], + [ 9.2221136, 46.9855388 ], + [ 9.2221034, 46.9855347 ], + [ 9.2220869, 46.9855282 ], + [ 9.2220814, 46.9855279 ], + [ 9.2220648, 46.9855268 ], + [ 9.2220458, 46.9855256 ], + [ 9.2220269, 46.9855265 ], + [ 9.2219931, 46.9855283 ], + [ 9.2219389, 46.9855267 ], + [ 9.2219344, 46.9855249 ], + [ 9.2219044, 46.9855125 ], + [ 9.2218896, 46.9854972 ], + [ 9.2218814, 46.9854887 ], + [ 9.2218625, 46.9854828 ], + [ 9.2218378, 46.9854751 ], + [ 9.2218011, 46.9854566 ], + [ 9.2217498, 46.9854375 ], + [ 9.2217114, 46.9854309 ], + [ 9.2216615, 46.9854076 ], + [ 9.2216576, 46.9854057 ], + [ 9.2216511, 46.985418 ], + [ 9.2216441, 46.9854314 ], + [ 9.2216322, 46.985454 ], + [ 9.2216032, 46.9855092 ], + [ 9.2216063, 46.9856011 ], + [ 9.2216586, 46.9856719 ], + [ 9.2216645, 46.9856825 ], + [ 9.2216782, 46.985707 ], + [ 9.2216835, 46.9857164 ], + [ 9.2216912, 46.9857371 ], + [ 9.2216945, 46.985746 ], + [ 9.221699, 46.9857579 ], + [ 9.2216908, 46.9857944 ], + [ 9.2216649, 46.9858129 ], + [ 9.2216171, 46.985834 ], + [ 9.2216175, 46.9858463 ], + [ 9.2216186, 46.9858767 ], + [ 9.2216191, 46.9858775 ], + [ 9.2216463, 46.9859137 ], + [ 9.2216894, 46.9859446 ], + [ 9.221692000000001, 46.9859465 ], + [ 9.2216959, 46.9859493 ], + [ 9.2217428, 46.9859967 ], + [ 9.221782, 46.9860463 ], + [ 9.2218175, 46.9860821 ], + [ 9.2218645, 46.9860846 ], + [ 9.2219263, 46.9861114 ], + [ 9.221951, 46.9861302 ], + [ 9.2219664, 46.9861418 ], + [ 9.2219896, 46.9861831 ], + [ 9.2219938, 46.98621 ], + [ 9.2219956, 46.9862215 ], + [ 9.2220112, 46.9862694 ], + [ 9.2220278, 46.9863109 ], + [ 9.2220282, 46.9863119 ], + [ 9.2220279, 46.9863124 ], + [ 9.2220059, 46.9863454 ], + [ 9.222003, 46.9863572 ], + [ 9.2219963, 46.986384 ], + [ 9.2220015, 46.9864582 ], + [ 9.2220087, 46.986556 ], + [ 9.2220317, 46.9866889 ], + [ 9.2220357, 46.9867125 ], + [ 9.2220505, 46.9868237 ], + [ 9.2220595, 46.9868918 ], + [ 9.2220542, 46.9869065 ], + [ 9.2220424, 46.9869387 ], + [ 9.2220406, 46.9869439 ], + [ 9.2220359, 46.9869565 ], + [ 9.2219489, 46.9870195 ], + [ 9.2218872, 46.9870714 ], + [ 9.2218521, 46.9871457 ], + [ 9.2218489, 46.9872302 ], + [ 9.2218562, 46.9872703 ], + [ 9.2218632, 46.9873627 ], + [ 9.2218466, 46.9874118 ], + [ 9.2218362, 46.9874423 ], + [ 9.2218266, 46.987452 ], + [ 9.2218154, 46.9874634 ], + [ 9.2217169, 46.9875635 ], + [ 9.2216834, 46.9875976 ], + [ 9.2216236, 46.9876614 ], + [ 9.2215908, 46.9877255 ], + [ 9.2215853, 46.9877327 ], + [ 9.2215857, 46.9877401 ], + [ 9.2215772, 46.9878163 ], + [ 9.2215966, 46.987923 ], + [ 9.2216015, 46.98795 ], + [ 9.2215989, 46.9879619 ], + [ 9.2215723, 46.9880845 ], + [ 9.2215697, 46.988102 ], + [ 9.2215661, 46.9881259 ], + [ 9.2215465, 46.9882566 ], + [ 9.221546, 46.988259 ], + [ 9.2215254, 46.9883223 ], + [ 9.22145, 46.988506 ], + [ 9.221409, 46.9885912 ], + [ 9.2213608, 46.9886948 ], + [ 9.2213443, 46.9887646 ], + [ 9.2213554, 46.9887968 ], + [ 9.2213661, 46.9888278 ], + [ 9.2213686, 46.9888349 ], + [ 9.2213804, 46.9889086 ], + [ 9.2213785, 46.9890093 ], + [ 9.2213169, 46.989129 ], + [ 9.2212584, 46.989284 ], + [ 9.2212135, 46.9893736 ], + [ 9.2212083, 46.9893838 ], + [ 9.2211788, 46.9894474 ], + [ 9.2211701, 46.9894664 ], + [ 9.2211561, 46.9895058 ], + [ 9.2211494, 46.9895247 ], + [ 9.2211451, 46.9895331 ], + [ 9.2211148, 46.989593 ], + [ 9.2210624, 46.9896843 ], + [ 9.221013899999999, 46.9897685 ], + [ 9.2209119, 46.9899044 ], + [ 9.2208735, 46.9899856 ], + [ 9.2208684, 46.9900045 ], + [ 9.2208351, 46.9901276 ], + [ 9.2208074, 46.9902213 ], + [ 9.220796, 46.9902626 ], + [ 9.2207919, 46.9902772 ], + [ 9.2207743, 46.9903406 ], + [ 9.2207367, 46.990443 ], + [ 9.220687999999999, 46.990554 ], + [ 9.2206813, 46.9905992 ], + [ 9.2206611, 46.9907344 ], + [ 9.220665, 46.9907747 ], + [ 9.2206693, 46.9908189 ], + [ 9.2206722, 46.99085 ], + [ 9.2207423, 46.991079 ], + [ 9.2208088, 46.9911363 ], + [ 9.220874, 46.9911705 ], + [ 9.2208831, 46.9911753 ], + [ 9.2209054, 46.9911888 ], + [ 9.2209919, 46.9912413 ], + [ 9.220996, 46.9912575 ], + [ 9.2210085, 46.9913077 ], + [ 9.2210183, 46.9913473 ], + [ 9.2209998, 46.9914672 ], + [ 9.2209981, 46.991478 ], + [ 9.220998, 46.9914781 ], + [ 9.2209755, 46.9915471 ], + [ 9.2209638, 46.9915827 ], + [ 9.2209639, 46.9916309 ], + [ 9.220964, 46.9916696 ], + [ 9.2209641, 46.991692 ], + [ 9.2210054, 46.9917996 ], + [ 9.2210136, 46.9918117 ], + [ 9.2210839, 46.9919149 ], + [ 9.2211996, 46.9920747 ], + [ 9.2212364, 46.992133 ], + [ 9.2212379, 46.9921354 ], + [ 9.2212533, 46.9921598 ], + [ 9.2213043, 46.9922778 ], + [ 9.221319, 46.9923444 ], + [ 9.2213334, 46.9924094 ], + [ 9.2213503, 46.9924517 ], + [ 9.2213872, 46.992544 ], + [ 9.2213937, 46.9925603 ], + [ 9.2214532, 46.9926706 ], + [ 9.2215221, 46.9927984 ], + [ 9.2215543, 46.9928639 ], + [ 9.2215551, 46.9928656 ], + [ 9.2215875, 46.9929313 ], + [ 9.2215847, 46.9929559 ], + [ 9.2215823, 46.9929766 ], + [ 9.2215798, 46.9929993 ], + [ 9.2216254, 46.9931244 ], + [ 9.2217105, 46.9932677 ], + [ 9.2217516, 46.9933814 ], + [ 9.2217638, 46.9934153 ], + [ 9.2217836, 46.9934701 ], + [ 9.2218327, 46.9935227 ], + [ 9.2218354, 46.9935256 ], + [ 9.2218353, 46.9935282 ], + [ 9.2218288, 46.9936712 ], + [ 9.2218498, 46.9937664 ], + [ 9.2218816, 46.9938249 ], + [ 9.2219002, 46.9938592 ], + [ 9.2219567, 46.9939447 ], + [ 9.2219937, 46.9939751 ], + [ 9.2220771, 46.9940443 ], + [ 9.2221287, 46.9940968 ], + [ 9.222169, 46.9941379 ], + [ 9.222227, 46.9942708 ], + [ 9.2222752, 46.9944427 ], + [ 9.2223381, 46.9945924 ], + [ 9.2223806, 46.9946823 ], + [ 9.2224303, 46.9947548 ], + [ 9.2224913, 46.9948355 ], + [ 9.2225222, 46.9948685 ], + [ 9.2225381, 46.9948806 ], + [ 9.2226018, 46.9949288 ], + [ 9.2226211, 46.9949434 ], + [ 9.2227602, 46.9950331 ], + [ 9.2228979, 46.9951245 ], + [ 9.223034, 46.9952107 ], + [ 9.2232043, 46.9953437 ], + [ 9.223321, 46.995438899999996 ], + [ 9.223444, 46.9955555 ], + [ 9.2235471, 46.9956286 ], + [ 9.2237028, 46.9957085 ], + [ 9.2237981, 46.9957606 ], + [ 9.2238096, 46.9957669 ], + [ 9.2238649, 46.995791 ], + [ 9.2238968, 46.995805 ], + [ 9.2239746, 46.9958389 ], + [ 9.2241517, 46.9958947 ], + [ 9.2242811, 46.9959359 ], + [ 9.2242879, 46.995938 ], + [ 9.2243157, 46.9959533 ], + [ 9.2243446, 46.995969099999996 ], + [ 9.2243776, 46.9959872 ], + [ 9.2244716, 46.9960448 ], + [ 9.2244771, 46.9960494 ], + [ 9.2244958, 46.996065 ], + [ 9.2245101, 46.996077 ], + [ 9.2245179, 46.9960834 ], + [ 9.2245535, 46.9961061 ], + [ 9.2245911, 46.9961301 ], + [ 9.2246472, 46.9961531 ], + [ 9.2246637, 46.9961599 ], + [ 9.2247258, 46.9961726 ], + [ 9.2247337, 46.9961742 ], + [ 9.2247528, 46.9961753 ], + [ 9.2247915, 46.9961773 ], + [ 9.2249365, 46.9961852 ], + [ 9.2251124, 46.9961881 ], + [ 9.2251142, 46.9961884 ], + [ 9.2251574, 46.9961966 ], + [ 9.2251742, 46.9961998 ], + [ 9.2252321, 46.9962199 ], + [ 9.2252433, 46.9962276 ], + [ 9.2252618, 46.9962404 ], + [ 9.225274, 46.9962488 ], + [ 9.2253083, 46.9962932 ], + [ 9.2253098, 46.9963382 ], + [ 9.2253019, 46.9964057 ], + [ 9.2253017, 46.9964074 ], + [ 9.225301, 46.9964123 ], + [ 9.2252944, 46.9964573 ], + [ 9.225292, 46.9964733 ], + [ 9.2252812, 46.9965157 ], + [ 9.2252831, 46.996532 ], + [ 9.2252866, 46.9965623 ], + [ 9.225287, 46.9965662 ], + [ 9.225294, 46.9965879 ], + [ 9.2253031, 46.9966165 ], + [ 9.2253062, 46.996653 ], + [ 9.2253064, 46.9966561 ], + [ 9.2253099, 46.9966965 ], + [ 9.2252967, 46.9967404 ], + [ 9.2252934, 46.9967515 ], + [ 9.2252631, 46.9967855 ], + [ 9.2252595, 46.9967895 ], + [ 9.225254, 46.9967957 ], + [ 9.2252361, 46.9968243 ], + [ 9.2252327, 46.9968297 ], + [ 9.2252396, 46.9968521 ], + [ 9.2252474, 46.996862899999996 ], + [ 9.2252482, 46.9968641 ], + [ 9.2252546, 46.996873 ], + [ 9.2252618, 46.9968783 ], + [ 9.2252792, 46.9968913 ], + [ 9.2253323, 46.9969308 ], + [ 9.2253931, 46.9969748 ], + [ 9.2254179, 46.9969856 ], + [ 9.2255261, 46.9970328 ], + [ 9.2255426, 46.9970399 ], + [ 9.2255764, 46.9970629 ], + [ 9.2256054, 46.9970825 ], + [ 9.2256113, 46.9970884 ], + [ 9.2256915, 46.997169 ], + [ 9.2256923, 46.9971697 ], + [ 9.2256925, 46.99717 ], + [ 9.2258738, 46.9973948 ], + [ 9.2259037, 46.9974349 ], + [ 9.2259149, 46.9974614 ], + [ 9.2259264, 46.9975004 ], + [ 9.2259396, 46.9975282 ], + [ 9.2259655, 46.9975684 ], + [ 9.2259769, 46.9975777 ], + [ 9.2260064, 46.9976019 ], + [ 9.2260075, 46.9976027 ], + [ 9.2260234, 46.9976111 ], + [ 9.226049100000001, 46.9976245 ], + [ 9.2260621, 46.99763 ], + [ 9.226103, 46.9976474 ], + [ 9.2261198, 46.9976612 ], + [ 9.2261306, 46.9976792 ], + [ 9.2261402, 46.9977085 ], + [ 9.2261443, 46.997721 ], + [ 9.2261608, 46.9977852 ], + [ 9.2261716, 46.997862 ], + [ 9.2261808, 46.9979543 ], + [ 9.226184, 46.9979865 ], + [ 9.2261993, 46.9980185 ], + [ 9.2262213, 46.9980629 ], + [ 9.2262453, 46.9981005 ], + [ 9.2262515, 46.9981101 ], + [ 9.2262549, 46.9981252 ], + [ 9.2262579, 46.9981384 ], + [ 9.2262587, 46.9981422 ], + [ 9.2262612, 46.9981615 ], + [ 9.226267, 46.9982051 ], + [ 9.2262747, 46.9982378 ], + [ 9.2262789, 46.9982553 ], + [ 9.2262835, 46.9982639 ], + [ 9.2263029, 46.9982997 ], + [ 9.2263067, 46.9983143 ], + [ 9.2263169, 46.9983527 ], + [ 9.2263232, 46.9984157 ], + [ 9.2263184, 46.998455 ], + [ 9.2263051, 46.9984918 ], + [ 9.2262885, 46.9985381 ], + [ 9.2262805, 46.9985694 ], + [ 9.2262741, 46.9985943 ], + [ 9.2262792, 46.998625 ], + [ 9.2262902, 46.9986459 ], + [ 9.2262945, 46.9986542 ], + [ 9.2262961, 46.9986577 ], + [ 9.2263071, 46.9986828 ], + [ 9.2263122, 46.9986945 ], + [ 9.226309, 46.9987198 ], + [ 9.2263077, 46.9987237 ], + [ 9.2262979, 46.9987536 ], + [ 9.2263011, 46.9987858 ], + [ 9.2263142, 46.9988136 ], + [ 9.2263152, 46.9988147 ], + [ 9.2263398, 46.998844 ], + [ 9.2264111, 46.9988975 ], + [ 9.2264129, 46.9988992 ], + [ 9.2264512, 46.998936 ], + [ 9.2264826, 46.9989594 ], + [ 9.226543, 46.9989842 ], + [ 9.2265494, 46.9989884 ], + [ 9.2265741, 46.9990069 ], + [ 9.2265848, 46.99903 ], + [ 9.2265895, 46.9990403 ], + [ 9.2266018, 46.9990933 ], + [ 9.2266208, 46.9991393 ], + [ 9.2266507, 46.9991891 ], + [ 9.226666699999999, 46.9992137 ], + [ 9.2266678, 46.9992153 ], + [ 9.226696, 46.9992353 ], + [ 9.2267217, 46.9992536 ], + [ 9.2267511, 46.9992807 ], + [ 9.226753, 46.9992824 ], + [ 9.2267761, 46.9993086 ], + [ 9.2267953, 46.999339 ], + [ 9.2268092, 46.9993745 ], + [ 9.2268196, 46.999401399999996 ], + [ 9.2268173, 46.9994545 ], + [ 9.2268195, 46.9994674 ], + [ 9.2268228, 46.9994874 ], + [ 9.2268248, 46.999499 ], + [ 9.226838, 46.9995323 ], + [ 9.2268594, 46.9995669 ], + [ 9.2268891, 46.9996097 ], + [ 9.2269035, 46.9996245 ], + [ 9.2269331, 46.9996551 ], + [ 9.2269544, 46.9996855 ], + [ 9.226984999999999, 46.9997548 ], + [ 9.2269903, 46.9997708 ], + [ 9.2270068, 46.9998211 ], + [ 9.2270119, 46.9998367 ], + [ 9.2270437, 46.9998795 ], + [ 9.227077, 46.9999055 ], + [ 9.2271159, 46.9999203 ], + [ 9.2271852, 46.9999304 ], + [ 9.2272334, 46.9999365 ], + [ 9.2272441, 46.9999379 ], + [ 9.2273075, 46.9999551 ], + [ 9.2273583, 47.0000036 ], + [ 9.2273765, 47.000021 ], + [ 9.2273935, 47.0000445 ], + [ 9.2273929, 47.0000569 ], + [ 9.2273923, 47.000071 ], + [ 9.227389, 47.0000934 ], + [ 9.2273921, 47.0001268 ], + [ 9.2273929, 47.0001282 ], + [ 9.2274024, 47.0001442 ], + [ 9.2274044, 47.0001476 ], + [ 9.2274135, 47.0001628 ], + [ 9.2274577, 47.0002138 ], + [ 9.2274899, 47.0002705 ], + [ 9.2274956, 47.0003206 ], + [ 9.2274871, 47.0003558 ], + [ 9.227483, 47.0003724 ], + [ 9.2274604, 47.0004432 ], + [ 9.227442, 47.0004877 ], + [ 9.227432, 47.000512 ], + [ 9.2274276, 47.0005243 ], + [ 9.2274152, 47.0005593 ], + [ 9.2274111, 47.0005958 ], + [ 9.2274104, 47.0006023 ], + [ 9.2274122, 47.0006618 ], + [ 9.2274098, 47.0007158 ], + [ 9.2273993, 47.0007699 ], + [ 9.2273846, 47.0008227 ], + [ 9.2273679, 47.0008728 ], + [ 9.2273623, 47.0008832 ], + [ 9.2273494, 47.0009076 ], + [ 9.2273486, 47.000909 ], + [ 9.2273092, 47.0009511 ], + [ 9.2273002, 47.0009604 ], + [ 9.2272777, 47.0009835 ], + [ 9.2272438, 47.0010061 ], + [ 9.2271781, 47.0010528 ], + [ 9.2271167, 47.0011077 ], + [ 9.2270971, 47.0011343 ], + [ 9.2270819, 47.0011691 ], + [ 9.2270746, 47.0011955 ], + [ 9.2270531, 47.0012235 ], + [ 9.2270092, 47.0012533 ], + [ 9.2270059, 47.0012551 ], + [ 9.2269787, 47.0012698 ], + [ 9.2268484, 47.0013295 ], + [ 9.226808, 47.001348 ], + [ 9.2267221, 47.0013544 ], + [ 9.2266902, 47.0013568 ], + [ 9.2266418, 47.0013718 ], + [ 9.2266105, 47.0013815 ], + [ 9.2265726, 47.0014159 ], + [ 9.2265448, 47.0014411 ], + [ 9.2265165, 47.0014804 ], + [ 9.2265126, 47.0015218 ], + [ 9.2265124, 47.0015235 ], + [ 9.2265119, 47.0015237 ], + [ 9.2264332, 47.0015639 ], + [ 9.2264235, 47.0015689 ], + [ 9.2263313, 47.0016394 ], + [ 9.2261961, 47.0017338 ], + [ 9.2260739, 47.0018341 ], + [ 9.2259896, 47.0018905 ], + [ 9.2259551, 47.0019136 ], + [ 9.2258737, 47.0019692 ], + [ 9.2258103, 47.0020538 ], + [ 9.2256927, 47.0021256 ], + [ 9.2256334, 47.0021533 ], + [ 9.2256259, 47.0021569 ], + [ 9.2256205, 47.0021572 ], + [ 9.2255525, 47.0021616 ], + [ 9.2255256, 47.0021754 ], + [ 9.2254622, 47.0022079 ], + [ 9.2253637, 47.0022226 ], + [ 9.2253163, 47.0022785 ], + [ 9.2252896, 47.0022898 ], + [ 9.2252592, 47.0023027 ], + [ 9.2252224, 47.0023024 ], + [ 9.2251926, 47.0023021 ], + [ 9.225103, 47.0023269 ], + [ 9.2250241, 47.0023756 ], + [ 9.2248984, 47.00242 ], + [ 9.2247948, 47.0024545 ], + [ 9.2247838, 47.0024582 ], + [ 9.2247454, 47.0024808 ], + [ 9.2247192, 47.0024963 ], + [ 9.2246492, 47.0025302 ], + [ 9.2245799, 47.0025307 ], + [ 9.2245686, 47.0025308 ], + [ 9.2245594, 47.0025385 ], + [ 9.2245302, 47.0025633 ], + [ 9.2244789, 47.0025917 ], + [ 9.2243724, 47.0026211 ], + [ 9.2243156, 47.0026548 ], + [ 9.2243002, 47.002667 ], + [ 9.2242665, 47.0026935 ], + [ 9.2242373, 47.0027164 ], + [ 9.224186, 47.0027853 ], + [ 9.2241512, 47.0028143 ], + [ 9.2240995, 47.0028574 ], + [ 9.2239977, 47.0029358 ], + [ 9.2238952, 47.0030348 ], + [ 9.2238045, 47.0031087 ], + [ 9.2237604, 47.0031286 ], + [ 9.2237137, 47.0031497 ], + [ 9.2237015, 47.0031552 ], + [ 9.223674, 47.0031949 ], + [ 9.2236652, 47.0032075 ], + [ 9.2236642, 47.0032461 ], + [ 9.2236634, 47.0032729 ], + [ 9.2236196, 47.0033133 ], + [ 9.2235432, 47.0033525 ], + [ 9.2234842, 47.0033743 ], + [ 9.2234162, 47.0033994 ], + [ 9.2234081, 47.0034052 ], + [ 9.22331, 47.0034757 ], + [ 9.2232725, 47.0035026 ], + [ 9.2232245, 47.003537 ], + [ 9.223143, 47.0036271 ], + [ 9.2230438, 47.0037011 ], + [ 9.2229281, 47.0037488 ], + [ 9.2228833, 47.0037811 ], + [ 9.2228302, 47.0038193 ], + [ 9.2227582, 47.0038263 ], + [ 9.2227118, 47.0038308 ], + [ 9.222652, 47.0038603 ], + [ 9.2226075, 47.0039196 ], + [ 9.2225932, 47.0039357 ], + [ 9.2225206, 47.0040175 ], + [ 9.2224152, 47.0041166 ], + [ 9.2222579, 47.0041873 ], + [ 9.2221122, 47.004226 ], + [ 9.2220262, 47.0042714 ], + [ 9.2220026, 47.0043059 ], + [ 9.2219779, 47.0043421 ], + [ 9.2219698, 47.0043541 ], + [ 9.2218926, 47.0044123 ], + [ 9.2218328, 47.0044483 ], + [ 9.2217999, 47.0044681 ], + [ 9.2217844, 47.0045011 ], + [ 9.2217697, 47.0045323 ], + [ 9.221742, 47.0045887 ], + [ 9.2216389, 47.0047093 ], + [ 9.2216286, 47.0047159 ], + [ 9.2215272, 47.0047815 ], + [ 9.2215076, 47.0047942 ], + [ 9.2214302, 47.0048455 ], + [ 9.2214129, 47.0048612 ], + [ 9.2213878, 47.0048841 ], + [ 9.2213811, 47.0049341 ], + [ 9.2213455, 47.0050036 ], + [ 9.2213039, 47.005068 ], + [ 9.2212619, 47.0051186 ], + [ 9.2212679, 47.005165 ], + [ 9.2212428, 47.0052136 ], + [ 9.2211961, 47.0052532 ], + [ 9.221174, 47.0053069 ], + [ 9.2211462, 47.005359 ], + [ 9.2211278, 47.0053981 ], + [ 9.2210863, 47.0054628 ], + [ 9.221077, 47.0054773 ], + [ 9.2210611, 47.0054834 ], + [ 9.2210412, 47.0054911 ], + [ 9.2210142, 47.0055016 ], + [ 9.2209178, 47.005531 ], + [ 9.2209036, 47.0055354 ], + [ 9.2207932, 47.0055726 ], + [ 9.2207351, 47.0056121 ], + [ 9.2206814, 47.0056486 ], + [ 9.220612, 47.0057255 ], + [ 9.2205543, 47.0057665 ], + [ 9.2204989, 47.0058058 ], + [ 9.2204534, 47.0058485 ], + [ 9.2204048, 47.0058942 ], + [ 9.2204046, 47.0058943 ], + [ 9.2202968, 47.0059668 ], + [ 9.2202671, 47.0059887 ], + [ 9.2202073, 47.0060329 ], + [ 9.2201941, 47.0060474 ], + [ 9.2201461, 47.0061002 ], + [ 9.2200929, 47.006148 ], + [ 9.2200731, 47.0061658 ], + [ 9.2200611, 47.0061766 ], + [ 9.2199648, 47.0062514 ], + [ 9.2198984, 47.006293 ], + [ 9.2198347, 47.0063707 ], + [ 9.219745, 47.0064317 ], + [ 9.2196631, 47.0064744 ], + [ 9.2195507, 47.0065349 ], + [ 9.2194511, 47.0065986 ], + [ 9.219406, 47.0066396 ], + [ 9.2193996, 47.0066454 ], + [ 9.219369, 47.0066731 ], + [ 9.2192535, 47.0067664 ], + [ 9.2191536, 47.0068576 ], + [ 9.2191108, 47.0069255 ], + [ 9.2191096, 47.0069308 ], + [ 9.2190998, 47.006975 ], + [ 9.2190484, 47.0070417 ], + [ 9.2190483, 47.0070418 ], + [ 9.219008, 47.0070823 ], + [ 9.2189651, 47.0071253 ], + [ 9.2189534, 47.0071371 ], + [ 9.2189447, 47.007154 ], + [ 9.2189365, 47.0071698 ], + [ 9.2189313, 47.0071799 ], + [ 9.218908, 47.0072251 ], + [ 9.2188788, 47.0072464 ], + [ 9.2188773, 47.0072475 ], + [ 9.2188631, 47.0072579 ], + [ 9.2188559, 47.0072894 ], + [ 9.218838, 47.0073686 ], + [ 9.2188272, 47.0073994 ], + [ 9.2188267, 47.0074013 ], + [ 9.2188263, 47.0074019 ], + [ 9.2188027, 47.0074696 ], + [ 9.2187333, 47.0075539 ], + [ 9.2186983, 47.0075964 ], + [ 9.2186343, 47.0076748 ], + [ 9.218606, 47.0077503 ], + [ 9.2186057, 47.0077509 ], + [ 9.2185095, 47.0078554 ], + [ 9.2184652, 47.0079183 ], + [ 9.218452599999999, 47.0079361 ], + [ 9.2183705, 47.0080412 ], + [ 9.2183375, 47.0081051 ], + [ 9.2183252, 47.0081293 ], + [ 9.2183155, 47.0081482 ], + [ 9.2182846, 47.008176 ], + [ 9.2182259, 47.0082287 ], + [ 9.2181286, 47.0082673 ], + [ 9.2179489, 47.0083072 ], + [ 9.2178925, 47.0083328 ], + [ 9.2178179, 47.0083686 ], + [ 9.2176425, 47.0083894 ], + [ 9.2176419, 47.0083897 ], + [ 9.217612, 47.0084323 ], + [ 9.2175894, 47.0084644 ], + [ 9.2174817, 47.0085649 ], + [ 9.2174634, 47.0085808 ], + [ 9.2174549, 47.0085951 ], + [ 9.2174213, 47.0086173 ], + [ 9.2173781, 47.0086546 ], + [ 9.2172966, 47.0087298 ], + [ 9.2172508, 47.0087719 ], + [ 9.2172236, 47.0088407 ], + [ 9.2171585, 47.0089421 ], + [ 9.2171502, 47.0089737 ], + [ 9.2171331, 47.009038 ], + [ 9.217119, 47.0090518 ], + [ 9.2170771, 47.0090926 ], + [ 9.2170618, 47.0091075 ], + [ 9.2170565, 47.0091262 ], + [ 9.2170044, 47.009211 ], + [ 9.2169618, 47.0093287 ], + [ 9.2170037, 47.0094451 ], + [ 9.2169322, 47.009582 ], + [ 9.2168188, 47.009729 ], + [ 9.2166438, 47.0099946 ], + [ 9.2165041, 47.0101774 ], + [ 9.2163349, 47.0103613 ], + [ 9.2162418, 47.0105462 ], + [ 9.2156295, 47.0108231 ], + [ 9.2155745, 47.0109482 ], + [ 9.2155625, 47.0110344 ], + [ 9.2154308, 47.0111719 ], + [ 9.2154359, 47.0112281 ], + [ 9.2153995, 47.0112468 ], + [ 9.2153697, 47.0112696 ], + [ 9.2150994, 47.0113687 ], + [ 9.2149365, 47.0113763 ], + [ 9.2148207, 47.0113527 ], + [ 9.2147432, 47.0115873 ], + [ 9.2148119, 47.0118704 ], + [ 9.2147555, 47.0122949 ], + [ 9.2146187, 47.0127562 ], + [ 9.2145261, 47.0129834 ], + [ 9.2145193, 47.0132271 ], + [ 9.2143092, 47.0138278 ], + [ 9.2136297, 47.0148125 ], + [ 9.2129974, 47.0149846 ], + [ 9.2112665, 47.016244 ], + [ 9.2107626, 47.01716 ], + [ 9.2104308, 47.0177733 ], + [ 9.2103615, 47.0180439 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "JBG0010", + "country" : "CHE", + "name" : [ + { + "text" : "Eidgenössisches Jagdbanngebiet Chrauchtal", + "lang" : "de-CH" + }, + { + "text" : "District franc fédéral Chrauchtal", + "lang" : "fr-CH" + }, + { + "text" : "Bandita federale di caccia Chrauchtal", + "lang" : "it-CH" + }, + { + "text" : "Federal Game Reserve Chrauchtal", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.1586312, 46.2671138 ], + [ 6.1588321, 46.267024 ], + [ 6.1600781, 46.267622 ], + [ 6.1615622, 46.2678442 ], + [ 6.1628266, 46.2676846 ], + [ 6.1635526, 46.2684654 ], + [ 6.1648012, 46.2690646 ], + [ 6.1662854, 46.2692867 ], + [ 6.1677792, 46.2690981 ], + [ 6.1690551, 46.268527399999996 ], + [ 6.169919, 46.2676614 ], + [ 6.1702393, 46.2666322 ], + [ 6.1699672, 46.2655962 ], + [ 6.1691443, 46.2647113 ], + [ 6.1678958, 46.2641122 ], + [ 6.1664118, 46.2638901 ], + [ 6.1651474, 46.2640497 ], + [ 6.1644214, 46.263269 ], + [ 6.163173, 46.2626698 ], + [ 6.161689, 46.2624476 ], + [ 6.160412, 46.2626088 ], + [ 6.1602592, 46.2619963 ], + [ 6.160153, 46.2618568 ], + [ 6.1600888, 46.261606 ], + [ 6.159516, 46.2608608 ], + [ 6.1594964, 46.2608428 ], + [ 6.1594962, 46.2608427 ], + [ 6.1594954, 46.2608419 ], + [ 6.1594944, 46.260841 ], + [ 6.1594943, 46.2608409 ], + [ 6.1594917, 46.2608385 ], + [ 6.1594912, 46.2608381 ], + [ 6.159489, 46.260836 ], + [ 6.1594866, 46.2608338 ], + [ 6.1594862, 46.2608335 ], + [ 6.159486, 46.2608333 ], + [ 6.1594845, 46.2608319 ], + [ 6.1594844, 46.2608318 ], + [ 6.1594824, 46.26083 ], + [ 6.1594811, 46.2608288 ], + [ 6.159479, 46.2608269 ], + [ 6.1594779, 46.2608259 ], + [ 6.1594771, 46.2608251 ], + [ 6.1594765, 46.2608246 ], + [ 6.1594741, 46.2608223 ], + [ 6.1594412, 46.2607921 ], + [ 6.1594152, 46.2607683 ], + [ 6.1594151, 46.2607682 ], + [ 6.159415, 46.2607681 ], + [ 6.1594128, 46.2607661 ], + [ 6.1594119, 46.2607652 ], + [ 6.1594103, 46.2607638 ], + [ 6.1594103, 46.2607637 ], + [ 6.1594099, 46.2607633 ], + [ 6.1594074, 46.2607611 ], + [ 6.1594072, 46.260761 ], + [ 6.1594052, 46.260759 ], + [ 6.1594033, 46.2607574 ], + [ 6.1594027, 46.2607568 ], + [ 6.159401, 46.2607552 ], + [ 6.1593999, 46.2607542 ], + [ 6.1593997, 46.260754 ], + [ 6.1593995, 46.2607538 ], + [ 6.1593992, 46.2607535 ], + [ 6.1593975, 46.260752 ], + [ 6.1593952, 46.2607499 ], + [ 6.1593947, 46.2607494 ], + [ 6.1593926, 46.2607475 ], + [ 6.159373, 46.2607295 ], + [ 6.1584904, 46.2601408 ], + [ 6.1582301, 46.2600537 ], + [ 6.157834, 46.2597971 ], + [ 6.1566467, 46.2594333 ], + [ 6.155353, 46.2593605 ], + [ 6.1540968, 46.259587 ], + [ 6.1530179, 46.2600875 ], + [ 6.1529565999999996, 46.2601276 ], + [ 6.1521207, 46.2609218 ], + [ 6.1517505, 46.2618711 ], + [ 6.151778, 46.2620568 ], + [ 6.1518126, 46.2628935 ], + [ 6.1518171, 46.2629008 ], + [ 6.151191, 46.2631807 ], + [ 6.1503268, 46.2640465 ], + [ 6.1502799, 46.2641972 ], + [ 6.1500376, 46.26444 ], + [ 6.1497169, 46.2654692 ], + [ 6.1499886, 46.2665052 ], + [ 6.1508112, 46.2673902 ], + [ 6.1520596, 46.2679895 ], + [ 6.1535437, 46.2682119 ], + [ 6.1541457, 46.2681359 ], + [ 6.1544718, 46.2681847 ], + [ 6.1559656, 46.2679963 ], + [ 6.1572417, 46.2674257 ], + [ 6.1573975, 46.2672695 ], + [ 6.1586312, 46.2671138 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-15", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.9539869, 46.7916953 ], + [ 7.9539814, 46.791714 ], + [ 7.9539846, 46.7920558 ], + [ 7.9533978, 46.7923283 ], + [ 7.9529843, 46.7929149 ], + [ 7.9526581, 46.7930513 ], + [ 7.9524889, 46.79316 ], + [ 7.9527951, 46.7936804 ], + [ 7.9534163, 46.7942623 ], + [ 7.9536138, 46.7943693 ], + [ 7.9540523, 46.795024 ], + [ 7.9539227, 46.7951595 ], + [ 7.9538595, 46.7954027 ], + [ 7.9538625, 46.7957175 ], + [ 7.9537335, 46.795925 ], + [ 7.9525632, 46.7968298 ], + [ 7.951786, 46.7977509 ], + [ 7.9514019, 46.7986791 ], + [ 7.9510791, 46.7991753 ], + [ 7.9508475999999995, 46.7996261 ], + [ 7.9508534, 46.7996324 ], + [ 7.9510684, 46.7997657 ], + [ 7.9512094, 46.7998771 ], + [ 7.9512686, 46.7999891 ], + [ 7.9512956, 46.8001578 ], + [ 7.9512895, 46.8002929 ], + [ 7.9513814, 46.8003934 ], + [ 7.9515552, 46.8005045 ], + [ 7.9517942, 46.800587 ], + [ 7.9520753, 46.8006971 ], + [ 7.9522247, 46.8008254 ], + [ 7.9523496, 46.8009593 ], + [ 7.952368, 46.8010775 ], + [ 7.9524125, 46.8012853 ], + [ 7.9524554, 46.801403 ], + [ 7.9525377, 46.8014475 ], + [ 7.9526208, 46.8014918 ], + [ 7.9526786, 46.8015362 ], + [ 7.9527525, 46.8015581 ], + [ 7.9529668000000004, 46.8016239 ], + [ 7.9531486, 46.8017123 ], + [ 7.9533218, 46.801756 ], + [ 7.9534943, 46.8018165 ], + [ 7.9535937, 46.801855 ], + [ 7.9537186, 46.8019891 ], + [ 7.9538694, 46.8021735 ], + [ 7.9540275, 46.8023523 ], + [ 7.9541769, 46.8024747 ], + [ 7.9544486, 46.802551199999996 ], + [ 7.9548037, 46.8026947 ], + [ 7.9549367, 46.8028117 ], + [ 7.9551268, 46.802917 ], + [ 7.9553971, 46.8029261 ], + [ 7.9557818, 46.8029059 ], + [ 7.956127, 46.8029593 ], + [ 7.9563172, 46.8030758 ], + [ 7.9564664, 46.8031703 ], + [ 7.9566137, 46.8031634 ], + [ 7.9569735999999995, 46.8031267 ], + [ 7.9574082, 46.8031061 ], + [ 7.9577519, 46.8030863 ], + [ 7.957924, 46.8031073 ], + [ 7.9579746, 46.8031688 ], + [ 7.9579192, 46.8032875 ], + [ 7.9579784, 46.803394 ], + [ 7.9580692, 46.803472 ], + [ 7.9582018, 46.8035553 ], + [ 7.9583749, 46.8035875 ], + [ 7.9584486, 46.8035925 ], + [ 7.958604, 46.8035688 ], + [ 7.9587594, 46.8035561 ], + [ 7.9589969, 46.8035542 ], + [ 7.9591771, 46.8035639 ], + [ 7.9594146, 46.8035675 ], + [ 7.9596038, 46.8035772 ], + [ 7.9597838, 46.8035644 ], + [ 7.9598982, 46.8035353 ], + [ 7.9600361, 46.8034892 ], + [ 7.9601176, 46.8034434 ], + [ 7.960208, 46.8034877 ], + [ 7.9603155999999995, 46.8035205 ], + [ 7.9604308, 46.8035814 ], + [ 7.960555, 46.8036366 ], + [ 7.9606534, 46.8036472 ], + [ 7.9608754, 46.8036565 ], + [ 7.9610888, 46.803711 ], + [ 7.9612118, 46.8037268 ], + [ 7.961269, 46.8037207 ], + [ 7.961408, 46.8037026 ], + [ 7.9615962, 46.8036898 ], + [ 7.9617611, 46.8037166 ], + [ 7.9618927, 46.8037773 ], + [ 7.9619842, 46.8038384 ], + [ 7.962084, 46.8039164 ], + [ 7.9622155, 46.8039716 ], + [ 7.9624135, 46.8040375 ], + [ 7.9626608, 46.8041254 ], + [ 7.9628341, 46.8041745 ], + [ 7.9630124, 46.8040718 ], + [ 7.9630939, 46.8040317 ], + [ 7.9632002, 46.8040139 ], + [ 7.9633312, 46.8040127 ], + [ 7.9634703, 46.8040115 ], + [ 7.9635686, 46.8040108 ], + [ 7.9636832, 46.8040099 ], + [ 7.9637816, 46.8040259 ], + [ 7.9638563, 46.8040421 ], + [ 7.963971, 46.8040468 ], + [ 7.9640695, 46.8040684 ], + [ 7.9642006, 46.8040842 ], + [ 7.9642906, 46.8040722 ], + [ 7.9643803, 46.8040377 ], + [ 7.9644537, 46.8040089 ], + [ 7.9645848, 46.8040191 ], + [ 7.9647814, 46.804023 ], + [ 7.9649708, 46.8040551 ], + [ 7.9651019, 46.8040653 ], + [ 7.9652004, 46.8040813 ], + [ 7.9652985, 46.8040692 ], + [ 7.9653637, 46.8040405 ], + [ 7.9655114, 46.8040675 ], + [ 7.9656586, 46.8040549 ], + [ 7.9657895, 46.804037 ], + [ 7.9658806, 46.8040643 ], + [ 7.9659875, 46.8041085 ], + [ 7.9660939, 46.804102 ], + [ 7.9662084, 46.8040952 ], + [ 7.9663066, 46.804088899999996 ], + [ 7.9663886, 46.8040937 ], + [ 7.9665206, 46.8041152 ], + [ 7.9666598, 46.804114 ], + [ 7.9667977, 46.8040678 ], + [ 7.9669685, 46.8039481 ], + [ 7.9671056, 46.8038176 ], + [ 7.9672939, 46.803816 ], + [ 7.9673252, 46.8037481 ], + [ 7.9674882, 46.8036736 ], + [ 7.9677012, 46.8036886 ], + [ 7.9678581, 46.8037323 ], + [ 7.9681850999999995, 46.8036846 ], + [ 7.9686023, 46.8036416 ], + [ 7.9689377, 46.8036163 ], + [ 7.9691591, 46.8036425 ], + [ 7.9693652, 46.8037083 ], + [ 7.9695126, 46.8037071 ], + [ 7.9696766, 46.8037281 ], + [ 7.969907, 46.8037599 ], + [ 7.9701691, 46.803769 ], + [ 7.9705143, 46.8038223 ], + [ 7.970702, 46.8037588 ], + [ 7.9708003, 46.8037579 ], + [ 7.9708904, 46.8037628 ], + [ 7.970981, 46.8038127 ], + [ 7.9710399, 46.803891 ], + [ 7.9711909, 46.8040979 ], + [ 7.9713338, 46.8043048 ], + [ 7.9715648, 46.804393 ], + [ 7.9717793, 46.8044755 ], + [ 7.9724836, 46.8044921 ], + [ 7.9729758, 46.8044934 ], + [ 7.9732383, 46.8045476 ], + [ 7.9733456, 46.8045466 ], + [ 7.9734694, 46.8046412 ], + [ 7.9735283, 46.8047251 ], + [ 7.97353, 46.8048095 ], + [ 7.9734852, 46.80508 ], + [ 7.9733681999999995, 46.8054243 ], + [ 7.9732172, 46.8057182 ], + [ 7.9731062, 46.8059218 ], + [ 7.9730511, 46.8060629 ], + [ 7.9730942, 46.8061977 ], + [ 7.9732123, 46.8063767 ], + [ 7.9733617, 46.8064937 ], + [ 7.9735669, 46.8065425 ], + [ 7.9738461, 46.8065402 ], + [ 7.9739935, 46.8065502 ], + [ 7.9741671, 46.806633 ], + [ 7.9743492, 46.8067384 ], + [ 7.9745308999999995, 46.8068214 ], + [ 7.9746477, 46.8069497 ], + [ 7.9748158, 46.8072183 ], + [ 7.9750114, 46.807622 ], + [ 7.9752102, 46.8077665 ], + [ 7.9755069, 46.8078766 ], + [ 7.9757298, 46.807976 ], + [ 7.9760932, 46.8081249 ], + [ 7.9762093, 46.8081801 ], + [ 7.9762838, 46.8082694 ], + [ 7.9763771, 46.8084207 ], + [ 7.9765121, 46.8086615 ], + [ 7.9766124, 46.8087788 ], + [ 7.976712, 46.8088341 ], + [ 7.9768761999999995, 46.8088778 ], + [ 7.9769994, 46.8089105 ], + [ 7.9770825, 46.8089548 ], + [ 7.9771564, 46.8089655 ], + [ 7.9772546, 46.8089646 ], + [ 7.9773624, 46.8090144 ], + [ 7.9784138, 46.8091798 ], + [ 7.9785461, 46.8092236 ], + [ 7.9787843, 46.8092947 ], + [ 7.9791045, 46.8092919 ], + [ 7.9792931, 46.8093184 ], + [ 7.9794256, 46.8093792 ], + [ 7.979557, 46.8094175 ], + [ 7.9797209, 46.8094329 ], + [ 7.9798516, 46.8093982 ], + [ 7.9800871, 46.8092835 ], + [ 7.9805277, 46.8091278 ], + [ 7.9807732, 46.8091144 ], + [ 7.98125, 46.8092116 ], + [ 7.981587, 46.8092594 ], + [ 7.9818676, 46.8093864 ], + [ 7.9821808999999995, 46.8095243 ], + [ 7.9825037, 46.8097017 ], + [ 7.9828348, 46.8098902 ], + [ 7.9834051, 46.8101666 ], + [ 7.9836852, 46.8102542 ], + [ 7.9838998, 46.8103367 ], + [ 7.9841211, 46.8103517 ], + [ 7.9845302, 46.8103201 ], + [ 7.985013, 46.8102877 ], + [ 7.9852353, 46.8103307 ], + [ 7.9853843, 46.8104027 ], + [ 7.9855088, 46.810486 ], + [ 7.985634, 46.8106426 ], + [ 7.9857931, 46.8108211 ], + [ 7.9859327, 46.810865 ], + [ 7.9860966, 46.8108748 ], + [ 7.9861698, 46.8108236 ], + [ 7.9862253, 46.8107274 ], + [ 7.9862234, 46.8106149 ], + [ 7.9861802, 46.8104801 ], + [ 7.9862041, 46.8104124 ], + [ 7.9862928, 46.8103611 ], + [ 7.9864151, 46.8103037 ], + [ 7.986579, 46.8103191 ], + [ 7.9867605, 46.8103683 ], + [ 7.9870312, 46.810416599999996 ], + [ 7.9873517, 46.8104419 ], + [ 7.9877038, 46.8104388 ], + [ 7.9880554, 46.8103907 ], + [ 7.988121, 46.8104014 ], + [ 7.9881969, 46.8105358 ], + [ 7.9882824, 46.8107264 ], + [ 7.9883823, 46.8108044 ], + [ 7.9886278, 46.8107966 ], + [ 7.9888896, 46.8107662 ], + [ 7.9890695, 46.8107422 ], + [ 7.9892007, 46.8107635 ], + [ 7.9892103, 46.8108196 ], + [ 7.9892447, 46.8109038 ], + [ 7.9892798, 46.8110498 ], + [ 7.9893391, 46.8111618 ], + [ 7.9894212, 46.8111836 ], + [ 7.9895769, 46.811188 ], + [ 7.9897975, 46.8111409 ], + [ 7.9900832, 46.8110541 ], + [ 7.9904171999999996, 46.8109611 ], + [ 7.9905829, 46.8110666 ], + [ 7.9906988, 46.8111106 ], + [ 7.9908134, 46.8111096 ], + [ 7.9909184, 46.8110468 ], + [ 7.990926, 46.8109904 ], + [ 7.990908, 46.8109118 ], + [ 7.9908897, 46.8107994 ], + [ 7.9908888, 46.8107206 ], + [ 7.9909445, 46.8106413 ], + [ 7.9910504, 46.8105842 ], + [ 7.9912211, 46.8105433 ], + [ 7.9913926, 46.8104912 ], + [ 7.9915801, 46.8104107 ], + [ 7.9917091, 46.8102971 ], + [ 7.9917888999999995, 46.8101726 ], + [ 7.9918197, 46.8100653 ], + [ 7.991801, 46.8099135 ], + [ 7.991855, 46.8097555 ], + [ 7.9919934, 46.8096698 ], + [ 7.9921565999999995, 46.8096178 ], + [ 7.9923531, 46.809616 ], + [ 7.992575, 46.8096872 ], + [ 7.9927729, 46.8097418 ], + [ 7.9929133, 46.80978 ], + [ 7.9930607, 46.8097788 ], + [ 7.9932241, 46.8097491 ], + [ 7.9933371, 46.8096693 ], + [ 7.9933601, 46.8095904 ], + [ 7.9933267, 46.8095344 ], + [ 7.993227, 46.8094734 ], + [ 7.9931597, 46.8093726 ], + [ 7.9930674, 46.8092384 ], + [ 7.9930328, 46.8091374 ], + [ 7.9930471999999995, 46.8090304 ], + [ 7.9931531, 46.8089732 ], + [ 7.9932921, 46.8089551 ], + [ 7.9936516, 46.8088787 ], + [ 7.9938151, 46.8088491 ], + [ 7.9938958, 46.8088091 ], + [ 7.9939931, 46.8087182 ], + [ 7.9940079, 46.8086449 ], + [ 7.9939745, 46.8085832 ], + [ 7.993948, 46.8084765 ], + [ 7.9939791, 46.8083919 ], + [ 7.9940266, 46.8083183 ], + [ 7.9941391, 46.8081879 ], + [ 7.9943081, 46.8079838 ], + [ 7.9945008, 46.8077683 ], + [ 7.9947517999999995, 46.8075691 ], + [ 7.9949692, 46.8073702 ], + [ 7.9951565, 46.807273 ], + [ 7.9953267, 46.8071814 ], + [ 7.9955126, 46.8070334 ], + [ 7.9956005999999995, 46.8069033 ], + [ 7.9956981, 46.8068293 ], + [ 7.9958112, 46.8067607 ], + [ 7.9959732, 46.8066749 ], + [ 7.9961933, 46.8065772 ], + [ 7.9963554, 46.806497 ], + [ 7.9964526, 46.8063949 ], + [ 7.9964832, 46.8062652 ], + [ 7.9965538, 46.8061295 ], + [ 7.9966677, 46.8060497 ], + [ 7.9968298, 46.8059695 ], + [ 7.997075, 46.8059279 ], + [ 7.997205, 46.8058368 ], + [ 7.9975259, 46.8054343 ], + [ 7.9975898999999995, 46.8053663 ], + [ 7.9977369, 46.8053312 ], + [ 7.997843, 46.805291 ], + [ 7.997915, 46.8052115 ], + [ 7.9979372, 46.805065 ], + [ 7.9978844, 46.8048685 ], + [ 7.9978329, 46.804717 ], + [ 7.9978309, 46.8046044 ], + [ 7.9978959, 46.8045532 ], + [ 7.9980173, 46.8044958 ], + [ 7.9981557, 46.8044215 ], + [ 7.9982849, 46.8043247 ], + [ 7.9983155, 46.804195 ], + [ 7.9983052, 46.8040713 ], + [ 7.9982548, 46.8040267 ], + [ 7.9980256, 46.8040287 ], + [ 7.9978785, 46.8040581 ], + [ 7.9977146, 46.8040484 ], + [ 7.9975012, 46.8039939 ], + [ 7.9973918, 46.803871 ], + [ 7.9973571, 46.8037589 ], + [ 7.9973643, 46.8036687 ], + [ 7.9974281, 46.8035837 ], + [ 7.9975737, 46.8034868 ], + [ 7.9977365, 46.8033954 ], + [ 7.9978163, 46.8032765 ], + [ 7.997847, 46.803158 ], + [ 7.9978773, 46.8030001 ], + [ 7.9979572, 46.8028869 ], + [ 7.998062, 46.8028129 ], + [ 7.9981597, 46.8027556 ], + [ 7.9982236, 46.8026819 ], + [ 7.9982637, 46.8025971 ], + [ 7.9982783, 46.8025069 ], + [ 7.9981862, 46.8023952 ], + [ 7.9980698, 46.802295 ], + [ 7.9979619, 46.8022396 ], + [ 7.9979039, 46.8021726 ], + [ 7.9979187, 46.8020938 ], + [ 7.9979591, 46.8020483 ], + [ 7.9981389, 46.802013 ], + [ 7.9983016, 46.801989 ], + [ 7.9984569, 46.8019652 ], + [ 7.9985548, 46.8019362 ], + [ 7.9986113, 46.8018569 ], + [ 7.998577, 46.801784 ], + [ 7.998511, 46.8017396 ], + [ 7.9984196, 46.8016841 ], + [ 7.9982708, 46.8016236 ], + [ 7.9981556, 46.8015682 ], + [ 7.998102, 46.8012986 ], + [ 7.9981235999999996, 46.8011689 ], + [ 7.9981801, 46.8010952 ], + [ 7.9982698, 46.8010608 ], + [ 7.9983352, 46.8010489 ], + [ 7.9983925, 46.8010484 ], + [ 7.9984581, 46.801059 ], + [ 7.9985646, 46.8010638 ], + [ 7.9986299, 46.8010464 ], + [ 7.9987113999999995, 46.8010118 ], + [ 7.9987426, 46.8009384 ], + [ 7.9987736, 46.800848 ], + [ 7.9987398, 46.8007471 ], + [ 7.9986223, 46.8006243 ], + [ 7.9985303, 46.8005238 ], + [ 7.998456, 46.8004625 ], + [ 7.9984375, 46.8003389 ], + [ 7.9984848, 46.8002372 ], + [ 7.9985333999999995, 46.8001861 ], + [ 7.9985823, 46.8001688 ], + [ 7.9986643, 46.8001794 ], + [ 7.9987709, 46.8002009 ], + [ 7.998853, 46.8002171 ], + [ 7.998927, 46.8002446 ], + [ 7.9990345, 46.8002718 ], + [ 7.9990997, 46.800243 ], + [ 7.9991555, 46.8001806 ], + [ 7.999162, 46.8000905 ], + [ 7.999202, 46.8000058 ], + [ 7.9992652, 46.7998646 ], + [ 7.9993534, 46.7997569 ], + [ 7.9993843, 46.7996609 ], + [ 7.9994069, 46.7995538 ], + [ 7.9993967, 46.7994412 ], + [ 7.9993459, 46.7993517 ], + [ 7.9993109, 46.7992169 ], + [ 7.9992845, 46.7991159 ], + [ 7.9992917, 46.7990257 ], + [ 7.9993558, 46.7989689 ], + [ 7.9994613999999995, 46.7988949 ], + [ 7.9995663, 46.7988207 ], + [ 7.9996718, 46.7987298 ], + [ 7.9997519, 46.798639 ], + [ 7.999791, 46.798543 ], + [ 7.9998051, 46.7984078 ], + [ 7.9998605, 46.7982948 ], + [ 7.9999399, 46.7981365 ], + [ 8.0000607, 46.7980229 ], + [ 8.0001747, 46.7979713 ], + [ 8.0002964, 46.7979364 ], + [ 8.0004435, 46.7979182 ], + [ 8.0005492, 46.7978442 ], + [ 8.0007266, 46.7976624 ], + [ 8.0009439, 46.7974636 ], + [ 8.0011363, 46.7972255 ], + [ 8.0012076, 46.7970786 ], + [ 8.0012052, 46.7969267 ], + [ 8.001211, 46.7967803 ], + [ 8.0012502, 46.7966899 ], + [ 8.0013222, 46.7966049 ], + [ 8.0014607, 46.7965361 ], + [ 8.0016146, 46.7964616 ], + [ 8.0016464, 46.7963713 ], + [ 8.0017343, 46.7962411 ], + [ 8.0019188, 46.7960368 ], + [ 8.0019428, 46.7959859 ], + [ 8.0018759, 46.7959247 ], + [ 8.0018087, 46.7958408 ], + [ 8.0017422, 46.7957457 ], + [ 8.0017569, 46.7956668 ], + [ 8.0018056, 46.7956213 ], + [ 8.0018124, 46.795565 ], + [ 8.0017953, 46.7955033 ], + [ 8.0018103, 46.7954468 ], + [ 8.0018671, 46.7953957 ], + [ 8.0019803, 46.7953441 ], + [ 8.002086, 46.7952756 ], + [ 8.0021265, 46.7952302 ], + [ 8.0021251, 46.7951796 ], + [ 8.0020836, 46.7951236 ], + [ 8.0020411, 46.7950509 ], + [ 8.0020733, 46.7949944 ], + [ 8.0021456, 46.794943 ], + [ 8.0022677, 46.7948801 ], + [ 8.0023072, 46.7948178 ], + [ 8.0023558, 46.7947723 ], + [ 8.0024538, 46.794749 ], + [ 8.0025343, 46.794692 ], + [ 8.002615, 46.7945787 ], + [ 8.0026541, 46.7944883 ], + [ 8.0026365, 46.7944434 ], + [ 8.0026114, 46.7943931 ], + [ 8.0026189, 46.7943311 ], + [ 8.0026424, 46.7943027 ], + [ 8.0026993, 46.7942684 ], + [ 8.0028055, 46.7942506 ], + [ 8.002887, 46.7942105 ], + [ 8.0029101, 46.7941541 ], + [ 8.0028932, 46.7940979 ], + [ 8.0029164, 46.7940471 ], + [ 8.0029487, 46.7940074 ], + [ 8.0030221, 46.7939787 ], + [ 8.0031447, 46.7939606 ], + [ 8.0032512, 46.793965299999996 ], + [ 8.0033493, 46.7939588 ], + [ 8.0034471, 46.7939185 ], + [ 8.0035286, 46.7938841 ], + [ 8.0036187, 46.7938832 ], + [ 8.0037004, 46.7938713 ], + [ 8.0037401, 46.793826 ], + [ 8.0038462, 46.7938026 ], + [ 8.004011, 46.7938235 ], + [ 8.0040607, 46.7938794 ], + [ 8.0041112, 46.7939296 ], + [ 8.0042012, 46.7939288 ], + [ 8.0044139, 46.7939157 ], + [ 8.0046187, 46.7939251 ], + [ 8.0047253, 46.7939466 ], + [ 8.0048656, 46.7939736 ], + [ 8.0050131, 46.7939836 ], + [ 8.0051035, 46.7940221 ], + [ 8.0051784, 46.7940609 ], + [ 8.0052529, 46.7941333 ], + [ 8.00532, 46.7942116 ], + [ 8.00542, 46.7943008 ], + [ 8.0055197, 46.7943673 ], + [ 8.0056109, 46.7944734 ], + [ 8.0057038, 46.7945852 ], + [ 8.0057945, 46.7946464 ], + [ 8.0058777, 46.7946963 ], + [ 8.0059437, 46.7947462 ], + [ 8.006034, 46.7947736 ], + [ 8.0061747, 46.7948398 ], + [ 8.0062744, 46.7948953 ], + [ 8.0063401, 46.7949172 ], + [ 8.0064712, 46.7949273 ], + [ 8.0065612, 46.7949265 ], + [ 8.0066433, 46.7949427 ], + [ 8.0067837, 46.7949865 ], + [ 8.0070397, 46.7951193 ], + [ 8.0072965, 46.795246399999996 ], + [ 8.0074858, 46.7953404 ], + [ 8.0075769, 46.7953677 ], + [ 8.007659, 46.7953839 ], + [ 8.0077247, 46.7954115 ], + [ 8.0078081, 46.7954727 ], + [ 8.0079311, 46.795494 ], + [ 8.0079886, 46.7955104 ], + [ 8.0080632, 46.795521 ], + [ 8.0081372, 46.7955485 ], + [ 8.0082518, 46.7955475 ], + [ 8.0083581, 46.7955409 ], + [ 8.0084237, 46.7955515 ], + [ 8.0084823, 46.7955905 ], + [ 8.0085563, 46.7956292 ], + [ 8.0086222, 46.7956624 ], + [ 8.008737, 46.7956783 ], + [ 8.0088609, 46.7957052 ], + [ 8.0089839, 46.7957267 ], + [ 8.0090903, 46.7957257 ], + [ 8.0091724, 46.7957475 ], + [ 8.0092882, 46.7957803 ], + [ 8.0094522, 46.795806999999996 ], + [ 8.0095751, 46.7958171 ], + [ 8.0097316, 46.795827 ], + [ 8.0098789, 46.79582 ], + [ 8.0100835, 46.7958126 ], + [ 8.010583, 46.7958307 ], + [ 8.010609, 46.795881 ], + [ 8.0106667, 46.7959256 ], + [ 8.0107568, 46.7959247 ], + [ 8.0108222, 46.7959186 ], + [ 8.0109446, 46.7958837 ], + [ 8.0110503, 46.7958153 ], + [ 8.0111482, 46.795775 ], + [ 8.0112466, 46.795791 ], + [ 8.0113286, 46.7958072 ], + [ 8.0114282, 46.7958626 ], + [ 8.0115187, 46.7959011 ], + [ 8.0116414, 46.7958888 ], + [ 8.0117166, 46.7959612 ], + [ 8.011831, 46.7959378 ], + [ 8.0118975, 46.7960272 ], + [ 8.0119481, 46.7960887 ], + [ 8.0120238, 46.7962061 ], + [ 8.0120498, 46.7962678 ], + [ 8.0121403, 46.7963064 ], + [ 8.0122716, 46.7963335 ], + [ 8.0124037, 46.7963603 ], + [ 8.0125515, 46.796404 ], + [ 8.0126494, 46.796375 ], + [ 8.0127312, 46.7963631 ], + [ 8.0127724, 46.7963908 ], + [ 8.0128229, 46.7964466 ], + [ 8.0129215, 46.796474 ], + [ 8.0130769, 46.7964669 ], + [ 8.0131752, 46.7964717 ], + [ 8.0132747, 46.7965102 ], + [ 8.0133738, 46.7965881 ], + [ 8.013506, 46.7966262 ], + [ 8.0136782, 46.7966529 ], + [ 8.0139168, 46.7966902 ], + [ 8.0142364, 46.7967211 ], + [ 8.0144588, 46.7967641 ], + [ 8.0147794, 46.7968176 ], + [ 8.0150757, 46.796888 ], + [ 8.0154055, 46.7970202 ], + [ 8.0156446, 46.7971025 ], + [ 8.0158166, 46.7971121 ], + [ 8.0161042, 46.7971377 ], + [ 8.0164075, 46.7971744 ], + [ 8.0166952, 46.7972055 ], + [ 8.0170554, 46.7971967 ], + [ 8.0175711, 46.7971921 ], + [ 8.0181454, 46.7972321 ], + [ 8.0186624, 46.7972668 ], + [ 8.0192202, 46.7972955 ], + [ 8.0192595, 46.797216399999996 ], + [ 8.0192331, 46.797121 ], + [ 8.019147, 46.7968854 ], + [ 8.0189766, 46.796493 ], + [ 8.0188051, 46.796078 ], + [ 8.0188207, 46.7960047 ], + [ 8.0188415, 46.795802 ], + [ 8.0188124, 46.7955377 ], + [ 8.0188091, 46.7953859 ], + [ 8.0188657, 46.7953177 ], + [ 8.0189704, 46.7952324 ], + [ 8.0190676, 46.7951303 ], + [ 8.0191298, 46.7949778 ], + [ 8.019094, 46.7947698 ], + [ 8.0192396, 46.7946841 ], + [ 8.0191884, 46.7945663 ], + [ 8.0193105, 46.7945091 ], + [ 8.0191683, 46.7943753 ], + [ 8.0192825, 46.7943348 ], + [ 8.0192069, 46.7942399 ], + [ 8.0191242, 46.7941617 ], + [ 8.0191717, 46.7940825 ], + [ 8.0190628, 46.7939259 ], + [ 8.0190596, 46.7937854 ], + [ 8.0191737, 46.7937336 ], + [ 8.0193108, 46.7936198 ], + [ 8.0194317, 46.793523 ], + [ 8.019684699999999, 46.7934533 ], + [ 8.0199221, 46.7934511 ], + [ 8.0201674, 46.7934208 ], + [ 8.0203387, 46.793363 ], + [ 8.0204444, 46.7933002 ], + [ 8.0205309, 46.7931192 ], + [ 8.0206654, 46.7928367 ], + [ 8.0207637, 46.7923912 ], + [ 8.020878, 46.792362 ], + [ 8.0209252, 46.7922603 ], + [ 8.0208591, 46.7922103 ], + [ 8.0209635, 46.7920967 ], + [ 8.021094, 46.7920505 ], + [ 8.0210595, 46.7919665 ], + [ 8.0211413, 46.7919544 ], + [ 8.0212554, 46.7919085 ], + [ 8.0212864, 46.7918293 ], + [ 8.0212517, 46.7917228 ], + [ 8.0211437, 46.7916505 ], + [ 8.0210371, 46.7916346 ], + [ 8.0209535, 46.7915454 ], + [ 8.0208938, 46.7913995 ], + [ 8.0208445, 46.7909328 ], + [ 8.0207731, 46.7906127 ], + [ 8.0208216, 46.790556 ], + [ 8.0209519, 46.7904929 ], + [ 8.0210583, 46.7904863 ], + [ 8.0212389, 46.7905411 ], + [ 8.0213385, 46.7905907 ], + [ 8.0213874, 46.7905679 ], + [ 8.0215163, 46.7904542 ], + [ 8.021678, 46.7903457 ], + [ 8.0217921, 46.7902997 ], + [ 8.02189, 46.7902651 ], + [ 8.0219374, 46.7901858 ], + [ 8.0219439, 46.7901013 ], + [ 8.0218776, 46.7900232 ], + [ 8.0219411, 46.7899157 ], + [ 8.0219475, 46.7898312 ], + [ 8.0219287, 46.7896851 ], + [ 8.0219598, 46.7896059 ], + [ 8.0221479, 46.7895874 ], + [ 8.0207884, 46.7891438 ], + [ 8.0206835, 46.7890562 ], + [ 8.0201997, 46.7889047 ], + [ 8.020196, 46.7885629 ], + [ 8.0184884, 46.7881038 ], + [ 8.0175698, 46.7879285 ], + [ 8.0173762, 46.7881993 ], + [ 8.0165495, 46.7880416 ], + [ 8.0160613, 46.7877112 ], + [ 8.0158627, 46.7875053 ], + [ 8.0154939, 46.7873093 ], + [ 8.0149657, 46.7869072 ], + [ 8.0146757, 46.7867287 ], + [ 8.0143475, 46.7866584 ], + [ 8.0137561, 46.786463499999996 ], + [ 8.0128381, 46.7863511 ], + [ 8.0124438, 46.7862182 ], + [ 8.0106945, 46.7855073 ], + [ 8.0102347, 46.7853747 ], + [ 8.0093525, 46.7849293 ], + [ 8.0088923, 46.7847517 ], + [ 8.0078418, 46.7844871 ], + [ 8.0069461, 46.7839968 ], + [ 8.0066574, 46.7839352 ], + [ 8.0056712, 46.7835533 ], + [ 8.0053674, 46.7833119 ], + [ 8.0049472, 46.7831971 ], + [ 8.0040298, 46.7831386 ], + [ 8.0035968, 46.7830508 ], + [ 8.0026798, 46.7830284 ], + [ 8.0020634, 46.7829414 ], + [ 8.0006876, 46.7828583 ], + [ 8.0002543, 46.7827524 ], + [ 7.9989165, 46.7825521 ], + [ 7.9986144, 46.7824636 ], + [ 7.9982195, 46.7822677 ], + [ 7.9979306, 46.7821971 ], + [ 7.9969481, 46.7821569 ], + [ 7.9965139, 46.7819612 ], + [ 7.9960544, 46.7818464 ], + [ 7.9956333, 46.7816506 ], + [ 7.9949344, 46.7811772 ], + [ 7.9948666, 46.7809527 ], + [ 7.9949241, 46.7801878 ], + [ 7.9948543, 46.7797653 ], + [ 7.9945892, 46.7794517 ], + [ 7.9944952, 46.7792273 ], + [ 7.9939277, 46.7787983 ], + [ 7.9934026, 46.7786659 ], + [ 7.9926165, 46.7786247 ], + [ 7.9911688, 46.7779121 ], + [ 7.9898910999999995, 46.7771806 ], + [ 7.9889934, 46.7764653 ], + [ 7.9875857, 46.7758154 ], + [ 7.9864031, 46.7753982 ], + [ 7.9852867, 46.7750618 ], + [ 7.9845917, 46.7749571 ], + [ 7.9845022, 46.7750121 ], + [ 7.9832339999999995, 46.7739012 ], + [ 7.9828833, 46.7736165 ], + [ 7.9824659, 46.7732883 ], + [ 7.9820846, 46.7730495 ], + [ 7.9820283, 46.7729043 ], + [ 7.9819486, 46.7727822 ], + [ 7.9783786, 46.7718416 ], + [ 7.9772435999999995, 46.770781 ], + [ 7.9767168999999996, 46.7702357 ], + [ 7.9762518, 46.7697903 ], + [ 7.9758765, 46.7694949 ], + [ 7.9755104, 46.7692162 ], + [ 7.9751557, 46.769005 ], + [ 7.9747813, 46.7688843 ], + [ 7.9743089, 46.7687772 ], + [ 7.9737282, 46.7686388 ], + [ 7.9732539, 46.7684979 ], + [ 7.9728878, 46.7683883 ], + [ 7.9725798999999995, 46.7682773 ], + [ 7.9723428, 46.7681306 ], + [ 7.9721271, 46.767916 ], + [ 7.9719748, 46.7676605 ], + [ 7.9718817, 46.7674317 ], + [ 7.9718541, 46.7672069 ], + [ 7.9718102, 46.7669883 ], + [ 7.9716149, 46.7668464 ], + [ 7.9712529, 46.7666465 ], + [ 7.9707919, 46.7664433 ], + [ 7.9702714, 46.7661907 ], + [ 7.9701692, 46.7661143 ], + [ 7.9702838, 46.7659482 ], + [ 7.9703042, 46.7656941 ], + [ 7.9703093, 46.7654686 ], + [ 7.9701796, 46.765342 ], + [ 7.9703084, 46.7652939 ], + [ 7.9705037999999995, 46.7652725 ], + [ 7.9702869, 46.7651819 ], + [ 7.970107, 46.7650338 ], + [ 7.970059, 46.7648942 ], + [ 7.9701368, 46.7648134 ], + [ 7.9703289, 46.7648765 ], + [ 7.9705365, 46.7649448 ], + [ 7.9707308, 46.7649008 ], + [ 7.9706337, 46.7647566 ], + [ 7.9704874, 46.764608 ], + [ 7.9704324, 46.7645021 ], + [ 7.9705693, 46.7644538 ], + [ 7.9708054, 46.7644145 ], + [ 7.9707594, 46.7643141 ], + [ 7.9705591, 46.7642399 ], + [ 7.9704528, 46.7640847 ], + [ 7.970461, 46.7639154 ], + [ 7.9704272, 46.7637303 ], + [ 7.9700398, 46.7636888 ], + [ 7.9699641, 46.7634821 ], + [ 7.9698548, 46.7632593 ], + [ 7.9696913, 46.7631054 ], + [ 7.9695645, 46.7628605 ], + [ 7.9693631, 46.7626004 ], + [ 7.9690973, 46.7623645 ], + [ 7.9688448, 46.762224 ], + [ 7.9685811, 46.7620385 ], + [ 7.9684206, 46.761941 ], + [ 7.9681916, 46.7617773 ], + [ 7.9679453, 46.7616085 ], + [ 7.967796, 46.7615726 ], + [ 7.9677122, 46.7613717 ], + [ 7.9675557999999995, 46.7611895 ], + [ 7.9674333, 46.7610402 ], + [ 7.9675396, 46.7608687 ], + [ 7.9674088, 46.7603815 ], + [ 7.9672587, 46.7598329 ], + [ 7.9672065, 46.7596032 ], + [ 7.9673344, 46.7595437 ], + [ 7.9675185, 46.7594605 ], + [ 7.9673446, 46.7594195 ], + [ 7.9672701, 46.7592466 ], + [ 7.9670871, 46.759189 ], + [ 7.9669111, 46.7590974 ], + [ 7.9667804, 46.7589483 ], + [ 7.9665484, 46.7587284 ], + [ 7.9666198999999995, 46.7586873 ], + [ 7.9668153, 46.7586658 ], + [ 7.9667857, 46.758565 ], + [ 7.9662653, 46.7583069 ], + [ 7.9662276, 46.7582176 ], + [ 7.965977, 46.7581109 ], + [ 7.9658666, 46.7580289 ], + [ 7.9658789, 46.7579554 ], + [ 7.965974, 46.7578856 ], + [ 7.9661653, 46.7577908 ], + [ 7.9659945, 46.7576428 ], + [ 7.9659118, 46.7574644 ], + [ 7.9658659, 46.7572007 ], + [ 7.9659334, 46.7570752 ], + [ 7.9662278, 46.7570682 ], + [ 7.9665375, 46.7570326 ], + [ 7.9664088, 46.756923 ], + [ 7.9661409, 46.7567941 ], + [ 7.965869, 46.7566033 ], + [ 7.9658027, 46.7564246 ], + [ 7.9657885, 46.7561432 ], + [ 7.9657956, 46.755788 ], + [ 7.9657231, 46.7554798 ], + [ 7.9655781999999995, 46.7552128 ], + [ 7.9654953, 46.7550232 ], + [ 7.9654597, 46.75481 ], + [ 7.9653156, 46.7545428 ], + [ 7.9650928, 46.7543509 ], + [ 7.9649803, 46.7542183 ], + [ 7.965008, 46.7539585 ], + [ 7.9649723, 46.7537396 ], + [ 7.9649622, 46.753368 ], + [ 7.9649061, 46.753065 ], + [ 7.9646783, 46.7527717 ], + [ 7.9644492, 46.7526081 ], + [ 7.9646588, 46.7525355 ], + [ 7.9649204000000005, 46.7525237 ], + [ 7.9653059, 46.7525427 ], + [ 7.9656126, 46.75262 ], + [ 7.9657772, 46.752633 ], + [ 7.965856, 46.7525748 ], + [ 7.9657915, 46.7524242 ], + [ 7.9655964, 46.7521302 ], + [ 7.9654123, 46.7518753 ], + [ 7.9653552, 46.7517189 ], + [ 7.9654738, 46.7516316 ], + [ 7.9653542, 46.7515329 ], + [ 7.9651814, 46.7515202 ], + [ 7.9649781, 46.7515532 ], + [ 7.9647328, 46.7515646 ], + [ 7.9645518, 46.7515463 ], + [ 7.9644015, 46.7514878 ], + [ 7.964243, 46.7514241 ], + [ 7.9640715, 46.751445 ], + [ 7.9638537, 46.7515065 ], + [ 7.9636645999999995, 46.7514941 ], + [ 7.9634181, 46.7514717 ], + [ 7.9630932, 46.7513667 ], + [ 7.9629542, 46.7512066 ], + [ 7.9628806999999995, 46.7510505 ], + [ 7.9626967, 46.7509704 ], + [ 7.9624206, 46.7508417 ], + [ 7.9622622, 46.7507891 ], + [ 7.9621212, 46.7507586 ], + [ 7.9619105999999995, 46.7508086 ], + [ 7.9617011, 46.7508756 ], + [ 7.9614721, 46.750881 ], + [ 7.9612258, 46.7508756 ], + [ 7.9610397, 46.7509194 ], + [ 7.9607627, 46.7509485 ], + [ 7.9604253, 46.7509058 ], + [ 7.9599785999999995, 46.7508149 ], + [ 7.9596975, 46.7507708 ], + [ 7.9595279, 46.7508198 ], + [ 7.9594429, 46.750912 ], + [ 7.9594255, 46.7510589 ], + [ 7.9594029, 46.7512679 ], + [ 7.9593641, 46.751483 ], + [ 7.9591217, 46.751545 ], + [ 7.958907, 46.751674 ], + [ 7.9587506999999995, 46.7516608 ], + [ 7.9585391, 46.751525 ], + [ 7.9582571, 46.7512893 ], + [ 7.9579996, 46.7510531 ], + [ 7.957739, 46.7509185 ], + [ 7.9574292, 46.7507679 ], + [ 7.9571737, 46.7505712 ], + [ 7.957047, 46.7504953 ], + [ 7.9567925, 46.75049 ], + [ 7.9565401, 46.7501804 ], + [ 7.9563266, 46.7500107 ], + [ 7.9561253, 46.7499197 ], + [ 7.9558852, 46.749869 ], + [ 7.9554659999999995, 46.7498282 ], + [ 7.9551002, 46.7497298 ], + [ 7.9549805, 46.7496142 ], + [ 7.9550981, 46.7495157 ], + [ 7.955037, 46.7492804 ], + [ 7.9549134, 46.749103 ], + [ 7.9547346, 46.7489607 ], + [ 7.9546109, 46.7487777 ], + [ 7.9543248, 46.748621 ], + [ 7.9539855, 46.7485558 ], + [ 7.9536472, 46.7485018 ], + [ 7.9534386999999995, 46.7484278 ], + [ 7.9533457, 46.7483681 ], + [ 7.9534081, 46.7482989 ], + [ 7.9534787, 46.748241 ], + [ 7.9534745000000004, 46.7481509 ], + [ 7.95367, 46.7479773 ], + [ 7.9535975, 46.7478325 ], + [ 7.9536076, 46.747697 ], + [ 7.9536671, 46.7475829 ], + [ 7.9538481, 46.7474378 ], + [ 7.9540372999999995, 46.7472925 ], + [ 7.9541161, 46.7470596 ], + [ 7.9543288, 46.7468967 ], + [ 7.9545751, 46.7470713 ], + [ 7.9546741999999995, 46.7470859 ], + [ 7.9547785, 46.747044 ], + [ 7.9548153, 46.7469586 ], + [ 7.9549102, 46.7468831 ], + [ 7.9550902, 46.7468788 ], + [ 7.9552465, 46.746892 ], + [ 7.9555749, 46.7465913 ], + [ 7.9551057, 46.7463657 ], + [ 7.9549116, 46.7462576 ], + [ 7.9547654, 46.7461089 ], + [ 7.9546287, 46.7458305 ], + [ 7.9544357, 46.7454067 ], + [ 7.9542172, 46.7449667 ], + [ 7.9540702, 46.7446434 ], + [ 7.9539394, 46.7444887 ], + [ 7.9537371, 46.7443695 ], + [ 7.9534939, 46.7442569 ], + [ 7.9532537, 46.7442005 ], + [ 7.9530065, 46.7441782 ], + [ 7.9528685, 46.7441983 ], + [ 7.9527315, 46.7442466 ], + [ 7.9525208, 46.7442797 ], + [ 7.9522725, 46.7442293 ], + [ 7.9520447, 46.7440994 ], + [ 7.9517443, 46.7438135 ], + [ 7.951204, 46.743336 ], + [ 7.9509995, 46.7431605 ], + [ 7.9506778, 46.742954 ], + [ 7.9506391, 46.7428365 ], + [ 7.9505942, 46.7425953 ], + [ 7.9505811, 46.7421618 ], + [ 7.950474, 46.741984 ], + [ 7.9503145, 46.7418976 ], + [ 7.9500928, 46.7418972 ], + [ 7.9496676, 46.7419015 ], + [ 7.949082, 46.7419886 ], + [ 7.9485799, 46.7420905 ], + [ 7.9484636, 46.7420651 ], + [ 7.9481467, 46.7419372 ], + [ 7.947977, 46.7419863 ], + [ 7.9478432, 46.7421078 ], + [ 7.9476274, 46.7422144 ], + [ 7.9473667, 46.7422261 ], + [ 7.9471256, 46.7421642 ], + [ 7.9468833, 46.7420572 ], + [ 7.9466669, 46.7418256 ], + [ 7.9463942, 46.7416178 ], + [ 7.9459864, 46.7414809 ], + [ 7.9455307, 46.7413733 ], + [ 7.9453488, 46.7413381 ], + [ 7.9452025, 46.7413528 ], + [ 7.945131, 46.7413941 ], + [ 7.9450359, 46.7414638 ], + [ 7.9449081, 46.7415232 ], + [ 7.9447467, 46.7415833 ], + [ 7.9445515, 46.7416104 ], + [ 7.9444491, 46.7416861 ], + [ 7.9441622, 46.7415237 ], + [ 7.9437218, 46.7413933 ], + [ 7.943227, 46.741309 ], + [ 7.9431811, 46.7412144 ], + [ 7.943265, 46.7410885 ], + [ 7.9431414, 46.7409054 ], + [ 7.9429935, 46.7407398 ], + [ 7.9428136, 46.7405694 ], + [ 7.9427913, 46.7404572 ], + [ 7.9428742, 46.7403144 ], + [ 7.9428947, 46.7402294 ], + [ 7.9429826, 46.7401879 ], + [ 7.9430817, 46.7402025 ], + [ 7.9432227, 46.7402387 ], + [ 7.9433372, 46.7402359 ], + [ 7.9434578, 46.7401936 ], + [ 7.9435191, 46.7400964 ], + [ 7.9434866, 46.739945 ], + [ 7.9435438, 46.739769 ], + [ 7.9436698, 46.739512500000004 ], + [ 7.9439326999999995, 46.7391965 ], + [ 7.9439717, 46.7389983 ], + [ 7.9438778, 46.7387469 ], + [ 7.9437276, 46.7385195 ], + [ 7.9434906, 46.7383617 ], + [ 7.9430922, 46.7382639 ], + [ 7.9426783, 46.7381721 ], + [ 7.9425966, 46.7379995 ], + [ 7.9431229, 46.738049 ], + [ 7.9434019, 46.7380651 ], + [ 7.9437607, 46.7380397 ], + [ 7.9434664999999995, 46.7378832 ], + [ 7.9433388, 46.7377792 ], + [ 7.9432336, 46.7376408 ], + [ 7.9432072, 46.7374386 ], + [ 7.943194, 46.7371684 ], + [ 7.9430878, 46.7370075 ], + [ 7.9432238, 46.736948 ], + [ 7.9430064, 46.7366994 ], + [ 7.9432854, 46.7367099 ], + [ 7.9428666, 46.736178699999996 ], + [ 7.9427002, 46.735963 ], + [ 7.9426422, 46.7357896 ], + [ 7.9424748, 46.7355513 ], + [ 7.9422633, 46.7354153 ], + [ 7.9419883, 46.7353035 ], + [ 7.9416534, 46.7351649 ], + [ 7.9414337, 46.7350178 ], + [ 7.941209, 46.7349498 ], + [ 7.9409801, 46.7349552 ], + [ 7.940704, 46.7349955 ], + [ 7.9403035, 46.7350106 ], + [ 7.939957, 46.7349567 ], + [ 7.9397424999999995, 46.7349222 ], + [ 7.9395565999999995, 46.7349829 ], + [ 7.9393407, 46.7350782 ], + [ 7.9391683, 46.7349076 ], + [ 7.939014, 46.734759 ], + [ 7.938965, 46.7345967 ], + [ 7.9388396, 46.7343912 ], + [ 7.9386027, 46.7342334 ], + [ 7.9383248, 46.7340821 ], + [ 7.9380428, 46.7340042 ], + [ 7.93787, 46.7339801 ], + [ 7.9377487, 46.7336787 ], + [ 7.937704, 46.7334487 ], + [ 7.9375783, 46.7332093 ], + [ 7.9375102, 46.7330024 ], + [ 7.9373711, 46.7329944 ], + [ 7.9372015, 46.7330435 ], + [ 7.9369889, 46.7330485 ], + [ 7.9367397, 46.7329867 ], + [ 7.936522, 46.7328735 ], + [ 7.9364138, 46.7328422 ], + [ 7.9362042, 46.732909 ], + [ 7.9359447, 46.7329602 ], + [ 7.9356985, 46.7329547 ], + [ 7.9355146, 46.7328801 ], + [ 7.9354686999999995, 46.7327798 ], + [ 7.9355536, 46.7326708 ], + [ 7.9356568, 46.7326008 ], + [ 7.9355843, 46.7324559 ], + [ 7.9355518, 46.7323045 ], + [ 7.9356193, 46.7321734 ], + [ 7.9354672, 46.7320811 ], + [ 7.9351924, 46.7319918 ], + [ 7.934842, 46.7318591 ], + [ 7.9345948, 46.7316452 ], + [ 7.9343385, 46.7314314 ], + [ 7.9343414, 46.7316567 ], + [ 7.9341248, 46.7315829 ], + [ 7.9338717, 46.7312676 ], + [ 7.9337442, 46.7310115 ], + [ 7.9336207, 46.7308284 ], + [ 7.9333265, 46.7306662 ], + [ 7.9331803999999995, 46.7306922 ], + [ 7.9330291, 46.7307802 ], + [ 7.9328235, 46.7309203 ], + [ 7.9324335, 46.7306589 ], + [ 7.932319, 46.730656 ], + [ 7.9322119, 46.7304782 ], + [ 7.9320463, 46.7304369 ], + [ 7.9318809, 46.7304126 ], + [ 7.9317154, 46.7303714 ], + [ 7.9309969, 46.7305797 ], + [ 7.9306493, 46.7306612 ], + [ 7.9304123, 46.7306724 ], + [ 7.9302448, 46.7305973 ], + [ 7.9301417, 46.7304984 ], + [ 7.9300223, 46.7304053 ], + [ 7.929679, 46.730419 ], + [ 7.9295687, 46.730168 ], + [ 7.9291561999999995, 46.7299409 ], + [ 7.9287557, 46.7297757 ], + [ 7.9285045, 46.7296688 ], + [ 7.9282074, 46.7294616 ], + [ 7.9279602, 46.7292532 ], + [ 7.9277182, 46.7291576 ], + [ 7.9274823, 46.7290222 ], + [ 7.9272873, 46.7288971 ], + [ 7.9270258, 46.7287286 ], + [ 7.9267183, 46.7286343 ], + [ 7.9264619, 46.728584 ], + [ 7.9262719, 46.7285489 ], + [ 7.9260492, 46.7285146 ], + [ 7.9258408, 46.7284349 ], + [ 7.925753, 46.728313 ], + [ 7.9257778, 46.7281548 ], + [ 7.9258669, 46.7279724 ], + [ 7.9258435, 46.727832 ], + [ 7.9256708, 46.7278079 ], + [ 7.925437, 46.7277232 ], + [ 7.9252594, 46.7276089 ], + [ 7.9251336, 46.7275386 ], + [ 7.9250202, 46.7275582 ], + [ 7.9249241999999995, 46.7276112 ], + [ 7.9248209, 46.7276812 ], + [ 7.9247012, 46.7277347 ], + [ 7.9244907, 46.7277847 ], + [ 7.9241585, 46.7278488 ], + [ 7.9238745, 46.7279117 ], + [ 7.9237231999999995, 46.7279885 ], + [ 7.9235912, 46.7281325 ], + [ 7.923445, 46.728333 ], + [ 7.9232813, 46.7284946 ], + [ 7.9230849, 46.7286626 ], + [ 7.9228048, 46.7287987 ], + [ 7.9225248, 46.7289349 ], + [ 7.9224224, 46.7290049 ], + [ 7.9222833, 46.7291827 ], + [ 7.9221249, 46.7292936 ], + [ 7.9218816, 46.729333 ], + [ 7.9216364, 46.7293443 ], + [ 7.9214289, 46.7292815 ], + [ 7.9212197, 46.7291962 ], + [ 7.921041, 46.7290595 ], + [ 7.9208746, 46.7288267 ], + [ 7.9207992, 46.7286258 ], + [ 7.9207924, 46.7283216 ], + [ 7.9209818, 46.7280128 ], + [ 7.9204222, 46.7277893 ], + [ 7.9200617, 46.7276118 ], + [ 7.919835, 46.7274987 ], + [ 7.9195683, 46.7273922 ], + [ 7.9194489, 46.7272936 ], + [ 7.9194327, 46.7271305 ], + [ 7.9192645, 46.7268752 ], + [ 7.9190286, 46.7267342 ], + [ 7.9187406, 46.7267184 ], + [ 7.918576, 46.7266883 ], + [ 7.9184966, 46.7265831 ], + [ 7.9179479, 46.7263988 ], + [ 7.9176078, 46.7263052 ], + [ 7.9173721, 46.7261811 ], + [ 7.9170871, 46.7260357 ], + [ 7.9167421000000004, 46.7258577 ], + [ 7.9167299, 46.7257791 ], + [ 7.9166155, 46.725776 ], + [ 7.916167, 46.7256344 ], + [ 7.9160702, 46.7255127 ], + [ 7.9158802, 46.7254776 ], + [ 7.9156002999999995, 46.7254446 ], + [ 7.9154029999999995, 46.7254155 ], + [ 7.9152377, 46.7253912 ], + [ 7.9150875, 46.725327 ], + [ 7.9147093, 46.7254598 ], + [ 7.914553, 46.7254409 ], + [ 7.9145898, 46.7253555 ], + [ 7.9145776, 46.7252713 ], + [ 7.914541, 46.7251989 ], + [ 7.9144092, 46.7251793 ], + [ 7.9142232, 46.7252231 ], + [ 7.9141303, 46.725169 ], + [ 7.9139567, 46.7251336 ], + [ 7.9137934, 46.7249796 ], + [ 7.9134657, 46.7248068 ], + [ 7.9131868999999995, 46.7246218 ], + [ 7.9129135, 46.7243971 ], + [ 7.9127826, 46.7243888 ], + [ 7.9125171, 46.7243161 ], + [ 7.9122015, 46.7242276 ], + [ 7.9120465, 46.7240735 ], + [ 7.9119045, 46.7240092 ], + [ 7.9117318999999995, 46.7240075 ], + [ 7.911501, 46.7239622 ], + [ 7.9112772, 46.7238998 ], + [ 7.9109739, 46.7238955 ], + [ 7.9107531, 46.723895 ], + [ 7.9105429, 46.7237873 ], + [ 7.9103234, 46.7236458 ], + [ 7.9097153, 46.7237613 ], + [ 7.9098679, 46.7235437 ], + [ 7.9091066, 46.7228627 ], + [ 7.9089381, 46.7227707 ], + [ 7.9087635, 46.7227185 ], + [ 7.9084879, 46.7226121 ], + [ 7.9081855999999995, 46.7224389 ], + [ 7.9077171, 46.7222468 ], + [ 7.9074698, 46.7222075 ], + [ 7.9073168, 46.7220928 ], + [ 7.9070663, 46.7221549 ], + [ 7.9065445, 46.7220317 ], + [ 7.9062748, 46.7220436 ], + [ 7.9057786, 46.7217678 ], + [ 7.9054703, 46.7216566 ], + [ 7.9052416, 46.7214928 ], + [ 7.9044918, 46.7213862 ], + [ 7.904391, 46.7211744 ], + [ 7.9041418, 46.7210957 ], + [ 7.9038253, 46.7209847 ], + [ 7.9034035, 46.7208931 ], + [ 7.9031933, 46.7207851 ], + [ 7.9029277, 46.7207124 ], + [ 7.9021792, 46.7204592 ], + [ 7.9010908, 46.7199548 ], + [ 7.90081, 46.7199049 ], + [ 7.9005128, 46.7198554 ], + [ 7.9003248, 46.7198598 ], + [ 7.900046, 46.7198549 ], + [ 7.8997508, 46.7198449 ], + [ 7.8994606, 46.7197558 ], + [ 7.8992586, 46.7196478 ], + [ 7.8990941, 46.7196291 ], + [ 7.8988244, 46.7196352 ], + [ 7.8985672000000005, 46.7195736 ], + [ 7.8980596, 46.7193937 ], + [ 7.8976257, 46.7192234 ], + [ 7.8973348, 46.71914 ], + [ 7.8969938, 46.7190295 ], + [ 7.8968109, 46.7189605 ], + [ 7.8967088, 46.7188784 ], + [ 7.8965355, 46.7186907 ], + [ 7.8963336, 46.7184024 ], + [ 7.8960795, 46.7182224 ], + [ 7.8958794, 46.7181481 ], + [ 7.8955587, 46.7181217 ], + [ 7.8953217, 46.7181272 ], + [ 7.8951217, 46.7180585 ], + [ 7.8949849, 46.7179376 ], + [ 7.8948852, 46.7177428 ], + [ 7.8948373, 46.7175861 ], + [ 7.8947240999999995, 46.7174478 ], + [ 7.8945702, 46.7173218 ], + [ 7.8944079, 46.7171735 ], + [ 7.8942569, 46.7171093 ], + [ 7.8940953, 46.7171413 ], + [ 7.8937867, 46.7171878 ], + [ 7.8934599, 46.7172121 ], + [ 7.8931422, 46.7172421 ], + [ 7.8928233, 46.7172381 ], + [ 7.8926478, 46.7171634 ], + [ 7.8925856, 46.7170632 ], + [ 7.8925787, 46.7169226 ], + [ 7.8925482, 46.7167937 ], + [ 7.8924136, 46.7167236 ], + [ 7.8920736, 46.7166412 ], + [ 7.8917018, 46.7165596 ], + [ 7.8914109, 46.7164705 ], + [ 7.8912405, 46.716328 ], + [ 7.8910537, 46.7161858 ], + [ 7.8909171, 46.7160819 ], + [ 7.8907618, 46.7160742 ], + [ 7.8905801, 46.7160502 ], + [ 7.89039, 46.7159982 ], + [ 7.8900684, 46.715955 ], + [ 7.8897641, 46.7159338 ], + [ 7.8894358, 46.7160709 ], + [ 7.8891936, 46.7161441 ], + [ 7.8890403, 46.716187 ], + [ 7.8889036, 46.7160663 ], + [ 7.8887814, 46.7159169 ], + [ 7.8886673, 46.7157618 ], + [ 7.8884527, 46.7157105 ], + [ 7.8882473, 46.7156926 ], + [ 7.8880473, 46.7156239 ], + [ 7.8878842, 46.71547 ], + [ 7.8877507, 46.7152419 ], + [ 7.8874483, 46.7152545 ], + [ 7.8869754, 46.7152993 ], + [ 7.8864, 46.7154138 ], + [ 7.8868081, 46.7157313 ], + [ 7.8858927, 46.7157467 ], + [ 7.8860855999999995, 46.715838 ], + [ 7.8863704, 46.7159836 ], + [ 7.8865336, 46.7161432 ], + [ 7.8863139, 46.7161709 ], + [ 7.885988, 46.7161953 ], + [ 7.8856836, 46.7161573 ], + [ 7.8854212, 46.7161576 ], + [ 7.8851206, 46.7161926 ], + [ 7.8848399, 46.7161541 ], + [ 7.884614, 46.7162156 ], + [ 7.8843423999999995, 46.716188 ], + [ 7.8843401, 46.7163063 ], + [ 7.8841992, 46.7162758 ], + [ 7.8840246, 46.7162179 ], + [ 7.8839552, 46.7161237 ], + [ 7.8837889, 46.7160768 ], + [ 7.8837601, 46.7161564 ], + [ 7.8832943, 46.7161727 ], + [ 7.8828131, 46.7162062 ], + [ 7.8821635, 46.7161422 ], + [ 7.8814744, 46.7159495 ], + [ 7.8813222, 46.7158347 ], + [ 7.8811478, 46.7157937 ], + [ 7.8810925, 46.7158287 ], + [ 7.8809522, 46.7159728 ], + [ 7.8807114, 46.7159107 ], + [ 7.8807028, 46.7160574 ], + [ 7.8802687, 46.7160561 ], + [ 7.879661, 46.7160194 ], + [ 7.8795383999999995, 46.7160109 ], + [ 7.8793636, 46.7161275 ], + [ 7.878765, 46.7161018 ], + [ 7.8785542, 46.7163152 ], + [ 7.8783334, 46.716309 ], + [ 7.8780615, 46.7164503 ], + [ 7.8777876, 46.7165468 ], + [ 7.8777574999999995, 46.7167559 ], + [ 7.8777154, 46.7169147 ], + [ 7.8775169, 46.7170319 ], + [ 7.8771959, 46.7171632 ], + [ 7.876923, 46.7172765 ], + [ 7.8767255, 46.7174276 ], + [ 7.8762467, 46.7178554 ], + [ 7.8760682, 46.7182202 ], + [ 7.8762643, 46.71821 ], + [ 7.876745, 46.7185146 ], + [ 7.8769390999999995, 46.7184538 ], + [ 7.8768499, 46.7186473 ], + [ 7.876764, 46.7187394 ], + [ 7.8768168, 46.7188058 ], + [ 7.8769557, 46.718797 ], + [ 7.8770793, 46.7188168 ], + [ 7.8771804, 46.7188764 ], + [ 7.8773579, 46.7189907 ], + [ 7.877507, 46.7190267 ], + [ 7.8775591, 46.7191045 ], + [ 7.8776732, 46.7192595 ], + [ 7.8777505, 46.7193254 ], + [ 7.8780782, 46.7195095 ], + [ 7.8784539, 46.7196642 ], + [ 7.8788841, 46.7195812 ], + [ 7.8794134, 46.7195352 ], + [ 7.8792424, 46.7197138 ], + [ 7.8791003, 46.7198353 ], + [ 7.8789182, 46.7199635 ], + [ 7.8787063, 46.720143 ], + [ 7.878559, 46.7203155 ], + [ 7.8784389, 46.7205322 ], + [ 7.8782292, 46.7207793 ], + [ 7.8780673, 46.7209802 ], + [ 7.8779065, 46.721215 ], + [ 7.8777495, 46.7215115 ], + [ 7.8776542, 46.7217504 ], + [ 7.8775923, 46.7219828 ], + [ 7.8775103, 46.7221594 ], + [ 7.8774058, 46.7223702 ], + [ 7.8772193999999995, 46.7225717 ], + [ 7.8769013999999995, 46.7227761 ], + [ 7.8762784, 46.7230834 ], + [ 7.8765522, 46.7231729 ], + [ 7.8768124, 46.7233021 ], + [ 7.8769655, 46.7234282 ], + [ 7.8771215, 46.723605 ], + [ 7.8772264, 46.7237322 ], + [ 7.8773684, 46.7238022 ], + [ 7.8775164, 46.7238045 ], + [ 7.8777269, 46.7237602 ], + [ 7.8779539, 46.7237155 ], + [ 7.8781736, 46.7236936 ], + [ 7.8783473, 46.7237347 ], + [ 7.8784492, 46.7238 ], + [ 7.8785676, 46.7238818 ], + [ 7.8787678, 46.7239673 ], + [ 7.8790885, 46.7239994 ], + [ 7.8797011999999995, 46.7241375 ], + [ 7.8798431, 46.7242019 ], + [ 7.8799389, 46.724318 ], + [ 7.8799928, 46.7244126 ], + [ 7.8801357, 46.7244882 ], + [ 7.8804247, 46.724538 ], + [ 7.8807628, 46.724592200000004 ], + [ 7.8810211, 46.724682 ], + [ 7.881204, 46.7247455 ], + [ 7.8813521, 46.7247646 ], + [ 7.8815319, 46.7247604 ], + [ 7.8817474, 46.7248175 ], + [ 7.881933, 46.7249203 ], + [ 7.8820635, 46.7250808 ], + [ 7.8822787, 46.7253012 ], + [ 7.8825074, 46.7254705 ], + [ 7.8827093999999995, 46.7255786 ], + [ 7.8829177999999995, 46.7256584 ], + [ 7.8830463, 46.7257793 ], + [ 7.8832196, 46.725967 ], + [ 7.8834327, 46.7261424 ], + [ 7.8836074, 46.7262004 ], + [ 7.8840783, 46.7263022 ], + [ 7.8844981, 46.726343299999996 ], + [ 7.8846809, 46.7264011 ], + [ 7.8847757, 46.7264946 ], + [ 7.8848716, 46.726622 ], + [ 7.8850531, 46.7268151 ], + [ 7.8852489, 46.7269684 ], + [ 7.8854775, 46.7271265 ], + [ 7.885737, 46.7272558 ], + [ 7.8858809, 46.7273539 ], + [ 7.8860503, 46.7274683 ], + [ 7.8862994, 46.7275358 ], + [ 7.8866824, 46.7276736 ], + [ 7.8872519, 46.727931 ], + [ 7.8875623, 46.7280872 ], + [ 7.8878471999999995, 46.7282328 ], + [ 7.8880513, 46.7283858 ], + [ 7.8881806999999995, 46.7285125 ], + [ 7.8883054, 46.7285603 ], + [ 7.8893557, 46.7286151 ], + [ 7.8894053, 46.728783 ], + [ 7.889533, 46.7288927 ], + [ 7.8896625, 46.7290306 ], + [ 7.8898829, 46.7291833 ], + [ 7.890087, 46.7293364 ], + [ 7.8901646, 46.7294248 ], + [ 7.890194, 46.7295198 ], + [ 7.8902889, 46.7296191 ], + [ 7.8904246, 46.729723 ], + [ 7.8905604, 46.7298213 ], + [ 7.8907215, 46.7299302 ], + [ 7.8908973, 46.730022 ], + [ 7.8910176, 46.7301319 ], + [ 7.8913084, 46.7303957 ], + [ 7.8914248, 46.7304269 ], + [ 7.8915023, 46.7304982 ], + [ 7.891588, 46.7305864 ], + [ 7.8917401, 46.7306788 ], + [ 7.8919076, 46.7307593 ], + [ 7.8920015, 46.7308418 ], + [ 7.8921434999999995, 46.7309061 ], + [ 7.8922853, 46.7309535 ], + [ 7.8924581, 46.7309777 ], + [ 7.8926052, 46.7309743 ], + [ 7.892694, 46.7309329 ], + [ 7.8927718, 46.7308522 ], + [ 7.8929856, 46.7307064 ], + [ 7.8933333, 46.7306252 ], + [ 7.893703, 46.7306448 ], + [ 7.8940422, 46.7307158 ], + [ 7.8942352, 46.7308185 ], + [ 7.8943781, 46.7308941 ], + [ 7.8945609999999995, 46.7309575 ], + [ 7.8948356, 46.7310413 ], + [ 7.8950685, 46.7311205 ], + [ 7.8953288, 46.7312498 ], + [ 7.895668, 46.7313264 ], + [ 7.8958017, 46.7313741 ], + [ 7.8958455, 46.731435 ], + [ 7.8959649, 46.7315393 ], + [ 7.8962069, 46.7316295 ], + [ 7.8963284, 46.7317845 ], + [ 7.8964916, 46.7319329 ], + [ 7.8966601, 46.7320304 ], + [ 7.8968132, 46.7321565 ], + [ 7.8969368, 46.7321648 ], + [ 7.8970766999999995, 46.7321786 ], + [ 7.897186, 46.7322437 ], + [ 7.897289, 46.7323314 ], + [ 7.8974045, 46.7323625 ], + [ 7.8975372, 46.7323876 ], + [ 7.8975994, 46.7324933 ], + [ 7.8977075, 46.7326992 ], + [ 7.8977758, 46.7327484 ], + [ 7.8979606, 46.7328511 ], + [ 7.8981872, 46.7329586 ], + [ 7.8984045, 46.7332185 ], + [ 7.8986881, 46.7334936 ], + [ 7.8985143, 46.7336272 ], + [ 7.8984303, 46.7337532 ], + [ 7.8984425, 46.7338373 ], + [ 7.8985139, 46.7339596 ], + [ 7.8985645, 46.7341501 ], + [ 7.8985614, 46.7342629 ], + [ 7.8985938, 46.7344143 ], + [ 7.8987011, 46.7344398 ], + [ 7.8987604, 46.7344892 ], + [ 7.8987899, 46.73459 ], + [ 7.8988183, 46.7346626 ], + [ 7.898904, 46.7347395 ], + [ 7.898997, 46.7348049 ], + [ 7.8990091, 46.7348836 ], + [ 7.8989895, 46.7349854 ], + [ 7.8989964, 46.7351261 ], + [ 7.8990577, 46.7352148 ], + [ 7.8992219, 46.73538 ], + [ 7.8994168, 46.7355164 ], + [ 7.8994862, 46.7355994 ], + [ 7.8995393, 46.7356826 ], + [ 7.8995985, 46.7357208 ], + [ 7.8996823, 46.7357639 ], + [ 7.8997587, 46.7358128 ], + [ 7.89977, 46.7358858 ], + [ 7.8997903, 46.7359698 ], + [ 7.8998433, 46.7360418 ], + [ 7.8999198, 46.7361021 ], + [ 7.9000618, 46.7361552 ], + [ 7.9003192, 46.7362337 ], + [ 7.9006275, 46.7363337 ], + [ 7.900787, 46.7364258 ], + [ 7.9008991, 46.7365358 ], + [ 7.9009778, 46.7366467 ], + [ 7.9010461, 46.7367015 ], + [ 7.9011462, 46.7367386 ], + [ 7.9012535, 46.7367531 ], + [ 7.9012972999999995, 46.7368084 ], + [ 7.9013821, 46.7368796 ], + [ 7.901436, 46.7369685 ], + [ 7.9015044, 46.7370233 ], + [ 7.9015565, 46.7370954 ], + [ 7.9016269, 46.7371952 ], + [ 7.9017318, 46.7373224 ], + [ 7.9018115, 46.7374557 ], + [ 7.901801, 46.7375686 ], + [ 7.9018387, 46.7376693 ], + [ 7.9020325, 46.7379521 ], + [ 7.9021336, 46.7380174 ], + [ 7.9022929, 46.738087 ], + [ 7.902493, 46.7381612 ], + [ 7.9026289, 46.7382651 ], + [ 7.9027166, 46.7383814 ], + [ 7.902851, 46.7387952 ], + [ 7.9028334000000005, 46.7389422 ], + [ 7.9027605, 46.7391129 ], + [ 7.9028083, 46.7392527 ], + [ 7.9028706, 46.7393639 ], + [ 7.9029183, 46.739498 ], + [ 7.9029488, 46.7396212 ], + [ 7.9029804, 46.7397726 ], + [ 7.9030425, 46.7398613 ], + [ 7.9031518, 46.7399265 ], + [ 7.9032365, 46.7399752 ], + [ 7.9033141, 46.740058 ], + [ 7.9033816, 46.740107 ], + [ 7.9034725, 46.7401218 ], + [ 7.9036042, 46.7401245 ], + [ 7.9036972, 46.7401956 ], + [ 7.9038246999999995, 46.7402827 ], + [ 7.9040731, 46.7403503 ], + [ 7.9042805, 46.7404074 ], + [ 7.904309, 46.7404913 ], + [ 7.9043466, 46.7405806 ], + [ 7.9043578, 46.740648 ], + [ 7.9044272, 46.7407252 ], + [ 7.9045445, 46.7407732 ], + [ 7.9046222, 46.7408615 ], + [ 7.904668, 46.7409564 ], + [ 7.9047394, 46.7410899 ], + [ 7.9048107, 46.7412009 ], + [ 7.9049301, 46.7412939 ], + [ 7.9049933, 46.7414109 ], + [ 7.9049984, 46.7415233 ], + [ 7.9050432, 46.7416069 ], + [ 7.9051697999999995, 46.7416716 ], + [ 7.9052954, 46.7417307 ], + [ 7.9053384, 46.741786 ], + [ 7.9053504, 46.7418533 ], + [ 7.9053453, 46.7419267 ], + [ 7.9054046, 46.7419647 ], + [ 7.9054792, 46.7419856 ], + [ 7.9055219999999995, 46.7420183 ], + [ 7.9055523999999995, 46.7421304 ], + [ 7.9055993, 46.7422589 ], + [ 7.9057606, 46.7423735 ], + [ 7.905974, 46.74256 ], + [ 7.9060271, 46.7426377 ], + [ 7.9060464, 46.7426993 ], + [ 7.9060596, 46.7428061 ], + [ 7.9061207, 46.7428722 ], + [ 7.9061962999999995, 46.7429156 ], + [ 7.9062536, 46.7429198 ], + [ 7.9063189, 46.7429127 ], + [ 7.906417, 46.7429048 ], + [ 7.9064926, 46.7429425 ], + [ 7.9065783, 46.7430194 ], + [ 7.9068214999999995, 46.7431434 ], + [ 7.9071065, 46.7432832 ], + [ 7.9072842, 46.7433974 ], + [ 7.9074055, 46.7435299 ], + [ 7.9074513, 46.7436246 ], + [ 7.9074473, 46.7437261 ], + [ 7.9074195, 46.7438225 ], + [ 7.9073928, 46.7439528 ], + [ 7.9075122, 46.7440345 ], + [ 7.9075907999999995, 46.7441397 ], + [ 7.9076621, 46.7442564 ], + [ 7.9076927, 46.7443853 ], + [ 7.9076598, 46.7445551 ], + [ 7.9076052, 46.7447649 ], + [ 7.9075888, 46.7449456 ], + [ 7.9076539, 46.7451017 ], + [ 7.9077518, 46.7452572 ], + [ 7.907864, 46.745373 ], + [ 7.9080611, 46.7455487 ], + [ 7.9082898, 46.7457069 ], + [ 7.9085032, 46.7458823 ], + [ 7.908642, 46.7460424 ], + [ 7.9087052, 46.746165 ], + [ 7.9087511, 46.7462653 ], + [ 7.9087552, 46.746361 ], + [ 7.9087703, 46.7465015 ], + [ 7.9087619, 46.746665 ], + [ 7.9102806, 46.7467369 ], + [ 7.9104594, 46.7467046 ], + [ 7.9106374, 46.746661 ], + [ 7.9108951, 46.7465818 ], + [ 7.91117, 46.7464966 ], + [ 7.911393, 46.7463731 ], + [ 7.9115844, 46.7462728 ], + [ 7.9116948, 46.7461802 ], + [ 7.9118236, 46.7461321 ], + [ 7.9119372, 46.7461182 ], + [ 7.9119890999999996, 46.7461677 ], + [ 7.9120577, 46.7462394 ], + [ 7.9121199, 46.7463393 ], + [ 7.9122739, 46.7464653 ], + [ 7.9124027, 46.7465976 ], + [ 7.9125730999999995, 46.7467233 ], + [ 7.9126733, 46.7467717 ], + [ 7.9128634, 46.7468067 ], + [ 7.9131853, 46.7468555 ], + [ 7.913549, 46.7469204 ], + [ 7.9139638, 46.747029 ], + [ 7.9142735, 46.7471797 ], + [ 7.9144266, 46.7472944 ], + [ 7.9144388, 46.7473786 ], + [ 7.9143844, 46.747425 ], + [ 7.9142985, 46.7475114 ], + [ 7.914138, 46.7475828 ], + [ 7.9139641, 46.7477165 ], + [ 7.9137144, 46.7479645 ], + [ 7.9207242, 46.7526361 ], + [ 7.9249198, 46.7533554 ], + [ 7.9280285, 46.7542803 ], + [ 7.9299932, 46.7532597 ], + [ 7.9301374, 46.7532 ], + [ 7.9302693, 46.7532194 ], + [ 7.9304501, 46.7532209 ], + [ 7.9305432, 46.7532919 ], + [ 7.9306462, 46.753379699999996 ], + [ 7.9307248999999995, 46.7534849 ], + [ 7.9308106, 46.7535561 ], + [ 7.9308555, 46.7536341 ], + [ 7.9309016, 46.753751199999996 ], + [ 7.9310527, 46.7538154 ], + [ 7.9310782, 46.7540119 ], + [ 7.9314162, 46.7542126 ], + [ 7.931543, 46.7542941 ], + [ 7.9315573, 46.7544234 ], + [ 7.9316195, 46.7545233 ], + [ 7.9318188, 46.7545807 ], + [ 7.9319739, 46.7547235 ], + [ 7.9321037, 46.7548726 ], + [ 7.9321434, 46.7550126 ], + [ 7.9321515, 46.7551814 ], + [ 7.9325927, 46.7556557 ], + [ 7.9327141999999995, 46.755788 ], + [ 7.9328491, 46.7558693 ], + [ 7.9329868999999995, 46.7560014 ], + [ 7.9330849, 46.7561625 ], + [ 7.9330746, 46.7562867 ], + [ 7.9329662, 46.7564189 ], + [ 7.9329435, 46.7566222 ], + [ 7.933018, 46.7568008 ], + [ 7.9331242, 46.7569617 ], + [ 7.9332018, 46.7572134 ], + [ 7.933181, 46.757445 ], + [ 7.9332072, 46.7578106 ], + [ 7.9333462, 46.758151 ], + [ 7.9335452, 46.7583606 ], + [ 7.9336321, 46.7584598 ], + [ 7.9337136, 46.7586102 ], + [ 7.9338241, 46.7587033 ], + [ 7.9339365, 46.75865 ], + [ 7.9340081, 46.7586033 ], + [ 7.9340971, 46.7585843 ], + [ 7.9341962, 46.7586044 ], + [ 7.9342556, 46.7586538 ], + [ 7.9343342, 46.7587534 ], + [ 7.9344586, 46.7589364 ], + [ 7.9346314, 46.759124 ], + [ 7.934763, 46.7592955 ], + [ 7.9348714, 46.7593438 ], + [ 7.9350115, 46.759363 ], + [ 7.935174, 46.759331 ], + [ 7.9353529, 46.7592987 ], + [ 7.9355963, 46.7592591 ], + [ 7.9358581, 46.7592531 ], + [ 7.9361545, 46.7592855 ], + [ 7.9364766, 46.7593401 ], + [ 7.9367024, 46.7594306 ], + [ 7.9369038, 46.759532899999996 ], + [ 7.9371297, 46.759629 ], + [ 7.9373217, 46.7596978 ], + [ 7.9375548, 46.7597769 ], + [ 7.9377562, 46.7598735 ], + [ 7.9379103, 46.7599995 ], + [ 7.9380462, 46.7600977 ], + [ 7.9381873, 46.7601339 ], + [ 7.938264, 46.7601997 ], + [ 7.9383181, 46.7603055 ], + [ 7.938315, 46.7604127 ], + [ 7.9382902, 46.7605597 ], + [ 7.9382871999999995, 46.7606725 ], + [ 7.9383268, 46.7608011 ], + [ 7.9383593999999995, 46.7609637 ], + [ 7.9383441, 46.7611669 ], + [ 7.9383685, 46.7613299 ], + [ 7.9384062, 46.7614247 ], + [ 7.9385246, 46.7614896 ], + [ 7.9386158, 46.7615268 ], + [ 7.9387495, 46.7615688 ], + [ 7.9387955, 46.7616691 ], + [ 7.9388568, 46.7617578 ], + [ 7.9388955, 46.7618697 ], + [ 7.9389017, 46.7620048 ], + [ 7.9389833, 46.7621606 ], + [ 7.9391058999999995, 46.7623211 ], + [ 7.9392775, 46.7624748 ], + [ 7.9394369, 46.7625444 ], + [ 7.9395862, 46.7625973 ], + [ 7.9397293, 46.7626727 ], + [ 7.939815, 46.7627384 ], + [ 7.939901, 46.7628322 ], + [ 7.940005, 46.7629367 ], + [ 7.9401135, 46.7629905 ], + [ 7.9403129, 46.7630478 ], + [ 7.940503, 46.7630828 ], + [ 7.9406931, 46.7631122 ], + [ 7.9408372, 46.7632047 ], + [ 7.9410243, 46.7633524 ], + [ 7.9411949, 46.7634836 ], + [ 7.9414453, 46.7635736 ], + [ 7.9416518, 46.7636081 ], + [ 7.9419872, 46.763606 ], + [ 7.9422345, 46.7636283 ], + [ 7.942343, 46.7636765 ], + [ 7.9423961, 46.7637598 ], + [ 7.9424449, 46.763905199999996 ], + [ 7.942454, 46.7640908 ], + [ 7.9424203, 46.7642494 ], + [ 7.9424364, 46.7644011 ], + [ 7.9424108, 46.7645426 ], + [ 7.9422533, 46.7646758 ], + [ 7.9420721, 46.7648154 ], + [ 7.9419873, 46.76493 ], + [ 7.941975, 46.7650148 ], + [ 7.9420526, 46.7650863 ], + [ 7.9422019, 46.7651278 ], + [ 7.9424104, 46.7652074 ], + [ 7.9425227, 46.765312 ], + [ 7.942577, 46.7654289 ], + [ 7.9425318, 46.7655032 ], + [ 7.9424398, 46.765635 ], + [ 7.9423516, 46.7658287 ], + [ 7.9423627, 46.7660538 ], + [ 7.9423769, 46.7663464 ], + [ 7.9424156, 46.7664639 ], + [ 7.942436, 46.7665422 ], + [ 7.9425556, 46.7666466 ], + [ 7.9427088999999995, 46.7667669 ], + [ 7.9428295, 46.7668824 ], + [ 7.9430675, 46.7670515 ], + [ 7.9432729, 46.767227 ], + [ 7.9433609, 46.7673602 ], + [ 7.9435111, 46.767582 ], + [ 7.9436447999999995, 46.767793 ], + [ 7.9437622, 46.76801 ], + [ 7.9438165, 46.768127 ], + [ 7.9437978, 46.7682345 ], + [ 7.9439307, 46.76844 ], + [ 7.9440216, 46.7686293 ], + [ 7.9441471, 46.7688348 ], + [ 7.9442485, 46.7689114 ], + [ 7.9443914, 46.7689701 ], + [ 7.9445499, 46.7690283 ], + [ 7.944692, 46.769087 ], + [ 7.9448014, 46.7691464 ], + [ 7.9448618, 46.7692182 ], + [ 7.9448657, 46.7692857 ], + [ 7.9448473, 46.7694158 ], + [ 7.9448125, 46.7695461 ], + [ 7.9448205, 46.7696981 ], + [ 7.9448746, 46.7697926 ], + [ 7.9449678, 46.7698692 ], + [ 7.9450954, 46.7699509 ], + [ 7.9456229, 46.7701864 ], + [ 7.9458406, 46.7702771 ], + [ 7.9459685, 46.7703867 ], + [ 7.9460644, 46.7704972 ], + [ 7.9461033, 46.7706315 ], + [ 7.9461615, 46.7708105 ], + [ 7.946197, 46.7710237 ], + [ 7.9462041, 46.7711644 ], + [ 7.9462472, 46.7712197 ], + [ 7.9463105, 46.7713366 ], + [ 7.9463748, 46.7714816 ], + [ 7.9464217999999995, 46.7715989 ], + [ 7.946488, 46.7717719 ], + [ 7.9464962, 46.7719464 ], + [ 7.9465421, 46.7720411 ], + [ 7.9466443, 46.772112 ], + [ 7.9467384, 46.7722055 ], + [ 7.9467780999999995, 46.7723286 ], + [ 7.9467761, 46.7724695 ], + [ 7.9468024, 46.7726549 ], + [ 7.9468412, 46.7727778 ], + [ 7.9469598, 46.7728539 ], + [ 7.9471039999999995, 46.7729633 ], + [ 7.9472717, 46.7730382 ], + [ 7.9474086, 46.7731589 ], + [ 7.9474975, 46.7732921 ], + [ 7.9475475, 46.7734826 ], + [ 7.9477162, 46.773749 ], + [ 7.9479061, 46.7739305 ], + [ 7.9480504, 46.7740454 ], + [ 7.9482957, 46.7741975 ], + [ 7.9483447, 46.774354 ], + [ 7.9483968, 46.7745839 ], + [ 7.9483578, 46.7747876 ], + [ 7.94833, 46.775053 ], + [ 7.9483707, 46.7752042 ], + [ 7.9484759, 46.7753426 ], + [ 7.9486212, 46.7754688 ], + [ 7.9487837, 46.7756114 ], + [ 7.9489472, 46.7757598 ], + [ 7.9490535, 46.7759263 ], + [ 7.9491689, 46.7760983 ], + [ 7.9491943, 46.7762779 ], + [ 7.9490932, 46.7763987 ], + [ 7.948911, 46.7765212 ], + [ 7.948548, 46.7766425 ], + [ 7.9483914, 46.776787 ], + [ 7.9479081, 46.7776041 ], + [ 7.9479071, 46.7777619 ], + [ 7.947957, 46.7779298 ], + [ 7.9480786, 46.7780733 ], + [ 7.9482422, 46.778233 ], + [ 7.948373, 46.7783933 ], + [ 7.9484363, 46.7785101 ], + [ 7.9484373, 46.7786961 ], + [ 7.948252, 46.7789201 ], + [ 7.9481365, 46.7790806 ], + [ 7.9480771, 46.7792059 ], + [ 7.9480688, 46.7793696 ], + [ 7.9481135, 46.7795995 ], + [ 7.948137, 46.7797454 ], + [ 7.9480847, 46.7798425 ], + [ 7.9480745, 46.780147 ], + [ 7.9480948, 46.7803832 ], + [ 7.9481959, 46.7806061 ], + [ 7.9482479999999995, 46.7808359 ], + [ 7.9481988, 46.781000399999996 ], + [ 7.9481251, 46.7811656 ], + [ 7.9480227, 46.7812413 ], + [ 7.9478078, 46.7813647 ], + [ 7.9476349, 46.7815208 ], + [ 7.9474302, 46.7816833 ], + [ 7.9473554, 46.781826 ], + [ 7.9472755, 46.7820364 ], + [ 7.9471516, 46.7823435 ], + [ 7.9471279, 46.7826934 ], + [ 7.9472105, 46.7830408 ], + [ 7.9473657, 46.7833527 ], + [ 7.9476367, 46.7837012 ], + [ 7.9477511, 46.7838563 ], + [ 7.9477297, 46.78393 ], + [ 7.9475895, 46.7840799 ], + [ 7.9474656, 46.7842237 ], + [ 7.9474256, 46.7844049 ], + [ 7.9474653, 46.7845335 ], + [ 7.9475809, 46.7847337 ], + [ 7.9477638, 46.7851125 ], + [ 7.9479089, 46.7852274 ], + [ 7.9480141, 46.7853545 ], + [ 7.9480683, 46.7854603 ], + [ 7.9480753, 46.7856009 ], + [ 7.9480507, 46.7857705 ], + [ 7.947981, 46.7860088 ], + [ 7.947939, 46.7861619 ], + [ 7.9479971, 46.7863353 ], + [ 7.9480842, 46.7864515 ], + [ 7.9482231, 46.7866004 ], + [ 7.94835, 46.7866876 ], + [ 7.9485133999999995, 46.7868302 ], + [ 7.9487077, 46.7871242 ], + [ 7.9488774, 46.7874021 ], + [ 7.9490726, 46.7877017 ], + [ 7.949278, 46.7880463 ], + [ 7.9494232, 46.7881668 ], + [ 7.9496952, 46.7883575 ], + [ 7.9499835, 46.7885536 ], + [ 7.9502892, 46.7887605 ], + [ 7.9505112, 46.7887834 ], + [ 7.9508835, 46.7888536 ], + [ 7.9511751, 46.7889538 ], + [ 7.9514736, 46.7891835 ], + [ 7.9518436999999995, 46.7895353 ], + [ 7.9519879, 46.7896446 ], + [ 7.9520964, 46.7896815 ], + [ 7.9522701, 46.7897056 ], + [ 7.9525985, 46.7897204 ], + [ 7.9530925, 46.7897595 ], + [ 7.9534607, 46.7899087 ], + [ 7.9536561, 46.7900618 ], + [ 7.9537889, 46.7902446 ], + [ 7.9537869, 46.7903855 ], + [ 7.9536772, 46.7906417 ], + [ 7.9536393, 46.790873500000004 ], + [ 7.9539869, 46.7916953 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "JBG0003", + "country" : "CHE", + "name" : [ + { + "text" : "Eidgenössisches Jagdbanngebiet Augstmatthorn", + "lang" : "de-CH" + }, + { + "text" : "District franc fédéral Augstmatthorn", + "lang" : "fr-CH" + }, + { + "text" : "Bandita federale di caccia Augstmatthorn", + "lang" : "it-CH" + }, + { + "text" : "Federal Game Reserve Augstmatthorn", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.974811, 46.3318139 ], + [ 8.9748017, 46.3316727 ], + [ 8.9747817, 46.3315321 ], + [ 8.9747512, 46.3313924 ], + [ 8.9747101, 46.331254 ], + [ 8.9746586, 46.3311173 ], + [ 8.9745968, 46.3309827 ], + [ 8.974525, 46.3308504 ], + [ 8.9744433, 46.330721 ], + [ 8.9743519, 46.3305947 ], + [ 8.9742511, 46.3304718 ], + [ 8.9741411, 46.3303528 ], + [ 8.9740223, 46.330238 ], + [ 8.973895, 46.3301276 ], + [ 8.9737595, 46.330022 ], + [ 8.9736163, 46.3299214 ], + [ 8.9734656, 46.3298262 ], + [ 8.973308, 46.3297366 ], + [ 8.9731438, 46.3296528 ], + [ 8.9729734, 46.329575 ], + [ 8.9727975, 46.3295036 ], + [ 8.9726164, 46.3294386 ], + [ 8.9724306, 46.3293803 ], + [ 8.9722407, 46.3293288 ], + [ 8.9720471, 46.3292842 ], + [ 8.9718505, 46.3292467 ], + [ 8.9716513, 46.3292165 ], + [ 8.97145, 46.3291934 ], + [ 8.9712474, 46.3291777 ], + [ 8.9710437, 46.3291694 ], + [ 8.9708398, 46.3291685 ], + [ 8.970636, 46.3291749 ], + [ 8.9704331, 46.3291887 ], + [ 8.9702314, 46.3292099 ], + [ 8.9700316, 46.3292384 ], + [ 8.9698343, 46.329274 ], + [ 8.9696399, 46.3293168 ], + [ 8.969449000000001, 46.3293665 ], + [ 8.9692621, 46.3294231 ], + [ 8.9690798, 46.3294865 ], + [ 8.9689025, 46.3295563 ], + [ 8.9687307, 46.3296324 ], + [ 8.9685649, 46.3297147 ], + [ 8.9684055, 46.3298029 ], + [ 8.9682531, 46.3298967 ], + [ 8.9681079, 46.329996 ], + [ 8.9679704, 46.3301003 ], + [ 8.967841, 46.3302095 ], + [ 8.96772, 46.3303233 ], + [ 8.9676078, 46.3304413 ], + [ 8.9675046, 46.3305631 ], + [ 8.9674108, 46.3306886 ], + [ 8.9673266, 46.3308173 ], + [ 8.9672522, 46.3309488 ], + [ 8.9671879, 46.3310829 ], + [ 8.9671338, 46.3312191 ], + [ 8.9670901, 46.3313571 ], + [ 8.9670568, 46.3314965 ], + [ 8.9670341, 46.3316369 ], + [ 8.9670221, 46.331778 ], + [ 8.967020699999999, 46.3319193 ], + [ 8.96703, 46.3320604 ], + [ 8.96705, 46.332201 ], + [ 8.9670805, 46.3323407 ], + [ 8.9671216, 46.3324791 ], + [ 8.9671731, 46.3326158 ], + [ 8.9672348, 46.3327505 ], + [ 8.9673066, 46.3328827 ], + [ 8.9673883, 46.3330122 ], + [ 8.9674797, 46.3331385 ], + [ 8.9675805, 46.3332613 ], + [ 8.9676905, 46.3333803 ], + [ 8.9678093, 46.3334952 ], + [ 8.9679366, 46.3336056 ], + [ 8.968072, 46.3337112 ], + [ 8.9682153, 46.3338118 ], + [ 8.968366, 46.333907 ], + [ 8.9685236, 46.3339967 ], + [ 8.9686878, 46.3340805 ], + [ 8.9688581, 46.3341582 ], + [ 8.9690341, 46.3342297 ], + [ 8.9692152, 46.3342946 ], + [ 8.969401, 46.334353 ], + [ 8.969591, 46.3344045 ], + [ 8.9697845, 46.334449 ], + [ 8.9699812, 46.3344865 ], + [ 8.9701804, 46.3345168 ], + [ 8.9703817, 46.3345398 ], + [ 8.9705844, 46.3345555 ], + [ 8.970788, 46.3345639 ], + [ 8.970992, 46.3345648 ], + [ 8.971195699999999, 46.3345584 ], + [ 8.9713987, 46.3345445 ], + [ 8.9716004, 46.3345233 ], + [ 8.9718002, 46.3344949 ], + [ 8.9719976, 46.3344592 ], + [ 8.972192, 46.3344165 ], + [ 8.9723829, 46.3343667 ], + [ 8.9725698, 46.3343101 ], + [ 8.9727521, 46.3342468 ], + [ 8.9729294, 46.334177 ], + [ 8.9731012, 46.3341008 ], + [ 8.9732671, 46.3340185 ], + [ 8.9734264, 46.3339303 ], + [ 8.9735789, 46.3338365 ], + [ 8.9737241, 46.3337372 ], + [ 8.9738616, 46.3336329 ], + [ 8.973991, 46.3335236 ], + [ 8.974112, 46.3334099 ], + [ 8.9742242, 46.3332919 ], + [ 8.9743273, 46.33317 ], + [ 8.9744211, 46.3330446 ], + [ 8.9745053, 46.3329159 ], + [ 8.9745797, 46.3327843 ], + [ 8.974644, 46.3326502 ], + [ 8.9746981, 46.332514 ], + [ 8.9747418, 46.332376 ], + [ 8.974775, 46.3322366 ], + [ 8.9747977, 46.3320962 ], + [ 8.9748097, 46.3319551 ], + [ 8.974811, 46.3318139 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0057", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Iragna", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Iragna", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Iragna", + "lang" : "it-CH" + }, + { + "text" : "Substation Iragna", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.4303792, 46.7345405 ], + [ 9.4303686, 46.7343994 ], + [ 9.4303473, 46.7342589 ], + [ 9.4303153, 46.7341193 ], + [ 9.4302727, 46.7339811 ], + [ 9.4302197, 46.7338446 ], + [ 9.4301563, 46.7337102 ], + [ 9.4300828, 46.7335782 ], + [ 9.4299994, 46.7334491 ], + [ 9.4299063, 46.7333232 ], + [ 9.4298037, 46.7332008 ], + [ 9.4296919, 46.7330822 ], + [ 9.4295712, 46.7329679 ], + [ 9.429442, 46.732858 ], + [ 9.4293047, 46.7327529 ], + [ 9.4291595, 46.7326529 ], + [ 9.4290069, 46.7325583 ], + [ 9.4288473, 46.7324693 ], + [ 9.4286812, 46.7323862 ], + [ 9.4285089, 46.7323091 ], + [ 9.4283311, 46.7322384 ], + [ 9.428148, 46.7321741 ], + [ 9.4279604, 46.7321166 ], + [ 9.4277686, 46.7320658 ], + [ 9.4275733, 46.732022 ], + [ 9.4273748, 46.7319854 ], + [ 9.4271739, 46.7319559 ], + [ 9.4269709, 46.7319337 ], + [ 9.4267666, 46.7319188 ], + [ 9.4265614, 46.7319113 ], + [ 9.4263559, 46.7319112 ], + [ 9.4261507, 46.7319184 ], + [ 9.4259464, 46.7319331 ], + [ 9.4257434, 46.7319551 ], + [ 9.4255424, 46.7319843 ], + [ 9.4253438, 46.7320208 ], + [ 9.4251484, 46.7320643 ], + [ 9.4249565, 46.7321149 ], + [ 9.4247687, 46.7321722 ], + [ 9.4245855, 46.7322362 ], + [ 9.4244075, 46.7323068 ], + [ 9.4242351, 46.7323836 ], + [ 9.4240687, 46.7324666 ], + [ 9.4239089, 46.7325554 ], + [ 9.4237561, 46.7326498 ], + [ 9.4236107, 46.7327497 ], + [ 9.4234731, 46.7328546 ], + [ 9.4233436, 46.7329643 ], + [ 9.4232227, 46.7330785 ], + [ 9.4231106, 46.733197 ], + [ 9.4230077, 46.7333193 ], + [ 9.4229143, 46.7334451 ], + [ 9.4228306, 46.7335741 ], + [ 9.4227567, 46.733706 ], + [ 9.4226931, 46.7338403 ], + [ 9.4226397, 46.7339767 ], + [ 9.4225968, 46.7341149 ], + [ 9.4225645, 46.7342544 ], + [ 9.4225428, 46.7343949 ], + [ 9.4225319, 46.734536 ], + [ 9.4225317, 46.7346773 ], + [ 9.4225423, 46.7348184 ], + [ 9.4225636, 46.7349589 ], + [ 9.4225956, 46.7350985 ], + [ 9.4226381, 46.7352367 ], + [ 9.4226911, 46.7353732 ], + [ 9.4227545, 46.7355076 ], + [ 9.4228279, 46.7356396 ], + [ 9.422911299999999, 46.7357687 ], + [ 9.4230045, 46.7358947 ], + [ 9.4231071, 46.7360171 ], + [ 9.4232188, 46.7361356 ], + [ 9.4233395, 46.73625 ], + [ 9.4234687, 46.7363599 ], + [ 9.423606, 46.736465 ], + [ 9.4237512, 46.736565 ], + [ 9.4239038, 46.7366596 ], + [ 9.4240634, 46.7367486 ], + [ 9.4242296, 46.7368317 ], + [ 9.4244018, 46.7369088 ], + [ 9.4245797, 46.7369795 ], + [ 9.4247627, 46.7370438 ], + [ 9.4249504, 46.7371014 ], + [ 9.4251421, 46.7371521 ], + [ 9.4253375, 46.7371959 ], + [ 9.425536, 46.7372326 ], + [ 9.425737, 46.7372621 ], + [ 9.4259399, 46.7372843 ], + [ 9.4261443, 46.7372992 ], + [ 9.4263495, 46.7373067 ], + [ 9.426555, 46.7373068 ], + [ 9.4267602, 46.7372995 ], + [ 9.4269646, 46.7372849 ], + [ 9.4271676, 46.7372629 ], + [ 9.4273686, 46.7372336 ], + [ 9.4275672, 46.7371972 ], + [ 9.4277626, 46.7371536 ], + [ 9.4279546, 46.7371031 ], + [ 9.4281424, 46.7370457 ], + [ 9.4283255, 46.7369817 ], + [ 9.428503599999999, 46.7369111 ], + [ 9.428676, 46.7368343 ], + [ 9.4288424, 46.7367513 ], + [ 9.4290022, 46.7366625 ], + [ 9.429155, 46.736568 ], + [ 9.4293004, 46.7364682 ], + [ 9.429438, 46.7363633 ], + [ 9.4295675, 46.7362536 ], + [ 9.4296884, 46.7361393 ], + [ 9.4298005, 46.7360209 ], + [ 9.4299034, 46.7358986 ], + [ 9.4299968, 46.7357727 ], + [ 9.4300805, 46.7356437 ], + [ 9.4301543, 46.7355118 ], + [ 9.430218, 46.7353775 ], + [ 9.4302713, 46.7352411 ], + [ 9.4303142, 46.7351029 ], + [ 9.4303465, 46.7349634 ], + [ 9.4303681, 46.7348229 ], + [ 9.430379, 46.7346818 ], + [ 9.4303792, 46.7345405 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "REA0001", + "country" : "CHE", + "name" : [ + { + "text" : "JVA Realta", + "lang" : "de-CH" + }, + { + "text" : "JVA Realta", + "lang" : "fr-CH" + }, + { + "text" : "JVA Realta", + "lang" : "it-CH" + }, + { + "text" : "JVA Realta", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Justizvollzugsanstalt Realta", + "lang" : "de-CH" + }, + { + "text" : "Établissement pénitentiaire Realta", + "lang" : "fr-CH" + }, + { + "text" : "Penitenziario Realta", + "lang" : "it-CH" + }, + { + "text" : "Realta prison", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Betreuung und Sicherheit", + "lang" : "de-CH" + }, + { + "text" : "Entretien et sécurité", + "lang" : "fr-CH" + }, + { + "text" : "Cura & sicurezza", + "lang" : "it-CH" + }, + { + "text" : "Care & Security", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Beat Trepp", + "lang" : "de-CH" + }, + { + "text" : "Beat Trepp", + "lang" : "fr-CH" + }, + { + "text" : "Beat Trepp", + "lang" : "it-CH" + }, + { + "text" : "Beat Trepp", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ajv.gr.ch", + "email" : "info@realta.gr.ch", + "phone" : "0041812574646", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8283114, 47.3922516 ], + [ 7.828328, 47.392244 ], + [ 7.8285983, 47.3923218 ], + [ 7.8288913, 47.3923491 ], + [ 7.8295459, 47.3918316 ], + [ 7.8297827, 47.3916215 ], + [ 7.8300256, 47.3914508 ], + [ 7.8302338, 47.3913028 ], + [ 7.830501, 47.3910464 ], + [ 7.8309908, 47.3907254 ], + [ 7.8310692, 47.390674 ], + [ 7.8315521, 47.3909512 ], + [ 7.831887, 47.3910185 ], + [ 7.832105, 47.3910619 ], + [ 7.8321205, 47.3910267 ], + [ 7.8323903999999995, 47.3910664 ], + [ 7.8328282, 47.3910855 ], + [ 7.8335908, 47.3912288 ], + [ 7.8339302, 47.3913803 ], + [ 7.8343631, 47.3914734 ], + [ 7.8346987, 47.391579 ], + [ 7.8350025, 47.3917184 ], + [ 7.8352369, 47.3918796 ], + [ 7.8355505999999995, 47.3919395 ], + [ 7.8358185, 47.3919591 ], + [ 7.8358038, 47.3920145 ], + [ 7.8362935, 47.3921358 ], + [ 7.8367602, 47.392195 ], + [ 7.8370445, 47.3922252 ], + [ 7.8373472, 47.392299 ], + [ 7.8373842, 47.3923182 ], + [ 7.8374349, 47.3923014 ], + [ 7.8375433999999995, 47.3923311 ], + [ 7.8376228999999995, 47.3923657 ], + [ 7.8378175, 47.392451 ], + [ 7.8380316, 47.3925471 ], + [ 7.8381746, 47.3925784 ], + [ 7.8383078, 47.392591 ], + [ 7.8384736, 47.3925917 ], + [ 7.8386154, 47.3925597 ], + [ 7.8386963, 47.3924684 ], + [ 7.8387595999999995, 47.3924495 ], + [ 7.8387797, 47.392451 ], + [ 7.8388, 47.3924514 ], + [ 7.8388203, 47.3924505 ], + [ 7.8388404, 47.3924485 ], + [ 7.8388602, 47.3924452 ], + [ 7.8388794, 47.3924409 ], + [ 7.8388632, 47.3924095 ], + [ 7.838882, 47.3923661 ], + [ 7.8389275, 47.3922792 ], + [ 7.8389051, 47.3922627 ], + [ 7.8387964, 47.392192 ], + [ 7.838742, 47.3921587 ], + [ 7.8385856, 47.3920833 ], + [ 7.8384701, 47.3920334 ], + [ 7.8382728, 47.3919482 ], + [ 7.8380864, 47.3918795 ], + [ 7.8379370999999995, 47.3918343 ], + [ 7.8379403, 47.3918283 ], + [ 7.8379428, 47.3918221 ], + [ 7.8379445, 47.3918158 ], + [ 7.8379454, 47.3918095 ], + [ 7.8379455, 47.3918031 ], + [ 7.8379448, 47.3917967 ], + [ 7.8379433, 47.3917904 ], + [ 7.8379373999999995, 47.3917787 ], + [ 7.83793, 47.3917675 ], + [ 7.8379211, 47.3917567 ], + [ 7.8379107999999995, 47.3917466 ], + [ 7.8378992, 47.3917371 ], + [ 7.8378863, 47.3917284 ], + [ 7.8378723, 47.3917205 ], + [ 7.8378574, 47.3917135 ], + [ 7.8377869, 47.3916878 ], + [ 7.8376923, 47.3916545 ], + [ 7.8376523, 47.3916396 ], + [ 7.8376248, 47.3916282 ], + [ 7.8376199, 47.391625 ], + [ 7.8376154, 47.3916216 ], + [ 7.8376114, 47.3916179 ], + [ 7.8376079, 47.391614 ], + [ 7.8376049, 47.3916099 ], + [ 7.8376024, 47.3916056 ], + [ 7.8376003999999995, 47.3916012 ], + [ 7.837599, 47.3915967 ], + [ 7.8375982, 47.3915922 ], + [ 7.837598, 47.3915876 ], + [ 7.8375983, 47.391583 ], + [ 7.8375993, 47.3915785 ], + [ 7.8376002, 47.3915754 ], + [ 7.8376016, 47.3915724 ], + [ 7.8376033, 47.3915694 ], + [ 7.8376054, 47.3915666 ], + [ 7.8376078, 47.3915639 ], + [ 7.8376517, 47.3915137 ], + [ 7.8376082, 47.3914941 ], + [ 7.8375628, 47.3914693 ], + [ 7.8375211, 47.3914418 ], + [ 7.8374833, 47.3914118 ], + [ 7.8374498, 47.3913795 ], + [ 7.8374208, 47.3913452 ], + [ 7.8373521, 47.3912543 ], + [ 7.8373391, 47.3912344 ], + [ 7.8373286, 47.3912137 ], + [ 7.8373207, 47.3911926 ], + [ 7.8373155, 47.391171 ], + [ 7.837313, 47.3911493 ], + [ 7.8373131, 47.3911274 ], + [ 7.8373179, 47.391073 ], + [ 7.8373287, 47.3910275 ], + [ 7.8373433, 47.3909806 ], + [ 7.8373981, 47.3908395 ], + [ 7.8374, 47.3908262 ], + [ 7.8374003, 47.3908128 ], + [ 7.8373989, 47.3907995 ], + [ 7.8373959, 47.3907862 ], + [ 7.8373912, 47.3907732 ], + [ 7.8373849, 47.3907605 ], + [ 7.837377, 47.3907483 ], + [ 7.8373676, 47.3907365 ], + [ 7.8373568, 47.3907253 ], + [ 7.8373447, 47.3907147 ], + [ 7.8373311999999995, 47.3907049 ], + [ 7.8373166, 47.3906959 ], + [ 7.8373009, 47.3906878 ], + [ 7.8372843, 47.3906806 ], + [ 7.8372668, 47.3906744 ], + [ 7.8370931, 47.3906256 ], + [ 7.8369347, 47.3905787 ], + [ 7.8367959, 47.390534 ], + [ 7.8365066, 47.390445 ], + [ 7.836375, 47.3904071 ], + [ 7.8362233, 47.3903718 ], + [ 7.8360844, 47.3903402 ], + [ 7.8359702, 47.3903196 ], + [ 7.8358111, 47.3902936 ], + [ 7.8356213, 47.3902528 ], + [ 7.8355036, 47.3902281 ], + [ 7.8353575, 47.390205 ], + [ 7.8352331, 47.3901786 ], + [ 7.8351115, 47.3901523 ], + [ 7.8349333, 47.3901123 ], + [ 7.834834, 47.3900917 ], + [ 7.8347175, 47.3900677 ], + [ 7.8346079, 47.390046 ], + [ 7.8345384, 47.390029 ], + [ 7.8344704, 47.3900094 ], + [ 7.834404, 47.3899874 ], + [ 7.8343384, 47.3899671 ], + [ 7.8342314, 47.389934 ], + [ 7.8341265, 47.3898953 ], + [ 7.8340015, 47.3898411 ], + [ 7.8337911, 47.3897446 ], + [ 7.8336328, 47.3896708 ], + [ 7.8333379999999995, 47.3895364 ], + [ 7.8331529, 47.3894429 ], + [ 7.8330725, 47.3894051 ], + [ 7.8329605, 47.3893593 ], + [ 7.8328728, 47.3893249 ], + [ 7.8327974, 47.3892937 ], + [ 7.8326416, 47.3892348 ], + [ 7.8325329, 47.3891936 ], + [ 7.8324226, 47.3891544 ], + [ 7.8323108, 47.3891172 ], + [ 7.8322586, 47.3891024 ], + [ 7.8321507, 47.3890775 ], + [ 7.8321155000000005, 47.3890706 ], + [ 7.8320796, 47.3890659 ], + [ 7.8320431, 47.3890635 ], + [ 7.8320065, 47.3890635 ], + [ 7.83197, 47.3890658 ], + [ 7.8319271, 47.38907 ], + [ 7.8319107, 47.3890712 ], + [ 7.8318946, 47.3890732 ], + [ 7.8318788, 47.3890763 ], + [ 7.8318634, 47.3890802 ], + [ 7.8318486, 47.3890851 ], + [ 7.8318344, 47.3890908 ], + [ 7.8318211, 47.3890973 ], + [ 7.8318086000000005, 47.3891046 ], + [ 7.8317972000000005, 47.3891126 ], + [ 7.8317868, 47.3891213 ], + [ 7.8317775, 47.3891305 ], + [ 7.8310607, 47.3883461 ], + [ 7.8303164, 47.3868062 ], + [ 7.8288655, 47.3847376 ], + [ 7.8286595, 47.384425 ], + [ 7.8283301, 47.3844357 ], + [ 7.8281867, 47.3845065 ], + [ 7.8281382, 47.3846224 ], + [ 7.8281126, 47.3850158 ], + [ 7.8281388, 47.3851043 ], + [ 7.8282126, 47.3852291 ], + [ 7.8282494, 47.3854715 ], + [ 7.8282256, 47.3856684 ], + [ 7.828164, 47.3858 ], + [ 7.8280268, 47.3859038 ], + [ 7.8276806, 47.3861209 ], + [ 7.8276309, 47.3862016 ], + [ 7.8276243999999995, 47.3862898 ], + [ 7.8278308, 47.386466 ], + [ 7.8278263, 47.3866407 ], + [ 7.8276398, 47.3868236 ], + [ 7.8275103, 47.3872094 ], + [ 7.8269988, 47.3873863 ], + [ 7.8269458, 47.3873844 ], + [ 7.8269424, 47.3872828 ], + [ 7.8269217, 47.3871814 ], + [ 7.8268851999999995, 47.3870827 ], + [ 7.8268127, 47.3869427 ], + [ 7.8258605, 47.3872488 ], + [ 7.8256616999999995, 47.3871254 ], + [ 7.825497, 47.3871181 ], + [ 7.8253524, 47.3870068 ], + [ 7.8253208, 47.386982 ], + [ 7.8249867, 47.3866692 ], + [ 7.8249433, 47.3866546 ], + [ 7.8247173, 47.3865766 ], + [ 7.8242715, 47.3865352 ], + [ 7.8239653, 47.3865682 ], + [ 7.8236045, 47.3865184 ], + [ 7.823424, 47.3864078 ], + [ 7.8230044, 47.3863559 ], + [ 7.822972, 47.3864969 ], + [ 7.8227514, 47.3867603 ], + [ 7.8224795, 47.3868459 ], + [ 7.8222892, 47.386915 ], + [ 7.8222475, 47.3870348 ], + [ 7.8221747, 47.3871407 ], + [ 7.8221418, 47.3871616 ], + [ 7.8220969, 47.3871612 ], + [ 7.8220668, 47.3871785 ], + [ 7.8219821, 47.3872883 ], + [ 7.8219401, 47.3873326 ], + [ 7.8218818, 47.387364 ], + [ 7.821819, 47.3873827 ], + [ 7.8218142, 47.3873854 ], + [ 7.82181, 47.3873885 ], + [ 7.8218064, 47.3873919 ], + [ 7.8218035, 47.3873957 ], + [ 7.8218013, 47.3873996 ], + [ 7.8218, 47.3874038 ], + [ 7.8217994, 47.387408 ], + [ 7.8217997, 47.3874122 ], + [ 7.8218008, 47.3874164 ], + [ 7.8218171, 47.3875126 ], + [ 7.8218504, 47.387626 ], + [ 7.8218587, 47.3876999 ], + [ 7.8218148, 47.387713 ], + [ 7.8214106999999995, 47.3875046 ], + [ 7.8209857, 47.3872819 ], + [ 7.8203505, 47.3871528 ], + [ 7.8202909, 47.3872465 ], + [ 7.8199938, 47.3872548 ], + [ 7.8196939, 47.3872633 ], + [ 7.8196882, 47.3872634 ], + [ 7.8195941, 47.3873194 ], + [ 7.8193496, 47.3875368 ], + [ 7.8193022, 47.3875131 ], + [ 7.8193084, 47.3875048 ], + [ 7.8193139, 47.3874962 ], + [ 7.8193184, 47.3874874 ], + [ 7.819322, 47.3874785 ], + [ 7.8193247, 47.3874694 ], + [ 7.8193265, 47.3874601 ], + [ 7.8193273, 47.3874508 ], + [ 7.8193272, 47.3874415 ], + [ 7.8193262, 47.3874323 ], + [ 7.8193242, 47.3874231 ], + [ 7.8193213, 47.387414 ], + [ 7.8193174, 47.387405 ], + [ 7.8193127, 47.3873963 ], + [ 7.8193071, 47.3873878 ], + [ 7.8193006, 47.3873796 ], + [ 7.8192933, 47.3873717 ], + [ 7.8192853, 47.3873642 ], + [ 7.8192765, 47.3873571 ], + [ 7.819267, 47.3873504 ], + [ 7.8184924, 47.3868596 ], + [ 7.8184831, 47.3868542 ], + [ 7.8184732, 47.3868493 ], + [ 7.8184628, 47.3868449 ], + [ 7.818452, 47.386841 ], + [ 7.8184407, 47.3868377 ], + [ 7.8184292, 47.386835 ], + [ 7.8184173, 47.3868328 ], + [ 7.8184053, 47.3868313 ], + [ 7.8183931, 47.3868303 ], + [ 7.8183809, 47.38683 ], + [ 7.8183687, 47.3868303 ], + [ 7.8183565, 47.3868312 ], + [ 7.8183444, 47.3868327 ], + [ 7.8176061, 47.387343 ], + [ 7.8176242, 47.3878353 ], + [ 7.8177324, 47.387944 ], + [ 7.8177855, 47.3879632 ], + [ 7.8177446, 47.3880374 ], + [ 7.817704, 47.3883421 ], + [ 7.8177832, 47.3886767 ], + [ 7.8178211, 47.3887867 ], + [ 7.817894, 47.3887789 ], + [ 7.8180986, 47.3887362 ], + [ 7.8183079, 47.3886565 ], + [ 7.8186219, 47.3885761 ], + [ 7.8185994, 47.3884585 ], + [ 7.8186, 47.3883239 ], + [ 7.8186307, 47.3881902 ], + [ 7.8186941, 47.3880525 ], + [ 7.8187423, 47.3879974 ], + [ 7.8187932, 47.388018 ], + [ 7.8188196, 47.3880921 ], + [ 7.8191401, 47.3888651 ], + [ 7.8192224, 47.3893556 ], + [ 7.8192844, 47.3895225 ], + [ 7.8196198, 47.3901517 ], + [ 7.8197297, 47.3902932 ], + [ 7.8199412, 47.3905071 ], + [ 7.8200346, 47.3906872 ], + [ 7.8200383, 47.3908788 ], + [ 7.8199331, 47.3911994 ], + [ 7.8199091, 47.3912634 ], + [ 7.8198910999999995, 47.3913007 ], + [ 7.8198665, 47.3913437 ], + [ 7.819864, 47.3913482 ], + [ 7.8198531, 47.3913639 ], + [ 7.8198398000000005, 47.3913789 ], + [ 7.8198243, 47.3913928 ], + [ 7.8198069, 47.3914054 ], + [ 7.8197875, 47.3914169 ], + [ 7.8197664, 47.3914268 ], + [ 7.8197618, 47.3914293 ], + [ 7.8197475, 47.3914377 ], + [ 7.8197349, 47.391447 ], + [ 7.8197236, 47.3914573 ], + [ 7.819714, 47.3914682 ], + [ 7.8197062, 47.3914798 ], + [ 7.8195609, 47.3917071 ], + [ 7.8195352, 47.3917482 ], + [ 7.8194446, 47.3918362 ], + [ 7.8191887, 47.3920192 ], + [ 7.8189444, 47.3922701 ], + [ 7.8188051, 47.3923691 ], + [ 7.818699, 47.3924162 ], + [ 7.8185629, 47.3924567 ], + [ 7.8183734, 47.392459 ], + [ 7.8182775, 47.392484 ], + [ 7.8182157, 47.3925409 ], + [ 7.8181864, 47.3926091 ], + [ 7.8187024, 47.3927685 ], + [ 7.8186874, 47.3928032 ], + [ 7.8193222, 47.3929647 ], + [ 7.8198518, 47.3930206 ], + [ 7.8207148, 47.39308 ], + [ 7.821057, 47.3930804 ], + [ 7.8217286, 47.3930523 ], + [ 7.8227607, 47.3929434 ], + [ 7.8230512, 47.3929256 ], + [ 7.8233732, 47.3929548 ], + [ 7.8237368, 47.3929726 ], + [ 7.8238437, 47.3929279 ], + [ 7.8238859, 47.3928523 ], + [ 7.8239865, 47.3925105 ], + [ 7.8241161, 47.3922546 ], + [ 7.82419, 47.3920663 ], + [ 7.8245369, 47.39184 ], + [ 7.8250454, 47.3916817 ], + [ 7.8253886999999995, 47.3919392 ], + [ 7.8260133, 47.3917566 ], + [ 7.8263561, 47.3918526 ], + [ 7.8264028, 47.3918616 ], + [ 7.8265188, 47.3918923 ], + [ 7.8266822, 47.3919332 ], + [ 7.8267602, 47.3919479 ], + [ 7.8270772, 47.3919973 ], + [ 7.8274292, 47.3920531 ], + [ 7.8275615, 47.3920734 ], + [ 7.8277134, 47.3920965 ], + [ 7.8278345, 47.3921163 ], + [ 7.828006, 47.3921453 ], + [ 7.8281236, 47.3921667 ], + [ 7.8281355999999995, 47.3921701 ], + [ 7.8281472, 47.3921741 ], + [ 7.8281583999999995, 47.3921785 ], + [ 7.8281692, 47.3921834 ], + [ 7.8281796, 47.3921887 ], + [ 7.8281895, 47.3921944 ], + [ 7.8281988, 47.3922006 ], + [ 7.828221, 47.3922132 ], + [ 7.8282521, 47.3922289 ], + [ 7.8282678, 47.3922358 ], + [ 7.8282839, 47.3922422 ], + [ 7.8283005, 47.3922481 ], + [ 7.8283114, 47.3922516 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns181", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Schanz - Walten", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Schanz - Walten", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Schanz - Walten", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Schanz - Walten", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4177988, 47.4040322 ], + [ 7.4177114, 47.4037509 ], + [ 7.4176383999999995, 47.4035639 ], + [ 7.4176081, 47.4034863 ], + [ 7.4180530000000005, 47.4035199 ], + [ 7.4182527, 47.4035451 ], + [ 7.4186039, 47.4035933 ], + [ 7.4188722, 47.4036127 ], + [ 7.4189038, 47.4036188 ], + [ 7.4188989, 47.403704 ], + [ 7.4188745, 47.4041274 ], + [ 7.4188705, 47.4041966 ], + [ 7.4192114, 47.4042262 ], + [ 7.4196206, 47.4042608 ], + [ 7.4197443, 47.4042208 ], + [ 7.4198544, 47.4041822 ], + [ 7.4199554, 47.4041328 ], + [ 7.4200967, 47.4040539 ], + [ 7.4201221, 47.40404 ], + [ 7.4201322, 47.4040426 ], + [ 7.4202621, 47.4040065 ], + [ 7.4204265, 47.4039792 ], + [ 7.4206584, 47.4039507 ], + [ 7.4208687, 47.4039123 ], + [ 7.4209391, 47.4039 ], + [ 7.4211766, 47.4038524 ], + [ 7.4214413, 47.403785 ], + [ 7.4216584, 47.4037154 ], + [ 7.4218548, 47.403631 ], + [ 7.4220257, 47.403522 ], + [ 7.4222295, 47.403373 ], + [ 7.4222487, 47.4033599 ], + [ 7.4224673, 47.4032104 ], + [ 7.4227209, 47.4030322 ], + [ 7.4229007, 47.4029327 ], + [ 7.4229618, 47.4029051 ], + [ 7.4230792, 47.4028522 ], + [ 7.4232872, 47.4027506 ], + [ 7.423393, 47.4026997 ], + [ 7.423505, 47.4026552 ], + [ 7.4236222, 47.4026176 ], + [ 7.4238049, 47.4025617 ], + [ 7.4239095, 47.4025297 ], + [ 7.4240917, 47.4024669 ], + [ 7.4242775, 47.4023882 ], + [ 7.4245354, 47.4022757 ], + [ 7.4247878, 47.4021773 ], + [ 7.424926, 47.4021274 ], + [ 7.4251158, 47.4020703 ], + [ 7.4251439, 47.402059 ], + [ 7.4251704, 47.4020461 ], + [ 7.4251953, 47.4020317 ], + [ 7.4252183, 47.402016 ], + [ 7.4253292, 47.4018822 ], + [ 7.4253744, 47.4017906 ], + [ 7.4254683, 47.4014165 ], + [ 7.4255053, 47.4012593 ], + [ 7.4254916, 47.401227 ], + [ 7.4255592, 47.4008958 ], + [ 7.4253964, 47.4008996 ], + [ 7.4253528, 47.4008971 ], + [ 7.4251091, 47.4008119 ], + [ 7.4249656, 47.4005184 ], + [ 7.4254475, 47.4004361 ], + [ 7.4254497, 47.4004219 ], + [ 7.4254527, 47.4004079 ], + [ 7.4254565, 47.4003939 ], + [ 7.4254609, 47.40038 ], + [ 7.4254660999999995, 47.4003663 ], + [ 7.425472, 47.4003526 ], + [ 7.4254787, 47.4003392 ], + [ 7.425486, 47.4003259 ], + [ 7.4254939, 47.4003129 ], + [ 7.4255025, 47.4003002 ], + [ 7.4255117, 47.4002876 ], + [ 7.4255215, 47.4002753 ], + [ 7.4255689, 47.4001889 ], + [ 7.4256014, 47.4001366 ], + [ 7.4256156, 47.4000899 ], + [ 7.4256221, 47.400047 ], + [ 7.4256217, 47.3999899 ], + [ 7.4256152, 47.3999764 ], + [ 7.4256037, 47.3999529 ], + [ 7.4255714, 47.399863 ], + [ 7.4255359, 47.3997709 ], + [ 7.4255035, 47.3996747 ], + [ 7.4254902, 47.3995897 ], + [ 7.4254949, 47.3995151 ], + [ 7.4255143, 47.3994443 ], + [ 7.4255369, 47.399385 ], + [ 7.4255661, 47.3993311 ], + [ 7.4255464, 47.3992823 ], + [ 7.4254721, 47.3992201 ], + [ 7.425406, 47.399195 ], + [ 7.4253398, 47.3991844 ], + [ 7.4251712, 47.3991818 ], + [ 7.4249628, 47.3992144 ], + [ 7.4247358, 47.3992495 ], + [ 7.4245013, 47.3992795 ], + [ 7.4242808, 47.3993111 ], + [ 7.4240761, 47.3993439 ], + [ 7.4239370000000005, 47.3993641 ], + [ 7.4237377, 47.3994285 ], + [ 7.4235287, 47.3994777 ], + [ 7.4233793, 47.3994901 ], + [ 7.4232712, 47.3995022 ], + [ 7.4231792, 47.3994945 ], + [ 7.4231048, 47.3994857 ], + [ 7.4231584, 47.3997108 ], + [ 7.4226158, 47.3997327 ], + [ 7.4222589, 47.3997492 ], + [ 7.4217858, 47.399786399999996 ], + [ 7.4215188, 47.3998138 ], + [ 7.4212595, 47.3998426 ], + [ 7.4210408, 47.3998682 ], + [ 7.4208666, 47.399888 ], + [ 7.4206622, 47.3999072 ], + [ 7.4204105, 47.3999199 ], + [ 7.4202001, 47.3999293 ], + [ 7.419946, 47.3999327 ], + [ 7.419754, 47.3999327 ], + [ 7.4195073, 47.3999311 ], + [ 7.4193576, 47.3999324 ], + [ 7.4192895, 47.3999349 ], + [ 7.4192276, 47.3999401 ], + [ 7.4191879, 47.3999539 ], + [ 7.4191528, 47.399981 ], + [ 7.4191407, 47.4000055 ], + [ 7.4191598, 47.4000652 ], + [ 7.4190848, 47.4001279 ], + [ 7.4188637, 47.400204 ], + [ 7.418686, 47.4002586 ], + [ 7.4184007, 47.4003436 ], + [ 7.4180224, 47.4004577 ], + [ 7.4175849, 47.400604 ], + [ 7.4171856, 47.4007389 ], + [ 7.416723, 47.4008954 ], + [ 7.4161346, 47.4011037 ], + [ 7.4161616, 47.4011869 ], + [ 7.4166142, 47.4020981 ], + [ 7.4166865, 47.40207 ], + [ 7.4167356, 47.4021417 ], + [ 7.4169305, 47.4024269 ], + [ 7.4170147, 47.402538 ], + [ 7.4170394, 47.4025714 ], + [ 7.4171081, 47.402766 ], + [ 7.4171754, 47.4029335 ], + [ 7.4172066, 47.4030097 ], + [ 7.4172363, 47.4030822 ], + [ 7.4172413, 47.4030936 ], + [ 7.4171875, 47.4031083 ], + [ 7.4170754, 47.4031388 ], + [ 7.4170376000000005, 47.4030316 ], + [ 7.416874, 47.4026247 ], + [ 7.41677, 47.4024708 ], + [ 7.4165411, 47.4021267 ], + [ 7.4163932, 47.4021858 ], + [ 7.4165738, 47.4024624 ], + [ 7.4166595, 47.4025978 ], + [ 7.4161112, 47.4029314 ], + [ 7.4162089, 47.4029817 ], + [ 7.4162415, 47.4030828 ], + [ 7.4162251999999995, 47.4031816 ], + [ 7.4161907, 47.4032307 ], + [ 7.4161036, 47.4033437 ], + [ 7.416078, 47.4034037 ], + [ 7.4160625, 47.4034401 ], + [ 7.4160435, 47.403541 ], + [ 7.4160506999999996, 47.4036451 ], + [ 7.4160456, 47.4036464 ], + [ 7.416046, 47.403661 ], + [ 7.4160741, 47.40381 ], + [ 7.416092, 47.4038935 ], + [ 7.4163044, 47.403845 ], + [ 7.4166264, 47.4037658 ], + [ 7.4166327, 47.4037818 ], + [ 7.4167728, 47.40414 ], + [ 7.41683, 47.4042864 ], + [ 7.4173511, 47.4041933 ], + [ 7.4175049, 47.4041629 ], + [ 7.4176395, 47.4041363 ], + [ 7.41782, 47.4041006 ], + [ 7.4177988, 47.4040322 ] + ], + [ + [ 7.4189776, 47.4023562 ], + [ 7.4190447, 47.4025557 ], + [ 7.4188097, 47.402532 ], + [ 7.4187066999999995, 47.4023335 ], + [ 7.4184225, 47.4018239 ], + [ 7.4182836, 47.4015751 ], + [ 7.4182212, 47.4015661 ], + [ 7.4181532, 47.4015566 ], + [ 7.4180741, 47.4014504 ], + [ 7.4178302, 47.4011234 ], + [ 7.4176514000000005, 47.4008836 ], + [ 7.4175493, 47.4007468 ], + [ 7.4177538, 47.4006778 ], + [ 7.4179954, 47.4005963 ], + [ 7.4182841, 47.4005212 ], + [ 7.4183637000000004, 47.4006263 ], + [ 7.418674, 47.4010361 ], + [ 7.41879, 47.4011967 ], + [ 7.4188959, 47.4013487 ], + [ 7.4186499, 47.4013748 ], + [ 7.4189028, 47.4016784 ], + [ 7.4190039, 47.4018091 ], + [ 7.4187546, 47.401857 ], + [ 7.4188035, 47.4019884 ], + [ 7.4188541, 47.4021245 ], + [ 7.4188726, 47.4021743 ], + [ 7.4189161, 47.4022502 ], + [ 7.4189776, 47.4023562 ] + ], + [ + [ 7.4173408, 47.4013529 ], + [ 7.4174062, 47.4014359 ], + [ 7.4174045, 47.4014357 ], + [ 7.4173618, 47.4014297 ], + [ 7.4170318, 47.4013831 ], + [ 7.4168231, 47.4011142 ], + [ 7.4167406, 47.4010079 ], + [ 7.4170113, 47.4009242 ], + [ 7.4171062, 47.4010478 ], + [ 7.4173385, 47.4013499 ], + [ 7.4173408, 47.4013529 ] + ], + [ + [ 7.4196975, 47.4027297 ], + [ 7.4196641, 47.4025695 ], + [ 7.4198369, 47.4025112 ], + [ 7.4199453, 47.4024733 ], + [ 7.4200603, 47.4024331 ], + [ 7.4202406, 47.4023712 ], + [ 7.4203776999999995, 47.402324 ], + [ 7.4205203, 47.4022765 ], + [ 7.4205261, 47.4022761 ], + [ 7.4205433, 47.4024582 ], + [ 7.4205501, 47.4027005 ], + [ 7.420543, 47.4027027 ], + [ 7.4205294, 47.4027068 ], + [ 7.4203586999999995, 47.4027592 ], + [ 7.420131, 47.4028472 ], + [ 7.4197571, 47.4029919 ], + [ 7.4197738, 47.403042 ], + [ 7.419195, 47.4030815 ], + [ 7.4185457, 47.403018 ], + [ 7.4185404, 47.4029665 ], + [ 7.4185351, 47.4029151 ], + [ 7.4192158, 47.4029422 ], + [ 7.4197329, 47.402905 ], + [ 7.4196975, 47.4027297 ] + ], + [ + [ 7.4169476, 47.4031736 ], + [ 7.4169725, 47.4032329 ], + [ 7.4171043, 47.4035675 ], + [ 7.4171328, 47.4036405 ], + [ 7.4167698, 47.4037305 ], + [ 7.416738, 47.4036598 ], + [ 7.416661, 47.4034886 ], + [ 7.4165656, 47.4032772 ], + [ 7.4169034, 47.4031857 ], + [ 7.4169476, 47.4031736 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns246", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Andil", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Andil", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Andil", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Andil", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.1529688, 46.5050782 ], + [ 7.1523881, 46.5052588 ], + [ 7.1521289, 46.5053091 ], + [ 7.1517638, 46.5053729 ], + [ 7.1514053, 46.5054026 ], + [ 7.1511039, 46.5054312 ], + [ 7.1507922, 46.5054037 ], + [ 7.1504568, 46.5053992 ], + [ 7.1502191, 46.5053815 ], + [ 7.1500147, 46.50538 ], + [ 7.1498518, 46.5053945 ], + [ 7.149714, 46.5054254 ], + [ 7.149454, 46.5054644 ], + [ 7.1491608, 46.5054873 ], + [ 7.1488356, 46.5055333 ], + [ 7.1485364, 46.5056012 ], + [ 7.1482098, 46.5056191 ], + [ 7.14781, 46.5056272 ], + [ 7.1472731, 46.505683 ], + [ 7.1469991, 46.5055928 ], + [ 7.1468252, 46.5055344 ], + [ 7.1465853, 46.5054773 ], + [ 7.1463144, 46.5054321 ], + [ 7.1460508, 46.5053923 ], + [ 7.1457064, 46.5053767 ], + [ 7.1453214, 46.5053563 ], + [ 7.1449867, 46.505363 ], + [ 7.1446099, 46.5053312 ], + [ 7.1441345, 46.505307 ], + [ 7.1439404, 46.5053616 ], + [ 7.143853, 46.505414 ], + [ 7.1438063, 46.505471299999996 ], + [ 7.1437529, 46.5055569 ], + [ 7.1437564, 46.5056525 ], + [ 7.1437215, 46.505777 ], + [ 7.1436784, 46.5059244 ], + [ 7.1436086, 46.5060216 ], + [ 7.1435486, 46.5061354 ], + [ 7.143384, 46.5063076 ], + [ 7.1432261, 46.5064347 ], + [ 7.1430408, 46.5065117 ], + [ 7.1428585, 46.5066448 ], + [ 7.1426489, 46.5067167 ], + [ 7.1424244, 46.5068113 ], + [ 7.1422148, 46.5068831 ], + [ 7.1419488, 46.5069786 ], + [ 7.1417148, 46.507034 ], + [ 7.141503, 46.5070495 ], + [ 7.1412511, 46.507094 ], + [ 7.1409822, 46.5071219 ], + [ 7.1407956, 46.5071538 ], + [ 7.140543, 46.5071757 ], + [ 7.1403815999999996, 46.5072128 ], + [ 7.1402438, 46.5072382 ], + [ 7.1400912, 46.5073032 ], + [ 7.1399148, 46.5073911 ], + [ 7.1396815, 46.5074747 ], + [ 7.1394481, 46.5075583 ], + [ 7.1393348, 46.507583 ], + [ 7.1391792, 46.5075918 ], + [ 7.1389052, 46.5076705 ], + [ 7.1386148, 46.5077609 ], + [ 7.1382776, 46.507914 ], + [ 7.1380634, 46.5080705 ], + [ 7.1377435, 46.5080487 ], + [ 7.1374577, 46.5080431 ], + [ 7.1373695, 46.5080956 ], + [ 7.1371606, 46.5081787 ], + [ 7.1369531, 46.5082897 ], + [ 7.1367863, 46.508417 ], + [ 7.1366344, 46.5084933 ], + [ 7.1364654, 46.5085642 ], + [ 7.1363105000000004, 46.5086026 ], + [ 7.1363282, 46.5086442 ], + [ 7.1364526999999995, 46.5096791 ], + [ 7.1363594, 46.5100566 ], + [ 7.136513, 46.5105518 ], + [ 7.1367456, 46.5108943 ], + [ 7.1369362, 46.5117674 ], + [ 7.1369596, 46.5122442 ], + [ 7.137279, 46.5133695 ], + [ 7.1376019, 46.5138831 ], + [ 7.1384822, 46.514920000000004 ], + [ 7.1389616, 46.515416 ], + [ 7.1392845, 46.5159386 ], + [ 7.1395434, 46.5162541 ], + [ 7.1399685999999996, 46.5171279 ], + [ 7.1399925, 46.5175147 ], + [ 7.139768, 46.5180539 ], + [ 7.1398952, 46.5186119 ], + [ 7.1403096999999995, 46.5190628 ], + [ 7.1403082, 46.5193327 ], + [ 7.1404759, 46.519648 ], + [ 7.1404998, 46.5200528 ], + [ 7.1406021, 46.5203949 ], + [ 7.1416391, 46.5214052 ], + [ 7.1420285, 46.5217031 ], + [ 7.1436547, 46.5222021 ], + [ 7.1439369, 46.5230304 ], + [ 7.1441926, 46.5239576 ], + [ 7.1443862, 46.524291 ], + [ 7.1444158, 46.5260452 ], + [ 7.1445049, 46.5264322 ], + [ 7.1446993, 46.5266306 ], + [ 7.1453231, 46.5269741 ], + [ 7.1458432, 46.5272003 ], + [ 7.1464939, 46.5273819 ], + [ 7.1469756, 46.5274731 ], + [ 7.1472352, 46.5276717 ], + [ 7.1478586, 46.5280781 ], + [ 7.1482715, 46.5284012 ], + [ 7.1481454, 46.528525 ], + [ 7.1480917999999996, 46.5286366 ], + [ 7.1480555, 46.5287373 ], + [ 7.1479828, 46.528916100000004 ], + [ 7.1479374, 46.5290393 ], + [ 7.1479498, 46.5291577 ], + [ 7.1479685, 46.529310100000004 ], + [ 7.1479954, 46.529457 ], + [ 7.1480294, 46.5296435 ], + [ 7.1480789, 46.5298303 ], + [ 7.1480876, 46.5300389 ], + [ 7.148089, 46.5302247 ], + [ 7.1480518, 46.5303366 ], + [ 7.1480124, 46.5305274 ], + [ 7.1479489, 46.530684 ], + [ 7.1479034, 46.5308014 ], + [ 7.1478417, 46.5309242 ], + [ 7.1477283, 46.5311079 ], + [ 7.1476311, 46.5312975 ], + [ 7.1474362, 46.5314855 ], + [ 7.1472658, 46.5316739 ], + [ 7.1471117, 46.5318513 ], + [ 7.1470671, 46.5319462 ], + [ 7.1470623, 46.5320868 ], + [ 7.1470467, 46.5322723 ], + [ 7.1470544, 46.5324922 ], + [ 7.1469968999999995, 46.5327332 ], + [ 7.1469267, 46.53307 ], + [ 7.146909, 46.5333174 ], + [ 7.146877, 46.5335139 ], + [ 7.1469379, 46.5338529 ], + [ 7.1469131, 46.5340777 ], + [ 7.1468666, 46.534229 ], + [ 7.1467896, 46.534312 ], + [ 7.1466728, 46.5343662 ], + [ 7.1464338, 46.5344236 ], + [ 7.1461206, 46.5344855 ], + [ 7.1458155, 46.5345701 ], + [ 7.1455818, 46.534684 ], + [ 7.1454378, 46.5348108 ], + [ 7.1452883, 46.5348813 ], + [ 7.1450584, 46.5348997 ], + [ 7.1448664, 46.5350032 ], + [ 7.1446709, 46.5349994 ], + [ 7.1444229, 46.5350681 ], + [ 7.1442274, 46.5350532 ], + [ 7.1439866, 46.5351502 ], + [ 7.1438093, 46.5350907 ], + [ 7.1436465, 46.5350707 ], + [ 7.1434981, 46.5350849 ], + [ 7.1433386, 46.5351946 ], + [ 7.1432768, 46.535323 ], + [ 7.1431436999999995, 46.5353825 ], + [ 7.1429311, 46.5353786 ], + [ 7.1427572, 46.5354373 ], + [ 7.1423454, 46.5355199 ], + [ 7.1420067, 46.535615 ], + [ 7.1416347, 46.5357207 ], + [ 7.1413793, 46.535789199999996 ], + [ 7.1411384, 46.5358862 ], + [ 7.140911, 46.5360453 ], + [ 7.1406437, 46.5362037 ], + [ 7.1404651, 46.5363863 ], + [ 7.1403171, 46.5366313 ], + [ 7.1402027, 46.5368488 ], + [ 7.1401741, 46.5371581 ], + [ 7.1401104, 46.5373258 ], + [ 7.1400017, 46.5373858 ], + [ 7.1398403, 46.5375462 ], + [ 7.1397531, 46.5377078 ], + [ 7.1397924, 46.5379563 ], + [ 7.1398428, 46.5381262 ], + [ 7.1398371, 46.5382782 ], + [ 7.1398558, 46.5384306 ], + [ 7.1398563, 46.538639 ], + [ 7.1398975, 46.5388425 ], + [ 7.1399561, 46.5390125 ], + [ 7.1400868, 46.5392402 ], + [ 7.1402908, 46.5394748 ], + [ 7.1404787, 46.5396754 ], + [ 7.1407091, 46.5398543 ], + [ 7.1410037, 46.5400738 ], + [ 7.1412983, 46.5402762 ], + [ 7.141546, 46.5404273 ], + [ 7.1417611, 46.5405777 ], + [ 7.1420294, 46.5408192 ], + [ 7.142427, 46.5411305 ], + [ 7.1428706, 46.5414935 ], + [ 7.1431816, 46.541702 ], + [ 7.1434609, 46.5418817 ], + [ 7.1439553, 46.5422119 ], + [ 7.144315, 46.5424381 ], + [ 7.1445474, 46.5425494 ], + [ 7.1447817, 46.5426269 ], + [ 7.145072, 46.5427336 ], + [ 7.1454562, 46.5429491 ], + [ 7.1460004, 46.5432632 ], + [ 7.1464418, 46.5434684 ], + [ 7.1468269, 46.5436783 ], + [ 7.147042, 46.5438231 ], + [ 7.1472409, 46.5439675 ], + [ 7.1473981, 46.5441224 ], + [ 7.1475361, 46.544367199999996 ], + [ 7.1522908, 46.5531215 ], + [ 7.1521111, 46.553338 ], + [ 7.151958, 46.5534815 ], + [ 7.151784, 46.5535459 ], + [ 7.1516853, 46.5535723 ], + [ 7.1516326, 46.5536727 ], + [ 7.1515455, 46.553795 ], + [ 7.1514004, 46.5539612 ], + [ 7.151317, 46.5540161 ], + [ 7.1512644, 46.554094 ], + [ 7.1511945, 46.5542165 ], + [ 7.1511092, 46.5543164 ], + [ 7.1510177, 46.5543597 ], + [ 7.1508817, 46.5544811 ], + [ 7.1507375, 46.5546305 ], + [ 7.1506077, 46.5548141 ], + [ 7.1503802, 46.554990000000004 ], + [ 7.1502044, 46.5550995 ], + [ 7.1500215, 46.5551693 ], + [ 7.1499199, 46.5552576 ], + [ 7.1497738, 46.5554464 ], + [ 7.1494946, 46.5556946 ], + [ 7.1491085, 46.5559635 ], + [ 7.1489825, 46.5560569 ], + [ 7.1488953, 46.5562018 ], + [ 7.1488001, 46.5563239 ], + [ 7.1487565, 46.5563907 ], + [ 7.1487354, 46.5565255 ], + [ 7.148679, 46.5567159 ], + [ 7.1486622, 46.5569522 ], + [ 7.1486772, 46.5572001 ], + [ 7.1486797, 46.5573467 ], + [ 7.1486135, 46.5573736 ], + [ 7.1485321, 46.5573552 ], + [ 7.1484036, 46.5573078 ], + [ 7.1482958, 46.5573452 ], + [ 7.1482921, 46.557424 ], + [ 7.1483199, 46.5575597 ], + [ 7.1483784, 46.5577353 ], + [ 7.1484388, 46.5578829 ], + [ 7.1484043, 46.5579217 ], + [ 7.1483607, 46.557994 ], + [ 7.1483579, 46.5580729 ], + [ 7.1483622, 46.5581687 ], + [ 7.1483757, 46.5582365 ], + [ 7.1483493, 46.5583036 ], + [ 7.1482976, 46.5583703 ], + [ 7.1482459, 46.5584425 ], + [ 7.1481841, 46.5585483 ], + [ 7.1481802, 46.5586665 ], + [ 7.1482172, 46.5587631 ], + [ 7.1482623, 46.5588596 ], + [ 7.1483337, 46.5589229 ], + [ 7.148387, 46.5590196 ], + [ 7.1484076, 46.5591381 ], + [ 7.1484028, 46.5592619 ], + [ 7.1484116, 46.5594537 ], + [ 7.148403, 46.5596787 ], + [ 7.1484352, 46.5599046 ], + [ 7.1484864, 46.5600802 ], + [ 7.1485695, 46.5602506 ], + [ 7.1486289, 46.5604095 ], + [ 7.1486855, 46.5606526 ], + [ 7.1486862, 46.5612833 ], + [ 7.1488027, 46.5614375 ], + [ 7.148912, 46.5615803 ], + [ 7.1489389, 46.5617385 ], + [ 7.1488825, 46.5619233 ], + [ 7.1488432, 46.5620972 ], + [ 7.1488855000000004, 46.562267 ], + [ 7.1489522, 46.5624483 ], + [ 7.1490279, 46.5626187 ], + [ 7.149128, 46.5627895 ], + [ 7.1492518, 46.5629663 ], + [ 7.1493041, 46.563091299999996 ], + [ 7.1493419, 46.563182 ], + [ 7.1493444, 46.5633341 ], + [ 7.1493459, 46.5635087 ], + [ 7.1494715, 46.5636518 ], + [ 7.1497265, 46.5638255 ], + [ 7.1500811, 46.5639727 ], + [ 7.1504267, 46.5641312 ], + [ 7.1507642, 46.5642782 ], + [ 7.1511415, 46.5644652 ], + [ 7.1517113, 46.564763 ], + [ 7.1518469, 46.5648611 ], + [ 7.1520215, 46.5649939 ], + [ 7.1522132, 46.5651213 ], + [ 7.152346, 46.5652814 ], + [ 7.152486, 46.5654698 ], + [ 7.1525863, 46.5656293 ], + [ 7.1526476, 46.5657487 ], + [ 7.1527152, 46.5659077 ], + [ 7.1527503, 46.5660491 ], + [ 7.1528975, 46.5662658 ], + [ 7.1530141, 46.5664313 ], + [ 7.153155, 46.5666085 ], + [ 7.1532155, 46.5667278 ], + [ 7.1532198, 46.5668293 ], + [ 7.1531906, 46.5669583 ], + [ 7.1531849, 46.5671046 ], + [ 7.1532118, 46.5672627 ], + [ 7.153265, 46.5673763 ], + [ 7.1533653, 46.5675358 ], + [ 7.1534655, 46.5676954 ], + [ 7.1535313, 46.567887999999996 ], + [ 7.1536233, 46.5680644 ], + [ 7.1537255, 46.5681619 ], + [ 7.153853, 46.56826 ], + [ 7.1539696, 46.5684086 ], + [ 7.1541303, 46.5687043 ], + [ 7.1542693, 46.5689379 ], + [ 7.1544338, 46.5691154 ], + [ 7.1546155, 46.5692877 ], + [ 7.1548605, 46.5695118 ], + [ 7.1549627, 46.5696264 ], + [ 7.1550159, 46.5697399 ], + [ 7.1550917, 46.5698989 ], + [ 7.1550932, 46.5700793 ], + [ 7.15511, 46.5702879 ], + [ 7.1551577, 46.5705253 ], + [ 7.1552814, 46.5707191 ], + [ 7.1554396, 46.5708571 ], + [ 7.1556721, 46.5709966 ], + [ 7.1559046, 46.5711078 ], + [ 7.156186, 46.5712424 ], + [ 7.1563107, 46.5714136 ], + [ 7.1563629, 46.5715498 ], + [ 7.1564777, 46.5717434 ], + [ 7.1566287, 46.5718587 ], + [ 7.1568439999999995, 46.5720147 ], + [ 7.1570285, 46.5721251 ], + [ 7.1572021, 46.5722916 ], + [ 7.1573014, 46.5724624 ], + [ 7.1573302, 46.5725812 ], + [ 7.1572857, 46.5726761 ], + [ 7.1571903, 46.5728152 ], + [ 7.1572869, 46.5730648 ], + [ 7.1574231, 46.57336 ], + [ 7.1575268, 46.5736379 ], + [ 7.1575925, 46.5738699 ], + [ 7.1576319999999996, 46.5741073 ], + [ 7.1576805, 46.5743503 ], + [ 7.157767, 46.5746447 ], + [ 7.1578552, 46.574928 ], + [ 7.1579037, 46.5751597 ], + [ 7.157927, 46.575391 ], + [ 7.1579338, 46.5756446 ], + [ 7.1579416, 46.5758757 ], + [ 7.1579303, 46.5761739 ], + [ 7.1579361, 46.5764556 ], + [ 7.1579947, 46.5766369 ], + [ 7.1581674, 46.5768316 ], + [ 7.1584325, 46.5769659 ], + [ 7.1586967, 46.5771059 ], + [ 7.1590587, 46.5772702 ], + [ 7.1595021, 46.5774585 ], + [ 7.1598722, 46.5776229 ], + [ 7.1602079, 46.5778205 ], + [ 7.1604241, 46.577954 ], + [ 7.1605887, 46.5781429 ], + [ 7.1607169, 46.5784268 ], + [ 7.1609029, 46.5787118 ], + [ 7.1610646, 46.578985 ], + [ 7.1612435, 46.5792304 ], + [ 7.1614896, 46.5794208 ], + [ 7.1617058, 46.5795486 ], + [ 7.1619547, 46.5796714 ], + [ 7.1621394, 46.5797593 ], + [ 7.162303, 46.5799763 ], + [ 7.1624175, 46.5802093 ], + [ 7.1625827, 46.5805952 ], + [ 7.162631, 46.580399 ], + [ 7.1626549, 46.580191 ], + [ 7.1627376, 46.5799617 ], + [ 7.1628031, 46.5797488 ], + [ 7.1629114, 46.5794636 ], + [ 7.163024, 46.5792967 ], + [ 7.1631474, 46.5790793 ], + [ 7.1633026, 46.5788569 ], + [ 7.1634406, 46.5786623 ], + [ 7.1636383, 46.5784237 ], + [ 7.163828, 46.5781624 ], + [ 7.1640086, 46.5779236 ], + [ 7.1642327, 46.5776235 ], + [ 7.1644795, 46.577369 ], + [ 7.1646835, 46.5771643 ], + [ 7.1647392, 46.5771178 ], + [ 7.1649508, 46.5770264 ], + [ 7.1651214, 46.5769964 ], + [ 7.165276, 46.576898 ], + [ 7.1653865, 46.5768072 ], + [ 7.1655525, 46.5767087 ], + [ 7.1657073, 46.5765763 ], + [ 7.1659609, 46.5765693 ], + [ 7.1660558, 46.5765043 ], + [ 7.1661753, 46.5764131 ], + [ 7.1662704999999995, 46.5763005 ], + [ 7.1663648, 46.5761829 ], + [ 7.166495, 46.5760847 ], + [ 7.1666013, 46.5760209 ], + [ 7.1666846, 46.5759862 ], + [ 7.1667899, 46.5759713 ], + [ 7.1668806, 46.5759302 ], + [ 7.1669867, 46.575903 ], + [ 7.1670399, 46.5758665 ], + [ 7.167107, 46.5758209 ], + [ 7.1671464, 46.5757662 ], + [ 7.1671468, 46.5756839 ], + [ 7.1672003, 46.5755925 ], + [ 7.1672008, 46.5754828 ], + [ 7.167255, 46.5754189 ], + [ 7.1673213, 46.5753551 ], + [ 7.1674277, 46.575273 ], + [ 7.1675209, 46.5752275 ], + [ 7.1676003999999995, 46.5751362 ], + [ 7.1676938, 46.5750632 ], + [ 7.1678141, 46.5749721 ], + [ 7.1679464, 46.5749268 ], + [ 7.1680795, 46.5748813 ], + [ 7.1681456, 46.5748631 ], + [ 7.1681857, 46.5748358 ], + [ 7.168239, 46.574781 ], + [ 7.1683063, 46.5746989 ], + [ 7.1683987, 46.5746351 ], + [ 7.1685451, 46.5745532 ], + [ 7.1687312, 46.5744987 ], + [ 7.1688774, 46.5744533 ], + [ 7.1690367, 46.5743898 ], + [ 7.169236, 46.574317 ], + [ 7.1693953, 46.5742534 ], + [ 7.1696086, 46.5741533 ], + [ 7.169768, 46.5740622 ], + [ 7.1699275, 46.5739621 ], + [ 7.170087, 46.5738618 ], + [ 7.1702204, 46.5737523 ], + [ 7.1703229, 46.5736365 ], + [ 7.1704524, 46.5735023 ], + [ 7.1705639, 46.573389399999996 ], + [ 7.1706605, 46.5733053 ], + [ 7.1707801, 46.5731867 ], + [ 7.1709266, 46.5730681 ], + [ 7.1709932, 46.5729676 ], + [ 7.1711008, 46.5727941 ], + [ 7.1712854, 46.572569 ], + [ 7.1713934, 46.5724931 ], + [ 7.1715537, 46.5723837 ], + [ 7.1716993, 46.5722827 ], + [ 7.171931, 46.5720967 ], + [ 7.1720856, 46.5719916 ], + [ 7.172259, 46.5718641 ], + [ 7.1724315, 46.5717822 ], + [ 7.1726015, 46.571698 ], + [ 7.1727507, 46.5716823 ], + [ 7.1728567, 46.5716917 ], + [ 7.1728665, 46.5716917 ], + [ 7.1728892, 46.5717157 ], + [ 7.1730133, 46.571684 ], + [ 7.173236, 46.5716375 ], + [ 7.1735667, 46.5715421 ], + [ 7.1738873, 46.5714972 ], + [ 7.1737638, 46.5710838 ], + [ 7.1740744, 46.5710838 ], + [ 7.1740374, 46.5709818 ], + [ 7.1743643, 46.5709878 ], + [ 7.1746514, 46.5709648 ], + [ 7.1748578, 46.5709234 ], + [ 7.1749685, 46.5708072 ], + [ 7.1751189, 46.5707254 ], + [ 7.1754142, 46.5706858 ], + [ 7.1756931, 46.5706739 ], + [ 7.175846, 46.570733 ], + [ 7.1759889, 46.5708482 ], + [ 7.1761418, 46.5709354 ], + [ 7.1763572, 46.5710689 ], + [ 7.1764838, 46.5711782 ], + [ 7.1766531, 46.5712433 ], + [ 7.1768721, 46.5713091 ], + [ 7.1770821, 46.5713636 ], + [ 7.1772686, 46.5714177 ], + [ 7.1774685, 46.5715452 ], + [ 7.1776206, 46.5716268 ], + [ 7.1778123, 46.5717654 ], + [ 7.1781988, 46.5719188 ], + [ 7.1785455, 46.5720546 ], + [ 7.1790125, 46.5722489 ], + [ 7.1794071, 46.5724194 ], + [ 7.1798026, 46.572573 ], + [ 7.1800586, 46.5727296 ], + [ 7.1803628, 46.5728928 ], + [ 7.1806567, 46.5731346 ], + [ 7.1809761, 46.5733545 ], + [ 7.1812223, 46.5735334 ], + [ 7.1814702, 46.5736843 ], + [ 7.1816927, 46.5738686 ], + [ 7.1819244, 46.5740136 ], + [ 7.1820428, 46.5741396 ], + [ 7.1821269, 46.5742819 ], + [ 7.1822038, 46.5744184 ], + [ 7.1822696, 46.5746336 ], + [ 7.1823128, 46.5748034 ], + [ 7.1823806, 46.5749566 ], + [ 7.1825371, 46.5751341 ], + [ 7.182775, 46.5753354 ], + [ 7.1830518, 46.5755995 ], + [ 7.1832978, 46.5758123 ], + [ 7.1835584, 46.576048 ], + [ 7.1837675, 46.5761418 ], + [ 7.1839358, 46.5762462 ], + [ 7.1841041, 46.5763393 ], + [ 7.184295, 46.5764948 ], + [ 7.1845809, 46.5767084 ], + [ 7.1850459, 46.5771786 ], + [ 7.1854412, 46.5775574 ], + [ 7.1856268, 46.5776282 ], + [ 7.1857544, 46.5777207 ], + [ 7.1858638, 46.5778635 ], + [ 7.1860275, 46.5780748 ], + [ 7.1861595, 46.5782631 ], + [ 7.1862435, 46.5784278 ], + [ 7.1862777, 46.5786087 ], + [ 7.1862568, 46.5787153 ], + [ 7.1862358, 46.57885 ], + [ 7.1861497, 46.5789612 ], + [ 7.1860109, 46.5791839 ], + [ 7.1858793, 46.5794125 ], + [ 7.1858166, 46.579569 ], + [ 7.1857613, 46.57972 ], + [ 7.1857547, 46.5799002 ], + [ 7.1858469, 46.5800595 ], + [ 7.1859463, 46.5802527 ], + [ 7.186062, 46.580452 ], + [ 7.1861217, 46.5805882 ], + [ 7.1861423, 46.5807069 ], + [ 7.1860978, 46.5808074 ], + [ 7.1858184, 46.581281 ], + [ 7.1857059, 46.5814424 ], + [ 7.185579, 46.5815583 ], + [ 7.1853969, 46.5816113 ], + [ 7.1851406, 46.5816687 ], + [ 7.1848543, 46.5816804 ], + [ 7.1844623, 46.5816452 ], + [ 7.1840638, 46.5815985 ], + [ 7.1837133, 46.5815585 ], + [ 7.1835413, 46.5815666 ], + [ 7.1832188, 46.5816509 ], + [ 7.1829298, 46.581719 ], + [ 7.1826164, 46.5817808 ], + [ 7.1824333, 46.5818789 ], + [ 7.1821995, 46.5820042 ], + [ 7.1819005, 46.5821058 ], + [ 7.1817745, 46.5821993 ], + [ 7.1817463, 46.5822945 ], + [ 7.1818657, 46.5823924 ], + [ 7.1820024, 46.5824568 ], + [ 7.1821943, 46.5825672 ], + [ 7.1824523, 46.5826732 ], + [ 7.1827257, 46.5827966 ], + [ 7.1829683, 46.5828854 ], + [ 7.1832516, 46.582975 ], + [ 7.1835695, 46.5830089 ], + [ 7.183852, 46.5830983 ], + [ 7.1841273, 46.5831822 ], + [ 7.1843717, 46.5832148 ], + [ 7.1847847, 46.583318 ], + [ 7.1850436, 46.5833959 ], + [ 7.1852781, 46.5834677 ], + [ 7.1855035, 46.5835787 ], + [ 7.1856737, 46.5836212 ], + [ 7.1859028, 46.5836254 ], + [ 7.1862025, 46.5837095 ], + [ 7.186428, 46.5837925 ], + [ 7.1867847, 46.583889 ], + [ 7.1880531, 46.5843285 ], + [ 7.1884651999999996, 46.5844543 ], + [ 7.1886362, 46.5844912 ], + [ 7.1888808, 46.5845011 ], + [ 7.1891271, 46.5844888 ], + [ 7.1895212, 46.5844564 ], + [ 7.1898735, 46.5844458 ], + [ 7.1902394, 46.5844919 ], + [ 7.1906867, 46.5845675 ], + [ 7.1910526, 46.5846303 ], + [ 7.1913532, 46.5846865 ], + [ 7.1916231, 46.5847025 ], + [ 7.1920406, 46.5846875 ], + [ 7.1924437, 46.5846384 ], + [ 7.1927706, 46.5846499 ], + [ 7.1931084, 46.5847968 ], + [ 7.1933946, 46.5848019 ], + [ 7.1939506, 46.5848176 ], + [ 7.1945883, 46.584829 ], + [ 7.1950366, 46.5848652 ], + [ 7.195607, 46.5849486 ], + [ 7.1961052, 46.5849688 ], + [ 7.1964294, 46.5850366 ], + [ 7.1967265, 46.58498 ], + [ 7.1969819, 46.5849395 ], + [ 7.1971024, 46.5849923 ], + [ 7.1973739, 46.5851718 ], + [ 7.1976283, 46.5853623 ], + [ 7.1977876, 46.5854946 ], + [ 7.1979016, 46.5855135 ], + [ 7.1982731, 46.5854189 ], + [ 7.198349, 46.5855778 ], + [ 7.1984494, 46.5857486 ], + [ 7.1985172, 46.5858963 ], + [ 7.1986321, 46.5861179 ], + [ 7.1987488, 46.5862777 ], + [ 7.198784, 46.5864191 ], + [ 7.198763, 46.5865539 ], + [ 7.1987322, 46.5867111 ], + [ 7.1987791, 46.5867851 ], + [ 7.1988569, 46.5868992 ], + [ 7.1988758, 46.5870459 ], + [ 7.1988549, 46.5871751 ], + [ 7.1988005, 46.5873036 ], + [ 7.1987469, 46.587437800000004 ], + [ 7.1987576, 46.5875901 ], + [ 7.1988798, 46.5878174 ], + [ 7.1989855, 46.5880672 ], + [ 7.1990496, 46.5883217 ], + [ 7.1990205, 46.588445 ], + [ 7.198918, 46.5885615 ], + [ 7.1987404, 46.588716 ], + [ 7.1986379, 46.5888381 ], + [ 7.1986215, 46.5890406 ], + [ 7.1986041, 46.5892881 ], + [ 7.1985259, 46.589647 ], + [ 7.1985647, 46.5897096 ], + [ 7.1986589, 46.5898015 ], + [ 7.1987521, 46.5899327 ], + [ 7.1988126, 46.5900802 ], + [ 7.1988407, 46.5901989 ], + [ 7.198836, 46.5903227 ], + [ 7.1988386, 46.5904692 ], + [ 7.1988502, 46.5906102 ], + [ 7.1988936, 46.5907743 ], + [ 7.1989677, 46.5909784 ], + [ 7.1990798, 46.5912564 ], + [ 7.1990941, 46.5915381 ], + [ 7.1991029, 46.5917411 ], + [ 7.1991282, 46.5919386 ], + [ 7.1992041, 46.592092 ], + [ 7.1992584, 46.5921776 ], + [ 7.1992556, 46.5922675 ], + [ 7.1992093, 46.5924019 ], + [ 7.1991548, 46.5925529 ], + [ 7.1991655, 46.5927051 ], + [ 7.199228, 46.5927907 ], + [ 7.1993302, 46.5929052 ], + [ 7.1994479, 46.5930425 ], + [ 7.1995166, 46.5931676 ], + [ 7.1995193, 46.5933084 ], + [ 7.1995146, 46.5934379 ], + [ 7.1995561, 46.5936414 ], + [ 7.1996058, 46.5938506 ], + [ 7.1997858, 46.5940847 ], + [ 7.199927, 46.594245 ], + [ 7.1999948, 46.5944039 ], + [ 7.2000281, 46.5946129 ], + [ 7.2000805, 46.5949573 ], + [ 7.2001925, 46.5952634 ], + [ 7.2003373, 46.5955363 ], + [ 7.2005355, 46.5957201 ], + [ 7.2007654, 46.5959213 ], + [ 7.2010262, 46.5961569 ], + [ 7.2013113, 46.596421 ], + [ 7.2015647, 46.596662 ], + [ 7.2016725, 46.5968274 ], + [ 7.2017003, 46.5969798 ], + [ 7.2017772, 46.5971108 ], + [ 7.2018623, 46.5972362 ], + [ 7.2018976, 46.5973832 ], + [ 7.2019002, 46.5975353 ], + [ 7.2018864, 46.5976984 ], + [ 7.2018247, 46.5978211 ], + [ 7.2017521, 46.5980113 ], + [ 7.2017039, 46.598213200000004 ], + [ 7.2016476, 46.5984037 ], + [ 7.2016394, 46.598612 ], + [ 7.2016482, 46.5988262 ], + [ 7.2016144, 46.5990846 ], + [ 7.201598, 46.5992982 ], + [ 7.2015743, 46.5995005 ], + [ 7.2014365, 46.5996783 ], + [ 7.2012506, 46.5998327 ], + [ 7.2011626, 46.6 ], + [ 7.2011335, 46.6001234 ], + [ 7.2011605, 46.6002928 ], + [ 7.2011766999999995, 46.6005016 ], + [ 7.2013015, 46.600684 ], + [ 7.2014581, 46.6008727 ], + [ 7.2017361, 46.6010859 ], + [ 7.2018954, 46.6012127 ], + [ 7.201957, 46.6013096 ], + [ 7.2019858, 46.6014339 ], + [ 7.2020618, 46.6015874 ], + [ 7.2022683, 46.6017544 ], + [ 7.2024991, 46.6019387 ], + [ 7.2027971, 46.6020623 ], + [ 7.203137, 46.6019501 ], + [ 7.2034451, 46.6018035 ], + [ 7.2037932, 46.6016802 ], + [ 7.2041909, 46.6015578 ], + [ 7.2048018, 46.6014054 ], + [ 7.2058746, 46.6011767 ], + [ 7.2090622, 46.6006365 ], + [ 7.2105182, 46.600426 ], + [ 7.2110456, 46.6003284 ], + [ 7.2114008, 46.600239 ], + [ 7.2118819, 46.600073 ], + [ 7.2123549, 46.5999012 ], + [ 7.212838, 46.5996675 ], + [ 7.2134043, 46.5994074 ], + [ 7.2138964, 46.5991458 ], + [ 7.2141719, 46.5990042 ], + [ 7.214538, 46.5988418 ], + [ 7.2148859, 46.5987353 ], + [ 7.2152574, 46.5986461 ], + [ 7.2156289, 46.5985514 ], + [ 7.2159587, 46.5984897 ], + [ 7.2163447, 46.5984458 ], + [ 7.2169843, 46.5984065 ], + [ 7.2180497, 46.5983634 ], + [ 7.2192873, 46.5983179 ], + [ 7.2209605, 46.5982292 ], + [ 7.2216237, 46.5982184 ], + [ 7.2220585, 46.5981923 ], + [ 7.2225097, 46.5981721 ], + [ 7.222911, 46.5981511 ], + [ 7.2234121, 46.5980981 ], + [ 7.2238968, 46.5980502 ], + [ 7.2245037, 46.5980159 ], + [ 7.22507, 46.597964 ], + [ 7.2256371, 46.5979065 ], + [ 7.2262758, 46.5978895 ], + [ 7.2266444, 46.5979017 ], + [ 7.226986, 46.5979585 ], + [ 7.227304, 46.5979866 ], + [ 7.2276057, 46.5980144 ], + [ 7.2280215, 46.5980612 ], + [ 7.2284291, 46.5980965 ], + [ 7.2288612, 46.5981491 ], + [ 7.2291448, 46.5982162 ], + [ 7.2295271, 46.5982847 ], + [ 7.2299429, 46.5983429 ], + [ 7.2302518, 46.5983933 ], + [ 7.2306911, 46.5984686 ], + [ 7.2314766, 46.5986908 ], + [ 7.2321252, 46.5988544 ], + [ 7.2325555, 46.598952 ], + [ 7.2328391, 46.5990302 ], + [ 7.2330673, 46.5990624 ], + [ 7.2332404, 46.599026 ], + [ 7.2335276, 46.5990029 ], + [ 7.2338474, 46.5989859 ], + [ 7.2341002, 46.599013 ], + [ 7.2343203, 46.5990337 ], + [ 7.2346219, 46.599084 ], + [ 7.2383417, 46.599645 ], + [ 7.2382412, 46.5994743 ], + [ 7.2381035, 46.5992184 ], + [ 7.2379232, 46.5989956 ], + [ 7.2377104, 46.5987723 ], + [ 7.2375446, 46.5986004 ], + [ 7.2373544, 46.5984338 ], + [ 7.2373018, 46.5983034 ], + [ 7.2372584, 46.5981337 ], + [ 7.2372638, 46.597993 ], + [ 7.2372955, 46.5977964 ], + [ 7.2373246, 46.5976618 ], + [ 7.2373228, 46.5974983 ], + [ 7.2372630000000004, 46.5973397 ], + [ 7.2372277, 46.5971701 ], + [ 7.2372105, 46.5969784 ], + [ 7.2372087, 46.5968037 ], + [ 7.2372965, 46.5966475 ], + [ 7.237457, 46.5964984 ], + [ 7.2376436, 46.5963271 ], + [ 7.2377713, 46.5961941 ], + [ 7.2378157, 46.5960823 ], + [ 7.2378302, 46.5959193 ], + [ 7.2378122, 46.5957274 ], + [ 7.2378348, 46.5955701 ], + [ 7.2378004, 46.5953837 ], + [ 7.2377569, 46.5952365 ], + [ 7.2376809, 46.5950663 ], + [ 7.2376319, 46.5948458 ], + [ 7.2377026, 46.594695 ], + [ 7.237748, 46.5945663 ], + [ 7.2378187, 46.5944155 ], + [ 7.2378649, 46.5942754 ], + [ 7.2378286, 46.5941622 ], + [ 7.2378159, 46.5940549 ], + [ 7.2377607, 46.5939864 ], + [ 7.2377154, 46.5938899 ], + [ 7.2376628, 46.593765 ], + [ 7.2376583, 46.5936637 ], + [ 7.2376792, 46.5935289 ], + [ 7.2377, 46.5934166 ], + [ 7.2376312, 46.5932745 ], + [ 7.2375524, 46.5931999 ], + [ 7.2374573, 46.5931026 ], + [ 7.2373803, 46.592983 ], + [ 7.2373785, 46.5928027 ], + [ 7.2374338, 46.5926234 ], + [ 7.2375416, 46.592355 ], + [ 7.2376259, 46.5920637 ], + [ 7.2377065, 46.5916596 ], + [ 7.2377464, 46.5914633 ], + [ 7.2378089, 46.5913123 ], + [ 7.2379195, 46.5912016 ], + [ 7.2380056, 46.5910736 ], + [ 7.2380599, 46.5909282 ], + [ 7.2380989, 46.5907543 ], + [ 7.2381134, 46.5905742 ], + [ 7.238175, 46.5904627 ], + [ 7.238271, 46.5903068 ], + [ 7.2383679, 46.5901169 ], + [ 7.2383888, 46.5899765 ], + [ 7.2383707, 46.5898185 ], + [ 7.2383662, 46.5897002 ], + [ 7.2383861, 46.5896049 ], + [ 7.2384396, 46.5894875 ], + [ 7.2384948, 46.589325099999996 ], + [ 7.2385909, 46.5891466 ], + [ 7.2386516, 46.5890464 ], + [ 7.2386977, 46.5889176 ], + [ 7.2387603, 46.5887724 ], + [ 7.2388798, 46.5886392 ], + [ 7.2390401, 46.5885013 ], + [ 7.2391915000000004, 46.58838 ], + [ 7.2392785, 46.5882295 ], + [ 7.2394269, 46.5879899 ], + [ 7.2395837, 46.5877281 ], + [ 7.2398309, 46.5876761 ], + [ 7.2400538, 46.587618 ], + [ 7.2402368, 46.5875312 ], + [ 7.2404043, 46.5874383 ], + [ 7.2405982, 46.5872784 ], + [ 7.2408345, 46.5870798 ], + [ 7.2410285, 46.586903 ], + [ 7.2412141, 46.5867486 ], + [ 7.2413463, 46.5864975 ], + [ 7.2414841, 46.5862972 ], + [ 7.241696, 46.5860981 ], + [ 7.2419904, 46.5858725 ], + [ 7.2423109, 46.5856246 ], + [ 7.242935, 46.5851006 ], + [ 7.2430872, 46.584968 ], + [ 7.2431397, 46.5848676 ], + [ 7.2431533, 46.5847159 ], + [ 7.243214, 46.5846155 ], + [ 7.2433489, 46.5845221 ], + [ 7.2435799, 46.5844585 ], + [ 7.2437538, 46.5844165 ], + [ 7.243896, 46.5843177 ], + [ 7.2441052, 46.5841974 ], + [ 7.2442166, 46.5840418 ], + [ 7.244434, 46.5839161 ], + [ 7.2446088, 46.5838346 ], + [ 7.2447826, 46.5837869 ], + [ 7.2449973, 46.5837344 ], + [ 7.2452518, 46.5837163 ], + [ 7.2454628, 46.583765 ], + [ 7.2455661, 46.5838401 ], + [ 7.2456621, 46.583898 ], + [ 7.2457753, 46.5839508 ], + [ 7.2459048, 46.5839755 ], + [ 7.2460606, 46.5839727 ], + [ 7.24624, 46.5839758 ], + [ 7.2464374, 46.5839511 ], + [ 7.246643, 46.5839322 ], + [ 7.2467272, 46.5838716 ], + [ 7.246787, 46.5837938 ], + [ 7.2469047, 46.5837058 ], + [ 7.2470242, 46.5835727 ], + [ 7.2471836, 46.5834517 ], + [ 7.2473268, 46.5833358 ], + [ 7.2474698, 46.583237 ], + [ 7.2476455, 46.5831275 ], + [ 7.2478484, 46.5829508 ], + [ 7.2479507, 46.5828286 ], + [ 7.2479879, 46.5826998 ], + [ 7.2479607, 46.5825529 ], + [ 7.2479806, 46.5824575 ], + [ 7.2480648, 46.5823802 ], + [ 7.2481653, 46.5823144 ], + [ 7.2482595, 46.5822034 ], + [ 7.2483455, 46.5820979 ], + [ 7.2484405, 46.5819643 ], + [ 7.2485592, 46.5818369 ], + [ 7.2487204, 46.5816876 ], + [ 7.2488082, 46.5815259 ], + [ 7.248781, 46.5813677 ], + [ 7.2488028, 46.5812161 ], + [ 7.2488399, 46.5810929 ], + [ 7.2489259, 46.5809705 ], + [ 7.2490291, 46.5808427 ], + [ 7.2490744, 46.5807197 ], + [ 7.2490309, 46.5805556 ], + [ 7.2489313, 46.5803623 ], + [ 7.248914, 46.5801705 ], + [ 7.2488389, 46.5799835 ], + [ 7.2488289, 46.579803 ], + [ 7.2488596, 46.5796403 ], + [ 7.2488905, 46.5794493 ], + [ 7.248913, 46.5792921 ], + [ 7.2488949, 46.579106 ], + [ 7.2488532, 46.5789024 ], + [ 7.2488613, 46.5786886 ], + [ 7.2488939, 46.5784639 ], + [ 7.2488912, 46.5783118 ], + [ 7.2490506, 46.5782019 ], + [ 7.2491928, 46.5780974 ], + [ 7.2492389, 46.5779744 ], + [ 7.2492516, 46.5778451 ], + [ 7.2492634, 46.5777327 ], + [ 7.249324, 46.5776435 ], + [ 7.2494091, 46.577555 ], + [ 7.2494299, 46.5774371 ], + [ 7.24941, 46.5773016 ], + [ 7.2493909, 46.5771548 ], + [ 7.24942, 46.5770146 ], + [ 7.2494661, 46.5768857 ], + [ 7.2495259, 46.576808 ], + [ 7.2495548, 46.5766959 ], + [ 7.2495593, 46.5765664 ], + [ 7.2495638, 46.5764426 ], + [ 7.2494887, 46.5762442 ], + [ 7.2495349, 46.5760986 ], + [ 7.2496489, 46.5758978 ], + [ 7.2496914, 46.5756227 ], + [ 7.2495619, 46.575581 ], + [ 7.2494016, 46.5754937 ], + [ 7.2492341, 46.5753726 ], + [ 7.2492395, 46.5752317 ], + [ 7.2491815, 46.5750167 ], + [ 7.249052, 46.5747555 ], + [ 7.248812, 46.5743739 ], + [ 7.2485792, 46.574032 ], + [ 7.2482777, 46.5737508 ], + [ 7.2481183, 46.5736467 ], + [ 7.2479807, 46.5736048 ], + [ 7.2478512, 46.5735632 ], + [ 7.2477072, 46.5734762 ], + [ 7.2476049, 46.5733618 ], + [ 7.2474138, 46.5732176 ], + [ 7.2473295, 46.5730642 ], + [ 7.2471783, 46.5729432 ], + [ 7.2470334, 46.5728899 ], + [ 7.2468777, 46.572876 ], + [ 7.2467491, 46.5728231 ], + [ 7.2466531, 46.5727707 ], + [ 7.2465671, 46.5726621 ], + [ 7.2464964, 46.5725764 ], + [ 7.2463841, 46.5725182 ], + [ 7.2462782, 46.5724938 ], + [ 7.2462148, 46.5724476 ], + [ 7.2461351, 46.5723844 ], + [ 7.246022, 46.5723429 ], + [ 7.2458925, 46.5723012 ], + [ 7.2458626, 46.5722331 ], + [ 7.2458091, 46.5721308 ], + [ 7.2457231, 46.5720167 ], + [ 7.2455619, 46.5719519 ], + [ 7.2454406, 46.571916 ], + [ 7.2452939, 46.5718909 ], + [ 7.245159, 46.5717872 ], + [ 7.2450729, 46.5716787 ], + [ 7.2449951, 46.5715591 ], + [ 7.2448032, 46.5714262 ], + [ 7.244555, 46.5712866 ], + [ 7.2442753, 46.5711016 ], + [ 7.2440109, 46.5709449 ], + [ 7.2437546, 46.5707996 ], + [ 7.2434594, 46.5705861 ], + [ 7.2432701999999995, 46.5704026 ], + [ 7.2431035, 46.5702644 ], + [ 7.2429967, 46.5702627 ], + [ 7.2428184, 46.5702145 ], + [ 7.242429, 46.5699148 ], + [ 7.2423186, 46.569789 ], + [ 7.2421909, 46.5697023 ], + [ 7.2419727, 46.5696308 ], + [ 7.2418767, 46.5695729 ], + [ 7.2417499, 46.5694636 ], + [ 7.2416059, 46.5693766 ], + [ 7.2414204, 46.5692889 ], + [ 7.2412103, 46.5692289 ], + [ 7.2410093, 46.5691352 ], + [ 7.2408734, 46.5690484 ], + [ 7.2408436, 46.5689578 ], + [ 7.2407096, 46.5688259 ], + [ 7.2406073, 46.5687171 ], + [ 7.2403918, 46.5685725 ], + [ 7.2402153, 46.5684624 ], + [ 7.2399916, 46.5683233 ], + [ 7.2398739, 46.5681918 ], + [ 7.2396766, 46.5679856 ], + [ 7.2395116999999995, 46.5678024 ], + [ 7.239328, 46.5676809 ], + [ 7.2390781, 46.5675752 ], + [ 7.2387431, 46.567558 ], + [ 7.2384715, 46.5676039 ], + [ 7.2382333, 46.5676336 ], + [ 7.2380785, 46.5676139 ], + [ 7.2379092, 46.5675547 ], + [ 7.237691, 46.5674888 ], + [ 7.2373895, 46.5674498 ], + [ 7.236983, 46.5673695 ], + [ 7.2367802, 46.5673321 ], + [ 7.236514, 46.5672373 ], + [ 7.2362795, 46.56716 ], + [ 7.2361002, 46.56714 ], + [ 7.2359708, 46.5670927 ], + [ 7.2358503, 46.5670455 ], + [ 7.2357299, 46.5669757 ], + [ 7.2355769, 46.5669167 ], + [ 7.2353977, 46.5668967 ], + [ 7.2351188, 46.5669143 ], + [ 7.2349233, 46.5668828 ], + [ 7.2348191, 46.5668358 ], + [ 7.2347974, 46.5667566 ], + [ 7.2347196, 46.5666314 ], + [ 7.234601, 46.5665335 ], + [ 7.2343592, 46.5664335 ], + [ 7.2342053, 46.5663914 ], + [ 7.2341103, 46.5662941 ], + [ 7.2339817, 46.566241 ], + [ 7.2338605, 46.5661938 ], + [ 7.2336739, 46.5661624 ], + [ 7.2334865, 46.566131 ], + [ 7.233367, 46.5660556 ], + [ 7.233281, 46.5659415 ], + [ 7.2332285, 46.5658167 ], + [ 7.2331824, 46.5657202 ], + [ 7.2330538, 46.5656616 ], + [ 7.2329334, 46.5656087 ], + [ 7.2328284, 46.5655675 ], + [ 7.2327886, 46.5655217 ], + [ 7.2327171, 46.5654641 ], + [ 7.2326292, 46.5654232 ], + [ 7.232508, 46.565376 ], + [ 7.232412, 46.5653235 ], + [ 7.2323079, 46.5652486 ], + [ 7.2321866, 46.565207 ], + [ 7.2320571, 46.565171 ], + [ 7.2318932, 46.565185 ], + [ 7.2317864, 46.5652112 ], + [ 7.231628, 46.565276 ], + [ 7.2315148, 46.5652403 ], + [ 7.2313663, 46.5652715 ], + [ 7.2313075, 46.5653211 ], + [ 7.2311843, 46.565347 ], + [ 7.2311019, 46.5653625 ], + [ 7.2309942, 46.5653831 ], + [ 7.2308556, 46.565392 ], + [ 7.2307398, 46.5654124 ], + [ 7.2306727, 46.5654732 ], + [ 7.2306202, 46.5655623 ], + [ 7.2305205, 46.5656057 ], + [ 7.2304301, 46.565604 ], + [ 7.2303177, 46.5655626 ], + [ 7.2301457, 46.5655652 ], + [ 7.2300136, 46.5655968 ], + [ 7.2298144, 46.5656664 ], + [ 7.2296976, 46.5657376 ], + [ 7.2295491, 46.5657744 ], + [ 7.2293698, 46.5657543 ], + [ 7.2292476, 46.5657408 ], + [ 7.2291398, 46.5657784 ], + [ 7.2290312, 46.565844 ], + [ 7.2288591, 46.5658635 ], + [ 7.2287197, 46.5658555 ], + [ 7.2284236, 46.5659122 ], + [ 7.228142, 46.5660085 ], + [ 7.2278632, 46.5657953 ], + [ 7.2277436999999995, 46.5657087 ], + [ 7.2276369, 46.5657124 ], + [ 7.227521, 46.5657611 ], + [ 7.2274232, 46.5657481 ], + [ 7.22731, 46.565718 ], + [ 7.2272304, 46.565660199999996 ], + [ 7.227216, 46.5655924 ], + [ 7.2272513, 46.5655254 ], + [ 7.2273038, 46.5654419 ], + [ 7.227273, 46.5653963 ], + [ 7.2272088, 46.5653501 ], + [ 7.2270966, 46.5652806 ], + [ 7.2269843, 46.5652166 ], + [ 7.2268629, 46.5654172 ], + [ 7.2268185, 46.5652924 ], + [ 7.2266546, 46.5653065 ], + [ 7.2265742, 46.5652488 ], + [ 7.2265451, 46.5651694 ], + [ 7.2265225, 46.5651071 ], + [ 7.2264601, 46.5650327 ], + [ 7.2263542, 46.565008399999996 ], + [ 7.2261922, 46.564966 ], + [ 7.2260953, 46.5649249 ], + [ 7.2260166, 46.5648447 ], + [ 7.2259704, 46.5647707 ], + [ 7.2258337, 46.5647007 ], + [ 7.2255911, 46.5646176 ], + [ 7.225372, 46.5645912 ], + [ 7.2250769, 46.5645916 ], + [ 7.2247899, 46.5646147 ], + [ 7.2245263, 46.5646776 ], + [ 7.2243616, 46.5646972 ], + [ 7.2241914, 46.5646491 ], + [ 7.2240791, 46.5646077 ], + [ 7.2239506, 46.5645379 ], + [ 7.2239036, 46.5644695 ], + [ 7.2237759, 46.5643883 ], + [ 7.2236881, 46.5643305 ], + [ 7.223642, 46.5642509 ], + [ 7.2235053, 46.5641921 ], + [ 7.2232636, 46.564092 ], + [ 7.22303, 46.5639866 ], + [ 7.222877, 46.5639275 ], + [ 7.2222398, 46.5636685 ], + [ 7.221427, 46.5633105 ], + [ 7.221121, 46.56317 ], + [ 7.2209128, 46.5630536 ], + [ 7.220797, 46.562877 ], + [ 7.2207381999999996, 46.5626845 ], + [ 7.2207609999999995, 46.5625104 ], + [ 7.2208072, 46.5623703 ], + [ 7.2206705, 46.5623003 ], + [ 7.2204913, 46.5622747 ], + [ 7.2202405, 46.5622139 ], + [ 7.2199888, 46.56217 ], + [ 7.2197453, 46.562115 ], + [ 7.2194846, 46.5620823 ], + [ 7.2192067, 46.5620773 ], + [ 7.2188645, 46.562043 ], + [ 7.21862, 46.5620219 ], + [ 7.2183774, 46.56195 ], + [ 7.2181693, 46.561828 ], + [ 7.2179919, 46.5617516 ], + [ 7.2178136, 46.5616977 ], + [ 7.2176425, 46.5616835 ], + [ 7.2174071, 46.5616455 ], + [ 7.2171872, 46.5616078 ], + [ 7.2170595, 46.5615268 ], + [ 7.2168586, 46.5614387 ], + [ 7.2165907, 46.5613663 ], + [ 7.2163481, 46.5613001 ], + [ 7.2161453, 46.5612514 ], + [ 7.2159832999999995, 46.5612091 ], + [ 7.2158629, 46.561145 ], + [ 7.2157598, 46.5610531 ], + [ 7.2155588, 46.5609595 ], + [ 7.2153262, 46.5608483 ], + [ 7.2150673, 46.5607648 ], + [ 7.2147433, 46.5606803 ], + [ 7.2144781, 46.5605403 ], + [ 7.2141333, 46.5603541 ], + [ 7.2139505, 46.5602156 ], + [ 7.2138048, 46.5601681 ], + [ 7.2136762, 46.5601264 ], + [ 7.213563, 46.5600904 ], + [ 7.2133948, 46.5599748 ], + [ 7.2132663, 46.5599163 ], + [ 7.2131368, 46.5598858 ], + [ 7.2130317999999995, 46.5598389 ], + [ 7.2128717, 46.559746 ], + [ 7.2127178, 46.5597038 ], + [ 7.2124435, 46.5596144 ], + [ 7.2119928, 46.5594205 ], + [ 7.2115402, 46.5592717 ], + [ 7.2112732, 46.5591881 ], + [ 7.2111158, 46.5590163 ], + [ 7.2108996, 46.5588829 ], + [ 7.2106598, 46.5587324 ], + [ 7.2104597, 46.5586218 ], + [ 7.2103049, 46.5586133 ], + [ 7.2102008, 46.5585552 ], + [ 7.2102028, 46.5584819 ], + [ 7.2102218, 46.5584204 ], + [ 7.2100788, 46.5583108 ], + [ 7.2098707, 46.5581719 ], + [ 7.2096843, 46.5581292 ], + [ 7.2095303, 46.5581039 ], + [ 7.2093765, 46.5580675 ], + [ 7.2091575, 46.5580072 ], + [ 7.2090434, 46.5579882 ], + [ 7.2089673, 46.5580602 ], + [ 7.2088677, 46.5581147 ], + [ 7.2087527, 46.5581182 ], + [ 7.2086694, 46.5581618 ], + [ 7.2086105, 46.5582114 ], + [ 7.2085273, 46.5582437 ], + [ 7.2084051, 46.5582304 ], + [ 7.2082439, 46.5581655 ], + [ 7.2080033, 46.5580317 ], + [ 7.2077698, 46.5579262 ], + [ 7.2075363, 46.5578374 ], + [ 7.2075209, 46.5578034 ], + [ 7.2073689, 46.5577162 ], + [ 7.2071679, 46.5576283 ], + [ 7.2070404, 46.5575245 ], + [ 7.2068395, 46.5574308 ], + [ 7.2066385, 46.5573541 ], + [ 7.2065263999999996, 46.5572788 ], + [ 7.2063246, 46.557202 ], + [ 7.206034, 46.5571123 ], + [ 7.2059237, 46.5569921 ], + [ 7.2057889, 46.5568771 ], + [ 7.2056306, 46.5567334 ], + [ 7.2055039, 46.5566186 ], + [ 7.2053093, 46.5565756 ], + [ 7.2050812, 46.5565492 ], + [ 7.2044122, 46.5565146 ], + [ 7.2039778, 46.5565293 ], + [ 7.2037976, 46.5565374 ], + [ 7.2037062, 46.5565809 ], + [ 7.2035386, 46.5566848 ], + [ 7.2013913, 46.5579248 ], + [ 7.2013134, 46.558036 ], + [ 7.2013096, 46.5581486 ], + [ 7.2014638, 46.559058 ], + [ 7.2014971, 46.5592671 ], + [ 7.2014853, 46.5593625 ], + [ 7.2013847, 46.5594396 ], + [ 7.2012895, 46.5595731 ], + [ 7.2012072, 46.5595885 ], + [ 7.2010687, 46.5595747 ], + [ 7.2009454999999996, 46.5595895 ], + [ 7.2008713, 46.5596106 ], + [ 7.2007536, 46.5596817 ], + [ 7.2006692, 46.5597704 ], + [ 7.2006167, 46.5598595 ], + [ 7.200613, 46.5599438 ], + [ 7.2006093, 46.560062 ], + [ 7.2006047, 46.5601802 ], + [ 7.2005602, 46.5602808 ], + [ 7.2005004, 46.5603474 ], + [ 7.200456, 46.560448 ], + [ 7.2004757999999995, 46.5605609 ], + [ 7.2004875, 46.5606906 ], + [ 7.2004828, 46.5608201 ], + [ 7.2004628, 46.5609267 ], + [ 7.2004519, 46.5610054 ], + [ 7.200383, 46.5610886 ], + [ 7.2002834, 46.561132 ], + [ 7.2001096, 46.5611851 ], + [ 7.199952, 46.561233 ], + [ 7.1998098, 46.5613262 ], + [ 7.1997002, 46.5614086 ], + [ 7.1995689, 46.5614232 ], + [ 7.1993652, 46.5614139 ], + [ 7.1991615, 46.5613934 ], + [ 7.198908, 46.5613944 ], + [ 7.1987523, 46.561403 ], + [ 7.1986853, 46.5614356 ], + [ 7.1986336, 46.5615191 ], + [ 7.1986372, 46.5616262 ], + [ 7.1987566, 46.5617184 ], + [ 7.1989005, 46.561811 ], + [ 7.1989791, 46.5619025 ], + [ 7.199008, 46.5620045 ], + [ 7.1989862, 46.5621449 ], + [ 7.1989643, 46.5623021 ], + [ 7.1989986, 46.5624661 ], + [ 7.1990519, 46.5625797 ], + [ 7.1991948, 46.5627118 ], + [ 7.199355, 46.5627991 ], + [ 7.1994654, 46.5628969 ], + [ 7.1995197, 46.5629767 ], + [ 7.1995476, 46.5631066 ], + [ 7.1994715, 46.5631786 ], + [ 7.1993013, 46.5631473 ], + [ 7.1990995, 46.5630705 ], + [ 7.1987601, 46.562963 ], + [ 7.1984695, 46.5628622 ], + [ 7.1981129, 46.5627599 ], + [ 7.1976921, 46.5626398 ], + [ 7.1972486, 46.5624742 ], + [ 7.1968368, 46.562326 ], + [ 7.1964268, 46.5621385 ], + [ 7.1960548, 46.5620192 ], + [ 7.1958376, 46.5619251 ], + [ 7.1957273, 46.5618105 ], + [ 7.1955772, 46.5616558 ], + [ 7.1954116, 46.5614951 ], + [ 7.195294, 46.5613634 ], + [ 7.19521, 46.5612099 ], + [ 7.1950445, 46.5610267 ], + [ 7.1948925, 46.5609395 ], + [ 7.1947549, 46.5609088 ], + [ 7.1945829, 46.5609058 ], + [ 7.1944208, 46.5608748 ], + [ 7.1942833, 46.5608273 ], + [ 7.1941322, 46.5607118 ], + [ 7.1939956, 46.5606362 ], + [ 7.1938273, 46.5605431 ], + [ 7.1935522, 46.5604649 ], + [ 7.1933675, 46.5603828 ], + [ 7.1931666, 46.5602947 ], + [ 7.1929485, 46.5602176 ], + [ 7.1927711, 46.5601524 ], + [ 7.1925938, 46.560076 ], + [ 7.1924083, 46.560005 ], + [ 7.1922472, 46.5599347 ], + [ 7.19203, 46.5598462 ], + [ 7.1918427, 46.5598091 ], + [ 7.1916562, 46.5597719 ], + [ 7.1914534, 46.5597345 ], + [ 7.1912924, 46.559664 ], + [ 7.1910924, 46.5595478 ], + [ 7.190916, 46.5594432 ], + [ 7.1907061, 46.5593607 ], + [ 7.1904482, 46.5592603 ], + [ 7.190174, 46.5591653 ], + [ 7.1899568, 46.5590599 ], + [ 7.1897632, 46.558989 ], + [ 7.1896039, 46.5588902 ], + [ 7.1894103, 46.5588024 ], + [ 7.1892175, 46.55872 ], + [ 7.1890484, 46.5586381 ], + [ 7.1888963, 46.5585622 ], + [ 7.1886945, 46.5584798 ], + [ 7.188509, 46.5584144 ], + [ 7.1882583, 46.5583423 ], + [ 7.1880873, 46.5583054 ], + [ 7.1878854, 46.5582567 ], + [ 7.1877642, 46.5582152 ], + [ 7.1875724, 46.5580991 ], + [ 7.1873634, 46.5579939 ], + [ 7.1871236, 46.5578432 ], + [ 7.1869056, 46.5577604 ], + [ 7.1866658, 46.5576154 ], + [ 7.1864506, 46.5574651 ], + [ 7.1862344, 46.5573316 ], + [ 7.18601, 46.5572093 ], + [ 7.1857774, 46.5570981 ], + [ 7.1855848, 46.5569876 ], + [ 7.1853522, 46.5568707 ], + [ 7.1851595, 46.556771499999996 ], + [ 7.1848646, 46.5565748 ], + [ 7.1847624, 46.5564715 ], + [ 7.1846828, 46.5564082 ], + [ 7.1845933, 46.556384 ], + [ 7.1844901, 46.556309 ], + [ 7.184331, 46.5561879 ], + [ 7.1842216, 46.5560395 ], + [ 7.1840769, 46.5559748 ], + [ 7.183952, 46.5558262 ], + [ 7.1837919, 46.5557389 ], + [ 7.1835911, 46.5556282 ], + [ 7.1833586, 46.5555113 ], + [ 7.1831668, 46.5553952 ], + [ 7.1829009, 46.5552722 ], + [ 7.1826276, 46.5551602 ], + [ 7.1823769, 46.5550825 ], + [ 7.1821, 46.555038 ], + [ 7.1818963, 46.5550287 ], + [ 7.1817678, 46.5549757 ], + [ 7.1815969, 46.5549333 ], + [ 7.1813859, 46.5549013 ], + [ 7.1810836, 46.5548846 ], + [ 7.1808908, 46.5548079 ], + [ 7.1806259, 46.5546566 ], + [ 7.1803435, 46.5545727 ], + [ 7.180195, 46.5546094 ], + [ 7.1799407, 46.5546105 ], + [ 7.1797941, 46.5545965 ], + [ 7.1796085, 46.5545425 ], + [ 7.1794222, 46.5544828 ], + [ 7.179205, 46.5543945 ], + [ 7.1790448, 46.5543127 ], + [ 7.178893, 46.554203 ], + [ 7.1786958, 46.5540248 ], + [ 7.1785041, 46.5538918 ], + [ 7.1783458, 46.5537594 ], + [ 7.1781876, 46.5536157 ], + [ 7.1780284, 46.5534946 ], + [ 7.1778132, 46.5533443 ], + [ 7.1776305, 46.5532002 ], + [ 7.1774316, 46.5530446 ], + [ 7.1772162999999995, 46.5529055 ], + [ 7.1771088, 46.5527121 ], + [ 7.1769299, 46.5524667 ], + [ 7.1767356, 46.5522041 ], + [ 7.1766163, 46.5521006 ], + [ 7.1763947, 46.551922 ], + [ 7.1759398, 46.5516152 ], + [ 7.1755627, 46.5514112 ], + [ 7.1750579, 46.5511375 ], + [ 7.1746853, 46.5508322 ], + [ 7.180031, 46.5493577 ], + [ 7.1804683, 46.549253 ], + [ 7.1807735, 46.5491685 ], + [ 7.1810297, 46.5490942 ], + [ 7.1906847, 46.5450007 ], + [ 7.1910507, 46.5453441 ], + [ 7.1920487, 46.5466237 ], + [ 7.1933941, 46.5460689 ], + [ 7.1937211, 46.5458447 ], + [ 7.1943353, 46.5455312 ], + [ 7.1958126, 46.5446348 ], + [ 7.1978385, 46.5434877 ], + [ 7.200806, 46.5416498 ], + [ 7.2009831, 46.5399231 ], + [ 7.2040213, 46.5367539 ], + [ 7.2065461, 46.5346722 ], + [ 7.2078155, 46.5335053 ], + [ 7.2088355, 46.5327428 ], + [ 7.2088299, 46.5327108 ], + [ 7.2086817, 46.5325111 ], + [ 7.2084061, 46.5321902 ], + [ 7.208066, 46.5318931 ], + [ 7.2077549, 46.531691 ], + [ 7.2075245, 46.5316508 ], + [ 7.2073111, 46.5316326 ], + [ 7.2071933, 46.5315619 ], + [ 7.2069903, 46.5314084 ], + [ 7.2068355, 46.5312314 ], + [ 7.2066584, 46.5311111 ], + [ 7.2064569, 46.530997 ], + [ 7.2062332, 46.5309227 ], + [ 7.2060405, 46.5308197 ], + [ 7.2058961, 46.5306876 ], + [ 7.2056242, 46.530462299999996 ], + [ 7.2051812, 46.530049 ], + [ 7.2048915000000004, 46.5297846 ], + [ 7.2048115, 46.5296343 ], + [ 7.2048062999999996, 46.5295217 ], + [ 7.2048248, 46.5293805 ], + [ 7.2048678, 46.5292445 ], + [ 7.2048619, 46.5291094 ], + [ 7.204796, 46.5289024 ], + [ 7.2047137, 46.5287014 ], + [ 7.2045656, 46.528496 ], + [ 7.2043885, 46.5283757 ], + [ 7.204147, 46.5282738 ], + [ 7.2039159, 46.5282165 ], + [ 7.2035544, 46.5281789 ], + [ 7.2032269, 46.5281801 ], + [ 7.2031269, 46.5281371 ], + [ 7.2029751, 46.5280276 ], + [ 7.2027321, 46.5278917 ], + [ 7.2025387, 46.5277719 ], + [ 7.2023121, 46.5276358 ], + [ 7.2021602, 46.5275262 ], + [ 7.2020084, 46.5274111 ], + [ 7.201878, 46.5272392 ], + [ 7.2018129, 46.527049 ], + [ 7.2017942999999995, 46.5268241 ], + [ 7.2018358, 46.526643 ], + [ 7.2018107, 46.5264408 ], + [ 7.2017684, 46.5262277 ], + [ 7.2016455, 46.526033 ], + [ 7.2014884, 46.5258054 ], + [ 7.20143, 46.5255756 ], + [ 7.2013618, 46.5253292 ], + [ 7.2012004, 46.5251806 ], + [ 7.201047, 46.525043 ], + [ 7.2008388, 46.5249683 ], + [ 7.2006626, 46.524848 ], + [ 7.2003752, 46.5246344 ], + [ 7.2000693, 46.5243647 ], + [ 7.1996404, 46.5241032 ], + [ 7.1992419, 46.5237791 ], + [ 7.1989205, 46.5235323 ], + [ 7.1986975, 46.5232947 ], + [ 7.1984598, 46.5230856 ], + [ 7.1982946, 46.5228636 ], + [ 7.1981576, 46.5225341 ], + [ 7.1979725, 46.5222225 ], + [ 7.1977948, 46.521894 ], + [ 7.1975282, 46.521584 ], + [ 7.1972142, 46.5213202 ], + [ 7.1967432, 46.5210089 ], + [ 7.1964765, 46.5207102 ], + [ 7.1962543, 46.5204951 ], + [ 7.1959455, 46.5201636 ], + [ 7.1957085, 46.5199713 ], + [ 7.1953301, 46.5197313 ], + [ 7.1950383, 46.5196021 ], + [ 7.1947028, 46.5194063 ], + [ 7.1945147, 46.5192186 ], + [ 7.1942651, 46.5189309 ], + [ 7.1941178, 46.5187312 ], + [ 7.1938905, 46.5185726 ], + [ 7.1935898, 46.5184266 ], + [ 7.1929981, 46.5181629 ], + [ 7.1924641, 46.5179204 ], + [ 7.1921034, 46.5177193 ], + [ 7.1913429, 46.517138 ], + [ 7.190769, 46.5167273 ], + [ 7.1903706, 46.5164031 ], + [ 7.1900715, 46.516094 ], + [ 7.1898302, 46.5158004 ], + [ 7.1897036, 46.515527 ], + [ 7.1895318, 46.5153335 ], + [ 7.189269, 46.5151191 ], + [ 7.1890498, 46.5149604 ], + [ 7.1863775, 46.513089 ], + [ 7.1855787, 46.5123844 ], + [ 7.1853366, 46.5122654 ], + [ 7.1851048, 46.5120168 ], + [ 7.1847658, 46.5117364 ], + [ 7.1843519, 46.5114295 ], + [ 7.1839751, 46.5112119 ], + [ 7.1835471, 46.5109616 ], + [ 7.1830858, 46.5106838 ], + [ 7.1825586, 46.510413 ], + [ 7.1821492, 46.5101961 ], + [ 7.1818857, 46.5099593 ], + [ 7.1816008, 46.5096046 ], + [ 7.1813461, 46.5092099 ], + [ 7.1762436, 46.5095451 ], + [ 7.1762095, 46.5097034 ], + [ 7.1761473, 46.5097723 ], + [ 7.1760406, 46.5097744 ], + [ 7.1759414, 46.5097371 ], + [ 7.1758318, 46.5096661 ], + [ 7.1756875, 46.509534 ], + [ 7.1755158, 46.5093459 ], + [ 7.1752678, 46.5090975 ], + [ 7.1750607, 46.5088314 ], + [ 7.174943, 46.5085748 ], + [ 7.1748224, 46.5084363 ], + [ 7.1747143, 46.5083822 ], + [ 7.1746366, 46.5082938 ], + [ 7.174573, 46.5081486 ], + [ 7.1744287, 46.508022 ], + [ 7.1743294, 46.5079959 ], + [ 7.1741836, 46.5080157 ], + [ 7.1740554, 46.5080803 ], + [ 7.1739872, 46.5082055 ], + [ 7.1739353, 46.5083361 ], + [ 7.1738634, 46.508377 ], + [ 7.1737516, 46.5084244 ], + [ 7.1736479, 46.5084829 ], + [ 7.1735294, 46.5085866 ], + [ 7.1734175, 46.5086396 ], + [ 7.1733346000000004, 46.5086188 ], + [ 7.1732828, 46.5085578 ], + [ 7.1732725, 46.5084961 ], + [ 7.1732762, 46.5083947 ], + [ 7.1732948, 46.5082591 ], + [ 7.1732904, 46.5081578 ], + [ 7.1732009, 46.5079795 ], + [ 7.1731388, 46.5078568 ], + [ 7.1731152, 46.5076883 ], + [ 7.1731005, 46.5075365 ], + [ 7.1732005, 46.5073936 ], + [ 7.1733013, 46.5072622 ], + [ 7.1732732, 46.5071894 ], + [ 7.1731991, 46.5071797 ], + [ 7.1730681, 46.5071655 ], + [ 7.1729926, 46.5071164 ], + [ 7.1729564, 46.5070382 ], + [ 7.172892, 46.5068706 ], + [ 7.1728018, 46.5066809 ], + [ 7.1726864, 46.506458 ], + [ 7.1725362, 46.506202 ], + [ 7.1724379, 46.5060068 ], + [ 7.1723262, 46.505874 ], + [ 7.17223, 46.5057238 ], + [ 7.1721759, 46.5056236 ], + [ 7.1721472, 46.5055171 ], + [ 7.1721332, 46.505371 ], + [ 7.1721599, 46.5052409 ], + [ 7.1721607, 46.5050775 ], + [ 7.1721475, 46.5049426 ], + [ 7.172109, 46.5048252 ], + [ 7.1719766, 46.5047772 ], + [ 7.1718388, 46.5048081 ], + [ 7.1717284, 46.5048948 ], + [ 7.1716106, 46.5050155 ], + [ 7.1715069, 46.505074 ], + [ 7.1713373, 46.5051112 ], + [ 7.1710255, 46.5051007 ], + [ 7.1709292, 46.5053166 ], + [ 7.1705713, 46.5057407 ], + [ 7.1701037, 46.506274 ], + [ 7.169925, 46.5065029 ], + [ 7.169865, 46.5066224 ], + [ 7.1698294, 46.506747 ], + [ 7.16977, 46.5068891 ], + [ 7.1696848, 46.5069922 ], + [ 7.169521, 46.5071813 ], + [ 7.1693736, 46.5073589 ], + [ 7.1693305, 46.5075118 ], + [ 7.16928, 46.5076649 ], + [ 7.1692533, 46.5078007 ], + [ 7.1691755, 46.5078868 ], + [ 7.1690155, 46.5079801 ], + [ 7.1690117, 46.5080816 ], + [ 7.1691004, 46.5082487 ], + [ 7.1692069, 46.5084437 ], + [ 7.1693801, 46.5086712 ], + [ 7.1695288, 46.5088933 ], + [ 7.1694828, 46.5089676 ], + [ 7.1694687, 46.5090185 ], + [ 7.1694413, 46.5091316 ], + [ 7.1694435, 46.5091824 ], + [ 7.1693316, 46.5092466 ], + [ 7.1692094, 46.5092659 ], + [ 7.169088, 46.5092796 ], + [ 7.1689842, 46.5093381 ], + [ 7.1686924, 46.5094117 ], + [ 7.1684665, 46.5094782 ], + [ 7.1682317, 46.5095337 ], + [ 7.1679629, 46.5095447 ], + [ 7.1674622, 46.509509800000004 ], + [ 7.1670928, 46.5094666 ], + [ 7.167001, 46.5094179 ], + [ 7.1669396, 46.5093233 ], + [ 7.1668434, 46.5091788 ], + [ 7.1666095, 46.509054 ], + [ 7.1663866, 46.5090136 ], + [ 7.1660667, 46.5089806 ], + [ 7.1656402, 46.5089556 ], + [ 7.1652322, 46.5089582 ], + [ 7.1648412, 46.5089886 ], + [ 7.1646538, 46.5090092 ], + [ 7.1645078, 46.509046 ], + [ 7.1643804, 46.5091163 ], + [ 7.1642796, 46.5092535 ], + [ 7.1642128, 46.5094068 ], + [ 7.1641468, 46.5095828 ], + [ 7.1640408, 46.5097765 ], + [ 7.1639762, 46.5099862 ], + [ 7.163856, 46.5102307 ], + [ 7.1637411, 46.5104189 ], + [ 7.1636039, 46.510647 ], + [ 7.1634556, 46.5108246 ], + [ 7.1633475, 46.5109563 ], + [ 7.1631362, 46.5111803 ], + [ 7.162908, 46.5113876 ], + [ 7.1626464, 46.5115845 ], + [ 7.1623833, 46.5117476 ], + [ 7.1621315, 46.5117808 ], + [ 7.1619182, 46.5117682 ], + [ 7.1618176, 46.5117082 ], + [ 7.1617228, 46.5115975 ], + [ 7.1616696, 46.5114973 ], + [ 7.1616749, 46.5114183 ], + [ 7.1617186, 46.5113047 ], + [ 7.1618439, 46.5111784 ], + [ 7.1619936, 46.5110458 ], + [ 7.16211, 46.5108857 ], + [ 7.1622086, 46.5107148 ], + [ 7.1623073, 46.5105325 ], + [ 7.1623644, 46.5103455 ], + [ 7.162472, 46.5101744 ], + [ 7.162589, 46.5100536 ], + [ 7.1626914, 46.5099503 ], + [ 7.1627722, 46.5097458 ], + [ 7.1627879, 46.5095372 ], + [ 7.1627133, 46.5093133 ], + [ 7.1625246, 46.50912 ], + [ 7.1623427, 46.5088648 ], + [ 7.1621125, 46.5086553 ], + [ 7.1618423, 46.508458 ], + [ 7.1615797, 46.5082269 ], + [ 7.1613653, 46.5077975 ], + [ 7.161224, 46.5075638 ], + [ 7.1610435, 46.5073479 ], + [ 7.1608134, 46.5071216 ], + [ 7.1605337, 46.5068907 ], + [ 7.1602518, 46.5066092 ], + [ 7.1599387, 46.5063621 ], + [ 7.1596116, 46.5061603 ], + [ 7.159249, 46.5058973 ], + [ 7.1589654, 46.5057791 ], + [ 7.1587079, 46.5056774 ], + [ 7.1584406, 46.5055476 ], + [ 7.1581217, 46.50534 ], + [ 7.1579433, 46.5051916 ], + [ 7.1578228, 46.5050364 ], + [ 7.1577341, 46.5048748 ], + [ 7.1576372, 46.5047247 ], + [ 7.1574796, 46.5046546 ], + [ 7.1572353, 46.5044963 ], + [ 7.1568564, 46.5042336 ], + [ 7.1565538, 46.5040257 ], + [ 7.1562333, 46.5038013 ], + [ 7.1558344, 46.5036461 ], + [ 7.155416, 46.5036151 ], + [ 7.155313, 46.5036847 ], + [ 7.1552026, 46.5037827 ], + [ 7.1550493, 46.5038308 ], + [ 7.1548938, 46.5038227 ], + [ 7.1547939, 46.5037797 ], + [ 7.154654, 46.5037543 ], + [ 7.1545066, 46.5037461 ], + [ 7.1543918, 46.5037428 ], + [ 7.1542504, 46.503695 ], + [ 7.1541149, 46.5037709 ], + [ 7.1539807, 46.5038863 ], + [ 7.1538177, 46.5040754 ], + [ 7.1535805, 46.5042773 ], + [ 7.1534099, 46.5045004 ], + [ 7.1533173, 46.504615 ], + [ 7.1532668, 46.5047737 ], + [ 7.1532238, 46.5049096 ], + [ 7.1530793, 46.5049746 ], + [ 7.1529688, 46.5050782 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "JBG0019", + "country" : "CHE", + "name" : [ + { + "text" : "Eidgenössisches Jagdbanngebiet Hochmatt-Motélon", + "lang" : "de-CH" + }, + { + "text" : "District franc fédéral Hochmatt-Motélon", + "lang" : "fr-CH" + }, + { + "text" : "Bandita federale di caccia Hochmatt-Motélon", + "lang" : "it-CH" + }, + { + "text" : "Federal Game Reserve Hochmatt-Motélon", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7607105, 47.3550513 ], + [ 7.7605032, 47.3552866 ], + [ 7.7604354, 47.3554102 ], + [ 7.7604394, 47.3555206 ], + [ 7.7606744, 47.356043 ], + [ 7.7611432, 47.3570444 ], + [ 7.7615104, 47.3578383 ], + [ 7.761594, 47.3580663 ], + [ 7.7616492, 47.358074 ], + [ 7.7616575, 47.3579112 ], + [ 7.7617008, 47.3572814 ], + [ 7.7617113, 47.357198 ], + [ 7.7617458, 47.3564486 ], + [ 7.7617401, 47.3557657 ], + [ 7.761524, 47.3556419 ], + [ 7.7611609999999995, 47.3554351 ], + [ 7.7607315, 47.3551829 ], + [ 7.7607105, 47.3550513 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns094", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Seilhüslifluh", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Seilhüslifluh", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Seilhüslifluh", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Seilhüslifluh", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.776046, 47.3598357 ], + [ 7.7760636, 47.3599004 ], + [ 7.7761525, 47.3600165 ], + [ 7.7761636, 47.3600848 ], + [ 7.7761496, 47.3601793 ], + [ 7.7762018, 47.3602519 ], + [ 7.7762458, 47.3602932 ], + [ 7.7763445, 47.3603947 ], + [ 7.7764017, 47.3604296 ], + [ 7.7764272, 47.3604718 ], + [ 7.7764316, 47.3605395 ], + [ 7.7765191, 47.3606195 ], + [ 7.7766307999999995, 47.3606841 ], + [ 7.7766879, 47.3607069 ], + [ 7.7770147, 47.3604277 ], + [ 7.7766893, 47.3596793 ], + [ 7.7766236, 47.3597144 ], + [ 7.7762785999999995, 47.3599018 ], + [ 7.7761154, 47.3598439 ], + [ 7.7760703, 47.3598273 ], + [ 7.776046, 47.3598357 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns128", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Schöntalweiher", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Schöntalweiher", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Schöntalweiher", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Schöntalweiher", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7528717, 47.3535426 ], + [ 7.7525716, 47.3534302 ], + [ 7.7522175, 47.3532412 ], + [ 7.7518005, 47.3529985 ], + [ 7.7518352, 47.3530497 ], + [ 7.7518526, 47.3530928 ], + [ 7.7518545, 47.3531232 ], + [ 7.7519029, 47.3531825 ], + [ 7.7519616, 47.3532337 ], + [ 7.7520185999999995, 47.3532896 ], + [ 7.7521256, 47.3533826 ], + [ 7.7523616, 47.3535162 ], + [ 7.7525649, 47.3536311 ], + [ 7.7527042999999995, 47.3536879 ], + [ 7.7530984, 47.3538478 ], + [ 7.7533013, 47.3539291 ], + [ 7.7534042, 47.3539705 ], + [ 7.7540584, 47.3542427 ], + [ 7.7556894, 47.3544603 ], + [ 7.7586637, 47.3548313 ], + [ 7.7592899, 47.3547596 ], + [ 7.7593001, 47.3547327 ], + [ 7.75936, 47.3546952 ], + [ 7.7594539000000005, 47.3546098 ], + [ 7.7594736, 47.3544674 ], + [ 7.7593636, 47.3544389 ], + [ 7.7591208, 47.3543202 ], + [ 7.7587832, 47.354145 ], + [ 7.7586211, 47.3540299 ], + [ 7.7582224, 47.353688 ], + [ 7.7580221, 47.353482 ], + [ 7.7580010999999995, 47.3534167 ], + [ 7.7578066, 47.3530524 ], + [ 7.7574729, 47.3530551 ], + [ 7.7567822, 47.3531303 ], + [ 7.75678, 47.3531189 ], + [ 7.7564131, 47.3531562 ], + [ 7.7559721, 47.3531994 ], + [ 7.7555876999999995, 47.3532343 ], + [ 7.7554522, 47.3532499 ], + [ 7.755444, 47.3532298 ], + [ 7.7552187, 47.3531868 ], + [ 7.7549707, 47.3531156 ], + [ 7.7548226, 47.3530579 ], + [ 7.7545967000000005, 47.3529766 ], + [ 7.7541543, 47.3528484 ], + [ 7.7538564, 47.3527399 ], + [ 7.7535743, 47.3526172 ], + [ 7.753295, 47.3524795 ], + [ 7.7531171, 47.352385 ], + [ 7.7529464, 47.3522869 ], + [ 7.7528797, 47.3522301 ], + [ 7.7526634, 47.3522973 ], + [ 7.7527243, 47.3524015 ], + [ 7.7527791, 47.3525098 ], + [ 7.7527946, 47.3525737 ], + [ 7.7528027999999996, 47.3526457 ], + [ 7.7527762, 47.352836 ], + [ 7.7533238, 47.3530036 ], + [ 7.7535882, 47.3531474 ], + [ 7.7540479, 47.3533423 ], + [ 7.7544807, 47.3534673 ], + [ 7.7543898, 47.3537048 ], + [ 7.7540206, 47.3537065 ], + [ 7.7536275, 47.3536866 ], + [ 7.7532103, 47.3536378 ], + [ 7.7528717, 47.3535426 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns348", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Helfenbergrüttenen", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Helfenbergrüttenen", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Helfenbergrüttenen", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Helfenbergrüttenen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.2335621, 47.5776285 ], + [ 8.2300199, 47.576746299999996 ], + [ 8.2278492, 47.5779761 ], + [ 8.2256327, 47.5778616 ], + [ 8.2253632, 47.5779506 ], + [ 8.2251883, 47.5780319 ], + [ 8.2250045, 47.5782473 ], + [ 8.2216756, 47.5829702 ], + [ 8.2215329, 47.5832033 ], + [ 8.2214306, 47.5834791 ], + [ 8.2213659, 47.5838284 ], + [ 8.2213027, 47.584274 ], + [ 8.2212709, 47.5845946 ], + [ 8.2256149, 47.5861822 ], + [ 8.2274037, 47.5864525 ], + [ 8.2274163, 47.5868527 ], + [ 8.2272885, 47.5873077 ], + [ 8.227165, 47.5876692 ], + [ 8.227045, 47.5880865 ], + [ 8.2268588, 47.5883658 ], + [ 8.2265987, 47.5885868 ], + [ 8.226115, 47.5887503 ], + [ 8.2256417, 47.5888802 ], + [ 8.2252113, 47.5889931 ], + [ 8.2247334, 47.5891006 ], + [ 8.22442, 47.5891988 ], + [ 8.22433, 47.5892399 ], + [ 8.2234767, 47.5899751 ], + [ 8.2229499, 47.5895829 ], + [ 8.2225363, 47.5899303 ], + [ 8.2221017, 47.590212 ], + [ 8.221684, 47.5903976 ], + [ 8.2213379, 47.590541 ], + [ 8.2209823, 47.5907089 ], + [ 8.220605, 47.5908759 ], + [ 8.2201533, 47.5910158 ], + [ 8.2198464, 47.5911095 ], + [ 8.2196977, 47.5911114 ], + [ 8.2193129, 47.591105 ], + [ 8.2190232, 47.591071 ], + [ 8.2185821, 47.5911369 ], + [ 8.2178191, 47.5912356 ], + [ 8.2182046, 47.5910333 ], + [ 8.218533, 47.5889782 ], + [ 8.2188518, 47.588968 ], + [ 8.2191317, 47.5879356 ], + [ 8.2185973, 47.5881254 ], + [ 8.2181221, 47.5876988 ], + [ 8.2181619, 47.587402 ], + [ 8.2185272, 47.5871919 ], + [ 8.2183825, 47.5870959 ], + [ 8.218188, 47.5870332 ], + [ 8.2179686, 47.5870346 ], + [ 8.2178104, 47.5870766 ], + [ 8.21766, 47.5871339 ], + [ 8.2174051, 47.5872892 ], + [ 8.2167677, 47.5876619 ], + [ 8.2157624, 47.5882212 ], + [ 8.214959, 47.5886206 ], + [ 8.2145991, 47.5888379 ], + [ 8.214382, 47.5889929 ], + [ 8.214143, 47.5891992 ], + [ 8.213633, 47.5894943 ], + [ 8.2135432, 47.5895614 ], + [ 8.2134843, 47.5896743 ], + [ 8.2134484, 47.5898025 ], + [ 8.2134427, 47.5899305 ], + [ 8.2133827, 47.5902317 ], + [ 8.2133324, 47.5905275 ], + [ 8.2132987, 47.5909446 ], + [ 8.2132382, 47.5914618 ], + [ 8.2132349, 47.5917586 ], + [ 8.2132671, 47.5918863 ], + [ 8.2133834, 47.5920851 ], + [ 8.2136713, 47.5926307 ], + [ 8.2138499, 47.5929518 ], + [ 8.2139817, 47.5931659 ], + [ 8.2142387, 47.5935764 ], + [ 8.2144777, 47.5939812 ], + [ 8.2145251, 47.594114 ], + [ 8.2146991, 47.5944899 ], + [ 8.2148041, 47.5946756 ], + [ 8.2150898, 47.5950649 ], + [ 8.2171904, 47.5975394 ], + [ 8.2175525, 47.5977492 ], + [ 8.2177967, 47.5978538 ], + [ 8.2180849, 47.5980084 ], + [ 8.2183055, 47.5981443 ], + [ 8.2185321, 47.5982994 ], + [ 8.2187708, 47.5985325 ], + [ 8.2189778, 47.5987657 ], + [ 8.2192058, 47.5991791 ], + [ 8.2194783, 47.5996258 ], + [ 8.2196199, 47.5999273 ], + [ 8.2197261, 47.6001964 ], + [ 8.2198004, 47.6004486 ], + [ 8.2199001, 47.6007852 ], + [ 8.2199858, 47.6011255 ], + [ 8.2202971, 47.6019498 ], + [ 8.2206942, 47.602046 ], + [ 8.2217082, 47.6047475 ], + [ 8.2219573, 47.6047332 ], + [ 8.2222981, 47.6055788 ], + [ 8.2251289, 47.6041046 ], + [ 8.225725, 47.6039513 ], + [ 8.2273812, 47.6037062 ], + [ 8.2273177, 47.6035717 ], + [ 8.2273413, 47.6034816 ], + [ 8.2274115, 47.6033389 ], + [ 8.2275076, 47.6032095 ], + [ 8.2275325, 47.6031464 ], + [ 8.2273581, 47.6028789 ], + [ 8.2267206, 47.603044 ], + [ 8.2262922, 47.6031908 ], + [ 8.2261228, 47.6030852 ], + [ 8.2260845, 47.6029126 ], + [ 8.2260448, 47.6026475 ], + [ 8.2260309, 47.6024408 ], + [ 8.2260103, 47.6022835 ], + [ 8.225961999999999, 47.6021093 ], + [ 8.2259434, 47.6020304 ], + [ 8.225842, 47.6019752 ], + [ 8.2257213, 47.6018537 ], + [ 8.2255067, 47.6018965 ], + [ 8.2254564, 47.6015309 ], + [ 8.2254329, 47.6012899 ], + [ 8.2254308, 47.6009796 ], + [ 8.2254064, 47.6006841 ], + [ 8.2253651, 47.6004191 ], + [ 8.2253434, 47.6001899 ], + [ 8.2253313, 47.5999921 ], + [ 8.2252644, 47.5997972 ], + [ 8.2251861, 47.5996179 ], + [ 8.2250732, 47.599455 ], + [ 8.2249773, 47.599266 ], + [ 8.2249117, 47.5990416 ], + [ 8.2249125, 47.5987599 ], + [ 8.2250208, 47.5984444 ], + [ 8.2252323, 47.5982504 ], + [ 8.2255429, 47.5980667 ], + [ 8.2257134, 47.5979594 ], + [ 8.2258919, 47.5978376 ], + [ 8.2260522, 47.5976108 ], + [ 8.226124, 47.5974071 ], + [ 8.2261999, 47.5971486 ], + [ 8.2262506, 47.5969745 ], + [ 8.226337, 47.5967527 ], + [ 8.2264404, 47.5966053 ], + [ 8.2265632, 47.5964805 ], + [ 8.2268663, 47.5963525 ], + [ 8.2272215, 47.5962132 ], + [ 8.2274974, 47.5961579 ], + [ 8.2275422, 47.5961489 ], + [ 8.227738, 47.5961042 ], + [ 8.2278047, 47.5963927 ], + [ 8.2277658, 47.5966282 ], + [ 8.2280485, 47.5964681 ], + [ 8.2284704, 47.5962696 ], + [ 8.2292663, 47.5960156 ], + [ 8.2299749, 47.5957583 ], + [ 8.2310516, 47.5953864 ], + [ 8.2314361, 47.5952624 ], + [ 8.2324376, 47.5948823 ], + [ 8.2327725, 47.5947461 ], + [ 8.2332384, 47.5945605 ], + [ 8.2337776, 47.5943851 ], + [ 8.2341769, 47.5941935 ], + [ 8.2349778, 47.5939031 ], + [ 8.2361314, 47.5934438 ], + [ 8.2367196, 47.5931964 ], + [ 8.2371174, 47.5930248 ], + [ 8.2374475, 47.5928437 ], + [ 8.238055, 47.5924806 ], + [ 8.2385258, 47.5921516 ], + [ 8.238841, 47.5918943 ], + [ 8.2390583, 47.5916808 ], + [ 8.2395826, 47.5910492 ], + [ 8.239781, 47.5907377 ], + [ 8.239972, 47.5904231 ], + [ 8.2401593, 47.5900521 ], + [ 8.240532, 47.5892083 ], + [ 8.2412292, 47.5876228 ], + [ 8.2413744, 47.5872972 ], + [ 8.2415716, 47.5869602 ], + [ 8.2418078, 47.5866454 ], + [ 8.2414004, 47.5865326 ], + [ 8.2408134, 47.5860114 ], + [ 8.2418237, 47.5850772 ], + [ 8.2414874, 47.5848718 ], + [ 8.2421609, 47.5842457 ], + [ 8.2403678, 47.5831937 ], + [ 8.2406389, 47.5829917 ], + [ 8.2413154, 47.5826711 ], + [ 8.241807, 47.5822717 ], + [ 8.2431538, 47.5811771 ], + [ 8.2444358, 47.5802517 ], + [ 8.2450811, 47.579909 ], + [ 8.245451, 47.5796465 ], + [ 8.2457057, 47.5794657 ], + [ 8.2458485, 47.5793478 ], + [ 8.2460397, 47.5791904 ], + [ 8.2463818, 47.5789081 ], + [ 8.2466903, 47.578653 ], + [ 8.2468478, 47.5785234 ], + [ 8.2476578, 47.5779742 ], + [ 8.248292, 47.577508 ], + [ 8.249199, 47.5768411 ], + [ 8.2497752, 47.576499 ], + [ 8.2502348, 47.5761287 ], + [ 8.2507509, 47.5757659 ], + [ 8.2512276, 47.5754303 ], + [ 8.2518676, 47.5748564 ], + [ 8.2523306, 47.5744981 ], + [ 8.2525195, 47.5743518 ], + [ 8.2528915, 47.5740175 ], + [ 8.2532143, 47.573728 ], + [ 8.2515413, 47.5730806 ], + [ 8.2506612, 47.5733791 ], + [ 8.250079, 47.5736564 ], + [ 8.2493301, 47.5739539 ], + [ 8.2479297, 47.574455 ], + [ 8.2449046, 47.5733797 ], + [ 8.2457831, 47.5723229 ], + [ 8.2452987, 47.5720413 ], + [ 8.244543, 47.5729271 ], + [ 8.2443077, 47.5731328 ], + [ 8.2440305, 47.5733163 ], + [ 8.2438181, 47.5734384 ], + [ 8.243704, 47.5735291 ], + [ 8.2438301, 47.5736291 ], + [ 8.2422299, 47.5752564 ], + [ 8.2393153, 47.5763272 ], + [ 8.2376471, 47.575824 ], + [ 8.2372306, 47.5764098 ], + [ 8.2381825, 47.5768403 ], + [ 8.236623699999999, 47.5778719 ], + [ 8.2356061, 47.5775425 ], + [ 8.235358, 47.5778385 ], + [ 8.2336824, 47.5773983 ], + [ 8.2335621, 47.5776285 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "WZV0018", + "country" : "CHE", + "name" : [ + { + "text" : "Wasser- und Zugvogelreservat Klingnauerstausee", + "lang" : "de-CH" + }, + { + "text" : "Réserve d'oiseaux d'eau et de migrateurs Klingnauerstausee", + "lang" : "fr-CH" + }, + { + "text" : "Riserva di uccelli acquatici e migratori Klingnauerstausee", + "lang" : "it-CH" + }, + { + "text" : "Water Bird and Migratory Bird Reserves Klingnauerstausee", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8439282, 47.3790873 ], + [ 7.8439785, 47.3791359 ], + [ 7.8440945, 47.3791928 ], + [ 7.8445044, 47.3793378 ], + [ 7.84457, 47.3793418 ], + [ 7.8445884, 47.3793191 ], + [ 7.844607, 47.3792886 ], + [ 7.8445943, 47.3792525 ], + [ 7.8443562, 47.379143 ], + [ 7.8441247, 47.3790718 ], + [ 7.8439685, 47.3790469 ], + [ 7.8439282, 47.3790873 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns051", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Hecken-Komplex Schmutzberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Hecken-Komplex Schmutzberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Hecken-Komplex Schmutzberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Hecken-Komplex Schmutzberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.9162147, 46.1621008 ], + [ 8.9162056, 46.1619597 ], + [ 8.9161858, 46.1618191 ], + [ 8.9161555, 46.1616794 ], + [ 8.9161146, 46.1615409 ], + [ 8.9160635, 46.1614042 ], + [ 8.9160021, 46.1612695 ], + [ 8.9159306, 46.1611373 ], + [ 8.9158493, 46.1610078 ], + [ 8.9157583, 46.1608814 ], + [ 8.9156579, 46.1607585 ], + [ 8.9155484, 46.1606395 ], + [ 8.9154301, 46.1605246 ], + [ 8.9153033, 46.1604141 ], + [ 8.9151684, 46.1603084 ], + [ 8.9150257, 46.1602078 ], + [ 8.9148756, 46.1601125 ], + [ 8.9147185, 46.1600228 ], + [ 8.9145549, 46.1599389 ], + [ 8.9143852, 46.1598611 ], + [ 8.9142099, 46.1597895 ], + [ 8.9140294, 46.1597244 ], + [ 8.9138443, 46.159666 ], + [ 8.913655, 46.1596144 ], + [ 8.9134621, 46.1595698 ], + [ 8.9132661, 46.1595322 ], + [ 8.9130676, 46.1595018 ], + [ 8.912867, 46.1594787 ], + [ 8.9126649, 46.1594629 ], + [ 8.912462, 46.1594544 ], + [ 8.9122587, 46.1594534 ], + [ 8.9120556, 46.1594597 ], + [ 8.9118532, 46.1594735 ], + [ 8.9116522, 46.1594945 ], + [ 8.911453, 46.1595229 ], + [ 8.9112562, 46.1595584 ], + [ 8.9110624, 46.1596011 ], + [ 8.910872, 46.1596508 ], + [ 8.9106857, 46.1597073 ], + [ 8.9105038, 46.1597705 ], + [ 8.910327, 46.1598402 ], + [ 8.9101556, 46.1599163 ], + [ 8.9099903, 46.1599985 ], + [ 8.9098313, 46.1600866 ], + [ 8.9096792, 46.1601803 ], + [ 8.9095344, 46.1602795 ], + [ 8.9093972, 46.1603838 ], + [ 8.9092681, 46.1604929 ], + [ 8.9091473, 46.1606066 ], + [ 8.9090353, 46.1607245 ], + [ 8.9089324, 46.1608463 ], + [ 8.9088387, 46.1609717 ], + [ 8.9087546, 46.1611004 ], + [ 8.9086804, 46.1612319 ], + [ 8.9086161, 46.1613659 ], + [ 8.908562, 46.1615021 ], + [ 8.9085183, 46.1616401 ], + [ 8.9084849, 46.1617795 ], + [ 8.9084622, 46.1619199 ], + [ 8.90845, 46.1620609 ], + [ 8.9084485, 46.1622022 ], + [ 8.9084577, 46.1623434 ], + [ 8.9084774, 46.162484 ], + [ 8.9085077, 46.1626237 ], + [ 8.9085485, 46.1627621 ], + [ 8.9085997, 46.1628988 ], + [ 8.9086611, 46.1630335 ], + [ 8.9087325, 46.1631658 ], + [ 8.9088138, 46.1632953 ], + [ 8.9089048, 46.1634217 ], + [ 8.9090052, 46.1635445 ], + [ 8.9091146, 46.1636636 ], + [ 8.9092329, 46.1637785 ], + [ 8.9093597, 46.163889 ], + [ 8.9094946, 46.1639947 ], + [ 8.9096374, 46.1640953 ], + [ 8.909787399999999, 46.1641906 ], + [ 8.9099445, 46.1642804 ], + [ 8.9101081, 46.1643642 ], + [ 8.9102778, 46.1644421 ], + [ 8.9104532, 46.1645136 ], + [ 8.9106337, 46.1645787 ], + [ 8.9108188, 46.1646371 ], + [ 8.9110081, 46.1646887 ], + [ 8.911201, 46.1647334 ], + [ 8.911397000000001, 46.164771 ], + [ 8.9115956, 46.1648014 ], + [ 8.9117962, 46.1648245 ], + [ 8.9119983, 46.1648403 ], + [ 8.9122012, 46.1648487 ], + [ 8.9124046, 46.1648498 ], + [ 8.9126077, 46.1648434 ], + [ 8.9128101, 46.1648297 ], + [ 8.9130112, 46.1648086 ], + [ 8.9132104, 46.1647803 ], + [ 8.9134072, 46.1647447 ], + [ 8.913601, 46.1647021 ], + [ 8.9137914, 46.1646524 ], + [ 8.9139777, 46.1645959 ], + [ 8.9141596, 46.1645327 ], + [ 8.9143364, 46.1644629 ], + [ 8.914507799999999, 46.1643869 ], + [ 8.9146732, 46.1643046 ], + [ 8.9148321, 46.1642165 ], + [ 8.9149842, 46.1641228 ], + [ 8.9151291, 46.1640236 ], + [ 8.9152662, 46.1639193 ], + [ 8.9153954, 46.1638102 ], + [ 8.9155161, 46.1636965 ], + [ 8.9156281, 46.1635786 ], + [ 8.915731, 46.1634567 ], + [ 8.9158247, 46.1633313 ], + [ 8.9159087, 46.1632027 ], + [ 8.915983, 46.1630711 ], + [ 8.9160473, 46.1629371 ], + [ 8.9161013, 46.1628009 ], + [ 8.9161451, 46.1626629 ], + [ 8.9161783, 46.1625235 ], + [ 8.9162011, 46.1623831 ], + [ 8.9162132, 46.1622421 ], + [ 8.9162147, 46.1621008 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0067", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Magadino", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Magadino", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Magadino", + "lang" : "it-CH" + }, + { + "text" : "Substation Magadino", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.5216951, 47.4377364 ], + [ 9.5331402, 47.4252932 ], + [ 9.5133585, 47.4279894 ], + [ 9.4856984, 47.4189456 ], + [ 9.4810495, 47.4152491 ], + [ 9.487541, 47.4117152 ], + [ 9.5347329, 47.4186064 ], + [ 9.5382222, 47.4129647 ], + [ 9.5055262, 47.4038371 ], + [ 9.5326546, 47.3927316 ], + [ 9.5243934, 47.3847835 ], + [ 9.4634358, 47.3912667 ], + [ 9.4492721, 47.3810775 ], + [ 9.4425237, 47.3847937 ], + [ 9.4579294, 47.3928027 ], + [ 9.4585409, 47.3949513 ], + [ 9.4601039, 47.401222 ], + [ 9.4710825, 47.4111062 ], + [ 9.4652683, 47.4115682 ], + [ 9.4456995, 47.4057918 ], + [ 9.4108119, 47.3941567 ], + [ 9.4083764, 47.3999563 ], + [ 9.4496387, 47.4118413 ], + [ 9.4525803, 47.4195276 ], + [ 9.4122096, 47.4247226 ], + [ 9.4334909, 47.4407317 ], + [ 9.4756512, 47.419663 ], + [ 9.5216951, 47.4377364 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSXT001", + "country" : "CHE", + "name" : [ + { + "text" : "LSXT Trogen", + "lang" : "de-CH" + }, + { + "text" : "LSXT Trogen", + "lang" : "fr-CH" + }, + { + "text" : "LSXT Trogen", + "lang" : "it-CH" + }, + { + "text" : "LSXT Trogen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Stiftung Helimission", + "lang" : "de-CH" + }, + { + "text" : "Stiftung Helimission", + "lang" : "fr-CH" + }, + { + "text" : "Stiftung Helimission", + "lang" : "it-CH" + }, + { + "text" : "Stiftung Helimission", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Basis St. Gallen", + "lang" : "de-CH" + }, + { + "text" : "Basis St. Gallen", + "lang" : "fr-CH" + }, + { + "text" : "Basis St. Gallen", + "lang" : "it-CH" + }, + { + "text" : "Basis St. Gallen", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.helimission.org/en/", + "email" : "info@hm-int.org", + "phone" : "0041713437171", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P01DT12H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.2902025, 46.4231428 ], + [ 6.2899472, 46.423146 ], + [ 6.2896927, 46.4231608 ], + [ 6.2894401, 46.423187 ], + [ 6.2891905999999995, 46.4232246 ], + [ 6.2889452, 46.4232733 ], + [ 6.2887049, 46.4233331 ], + [ 6.2884706999999995, 46.4234036 ], + [ 6.2882438, 46.4234846 ], + [ 6.288025, 46.4235756 ], + [ 6.2878152, 46.4236764 ], + [ 6.2876155, 46.4237864 ], + [ 6.2874265, 46.4239052 ], + [ 6.2872492, 46.4240323 ], + [ 6.2870844, 46.4241671 ], + [ 6.2869326, 46.4243092 ], + [ 6.2867945, 46.4244577 ], + [ 6.2866709, 46.4246122 ], + [ 6.2865746, 46.4247521 ], + [ 6.2864696, 46.4249167 ], + [ 6.286457, 46.4249366 ], + [ 6.2863636, 46.425101 ], + [ 6.2862859, 46.4252692 ], + [ 6.2862242, 46.4254406 ], + [ 6.2861789, 46.4256144 ], + [ 6.2861501, 46.4257898 ], + [ 6.286138, 46.4259662 ], + [ 6.2861426, 46.4261428 ], + [ 6.2861639, 46.4263188 ], + [ 6.2862018, 46.4264934 ], + [ 6.2862561, 46.426666 ], + [ 6.2863267, 46.4268357 ], + [ 6.2864131, 46.4270019 ], + [ 6.2865151, 46.4271638 ], + [ 6.2866321, 46.4273207 ], + [ 6.2867638, 46.4274721 ], + [ 6.2869095, 46.4276171 ], + [ 6.2870686, 46.4277553 ], + [ 6.2872404, 46.4278859 ], + [ 6.2874242, 46.4280085 ], + [ 6.2876193, 46.4281225 ], + [ 6.2878246, 46.4282275 ], + [ 6.2880395, 46.4283229 ], + [ 6.288263, 46.4284085 ], + [ 6.2884653, 46.428475 ], + [ 6.2887033, 46.4285476 ], + [ 6.2887321, 46.4285563 ], + [ 6.2889698, 46.4286209 ], + [ 6.2892131, 46.4286747 ], + [ 6.2894609, 46.4287173 ], + [ 6.2897122, 46.4287486 ], + [ 6.289966, 46.4287685 ], + [ 6.2902211, 46.4287769 ], + [ 6.2904765, 46.4287737 ], + [ 6.290731, 46.4287589 ], + [ 6.2909835, 46.4287327 ], + [ 6.2912331, 46.4286952 ], + [ 6.2914786, 46.4286464 ], + [ 6.2917189, 46.4285866 ], + [ 6.291953, 46.4285161 ], + [ 6.29218, 46.4284351 ], + [ 6.2923988, 46.4283441 ], + [ 6.2926086, 46.4282433 ], + [ 6.2928084, 46.4281333 ], + [ 6.2929973, 46.4280145 ], + [ 6.2931746, 46.4278874 ], + [ 6.2933395, 46.4277525 ], + [ 6.2934912, 46.4276105 ], + [ 6.2936293, 46.4274619 ], + [ 6.2937529, 46.4273074 ], + [ 6.2938492, 46.4271675 ], + [ 6.2939542, 46.4270029 ], + [ 6.2939667, 46.426983 ], + [ 6.2940602, 46.4268186 ], + [ 6.2941379, 46.4266504 ], + [ 6.2941995, 46.426479 ], + [ 6.2942447999999995, 46.4263052 ], + [ 6.2942735, 46.4261297 ], + [ 6.2942856, 46.4259533 ], + [ 6.294281, 46.4257768 ], + [ 6.2942596, 46.4256008 ], + [ 6.2942217, 46.4254262 ], + [ 6.2941674, 46.4252536 ], + [ 6.2940968, 46.4250839 ], + [ 6.2940104, 46.4249177 ], + [ 6.2939084, 46.4247558 ], + [ 6.2937913, 46.4245989 ], + [ 6.2936596, 46.4244475 ], + [ 6.2935139, 46.4243025 ], + [ 6.2933548, 46.4241644 ], + [ 6.293183, 46.4240337 ], + [ 6.2929992, 46.4239111 ], + [ 6.2928042, 46.4237971 ], + [ 6.2925988, 46.4236922 ], + [ 6.2923839, 46.4235967 ], + [ 6.2921605, 46.4235112 ], + [ 6.2919582, 46.4234447 ], + [ 6.2917202, 46.4233721 ], + [ 6.2916914, 46.4233634 ], + [ 6.2914537, 46.4232988 ], + [ 6.2912105, 46.423245 ], + [ 6.2909626, 46.4232024 ], + [ 6.2907113, 46.4231711 ], + [ 6.2904576, 46.4231512 ], + [ 6.2902025, 46.4231428 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00028", + "country" : "CHE", + "name" : [ + { + "text" : "Clinique La Lignère", + "lang" : "de-CH" + }, + { + "text" : "Clinique La Lignère", + "lang" : "fr-CH" + }, + { + "text" : "Clinique La Lignère", + "lang" : "it-CH" + }, + { + "text" : "Clinique La Lignère", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kantonspolizei Waadt", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale vaudoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Vaud", + "lang" : "it-CH" + }, + { + "text" : "Vaud Cantonal Police", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.pcv@vd.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.317817699999999, 47.1039545 ], + [ 8.3177249, 47.1037546 ], + [ 8.3136449, 47.0949551 ], + [ 8.3116407, 47.0953185 ], + [ 8.3106333, 47.0937952 ], + [ 8.3020073, 47.0874233 ], + [ 8.3024927, 47.0868969 ], + [ 8.2972822, 47.0834179 ], + [ 8.2976607, 47.0829581 ], + [ 8.2967645, 47.0822568 ], + [ 8.2961857, 47.0825454 ], + [ 8.2959855, 47.0823805 ], + [ 8.2944445, 47.0811254 ], + [ 8.2945465, 47.0807522 ], + [ 8.2942278, 47.0803408 ], + [ 8.2915491, 47.0785868 ], + [ 8.2901395, 47.079791 ], + [ 8.2888392, 47.0806678 ], + [ 8.2891999, 47.0809935 ], + [ 8.2895931, 47.0807908 ], + [ 8.2920055, 47.0820251 ], + [ 8.293712, 47.0837486 ], + [ 8.2940223, 47.0839657 ], + [ 8.2935355, 47.0843229 ], + [ 8.2933164, 47.0847077 ], + [ 8.2948142, 47.0866279 ], + [ 8.2957248, 47.088396 ], + [ 8.2964709, 47.0883526 ], + [ 8.2962518, 47.0891503 ], + [ 8.2954884, 47.0896697 ], + [ 8.2959912, 47.0899825 ], + [ 8.2951099, 47.0904677 ], + [ 8.2953193, 47.0912064 ], + [ 8.2940274, 47.0915453 ], + [ 8.2943517, 47.0934642 ], + [ 8.2942581, 47.0934528 ], + [ 8.2937437, 47.0933903 ], + [ 8.2934385, 47.0933532 ], + [ 8.2923265, 47.0937626 ], + [ 8.2924548, 47.0938215 ], + [ 8.2929034, 47.0939919 ], + [ 8.2935873, 47.0942646 ], + [ 8.2939354, 47.0943877 ], + [ 8.2944457, 47.0945917 ], + [ 8.294815, 47.0947331 ], + [ 8.2947916, 47.0951857 ], + [ 8.2947914, 47.0952755 ], + [ 8.2947717, 47.0957444 ], + [ 8.2947459, 47.0959997 ], + [ 8.2947217, 47.0963982 ], + [ 8.294455899999999, 47.0963598 ], + [ 8.2942865, 47.0963926 ], + [ 8.2941979, 47.0964499 ], + [ 8.2940031, 47.0967095 ], + [ 8.2938888, 47.096893 ], + [ 8.2938783, 47.097063 ], + [ 8.2938987, 47.0971861 ], + [ 8.2939265, 47.097275 ], + [ 8.293964, 47.0973943 ], + [ 8.2940366, 47.0974046 ], + [ 8.2941928, 47.0974129 ], + [ 8.2943939, 47.0974235 ], + [ 8.2945678, 47.0972612 ], + [ 8.2947401, 47.0971602 ], + [ 8.2954975, 47.096534 ], + [ 8.2958061, 47.0962788 ], + [ 8.2959751, 47.0953951 ], + [ 8.297236, 47.0946051 ], + [ 8.2976535, 47.0943436 ], + [ 8.2983316, 47.094737 ], + [ 8.2997554, 47.0948964 ], + [ 8.3004091, 47.0954959 ], + [ 8.3010036, 47.0956021 ], + [ 8.303688, 47.0937217 ], + [ 8.3079004, 47.0968958 ], + [ 8.3083525, 47.0978054 ], + [ 8.3078729, 47.098777 ], + [ 8.310044, 47.0993578 ], + [ 8.3171639, 47.1037688 ], + [ 8.3171643, 47.1039523 ], + [ 8.3165261, 47.1037602 ], + [ 8.3175148, 47.1050858 ], + [ 8.3183776, 47.1051565 ], + [ 8.317817699999999, 47.1039545 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSME002", + "country" : "CHE", + "name" : [ + { + "text" : "LSME Emmen (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSME Emmen (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSME Emmen (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSME Emmen (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Special Flight Office (SFO)", + "lang" : "de-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "fr-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "it-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "en-GB" + } + ], + "siteURL" : "https://skyguide.ch/services/special-flights", + "email" : "specialflight@skyguide.ch", + "phone" : "0041439316236", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.3400105, 47.3436533 ], + [ 8.3401015, 47.3434773 ], + [ 8.3401898, 47.3433407 ], + [ 8.3402664, 47.3432175 ], + [ 8.340336, 47.3430915 ], + [ 8.3403909, 47.3429862 ], + [ 8.3405028, 47.3428076 ], + [ 8.3406181, 47.3426386 ], + [ 8.3407668, 47.342435 ], + [ 8.3408662, 47.3423119 ], + [ 8.3409519, 47.3422246 ], + [ 8.3410386, 47.3421478 ], + [ 8.3411228, 47.3420978 ], + [ 8.3412029, 47.3420631 ], + [ 8.3413581, 47.3420139 ], + [ 8.3417111, 47.3418817 ], + [ 8.3418472, 47.34183 ], + [ 8.3419624, 47.3418012 ], + [ 8.342075, 47.3418 ], + [ 8.3422074, 47.3418153 ], + [ 8.342338699999999, 47.3418304 ], + [ 8.3424122, 47.3418389 ], + [ 8.342477, 47.3418464 ], + [ 8.3425555, 47.3418453 ], + [ 8.3426246, 47.3418488 ], + [ 8.3426612, 47.341866 ], + [ 8.3427058, 47.3419033 ], + [ 8.3427423, 47.341944 ], + [ 8.3427869, 47.34198 ], + [ 8.3428615, 47.3420238 ], + [ 8.3429223, 47.3420487 ], + [ 8.3430082, 47.3420652 ], + [ 8.3431389, 47.3420737 ], + [ 8.3433458, 47.3420925 ], + [ 8.3433899, 47.34211 ], + [ 8.3434626, 47.3421515 ], + [ 8.3435507, 47.3421797 ], + [ 8.3436449, 47.3421992 ], + [ 8.3438388, 47.3422281 ], + [ 8.3439934, 47.3422562 ], + [ 8.3441016, 47.342280099999996 ], + [ 8.3442189, 47.3423087 ], + [ 8.3443286, 47.3423407 ], + [ 8.3443965, 47.3423709 ], + [ 8.344462, 47.3424071 ], + [ 8.3445583, 47.3424544 ], + [ 8.3446385, 47.3425057 ], + [ 8.3446953, 47.3425471 ], + [ 8.3447335, 47.342586 ], + [ 8.34481, 47.342636 ], + [ 8.3448546, 47.3426742 ], + [ 8.3449226, 47.3427515 ], + [ 8.3449782, 47.3428147 ], + [ 8.3450246, 47.3428841 ], + [ 8.3450436, 47.3429648 ], + [ 8.3450434, 47.343024 ], + [ 8.3450159, 47.3430945 ], + [ 8.3450147, 47.3431738 ], + [ 8.3450186, 47.3433544 ], + [ 8.3450144, 47.3434286 ], + [ 8.3453754, 47.3434287 ], + [ 8.3453907, 47.3434336 ], + [ 8.3453964, 47.3434439 ], + [ 8.3453991, 47.3434645 ], + [ 8.3457196, 47.3434613 ], + [ 8.3457167, 47.3435327 ], + [ 8.346084, 47.3435293 ], + [ 8.3464525, 47.3435258 ], + [ 8.3464531, 47.3434541 ], + [ 8.3464575, 47.3434301 ], + [ 8.3464744, 47.3434201 ], + [ 8.346633, 47.3434185 ], + [ 8.3467313, 47.3434133 ], + [ 8.3467136, 47.3431999 ], + [ 8.3467276, 47.3429873 ], + [ 8.3467152, 47.3428376 ], + [ 8.3466905, 47.3427976 ], + [ 8.3466476, 47.3427812 ], + [ 8.346572, 47.3427753 ], + [ 8.3465142, 47.3427346 ], + [ 8.3464777, 47.3426701 ], + [ 8.3464011, 47.3424752 ], + [ 8.3462354, 47.342241 ], + [ 8.3459948, 47.3419717 ], + [ 8.345888, 47.3418677 ], + [ 8.3457999, 47.3418116 ], + [ 8.3451676, 47.3414201 ], + [ 8.3449783, 47.3412902 ], + [ 8.344906, 47.3412423 ], + [ 8.3448298, 47.3412097 ], + [ 8.3447528, 47.3412069 ], + [ 8.3446716, 47.3412329 ], + [ 8.3445626, 47.3412771 ], + [ 8.3444725, 47.341284 ], + [ 8.3444058, 47.3412334 ], + [ 8.3444103, 47.3411605 ], + [ 8.3444609, 47.3411181 ], + [ 8.3445269, 47.3410887 ], + [ 8.3445235, 47.341029 ], + [ 8.3444523, 47.3409964 ], + [ 8.3443295, 47.3409714 ], + [ 8.3442316, 47.3409592 ], + [ 8.3440876, 47.3409238 ], + [ 8.3439177, 47.340863 ], + [ 8.3437467, 47.34082 ], + [ 8.3435465, 47.3407953 ], + [ 8.3434175, 47.3407911 ], + [ 8.3432785, 47.3407623 ], + [ 8.3431004, 47.3407379 ], + [ 8.3430007, 47.3407189 ], + [ 8.3428347, 47.3406831 ], + [ 8.3426584, 47.340619 ], + [ 8.3425321, 47.3406013 ], + [ 8.3424173, 47.3405958 ], + [ 8.3423479, 47.3405853 ], + [ 8.3422505, 47.3405327 ], + [ 8.3421508, 47.3405102 ], + [ 8.3419587, 47.3404955 ], + [ 8.341538, 47.3405044 ], + [ 8.3412877, 47.3405394 ], + [ 8.3410826, 47.3406132 ], + [ 8.3409046, 47.3406486 ], + [ 8.3407137, 47.3406741 ], + [ 8.3405803, 47.3406788 ], + [ 8.3404949, 47.3407122 ], + [ 8.3404146, 47.3407566 ], + [ 8.3403325, 47.3408481 ], + [ 8.3402452, 47.3409765 ], + [ 8.3402562, 47.3410301 ], + [ 8.3402964, 47.3411113 ], + [ 8.3403188, 47.3412296 ], + [ 8.3403472, 47.3413389 ], + [ 8.3403458, 47.3413971 ], + [ 8.340108, 47.3416926 ], + [ 8.339797, 47.3420575 ], + [ 8.3396866, 47.3422036 ], + [ 8.3396261, 47.3422696 ], + [ 8.339498, 47.3424091 ], + [ 8.3394075, 47.3425116 ], + [ 8.3393673, 47.342557 ], + [ 8.3392652, 47.3426621 ], + [ 8.3391813, 47.3427961 ], + [ 8.3390114, 47.342998 ], + [ 8.3388851, 47.3431336 ], + [ 8.3388001, 47.3431814 ], + [ 8.3387246, 47.3432303 ], + [ 8.3386842, 47.3432978 ], + [ 8.3386565, 47.3433708 ], + [ 8.3386148, 47.3433936 ], + [ 8.3385489, 47.3433977 ], + [ 8.3384359, 47.3434 ], + [ 8.3382516, 47.3434869 ], + [ 8.3381436, 47.3435003 ], + [ 8.3380758, 47.3434932 ], + [ 8.3380322, 47.3434545 ], + [ 8.3380047, 47.3433743 ], + [ 8.3379688, 47.3432774 ], + [ 8.3379194, 47.3432007 ], + [ 8.3378191, 47.3431045 ], + [ 8.3377222, 47.343016 ], + [ 8.3376678, 47.3429305 ], + [ 8.3375364, 47.3426892 ], + [ 8.3373708, 47.3423498 ], + [ 8.3372643, 47.3420993 ], + [ 8.3372092, 47.34178 ], + [ 8.3371714, 47.3414628 ], + [ 8.3371892, 47.3412714 ], + [ 8.3372812, 47.3408812 ], + [ 8.3373297, 47.3407644 ], + [ 8.3374025, 47.3406432 ], + [ 8.3374574, 47.3405721 ], + [ 8.3374947, 47.3405207 ], + [ 8.3375061, 47.3404688 ], + [ 8.3375029, 47.3404204 ], + [ 8.3375172, 47.3403638 ], + [ 8.337578, 47.3402469 ], + [ 8.3376672, 47.3401009 ], + [ 8.3377513, 47.3400001 ], + [ 8.337792199999999, 47.3399376 ], + [ 8.3378258, 47.3398464 ], + [ 8.3379239, 47.3397073 ], + [ 8.3379949, 47.3396101 ], + [ 8.3380419, 47.3395382 ], + [ 8.3381865, 47.3393742 ], + [ 8.3382926, 47.3392456 ], + [ 8.3384615, 47.3391175 ], + [ 8.3385652, 47.3390661 ], + [ 8.3386664, 47.3390337 ], + [ 8.3388364, 47.338995 ], + [ 8.3389724, 47.3389712 ], + [ 8.3390541, 47.3389189 ], + [ 8.339211, 47.3388625 ], + [ 8.3394228, 47.3387682 ], + [ 8.3395227, 47.338725 ], + [ 8.339679199999999, 47.338654 ], + [ 8.3398503, 47.3385449 ], + [ 8.3399748, 47.3384552 ], + [ 8.340047, 47.3383471 ], + [ 8.3401455, 47.3382801 ], + [ 8.3402555, 47.3382308 ], + [ 8.3403857, 47.3381644 ], + [ 8.3405481, 47.3380439 ], + [ 8.3407638, 47.3379307 ], + [ 8.3409175, 47.3378536 ], + [ 8.3411883, 47.3377511 ], + [ 8.3413456, 47.3376997 ], + [ 8.3415386, 47.337629 ], + [ 8.3417753, 47.3375445 ], + [ 8.3420091, 47.3374824 ], + [ 8.3422774, 47.3374122 ], + [ 8.3425738, 47.3373429 ], + [ 8.3427501, 47.3373035 ], + [ 8.3430372, 47.3372353 ], + [ 8.3432633, 47.3371777 ], + [ 8.3434471, 47.3371149 ], + [ 8.343734, 47.3370412 ], + [ 8.3439975, 47.3369699 ], + [ 8.3442052, 47.3369325 ], + [ 8.344372, 47.3368832 ], + [ 8.3444829, 47.3368656 ], + [ 8.3446169, 47.3368254 ], + [ 8.3447085, 47.3367779 ], + [ 8.3447943, 47.3367571 ], + [ 8.3449307, 47.3366757 ], + [ 8.3451222, 47.3366073 ], + [ 8.3453319, 47.3365075 ], + [ 8.3454855, 47.336426 ], + [ 8.3457233, 47.3363193 ], + [ 8.3461959, 47.336029 ], + [ 8.3462982, 47.3359691 ], + [ 8.3463938, 47.3358836 ], + [ 8.3465002, 47.3357925 ], + [ 8.3466953, 47.335665 ], + [ 8.3467494, 47.3356256 ], + [ 8.3468556, 47.3356046 ], + [ 8.3470441, 47.3355473 ], + [ 8.3472198, 47.3354712 ], + [ 8.3472927, 47.3354316 ], + [ 8.3473682, 47.3353586 ], + [ 8.3474781, 47.3352886 ], + [ 8.3476394, 47.3351981 ], + [ 8.3478154, 47.3350518 ], + [ 8.3479616, 47.3349113 ], + [ 8.3480806, 47.3348201 ], + [ 8.348181199999999, 47.3347778 ], + [ 8.3482281, 47.3347546 ], + [ 8.348253, 47.3347232 ], + [ 8.3482777, 47.3346891 ], + [ 8.3483285, 47.3346644 ], + [ 8.3483832, 47.3346369 ], + [ 8.3484347, 47.334603 ], + [ 8.3484675, 47.3345716 ], + [ 8.3485174, 47.3345505 ], + [ 8.3485492, 47.33455 ], + [ 8.3485672, 47.334585 ], + [ 8.3485584, 47.3346851 ], + [ 8.348535, 47.3347608 ], + [ 8.3485033, 47.3347937 ], + [ 8.3485077, 47.334838 ], + [ 8.3484699, 47.3348998 ], + [ 8.3484687, 47.3349238 ], + [ 8.3484814, 47.3349497 ], + [ 8.3485185, 47.3349611 ], + [ 8.3486152, 47.3349415 ], + [ 8.3487017, 47.3348846 ], + [ 8.3487431, 47.3348143 ], + [ 8.3487448, 47.334741 ], + [ 8.3487369, 47.3346488 ], + [ 8.348694, 47.334548 ], + [ 8.3486684, 47.3344927 ], + [ 8.3486759, 47.3344475 ], + [ 8.3487183, 47.3343925 ], + [ 8.3488347, 47.3343325 ], + [ 8.348926, 47.3343221 ], + [ 8.3490069, 47.3343358 ], + [ 8.3490982, 47.3343683 ], + [ 8.3491557, 47.3343985 ], + [ 8.3491714, 47.3344243 ], + [ 8.349166, 47.334473 ], + [ 8.3491543, 47.3345098 ], + [ 8.3491838, 47.3345319 ], + [ 8.3492154, 47.3345259 ], + [ 8.3492732, 47.334505300000004 ], + [ 8.3493384, 47.3344615 ], + [ 8.3493618, 47.3344182 ], + [ 8.3493385, 47.3343706 ], + [ 8.3492692, 47.3343131 ], + [ 8.3491893, 47.3342677 ], + [ 8.3491259, 47.3342309 ], + [ 8.3491248, 47.3341752 ], + [ 8.3491727, 47.3341336 ], + [ 8.3493439, 47.3340709 ], + [ 8.3495458, 47.3339778 ], + [ 8.3497307, 47.3338938 ], + [ 8.3498249, 47.3338438 ], + [ 8.3499418, 47.3337818 ], + [ 8.3501486, 47.3336976 ], + [ 8.3504206, 47.3335749 ], + [ 8.3508181, 47.33338 ], + [ 8.3510374, 47.3332946 ], + [ 8.351272699999999, 47.333228 ], + [ 8.3513789, 47.3331924 ], + [ 8.3514363, 47.3331731 ], + [ 8.3515447, 47.3331053 ], + [ 8.3517296, 47.3330247 ], + [ 8.3518993, 47.3329631 ], + [ 8.3519715, 47.3329199 ], + [ 8.3521659, 47.3328038 ], + [ 8.352584, 47.3326253 ], + [ 8.3526563, 47.33259 ], + [ 8.3527905, 47.3325244 ], + [ 8.3529301, 47.3324453 ], + [ 8.353098899999999, 47.3323358 ], + [ 8.353286, 47.3322016 ], + [ 8.3534633, 47.3320464 ], + [ 8.3537083, 47.3318227 ], + [ 8.3539159, 47.3316081 ], + [ 8.3540096, 47.331506 ], + [ 8.3541236, 47.3314003 ], + [ 8.354154, 47.3313499 ], + [ 8.3542773, 47.3312386 ], + [ 8.354424, 47.3311226 ], + [ 8.3545225, 47.3310271 ], + [ 8.3546687, 47.3308878 ], + [ 8.3548003, 47.3307997 ], + [ 8.3549414, 47.3307206 ], + [ 8.3550469, 47.3306629 ], + [ 8.3552026, 47.3306114 ], + [ 8.3553913, 47.3305652 ], + [ 8.3556382, 47.3305297 ], + [ 8.3558682, 47.3305132 ], + [ 8.3560888, 47.3304991 ], + [ 8.3563458, 47.3305025 ], + [ 8.3565356, 47.3305186 ], + [ 8.3566833, 47.3305408 ], + [ 8.3568294, 47.3305651 ], + [ 8.3571573, 47.3305901 ], + [ 8.3573581, 47.3306062 ], + [ 8.3575686, 47.3306356 ], + [ 8.3578573, 47.3306576 ], + [ 8.358066, 47.330677 ], + [ 8.3583028, 47.3306846 ], + [ 8.3586679, 47.3306963 ], + [ 8.3587918, 47.3307053 ], + [ 8.3588589, 47.3306924 ], + [ 8.3589438, 47.3307084 ], + [ 8.3592086, 47.3307106 ], + [ 8.3594532, 47.3307185 ], + [ 8.3596584, 47.3307189 ], + [ 8.3598559, 47.3307092 ], + [ 8.3601067, 47.3306996 ], + [ 8.3603483, 47.3306586 ], + [ 8.3605378, 47.3306364 ], + [ 8.3607348, 47.3306304 ], + [ 8.360909, 47.3306226 ], + [ 8.3610222, 47.3306214 ], + [ 8.3611646, 47.3306323 ], + [ 8.3614276, 47.33067 ], + [ 8.3615744, 47.3306962 ], + [ 8.361804, 47.3307396 ], + [ 8.3619921, 47.3307821 ], + [ 8.3621414, 47.3308255 ], + [ 8.3622531, 47.3308624 ], + [ 8.3623492, 47.3309061 ], + [ 8.3624869, 47.33098 ], + [ 8.3626974, 47.3310959 ], + [ 8.362745199999999, 47.3311231 ], + [ 8.3628645, 47.3311945 ], + [ 8.3629599, 47.3312396 ], + [ 8.3630089, 47.3312707 ], + [ 8.363033, 47.3313055 ], + [ 8.3630578, 47.3313211 ], + [ 8.3630799, 47.3313124 ], + [ 8.363114, 47.3312876 ], + [ 8.3632682, 47.331382 ], + [ 8.3633203, 47.3314309 ], + [ 8.3633939, 47.331451 ], + [ 8.363439, 47.3314822 ], + [ 8.363445, 47.3315298 ], + [ 8.3634392, 47.3315551 ], + [ 8.36358, 47.3316483 ], + [ 8.3636677, 47.3317022 ], + [ 8.3637593, 47.3317585 ], + [ 8.3638492, 47.3317882 ], + [ 8.3639671, 47.3318013 ], + [ 8.3641144, 47.3317917 ], + [ 8.3642033, 47.3317715 ], + [ 8.3643495, 47.331707 ], + [ 8.364452, 47.331656100000004 ], + [ 8.3645903, 47.3316242 ], + [ 8.364716, 47.3315975 ], + [ 8.3648471, 47.3314894 ], + [ 8.364938, 47.3314254 ], + [ 8.3649951, 47.3313708 ], + [ 8.3650299, 47.3313359 ], + [ 8.3650636, 47.3313223 ], + [ 8.3651078, 47.3313331 ], + [ 8.365212, 47.3313698 ], + [ 8.3652787, 47.3313732 ], + [ 8.365359, 47.3313459 ], + [ 8.3654262, 47.3313015 ], + [ 8.3655248, 47.331271 ], + [ 8.365587, 47.3312643 ], + [ 8.3656848, 47.3312623 ], + [ 8.3657973, 47.3312154 ], + [ 8.3658638, 47.3312066 ], + [ 8.3659843, 47.3312075 ], + [ 8.3660931, 47.3311902 ], + [ 8.3662172, 47.3311523 ], + [ 8.3662515, 47.331097 ], + [ 8.3663061, 47.331057799999996 ], + [ 8.3663962, 47.331027399999996 ], + [ 8.3664607, 47.3309901 ], + [ 8.366585, 47.3309655 ], + [ 8.3666515, 47.3309271 ], + [ 8.3666302, 47.3309182 ], + [ 8.3665787, 47.3309103 ], + [ 8.3665466, 47.3308904 ], + [ 8.3665312, 47.3308584 ], + [ 8.3665554, 47.3308127 ], + [ 8.3665815, 47.3307946 ], + [ 8.3666281, 47.3307947 ], + [ 8.3666584, 47.3307536 ], + [ 8.3667068, 47.3307412 ], + [ 8.3667396, 47.3307607 ], + [ 8.3667495, 47.3307877 ], + [ 8.3667412, 47.330814 ], + [ 8.3667231, 47.3308233 ], + [ 8.3666684, 47.3308205 ], + [ 8.366651, 47.3308299 ], + [ 8.3666622, 47.3308573 ], + [ 8.366666, 47.3308816 ], + [ 8.3666588, 47.3308945 ], + [ 8.3666865, 47.3309069 ], + [ 8.3667196, 47.3308878 ], + [ 8.3668415, 47.3308144 ], + [ 8.3669266, 47.3307474 ], + [ 8.3669936, 47.3306927 ], + [ 8.3670178, 47.3306253 ], + [ 8.3670304, 47.3305438 ], + [ 8.3670094, 47.3304839 ], + [ 8.3670801, 47.3303295 ], + [ 8.3671604, 47.3302279 ], + [ 8.3672356, 47.3300898 ], + [ 8.3672841, 47.3299559 ], + [ 8.3672877, 47.3298511 ], + [ 8.3672759, 47.3297565 ], + [ 8.3672613, 47.3296599 ], + [ 8.3672596, 47.3295714 ], + [ 8.3672863, 47.3294866 ], + [ 8.3673407, 47.3294403 ], + [ 8.3673957, 47.3294286 ], + [ 8.3675269, 47.3293957 ], + [ 8.3676409, 47.3293519 ], + [ 8.3677477, 47.329304 ], + [ 8.3679358, 47.3292818 ], + [ 8.3680002, 47.3292394 ], + [ 8.3680771, 47.3291857 ], + [ 8.3681883, 47.3291419 ], + [ 8.3683222, 47.329105 ], + [ 8.3684821, 47.3290871 ], + [ 8.3686289, 47.3290541 ], + [ 8.3688532, 47.328998 ], + [ 8.3690057, 47.328968 ], + [ 8.369119, 47.3289638 ], + [ 8.3692093, 47.3289395 ], + [ 8.3693284, 47.3288681 ], + [ 8.3694787, 47.3287974 ], + [ 8.3696518, 47.3287357 ], + [ 8.3697572, 47.3286838 ], + [ 8.3698213, 47.3286292 ], + [ 8.3698545, 47.3285128 ], + [ 8.3698892, 47.3284778 ], + [ 8.36993, 47.3284591 ], + [ 8.3699252, 47.3284317 ], + [ 8.3698667, 47.3284149 ], + [ 8.3698688, 47.3283773 ], + [ 8.3699177, 47.3283391 ], + [ 8.3699656, 47.3283234 ], + [ 8.3700478, 47.3283216 ], + [ 8.370124, 47.3283045 ], + [ 8.3701643, 47.3282634 ], + [ 8.3701464, 47.3282198 ], + [ 8.3703122, 47.3281418 ], + [ 8.3705144, 47.3280606 ], + [ 8.3705485, 47.3280469 ], + [ 8.3706985, 47.327962 ], + [ 8.3708004, 47.3278805 ], + [ 8.3708497, 47.3277925 ], + [ 8.3708924, 47.3276526 ], + [ 8.3709266, 47.3275159 ], + [ 8.3709246, 47.3274161 ], + [ 8.3709255, 47.3273174 ], + [ 8.3709516, 47.3272744 ], + [ 8.3710092, 47.3272504 ], + [ 8.3711349, 47.3272217 ], + [ 8.3712433, 47.327184 ], + [ 8.3713353, 47.3271077 ], + [ 8.3713907, 47.32704 ], + [ 8.3714074, 47.3269492 ], + [ 8.3714427, 47.3268705 ], + [ 8.371517, 47.3268178 ], + [ 8.3715853, 47.3267694 ], + [ 8.3716585, 47.3267112 ], + [ 8.3717123, 47.3266683 ], + [ 8.3718367, 47.3265755 ], + [ 8.3719088, 47.3265402 ], + [ 8.3719448, 47.3265225 ], + [ 8.3720146, 47.3264689 ], + [ 8.3720258, 47.3263874 ], + [ 8.3720251, 47.3262785 ], + [ 8.3720265, 47.3262082 ], + [ 8.3720383, 47.3261582 ], + [ 8.3720361, 47.3261185 ], + [ 8.3721074, 47.3260659 ], + [ 8.3721858, 47.3260142 ], + [ 8.372270199999999, 47.3259839 ], + [ 8.3723558, 47.3259383 ], + [ 8.3725113, 47.3259133 ], + [ 8.3727297, 47.3259204 ], + [ 8.3728546, 47.3259313 ], + [ 8.3729562, 47.3259069 ], + [ 8.3730772, 47.3258589 ], + [ 8.3731585, 47.3258113 ], + [ 8.3732018, 47.3257698 ], + [ 8.3731639, 47.3257468 ], + [ 8.3731648, 47.3257155 ], + [ 8.3732138, 47.3256783 ], + [ 8.3732612, 47.3256732 ], + [ 8.3733045, 47.325699 ], + [ 8.3732519, 47.325739 ], + [ 8.3732731, 47.3257483 ], + [ 8.3733309, 47.3257576 ], + [ 8.3733502, 47.3257499 ], + [ 8.3733385, 47.3257066 ], + [ 8.373369, 47.3256593 ], + [ 8.3733909, 47.3256339 ], + [ 8.3733827, 47.325617 ], + [ 8.3733723, 47.3255955 ], + [ 8.3733806, 47.3255744 ], + [ 8.3733889, 47.3255526 ], + [ 8.373414499999999, 47.3255229 ], + [ 8.3734577, 47.3255029 ], + [ 8.3734936, 47.3254599 ], + [ 8.3735059, 47.325443 ], + [ 8.3735141, 47.3254142 ], + [ 8.3735485, 47.3253929 ], + [ 8.3735897, 47.3253678 ], + [ 8.373618, 47.3253267 ], + [ 8.3736299, 47.3252962 ], + [ 8.3736517, 47.325275 ], + [ 8.3736775, 47.3252586 ], + [ 8.3737053, 47.3252458 ], + [ 8.3737253, 47.3252295 ], + [ 8.3737365, 47.3252014 ], + [ 8.3737458, 47.3251852 ], + [ 8.3737696, 47.3251661 ], + [ 8.3737786, 47.3251268 ], + [ 8.3738201, 47.3250704 ], + [ 8.3738277, 47.3250066 ], + [ 8.3738398, 47.3249827 ], + [ 8.3738519, 47.3249573 ], + [ 8.373864, 47.3249327 ], + [ 8.3738772, 47.324913 ], + [ 8.373901, 47.324889 ], + [ 8.3739296, 47.324867 ], + [ 8.3739436, 47.3248389 ], + [ 8.3739606, 47.3248156 ], + [ 8.3739814, 47.324793 ], + [ 8.374007, 47.3247655 ], + [ 8.3740364, 47.324733 ], + [ 8.3740504, 47.3247048 ], + [ 8.3740675, 47.3246872 ], + [ 8.3741028, 47.324663 ], + [ 8.3741371, 47.3246319 ], + [ 8.3741984, 47.3246033 ], + [ 8.3742309, 47.3245834 ], + [ 8.3742712, 47.3245634 ], + [ 8.3743057, 47.3245435 ], + [ 8.3743311, 47.3245076 ], + [ 8.3743443, 47.3244906 ], + [ 8.3744183, 47.3244668 ], + [ 8.3744528, 47.3244525 ], + [ 8.37446, 47.3244231 ], + [ 8.374467899999999, 47.3243768 ], + [ 8.374477, 47.3243466 ], + [ 8.3744782, 47.3243053 ], + [ 8.3744787, 47.3242779 ], + [ 8.3744868, 47.3242422 ], + [ 8.3744927, 47.3241966 ], + [ 8.3744945, 47.3241357 ], + [ 8.3745075, 47.3241047 ], + [ 8.3745222, 47.3240647 ], + [ 8.3745332, 47.3240296 ], + [ 8.3745414, 47.3240001 ], + [ 8.3745405, 47.3239511 ], + [ 8.3745372, 47.3239266 ], + [ 8.3745358, 47.3239028 ], + [ 8.3745439, 47.3238698 ], + [ 8.3745598, 47.3238424 ], + [ 8.3745911, 47.3238099 ], + [ 8.3746205, 47.3237774 ], + [ 8.374649, 47.3237498 ], + [ 8.3746776, 47.3237279 ], + [ 8.37471, 47.3237023 ], + [ 8.3747454, 47.3236782 ], + [ 8.3747797, 47.3236534 ], + [ 8.3748024, 47.3236231 ], + [ 8.3748375, 47.3235877 ], + [ 8.3748574, 47.323563 ], + [ 8.3748724, 47.3235419 ], + [ 8.374871, 47.323516 ], + [ 8.3748804, 47.3234977 ], + [ 8.374879, 47.3234781 ], + [ 8.3748564, 47.3234559 ], + [ 8.3748665, 47.3234278 ], + [ 8.3748827, 47.3234137 ], + [ 8.3748469, 47.3234098 ], + [ 8.3748306, 47.3234183 ], + [ 8.374807, 47.3233948 ], + [ 8.3747804, 47.3233719 ], + [ 8.3747733, 47.3233524 ], + [ 8.3747471, 47.3233442 ], + [ 8.3747302, 47.3233192 ], + [ 8.3747125, 47.3233032 ], + [ 8.3747093, 47.3232857 ], + [ 8.3746908, 47.3232789 ], + [ 8.3747078, 47.3232578 ], + [ 8.3747229, 47.3232359 ], + [ 8.3747342, 47.3232183 ], + [ 8.3747619, 47.3231991 ], + [ 8.3747846, 47.3231695 ], + [ 8.3747937, 47.3231414 ], + [ 8.3747913, 47.3231176 ], + [ 8.3748075, 47.3231028 ], + [ 8.3748339, 47.3230675 ], + [ 8.3748587, 47.3230477 ], + [ 8.374880600000001, 47.3230251 ], + [ 8.3748848, 47.3229907 ], + [ 8.374896, 47.3229689 ], + [ 8.3749041, 47.3229381 ], + [ 8.3749165, 47.3229246 ], + [ 8.3749082, 47.3228974 ], + [ 8.3749052, 47.322889 ], + [ 8.3749048, 47.3228694 ], + [ 8.3749173, 47.322863 ], + [ 8.374916, 47.3228483 ], + [ 8.3749184, 47.3228175 ], + [ 8.3749034, 47.3227917 ], + [ 8.3748971, 47.3227631 ], + [ 8.3748824, 47.3227492 ], + [ 8.3748607, 47.3227298 ], + [ 8.374813, 47.3227078 ], + [ 8.374778, 47.3226998 ], + [ 8.3747325, 47.3226967 ], + [ 8.374686, 47.3226873 ], + [ 8.3746581, 47.3226974 ], + [ 8.3746587, 47.3227282 ], + [ 8.3746563, 47.3227576 ], + [ 8.3746547, 47.3227744 ], + [ 8.3746512, 47.3227983 ], + [ 8.3746172, 47.3227867 ], + [ 8.3745921, 47.3227883 ], + [ 8.3745752, 47.3228144 ], + [ 8.3745601, 47.3228383 ], + [ 8.3745673, 47.32286 ], + [ 8.3745725, 47.3228795 ], + [ 8.3745864, 47.3229004 ], + [ 8.3745704, 47.3229278 ], + [ 8.374566, 47.322951 ], + [ 8.3745493, 47.3229904 ], + [ 8.3745391, 47.3230143 ], + [ 8.3745395, 47.3230339 ], + [ 8.3745066, 47.3230342 ], + [ 8.3744952, 47.3230427 ], + [ 8.3744994, 47.3230629 ], + [ 8.3745026, 47.3230825 ], + [ 8.3744792, 47.3231198 ], + [ 8.37443, 47.323128 ], + [ 8.3743963, 47.3231339 ], + [ 8.3743762, 47.3231446 ], + [ 8.3743841, 47.3231578 ], + [ 8.3743815, 47.323174 ], + [ 8.3743508, 47.3231841 ], + [ 8.3743229, 47.3231955 ], + [ 8.3743397, 47.323215 ], + [ 8.3743353, 47.3232367 ], + [ 8.3743425, 47.323264 ], + [ 8.3743506, 47.3232835 ], + [ 8.3743722, 47.3232987 ], + [ 8.3744033, 47.323311 ], + [ 8.3744317, 47.3233282 ], + [ 8.374466, 47.3233545 ], + [ 8.3744945, 47.3233802 ], + [ 8.374513199999999, 47.3234003 ], + [ 8.3745223, 47.3234198 ], + [ 8.374512, 47.3234416 ], + [ 8.3745277, 47.3234541 ], + [ 8.3745416, 47.3234756 ], + [ 8.3745536, 47.3234944 ], + [ 8.3745592, 47.323542 ], + [ 8.3745403, 47.3235646 ], + [ 8.3745013, 47.3235965 ], + [ 8.3744585, 47.3236354 ], + [ 8.3744177, 47.3236778 ], + [ 8.3743748, 47.323716 ], + [ 8.3743367, 47.3237471 ], + [ 8.3743065, 47.3237838 ], + [ 8.3742636, 47.3238199 ], + [ 8.3742063, 47.3238604 ], + [ 8.3741664, 47.3238993 ], + [ 8.3741303, 47.3239242 ], + [ 8.374088799999999, 47.3239371 ], + [ 8.374051, 47.3239332 ], + [ 8.3740177, 47.3239069 ], + [ 8.3740019, 47.3238903 ], + [ 8.3739543, 47.323876 ], + [ 8.3739188, 47.3238883 ], + [ 8.373886, 47.3238956 ], + [ 8.3738278, 47.3238828 ], + [ 8.3737785, 47.323884 ], + [ 8.3737507, 47.323894 ], + [ 8.3737085, 47.3239168 ], + [ 8.3736684, 47.3239438 ], + [ 8.3736255, 47.3239757 ], + [ 8.3736057, 47.3240067 ], + [ 8.3735638, 47.3240393 ], + [ 8.3735333, 47.3240606 ], + [ 8.3735017, 47.3240826 ], + [ 8.3734781, 47.3241129 ], + [ 8.373443, 47.3241489 ], + [ 8.3734147, 47.324187 ], + [ 8.3733755, 47.3242105 ], + [ 8.3733364, 47.3242431 ], + [ 8.373308, 47.3242755 ], + [ 8.3732612, 47.3243089 ], + [ 8.3732259, 47.324333 ], + [ 8.3731878, 47.3243649 ], + [ 8.3731468, 47.3243961 ], + [ 8.3731059, 47.3244329 ], + [ 8.3730614, 47.3244736 ], + [ 8.372843, 47.3246121 ], + [ 8.372663, 47.3247585 ], + [ 8.3725763, 47.3248224 ], + [ 8.3724942, 47.3248975 ], + [ 8.3724146, 47.3249614 ], + [ 8.3723615, 47.3249996 ], + [ 8.3723021, 47.3250063 ], + [ 8.372226, 47.3250274 ], + [ 8.3721691, 47.3250168 ], + [ 8.3721528, 47.3249833 ], + [ 8.3721493, 47.3249467 ], + [ 8.3721981, 47.3249045 ], + [ 8.3723115, 47.3248321 ], + [ 8.3724766, 47.3247247 ], + [ 8.3727072, 47.3245554 ], + [ 8.3728927, 47.3244009 ], + [ 8.3730571, 47.3242548 ], + [ 8.3731769, 47.3241436 ], + [ 8.3733059, 47.3239988 ], + [ 8.373446, 47.3238448 ], + [ 8.3734779, 47.3238084 ], + [ 8.3735819, 47.3236897 ], + [ 8.3736098, 47.3236533 ], + [ 8.373619099999999, 47.3236412 ], + [ 8.3736786, 47.3235636 ], + [ 8.3737469, 47.3234316 ], + [ 8.3738102, 47.323306 ], + [ 8.3738247, 47.3232771 ], + [ 8.3739474, 47.3230998 ], + [ 8.3739919, 47.3229853 ], + [ 8.3740433, 47.3228586 ], + [ 8.3741278, 47.3226857 ], + [ 8.3741925, 47.3225161 ], + [ 8.374196, 47.3225071 ], + [ 8.3742613, 47.3223403 ], + [ 8.3742762, 47.3222333 ], + [ 8.3742421, 47.3221838 ], + [ 8.3742375, 47.3221756 ], + [ 8.3742146, 47.3221337 ], + [ 8.374194899999999, 47.3220883 ], + [ 8.3742075, 47.3220535 ], + [ 8.3742568, 47.3220192 ], + [ 8.3742469, 47.3219635 ], + [ 8.3742049, 47.3219096 ], + [ 8.3742073, 47.3218607 ], + [ 8.3742476, 47.3218187 ], + [ 8.3742778, 47.3217735 ], + [ 8.3742385, 47.3216873 ], + [ 8.3742039, 47.3216098 ], + [ 8.3741874, 47.3215564 ], + [ 8.3742008, 47.3215012 ], + [ 8.3742045, 47.3214599 ], + [ 8.3742063, 47.3214398 ], + [ 8.3741733, 47.321396 ], + [ 8.3741255, 47.3213256 ], + [ 8.3741037, 47.3212865 ], + [ 8.3741163, 47.3212462 ], + [ 8.3741459, 47.3211673 ], + [ 8.3741446, 47.3210965 ], + [ 8.3741555, 47.3210248 ], + [ 8.3741706, 47.3209444 ], + [ 8.3741866, 47.3209088 ], + [ 8.3741864, 47.3208388 ], + [ 8.3741711, 47.3207862 ], + [ 8.3741507, 47.3207022 ], + [ 8.3741277, 47.3206591 ], + [ 8.3741174, 47.3206524 ], + [ 8.3740649, 47.320618 ], + [ 8.3740516, 47.3205599 ], + [ 8.3740361, 47.3204987 ], + [ 8.3740227, 47.3204335 ], + [ 8.3740092, 47.3203604 ], + [ 8.3739969, 47.3202323 ], + [ 8.3739951, 47.3201347 ], + [ 8.3739796, 47.3200727 ], + [ 8.3739614, 47.3199879 ], + [ 8.3739479, 47.3199211 ], + [ 8.3739403, 47.3198637 ], + [ 8.3739268, 47.319797 ], + [ 8.3739191, 47.3197373 ], + [ 8.3739051, 47.3196962 ], + [ 8.3739004, 47.3196824 ], + [ 8.373883, 47.31964 ], + [ 8.3738658, 47.3196142 ], + [ 8.3738725, 47.3195559 ], + [ 8.3738796, 47.3195149 ], + [ 8.3738634, 47.3194789 ], + [ 8.3738471, 47.3194342 ], + [ 8.373854, 47.3193901 ], + [ 8.3738586, 47.3193389 ], + [ 8.3738421, 47.3192855 ], + [ 8.3738256, 47.3192322 ], + [ 8.3738182, 47.3191685 ], + [ 8.3738222, 47.3191191 ], + [ 8.3738275, 47.319054 ], + [ 8.3738321, 47.3190476 ], + [ 8.3738574, 47.3190123 ], + [ 8.3738247, 47.3189659 ], + [ 8.3738327, 47.3187601 ], + [ 8.3739919, 47.3184565 ], + [ 8.3741891, 47.3181289 ], + [ 8.3745034, 47.3176908 ], + [ 8.3747367, 47.3174223 ], + [ 8.3748092, 47.3173226 ], + [ 8.3748881, 47.3172141 ], + [ 8.3749516, 47.3172083 ], + [ 8.3750306, 47.3172378 ], + [ 8.3750971, 47.317168 ], + [ 8.3750546, 47.317119 ], + [ 8.3750439, 47.3171067 ], + [ 8.3750534, 47.3170509 ], + [ 8.375146, 47.3169434 ], + [ 8.3753408, 47.3167628 ], + [ 8.3754893, 47.3166342 ], + [ 8.3755477, 47.3165848 ], + [ 8.3755884, 47.3165528 ], + [ 8.3756196, 47.3165202 ], + [ 8.3756695, 47.3164731 ], + [ 8.375709, 47.3164307 ], + [ 8.375764, 47.3163753 ], + [ 8.376016, 47.3161351 ], + [ 8.3764101, 47.3157357 ], + [ 8.376553, 47.3155791 ], + [ 8.3767223, 47.3153949 ], + [ 8.3770147, 47.3151361 ], + [ 8.3770562, 47.3150906 ], + [ 8.3771261, 47.3150313 ], + [ 8.3771855, 47.3149826 ], + [ 8.3772226, 47.3149296 ], + [ 8.3772737, 47.3148878 ], + [ 8.3773191, 47.314825 ], + [ 8.3773458, 47.3147819 ], + [ 8.3774087, 47.3146918 ], + [ 8.3774565, 47.3146448 ], + [ 8.3775105, 47.3145856 ], + [ 8.3775907, 47.3145165 ], + [ 8.3776416, 47.3144641 ], + [ 8.3776745, 47.3144134 ], + [ 8.3777006, 47.3143364 ], + [ 8.3777428, 47.3142736 ], + [ 8.3777746, 47.3142229 ], + [ 8.3778261, 47.3141495 ], + [ 8.3778559, 47.3141026 ], + [ 8.3778998, 47.3140691 ], + [ 8.3779523, 47.3140431 ], + [ 8.37799, 47.313966 ], + [ 8.3780216, 47.313904 ], + [ 8.378046, 47.3138496 ], + [ 8.3780798, 47.3137952 ], + [ 8.3780927, 47.3137491 ], + [ 8.3781248, 47.3136586 ], + [ 8.378127, 47.3136096 ], + [ 8.378129, 47.3135524 ], + [ 8.3781392, 47.3134793 ], + [ 8.3781348, 47.3134191 ], + [ 8.3781466, 47.313371599999996 ], + [ 8.37817, 47.3133232 ], + [ 8.3781827, 47.3132704 ], + [ 8.3781828, 47.313265 ], + [ 8.3781839, 47.313223 ], + [ 8.3781739, 47.3131508 ], + [ 8.3781658, 47.313062 ], + [ 8.3781567, 47.3129801 ], + [ 8.378156, 47.3129447 ], + [ 8.378146, 47.3128703 ], + [ 8.3781293, 47.3127778 ], + [ 8.3781023, 47.3127012 ], + [ 8.3780957, 47.3126403 ], + [ 8.3781019, 47.3125236 ], + [ 8.3780972, 47.3124484 ], + [ 8.3780753, 47.3123657 ], + [ 8.3780793, 47.3122964 ], + [ 8.3780785, 47.3122084 ], + [ 8.3780548, 47.3121363 ], + [ 8.378044, 47.3120732 ], + [ 8.3780753, 47.3119931 ], + [ 8.37807, 47.3119883 ], + [ 8.378031, 47.3119528 ], + [ 8.3779905, 47.3118914 ], + [ 8.3779592, 47.3118119 ], + [ 8.3779435, 47.3117149 ], + [ 8.377898, 47.3116174 ], + [ 8.37787, 47.3115423 ], + [ 8.3778218, 47.3114674 ], + [ 8.3778051, 47.3113765 ], + [ 8.3777829, 47.311324 ], + [ 8.3777822, 47.3112397 ], + [ 8.3777837, 47.3111531 ], + [ 8.3777309, 47.3110624 ], + [ 8.3777182, 47.3110076 ], + [ 8.3776732, 47.3109357 ], + [ 8.3776218, 47.3108238 ], + [ 8.3776056, 47.3107879 ], + [ 8.3775759, 47.310734 ], + [ 8.3775444, 47.3106476 ], + [ 8.3774819, 47.3105947 ], + [ 8.3774704, 47.3104999 ], + [ 8.3774537, 47.3104617 ], + [ 8.3774493, 47.3104558 ], + [ 8.3773971, 47.3103869 ], + [ 8.3773528, 47.3103451 ], + [ 8.3773231, 47.3102949 ], + [ 8.3773023, 47.3102085 ], + [ 8.3772627, 47.310138 ], + [ 8.377223, 47.3100608 ], + [ 8.3771577, 47.3100335 ], + [ 8.3771071, 47.3099925 ], + [ 8.3771314, 47.3099343 ], + [ 8.377157799999999, 47.3098784 ], + [ 8.3771337, 47.3098417 ], + [ 8.3771112, 47.3097772 ], + [ 8.3771054, 47.3097012 ], + [ 8.377043, 47.309655 ], + [ 8.3770171, 47.3095799 ], + [ 8.3770056, 47.3095364 ], + [ 8.3769507, 47.3094397 ], + [ 8.3768801, 47.3093567 ], + [ 8.3768433, 47.3092697 ], + [ 8.3768294, 47.3092111 ], + [ 8.3768135, 47.309157 ], + [ 8.3767874, 47.3090187 ], + [ 8.3767561, 47.3089376 ], + [ 8.3767321, 47.3088558 ], + [ 8.3767655, 47.3087706 ], + [ 8.3767232, 47.3086767 ], + [ 8.3767029, 47.3086144 ], + [ 8.3766768, 47.3085318 ], + [ 8.3766633, 47.3084408 ], + [ 8.3766391, 47.3083454 ], + [ 8.3766365, 47.3082881 ], + [ 8.3766354, 47.3082641 ], + [ 8.3766107, 47.3081966 ], + [ 8.3765812, 47.308102 ], + [ 8.3765521, 47.3080269 ], + [ 8.3765522, 47.3079268 ], + [ 8.376567, 47.3078725 ], + [ 8.3765788, 47.307817 ], + [ 8.3765806, 47.3078084 ], + [ 8.3765742, 47.3077008 ], + [ 8.3765582, 47.307591 ], + [ 8.3765462, 47.3075572 ], + [ 8.3765312, 47.3075152 ], + [ 8.3764594, 47.3074247 ], + [ 8.3764077, 47.3072791 ], + [ 8.3763518, 47.3071885 ], + [ 8.3763304, 47.3070727 ], + [ 8.3763295, 47.3069779 ], + [ 8.3763059, 47.3068553 ], + [ 8.3762879, 47.3067554 ], + [ 8.3762862, 47.3066146 ], + [ 8.3762523, 47.3065125 ], + [ 8.3762363, 47.3064562 ], + [ 8.3761924, 47.3063828 ], + [ 8.3761831, 47.3062865 ], + [ 8.3761627, 47.3062212 ], + [ 8.3761159, 47.3061086 ], + [ 8.3761054, 47.3060821 ], + [ 8.3760868, 47.3060351 ], + [ 8.376085, 47.3059455 ], + [ 8.376068, 47.3058357 ], + [ 8.376051499999999, 47.3057568 ], + [ 8.3760473, 47.3057283 ], + [ 8.3760294, 47.3056072 ], + [ 8.3759944, 47.3054983 ], + [ 8.3759396, 47.3053046 ], + [ 8.3759159, 47.3051836 ], + [ 8.3759068, 47.3050481 ], + [ 8.3758596, 47.3049153 ], + [ 8.3758446, 47.3048002 ], + [ 8.3758304, 47.3047528 ], + [ 8.3758063, 47.3046715 ], + [ 8.3758048, 47.3046666 ], + [ 8.3757669, 47.3045765 ], + [ 8.3757357, 47.3044992 ], + [ 8.3757148, 47.3043571 ], + [ 8.3756775, 47.3042407 ], + [ 8.375653, 47.3041318 ], + [ 8.3756403, 47.3040258 ], + [ 8.3756201, 47.3039183 ], + [ 8.3756063, 47.3038107 ], + [ 8.3755591, 47.3036809 ], + [ 8.3755448, 47.3035515 ], + [ 8.3755223, 47.3034305 ], + [ 8.3754943, 47.303308 ], + [ 8.3755067, 47.3031822 ], + [ 8.3754879, 47.303092 ], + [ 8.3754588, 47.3029628 ], + [ 8.3755027, 47.302827 ], + [ 8.3755023, 47.3027577 ], + [ 8.3754921, 47.3026712 ], + [ 8.3754937, 47.3025395 ], + [ 8.3755189, 47.3024241 ], + [ 8.375537, 47.3023178 ], + [ 8.3755383, 47.3022252 ], + [ 8.3755528, 47.3021558 ], + [ 8.3755992, 47.3020388 ], + [ 8.3755961, 47.3019387 ], + [ 8.3756394, 47.3018277 ], + [ 8.3756368, 47.3018152 ], + [ 8.3756125, 47.3017 ], + [ 8.3756402, 47.3016041 ], + [ 8.3757079, 47.3014365 ], + [ 8.3757502, 47.3013262 ], + [ 8.3757896, 47.3012288 ], + [ 8.3757802, 47.3011325 ], + [ 8.3757628, 47.301007 ], + [ 8.3757521, 47.3008964 ], + [ 8.375773, 47.3007765 ], + [ 8.3757973, 47.3006627 ], + [ 8.3758111, 47.3005602 ], + [ 8.3758449, 47.3005005 ], + [ 8.3758949, 47.3004067 ], + [ 8.3759203, 47.3002981 ], + [ 8.3759175, 47.3002116 ], + [ 8.3759199, 47.3001205 ], + [ 8.375934, 47.2999811 ], + [ 8.3759664, 47.2998419 ], + [ 8.3759692, 47.299830299999996 ], + [ 8.3759888, 47.2997815 ], + [ 8.3760075, 47.2997351 ], + [ 8.3760494, 47.2996178 ], + [ 8.3760633, 47.299580399999996 ], + [ 8.3760812, 47.2995321 ], + [ 8.3761599, 47.2994266 ], + [ 8.3762059, 47.2993427 ], + [ 8.376226, 47.2993051 ], + [ 8.3762625, 47.299237 ], + [ 8.3763127, 47.2991485 ], + [ 8.3763588, 47.2990684 ], + [ 8.3764195, 47.2989806 ], + [ 8.3764979, 47.2988715 ], + [ 8.3765561, 47.2987851 ], + [ 8.3766029, 47.2987156 ], + [ 8.3766295, 47.2986939 ], + [ 8.3766728, 47.2986586 ], + [ 8.3767277, 47.2985949 ], + [ 8.3767847, 47.2985305 ], + [ 8.3768386, 47.2984691 ], + [ 8.3769017, 47.2983956 ], + [ 8.3769128, 47.2983599 ], + [ 8.3769326, 47.298296 ], + [ 8.3769788, 47.2982241 ], + [ 8.3770278, 47.2981793 ], + [ 8.3770793, 47.2981066 ], + [ 8.3771177, 47.2980602 ], + [ 8.3771705, 47.2980192 ], + [ 8.3772197, 47.2979671 ], + [ 8.3772598, 47.2978526 ], + [ 8.3772451, 47.2977664 ], + [ 8.3772796, 47.2977394 ], + [ 8.3774064, 47.2977354 ], + [ 8.3775248, 47.2977522 ], + [ 8.3776109, 47.2977243 ], + [ 8.377648, 47.2976547 ], + [ 8.377726299999999, 47.2975566 ], + [ 8.377804, 47.2974727 ], + [ 8.3778623, 47.2974293 ], + [ 8.3779513, 47.2973577 ], + [ 8.3780582, 47.2972955 ], + [ 8.3781451, 47.2972327 ], + [ 8.3782308, 47.2971667 ], + [ 8.3783379, 47.2971165 ], + [ 8.3784041, 47.2970785 ], + [ 8.3784834, 47.2970277 ], + [ 8.3785892, 47.2969655 ], + [ 8.3786861, 47.2969027 ], + [ 8.3788295, 47.2968234 ], + [ 8.3789069, 47.2967926 ], + [ 8.3790119, 47.2967551 ], + [ 8.3791124, 47.2967072 ], + [ 8.3792275, 47.296676 ], + [ 8.3792663, 47.296662 ], + [ 8.3793337, 47.2966377 ], + [ 8.3794114, 47.2966058 ], + [ 8.3794486, 47.2965906 ], + [ 8.3795372, 47.2965675 ], + [ 8.3795694, 47.2965546 ], + [ 8.3796389, 47.2965269 ], + [ 8.3797128, 47.2964865 ], + [ 8.3797931, 47.2964309 ], + [ 8.3798288, 47.2964139 ], + [ 8.3798969, 47.2963815 ], + [ 8.3799249, 47.2963715 ], + [ 8.3800163, 47.2963391 ], + [ 8.3800339, 47.2963258 ], + [ 8.380052599999999, 47.2963117 ], + [ 8.3800925, 47.2962695 ], + [ 8.3801095, 47.2962515 ], + [ 8.3801645, 47.2962105 ], + [ 8.3802952, 47.2961759 ], + [ 8.3803569, 47.296142 ], + [ 8.380424, 47.2960905 ], + [ 8.3805159, 47.2960627 ], + [ 8.380641, 47.2960156 ], + [ 8.3806873, 47.2959912 ], + [ 8.3807479, 47.2959562 ], + [ 8.3808252, 47.2959299 ], + [ 8.3809026, 47.2959061 ], + [ 8.3809701, 47.2958928 ], + [ 8.3810363, 47.2958658 ], + [ 8.3812127, 47.2958228 ], + [ 8.3812855, 47.2957839 ], + [ 8.3813581, 47.29573 ], + [ 8.381404, 47.2956771 ], + [ 8.3815444, 47.2956234 ], + [ 8.3816194, 47.2955837 ], + [ 8.3816691, 47.2955618 ], + [ 8.3817631, 47.29553 ], + [ 8.3818459, 47.2954943 ], + [ 8.3819106, 47.2954341 ], + [ 8.3820198, 47.2953726 ], + [ 8.3821126, 47.2953368 ], + [ 8.3821975, 47.2952868 ], + [ 8.382287999999999, 47.2952414 ], + [ 8.3823607, 47.2951986 ], + [ 8.3824558, 47.2951628 ], + [ 8.3825467, 47.2951445 ], + [ 8.3826795, 47.295106 ], + [ 8.3827409, 47.2950426 ], + [ 8.3827945, 47.294988 ], + [ 8.3828793, 47.2949324 ], + [ 8.3829656, 47.2949014 ], + [ 8.383077, 47.2948448 ], + [ 8.383162, 47.2948059 ], + [ 8.3832758, 47.2947595 ], + [ 8.3833608, 47.294715 ], + [ 8.3834767, 47.2946599 ], + [ 8.3835584, 47.294621 ], + [ 8.3836211, 47.2945775 ], + [ 8.3837006, 47.2945379 ], + [ 8.3837965, 47.2944869 ], + [ 8.3838443, 47.2944117 ], + [ 8.3838717, 47.2943804 ], + [ 8.3839367, 47.2943441 ], + [ 8.384013, 47.2943171 ], + [ 8.3840816, 47.2942919 ], + [ 8.3841342, 47.2942429 ], + [ 8.3842157, 47.2941897 ], + [ 8.3843028, 47.2941396 ], + [ 8.3843724, 47.294112 ], + [ 8.3844013, 47.2940844 ], + [ 8.3844415, 47.2940461 ], + [ 8.3845275, 47.2939984 ], + [ 8.3845992, 47.2939604 ], + [ 8.384635, 47.2939268 ], + [ 8.3846617, 47.2939018 ], + [ 8.3846775, 47.2938889 ], + [ 8.3847111, 47.2938616 ], + [ 8.3847803, 47.2938021 ], + [ 8.3848264, 47.2937651 ], + [ 8.3849297, 47.2937102 ], + [ 8.384993, 47.2936717 ], + [ 8.385032, 47.2936106 ], + [ 8.3851267, 47.2935501 ], + [ 8.3851818, 47.2935178 ], + [ 8.38526, 47.2934678 ], + [ 8.3853474, 47.2934408 ], + [ 8.3854068, 47.2933933 ], + [ 8.3854563, 47.293361 ], + [ 8.385509, 47.2933136 ], + [ 8.3855414, 47.2932505 ], + [ 8.3856048, 47.2931767 ], + [ 8.3856876, 47.2931394 ], + [ 8.3857838, 47.2931028 ], + [ 8.3858585, 47.2930449 ], + [ 8.3859121, 47.2929831 ], + [ 8.385939, 47.292924 ], + [ 8.385985699999999, 47.2928472 ], + [ 8.3860535, 47.2927695 ], + [ 8.3861219, 47.2927355 ], + [ 8.3862062, 47.2927113 ], + [ 8.3862599, 47.292668 ], + [ 8.3863425, 47.2926014 ], + [ 8.3864394, 47.2925577 ], + [ 8.3864955, 47.2925198 ], + [ 8.3865152, 47.2925017 ], + [ 8.3865361, 47.2924824 ], + [ 8.3865635, 47.2924571 ], + [ 8.386629, 47.2923746 ], + [ 8.3867147, 47.2923071 ], + [ 8.3867687, 47.2922724 ], + [ 8.3868224, 47.2922242 ], + [ 8.3868662, 47.2921784 ], + [ 8.386922, 47.2921199 ], + [ 8.3869761, 47.2920947 ], + [ 8.3870368, 47.2920592 ], + [ 8.3870858, 47.2919959 ], + [ 8.3872038, 47.291928 ], + [ 8.3872686, 47.291879 ], + [ 8.3873275, 47.2918029 ], + [ 8.3873838, 47.2917753 ], + [ 8.3874522, 47.2917365 ], + [ 8.3875247, 47.2916794 ], + [ 8.3876128, 47.2916222 ], + [ 8.3876628, 47.2915461 ], + [ 8.3876972, 47.2914679 ], + [ 8.3877484, 47.2913958 ], + [ 8.3878341, 47.2913274 ], + [ 8.3879211, 47.2912758 ], + [ 8.3880047, 47.2912114 ], + [ 8.3880404, 47.2911474 ], + [ 8.3880519, 47.2911281 ], + [ 8.3880784, 47.2910834 ], + [ 8.3881533, 47.2910414 ], + [ 8.3882291, 47.2909771 ], + [ 8.3882936, 47.290901 ], + [ 8.3883382, 47.2908401 ], + [ 8.3884176, 47.2907917 ], + [ 8.3884814, 47.2907498 ], + [ 8.3885503, 47.2906759 ], + [ 8.3886339, 47.29061 ], + [ 8.3886608, 47.290554 ], + [ 8.3887, 47.2905004 ], + [ 8.3887484, 47.290461 ], + [ 8.3887969, 47.2904272 ], + [ 8.3888375, 47.2903989 ], + [ 8.3888976, 47.2903292 ], + [ 8.3889496, 47.2902924 ], + [ 8.3889636, 47.2902825 ], + [ 8.3890117, 47.2902272 ], + [ 8.389083, 47.2901661 ], + [ 8.389086, 47.2901629 ], + [ 8.3886464, 47.2900271 ], + [ 8.3881804, 47.2898831 ], + [ 8.3881199, 47.2899559 ], + [ 8.3880829, 47.2900022 ], + [ 8.3880316, 47.2900653 ], + [ 8.3879646, 47.2901149 ], + [ 8.3878786, 47.290156 ], + [ 8.3878149, 47.2902049 ], + [ 8.3877326, 47.2902713 ], + [ 8.3876935, 47.2903279 ], + [ 8.3876579, 47.2903933 ], + [ 8.38763, 47.2904545 ], + [ 8.3876131, 47.2905126 ], + [ 8.3875504, 47.2905527 ], + [ 8.387459, 47.2906089 ], + [ 8.387391, 47.2906626 ], + [ 8.3873449, 47.2906994 ], + [ 8.3873156, 47.2907433 ], + [ 8.3873161, 47.2907758 ], + [ 8.3872603, 47.2908294 ], + [ 8.3872476, 47.2908691 ], + [ 8.3872038, 47.2909075 ], + [ 8.387138, 47.2909643 ], + [ 8.3870534, 47.291026 ], + [ 8.3870018, 47.2910645 ], + [ 8.3869414, 47.2911101 ], + [ 8.3868646, 47.2911757 ], + [ 8.3867882, 47.291262 ], + [ 8.386719, 47.2913149 ], + [ 8.3866332, 47.2913694 ], + [ 8.3865784, 47.2914198 ], + [ 8.3865041, 47.2914989 ], + [ 8.3864504, 47.2915509 ], + [ 8.3863911, 47.2915941 ], + [ 8.3863054, 47.2916574 ], + [ 8.3862572, 47.291699 ], + [ 8.3862025, 47.2917565 ], + [ 8.386094, 47.2918509 ], + [ 8.3860382, 47.2919045 ], + [ 8.3859671, 47.2919756 ], + [ 8.3859266, 47.2920062 ], + [ 8.3858792, 47.2920421 ], + [ 8.3858131, 47.2920815 ], + [ 8.385778, 47.2921041 ], + [ 8.3857709, 47.2921086 ], + [ 8.3857394, 47.2921288 ], + [ 8.3856572, 47.2922032 ], + [ 8.385577, 47.2922593 ], + [ 8.3855109, 47.2922963 ], + [ 8.3854579, 47.2923189 ], + [ 8.3853948, 47.2923344 ], + [ 8.3853296, 47.2923594 ], + [ 8.3852701, 47.2923932 ], + [ 8.3852064, 47.2924389 ], + [ 8.385166, 47.2924883 ], + [ 8.3851373, 47.2925132 ], + [ 8.3850824, 47.2925389 ], + [ 8.3850465, 47.2925876 ], + [ 8.3850184, 47.2926402 ], + [ 8.3849923, 47.2926922 ], + [ 8.3849753, 47.2927262 ], + [ 8.3849629, 47.2927802 ], + [ 8.3849215, 47.2928337 ], + [ 8.3848612, 47.2928849 ], + [ 8.3847996, 47.2929266 ], + [ 8.3847556, 47.2929578 ], + [ 8.384712799999999, 47.2929915 ], + [ 8.3846456, 47.29303 ], + [ 8.384568699999999, 47.293083 ], + [ 8.3845171, 47.2931278 ], + [ 8.3844325, 47.2931871 ], + [ 8.3843652, 47.2932201 ], + [ 8.3843049, 47.2932745 ], + [ 8.3842225, 47.2933314 ], + [ 8.3841497, 47.2933708 ], + [ 8.3840959, 47.2934077 ], + [ 8.3839988, 47.293456 ], + [ 8.3839141, 47.2935089 ], + [ 8.3838391, 47.2935499 ], + [ 8.3837411, 47.2936069 ], + [ 8.3836642, 47.2936654 ], + [ 8.383583699999999, 47.2937065 ], + [ 8.3834945, 47.2937563 ], + [ 8.3833787, 47.2938142 ], + [ 8.3832308, 47.2938787 ], + [ 8.3831072, 47.2939351 ], + [ 8.3829859, 47.2939979 ], + [ 8.3828965, 47.2940406 ], + [ 8.3828051, 47.294096 ], + [ 8.3826639, 47.2941612 ], + [ 8.3825392, 47.2942169 ], + [ 8.3824609, 47.2942587 ], + [ 8.3823849, 47.2943036 ], + [ 8.382269, 47.2943544 ], + [ 8.3821874, 47.2943939 ], + [ 8.3820914, 47.2944374 ], + [ 8.3820274, 47.2944696 ], + [ 8.3819525, 47.294513 ], + [ 8.3818544, 47.2945652 ], + [ 8.3817937, 47.2945942 ], + [ 8.3816712, 47.2946491 ], + [ 8.3815919, 47.2946917 ], + [ 8.3815191, 47.2947303 ], + [ 8.3814443, 47.2947784 ], + [ 8.3813706, 47.2948257 ], + [ 8.3812921, 47.2948564 ], + [ 8.3812126, 47.2948879 ], + [ 8.3811385, 47.2949123 ], + [ 8.3810723, 47.2949429 ], + [ 8.3809475, 47.2949953 ], + [ 8.3808339, 47.2950525 ], + [ 8.3807092, 47.2951089 ], + [ 8.3806276, 47.2951523 ], + [ 8.380537, 47.2951886 ], + [ 8.3804313, 47.2952513 ], + [ 8.3803189, 47.2953124 ], + [ 8.3802097, 47.2953639 ], + [ 8.3801633, 47.2953849 ], + [ 8.3800805, 47.2954188 ], + [ 8.3800023, 47.2954677 ], + [ 8.3799274, 47.2955103 ], + [ 8.3798635, 47.2955433 ], + [ 8.3797896, 47.2955835 ], + [ 8.3796671, 47.2956375 ], + [ 8.3795425, 47.2957034 ], + [ 8.3794234, 47.2957638 ], + [ 8.3793097, 47.295813 ], + [ 8.3792204, 47.2958596 ], + [ 8.3791255, 47.2959024 ], + [ 8.3790416, 47.2959418 ], + [ 8.378938, 47.2959941 ], + [ 8.3788619, 47.2960343 ], + [ 8.3787571, 47.296085 ], + [ 8.3786489, 47.2961342 ], + [ 8.3785243, 47.2961938 ], + [ 8.3784096, 47.2962509 ], + [ 8.3783335, 47.2962904 ], + [ 8.3782573, 47.2963266 ], + [ 8.3781836, 47.2963731 ], + [ 8.3781265, 47.2964188 ], + [ 8.3780826, 47.296454 ], + [ 8.3780209, 47.2964854 ], + [ 8.3779544, 47.2964993 ], + [ 8.3779114, 47.2965242 ], + [ 8.37782, 47.2965796 ], + [ 8.3777817, 47.2966188 ], + [ 8.3776978, 47.2966558 ], + [ 8.3776186, 47.2967056 ], + [ 8.377548, 47.2967434 ], + [ 8.3774887, 47.2967882 ], + [ 8.3774105, 47.2968316 ], + [ 8.3773424, 47.2968845 ], + [ 8.377262, 47.2969303 ], + [ 8.3771962, 47.2969863 ], + [ 8.3771369, 47.2970335 ], + [ 8.3770689, 47.2970927 ], + [ 8.3770393, 47.2971207 ], + [ 8.3769712, 47.2971735 ], + [ 8.3768722, 47.2972401 ], + [ 8.3768143, 47.2973 ], + [ 8.3767551, 47.2973544 ], + [ 8.3766675, 47.2974104 ], + [ 8.3766197, 47.2974623 ], + [ 8.3765384, 47.2975259 ], + [ 8.3764645, 47.2975969 ], + [ 8.3763957, 47.2976558 ], + [ 8.3763479, 47.2976994 ], + [ 8.3762783, 47.2977719 ], + [ 8.3762148, 47.2978284 ], + [ 8.3762044, 47.2978377 ], + [ 8.3762008, 47.297844 ], + [ 8.3761695, 47.2978992 ], + [ 8.3761516, 47.2979583 ], + [ 8.3761021, 47.2980283 ], + [ 8.3760526, 47.2980991 ], + [ 8.3760391, 47.2981673 ], + [ 8.376001, 47.2982243 ], + [ 8.3759209, 47.2982992 ], + [ 8.3758747, 47.2983737 ], + [ 8.375825, 47.2984332 ], + [ 8.375769, 47.298495 ], + [ 8.3757173, 47.298564999999996 ], + [ 8.3756365, 47.2986558 ], + [ 8.3756313, 47.2986819 ], + [ 8.375621, 47.2987337 ], + [ 8.375606, 47.2987713 ], + [ 8.3755786, 47.2988399 ], + [ 8.3755283, 47.2989266 ], + [ 8.3755073, 47.298991 ], + [ 8.3754927, 47.2990561 ], + [ 8.3754497, 47.2991336 ], + [ 8.3754134, 47.2991733 ], + [ 8.375363, 47.2992524 ], + [ 8.3753402, 47.2993335 ], + [ 8.375316, 47.2993972 ], + [ 8.3752891, 47.2994873 ], + [ 8.3752565, 47.2995527 ], + [ 8.3752273, 47.299633 ], + [ 8.3752045, 47.2997179 ], + [ 8.3751823, 47.299771 ], + [ 8.3751477, 47.2998469 ], + [ 8.3751096, 47.2999047 ], + [ 8.3751051, 47.299931 ], + [ 8.3750972, 47.2999766 ], + [ 8.3750961, 47.3000295 ], + [ 8.3751146, 47.3001109 ], + [ 8.3751036, 47.3002009 ], + [ 8.3750966, 47.3002757 ], + [ 8.375089299999999, 47.3003392 ], + [ 8.3750882, 47.3003921 ], + [ 8.3750753, 47.3004338 ], + [ 8.3750574, 47.3004982 ], + [ 8.3750023, 47.3005524 ], + [ 8.3749728, 47.3006132 ], + [ 8.3749591, 47.3006752 ], + [ 8.3749254, 47.3007406 ], + [ 8.3749426, 47.3008084 ], + [ 8.3749481, 47.3008748 ], + [ 8.3749326, 47.3009505 ], + [ 8.3749093, 47.3010074 ], + [ 8.3748862, 47.3010726 ], + [ 8.3748782, 47.3011505 ], + [ 8.374883, 47.301238 ], + [ 8.3749036, 47.3013126 ], + [ 8.3748881, 47.3013898 ], + [ 8.374845, 47.3014612 ], + [ 8.3748282, 47.3015271 ], + [ 8.3748389, 47.3015667 ], + [ 8.3748476, 47.3015987 ], + [ 8.3748364, 47.3016774 ], + [ 8.3748039, 47.3017487 ], + [ 8.374785, 47.3018139 ], + [ 8.3747513, 47.3018792 ], + [ 8.3747528, 47.3019577 ], + [ 8.3747421, 47.3020115 ], + [ 8.3747432, 47.3020674 ], + [ 8.3747248, 47.3021559 ], + [ 8.3747229, 47.3022239 ], + [ 8.3747099, 47.3023192 ], + [ 8.3747027, 47.302385 ], + [ 8.3747167, 47.3024551 ], + [ 8.3747044, 47.3025323 ], + [ 8.3746518, 47.3026046 ], + [ 8.3746451, 47.30261 ], + [ 8.3746017, 47.3026452 ], + [ 8.3745798, 47.3027157 ], + [ 8.3745753, 47.3027944 ], + [ 8.3745735, 47.3028275 ], + [ 8.3745686, 47.302906899999996 ], + [ 8.3745764, 47.3029808 ], + [ 8.374573999999999, 47.303079 ], + [ 8.3745774, 47.3031447 ], + [ 8.3745766, 47.3031512 ], + [ 8.3745692, 47.303212 ], + [ 8.3745845, 47.3032927 ], + [ 8.3746312, 47.3033563 ], + [ 8.3746511, 47.3034528 ], + [ 8.374651, 47.3035072 ], + [ 8.374654, 47.3036039 ], + [ 8.3746533, 47.3036801 ], + [ 8.374653, 47.3036904 ], + [ 8.3746507, 47.3037663 ], + [ 8.3746761, 47.3038226 ], + [ 8.3746868, 47.3038814 ], + [ 8.3746977, 47.3039523 ], + [ 8.3747176, 47.3040503 ], + [ 8.374732, 47.3041377 ], + [ 8.3747446, 47.3041552 ], + [ 8.3747679, 47.3041872 ], + [ 8.3747837, 47.3042437 ], + [ 8.3747841, 47.3043147 ], + [ 8.374783, 47.3043721 ], + [ 8.374801, 47.3044255 ], + [ 8.3748046, 47.3044315 ], + [ 8.374824, 47.3044646 ], + [ 8.3748305, 47.3045302 ], + [ 8.3748368, 47.304583 ], + [ 8.3748622, 47.3046915 ], + [ 8.3748818, 47.3047713 ], + [ 8.3748979, 47.3048935 ], + [ 8.3749135, 47.3049379 ], + [ 8.3749245, 47.3050103 ], + [ 8.3749208, 47.3050965 ], + [ 8.3749212, 47.3051735 ], + [ 8.3749271, 47.3052036 ], + [ 8.3749492, 47.305251 ], + [ 8.3749654, 47.3052857 ], + [ 8.3749808, 47.3053508 ], + [ 8.3750074, 47.3054127 ], + [ 8.3750328, 47.3054691 ], + [ 8.3750449, 47.3055468 ], + [ 8.3750617, 47.3055957 ], + [ 8.3750789, 47.3056546 ], + [ 8.3750821, 47.3056657 ], + [ 8.3750997, 47.3057516 ], + [ 8.3751176, 47.3058043 ], + [ 8.3751197, 47.3058602 ], + [ 8.3751355, 47.3059083 ], + [ 8.3751607, 47.3059549 ], + [ 8.3751775, 47.3060008 ], + [ 8.3751773, 47.3060438 ], + [ 8.375195, 47.3060859 ], + [ 8.3752038, 47.3061568 ], + [ 8.3751832, 47.3061858 ], + [ 8.3751804, 47.3062062 ], + [ 8.3752051, 47.3062278 ], + [ 8.375221, 47.3062813 ], + [ 8.3752221, 47.3063402 ], + [ 8.3752403, 47.3064034 ], + [ 8.3752336, 47.3064443 ], + [ 8.3752342, 47.3064593 ], + [ 8.3752358, 47.3065024 ], + [ 8.375238, 47.3065677 ], + [ 8.3752535, 47.3066072 ], + [ 8.3752664, 47.3066402 ], + [ 8.3752881, 47.3066959 ], + [ 8.3753204, 47.3067681 ], + [ 8.375355, 47.3068427 ], + [ 8.3753814, 47.3069309 ], + [ 8.3754094, 47.3069934 ], + [ 8.3754131, 47.3070666 ], + [ 8.3754221, 47.3071361 ], + [ 8.3754323, 47.3072138 ], + [ 8.3754401, 47.307275 ], + [ 8.3754402, 47.3073286 ], + [ 8.3754729, 47.3073654 ], + [ 8.3754954, 47.3074204 ], + [ 8.3755308, 47.3074844 ], + [ 8.3755197, 47.307557 ], + [ 8.3755272, 47.3076567 ], + [ 8.3755589, 47.3077441 ], + [ 8.375571, 47.3078105 ], + [ 8.3755884, 47.3078746 ], + [ 8.3756135, 47.307953 ], + [ 8.3756267, 47.3080224 ], + [ 8.3756409, 47.3080843 ], + [ 8.3756104, 47.308138 ], + [ 8.3756061, 47.3081457 ], + [ 8.3756154, 47.3081545 ], + [ 8.3756473, 47.3081847 ], + [ 8.3756836, 47.3082388 ], + [ 8.375685, 47.3082985 ], + [ 8.375706600000001, 47.3083626 ], + [ 8.3757272, 47.3084297 ], + [ 8.3757359, 47.3084863 ], + [ 8.3757609, 47.3085579 ], + [ 8.3757606, 47.3085926 ], + [ 8.3757551, 47.308632 ], + [ 8.3757863, 47.308699 ], + [ 8.3757929, 47.3087571 ], + [ 8.37581, 47.3088076 ], + [ 8.3758274, 47.3088717 ], + [ 8.3758361, 47.3089313 ], + [ 8.3758744, 47.3089779 ], + [ 8.3758711, 47.3090195 ], + [ 8.3758863, 47.3090859 ], + [ 8.375895, 47.3091395 ], + [ 8.3759035, 47.3091893 ], + [ 8.3759315, 47.309254 ], + [ 8.3759623, 47.309309 ], + [ 8.3759815, 47.3093577 ], + [ 8.376036299999999, 47.3094233 ], + [ 8.3760676, 47.3094911 ], + [ 8.3760814, 47.3095363 ], + [ 8.3760918, 47.3095763 ], + [ 8.3760959, 47.3096155 ], + [ 8.3761217, 47.3096766 ], + [ 8.3761371, 47.309749 ], + [ 8.376166, 47.3098032 ], + [ 8.3762023, 47.3098604 ], + [ 8.3762334, 47.3099198 ], + [ 8.3762602, 47.3099748 ], + [ 8.3763053, 47.3100447 ], + [ 8.3763369, 47.3101269 ], + [ 8.3763648, 47.3101848 ], + [ 8.376403700000001, 47.3102609 ], + [ 8.37644, 47.310318 ], + [ 8.3764736, 47.3103949 ], + [ 8.3764846, 47.3104575 ], + [ 8.3765037, 47.3105027 ], + [ 8.3765456, 47.3105712 ], + [ 8.3765781, 47.310645 ], + [ 8.3766187, 47.3107036 ], + [ 8.3766563, 47.3107661 ], + [ 8.3766627, 47.3108182 ], + [ 8.3766791, 47.310857 ], + [ 8.3766852, 47.3108716 ], + [ 8.3767098, 47.3109251 ], + [ 8.3767171, 47.3109349 ], + [ 8.3767536, 47.3109837 ], + [ 8.3767888, 47.3110349 ], + [ 8.3768385, 47.3111176 ], + [ 8.3768655, 47.3112196 ], + [ 8.3768887, 47.3112697 ], + [ 8.3769265, 47.311346 ], + [ 8.3769764, 47.3114378 ], + [ 8.3770122, 47.3115184 ], + [ 8.3770221, 47.3115833 ], + [ 8.377036, 47.3116353 ], + [ 8.3770544, 47.3116949 ], + [ 8.3770843, 47.3117483 ], + [ 8.3771181, 47.3117851 ], + [ 8.3771443, 47.3118166 ], + [ 8.3771838, 47.311873 ], + [ 8.3771861, 47.3119259 ], + [ 8.3771883, 47.311981 ], + [ 8.3772057, 47.3120451 ], + [ 8.3772405, 47.3120796 ], + [ 8.3772724, 47.3121255 ], + [ 8.3772525, 47.3121876 ], + [ 8.3772452, 47.3122435 ], + [ 8.3772464, 47.3122964 ], + [ 8.3772714, 47.3123711 ], + [ 8.3772829, 47.3124103 ], + [ 8.3772983, 47.3124819 ], + [ 8.3773011, 47.3125597 ], + [ 8.3773138, 47.3126035 ], + [ 8.3773267, 47.3126593 ], + [ 8.377322, 47.3127326 ], + [ 8.3772966, 47.3127864 ], + [ 8.377279, 47.3128583 ], + [ 8.3772736, 47.3128999 ], + [ 8.3772767, 47.3129444 ], + [ 8.3772876, 47.3130004 ], + [ 8.3772831, 47.3130241 ], + [ 8.3772747, 47.3130676 ], + [ 8.3772654, 47.3131276 ], + [ 8.3772386, 47.3131942 ], + [ 8.3772213, 47.3132428 ], + [ 8.3771938, 47.313285 ], + [ 8.3771504, 47.313342 ], + [ 8.3771681, 47.3134067 ], + [ 8.3771537, 47.313455 ], + [ 8.3771647, 47.3135051 ], + [ 8.3771516, 47.3135399 ], + [ 8.3771334, 47.3135593 ], + [ 8.3771153, 47.3135787 ], + [ 8.3771015, 47.3136309 ], + [ 8.3770922, 47.3136892 ], + [ 8.3770815, 47.3137346 ], + [ 8.3770447, 47.3138021 ], + [ 8.3770371, 47.3138422 ], + [ 8.3770202, 47.3138997 ], + [ 8.3769979, 47.3139467 ], + [ 8.3769672, 47.3139983 ], + [ 8.376915, 47.3140425 ], + [ 8.376875, 47.3141108 ], + [ 8.3768126, 47.3141731 ], + [ 8.3767767, 47.3142323 ], + [ 8.3767681, 47.3142461 ], + [ 8.3767469, 47.3142801 ], + [ 8.376714400000001, 47.3143124 ], + [ 8.3766949, 47.3143319 ], + [ 8.376650099999999, 47.3143752 ], + [ 8.3766148, 47.314414 ], + [ 8.3765718, 47.3144873 ], + [ 8.3765676, 47.3144944 ], + [ 8.3765622, 47.3144989 ], + [ 8.3765206, 47.3145333 ], + [ 8.3764856, 47.3145804 ], + [ 8.3764548, 47.3146342 ], + [ 8.3763905, 47.3147065 ], + [ 8.3763346, 47.3147527 ], + [ 8.3763205, 47.3147644 ], + [ 8.376271299999999, 47.3147987 ], + [ 8.3762139, 47.3148527 ], + [ 8.3761745, 47.3148976 ], + [ 8.3761244, 47.314938 ], + [ 8.3760691, 47.3149882 ], + [ 8.3760468, 47.3150352 ], + [ 8.3760137, 47.3150808 ], + [ 8.3759594, 47.315125 ], + [ 8.3758978, 47.3151753 ], + [ 8.3758122, 47.3152499 ], + [ 8.3757482, 47.3152904 ], + [ 8.3756832, 47.3153309 ], + [ 8.375654, 47.3153576 ], + [ 8.3756135, 47.3154009 ], + [ 8.3755834, 47.3154374 ], + [ 8.3755489, 47.3154633 ], + [ 8.3754697, 47.3154873 ], + [ 8.375435, 47.3155064 ], + [ 8.3753904, 47.3155543 ], + [ 8.375359, 47.315581 ], + [ 8.3753097, 47.3156108 ], + [ 8.3752627, 47.3156325 ], + [ 8.375249, 47.3156379 ], + [ 8.3752159, 47.3156507 ], + [ 8.3751562, 47.3156912 ], + [ 8.3751209, 47.3157277 ], + [ 8.3750846, 47.3157725 ], + [ 8.375047, 47.3158007 ], + [ 8.3749954, 47.3158245 ], + [ 8.3749537, 47.3158529 ], + [ 8.3749472, 47.3158573 ], + [ 8.3749445, 47.3158624 ], + [ 8.3749257, 47.3158983 ], + [ 8.3748888, 47.3159605 ], + [ 8.3748517, 47.3159974 ], + [ 8.3747687, 47.3160447 ], + [ 8.3747552, 47.3160583 ], + [ 8.3747142, 47.3160996 ], + [ 8.3746594, 47.3161427 ], + [ 8.3745745, 47.3162258 ], + [ 8.3745455, 47.3162754 ], + [ 8.3745175, 47.316323 ], + [ 8.3744505, 47.3163752 ], + [ 8.3744403, 47.3163842 ], + [ 8.374323799999999, 47.3164867 ], + [ 8.3742331, 47.3165928 ], + [ 8.3740742, 47.3167397 ], + [ 8.3739404, 47.3168715 ], + [ 8.3739215, 47.3168995 ], + [ 8.3738891, 47.3169254 ], + [ 8.3738529, 47.316971 ], + [ 8.3737985, 47.3170114 ], + [ 8.3737623, 47.3170593 ], + [ 8.3737187, 47.317131 ], + [ 8.3737161, 47.3171351 ], + [ 8.3736829, 47.3171694 ], + [ 8.3736445, 47.3172135 ], + [ 8.3736049, 47.3172515 ], + [ 8.3735952, 47.3172593 ], + [ 8.3735589, 47.3172881 ], + [ 8.3735185, 47.3173352 ], + [ 8.3734651, 47.3173756 ], + [ 8.3734299, 47.3174182 ], + [ 8.3733531, 47.3175026 ], + [ 8.3733035, 47.3175679 ], + [ 8.3732824, 47.31761 ], + [ 8.373277, 47.317621 ], + [ 8.3732494, 47.317674 ], + [ 8.3732134, 47.3177279 ], + [ 8.3731942, 47.3177719 ], + [ 8.3731435, 47.3178395 ], + [ 8.3731066, 47.3179002 ], + [ 8.3730654, 47.3179609 ], + [ 8.3730259, 47.3180197 ], + [ 8.3730232, 47.3180239 ], + [ 8.3729868, 47.3181095 ], + [ 8.3729473, 47.3181997 ], + [ 8.3729043, 47.3182771 ], + [ 8.3728733, 47.3183672 ], + [ 8.3728298, 47.3184687 ], + [ 8.3727957, 47.3185611 ], + [ 8.372782, 47.318661 ], + [ 8.372777, 47.3187252 ], + [ 8.3727658, 47.3187928 ], + [ 8.3727577, 47.3188509 ], + [ 8.3727473, 47.3189377 ], + [ 8.3727437, 47.3189911 ], + [ 8.3727474, 47.3190311 ], + [ 8.37278, 47.3190603 ], + [ 8.3727887, 47.3191163 ], + [ 8.3727901, 47.319179 ], + [ 8.3727673, 47.3192119 ], + [ 8.3726994, 47.3192561 ], + [ 8.3726935, 47.3192796 ], + [ 8.372703, 47.3193241 ], + [ 8.3727124, 47.3194094 ], + [ 8.372714, 47.3194571 ], + [ 8.3727144, 47.3194993 ], + [ 8.3727507, 47.3195256 ], + [ 8.3727517, 47.3196392 ], + [ 8.3727313, 47.3196533 ], + [ 8.3727303, 47.3196797 ], + [ 8.3727427, 47.3197193 ], + [ 8.3727637, 47.319787 ], + [ 8.372791, 47.3198758 ], + [ 8.3728034, 47.3199286 ], + [ 8.372827, 47.3200113 ], + [ 8.3728602, 47.3200912 ], + [ 8.3728873, 47.3201695 ], + [ 8.3729071, 47.3202367 ], + [ 8.372914399999999, 47.3202617 ], + [ 8.372933, 47.3203559 ], + [ 8.3729418, 47.3204633 ], + [ 8.3729687, 47.3205548 ], + [ 8.3729897, 47.3206333 ], + [ 8.3730538, 47.320691 ], + [ 8.373047, 47.3207632 ], + [ 8.3730515, 47.3208457 ], + [ 8.373085, 47.3208998 ], + [ 8.373141799999999, 47.3209661 ], + [ 8.3731556, 47.3211404 ], + [ 8.3731614, 47.3211891 ], + [ 8.3731658, 47.3212261 ], + [ 8.3731766, 47.3213542 ], + [ 8.3731785, 47.3214378 ], + [ 8.3731825, 47.3214598 ], + [ 8.3731975, 47.3215416 ], + [ 8.3732005, 47.3216217 ], + [ 8.3732, 47.3216966 ], + [ 8.3732031, 47.3217855 ], + [ 8.373199, 47.3218692 ], + [ 8.3731796, 47.3219712 ], + [ 8.3731782, 47.3219784 ], + [ 8.3731648, 47.3221035 ], + [ 8.3731616, 47.3221244 ], + [ 8.3731488, 47.3222067 ], + [ 8.3731545, 47.3223512 ], + [ 8.373156, 47.3225018 ], + [ 8.373149, 47.3225752 ], + [ 8.3731085, 47.3226804 ], + [ 8.3730603, 47.3228224 ], + [ 8.3730102, 47.3229441 ], + [ 8.3728223, 47.32325 ], + [ 8.372793, 47.3232752 ], + [ 8.3727586, 47.3232931 ], + [ 8.3727206, 47.323299 ], + [ 8.3727072, 47.3233194 ], + [ 8.372694599999999, 47.3233386 ], + [ 8.3727101, 47.3233448 ], + [ 8.3727004, 47.3233837 ], + [ 8.3726523, 47.3234741 ], + [ 8.3726244, 47.3235189 ], + [ 8.3725807, 47.3235845 ], + [ 8.3725163, 47.3236589 ], + [ 8.3724376, 47.3237461 ], + [ 8.3723724, 47.3238096 ], + [ 8.3722583, 47.3239298 ], + [ 8.3721795, 47.3240107 ], + [ 8.372103, 47.3240788 ], + [ 8.3719847, 47.3241778 ], + [ 8.3719154, 47.3242291 ], + [ 8.371763, 47.3243329 ], + [ 8.3716519, 47.3244114 ], + [ 8.3716069, 47.3244394 ], + [ 8.3715347, 47.3244629 ], + [ 8.371483, 47.3244611 ], + [ 8.3715117, 47.3244923 ], + [ 8.371452, 47.324545 ], + [ 8.371347, 47.3246195 ], + [ 8.3712294, 47.3246959 ], + [ 8.3711404, 47.3247556 ], + [ 8.3710271, 47.3248246 ], + [ 8.3709529, 47.3248692 ], + [ 8.37084, 47.3249341 ], + [ 8.3707329, 47.3249982 ], + [ 8.3706069, 47.3250697 ], + [ 8.3704651, 47.325141 ], + [ 8.3702184, 47.3252685 ], + [ 8.3701364, 47.3253032 ], + [ 8.3700767, 47.3253457 ], + [ 8.3699575, 47.3254117 ], + [ 8.3698739, 47.3254564 ], + [ 8.3697344, 47.3255195 ], + [ 8.3696294, 47.3255722 ], + [ 8.3694997, 47.3256442 ], + [ 8.3693471, 47.3257152 ], + [ 8.3691544, 47.3258021 ], + [ 8.3690006, 47.3258754 ], + [ 8.36865, 47.3260475 ], + [ 8.3683823, 47.3261944 ], + [ 8.3681102, 47.3263409 ], + [ 8.3679816, 47.3264088 ], + [ 8.3678569, 47.3264821 ], + [ 8.3677477, 47.326543 ], + [ 8.3676692, 47.3265912 ], + [ 8.3675656, 47.3266479 ], + [ 8.3674341, 47.3267236 ], + [ 8.3672706, 47.3268151 ], + [ 8.3671127, 47.326902 ], + [ 8.3669352, 47.3270132 ], + [ 8.3668665, 47.3270477 ], + [ 8.3667249, 47.3271262 ], + [ 8.3666146, 47.327193 ], + [ 8.366501, 47.3272552 ], + [ 8.3664372, 47.3272856 ], + [ 8.3664062, 47.3272842 ], + [ 8.3663741, 47.3272906 ], + [ 8.3663605, 47.3273061 ], + [ 8.3663648, 47.3273233 ], + [ 8.3663387, 47.3273436 ], + [ 8.3662759, 47.3273866 ], + [ 8.3661894, 47.3274403 ], + [ 8.3661407, 47.3274691 ], + [ 8.366091, 47.3275042 ], + [ 8.366035, 47.3275385 ], + [ 8.3659434, 47.3275973 ], + [ 8.3658568, 47.3276501 ], + [ 8.3657782, 47.3276929 ], + [ 8.3656692, 47.3277601 ], + [ 8.3656179, 47.3277853 ], + [ 8.3654572, 47.3278845 ], + [ 8.3651797, 47.3280663 ], + [ 8.3651036, 47.3281113 ], + [ 8.3650202, 47.3281659 ], + [ 8.3649311, 47.328222 ], + [ 8.3648638, 47.3282587 ], + [ 8.3647727, 47.3283103 ], + [ 8.3646954, 47.3283553 ], + [ 8.3646154, 47.3283976 ], + [ 8.3645345, 47.3284477 ], + [ 8.36436, 47.3285525 ], + [ 8.3642726, 47.3286003 ], + [ 8.3641734, 47.3286579 ], + [ 8.3641114, 47.3286832 ], + [ 8.3640369, 47.3287155 ], + [ 8.3639463, 47.3287585 ], + [ 8.36388, 47.3287911 ], + [ 8.363806199999999, 47.3288248 ], + [ 8.3637313, 47.3288643 ], + [ 8.3636952, 47.3288884 ], + [ 8.3636464, 47.3289117 ], + [ 8.3636104, 47.3289145 ], + [ 8.3635794, 47.3289145 ], + [ 8.3635569, 47.3289266 ], + [ 8.3635428, 47.3289421 ], + [ 8.3635232, 47.3289673 ], + [ 8.3634745, 47.3289925 ], + [ 8.3634102, 47.3290287 ], + [ 8.3632863, 47.3290857 ], + [ 8.3632434, 47.3291121 ], + [ 8.3632104, 47.3291348 ], + [ 8.363147, 47.3291565 ], + [ 8.3630914, 47.3291831 ], + [ 8.3630399, 47.3292214 ], + [ 8.3629784, 47.3292431 ], + [ 8.3628972, 47.3292864 ], + [ 8.3626807, 47.3293813 ], + [ 8.362540599999999, 47.3294458 ], + [ 8.362431, 47.3294917 ], + [ 8.3623092, 47.329532 ], + [ 8.3621819, 47.3295786 ], + [ 8.3620658, 47.329616 ], + [ 8.3619604, 47.3296528 ], + [ 8.3618748, 47.3296708 ], + [ 8.3617868, 47.3296952 ], + [ 8.3617157, 47.3297111 ], + [ 8.3616698, 47.3297258 ], + [ 8.3616249, 47.3297486 ], + [ 8.3615061, 47.3297811 ], + [ 8.3613551, 47.3298168 ], + [ 8.3610686, 47.329877 ], + [ 8.3609615, 47.329898 ], + [ 8.3608279, 47.3299185 ], + [ 8.3606632, 47.3299421 ], + [ 8.3602964, 47.3299804 ], + [ 8.3601929, 47.3299896 ], + [ 8.3600583, 47.3299988 ], + [ 8.3599843, 47.3300021 ], + [ 8.3599216, 47.3300034 ], + [ 8.3598643, 47.3300142 ], + [ 8.3597797, 47.3300231 ], + [ 8.3596691, 47.3300297 ], + [ 8.3596159, 47.33003 ], + [ 8.359561, 47.3300371 ], + [ 8.3595009, 47.3300352 ], + [ 8.3594528, 47.3300382 ], + [ 8.359392, 47.3300368 ], + [ 8.3593029, 47.3300413 ], + [ 8.3592288, 47.3300423 ], + [ 8.358933799999999, 47.3300402 ], + [ 8.3587894, 47.3300377 ], + [ 8.3586051, 47.3300377 ], + [ 8.3585057, 47.3300359 ], + [ 8.3582635, 47.3300204 ], + [ 8.358138, 47.3300149 ], + [ 8.3579686, 47.3300006 ], + [ 8.3578824, 47.3299964 ], + [ 8.3577942, 47.3299873 ], + [ 8.3577033, 47.3299759 ], + [ 8.357648, 47.3299667 ], + [ 8.3575455, 47.3299673 ], + [ 8.3574647, 47.3299521 ], + [ 8.3574308, 47.329939 ], + [ 8.3573668, 47.3299368 ], + [ 8.3572856, 47.3299316 ], + [ 8.3571728, 47.3299269 ], + [ 8.3570852, 47.3299168 ], + [ 8.3570184, 47.3299047 ], + [ 8.3569823, 47.3298794 ], + [ 8.3569682, 47.3298501 ], + [ 8.356946, 47.3298487 ], + [ 8.3569466, 47.3297957 ], + [ 8.3569349, 47.3297864 ], + [ 8.3569161, 47.3297912 ], + [ 8.3568987, 47.329805 ], + [ 8.3568803, 47.3298297 ], + [ 8.356887799999999, 47.3298499 ], + [ 8.3568864, 47.3298676 ], + [ 8.3568752, 47.3298737 ], + [ 8.3568499, 47.3298749 ], + [ 8.3568162, 47.3298691 ], + [ 8.3567567, 47.3298717 ], + [ 8.3567061, 47.329872 ], + [ 8.3564619, 47.3298542 ], + [ 8.3563551, 47.3298385 ], + [ 8.3563068, 47.3298297 ], + [ 8.3562449, 47.3298107 ], + [ 8.356211, 47.3297958 ], + [ 8.3561838, 47.3298003 ], + [ 8.3561442, 47.3298085 ], + [ 8.3560853, 47.3298089 ], + [ 8.3559788, 47.3298023 ], + [ 8.3558577, 47.3297936 ], + [ 8.3557785, 47.3297943 ], + [ 8.3556748, 47.329798 ], + [ 8.3555919, 47.3297983 ], + [ 8.3554975, 47.329796 ], + [ 8.3552793, 47.3298028 ], + [ 8.3551101, 47.3298219 ], + [ 8.3550423, 47.3298414 ], + [ 8.3549292, 47.3298779 ], + [ 8.3548526, 47.3299003 ], + [ 8.3547624, 47.3299351 ], + [ 8.3546776, 47.3299612 ], + [ 8.3546255, 47.3299809 ], + [ 8.3545336, 47.3300225 ], + [ 8.3544526, 47.3300504 ], + [ 8.3543787, 47.3300804 ], + [ 8.3543169, 47.3301125 ], + [ 8.3542883, 47.3301328 ], + [ 8.3542496, 47.3301556 ], + [ 8.3541397, 47.3302119 ], + [ 8.3540932, 47.3302275 ], + [ 8.3540358, 47.3302578 ], + [ 8.3539651, 47.330292299999996 ], + [ 8.3539098, 47.3303329 ], + [ 8.3538709, 47.3303674 ], + [ 8.3538602, 47.3303956 ], + [ 8.3538616, 47.3304245 ], + [ 8.3538442, 47.3304619 ], + [ 8.3537845, 47.330527 ], + [ 8.3537263, 47.3306007 ], + [ 8.3536761, 47.3306431 ], + [ 8.3536359, 47.3306808 ], + [ 8.3536096, 47.3307147 ], + [ 8.3535715, 47.3307835 ], + [ 8.3535354, 47.3308325 ], + [ 8.3535056, 47.3308768 ], + [ 8.3534774, 47.3309152 ], + [ 8.3534616, 47.3309385 ], + [ 8.3534143, 47.330994 ], + [ 8.3533398, 47.3310765 ], + [ 8.3532718, 47.3311382 ], + [ 8.3532069, 47.3311993 ], + [ 8.3531195, 47.3312725 ], + [ 8.3529941, 47.3313648 ], + [ 8.3529363, 47.3314059 ], + [ 8.3528796, 47.3314416 ], + [ 8.3527801, 47.3315131 ], + [ 8.3527498, 47.3315407 ], + [ 8.3527198, 47.3315543 ], + [ 8.3526655, 47.3315854 ], + [ 8.3525917, 47.3316448 ], + [ 8.3524973, 47.3317114 ], + [ 8.3524145, 47.3317655 ], + [ 8.3523114, 47.3318186 ], + [ 8.352223, 47.3318542 ], + [ 8.3521371, 47.3318853 ], + [ 8.3520084, 47.3319279 ], + [ 8.3519048, 47.3319606 ], + [ 8.3518268, 47.3319776 ], + [ 8.3517372, 47.331992 ], + [ 8.3516716, 47.3320001 ], + [ 8.3516132, 47.3320191 ], + [ 8.3514534, 47.3321046 ], + [ 8.3513457, 47.3321732 ], + [ 8.3513021, 47.3322023 ], + [ 8.3511514, 47.3322497 ], + [ 8.3510914, 47.3322573 ], + [ 8.3510379, 47.3322676 ], + [ 8.3510073, 47.3322844 ], + [ 8.3509975, 47.3323211 ], + [ 8.3509649, 47.3323578 ], + [ 8.3508691, 47.3323977 ], + [ 8.3507976, 47.3324258 ], + [ 8.3507062, 47.3324633 ], + [ 8.3506209, 47.3324949 ], + [ 8.3505512, 47.3325158 ], + [ 8.3504547, 47.3325538 ], + [ 8.3503798, 47.3325735 ], + [ 8.3502775, 47.3326071 ], + [ 8.350182, 47.3326347 ], + [ 8.3500935, 47.3326662 ], + [ 8.3500589, 47.3326989 ], + [ 8.3500014, 47.3327241 ], + [ 8.3499174, 47.332757 ], + [ 8.3498361, 47.3327962 ], + [ 8.349701, 47.3328366 ], + [ 8.3496616, 47.3328539 ], + [ 8.3496444, 47.3328759 ], + [ 8.3495897, 47.3329119 ], + [ 8.3495263, 47.3329337 ], + [ 8.3493796, 47.333015 ], + [ 8.3493241, 47.3330493 ], + [ 8.3492542, 47.3330847 ], + [ 8.3491828, 47.333116 ], + [ 8.3490982, 47.3331484 ], + [ 8.349057, 47.333173 ], + [ 8.3490295, 47.3332119 ], + [ 8.348993, 47.3332672 ], + [ 8.348935, 47.3333255 ], + [ 8.3488212, 47.3334072 ], + [ 8.3487435, 47.3334594 ], + [ 8.348671, 47.3334953 ], + [ 8.3485822, 47.3335405 ], + [ 8.3485075, 47.3335642 ], + [ 8.3484474, 47.3335886 ], + [ 8.3484138, 47.3336112 ], + [ 8.3483641, 47.3336472 ], + [ 8.3483026, 47.3336708 ], + [ 8.3482159, 47.3337204 ], + [ 8.3481551, 47.333767 ], + [ 8.348101400000001, 47.3338198 ], + [ 8.3479996, 47.3338765 ], + [ 8.3479346, 47.3339068 ], + [ 8.3478728, 47.3339403 ], + [ 8.3478312, 47.3339721 ], + [ 8.3477716, 47.3339956 ], + [ 8.3477156, 47.3340077 ], + [ 8.3476519, 47.334043 ], + [ 8.3476046, 47.3340718 ], + [ 8.3475487, 47.3341133 ], + [ 8.3474814, 47.3341559 ], + [ 8.3474357, 47.3341755 ], + [ 8.3473753, 47.3341918 ], + [ 8.3473414, 47.3342067 ], + [ 8.347319, 47.3342166 ], + [ 8.3471704, 47.3343228 ], + [ 8.3471094, 47.3343621 ], + [ 8.3470555, 47.3344059 ], + [ 8.3469348, 47.3345135 ], + [ 8.3468969, 47.3345661 ], + [ 8.3468549, 47.3346319 ], + [ 8.3468119, 47.3346814 ], + [ 8.3466993, 47.3347581 ], + [ 8.3466018, 47.3348319 ], + [ 8.3465409, 47.3348767 ], + [ 8.3464714, 47.3349311 ], + [ 8.3462751, 47.3350525 ], + [ 8.3462066, 47.3350716 ], + [ 8.3461475, 47.3350864 ], + [ 8.3460974, 47.3351098 ], + [ 8.3460583, 47.3351406 ], + [ 8.3460077, 47.3351662 ], + [ 8.3459544, 47.3351851 ], + [ 8.3459308, 47.3352013 ], + [ 8.3459192, 47.3352218 ], + [ 8.3458841, 47.3352594 ], + [ 8.3458094, 47.3353067 ], + [ 8.3457425, 47.3353398 ], + [ 8.3456898, 47.3353586 ], + [ 8.3456354, 47.3353865 ], + [ 8.3456114, 47.33541 ], + [ 8.3455524, 47.3354303 ], + [ 8.3455079, 47.335449 ], + [ 8.3454395, 47.3354957 ], + [ 8.3453847, 47.3355078 ], + [ 8.3453147, 47.3355169 ], + [ 8.34526, 47.335534 ], + [ 8.3452175, 47.3355527 ], + [ 8.3451845, 47.3355744 ], + [ 8.3451607, 47.3355865 ], + [ 8.3450984, 47.3355992 ], + [ 8.345045, 47.3356172 ], + [ 8.3449868, 47.3356424 ], + [ 8.344872, 47.3357074 ], + [ 8.3447509, 47.3357526 ], + [ 8.3446844, 47.3357992 ], + [ 8.3446503, 47.3358269 ], + [ 8.3445929, 47.335858 ], + [ 8.3445619, 47.3358856 ], + [ 8.3445319, 47.335925 ], + [ 8.3444876, 47.3359487 ], + [ 8.3444429, 47.3359602 ], + [ 8.3443532, 47.3359678 ], + [ 8.344286199999999, 47.3359701 ], + [ 8.3442024, 47.3359894 ], + [ 8.3441726, 47.3360111 ], + [ 8.344142399999999, 47.3360174 ], + [ 8.3441004, 47.336009 ], + [ 8.3440394, 47.3360252 ], + [ 8.3439987, 47.3360443 ], + [ 8.3439734, 47.3360664 ], + [ 8.3439375, 47.3360755 ], + [ 8.3439007, 47.3360743 ], + [ 8.3438402, 47.3360851 ], + [ 8.3437461, 47.3361158 ], + [ 8.3436627, 47.3361473 ], + [ 8.3435949, 47.3361954 ], + [ 8.3435457, 47.3362286 ], + [ 8.3434312, 47.3362801 ], + [ 8.3431637, 47.3363635 ], + [ 8.3430132, 47.3363969 ], + [ 8.3428567, 47.3364154 ], + [ 8.3427287, 47.3364367 ], + [ 8.3425708, 47.3364756 ], + [ 8.3424419, 47.3365095 ], + [ 8.3423414, 47.3365422 ], + [ 8.3422124, 47.336573 ], + [ 8.3421319, 47.3365936 ], + [ 8.3420495, 47.336616 ], + [ 8.3419735, 47.3366153 ], + [ 8.3418219, 47.3366283 ], + [ 8.3417149, 47.3366506 ], + [ 8.3416341, 47.3366599 ], + [ 8.3415566, 47.3366746 ], + [ 8.3414453, 47.3367319 ], + [ 8.3413729, 47.3367718 ], + [ 8.3413054, 47.3368035 ], + [ 8.3411903, 47.3368355 ], + [ 8.3410835, 47.3368669 ], + [ 8.3410396, 47.3368811 ], + [ 8.3409809, 47.3369136 ], + [ 8.3408959, 47.3369587 ], + [ 8.3407967, 47.3369886 ], + [ 8.3404723, 47.337081 ], + [ 8.3403443, 47.3371227 ], + [ 8.3400918, 47.3371927 ], + [ 8.3400278, 47.3372018 ], + [ 8.3399243, 47.3372128 ], + [ 8.3398588, 47.3372255 ], + [ 8.3397972, 47.3372458 ], + [ 8.3397515, 47.3372646 ], + [ 8.3396634, 47.3373093 ], + [ 8.339547, 47.3373621 ], + [ 8.3394811, 47.3373874 ], + [ 8.3394242, 47.3374127 ], + [ 8.3393653, 47.3374619 ], + [ 8.3392836, 47.3375084 ], + [ 8.3392247, 47.3375336 ], + [ 8.3391718, 47.3375462 ], + [ 8.3390755, 47.3375665 ], + [ 8.3389747, 47.3376105 ], + [ 8.3388951, 47.3376415 ], + [ 8.3387805, 47.3376942 ], + [ 8.3385905, 47.3377879 ], + [ 8.3384468, 47.3378619 ], + [ 8.3382765, 47.3379358 ], + [ 8.3381189, 47.3380123 ], + [ 8.3379814, 47.3380835 ], + [ 8.3378515, 47.3381532 ], + [ 8.3376955, 47.3382401 ], + [ 8.337578, 47.3383001 ], + [ 8.3374981, 47.3383451 ], + [ 8.3374136, 47.3384337 ], + [ 8.3373163, 47.3385134 ], + [ 8.3371932, 47.3386025 ], + [ 8.3369566, 47.3387348 ], + [ 8.3368517, 47.3387915 ], + [ 8.3367747, 47.3388492 ], + [ 8.3366848, 47.3389238 ], + [ 8.3366056, 47.3389964 ], + [ 8.3365428, 47.3390643 ], + [ 8.3364885, 47.3391198 ], + [ 8.336431900000001, 47.3391844 ], + [ 8.3363781, 47.3392599 ], + [ 8.3362961, 47.3393692 ], + [ 8.3362602, 47.3394512 ], + [ 8.3362139, 47.3395704 ], + [ 8.3361651, 47.3396422 ], + [ 8.336103, 47.3397408 ], + [ 8.3360626, 47.339817 ], + [ 8.3360241, 47.3398986 ], + [ 8.335975, 47.3399567 ], + [ 8.3359205, 47.3400317 ], + [ 8.335873, 47.3401044 ], + [ 8.3358225, 47.3402069 ], + [ 8.3357883, 47.3403301 ], + [ 8.3357624, 47.3404056 ], + [ 8.3356489, 47.3406222 ], + [ 8.3356066, 47.3407273 ], + [ 8.3355882, 47.3408009 ], + [ 8.3355885, 47.3408855 ], + [ 8.3355976, 47.3409669 ], + [ 8.3355943, 47.3411104 ], + [ 8.3355759, 47.3411591 ], + [ 8.3355629, 47.341219 ], + [ 8.3355654, 47.3412665 ], + [ 8.3355759, 47.3413062 ], + [ 8.335613500000001, 47.3413898 ], + [ 8.3356358, 47.3414674 ], + [ 8.3356461, 47.3415732 ], + [ 8.3356682, 47.3416471 ], + [ 8.3357321, 47.3417426 ], + [ 8.3357747, 47.341899 ], + [ 8.335814599999999, 47.3421185 ], + [ 8.3358338, 47.3422082 ], + [ 8.3358635, 47.3423472 ], + [ 8.3358931, 47.3424641 ], + [ 8.3358866, 47.3425302 ], + [ 8.335878, 47.3425901 ], + [ 8.3358987, 47.3426812 ], + [ 8.3359298, 47.3427504 ], + [ 8.3359835, 47.342853 ], + [ 8.3360698, 47.3430314 ], + [ 8.3360988, 47.3431256 ], + [ 8.3361439, 47.3432037 ], + [ 8.3361995, 47.3432496 ], + [ 8.3362556, 47.3433126 ], + [ 8.3363192, 47.3433737 ], + [ 8.3363777, 47.3434802 ], + [ 8.3364452, 47.3435711 ], + [ 8.3365092, 47.3436462 ], + [ 8.3365602, 47.3437089 ], + [ 8.3366485, 47.3437941 ], + [ 8.3368238, 47.3439369 ], + [ 8.3369558, 47.3440491 ], + [ 8.3370379, 47.3441127 ], + [ 8.3371151, 47.3441826 ], + [ 8.3372335, 47.3442588 ], + [ 8.3373402, 47.3443207 ], + [ 8.3374884, 47.3444181 ], + [ 8.3375222, 47.3444534 ], + [ 8.3375461, 47.3444965 ], + [ 8.3376441, 47.3445653 ], + [ 8.3377768, 47.3446508 ], + [ 8.3378788, 47.3447028 ], + [ 8.3379926, 47.3447433 ], + [ 8.338108, 47.3447756 ], + [ 8.3382067, 47.3447964 ], + [ 8.3383767, 47.3448075 ], + [ 8.3385508, 47.3448055 ], + [ 8.3386976, 47.3447795 ], + [ 8.33886, 47.3447405 ], + [ 8.3389938, 47.3446974 ], + [ 8.3391347, 47.3446384 ], + [ 8.3392641, 47.3445705 ], + [ 8.3393651, 47.3445111 ], + [ 8.3394763, 47.3444267 ], + [ 8.3396636, 47.3442258 ], + [ 8.3397416, 47.3441315 ], + [ 8.3398243, 47.3440226 ], + [ 8.3399228, 47.3438383 ], + [ 8.3400105, 47.3436533 ] + ], + [ + [ 8.3880484, 47.2901686 ], + [ 8.3881167, 47.2901756 ], + [ 8.3881257, 47.2901984 ], + [ 8.3881054, 47.29022 ], + [ 8.3880454, 47.2902451 ], + [ 8.3879985, 47.2902876 ], + [ 8.3878868, 47.2904103 ], + [ 8.3878399, 47.2904161 ], + [ 8.3877887, 47.2903853 ], + [ 8.3877877, 47.2903486 ], + [ 8.3878264, 47.2902771 ], + [ 8.3879035, 47.2902251 ], + [ 8.3879754, 47.290177 ], + [ 8.3880484, 47.2901686 ] + ], + [ + [ 8.3717382, 47.3256273 ], + [ 8.371826, 47.3255768 ], + [ 8.3718876, 47.3255124 ], + [ 8.3719691, 47.325454 ], + [ 8.3720093, 47.3254323 ], + [ 8.3720566, 47.3254549 ], + [ 8.3721255, 47.3255127 ], + [ 8.3721714, 47.3255937 ], + [ 8.3721798, 47.3256441 ], + [ 8.3721568, 47.3256656 ], + [ 8.3720768, 47.3256735 ], + [ 8.3720145, 47.3257025 ], + [ 8.3719586, 47.3257464 ], + [ 8.3719104, 47.3258018 ], + [ 8.3718799, 47.3258198 ], + [ 8.3718306, 47.3258203 ], + [ 8.3717844, 47.3258545 ], + [ 8.3717386, 47.3259063 ], + [ 8.3716808, 47.3260477 ], + [ 8.3716203, 47.3261697 ], + [ 8.3715572, 47.3262199 ], + [ 8.3715219, 47.3261822 ], + [ 8.3715008, 47.3261098 ], + [ 8.3715107, 47.3260432 ], + [ 8.3715243, 47.3259829 ], + [ 8.3715665, 47.3259328 ], + [ 8.3716083, 47.3258642 ], + [ 8.3716385, 47.3257674 ], + [ 8.3716729, 47.3256953 ], + [ 8.3717382, 47.3256273 ] + ], + [ + [ 8.3711399, 47.3257989 ], + [ 8.371068, 47.3258422 ], + [ 8.3709927, 47.3258376 ], + [ 8.3708985, 47.3258085 ], + [ 8.3708444, 47.325817 ], + [ 8.3708491, 47.3258692 ], + [ 8.3708461, 47.3259091 ], + [ 8.3708093, 47.3259174 ], + [ 8.3707619, 47.325886 ], + [ 8.3707178, 47.3258369 ], + [ 8.370732, 47.3258048 ], + [ 8.370781, 47.3257875 ], + [ 8.3708877, 47.325759 ], + [ 8.3709537, 47.3257317 ], + [ 8.3709639, 47.3256856 ], + [ 8.3710104, 47.3256638 ], + [ 8.3710615, 47.3256314 ], + [ 8.3711183, 47.3256379 ], + [ 8.3711535, 47.3256739 ], + [ 8.3711532, 47.3257217 ], + [ 8.3711399, 47.3257989 ] + ], + [ + [ 8.3650875, 47.3290546 ], + [ 8.3649817, 47.3291108 ], + [ 8.3649074, 47.3291554 ], + [ 8.3648482, 47.3291522 ], + [ 8.3648458, 47.3291296 ], + [ 8.3648802, 47.3291065 ], + [ 8.364937, 47.3290886 ], + [ 8.3650028, 47.3290433 ], + [ 8.3650928, 47.3289925 ], + [ 8.3651913, 47.3289469 ], + [ 8.3653013, 47.3288883 ], + [ 8.3653631, 47.3288544 ], + [ 8.3654174, 47.3288176 ], + [ 8.3654992, 47.3287805 ], + [ 8.3656149, 47.3287498 ], + [ 8.3657096, 47.32873 ], + [ 8.3657335, 47.3287033 ], + [ 8.3657883, 47.3287005 ], + [ 8.3658303, 47.3286804 ], + [ 8.3658913, 47.3286685 ], + [ 8.3659398, 47.3286612 ], + [ 8.3659891, 47.328641 ], + [ 8.3660146, 47.3285863 ], + [ 8.3660606, 47.3285548 ], + [ 8.3661152, 47.3285361 ], + [ 8.366152, 47.3285267 ], + [ 8.366159, 47.3285024 ], + [ 8.3662156, 47.3284769 ], + [ 8.3662802, 47.3284211 ], + [ 8.3663503, 47.328378 ], + [ 8.3664139, 47.3283297 ], + [ 8.3665236, 47.3282545 ], + [ 8.3666206, 47.328181 ], + [ 8.3666949, 47.3281378 ], + [ 8.3667385, 47.3281533 ], + [ 8.3667454, 47.328188 ], + [ 8.3668119, 47.3281859 ], + [ 8.3669189, 47.3281425 ], + [ 8.3669832, 47.3281335 ], + [ 8.3670453, 47.3280535 ], + [ 8.3671091, 47.3280188 ], + [ 8.3671084, 47.3279742 ], + [ 8.3671044, 47.3279198 ], + [ 8.3671756, 47.3278827 ], + [ 8.3672571, 47.3278297 ], + [ 8.367419, 47.3277162 ], + [ 8.3675988, 47.3276032 ], + [ 8.367656, 47.3275505 ], + [ 8.3677019, 47.327513 ], + [ 8.367793, 47.3274674 ], + [ 8.3679103, 47.327405 ], + [ 8.3680077, 47.3273526 ], + [ 8.3681279, 47.3272773 ], + [ 8.3681538, 47.327243 ], + [ 8.3681772, 47.3271913 ], + [ 8.3682714, 47.327136 ], + [ 8.3683771, 47.3270782 ], + [ 8.3684255, 47.3270633 ], + [ 8.3684564, 47.3270191 ], + [ 8.3685787, 47.32694 ], + [ 8.368672, 47.3268937 ], + [ 8.368767, 47.3268293 ], + [ 8.3688833, 47.3267699 ], + [ 8.3689795, 47.3267114 ], + [ 8.369083, 47.3266416 ], + [ 8.369193899999999, 47.3265784 ], + [ 8.3692716, 47.3265482 ], + [ 8.3693988, 47.3265167 ], + [ 8.3695811, 47.3264233 ], + [ 8.3698522, 47.3262724 ], + [ 8.3700028, 47.3261817 ], + [ 8.3700826, 47.3261559 ], + [ 8.3701251, 47.326104 ], + [ 8.3701455, 47.3260585 ], + [ 8.3702557, 47.326015 ], + [ 8.3703337, 47.3259416 ], + [ 8.3703985, 47.3259032 ], + [ 8.3705037, 47.3258787 ], + [ 8.3705779, 47.3258916 ], + [ 8.3705585, 47.3259356 ], + [ 8.3704914, 47.3259665 ], + [ 8.370426, 47.326033 ], + [ 8.3704299, 47.3260776 ], + [ 8.3704947, 47.3261057 ], + [ 8.3705375, 47.3261393 ], + [ 8.3705287, 47.3261825 ], + [ 8.3704796, 47.3262133 ], + [ 8.3703669, 47.3262318 ], + [ 8.3702722, 47.3262561 ], + [ 8.3702287, 47.3262414 ], + [ 8.3701934, 47.3262138 ], + [ 8.370093, 47.3262118 ], + [ 8.370048, 47.3262342 ], + [ 8.3700006, 47.3262407 ], + [ 8.3699505, 47.3262813 ], + [ 8.3698582, 47.3263192 ], + [ 8.3697629, 47.3263701 ], + [ 8.3696898, 47.3264223 ], + [ 8.3696199, 47.3264744 ], + [ 8.3694939, 47.3265172 ], + [ 8.3693984, 47.3265552 ], + [ 8.3693853, 47.3265917 ], + [ 8.3693324, 47.3266512 ], + [ 8.3692232, 47.3266939 ], + [ 8.3691377, 47.3267605 ], + [ 8.3690075, 47.3268707 ], + [ 8.3688629, 47.3269463 ], + [ 8.3688055, 47.3269847 ], + [ 8.368793, 47.3270635 ], + [ 8.3687459, 47.3271547 ], + [ 8.3686382, 47.3272231 ], + [ 8.3686442, 47.3272639 ], + [ 8.3685944, 47.3273869 ], + [ 8.3684855, 47.3275075 ], + [ 8.3684449, 47.327545 ], + [ 8.368431, 47.3275383 ], + [ 8.3684523, 47.3274814 ], + [ 8.3684472, 47.327427 ], + [ 8.3684266, 47.3273939 ], + [ 8.3683923, 47.3273609 ], + [ 8.3683586, 47.3273718 ], + [ 8.368378, 47.3273943 ], + [ 8.3683425, 47.3274166 ], + [ 8.368344, 47.3274454 ], + [ 8.3683742, 47.3274814 ], + [ 8.3683566, 47.3275753 ], + [ 8.3683193, 47.3276143 ], + [ 8.3682873, 47.3275987 ], + [ 8.3682642, 47.3276057 ], + [ 8.3683021, 47.3276621 ], + [ 8.3682623, 47.3277487 ], + [ 8.3681719, 47.3278434 ], + [ 8.3680999, 47.3278971 ], + [ 8.3680375, 47.3279544 ], + [ 8.3680111, 47.3279554 ], + [ 8.3679855, 47.3279368 ], + [ 8.3679571, 47.3278796 ], + [ 8.3679285, 47.3278088 ], + [ 8.3679008, 47.3277939 ], + [ 8.3678915, 47.327741 ], + [ 8.3678647, 47.3277209 ], + [ 8.3677543, 47.3277492 ], + [ 8.3676579, 47.327794 ], + [ 8.3675773, 47.3278447 ], + [ 8.3675982, 47.3278914 ], + [ 8.3675828, 47.3279196 ], + [ 8.3676202, 47.3279457 ], + [ 8.3676583, 47.3279552 ], + [ 8.3677033, 47.3279895 ], + [ 8.3677604, 47.3280638 ], + [ 8.3678346, 47.3280805 ], + [ 8.3678162, 47.3281147 ], + [ 8.3677796, 47.3281393 ], + [ 8.3677321, 47.3282063 ], + [ 8.3676985, 47.3282823 ], + [ 8.3676281, 47.32837 ], + [ 8.3675301, 47.3284519 ], + [ 8.3674433, 47.3285034 ], + [ 8.367327, 47.3285628 ], + [ 8.3672608, 47.3285839 ], + [ 8.3672061, 47.328595 ], + [ 8.367174200000001, 47.3285802 ], + [ 8.3671535, 47.3285463 ], + [ 8.3671526, 47.3284873 ], + [ 8.3671907, 47.3284287 ], + [ 8.3672258, 47.3283777 ], + [ 8.3672536, 47.3283328 ], + [ 8.3672078, 47.3283106 ], + [ 8.3671424, 47.3283127 ], + [ 8.3670858, 47.3283382 ], + [ 8.3670075, 47.3283995 ], + [ 8.3669524, 47.328453 ], + [ 8.3669139, 47.3284882 ], + [ 8.3669377, 47.3285228 ], + [ 8.3669596, 47.3285717 ], + [ 8.3669453, 47.3286021 ], + [ 8.3669732, 47.3286298 ], + [ 8.366996, 47.3286682 ], + [ 8.3669049, 47.3287137 ], + [ 8.3668293, 47.3287402 ], + [ 8.366769099999999, 47.3287407 ], + [ 8.3666766, 47.3287674 ], + [ 8.3665903, 47.3287871 ], + [ 8.3665064, 47.3288228 ], + [ 8.366357, 47.3288605 ], + [ 8.366243, 47.3288639 ], + [ 8.3661921, 47.3288493 ], + [ 8.3661938, 47.3288273 ], + [ 8.3662453, 47.3288079 ], + [ 8.3662937, 47.3287969 ], + [ 8.3663554, 47.3287615 ], + [ 8.3663567, 47.32871 ], + [ 8.3663287, 47.3286747 ], + [ 8.3662964, 47.328638 ], + [ 8.3662289, 47.3286477 ], + [ 8.3661593, 47.328653 ], + [ 8.3661136, 47.3286345 ], + [ 8.3660086, 47.3286711 ], + [ 8.3659435, 47.3286937 ], + [ 8.3658778, 47.3287442 ], + [ 8.3658501, 47.3287967 ], + [ 8.3658157, 47.328828 ], + [ 8.3657473, 47.3288401 ], + [ 8.3656819, 47.3288452 ], + [ 8.365614, 47.3288293 ], + [ 8.3655486, 47.3288329 ], + [ 8.365457, 47.3288512 ], + [ 8.3653951, 47.3288768 ], + [ 8.3652812, 47.3289528 ], + [ 8.3652257, 47.3289783 ], + [ 8.3651956, 47.3290157 ], + [ 8.3651318, 47.3290556 ], + [ 8.3650875, 47.3290546 ] + ], + [ + [ 8.3713188, 47.3266667 ], + [ 8.3713358, 47.3267065 ], + [ 8.3713093, 47.3267582 ], + [ 8.3712271, 47.3267705 ], + [ 8.3711966, 47.3267451 ], + [ 8.3712108, 47.3267086 ], + [ 8.3712603, 47.3266797 ], + [ 8.3713188, 47.3266667 ] + ], + [ + [ 8.3698056, 47.3275066 ], + [ 8.3698903, 47.32748 ], + [ 8.3700487, 47.3274066 ], + [ 8.3701772, 47.3273459 ], + [ 8.37033, 47.3272955 ], + [ 8.3703882, 47.327263 ], + [ 8.370443, 47.3272385 ], + [ 8.3705427, 47.3272365 ], + [ 8.3706367, 47.3272531 ], + [ 8.3707189, 47.3272795 ], + [ 8.3707739, 47.3273087 ], + [ 8.3708127, 47.3273507 ], + [ 8.3708364, 47.3274052 ], + [ 8.3708462, 47.3274632 ], + [ 8.3708357, 47.3275251 ], + [ 8.3708135, 47.3275635 ], + [ 8.370773, 47.3276129 ], + [ 8.3707201, 47.3276482 ], + [ 8.3706325, 47.3277194 ], + [ 8.3705746, 47.3277618 ], + [ 8.3704976, 47.3278206 ], + [ 8.3703899, 47.3279107 ], + [ 8.3703279, 47.3279349 ], + [ 8.3702583, 47.3279293 ], + [ 8.3701738, 47.3279108 ], + [ 8.3700112, 47.3278888 ], + [ 8.3698651, 47.3278472 ], + [ 8.3697682, 47.3278094 ], + [ 8.3697347, 47.3277505 ], + [ 8.3697118, 47.3276863 ], + [ 8.3697226, 47.3276287 ], + [ 8.3696992, 47.3275998 ], + [ 8.3696853, 47.3275628 ], + [ 8.3697231, 47.327527 ], + [ 8.3698056, 47.3275066 ] + ], + [ + [ 8.367283, 47.3292057 ], + [ 8.3672657, 47.3291575 ], + [ 8.3672586, 47.3291334 ], + [ 8.3672656, 47.3291086 ], + [ 8.3672834, 47.3290866 ], + [ 8.3673369, 47.3290879 ], + [ 8.3673643, 47.3290964 ], + [ 8.3673987, 47.3290861 ], + [ 8.3674275, 47.329084 ], + [ 8.3674782, 47.3291065 ], + [ 8.3675369, 47.3291177 ], + [ 8.3675766, 47.3291279 ], + [ 8.3676187, 47.3291351 ], + [ 8.3676572, 47.3291642 ], + [ 8.3676642, 47.3291907 ], + [ 8.3676722, 47.3292183 ], + [ 8.3676296, 47.3292364 ], + [ 8.3675894, 47.3292457 ], + [ 8.3675411, 47.3292586 ], + [ 8.3675227, 47.3292941 ], + [ 8.3674771, 47.3293241 ], + [ 8.3674305, 47.3293393 ], + [ 8.3674024, 47.3293378 ], + [ 8.367378800000001, 47.3293079 ], + [ 8.3673833, 47.3292808 ], + [ 8.3673615, 47.3292615 ], + [ 8.3673253, 47.3292625 ], + [ 8.3673028, 47.3292497 ], + [ 8.367283, 47.3292057 ] + ], + [ + [ 8.3648984, 47.3303707 ], + [ 8.3649268, 47.3303355 ], + [ 8.36496, 47.3302957 ], + [ 8.364995799999999, 47.3302552 ], + [ 8.3650332, 47.3302194 ], + [ 8.3650408, 47.3301815 ], + [ 8.3650645, 47.3301606 ], + [ 8.3650682, 47.3301352 ], + [ 8.3650403, 47.330107 ], + [ 8.3649887, 47.3300997 ], + [ 8.3649114, 47.3300944 ], + [ 8.3648642, 47.3300966 ], + [ 8.3648033, 47.3300799 ], + [ 8.3647172, 47.3300865 ], + [ 8.3646568, 47.3300977 ], + [ 8.3645873, 47.3301065 ], + [ 8.3645647, 47.3300966 ], + [ 8.3645604, 47.3300854 ], + [ 8.3645453, 47.3300779 ], + [ 8.3645264, 47.3300449 ], + [ 8.3644991, 47.3300014 ], + [ 8.3644755, 47.3299401 ], + [ 8.364469, 47.3299046 ], + [ 8.3645004, 47.3298955 ], + [ 8.3645443, 47.3298958 ], + [ 8.3645673, 47.3299275 ], + [ 8.3646028, 47.3299136 ], + [ 8.3646465, 47.3299038 ], + [ 8.3646574, 47.3298665 ], + [ 8.3646787, 47.3298486 ], + [ 8.3647375, 47.3298434 ], + [ 8.3647997, 47.3298429 ], + [ 8.3648594, 47.3298448 ], + [ 8.3648755, 47.3298618 ], + [ 8.364907, 47.3298609 ], + [ 8.364961, 47.3298629 ], + [ 8.3650657, 47.3298744 ], + [ 8.3651292, 47.329897 ], + [ 8.365185, 47.3299084 ], + [ 8.3652621, 47.3299077 ], + [ 8.3653625, 47.3299099 ], + [ 8.3653686, 47.3299235 ], + [ 8.3653423, 47.3299373 ], + [ 8.3653295, 47.3299604 ], + [ 8.3653576, 47.3299992 ], + [ 8.3653223, 47.3300202 ], + [ 8.3653035, 47.3300813 ], + [ 8.3652966, 47.3301528 ], + [ 8.3652821, 47.330221 ], + [ 8.3652304, 47.3303361 ], + [ 8.3651748, 47.3304216 ], + [ 8.3651245, 47.3304829 ], + [ 8.3650618, 47.3305449 ], + [ 8.3649999, 47.3306046 ], + [ 8.3649808, 47.3306017 ], + [ 8.3649664, 47.3305421 ], + [ 8.3649357, 47.3304975 ], + [ 8.3649034, 47.3304575 ], + [ 8.3648747, 47.3304341 ], + [ 8.3648809, 47.3304092 ], + [ 8.3648984, 47.3303707 ] + ], + [ + [ 8.36443, 47.3300788 ], + [ 8.3644655, 47.3301128 ], + [ 8.3644635, 47.3301388 ], + [ 8.3644498, 47.3301626 ], + [ 8.3644253, 47.3301799 ], + [ 8.3643929, 47.3301784 ], + [ 8.3643606, 47.3301834 ], + [ 8.3643179, 47.3302038 ], + [ 8.3642908, 47.33022 ], + [ 8.3642963, 47.3302483 ], + [ 8.3642834, 47.3302668 ], + [ 8.3642521, 47.3302741 ], + [ 8.3642129, 47.330265 ], + [ 8.3641554, 47.3302519 ], + [ 8.3641106, 47.330251 ], + [ 8.3640759, 47.3302572 ], + [ 8.3640557, 47.3302863 ], + [ 8.3640374, 47.3303279 ], + [ 8.3640038, 47.3303524 ], + [ 8.3639536, 47.3303705 ], + [ 8.3639072, 47.3303744 ], + [ 8.3638665, 47.3303718 ], + [ 8.3638272, 47.3303573 ], + [ 8.3637879, 47.3303405 ], + [ 8.3637435, 47.330316 ], + [ 8.3637224, 47.3302955 ], + [ 8.3637162, 47.3302743 ], + [ 8.3637272, 47.3302446 ], + [ 8.3637251, 47.3302204 ], + [ 8.3637573, 47.3302125 ], + [ 8.3637693, 47.3301881 ], + [ 8.3638029, 47.3301648 ], + [ 8.3638597, 47.3301431 ], + [ 8.3638618, 47.3301235 ], + [ 8.363884, 47.3301121 ], + [ 8.3639288, 47.3301118 ], + [ 8.3639692, 47.3301002 ], + [ 8.3639821, 47.3300812 ], + [ 8.3640343, 47.3300754 ], + [ 8.3640685, 47.3300444 ], + [ 8.364118, 47.3300293 ], + [ 8.3641716, 47.3300117 ], + [ 8.364216, 47.3299924 ], + [ 8.364234, 47.3299775 ], + [ 8.3642007, 47.3299736 ], + [ 8.364208, 47.3299623 ], + [ 8.364255, 47.3299472 ], + [ 8.3643021, 47.3299409 ], + [ 8.3643518, 47.3299369 ], + [ 8.3643726, 47.3299793 ], + [ 8.3643881, 47.3300141 ], + [ 8.3644085, 47.3300399 ], + [ 8.36443, 47.3300788 ] + ], + [ + [ 8.3633616, 47.3303002 ], + [ 8.3634127, 47.3303252 ], + [ 8.3634446, 47.3303468 ], + [ 8.3634984, 47.3303375 ], + [ 8.3635367, 47.3303443 ], + [ 8.363557, 47.3303211 ], + [ 8.3635999, 47.3303089 ], + [ 8.3636482, 47.3303221 ], + [ 8.3636876, 47.3303443 ], + [ 8.3636991, 47.3303814 ], + [ 8.3636822, 47.3304082 ], + [ 8.3636472, 47.3304457 ], + [ 8.3636086, 47.3304637 ], + [ 8.3636069, 47.3305046 ], + [ 8.3636273, 47.3305298 ], + [ 8.3636596, 47.3305296 ], + [ 8.3637151, 47.3305238 ], + [ 8.3637649, 47.3305281 ], + [ 8.3638126, 47.3305455 ], + [ 8.36388, 47.3305568 ], + [ 8.3639005, 47.3305465 ], + [ 8.3639031, 47.3305075 ], + [ 8.3639226, 47.3304884 ], + [ 8.3640003, 47.3304736 ], + [ 8.3640616, 47.330469 ], + [ 8.364111, 47.3304922 ], + [ 8.3641579, 47.3305185 ], + [ 8.3642065, 47.3305411 ], + [ 8.3642122, 47.3305777 ], + [ 8.3642298, 47.3305888 ], + [ 8.364269, 47.3305986 ], + [ 8.3643218, 47.3305857 ], + [ 8.3643713, 47.3305723 ], + [ 8.364424, 47.33055 ], + [ 8.3644971, 47.3305098 ], + [ 8.3645688, 47.3304862 ], + [ 8.3646517, 47.3304838 ], + [ 8.3647273, 47.3304903 ], + [ 8.3647999, 47.3305104 ], + [ 8.3648598, 47.3305217 ], + [ 8.3648786, 47.3305505 ], + [ 8.3648801, 47.3305836 ], + [ 8.3648626, 47.330624 ], + [ 8.3648659, 47.3306689 ], + [ 8.3648441, 47.3306974 ], + [ 8.364739, 47.3307592 ], + [ 8.3646624, 47.3307846 ], + [ 8.3645824, 47.3308089 ], + [ 8.3644824, 47.3308322 ], + [ 8.3644316, 47.3308622 ], + [ 8.3643968, 47.3309091 ], + [ 8.3643579, 47.3309154 ], + [ 8.3643238, 47.3309511 ], + [ 8.3642635, 47.3309664 ], + [ 8.3641909, 47.3309876 ], + [ 8.3641154, 47.3309894 ], + [ 8.36402, 47.3309855 ], + [ 8.3638759, 47.3310014 ], + [ 8.3637492, 47.3310142 ], + [ 8.3636655, 47.3310143 ], + [ 8.3635341, 47.3309964 ], + [ 8.363473, 47.3309703 ], + [ 8.3634698, 47.3309337 ], + [ 8.3635004, 47.3309252 ], + [ 8.3635762, 47.3309009 ], + [ 8.3636711, 47.3308747 ], + [ 8.3637222, 47.3308572 ], + [ 8.3636941, 47.330816 ], + [ 8.3635789, 47.3307803 ], + [ 8.3634472, 47.3307459 ], + [ 8.3633785, 47.3307127 ], + [ 8.3633069, 47.3306536 ], + [ 8.3632569, 47.3305966 ], + [ 8.3632278, 47.3305478 ], + [ 8.3632385, 47.3305022 ], + [ 8.3632817, 47.3304599 ], + [ 8.3632934, 47.3304225 ], + [ 8.3632523, 47.3303956 ], + [ 8.3632531, 47.3303501 ], + [ 8.3632972, 47.3303131 ], + [ 8.3633616, 47.3303002 ] + ], + [ + [ 8.3389711, 47.3433747 ], + [ 8.3389979, 47.3433519 ], + [ 8.3390459, 47.3433243 ], + [ 8.339083, 47.3433103 ], + [ 8.3390893, 47.3432818 ], + [ 8.339095, 47.3432604 ], + [ 8.3391064, 47.3432191 ], + [ 8.3391219, 47.3431849 ], + [ 8.3391617, 47.3431618 ], + [ 8.33921, 47.3431643 ], + [ 8.3392608, 47.3432038 ], + [ 8.3392496, 47.3432551 ], + [ 8.3392502, 47.3432921 ], + [ 8.339201599999999, 47.3434328 ], + [ 8.3391819, 47.343485 ], + [ 8.3391557, 47.3435283 ], + [ 8.3391172, 47.3435799 ], + [ 8.3390715, 47.3435985 ], + [ 8.338984, 47.3435971 ], + [ 8.3389131, 47.3435669 ], + [ 8.3388855, 47.3435218 ], + [ 8.3389021, 47.3434911 ], + [ 8.3389483, 47.3434474 ], + [ 8.3389759, 47.3434112 ], + [ 8.3389711, 47.3433747 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "KTAG401", + "country" : "CHE", + "name" : [ + { + "text" : "Reuss", + "lang" : "de-CH" + }, + { + "text" : "Reuss", + "lang" : "fr-CH" + }, + { + "text" : "Reuss", + "lang" : "it-CH" + }, + { + "text" : "Reuss", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "regulationExemption" : "NO", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "schedule" : [ + { + "day" : [ "ANY" ], + "startTime" : "00:00:00.00+01:00", + "endTime" : "00:00:00.00+01:00" + } + ] + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Aargau", + "lang" : "de-CH" + }, + { + "text" : "Canton d'Argovie", + "lang" : "fr-CH" + }, + { + "text" : "Canton Argovia", + "lang" : "it-CH" + }, + { + "text" : "Canton of Aargau", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Departement Bau, Verkehr und Umwelt (BVU)", + "lang" : "de-CH" + }, + { + "text" : "Département de la construction, des transports et de l'environnement (CTE)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento delle costruzioni, dei trasporti e dell'ambiente (CTA)", + "lang" : "it-CH" + }, + { + "text" : "Department of Civil Engineering,Transport and Environment (CTE)", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Sektion Gewässernutzung", + "lang" : "de-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "fr-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "it-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ag.ch/de/verwaltung/bvu/umwelt-natur-landschaft/hochwasserschutz-gewaesser/gewaessernutzung", + "email" : "alg@ag.ch", + "phone" : "0041 62 835 34 50", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8484204, 47.5280924 ], + [ 7.8482194, 47.5280213 ], + [ 7.8480198, 47.5279343 ], + [ 7.84791, 47.5278836 ], + [ 7.8477894, 47.5278432 ], + [ 7.847583, 47.5277318 ], + [ 7.8475687, 47.5278412 ], + [ 7.8473068, 47.527810099999996 ], + [ 7.8468145, 47.5278052 ], + [ 7.8475998, 47.5279181 ], + [ 7.8478691, 47.5279774 ], + [ 7.8482581, 47.528096 ], + [ 7.8484213, 47.5281275 ], + [ 7.8484204, 47.5280924 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns075", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Sonnenberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Sonnenberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Sonnenberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Sonnenberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.7713094, 46.6753829 ], + [ 8.7713005, 46.6752418 ], + [ 8.7712809, 46.6751011 ], + [ 8.7712507, 46.6749614 ], + [ 8.7712099, 46.6748229 ], + [ 8.7711586, 46.6746861 ], + [ 8.7710969, 46.6745514 ], + [ 8.7710251, 46.674419 ], + [ 8.7709434, 46.6742894 ], + [ 8.7708519, 46.6741629 ], + [ 8.7707509, 46.6740399 ], + [ 8.7706407, 46.6739207 ], + [ 8.7705216, 46.6738057 ], + [ 8.7703939, 46.6736951 ], + [ 8.7702579, 46.6735892 ], + [ 8.7701141, 46.6734884 ], + [ 8.7699629, 46.6733929 ], + [ 8.7698046, 46.673303 ], + [ 8.7696396, 46.6732189 ], + [ 8.7694685, 46.6731408 ], + [ 8.7692917, 46.6730691 ], + [ 8.7691097, 46.6730038 ], + [ 8.768923, 46.6729451 ], + [ 8.768732, 46.6728933 ], + [ 8.7685374, 46.6728484 ], + [ 8.7683397, 46.6728105 ], + [ 8.7681393, 46.6727799 ], + [ 8.7679369, 46.6727565 ], + [ 8.7677329, 46.6727404 ], + [ 8.7675281, 46.6727317 ], + [ 8.7673228, 46.6727304 ], + [ 8.7671178, 46.6727365 ], + [ 8.7669134, 46.67275 ], + [ 8.766710400000001, 46.6727708 ], + [ 8.7665093, 46.6727989 ], + [ 8.7663105, 46.6728342 ], + [ 8.7661147, 46.6728766 ], + [ 8.7659225, 46.672926 ], + [ 8.7657342, 46.6729823 ], + [ 8.7655504, 46.6730453 ], + [ 8.7653717, 46.6731148 ], + [ 8.7651986, 46.6731906 ], + [ 8.7650314, 46.6732726 ], + [ 8.7648707, 46.6733605 ], + [ 8.7647169, 46.673454 ], + [ 8.7645704, 46.673553 ], + [ 8.7644317, 46.6736571 ], + [ 8.764301, 46.6737661 ], + [ 8.7641788, 46.6738796 ], + [ 8.7640654, 46.6739974 ], + [ 8.7639612, 46.6741191 ], + [ 8.7638663, 46.6742444 ], + [ 8.7637811, 46.6743729 ], + [ 8.7637057, 46.6745043 ], + [ 8.7636405, 46.6746383 ], + [ 8.7635855, 46.6747744 ], + [ 8.763541, 46.6749123 ], + [ 8.763507, 46.6750517 ], + [ 8.7634836, 46.675192 ], + [ 8.763471, 46.675333 ], + [ 8.7634691, 46.6754743 ], + [ 8.7634779, 46.6756155 ], + [ 8.7634975, 46.6757561 ], + [ 8.7635277, 46.6758959 ], + [ 8.7635685, 46.6760343 ], + [ 8.7636198, 46.6761711 ], + [ 8.7636814, 46.6763059 ], + [ 8.7637532, 46.6764383 ], + [ 8.763834899999999, 46.6765679 ], + [ 8.7639264, 46.6766943 ], + [ 8.7640274, 46.6768174 ], + [ 8.7641376, 46.6769366 ], + [ 8.7642567, 46.6770516 ], + [ 8.7643844, 46.6771622 ], + [ 8.7645203, 46.6772681 ], + [ 8.7646641, 46.6773689 ], + [ 8.7648154, 46.6774644 ], + [ 8.7649737, 46.6775544 ], + [ 8.7651386, 46.6776385 ], + [ 8.7653098, 46.6777165 ], + [ 8.7654866, 46.6777883 ], + [ 8.7656686, 46.6778536 ], + [ 8.7658553, 46.6779123 ], + [ 8.7660463, 46.6779641 ], + [ 8.7662409, 46.678009 ], + [ 8.7664387, 46.6780468 ], + [ 8.7666391, 46.6780775 ], + [ 8.7668415, 46.6781009 ], + [ 8.7670455, 46.678117 ], + [ 8.7672504, 46.6781257 ], + [ 8.7674556, 46.678127 ], + [ 8.7676607, 46.6781209 ], + [ 8.7678651, 46.6781074 ], + [ 8.7680681, 46.6780866 ], + [ 8.7682693, 46.6780585 ], + [ 8.768468, 46.6780232 ], + [ 8.7686638, 46.6779808 ], + [ 8.7688561, 46.6779314 ], + [ 8.7690444, 46.6778751 ], + [ 8.7692282, 46.6778121 ], + [ 8.7694069, 46.6777426 ], + [ 8.7695801, 46.6776667 ], + [ 8.7697472, 46.6775847 ], + [ 8.7699079, 46.6774969 ], + [ 8.7700618, 46.6774033 ], + [ 8.7702082, 46.6773043 ], + [ 8.770347, 46.6772002 ], + [ 8.7704776, 46.6770912 ], + [ 8.7705998, 46.6769777 ], + [ 8.7707132, 46.6768599 ], + [ 8.7708175, 46.6767382 ], + [ 8.770912299999999, 46.6766129 ], + [ 8.7709975, 46.6764844 ], + [ 8.7710729, 46.6763529 ], + [ 8.7711381, 46.676219 ], + [ 8.771193, 46.6760829 ], + [ 8.7712375, 46.6759449 ], + [ 8.7712715, 46.6758056 ], + [ 8.771294900000001, 46.6756652 ], + [ 8.7713075, 46.6755242 ], + [ 8.7713094, 46.6753829 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0107", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Sedrun", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Sedrun", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Sedrun", + "lang" : "it-CH" + }, + { + "text" : "Substation Sedrun", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.1876842, 47.5990879 ], + [ 8.1876767, 47.5989467 ], + [ 8.1876583, 47.598806 ], + [ 8.1876291, 47.5986661 ], + [ 8.1875891, 47.5985275 ], + [ 8.1875384, 47.5983905 ], + [ 8.1874772, 47.5982554 ], + [ 8.1874056, 47.5981227 ], + [ 8.1873238, 47.5979927 ], + [ 8.1872321, 47.5978658 ], + [ 8.1871307, 47.5977423 ], + [ 8.1870199, 47.5976226 ], + [ 8.1869, 47.597507 ], + [ 8.1867713, 47.5973957 ], + [ 8.1866342, 47.5972892 ], + [ 8.186489, 47.5971877 ], + [ 8.1863361, 47.5970914 ], + [ 8.1861761, 47.5970007 ], + [ 8.1860092, 47.5969158 ], + [ 8.185836, 47.5968369 ], + [ 8.1856569, 47.5967642 ], + [ 8.1854724, 47.596698 ], + [ 8.1852831, 47.5966384 ], + [ 8.1850894, 47.5965856 ], + [ 8.1848919, 47.5965397 ], + [ 8.1846911, 47.5965009 ], + [ 8.1844876, 47.5964692 ], + [ 8.1842819, 47.5964448 ], + [ 8.1840746, 47.5964277 ], + [ 8.1838663, 47.5964179 ], + [ 8.1836575, 47.5964156 ], + [ 8.1834488, 47.5964206 ], + [ 8.1832408, 47.596433 ], + [ 8.183034, 47.5964528 ], + [ 8.182829, 47.5964799 ], + [ 8.1826264, 47.5965141 ], + [ 8.1824268, 47.5965555 ], + [ 8.1822306, 47.596604 ], + [ 8.1820384, 47.5966592 ], + [ 8.1818508, 47.5967213 ], + [ 8.1816682, 47.5967898 ], + [ 8.1814912, 47.5968648 ], + [ 8.1813202, 47.5969459 ], + [ 8.181155799999999, 47.5970329 ], + [ 8.1809983, 47.5971257 ], + [ 8.1808482, 47.5972239 ], + [ 8.1807059, 47.5973273 ], + [ 8.1805717, 47.5974355 ], + [ 8.1804462, 47.5975484 ], + [ 8.1803295, 47.5976656 ], + [ 8.1802221, 47.5977867 ], + [ 8.1801242, 47.5979115 ], + [ 8.1800361, 47.5980395 ], + [ 8.179958, 47.5981705 ], + [ 8.1798901, 47.5983041 ], + [ 8.1798327, 47.5984399 ], + [ 8.1797859, 47.5985776 ], + [ 8.1797498, 47.5987167 ], + [ 8.1797244, 47.5988569 ], + [ 8.17971, 47.5989978 ], + [ 8.1797065, 47.5991391 ], + [ 8.179714, 47.5992802 ], + [ 8.1797323, 47.599421 ], + [ 8.1797615, 47.5995608 ], + [ 8.1798015, 47.5996995 ], + [ 8.1798522, 47.5998365 ], + [ 8.1799134, 47.5999715 ], + [ 8.179985, 47.6001042 ], + [ 8.1800667, 47.6002342 ], + [ 8.1801584, 47.6003611 ], + [ 8.1802598, 47.6004846 ], + [ 8.1803706, 47.6006044 ], + [ 8.1804905, 47.60072 ], + [ 8.1806192, 47.6008313 ], + [ 8.1807563, 47.6009378 ], + [ 8.1809015, 47.6010394 ], + [ 8.1810544, 47.6011356 ], + [ 8.1812144, 47.6012263 ], + [ 8.1813813, 47.6013113 ], + [ 8.1815545, 47.6013902 ], + [ 8.1817336, 47.6014628 ], + [ 8.1819181, 47.601529 ], + [ 8.1821075, 47.6015887 ], + [ 8.1823012, 47.6016415 ], + [ 8.1824987, 47.6016874 ], + [ 8.1826995, 47.6017262 ], + [ 8.182903, 47.6017579 ], + [ 8.1831087, 47.601782299999996 ], + [ 8.183316, 47.6017994 ], + [ 8.1835244, 47.6018091 ], + [ 8.1837332, 47.6018115 ], + [ 8.1839419, 47.6018065 ], + [ 8.18415, 47.601794 ], + [ 8.1843568, 47.6017743 ], + [ 8.1845618, 47.6017472 ], + [ 8.1847644, 47.6017129 ], + [ 8.184964, 47.6016715 ], + [ 8.1851602, 47.6016231 ], + [ 8.1853524, 47.6015678 ], + [ 8.18554, 47.6015058 ], + [ 8.1857226, 47.6014372 ], + [ 8.1858997, 47.6013623 ], + [ 8.1860706, 47.6012812 ], + [ 8.1862351, 47.6011941 ], + [ 8.1863926, 47.6011013 ], + [ 8.1865427, 47.6010031 ], + [ 8.186685, 47.6008998 ], + [ 8.1868192, 47.6007915 ], + [ 8.1869447, 47.6006786 ], + [ 8.1870614, 47.6005614 ], + [ 8.1871688, 47.6004403 ], + [ 8.1872667, 47.6003155 ], + [ 8.1873548, 47.6001874 ], + [ 8.1874329, 47.6000564 ], + [ 8.1875007, 47.5999228 ], + [ 8.1875581, 47.599787 ], + [ 8.1876049, 47.5996494 ], + [ 8.187641, 47.5995102 ], + [ 8.1876663, 47.59937 ], + [ 8.1876807, 47.5992291 ], + [ 8.1876842, 47.5990879 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0062", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Leibstadt", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Leibstadt", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Leibstadt", + "lang" : "it-CH" + }, + { + "text" : "Substation Leibstadt", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8786508, 46.2381479 ], + [ 7.8786442999999995, 46.2380067 ], + [ 7.8786272, 46.2378659 ], + [ 7.8785995, 46.237726 ], + [ 7.8785613, 46.2375872 ], + [ 7.8785126, 46.23745 ], + [ 7.8784537, 46.2373148 ], + [ 7.8783847, 46.2371818 ], + [ 7.8783057, 46.2370516 ], + [ 7.878217, 46.2369244 ], + [ 7.8781189, 46.2368007 ], + [ 7.8780114999999995, 46.2366806 ], + [ 7.8778952, 46.2365646 ], + [ 7.8777704, 46.236453 ], + [ 7.8776373, 46.2363461 ], + [ 7.8774963, 46.2362441 ], + [ 7.8773478, 46.2361475 ], + [ 7.8771923, 46.2360563 ], + [ 7.8770301, 46.2359709 ], + [ 7.8768616, 46.2358915 ], + [ 7.8766874, 46.2358184 ], + [ 7.876508, 46.2357517 ], + [ 7.8763237, 46.2356916 ], + [ 7.8761352, 46.2356382 ], + [ 7.8759429, 46.2355918 ], + [ 7.8757473000000005, 46.2355524 ], + [ 7.8755491, 46.2355202 ], + [ 7.8753487, 46.2354952 ], + [ 7.8751467, 46.2354776 ], + [ 7.8749436, 46.2354673 ], + [ 7.8747401, 46.2354644 ], + [ 7.8745366, 46.2354688 ], + [ 7.8743337, 46.2354807 ], + [ 7.8741319999999995, 46.2354999 ], + [ 7.873932, 46.2355264 ], + [ 7.8737343, 46.2355602 ], + [ 7.8735394, 46.2356011 ], + [ 7.8733478, 46.235649 ], + [ 7.8731601, 46.2357037 ], + [ 7.8729769, 46.2357653 ], + [ 7.8727985, 46.2358334 ], + [ 7.8726255, 46.2359079 ], + [ 7.8724583, 46.2359885 ], + [ 7.8722975, 46.2360752 ], + [ 7.8721434, 46.2361675 ], + [ 7.8719964000000004, 46.2362653 ], + [ 7.8718571, 46.2363683 ], + [ 7.8717257, 46.2364763 ], + [ 7.8716027, 46.2365888 ], + [ 7.8714883, 46.2367057 ], + [ 7.8713828, 46.2368266 ], + [ 7.8712867, 46.2369511 ], + [ 7.8712, 46.237079 ], + [ 7.8711231999999995, 46.2372098 ], + [ 7.8710562, 46.2373433 ], + [ 7.8709995, 46.2374789 ], + [ 7.8709530999999995, 46.2376165 ], + [ 7.870917, 46.2377556 ], + [ 7.8708916, 46.2378957 ], + [ 7.8708767, 46.2380366 ], + [ 7.8708725, 46.2381779 ], + [ 7.870879, 46.2383191 ], + [ 7.870896, 46.2384599 ], + [ 7.8709237, 46.2385999 ], + [ 7.8709620000000005, 46.2387387 ], + [ 7.8710106, 46.2388759 ], + [ 7.8710695, 46.2390111 ], + [ 7.8711385, 46.239144 ], + [ 7.8712175, 46.2392743 ], + [ 7.8713061, 46.2394014 ], + [ 7.8714043, 46.2395252 ], + [ 7.8715116, 46.2396453 ], + [ 7.8716279, 46.2397613 ], + [ 7.8717527, 46.2398729 ], + [ 7.8718858, 46.2399798 ], + [ 7.8720268, 46.2400818 ], + [ 7.8721753, 46.2401785 ], + [ 7.8723308, 46.2402696 ], + [ 7.872493, 46.240355 ], + [ 7.8726614999999995, 46.2404344 ], + [ 7.8728356999999995, 46.2405076 ], + [ 7.8730152, 46.2405743 ], + [ 7.8731994, 46.2406344 ], + [ 7.873388, 46.2406877 ], + [ 7.8735803, 46.2407342 ], + [ 7.8737759, 46.2407736 ], + [ 7.8739741, 46.2408058 ], + [ 7.8741746, 46.2408308 ], + [ 7.8743766, 46.2408484 ], + [ 7.8745797, 46.2408587 ], + [ 7.8747831999999995, 46.2408616 ], + [ 7.8749868, 46.2408572 ], + [ 7.8751897, 46.2408453 ], + [ 7.8753914, 46.2408261 ], + [ 7.8755914, 46.2407995 ], + [ 7.8757891, 46.2407658 ], + [ 7.875984, 46.2407249 ], + [ 7.8761756, 46.240677 ], + [ 7.8763632999999995, 46.2406222 ], + [ 7.8765466, 46.2405607 ], + [ 7.876725, 46.2404926 ], + [ 7.876898, 46.2404181 ], + [ 7.8770652, 46.2403374 ], + [ 7.877226, 46.2402508 ], + [ 7.8773801, 46.2401584 ], + [ 7.877527, 46.2400606 ], + [ 7.8776664, 46.2399576 ], + [ 7.8777978, 46.2398496 ], + [ 7.8779208, 46.2397371 ], + [ 7.8780352, 46.2396202 ], + [ 7.8781406, 46.2394993 ], + [ 7.8782368, 46.2393747 ], + [ 7.8783234, 46.2392469 ], + [ 7.8784003, 46.2391161 ], + [ 7.8784672, 46.2389826 ], + [ 7.8785239, 46.2388469 ], + [ 7.8785703, 46.2387094 ], + [ 7.8786062999999995, 46.2385703 ], + [ 7.8786318, 46.2384301 ], + [ 7.8786466, 46.2382892 ], + [ 7.8786508, 46.2381479 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0115", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Stalden", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Stalden", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Stalden", + "lang" : "it-CH" + }, + { + "text" : "Substation Stalden", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.1989319, 47.3057076 ], + [ 8.1989762, 47.3057709 ], + [ 8.1990009, 47.3058134 ], + [ 8.1990254, 47.3059228 ], + [ 8.1990263, 47.3059929 ], + [ 8.1990141, 47.3060467 ], + [ 8.1989816, 47.306115 ], + [ 8.198943, 47.3062136 ], + [ 8.1989119, 47.3063212 ], + [ 8.1988124, 47.3065079 ], + [ 8.1987566, 47.3065599 ], + [ 8.1986645, 47.3066744 ], + [ 8.198645, 47.3067414 ], + [ 8.1986437, 47.3067853 ], + [ 8.1986225, 47.3068706 ], + [ 8.198588, 47.3069252 ], + [ 8.198536, 47.3070637 ], + [ 8.1985129, 47.3071392 ], + [ 8.1985077, 47.3072415 ], + [ 8.1984721, 47.3073538 ], + [ 8.19846, 47.3074161 ], + [ 8.198454, 47.30746 ], + [ 8.1984595, 47.3075229 ], + [ 8.1984578, 47.3076114 ], + [ 8.1984557, 47.307734 ], + [ 8.1984587, 47.3078264 ], + [ 8.1984419, 47.3078862 ], + [ 8.1984169, 47.3079636 ], + [ 8.198378, 47.3080333 ], + [ 8.198338, 47.3080912 ], + [ 8.1983127, 47.3081391 ], + [ 8.1983363, 47.3081771 ], + [ 8.1983514, 47.3081967 ], + [ 8.1983483, 47.3082452 ], + [ 8.1983312, 47.3082852 ], + [ 8.198301, 47.3083188 ], + [ 8.1983044, 47.308364 ], + [ 8.1983156, 47.3084439 ], + [ 8.1983427, 47.3085323 ], + [ 8.1983527, 47.3085899 ], + [ 8.1983714, 47.3086777 ], + [ 8.1983527, 47.3087354 ], + [ 8.1983324, 47.3088155 ], + [ 8.1983165, 47.3088752 ], + [ 8.1982949, 47.3089258 ], + [ 8.1982715, 47.3089803 ], + [ 8.1982482, 47.3090381 ], + [ 8.1982481, 47.309105 ], + [ 8.1982708, 47.3092097 ], + [ 8.1982714, 47.3092582 ], + [ 8.1982713, 47.3093245 ], + [ 8.1982722, 47.30947 ], + [ 8.1982789, 47.3095545 ], + [ 8.1983273, 47.3096473 ], + [ 8.1983781, 47.309708 ], + [ 8.1984584, 47.3097581 ], + [ 8.1985321, 47.3097931 ], + [ 8.1985773, 47.3098131 ], + [ 8.1986347, 47.3098503 ], + [ 8.1986398, 47.3098857 ], + [ 8.1986087, 47.3099153 ], + [ 8.1985858, 47.3099351 ], + [ 8.198591799999999, 47.3099705 ], + [ 8.1986266, 47.3100142 ], + [ 8.1986773, 47.3100644 ], + [ 8.1987513, 47.3101283 ], + [ 8.1988566, 47.3102002 ], + [ 8.1989746, 47.3102601 ], + [ 8.1990501, 47.3102954 ], + [ 8.1991288, 47.3103568 ], + [ 8.199151, 47.3104017 ], + [ 8.1991986, 47.3104483 ], + [ 8.19923, 47.31048 ], + [ 8.1992587, 47.3105241 ], + [ 8.1992841, 47.3105898 ], + [ 8.1993148, 47.3106411 ], + [ 8.1993566, 47.3107411 ], + [ 8.1993804, 47.3108296 ], + [ 8.1994062, 47.3109239 ], + [ 8.1994429, 47.3109928 ], + [ 8.1994436, 47.3110423 ], + [ 8.1994598, 47.3111236 ], + [ 8.1994664, 47.3111868 ], + [ 8.1994496, 47.311254 ], + [ 8.1994302, 47.3113317 ], + [ 8.1994272, 47.3113806 ], + [ 8.1994444, 47.3114639 ], + [ 8.199464, 47.311527 ], + [ 8.1995055, 47.3116055 ], + [ 8.1995396, 47.3116874 ], + [ 8.1995543, 47.3117355 ], + [ 8.1995409, 47.3118379 ], + [ 8.1995383, 47.3119174 ], + [ 8.1995325, 47.3119618 ], + [ 8.1995041, 47.3120095 ], + [ 8.199493499999999, 47.3120474 ], + [ 8.1994917, 47.3121178 ], + [ 8.1994767, 47.3121778 ], + [ 8.1994664, 47.3122417 ], + [ 8.1994599, 47.3123069 ], + [ 8.1994628, 47.3123708 ], + [ 8.1994722, 47.3124352 ], + [ 8.1994713, 47.3124997 ], + [ 8.1994758, 47.3125525 ], + [ 8.1995091, 47.312583599999996 ], + [ 8.1995096, 47.3126174 ], + [ 8.1995178, 47.3126617 ], + [ 8.1995625, 47.3127109 ], + [ 8.1995679, 47.3127578 ], + [ 8.1995541, 47.3128328 ], + [ 8.1995547, 47.3128791 ], + [ 8.1995712, 47.3129142 ], + [ 8.1996352, 47.3129985 ], + [ 8.1996719, 47.3130693 ], + [ 8.1997234, 47.313125 ], + [ 8.1997879, 47.313181900000004 ], + [ 8.1998205, 47.3132319 ], + [ 8.1998841, 47.3132836 ], + [ 8.1999533, 47.3133405 ], + [ 8.2000439, 47.3133803 ], + [ 8.2001626, 47.3134278 ], + [ 8.2002851, 47.3134707 ], + [ 8.200365, 47.313491 ], + [ 8.2004893, 47.313528 ], + [ 8.2005168, 47.3135526 ], + [ 8.2005059, 47.3135794 ], + [ 8.2004696, 47.3135926 ], + [ 8.2004051, 47.3135976 ], + [ 8.2003295, 47.3136176 ], + [ 8.2002357, 47.3136769 ], + [ 8.2001261, 47.3137401 ], + [ 8.2000437, 47.3138052 ], + [ 8.1999624, 47.31388 ], + [ 8.1999285, 47.3139271 ], + [ 8.1998411, 47.3139726 ], + [ 8.1997276, 47.3140222 ], + [ 8.1996223, 47.314062 ], + [ 8.199535, 47.3141101 ], + [ 8.1994915, 47.3141443 ], + [ 8.199476, 47.3141776 ], + [ 8.1994842, 47.3142212 ], + [ 8.1995055, 47.3142686 ], + [ 8.1995186, 47.3143285 ], + [ 8.1995362, 47.3143753 ], + [ 8.199579, 47.3144213 ], + [ 8.1996556, 47.3144645 ], + [ 8.1997275, 47.3145109 ], + [ 8.1997696, 47.3145706 ], + [ 8.1997666, 47.3146221 ], + [ 8.1997514, 47.3146711 ], + [ 8.1997185, 47.3147221 ], + [ 8.1996847, 47.3147829 ], + [ 8.1996507, 47.3148867 ], + [ 8.1996232, 47.3149892 ], + [ 8.1996111, 47.3150551 ], + [ 8.1995981, 47.3151282 ], + [ 8.1995988, 47.3151718 ], + [ 8.1996145, 47.3152173 ], + [ 8.1996445, 47.3152803 ], + [ 8.199685, 47.3153609 ], + [ 8.1997179, 47.3154284 ], + [ 8.1997611, 47.3154972 ], + [ 8.1998125, 47.315549 ], + [ 8.199893, 47.3156065 ], + [ 8.1999599, 47.3156328 ], + [ 8.200004, 47.315639 ], + [ 8.2000455, 47.315657 ], + [ 8.2000941, 47.3157062 ], + [ 8.2001614, 47.3157638 ], + [ 8.2002371, 47.3158135 ], + [ 8.2003079, 47.3158469 ], + [ 8.2003972, 47.3158596 ], + [ 8.200468, 47.3158708 ], + [ 8.200588400000001, 47.3159113 ], + [ 8.2006797, 47.3159377 ], + [ 8.2007693, 47.3159493 ], + [ 8.2008651, 47.3159455 ], + [ 8.200979, 47.3159411 ], + [ 8.2010673, 47.3159649 ], + [ 8.2011535, 47.3159852 ], + [ 8.2012395, 47.3160407 ], + [ 8.2013238, 47.3161202 ], + [ 8.2013535, 47.3161731 ], + [ 8.2013906, 47.3162351 ], + [ 8.201443, 47.3163001 ], + [ 8.2014913, 47.3163467 ], + [ 8.2015737, 47.3164085 ], + [ 8.2017162, 47.316487 ], + [ 8.2018277, 47.3165365 ], + [ 8.2019639, 47.3165753 ], + [ 8.20209, 47.3165877 ], + [ 8.202163, 47.3166177 ], + [ 8.2022528, 47.3166236 ], + [ 8.2023501, 47.3166163 ], + [ 8.202436, 47.3166157 ], + [ 8.2025644, 47.316648 ], + [ 8.2026759, 47.3167207 ], + [ 8.202751, 47.3167666 ], + [ 8.2027902, 47.3168296 ], + [ 8.2028051, 47.3168954 ], + [ 8.2028088, 47.3169433 ], + [ 8.2028555, 47.3169808 ], + [ 8.2028765, 47.3170235 ], + [ 8.2028713, 47.3170593 ], + [ 8.2028477, 47.3171084 ], + [ 8.2028614, 47.3171522 ], + [ 8.2029134, 47.3172039 ], + [ 8.2029214, 47.3172911 ], + [ 8.2029402, 47.3173737 ], + [ 8.2029685, 47.3174694 ], + [ 8.2029858, 47.3175974 ], + [ 8.2029941, 47.3176596 ], + [ 8.2029601, 47.3176977 ], + [ 8.2029067, 47.3177343 ], + [ 8.2028177, 47.3177615 ], + [ 8.202683, 47.3177702 ], + [ 8.2025371, 47.3177544 ], + [ 8.2024414, 47.3177653 ], + [ 8.2023381, 47.3177936 ], + [ 8.2022395, 47.3178076 ], + [ 8.2021288, 47.3178263 ], + [ 8.2020214, 47.3178705 ], + [ 8.2019256, 47.3179263 ], + [ 8.2018895, 47.3179699 ], + [ 8.2018617, 47.3180394 ], + [ 8.2036299, 47.317809 ], + [ 8.2032552, 47.3161912 ], + [ 8.2007317, 47.3149855 ], + [ 8.20108, 47.3136748 ], + [ 8.2003926, 47.3116219 ], + [ 8.1997845, 47.3095732 ], + [ 8.1995728, 47.3074262 ], + [ 8.1999139, 47.3057821 ], + [ 8.1989319, 47.3057076 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "KTAG101", + "country" : "CHE", + "name" : [ + { + "text" : "Hallwilersee, Boniswiler Ried", + "lang" : "de-CH" + }, + { + "text" : "Hallwilersee, Boniswiler Ried", + "lang" : "fr-CH" + }, + { + "text" : "Hallwilersee, Boniswiler Ried", + "lang" : "it-CH" + }, + { + "text" : "Hallwilersee, Boniswiler Ried", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "regulationExemption" : "NO", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "schedule" : [ + { + "day" : [ "ANY" ], + "startTime" : "00:00:00.00+01:00", + "endTime" : "00:00:00.00+01:00" + } + ] + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Aargau", + "lang" : "de-CH" + }, + { + "text" : "Canton d'Argovie", + "lang" : "fr-CH" + }, + { + "text" : "Canton Argovia", + "lang" : "it-CH" + }, + { + "text" : "Canton of Aargau", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Departement Bau, Verkehr und Umwelt (BVU)", + "lang" : "de-CH" + }, + { + "text" : "Département de la construction, des transports et de l'environnement (CTE)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento delle costruzioni, dei trasporti e dell'ambiente (CTA)", + "lang" : "it-CH" + }, + { + "text" : "Department of Civil Engineering,Transport and Environment (CTE)", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Sektion Gewässernutzung", + "lang" : "de-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "fr-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "it-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ag.ch/de/verwaltung/bvu/umwelt-natur-landschaft/hochwasserschutz-gewaesser/gewaessernutzung", + "email" : "alg@ag.ch", + "phone" : "0041 62 835 34 50", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7377114, 47.5272537 ], + [ 7.7376404999999995, 47.5272926 ], + [ 7.7375575, 47.5274094 ], + [ 7.7374716, 47.5274838 ], + [ 7.7373297, 47.5275724 ], + [ 7.7370754999999996, 47.527718 ], + [ 7.7369604, 47.5278014 ], + [ 7.7368583, 47.5278946 ], + [ 7.7366325, 47.5281205 ], + [ 7.736455, 47.5282712 ], + [ 7.7362605, 47.5284265 ], + [ 7.7360593, 47.5286118 ], + [ 7.7359508, 47.5286974 ], + [ 7.7358317, 47.5287765 ], + [ 7.7356974, 47.5288426 ], + [ 7.7354874, 47.5289242 ], + [ 7.7352927000000005, 47.5290426 ], + [ 7.7351306, 47.5291538 ], + [ 7.7352834999999995, 47.5291645 ], + [ 7.7355584, 47.5290986 ], + [ 7.735561, 47.5290888 ], + [ 7.7355647, 47.5290791 ], + [ 7.7355692, 47.5290697 ], + [ 7.7355747, 47.5290604 ], + [ 7.735581, 47.5290514 ], + [ 7.7355882, 47.5290427 ], + [ 7.7355962, 47.5290343 ], + [ 7.735605, 47.5290263 ], + [ 7.7356145, 47.5290187 ], + [ 7.7356248, 47.5290116 ], + [ 7.7356357, 47.5290049 ], + [ 7.7356472, 47.5289987 ], + [ 7.7356593, 47.528993 ], + [ 7.735672, 47.5289879 ], + [ 7.7356850999999995, 47.5289833 ], + [ 7.7358782, 47.5289219 ], + [ 7.7360112, 47.5288458 ], + [ 7.7362009, 47.5287328 ], + [ 7.7362436, 47.5286949 ], + [ 7.7362991999999995, 47.5286208 ], + [ 7.7363387, 47.5285647 ], + [ 7.7364005, 47.5284955 ], + [ 7.7364891, 47.5284347 ], + [ 7.7365904, 47.5284089 ], + [ 7.736671, 47.5283815 ], + [ 7.7366961, 47.5283612 ], + [ 7.7367061, 47.5282989 ], + [ 7.7367293, 47.5282386 ], + [ 7.7368178, 47.528164 ], + [ 7.736961, 47.5280935 ], + [ 7.7370068, 47.5280556 ], + [ 7.7370263999999995, 47.5280099 ], + [ 7.7370352, 47.5279341 ], + [ 7.7371224, 47.5278276 ], + [ 7.7371918, 47.5277994 ], + [ 7.7373, 47.5276969 ], + [ 7.7373791, 47.5276878 ], + [ 7.7375161, 47.5277104 ], + [ 7.737572, 47.5277465 ], + [ 7.7376133, 47.5277466 ], + [ 7.7376337, 47.5277392 ], + [ 7.7376938, 47.5276636 ], + [ 7.7377106, 47.5275754 ], + [ 7.7377067, 47.5275446 ], + [ 7.7376857, 47.5275116 ], + [ 7.7376988, 47.5274891 ], + [ 7.7377295, 47.5274718 ], + [ 7.7377931, 47.5274493 ], + [ 7.7379102, 47.527359 ], + [ 7.7379824, 47.5273293 ], + [ 7.7380594, 47.5273363 ], + [ 7.7381685000000004, 47.5273722 ], + [ 7.7382577, 47.5274065 ], + [ 7.7383898, 47.5274016 ], + [ 7.7384958, 47.5273701 ], + [ 7.7385831, 47.5273013 ], + [ 7.7386478, 47.5272512 ], + [ 7.7386875, 47.5272196 ], + [ 7.7385345999999995, 47.5271936 ], + [ 7.7384488000000005, 47.527181 ], + [ 7.7381709, 47.5272078 ], + [ 7.7377114, 47.5272537 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns283", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Schnüeren", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Schnüeren", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Schnüeren", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Schnüeren", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4737417, 47.4394288 ], + [ 7.4738357, 47.4393053 ], + [ 7.4738662, 47.4392604 ], + [ 7.4738909, 47.4392138 ], + [ 7.4739024, 47.4391838 ], + [ 7.4741163, 47.4391906 ], + [ 7.4741198, 47.4391454 ], + [ 7.4741303, 47.4390023 ], + [ 7.4741501, 47.438958 ], + [ 7.4742428, 47.4389617 ], + [ 7.4744003, 47.4390059 ], + [ 7.4744557, 47.439006 ], + [ 7.4745232999999995, 47.4389023 ], + [ 7.4746063, 47.4387195 ], + [ 7.4747797, 47.4383893 ], + [ 7.4748146, 47.4382383 ], + [ 7.4746694, 47.4382274 ], + [ 7.4744402, 47.4382178 ], + [ 7.4743728, 47.438204999999996 ], + [ 7.4742558, 47.4381927 ], + [ 7.4742655, 47.438157 ], + [ 7.4742738, 47.4381398 ], + [ 7.4742844, 47.4381231 ], + [ 7.4742971, 47.4381071 ], + [ 7.4739221, 47.4380264 ], + [ 7.4733318, 47.4379073 ], + [ 7.4729705, 47.4379111 ], + [ 7.4726325, 47.4379287 ], + [ 7.4725228, 47.4379334 ], + [ 7.472724, 47.4383586 ], + [ 7.4727585, 47.4384412 ], + [ 7.4727948, 47.4384422 ], + [ 7.4731321, 47.4383681 ], + [ 7.4732269, 47.4385319 ], + [ 7.4732761, 47.4386848 ], + [ 7.4732136, 47.4388424 ], + [ 7.4732153, 47.4388514 ], + [ 7.4732159, 47.4389996 ], + [ 7.4732876, 47.4391878 ], + [ 7.4733815, 47.4392203 ], + [ 7.4735556, 47.4392358 ], + [ 7.4736313, 47.4393703 ], + [ 7.4737417, 47.4394288 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns331", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Forstweid", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Forstweid", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Forstweid", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Forstweid", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7445181, 47.4722775 ], + [ 7.7445423, 47.472326 ], + [ 7.7445793, 47.4724291 ], + [ 7.7445901, 47.4724451 ], + [ 7.7445994, 47.4724616 ], + [ 7.744607, 47.4724785 ], + [ 7.7446097, 47.4724855 ], + [ 7.7446152999999995, 47.472501199999996 ], + [ 7.7446237, 47.4725245 ], + [ 7.7446303, 47.4725423 ], + [ 7.7446366, 47.472559 ], + [ 7.7446427, 47.4725739 ], + [ 7.7446469, 47.4725837 ], + [ 7.7446532999999995, 47.4725973 ], + [ 7.7446617, 47.4726147 ], + [ 7.7446706, 47.4726325 ], + [ 7.74468, 47.4726506 ], + [ 7.7447036, 47.4726955 ], + [ 7.7447047, 47.4726976 ], + [ 7.7447376, 47.4727618 ], + [ 7.7447749, 47.4728339 ], + [ 7.7447753, 47.4728347 ], + [ 7.7447978, 47.4728786 ], + [ 7.7448238, 47.4729289 ], + [ 7.7448332, 47.4729466 ], + [ 7.7448481000000005, 47.4729737 ], + [ 7.7448571, 47.4729898 ], + [ 7.7448827, 47.4730344 ], + [ 7.744903, 47.4730687 ], + [ 7.7449335, 47.4731193 ], + [ 7.7449411999999995, 47.4731316 ], + [ 7.7449490999999995, 47.4731436 ], + [ 7.7449572, 47.4731556 ], + [ 7.7449682, 47.4731712 ], + [ 7.7450138, 47.4732346 ], + [ 7.7450487, 47.4732826 ], + [ 7.7450616, 47.4732998 ], + [ 7.7450738999999995, 47.4733156 ], + [ 7.7450829, 47.4733268 ], + [ 7.7450878, 47.4733328 ], + [ 7.7450942, 47.4733403 ], + [ 7.7451039999999995, 47.4733514 ], + [ 7.7451211, 47.4733704 ], + [ 7.7451621, 47.4734158 ], + [ 7.7452191, 47.4734782 ], + [ 7.7452369, 47.4734973 ], + [ 7.7452475, 47.4735083 ], + [ 7.7452617, 47.4735223 ], + [ 7.7452778, 47.4735376 ], + [ 7.7452923, 47.4735511 ], + [ 7.74531, 47.4735675 ], + [ 7.7453739, 47.4736255 ], + [ 7.745375, 47.4736265 ], + [ 7.7454025, 47.4736517 ], + [ 7.7454198, 47.4736672 ], + [ 7.7454298999999995, 47.4736761 ], + [ 7.7454395, 47.4736842 ], + [ 7.7454502, 47.4736931 ], + [ 7.7454778, 47.473715 ], + [ 7.7455289, 47.4737544 ], + [ 7.7455499, 47.4737704 ], + [ 7.7455508, 47.4737711 ], + [ 7.7455513, 47.4737715 ], + [ 7.7455768, 47.473791 ], + [ 7.7456119, 47.4738176 ], + [ 7.7456172, 47.4738214 ], + [ 7.7456317, 47.4738318 ], + [ 7.7456379, 47.473836 ], + [ 7.7456536, 47.4738466 ], + [ 7.7456946, 47.4738732 ], + [ 7.7456954, 47.4738738 ], + [ 7.7457476, 47.4739079 ], + [ 7.7457645, 47.4739189 ], + [ 7.7458156, 47.4739514 ], + [ 7.7458661, 47.4739829 ], + [ 7.7458724, 47.4739867 ], + [ 7.7458811999999995, 47.4739919 ], + [ 7.7458981, 47.4740016 ], + [ 7.7459188, 47.4740134 ], + [ 7.7459578, 47.474035 ], + [ 7.7460421, 47.4740814 ], + [ 7.7460448, 47.4740829 ], + [ 7.7460985, 47.474113 ], + [ 7.7461363, 47.4741308 ], + [ 7.7461607, 47.474142 ], + [ 7.7461776, 47.4741495 ], + [ 7.746235, 47.4741743 ], + [ 7.7462846, 47.4741957 ], + [ 7.7463383, 47.4742187 ], + [ 7.7463893, 47.4742401 ], + [ 7.7465079, 47.4742893 ], + [ 7.7465103, 47.4742903 ], + [ 7.746543, 47.4743042 ], + [ 7.7465473, 47.474306 ], + [ 7.7465732, 47.4743172 ], + [ 7.7465759, 47.4743184 ], + [ 7.7466124, 47.4743345 ], + [ 7.7466152, 47.4743357 ], + [ 7.7466159, 47.4743361 ], + [ 7.7466573, 47.4743548 ], + [ 7.7467378, 47.4743906 ], + [ 7.7468018, 47.4744188 ], + [ 7.7468035, 47.4744195 ], + [ 7.7468979000000004, 47.4744615 ], + [ 7.7469525, 47.4744857 ], + [ 7.7469551, 47.4744868 ], + [ 7.7469558, 47.4744871 ], + [ 7.7469783, 47.4744973 ], + [ 7.7469849, 47.4745003 ], + [ 7.7469922, 47.4745038 ], + [ 7.7469968, 47.474506 ], + [ 7.7470164, 47.4745155 ], + [ 7.7470222, 47.4745183 ], + [ 7.747056, 47.4745354 ], + [ 7.7470569, 47.4745359 ], + [ 7.7471367, 47.4745763 ], + [ 7.747138, 47.474577 ], + [ 7.7472441, 47.4746313 ], + [ 7.7472453, 47.4746319 ], + [ 7.747248, 47.4746333 ], + [ 7.7472886, 47.4746547 ], + [ 7.7472902, 47.4746555 ], + [ 7.7473094, 47.4746657 ], + [ 7.7473125, 47.4746674 ], + [ 7.7473214, 47.4746722 ], + [ 7.747325, 47.4746742 ], + [ 7.7473563, 47.4746915 ], + [ 7.7473591, 47.4746931 ], + [ 7.7474129, 47.4747235 ], + [ 7.7474139, 47.4747241 ], + [ 7.747517, 47.4747829 ], + [ 7.7475211999999996, 47.4747853 ], + [ 7.747552, 47.4748033 ], + [ 7.7475529, 47.4748039 ], + [ 7.7475543, 47.4748047 ], + [ 7.7475996, 47.4748317 ], + [ 7.7476027, 47.4748335 ], + [ 7.7476123, 47.4748394 ], + [ 7.7476164, 47.4748419 ], + [ 7.7476261, 47.474848 ], + [ 7.7476291, 47.4748499 ], + [ 7.7476386999999995, 47.474856 ], + [ 7.7476418, 47.474858 ], + [ 7.7476609, 47.4748705 ], + [ 7.7476643, 47.4748727 ], + [ 7.7477117, 47.4749044 ], + [ 7.7477127, 47.4749051 ], + [ 7.7477129, 47.4749052 ], + [ 7.7478546999999995, 47.4750007 ], + [ 7.7478565, 47.4750019 ], + [ 7.7478846, 47.4750211 ], + [ 7.7478877, 47.4750232 ], + [ 7.7479061, 47.4750361 ], + [ 7.7479107, 47.4750393 ], + [ 7.7479572, 47.4750729 ], + [ 7.7479718, 47.4750833 ], + [ 7.7479887, 47.4750744 ], + [ 7.7480389, 47.4750475 ], + [ 7.7480587, 47.4750368 ], + [ 7.7480604, 47.4750358 ], + [ 7.7480781, 47.4750263 ], + [ 7.7480907, 47.4750194 ], + [ 7.7480934, 47.4750179 ], + [ 7.7481368, 47.4749945 ], + [ 7.7481724, 47.4749749 ], + [ 7.7481849, 47.4749677 ], + [ 7.7482068, 47.474955 ], + [ 7.7482105, 47.4749529 ], + [ 7.7482277, 47.4749432 ], + [ 7.7482451999999995, 47.4749329 ], + [ 7.7482711, 47.4749171 ], + [ 7.7482993, 47.4748994 ], + [ 7.7483018, 47.4748978 ], + [ 7.7483047, 47.474896 ], + [ 7.7483134, 47.4748906 ], + [ 7.748317, 47.4748884 ], + [ 7.748326, 47.474883 ], + [ 7.7483265, 47.4748827 ], + [ 7.7483315, 47.4748798 ], + [ 7.7483406, 47.4748745 ], + [ 7.7483473, 47.4748707 ], + [ 7.748355, 47.4748664 ], + [ 7.74836, 47.4748637 ], + [ 7.7483678, 47.4748595 ], + [ 7.7483712, 47.4748577 ], + [ 7.7483719, 47.4748573 ], + [ 7.7483787, 47.4748538 ], + [ 7.7483781, 47.474843 ], + [ 7.7483788, 47.4748254 ], + [ 7.7483813, 47.4748078 ], + [ 7.7483854, 47.4747904 ], + [ 7.7483912, 47.4747732 ], + [ 7.7484009, 47.4747474 ], + [ 7.7484014, 47.4747461 ], + [ 7.7484018, 47.474745 ], + [ 7.7484101, 47.4747234 ], + [ 7.7484105, 47.4747225 ], + [ 7.7484109, 47.4747214 ], + [ 7.7484164, 47.4747074 ], + [ 7.7484169, 47.4747061 ], + [ 7.7484342999999996, 47.4746632 ], + [ 7.7484345999999995, 47.4746623 ], + [ 7.7484528, 47.4746178 ], + [ 7.748454, 47.4746151 ], + [ 7.7484607, 47.4745994 ], + [ 7.7484614, 47.4745977 ], + [ 7.748478, 47.4745597 ], + [ 7.7484828, 47.4745483 ], + [ 7.748502, 47.4745012 ], + [ 7.7485174, 47.4744623 ], + [ 7.7485184, 47.4744598 ], + [ 7.7485315, 47.4744281 ], + [ 7.7485327, 47.4744254 ], + [ 7.7485423, 47.4744029 ], + [ 7.7485433, 47.4744006 ], + [ 7.7485633, 47.4743556 ], + [ 7.7485724, 47.4743346 ], + [ 7.7485728, 47.4743337 ], + [ 7.7485926, 47.4742889 ], + [ 7.7486014, 47.4742681 ], + [ 7.7486027, 47.4742653 ], + [ 7.7486155, 47.4742365 ], + [ 7.748631, 47.4742004 ], + [ 7.7486314, 47.4741995 ], + [ 7.748641, 47.4741774 ], + [ 7.7486429, 47.4741731 ], + [ 7.7486591, 47.4741328 ], + [ 7.7486674, 47.4741117 ], + [ 7.7486681, 47.4741102 ], + [ 7.7486781, 47.4740853 ], + [ 7.7486961999999995, 47.4740396 ], + [ 7.7487129, 47.4739954 ], + [ 7.7487132, 47.4739945 ], + [ 7.7487227, 47.4739697 ], + [ 7.748729, 47.4739531 ], + [ 7.7487337, 47.4739402 ], + [ 7.7487393, 47.4739237 ], + [ 7.7487417, 47.4739161 ], + [ 7.7487463, 47.4739005 ], + [ 7.748749, 47.4738906 ], + [ 7.7487518, 47.4738793 ], + [ 7.7487563, 47.4738592 ], + [ 7.7487566, 47.4738579 ], + [ 7.7487574, 47.4738528 ], + [ 7.7487474, 47.4738411 ], + [ 7.7487317000000004, 47.4738233 ], + [ 7.7487083, 47.4737974 ], + [ 7.7486786, 47.473765 ], + [ 7.7486776, 47.4737639 ], + [ 7.7486404, 47.4737229 ], + [ 7.7486211, 47.4737018 ], + [ 7.7486103, 47.4736901 ], + [ 7.7485614, 47.4736384 ], + [ 7.7485608, 47.4736378 ], + [ 7.7485283, 47.4736032 ], + [ 7.7485093, 47.4735833 ], + [ 7.748499, 47.4735727 ], + [ 7.7484955, 47.4735693 ], + [ 7.7484924, 47.4735663 ], + [ 7.7484902, 47.4735643 ], + [ 7.7484725999999995, 47.4735484 ], + [ 7.7484607, 47.4735378 ], + [ 7.7484484, 47.473527 ], + [ 7.748439, 47.4735192 ], + [ 7.7484287, 47.4735108 ], + [ 7.7484085, 47.4734948 ], + [ 7.7484064, 47.4734932 ], + [ 7.7483899, 47.4734799 ], + [ 7.7483716, 47.4734655 ], + [ 7.7483688, 47.4734633 ], + [ 7.7483541, 47.4734514 ], + [ 7.7483372, 47.4734383 ], + [ 7.7483214, 47.4734262 ], + [ 7.7483153, 47.4734216 ], + [ 7.7482694, 47.4733883 ], + [ 7.7482203, 47.4733534 ], + [ 7.7481769, 47.4733235 ], + [ 7.7481731, 47.4733208 ], + [ 7.7481603, 47.4733117 ], + [ 7.7481558, 47.4733084 ], + [ 7.7481496, 47.4733038 ], + [ 7.7481442, 47.4732998 ], + [ 7.748136, 47.4732935 ], + [ 7.7481358, 47.4732934 ], + [ 7.7481311999999996, 47.4732898 ], + [ 7.7481194, 47.4732804 ], + [ 7.7481157, 47.4732774 ], + [ 7.7481079, 47.473271 ], + [ 7.7481046, 47.4732684 ], + [ 7.7480856, 47.4732524 ], + [ 7.7480805, 47.473248 ], + [ 7.7480797, 47.4732473 ], + [ 7.7480723, 47.4732407 ], + [ 7.7480671, 47.4732361 ], + [ 7.7480431, 47.4732139 ], + [ 7.748041, 47.4732119 ], + [ 7.7480165, 47.4731889 ], + [ 7.7480149, 47.4731873 ], + [ 7.7480017, 47.4731748 ], + [ 7.7479869, 47.473161 ], + [ 7.747977, 47.4731521 ], + [ 7.7479493999999995, 47.4731277 ], + [ 7.7479445, 47.4731235 ], + [ 7.7479289, 47.4731103 ], + [ 7.7479268, 47.4731085 ], + [ 7.7479192, 47.473102 ], + [ 7.747917, 47.4731001 ], + [ 7.7479169, 47.4731 ], + [ 7.7479040999999995, 47.4730888 ], + [ 7.747883, 47.4730707 ], + [ 7.7478807, 47.4730686 ], + [ 7.7478805, 47.4730685 ], + [ 7.747875, 47.4730637 ], + [ 7.7478705, 47.4730596 ], + [ 7.7478615, 47.4730514 ], + [ 7.7478584, 47.4730485 ], + [ 7.7478555, 47.4730458 ], + [ 7.7478497, 47.4730453 ], + [ 7.7478439, 47.4730448 ], + [ 7.7478438, 47.4730448 ], + [ 7.7478374, 47.4730442 ], + [ 7.7478358, 47.4730441 ], + [ 7.7478351, 47.4730441 ], + [ 7.747816, 47.4730441 ], + [ 7.7477778, 47.4730442 ], + [ 7.7477575, 47.4730443 ], + [ 7.7477559, 47.4730443 ], + [ 7.7477539, 47.4730445 ], + [ 7.7477488, 47.473045 ], + [ 7.7477468, 47.4730452 ], + [ 7.7477369, 47.473046 ], + [ 7.7477317, 47.4730464 ], + [ 7.747723, 47.473047 ], + [ 7.7477177, 47.4730473 ], + [ 7.7477118, 47.4730476 ], + [ 7.7477065, 47.4730479 ], + [ 7.7477052, 47.473048 ], + [ 7.7477029, 47.4730481 ], + [ 7.7476936, 47.4730485 ], + [ 7.7476892, 47.473049 ], + [ 7.7476842, 47.4730495 ], + [ 7.747679, 47.47305 ], + [ 7.7476702, 47.4730509 ], + [ 7.7476614, 47.4730521 ], + [ 7.7476537, 47.473053 ], + [ 7.7476488, 47.4730536 ], + [ 7.7476414, 47.4730544 ], + [ 7.7476316, 47.4730554 ], + [ 7.747622, 47.4730567 ], + [ 7.7476138, 47.4730577 ], + [ 7.7476089, 47.4730583 ], + [ 7.7476008, 47.4730592 ], + [ 7.7475897, 47.4730603 ], + [ 7.7475784999999995, 47.4730617 ], + [ 7.7475678, 47.4730629 ], + [ 7.7475626, 47.4730635 ], + [ 7.7475548, 47.4730643 ], + [ 7.7475537, 47.4730644 ], + [ 7.7475485, 47.4730648 ], + [ 7.7475444, 47.4730652 ], + [ 7.7475341, 47.473066 ], + [ 7.7475235, 47.4730672 ], + [ 7.7475135, 47.4730682 ], + [ 7.7475106, 47.4730685 ], + [ 7.7475055, 47.4730689 ], + [ 7.7474941, 47.4730698 ], + [ 7.7474889000000005, 47.4730701 ], + [ 7.7474782, 47.4730708 ], + [ 7.7474677, 47.4730713 ], + [ 7.7474667, 47.4730713 ], + [ 7.7474625, 47.4730715 ], + [ 7.7474558, 47.4730718 ], + [ 7.747451, 47.4730723 ], + [ 7.7474454999999995, 47.4730728 ], + [ 7.7474416, 47.4730732 ], + [ 7.7474343, 47.4730738 ], + [ 7.7474288, 47.4730743 ], + [ 7.7474214, 47.4730748 ], + [ 7.7474158, 47.4730752 ], + [ 7.7474124, 47.4730754 ], + [ 7.7474036, 47.4730759 ], + [ 7.7473978, 47.4730765 ], + [ 7.7473887999999995, 47.4730775 ], + [ 7.7473835, 47.473078 ], + [ 7.7473822, 47.4730781 ], + [ 7.7473745, 47.4730787 ], + [ 7.7473691, 47.4730792 ], + [ 7.7473634, 47.4730796 ], + [ 7.7473534, 47.4730803 ], + [ 7.7473464, 47.4730811 ], + [ 7.7473371, 47.473082 ], + [ 7.7473317, 47.4730826 ], + [ 7.7473293, 47.4730828 ], + [ 7.7473225, 47.4730834 ], + [ 7.7473171, 47.4730838 ], + [ 7.7473105, 47.4730843 ], + [ 7.7472977, 47.4730852 ], + [ 7.7472871, 47.4730863 ], + [ 7.7472809, 47.4730869 ], + [ 7.747274, 47.4730875 ], + [ 7.7472683, 47.4730879 ], + [ 7.7472562, 47.4730888 ], + [ 7.7472503, 47.4730891 ], + [ 7.7472435, 47.4730895 ], + [ 7.7472415, 47.4730895 ], + [ 7.7472356, 47.4730898 ], + [ 7.7472289, 47.4730901 ], + [ 7.7472229, 47.4730903 ], + [ 7.7472182, 47.4730904 ], + [ 7.7472121, 47.4730905 ], + [ 7.7472078, 47.4730906 ], + [ 7.7471955, 47.4730908 ], + [ 7.7471935, 47.4730909 ], + [ 7.7471768, 47.4730911 ], + [ 7.7471687, 47.4730912 ], + [ 7.7471676, 47.4730913 ], + [ 7.7471548, 47.4730919 ], + [ 7.7471536, 47.473092 ], + [ 7.7471469, 47.473092199999996 ], + [ 7.7471406, 47.4730925 ], + [ 7.7471354, 47.4730926 ], + [ 7.7471291, 47.4730928 ], + [ 7.7471239, 47.4730929 ], + [ 7.7471112, 47.4730931 ], + [ 7.7471069, 47.4730932 ], + [ 7.7470942, 47.4730933 ], + [ 7.7470919, 47.4730934 ], + [ 7.7470792, 47.4730934 ], + [ 7.7470776, 47.4730934 ], + [ 7.7470199, 47.4730937 ], + [ 7.747019, 47.4730937 ], + [ 7.7470175999999995, 47.4730937 ], + [ 7.746992, 47.4730937 ], + [ 7.7469869, 47.4730937 ], + [ 7.7469741, 47.4730936 ], + [ 7.7469689, 47.4730935 ], + [ 7.7469626, 47.4730934 ], + [ 7.7469574, 47.4730933 ], + [ 7.7469511, 47.4730931 ], + [ 7.7469441, 47.4730929 ], + [ 7.7469379, 47.4730926 ], + [ 7.7469358, 47.4730926 ], + [ 7.7469286, 47.473092199999996 ], + [ 7.7469224, 47.4730919 ], + [ 7.7469101, 47.4730911 ], + [ 7.746904, 47.4730906 ], + [ 7.7468975, 47.4730901 ], + [ 7.7468908, 47.4730895 ], + [ 7.7468791, 47.4730883 ], + [ 7.7468628, 47.4730871 ], + [ 7.7468561, 47.4730866 ], + [ 7.7468509, 47.4730861 ], + [ 7.7468465, 47.4730857 ], + [ 7.7468288, 47.4730841 ], + [ 7.7468173, 47.4730833 ], + [ 7.7468142, 47.473083 ], + [ 7.746809, 47.4730826 ], + [ 7.7468031, 47.4730821 ], + [ 7.7468017, 47.473082 ], + [ 7.7467965, 47.4730816 ], + [ 7.7467876, 47.4730807 ], + [ 7.7467707, 47.4730789 ], + [ 7.7467643, 47.4730782 ], + [ 7.7467459, 47.4730761 ], + [ 7.7467369, 47.473075 ], + [ 7.7467323, 47.4730744 ], + [ 7.7467226, 47.473073 ], + [ 7.7467153, 47.4730719 ], + [ 7.7467093, 47.473071 ], + [ 7.746694, 47.4730685 ], + [ 7.7466891, 47.4730677 ], + [ 7.7466851, 47.473067 ], + [ 7.7466802999999995, 47.4730662 ], + [ 7.7466771, 47.4730656 ], + [ 7.7466669, 47.4730637 ], + [ 7.7466617, 47.4730627 ], + [ 7.7466405, 47.4730586 ], + [ 7.7466318, 47.473057 ], + [ 7.746626, 47.4730559 ], + [ 7.7466159, 47.473054 ], + [ 7.7466132, 47.4730534 ], + [ 7.7466004, 47.4730509 ], + [ 7.7465951, 47.4730499 ], + [ 7.7465862, 47.4730483 ], + [ 7.7465809, 47.4730473 ], + [ 7.7465737, 47.4730459 ], + [ 7.7465706999999995, 47.4730453 ], + [ 7.7465546, 47.4730421 ], + [ 7.7465482, 47.4730409 ], + [ 7.7465387, 47.4730392 ], + [ 7.7465311, 47.4730377 ], + [ 7.7465209999999995, 47.4730358 ], + [ 7.7465154, 47.4730346 ], + [ 7.7465054, 47.4730325 ], + [ 7.7465021, 47.4730318 ], + [ 7.7464921, 47.4730297 ], + [ 7.7464894, 47.4730291 ], + [ 7.7464694, 47.4730247 ], + [ 7.7464671, 47.4730242 ], + [ 7.7464374, 47.4730175 ], + [ 7.7464361, 47.4730172 ], + [ 7.7464349, 47.4730169 ], + [ 7.7464247, 47.4730146 ], + [ 7.746422, 47.473014 ], + [ 7.746412, 47.4730116 ], + [ 7.7464078, 47.4730106 ], + [ 7.746398, 47.4730082 ], + [ 7.7463931, 47.473007 ], + [ 7.7463887, 47.4730059 ], + [ 7.7463809, 47.473004 ], + [ 7.7463727, 47.473002 ], + [ 7.7463632, 47.4729996 ], + [ 7.7463423, 47.4729944 ], + [ 7.7463374, 47.4729931 ], + [ 7.7463207, 47.4729888 ], + [ 7.7463184, 47.4729882 ], + [ 7.7463018, 47.4729838 ], + [ 7.7463006, 47.4729835 ], + [ 7.746284, 47.4729791 ], + [ 7.7462822, 47.4729786 ], + [ 7.7462656, 47.4729741 ], + [ 7.7462621, 47.4729732 ], + [ 7.7462613000000005, 47.4729729 ], + [ 7.7462477, 47.4729691 ], + [ 7.7462428, 47.4729677 ], + [ 7.746236, 47.4729658 ], + [ 7.7462283, 47.4729635 ], + [ 7.7462187, 47.4729605 ], + [ 7.7462125, 47.4729586 ], + [ 7.7462097, 47.4729577 ], + [ 7.7462056, 47.4729563 ], + [ 7.7462021, 47.4729552 ], + [ 7.7461982, 47.4729538 ], + [ 7.7461922, 47.4729518 ], + [ 7.7461856000000004, 47.4729494 ], + [ 7.7461823, 47.4729482 ], + [ 7.7461692, 47.4729435 ], + [ 7.7461643, 47.4729417 ], + [ 7.7461488, 47.4729359 ], + [ 7.7461459, 47.4729348 ], + [ 7.7461428, 47.4729337 ], + [ 7.7461298, 47.4729289 ], + [ 7.7461225, 47.4729261 ], + [ 7.7461217, 47.4729258 ], + [ 7.7461114, 47.4729218 ], + [ 7.7461057, 47.4729196 ], + [ 7.746103, 47.4729185 ], + [ 7.7460929, 47.4729142 ], + [ 7.7460879, 47.4729121 ], + [ 7.7460824, 47.4729096 ], + [ 7.746077, 47.4729072 ], + [ 7.7460647, 47.4729014 ], + [ 7.7460594, 47.4728989 ], + [ 7.7460496, 47.4728942 ], + [ 7.7460429, 47.4728909 ], + [ 7.7460298, 47.4728843 ], + [ 7.7460185, 47.4728787 ], + [ 7.7460168, 47.4728779 ], + [ 7.7460056, 47.4728723 ], + [ 7.7460004, 47.4728698 ], + [ 7.7459894, 47.4728646 ], + [ 7.7459871, 47.4728634 ], + [ 7.7459772000000005, 47.4728587 ], + [ 7.7459724, 47.4728564 ], + [ 7.7459676, 47.472854 ], + [ 7.745965, 47.4728527 ], + [ 7.7459492999999995, 47.4728448 ], + [ 7.7459476, 47.4728439 ], + [ 7.7459415, 47.4728408 ], + [ 7.7459393, 47.4728397 ], + [ 7.7459362, 47.4728381 ], + [ 7.7459315, 47.4728356 ], + [ 7.745925, 47.4728321 ], + [ 7.7459131, 47.4728256 ], + [ 7.7459061, 47.4728216 ], + [ 7.7459014, 47.4728189 ], + [ 7.7458978, 47.4728168 ], + [ 7.7458948, 47.472815 ], + [ 7.7458901000000004, 47.4728122 ], + [ 7.7458852, 47.4728093 ], + [ 7.7458806, 47.4728064 ], + [ 7.7458758, 47.4728033 ], + [ 7.7458666, 47.4727974 ], + [ 7.7458623, 47.4727946 ], + [ 7.7458487, 47.4727856 ], + [ 7.7458466999999995, 47.4727842 ], + [ 7.7458465, 47.4727841 ], + [ 7.7457877, 47.4727445 ], + [ 7.7457856, 47.4727431 ], + [ 7.7457767, 47.472737 ], + [ 7.7457736, 47.4727348 ], + [ 7.7457648, 47.4727287 ], + [ 7.745761, 47.472726 ], + [ 7.7457566, 47.4727229 ], + [ 7.745753, 47.4727202 ], + [ 7.7457488, 47.4727171 ], + [ 7.7457439, 47.4727134 ], + [ 7.7457398, 47.4727103 ], + [ 7.7457396, 47.4727102 ], + [ 7.745736, 47.4727073 ], + [ 7.7457232, 47.4726972 ], + [ 7.7457197, 47.4726944 ], + [ 7.7457162, 47.4726916 ], + [ 7.7457119, 47.472688 ], + [ 7.7457085, 47.4726852 ], + [ 7.7457038, 47.4726812 ], + [ 7.7456871, 47.4726666 ], + [ 7.7456866, 47.4726662 ], + [ 7.7456859, 47.4726655 ], + [ 7.7456748, 47.4726557 ], + [ 7.7456666, 47.4726489 ], + [ 7.7456641, 47.4726468 ], + [ 7.7456608, 47.472644 ], + [ 7.7456585, 47.4726421 ], + [ 7.7456504, 47.4726351 ], + [ 7.7456498, 47.4726345 ], + [ 7.7456409, 47.4726272 ], + [ 7.7456375, 47.4726243 ], + [ 7.7456341, 47.4726215 ], + [ 7.7456313, 47.4726191 ], + [ 7.7456192999999995, 47.4726086 ], + [ 7.7456034, 47.4725952 ], + [ 7.7456012, 47.4725933 ], + [ 7.74559, 47.4725836 ], + [ 7.7455888, 47.4725825 ], + [ 7.7455868, 47.4725807 ], + [ 7.7455814, 47.4725759 ], + [ 7.7455755, 47.4725705 ], + [ 7.7455684, 47.4725638 ], + [ 7.7455645, 47.4725601 ], + [ 7.7455576, 47.4725534 ], + [ 7.7455549999999995, 47.4725508 ], + [ 7.7455415, 47.4725374 ], + [ 7.7455408, 47.4725366 ], + [ 7.7455403, 47.4725361 ], + [ 7.7454854, 47.4724806 ], + [ 7.7454461, 47.4724411 ], + [ 7.7454339999999995, 47.4724289 ], + [ 7.7454286, 47.4724236 ], + [ 7.7454217, 47.472417 ], + [ 7.7454178, 47.4724132 ], + [ 7.7454174, 47.4724127 ], + [ 7.7454149, 47.4724102 ], + [ 7.7454113, 47.4724065 ], + [ 7.7454024, 47.4723972 ], + [ 7.7453975, 47.4723921 ], + [ 7.7453534, 47.4723474 ], + [ 7.7453517, 47.4723457 ], + [ 7.7453451, 47.4723389 ], + [ 7.745343, 47.4723368 ], + [ 7.7453366, 47.47233 ], + [ 7.7453342, 47.4723274 ], + [ 7.7453331, 47.4723263 ], + [ 7.7453302, 47.4723233 ], + [ 7.7453283, 47.4723214 ], + [ 7.7453259, 47.4723189 ], + [ 7.7453229, 47.4723158 ], + [ 7.7453214, 47.4723141 ], + [ 7.7453159, 47.4723086 ], + [ 7.745313, 47.4723055 ], + [ 7.7453106, 47.472303 ], + [ 7.7453067, 47.4722989 ], + [ 7.7452949, 47.4722859 ], + [ 7.7452927, 47.4722835 ], + [ 7.7452889, 47.4722792 ], + [ 7.7452855, 47.4722753 ], + [ 7.7452853, 47.4722751 ], + [ 7.7452809, 47.47227 ], + [ 7.7452749, 47.4722627 ], + [ 7.7452678, 47.4722538 ], + [ 7.7452644, 47.4722495 ], + [ 7.7452576, 47.4722405 ], + [ 7.7452559999999995, 47.4722384 ], + [ 7.7452493, 47.4722294 ], + [ 7.7452483999999995, 47.4722282 ], + [ 7.7452418, 47.4722192 ], + [ 7.7452415, 47.4722189 ], + [ 7.7452407, 47.4722178 ], + [ 7.7452342, 47.4722088 ], + [ 7.7452323, 47.4722062 ], + [ 7.7452259, 47.4721972 ], + [ 7.7452228, 47.4721926 ], + [ 7.7452174, 47.4721846 ], + [ 7.7452133, 47.4721788 ], + [ 7.7452038, 47.4721656 ], + [ 7.7452024, 47.4721637 ], + [ 7.745196, 47.4721546 ], + [ 7.7451932, 47.4721505 ], + [ 7.7451877, 47.4721425 ], + [ 7.745184, 47.4721373 ], + [ 7.7451786, 47.47213 ], + [ 7.7451685999999995, 47.4721164 ], + [ 7.745168, 47.4721156 ], + [ 7.7451672, 47.4721145 ], + [ 7.7451607, 47.4721055 ], + [ 7.7451579, 47.4721015 ], + [ 7.7451515, 47.4720925 ], + [ 7.7451468, 47.4720853 ], + [ 7.7451426, 47.4720788 ], + [ 7.7451416, 47.4720772 ], + [ 7.7451371, 47.4720703 ], + [ 7.7451295, 47.4720591 ], + [ 7.745127, 47.4720553 ], + [ 7.7451228, 47.4720488 ], + [ 7.7451206, 47.4720454 ], + [ 7.7451189, 47.4720427 ], + [ 7.7451178, 47.472041 ], + [ 7.7451142, 47.472035 ], + [ 7.745112, 47.4720311 ], + [ 7.7451095, 47.4720266 ], + [ 7.745108, 47.4720239 ], + [ 7.7451048, 47.4720179 ], + [ 7.7451046, 47.4720174 ], + [ 7.7451026, 47.4720134 ], + [ 7.7451008, 47.4720097 ], + [ 7.7450994, 47.4720069 ], + [ 7.7450962, 47.4719998 ], + [ 7.7450932, 47.4719931 ], + [ 7.7450913, 47.4719888 ], + [ 7.7450892, 47.4719843 ], + [ 7.7450868, 47.4719793 ], + [ 7.7450776, 47.4719605 ], + [ 7.7450597, 47.4719246 ], + [ 7.7450589999999995, 47.4719233 ], + [ 7.7450557, 47.4719165 ], + [ 7.7450548999999995, 47.4719148 ], + [ 7.7450507, 47.471906 ], + [ 7.7450497, 47.471904 ], + [ 7.7450475, 47.4718992 ], + [ 7.745046, 47.4718958 ], + [ 7.745043, 47.471889 ], + [ 7.7450409, 47.4718843 ], + [ 7.7450384, 47.4718782 ], + [ 7.7450374, 47.471876 ], + [ 7.7450363, 47.4718737 ], + [ 7.7450331, 47.4718669 ], + [ 7.7450222, 47.4718448 ], + [ 7.7450216, 47.4718434 ], + [ 7.7450183, 47.4718366 ], + [ 7.7450173, 47.4718345 ], + [ 7.7450141, 47.4718277 ], + [ 7.7450127, 47.4718246 ], + [ 7.745011, 47.4718207 ], + [ 7.7450105, 47.4718195 ], + [ 7.7450092, 47.4718167 ], + [ 7.7450075, 47.4718126 ], + [ 7.7450051, 47.471807 ], + [ 7.7450039, 47.4718043 ], + [ 7.7450022, 47.4718007 ], + [ 7.7449884, 47.4717724 ], + [ 7.7449872, 47.4717698 ], + [ 7.744984, 47.471763 ], + [ 7.7449822, 47.4717592 ], + [ 7.7449791999999995, 47.4717523 ], + [ 7.7449768, 47.4717468 ], + [ 7.7449741, 47.4717403 ], + [ 7.7449677, 47.4717252 ], + [ 7.7449657, 47.4717205 ], + [ 7.7449655, 47.4717201 ], + [ 7.7449628, 47.4717132 ], + [ 7.7449603, 47.4717066 ], + [ 7.7449593, 47.4717039 ], + [ 7.7449578, 47.4716995 ], + [ 7.744955, 47.4716911 ], + [ 7.7449537, 47.4716872 ], + [ 7.7449528999999995, 47.4716844 ], + [ 7.7449523, 47.4716825 ], + [ 7.7449521, 47.4716818 ], + [ 7.7449496, 47.4716733 ], + [ 7.7449484, 47.4716693 ], + [ 7.7449459, 47.47166 ], + [ 7.7449438, 47.4716532 ], + [ 7.7449433, 47.4716515 ], + [ 7.7449424, 47.4716485 ], + [ 7.7449397, 47.4716389 ], + [ 7.7449373999999995, 47.4716318 ], + [ 7.7449366, 47.471629 ], + [ 7.7449359, 47.4716267 ], + [ 7.7449331, 47.4716169 ], + [ 7.7449308, 47.4716096 ], + [ 7.7449297999999995, 47.4716065 ], + [ 7.7449291, 47.471604 ], + [ 7.7449262, 47.4715937 ], + [ 7.7449238, 47.471586 ], + [ 7.7449232, 47.471584 ], + [ 7.7449223, 47.4715812 ], + [ 7.7449215, 47.4715781 ], + [ 7.7449206, 47.4715749 ], + [ 7.7449185, 47.4715671 ], + [ 7.744916, 47.4715583 ], + [ 7.744914, 47.4715512 ], + [ 7.7449076, 47.47153 ], + [ 7.744904, 47.4715184 ], + [ 7.7449016, 47.471511 ], + [ 7.7448989, 47.4715035 ], + [ 7.7448979, 47.4715006 ], + [ 7.744897, 47.4714979 ], + [ 7.7448964, 47.471496 ], + [ 7.7448912, 47.47148 ], + [ 7.7448892, 47.471474 ], + [ 7.7448858, 47.4714647 ], + [ 7.7448852, 47.4714631 ], + [ 7.7448827, 47.471456 ], + [ 7.7448795, 47.4714473 ], + [ 7.7448778, 47.4714423 ], + [ 7.744874, 47.4714312 ], + [ 7.7448733, 47.471429 ], + [ 7.7448709000000004, 47.4714216 ], + [ 7.7448686, 47.4714149 ], + [ 7.7448685, 47.4714146 ], + [ 7.7448656, 47.4714065 ], + [ 7.7448646, 47.4714038 ], + [ 7.74486, 47.4713906 ], + [ 7.7448595000000005, 47.4713891 ], + [ 7.7448578, 47.4713841 ], + [ 7.7448561, 47.4713789 ], + [ 7.7448552, 47.4713758 ], + [ 7.7448547, 47.4713742 ], + [ 7.744854, 47.4713717 ], + [ 7.7448515, 47.4713632 ], + [ 7.7448489, 47.4713542 ], + [ 7.7448469, 47.471347 ], + [ 7.744846, 47.4713436 ], + [ 7.7448447, 47.4713378 ], + [ 7.7448422, 47.4713266 ], + [ 7.7448391999999995, 47.4713147 ], + [ 7.7448387, 47.4713126 ], + [ 7.7448362, 47.4713018 ], + [ 7.744833, 47.4712895 ], + [ 7.7448324, 47.4712872 ], + [ 7.7448299, 47.4712769 ], + [ 7.7448235, 47.4712537 ], + [ 7.7448227, 47.4712504 ], + [ 7.7447508, 47.4710109 ], + [ 7.7447467, 47.4710044 ], + [ 7.7447458000000005, 47.471003 ], + [ 7.7447443, 47.4710004 ], + [ 7.7447423, 47.4709972 ], + [ 7.74474, 47.4709932 ], + [ 7.7447381, 47.47099 ], + [ 7.7447347, 47.4709838 ], + [ 7.7447325, 47.4709797 ], + [ 7.7447305, 47.4709758 ], + [ 7.7447282, 47.4709712 ], + [ 7.7447263, 47.4709671 ], + [ 7.7447245, 47.4709632 ], + [ 7.7447232, 47.4709603 ], + [ 7.7447203, 47.4709536 ], + [ 7.7447191, 47.4709509 ], + [ 7.7447185, 47.4709493 ], + [ 7.7447175999999995, 47.4709471 ], + [ 7.7447158, 47.4709424 ], + [ 7.7447122, 47.4709334 ], + [ 7.7447104, 47.4709287 ], + [ 7.7447086, 47.4709237 ], + [ 7.7447031, 47.4709101 ], + [ 7.7447028, 47.4709093 ], + [ 7.7447008, 47.4709041 ], + [ 7.7446985, 47.4708981 ], + [ 7.7446955, 47.4708904 ], + [ 7.7446944, 47.4708875 ], + [ 7.7446933, 47.4708848 ], + [ 7.7446931, 47.4708842 ], + [ 7.7446918, 47.4708815 ], + [ 7.7446847, 47.4708667 ], + [ 7.744684, 47.4708654 ], + [ 7.7446808, 47.4708587 ], + [ 7.7446794, 47.4708556 ], + [ 7.7446763, 47.4708488 ], + [ 7.7446745, 47.4708448 ], + [ 7.7446727, 47.4708406 ], + [ 7.7446719, 47.4708389 ], + [ 7.7446683, 47.470831 ], + [ 7.7446656, 47.4708248 ], + [ 7.7446649, 47.4708233 ], + [ 7.7446619, 47.470817 ], + [ 7.7446596, 47.4708122 ], + [ 7.7446435000000005, 47.4707798 ], + [ 7.7446379, 47.4707686 ], + [ 7.744636, 47.470765 ], + [ 7.7446352, 47.4707637 ], + [ 7.7446334, 47.4707605 ], + [ 7.7446297, 47.470754 ], + [ 7.7446292, 47.4707531 ], + [ 7.7446284, 47.4707518 ], + [ 7.7446258, 47.4707478 ], + [ 7.7446226, 47.4707428 ], + [ 7.7446226, 47.4707427 ], + [ 7.7446214, 47.4707408 ], + [ 7.7446201, 47.4707387 ], + [ 7.7446173, 47.4707341 ], + [ 7.7446164, 47.4707325 ], + [ 7.7446117999999995, 47.4707247 ], + [ 7.7446101, 47.470722 ], + [ 7.744609, 47.4707204 ], + [ 7.7446075, 47.4707178 ], + [ 7.7446063, 47.4707159 ], + [ 7.7436062, 47.4709454 ], + [ 7.7436108, 47.4709517 ], + [ 7.7436117, 47.4709528 ], + [ 7.7436126, 47.4709541 ], + [ 7.7436145, 47.4709567 ], + [ 7.7436194, 47.4709637 ], + [ 7.7436238, 47.4709702 ], + [ 7.7436264, 47.4709742 ], + [ 7.7436340999999995, 47.4709862 ], + [ 7.7436356, 47.4709884 ], + [ 7.7436387, 47.4709928 ], + [ 7.7436433000000005, 47.4709991 ], + [ 7.74366, 47.4710214 ], + [ 7.7436608, 47.4710226 ], + [ 7.7436674, 47.4710316 ], + [ 7.7436675, 47.4710318 ], + [ 7.7436692, 47.4710341 ], + [ 7.7436757, 47.4710431 ], + [ 7.7436789, 47.4710477 ], + [ 7.7436874, 47.4710601 ], + [ 7.7436913, 47.4710655 ], + [ 7.7437008, 47.4710784 ], + [ 7.7437011, 47.4710789 ], + [ 7.743702, 47.47108 ], + [ 7.7437085, 47.471089 ], + [ 7.7437118, 47.4710937 ], + [ 7.7437181, 47.4711028 ], + [ 7.7437242, 47.4711121 ], + [ 7.7437283, 47.4711186 ], + [ 7.7437289, 47.4711196 ], + [ 7.7437307, 47.4711226 ], + [ 7.7437356, 47.4711309 ], + [ 7.7437377, 47.4711342 ], + [ 7.7437385, 47.4711354 ], + [ 7.7437414, 47.4711402 ], + [ 7.7437491, 47.4711534 ], + [ 7.7437536, 47.4711608 ], + [ 7.7437559, 47.4711647 ], + [ 7.7437624, 47.4711758 ], + [ 7.7437667, 47.4711829 ], + [ 7.743769, 47.4711867 ], + [ 7.7437763, 47.4711991 ], + [ 7.743778, 47.4712018 ], + [ 7.7437786, 47.4712028 ], + [ 7.7437804, 47.4712058 ], + [ 7.7437816, 47.4712077 ], + [ 7.7437827, 47.4712096 ], + [ 7.7437901, 47.4712223 ], + [ 7.743792, 47.4712253 ], + [ 7.7437946, 47.4712297 ], + [ 7.7437957, 47.4712316 ], + [ 7.7437968, 47.4712335 ], + [ 7.7437995, 47.4712382 ], + [ 7.7438009999999995, 47.4712409 ], + [ 7.7438061, 47.47125 ], + [ 7.7438071, 47.4712517 ], + [ 7.7438103, 47.4712569 ], + [ 7.7438125, 47.4712606 ], + [ 7.7438196999999995, 47.4712728 ], + [ 7.7438213000000005, 47.4712754 ], + [ 7.7438221, 47.4712767 ], + [ 7.7438237, 47.4712794 ], + [ 7.7438249, 47.4712813 ], + [ 7.7438258, 47.4712829 ], + [ 7.7438286, 47.4712876 ], + [ 7.7438296, 47.4712894 ], + [ 7.7438347, 47.4712982 ], + [ 7.7438371, 47.4713021 ], + [ 7.7438418, 47.4713104 ], + [ 7.7438455, 47.4713173 ], + [ 7.7438484, 47.4713228 ], + [ 7.7438497, 47.4713254 ], + [ 7.7438533, 47.4713327 ], + [ 7.7438563, 47.4713392 ], + [ 7.7438592, 47.4713455 ], + [ 7.7438614, 47.4713508 ], + [ 7.7438635, 47.4713557 ], + [ 7.7438642, 47.4713571 ], + [ 7.7438654, 47.4713593 ], + [ 7.7438661, 47.4713608 ], + [ 7.7438677, 47.4713634 ], + [ 7.7438692, 47.471366 ], + [ 7.7438746, 47.4713753 ], + [ 7.7438797, 47.4713847 ], + [ 7.7438813, 47.4713877 ], + [ 7.7438829, 47.4713901 ], + [ 7.7438986, 47.4714115 ], + [ 7.7439004, 47.4714139 ], + [ 7.7439067999999995, 47.471423 ], + [ 7.7439102, 47.4714279 ], + [ 7.7439324, 47.4714605 ], + [ 7.7439362, 47.4714659 ], + [ 7.7439412, 47.4714727 ], + [ 7.7439467, 47.4714801 ], + [ 7.7439523, 47.4714875 ], + [ 7.7439576, 47.4714944 ], + [ 7.7439642, 47.4715029 ], + [ 7.7439662, 47.4715054 ], + [ 7.7439682, 47.471508 ], + [ 7.7439713999999995, 47.4715123 ], + [ 7.7439722, 47.4715133 ], + [ 7.7439801, 47.4715242 ], + [ 7.7439818, 47.4715266 ], + [ 7.7439867, 47.4715336 ], + [ 7.7439986, 47.4715498 ], + [ 7.7440241, 47.4715845 ], + [ 7.7440302, 47.4715927 ], + [ 7.7440332, 47.4715966 ], + [ 7.7440356, 47.4715991 ], + [ 7.7440397, 47.4716033 ], + [ 7.7440429, 47.4716067 ], + [ 7.7440469, 47.471611 ], + [ 7.7440511, 47.4716155 ], + [ 7.7440556, 47.4716206 ], + [ 7.7440592, 47.4716247 ], + [ 7.7440618, 47.4716278 ], + [ 7.7440692, 47.4716366 ], + [ 7.7440725, 47.4716408 ], + [ 7.7440819, 47.471652399999996 ], + [ 7.7440888999999995, 47.4716611 ], + [ 7.7440902, 47.4716626 ], + [ 7.7440923, 47.4716652 ], + [ 7.7440949, 47.4716686 ], + [ 7.7441018, 47.4716775 ], + [ 7.7441037, 47.4716799 ], + [ 7.7441105, 47.4716889 ], + [ 7.7441113999999995, 47.471690100000004 ], + [ 7.7441181, 47.4716991 ], + [ 7.7441184, 47.4716996 ], + [ 7.7441406, 47.4717295 ], + [ 7.7441524, 47.4717451 ], + [ 7.7441567, 47.4717507 ], + [ 7.744165, 47.471761 ], + [ 7.7441680999999996, 47.4717648 ], + [ 7.744175, 47.4717737 ], + [ 7.7441768, 47.471776 ], + [ 7.7441835, 47.4717849 ], + [ 7.7441846, 47.4717864 ], + [ 7.744198, 47.4718043 ], + [ 7.7441986, 47.471805 ], + [ 7.7442279, 47.4718445 ], + [ 7.7442402, 47.471861 ], + [ 7.7442458, 47.4718683 ], + [ 7.7442504, 47.4718743 ], + [ 7.7442589, 47.4718848 ], + [ 7.7442618, 47.4718885 ], + [ 7.7442686, 47.4718972 ], + [ 7.7442702, 47.4718993 ], + [ 7.744277, 47.4719082 ], + [ 7.7442781, 47.4719096 ], + [ 7.7442915, 47.4719276 ], + [ 7.7442921, 47.4719283 ], + [ 7.7443279, 47.4719766 ], + [ 7.7443403, 47.4719931 ], + [ 7.7443456, 47.472 ], + [ 7.7443501999999995, 47.4720059 ], + [ 7.744355, 47.4720118 ], + [ 7.7443577999999995, 47.4720153 ], + [ 7.7443647, 47.4720242 ], + [ 7.7443665, 47.4720265 ], + [ 7.7443734, 47.4720354 ], + [ 7.7443743, 47.4720366 ], + [ 7.7443811, 47.4720456 ], + [ 7.7443817, 47.472046399999996 ], + [ 7.7443951, 47.4720643 ], + [ 7.7443957999999995, 47.4720653 ], + [ 7.7444025, 47.4720742 ], + [ 7.7444033, 47.4720753 ], + [ 7.7444036, 47.4720757 ], + [ 7.7444101, 47.4720847 ], + [ 7.7444123, 47.4720877 ], + [ 7.7444187, 47.4720967 ], + [ 7.7444222, 47.4721018 ], + [ 7.7444266, 47.4721082 ], + [ 7.744428, 47.4721105 ], + [ 7.744431, 47.4721151 ], + [ 7.7444332, 47.4721183 ], + [ 7.7444361, 47.4721229 ], + [ 7.7444374, 47.4721251 ], + [ 7.7444389000000005, 47.4721275 ], + [ 7.7444428, 47.472134 ], + [ 7.7444446, 47.472137 ], + [ 7.7444473, 47.4721417 ], + [ 7.7444500000000005, 47.4721464 ], + [ 7.7444536, 47.4721531 ], + [ 7.7444554, 47.4721564 ], + [ 7.7444574, 47.4721603 ], + [ 7.7444582, 47.4721618 ], + [ 7.7444631, 47.4721712 ], + [ 7.7444637, 47.4721724 ], + [ 7.7444721, 47.4721888 ], + [ 7.7444745, 47.4721934 ], + [ 7.7444779, 47.4721998 ], + [ 7.7444787, 47.4722014 ], + [ 7.7444823, 47.4722082 ], + [ 7.7444828999999995, 47.4722092 ], + [ 7.7444918, 47.4722263 ], + [ 7.7444985, 47.4722391 ], + [ 7.7444995, 47.4722409 ], + [ 7.7445063, 47.4722541 ], + [ 7.7445073, 47.4722559 ], + [ 7.7445075, 47.4722563 ], + [ 7.7445176, 47.4722765 ], + [ 7.7445181, 47.4722775 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr145", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Bättlete", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Bättlete", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Bättlete", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Bättlete", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6688472, 47.4089782 ], + [ 7.6688427, 47.4088931 ], + [ 7.6687008, 47.4089676 ], + [ 7.6685647, 47.4088459 ], + [ 7.6685903, 47.4088265 ], + [ 7.6689115, 47.408598 ], + [ 7.6692423, 47.4083433 ], + [ 7.6692697, 47.4083223 ], + [ 7.6692965, 47.4083009 ], + [ 7.6693226, 47.4082791 ], + [ 7.6693481, 47.4082569 ], + [ 7.6693728, 47.4082344 ], + [ 7.6693968, 47.4082115 ], + [ 7.6694201, 47.4081883 ], + [ 7.6694427, 47.4081648 ], + [ 7.6694645999999995, 47.408141 ], + [ 7.6694857, 47.4081168 ], + [ 7.669506, 47.4080923 ], + [ 7.6696778, 47.4078322 ], + [ 7.6696876, 47.4078165 ], + [ 7.6696982, 47.4078011 ], + [ 7.6697097, 47.4077859 ], + [ 7.669722, 47.407771 ], + [ 7.6697351, 47.4077565 ], + [ 7.6697489999999995, 47.4077423 ], + [ 7.6697637, 47.4077285 ], + [ 7.6697792, 47.4077151 ], + [ 7.6697953, 47.407702 ], + [ 7.6698122, 47.4076894 ], + [ 7.6698298, 47.4076772 ], + [ 7.6698481, 47.4076655 ], + [ 7.669867, 47.4076543 ], + [ 7.6698865, 47.4076436 ], + [ 7.6699066, 47.4076333 ], + [ 7.6699272, 47.4076236 ], + [ 7.6699484, 47.4076144 ], + [ 7.6702039, 47.4075189 ], + [ 7.6701908, 47.4075026 ], + [ 7.6701485, 47.4074498 ], + [ 7.6697521, 47.407581 ], + [ 7.6695074, 47.4073965 ], + [ 7.6700099, 47.4072186 ], + [ 7.6701576, 47.4071662 ], + [ 7.6709987, 47.4069159 ], + [ 7.6713487, 47.4068118 ], + [ 7.6714, 47.4067074 ], + [ 7.6714089, 47.4066934 ], + [ 7.6714185, 47.4066797 ], + [ 7.6714286, 47.4066662 ], + [ 7.6714395, 47.4066529 ], + [ 7.6714428, 47.406649 ], + [ 7.6714461, 47.4066452 ], + [ 7.6714495, 47.4066414 ], + [ 7.6711725, 47.4064212 ], + [ 7.6706183, 47.4064558 ], + [ 7.6700496000000005, 47.4063006 ], + [ 7.6693544, 47.4065337 ], + [ 7.6687466, 47.4065878 ], + [ 7.668026, 47.406628 ], + [ 7.6675944, 47.4066932 ], + [ 7.6674585, 47.4066351 ], + [ 7.6675879, 47.4061211 ], + [ 7.6681173000000005, 47.4060257 ], + [ 7.6687014, 47.4058937 ], + [ 7.6693033, 47.4057798 ], + [ 7.6694548000000005, 47.4056686 ], + [ 7.6695779, 47.4052139 ], + [ 7.6695776, 47.404919 ], + [ 7.6695734, 47.4043153 ], + [ 7.6695717, 47.4031929 ], + [ 7.6696057, 47.4026799 ], + [ 7.6696686, 47.4024076 ], + [ 7.669699, 47.4023118 ], + [ 7.6687251, 47.4022871 ], + [ 7.6685868, 47.4023186 ], + [ 7.6683162, 47.4024249 ], + [ 7.668219, 47.4023994 ], + [ 7.6681293, 47.4024389 ], + [ 7.6680468, 47.4024556 ], + [ 7.6679594, 47.4024939 ], + [ 7.6677922, 47.4025178 ], + [ 7.6675772, 47.4025942 ], + [ 7.6674073, 47.4026549 ], + [ 7.6672172, 47.4026946 ], + [ 7.6670065, 47.402727 ], + [ 7.6669078, 47.4026252 ], + [ 7.6666841, 47.4026876 ], + [ 7.6666416, 47.4026161 ], + [ 7.666397, 47.4026406 ], + [ 7.666377, 47.4026669 ], + [ 7.6662804, 47.4027785 ], + [ 7.666128, 47.4029504 ], + [ 7.6660905, 47.4029957 ], + [ 7.6660758, 47.4030163 ], + [ 7.6660636, 47.4030376 ], + [ 7.666054, 47.4030596 ], + [ 7.6660471999999995, 47.403082 ], + [ 7.6660432, 47.4031047 ], + [ 7.6660419, 47.4031275 ], + [ 7.6660433999999995, 47.4031504 ], + [ 7.6660477, 47.4031731 ], + [ 7.6660547999999995, 47.4031954 ], + [ 7.6660646, 47.4032173 ], + [ 7.6662294, 47.403491700000004 ], + [ 7.6662767, 47.4035368 ], + [ 7.6663302, 47.4035787 ], + [ 7.6663894, 47.4036168 ], + [ 7.6664537, 47.403650999999996 ], + [ 7.6667065999999995, 47.4037644 ], + [ 7.6668266, 47.4038412 ], + [ 7.6671583, 47.4040614 ], + [ 7.6671976, 47.4040868 ], + [ 7.6672335, 47.4041145 ], + [ 7.6672655, 47.4041443 ], + [ 7.6672934, 47.4041759 ], + [ 7.6673169, 47.4042091 ], + [ 7.6673729, 47.4043221 ], + [ 7.6673874, 47.4043534 ], + [ 7.6673986, 47.4043853 ], + [ 7.6674066, 47.4044176 ], + [ 7.6674097, 47.4044345 ], + [ 7.6674106, 47.4044516 ], + [ 7.6674094, 47.4044687 ], + [ 7.6674061, 47.4044856 ], + [ 7.6674008, 47.4045023 ], + [ 7.6673934, 47.4045186 ], + [ 7.667384, 47.4045345 ], + [ 7.6673727, 47.4045498 ], + [ 7.6673596, 47.4045643 ], + [ 7.6673344, 47.4045865 ], + [ 7.6673065000000005, 47.4046072 ], + [ 7.6672762, 47.4046262 ], + [ 7.6672435, 47.4046433 ], + [ 7.6672089, 47.4046585 ], + [ 7.6671724, 47.4046717 ], + [ 7.6670089, 47.4047196 ], + [ 7.6668432, 47.404764 ], + [ 7.6666755, 47.4048049 ], + [ 7.6666012, 47.4048224 ], + [ 7.6665261000000005, 47.4048382 ], + [ 7.6664501, 47.4048522 ], + [ 7.6663815, 47.4048632 ], + [ 7.666312, 47.4048711 ], + [ 7.6662418, 47.404876 ], + [ 7.6661383, 47.4048799 ], + [ 7.6660865, 47.4048874 ], + [ 7.6660353, 47.4048966 ], + [ 7.6659848, 47.4049075 ], + [ 7.6657354, 47.4049879 ], + [ 7.6655682, 47.4050596 ], + [ 7.665289, 47.4051875 ], + [ 7.6649719, 47.4054186 ], + [ 7.6646894, 47.4055967 ], + [ 7.6642922, 47.4057933 ], + [ 7.6635959, 47.4060243 ], + [ 7.6634820999999995, 47.4060512 ], + [ 7.6632969, 47.4060801 ], + [ 7.66296, 47.4061129 ], + [ 7.6626613, 47.406187 ], + [ 7.6620227, 47.4063109 ], + [ 7.6619512, 47.406326 ], + [ 7.6615599, 47.4064088 ], + [ 7.6615179, 47.406424 ], + [ 7.6612939, 47.406505 ], + [ 7.6611869, 47.406557 ], + [ 7.6611323, 47.406583499999996 ], + [ 7.6611156000000005, 47.4065934 ], + [ 7.6611003, 47.4066042 ], + [ 7.6610864, 47.4066159 ], + [ 7.6610741, 47.4066284 ], + [ 7.6610636, 47.4066416 ], + [ 7.6610548, 47.4066554 ], + [ 7.6610479, 47.4066697 ], + [ 7.6610428, 47.4066843 ], + [ 7.6610398, 47.4066992 ], + [ 7.6610385999999995, 47.4067142 ], + [ 7.661033, 47.4067426 ], + [ 7.6609952, 47.4068939 ], + [ 7.6609886, 47.4069964 ], + [ 7.6610159, 47.4071492 ], + [ 7.6610324, 47.4073427 ], + [ 7.661051, 47.4073712 ], + [ 7.6610932, 47.4074196 ], + [ 7.6611599, 47.4074727 ], + [ 7.6612149, 47.4075045 ], + [ 7.661298, 47.407547 ], + [ 7.661482, 47.407639 ], + [ 7.6616918, 47.4077201 ], + [ 7.6619323999999995, 47.4078417 ], + [ 7.6620175, 47.4078782 ], + [ 7.6621124, 47.407912 ], + [ 7.6622422, 47.407948 ], + [ 7.6623301, 47.4079664 ], + [ 7.6627886, 47.4080456 ], + [ 7.6630237999999995, 47.4081004 ], + [ 7.6630959, 47.4081139 ], + [ 7.6634411, 47.4081246 ], + [ 7.6637477, 47.4080699 ], + [ 7.6638818, 47.408058 ], + [ 7.6639655, 47.4080661 ], + [ 7.6642622, 47.4080292 ], + [ 7.6646457, 47.4080007 ], + [ 7.6647637, 47.4079892 ], + [ 7.6649574, 47.4079962 ], + [ 7.6658119, 47.408096 ], + [ 7.6657824, 47.4081445 ], + [ 7.6658389, 47.4081309 ], + [ 7.6663534, 47.4080074 ], + [ 7.6666199, 47.4083365 ], + [ 7.6669129, 47.4086982 ], + [ 7.6673922, 47.4093011 ], + [ 7.6674389, 47.4093598 ], + [ 7.6673165999999995, 47.4093954 ], + [ 7.6671243, 47.4097903 ], + [ 7.6671651, 47.4098056 ], + [ 7.6672296, 47.4098655 ], + [ 7.6672447, 47.4098988 ], + [ 7.667245, 47.4099452 ], + [ 7.6672269, 47.4099675 ], + [ 7.6674887, 47.4098351 ], + [ 7.6688559, 47.4091433 ], + [ 7.6688472, 47.4089782 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns109", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Binzenberg - Chüeweid", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Binzenberg - Chüeweid", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Binzenberg - Chüeweid", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Binzenberg - Chüeweid", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.1945151, 46.3475849 ], + [ 6.1948851, 46.3486162 ], + [ 6.1947664, 46.3486004 ], + [ 6.1946545, 46.3486011 ], + [ 6.1944596, 46.3485776 ], + [ 6.1943128, 46.3485708 ], + [ 6.1941815, 46.3485861 ], + [ 6.1939537, 46.3486292 ], + [ 6.1939673, 46.3486527 ], + [ 6.1938322, 46.3487038 ], + [ 6.1937305, 46.3487253 ], + [ 6.1935697, 46.348767 ], + [ 6.1934299, 46.3488198 ], + [ 6.1933867, 46.3488619 ], + [ 6.1933851, 46.3488616 ], + [ 6.1933386, 46.3488586 ], + [ 6.193326, 46.3488561 ], + [ 6.1932327, 46.3488363 ], + [ 6.1932343, 46.3488514 ], + [ 6.1931751, 46.3488338 ], + [ 6.193088, 46.3488446 ], + [ 6.1928847, 46.34882 ], + [ 6.1927921, 46.3487841 ], + [ 6.1925755, 46.3487481 ], + [ 6.1924315, 46.348723 ], + [ 6.1923742, 46.3486916 ], + [ 6.1922726, 46.348697 ], + [ 6.1921074, 46.3486801 ], + [ 6.1920205, 46.348666 ], + [ 6.1919486, 46.3486693 ], + [ 6.1918313, 46.3486447 ], + [ 6.1917383, 46.3486269 ], + [ 6.1916768, 46.3486232 ], + [ 6.1916199, 46.3485916 ], + [ 6.1914498, 46.3486014 ], + [ 6.1912001, 46.3486808 ], + [ 6.1911649, 46.3487021 ], + [ 6.1910827, 46.348709 ], + [ 6.1909454, 46.3487872 ], + [ 6.1908936, 46.348812 ], + [ 6.1907871, 46.3489092 ], + [ 6.1907644, 46.3489381 ], + [ 6.1907328, 46.3489989 ], + [ 6.1907005999999996, 46.3490415 ], + [ 6.1906582, 46.3490947 ], + [ 6.1906264, 46.3491162 ], + [ 6.1905862, 46.3491276 ], + [ 6.1905745, 46.3491313 ], + [ 6.1904126999999995, 46.3491363 ], + [ 6.1903233, 46.3491449 ], + [ 6.1902441, 46.3491847 ], + [ 6.1901954, 46.3492194 ], + [ 6.190193, 46.3492389 ], + [ 6.1901437, 46.3492923 ], + [ 6.1899716, 46.349336 ], + [ 6.1898941, 46.3493452 ], + [ 6.1898551, 46.3493873 ], + [ 6.1898094, 46.3494733 ], + [ 6.1897066, 46.3495242 ], + [ 6.1896284, 46.3495334 ], + [ 6.1895308, 46.3495345 ], + [ 6.1894881, 46.3495818 ], + [ 6.1893709, 46.3496826 ], + [ 6.1892403, 46.3497697 ], + [ 6.1891846, 46.349847 ], + [ 6.1890597, 46.3499481 ], + [ 6.1889894, 46.3500079 ], + [ 6.1888903, 46.3500315 ], + [ 6.1888092, 46.350125 ], + [ 6.1887436, 46.3501128 ], + [ 6.188716, 46.3500727 ], + [ 6.18862, 46.3500364 ], + [ 6.1885011, 46.3499828 ], + [ 6.1883932, 46.3499928 ], + [ 6.1882745, 46.3499826 ], + [ 6.1882294, 46.349944 ], + [ 6.188127, 46.3499205 ], + [ 6.1880563, 46.3499339 ], + [ 6.1878917, 46.3499139 ], + [ 6.1878208, 46.3498609 ], + [ 6.1877293, 46.349834 ], + [ 6.1876752, 46.3497672 ], + [ 6.1875606, 46.3497728 ], + [ 6.1874816, 46.3497728 ], + [ 6.18741, 46.3497195 ], + [ 6.1873411, 46.3496825 ], + [ 6.1872574, 46.3495732 ], + [ 6.1871838, 46.3495371 ], + [ 6.1870901, 46.3495713 ], + [ 6.1870463, 46.3494934 ], + [ 6.1870046, 46.349501599999996 ], + [ 6.1868692, 46.349528 ], + [ 6.1867441, 46.3494912 ], + [ 6.1865326, 46.3495342 ], + [ 6.1862681, 46.3495373 ], + [ 6.1844429, 46.3501883 ], + [ 6.1856295, 46.3503654 ], + [ 6.1862641, 46.3502853 ], + [ 6.1863428, 46.3505841 ], + [ 6.1870958, 46.3513921 ], + [ 6.1868299, 46.3522463 ], + [ 6.1869856, 46.3528377 ], + [ 6.1859892, 46.3529635 ], + [ 6.1847114, 46.3535345 ], + [ 6.1838464, 46.3544005 ], + [ 6.1835259, 46.3554298 ], + [ 6.1837987, 46.3564657 ], + [ 6.1846232, 46.3573505 ], + [ 6.1858741, 46.3579494 ], + [ 6.1873608, 46.3581713 ], + [ 6.1888569, 46.3579824 ], + [ 6.1901348, 46.3574115 ], + [ 6.1909997, 46.3565454 ], + [ 6.1913201, 46.355516 ], + [ 6.1912648, 46.355306 ], + [ 6.1913805, 46.3553232 ], + [ 6.1928765, 46.3551343 ], + [ 6.1941543, 46.3545632 ], + [ 6.1950191, 46.3536971 ], + [ 6.1950332, 46.3536518 ], + [ 6.1952532, 46.3536846 ], + [ 6.1967492, 46.3534956 ], + [ 6.1980268, 46.3529245 ], + [ 6.1988916, 46.3520584 ], + [ 6.1990089, 46.3516812 ], + [ 6.1990784, 46.3516117 ], + [ 6.1991233, 46.3514672 ], + [ 6.2006035, 46.351688 ], + [ 6.2013707, 46.351591 ], + [ 6.2015177, 46.3517486 ], + [ 6.2027686, 46.3523474 ], + [ 6.2042552, 46.3525691 ], + [ 6.2057511, 46.3523799 ], + [ 6.2070286, 46.3518088 ], + [ 6.2078932, 46.3509426 ], + [ 6.2082133, 46.3499132 ], + [ 6.2079401, 46.3488773 ], + [ 6.2071153, 46.3479927 ], + [ 6.2058644, 46.347394 ], + [ 6.204378, 46.3471724 ], + [ 6.2036108, 46.3472694 ], + [ 6.2034639, 46.3471117 ], + [ 6.2022131, 46.346513 ], + [ 6.2018405, 46.3464574 ], + [ 6.2012748, 46.3461866 ], + [ 6.1997883, 46.3459648 ], + [ 6.1982925, 46.3461539 ], + [ 6.1970151, 46.346725 ], + [ 6.1961963, 46.3475451 ], + [ 6.1955698, 46.3474516 ], + [ 6.1945151, 46.3475849 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE72", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.1818356, 46.3474942 ], + [ 6.1820379, 46.3472899 ], + [ 6.1828067, 46.346766 ], + [ 6.1835802, 46.3462384 ], + [ 6.1837867, 46.3461183 ], + [ 6.1840128, 46.346015 ], + [ 6.18403, 46.3460329 ], + [ 6.184428, 46.3458457 ], + [ 6.1838096, 46.3453581 ], + [ 6.1829807, 46.3457285 ], + [ 6.1821158, 46.3465946 ], + [ 6.1818356, 46.3474942 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE71", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.915378, 47.5656714 ], + [ 8.9153686, 47.5655302 ], + [ 8.9153483, 47.5653897 ], + [ 8.9153172, 47.56525 ], + [ 8.9152753, 47.5651116 ], + [ 8.9152228, 47.5649749 ], + [ 8.9151597, 47.5648402 ], + [ 8.9150864, 47.564708 ], + [ 8.9150029, 47.5645785 ], + [ 8.9149095, 47.5644522 ], + [ 8.9148065, 47.5643294 ], + [ 8.9146941, 47.5642103 ], + [ 8.9145727, 47.5640955 ], + [ 8.9144425, 47.563985 ], + [ 8.914304, 47.5638794 ], + [ 8.9141576, 47.5637787 ], + [ 8.9140035, 47.5636835 ], + [ 8.9138423, 47.5635938 ], + [ 8.9136743, 47.5635099 ], + [ 8.9135002, 47.5634321 ], + [ 8.9133202, 47.5633606 ], + [ 8.9131349, 47.5632955 ], + [ 8.9129449, 47.5632371 ], + [ 8.9127506, 47.5631855 ], + [ 8.9125526, 47.5631409 ], + [ 8.9123515, 47.5631033 ], + [ 8.9121476, 47.5630729 ], + [ 8.9119418, 47.5630498 ], + [ 8.9117344, 47.563034 ], + [ 8.9115261, 47.5630255 ], + [ 8.9113174, 47.5630245 ], + [ 8.9111089, 47.5630308 ], + [ 8.9109012, 47.5630446 ], + [ 8.9106948, 47.5630656 ], + [ 8.9104904, 47.563094 ], + [ 8.9102884, 47.5631295 ], + [ 8.9100894, 47.5631722 ], + [ 8.909894, 47.5632218 ], + [ 8.9097028, 47.5632783 ], + [ 8.9095161, 47.5633415 ], + [ 8.9093346, 47.5634112 ], + [ 8.9091587, 47.5634873 ], + [ 8.908989, 47.5635694 ], + [ 8.9088258, 47.5636575 ], + [ 8.9086697, 47.5637513 ], + [ 8.908521, 47.5638504 ], + [ 8.9083802, 47.5639547 ], + [ 8.9082477, 47.5640638 ], + [ 8.9081238, 47.5641774 ], + [ 8.9080088, 47.5642953 ], + [ 8.9079031, 47.5644171 ], + [ 8.907807, 47.5645425 ], + [ 8.9077207, 47.5646711 ], + [ 8.9076444, 47.5648026 ], + [ 8.9075784, 47.5649366 ], + [ 8.9075229, 47.5650728 ], + [ 8.907478, 47.5652107 ], + [ 8.9074438, 47.5653501 ], + [ 8.9074205, 47.5654904 ], + [ 8.907408, 47.5656314 ], + [ 8.9074065, 47.5657727 ], + [ 8.9074158, 47.5659138 ], + [ 8.9074361, 47.5660544 ], + [ 8.9074672, 47.5661941 ], + [ 8.9075091, 47.5663324 ], + [ 8.9075616, 47.5664692 ], + [ 8.9076246, 47.5666038 ], + [ 8.907698, 47.5667361 ], + [ 8.9077814, 47.5668655 ], + [ 8.9078748, 47.5669919 ], + [ 8.9079778, 47.5671147 ], + [ 8.9080902, 47.5672337 ], + [ 8.9082116, 47.5673486 ], + [ 8.9083417, 47.5674591 ], + [ 8.9084802, 47.5675647 ], + [ 8.9086267, 47.5676654 ], + [ 8.9087808, 47.5677607 ], + [ 8.908942, 47.5678504 ], + [ 8.9091099, 47.5679342 ], + [ 8.9092841, 47.568012 ], + [ 8.9094641, 47.5680836 ], + [ 8.9096494, 47.5681486 ], + [ 8.9098394, 47.5682071 ], + [ 8.9100337, 47.5682586 ], + [ 8.9102317, 47.5683033 ], + [ 8.9104329, 47.5683409 ], + [ 8.9106368, 47.5683713 ], + [ 8.9108426, 47.5683944 ], + [ 8.9110501, 47.5684102 ], + [ 8.9112584, 47.5684186 ], + [ 8.9114671, 47.5684197 ], + [ 8.9116756, 47.5684133 ], + [ 8.9118834, 47.5683996 ], + [ 8.9120897, 47.5683785 ], + [ 8.9122942, 47.5683502 ], + [ 8.9124962, 47.5683146 ], + [ 8.9126952, 47.568272 ], + [ 8.9128906, 47.5682223 ], + [ 8.9130819, 47.5681658 ], + [ 8.9132685, 47.5681026 ], + [ 8.9134501, 47.5680329 ], + [ 8.9136259, 47.5679569 ], + [ 8.9137957, 47.5678747 ], + [ 8.9139589, 47.5677866 ], + [ 8.914115, 47.5676928 ], + [ 8.9142637, 47.5675937 ], + [ 8.9144044, 47.5674894 ], + [ 8.914537, 47.567380299999996 ], + [ 8.9146609, 47.5672667 ], + [ 8.9147759, 47.5671488 ], + [ 8.9148815, 47.567027 ], + [ 8.9149777, 47.5669016 ], + [ 8.915064, 47.566773 ], + [ 8.9151402, 47.5666415 ], + [ 8.9152061, 47.5665074 ], + [ 8.915261600000001, 47.5663713 ], + [ 8.9153065, 47.5662333 ], + [ 8.9153407, 47.566094 ], + [ 8.915364, 47.5659536 ], + [ 8.9153765, 47.5658126 ], + [ 8.915378, 47.5656714 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "FKG0001", + "country" : "CHE", + "name" : [ + { + "text" : "Kantonalgefängnis Frauenfeld", + "lang" : "de-CH" + }, + { + "text" : "Kantonalgefängnis Frauenfeld", + "lang" : "fr-CH" + }, + { + "text" : "Kantonalgefängnis Frauenfeld", + "lang" : "it-CH" + }, + { + "text" : "Kantonalgefängnis Frauenfeld", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Justizvollzug", + "lang" : "de-CH" + }, + { + "text" : "Amt für Justizvollzug", + "lang" : "fr-CH" + }, + { + "text" : "Amt für Justizvollzug", + "lang" : "it-CH" + }, + { + "text" : "Amt für Justizvollzug", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Amtsleitung", + "lang" : "de-CH" + }, + { + "text" : "Amtsleitung", + "lang" : "fr-CH" + }, + { + "text" : "Amtsleitung", + "lang" : "it-CH" + }, + { + "text" : "Amtsleitung", + "lang" : "en-GB" + } + ], + "siteURL" : "https://ajv.tg.ch/", + "email" : "ajv@tg.ch", + "phone" : "0041583453460", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8621941, 47.5040399 ], + [ 7.8621765, 47.5040742 ], + [ 7.8621815999999995, 47.5040992 ], + [ 7.862186, 47.5041244 ], + [ 7.8621896, 47.5041495 ], + [ 7.8621926, 47.5041748 ], + [ 7.8622186, 47.5042508 ], + [ 7.8621455000000005, 47.5043502 ], + [ 7.8621202, 47.5043845 ], + [ 7.8621061, 47.5044037 ], + [ 7.8620106, 47.5043954 ], + [ 7.8616629, 47.504013 ], + [ 7.861395, 47.5037565 ], + [ 7.8613795, 47.5037416 ], + [ 7.8613386, 47.5037064 ], + [ 7.860892, 47.5033212 ], + [ 7.8604008, 47.5029678 ], + [ 7.860142, 47.5027873 ], + [ 7.8599382, 47.5025524 ], + [ 7.8598447, 47.5023593 ], + [ 7.8598285, 47.5023089 ], + [ 7.8597173, 47.5019636 ], + [ 7.8596632, 47.5019489 ], + [ 7.8596262, 47.5019388 ], + [ 7.8596099, 47.5019963 ], + [ 7.8595998, 47.5020545 ], + [ 7.8595959, 47.502113 ], + [ 7.8595965, 47.5021294 ], + [ 7.859597, 47.5021414 ], + [ 7.8595977, 47.5021601 ], + [ 7.8595980999999995, 47.5021699 ], + [ 7.8596062, 47.5022265 ], + [ 7.8596132, 47.5022546 ], + [ 7.8596201, 47.5022827 ], + [ 7.8596412, 47.5023416 ], + [ 7.8596769, 47.5024412 ], + [ 7.8597904, 47.502768 ], + [ 7.8597912, 47.5027703 ], + [ 7.8598068, 47.502814 ], + [ 7.8598256, 47.5028596 ], + [ 7.8598306000000004, 47.5028702 ], + [ 7.8598468, 47.5029047 ], + [ 7.8598586, 47.5029264 ], + [ 7.8598703, 47.5029481 ], + [ 7.8598961, 47.5029909 ], + [ 7.8599241, 47.5030331 ], + [ 7.8599547, 47.5030753 ], + [ 7.8599877, 47.5031165 ], + [ 7.8600232, 47.5031568 ], + [ 7.8602509, 47.5033793 ], + [ 7.8602996, 47.5034298 ], + [ 7.8603472, 47.5034807 ], + [ 7.8603936999999995, 47.5035321 ], + [ 7.8604386, 47.503584000000004 ], + [ 7.8604824, 47.5036362 ], + [ 7.8605251, 47.5036889 ], + [ 7.8606807, 47.5039013 ], + [ 7.8608266, 47.5041003 ], + [ 7.8609254, 47.5042351 ], + [ 7.8610408, 47.5043926 ], + [ 7.8611787, 47.5045808 ], + [ 7.8612079999999995, 47.5046208 ], + [ 7.8612395, 47.5046638 ], + [ 7.8613167, 47.5047691 ], + [ 7.8613301, 47.5047837 ], + [ 7.8613682, 47.5048252 ], + [ 7.8613979, 47.5048514 ], + [ 7.8614275, 47.5048777 ], + [ 7.8614941, 47.504926 ], + [ 7.8615666, 47.5049694 ], + [ 7.8616449, 47.505008 ], + [ 7.8617283, 47.5050412 ], + [ 7.8617308999999995, 47.5050419 ], + [ 7.8617984, 47.5050608 ], + [ 7.8618177, 47.5050662 ], + [ 7.8619582, 47.5051055 ], + [ 7.8622372, 47.5051361 ], + [ 7.8624695, 47.5051156 ], + [ 7.8625174, 47.5051113 ], + [ 7.8626418000000005, 47.5051024 ], + [ 7.8626436, 47.5050899 ], + [ 7.8626537, 47.5050193 ], + [ 7.8627825, 47.5049482 ], + [ 7.8627133, 47.5049021 ], + [ 7.8627557, 47.5048418 ], + [ 7.8629007, 47.5046356 ], + [ 7.862935, 47.504659 ], + [ 7.8629671, 47.5046808 ], + [ 7.8629735, 47.5046766 ], + [ 7.8630321, 47.5046379 ], + [ 7.8630738000000004, 47.5045689 ], + [ 7.8630961, 47.504532 ], + [ 7.8631029, 47.5045208 ], + [ 7.8630897, 47.504516699999996 ], + [ 7.8629609, 47.5044765 ], + [ 7.8629541, 47.5044018 ], + [ 7.8629271, 47.5041043 ], + [ 7.8629227, 47.5040551 ], + [ 7.8628295, 47.5040375 ], + [ 7.862708, 47.5040146 ], + [ 7.8626929, 47.5040117 ], + [ 7.8626705, 47.5039958 ], + [ 7.8626461, 47.5039784 ], + [ 7.8631098999999995, 47.504025 ], + [ 7.863184, 47.504033 ], + [ 7.8632967, 47.5040451 ], + [ 7.8632304, 47.5038003 ], + [ 7.8631775, 47.5036753 ], + [ 7.8631347, 47.5035894 ], + [ 7.862933, 47.5031544 ], + [ 7.862829, 47.5028117 ], + [ 7.8627674, 47.5025109 ], + [ 7.8627633, 47.5024546 ], + [ 7.86273, 47.5022759 ], + [ 7.8626892999999995, 47.5021344 ], + [ 7.8626155, 47.5019897 ], + [ 7.862535, 47.5018434 ], + [ 7.8624122, 47.5015944 ], + [ 7.8623743, 47.5015194 ], + [ 7.8623161, 47.5014467 ], + [ 7.8621983, 47.5014168 ], + [ 7.862105, 47.501462 ], + [ 7.8620921, 47.501532 ], + [ 7.8621446, 47.5017491 ], + [ 7.8622105, 47.5019995 ], + [ 7.8622519, 47.5021311 ], + [ 7.8622892, 47.5022763 ], + [ 7.8622726, 47.5024125 ], + [ 7.8622347, 47.5024918 ], + [ 7.8621996, 47.5025645 ], + [ 7.8620969, 47.5031205 ], + [ 7.8620369, 47.5034454 ], + [ 7.8620318000000005, 47.5034742 ], + [ 7.8620263999999995, 47.503515 ], + [ 7.8620231, 47.503556 ], + [ 7.8620219, 47.503597 ], + [ 7.8620228999999995, 47.503638 ], + [ 7.8620246, 47.503667899999996 ], + [ 7.8620288, 47.5037088 ], + [ 7.8620352, 47.5037496 ], + [ 7.8620436, 47.5037903 ], + [ 7.8620489, 47.5038105 ], + [ 7.8620542, 47.5038307 ], + [ 7.8620931, 47.5039476 ], + [ 7.8621425, 47.5039543 ], + [ 7.8622358, 47.5039588 ], + [ 7.8622336, 47.5039631 ], + [ 7.8622328, 47.5039645 ], + [ 7.8622172, 47.503995 ], + [ 7.8621941, 47.5040399 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr060", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Uf Eck", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Uf Eck", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Uf Eck", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Uf Eck", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.6384695, 46.833474 ], + [ 8.6380035, 46.8333268 ], + [ 8.6379472, 46.8334462 ], + [ 8.6378871, 46.8335755 ], + [ 8.6378583, 46.833636 ], + [ 8.637837, 46.8336812 ], + [ 8.6378118, 46.8337832 ], + [ 8.637817, 46.833784 ], + [ 8.6378009, 46.8338849 ], + [ 8.6378016, 46.8339722 ], + [ 8.637814, 46.8340584 ], + [ 8.6378892, 46.8343176 ], + [ 8.6380944, 46.8343479 ], + [ 8.6380737, 46.8344183 ], + [ 8.6391653, 46.8345795 ], + [ 8.6391811, 46.8345821 ], + [ 8.6392337, 46.8345878 ], + [ 8.6392312, 46.8345923 ], + [ 8.6397973, 46.834642099999996 ], + [ 8.6398117, 46.8346429 ], + [ 8.6398238, 46.8346422 ], + [ 8.6398321, 46.8346406 ], + [ 8.6398393, 46.8346396 ], + [ 8.6398477, 46.8346375 ], + [ 8.639855, 46.8346358 ], + [ 8.639865499999999, 46.8346325 ], + [ 8.6398733, 46.8346296 ], + [ 8.6398802, 46.8346269 ], + [ 8.6398873, 46.8346232 ], + [ 8.6398923, 46.8346204 ], + [ 8.6398972, 46.8346168 ], + [ 8.6399039, 46.8346121 ], + [ 8.6399083, 46.8346082 ], + [ 8.6399115, 46.8346046 ], + [ 8.6399148, 46.834601 ], + [ 8.6399178, 46.8345967 ], + [ 8.6399204, 46.8345921 ], + [ 8.6399227, 46.8345856 ], + [ 8.6399242, 46.8345798 ], + [ 8.6399243, 46.834576 ], + [ 8.6399492, 46.8345776 ], + [ 8.6399829, 46.834323499999996 ], + [ 8.6400301, 46.8339731 ], + [ 8.6400416, 46.8338992 ], + [ 8.6400395, 46.8339016 ], + [ 8.6400377, 46.8339038 ], + [ 8.6400346, 46.8339065 ], + [ 8.6400309, 46.8339094 ], + [ 8.6400268, 46.8339118 ], + [ 8.6400225, 46.833914 ], + [ 8.6400187, 46.8339156 ], + [ 8.6400154, 46.8339169 ], + [ 8.6400111, 46.8339183 ], + [ 8.6400075, 46.8339194 ], + [ 8.6400041, 46.8339203 ], + [ 8.6399999, 46.8339211 ], + [ 8.639995, 46.8339219 ], + [ 8.6399905, 46.8339225 ], + [ 8.6399858, 46.833923 ], + [ 8.6399831, 46.8339232 ], + [ 8.6399799, 46.8339233 ], + [ 8.6399766, 46.8339233 ], + [ 8.6393606, 46.8338721 ], + [ 8.6394153, 46.8335594 ], + [ 8.6394224, 46.8335242 ], + [ 8.6395669, 46.8328363 ], + [ 8.6391405, 46.8327598 ], + [ 8.6390813, 46.8327487 ], + [ 8.6389958, 46.8329718 ], + [ 8.6387326, 46.8329242 ], + [ 8.6384695, 46.833474 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSXE002", + "country" : "CHE", + "name" : [ + { + "text" : "LSXE Erstfeld (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSXE Erstfeld (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSXE Erstfeld (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSXE Erstfeld (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swiss Helicopter AG", + "lang" : "de-CH" + }, + { + "text" : "Swiss Helicopter AG", + "lang" : "fr-CH" + }, + { + "text" : "Swiss Helicopter AG", + "lang" : "it-CH" + }, + { + "text" : "Swiss Helicopter AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Basis Erstfeld", + "lang" : "de-CH" + }, + { + "text" : "Basis Erstfeld", + "lang" : "fr-CH" + }, + { + "text" : "Basis Erstfeld", + "lang" : "it-CH" + }, + { + "text" : "Basis Erstfeld", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Markus Lerch", + "lang" : "de-CH" + }, + { + "text" : "Markus Lerch", + "lang" : "fr-CH" + }, + { + "text" : "Markus Lerch", + "lang" : "it-CH" + }, + { + "text" : "Markus Lerch", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swisshelicopter.ch/en/about-us/helicopter-bases/erstfeld", + "email" : "markus.lerch@swisshelicopter.ch", + "phone" : "0041418820050", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P02DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.5879124, 46.6672765 ], + [ 8.587904, 46.6671353 ], + [ 8.5878849, 46.6669946 ], + [ 8.5878552, 46.6668549 ], + [ 8.5878148, 46.6667163 ], + [ 8.587764, 46.6665794 ], + [ 8.5877028, 46.6664446 ], + [ 8.5876315, 46.6663121 ], + [ 8.5875502, 46.6661824 ], + [ 8.5874591, 46.6660558 ], + [ 8.5873586, 46.6659326 ], + [ 8.5872488, 46.6658132 ], + [ 8.5871301, 46.665698 ], + [ 8.5870028, 46.6655872 ], + [ 8.5868672, 46.6654811 ], + [ 8.5867238, 46.66538 ], + [ 8.5865729, 46.6652843 ], + [ 8.5864149, 46.6651941 ], + [ 8.5862503, 46.6651097 ], + [ 8.5860795, 46.6650314 ], + [ 8.5859029, 46.6649594 ], + [ 8.5857211, 46.6648938 ], + [ 8.5855346, 46.6648348 ], + [ 8.5853439, 46.6647827 ], + [ 8.5851495, 46.6647375 ], + [ 8.5849519, 46.6646993 ], + [ 8.5847517, 46.6646684 ], + [ 8.584549299999999, 46.6646446 ], + [ 8.5843455, 46.6646282 ], + [ 8.5841407, 46.6646192 ], + [ 8.583935499999999, 46.6646176 ], + [ 8.5837304, 46.6646233 ], + [ 8.5835261, 46.6646365 ], + [ 8.5833231, 46.664657 ], + [ 8.5831218, 46.6646847 ], + [ 8.582923, 46.6647197 ], + [ 8.5827271, 46.6647618 ], + [ 8.5825347, 46.6648109 ], + [ 8.5823462, 46.6648669 ], + [ 8.5821623, 46.6649295 ], + [ 8.5819834, 46.6649988 ], + [ 8.58181, 46.6650743 ], + [ 8.5816426, 46.665156 ], + [ 8.5814816, 46.6652437 ], + [ 8.5813275, 46.665337 ], + [ 8.5811807, 46.6654357 ], + [ 8.5810416, 46.6655396 ], + [ 8.5809106, 46.6656484 ], + [ 8.5807881, 46.6657617 ], + [ 8.5806743, 46.6658793 ], + [ 8.5805696, 46.6660008 ], + [ 8.5804743, 46.666126 ], + [ 8.5803887, 46.6662543 ], + [ 8.5803129, 46.6663856 ], + [ 8.5802472, 46.6665195 ], + [ 8.5801918, 46.6666555 ], + [ 8.5801468, 46.6667934 ], + [ 8.5801123, 46.6669327 ], + [ 8.5800885, 46.667073 ], + [ 8.5800754, 46.667214 ], + [ 8.580073, 46.6673553 ], + [ 8.5800814, 46.6674964 ], + [ 8.5801004, 46.6676371 ], + [ 8.5801302, 46.6677769 ], + [ 8.5801705, 46.6679154 ], + [ 8.5802213, 46.6680523 ], + [ 8.5802825, 46.6681872 ], + [ 8.5803538, 46.6683197 ], + [ 8.5804351, 46.6684494 ], + [ 8.5805261, 46.668576 ], + [ 8.5806267, 46.6686992 ], + [ 8.5807364, 46.6688186 ], + [ 8.5808551, 46.6689338 ], + [ 8.5809824, 46.6690446 ], + [ 8.581118, 46.6691507 ], + [ 8.5812614, 46.6692518 ], + [ 8.5814123, 46.6693475 ], + [ 8.5815703, 46.6694377 ], + [ 8.581735, 46.6695221 ], + [ 8.5819058, 46.6696004 ], + [ 8.5820823, 46.6696725 ], + [ 8.5822641, 46.669738100000004 ], + [ 8.5824506, 46.669797 ], + [ 8.5826414, 46.6698492 ], + [ 8.5828358, 46.6698944 ], + [ 8.5830334, 46.6699326 ], + [ 8.5832337, 46.6699635 ], + [ 8.583436, 46.6699873 ], + [ 8.5836399, 46.6700036 ], + [ 8.5838447, 46.6700127 ], + [ 8.5840499, 46.6700143 ], + [ 8.584255, 46.6700085 ], + [ 8.5844594, 46.6699954 ], + [ 8.5846624, 46.6699749 ], + [ 8.5848637, 46.6699471 ], + [ 8.5850625, 46.6699122 ], + [ 8.5852584, 46.6698701 ], + [ 8.5854509, 46.669821 ], + [ 8.5856393, 46.669765 ], + [ 8.5858233, 46.6697023 ], + [ 8.5860022, 46.6696331 ], + [ 8.5861756, 46.6695575 ], + [ 8.586343, 46.6694758 ], + [ 8.586504, 46.6693882 ], + [ 8.5866581, 46.6692948 ], + [ 8.5868049, 46.6691961 ], + [ 8.586944, 46.6690922 ], + [ 8.587075, 46.6689834 ], + [ 8.5871975, 46.6688701 ], + [ 8.5873113, 46.6687525 ], + [ 8.587416, 46.668631 ], + [ 8.5875112, 46.6685058 ], + [ 8.5875969, 46.6683774 ], + [ 8.5876726, 46.6682461 ], + [ 8.5877383, 46.6681123 ], + [ 8.5877937, 46.6679762 ], + [ 8.5878387, 46.6678384 ], + [ 8.5878731, 46.6676991 ], + [ 8.5878969, 46.6675588 ], + [ 8.58791, 46.6674178 ], + [ 8.5879124, 46.6672765 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0047", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Göschenen", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Göschenen", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Göschenen", + "lang" : "it-CH" + }, + { + "text" : "Substation Göschenen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5516234, 47.5204267 ], + [ 7.5516344, 47.5204139 ], + [ 7.5515668, 47.5203032 ], + [ 7.5514448, 47.5200936 ], + [ 7.5513456, 47.5199225 ], + [ 7.5512734, 47.519804 ], + [ 7.5511967, 47.5196731 ], + [ 7.5511576, 47.5196073 ], + [ 7.5510859, 47.519554 ], + [ 7.55101, 47.5195008 ], + [ 7.550934, 47.5194535 ], + [ 7.5508928, 47.5194323 ], + [ 7.5508489999999995, 47.5194143 ], + [ 7.5508608, 47.5193751 ], + [ 7.5508083, 47.5193121 ], + [ 7.5507445, 47.5192554 ], + [ 7.5506757, 47.5192028 ], + [ 7.5505679, 47.519148799999996 ], + [ 7.5504692, 47.5191367 ], + [ 7.5503067, 47.5190131 ], + [ 7.5501503, 47.5189164 ], + [ 7.5501138999999995, 47.5188938 ], + [ 7.5500603, 47.5188623 ], + [ 7.5499975, 47.5188254 ], + [ 7.5499416, 47.5187934 ], + [ 7.5498902999999995, 47.5187633 ], + [ 7.5498494, 47.5187395 ], + [ 7.5498072, 47.5187152 ], + [ 7.5497643, 47.5186906 ], + [ 7.5497427, 47.5186773 ], + [ 7.5496052, 47.5188344 ], + [ 7.5495529, 47.5188826 ], + [ 7.5494984, 47.5189233 ], + [ 7.5487321, 47.5193708 ], + [ 7.5480081, 47.5197924 ], + [ 7.5473127, 47.5201963 ], + [ 7.5472856, 47.5202393 ], + [ 7.5476079, 47.5205227 ], + [ 7.5481898, 47.5210344 ], + [ 7.5487739, 47.5215489 ], + [ 7.5492509, 47.5219684 ], + [ 7.5493398, 47.5219698 ], + [ 7.5494041, 47.5220257 ], + [ 7.5497685, 47.5218371 ], + [ 7.5498878, 47.5217756 ], + [ 7.5498693, 47.521759 ], + [ 7.5499539, 47.5217155 ], + [ 7.5499723, 47.5217321 ], + [ 7.5500309, 47.5217019 ], + [ 7.5508234, 47.5212917 ], + [ 7.5508063, 47.5212766 ], + [ 7.5508904999999995, 47.5212328 ], + [ 7.5509078, 47.521248 ], + [ 7.5510251, 47.5211873 ], + [ 7.5509587, 47.5211284 ], + [ 7.5509579, 47.5211144 ], + [ 7.5509581, 47.5210385 ], + [ 7.5509583, 47.5210016 ], + [ 7.5511007, 47.5210188 ], + [ 7.5516234, 47.5204267 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns288", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Ziegelei Oberwil", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Ziegelei Oberwil", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Ziegelei Oberwil", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Ziegelei Oberwil", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.2415546, 47.5409235 ], + [ 8.2415357, 47.5405706 ], + [ 8.2414894, 47.5402189 ], + [ 8.2414161, 47.5398692 ], + [ 8.2413158, 47.5395227 ], + [ 8.2411889, 47.5391802 ], + [ 8.2410356, 47.5388426 ], + [ 8.2408565, 47.5385109 ], + [ 8.2406521, 47.5381861 ], + [ 8.2404228, 47.5378689 ], + [ 8.2401693, 47.5375603 ], + [ 8.2398923, 47.5372611 ], + [ 8.2395925, 47.5369721 ], + [ 8.2392708, 47.5366941 ], + [ 8.2389281, 47.536428 ], + [ 8.2385653, 47.5361743 ], + [ 8.2381834, 47.5359338 ], + [ 8.2377835, 47.5357072 ], + [ 8.2373666, 47.5354951 ], + [ 8.2369338, 47.5352981 ], + [ 8.2364864, 47.5351166 ], + [ 8.2360257, 47.5349513 ], + [ 8.2355527, 47.5348025 ], + [ 8.235069, 47.5346707 ], + [ 8.2345757, 47.5345562 ], + [ 8.2340742, 47.5344593 ], + [ 8.2335659, 47.5343803 ], + [ 8.2330523, 47.5343195 ], + [ 8.2325346, 47.534277 ], + [ 8.2320144, 47.5342528 ], + [ 8.231493, 47.5342471 ], + [ 8.2309719, 47.5342599 ], + [ 8.2304525, 47.5342912 ], + [ 8.2299362, 47.5343408 ], + [ 8.2294244, 47.5344087 ], + [ 8.2289186, 47.5344946 ], + [ 8.2284201, 47.5345983 ], + [ 8.2279304, 47.5347195 ], + [ 8.2274506, 47.5348579 ], + [ 8.2269822, 47.5350131 ], + [ 8.2265265, 47.5351847 ], + [ 8.2260846, 47.5353723 ], + [ 8.2256578, 47.5355752 ], + [ 8.2252473, 47.535793 ], + [ 8.2248542, 47.536025 ], + [ 8.2244796, 47.5362707 ], + [ 8.224124400000001, 47.5365292 ], + [ 8.2237897, 47.5368001 ], + [ 8.2234764, 47.5370824 ], + [ 8.2231853, 47.5373754 ], + [ 8.2229173, 47.5376783 ], + [ 8.2226731, 47.5379903 ], + [ 8.2224533, 47.5383106 ], + [ 8.2222585, 47.5386382 ], + [ 8.2220894, 47.5389722 ], + [ 8.2219462, 47.5393118 ], + [ 8.2218296, 47.539656 ], + [ 8.2217396, 47.5400038 ], + [ 8.2216767, 47.5403544 ], + [ 8.221641, 47.5407067 ], + [ 8.2216325, 47.5410598 ], + [ 8.2216514, 47.5414127 ], + [ 8.2216975, 47.5417645 ], + [ 8.2217707, 47.5421141 ], + [ 8.2218709, 47.5424607 ], + [ 8.2219977, 47.5428033 ], + [ 8.2221508, 47.5431408 ], + [ 8.2223298, 47.5434725 ], + [ 8.2225342, 47.5437974 ], + [ 8.2227634, 47.5441146 ], + [ 8.2230169, 47.5444233 ], + [ 8.2232938, 47.5447225 ], + [ 8.2235935, 47.5450116 ], + [ 8.2239151, 47.5452896 ], + [ 8.2242578, 47.5455558 ], + [ 8.2246206, 47.5458095 ], + [ 8.2250025, 47.54605 ], + [ 8.2254025, 47.5462767 ], + [ 8.2258195, 47.5464888 ], + [ 8.2262523, 47.5466859 ], + [ 8.2266997, 47.5468674 ], + [ 8.2271605, 47.5470328 ], + [ 8.2276336, 47.5471816 ], + [ 8.2281174, 47.5473135 ], + [ 8.2286108, 47.547428 ], + [ 8.2291124, 47.5475249 ], + [ 8.2296208, 47.5476038 ], + [ 8.2301346, 47.5476647 ], + [ 8.2306524, 47.5477072 ], + [ 8.2311727, 47.5477314 ], + [ 8.2316942, 47.5477371 ], + [ 8.2322155, 47.5477243 ], + [ 8.232735, 47.547693 ], + [ 8.2332515, 47.5476434 ], + [ 8.2337633, 47.5475755 ], + [ 8.2342692, 47.5474896 ], + [ 8.2347678, 47.5473859 ], + [ 8.2352577, 47.5472646 ], + [ 8.2357375, 47.5471262 ], + [ 8.236206, 47.5469709 ], + [ 8.2366618, 47.5467992 ], + [ 8.2371038, 47.5466117 ], + [ 8.2375306, 47.5464087 ], + [ 8.2379411, 47.5461909 ], + [ 8.2383343, 47.5459588 ], + [ 8.2387089, 47.5457131 ], + [ 8.2390641, 47.5454545 ], + [ 8.2393987, 47.5451836 ], + [ 8.239712, 47.5449013 ], + [ 8.240003, 47.5446082 ], + [ 8.240271, 47.5443053 ], + [ 8.2405152, 47.5439932 ], + [ 8.2407349, 47.5436729 ], + [ 8.2409295, 47.5433453 ], + [ 8.2410986, 47.5430112 ], + [ 8.2412416, 47.5426716 ], + [ 8.2413581, 47.5423274 ], + [ 8.2414479, 47.5419795 ], + [ 8.2415107, 47.541629 ], + [ 8.2415463, 47.5412766 ], + [ 8.2415546, 47.5409235 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "ENSI005", + "country" : "CHE", + "name" : [ + { + "text" : "ZZL Würenlingen", + "lang" : "de-CH" + }, + { + "text" : "ZZL Würenlingen", + "lang" : "fr-CH" + }, + { + "text" : "ZZL Würenlingen", + "lang" : "it-CH" + }, + { + "text" : "ZZL Würenlingen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "ZWILAG Zwischenlager Würenlingen AG", + "lang" : "de-CH" + }, + { + "text" : "ZWILAG Zwischenlager Würenlingen AG", + "lang" : "fr-CH" + }, + { + "text" : "ZWILAG Zwischenlager Würenlingen AG", + "lang" : "it-CH" + }, + { + "text" : "ZWILAG Zwischenlager Würenlingen AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Sicherung", + "lang" : "de-CH" + }, + { + "text" : "Sicherung", + "lang" : "fr-CH" + }, + { + "text" : "Sicherung", + "lang" : "it-CH" + }, + { + "text" : "Sicherung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Sicherungsbeauftragte", + "lang" : "de-CH" + }, + { + "text" : "Sicherungsbeauftragte", + "lang" : "fr-CH" + }, + { + "text" : "Sicherungsbeauftragte", + "lang" : "it-CH" + }, + { + "text" : "Sicherungsbeauftragte", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.zwilag.ch", + "email" : "drohne@zwilag.ch", + "phone" : "0041562974711", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8977157, 46.3010755 ], + [ 7.8976068999999995, 46.2987219 ], + [ 7.8973206, 46.2963755 ], + [ 7.8968576, 46.2940427 ], + [ 7.896219, 46.2917299 ], + [ 7.8954069, 46.2894435 ], + [ 7.8944232, 46.2871896 ], + [ 7.8932709, 46.2849745 ], + [ 7.891953, 46.2828042 ], + [ 7.8904733, 46.2806847 ], + [ 7.8888357, 46.2786217 ], + [ 7.8870447, 46.276621 ], + [ 7.8851053, 46.274688 ], + [ 7.8830229, 46.272828 ], + [ 7.880803, 46.2710461 ], + [ 7.8784519, 46.2693471 ], + [ 7.8759759, 46.2677357 ], + [ 7.8733818, 46.2662164 ], + [ 7.8706768, 46.2647932 ], + [ 7.8678682, 46.2634701 ], + [ 7.8649638, 46.2622507 ], + [ 7.8619714, 46.2611383 ], + [ 7.8588994, 46.260136 ], + [ 7.8557559999999995, 46.2592464 ], + [ 7.8525499, 46.2584721 ], + [ 7.8492899, 46.2578152 ], + [ 7.8459848, 46.2572774 ], + [ 7.8426438, 46.2568603 ], + [ 7.8392759, 46.2565649 ], + [ 7.8358903, 46.256392 ], + [ 7.8324964, 46.2563422 ], + [ 7.8291033, 46.2564156 ], + [ 7.8257204, 46.256612 ], + [ 7.8223569, 46.2569308 ], + [ 7.8190221, 46.2573712 ], + [ 7.8157249, 46.2579319 ], + [ 7.8124745, 46.2586115 ], + [ 7.8092798, 46.259408 ], + [ 7.8061494, 46.2603194 ], + [ 7.8030919999999995, 46.261343 ], + [ 7.8001159, 46.2624761 ], + [ 7.7972292, 46.2637157 ], + [ 7.7944399, 46.2650583 ], + [ 7.7917556, 46.2665002 ], + [ 7.7891836, 46.2680375 ], + [ 7.786731, 46.269666 ], + [ 7.7844045, 46.2713812 ], + [ 7.7822105, 46.2731785 ], + [ 7.780155, 46.2750529 ], + [ 7.7782437, 46.2769993 ], + [ 7.7764818, 46.2790123 ], + [ 7.7748741, 46.2810866 ], + [ 7.773425, 46.2832162 ], + [ 7.7721386, 46.2853956 ], + [ 7.7710183, 46.2876186 ], + [ 7.7700674, 46.2898792 ], + [ 7.7692882999999995, 46.2921712 ], + [ 7.7686833, 46.2944884 ], + [ 7.768254, 46.2968243 ], + [ 7.7680016, 46.2991725 ], + [ 7.7679269, 46.3015267 ], + [ 7.7680301, 46.3038804 ], + [ 7.7683109, 46.3062272 ], + [ 7.7687685, 46.3085605 ], + [ 7.7694018, 46.310874 ], + [ 7.7702089999999995, 46.3131614 ], + [ 7.7711879, 46.3154164 ], + [ 7.7723359, 46.3176327 ], + [ 7.7736499, 46.3198044 ], + [ 7.7751262, 46.3219254 ], + [ 7.7767608, 46.32399 ], + [ 7.7785492, 46.3259925 ], + [ 7.7804866, 46.3279273 ], + [ 7.7825676999999995, 46.3297892 ], + [ 7.7847867, 46.3315731 ], + [ 7.7871376, 46.333274 ], + [ 7.789614, 46.3348873 ], + [ 7.792209, 46.3364086 ], + [ 7.7949155, 46.3378336 ], + [ 7.7977261, 46.3391585 ], + [ 7.8006332, 46.3403797 ], + [ 7.8036286, 46.3414937 ], + [ 7.8067043, 46.3424975 ], + [ 7.8098516, 46.3433884 ], + [ 7.8130621, 46.3441639 ], + [ 7.8163269, 46.3448219 ], + [ 7.819637, 46.3453606 ], + [ 7.8229833, 46.3457784 ], + [ 7.8263567, 46.3460743 ], + [ 7.8297478, 46.3462474 ], + [ 7.8331474, 46.3462973 ], + [ 7.8365461, 46.3462238 ], + [ 7.8399345, 46.3460271 ], + [ 7.8433034, 46.3457078 ], + [ 7.8466435, 46.3452667 ], + [ 7.8499456, 46.344705 ], + [ 7.8532007, 46.3440244 ], + [ 7.8563998, 46.3432266 ], + [ 7.8595341, 46.3423139 ], + [ 7.862595, 46.3412887 ], + [ 7.8655741, 46.3401539 ], + [ 7.8684633, 46.3389126 ], + [ 7.8712546, 46.3375682 ], + [ 7.8739403, 46.3361244 ], + [ 7.8765131, 46.3345852 ], + [ 7.8789659, 46.3329547 ], + [ 7.881292, 46.3312376 ], + [ 7.8834851, 46.3294384 ], + [ 7.8855391, 46.3275621 ], + [ 7.8874483, 46.3256139 ], + [ 7.8892077, 46.3235991 ], + [ 7.8908123, 46.3215232 ], + [ 7.8922578, 46.319392 ], + [ 7.8935402, 46.3172113 ], + [ 7.894656, 46.3149871 ], + [ 7.8956022, 46.3127254 ], + [ 7.8963763, 46.3104326 ], + [ 7.896976, 46.3081148 ], + [ 7.8973998, 46.3057784 ], + [ 7.8976466, 46.3034298 ], + [ 7.8977157, 46.3010755 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSER001", + "country" : "CHE", + "name" : [ + { + "text" : "LSER Raron", + "lang" : "de-CH" + }, + { + "text" : "LSER Raron", + "lang" : "fr-CH" + }, + { + "text" : "LSER Raron", + "lang" : "it-CH" + }, + { + "text" : "LSER Raron", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Air Zermatt AG", + "lang" : "de-CH" + }, + { + "text" : "Air Zermatt AG", + "lang" : "fr-CH" + }, + { + "text" : "Air Zermatt AG", + "lang" : "it-CH" + }, + { + "text" : "Air Zermatt AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.air-zermatt.ch/en/air-zermatt/contact", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.4496876, 47.3682061 ], + [ 8.4496795, 47.3680649 ], + [ 8.4496605, 47.3679242 ], + [ 8.4496307, 47.3677844 ], + [ 8.4495902, 47.3676459 ], + [ 8.449539, 47.3675089 ], + [ 8.4494774, 47.367374 ], + [ 8.4494055, 47.3672415 ], + [ 8.4493234, 47.3671117 ], + [ 8.4492315, 47.366985 ], + [ 8.449129899999999, 47.3668617 ], + [ 8.449019, 47.3667422 ], + [ 8.448899, 47.3666268 ], + [ 8.4487704, 47.3665159 ], + [ 8.4486333, 47.3664096 ], + [ 8.4484882, 47.3663084 ], + [ 8.4483356, 47.3662125 ], + [ 8.4481757, 47.3661222 ], + [ 8.4480092, 47.3660376 ], + [ 8.4478363, 47.3659591 ], + [ 8.4476576, 47.3658869 ], + [ 8.4474736, 47.3658211 ], + [ 8.4472848, 47.3657619 ], + [ 8.4470917, 47.3657095 ], + [ 8.4468949, 47.3656641 ], + [ 8.4466948, 47.3656257 ], + [ 8.446492, 47.3655945 ], + [ 8.4462871, 47.3655705 ], + [ 8.4460806, 47.3655539 ], + [ 8.4458731, 47.3655446 ], + [ 8.4456652, 47.3655427 ], + [ 8.4454575, 47.3655483 ], + [ 8.4452504, 47.3655611 ], + [ 8.4450446, 47.3655814 ], + [ 8.4448407, 47.3656089 ], + [ 8.4446392, 47.3656436 ], + [ 8.4444406, 47.3656855 ], + [ 8.4442455, 47.3657344 ], + [ 8.4440544, 47.3657901 ], + [ 8.4438679, 47.3658525 ], + [ 8.4436865, 47.3659215 ], + [ 8.4435106, 47.3659969 ], + [ 8.4433408, 47.3660784 ], + [ 8.443177500000001, 47.3661658 ], + [ 8.4430211, 47.3662589 ], + [ 8.4428721, 47.3663575 ], + [ 8.442731, 47.3664612 ], + [ 8.442598, 47.3665698 ], + [ 8.4424735, 47.3666829 ], + [ 8.4423579, 47.3668003 ], + [ 8.4422516, 47.3669217 ], + [ 8.4421547, 47.3670467 ], + [ 8.4420676, 47.367175 ], + [ 8.4419905, 47.3673062 ], + [ 8.441923599999999, 47.3674399 ], + [ 8.4418671, 47.3675759 ], + [ 8.4418212, 47.3677137 ], + [ 8.4417859, 47.3678529 ], + [ 8.4417614, 47.3679932 ], + [ 8.4417478, 47.3681341 ], + [ 8.441745, 47.3682754 ], + [ 8.4417531, 47.3684165 ], + [ 8.4417721, 47.3685572 ], + [ 8.4418018, 47.368697 ], + [ 8.4418423, 47.3688356 ], + [ 8.4418935, 47.3689725 ], + [ 8.4419551, 47.3691074 ], + [ 8.442027, 47.36924 ], + [ 8.442109, 47.3693698 ], + [ 8.4422009, 47.3694965 ], + [ 8.4423025, 47.3696198 ], + [ 8.4424134, 47.3697393 ], + [ 8.4425334, 47.3698547 ], + [ 8.442662, 47.3699656 ], + [ 8.4427991, 47.3700719 ], + [ 8.4429442, 47.3701731 ], + [ 8.4430968, 47.370269 ], + [ 8.4432566, 47.3703594 ], + [ 8.4434232, 47.3704439 ], + [ 8.4435961, 47.3705224 ], + [ 8.4437748, 47.3705947 ], + [ 8.4439588, 47.3706605 ], + [ 8.4441476, 47.3707197 ], + [ 8.4443407, 47.370772 ], + [ 8.4445376, 47.3708175 ], + [ 8.4447377, 47.3708559 ], + [ 8.4449405, 47.3708871 ], + [ 8.4451454, 47.370911 ], + [ 8.4453519, 47.3709277 ], + [ 8.4455594, 47.3709369 ], + [ 8.4457674, 47.3709388 ], + [ 8.4459751, 47.3709333 ], + [ 8.446182199999999, 47.3709204 ], + [ 8.446388, 47.3709002 ], + [ 8.446592, 47.3708727 ], + [ 8.4467935, 47.3708379 ], + [ 8.4469921, 47.3707961 ], + [ 8.4471872, 47.3707472 ], + [ 8.4473783, 47.3706915 ], + [ 8.4475648, 47.370629 ], + [ 8.4477463, 47.37056 ], + [ 8.4479222, 47.3704847 ], + [ 8.448092, 47.3704031 ], + [ 8.4482553, 47.3703157 ], + [ 8.4484117, 47.3702226 ], + [ 8.4485607, 47.370124 ], + [ 8.4487018, 47.3700203 ], + [ 8.4488348, 47.3699117 ], + [ 8.4489593, 47.3697986 ], + [ 8.4490749, 47.3696811 ], + [ 8.4491812, 47.3695597 ], + [ 8.449278, 47.3694347 ], + [ 8.4493651, 47.3693064 ], + [ 8.4494422, 47.3691753 ], + [ 8.4495091, 47.3690415 ], + [ 8.4495656, 47.3689055 ], + [ 8.4496115, 47.3687678 ], + [ 8.4496468, 47.3686285 ], + [ 8.4496712, 47.3684883 ], + [ 8.4496849, 47.3683473 ], + [ 8.4496876, 47.3682061 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "MZU0001", + "country" : "CHE", + "name" : [ + { + "text" : "Massnahmenzentrum Uitikon", + "lang" : "de-CH" + }, + { + "text" : "Massnahmenzentrum Uitikon", + "lang" : "fr-CH" + }, + { + "text" : "Massnahmenzentrum Uitikon", + "lang" : "it-CH" + }, + { + "text" : "Massnahmenzentrum Uitikon", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "de-CH" + }, + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "fr-CH" + }, + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "it-CH" + }, + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "de-CH" + }, + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "fr-CH" + }, + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "it-CH" + }, + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Reno Berner", + "lang" : "de-CH" + }, + { + "text" : "Reno Berner", + "lang" : "fr-CH" + }, + { + "text" : "Reno Berner", + "lang" : "it-CH" + }, + { + "text" : "Reno Berner", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.zh.ch/de/direktion-der-justiz-und-des-innern/justizvollzug-wiedereingliederung.html", + "email" : "sicherheit-juwe@ji.zh.ch", + "phone" : "0041432583400", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT12H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.0525982, 46.3120911 ], + [ 9.0556727, 46.3059644 ], + [ 9.0567042, 46.3037208 ], + [ 9.0575649, 46.3014428 ], + [ 9.0582522, 46.2991367 ], + [ 9.0587645, 46.2968088 ], + [ 9.0591002, 46.2944656 ], + [ 9.0592586, 46.2921133 ], + [ 9.0592391, 46.2897586 ], + [ 9.0590419, 46.2874078 ], + [ 9.0586675, 46.2850673 ], + [ 9.0581171, 46.2827437 ], + [ 9.057392, 46.2804432 ], + [ 9.0564943, 46.2781722 ], + [ 9.0554265, 46.2759368 ], + [ 9.0541916, 46.2737433 ], + [ 9.0527929, 46.2715975 ], + [ 9.0512343, 46.2695054 ], + [ 9.04952, 46.2674728 ], + [ 9.0476549, 46.2655051 ], + [ 9.045644, 46.2636078 ], + [ 9.0434928, 46.261786 ], + [ 9.0412072, 46.2600448 ], + [ 9.0387935, 46.2583889 ], + [ 9.0362583, 46.2568228 ], + [ 9.0336086, 46.2553508 ], + [ 9.0308516, 46.253977 ], + [ 9.0279949, 46.2527051 ], + [ 9.0250462, 46.2515385 ], + [ 9.0220137, 46.2504805 ], + [ 9.0189057, 46.249534 ], + [ 9.0157306, 46.2487016 ], + [ 9.0124971, 46.2479855 ], + [ 9.0092141, 46.2473877 ], + [ 9.0058906, 46.2469098 ], + [ 9.0025357, 46.2465531 ], + [ 8.9991584, 46.2463186 ], + [ 8.9957682, 46.246207 ], + [ 8.9923741, 46.2462185 ], + [ 8.9889856, 46.2463532 ], + [ 8.9856118, 46.2466106 ], + [ 8.9822621, 46.2469901 ], + [ 8.9789455, 46.2474905 ], + [ 8.9756711, 46.2481106 ], + [ 8.9724479, 46.2488487 ], + [ 8.9692847, 46.2497027 ], + [ 8.9661902, 46.2506703 ], + [ 8.9631727, 46.2517488 ], + [ 8.9602407, 46.2529353 ], + [ 8.957402, 46.2542266 ], + [ 8.9546646, 46.2556191 ], + [ 8.9520357, 46.257109 ], + [ 8.9495228, 46.2586923 ], + [ 8.9471326, 46.2603645 ], + [ 8.9448718, 46.2621212 ], + [ 8.9427464, 46.2639575 ], + [ 8.9407623, 46.2658684 ], + [ 8.9389251, 46.2678487 ], + [ 8.9372397, 46.2698929 ], + [ 8.9357107, 46.2719954 ], + [ 8.9343424, 46.2741506 ], + [ 8.9331385, 46.2763524 ], + [ 8.9300519, 46.2824758 ], + [ 8.9290155, 46.2847182 ], + [ 8.9281498, 46.2869952 ], + [ 8.927457, 46.2893005 ], + [ 8.9269392, 46.2916278 ], + [ 8.9265978, 46.2939707 ], + [ 8.9264337, 46.2963227 ], + [ 8.9264474, 46.2986775 ], + [ 8.9266389, 46.3010285 ], + [ 8.9270077, 46.3033694 ], + [ 8.9275528, 46.3056937 ], + [ 8.9282727, 46.307995 ], + [ 8.9291655, 46.310267 ], + [ 8.9302288, 46.3125036 ], + [ 8.9314596, 46.3146985 ], + [ 8.9328546, 46.3168457 ], + [ 8.93441, 46.3189394 ], + [ 8.9361215, 46.3209738 ], + [ 8.9379845, 46.3229433 ], + [ 8.9399939, 46.3248426 ], + [ 8.9421441, 46.3266663 ], + [ 8.9444293, 46.3284095 ], + [ 8.9468433, 46.3300675 ], + [ 8.9493793, 46.3316356 ], + [ 8.9520304, 46.3331095 ], + [ 8.9547894, 46.3344853 ], + [ 8.9576488, 46.3357591 ], + [ 8.9606006, 46.3369274 ], + [ 8.9636367, 46.337987 ], + [ 8.9667488, 46.338935 ], + [ 8.9699285, 46.3397688 ], + [ 8.9731668, 46.3404862 ], + [ 8.976455, 46.341085 ], + [ 8.979784, 46.3415638 ], + [ 8.9831447, 46.3419211 ], + [ 8.9865278, 46.3421561 ], + [ 8.989924, 46.342268 ], + [ 8.9933241, 46.3422565 ], + [ 8.9967186, 46.3421217 ], + [ 9.0000982, 46.341864 ], + [ 9.0034537, 46.341484 ], + [ 9.0067759, 46.3409828 ], + [ 9.0100555, 46.3403618 ], + [ 9.0132836, 46.3396227 ], + [ 9.0164513, 46.3387675 ], + [ 9.01955, 46.3377985 ], + [ 9.0225711, 46.3367185 ], + [ 9.0255063, 46.3355303 ], + [ 9.0283476, 46.3342373 ], + [ 9.0310871, 46.332843 ], + [ 9.0337174, 46.3313513 ], + [ 9.0362313, 46.3297662 ], + [ 9.0386218, 46.328092 ], + [ 9.0408824, 46.3263335 ], + [ 9.0430069, 46.3244953 ], + [ 9.0449894, 46.3225826 ], + [ 9.0468247, 46.3206006 ], + [ 9.0485076, 46.3185548 ], + [ 9.0500335, 46.3164507 ], + [ 9.0513983, 46.3142942 ], + [ 9.0525982, 46.3120911 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSPR001", + "country" : "CHE", + "name" : [ + { + "text" : "LSPR Lodrino", + "lang" : "de-CH" + }, + { + "text" : "LSPR Lodrino", + "lang" : "fr-CH" + }, + { + "text" : "LSPR Lodrino", + "lang" : "it-CH" + }, + { + "text" : "LSPR Lodrino", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Riviera Airport", + "lang" : "de-CH" + }, + { + "text" : "Riviera Airport", + "lang" : "fr-CH" + }, + { + "text" : "Riviera Airport", + "lang" : "it-CH" + }, + { + "text" : "Riviera Airport", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleiter", + "lang" : "de-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "fr-CH" + }, + { + "text" : "Capo d'aerodromo", + "lang" : "it-CH" + }, + { + "text" : "Capo d'aerodromo", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.riviera-airport.swiss/drones/", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.1330815, 46.7992012 ], + [ 7.129393, 46.8041181 ], + [ 7.1304381, 46.8046483 ], + [ 7.1317212, 46.8053968 ], + [ 7.1345922, 46.8071409 ], + [ 7.1409091, 46.8061543 ], + [ 7.1410428, 46.8057451 ], + [ 7.1412582, 46.8052683 ], + [ 7.1413041, 46.8047906 ], + [ 7.1415004, 46.8045661 ], + [ 7.14182, 46.8043881 ], + [ 7.1420437, 46.8042433 ], + [ 7.1422401, 46.8040998 ], + [ 7.1424532, 46.8038767 ], + [ 7.1428079, 46.803366 ], + [ 7.1443185, 46.7996439 ], + [ 7.1443871, 46.7995119 ], + [ 7.1440605999999995, 46.799323 ], + [ 7.1438824, 46.7992836 ], + [ 7.1430295, 46.7990608 ], + [ 7.1428155, 46.7989429 ], + [ 7.1428201, 46.7987916 ], + [ 7.1430382, 46.798609 ], + [ 7.1415658, 46.7984927 ], + [ 7.1401268, 46.7984875 ], + [ 7.13923, 46.7985129 ], + [ 7.1377006, 46.7985982 ], + [ 7.135289, 46.7988517 ], + [ 7.1335514, 46.799058 ], + [ 7.1331875, 46.7991289 ], + [ 7.1330815, 46.7992012 ] + ] + ], + "layer" : { + "upper" : 300, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "FR007", + "country" : "CHE", + "name" : [ + { + "text" : "HFR Villars-sur-Glâne", + "lang" : "de-CH" + }, + { + "text" : "HFR Villars-sur-Glâne", + "lang" : "fr-CH" + }, + { + "text" : "HFR Villars-sur-Glâne", + "lang" : "it-CH" + }, + { + "text" : "HFR Villars-sur-Glâne", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Freiburger Spital (HFR)", + "lang" : "de-CH" + }, + { + "text" : "Hôpital fribourgeois (HFR)", + "lang" : "fr-CH" + }, + { + "text" : "Hôpital fribourgeois (HFR)", + "lang" : "it-CH" + }, + { + "text" : "Hôpital fribourgeois (HFR)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Die Generaldirektion", + "lang" : "de-CH" + }, + { + "text" : "La direction générale", + "lang" : "fr-CH" + }, + { + "text" : "La direction générale", + "lang" : "it-CH" + }, + { + "text" : "La direction générale", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Sébastien Ruffieux, secrétaire général", + "lang" : "de-CH" + }, + { + "text" : "Sébastien Ruffieux, secrétaire général", + "lang" : "fr-CH" + }, + { + "text" : "Sébastien Ruffieux, secrétaire général", + "lang" : "it-CH" + }, + { + "text" : "Sébastien Ruffieux, secrétaire général", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.fr.ch/police-et-securite/criminalite-ordre-public-et-circulation/drones-legislation-et-demandes-de-derogation", + "email" : "sg@h-fr.ch", + "phone" : "0041263060110", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.532595, 47.4898795 ], + [ 9.5325702, 47.4898989 ], + [ 9.5397392, 47.4905373 ], + [ 9.553973, 47.502286 ], + [ 9.5563689, 47.5029793 ], + [ 9.5606996, 47.5042323 ], + [ 9.5610101, 47.5043221 ], + [ 9.5615857, 47.5044886 ], + [ 9.5618261, 47.5045581 ], + [ 9.5617797, 47.5041642 ], + [ 9.5617628, 47.5040205 ], + [ 9.5617403, 47.5038294 ], + [ 9.5617192, 47.5036502 ], + [ 9.5617019, 47.5035031 ], + [ 9.5616823, 47.5033361 ], + [ 9.5616685, 47.5032194 ], + [ 9.5616278, 47.502873 ], + [ 9.5616071, 47.5026977 ], + [ 9.5615952, 47.5025958 ], + [ 9.5615722, 47.5024011 ], + [ 9.5615343, 47.5020785 ], + [ 9.5615091, 47.5018643 ], + [ 9.5614832, 47.5016449 ], + [ 9.5614583, 47.5014328 ], + [ 9.5614393, 47.5012713 ], + [ 9.5614192, 47.501101 ], + [ 9.5614066, 47.5009937 ], + [ 9.5613867, 47.5008245 ], + [ 9.5613672, 47.5006587 ], + [ 9.5613496, 47.5005092 ], + [ 9.5613222, 47.5002769 ], + [ 9.561307, 47.5001473 ], + [ 9.561287, 47.4999685 ], + [ 9.561261, 47.4996007 ], + [ 9.5612568, 47.4994637 ], + [ 9.5612596, 47.4991023 ], + [ 9.5612688, 47.4989203 ], + [ 9.5612927, 47.4986433 ], + [ 9.5613166, 47.4984497 ], + [ 9.5613377, 47.4983086 ], + [ 9.5613661, 47.4981456 ], + [ 9.5613969, 47.4979909 ], + [ 9.5614292, 47.4978467 ], + [ 9.5614644, 47.4977041 ], + [ 9.5615047, 47.4975549 ], + [ 9.5615561, 47.4973822 ], + [ 9.5616029, 47.4972376 ], + [ 9.5616705, 47.4970456 ], + [ 9.5617279, 47.4968951 ], + [ 9.5617825, 47.4967605 ], + [ 9.5618484, 47.4966077 ], + [ 9.561916, 47.4964601 ], + [ 9.5620019, 47.4962839 ], + [ 9.5620744, 47.4961434 ], + [ 9.5622537, 47.4958232 ], + [ 9.5623401, 47.4956803 ], + [ 9.5625753, 47.4953214 ], + [ 9.5630107, 47.494745 ], + [ 9.5631977, 47.494524 ], + [ 9.563449, 47.4942472 ], + [ 9.5636809, 47.4940093 ], + [ 9.5640144, 47.4936924 ], + [ 9.5643036, 47.4934384 ], + [ 9.5647284, 47.4930951 ], + [ 9.5650737, 47.4928387 ], + [ 9.5655268, 47.4925292 ], + [ 9.5659628, 47.4922566 ], + [ 9.5665489, 47.4919244 ], + [ 9.5671685, 47.4915896 ], + [ 9.5674513, 47.4914368 ], + [ 9.567862, 47.4912148 ], + [ 9.5683769, 47.4909365 ], + [ 9.5692514, 47.4904639 ], + [ 9.5696385, 47.4902547 ], + [ 9.5699732, 47.4900738 ], + [ 9.570611, 47.4897291 ], + [ 9.5709824, 47.4895283 ], + [ 9.5713802, 47.4893133 ], + [ 9.5720031, 47.4889767 ], + [ 9.5726309, 47.4886373 ], + [ 9.5734351, 47.4882027 ], + [ 9.5743133, 47.487728 ], + [ 9.5748914, 47.4874155 ], + [ 9.575686900000001, 47.4869855 ], + [ 9.576395, 47.4866027 ], + [ 9.5766774, 47.4864501 ], + [ 9.5772154, 47.4861592 ], + [ 9.5778638, 47.4858086 ], + [ 9.5784253, 47.4855049 ], + [ 9.5790151, 47.4851828 ], + [ 9.5799625, 47.4846017 ], + [ 9.5807328, 47.4840524 ], + [ 9.5814887, 47.4834284 ], + [ 9.5821768, 47.4827586 ], + [ 9.5824828, 47.4824218 ], + [ 9.5827851, 47.4820592 ], + [ 9.5829959, 47.4817854 ], + [ 9.5831562, 47.4815632 ], + [ 9.583231, 47.4814549 ], + [ 9.5833551, 47.4812681 ], + [ 9.5834668, 47.4810915 ], + [ 9.5835496, 47.4809585 ], + [ 9.583695, 47.480725 ], + [ 9.5838311, 47.4805065 ], + [ 9.5839778, 47.4802709 ], + [ 9.5840694, 47.4801239 ], + [ 9.5841797, 47.4799467 ], + [ 9.584276299999999, 47.4797916 ], + [ 9.5843812, 47.4796231 ], + [ 9.5845191, 47.4794016 ], + [ 9.5847773, 47.4789871 ], + [ 9.5847962, 47.4789567 ], + [ 9.5848116, 47.4789319 ], + [ 9.5848332, 47.4788973 ], + [ 9.5848644, 47.4788472 ], + [ 9.5848908, 47.4788048 ], + [ 9.5849059, 47.4787805 ], + [ 9.584921, 47.4787563 ], + [ 9.5849577, 47.4786973 ], + [ 9.5849998, 47.4786298 ], + [ 9.5850513, 47.4785471 ], + [ 9.5851405, 47.4784038 ], + [ 9.5851702, 47.4783561 ], + [ 9.5852747, 47.4781883 ], + [ 9.5853285, 47.4781019 ], + [ 9.585354, 47.478061 ], + [ 9.5853654, 47.4780426 ], + [ 9.5856082, 47.4776527 ], + [ 9.5853682, 47.477583 ], + [ 9.5852356, 47.4775373 ], + [ 9.5851087, 47.4776863 ], + [ 9.5849397, 47.4778685 ], + [ 9.5844398, 47.4783276 ], + [ 9.5841411, 47.478597 ], + [ 9.5839133, 47.4787757 ], + [ 9.5835986, 47.4789889 ], + [ 9.5832362, 47.4792142 ], + [ 9.5829042, 47.479395 ], + [ 9.5829973, 47.4795387 ], + [ 9.5829821, 47.4796513 ], + [ 9.5829313, 47.4798175 ], + [ 9.5828649, 47.4799583 ], + [ 9.582683, 47.4801496 ], + [ 9.5825468, 47.4803052 ], + [ 9.5823319, 47.480510699999996 ], + [ 9.5818116, 47.4810022 ], + [ 9.5813845, 47.4814009 ], + [ 9.5811254, 47.4816315 ], + [ 9.5807897, 47.4819047 ], + [ 9.5807074, 47.4819933 ], + [ 9.5806276, 47.4820681 ], + [ 9.5805614, 47.4820401 ], + [ 9.5804848, 47.4819941 ], + [ 9.5804243, 47.4819614 ], + [ 9.580411, 47.4819558 ], + [ 9.580388, 47.4819504 ], + [ 9.580368, 47.4819486 ], + [ 9.5803482, 47.4819499 ], + [ 9.580328399999999, 47.4819533 ], + [ 9.5803033, 47.4819639 ], + [ 9.5802865, 47.4819771 ], + [ 9.5802739, 47.4819908 ], + [ 9.5797007, 47.4827573 ], + [ 9.5795867, 47.4829066 ], + [ 9.5793722, 47.4831488 ], + [ 9.579138, 47.4833298 ], + [ 9.5784775, 47.4838357 ], + [ 9.5783651, 47.4839284 ], + [ 9.5782463, 47.4840389 ], + [ 9.5781663, 47.48411 ], + [ 9.5781275, 47.4841403 ], + [ 9.5779756, 47.4842438 ], + [ 9.5775579, 47.484564 ], + [ 9.5770022, 47.4849033 ], + [ 9.5768363, 47.4849915 ], + [ 9.5764009, 47.4852129 ], + [ 9.5759697, 47.4854223 ], + [ 9.5758924, 47.4854606 ], + [ 9.57576, 47.4855276 ], + [ 9.575535, 47.4856376 ], + [ 9.5754304, 47.4856842 ], + [ 9.5753472, 47.4857215 ], + [ 9.5746273, 47.4860345 ], + [ 9.5745147, 47.4860834 ], + [ 9.5743779, 47.4861444 ], + [ 9.5741971, 47.4862252 ], + [ 9.5739144, 47.4863555 ], + [ 9.5737605, 47.4864274 ], + [ 9.5736958, 47.4864575 ], + [ 9.5734453, 47.4865749 ], + [ 9.5733239, 47.4866317 ], + [ 9.573229, 47.4866761 ], + [ 9.5731119, 47.4867313 ], + [ 9.5728848, 47.4868457 ], + [ 9.5726635, 47.4869568 ], + [ 9.572503, 47.4870375 ], + [ 9.5723969, 47.4871039 ], + [ 9.5723228, 47.4870973 ], + [ 9.572288, 47.4870496 ], + [ 9.5720739, 47.4871534 ], + [ 9.5718052, 47.4872872 ], + [ 9.5716136, 47.48738 ], + [ 9.5714282, 47.4874721 ], + [ 9.5712035, 47.487599 ], + [ 9.5711578, 47.4876283 ], + [ 9.5711037, 47.4876621 ], + [ 9.5710006, 47.4877289 ], + [ 9.5709311, 47.4877844 ], + [ 9.5708722, 47.4878241 ], + [ 9.5708299, 47.487848 ], + [ 9.5707398, 47.4878937 ], + [ 9.5705152, 47.4879853 ], + [ 9.5703706, 47.4880531 ], + [ 9.5701861, 47.4881459 ], + [ 9.5700615, 47.488222 ], + [ 9.5702488, 47.4883566 ], + [ 9.5702644, 47.488389 ], + [ 9.5702682, 47.4884399 ], + [ 9.5702904, 47.4884608 ], + [ 9.5704342, 47.4885599 ], + [ 9.570544, 47.4886528 ], + [ 9.5709207, 47.488982 ], + [ 9.5710858, 47.4891231 ], + [ 9.5711013, 47.4891386 ], + [ 9.5711083, 47.4891566 ], + [ 9.571106499999999, 47.4891738 ], + [ 9.5710922, 47.4892031 ], + [ 9.5710693, 47.4892299 ], + [ 9.5710579, 47.4892398 ], + [ 9.5709964, 47.4892762 ], + [ 9.5707285, 47.4894222 ], + [ 9.567955, 47.4909157 ], + [ 9.5679042, 47.4909434 ], + [ 9.5678608, 47.4909607 ], + [ 9.5678204, 47.490969 ], + [ 9.5677986, 47.4909687 ], + [ 9.5677517, 47.4909563 ], + [ 9.5676952, 47.490917 ], + [ 9.567537699999999, 47.4907781 ], + [ 9.5674901, 47.4907416 ], + [ 9.5674266, 47.4907153 ], + [ 9.567376, 47.490707 ], + [ 9.5673589, 47.4907081 ], + [ 9.5672995, 47.490727 ], + [ 9.5670757, 47.4908197 ], + [ 9.5670178, 47.49085 ], + [ 9.5669897, 47.490869 ], + [ 9.5668984, 47.4909288 ], + [ 9.5668369, 47.4909733 ], + [ 9.5667916, 47.4910189 ], + [ 9.566625, 47.4911988 ], + [ 9.5665716, 47.4912437 ], + [ 9.5664236, 47.4913396 ], + [ 9.5663324, 47.4914291 ], + [ 9.5659046, 47.4917346 ], + [ 9.565764099999999, 47.4918172 ], + [ 9.5656549, 47.4918922 ], + [ 9.5655732, 47.4919291 ], + [ 9.5655215, 47.4919664 ], + [ 9.5652825, 47.4921332 ], + [ 9.5650456, 47.492306 ], + [ 9.5649166, 47.4923943 ], + [ 9.5648115, 47.4924791 ], + [ 9.5647064, 47.4925639 ], + [ 9.56462, 47.4926371 ], + [ 9.5645406, 47.4927042 ], + [ 9.5645398, 47.4927394 ], + [ 9.5642388, 47.4930029 ], + [ 9.5638705, 47.4933254 ], + [ 9.5636043, 47.493225 ], + [ 9.5635701, 47.4932228 ], + [ 9.5635525, 47.4932274 ], + [ 9.5633581, 47.493482 ], + [ 9.5631158, 47.493765 ], + [ 9.5629678, 47.4939669 ], + [ 9.5628056, 47.4941801 ], + [ 9.5624365, 47.4946771 ], + [ 9.5623112, 47.4948788 ], + [ 9.5621963, 47.4950756 ], + [ 9.5620261, 47.4954427 ], + [ 9.5617751, 47.4959788 ], + [ 9.5616067, 47.4963117 ], + [ 9.5615372, 47.4966239 ], + [ 9.5614924, 47.496731 ], + [ 9.5614476, 47.4968382 ], + [ 9.5613535, 47.4970415 ], + [ 9.5613261, 47.4970921 ], + [ 9.5613109, 47.4971164 ], + [ 9.5611731, 47.4972542 ], + [ 9.561119, 47.4973436 ], + [ 9.5610922, 47.4974022 ], + [ 9.5610483, 47.4975019 ], + [ 9.5609994, 47.4976131 ], + [ 9.5609196, 47.4977816 ], + [ 9.560861, 47.4978834 ], + [ 9.5611161, 47.4981479 ], + [ 9.5611413, 47.4982459 ], + [ 9.5608036, 47.4982185 ], + [ 9.5606265, 47.4984834 ], + [ 9.5605891, 47.4987805 ], + [ 9.560456, 47.498772 ], + [ 9.5603153, 47.4987658 ], + [ 9.560211, 47.4988567 ], + [ 9.5601092, 47.4989356 ], + [ 9.559751, 47.4991641 ], + [ 9.5596902, 47.4992091 ], + [ 9.5592127, 47.499552 ], + [ 9.5590287, 47.4996768 ], + [ 9.5587915, 47.4998397 ], + [ 9.558648699999999, 47.4999532 ], + [ 9.5583444, 47.500155 ], + [ 9.5580442, 47.5002995 ], + [ 9.5577212, 47.5004046 ], + [ 9.5576274, 47.500436 ], + [ 9.5575819, 47.5004512 ], + [ 9.5575413, 47.5004636 ], + [ 9.5574571, 47.5004888 ], + [ 9.5573993, 47.5005062 ], + [ 9.557327, 47.500537800000004 ], + [ 9.5572402, 47.5005758 ], + [ 9.5571457, 47.5006273 ], + [ 9.5571033, 47.5006389 ], + [ 9.5570785, 47.500626 ], + [ 9.5570285, 47.5006605 ], + [ 9.557042599999999, 47.5006971 ], + [ 9.5570313, 47.5007308 ], + [ 9.5567555, 47.5008386 ], + [ 9.5567252, 47.5008505 ], + [ 9.5566398, 47.5008839 ], + [ 9.5565971, 47.5008998 ], + [ 9.5563818, 47.5009818 ], + [ 9.5562971, 47.5010081 ], + [ 9.5561976, 47.5010335 ], + [ 9.5558318, 47.5011018 ], + [ 9.555738, 47.5011187 ], + [ 9.5556683, 47.5011279 ], + [ 9.5555976, 47.5011323 ], + [ 9.5555403, 47.5011271 ], + [ 9.5554425, 47.5011025 ], + [ 9.5553512, 47.5010724 ], + [ 9.5552699, 47.5010321 ], + [ 9.555089, 47.5009316 ], + [ 9.5550701, 47.5009187 ], + [ 9.5550611, 47.5009065 ], + [ 9.5550601, 47.5008967 ], + [ 9.5550784, 47.5008796 ], + [ 9.555087, 47.5008738 ], + [ 9.5551047, 47.500865 ], + [ 9.5551653, 47.5008456 ], + [ 9.5551754, 47.5008161 ], + [ 9.5552238, 47.5007762 ], + [ 9.5552491, 47.5007618 ], + [ 9.55515, 47.500617 ], + [ 9.5550841, 47.5005462 ], + [ 9.5550277, 47.5005009 ], + [ 9.554986, 47.5004454 ], + [ 9.5553554, 47.5001959 ], + [ 9.5554335, 47.5001442 ], + [ 9.5554526, 47.5001319 ], + [ 9.555697, 47.4999908 ], + [ 9.5559898, 47.4998291 ], + [ 9.5562827, 47.4996674 ], + [ 9.5567993, 47.4993781 ], + [ 9.557277599999999, 47.4991103 ], + [ 9.5571061, 47.4989825 ], + [ 9.5566099, 47.4986395 ], + [ 9.5565525, 47.4985745 ], + [ 9.5565606, 47.4985253 ], + [ 9.5566204, 47.4984445 ], + [ 9.5567002, 47.4983807 ], + [ 9.5575907, 47.4978145 ], + [ 9.55765, 47.497768 ], + [ 9.5576828, 47.4977221 ], + [ 9.5577144, 47.4976665 ], + [ 9.5577445, 47.4976291 ], + [ 9.5578277, 47.4975607 ], + [ 9.5581921, 47.4973384 ], + [ 9.5582688, 47.4973737 ], + [ 9.5583356, 47.4974076 ], + [ 9.5587816, 47.4977166 ], + [ 9.5588581, 47.4976681 ], + [ 9.5589963, 47.497583 ], + [ 9.5592194, 47.4974456 ], + [ 9.5597123, 47.497114 ], + [ 9.5598692, 47.4970078 ], + [ 9.5599272, 47.496991 ], + [ 9.5599362, 47.4969809 ], + [ 9.5600347, 47.4969115 ], + [ 9.5602166, 47.4970301 ], + [ 9.5606346, 47.4973028 ], + [ 9.5607034, 47.4972417 ], + [ 9.5607096, 47.4972308 ], + [ 9.5607603, 47.4971046 ], + [ 9.5608834, 47.4968251 ], + [ 9.5609375, 47.4967118 ], + [ 9.5609908, 47.4965934 ], + [ 9.561039300000001, 47.4964699 ], + [ 9.5616318, 47.4951957 ], + [ 9.5608502, 47.4948033 ], + [ 9.5605152, 47.4945208 ], + [ 9.5607222, 47.4944212 ], + [ 9.560582, 47.4942691 ], + [ 9.5604197, 47.4940448 ], + [ 9.5602936, 47.4938029 ], + [ 9.5600453, 47.4932959 ], + [ 9.5600186, 47.4932406 ], + [ 9.5599866, 47.4931999 ], + [ 9.559865, 47.4931029 ], + [ 9.5597105, 47.4930213 ], + [ 9.5595333, 47.492943 ], + [ 9.559403, 47.4928867 ], + [ 9.5592718, 47.4928255 ], + [ 9.5592017, 47.4927893 ], + [ 9.5591552, 47.4927555 ], + [ 9.5590358, 47.492732 ], + [ 9.5588394, 47.4927038 ], + [ 9.5585352, 47.4926714 ], + [ 9.5582177, 47.4926522 ], + [ 9.5579943, 47.4926477 ], + [ 9.5578795, 47.4926485 ], + [ 9.5576875, 47.4926539 ], + [ 9.5576102, 47.4926564 ], + [ 9.5574472, 47.4926615 ], + [ 9.5572842, 47.4926667 ], + [ 9.5571547, 47.4926693 ], + [ 9.5569621, 47.492673 ], + [ 9.5566467, 47.4926722 ], + [ 9.5564999, 47.4926711 ], + [ 9.5563753, 47.4926678 ], + [ 9.5562512, 47.4926593 ], + [ 9.5561299, 47.492646 ], + [ 9.55601, 47.4926279 ], + [ 9.5558881, 47.4926095 ], + [ 9.5557662, 47.4925912 ], + [ 9.5556315, 47.4925742 ], + [ 9.5554962, 47.4925599 ], + [ 9.5553755, 47.4925495 ], + [ 9.5552545, 47.4925414 ], + [ 9.5551265, 47.4925351 ], + [ 9.5549985, 47.4925289 ], + [ 9.5548758, 47.4925235 ], + [ 9.5548758, 47.4925237 ], + [ 9.5548718, 47.4925236 ], + [ 9.5547186, 47.4925201 ], + [ 9.5545195, 47.4925051 ], + [ 9.5544653, 47.4924954 ], + [ 9.5542899, 47.4924422 ], + [ 9.5541084, 47.4923836 ], + [ 9.5539476, 47.492333 ], + [ 9.5538493, 47.4923026 ], + [ 9.5534399, 47.4921804 ], + [ 9.5533501, 47.4921552 ], + [ 9.5532514, 47.4921306 ], + [ 9.5531635, 47.4921119 ], + [ 9.5530793, 47.4920995 ], + [ 9.5530261, 47.4920924 ], + [ 9.5529482, 47.4920843 ], + [ 9.5529084, 47.4920801 ], + [ 9.5527693, 47.4920656 ], + [ 9.5526822, 47.4920512 ], + [ 9.5526599, 47.4920893 ], + [ 9.5526547, 47.4921012 ], + [ 9.5523455, 47.4920787 ], + [ 9.5522872, 47.492075 ], + [ 9.5519986, 47.4920724 ], + [ 9.5518389, 47.4920744 ], + [ 9.5517928, 47.492075 ], + [ 9.5517522, 47.4920754 ], + [ 9.5517022, 47.4920757 ], + [ 9.5516556, 47.4920751 ], + [ 9.5516063, 47.4920744 ], + [ 9.551554, 47.4920737 ], + [ 9.5514909, 47.4920729 ], + [ 9.5513427, 47.4920709 ], + [ 9.551334, 47.492071 ], + [ 9.5513099, 47.4920708 ], + [ 9.5512764, 47.4920698 ], + [ 9.5512451, 47.492068 ], + [ 9.551216, 47.4920655 ], + [ 9.5511577, 47.4920594 ], + [ 9.5510944, 47.4920528 ], + [ 9.5509855, 47.4920414 ], + [ 9.5509496, 47.4920377 ], + [ 9.5509072, 47.4920268 ], + [ 9.5508348, 47.4920082 ], + [ 9.5507707, 47.4919839 ], + [ 9.5506863, 47.4919162 ], + [ 9.5506429, 47.4918779 ], + [ 9.5506139, 47.4918535 ], + [ 9.5504947, 47.4919481 ], + [ 9.5504702, 47.4919671 ], + [ 9.5506723, 47.4920897 ], + [ 9.5504769, 47.492263 ], + [ 9.5502593, 47.4924565 ], + [ 9.5500945, 47.4923576 ], + [ 9.5500086, 47.492306 ], + [ 9.549921, 47.492251 ], + [ 9.5498431, 47.4922066 ], + [ 9.5496879, 47.4921124 ], + [ 9.549608899999999, 47.4921077 ], + [ 9.5495765, 47.4921061 ], + [ 9.5495676, 47.4921297 ], + [ 9.54956, 47.4921372 ], + [ 9.5495385, 47.4921582 ], + [ 9.5495211, 47.4921752 ], + [ 9.5495039, 47.4921919 ], + [ 9.549487599999999, 47.4922078 ], + [ 9.5494684, 47.4922252 ], + [ 9.5494666, 47.4922295 ], + [ 9.5494976, 47.4924251 ], + [ 9.5495005, 47.4924562 ], + [ 9.5495044, 47.4924907 ], + [ 9.5495064, 47.4925087 ], + [ 9.5495069, 47.492555 ], + [ 9.5495007, 47.4926021 ], + [ 9.5494974, 47.4926186 ], + [ 9.5494959, 47.4926253 ], + [ 9.549495199999999, 47.4926283 ], + [ 9.5494927, 47.4926328 ], + [ 9.5494923, 47.4926334 ], + [ 9.5494889, 47.4926384 ], + [ 9.5494846, 47.4926431 ], + [ 9.5494839, 47.4926439 ], + [ 9.5494828, 47.4926448 ], + [ 9.5494799, 47.4926473 ], + [ 9.5494781, 47.4926488 ], + [ 9.5494768, 47.4926496 ], + [ 9.5494675, 47.4926551 ], + [ 9.549457, 47.4926594 ], + [ 9.5494567, 47.4926596 ], + [ 9.5494526, 47.4926611 ], + [ 9.5494487, 47.4926618 ], + [ 9.5494412, 47.4926634 ], + [ 9.5494401, 47.4926636 ], + [ 9.5494315, 47.4926647 ], + [ 9.5494276, 47.4926647 ], + [ 9.5494191, 47.4926647 ], + [ 9.5494106, 47.4926639 ], + [ 9.5493881, 47.492662 ], + [ 9.5493879, 47.492662 ], + [ 9.5493878, 47.492662 ], + [ 9.549369, 47.4926589 ], + [ 9.5493508, 47.4926545 ], + [ 9.5493507, 47.4926545 ], + [ 9.5493506, 47.4926544 ], + [ 9.5493295, 47.4926474 ], + [ 9.5493227, 47.4926451 ], + [ 9.5493155, 47.4926414 ], + [ 9.5493151, 47.4926412 ], + [ 9.5492944, 47.4926298 ], + [ 9.5492763, 47.4926165 ], + [ 9.5492612, 47.4926015 ], + [ 9.5492573, 47.4925974 ], + [ 9.5492548, 47.4925936 ], + [ 9.5492488, 47.4925845 ], + [ 9.549247, 47.4925817 ], + [ 9.5492459, 47.4925791 ], + [ 9.5492383, 47.4925597 ], + [ 9.5492347, 47.4925359 ], + [ 9.549230099999999, 47.4925059 ], + [ 9.5492285, 47.4924951 ], + [ 9.5492242, 47.4924671 ], + [ 9.5492208, 47.4924452 ], + [ 9.5492197, 47.4924381 ], + [ 9.5492155, 47.4924129 ], + [ 9.5491983, 47.4923626 ], + [ 9.5491715, 47.4923163 ], + [ 9.5491549, 47.4922948 ], + [ 9.5491419, 47.4922801 ], + [ 9.5491314, 47.4922659 ], + [ 9.549131, 47.4922654 ], + [ 9.5491082, 47.4922374 ], + [ 9.5490578, 47.4921858 ], + [ 9.5490318, 47.4921633 ], + [ 9.5490129, 47.4921482 ], + [ 9.5489795, 47.4921224 ], + [ 9.5489442, 47.4920922 ], + [ 9.54891, 47.4920603 ], + [ 9.5488392, 47.4919853 ], + [ 9.5487125, 47.4918465 ], + [ 9.5486571, 47.4917855 ], + [ 9.5485998, 47.4917222 ], + [ 9.5485418, 47.4916782 ], + [ 9.5484817, 47.4916633 ], + [ 9.5482685, 47.4916687 ], + [ 9.5482348, 47.4916696 ], + [ 9.5479579, 47.4915031 ], + [ 9.5478975, 47.4912777 ], + [ 9.5479458, 47.4911223 ], + [ 9.5479249, 47.4910565 ], + [ 9.5473398, 47.4909917 ], + [ 9.5471983, 47.4909854 ], + [ 9.5470055, 47.4910213 ], + [ 9.54686, 47.491063 ], + [ 9.5466146, 47.4911412 ], + [ 9.5465389, 47.4911728 ], + [ 9.5464896, 47.491214 ], + [ 9.5460324, 47.4910777 ], + [ 9.5459328, 47.4908979 ], + [ 9.5458553, 47.4906372 ], + [ 9.545805099999999, 47.4904972 ], + [ 9.545723, 47.4903148 ], + [ 9.5456491, 47.4899873 ], + [ 9.5456215, 47.4899414 ], + [ 9.5455886, 47.4898995 ], + [ 9.5455495, 47.4898602 ], + [ 9.5454911, 47.489854 ], + [ 9.545444700000001, 47.4898218 ], + [ 9.545206499999999, 47.4893646 ], + [ 9.545191299999999, 47.489329 ], + [ 9.5451127, 47.488986 ], + [ 9.544914200000001, 47.4888588 ], + [ 9.5447942, 47.4888225 ], + [ 9.5447594, 47.4887797 ], + [ 9.5446721, 47.488578 ], + [ 9.5446295, 47.4885483 ], + [ 9.5444961, 47.4885056 ], + [ 9.5444, 47.4884097 ], + [ 9.5443486, 47.4883418 ], + [ 9.5442669, 47.4883025 ], + [ 9.5442024, 47.4882331 ], + [ 9.5441433, 47.4880999 ], + [ 9.5440863, 47.4880479 ], + [ 9.5440661, 47.4879963 ], + [ 9.5440717, 47.4879196 ], + [ 9.5440917, 47.4878369 ], + [ 9.5441928, 47.4876233 ], + [ 9.5443643, 47.4873874 ], + [ 9.5443596, 47.4872461 ], + [ 9.544266799999999, 47.4870384 ], + [ 9.5439647, 47.4867213 ], + [ 9.5439698, 47.4866536 ], + [ 9.5438977, 47.4864628 ], + [ 9.5438992, 47.4864376 ], + [ 9.5439042, 47.4863183 ], + [ 9.5438722, 47.4862113 ], + [ 9.5438072, 47.4860913 ], + [ 9.5437374, 47.485927 ], + [ 9.5437444, 47.4859032 ], + [ 9.5438299, 47.4858475 ], + [ 9.5439124, 47.4858111 ], + [ 9.5440312, 47.4857889 ], + [ 9.5441843, 47.4857912 ], + [ 9.5441917, 47.4857266 ], + [ 9.5441541, 47.4857192 ], + [ 9.5440795, 47.4856849 ], + [ 9.5440369, 47.4856426 ], + [ 9.5439988, 47.4855684 ], + [ 9.5437909, 47.4853888 ], + [ 9.5436446, 47.485239 ], + [ 9.5435381, 47.4851191 ], + [ 9.5433966, 47.4850143 ], + [ 9.543301, 47.484948 ], + [ 9.5432177, 47.4849128 ], + [ 9.5433049, 47.484495 ], + [ 9.5433082, 47.4844696 ], + [ 9.543282, 47.4843887 ], + [ 9.5432719, 47.4843118 ], + [ 9.543284, 47.4842852 ], + [ 9.5432802, 47.4842415 ], + [ 9.5433425, 47.4841694 ], + [ 9.5431328, 47.4840187 ], + [ 9.5430057, 47.4839721 ], + [ 9.5429229, 47.4839288 ], + [ 9.5426921, 47.4838909 ], + [ 9.5426538, 47.4838859 ], + [ 9.5426209, 47.4838727 ], + [ 9.5424407, 47.4838734 ], + [ 9.5423128, 47.4839009 ], + [ 9.5422832, 47.4839129 ], + [ 9.5421075, 47.4840477 ], + [ 9.5421044, 47.4840458 ], + [ 9.5419616, 47.4841455 ], + [ 9.5418366, 47.4842319 ], + [ 9.5418286, 47.4842549 ], + [ 9.5418238, 47.484251 ], + [ 9.5418148, 47.4842378 ], + [ 9.5417871, 47.484174 ], + [ 9.5417273, 47.4840878 ], + [ 9.5416591, 47.4840287 ], + [ 9.5416165, 47.4840032 ], + [ 9.5411402, 47.4838824 ], + [ 9.5409084, 47.4838306 ], + [ 9.5405698, 47.4837471 ], + [ 9.5405077, 47.4837273 ], + [ 9.5405144, 47.4837221 ], + [ 9.5403575, 47.4836583 ], + [ 9.5402472, 47.4835523 ], + [ 9.540242899999999, 47.4834444 ], + [ 9.5404036, 47.4831446 ], + [ 9.5403905, 47.482812 ], + [ 9.5400472, 47.4825213 ], + [ 9.539168, 47.4821054 ], + [ 9.5382964, 47.4818783 ], + [ 9.538224, 47.4817267 ], + [ 9.5380506, 47.4817028 ], + [ 9.5379328, 47.4820828 ], + [ 9.533386, 47.4812115 ], + [ 9.533362, 47.481275 ], + [ 9.5330559, 47.4812535 ], + [ 9.5326694, 47.4815484 ], + [ 9.5319909, 47.4828563 ], + [ 9.5314264, 47.4826775 ], + [ 9.5323716, 47.4814009 ], + [ 9.5323655, 47.481248 ], + [ 9.5322552, 47.481142 ], + [ 9.5313457, 47.4806277 ], + [ 9.5306784, 47.4805318 ], + [ 9.5307641, 47.4803503 ], + [ 9.530496, 47.4802832 ], + [ 9.5303169, 47.4807902 ], + [ 9.5302506, 47.4807914 ], + [ 9.5301868, 47.4808556 ], + [ 9.5301159, 47.4808252 ], + [ 9.53003, 47.4808542 ], + [ 9.5299622, 47.4808614 ], + [ 9.5298595, 47.4810122 ], + [ 9.5298214, 47.4810988 ], + [ 9.5298182, 47.4812075 ], + [ 9.5296854, 47.4812674 ], + [ 9.529663, 47.4813308 ], + [ 9.5295178, 47.4814768 ], + [ 9.5294209, 47.4815646 ], + [ 9.5293562, 47.4816288 ], + [ 9.5292795, 47.481619 ], + [ 9.5292853, 47.481556 ], + [ 9.529397, 47.4814222 ], + [ 9.5294516, 47.4813124 ], + [ 9.5294892, 47.4812144 ], + [ 9.5294796, 47.4811803 ], + [ 9.5294174, 47.4811188 ], + [ 9.5293045, 47.4810526 ], + [ 9.5291171, 47.4810108 ], + [ 9.528572, 47.4809024 ], + [ 9.5281211, 47.4808262 ], + [ 9.5279855, 47.4807948 ], + [ 9.5278464, 47.4805291 ], + [ 9.5277742, 47.480422 ], + [ 9.5276844, 47.4803096 ], + [ 9.5274951, 47.4802221 ], + [ 9.5272977, 47.4801578 ], + [ 9.5271708, 47.4801376 ], + [ 9.5269842, 47.4801187 ], + [ 9.5267319, 47.4801355 ], + [ 9.5266236, 47.4801663 ], + [ 9.5264619, 47.4803355 ], + [ 9.52635, 47.4804636 ], + [ 9.5262763, 47.4805109 ], + [ 9.5261297, 47.4804511 ], + [ 9.5259858, 47.4804428 ], + [ 9.5257834, 47.4804414 ], + [ 9.5257111, 47.4805229 ], + [ 9.525665, 47.4806154 ], + [ 9.5256021, 47.4807254 ], + [ 9.5254943, 47.4807677 ], + [ 9.5253348, 47.4807825 ], + [ 9.5252661, 47.4807439 ], + [ 9.5250863, 47.4806849 ], + [ 9.5250019, 47.48067 ], + [ 9.5248702, 47.4806546 ], + [ 9.5248677, 47.4805917 ], + [ 9.5246617, 47.4804155 ], + [ 9.5241023, 47.4803626 ], + [ 9.5240987, 47.4802727 ], + [ 9.5219694, 47.4801221 ], + [ 9.5212358, 47.4800274 ], + [ 9.520172, 47.4799745 ], + [ 9.5175719, 47.4796614 ], + [ 9.5173218, 47.4800528 ], + [ 9.5164887, 47.480023 ], + [ 9.5160365, 47.4796589 ], + [ 9.51507, 47.4795479 ], + [ 9.5150276, 47.4795869 ], + [ 9.5149806, 47.479573 ], + [ 9.5149178, 47.4796641 ], + [ 9.511456, 47.4793753 ], + [ 9.511462, 47.4793784 ], + [ 9.5112494, 47.4793942 ], + [ 9.5109296, 47.4794238 ], + [ 9.5102015, 47.4793649 ], + [ 9.5094771, 47.4792933 ], + [ 9.50922, 47.4792941 ], + [ 9.5089834, 47.4792877 ], + [ 9.5087139, 47.4793105 ], + [ 9.5083864, 47.4793345 ], + [ 9.5081095, 47.4793804 ], + [ 9.5077734, 47.4793989 ], + [ 9.5075109, 47.4793873 ], + [ 9.5071566, 47.4793834 ], + [ 9.5066153, 47.479349 ], + [ 9.5060313, 47.4793042 ], + [ 9.5057853, 47.4792922 ], + [ 9.5056327, 47.4792726 ], + [ 9.5054834, 47.4791442 ], + [ 9.5047658, 47.4790343 ], + [ 9.5047675, 47.4790361 ], + [ 9.5046747, 47.4790377 ], + [ 9.5043655, 47.4789353 ], + [ 9.5035387, 47.4788331 ], + [ 9.5026673, 47.4786057 ], + [ 9.5020031, 47.4785906 ], + [ 9.5020068, 47.4785768 ], + [ 9.501958, 47.478601 ], + [ 9.5018863, 47.4786997 ], + [ 9.5013879, 47.4786816 ], + [ 9.500814, 47.4786822 ], + [ 9.5003279, 47.4785724 ], + [ 9.4997946, 47.4785321 ], + [ 9.4991322, 47.4784317 ], + [ 9.4987768, 47.4781648 ], + [ 9.4985318, 47.4780497 ], + [ 9.4970842, 47.4783633 ], + [ 9.4965627, 47.4786065 ], + [ 9.4964556, 47.4785815 ], + [ 9.4944639, 47.4790247 ], + [ 9.4947249, 47.4794903 ], + [ 9.4939076, 47.4793302 ], + [ 9.4933475, 47.4792618 ], + [ 9.4932638, 47.4792636 ], + [ 9.4926141, 47.4794488 ], + [ 9.492375299999999, 47.4795795 ], + [ 9.4920942, 47.4797112 ], + [ 9.491945, 47.4797771 ], + [ 9.4917598, 47.4797925 ], + [ 9.4914357, 47.4797134 ], + [ 9.4911966, 47.4796442 ], + [ 9.4909317, 47.4796348 ], + [ 9.4909225, 47.4796334 ], + [ 9.4889765, 47.4797579 ], + [ 9.4888452, 47.4797962 ], + [ 9.4887744, 47.4796805 ], + [ 9.4869488, 47.4798298 ], + [ 9.4856019, 47.4800066 ], + [ 9.4852086, 47.4801305 ], + [ 9.4853135, 47.4804436 ], + [ 9.4847261, 47.4806969 ], + [ 9.4829904, 47.4811144 ], + [ 9.4829921, 47.4811594 ], + [ 9.482886, 47.4811612 ], + [ 9.4825859, 47.4809506 ], + [ 9.4821905, 47.4810206 ], + [ 9.4817974, 47.4811535 ], + [ 9.481211, 47.4814337 ], + [ 9.4792721, 47.4827815 ], + [ 9.4792934, 47.4828835 ], + [ 9.4793451, 47.4829327 ], + [ 9.4793058, 47.4829907 ], + [ 9.4790099, 47.4831684 ], + [ 9.4789537, 47.4832381 ], + [ 9.4790016, 47.4833629 ], + [ 9.4789277, 47.4834044 ], + [ 9.4788298, 47.4836637 ], + [ 9.4788008, 47.4837729 ], + [ 9.4788372, 47.4838351 ], + [ 9.4788638, 47.4838574 ], + [ 9.4788739, 47.4839029 ], + [ 9.4788669, 47.4839373 ], + [ 9.4788377, 47.4840409 ], + [ 9.4788229, 47.4840868 ], + [ 9.478791, 47.4841218 ], + [ 9.4787368, 47.4842219 ], + [ 9.4786725, 47.4842958 ], + [ 9.4785598, 47.4844297 ], + [ 9.4783578, 47.4846338 ], + [ 9.4781878, 47.4847861 ], + [ 9.4780653, 47.4848801 ], + [ 9.4778959, 47.4850494 ], + [ 9.4778134, 47.4851026 ], + [ 9.4776148, 47.485181 ], + [ 9.4774808, 47.4852123 ], + [ 9.4772808, 47.4853409 ], + [ 9.4772408, 47.4855089 ], + [ 9.4771951, 47.485702 ], + [ 9.4770224, 47.4857182 ], + [ 9.4769399, 47.4859895 ], + [ 9.4767478, 47.4861728 ], + [ 9.4767547, 47.4870224 ], + [ 9.4767514, 47.4870224 ], + [ 9.4767638, 47.4873024 ], + [ 9.4767734, 47.4873136 ], + [ 9.4768826, 47.4874999 ], + [ 9.4769662, 47.4876696 ], + [ 9.4770255, 47.4878742 ], + [ 9.4770339, 47.4880512 ], + [ 9.4770111, 47.4882975 ], + [ 9.4769679, 47.4884699 ], + [ 9.4769001, 47.4886485 ], + [ 9.4768632, 47.4887693 ], + [ 9.4771132, 47.4888841 ], + [ 9.4770498, 47.4889827 ], + [ 9.4772217, 47.4890535 ], + [ 9.4771707, 47.4892374 ], + [ 9.4771923, 47.4893455 ], + [ 9.4772498, 47.4894816 ], + [ 9.47733, 47.4895828 ], + [ 9.4773232, 47.489623 ], + [ 9.4773003, 47.4896748 ], + [ 9.4913651, 47.4956465 ], + [ 9.4915829, 47.4954191 ], + [ 9.491893, 47.495178 ], + [ 9.492539, 47.4947187 ], + [ 9.4932621, 47.4942807 ], + [ 9.4940737, 47.493749 ], + [ 9.4948073, 47.4933679 ], + [ 9.4955936, 47.49302 ], + [ 9.4962749, 47.4927883 ], + [ 9.4971961, 47.4924317 ], + [ 9.4978955, 47.4922171 ], + [ 9.4985992, 47.4919223 ], + [ 9.4996078, 47.4916381 ], + [ 9.5005015, 47.4914307 ], + [ 9.5015141, 47.4912493 ], + [ 9.5026796, 47.4910761 ], + [ 9.5051735, 47.4908008 ], + [ 9.5073304, 47.4905439 ], + [ 9.5089192, 47.490396 ], + [ 9.5107745, 47.4901912 ], + [ 9.5124805, 47.4900294 ], + [ 9.5148686, 47.4898303 ], + [ 9.5168271, 47.4896575 ], + [ 9.5186938, 47.4895094 ], + [ 9.520359599999999, 47.4894055 ], + [ 9.5214382, 47.4893655 ], + [ 9.5228459, 47.4893413 ], + [ 9.5246516, 47.4893317 ], + [ 9.52601, 47.48932 ], + [ 9.5268816, 47.4893758 ], + [ 9.5277539, 47.4894488 ], + [ 9.5289486, 47.4895548 ], + [ 9.5302287, 47.489682 ], + [ 9.5314138, 47.4897539 ], + [ 9.532595, 47.4898795 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "WZV0031", + "country" : "CHE", + "name" : [ + { + "text" : "Wasser- und Zugvogelreservat Rorschacher Bucht / Arbon", + "lang" : "de-CH" + }, + { + "text" : "Réserve d'oiseaux d'eau et de migrateurs Rorschacher Bucht / Arbon", + "lang" : "fr-CH" + }, + { + "text" : "Riserva di uccelli acquatici e migratori Rorschacher Bucht / Arbon", + "lang" : "it-CH" + }, + { + "text" : "Water Bird and Migratory Bird Reserves Rorschacher Bucht / Arbon", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5046707, 47.4546308 ], + [ 7.5135335, 47.4567721 ], + [ 7.5150311, 47.4574535 ], + [ 7.5152976, 47.4580289 ], + [ 7.5194392, 47.4584728 ], + [ 7.5197865, 47.458481 ], + [ 7.5204743, 47.4585174 ], + [ 7.5213602999999996, 47.4585262 ], + [ 7.5216288, 47.4585308 ], + [ 7.5220831, 47.4585257 ], + [ 7.5224937, 47.4585337 ], + [ 7.5232445, 47.4585237 ], + [ 7.5238112, 47.4585268 ], + [ 7.5242971, 47.4585288 ], + [ 7.5248288, 47.4585261 ], + [ 7.5252848, 47.4585246 ], + [ 7.5256357, 47.4585314 ], + [ 7.5259621, 47.4585467 ], + [ 7.5263674, 47.458575 ], + [ 7.5267113, 47.4585913 ], + [ 7.5274149999999995, 47.4586527 ], + [ 7.5283868, 47.4587394 ], + [ 7.5309143, 47.4589644 ], + [ 7.5325401, 47.4591281 ], + [ 7.5342243, 47.4592418 ], + [ 7.537877, 47.4594881 ], + [ 7.5402646, 47.4594163 ], + [ 7.5402056, 47.4589054 ], + [ 7.5400335, 47.4586407 ], + [ 7.5396701, 47.4587498 ], + [ 7.5396301, 47.4587406 ], + [ 7.5394085, 47.4586854 ], + [ 7.538428, 47.4584645 ], + [ 7.5379732, 47.45836 ], + [ 7.537364, 47.4582504 ], + [ 7.5369685, 47.4581894 ], + [ 7.5369139, 47.4581838 ], + [ 7.5358868999999995, 47.4580327 ], + [ 7.5358671, 47.4581417 ], + [ 7.5358238, 47.4583802 ], + [ 7.5352684, 47.4582774 ], + [ 7.534793, 47.4581894 ], + [ 7.5346032, 47.4581543 ], + [ 7.5342135, 47.4580821 ], + [ 7.5341274, 47.4582947 ], + [ 7.5339115, 47.458274 ], + [ 7.5334743, 47.458232 ], + [ 7.5333304, 47.4582182 ], + [ 7.5332018, 47.4582058 ], + [ 7.5331382, 47.4581997 ], + [ 7.5330439, 47.4581907 ], + [ 7.532672, 47.4581264 ], + [ 7.5326003, 47.4581139 ], + [ 7.5325527, 47.4581054 ], + [ 7.5322696, 47.4580554 ], + [ 7.5317209, 47.4579613 ], + [ 7.5317155, 47.4579574 ], + [ 7.5310384, 47.4578395 ], + [ 7.5307354, 47.4577876 ], + [ 7.530507, 47.4577142 ], + [ 7.5298887, 47.4575199 ], + [ 7.5291114, 47.4572694 ], + [ 7.5287648, 47.4571619 ], + [ 7.5279661, 47.4569145 ], + [ 7.5274515, 47.4567542 ], + [ 7.5272422, 47.4567233 ], + [ 7.5271824, 47.4567149 ], + [ 7.5271161, 47.4567011 ], + [ 7.5268458, 47.4566646 ], + [ 7.5262047, 47.456578 ], + [ 7.526167, 47.4565703 ], + [ 7.5261296, 47.456562 ], + [ 7.5260242, 47.4565458 ], + [ 7.5259406, 47.4565308 ], + [ 7.5252291, 47.4563748 ], + [ 7.5247998, 47.4562849 ], + [ 7.524342, 47.4561869 ], + [ 7.5235971, 47.456047 ], + [ 7.5224176, 47.4558254 ], + [ 7.5223793, 47.4558182 ], + [ 7.5223391, 47.4558904 ], + [ 7.5223108, 47.4559415 ], + [ 7.5222831, 47.4559913 ], + [ 7.5221566, 47.4562191 ], + [ 7.5220972, 47.4562047 ], + [ 7.5210975, 47.4560074 ], + [ 7.5205649, 47.4559027 ], + [ 7.5205468, 47.4559261 ], + [ 7.5204884, 47.4559861 ], + [ 7.5204722, 47.4560046 ], + [ 7.5203883000000005, 47.4560888 ], + [ 7.5184398, 47.4555755 ], + [ 7.5179726, 47.455386 ], + [ 7.5175266, 47.4552063 ], + [ 7.5166408, 47.4548333 ], + [ 7.5155025, 47.4544835 ], + [ 7.51537, 47.4544428 ], + [ 7.5153504, 47.454557 ], + [ 7.5149456, 47.4546585 ], + [ 7.5146792, 47.4546745 ], + [ 7.5142427, 47.4546177 ], + [ 7.5133935, 47.4544182 ], + [ 7.5129266, 47.4546253 ], + [ 7.5124585, 47.4547219 ], + [ 7.5123224, 47.4546851 ], + [ 7.5117728, 47.4545268 ], + [ 7.5117541, 47.4545233 ], + [ 7.5117351, 47.4545203 ], + [ 7.511716, 47.4545179 ], + [ 7.5116968, 47.4545159 ], + [ 7.5116775, 47.4545145 ], + [ 7.5115681, 47.4544952 ], + [ 7.5110425, 47.4544169 ], + [ 7.5105816, 47.4543513 ], + [ 7.5105712, 47.4543488 ], + [ 7.5105195, 47.4543296 ], + [ 7.5102037, 47.4542264 ], + [ 7.5100323, 47.4541704 ], + [ 7.5096527, 47.4540464 ], + [ 7.5094297999999995, 47.4537332 ], + [ 7.509529, 47.4535226 ], + [ 7.5095948, 47.4533841 ], + [ 7.5096032, 47.4533665 ], + [ 7.5096144, 47.453346 ], + [ 7.5096177, 47.4533351 ], + [ 7.5088684, 47.4531052 ], + [ 7.5083692, 47.4529039 ], + [ 7.507657, 47.4526472 ], + [ 7.5075771, 47.4526141 ], + [ 7.5074655, 47.4525678 ], + [ 7.5072906, 47.4524991 ], + [ 7.5071033, 47.4524317 ], + [ 7.5068762, 47.4523501 ], + [ 7.5066971, 47.4522823 ], + [ 7.5065391, 47.4522291 ], + [ 7.5064043, 47.4521884 ], + [ 7.5060978, 47.4520975 ], + [ 7.5059044, 47.4520403 ], + [ 7.5057959, 47.4520084 ], + [ 7.5056998, 47.4519826 ], + [ 7.5056206, 47.4519584 ], + [ 7.5054694, 47.4519146 ], + [ 7.5053219, 47.4518735 ], + [ 7.505196, 47.4518388 ], + [ 7.5050951, 47.4518048 ], + [ 7.5049803, 47.4517654 ], + [ 7.5048291, 47.4517197 ], + [ 7.5046702, 47.4516791 ], + [ 7.5046191, 47.451669 ], + [ 7.5046707, 47.4546308 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns194", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Blauenweid", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Blauenweid", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Blauenweid", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Blauenweid", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.0505047, 47.3936606 ], + [ 8.0504977, 47.3935194 ], + [ 8.0504797, 47.3933787 ], + [ 8.050451, 47.3932388 ], + [ 8.0504115, 47.3931001 ], + [ 8.0503613, 47.392963 ], + [ 8.0503007, 47.3928278 ], + [ 8.0502297, 47.392695 ], + [ 8.0501486, 47.392564899999996 ], + [ 8.0500576, 47.3924379 ], + [ 8.0499569, 47.3923143 ], + [ 8.0498468, 47.3921944 ], + [ 8.0497277, 47.3920786 ], + [ 8.0495997, 47.3919672 ], + [ 8.0494634, 47.3918605 ], + [ 8.049319, 47.3917588 ], + [ 8.049167, 47.3916624 ], + [ 8.0490078, 47.3915715 ], + [ 8.0488418, 47.3914864 ], + [ 8.0486694, 47.3914073 ], + [ 8.0484912, 47.3913344 ], + [ 8.0483076, 47.3912679 ], + [ 8.0481192, 47.3912081 ], + [ 8.0479264, 47.3911551 ], + [ 8.0477298, 47.391109 ], + [ 8.0475299, 47.3910699 ], + [ 8.0473272, 47.391038 ], + [ 8.0471224, 47.3910133 ], + [ 8.0469159, 47.390996 ], + [ 8.0467084, 47.390986 ], + [ 8.0465004, 47.3909834 ], + [ 8.0462925, 47.3909882 ], + [ 8.0460853, 47.3910003 ], + [ 8.0458792, 47.3910199 ], + [ 8.045675, 47.3910467 ], + [ 8.0454731, 47.3910807 ], + [ 8.0452741, 47.3911219 ], + [ 8.0450786, 47.3911701 ], + [ 8.044887, 47.3912251 ], + [ 8.0446999, 47.3912869 ], + [ 8.0445179, 47.3913553 ], + [ 8.0443414, 47.39143 ], + [ 8.0441708, 47.3915109 ], + [ 8.0440068, 47.3915978 ], + [ 8.0438496, 47.3916904 ], + [ 8.0436998, 47.3917884 ], + [ 8.0435578, 47.3918916 ], + [ 8.0434239, 47.3919997 ], + [ 8.0432986, 47.3921125 ], + [ 8.0431821, 47.3922295 ], + [ 8.0430747, 47.3923505 ], + [ 8.0429769, 47.3924752 ], + [ 8.0428888, 47.3926031 ], + [ 8.0428106, 47.3927341 ], + [ 8.0427427, 47.3928676 ], + [ 8.0426852, 47.3930033 ], + [ 8.0426381, 47.393141 ], + [ 8.0426018, 47.39328 ], + [ 8.0425762, 47.3934202 ], + [ 8.0425615, 47.3935611 ], + [ 8.0425577, 47.3937024 ], + [ 8.0425647, 47.3938436 ], + [ 8.0425826, 47.3939843 ], + [ 8.0426114, 47.3941242 ], + [ 8.0426509, 47.3942629 ], + [ 8.042701, 47.3944 ], + [ 8.0427616, 47.3945352 ], + [ 8.0428326, 47.394668 ], + [ 8.0429137, 47.394798 ], + [ 8.0430047, 47.3949251 ], + [ 8.0431053, 47.3950487 ], + [ 8.0432154, 47.3951686 ], + [ 8.0433345, 47.3952844 ], + [ 8.0434625, 47.3953958 ], + [ 8.0435988, 47.3955025 ], + [ 8.0437432, 47.3956042 ], + [ 8.0438952, 47.3957007 ], + [ 8.0440544, 47.3957916 ], + [ 8.0442204, 47.3958767 ], + [ 8.0443928, 47.3959558 ], + [ 8.044571, 47.3960287 ], + [ 8.0447546, 47.3960951 ], + [ 8.0449431, 47.396155 ], + [ 8.0451359, 47.396208 ], + [ 8.0453325, 47.3962541 ], + [ 8.0455325, 47.3962932 ], + [ 8.0457351, 47.3963251 ], + [ 8.04594, 47.3963498 ], + [ 8.0461464, 47.3963671 ], + [ 8.046354, 47.3963771 ], + [ 8.046562, 47.3963797 ], + [ 8.0467699, 47.396375 ], + [ 8.0469772, 47.3963628 ], + [ 8.0471832, 47.3963433 ], + [ 8.0473875, 47.3963164 ], + [ 8.0475894, 47.3962824 ], + [ 8.0477884, 47.3962412 ], + [ 8.047984, 47.396193 ], + [ 8.0481756, 47.396138 ], + [ 8.0483626, 47.3960762 ], + [ 8.0485447, 47.3960078 ], + [ 8.0487212, 47.395933 ], + [ 8.0488918, 47.3958521 ], + [ 8.0490558, 47.3957653 ], + [ 8.049213, 47.3956727 ], + [ 8.0493628, 47.3955746 ], + [ 8.0495048, 47.3954714 ], + [ 8.0496387, 47.3953633 ], + [ 8.049764, 47.3952506 ], + [ 8.0498805, 47.3951335 ], + [ 8.0499879, 47.3950125 ], + [ 8.0500857, 47.3948878 ], + [ 8.0501738, 47.3947599 ], + [ 8.0502519, 47.3946289 ], + [ 8.0503198, 47.3944954 ], + [ 8.0503773, 47.3943596 ], + [ 8.0504243, 47.394222 ], + [ 8.0504607, 47.3940829 ], + [ 8.0504862, 47.3939427 ], + [ 8.0505009, 47.3938018 ], + [ 8.0505047, 47.3936606 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "AAR0001", + "country" : "CHE", + "name" : [ + { + "text" : "Bezirksgefängnis Aarau Amtshaus", + "lang" : "de-CH" + }, + { + "text" : "Bezirksgefängnis Aarau Amtshaus", + "lang" : "fr-CH" + }, + { + "text" : "Bezirksgefängnis Aarau Amtshaus", + "lang" : "it-CH" + }, + { + "text" : "Bezirksgefängnis Aarau Amtshaus", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Bezirksgefängnis Aarau", + "lang" : "de-CH" + }, + { + "text" : "Bezirksgefängnis Aarau", + "lang" : "fr-CH" + }, + { + "text" : "Bezirksgefängnis Aarau", + "lang" : "it-CH" + }, + { + "text" : "Bezirksgefängnis Aarau", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Gefängnisleitung", + "lang" : "de-CH" + }, + { + "text" : "Gefängnisleitung", + "lang" : "fr-CH" + }, + { + "text" : "Gefängnisleitung", + "lang" : "it-CH" + }, + { + "text" : "Gefängnisleitung", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ag.ch/de/verwaltung/dvi/strafverfolgung-strafvollzug/strafvollzug/bezirksgefaengnisse", + "email" : "justizvollzug@ag.ch", + "phone" : "0041628365602", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.9795849, 47.3666502 ], + [ 7.979578, 47.366509 ], + [ 7.9795603, 47.3663683 ], + [ 7.9795317, 47.3662284 ], + [ 7.9794924, 47.3660896 ], + [ 7.9794425, 47.3659525 ], + [ 7.979382, 47.3658173 ], + [ 7.9793113, 47.3656845 ], + [ 7.9792304, 47.3655544 ], + [ 7.9791396, 47.3654273 ], + [ 7.9790391, 47.3653036 ], + [ 7.9789293, 47.3651837 ], + [ 7.9788103, 47.3650678 ], + [ 7.9786826, 47.3649563 ], + [ 7.9785465, 47.3648495 ], + [ 7.9784024, 47.3647477 ], + [ 7.9782506, 47.3646512 ], + [ 7.9780915, 47.3645602 ], + [ 7.9779257, 47.364475 ], + [ 7.9777536, 47.3643958 ], + [ 7.9775755, 47.3643228 ], + [ 7.9773921, 47.3642562 ], + [ 7.9772039, 47.3641963 ], + [ 7.9770112, 47.3641431 ], + [ 7.9768148, 47.3640969 ], + [ 7.976615, 47.3640577 ], + [ 7.9764125, 47.3640257 ], + [ 7.9762078, 47.3640009 ], + [ 7.9760015, 47.3639834 ], + [ 7.9757941, 47.3639733 ], + [ 7.9755862, 47.3639705 ], + [ 7.9753784, 47.3639752 ], + [ 7.9751712999999995, 47.3639872 ], + [ 7.9749653, 47.3640066 ], + [ 7.9747611, 47.3640333 ], + [ 7.9745593, 47.3640672 ], + [ 7.9743604, 47.3641083 ], + [ 7.9741649, 47.3641563 ], + [ 7.9739733, 47.3642113 ], + [ 7.9737863, 47.364273 ], + [ 7.9736042, 47.3643412 ], + [ 7.9734277, 47.3644159 ], + [ 7.9732571, 47.3644967 ], + [ 7.973093, 47.3645834 ], + [ 7.9729358999999995, 47.3646759 ], + [ 7.972786, 47.3647738 ], + [ 7.9726439, 47.364877 ], + [ 7.97251, 47.364985 ], + [ 7.9723845, 47.3650976 ], + [ 7.9722679, 47.3652146 ], + [ 7.9721605, 47.3653356 ], + [ 7.9720625, 47.3654602 ], + [ 7.9719743, 47.3655881 ], + [ 7.971896, 47.365719 ], + [ 7.9718279, 47.3658524 ], + [ 7.9717702, 47.3659881 ], + [ 7.9717231, 47.3661257 ], + [ 7.9716866, 47.3662648 ], + [ 7.9716608, 47.366405 ], + [ 7.9716459, 47.3665459 ], + [ 7.9716419, 47.3666871 ], + [ 7.9716488, 47.3668283 ], + [ 7.9716664999999995, 47.3669691 ], + [ 7.971695, 47.367109 ], + [ 7.9717343, 47.3672477 ], + [ 7.9717842, 47.3673849 ], + [ 7.9718446, 47.36752 ], + [ 7.9719154, 47.3676529 ], + [ 7.9719961999999995, 47.367783 ], + [ 7.972087, 47.3679101 ], + [ 7.9721875, 47.3680338 ], + [ 7.9722973, 47.3681537 ], + [ 7.9724163, 47.3682696 ], + [ 7.972544, 47.3683811 ], + [ 7.9726801, 47.3684879 ], + [ 7.9728242, 47.3685897 ], + [ 7.972976, 47.3686862 ], + [ 7.9731351, 47.3687772 ], + [ 7.9733009, 47.3688625 ], + [ 7.973473, 47.3689417 ], + [ 7.9736511, 47.3690147 ], + [ 7.9738345, 47.3690812 ], + [ 7.9740228, 47.3691412 ], + [ 7.9742154, 47.3691944 ], + [ 7.9744119, 47.3692406 ], + [ 7.9746117, 47.3692798 ], + [ 7.9748142, 47.3693118 ], + [ 7.9750189, 47.3693366 ], + [ 7.9752252, 47.3693541 ], + [ 7.9754325999999995, 47.3693642 ], + [ 7.9756405, 47.369367 ], + [ 7.9758484, 47.3693623 ], + [ 7.9760556, 47.3693503 ], + [ 7.9762615, 47.3693309 ], + [ 7.9764657, 47.3693042 ], + [ 7.9766676, 47.3692703 ], + [ 7.9768665, 47.3692292 ], + [ 7.9770620999999995, 47.3691811 ], + [ 7.9772536, 47.3691262 ], + [ 7.9774407, 47.3690645 ], + [ 7.9776226999999995, 47.3689962 ], + [ 7.9777993, 47.3689216 ], + [ 7.9779698, 47.3688408 ], + [ 7.9781339, 47.368754 ], + [ 7.9782911, 47.3686615 ], + [ 7.978441, 47.3685636 ], + [ 7.978583, 47.3684605 ], + [ 7.978717, 47.3683524 ], + [ 7.9788424, 47.3682398 ], + [ 7.978959, 47.3681228 ], + [ 7.9790665, 47.3680018 ], + [ 7.9791644, 47.3678772 ], + [ 7.9792526, 47.3677493 ], + [ 7.9793309, 47.3676184 ], + [ 7.9793989, 47.3674849 ], + [ 7.9794566, 47.3673492 ], + [ 7.9795038, 47.3672116 ], + [ 7.9795403, 47.3670726 ], + [ 7.979566, 47.3669324 ], + [ 7.9795809, 47.3667915 ], + [ 7.9795849, 47.3666502 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0048", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Gösgen", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Gösgen", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Gösgen", + "lang" : "it-CH" + }, + { + "text" : "Substation Gösgen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.9533708999999995, 47.4490271 ], + [ 7.9533864, 47.44908 ], + [ 7.9539445, 47.4509809 ], + [ 7.9539402, 47.4510169 ], + [ 7.9547176, 47.4512135 ], + [ 7.9544311, 47.4513566 ], + [ 7.9538008, 47.4517672 ], + [ 7.953971, 47.4519468 ], + [ 7.9543329, 47.4525407 ], + [ 7.9546969999999995, 47.4531368 ], + [ 7.9547369, 47.4531137 ], + [ 7.9547726, 47.4531402 ], + [ 7.9546925, 47.4531875 ], + [ 7.9547366, 47.453233 ], + [ 7.9547683, 47.4532671 ], + [ 7.9549405, 47.4534528 ], + [ 7.9549593, 47.4535087 ], + [ 7.9549827, 47.4535614 ], + [ 7.9550244, 47.4535985 ], + [ 7.9550979, 47.453623 ], + [ 7.9551759, 47.4536413 ], + [ 7.9552539, 47.4536503 ], + [ 7.955327, 47.4536344 ], + [ 7.9553818, 47.4536062 ], + [ 7.9555606999999995, 47.4536179 ], + [ 7.9562301, 47.4536771 ], + [ 7.9563363, 47.4536878 ], + [ 7.9565134, 47.4537058 ], + [ 7.9564623, 47.4535368 ], + [ 7.9566555, 47.4533461 ], + [ 7.95652, 47.4531389 ], + [ 7.9563338, 47.4526837 ], + [ 7.9559037, 47.4524706 ], + [ 7.9559557, 47.4523104 ], + [ 7.9559546, 47.4518822 ], + [ 7.9559502, 47.4517461 ], + [ 7.9556311, 47.4513969 ], + [ 7.9563191, 47.451094 ], + [ 7.9563492, 47.4510808 ], + [ 7.9560132, 47.4509134 ], + [ 7.9556748, 47.4507107 ], + [ 7.9555777, 47.4504856 ], + [ 7.9554454, 47.450197 ], + [ 7.9551796, 47.449948 ], + [ 7.9547977, 47.449594 ], + [ 7.9546104, 47.4492459 ], + [ 7.9543307, 47.4491635 ], + [ 7.9542821, 47.4490633 ], + [ 7.9539957999999995, 47.4490998 ], + [ 7.9537769, 47.4491256 ], + [ 7.953599, 47.4491465 ], + [ 7.9533708999999995, 47.4490271 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns302", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Neulingen", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Neulingen", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Neulingen", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Neulingen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.0921984, 47.3139068 ], + [ 8.092079, 47.3115537 ], + [ 8.0917786, 47.3092081 ], + [ 8.0912983, 47.3068764 ], + [ 8.0906392, 47.304565 ], + [ 8.0898033, 47.3022803 ], + [ 8.0887928, 47.3000284 ], + [ 8.0876105, 47.2978155 ], + [ 8.0862597, 47.2956478 ], + [ 8.0847441, 47.2935311 ], + [ 8.0830679, 47.2914712 ], + [ 8.0812357, 47.2894739 ], + [ 8.0792525, 47.2875444 ], + [ 8.0771237, 47.2856882 ], + [ 8.0748552, 47.2839103 ], + [ 8.0724533, 47.2822156 ], + [ 8.0699244, 47.2806087 ], + [ 8.0672756, 47.279094 ], + [ 8.0645141, 47.2776757 ], + [ 8.0616474, 47.2763575 ], + [ 8.0586835, 47.2751432 ], + [ 8.0556303, 47.274036100000004 ], + [ 8.0524963, 47.2730392 ], + [ 8.0492901, 47.2721551 ], + [ 8.0460203, 47.2713864 ], + [ 8.042696, 47.2707351 ], + [ 8.0393263, 47.2702031 ], + [ 8.0359203, 47.2697917 ], + [ 8.0324874, 47.2695021 ], + [ 8.029037, 47.269335 ], + [ 8.0255785, 47.269291 ], + [ 8.0221213, 47.2693702 ], + [ 8.0186749, 47.2695723 ], + [ 8.0152488, 47.2698968 ], + [ 8.0118522, 47.2703428 ], + [ 8.0084945, 47.2709091 ], + [ 8.0051849, 47.2715942 ], + [ 8.0019324, 47.2723961 ], + [ 7.9987459, 47.2733126 ], + [ 7.9956341, 47.2743413 ], + [ 7.9926056, 47.2754794 ], + [ 7.9896686, 47.2767237 ], + [ 7.9868312, 47.2780709 ], + [ 7.9841011, 47.2795171 ], + [ 7.9814859, 47.2810586 ], + [ 7.9789926, 47.2826911 ], + [ 7.9766281, 47.2844101 ], + [ 7.974399, 47.2862108 ], + [ 7.9723112, 47.2880885 ], + [ 7.9703706, 47.2900379 ], + [ 7.9685824, 47.2920537 ], + [ 7.9669517, 47.2941304 ], + [ 7.9654828, 47.2962622 ], + [ 7.9641798, 47.2984435 ], + [ 7.9630463, 47.3006681 ], + [ 7.9620854, 47.30293 ], + [ 7.9612998, 47.3052231 ], + [ 7.9606916, 47.3075409 ], + [ 7.9602626, 47.3098772 ], + [ 7.9600139, 47.3122256 ], + [ 7.9599462, 47.3145796 ], + [ 7.9600598, 47.3169328 ], + [ 7.9603544, 47.3192787 ], + [ 7.9608291, 47.3216109 ], + [ 7.9614828, 47.3239231 ], + [ 7.9623136, 47.3262088 ], + [ 7.9633192, 47.3284618 ], + [ 7.964497, 47.3306759 ], + [ 7.9658437, 47.332845 ], + [ 7.9673557, 47.3349632 ], + [ 7.9690288, 47.3370247 ], + [ 7.9708585, 47.3390239 ], + [ 7.9728397, 47.3409551 ], + [ 7.9749669999999995, 47.3428132 ], + [ 7.9772347, 47.3445931 ], + [ 7.9796364, 47.3462897 ], + [ 7.9821656, 47.3478986 ], + [ 7.9848154000000005, 47.3494152 ], + [ 7.9875786, 47.3508355 ], + [ 7.9904474, 47.3521554 ], + [ 7.9934141, 47.3533714 ], + [ 7.9964705, 47.3544802 ], + [ 7.9996083, 47.3554786 ], + [ 8.0028187, 47.356364 ], + [ 8.006093, 47.3571339 ], + [ 8.0094222, 47.3577862 ], + [ 8.0127972, 47.3583192 ], + [ 8.0162087, 47.3587313 ], + [ 8.0196472, 47.3590213 ], + [ 8.0231034, 47.3591886 ], + [ 8.0265678, 47.3592327 ], + [ 8.0300308, 47.3591534 ], + [ 8.0334829, 47.358950899999996 ], + [ 8.0369147, 47.3586259 ], + [ 8.0403167, 47.3581792 ], + [ 8.0436795, 47.357612 ], + [ 8.046994, 47.3569259 ], + [ 8.050251, 47.3561227 ], + [ 8.0534415, 47.3552047 ], + [ 8.0565569, 47.3541745 ], + [ 8.0595885, 47.3530348 ], + [ 8.0625281, 47.3517887 ], + [ 8.0653675, 47.3504397 ], + [ 8.068099, 47.3489915 ], + [ 8.0707151, 47.3474481 ], + [ 8.0732086, 47.3458137 ], + [ 8.0755727, 47.3440928 ], + [ 8.0778009, 47.3422901 ], + [ 8.079887, 47.3404105 ], + [ 8.0818255, 47.3384593 ], + [ 8.0836109, 47.3364418 ], + [ 8.0852384, 47.3343635 ], + [ 8.0867036, 47.3322301 ], + [ 8.0880024, 47.3300475 ], + [ 8.0891313, 47.3278217 ], + [ 8.0900872, 47.3255587 ], + [ 8.0908676, 47.3232648 ], + [ 8.0914703, 47.3209463 ], + [ 8.0918937, 47.3186095 ], + [ 8.0921366, 47.3162609 ], + [ 8.0921984, 47.3139068 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSXH001", + "country" : "CHE", + "name" : [ + { + "text" : "LSXH Holziken", + "lang" : "de-CH" + }, + { + "text" : "LSXH Holziken", + "lang" : "fr-CH" + }, + { + "text" : "LSXH Holziken", + "lang" : "it-CH" + }, + { + "text" : "LSXH Holziken", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Rose Helicopter AG", + "lang" : "de-CH" + }, + { + "text" : "Rose Helicopter AG", + "lang" : "fr-CH" + }, + { + "text" : "Rose Helicopter AG", + "lang" : "it-CH" + }, + { + "text" : "Rose Helicopter AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Lukas Fischer", + "lang" : "de-CH" + }, + { + "text" : "Lukas Fischer", + "lang" : "fr-CH" + }, + { + "text" : "Lukas Fischer", + "lang" : "it-CH" + }, + { + "text" : "Lukas Fischer", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.roseheli.ch", + "email" : "info@roseheli.ch", + "phone" : "0041627214444", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6738352, 47.4876498 ], + [ 7.6738406, 47.4876485 ], + [ 7.6741821, 47.4873721 ], + [ 7.6741724, 47.4873628 ], + [ 7.6741659, 47.4873578 ], + [ 7.6741595, 47.4873527 ], + [ 7.6741523, 47.4873469 ], + [ 7.6741448, 47.487341 ], + [ 7.6741443, 47.4873406 ], + [ 7.674129, 47.4873299 ], + [ 7.6741261, 47.4873279 ], + [ 7.6741193, 47.487323 ], + [ 7.6741151, 47.48732 ], + [ 7.6741118, 47.4873175 ], + [ 7.6741069, 47.4873138 ], + [ 7.6741008, 47.4873091 ], + [ 7.6740978, 47.487307 ], + [ 7.6740862, 47.4872987 ], + [ 7.6740836, 47.4872969 ], + [ 7.6740773, 47.4872923 ], + [ 7.6740738, 47.4872898 ], + [ 7.6740707, 47.4872875 ], + [ 7.6740666, 47.4872844 ], + [ 7.6740615, 47.4872805 ], + [ 7.6740613, 47.4872804 ], + [ 7.6740563, 47.4872769 ], + [ 7.674037, 47.4872637 ], + [ 7.6740354, 47.4872626 ], + [ 7.6740283, 47.4872577 ], + [ 7.6740248, 47.4872553 ], + [ 7.6740178, 47.4872503 ], + [ 7.6740135, 47.4872472 ], + [ 7.67401, 47.4872447 ], + [ 7.674006, 47.4872417 ], + [ 7.6740026, 47.4872392 ], + [ 7.6739998, 47.487237 ], + [ 7.6739973, 47.4872351 ], + [ 7.6739941, 47.4872326 ], + [ 7.6739912, 47.4872303 ], + [ 7.6739775, 47.4872193 ], + [ 7.6739627, 47.4872087 ], + [ 7.6739591, 47.4872061 ], + [ 7.6739557, 47.4872036 ], + [ 7.6739517, 47.4872007 ], + [ 7.6739484000000004, 47.4871981 ], + [ 7.6739465, 47.4871967 ], + [ 7.6739429, 47.4871939 ], + [ 7.6739397, 47.4871914 ], + [ 7.6739356, 47.4871881 ], + [ 7.6739249, 47.4871793 ], + [ 7.6739196, 47.487175 ], + [ 7.6739064, 47.487163699999996 ], + [ 7.6739027, 47.4871605 ], + [ 7.6739025, 47.4871603 ], + [ 7.6738997, 47.4871579 ], + [ 7.6738962, 47.4871547 ], + [ 7.6738885, 47.4871478 ], + [ 7.6738791, 47.4871394 ], + [ 7.6738751, 47.4871358 ], + [ 7.6738676, 47.487129 ], + [ 7.673861, 47.487123 ], + [ 7.6738578, 47.4871202 ], + [ 7.6738551, 47.4871177 ], + [ 7.6738503, 47.4871132 ], + [ 7.6738433, 47.4871066 ], + [ 7.6738387, 47.4871021 ], + [ 7.673832, 47.4870953 ], + [ 7.6738312, 47.4870945 ], + [ 7.6738287, 47.487092 ], + [ 7.6738246, 47.4870877 ], + [ 7.6738231, 47.4870861 ], + [ 7.6738207, 47.4870836 ], + [ 7.6738174, 47.4870802 ], + [ 7.6738135, 47.4870759 ], + [ 7.6738108, 47.4870729 ], + [ 7.6738085, 47.4870704 ], + [ 7.6738046, 47.4870659 ], + [ 7.6738043000000005, 47.4870656 ], + [ 7.6738026999999995, 47.4870638 ], + [ 7.6737952, 47.4870553 ], + [ 7.6737929, 47.4870528 ], + [ 7.6737891, 47.4870484 ], + [ 7.6737869, 47.487046 ], + [ 7.6737864, 47.4870454 ], + [ 7.6737843, 47.4870428 ], + [ 7.6737805, 47.4870384 ], + [ 7.6737733, 47.4870295 ], + [ 7.6737717, 47.4870276 ], + [ 7.6737714, 47.4870271 ], + [ 7.6737638, 47.4870183 ], + [ 7.6737595, 47.4870131 ], + [ 7.6737559, 47.4870086 ], + [ 7.6737507, 47.4870019 ], + [ 7.6737487, 47.4869993 ], + [ 7.6737464, 47.4869963 ], + [ 7.6737416, 47.4869895 ], + [ 7.6737397, 47.4869867 ], + [ 7.6737385, 47.4869849 ], + [ 7.673733, 47.4869767 ], + [ 7.6737295, 47.4869713 ], + [ 7.6737282, 47.4869692 ], + [ 7.6737266, 47.4869669 ], + [ 7.6737264, 47.4869665 ], + [ 7.673724, 47.4869633 ], + [ 7.6737225, 47.4869612 ], + [ 7.6737162, 47.4869521 ], + [ 7.6737125, 47.4869468 ], + [ 7.6737082, 47.4869403 ], + [ 7.673706, 47.4869369 ], + [ 7.6737041999999995, 47.4869342 ], + [ 7.6737021, 47.4869308 ], + [ 7.6736981, 47.4869241 ], + [ 7.6736964, 47.486921 ], + [ 7.6736942, 47.4869176 ], + [ 7.6736916, 47.4869135 ], + [ 7.6736884, 47.4869085 ], + [ 7.673687, 47.4869063 ], + [ 7.673685, 47.486903 ], + [ 7.6736831, 47.4868999 ], + [ 7.6736815, 47.4868973 ], + [ 7.6736801, 47.4868951 ], + [ 7.6736788, 47.486893 ], + [ 7.6736775999999995, 47.4868912 ], + [ 7.6736757, 47.4868882 ], + [ 7.6736699, 47.4868789 ], + [ 7.6736687, 47.4868769 ], + [ 7.6736636, 47.4868683 ], + [ 7.6736618, 47.486865 ], + [ 7.6736554, 47.4868547 ], + [ 7.6736553, 47.4868545 ], + [ 7.6736497, 47.486845 ], + [ 7.673648, 47.4868419 ], + [ 7.6736419, 47.4868319 ], + [ 7.6736364, 47.4868225 ], + [ 7.6736348, 47.4868197 ], + [ 7.6736287999999995, 47.48681 ], + [ 7.6736286, 47.4868096 ], + [ 7.6736241, 47.486802 ], + [ 7.6736233, 47.4868006 ], + [ 7.6736219, 47.4867985 ], + [ 7.6736198, 47.4867955 ], + [ 7.6736135999999995, 47.4867864 ], + [ 7.6736085, 47.4867785 ], + [ 7.6736064, 47.486775 ], + [ 7.6736043, 47.4867718 ], + [ 7.6736015, 47.4867674 ], + [ 7.6736006, 47.4867659 ], + [ 7.6735986, 47.486763 ], + [ 7.6735962, 47.4867597 ], + [ 7.6735935, 47.4867556 ], + [ 7.6735873, 47.4867465 ], + [ 7.6735818, 47.486738 ], + [ 7.6735796, 47.4867345 ], + [ 7.6735775, 47.4867312 ], + [ 7.6735747, 47.4867269 ], + [ 7.6735738, 47.4867253 ], + [ 7.6735717, 47.4867223 ], + [ 7.6735694, 47.486719 ], + [ 7.6735666, 47.4867151 ], + [ 7.6735605, 47.4867059 ], + [ 7.6735551, 47.4866976 ], + [ 7.6735529, 47.4866941 ], + [ 7.6735509, 47.486691 ], + [ 7.6735482, 47.4866869 ], + [ 7.6735475, 47.4866857 ], + [ 7.6735459, 47.4866833 ], + [ 7.6735372, 47.4866712 ], + [ 7.6735343, 47.486667 ], + [ 7.6735299, 47.4866606 ], + [ 7.6735287, 47.4866588 ], + [ 7.6735269, 47.4866562 ], + [ 7.6735218, 47.4866484 ], + [ 7.6735196, 47.4866448 ], + [ 7.6735175, 47.4866415 ], + [ 7.6735147999999995, 47.4866374 ], + [ 7.6735142, 47.4866364 ], + [ 7.6735129, 47.4866345 ], + [ 7.6735093, 47.4866295 ], + [ 7.6735065, 47.4866258 ], + [ 7.6735050000000005, 47.4866238 ], + [ 7.6735042, 47.4866227 ], + [ 7.6735028, 47.4866207 ], + [ 7.6735001, 47.4866171 ], + [ 7.6734984, 47.4866148 ], + [ 7.6734971, 47.4866131 ], + [ 7.6734953, 47.4866105 ], + [ 7.6734922999999995, 47.4866065 ], + [ 7.6734918, 47.4866058 ], + [ 7.6734884999999995, 47.4866012 ], + [ 7.6734822, 47.4865921 ], + [ 7.6734767999999995, 47.4865842 ], + [ 7.673475, 47.4865813 ], + [ 7.6734734, 47.4865789 ], + [ 7.6734721, 47.4865771 ], + [ 7.673466, 47.4865679 ], + [ 7.6734617, 47.4865612 ], + [ 7.6734599, 47.4865583 ], + [ 7.6734580999999995, 47.4865557 ], + [ 7.673456, 47.4865523 ], + [ 7.6734518, 47.4865458 ], + [ 7.6734504, 47.4865436 ], + [ 7.6734487, 47.4865409 ], + [ 7.6734482, 47.4865401 ], + [ 7.6734431, 47.4865313 ], + [ 7.6734413, 47.486528 ], + [ 7.6734349, 47.4865178 ], + [ 7.6734349, 47.4865176 ], + [ 7.6734297, 47.4865089 ], + [ 7.6734284, 47.4865065 ], + [ 7.6734268, 47.486504 ], + [ 7.6734244, 47.4865002 ], + [ 7.6734212, 47.4864953 ], + [ 7.6734200999999995, 47.4864935 ], + [ 7.6734182, 47.4864903 ], + [ 7.6734164, 47.4864875 ], + [ 7.6734143, 47.4864841 ], + [ 7.6734137, 47.4864831 ], + [ 7.6734124, 47.486481 ], + [ 7.6734051999999995, 47.4864701 ], + [ 7.6734012, 47.4864638 ], + [ 7.6734007, 47.486463 ], + [ 7.6733985, 47.4864594 ], + [ 7.6733964, 47.4864562 ], + [ 7.6733942, 47.4864527 ], + [ 7.6733933, 47.4864512 ], + [ 7.6733919, 47.4864489 ], + [ 7.6733906, 47.4864469 ], + [ 7.673389, 47.4864444 ], + [ 7.6733849, 47.4864379 ], + [ 7.6733837, 47.486436 ], + [ 7.673382, 47.4864333 ], + [ 7.6733814, 47.4864323 ], + [ 7.6733765, 47.4864239 ], + [ 7.6733744999999995, 47.4864205 ], + [ 7.6733738, 47.4864194 ], + [ 7.6733737, 47.4864191 ], + [ 7.6733724, 47.4864171 ], + [ 7.6733668, 47.4864078 ], + [ 7.673361, 47.4863975 ], + [ 7.6733595999999995, 47.4863949 ], + [ 7.6733575, 47.4863907 ], + [ 7.6733561, 47.4863881 ], + [ 7.6733545, 47.4863851 ], + [ 7.6733518, 47.48638 ], + [ 7.6733502, 47.4863767 ], + [ 7.6733501, 47.4863763 ], + [ 7.6733478, 47.4863716 ], + [ 7.6733465, 47.4863693 ], + [ 7.6733451, 47.4863665 ], + [ 7.6733428, 47.4863618 ], + [ 7.6733407, 47.4863575 ], + [ 7.6733397, 47.4863555 ], + [ 7.6733384000000004, 47.486353 ], + [ 7.6733362, 47.4863484 ], + [ 7.6733341, 47.486344 ], + [ 7.6733331, 47.4863421 ], + [ 7.6733318, 47.4863395 ], + [ 7.6733302, 47.4863364 ], + [ 7.6733296, 47.4863351 ], + [ 7.6733276, 47.486331 ], + [ 7.6733267, 47.4863292 ], + [ 7.6733251, 47.4863261 ], + [ 7.6733232000000005, 47.4863222 ], + [ 7.6733212, 47.4863181 ], + [ 7.6733202, 47.4863163 ], + [ 7.6733183, 47.4863126 ], + [ 7.6733167, 47.4863094 ], + [ 7.6733146, 47.4863051 ], + [ 7.6733136, 47.4863032 ], + [ 7.6733115, 47.4862992 ], + [ 7.6733097, 47.4862954 ], + [ 7.6733072, 47.4862903 ], + [ 7.6733058, 47.4862875 ], + [ 7.6733048, 47.4862857 ], + [ 7.6733018, 47.4862793 ], + [ 7.6733005, 47.4862767 ], + [ 7.6732986, 47.4862724 ], + [ 7.6732938, 47.4862614 ], + [ 7.6732911, 47.4862551 ], + [ 7.673288, 47.4862469 ], + [ 7.673287, 47.4862438 ], + [ 7.6732841, 47.4862349 ], + [ 7.6732834, 47.4862327 ], + [ 7.6732826, 47.4862296 ], + [ 7.6732809, 47.4862233 ], + [ 7.6732800999999995, 47.4862202 ], + [ 7.6732794, 47.4862174 ], + [ 7.673278, 47.4862112 ], + [ 7.6732766, 47.486205 ], + [ 7.6732762, 47.4862027 ], + [ 7.6732756, 47.4861997 ], + [ 7.6732743, 47.4861918 ], + [ 7.6732739, 47.4861888 ], + [ 7.6732732, 47.4861831 ], + [ 7.6732729, 47.48618 ], + [ 7.6732727, 47.4861784 ], + [ 7.6732723, 47.4861746 ], + [ 7.6732715, 47.4861641 ], + [ 7.6732715, 47.486164 ], + [ 7.673271, 47.4861609 ], + [ 7.6732700000000005, 47.4861536 ], + [ 7.6732685, 47.4861406 ], + [ 7.673268, 47.4861374 ], + [ 7.6732676, 47.4861342 ], + [ 7.6732671, 47.4861306 ], + [ 7.6732664, 47.486125 ], + [ 7.6732664, 47.4861245 ], + [ 7.673266, 47.4861208 ], + [ 7.6732656, 47.4861161 ], + [ 7.6732654, 47.4861124 ], + [ 7.6732651, 47.4861088 ], + [ 7.6732648999999995, 47.4861051 ], + [ 7.6732648, 47.4861023 ], + [ 7.6732647, 47.4860985 ], + [ 7.6732645999999995, 47.486095 ], + [ 7.6732644, 47.4860874 ], + [ 7.6732644, 47.4860848 ], + [ 7.6732644, 47.4860832 ], + [ 7.6732644, 47.4860756 ], + [ 7.6732645, 47.486072 ], + [ 7.6732645999999995, 47.4860682 ], + [ 7.6732647, 47.4860651 ], + [ 7.6732648, 47.4860613 ], + [ 7.673265, 47.4860574 ], + [ 7.6732653, 47.4860537 ], + [ 7.6732657, 47.4860485 ], + [ 7.673266, 47.4860449 ], + [ 7.673266, 47.4860445 ], + [ 7.6732667, 47.4860382 ], + [ 7.6732672, 47.486034599999996 ], + [ 7.6732678, 47.48603 ], + [ 7.6732685, 47.4860253 ], + [ 7.6732696, 47.4860175 ], + [ 7.6732702, 47.4860135 ], + [ 7.6732707, 47.4860105 ], + [ 7.6732716, 47.4860056 ], + [ 7.6732716, 47.4860053 ], + [ 7.6732721999999995, 47.4860024 ], + [ 7.6732729, 47.4859988 ], + [ 7.6732756, 47.4859863 ], + [ 7.673277, 47.4859798 ], + [ 7.6732778, 47.4859766 ], + [ 7.6732796, 47.4859699 ], + [ 7.6732821, 47.4859614 ], + [ 7.6732822, 47.485961 ], + [ 7.6732837, 47.485956 ], + [ 7.6732846, 47.4859532 ], + [ 7.6732869, 47.4859465 ], + [ 7.6732933, 47.4859285 ], + [ 7.6732952999999995, 47.4859231 ], + [ 7.6732957, 47.4859223 ], + [ 7.6733016, 47.4859071 ], + [ 7.6733031, 47.4859036 ], + [ 7.6733036, 47.4859023 ], + [ 7.6733042000000005, 47.485901 ], + [ 7.6733072, 47.485894 ], + [ 7.6733079, 47.4858926 ], + [ 7.6733087, 47.4858905 ], + [ 7.6733101999999995, 47.4858868 ], + [ 7.6733138, 47.4858783 ], + [ 7.6733155, 47.4858741 ], + [ 7.6733175, 47.4858693 ], + [ 7.6733187, 47.4858666 ], + [ 7.6733227, 47.4858579 ], + [ 7.6733242, 47.4858549 ], + [ 7.6733266, 47.4858495 ], + [ 7.6733296, 47.4858433 ], + [ 7.6733308000000005, 47.485841 ], + [ 7.6733318, 47.4858388 ], + [ 7.6733339, 47.4858344 ], + [ 7.6733361, 47.4858298 ], + [ 7.6733376, 47.485827 ], + [ 7.6733386, 47.485825 ], + [ 7.6733405, 47.4858207 ], + [ 7.6733427, 47.4858163 ], + [ 7.6733442, 47.4858134 ], + [ 7.6733452, 47.4858115 ], + [ 7.6733471, 47.485807199999996 ], + [ 7.6733493, 47.4858028 ], + [ 7.6733509, 47.4857996 ], + [ 7.6733519999999995, 47.4857974 ], + [ 7.6733542, 47.4857928 ], + [ 7.6733559, 47.4857893 ], + [ 7.6733587, 47.4857839 ], + [ 7.6733602, 47.4857811 ], + [ 7.6733614, 47.4857786 ], + [ 7.6733614, 47.4857785 ], + [ 7.6733633999999995, 47.4857746 ], + [ 7.6733648, 47.485772 ], + [ 7.6733703, 47.485762 ], + [ 7.6733758, 47.4857528 ], + [ 7.6733762, 47.485752 ], + [ 7.6733798, 47.485745 ], + [ 7.673381, 47.4857428 ], + [ 7.673382, 47.4857409 ], + [ 7.6733838, 47.4857375 ], + [ 7.6733851, 47.4857349 ], + [ 7.6733907, 47.485725 ], + [ 7.6733963, 47.4857157 ], + [ 7.6733972, 47.4857141 ], + [ 7.6733972999999995, 47.485714 ], + [ 7.6733977, 47.4857133 ], + [ 7.6733993, 47.4857103 ], + [ 7.6734047, 47.4857008 ], + [ 7.6734048, 47.4857007 ], + [ 7.6734075, 47.4856962 ], + [ 7.6734091, 47.4856936 ], + [ 7.6734093, 47.4856932 ], + [ 7.6734127999999995, 47.4856866 ], + [ 7.6734139, 47.4856845 ], + [ 7.6734148, 47.4856827 ], + [ 7.6734165, 47.4856794 ], + [ 7.6734179000000005, 47.4856767 ], + [ 7.6734231, 47.4856675 ], + [ 7.6734281, 47.4856589 ], + [ 7.6734282, 47.4856587 ], + [ 7.6734311, 47.4856532 ], + [ 7.6734317, 47.4856519 ], + [ 7.6734335, 47.4856483 ], + [ 7.6734349, 47.4856453 ], + [ 7.6734371, 47.485641 ], + [ 7.6734383, 47.4856388 ], + [ 7.6734405, 47.4856342 ], + [ 7.6734416, 47.4856318 ], + [ 7.6734451, 47.4856251 ], + [ 7.6734466, 47.4856223 ], + [ 7.6734483, 47.485619 ], + [ 7.6734487, 47.4856181 ], + [ 7.6734499, 47.4856154 ], + [ 7.673451, 47.485613 ], + [ 7.6734546, 47.4856052 ], + [ 7.673456, 47.4856025 ], + [ 7.6734583, 47.4855974 ], + [ 7.6734612, 47.4855913 ], + [ 7.6734623, 47.4855891 ], + [ 7.6734634, 47.485587 ], + [ 7.6734655, 47.4855825 ], + [ 7.6734678, 47.4855777 ], + [ 7.6734691999999995, 47.4855749 ], + [ 7.6734702, 47.4855731 ], + [ 7.6734721, 47.4855688 ], + [ 7.6734743, 47.4855642 ], + [ 7.6734755, 47.4855618 ], + [ 7.6734763, 47.4855604 ], + [ 7.6734781, 47.4855565 ], + [ 7.6734807, 47.4855509 ], + [ 7.6734808999999995, 47.4855506 ], + [ 7.6734813, 47.4855496 ], + [ 7.673483, 47.4855455 ], + [ 7.6734861, 47.4855387 ], + [ 7.6734869, 47.4855368 ], + [ 7.6734907, 47.4855284 ], + [ 7.6734922999999995, 47.4855249 ], + [ 7.6734948, 47.4855188 ], + [ 7.6734985, 47.4855103 ], + [ 7.6734989, 47.4855095 ], + [ 7.6734994, 47.4855083 ], + [ 7.6735005, 47.4855057 ], + [ 7.6735038, 47.4854976 ], + [ 7.6735062, 47.4854913 ], + [ 7.6735063, 47.4854911 ], + [ 7.6735088000000005, 47.4854851 ], + [ 7.6735104, 47.4854803 ], + [ 7.6735116, 47.4854772 ], + [ 7.6735131, 47.4854732 ], + [ 7.6735147, 47.4854692 ], + [ 7.6735149, 47.4854688 ], + [ 7.6735153, 47.4854675 ], + [ 7.6735175, 47.4854613 ], + [ 7.6735185999999995, 47.4854582 ], + [ 7.6735198, 47.4854552 ], + [ 7.6735223, 47.485449 ], + [ 7.6735231, 47.4854472 ], + [ 7.6735247, 47.485443 ], + [ 7.673525, 47.4854417 ], + [ 7.6735256, 47.4854394 ], + [ 7.6735261999999995, 47.4854374 ], + [ 7.6735272, 47.4854343 ], + [ 7.6735295, 47.4854269 ], + [ 7.6735325, 47.4854185 ], + [ 7.6735347, 47.4854117 ], + [ 7.6735356, 47.4854089 ], + [ 7.6735373, 47.4854038 ], + [ 7.6735379, 47.4854017 ], + [ 7.6735387, 47.4853989 ], + [ 7.6735393, 47.485397 ], + [ 7.6735402, 47.4853938 ], + [ 7.6735428, 47.4853858 ], + [ 7.6735459, 47.4853769 ], + [ 7.6735484, 47.4853696 ], + [ 7.6735499, 47.4853652 ], + [ 7.6735524, 47.4853583 ], + [ 7.6735541, 47.4853531 ], + [ 7.6735561, 47.4853462 ], + [ 7.6735565999999995, 47.4853445 ], + [ 7.6735600999999996, 47.4853333 ], + [ 7.6735613, 47.4853298 ], + [ 7.6735629, 47.4853248 ], + [ 7.6735635, 47.4853228 ], + [ 7.6735645, 47.4853189 ], + [ 7.6735654, 47.4853158 ], + [ 7.6735657, 47.4853148 ], + [ 7.6735671, 47.4853101 ], + [ 7.6735692, 47.4853034 ], + [ 7.6735702, 47.4852997 ], + [ 7.6735714, 47.4852954 ], + [ 7.6735717, 47.4852944 ], + [ 7.6735726, 47.4852912 ], + [ 7.673575, 47.4852838 ], + [ 7.6735766, 47.4852789 ], + [ 7.6735772, 47.4852772 ], + [ 7.6735818, 47.4852641 ], + [ 7.6735843, 47.4852571 ], + [ 7.6735878, 47.4852482 ], + [ 7.6735896, 47.4852436 ], + [ 7.6735903, 47.4852418 ], + [ 7.673591, 47.48524 ], + [ 7.6735921, 47.4852373 ], + [ 7.6735944, 47.4852318 ], + [ 7.6735945999999995, 47.4852311 ], + [ 7.6735967, 47.4852254 ], + [ 7.6735979, 47.4852224 ], + [ 7.6735983, 47.4852212 ], + [ 7.6736015, 47.4852134 ], + [ 7.6736023, 47.4852117 ], + [ 7.6736066, 47.4852007 ], + [ 7.6736084, 47.4851955 ], + [ 7.6736096, 47.4851922 ], + [ 7.6736122, 47.4851855 ], + [ 7.6736139, 47.4851804 ], + [ 7.6736147, 47.4851778 ], + [ 7.6736158, 47.4851748 ], + [ 7.6736164, 47.4851727 ], + [ 7.6736173, 47.4851694 ], + [ 7.6736177, 47.4851679 ], + [ 7.6736187000000005, 47.4851648 ], + [ 7.6736208, 47.4851582 ], + [ 7.6736217, 47.4851553 ], + [ 7.6736224, 47.4851533 ], + [ 7.6736245, 47.4851473 ], + [ 7.673627, 47.48514 ], + [ 7.6736292, 47.4851338 ], + [ 7.6736322, 47.4851256 ], + [ 7.6736346, 47.485119 ], + [ 7.6736368, 47.485113 ], + [ 7.673637, 47.4851125 ], + [ 7.673643, 47.4850973 ], + [ 7.6736487, 47.4850838 ], + [ 7.6732, 47.4850241 ], + [ 7.6728214999999995, 47.4849737 ], + [ 7.6725662, 47.4851477 ], + [ 7.6721260000000004, 47.4852405 ], + [ 7.672059, 47.4854015 ], + [ 7.6721959, 47.4857228 ], + [ 7.6723331, 47.4860901 ], + [ 7.6722754, 47.4861163 ], + [ 7.6722671, 47.48612 ], + [ 7.6721492, 47.4861736 ], + [ 7.6719106, 47.4864753 ], + [ 7.6719017, 47.4864866 ], + [ 7.6718972, 47.4864923 ], + [ 7.6719052, 47.486558 ], + [ 7.6719079, 47.4865805 ], + [ 7.6719116, 47.4866109 ], + [ 7.6719214000000004, 47.4866913 ], + [ 7.6719291, 47.4867546 ], + [ 7.671941, 47.4868522 ], + [ 7.6719411, 47.486852999999996 ], + [ 7.6719412, 47.4868537 ], + [ 7.6719438, 47.486875 ], + [ 7.6719522, 47.4869442 ], + [ 7.6719574999999995, 47.4869773 ], + [ 7.6719877, 47.4871641 ], + [ 7.6720051, 47.4872727 ], + [ 7.6720089, 47.487296 ], + [ 7.6720231, 47.487384 ], + [ 7.6722526, 47.4874187 ], + [ 7.6725367, 47.4874616 ], + [ 7.6730503, 47.4875392 ], + [ 7.6732131, 47.4875621 ], + [ 7.6732498, 47.4875673 ], + [ 7.6733725, 47.4875846 ], + [ 7.6734427, 47.4875945 ], + [ 7.6735052, 47.4876033 ], + [ 7.6737535999999995, 47.4876383 ], + [ 7.6738352, 47.4876498 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr151", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Riffengraben", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Riffengraben", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Riffengraben", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Riffengraben", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8337412, 47.3704691 ], + [ 7.8337777, 47.3705342 ], + [ 7.8339898, 47.3705142 ], + [ 7.8340998, 47.3705427 ], + [ 7.8342211, 47.3706673 ], + [ 7.8342274, 47.3710571 ], + [ 7.8341524, 47.3714494 ], + [ 7.8341776, 47.3715071 ], + [ 7.8342591, 47.371514 ], + [ 7.8343188999999995, 47.3714561 ], + [ 7.8344152, 47.3710877 ], + [ 7.8344305, 47.3707943 ], + [ 7.8344261, 47.3706402 ], + [ 7.8342649, 47.370381 ], + [ 7.8341088, 47.3703261 ], + [ 7.8337413, 47.3703996 ], + [ 7.8337412, 47.3704691 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns196", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Hecken-Komplex Schmutzberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Hecken-Komplex Schmutzberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Hecken-Komplex Schmutzberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Hecken-Komplex Schmutzberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8940190999999995, 47.4166279 ], + [ 7.8941238, 47.4164562 ], + [ 7.8940363, 47.4163896 ], + [ 7.8939384, 47.4164226 ], + [ 7.8938814, 47.4164726 ], + [ 7.8936557, 47.4163844 ], + [ 7.8929228, 47.4163459 ], + [ 7.8926399, 47.416305 ], + [ 7.8924855, 47.4162834 ], + [ 7.8924275999999995, 47.416276 ], + [ 7.8923958, 47.416272 ], + [ 7.8922635, 47.4162539 ], + [ 7.892248, 47.4162518 ], + [ 7.8918788, 47.4161868 ], + [ 7.8914494, 47.4161125 ], + [ 7.8913359, 47.4160914 ], + [ 7.8910934, 47.4160451 ], + [ 7.8908225, 47.4160038 ], + [ 7.8905532, 47.4159426 ], + [ 7.8904619, 47.4159077 ], + [ 7.8903706, 47.4158728 ], + [ 7.8902608999999995, 47.4161911 ], + [ 7.8902617, 47.416477 ], + [ 7.8902617, 47.4165033 ], + [ 7.8902458, 47.4165036 ], + [ 7.8899203, 47.4165061 ], + [ 7.8897816, 47.416510099999996 ], + [ 7.8897818, 47.4166221 ], + [ 7.8896676, 47.4166936 ], + [ 7.8895215, 47.416772 ], + [ 7.889349, 47.4168068 ], + [ 7.8890134, 47.4168229 ], + [ 7.888982, 47.4169234 ], + [ 7.8889572999999995, 47.417002600000004 ], + [ 7.8888888, 47.4172009 ], + [ 7.8888843, 47.4172748 ], + [ 7.8889258, 47.4173588 ], + [ 7.8889826, 47.4174544 ], + [ 7.8889886, 47.4174659 ], + [ 7.8889952, 47.4174773 ], + [ 7.8890024, 47.4174885 ], + [ 7.8890101, 47.4174996 ], + [ 7.8890184, 47.4175104 ], + [ 7.8890272, 47.4175211 ], + [ 7.8890365, 47.4175316 ], + [ 7.8890464, 47.4175418 ], + [ 7.889057, 47.4175507 ], + [ 7.8890682, 47.4175592 ], + [ 7.88908, 47.4175674 ], + [ 7.8890923, 47.4175752 ], + [ 7.8891051999999995, 47.4175826 ], + [ 7.8891185, 47.4175896 ], + [ 7.8891269, 47.4175948 ], + [ 7.8891358, 47.4175996 ], + [ 7.8891452, 47.4176041 ], + [ 7.8891549, 47.4176082 ], + [ 7.8891649, 47.4176119 ], + [ 7.8891753, 47.4176152 ], + [ 7.8891859, 47.417618 ], + [ 7.8891968, 47.4176204 ], + [ 7.889208, 47.4176224 ], + [ 7.8892194, 47.4176239 ], + [ 7.8892309, 47.4176249 ], + [ 7.8892425, 47.4176254 ], + [ 7.8892541, 47.4176255 ], + [ 7.8892657, 47.417625 ], + [ 7.8892772, 47.4176241 ], + [ 7.8892886, 47.4176227 ], + [ 7.8892999, 47.4176209 ], + [ 7.8893109, 47.4176185 ], + [ 7.8893254, 47.4176164 ], + [ 7.8893398, 47.4176139 ], + [ 7.8893539, 47.417611 ], + [ 7.8893679, 47.4176077 ], + [ 7.8893816999999995, 47.4176039 ], + [ 7.8893951, 47.4175998 ], + [ 7.8894839, 47.4175685 ], + [ 7.8895777, 47.4175353 ], + [ 7.8899317, 47.4173348 ], + [ 7.890261, 47.4171471 ], + [ 7.8903256, 47.4170142 ], + [ 7.8903349, 47.4169421 ], + [ 7.8904335, 47.4169322 ], + [ 7.890684, 47.4169069 ], + [ 7.8907409, 47.4169009 ], + [ 7.890999, 47.4168962 ], + [ 7.8913709999999995, 47.4168741 ], + [ 7.8917093, 47.4168695 ], + [ 7.8918398, 47.4168785 ], + [ 7.89204, 47.4168923 ], + [ 7.8922622, 47.4168912 ], + [ 7.8924003, 47.4168787 ], + [ 7.8924116, 47.4168709 ], + [ 7.8924229, 47.4168632 ], + [ 7.8924413, 47.4167968 ], + [ 7.8924653, 47.4166955 ], + [ 7.8924828, 47.4166332 ], + [ 7.892483, 47.4166326 ], + [ 7.8924882, 47.416603 ], + [ 7.8925722, 47.4166192 ], + [ 7.8929019, 47.4166781 ], + [ 7.8930881, 47.4167122 ], + [ 7.8932296, 47.4167369 ], + [ 7.8935343, 47.4167886 ], + [ 7.89383, 47.4168371 ], + [ 7.8941289, 47.4168804 ], + [ 7.8944130999999995, 47.4169287 ], + [ 7.8944682, 47.4169386 ], + [ 7.8947076, 47.4169861 ], + [ 7.8947197, 47.4169888 ], + [ 7.8947319, 47.4169909 ], + [ 7.8947444, 47.4169924 ], + [ 7.8947571, 47.4169932 ], + [ 7.8947697, 47.4169935 ], + [ 7.8947824, 47.4169931 ], + [ 7.894795, 47.416992 ], + [ 7.8948073999999995, 47.4169904 ], + [ 7.8948316, 47.4169852 ], + [ 7.8949004, 47.4169611 ], + [ 7.8949189, 47.4169464 ], + [ 7.894938, 47.4168941 ], + [ 7.8948908, 47.4168501 ], + [ 7.8948573, 47.416819 ], + [ 7.8940190999999995, 47.4166279 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr069", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Wolstel", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Wolstel", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Wolstel", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Wolstel", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.0100985, 46.2106256 ], + [ 7.0101054, 46.2108021 ], + [ 7.010129, 46.210978 ], + [ 7.010169, 46.2111524 ], + [ 7.0102255, 46.2113246 ], + [ 7.010298, 46.2114938 ], + [ 7.0103863, 46.2116595 ], + [ 7.01049, 46.2118207 ], + [ 7.0106087, 46.2119769 ], + [ 7.0107418, 46.2121274 ], + [ 7.0108888, 46.2122715 ], + [ 7.0110491, 46.2124086 ], + [ 7.0110905, 46.2124412 ], + [ 7.011138, 46.2125261 ], + [ 7.0111566, 46.2125572 ], + [ 7.0112431, 46.2128386 ], + [ 7.0112845, 46.2129596 ], + [ 7.011357, 46.2131289 ], + [ 7.0114453, 46.2132945 ], + [ 7.0115491, 46.2134558 ], + [ 7.0116677, 46.213612 ], + [ 7.0117775, 46.2137376 ], + [ 7.0118383, 46.2138286 ], + [ 7.0118383, 46.2138287 ], + [ 7.011957, 46.2139849 ], + [ 7.0120902, 46.2141353 ], + [ 7.0122372, 46.2142794 ], + [ 7.0123976, 46.2144166 ], + [ 7.0125704, 46.2145461 ], + [ 7.0127552, 46.2146675 ], + [ 7.0129509, 46.2147803 ], + [ 7.0131569, 46.2148839 ], + [ 7.0133722, 46.214978 ], + [ 7.0135959, 46.2150621 ], + [ 7.013827, 46.2151358 ], + [ 7.0140646, 46.215199 ], + [ 7.0143077, 46.2152511 ], + [ 7.0144088, 46.2152693 ], + [ 7.0161252, 46.2158709 ], + [ 7.016139, 46.2158757 ], + [ 7.0163701, 46.2159494 ], + [ 7.0166077, 46.2160125 ], + [ 7.0168508, 46.2160647 ], + [ 7.0170982, 46.2161057 ], + [ 7.017349, 46.2161354 ], + [ 7.017602, 46.2161537 ], + [ 7.0178562, 46.2161604 ], + [ 7.0179433, 46.21616 ], + [ 7.0268965, 46.2160539 ], + [ 7.0270636, 46.2160494 ], + [ 7.0270637, 46.2160494 ], + [ 7.027317, 46.216033 ], + [ 7.0275682, 46.2160052 ], + [ 7.0278163, 46.215966 ], + [ 7.0280601, 46.2159156 ], + [ 7.0282987, 46.2158542 ], + [ 7.0285309, 46.2157822 ], + [ 7.0287559, 46.2156998 ], + [ 7.0289727, 46.2156073 ], + [ 7.0291802, 46.2155052 ], + [ 7.0293777, 46.2153939 ], + [ 7.0295643, 46.2152738 ], + [ 7.0297392, 46.2151456 ], + [ 7.0299016, 46.2150097 ], + [ 7.0300508, 46.2148666 ], + [ 7.0301863, 46.2147172 ], + [ 7.0303074, 46.2145619 ], + [ 7.0304136, 46.2144014 ], + [ 7.0305044, 46.2142364 ], + [ 7.0305795, 46.2140677 ], + [ 7.0306386, 46.2138959 ], + [ 7.0306813, 46.2137219 ], + [ 7.0307076, 46.2135462 ], + [ 7.0307125, 46.2134902 ], + [ 7.030761, 46.2128156 ], + [ 7.0307607, 46.2127866 ], + [ 7.0307657, 46.2126952 ], + [ 7.0307587, 46.2125187 ], + [ 7.0307351, 46.2123429 ], + [ 7.030695, 46.2121685 ], + [ 7.0306385, 46.2119963 ], + [ 7.030566, 46.211827 ], + [ 7.0304776, 46.2116614 ], + [ 7.0304389, 46.2116013 ], + [ 7.0305102, 46.2104811 ], + [ 7.0305139, 46.2103759 ], + [ 7.030507, 46.2101994 ], + [ 7.0304833, 46.2100236 ], + [ 7.0304432, 46.2098492 ], + [ 7.0303868, 46.209677 ], + [ 7.0303142, 46.2095077 ], + [ 7.0302258, 46.2093421 ], + [ 7.0302021, 46.2093027 ], + [ 7.0285653, 46.2066394 ], + [ 7.0287699, 46.2053096 ], + [ 7.0287822, 46.2052135 ], + [ 7.0287918, 46.2050371 ], + [ 7.0287849, 46.2048605 ], + [ 7.0287613, 46.2046847 ], + [ 7.0287211, 46.2045103 ], + [ 7.0286647, 46.2043381 ], + [ 7.0285921, 46.2041689 ], + [ 7.0285038, 46.2040033 ], + [ 7.0284, 46.203842 ], + [ 7.0282813, 46.2036858 ], + [ 7.0281481, 46.2035354 ], + [ 7.0280011, 46.2033913 ], + [ 7.0278408, 46.2032542 ], + [ 7.0276679, 46.2031247 ], + [ 7.0274832, 46.2030033 ], + [ 7.0272874, 46.2028905 ], + [ 7.0270814, 46.2027869 ], + [ 7.0268662, 46.2026929 ], + [ 7.0266425, 46.2026088 ], + [ 7.0264114, 46.2025351 ], + [ 7.0261738, 46.202472 ], + [ 7.0259309, 46.2024199 ], + [ 7.0256835, 46.2023789 ], + [ 7.0254328, 46.2023492 ], + [ 7.0253041, 46.2023384 ], + [ 7.0244506, 46.2022773 ], + [ 7.0232161, 46.2021887 ], + [ 7.0223996, 46.2021298 ], + [ 7.0223812, 46.2021285 ], + [ 7.0216198, 46.2020762 ], + [ 7.0215242, 46.2020705 ], + [ 7.0209851, 46.2020428 ], + [ 7.0209728, 46.2020421 ], + [ 7.0207187, 46.2020354 ], + [ 7.0204644, 46.2020403 ], + [ 7.0202112, 46.2020566 ], + [ 7.01996, 46.2020845 ], + [ 7.019712, 46.2021236 ], + [ 7.0194683, 46.202174 ], + [ 7.0192298, 46.2022353 ], + [ 7.0189975, 46.2023073 ], + [ 7.0188984, 46.2023421 ], + [ 7.0185062, 46.2024843 ], + [ 7.0183886, 46.2025161 ], + [ 7.0181564, 46.2025881 ], + [ 7.0179314, 46.2026705 ], + [ 7.0177147, 46.2027629 ], + [ 7.0175072, 46.202865 ], + [ 7.017504, 46.2028667 ], + [ 7.0173514, 46.2029473 ], + [ 7.0171571, 46.2030569 ], + [ 7.0169706, 46.2031769 ], + [ 7.0167957, 46.2033052 ], + [ 7.0167031, 46.2033804 ], + [ 7.0165941, 46.2034724 ], + [ 7.016539, 46.2035202 ], + [ 7.0164423, 46.2035502 ], + [ 7.0162173, 46.2036326 ], + [ 7.0162169, 46.2036328 ], + [ 7.0159471, 46.2037396 ], + [ 7.0157308, 46.2038319 ], + [ 7.0155233, 46.203934 ], + [ 7.0153258, 46.2040453 ], + [ 7.0151392, 46.2041653 ], + [ 7.0149643, 46.2042935 ], + [ 7.0148019, 46.2044294 ], + [ 7.0147076, 46.2045175 ], + [ 7.014545, 46.2046758 ], + [ 7.0144901, 46.2047307 ], + [ 7.0143546, 46.2048802 ], + [ 7.014267, 46.20499 ], + [ 7.0141933, 46.2050877 ], + [ 7.0141598, 46.2051332 ], + [ 7.0140883, 46.2052381 ], + [ 7.0140444, 46.2052969 ], + [ 7.0138964, 46.2054388 ], + [ 7.0137609, 46.2055882 ], + [ 7.0136573, 46.2057196 ], + [ 7.0136453, 46.2057296 ], + [ 7.0135326, 46.2058033 ], + [ 7.0134647, 46.2058488 ], + [ 7.0134508, 46.2058584 ], + [ 7.0134427, 46.2058621 ], + [ 7.0132352, 46.2059642 ], + [ 7.0130377, 46.2060754 ], + [ 7.0129559, 46.2061261 ], + [ 7.012787, 46.2062222 ], + [ 7.0126004, 46.2063422 ], + [ 7.0124256, 46.2064704 ], + [ 7.0122631, 46.2066064 ], + [ 7.0121138, 46.2067493 ], + [ 7.0119783, 46.2068988 ], + [ 7.0118572, 46.2070541 ], + [ 7.011751, 46.2072145 ], + [ 7.0116601, 46.2073795 ], + [ 7.0115883, 46.2075396 ], + [ 7.0115328, 46.2076307 ], + [ 7.0115315, 46.2076329 ], + [ 7.0114308, 46.2076976 ], + [ 7.011256, 46.2078259 ], + [ 7.0110935, 46.2079618 ], + [ 7.0109442, 46.2081047 ], + [ 7.0108087, 46.2082542 ], + [ 7.0106876, 46.2084095 ], + [ 7.0105814, 46.2085699 ], + [ 7.0104905, 46.2087349 ], + [ 7.0104153, 46.2089036 ], + [ 7.0103562, 46.2090753 ], + [ 7.0103134, 46.2092494 ], + [ 7.010287, 46.2094251 ], + [ 7.0102773, 46.2096015 ], + [ 7.0102843, 46.2097781 ], + [ 7.0102873, 46.2098096 ], + [ 7.0102365, 46.2099276 ], + [ 7.0101774, 46.2100994 ], + [ 7.0101345, 46.2102735 ], + [ 7.0101082, 46.2104491 ], + [ 7.0100985, 46.2106256 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00047", + "country" : "CHE", + "name" : [ + { + "text" : "Académie de police de Savatan", + "lang" : "de-CH" + }, + { + "text" : "Académie de police de Savatan", + "lang" : "fr-CH" + }, + { + "text" : "Académie de police de Savatan", + "lang" : "it-CH" + }, + { + "text" : "Académie de police de Savatan", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kantonspolizei Waadt", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale vaudoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Vaud", + "lang" : "it-CH" + }, + { + "text" : "Vaud Cantonal Police", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.pcv@vd.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.60986, 46.7676262 ], + [ 7.6100121, 46.7676498 ], + [ 7.6100517, 46.7675576 ], + [ 7.6101236, 46.767574 ], + [ 7.6102388, 46.7675933 ], + [ 7.6103567, 46.7676043 ], + [ 7.610475, 46.7676054 ], + [ 7.6105952, 46.7675981 ], + [ 7.6105998, 46.7676208 ], + [ 7.6112247, 46.767504 ], + [ 7.6118976, 46.7673781 ], + [ 7.6118653, 46.7673493 ], + [ 7.6122936, 46.7672613 ], + [ 7.6122909, 46.7672561 ], + [ 7.6124278, 46.767228 ], + [ 7.6124523, 46.7672231 ], + [ 7.6124766, 46.7672179 ], + [ 7.6125009, 46.7672126 ], + [ 7.6125251, 46.767207 ], + [ 7.6125492, 46.767201299999996 ], + [ 7.6125732, 46.7671954 ], + [ 7.6125971, 46.7671893 ], + [ 7.6126195, 46.7671834 ], + [ 7.6126419, 46.7671773 ], + [ 7.6126641, 46.7671711 ], + [ 7.6126863, 46.7671646 ], + [ 7.6127082999999995, 46.7671581 ], + [ 7.6127303, 46.7671513 ], + [ 7.6127521, 46.7671444 ], + [ 7.6127734, 46.7671374 ], + [ 7.6127945, 46.7671302 ], + [ 7.6128156, 46.7671229 ], + [ 7.6128365, 46.7671153 ], + [ 7.6128573, 46.7671077 ], + [ 7.612878, 46.7670998 ], + [ 7.6128985, 46.7670918 ], + [ 7.6129187, 46.7670836 ], + [ 7.6129387, 46.7670754 ], + [ 7.6129586, 46.7670669 ], + [ 7.6129783, 46.7670584 ], + [ 7.6129979, 46.7670496 ], + [ 7.6130174, 46.7670407 ], + [ 7.6130367, 46.7670317 ], + [ 7.6131302, 46.7669846 ], + [ 7.6132325, 46.7669268 ], + [ 7.6133192, 46.7668739 ], + [ 7.6134065, 46.7668215 ], + [ 7.613479, 46.7667824 ], + [ 7.6135577, 46.7667481 ], + [ 7.6136016, 46.7667338 ], + [ 7.6136429, 46.7667203 ], + [ 7.613728, 46.7667008 ], + [ 7.6138164, 46.7666888 ], + [ 7.6139037, 46.7666842 ], + [ 7.6139924, 46.7666862 ], + [ 7.6140875999999995, 46.7666969 ], + [ 7.6141842, 46.7667165 ], + [ 7.6143041, 46.7667499 ], + [ 7.6152312, 46.7670345 ], + [ 7.6157249, 46.7671861 ], + [ 7.6161726, 46.7673235 ], + [ 7.616196, 46.767333 ], + [ 7.6162517, 46.7673557 ], + [ 7.6162895, 46.767371 ], + [ 7.6165214, 46.7671772 ], + [ 7.6165841, 46.7671248 ], + [ 7.6165966, 46.7671136 ], + [ 7.6167967999999995, 46.7669453 ], + [ 7.6168305, 46.7669188 ], + [ 7.6169167, 46.766851 ], + [ 7.617049, 46.7667221 ], + [ 7.6172143, 46.7665702 ], + [ 7.6173063, 46.7664834 ], + [ 7.6175386, 46.7663273 ], + [ 7.6176402, 46.7662605 ], + [ 7.6176818, 46.7662719 ], + [ 7.6179508, 46.7655966 ], + [ 7.618069, 46.765286 ], + [ 7.6179115, 46.765231 ], + [ 7.6179012, 46.765262 ], + [ 7.6174244, 46.7650964 ], + [ 7.6171824, 46.7648444 ], + [ 7.6173559, 46.7646013 ], + [ 7.6168806, 46.7645027 ], + [ 7.6164950000000005, 46.7644259 ], + [ 7.61643, 46.764488 ], + [ 7.6158949, 46.7643808 ], + [ 7.6158735, 46.7643421 ], + [ 7.6161457, 46.7641486 ], + [ 7.6163386, 46.7640118 ], + [ 7.6165613, 46.7638556 ], + [ 7.6167824, 46.7636956 ], + [ 7.6170574, 46.7635011 ], + [ 7.6172688, 46.7633359 ], + [ 7.6176244, 46.7630548 ], + [ 7.6178128, 46.7629044 ], + [ 7.6179497, 46.7627942 ], + [ 7.6180717, 46.7626982 ], + [ 7.6181235, 46.7626574 ], + [ 7.6181756, 46.7626164 ], + [ 7.618253, 46.7625556 ], + [ 7.618466, 46.762386 ], + [ 7.6185705, 46.7622846 ], + [ 7.6185869, 46.7622904 ], + [ 7.6186294, 46.7622563 ], + [ 7.6184313, 46.7621702 ], + [ 7.6184343, 46.7621593 ], + [ 7.6171837, 46.761958 ], + [ 7.6167791000000005, 46.761912 ], + [ 7.6163445, 46.7618805 ], + [ 7.6160825, 46.7618872 ], + [ 7.6155607, 46.761925 ], + [ 7.6152062, 46.7619882 ], + [ 7.6149649, 46.7620621 ], + [ 7.6144843, 46.7622609 ], + [ 7.6142413, 46.7624306 ], + [ 7.6140459, 46.7626241 ], + [ 7.6134869, 46.7633267 ], + [ 7.6131864, 46.7637278 ], + [ 7.6127758, 46.7643255 ], + [ 7.6122999, 46.7650556 ], + [ 7.6117488, 46.7658884 ], + [ 7.6114897, 46.7661625 ], + [ 7.611219, 46.766409 ], + [ 7.6107144, 46.7667599 ], + [ 7.6098666, 46.7673512 ], + [ 7.6096354, 46.7674991 ], + [ 7.60986, 46.7676262 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VBS_13", + "country" : "CHE", + "name" : [ + { + "text" : "VBS_13 Thun", + "lang" : "de-CH" + }, + { + "text" : "VBS_13 Thun", + "lang" : "fr-CH" + }, + { + "text" : "VBS_13 Thun", + "lang" : "it-CH" + }, + { + "text" : "VBS_13 Thun", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "regulationExemption" : "YES", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Eidgenössisches Departement für Verteidigung, Bevölkerungsschutz und Sport (VBS)", + "lang" : "de-CH" + }, + { + "text" : "Département fédéral de la défense, de la protection de la population et des sports (DDPS)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento federale della difesa, della protezione della popolazione e dello sport (DDPS)", + "lang" : "it-CH" + }, + { + "text" : "Federal Department of Defence, Civil Protection and Sport (DDPS)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Lageverfolgungszentrum der Armee LVZ A", + "lang" : "de-CH" + }, + { + "text" : "Centre de suivi de la situation de l’armée, CSS A", + "lang" : "fr-CH" + }, + { + "text" : "Centro di monitoraggio della situazione dell’esercito, Centro mon sit Es", + "lang" : "it-CH" + }, + { + "text" : "Joint Operation Center, JOC", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vtg.admin.ch/en/joint-operations-command", + "email" : "lvz.op@vtg.admin.ch", + "phone" : "+41 58 464 96 43", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4795016, 46.2678951 ], + [ 7.4815624, 46.2684002 ], + [ 7.4851048, 46.269301 ], + [ 7.4855637999999995, 46.2696763 ], + [ 7.4867355, 46.2681218 ], + [ 7.4859819, 46.2676745 ], + [ 7.4819911, 46.2659884 ], + [ 7.4807455, 46.2659167 ], + [ 7.4795016, 46.2678951 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "CEP0001", + "country" : "CHE", + "name" : [ + { + "text" : "Centre éducatif de Pramont", + "lang" : "de-CH" + }, + { + "text" : "Centre éducatif de Pramont", + "lang" : "fr-CH" + }, + { + "text" : "Centre éducatif de Pramont", + "lang" : "it-CH" + }, + { + "text" : "Centre éducatif de Pramont", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Dienststelle für Straf-und Massnahmenvollzug", + "lang" : "de-CH" + }, + { + "text" : "Service de l'application des peines et mesures", + "lang" : "fr-CH" + }, + { + "text" : "Service de l'application des peines et mesures", + "lang" : "it-CH" + }, + { + "text" : "Service de l'application des peines et mesures", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Dienststelle für Straf-und Massnahmenvollzug", + "lang" : "de-CH" + }, + { + "text" : "Service de l'application des peines et mesures", + "lang" : "fr-CH" + }, + { + "text" : "Service de l'application des peines et mesures", + "lang" : "it-CH" + }, + { + "text" : "Service de l'application des peines et mesures", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vs.ch/web/addict", + "email" : "SAPEM-DIRECTION@admin.vs.ch", + "phone" : "0041276065166", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8258206, 47.4636871 ], + [ 7.8263047, 47.4637619 ], + [ 7.8268091, 47.4638844 ], + [ 7.8268093, 47.4638955 ], + [ 7.8268103, 47.4640517 ], + [ 7.8271424, 47.4640529 ], + [ 7.8273437999999995, 47.4640547 ], + [ 7.8274149, 47.4640671 ], + [ 7.8274853, 47.4640733 ], + [ 7.8275508, 47.4640739 ], + [ 7.8276128, 47.4640672 ], + [ 7.8276416, 47.4640574 ], + [ 7.8278168, 47.464059 ], + [ 7.8282468, 47.4640619 ], + [ 7.8287289, 47.4640645 ], + [ 7.8287616, 47.4640646 ], + [ 7.8286895, 47.4637726 ], + [ 7.8286711, 47.4636988 ], + [ 7.8286876, 47.4636968 ], + [ 7.8286833, 47.4636831 ], + [ 7.828666, 47.4636288 ], + [ 7.8286416, 47.4635537 ], + [ 7.8285176, 47.4635988 ], + [ 7.8284359, 47.4636204 ], + [ 7.8283887, 47.4636365 ], + [ 7.8280806, 47.463695799999996 ], + [ 7.8280718, 47.4637018 ], + [ 7.8278589, 47.4637278 ], + [ 7.8277828, 47.4637359 ], + [ 7.8275566, 47.4637454 ], + [ 7.8273378000000005, 47.4637449 ], + [ 7.8270339, 47.4637376 ], + [ 7.8268071, 47.4637121 ], + [ 7.8267252, 47.4637029 ], + [ 7.826615, 47.4637065 ], + [ 7.8263400999999995, 47.4636763 ], + [ 7.8260857, 47.4636407 ], + [ 7.8258301, 47.4636042 ], + [ 7.8258222, 47.463674 ], + [ 7.8258206, 47.4636871 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns041", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Wolfsloch", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Wolfsloch", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Wolfsloch", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Wolfsloch", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8283685, 47.43937 ], + [ 7.8287674, 47.4394907 ], + [ 7.8290782, 47.4398112 ], + [ 7.8292488, 47.4399289 ], + [ 7.82985, 47.4399104 ], + [ 7.8300952, 47.4396787 ], + [ 7.8303265, 47.4394602 ], + [ 7.8304586, 47.4393354 ], + [ 7.8305118, 47.4392593 ], + [ 7.8305447, 47.4391538 ], + [ 7.8305429, 47.4390438 ], + [ 7.8305102, 47.4389364 ], + [ 7.830446, 47.4388374 ], + [ 7.8303457, 47.4387526 ], + [ 7.8302602, 47.4387028 ], + [ 7.8301622, 47.4386762 ], + [ 7.8297889, 47.4386155 ], + [ 7.8298506, 47.4385252 ], + [ 7.8298567, 47.4385061 ], + [ 7.829878, 47.4384388 ], + [ 7.8294284, 47.438641 ], + [ 7.8288662, 47.4388979 ], + [ 7.8286025, 47.4390624 ], + [ 7.8284017, 47.4393184 ], + [ 7.8283685, 47.43937 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr137", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Holden", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Holden", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Holden", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Holden", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8315386, 47.4468279 ], + [ 7.8315738, 47.4463169 ], + [ 7.8315779, 47.4462578 ], + [ 7.8315813, 47.446209 ], + [ 7.8315529, 47.4461927 ], + [ 7.8313866, 47.4460973 ], + [ 7.831319, 47.4460585 ], + [ 7.8311087, 47.446089 ], + [ 7.8312595, 47.4464498 ], + [ 7.8312748, 47.4464865 ], + [ 7.8312801, 47.4464933 ], + [ 7.8315386, 47.4468279 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr107", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Dubenrain", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Dubenrain", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Dubenrain", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Dubenrain", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.864423, 47.4294968 ], + [ 7.8642616, 47.4295987 ], + [ 7.8640563, 47.4298653 ], + [ 7.8636087, 47.4299785 ], + [ 7.8631964, 47.4302547 ], + [ 7.8631782, 47.4302643 ], + [ 7.8629063, 47.4304078 ], + [ 7.8624773999999995, 47.4307112 ], + [ 7.8623059, 47.4308313 ], + [ 7.8622630000000004, 47.4308899 ], + [ 7.8621557, 47.4310067 ], + [ 7.8621448, 47.4310107 ], + [ 7.8621381, 47.4310155 ], + [ 7.8621309, 47.4310199 ], + [ 7.8621236, 47.431024 ], + [ 7.8621156, 47.4310277 ], + [ 7.8619593, 47.4311037 ], + [ 7.8619511, 47.4311076 ], + [ 7.8619430999999995, 47.4311117 ], + [ 7.8619353, 47.4311162 ], + [ 7.8619277, 47.4311207 ], + [ 7.8619205, 47.4311254 ], + [ 7.8619162, 47.4311328 ], + [ 7.8619004, 47.4311405 ], + [ 7.861707, 47.4312985 ], + [ 7.8616968, 47.4313036 ], + [ 7.8616863, 47.4313081 ], + [ 7.8616753, 47.4313122 ], + [ 7.8616638, 47.4313158 ], + [ 7.8616516, 47.4313187 ], + [ 7.8616391, 47.4313211 ], + [ 7.8616262, 47.4313228 ], + [ 7.8616133999999995, 47.431324 ], + [ 7.861549, 47.4313746 ], + [ 7.8614557, 47.431448 ], + [ 7.860966, 47.431706 ], + [ 7.8603425, 47.4320791 ], + [ 7.8603071, 47.4321055 ], + [ 7.8603266, 47.432096 ], + [ 7.8606427, 47.4319578 ], + [ 7.8613297, 47.4316966 ], + [ 7.861674, 47.4315647 ], + [ 7.861947, 47.4314602 ], + [ 7.8623281, 47.4312758 ], + [ 7.8627932, 47.4309952 ], + [ 7.8634494, 47.4306098 ], + [ 7.8636326, 47.4305214 ], + [ 7.8639971, 47.4304587 ], + [ 7.8641584, 47.4303855 ], + [ 7.8644531, 47.4301684 ], + [ 7.8648613, 47.4298776 ], + [ 7.8649407, 47.429821 ], + [ 7.8649371, 47.4298188 ], + [ 7.8650228, 47.4297523 ], + [ 7.8655116, 47.4293576 ], + [ 7.8658266, 47.4291305 ], + [ 7.8661639, 47.4289236 ], + [ 7.8664667999999995, 47.4287763 ], + [ 7.8668539, 47.4286044 ], + [ 7.8672517, 47.4284818 ], + [ 7.8675916, 47.4284024 ], + [ 7.868001, 47.4283456 ], + [ 7.8684716, 47.4283159 ], + [ 7.8689195, 47.4283246 ], + [ 7.8692988, 47.428386 ], + [ 7.8694386, 47.428425 ], + [ 7.869636, 47.4279883 ], + [ 7.8701047, 47.4280915 ], + [ 7.8702659, 47.428127 ], + [ 7.8704865, 47.4281686 ], + [ 7.8705744, 47.4281852 ], + [ 7.870567, 47.4282618 ], + [ 7.8705265, 47.4286789 ], + [ 7.870874, 47.4287265 ], + [ 7.8712728, 47.4287993 ], + [ 7.8714637, 47.4288455 ], + [ 7.8716232999999995, 47.4288934 ], + [ 7.8716246, 47.4288834 ], + [ 7.8718131, 47.4285475 ], + [ 7.8718197, 47.4284271 ], + [ 7.8721456, 47.4287361 ], + [ 7.8720588, 47.4289733 ], + [ 7.8721146, 47.4289865 ], + [ 7.8722439, 47.4291297 ], + [ 7.8727253, 47.4293052 ], + [ 7.8728663999999995, 47.4293666 ], + [ 7.8729948, 47.4294408 ], + [ 7.8731144, 47.4295242 ], + [ 7.8732122, 47.4296186 ], + [ 7.8735862999999995, 47.4300202 ], + [ 7.8739976, 47.430445399999996 ], + [ 7.8742061, 47.4304862 ], + [ 7.8744364000000004, 47.430665 ], + [ 7.8746547, 47.4304069 ], + [ 7.8748491, 47.4300427 ], + [ 7.8748657, 47.4300115 ], + [ 7.8748695, 47.4300045 ], + [ 7.8749632, 47.4296521 ], + [ 7.8748034, 47.4295721 ], + [ 7.8745651, 47.4290293 ], + [ 7.8743889, 47.4286786 ], + [ 7.8743309, 47.4284243 ], + [ 7.8743349, 47.4281766 ], + [ 7.8744734, 47.4282143 ], + [ 7.8746755, 47.4282145 ], + [ 7.8748818, 47.428643 ], + [ 7.8752892, 47.4285308 ], + [ 7.8756103, 47.4284425 ], + [ 7.8757301, 47.4283851 ], + [ 7.8758256, 47.4283938 ], + [ 7.8760387, 47.4282933 ], + [ 7.8761836, 47.4281745 ], + [ 7.8762012, 47.4281524 ], + [ 7.8768229, 47.4281213 ], + [ 7.8768433, 47.4280495 ], + [ 7.8768716, 47.427924 ], + [ 7.8769464, 47.4278394 ], + [ 7.8771169, 47.4277974 ], + [ 7.8772704000000004, 47.4278012 ], + [ 7.877446, 47.4277234 ], + [ 7.8777664, 47.4275635 ], + [ 7.8779395, 47.4273165 ], + [ 7.8781536, 47.4272696 ], + [ 7.8785368, 47.427288 ], + [ 7.8787607, 47.4273537 ], + [ 7.8788009, 47.4273474 ], + [ 7.8788084, 47.4273561 ], + [ 7.8788154, 47.4273651 ], + [ 7.8788217, 47.4273743 ], + [ 7.8788273, 47.4273836 ], + [ 7.8788323, 47.4273932 ], + [ 7.8788366, 47.4274029 ], + [ 7.8788403, 47.4274127 ], + [ 7.8788433, 47.4274226 ], + [ 7.8788456, 47.4274326 ], + [ 7.8788579, 47.4274936 ], + [ 7.8788713, 47.4275545 ], + [ 7.8788854, 47.4276152 ], + [ 7.8789006, 47.427676 ], + [ 7.879141, 47.4279729 ], + [ 7.8792463999999995, 47.4280598 ], + [ 7.8792674, 47.4280731 ], + [ 7.8792909, 47.4280512 ], + [ 7.8794799, 47.4281548 ], + [ 7.8796166, 47.4279482 ], + [ 7.8796429, 47.4279085 ], + [ 7.8795715, 47.4278635 ], + [ 7.879536, 47.4277616 ], + [ 7.8794830000000005, 47.4276892 ], + [ 7.8794442, 47.4275744 ], + [ 7.8794476, 47.42754 ], + [ 7.879847, 47.4272125 ], + [ 7.88007, 47.4273506 ], + [ 7.8801842, 47.427459 ], + [ 7.8803084, 47.4275657 ], + [ 7.8807532, 47.4275669 ], + [ 7.8812553, 47.4275675 ], + [ 7.8812441, 47.4276233 ], + [ 7.8812736, 47.4276136 ], + [ 7.8812838, 47.4276096 ], + [ 7.8812935, 47.4276051 ], + [ 7.8813024, 47.4276 ], + [ 7.8813109, 47.4275944 ], + [ 7.8813186, 47.4275884 ], + [ 7.8813256, 47.427582 ], + [ 7.8813318, 47.4275751 ], + [ 7.8813372, 47.4275681 ], + [ 7.8813416, 47.4275607 ], + [ 7.8813451, 47.4275531 ], + [ 7.8813478, 47.4275454 ], + [ 7.8813495, 47.4275375 ], + [ 7.8813504, 47.4275296 ], + [ 7.8813502, 47.4275216 ], + [ 7.881349, 47.4275136 ], + [ 7.881347, 47.4275058 ], + [ 7.881344, 47.4274981 ], + [ 7.88134, 47.4274906 ], + [ 7.8813354, 47.4274837 ], + [ 7.88133, 47.427477 ], + [ 7.881324, 47.4274707 ], + [ 7.8813173, 47.4274647 ], + [ 7.88131, 47.4274589 ], + [ 7.881302, 47.4274537 ], + [ 7.8812936, 47.4274487 ], + [ 7.8812847, 47.4274442 ], + [ 7.8812753, 47.4274402 ], + [ 7.8812654, 47.4274365 ], + [ 7.8812552, 47.4274334 ], + [ 7.8812447, 47.4274308 ], + [ 7.8812339, 47.4274288 ], + [ 7.8812231, 47.4274272 ], + [ 7.8812119, 47.4274262 ], + [ 7.8812008, 47.4274258 ], + [ 7.8811853, 47.4274252 ], + [ 7.8811698, 47.427424 ], + [ 7.8811544, 47.4274223 ], + [ 7.8811392, 47.4274199 ], + [ 7.8811242, 47.4274169 ], + [ 7.8811096, 47.4274134 ], + [ 7.8810953, 47.4274092 ], + [ 7.8810813, 47.4274045 ], + [ 7.8810677, 47.427399199999996 ], + [ 7.8810547, 47.4273935 ], + [ 7.8810421, 47.4273872 ], + [ 7.8810301, 47.4273805 ], + [ 7.8810188, 47.4273732 ], + [ 7.881008, 47.4273656 ], + [ 7.8809978, 47.4273576 ], + [ 7.8809885, 47.4273491 ], + [ 7.8809799, 47.4273403 ], + [ 7.880972, 47.4273312 ], + [ 7.8809649, 47.4273217 ], + [ 7.8809586, 47.427312 ], + [ 7.8808274, 47.4270918 ], + [ 7.8808184, 47.4270777 ], + [ 7.8808086, 47.4270638 ], + [ 7.8807979, 47.4270502 ], + [ 7.8807863, 47.4270369 ], + [ 7.8807738, 47.427024 ], + [ 7.8807606, 47.4270115 ], + [ 7.8807466999999995, 47.4269993 ], + [ 7.8807319, 47.4269876 ], + [ 7.8807164, 47.4269762 ], + [ 7.8807003, 47.4269654 ], + [ 7.8806834, 47.426955 ], + [ 7.8806659, 47.4269452 ], + [ 7.8806478, 47.4269358 ], + [ 7.8806292, 47.4269271 ], + [ 7.8806101, 47.4269188 ], + [ 7.8805903, 47.4269111 ], + [ 7.8805702, 47.426904 ], + [ 7.8805496, 47.4268975 ], + [ 7.8802207, 47.4267993 ], + [ 7.8801806, 47.426787 ], + [ 7.880141, 47.4267739 ], + [ 7.8801018, 47.4267603 ], + [ 7.880063, 47.426746 ], + [ 7.8800248, 47.4267312 ], + [ 7.879987, 47.4267157 ], + [ 7.8799499, 47.4266997 ], + [ 7.8799133, 47.4266831 ], + [ 7.8798773, 47.4266659 ], + [ 7.8798419, 47.4266481 ], + [ 7.879807, 47.4266297 ], + [ 7.8797729, 47.4266109 ], + [ 7.8797394, 47.4265915 ], + [ 7.8797066000000004, 47.4265716 ], + [ 7.8796745, 47.4265511 ], + [ 7.879643, 47.4265302 ], + [ 7.8796124, 47.4265087 ], + [ 7.8795824, 47.4264868 ], + [ 7.8795532999999995, 47.4264644 ], + [ 7.8795249, 47.4264415 ], + [ 7.8794972, 47.4264182 ], + [ 7.8794704, 47.4263945 ], + [ 7.8794445, 47.4263703 ], + [ 7.8794194, 47.4263457 ], + [ 7.879395, 47.4263208 ], + [ 7.8793716, 47.4262955 ], + [ 7.8793565999999995, 47.4262781 ], + [ 7.8793424, 47.4262604 ], + [ 7.8793292, 47.4262423 ], + [ 7.879317, 47.4262239 ], + [ 7.8793058, 47.4262052 ], + [ 7.8792953, 47.4261863 ], + [ 7.8792860000000005, 47.4261672 ], + [ 7.8792776, 47.4261478 ], + [ 7.8792703, 47.4261283 ], + [ 7.8792639, 47.4261085 ], + [ 7.8792587, 47.4260887 ], + [ 7.8792544, 47.4260687 ], + [ 7.8792512, 47.4260487 ], + [ 7.8792491, 47.4260285 ], + [ 7.8792478, 47.4260084 ], + [ 7.8792478, 47.4259882 ], + [ 7.8792488, 47.425968 ], + [ 7.8792508, 47.4259479 ], + [ 7.8792538, 47.4259279 ], + [ 7.8792579, 47.4259079 ], + [ 7.879263, 47.425888 ], + [ 7.8792691999999995, 47.4258682 ], + [ 7.8792763, 47.4258486 ], + [ 7.8792845, 47.4258292 ], + [ 7.8792938, 47.4258101 ], + [ 7.879304, 47.4257911 ], + [ 7.8793150999999995, 47.4257724 ], + [ 7.8793271, 47.425754 ], + [ 7.8793402, 47.4257359 ], + [ 7.8793542, 47.425718 ], + [ 7.8793691, 47.4257006 ], + [ 7.879385, 47.4256835 ], + [ 7.8797133, 47.4253419 ], + [ 7.8797308, 47.4253231 ], + [ 7.8797473, 47.4253041 ], + [ 7.8797629, 47.4252847 ], + [ 7.8797778, 47.425265 ], + [ 7.8797916, 47.4252449 ], + [ 7.8798046, 47.4252246 ], + [ 7.8799738, 47.4249481 ], + [ 7.879987, 47.4249273 ], + [ 7.8800012, 47.4249068 ], + [ 7.8800162, 47.4248866 ], + [ 7.8800321, 47.4248668 ], + [ 7.8800489, 47.4248473 ], + [ 7.8800666, 47.4248282 ], + [ 7.8800852, 47.4248094 ], + [ 7.8801045, 47.424791 ], + [ 7.8801246, 47.424773 ], + [ 7.8801456, 47.4247554 ], + [ 7.8801673, 47.4247382 ], + [ 7.8801897, 47.4247216 ], + [ 7.8805111, 47.4244895 ], + [ 7.8809054, 47.4241856 ], + [ 7.8809182, 47.4241761 ], + [ 7.8809319, 47.4241672 ], + [ 7.8809461, 47.4241586 ], + [ 7.880961, 47.4241505 ], + [ 7.8809765, 47.424143 ], + [ 7.8809926, 47.424136 ], + [ 7.8810091, 47.4241297 ], + [ 7.881026, 47.4241237 ], + [ 7.8810434, 47.4241185 ], + [ 7.8810611999999995, 47.4241138 ], + [ 7.8810792, 47.4241098 ], + [ 7.8810976, 47.4241063 ], + [ 7.8811161, 47.4241035 ], + [ 7.8811349, 47.4241014 ], + [ 7.8811538, 47.4240999 ], + [ 7.8811728, 47.424099 ], + [ 7.8811919, 47.4240987 ], + [ 7.8812108, 47.4240992 ], + [ 7.8812298, 47.4241002 ], + [ 7.8812487, 47.424102 ], + [ 7.8812674, 47.4241044 ], + [ 7.8812859, 47.4241074 ], + [ 7.8813042, 47.424111 ], + [ 7.8813221, 47.4241152 ], + [ 7.8813398, 47.4241201 ], + [ 7.8813571, 47.4241255 ], + [ 7.8813738, 47.4241316 ], + [ 7.8813902, 47.4241382 ], + [ 7.881406, 47.4241454 ], + [ 7.8814212999999995, 47.4241531 ], + [ 7.8814361, 47.4241613 ], + [ 7.8814501, 47.42417 ], + [ 7.8814635, 47.4241792 ], + [ 7.8814762, 47.4241888 ], + [ 7.8814882, 47.4241988 ], + [ 7.8814994, 47.4242093 ], + [ 7.8815099, 47.42422 ], + [ 7.8815195, 47.4242312 ], + [ 7.8816359, 47.4243742 ], + [ 7.881696, 47.4244026 ], + [ 7.8818190999999995, 47.4244471 ], + [ 7.8818246, 47.4244537 ], + [ 7.8818296, 47.4244605 ], + [ 7.881834, 47.4244674 ], + [ 7.8818379, 47.4244745 ], + [ 7.8818411, 47.4244818 ], + [ 7.8818438, 47.424489 ], + [ 7.8818459999999995, 47.4244965 ], + [ 7.8818476, 47.4245039 ], + [ 7.8818489, 47.4245113 ], + [ 7.8818497999999995, 47.4245187 ], + [ 7.8818499, 47.4245261 ], + [ 7.8818493, 47.4245335 ], + [ 7.8818481, 47.4245409 ], + [ 7.8818462, 47.4245482 ], + [ 7.8818436, 47.4245554 ], + [ 7.8818404, 47.4245625 ], + [ 7.8818921, 47.4245353 ], + [ 7.881897, 47.4243244 ], + [ 7.8819125, 47.4243174 ], + [ 7.8816457, 47.4243055 ], + [ 7.8814677, 47.4240683 ], + [ 7.8814344, 47.4238222 ], + [ 7.8813666, 47.4234154 ], + [ 7.8813612, 47.4233833 ], + [ 7.881107, 47.4233946 ], + [ 7.8808371, 47.4233933 ], + [ 7.880672, 47.4234434 ], + [ 7.8803905, 47.423584 ], + [ 7.8802239, 47.4236786 ], + [ 7.8798851, 47.423746 ], + [ 7.8798922000000005, 47.423794 ], + [ 7.879808, 47.4237801 ], + [ 7.8797422, 47.423772 ], + [ 7.879626, 47.4237929 ], + [ 7.8795643, 47.4238294 ], + [ 7.8794383, 47.4239224 ], + [ 7.8793628, 47.423931 ], + [ 7.8792928, 47.4239081 ], + [ 7.8792409, 47.4238775 ], + [ 7.8790949999999995, 47.4239185 ], + [ 7.8790319, 47.4238639 ], + [ 7.8787728999999995, 47.4236399 ], + [ 7.8788784, 47.4235493 ], + [ 7.8787774, 47.4235022 ], + [ 7.8786197, 47.4234272 ], + [ 7.8786013, 47.4234482 ], + [ 7.8785833, 47.4234695 ], + [ 7.878566, 47.4234908 ], + [ 7.8785494, 47.4235125 ], + [ 7.8785331, 47.4235344 ], + [ 7.8785175, 47.4235564 ], + [ 7.8785026, 47.4235787 ], + [ 7.8784882, 47.423601 ], + [ 7.8784813, 47.4236129 ], + [ 7.8784751, 47.423625 ], + [ 7.87847, 47.4236373 ], + [ 7.8784656, 47.4236497 ], + [ 7.8784619, 47.4236622 ], + [ 7.8784594, 47.4236748 ], + [ 7.8784575, 47.4236876 ], + [ 7.8784567, 47.4237003 ], + [ 7.8784501, 47.4238949 ], + [ 7.8784492, 47.4239059 ], + [ 7.8784475, 47.4239169 ], + [ 7.8784451, 47.4239279 ], + [ 7.8784416, 47.4239387 ], + [ 7.8784373, 47.4239493 ], + [ 7.8784322, 47.4239599 ], + [ 7.8784263, 47.4239701 ], + [ 7.8784197, 47.4239802 ], + [ 7.8784122, 47.4239901 ], + [ 7.8784039, 47.4239996 ], + [ 7.8783948, 47.4240089 ], + [ 7.8783851, 47.4240177 ], + [ 7.8783747, 47.4240263 ], + [ 7.8783636, 47.4240344 ], + [ 7.8781993, 47.424149 ], + [ 7.8781789, 47.4241637 ], + [ 7.878159, 47.4241787 ], + [ 7.8781399, 47.424194 ], + [ 7.8781213999999995, 47.4242097 ], + [ 7.8781035, 47.4242258 ], + [ 7.8780862, 47.4242423 ], + [ 7.8780698000000005, 47.424259 ], + [ 7.8780539, 47.424276 ], + [ 7.8780388, 47.4242934 ], + [ 7.8780244, 47.424311 ], + [ 7.878003, 47.4243388 ], + [ 7.8779823, 47.4243669 ], + [ 7.8779625, 47.4243952 ], + [ 7.8779433999999995, 47.4244238 ], + [ 7.8779252, 47.4244525 ], + [ 7.8779077, 47.4244816 ], + [ 7.8778984, 47.4244968 ], + [ 7.8778884, 47.4245118 ], + [ 7.8778775, 47.4245265 ], + [ 7.8778659, 47.4245409 ], + [ 7.8778536, 47.4245552 ], + [ 7.8778406, 47.424569 ], + [ 7.8778268, 47.4245826 ], + [ 7.8778124, 47.4245958 ], + [ 7.8777973, 47.4246087 ], + [ 7.8777816, 47.4246212 ], + [ 7.8777653, 47.4246334 ], + [ 7.8777483, 47.4246451 ], + [ 7.8777308, 47.4246565 ], + [ 7.8777127, 47.4246674 ], + [ 7.877694, 47.424678 ], + [ 7.8776749, 47.4246881 ], + [ 7.8776351, 47.4247076 ], + [ 7.877595, 47.4247268 ], + [ 7.8775541, 47.4247452 ], + [ 7.8775127, 47.424763 ], + [ 7.8774707, 47.4247804 ], + [ 7.8774283, 47.424797 ], + [ 7.8773852, 47.4248131 ], + [ 7.8773418, 47.4248285 ], + [ 7.8772979, 47.4248434 ], + [ 7.8772535, 47.4248575 ], + [ 7.8772085, 47.4248711 ], + [ 7.8771633, 47.4248839 ], + [ 7.8771177, 47.4248961 ], + [ 7.8770716, 47.4249077 ], + [ 7.8770252, 47.4249186 ], + [ 7.8769785, 47.4249289 ], + [ 7.8769314999999995, 47.4249384 ], + [ 7.8768843, 47.4249473 ], + [ 7.8768650000000004, 47.4249504 ], + [ 7.8768454, 47.424953 ], + [ 7.8768258, 47.4249548 ], + [ 7.8768059, 47.4249563 ], + [ 7.8767862, 47.424957 ], + [ 7.8767663, 47.4249572 ], + [ 7.8764536, 47.4249542 ], + [ 7.8764351, 47.4249544 ], + [ 7.8764164999999995, 47.4249551 ], + [ 7.876398, 47.4249564 ], + [ 7.8763797, 47.4249583 ], + [ 7.8763614, 47.4249608 ], + [ 7.8763434, 47.4249638 ], + [ 7.8763255999999995, 47.4249674 ], + [ 7.876308, 47.4249716 ], + [ 7.8762908, 47.4249764 ], + [ 7.8762739, 47.4249815 ], + [ 7.8762574, 47.4249874 ], + [ 7.8762414, 47.4249937 ], + [ 7.8762257, 47.4250005 ], + [ 7.8762106, 47.4250078 ], + [ 7.8761558, 47.4250359 ], + [ 7.8761016999999995, 47.4250644 ], + [ 7.8760483, 47.4250935 ], + [ 7.8759954, 47.4251231 ], + [ 7.8759429999999995, 47.4251531 ], + [ 7.8758913, 47.4251836 ], + [ 7.8758696, 47.425197 ], + [ 7.8758482, 47.4252109 ], + [ 7.8758275, 47.4252251 ], + [ 7.8758075, 47.4252397 ], + [ 7.875788, 47.425254699999996 ], + [ 7.875769, 47.4252701 ], + [ 7.8757509, 47.4252857 ], + [ 7.8757333, 47.4253018 ], + [ 7.8755053, 47.4255157 ], + [ 7.8754783, 47.4255417 ], + [ 7.8754518000000004, 47.4255681 ], + [ 7.8754261, 47.4255947 ], + [ 7.8754010999999995, 47.4256216 ], + [ 7.875377, 47.425649 ], + [ 7.8753535, 47.4256765 ], + [ 7.8752154999999995, 47.4258424 ], + [ 7.8751996, 47.4258609 ], + [ 7.8751831, 47.4258792 ], + [ 7.8751659, 47.425897 ], + [ 7.8751479, 47.4259146 ], + [ 7.8751293, 47.425932 ], + [ 7.8751101, 47.425949 ], + [ 7.8750902, 47.4259656 ], + [ 7.8750698, 47.4259819 ], + [ 7.8750487, 47.4259978 ], + [ 7.8750271, 47.4260133 ], + [ 7.8750049, 47.4260285 ], + [ 7.8749821, 47.4260433 ], + [ 7.8749587, 47.4260577 ], + [ 7.8749347, 47.4260717 ], + [ 7.874514, 47.4263114 ], + [ 7.8744896, 47.4263249 ], + [ 7.8744648, 47.426338 ], + [ 7.8744395, 47.4263507 ], + [ 7.8744136000000005, 47.4263629 ], + [ 7.8743873, 47.4263747 ], + [ 7.8743606, 47.4263859 ], + [ 7.8743335, 47.4263968 ], + [ 7.8743061, 47.4264072 ], + [ 7.8742782, 47.4264171 ], + [ 7.8742499, 47.4264265 ], + [ 7.8742213, 47.4264354 ], + [ 7.8741924, 47.4264438 ], + [ 7.8741632, 47.4264517 ], + [ 7.8741335, 47.4264591 ], + [ 7.8740977999999995, 47.4264673 ], + [ 7.8740618, 47.4264749 ], + [ 7.8740255999999995, 47.426482 ], + [ 7.873989, 47.4264884 ], + [ 7.8739522, 47.4264941 ], + [ 7.8739152, 47.4264992 ], + [ 7.8738825, 47.4265031 ], + [ 7.8738498, 47.4265066 ], + [ 7.8738168, 47.4265096 ], + [ 7.8737838, 47.4265121 ], + [ 7.8737508, 47.426514 ], + [ 7.8737177, 47.4265155 ], + [ 7.8736852, 47.4265163 ], + [ 7.8736529, 47.4265168 ], + [ 7.8736204, 47.4265167 ], + [ 7.8735881, 47.4265162 ], + [ 7.8735557, 47.4265153 ], + [ 7.8735234, 47.4265138 ], + [ 7.8734912, 47.4265118 ], + [ 7.8734589, 47.4265093 ], + [ 7.8734357, 47.4265071 ], + [ 7.8734126, 47.4265042 ], + [ 7.8733898, 47.4265006 ], + [ 7.8733672, 47.4264964 ], + [ 7.8733449, 47.4264916 ], + [ 7.8733228, 47.4264862 ], + [ 7.8733012, 47.4264801 ], + [ 7.87328, 47.4264736 ], + [ 7.8730507, 47.4263982 ], + [ 7.8730355, 47.4263935 ], + [ 7.8730198, 47.4263895 ], + [ 7.8730038, 47.4263861 ], + [ 7.8729876999999995, 47.4263834 ], + [ 7.8729712, 47.4263813 ], + [ 7.8729546, 47.4263799 ], + [ 7.8729379, 47.4263792 ], + [ 7.8729212, 47.4263791 ], + [ 7.8729045, 47.4263797 ], + [ 7.8728878, 47.4263811 ], + [ 7.8728714, 47.4263831 ], + [ 7.8728551, 47.4263856 ], + [ 7.8728391, 47.4263889 ], + [ 7.8728234, 47.4263927 ], + [ 7.8728082, 47.4263973 ], + [ 7.8727932, 47.4264025 ], + [ 7.8727788, 47.4264082 ], + [ 7.8727649, 47.4264144 ], + [ 7.8727515, 47.4264213 ], + [ 7.8727389, 47.4264287 ], + [ 7.8727269, 47.4264365 ], + [ 7.8727155, 47.4264449 ], + [ 7.872705, 47.4264537 ], + [ 7.8726951, 47.4264629 ], + [ 7.8726862, 47.4264725 ], + [ 7.8726781, 47.4264824 ], + [ 7.8726709, 47.4264926 ], + [ 7.8726646, 47.4265031 ], + [ 7.8726592, 47.4265139 ], + [ 7.8726547, 47.4265249 ], + [ 7.8726474, 47.4265463 ], + [ 7.872641, 47.4265679 ], + [ 7.8726353, 47.4265897 ], + [ 7.8726306, 47.4266115 ], + [ 7.8726266, 47.4266333 ], + [ 7.8726234, 47.4266553 ], + [ 7.8726216, 47.4266656 ], + [ 7.8726189, 47.4266758 ], + [ 7.8726152, 47.4266859 ], + [ 7.8726105, 47.4266958 ], + [ 7.872605, 47.4267056 ], + [ 7.8725985, 47.4267149 ], + [ 7.8725911, 47.426724 ], + [ 7.8725828, 47.4267328 ], + [ 7.8725739, 47.4267412 ], + [ 7.872564, 47.4267492 ], + [ 7.8725535, 47.4267567 ], + [ 7.8725423, 47.4267638 ], + [ 7.8725304, 47.4267704 ], + [ 7.872518, 47.4267765 ], + [ 7.8725049, 47.4267819 ], + [ 7.8724913999999995, 47.4267868 ], + [ 7.8724774, 47.4267911 ], + [ 7.8724631, 47.4267949 ], + [ 7.8724484, 47.4267979 ], + [ 7.8724336, 47.4268003 ], + [ 7.8724185, 47.426802 ], + [ 7.8724033, 47.4268032 ], + [ 7.8723879, 47.4268036 ], + [ 7.8723725, 47.4268033 ], + [ 7.8723367, 47.4268017 ], + [ 7.8723009, 47.4267995 ], + [ 7.8722653, 47.4267967 ], + [ 7.8722297, 47.4267933 ], + [ 7.8721942, 47.4267893 ], + [ 7.8721589, 47.4267848 ], + [ 7.8721236999999995, 47.4267797 ], + [ 7.8720888, 47.426774 ], + [ 7.872054, 47.4267677 ], + [ 7.8720195, 47.4267609 ], + [ 7.8719853, 47.4267536 ], + [ 7.8719513, 47.4267456 ], + [ 7.8719288, 47.4267398 ], + [ 7.8719065, 47.4267335 ], + [ 7.8718846, 47.4267267 ], + [ 7.871863, 47.4267194 ], + [ 7.8718418, 47.4267116 ], + [ 7.871821, 47.4267033 ], + [ 7.8718007, 47.4266944 ], + [ 7.8717809, 47.4266853 ], + [ 7.8717428, 47.4266665 ], + [ 7.8717054, 47.4266473 ], + [ 7.8716685, 47.4266277 ], + [ 7.8716321, 47.4266076 ], + [ 7.8715964, 47.4265869 ], + [ 7.8715611, 47.4265659 ], + [ 7.8715264, 47.4265444 ], + [ 7.8714925000000004, 47.4265225 ], + [ 7.871459, 47.4265 ], + [ 7.8714262999999995, 47.4264772 ], + [ 7.8713942, 47.426454 ], + [ 7.8713627, 47.4264304 ], + [ 7.8713542, 47.4264238 ], + [ 7.8713459, 47.426417 ], + [ 7.8713379, 47.4264101 ], + [ 7.8713302, 47.4264031 ], + [ 7.8713206, 47.4263948 ], + [ 7.8713104, 47.4263871 ], + [ 7.8712995, 47.4263798 ], + [ 7.8712879000000004, 47.4263729 ], + [ 7.8712757, 47.4263667 ], + [ 7.8712629, 47.4263609 ], + [ 7.8712496, 47.4263556 ], + [ 7.8712358, 47.426351 ], + [ 7.8712216999999995, 47.426347 ], + [ 7.8712071, 47.4263436 ], + [ 7.8711924, 47.4263407 ], + [ 7.8711774, 47.4263387 ], + [ 7.8711621, 47.4263372 ], + [ 7.8711469, 47.4263364 ], + [ 7.8711315, 47.4263363 ], + [ 7.8711161, 47.4263368 ], + [ 7.8711009, 47.4263379 ], + [ 7.8710857999999995, 47.4263398 ], + [ 7.8710708, 47.4263423 ], + [ 7.8710562, 47.4263454 ], + [ 7.8704524, 47.4264879 ], + [ 7.8704408, 47.4264902 ], + [ 7.8704289, 47.426492 ], + [ 7.8704168, 47.4264932 ], + [ 7.8704046, 47.4264937 ], + [ 7.8703924, 47.4264935 ], + [ 7.8703804, 47.4264927 ], + [ 7.8703683, 47.4264912 ], + [ 7.8703565, 47.4264891 ], + [ 7.870345, 47.4264865 ], + [ 7.8703339, 47.4264831 ], + [ 7.8703231, 47.4264792 ], + [ 7.8703129, 47.4264747 ], + [ 7.8703032, 47.4264697 ], + [ 7.8702941, 47.4264643 ], + [ 7.8702857, 47.4264583 ], + [ 7.870278, 47.4264519 ], + [ 7.870271, 47.4264451 ], + [ 7.8702649000000005, 47.4264379 ], + [ 7.8702596, 47.4264305 ], + [ 7.8702552, 47.4264228 ], + [ 7.8702517, 47.4264149 ], + [ 7.8702491, 47.4264068 ], + [ 7.8702475, 47.4263986 ], + [ 7.8702469, 47.4263903 ], + [ 7.8702471, 47.426382 ], + [ 7.8702475, 47.4263733 ], + [ 7.8706676, 47.4260761 ], + [ 7.871221, 47.4256792 ], + [ 7.8717898, 47.4252811 ], + [ 7.8723126, 47.4249815 ], + [ 7.8727599, 47.4247235 ], + [ 7.8732099, 47.4244677 ], + [ 7.8737437, 47.4241088 ], + [ 7.8745113, 47.4235724 ], + [ 7.8751767, 47.4231183 ], + [ 7.873952, 47.4229366 ], + [ 7.8734773, 47.4230875 ], + [ 7.872968, 47.4231914 ], + [ 7.8721007, 47.4234511 ], + [ 7.8716333, 47.4236425 ], + [ 7.8710111, 47.4239189 ], + [ 7.8709627, 47.4239405 ], + [ 7.8709543, 47.423943 ], + [ 7.8709686, 47.4239722 ], + [ 7.870951, 47.4240182 ], + [ 7.8709223999999995, 47.4240263 ], + [ 7.8708851, 47.4240363 ], + [ 7.8708746, 47.4240869 ], + [ 7.8708827, 47.4241685 ], + [ 7.8708966, 47.4242299 ], + [ 7.8709289, 47.4243294 ], + [ 7.8709264999999995, 47.4243339 ], + [ 7.8709235, 47.4243382 ], + [ 7.8709286, 47.4243495 ], + [ 7.8709019, 47.4243671 ], + [ 7.870832, 47.4243736 ], + [ 7.8707812, 47.4243961 ], + [ 7.870742, 47.4244243 ], + [ 7.8707065, 47.4244603 ], + [ 7.8705454, 47.4245403 ], + [ 7.8705063, 47.4245777 ], + [ 7.8704709, 47.4246243 ], + [ 7.8704052, 47.4247029 ], + [ 7.8703414, 47.4247949 ], + [ 7.8702949, 47.4248502 ], + [ 7.87029, 47.4248681 ], + [ 7.8702692, 47.4249509 ], + [ 7.870263, 47.4249486 ], + [ 7.8702508, 47.4249492 ], + [ 7.8701901, 47.4249352 ], + [ 7.8699217, 47.4248713 ], + [ 7.8698092, 47.4250397 ], + [ 7.8696285, 47.425215 ], + [ 7.8694261, 47.4253413 ], + [ 7.8692144, 47.4253968 ], + [ 7.8689488, 47.425449 ], + [ 7.868652, 47.4254747 ], + [ 7.8683667, 47.4254536 ], + [ 7.8679126, 47.4253828 ], + [ 7.8676963, 47.4253175 ], + [ 7.8675944, 47.4254158 ], + [ 7.8676957, 47.4257435 ], + [ 7.8677106, 47.4258876 ], + [ 7.8675576, 47.4259945 ], + [ 7.8673225, 47.4260134 ], + [ 7.8670886, 47.4261933 ], + [ 7.8670024, 47.4263371 ], + [ 7.8669148, 47.4264738 ], + [ 7.8666577, 47.4266157 ], + [ 7.8665009999999995, 47.4268054 ], + [ 7.8661066, 47.4269109 ], + [ 7.8656308, 47.4269018 ], + [ 7.8652795, 47.4270095 ], + [ 7.8658771, 47.4275877 ], + [ 7.8660406, 47.4274654 ], + [ 7.8664048, 47.4273764 ], + [ 7.866415, 47.4273978 ], + [ 7.8664191, 47.4274092 ], + [ 7.866442, 47.427461 ], + [ 7.8664599, 47.4275015 ], + [ 7.8665544, 47.4277138 ], + [ 7.8666488, 47.4279257 ], + [ 7.8663024, 47.4280878 ], + [ 7.865878, 47.428329 ], + [ 7.865572, 47.428532 ], + [ 7.8652267, 47.4288015 ], + [ 7.8649588, 47.4290028 ], + [ 7.8648035, 47.4291725 ], + [ 7.8646817, 47.4293232 ], + [ 7.864423, 47.4294968 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns085", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Chrindel", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Chrindel", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Chrindel", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Chrindel", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.3043425, 46.0355813 ], + [ 7.3043376, 46.03544 ], + [ 7.304322, 46.0352991 ], + [ 7.3042959, 46.035159 ], + [ 7.3042592, 46.0350201 ], + [ 7.3042122, 46.0348826 ], + [ 7.3041549, 46.0347471 ], + [ 7.3040876, 46.0346138 ], + [ 7.3040103, 46.0344832 ], + [ 7.3039232, 46.0343556 ], + [ 7.3038268, 46.0342313 ], + [ 7.3037211, 46.0341107 ], + [ 7.3036065, 46.0339941 ], + [ 7.3034832, 46.0338819 ], + [ 7.3033518, 46.0337743 ], + [ 7.3032124, 46.0336717 ], + [ 7.3030655, 46.0335742 ], + [ 7.3029115000000004, 46.0334823 ], + [ 7.3027508, 46.0333961 ], + [ 7.3025838, 46.0333159 ], + [ 7.302411, 46.0332418 ], + [ 7.3022329, 46.0331742 ], + [ 7.30205, 46.0331131 ], + [ 7.3018627, 46.0330588 ], + [ 7.3016716, 46.0330114 ], + [ 7.3014772, 46.0329711 ], + [ 7.3012801, 46.0329379 ], + [ 7.3010807, 46.0329119 ], + [ 7.3008796, 46.0328932 ], + [ 7.3006774, 46.0328818 ], + [ 7.3004746, 46.0328779 ], + [ 7.3002718, 46.0328813 ], + [ 7.3000696, 46.0328922 ], + [ 7.2998684, 46.0329104 ], + [ 7.2996689, 46.0329359 ], + [ 7.2994716, 46.0329686 ], + [ 7.299277, 46.0330085 ], + [ 7.2990857, 46.0330554 ], + [ 7.2988981, 46.0331092 ], + [ 7.2987149, 46.0331698 ], + [ 7.2985364, 46.033237 ], + [ 7.2983633, 46.0333106 ], + [ 7.2981959, 46.0333905 ], + [ 7.2980347, 46.0334763 ], + [ 7.2978802, 46.0335678 ], + [ 7.2977329, 46.0336649 ], + [ 7.297593, 46.0337672 ], + [ 7.2974609, 46.0338745 ], + [ 7.2973371, 46.0339864 ], + [ 7.2972219, 46.0341027 ], + [ 7.2971156, 46.034223 ], + [ 7.2970185, 46.0343471 ], + [ 7.2969308999999996, 46.0344745 ], + [ 7.2968529, 46.0346049 ], + [ 7.2967848, 46.034738 ], + [ 7.2967269, 46.0348734 ], + [ 7.2966791, 46.0350107 ], + [ 7.2966418, 46.0351496 ], + [ 7.296615, 46.0352896 ], + [ 7.2965987, 46.0354304 ], + [ 7.296593, 46.0355717 ], + [ 7.2965979, 46.0357129 ], + [ 7.2966135, 46.0358538 ], + [ 7.2966396, 46.0359939 ], + [ 7.2966762, 46.0361329 ], + [ 7.2967232, 46.0362703 ], + [ 7.2967805, 46.0364058 ], + [ 7.2968478, 46.0365391 ], + [ 7.2969251, 46.0366697 ], + [ 7.2970121, 46.0367974 ], + [ 7.2971086, 46.0369217 ], + [ 7.2972143, 46.0370423 ], + [ 7.2973289, 46.0371588 ], + [ 7.2974521, 46.0372711 ], + [ 7.2975836, 46.0373787 ], + [ 7.2977229, 46.0374813 ], + [ 7.2978698, 46.0375788 ], + [ 7.2980239000000005, 46.0376707 ], + [ 7.2981846, 46.0377569 ], + [ 7.2983516, 46.0378372 ], + [ 7.2985243, 46.0379112 ], + [ 7.2987025, 46.0379788 ], + [ 7.2988854, 46.0380399 ], + [ 7.2990727, 46.0380942 ], + [ 7.2992638, 46.0381416 ], + [ 7.2994582, 46.038182 ], + [ 7.2996554, 46.0382152 ], + [ 7.2998548, 46.0382412 ], + [ 7.3000559, 46.0382599 ], + [ 7.3002581, 46.0382712 ], + [ 7.3004609, 46.0382752 ], + [ 7.3006637, 46.0382717 ], + [ 7.300866, 46.0382609 ], + [ 7.3010671, 46.0382427 ], + [ 7.3012667, 46.0382172 ], + [ 7.301464, 46.0381845 ], + [ 7.3016586, 46.0381446 ], + [ 7.30185, 46.0380976 ], + [ 7.3020376, 46.0380438 ], + [ 7.3022208, 46.0379832 ], + [ 7.3023993, 46.037916 ], + [ 7.3025724, 46.0378424 ], + [ 7.3027398, 46.0377626 ], + [ 7.302901, 46.0376768 ], + [ 7.3030555, 46.0375852 ], + [ 7.3032029, 46.0374881 ], + [ 7.3033428, 46.0373858 ], + [ 7.3034748, 46.0372785 ], + [ 7.3035986, 46.0371666 ], + [ 7.3037137, 46.0370503 ], + [ 7.30382, 46.0369299 ], + [ 7.3039171, 46.0368059 ], + [ 7.3040047999999995, 46.0366785 ], + [ 7.3040828, 46.036548 ], + [ 7.3041508, 46.036415 ], + [ 7.3042088, 46.0362796 ], + [ 7.3042564, 46.0361422 ], + [ 7.3042938, 46.0360034 ], + [ 7.3043206, 46.0358633 ], + [ 7.3043369, 46.0357225 ], + [ 7.3043425, 46.0355813 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0037", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Fionnay GD", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Fionnay GD", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Fionnay GD", + "lang" : "it-CH" + }, + { + "text" : "Substation Fionnay GD", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5618571, 46.2869143 ], + [ 7.5618514999999995, 46.286773 ], + [ 7.5618352, 46.2866322 ], + [ 7.5618083, 46.2864921 ], + [ 7.5617708, 46.2863533 ], + [ 7.5617229, 46.2862159 ], + [ 7.5616648, 46.2860805 ], + [ 7.5615964, 46.2859474 ], + [ 7.5615182, 46.285817 ], + [ 7.5614301, 46.2856895 ], + [ 7.5613326, 46.2855655 ], + [ 7.5612259, 46.2854451 ], + [ 7.5611102, 46.2853288 ], + [ 7.5609859, 46.2852169 ], + [ 7.5608533, 46.2851096 ], + [ 7.5607128, 46.2850072 ], + [ 7.5605647000000005, 46.2849101 ], + [ 7.5604095000000004, 46.2848185 ], + [ 7.5602477, 46.2847327 ], + [ 7.5600796, 46.2846529 ], + [ 7.5599056000000004, 46.2845792 ], + [ 7.5597264, 46.284512 ], + [ 7.5595423, 46.2844514 ], + [ 7.5593539, 46.2843975 ], + [ 7.5591617, 46.2843505 ], + [ 7.5589662, 46.2843106 ], + [ 7.558768, 46.2842778 ], + [ 7.5585676, 46.2842523 ], + [ 7.5583655, 46.2842341 ], + [ 7.5581623, 46.2842232 ], + [ 7.5579586, 46.2842197 ], + [ 7.5577549, 46.2842236 ], + [ 7.5575517, 46.2842349 ], + [ 7.5573498, 46.2842536 ], + [ 7.5571494, 46.2842795 ], + [ 7.5569513, 46.2843127 ], + [ 7.556756, 46.284353 ], + [ 7.556564, 46.2844004 ], + [ 7.5563759, 46.2844547 ], + [ 7.5561921, 46.2845157 ], + [ 7.5560130999999995, 46.2845833 ], + [ 7.5558395, 46.2846573 ], + [ 7.5556716999999995, 46.2847375 ], + [ 7.5555103, 46.2848237 ], + [ 7.5553555, 46.2849156 ], + [ 7.5552079, 46.285013 ], + [ 7.5550678, 46.2851156 ], + [ 7.5549357, 46.2852232 ], + [ 7.5548119, 46.2853354 ], + [ 7.5546967, 46.285452 ], + [ 7.5545905, 46.2855725 ], + [ 7.5544934999999995, 46.2856968 ], + [ 7.554406, 46.2858244 ], + [ 7.5543283, 46.285955 ], + [ 7.5542606, 46.2860883 ], + [ 7.554203, 46.2862238 ], + [ 7.5541557, 46.2863612 ], + [ 7.5541188, 46.2865002 ], + [ 7.5540925, 46.2866403 ], + [ 7.5540768, 46.2867812 ], + [ 7.5540718, 46.2869224 ], + [ 7.5540774, 46.2870636 ], + [ 7.5540937, 46.2872045 ], + [ 7.5541206, 46.2873445 ], + [ 7.554158, 46.2874834 ], + [ 7.5542059, 46.2876207 ], + [ 7.5542641, 46.2877561 ], + [ 7.5543324, 46.2878893 ], + [ 7.5544107, 46.2880197 ], + [ 7.5544987, 46.2881471 ], + [ 7.5545962, 46.2882712 ], + [ 7.5547029, 46.2883916 ], + [ 7.5548186, 46.2885079 ], + [ 7.5549429, 46.2886199 ], + [ 7.5550755, 46.2887272 ], + [ 7.555216, 46.2888295 ], + [ 7.555364, 46.2889266 ], + [ 7.5555192, 46.2890182 ], + [ 7.5556811, 46.289104 ], + [ 7.5558492, 46.2891839 ], + [ 7.5560231, 46.2892575 ], + [ 7.5562024, 46.2893248 ], + [ 7.5563865, 46.2893854 ], + [ 7.5565749, 46.2894393 ], + [ 7.5567671, 46.2894862 ], + [ 7.5569626, 46.2895262 ], + [ 7.5571608, 46.2895589 ], + [ 7.5573613, 46.2895845 ], + [ 7.5575634, 46.2896027 ], + [ 7.5577666, 46.2896136 ], + [ 7.5579704, 46.2896171 ], + [ 7.5581741000000005, 46.2896132 ], + [ 7.5583772, 46.2896019 ], + [ 7.5585793, 46.2895832 ], + [ 7.5587796, 46.2895573 ], + [ 7.5589777, 46.2895241 ], + [ 7.5591729999999995, 46.2894837 ], + [ 7.559365, 46.2894364 ], + [ 7.5595532, 46.2893821 ], + [ 7.559737, 46.2893211 ], + [ 7.559916, 46.2892535 ], + [ 7.5600895999999995, 46.2891795 ], + [ 7.5602574, 46.2890993 ], + [ 7.5604189, 46.2890131 ], + [ 7.5605736, 46.2889211 ], + [ 7.5607213, 46.2888237 ], + [ 7.5608613, 46.2887211 ], + [ 7.5609934, 46.2886135 ], + [ 7.5611173, 46.2885013 ], + [ 7.5612324, 46.2883847 ], + [ 7.5613387, 46.2882642 ], + [ 7.5614356, 46.2881399 ], + [ 7.5615231, 46.2880123 ], + [ 7.5616008, 46.2878816 ], + [ 7.5616685, 46.2877484 ], + [ 7.5617261, 46.2876129 ], + [ 7.5617733, 46.2874754 ], + [ 7.5618102, 46.2873365 ], + [ 7.5618365, 46.2871964 ], + [ 7.5618521, 46.2870555 ], + [ 7.5618571, 46.2869143 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0028", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Chippis", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Chippis", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Chippis", + "lang" : "it-CH" + }, + { + "text" : "Substation Chippis", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.5267704, 47.4645266 ], + [ 8.524259, 47.4641787 ], + [ 8.5241285, 47.4641494 ], + [ 8.5235914, 47.4667576 ], + [ 8.5227104, 47.4710384 ], + [ 8.5250181, 47.4721798 ], + [ 8.5265443, 47.465144 ], + [ 8.5267704, 47.4645266 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZH002", + "country" : "CHE", + "name" : [ + { + "text" : "LSZH Zürich (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSZH Zürich (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSZH Zürich (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSZH Zürich (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Flughafen Zürich AG / Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Flughafen Zürich AG / Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Flughafen Zürich AG / Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Flughafen Zürich AG / Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Skyguide Special Flight Office", + "lang" : "de-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "it-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.skyguide.ch/services/special-flights", + "email" : "drones@zurich-airport.com", + "phone" : "0041438162211", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7199357, 47.4741551 ], + [ 7.7200294, 47.4741888 ], + [ 7.7200983, 47.4742118 ], + [ 7.7201301, 47.4742275 ], + [ 7.7202058000000005, 47.4742951 ], + [ 7.7203161, 47.4744036 ], + [ 7.7203341, 47.4744142 ], + [ 7.7204361, 47.4744639 ], + [ 7.7204649, 47.4745181 ], + [ 7.7204892, 47.4745348 ], + [ 7.7205279, 47.4745497 ], + [ 7.7205624, 47.4745574 ], + [ 7.7206297, 47.4745712 ], + [ 7.7207424, 47.4746145 ], + [ 7.7207813, 47.4746344 ], + [ 7.7208949, 47.4747461 ], + [ 7.7209465999999995, 47.4747875 ], + [ 7.7209818, 47.474809 ], + [ 7.7210415, 47.4748162 ], + [ 7.7211078, 47.4748161 ], + [ 7.7211675, 47.4748161 ], + [ 7.7212474, 47.4748103 ], + [ 7.7214061, 47.474798 ], + [ 7.7216875, 47.474753 ], + [ 7.7218038, 47.4747727 ], + [ 7.7218873, 47.4747861 ], + [ 7.7220027, 47.4747933 ], + [ 7.7220739, 47.4747798 ], + [ 7.7221697, 47.4747913 ], + [ 7.7222121, 47.4748003 ], + [ 7.7222666, 47.4748033 ], + [ 7.7223054, 47.4747972 ], + [ 7.7223216, 47.4747636 ], + [ 7.7223313000000005, 47.47466 ], + [ 7.7223457, 47.4746443 ], + [ 7.7223725, 47.4746304 ], + [ 7.7223991, 47.4746293 ], + [ 7.7224535, 47.4746323 ], + [ 7.7226155, 47.4746626 ], + [ 7.7227784, 47.4746919 ], + [ 7.7228854, 47.474716 ], + [ 7.7229624, 47.4747534 ], + [ 7.723005, 47.4747901 ], + [ 7.7230061, 47.4748045 ], + [ 7.7230122, 47.4748137 ], + [ 7.7230281, 47.4747903 ], + [ 7.723076, 47.4747198 ], + [ 7.7222972, 47.4745357 ], + [ 7.7221418, 47.4745383 ], + [ 7.7218751999999995, 47.4745778 ], + [ 7.7216262, 47.4745038 ], + [ 7.7211152, 47.4742209 ], + [ 7.7204663, 47.4737428 ], + [ 7.7204383, 47.4737635 ], + [ 7.7199685, 47.4741295 ], + [ 7.7199357, 47.4741551 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns129", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Spinnler-Weiher", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Spinnler-Weiher", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Spinnler-Weiher", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Spinnler-Weiher", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.577177, 47.5264414 ], + [ 7.5772393000000005, 47.5268722 ], + [ 7.5773985, 47.5268662 ], + [ 7.5774650999999995, 47.5268623 ], + [ 7.5775316, 47.5268578 ], + [ 7.5775981, 47.5268529 ], + [ 7.5776645, 47.5268473 ], + [ 7.5777304999999995, 47.5268414 ], + [ 7.5777964, 47.5268349 ], + [ 7.5778622, 47.5268278 ], + [ 7.5779278, 47.5268203 ], + [ 7.5779936, 47.5268123 ], + [ 7.5780592, 47.5268037 ], + [ 7.5781247, 47.5267946 ], + [ 7.57819, 47.526785 ], + [ 7.5797319, 47.5265582 ], + [ 7.5806468, 47.5264237 ], + [ 7.5806849, 47.5264187 ], + [ 7.5807231, 47.5264142 ], + [ 7.5807614, 47.5264102 ], + [ 7.5807998, 47.5264067 ], + [ 7.5808383, 47.5264037 ], + [ 7.5808769, 47.5264012 ], + [ 7.5809156, 47.5263992 ], + [ 7.5809539, 47.5263978 ], + [ 7.5809923, 47.5263969 ], + [ 7.5810307, 47.5263965 ], + [ 7.5810692, 47.5263966 ], + [ 7.5811076, 47.5263972 ], + [ 7.5811459, 47.5263983 ], + [ 7.5811843, 47.5263999 ], + [ 7.5812229, 47.5264017 ], + [ 7.5812614, 47.5264041 ], + [ 7.5812998, 47.5264069 ], + [ 7.5813381, 47.5264103 ], + [ 7.5813764, 47.5264141 ], + [ 7.5814145, 47.5264184 ], + [ 7.5814525, 47.5264233 ], + [ 7.5814902, 47.5264286 ], + [ 7.5815278, 47.5264345 ], + [ 7.5815652, 47.5264408 ], + [ 7.5816023999999995, 47.5264477 ], + [ 7.5816394, 47.526455 ], + [ 7.5816761, 47.5264628 ], + [ 7.5817127, 47.5264711 ], + [ 7.5819904000000005, 47.5265366 ], + [ 7.5821078, 47.5265593 ], + [ 7.5821254, 47.5265623 ], + [ 7.5821433, 47.5265649 ], + [ 7.5821612, 47.5265669 ], + [ 7.5821793, 47.5265685 ], + [ 7.5821974, 47.5265696 ], + [ 7.582213, 47.5265703 ], + [ 7.5822286, 47.5265707 ], + [ 7.5822443, 47.5265707 ], + [ 7.5822599, 47.5265703 ], + [ 7.5822755, 47.5265696 ], + [ 7.5822902, 47.5265685 ], + [ 7.5823048, 47.526567 ], + [ 7.5823194, 47.5265653 ], + [ 7.5823338, 47.5265632 ], + [ 7.5825492, 47.5265309 ], + [ 7.582723, 47.5265079 ], + [ 7.5827311, 47.5265051 ], + [ 7.5827388, 47.5265018 ], + [ 7.582746, 47.526498 ], + [ 7.5827526, 47.5264938 ], + [ 7.5827587, 47.5264892 ], + [ 7.5827643, 47.5264851 ], + [ 7.5827694999999995, 47.5264806 ], + [ 7.5827741, 47.5264759 ], + [ 7.5827781, 47.5264709 ], + [ 7.5827814, 47.5264658 ], + [ 7.5827709, 47.52624 ], + [ 7.5827647, 47.5260805 ], + [ 7.5827647, 47.5260722 ], + [ 7.5827638, 47.5260639 ], + [ 7.582762, 47.5260556 ], + [ 7.5827594, 47.5260474 ], + [ 7.582756, 47.5260394 ], + [ 7.5827517, 47.5260316 ], + [ 7.5827466, 47.526024 ], + [ 7.5827407000000004, 47.5260167 ], + [ 7.5827341, 47.5260097 ], + [ 7.5827267, 47.526003 ], + [ 7.5827186, 47.5259964 ], + [ 7.5827099, 47.5259902 ], + [ 7.5827005, 47.5259845 ], + [ 7.5826905, 47.5259793 ], + [ 7.58268, 47.5259745 ], + [ 7.582669, 47.5259703 ], + [ 7.5826576, 47.5259667 ], + [ 7.5826458, 47.5259636 ], + [ 7.5826337, 47.5259611 ], + [ 7.5826214, 47.5259593 ], + [ 7.582592, 47.525953200000004 ], + [ 7.5825627, 47.5259468 ], + [ 7.5825336, 47.5259399 ], + [ 7.5825048, 47.5259326 ], + [ 7.5824762, 47.5259249 ], + [ 7.5824659, 47.525938 ], + [ 7.5822889, 47.5261676 ], + [ 7.5819183, 47.5260356 ], + [ 7.5818484, 47.5258957 ], + [ 7.581973, 47.5256981 ], + [ 7.5817589, 47.5256195 ], + [ 7.5816055, 47.525728 ], + [ 7.581137, 47.5258298 ], + [ 7.5809303, 47.5255928 ], + [ 7.5807337, 47.5254541 ], + [ 7.5800929, 47.5257953 ], + [ 7.5798266, 47.5258794 ], + [ 7.5797315, 47.5259095 ], + [ 7.5791501, 47.5259583 ], + [ 7.5785519, 47.5259285 ], + [ 7.5783442, 47.5258871 ], + [ 7.5781768, 47.5258564 ], + [ 7.5783225, 47.5256457 ], + [ 7.5789836, 47.5253237 ], + [ 7.5788496, 47.5253147 ], + [ 7.578638, 47.5252965 ], + [ 7.5784796, 47.5252774 ], + [ 7.5784474, 47.5252907 ], + [ 7.5781196, 47.5254264 ], + [ 7.5776592, 47.5257633 ], + [ 7.577177, 47.5264414 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns137", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Känelgraben - Bammertsgraben", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Känelgraben - Bammertsgraben", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Känelgraben - Bammertsgraben", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Känelgraben - Bammertsgraben", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.1105406, 47.6632159 ], + [ 9.1100653, 47.6631336 ], + [ 9.1091222, 47.6631022 ], + [ 9.1085181, 47.6629473 ], + [ 9.1075769, 47.6628672 ], + [ 9.1070655, 47.6628296 ], + [ 9.1063686, 47.6628961 ], + [ 9.1055373, 47.66298 ], + [ 9.1047101, 47.6631386 ], + [ 9.1040925, 47.6633229 ], + [ 9.103149, 47.6638079 ], + [ 9.1018153, 47.6644791 ], + [ 9.1012568, 47.6647165 ], + [ 9.1008787, 47.6648684 ], + [ 9.1005714, 47.6649403 ], + [ 9.0999353, 47.6650393 ], + [ 9.099405, 47.6651144 ], + [ 9.0991219, 47.6651364 ], + [ 9.0986708, 47.6671803 ], + [ 9.098454, 47.6671683 ], + [ 9.0982016, 47.6670819 ], + [ 9.0979725, 47.6669952 ], + [ 9.0976858, 47.6669032 ], + [ 9.0973701, 47.6668922 ], + [ 9.0968976, 47.6669549 ], + [ 9.0964932, 47.6670892 ], + [ 9.0959516, 47.6673623 ], + [ 9.0955215, 47.6676599 ], + [ 9.0948227, 47.6681764 ], + [ 9.0939986, 47.6687872 ], + [ 9.0936351, 47.6690848 ], + [ 9.093338, 47.6694595 ], + [ 9.0931788, 47.6696939 ], + [ 9.0928689, 47.6701363 ], + [ 9.0927357, 47.6704297 ], + [ 9.0927448, 47.670722 ], + [ 9.092687, 47.6710033 ], + [ 9.092639, 47.6712514 ], + [ 9.092588, 47.6715374 ], + [ 9.0924247, 47.6718537 ], + [ 9.0919337, 47.6724679 ], + [ 9.0912496, 47.6731405 ], + [ 9.0906441, 47.6737959 ], + [ 9.0901992, 47.6741556 ], + [ 9.0897119, 47.674544 ], + [ 9.089111, 47.6748404 ], + [ 9.0883185, 47.6750541 ], + [ 9.0873698, 47.6752475 ], + [ 9.0860335, 47.675451699999996 ], + [ 9.0854785, 47.6755675 ], + [ 9.0855317, 47.6788824 ], + [ 9.0857, 47.679687799999996 ], + [ 9.0860838, 47.6797434 ], + [ 9.0864696, 47.6797923 ], + [ 9.0868572, 47.6798345 ], + [ 9.0872462, 47.6798699 ], + [ 9.0876365, 47.6798987 ], + [ 9.0880277, 47.6799207 ], + [ 9.0884196, 47.6799359 ], + [ 9.088812, 47.6799443 ], + [ 9.0892045, 47.6799459 ], + [ 9.089597, 47.6799407 ], + [ 9.0899892, 47.6799287 ], + [ 9.0903808, 47.6799099 ], + [ 9.0907715, 47.6798844 ], + [ 9.0911581, 47.6798532 ], + [ 9.0915436, 47.6798168 ], + [ 9.0919281, 47.6797755 ], + [ 9.0923113, 47.679729 ], + [ 9.092693, 47.6796776 ], + [ 9.0930732, 47.6796211 ], + [ 9.0934518, 47.6795596 ], + [ 9.0938284, 47.6794931 ], + [ 9.0942031, 47.6794217 ], + [ 9.0945756, 47.6793454 ], + [ 9.0949459, 47.6792642 ], + [ 9.0953137, 47.6791781 ], + [ 9.0959076, 47.6790314 ], + [ 9.0964981, 47.6788786 ], + [ 9.0970851, 47.6787198 ], + [ 9.0976685, 47.6785551 ], + [ 9.0982482, 47.6783844 ], + [ 9.098824, 47.6782079 ], + [ 9.0993958, 47.6780255 ], + [ 9.0999634, 47.6778373 ], + [ 9.1005268, 47.6776433 ], + [ 9.1010857, 47.6774436 ], + [ 9.1016402, 47.6772383 ], + [ 9.10219, 47.6770273 ], + [ 9.102735, 47.6768107 ], + [ 9.1032751, 47.676588699999996 ], + [ 9.1038102, 47.6763611 ], + [ 9.1043401, 47.6761281 ], + [ 9.1048648, 47.6758898 ], + [ 9.1053841, 47.6756461 ], + [ 9.1058979, 47.6753972 ], + [ 9.1064061, 47.6751431 ], + [ 9.1069085, 47.6748838 ], + [ 9.1074051, 47.6746194 ], + [ 9.1078958, 47.67435 ], + [ 9.1083803, 47.6740757 ], + [ 9.1088587, 47.6737964 ], + [ 9.1093308, 47.6735123 ], + [ 9.1097965, 47.6732234 ], + [ 9.1102557, 47.6729298 ], + [ 9.1107082, 47.6726316 ], + [ 9.1111541, 47.6723288 ], + [ 9.1115931, 47.6720215 ], + [ 9.1123273, 47.6714932 ], + [ 9.1126363, 47.6712812 ], + [ 9.112952, 47.6710738 ], + [ 9.1132744, 47.6708711 ], + [ 9.1136031, 47.6706732 ], + [ 9.1139382, 47.6704801 ], + [ 9.1142795, 47.6702921 ], + [ 9.1146266, 47.670109 ], + [ 9.1149797, 47.6699312 ], + [ 9.1153383, 47.6697585 ], + [ 9.1157024, 47.6695912 ], + [ 9.1160719, 47.6694292 ], + [ 9.1164464, 47.6692728 ], + [ 9.1168259, 47.6691218 ], + [ 9.1172102, 47.6689765 ], + [ 9.1175991, 47.6688369 ], + [ 9.1179923, 47.668703 ], + [ 9.1183898, 47.6685749 ], + [ 9.1187913, 47.6684527 ], + [ 9.1191967, 47.6683364 ], + [ 9.1196057, 47.6682261 ], + [ 9.1200181, 47.6681218 ], + [ 9.1204339, 47.6680237 ], + [ 9.1208526, 47.6679316 ], + [ 9.1212743, 47.6678458 ], + [ 9.1216986, 47.6677661 ], + [ 9.1221254, 47.6676927 ], + [ 9.1225544, 47.6676256 ], + [ 9.1229855, 47.6675648 ], + [ 9.1234185, 47.6675104 ], + [ 9.1238531, 47.6674623 ], + [ 9.1254272, 47.6673178 ], + [ 9.1257323, 47.6672831 ], + [ 9.1260361, 47.6672434 ], + [ 9.1263383, 47.6671985 ], + [ 9.1266388, 47.6671486 ], + [ 9.1269374, 47.6670938 ], + [ 9.1272338, 47.6670339 ], + [ 9.127528, 47.6669691 ], + [ 9.1278197, 47.6668995 ], + [ 9.1281088, 47.6668249 ], + [ 9.1283951, 47.6667456 ], + [ 9.1289263, 47.666589 ], + [ 9.1291779, 47.6665225 ], + [ 9.1294329, 47.6664621 ], + [ 9.1296908, 47.6664078 ], + [ 9.1299515, 47.6663598 ], + [ 9.1302145, 47.6663181 ], + [ 9.1304796, 47.6662827 ], + [ 9.1307463, 47.6662538 ], + [ 9.1310144, 47.6662312 ], + [ 9.1315415, 47.666199399999996 ], + [ 9.1317984, 47.6661767 ], + [ 9.1320537, 47.6661472 ], + [ 9.132307, 47.6661108 ], + [ 9.132558, 47.6660677 ], + [ 9.1328063, 47.6660178 ], + [ 9.1330514, 47.6659614 ], + [ 9.1332931, 47.6658984 ], + [ 9.1335309, 47.665829 ], + [ 9.1337643, 47.6657533 ], + [ 9.1339932, 47.6656714 ], + [ 9.1344383, 47.6654965 ], + [ 9.1346646, 47.6654158 ], + [ 9.1348955, 47.6653415 ], + [ 9.1351308, 47.6652736 ], + [ 9.13537, 47.6652122 ], + [ 9.1359774, 47.6650777 ], + [ 9.1363392, 47.6649919 ], + [ 9.1366978, 47.6649003 ], + [ 9.137053, 47.6648029 ], + [ 9.1374047, 47.6646998 ], + [ 9.1377526, 47.664591 ], + [ 9.1380965, 47.6644765 ], + [ 9.1385849, 47.6643064 ], + [ 9.1387377, 47.6642622 ], + [ 9.1388941, 47.6642242 ], + [ 9.1390536, 47.6641926 ], + [ 9.1392155, 47.6641674 ], + [ 9.1393794, 47.6641488 ], + [ 9.1395446, 47.6641368 ], + [ 9.1397106, 47.6641315 ], + [ 9.1398768, 47.6641328 ], + [ 9.1400425, 47.6641408 ], + [ 9.1402073, 47.6641554 ], + [ 9.1403705, 47.6641766 ], + [ 9.1405315, 47.6642043 ], + [ 9.1406899, 47.6642385 ], + [ 9.1408449, 47.6642789 ], + [ 9.1409961, 47.6643255 ], + [ 9.1430265, 47.6650009 ], + [ 9.1432444, 47.665076 ], + [ 9.1434591, 47.6651552 ], + [ 9.1436704, 47.6652385 ], + [ 9.1438782, 47.6653258 ], + [ 9.1440822, 47.665417 ], + [ 9.1442823, 47.6655121 ], + [ 9.1444784, 47.665611 ], + [ 9.1446702, 47.6657136 ], + [ 9.1448577, 47.6658198 ], + [ 9.1452855, 47.6660773 ], + [ 9.1455354, 47.6662212 ], + [ 9.14579, 47.6663612 ], + [ 9.1460493, 47.6664972 ], + [ 9.1463131, 47.6666292 ], + [ 9.1465814, 47.6667571 ], + [ 9.1468538, 47.6668808 ], + [ 9.1471304, 47.6670003 ], + [ 9.147411, 47.6671155 ], + [ 9.1476954, 47.6672264 ], + [ 9.1479834, 47.6673328 ], + [ 9.148275, 47.6674348 ], + [ 9.148441, 47.6674878 ], + [ 9.1486107, 47.6675352 ], + [ 9.1487836, 47.6675769 ], + [ 9.1489594, 47.6676128 ], + [ 9.1491375, 47.6676428 ], + [ 9.1493177, 47.6676669 ], + [ 9.1494993, 47.667685 ], + [ 9.1496821, 47.667697 ], + [ 9.1498655, 47.6677028 ], + [ 9.1500491, 47.6677026 ], + [ 9.1502325, 47.6676963 ], + [ 9.1504152, 47.6676839 ], + [ 9.1505968, 47.6676654 ], + [ 9.1507768, 47.6676409 ], + [ 9.1566907, 47.6660678 ], + [ 9.1573321, 47.6658972 ], + [ 9.1578374, 47.6657628 ], + [ 9.1594251, 47.6642665 ], + [ 9.1600489, 47.6634797 ], + [ 9.159989, 47.6633342 ], + [ 9.1599111, 47.6631451 ], + [ 9.1595862, 47.6630856 ], + [ 9.1430123, 47.6601862 ], + [ 9.1346594, 47.6599191 ], + [ 9.1338008, 47.6596393 ], + [ 9.1258732, 47.6606454 ], + [ 9.1255335, 47.6607178 ], + [ 9.1249473, 47.6608387 ], + [ 9.1240226, 47.661122 ], + [ 9.1231411, 47.6614567 ], + [ 9.1222367, 47.6617776 ], + [ 9.1210756, 47.6621388 ], + [ 9.1195433, 47.6624463 ], + [ 9.1118749, 47.6632523 ], + [ 9.1110877, 47.6632799 ], + [ 9.1105406, 47.6632159 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "WZV0009", + "country" : "CHE", + "name" : [ + { + "text" : "Wasser- und Zugvogelreservat Ermatinger Becken", + "lang" : "de-CH" + }, + { + "text" : "Réserve d'oiseaux d'eau et de migrateurs Ermatinger Becken", + "lang" : "fr-CH" + }, + { + "text" : "Riserva di uccelli acquatici e migratori Ermatinger Becken", + "lang" : "it-CH" + }, + { + "text" : "Water Bird and Migratory Bird Reserves Ermatinger Becken", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4965836, 47.4359302 ], + [ 7.4966076, 47.4360963 ], + [ 7.4965295, 47.4361704 ], + [ 7.4964069, 47.4362684 ], + [ 7.4963125999999995, 47.4363451 ], + [ 7.4962151, 47.4364549 ], + [ 7.4961453, 47.4364709 ], + [ 7.4961013, 47.4365153 ], + [ 7.4960223, 47.4365983 ], + [ 7.4959112, 47.4366974 ], + [ 7.4957842, 47.4368112 ], + [ 7.4956713, 47.4369191 ], + [ 7.4955109, 47.4370713 ], + [ 7.4954149, 47.437228 ], + [ 7.495255, 47.4373749 ], + [ 7.4951765, 47.4375139 ], + [ 7.4950699, 47.4376484 ], + [ 7.4949826, 47.437764 ], + [ 7.4949683, 47.437847 ], + [ 7.4949213, 47.4379348 ], + [ 7.4949062, 47.4379974 ], + [ 7.4949037, 47.4380649 ], + [ 7.4947822, 47.4381882 ], + [ 7.4946528, 47.4383074 ], + [ 7.4945661999999995, 47.4383729 ], + [ 7.4944818, 47.4384206 ], + [ 7.4944498, 47.4385057 ], + [ 7.4943073, 47.4386333 ], + [ 7.4942391, 47.4386765 ], + [ 7.4942984, 47.4387775 ], + [ 7.4944796, 47.4388512 ], + [ 7.494587, 47.439011 ], + [ 7.4948173, 47.4392607 ], + [ 7.4951433, 47.4391304 ], + [ 7.49537, 47.4390678 ], + [ 7.4954347, 47.4390632 ], + [ 7.4955878, 47.4389889 ], + [ 7.4957501, 47.438884 ], + [ 7.495819, 47.4388274 ], + [ 7.4959497, 47.4389532 ], + [ 7.4958679, 47.4390669 ], + [ 7.4960131, 47.4392548 ], + [ 7.4961749, 47.4393995 ], + [ 7.4963524, 47.4395164 ], + [ 7.4963922, 47.439614 ], + [ 7.4963812, 47.4397489 ], + [ 7.4963342, 47.4398745 ], + [ 7.4962546, 47.4399752 ], + [ 7.4961881, 47.4400527 ], + [ 7.4961603, 47.4401177 ], + [ 7.4961842, 47.4401566 ], + [ 7.4962057, 47.440174 ], + [ 7.4962486, 47.4401636 ], + [ 7.496301, 47.4401353 ], + [ 7.4963168, 47.4401413 ], + [ 7.4963838, 47.4401359 ], + [ 7.496468, 47.4400752 ], + [ 7.4965398, 47.4399876 ], + [ 7.4966102, 47.4398727 ], + [ 7.4966566, 47.4397541 ], + [ 7.4966921, 47.4395812 ], + [ 7.4967148, 47.439375 ], + [ 7.4967599, 47.4391968 ], + [ 7.4967913, 47.4391329 ], + [ 7.4964614, 47.4390935 ], + [ 7.4964328, 47.43909 ], + [ 7.4964354, 47.4389391 ], + [ 7.4964722, 47.4387276 ], + [ 7.4965462, 47.4385095 ], + [ 7.496655, 47.4382735 ], + [ 7.4967542, 47.438027 ], + [ 7.4968356, 47.4377986 ], + [ 7.4968657, 47.437715 ], + [ 7.4969054, 47.4375403 ], + [ 7.4969549, 47.4374223 ], + [ 7.4969856, 47.4373371 ], + [ 7.4970649, 47.4371135 ], + [ 7.4971632, 47.4368338 ], + [ 7.4972812, 47.436571 ], + [ 7.497433, 47.4362914 ], + [ 7.4975498, 47.4361312 ], + [ 7.4976638, 47.4361584 ], + [ 7.497946, 47.4360347 ], + [ 7.4981416, 47.4359241 ], + [ 7.4983663, 47.4358498 ], + [ 7.4986859, 47.4355451 ], + [ 7.4992462, 47.4351209 ], + [ 7.4999597, 47.4347303 ], + [ 7.5006883, 47.4343843 ], + [ 7.5020876, 47.4337735 ], + [ 7.5025381, 47.4335507 ], + [ 7.5025414999999995, 47.4335456 ], + [ 7.5025442, 47.4335404 ], + [ 7.502546, 47.433535 ], + [ 7.502547, 47.4335295 ], + [ 7.5025472, 47.433524 ], + [ 7.5025465, 47.4335185 ], + [ 7.502545, 47.433513 ], + [ 7.5025427, 47.4335077 ], + [ 7.5025396, 47.4335026 ], + [ 7.5025358, 47.4334977 ], + [ 7.5024791, 47.4334457 ], + [ 7.502472, 47.4334422 ], + [ 7.5024645, 47.4334392 ], + [ 7.5024566, 47.4334366 ], + [ 7.5024483, 47.4334346 ], + [ 7.5024398, 47.4334331 ], + [ 7.5024312, 47.4334321 ], + [ 7.5024224, 47.4334317 ], + [ 7.5024062, 47.4334326 ], + [ 7.5023900999999995, 47.433434 ], + [ 7.5023741, 47.4334359 ], + [ 7.5023582, 47.4334384 ], + [ 7.5023426, 47.4334414 ], + [ 7.5023271000000005, 47.4334449 ], + [ 7.5021366, 47.4334879 ], + [ 7.5011745, 47.4337083 ], + [ 7.5001944, 47.4339293 ], + [ 7.4999386, 47.434 ], + [ 7.4987785, 47.4345398 ], + [ 7.4980467, 47.4349589 ], + [ 7.4969781, 47.4355985 ], + [ 7.4967951, 47.4357253 ], + [ 7.4966179, 47.4358838 ], + [ 7.496582, 47.4359181 ], + [ 7.4965836, 47.4359302 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns286", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Dittinger Weide und Dittinger Wald", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Dittinger Weide und Dittinger Wald", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Dittinger Weide und Dittinger Wald", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Dittinger Weide und Dittinger Wald", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8623761, 47.4023075 ], + [ 7.8624224, 47.4021518 ], + [ 7.8623812, 47.4021341 ], + [ 7.8622481, 47.4021359 ], + [ 7.8621654, 47.4021732 ], + [ 7.8618672, 47.4027402 ], + [ 7.8617482, 47.4032316 ], + [ 7.8618997, 47.4033039 ], + [ 7.8619549, 47.4033588 ], + [ 7.8622812, 47.4033861 ], + [ 7.8628412999999995, 47.4033011 ], + [ 7.8628658, 47.4032581 ], + [ 7.8626491, 47.403098 ], + [ 7.8625153, 47.4030058 ], + [ 7.8624534, 47.4028857 ], + [ 7.8624184, 47.4027586 ], + [ 7.8623761, 47.4023075 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns344", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Homberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Homberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Homberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Homberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5689744, 47.4356701 ], + [ 7.5689893999999995, 47.4355582 ], + [ 7.5690055, 47.4355054 ], + [ 7.5690134, 47.4354637 ], + [ 7.5690281, 47.4354315 ], + [ 7.5690295, 47.4354268 ], + [ 7.5690346, 47.4354172 ], + [ 7.5690764999999995, 47.4353252 ], + [ 7.5691379, 47.4350898 ], + [ 7.5691558, 47.4349128 ], + [ 7.5692005, 47.4346592 ], + [ 7.5692062, 47.434496 ], + [ 7.569206, 47.4344878 ], + [ 7.5691649, 47.4342901 ], + [ 7.5691439, 47.4342423 ], + [ 7.5691425, 47.4342393 ], + [ 7.5691333, 47.4342149 ], + [ 7.5691213, 47.434187 ], + [ 7.5683187, 47.4341786 ], + [ 7.5665067, 47.434284 ], + [ 7.5657584, 47.436736 ], + [ 7.5680385, 47.4367052 ], + [ 7.5681978, 47.4364666 ], + [ 7.5684109, 47.4360895 ], + [ 7.5685538, 47.4359659 ], + [ 7.5687455, 47.4358858 ], + [ 7.5689075, 47.4359154 ], + [ 7.5689645, 47.4357222 ], + [ 7.5689744, 47.4356701 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr110", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Unter der Hollen", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Unter der Hollen", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Unter der Hollen", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Unter der Hollen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7042245, 47.3991842 ], + [ 7.7041369, 47.3992564 ], + [ 7.7041094999999995, 47.3992789 ], + [ 7.7040945, 47.3992913 ], + [ 7.7039674, 47.399396 ], + [ 7.7035975, 47.3997008 ], + [ 7.7033784, 47.3998812 ], + [ 7.7032095, 47.4000203 ], + [ 7.7032072, 47.4000222 ], + [ 7.7031946, 47.4000326 ], + [ 7.703182, 47.4000429 ], + [ 7.7031748, 47.4000488 ], + [ 7.703169, 47.4000536 ], + [ 7.7031645, 47.4000573 ], + [ 7.7031429, 47.4000751 ], + [ 7.7029947, 47.4001974 ], + [ 7.7028419, 47.4003236 ], + [ 7.7026465, 47.4004849 ], + [ 7.7023721, 47.40071 ], + [ 7.7023545, 47.4007245 ], + [ 7.7022455, 47.4008139 ], + [ 7.7022993, 47.4008125 ], + [ 7.7024708, 47.4008079 ], + [ 7.7026392999999995, 47.4008034 ], + [ 7.7027348, 47.4007976 ], + [ 7.7027443, 47.4007965 ], + [ 7.702763, 47.4007937 ], + [ 7.7027816, 47.4007904 ], + [ 7.7027999, 47.4007867 ], + [ 7.7028181, 47.4007824 ], + [ 7.7028318, 47.4007788 ], + [ 7.7028599, 47.4007705 ], + [ 7.7029216, 47.4007512 ], + [ 7.7029121, 47.4007846 ], + [ 7.7028324999999995, 47.4010653 ], + [ 7.7028229, 47.4011172 ], + [ 7.7028336, 47.4011481 ], + [ 7.7028626, 47.4011825 ], + [ 7.7029129, 47.4011918 ], + [ 7.7030016, 47.4011773 ], + [ 7.703138, 47.4011084 ], + [ 7.7032605, 47.4010534 ], + [ 7.7033000000000005, 47.4010547 ], + [ 7.7034475, 47.4010652 ], + [ 7.7036338, 47.4010528 ], + [ 7.7037654, 47.4010997 ], + [ 7.7038139, 47.4010737 ], + [ 7.7039405, 47.4010706 ], + [ 7.7039634, 47.4010497 ], + [ 7.703987, 47.4010283 ], + [ 7.7039884, 47.401027 ], + [ 7.7040649, 47.4010491 ], + [ 7.7041646, 47.4010899 ], + [ 7.7043456, 47.4012216 ], + [ 7.7046007, 47.4013851 ], + [ 7.704702, 47.4013736 ], + [ 7.7048799, 47.4015166 ], + [ 7.7050048, 47.4015429 ], + [ 7.7050598, 47.4014959 ], + [ 7.705331, 47.4014993 ], + [ 7.7055863, 47.401444 ], + [ 7.705645, 47.4014313 ], + [ 7.7057584, 47.4014574 ], + [ 7.7058719, 47.4014797 ], + [ 7.7059884, 47.4014985 ], + [ 7.7066336, 47.4015924 ], + [ 7.7068431, 47.4014008 ], + [ 7.7070751, 47.4016648 ], + [ 7.7073062, 47.4018265 ], + [ 7.7076989000000005, 47.4019116 ], + [ 7.7076693, 47.4019808 ], + [ 7.7079193, 47.4020588 ], + [ 7.7079829, 47.4021152 ], + [ 7.7080684999999995, 47.4021746 ], + [ 7.7081502, 47.4022298 ], + [ 7.7081679, 47.4022417 ], + [ 7.7082063, 47.4022701 ], + [ 7.7082437, 47.4022733 ], + [ 7.7082784, 47.4022592 ], + [ 7.708277, 47.4022327 ], + [ 7.7082768, 47.402228 ], + [ 7.7082443, 47.4021714 ], + [ 7.7081814, 47.402119 ], + [ 7.7080950999999995, 47.4020853 ], + [ 7.7080876, 47.4020777 ], + [ 7.7080532, 47.4020429 ], + [ 7.7080244, 47.4020138 ], + [ 7.7080939, 47.4019841 ], + [ 7.7080986, 47.4019821 ], + [ 7.7081267, 47.4019701 ], + [ 7.7084036000000005, 47.4019017 ], + [ 7.7088635, 47.4019424 ], + [ 7.7090024, 47.4019715 ], + [ 7.709055, 47.4020248 ], + [ 7.7091159000000005, 47.4020506 ], + [ 7.7091657, 47.4020576 ], + [ 7.7093419, 47.402138 ], + [ 7.7093991, 47.4021517 ], + [ 7.7094764, 47.4021533 ], + [ 7.7095584, 47.4021705 ], + [ 7.70964, 47.4021777 ], + [ 7.7096443, 47.4021381 ], + [ 7.7096146, 47.4020503 ], + [ 7.709536, 47.4019667 ], + [ 7.7094686, 47.4018396 ], + [ 7.7094322, 47.4018144 ], + [ 7.7096488999999995, 47.401658 ], + [ 7.7096797, 47.4015988 ], + [ 7.709748, 47.4015297 ], + [ 7.7097581, 47.4014862 ], + [ 7.7097143, 47.4014106 ], + [ 7.709703, 47.401359 ], + [ 7.709721, 47.401305 ], + [ 7.7097911, 47.4012048 ], + [ 7.7098296, 47.4010061 ], + [ 7.7100521, 47.4007032 ], + [ 7.7102939, 47.4003798 ], + [ 7.7103538, 47.4003097 ], + [ 7.7104066, 47.4002595 ], + [ 7.7104283, 47.4002393 ], + [ 7.7104509, 47.4002197 ], + [ 7.7104743, 47.4002005 ], + [ 7.7104987, 47.4001819 ], + [ 7.7105239, 47.4001637 ], + [ 7.7105499, 47.4001461 ], + [ 7.710621, 47.4001117 ], + [ 7.7105557000000005, 47.3999784 ], + [ 7.7103442, 47.399993 ], + [ 7.7101435, 47.3998815 ], + [ 7.7099912, 47.4000071 ], + [ 7.7098510000000005, 47.400079 ], + [ 7.709518, 47.4003528 ], + [ 7.7093435, 47.4002467 ], + [ 7.7090982, 47.4001242 ], + [ 7.7086933, 47.4000427 ], + [ 7.7084012, 47.400034 ], + [ 7.7082925, 47.3998825 ], + [ 7.7082223, 47.3997094 ], + [ 7.7081812, 47.3995759 ], + [ 7.7081767, 47.3995614 ], + [ 7.708176, 47.3995591 ], + [ 7.7080765, 47.3994447 ], + [ 7.7080209, 47.3993981 ], + [ 7.7077879, 47.399395 ], + [ 7.7076168, 47.399424 ], + [ 7.7074832, 47.3994685 ], + [ 7.7070766, 47.3999347 ], + [ 7.7069442, 47.3999417 ], + [ 7.7068623, 47.3999022 ], + [ 7.7067553, 47.3998344 ], + [ 7.7066945, 47.3997626 ], + [ 7.7066697, 47.3996552 ], + [ 7.7066512, 47.3995857 ], + [ 7.7067703, 47.3995088 ], + [ 7.7068529, 47.3994355 ], + [ 7.7068639999999995, 47.3993667 ], + [ 7.7067499, 47.3992492 ], + [ 7.7066345, 47.3991681 ], + [ 7.7065073, 47.3992151 ], + [ 7.7065306, 47.3993373 ], + [ 7.7063922, 47.3993541 ], + [ 7.7058556, 47.3994249 ], + [ 7.7055538, 47.3994704 ], + [ 7.7055294, 47.399454 ], + [ 7.7054704, 47.3993514 ], + [ 7.7053712, 47.3992499 ], + [ 7.7052021, 47.3993007 ], + [ 7.7050039, 47.399367 ], + [ 7.7048822999999995, 47.3993944 ], + [ 7.7047361, 47.3994095 ], + [ 7.7045916, 47.3994053 ], + [ 7.7044717, 47.3993677 ], + [ 7.7043722, 47.3993024 ], + [ 7.7042499, 47.3992375 ], + [ 7.7042245, 47.3991842 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr022", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne March", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage March", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica March", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge March", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8512024, 47.4754108 ], + [ 7.8514002, 47.475447 ], + [ 7.8514163, 47.4754501 ], + [ 7.8519583, 47.4755543 ], + [ 7.8518867, 47.4753103 ], + [ 7.8518373, 47.4751661 ], + [ 7.851787, 47.4750696 ], + [ 7.8515038, 47.4746699 ], + [ 7.8514346, 47.4745819 ], + [ 7.8512269, 47.4746679 ], + [ 7.8512183, 47.4746715 ], + [ 7.851205, 47.474677 ], + [ 7.8509264, 47.4747913 ], + [ 7.8510632, 47.4750983 ], + [ 7.8512024, 47.4754108 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns160", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Warteckweiher", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Warteckweiher", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Warteckweiher", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Warteckweiher", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4554772, 47.4173333 ], + [ 7.4558669, 47.4180171 ], + [ 7.4559647, 47.4183913 ], + [ 7.4559168, 47.4187239 ], + [ 7.4555719, 47.4201227 ], + [ 7.4549567, 47.4198151 ], + [ 7.4549043, 47.4199913 ], + [ 7.4548838, 47.4200626 ], + [ 7.4548648, 47.4201341 ], + [ 7.4548472, 47.4202058 ], + [ 7.4547348, 47.4206822 ], + [ 7.4547309, 47.4206984 ], + [ 7.4547269, 47.4207146 ], + [ 7.4547229, 47.4207308 ], + [ 7.4546115, 47.4211722 ], + [ 7.4546053, 47.4211962 ], + [ 7.454599, 47.4212202 ], + [ 7.4545924, 47.4212441 ], + [ 7.4545724, 47.4213164 ], + [ 7.4545599, 47.4213628 ], + [ 7.4545516, 47.4213958 ], + [ 7.4542595, 47.4212709 ], + [ 7.4542221, 47.4213763 ], + [ 7.4542731, 47.4215056 ], + [ 7.4541417, 47.4217533 ], + [ 7.4538457, 47.4219358 ], + [ 7.4529797, 47.4222249 ], + [ 7.4529943, 47.4222269 ], + [ 7.4530881, 47.4222399 ], + [ 7.453182, 47.4222524 ], + [ 7.4532761, 47.4222646 ], + [ 7.4533287, 47.4222704 ], + [ 7.4533816999999996, 47.4222744 ], + [ 7.4534348999999995, 47.4222765 ], + [ 7.4536746, 47.4222822 ], + [ 7.4537806, 47.4222847 ], + [ 7.4539165, 47.4222879 ], + [ 7.453964, 47.4222893 ], + [ 7.4540115, 47.4222913 ], + [ 7.454059, 47.4222938 ], + [ 7.4542595, 47.4223058 ], + [ 7.4544227, 47.4223156 ], + [ 7.4546309, 47.422328 ], + [ 7.4547096, 47.4223319 ], + [ 7.4547885, 47.4223342 ], + [ 7.4548674, 47.4223349 ], + [ 7.4554783, 47.4223342 ], + [ 7.4555793, 47.4223341 ], + [ 7.45577, 47.4223339 ], + [ 7.4561914, 47.4223334 ], + [ 7.4565453, 47.422333 ], + [ 7.4574397999999995, 47.422332 ], + [ 7.4574911, 47.4223317 ], + [ 7.4575424, 47.4223311 ], + [ 7.4575937, 47.42233 ], + [ 7.4576307, 47.422329 ], + [ 7.4576676, 47.4223278 ], + [ 7.4577046, 47.4223264 ], + [ 7.4577356, 47.4223253 ], + [ 7.4577666, 47.4223244 ], + [ 7.4577976, 47.422324 ], + [ 7.4578048, 47.4223237 ], + [ 7.4578118, 47.422323 ], + [ 7.4578187, 47.4223218 ], + [ 7.4578255, 47.4223203 ], + [ 7.457832, 47.4223183 ], + [ 7.4578382, 47.4223159 ], + [ 7.4578441, 47.4223132 ], + [ 7.4578496, 47.4223101 ], + [ 7.4578547, 47.4223067 ], + [ 7.4578593, 47.4223031 ], + [ 7.4578634, 47.4222991 ], + [ 7.457867, 47.4222949 ], + [ 7.4578777, 47.422279 ], + [ 7.4578862, 47.4222625 ], + [ 7.4578921, 47.4222454 ], + [ 7.4578956, 47.4222281 ], + [ 7.4578992, 47.4222 ], + [ 7.4578997, 47.4221969 ], + [ 7.4579002, 47.4221937 ], + [ 7.4579007, 47.4221906 ], + [ 7.4579056, 47.422171 ], + [ 7.4579129, 47.4221519 ], + [ 7.4579224, 47.4221332 ], + [ 7.4579342, 47.422115 ], + [ 7.4579482, 47.4220977 ], + [ 7.4579642, 47.4220811 ], + [ 7.4579822, 47.4220655 ], + [ 7.4579917, 47.4220583 ], + [ 7.4580121, 47.4220445 ], + [ 7.4580426, 47.422027 ], + [ 7.4580752, 47.4220114 ], + [ 7.4581096, 47.4219976 ], + [ 7.4581456, 47.4219858 ], + [ 7.4581829, 47.4219761 ], + [ 7.4584461, 47.4219161 ], + [ 7.4585080999999995, 47.4219019 ], + [ 7.4585381, 47.4218885 ], + [ 7.4585661, 47.4218733 ], + [ 7.4585918, 47.4218563 ], + [ 7.458615, 47.4218377 ], + [ 7.4586508, 47.4218028 ], + [ 7.4586814, 47.4217657 ], + [ 7.4587066, 47.4217267 ], + [ 7.4587261, 47.4216863 ], + [ 7.4587717, 47.4215732 ], + [ 7.4587853, 47.4215385 ], + [ 7.4587912, 47.4215225 ], + [ 7.4581028, 47.4215624 ], + [ 7.4568464, 47.4216082 ], + [ 7.4565732, 47.4206734 ], + [ 7.4561352, 47.4194709 ], + [ 7.4565446, 47.4182555 ], + [ 7.4568945, 47.4171207 ], + [ 7.4571616, 47.4161606 ], + [ 7.4572727, 47.4153376 ], + [ 7.4571971999999995, 47.4153244 ], + [ 7.4569472, 47.4152807 ], + [ 7.4567601, 47.4156441 ], + [ 7.4566228, 47.4158892 ], + [ 7.4564944, 47.416145 ], + [ 7.4562912, 47.4163104 ], + [ 7.4560608, 47.4165333 ], + [ 7.4560421, 47.4165496 ], + [ 7.4558917, 47.4167337 ], + [ 7.4557906, 47.4168852 ], + [ 7.4557886, 47.4168877 ], + [ 7.4556809, 47.416928 ], + [ 7.4555368, 47.4169093 ], + [ 7.4554081, 47.416838 ], + [ 7.4553449, 47.4169058 ], + [ 7.4552808, 47.4169718 ], + [ 7.4552683, 47.4169841 ], + [ 7.4554772, 47.4173333 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns337", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Strickhübel", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Strickhübel", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Strickhübel", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Strickhübel", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.8639057, 46.4262838 ], + [ 9.863897399999999, 46.4263114 ], + [ 9.8637786, 46.4265093 ], + [ 9.8636003, 46.426803 ], + [ 9.8634554, 46.4270267 ], + [ 9.8633713, 46.4271861 ], + [ 9.8633616, 46.4273754 ], + [ 9.8633433, 46.4275775 ], + [ 9.8633659, 46.4278795 ], + [ 9.8633934, 46.4280869 ], + [ 9.8634188, 46.4284519 ], + [ 9.8634519, 46.4287853 ], + [ 9.8635215, 46.4291178 ], + [ 9.8636332, 46.4293739 ], + [ 9.8636986, 46.429612 ], + [ 9.863853, 46.4298041 ], + [ 9.8640384, 46.4300774 ], + [ 9.8644981, 46.4305718 ], + [ 9.8648384, 46.4308419 ], + [ 9.8650623, 46.4309568 ], + [ 9.8652117, 46.4310356 ], + [ 9.8654362, 46.4311631 ], + [ 9.8655417, 46.4312806 ], + [ 9.8655493, 46.4314506 ], + [ 9.8655467, 46.4315956 ], + [ 9.8655446, 46.4317533 ], + [ 9.8655972, 46.4319097 ], + [ 9.8657952, 46.4320567 ], + [ 9.8659468, 46.4321858 ], + [ 9.8661232, 46.4324594 ], + [ 9.8662133, 46.4326402 ], + [ 9.8662121, 46.4328167 ], + [ 9.8661929, 46.4329999 ], + [ 9.8663286, 46.4331798 ], + [ 9.8666711, 46.4335002 ], + [ 9.8669518, 46.4338661 ], + [ 9.8673284, 46.434337 ], + [ 9.8675958, 46.4348103 ], + [ 9.8677533, 46.4350716 ], + [ 9.8678381, 46.4353345 ], + [ 9.8679153, 46.4356354 ], + [ 9.8681267, 46.4358767 ], + [ 9.8685134, 46.4361646 ], + [ 9.8689903, 46.4364318 ], + [ 9.8693921, 46.43665 ], + [ 9.869859, 46.4368984 ], + [ 9.8702776, 46.4370849 ], + [ 9.8706291, 46.4371971 ], + [ 9.870879, 46.43728 ], + [ 9.8710025, 46.4373908 ], + [ 9.8710727, 46.4375342 ], + [ 9.8710451, 46.4377302 ], + [ 9.8710265, 46.437926 ], + [ 9.8710102, 46.4381721 ], + [ 9.8710747, 46.4383913 ], + [ 9.8711353, 46.4385224 ], + [ 9.8712158, 46.4386909 ], + [ 9.871286, 46.4388343 ], + [ 9.8712568, 46.4388699 ], + [ 9.8715845, 46.4393774 ], + [ 9.8717952, 46.4398122 ], + [ 9.8719889, 46.4400662 ], + [ 9.8720675, 46.440405 ], + [ 9.872323699999999, 46.4408004 ], + [ 9.8726396, 46.4412769 ], + [ 9.8728318, 46.4416792 ], + [ 9.8728862, 46.4420021 ], + [ 9.8731104, 46.4423927 ], + [ 9.8732306, 46.4426784 ], + [ 9.8733897, 46.4428672 ], + [ 9.8736001, 46.4431317 ], + [ 9.873726, 46.4434531 ], + [ 9.8739001, 46.44396 ], + [ 9.8741717, 46.4443551 ], + [ 9.8743616, 46.4446861 ], + [ 9.8744132, 46.4451298 ], + [ 9.8744563, 46.445744 ], + [ 9.8747203, 46.4461338 ], + [ 9.8749313, 46.4465905 ], + [ 9.8752421, 46.4469518 ], + [ 9.8755016, 46.4471313 ], + [ 9.875569, 46.4474527 ], + [ 9.8756642, 46.4478162 ], + [ 9.8760476, 46.4481063 ], + [ 9.8763886, 46.4484341 ], + [ 9.8765416, 46.4487049 ], + [ 9.8767359, 46.4492977 ], + [ 9.8769036, 46.4496961 ], + [ 9.8765973, 46.4503423 ], + [ 9.8764348, 46.4506381 ], + [ 9.876417, 46.4511289 ], + [ 9.8766134, 46.4515693 ], + [ 9.8765753, 46.4518992 ], + [ 9.8764884, 46.4521203 ], + [ 9.8764964, 46.4522967 ], + [ 9.8766103, 46.4524771 ], + [ 9.876741299999999, 46.452657 ], + [ 9.8769194, 46.4528908 ], + [ 9.8770223, 46.4532235 ], + [ 9.8772937, 46.4533761 ], + [ 9.877696199999999, 46.4535137 ], + [ 9.8779703, 46.453727 ], + [ 9.8781866, 46.4542097 ], + [ 9.8782764, 46.4544514 ], + [ 9.8784523, 46.4550325 ], + [ 9.8787436, 46.4554281 ], + [ 9.8789551, 46.4556246 ], + [ 9.8791438, 46.455712 ], + [ 9.8794943, 46.4558506 ], + [ 9.8801143, 46.4561175 ], + [ 9.8804391, 46.4562811 ], + [ 9.8807526, 46.456591 ], + [ 9.8810881, 46.4569919 ], + [ 9.8812492, 46.4572444 ], + [ 9.8814324, 46.4577886 ], + [ 9.8816443, 46.4581921 ], + [ 9.8818516, 46.4584922 ], + [ 9.8818802, 46.4587293 ], + [ 9.8818146, 46.4588464 ], + [ 9.8816165, 46.4589482 ], + [ 9.8817475, 46.4591097 ], + [ 9.8819007, 46.4591856 ], + [ 9.8823296, 46.4593104 ], + [ 9.8830004, 46.4595102 ], + [ 9.8833498, 46.4597871 ], + [ 9.8834312, 46.4604907 ], + [ 9.8836056, 46.4610729 ], + [ 9.8836514, 46.4619081 ], + [ 9.8839407, 46.4621124 ], + [ 9.8840767, 46.4623481 ], + [ 9.8840414, 46.4627928 ], + [ 9.8843942, 46.4635048 ], + [ 9.8848395, 46.4640463 ], + [ 9.8850185, 46.4643334 ], + [ 9.8849799, 46.4649389 ], + [ 9.885092, 46.4657096 ], + [ 9.8855842, 46.4662961 ], + [ 9.885588, 46.4668855 ], + [ 9.8853395, 46.4677481 ], + [ 9.8850214, 46.4680765 ], + [ 9.884848999999999, 46.4684247 ], + [ 9.8851374, 46.468916 ], + [ 9.8858011, 46.4691544 ], + [ 9.8861882, 46.469613 ], + [ 9.8863297, 46.4700616 ], + [ 9.8861572, 46.4708921 ], + [ 9.8859797, 46.4716306 ], + [ 9.8862076, 46.4722612 ], + [ 9.8873089, 46.4728498 ], + [ 9.8874605, 46.4730149 ], + [ 9.887487, 46.4733512 ], + [ 9.8880504, 46.4736201 ], + [ 9.888662, 46.4738942 ], + [ 9.8890102, 46.4740134 ], + [ 9.8890659, 46.4744348 ], + [ 9.8890541, 46.4749842 ], + [ 9.8895701, 46.4755731 ], + [ 9.8896631, 46.4762808 ], + [ 9.8898075, 46.4766453 ], + [ 9.8901059, 46.4768881 ], + [ 9.8903932, 46.4771565 ], + [ 9.8905877, 46.477389 ], + [ 9.8907887, 46.478052 ], + [ 9.8910511, 46.4784521 ], + [ 9.8915183, 46.4787715 ], + [ 9.892010299999999, 46.4790988 ], + [ 9.8920302, 46.4795378 ], + [ 9.8922968, 46.4802841 ], + [ 9.8932412, 46.4811593 ], + [ 9.8942435, 46.4816785 ], + [ 9.8950502, 46.4822102 ], + [ 9.8953694, 46.4824991 ], + [ 9.8954916, 46.4830373 ], + [ 9.8959963, 46.4836432 ], + [ 9.8968396, 46.4839038 ], + [ 9.8975536, 46.4839897 ], + [ 9.897832, 46.4842034 ], + [ 9.8978237, 46.4845585 ], + [ 9.8976205, 46.4849263 ], + [ 9.8973628, 46.4854557 ], + [ 9.8972897, 46.4859981 ], + [ 9.897302700000001, 46.4862852 ], + [ 9.8974692, 46.4863825 ], + [ 9.8975591, 46.4863169 ], + [ 9.897663099999999, 46.4862404 ], + [ 9.8977818, 46.4861637 ], + [ 9.8979768, 46.486064 ], + [ 9.8983724, 46.4859706 ], + [ 9.8988065, 46.4860778 ], + [ 9.8990478, 46.4863166 ], + [ 9.8991551, 46.4866536 ], + [ 9.8993107, 46.4870319 ], + [ 9.8994678, 46.4874421 ], + [ 9.8996048, 46.4877679 ], + [ 9.8998451, 46.4879853 ], + [ 9.9003114, 46.4881025 ], + [ 9.900878, 46.4880796 ], + [ 9.9015813, 46.4880007 ], + [ 9.9020531, 46.4879163 ], + [ 9.9022467, 46.4877849 ], + [ 9.9023889, 46.487527299999996 ], + [ 9.9026024, 46.4871726 ], + [ 9.902792999999999, 46.4869776 ], + [ 9.9037205, 46.4864379 ], + [ 9.9042816, 46.4862772 ], + [ 9.904695199999999, 46.4862577 ], + [ 9.9050362, 46.4861978 ], + [ 9.9052964, 46.486063 ], + [ 9.9051086, 46.4859283 ], + [ 9.9049324, 46.4857611 ], + [ 9.9047804, 46.4856062 ], + [ 9.9047569, 46.4855003 ], + [ 9.9051224, 46.485105 ], + [ 9.9055179, 46.4847575 ], + [ 9.9057294, 46.4845915 ], + [ 9.905847099999999, 46.4844954 ], + [ 9.9059713, 46.4845573 ], + [ 9.9060903, 46.4846128 ], + [ 9.906361, 46.4846037 ], + [ 9.9066054, 46.4845158 ], + [ 9.906831799999999, 46.4843718 ], + [ 9.9072149, 46.4840942 ], + [ 9.9075661, 46.4837954 ], + [ 9.9078204, 46.4835684 ], + [ 9.9080276, 46.4834335 ], + [ 9.9082807, 46.4833237 ], + [ 9.9088772, 46.4831718 ], + [ 9.909382, 46.4830608 ], + [ 9.9100098, 46.4828995 ], + [ 9.9105576, 46.4827876 ], + [ 9.910857, 46.482729 ], + [ 9.9109056, 46.4827043 ], + [ 9.9112136, 46.4825474 ], + [ 9.9117533, 46.4822402 ], + [ 9.9121813, 46.4819832 ], + [ 9.9128289, 46.4814892 ], + [ 9.9132039, 46.4811595 ], + [ 9.9134009, 46.4810107 ], + [ 9.9134408, 46.4809805 ], + [ 9.9137691, 46.4807344 ], + [ 9.914088, 46.4805493 ], + [ 9.9144481, 46.4803917 ], + [ 9.9147441, 46.4802592 ], + [ 9.9151217, 46.4800576 ], + [ 9.9154742, 46.4797892 ], + [ 9.9157062, 46.4796278 ], + [ 9.9157952, 46.4793825 ], + [ 9.9160374, 46.4791774 ], + [ 9.9165317, 46.4787148 ], + [ 9.9168106, 46.4784741 ], + [ 9.9169239, 46.4782111 ], + [ 9.9169991, 46.4779314 ], + [ 9.9170037, 46.4777488 ], + [ 9.9171841, 46.4775797 ], + [ 9.9171356, 46.4773375 ], + [ 9.9172741, 46.4770739 ], + [ 9.9173639, 46.4768286 ], + [ 9.9174012, 46.4765411 ], + [ 9.9173861, 46.4762278 ], + [ 9.9173955, 46.4758289 ], + [ 9.9174881, 46.475503 ], + [ 9.9177494, 46.4750923 ], + [ 9.9180522, 46.4748241 ], + [ 9.9183537, 46.4747054 ], + [ 9.9185194, 46.4745896 ], + [ 9.9187251, 46.4745478 ], + [ 9.9189121, 46.4745063 ], + [ 9.9189716, 46.4744178 ], + [ 9.9190196, 46.4742922 ], + [ 9.9192322, 46.4742065 ], + [ 9.9194143, 46.4740405 ], + [ 9.9196026, 46.4738308 ], + [ 9.9196918, 46.4736109 ], + [ 9.9197938, 46.4734717 ], + [ 9.9200108, 46.4732863 ], + [ 9.9201046, 46.4731658 ], + [ 9.9201174, 46.4730534 ], + [ 9.9201086, 46.4726675 ], + [ 9.9201826, 46.4725039 ], + [ 9.920275, 46.4723711 ], + [ 9.920342699999999, 46.4721609 ], + [ 9.9206323, 46.4717995 ], + [ 9.9209353, 46.4715188 ], + [ 9.921292, 46.4712369 ], + [ 9.9214026, 46.4710912 ], + [ 9.921501899999999, 46.4708959 ], + [ 9.921676, 46.4707675 ], + [ 9.9219769, 46.4706363 ], + [ 9.9222389, 46.4704562 ], + [ 9.9224272, 46.4702465 ], + [ 9.922416, 46.4700039 ], + [ 9.9224813, 46.4698467 ], + [ 9.9226192, 46.4697129 ], + [ 9.9226849, 46.4693689 ], + [ 9.9228492, 46.4690289 ], + [ 9.9229451, 46.4687589 ], + [ 9.9229919, 46.4685897 ], + [ 9.9232813, 46.4684215 ], + [ 9.923509, 46.4682732 ], + [ 9.9236019, 46.4681341 ], + [ 9.9237035, 46.4679885 ], + [ 9.9238677, 46.4674493 ], + [ 9.9239022, 46.4670124 ], + [ 9.9239377, 46.4668124 ], + [ 9.924027, 46.4665925 ], + [ 9.9241243, 46.4663535 ], + [ 9.9241792, 46.4661841 ], + [ 9.924252599999999, 46.4658151 ], + [ 9.9244157, 46.4654315 ], + [ 9.924631699999999, 46.4650468 ], + [ 9.9247821, 46.4647756 ], + [ 9.9249737, 46.4646406 ], + [ 9.9251225, 46.4645315 ], + [ 9.9252715, 46.4642479 ], + [ 9.9255041, 46.4640123 ], + [ 9.9258702, 46.4637426 ], + [ 9.9261135, 46.4635442 ], + [ 9.9263608, 46.4632398 ], + [ 9.9266145, 46.4628792 ], + [ 9.9270302, 46.4625026 ], + [ 9.9273124, 46.4621787 ], + [ 9.9274587, 46.4620135 ], + [ 9.9276869, 46.4618777 ], + [ 9.9279607, 46.4617595 ], + [ 9.9280642, 46.4616577 ], + [ 9.9282412, 46.4613983 ], + [ 9.92841, 46.4611392 ], + [ 9.9285979, 46.4609233 ], + [ 9.9288918, 46.4606427 ], + [ 9.9290661, 46.460520700000004 ], + [ 9.9291596, 46.460394 ], + [ 9.9293119, 46.4601664 ], + [ 9.9295177, 46.4599501 ], + [ 9.929775, 46.4596516 ], + [ 9.9299341, 46.4593928 ], + [ 9.9301636, 46.4591978 ], + [ 9.9306286, 46.4589197 ], + [ 9.930989199999999, 46.4587248 ], + [ 9.9314331, 46.4583789 ], + [ 9.931723, 46.4582043 ], + [ 9.9319019, 46.4579886 ], + [ 9.932027699999999, 46.4577864 ], + [ 9.932273, 46.4574385 ], + [ 9.9324458, 46.4572665 ], + [ 9.9326999, 46.4571114 ], + [ 9.9328104, 46.4569657 ], + [ 9.9326559, 46.4567386 ], + [ 9.932618699999999, 46.4565151 ], + [ 9.9326615, 46.4562775 ], + [ 9.932762, 46.455914 ], + [ 9.9329706, 46.4555481 ], + [ 9.9330699, 46.4551597 ], + [ 9.933072, 46.4550101 ], + [ 9.9331076, 46.454617 ], + [ 9.93314, 46.4543297 ], + [ 9.9334726, 46.4539175 ], + [ 9.9338061, 46.4535427 ], + [ 9.933959, 46.4533274 ], + [ 9.9340268, 46.4530519 ], + [ 9.9341307, 46.4527631 ], + [ 9.9343422, 46.4524595 ], + [ 9.934575, 46.4522301 ], + [ 9.9346575, 46.4520601 ], + [ 9.9346431, 46.4517489 ], + [ 9.9347788, 46.4513723 ], + [ 9.9348749, 46.4511085 ], + [ 9.9349165, 46.4508273 ], + [ 9.9348942, 46.450644 ], + [ 9.9349343, 46.4505434 ], + [ 9.9350759, 46.4504718 ], + [ 9.9351515, 46.4503642 ], + [ 9.9352444, 46.4502252 ], + [ 9.9354786, 46.4500269 ], + [ 9.9356966, 46.4498664 ], + [ 9.9358786, 46.4497191 ], + [ 9.9360543, 46.4494162 ], + [ 9.9362521, 46.4492063 ], + [ 9.9364166, 46.4490657 ], + [ 9.936499, 46.4488957 ], + [ 9.936593, 46.4486564 ], + [ 9.9366941, 46.4484138 ], + [ 9.9367998, 46.4481819 ], + [ 9.9368924, 46.4479481 ], + [ 9.9369357, 46.4478107 ], + [ 9.9369838, 46.4476191 ], + [ 9.9370016, 46.4473328 ], + [ 9.9370741, 46.4472121 ], + [ 9.9371245, 46.4471396 ], + [ 9.937114, 46.4470532 ], + [ 9.9369025, 46.4467373 ], + [ 9.9368703, 46.4466558 ], + [ 9.9368736, 46.4465344 ], + [ 9.9369665, 46.4464305 ], + [ 9.9370377, 46.4463499 ], + [ 9.9371381, 46.4462156 ], + [ 9.9371945, 46.4460801 ], + [ 9.9372005, 46.4455927 ], + [ 9.9370717, 46.4453227 ], + [ 9.9369786, 46.4451905 ], + [ 9.9368872, 46.4450967 ], + [ 9.9368153, 46.4449841 ], + [ 9.9367309, 46.4448668 ], + [ 9.9366429, 46.4448274 ], + [ 9.9364353, 46.4447908 ], + [ 9.9361962, 46.4446356 ], + [ 9.9359991, 46.4445253 ], + [ 9.9355802, 46.4443696 ], + [ 9.9354206, 46.4442082 ], + [ 9.9351131, 46.4437153 ], + [ 9.9350093, 46.443493 ], + [ 9.934806, 46.4432498 ], + [ 9.9346881, 46.4431287 ], + [ 9.9343479, 46.4429483 ], + [ 9.9341283, 46.4427926 ], + [ 9.9340023, 46.4426349 ], + [ 9.9339093, 46.4424903 ], + [ 9.9338215, 46.4424557 ], + [ 9.9338032, 46.4423415 ], + [ 9.9335615, 46.4421451 ], + [ 9.9333578, 46.4418928 ], + [ 9.9331118, 46.4415866 ], + [ 9.9327515, 46.4412553 ], + [ 9.932507, 46.4409811 ], + [ 9.9323588, 46.4407826 ], + [ 9.9322031, 46.4404239 ], + [ 9.9319498, 46.4401178 ], + [ 9.9317336, 46.4398751 ], + [ 9.9316805, 46.4397295 ], + [ 9.9315677, 46.4388686 ], + [ 9.9315232, 46.4387489 ], + [ 9.9314306, 46.4386469 ], + [ 9.9311987, 46.4384164 ], + [ 9.9310592, 46.4383209 ], + [ 9.9310026, 46.4379551 ], + [ 9.9309035, 46.437853 ], + [ 9.9307023, 46.4374412 ], + [ 9.9304278, 46.4369924 ], + [ 9.9302801, 46.4367163 ], + [ 9.9302267, 46.4364052 ], + [ 9.9301548, 46.4360616 ], + [ 9.9299611, 46.4358138 ], + [ 9.92968, 46.435557 ], + [ 9.9295767, 46.4353786 ], + [ 9.9293909, 46.4351252 ], + [ 9.9291491, 46.4346976 ], + [ 9.9290506, 46.4344478 ], + [ 9.9289337, 46.4339737 ], + [ 9.9287467, 46.4335176 ], + [ 9.9286626, 46.4332455 ], + [ 9.9286435, 46.4329884 ], + [ 9.928474, 46.4325922 ], + [ 9.928295, 46.4321305 ], + [ 9.928162799999999, 46.4318375 ], + [ 9.9279243, 46.4314811 ], + [ 9.9278385, 46.4311707 ], + [ 9.9278001, 46.4308484 ], + [ 9.9278999, 46.4304353 ], + [ 9.9279608, 46.4302039 ], + [ 9.9279538, 46.4300506 ], + [ 9.9278502, 46.4298667 ], + [ 9.9275212, 46.4296109 ], + [ 9.9274829, 46.4294693 ], + [ 9.9274993, 46.4292936 ], + [ 9.9274925, 46.4291458 ], + [ 9.9273613, 46.4288747 ], + [ 9.9271872, 46.4287143 ], + [ 9.9270962, 46.4286285 ], + [ 9.9271774, 46.4285007 ], + [ 9.9273967, 46.4284412 ], + [ 9.9274866, 46.4283966 ], + [ 9.9274609, 46.4282276 ], + [ 9.9273571, 46.4276845 ], + [ 9.9272591, 46.4272686 ], + [ 9.9272648, 46.426808 ], + [ 9.9272521, 46.4263538 ], + [ 9.9271272, 46.4261142 ], + [ 9.9270826, 46.4259031 ], + [ 9.9270799, 46.4254547 ], + [ 9.9271706, 46.4249499 ], + [ 9.9271053, 46.4244847 ], + [ 9.9269766, 46.4241604 ], + [ 9.9268221, 46.4238426 ], + [ 9.9267643, 46.4235409 ], + [ 9.9267356, 46.4233053 ], + [ 9.9267434, 46.4232808 ], + [ 9.9268427, 46.4233332 ], + [ 9.9269302, 46.4233434 ], + [ 9.9269453, 46.4232824 ], + [ 9.926952, 46.4232339 ], + [ 9.9269839, 46.4229908 ], + [ 9.9269737, 46.4225729 ], + [ 9.926847, 46.422097 ], + [ 9.9267456, 46.4216084 ], + [ 9.9266918, 46.4211975 ], + [ 9.9266483, 46.4208168 ], + [ 9.9265845, 46.4206672 ], + [ 9.926480699999999, 46.4203893 ], + [ 9.9263588, 46.4201618 ], + [ 9.9261983, 46.419944 ], + [ 9.9261594, 46.4198048 ], + [ 9.9262579, 46.4195226 ], + [ 9.9263933, 46.4193526 ], + [ 9.9265355, 46.4191732 ], + [ 9.9264642, 46.4191793 ], + [ 9.9263741, 46.4192174 ], + [ 9.9262975, 46.4192507 ], + [ 9.9262339, 46.4192838 ], + [ 9.926157, 46.4193261 ], + [ 9.926112700000001, 46.4193542 ], + [ 9.9260613, 46.4193688 ], + [ 9.9260467, 46.419333 ], + [ 9.9260706, 46.4192874 ], + [ 9.9261013, 46.419246 ], + [ 9.9261435, 46.4191728 ], + [ 9.9262194, 46.4191079 ], + [ 9.9262957, 46.4190702 ], + [ 9.9263599, 46.4190507 ], + [ 9.926421, 46.4189454 ], + [ 9.9263181, 46.4188484 ], + [ 9.9264133, 46.4187785 ], + [ 9.9263649, 46.4187344 ], + [ 9.9263297, 46.4186764 ], + [ 9.926481, 46.4185512 ], + [ 9.9266151, 46.418336 ], + [ 9.9267167, 46.4179995 ], + [ 9.9267912, 46.4177962 ], + [ 9.9268223, 46.4176229 ], + [ 9.9268119, 46.4173958 ], + [ 9.9267472, 46.416979 ], + [ 9.9266815, 46.4165577 ], + [ 9.9266743, 46.4162579 ], + [ 9.9266624, 46.4159991 ], + [ 9.9267826, 46.4156056 ], + [ 9.9267326, 46.4153839 ], + [ 9.9266417, 46.4152457 ], + [ 9.9265743, 46.4145388 ], + [ 9.9257607, 46.4130249 ], + [ 9.9241265, 46.4106041 ], + [ 9.9240076, 46.4103699 ], + [ 9.9239141, 46.4100855 ], + [ 9.923725, 46.4097033 ], + [ 9.923519, 46.4091286 ], + [ 9.9232455, 46.408468 ], + [ 9.9230323, 46.4079494 ], + [ 9.9228514, 46.4073367 ], + [ 9.922741, 46.4068968 ], + [ 9.922693, 46.40663 ], + [ 9.9225186, 46.4061603 ], + [ 9.9224257, 46.4059069 ], + [ 9.9219527, 46.389975 ], + [ 9.9213248, 46.3885823 ], + [ 9.9169185, 46.3866179 ], + [ 9.9132375, 46.3847759 ], + [ 9.9109905, 46.3838228 ], + [ 9.9094448, 46.3830278 ], + [ 9.9080223, 46.382293 ], + [ 9.9078983, 46.3817474 ], + [ 9.9075498, 46.381233 ], + [ 9.9074056, 46.3809211 ], + [ 9.9074051, 46.3809121 ], + [ 9.9064099, 46.3807503 ], + [ 9.9050845, 46.3801362 ], + [ 9.9038136, 46.3795395 ], + [ 9.9029516, 46.3794095 ], + [ 9.901549, 46.3788039 ], + [ 9.9007629, 46.3783728 ], + [ 9.9002972, 46.3780166 ], + [ 9.9001889, 46.3778303 ], + [ 9.9002648, 46.377555 ], + [ 9.8998933, 46.3774209 ], + [ 9.899261, 46.3769684 ], + [ 9.8983434, 46.3765791 ], + [ 9.8979162, 46.3767239 ], + [ 9.8974547, 46.3767897 ], + [ 9.8967533, 46.3768129 ], + [ 9.8963054, 46.3767562 ], + [ 9.8944455, 46.376034 ], + [ 9.8939228, 46.3756787 ], + [ 9.8910262, 46.3747796 ], + [ 9.8896476, 46.3743419 ], + [ 9.888653, 46.3738214 ], + [ 9.8872537, 46.3735196 ], + [ 9.8867085, 46.3732603 ], + [ 9.8861394, 46.3732381 ], + [ 9.8855618, 46.3733675 ], + [ 9.8848534, 46.3734769 ], + [ 9.88386, 46.3734228 ], + [ 9.8839648, 46.373022 ], + [ 9.8838754, 46.3726573 ], + [ 9.8838851, 46.3721895 ], + [ 9.8835547, 46.3715864 ], + [ 9.8825681, 46.3704751 ], + [ 9.8824782, 46.3700971 ], + [ 9.8820017, 46.3697434 ], + [ 9.8813957, 46.369071 ], + [ 9.880293, 46.3681925 ], + [ 9.8792465, 46.3678792 ], + [ 9.8787498, 46.367672 ], + [ 9.8784043, 46.3673939 ], + [ 9.8768374, 46.3665923 ], + [ 9.8763917, 46.3664396 ], + [ 9.876043899999999, 46.3661309 ], + [ 9.8748028, 46.3655125 ], + [ 9.874210399999999, 46.3657083 ], + [ 9.8735187, 46.3660484 ], + [ 9.8726313, 46.3664285 ], + [ 9.8716784, 46.3668332 ], + [ 9.8709254, 46.3672555 ], + [ 9.87016, 46.367747 ], + [ 9.86931, 46.3682178 ], + [ 9.8683432, 46.3686573 ], + [ 9.8676631, 46.3692037 ], + [ 9.8669144, 46.3697062 ], + [ 9.8660015, 46.3702246 ], + [ 9.8647321, 46.3708788 ], + [ 9.8635412, 46.3714507 ], + [ 9.8621818, 46.3722566 ], + [ 9.861031, 46.3729651 ], + [ 9.8599452, 46.3736373 ], + [ 9.8590262, 46.3743509 ], + [ 9.8581941, 46.3748441 ], + [ 9.8574971, 46.3753795 ], + [ 9.8560818, 46.3760836 ], + [ 9.8544598, 46.3772178 ], + [ 9.8533655, 46.378051 ], + [ 9.8524106, 46.3787081 ], + [ 9.8514021, 46.3792977 ], + [ 9.8507468, 46.3796943 ], + [ 9.8500345, 46.380253 ], + [ 9.8495341, 46.3807716 ], + [ 9.8490332, 46.3809687 ], + [ 9.8478403, 46.3818159 ], + [ 9.8467389, 46.3825114 ], + [ 9.846068, 46.3829427 ], + [ 9.845426, 46.3835683 ], + [ 9.8453264, 46.3847303 ], + [ 9.8452345, 46.3857199 ], + [ 9.8453877, 46.3869554 ], + [ 9.8456657, 46.3877628 ], + [ 9.8458617, 46.3888824 ], + [ 9.8459749, 46.3902796 ], + [ 9.8461911, 46.3914879 ], + [ 9.8460723, 46.3920708 ], + [ 9.8461353, 46.39219 ], + [ 9.8462437, 46.3924172 ], + [ 9.8463552, 46.3927132 ], + [ 9.8464324, 46.3930041 ], + [ 9.8465177, 46.3932603 ], + [ 9.8466379, 46.3935676 ], + [ 9.8467097, 46.3939215 ], + [ 9.847189, 46.3947021 ], + [ 9.8473081, 46.395076 ], + [ 9.8474265, 46.3956927 ], + [ 9.847999, 46.3970316 ], + [ 9.8485186, 46.3980047 ], + [ 9.8488775, 46.3990739 ], + [ 9.8492501, 46.3998099 ], + [ 9.8494971, 46.4003542 ], + [ 9.8533283, 46.4056884 ], + [ 9.8533489, 46.4065355 ], + [ 9.8532597, 46.4073446 ], + [ 9.8533959, 46.4075898 ], + [ 9.8533962, 46.40778 ], + [ 9.8533558, 46.4080057 ], + [ 9.8536135, 46.4081675 ], + [ 9.8538459, 46.4083833 ], + [ 9.8540019, 46.4085078 ], + [ 9.8539013, 46.4087138 ], + [ 9.8536308, 46.4091235 ], + [ 9.8534568, 46.4096348 ], + [ 9.8533716, 46.4099325 ], + [ 9.8534341, 46.410167 ], + [ 9.853466300000001, 46.4103783 ], + [ 9.8533926, 46.4105317 ], + [ 9.853336, 46.4106849 ], + [ 9.853417, 46.4108231 ], + [ 9.8536007, 46.4109311 ], + [ 9.8538474, 46.4110098 ], + [ 9.854089, 46.4111206 ], + [ 9.8543511, 46.4112909 ], + [ 9.8544904, 46.4114239 ], + [ 9.8546013, 46.4115775 ], + [ 9.8547299, 46.4118705 ], + [ 9.8547487, 46.4120381 ], + [ 9.8547088, 46.4124387 ], + [ 9.8546687, 46.4125796 ], + [ 9.854684, 46.4126671 ], + [ 9.8548194, 46.4127122 ], + [ 9.8550439, 46.4128234 ], + [ 9.8552399, 46.4129512 ], + [ 9.8553623, 46.4132323 ], + [ 9.8554344, 46.4135547 ], + [ 9.8555505, 46.413824 ], + [ 9.8557366, 46.413968 ], + [ 9.8559173, 46.4140081 ], + [ 9.8561433, 46.4140233 ], + [ 9.8563239, 46.4140435 ], + [ 9.8565075, 46.4141107 ], + [ 9.8565314, 46.4146481 ], + [ 9.8565222, 46.4150248 ], + [ 9.8566733, 46.4154102 ], + [ 9.8573615, 46.4157696 ], + [ 9.8580013, 46.4162203 ], + [ 9.8592191, 46.4168909 ], + [ 9.8601927, 46.4172987 ], + [ 9.8608616, 46.4178202 ], + [ 9.8612459, 46.4183299 ], + [ 9.8614456, 46.4187543 ], + [ 9.8616251, 46.4193041 ], + [ 9.8617177, 46.4196414 ], + [ 9.8619007, 46.4202519 ], + [ 9.8623431, 46.4208699 ], + [ 9.8625961, 46.4217776 ], + [ 9.8627752, 46.4224202 ], + [ 9.8636217, 46.4239617 ], + [ 9.8640461, 46.424993 ], + [ 9.864208099999999, 46.4254317 ], + [ 9.8639529, 46.4261274 ], + [ 9.8639057, 46.4262838 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "JBG0005", + "country" : "CHE", + "name" : [ + { + "text" : "Eidgenössisches Jagdbanngebiet Bernina-Albris", + "lang" : "de-CH" + }, + { + "text" : "District franc fédéral Bernina-Albris", + "lang" : "fr-CH" + }, + { + "text" : "Bandita federale di caccia Bernina-Albris", + "lang" : "it-CH" + }, + { + "text" : "Federal Game Reserve Bernina-Albris", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.6886446, 47.1870313 ], + [ 8.6886359, 47.1868901 ], + [ 8.6886163, 47.1867495 ], + [ 8.688586, 47.1866097 ], + [ 8.688545, 47.1864712 ], + [ 8.6884934, 47.1863344 ], + [ 8.6884314, 47.1861996 ], + [ 8.6883591, 47.1860672 ], + [ 8.6882768, 47.1859376 ], + [ 8.6881846, 47.1858111 ], + [ 8.6880829, 47.185688 ], + [ 8.6879718, 47.1855687 ], + [ 8.6878517, 47.1854536 ], + [ 8.687723, 47.1853429 ], + [ 8.6875859, 47.1852369 ], + [ 8.6874409, 47.185136 ], + [ 8.6872883, 47.1850404 ], + [ 8.6871286, 47.1849504 ], + [ 8.6869622, 47.1848662 ], + [ 8.686789600000001, 47.184788 ], + [ 8.6866112, 47.1847161 ], + [ 8.6864276, 47.1846507 ], + [ 8.6862391, 47.1845919 ], + [ 8.6860464, 47.18454 ], + [ 8.68585, 47.1844949 ], + [ 8.6856504, 47.1844569 ], + [ 8.6854482, 47.1844262 ], + [ 8.6852439, 47.1844026 ], + [ 8.685038, 47.1843864 ], + [ 8.6848312, 47.1843776 ], + [ 8.684624, 47.1843761 ], + [ 8.684417, 47.184382 ], + [ 8.6842107, 47.1843954 ], + [ 8.6840057, 47.184416 ], + [ 8.6838026, 47.184444 ], + [ 8.6836019, 47.1844791 ], + [ 8.6834041, 47.1845214 ], + [ 8.6832099, 47.1845707 ], + [ 8.6830198, 47.1846268 ], + [ 8.6828342, 47.1846896 ], + [ 8.6826536, 47.184759 ], + [ 8.6824787, 47.1848347 ], + [ 8.6823098, 47.1849166 ], + [ 8.6821474, 47.1850043 ], + [ 8.681992, 47.1850978 ], + [ 8.681844, 47.1851966 ], + [ 8.6817037, 47.1853006 ], + [ 8.6815717, 47.1854095 ], + [ 8.6814481, 47.1855229 ], + [ 8.6813335, 47.1856406 ], + [ 8.681228, 47.1857622 ], + [ 8.681132, 47.1858874 ], + [ 8.6810458, 47.1860159 ], + [ 8.6809695, 47.1861472 ], + [ 8.6809035, 47.1862811 ], + [ 8.6808478, 47.1864172 ], + [ 8.6808026, 47.1865551 ], + [ 8.680768, 47.1866944 ], + [ 8.6807443, 47.1868347 ], + [ 8.6807313, 47.1869757 ], + [ 8.6807291, 47.187117 ], + [ 8.6807378, 47.1872581 ], + [ 8.6807574, 47.1873988 ], + [ 8.6807876, 47.1875385 ], + [ 8.6808286, 47.187677 ], + [ 8.6808802, 47.1878138 ], + [ 8.6809422, 47.1879486 ], + [ 8.6810145, 47.188081 ], + [ 8.6810968, 47.1882107 ], + [ 8.6811889, 47.1883372 ], + [ 8.6812907, 47.1884603 ], + [ 8.6814018, 47.1885796 ], + [ 8.6815218, 47.1886947 ], + [ 8.6816506, 47.1888054 ], + [ 8.6817877, 47.1889114 ], + [ 8.6819327, 47.1890123 ], + [ 8.6820852, 47.1891079 ], + [ 8.6822449, 47.1891979 ], + [ 8.6824113, 47.1892821 ], + [ 8.682583900000001, 47.1893603 ], + [ 8.6827623, 47.1894322 ], + [ 8.682946, 47.1894976 ], + [ 8.6831345, 47.1895564 ], + [ 8.6833272, 47.1896084 ], + [ 8.683523600000001, 47.1896534 ], + [ 8.6837232, 47.1896914 ], + [ 8.6839254, 47.1897222 ], + [ 8.684129800000001, 47.1897457 ], + [ 8.6843357, 47.189762 ], + [ 8.6845425, 47.1897708 ], + [ 8.6847497, 47.1897723 ], + [ 8.6849568, 47.1897663 ], + [ 8.6851631, 47.189753 ], + [ 8.6853681, 47.1897323 ], + [ 8.6855713, 47.1897044 ], + [ 8.685772, 47.1896692 ], + [ 8.6859697, 47.189627 ], + [ 8.6861639, 47.1895777 ], + [ 8.686354099999999, 47.1895216 ], + [ 8.6865397, 47.1894587 ], + [ 8.6867203, 47.1893893 ], + [ 8.6868952, 47.1893136 ], + [ 8.6870641, 47.1892318 ], + [ 8.6872265, 47.189144 ], + [ 8.6873819, 47.1890505 ], + [ 8.68753, 47.1889517 ], + [ 8.6876702, 47.1888477 ], + [ 8.6878023, 47.1887388 ], + [ 8.6879258, 47.1886254 ], + [ 8.6880404, 47.1885077 ], + [ 8.6881459, 47.1883861 ], + [ 8.6882418, 47.1882609 ], + [ 8.6883281, 47.1881324 ], + [ 8.6884043, 47.188001 ], + [ 8.6884704, 47.1878671 ], + [ 8.6885261, 47.187731 ], + [ 8.6885712, 47.1875932 ], + [ 8.6886057, 47.1874539 ], + [ 8.6886295, 47.1873135 ], + [ 8.6886425, 47.1871725 ], + [ 8.6886446, 47.1870313 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0104", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Samstagern", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Samstagern", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Samstagern", + "lang" : "it-CH" + }, + { + "text" : "Substation Samstagern", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6531291, 47.4035893 ], + [ 7.6530435, 47.4035789 ], + [ 7.652972, 47.4035032 ], + [ 7.6528108, 47.4035636 ], + [ 7.6527005, 47.4037777 ], + [ 7.652249, 47.40381 ], + [ 7.6518739, 47.4038012 ], + [ 7.6514929, 47.4040771 ], + [ 7.6511671, 47.4041761 ], + [ 7.6509689, 47.4041721 ], + [ 7.6503688, 47.4040394 ], + [ 7.6499756, 47.404001 ], + [ 7.6497229, 47.4040555 ], + [ 7.6494768, 47.4040948 ], + [ 7.6492231, 47.4044388 ], + [ 7.6483872999999996, 47.404002 ], + [ 7.6481796, 47.4042028 ], + [ 7.6479297, 47.4044281 ], + [ 7.6481249, 47.4045355 ], + [ 7.6482995, 47.4045958 ], + [ 7.6484901, 47.4046487 ], + [ 7.6486595, 47.4046438 ], + [ 7.6486411, 47.4047384 ], + [ 7.6486908, 47.4047794 ], + [ 7.6487693, 47.4048655 ], + [ 7.6488618, 47.4049361 ], + [ 7.6489923, 47.4050748 ], + [ 7.6492309, 47.4052326 ], + [ 7.6493915999999995, 47.4053321 ], + [ 7.6494629, 47.4053836 ], + [ 7.6496619, 47.4055505 ], + [ 7.6497596, 47.4055817 ], + [ 7.6498855, 47.4056344 ], + [ 7.6500508, 47.4056935 ], + [ 7.6501955, 47.4058312 ], + [ 7.650298, 47.4059344 ], + [ 7.65036, 47.4059946 ], + [ 7.6503625, 47.4059969 ], + [ 7.6503647, 47.4059993 ], + [ 7.6503666, 47.4060018 ], + [ 7.6503681, 47.4060045 ], + [ 7.6503692999999995, 47.4060072 ], + [ 7.6503701, 47.40601 ], + [ 7.6503705, 47.4060129 ], + [ 7.6503706000000005, 47.4060157 ], + [ 7.6503703, 47.4060185 ], + [ 7.6503696, 47.4060213 ], + [ 7.6503685, 47.4060241 ], + [ 7.6503671, 47.4060268 ], + [ 7.6503654, 47.4060294 ], + [ 7.6503633, 47.4060318 ], + [ 7.6503609, 47.4060342 ], + [ 7.6503582, 47.4060364 ], + [ 7.6503553, 47.4060384 ], + [ 7.650352, 47.4060402 ], + [ 7.6503486, 47.4060418 ], + [ 7.6503449, 47.4060432 ], + [ 7.6503411, 47.4060444 ], + [ 7.6502494, 47.4060826 ], + [ 7.6501703, 47.4061158 ], + [ 7.6501853, 47.4061822 ], + [ 7.6500364, 47.4061946 ], + [ 7.6497344, 47.406219899999996 ], + [ 7.649668, 47.4062246 ], + [ 7.6494805, 47.4062418 ], + [ 7.6493991999999995, 47.406251 ], + [ 7.6492532, 47.4062772 ], + [ 7.6494451, 47.4065237 ], + [ 7.6495217, 47.4065957 ], + [ 7.6496554, 47.4068186 ], + [ 7.6496732, 47.406857 ], + [ 7.6496394, 47.4069659 ], + [ 7.649646, 47.4070254 ], + [ 7.6496954, 47.4070833 ], + [ 7.6497212999999995, 47.4071312 ], + [ 7.6498837, 47.4071236 ], + [ 7.6499609, 47.4071902 ], + [ 7.6502896, 47.4076047 ], + [ 7.6503456, 47.4076931 ], + [ 7.6503905, 47.4077104 ], + [ 7.6504417, 47.4076871 ], + [ 7.6504908, 47.4076623 ], + [ 7.6505697, 47.4076114 ], + [ 7.6506123, 47.4075838 ], + [ 7.6507019, 47.407527 ], + [ 7.6507295, 47.407446 ], + [ 7.6507985, 47.4072668 ], + [ 7.6507944, 47.407135 ], + [ 7.6507489, 47.4069827 ], + [ 7.6507681, 47.4069725 ], + [ 7.6512108, 47.4069329 ], + [ 7.6513542999999995, 47.40692 ], + [ 7.6513729, 47.4069094 ], + [ 7.6513928, 47.4068998 ], + [ 7.6514139, 47.4068915 ], + [ 7.651436, 47.4068845 ], + [ 7.6514589, 47.4068789 ], + [ 7.6514824, 47.4068746 ], + [ 7.6518334, 47.4068149 ], + [ 7.6520212, 47.4067901 ], + [ 7.6522114, 47.4067758 ], + [ 7.6524027, 47.406772 ], + [ 7.6526128, 47.4067724 ], + [ 7.6528218, 47.4067869 ], + [ 7.6530337, 47.4068161 ], + [ 7.6531129, 47.4068291 ], + [ 7.6531791, 47.4068443 ], + [ 7.6534746, 47.4069095 ], + [ 7.654004, 47.4069951 ], + [ 7.6544432, 47.4070646 ], + [ 7.6544608, 47.4070669 ], + [ 7.6544787, 47.4070683 ], + [ 7.6544966, 47.4070688 ], + [ 7.6545103999999995, 47.4070679 ], + [ 7.654524, 47.4070662 ], + [ 7.6545373, 47.4070636 ], + [ 7.6545503, 47.4070603 ], + [ 7.6545627, 47.4070562 ], + [ 7.6545746, 47.4070513 ], + [ 7.6545857, 47.4070458 ], + [ 7.6545961, 47.4070396 ], + [ 7.6546016, 47.4070339 ], + [ 7.6546063, 47.407028 ], + [ 7.6546102, 47.4070217 ], + [ 7.6546133, 47.4070153 ], + [ 7.6546155, 47.4070087 ], + [ 7.6546168, 47.407002 ], + [ 7.6546173, 47.4069952 ], + [ 7.6546168, 47.4069884 ], + [ 7.6546155, 47.4069817 ], + [ 7.6546133, 47.4069751 ], + [ 7.6546102, 47.4069687 ], + [ 7.6546091, 47.406966 ], + [ 7.6542282, 47.4061866 ], + [ 7.6542200000000005, 47.40617 ], + [ 7.6542143, 47.4061589 ], + [ 7.6542017, 47.4061338 ], + [ 7.6541121, 47.4059428 ], + [ 7.6540867, 47.4059 ], + [ 7.6540565, 47.4058588 ], + [ 7.6540213999999995, 47.4058193 ], + [ 7.6539819, 47.4057818 ], + [ 7.6539143, 47.4057215 ], + [ 7.6538927, 47.4057042 ], + [ 7.6538734999999996, 47.4056856 ], + [ 7.6538566, 47.405666 ], + [ 7.6538423, 47.4056455 ], + [ 7.6538307, 47.4056243 ], + [ 7.6538218, 47.4056024 ], + [ 7.6538157, 47.4055801 ], + [ 7.6538138, 47.4055452 ], + [ 7.6538144, 47.4055051 ], + [ 7.653828, 47.4054284 ], + [ 7.653839, 47.4053524 ], + [ 7.6538381, 47.405301 ], + [ 7.6538322, 47.4052497 ], + [ 7.6538214, 47.4051987 ], + [ 7.6537468, 47.4048825 ], + [ 7.6536481, 47.4044411 ], + [ 7.653595, 47.404173 ], + [ 7.6535606, 47.403997 ], + [ 7.6535546, 47.403968 ], + [ 7.6535382, 47.4039107 ], + [ 7.6535257, 47.4038704 ], + [ 7.6535105, 47.4038305 ], + [ 7.6534927, 47.4037912 ], + [ 7.6534786, 47.4037698 ], + [ 7.6534619, 47.4037493 ], + [ 7.6534428, 47.4037298 ], + [ 7.6534214, 47.4037114 ], + [ 7.6533978, 47.4036943 ], + [ 7.6533722, 47.4036785 ], + [ 7.6533082, 47.4036465 ], + [ 7.6532742, 47.4036344 ], + [ 7.6532396, 47.4036232 ], + [ 7.6532044, 47.4036128 ], + [ 7.6531291, 47.4035893 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns172", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Eichen", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Eichen", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Eichen", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Eichen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6713778999999995, 47.4889585 ], + [ 7.6715461, 47.4894296 ], + [ 7.6715358, 47.4894508 ], + [ 7.6716309, 47.4898375 ], + [ 7.6716632, 47.4900978 ], + [ 7.6716637, 47.4902034 ], + [ 7.6719127, 47.4901677 ], + [ 7.6722445, 47.4900896 ], + [ 7.6725347, 47.4899764 ], + [ 7.6728148, 47.4899337 ], + [ 7.673178, 47.4899259 ], + [ 7.6734787, 47.4898338 ], + [ 7.6734263, 47.4897143 ], + [ 7.6734566, 47.4895243 ], + [ 7.6734965, 47.4891794 ], + [ 7.6734541, 47.4889614 ], + [ 7.6733278, 47.4885887 ], + [ 7.6730979999999995, 47.4882585 ], + [ 7.6726087, 47.4879218 ], + [ 7.6719391, 47.4876327 ], + [ 7.6712353, 47.4871928 ], + [ 7.6710685, 47.4870454 ], + [ 7.670922, 47.4867642 ], + [ 7.6707128, 47.4864058 ], + [ 7.6706395, 47.4862652 ], + [ 7.6700566, 47.4858864 ], + [ 7.6696444, 47.4856178 ], + [ 7.6692141, 47.4858584 ], + [ 7.6686111, 47.4861956 ], + [ 7.6690942, 47.4865638 ], + [ 7.6692515, 47.4869294 ], + [ 7.6695641, 47.4872102 ], + [ 7.6700330999999995, 47.4876385 ], + [ 7.6703244, 47.4877997 ], + [ 7.6707093, 47.4879748 ], + [ 7.6709495, 47.4883121 ], + [ 7.6710126, 47.4885019 ], + [ 7.6711797, 47.4887338 ], + [ 7.6713778999999995, 47.4889585 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr040", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Under de Flüe", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Under de Flüe", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Under de Flüe", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Under de Flüe", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.1239623, 46.2106525 ], + [ 6.1239604, 46.2105113 ], + [ 6.1239478, 46.2103702 ], + [ 6.1239247, 46.2102299 ], + [ 6.1238909, 46.2100906 ], + [ 6.1238468, 46.2099527 ], + [ 6.1237922, 46.2098165 ], + [ 6.1237275, 46.2096826 ], + [ 6.1236528, 46.2095512 ], + [ 6.1235683, 46.2094226 ], + [ 6.1234742, 46.2092974 ], + [ 6.1233708, 46.2091757 ], + [ 6.1232584, 46.2090579 ], + [ 6.1231372, 46.2089444 ], + [ 6.1230076, 46.2088354 ], + [ 6.12287, 46.2087313 ], + [ 6.1227248, 46.2086324 ], + [ 6.1225723, 46.2085388 ], + [ 6.1224129, 46.208451 ], + [ 6.1222471, 46.208369 ], + [ 6.1220754, 46.2082932 ], + [ 6.1218982, 46.2082237 ], + [ 6.121716, 46.2081607 ], + [ 6.1215293, 46.2081045 ], + [ 6.1213387, 46.2080551 ], + [ 6.1211445, 46.2080127 ], + [ 6.1209475, 46.2079775 ], + [ 6.120748, 46.2079494 ], + [ 6.1205467, 46.2079286 ], + [ 6.1203441, 46.2079151 ], + [ 6.1201408, 46.207909 ], + [ 6.1199372, 46.2079104 ], + [ 6.1197341, 46.2079191 ], + [ 6.1195319, 46.2079351 ], + [ 6.1193312, 46.2079585 ], + [ 6.1191325, 46.2079892 ], + [ 6.1189364, 46.2080271 ], + [ 6.1187435, 46.208072 ], + [ 6.1185542, 46.2081238 ], + [ 6.118369, 46.2081825 ], + [ 6.1181885, 46.2082478 ], + [ 6.1180132, 46.2083196 ], + [ 6.1178436, 46.2083977 ], + [ 6.11768, 46.2084818 ], + [ 6.1175231, 46.2085717 ], + [ 6.1173731, 46.2086673 ], + [ 6.1172305, 46.2087681 ], + [ 6.1170957, 46.208874 ], + [ 6.1169691, 46.2089846 ], + [ 6.116851, 46.2090997 ], + [ 6.1167417, 46.2092189 ], + [ 6.1166416, 46.209342 ], + [ 6.1165509, 46.2094684 ], + [ 6.1164699, 46.209598 ], + [ 6.1163987, 46.2097304 ], + [ 6.1163376, 46.2098651 ], + [ 6.1162868, 46.2100019 ], + [ 6.1162463, 46.2101404 ], + [ 6.1162163, 46.2102801 ], + [ 6.116197, 46.2104207 ], + [ 6.1161882, 46.2105619 ], + [ 6.1161901, 46.2107032 ], + [ 6.1162026, 46.2108442 ], + [ 6.1162258, 46.2109845 ], + [ 6.1162595, 46.2111239 ], + [ 6.1163037, 46.2112618 ], + [ 6.1163582, 46.2113979 ], + [ 6.1164229, 46.2115319 ], + [ 6.1164976, 46.2116633 ], + [ 6.1165821, 46.2117919 ], + [ 6.1166761, 46.2119171 ], + [ 6.1167795, 46.2120389 ], + [ 6.116892, 46.2121566 ], + [ 6.1170132, 46.2122701 ], + [ 6.1171427, 46.212379 ], + [ 6.1172803, 46.2124831 ], + [ 6.1174256, 46.2125821 ], + [ 6.1175781, 46.2126756 ], + [ 6.1177375, 46.2127635 ], + [ 6.1179033, 46.2128454 ], + [ 6.118075, 46.2129213 ], + [ 6.1182522, 46.2129907 ], + [ 6.1184344, 46.2130537 ], + [ 6.1186211, 46.2131099 ], + [ 6.1188118, 46.2131593 ], + [ 6.119006, 46.2132017 ], + [ 6.1192031, 46.213237 ], + [ 6.1194026, 46.213265 ], + [ 6.1196039, 46.2132858 ], + [ 6.1198065, 46.2132992 ], + [ 6.1200099, 46.2133053 ], + [ 6.1202134, 46.213304 ], + [ 6.1204166, 46.2132952 ], + [ 6.1206188, 46.2132791 ], + [ 6.1208195, 46.2132557 ], + [ 6.1210182, 46.2132251 ], + [ 6.1212143, 46.2131872 ], + [ 6.1214072999999996, 46.2131423 ], + [ 6.1215966, 46.2130904 ], + [ 6.1217818, 46.2130317 ], + [ 6.1219623, 46.2129664 ], + [ 6.1221376, 46.2128946 ], + [ 6.1223072, 46.2128166 ], + [ 6.1224708, 46.2127325 ], + [ 6.1226277, 46.2126425 ], + [ 6.1227777, 46.212547 ], + [ 6.1229203, 46.2124462 ], + [ 6.123055, 46.2123403 ], + [ 6.1231816, 46.2122297 ], + [ 6.1232997, 46.2121146 ], + [ 6.123409, 46.2119954 ], + [ 6.1235091, 46.2118724 ], + [ 6.1235998, 46.2117459 ], + [ 6.1236808, 46.2116164 ], + [ 6.1237519, 46.211484 ], + [ 6.123813, 46.2113492 ], + [ 6.1238638, 46.2112124 ], + [ 6.1239043, 46.211073999999996 ], + [ 6.1239342, 46.2109343 ], + [ 6.1239536, 46.2107936 ], + [ 6.1239623, 46.2106525 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE30", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5513712, 47.5060603 ], + [ 7.5514028, 47.5060161 ], + [ 7.5513627, 47.5060146 ], + [ 7.5507789, 47.5059947 ], + [ 7.5509146, 47.5060715 ], + [ 7.5510497, 47.5061709 ], + [ 7.5511317, 47.5062636 ], + [ 7.5513006, 47.506283 ], + [ 7.5513814, 47.5061513 ], + [ 7.5513712, 47.5060603 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns192", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Birsig", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Birsig", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Birsig", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Birsig", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.8892172, 46.4773631 ], + [ 9.8890216, 46.4750122 ], + [ 9.8886482, 46.4726716 ], + [ 9.8880981, 46.4703477 ], + [ 9.8873727, 46.4680469 ], + [ 9.8864741, 46.4657754 ], + [ 9.8854048, 46.4635395 ], + [ 9.8841677, 46.4613454 ], + [ 9.8827662, 46.459199 ], + [ 9.8812043, 46.4571062 ], + [ 9.8794861, 46.4550728 ], + [ 9.8776164, 46.4531042 ], + [ 9.8756003, 46.4512059 ], + [ 9.8734434, 46.4493832 ], + [ 9.8711516, 46.4476409 ], + [ 9.8687312, 46.4459838 ], + [ 9.8661887, 46.4444166 ], + [ 9.8635313, 46.4429434 ], + [ 9.860766, 46.4415682 ], + [ 9.8579006, 46.440295 ], + [ 9.8549429, 46.4391271 ], + [ 9.8519009, 46.4380677 ], + [ 9.848783, 46.4371198 ], + [ 9.8455978, 46.4362858 ], + [ 9.8423538, 46.4355682 ], + [ 9.83906, 46.4349689 ], + [ 9.8357255, 46.4344894 ], + [ 9.8323593, 46.4341312 ], + [ 9.8289706, 46.4338951 ], + [ 9.8255687, 46.4337819 ], + [ 9.8221629, 46.4337919 ], + [ 9.8187625, 46.433925 ], + [ 9.8153768, 46.4341808 ], + [ 9.8120151, 46.4345587 ], + [ 9.8086865, 46.4350576 ], + [ 9.8054002, 46.4356762 ], + [ 9.8021651, 46.4364128 ], + [ 9.7989901, 46.4372653 ], + [ 9.7958839, 46.4382314 ], + [ 9.792855, 46.4393086 ], + [ 9.7899116, 46.4404937 ], + [ 9.7870619, 46.4417837 ], + [ 9.7843136, 46.4431749 ], + [ 9.7816742, 46.4446636 ], + [ 9.7791511, 46.4462457 ], + [ 9.776751, 46.4479168 ], + [ 9.7744806, 46.4496725 ], + [ 9.772346, 46.4515078 ], + [ 9.7703533, 46.4534177 ], + [ 9.7685077, 46.4553972 ], + [ 9.7668145, 46.4574406 ], + [ 9.7652781, 46.4595424 ], + [ 9.763902999999999, 46.461697 ], + [ 9.7626928, 46.4638982 ], + [ 9.7616509, 46.4661403 ], + [ 9.7607802, 46.4684169 ], + [ 9.760083, 46.4707219 ], + [ 9.7595613, 46.4730489 ], + [ 9.7592166, 46.4753916 ], + [ 9.7590498, 46.4777436 ], + [ 9.7590614, 46.4800984 ], + [ 9.7592513, 46.4824495 ], + [ 9.7596192, 46.4847905 ], + [ 9.760164, 46.487115 ], + [ 9.7608842, 46.4894167 ], + [ 9.7617779, 46.4916891 ], + [ 9.7628427, 46.4939261 ], + [ 9.7640756, 46.4961216 ], + [ 9.7654733, 46.4982694 ], + [ 9.767032, 46.5003638 ], + [ 9.7687474, 46.502399 ], + [ 9.7706149, 46.5043693 ], + [ 9.7726292, 46.5062694 ], + [ 9.774785, 46.5080941 ], + [ 9.7770763, 46.5098383 ], + [ 9.7794967, 46.5114973 ], + [ 9.7820398, 46.5130666 ], + [ 9.7846985, 46.5145417 ], + [ 9.7874655, 46.5159186 ], + [ 9.7903333, 46.5171937 ], + [ 9.7932939, 46.5183633 ], + [ 9.7963392, 46.5194242 ], + [ 9.7994609, 46.5203736 ], + [ 9.8026504, 46.5212088 ], + [ 9.805899, 46.5219276 ], + [ 9.8091977, 46.5225279 ], + [ 9.8125374, 46.5230081 ], + [ 9.815909, 46.5233669 ], + [ 9.8193033, 46.5236033 ], + [ 9.8227108, 46.5237167 ], + [ 9.8261223, 46.5237068 ], + [ 9.8295283, 46.5235735 ], + [ 9.8329195, 46.5233172 ], + [ 9.8362866, 46.5229387 ], + [ 9.8396203, 46.5224389 ], + [ 9.8429115, 46.5218194 ], + [ 9.8461511, 46.5210817 ], + [ 9.8493303, 46.5202278 ], + [ 9.8524402, 46.5192602 ], + [ 9.8554724, 46.5181815 ], + [ 9.8584186, 46.5169946 ], + [ 9.8612706, 46.5157029 ], + [ 9.8640206, 46.5143098 ], + [ 9.8666611, 46.5128192 ], + [ 9.8691848, 46.5112352 ], + [ 9.8715848, 46.5095621 ], + [ 9.8738546, 46.5078045 ], + [ 9.8759879, 46.5059673 ], + [ 9.8779789, 46.5040555 ], + [ 9.8798221, 46.5020743 ], + [ 9.8815125, 46.5000292 ], + [ 9.8830454, 46.4979258 ], + [ 9.8844168, 46.4957698 ], + [ 9.8856227, 46.4935673 ], + [ 9.886660000000001, 46.4913241 ], + [ 9.8875259, 46.4890465 ], + [ 9.8882178, 46.4867407 ], + [ 9.8887341, 46.4844131 ], + [ 9.8890733, 46.48207 ], + [ 9.8892345, 46.4797179 ], + [ 9.8892172, 46.4773631 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSXM001", + "country" : "CHE", + "name" : [ + { + "text" : "LSXM Winter-Heliport St. Moritz", + "lang" : "de-CH" + }, + { + "text" : "LSXM Winter-Heliport St. Moritz", + "lang" : "fr-CH" + }, + { + "text" : "LSXM Winter-Heliport St. Moritz", + "lang" : "it-CH" + }, + { + "text" : "LSXM Winter-Heliport St. Moritz", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "startDateTime" : "2024-12-15T00:00:00+01:00", + "endDateTime" : "2025-05-15T00:00:00+02:00" + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Engadin Airport", + "lang" : "de-CH" + }, + { + "text" : "Engadin Airport", + "lang" : "fr-CH" + }, + { + "text" : "Engadin Airport", + "lang" : "it-CH" + }, + { + "text" : "Engadin Airport", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "GL Safety Officer", + "lang" : "de-CH" + }, + { + "text" : "GL Safety Officer", + "lang" : "fr-CH" + }, + { + "text" : "GL Safety Officer", + "lang" : "it-CH" + }, + { + "text" : "GL Safety Officer", + "lang" : "en-GB" + } + ], + "siteURL" : "https://engadin-airport.ch/Drohnen.498.0.html", + "email" : "info@engadin-airport.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.0244637, 46.3759081 ], + [ 7.0261983, 46.3752865 ], + [ 7.0276709, 46.374932 ], + [ 7.0284072, 46.374681 ], + [ 7.0284124, 46.3739938 ], + [ 7.0281366, 46.373337 ], + [ 7.0273413, 46.3728123 ], + [ 7.0263692, 46.3726451 ], + [ 7.0258045, 46.3730766 ], + [ 7.0246078, 46.3740582 ], + [ 7.0240632, 46.3747434 ], + [ 7.0238157, 46.3749818 ], + [ 7.0237464, 46.3752101 ], + [ 7.0237521, 46.3754737 ], + [ 7.0239069, 46.3757963 ], + [ 7.0241452, 46.3759105 ], + [ 7.0244637, 46.3759081 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00021", + "country" : "CHE", + "name" : [ + { + "text" : "Tour de Famelon", + "lang" : "de-CH" + }, + { + "text" : "Tour de Famelon", + "lang" : "fr-CH" + }, + { + "text" : "Tour de Famelon", + "lang" : "it-CH" + }, + { + "text" : "Tour de Famelon", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "startDateTime" : "2024-11-15T00:00:00+01:00", + "endDateTime" : "2025-04-15T00:00:00+02:00" + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Generaldirektion für Umwelt", + "lang" : "de-CH" + }, + { + "text" : "Direction générale de l'environnement", + "lang" : "fr-CH" + }, + { + "text" : "Direzione generale dell'Ambiente", + "lang" : "it-CH" + }, + { + "text" : "Environment Department", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.dge@vd.ch", + "phone" : "0041213164422", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8120929, 47.4310049 ], + [ 7.8122687, 47.431433 ], + [ 7.8126394999999995, 47.4319378 ], + [ 7.8124576, 47.4319775 ], + [ 7.8124873, 47.4320297 ], + [ 7.8125708, 47.432206 ], + [ 7.8126233, 47.4324449 ], + [ 7.8126955, 47.4325927 ], + [ 7.8128509, 47.432841 ], + [ 7.8129859, 47.4328491 ], + [ 7.8132816, 47.4330582 ], + [ 7.8135065, 47.4332869 ], + [ 7.8138532, 47.4338716 ], + [ 7.8139629, 47.4339326 ], + [ 7.8141026, 47.4339072 ], + [ 7.8146538, 47.4336185 ], + [ 7.814794, 47.4336776 ], + [ 7.8148368, 47.4337976 ], + [ 7.8148007, 47.4340146 ], + [ 7.8147701, 47.4340915 ], + [ 7.8148786999999995, 47.4340863 ], + [ 7.8149654, 47.4341697 ], + [ 7.8150214, 47.4342634 ], + [ 7.8150366, 47.4343649 ], + [ 7.8150118, 47.4353072 ], + [ 7.8150298, 47.4354238 ], + [ 7.8150863, 47.4355339 ], + [ 7.8151755, 47.4356338 ], + [ 7.8152975, 47.4357188 ], + [ 7.8158862, 47.4360491 ], + [ 7.8161241, 47.4361381 ], + [ 7.8163778, 47.4361247 ], + [ 7.8165929, 47.4361282 ], + [ 7.8168006, 47.4361548 ], + [ 7.8173022, 47.4362508 ], + [ 7.8175025, 47.4362596 ], + [ 7.8177759, 47.4362141 ], + [ 7.8182634, 47.436167 ], + [ 7.8182796, 47.4362052 ], + [ 7.8183059, 47.4363938 ], + [ 7.8185812, 47.4366132 ], + [ 7.8189151, 47.4365719 ], + [ 7.8190067, 47.436633 ], + [ 7.8193393, 47.4365511 ], + [ 7.8208065, 47.4361587 ], + [ 7.8210419, 47.4360826 ], + [ 7.8214368, 47.4358964 ], + [ 7.8224968, 47.4354492 ], + [ 7.822795, 47.4352912 ], + [ 7.8228329, 47.435334 ], + [ 7.8229074, 47.4354183 ], + [ 7.82311, 47.4356455 ], + [ 7.8231434, 47.4356791 ], + [ 7.8225191, 47.4359695 ], + [ 7.8232278, 47.436645 ], + [ 7.8232619, 47.4366372 ], + [ 7.8236039, 47.4365211 ], + [ 7.8238404, 47.4364775 ], + [ 7.8239371, 47.4364504 ], + [ 7.8240082, 47.4364029 ], + [ 7.8242273, 47.4361857 ], + [ 7.8243801, 47.4361121 ], + [ 7.8249311, 47.4359781 ], + [ 7.8244233, 47.4353335 ], + [ 7.824641, 47.4353054 ], + [ 7.8247898, 47.4352637 ], + [ 7.8248314, 47.4352062 ], + [ 7.825088, 47.4351282 ], + [ 7.8254765, 47.4349836 ], + [ 7.8256388999999995, 47.4349059 ], + [ 7.825711, 47.4348582 ], + [ 7.825835, 47.4347755 ], + [ 7.8260486, 47.4346581 ], + [ 7.826479, 47.4344718 ], + [ 7.8266725, 47.4343771 ], + [ 7.8266389, 47.4343488 ], + [ 7.8268973, 47.4339953 ], + [ 7.825857, 47.4335437 ], + [ 7.8259482, 47.4334595 ], + [ 7.8258997, 47.4334393 ], + [ 7.8257955, 47.4333777 ], + [ 7.8250839, 47.4329572 ], + [ 7.8248041, 47.4329595 ], + [ 7.8246473, 47.4329423 ], + [ 7.8245002, 47.432902 ], + [ 7.8239814, 47.4326824 ], + [ 7.8239555, 47.4326983 ], + [ 7.8239146, 47.4327216 ], + [ 7.8237290999999995, 47.4325875 ], + [ 7.8236756, 47.4325491 ], + [ 7.8228951, 47.4322582 ], + [ 7.8227341, 47.4322352 ], + [ 7.8224328, 47.4322303 ], + [ 7.822135, 47.4322123 ], + [ 7.8219902999999995, 47.4322293 ], + [ 7.821555, 47.4323473 ], + [ 7.8214405, 47.432356 ], + [ 7.8213412, 47.432404 ], + [ 7.8211816, 47.4325197 ], + [ 7.8211614, 47.4326192 ], + [ 7.8212082, 47.432718 ], + [ 7.8212499, 47.4330339 ], + [ 7.8213387999999995, 47.4330776 ], + [ 7.8214483999999995, 47.4330903 ], + [ 7.8218064, 47.4330046 ], + [ 7.8219519, 47.4329943 ], + [ 7.8223203, 47.4330578 ], + [ 7.8229124, 47.4331848 ], + [ 7.8235133, 47.433283 ], + [ 7.8240616, 47.433362 ], + [ 7.8242669, 47.4334113 ], + [ 7.8240221, 47.4335151 ], + [ 7.8237549, 47.4338967 ], + [ 7.8234514, 47.433867 ], + [ 7.8231046, 47.4337709 ], + [ 7.8227086, 47.4335717 ], + [ 7.8224968, 47.4340398 ], + [ 7.8225994, 47.4343506 ], + [ 7.8224709, 47.4346672 ], + [ 7.8223252, 47.4347789 ], + [ 7.8220258, 47.4348884 ], + [ 7.8217689, 47.4350471 ], + [ 7.8215719, 47.4351058 ], + [ 7.8213308999999995, 47.4350652 ], + [ 7.8212093, 47.4350713 ], + [ 7.8207661, 47.4347534 ], + [ 7.8200498, 47.4350993 ], + [ 7.8200149, 47.4351132 ], + [ 7.8199585, 47.4351076 ], + [ 7.8202355, 47.4347828 ], + [ 7.8199809, 47.4344745 ], + [ 7.8199268, 47.4343066 ], + [ 7.8198118999999995, 47.4342476 ], + [ 7.8195751, 47.4341057 ], + [ 7.8194973, 47.4340106 ], + [ 7.8194274, 47.4339843 ], + [ 7.8192346, 47.4341899 ], + [ 7.8193036, 47.4339772 ], + [ 7.8193073, 47.4338751 ], + [ 7.8192872, 47.4337749 ], + [ 7.819228, 47.4336826 ], + [ 7.8190086, 47.4333931 ], + [ 7.8188312, 47.4331186 ], + [ 7.8187577, 47.4330329 ], + [ 7.8186523, 47.4329786 ], + [ 7.8184975, 47.4329706 ], + [ 7.8185008, 47.4329348 ], + [ 7.8181685, 47.4327688 ], + [ 7.8177756, 47.4325718 ], + [ 7.8174765, 47.4324218 ], + [ 7.8177183, 47.4322131 ], + [ 7.8177924999999995, 47.4320973 ], + [ 7.8177696999999995, 47.4320354 ], + [ 7.8177534, 47.4319937 ], + [ 7.817526, 47.4320001 ], + [ 7.8169174, 47.4321425 ], + [ 7.8164926, 47.4315052 ], + [ 7.8159097, 47.4316104 ], + [ 7.8156854, 47.4316261 ], + [ 7.8154739, 47.4315713 ], + [ 7.8153586, 47.4314366 ], + [ 7.8152253, 47.4311975 ], + [ 7.8152931, 47.4311793 ], + [ 7.815242, 47.4311126 ], + [ 7.8153749, 47.4311572 ], + [ 7.8155221, 47.4311531 ], + [ 7.8162277, 47.4308447 ], + [ 7.816559, 47.4306517 ], + [ 7.8168825, 47.4304447 ], + [ 7.8169402, 47.4303713 ], + [ 7.8168725, 47.4301989 ], + [ 7.8169934, 47.4300824 ], + [ 7.8171821999999995, 47.4295866 ], + [ 7.8172277, 47.4293774 ], + [ 7.8172319, 47.4291646 ], + [ 7.8172188, 47.4289534 ], + [ 7.8171164, 47.4288007 ], + [ 7.8169633, 47.4285827 ], + [ 7.8173483, 47.4281625 ], + [ 7.8171446, 47.4281242 ], + [ 7.8169786, 47.428033 ], + [ 7.8166956, 47.4277881 ], + [ 7.8165122, 47.4277067 ], + [ 7.8165374, 47.4276514 ], + [ 7.8165785, 47.4275959 ], + [ 7.8169907, 47.4270571 ], + [ 7.8168966, 47.4269808 ], + [ 7.8167729999999995, 47.4268873 ], + [ 7.8163663, 47.4266293 ], + [ 7.8162579, 47.4265896 ], + [ 7.8161392, 47.4265856 ], + [ 7.8159558, 47.4266088 ], + [ 7.8157491, 47.4266796 ], + [ 7.8156537, 47.4266441 ], + [ 7.814255, 47.4259949 ], + [ 7.8138611000000004, 47.4263481 ], + [ 7.8137135, 47.4262986 ], + [ 7.81296, 47.4266767 ], + [ 7.8127404, 47.4269793 ], + [ 7.8127441, 47.4270638 ], + [ 7.8128236, 47.4271258 ], + [ 7.8127508, 47.4272483 ], + [ 7.8126301, 47.4274305 ], + [ 7.8123073, 47.4280936 ], + [ 7.8122922, 47.4283646 ], + [ 7.8130375, 47.4285807 ], + [ 7.8130759, 47.4285976 ], + [ 7.8126616, 47.4290481 ], + [ 7.812415, 47.4293619 ], + [ 7.8122522, 47.4296929 ], + [ 7.8123256, 47.4297316 ], + [ 7.8123375, 47.4297396 ], + [ 7.8123482, 47.4297482 ], + [ 7.8123577, 47.4297576 ], + [ 7.8123659, 47.4297674 ], + [ 7.8123727, 47.4297778 ], + [ 7.8123781, 47.4297885 ], + [ 7.8123821, 47.4297995 ], + [ 7.8123845, 47.4298107 ], + [ 7.8123854, 47.429822 ], + [ 7.8123794, 47.4298481 ], + [ 7.812371, 47.4298738 ], + [ 7.8123602, 47.4298991 ], + [ 7.8123003, 47.4301374 ], + [ 7.8122918, 47.4301855 ], + [ 7.8122879, 47.4302339 ], + [ 7.8122886, 47.4302824 ], + [ 7.8122909, 47.4303093 ], + [ 7.8122947, 47.4303361 ], + [ 7.8122999, 47.4303628 ], + [ 7.8123033, 47.4303717 ], + [ 7.8123517, 47.4305265 ], + [ 7.8126025, 47.4305526 ], + [ 7.8124941, 47.4307392 ], + [ 7.8123985, 47.4307901 ], + [ 7.8122647, 47.4308507 ], + [ 7.8121066, 47.4308739 ], + [ 7.8120929, 47.4310049 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns215", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Tenniker Fluh - Sangeten", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Tenniker Fluh - Sangeten", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Tenniker Fluh - Sangeten", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Tenniker Fluh - Sangeten", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8069220999999995, 47.4113035 ], + [ 7.8070309, 47.4112202 ], + [ 7.8069201, 47.4110885 ], + [ 7.8069775, 47.4109335 ], + [ 7.8069723, 47.4108145 ], + [ 7.8069668, 47.4106904 ], + [ 7.8069023, 47.4105515 ], + [ 7.8067581, 47.4103433 ], + [ 7.8063666, 47.4104683 ], + [ 7.8065454, 47.4105835 ], + [ 7.8066309, 47.4106604 ], + [ 7.8066106, 47.4107811 ], + [ 7.8066373, 47.4108175 ], + [ 7.8066792, 47.4110035 ], + [ 7.806696, 47.4110675 ], + [ 7.8067533000000005, 47.4111091 ], + [ 7.8067754, 47.4111522 ], + [ 7.8067974, 47.4111949 ], + [ 7.8069220999999995, 47.4113035 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr125", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Holten", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Holten", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Holten", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Holten", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4062499, 47.4000623 ], + [ 7.406267, 47.4000585 ], + [ 7.4065408, 47.3999944 ], + [ 7.4067358, 47.3999314 ], + [ 7.407103, 47.39987 ], + [ 7.4073682, 47.3998239 ], + [ 7.4076674, 47.3997516 ], + [ 7.4078579, 47.3996747 ], + [ 7.4081707, 47.3995378 ], + [ 7.4085834, 47.3993117 ], + [ 7.4087738, 47.3992287 ], + [ 7.4091139, 47.3991057 ], + [ 7.4094675, 47.3989719 ], + [ 7.4097146, 47.3989042 ], + [ 7.4097837, 47.3988882 ], + [ 7.409847, 47.3988802 ], + [ 7.4103836, 47.3987769 ], + [ 7.4104015, 47.3987715 ], + [ 7.4106386, 47.3987 ], + [ 7.4106817, 47.398687 ], + [ 7.4110063, 47.3985207 ], + [ 7.4113248, 47.3983107 ], + [ 7.4113505, 47.398293699999996 ], + [ 7.4114355, 47.3982662 ], + [ 7.4115744, 47.3982212 ], + [ 7.4118753, 47.3981237 ], + [ 7.4120722, 47.3980707 ], + [ 7.4125573, 47.3979523 ], + [ 7.4130145, 47.3978418 ], + [ 7.4131374, 47.3978111 ], + [ 7.4134637, 47.3977111 ], + [ 7.4135777, 47.3976734 ], + [ 7.4136725, 47.3976402 ], + [ 7.4136921000000005, 47.3976345 ], + [ 7.4144348, 47.3975417 ], + [ 7.4150618, 47.3974919 ], + [ 7.4156492, 47.3975228 ], + [ 7.4159711999999995, 47.3975804 ], + [ 7.4160842, 47.3974555 ], + [ 7.4161004, 47.3974376 ], + [ 7.416101, 47.3974368 ], + [ 7.4161041, 47.3974324 ], + [ 7.416738, 47.3965228 ], + [ 7.4167446, 47.3965245 ], + [ 7.4169486, 47.3965768 ], + [ 7.4172301, 47.3965429 ], + [ 7.4175028, 47.3964177 ], + [ 7.4176775, 47.3963399 ], + [ 7.417699, 47.396331 ], + [ 7.4176212, 47.3962406 ], + [ 7.4178463, 47.3961507 ], + [ 7.4181222, 47.3960733 ], + [ 7.4184274, 47.3959844 ], + [ 7.4187048, 47.3959049 ], + [ 7.4188867, 47.395816 ], + [ 7.4190039, 47.3957406 ], + [ 7.4191149, 47.3957605 ], + [ 7.4191899, 47.3957984 ], + [ 7.4193991, 47.3956171 ], + [ 7.4194157, 47.3956027 ], + [ 7.4192658, 47.3955659 ], + [ 7.4190938, 47.3955134 ], + [ 7.4188825, 47.3954203 ], + [ 7.4187032, 47.3952956 ], + [ 7.4186132, 47.3951893 ], + [ 7.4185183, 47.3952011 ], + [ 7.4183602, 47.3952509 ], + [ 7.4183342, 47.3952521 ], + [ 7.4182878, 47.3952686 ], + [ 7.4182731, 47.3953059 ], + [ 7.4182314, 47.3952854 ], + [ 7.41818, 47.3952924 ], + [ 7.4180444, 47.3953121 ], + [ 7.4178909, 47.3953372 ], + [ 7.4177793, 47.3953758 ], + [ 7.417568, 47.3954503 ], + [ 7.4173798, 47.3954577 ], + [ 7.4172554, 47.3953793 ], + [ 7.4171754, 47.3955116 ], + [ 7.4169472, 47.3955356 ], + [ 7.4168126, 47.3955191 ], + [ 7.4167579, 47.395506 ], + [ 7.416716, 47.395506 ], + [ 7.416674, 47.3955872 ], + [ 7.4165138, 47.395625 ], + [ 7.4164975, 47.3956536 ], + [ 7.4163613, 47.3956788 ], + [ 7.4161685, 47.3956889 ], + [ 7.4161474, 47.395751 ], + [ 7.416111, 47.3957953 ], + [ 7.4160828, 47.3958287 ], + [ 7.4160623, 47.3958672 ], + [ 7.416047, 47.3959073 ], + [ 7.4160334, 47.3959602 ], + [ 7.41607, 47.3959852 ], + [ 7.4161205, 47.3959963 ], + [ 7.416169, 47.3960059 ], + [ 7.4161821, 47.3960391 ], + [ 7.4162061999999995, 47.3960916 ], + [ 7.4162185, 47.3961219 ], + [ 7.4162204, 47.3961321 ], + [ 7.4161247, 47.396161 ], + [ 7.4160123, 47.3961911 ], + [ 7.4158267, 47.3962148 ], + [ 7.4156599, 47.3961951 ], + [ 7.4155037, 47.3961524 ], + [ 7.4153908, 47.3960543 ], + [ 7.4152839, 47.3959569 ], + [ 7.415096, 47.3959881 ], + [ 7.4148648999999995, 47.3960321 ], + [ 7.4146367, 47.3960703 ], + [ 7.4146214, 47.3961275 ], + [ 7.4145983, 47.3961998 ], + [ 7.4145457, 47.3962681 ], + [ 7.414464, 47.3963377 ], + [ 7.4143267, 47.3964028 ], + [ 7.4142092, 47.3964253 ], + [ 7.4140571, 47.3964315 ], + [ 7.4139153, 47.3964196 ], + [ 7.4137462, 47.3963984 ], + [ 7.4136054, 47.3963742 ], + [ 7.4134975, 47.3963516 ], + [ 7.4134133, 47.3963541 ], + [ 7.4133852000000005, 47.3963739 ], + [ 7.4133241, 47.3964373 ], + [ 7.4132639, 47.3964521 ], + [ 7.4131593, 47.39658 ], + [ 7.413079, 47.3966818 ], + [ 7.4130247, 47.3966845 ], + [ 7.4129569, 47.3966576 ], + [ 7.4128684, 47.3967088 ], + [ 7.4127011, 47.3967937 ], + [ 7.4124994, 47.3968525 ], + [ 7.4122982, 47.396881 ], + [ 7.4120326, 47.3968769 ], + [ 7.4118524, 47.3968485 ], + [ 7.4117148, 47.3968185 ], + [ 7.4115808, 47.3968129 ], + [ 7.4114633, 47.3968455 ], + [ 7.4113657, 47.3968848 ], + [ 7.4112504999999995, 47.3969528 ], + [ 7.4111572, 47.3970192 ], + [ 7.4110771, 47.3970952 ], + [ 7.4109707, 47.3971588 ], + [ 7.410851, 47.3971871 ], + [ 7.4106884, 47.3971948 ], + [ 7.4105452, 47.3971774 ], + [ 7.4103636999999996, 47.3971678 ], + [ 7.4102344, 47.397164 ], + [ 7.4100876, 47.3971945 ], + [ 7.4100325, 47.3972739 ], + [ 7.4098687, 47.3975051 ], + [ 7.4096722, 47.3976517 ], + [ 7.4092821, 47.3978143 ], + [ 7.4087108, 47.3977088 ], + [ 7.4073818, 47.3977416 ], + [ 7.4061842, 47.3980076 ], + [ 7.4062119, 47.3980046 ], + [ 7.4054246, 47.3981771 ], + [ 7.4050863, 47.3982728 ], + [ 7.4051053, 47.3982821 ], + [ 7.4052061, 47.398355 ], + [ 7.4053827, 47.3984328 ], + [ 7.4056104, 47.3983749 ], + [ 7.40582, 47.3983328 ], + [ 7.4060813, 47.3983118 ], + [ 7.4063038, 47.3982732 ], + [ 7.4066919, 47.3981925 ], + [ 7.4070956, 47.3980978 ], + [ 7.4077218, 47.3979398 ], + [ 7.4081772, 47.3978996 ], + [ 7.4083971, 47.3978768 ], + [ 7.4086209, 47.3981978 ], + [ 7.4085896, 47.3982095 ], + [ 7.4085267, 47.3983588 ], + [ 7.4083694, 47.3984718 ], + [ 7.4081890999999995, 47.3985261 ], + [ 7.4072919, 47.3988105 ], + [ 7.4069697, 47.3989046 ], + [ 7.4067477, 47.3989517 ], + [ 7.4064703, 47.3989715 ], + [ 7.4061959, 47.3989839 ], + [ 7.405994, 47.3990278 ], + [ 7.4057103, 47.3991261 ], + [ 7.4054636, 47.3992276 ], + [ 7.4052031, 47.3993374 ], + [ 7.4050149, 47.3994524 ], + [ 7.4048623, 47.3995989 ], + [ 7.4047373, 47.3997412 ], + [ 7.4044383, 47.4000029 ], + [ 7.4044343, 47.40003 ], + [ 7.4044181, 47.4000639 ], + [ 7.4043388, 47.4001755 ], + [ 7.404281, 47.4002577 ], + [ 7.4043467, 47.4002977 ], + [ 7.4044732, 47.4002917 ], + [ 7.4045556999999995, 47.4002442 ], + [ 7.4046603, 47.4002644 ], + [ 7.4048351, 47.4003091 ], + [ 7.4049905, 47.4003712 ], + [ 7.4050723, 47.400427 ], + [ 7.4050763, 47.4004297 ], + [ 7.4050865, 47.4004367 ], + [ 7.4051496, 47.4004476 ], + [ 7.4051525, 47.4004611 ], + [ 7.4051569, 47.4004816 ], + [ 7.4062499, 47.4000623 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns009", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Hell", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Hell", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Hell", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Hell", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8316091, 47.4909419 ], + [ 7.8316484, 47.4909183 ], + [ 7.8319574, 47.4908042 ], + [ 7.8320748, 47.4907606 ], + [ 7.8322338, 47.4907632 ], + [ 7.8323545, 47.4907753 ], + [ 7.8324701999999995, 47.4908061 ], + [ 7.8325664, 47.4908421 ], + [ 7.8330824, 47.4910763 ], + [ 7.8333624, 47.4911059 ], + [ 7.833681, 47.4913289 ], + [ 7.8337767, 47.4913738 ], + [ 7.8339207, 47.4912602 ], + [ 7.8340682, 47.4911435 ], + [ 7.8341711, 47.4910775 ], + [ 7.8341846, 47.4910684 ], + [ 7.8341975999999995, 47.491059 ], + [ 7.8342099, 47.4910491 ], + [ 7.8342216, 47.4910389 ], + [ 7.8342326, 47.4910284 ], + [ 7.8342429, 47.4910175 ], + [ 7.8342525, 47.4910063 ], + [ 7.8342613, 47.4909949 ], + [ 7.8342694, 47.4909832 ], + [ 7.8342767, 47.4909712 ], + [ 7.8348967, 47.4912618 ], + [ 7.834943, 47.491281 ], + [ 7.8354079, 47.491492 ], + [ 7.8354462, 47.49151 ], + [ 7.8353368, 47.4915864 ], + [ 7.8351561, 47.4916856 ], + [ 7.834987, 47.4917965 ], + [ 7.8348518, 47.4918962 ], + [ 7.8348344999999995, 47.4919084 ], + [ 7.8348164, 47.4919203 ], + [ 7.8347978, 47.4919317 ], + [ 7.8347785, 47.4919426 ], + [ 7.8347587, 47.491953 ], + [ 7.8347383, 47.4919629 ], + [ 7.8347174, 47.4919723 ], + [ 7.834696, 47.4919812 ], + [ 7.8346742, 47.4919896 ], + [ 7.8346519, 47.4919974 ], + [ 7.8342683, 47.4921246 ], + [ 7.8342568, 47.4921287 ], + [ 7.8342457, 47.4921333 ], + [ 7.8342351, 47.4921384 ], + [ 7.8342249, 47.4921438 ], + [ 7.8342153, 47.4921497 ], + [ 7.8342062, 47.492156 ], + [ 7.8341977, 47.4921627 ], + [ 7.8341898, 47.4921697 ], + [ 7.8341826, 47.492177 ], + [ 7.8341674999999995, 47.4921939 ], + [ 7.834153, 47.492211 ], + [ 7.8341393, 47.4922284 ], + [ 7.8341263, 47.4922461 ], + [ 7.8341141, 47.4922641 ], + [ 7.8341027, 47.4922823 ], + [ 7.8340921, 47.4923006 ], + [ 7.8340822, 47.4923192 ], + [ 7.8340732, 47.492338 ], + [ 7.8340648999999996, 47.492357 ], + [ 7.8340575, 47.4923761 ], + [ 7.8340124, 47.4923687 ], + [ 7.833651, 47.4923093 ], + [ 7.8336407999999995, 47.4923328 ], + [ 7.8336315, 47.4923565 ], + [ 7.8336231, 47.4923803 ], + [ 7.8336156, 47.4924042 ], + [ 7.833609, 47.4924283 ], + [ 7.8336032, 47.4924525 ], + [ 7.8335984, 47.4924768 ], + [ 7.8335945, 47.4925011 ], + [ 7.8335928, 47.4925165 ], + [ 7.833592, 47.4925319 ], + [ 7.8335921, 47.4925472 ], + [ 7.833593, 47.4925626 ], + [ 7.8335947, 47.4925779 ], + [ 7.8335974, 47.4925932 ], + [ 7.8336008, 47.4926084 ], + [ 7.8336052, 47.4926235 ], + [ 7.8336103, 47.4926385 ], + [ 7.8336163, 47.4926533 ], + [ 7.8336232, 47.492668 ], + [ 7.8336308, 47.4926825 ], + [ 7.8336393, 47.4926968 ], + [ 7.8336485, 47.4927108 ], + [ 7.8336586, 47.4927246 ], + [ 7.8336702, 47.4927393 ], + [ 7.8336827, 47.4927536 ], + [ 7.8336959, 47.4927676 ], + [ 7.8337099, 47.4927813 ], + [ 7.8337247, 47.4927946 ], + [ 7.8337402, 47.4928075 ], + [ 7.8337564, 47.49282 ], + [ 7.8337733, 47.4928321 ], + [ 7.8341061, 47.4930612 ], + [ 7.8345591, 47.4934605 ], + [ 7.8345787, 47.4934773 ], + [ 7.834599, 47.4934938 ], + [ 7.8346198, 47.4935098 ], + [ 7.8346412999999995, 47.4935255 ], + [ 7.8346633, 47.4935409 ], + [ 7.834686, 47.4935558 ], + [ 7.8347425, 47.4935616 ], + [ 7.8349649, 47.4937049 ], + [ 7.8350037, 47.4937243 ], + [ 7.835043, 47.4937432 ], + [ 7.8350828, 47.4937616 ], + [ 7.8351231, 47.4937795 ], + [ 7.8351638999999995, 47.4937969 ], + [ 7.8352051, 47.4938138 ], + [ 7.8352468, 47.4938302 ], + [ 7.8352889, 47.4938462 ], + [ 7.8353314, 47.4938616 ], + [ 7.8353743, 47.4938765 ], + [ 7.8354177, 47.4938908 ], + [ 7.8354613, 47.4939047 ], + [ 7.8355054, 47.4939179 ], + [ 7.8355498, 47.4939307 ], + [ 7.8355736, 47.4939369 ], + [ 7.8355976, 47.4939426 ], + [ 7.8356219, 47.4939478 ], + [ 7.8356464, 47.4939525 ], + [ 7.8356712, 47.4939565 ], + [ 7.8356961, 47.49396 ], + [ 7.8357212, 47.493963 ], + [ 7.8358497, 47.4939768 ], + [ 7.8358851, 47.493981 ], + [ 7.8359203, 47.4939859 ], + [ 7.8359553, 47.4939914 ], + [ 7.8359901, 47.4939975 ], + [ 7.8360246, 47.4940042 ], + [ 7.8360588, 47.4940116 ], + [ 7.8360928, 47.4940196 ], + [ 7.8361263999999995, 47.4940282 ], + [ 7.8361597, 47.4940373 ], + [ 7.8361926, 47.4940471 ], + [ 7.8362251, 47.4940575 ], + [ 7.8362572, 47.4940684 ], + [ 7.8362889, 47.49408 ], + [ 7.83632, 47.494092 ], + [ 7.8363507, 47.4941047 ], + [ 7.8367494, 47.4942736 ], + [ 7.8366985, 47.4938344 ], + [ 7.8366584, 47.4934935 ], + [ 7.8368455, 47.4934065 ], + [ 7.8372599, 47.4932237 ], + [ 7.8369659, 47.492916 ], + [ 7.8364834, 47.4924102 ], + [ 7.8362726, 47.4921899 ], + [ 7.8363195999999995, 47.4914456 ], + [ 7.8362795, 47.4914473 ], + [ 7.8362815, 47.4914111 ], + [ 7.8364088, 47.4914111 ], + [ 7.8362587999999995, 47.4908362 ], + [ 7.836211, 47.4906543 ], + [ 7.8358792, 47.4904038 ], + [ 7.8358331, 47.4904198 ], + [ 7.8357651, 47.4903075 ], + [ 7.8357601, 47.4902984 ], + [ 7.8357559, 47.4902891 ], + [ 7.8357525, 47.4902796 ], + [ 7.8357498, 47.4902701 ], + [ 7.8357479, 47.4902604 ], + [ 7.8357468, 47.4902507 ], + [ 7.8357465, 47.490241 ], + [ 7.835747, 47.4902313 ], + [ 7.8357483, 47.4902216 ], + [ 7.8357503, 47.4902119 ], + [ 7.8357532, 47.4902024 ], + [ 7.8357603000000005, 47.4901831 ], + [ 7.8357683, 47.4901641 ], + [ 7.8357772, 47.4901451 ], + [ 7.835787, 47.4901264 ], + [ 7.8357976, 47.4901079 ], + [ 7.8358091, 47.4900896 ], + [ 7.8358214, 47.4900716 ], + [ 7.8358346, 47.4900539 ], + [ 7.8358486, 47.4900364 ], + [ 7.8358633, 47.4900193 ], + [ 7.8358789, 47.4900025 ], + [ 7.8358953, 47.489986 ], + [ 7.8359124, 47.4899699 ], + [ 7.8359302, 47.4899542 ], + [ 7.835942, 47.4899443 ], + [ 7.8359542, 47.4899348 ], + [ 7.8359669, 47.4899256 ], + [ 7.8359801000000004, 47.4899167 ], + [ 7.8359938, 47.4899082 ], + [ 7.8360079, 47.4898999 ], + [ 7.8360240999999995, 47.4898913 ], + [ 7.8360408, 47.4898832 ], + [ 7.8360579, 47.4898754 ], + [ 7.8360754, 47.4898682 ], + [ 7.8360934, 47.4898614 ], + [ 7.8361118, 47.4898552 ], + [ 7.8361305, 47.4898494 ], + [ 7.8361495, 47.4898441 ], + [ 7.8361688, 47.4898394 ], + [ 7.8361884, 47.4898351 ], + [ 7.8362088, 47.4898313 ], + [ 7.8362294, 47.4898281 ], + [ 7.8362502, 47.4898255 ], + [ 7.8362712, 47.4898234 ], + [ 7.8362922, 47.4898219 ], + [ 7.8363134, 47.489821 ], + [ 7.8363344999999995, 47.4898207 ], + [ 7.8363557, 47.489821 ], + [ 7.8363768, 47.4898218 ], + [ 7.8363979, 47.4898233 ], + [ 7.8364188, 47.4898253 ], + [ 7.8364396, 47.4898279 ], + [ 7.8364603, 47.4898311 ], + [ 7.8364807, 47.4898348 ], + [ 7.8365009, 47.4898391 ], + [ 7.8367351, 47.4898929 ], + [ 7.8367725, 47.4899012 ], + [ 7.8368102, 47.4899089 ], + [ 7.8368481, 47.489916 ], + [ 7.8368863, 47.4899225 ], + [ 7.8369247, 47.4899283 ], + [ 7.8369633, 47.4899335 ], + [ 7.837002, 47.4899381 ], + [ 7.837041, 47.4899421 ], + [ 7.83708, 47.4899455 ], + [ 7.8371191, 47.4899482 ], + [ 7.8377772, 47.4899902 ], + [ 7.837401, 47.4891625 ], + [ 7.8368171, 47.4892155 ], + [ 7.8367705999999995, 47.48922 ], + [ 7.8367346, 47.4890888 ], + [ 7.8361364, 47.4892841 ], + [ 7.8356904, 47.488798 ], + [ 7.8353527, 47.4889242 ], + [ 7.835328, 47.4889331 ], + [ 7.835303, 47.4889415 ], + [ 7.8352775999999995, 47.4889494 ], + [ 7.8352518, 47.4889567 ], + [ 7.8352257, 47.4889636 ], + [ 7.8351994, 47.4889699 ], + [ 7.8351727, 47.4889756 ], + [ 7.8351459, 47.4889808 ], + [ 7.8351182, 47.4889856 ], + [ 7.8350904, 47.4889898 ], + [ 7.8350623, 47.4889934 ], + [ 7.8350341, 47.4889964 ], + [ 7.8350058, 47.4889989 ], + [ 7.8349774, 47.4890007 ], + [ 7.8349489, 47.489002 ], + [ 7.8349204, 47.4890027 ], + [ 7.8350025, 47.4891926 ], + [ 7.8348617, 47.4892285 ], + [ 7.8346824999999995, 47.4892742 ], + [ 7.834646, 47.4892518 ], + [ 7.8343678, 47.4891835 ], + [ 7.8343515, 47.4891792 ], + [ 7.8343356, 47.4891743 ], + [ 7.83432, 47.489169 ], + [ 7.8343048, 47.4891631 ], + [ 7.83429, 47.4891568 ], + [ 7.8342757, 47.48915 ], + [ 7.8342619, 47.4891428 ], + [ 7.8342485, 47.4891351 ], + [ 7.8342358, 47.489127 ], + [ 7.8342236, 47.4891185 ], + [ 7.8341663, 47.4890771 ], + [ 7.8341617, 47.4890733 ], + [ 7.8341579, 47.4890691 ], + [ 7.834155, 47.4890646 ], + [ 7.834153, 47.4890599 ], + [ 7.8341519, 47.4890551 ], + [ 7.8341518, 47.4890502 ], + [ 7.8341527, 47.4890453 ], + [ 7.8341545, 47.4890406 ], + [ 7.8341573, 47.489036 ], + [ 7.8341609, 47.4890318 ], + [ 7.8341653, 47.489027899999996 ], + [ 7.8341705, 47.4890245 ], + [ 7.8341763, 47.4890216 ], + [ 7.8341826, 47.4890192 ], + [ 7.8341893, 47.4890174 ], + [ 7.8341964, 47.4890163 ], + [ 7.8339685, 47.4890208 ], + [ 7.833967, 47.4890209 ], + [ 7.8338792, 47.4890223 ], + [ 7.833833, 47.4890248 ], + [ 7.8337869, 47.4890278 ], + [ 7.8337409000000005, 47.4890316 ], + [ 7.8336951, 47.4890359 ], + [ 7.8336493, 47.4890409 ], + [ 7.8336038, 47.4890464 ], + [ 7.8335584, 47.4890526 ], + [ 7.8335132, 47.4890595 ], + [ 7.8334682, 47.4890669 ], + [ 7.8334234, 47.4890749 ], + [ 7.8333789, 47.4890836 ], + [ 7.8333346, 47.4890928 ], + [ 7.8332907, 47.4891027 ], + [ 7.8332682, 47.4891081 ], + [ 7.833246, 47.4891142 ], + [ 7.8332242, 47.4891208 ], + [ 7.8332029, 47.4891281 ], + [ 7.833182, 47.489136 ], + [ 7.8331616, 47.4891444 ], + [ 7.8331418, 47.4891534 ], + [ 7.8331225, 47.4891629 ], + [ 7.8331038, 47.489173 ], + [ 7.8330858, 47.4891836 ], + [ 7.8330684, 47.4891947 ], + [ 7.8330517, 47.4892063 ], + [ 7.8330357, 47.4892183 ], + [ 7.8330204, 47.4892308 ], + [ 7.833006, 47.4892437 ], + [ 7.8329923, 47.489257 ], + [ 7.8329795, 47.4892706 ], + [ 7.8329675, 47.4892846 ], + [ 7.8329564, 47.489299 ], + [ 7.8329461, 47.4893136 ], + [ 7.8329368, 47.4893285 ], + [ 7.8329284, 47.4893436 ], + [ 7.8329208999999995, 47.489359 ], + [ 7.8329144, 47.4893746 ], + [ 7.8329088, 47.4893903 ], + [ 7.8329041, 47.4894062 ], + [ 7.8329005, 47.4894222 ], + [ 7.8328836, 47.4895089 ], + [ 7.8328587, 47.4896343 ], + [ 7.8328163, 47.4897134 ], + [ 7.8325724, 47.4899763 ], + [ 7.8322255, 47.4903086 ], + [ 7.8319753, 47.4905589 ], + [ 7.831701, 47.4908461 ], + [ 7.8316091, 47.4909419 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns185", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Firmach - Heidengräbern", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Firmach - Heidengräbern", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Firmach - Heidengräbern", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Firmach - Heidengräbern", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7438149, 47.3864628 ], + [ 7.7440299, 47.3862492 ], + [ 7.7441637, 47.3860611 ], + [ 7.7442731, 47.3859146 ], + [ 7.7442795, 47.3859065 ], + [ 7.7442863, 47.3858985 ], + [ 7.7442936, 47.3858907 ], + [ 7.7443012, 47.3858831 ], + [ 7.7443094, 47.3858757 ], + [ 7.7443181, 47.3858685 ], + [ 7.74437, 47.3858266 ], + [ 7.7443798, 47.3858183 ], + [ 7.7443889, 47.3858097 ], + [ 7.7443973, 47.3858008 ], + [ 7.744405, 47.3857915 ], + [ 7.7444121, 47.385782 ], + [ 7.7444182999999995, 47.3857723 ], + [ 7.7444239, 47.3857624 ], + [ 7.7444288, 47.3857523 ], + [ 7.7444328, 47.3857419 ], + [ 7.7444361, 47.3857316 ], + [ 7.7444393, 47.3857213 ], + [ 7.7444434, 47.3857111 ], + [ 7.744448, 47.3857011 ], + [ 7.7444533, 47.3856912 ], + [ 7.7444595, 47.3856816 ], + [ 7.7444663, 47.3856721 ], + [ 7.744474, 47.385663 ], + [ 7.7444821, 47.385654099999996 ], + [ 7.7444866, 47.3856491 ], + [ 7.7444903, 47.3856438 ], + [ 7.7444934, 47.3856384 ], + [ 7.7444955, 47.3856328 ], + [ 7.7444968, 47.3856271 ], + [ 7.7444977, 47.3856213 ], + [ 7.7444975, 47.3856155 ], + [ 7.7444967, 47.3856097 ], + [ 7.7444951, 47.3856041 ], + [ 7.7444927, 47.3855985 ], + [ 7.7445406, 47.3855737 ], + [ 7.7447945, 47.3847668 ], + [ 7.7449913, 47.3847044 ], + [ 7.7454703, 47.3845436 ], + [ 7.7458654, 47.3844044 ], + [ 7.746308, 47.3841436 ], + [ 7.7464686, 47.3840649 ], + [ 7.7466777, 47.3839637 ], + [ 7.7469572, 47.3837307 ], + [ 7.7470792, 47.3835706 ], + [ 7.7471664, 47.3835163 ], + [ 7.7471676, 47.3834738 ], + [ 7.7470759000000005, 47.3832043 ], + [ 7.7474305, 47.3831436 ], + [ 7.7474214, 47.3831296 ], + [ 7.7474016, 47.3830988 ], + [ 7.7473521, 47.38303 ], + [ 7.7473887, 47.3830132 ], + [ 7.7473361, 47.3829571 ], + [ 7.7472855, 47.3829024 ], + [ 7.7472309, 47.3828441 ], + [ 7.7471758, 47.3827853 ], + [ 7.7470843, 47.3826679 ], + [ 7.7470333, 47.3826226 ], + [ 7.747058, 47.3826086 ], + [ 7.7470314, 47.3825863 ], + [ 7.7470343, 47.3825848 ], + [ 7.7469742, 47.3825329 ], + [ 7.746943, 47.3825049 ], + [ 7.7469301999999995, 47.382513 ], + [ 7.7468962999999995, 47.3824884 ], + [ 7.7468593, 47.3824618 ], + [ 7.7467923, 47.3824111 ], + [ 7.7467308, 47.3823655 ], + [ 7.7467041, 47.3823787 ], + [ 7.7466382, 47.3823319 ], + [ 7.7466238, 47.3823412 ], + [ 7.7465873, 47.3823151 ], + [ 7.7465088, 47.3822645 ], + [ 7.7464337, 47.3822207 ], + [ 7.746442, 47.3822121 ], + [ 7.7464346, 47.3822088 ], + [ 7.7463439, 47.3822965 ], + [ 7.7461589, 47.382204 ], + [ 7.7460168, 47.3822291 ], + [ 7.7460809, 47.3823481 ], + [ 7.7456482, 47.382347 ], + [ 7.7456242, 47.3826508 ], + [ 7.7448429999999995, 47.3826987 ], + [ 7.7444662, 47.3827635 ], + [ 7.7442953, 47.3827951 ], + [ 7.743969, 47.3828556 ], + [ 7.7438948, 47.3828698 ], + [ 7.7435048, 47.3829551 ], + [ 7.7429892, 47.3830619 ], + [ 7.7426638, 47.3830695 ], + [ 7.7422626999999995, 47.3830787 ], + [ 7.7420023, 47.3830849 ], + [ 7.7417503, 47.3830924 ], + [ 7.7417084, 47.3830937 ], + [ 7.7417175, 47.3830515 ], + [ 7.7417723, 47.3827972 ], + [ 7.7411852, 47.382781 ], + [ 7.7404763, 47.3828889 ], + [ 7.7400249, 47.3828534 ], + [ 7.7394739, 47.3830026 ], + [ 7.7389433, 47.3831098 ], + [ 7.7383051, 47.3831409 ], + [ 7.7382438, 47.3832782 ], + [ 7.7378624, 47.383264 ], + [ 7.7377541, 47.383032 ], + [ 7.7373691, 47.3831866 ], + [ 7.7374261, 47.3828887 ], + [ 7.7370822, 47.3829276 ], + [ 7.7364386, 47.3829523 ], + [ 7.7360415, 47.3830016 ], + [ 7.7356414000000004, 47.3829989 ], + [ 7.7355415, 47.3828873 ], + [ 7.7351266, 47.3827499 ], + [ 7.7348135, 47.3829009 ], + [ 7.7343038, 47.3830023 ], + [ 7.7344887, 47.3831506 ], + [ 7.7340237, 47.3831666 ], + [ 7.7337411, 47.3831942 ], + [ 7.7321624, 47.3837063 ], + [ 7.7301032, 47.3836516 ], + [ 7.7289837, 47.3840299 ], + [ 7.7277813, 47.3839844 ], + [ 7.7276104, 47.3847732 ], + [ 7.7275976, 47.384804 ], + [ 7.7277346, 47.3849715 ], + [ 7.7276333, 47.3852012 ], + [ 7.7275918, 47.3862373 ], + [ 7.7276765, 47.3862361 ], + [ 7.7279672, 47.386232 ], + [ 7.728351, 47.3861037 ], + [ 7.7287502, 47.3859694 ], + [ 7.7293122, 47.3859111 ], + [ 7.7297456, 47.3859205 ], + [ 7.7301229, 47.3859311 ], + [ 7.7306853, 47.385924 ], + [ 7.7312141, 47.3858634 ], + [ 7.7320439, 47.3857252 ], + [ 7.7324777000000005, 47.3854889 ], + [ 7.7332314, 47.3854022 ], + [ 7.7335578, 47.3853639 ], + [ 7.7340427, 47.3853128 ], + [ 7.7345448999999995, 47.3852979 ], + [ 7.7350475, 47.3852857 ], + [ 7.7354743, 47.385359 ], + [ 7.7356972, 47.3853967 ], + [ 7.7361394, 47.3854223 ], + [ 7.7365816, 47.3854484 ], + [ 7.7370227, 47.3854745 ], + [ 7.7375263, 47.3854575 ], + [ 7.7380154, 47.3854417 ], + [ 7.7388675, 47.3853837 ], + [ 7.7394203, 47.3852895 ], + [ 7.7396956, 47.385687 ], + [ 7.7397235, 47.3857207 ], + [ 7.7398177, 47.3859293 ], + [ 7.7400319, 47.3861638 ], + [ 7.740117, 47.3863494 ], + [ 7.7402806, 47.3865416 ], + [ 7.7412068, 47.38644 ], + [ 7.7421497, 47.3862911 ], + [ 7.7422273, 47.3864331 ], + [ 7.7419142, 47.3866478 ], + [ 7.7422173999999995, 47.3867481 ], + [ 7.7425507, 47.38686 ], + [ 7.7429096, 47.3869407 ], + [ 7.742954, 47.3868719 ], + [ 7.7432528, 47.3867005 ], + [ 7.7438149, 47.3864628 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns224", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Richtiflue", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Richtiflue", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Richtiflue", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Richtiflue", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5205981, 47.4417322 ], + [ 7.5205999, 47.4417359 ], + [ 7.5206533, 47.4418494 ], + [ 7.5211717, 47.4420644 ], + [ 7.5212865, 47.4421679 ], + [ 7.5217907, 47.4421624 ], + [ 7.5226238, 47.4423277 ], + [ 7.5232275, 47.4424205 ], + [ 7.5235638, 47.4425343 ], + [ 7.5245266, 47.4425906 ], + [ 7.5254891, 47.4425173 ], + [ 7.5267659, 47.4426313 ], + [ 7.5267912, 47.442503 ], + [ 7.5219077, 47.441876 ], + [ 7.5216522999999995, 47.4418373 ], + [ 7.5211472, 47.4417973 ], + [ 7.5205981, 47.4417322 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr089", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Egglen", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Egglen", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Egglen", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Egglen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.905361599999999, 46.14332 ], + [ 8.9053459, 46.1430996 ], + [ 8.9065304, 46.1431341 ], + [ 8.9067362, 46.1426183 ], + [ 8.9069158, 46.1421682 ], + [ 8.9070724, 46.1422355 ], + [ 8.9074431, 46.1422055 ], + [ 8.9077689, 46.1421678 ], + [ 8.9079383, 46.1421423 ], + [ 8.9083454, 46.1420776 ], + [ 8.908598, 46.1421079 ], + [ 8.9087069, 46.1409318 ], + [ 8.9082956, 46.1409219 ], + [ 8.9073554, 46.1408992 ], + [ 8.9063389, 46.1409036 ], + [ 8.905998199999999, 46.1406993 ], + [ 8.9057567, 46.1405738 ], + [ 8.9056257, 46.1403633 ], + [ 8.9054648, 46.1402899 ], + [ 8.9052437, 46.1405257 ], + [ 8.9051848, 46.1405969 ], + [ 8.9051296, 46.1406697 ], + [ 8.9046111, 46.141393 ], + [ 8.9044934, 46.1415571 ], + [ 8.9043681, 46.141731300000004 ], + [ 8.9043024, 46.1419146 ], + [ 8.9041265, 46.142237 ], + [ 8.9040366, 46.1423562 ], + [ 8.9039284, 46.1424091 ], + [ 8.9038081, 46.1424201 ], + [ 8.9036553, 46.1424431 ], + [ 8.9035716, 46.142488 ], + [ 8.9034515, 46.1425028 ], + [ 8.9033672, 46.142424 ], + [ 8.9033544, 46.1424014 ], + [ 8.903314, 46.1423756 ], + [ 8.9032633, 46.1423301 ], + [ 8.9031952, 46.1422434 ], + [ 8.9031079, 46.142155 ], + [ 8.9030672, 46.1421301 ], + [ 8.9039764, 46.140791 ], + [ 8.9040295, 46.1407128 ], + [ 8.9042891, 46.1405454 ], + [ 8.904333, 46.1405279 ], + [ 8.9047741, 46.1401817 ], + [ 8.905126, 46.1397902 ], + [ 8.9054927, 46.1393419 ], + [ 8.9055784, 46.1392372 ], + [ 8.905593, 46.139218 ], + [ 8.9054248, 46.1391981 ], + [ 8.9053301, 46.1391869 ], + [ 8.9053908, 46.1391301 ], + [ 8.9053472, 46.1390417 ], + [ 8.905111999999999, 46.138986 ], + [ 8.9048975, 46.1389171 ], + [ 8.9047097, 46.1387797 ], + [ 8.904401, 46.138724 ], + [ 8.9041322, 46.1387327 ], + [ 8.9040853, 46.1386883 ], + [ 8.9034937, 46.1381274 ], + [ 8.903746, 46.1379703 ], + [ 8.9039181, 46.1378767 ], + [ 8.9040534, 46.1378372 ], + [ 8.9042399, 46.1377828 ], + [ 8.9041455, 46.1377476 ], + [ 8.9041223, 46.1377422 ], + [ 8.9040947, 46.1377441 ], + [ 8.9040617, 46.1376868 ], + [ 8.9038966, 46.1377642 ], + [ 8.9036821, 46.1378375 ], + [ 8.9034494, 46.1379066 ], + [ 8.9032138, 46.1379665 ], + [ 8.9027402, 46.1380715 ], + [ 8.9025753, 46.1379425 ], + [ 8.9022401, 46.1379303 ], + [ 8.9018893, 46.1377749 ], + [ 8.9017626, 46.1378019 ], + [ 8.9014712, 46.1377606 ], + [ 8.9008939, 46.1375499 ], + [ 8.9008419, 46.1375651 ], + [ 8.9000252, 46.1378043 ], + [ 8.8992441, 46.137257 ], + [ 8.899193, 46.137221 ], + [ 8.8989229, 46.1373886 ], + [ 8.8988802, 46.1375284 ], + [ 8.8987927, 46.1375775 ], + [ 8.8986449, 46.1374918 ], + [ 8.8991614, 46.1371986 ], + [ 8.8991199, 46.1371694 ], + [ 8.8979083, 46.1363221 ], + [ 8.8968381, 46.1364123 ], + [ 8.8962464, 46.1375619 ], + [ 8.8957119, 46.1379012 ], + [ 8.8948947, 46.1380269 ], + [ 8.8949398, 46.1390505 ], + [ 8.8949996, 46.1404089 ], + [ 8.896221, 46.1418835 ], + [ 8.8968927, 46.1418553 ], + [ 8.8979668, 46.1418102 ], + [ 8.8988072, 46.1417741 ], + [ 8.8991713, 46.1417581 ], + [ 8.8993437, 46.1416697 ], + [ 8.8998355, 46.1414147 ], + [ 8.9013449, 46.1430389 ], + [ 8.9014138, 46.143005 ], + [ 8.901481799999999, 46.1429919 ], + [ 8.901726, 46.14301 ], + [ 8.9019231, 46.1430341 ], + [ 8.9019273, 46.1430649 ], + [ 8.9023521, 46.1430351 ], + [ 8.9025522, 46.1429716 ], + [ 8.9037915, 46.1438991 ], + [ 8.9053998, 46.1438571 ], + [ 8.905361599999999, 46.14332 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VBS_8-1", + "country" : "CHE", + "name" : [ + { + "text" : "VBS_8 Monte Ceneri 1", + "lang" : "de-CH" + }, + { + "text" : "VBS_8 Monte Ceneri 1", + "lang" : "fr-CH" + }, + { + "text" : "VBS_8 Monte Ceneri 1", + "lang" : "it-CH" + }, + { + "text" : "VBS_8 Monte Ceneri 1", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "regulationExemption" : "YES", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Eidgenössisches Departement für Verteidigung, Bevölkerungsschutz und Sport (VBS)", + "lang" : "de-CH" + }, + { + "text" : "Département fédéral de la défense, de la protection de la population et des sports (DDPS)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento federale della difesa, della protezione della popolazione e dello sport (DDPS)", + "lang" : "it-CH" + }, + { + "text" : "Federal Department of Defence, Civil Protection and Sport (DDPS)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Lageverfolgungszentrum der Armee LVZ A", + "lang" : "de-CH" + }, + { + "text" : "Centre de suivi de la situation de l’armée, CSS A", + "lang" : "fr-CH" + }, + { + "text" : "Centro di monitoraggio della situazione dell’esercito, Centro mon sit Es", + "lang" : "it-CH" + }, + { + "text" : "Joint Operation Center, JOC", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vtg.admin.ch/en/joint-operations-command", + "email" : "lvz.op@vtg.admin.ch", + "phone" : "+41 58 464 96 43", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5377883, 47.4564259 ], + [ 7.5377885, 47.4564037 ], + [ 7.5377401, 47.456396 ], + [ 7.5375816, 47.456362 ], + [ 7.5357377, 47.4562705 ], + [ 7.5355684, 47.4562908 ], + [ 7.5355517, 47.4563399 ], + [ 7.535406, 47.456769 ], + [ 7.5353699, 47.4568628 ], + [ 7.5355875999999995, 47.4568725 ], + [ 7.5376444, 47.4569633 ], + [ 7.5376471, 47.4569533 ], + [ 7.5376531, 47.456931 ], + [ 7.5377883, 47.4564259 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns193", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Blauenweid", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Blauenweid", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Blauenweid", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Blauenweid", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.6539526, 47.4444457 ], + [ 8.6829847, 47.438124 ], + [ 8.6862596, 47.4373456 ], + [ 8.6894699, 47.4364519 ], + [ 8.6926068, 47.4354453 ], + [ 8.6956616, 47.4343287 ], + [ 8.6986259, 47.433105 ], + [ 8.7014917, 47.4317777 ], + [ 8.704251, 47.4303503 ], + [ 8.7068962, 47.4288268 ], + [ 8.7094202, 47.4272114 ], + [ 8.711816, 47.4255086 ], + [ 8.7140771, 47.4237229 ], + [ 8.7161972, 47.4218594 ], + [ 8.7181705, 47.419923 ], + [ 8.7199917, 47.4179192 ], + [ 8.7216557, 47.4158534 ], + [ 8.7231581, 47.4137313 ], + [ 8.7244946, 47.4115587 ], + [ 8.7256617, 47.4093417 ], + [ 8.7266562, 47.4070861 ], + [ 8.7274754, 47.4047984 ], + [ 8.728117, 47.4024846 ], + [ 8.7285793, 47.4001512 ], + [ 8.7288611, 47.3978046 ], + [ 8.7289616, 47.3954512 ], + [ 8.7288806, 47.3930974 ], + [ 8.7286184, 47.3907498 ], + [ 8.7281755, 47.3884146 ], + [ 8.7275534, 47.3860984 ], + [ 8.7267537, 47.3838075 ], + [ 8.7257787, 47.3815482 ], + [ 8.7246309, 47.3793266 ], + [ 8.7233137, 47.3771488 ], + [ 8.7218306, 47.3750208 ], + [ 8.7201857, 47.3729484 ], + [ 8.7183835, 47.3709373 ], + [ 8.716429, 47.368993 ], + [ 8.7143275, 47.3671209 ], + [ 8.7120849, 47.3653259 ], + [ 8.7097072, 47.3636132 ], + [ 8.707201, 47.3619872 ], + [ 8.7045731, 47.3604526 ], + [ 8.7018307, 47.3590134 ], + [ 8.6989815, 47.3576737 ], + [ 8.6960331, 47.3564371 ], + [ 8.6929936, 47.3553069 ], + [ 8.6898713, 47.3542863 ], + [ 8.6866749, 47.3533781 ], + [ 8.6834129, 47.3525846 ], + [ 8.6800945, 47.3519082 ], + [ 8.6767285, 47.3513507 ], + [ 8.6733243, 47.3509135 ], + [ 8.6698912, 47.3505979 ], + [ 8.6664384, 47.3504047 ], + [ 8.6629756, 47.3503346 ], + [ 8.659512, 47.3503875 ], + [ 8.6560573, 47.3505635 ], + [ 8.6526209, 47.350862 ], + [ 8.6492121, 47.3512823 ], + [ 8.6458402, 47.3518231 ], + [ 8.6425146, 47.352483 ], + [ 8.6135244, 47.3587946 ], + [ 8.6103063, 47.3595573 ], + [ 8.6071502, 47.3604315 ], + [ 8.6040644, 47.3614148 ], + [ 8.6010571, 47.3625047 ], + [ 8.5981362, 47.3636982 ], + [ 8.595309499999999, 47.3649923 ], + [ 8.5925844, 47.3663834 ], + [ 8.5899682, 47.3678679 ], + [ 8.5874678, 47.3694419 ], + [ 8.5850898, 47.3711013 ], + [ 8.5828406, 47.3728415 ], + [ 8.5807261, 47.374658 ], + [ 8.5787519, 47.3765461 ], + [ 8.5769233, 47.3785006 ], + [ 8.5752451, 47.3805165 ], + [ 8.5737218, 47.3825884 ], + [ 8.5723574, 47.3847107 ], + [ 8.5711556, 47.3868779 ], + [ 8.5701196, 47.3890843 ], + [ 8.5692521, 47.3913239 ], + [ 8.5685555, 47.3935909 ], + [ 8.5680316, 47.3958793 ], + [ 8.5676819, 47.3981829 ], + [ 8.567507299999999, 47.4004957 ], + [ 8.5675082, 47.4028115 ], + [ 8.5676847, 47.4051242 ], + [ 8.5680364, 47.4074277 ], + [ 8.5685624, 47.4097158 ], + [ 8.5692612, 47.4119825 ], + [ 8.570131, 47.4142217 ], + [ 8.5711696, 47.4164276 ], + [ 8.5723742, 47.4185943 ], + [ 8.5737417, 47.420716 ], + [ 8.5752684, 47.4227871 ], + [ 8.5769502, 47.424802 ], + [ 8.5787829, 47.4267555 ], + [ 8.5807614, 47.4286424 ], + [ 8.5828805, 47.4304576 ], + [ 8.5851348, 47.4321963 ], + [ 8.587518, 47.4338539 ], + [ 8.5900241, 47.4354261 ], + [ 8.5926462, 47.4369085 ], + [ 8.5953775, 47.4382973 ], + [ 8.5982106, 47.4395889 ], + [ 8.6011382, 47.4407797 ], + [ 8.604152299999999, 47.4418666 ], + [ 8.607245, 47.4428466 ], + [ 8.6104081, 47.4437173 ], + [ 8.6136332, 47.4444763 ], + [ 8.6169117, 47.4451216 ], + [ 8.6202349, 47.4456514 ], + [ 8.6235939, 47.4460644 ], + [ 8.6269798, 47.4463594 ], + [ 8.6303837, 47.4465357 ], + [ 8.6337964, 47.4465928 ], + [ 8.637209, 47.4465305 ], + [ 8.6406123, 47.446349 ], + [ 8.6439972, 47.4460489 ], + [ 8.6473549, 47.4456308 ], + [ 8.6506763, 47.4450959 ], + [ 8.6539526, 47.4444457 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSMD-01", + "country" : "CHE", + "name" : [ + { + "text" : "LSMD Dübendorf", + "lang" : "de-CH" + }, + { + "text" : "LSMD Dübendorf", + "lang" : "fr-CH" + }, + { + "text" : "LSMD Dübendorf", + "lang" : "it-CH" + }, + { + "text" : "LSMD Dübendorf", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Special Flight Office (SFO)", + "lang" : "de-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "fr-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "it-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "en-GB" + } + ], + "siteURL" : "https://skyguide.ch/services/special-flights", + "email" : "specialflight@skyguide.ch", + "phone" : "0041439316236", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7406714999999995, 47.3946495 ], + [ 7.7404402999999995, 47.3946227 ], + [ 7.7404393, 47.3946282 ], + [ 7.7400698, 47.3945903 ], + [ 7.7399672, 47.3945912 ], + [ 7.7398828, 47.3948967 ], + [ 7.7397079, 47.3950992 ], + [ 7.7396337, 47.3953637 ], + [ 7.7392802, 47.3953842 ], + [ 7.7388943999999995, 47.3952764 ], + [ 7.738775, 47.3952212 ], + [ 7.7386705, 47.3953459 ], + [ 7.7382216, 47.3952318 ], + [ 7.7379204, 47.3951905 ], + [ 7.7376379, 47.3952315 ], + [ 7.7373934, 47.3953497 ], + [ 7.7370798, 47.3955456 ], + [ 7.7371061, 47.3955822 ], + [ 7.7371346, 47.395622 ], + [ 7.737389, 47.3955395 ], + [ 7.7377752, 47.395469 ], + [ 7.7381159, 47.3955283 ], + [ 7.7384112, 47.3956573 ], + [ 7.7386506, 47.3957857 ], + [ 7.7392218, 47.3960255 ], + [ 7.7393087, 47.3960462 ], + [ 7.7394106, 47.3960427 ], + [ 7.7398281, 47.3959998 ], + [ 7.7403484, 47.3959236 ], + [ 7.7410501, 47.3957923 ], + [ 7.7412735, 47.3957379 ], + [ 7.7417031, 47.39568 ], + [ 7.7418732, 47.395681 ], + [ 7.7424384, 47.3957189 ], + [ 7.7430371000000004, 47.3957466 ], + [ 7.7431721, 47.3957411 ], + [ 7.743401, 47.3957329 ], + [ 7.7436294, 47.3957058 ], + [ 7.7437351, 47.3956978 ], + [ 7.7438449, 47.3957036 ], + [ 7.7441675, 47.3957116 ], + [ 7.7443344, 47.3957067 ], + [ 7.7443116, 47.3955652 ], + [ 7.7443881, 47.3955523 ], + [ 7.7443341, 47.395225 ], + [ 7.7441078999999995, 47.3952252 ], + [ 7.7440508, 47.3952151 ], + [ 7.7440387, 47.3952343 ], + [ 7.7440231, 47.3952312 ], + [ 7.7440341, 47.3952122 ], + [ 7.7437725, 47.3951661 ], + [ 7.7435672, 47.3951202 ], + [ 7.7432808, 47.3950496 ], + [ 7.7432426, 47.3950438 ], + [ 7.7432061999999995, 47.3950389 ], + [ 7.7430836, 47.3950315 ], + [ 7.7429859, 47.3950194 ], + [ 7.742927, 47.3950166 ], + [ 7.7427681, 47.3950136 ], + [ 7.7425946, 47.3950012 ], + [ 7.7425603, 47.3949988 ], + [ 7.7425262, 47.394996 ], + [ 7.7424921, 47.3949928 ], + [ 7.7424581, 47.3949893 ], + [ 7.7424242, 47.3949853 ], + [ 7.7423953999999995, 47.3949814 ], + [ 7.7423668, 47.3949769 ], + [ 7.7423383999999995, 47.3949718 ], + [ 7.7423103, 47.3949662 ], + [ 7.7422824, 47.39496 ], + [ 7.7422547999999995, 47.3949532 ], + [ 7.7422301000000004, 47.3949482 ], + [ 7.7415872, 47.3947663 ], + [ 7.7414857999999995, 47.3947473 ], + [ 7.7414269, 47.3947437 ], + [ 7.7414302, 47.394735 ], + [ 7.7409972, 47.3947005 ], + [ 7.7410024, 47.3946827 ], + [ 7.7409148, 47.3946745 ], + [ 7.7408538, 47.3946688 ], + [ 7.7407929, 47.3946628 ], + [ 7.7407321, 47.3946563 ], + [ 7.7406714999999995, 47.3946495 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns102", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Thommeten", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Thommeten", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Thommeten", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Thommeten", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.1285987, 46.314065 ], + [ 6.1289264, 46.3138479 ], + [ 6.1291677, 46.3136686 ], + [ 6.129746, 46.313154 ], + [ 6.1298635, 46.3131565 ], + [ 6.1299612, 46.3131158 ], + [ 6.1298086, 46.3129405 ], + [ 6.1297567, 46.3128669 ], + [ 6.1298512, 46.3128432 ], + [ 6.1299008, 46.3128172 ], + [ 6.1304498, 46.312484 ], + [ 6.1336951, 46.3105121 ], + [ 6.1337166, 46.3104045 ], + [ 6.1338036, 46.3103654 ], + [ 6.1335808, 46.3101273 ], + [ 6.1346852, 46.3088891 ], + [ 6.1360668, 46.3080273 ], + [ 6.1378679, 46.3070263 ], + [ 6.1375772, 46.306666 ], + [ 6.1375782, 46.3066654 ], + [ 6.137573, 46.3066607 ], + [ 6.1375601, 46.3066447 ], + [ 6.1375573, 46.3066423 ], + [ 6.1375404, 46.3066315 ], + [ 6.1375164, 46.30661 ], + [ 6.1374205, 46.3065239 ], + [ 6.1374122, 46.3065122 ], + [ 6.1374094, 46.3065096 ], + [ 6.1373907, 46.3064972 ], + [ 6.1373893, 46.306496 ], + [ 6.1373891, 46.3064961 ], + [ 6.1365218, 46.3059215 ], + [ 6.1360739, 46.305773 ], + [ 6.1359126, 46.3056758 ], + [ 6.1354735, 46.3055739 ], + [ 6.1354141, 46.3055542 ], + [ 6.1353724, 46.3055504 ], + [ 6.1344729000000005, 46.3053416 ], + [ 6.1329582, 46.3054144 ], + [ 6.1315988, 46.3058831 ], + [ 6.1315955, 46.3058848 ], + [ 6.1315715, 46.305904 ], + [ 6.1315195, 46.3059318 ], + [ 6.1314922, 46.3059408 ], + [ 6.1314888, 46.3059425 ], + [ 6.1314563, 46.3059656 ], + [ 6.1314373, 46.3059758 ], + [ 6.131439, 46.3059773 ], + [ 6.131366, 46.3060163 ], + [ 6.1312743, 46.3060836 ], + [ 6.1311737, 46.3061185 ], + [ 6.1310321, 46.3061946 ], + [ 6.1309428, 46.3062607 ], + [ 6.1308387, 46.3062966 ], + [ 6.1306978, 46.306372 ], + [ 6.1298616, 46.3069872 ], + [ 6.1293408, 46.3077514 ], + [ 6.1292271, 46.3083699 ], + [ 6.1285487, 46.3083437 ], + [ 6.1273605, 46.3085642 ], + [ 6.1269715, 46.3087404 ], + [ 6.1268459, 46.3087636 ], + [ 6.1258196, 46.3092266 ], + [ 6.1256845, 46.3093112 ], + [ 6.1247832, 46.3101481 ], + [ 6.1244077, 46.3111593 ], + [ 6.1246144, 46.3121937 ], + [ 6.1253723, 46.3130963 ], + [ 6.1254666, 46.3131705 ], + [ 6.1264137, 46.3137129 ], + [ 6.1275577, 46.3140239 ], + [ 6.1285987, 46.314065 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-33", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.9043624999999995, 47.3212362 ], + [ 7.9043558, 47.321095 ], + [ 7.9043383, 47.3209542 ], + [ 7.90431, 47.3208143 ], + [ 7.9042709, 47.3206755 ], + [ 7.9042212, 47.3205384 ], + [ 7.904161, 47.3204031 ], + [ 7.9040905, 47.3202703 ], + [ 7.9040099, 47.3201401 ], + [ 7.9039193, 47.3200129 ], + [ 7.9038191, 47.3198892 ], + [ 7.9037095, 47.3197692 ], + [ 7.9035909, 47.3196532 ], + [ 7.9034634, 47.3195417 ], + [ 7.9033276, 47.3194348 ], + [ 7.9031837, 47.3193329 ], + [ 7.9030321, 47.3192363 ], + [ 7.9028734, 47.3191451 ], + [ 7.9027078, 47.3190598 ], + [ 7.9025359, 47.3189805 ], + [ 7.9023582, 47.3189074 ], + [ 7.902175, 47.3188407 ], + [ 7.901987, 47.3187806 ], + [ 7.9017946, 47.3187274 ], + [ 7.9015984, 47.318681 ], + [ 7.9013988, 47.3186417 ], + [ 7.9011965, 47.3186095 ], + [ 7.9009921, 47.3185846 ], + [ 7.9007859, 47.3185669 ], + [ 7.9005788, 47.3185567 ], + [ 7.9003711, 47.3185538 ], + [ 7.9001634, 47.3185584 ], + [ 7.8999564, 47.3185703 ], + [ 7.8997506, 47.3185895 ], + [ 7.8995466, 47.3186161 ], + [ 7.8993449, 47.3186499 ], + [ 7.899146, 47.3186908 ], + [ 7.8989506, 47.3187387 ], + [ 7.8987592, 47.3187935 ], + [ 7.8985722, 47.3188551 ], + [ 7.8983902, 47.3189232 ], + [ 7.8982137, 47.3189978 ], + [ 7.8980432, 47.3190785 ], + [ 7.8978791, 47.3191651 ], + [ 7.8977219, 47.3192575 ], + [ 7.8975721, 47.3193553 ], + [ 7.89743, 47.3194584 ], + [ 7.897296, 47.3195663 ], + [ 7.8971705, 47.3196789 ], + [ 7.8970538, 47.3197958 ], + [ 7.8969463, 47.3199167 ], + [ 7.8968482, 47.3200412 ], + [ 7.8967599, 47.320169 ], + [ 7.8966815, 47.3202999 ], + [ 7.8966133, 47.3204333 ], + [ 7.8965555, 47.320569 ], + [ 7.8965081999999995, 47.3207065 ], + [ 7.8964715, 47.3208456 ], + [ 7.8964456, 47.3209858 ], + [ 7.8964305, 47.3211267 ], + [ 7.8964262, 47.3212679 ], + [ 7.8964329, 47.3214091 ], + [ 7.8964504, 47.3215499 ], + [ 7.8964787, 47.3216898 ], + [ 7.8965178, 47.3218286 ], + [ 7.8965674, 47.3219657 ], + [ 7.8966276, 47.3221009 ], + [ 7.8966981, 47.3222338 ], + [ 7.8967787, 47.322364 ], + [ 7.8968693, 47.3224912 ], + [ 7.8969694, 47.3226149 ], + [ 7.897079, 47.3227349 ], + [ 7.8971976999999995, 47.3228509 ], + [ 7.8973251, 47.3229625 ], + [ 7.897461, 47.3230693 ], + [ 7.8976049, 47.3231713 ], + [ 7.8977564000000005, 47.3232679 ], + [ 7.8979152, 47.323359 ], + [ 7.8980806999999995, 47.3234444 ], + [ 7.8982526, 47.3235237 ], + [ 7.8984304, 47.3235968 ], + [ 7.8986136, 47.3236635 ], + [ 7.8988016, 47.3237235 ], + [ 7.898994, 47.3237768 ], + [ 7.8991903, 47.3238232 ], + [ 7.8993898, 47.3238625 ], + [ 7.8995921, 47.3238947 ], + [ 7.8997966, 47.323919599999996 ], + [ 7.9000028, 47.3239373 ], + [ 7.90021, 47.3239475 ], + [ 7.9004177, 47.3239504 ], + [ 7.9006254, 47.3239459 ], + [ 7.9008324, 47.3239339 ], + [ 7.9010382, 47.3239147 ], + [ 7.9012423, 47.3238881 ], + [ 7.901444, 47.3238543 ], + [ 7.9016428, 47.3238134 ], + [ 7.9018383, 47.3237655 ], + [ 7.9020297, 47.3237106 ], + [ 7.9022167, 47.3236491 ], + [ 7.9023987, 47.3235809 ], + [ 7.9025752, 47.3235064 ], + [ 7.9027458, 47.3234257 ], + [ 7.9029098, 47.3233391 ], + [ 7.903067, 47.3232467 ], + [ 7.9032169, 47.3231488 ], + [ 7.903359, 47.3230458 ], + [ 7.903493, 47.3229378 ], + [ 7.9036185, 47.3228252 ], + [ 7.9037351000000005, 47.3227083 ], + [ 7.9038426, 47.3225875 ], + [ 7.9039407, 47.3224629 ], + [ 7.9040289999999995, 47.322335 ], + [ 7.9041074, 47.3222042 ], + [ 7.9041756, 47.3220708 ], + [ 7.9042334, 47.3219351 ], + [ 7.9042807, 47.3217975 ], + [ 7.9043173, 47.3216585 ], + [ 7.9043432, 47.3215183 ], + [ 7.9043583, 47.3213774 ], + [ 7.9043624999999995, 47.3212362 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "ABG0001", + "country" : "CHE", + "name" : [ + { + "text" : "Jugendheim Aarburg", + "lang" : "de-CH" + }, + { + "text" : "Jugendheim Aarburg", + "lang" : "fr-CH" + }, + { + "text" : "Jugendheim Aarburg", + "lang" : "it-CH" + }, + { + "text" : "Jugendheim Aarburg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Jugendheim Aarburg", + "lang" : "de-CH" + }, + { + "text" : "Jugendheim Aarburg", + "lang" : "fr-CH" + }, + { + "text" : "Jugendheim Aarburg", + "lang" : "it-CH" + }, + { + "text" : "Jugendheim Aarburg", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Direktion", + "lang" : "de-CH" + }, + { + "text" : "Direktion", + "lang" : "fr-CH" + }, + { + "text" : "Direktion", + "lang" : "it-CH" + }, + { + "text" : "Direktion", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ag.ch/de/verwaltung/dvi/strafverfolgung-strafvollzug/strafvollzug/jugendheim-aarburg", + "email" : "jugendheim@ag.ch", + "phone" : "0041627870101", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7192241, 47.5353009 ], + [ 7.7193191, 47.5351851 ], + [ 7.7193584, 47.5351206 ], + [ 7.719428, 47.5349978 ], + [ 7.7194301, 47.534984 ], + [ 7.7194316, 47.5349702 ], + [ 7.7194323, 47.5349563 ], + [ 7.7194323, 47.5349424 ], + [ 7.7194316, 47.5349285 ], + [ 7.7194302, 47.5349147 ], + [ 7.7194281, 47.5349009 ], + [ 7.7194251, 47.534887 ], + [ 7.7194214, 47.5348731 ], + [ 7.719417, 47.5348594 ], + [ 7.7194119, 47.5348458 ], + [ 7.7194061, 47.5348323 ], + [ 7.7193995, 47.534819 ], + [ 7.7193923, 47.5348058 ], + [ 7.7193844, 47.5347928 ], + [ 7.7193758, 47.53478 ], + [ 7.7193679, 47.5347691 ], + [ 7.7193591999999995, 47.5347585 ], + [ 7.7193497, 47.5347481 ], + [ 7.7193395, 47.5347382 ], + [ 7.7193286, 47.5347285 ], + [ 7.719317, 47.5347193 ], + [ 7.7193047, 47.5347105 ], + [ 7.7192918, 47.534702 ], + [ 7.7192783, 47.5346941 ], + [ 7.7192642, 47.5346866 ], + [ 7.7192492999999995, 47.5346795 ], + [ 7.719234, 47.534673 ], + [ 7.7192181, 47.5346671 ], + [ 7.7192019, 47.5346616 ], + [ 7.7191852, 47.5346568 ], + [ 7.7191683, 47.5346525 ], + [ 7.719151, 47.5346487 ], + [ 7.7191335, 47.5346456 ], + [ 7.7191157, 47.5346431 ], + [ 7.7190978, 47.5346412 ], + [ 7.7190746, 47.5346402 ], + [ 7.7190514, 47.5346396 ], + [ 7.7190281, 47.5346394 ], + [ 7.7190048, 47.5346398 ], + [ 7.7189816, 47.5346407 ], + [ 7.7189584, 47.534642 ], + [ 7.7189353, 47.5346438 ], + [ 7.7189122999999995, 47.5346461 ], + [ 7.7188869, 47.5346493 ], + [ 7.7188617, 47.534653 ], + [ 7.7188365999999995, 47.5346573 ], + [ 7.7188118, 47.5346622 ], + [ 7.7187873, 47.5346676 ], + [ 7.7187631, 47.5346736 ], + [ 7.7187391, 47.5346802 ], + [ 7.7185366, 47.5347496 ], + [ 7.7183875, 47.5347999 ], + [ 7.7183288, 47.5348197 ], + [ 7.7183588, 47.534829 ], + [ 7.7183775, 47.5348347 ], + [ 7.7186921, 47.5347365 ], + [ 7.7187532999999995, 47.5347634 ], + [ 7.7187703, 47.534758 ], + [ 7.7187877, 47.5347533 ], + [ 7.7188055, 47.5347491 ], + [ 7.7188235, 47.5347457 ], + [ 7.7188418, 47.5347428 ], + [ 7.7188604, 47.5347407 ], + [ 7.718879, 47.5347392 ], + [ 7.7188977, 47.5347384 ], + [ 7.7189165, 47.5347382 ], + [ 7.7189353, 47.5347388 ], + [ 7.718954, 47.53474 ], + [ 7.7189725, 47.5347419 ], + [ 7.7189909, 47.5347445 ], + [ 7.7190091, 47.5347477 ], + [ 7.719027, 47.5347516 ], + [ 7.7190445, 47.5347561 ], + [ 7.7190617, 47.5347612 ], + [ 7.7190785, 47.534767 ], + [ 7.7190947, 47.5347734 ], + [ 7.7191105, 47.5347803 ], + [ 7.7191257, 47.5347878 ], + [ 7.7191402, 47.5347958 ], + [ 7.7191541, 47.5348044 ], + [ 7.7191673, 47.5348134 ], + [ 7.7191798, 47.5348229 ], + [ 7.7191916, 47.5348328 ], + [ 7.7192025, 47.5348432 ], + [ 7.7192126, 47.5348539 ], + [ 7.7192218, 47.534864999999996 ], + [ 7.7192301, 47.5348764 ], + [ 7.7192376, 47.534888 ], + [ 7.7192441, 47.5349 ], + [ 7.7192495999999995, 47.5349121 ], + [ 7.7192542, 47.5349244 ], + [ 7.7192579, 47.5349369 ], + [ 7.7192605, 47.5349495 ], + [ 7.7192621, 47.5349622 ], + [ 7.7192627, 47.5349749 ], + [ 7.7192624, 47.5349876 ], + [ 7.7192679, 47.5349901 ], + [ 7.7190654, 47.535201 ], + [ 7.7191341, 47.5352307 ], + [ 7.7191212, 47.5352442 ], + [ 7.7192241, 47.5353009 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns163", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Ergolz", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Ergolz", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Ergolz", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Ergolz", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.2466104, 46.2233167 ], + [ 6.246974, 46.2235459 ], + [ 6.2468592, 46.2239187 ], + [ 6.2468579, 46.2239815 ], + [ 6.2468568, 46.2240351 ], + [ 6.2470302, 46.2248717 ], + [ 6.247568, 46.2256301 ], + [ 6.2475945, 46.2256491 ], + [ 6.2475793, 46.225669 ], + [ 6.2473706, 46.2265016 ], + [ 6.2473684, 46.2266053 ], + [ 6.2476416, 46.2276402 ], + [ 6.2484641, 46.2285239 ], + [ 6.2497111, 46.2291222 ], + [ 6.251193, 46.229344 ], + [ 6.2519724, 46.2293529 ], + [ 6.2521102, 46.2293393 ], + [ 6.2527664, 46.2293465 ], + [ 6.2539711, 46.2292276 ], + [ 6.2550639, 46.2288561 ], + [ 6.2551505, 46.2287979 ], + [ 6.2554194, 46.2287061 ], + [ 6.2562919, 46.2281172 ], + [ 6.2563534, 46.2280363 ], + [ 6.2570334, 46.2277479 ], + [ 6.2579256, 46.2268994 ], + [ 6.2579697, 46.2267736 ], + [ 6.2582202, 46.2266085 ], + [ 6.2583181, 46.2265197 ], + [ 6.2583182, 46.2265196 ], + [ 6.258324, 46.2265144 ], + [ 6.2586372, 46.2260725 ], + [ 6.2590593, 46.225538 ], + [ 6.2590974, 46.2253978 ], + [ 6.2591403, 46.2253433 ], + [ 6.2593661, 46.2245117 ], + [ 6.2593635, 46.2244977 ], + [ 6.2602486, 46.2241005 ], + [ 6.2610214, 46.2233233 ], + [ 6.2609098, 46.2241401 ], + [ 6.2609124, 46.2241578 ], + [ 6.2612237, 46.2249749 ], + [ 6.2618839, 46.2256852 ], + [ 6.2628283, 46.2262188 ], + [ 6.2639642, 46.2265235 ], + [ 6.2651802, 46.2265694 ], + [ 6.2652032, 46.2265677 ], + [ 6.2663919, 46.2263466 ], + [ 6.2674214, 46.2258788 ], + [ 6.2681887, 46.2252111 ], + [ 6.268617, 46.2244104 ], + [ 6.2686633, 46.2235569 ], + [ 6.2686602, 46.223539099999996 ], + [ 6.2681938, 46.222548 ], + [ 6.2672209, 46.2217536 ], + [ 6.2658868, 46.2212744 ], + [ 6.2643906, 46.2211819 ], + [ 6.2643682, 46.2211836 ], + [ 6.2629235, 46.2214953 ], + [ 6.2617595999999995, 46.2221662 ], + [ 6.2612222, 46.222872 ], + [ 6.2614286, 46.2222044 ], + [ 6.261155, 46.2211686 ], + [ 6.2603313, 46.2202844 ], + [ 6.2590828, 46.2196863 ], + [ 6.2588963, 46.2196585 ], + [ 6.2590434, 46.2191827 ], + [ 6.2587699, 46.218147 ], + [ 6.2579462, 46.2172628 ], + [ 6.2566977999999995, 46.2166646 ], + [ 6.2562711, 46.216601 ], + [ 6.2554269, 46.2161965 ], + [ 6.2539438, 46.2159755 ], + [ 6.2524518, 46.2161653 ], + [ 6.2511779, 46.216737 ], + [ 6.2503161, 46.2176035 ], + [ 6.2500876, 46.2183421 ], + [ 6.249461, 46.2183524 ], + [ 6.2491649, 46.2183535 ], + [ 6.2491345, 46.2183578 ], + [ 6.2486489, 46.2183659 ], + [ 6.2486078, 46.2183721 ], + [ 6.2472544, 46.2187752 ], + [ 6.2462140999999995, 46.2194989 ], + [ 6.2461906, 46.219523 ], + [ 6.2457281, 46.2201724 ], + [ 6.245531, 46.2208839 ], + [ 6.2456138, 46.2216061 ], + [ 6.2456664, 46.221774 ], + [ 6.2458752, 46.2221073 ], + [ 6.2459169, 46.2222351 ], + [ 6.2459333, 46.2222635 ], + [ 6.2459372, 46.2222942 ], + [ 6.2459631, 46.222366 ], + [ 6.2461601, 46.2226554 ], + [ 6.2463762, 46.2230286 ], + [ 6.2464629, 46.2231001 ], + [ 6.2466104, 46.2233167 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-4", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.1180911, 47.3101869 ], + [ 8.1180838, 47.3100457 ], + [ 8.1180657, 47.309905 ], + [ 8.1180368, 47.3097651 ], + [ 8.1179972, 47.3096264 ], + [ 8.117947, 47.3094894 ], + [ 8.1178863, 47.3093543 ], + [ 8.1178153, 47.3092215 ], + [ 8.1177341, 47.3090915 ], + [ 8.1176431, 47.3089645 ], + [ 8.1175424, 47.3088409 ], + [ 8.1174323, 47.3087211 ], + [ 8.1173132, 47.3086054 ], + [ 8.1171854, 47.3084941 ], + [ 8.1170491, 47.3083874 ], + [ 8.1169048, 47.3082858 ], + [ 8.1167529, 47.3081895 ], + [ 8.1165938, 47.3080986 ], + [ 8.116428, 47.3080136 ], + [ 8.1162558, 47.3079346 ], + [ 8.1160778, 47.3078618 ], + [ 8.1158944, 47.3077955 ], + [ 8.1157061, 47.3077358 ], + [ 8.1155136, 47.3076829 ], + [ 8.1153172, 47.3076369 ], + [ 8.1151175, 47.3075979 ], + [ 8.1149152, 47.3075661 ], + [ 8.1147106, 47.3075416 ], + [ 8.1145045, 47.3075243 ], + [ 8.1142973, 47.3075145 ], + [ 8.1140896, 47.307512 ], + [ 8.113882, 47.3075169 ], + [ 8.1136751, 47.3075292 ], + [ 8.1134694, 47.3075488 ], + [ 8.1132655, 47.3075758 ], + [ 8.113064, 47.3076099 ], + [ 8.1128654, 47.3076512 ], + [ 8.1126702, 47.3076995 ], + [ 8.112479, 47.3077547 ], + [ 8.1122923, 47.3078166 ], + [ 8.1121106, 47.3078851 ], + [ 8.111934399999999, 47.3079599 ], + [ 8.1117643, 47.3080409 ], + [ 8.1116006, 47.3081279 ], + [ 8.1114438, 47.3082205 ], + [ 8.1112944, 47.3083187 ], + [ 8.1111527, 47.308422 ], + [ 8.1110192, 47.3085302 ], + [ 8.1108941, 47.308643000000004 ], + [ 8.110778, 47.3087601 ], + [ 8.110671, 47.3088812 ], + [ 8.1105734, 47.3090059 ], + [ 8.1104856, 47.3091339 ], + [ 8.1104078, 47.3092649 ], + [ 8.1103401, 47.3093984 ], + [ 8.1102828, 47.3095342 ], + [ 8.1102361, 47.3096719 ], + [ 8.1101999, 47.309811 ], + [ 8.1101746, 47.3099512 ], + [ 8.1101601, 47.3100921 ], + [ 8.1101564, 47.3102334 ], + [ 8.1101636, 47.3103746 ], + [ 8.1101817, 47.3105153 ], + [ 8.1102106, 47.3106552 ], + [ 8.1102502, 47.3107939 ], + [ 8.1103004, 47.3109309 ], + [ 8.1103611, 47.311066 ], + [ 8.1104321, 47.3111988 ], + [ 8.1105132, 47.3113288 ], + [ 8.1106042, 47.3114558 ], + [ 8.1107049, 47.3115794 ], + [ 8.110815, 47.3116992 ], + [ 8.1109341, 47.3118149 ], + [ 8.1110619, 47.3119263 ], + [ 8.1111982, 47.3120329 ], + [ 8.1113425, 47.3121345 ], + [ 8.1114944, 47.3122309 ], + [ 8.1116535, 47.3123217 ], + [ 8.1118193, 47.3124068 ], + [ 8.1119915, 47.3124858 ], + [ 8.1121696, 47.3125585 ], + [ 8.112353, 47.3126249 ], + [ 8.1125412, 47.3126846 ], + [ 8.1127338, 47.3127375 ], + [ 8.1129302, 47.3127835 ], + [ 8.1131299, 47.3128225 ], + [ 8.1133323, 47.3128543 ], + [ 8.1135368, 47.3128789 ], + [ 8.113743, 47.3128961 ], + [ 8.1139502, 47.312906 ], + [ 8.1141579, 47.3129084 ], + [ 8.1143655, 47.3129035 ], + [ 8.1145724, 47.3128912 ], + [ 8.1147781, 47.3128716 ], + [ 8.114982, 47.3128446 ], + [ 8.1151836, 47.3128105 ], + [ 8.1153823, 47.3127692 ], + [ 8.1155775, 47.3127209 ], + [ 8.1157687, 47.3126657 ], + [ 8.1159554, 47.3126038 ], + [ 8.1161371, 47.3125353 ], + [ 8.1163132, 47.3124605 ], + [ 8.1164834, 47.3123794 ], + [ 8.1166471, 47.3122925 ], + [ 8.1168039, 47.3121998 ], + [ 8.1169533, 47.3121017 ], + [ 8.117095, 47.3119984 ], + [ 8.1172285, 47.3118902 ], + [ 8.1173536, 47.3117774 ], + [ 8.1174697, 47.3116602 ], + [ 8.1175767, 47.3115392 ], + [ 8.1176742, 47.3114144 ], + [ 8.117762, 47.3112864 ], + [ 8.1178399, 47.3111554 ], + [ 8.1179075, 47.3110219 ], + [ 8.1179648, 47.3108861 ], + [ 8.1180115, 47.3107484 ], + [ 8.1180476, 47.3106093 ], + [ 8.1180729, 47.3104691 ], + [ 8.1180874, 47.3103282 ], + [ 8.1180911, 47.3101869 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "UKU0001", + "country" : "CHE", + "name" : [ + { + "text" : "Bezirksgefängnis Kulm", + "lang" : "de-CH" + }, + { + "text" : "Bezirksgefängnis Kulm", + "lang" : "fr-CH" + }, + { + "text" : "Bezirksgefängnis Kulm", + "lang" : "it-CH" + }, + { + "text" : "Bezirksgefängnis Kulm", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Bezirksgefängnis Kulm", + "lang" : "de-CH" + }, + { + "text" : "Bezirksgefängnis Kulm", + "lang" : "fr-CH" + }, + { + "text" : "Bezirksgefängnis Kulm", + "lang" : "it-CH" + }, + { + "text" : "Bezirksgefängnis Kulm", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Gefängnisleitung", + "lang" : "de-CH" + }, + { + "text" : "Gefängnisleitung", + "lang" : "fr-CH" + }, + { + "text" : "Gefängnisleitung", + "lang" : "it-CH" + }, + { + "text" : "Gefängnisleitung", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ag.ch/de/verwaltung/dvi/strafverfolgung-strafvollzug/strafvollzug/bezirksgefaengnisse", + "email" : "justizvollzug@ag.ch", + "phone" : "0041627685580", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.1086002, 46.3270623 ], + [ 7.1075161, 46.3268351 ], + [ 7.1064889, 46.3266198 ], + [ 7.1037928, 46.3260541 ], + [ 7.1026516, 46.3254039 ], + [ 7.10032, 46.3240773 ], + [ 7.097355, 46.3233388 ], + [ 7.0987325, 46.3239934 ], + [ 7.0995801, 46.3244493 ], + [ 7.1002105, 46.3253876 ], + [ 7.1009477, 46.3264873 ], + [ 7.1010304, 46.3265505 ], + [ 7.1026356, 46.3277698 ], + [ 7.1039205, 46.3289322 ], + [ 7.1040543, 46.3289182 ], + [ 7.1042168, 46.3288899 ], + [ 7.1044314, 46.328842 ], + [ 7.1045354, 46.328818 ], + [ 7.1047668, 46.3287719 ], + [ 7.1048344, 46.3287667 ], + [ 7.1049226, 46.328776 ], + [ 7.1050419, 46.3288096 ], + [ 7.1051546, 46.328854 ], + [ 7.1053347, 46.3289103 ], + [ 7.1054579, 46.3289404 ], + [ 7.105546, 46.3289766 ], + [ 7.1057325, 46.3290563 ], + [ 7.1060602, 46.3292021 ], + [ 7.1063968, 46.3293614 ], + [ 7.1064991, 46.3294184 ], + [ 7.1065948, 46.3294682 ], + [ 7.1066415, 46.3294881 ], + [ 7.1067581, 46.3295271 ], + [ 7.106915, 46.3295609 ], + [ 7.1071951, 46.3296247 ], + [ 7.1075037, 46.3297056 ], + [ 7.1075828, 46.3297265 ], + [ 7.1077487, 46.3297729 ], + [ 7.1079641, 46.3298104 ], + [ 7.108038, 46.3298205 ], + [ 7.1084983, 46.3290932 ], + [ 7.1087922, 46.3288125 ], + [ 7.108991, 46.3285774 ], + [ 7.1092349, 46.3279718 ], + [ 7.1099883, 46.3273827 ], + [ 7.1086002, 46.3270623 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00041", + "country" : "CHE", + "name" : [ + { + "text" : "Secteur Perche", + "lang" : "de-CH" + }, + { + "text" : "Secteur Perche", + "lang" : "fr-CH" + }, + { + "text" : "Secteur Perche", + "lang" : "it-CH" + }, + { + "text" : "Secteur Perche", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "startDateTime" : "2024-11-15T00:00:00+01:00", + "endDateTime" : "2025-05-31T00:00:00+02:00" + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Generaldirektion für Umwelt", + "lang" : "de-CH" + }, + { + "text" : "Direction générale de l'environnement", + "lang" : "fr-CH" + }, + { + "text" : "Direzione generale dell'Ambiente", + "lang" : "it-CH" + }, + { + "text" : "Environment Department", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.dge@vd.ch", + "phone" : "0041213164422", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.9499168, 47.2149111 ], + [ 8.9493774, 47.2148608 ], + [ 8.9491938, 47.2149087 ], + [ 8.9490432, 47.2149221 ], + [ 8.9488581, 47.214913 ], + [ 8.9487059, 47.2148692 ], + [ 8.9485284, 47.2148372 ], + [ 8.9483418, 47.2147767 ], + [ 8.948137299999999, 47.2146649 ], + [ 8.9479669, 47.2145643 ], + [ 8.9477037, 47.2144762 ], + [ 8.947466, 47.2143878 ], + [ 8.9471026, 47.2142895 ], + [ 8.9468586, 47.2142982 ], + [ 8.946547, 47.2142507 ], + [ 8.9461007, 47.2142279 ], + [ 8.9457989, 47.2142373 ], + [ 8.9455907, 47.2143142 ], + [ 8.9453543, 47.2142715 ], + [ 8.945008, 47.2141958 ], + [ 8.9443152, 47.2140617 ], + [ 8.9437747, 47.2139428 ], + [ 8.943302, 47.213863 ], + [ 8.9427704, 47.2137669 ], + [ 8.942112999999999, 47.2136895 ], + [ 8.9416578, 47.2136437 ], + [ 8.9412121, 47.2136093 ], + [ 8.9407074, 47.2135928 ], + [ 8.9402706, 47.2136096 ], + [ 8.940027, 47.213607 ], + [ 8.9396007, 47.2136751 ], + [ 8.939324599999999, 47.2137187 ], + [ 8.9392478, 47.2136854 ], + [ 8.9388147, 47.2135136 ], + [ 8.9383991, 47.2133474 ], + [ 8.9381027, 47.2132825 ], + [ 8.9378407, 47.2132116 ], + [ 8.9375545, 47.2131866 ], + [ 8.9371329, 47.213129 ], + [ 8.9367706, 47.2130993 ], + [ 8.9364176, 47.213075 ], + [ 8.9360113, 47.2129773 ], + [ 8.935633, 47.2129649 ], + [ 8.9352378, 47.2129356 ], + [ 8.9349253, 47.2128881 ], + [ 8.9345369, 47.2128072 ], + [ 8.9342069, 47.2127199 ], + [ 8.9338768, 47.2126326 ], + [ 8.9335715, 47.2125449 ], + [ 8.9332488, 47.2123946 ], + [ 8.9329597, 47.212267 ], + [ 8.9326608, 47.2120821 ], + [ 8.9324155, 47.2120165 ], + [ 8.932086, 47.2119464 ], + [ 8.9317305, 47.2118651 ], + [ 8.931377, 47.2118238 ], + [ 8.9310491, 47.2118107 ], + [ 8.9305875, 47.2118279 ], + [ 8.930385, 47.211819 ], + [ 8.9301663, 47.2117874 ], + [ 8.9299049, 47.2117621 ], + [ 8.9295086, 47.2116985 ], + [ 8.929221, 47.2116221 ], + [ 8.9289756, 47.2115508 ], + [ 8.9287043, 47.2114686 ], + [ 8.9285019, 47.2114311 ], + [ 8.9283584, 47.2114043 ], + [ 8.9281985, 47.211412 ], + [ 8.9280207, 47.2113685 ], + [ 8.927882199999999, 47.2113402 ], + [ 8.9278357, 47.2113308 ], + [ 8.9277508, 47.2113032 ], + [ 8.9271536, 47.2111052 ], + [ 8.926634, 47.2109373 ], + [ 8.9262172, 47.2108134 ], + [ 8.9258673, 47.2106938 ], + [ 8.9254769, 47.2106036 ], + [ 8.9250797, 47.210531 ], + [ 8.9246976, 47.2104408 ], + [ 8.9243231, 47.2103274 ], + [ 8.9239564, 47.2101968 ], + [ 8.9238097, 47.2101135 ], + [ 8.9235694, 47.2099861 ], + [ 8.9233478, 47.20991 ], + [ 8.9229387, 47.2097687 ], + [ 8.9224355, 47.2095946 ], + [ 8.9220269, 47.2094704 ], + [ 8.9214512, 47.2093611 ], + [ 8.9206802, 47.2091978 ], + [ 8.9200527, 47.2090664 ], + [ 8.9194949, 47.2089737 ], + [ 8.919264, 47.208892 ], + [ 8.9189401, 47.2087835 ], + [ 8.9186239, 47.2086576 ], + [ 8.9183212, 47.2086347 ], + [ 8.9178824, 47.2085799 ], + [ 8.9175448, 47.2085461 ], + [ 8.9173055, 47.2084532 ], + [ 8.917036, 47.2084354 ], + [ 8.9166636, 47.2083679 ], + [ 8.9163253, 47.2083055 ], + [ 8.9159106, 47.2082273 ], + [ 8.9156049, 47.2081528 ], + [ 8.915096, 47.208042 ], + [ 8.9147593, 47.2080082 ], + [ 8.9142682, 47.2079143 ], + [ 8.9138582, 47.2077672 ], + [ 8.9133846, 47.2076786 ], + [ 8.9130104, 47.2075711 ], + [ 8.9123992, 47.2074277 ], + [ 8.9121718, 47.2074091 ], + [ 8.9118417, 47.2073466 ], + [ 8.9116476, 47.2073409 ], + [ 8.9113407, 47.207402 ], + [ 8.911088, 47.2073953 ], + [ 8.9106929, 47.2073684 ], + [ 8.9104817, 47.207338 ], + [ 8.9101538, 47.207327 ], + [ 8.9100314, 47.2073454 ], + [ 8.9099739, 47.2074451 ], + [ 8.9094266, 47.2081553 ], + [ 8.909908099999999, 47.2082323 ], + [ 8.9103823, 47.2083152 ], + [ 8.9110508, 47.2084402 ], + [ 8.911618, 47.2085441 ], + [ 8.912375, 47.2087649 ], + [ 8.9133432, 47.2090162 ], + [ 8.9145475, 47.2093031 ], + [ 8.9158869, 47.2095817 ], + [ 8.916982, 47.2098534 ], + [ 8.9186163, 47.210172299999996 ], + [ 8.9199232, 47.2104974 ], + [ 8.9210843, 47.2107391 ], + [ 8.922388399999999, 47.2109897 ], + [ 8.9233046, 47.2112074 ], + [ 8.9238218, 47.2114092 ], + [ 8.9241269, 47.211491 ], + [ 8.9249733, 47.2117491 ], + [ 8.9257868, 47.2120133 ], + [ 8.9265345, 47.2123126 ], + [ 8.9273512, 47.212691 ], + [ 8.9281342, 47.2130697 ], + [ 8.9288339, 47.2134839 ], + [ 8.9295088, 47.2138925 ], + [ 8.9301992, 47.2142667 ], + [ 8.9306524, 47.2145697 ], + [ 8.9312592, 47.2149335 ], + [ 8.9317642, 47.2152872 ], + [ 8.9321077, 47.2155572 ], + [ 8.9324525, 47.2158785 ], + [ 8.9331385, 47.2157672 ], + [ 8.9336895, 47.2156402 ], + [ 8.9342235, 47.2155251 ], + [ 8.9348404, 47.2153345 ], + [ 8.9356831, 47.2151354 ], + [ 8.9365835, 47.2148728 ], + [ 8.9374026, 47.214714 ], + [ 8.9380306, 47.2146261 ], + [ 8.9383235, 47.2145939 ], + [ 8.9387757, 47.2145369 ], + [ 8.9390108, 47.2145339 ], + [ 8.9392558, 47.214588 ], + [ 8.939400599999999, 47.2146604 ], + [ 8.9396179, 47.2146121 ], + [ 8.9397691, 47.2146159 ], + [ 8.939957, 47.2147277 ], + [ 8.9400698, 47.2148634 ], + [ 8.9402063, 47.214936 ], + [ 8.9404602, 47.2150128 ], + [ 8.9406885, 47.2150614 ], + [ 8.9406828, 47.2151529 ], + [ 8.940743, 47.2152093 ], + [ 8.9408109, 47.2152485 ], + [ 8.9410395, 47.2153085 ], + [ 8.94105, 47.2157082 ], + [ 8.9413668, 47.216527 ], + [ 8.9416446, 47.2171635 ], + [ 8.9420774, 47.2182608 ], + [ 8.9431577, 47.2181158 ], + [ 8.9455607, 47.217817 ], + [ 8.9472087, 47.2175793 ], + [ 8.9494278, 47.217317 ], + [ 8.9507426, 47.2171461 ], + [ 8.9517887, 47.2169901 ], + [ 8.9521555, 47.2168883 ], + [ 8.9519221, 47.2157256 ], + [ 8.9518764, 47.2156006 ], + [ 8.9518059, 47.2154986 ], + [ 8.9516106, 47.215421 ], + [ 8.9513562, 47.2153271 ], + [ 8.9510681, 47.2152336 ], + [ 8.9506868, 47.2151184 ], + [ 8.950289099999999, 47.2150034 ], + [ 8.9499168, 47.2149111 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "WZV0039", + "country" : "CHE", + "name" : [ + { + "text" : "Wasser- und Zugvogelreservat Zürich-Obersee: Guntliweid bis Bätzimatt", + "lang" : "de-CH" + }, + { + "text" : "Réserve d'oiseaux d'eau et de migrateurs Zürich-Obersee: Guntliweid bis Bätzimatt", + "lang" : "fr-CH" + }, + { + "text" : "Riserva di uccelli acquatici e migratori Zürich-Obersee: Guntliweid bis Bätzimatt", + "lang" : "it-CH" + }, + { + "text" : "Water Bird and Migratory Bird Reserves Zürich-Obersee: Guntliweid bis Bätzimatt", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.2987921, 46.6779419 ], + [ 7.2800986, 46.65716 ], + [ 7.2628302, 46.664196 ], + [ 7.282372, 46.6840148 ], + [ 7.2987921, 46.6779419 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSWS001", + "country" : "CHE", + "name" : [ + { + "text" : "LSWS Lac Noir", + "lang" : "de-CH" + }, + { + "text" : "LSWS Lac Noir", + "lang" : "fr-CH" + }, + { + "text" : "LSWS Lac Noir", + "lang" : "it-CH" + }, + { + "text" : "LSWS Lac Noir", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "startDateTime" : "2024-11-01T00:00:00+01:00", + "endDateTime" : "2025-04-01T00:00:00+02:00" + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Aérodrome Régional Fribourg Ecuvillens SA", + "lang" : "de-CH" + }, + { + "text" : "Aérodrome Régional Fribourg Ecuvillens SA", + "lang" : "fr-CH" + }, + { + "text" : "Aérodrome Régional Fribourg Ecuvillens SA", + "lang" : "it-CH" + }, + { + "text" : "Aérodrome Régional Fribourg Ecuvillens SA", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Chef d'aérodrome", + "lang" : "de-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "fr-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "it-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.aerodrome-ecuvillens.ch/index.php?page=./drones/drones_LSGE.htm", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6757553, 47.4114619 ], + [ 7.6756743, 47.411146 ], + [ 7.6753422, 47.4108944 ], + [ 7.6748104999999995, 47.4107091 ], + [ 7.6740551, 47.4102988 ], + [ 7.6731548, 47.4099333 ], + [ 7.6722253, 47.409385 ], + [ 7.6715313, 47.409225 ], + [ 7.6714401, 47.4092871 ], + [ 7.6722503, 47.4097636 ], + [ 7.6722537, 47.4100492 ], + [ 7.6726763, 47.4101845 ], + [ 7.6724423999999996, 47.4105758 ], + [ 7.6734057, 47.4108062 ], + [ 7.6730801, 47.4111412 ], + [ 7.6725046, 47.4109698 ], + [ 7.6721689, 47.4110238 ], + [ 7.6711686, 47.4107761 ], + [ 7.6706059, 47.4106497 ], + [ 7.6703048, 47.4107759 ], + [ 7.6692341, 47.4104504 ], + [ 7.6692246, 47.4106323 ], + [ 7.6693418, 47.410783 ], + [ 7.6697541000000005, 47.4109599 ], + [ 7.6709148, 47.4111999 ], + [ 7.6719259, 47.4113566 ], + [ 7.6729326, 47.4115022 ], + [ 7.6742479, 47.4115005 ], + [ 7.6748556, 47.4114688 ], + [ 7.6748636999999995, 47.4114683 ], + [ 7.6752562, 47.411765 ], + [ 7.6752994999999995, 47.411797 ], + [ 7.6757553, 47.4114619 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns071", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Widenholz", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Widenholz", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Widenholz", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Widenholz", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8990562, 47.344018 ], + [ 7.8990496, 47.3438768 ], + [ 7.8990321, 47.3437361 ], + [ 7.8990037, 47.3435961 ], + [ 7.8989647, 47.3434574 ], + [ 7.898915, 47.3433202 ], + [ 7.8988548, 47.343185 ], + [ 7.8987842, 47.3430521 ], + [ 7.8987036, 47.3429219 ], + [ 7.898613, 47.3427948 ], + [ 7.8985128, 47.342671 ], + [ 7.8984031, 47.342551 ], + [ 7.8982844, 47.3424351 ], + [ 7.8981569, 47.3423235 ], + [ 7.898021, 47.3422166 ], + [ 7.8978771, 47.3421147 ], + [ 7.8977255, 47.3420181 ], + [ 7.8975667, 47.341927 ], + [ 7.8974011, 47.3418416 ], + [ 7.8972291, 47.3417623 ], + [ 7.8970513, 47.3416892 ], + [ 7.8968679999999996, 47.3416225 ], + [ 7.8966799, 47.3415624 ], + [ 7.8964875, 47.3415091 ], + [ 7.8962912, 47.3414627 ], + [ 7.8960915, 47.3414234 ], + [ 7.8958892, 47.3413912 ], + [ 7.8956846, 47.3413663 ], + [ 7.8954784, 47.3413487 ], + [ 7.8952711, 47.3413384 ], + [ 7.8950633, 47.3413355 ], + [ 7.8948556, 47.3413401 ], + [ 7.8946485, 47.341352 ], + [ 7.8944426, 47.3413712 ], + [ 7.8942385, 47.3413978 ], + [ 7.8940367, 47.3414315 ], + [ 7.8938378, 47.3414724 ], + [ 7.8936422, 47.3415204 ], + [ 7.8934507, 47.3415752 ], + [ 7.8932636, 47.3416367 ], + [ 7.8930816, 47.3417049 ], + [ 7.892905, 47.3417794 ], + [ 7.8927344, 47.3418601 ], + [ 7.8925702, 47.3419467 ], + [ 7.892413, 47.3420391 ], + [ 7.8922631, 47.3421369 ], + [ 7.8921209, 47.3422399 ], + [ 7.8919868, 47.3423479 ], + [ 7.8918612, 47.3424605 ], + [ 7.8917445, 47.3425773 ], + [ 7.8916369, 47.3426982 ], + [ 7.8915388, 47.3428227 ], + [ 7.8914504, 47.3429506 ], + [ 7.891372, 47.3430814 ], + [ 7.8913037, 47.3432149 ], + [ 7.8912458, 47.3433505 ], + [ 7.8911985, 47.3434881 ], + [ 7.8911618, 47.3436271 ], + [ 7.8911358, 47.3437673 ], + [ 7.8911207, 47.3439082 ], + [ 7.8911165, 47.3440494 ], + [ 7.8911231, 47.3441906 ], + [ 7.8911406, 47.3443314 ], + [ 7.8911689, 47.3444713 ], + [ 7.891208, 47.3446101 ], + [ 7.8912577, 47.3447473 ], + [ 7.8913177999999995, 47.3448825 ], + [ 7.8913884, 47.3450154 ], + [ 7.891469, 47.3451456 ], + [ 7.8915596, 47.3452727 ], + [ 7.8916598, 47.3453965 ], + [ 7.8917694, 47.3455165 ], + [ 7.8918881, 47.3456325 ], + [ 7.8920156, 47.345744 ], + [ 7.8921515, 47.3458509 ], + [ 7.8922954, 47.3459528 ], + [ 7.892447, 47.3460495 ], + [ 7.8926058, 47.3461406 ], + [ 7.8927715, 47.3462259 ], + [ 7.8929434, 47.3463053 ], + [ 7.8931213, 47.3463784 ], + [ 7.8933045, 47.3464451 ], + [ 7.8934926, 47.3465052 ], + [ 7.8936851, 47.3465585 ], + [ 7.8938815, 47.3466049 ], + [ 7.8940811, 47.3466442 ], + [ 7.8942835, 47.3466764 ], + [ 7.8944881, 47.3467013 ], + [ 7.8946943, 47.3467189 ], + [ 7.8949016, 47.3467292 ], + [ 7.8951094, 47.3467321 ], + [ 7.8953172, 47.3467276 ], + [ 7.8955243, 47.3467156 ], + [ 7.8957302, 47.3466964 ], + [ 7.8959343, 47.3466698 ], + [ 7.8961362, 47.3466361 ], + [ 7.8963351, 47.3465951 ], + [ 7.8965306, 47.3465472 ], + [ 7.8967222, 47.3464924 ], + [ 7.8969093, 47.3464308 ], + [ 7.8970914, 47.3463627 ], + [ 7.8972679, 47.3462882 ], + [ 7.8974385, 47.3462075 ], + [ 7.8976027, 47.3461208 ], + [ 7.89776, 47.3460285 ], + [ 7.8979099, 47.3459306 ], + [ 7.8980521, 47.3458276 ], + [ 7.8981861, 47.3457196 ], + [ 7.8983117, 47.3456071 ], + [ 7.8984284, 47.3454902 ], + [ 7.898536, 47.3453693 ], + [ 7.8986341, 47.3452448 ], + [ 7.8987225, 47.3451169 ], + [ 7.8988009, 47.3449861 ], + [ 7.8988691, 47.3448526 ], + [ 7.898927, 47.3447169 ], + [ 7.8989743, 47.3445794 ], + [ 7.899011, 47.3444403 ], + [ 7.8990369, 47.3443002 ], + [ 7.899052, 47.3441593 ], + [ 7.8990562, 47.344018 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "OLT0001", + "country" : "CHE", + "name" : [ + { + "text" : "Untersuchungsgefängnis Olten", + "lang" : "de-CH" + }, + { + "text" : "Untersuchungsgefängnis Olten", + "lang" : "fr-CH" + }, + { + "text" : "Untersuchungsgefängnis Olten", + "lang" : "it-CH" + }, + { + "text" : "Untersuchungsgefängnis Olten", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Justizvollzug des Kantons Solothurn", + "lang" : "de-CH" + }, + { + "text" : "Amt für Justizvollzug des Kantons Solothurn", + "lang" : "fr-CH" + }, + { + "text" : "Amt für Justizvollzug des Kantons Solothurn", + "lang" : "it-CH" + }, + { + "text" : "Amt für Justizvollzug des Kantons Solothurn", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Amtsleitung", + "lang" : "de-CH" + }, + { + "text" : "Direction de l'office", + "lang" : "fr-CH" + }, + { + "text" : "Direzione dell'ufficio", + "lang" : "it-CH" + }, + { + "text" : "Head of Division", + "lang" : "en-GB" + } + ], + "siteURL" : "https://so.ch/verwaltung/departement-des-innern/amt-fuer-justizvollzug/", + "email" : "ajuv@ddi.so.ch", + "phone" : "0041326276336", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.0127103, 46.3782321 ], + [ 7.0131147, 46.3790396 ], + [ 7.0149874, 46.3799102 ], + [ 7.0158954, 46.379973 ], + [ 7.0176527, 46.3791421 ], + [ 7.018259, 46.378905 ], + [ 7.0193847, 46.3787293 ], + [ 7.0201875, 46.3782834 ], + [ 7.0211026, 46.3774205 ], + [ 7.0225659, 46.3767719 ], + [ 7.0228076, 46.3766162 ], + [ 7.0228988, 46.3764196 ], + [ 7.0229307, 46.3761552 ], + [ 7.0228497, 46.3758751 ], + [ 7.0227475, 46.3756463 ], + [ 7.0225876, 46.3754703 ], + [ 7.0216148, 46.3753929 ], + [ 7.0209511, 46.3746591 ], + [ 7.020935, 46.3738836 ], + [ 7.0213544, 46.3727508 ], + [ 7.0219879, 46.3718266 ], + [ 7.0219261, 46.371588 ], + [ 7.0210999, 46.3722128 ], + [ 7.0204899, 46.3727782 ], + [ 7.0188441, 46.373176 ], + [ 7.0183825, 46.3742115 ], + [ 7.0180839, 46.375002 ], + [ 7.0166606, 46.3760204 ], + [ 7.0155967, 46.3766138 ], + [ 7.0144272, 46.3769242 ], + [ 7.0133638, 46.3776075 ], + [ 7.0127103, 46.3782321 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00011", + "country" : "CHE", + "name" : [ + { + "text" : "Tour de Famelon", + "lang" : "de-CH" + }, + { + "text" : "Tour de Famelon", + "lang" : "fr-CH" + }, + { + "text" : "Tour de Famelon", + "lang" : "it-CH" + }, + { + "text" : "Tour de Famelon", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "startDateTime" : "2024-11-15T00:00:00+01:00", + "endDateTime" : "2025-04-15T00:00:00+02:00" + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Generaldirektion für Umwelt", + "lang" : "de-CH" + }, + { + "text" : "Direction générale de l'environnement", + "lang" : "fr-CH" + }, + { + "text" : "Direzione generale dell'Ambiente", + "lang" : "it-CH" + }, + { + "text" : "Environment Department", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.dge@vd.ch", + "phone" : "0041213164422", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8822799, 47.4688062 ], + [ 7.8822883, 47.4688061 ], + [ 7.8823221, 47.4688061 ], + [ 7.882356, 47.4688068 ], + [ 7.8823897, 47.4688081 ], + [ 7.8824235, 47.4688099 ], + [ 7.8824571, 47.4688123 ], + [ 7.8824907, 47.4688153 ], + [ 7.8825240999999995, 47.4688189 ], + [ 7.8825574, 47.468823 ], + [ 7.8825904, 47.4688278 ], + [ 7.8826234, 47.4688331 ], + [ 7.8826561, 47.4688389 ], + [ 7.8829083, 47.4688909 ], + [ 7.883046, 47.4689226 ], + [ 7.8834034, 47.4690211 ], + [ 7.8835152, 47.4690426 ], + [ 7.8836105, 47.4690613 ], + [ 7.8836202, 47.4690643 ], + [ 7.8836297, 47.4690677 ], + [ 7.8836388, 47.4690714 ], + [ 7.8836476, 47.4690756 ], + [ 7.883656, 47.4690801 ], + [ 7.8836639, 47.4690849 ], + [ 7.8836714, 47.4690901 ], + [ 7.8836835, 47.4690966 ], + [ 7.883696, 47.4691026 ], + [ 7.8837089, 47.4691083 ], + [ 7.8837221, 47.4691135 ], + [ 7.8837357, 47.4691184 ], + [ 7.8837496, 47.4691228 ], + [ 7.8837638, 47.4691268 ], + [ 7.8840274, 47.4691784 ], + [ 7.8840512, 47.4691821 ], + [ 7.8840752, 47.4691854 ], + [ 7.8840993, 47.4691882 ], + [ 7.8841235, 47.4691906 ], + [ 7.8841478, 47.4691925 ], + [ 7.8841721, 47.4691939 ], + [ 7.8844256999999995, 47.4692111 ], + [ 7.8845221, 47.4692126 ], + [ 7.8846185, 47.4692136 ], + [ 7.8847148, 47.4692141 ], + [ 7.8848112, 47.469214 ], + [ 7.8849076, 47.4692134 ], + [ 7.885004, 47.4692123 ], + [ 7.8851749, 47.4691979 ], + [ 7.8852466, 47.4691976 ], + [ 7.8853494, 47.4692075 ], + [ 7.885607, 47.4692045 ], + [ 7.8859715, 47.4692063 ], + [ 7.8862088, 47.4692163 ], + [ 7.8866361, 47.4692413 ], + [ 7.8868998999999995, 47.4692747 ], + [ 7.8874257, 47.4694073 ], + [ 7.8878278, 47.4695253 ], + [ 7.8878774, 47.469534 ], + [ 7.8878845, 47.4695345 ], + [ 7.8878916, 47.4695346 ], + [ 7.8878987, 47.4695342 ], + [ 7.8879057, 47.4695332 ], + [ 7.8879125, 47.4695318 ], + [ 7.887919, 47.4695298 ], + [ 7.8879252, 47.4695274 ], + [ 7.8879858, 47.4694981 ], + [ 7.8880375, 47.4694867 ], + [ 7.8881179, 47.469468 ], + [ 7.8881884, 47.4694508 ], + [ 7.8882908, 47.4694241 ], + [ 7.8883987, 47.4693971 ], + [ 7.8885213, 47.469367 ], + [ 7.8885499, 47.46936 ], + [ 7.8885673, 47.4693559 ], + [ 7.8885835, 47.4693532 ], + [ 7.8885973, 47.4693517 ], + [ 7.8886182, 47.4693509 ], + [ 7.8886401, 47.4693512 ], + [ 7.8886637, 47.4693522 ], + [ 7.8886879, 47.469354 ], + [ 7.8887149999999995, 47.4693571 ], + [ 7.8887385, 47.4693608 ], + [ 7.8887667, 47.4693665 ], + [ 7.8887931, 47.469373 ], + [ 7.8888106, 47.4693804 ], + [ 7.8888435999999995, 47.4693953 ], + [ 7.8888795, 47.4694128 ], + [ 7.8889086, 47.4694282 ], + [ 7.8889163, 47.4694317 ], + [ 7.8889315, 47.4694383 ], + [ 7.8889437000000004, 47.4694433 ], + [ 7.8889569999999996, 47.4694483 ], + [ 7.8889755, 47.4694545 ], + [ 7.8889903, 47.469459 ], + [ 7.8890025999999995, 47.4694624 ], + [ 7.8890169, 47.4694661 ], + [ 7.8890314, 47.4694692 ], + [ 7.8890392, 47.4694709 ], + [ 7.8890494, 47.4694729 ], + [ 7.8890776, 47.4694757 ], + [ 7.8891073, 47.4694783 ], + [ 7.8891324, 47.4694803 ], + [ 7.8891608, 47.4694821 ], + [ 7.8891819, 47.4694825 ], + [ 7.889216, 47.4694828 ], + [ 7.8892539, 47.4694827 ], + [ 7.889285, 47.4694823 ], + [ 7.8893183, 47.4694815 ], + [ 7.8893343, 47.4694797 ], + [ 7.889351, 47.469477499999996 ], + [ 7.8893687, 47.4694746 ], + [ 7.8893857, 47.4694713 ], + [ 7.8894001, 47.469468 ], + [ 7.889407, 47.4694652 ], + [ 7.889417, 47.4694606 ], + [ 7.8894234999999995, 47.469458 ], + [ 7.8894391, 47.4694401 ], + [ 7.8894629, 47.4693984 ], + [ 7.8894381, 47.4693968 ], + [ 7.8894371, 47.4694033 ], + [ 7.8894357, 47.4694116 ], + [ 7.8894321, 47.469422 ], + [ 7.8894261, 47.4694322 ], + [ 7.8894193999999995, 47.4694404 ], + [ 7.8894119, 47.4694478 ], + [ 7.8894049, 47.4694529 ], + [ 7.8893959, 47.4694576 ], + [ 7.8893845, 47.4694614 ], + [ 7.8893737, 47.4694634 ], + [ 7.8893572, 47.4694654 ], + [ 7.8893384, 47.4694677 ], + [ 7.8893189, 47.4694696 ], + [ 7.8892924, 47.4694717 ], + [ 7.8892629, 47.4694731 ], + [ 7.8892353, 47.4694736 ], + [ 7.8891997, 47.4694733 ], + [ 7.8891805, 47.4694729 ], + [ 7.889148, 47.4694704 ], + [ 7.8891194, 47.469468 ], + [ 7.8890774, 47.469464 ], + [ 7.8890489, 47.469461 ], + [ 7.8890241, 47.4694568 ], + [ 7.8890063, 47.4694522 ], + [ 7.8889869, 47.4694466 ], + [ 7.8889603, 47.4694375 ], + [ 7.8889363, 47.469428 ], + [ 7.8889157, 47.4694187 ], + [ 7.8888911, 47.4694061 ], + [ 7.8888688, 47.469393 ], + [ 7.8888549999999995, 47.4693851 ], + [ 7.888841, 47.4693781 ], + [ 7.8888273, 47.4693721 ], + [ 7.8888114, 47.469366 ], + [ 7.8887862, 47.4693581 ], + [ 7.8887691, 47.4693539 ], + [ 7.8887557, 47.4693513 ], + [ 7.8887356, 47.4693487 ], + [ 7.8887128, 47.4693461 ], + [ 7.8886875, 47.4693438 ], + [ 7.8886641, 47.4693421 ], + [ 7.8886387, 47.4693409 ], + [ 7.8886163, 47.4693404 ], + [ 7.8886037, 47.4693403 ], + [ 7.888592, 47.469341299999996 ], + [ 7.8885761, 47.4693432 ], + [ 7.8885582, 47.4693459 ], + [ 7.8885384, 47.4693497 ], + [ 7.8885156, 47.469355 ], + [ 7.8884874, 47.4693619 ], + [ 7.8884118, 47.4693807 ], + [ 7.8883282999999995, 47.4694025 ], + [ 7.8882582, 47.4694213 ], + [ 7.8881936, 47.4694374 ], + [ 7.8881296, 47.4694529 ], + [ 7.8880618, 47.4694685 ], + [ 7.8880011, 47.4694819 ], + [ 7.8879906, 47.4694842 ], + [ 7.8879225, 47.4695153 ], + [ 7.8879176, 47.4695178 ], + [ 7.8879122, 47.4695199 ], + [ 7.8879064, 47.4695214 ], + [ 7.8879003999999995, 47.4695225 ], + [ 7.8878942, 47.4695229 ], + [ 7.887888, 47.4695228 ], + [ 7.8878819, 47.4695222 ], + [ 7.8878451, 47.4695174 ], + [ 7.8874285, 47.4693969 ], + [ 7.8869041, 47.4692648 ], + [ 7.8866375, 47.4692309 ], + [ 7.8862094, 47.4692049 ], + [ 7.8859773, 47.469194 ], + [ 7.8856087, 47.4691922 ], + [ 7.8853489, 47.4691955 ], + [ 7.8852465, 47.4691881 ], + [ 7.8851748, 47.4691884 ], + [ 7.8850029, 47.4692005 ], + [ 7.8849073, 47.4692017 ], + [ 7.8848116, 47.4692022 ], + [ 7.8847159, 47.4692023 ], + [ 7.8846202, 47.4692018 ], + [ 7.8845246, 47.4692009 ], + [ 7.8844289, 47.4691993 ], + [ 7.884262, 47.4691881 ], + [ 7.8843153, 47.4688919 ], + [ 7.8843566, 47.4686288 ], + [ 7.8843607, 47.4686203 ], + [ 7.8842934, 47.4685823 ], + [ 7.8841924, 47.4685179 ], + [ 7.8840961, 47.4684864 ], + [ 7.8840683, 47.4684848 ], + [ 7.884048, 47.4684802 ], + [ 7.8840274, 47.4684761 ], + [ 7.8840126, 47.468474 ], + [ 7.8839977, 47.4684724 ], + [ 7.8839827, 47.4684714 ], + [ 7.8839676, 47.468471 ], + [ 7.8839524999999995, 47.4684712 ], + [ 7.8839375, 47.4684721 ], + [ 7.8839226, 47.4684735 ], + [ 7.8839095, 47.4684791 ], + [ 7.8838644, 47.4684899 ], + [ 7.8837717, 47.4685436 ], + [ 7.8837294, 47.4685745 ], + [ 7.8837043, 47.4685927 ], + [ 7.8836486, 47.4686183 ], + [ 7.883633, 47.4686183 ], + [ 7.8836186, 47.4686229 ], + [ 7.8836037999999995, 47.468627 ], + [ 7.8835888, 47.4686306 ], + [ 7.8835733999999995, 47.4686336 ], + [ 7.8835579, 47.468636 ], + [ 7.8835422, 47.4686378 ], + [ 7.8835263, 47.468639 ], + [ 7.8835104, 47.4686397 ], + [ 7.8834655, 47.4686264 ], + [ 7.8834474, 47.4686241 ], + [ 7.8834291, 47.4686229 ], + [ 7.8834107, 47.4686228 ], + [ 7.8833924, 47.468624 ], + [ 7.8833743, 47.4686262 ], + [ 7.8833566, 47.4686296 ], + [ 7.8833394, 47.4686341 ], + [ 7.8833097, 47.4686489 ], + [ 7.8832816999999995, 47.4686652 ], + [ 7.8832701, 47.4686768 ], + [ 7.8832582, 47.4686837 ], + [ 7.8832469, 47.4686911 ], + [ 7.8832362, 47.4686989 ], + [ 7.8832262, 47.4687071 ], + [ 7.8832185, 47.4687158 ], + [ 7.88321, 47.4687242 ], + [ 7.8832007, 47.4687322 ], + [ 7.8831906, 47.4687397 ], + [ 7.8831799, 47.4687468 ], + [ 7.8831685, 47.4687534 ], + [ 7.8831565, 47.4687594 ], + [ 7.8831439, 47.4687649 ], + [ 7.8831308, 47.4687699 ], + [ 7.8831173, 47.4687743 ], + [ 7.8831033999999995, 47.468778 ], + [ 7.8830891, 47.4687811 ], + [ 7.8830047, 47.4687804 ], + [ 7.8829591, 47.4687733 ], + [ 7.8829562, 47.4687799 ], + [ 7.8829434, 47.4688096 ], + [ 7.8829132, 47.4688797 ], + [ 7.8826611, 47.4688277 ], + [ 7.8826278, 47.4688218 ], + [ 7.8825944, 47.4688164 ], + [ 7.8825607, 47.4688116 ], + [ 7.8825269, 47.4688074 ], + [ 7.8824929, 47.4688037 ], + [ 7.8824588, 47.4688007 ], + [ 7.8824246, 47.4687982 ], + [ 7.8823904, 47.4687964 ], + [ 7.882356, 47.4687951 ], + [ 7.8823216, 47.4687945 ], + [ 7.8822873, 47.4687944 ], + [ 7.8822787, 47.4687945 ], + [ 7.8822799, 47.4688062 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns237", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Wischberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Wischberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Wischberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Wischberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.9902315, 47.1909193 ], + [ 8.990222, 47.1907782 ], + [ 8.9902016, 47.1906376 ], + [ 8.9901705, 47.1904979 ], + [ 8.9901287, 47.1903595 ], + [ 8.9900764, 47.1902229 ], + [ 8.9900136, 47.1900882 ], + [ 8.9899406, 47.189956 ], + [ 8.9898575, 47.1898266 ], + [ 8.9897646, 47.1897003 ], + [ 8.9896621, 47.1895775 ], + [ 8.9895504, 47.1894585 ], + [ 8.9894296, 47.1893437 ], + [ 8.9893003, 47.1892334 ], + [ 8.9891626, 47.1891278 ], + [ 8.989017, 47.1890272 ], + [ 8.9888639, 47.188932 ], + [ 8.9887037, 47.1888424 ], + [ 8.9885368, 47.1887587 ], + [ 8.9883637, 47.188681 ], + [ 8.9881849, 47.1886095 ], + [ 8.9880009, 47.1885446 ], + [ 8.9878121, 47.1884863 ], + [ 8.9876191, 47.1884348 ], + [ 8.9874224, 47.1883903 ], + [ 8.987222599999999, 47.1883529 ], + [ 8.9870202, 47.1883226 ], + [ 8.9868157, 47.1882996 ], + [ 8.9866098, 47.1882839 ], + [ 8.9864029, 47.1882756 ], + [ 8.9861957, 47.1882747 ], + [ 8.9859887, 47.1882812 ], + [ 8.9857824, 47.1882951 ], + [ 8.9855775, 47.1883162 ], + [ 8.9853746, 47.1883447 ], + [ 8.985174, 47.1883804 ], + [ 8.9849765, 47.1884232 ], + [ 8.984782599999999, 47.188473 ], + [ 8.9845927, 47.1885296 ], + [ 8.9844075, 47.1885929 ], + [ 8.9842273, 47.1886628 ], + [ 8.9840528, 47.1887389 ], + [ 8.9838844, 47.1888212 ], + [ 8.9837225, 47.1889094 ], + [ 8.9835676, 47.1890033 ], + [ 8.9834201, 47.1891025 ], + [ 8.9832804, 47.1892069 ], + [ 8.983149, 47.1893161 ], + [ 8.9830261, 47.1894298 ], + [ 8.9829121, 47.1895478 ], + [ 8.9828073, 47.1896697 ], + [ 8.982712, 47.1897952 ], + [ 8.9826265, 47.1899238 ], + [ 8.982551, 47.1900554 ], + [ 8.9824856, 47.1901895 ], + [ 8.9824307, 47.1903257 ], + [ 8.9823863, 47.1904637 ], + [ 8.9823525, 47.1906031 ], + [ 8.9823295, 47.1907435 ], + [ 8.9823173, 47.1908845 ], + [ 8.982316, 47.1910258 ], + [ 8.9823255, 47.1911669 ], + [ 8.9823458, 47.1913075 ], + [ 8.9823769, 47.1914471 ], + [ 8.9824187, 47.1915855 ], + [ 8.982471, 47.1917222 ], + [ 8.9825338, 47.1918569 ], + [ 8.9826068, 47.1919891 ], + [ 8.9826898, 47.1921185 ], + [ 8.9827827, 47.1922448 ], + [ 8.9828852, 47.1923676 ], + [ 8.9829969, 47.1924866 ], + [ 8.9831177, 47.1926014 ], + [ 8.983247, 47.1927118 ], + [ 8.9833847, 47.1928174 ], + [ 8.9835303, 47.1929179 ], + [ 8.9836834, 47.1930131 ], + [ 8.9838436, 47.1931027 ], + [ 8.9840105, 47.1931865 ], + [ 8.9841836, 47.1932642 ], + [ 8.9843624, 47.1933356 ], + [ 8.9845465, 47.1934006 ], + [ 8.9847352, 47.1934589 ], + [ 8.9849283, 47.1935104 ], + [ 8.9851249, 47.1935549 ], + [ 8.9853248, 47.1935923 ], + [ 8.9855272, 47.1936226 ], + [ 8.9857317, 47.1936456 ], + [ 8.9859377, 47.1936613 ], + [ 8.9861446, 47.1936696 ], + [ 8.9863518, 47.1936705 ], + [ 8.9865589, 47.193664 ], + [ 8.9867651, 47.1936501 ], + [ 8.98697, 47.1936289 ], + [ 8.987173, 47.1936005 ], + [ 8.9873736, 47.1935648 ], + [ 8.9875711, 47.193522 ], + [ 8.987765, 47.1934722 ], + [ 8.9879549, 47.1934156 ], + [ 8.9881402, 47.1933523 ], + [ 8.9883203, 47.1932824 ], + [ 8.9884949, 47.1932062 ], + [ 8.9886633, 47.1931239 ], + [ 8.9888252, 47.1930357 ], + [ 8.9889801, 47.1929419 ], + [ 8.9891276, 47.1928426 ], + [ 8.9892673, 47.1927382 ], + [ 8.9893987, 47.192629 ], + [ 8.9895216, 47.1925153 ], + [ 8.9896356, 47.1923973 ], + [ 8.9897404, 47.1922754 ], + [ 8.9898357, 47.1921499 ], + [ 8.9899212, 47.1920212 ], + [ 8.9899967, 47.1918897 ], + [ 8.990062, 47.1917556 ], + [ 8.9901169, 47.1916194 ], + [ 8.9901613, 47.1914814 ], + [ 8.990195, 47.191342 ], + [ 8.990218, 47.1912016 ], + [ 8.9902302, 47.1910606 ], + [ 8.9902315, 47.1909193 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0012", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Benken", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Benken", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Benken", + "lang" : "it-CH" + }, + { + "text" : "Substation Benken", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.821197699999999, 46.548967 ], + [ 9.8322213, 46.5625806 ], + [ 9.8339638, 46.5646056 ], + [ 9.8358578, 46.5665648 ], + [ 9.837898, 46.5684529 ], + [ 9.8400789, 46.5702647 ], + [ 9.8423943, 46.5719954 ], + [ 9.8448381, 46.57364 ], + [ 9.8474035, 46.5751941 ], + [ 9.8500835, 46.5766534 ], + [ 9.8528707, 46.5780139 ], + [ 9.8557575, 46.579272 ], + [ 9.8587359, 46.580424 ], + [ 9.8617978, 46.5814669 ], + [ 9.8649348, 46.5823978 ], + [ 9.8681382, 46.5832141 ], + [ 9.8713993, 46.5839136 ], + [ 9.8747091, 46.5844944 ], + [ 9.8780586, 46.5849548 ], + [ 9.8814384, 46.5852937 ], + [ 9.8848393, 46.58551 ], + [ 9.888252, 46.5856032 ], + [ 9.8916671, 46.5855731 ], + [ 9.8950753, 46.5854196 ], + [ 9.8984671, 46.5851433 ], + [ 9.9018332, 46.5847449 ], + [ 9.9051644, 46.5842255 ], + [ 9.9084515, 46.5835864 ], + [ 9.9116855, 46.5828296 ], + [ 9.9148576, 46.581957 ], + [ 9.9179589, 46.580971 ], + [ 9.9209811, 46.5798744 ], + [ 9.9239157, 46.5786702 ], + [ 9.9267548, 46.5773616 ], + [ 9.9294905, 46.5759523 ], + [ 9.9321154, 46.5744461 ], + [ 9.9346222, 46.5728473 ], + [ 9.9370042, 46.57116 ], + [ 9.9392546, 46.5693891 ], + [ 9.9413674, 46.5675394 ], + [ 9.9433368, 46.5656158 ], + [ 9.9451575, 46.5636238 ], + [ 9.9468243, 46.5615688 ], + [ 9.9483328, 46.5594564 ], + [ 9.9496789, 46.5572924 ], + [ 9.9508588, 46.5550828 ], + [ 9.9518694, 46.5528336 ], + [ 9.9527079, 46.5505509 ], + [ 9.953372, 46.5482412 ], + [ 9.95386, 46.5459106 ], + [ 9.9541705, 46.5435656 ], + [ 9.9543026, 46.5412126 ], + [ 9.9542561, 46.538858 ], + [ 9.9540311, 46.5365084 ], + [ 9.9536283, 46.53417 ], + [ 9.9530487, 46.5318495 ], + [ 9.9522939, 46.529553 ], + [ 9.9513662, 46.527287 ], + [ 9.950268, 46.5250575 ], + [ 9.9490023, 46.5228708 ], + [ 9.9475727, 46.5207328 ], + [ 9.945983, 46.5186493 ], + [ 9.9349398, 46.5050467 ], + [ 9.9331953, 46.5030233 ], + [ 9.9313, 46.5010657 ], + [ 9.9292591, 46.4991792 ], + [ 9.9270782, 46.4973691 ], + [ 9.9247632, 46.4956402 ], + [ 9.9223205, 46.4939973 ], + [ 9.9197568, 46.4924448 ], + [ 9.9170791, 46.4909872 ], + [ 9.9142947, 46.4896282 ], + [ 9.9114114, 46.4883717 ], + [ 9.9084369, 46.487221 ], + [ 9.9053794, 46.4861794 ], + [ 9.902247299999999, 46.4852496 ], + [ 9.8990492, 46.4844342 ], + [ 9.8957937, 46.4837355 ], + [ 9.8924898, 46.4831553 ], + [ 9.8891466, 46.4826953 ], + [ 9.8857731, 46.4823567 ], + [ 9.8823786, 46.4821404 ], + [ 9.8789725, 46.482047 ], + [ 9.8755639, 46.4820767 ], + [ 9.8721622, 46.4822296 ], + [ 9.8687767, 46.4825051 ], + [ 9.8654167, 46.4829026 ], + [ 9.8620913, 46.4834209 ], + [ 9.8588097, 46.4840585 ], + [ 9.8555809, 46.4848139 ], + [ 9.8524136, 46.4856849 ], + [ 9.8493165, 46.486669 ], + [ 9.8462981, 46.4877638 ], + [ 9.8433666, 46.488966 ], + [ 9.8405302, 46.4902725 ], + [ 9.8377964, 46.4916797 ], + [ 9.835173, 46.4931836 ], + [ 9.8326669, 46.4947803 ], + [ 9.8302851, 46.4964654 ], + [ 9.8280341, 46.4982342 ], + [ 9.8259201, 46.5000818 ], + [ 9.8239489, 46.5020033 ], + [ 9.8221259, 46.5039934 ], + [ 9.8204561, 46.5060466 ], + [ 9.8189441, 46.5081573 ], + [ 9.8175941, 46.5103197 ], + [ 9.8164097, 46.512528 ], + [ 9.8153942, 46.514776 ], + [ 9.8145505, 46.5170576 ], + [ 9.8138808, 46.5193666 ], + [ 9.8133871, 46.5216965 ], + [ 9.8130706, 46.5240412 ], + [ 9.8129324, 46.526394 ], + [ 9.8129727, 46.5287486 ], + [ 9.8131915, 46.5310986 ], + [ 9.8135883, 46.5334374 ], + [ 9.8141619, 46.5357586 ], + [ 9.8149109, 46.538056 ], + [ 9.8158331, 46.5403232 ], + [ 9.8169261, 46.5425539 ], + [ 9.8181869, 46.5447421 ], + [ 9.819612, 46.5468817 ], + [ 9.821197699999999, 46.548967 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZS001", + "country" : "CHE", + "name" : [ + { + "text" : "LSZS Samedan", + "lang" : "de-CH" + }, + { + "text" : "LSZS Samedan", + "lang" : "fr-CH" + }, + { + "text" : "LSZS Samedan", + "lang" : "it-CH" + }, + { + "text" : "LSZS Samedan", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Engadin Airport", + "lang" : "de-CH" + }, + { + "text" : "Engadin Airport", + "lang" : "fr-CH" + }, + { + "text" : "Engadin Airport", + "lang" : "it-CH" + }, + { + "text" : "Engadin Airport", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "GL Safety Officer", + "lang" : "de-CH" + }, + { + "text" : "GL Safety Officer", + "lang" : "fr-CH" + }, + { + "text" : "GL Safety Officer", + "lang" : "it-CH" + }, + { + "text" : "GL Safety Officer", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.engadin-airport.ch/en/drone/", + "email" : "info@engadin-airport.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.2785002, 46.9690722 ], + [ 7.2784878, 46.9687191 ], + [ 7.2784484, 46.968367 ], + [ 7.2783821, 46.9680167 ], + [ 7.2782891, 46.9676693 ], + [ 7.2781697, 46.9673257 ], + [ 7.2780241, 46.9669868 ], + [ 7.2778529, 46.9666536 ], + [ 7.2776565, 46.966327 ], + [ 7.2774353, 46.9660079 ], + [ 7.2771901, 46.9656972 ], + [ 7.2769214, 46.9653957 ], + [ 7.2766301, 46.9651042 ], + [ 7.2763168, 46.9648235 ], + [ 7.2759826, 46.9645544 ], + [ 7.2756282, 46.9642977 ], + [ 7.2752547, 46.9640541 ], + [ 7.2748631, 46.9638241 ], + [ 7.2744545, 46.9636085 ], + [ 7.2740299, 46.9634079 ], + [ 7.2735906, 46.9632227 ], + [ 7.2731377, 46.9630535 ], + [ 7.2726726, 46.9629008 ], + [ 7.2721964, 46.9627649 ], + [ 7.2717104, 46.9626463 ], + [ 7.2712161, 46.9625452 ], + [ 7.2707147, 46.962462 ], + [ 7.2702076, 46.9623969 ], + [ 7.2696963, 46.9623501 ], + [ 7.269182, 46.9623216 ], + [ 7.2686663, 46.9623116 ], + [ 7.2681506, 46.9623201 ], + [ 7.2676362, 46.962347 ], + [ 7.2671246, 46.9623923 ], + [ 7.2666171, 46.9624559 ], + [ 7.2661152, 46.9625376 ], + [ 7.2656202, 46.9626372 ], + [ 7.2651335, 46.9627544 ], + [ 7.2646564, 46.9628888 ], + [ 7.2641903, 46.9630401 ], + [ 7.2637363, 46.963208 ], + [ 7.2632958, 46.9633918 ], + [ 7.26287, 46.9635912 ], + [ 7.26246, 46.9638056 ], + [ 7.2620669, 46.9640344 ], + [ 7.2616919, 46.9642769 ], + [ 7.2613359, 46.9645326 ], + [ 7.2609999, 46.9648006 ], + [ 7.2606849, 46.9650804 ], + [ 7.2603917, 46.965371 ], + [ 7.2601211, 46.9656717 ], + [ 7.2598739, 46.9659817 ], + [ 7.2596507, 46.9663002 ], + [ 7.2594522, 46.9666262 ], + [ 7.2592789, 46.9669588 ], + [ 7.2591312, 46.9672973 ], + [ 7.2590096, 46.9676405 ], + [ 7.2589144, 46.9679876 ], + [ 7.2588459, 46.9683377 ], + [ 7.2588042, 46.9686897 ], + [ 7.2587895, 46.9690428 ], + [ 7.2588018, 46.9693959 ], + [ 7.2588411, 46.9697481 ], + [ 7.2589073, 46.9700984 ], + [ 7.2590001, 46.9704458 ], + [ 7.2591194, 46.9707894 ], + [ 7.2592649, 46.9711283 ], + [ 7.259436, 46.9714615 ], + [ 7.2596323, 46.9717881 ], + [ 7.2598534, 46.9721073 ], + [ 7.2600986, 46.972418 ], + [ 7.2603672, 46.9727196 ], + [ 7.2606585, 46.9730112 ], + [ 7.2609717, 46.9732919 ], + [ 7.2613059, 46.9735609 ], + [ 7.2616603, 46.9738177 ], + [ 7.2620338, 46.9740614 ], + [ 7.2624254, 46.9742914 ], + [ 7.262834, 46.974507 ], + [ 7.2632587, 46.9747078 ], + [ 7.263698, 46.974893 ], + [ 7.264151, 46.975062199999996 ], + [ 7.2646162, 46.975215 ], + [ 7.2650925, 46.9753509 ], + [ 7.2655785999999996, 46.9754695 ], + [ 7.2660730000000004, 46.9755706 ], + [ 7.2665745, 46.9756538 ], + [ 7.2670817, 46.9757189 ], + [ 7.2675932, 46.9757658 ], + [ 7.2681075, 46.9757943 ], + [ 7.2686234, 46.9758043 ], + [ 7.2691393, 46.9757958 ], + [ 7.2696538, 46.9757688 ], + [ 7.2701655, 46.9757235 ], + [ 7.2706731, 46.9756599 ], + [ 7.2711752, 46.9755782 ], + [ 7.2716703, 46.9754786 ], + [ 7.2721571, 46.9753614 ], + [ 7.2726342, 46.9752269 ], + [ 7.2731005, 46.9750756 ], + [ 7.2735545, 46.9749077 ], + [ 7.273995, 46.9747238 ], + [ 7.2744209, 46.9745243 ], + [ 7.2748308999999995, 46.9743099 ], + [ 7.275224, 46.9740811 ], + [ 7.2755991, 46.9738385 ], + [ 7.2759551, 46.9735828 ], + [ 7.276291, 46.9733147 ], + [ 7.276606, 46.973035 ], + [ 7.2768991, 46.9727443 ], + [ 7.2771697, 46.9724435 ], + [ 7.2774168, 46.9721335 ], + [ 7.2776399, 46.971815 ], + [ 7.2778384, 46.971489 ], + [ 7.2780116, 46.9711563 ], + [ 7.2781592, 46.9708178 ], + [ 7.2782807, 46.9704746 ], + [ 7.2783757, 46.9701274 ], + [ 7.2784441, 46.9697773 ], + [ 7.2784857, 46.9694253 ], + [ 7.2785002, 46.9690722 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "ENSI004", + "country" : "CHE", + "name" : [ + { + "text" : "KKA Mühleberg", + "lang" : "de-CH" + }, + { + "text" : "KKA Mühleberg", + "lang" : "fr-CH" + }, + { + "text" : "KKA Mühleberg", + "lang" : "it-CH" + }, + { + "text" : "KKA Mühleberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kernkraftwerk Mühleberg", + "lang" : "de-CH" + }, + { + "text" : "Kernkraftwerk Mühleberg", + "lang" : "fr-CH" + }, + { + "text" : "Kernkraftwerk Mühleberg", + "lang" : "it-CH" + }, + { + "text" : "Kernkraftwerk Mühleberg", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Sicherungsbeauftragter", + "lang" : "de-CH" + }, + { + "text" : "Sicherungsbeauftragter", + "lang" : "fr-CH" + }, + { + "text" : "Sicherungsbeauftragter", + "lang" : "it-CH" + }, + { + "text" : "Sicherungsbeauftragter", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Dieter Blattner", + "lang" : "de-CH" + }, + { + "text" : "Dieter Blattner", + "lang" : "fr-CH" + }, + { + "text" : "Dieter Blattner", + "lang" : "it-CH" + }, + { + "text" : "Dieter Blattner", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.bkw.ch", + "email" : "info@bkw.ch", + "phone" : "0041584777001", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.5673684, 46.6645423 ], + [ 9.5673575, 46.6644012 ], + [ 9.5673358, 46.6642607 ], + [ 9.5673035, 46.6641212 ], + [ 9.567260600000001, 46.663983 ], + [ 9.5672073, 46.6638466 ], + [ 9.5671437, 46.6637123 ], + [ 9.56707, 46.6635804 ], + [ 9.5669864, 46.6634514 ], + [ 9.566893, 46.6633256 ], + [ 9.5667903, 46.6632033 ], + [ 9.5666783, 46.6630849 ], + [ 9.5665575, 46.6629706 ], + [ 9.5664282, 46.6628609 ], + [ 9.5662908, 46.662756 ], + [ 9.5661455, 46.6626562 ], + [ 9.5659929, 46.6625618 ], + [ 9.5658333, 46.662473 ], + [ 9.5656672, 46.66239 ], + [ 9.565494900000001, 46.6623132 ], + [ 9.5653171, 46.6622427 ], + [ 9.5651342, 46.6621786 ], + [ 9.5649466, 46.6621213 ], + [ 9.564755, 46.6620708 ], + [ 9.5645598, 46.6620272 ], + [ 9.5643615, 46.6619908 ], + [ 9.5641607, 46.6619616 ], + [ 9.563958, 46.6619396 ], + [ 9.5637539, 46.6619249 ], + [ 9.563549, 46.6619177 ], + [ 9.5633437, 46.6619178 ], + [ 9.5631388, 46.6619253 ], + [ 9.5629347, 46.6619402 ], + [ 9.5627321, 46.6619624 ], + [ 9.5625314, 46.661992 ], + [ 9.5623332, 46.6620286 ], + [ 9.5621381, 46.6620724 ], + [ 9.5619466, 46.6621232 ], + [ 9.561759200000001, 46.6621807 ], + [ 9.5615764, 46.662245 ], + [ 9.5613988, 46.6623157 ], + [ 9.5612268, 46.6623928 ], + [ 9.5610609, 46.662476 ], + [ 9.5609015, 46.662565 ], + [ 9.5607491, 46.6626596 ], + [ 9.560604099999999, 46.6627596 ], + [ 9.560467, 46.6628647 ], + [ 9.5603379, 46.6629745 ], + [ 9.5602175, 46.6630889 ], + [ 9.5601059, 46.6632075 ], + [ 9.5600034, 46.6633299 ], + [ 9.5599104, 46.6634558 ], + [ 9.5598271, 46.6635849 ], + [ 9.5597537, 46.6637169 ], + [ 9.5596904, 46.6638513 ], + [ 9.559637500000001, 46.6639878 ], + [ 9.559595, 46.664126 ], + [ 9.5595631, 46.6642656 ], + [ 9.5595418, 46.6644061 ], + [ 9.5595312, 46.6645472 ], + [ 9.559531400000001, 46.6646885 ], + [ 9.5595423, 46.6648296 ], + [ 9.5595639, 46.6649701 ], + [ 9.5595962, 46.6651096 ], + [ 9.5596391, 46.6652478 ], + [ 9.5596924, 46.6653842 ], + [ 9.5597559, 46.6655186 ], + [ 9.5598297, 46.6656504 ], + [ 9.5599133, 46.6657794 ], + [ 9.5600066, 46.6659053 ], + [ 9.5601094, 46.6660276 ], + [ 9.5602213, 46.666146 ], + [ 9.5603421, 46.666260199999996 ], + [ 9.5604714, 46.6663699 ], + [ 9.5606088, 46.6664748 ], + [ 9.5607541, 46.6665747 ], + [ 9.5609067, 46.6666691 ], + [ 9.5610663, 46.6667579 ], + [ 9.5612325, 46.6668409 ], + [ 9.5614047, 46.6669177 ], + [ 9.5615825, 46.6669883 ], + [ 9.5617655, 46.6670523 ], + [ 9.561952999999999, 46.6671096 ], + [ 9.5621447, 46.6671601 ], + [ 9.5623399, 46.6672037 ], + [ 9.5625382, 46.6672401 ], + [ 9.562739, 46.6672694 ], + [ 9.5629418, 46.6672914 ], + [ 9.5631459, 46.667305999999996 ], + [ 9.5633508, 46.6673133 ], + [ 9.5635561, 46.6673131 ], + [ 9.563761, 46.6673056 ], + [ 9.5639651, 46.6672907 ], + [ 9.5641678, 46.6672685 ], + [ 9.5643685, 46.667239 ], + [ 9.5645667, 46.6672023 ], + [ 9.5647618, 46.6671585 ], + [ 9.564953299999999, 46.6671078 ], + [ 9.5651408, 46.6670502 ], + [ 9.5653235, 46.6669859 ], + [ 9.5655012, 46.6669152 ], + [ 9.565673199999999, 46.6668381 ], + [ 9.5658391, 46.6667549 ], + [ 9.5659985, 46.6666659 ], + [ 9.5661509, 46.6665713 ], + [ 9.5662959, 46.6664713 ], + [ 9.566433, 46.6663662 ], + [ 9.5665621, 46.6662563 ], + [ 9.5666825, 46.666142 ], + [ 9.5667941, 46.6660234 ], + [ 9.5668966, 46.665901 ], + [ 9.5669896, 46.665775 ], + [ 9.5670729, 46.6656459 ], + [ 9.5671462, 46.6655139 ], + [ 9.5672095, 46.6653795 ], + [ 9.5672624, 46.665243 ], + [ 9.5673049, 46.6651048 ], + [ 9.5673368, 46.6649652 ], + [ 9.567358, 46.6648247 ], + [ 9.5673686, 46.6646836 ], + [ 9.5673684, 46.6645423 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0118", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Tiefencastel", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Tiefencastel", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Tiefencastel", + "lang" : "it-CH" + }, + { + "text" : "Substation Tiefencastel", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.8416497, 46.4414068 ], + [ 8.8416407, 46.4412656 ], + [ 8.841621, 46.441125 ], + [ 8.8415907, 46.4409853 ], + [ 8.8415499, 46.4408468 ], + [ 8.8414986, 46.4407101 ], + [ 8.8414371, 46.4405753 ], + [ 8.8413654, 46.440443 ], + [ 8.8412839, 46.4403135 ], + [ 8.8411926, 46.4401871 ], + [ 8.8410919, 46.4400641 ], + [ 8.840982, 46.439945 ], + [ 8.8408632, 46.43983 ], + [ 8.840736, 46.4397195 ], + [ 8.8406005, 46.4396137 ], + [ 8.8404572, 46.439513 ], + [ 8.8403064, 46.4394176 ], + [ 8.8401487, 46.4393277 ], + [ 8.8399843, 46.4392437 ], + [ 8.8398139, 46.4391658 ], + [ 8.8396377, 46.4390941 ], + [ 8.8394564, 46.439029 ], + [ 8.8392704, 46.4389704 ], + [ 8.8390802, 46.4389187 ], + [ 8.8388864, 46.4388739 ], + [ 8.8386895, 46.4388362 ], + [ 8.8384899, 46.4388057 ], + [ 8.8382883, 46.4387824 ], + [ 8.8380853, 46.4387665 ], + [ 8.8378813, 46.4387579 ], + [ 8.8376769, 46.4387567 ], + [ 8.8374727, 46.4387629 ], + [ 8.837269299999999, 46.4387765 ], + [ 8.8370672, 46.4387975 ], + [ 8.836867, 46.4388257 ], + [ 8.8366691, 46.4388611 ], + [ 8.8364742, 46.4389036 ], + [ 8.8362828, 46.4389532 ], + [ 8.8360954, 46.4390096 ], + [ 8.8359126, 46.4390726 ], + [ 8.8357347, 46.4391423 ], + [ 8.8355624, 46.4392182 ], + [ 8.8353961, 46.4393003 ], + [ 8.8352362, 46.4393883 ], + [ 8.8350832, 46.439482 ], + [ 8.8349374, 46.439581 ], + [ 8.8347994, 46.4396852 ], + [ 8.8346695, 46.4397943 ], + [ 8.834548, 46.4399079 ], + [ 8.8344352, 46.4400257 ], + [ 8.8343316, 46.4401475 ], + [ 8.8342373, 46.4402728 ], + [ 8.8341526, 46.4404014 ], + [ 8.8340777, 46.4405329 ], + [ 8.8340129, 46.4406669 ], + [ 8.8339584, 46.440803 ], + [ 8.8339142, 46.440941 ], + [ 8.8338805, 46.4410803 ], + [ 8.8338575, 46.4412207 ], + [ 8.8338451, 46.4413618 ], + [ 8.8338434, 46.441503 ], + [ 8.8338523, 46.4416442 ], + [ 8.833872, 46.4417848 ], + [ 8.8339023, 46.4419245 ], + [ 8.833943099999999, 46.442063 ], + [ 8.8339943, 46.4421998 ], + [ 8.8340558, 46.4423345 ], + [ 8.8341275, 46.4424668 ], + [ 8.834209, 46.4425964 ], + [ 8.8343003, 46.4427228 ], + [ 8.834401, 46.4428457 ], + [ 8.8345109, 46.4429649 ], + [ 8.8346296, 46.4430799 ], + [ 8.8347569, 46.4431904 ], + [ 8.8348924, 46.4432962 ], + [ 8.8350357, 46.4433969 ], + [ 8.8351864, 46.4434923 ], + [ 8.8353442, 46.4435822 ], + [ 8.8355085, 46.4436662 ], + [ 8.835679, 46.4437441 ], + [ 8.8358552, 46.4438158 ], + [ 8.8360365, 46.443881 ], + [ 8.8362225, 46.4439395 ], + [ 8.8364127, 46.4439913 ], + [ 8.8366065, 46.444036 ], + [ 8.8368035, 46.4440738 ], + [ 8.8370031, 46.4441043 ], + [ 8.8372047, 46.4441276 ], + [ 8.8374077, 46.4441435 ], + [ 8.8376118, 46.4441521 ], + [ 8.8378161, 46.4441532 ], + [ 8.8380203, 46.444147 ], + [ 8.8382238, 46.4441334 ], + [ 8.8384259, 46.4441125 ], + [ 8.8386262, 46.4440843 ], + [ 8.838824, 46.4440488 ], + [ 8.8390189, 46.4440063 ], + [ 8.8392104, 46.4439568 ], + [ 8.8393978, 46.4439004 ], + [ 8.8395806, 46.4438373 ], + [ 8.8397585, 46.4437677 ], + [ 8.8399308, 46.4436917 ], + [ 8.8400972, 46.4436096 ], + [ 8.8402571, 46.4435216 ], + [ 8.8404101, 46.4434279 ], + [ 8.8405558, 46.4433289 ], + [ 8.8406938, 46.4432247 ], + [ 8.8408238, 46.4431156 ], + [ 8.8409453, 46.443002 ], + [ 8.841058, 46.4428842 ], + [ 8.8411617, 46.4427624 ], + [ 8.841256, 46.442637 ], + [ 8.8413406, 46.4425084 ], + [ 8.8414155, 46.442377 ], + [ 8.8414802, 46.442243 ], + [ 8.8415348, 46.4421068 ], + [ 8.8415789, 46.4419688 ], + [ 8.8416126, 46.4418295 ], + [ 8.8416356, 46.4416891 ], + [ 8.841648, 46.4415481 ], + [ 8.8416497, 46.4414068 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0061", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Lavorgo", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Lavorgo", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Lavorgo", + "lang" : "it-CH" + }, + { + "text" : "Substation Lavorgo", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.7015105, 47.5340745 ], + [ 8.7015017, 47.5339333 ], + [ 8.701482, 47.5337927 ], + [ 8.7014515, 47.533653 ], + [ 8.7014101, 47.5335145 ], + [ 8.7013582, 47.5333777 ], + [ 8.7012957, 47.5332429 ], + [ 8.701223, 47.5331105 ], + [ 8.7011401, 47.5329809 ], + [ 8.7010472, 47.5328544 ], + [ 8.7009448, 47.5327314 ], + [ 8.7008329, 47.5326121 ], + [ 8.7007121, 47.532497 ], + [ 8.7005824, 47.5323864 ], + [ 8.7004444, 47.5322804 ], + [ 8.7002985, 47.5321795 ], + [ 8.7001449, 47.532084 ], + [ 8.6999841, 47.531994 ], + [ 8.6998166, 47.5319098 ], + [ 8.6996429, 47.5318317 ], + [ 8.6994633, 47.5317598 ], + [ 8.6992784, 47.5316944 ], + [ 8.6990887, 47.5316356 ], + [ 8.6988948, 47.5315837 ], + [ 8.6986971, 47.5315387 ], + [ 8.6984962, 47.5315007 ], + [ 8.6982926, 47.53147 ], + [ 8.6980869, 47.5314465 ], + [ 8.697879799999999, 47.5314303 ], + [ 8.6976716, 47.5314215 ], + [ 8.697462999999999, 47.53142 ], + [ 8.6972546, 47.531426 ], + [ 8.697047, 47.5314393 ], + [ 8.6968407, 47.53146 ], + [ 8.6966362, 47.531488 ], + [ 8.6964342, 47.5315231 ], + [ 8.6962352, 47.5315654 ], + [ 8.6960397, 47.5316147 ], + [ 8.6958484, 47.5316709 ], + [ 8.6956616, 47.5317337 ], + [ 8.6954799, 47.5318031 ], + [ 8.6953038, 47.5318788 ], + [ 8.6951338, 47.5319607 ], + [ 8.6949704, 47.5320485 ], + [ 8.694814, 47.5321419 ], + [ 8.694665, 47.5322408 ], + [ 8.6945239, 47.5323448 ], + [ 8.694391, 47.5324536 ], + [ 8.6942667, 47.5325671 ], + [ 8.6941513, 47.5326847 ], + [ 8.6940452, 47.5328064 ], + [ 8.6939486, 47.5329316 ], + [ 8.6938618, 47.53306 ], + [ 8.6937851, 47.5331914 ], + [ 8.6937186, 47.5333253 ], + [ 8.6936626, 47.5334613 ], + [ 8.6936172, 47.5335992 ], + [ 8.6935824, 47.5337385 ], + [ 8.6935585, 47.5338788 ], + [ 8.693545499999999, 47.5340198 ], + [ 8.6935433, 47.534161 ], + [ 8.6935521, 47.5343022 ], + [ 8.6935718, 47.5344428 ], + [ 8.6936024, 47.5345825 ], + [ 8.693643699999999, 47.534721 ], + [ 8.6936956, 47.5348578 ], + [ 8.693758, 47.5349926 ], + [ 8.6938308, 47.535125 ], + [ 8.6939137, 47.5352546 ], + [ 8.6940065, 47.5353811 ], + [ 8.6941089, 47.5355041 ], + [ 8.6942207, 47.5356234 ], + [ 8.6943416, 47.5357385 ], + [ 8.6944712, 47.5358492 ], + [ 8.6946092, 47.5359551 ], + [ 8.6947552, 47.536056 ], + [ 8.6949088, 47.5361516 ], + [ 8.6950696, 47.5362416 ], + [ 8.6952371, 47.5363258 ], + [ 8.6954108, 47.5364039 ], + [ 8.6955904, 47.5364758 ], + [ 8.6957753, 47.5365412 ], + [ 8.695965, 47.5366 ], + [ 8.696159, 47.5366519 ], + [ 8.696356699999999, 47.5366969 ], + [ 8.6965576, 47.5367349 ], + [ 8.6967612, 47.5367656 ], + [ 8.6969669, 47.5367892 ], + [ 8.6971741, 47.5368053 ], + [ 8.6973823, 47.5368142 ], + [ 8.6975909, 47.5368156 ], + [ 8.6977993, 47.5368096 ], + [ 8.6980069, 47.5367963 ], + [ 8.698213299999999, 47.5367756 ], + [ 8.6984178, 47.5367476 ], + [ 8.6986198, 47.5367125 ], + [ 8.6988188, 47.5366702 ], + [ 8.6990143, 47.5366209 ], + [ 8.6992057, 47.5365647 ], + [ 8.6993925, 47.5365019 ], + [ 8.6995742, 47.5364325 ], + [ 8.6997503, 47.5363568 ], + [ 8.6999203, 47.5362749 ], + [ 8.7000837, 47.5361871 ], + [ 8.7002401, 47.5360937 ], + [ 8.7003891, 47.5359948 ], + [ 8.7005302, 47.5358908 ], + [ 8.7006631, 47.5357819 ], + [ 8.7007874, 47.5356685 ], + [ 8.7009028, 47.5355508 ], + [ 8.7010089, 47.5354292 ], + [ 8.7011054, 47.535304 ], + [ 8.7011922, 47.5351755 ], + [ 8.7012689, 47.5350441 ], + [ 8.7013354, 47.5349102 ], + [ 8.7013914, 47.5347742 ], + [ 8.7014368, 47.5346363 ], + [ 8.7014715, 47.534497 ], + [ 8.7014954, 47.534356700000004 ], + [ 8.7015084, 47.5342157 ], + [ 8.7015105, 47.5340745 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0095", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Riet", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Riet", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Riet", + "lang" : "it-CH" + }, + { + "text" : "Substation Riet", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.1248901, 47.1855837 ], + [ 8.1248829, 47.1854425 ], + [ 8.1248648, 47.1853017 ], + [ 8.124836, 47.1851618 ], + [ 8.1247964, 47.1850232 ], + [ 8.1247463, 47.1848861 ], + [ 8.1246857, 47.184751 ], + [ 8.1246149, 47.1846182 ], + [ 8.1245339, 47.1844882 ], + [ 8.124443, 47.1843612 ], + [ 8.1243426, 47.1842377 ], + [ 8.1242328, 47.1841179 ], + [ 8.1241139, 47.1840021 ], + [ 8.1239863, 47.1838908 ], + [ 8.1238504, 47.1837842 ], + [ 8.1237065, 47.1836826 ], + [ 8.1235549, 47.1835862 ], + [ 8.1233962, 47.1834954 ], + [ 8.1232307, 47.1834104 ], + [ 8.1230589, 47.1833314 ], + [ 8.1228813, 47.1832586 ], + [ 8.1226983, 47.1831923 ], + [ 8.1225105, 47.1831326 ], + [ 8.1223184, 47.1830797 ], + [ 8.1221225, 47.1830337 ], + [ 8.1219233, 47.1829947 ], + [ 8.1217214, 47.182963 ], + [ 8.1215173, 47.1829384 ], + [ 8.1213117, 47.1829212 ], + [ 8.1211049, 47.1829113 ], + [ 8.1208978, 47.1829089 ], + [ 8.1206907, 47.1829138 ], + [ 8.1204842, 47.1829261 ], + [ 8.1202791, 47.1829457 ], + [ 8.1200756, 47.1829727 ], + [ 8.1198746, 47.1830069 ], + [ 8.1196764, 47.1830482 ], + [ 8.1194817, 47.1830965 ], + [ 8.119291, 47.1831517 ], + [ 8.1191047, 47.1832136 ], + [ 8.1189235, 47.1832821 ], + [ 8.1187477, 47.1833569 ], + [ 8.118578, 47.183438 ], + [ 8.1184147, 47.1835249 ], + [ 8.1182583, 47.1836176 ], + [ 8.1181092, 47.1837157 ], + [ 8.1179679, 47.183819 ], + [ 8.1178347, 47.1839273 ], + [ 8.11771, 47.1840401 ], + [ 8.1175941, 47.1841572 ], + [ 8.1174873, 47.1842783 ], + [ 8.11739, 47.184403 ], + [ 8.1173024, 47.184531 ], + [ 8.1172248, 47.184662 ], + [ 8.1171573, 47.1847956 ], + [ 8.1171002, 47.1849314 ], + [ 8.1170536, 47.185069 ], + [ 8.1170176, 47.1852082 ], + [ 8.1169923, 47.1853484 ], + [ 8.1169778, 47.1854893 ], + [ 8.1169742, 47.1856306 ], + [ 8.1169814, 47.1857718 ], + [ 8.1169994, 47.1859125 ], + [ 8.1170283, 47.1860524 ], + [ 8.1170678, 47.1861911 ], + [ 8.1171179, 47.1863281 ], + [ 8.1171785, 47.1864632 ], + [ 8.1172493, 47.186596 ], + [ 8.1173303, 47.1867261 ], + [ 8.1174211, 47.186853 ], + [ 8.1175216, 47.1869766 ], + [ 8.1176314, 47.1870964 ], + [ 8.1177502, 47.187212099999996 ], + [ 8.1178778, 47.1873235 ], + [ 8.1180137, 47.1874301 ], + [ 8.1181577, 47.1875317 ], + [ 8.1183092, 47.1876281 ], + [ 8.118468, 47.1877189 ], + [ 8.1186334, 47.1878039 ], + [ 8.1188052, 47.1878829 ], + [ 8.1189829, 47.1879557 ], + [ 8.1191658, 47.188022 ], + [ 8.1193537, 47.1880817 ], + [ 8.1195458, 47.1881347 ], + [ 8.1197417, 47.1881807 ], + [ 8.1199409, 47.1882196 ], + [ 8.1201429, 47.1882514 ], + [ 8.1203469, 47.1882759 ], + [ 8.1205526, 47.1882932 ], + [ 8.1207594, 47.188303 ], + [ 8.1209666, 47.1883055 ], + [ 8.1211737, 47.1883006 ], + [ 8.1213801, 47.1882883 ], + [ 8.1215853, 47.1882686 ], + [ 8.1217888, 47.1882417 ], + [ 8.1219898, 47.1882075 ], + [ 8.122188, 47.1881662 ], + [ 8.1223827, 47.1881179 ], + [ 8.1225735, 47.1880627 ], + [ 8.1227598, 47.1880007 ], + [ 8.122941, 47.1879323 ], + [ 8.1231168, 47.1878574 ], + [ 8.1232865, 47.1877764 ], + [ 8.1234498, 47.1876894 ], + [ 8.1236062, 47.1875967 ], + [ 8.1237553, 47.1874986 ], + [ 8.1238966, 47.1873952 ], + [ 8.1240298, 47.187287 ], + [ 8.1241545, 47.1871742 ], + [ 8.1242704, 47.1870571 ], + [ 8.1243772, 47.186936 ], + [ 8.1244744, 47.1868112 ], + [ 8.124562, 47.1866832 ], + [ 8.1246396, 47.1865522 ], + [ 8.1247071, 47.1864186 ], + [ 8.1247642, 47.1862828 ], + [ 8.1248108, 47.1861452 ], + [ 8.1248468, 47.1860061 ], + [ 8.1248721, 47.1858658 ], + [ 8.1248865, 47.1857249 ], + [ 8.1248901, 47.1855837 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0116", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Sursee", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Sursee", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Sursee", + "lang" : "it-CH" + }, + { + "text" : "Substation Sursee", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.8436308, 46.9202035 ], + [ 8.8435105, 46.9200931 ], + [ 8.843435, 46.9200609 ], + [ 8.843382, 46.9199773 ], + [ 8.8433529, 46.9198707 ], + [ 8.8432896, 46.9197421 ], + [ 8.8432369, 46.91967 ], + [ 8.8431192, 46.9196273 ], + [ 8.8430044, 46.9196297 ], + [ 8.8429015, 46.9197109 ], + [ 8.842831499999999, 46.9197971 ], + [ 8.8427306, 46.9199235 ], + [ 8.8425977, 46.9200844 ], + [ 8.8425053, 46.9202217 ], + [ 8.8424929, 46.9203124 ], + [ 8.8424754, 46.9204595 ], + [ 8.842430199999999, 46.9205507 ], + [ 8.8423296, 46.9206884 ], + [ 8.8421701, 46.9208047 ], + [ 8.8419059, 46.9209627 ], + [ 8.8416596, 46.9211486 ], + [ 8.8414539, 46.9213166 ], + [ 8.8412413, 46.9215357 ], + [ 8.8411442, 46.9217466 ], + [ 8.8410672, 46.9220361 ], + [ 8.8409276, 46.9222197 ], + [ 8.8407883, 46.9222283 ], + [ 8.8405697, 46.922312 ], + [ 8.8403183, 46.9223963 ], + [ 8.8402189, 46.9225509 ], + [ 8.8401487, 46.9228177 ], + [ 8.8400866, 46.9230787 ], + [ 8.8400367, 46.9232435 ], + [ 8.8400324, 46.9235202 ], + [ 8.8399907, 46.923871 ], + [ 8.839987, 46.9241365 ], + [ 8.8401101, 46.9243257 ], + [ 8.8401681, 46.9245052 ], + [ 8.8402396, 46.9246335 ], + [ 8.8404088, 46.9247315 ], + [ 8.8404637, 46.9248546 ], + [ 8.8404963, 46.9250345 ], + [ 8.8405383, 46.9252311 ], + [ 8.8405185, 46.9253501 ], + [ 8.8404421, 46.9254759 ], + [ 8.8403836, 46.9256239 ], + [ 8.8402916, 46.9257783 ], + [ 8.8402665, 46.9259483 ], + [ 8.8402533, 46.9261968 ], + [ 8.8402144, 46.9264347 ], + [ 8.8402515, 46.9266936 ], + [ 8.8403337, 46.9268896 ], + [ 8.8403445, 46.927115 ], + [ 8.8403138, 46.9273529 ], + [ 8.8403257, 46.9276178 ], + [ 8.8402406, 46.9279132 ], + [ 8.8401106, 46.9281192 ], + [ 8.8400019, 46.9282627 ], + [ 8.8399115, 46.9284509 ], + [ 8.839903, 46.928626 ], + [ 8.8398771, 46.9287677 ], + [ 8.8397684, 46.9289112 ], + [ 8.8397273, 46.9290982 ], + [ 8.839735, 46.9292675 ], + [ 8.8397365, 46.929482 ], + [ 8.8397342, 46.9296118 ], + [ 8.8396563, 46.9297094 ], + [ 8.839529, 46.9298025 ], + [ 8.8393485, 46.9299925 ], + [ 8.8393014, 46.9300444 ], + [ 8.8392377, 46.9300909 ], + [ 8.8391004, 46.9301446 ], + [ 8.8389814, 46.9302374 ], + [ 8.8388453, 46.9303081 ], + [ 8.8387355, 46.9304403 ], + [ 8.8386322, 46.9306964 ], + [ 8.8385657, 46.9308559 ], + [ 8.8384485, 46.9309883 ], + [ 8.838186199999999, 46.9311913 ], + [ 8.8377113, 46.9314273 ], + [ 8.8376023, 46.9315593 ], + [ 8.8375337, 46.9316681 ], + [ 8.8374807, 46.9317764 ], + [ 8.837484, 46.9318385 ], + [ 8.8375132, 46.9319508 ], + [ 8.8376019, 46.9320787 ], + [ 8.8376754, 46.9322522 ], + [ 8.837731999999999, 46.9324091 ], + [ 8.8377626, 46.9325439 ], + [ 8.8377686, 46.9326792 ], + [ 8.8377789, 46.9327298 ], + [ 8.837727, 46.9328495 ], + [ 8.8376384, 46.9330715 ], + [ 8.8375011, 46.9333172 ], + [ 8.837451, 46.9334706 ], + [ 8.8374534, 46.9335327 ], + [ 8.8374726, 46.9335774 ], + [ 8.8375489, 46.9336379 ], + [ 8.8376258, 46.9336927 ], + [ 8.8377365, 46.9337807 ], + [ 8.8378504, 46.9339307 ], + [ 8.8378321, 46.9340778 ], + [ 8.8377828, 46.9342651 ], + [ 8.8377033, 46.9344927 ], + [ 8.8375479, 46.9347048 ], + [ 8.8372522, 46.934886 ], + [ 8.8369018, 46.9351419 ], + [ 8.8365952, 46.9354419 ], + [ 8.8363437, 46.9357126 ], + [ 8.8361991, 46.935964 ], + [ 8.8361085, 46.936141 ], + [ 8.8361305, 46.9362591 ], + [ 8.8361736, 46.9363089 ], + [ 8.8362413, 46.9363526 ], + [ 8.8363592, 46.9364066 ], + [ 8.8365417, 46.9364479 ], + [ 8.8366996, 46.9364897 ], + [ 8.8367537, 46.9365789 ], + [ 8.8367584, 46.9366973 ], + [ 8.8367475, 46.9368161 ], + [ 8.836727, 46.9369125 ], + [ 8.8367244, 46.937031 ], + [ 8.8366559, 46.9371454 ], + [ 8.8365715, 46.9372771 ], + [ 8.8364218, 46.9374213 ], + [ 8.8363047, 46.9375594 ], + [ 8.8361897, 46.937748 ], + [ 8.8361384, 46.9378902 ], + [ 8.8361437, 46.9379974 ], + [ 8.8361565, 46.93811 ], + [ 8.836155399999999, 46.9382569 ], + [ 8.8361507, 46.9383303 ], + [ 8.8361693, 46.9383807 ], + [ 8.836222, 46.938453 ], + [ 8.8362265, 46.9385601 ], + [ 8.8361893, 46.9386456 ], + [ 8.8361279, 46.9387485 ], + [ 8.8360221, 46.9389427 ], + [ 8.8359153, 46.9391256 ], + [ 8.835731299999999, 46.939248 ], + [ 8.8355529, 46.9393026 ], + [ 8.8353563, 46.9393181 ], + [ 8.8350759, 46.9393014 ], + [ 8.8349308, 46.9393722 ], + [ 8.8347455, 46.9394439 ], + [ 8.8346335, 46.9395253 ], + [ 8.8345882, 46.9396166 ], + [ 8.8345385, 46.939787 ], + [ 8.8344807, 46.9399632 ], + [ 8.8344548, 46.9401049 ], + [ 8.834379, 46.9402533 ], + [ 8.8342703, 46.9403966 ], + [ 8.8340841, 46.9404683 ], + [ 8.8339152, 46.9405397 ], + [ 8.8337961, 46.9406325 ], + [ 8.8337448, 46.9407747 ], + [ 8.8337021, 46.9409336 ], + [ 8.8336519, 46.9410872 ], + [ 8.8336346, 46.9412399 ], + [ 8.8336063, 46.9413534 ], + [ 8.8335138, 46.9414909 ], + [ 8.8334861, 46.941593 ], + [ 8.8333941, 46.9417475 ], + [ 8.8333492, 46.9418556 ], + [ 8.8333299, 46.9419633 ], + [ 8.8333015, 46.9420711 ], + [ 8.8332499, 46.942202 ], + [ 8.8331492, 46.9423397 ], + [ 8.8330485, 46.9424773 ], + [ 8.8329739, 46.9426426 ], + [ 8.832898, 46.9427853 ], + [ 8.8329017, 46.9428643 ], + [ 8.8329405, 46.9429989 ], + [ 8.8329699, 46.9430886 ], + [ 8.8330084, 46.943212 ], + [ 8.8329879, 46.9433084 ], + [ 8.8329612, 46.94345 ], + [ 8.8329259, 46.943575 ], + [ 8.8328228, 46.9438425 ], + [ 8.8327828, 46.9440409 ], + [ 8.8327483, 46.9441998 ], + [ 8.8327309, 46.9443525 ], + [ 8.8326881, 46.9445058 ], + [ 8.832656, 46.9446927 ], + [ 8.8325476, 46.9448474 ], + [ 8.8324283, 46.9449346 ], + [ 8.8323306, 46.9449649 ], + [ 8.8321993, 46.9449678 ], + [ 8.8320286, 46.9450053 ], + [ 8.8318572, 46.9450428 ], + [ 8.831631, 46.9451209 ], + [ 8.8314793, 46.9452258 ], + [ 8.831367, 46.9452959 ], + [ 8.831262, 46.9453319 ], + [ 8.8310899, 46.9453411 ], + [ 8.8308689, 46.9453684 ], + [ 8.830681, 46.9454063 ], + [ 8.83048, 46.9455065 ], + [ 8.8302728, 46.945652 ], + [ 8.8297765, 46.9459561 ], + [ 8.8293041, 46.9462313 ], + [ 8.8288141, 46.9464901 ], + [ 8.8282591, 46.9467784 ], + [ 8.8280149, 46.9468287 ], + [ 8.8278119, 46.9468838 ], + [ 8.8275771, 46.946979 ], + [ 8.8275071, 46.9470652 ], + [ 8.8274539, 46.9471679 ], + [ 8.8273871, 46.9473161 ], + [ 8.8273291, 46.9474866 ], + [ 8.8272946, 46.9476455 ], + [ 8.827238, 46.9478386 ], + [ 8.8271744, 46.9480769 ], + [ 8.8270857, 46.948299 ], + [ 8.8269982, 46.9485323 ], + [ 8.8268854, 46.9487774 ], + [ 8.8267735, 46.9490225 ], + [ 8.82661, 46.9492406 ], + [ 8.8264148, 46.9494704 ], + [ 8.8262442, 46.9496999 ], + [ 8.8264553, 46.9496388 ], + [ 8.8266106, 46.9496131 ], + [ 8.8267991, 46.9495979 ], + [ 8.8271054, 46.9496308 ], + [ 8.8273305, 46.9496995 ], + [ 8.8275226, 46.9497631 ], + [ 8.8276127, 46.9497555 ], + [ 8.8278097, 46.9497515 ], + [ 8.8281391, 46.9497558 ], + [ 8.8284161, 46.9497048 ], + [ 8.8286595, 46.9496206 ], + [ 8.8288916, 46.9494859 ], + [ 8.829436, 46.9493276 ], + [ 8.8296884, 46.9492772 ], + [ 8.8297995, 46.9491901 ], + [ 8.8298626, 46.949121 ], + [ 8.8298982, 46.9490074 ], + [ 8.8299737, 46.9488478 ], + [ 8.830048099999999, 46.9486768 ], + [ 8.8301934, 46.9486116 ], + [ 8.8304209, 46.9485504 ], + [ 8.8306259, 46.9485404 ], + [ 8.8308568, 46.9485468 ], + [ 8.8310232, 46.9485997 ], + [ 8.8311968, 46.9486131 ], + [ 8.8314186, 46.948614 ], + [ 8.8317636, 46.9485897 ], + [ 8.8321916, 46.9485976 ], + [ 8.8326446, 46.9486219 ], + [ 8.8331985, 46.9486723 ], + [ 8.8335878, 46.9487375 ], + [ 8.8339268, 46.9487641 ], + [ 8.8340441, 46.9488237 ], + [ 8.8341556, 46.9489117 ], + [ 8.8342342, 46.9490286 ], + [ 8.8343545, 46.9491389 ], + [ 8.8345855, 46.949151 ], + [ 8.8347578, 46.9491473 ], + [ 8.834989, 46.949165 ], + [ 8.8352462, 46.9492048 ], + [ 8.8354961, 46.9492785 ], + [ 8.8357968, 46.9493794 ], + [ 8.8360153, 46.9494764 ], + [ 8.8362172, 46.949568 ], + [ 8.836301, 46.9496001 ], + [ 8.8365408, 46.9496346 ], + [ 8.8368296, 46.9496567 ], + [ 8.837144200000001, 46.9496951 ], + [ 8.8375092, 46.9497721 ], + [ 8.8377517, 46.949846 ], + [ 8.8379358, 46.9499154 ], + [ 8.8380316, 46.9500321 ], + [ 8.8380608, 46.9501443 ], + [ 8.8380499, 46.9502631 ], + [ 8.8380163, 46.9504218 ], + [ 8.8379506, 46.9506096 ], + [ 8.8378861, 46.950814 ], + [ 8.8379104, 46.9509886 ], + [ 8.8379885, 46.9510886 ], + [ 8.8380716, 46.9512844 ], + [ 8.8381632, 46.9514913 ], + [ 8.8382278, 46.9516367 ], + [ 8.8382424, 46.9517888 ], + [ 8.8381962, 46.9520325 ], + [ 8.8381495, 46.9540882 ], + [ 8.8381164, 46.954264 ], + [ 8.8380557, 46.9543611 ], + [ 8.8379436, 46.9544426 ], + [ 8.837883399999999, 46.9545568 ], + [ 8.837807699999999, 46.9547108 ], + [ 8.8378312, 46.954857 ], + [ 8.8379006, 46.9549346 ], + [ 8.8379847, 46.954978 ], + [ 8.8380948, 46.9550434 ], + [ 8.838163999999999, 46.9551154 ], + [ 8.8382188, 46.9552326 ], + [ 8.8382808, 46.9553443 ], + [ 8.838300199999999, 46.9553947 ], + [ 8.8384095, 46.9554601 ], + [ 8.8384967, 46.9555599 ], + [ 8.8385482, 46.9556152 ], + [ 8.8386091, 46.9556816 ], + [ 8.8386852, 46.9557365 ], + [ 8.8388274, 46.955773 ], + [ 8.8389548, 46.955872 ], + [ 8.839050199999999, 46.9559715 ], + [ 8.8391397, 46.9561277 ], + [ 8.8392034, 46.9562731 ], + [ 8.8391171, 46.9563652 ], + [ 8.8390389, 46.9564515 ], + [ 8.8389612, 46.9565604 ], + [ 8.8389732, 46.9566393 ], + [ 8.8390112, 46.9567456 ], + [ 8.8390848, 46.9569191 ], + [ 8.8391923, 46.9571088 ], + [ 8.8389534, 46.9571082 ], + [ 8.8387483, 46.9571181 ], + [ 8.8385172, 46.9571062 ], + [ 8.8381889, 46.9571132 ], + [ 8.8378683, 46.9571311 ], + [ 8.8375155, 46.9571443 ], + [ 8.8371779, 46.9571401 ], + [ 8.8368626, 46.9570792 ], + [ 8.8365964, 46.9570114 ], + [ 8.8362893, 46.9569501 ], + [ 8.8362404, 46.9571544 ], + [ 8.8362599, 46.9573968 ], + [ 8.8362381, 46.9576343 ], + [ 8.836284299999999, 46.9579268 ], + [ 8.8363737, 46.9582693 ], + [ 8.8364543, 46.9585894 ], + [ 8.8365219, 46.9588194 ], + [ 8.8365398, 46.9590334 ], + [ 8.8365588, 46.9592589 ], + [ 8.8366256, 46.9594607 ], + [ 8.8366929, 46.9596795 ], + [ 8.8367254, 46.9598538 ], + [ 8.836707, 46.9600009 ], + [ 8.8367042, 46.9601138 ], + [ 8.8366834, 46.960199 ], + [ 8.8366567, 46.9603406 ], + [ 8.8366543, 46.9604705 ], + [ 8.8356025, 46.9601315 ], + [ 8.8352358, 46.9600207 ], + [ 8.8350015, 46.9599466 ], + [ 8.8346944, 46.9598854 ], + [ 8.8344875, 46.9598559 ], + [ 8.8342724, 46.9598266 ], + [ 8.8339861, 46.9598721 ], + [ 8.8337564, 46.9598827 ], + [ 8.8335614, 46.959932 ], + [ 8.8333913, 46.959992 ], + [ 8.8332275, 46.9600068 ], + [ 8.833071499999999, 46.9600101 ], + [ 8.8328734, 46.9600031 ], + [ 8.8327509, 46.960028199999996 ], + [ 8.832662599999999, 46.9600752 ], + [ 8.8325576, 46.9601113 ], + [ 8.8324592, 46.960119 ], + [ 8.8323033, 46.9601223 ], + [ 8.832122, 46.9601318 ], + [ 8.8318906, 46.9601085 ], + [ 8.8316343, 46.9600743 ], + [ 8.8313789, 46.9600741 ], + [ 8.831142700000001, 46.9601186 ], + [ 8.8309483, 46.9601905 ], + [ 8.8307389, 46.9602853 ], + [ 8.830536500000001, 46.9603686 ], + [ 8.8302696, 46.9604644 ], + [ 8.8299214, 46.9605904 ], + [ 8.8297344, 46.9606339 ], + [ 8.8295478, 46.9606886 ], + [ 8.8292679, 46.9606945 ], + [ 8.8289314, 46.9607017 ], + [ 8.8286025, 46.9607198 ], + [ 8.8284478, 46.96074 ], + [ 8.8283012, 46.9607883 ], + [ 8.8280752, 46.9608778 ], + [ 8.8278564, 46.9609614 ], + [ 8.8276162, 46.9611019 ], + [ 8.8273906, 46.9612083 ], + [ 8.8272242, 46.9613473 ], + [ 8.8269508, 46.9614772 ], + [ 8.8266697, 46.96163 ], + [ 8.8264952, 46.9617748 ], + [ 8.8263472, 46.9619585 ], + [ 8.826175, 46.9621598 ], + [ 8.8260267, 46.9625241 ], + [ 8.8259706, 46.9627341 ], + [ 8.8258984, 46.9629614 ], + [ 8.8259093, 46.9631927 ], + [ 8.8259569, 46.9633497 ], + [ 8.8260128, 46.9634785 ], + [ 8.8261093, 46.9636231 ], + [ 8.8261144, 46.9637247 ], + [ 8.8260372, 46.9638504 ], + [ 8.8259276, 46.9639656 ], + [ 8.8257599, 46.9640877 ], + [ 8.8256318, 46.9641525 ], + [ 8.8254806, 46.9642742 ], + [ 8.8252833, 46.9644591 ], + [ 8.8251038, 46.9646661 ], + [ 8.824915, 46.9648619 ], + [ 8.8247638, 46.9649837 ], + [ 8.8245957, 46.9650889 ], + [ 8.8244274, 46.9651883 ], + [ 8.824259099999999, 46.9652879 ], + [ 8.824107099999999, 46.9653814 ], + [ 8.8239305, 46.9654755 ], + [ 8.8238256, 46.9655172 ], + [ 8.8237097, 46.965514 ], + [ 8.8236868, 46.9655483 ], + [ 8.8236188, 46.9656852 ], + [ 8.8236266, 46.9658601 ], + [ 8.8235908, 46.9659681 ], + [ 8.8235308, 46.9660935 ], + [ 8.8234796, 46.9662414 ], + [ 8.823467, 46.9663264 ], + [ 8.8234155, 46.9664629 ], + [ 8.8234278, 46.9665586 ], + [ 8.8234691, 46.9667271 ], + [ 8.823441, 46.9668462 ], + [ 8.8233562, 46.9669666 ], + [ 8.8233209, 46.9670972 ], + [ 8.8233445, 46.967249 ], + [ 8.8233548, 46.9674859 ], + [ 8.8233601, 46.9677906 ], + [ 8.8232762, 46.9681028 ], + [ 8.8232265, 46.9684709 ], + [ 8.8231294, 46.9688793 ], + [ 8.8231528, 46.96902 ], + [ 8.8231729, 46.9690987 ], + [ 8.8232503, 46.9691704 ], + [ 8.8233369, 46.9692814 ], + [ 8.823375, 46.9693879 ], + [ 8.8233971, 46.9695116 ], + [ 8.8234335, 46.9695843 ], + [ 8.8234946, 46.969662 ], + [ 8.8236047, 46.9697274 ], + [ 8.8237402, 46.9698205 ], + [ 8.8239031, 46.9699582 ], + [ 8.8239727, 46.970047 ], + [ 8.8240529, 46.9701921 ], + [ 8.8241662, 46.9703196 ], + [ 8.8243148, 46.9705084 ], + [ 8.8244009, 46.970597 ], + [ 8.8244785, 46.9706743 ], + [ 8.8244969, 46.9707191 ], + [ 8.824484, 46.9707928 ], + [ 8.8244551, 46.9708836 ], + [ 8.8243919, 46.9709471 ], + [ 8.824311699999999, 46.9709939 ], + [ 8.8241903, 46.9710304 ], + [ 8.824069399999999, 46.9710893 ], + [ 8.8237814, 46.9711011 ], + [ 8.8235518, 46.9711172 ], + [ 8.8233532, 46.9710932 ], + [ 8.8231222, 46.9710867 ], + [ 8.8228498, 46.9710643 ], + [ 8.822667299999999, 46.9710285 ], + [ 8.8224868, 46.971038 ], + [ 8.8222899, 46.9710478 ], + [ 8.8219703, 46.9710771 ], + [ 8.8217559, 46.9710759 ], + [ 8.82171, 46.971144699999996 ], + [ 8.8216816, 46.9712525 ], + [ 8.8216708, 46.9713769 ], + [ 8.8216622, 46.9715521 ], + [ 8.8216527, 46.9716934 ], + [ 8.8216756, 46.971851 ], + [ 8.8217628, 46.9719508 ], + [ 8.8217982, 46.9720178 ], + [ 8.8218789, 46.9721515 ], + [ 8.8219242, 46.9722522 ], + [ 8.8219641, 46.9723982 ], + [ 8.8220107, 46.9725157 ], + [ 8.8220153, 46.9726341 ], + [ 8.8220223, 46.9727752 ], + [ 8.822053, 46.9729157 ], + [ 8.822099, 46.9730106 ], + [ 8.822187, 46.9731443 ], + [ 8.8222731, 46.9732328 ], + [ 8.8223703, 46.9733718 ], + [ 8.8224486, 46.9734774 ], + [ 8.8224955, 46.9736063 ], + [ 8.8224857, 46.9737363 ], + [ 8.8225006, 46.9738998 ], + [ 8.8225308, 46.9740233 ], + [ 8.8225838, 46.9741012 ], + [ 8.8226429, 46.9741338 ], + [ 8.8227675, 46.9741538 ], + [ 8.8229086, 46.9741791 ], + [ 8.8230171, 46.9742107 ], + [ 8.8231617, 46.9743092 ], + [ 8.8233139, 46.9744132 ], + [ 8.8234754, 46.9745283 ], + [ 8.8236634, 46.9746825 ], + [ 8.8239018, 46.9748468 ], + [ 8.8241291, 46.9749662 ], + [ 8.8243723, 46.9750628 ], + [ 8.8246337, 46.9751984 ], + [ 8.8247299, 46.9753261 ], + [ 8.8247702, 46.975489 ], + [ 8.8247602, 46.9756416 ], + [ 8.8246182, 46.9757745 ], + [ 8.8245803, 46.9760236 ], + [ 8.8246222, 46.9762147 ], + [ 8.8246615, 46.976372 ], + [ 8.8247869, 46.9765838 ], + [ 8.824926, 46.9767501 ], + [ 8.8250221, 46.976878 ], + [ 8.8251015, 46.9769949 ], + [ 8.8251131, 46.9770623 ], + [ 8.825081, 46.9770913 ], + [ 8.8250102, 46.9771492 ], + [ 8.824921, 46.9771962 ], + [ 8.8248423, 46.9772656 ], + [ 8.8247479, 46.9773636 ], + [ 8.8246979, 46.9775284 ], + [ 8.8246566, 46.9777099 ], + [ 8.8246416, 46.9779247 ], + [ 8.8246252, 46.9781171 ], + [ 8.8246787, 46.9783755 ], + [ 8.8246741, 46.9786409 ], + [ 8.824621, 46.9787493 ], + [ 8.8245341, 46.9788189 ], + [ 8.8243086, 46.9789309 ], + [ 8.8241162, 46.9790535 ], + [ 8.8238349, 46.9792006 ], + [ 8.8237321, 46.9792931 ], + [ 8.8236397, 46.9794362 ], + [ 8.8234807, 46.9795467 ], + [ 8.8232945, 46.9796241 ], + [ 8.8231016, 46.9797241 ], + [ 8.8230812, 46.9798261 ], + [ 8.823169, 46.9799485 ], + [ 8.8232991, 46.9800868 ], + [ 8.8234579, 46.9803206 ], + [ 8.8236412, 46.9805481 ], + [ 8.8238147, 46.9807421 ], + [ 8.8238887, 46.9809381 ], + [ 8.8238465, 46.9810857 ], + [ 8.8237753, 46.9811606 ], + [ 8.8235642, 46.9812271 ], + [ 8.8219772, 46.9816219 ], + [ 8.8218679, 46.9817483 ], + [ 8.8218804, 46.9818497 ], + [ 8.8219902, 46.9819039 ], + [ 8.8221434, 46.9820135 ], + [ 8.8222134, 46.9821136 ], + [ 8.8222659, 46.9821747 ], + [ 8.8221956, 46.9822551 ], + [ 8.8221082, 46.982336 ], + [ 8.8220547, 46.9824274 ], + [ 8.8220746, 46.9825004 ], + [ 8.8220866, 46.9825848 ], + [ 8.8221334, 46.982708 ], + [ 8.8222292, 46.9828246 ], + [ 8.8223579, 46.9829404 ], + [ 8.8224477, 46.9831078 ], + [ 8.8225285, 46.9832473 ], + [ 8.8225425, 46.9833769 ], + [ 8.8225135, 46.9834621 ], + [ 8.8224679, 46.9835421 ], + [ 8.8224556, 46.9836383 ], + [ 8.8224352, 46.9837404 ], + [ 8.8224001, 46.9838766 ], + [ 8.8223977, 46.9840064 ], + [ 8.8223389, 46.9841488 ], + [ 8.8222472, 46.9843202 ], + [ 8.8223034, 46.9844601 ], + [ 8.8223416, 46.9845722 ], + [ 8.8224394, 46.9847338 ], + [ 8.8225109, 46.9848621 ], + [ 8.8225561, 46.9849572 ], + [ 8.8225616, 46.9850756 ], + [ 8.8225187, 46.9852289 ], + [ 8.8224932, 46.9853875 ], + [ 8.8225319, 46.9855165 ], + [ 8.822652099999999, 46.9856212 ], + [ 8.8227805, 46.9857258 ], + [ 8.8229815, 46.9858119 ], + [ 8.8232267, 46.9859535 ], + [ 8.8234523, 46.9860334 ], + [ 8.823538, 46.9861051 ], + [ 8.8236522, 46.9862663 ], + [ 8.823765999999999, 46.9864107 ], + [ 8.8239291, 46.986554 ], + [ 8.8241403, 46.9866793 ], + [ 8.8243938, 46.9868264 ], + [ 8.8246205, 46.9869177 ], + [ 8.8248295, 46.9869922 ], + [ 8.8251139, 46.9870935 ], + [ 8.8253783, 46.9871162 ], + [ 8.8256399, 46.9870655 ], + [ 8.8259697, 46.9870756 ], + [ 8.8262981, 46.9870686 ], + [ 8.8265949, 46.9870736 ], + [ 8.8268942, 46.9871463 ], + [ 8.8270611, 46.9871824 ], + [ 8.8271559, 46.9872875 ], + [ 8.8272107, 46.9874049 ], + [ 8.8271933, 46.9875578 ], + [ 8.8271896, 46.9876707 ], + [ 8.8271228, 46.9878189 ], + [ 8.8269911, 46.9880024 ], + [ 8.8268824, 46.9881514 ], + [ 8.8267177, 46.9883298 ], + [ 8.8265232, 46.9884018 ], + [ 8.8263818, 46.9883651 ], + [ 8.8261813, 46.9883016 ], + [ 8.8259496, 46.9882726 ], + [ 8.8257453, 46.9883164 ], + [ 8.825585, 46.9884102 ], + [ 8.8258818, 46.9884152 ], + [ 8.8261561, 46.9884716 ], + [ 8.8264146, 46.9885564 ], + [ 8.8266984, 46.9886295 ], + [ 8.8269872, 46.988646 ], + [ 8.8272268, 46.9886634 ], + [ 8.8275772, 46.9885827 ], + [ 8.8279918, 46.9884724 ], + [ 8.8283419, 46.9883803 ], + [ 8.8285161, 46.9884105 ], + [ 8.8287066, 46.9884403 ], + [ 8.8288975, 46.9884815 ], + [ 8.8292086, 46.9886273 ], + [ 8.8294187, 46.9887132 ], + [ 8.829585, 46.9887549 ], + [ 8.8298363, 46.9888455 ], + [ 8.8300289, 46.9889205 ], + [ 8.8302125, 46.9889674 ], + [ 8.8303401, 46.989072 ], + [ 8.8304526, 46.9891938 ], + [ 8.8305576, 46.9893158 ], + [ 8.8306668, 46.9893755 ], + [ 8.8308016, 46.9894405 ], + [ 8.8309431, 46.989477 ], + [ 8.8311512, 46.9895178 ], + [ 8.8313502, 46.989553 ], + [ 8.8315059, 46.9895385 ], + [ 8.8316844, 46.9894839 ], + [ 8.8318776, 46.9893895 ], + [ 8.8321374, 46.9892993 ], + [ 8.832396, 46.9891979 ], + [ 8.8325744, 46.9891377 ], + [ 8.8327554, 46.9891452 ], + [ 8.8328656, 46.9892106 ], + [ 8.8330189, 46.9893258 ], + [ 8.8331883, 46.9894239 ], + [ 8.8333641, 46.9894879 ], + [ 8.833503499999999, 46.9894737 ], + [ 8.8337144, 46.9894014 ], + [ 8.8339977, 46.9892996 ], + [ 8.8341995, 46.9892219 ], + [ 8.8344257, 46.9892961 ], + [ 8.8346019, 46.9893714 ], + [ 8.8347776, 46.989429799999996 ], + [ 8.8349358, 46.9894772 ], + [ 8.8350866, 46.9895249 ], + [ 8.835116, 46.9896427 ], + [ 8.835201, 46.9896918 ], + [ 8.8352049, 46.9897765 ], + [ 8.8352414, 46.9898546 ], + [ 8.8353499, 46.9898862 ], + [ 8.8355156, 46.9899052 ], + [ 8.835625, 46.9899763 ], + [ 8.8356698, 46.9900545 ], + [ 8.8356748, 46.9901503 ], + [ 8.8356713, 46.990269 ], + [ 8.8357171, 46.9903583 ], + [ 8.8358283, 46.9904632 ], + [ 8.8358567, 46.9905417 ], + [ 8.8358536, 46.9906434 ], + [ 8.8358983, 46.9907214 ], + [ 8.83596, 46.9908161 ], + [ 8.8360298, 46.9909105 ], + [ 8.8361255, 46.9910214 ], + [ 8.8361625, 46.9911166 ], + [ 8.8361839, 46.9912122 ], + [ 8.8361967, 46.9913248 ], + [ 8.8362579, 46.9914024 ], + [ 8.8363103, 46.9914578 ], + [ 8.8362913, 46.9915824 ], + [ 8.8362792, 46.9916843 ], + [ 8.8363095, 46.9918078 ], + [ 8.8363658, 46.9919478 ], + [ 8.8364029, 46.9920486 ], + [ 8.8363598, 46.9921907 ], + [ 8.8363156, 46.9922931 ], + [ 8.8362693, 46.9923789 ], + [ 8.8363008, 46.9925136 ], + [ 8.8363702, 46.9925912 ], + [ 8.836456, 46.9926684 ], + [ 8.8365747, 46.9927449 ], + [ 8.8366294, 46.9928567 ], + [ 8.8366332, 46.9929412 ], + [ 8.8366215, 46.99306 ], + [ 8.83665, 46.9931442 ], + [ 8.8367375, 46.9932551 ], + [ 8.8367679, 46.9933787 ], + [ 8.8368142, 46.993485 ], + [ 8.8368781, 46.9936361 ], + [ 8.8369246, 46.9937479 ], + [ 8.8369532, 46.9938377 ], + [ 8.8370652, 46.9939426 ], + [ 8.8371351, 46.9940371 ], + [ 8.8371481, 46.9941272 ], + [ 8.8371772, 46.9942338 ], + [ 8.8371972, 46.9943068 ], + [ 8.837252, 46.994424 ], + [ 8.8373559, 46.9945348 ], + [ 8.8373852, 46.9946471 ], + [ 8.8374151, 46.9947537 ], + [ 8.8374615, 46.9948656 ], + [ 8.8375477, 46.9949541 ], + [ 8.8376103, 46.9950544 ], + [ 8.8376783, 46.9951093 ], + [ 8.8377559, 46.9951868 ], + [ 8.8378584, 46.995275 ], + [ 8.8379557, 46.995414 ], + [ 8.8379369, 46.9955442 ], + [ 8.837958, 46.9956567 ], + [ 8.838021, 46.9957739 ], + [ 8.8381656, 46.9958669 ], + [ 8.8382592, 46.9959269 ], + [ 8.8382866, 46.9959998 ], + [ 8.8382921, 46.9961182 ], + [ 8.8383079, 46.9962815 ], + [ 8.8383401, 46.9964446 ], + [ 8.8384282, 46.9965782 ], + [ 8.8385418, 46.9967112 ], + [ 8.8386853, 46.9967929 ], + [ 8.8388694, 46.9968568 ], + [ 8.8390852, 46.9969085 ], + [ 8.8392298, 46.9970015 ], + [ 8.8393501, 46.9971062 ], + [ 8.839412, 46.9972121 ], + [ 8.8394278, 46.9973755 ], + [ 8.8393698, 46.9975461 ], + [ 8.8393176, 46.9978464 ], + [ 8.8392655, 46.9981467 ], + [ 8.8392708, 46.9984458 ], + [ 8.839284, 46.9987334 ], + [ 8.839345, 46.9989917 ], + [ 8.8392503, 46.9996146 ], + [ 8.8393206, 46.9997261 ], + [ 8.8394783, 46.999751 ], + [ 8.8395964, 46.999805 ], + [ 8.839703, 46.9997971 ], + [ 8.8398326, 46.9997547 ], + [ 8.8400287, 46.9997111 ], + [ 8.8402258, 46.9997069 ], + [ 8.8404227, 46.9996914 ], + [ 8.8405966, 46.9997104 ], + [ 8.840795, 46.9997231 ], + [ 8.8409526, 46.9997479 ], + [ 8.8410924, 46.9997507 ], + [ 8.8413041, 46.9997066 ], + [ 8.8414592, 46.9996638 ], + [ 8.8415804, 46.9996161 ], + [ 8.841692, 46.999546 ], + [ 8.8417302, 46.9994661 ], + [ 8.8417004, 46.9993651 ], + [ 8.84167, 46.9992417 ], + [ 8.8417418, 46.9991893 ], + [ 8.8419385, 46.9991682 ], + [ 8.842112, 46.9991702 ], + [ 8.8422553, 46.9992462 ], + [ 8.8423623, 46.9992495 ], + [ 8.8425103, 46.999252 ], + [ 8.8426823, 46.9992315 ], + [ 8.8428627, 46.9992164 ], + [ 8.8429873, 46.9992362 ], + [ 8.8431372, 46.9992782 ], + [ 8.8432942, 46.9992805 ], + [ 8.843483299999999, 46.9992821 ], + [ 8.8437574, 46.9993271 ], + [ 8.8438248, 46.9993596 ], + [ 8.8440039, 46.9993276 ], + [ 8.8442825, 46.9992934 ], + [ 8.8445461, 46.9992878 ], + [ 8.8449232, 46.9992516 ], + [ 8.8451694, 46.999235 ], + [ 8.8454404, 46.9992293 ], + [ 8.8457763, 46.9991884 ], + [ 8.8460735, 46.9992046 ], + [ 8.8463211, 46.9992163 ], + [ 8.8466055, 46.9993119 ], + [ 8.8468129, 46.9993526 ], + [ 8.8471223, 46.9994589 ], + [ 8.8475293, 46.9995293 ], + [ 8.8479222, 46.9996564 ], + [ 8.8482583, 46.999813 ], + [ 8.8485283, 46.999954 ], + [ 8.8486793, 47.0000073 ], + [ 8.8488439, 47.0000151 ], + [ 8.8490257, 47.0000224 ], + [ 8.8491911, 47.0000302 ], + [ 8.849356, 47.0000493 ], + [ 8.8495541, 47.0000508 ], + [ 8.849671, 47.0000877 ], + [ 8.8497714, 47.0001251 ], + [ 8.8499295, 47.0001669 ], + [ 8.8499982, 47.0002162 ], + [ 8.850098299999999, 47.0002424 ], + [ 8.8502646, 47.0002839 ], + [ 8.8504227, 47.0003259 ], + [ 8.850507799999999, 47.0003748 ], + [ 8.8505514, 47.0004359 ], + [ 8.8506613, 47.0004901 ], + [ 8.8507453, 47.0005278 ], + [ 8.8508279, 47.000543 ], + [ 8.8509688, 47.0005568 ], + [ 8.8511099, 47.0005765 ], + [ 8.8511855, 47.0006087 ], + [ 8.8512701, 47.0006689 ], + [ 8.851395, 47.0007002 ], + [ 8.8515182, 47.0006977 ], + [ 8.851621699999999, 47.0007858 ], + [ 8.8517309, 47.0008454 ], + [ 8.8518783, 47.0008254 ], + [ 8.8520924, 47.0009959 ], + [ 8.8522078, 47.0010104 ], + [ 8.8524077, 47.0010456 ], + [ 8.8526251, 47.0011256 ], + [ 8.8527845, 47.0011843 ], + [ 8.8529898, 47.0011799 ], + [ 8.853212599999999, 47.0011809 ], + [ 8.8533949, 47.0012052 ], + [ 8.8535207, 47.0012703 ], + [ 8.8536227, 47.0013358 ], + [ 8.853842, 47.0014554 ], + [ 8.8540685, 47.0015352 ], + [ 8.8542857, 47.0016039 ], + [ 8.8545253, 47.0016214 ], + [ 8.8547717, 47.0016161 ], + [ 8.8551016, 47.0016261 ], + [ 8.8553163, 47.0016327 ], + [ 8.85523, 47.0019112 ], + [ 8.8554425, 47.0020534 ], + [ 8.8556944, 47.0021609 ], + [ 8.8559114, 47.002224 ], + [ 8.8560713, 47.0023053 ], + [ 8.8562913, 47.0024192 ], + [ 8.8563854, 47.0024962 ], + [ 8.8564157, 47.0026141 ], + [ 8.8565124, 47.0027588 ], + [ 8.8569066, 47.003089 ], + [ 8.8568863, 47.0031912 ], + [ 8.8569049, 47.0032416 ], + [ 8.8569737, 47.0032965 ], + [ 8.8572052, 47.0035004 ], + [ 8.8573948, 47.003677 ], + [ 8.8576033, 47.0039153 ], + [ 8.8577039, 47.0041446 ], + [ 8.8578157, 47.0044245 ], + [ 8.8579721, 47.0047768 ], + [ 8.8580988, 47.0050281 ], + [ 8.8583422, 47.0053107 ], + [ 8.8585116, 47.0054088 ], + [ 8.8586982, 47.0055346 ], + [ 8.8588614, 47.0056723 ], + [ 8.8589147, 47.0057615 ], + [ 8.8590027, 47.0058894 ], + [ 8.8591037, 47.0061017 ], + [ 8.8592024, 47.0062915 ], + [ 8.8592955, 47.0065154 ], + [ 8.859387, 47.0067109 ], + [ 8.8594467, 47.0069468 ], + [ 8.8595662, 47.0072096 ], + [ 8.859673, 47.0073935 ], + [ 8.8598713, 47.0075869 ], + [ 8.8600956, 47.0077966 ], + [ 8.861374099999999, 47.0085539 ], + [ 8.8613165, 47.0087358 ], + [ 8.8614165, 47.0089425 ], + [ 8.8615265, 47.0091829 ], + [ 8.8616556, 47.0094963 ], + [ 8.8618796, 47.009881 ], + [ 8.8622106, 47.0102747 ], + [ 8.8621984, 47.010371 ], + [ 8.8621596, 47.0104283 ], + [ 8.8620663, 47.0105375 ], + [ 8.8620955, 47.0106441 ], + [ 8.8621433, 47.0107729 ], + [ 8.8621991, 47.0109241 ], + [ 8.8623358, 47.0110284 ], + [ 8.862516, 47.0111882 ], + [ 8.8626369, 47.0113155 ], + [ 8.8628005, 47.0114701 ], + [ 8.8629733, 47.0116301 ], + [ 8.8630881, 47.0118026 ], + [ 8.8631436, 47.0119426 ], + [ 8.8631771, 47.0121226 ], + [ 8.8631443, 47.0123095 ], + [ 8.8631339, 47.0124451 ], + [ 8.8631414, 47.0126031 ], + [ 8.8632296, 47.0127366 ], + [ 8.8633125, 47.0129155 ], + [ 8.8632567, 47.0131369 ], + [ 8.8632356, 47.013397 ], + [ 8.8632048, 47.0136291 ], + [ 8.8632489, 47.0136789 ], + [ 8.8633334, 47.0137337 ], + [ 8.8633931, 47.0137831 ], + [ 8.8634804, 47.0138828 ], + [ 8.8635443, 47.0140282 ], + [ 8.8636499, 47.0141672 ], + [ 8.8637812, 47.0143449 ], + [ 8.8638966, 47.0145119 ], + [ 8.8639684, 47.0146458 ], + [ 8.8640294, 47.0147123 ], + [ 8.8641365, 47.0147212 ], + [ 8.8642266, 47.014708 ], + [ 8.864382299999999, 47.0146878 ], + [ 8.8645238, 47.0147242 ], + [ 8.8647345, 47.0148269 ], + [ 8.8649223, 47.014964 ], + [ 8.8648451, 47.01509 ], + [ 8.8648585, 47.0151913 ], + [ 8.8649136, 47.0153143 ], + [ 8.8649603, 47.0154318 ], + [ 8.8650481, 47.0155485 ], + [ 8.8649374, 47.0156525 ], + [ 8.8649417, 47.0157539 ], + [ 8.865023, 47.0159046 ], + [ 8.8651432, 47.0160036 ], + [ 8.865261, 47.0160745 ], + [ 8.8652127, 47.0162674 ], + [ 8.8654467, 47.0163472 ], + [ 8.8656118, 47.0165298 ], + [ 8.8656653, 47.0166248 ], + [ 8.8657381, 47.0167643 ], + [ 8.8659474, 47.0168445 ], + [ 8.8661289, 47.0170212 ], + [ 8.8666923, 47.0174607 ], + [ 8.8668864, 47.0175581 ], + [ 8.8670112, 47.0175837 ], + [ 8.8672103, 47.017619 ], + [ 8.8672791, 47.0176684 ], + [ 8.8673242, 47.0177576 ], + [ 8.8673034, 47.0178428 ], + [ 8.867284699999999, 47.0179731 ], + [ 8.8672029, 47.0181724 ], + [ 8.8671322, 47.0184222 ], + [ 8.8670668, 47.0186213 ], + [ 8.8670285, 47.0188478 ], + [ 8.8670606, 47.0190052 ], + [ 8.8671222, 47.0190942 ], + [ 8.8672006, 47.0191997 ], + [ 8.8672717, 47.0193055 ], + [ 8.8673351, 47.0194339 ], + [ 8.8674087, 47.0196017 ], + [ 8.867466499999999, 47.0199506 ], + [ 8.8676245, 47.020173 ], + [ 8.8678534, 47.0203091 ], + [ 8.8680625, 47.0203781 ], + [ 8.868263, 47.0204359 ], + [ 8.8684049, 47.0204836 ], + [ 8.8685429, 47.0206049 ], + [ 8.8685722, 47.0207171 ], + [ 8.8685529, 47.0208247 ], + [ 8.8685678, 47.0209825 ], + [ 8.8685831, 47.0211234 ], + [ 8.8686839, 47.021172 ], + [ 8.8687598, 47.0212155 ], + [ 8.8688047, 47.0212935 ], + [ 8.8688595, 47.0214053 ], + [ 8.8690294, 47.0215201 ], + [ 8.869191, 47.0216296 ], + [ 8.8694635, 47.021827 ], + [ 8.8699076, 47.0221674 ], + [ 8.8703658, 47.0226374 ], + [ 8.8705, 47.0226741 ], + [ 8.8707234, 47.0226975 ], + [ 8.8709963, 47.0227255 ], + [ 8.8711399, 47.0228071 ], + [ 8.871221, 47.0229465 ], + [ 8.8712025, 47.023088 ], + [ 8.871184, 47.0232239 ], + [ 8.8712411, 47.023392 ], + [ 8.8714265, 47.0236533 ], + [ 8.871698, 47.0241838 ], + [ 8.8718248, 47.0244351 ], + [ 8.8718304, 47.0245535 ], + [ 8.8718264, 47.0246496 ], + [ 8.8717719, 47.0248878 ], + [ 8.8717962, 47.0250566 ], + [ 8.8718683, 47.0252019 ], + [ 8.8719645, 47.025324 ], + [ 8.8719858, 47.0254138 ], + [ 8.8719801, 47.0256623 ], + [ 8.8720117, 47.0259834 ], + [ 8.8720706, 47.0261853 ], + [ 8.8721132, 47.0263933 ], + [ 8.872088399999999, 47.0265745 ], + [ 8.8720195, 47.0268582 ], + [ 8.8718941, 47.0271826 ], + [ 8.8717866, 47.0275293 ], + [ 8.8716168, 47.0284982 ], + [ 8.8746179, 47.0267628 ], + [ 8.8748602, 47.0264754 ], + [ 8.8751457, 47.0262378 ], + [ 8.8754231, 47.0260004 ], + [ 8.8758008, 47.0257948 ], + [ 8.8763451, 47.0254557 ], + [ 8.8765736, 47.025575 ], + [ 8.8768239, 47.0256486 ], + [ 8.8770393, 47.0256778 ], + [ 8.8774264, 47.0256694 ], + [ 8.8777644, 47.0256735 ], + [ 8.878123800000001, 47.025615 ], + [ 8.878473, 47.0255115 ], + [ 8.878692, 47.0254278 ], + [ 8.8789409, 47.0252982 ], + [ 8.8792136, 47.0251342 ], + [ 8.8795255, 47.02493 ], + [ 8.8797252, 47.0248015 ], + [ 8.8799487, 47.0246442 ], + [ 8.8801969, 47.0244865 ], + [ 8.8803367, 47.0243028 ], + [ 8.8805026, 47.0241412 ], + [ 8.8807542, 47.0238988 ], + [ 8.8809779, 47.0237471 ], + [ 8.8812225, 47.023516 ], + [ 8.881489, 47.0233974 ], + [ 8.8816997, 47.0233138 ], + [ 8.8818728, 47.0231464 ], + [ 8.8821191, 47.0229492 ], + [ 8.8823023, 47.0228211 ], + [ 8.8825894, 47.0226117 ], + [ 8.8830593, 47.0224434 ], + [ 8.8835723, 47.0223194 ], + [ 8.8841026, 47.0221951 ], + [ 8.8844337, 47.0220638 ], + [ 8.8846021, 47.0219642 ], + [ 8.8846881, 47.0218607 ], + [ 8.8847618, 47.0216672 ], + [ 8.8849432, 47.0215053 ], + [ 8.8851519, 47.0213765 ], + [ 8.885435, 47.0212632 ], + [ 8.8857497, 47.0211323 ], + [ 8.8861288, 47.0209547 ], + [ 8.8864609, 47.0208289 ], + [ 8.886484, 47.0206196 ], + [ 8.8863652, 47.0205431 ], + [ 8.8862771, 47.0204152 ], + [ 8.8861543, 47.0202542 ], + [ 8.8861076, 47.0201366 ], + [ 8.8861427, 47.020006 ], + [ 8.886209, 47.019841 ], + [ 8.8864192, 47.0195879 ], + [ 8.886704, 47.0193278 ], + [ 8.8868029, 47.0191507 ], + [ 8.8869589, 47.0189611 ], + [ 8.8868155, 47.0187045 ], + [ 8.8865379, 47.0182306 ], + [ 8.8860376, 47.0175753 ], + [ 8.885932799999999, 47.0174365 ], + [ 8.8857286, 47.0173054 ], + [ 8.885478299999999, 47.0172318 ], + [ 8.8852779, 47.0171796 ], + [ 8.8851769, 47.0171197 ], + [ 8.8851245, 47.0170701 ], + [ 8.8850378, 47.0169646 ], + [ 8.8849489, 47.0168367 ], + [ 8.8849263, 47.0167017 ], + [ 8.8848218, 47.0165742 ], + [ 8.8846561, 47.0163745 ], + [ 8.884466, 47.0161867 ], + [ 8.8842862, 47.0160438 ], + [ 8.8841074, 47.0159066 ], + [ 8.883923, 47.0158371 ], + [ 8.8836118, 47.0156971 ], + [ 8.8833173, 47.0155679 ], + [ 8.8830885, 47.0154374 ], + [ 8.8829101, 47.0153171 ], + [ 8.8828035, 47.0151444 ], + [ 8.8825832, 47.0148386 ], + [ 8.8822333, 47.0143946 ], + [ 8.8821295, 47.0142953 ], + [ 8.8820041, 47.0142471 ], + [ 8.881879, 47.0142103 ], + [ 8.881662, 47.0141528 ], + [ 8.8815522, 47.0141045 ], + [ 8.8815006, 47.0140492 ], + [ 8.8814292, 47.0139321 ], + [ 8.8813925, 47.0138539 ], + [ 8.8813049, 47.0137429 ], + [ 8.8812106, 47.0136602 ], + [ 8.8810178, 47.0135853 ], + [ 8.8808665, 47.0135209 ], + [ 8.8807802, 47.0134324 ], + [ 8.8807188, 47.0133491 ], + [ 8.8806144, 47.0132271 ], + [ 8.8804043, 47.013147 ], + [ 8.8801965, 47.013095 ], + [ 8.8797969, 47.0130019 ], + [ 8.8794901, 47.0129635 ], + [ 8.8793033, 47.0130183 ], + [ 8.8789985, 47.0130248 ], + [ 8.87874, 47.0129514 ], + [ 8.8789705, 47.012777 ], + [ 8.879058, 47.0127018 ], + [ 8.8791894, 47.0125127 ], + [ 8.8792822, 47.0123865 ], + [ 8.8794009, 47.0122767 ], + [ 8.8794547, 47.0121964 ], + [ 8.8794588, 47.0121061 ], + [ 8.8794859, 47.0119812 ], + [ 8.8794697, 47.0118067 ], + [ 8.8794337, 47.0115703 ], + [ 8.879457, 47.0113666 ], + [ 8.8795028, 47.0111116 ], + [ 8.8795568, 47.0108565 ], + [ 8.879686, 47.0106166 ], + [ 8.8797904, 47.0103715 ], + [ 8.8798771, 47.0101101 ], + [ 8.8799481, 47.0098769 ], + [ 8.8800592, 47.0096093 ], + [ 8.8802049, 47.0095553 ], + [ 8.8804999, 47.0095208 ], + [ 8.8807708, 47.0095036 ], + [ 8.8811236, 47.0094791 ], + [ 8.8814043, 47.0094957 ], + [ 8.8817414, 47.0094659 ], + [ 8.8820354, 47.0094256 ], + [ 8.882181, 47.009366 ], + [ 8.8824164, 47.0092875 ], + [ 8.8825844, 47.0091766 ], + [ 8.8827346, 47.0090436 ], + [ 8.8829913, 47.0089026 ], + [ 8.8831866, 47.0088588 ], + [ 8.8834358, 47.008893 ], + [ 8.8836744, 47.0088992 ], + [ 8.8839878, 47.0089093 ], + [ 8.8842768, 47.0089256 ], + [ 8.8845143, 47.0088922 ], + [ 8.8848335, 47.0088403 ], + [ 8.8851762, 47.0087764 ], + [ 8.8853889, 47.008738 ], + [ 8.8857302, 47.0086516 ], + [ 8.8860152, 47.0085833 ], + [ 8.886497, 47.0084939 ], + [ 8.8867362, 47.0084944 ], + [ 8.8870075, 47.0084942 ], + [ 8.8872, 47.0085633 ], + [ 8.8874693, 47.0086704 ], + [ 8.8877129, 47.0087724 ], + [ 8.8879486, 47.0088858 ], + [ 8.8881517, 47.0090113 ], + [ 8.8883292, 47.0090978 ], + [ 8.8884811, 47.0091849 ], + [ 8.8886064, 47.0092273 ], + [ 8.888651, 47.0092941 ], + [ 8.8887928, 47.0093417 ], + [ 8.888910599999999, 47.0093788 ], + [ 8.8889854, 47.009411 ], + [ 8.8890221, 47.0094892 ], + [ 8.8891173, 47.0095775 ], + [ 8.8892265, 47.0096316 ], + [ 8.8893774, 47.0096792 ], + [ 8.8896456, 47.0097806 ], + [ 8.8899292, 47.0098704 ], + [ 8.8902384, 47.0099653 ], + [ 8.8904617, 47.0099831 ], + [ 8.8906767, 47.0100011 ], + [ 8.8909, 47.0100188 ], + [ 8.8910742, 47.0100489 ], + [ 8.8912401, 47.0100735 ], + [ 8.8914141, 47.0100924 ], + [ 8.8916046, 47.0101164 ], + [ 8.891769, 47.0101129 ], + [ 8.8919823, 47.010097 ], + [ 8.8922302, 47.0101142 ], + [ 8.8924702, 47.0101428 ], + [ 8.8927195, 47.0101827 ], + [ 8.8930511, 47.0102263 ], + [ 8.8933829, 47.0102755 ], + [ 8.8936664, 47.0103597 ], + [ 8.8938132, 47.010317 ], + [ 8.8939608, 47.0103024 ], + [ 8.8941169, 47.0102991 ], + [ 8.8942483, 47.0102963 ], + [ 8.8943975, 47.01031 ], + [ 8.894521, 47.0103185 ], + [ 8.8946555, 47.0103664 ], + [ 8.8948386, 47.0104189 ], + [ 8.8949802, 47.0104554 ], + [ 8.8951807, 47.0105131 ], + [ 8.8954982, 47.0106135 ], + [ 8.8958221, 47.0106742 ], + [ 8.8960536, 47.0106918 ], + [ 8.8962782, 47.0107265 ], + [ 8.8964608, 47.010762 ], + [ 8.8967169, 47.010779 ], + [ 8.8969238, 47.0107971 ], + [ 8.897113, 47.0108043 ], + [ 8.8972783, 47.0108064 ], + [ 8.8974441, 47.0108254 ], + [ 8.8976263, 47.010844 ], + [ 8.897799599999999, 47.0108684 ], + [ 8.8979223, 47.0108488 ], + [ 8.8980884, 47.010879 ], + [ 8.8982049, 47.0108992 ], + [ 8.8984049, 47.0109399 ], + [ 8.8985465, 47.0109764 ], + [ 8.8987215, 47.0110347 ], + [ 8.8988871, 47.0110481 ], + [ 8.8990463, 47.0110954 ], + [ 8.8992129, 47.0111483 ], + [ 8.899397, 47.0112064 ], + [ 8.8995564, 47.0112649 ], + [ 8.8996882, 47.0112734 ], + [ 8.899837699999999, 47.0112984 ], + [ 8.8999478, 47.011358 ], + [ 8.9000401, 47.0113957 ], + [ 8.9001976, 47.0114147 ], + [ 8.9003209, 47.011412 ], + [ 8.9005336, 47.0113736 ], + [ 8.9008684, 47.0113211 ], + [ 8.9013498, 47.0112204 ], + [ 8.9018383, 47.0111082 ], + [ 8.9023449, 47.0110237 ], + [ 8.9026172, 47.0110291 ], + [ 8.9028633, 47.0110124 ], + [ 8.9031391, 47.0110855 ], + [ 8.9033735, 47.011182 ], + [ 8.903437199999999, 47.0111354 ], + [ 8.903615, 47.0110526 ], + [ 8.9038678, 47.0110076 ], + [ 8.9040801, 47.0109578 ], + [ 8.904217599999999, 47.010904 ], + [ 8.9042613, 47.0107902 ], + [ 8.9044257, 47.0107865 ], + [ 8.9044212, 47.0106851 ], + [ 8.9043495, 47.0105568 ], + [ 8.9042313, 47.0105029 ], + [ 8.9040715, 47.010433 ], + [ 8.9039197, 47.0103516 ], + [ 8.9038217, 47.0101957 ], + [ 8.9037067, 47.0100175 ], + [ 8.9035964, 47.0099521 ], + [ 8.9034035, 47.0098717 ], + [ 8.9032671, 47.0097843 ], + [ 8.9032014, 47.0096052 ], + [ 8.9031342, 47.0094033 ], + [ 8.9030938, 47.0092461 ], + [ 8.9030197, 47.0090615 ], + [ 8.9030413, 47.0088296 ], + [ 8.903049, 47.0086318 ], + [ 8.9030956, 47.0084107 ], + [ 8.9031939, 47.0082166 ], + [ 8.9032803, 47.0079493 ], + [ 8.9033174, 47.0076833 ], + [ 8.9033654, 47.0074846 ], + [ 8.903437, 47.007246 ], + [ 8.9035092, 47.0070299 ], + [ 8.9034586, 47.0066528 ], + [ 8.903437199999999, 47.0063823 ], + [ 8.9033677, 47.0061241 ], + [ 8.9032388, 47.0058278 ], + [ 8.9030675, 47.0055154 ], + [ 8.9028629, 47.0051868 ], + [ 8.9027011, 47.0048911 ], + [ 8.9024578, 47.0048005 ], + [ 8.9022387, 47.0046922 ], + [ 8.9019525, 47.0045686 ], + [ 8.9016753, 47.0044392 ], + [ 8.9015197, 47.0042788 ], + [ 8.9013078, 47.0039843 ], + [ 8.9009847, 47.0032292 ], + [ 8.9007583, 47.0027938 ], + [ 8.9012648, 47.0025288 ], + [ 8.9015455, 47.0023646 ], + [ 8.9019586, 47.0020507 ], + [ 8.9025741, 47.0016535 ], + [ 8.9025243, 47.0005821 ], + [ 8.9025194, 47.0003112 ], + [ 8.9025936, 47.0001403 ], + [ 8.9026859, 46.9999971 ], + [ 8.9027964, 46.9998931 ], + [ 8.9029727, 46.9997876 ], + [ 8.903174, 46.999693 ], + [ 8.9034345, 46.9996309 ], + [ 8.9036294, 46.9995758 ], + [ 8.9037992, 46.9995044 ], + [ 8.9040444, 46.9994539 ], + [ 8.904188, 46.9993547 ], + [ 8.904297, 46.9992226 ], + [ 8.904372, 46.9990798 ], + [ 8.9044801, 46.9989137 ], + [ 8.9045913, 46.9988323 ], + [ 8.9047105, 46.998745 ], + [ 8.9049277, 46.998633 ], + [ 8.9050808, 46.9985506 ], + [ 8.9052661, 46.9984732 ], + [ 8.9054752, 46.9983671 ], + [ 8.9056858, 46.9982835 ], + [ 8.9058998, 46.998115 ], + [ 8.9060909, 46.997981 ], + [ 8.9062713, 46.9977853 ], + [ 8.9063558, 46.9976592 ], + [ 8.9064768, 46.9974252 ], + [ 8.9064989, 46.9971818 ], + [ 8.9065693, 46.996932 ], + [ 8.9067015, 46.9967766 ], + [ 8.9068114, 46.9966501 ], + [ 8.9070125, 46.9965497 ], + [ 8.9071628, 46.9964279 ], + [ 8.9073287, 46.9962718 ], + [ 8.9073906, 46.9961915 ], + [ 8.9073532, 46.9960851 ], + [ 8.9073724, 46.9959775 ], + [ 8.9074504, 46.9958854 ], + [ 8.9075381, 46.9958158 ], + [ 8.9076006, 46.9957579 ], + [ 8.9076126, 46.995656 ], + [ 8.907588, 46.9954759 ], + [ 8.9075617, 46.9952677 ], + [ 8.9075438, 46.9950648 ], + [ 8.907628, 46.9949275 ], + [ 8.9077858, 46.9947773 ], + [ 8.9079274, 46.9946387 ], + [ 8.9080452, 46.9945288 ], + [ 8.9080753, 46.9944549 ], + [ 8.9080347, 46.9942921 ], + [ 8.907965, 46.9942089 ], + [ 8.9079435, 46.9941133 ], + [ 8.9078907, 46.9938661 ], + [ 8.9078905, 46.9936799 ], + [ 8.9079271, 46.9935774 ], + [ 8.9079378, 46.9934586 ], + [ 8.907907699999999, 46.9933464 ], + [ 8.9079195, 46.9932388 ], + [ 8.9079666, 46.993187 ], + [ 8.9080937, 46.9930883 ], + [ 8.908354, 46.9930205 ], + [ 8.9086317, 46.9929862 ], + [ 8.9089427, 46.9929399 ], + [ 8.9092109, 46.9928607 ], + [ 8.909437, 46.9927768 ], + [ 8.9097052, 46.9926975 ], + [ 8.9099045, 46.9925633 ], + [ 8.9100539, 46.9924076 ], + [ 8.9102572, 46.9921774 ], + [ 8.9105661, 46.992086 ], + [ 8.9108659, 46.9919891 ], + [ 8.9110015, 46.9919015 ], + [ 8.9111804, 46.9916831 ], + [ 8.911535, 46.9913367 ], + [ 8.9117257, 46.9911914 ], + [ 8.9119045, 46.9911479 ], + [ 8.9121075, 46.991087 ], + [ 8.9122093, 46.9909663 ], + [ 8.9123034, 46.9908626 ], + [ 8.9124636, 46.9907688 ], + [ 8.9126385, 46.9906465 ], + [ 8.9126935, 46.9905831 ], + [ 8.9128018, 46.9904283 ], + [ 8.9130017, 46.9903167 ], + [ 8.9131966, 46.9902617 ], + [ 8.9135305, 46.9901809 ], + [ 8.9137745, 46.9901192 ], + [ 8.914005, 46.9901029 ], + [ 8.9143502, 46.9901066 ], + [ 8.9145876, 46.9900731 ], + [ 8.9143872, 46.9896598 ], + [ 8.9142586, 46.9895554 ], + [ 8.9141542, 46.9894335 ], + [ 8.9140493, 46.9892947 ], + [ 8.9140194, 46.9891937 ], + [ 8.9140151, 46.9890978 ], + [ 8.9140277, 46.9890185 ], + [ 8.9141367, 46.9888863 ], + [ 8.9142641, 46.9887988 ], + [ 8.9143914, 46.9887058 ], + [ 8.9145777, 46.9886396 ], + [ 8.9147409, 46.9885964 ], + [ 8.9149298, 46.9885923 ], + [ 8.9151679, 46.9885871 ], + [ 8.9153761, 46.9886277 ], + [ 8.9155833, 46.9886627 ], + [ 8.9158869, 46.9886448 ], + [ 8.9161811, 46.9885876 ], + [ 8.9164821, 46.9885076 ], + [ 8.9169688, 46.9883671 ], + [ 8.9173616, 46.9881271 ], + [ 8.9176415, 46.9877878 ], + [ 8.9179162, 46.987319 ], + [ 8.9182142, 46.9868325 ], + [ 8.918247, 46.9866512 ], + [ 8.9177894, 46.9862097 ], + [ 8.917785, 46.9861081 ], + [ 8.9177401, 46.9860301 ], + [ 8.9176361, 46.9859251 ], + [ 8.9173675, 46.9858067 ], + [ 8.9170626, 46.9856272 ], + [ 8.9167843, 46.9854864 ], + [ 8.9165881, 46.985344 ], + [ 8.9163709, 46.9850948 ], + [ 8.9160641, 46.9848756 ], + [ 8.9157138, 46.9845954 ], + [ 8.9155447, 46.9845145 ], + [ 8.9153599, 46.9844281 ], + [ 8.915141, 46.9843257 ], + [ 8.914922, 46.9842176 ], + [ 8.9147006, 46.9840586 ], + [ 8.9145705, 46.983926 ], + [ 8.9144806, 46.9837643 ], + [ 8.9143697, 46.9836763 ], + [ 8.9142081, 46.9835671 ], + [ 8.9140552, 46.9834744 ], + [ 8.9138456, 46.9833829 ], + [ 8.9136101, 46.9832752 ], + [ 8.9133814, 46.9831447 ], + [ 8.9131949, 46.9830247 ], + [ 8.913037899999999, 46.9828417 ], + [ 8.912939, 46.9826519 ], + [ 8.9128492, 46.9824959 ], + [ 8.9127041, 46.9823862 ], + [ 8.9125265, 46.982294 ], + [ 8.9123339, 46.9822193 ], + [ 8.9121235, 46.9821278 ], + [ 8.9118975, 46.9820368 ], + [ 8.9116609, 46.9819178 ], + [ 8.9113837, 46.9817884 ], + [ 8.9112138, 46.9816735 ], + [ 8.9110408, 46.9815079 ], + [ 8.910870599999999, 46.9813819 ], + [ 8.9107206, 46.9813343 ], + [ 8.9105764, 46.9812584 ], + [ 8.9103511, 46.9811955 ], + [ 8.9101092, 46.9811219 ], + [ 8.9099499, 46.9810632 ], + [ 8.9098038, 46.9809196 ], + [ 8.909655, 46.9807366 ], + [ 8.9095408, 46.9805867 ], + [ 8.9093382, 46.9804781 ], + [ 8.9091286, 46.9803867 ], + [ 8.908826, 46.9802579 ], + [ 8.9081918, 46.9800798 ], + [ 8.9162878, 46.9740489 ], + [ 8.916302, 46.9724172 ], + [ 8.9162906, 46.9721803 ], + [ 8.9162675, 46.9720284 ], + [ 8.9163029, 46.9719091 ], + [ 8.9163874, 46.9717887 ], + [ 8.9193991, 46.9665178 ], + [ 8.919127, 46.9663318 ], + [ 8.9187962, 46.9661302 ], + [ 8.9183846, 46.9659472 ], + [ 8.917957, 46.9657817 ], + [ 8.9174121, 46.9655621 ], + [ 8.9168745, 46.9653368 ], + [ 8.9164134, 46.9651437 ], + [ 8.916117, 46.9649696 ], + [ 8.9160194, 46.964824899999996 ], + [ 8.9158899, 46.9646865 ], + [ 8.9157262, 46.9645264 ], + [ 8.9155299, 46.9643783 ], + [ 8.9153598, 46.9642579 ], + [ 8.9152559, 46.9641528 ], + [ 8.9151602, 46.9640476 ], + [ 8.9151391, 46.9639353 ], + [ 8.9150975, 46.9637667 ], + [ 8.9150056, 46.96356 ], + [ 8.9148821, 46.9633707 ], + [ 8.9146918, 46.9631717 ], + [ 8.9145191, 46.9630117 ], + [ 8.914298, 46.9628585 ], + [ 8.9141796, 46.9627933 ], + [ 8.9140115, 46.9627123 ], + [ 8.9138267, 46.962626 ], + [ 8.9136139, 46.9624726 ], + [ 8.9134592, 46.9623405 ], + [ 8.9133239, 46.9622588 ], + [ 8.9131461, 46.9621554 ], + [ 8.9130195, 46.9620904 ], + [ 8.912858, 46.961981 ], + [ 8.9126387, 46.9618617 ], + [ 8.912378499999999, 46.9617488 ], + [ 8.9120118, 46.961644 ], + [ 8.9116517, 46.9615107 ], + [ 8.9116848, 46.9613406 ], + [ 8.9117432, 46.9611925 ], + [ 8.9117348, 46.9610064 ], + [ 8.911676, 46.96081 ], + [ 8.9116103, 46.960631 ], + [ 8.9114896, 46.9605094 ], + [ 8.9113413, 46.9603433 ], + [ 8.9112448, 46.9602099 ], + [ 8.9111831, 46.9601152 ], + [ 8.9110817, 46.9598916 ], + [ 8.9109486, 46.95968 ], + [ 8.9108321, 46.9594738 ], + [ 8.9107834, 46.9593167 ], + [ 8.9106326, 46.9590885 ], + [ 8.9104932, 46.9589165 ], + [ 8.9103131, 46.9587568 ], + [ 8.9099838, 46.9585777 ], + [ 8.9097061, 46.9584539 ], + [ 8.9094479, 46.9583806 ], + [ 8.9094057, 46.9581895 ], + [ 8.9093481, 46.9580044 ], + [ 8.9092232, 46.9577926 ], + [ 8.9090585, 46.9576269 ], + [ 8.9088716, 46.9574898 ], + [ 8.9086986, 46.9573186 ], + [ 8.9085532, 46.9571976 ], + [ 8.9083751, 46.9570829 ], + [ 8.9081975, 46.9569853 ], + [ 8.90807, 46.9568864 ], + [ 8.9079951, 46.9567018 ], + [ 8.9079625, 46.9565275 ], + [ 8.9079624, 46.9563468 ], + [ 8.907943, 46.9561158 ], + [ 8.907939, 46.9558505 ], + [ 8.907978, 46.9556239 ], + [ 8.9080221, 46.9555269 ], + [ 8.908024, 46.9553858 ], + [ 8.908053, 46.9551255 ], + [ 8.9081062, 46.9548477 ], + [ 8.9081848, 46.9545976 ], + [ 8.9081795, 46.9543154 ], + [ 8.9082573, 46.9540372 ], + [ 8.9083381, 46.9538378 ], + [ 8.9084255, 46.9535818 ], + [ 8.9085084, 46.9534277 ], + [ 8.9086234, 46.9532502 ], + [ 8.9087313, 46.9530841 ], + [ 8.9088199, 46.9528676 ], + [ 8.9089216, 46.9525944 ], + [ 8.909168, 46.9516972 ], + [ 8.9162634, 46.9505543 ], + [ 8.9167139, 46.9508718 ], + [ 8.9170536, 46.9511014 ], + [ 8.9172762, 46.9512829 ], + [ 8.917607499999999, 46.951507 ], + [ 8.917989500000001, 46.9517527 ], + [ 8.9182683, 46.951916 ], + [ 8.9186547, 46.9520825 ], + [ 8.9190416, 46.952266 ], + [ 8.919433699999999, 46.9523703 ], + [ 8.9198332, 46.9524744 ], + [ 8.9205151, 46.9526345 ], + [ 8.9208464, 46.952678 ], + [ 8.9212337, 46.9526978 ], + [ 8.9216304, 46.9527286 ], + [ 8.9219842, 46.9527264 ], + [ 8.9223535, 46.9527184 ], + [ 8.922623699999999, 46.9526899 ], + [ 8.9230262, 46.9526642 ], + [ 8.923313, 46.9526409 ], + [ 8.9236248, 46.9526341 ], + [ 8.9239639, 46.9526604 ], + [ 8.9243776, 46.9527136 ], + [ 8.9246169, 46.9527252 ], + [ 8.9248981, 46.9527698 ], + [ 8.9252133, 46.952825 ], + [ 8.9255564, 46.952936 ], + [ 8.9260764, 46.9531504 ], + [ 8.926346, 46.95328 ], + [ 8.9265223, 46.9533608 ], + [ 8.9267252, 46.9534804 ], + [ 8.9270034, 46.9536212 ], + [ 8.9271734, 46.9537416 ], + [ 8.9273607, 46.9538617 ], + [ 8.927523, 46.9539992 ], + [ 8.9277472, 46.9542088 ], + [ 8.9279209, 46.9544025 ], + [ 8.9281586, 46.9545611 ], + [ 8.928378, 46.954686 ], + [ 8.9286538, 46.9547703 ], + [ 8.9289053, 46.9548664 ], + [ 8.9291243, 46.9549745 ], + [ 8.9291921, 46.9551988 ], + [ 8.9293139, 46.955326 ], + [ 8.9294416, 46.9554305 ], + [ 8.9295867, 46.9555402 ], + [ 8.9297317, 46.9556443 ], + [ 8.9299011, 46.9557422 ], + [ 8.930028, 46.9558184 ], + [ 8.9302284, 46.9558761 ], + [ 8.9303944, 46.9559119 ], + [ 8.930593, 46.9559358 ], + [ 8.9308159, 46.9559477 ], + [ 8.9310211, 46.9559432 ], + [ 8.9311955, 46.9559846 ], + [ 8.931273, 46.9560564 ], + [ 8.9313013, 46.9561291 ], + [ 8.9313159, 46.9562699 ], + [ 8.9313007, 46.9564621 ], + [ 8.9312744, 46.9566095 ], + [ 8.931239, 46.9567231 ], + [ 8.9311408, 46.9569117 ], + [ 8.9310485, 46.9570491 ], + [ 8.9309414, 46.9572152 ], + [ 8.9308408, 46.9573473 ], + [ 8.9307017, 46.9575422 ], + [ 8.9305132, 46.9577326 ], + [ 8.9302656, 46.9578963 ], + [ 8.9306504, 46.9582095 ], + [ 8.9307931, 46.9582629 ], + [ 8.9309669, 46.9582816 ], + [ 8.9311836, 46.9583333 ], + [ 8.9313007, 46.9583815 ], + [ 8.9313847, 46.9584191 ], + [ 8.9315628, 46.9585337 ], + [ 8.931667, 46.95865 ], + [ 8.9317201, 46.9587279 ], + [ 8.9317914, 46.9588392 ], + [ 8.9319014, 46.9588989 ], + [ 8.931969, 46.958937 ], + [ 8.9321431, 46.958967 ], + [ 8.9323013, 46.9590143 ], + [ 8.9324194, 46.9590682 ], + [ 8.9325691, 46.9591044 ], + [ 8.9327517, 46.9591455 ], + [ 8.9329401, 46.9591245 ], + [ 8.9331304, 46.9591484 ], + [ 8.9332736, 46.9592187 ], + [ 8.9333921, 46.9592839 ], + [ 8.933444699999999, 46.9593448 ], + [ 8.9335494, 46.9594779 ], + [ 8.93365, 46.9595209 ], + [ 8.9338322, 46.9595451 ], + [ 8.9340224, 46.9595636 ], + [ 8.9341801, 46.9595939 ], + [ 8.9343648, 46.9596801 ], + [ 8.9345093, 46.9597672 ], + [ 8.9346759, 46.95982 ], + [ 8.934845, 46.9599067 ], + [ 8.9350149, 46.9600216 ], + [ 8.9351152, 46.9600531 ], + [ 8.9352314, 46.9600675 ], + [ 8.9354554, 46.960119 ], + [ 8.9356083, 46.9602116 ], + [ 8.935803, 46.9603315 ], + [ 8.935956000000001, 46.9604297 ], + [ 8.9360836, 46.9605286 ], + [ 8.9362054, 46.9606557 ], + [ 8.9363426, 46.9607769 ], + [ 8.9364308, 46.9609048 ], + [ 8.9365512, 46.9610094 ], + [ 8.9366541, 46.9611087 ], + [ 8.9368257, 46.9612517 ], + [ 8.9369528, 46.9613337 ], + [ 8.9370696, 46.9613705 ], + [ 8.9371792, 46.9614134 ], + [ 8.9373534, 46.9614433 ], + [ 8.9375685, 46.9614725 ], + [ 8.9377525, 46.9615306 ], + [ 8.9379699, 46.9616104 ], + [ 8.938187, 46.9616789 ], + [ 8.938389, 46.9617649 ], + [ 8.9386059, 46.9618278 ], + [ 8.9388317, 46.9619131 ], + [ 8.9391145, 46.9619803 ], + [ 8.9394317, 46.9620748 ], + [ 8.9396314, 46.96211 ], + [ 8.9397746, 46.9621802 ], + [ 8.9398934, 46.9622566 ], + [ 8.9399964, 46.962356 ], + [ 8.9401316, 46.962432 ], + [ 8.9403046, 46.9625976 ], + [ 8.9404156, 46.962691 ], + [ 8.9405527, 46.9628066 ], + [ 8.940681099999999, 46.9629054 ], + [ 8.9408248, 46.9629925 ], + [ 8.9409275, 46.9630806 ], + [ 8.9410538, 46.9631342 ], + [ 8.9411732, 46.9632332 ], + [ 8.9412682, 46.9633102 ], + [ 8.9414729, 46.9634636 ], + [ 8.941652, 46.9636121 ], + [ 8.9417637, 46.9636999 ], + [ 8.9418924, 46.96381 ], + [ 8.9419457, 46.9638935 ], + [ 8.9419417, 46.963983999999996 ], + [ 8.9418969, 46.9640866 ], + [ 8.941903, 46.9642163 ], + [ 8.9419416, 46.964334 ], + [ 8.9420393, 46.9644786 ], + [ 8.94222, 46.9646552 ], + [ 8.9424246, 46.9648031 ], + [ 8.9426293, 46.9649567 ], + [ 8.9428087, 46.9650882 ], + [ 8.9429867, 46.9651972 ], + [ 8.9432076, 46.9653391 ], + [ 8.9434433, 46.965458 ], + [ 8.943646, 46.9655664 ], + [ 8.9437649, 46.9656485 ], + [ 8.9439019, 46.9657584 ], + [ 8.9440903, 46.9659179 ], + [ 8.9442923, 46.9660038 ], + [ 8.9444502, 46.9660398 ], + [ 8.944635, 46.966126 ], + [ 8.9447639, 46.9662418 ], + [ 8.9448365, 46.96637 ], + [ 8.9449025, 46.9665548 ], + [ 8.9449433, 46.9667233 ], + [ 8.9450333, 46.966885 ], + [ 8.9451923, 46.9669323 ], + [ 8.9453932, 46.9670068 ], + [ 8.9455852, 46.9670591 ], + [ 8.9456603, 46.9671295 ], + [ 8.9465049, 46.9677212 ], + [ 8.9475961, 46.9682017 ], + [ 8.9481355, 46.9686894 ], + [ 8.9488728, 46.9692015 ], + [ 8.9493377, 46.9693753 ], + [ 8.9497738, 46.9694595 ], + [ 8.9496201, 46.9686698 ], + [ 8.948584, 46.9682786 ], + [ 8.9492115, 46.9681624 ], + [ 8.9497944, 46.9678578 ], + [ 8.9499088, 46.9672535 ], + [ 8.94993, 46.9670733 ], + [ 8.9500589, 46.9669816 ], + [ 8.9509103, 46.9668804 ], + [ 8.951465, 46.9665132 ], + [ 8.9518758, 46.9661659 ], + [ 8.952303, 46.9659353 ], + [ 8.9525276, 46.9659773 ], + [ 8.9527628, 46.9659292 ], + [ 8.9528904, 46.9657926 ], + [ 8.9530997, 46.965295 ], + [ 8.953226, 46.9651134 ], + [ 8.9536125, 46.9648384 ], + [ 8.953775199999999, 46.9645483 ], + [ 8.9537269, 46.9642341 ], + [ 8.9538914, 46.964007 ], + [ 8.9546674, 46.9635648 ], + [ 8.9551471, 46.9633336 ], + [ 8.955531, 46.962968599999996 ], + [ 8.9561861, 46.9628969 ], + [ 8.9566395, 46.962666 ], + [ 8.9572591, 46.9622709 ], + [ 8.9584376, 46.9621203 ], + [ 8.959377, 46.9618829 ], + [ 8.9600283, 46.9616764 ], + [ 8.9603227, 46.9614025 ], + [ 8.9612729, 46.9615429 ], + [ 8.9617914, 46.961293 ], + [ 8.9624156, 46.9610598 ], + [ 8.9631335, 46.9608883 ], + [ 8.9641877, 46.9609912 ], + [ 8.9653293, 46.960931 ], + [ 8.9656237, 46.9606572 ], + [ 8.9659076, 46.9604735 ], + [ 8.9662983, 46.9603513 ], + [ 8.9667627, 46.960507 ], + [ 8.9669513, 46.9602076 ], + [ 8.9672089, 46.9600242 ], + [ 8.9679275, 46.9598797 ], + [ 8.9682897, 46.9596769 ], + [ 8.9688839, 46.9597769 ], + [ 8.9692123, 46.9597726 ], + [ 8.9694775, 46.959859 ], + [ 8.9698665, 46.9596738 ], + [ 8.9703494, 46.9595594 ], + [ 8.9706791, 46.9596 ], + [ 8.970922, 46.9598217 ], + [ 8.9712135, 46.9599077 ], + [ 8.971647, 46.9599019 ], + [ 8.9713282, 46.9593214 ], + [ 8.971254, 46.9590255 ], + [ 8.971287, 46.9588001 ], + [ 8.9711781, 46.9586666 ], + [ 8.971106, 46.9584427 ], + [ 8.9708822, 46.9584277 ], + [ 8.9705814, 46.9584767 ], + [ 8.9704492, 46.9584515 ], + [ 8.9704441, 46.9582716 ], + [ 8.9701127, 46.9581681 ], + [ 8.969519, 46.958086 ], + [ 8.9680923, 46.9573584 ], + [ 8.9674038, 46.9576375 ], + [ 8.9668337, 46.9569973 ], + [ 8.9662528, 46.9564382 ], + [ 8.9647959, 46.9560348 ], + [ 8.9643112, 46.9551596 ], + [ 8.962918, 46.9546833 ], + [ 8.9631081, 46.9544378 ], + [ 8.9623035, 46.9538637 ], + [ 8.962292, 46.953459 ], + [ 8.9620585, 46.9531023 ], + [ 8.9619175, 46.9527622 ], + [ 8.96185, 46.9517735 ], + [ 8.9616746, 46.951146 ], + [ 8.9616914, 46.9508129 ], + [ 8.9614893, 46.9506357 ], + [ 8.9616168, 46.950499 ], + [ 8.9615448, 46.9502751 ], + [ 8.9618655, 46.9500009 ], + [ 8.9616341, 46.9487893 ], + [ 8.9611832, 46.9477157 ], + [ 8.9611985, 46.9473286 ], + [ 8.9609748, 46.9473136 ], + [ 8.9606355, 46.9469312 ], + [ 8.9599369, 46.9468506 ], + [ 8.9598555, 46.9462938 ], + [ 8.9595106, 46.9457136 ], + [ 8.9592095, 46.9452858 ], + [ 8.9584977, 46.9447374 ], + [ 8.9580923, 46.9443379 ], + [ 8.9577386, 46.9434429 ], + [ 8.9572637, 46.9429094 ], + [ 8.9574924, 46.9426364 ], + [ 8.9570743, 46.9417873 ], + [ 8.9565505, 46.9409125 ], + [ 8.9564785, 46.9406886 ], + [ 8.9565741, 46.9403544 ], + [ 8.9565284, 46.9401301 ], + [ 8.956195, 46.9399546 ], + [ 8.956098, 46.9397759 ], + [ 8.9555199, 46.9393068 ], + [ 8.9552209, 46.9389508 ], + [ 8.9554734, 46.9385876 ], + [ 8.955905, 46.9375922 ], + [ 8.9559104, 46.9368544 ], + [ 8.9576293, 46.9358599 ], + [ 8.9583159, 46.9345912 ], + [ 8.9566103, 46.9346589 ], + [ 8.9569233, 46.9341149 ], + [ 8.9578419, 46.933158 ], + [ 8.9584831, 46.9326097 ], + [ 8.959823, 46.9312243 ], + [ 8.9608865, 46.931678 ], + [ 8.9617987, 46.931423 ], + [ 8.9626804, 46.9310243 ], + [ 8.963216, 46.9304594 ], + [ 8.963504499999999, 46.9299787 ], + [ 8.9637504, 46.9293906 ], + [ 8.9642153, 46.9286467 ], + [ 8.963859, 46.9276617 ], + [ 8.9635837, 46.9272156 ], + [ 8.9632839, 46.9268327 ], + [ 8.9629756, 46.9266119 ], + [ 8.9624449, 46.926421 ], + [ 8.9618521, 46.9263569 ], + [ 8.9616577, 46.9264495 ], + [ 8.9612634, 46.9264368 ], + [ 8.960939, 46.926576 ], + [ 8.9603437, 46.926422 ], + [ 8.959481, 46.9261006 ], + [ 8.9591901, 46.9260325 ], + [ 8.9587582, 46.9260832 ], + [ 8.9585414, 46.926311 ], + [ 8.957912, 46.9263464 ], + [ 8.957753199999999, 46.9263035 ], + [ 8.9579011, 46.9259596 ], + [ 8.957632199999999, 46.9257383 ], + [ 8.957276, 46.92568 ], + [ 8.9566252, 46.9258866 ], + [ 8.9560383, 46.9260294 ], + [ 8.9547255, 46.9260468 ], + [ 8.9544642, 46.9260952 ], + [ 8.953931, 46.9258144 ], + [ 8.9537495, 46.9254299 ], + [ 8.9535533, 46.9254595 ], + [ 8.9531931, 46.9252573 ], + [ 8.9528618, 46.9251538 ], + [ 8.9521661, 46.925163 ], + [ 8.9517473, 46.9252135 ], + [ 8.9515064, 46.9250547 ], + [ 8.9511532, 46.9251044 ], + [ 8.9503096, 46.9254574 ], + [ 8.9495462, 46.9253956 ], + [ 8.9491531, 46.9254277 ], + [ 8.9487618, 46.9255229 ], + [ 8.9482954, 46.9254257 ], + [ 8.9482098, 46.9255082 ], + [ 8.9480588, 46.9256244 ], + [ 8.9478537, 46.9258039 ], + [ 8.9477191, 46.9259199 ], + [ 8.9476062, 46.9259618 ], + [ 8.9474428, 46.9259882 ], + [ 8.9473691, 46.9259953 ], + [ 8.9472958, 46.926014 ], + [ 8.9471923, 46.9260727 ], + [ 8.947038899999999, 46.9261325 ], + [ 8.9468594, 46.9261705 ], + [ 8.9466788, 46.9261688 ], + [ 8.9464825, 46.9261957 ], + [ 8.9462797, 46.9262511 ], + [ 8.9461084, 46.9262886 ], + [ 8.9458955, 46.9263046 ], + [ 8.9456892, 46.9262979 ], + [ 8.9455414, 46.9262957 ], + [ 8.9454449, 46.9263373 ], + [ 8.9452921, 46.9264197 ], + [ 8.9451314, 46.9264853 ], + [ 8.9449614, 46.9265399 ], + [ 8.9447324, 46.9265675 ], + [ 8.9445461, 46.9266282 ], + [ 8.9443422, 46.9266722 ], + [ 8.9441596, 46.926806 ], + [ 8.944060799999999, 46.9269719 ], + [ 8.9437238, 46.9271601 ], + [ 8.9434676, 46.9273012 ], + [ 8.943365, 46.9273882 ], + [ 8.9433286, 46.9274962 ], + [ 8.9432517, 46.9275939 ], + [ 8.9431463, 46.9276414 ], + [ 8.9430762, 46.9277163 ], + [ 8.9430398, 46.9278245 ], + [ 8.9428692, 46.9278564 ], + [ 8.9426462, 46.9278388 ], + [ 8.9423102, 46.9278575 ], + [ 8.9419443, 46.9279504 ], + [ 8.9416164, 46.9281439 ], + [ 8.9411232, 46.9284991 ], + [ 8.9406442, 46.9288033 ], + [ 8.9401501, 46.9291303 ], + [ 8.9395832, 46.9294928 ], + [ 8.9393475, 46.929724 ], + [ 8.939303, 46.9296571 ], + [ 8.9391513, 46.9295758 ], + [ 8.9389689, 46.9295403 ], + [ 8.9386628, 46.9295132 ], + [ 8.9382935, 46.9295157 ], + [ 8.937907299999999, 46.9295299 ], + [ 8.9375367, 46.9295155 ], + [ 8.9371727, 46.9294727 ], + [ 8.9368825, 46.9294283 ], + [ 8.936514, 46.929459 ], + [ 8.9364528, 46.9293813 ], + [ 8.9363434, 46.929316 ], + [ 8.9360681, 46.9292431 ], + [ 8.9357304, 46.9292336 ], + [ 8.9354922, 46.9292276 ], + [ 8.9352843, 46.929187 ], + [ 8.9350329, 46.9290909 ], + [ 8.9348667, 46.9290494 ], + [ 8.93482, 46.9289319 ], + [ 8.9347162, 46.928477 ], + [ 8.9347121, 46.9282118 ], + [ 8.9346649, 46.9280773 ], + [ 8.9345367, 46.9279841 ], + [ 8.9343098, 46.9278819 ], + [ 8.9341108, 46.927841 ], + [ 8.9338147, 46.9278476 ], + [ 8.9336101, 46.9278691 ], + [ 8.9333864, 46.9278232 ], + [ 8.9331779, 46.9277657 ], + [ 8.9329453, 46.9277257 ], + [ 8.9326558, 46.9276756 ], + [ 8.9324085, 46.9276641 ], + [ 8.9322576, 46.927611 ], + [ 8.9321796, 46.9275224 ], + [ 8.9321169, 46.9274222 ], + [ 8.9320242, 46.9273621 ], + [ 8.9318797, 46.927275 ], + [ 8.931769, 46.927187 ], + [ 8.9315914, 46.9270894 ], + [ 8.9313592, 46.9270324 ], + [ 8.9310676, 46.9269655 ], + [ 8.930686099999999, 46.9268836 ], + [ 8.9302226, 46.9268316 ], + [ 8.9293329, 46.9266254 ], + [ 8.9290108, 46.9265816 ], + [ 8.9287306, 46.926571 ], + [ 8.9284033, 46.9266063 ], + [ 8.9280759, 46.9266417 ], + [ 8.9277225, 46.9266552 ], + [ 8.9274726, 46.9265817 ], + [ 8.9273044, 46.926495 ], + [ 8.9272203, 46.9264517 ], + [ 8.9270698, 46.9264098 ], + [ 8.926946300000001, 46.9263957 ], + [ 8.926716, 46.9264064 ], + [ 8.926388, 46.9264192 ], + [ 8.9262386, 46.9263886 ], + [ 8.9261466, 46.9263567 ], + [ 8.9260942, 46.9263015 ], + [ 8.9259096, 46.9262151 ], + [ 8.9256111, 46.9261653 ], + [ 8.9252697, 46.9260768 ], + [ 8.9250233, 46.9260709 ], + [ 8.9248677, 46.9260857 ], + [ 8.9246085, 46.9260011 ], + [ 8.9245802, 46.9259282 ], + [ 8.924601, 46.9258488 ], + [ 8.924445, 46.9258466 ], + [ 8.9242485, 46.9258622 ], + [ 8.9241027, 46.9259049 ], + [ 8.9239316, 46.9259481 ], + [ 8.923767999999999, 46.9259687 ], + [ 8.923543, 46.9259058 ], + [ 8.9233669, 46.9258308 ], + [ 8.9231478, 46.9257113 ], + [ 8.9228712, 46.9255932 ], + [ 8.9225447, 46.9254818 ], + [ 8.9222035, 46.925399 ], + [ 8.9218616, 46.9252936 ], + [ 8.9215223, 46.9252502 ], + [ 8.921272, 46.9251654 ], + [ 8.9210043, 46.9250697 ], + [ 8.9207695, 46.9249788 ], + [ 8.9204846, 46.9248553 ], + [ 8.9202501, 46.9247756 ], + [ 8.9200774, 46.9247625 ], + [ 8.9199023, 46.9247212 ], + [ 8.9197019, 46.9246579 ], + [ 8.9194308, 46.9246469 ], + [ 8.9191574, 46.9246133 ], + [ 8.9189162, 46.9245566 ], + [ 8.9185132, 46.924379 ], + [ 8.9182859, 46.9242598 ], + [ 8.9180266, 46.9241752 ], + [ 8.9177381, 46.9241589 ], + [ 8.9175392, 46.9241182 ], + [ 8.9173712, 46.9240371 ], + [ 8.9172016, 46.923928 ], + [ 8.917069, 46.9237333 ], + [ 8.916962999999999, 46.9235775 ], + [ 8.9167837, 46.923446 ], + [ 8.9166401, 46.9233588 ], + [ 8.9164786, 46.9232437 ], + [ 8.9162683, 46.9231468 ], + [ 8.9160347, 46.9230673 ], + [ 8.9157587, 46.9229716 ], + [ 8.915536, 46.9229596 ], + [ 8.9154384, 46.9228149 ], + [ 8.9151823, 46.9227811 ], + [ 8.9150721, 46.9227157 ], + [ 8.9149764, 46.9226049 ], + [ 8.9147552, 46.9224404 ], + [ 8.9144114, 46.9222955 ], + [ 8.9141535, 46.9222277 ], + [ 8.9139558, 46.9222321 ], + [ 8.9136203, 46.9222676 ], + [ 8.9132187, 46.9222877 ], + [ 8.9128992, 46.922306 ], + [ 8.9125879, 46.9223297 ], + [ 8.9123081, 46.9223302 ], + [ 8.9120604, 46.9223074 ], + [ 8.9117375, 46.9222636 ], + [ 8.9114635, 46.9222075 ], + [ 8.9111223, 46.9221246 ], + [ 8.9102444, 46.9218051 ], + [ 8.9099192, 46.921705 ], + [ 8.9095857, 46.921605 ], + [ 8.9093369, 46.9215709 ], + [ 8.9091314, 46.9215585 ], + [ 8.9089113, 46.921614 ], + [ 8.9086161, 46.9216205 ], + [ 8.9083708, 46.9216542 ], + [ 8.9080652, 46.9216156 ], + [ 8.9077341, 46.9215721 ], + [ 8.9075447, 46.9215762 ], + [ 8.907258, 46.9215993 ], + [ 8.9070447, 46.9215983 ], + [ 8.9068033, 46.9215358 ], + [ 8.9065948, 46.9214727 ], + [ 8.9063476, 46.9214667 ], + [ 8.9060117, 46.921491 ], + [ 8.905809099999999, 46.9215519 ], + [ 8.9057009, 46.921526 ], + [ 8.9055412, 46.9214505 ], + [ 8.905316299999999, 46.9213877 ], + [ 8.9050033, 46.9213775 ], + [ 8.9048227, 46.9213758 ], + [ 8.9046817, 46.9213507 ], + [ 8.9044922, 46.9213548 ], + [ 8.9042624, 46.9213541 ], + [ 8.9040092, 46.9213992 ], + [ 8.9037979, 46.9214433 ], + [ 8.9036916, 46.9214569 ], + [ 8.9034867, 46.9214671 ], + [ 8.9031, 46.9214642 ], + [ 8.9027074, 46.9215122 ], + [ 8.902254899999999, 46.9214996 ], + [ 8.9019504, 46.9215005 ], + [ 8.9017258, 46.921449 ], + [ 8.9015356, 46.9214248 ], + [ 8.9013696, 46.9213888 ], + [ 8.9011854, 46.9213139 ], + [ 8.9009833, 46.9212167 ], + [ 8.900766, 46.9211312 ], + [ 8.9004491, 46.9210364 ], + [ 8.9002325, 46.920979 ], + [ 8.900139, 46.9209189 ], + [ 8.899954, 46.9208157 ], + [ 8.8995993, 46.9206314 ], + [ 8.8990202, 46.9203675 ], + [ 8.8986277, 46.9202405 ], + [ 8.8982966, 46.9201969 ], + [ 8.8980566, 46.9201513 ], + [ 8.8979891, 46.9201132 ], + [ 8.897928199999999, 46.9200468 ], + [ 8.8978818, 46.9199406 ], + [ 8.897785, 46.9197903 ], + [ 8.8976922, 46.9195778 ], + [ 8.8976366, 46.9194322 ], + [ 8.8974995, 46.919311 ], + [ 8.8972225, 46.9192041 ], + [ 8.8969069, 46.9191263 ], + [ 8.8965411, 46.9190439 ], + [ 8.8961053, 46.919042 ], + [ 8.8957282, 46.919056 ], + [ 8.8955451, 46.9190203 ], + [ 8.8953529, 46.9189568 ], + [ 8.8935953, 46.9179336 ], + [ 8.8933103, 46.9178044 ], + [ 8.893002, 46.9177207 ], + [ 8.8927119, 46.9176762 ], + [ 8.8923821, 46.9176494 ], + [ 8.8920362, 46.9176344 ], + [ 8.8917668, 46.9176854 ], + [ 8.8915965, 46.9177286 ], + [ 8.8914059, 46.9176932 ], + [ 8.8910878, 46.9175815 ], + [ 8.8897338, 46.9172779 ], + [ 8.8894007, 46.9171891 ], + [ 8.8890999, 46.9170827 ], + [ 8.8887791, 46.9169034 ], + [ 8.888583, 46.9167496 ], + [ 8.8884441, 46.9165888 ], + [ 8.8883173, 46.9165126 ], + [ 8.8881574, 46.9164257 ], + [ 8.8878733, 46.9163302 ], + [ 8.8876221, 46.916234 ], + [ 8.8874688, 46.9161189 ], + [ 8.887389, 46.9159907 ], + [ 8.887311799999999, 46.9159246 ], + [ 8.8871427, 46.9158324 ], + [ 8.8869953, 46.9156605 ], + [ 8.8869215, 46.9154815 ], + [ 8.8867951, 46.9154165 ], + [ 8.8865806, 46.9154042 ], + [ 8.8863164, 46.915376 ], + [ 8.8860183, 46.9153373 ], + [ 8.885695, 46.9152766 ], + [ 8.8854387, 46.915237 ], + [ 8.8852797, 46.9151839 ], + [ 8.8851138, 46.915148 ], + [ 8.8849812, 46.9151283 ], + [ 8.8847516, 46.9151334 ], + [ 8.8844405, 46.9151626 ], + [ 8.8841396, 46.9152312 ], + [ 8.8837796, 46.9152728 ], + [ 8.8834788, 46.9153471 ], + [ 8.883052, 46.9153733 ], + [ 8.8826828, 46.9153755 ], + [ 8.8823062, 46.9154063 ], + [ 8.8819218, 46.9154541 ], + [ 8.8817847, 46.9153329 ], + [ 8.8816253, 46.9152629 ], + [ 8.8815237, 46.9152087 ], + [ 8.8812594, 46.9151749 ], + [ 8.8810615, 46.9151678 ], + [ 8.8808386, 46.9151501 ], + [ 8.8806008, 46.9151552 ], + [ 8.8803965, 46.9151879 ], + [ 8.8801574, 46.9151761 ], + [ 8.8799264, 46.9151585 ], + [ 8.8796439, 46.9150912 ], + [ 8.8794615, 46.9150499 ], + [ 8.8791974, 46.9150274 ], + [ 8.878893, 46.9150284 ], + [ 8.8786618, 46.9150051 ], + [ 8.8784448, 46.9149307 ], + [ 8.8781201, 46.9148475 ], + [ 8.8777268, 46.9148672 ], + [ 8.8773083, 46.9148987 ], + [ 8.8771481, 46.9148007 ], + [ 8.8770957, 46.914559 ], + [ 8.8768486, 46.9145531 ], + [ 8.8767219, 46.9144824 ], + [ 8.8765028, 46.9143572 ], + [ 8.876473, 46.9142563 ], + [ 8.876524, 46.9141084 ], + [ 8.8765492, 46.9139442 ], + [ 8.8764609, 46.913804999999996 ], + [ 8.8762607, 46.9137416 ], + [ 8.8760847, 46.9136664 ], + [ 8.8759633, 46.9135447 ], + [ 8.8759092, 46.9134273 ], + [ 8.8758607, 46.9132704 ], + [ 8.8757553, 46.9131315 ], + [ 8.8755037, 46.9128377 ], + [ 8.8752079, 46.9124828 ], + [ 8.8749834, 46.9122505 ], + [ 8.8747609, 46.9120634 ], + [ 8.8745221, 46.9118766 ], + [ 8.8742765, 46.9117126 ], + [ 8.8741319, 46.911614 ], + [ 8.8739423, 46.9114262 ], + [ 8.8737827, 46.9113506 ], + [ 8.873566499999999, 46.9113044 ], + [ 8.8732005, 46.9112107 ], + [ 8.872961, 46.9111819 ], + [ 8.8728242, 46.9112527 ], + [ 8.8726371, 46.911285 ], + [ 8.8724476, 46.9112834 ], + [ 8.8722575, 46.9112648 ], + [ 8.8719685, 46.9112259 ], + [ 8.8717354, 46.9111631 ], + [ 8.8715172, 46.911072 ], + [ 8.8712854, 46.9110261 ], + [ 8.8711608, 46.9110005 ], + [ 8.8710079, 46.9108966 ], + [ 8.8706349, 46.9110006 ], + [ 8.8704509, 46.9109311 ], + [ 8.870345, 46.9109616 ], + [ 8.8702371, 46.910947 ], + [ 8.8699866, 46.9108451 ], + [ 8.8697192, 46.910755 ], + [ 8.8692967, 46.9106963 ], + [ 8.8691875, 46.9108171 ], + [ 8.8688792, 46.9107334 ], + [ 8.868776, 46.9108034 ], + [ 8.8685351, 46.9107522 ], + [ 8.868543, 46.910927 ], + [ 8.8683569, 46.9109931 ], + [ 8.8684787, 46.9111316 ], + [ 8.8685907, 46.9112365 ], + [ 8.8687202, 46.9113861 ], + [ 8.8687275, 46.9115383 ], + [ 8.8687126, 46.9117475 ], + [ 8.8687435, 46.9118936 ], + [ 8.8688412, 46.9120495 ], + [ 8.8689002, 46.9122629 ], + [ 8.8689096, 46.9124603 ], + [ 8.868756, 46.9127006 ], + [ 8.8686445, 46.9129514 ], + [ 8.8684737, 46.9131639 ], + [ 8.8682689, 46.9133602 ], + [ 8.8683336, 46.9135112 ], + [ 8.8683975, 46.9136622 ], + [ 8.8683891, 46.9138375 ], + [ 8.8683286, 46.9139405 ], + [ 8.8681813, 46.9139548 ], + [ 8.8680036, 46.9138458 ], + [ 8.8679097, 46.9137687 ], + [ 8.8678792, 46.9136396 ], + [ 8.8678571, 46.9135215 ], + [ 8.8677554, 46.9132752 ], + [ 8.8676649, 46.9129272 ], + [ 8.867571, 46.9128502 ], + [ 8.8674605, 46.9127679 ], + [ 8.8673803, 46.9126229 ], + [ 8.8672826, 46.9124669 ], + [ 8.8672603, 46.9123376 ], + [ 8.867335, 46.9121836 ], + [ 8.8674006, 46.9119958 ], + [ 8.8674752, 46.9118418 ], + [ 8.8674489, 46.9116223 ], + [ 8.8673407, 46.9114101 ], + [ 8.8671757, 46.9112217 ], + [ 8.8669895, 46.9111014 ], + [ 8.8667871, 46.9109872 ], + [ 8.8665096, 46.9108577 ], + [ 8.8663666, 46.9107874 ], + [ 8.8662722, 46.9106934 ], + [ 8.8661341, 46.9105609 ], + [ 8.8660038, 46.9104112 ], + [ 8.8657331, 46.9102309 ], + [ 8.8654818, 46.910129 ], + [ 8.8650409, 46.9100256 ], + [ 8.8645606, 46.9099511 ], + [ 8.8642369, 46.9098733 ], + [ 8.8638472, 46.909814 ], + [ 8.8635749, 46.909786 ], + [ 8.8631919, 46.9098563 ], + [ 8.8629077, 46.9099357 ], + [ 8.8627172, 46.9099003 ], + [ 8.8625171, 46.9098426 ], + [ 8.8623373, 46.909869 ], + [ 8.8621134, 46.9098116 ], + [ 8.8619531, 46.909736 ], + [ 8.8618181, 46.90966 ], + [ 8.8615698, 46.9096088 ], + [ 8.8611885, 46.9095549 ], + [ 8.8608996, 46.9095215 ], + [ 8.8604636, 46.9095083 ], + [ 8.8598086, 46.9095618 ], + [ 8.8594406, 46.9096092 ], + [ 8.8590884, 46.9096337 ], + [ 8.8588664, 46.909644 ], + [ 8.8586778, 46.9096481 ], + [ 8.8585061, 46.9096744 ], + [ 8.8583032, 46.9097239 ], + [ 8.8580103, 46.9097867 ], + [ 8.857611, 46.9098629 ], + [ 8.8571204, 46.9099242 ], + [ 8.856357599999999, 46.9099687 ], + [ 8.8561136, 46.9100191 ], + [ 8.8558783, 46.9100862 ], + [ 8.8555973, 46.9102277 ], + [ 8.8553392, 46.9103348 ], + [ 8.8550792, 46.9104024 ], + [ 8.8548999, 46.9104458 ], + [ 8.8546946, 46.9104389 ], + [ 8.8543801, 46.9104005 ], + [ 8.8541166, 46.9103948 ], + [ 8.8540154, 46.9103236 ], + [ 8.853887, 46.9102135 ], + [ 8.8537082, 46.9100931 ], + [ 8.8535239, 46.9100123 ], + [ 8.8533322, 46.90996 ], + [ 8.8531801, 46.9098559 ], + [ 8.8528501, 46.9096598 ], + [ 8.852572, 46.9095076 ], + [ 8.8522776, 46.9093559 ], + [ 8.8520266, 46.9092652 ], + [ 8.8518228, 46.9091284 ], + [ 8.8519028, 46.9096123 ], + [ 8.8519241, 46.909894 ], + [ 8.8519264, 46.9101367 ], + [ 8.8517995, 46.9100547 ], + [ 8.8516461, 46.9099282 ], + [ 8.8514765, 46.9098132 ], + [ 8.8513313, 46.9096921 ], + [ 8.8512241, 46.9095138 ], + [ 8.8511656, 46.9093175 ], + [ 8.8509976, 46.9092307 ], + [ 8.8509784, 46.9095303 ], + [ 8.8509569, 46.9097735 ], + [ 8.8509587, 46.9099993 ], + [ 8.8509782, 46.9102416 ], + [ 8.8509885, 46.910478499999996 ], + [ 8.8510501, 46.9107312 ], + [ 8.8511242, 46.9109273 ], + [ 8.8511663, 46.9111238 ], + [ 8.8511604, 46.9111804 ], + [ 8.8511089, 46.9113114 ], + [ 8.8510871, 46.9115433 ], + [ 8.8510965, 46.9117463 ], + [ 8.8511185, 46.9120507 ], + [ 8.8509224, 46.9118968 ], + [ 8.8507677, 46.9117533 ], + [ 8.850605, 46.9116214 ], + [ 8.850583499999999, 46.9118645 ], + [ 8.8505915, 46.9120449 ], + [ 8.8506107, 46.9122761 ], + [ 8.8505776, 46.9124518 ], + [ 8.8505025, 46.9127808 ], + [ 8.8503563, 46.913179 ], + [ 8.8501675, 46.9135499 ], + [ 8.8500119, 46.9137509 ], + [ 8.8498274, 46.9138507 ], + [ 8.8495319, 46.9140321 ], + [ 8.8492138, 46.9142647 ], + [ 8.8489743, 46.9144221 ], + [ 8.8487548, 46.9144719 ], + [ 8.8484868, 46.9145454 ], + [ 8.8482415, 46.9145789 ], + [ 8.8480002, 46.9147026 ], + [ 8.8477868, 46.9147015 ], + [ 8.8476293, 46.9146709 ], + [ 8.8474521, 46.9145788 ], + [ 8.8472237, 46.9144426 ], + [ 8.8471318, 46.9144105 ], + [ 8.8470493, 46.9143954 ], + [ 8.8468597, 46.9143938 ], + [ 8.8466297, 46.9143818 ], + [ 8.8464667, 46.9144247 ], + [ 8.8463473, 46.9145063 ], + [ 8.846279599999999, 46.9146432 ], + [ 8.8462949, 46.9147897 ], + [ 8.8463502, 46.9149296 ], + [ 8.846381, 46.91507 ], + [ 8.8464129, 46.9152219 ], + [ 8.8464045, 46.9154026 ], + [ 8.8463562, 46.9155957 ], + [ 8.8462354, 46.9158409 ], + [ 8.8461217, 46.9160409 ], + [ 8.8460514, 46.9163021 ], + [ 8.8460244, 46.9164325 ], + [ 8.8459964, 46.9165516 ], + [ 8.8459608, 46.9166652 ], + [ 8.8458455, 46.9168372 ], + [ 8.8456667, 46.917061 ], + [ 8.845466, 46.917358899999996 ], + [ 8.8452294, 46.9175671 ], + [ 8.8449432, 46.9177933 ], + [ 8.8446553, 46.9179575 ], + [ 8.8444711, 46.9180687 ], + [ 8.8444261, 46.9181656 ], + [ 8.8444469, 46.9182724 ], + [ 8.8444915, 46.9183449 ], + [ 8.8445751, 46.9183714 ], + [ 8.844692, 46.9184197 ], + [ 8.8447954, 46.9185135 ], + [ 8.8448899, 46.918613 ], + [ 8.844954, 46.9187415 ], + [ 8.844921, 46.9189228 ], + [ 8.8448719, 46.9191159 ], + [ 8.8447786, 46.9192194 ], + [ 8.8445707, 46.919365 ], + [ 8.8443074, 46.9195286 ], + [ 8.8440127, 46.9197438 ], + [ 8.8438059, 46.9199006 ], + [ 8.8436726, 46.9200445 ], + [ 8.8436308, 46.9202035 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "JBG0032", + "country" : "CHE", + "name" : [ + { + "text" : "Eidgenössisches Jagdbanngebiet Silbern-Jägern-Bödmerenwald", + "lang" : "de-CH" + }, + { + "text" : "District franc fédéral Silbern-Jägern-Bödmerenwald", + "lang" : "fr-CH" + }, + { + "text" : "Bandita federale di caccia Silbern-Jägern-Bödmerenwald", + "lang" : "it-CH" + }, + { + "text" : "Federal Game Reserve Silbern-Jägern-Bödmerenwald", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.3101742, 47.3452205 ], + [ 8.310273, 47.3452011 ], + [ 8.3103345, 47.3451747 ], + [ 8.310349800000001, 47.3451298 ], + [ 8.3103805, 47.3450369 ], + [ 8.310421999999999, 47.3449672 ], + [ 8.3104698, 47.3449208 ], + [ 8.3105231, 47.3448677 ], + [ 8.3105527, 47.3448168 ], + [ 8.3105418, 47.3447949 ], + [ 8.3105441, 47.3447648 ], + [ 8.3105617, 47.3447374 ], + [ 8.3105713, 47.3446919 ], + [ 8.3105928, 47.3446691 ], + [ 8.3106463, 47.3446734 ], + [ 8.3106703, 47.3446345 ], + [ 8.3106555, 47.3446072 ], + [ 8.3106053, 47.3445769 ], + [ 8.3105332, 47.3445467 ], + [ 8.3105308, 47.3445234 ], + [ 8.3105178, 47.3444908 ], + [ 8.3104794, 47.3444757 ], + [ 8.3104494, 47.3444512 ], + [ 8.3104306, 47.344418 ], + [ 8.3103731, 47.3444017 ], + [ 8.310293099999999, 47.3444082 ], + [ 8.3102495, 47.3444219 ], + [ 8.3102101, 47.3444575 ], + [ 8.3101427, 47.3444747 ], + [ 8.31007, 47.3444658 ], + [ 8.310046, 47.344454 ], + [ 8.3100376, 47.3444127 ], + [ 8.3100254, 47.3443767 ], + [ 8.3099868, 47.3443516 ], + [ 8.3099533, 47.3443432 ], + [ 8.3098837, 47.344347 ], + [ 8.3098286, 47.3443561 ], + [ 8.3098041, 47.3443736 ], + [ 8.3097546, 47.3443806 ], + [ 8.309721, 47.3443648 ], + [ 8.3096687, 47.3443725 ], + [ 8.3095666, 47.3443753 ], + [ 8.3094991, 47.3443837 ], + [ 8.309426, 47.3444009 ], + [ 8.3093808, 47.3444313 ], + [ 8.3093281, 47.3444703 ], + [ 8.309287, 47.3445153 ], + [ 8.3092847, 47.344542 ], + [ 8.3092691, 47.3445775 ], + [ 8.3092344, 47.3446051 ], + [ 8.3091966, 47.3446247 ], + [ 8.3091839, 47.3446562 ], + [ 8.3091703, 47.3446846 ], + [ 8.3091536, 47.3447198 ], + [ 8.3091206, 47.344788 ], + [ 8.3091016, 47.3448456 ], + [ 8.309106, 47.3448756 ], + [ 8.3091331, 47.3448941 ], + [ 8.3091896, 47.344909 ], + [ 8.3092385, 47.344918 ], + [ 8.3092572, 47.3449493 ], + [ 8.3092943, 47.3449957 ], + [ 8.309295, 47.3450297 ], + [ 8.3092729, 47.3450739 ], + [ 8.3092641, 47.3451147 ], + [ 8.309301, 47.3451451 ], + [ 8.3093731, 47.3451753 ], + [ 8.3094429, 47.3451855 ], + [ 8.309515, 47.3452137 ], + [ 8.3095905, 47.3452212 ], + [ 8.3097096, 47.3452177 ], + [ 8.3098527, 47.3452174 ], + [ 8.3099786, 47.3452185 ], + [ 8.310096, 47.345223 ], + [ 8.3101742, 47.3452205 ] + ], + [ + [ 8.309709699999999, 47.3445251 ], + [ 8.309740099999999, 47.3445189 ], + [ 8.3097794, 47.3445259 ], + [ 8.3098112, 47.3445464 ], + [ 8.3098561, 47.3445961 ], + [ 8.3098837, 47.3446473 ], + [ 8.3098547, 47.3446769 ], + [ 8.3098262, 47.3446791 ], + [ 8.3097892, 47.3446406 ], + [ 8.3097503, 47.3446035 ], + [ 8.3096953, 47.3445665 ], + [ 8.309692, 47.3445465 ], + [ 8.309709699999999, 47.3445251 ] + ], + [ + [ 8.3093495, 47.3446397 ], + [ 8.3093811, 47.3446468 ], + [ 8.3094272, 47.3446651 ], + [ 8.3094737, 47.3447042 ], + [ 8.3095001, 47.3447374 ], + [ 8.3094813, 47.3447522 ], + [ 8.3094808, 47.3447755 ], + [ 8.3094571, 47.3447817 ], + [ 8.3094283, 47.3447706 ], + [ 8.3093953, 47.3447421 ], + [ 8.3093355, 47.3447085 ], + [ 8.3093198, 47.3446812 ], + [ 8.3093335, 47.3446498 ], + [ 8.3093495, 47.3446397 ] + ], + [ + [ 8.3102629, 47.3448722 ], + [ 8.3103099, 47.3448886 ], + [ 8.3103209, 47.3449138 ], + [ 8.310311, 47.3449459 ], + [ 8.3102798, 47.3449608 ], + [ 8.3102353, 47.3449772 ], + [ 8.3101811, 47.3449849 ], + [ 8.3101505, 47.3449811 ], + [ 8.3101349, 47.3449625 ], + [ 8.3101372, 47.3449365 ], + [ 8.3101682, 47.3449096 ], + [ 8.3102172, 47.3448799 ], + [ 8.3102629, 47.3448722 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "KTAG601", + "country" : "CHE", + "name" : [ + { + "text" : "Cholmoos", + "lang" : "de-CH" + }, + { + "text" : "Cholmoos", + "lang" : "fr-CH" + }, + { + "text" : "Cholmoos", + "lang" : "it-CH" + }, + { + "text" : "Cholmoos", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "regulationExemption" : "NO", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "schedule" : [ + { + "day" : [ "ANY" ], + "startTime" : "00:00:00.00+01:00", + "endTime" : "00:00:00.00+01:00" + } + ] + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Aargau", + "lang" : "de-CH" + }, + { + "text" : "Canton d'Argovie", + "lang" : "fr-CH" + }, + { + "text" : "Canton Argovia", + "lang" : "it-CH" + }, + { + "text" : "Canton of Aargau", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Departement Bau, Verkehr und Umwelt (BVU)", + "lang" : "de-CH" + }, + { + "text" : "Département de la construction, des transports et de l'environnement (CTE)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento delle costruzioni, dei trasporti e dell'ambiente (CTA)", + "lang" : "it-CH" + }, + { + "text" : "Department of Civil Engineering,Transport and Environment (CTE)", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Sektion Gewässernutzung", + "lang" : "de-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "fr-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "it-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ag.ch/de/verwaltung/bvu/umwelt-natur-landschaft/hochwasserschutz-gewaesser/gewaessernutzung", + "email" : "alg@ag.ch", + "phone" : "0041 62 835 34 50", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8911528, 47.4118143 ], + [ 7.8913288, 47.4118474 ], + [ 7.8914893, 47.4118892 ], + [ 7.8915001, 47.4118896 ], + [ 7.8915109, 47.4118895 ], + [ 7.8915217, 47.4118891 ], + [ 7.8915361, 47.4118878 ], + [ 7.8915503, 47.4118858 ], + [ 7.8915641999999995, 47.4118831 ], + [ 7.891576, 47.4118797 ], + [ 7.8915872, 47.4118755 ], + [ 7.8915977, 47.4118705 ], + [ 7.8916053999999995, 47.4118661 ], + [ 7.8916127, 47.4118613 ], + [ 7.8916193, 47.4118561 ], + [ 7.8916254, 47.4118506 ], + [ 7.8916307, 47.4118448 ], + [ 7.8916384, 47.4118338 ], + [ 7.8916457, 47.4118227 ], + [ 7.8916526, 47.4118115 ], + [ 7.8916958, 47.4117087 ], + [ 7.8917231999999995, 47.4116325 ], + [ 7.8918695, 47.4112836 ], + [ 7.8919854, 47.4110572 ], + [ 7.8920041, 47.4109511 ], + [ 7.8920274, 47.4108344 ], + [ 7.8920178, 47.4107052 ], + [ 7.8920123, 47.4106753 ], + [ 7.8919595, 47.4106265 ], + [ 7.89189, 47.4105961 ], + [ 7.8918109, 47.4105773 ], + [ 7.8917286, 47.4105642 ], + [ 7.8916535, 47.4105798 ], + [ 7.8915853, 47.4106034 ], + [ 7.8915306, 47.4106324 ], + [ 7.8914618999999995, 47.4107145 ], + [ 7.8913281, 47.4108945 ], + [ 7.8912225, 47.411056 ], + [ 7.8910996, 47.4112726 ], + [ 7.8910305, 47.4114189 ], + [ 7.8909711, 47.4115478 ], + [ 7.8909551, 47.4116707 ], + [ 7.8909927, 47.411785 ], + [ 7.8910805, 47.4118067 ], + [ 7.8911528, 47.4118143 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns126", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Mapprach - Hofmatt", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Mapprach - Hofmatt", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Mapprach - Hofmatt", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Mapprach - Hofmatt", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8855184, 47.4086403 ], + [ 7.8854782, 47.4086748 ], + [ 7.8855004, 47.4087105 ], + [ 7.8855734, 47.4088596 ], + [ 7.8856661, 47.4090736 ], + [ 7.8857752, 47.4092703 ], + [ 7.8858753, 47.4094305 ], + [ 7.8859875, 47.4096192 ], + [ 7.8860689, 47.409759 ], + [ 7.886184, 47.409926 ], + [ 7.8862704, 47.4098488 ], + [ 7.8861987, 47.4097325 ], + [ 7.8860934, 47.4095598 ], + [ 7.8859812, 47.40937 ], + [ 7.8859018, 47.4092439 ], + [ 7.8858276, 47.4091223 ], + [ 7.8857562, 47.4089721 ], + [ 7.8856864, 47.4088253 ], + [ 7.8856181, 47.4086613 ], + [ 7.885606, 47.4086341 ], + [ 7.8855184, 47.4086403 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns179", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Mapprach - Hofmatt", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Mapprach - Hofmatt", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Mapprach - Hofmatt", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Mapprach - Hofmatt", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8345239, 47.392592 ], + [ 7.8346594, 47.3928133 ], + [ 7.8347042, 47.3930074 ], + [ 7.8347733999999996, 47.3931046 ], + [ 7.8349436, 47.3931191 ], + [ 7.8350808, 47.3929353 ], + [ 7.8350648, 47.3928336 ], + [ 7.8350862, 47.3927939 ], + [ 7.8352789, 47.3928326 ], + [ 7.8354269, 47.3929084 ], + [ 7.8353646, 47.3931504 ], + [ 7.8354625, 47.3933976 ], + [ 7.835482, 47.3935919 ], + [ 7.8354388, 47.3938078 ], + [ 7.8354678, 47.3939319 ], + [ 7.8354482, 47.3940502 ], + [ 7.8355318, 47.3942299 ], + [ 7.8356154, 47.3943478 ], + [ 7.8357544, 47.3943529 ], + [ 7.8359928, 47.3942191 ], + [ 7.8361366, 47.3940699 ], + [ 7.836469, 47.3942174 ], + [ 7.836558, 47.3942377 ], + [ 7.8372533, 47.3943178 ], + [ 7.8372786, 47.3942923 ], + [ 7.8368379, 47.3940885 ], + [ 7.8367603, 47.3939948 ], + [ 7.8367059, 47.3939288 ], + [ 7.8366196, 47.3938692 ], + [ 7.836489, 47.3937333 ], + [ 7.836307, 47.3936048 ], + [ 7.8362063, 47.393431 ], + [ 7.8360564, 47.3933669 ], + [ 7.8360178, 47.3933271 ], + [ 7.836013, 47.3932046 ], + [ 7.836040000000001, 47.3931504 ], + [ 7.8359917, 47.3930688 ], + [ 7.836161, 47.3928807 ], + [ 7.8363209, 47.3928353 ], + [ 7.8364817, 47.3928334 ], + [ 7.8367109, 47.3927801 ], + [ 7.8370304, 47.3928444 ], + [ 7.8371300999999995, 47.3929149 ], + [ 7.8373961, 47.3929828 ], + [ 7.8375822, 47.3930745 ], + [ 7.8377388, 47.3933299 ], + [ 7.8378488, 47.3934592 ], + [ 7.8380345, 47.3935835 ], + [ 7.8382397, 47.3937476 ], + [ 7.8384504, 47.3934958 ], + [ 7.8386389, 47.3932707 ], + [ 7.8388299, 47.3930425 ], + [ 7.8390003, 47.392839 ], + [ 7.8387405, 47.3927837 ], + [ 7.8384466, 47.3927211 ], + [ 7.8380641, 47.3926172 ], + [ 7.8377625, 47.3925045 ], + [ 7.8374945, 47.3923752 ], + [ 7.8373842, 47.3923182 ], + [ 7.8371317, 47.3922465 ], + [ 7.8366077, 47.3921757 ], + [ 7.8361984, 47.3921123 ], + [ 7.8358038, 47.3920145 ], + [ 7.8353242, 47.392231 ], + [ 7.8347979, 47.3924685 ], + [ 7.8345239, 47.392592 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr131", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Bürgisweid", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Bürgisweid", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Bürgisweid", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Bürgisweid", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8074837, 47.4172114 ], + [ 7.8078767, 47.4172138 ], + [ 7.8079307, 47.4167263 ], + [ 7.8080075, 47.416291 ], + [ 7.8081368, 47.4160092 ], + [ 7.8084215, 47.4153588 ], + [ 7.8085232, 47.4152132 ], + [ 7.8090401, 47.4136137 ], + [ 7.809027, 47.4129459 ], + [ 7.8089515, 47.4124877 ], + [ 7.8089227999999995, 47.4124663 ], + [ 7.8088961999999995, 47.4124668 ], + [ 7.8088742, 47.4125565 ], + [ 7.8088841, 47.4128082 ], + [ 7.8088856, 47.4131458 ], + [ 7.8088334, 47.4133981 ], + [ 7.8087149, 47.4136383 ], + [ 7.8086421, 47.4138187 ], + [ 7.8085854, 47.4141491 ], + [ 7.8085204, 47.414638 ], + [ 7.8084777, 47.4151103 ], + [ 7.8082027, 47.4153817 ], + [ 7.8080294, 47.4156793 ], + [ 7.8079438, 47.4157875 ], + [ 7.8076693, 47.4161342 ], + [ 7.8073917999999995, 47.416934 ], + [ 7.8074532, 47.4170501 ], + [ 7.8074837, 47.4172114 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr133", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Buechfeld", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Buechfeld", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Buechfeld", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Buechfeld", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8530607, 47.512442300000004 ], + [ 7.8530759, 47.5124275 ], + [ 7.8530893, 47.512411900000004 ], + [ 7.8531007, 47.5123956 ], + [ 7.8532344, 47.5122058 ], + [ 7.853328, 47.5120549 ], + [ 7.8533948, 47.5118717 ], + [ 7.853359, 47.5118712 ], + [ 7.8532653, 47.5118701 ], + [ 7.85304, 47.5121755 ], + [ 7.8530607, 47.512442300000004 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns042", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Seematten-Holl", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Seematten-Holl", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Seematten-Holl", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Seematten-Holl", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.3598659, 47.1599984 ], + [ 7.3604594, 47.1599681 ], + [ 7.3605319, 47.1599599 ], + [ 7.3605195, 47.158902 ], + [ 7.3605137, 47.1589031 ], + [ 7.3597949, 47.1589665 ], + [ 7.3592105, 47.1590084 ], + [ 7.3585322, 47.159016 ], + [ 7.3580549, 47.1590309 ], + [ 7.3574615, 47.1589982 ], + [ 7.3565542, 47.1589148 ], + [ 7.3559782, 47.1588324 ], + [ 7.3549821, 47.1586464 ], + [ 7.3540922, 47.1584793 ], + [ 7.3535089, 47.1583746 ], + [ 7.3530228, 47.158241 ], + [ 7.352638, 47.1581553 ], + [ 7.3522171, 47.1580183 ], + [ 7.3520458, 47.1579542 ], + [ 7.3519331, 47.1578184 ], + [ 7.3519738, 47.1576115 ], + [ 7.3520864, 47.1573129 ], + [ 7.3522549, 47.157089 ], + [ 7.3524886, 47.1568203 ], + [ 7.3527725, 47.1565812 ], + [ 7.3532765, 47.1562577 ], + [ 7.3536025, 47.1560116 ], + [ 7.3541256, 47.1556027 ], + [ 7.3545002, 47.1553691 ], + [ 7.3549556, 47.1550744 ], + [ 7.3554134, 47.1547959 ], + [ 7.3559182, 47.1545399 ], + [ 7.3564329, 47.1542317 ], + [ 7.3570234, 47.1539317 ], + [ 7.3574622, 47.1536865 ], + [ 7.357628, 47.1535975 ], + [ 7.3577377, 47.1535193 ], + [ 7.3578617, 47.153317 ], + [ 7.3578743, 47.1531596 ], + [ 7.3578664, 47.1529411 ], + [ 7.3575698, 47.1523094 ], + [ 7.3572698, 47.1517901 ], + [ 7.3571226, 47.1516021 ], + [ 7.3568113, 47.1514273 ], + [ 7.3563015, 47.1512668 ], + [ 7.355744, 47.1510092 ], + [ 7.3552915, 47.1510179 ], + [ 7.3538964, 47.1510393 ], + [ 7.353434, 47.151075 ], + [ 7.3527087, 47.1511337 ], + [ 7.3515457, 47.1512615 ], + [ 7.350461, 47.151436 ], + [ 7.349091, 47.1516077 ], + [ 7.3475653, 47.1518017 ], + [ 7.3465639, 47.1519017 ], + [ 7.3461608, 47.1519778 ], + [ 7.3457059000000005, 47.1519701 ], + [ 7.3448432, 47.1518688 ], + [ 7.3441512, 47.1517477 ], + [ 7.3434124, 47.151541 ], + [ 7.3424906, 47.1513217 ], + [ 7.3418729, 47.1511044 ], + [ 7.341276, 47.1508187 ], + [ 7.3406767, 47.1505007 ], + [ 7.3402841, 47.1502171 ], + [ 7.3399499, 47.1500234 ], + [ 7.3397115, 47.1497002 ], + [ 7.33935, 47.1491197 ], + [ 7.3389284, 47.148532 ], + [ 7.3385204, 47.1481287 ], + [ 7.338277, 47.1478531 ], + [ 7.3382363, 47.1475986 ], + [ 7.3382656, 47.1473396 ], + [ 7.3384672, 47.1470591 ], + [ 7.3387414, 47.1466968 ], + [ 7.3389692, 47.146473 ], + [ 7.3393174, 47.1462656 ], + [ 7.3396654, 47.1461103 ], + [ 7.340021, 47.1458488 ], + [ 7.3408791, 47.1452172 ], + [ 7.341295, 47.1449046 ], + [ 7.341634, 47.1446656 ], + [ 7.3418785, 47.1443672 ], + [ 7.3420948, 47.1441434 ], + [ 7.3423116, 47.1440662 ], + [ 7.3425926, 47.1440179 ], + [ 7.3429689, 47.1441711 ], + [ 7.3432975, 47.1442703 ], + [ 7.3437258, 47.1443741 ], + [ 7.3440068, 47.144341 ], + [ 7.3444015, 47.1443526 ], + [ 7.344582, 47.144319 ], + [ 7.3448779, 47.1442744 ], + [ 7.3451903, 47.1442075 ], + [ 7.3453379, 47.1441515 ], + [ 7.3454863, 47.1440732 ], + [ 7.3456341, 47.1439276 ], + [ 7.3459964, 47.1435355 ], + [ 7.3463416, 47.1430874 ], + [ 7.345586, 47.1431092 ], + [ 7.3450603, 47.14312 ], + [ 7.3442717, 47.1431529 ], + [ 7.343582, 47.1431861 ], + [ 7.3430555, 47.1431969 ], + [ 7.3425628, 47.1432188 ], + [ 7.3422669, 47.1432298 ], + [ 7.341925, 47.1432267 ], + [ 7.3409198, 47.1432024 ], + [ 7.3401115, 47.1432044 ], + [ 7.3391779, 47.1432261 ], + [ 7.3383458, 47.1431939 ], + [ 7.3375146, 47.143088 ], + [ 7.3369634999999995, 47.1430217 ], + [ 7.3361745, 47.1428591 ], + [ 7.335374, 47.1426705 ], + [ 7.3345694, 47.1424512 ], + [ 7.3338718, 47.1423012 ], + [ 7.3332540999999996, 47.1421738 ], + [ 7.3330205, 47.142367899999996 ], + [ 7.3322132, 47.1431462 ], + [ 7.3319813, 47.1433069 ], + [ 7.3311003, 47.1438304 ], + [ 7.3309913, 47.1439311 ], + [ 7.3308163, 47.1440992 ], + [ 7.3306017, 47.1442897 ], + [ 7.3306154, 47.1444309 ], + [ 7.3306142, 47.1446342 ], + [ 7.330592, 47.1449823 ], + [ 7.3306296, 47.1451289 ], + [ 7.3307284, 47.1452198 ], + [ 7.3310641, 47.1454576 ], + [ 7.3312452, 47.1455379 ], + [ 7.3314264, 47.1455551 ], + [ 7.3316242, 47.1455562 ], + [ 7.331789, 47.1455302 ], + [ 7.3319729, 47.1454675 ], + [ 7.3321049, 47.1454083 ], + [ 7.332287, 47.1453913 ], + [ 7.3326232000000005, 47.1454114 ], + [ 7.3329289, 47.1453837 ], + [ 7.3333583, 47.145341 ], + [ 7.3335066, 47.1453421 ], + [ 7.3337767, 47.1454178 ], + [ 7.333891, 47.1455763 ], + [ 7.3340528, 47.1458408 ], + [ 7.3342751, 47.145932 ], + [ 7.334719, 47.1460645 ], + [ 7.3349323, 47.1461268 ], + [ 7.3350367, 47.146251 ], + [ 7.3351811, 47.1465408 ], + [ 7.3352923, 47.1470248 ], + [ 7.3354127, 47.1473857 ], + [ 7.3354629, 47.1478516 ], + [ 7.3354863, 47.1481331 ], + [ 7.3355319, 47.1484219 ], + [ 7.3355134, 47.1486171 ], + [ 7.3354784, 47.1488194 ], + [ 7.3355084999999995, 47.149011 ], + [ 7.3355459, 47.1492432 ], + [ 7.3356179, 47.1495365 ], + [ 7.3357952, 47.1499091 ], + [ 7.3361866, 47.1503204 ], + [ 7.336453, 47.1506265 ], + [ 7.3370181, 47.1511812 ], + [ 7.3374574, 47.151589 ], + [ 7.3376278, 47.151698 ], + [ 7.3378024, 47.1517549 ], + [ 7.3381465, 47.1519261 ], + [ 7.3385301, 47.1521755 ], + [ 7.3388512, 47.152335 ], + [ 7.3393436, 47.1525298 ], + [ 7.3396896, 47.1526038 ], + [ 7.3400521, 47.1526689 ], + [ 7.34038, 47.1527205 ], + [ 7.3406016, 47.1527665 ], + [ 7.3408653, 47.152764 ], + [ 7.3410739, 47.1526904 ], + [ 7.3413706, 47.1526808 ], + [ 7.3416904, 47.1526901 ], + [ 7.3424648999999995, 47.1527735 ], + [ 7.3435285, 47.1529417 ], + [ 7.3443195, 47.1530251 ], + [ 7.3448139, 47.1530462 ], + [ 7.3453743, 47.1530601 ], + [ 7.3457698, 47.1530893 ], + [ 7.3459412, 47.1531245 ], + [ 7.346368, 47.153167 ], + [ 7.3468121, 47.1532197 ], + [ 7.3471681, 47.1532325 ], + [ 7.3475719, 47.153231 ], + [ 7.3482593, 47.153183 ], + [ 7.3489353, 47.1530854 ], + [ 7.3496623, 47.1529664 ], + [ 7.3502641, 47.1528409 ], + [ 7.3506606, 47.1527764 ], + [ 7.350992, 47.1527219 ], + [ 7.3513984, 47.1526448 ], + [ 7.3516853, 47.1526063 ], + [ 7.3521642, 47.1525527 ], + [ 7.3526933, 47.1525288 ], + [ 7.3534293, 47.152488 ], + [ 7.3544247, 47.1525095 ], + [ 7.3551994, 47.1525253 ], + [ 7.3554886, 47.1525562 ], + [ 7.3559044, 47.1527724 ], + [ 7.3561021, 47.1528633 ], + [ 7.3561009, 47.1530774 ], + [ 7.3560487, 47.1532393 ], + [ 7.3559423, 47.1533516 ], + [ 7.355666, 47.1534738 ], + [ 7.3549049, 47.153735 ], + [ 7.3545347, 47.1538831 ], + [ 7.3542345000000005, 47.1540232 ], + [ 7.3538617, 47.1541831 ], + [ 7.3536052, 47.1542944 ], + [ 7.353446, 47.1543789 ], + [ 7.3530456, 47.1548202 ], + [ 7.3527626, 47.155016 ], + [ 7.3522313, 47.1553557 ], + [ 7.3518824, 47.1555785 ], + [ 7.3514929, 47.1558579 ], + [ 7.3511933, 47.1561212 ], + [ 7.3508499, 47.1564394 ], + [ 7.350627, 47.1566858 ], + [ 7.3504246, 47.156977 ], + [ 7.3502734, 47.1571676 ], + [ 7.3500949, 47.1574814 ], + [ 7.3500452, 47.1576118 ], + [ 7.3500763, 47.157781 ], + [ 7.3500907, 47.1580283 ], + [ 7.3501638, 47.1581975 ], + [ 7.3503324, 47.1583947 ], + [ 7.350693, 47.1586063 ], + [ 7.351235, 47.1588226 ], + [ 7.3519032, 47.1589778 ], + [ 7.3524296, 47.1591266 ], + [ 7.3528719, 47.1593158 ], + [ 7.3532071, 47.159424 ], + [ 7.3537345, 47.1595279 ], + [ 7.3544596, 47.1596184 ], + [ 7.3551015, 47.1597053 ], + [ 7.3557105, 47.1597714 ], + [ 7.3564291, 47.1598475 ], + [ 7.357104, 47.1599307 ], + [ 7.3578969, 47.1599645 ], + [ 7.3585455, 47.1599946 ], + [ 7.3592222, 47.1599834 ], + [ 7.3598659, 47.1599984 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "WZV0016", + "country" : "CHE", + "name" : [ + { + "text" : "Wasser- und Zugvogelreservat Häftli bei Büren", + "lang" : "de-CH" + }, + { + "text" : "Réserve d'oiseaux d'eau et de migrateurs Häftli bei Büren", + "lang" : "fr-CH" + }, + { + "text" : "Riserva di uccelli acquatici e migratori Häftli bei Büren", + "lang" : "it-CH" + }, + { + "text" : "Water Bird and Migratory Bird Reserves Häftli bei Büren", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8425358, 47.4360241 ], + [ 7.8425212, 47.4364784 ], + [ 7.843133, 47.4364499 ], + [ 7.8435179999999995, 47.4364116 ], + [ 7.8438467, 47.4363456 ], + [ 7.8441205, 47.4362906 ], + [ 7.8441237, 47.4362877 ], + [ 7.8441884, 47.4362296 ], + [ 7.8441577, 47.4361374 ], + [ 7.8439776, 47.4360851 ], + [ 7.8427309, 47.4359205 ], + [ 7.842573, 47.4360044 ], + [ 7.8425358, 47.4360241 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr100", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Rottannehölzli", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Rottannehölzli", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Rottannehölzli", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Rottannehölzli", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.677359, 46.5828359 ], + [ 6.6775642, 46.5831394 ], + [ 6.6776252, 46.5832306 ], + [ 6.6776687, 46.583295 ], + [ 6.6777108, 46.5833643 ], + [ 6.6777487, 46.5834347 ], + [ 6.6777825, 46.583506 ], + [ 6.6778122, 46.5835783 ], + [ 6.6778375, 46.5836509 ], + [ 6.6778876, 46.5838219 ], + [ 6.6780412, 46.5843102 ], + [ 6.6781873, 46.5847548 ], + [ 6.678218, 46.584847 ], + [ 6.6782632, 46.5850004 ], + [ 6.6782892, 46.5851018 ], + [ 6.678305, 46.5851427 ], + [ 6.6783179, 46.5852107 ], + [ 6.678339, 46.5852088 ], + [ 6.6783864, 46.5852095 ], + [ 6.6785575999999995, 46.5852984 ], + [ 6.6787984, 46.5853208 ], + [ 6.6788169, 46.5853358 ], + [ 6.678738, 46.5857483 ], + [ 6.6784447, 46.5857209 ], + [ 6.6784887, 46.5858902 ], + [ 6.6788087, 46.5867228 ], + [ 6.6788575, 46.5870791 ], + [ 6.6787856, 46.5880762 ], + [ 6.6797441, 46.5906312 ], + [ 6.6807594, 46.5933375 ], + [ 6.6788161, 46.5942178 ], + [ 6.6736522, 46.5907205 ], + [ 6.6733208, 46.5894782 ], + [ 6.6734095, 46.5893105 ], + [ 6.6734696, 46.5889871 ], + [ 6.6737947, 46.5889451 ], + [ 6.6738104, 46.5887835 ], + [ 6.6736615, 46.5888263 ], + [ 6.6735596, 46.5887346 ], + [ 6.6725904, 46.588818 ], + [ 6.6725668, 46.5888061 ], + [ 6.6723303, 46.5888979 ], + [ 6.6719092, 46.5890498 ], + [ 6.6712128, 46.5892737 ], + [ 6.6709161, 46.5892941 ], + [ 6.6705353, 46.5893658 ], + [ 6.6701635, 46.5892884 ], + [ 6.6697641, 46.5889863 ], + [ 6.6694175, 46.5885704 ], + [ 6.6697285, 46.5881089 ], + [ 6.6698234, 46.5878182 ], + [ 6.6701294, 46.5875913 ], + [ 6.6712769, 46.5872013 ], + [ 6.6712491, 46.5871401 ], + [ 6.6712194, 46.5871362 ], + [ 6.6711845, 46.5871318 ], + [ 6.671122, 46.5871245 ], + [ 6.6710908, 46.5871212 ], + [ 6.6710595, 46.5871181 ], + [ 6.6710282, 46.5871153 ], + [ 6.6709961, 46.5871126 ], + [ 6.6708063, 46.5870975 ], + [ 6.6707556, 46.5870949 ], + [ 6.6707092, 46.587095 ], + [ 6.6706628, 46.5870976 ], + [ 6.6706169, 46.5871025 ], + [ 6.6705716, 46.5871099 ], + [ 6.6705221, 46.5871207 ], + [ 6.6703389, 46.5871655 ], + [ 6.6699414, 46.5872644 ], + [ 6.6694564, 46.5873931 ], + [ 6.6682189, 46.5877081 ], + [ 6.6681058, 46.5877389 ], + [ 6.6680718, 46.5877504 ], + [ 6.6680363, 46.5877645 ], + [ 6.6680019999999995, 46.5877799 ], + [ 6.6679691, 46.5877968 ], + [ 6.6679376999999995, 46.587815 ], + [ 6.6679102, 46.587833 ], + [ 6.6678915, 46.5878474 ], + [ 6.6678743, 46.5878632 ], + [ 6.6678589, 46.5878798 ], + [ 6.6678455, 46.5878972 ], + [ 6.6678341, 46.5879153 ], + [ 6.6678247, 46.5879344 ], + [ 6.6677903, 46.5880263 ], + [ 6.6677879, 46.5880346 ], + [ 6.6677854, 46.5880449 ], + [ 6.6677834, 46.5880552 ], + [ 6.6677818, 46.5880656 ], + [ 6.6677807, 46.588076 ], + [ 6.6677799, 46.5880903 ], + [ 6.6677728, 46.5881875 ], + [ 6.6677662, 46.5882906 ], + [ 6.6677655, 46.588309 ], + [ 6.6677612, 46.588354 ], + [ 6.6677532, 46.5883989 ], + [ 6.6677477, 46.5884216 ], + [ 6.6677168, 46.5885285 ], + [ 6.6677075, 46.5885541 ], + [ 6.6676958, 46.58858 ], + [ 6.6676821, 46.5886053 ], + [ 6.6676664, 46.5886301 ], + [ 6.6676486, 46.5886542 ], + [ 6.6676281, 46.5886786 ], + [ 6.6675877, 46.58872 ], + [ 6.6675414, 46.5887599 ], + [ 6.6674906, 46.5887971 ], + [ 6.6674356, 46.5888312 ], + [ 6.6673767, 46.5888622 ], + [ 6.6672845, 46.588903 ], + [ 6.6669301999999995, 46.5889578 ], + [ 6.6668047999999995, 46.588945 ], + [ 6.66672, 46.5889323 ], + [ 6.6666365, 46.5889158 ], + [ 6.6665548999999995, 46.5888956 ], + [ 6.6664753, 46.5888716 ], + [ 6.6663954, 46.5888431 ], + [ 6.6663339, 46.5888161 ], + [ 6.666277, 46.5887866 ], + [ 6.6662235, 46.5887541 ], + [ 6.6661738, 46.5887188 ], + [ 6.6661282, 46.5886811 ], + [ 6.6660906, 46.5886445 ], + [ 6.6659913, 46.5885416 ], + [ 6.6658371, 46.5883723 ], + [ 6.6655843, 46.5880731 ], + [ 6.6654586, 46.5879129 ], + [ 6.6653186, 46.5877695 ], + [ 6.6652158, 46.5876788 ], + [ 6.6652051, 46.5876701 ], + [ 6.6651983999999995, 46.5876656 ], + [ 6.6651910999999995, 46.5876615 ], + [ 6.6651834, 46.587658 ], + [ 6.6651751, 46.587655 ], + [ 6.6651665, 46.5876525 ], + [ 6.6651576, 46.5876506 ], + [ 6.6651485, 46.5876493 ], + [ 6.6651453, 46.5876491 ], + [ 6.6651547, 46.5877145 ], + [ 6.6651726, 46.5877563 ], + [ 6.6651242, 46.5878292 ], + [ 6.6651506, 46.5878725 ], + [ 6.6651353, 46.5879308 ], + [ 6.6650798, 46.5879766 ], + [ 6.6649924, 46.5881244 ], + [ 6.6649991, 46.5882012 ], + [ 6.6651016, 46.5883661 ], + [ 6.6651815, 46.5883786 ], + [ 6.6652272, 46.588421 ], + [ 6.6652278, 46.5885507 ], + [ 6.6652434, 46.5886464 ], + [ 6.6651633, 46.588734099999996 ], + [ 6.6649329, 46.5888588 ], + [ 6.6649445, 46.5888638 ], + [ 6.6649754, 46.5888775 ], + [ 6.6650137, 46.5888982 ], + [ 6.6650492, 46.5889211 ], + [ 6.6650815, 46.5889461 ], + [ 6.6651104, 46.5889731 ], + [ 6.6651356, 46.5890017 ], + [ 6.665157, 46.5890318 ], + [ 6.6651744, 46.5890631 ], + [ 6.6651875, 46.5890953 ], + [ 6.6651965, 46.5891282 ], + [ 6.665201, 46.5891616 ], + [ 6.6652012, 46.5891951 ], + [ 6.665197, 46.5892285 ], + [ 6.6651884, 46.5892615 ], + [ 6.6651755999999995, 46.5892938 ], + [ 6.6651586, 46.5893252 ], + [ 6.6651375, 46.5893554 ], + [ 6.6651106, 46.5893864 ], + [ 6.6650995, 46.5893963 ], + [ 6.6650742, 46.5894189 ], + [ 6.6650454, 46.5894437 ], + [ 6.6650159, 46.5894682 ], + [ 6.6649904, 46.5894887 ], + [ 6.6650436, 46.5896009 ], + [ 6.6649901, 46.589713 ], + [ 6.6651992, 46.5897589 ], + [ 6.665352, 46.5898446 ], + [ 6.6659589, 46.589749 ], + [ 6.6663472, 46.5898497 ], + [ 6.6667869, 46.5900239 ], + [ 6.6672123, 46.5901989 ], + [ 6.6670359999999995, 46.5904292 ], + [ 6.6671461, 46.5904673 ], + [ 6.6674168, 46.59051 ], + [ 6.6680449, 46.5904608 ], + [ 6.668701, 46.590545 ], + [ 6.6689031, 46.5905923 ], + [ 6.6690002, 46.590475 ], + [ 6.6694432, 46.590319 ], + [ 6.6697143, 46.5904647 ], + [ 6.6697792, 46.5905212 ], + [ 6.6700964, 46.5906314 ], + [ 6.6705564, 46.590714 ], + [ 6.6709557, 46.5908722 ], + [ 6.6711759, 46.5909112 ], + [ 6.6718722, 46.5910835 ], + [ 6.6722046, 46.59138 ], + [ 6.6723565, 46.591506 ], + [ 6.6725335, 46.5918061 ], + [ 6.6728258, 46.591896 ], + [ 6.6730154, 46.5920049 ], + [ 6.6731058, 46.592128 ], + [ 6.6731659, 46.5921935 ], + [ 6.6736143, 46.5924817 ], + [ 6.6739753, 46.5926774 ], + [ 6.674107, 46.5927616 ], + [ 6.6741787, 46.5929305 ], + [ 6.6741524, 46.5930299 ], + [ 6.6742377, 46.5931394 ], + [ 6.6742061, 46.5932514 ], + [ 6.6742516, 46.5933562 ], + [ 6.6742723999999995, 46.5934253 ], + [ 6.6742866, 46.5934376 ], + [ 6.6744205999999995, 46.5934427 ], + [ 6.6749985, 46.5937389 ], + [ 6.6752221, 46.5938517 ], + [ 6.6755217, 46.5940037 ], + [ 6.6759728, 46.5940585 ], + [ 6.6762521, 46.5940695 ], + [ 6.6769081, 46.5942673 ], + [ 6.6770445, 46.5944318 ], + [ 6.677246, 46.5945526 ], + [ 6.6772638, 46.5945963 ], + [ 6.6775977, 46.5945851 ], + [ 6.6778851, 46.5945811 ], + [ 6.6782503, 46.5947159 ], + [ 6.678553, 46.5948703 ], + [ 6.6789883, 46.5950021 ], + [ 6.6790445, 46.5950667 ], + [ 6.6792195, 46.5950691 ], + [ 6.6798001, 46.5950618 ], + [ 6.6799832, 46.5950366 ], + [ 6.6801813, 46.5949656 ], + [ 6.6805406, 46.5947405 ], + [ 6.6810331, 46.5944713 ], + [ 6.6813599, 46.5943285 ], + [ 6.6819868, 46.5943346 ], + [ 6.681999, 46.5943278 ], + [ 6.6820011, 46.5943252 ], + [ 6.681922, 46.5942308 ], + [ 6.681639, 46.5939493 ], + [ 6.6813771, 46.5936384 ], + [ 6.6813133, 46.5934821 ], + [ 6.6811603999999996, 46.5933194 ], + [ 6.6811771, 46.5930942 ], + [ 6.68092, 46.5927598 ], + [ 6.6808932, 46.5926242 ], + [ 6.6808997, 46.5925898 ], + [ 6.6808079, 46.5924036 ], + [ 6.6810431, 46.592174299999996 ], + [ 6.6810938, 46.5920874 ], + [ 6.6811816, 46.5920017 ], + [ 6.6812017, 46.5918902 ], + [ 6.6812848, 46.5917251 ], + [ 6.6813722, 46.5916667 ], + [ 6.6811793, 46.5915951 ], + [ 6.6811582, 46.5913187 ], + [ 6.6815061, 46.5911941 ], + [ 6.682102, 46.5912602 ], + [ 6.6828899, 46.5913468 ], + [ 6.6831789, 46.5912839 ], + [ 6.6837356, 46.5911893 ], + [ 6.6843338, 46.5909681 ], + [ 6.6849102, 46.5906706 ], + [ 6.6849968, 46.5906184 ], + [ 6.6859026, 46.5901719 ], + [ 6.6866295000000004, 46.5892209 ], + [ 6.6876628, 46.588171 ], + [ 6.6886751, 46.5878866 ], + [ 6.689245, 46.5873106 ], + [ 6.6904585, 46.5865879 ], + [ 6.6909671, 46.586274 ], + [ 6.6915204, 46.5859325 ], + [ 6.6922654, 46.5854774 ], + [ 6.6928964, 46.5850783 ], + [ 6.6933887, 46.5847963 ], + [ 6.6943312, 46.5842295 ], + [ 6.6950434, 46.5837939 ], + [ 6.6953731, 46.5835819 ], + [ 6.6962205, 46.5830765 ], + [ 6.6970436, 46.5825708 ], + [ 6.6971412, 46.5825112 ], + [ 6.6972362, 46.5824532 ], + [ 6.6978137, 46.5820926 ], + [ 6.6983551, 46.5817704 ], + [ 6.6991271999999995, 46.5812968 ], + [ 6.6994905, 46.5810929 ], + [ 6.700035, 46.580738 ], + [ 6.7004688, 46.5807551 ], + [ 6.7015058, 46.5808145 ], + [ 6.7028261, 46.580886 ], + [ 6.7031887999999995, 46.5809197 ], + [ 6.7032484, 46.5803541 ], + [ 6.7034541, 46.5800168 ], + [ 6.7038096, 46.5796729 ], + [ 6.7041079, 46.5793423 ], + [ 6.7039606, 46.579334 ], + [ 6.7031062, 46.5795763 ], + [ 6.7015055, 46.580033 ], + [ 6.7009685, 46.5802127 ], + [ 6.7007116, 46.5798495 ], + [ 6.7006917, 46.5798335 ], + [ 6.7005426, 46.5797432 ], + [ 6.7003359, 46.5794808 ], + [ 6.7002336, 46.5792997 ], + [ 6.6997967, 46.577785 ], + [ 6.6997911, 46.577769 ], + [ 6.6993821, 46.5765883 ], + [ 6.6992583, 46.5763532 ], + [ 6.6991268, 46.5761613 ], + [ 6.6989707, 46.5759337 ], + [ 6.6999331, 46.5757247 ], + [ 6.7001758, 46.5758245 ], + [ 6.7012435, 46.5761511 ], + [ 6.7014523, 46.5768048 ], + [ 6.7015898, 46.5771733 ], + [ 6.7016409, 46.5772485 ], + [ 6.7017213, 46.5773127 ], + [ 6.7019015, 46.577368 ], + [ 6.7028017, 46.5774718 ], + [ 6.7037793, 46.5776053 ], + [ 6.7042927, 46.5775974 ], + [ 6.7040311, 46.577038 ], + [ 6.7038511, 46.5767082 ], + [ 6.7033452, 46.5758226 ], + [ 6.7028463, 46.5750845 ], + [ 6.7024735, 46.574533 ], + [ 6.7016966, 46.5734001 ], + [ 6.7015542, 46.5733484 ], + [ 6.7013869, 46.5732875 ], + [ 6.7012432, 46.5733831 ], + [ 6.7012239000000005, 46.5733984 ], + [ 6.7012035999999995, 46.573413 ], + [ 6.7011824, 46.5734271 ], + [ 6.7011603, 46.5734405 ], + [ 6.7011374, 46.5734533 ], + [ 6.701115, 46.573465 ], + [ 6.7010923, 46.5734765 ], + [ 6.7010693, 46.5734876 ], + [ 6.701046, 46.5734985 ], + [ 6.7010224, 46.5735091 ], + [ 6.7009985, 46.5735194 ], + [ 6.7009746, 46.5735296 ], + [ 6.7009508, 46.5735399 ], + [ 6.7009272, 46.5735505 ], + [ 6.7009037, 46.5735611 ], + [ 6.7008803, 46.573572 ], + [ 6.7008571, 46.573583 ], + [ 6.7008431, 46.5735897 ], + [ 6.7008292, 46.5735965 ], + [ 6.7008153, 46.5736034 ], + [ 6.7008015, 46.5736104 ], + [ 6.7007878, 46.5736174 ], + [ 6.7007741, 46.5736244 ], + [ 6.7007605, 46.5736315 ], + [ 6.7007469, 46.5736386 ], + [ 6.7007332, 46.5736457 ], + [ 6.7007195, 46.5736527 ], + [ 6.7007059, 46.5736598 ], + [ 6.7006922, 46.5736668 ], + [ 6.7006841999999995, 46.573671 ], + [ 6.7006763, 46.5736752 ], + [ 6.7006686, 46.5736795 ], + [ 6.7006609, 46.573684 ], + [ 6.7006533, 46.5736885 ], + [ 6.7006459, 46.5736931 ], + [ 6.7006383, 46.5736976 ], + [ 6.7006305, 46.5737019 ], + [ 6.7006224, 46.5737059 ], + [ 6.700614, 46.5737097 ], + [ 6.7006054, 46.5737132 ], + [ 6.7005966, 46.5737165 ], + [ 6.70058, 46.5737221 ], + [ 6.7005631999999995, 46.5737275 ], + [ 6.7005462, 46.5737326 ], + [ 6.7005289999999995, 46.5737375 ], + [ 6.7005117, 46.573742 ], + [ 6.7004942, 46.5737463 ], + [ 6.7004767, 46.5737505 ], + [ 6.7004592, 46.5737548 ], + [ 6.7004418, 46.5737591 ], + [ 6.7004244, 46.5737636 ], + [ 6.7004071, 46.5737681 ], + [ 6.7003898, 46.5737726 ], + [ 6.700358, 46.573781 ], + [ 6.7003262, 46.5737894 ], + [ 6.7002944, 46.5737976 ], + [ 6.7002626, 46.5738058 ], + [ 6.7002308, 46.573814 ], + [ 6.7001989, 46.5738221 ], + [ 6.6998802, 46.573931 ], + [ 6.6997546, 46.5739687 ], + [ 6.6997501, 46.5739662 ], + [ 6.6996382, 46.5739024 ], + [ 6.6994605, 46.5737681 ], + [ 6.6993165, 46.5736825 ], + [ 6.6991701, 46.5736476 ], + [ 6.6990111, 46.5736388 ], + [ 6.6988126999999995, 46.5735896 ], + [ 6.6986318, 46.5734898 ], + [ 6.6984493, 46.5733306 ], + [ 6.6987065999999995, 46.5732478 ], + [ 6.6988804, 46.5731604 ], + [ 6.6990813, 46.5730912 ], + [ 6.6991592, 46.5730681 ], + [ 6.6992353, 46.5730424 ], + [ 6.6993094, 46.573014 ], + [ 6.6993164, 46.5730109 ], + [ 6.6993229, 46.5730074 ], + [ 6.6993289, 46.5730034 ], + [ 6.6993344, 46.5729991 ], + [ 6.6993576, 46.5729795 ], + [ 6.6993659999999995, 46.5729724 ], + [ 6.6993741, 46.5729653 ], + [ 6.6993821, 46.5729581 ], + [ 6.6993896, 46.5729508 ], + [ 6.6993967, 46.5729434 ], + [ 6.6994032, 46.5729357 ], + [ 6.6994139, 46.5729222 ], + [ 6.6994241, 46.5729086 ], + [ 6.6994337999999996, 46.5728948 ], + [ 6.6994432, 46.5728807 ], + [ 6.6994522, 46.5728666 ], + [ 6.699461, 46.5728524 ], + [ 6.6994693, 46.5728386 ], + [ 6.6994773, 46.5728247 ], + [ 6.6994851, 46.5728107 ], + [ 6.6994923, 46.5727968 ], + [ 6.6994988, 46.5727827 ], + [ 6.6995045, 46.5727685 ], + [ 6.69951, 46.5727533 ], + [ 6.6995149, 46.5727381 ], + [ 6.6995193, 46.5727228 ], + [ 6.699523, 46.5727075 ], + [ 6.6995259, 46.5726921 ], + [ 6.699528, 46.5726766 ], + [ 6.699529, 46.572664 ], + [ 6.6995291, 46.5726513 ], + [ 6.6995284999999996, 46.5726387 ], + [ 6.6995272, 46.572626 ], + [ 6.6995254, 46.5726132 ], + [ 6.699523, 46.5726005 ], + [ 6.6995211, 46.5725927 ], + [ 6.6995185, 46.5725849 ], + [ 6.6995152000000004, 46.5725773 ], + [ 6.6995115, 46.5725695 ], + [ 6.6995074, 46.5725617 ], + [ 6.6995032, 46.572554 ], + [ 6.6995026, 46.5725531 ], + [ 6.699502, 46.5725523 ], + [ 6.6995012, 46.5725515 ], + [ 6.6995003, 46.5725508 ], + [ 6.6994995, 46.5725502 ], + [ 6.6994985, 46.5725496 ], + [ 6.6994975, 46.5725492 ], + [ 6.6994963, 46.5725487 ], + [ 6.6994662, 46.5725388 ], + [ 6.6994359, 46.572529 ], + [ 6.6994056, 46.5725193 ], + [ 6.6993752, 46.5725099 ], + [ 6.6993445, 46.5725011 ], + [ 6.6993134, 46.5724929 ], + [ 6.6992774, 46.5724841 ], + [ 6.699241, 46.5724758 ], + [ 6.6992045000000005, 46.572468 ], + [ 6.6991676, 46.5724606 ], + [ 6.6991306999999995, 46.5724535 ], + [ 6.6990936, 46.5724465 ], + [ 6.6990692, 46.5724424 ], + [ 6.6990447, 46.5724388 ], + [ 6.6990199, 46.5724359 ], + [ 6.6989944, 46.5724329 ], + [ 6.6989691, 46.5724293 ], + [ 6.698944, 46.5724249 ], + [ 6.6989341, 46.5724228 ], + [ 6.6989243, 46.5724204 ], + [ 6.6989148, 46.5724175 ], + [ 6.6989057, 46.5724144 ], + [ 6.6988967, 46.5724111 ], + [ 6.6988879, 46.5724077 ], + [ 6.6988665, 46.5723992 ], + [ 6.6988453, 46.5723904 ], + [ 6.6988242, 46.5723815 ], + [ 6.6988033, 46.5723724 ], + [ 6.6987825999999995, 46.572363 ], + [ 6.6987621, 46.5723533 ], + [ 6.6987554, 46.5723499 ], + [ 6.6987489, 46.5723462 ], + [ 6.6987428, 46.5723422 ], + [ 6.6987372, 46.5723383 ], + [ 6.6987316, 46.5723342 ], + [ 6.6987263, 46.57233 ], + [ 6.698705, 46.5723128 ], + [ 6.6986840999999995, 46.5722953 ], + [ 6.6986633, 46.5722777 ], + [ 6.6986428, 46.5722601 ], + [ 6.6986223, 46.5722425 ], + [ 6.6986018, 46.5722249 ], + [ 6.6985955, 46.5722193 ], + [ 6.6985895, 46.5722135 ], + [ 6.6985837, 46.5722077 ], + [ 6.6985746, 46.5721956 ], + [ 6.6988579999999995, 46.5720556 ], + [ 6.6992224, 46.5718828 ], + [ 6.6996134, 46.5716999 ], + [ 6.6997433, 46.5716295 ], + [ 6.6998674, 46.5715683 ], + [ 6.6994289, 46.5706531 ], + [ 6.6994354, 46.5706471 ], + [ 6.6992782, 46.5705661 ], + [ 6.6987791, 46.5703084 ], + [ 6.698353, 46.5699622 ], + [ 6.6978643, 46.5698548 ], + [ 6.6966736000000004, 46.56984 ], + [ 6.6964326, 46.5698589 ], + [ 6.6962135, 46.5699044 ], + [ 6.6961013, 46.5699553 ], + [ 6.6959143999999995, 46.5701826 ], + [ 6.6958793, 46.5702155 ], + [ 6.6958242, 46.5702634 ], + [ 6.6957725, 46.5703053 ], + [ 6.695707, 46.5703577 ], + [ 6.6956741, 46.5703839 ], + [ 6.6956411, 46.57041 ], + [ 6.695608, 46.570436 ], + [ 6.6955141000000005, 46.5705093 ], + [ 6.6954196, 46.5705821 ], + [ 6.6955279999999995, 46.5706787 ], + [ 6.695635, 46.570776 ], + [ 6.6956879, 46.5708249 ], + [ 6.6957405, 46.570874 ], + [ 6.6957908, 46.5709209 ], + [ 6.6958109, 46.5709396 ], + [ 6.6958203, 46.5709493 ], + [ 6.6958294, 46.5709591 ], + [ 6.6958379, 46.5709692 ], + [ 6.6958459999999995, 46.5709795 ], + [ 6.6958535999999995, 46.5709899 ], + [ 6.6958685, 46.5710128 ], + [ 6.695882, 46.571036 ], + [ 6.6958939, 46.5710597 ], + [ 6.6959042, 46.5710838 ], + [ 6.6959129, 46.571108100000004 ], + [ 6.6959201, 46.5711327 ], + [ 6.6960168, 46.5713877 ], + [ 6.696127, 46.5716595 ], + [ 6.6962673, 46.5720878 ], + [ 6.6964024, 46.5724592 ], + [ 6.6964811, 46.572739 ], + [ 6.6965409000000005, 46.5728616 ], + [ 6.6966868, 46.5729872 ], + [ 6.6967128, 46.5730033 ], + [ 6.6967639, 46.5730348 ], + [ 6.6967921, 46.5730522 ], + [ 6.696912, 46.5731262 ], + [ 6.6970272, 46.5732173 ], + [ 6.6970758, 46.5732708 ], + [ 6.6971085, 46.573305500000004 ], + [ 6.6971807, 46.5734112 ], + [ 6.6972297, 46.5735534 ], + [ 6.6972348, 46.5736384 ], + [ 6.6972187, 46.5737139 ], + [ 6.6971916, 46.5737878 ], + [ 6.6971537, 46.5738595 ], + [ 6.697115, 46.573916 ], + [ 6.6970696, 46.5739701 ], + [ 6.6970179, 46.5740214 ], + [ 6.6969601, 46.5740695 ], + [ 6.6969206, 46.5740845 ], + [ 6.6958198, 46.5734343 ], + [ 6.6952447, 46.5730913 ], + [ 6.6951517, 46.5730359 ], + [ 6.6951327, 46.5730244 ], + [ 6.6951125000000005, 46.5730139 ], + [ 6.6950912, 46.5730047 ], + [ 6.6950688, 46.5729966 ], + [ 6.6950456, 46.5729897 ], + [ 6.6950217, 46.5729841 ], + [ 6.6949973, 46.5729799 ], + [ 6.6949724, 46.5729769 ], + [ 6.6949628, 46.5729767 ], + [ 6.6949438, 46.572978 ], + [ 6.6949346, 46.5729795 ], + [ 6.6949255, 46.5729817 ], + [ 6.6949168, 46.5729844 ], + [ 6.6949084, 46.5729876 ], + [ 6.6949006, 46.5729913 ], + [ 6.6948932, 46.5729955 ], + [ 6.6948803, 46.5730053 ], + [ 6.6948749, 46.5730107 ], + [ 6.6948702, 46.5730165 ], + [ 6.6948663, 46.5730225 ], + [ 6.6948633, 46.5730287 ], + [ 6.6948609999999995, 46.5730351 ], + [ 6.6948597, 46.5730417 ], + [ 6.6948591, 46.5730482 ], + [ 6.6948538, 46.573088 ], + [ 6.6948315, 46.5732533 ], + [ 6.6948016, 46.5733331 ], + [ 6.6945062, 46.5733956 ], + [ 6.6942728, 46.573445 ], + [ 6.6939034, 46.5735389 ], + [ 6.6936889, 46.5736188 ], + [ 6.6935828, 46.573643 ], + [ 6.69351, 46.5736865 ], + [ 6.6932576, 46.5740361 ], + [ 6.6929394, 46.57433 ], + [ 6.6928411, 46.574389 ], + [ 6.6927184, 46.5744288 ], + [ 6.6925891, 46.5744625 ], + [ 6.6925045, 46.5744774 ], + [ 6.6924062, 46.5744886 ], + [ 6.692333, 46.5744903 ], + [ 6.6922314, 46.574479 ], + [ 6.6921069, 46.5744269 ], + [ 6.6919064, 46.5743251 ], + [ 6.6917025, 46.5741994 ], + [ 6.6914859, 46.5740728 ], + [ 6.6912873, 46.5739252 ], + [ 6.6912259, 46.5738645 ], + [ 6.6911922, 46.5738134 ], + [ 6.6911226, 46.5735757 ], + [ 6.6910527, 46.5733278 ], + [ 6.6910255, 46.5732313 ], + [ 6.6909758, 46.5730547 ], + [ 6.6909157, 46.5728415 ], + [ 6.6908750999999995, 46.5726398 ], + [ 6.690875, 46.5726391 ], + [ 6.6902155, 46.5727036 ], + [ 6.6901454000000005, 46.5731153 ], + [ 6.6903055, 46.5735207 ], + [ 6.6903006, 46.5738764 ], + [ 6.6895509, 46.57403 ], + [ 6.6893917, 46.5740143 ], + [ 6.6893291999999995, 46.5741627 ], + [ 6.6893055, 46.5744011 ], + [ 6.6893577, 46.5744749 ], + [ 6.6894772, 46.5744757 ], + [ 6.6895133, 46.5748455 ], + [ 6.6897752, 46.5752682 ], + [ 6.689869, 46.5752976 ], + [ 6.6900307, 46.5754684 ], + [ 6.6900287, 46.575612 ], + [ 6.6900047, 46.5757763 ], + [ 6.6902572, 46.576245 ], + [ 6.6894712, 46.5763447 ], + [ 6.6895778, 46.5764412 ], + [ 6.6897378, 46.5766153 ], + [ 6.6898195, 46.5767542 ], + [ 6.6899736, 46.57728 ], + [ 6.6892999, 46.5772184 ], + [ 6.6887691, 46.577203 ], + [ 6.6886503, 46.5770985 ], + [ 6.6879183, 46.5760034 ], + [ 6.6875941999999995, 46.5754241 ], + [ 6.6874377, 46.5750834 ], + [ 6.6871254, 46.5745717 ], + [ 6.6863825, 46.5746027 ], + [ 6.6863313, 46.5745659 ], + [ 6.685861, 46.5742689 ], + [ 6.6857944, 46.5742458 ], + [ 6.6857061, 46.5741975 ], + [ 6.6854516, 46.5740242 ], + [ 6.6853317, 46.5739579 ], + [ 6.6852161, 46.5739146 ], + [ 6.6850515999999995, 46.5738755 ], + [ 6.6848585, 46.5738435 ], + [ 6.6847103, 46.5738083 ], + [ 6.6845559, 46.5737341 ], + [ 6.6844659, 46.5736841 ], + [ 6.6843622, 46.5736138 ], + [ 6.6841779, 46.5734973 ], + [ 6.6840536, 46.5734176 ], + [ 6.6839387, 46.5733645 ], + [ 6.6838391, 46.5733417 ], + [ 6.6837219999999995, 46.5733308 ], + [ 6.683671, 46.5733256 ], + [ 6.6835012, 46.5733126 ], + [ 6.6834247, 46.5733149 ], + [ 6.6833718, 46.5733385 ], + [ 6.6833522, 46.5733639 ], + [ 6.6835623, 46.5736369 ], + [ 6.6837476, 46.5739046 ], + [ 6.6850606, 46.5759676 ], + [ 6.6849994, 46.5760072 ], + [ 6.684972, 46.5760044 ], + [ 6.6848969, 46.5760648 ], + [ 6.6848032, 46.5761176 ], + [ 6.6842523, 46.5762784 ], + [ 6.683705, 46.5764147 ], + [ 6.6834781, 46.5765085 ], + [ 6.683333, 46.5766087 ], + [ 6.6832327, 46.5767295 ], + [ 6.6832043, 46.5768503 ], + [ 6.6832353, 46.5769824 ], + [ 6.6833, 46.5770987 ], + [ 6.6833645, 46.5772957 ], + [ 6.6833782, 46.57747 ], + [ 6.683378, 46.5776788 ], + [ 6.6833756, 46.5777146 ], + [ 6.6833165999999995, 46.5777521 ], + [ 6.6808105, 46.5793434 ], + [ 6.6807583, 46.5794122 ], + [ 6.680621, 46.5793157 ], + [ 6.6805197, 46.5792628 ], + [ 6.6804172, 46.5792194 ], + [ 6.6802861, 46.5791566 ], + [ 6.6802081, 46.579087 ], + [ 6.6800656, 46.5788606 ], + [ 6.6800055, 46.5787198 ], + [ 6.6799312, 46.5786025 ], + [ 6.6798215, 46.5784887 ], + [ 6.6797301000000004, 46.5783806 ], + [ 6.6796918, 46.5782576 ], + [ 6.6796578, 46.5779553 ], + [ 6.6796018, 46.5777523 ], + [ 6.6795656999999995, 46.5776512 ], + [ 6.6792888, 46.5772532 ], + [ 6.6792331, 46.5772129 ], + [ 6.6790559, 46.5771179 ], + [ 6.6789176, 46.5770387 ], + [ 6.6788133, 46.5769534 ], + [ 6.6787582, 46.5768922 ], + [ 6.6786528, 46.5767144 ], + [ 6.6784324999999995, 46.5763611 ], + [ 6.6782823, 46.5761799 ], + [ 6.6777863, 46.5757549 ], + [ 6.6776361, 46.5756192 ], + [ 6.6774343, 46.5754027 ], + [ 6.6774287999999995, 46.5754052 ], + [ 6.6773437, 46.5753147 ], + [ 6.6769058999999995, 46.5747613 ], + [ 6.6768131, 46.5746247 ], + [ 6.6767723, 46.5745146 ], + [ 6.6767578, 46.5744235 ], + [ 6.6767661, 46.5743518 ], + [ 6.6753288, 46.5744293 ], + [ 6.67542, 46.574511 ], + [ 6.6758555, 46.5749561 ], + [ 6.6759129999999995, 46.5750209 ], + [ 6.6759391, 46.5750543 ], + [ 6.6759635, 46.5750884 ], + [ 6.6760067, 46.5751583 ], + [ 6.6762593, 46.5756933 ], + [ 6.6763679, 46.5758539 ], + [ 6.6764305, 46.5759632 ], + [ 6.6764487, 46.5760523 ], + [ 6.6764527000000005, 46.5762274 ], + [ 6.6763915, 46.5763944 ], + [ 6.676231, 46.5766879 ], + [ 6.6762657999999995, 46.5771427 ], + [ 6.6766602, 46.5782432 ], + [ 6.6767756, 46.5783513 ], + [ 6.6766675, 46.5784437 ], + [ 6.6766181, 46.5784403 ], + [ 6.6765994, 46.578524 ], + [ 6.6749106, 46.5785476 ], + [ 6.6740695, 46.5785064 ], + [ 6.6731748, 46.5785969 ], + [ 6.6731169999999995, 46.5787587 ], + [ 6.6736149000000005, 46.5788502 ], + [ 6.6737166, 46.5788721 ], + [ 6.6738189, 46.5788994 ], + [ 6.6739185, 46.5789313 ], + [ 6.6740147, 46.5789676 ], + [ 6.6741082, 46.5790086 ], + [ 6.6742072, 46.5790595 ], + [ 6.6743515, 46.5791617 ], + [ 6.6744772999999995, 46.5792645 ], + [ 6.6745897, 46.5793703 ], + [ 6.6754501, 46.5802482 ], + [ 6.6754616, 46.5802606 ], + [ 6.6758079, 46.5806116 ], + [ 6.6760712, 46.5809265 ], + [ 6.6762305, 46.58115 ], + [ 6.6767749, 46.5819655 ], + [ 6.6773582000000005, 46.5828348 ], + [ 6.6768058, 46.5829954 ], + [ 6.6762282, 46.582136 ], + [ 6.6756874, 46.5813214 ], + [ 6.6756161, 46.581217 ], + [ 6.6755426, 46.5811176 ], + [ 6.6753025, 46.5808331 ], + [ 6.6751563, 46.5806873 ], + [ 6.6750512, 46.5805769 ], + [ 6.6742107, 46.5797261 ], + [ 6.6735602, 46.5799526 ], + [ 6.6726693, 46.5791782 ], + [ 6.6727286, 46.5791188 ], + [ 6.672617, 46.5790994 ], + [ 6.6721408, 46.5790155 ], + [ 6.6717303999999995, 46.5789414 ], + [ 6.6715482999999995, 46.5788784 ], + [ 6.6715146, 46.5788555 ], + [ 6.6714747, 46.5788362 ], + [ 6.6713864, 46.5787876 ], + [ 6.6713826, 46.5787855 ], + [ 6.6713751, 46.5787817 ], + [ 6.6713676, 46.5787779 ], + [ 6.671361, 46.5787748 ], + [ 6.6713489, 46.5787689 ], + [ 6.6713344, 46.5787612 ], + [ 6.6713204, 46.5787531 ], + [ 6.6713069, 46.5787447 ], + [ 6.6712938, 46.5787359 ], + [ 6.6712821, 46.5787272 ], + [ 6.6712542, 46.5787055 ], + [ 6.6712278, 46.5786838 ], + [ 6.6712022, 46.5786617 ], + [ 6.6711773, 46.5786391 ], + [ 6.6711532, 46.5786162 ], + [ 6.671114, 46.5785769 ], + [ 6.6710408999999995, 46.5784447 ], + [ 6.6710287, 46.5784069 ], + [ 6.6710212, 46.5783783 ], + [ 6.6710153, 46.5783495 ], + [ 6.6710109, 46.5783189 ], + [ 6.6710076, 46.5782652 ], + [ 6.6710083000000004, 46.5781859 ], + [ 6.6710095, 46.578147 ], + [ 6.671016, 46.5780333 ], + [ 6.6710282, 46.5778154 ], + [ 6.6710308, 46.5777101 ], + [ 6.6710306, 46.5776038 ], + [ 6.6710286, 46.577497 ], + [ 6.6710278, 46.5774681 ], + [ 6.6710256999999995, 46.577442 ], + [ 6.6710222, 46.577416 ], + [ 6.6710145, 46.5773877 ], + [ 6.671011, 46.5773643 ], + [ 6.6710031, 46.577338 ], + [ 6.670994, 46.5773115 ], + [ 6.6709838, 46.577284 ], + [ 6.6709731, 46.5772567 ], + [ 6.6709610999999995, 46.577228 ], + [ 6.6709368, 46.5771752 ], + [ 6.6708917, 46.577084 ], + [ 6.6708416, 46.5769897 ], + [ 6.6707902, 46.5768895 ], + [ 6.6707668, 46.5768354 ], + [ 6.6707286, 46.5767248 ], + [ 6.6706752, 46.5764509 ], + [ 6.6706483, 46.576318 ], + [ 6.6706256, 46.5762258 ], + [ 6.6705726, 46.5760665 ], + [ 6.6705143, 46.5759029 ], + [ 6.6704292, 46.5756643 ], + [ 6.6703455, 46.5754229 ], + [ 6.6703138, 46.575318 ], + [ 6.6702893, 46.5752146 ], + [ 6.6702812, 46.5751798 ], + [ 6.6702661, 46.5751099 ], + [ 6.6702441, 46.5749952 ], + [ 6.6702443, 46.5748611 ], + [ 6.6702463, 46.5748169 ], + [ 6.6702509, 46.574772 ], + [ 6.6702582, 46.5747273 ], + [ 6.6702685, 46.5746801 ], + [ 6.6702732000000005, 46.5746658 ], + [ 6.6702718999999995, 46.5746659 ], + [ 6.6702267, 46.5746854 ], + [ 6.6700973999999995, 46.5747525 ], + [ 6.6700386, 46.5747857 ], + [ 6.6699779, 46.5748231 ], + [ 6.6698468, 46.5749042 ], + [ 6.6697216, 46.574985 ], + [ 6.6695127, 46.5751304 ], + [ 6.6692938999999996, 46.5752809 ], + [ 6.6691849, 46.5753482 ], + [ 6.6691472, 46.5753709 ], + [ 6.6691033, 46.5753946 ], + [ 6.6690576, 46.5754167 ], + [ 6.6690102, 46.5754369 ], + [ 6.6689613, 46.5754554 ], + [ 6.6689069, 46.5754733 ], + [ 6.6688843, 46.5754792 ], + [ 6.6688826, 46.5754797 ], + [ 6.6688796, 46.575481 ], + [ 6.6688769, 46.5754826 ], + [ 6.6688758, 46.5754836 ], + [ 6.6688391, 46.5755562 ], + [ 6.6687989, 46.5760839 ], + [ 6.6687359, 46.576513 ], + [ 6.6686854, 46.5768174 ], + [ 6.6686025, 46.5772931 ], + [ 6.6685733, 46.5774298 ], + [ 6.6685175999999995, 46.5776197 ], + [ 6.6683954, 46.5778607 ], + [ 6.6681927, 46.5782003 ], + [ 6.6678356, 46.578161 ], + [ 6.6677173, 46.5780346 ], + [ 6.6672913, 46.577981199999996 ], + [ 6.6673417, 46.5777612 ], + [ 6.6670316, 46.5777573 ], + [ 6.6666077, 46.5778077 ], + [ 6.6663742, 46.5778858 ], + [ 6.665982, 46.5779257 ], + [ 6.6656805, 46.5783019 ], + [ 6.6643621, 46.5782217 ], + [ 6.664256, 46.578011 ], + [ 6.6642132, 46.577867499999996 ], + [ 6.6641768, 46.5776628 ], + [ 6.6641118, 46.5772794 ], + [ 6.6639926, 46.5765572 ], + [ 6.6641851, 46.5765319 ], + [ 6.6641893, 46.5764181 ], + [ 6.6640634, 46.5759889 ], + [ 6.6638968, 46.5757641 ], + [ 6.6638605, 46.5757152 ], + [ 6.6638339, 46.5756792 ], + [ 6.6638064, 46.5756421 ], + [ 6.6637279, 46.5755362 ], + [ 6.6636367, 46.5754131 ], + [ 6.6636058, 46.5753715 ], + [ 6.6635802, 46.5753372 ], + [ 6.6635229, 46.5752734 ], + [ 6.6634713, 46.5752192 ], + [ 6.6634307, 46.5751765 ], + [ 6.6633735, 46.5751705 ], + [ 6.6631968, 46.5751607 ], + [ 6.6630259, 46.5751457 ], + [ 6.6628461, 46.5751434 ], + [ 6.6627329, 46.5751613 ], + [ 6.6627305, 46.5751522 ], + [ 6.6620732, 46.5752592 ], + [ 6.6616733, 46.5753143 ], + [ 6.6614099, 46.5753191 ], + [ 6.6612296, 46.5752994 ], + [ 6.6611481999999995, 46.5753157 ], + [ 6.6608146999999995, 46.575212 ], + [ 6.6607058, 46.5751643 ], + [ 6.6601469, 46.5750004 ], + [ 6.6599995, 46.5749428 ], + [ 6.6594589, 46.5749959 ], + [ 6.658761, 46.5747249 ], + [ 6.6586012, 46.5747919 ], + [ 6.6578968, 46.5750098 ], + [ 6.6576681, 46.574905 ], + [ 6.6576839, 46.5752291 ], + [ 6.6576203, 46.5753505 ], + [ 6.6574603, 46.5756564 ], + [ 6.6575109, 46.5758703 ], + [ 6.6575115, 46.5759605 ], + [ 6.6574175, 46.5762359 ], + [ 6.6573741, 46.5763708 ], + [ 6.6573261, 46.5764907 ], + [ 6.6572433, 46.5767873 ], + [ 6.6571901, 46.5769138 ], + [ 6.6574248, 46.5769985 ], + [ 6.6572569, 46.5772032 ], + [ 6.6572192999999995, 46.5772757 ], + [ 6.6571432, 46.5774178 ], + [ 6.6571133, 46.5774746 ], + [ 6.6570858, 46.5775269 ], + [ 6.6570612, 46.5775796 ], + [ 6.6570429, 46.5776267 ], + [ 6.6570396, 46.5776543 ], + [ 6.6570636, 46.5776679 ], + [ 6.6569752, 46.5778921 ], + [ 6.6569668, 46.5780026 ], + [ 6.6569081, 46.5780582 ], + [ 6.6569052, 46.5780805 ], + [ 6.6568936, 46.5781245 ], + [ 6.6569075, 46.5782003 ], + [ 6.6568859, 46.578235 ], + [ 6.6568848, 46.5782721 ], + [ 6.656889, 46.5782768 ], + [ 6.6568905, 46.5783713 ], + [ 6.6569284, 46.5784172 ], + [ 6.6568761, 46.5785376 ], + [ 6.6568799, 46.5785912 ], + [ 6.6568681, 46.5786244 ], + [ 6.6568814, 46.5787069 ], + [ 6.6568418, 46.578757 ], + [ 6.6568262, 46.5788682 ], + [ 6.6567979, 46.5789039 ], + [ 6.6567984, 46.5789794 ], + [ 6.6568109, 46.5790112 ], + [ 6.6567372, 46.5791279 ], + [ 6.6567196, 46.5792169 ], + [ 6.6565787, 46.5793375 ], + [ 6.656525, 46.5794277 ], + [ 6.6565085, 46.579486 ], + [ 6.6564782000000005, 46.579557199999996 ], + [ 6.6564763, 46.5795785 ], + [ 6.656483, 46.579632 ], + [ 6.6564251, 46.5798175 ], + [ 6.6563669, 46.579854 ], + [ 6.6563445, 46.5799008 ], + [ 6.656224, 46.580014 ], + [ 6.6562124, 46.5800257 ], + [ 6.6561874, 46.5800706 ], + [ 6.656108, 46.5801687 ], + [ 6.6559854, 46.5802448 ], + [ 6.6559646, 46.5802676 ], + [ 6.6559696, 46.580288 ], + [ 6.6559674, 46.5802959 ], + [ 6.6559726999999995, 46.5803061 ], + [ 6.6560166, 46.5805015 ], + [ 6.6560054, 46.5805248 ], + [ 6.6560331999999995, 46.5806037 ], + [ 6.6559839, 46.5806951 ], + [ 6.6559943, 46.5807063 ], + [ 6.6559635, 46.5807329 ], + [ 6.6558547, 46.5809349 ], + [ 6.6558471, 46.5809362 ], + [ 6.655849, 46.581004 ], + [ 6.6557513, 46.5810466 ], + [ 6.6556703, 46.5811524 ], + [ 6.6554357, 46.5812909 ], + [ 6.6553381, 46.5813306 ], + [ 6.6551053, 46.5814217 ], + [ 6.6551002, 46.5814312 ], + [ 6.6550861, 46.5815253 ], + [ 6.6550044, 46.581695 ], + [ 6.6549618, 46.581822700000004 ], + [ 6.6549178, 46.5818802 ], + [ 6.6548713, 46.5820446 ], + [ 6.6546433, 46.5822107 ], + [ 6.65459, 46.5822403 ], + [ 6.654536, 46.582273 ], + [ 6.6545116, 46.5822902 ], + [ 6.6544545, 46.5823501 ], + [ 6.6543377, 46.5824438 ], + [ 6.6543298, 46.5824961 ], + [ 6.6542867, 46.5826317 ], + [ 6.6543536, 46.5827736 ], + [ 6.6542061, 46.5829044 ], + [ 6.6542503, 46.5830493 ], + [ 6.6542624, 46.5830902 ], + [ 6.6542715999999995, 46.5831227 ], + [ 6.6543054, 46.5832311 ], + [ 6.6543165, 46.58328 ], + [ 6.654329, 46.5833159 ], + [ 6.6548576, 46.5832379 ], + [ 6.655008, 46.5841788 ], + [ 6.6551621, 46.5846392 ], + [ 6.6553207, 46.5849983 ], + [ 6.6552879, 46.5854367 ], + [ 6.6553269, 46.5858994 ], + [ 6.6555056, 46.5861894 ], + [ 6.6557416, 46.5865777 ], + [ 6.6558214, 46.5867366 ], + [ 6.6559287, 46.5869392 ], + [ 6.6560626, 46.5871392 ], + [ 6.6560786, 46.587234 ], + [ 6.6563883, 46.5872132 ], + [ 6.6569476, 46.5869942 ], + [ 6.6572485, 46.5868541 ], + [ 6.657317, 46.5868021 ], + [ 6.6574743, 46.5864704 ], + [ 6.6580058, 46.5862452 ], + [ 6.658936, 46.5862818 ], + [ 6.6594523, 46.5863512 ], + [ 6.6598661, 46.5863703 ], + [ 6.6605239, 46.5863928 ], + [ 6.6614023, 46.5865055 ], + [ 6.6614748, 46.5869163 ], + [ 6.6615251, 46.586975 ], + [ 6.6615424999999995, 46.5869949 ], + [ 6.6615606, 46.5870146 ], + [ 6.6615792, 46.587034 ], + [ 6.6615983, 46.5870531 ], + [ 6.661618, 46.587072 ], + [ 6.6616382, 46.5870906 ], + [ 6.6617825, 46.5873471 ], + [ 6.6618072, 46.5873473 ], + [ 6.6619247, 46.5873499 ], + [ 6.6620009, 46.5873526 ], + [ 6.6620764999999995, 46.587356 ], + [ 6.662152, 46.5873601 ], + [ 6.6622274, 46.5873649 ], + [ 6.6623025, 46.5873705 ], + [ 6.6623681999999995, 46.5873759 ], + [ 6.662434, 46.5873821 ], + [ 6.6624998, 46.5873889 ], + [ 6.6625653, 46.5873965 ], + [ 6.6626307, 46.5874048 ], + [ 6.662703, 46.5874147 ], + [ 6.6631488, 46.5874991 ], + [ 6.6631947, 46.5875161 ], + [ 6.6632159, 46.5875242 ], + [ 6.6632369, 46.5875324 ], + [ 6.6632578, 46.5875407 ], + [ 6.6632786, 46.5875493 ], + [ 6.6632993, 46.587558 ], + [ 6.6633513, 46.5875808 ], + [ 6.6634014, 46.5876035 ], + [ 6.6634526, 46.5876274 ], + [ 6.6635128, 46.587657 ], + [ 6.6635663, 46.5876827 ], + [ 6.6636553, 46.5877217 ], + [ 6.6636816, 46.5877327 ], + [ 6.6637086, 46.5877435 ], + [ 6.6637359, 46.5877541 ], + [ 6.6637633, 46.5877642 ], + [ 6.6637911, 46.5877741 ], + [ 6.6638172, 46.587783 ], + [ 6.6638421, 46.5877908 ], + [ 6.6638678, 46.5877983 ], + [ 6.6638939, 46.5878052 ], + [ 6.6639202, 46.5878116 ], + [ 6.6639468, 46.5878176 ], + [ 6.6639753, 46.5878233 ], + [ 6.6639888, 46.5878258 ], + [ 6.6640016, 46.5878281 ], + [ 6.6640145, 46.5878301 ], + [ 6.6640274, 46.587832 ], + [ 6.6640404, 46.5878337 ], + [ 6.6640494, 46.5878347 ], + [ 6.6640553, 46.5878352 ], + [ 6.6640598, 46.5878354 ], + [ 6.6640644, 46.5878353 ], + [ 6.6640689, 46.5878351 ], + [ 6.6640733999999995, 46.5878347 ], + [ 6.664075, 46.5878345 ], + [ 6.664332, 46.5877836 ], + [ 6.6643546, 46.5877389 ], + [ 6.6643798, 46.5876753 ], + [ 6.6644124, 46.5876021 ], + [ 6.6644599, 46.587512 ], + [ 6.664477, 46.5874828 ], + [ 6.6645003, 46.5874509 ], + [ 6.6645273, 46.5874205 ], + [ 6.6645578, 46.5873917 ], + [ 6.6645916, 46.5873647 ], + [ 6.6646285, 46.5873398 ], + [ 6.6646681999999995, 46.5873169 ], + [ 6.6647082, 46.5872976 ], + [ 6.6647383, 46.5872848 ], + [ 6.6647703, 46.5872731 ], + [ 6.6648033, 46.5872628 ], + [ 6.6648372, 46.5872541 ], + [ 6.6648718, 46.5872469 ], + [ 6.6649045000000005, 46.5872417 ], + [ 6.6649417, 46.587237 ], + [ 6.6649764000000005, 46.5872333 ], + [ 6.6650112, 46.5872301 ], + [ 6.6650462, 46.5872275 ], + [ 6.6651202, 46.5872239 ], + [ 6.6651673, 46.5872238 ], + [ 6.6652183, 46.5872267 ], + [ 6.6652687, 46.5872326 ], + [ 6.6653182, 46.5872414 ], + [ 6.6653665, 46.587253 ], + [ 6.6654122000000005, 46.5872672 ], + [ 6.6654615, 46.5872857 ], + [ 6.6655079, 46.5873062 ], + [ 6.6655522, 46.5873288 ], + [ 6.6655940000000005, 46.5873536 ], + [ 6.6656332, 46.5873803 ], + [ 6.6656679, 46.5874075 ], + [ 6.6658148, 46.5875352 ], + [ 6.6659988, 46.5877241 ], + [ 6.6661079, 46.5878671 ], + [ 6.66633, 46.5881333 ], + [ 6.6664999, 46.5883202 ], + [ 6.6665253, 46.588348 ], + [ 6.6665494, 46.588372 ], + [ 6.666575, 46.5883953 ], + [ 6.666602, 46.5884179 ], + [ 6.6666304, 46.5884396 ], + [ 6.666655, 46.588457 ], + [ 6.6666703, 46.5884659 ], + [ 6.6666898, 46.5884757 ], + [ 6.6667102, 46.5884846 ], + [ 6.6667314, 46.5884926 ], + [ 6.6667533, 46.5884996 ], + [ 6.6667762, 46.5885057 ], + [ 6.6668458, 46.5885207 ], + [ 6.66686, 46.5885237 ], + [ 6.6668652, 46.5885244 ], + [ 6.6668705, 46.5885249 ], + [ 6.6668759, 46.588525 ], + [ 6.6668812, 46.5885248 ], + [ 6.6668861, 46.5885243 ], + [ 6.6669181, 46.5885192 ], + [ 6.6669502, 46.5885121 ], + [ 6.6669812, 46.5885032 ], + [ 6.6670111, 46.5884925 ], + [ 6.6670396, 46.5884802 ], + [ 6.6670569, 46.5884712 ], + [ 6.6670797, 46.5884544 ], + [ 6.6670823, 46.5884516 ], + [ 6.6670894, 46.5884423 ], + [ 6.6670951, 46.5884325 ], + [ 6.6670995, 46.5884225 ], + [ 6.6671024, 46.5884122 ], + [ 6.6671048, 46.5883957 ], + [ 6.6671334, 46.5881181 ], + [ 6.6671547, 46.5880955 ], + [ 6.6671555, 46.5880832 ], + [ 6.66716, 46.5880433 ], + [ 6.6671665, 46.5880036 ], + [ 6.6671748, 46.587964 ], + [ 6.6671851, 46.5879247 ], + [ 6.6671967, 46.5878872 ], + [ 6.667207, 46.5878566 ], + [ 6.667221, 46.587823 ], + [ 6.6672378, 46.58779 ], + [ 6.6672571, 46.5877577 ], + [ 6.6672789, 46.5877262 ], + [ 6.6673038, 46.5876948 ], + [ 6.6673236, 46.5876733 ], + [ 6.6673404, 46.5876555 ], + [ 6.6673576, 46.587638 ], + [ 6.6673751, 46.5876206 ], + [ 6.6673931, 46.5876034 ], + [ 6.6674124, 46.5875855 ], + [ 6.6674346, 46.587566 ], + [ 6.6674592, 46.5875462 ], + [ 6.6674849, 46.5875272 ], + [ 6.6675138, 46.5875075 ], + [ 6.6675678, 46.5874751 ], + [ 6.6676275, 46.5874444 ], + [ 6.6676579, 46.5874298 ], + [ 6.6676971, 46.587413 ], + [ 6.6677614, 46.5873877 ], + [ 6.6678303, 46.5873645 ], + [ 6.6679013, 46.5873443 ], + [ 6.6679636, 46.5873297 ], + [ 6.6692472, 46.5870065 ], + [ 6.6702981, 46.5867381 ], + [ 6.6704379, 46.5867063 ], + [ 6.6704997, 46.5866951 ], + [ 6.6705621, 46.5866865 ], + [ 6.6706251, 46.5866806 ], + [ 6.6706886, 46.5866772 ], + [ 6.6707522, 46.5866765 ], + [ 6.6708123, 46.5866783 ], + [ 6.6708883, 46.5866823 ], + [ 6.6709622, 46.5866871 ], + [ 6.6710359, 46.5866929 ], + [ 6.6711094, 46.5866995 ], + [ 6.6711828, 46.5867071 ], + [ 6.6712568, 46.5867156 ], + [ 6.6714742000000005, 46.5867445 ], + [ 6.6715201, 46.586751 ], + [ 6.6715554, 46.5867542 ], + [ 6.6715909, 46.5867557 ], + [ 6.6716264, 46.5867554 ], + [ 6.6716619, 46.5867532 ], + [ 6.6716978000000005, 46.5867493 ], + [ 6.6717395, 46.5867427 ], + [ 6.6717825, 46.5867343 ], + [ 6.6718247999999996, 46.5867244 ], + [ 6.6718664, 46.586713 ], + [ 6.6719071, 46.5867002 ], + [ 6.6719414, 46.5866879 ], + [ 6.6724797, 46.5864463 ], + [ 6.6725956, 46.586394 ], + [ 6.6727245, 46.5863671 ], + [ 6.6728296, 46.5863513 ], + [ 6.6729361, 46.5863414 ], + [ 6.6730435, 46.5863373 ], + [ 6.673151, 46.5863392 ], + [ 6.6731591, 46.5863398 ], + [ 6.6738797, 46.5860337 ], + [ 6.6738578, 46.5853048 ], + [ 6.6738272, 46.5842869 ], + [ 6.6738588, 46.5837776 ], + [ 6.6739412, 46.5834043 ], + [ 6.6741873, 46.5834302 ], + [ 6.6742859, 46.5834138 ], + [ 6.674698, 46.5833781 ], + [ 6.6749051999999995, 46.583328 ], + [ 6.6756626, 46.583411 ], + [ 6.675623, 46.5831923 ], + [ 6.6768064, 46.5829963 ], + [ 6.677359, 46.5828359 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00048", + "country" : "CHE", + "name" : [ + { + "text" : "Lausanne : zone centrale du Parc naturel du Jorat", + "lang" : "de-CH" + }, + { + "text" : "Lausanne : zone centrale du Parc naturel du Jorat", + "lang" : "fr-CH" + }, + { + "text" : "Lausanne : zone centrale du Parc naturel du Jorat", + "lang" : "it-CH" + }, + { + "text" : "Lausanne : zone centrale du Parc naturel du Jorat", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Generaldirektion für Umwelt", + "lang" : "de-CH" + }, + { + "text" : "Direction générale de l'environnement", + "lang" : "fr-CH" + }, + { + "text" : "Direzione generale dell'Ambiente", + "lang" : "it-CH" + }, + { + "text" : "Environment Department", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.dge@vd.ch", + "phone" : "0041213164422", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.4406625, 47.1403896 ], + [ 8.4406067, 47.1403915 ], + [ 8.440551, 47.1403938 ], + [ 8.4404954, 47.1403966 ], + [ 8.4404397, 47.1403998 ], + [ 8.4403842, 47.1404035 ], + [ 8.4403287, 47.1404077 ], + [ 8.4402627, 47.1404136 ], + [ 8.4401968, 47.1404197 ], + [ 8.4401309, 47.1404261 ], + [ 8.440065, 47.1404327 ], + [ 8.4399993, 47.1404395 ], + [ 8.4399335, 47.1404467 ], + [ 8.4398678, 47.140454 ], + [ 8.4398013, 47.1404617 ], + [ 8.4397349, 47.1404697 ], + [ 8.4396685, 47.1404779 ], + [ 8.4396022, 47.1404863 ], + [ 8.439536, 47.1404951 ], + [ 8.4394698, 47.140504 ], + [ 8.4394037, 47.1405132 ], + [ 8.4389138, 47.1405783 ], + [ 8.4389149, 47.1405823 ], + [ 8.439024, 47.1409748 ], + [ 8.4383135, 47.1411345 ], + [ 8.4382507, 47.1411855 ], + [ 8.4382193, 47.1412098 ], + [ 8.4382285, 47.1412272 ], + [ 8.438186, 47.1412772 ], + [ 8.4379859, 47.1414354 ], + [ 8.4376686, 47.1417056 ], + [ 8.4376616, 47.1417596 ], + [ 8.4371013, 47.1422976 ], + [ 8.4367921, 47.1425193 ], + [ 8.4367202, 47.14254 ], + [ 8.4365636, 47.1425763 ], + [ 8.4365324, 47.1426043 ], + [ 8.4361232, 47.1425194 ], + [ 8.4361335, 47.1425395 ], + [ 8.4362281, 47.1427259 ], + [ 8.4368387, 47.1428789 ], + [ 8.4369635, 47.143106 ], + [ 8.4370221, 47.1431557 ], + [ 8.4370691, 47.143152 ], + [ 8.4371539, 47.1431757 ], + [ 8.4372849, 47.1432449 ], + [ 8.4372124, 47.1433729 ], + [ 8.4382054, 47.1436199 ], + [ 8.4395796, 47.1439465 ], + [ 8.4403004, 47.144105 ], + [ 8.4403058, 47.144067 ], + [ 8.4405709, 47.1434858 ], + [ 8.4406285, 47.1433382 ], + [ 8.4404862, 47.1430104 ], + [ 8.4409385, 47.1420131 ], + [ 8.4409733, 47.1419604 ], + [ 8.4411632, 47.1415411 ], + [ 8.4411888, 47.1413891 ], + [ 8.4412263, 47.1411438 ], + [ 8.4412654, 47.1408865 ], + [ 8.4412799, 47.1404824 ], + [ 8.4412803, 47.1404772 ], + [ 8.4412811, 47.1404721 ], + [ 8.4412825, 47.1404671 ], + [ 8.4412843, 47.1404621 ], + [ 8.4412866, 47.1404572 ], + [ 8.4412894, 47.1404524 ], + [ 8.4412926, 47.1404477 ], + [ 8.4412963, 47.1404432 ], + [ 8.4413004, 47.1404389 ], + [ 8.4413049, 47.1404348 ], + [ 8.4413097, 47.1404308 ], + [ 8.441315, 47.1404271 ], + [ 8.4413205, 47.1404237 ], + [ 8.4413275, 47.1404199 ], + [ 8.4413349, 47.1404166 ], + [ 8.4413426, 47.1404135 ], + [ 8.4413506, 47.1404109 ], + [ 8.4413588, 47.1404086 ], + [ 8.4413673, 47.1404068 ], + [ 8.4413759, 47.1404053 ], + [ 8.4413847, 47.1404043 ], + [ 8.4413935, 47.1404037 ], + [ 8.4414024, 47.1404035 ], + [ 8.4414113, 47.1404037 ], + [ 8.4413682, 47.1404013 ], + [ 8.441324999999999, 47.1403991 ], + [ 8.4412818, 47.1403971 ], + [ 8.4412386, 47.1403952 ], + [ 8.4411954, 47.1403936 ], + [ 8.4411522, 47.1403921 ], + [ 8.441109, 47.1403908 ], + [ 8.4410532, 47.1403891 ], + [ 8.4409974, 47.1403878 ], + [ 8.4409416, 47.140387 ], + [ 8.4408857, 47.1403866 ], + [ 8.4408299, 47.1403867 ], + [ 8.4407741, 47.1403872 ], + [ 8.4407183, 47.1403882 ], + [ 8.4406625, 47.1403896 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VBS_34", + "country" : "CHE", + "name" : [ + { + "text" : "VBS_34 Rotkreuz", + "lang" : "de-CH" + }, + { + "text" : "VBS_34 Rotkreuz", + "lang" : "fr-CH" + }, + { + "text" : "VBS_34 Rotkreuz", + "lang" : "it-CH" + }, + { + "text" : "VBS_34 Rotkreuz", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "regulationExemption" : "YES", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Eidgenössisches Departement für Verteidigung, Bevölkerungsschutz und Sport (VBS)", + "lang" : "de-CH" + }, + { + "text" : "Département fédéral de la défense, de la protection de la population et des sports (DDPS)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento federale della difesa, della protezione della popolazione e dello sport (DDPS)", + "lang" : "it-CH" + }, + { + "text" : "Federal Department of Defence, Civil Protection and Sport (DDPS)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Lageverfolgungszentrum der Armee LVZ A", + "lang" : "de-CH" + }, + { + "text" : "Centre de suivi de la situation de l’armée, CSS A", + "lang" : "fr-CH" + }, + { + "text" : "Centro di monitoraggio della situazione dell’esercito, Centro mon sit Es", + "lang" : "it-CH" + }, + { + "text" : "Joint Operation Center, JOC", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vtg.admin.ch/en/joint-operations-command", + "email" : "lvz.op@vtg.admin.ch", + "phone" : "+41 58 464 96 43", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.1237206, 46.2864395 ], + [ 6.1236893, 46.2864654 ], + [ 6.1236462, 46.2864819 ], + [ 6.1231539, 46.2869091 ], + [ 6.1227721, 46.2872254 ], + [ 6.1227603, 46.2872505 ], + [ 6.1226992, 46.2873035 ], + [ 6.1224062, 46.2880046 ], + [ 6.1223146, 46.2881997 ], + [ 6.1223165, 46.2882193 ], + [ 6.1222771, 46.2883136 ], + [ 6.1224013, 46.2890924 ], + [ 6.1224139, 46.2892221 ], + [ 6.1224166, 46.289229 ], + [ 6.122423, 46.2892278 ], + [ 6.1224439, 46.2893589 ], + [ 6.1224586, 46.2893911 ], + [ 6.12255, 46.2895069 ], + [ 6.122544, 46.2895085 ], + [ 6.1225476, 46.2895152 ], + [ 6.1226404, 46.2896213 ], + [ 6.1231819, 46.2903069 ], + [ 6.1232956, 46.2903707 ], + [ 6.1233122, 46.2903896 ], + [ 6.1235539, 46.2905156 ], + [ 6.1243526, 46.2909638 ], + [ 6.1244544, 46.2909849 ], + [ 6.1244912, 46.2910041 ], + [ 6.125048, 46.2911082 ], + [ 6.1257954, 46.2912635 ], + [ 6.1258561, 46.2912593 ], + [ 6.1259154, 46.2912704 ], + [ 6.1270204, 46.2911797 ], + [ 6.1272943, 46.291161 ], + [ 6.1273191, 46.2911558 ], + [ 6.1273189, 46.2911553 ], + [ 6.1273802, 46.2911502 ], + [ 6.127481, 46.291128 ], + [ 6.1288078, 46.2906204 ], + [ 6.1297545, 46.2898 ], + [ 6.1301775, 46.2887912 ], + [ 6.1300129, 46.2877469 ], + [ 6.1299922, 46.2877012 ], + [ 6.1292648, 46.2867796 ], + [ 6.1280849, 46.2861203 ], + [ 6.1266314, 46.2858233 ], + [ 6.1251244, 46.2859336 ], + [ 6.1250232, 46.2859554 ], + [ 6.1237206, 46.2864395 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-46", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.4523225, 47.2742016 ], + [ 8.4523144, 47.2740605 ], + [ 8.4522954, 47.2739198 ], + [ 8.4522657, 47.27378 ], + [ 8.4522252, 47.2736414 ], + [ 8.4521742, 47.2735045 ], + [ 8.4521126, 47.2733696 ], + [ 8.4520408, 47.273237 ], + [ 8.4519589, 47.2731072 ], + [ 8.4518672, 47.2729805 ], + [ 8.4517658, 47.2728572 ], + [ 8.4516551, 47.2727378 ], + [ 8.4515353, 47.2726224 ], + [ 8.4514068, 47.2725114 ], + [ 8.451270000000001, 47.2724052 ], + [ 8.4511252, 47.272304 ], + [ 8.4509728, 47.2722081 ], + [ 8.4508132, 47.2721177 ], + [ 8.450647, 47.2720332 ], + [ 8.4504744, 47.2719547 ], + [ 8.4502961, 47.2718824 ], + [ 8.4501124, 47.2718166 ], + [ 8.4499239, 47.2717574 ], + [ 8.4497311, 47.2717051 ], + [ 8.4495346, 47.2716596 ], + [ 8.4493349, 47.2716212 ], + [ 8.4491324, 47.27159 ], + [ 8.4489279, 47.2715661 ], + [ 8.4487218, 47.2715495 ], + [ 8.4485147, 47.2715402 ], + [ 8.4483071, 47.2715383 ], + [ 8.4480997, 47.2715438 ], + [ 8.447893, 47.2715567 ], + [ 8.4476876, 47.271577 ], + [ 8.447484, 47.2716045 ], + [ 8.4472828, 47.2716392 ], + [ 8.4470846, 47.2716811 ], + [ 8.4468899, 47.27173 ], + [ 8.4466991, 47.2717857 ], + [ 8.446513, 47.2718481 ], + [ 8.4463319, 47.2719171 ], + [ 8.4461563, 47.2719925 ], + [ 8.4459868, 47.272074 ], + [ 8.4458237, 47.2721614 ], + [ 8.4456676, 47.2722546 ], + [ 8.4455189, 47.2723531 ], + [ 8.445378, 47.2724568 ], + [ 8.4452452, 47.2725654 ], + [ 8.445121, 47.2726786 ], + [ 8.4450056, 47.272796 ], + [ 8.4448995, 47.2729174 ], + [ 8.4448028, 47.2730424 ], + [ 8.4447158, 47.2731707 ], + [ 8.4446389, 47.2733019 ], + [ 8.4445721, 47.2734357 ], + [ 8.4445157, 47.2735716 ], + [ 8.4444698, 47.2737094 ], + [ 8.4444346, 47.2738486 ], + [ 8.4444102, 47.2739889 ], + [ 8.4443965, 47.2741299 ], + [ 8.4443938, 47.2742711 ], + [ 8.4444018, 47.2744123 ], + [ 8.4444208, 47.274553 ], + [ 8.4444505, 47.2746928 ], + [ 8.444491, 47.2748313 ], + [ 8.444542, 47.2749683 ], + [ 8.4446035, 47.2751032 ], + [ 8.4446753, 47.2752357 ], + [ 8.4447572, 47.2753656 ], + [ 8.4448489, 47.2754923 ], + [ 8.4449503, 47.2756155 ], + [ 8.445061, 47.275735 ], + [ 8.4451808, 47.2758504 ], + [ 8.4453092, 47.2759614 ], + [ 8.4454461, 47.2760676 ], + [ 8.4455909, 47.2761688 ], + [ 8.4457433, 47.2762648 ], + [ 8.4459028, 47.2763551 ], + [ 8.4460691, 47.2764397 ], + [ 8.4462417, 47.2765182 ], + [ 8.44642, 47.2765904 ], + [ 8.4466037, 47.2766562 ], + [ 8.4467922, 47.2767154 ], + [ 8.446985, 47.2767678 ], + [ 8.4471815, 47.2768132 ], + [ 8.4473813, 47.2768516 ], + [ 8.4475838, 47.2768828 ], + [ 8.4477883, 47.2769068 ], + [ 8.4479944, 47.2769234 ], + [ 8.4482016, 47.2769327 ], + [ 8.4484091, 47.2769346 ], + [ 8.4486165, 47.2769291 ], + [ 8.4488233, 47.2769162 ], + [ 8.4490287, 47.2768959 ], + [ 8.4492323, 47.2768684 ], + [ 8.4494335, 47.2768337 ], + [ 8.4496317, 47.2767918 ], + [ 8.4498265, 47.2767429 ], + [ 8.4500172, 47.2766872 ], + [ 8.4502034, 47.2766247 ], + [ 8.4503845, 47.2765557 ], + [ 8.4505601, 47.2764804 ], + [ 8.4507297, 47.2763988 ], + [ 8.4508927, 47.2763114 ], + [ 8.4510488, 47.2762183 ], + [ 8.4511975, 47.2761197 ], + [ 8.4513384, 47.276016 ], + [ 8.4514712, 47.2759074 ], + [ 8.4515954, 47.2757942 ], + [ 8.4517108, 47.2756768 ], + [ 8.4518169, 47.2755554 ], + [ 8.4519136, 47.2754304 ], + [ 8.4520006, 47.2753021 ], + [ 8.4520775, 47.2751709 ], + [ 8.4521443, 47.2750371 ], + [ 8.4522006, 47.2749012 ], + [ 8.4522465, 47.2747634 ], + [ 8.4522817, 47.2746242 ], + [ 8.4523061, 47.2744839 ], + [ 8.4523197, 47.2743429 ], + [ 8.4523225, 47.2742016 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "AFF0001", + "country" : "CHE", + "name" : [ + { + "text" : "Gefängnis Affoltern", + "lang" : "de-CH" + }, + { + "text" : "Gefängnis Affoltern", + "lang" : "fr-CH" + }, + { + "text" : "Gefängnis Affoltern", + "lang" : "it-CH" + }, + { + "text" : "Gefängnis Affoltern", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "de-CH" + }, + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "fr-CH" + }, + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "it-CH" + }, + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "de-CH" + }, + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "fr-CH" + }, + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "it-CH" + }, + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Reno Berner", + "lang" : "de-CH" + }, + { + "text" : "Reno Berner", + "lang" : "fr-CH" + }, + { + "text" : "Reno Berner", + "lang" : "it-CH" + }, + { + "text" : "Reno Berner", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.zh.ch/de/direktion-der-justiz-und-des-innern/justizvollzug-wiedereingliederung.html", + "email" : "sicherheit-juwe@ji.zh.ch", + "phone" : "0041432583400", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT12H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6220982, 47.534968 ], + [ 7.622121, 47.535281 ], + [ 7.6221593, 47.5358204 ], + [ 7.6221975, 47.5363599 ], + [ 7.6222066, 47.5364762 ], + [ 7.6222908, 47.5364728 ], + [ 7.622327, 47.5363338 ], + [ 7.6223405, 47.5363339 ], + [ 7.622331, 47.5361959 ], + [ 7.6223168, 47.5361968 ], + [ 7.6223094, 47.5361428 ], + [ 7.6223272, 47.5361417 ], + [ 7.6223251, 47.5361124 ], + [ 7.6223561, 47.5359708 ], + [ 7.6223279999999995, 47.5355615 ], + [ 7.6223291, 47.5354667 ], + [ 7.622305, 47.535305 ], + [ 7.6223076, 47.5352633 ], + [ 7.6223608, 47.5352141 ], + [ 7.6226009, 47.5350834 ], + [ 7.6226347, 47.5350667 ], + [ 7.6226607, 47.5350561 ], + [ 7.622699, 47.5350418 ], + [ 7.6228657, 47.5350048 ], + [ 7.622932, 47.5349912 ], + [ 7.6229971, 47.5349819 ], + [ 7.6230648, 47.5349761 ], + [ 7.6231186, 47.5349765 ], + [ 7.6231234, 47.5349768 ], + [ 7.6231195, 47.534952 ], + [ 7.6231137, 47.5349505 ], + [ 7.6231089, 47.5349492 ], + [ 7.6231039, 47.5349482 ], + [ 7.6230988, 47.5349475 ], + [ 7.6230958, 47.5349473 ], + [ 7.622926, 47.5349491 ], + [ 7.6228637, 47.5349508 ], + [ 7.6225135, 47.5349584 ], + [ 7.6222636, 47.5349642 ], + [ 7.6222306, 47.534965 ], + [ 7.6221851, 47.534966 ], + [ 7.6220982, 47.534968 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns143", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt In den Weiden", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé In den Weiden", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto In den Weiden", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object In den Weiden", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5599962, 47.471693 ], + [ 7.5605025, 47.4716196 ], + [ 7.560663, 47.4718795 ], + [ 7.561496, 47.4727023 ], + [ 7.5618635, 47.4726477 ], + [ 7.5621675, 47.472745 ], + [ 7.5629825, 47.4726574 ], + [ 7.5631118, 47.473275 ], + [ 7.5633182, 47.4738977 ], + [ 7.563479, 47.4743093 ], + [ 7.5637189, 47.4743633 ], + [ 7.5639587, 47.4743413 ], + [ 7.5642142, 47.4742435 ], + [ 7.5645975, 47.4741347 ], + [ 7.5650771, 47.4741234 ], + [ 7.5658598999999995, 47.4739491 ], + [ 7.5661955, 47.4739162 ], + [ 7.5674419, 47.473774 ], + [ 7.5675532, 47.4735246 ], + [ 7.5680487, 47.4735349 ], + [ 7.5691514, 47.4734361 ], + [ 7.5694709, 47.4733599 ], + [ 7.5694382000000004, 47.4730673 ], + [ 7.569325, 47.4725312 ], + [ 7.5693368, 47.4725309 ], + [ 7.5693622, 47.4723554 ], + [ 7.5693239, 47.4720841 ], + [ 7.5691225, 47.4715415 ], + [ 7.5690221, 47.4714059 ], + [ 7.5685026, 47.4712453 ], + [ 7.5682645, 47.4710717 ], + [ 7.5679656, 47.470778 ], + [ 7.5678966, 47.4706721 ], + [ 7.5678017, 47.4702269 ], + [ 7.5676565, 47.4696673 ], + [ 7.5675411, 47.4693451 ], + [ 7.5674595, 47.4692222 ], + [ 7.5673717, 47.469146 ], + [ 7.5673274, 47.468917 ], + [ 7.5674145, 47.4687218 ], + [ 7.5676388, 47.4683866 ], + [ 7.5677822, 47.4681786 ], + [ 7.5679694, 47.4680215 ], + [ 7.5679569, 47.4680159 ], + [ 7.5681178, 47.4678825 ], + [ 7.5671231, 47.4674211 ], + [ 7.5676044000000005, 47.4670804 ], + [ 7.5679186, 47.4668539 ], + [ 7.568156, 47.4667179 ], + [ 7.5681557999999995, 47.4666713 ], + [ 7.5678925, 47.4663663 ], + [ 7.5676733, 47.466252 ], + [ 7.5671479, 47.4662483 ], + [ 7.56661, 47.466215 ], + [ 7.566185, 47.466313 ], + [ 7.5652724, 47.4665091 ], + [ 7.5649517, 47.4666352 ], + [ 7.5645705, 47.4667841 ], + [ 7.5640645, 47.4670264 ], + [ 7.5640645, 47.4670265 ], + [ 7.5639259, 47.4671153 ], + [ 7.5639912, 47.4674267 ], + [ 7.5637834, 47.4675583 ], + [ 7.5634606, 47.4676462 ], + [ 7.5630085000000005, 47.4676759 ], + [ 7.5625202, 47.4675645 ], + [ 7.561759, 47.4673755 ], + [ 7.5617379, 47.4675799 ], + [ 7.5615875, 47.4676872 ], + [ 7.5612789, 47.4677118 ], + [ 7.5613372, 47.4680836 ], + [ 7.561244, 47.4681275 ], + [ 7.5608708, 47.4681522 ], + [ 7.560505, 47.4682597 ], + [ 7.5605023, 47.4682574 ], + [ 7.5593588, 47.468462 ], + [ 7.5593521, 47.4684935 ], + [ 7.559414, 47.4690489 ], + [ 7.5594079, 47.4690666 ], + [ 7.5594189, 47.4691261 ], + [ 7.5594471, 47.4692507 ], + [ 7.5594868, 47.4694665 ], + [ 7.5595384, 47.4697375 ], + [ 7.5595607000000005, 47.4698468 ], + [ 7.559589, 47.4699693 ], + [ 7.5596358, 47.470185 ], + [ 7.559694, 47.4704591 ], + [ 7.5597049, 47.4704684 ], + [ 7.5599885, 47.470493 ], + [ 7.5601488, 47.4706771 ], + [ 7.5602775, 47.4710346 ], + [ 7.5598493, 47.4711394 ], + [ 7.5598534, 47.4711555 ], + [ 7.5598868, 47.4712618 ], + [ 7.5599054, 47.4713437 ], + [ 7.5599681, 47.4715901 ], + [ 7.5599962, 47.471693 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr119", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Tschöpperli", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Tschöpperli", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Tschöpperli", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Tschöpperli", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.8327276999999995, 47.1014748 ], + [ 6.8328573, 47.1015294 ], + [ 6.8330742, 47.101594 ], + [ 6.8330819, 47.1015957 ], + [ 6.8333122, 47.1016328 ], + [ 6.8333203000000005, 47.1016336 ], + [ 6.8335565, 47.1016419 ], + [ 6.8335647, 47.1016417 ], + [ 6.8337993, 47.1016211 ], + [ 6.8338073, 47.1016199 ], + [ 6.8340328, 47.1015709 ], + [ 6.8340403, 47.1015687 ], + [ 6.8342493, 47.101493 ], + [ 6.8342561, 47.1014899 ], + [ 6.8344419, 47.1013899 ], + [ 6.8344477999999995, 47.1013861 ], + [ 6.8346044, 47.101265 ], + [ 6.8346092, 47.1012605 ], + [ 6.8346317, 47.1012389 ], + [ 6.8348025, 47.1010698 ], + [ 6.8348844, 47.1009944 ], + [ 6.8348835999999995, 47.100994 ], + [ 6.8349324, 47.1009475 ], + [ 6.8349347, 47.1009451 ], + [ 6.8349941, 47.1008763 ], + [ 6.8349961, 47.1008738 ], + [ 6.8350463999999995, 47.1008016 ], + [ 6.8350480000000005, 47.100799 ], + [ 6.8351266, 47.100624 ], + [ 6.8351517, 47.1004419 ], + [ 6.8351223999999995, 47.10026 ], + [ 6.8350786, 47.100121 ], + [ 6.8349917, 47.0998449 ], + [ 6.8349136999999995, 47.0996781 ], + [ 6.8347898, 47.0995248 ], + [ 6.8346248, 47.0993908 ], + [ 6.8344248, 47.0992811 ], + [ 6.8341975, 47.0992 ], + [ 6.8340542, 47.0991604 ], + [ 6.833838, 47.0991151 ], + [ 6.8336136, 47.0990956 ], + [ 6.8333876, 47.0991027 ], + [ 6.8329686, 47.0991406 ], + [ 6.8329319, 47.0991392 ], + [ 6.8326901, 47.0991608 ], + [ 6.8324582, 47.0992124 ], + [ 6.8322442, 47.0992924 ], + [ 6.8320555, 47.099398 ], + [ 6.8318986, 47.0995254 ], + [ 6.8315842, 47.099835 ], + [ 6.8314588, 47.0999886 ], + [ 6.8313796, 47.1001559 ], + [ 6.8313496, 47.1003305 ], + [ 6.8313699, 47.1005058 ], + [ 6.8314398, 47.1006751 ], + [ 6.8315565, 47.1008318 ], + [ 6.8317157, 47.10097 ], + [ 6.8319112, 47.1010845 ], + [ 6.8327276999999995, 47.1014748 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "NE04", + "country" : "CHE", + "name" : [ + { + "text" : "EDPR La Promenade", + "lang" : "de-CH" + }, + { + "text" : "EDPR La Promenade", + "lang" : "fr-CH" + }, + { + "text" : "EDPR La Promenade", + "lang" : "it-CH" + }, + { + "text" : "EDPR La Promenade", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "regulationExemption" : "YES", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Police Neuchâteloise", + "lang" : "de-CH" + }, + { + "text" : "Police Neuchâteloise", + "lang" : "fr-CH" + }, + { + "text" : "Police Neuchâteloise", + "lang" : "it-CH" + }, + { + "text" : "Police Neuchâteloise", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "PN - Rens et opérations", + "lang" : "de-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "fr-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "it-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "PN - Rens et opérations", + "lang" : "de-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "fr-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "it-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ne.ch/autorites/DESC/PONE/Pages/Drones.aspx", + "email" : "Police.Neuchateloise@ne.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8329409, 47.4486955 ], + [ 7.8329205, 47.4486838 ], + [ 7.8319583999999995, 47.448135 ], + [ 7.8317612, 47.4489092 ], + [ 7.8318171, 47.4488952 ], + [ 7.8318746, 47.4489398 ], + [ 7.8319683, 47.4490124 ], + [ 7.8320381999999995, 47.4490814 ], + [ 7.8320755, 47.4491182 ], + [ 7.8322073, 47.4491186 ], + [ 7.8323917, 47.4491161 ], + [ 7.8325015, 47.4490801 ], + [ 7.8326539, 47.4490158 ], + [ 7.8327665, 47.4489683 ], + [ 7.8327909, 47.4489383 ], + [ 7.8328134, 47.4489106 ], + [ 7.832852, 47.448863 ], + [ 7.8328841, 47.44882 ], + [ 7.8328980999999995, 47.4488012 ], + [ 7.8329254, 47.4487647 ], + [ 7.8329661999999995, 47.44871 ], + [ 7.8329409, 47.4486955 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr099", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Dubenrain", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Dubenrain", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Dubenrain", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Dubenrain", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8372682, 47.3763923 ], + [ 7.8372852, 47.376419 ], + [ 7.8378755, 47.3765582 ], + [ 7.8381573, 47.3767212 ], + [ 7.8382358, 47.3767266 ], + [ 7.8382804, 47.3766807 ], + [ 7.8382718, 47.3766521 ], + [ 7.8380069, 47.3765004 ], + [ 7.8373349999999995, 47.3763273 ], + [ 7.8372874, 47.3763466 ], + [ 7.8372682, 47.3763923 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns199", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Hecken-Komplex Schmutzberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Hecken-Komplex Schmutzberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Hecken-Komplex Schmutzberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Hecken-Komplex Schmutzberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.2289397, 46.2674538 ], + [ 6.2288858, 46.2674823 ], + [ 6.2281628, 46.2676096 ], + [ 6.2280592, 46.2676439 ], + [ 6.2270556, 46.268122 ], + [ 6.2270052, 46.2681675 ], + [ 6.2269921, 46.2681738 ], + [ 6.2262504, 46.2688442 ], + [ 6.225844, 46.2696409 ], + [ 6.2258237, 46.2701928 ], + [ 6.2257799, 46.2704021 ], + [ 6.2261523, 46.2714217 ], + [ 6.2262778, 46.2716046 ], + [ 6.2267704, 46.2721024 ], + [ 6.2256603, 46.2722432 ], + [ 6.2248437, 46.2726091 ], + [ 6.2247631, 46.2726193 ], + [ 6.2234876, 46.2731906 ], + [ 6.2233856, 46.273293 ], + [ 6.2231471, 46.2723881 ], + [ 6.2223231, 46.2715036 ], + [ 6.2210739, 46.2709051 ], + [ 6.2195895, 46.2706836 ], + [ 6.2180958, 46.270873 ], + [ 6.2168203, 46.2714442 ], + [ 6.2159571, 46.2723105 ], + [ 6.2156377, 46.2733399 ], + [ 6.2159106, 46.2743758 ], + [ 6.2163039, 46.274798 ], + [ 6.2160994, 46.2752949 ], + [ 6.2162719, 46.2763393 ], + [ 6.2162977, 46.276395 ], + [ 6.2168462, 46.277149 ], + [ 6.2177041, 46.2777486 ], + [ 6.2187873, 46.2781349 ], + [ 6.2199896, 46.2782702 ], + [ 6.2211933, 46.2781411 ], + [ 6.2212469, 46.2781291 ], + [ 6.2225738, 46.2776183 ], + [ 6.2233451, 46.2769454 ], + [ 6.2234022, 46.2770067 ], + [ 6.2245349, 46.2775493 ], + [ 6.2242198, 46.2776904 ], + [ 6.2233566, 46.2785568 ], + [ 6.2230373, 46.2795862 ], + [ 6.2233104, 46.280622 ], + [ 6.2241345, 46.2815065 ], + [ 6.225384, 46.282105 ], + [ 6.2268688, 46.2823264 ], + [ 6.2274163, 46.2822569 ], + [ 6.2280761, 46.2825729 ], + [ 6.2295609, 46.2827943 ], + [ 6.2310548, 46.2826048 ], + [ 6.2323304, 46.2820334 ], + [ 6.2331935, 46.281167 ], + [ 6.2335127, 46.2801375 ], + [ 6.2332394, 46.2791017 ], + [ 6.2324152, 46.2782173 ], + [ 6.2311657, 46.2776189 ], + [ 6.229681, 46.2773976 ], + [ 6.2291336, 46.277467 ], + [ 6.2286185, 46.2772203 ], + [ 6.2298029, 46.2766897 ], + [ 6.2306659, 46.2758233 ], + [ 6.2309851, 46.2747938 ], + [ 6.2307119, 46.273758 ], + [ 6.2305377, 46.2735711 ], + [ 6.2306951, 46.2735871 ], + [ 6.2321674, 46.2733297 ], + [ 6.2324017, 46.2732525 ], + [ 6.2324031, 46.2732521 ], + [ 6.2330249, 46.2729569 ], + [ 6.2332282, 46.2729208 ], + [ 6.233268, 46.2729089 ], + [ 6.2345178, 46.272311 ], + [ 6.2353426, 46.271427 ], + [ 6.2354849, 46.2708896 ], + [ 6.2356551, 46.2704628 ], + [ 6.2356011, 46.2696193 ], + [ 6.2351738, 46.2688286 ], + [ 6.2351488, 46.2687979 ], + [ 6.234157, 46.2680008 ], + [ 6.2338663, 46.2678994 ], + [ 6.2328572, 46.2674784 ], + [ 6.2321682, 46.2674068 ], + [ 6.2319348, 46.2673132 ], + [ 6.2304335, 46.2671744 ], + [ 6.2289696, 46.2674437 ], + [ 6.2289397, 46.2674538 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-5", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.3983114, 46.5877455 ], + [ 6.39783, 46.5880128 ], + [ 6.401959, 46.5935041 ], + [ 6.4020506, 46.5934231 ], + [ 6.4023584, 46.593774 ], + [ 6.4024648, 46.593802 ], + [ 6.4026285, 46.5937081 ], + [ 6.403716, 46.5933465 ], + [ 6.4037509, 46.593295499999996 ], + [ 6.4037787999999995, 46.5930637 ], + [ 6.4036309, 46.5928833 ], + [ 6.4037651, 46.5927595 ], + [ 6.4033937, 46.5925924 ], + [ 6.4032145, 46.5922741 ], + [ 6.4030473, 46.5921475 ], + [ 6.4031731, 46.592119 ], + [ 6.4029097, 46.5917693 ], + [ 6.4036216, 46.5915284 ], + [ 6.403104, 46.5906897 ], + [ 6.4028354, 46.5902015 ], + [ 6.401809, 46.5905789 ], + [ 6.4003127, 46.5886491 ], + [ 6.3995771999999995, 46.5877463 ], + [ 6.3992413, 46.5874365 ], + [ 6.399001, 46.587446 ], + [ 6.3983114, 46.5877455 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSTR002", + "country" : "CHE", + "name" : [ + { + "text" : "LSTR Montricher (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSTR Montricher (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSTR Montricher (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSTR Montricher (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Fondation pour l'exploitation du terrain de vol à voile de Montricher", + "lang" : "de-CH" + }, + { + "text" : "Fondation pour l'exploitation du terrain de vol à voile de Montricher", + "lang" : "fr-CH" + }, + { + "text" : "Fondation pour l'exploitation du terrain de vol à voile de Montricher", + "lang" : "it-CH" + }, + { + "text" : "Fondation pour l'exploitation du terrain de vol à voile de Montricher", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Chef d'aérodrome", + "lang" : "de-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "fr-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "it-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Didier Kuttel", + "lang" : "de-CH" + }, + { + "text" : "Didier Kuttel", + "lang" : "fr-CH" + }, + { + "text" : "Didier Kuttel", + "lang" : "it-CH" + }, + { + "text" : "Didier Kuttel", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.lstr.ch", + "email" : "chef.aerodrome@lstr.ch", + "phone" : "0041799487937", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P02DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6359652, 47.3821842 ], + [ 7.6349579, 47.3816215 ], + [ 7.6345878, 47.3817168 ], + [ 7.6343796, 47.3818459 ], + [ 7.6341808, 47.3820155 ], + [ 7.6333231, 47.3829171 ], + [ 7.6330658, 47.3839905 ], + [ 7.6329083, 47.3846475 ], + [ 7.6333115, 47.3853427 ], + [ 7.6350599, 47.3856671 ], + [ 7.6362638, 47.3857796 ], + [ 7.6372573, 47.3860717 ], + [ 7.6372512, 47.3860517 ], + [ 7.6372478, 47.3860315 ], + [ 7.6372472, 47.3860111 ], + [ 7.6372494, 47.3859908 ], + [ 7.6372544, 47.3859707 ], + [ 7.6372605, 47.3859545 ], + [ 7.637355, 47.3859927 ], + [ 7.6374306, 47.3860269 ], + [ 7.6376555, 47.3860445 ], + [ 7.6378536, 47.386078 ], + [ 7.6381507, 47.3861281 ], + [ 7.638359, 47.3861536 ], + [ 7.6383936, 47.3860978 ], + [ 7.638456, 47.3860577 ], + [ 7.6385397, 47.3860378 ], + [ 7.6386146, 47.3860384 ], + [ 7.6386603, 47.3860717 ], + [ 7.6386622, 47.3860865 ], + [ 7.6386668, 47.3861227 ], + [ 7.63868, 47.386199 ], + [ 7.6397135, 47.3863873 ], + [ 7.6401007, 47.3863544 ], + [ 7.6403929, 47.3864249 ], + [ 7.640534, 47.3864474 ], + [ 7.6412109, 47.3861145 ], + [ 7.6422345, 47.3862162 ], + [ 7.6427542, 47.3862801 ], + [ 7.6432507, 47.3863635 ], + [ 7.6438982, 47.3864932 ], + [ 7.6444302, 47.3865797 ], + [ 7.6450244, 47.3866609 ], + [ 7.6452183, 47.3866804 ], + [ 7.6455316, 47.3866998 ], + [ 7.6459838, 47.3866836 ], + [ 7.6464492, 47.3866546 ], + [ 7.6466445, 47.3866593 ], + [ 7.646964, 47.3867231 ], + [ 7.6473009, 47.3868105 ], + [ 7.647658, 47.3869034 ], + [ 7.6481114, 47.3870032 ], + [ 7.6484402, 47.3870407 ], + [ 7.6489204, 47.3870663 ], + [ 7.6491188, 47.3870756 ], + [ 7.649243, 47.387323 ], + [ 7.6492767, 47.3873103 ], + [ 7.6493119, 47.3872998 ], + [ 7.6493484, 47.3872914 ], + [ 7.6493858, 47.3872853 ], + [ 7.6494239, 47.3872814 ], + [ 7.6494624, 47.3872799 ], + [ 7.6496526, 47.3872878 ], + [ 7.6496783, 47.3872885 ], + [ 7.6497039000000004, 47.3872878 ], + [ 7.6497293, 47.3872856 ], + [ 7.6497544, 47.3872818 ], + [ 7.6497788, 47.3872766 ], + [ 7.6498025, 47.3872699 ], + [ 7.6498253, 47.3872618 ], + [ 7.6498469, 47.3872525 ], + [ 7.6498672, 47.3872419 ], + [ 7.6498861, 47.3872301 ], + [ 7.6499034, 47.3872172 ], + [ 7.6499189, 47.3872034 ], + [ 7.6499326, 47.3871886 ], + [ 7.6500539, 47.3870392 ], + [ 7.6501158, 47.3869588 ], + [ 7.649972, 47.3867201 ], + [ 7.6497425, 47.3862637 ], + [ 7.6495294, 47.3858664 ], + [ 7.6494505, 47.3857318 ], + [ 7.649353, 47.3855894 ], + [ 7.6492611, 47.3855123 ], + [ 7.6491361, 47.3854316 ], + [ 7.6489431, 47.3853365 ], + [ 7.6487341, 47.3852499 ], + [ 7.6484073, 47.3851624 ], + [ 7.6479162, 47.3850853 ], + [ 7.6468327, 47.3847611 ], + [ 7.6462892, 47.3845823 ], + [ 7.6460657, 47.3845187 ], + [ 7.6456816, 47.3844033 ], + [ 7.6456642, 47.3843978 ], + [ 7.6456463, 47.3843934 ], + [ 7.6456278, 47.38439 ], + [ 7.6456089, 47.3843877 ], + [ 7.6455899, 47.3843866 ], + [ 7.6455708, 47.3843865 ], + [ 7.6455517, 47.3843876 ], + [ 7.6455328, 47.3843899 ], + [ 7.6455143, 47.3843932 ], + [ 7.6454963, 47.3843976 ], + [ 7.6453424, 47.3844308 ], + [ 7.645234, 47.3844536 ], + [ 7.6451281, 47.3844628 ], + [ 7.6450215, 47.3844672 ], + [ 7.6449146, 47.3844665 ], + [ 7.6443444, 47.3844451 ], + [ 7.643714, 47.3844163 ], + [ 7.6434842, 47.3844021 ], + [ 7.6432567, 47.3843762 ], + [ 7.6430327, 47.3843386 ], + [ 7.6423632999999995, 47.3842091 ], + [ 7.642374, 47.3841824 ], + [ 7.6424227, 47.3840745 ], + [ 7.642545, 47.3839353 ], + [ 7.6425436, 47.3839153 ], + [ 7.6425567999999995, 47.3838859 ], + [ 7.6427051, 47.3835888 ], + [ 7.6427376, 47.3835208 ], + [ 7.6429386, 47.3835328 ], + [ 7.643237, 47.3835399 ], + [ 7.6435821, 47.3835372 ], + [ 7.64381, 47.3835356 ], + [ 7.6438526, 47.3833931 ], + [ 7.644078, 47.3834092 ], + [ 7.6442927, 47.3834771 ], + [ 7.6445028, 47.3834897 ], + [ 7.6449895, 47.3834042 ], + [ 7.645276, 47.383321 ], + [ 7.64555, 47.3831853 ], + [ 7.6461112, 47.3829685 ], + [ 7.6464548, 47.382852 ], + [ 7.646955, 47.382719 ], + [ 7.6469000000000005, 47.382637 ], + [ 7.6460801, 47.3823383 ], + [ 7.6461116, 47.3822333 ], + [ 7.6460929, 47.3821896 ], + [ 7.6460478, 47.3821726 ], + [ 7.6460756, 47.382109 ], + [ 7.6459368, 47.3820908 ], + [ 7.6458870999999995, 47.3820887 ], + [ 7.6458209, 47.3822163 ], + [ 7.6457618, 47.3822736 ], + [ 7.6457242999999995, 47.3823248 ], + [ 7.6456286, 47.3823658 ], + [ 7.6455143, 47.3825513 ], + [ 7.6454397, 47.3826019 ], + [ 7.6454113, 47.3826728 ], + [ 7.6452989, 47.3826875 ], + [ 7.6451849, 47.3826695 ], + [ 7.6450952, 47.382654 ], + [ 7.6449714, 47.38265 ], + [ 7.644952, 47.3827058 ], + [ 7.6450564, 47.3828754 ], + [ 7.6448058, 47.3829492 ], + [ 7.6447953, 47.3829164 ], + [ 7.6447506, 47.3829009 ], + [ 7.6446958, 47.3829266 ], + [ 7.6443949, 47.3831724 ], + [ 7.644178, 47.3831488 ], + [ 7.644012, 47.3830872 ], + [ 7.6438873, 47.3831036 ], + [ 7.6437184, 47.3831042 ], + [ 7.6434616, 47.383244 ], + [ 7.6433346, 47.38328 ], + [ 7.6430478, 47.3832728 ], + [ 7.6425263, 47.3832207 ], + [ 7.6423629, 47.3831978 ], + [ 7.6420528999999995, 47.3831795 ], + [ 7.641474, 47.3832064 ], + [ 7.6415394, 47.3830282 ], + [ 7.6413747, 47.3829207 ], + [ 7.6414041, 47.3828044 ], + [ 7.6413911, 47.3827678 ], + [ 7.6413171, 47.3827586 ], + [ 7.6411975, 47.3828795 ], + [ 7.6410735, 47.3831068 ], + [ 7.6408567, 47.383070000000004 ], + [ 7.6409728999999995, 47.3828209 ], + [ 7.6411468, 47.3825267 ], + [ 7.6413471, 47.3822782 ], + [ 7.6414848, 47.3821226 ], + [ 7.6411126, 47.3820633 ], + [ 7.6410319, 47.3822385 ], + [ 7.6403918, 47.3821288 ], + [ 7.6403406, 47.382248 ], + [ 7.6410283, 47.3823524 ], + [ 7.6408698, 47.3826188 ], + [ 7.6407644999999995, 47.38283 ], + [ 7.6406985, 47.3830727 ], + [ 7.6405196, 47.3832126 ], + [ 7.6404629, 47.383205 ], + [ 7.6401662, 47.3832031 ], + [ 7.6399733, 47.3831505 ], + [ 7.6398638, 47.3830927 ], + [ 7.639746, 47.3830965 ], + [ 7.6396902, 47.3830845 ], + [ 7.6393215, 47.3830647 ], + [ 7.6390662, 47.3830281 ], + [ 7.6385641, 47.3829355 ], + [ 7.6381444, 47.3828651 ], + [ 7.6375235, 47.382737 ], + [ 7.63721, 47.3826487 ], + [ 7.6367851, 47.3824065 ], + [ 7.6366092, 47.3823499 ], + [ 7.6361921, 47.3822463 ], + [ 7.6359652, 47.3821842 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns238", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Riedberg - Stierenberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Riedberg - Stierenberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Riedberg - Stierenberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Riedberg - Stierenberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5344799, 47.5413917 ], + [ 7.5345024, 47.541456 ], + [ 7.5345469, 47.5414855 ], + [ 7.5346955, 47.5415577 ], + [ 7.5347404000000004, 47.541572 ], + [ 7.5347893, 47.5415974 ], + [ 7.534803, 47.5416221 ], + [ 7.5348076, 47.5416303 ], + [ 7.534818, 47.541668 ], + [ 7.5347354, 47.5416671 ], + [ 7.5346399, 47.5416807 ], + [ 7.5346617, 47.5417513 ], + [ 7.5345359, 47.5417691 ], + [ 7.5346587, 47.5421754 ], + [ 7.5344985, 47.5421976 ], + [ 7.5343671, 47.5422157 ], + [ 7.5342596, 47.5422293 ], + [ 7.534247, 47.5422382 ], + [ 7.5342358, 47.5422479 ], + [ 7.5342258, 47.5422582 ], + [ 7.5342153, 47.5422677 ], + [ 7.5342379, 47.5423421 ], + [ 7.5343407, 47.5426852 ], + [ 7.534496, 47.5426632 ], + [ 7.5349494, 47.5425989 ], + [ 7.534953, 47.5426186 ], + [ 7.5349762, 47.5427359 ], + [ 7.5351168, 47.5428457 ], + [ 7.5352749, 47.5429749 ], + [ 7.5353110999999995, 47.543013 ], + [ 7.5353467, 47.5430449 ], + [ 7.5353229, 47.543152 ], + [ 7.5352733, 47.5432259 ], + [ 7.5351053, 47.5432746 ], + [ 7.5349445, 47.5432851 ], + [ 7.534863, 47.5432822 ], + [ 7.5348391, 47.5432793 ], + [ 7.5346948000000005, 47.5433755 ], + [ 7.5345093, 47.5434439 ], + [ 7.5345042, 47.5435315 ], + [ 7.5346857, 47.5440231 ], + [ 7.5348529, 47.5444808 ], + [ 7.534927, 47.544952 ], + [ 7.5350104, 47.5454973 ], + [ 7.5350308, 47.5459882 ], + [ 7.5350876, 47.5467236 ], + [ 7.5351282, 47.5472413 ], + [ 7.5355619, 47.5472286 ], + [ 7.5357689, 47.5472226 ], + [ 7.5358428, 47.5468052 ], + [ 7.5359035, 47.5468118 ], + [ 7.53624, 47.5466863 ], + [ 7.5363865, 47.5466317 ], + [ 7.5365625, 47.5465125 ], + [ 7.536738, 47.5463933 ], + [ 7.5366661, 47.5462502 ], + [ 7.5367486, 47.5460443 ], + [ 7.5367718, 47.5459862 ], + [ 7.536784, 47.5459685 ], + [ 7.5368652, 47.5458467 ], + [ 7.5368744, 47.545833 ], + [ 7.5369291, 47.5456399 ], + [ 7.5369323, 47.5456259 ], + [ 7.5369691, 47.545466 ], + [ 7.5369721, 47.5454528 ], + [ 7.5369746, 47.5453725 ], + [ 7.5369767, 47.5453071 ], + [ 7.5369353, 47.5452098 ], + [ 7.5368995, 47.5451256 ], + [ 7.5367168, 47.5448688 ], + [ 7.5366203, 47.5447331 ], + [ 7.536631, 47.5446789 ], + [ 7.5366447999999995, 47.5446093 ], + [ 7.5366715, 47.5445785 ], + [ 7.5367282, 47.5445133 ], + [ 7.5368292, 47.5443972 ], + [ 7.5368606, 47.5443551 ], + [ 7.5369558, 47.5442274 ], + [ 7.5369946, 47.5441754 ], + [ 7.5370536, 47.5440946 ], + [ 7.5370968, 47.5440353 ], + [ 7.5371032, 47.5440266 ], + [ 7.5372694, 47.543956 ], + [ 7.5373651, 47.5439153 ], + [ 7.5374408, 47.5438539 ], + [ 7.5375227, 47.5437875 ], + [ 7.5375522, 47.5437636 ], + [ 7.537796, 47.5436409 ], + [ 7.5377986, 47.5436396 ], + [ 7.5376605, 47.5434849 ], + [ 7.5374382, 47.5434986 ], + [ 7.5373698000000005, 47.5435029 ], + [ 7.5370509, 47.5434838 ], + [ 7.5367564, 47.5432141 ], + [ 7.5365175, 47.5429322 ], + [ 7.5363433, 47.542667 ], + [ 7.5361682, 47.5424217 ], + [ 7.5361072, 47.5423606 ], + [ 7.5360847, 47.5423381 ], + [ 7.5358105, 47.5420641 ], + [ 7.5355, 47.5416757 ], + [ 7.5356867, 47.5415726 ], + [ 7.5358124, 47.5415031 ], + [ 7.5358189, 47.5414995 ], + [ 7.5359142, 47.5414476 ], + [ 7.535981, 47.5414113 ], + [ 7.5360496, 47.541374 ], + [ 7.5360807, 47.5413571 ], + [ 7.5366819, 47.5411987 ], + [ 7.5372952, 47.5410631 ], + [ 7.5372283, 47.5409252 ], + [ 7.5372316999999995, 47.5409197 ], + [ 7.5371591, 47.5407271 ], + [ 7.5380241, 47.5406549 ], + [ 7.5379928, 47.5406258 ], + [ 7.5378807, 47.5405219 ], + [ 7.537638, 47.5402945 ], + [ 7.5375463, 47.5402087 ], + [ 7.5372028, 47.5398872 ], + [ 7.5371524999999995, 47.5398401 ], + [ 7.5369243, 47.5396303 ], + [ 7.5367072, 47.5394105 ], + [ 7.5369323, 47.5393173 ], + [ 7.5367963, 47.5391518 ], + [ 7.5367753, 47.5391273 ], + [ 7.5366328, 47.5389328 ], + [ 7.5364559, 47.5385899 ], + [ 7.5362365, 47.5381405 ], + [ 7.5361997, 47.5381029 ], + [ 7.5361706, 47.538073 ], + [ 7.5359646, 47.5378598 ], + [ 7.5353962, 47.5373749 ], + [ 7.5350114, 47.5370182 ], + [ 7.5349804, 47.5369955 ], + [ 7.5349842, 47.5369928 ], + [ 7.5351747, 47.5368835 ], + [ 7.5352192, 47.536858 ], + [ 7.5338652, 47.5358358 ], + [ 7.5338269, 47.5358592 ], + [ 7.5337353, 47.5359153 ], + [ 7.5336793, 47.5358662 ], + [ 7.5337542, 47.5358223 ], + [ 7.5335938, 47.5357134 ], + [ 7.5336563, 47.5356791 ], + [ 7.5335649, 47.5356201 ], + [ 7.533562, 47.5356182 ], + [ 7.5333607, 47.5354925 ], + [ 7.5332637, 47.5356064 ], + [ 7.5330756, 47.5355335 ], + [ 7.5327674, 47.5354139 ], + [ 7.5327831, 47.5352665 ], + [ 7.5329327, 47.5350695 ], + [ 7.5330537, 47.5349448 ], + [ 7.533401, 47.5348109 ], + [ 7.5336082, 47.5347201 ], + [ 7.532958, 47.5343464 ], + [ 7.5321868, 47.533841699999996 ], + [ 7.5316418, 47.5335147 ], + [ 7.5315666, 47.5334348 ], + [ 7.531492, 47.5333556 ], + [ 7.5311535, 47.533167 ], + [ 7.5305395, 47.5325364 ], + [ 7.5281716, 47.5316585 ], + [ 7.5279837, 47.5317737 ], + [ 7.5275692, 47.5321633 ], + [ 7.5269061, 47.5327694 ], + [ 7.5267844, 47.5328811 ], + [ 7.5267459, 47.5328797 ], + [ 7.5266843, 47.5328708 ], + [ 7.5266511, 47.5328695 ], + [ 7.5266266, 47.5328718 ], + [ 7.526576, 47.5328605 ], + [ 7.5265076, 47.5328364 ], + [ 7.5264578, 47.5327963 ], + [ 7.5263966, 47.5327656 ], + [ 7.5263316, 47.5327445 ], + [ 7.5262851, 47.5327058 ], + [ 7.5261881, 47.5326537 ], + [ 7.5261586, 47.5326435 ], + [ 7.5260576, 47.532584 ], + [ 7.5259897, 47.5325615 ], + [ 7.5259545, 47.5324631 ], + [ 7.5258942, 47.5324253 ], + [ 7.5258725, 47.5323906 ], + [ 7.5257877, 47.5323401 ], + [ 7.5256654, 47.5322826 ], + [ 7.5256289, 47.53221 ], + [ 7.5256001, 47.5322007 ], + [ 7.5255664, 47.5322064 ], + [ 7.5254593, 47.5321808 ], + [ 7.5254173, 47.5321671 ], + [ 7.5253027, 47.5321497 ], + [ 7.5252739, 47.532161 ], + [ 7.5251795, 47.5321436 ], + [ 7.525158, 47.5321501 ], + [ 7.5251177, 47.5321831 ], + [ 7.5250829, 47.5321636 ], + [ 7.5250454, 47.5321315 ], + [ 7.5249983, 47.5321196 ], + [ 7.5249752999999995, 47.5320948 ], + [ 7.5249326, 47.5320953 ], + [ 7.5248974, 47.5320792 ], + [ 7.5248337, 47.532074 ], + [ 7.5246604, 47.5319743 ], + [ 7.5246023, 47.5319306 ], + [ 7.5245235, 47.5319214 ], + [ 7.5244882, 47.5318819 ], + [ 7.5244419, 47.5318833 ], + [ 7.5244213, 47.531883 ], + [ 7.5244043, 47.5318652 ], + [ 7.5243788, 47.531881 ], + [ 7.5242753, 47.5319447 ], + [ 7.5240669, 47.5320732 ], + [ 7.5242804, 47.5321165 ], + [ 7.5254799, 47.5327299 ], + [ 7.5256942, 47.5327638 ], + [ 7.5261829, 47.532997 ], + [ 7.5266256, 47.5332313 ], + [ 7.526713, 47.5332183 ], + [ 7.5269818, 47.5329624 ], + [ 7.5270336, 47.532913 ], + [ 7.5270524, 47.5328952 ], + [ 7.5270889, 47.5329099 ], + [ 7.5271314, 47.5329407 ], + [ 7.5270197, 47.5329806 ], + [ 7.5267508, 47.5332365 ], + [ 7.5267854, 47.5333336 ], + [ 7.5268821, 47.5334068 ], + [ 7.5270667, 47.5335963 ], + [ 7.5273006, 47.5338197 ], + [ 7.5277005, 47.5342403 ], + [ 7.5277424, 47.534235 ], + [ 7.527768, 47.5342239 ], + [ 7.527794, 47.5342133 ], + [ 7.5278206, 47.5342032 ], + [ 7.5278475, 47.5341937 ], + [ 7.5278749, 47.5341848 ], + [ 7.5279027, 47.5341765 ], + [ 7.5279309, 47.5341687 ], + [ 7.5279594, 47.5341615 ], + [ 7.5279882, 47.534155 ], + [ 7.5280173, 47.534149 ], + [ 7.5280466, 47.5341436 ], + [ 7.5284247, 47.5340795 ], + [ 7.5284539, 47.5340615 ], + [ 7.5284759999999995, 47.5340543 ], + [ 7.5285543, 47.5340284 ], + [ 7.5286016, 47.5340898 ], + [ 7.5285362, 47.5341077 ], + [ 7.5284922, 47.5341197 ], + [ 7.5284444, 47.5341215 ], + [ 7.5280621, 47.5341857 ], + [ 7.528032, 47.5341914 ], + [ 7.5280021, 47.5341977 ], + [ 7.5279726, 47.5342046 ], + [ 7.5279434, 47.5342121 ], + [ 7.5279146, 47.5342203 ], + [ 7.5278861, 47.534229 ], + [ 7.527858, 47.5342383 ], + [ 7.5278304, 47.5342482 ], + [ 7.5278033, 47.5342586 ], + [ 7.5277766, 47.5342696 ], + [ 7.5277504, 47.5342812 ], + [ 7.5277248, 47.5342933 ], + [ 7.5276997, 47.5343059 ], + [ 7.5276752, 47.5343191 ], + [ 7.5275856, 47.5343634 ], + [ 7.5271791, 47.5345647 ], + [ 7.5271612999999995, 47.5345745 ], + [ 7.5271438, 47.5345846 ], + [ 7.5271267, 47.534595 ], + [ 7.52711, 47.5346056 ], + [ 7.5270938, 47.5346166 ], + [ 7.5270745, 47.5346302 ], + [ 7.5270559, 47.5346443 ], + [ 7.527038, 47.5346587 ], + [ 7.5270206, 47.5346735 ], + [ 7.527004, 47.5346886 ], + [ 7.526988, 47.5347041 ], + [ 7.5269727, 47.5347198 ], + [ 7.5269582, 47.5347359 ], + [ 7.5269443, 47.5347523 ], + [ 7.5267454, 47.5349717 ], + [ 7.5267262, 47.5349913 ], + [ 7.5267064999999995, 47.5350105 ], + [ 7.5266862, 47.5350295 ], + [ 7.5266653, 47.5350483 ], + [ 7.526644, 47.5350668 ], + [ 7.526622, 47.5350849 ], + [ 7.5265996, 47.5351028 ], + [ 7.5261587, 47.5354076 ], + [ 7.5261251, 47.5354311 ], + [ 7.5260921, 47.5354549 ], + [ 7.5260597, 47.5354792 ], + [ 7.5260279, 47.5355038 ], + [ 7.5259968, 47.5355287 ], + [ 7.5259663, 47.535554 ], + [ 7.5259364, 47.5355797 ], + [ 7.5259070999999995, 47.5356057 ], + [ 7.5256859, 47.5358089 ], + [ 7.5256554, 47.535838 ], + [ 7.5256243, 47.5358668 ], + [ 7.5255924, 47.5358953 ], + [ 7.5255599, 47.5359233 ], + [ 7.5255267, 47.535951 ], + [ 7.5254928, 47.5359784 ], + [ 7.5254583, 47.5360053 ], + [ 7.525423, 47.5360319 ], + [ 7.5253872, 47.536058 ], + [ 7.5253507, 47.5360838 ], + [ 7.5253006, 47.5361086 ], + [ 7.5253195999999996, 47.5361324 ], + [ 7.5260858, 47.535968 ], + [ 7.5260941, 47.535994 ], + [ 7.5262741, 47.5365607 ], + [ 7.5263594, 47.5369593 ], + [ 7.5264307, 47.5373425 ], + [ 7.5264357, 47.5373692 ], + [ 7.5264538, 47.5374666 ], + [ 7.5265964, 47.5374649 ], + [ 7.5267073, 47.5379351 ], + [ 7.5268133, 47.5384022 ], + [ 7.5268867, 47.5383908 ], + [ 7.5269706, 47.5383784 ], + [ 7.5269996, 47.5385155 ], + [ 7.5270285999999995, 47.538745 ], + [ 7.5270656, 47.5391384 ], + [ 7.5271824, 47.5395165 ], + [ 7.5279109, 47.5393047 ], + [ 7.5279854, 47.539283 ], + [ 7.5280897, 47.5392526 ], + [ 7.5281632, 47.5392352 ], + [ 7.5282804, 47.5391972 ], + [ 7.5285125, 47.5391296 ], + [ 7.5287064, 47.5390733 ], + [ 7.5287881, 47.5390495 ], + [ 7.5290711, 47.5389672 ], + [ 7.5292345, 47.5389196 ], + [ 7.5293181, 47.5388953 ], + [ 7.5293574, 47.5388839 ], + [ 7.5294318, 47.5388623 ], + [ 7.5295098, 47.5388395 ], + [ 7.5298767, 47.5394248 ], + [ 7.5300349, 47.5393554 ], + [ 7.5301279999999995, 47.5393146 ], + [ 7.5301772, 47.539293 ], + [ 7.5301914, 47.5392868 ], + [ 7.5303547, 47.5392147 ], + [ 7.5305545, 47.5391265 ], + [ 7.5302424, 47.5386262 ], + [ 7.5302329, 47.538611 ], + [ 7.5304616, 47.5385392 ], + [ 7.5303403, 47.5381799 ], + [ 7.5300329, 47.5383006 ], + [ 7.5290528, 47.5372697 ], + [ 7.5295082, 47.5370526 ], + [ 7.5294311, 47.5369754 ], + [ 7.5293961, 47.5369401 ], + [ 7.5294085, 47.5369369 ], + [ 7.5294456, 47.5369265 ], + [ 7.5294822, 47.5369156 ], + [ 7.5295185, 47.536904 ], + [ 7.5298484, 47.5367871 ], + [ 7.5298680000000004, 47.5367796 ], + [ 7.529888, 47.5367726 ], + [ 7.5299084, 47.5367663 ], + [ 7.5299293, 47.5367605 ], + [ 7.5299504, 47.5367554 ], + [ 7.5299719, 47.5367509 ], + [ 7.5299937, 47.5367471 ], + [ 7.5300156000000005, 47.5367439 ], + [ 7.5300378, 47.5367413 ], + [ 7.5300601, 47.5367394 ], + [ 7.5300825, 47.5367381 ], + [ 7.530105, 47.5367375 ], + [ 7.5301275, 47.5367376 ], + [ 7.5301499, 47.5367383 ], + [ 7.5301723, 47.5367397 ], + [ 7.5301946, 47.5367417 ], + [ 7.5302167, 47.5367444 ], + [ 7.5302387, 47.5367478 ], + [ 7.5302662, 47.536751699999996 ], + [ 7.5302935, 47.5367562 ], + [ 7.5303205, 47.5367614 ], + [ 7.5303473, 47.5367672 ], + [ 7.5303737, 47.5367737 ], + [ 7.5303998, 47.5367807 ], + [ 7.5304256, 47.5367884 ], + [ 7.5304509, 47.5367966 ], + [ 7.5304758, 47.5368055 ], + [ 7.5305002, 47.5368149 ], + [ 7.5305241, 47.5368249 ], + [ 7.5305475, 47.5368354 ], + [ 7.5305704, 47.5368465 ], + [ 7.5305926, 47.5368581 ], + [ 7.5306143, 47.5368703 ], + [ 7.5306353, 47.5368829 ], + [ 7.5306557, 47.536896 ], + [ 7.5306754, 47.5369096 ], + [ 7.530701, 47.5369344 ], + [ 7.5308014, 47.5370318 ], + [ 7.531222, 47.5375106 ], + [ 7.5318634, 47.5380722 ], + [ 7.5322039, 47.5382684 ], + [ 7.5324175, 47.5383927 ], + [ 7.5325887, 47.5385169 ], + [ 7.5327474, 47.5386552 ], + [ 7.5327775, 47.5386814 ], + [ 7.532902, 47.5388626 ], + [ 7.5330326, 47.5391405 ], + [ 7.5332128, 47.5395272 ], + [ 7.5332544, 47.5396163 ], + [ 7.5334435, 47.5400211 ], + [ 7.5336966, 47.540562 ], + [ 7.5337945, 47.5408891 ], + [ 7.5339206, 47.5412827 ], + [ 7.533969, 47.54146 ], + [ 7.5339697999999995, 47.5414627 ], + [ 7.5340081, 47.5414574 ], + [ 7.5344324, 47.5413983 ], + [ 7.5344799, 47.5413917 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns268", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Allschwilerwald", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Allschwilerwald", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Allschwilerwald", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Allschwilerwald", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.3136839, 46.4866421 ], + [ 7.3136001, 46.484288 ], + [ 7.3133381, 46.4819402 ], + [ 7.3128987, 46.4796051 ], + [ 7.3122829, 46.4772891 ], + [ 7.3114926, 46.4749985 ], + [ 7.31053, 46.4727396 ], + [ 7.3093976, 46.4705186 ], + [ 7.3080986, 46.4683415 ], + [ 7.3066367, 46.4662144 ], + [ 7.3050157, 46.4641431 ], + [ 7.3032403, 46.4621332 ], + [ 7.3013151, 46.4601902 ], + [ 7.2992456, 46.4583195 ], + [ 7.2970374, 46.4565262 ], + [ 7.2946966, 46.4548151 ], + [ 7.2922296, 46.453191 ], + [ 7.2896431, 46.4516583 ], + [ 7.2869442, 46.4502212 ], + [ 7.2841404, 46.4488836 ], + [ 7.2812392, 46.4476493 ], + [ 7.2782487, 46.4465214 ], + [ 7.275177, 46.4455033 ], + [ 7.2720326, 46.4445975 ], + [ 7.2688239, 46.4438067 ], + [ 7.2655599, 46.4431329 ], + [ 7.2622494, 46.4425781 ], + [ 7.2589016, 46.4421437 ], + [ 7.2555254, 46.4418309 ], + [ 7.2521302, 46.4416406 ], + [ 7.2487253, 46.4415733 ], + [ 7.24532, 46.4416291 ], + [ 7.2419235, 46.441808 ], + [ 7.2385452, 46.4421094 ], + [ 7.2351943, 46.4425326 ], + [ 7.2318799, 46.4430763 ], + [ 7.2286112, 46.443739 ], + [ 7.225397, 46.444519 ], + [ 7.2222463, 46.4454142 ], + [ 7.2191674, 46.446422 ], + [ 7.216169, 46.4475397 ], + [ 7.2132591999999995, 46.4487644 ], + [ 7.210446, 46.4500925 ], + [ 7.207737, 46.4515205 ], + [ 7.2051397999999995, 46.4530444 ], + [ 7.2026613, 46.4546602 ], + [ 7.2003085, 46.4563634 ], + [ 7.1980877, 46.4581493 ], + [ 7.1960049999999995, 46.460013000000004 ], + [ 7.1940662, 46.4619495 ], + [ 7.1922766, 46.4639534 ], + [ 7.1906411, 46.4660192 ], + [ 7.1891642000000004, 46.4681414 ], + [ 7.1878499, 46.470314 ], + [ 7.1867019, 46.4725312 ], + [ 7.1857233, 46.4747868 ], + [ 7.1849169, 46.4770747 ], + [ 7.1842848, 46.4793887 ], + [ 7.1838289, 46.4817223 ], + [ 7.1835503, 46.4840692 ], + [ 7.1834499, 46.4864229 ], + [ 7.1835281, 46.4887771 ], + [ 7.1837845, 46.4911252 ], + [ 7.1842185, 46.4934608 ], + [ 7.1848289, 46.4957776 ], + [ 7.1856142, 46.498069 ], + [ 7.186572, 46.500329 ], + [ 7.1877, 46.5025512 ], + [ 7.1889949, 46.5047296 ], + [ 7.1904533, 46.506858199999996 ], + [ 7.1920711, 46.5089312 ], + [ 7.193844, 46.5109428 ], + [ 7.1957671, 46.5128876 ], + [ 7.1978351, 46.5147602 ], + [ 7.2000424, 46.5165555 ], + [ 7.2023829, 46.5182685 ], + [ 7.2048502, 46.5198945 ], + [ 7.2074376, 46.5214292 ], + [ 7.2101379, 46.5228682 ], + [ 7.2129437, 46.5242076 ], + [ 7.2158474, 46.5254437 ], + [ 7.218841, 46.5265731 ], + [ 7.2219162, 46.5275928 ], + [ 7.2250646, 46.5285 ], + [ 7.2282776, 46.529292 ], + [ 7.2315464, 46.5299669 ], + [ 7.2348619, 46.5305226 ], + [ 7.2382151, 46.5309577 ], + [ 7.2415967, 46.531271 ], + [ 7.2449974, 46.5314616 ], + [ 7.248408, 46.5315291 ], + [ 7.251819, 46.5314731 ], + [ 7.2552211, 46.5312939 ], + [ 7.2586049, 46.530992 ], + [ 7.2619611, 46.5305682 ], + [ 7.2652805, 46.5300236 ], + [ 7.268554, 46.5293598 ], + [ 7.2717725, 46.5285786 ], + [ 7.2749274, 46.527682 ], + [ 7.2780097, 46.5266727 ], + [ 7.2810113, 46.5255533 ], + [ 7.2839237, 46.524327 ], + [ 7.2867389, 46.5229971 ], + [ 7.2894494, 46.5215672 ], + [ 7.2920476, 46.5200413 ], + [ 7.2945263, 46.5184236 ], + [ 7.2968789, 46.5167184 ], + [ 7.2990989, 46.5149306 ], + [ 7.3011801, 46.513065 ], + [ 7.3031169, 46.5111267 ], + [ 7.3049039, 46.5091211 ], + [ 7.3065364, 46.5070536 ], + [ 7.3080098, 46.5049299 ], + [ 7.3093201, 46.5027559 ], + [ 7.3104637, 46.5005375 ], + [ 7.3114375, 46.4982808 ], + [ 7.3122389, 46.495992 ], + [ 7.3128657, 46.4936773 ], + [ 7.3133162, 46.4913432 ], + [ 7.3135892, 46.488996 ], + [ 7.3136839, 46.4866421 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSGK001", + "country" : "CHE", + "name" : [ + { + "text" : "LSGK Saanen", + "lang" : "de-CH" + }, + { + "text" : "LSGK Saanen", + "lang" : "fr-CH" + }, + { + "text" : "LSGK Saanen", + "lang" : "it-CH" + }, + { + "text" : "LSGK Saanen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Gstaad Airport", + "lang" : "de-CH" + }, + { + "text" : "Gstaad Airport", + "lang" : "fr-CH" + }, + { + "text" : "Gstaad Airport", + "lang" : "it-CH" + }, + { + "text" : "Gstaad Airport", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Thomas Rösti", + "lang" : "de-CH" + }, + { + "text" : "Thomas Rösti", + "lang" : "fr-CH" + }, + { + "text" : "Thomas Rösti", + "lang" : "it-CH" + }, + { + "text" : "Thomas Rösti", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.gstaad-airport.ch/en/", + "email" : "info@gstaad-airport.ch", + "phone" : "0041337483322", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.1810254, 47.486146 ], + [ 8.181018, 47.4860048 ], + [ 8.1809997, 47.4858641 ], + [ 8.1809705, 47.4857242 ], + [ 8.1809306, 47.4855856 ], + [ 8.1808801, 47.4854485 ], + [ 8.180819, 47.4853135 ], + [ 8.1807476, 47.4851808 ], + [ 8.180666, 47.4850508 ], + [ 8.1805745, 47.4849239 ], + [ 8.1804734, 47.4848004 ], + [ 8.1803628, 47.4846806 ], + [ 8.1802432, 47.484565 ], + [ 8.1801147, 47.4844537 ], + [ 8.1799779, 47.4843472 ], + [ 8.179833, 47.4842456 ], + [ 8.1796805, 47.4841494 ], + [ 8.1795208, 47.4840586 ], + [ 8.1793543, 47.4839737 ], + [ 8.1791815, 47.4838948 ], + [ 8.1790028, 47.4838221 ], + [ 8.1788187, 47.4837559 ], + [ 8.1786298, 47.4836963 ], + [ 8.1784365, 47.4836435 ], + [ 8.1782394, 47.4835976 ], + [ 8.1780391, 47.4835587 ], + [ 8.177836, 47.483527 ], + [ 8.1776307, 47.4835026 ], + [ 8.1774239, 47.4834855 ], + [ 8.177216, 47.4834757 ], + [ 8.1770077, 47.4834734 ], + [ 8.1767994, 47.4834784 ], + [ 8.1765918, 47.4834908 ], + [ 8.1763855, 47.4835105 ], + [ 8.176181, 47.4835376 ], + [ 8.1759788, 47.4835719 ], + [ 8.1757796, 47.4836133 ], + [ 8.1755838, 47.4836617 ], + [ 8.175392, 47.4837169 ], + [ 8.1752048, 47.4837789 ], + [ 8.1750226, 47.4838475 ], + [ 8.1748459, 47.4839224 ], + [ 8.1746753, 47.4840035 ], + [ 8.1745112, 47.4840906 ], + [ 8.174354, 47.4841833 ], + [ 8.1742042, 47.4842815 ], + [ 8.1740622, 47.4843849 ], + [ 8.1739283, 47.4844932 ], + [ 8.173803, 47.484606 ], + [ 8.1736866, 47.4847232 ], + [ 8.1735794, 47.4848443 ], + [ 8.1734817, 47.4849691 ], + [ 8.1733937, 47.4850972 ], + [ 8.1733158, 47.4852282 ], + [ 8.1732481, 47.4853618 ], + [ 8.1731907, 47.4854976 ], + [ 8.173144, 47.4856352 ], + [ 8.1731079, 47.4857744 ], + [ 8.1730827, 47.4859146 ], + [ 8.1730683, 47.4860555 ], + [ 8.1730648, 47.4861967 ], + [ 8.1730722, 47.4863379 ], + [ 8.1730905, 47.4864786 ], + [ 8.1731196, 47.4866185 ], + [ 8.1731595, 47.4867572 ], + [ 8.17321, 47.4868942 ], + [ 8.1732711, 47.4870292 ], + [ 8.1733425, 47.487162 ], + [ 8.173424, 47.487292 ], + [ 8.1735155, 47.4874189 ], + [ 8.1736167, 47.4875424 ], + [ 8.1737272, 47.4876621 ], + [ 8.1738469, 47.4877778 ], + [ 8.1739753, 47.4878891 ], + [ 8.1741121, 47.4879956 ], + [ 8.174257, 47.4880972 ], + [ 8.1744095, 47.4881934 ], + [ 8.1745692, 47.4882842 ], + [ 8.1747357, 47.4883691 ], + [ 8.1749086, 47.488448 ], + [ 8.1750873, 47.4885207 ], + [ 8.1752713, 47.4885869 ], + [ 8.1754603, 47.4886465 ], + [ 8.1756536, 47.4886994 ], + [ 8.1758507, 47.4887453 ], + [ 8.176051, 47.4887841 ], + [ 8.1762541, 47.4888158 ], + [ 8.1764594, 47.4888402 ], + [ 8.1766663, 47.4888574 ], + [ 8.1768742, 47.4888671 ], + [ 8.1770825, 47.4888695 ], + [ 8.1772908, 47.4888645 ], + [ 8.1774984, 47.4888521 ], + [ 8.1777048, 47.4888323 ], + [ 8.1779093, 47.4888052 ], + [ 8.1781115, 47.488771 ], + [ 8.1783108, 47.4887296 ], + [ 8.1785065, 47.4886812 ], + [ 8.1786983, 47.4886259 ], + [ 8.1788856, 47.4885639 ], + [ 8.1790678, 47.4884953 ], + [ 8.1792444, 47.4884204 ], + [ 8.1794151, 47.4883393 ], + [ 8.1795792, 47.4882522 ], + [ 8.1797364, 47.4881595 ], + [ 8.1798862, 47.4880613 ], + [ 8.1800282, 47.4879579 ], + [ 8.1801621, 47.4878496 ], + [ 8.1802874, 47.4877367 ], + [ 8.1804038, 47.4876196 ], + [ 8.180511, 47.4874984 ], + [ 8.1806087, 47.4873737 ], + [ 8.1806966, 47.4872456 ], + [ 8.1807745, 47.4871146 ], + [ 8.1808423, 47.486981 ], + [ 8.1808996, 47.4868452 ], + [ 8.1809463, 47.4867075 ], + [ 8.1809823, 47.4865684 ], + [ 8.1810076, 47.4864281 ], + [ 8.181022, 47.4862872 ], + [ 8.1810254, 47.486146 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0096", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Riniken Nord", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Riniken Nord", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Riniken Nord", + "lang" : "it-CH" + }, + { + "text" : "Substation Riniken Nord", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.1383716, 46.2968437 ], + [ 6.1381333, 46.2970822 ], + [ 6.1378584, 46.2970415 ], + [ 6.1376292, 46.2970707 ], + [ 6.1373389, 46.2970615 ], + [ 6.1367191, 46.2971862 ], + [ 6.1363685, 46.2972307 ], + [ 6.1362627, 46.297278 ], + [ 6.1361194, 46.2973068 ], + [ 6.1351807, 46.2977616 ], + [ 6.1350955, 46.2977996 ], + [ 6.1350935, 46.2978009 ], + [ 6.1350878, 46.2978065 ], + [ 6.1350786, 46.297811 ], + [ 6.1350656, 46.2978198 ], + [ 6.1343376, 46.2984978 ], + [ 6.134294, 46.2985875 ], + [ 6.1342526, 46.2986282 ], + [ 6.1341986, 46.2987834 ], + [ 6.1339479, 46.2992986 ], + [ 6.1339446, 46.299514 ], + [ 6.1339105, 46.299612 ], + [ 6.1339407, 46.29976 ], + [ 6.1339347, 46.3001438 ], + [ 6.1340887, 46.3004844 ], + [ 6.1341152, 46.300614 ], + [ 6.1341865, 46.3007007 ], + [ 6.1342993, 46.3009503 ], + [ 6.1347639, 46.3014032 ], + [ 6.134838, 46.3014932 ], + [ 6.1348648, 46.3015151 ], + [ 6.1348995, 46.3015354 ], + [ 6.1350059, 46.3016391 ], + [ 6.1350349, 46.3016595 ], + [ 6.1356669, 46.3019842 ], + [ 6.1358326, 46.3020811 ], + [ 6.1358815, 46.3020944 ], + [ 6.136017, 46.302164 ], + [ 6.1368233, 46.3023508 ], + [ 6.1370113, 46.302402 ], + [ 6.1370497, 46.3024033 ], + [ 6.1371765, 46.3024326 ], + [ 6.138077, 46.3024371 ], + [ 6.1382762, 46.3024437 ], + [ 6.1383036, 46.3024383 ], + [ 6.1383989, 46.3024388 ], + [ 6.1388674, 46.3023355 ], + [ 6.138872, 46.3023391 ], + [ 6.1402331, 46.3028056 ], + [ 6.1417482, 46.3028758 ], + [ 6.1431867, 46.302539 ], + [ 6.1432466, 46.3025151 ], + [ 6.1441954, 46.3019842 ], + [ 6.1448133, 46.3013263 ], + [ 6.1457702, 46.3010918 ], + [ 6.1467398, 46.3005752 ], + [ 6.1467783, 46.3005469 ], + [ 6.1475869, 46.2996561 ], + [ 6.1478422, 46.2986185 ], + [ 6.1475056, 46.2975922 ], + [ 6.1466282, 46.2967332 ], + [ 6.1465794, 46.2967012 ], + [ 6.1455743, 46.2962232 ], + [ 6.1444054, 46.2959841 ], + [ 6.143187, 46.2960072 ], + [ 6.1422179, 46.2962461 ], + [ 6.1411431, 46.2960851 ], + [ 6.1396485, 46.2962733 ], + [ 6.1383716, 46.2968437 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-27", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.746475, 47.4370407 ], + [ 7.7465156, 47.4369938 ], + [ 7.7464772, 47.4369752 ], + [ 7.7464348, 47.4370246 ], + [ 7.7461277, 47.4373753 ], + [ 7.7456519, 47.4377269 ], + [ 7.7453257, 47.4376875 ], + [ 7.7449945, 47.4376366 ], + [ 7.744781, 47.4375148 ], + [ 7.7444207, 47.4372384 ], + [ 7.7438526, 47.4375376 ], + [ 7.7435449, 47.4373712 ], + [ 7.7431777, 47.4370594 ], + [ 7.7429551, 47.4367734 ], + [ 7.742601, 47.4364596 ], + [ 7.7425028000000005, 47.436351 ], + [ 7.7424638, 47.4363675 ], + [ 7.7425616999999995, 47.4364767 ], + [ 7.742915, 47.4367897 ], + [ 7.7431380999999995, 47.437076 ], + [ 7.7435118, 47.437393900000004 ], + [ 7.7438519, 47.4375772 ], + [ 7.7444147999999995, 47.4372816 ], + [ 7.7447484, 47.4375376 ], + [ 7.7449739, 47.437665 ], + [ 7.7453164, 47.4377186 ], + [ 7.7456689, 47.4377611 ], + [ 7.7461662, 47.4373933 ], + [ 7.746475, 47.4370407 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns209", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Wildenstein", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Wildenstein", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Wildenstein", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Wildenstein", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5343465, 47.4774965 ], + [ 7.5345561, 47.4773492 ], + [ 7.5347105, 47.4772109 ], + [ 7.5349753, 47.4770344 ], + [ 7.5350443, 47.4769685 ], + [ 7.5350666, 47.476966 ], + [ 7.5351461, 47.4769558 ], + [ 7.5354035, 47.4769228 ], + [ 7.5367439, 47.476679 ], + [ 7.5374316, 47.4765737 ], + [ 7.5378392, 47.4768161 ], + [ 7.5385628, 47.477082 ], + [ 7.5385858, 47.4770921 ], + [ 7.5392092, 47.477367 ], + [ 7.5392121, 47.4773906 ], + [ 7.5392289, 47.477386 ], + [ 7.5393558, 47.4774359 ], + [ 7.5397305, 47.4775833 ], + [ 7.5397544, 47.477596 ], + [ 7.5398496999999995, 47.4776467 ], + [ 7.5401093, 47.4777854 ], + [ 7.5405323, 47.4780435 ], + [ 7.5406604, 47.4780936 ], + [ 7.5408142, 47.4781509 ], + [ 7.5408533, 47.4777765 ], + [ 7.5409509, 47.477678 ], + [ 7.5409956000000005, 47.4776264 ], + [ 7.5414626, 47.4777687 ], + [ 7.5415975, 47.4778025 ], + [ 7.5416853, 47.4778244 ], + [ 7.541773, 47.4778463 ], + [ 7.5418219, 47.4778586 ], + [ 7.5418591, 47.4778592 ], + [ 7.5419434, 47.4778606 ], + [ 7.5420277, 47.4778619 ], + [ 7.542151, 47.4778639 ], + [ 7.5421486, 47.4778414 ], + [ 7.5422524, 47.477836 ], + [ 7.542267, 47.4777553 ], + [ 7.5423496, 47.4776992 ], + [ 7.5426443, 47.4777105 ], + [ 7.5425577, 47.4776128 ], + [ 7.542746, 47.4775526 ], + [ 7.5428596, 47.477517 ], + [ 7.5429089000000005, 47.4775563 ], + [ 7.5434199, 47.477322 ], + [ 7.5431034, 47.4771128 ], + [ 7.543142, 47.4770308 ], + [ 7.5431996, 47.4769082 ], + [ 7.5430373, 47.4765987 ], + [ 7.5430277, 47.4765824 ], + [ 7.543014, 47.476559 ], + [ 7.5423068, 47.476728 ], + [ 7.5420066, 47.4767642 ], + [ 7.5417573, 47.4767526 ], + [ 7.5415141, 47.4767063 ], + [ 7.5408786, 47.4765058 ], + [ 7.5405066, 47.4764186 ], + [ 7.5397847, 47.4763408 ], + [ 7.5394891, 47.4762977 ], + [ 7.5389664, 47.4762175 ], + [ 7.5389432, 47.4762143 ], + [ 7.5389202, 47.4762106 ], + [ 7.5388974, 47.4762064 ], + [ 7.5388748, 47.4762017 ], + [ 7.5388524, 47.4761965 ], + [ 7.5388302, 47.4761909 ], + [ 7.5388084, 47.4761847 ], + [ 7.5387868000000005, 47.4761781 ], + [ 7.5387656, 47.4761711 ], + [ 7.5387415, 47.4761628 ], + [ 7.5387178, 47.476154 ], + [ 7.5386946, 47.4761446 ], + [ 7.5386719, 47.4761347 ], + [ 7.5386497, 47.4761241 ], + [ 7.5386282, 47.4761131 ], + [ 7.5386071999999995, 47.4761015 ], + [ 7.5385869, 47.4760894 ], + [ 7.5385673, 47.4760768 ], + [ 7.5385483, 47.4760638 ], + [ 7.5385301, 47.4760503 ], + [ 7.5385124999999995, 47.4760363 ], + [ 7.5384958, 47.4760219 ], + [ 7.5384798, 47.4760071 ], + [ 7.5384647000000005, 47.475992 ], + [ 7.5384503, 47.4759764 ], + [ 7.5384367999999995, 47.4759605 ], + [ 7.5384242, 47.4759443 ], + [ 7.5384124, 47.4759278 ], + [ 7.5384016, 47.4759111 ], + [ 7.538396, 47.4759001 ], + [ 7.5383905, 47.4758892 ], + [ 7.5383851, 47.4758782 ], + [ 7.5383256, 47.4758129 ], + [ 7.5383184, 47.4758121 ], + [ 7.5383292, 47.4757589 ], + [ 7.5383359, 47.4757051 ], + [ 7.5383374, 47.4756934 ], + [ 7.5383367, 47.4756784 ], + [ 7.538335, 47.4756634 ], + [ 7.5383324, 47.4756485 ], + [ 7.5383289, 47.4756337 ], + [ 7.5383245, 47.4756189 ], + [ 7.5383192, 47.4756043 ], + [ 7.538313, 47.4755899 ], + [ 7.5383059, 47.4755757 ], + [ 7.5382979, 47.4755616 ], + [ 7.5382891, 47.4755478 ], + [ 7.5382795, 47.4755343 ], + [ 7.538269, 47.4755211 ], + [ 7.5382577, 47.4755081 ], + [ 7.5382456, 47.4754955 ], + [ 7.5382327, 47.4754833 ], + [ 7.5382182, 47.4754713 ], + [ 7.5382031, 47.4754596 ], + [ 7.5381873, 47.4754484 ], + [ 7.5381709, 47.4754376 ], + [ 7.5381539, 47.4754272 ], + [ 7.5381363, 47.4754173 ], + [ 7.5381181999999995, 47.4754078 ], + [ 7.5380996, 47.4753987 ], + [ 7.5380804999999995, 47.4753902 ], + [ 7.5380609, 47.4753821 ], + [ 7.5380364, 47.4753727 ], + [ 7.5380114, 47.4753639 ], + [ 7.537986, 47.4753556 ], + [ 7.5379601, 47.4753479 ], + [ 7.537934, 47.4753408 ], + [ 7.5379074, 47.4753343 ], + [ 7.5378806, 47.4753284 ], + [ 7.5378535, 47.4753231 ], + [ 7.5378262, 47.4753184 ], + [ 7.5377986, 47.4753143 ], + [ 7.5377709, 47.4753108 ], + [ 7.537743, 47.475308 ], + [ 7.537715, 47.4753058 ], + [ 7.5376869, 47.4753042 ], + [ 7.5376587, 47.4753033 ], + [ 7.5376305, 47.475303 ], + [ 7.5376023, 47.4753034 ], + [ 7.5375629, 47.4753052 ], + [ 7.5375233999999995, 47.4753075 ], + [ 7.5374841, 47.4753104 ], + [ 7.5374448, 47.4753138 ], + [ 7.5374057, 47.4753177 ], + [ 7.5373666, 47.4753222 ], + [ 7.5373278, 47.4753272 ], + [ 7.537289, 47.4753328 ], + [ 7.5369163, 47.475382 ], + [ 7.5368664, 47.4753889 ], + [ 7.5368163, 47.4753953 ], + [ 7.536766, 47.475401 ], + [ 7.5367156, 47.4754061 ], + [ 7.5366651000000005, 47.4754106 ], + [ 7.5366145, 47.4754145 ], + [ 7.5365638, 47.4754178 ], + [ 7.5365129, 47.4754205 ], + [ 7.5364621, 47.4754225 ], + [ 7.5364112, 47.4754239 ], + [ 7.5363602, 47.4754247 ], + [ 7.5363093, 47.4754249 ], + [ 7.5362583, 47.4754244 ], + [ 7.5362074, 47.4754234 ], + [ 7.5361995, 47.4754231 ], + [ 7.5360958, 47.4754659 ], + [ 7.5357803, 47.4756422 ], + [ 7.5353877, 47.4759519 ], + [ 7.5351494, 47.4761282 ], + [ 7.5350479, 47.4761875 ], + [ 7.534988, 47.4762093 ], + [ 7.5348988, 47.4762626 ], + [ 7.5348536, 47.4762857 ], + [ 7.5348357, 47.4762948 ], + [ 7.5347854, 47.4763261 ], + [ 7.5347865, 47.4762805 ], + [ 7.5347729999999995, 47.4762311 ], + [ 7.5347548, 47.4761985 ], + [ 7.5346827, 47.4760831 ], + [ 7.5345876, 47.4759249 ], + [ 7.5345106, 47.4758052 ], + [ 7.5346896999999995, 47.4753773 ], + [ 7.5347303, 47.4752801 ], + [ 7.5339701, 47.4751977 ], + [ 7.5332042999999995, 47.4751146 ], + [ 7.5327145, 47.4750615 ], + [ 7.5326523, 47.4750545 ], + [ 7.53259, 47.475048 ], + [ 7.5325275, 47.4750419 ], + [ 7.532465, 47.4750362 ], + [ 7.531925, 47.4749878 ], + [ 7.5318728, 47.474983 ], + [ 7.5318207, 47.4749776 ], + [ 7.5317688, 47.4749717 ], + [ 7.5317169, 47.4749653 ], + [ 7.5316653, 47.4749583 ], + [ 7.5316138, 47.4749507 ], + [ 7.5315625, 47.4749426 ], + [ 7.5315114, 47.4749339 ], + [ 7.5314605, 47.4749248 ], + [ 7.5314098, 47.474915 ], + [ 7.5313593, 47.4749048 ], + [ 7.5313349, 47.4750308 ], + [ 7.5312373, 47.4755762 ], + [ 7.5311951, 47.4758116 ], + [ 7.5315093, 47.4758118 ], + [ 7.5318442999999995, 47.475789 ], + [ 7.5321973, 47.4757885 ], + [ 7.5331927, 47.4758582 ], + [ 7.5336698, 47.4759073 ], + [ 7.5340678, 47.4759504 ], + [ 7.5344574, 47.4759575 ], + [ 7.5344662, 47.4759848 ], + [ 7.5344792, 47.4760164 ], + [ 7.5346473, 47.4764257 ], + [ 7.534384, 47.4766248 ], + [ 7.5342443, 47.4766709 ], + [ 7.5339765, 47.4767592 ], + [ 7.5336535, 47.4768657 ], + [ 7.5336235, 47.4768756 ], + [ 7.5334731999999995, 47.4769252 ], + [ 7.5334242, 47.4769413 ], + [ 7.5331644, 47.4769948 ], + [ 7.5331513, 47.4769974 ], + [ 7.5328436, 47.4770607 ], + [ 7.532326, 47.4771672 ], + [ 7.5318236, 47.4772705 ], + [ 7.5317342, 47.4772889 ], + [ 7.5316754, 47.4772959 ], + [ 7.5315448, 47.4773116 ], + [ 7.5313557, 47.4773342 ], + [ 7.5311126, 47.4773632 ], + [ 7.5310842000000005, 47.4773666 ], + [ 7.5309206, 47.4773862 ], + [ 7.5306019, 47.4773274 ], + [ 7.5304332, 47.4772963 ], + [ 7.5302366, 47.47726 ], + [ 7.530056, 47.4772267 ], + [ 7.5299408, 47.4772159 ], + [ 7.5293076, 47.4771567 ], + [ 7.5291502, 47.477142 ], + [ 7.5290463, 47.4771322 ], + [ 7.5288826, 47.4771169 ], + [ 7.5288166, 47.4771107 ], + [ 7.5289941, 47.4776069 ], + [ 7.5291027, 47.4779109 ], + [ 7.5291192, 47.4779569 ], + [ 7.5297678999999995, 47.4780028 ], + [ 7.530322, 47.478327 ], + [ 7.5311006, 47.4783057 ], + [ 7.5317209, 47.4783017 ], + [ 7.5331011, 47.478295 ], + [ 7.533489, 47.4780095 ], + [ 7.53353, 47.4779827 ], + [ 7.5341133, 47.4776277 ], + [ 7.5343465, 47.4774965 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns327", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Büttenenloch - Stapflen", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Büttenenloch - Stapflen", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Büttenenloch - Stapflen", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Büttenenloch - Stapflen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5325689, 47.4546772 ], + [ 7.5325625, 47.4547001 ], + [ 7.5325552, 47.454723 ], + [ 7.5325471, 47.4547457 ], + [ 7.5325381, 47.4547683 ], + [ 7.5325283, 47.4547907 ], + [ 7.5325177, 47.4548129 ], + [ 7.5324552, 47.4550044 ], + [ 7.5325447, 47.4550224 ], + [ 7.533285, 47.4551713 ], + [ 7.5341147, 47.4553725 ], + [ 7.5343585, 47.4554343 ], + [ 7.5344113, 47.4552837 ], + [ 7.5344294, 47.4552326 ], + [ 7.5344429, 47.4551942 ], + [ 7.5344804, 47.4550879 ], + [ 7.5345039, 47.4550214 ], + [ 7.5345989, 47.4547746 ], + [ 7.5343702, 47.4547036 ], + [ 7.5336796, 47.4544895 ], + [ 7.5336123, 47.4545949 ], + [ 7.5335397, 47.4545738 ], + [ 7.5327721, 47.4543402 ], + [ 7.5327129, 47.4543221 ], + [ 7.5326925, 47.454316 ], + [ 7.5326006, 47.4545715 ], + [ 7.5325793, 47.4546309 ], + [ 7.5325745, 47.4546541 ], + [ 7.5325689, 47.4546772 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns132", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Blauenweid", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Blauenweid", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Blauenweid", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Blauenweid", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5406107, 47.4449578 ], + [ 7.5408335, 47.444672 ], + [ 7.5398504, 47.4445365 ], + [ 7.5392548, 47.4444787 ], + [ 7.5389894, 47.4444789 ], + [ 7.5387292, 47.4445408 ], + [ 7.5406107, 47.4449578 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr065", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Egglen", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Egglen", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Egglen", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Egglen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8425362, 47.4360115 ], + [ 7.8425235, 47.4363875 ], + [ 7.8425212, 47.4364784 ], + [ 7.843133, 47.4364499 ], + [ 7.8435179999999995, 47.4364116 ], + [ 7.8441205, 47.4362906 ], + [ 7.8441884, 47.4362296 ], + [ 7.8441578, 47.4361374 ], + [ 7.8439776, 47.4360851 ], + [ 7.8427309, 47.4359205 ], + [ 7.8425362, 47.4360115 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns064", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Rüti", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Rüti", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Rüti", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Rüti", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8238237999999996, 47.4621273 ], + [ 7.8238173, 47.4619861 ], + [ 7.8238, 47.4618454 ], + [ 7.8237718, 47.4617054 ], + [ 7.8237328, 47.4615666 ], + [ 7.8236832, 47.4614294 ], + [ 7.8236229999999995, 47.4612942 ], + [ 7.8235525, 47.4611613 ], + [ 7.8234718999999995, 47.461031 ], + [ 7.8233813, 47.4609038 ], + [ 7.823281, 47.46078 ], + [ 7.8231713, 47.4606599 ], + [ 7.8230525, 47.4605439 ], + [ 7.8229249, 47.4604322 ], + [ 7.8227888, 47.4603253 ], + [ 7.8226447, 47.4602233 ], + [ 7.8224929, 47.4601266 ], + [ 7.8223339, 47.4600353 ], + [ 7.822168, 47.4599499 ], + [ 7.8219958, 47.4598704 ], + [ 7.8218176, 47.4597972 ], + [ 7.8216341, 47.4597304 ], + [ 7.8214457, 47.4596702 ], + [ 7.8212528, 47.4596168 ], + [ 7.8210561, 47.4595703 ], + [ 7.8208561, 47.4595308 ], + [ 7.8206534, 47.4594985 ], + [ 7.8204484, 47.4594735 ], + [ 7.8202418, 47.4594557 ], + [ 7.820034, 47.4594453 ], + [ 7.8198258, 47.4594423 ], + [ 7.8196176, 47.4594467 ], + [ 7.81941, 47.4594585 ], + [ 7.8192036, 47.4594776 ], + [ 7.818999, 47.459504 ], + [ 7.8187967, 47.4595376 ], + [ 7.8185973, 47.4595784 ], + [ 7.8184013, 47.4596262 ], + [ 7.8182092, 47.4596809 ], + [ 7.8180217, 47.4597423 ], + [ 7.8178391, 47.4598103 ], + [ 7.817662, 47.4598847 ], + [ 7.8174909, 47.4599653 ], + [ 7.8173262999999995, 47.4600518 ], + [ 7.8171686, 47.4601441 ], + [ 7.8170182, 47.4602418 ], + [ 7.8168755, 47.4603448 ], + [ 7.816741, 47.460452599999996 ], + [ 7.816615, 47.4605651 ], + [ 7.8164979, 47.4606819 ], + [ 7.8163899, 47.4608027 ], + [ 7.8162914, 47.4609272 ], + [ 7.8162026000000004, 47.461055 ], + [ 7.8161238, 47.4611857 ], + [ 7.8160552, 47.4613191 ], + [ 7.815997, 47.4614548 ], + [ 7.8159494, 47.4615923 ], + [ 7.8159124, 47.4617313 ], + [ 7.8158862, 47.4618714 ], + [ 7.8158709, 47.4620123 ], + [ 7.8158664, 47.4621535 ], + [ 7.8158729000000005, 47.4622947 ], + [ 7.8158902, 47.4624355 ], + [ 7.8159184, 47.4625755 ], + [ 7.8159573, 47.4627142 ], + [ 7.8160069, 47.4628515 ], + [ 7.8160671, 47.4629867 ], + [ 7.8161375, 47.4631196 ], + [ 7.8162182, 47.4632499 ], + [ 7.8163088, 47.4633771 ], + [ 7.816409, 47.4635009 ], + [ 7.8165187, 47.463621 ], + [ 7.8166375, 47.463737 ], + [ 7.8167651, 47.4638487 ], + [ 7.8169012, 47.4639557 ], + [ 7.8170453, 47.4640576 ], + [ 7.8171971, 47.4641544 ], + [ 7.8173562, 47.4642456 ], + [ 7.817522, 47.4643311 ], + [ 7.8176943, 47.4644105 ], + [ 7.8178724, 47.4644837 ], + [ 7.818056, 47.4645506 ], + [ 7.8182444, 47.4646107 ], + [ 7.8184373, 47.4646642 ], + [ 7.8186339, 47.4647107 ], + [ 7.818834, 47.4647502 ], + [ 7.8190368, 47.4647825 ], + [ 7.8192418, 47.4648075 ], + [ 7.8194484, 47.4648253 ], + [ 7.8196562, 47.4648357 ], + [ 7.8198644, 47.4648387 ], + [ 7.8200727, 47.4648343 ], + [ 7.8202802, 47.4648226 ], + [ 7.8204866, 47.4648034 ], + [ 7.8206913, 47.464777 ], + [ 7.8208936, 47.4647434 ], + [ 7.821093, 47.4647026 ], + [ 7.8212890999999996, 47.4646548 ], + [ 7.8214811, 47.4646001 ], + [ 7.8216687, 47.4645387 ], + [ 7.8218513, 47.4644707 ], + [ 7.8220284, 47.4643963 ], + [ 7.8221995, 47.4643157 ], + [ 7.8223641, 47.4642291 ], + [ 7.8225218, 47.4641369 ], + [ 7.8226721999999995, 47.4640391 ], + [ 7.8228149, 47.4639362 ], + [ 7.8229494, 47.4638283 ], + [ 7.8230754000000005, 47.4637158 ], + [ 7.8231925, 47.463599 ], + [ 7.8233005, 47.4634782 ], + [ 7.823399, 47.4633537 ], + [ 7.8234878, 47.4632259 ], + [ 7.8235665, 47.4630952 ], + [ 7.8236351, 47.4629618 ], + [ 7.8236933, 47.4628261 ], + [ 7.8237409, 47.4626886 ], + [ 7.8237779, 47.4625496 ], + [ 7.8238041, 47.4624094 ], + [ 7.8238194, 47.4622686 ], + [ 7.8238237999999996, 47.4621273 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SIS0001", + "country" : "CHE", + "name" : [ + { + "text" : "Gefängnis Sissach", + "lang" : "de-CH" + }, + { + "text" : "Gefängnis Sissach", + "lang" : "fr-CH" + }, + { + "text" : "Gefängnis Sissach", + "lang" : "it-CH" + }, + { + "text" : "Gefängnis Sissach", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Justizvollzug Basel-Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Amt für Justizvollzug Basel-Landschaft", + "lang" : "fr-CH" + }, + { + "text" : "Amt für Justizvollzug Basel-Landschaft", + "lang" : "it-CH" + }, + { + "text" : "Amt für Justizvollzug Basel-Landschaft", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Amtsleitung", + "lang" : "de-CH" + }, + { + "text" : "Amtsleitung", + "lang" : "fr-CH" + }, + { + "text" : "Amtsleitung", + "lang" : "it-CH" + }, + { + "text" : "Amtsleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Nicolas Pozar", + "lang" : "de-CH" + }, + { + "text" : "Nicolas Pozar", + "lang" : "fr-CH" + }, + { + "text" : "Nicolas Pozar", + "lang" : "it-CH" + }, + { + "text" : "Nicolas Pozar", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/sicherheitsdirektion/bv-sid/justizvollzug", + "email" : "kanzlei.ajv@bl.ch", + "phone" : "0041615529045", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P21DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.0004588, 46.3509763 ], + [ 7.0004284, 46.3508579 ], + [ 7.0003414, 46.3507609 ], + [ 7.0002319, 46.3507086 ], + [ 7.0002254, 46.3507085 ], + [ 7.0002151, 46.3507013 ], + [ 7.0002112, 46.3506995 ], + [ 7.0001995, 46.3506995 ], + [ 7.0001735, 46.3506994 ], + [ 7.0001606, 46.3506903 ], + [ 7.0001476, 46.3506903 ], + [ 7.0001216, 46.3506902 ], + [ 7.0001087, 46.3506811 ], + [ 7.0000957, 46.3506811 ], + [ 7.0000697, 46.350681 ], + [ 7.0000568, 46.3506719 ], + [ 7.0000438, 46.3506719 ], + [ 7.0000178, 46.3506718 ], + [ 7.0000049, 46.3506627 ], + [ 6.9999918999999995, 46.3506627 ], + [ 6.999966, 46.3506536 ], + [ 6.999953, 46.3506535 ], + [ 6.9999400000000005, 46.3506535 ], + [ 6.9999271, 46.3506444 ], + [ 6.9999011, 46.3506443 ], + [ 6.9998881, 46.3506443 ], + [ 6.9998752, 46.3506352 ], + [ 6.9998492, 46.3506351 ], + [ 6.9998363, 46.3506351 ], + [ 6.9998233, 46.350635 ], + [ 6.9997974, 46.3506259 ], + [ 6.9997844, 46.3506259 ], + [ 6.9997714, 46.3506258 ], + [ 6.9997454999999995, 46.3506167 ], + [ 6.9997325, 46.3506167 ], + [ 6.9997195, 46.3506166 ], + [ 6.9996935, 46.3506165 ], + [ 6.9996806, 46.3506075 ], + [ 6.9996676, 46.3506074 ], + [ 6.9996416, 46.3506073 ], + [ 6.9996286, 46.3506073 ], + [ 6.9996157, 46.3505982 ], + [ 6.9995897, 46.3505981 ], + [ 6.9995767, 46.3505981 ], + [ 6.9995636999999995, 46.350598 ], + [ 6.9995378, 46.3505979 ], + [ 6.9995248, 46.3505889 ], + [ 6.9995119, 46.3505888 ], + [ 6.9994859, 46.3505887 ], + [ 6.9994729, 46.3505887 ], + [ 6.9994599, 46.3505886 ], + [ 6.999434, 46.3505795 ], + [ 6.999421, 46.3505795 ], + [ 6.999408, 46.3505794 ], + [ 6.999382, 46.3505793 ], + [ 6.999369, 46.3505793 ], + [ 6.9993561, 46.3505702 ], + [ 6.9993301, 46.3505701 ], + [ 6.9993171, 46.3505701 ], + [ 6.9993041, 46.35057 ], + [ 6.9992782, 46.350569899999996 ], + [ 6.9992652, 46.3505609 ], + [ 6.9992523, 46.3505608 ], + [ 6.9992263, 46.3505607 ], + [ 6.9992133, 46.3505607 ], + [ 6.9992004, 46.3505516 ], + [ 6.9991744, 46.3505515 ], + [ 6.9991614, 46.3505515 ], + [ 6.9991484, 46.3505514 ], + [ 6.9991225, 46.3505423 ], + [ 6.9991095, 46.3505423 ], + [ 6.9990835, 46.3505422 ], + [ 6.9990706, 46.3505331 ], + [ 6.9990576, 46.3505331 ], + [ 6.9990316, 46.350533 ], + [ 6.9990187, 46.3505239 ], + [ 6.9990057, 46.3505239 ], + [ 6.9989797, 46.3505238 ], + [ 6.9989668, 46.3505147 ], + [ 6.9989408, 46.3505146 ], + [ 6.9989279, 46.3505056 ], + [ 6.9989149, 46.3505055 ], + [ 6.998889, 46.3505054 ], + [ 6.998876, 46.3504964 ], + [ 6.9988501, 46.3504963 ], + [ 6.9988371, 46.3504873 ], + [ 6.9988242, 46.3504872 ], + [ 6.9987981999999995, 46.3504871 ], + [ 6.9987853, 46.3504781 ], + [ 6.9987723, 46.350478 ], + [ 6.9987463, 46.3504779 ], + [ 6.9987333, 46.3504779 ], + [ 6.9987203000000004, 46.3504778 ], + [ 6.9986942, 46.3504867 ], + [ 6.9986813, 46.350486599999996 ], + [ 6.9986683, 46.350486599999996 ], + [ 6.9986552, 46.3504955 ], + [ 6.9986422, 46.3504955 ], + [ 6.9986291, 46.3505044 ], + [ 6.9986161, 46.3505134 ], + [ 6.998603, 46.3505223 ], + [ 6.99859, 46.3505313 ], + [ 6.9985769, 46.3505402 ], + [ 6.9985638, 46.3505492 ], + [ 6.9985508, 46.3505581 ], + [ 6.9985377, 46.3505671 ], + [ 6.9985246, 46.350576 ], + [ 6.9985116, 46.3505849 ], + [ 6.9984985, 46.3505939 ], + [ 6.9984854, 46.3506028 ], + [ 6.9984724, 46.3506118 ], + [ 6.9984593, 46.3506207 ], + [ 6.9984462, 46.3506387 ], + [ 6.9984201, 46.3506476 ], + [ 6.9984071, 46.3506565 ], + [ 6.998394, 46.3506654 ], + [ 6.9983809, 46.3506744 ], + [ 6.9983679, 46.3506743 ], + [ 6.9983549, 46.3506833 ], + [ 6.9983418, 46.3506922 ], + [ 6.9983287999999995, 46.3507012 ], + [ 6.9983027, 46.3507101 ], + [ 6.9982896, 46.350719 ], + [ 6.9982766, 46.350719 ], + [ 6.9982636, 46.3507279 ], + [ 6.9982375, 46.3507368 ], + [ 6.9982245, 46.3507368 ], + [ 6.9982115, 46.3507457 ], + [ 6.9981984, 46.3507546 ], + [ 6.9981724, 46.3507545 ], + [ 6.9981594, 46.3507635 ], + [ 6.9981463999999995, 46.3507634 ], + [ 6.9981203999999995, 46.3507633 ], + [ 6.9981073, 46.3507723 ], + [ 6.9980943, 46.3507722 ], + [ 6.9980813, 46.3507722 ], + [ 6.9980554, 46.3507721 ], + [ 6.9980423, 46.350781 ], + [ 6.9980163, 46.3507809 ], + [ 6.9980033, 46.3507809 ], + [ 6.9979903, 46.3507808 ], + [ 6.9979644, 46.3507807 ], + [ 6.9979514, 46.3507807 ], + [ 6.9979384, 46.3507806 ], + [ 6.9979124, 46.3507805 ], + [ 6.9978995, 46.3507715 ], + [ 6.9978735, 46.3507714 ], + [ 6.9978605, 46.3507713 ], + [ 6.9978476, 46.3507623 ], + [ 6.9978216, 46.3507622 ], + [ 6.9978086, 46.3507621 ], + [ 6.9977957, 46.3507531 ], + [ 6.9977697, 46.350753 ], + [ 6.9977568, 46.3507439 ], + [ 6.9977439, 46.3507349 ], + [ 6.9977309, 46.3507348 ], + [ 6.997697, 46.3507527 ], + [ 6.9975027999999995, 46.350832 ], + [ 6.9975015, 46.3508329 ], + [ 6.9974948999999995, 46.3508338 ], + [ 6.9976592, 46.3510782 ], + [ 6.9978959, 46.3513751 ], + [ 6.998409, 46.3520158 ], + [ 6.9988699, 46.3531726 ], + [ 6.9996594, 46.3541814 ], + [ 6.9998683, 46.354543 ], + [ 6.999538, 46.3557012 ], + [ 6.9995521, 46.3557256 ], + [ 6.9996777, 46.3564088 ], + [ 6.9996415, 46.3570294 ], + [ 6.999719, 46.3570936 ], + [ 6.9997319000000005, 46.3571026 ], + [ 6.9997318, 46.3571116 ], + [ 6.9997447, 46.3571207 ], + [ 6.9997577, 46.3571297 ], + [ 6.9997706, 46.3571388 ], + [ 6.9997834999999995, 46.3571478 ], + [ 6.9997964, 46.3571568 ], + [ 6.9998094, 46.3571569 ], + [ 6.9998353, 46.357166 ], + [ 6.9998482, 46.357175 ], + [ 6.9998612, 46.3571751 ], + [ 6.9998872, 46.3571752 ], + [ 6.9999001, 46.3571842 ], + [ 6.9999131, 46.3571843 ], + [ 6.9999391, 46.3571844 ], + [ 6.9999521, 46.3571844 ], + [ 6.9999652, 46.3571755 ], + [ 6.9999782, 46.3571755 ], + [ 6.9999911, 46.3571756 ], + [ 7.0000042, 46.3571667 ], + [ 7.0000173, 46.3571577 ], + [ 7.0000303, 46.3571488 ], + [ 7.0000433, 46.3571488 ], + [ 7.0000434, 46.3571398 ], + [ 7.0000565, 46.3571219 ], + [ 7.0000696, 46.3571129 ], + [ 7.0000697, 46.3571039 ], + [ 7.0000827, 46.357095 ], + [ 7.0000959, 46.3570771 ], + [ 7.000096, 46.3570681 ], + [ 7.000109, 46.3570591 ], + [ 7.0001092, 46.357041100000004 ], + [ 7.0001222, 46.3570322 ], + [ 7.0001224, 46.3570142 ], + [ 7.0001355, 46.3569962 ], + [ 7.0001356, 46.3569872 ], + [ 7.0001487, 46.3569693 ], + [ 7.0001489, 46.3569513 ], + [ 7.0001619, 46.3569424 ], + [ 7.0001621, 46.3569244 ], + [ 7.0001622, 46.3569064 ], + [ 7.0001753, 46.3568974 ], + [ 7.0001754, 46.3568795 ], + [ 7.0001885, 46.3568705 ], + [ 7.0001887, 46.3568525 ], + [ 7.0002018, 46.3568346 ], + [ 7.0002019, 46.3568256 ], + [ 7.000215, 46.3568076 ], + [ 7.0002151, 46.3567986 ], + [ 7.0002152, 46.3567807 ], + [ 7.0002283, 46.3567717 ], + [ 7.0002284, 46.3567627 ], + [ 7.0002415, 46.3567448 ], + [ 7.0002546, 46.3567358 ], + [ 7.0002547, 46.3567178 ], + [ 7.0002678, 46.3567089 ], + [ 7.0002678, 46.3566999 ], + [ 7.000281, 46.356682 ], + [ 7.0002811, 46.356673 ], + [ 7.0002941, 46.356664 ], + [ 7.0002942, 46.356655 ], + [ 7.0003073, 46.3566371 ], + [ 7.0003074, 46.3566281 ], + [ 7.0003205, 46.3566191 ], + [ 7.0003205, 46.3566101 ], + [ 7.0003337, 46.3565922 ], + [ 7.0003467, 46.3565833 ], + [ 7.0003468, 46.3565743 ], + [ 7.0003599, 46.3565653 ], + [ 7.00036, 46.3565563 ], + [ 7.000373, 46.3565474 ], + [ 7.0003732, 46.3565294 ], + [ 7.0003862, 46.3565204 ], + [ 7.0003993, 46.3565115 ], + [ 7.0003994, 46.3565025 ], + [ 7.0004124, 46.3564936 ], + [ 7.0004125, 46.3564846 ], + [ 7.0004256, 46.3564756 ], + [ 7.0004257, 46.3564576 ], + [ 7.0004388, 46.3564487 ], + [ 7.0004518, 46.3564397 ], + [ 7.0004519, 46.3564307 ], + [ 7.000465, 46.3564218 ], + [ 7.0004651, 46.3564128 ], + [ 7.0004781, 46.3564039 ], + [ 7.0004783, 46.3563859 ], + [ 7.0004913, 46.3563769 ], + [ 7.0004914, 46.3563679 ], + [ 7.0005045, 46.356359 ], + [ 7.0005175, 46.35635 ], + [ 7.0005176, 46.356341 ], + [ 7.0005307, 46.3563231 ], + [ 7.0005308, 46.3563141 ], + [ 7.0005439, 46.3563052 ], + [ 7.000544, 46.3562962 ], + [ 7.0005571, 46.3562782 ], + [ 7.0005572, 46.3562692 ], + [ 7.0005702, 46.3562603 ], + [ 7.0005703, 46.3562513 ], + [ 7.0005834, 46.3562423 ], + [ 7.0005835, 46.3562243 ], + [ 7.0005966, 46.356215399999996 ], + [ 7.0005966, 46.3562064 ], + [ 7.0006097, 46.3561975 ], + [ 7.0006099, 46.3561795 ], + [ 7.0006229, 46.3561705 ], + [ 7.000623, 46.3561615 ], + [ 7.0006231, 46.3561435 ], + [ 7.0006362, 46.3561346 ], + [ 7.0006363, 46.3561256 ], + [ 7.0006493, 46.3561167 ], + [ 7.0006495, 46.3560987 ], + [ 7.0006626, 46.3560897 ], + [ 7.0006626, 46.3560807 ], + [ 7.0006758, 46.3560628 ], + [ 7.0006758, 46.3560538 ], + [ 7.0006889, 46.3560448 ], + [ 7.000689, 46.3560268 ], + [ 7.0007021, 46.3560179 ], + [ 7.0007022, 46.3560089 ], + [ 7.0007023, 46.3559909 ], + [ 7.0007154, 46.355982 ], + [ 7.0007155, 46.355973 ], + [ 7.0007285, 46.355964 ], + [ 7.0007287, 46.355946 ], + [ 7.0007417, 46.3559371 ], + [ 7.0007418, 46.3559281 ], + [ 7.0007549, 46.3559102 ], + [ 7.000755, 46.3559012 ], + [ 7.0007681, 46.3558922 ], + [ 7.0007682, 46.3558742 ], + [ 7.0007813, 46.3558653 ], + [ 7.0007814, 46.3558563 ], + [ 7.0007945, 46.3558383 ], + [ 7.0007946, 46.3558293 ], + [ 7.0008076, 46.3558204 ], + [ 7.0008078, 46.3558024 ], + [ 7.0008209, 46.3557935 ], + [ 7.0008209, 46.3557845 ], + [ 7.0008341, 46.3557665 ], + [ 7.0008341, 46.3557575 ], + [ 7.0008472, 46.3557486 ], + [ 7.0008473, 46.3557396 ], + [ 7.0008604, 46.3557217 ], + [ 7.0008605, 46.3557127 ], + [ 7.0008735, 46.3557037 ], + [ 7.0008737, 46.3556857 ], + [ 7.0008868, 46.3556768 ], + [ 7.0008868, 46.3556678 ], + [ 7.0008999, 46.3556588 ], + [ 7.0009, 46.3556408 ], + [ 7.0009131, 46.3556319 ], + [ 7.0009132, 46.3556229 ], + [ 7.0009263, 46.355605 ], + [ 7.0009394, 46.355596 ], + [ 7.0009395, 46.355587 ], + [ 7.0009525, 46.3555781 ], + [ 7.0009527, 46.3555601 ], + [ 7.0009657, 46.3555511 ], + [ 7.0009658, 46.3555421 ], + [ 7.0009789, 46.355533199999996 ], + [ 7.000992, 46.3555153 ], + [ 7.0009921, 46.3555063 ], + [ 7.0010051, 46.3554973 ], + [ 7.0010052, 46.3554883 ], + [ 7.0010183, 46.3554704 ], + [ 7.0010314, 46.3554614 ], + [ 7.0010315, 46.3554524 ], + [ 7.0010446, 46.3554435 ], + [ 7.0010576, 46.3554346 ], + [ 7.0010578, 46.3554166 ], + [ 7.0010708, 46.3554076 ], + [ 7.0010709, 46.3553986 ], + [ 7.001084, 46.3553897 ], + [ 7.001097, 46.3553807 ], + [ 7.0010972, 46.3553627 ], + [ 7.0011102, 46.3553538 ], + [ 7.0011233, 46.3553449 ], + [ 7.0011364, 46.3553359 ], + [ 7.0011364, 46.3553269 ], + [ 7.0011495, 46.355318 ], + [ 7.0011626, 46.3553 ], + [ 7.0011627, 46.355291 ], + [ 7.0011758, 46.3552821 ], + [ 7.0011888, 46.3552731 ], + [ 7.0011889, 46.3552641 ], + [ 7.001202, 46.3552552 ], + [ 7.0012151, 46.3552373 ], + [ 7.0012282, 46.3552283 ], + [ 7.0012283, 46.3552193 ], + [ 7.0012413, 46.3552104 ], + [ 7.0012544, 46.3552014 ], + [ 7.0012674, 46.3551925 ], + [ 7.0012805, 46.3551835 ], + [ 7.0012806, 46.3551745 ], + [ 7.0012937, 46.3551566 ], + [ 7.0013068, 46.3551477 ], + [ 7.0013198, 46.3551387 ], + [ 7.0013329, 46.3551298 ], + [ 7.001333, 46.3551208 ], + [ 7.001346, 46.3551118 ], + [ 7.0013591, 46.3551029 ], + [ 7.0013722, 46.3550939 ], + [ 7.0013852, 46.355085 ], + [ 7.0013983, 46.355076 ], + [ 7.0013984, 46.355067 ], + [ 7.0014115, 46.3550491 ], + [ 7.0014246, 46.3550402 ], + [ 7.0014376, 46.3550312 ], + [ 7.0014507, 46.3550223 ], + [ 7.0014638, 46.3550133 ], + [ 7.0014768, 46.3550044 ], + [ 7.0014899, 46.3549954 ], + [ 7.00149, 46.3549864 ], + [ 7.001503, 46.3549775 ], + [ 7.0015161, 46.3549685 ], + [ 7.0015292, 46.3549596 ], + [ 7.0015422, 46.3549507 ], + [ 7.0015553, 46.3549417 ], + [ 7.0015684, 46.3549328 ], + [ 7.0015814, 46.3549238 ], + [ 7.0015945, 46.3549149 ], + [ 7.0016076, 46.3549059 ], + [ 7.0016076, 46.3548969 ], + [ 7.0016207, 46.354888 ], + [ 7.0016338, 46.354879 ], + [ 7.0016468, 46.3548701 ], + [ 7.0016599, 46.3548612 ], + [ 7.001673, 46.3548432 ], + [ 7.0016861, 46.3548343 ], + [ 7.0016991, 46.3548253 ], + [ 7.0017122, 46.3548164 ], + [ 7.0017253, 46.3548074 ], + [ 7.0017253, 46.3547984 ], + [ 7.0017384, 46.3547895 ], + [ 7.0017515, 46.3547805 ], + [ 7.0017645, 46.3547716 ], + [ 7.0017776, 46.3547627 ], + [ 7.0017907, 46.3547537 ], + [ 7.0018037, 46.3547448 ], + [ 7.0018168, 46.3547358 ], + [ 7.0018169, 46.3547268 ], + [ 7.0018299, 46.3547179 ], + [ 7.001843, 46.3547089 ], + [ 7.0018561, 46.3547 ], + [ 7.0018691, 46.354691 ], + [ 7.0018822, 46.3546821 ], + [ 7.0018953, 46.3546642 ], + [ 7.0018954, 46.3546552 ], + [ 7.0019085, 46.3546462 ], + [ 7.0019215, 46.3546373 ], + [ 7.0019346, 46.3546283 ], + [ 7.0019477, 46.3546194 ], + [ 7.0019477, 46.3546104 ], + [ 7.0019608, 46.3546014 ], + [ 7.0019739, 46.3545925 ], + [ 7.001987, 46.3545746 ], + [ 7.0020001, 46.3545656 ], + [ 7.0020001, 46.3545566 ], + [ 7.0020132, 46.3545477 ], + [ 7.0020263, 46.3545387 ], + [ 7.0020393, 46.3545298 ], + [ 7.0020394, 46.3545208 ], + [ 7.0020525, 46.3545028 ], + [ 7.0020656, 46.3544939 ], + [ 7.0020657, 46.3544849 ], + [ 7.0020787, 46.354476 ], + [ 7.0020918, 46.354467 ], + [ 7.0021049, 46.3544581 ], + [ 7.002105, 46.3544401 ], + [ 7.0021181, 46.3544311 ], + [ 7.0021311, 46.3544222 ], + [ 7.0021312, 46.3544132 ], + [ 7.0021443, 46.3544042 ], + [ 7.0021573, 46.3543953 ], + [ 7.0021575, 46.3543773 ], + [ 7.0021705, 46.3543684 ], + [ 7.0021836, 46.3543594 ], + [ 7.0021837, 46.3543504 ], + [ 7.0021968, 46.3543325 ], + [ 7.0021969, 46.3543235 ], + [ 7.00221, 46.3543145 ], + [ 7.002223, 46.3543056 ], + [ 7.0022231, 46.3542966 ], + [ 7.0022362, 46.3542787 ], + [ 7.0022493, 46.3542697 ], + [ 7.0022494, 46.3542607 ], + [ 7.0022624, 46.3542518 ], + [ 7.0022756, 46.3542338 ], + [ 7.0022756, 46.3542248 ], + [ 7.0022887, 46.3542159 ], + [ 7.0022888, 46.3542069 ], + [ 7.0023018, 46.3541979 ], + [ 7.002315, 46.35418 ], + [ 7.002315, 46.354171 ], + [ 7.0023281, 46.3541621 ], + [ 7.0023282, 46.3541531 ], + [ 7.0023413, 46.3541351 ], + [ 7.0023544, 46.3541262 ], + [ 7.0023545, 46.3541172 ], + [ 7.0023675, 46.3541082 ], + [ 7.0023806, 46.3540993 ], + [ 7.0023807, 46.3540813 ], + [ 7.0023938, 46.3540724 ], + [ 7.0023939, 46.3540634 ], + [ 7.0024069, 46.3540544 ], + [ 7.0024201, 46.3540365 ], + [ 7.0024201, 46.3540275 ], + [ 7.0024332, 46.3540185 ], + [ 7.0024463, 46.3540096 ], + [ 7.0024463, 46.3540006 ], + [ 7.0024595, 46.3539827 ], + [ 7.0024725, 46.3539737 ], + [ 7.0024726, 46.3539647 ], + [ 7.0024857, 46.3539558 ], + [ 7.0024988, 46.3539378 ], + [ 7.0024989, 46.3539288 ], + [ 7.0025119, 46.3539199 ], + [ 7.002525, 46.3539109 ], + [ 7.0025251, 46.353902 ], + [ 7.0025382, 46.353884 ], + [ 7.0025513, 46.3538751 ], + [ 7.0025514, 46.3538661 ], + [ 7.0025644, 46.3538571 ], + [ 7.0025775, 46.3538482 ], + [ 7.0025776, 46.3538392 ], + [ 7.0025907, 46.3538212 ], + [ 7.0026038, 46.3538123 ], + [ 7.0026038, 46.3538033 ], + [ 7.0026169, 46.3537944 ], + [ 7.00263, 46.3537854 ], + [ 7.0026431, 46.3537675 ], + [ 7.0026432, 46.3537585 ], + [ 7.0026562, 46.3537495 ], + [ 7.0026693, 46.3537406 ], + [ 7.0026694, 46.3537316 ], + [ 7.0026824, 46.3537226 ], + [ 7.0026956, 46.3537047 ], + [ 7.0026956, 46.3536957 ], + [ 7.0027087, 46.3536868 ], + [ 7.0027218, 46.3536778 ], + [ 7.0027348, 46.3536689 ], + [ 7.002735, 46.3536509 ], + [ 7.002748, 46.3536419 ], + [ 7.0027611, 46.353633 ], + [ 7.0027612, 46.353624 ], + [ 7.0027742, 46.353615 ], + [ 7.0027873, 46.3536061 ], + [ 7.0028004, 46.3535882 ], + [ 7.0028005, 46.3535792 ], + [ 7.0028136, 46.3535702 ], + [ 7.0028266, 46.3535613 ], + [ 7.0028267, 46.3535523 ], + [ 7.0028398, 46.3535433 ], + [ 7.0028529, 46.3535254 ], + [ 7.002866, 46.3535164 ], + [ 7.002866, 46.3535075 ], + [ 7.0028791, 46.3534985 ], + [ 7.0028922, 46.3534896 ], + [ 7.0028922, 46.3534806 ], + [ 7.0029054, 46.3534626 ], + [ 7.0029184, 46.3534537 ], + [ 7.0029185, 46.3534447 ], + [ 7.0029316, 46.3534357 ], + [ 7.0029446, 46.3534268 ], + [ 7.0029577, 46.3534178 ], + [ 7.0029578, 46.3533999 ], + [ 7.0029709, 46.3533909 ], + [ 7.002984, 46.353382 ], + [ 7.002984, 46.353373 ], + [ 7.0029971, 46.353364 ], + [ 7.0030102, 46.3533461 ], + [ 7.0030103, 46.3533371 ], + [ 7.0030234, 46.3533281 ], + [ 7.0030364, 46.3533192 ], + [ 7.0030365, 46.3533102 ], + [ 7.0030496, 46.3533013 ], + [ 7.0030627, 46.3532833 ], + [ 7.0030628, 46.3532743 ], + [ 7.0030759, 46.3532654 ], + [ 7.0030889, 46.3532564 ], + [ 7.003089, 46.3532474 ], + [ 7.0031021, 46.3532295 ], + [ 7.0031152, 46.3532205 ], + [ 7.0031153, 46.3532116 ], + [ 7.0031283, 46.3532026 ], + [ 7.0031414, 46.3531937 ], + [ 7.0031415, 46.3531757 ], + [ 7.0031546, 46.3531667 ], + [ 7.0031677, 46.3531578 ], + [ 7.0031677, 46.3531488 ], + [ 7.0031808, 46.3531398 ], + [ 7.0031939, 46.3531309 ], + [ 7.003194, 46.3531129 ], + [ 7.0032071, 46.353104 ], + [ 7.0032201, 46.353095 ], + [ 7.0032202, 46.353086 ], + [ 7.0032333, 46.3530771 ], + [ 7.0032463, 46.3530681 ], + [ 7.0032465, 46.3530501 ], + [ 7.0032595, 46.3530412 ], + [ 7.0032726, 46.3530322 ], + [ 7.0032857, 46.3530233 ], + [ 7.0032857, 46.3530143 ], + [ 7.0032988, 46.3530054 ], + [ 7.0033119, 46.3529874 ], + [ 7.003312, 46.3529784 ], + [ 7.0033251, 46.3529695 ], + [ 7.0033381, 46.3529605 ], + [ 7.0033512, 46.3529516 ], + [ 7.0033513, 46.3529426 ], + [ 7.0033644, 46.3529246 ], + [ 7.0033775, 46.3529157 ], + [ 7.0033905, 46.3529068 ], + [ 7.0034036, 46.3528978 ], + [ 7.0034037, 46.3528888 ], + [ 7.0034167, 46.3528799 ], + [ 7.0034298, 46.3528709 ], + [ 7.0034429, 46.352862 ], + [ 7.003456, 46.352844 ], + [ 7.0034561, 46.352835 ], + [ 7.0034691, 46.3528261 ], + [ 7.0034822, 46.3528172 ], + [ 7.0034953, 46.3528082 ], + [ 7.0035083, 46.3527993 ], + [ 7.0035214, 46.3527903 ], + [ 7.0035215, 46.3527813 ], + [ 7.0035345, 46.3527724 ], + [ 7.0035477, 46.3527544 ], + [ 7.0035607, 46.3527455 ], + [ 7.0035738, 46.3527365 ], + [ 7.0035868, 46.3527276 ], + [ 7.0035999, 46.3527187 ], + [ 7.003613, 46.3527097 ], + [ 7.003626, 46.3527008 ], + [ 7.0036391, 46.3526918 ], + [ 7.0036522, 46.3526829 ], + [ 7.0036652, 46.3526739 ], + [ 7.0036783, 46.352665 ], + [ 7.0036914, 46.352656 ], + [ 7.0037044, 46.3526471 ], + [ 7.0037175, 46.3526381 ], + [ 7.0037305, 46.3526292 ], + [ 7.0037436, 46.3526203 ], + [ 7.0037567, 46.3526113 ], + [ 7.0037697, 46.3526024 ], + [ 7.0037828, 46.3525934 ], + [ 7.0037959, 46.3525845 ], + [ 7.0038089, 46.3525755 ], + [ 7.003822, 46.3525666 ], + [ 7.0038351, 46.3525576 ], + [ 7.0038482, 46.3525397 ], + [ 7.0038613, 46.3525307 ], + [ 7.0038743, 46.3525218 ], + [ 7.0038874, 46.3525129 ], + [ 7.0039004, 46.3525039 ], + [ 7.0039135, 46.352495 ], + [ 7.0039396, 46.3524861 ], + [ 7.0039526, 46.3524771 ], + [ 7.0039657, 46.3524682 ], + [ 7.0039787, 46.3524592 ], + [ 7.0039918, 46.3524503 ], + [ 7.0040049, 46.3524413 ], + [ 7.0040179, 46.3524324 ], + [ 7.004031, 46.3524235 ], + [ 7.0040441, 46.3524145 ], + [ 7.0040571, 46.3524056 ], + [ 7.0040702, 46.3523966 ], + [ 7.0040833, 46.3523877 ], + [ 7.0040963, 46.3523787 ], + [ 7.0041094, 46.3523698 ], + [ 7.0041224, 46.3523608 ], + [ 7.0041355, 46.3523519 ], + [ 7.0041486, 46.3523429 ], + [ 7.0041616, 46.352334 ], + [ 7.0041747, 46.3523251 ], + [ 7.0041878, 46.3523161 ], + [ 7.0042008, 46.3523072 ], + [ 7.0042139, 46.3522982 ], + [ 7.0042269, 46.3522893 ], + [ 7.00424, 46.3522803 ], + [ 7.0042531, 46.3522714 ], + [ 7.0042661, 46.3522624 ], + [ 7.0042792, 46.3522535 ], + [ 7.0042793, 46.3522445 ], + [ 7.0042923, 46.3522355 ], + [ 7.0043054, 46.3522266 ], + [ 7.0043185, 46.3522087 ], + [ 7.0043316, 46.3521997 ], + [ 7.0043447, 46.3521908 ], + [ 7.0043447, 46.3521818 ], + [ 7.0043578, 46.3521728 ], + [ 7.0043709, 46.3521639 ], + [ 7.0043839, 46.3521549 ], + [ 7.004384, 46.3521459 ], + [ 7.0043971, 46.352137 ], + [ 7.0044102, 46.3521191 ], + [ 7.0044103, 46.3521101 ], + [ 7.0044233, 46.3521011 ], + [ 7.0044234, 46.3520921 ], + [ 7.0044365, 46.3520832 ], + [ 7.0044495, 46.3520742 ], + [ 7.0044496, 46.3520652 ], + [ 7.0044627, 46.3520473 ], + [ 7.0044628, 46.3520383 ], + [ 7.0044759, 46.3520294 ], + [ 7.0044759, 46.3520204 ], + [ 7.0044761, 46.3520024 ], + [ 7.0044891, 46.3519934 ], + [ 7.0044892, 46.3519844 ], + [ 7.0044893, 46.3519754 ], + [ 7.0045024, 46.3519575 ], + [ 7.0045025, 46.3519485 ], + [ 7.0045026, 46.3519395 ], + [ 7.0045026, 46.3519305 ], + [ 7.0045158, 46.3519126 ], + [ 7.0045159, 46.3519036 ], + [ 7.0045159, 46.3518946 ], + [ 7.0045161, 46.3518766 ], + [ 7.0045161, 46.3518676 ], + [ 7.0045162, 46.3518586 ], + [ 7.0045164, 46.3518406 ], + [ 7.0045164, 46.3518316 ], + [ 7.0045165, 46.3518226 ], + [ 7.0045166, 46.3518046 ], + [ 7.0045167, 46.3517956 ], + [ 7.0045169, 46.3517776 ], + [ 7.0045169, 46.3517686 ], + [ 7.004517, 46.3517596 ], + [ 7.0045042, 46.3517416 ], + [ 7.0045042, 46.3517326 ], + [ 7.0045043, 46.3517236 ], + [ 7.0045044, 46.3517056 ], + [ 7.0045045, 46.3516966 ], + [ 7.0044917, 46.3516786 ], + [ 7.0044917, 46.3516696 ], + [ 7.0044918, 46.3516606 ], + [ 7.004492, 46.3516426 ], + [ 7.004479, 46.3516335 ], + [ 7.0044791, 46.3516246 ], + [ 7.0044793, 46.3516066 ], + [ 7.0044663, 46.3515975 ], + [ 7.0044665, 46.3515795 ], + [ 7.0044666, 46.3515705 ], + [ 7.0044536, 46.3515615 ], + [ 7.0044538, 46.3515435 ], + [ 7.0044539, 46.3515345 ], + [ 7.0044409, 46.3515255 ], + [ 7.0044411, 46.3515075 ], + [ 7.0044282, 46.3514984 ], + [ 7.0044282, 46.3514894 ], + [ 7.0044283, 46.3514804 ], + [ 7.0044155, 46.3514624 ], + [ 7.0044155, 46.3514534 ], + [ 7.0044026, 46.3514443 ], + [ 7.0044028, 46.3514264 ], + [ 7.0044028, 46.3514174 ], + [ 7.0043899, 46.3514083 ], + [ 7.0043901, 46.3513903 ], + [ 7.0043771, 46.3513813 ], + [ 7.0043772, 46.3513723 ], + [ 7.0043643, 46.3513632 ], + [ 7.0043644, 46.3513452 ], + [ 7.0043645, 46.3513362 ], + [ 7.0043516, 46.3513272 ], + [ 7.0043517, 46.3513092 ], + [ 7.0043388, 46.3513002 ], + [ 7.0043389, 46.3512912 ], + [ 7.004326, 46.3512731 ], + [ 7.0043261, 46.3512641 ], + [ 7.0043262, 46.3512551 ], + [ 7.0043133, 46.3512461 ], + [ 7.0043134, 46.3512281 ], + [ 7.0043005, 46.3512191 ], + [ 7.0043006, 46.3512101 ], + [ 7.0042877, 46.351192 ], + [ 7.0042878, 46.351183 ], + [ 7.0042749, 46.351174 ], + [ 7.004275, 46.351156 ], + [ 7.0042621, 46.3511469 ], + [ 7.0042622, 46.3511379 ], + [ 7.0042492, 46.3511289 ], + [ 7.0042494, 46.3511109 ], + [ 7.0042365, 46.3511019 ], + [ 7.0042365, 46.3510929 ], + [ 7.0042236, 46.3510838 ], + [ 7.0042107, 46.3510748 ], + [ 7.0042108, 46.3510568 ], + [ 7.0041979, 46.3510477 ], + [ 7.004185, 46.3510387 ], + [ 7.0041851, 46.3510297 ], + [ 7.0041722, 46.3510207 ], + [ 7.0041592, 46.3510116 ], + [ 7.0041464, 46.3509936 ], + [ 7.0041465, 46.3509846 ], + [ 7.0041336, 46.3509755 ], + [ 7.0041206, 46.3509665 ], + [ 7.0041077, 46.3509574 ], + [ 7.0041078, 46.3509484 ], + [ 7.0040949, 46.3509394 ], + [ 7.004082, 46.3509214 ], + [ 7.0040691, 46.3509123 ], + [ 7.0040562, 46.3509033 ], + [ 7.0040563, 46.3508943 ], + [ 7.0040433, 46.3508852 ], + [ 7.0040304, 46.3508762 ], + [ 7.0040175, 46.3508671 ], + [ 7.0040046, 46.3508581 ], + [ 7.0039917, 46.350849 ], + [ 7.0039917, 46.35084 ], + [ 7.0039788, 46.350831 ], + [ 7.003966, 46.350813 ], + [ 7.0039531, 46.3508039 ], + [ 7.0039401, 46.3507949 ], + [ 7.0039311, 46.3507885 ], + [ 7.0036648, 46.3507803 ], + [ 7.0029853, 46.3507885 ], + [ 7.0024979, 46.350819 ], + [ 7.0024979, 46.3508253 ], + [ 7.0024977, 46.3508433 ], + [ 7.0024977, 46.3508523 ], + [ 7.0024976, 46.3508613 ], + [ 7.0024845, 46.3508702 ], + [ 7.0024845, 46.3508792 ], + [ 7.0024714, 46.3508882 ], + [ 7.0024583, 46.3508971 ], + [ 7.0024583, 46.3509061 ], + [ 7.0024452, 46.350915 ], + [ 7.0024321, 46.350924 ], + [ 7.0024191, 46.3509329 ], + [ 7.002406, 46.3509419 ], + [ 7.0023929, 46.3509508 ], + [ 7.0023669, 46.3509597 ], + [ 7.0023539, 46.3509597 ], + [ 7.0023408, 46.3509686 ], + [ 7.0023278, 46.3509776 ], + [ 7.0023018, 46.3509775 ], + [ 7.0022887, 46.3509864 ], + [ 7.0022757, 46.3509864 ], + [ 7.0022498, 46.3509863 ], + [ 7.0022367, 46.3509952 ], + [ 7.0022107, 46.3509951 ], + [ 7.0021977, 46.3509951 ], + [ 7.0021847, 46.350995 ], + [ 7.0021587, 46.3509949 ], + [ 7.0021458, 46.3509949 ], + [ 7.0021328, 46.3509948 ], + [ 7.0021068, 46.3509947 ], + [ 7.0020938, 46.3509947 ], + [ 7.0020678, 46.3509946 ], + [ 7.0020548, 46.3509945 ], + [ 7.0020418, 46.3509945 ], + [ 7.0020159, 46.3509944 ], + [ 7.0020029, 46.3509853 ], + [ 7.0019899, 46.3509853 ], + [ 7.001964, 46.3509852 ], + [ 7.001951, 46.3509851 ], + [ 7.0019381, 46.3509761 ], + [ 7.0019121, 46.350976 ], + [ 7.0018991, 46.3509759 ], + [ 7.0018732, 46.3509668 ], + [ 7.0018602, 46.3509668 ], + [ 7.0018472, 46.3509667 ], + [ 7.0018212, 46.3509666 ], + [ 7.0018083, 46.3509576 ], + [ 7.0017953, 46.3509575 ], + [ 7.0017693, 46.3509574 ], + [ 7.0017564, 46.3509484 ], + [ 7.0017434, 46.3509483 ], + [ 7.0017174, 46.3509482 ], + [ 7.0017044, 46.3509482 ], + [ 7.0016915, 46.3509391 ], + [ 7.0016655, 46.350939 ], + [ 7.0016525, 46.350939 ], + [ 7.0016461, 46.3509345 ], + [ 7.0012192, 46.3510291 ], + [ 7.0009509, 46.3511198 ], + [ 7.0006864, 46.3513724 ], + [ 7.0006315, 46.3514109 ], + [ 7.0002845, 46.3515913 ], + [ 7.0001, 46.3517507 ], + [ 6.9999527, 46.3519786 ], + [ 6.9998186, 46.3523325 ], + [ 6.999791, 46.3523774 ], + [ 6.9996956, 46.3524427 ], + [ 6.999602, 46.3524689 ], + [ 6.9995323, 46.352478 ], + [ 6.9994514, 46.3524785 ], + [ 6.9993773, 46.3524684 ], + [ 6.9993528, 46.3524439 ], + [ 6.9993262, 46.3523916 ], + [ 6.9993109, 46.3523379 ], + [ 6.9993071, 46.3522855 ], + [ 6.9993153, 46.3522406 ], + [ 6.9994547, 46.3518723 ], + [ 6.9994692, 46.3518445 ], + [ 6.9996389, 46.3515825 ], + [ 6.999652, 46.3515654 ], + [ 6.999673, 46.3515439 ], + [ 6.9998993, 46.3513487 ], + [ 6.9999462999999995, 46.3513174 ], + [ 7.0002882, 46.3511397 ], + [ 7.0004588, 46.3509763 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00055", + "country" : "CHE", + "name" : [ + { + "text" : "La Riondaz", + "lang" : "de-CH" + }, + { + "text" : "La Riondaz", + "lang" : "fr-CH" + }, + { + "text" : "La Riondaz", + "lang" : "it-CH" + }, + { + "text" : "La Riondaz", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "startDateTime" : "2024-11-15T00:00:00+01:00", + "endDateTime" : "2025-04-15T00:00:00+02:00" + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Generaldirektion für Umwelt", + "lang" : "de-CH" + }, + { + "text" : "Direction générale de l'environnement", + "lang" : "fr-CH" + }, + { + "text" : "Direzione generale dell'Ambiente", + "lang" : "it-CH" + }, + { + "text" : "Environment Department", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.dge@vd.ch", + "phone" : "0041213164422", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.1409829, 46.3287605 ], + [ 7.1407743, 46.3295933 ], + [ 7.1404084, 46.329774 ], + [ 7.1392268, 46.330459 ], + [ 7.1392725, 46.3315827 ], + [ 7.1407042, 46.3328909 ], + [ 7.1412496, 46.3335994 ], + [ 7.1415588, 46.3345241 ], + [ 7.1415542, 46.3353759 ], + [ 7.1418663, 46.3357753 ], + [ 7.1429086999999996, 46.3363393 ], + [ 7.143509, 46.3367574 ], + [ 7.1435649, 46.3369825 ], + [ 7.1430802, 46.3375047 ], + [ 7.1427904, 46.3382542 ], + [ 7.1427023, 46.33846 ], + [ 7.1423444, 46.3393019 ], + [ 7.1423579, 46.3394351 ], + [ 7.1417519, 46.3400452 ], + [ 7.1417464, 46.3403511 ], + [ 7.141773, 46.3404591 ], + [ 7.1418388, 46.3405402 ], + [ 7.1421175, 46.3408873 ], + [ 7.1421762, 46.341071 ], + [ 7.1423046, 46.3415921 ], + [ 7.1423995, 46.3420395 ], + [ 7.1425046, 46.3422943 ], + [ 7.1425317, 46.3425706 ], + [ 7.1425018, 46.3428053 ], + [ 7.1424334, 46.3429643 ], + [ 7.1423137, 46.3432402 ], + [ 7.1422851, 46.343492 ], + [ 7.1425743, 46.3442871 ], + [ 7.1426858, 46.344559 ], + [ 7.1427962, 46.3445647 ], + [ 7.1429442, 46.3445732 ], + [ 7.1429622, 46.3446038 ], + [ 7.1430272, 46.3445986 ], + [ 7.1431519, 46.3446034 ], + [ 7.1432752, 46.3446226 ], + [ 7.1433791, 46.3446265 ], + [ 7.1435038, 46.3446196 ], + [ 7.1436559, 46.3446047 ], + [ 7.1438729, 46.3445918 ], + [ 7.1440314, 46.3445787 ], + [ 7.1441523, 46.3445638 ], + [ 7.1442484, 46.3445559 ], + [ 7.1444603, 46.3445421 ], + [ 7.1445772, 46.3445406 ], + [ 7.1446213, 46.3445407 ], + [ 7.1447422, 46.3445311 ], + [ 7.1448748, 46.3445018 ], + [ 7.1450466, 46.3444473 ], + [ 7.145243, 46.3443894 ], + [ 7.1453784, 46.3443457 ], + [ 7.1454865, 46.3442947 ], + [ 7.1455725, 46.3442337 ], + [ 7.1456613, 46.3441494 ], + [ 7.1457476, 46.3440426 ], + [ 7.1458546, 46.3439601 ], + [ 7.1459524, 46.343883 ], + [ 7.1460399, 46.3437905 ], + [ 7.1461354, 46.3436783 ], + [ 7.1462306, 46.3435994 ], + [ 7.146361, 46.3435017 ], + [ 7.1465227, 46.3433924 ], + [ 7.1468352, 46.3432556 ], + [ 7.1469706, 46.3431938 ], + [ 7.1471205, 46.3430863 ], + [ 7.1471976, 46.343001 ], + [ 7.147275, 46.3428645 ], + [ 7.1473353, 46.3427657 ], + [ 7.1474214, 46.3426966 ], + [ 7.1475725, 46.342608 ], + [ 7.147656, 46.3425407 ], + [ 7.1477489, 46.3424285 ], + [ 7.1478404, 46.3423163 ], + [ 7.1480208, 46.3420937 ], + [ 7.1480887, 46.3420291 ], + [ 7.1481408, 46.341995 ], + [ 7.1481154, 46.3418951 ], + [ 7.1480848, 46.3417961 ], + [ 7.1480502, 46.341697 ], + [ 7.1480002, 46.3415809 ], + [ 7.1479771, 46.3415277 ], + [ 7.1479605, 46.3414746 ], + [ 7.1479491, 46.3414197 ], + [ 7.1479441, 46.3413783 ], + [ 7.1479445, 46.3413118 ], + [ 7.1479539, 46.3412452 ], + [ 7.1479712, 46.3411796 ], + [ 7.1479975, 46.3411158 ], + [ 7.148012, 46.341078 ], + [ 7.1480304, 46.3410412 ], + [ 7.1480539, 46.3410053 ], + [ 7.1480814, 46.3409703 ], + [ 7.1481128, 46.340938 ], + [ 7.148148, 46.3409075 ], + [ 7.1481871, 46.3408788 ], + [ 7.1482288, 46.3408528 ], + [ 7.1482614, 46.3408358 ], + [ 7.1482952, 46.3408197 ], + [ 7.1483304, 46.3408054 ], + [ 7.1484761, 46.3407527 ], + [ 7.1486206, 46.3406973 ], + [ 7.1487625, 46.3406383 ], + [ 7.1488483, 46.3406133 ], + [ 7.1489355, 46.3405919 ], + [ 7.1490252, 46.3405742 ], + [ 7.1490863000000004, 46.3405644 ], + [ 7.1491474, 46.3405556 ], + [ 7.1492098, 46.3405486 ], + [ 7.1493228, 46.340539 ], + [ 7.1494346, 46.3405213 ], + [ 7.1495426, 46.3404963 ], + [ 7.1496479, 46.3404651 ], + [ 7.1497429, 46.3404348 ], + [ 7.1498353, 46.3404008 ], + [ 7.1499251, 46.3403642 ], + [ 7.1500006, 46.3403284 ], + [ 7.1500736, 46.3402908 ], + [ 7.1501452, 46.3402505 ], + [ 7.1502769, 46.3401627 ], + [ 7.1503969, 46.3400667 ], + [ 7.1505026, 46.3399636 ], + [ 7.1505836, 46.3398783 ], + [ 7.1506516, 46.3397876 ], + [ 7.150708, 46.3396933 ], + [ 7.1507448, 46.339616 ], + [ 7.1507712, 46.3395379 ], + [ 7.1507911, 46.3394578 ], + [ 7.1507899, 46.3394353 ], + [ 7.1507742, 46.3392149 ], + [ 7.1507403, 46.3389953 ], + [ 7.1506882, 46.3387775 ], + [ 7.1505985, 46.3385407 ], + [ 7.150558, 46.3383436 ], + [ 7.1505428, 46.3382833 ], + [ 7.1505184, 46.3382238 ], + [ 7.1504862, 46.3381662 ], + [ 7.1504463, 46.3380968 ], + [ 7.1504156, 46.3380239 ], + [ 7.1503952, 46.3379501 ], + [ 7.1503839, 46.3378754 ], + [ 7.1503823, 46.3376873 ], + [ 7.1503824, 46.337673 ], + [ 7.1503798, 46.3376595 ], + [ 7.1503773, 46.337646 ], + [ 7.1503722, 46.3376324 ], + [ 7.1503628, 46.337562 ], + [ 7.150353, 46.3375519 ], + [ 7.1502324, 46.3374887 ], + [ 7.1500651, 46.3374198 ], + [ 7.1499225, 46.3373489 ], + [ 7.1497883, 46.3372515 ], + [ 7.1496981, 46.3371465 ], + [ 7.1495453, 46.3369462 ], + [ 7.1493705, 46.336723 ], + [ 7.1492148, 46.3365417 ], + [ 7.1491299, 46.3364863 ], + [ 7.1490119, 46.3364498 ], + [ 7.1487565, 46.3363882 ], + [ 7.1486468, 46.3363479 ], + [ 7.1485481, 46.3362867 ], + [ 7.1484497, 46.3361875 ], + [ 7.1483022, 46.3360195 ], + [ 7.1481654, 46.3358859 ], + [ 7.1480204, 46.3357656 ], + [ 7.1479247, 46.3356701 ], + [ 7.1478482, 46.3355785 ], + [ 7.1477691, 46.335466 ], + [ 7.1476734, 46.3353724 ], + [ 7.1475556, 46.3352922 ], + [ 7.1474214, 46.3351985 ], + [ 7.1473312, 46.3351069 ], + [ 7.1472384, 46.3349886 ], + [ 7.1471564, 46.3348989 ], + [ 7.1470442, 46.3348015 ], + [ 7.1468826, 46.3346849 ], + [ 7.1466444, 46.334511 ], + [ 7.1464964, 46.3344231 ], + [ 7.1463675, 46.3343713 ], + [ 7.1462, 46.3343309 ], + [ 7.1459446, 46.3342884 ], + [ 7.1457825, 46.3342708 ], + [ 7.1455599, 46.3342588 ], + [ 7.1453786, 46.3342507 ], + [ 7.1452412, 46.3342294 ], + [ 7.145115, 46.3341872 ], + [ 7.1450889, 46.3341647 ], + [ 7.1450329, 46.3341165 ], + [ 7.1450058, 46.3340555 ], + [ 7.1450007, 46.3339793 ], + [ 7.1450231, 46.333907 ], + [ 7.1450896, 46.3338044 ], + [ 7.1451728, 46.3336675 ], + [ 7.1452064, 46.3335591 ], + [ 7.1452181, 46.3334182 ], + [ 7.1451968, 46.3332963 ], + [ 7.1451396, 46.3331971 ], + [ 7.1450384, 46.333115 ], + [ 7.1449342, 46.3330557 ], + [ 7.1448163, 46.3330116 ], + [ 7.1446542, 46.3329864 ], + [ 7.1443629, 46.3329647 ], + [ 7.1442396, 46.3329444 ], + [ 7.1442289, 46.3329427 ], + [ 7.1441982, 46.3329376 ], + [ 7.1441634, 46.3329224 ], + [ 7.1441429, 46.3329135 ], + [ 7.1440885, 46.3328897 ], + [ 7.1440201, 46.3328324 ], + [ 7.1439953, 46.3327934 ], + [ 7.1439765, 46.3327637 ], + [ 7.1439468, 46.332659 ], + [ 7.1439173, 46.3325123 ], + [ 7.1438909, 46.3323161 ], + [ 7.1438695, 46.3322037 ], + [ 7.1438434, 46.3321615 ], + [ 7.1438151, 46.3321159 ], + [ 7.143722, 46.3320338 ], + [ 7.1435659, 46.3319268 ], + [ 7.143462, 46.3318389 ], + [ 7.143361, 46.3317111 ], + [ 7.1433066, 46.3315948 ], + [ 7.1432935, 46.3314786 ], + [ 7.1432892, 46.3312653 ], + [ 7.1432927, 46.3311206 ], + [ 7.1432712, 46.3310311 ], + [ 7.1432005, 46.3308919 ], + [ 7.1430504, 46.3306992 ], + [ 7.1429247, 46.3305618 ], + [ 7.1428728, 46.3304912 ], + [ 7.1428376, 46.3303978 ], + [ 7.1428171, 46.3303266 ], + [ 7.1427161, 46.3300014 ], + [ 7.1426371, 46.3298558 ], + [ 7.1426127, 46.3298107 ], + [ 7.1425149, 46.3295986 ], + [ 7.142379, 46.3293246 ], + [ 7.1422755, 46.3291472 ], + [ 7.1421827, 46.3290289 ], + [ 7.1420842, 46.328943 ], + [ 7.1419335, 46.3288474 ], + [ 7.1418129, 46.3287919 ], + [ 7.1416949, 46.3287535 ], + [ 7.1415247, 46.3287207 ], + [ 7.141324, 46.328716299999996 ], + [ 7.1411068, 46.3287329 ], + [ 7.1409829, 46.3287605 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00050", + "country" : "CHE", + "name" : [ + { + "text" : "La Jorasse", + "lang" : "de-CH" + }, + { + "text" : "La Jorasse", + "lang" : "fr-CH" + }, + { + "text" : "La Jorasse", + "lang" : "it-CH" + }, + { + "text" : "La Jorasse", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "startDateTime" : "2024-11-15T00:00:00+01:00", + "endDateTime" : "2025-04-15T00:00:00+02:00" + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Generaldirektion für Umwelt", + "lang" : "de-CH" + }, + { + "text" : "Direction générale de l'environnement", + "lang" : "fr-CH" + }, + { + "text" : "Direzione generale dell'Ambiente", + "lang" : "it-CH" + }, + { + "text" : "Environment Department", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.dge@vd.ch", + "phone" : "0041213164422", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5380571, 47.4931546 ], + [ 7.5380771, 47.4931128 ], + [ 7.5376894, 47.4929477 ], + [ 7.5375542, 47.49289 ], + [ 7.5372357, 47.4928328 ], + [ 7.537048, 47.4928333 ], + [ 7.5367948, 47.4928378 ], + [ 7.5367371, 47.4928515 ], + [ 7.5367334, 47.4928734 ], + [ 7.5367864, 47.4928962 ], + [ 7.5371324, 47.4928967 ], + [ 7.5374681, 47.4929882 ], + [ 7.5376271, 47.4931013 ], + [ 7.5382126, 47.4932807 ], + [ 7.5383022, 47.4933189 ], + [ 7.5383034, 47.4933186 ], + [ 7.5383063, 47.4933185 ], + [ 7.5383091, 47.4933185 ], + [ 7.5383128, 47.4933188 ], + [ 7.5383174, 47.4933205 ], + [ 7.5383366, 47.4933288 ], + [ 7.5383531, 47.4933369 ], + [ 7.5383716, 47.4933474 ], + [ 7.5383855, 47.4933545 ], + [ 7.5384601, 47.4933863 ], + [ 7.538467, 47.4933823 ], + [ 7.5384727, 47.4933805 ], + [ 7.5384762, 47.493379 ], + [ 7.5384827, 47.4933774 ], + [ 7.5384892, 47.4933768 ], + [ 7.5384934999999995, 47.4933772 ], + [ 7.5385006, 47.4933785 ], + [ 7.5385051, 47.4933799 ], + [ 7.538509, 47.4933821 ], + [ 7.5385116, 47.4933843 ], + [ 7.5385136, 47.4933868 ], + [ 7.5385157, 47.4933907 ], + [ 7.5385175, 47.4933951 ], + [ 7.5385197999999995, 47.4933993 ], + [ 7.5385241, 47.4934051 ], + [ 7.5385301, 47.4934126 ], + [ 7.5385367, 47.4934189 ], + [ 7.5385846, 47.4934394 ], + [ 7.5386425, 47.4934529 ], + [ 7.5389479, 47.4935237 ], + [ 7.5388, 47.493553 ], + [ 7.5387728, 47.4935512 ], + [ 7.5387384, 47.4935495 ], + [ 7.538701, 47.4935479 ], + [ 7.5386933, 47.4935473 ], + [ 7.5385100000000005, 47.4935171 ], + [ 7.5382763, 47.4935101 ], + [ 7.5381571, 47.4935295 ], + [ 7.5380402, 47.4935462 ], + [ 7.5376037, 47.4935625 ], + [ 7.5372834, 47.4935276 ], + [ 7.5372252, 47.4935894 ], + [ 7.5370768, 47.4935646 ], + [ 7.5369073, 47.4935582 ], + [ 7.5366192, 47.4935475 ], + [ 7.5364554, 47.4935405 ], + [ 7.5363098, 47.4935362 ], + [ 7.5362086, 47.4935305 ], + [ 7.5360503, 47.493522 ], + [ 7.5358519, 47.4935106 ], + [ 7.5356205, 47.4934971 ], + [ 7.5354707, 47.4934887 ], + [ 7.5354696, 47.4934808 ], + [ 7.5354455, 47.4934824 ], + [ 7.5354213, 47.493484 ], + [ 7.5354215, 47.4934859 ], + [ 7.5352778, 47.4934779 ], + [ 7.5349476, 47.4934819 ], + [ 7.5349413, 47.4935696 ], + [ 7.5366003, 47.4936211 ], + [ 7.5372891, 47.4936616 ], + [ 7.5383033, 47.4936291 ], + [ 7.5384407, 47.4936295 ], + [ 7.5385787, 47.4936452 ], + [ 7.5390261, 47.4937097 ], + [ 7.5391566999999995, 47.4937314 ], + [ 7.539287, 47.4937572 ], + [ 7.5400735999999995, 47.493928 ], + [ 7.5402192, 47.4939131 ], + [ 7.5404903, 47.4939795 ], + [ 7.5405999, 47.4940423 ], + [ 7.5407723, 47.4940139 ], + [ 7.5409582, 47.4941201 ], + [ 7.5410211, 47.4941338 ], + [ 7.5410464, 47.4941383 ], + [ 7.5410534, 47.4941357 ], + [ 7.5410582, 47.4941351 ], + [ 7.541063, 47.4941343 ], + [ 7.5410676, 47.4941331 ], + [ 7.541072, 47.4941316 ], + [ 7.5410769, 47.4941296 ], + [ 7.5410815, 47.4941273 ], + [ 7.5410858, 47.4941248 ], + [ 7.5410884, 47.494123 ], + [ 7.5410908, 47.4941211 ], + [ 7.541093, 47.494119 ], + [ 7.5411034, 47.4940982 ], + [ 7.5411165, 47.4940709 ], + [ 7.5410418, 47.4940756 ], + [ 7.5409526, 47.4940131 ], + [ 7.5407644, 47.4939164 ], + [ 7.5406426, 47.4939296 ], + [ 7.5404686, 47.4938817 ], + [ 7.5401321, 47.4938026 ], + [ 7.540016, 47.4938197 ], + [ 7.5397518, 47.4937591 ], + [ 7.5395862000000005, 47.4937372 ], + [ 7.5394936999999995, 47.4936855 ], + [ 7.5394293, 47.49368 ], + [ 7.5394173, 47.493705 ], + [ 7.5392657, 47.4937026 ], + [ 7.5391899, 47.493658 ], + [ 7.5391291, 47.4935929 ], + [ 7.5390456, 47.4935621 ], + [ 7.538958, 47.493485 ], + [ 7.5387059, 47.4933811 ], + [ 7.5386419, 47.4933807 ], + [ 7.5385897, 47.493358 ], + [ 7.538315, 47.4932532 ], + [ 7.5380571, 47.4931546 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns148", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Schlifbach - Grossmattbach", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Schlifbach - Grossmattbach", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Schlifbach - Grossmattbach", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Schlifbach - Grossmattbach", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8286595, 47.384425 ], + [ 7.8288655, 47.3847376 ], + [ 7.8297498999999995, 47.3849062 ], + [ 7.829991, 47.385098 ], + [ 7.8302284, 47.3850117 ], + [ 7.8307079, 47.3848619 ], + [ 7.8308422, 47.3847721 ], + [ 7.8309552, 47.3846294 ], + [ 7.8306705, 47.3844563 ], + [ 7.8301159, 47.3841745 ], + [ 7.8299814, 47.3841302 ], + [ 7.8298322, 47.3841351 ], + [ 7.8297626000000005, 47.3841556 ], + [ 7.8297426, 47.3842816 ], + [ 7.8296653, 47.3843432 ], + [ 7.8294961, 47.3843616 ], + [ 7.8291973, 47.3843513 ], + [ 7.8289648, 47.3843691 ], + [ 7.8286595, 47.384425 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns043", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Schanz - Walten", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Schanz - Walten", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Schanz - Walten", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Schanz - Walten", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8189135, 47.416053 ], + [ 7.8190943, 47.4163015 ], + [ 7.8193304, 47.4164834 ], + [ 7.8195327, 47.4166024 ], + [ 7.8198006, 47.4167036 ], + [ 7.8201944999999995, 47.4167897 ], + [ 7.8203474, 47.4168876 ], + [ 7.8203475000000005, 47.4169297 ], + [ 7.8210095, 47.4173264 ], + [ 7.8213497, 47.4176084 ], + [ 7.8219022, 47.4179708 ], + [ 7.8223036, 47.4183336 ], + [ 7.8225613, 47.4187841 ], + [ 7.8226835, 47.4190343 ], + [ 7.8229138, 47.4190347 ], + [ 7.8234664, 47.4192831 ], + [ 7.823919, 47.4195285 ], + [ 7.8240788, 47.4194604 ], + [ 7.8244193, 47.4193735 ], + [ 7.8250422, 47.4194575 ], + [ 7.8251731, 47.4194874 ], + [ 7.824991, 47.4192127 ], + [ 7.8248154, 47.4188625 ], + [ 7.8247599, 47.4184964 ], + [ 7.8247371999999995, 47.4180529 ], + [ 7.8246707, 47.4174338 ], + [ 7.8249072, 47.4174283 ], + [ 7.8250114, 47.417426 ], + [ 7.8249154999999995, 47.4171782 ], + [ 7.8248304, 47.416695 ], + [ 7.8248569, 47.4162375 ], + [ 7.8249137, 47.4156325 ], + [ 7.8248467999999995, 47.4153912 ], + [ 7.8246594, 47.4152578 ], + [ 7.8245217, 47.4151793 ], + [ 7.8232752, 47.4143955 ], + [ 7.8232273, 47.4143721 ], + [ 7.8231025, 47.414427 ], + [ 7.8229659, 47.4144634 ], + [ 7.8228148, 47.4144856 ], + [ 7.8226298, 47.4145129 ], + [ 7.8225197, 47.4145406 ], + [ 7.822407, 47.4145632 ], + [ 7.8222298, 47.414567 ], + [ 7.8218302, 47.4146511 ], + [ 7.8217646, 47.4146945 ], + [ 7.821826, 47.4148408 ], + [ 7.8219101, 47.4148878 ], + [ 7.8219787, 47.4148922 ], + [ 7.8218345, 47.4152531 ], + [ 7.8217872, 47.4154283 ], + [ 7.8217777, 47.4155395 ], + [ 7.8217555, 47.4158523 ], + [ 7.821732, 47.4159449 ], + [ 7.8216722, 47.4160251 ], + [ 7.821644, 47.4160151 ], + [ 7.8216273, 47.4160259 ], + [ 7.8206175, 47.4164016 ], + [ 7.8206478, 47.4165087 ], + [ 7.8203469, 47.4165265 ], + [ 7.8202756, 47.4163142 ], + [ 7.8202532, 47.4162475 ], + [ 7.820151, 47.4160582 ], + [ 7.8200624, 47.4159516 ], + [ 7.8198452, 47.4156999 ], + [ 7.8197873, 47.4154682 ], + [ 7.8200331, 47.4151514 ], + [ 7.8199881, 47.4150209 ], + [ 7.8199156, 47.4150275 ], + [ 7.8195939, 47.4152209 ], + [ 7.8194231, 47.4153915 ], + [ 7.8193813, 47.4154332 ], + [ 7.8193292, 47.4155515 ], + [ 7.8189135, 47.416053 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr132", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Chilpen", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Chilpen", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Chilpen", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Chilpen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5328401, 47.4434292 ], + [ 7.5329233, 47.4434432 ], + [ 7.5365804, 47.4440645 ], + [ 7.538178, 47.4444186 ], + [ 7.5382503, 47.4444017 ], + [ 7.5382718, 47.4444114 ], + [ 7.5389963, 47.4443524 ], + [ 7.5401443, 47.4444438 ], + [ 7.5406824, 47.4444482 ], + [ 7.541213, 47.444331 ], + [ 7.5414496, 47.4442237 ], + [ 7.5420071, 47.4438903 ], + [ 7.5424801, 47.4435744 ], + [ 7.5425029, 47.4435609 ], + [ 7.5429445, 47.4434106 ], + [ 7.5431992, 47.4433255 ], + [ 7.5430524, 47.4428591 ], + [ 7.5429374, 47.4426119 ], + [ 7.5425408, 47.4422659 ], + [ 7.5421549, 47.4420471 ], + [ 7.5412377, 47.4418642 ], + [ 7.5402999, 47.4417448 ], + [ 7.5394559999999995, 47.4417809 ], + [ 7.5393519, 47.4418092 ], + [ 7.5379354, 47.4419942 ], + [ 7.5372979, 47.4420796 ], + [ 7.5359123, 47.4420666 ], + [ 7.5349122, 47.4421311 ], + [ 7.5337769, 47.4423016 ], + [ 7.5327859, 47.4424258 ], + [ 7.5319477, 47.442419 ], + [ 7.5303845, 47.4422082 ], + [ 7.5293529, 47.442096 ], + [ 7.5273209, 47.4418148 ], + [ 7.52582, 47.4414272 ], + [ 7.5246008, 47.4411963 ], + [ 7.5234959, 47.440879 ], + [ 7.5223808, 47.4405901 ], + [ 7.521745, 47.4404138 ], + [ 7.5209632, 47.4401175 ], + [ 7.5206824, 47.4404499 ], + [ 7.5204329, 47.4407752 ], + [ 7.5203499, 47.4409944 ], + [ 7.5203189, 47.4411923 ], + [ 7.5204132, 47.4415103 ], + [ 7.5205801, 47.4416939 ], + [ 7.5205981, 47.4417322 ], + [ 7.5211472, 47.4417973 ], + [ 7.5216522999999995, 47.4418373 ], + [ 7.5219077, 47.441876 ], + [ 7.5267912, 47.442503 ], + [ 7.5268038, 47.4424395 ], + [ 7.5280214999999995, 47.4425976 ], + [ 7.5302029, 47.4429327 ], + [ 7.5329154, 47.4434211 ], + [ 7.5328401, 47.4434292 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr006", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Egglen", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Egglen", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Egglen", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Egglen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.9798408, 47.362293 ], + [ 6.9777682, 47.3639222 ], + [ 6.9756425, 47.3657816 ], + [ 6.9736627, 47.367714 ], + [ 6.9718344, 47.3697142 ], + [ 6.9701625, 47.3717765 ], + [ 6.9686517, 47.3738955 ], + [ 6.967306, 47.3760652 ], + [ 6.9661293, 47.3782798 ], + [ 6.9651248, 47.3805332 ], + [ 6.9642951, 47.3828192 ], + [ 6.9636427, 47.3851315 ], + [ 6.9631694, 47.3874639 ], + [ 6.9628764, 47.3898099 ], + [ 6.9627645, 47.3921631 ], + [ 6.9628342, 47.394517 ], + [ 6.9630852, 47.3968652 ], + [ 6.9635169, 47.3992013 ], + [ 6.9641282, 47.4015188 ], + [ 6.9649173, 47.4038115 ], + [ 6.9658821, 47.4060729 ], + [ 6.96702, 47.408297 ], + [ 6.968328, 47.4104775 ], + [ 6.9698023, 47.4126086 ], + [ 6.9714390999999996, 47.4146844 ], + [ 6.9732338, 47.4166991 ], + [ 6.9751815, 47.4186473 ], + [ 6.977277, 47.4205236 ], + [ 6.9795144, 47.4223229 ], + [ 6.9818876, 47.4240402 ], + [ 6.9843902, 47.4256707 ], + [ 6.9870152, 47.4272101 ], + [ 6.9897555, 47.4286541 ], + [ 6.9926034999999995, 47.4299987 ], + [ 6.9955514999999995, 47.4312403 ], + [ 6.9985914, 47.4323753 ], + [ 7.0017147, 47.4334008 ], + [ 7.004913, 47.4343139 ], + [ 7.0081774, 47.4351121 ], + [ 7.011499, 47.4357931 ], + [ 7.0148687, 47.4363552 ], + [ 7.0182771, 47.4367967 ], + [ 7.021715, 47.4371165 ], + [ 7.0251729, 47.4373137 ], + [ 7.0286412, 47.4373877 ], + [ 7.0321105, 47.4373383 ], + [ 7.0355712, 47.4371658 ], + [ 7.0390139, 47.4368704 ], + [ 7.042429, 47.4364532 ], + [ 7.0458071, 47.4359151 ], + [ 7.0491391, 47.4352577 ], + [ 7.0524157, 47.4344828 ], + [ 7.0556279, 47.4335926 ], + [ 7.0587669, 47.4325894 ], + [ 7.0618241, 47.431476 ], + [ 7.0647911, 47.4302555 ], + [ 7.0676598, 47.4289312 ], + [ 7.0704223, 47.4275068 ], + [ 7.073071, 47.4259861 ], + [ 7.0755986, 47.4243734 ], + [ 7.0779982, 47.4226731 ], + [ 7.0802633, 47.4208899 ], + [ 7.0823876, 47.4190286 ], + [ 7.0843653, 47.4170944 ], + [ 7.0861911, 47.4150925 ], + [ 7.0878598, 47.4130285 ], + [ 7.089367, 47.410908 ], + [ 7.0907085, 47.4087369 ], + [ 7.0918807, 47.406521 ], + [ 7.0928804, 47.4042666 ], + [ 7.0937048, 47.4019797 ], + [ 7.0943518, 47.3996666 ], + [ 7.0948195, 47.3973337 ], + [ 7.0951067, 47.3949874 ], + [ 7.0952127, 47.3926341 ], + [ 7.0951372, 47.3902802 ], + [ 7.0948804, 47.3879323 ], + [ 7.094443, 47.3855967 ], + [ 7.0938263, 47.3832798 ], + [ 7.0930319, 47.3809881 ], + [ 7.0920622, 47.3787277 ], + [ 7.0909197, 47.3765048 ], + [ 7.0896075, 47.3743256 ], + [ 7.0881295, 47.3721961 ], + [ 7.0864894, 47.3701219 ], + [ 7.084692, 47.3681089 ], + [ 7.0827421, 47.3661625 ], + [ 7.0806451, 47.3642881 ], + [ 7.0784067, 47.3624908 ], + [ 7.0760331, 47.3607755 ], + [ 7.0735308, 47.3591469 ], + [ 7.0709067, 47.3576094 ], + [ 7.0681678, 47.3561673 ], + [ 7.0653218, 47.3548245 ], + [ 7.0623764, 47.3535847 ], + [ 7.0593397, 47.3524513 ], + [ 7.05622, 47.3514274 ], + [ 7.0530258, 47.3505157 ], + [ 7.0505005, 47.3498984 ], + [ 7.050516, 47.3499356 ], + [ 7.0511638, 47.3506668 ], + [ 7.0512124, 47.3506819 ], + [ 7.0517077, 47.3509134 ], + [ 7.0527876, 47.3513318 ], + [ 7.0528188, 47.3515474 ], + [ 7.0527802, 47.3518657 ], + [ 7.0526567, 47.3523163 ], + [ 7.0524696, 47.3528627 ], + [ 7.0522861, 47.3532584 ], + [ 7.0520209, 47.3536699 ], + [ 7.0517687, 47.3543435 ], + [ 7.0516313, 47.3547734 ], + [ 7.0515687, 47.3558013 ], + [ 7.051936, 47.3565987 ], + [ 7.0518403, 47.3567944 ], + [ 7.0506553, 47.3578847 ], + [ 7.0503923, 47.3584378 ], + [ 7.0500747, 47.3589785 ], + [ 7.0499415, 47.3595651 ], + [ 7.0500721, 47.3603329 ], + [ 7.0499586, 47.3608724 ], + [ 7.0499365, 47.3614304 ], + [ 7.0493934, 47.36185 ], + [ 7.0491395, 47.3618831 ], + [ 7.0485497, 47.3623355 ], + [ 7.0483524, 47.3621955 ], + [ 7.0481856, 47.3624033 ], + [ 7.0467776, 47.3624432 ], + [ 7.0468961, 47.3626133 ], + [ 7.0463719, 47.3628705 ], + [ 7.0462697, 47.3629883 ], + [ 7.0457961, 47.3632358 ], + [ 7.0450432, 47.3636074 ], + [ 7.0444969, 47.3638475 ], + [ 7.0438241, 47.3640071 ], + [ 7.0431273, 47.364269 ], + [ 7.0422527, 47.3642077 ], + [ 7.0411904, 47.3641846 ], + [ 7.0400407, 47.3641363 ], + [ 7.0395888, 47.3640191 ], + [ 7.0382417, 47.3639762 ], + [ 7.037754, 47.3637272 ], + [ 7.0364054, 47.3636356 ], + [ 7.0356404, 47.3635015 ], + [ 7.0348405, 47.3633466 ], + [ 7.0345869, 47.364066 ], + [ 7.0343848, 47.3646635 ], + [ 7.0343983, 47.3650461 ], + [ 7.0343166, 47.3653912 ], + [ 7.0343047, 47.3658008 ], + [ 7.0343797, 47.3670032 ], + [ 7.034218, 47.3675572 ], + [ 7.0341512999999996, 47.3679976 ], + [ 7.0341495, 47.3684082 ], + [ 7.0341182, 47.3691339 ], + [ 7.0340791, 47.3696672 ], + [ 7.0325268, 47.3697029 ], + [ 7.0315865, 47.3695879 ], + [ 7.0305413, 47.3694784 ], + [ 7.0293885, 47.3691225 ], + [ 7.0279461, 47.3693827 ], + [ 7.0274128, 47.3694463 ], + [ 7.0257347, 47.3696945 ], + [ 7.0244432, 47.3698649 ], + [ 7.0244267, 47.3700728 ], + [ 7.024059, 47.3699587 ], + [ 7.0232969, 47.3700327 ], + [ 7.0218404, 47.3701357 ], + [ 7.0209895, 47.370303 ], + [ 7.0201399, 47.3703379 ], + [ 7.0194948, 47.3706609 ], + [ 7.0190703, 47.3707628 ], + [ 7.0182924, 47.3713576 ], + [ 7.018226, 47.3717229 ], + [ 7.0181806, 47.3726277 ], + [ 7.0155687, 47.3729188 ], + [ 7.0152246, 47.3726219 ], + [ 7.0148719, 47.3723553 ], + [ 7.0145238, 47.3720701 ], + [ 7.0142325, 47.3718232 ], + [ 7.0139496, 47.3716804 ], + [ 7.0131132, 47.3714341 ], + [ 7.0121921, 47.3724818 ], + [ 7.0121695, 47.3728867 ], + [ 7.0118422, 47.3726847 ], + [ 7.0115149, 47.3724253 ], + [ 7.0109977, 47.3719733 ], + [ 7.0106672, 47.3716035 ], + [ 7.0103734, 47.3713108 ], + [ 7.009356, 47.3704695 ], + [ 7.0088457, 47.3699075 ], + [ 7.0083435, 47.3693214 ], + [ 7.0081811, 47.3688522 ], + [ 7.0074035, 47.3681195 ], + [ 7.0069065, 47.368116 ], + [ 7.0066095, 47.3679986 ], + [ 7.0065067, 47.3677593 ], + [ 7.0054633, 47.3674023 ], + [ 7.0043795, 47.3671797 ], + [ 7.0034773, 47.3667988 ], + [ 7.0019302, 47.3661297 ], + [ 7.0003708, 47.3652521 ], + [ 6.998793, 47.3645025 ], + [ 6.9963798, 47.3636132 ], + [ 6.9954835, 47.3633833 ], + [ 6.9943453, 47.3632268 ], + [ 6.9930579, 47.363373 ], + [ 6.991274, 47.3635186 ], + [ 6.9903594, 47.3635872 ], + [ 6.9894514999999995, 47.3636397 ], + [ 6.9874791, 47.3638008 ], + [ 6.9860062, 47.3638071 ], + [ 6.9842838, 47.3636674 ], + [ 6.9824614, 47.3632768 ], + [ 6.9808602, 47.3627517 ], + [ 6.9798408, 47.362293 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZQ001", + "country" : "CHE", + "name" : [ + { + "text" : "LSZQ Bressaucourt", + "lang" : "de-CH" + }, + { + "text" : "LSZQ Bressaucourt", + "lang" : "fr-CH" + }, + { + "text" : "LSZQ Bressaucourt", + "lang" : "it-CH" + }, + { + "text" : "LSZQ Bressaucourt", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Aérodrome du Jura", + "lang" : "de-CH" + }, + { + "text" : "Aérodrome du Jura", + "lang" : "fr-CH" + }, + { + "text" : "Aérodrome du Jura", + "lang" : "it-CH" + }, + { + "text" : "Aérodrome du Jura", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Chef d'aérodrome", + "lang" : "de-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "fr-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "it-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Serge Crelier", + "lang" : "de-CH" + }, + { + "text" : "Serge Crelier", + "lang" : "fr-CH" + }, + { + "text" : "Serge Crelier", + "lang" : "it-CH" + }, + { + "text" : "Serge Crelier", + "lang" : "en-GB" + } + ], + "siteURL" : "https://aerojura.ch/contact", + "email" : "info@aerojura.ch", + "phone" : "0041324666073", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7885526, 47.4183574 ], + [ 7.7882453, 47.4184367 ], + [ 7.7880806, 47.4184665 ], + [ 7.7881101, 47.4185115 ], + [ 7.7878258, 47.4186795 ], + [ 7.7876379, 47.4188389 ], + [ 7.7870785, 47.4194723 ], + [ 7.7872543, 47.4195486 ], + [ 7.7876353, 47.4197378 ], + [ 7.7877497, 47.4197562 ], + [ 7.7880451, 47.4197213 ], + [ 7.7882085, 47.4200303 ], + [ 7.7882151, 47.4200506 ], + [ 7.7882465, 47.4200861 ], + [ 7.7882792, 47.4201276 ], + [ 7.7883044, 47.4201641 ], + [ 7.7883224, 47.4201952 ], + [ 7.7883598, 47.4202642 ], + [ 7.7883947, 47.4203184 ], + [ 7.7884288999999995, 47.4199513 ], + [ 7.7886669, 47.4195923 ], + [ 7.7888649999999995, 47.4191977 ], + [ 7.7890504, 47.4187799 ], + [ 7.7891342, 47.4185668 ], + [ 7.7891169, 47.4184887 ], + [ 7.7888677, 47.4183968 ], + [ 7.7885526, 47.4183574 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr088", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Eich", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Eich", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Eich", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Eich", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8339253, 47.3721682 ], + [ 7.83395, 47.3722959 ], + [ 7.8340792, 47.372407 ], + [ 7.8342767, 47.3724976 ], + [ 7.8343811, 47.3724851 ], + [ 7.8344039, 47.3724592 ], + [ 7.8343685, 47.3723987 ], + [ 7.8343053, 47.3723213 ], + [ 7.8341669, 47.3721735 ], + [ 7.8342282, 47.3719867 ], + [ 7.8341826, 47.3718793 ], + [ 7.8340811, 47.3718716 ], + [ 7.8339891, 47.3719226 ], + [ 7.8339253, 47.3721682 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns197", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Hecken-Komplex Schmutzberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Hecken-Komplex Schmutzberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Hecken-Komplex Schmutzberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Hecken-Komplex Schmutzberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7010611, 47.4995992 ], + [ 7.700988, 47.4996982 ], + [ 7.7010032, 47.4997362 ], + [ 7.7010197, 47.4997437 ], + [ 7.7011807999999995, 47.4998175 ], + [ 7.7012534, 47.4998508 ], + [ 7.7014372, 47.4997842 ], + [ 7.70148, 47.4997682 ], + [ 7.7014829, 47.499767 ], + [ 7.7014876999999995, 47.4997651 ], + [ 7.7014883, 47.4997648 ], + [ 7.7014893, 47.4997641 ], + [ 7.7016185, 47.4996705 ], + [ 7.7016865, 47.4996212 ], + [ 7.7015916, 47.4994412 ], + [ 7.701535, 47.499463 ], + [ 7.7015264, 47.4994285 ], + [ 7.7014848, 47.4994289 ], + [ 7.7014583, 47.4994494 ], + [ 7.7012839, 47.4995578 ], + [ 7.7011271, 47.4995579 ], + [ 7.7010611, 47.4995992 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr108", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Rüti", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Rüti", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Rüti", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Rüti", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.1427223, 46.3374003 ], + [ 7.1427215, 46.3373113 ], + [ 7.1426986, 46.337224 ], + [ 7.1426896, 46.3372033 ], + [ 7.1426742, 46.3371717 ], + [ 7.1426575, 46.3371402 ], + [ 7.1426382, 46.3371096 ], + [ 7.1426176, 46.3370798 ], + [ 7.1425957, 46.3370501 ], + [ 7.1425208, 46.3369581 ], + [ 7.1424408, 46.336868 ], + [ 7.1423569, 46.3367805 ], + [ 7.142269, 46.3366948 ], + [ 7.142176, 46.3366118 ], + [ 7.1421411, 46.336582 ], + [ 7.1421049, 46.3365522 ], + [ 7.1420687, 46.3365233 ], + [ 7.1420325, 46.3364945 ], + [ 7.1419949, 46.3364665 ], + [ 7.1419536, 46.3364349 ], + [ 7.1419122, 46.3364042 ], + [ 7.1418708, 46.3363735 ], + [ 7.1418294, 46.3363419 ], + [ 7.141788, 46.3363112 ], + [ 7.141713, 46.3362588 ], + [ 7.141634, 46.3362092 ], + [ 7.1415498, 46.336164 ], + [ 7.1414617, 46.3361223 ], + [ 7.1413697, 46.3360843 ], + [ 7.1412842, 46.3360508 ], + [ 7.1411987, 46.3360173 ], + [ 7.1411158, 46.335982 ], + [ 7.1410328, 46.3359449 ], + [ 7.1409499, 46.3359078 ], + [ 7.1409072, 46.335887 ], + [ 7.1408644, 46.3358653 ], + [ 7.140823, 46.3358427 ], + [ 7.1407829, 46.3358192 ], + [ 7.140744, 46.3357948 ], + [ 7.140704, 46.3357641 ], + [ 7.140673, 46.3357298 ], + [ 7.1406511, 46.3356929 ], + [ 7.1406383, 46.3356533 ], + [ 7.140636, 46.3356128 ], + [ 7.140644, 46.3355723 ], + [ 7.1406545, 46.3355463 ], + [ 7.1406755, 46.3355032 ], + [ 7.1406965, 46.33546 ], + [ 7.1407163, 46.3354169 ], + [ 7.1407347, 46.3353729 ], + [ 7.1407518, 46.3353288 ], + [ 7.1407677, 46.3352659 ], + [ 7.1407681, 46.3352021 ], + [ 7.1407656, 46.3351886 ], + [ 7.1407569, 46.3351085 ], + [ 7.1407561, 46.3350284 ], + [ 7.1407656, 46.3349484 ], + [ 7.1407842, 46.3348693 ], + [ 7.1408132, 46.334792 ], + [ 7.1408357, 46.3347129 ], + [ 7.1408388, 46.3346328 ], + [ 7.1408223, 46.3345536 ], + [ 7.1408121, 46.3345266 ], + [ 7.1407992, 46.3344978 ], + [ 7.1407569, 46.3344032 ], + [ 7.1407004, 46.3342798 ], + [ 7.140644, 46.3341564 ], + [ 7.1405861999999996, 46.3340339 ], + [ 7.1405258, 46.3339114 ], + [ 7.1405002, 46.3338583 ], + [ 7.1404732, 46.333806 ], + [ 7.1404462, 46.3337538 ], + [ 7.1404179, 46.3337015 ], + [ 7.1403883, 46.3336493 ], + [ 7.1403704, 46.3336106 ], + [ 7.1403576, 46.33357 ], + [ 7.1403513, 46.3335287 ], + [ 7.1403516, 46.3334873 ], + [ 7.1403583, 46.3334468 ], + [ 7.1403649, 46.3334207 ], + [ 7.1403702, 46.3333947 ], + [ 7.1403756, 46.3333677 ], + [ 7.1403809, 46.3333416 ], + [ 7.1403863, 46.3333155 ], + [ 7.1403906, 46.3332355 ], + [ 7.1403755, 46.3331563 ], + [ 7.1403408, 46.3330806 ], + [ 7.1403305, 46.3330635 ], + [ 7.1403047, 46.3330275 ], + [ 7.1402764, 46.3329932 ], + [ 7.1402441, 46.3329589 ], + [ 7.1402105, 46.3329265 ], + [ 7.1401743, 46.3328958 ], + [ 7.1401342, 46.3328642 ], + [ 7.1400941, 46.3328326 ], + [ 7.1400514, 46.3328019 ], + [ 7.1400088, 46.3327721 ], + [ 7.1399648, 46.3327432 ], + [ 7.1399518, 46.3327351 ], + [ 7.1398457, 46.3326655 ], + [ 7.1397241, 46.3325887 ], + [ 7.1396024, 46.3325129 ], + [ 7.1394807, 46.3324379 ], + [ 7.1393565, 46.3323629 ], + [ 7.1389138, 46.3320981 ], + [ 7.1388646, 46.3320656 ], + [ 7.1388207, 46.3320295 ], + [ 7.1387832, 46.3319898 ], + [ 7.138751, 46.3319475 ], + [ 7.1387279, 46.3319033 ], + [ 7.1387125, 46.3318754 ], + [ 7.1386931, 46.3318493 ], + [ 7.1386712, 46.331824 ], + [ 7.1386453, 46.3318006 ], + [ 7.1386169, 46.3317789 ], + [ 7.1385004, 46.331703 ], + [ 7.1383814, 46.331628 ], + [ 7.138261, 46.3315566 ], + [ 7.1368615, 46.3312435 ], + [ 7.136659, 46.3312321 ], + [ 7.1362526, 46.3312112 ], + [ 7.134868, 46.3312651 ], + [ 7.1344186, 46.3312801 ], + [ 7.1343536, 46.3312844 ], + [ 7.134106, 46.3314511 ], + [ 7.1339877, 46.3316918 ], + [ 7.1340549, 46.3322174 ], + [ 7.1339675, 46.3322855 ], + [ 7.1339476, 46.3325895 ], + [ 7.1338774, 46.3326127 ], + [ 7.1338629000000005, 46.3326495 ], + [ 7.1341021, 46.3328283 ], + [ 7.1363253, 46.3344859 ], + [ 7.1393957, 46.3367763 ], + [ 7.1394803, 46.3367441 ], + [ 7.1397661, 46.3367305 ], + [ 7.1399291, 46.3368442 ], + [ 7.1400533, 46.3369318 ], + [ 7.1400572, 46.3369381 ], + [ 7.1403325, 46.3371827 ], + [ 7.1403044, 46.3373229 ], + [ 7.140283, 46.337438 ], + [ 7.1409854, 46.3379634 ], + [ 7.1409945, 46.3379634 ], + [ 7.1410036, 46.3379635 ], + [ 7.1410114, 46.3379635 ], + [ 7.1410204, 46.3379635 ], + [ 7.1410295, 46.3379635 ], + [ 7.1410386, 46.3379635 ], + [ 7.1410464, 46.3379636 ], + [ 7.1410555, 46.3379627 ], + [ 7.1410646, 46.3379627 ], + [ 7.1410724, 46.3379618 ], + [ 7.1410815, 46.3379619 ], + [ 7.1410906, 46.337961 ], + [ 7.1410984, 46.337961 ], + [ 7.1411075, 46.3379601 ], + [ 7.1411153, 46.3379592 ], + [ 7.1411244, 46.3379584 ], + [ 7.1411335, 46.3379575 ], + [ 7.1411413, 46.3379566 ], + [ 7.1411504, 46.3379557 ], + [ 7.1411582, 46.3379549 ], + [ 7.1411673, 46.3379531 ], + [ 7.1411751, 46.3379522 ], + [ 7.1411842, 46.3379513 ], + [ 7.141192, 46.3379496 ], + [ 7.1412011, 46.3379478 ], + [ 7.1412089, 46.3379469 ], + [ 7.141218, 46.3379451 ], + [ 7.1412258, 46.3379433 ], + [ 7.1412336, 46.3379425 ], + [ 7.1412414, 46.3379407 ], + [ 7.1412492, 46.3379398 ], + [ 7.1412583, 46.3379389 ], + [ 7.1412661, 46.3379381 ], + [ 7.1412739, 46.3379363 ], + [ 7.1412817, 46.3379354 ], + [ 7.1412895, 46.3379345 ], + [ 7.1412984999999995, 46.3379345 ], + [ 7.1413063, 46.3379337 ], + [ 7.1413141, 46.3379328 ], + [ 7.1413219, 46.3379319 ], + [ 7.141331, 46.3379319 ], + [ 7.1413388, 46.3379311 ], + [ 7.1413466, 46.3379311 ], + [ 7.1413557, 46.3379311 ], + [ 7.1413635, 46.3379302 ], + [ 7.1413713, 46.3379302 ], + [ 7.1413791, 46.3379303 ], + [ 7.1413882, 46.3379303 ], + [ 7.141396, 46.3379303 ], + [ 7.1414038, 46.3379303 ], + [ 7.1414129, 46.3379303 ], + [ 7.1414206, 46.3379313 ], + [ 7.1414284, 46.3379313 ], + [ 7.1414375, 46.3379322 ], + [ 7.1414453, 46.3379322 ], + [ 7.1414531, 46.3379332 ], + [ 7.1414609, 46.3379332 ], + [ 7.14147, 46.3379341 ], + [ 7.1414778, 46.337935 ], + [ 7.1414856, 46.3379359 ], + [ 7.1414933, 46.3379369 ], + [ 7.1415024, 46.3379378 ], + [ 7.1415102, 46.3379387 ], + [ 7.141518, 46.3379396 ], + [ 7.1415258, 46.3379414 ], + [ 7.1415336, 46.3379424 ], + [ 7.1415414, 46.3379442 ], + [ 7.1415492, 46.3379451 ], + [ 7.1417295, 46.337978 ], + [ 7.1417373, 46.3379798 ], + [ 7.1417451, 46.3379807 ], + [ 7.1417542, 46.3379825 ], + [ 7.1417619, 46.3379834 ], + [ 7.141771, 46.3379844 ], + [ 7.1417801, 46.3379853 ], + [ 7.1417879, 46.3379871 ], + [ 7.141797, 46.337988 ], + [ 7.1418048, 46.337989 ], + [ 7.1418139, 46.3379899 ], + [ 7.141823, 46.3379899 ], + [ 7.1418307, 46.3379908 ], + [ 7.1418398, 46.3379917 ], + [ 7.1418476, 46.3379918 ], + [ 7.1418567, 46.3379927 ], + [ 7.1418658, 46.3379927 ], + [ 7.1418736, 46.3379936 ], + [ 7.1418827, 46.3379937 ], + [ 7.1418918, 46.3379937 ], + [ 7.1418996, 46.3379937 ], + [ 7.1419086, 46.3379937 ], + [ 7.1419177, 46.3379937 ], + [ 7.1419255, 46.3379938 ], + [ 7.1419346, 46.3379938 ], + [ 7.1419437, 46.3379938 ], + [ 7.1419515, 46.3379929 ], + [ 7.1419606, 46.337993 ], + [ 7.1419697, 46.3379921 ], + [ 7.1419775, 46.3379921 ], + [ 7.1419866, 46.3379912 ], + [ 7.1419944, 46.3379903 ], + [ 7.1420035, 46.3379904 ], + [ 7.1420126, 46.3379895 ], + [ 7.1420204, 46.3379886 ], + [ 7.1420295, 46.3379877 ], + [ 7.1420373, 46.3379869 ], + [ 7.1420464, 46.3379851 ], + [ 7.1420542, 46.3379842 ], + [ 7.1420633, 46.3379833 ], + [ 7.1420711, 46.3379816 ], + [ 7.1420802, 46.3379807 ], + [ 7.142088, 46.3379789 ], + [ 7.1420971, 46.3379771 ], + [ 7.1421049, 46.3379762 ], + [ 7.142114, 46.3379745 ], + [ 7.1421218, 46.3379727 ], + [ 7.1421296, 46.3379709 ], + [ 7.1421387, 46.3379691 ], + [ 7.1421465, 46.3379674 ], + [ 7.1421543, 46.3379656 ], + [ 7.1421634, 46.3379629 ], + [ 7.1421712, 46.3379611 ], + [ 7.142179, 46.3379593 ], + [ 7.1421868, 46.3379567 ], + [ 7.1421946, 46.337954 ], + [ 7.1422037, 46.3379522 ], + [ 7.1422115, 46.3379495 ], + [ 7.1422193, 46.3379469 ], + [ 7.1422271, 46.3379442 ], + [ 7.1422349, 46.3379415 ], + [ 7.1422427, 46.3379388 ], + [ 7.1422505, 46.3379361 ], + [ 7.1422571, 46.3379335 ], + [ 7.1422649, 46.3379308 ], + [ 7.1422727, 46.3379281 ], + [ 7.1422805, 46.3379245 ], + [ 7.142287, 46.3379219 ], + [ 7.1422948, 46.3379183 ], + [ 7.1423026, 46.3379156 ], + [ 7.1423091, 46.337912 ], + [ 7.1423169, 46.3379093 ], + [ 7.1423234, 46.3379058 ], + [ 7.1424277, 46.3378368 ], + [ 7.1424681, 46.3378117 ], + [ 7.1425046, 46.337783 ], + [ 7.1425412, 46.3377498 ], + [ 7.1425739, 46.3377139 ], + [ 7.1426052, 46.337678 ], + [ 7.1426314, 46.3376403 ], + [ 7.142655, 46.3376017 ], + [ 7.1426747, 46.3375621 ], + [ 7.1426918, 46.3375226 ], + [ 7.142705, 46.3374822 ], + [ 7.1427156, 46.3374417 ], + [ 7.1427223, 46.3374003 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00013", + "country" : "CHE", + "name" : [ + { + "text" : "La Jorasse", + "lang" : "de-CH" + }, + { + "text" : "La Jorasse", + "lang" : "fr-CH" + }, + { + "text" : "La Jorasse", + "lang" : "it-CH" + }, + { + "text" : "La Jorasse", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "startDateTime" : "2024-11-15T00:00:00+01:00", + "endDateTime" : "2025-04-15T00:00:00+02:00" + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Generaldirektion für Umwelt", + "lang" : "de-CH" + }, + { + "text" : "Direction générale de l'environnement", + "lang" : "fr-CH" + }, + { + "text" : "Direzione generale dell'Ambiente", + "lang" : "it-CH" + }, + { + "text" : "Environment Department", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.dge@vd.ch", + "phone" : "0041213164422", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.2668511, 46.7105052 ], + [ 8.2667254, 46.708152 ], + [ 8.2664208, 46.7058066 ], + [ 8.2659383, 46.7034754 ], + [ 8.2652791, 46.7011647 ], + [ 8.2644451, 46.6988809 ], + [ 8.2634386, 46.6966303 ], + [ 8.262262400000001, 46.694419 ], + [ 8.2609197, 46.6922531 ], + [ 8.2594142, 46.6901385 ], + [ 8.257750099999999, 46.6880809 ], + [ 8.2559319, 46.6860861 ], + [ 8.2539646, 46.6841595 ], + [ 8.2518537, 46.6823063 ], + [ 8.2496048, 46.6805316 ], + [ 8.2472242, 46.6788404 ], + [ 8.2447185, 46.6772371 ], + [ 8.2420944, 46.6757263 ], + [ 8.2393591, 46.674312 ], + [ 8.2365202, 46.672998 ], + [ 8.2335855, 46.6717881 ], + [ 8.2305629, 46.6706855 ], + [ 8.2274607, 46.6696932 ], + [ 8.2242874, 46.6688139 ], + [ 8.2210518, 46.6680501 ], + [ 8.2177625, 46.6674038 ], + [ 8.2144287, 46.6668768 ], + [ 8.2110595, 46.6664706 ], + [ 8.2076641, 46.6661861 ], + [ 8.2042517, 46.6660243 ], + [ 8.2008317, 46.6659856 ], + [ 8.1974134, 46.6660701 ], + [ 8.1940062, 46.6662774 ], + [ 8.1906194, 46.6666072 ], + [ 8.1872623, 46.6670584 ], + [ 8.183944, 46.6676299 ], + [ 8.1806736, 46.66832 ], + [ 8.17746, 46.669127 ], + [ 8.1743122, 46.6700485 ], + [ 8.1712385, 46.6710821 ], + [ 8.1682476, 46.6722249 ], + [ 8.1653475, 46.6734738 ], + [ 8.1625462, 46.6748254 ], + [ 8.1598513, 46.676276 ], + [ 8.1572703, 46.6778217 ], + [ 8.1548103, 46.6794581 ], + [ 8.1524778, 46.6811809 ], + [ 8.1502795, 46.6829853 ], + [ 8.1482212, 46.6848663 ], + [ 8.1463086, 46.6868189 ], + [ 8.144547, 46.6888376 ], + [ 8.1429413, 46.690917 ], + [ 8.1414958, 46.6930514 ], + [ 8.1402145, 46.6952348 ], + [ 8.1391009, 46.6974614 ], + [ 8.1381581, 46.6997251 ], + [ 8.1373888, 46.7020196 ], + [ 8.136795, 46.7043386 ], + [ 8.1363784, 46.7066759 ], + [ 8.1361401, 46.7090249 ], + [ 8.1360809, 46.7113793 ], + [ 8.136201, 46.7137326 ], + [ 8.1364999, 46.7160783 ], + [ 8.1369769, 46.7184101 ], + [ 8.1376308, 46.7207215 ], + [ 8.1384598, 46.7230062 ], + [ 8.1394615, 46.7252579 ], + [ 8.1406334, 46.7274704 ], + [ 8.1419721, 46.7296378 ], + [ 8.1434741, 46.731754 ], + [ 8.1451352, 46.7338132 ], + [ 8.1469509, 46.7358097 ], + [ 8.1489163, 46.7377382 ], + [ 8.1510259, 46.7395933 ], + [ 8.1532739, 46.7413698 ], + [ 8.1556543, 46.7430631 ], + [ 8.1581605, 46.7446683 ], + [ 8.1607856, 46.746181 ], + [ 8.1635224, 46.7475972 ], + [ 8.1663635, 46.7489129 ], + [ 8.1693009, 46.7501246 ], + [ 8.1723267, 46.7512288 ], + [ 8.1754326, 46.7522226 ], + [ 8.17861, 46.7531032 ], + [ 8.1818501, 46.7538682 ], + [ 8.1851442, 46.7545156 ], + [ 8.1884831, 46.7550434 ], + [ 8.1918577, 46.7554504 ], + [ 8.1952587, 46.7557352 ], + [ 8.1986768, 46.7558973 ], + [ 8.2021025, 46.7559361 ], + [ 8.2055264, 46.7558515 ], + [ 8.2089392, 46.7556438 ], + [ 8.2123315, 46.7553135 ], + [ 8.215694, 46.7548615 ], + [ 8.2190173, 46.7542891 ], + [ 8.2222924, 46.7535979 ], + [ 8.2255103, 46.7527897 ], + [ 8.2286621, 46.7518668 ], + [ 8.2317393, 46.7508317 ], + [ 8.2347332, 46.7496872 ], + [ 8.2376358, 46.7484365 ], + [ 8.2404391, 46.7470831 ], + [ 8.2431353, 46.7456306 ], + [ 8.2457171, 46.744083 ], + [ 8.2481773, 46.7424446 ], + [ 8.2505094, 46.7407199 ], + [ 8.2527067, 46.7389136 ], + [ 8.2547634, 46.7370307 ], + [ 8.2566738, 46.7350763 ], + [ 8.2584327, 46.7330558 ], + [ 8.2600353, 46.7309748 ], + [ 8.2614771, 46.728839 ], + [ 8.2627543, 46.7266541 ], + [ 8.2638634, 46.7244263 ], + [ 8.2648013, 46.7221616 ], + [ 8.2655655, 46.7198663 ], + [ 8.2661539, 46.7175466 ], + [ 8.266565, 46.7152089 ], + [ 8.2667976, 46.7128596 ], + [ 8.2668511, 46.7105052 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSXC001", + "country" : "CHE", + "name" : [ + { + "text" : "LSXC Schattenhalb", + "lang" : "de-CH" + }, + { + "text" : "LSXC Schattenhalb", + "lang" : "fr-CH" + }, + { + "text" : "LSXC Schattenhalb", + "lang" : "it-CH" + }, + { + "text" : "LSXC Schattenhalb", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swiss Helicopter AG", + "lang" : "de-CH" + }, + { + "text" : "Swiss Helicopter AG", + "lang" : "fr-CH" + }, + { + "text" : "Swiss Helicopter AG", + "lang" : "it-CH" + }, + { + "text" : "Swiss Helicopter AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Basis Schattenhalb", + "lang" : "de-CH" + }, + { + "text" : "Basis Schattenhalb", + "lang" : "fr-CH" + }, + { + "text" : "Basis Schattenhalb", + "lang" : "it-CH" + }, + { + "text" : "Basis Schattenhalb", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Martin Burgener", + "lang" : "de-CH" + }, + { + "text" : "Martin Burgener", + "lang" : "fr-CH" + }, + { + "text" : "Martin Burgener", + "lang" : "it-CH" + }, + { + "text" : "Martin Burgener", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swisshelicopter.ch/en/about-us/helicopter-bases/schattenhalb-meiringen", + "email" : "berneroberland@swisshelicopter.ch", + "phone" : "0041338289000", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P02DT12H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.7222853, 46.1330051 ], + [ 8.7222766, 46.1328639 ], + [ 8.7222574, 46.1327233 ], + [ 8.7222275, 46.1325835 ], + [ 8.7221872, 46.132445 ], + [ 8.7221366, 46.1323082 ], + [ 8.7220757, 46.1321734 ], + [ 8.7220047, 46.132041 ], + [ 8.7219239, 46.1319114 ], + [ 8.7218334, 46.1317849 ], + [ 8.7217335, 46.1316619 ], + [ 8.7216245, 46.1315426 ], + [ 8.721506699999999, 46.1314275 ], + [ 8.7213804, 46.1313168 ], + [ 8.7212459, 46.1312109 ], + [ 8.7211036, 46.13111 ], + [ 8.7209539, 46.1310145 ], + [ 8.7207973, 46.1309245 ], + [ 8.7206341, 46.1308403 ], + [ 8.7204647, 46.1307622 ], + [ 8.7202898, 46.1306903 ], + [ 8.7201096, 46.130625 ], + [ 8.7199248, 46.1305662 ], + [ 8.7197358, 46.1305143 ], + [ 8.7195432, 46.1304693 ], + [ 8.7193474, 46.1304314 ], + [ 8.7191491, 46.1304007 ], + [ 8.7189487, 46.1303772 ], + [ 8.7187468, 46.130361 ], + [ 8.718544, 46.1303523 ], + [ 8.7183408, 46.1303509 ], + [ 8.7181377, 46.1303569 ], + [ 8.7179354, 46.1303702 ], + [ 8.7177344, 46.130391 ], + [ 8.7175352, 46.130419 ], + [ 8.7173384, 46.1304542 ], + [ 8.7171446, 46.1304965 ], + [ 8.7169541, 46.1305459 ], + [ 8.7167677, 46.130602 ], + [ 8.7165857, 46.1306649 ], + [ 8.7164087, 46.1307344 ], + [ 8.7162372, 46.1308101 ], + [ 8.7160716, 46.1308921 ], + [ 8.7159125, 46.1309799 ], + [ 8.7157601, 46.1310734 ], + [ 8.715615, 46.1311723 ], + [ 8.7154775, 46.1312763 ], + [ 8.7153481, 46.1313852 ], + [ 8.715227, 46.1314987 ], + [ 8.7151146, 46.1316164 ], + [ 8.7150113, 46.1317381 ], + [ 8.7149172, 46.1318633 ], + [ 8.7148327, 46.1319918 ], + [ 8.7147581, 46.1321232 ], + [ 8.7146933, 46.1322572 ], + [ 8.7146388, 46.1323933 ], + [ 8.7145946, 46.1325312 ], + [ 8.7145608, 46.1326705 ], + [ 8.7145375, 46.1328108 ], + [ 8.7145249, 46.1329519 ], + [ 8.7145229, 46.1330931 ], + [ 8.7145315, 46.1332343 ], + [ 8.7145507, 46.1333749 ], + [ 8.7145805, 46.1335147 ], + [ 8.7146208, 46.1336532 ], + [ 8.7146715, 46.13379 ], + [ 8.714732399999999, 46.1339248 ], + [ 8.7148033, 46.1340572 ], + [ 8.7148841, 46.1341868 ], + [ 8.7149746, 46.1343134 ], + [ 8.7150744, 46.1344364 ], + [ 8.7151834, 46.1345557 ], + [ 8.7153013, 46.1346708 ], + [ 8.7154276, 46.1347815 ], + [ 8.7155621, 46.1348874 ], + [ 8.7157043, 46.1349883 ], + [ 8.715854, 46.1350838 ], + [ 8.7160107, 46.1351738 ], + [ 8.7161739, 46.135258 ], + [ 8.7163432, 46.1353361 ], + [ 8.7165182, 46.135408 ], + [ 8.7166984, 46.1354734 ], + [ 8.7168832, 46.1355321 ], + [ 8.7170722, 46.135584 ], + [ 8.7172649, 46.135629 ], + [ 8.7174607, 46.1356669 ], + [ 8.717659, 46.1356977 ], + [ 8.7178594, 46.1357212 ], + [ 8.7180613, 46.1357373 ], + [ 8.7182642, 46.1357461 ], + [ 8.7184674, 46.1357475 ], + [ 8.7186704, 46.1357415 ], + [ 8.7188728, 46.1357281 ], + [ 8.7190738, 46.1357074 ], + [ 8.719273, 46.1356794 ], + [ 8.7194698, 46.1356442 ], + [ 8.7196637, 46.1356018 ], + [ 8.7198541, 46.1355525 ], + [ 8.7200406, 46.1354963 ], + [ 8.7202226, 46.1354334 ], + [ 8.7203996, 46.135364 ], + [ 8.7205711, 46.1352882 ], + [ 8.7207367, 46.1352063 ], + [ 8.7208959, 46.1351184 ], + [ 8.7210482, 46.1350249 ], + [ 8.7211934, 46.134926 ], + [ 8.7213308, 46.134822 ], + [ 8.7214603, 46.134713 ], + [ 8.7215813, 46.1345996 ], + [ 8.7216937, 46.1344818 ], + [ 8.721797, 46.1343602 ], + [ 8.7218911, 46.1342349 ], + [ 8.7219755, 46.1341064 ], + [ 8.7220502, 46.133975 ], + [ 8.7221149, 46.1338411 ], + [ 8.7221694, 46.133705 ], + [ 8.7222136, 46.1335671 ], + [ 8.7222474, 46.1334277 ], + [ 8.7222706, 46.1332874 ], + [ 8.7222833, 46.1331464 ], + [ 8.7222853, 46.1330051 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0123", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Verbano", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Verbano", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Verbano", + "lang" : "it-CH" + }, + { + "text" : "Substation Verbano", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7390068, 47.5270164 ], + [ 7.7395699, 47.5269464 ], + [ 7.739323, 47.5267517 ], + [ 7.7390068, 47.5270164 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns294", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Schnüeren", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Schnüeren", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Schnüeren", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Schnüeren", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6164172, 47.4430814 ], + [ 7.6163484, 47.4431496 ], + [ 7.6163074, 47.4431891 ], + [ 7.6162624999999995, 47.4432094 ], + [ 7.6162136, 47.4432171 ], + [ 7.6161553, 47.4432138 ], + [ 7.6161141, 47.4432014 ], + [ 7.6129036, 47.4431707 ], + [ 7.6129033, 47.4431807 ], + [ 7.612905, 47.4432176 ], + [ 7.6129128, 47.4432341 ], + [ 7.6129297000000005, 47.443261 ], + [ 7.6129318, 47.4432845 ], + [ 7.6129275, 47.4433027 ], + [ 7.6129058, 47.4433175 ], + [ 7.6128771, 47.4433251 ], + [ 7.6128461, 47.4433424 ], + [ 7.6128241, 47.4433604 ], + [ 7.6128045, 47.4433851 ], + [ 7.6128029, 47.4434027 ], + [ 7.6128062, 47.4434303 ], + [ 7.6128105, 47.4434467 ], + [ 7.6128233, 47.4434828 ], + [ 7.6128654000000004, 47.4435945 ], + [ 7.6129385, 47.443791 ], + [ 7.612988, 47.4439395 ], + [ 7.6129968, 47.4439696 ], + [ 7.6130335, 47.4440951 ], + [ 7.6131053, 47.4442594 ], + [ 7.6131329999999995, 47.4443329 ], + [ 7.6131691, 47.4445045 ], + [ 7.6131849, 47.4445571 ], + [ 7.6132231, 47.4446418 ], + [ 7.6134308, 47.4449568 ], + [ 7.6134886999999996, 47.4449994 ], + [ 7.6136122, 47.4450649 ], + [ 7.613698, 47.4451146 ], + [ 7.6137622, 47.4451545 ], + [ 7.6138068, 47.4451994 ], + [ 7.6138429, 47.4452684 ], + [ 7.6138492, 47.4453116 ], + [ 7.613838, 47.4453604 ], + [ 7.6138338, 47.4453839 ], + [ 7.6138436, 47.4454048 ], + [ 7.613861, 47.4454193 ], + [ 7.6138813, 47.4454287 ], + [ 7.6139018, 47.445437 ], + [ 7.6140056, 47.44548 ], + [ 7.6140864, 47.4455135 ], + [ 7.6141763000000005, 47.4455761 ], + [ 7.6142695, 47.445658 ], + [ 7.6143132, 47.4457101 ], + [ 7.614329, 47.4457289 ], + [ 7.6143729, 47.4457854 ], + [ 7.6143973, 47.4458364 ], + [ 7.6144239, 47.4458573 ], + [ 7.6145783, 47.445979 ], + [ 7.6145849, 47.4460719 ], + [ 7.6145988, 47.446267 ], + [ 7.6143364, 47.446444 ], + [ 7.6144425, 47.4465092 ], + [ 7.6145135, 47.4465536 ], + [ 7.6145937, 47.4466006 ], + [ 7.6147466, 47.4466914 ], + [ 7.6149236, 47.4468149 ], + [ 7.61506, 47.4469477 ], + [ 7.6152928, 47.4472124 ], + [ 7.6153493999999995, 47.4472657 ], + [ 7.61544, 47.4473176 ], + [ 7.6155938, 47.4473724 ], + [ 7.6157915, 47.4474246 ], + [ 7.6159791, 47.4474932 ], + [ 7.6161714, 47.4475679 ], + [ 7.6162605, 47.4476279 ], + [ 7.6163007, 47.4476609 ], + [ 7.6163427, 47.4476802 ], + [ 7.6164075, 47.4476894 ], + [ 7.616458, 47.4476746 ], + [ 7.6165462, 47.4477784 ], + [ 7.6164731, 47.4478186 ], + [ 7.6165487, 47.447895 ], + [ 7.6166384, 47.4480074 ], + [ 7.6166763, 47.4480568 ], + [ 7.6167115, 47.4481013 ], + [ 7.6167556, 47.4481658 ], + [ 7.6167852, 47.4482204 ], + [ 7.6168088, 47.4482827 ], + [ 7.616826, 47.4483354 ], + [ 7.6168691, 47.4484492 ], + [ 7.6168946, 47.4485354 ], + [ 7.6169344, 47.4486146 ], + [ 7.6170009, 47.4487001 ], + [ 7.6170766, 47.4487761 ], + [ 7.6171394, 47.4488384 ], + [ 7.6171859, 47.4488846 ], + [ 7.617217, 47.4489172 ], + [ 7.6172584, 47.4489746 ], + [ 7.617318, 47.4490816 ], + [ 7.6173953999999995, 47.4492327 ], + [ 7.6174545, 47.4493814 ], + [ 7.6175148, 47.4495031 ], + [ 7.617551, 47.4495514 ], + [ 7.6176009, 47.4495968 ], + [ 7.6176476, 47.4496336 ], + [ 7.6177295, 47.4496856 ], + [ 7.6177817, 47.4497265 ], + [ 7.6178425, 47.4497815 ], + [ 7.6178787, 47.4498249 ], + [ 7.6179129, 47.4498776 ], + [ 7.6179273, 47.4499219 ], + [ 7.6179273, 47.4499663 ], + [ 7.6179198, 47.4499909 ], + [ 7.6178944, 47.4500236 ], + [ 7.6178623, 47.4500495 ], + [ 7.617807, 47.4500696 ], + [ 7.6176987, 47.4500899 ], + [ 7.6175434, 47.4501073 ], + [ 7.6173904, 47.4501281 ], + [ 7.6172497, 47.4501501 ], + [ 7.6171129, 47.4501715 ], + [ 7.6170193, 47.4501837 ], + [ 7.6168952, 47.4502004 ], + [ 7.6167939, 47.450208 ], + [ 7.6167108, 47.4502169 ], + [ 7.6166396, 47.4502254 ], + [ 7.6165726, 47.4502352 ], + [ 7.6165179, 47.4502458 ], + [ 7.6164821, 47.4502547 ], + [ 7.6164361, 47.4502741 ], + [ 7.6163305999999995, 47.450328999999996 ], + [ 7.6161916, 47.4504139 ], + [ 7.6159994, 47.4505157 ], + [ 7.6158715, 47.4505812 ], + [ 7.6158047, 47.4506164 ], + [ 7.6157474, 47.4506559 ], + [ 7.6156863, 47.450712 ], + [ 7.6156431, 47.4507736 ], + [ 7.6155859, 47.4508742 ], + [ 7.6155239, 47.451013 ], + [ 7.615507, 47.4510447 ], + [ 7.6155034, 47.4510579 ], + [ 7.6155038, 47.4510855 ], + [ 7.6155451, 47.4511443 ], + [ 7.615555, 47.4511608 ], + [ 7.6155759, 47.4512189 ], + [ 7.6155872, 47.4512695 ], + [ 7.6155925, 47.4513292 ], + [ 7.6155865, 47.4514457 ], + [ 7.615578, 47.4515805 ], + [ 7.6155757, 47.4517038 ], + [ 7.6155681, 47.4517831 ], + [ 7.6155353, 47.4520798 ], + [ 7.6155007999999995, 47.4523109 ], + [ 7.6154881, 47.452512 ], + [ 7.6154754, 47.4526666 ], + [ 7.6154661, 47.4527844 ], + [ 7.6154457, 47.4529682 ], + [ 7.6154565, 47.4529862 ], + [ 7.6154845, 47.453017 ], + [ 7.6155099, 47.4530633 ], + [ 7.615549, 47.4531649 ], + [ 7.6156284, 47.4533004 ], + [ 7.6157649, 47.453468 ], + [ 7.6159128, 47.4536097 ], + [ 7.6160394, 47.4537085 ], + [ 7.6162101, 47.4538285 ], + [ 7.6163126, 47.4538855 ], + [ 7.6165093, 47.4540003 ], + [ 7.6167442, 47.453876 ], + [ 7.6173739, 47.4535256 ], + [ 7.618018, 47.453161 ], + [ 7.6187451, 47.4529081 ], + [ 7.6195457, 47.4526295 ], + [ 7.6201019, 47.4523885 ], + [ 7.620292, 47.4523046 ], + [ 7.6202683, 47.4522559 ], + [ 7.6199195, 47.4512782 ], + [ 7.6199122, 47.4512576 ], + [ 7.6199029, 47.4512316 ], + [ 7.6200913, 47.4511086 ], + [ 7.6199833, 47.450639699999996 ], + [ 7.6194463, 47.4495936 ], + [ 7.6188651, 47.4490125 ], + [ 7.6185341, 47.4481435 ], + [ 7.6185945, 47.4479542 ], + [ 7.6184473, 47.4477771 ], + [ 7.6185118, 47.4476558 ], + [ 7.6172786, 47.4468016 ], + [ 7.6164708999999995, 47.4452384 ], + [ 7.6165315, 47.4444693 ], + [ 7.616441, 47.4440876 ], + [ 7.6164553999999995, 47.4434257 ], + [ 7.6164599, 47.4430389 ], + [ 7.6164172, 47.4430814 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns309", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Falkeflue", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Falkeflue", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Falkeflue", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Falkeflue", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.5574487, 47.3581924 ], + [ 9.5574376, 47.3580513 ], + [ 9.5574157, 47.3579108 ], + [ 9.557383, 47.3577713 ], + [ 9.5573397, 47.3576332 ], + [ 9.5572857, 47.3574967 ], + [ 9.5572213, 47.3573624 ], + [ 9.5571466, 47.3572306 ], + [ 9.5570619, 47.3571016 ], + [ 9.5569674, 47.3569757 ], + [ 9.5568633, 47.3568535 ], + [ 9.556750000000001, 47.356735 ], + [ 9.5566276, 47.3566208 ], + [ 9.5564967, 47.3565111 ], + [ 9.5563575, 47.3564062 ], + [ 9.5562103, 47.3563064 ], + [ 9.5560557, 47.3562119 ], + [ 9.5558941, 47.3561231 ], + [ 9.5557258, 47.3560402 ], + [ 9.5555514, 47.3559633 ], + [ 9.555371300000001, 47.3558928 ], + [ 9.555185999999999, 47.3558288 ], + [ 9.554996, 47.3557714 ], + [ 9.5548019, 47.3557209 ], + [ 9.5546041, 47.355677299999996 ], + [ 9.5544033, 47.3556409 ], + [ 9.5541999, 47.3556116 ], + [ 9.5539945, 47.3555896 ], + [ 9.5537878, 47.355575 ], + [ 9.5535802, 47.3555677 ], + [ 9.5533723, 47.3555678 ], + [ 9.5531647, 47.3555753 ], + [ 9.552958, 47.3555902 ], + [ 9.5527527, 47.3556124 ], + [ 9.5525494, 47.3556418 ], + [ 9.5523486, 47.3556785 ], + [ 9.552151, 47.3557223 ], + [ 9.551957, 47.355773 ], + [ 9.5517671, 47.3558305 ], + [ 9.551582, 47.3558948 ], + [ 9.551402, 47.3559655 ], + [ 9.5512278, 47.3560425 ], + [ 9.5510597, 47.3561256 ], + [ 9.5508982, 47.3562146 ], + [ 9.5507438, 47.3563092 ], + [ 9.5505969, 47.3564092 ], + [ 9.5504579, 47.3565143 ], + [ 9.5503272, 47.3566241 ], + [ 9.5502052, 47.3567385 ], + [ 9.5500921, 47.356857 ], + [ 9.5499883, 47.3569794 ], + [ 9.549894, 47.3571053 ], + [ 9.5498096, 47.3572344 ], + [ 9.5497352, 47.3573663 ], + [ 9.5496711, 47.3575007 ], + [ 9.5496175, 47.3576372 ], + [ 9.549574400000001, 47.3577754 ], + [ 9.549542, 47.3579149 ], + [ 9.5495204, 47.3580554 ], + [ 9.5495097, 47.3581965 ], + [ 9.5495099, 47.3583378 ], + [ 9.5495209, 47.3584789 ], + [ 9.5495428, 47.3586193 ], + [ 9.5495754, 47.3587589 ], + [ 9.5496188, 47.358897 ], + [ 9.5496727, 47.3590335 ], + [ 9.5497371, 47.3591678 ], + [ 9.5498118, 47.3592996 ], + [ 9.5498965, 47.3594286 ], + [ 9.549991, 47.3595545 ], + [ 9.550095, 47.3596768 ], + [ 9.5502084, 47.3597952 ], + [ 9.5503307, 47.3599094 ], + [ 9.5504617, 47.3600191 ], + [ 9.5506009, 47.360124 ], + [ 9.550748, 47.3602239 ], + [ 9.5509026, 47.3603183 ], + [ 9.5510643, 47.3604071 ], + [ 9.5512326, 47.3604901 ], + [ 9.551407, 47.3605669 ], + [ 9.5515871, 47.3606375 ], + [ 9.5517724, 47.3607015 ], + [ 9.5519624, 47.3607589 ], + [ 9.5521566, 47.3608094 ], + [ 9.5523543, 47.360853 ], + [ 9.5525552, 47.3608894 ], + [ 9.5527586, 47.3609187 ], + [ 9.5529639, 47.3609407 ], + [ 9.5531707, 47.3609554 ], + [ 9.5533783, 47.3609626 ], + [ 9.5535863, 47.3609625 ], + [ 9.5537939, 47.360955 ], + [ 9.5540006, 47.3609402 ], + [ 9.5542059, 47.360918 ], + [ 9.5544092, 47.3608885 ], + [ 9.55461, 47.3608518 ], + [ 9.5548077, 47.360808 ], + [ 9.5550017, 47.3607573 ], + [ 9.5551916, 47.3606998 ], + [ 9.5553767, 47.3606355 ], + [ 9.5555567, 47.3605648 ], + [ 9.555731, 47.3604878 ], + [ 9.5558991, 47.3604046 ], + [ 9.5560605, 47.3603156 ], + [ 9.5562149, 47.360221 ], + [ 9.5563618, 47.360121 ], + [ 9.5565008, 47.360016 ], + [ 9.5566315, 47.3599061 ], + [ 9.5567536, 47.359791799999996 ], + [ 9.5568667, 47.3596732 ], + [ 9.5569705, 47.3595508 ], + [ 9.5570647, 47.3594249 ], + [ 9.5571491, 47.3592958 ], + [ 9.5572234, 47.3591639 ], + [ 9.5572875, 47.3590295 ], + [ 9.5573412, 47.358893 ], + [ 9.5573842, 47.3587548 ], + [ 9.5574166, 47.3586152 ], + [ 9.5574381, 47.3584747 ], + [ 9.5574488, 47.3583337 ], + [ 9.5574487, 47.3581924 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "ALS0001", + "country" : "CHE", + "name" : [ + { + "text" : "Regionalgefängnis Altstätten St. Gallen", + "lang" : "de-CH" + }, + { + "text" : "Regionalgefängnis Altstätten St. Gallen", + "lang" : "fr-CH" + }, + { + "text" : "Regionalgefängnis Altstätten St. Gallen", + "lang" : "it-CH" + }, + { + "text" : "Regionalgefängnis Altstätten St. Gallen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Justizvollzug", + "lang" : "de-CH" + }, + { + "text" : "Amt für Justizvollzug", + "lang" : "fr-CH" + }, + { + "text" : "Amt für Justizvollzug", + "lang" : "it-CH" + }, + { + "text" : "Amt für Justizvollzug", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Regionalgefängnis Altstätten St. Gallen", + "lang" : "de-CH" + }, + { + "text" : "Regionalgefängnis Altstätten St. Gallen", + "lang" : "fr-CH" + }, + { + "text" : "Regionalgefängnis Altstätten St. Gallen", + "lang" : "it-CH" + }, + { + "text" : "Regionalgefängnis Altstätten St. Gallen", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.sg.ch/sicherheit/justizvollzug/rgal.html", + "email" : "zentrale.rgal@sg.ch", + "phone" : "0041582281640", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8087329, 47.4405754 ], + [ 7.8086394, 47.4405498 ], + [ 7.8086310999999995, 47.4407119 ], + [ 7.8087896, 47.4407567 ], + [ 7.808777, 47.4407206 ], + [ 7.8087651000000005, 47.4406844 ], + [ 7.8087537, 47.4406481 ], + [ 7.808743, 47.4406118 ], + [ 7.8087329, 47.4405754 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns096", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Zelgli", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Zelgli", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Zelgli", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Zelgli", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.4366033, 47.4819446 ], + [ 9.4365926, 47.4818035 ], + [ 9.4365709, 47.481663 ], + [ 9.4365385, 47.4815235 ], + [ 9.4364953, 47.4813853 ], + [ 9.4364415, 47.4812488 ], + [ 9.4363773, 47.4811144 ], + [ 9.4363027, 47.4809825 ], + [ 9.4362181, 47.4808534 ], + [ 9.4361237, 47.4807275 ], + [ 9.4360196, 47.4806051 ], + [ 9.4359062, 47.4804866 ], + [ 9.4357839, 47.4803723 ], + [ 9.4356529, 47.4802624 ], + [ 9.4355135, 47.4801574 ], + [ 9.4353663, 47.4800574 ], + [ 9.4352116, 47.4799628 ], + [ 9.4350497, 47.4798738 ], + [ 9.4348812, 47.4797907 ], + [ 9.4347066, 47.4797137 ], + [ 9.4345262, 47.479643 ], + [ 9.4343406, 47.4795788 ], + [ 9.4341503, 47.4795212 ], + [ 9.4339558, 47.4794705 ], + [ 9.4337577, 47.4794267 ], + [ 9.4335565, 47.4793901 ], + [ 9.4333527, 47.4793606 ], + [ 9.4331469, 47.4793384 ], + [ 9.4329397, 47.4793235 ], + [ 9.4327316, 47.479316 ], + [ 9.4325233, 47.4793159 ], + [ 9.4323152, 47.4793232 ], + [ 9.4321079, 47.4793379 ], + [ 9.4319021, 47.4793598 ], + [ 9.4316983, 47.4793891 ], + [ 9.431497, 47.4794256 ], + [ 9.4312987, 47.4794691 ], + [ 9.4311042, 47.4795196 ], + [ 9.4309137, 47.479577 ], + [ 9.430728, 47.479641 ], + [ 9.4305475, 47.4797116 ], + [ 9.4303726, 47.4797884 ], + [ 9.4302039, 47.4798713 ], + [ 9.430041899999999, 47.4799601 ], + [ 9.429887, 47.4800546 ], + [ 9.4297395, 47.4801544 ], + [ 9.4295999, 47.4802593 ], + [ 9.4294687, 47.480369 ], + [ 9.4293461, 47.4804832 ], + [ 9.4292324, 47.4806016 ], + [ 9.4291281, 47.4807239 ], + [ 9.4290334, 47.4808497 ], + [ 9.4289484, 47.4809787 ], + [ 9.4288736, 47.4811106 ], + [ 9.4288091, 47.4812449 ], + [ 9.428755, 47.4813813 ], + [ 9.4287115, 47.4815194 ], + [ 9.4286787, 47.4816589 ], + [ 9.4286568, 47.4817994 ], + [ 9.4286457, 47.4819405 ], + [ 9.4286455, 47.4820817 ], + [ 9.4286563, 47.4822228 ], + [ 9.4286779, 47.4823633 ], + [ 9.4287103, 47.4825028 ], + [ 9.4287535, 47.482641 ], + [ 9.4288072, 47.4827775 ], + [ 9.4288715, 47.4829119 ], + [ 9.428946, 47.4830438 ], + [ 9.4290306, 47.4831729 ], + [ 9.429124999999999, 47.4832988 ], + [ 9.4292291, 47.4834212 ], + [ 9.4293424, 47.4835398 ], + [ 9.4294648, 47.4836541 ], + [ 9.4295958, 47.4837639 ], + [ 9.4297351, 47.483869 ], + [ 9.4298824, 47.483969 ], + [ 9.4300371, 47.4840636 ], + [ 9.4301989, 47.4841526 ], + [ 9.4303674, 47.4842357 ], + [ 9.4305421, 47.4843127 ], + [ 9.4307225, 47.4843834 ], + [ 9.4309081, 47.4844477 ], + [ 9.4310984, 47.4845052 ], + [ 9.4312929, 47.4845559 ], + [ 9.431491, 47.4845997 ], + [ 9.4316923, 47.4846364 ], + [ 9.4318961, 47.4846658 ], + [ 9.4321019, 47.4846881 ], + [ 9.4323091, 47.4847029 ], + [ 9.4325172, 47.4847104 ], + [ 9.4327256, 47.4847105 ], + [ 9.4329337, 47.4847032 ], + [ 9.433140999999999, 47.4846886 ], + [ 9.4333468, 47.4846666 ], + [ 9.4335507, 47.4846373 ], + [ 9.433752, 47.4846009 ], + [ 9.4339503, 47.4845573 ], + [ 9.4341449, 47.4845068 ], + [ 9.4343353, 47.4844494 ], + [ 9.434521, 47.4843854 ], + [ 9.4347016, 47.4843149 ], + [ 9.4348764, 47.484238 ], + [ 9.4350451, 47.4841551 ], + [ 9.4352072, 47.4840662 ], + [ 9.4353621, 47.4839718 ], + [ 9.4355096, 47.483872 ], + [ 9.4356491, 47.4837671 ], + [ 9.4357804, 47.4836574 ], + [ 9.435903, 47.4835431 ], + [ 9.4360166, 47.4834247 ], + [ 9.4361209, 47.4833024 ], + [ 9.4362157, 47.4831766 ], + [ 9.4363006, 47.4830476 ], + [ 9.4363754, 47.4829158 ], + [ 9.4364399, 47.4827815 ], + [ 9.436494, 47.482645 ], + [ 9.4365375, 47.4825069 ], + [ 9.4365702, 47.4823674 ], + [ 9.4365921, 47.4822269 ], + [ 9.4366032, 47.4820858 ], + [ 9.4366033, 47.4819446 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0075", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Mörschwil", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Mörschwil", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Mörschwil", + "lang" : "it-CH" + }, + { + "text" : "Substation Mörschwil", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7050994, 47.4635077 ], + [ 7.705397, 47.4638367 ], + [ 7.7055966, 47.4640199 ], + [ 7.7058893, 47.4642154 ], + [ 7.706104, 47.4643359 ], + [ 7.7062608, 47.4644091 ], + [ 7.706348, 47.4644381 ], + [ 7.7064104, 47.4644598 ], + [ 7.7064461, 47.4644643 ], + [ 7.7064783, 47.4644628 ], + [ 7.706493, 47.4644568 ], + [ 7.7065083, 47.4644433 ], + [ 7.7065173, 47.4644289 ], + [ 7.7065742, 47.4643971 ], + [ 7.7065937, 47.4644118 ], + [ 7.7066123, 47.4644271 ], + [ 7.7066302, 47.4644427 ], + [ 7.7066471, 47.4644588 ], + [ 7.7066631999999995, 47.4644754 ], + [ 7.7066785, 47.4644923 ], + [ 7.7066928, 47.4645095 ], + [ 7.7067061, 47.4645271 ], + [ 7.7067185, 47.4645451 ], + [ 7.70673, 47.4645633 ], + [ 7.7067404, 47.4645818 ], + [ 7.7067467, 47.4645939 ], + [ 7.7067477, 47.4647401 ], + [ 7.7067796, 47.464901 ], + [ 7.7068337, 47.4650356 ], + [ 7.7068645, 47.4650995 ], + [ 7.7069282, 47.4651878 ], + [ 7.7070137, 47.4653015 ], + [ 7.7070661, 47.4653612 ], + [ 7.7071355, 47.4654368 ], + [ 7.7072326, 47.4655376 ], + [ 7.707314, 47.4656271 ], + [ 7.7073496, 47.465661 ], + [ 7.7074134, 47.4657233 ], + [ 7.707506, 47.4658072 ], + [ 7.7075995, 47.4658919 ], + [ 7.7077185, 47.4660014 ], + [ 7.7078114, 47.4660716 ], + [ 7.7079039, 47.4661417 ], + [ 7.7080186, 47.4662245 ], + [ 7.7081633, 47.4663179 ], + [ 7.7082657, 47.4663801 ], + [ 7.7083569, 47.4664378 ], + [ 7.7084466, 47.4664914 ], + [ 7.7085913999999995, 47.4665646 ], + [ 7.7087143000000005, 47.4666187 ], + [ 7.708913, 47.4667055 ], + [ 7.7090543, 47.4667699 ], + [ 7.7091471, 47.466806 ], + [ 7.709214, 47.4668239 ], + [ 7.7092457, 47.4668311 ], + [ 7.7093324, 47.4668371 ], + [ 7.7099211, 47.4669145 ], + [ 7.7102025, 47.4661117 ], + [ 7.710106, 47.4656005 ], + [ 7.7100436, 47.465593 ], + [ 7.7099566, 47.465581 ], + [ 7.709792, 47.4655487 ], + [ 7.7096425, 47.4655138 ], + [ 7.7093755, 47.4654189 ], + [ 7.7093044, 47.4653889 ], + [ 7.7092494, 47.4653583 ], + [ 7.7091802, 47.4653065 ], + [ 7.7091023, 47.4652317 ], + [ 7.7090643, 47.4651998 ], + [ 7.7090396, 47.4651704 ], + [ 7.7082086, 47.4655306 ], + [ 7.70816, 47.4654661 ], + [ 7.7080942, 47.4653797 ], + [ 7.7080406, 47.465283 ], + [ 7.7080168, 47.4652281 ], + [ 7.7079687, 47.4651013 ], + [ 7.7079445, 47.4649469 ], + [ 7.707952, 47.4648597 ], + [ 7.7079877, 47.4647486 ], + [ 7.7076944, 47.4647022 ], + [ 7.7076465, 47.4646932 ], + [ 7.7076647, 47.4646519 ], + [ 7.7079168, 47.464183 ], + [ 7.7079289, 47.4641449 ], + [ 7.7079314, 47.4641109 ], + [ 7.7079301000000005, 47.4640677 ], + [ 7.7079213, 47.4640327 ], + [ 7.7079054, 47.4639989 ], + [ 7.7078865, 47.463971 ], + [ 7.7078536, 47.4639294 ], + [ 7.7077255000000005, 47.463782 ], + [ 7.7075742, 47.4635901 ], + [ 7.7075075, 47.4635068 ], + [ 7.7091558, 47.4632081 ], + [ 7.7093678, 47.463218499999996 ], + [ 7.7094831, 47.4632241 ], + [ 7.7094906, 47.4632244 ], + [ 7.7095873, 47.4632304 ], + [ 7.7100709, 47.4632603 ], + [ 7.7103027, 47.4629916 ], + [ 7.7106626, 47.4627647 ], + [ 7.710536, 47.4626516 ], + [ 7.7104201, 47.4625038 ], + [ 7.7065349, 47.4627609 ], + [ 7.7065109, 47.4628016 ], + [ 7.7064895, 47.4628219 ], + [ 7.7064416, 47.4628607 ], + [ 7.7063481, 47.4629281 ], + [ 7.7062567, 47.463004 ], + [ 7.7061948000000005, 47.4630701 ], + [ 7.7061468, 47.4631268 ], + [ 7.7060601, 47.4632732 ], + [ 7.7060311, 47.4633495 ], + [ 7.7060142, 47.4634235 ], + [ 7.7060081, 47.4634517 ], + [ 7.7059675, 47.4634537 ], + [ 7.7050994, 47.4635077 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns222", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Stellihübel - Furtboden", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Stellihübel - Furtboden", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Stellihübel - Furtboden", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Stellihübel - Furtboden", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.9280481, 46.9925202 ], + [ 6.9282807, 46.9924626 ], + [ 6.9284935, 46.9923763 ], + [ 6.9286788, 46.9922642 ], + [ 6.9286971, 46.9922508 ], + [ 6.9288399, 46.9921466 ], + [ 6.9289921, 46.9920119 ], + [ 6.928993, 46.9920107 ], + [ 6.9290055, 46.9919996 ], + [ 6.9290469, 46.9919437 ], + [ 6.9291084, 46.9918736 ], + [ 6.9291938, 46.9917148 ], + [ 6.9292342, 46.991548 ], + [ 6.9292283, 46.9913789 ], + [ 6.9291762, 46.9912135 ], + [ 6.9290798, 46.9910578 ], + [ 6.9289425, 46.9909172 ], + [ 6.928929, 46.9909078 ], + [ 6.9287672, 46.9907768 ], + [ 6.9285519, 46.9906621 ], + [ 6.9284707, 46.9906275 ], + [ 6.928439, 46.9906139 ], + [ 6.9281964, 46.9905323 ], + [ 6.9279345, 46.9904864 ], + [ 6.9276644, 46.9904781 ], + [ 6.9273976, 46.9905078 ], + [ 6.9271452, 46.9905742 ], + [ 6.9269181, 46.9906745 ], + [ 6.9267258, 46.9908045 ], + [ 6.926684, 46.990839199999996 ], + [ 6.9266675, 46.9908561 ], + [ 6.9266608, 46.9908615 ], + [ 6.9266485, 46.9908717 ], + [ 6.9265235, 46.9909763 ], + [ 6.9263839, 46.9911191 ], + [ 6.9262866, 46.9912775 ], + [ 6.926235, 46.9914456 ], + [ 6.9262311, 46.9916174 ], + [ 6.926275, 46.9917865 ], + [ 6.9263651, 46.9919469 ], + [ 6.9264981, 46.9920926 ], + [ 6.9266691, 46.9922183 ], + [ 6.9267318, 46.9922564 ], + [ 6.9267557, 46.9922705 ], + [ 6.9268057, 46.9922994 ], + [ 6.9268187999999995, 46.9923057 ], + [ 6.926844, 46.9923207 ], + [ 6.9268726, 46.9923373 ], + [ 6.9268830999999995, 46.9923432 ], + [ 6.9270879, 46.9924381 ], + [ 6.9273150999999995, 46.9925051 ], + [ 6.9275566, 46.9925418 ], + [ 6.9278037999999995, 46.9925469 ], + [ 6.9280481, 46.9925202 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "NE07", + "country" : "CHE", + "name" : [ + { + "text" : "Tribunal cantonal", + "lang" : "de-CH" + }, + { + "text" : "Tribunal cantonal", + "lang" : "fr-CH" + }, + { + "text" : "Tribunal cantonal", + "lang" : "it-CH" + }, + { + "text" : "Tribunal cantonal", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "regulationExemption" : "YES", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Police Neuchâteloise", + "lang" : "de-CH" + }, + { + "text" : "Police Neuchâteloise", + "lang" : "fr-CH" + }, + { + "text" : "Police Neuchâteloise", + "lang" : "it-CH" + }, + { + "text" : "Police Neuchâteloise", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "PN - Rens et opérations", + "lang" : "de-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "fr-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "it-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "PN - Rens et opérations", + "lang" : "de-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "fr-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "it-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ne.ch/autorites/DESC/PONE/Pages/Drones.aspx", + "email" : "Police.Neuchateloise@ne.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8249647, 47.5065108 ], + [ 7.8255464, 47.5065748 ], + [ 7.825546, 47.5065382 ], + [ 7.8255465, 47.5065016 ], + [ 7.8255479, 47.506465 ], + [ 7.8255502, 47.5064284 ], + [ 7.8255533, 47.5063919 ], + [ 7.8255574, 47.5063554 ], + [ 7.8255623, 47.5063189 ], + [ 7.8255681, 47.5062825 ], + [ 7.8255748, 47.5062462 ], + [ 7.8255824, 47.5062099 ], + [ 7.8255943, 47.5061593 ], + [ 7.8256068, 47.5061087 ], + [ 7.8256201, 47.5060582 ], + [ 7.825634, 47.5060077 ], + [ 7.8256486, 47.5059574 ], + [ 7.8256639, 47.5059071 ], + [ 7.8256798, 47.505857 ], + [ 7.8257065, 47.5057773 ], + [ 7.8257226, 47.5057276 ], + [ 7.8257378, 47.5056779 ], + [ 7.8257521, 47.505628 ], + [ 7.8257655, 47.505578 ], + [ 7.825778, 47.5055279 ], + [ 7.8257896, 47.5054777 ], + [ 7.8258003, 47.5054274 ], + [ 7.8258101, 47.5053771 ], + [ 7.825819, 47.5053266 ], + [ 7.825827, 47.5052761 ], + [ 7.8258341, 47.5052255 ], + [ 7.8258403, 47.5051748 ], + [ 7.8258456, 47.5051241 ], + [ 7.82585, 47.5050734 ], + [ 7.8258605, 47.5049427 ], + [ 7.8258634, 47.5049016 ], + [ 7.8258657, 47.5048605 ], + [ 7.8258674, 47.5048194 ], + [ 7.8258686, 47.5047783 ], + [ 7.8257762, 47.5047675 ], + [ 7.825721, 47.5049341 ], + [ 7.8255128, 47.5053424 ], + [ 7.8254099, 47.5055652 ], + [ 7.8252882, 47.5058251 ], + [ 7.825056, 47.506254 ], + [ 7.8249647, 47.5065108 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns257", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Rotenrüti", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Rotenrüti", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Rotenrüti", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Rotenrüti", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.7988371999999995, 46.9665784 ], + [ 6.7984868, 46.9666207 ], + [ 6.7985106, 46.9664144 ], + [ 6.798558, 46.9662277 ], + [ 6.7985847, 46.9659164 ], + [ 6.7987246, 46.9656213 ], + [ 6.7989777, 46.9654048 ], + [ 6.7992522, 46.9652507 ], + [ 6.7992704, 46.9652422 ], + [ 6.799481, 46.9651429 ], + [ 6.7997095, 46.9650507 ], + [ 6.800007, 46.9648966 ], + [ 6.8002138, 46.9647732 ], + [ 6.8006248, 46.9646042 ], + [ 6.799903, 46.9632896 ], + [ 6.8001502, 46.9625257 ], + [ 6.8001883, 46.9622942 ], + [ 6.8001937, 46.9621194 ], + [ 6.8001667999999995, 46.9619673 ], + [ 6.8000985, 46.9617647 ], + [ 6.799937, 46.9613992 ], + [ 6.7998266, 46.9611575 ], + [ 6.7996668, 46.9609217 ], + [ 6.7995819, 46.9607362 ], + [ 6.7994248, 46.9606245 ], + [ 6.7992257, 46.9605187 ], + [ 6.7990925, 46.9603955 ], + [ 6.7990087, 46.9602551 ], + [ 6.7988421, 46.9601153 ], + [ 6.798643, 46.9600038 ], + [ 6.7984603, 46.9598358 ], + [ 6.7982938, 46.9596791 ], + [ 6.7981007, 46.9594097 ], + [ 6.7979158, 46.9591458 ], + [ 6.7977815, 46.9589099 ], + [ 6.7976067, 46.9587645 ], + [ 6.7973742999999995, 46.9586251 ], + [ 6.7970442, 46.9584864 ], + [ 6.7967130000000004, 46.958308099999996 ], + [ 6.7962904, 46.9580797 ], + [ 6.7960408, 46.9578728 ], + [ 6.7958334, 46.9576994 ], + [ 6.7956672000000005, 46.9575934 ], + [ 6.7954687, 46.9575101 ], + [ 6.7952126, 46.9574273 ], + [ 6.7948830000000005, 46.9573224 ], + [ 6.7944379, 46.9572577 ], + [ 6.7940994, 46.9571359 ], + [ 6.7938266, 46.9570138 ], + [ 6.7936278, 46.9568853 ], + [ 6.7934286, 46.9567175 ], + [ 6.7932542, 46.9566115 ], + [ 6.7931466, 46.9565446 ], + [ 6.7927919, 46.9564737 ], + [ 6.7924299, 46.9563972 ], + [ 6.792091, 46.9563036 ], + [ 6.7918101, 46.9561814 ], + [ 6.7916523, 46.9560529 ], + [ 6.7915109000000005, 46.9559297 ], + [ 6.7912866, 46.9557395 ], + [ 6.7910543, 46.9556 ], + [ 6.7907892, 46.9554497 ], + [ 6.7905487, 46.9553046 ], + [ 6.7903674, 46.9552213 ], + [ 6.790234, 46.9551206 ], + [ 6.790159, 46.9550084 ], + [ 6.7900897, 46.9547662 ], + [ 6.7899479, 46.9546093 ], + [ 6.7897656, 46.9545429 ], + [ 6.7895425, 46.9544486 ], + [ 6.789377, 46.9543537 ], + [ 6.7892608, 46.9542586 ], + [ 6.7891595, 46.9540788 ], + [ 6.7890829, 46.9538933 ], + [ 6.7889233, 46.9536463 ], + [ 6.7888144, 46.9534891 ], + [ 6.788698, 46.9533996 ], + [ 6.7885159999999996, 46.9533106 ], + [ 6.788194, 46.9531887 ], + [ 6.7879708999999995, 46.9531 ], + [ 6.7878217, 46.9530107 ], + [ 6.7876802, 46.9528989 ], + [ 6.7876045, 46.9527753 ], + [ 6.7875358, 46.9525558 ], + [ 6.7874847, 46.9524321 ], + [ 6.7873847, 46.9523482 ], + [ 6.787228, 46.9522703 ], + [ 6.7871036, 46.9521696 ], + [ 6.7869133, 46.9520919 ], + [ 6.7868133, 46.952008 ], + [ 6.7867712000000004, 46.9518955 ], + [ 6.7866956, 46.9518283 ], + [ 6.7864888, 46.9516832 ], + [ 6.786157, 46.9514936 ], + [ 6.7859747, 46.9513595 ], + [ 6.7858016, 46.9513437 ], + [ 6.7855550000000004, 46.9513059 ], + [ 6.785324, 46.9512567 ], + [ 6.7851425, 46.9511903 ], + [ 6.7849519, 46.9510675 ], + [ 6.7847771, 46.9509276 ], + [ 6.7846019, 46.9507484 ], + [ 6.7844839, 46.9505291 ], + [ 6.7843656, 46.9502649 ], + [ 6.7842228, 46.9500628 ], + [ 6.7840398, 46.9499174 ], + [ 6.7838658, 46.9497833 ], + [ 6.7836419, 46.9496268 ], + [ 6.7835078, 46.9494473 ], + [ 6.7833643, 46.9491662 ], + [ 6.7832768, 46.9487946 ], + [ 6.7831855, 46.9487445 ], + [ 6.7830781, 46.9486661 ], + [ 6.7829453, 46.9485768 ], + [ 6.7827955, 46.9484763 ], + [ 6.7826632, 46.9484153 ], + [ 6.7824905, 46.9483769 ], + [ 6.7823576, 46.9483044 ], + [ 6.7822831, 46.9482148 ], + [ 6.7822567, 46.9480908 ], + [ 6.782254, 46.9479104 ], + [ 6.7822277, 46.9477808 ], + [ 6.7821515, 46.9476348 ], + [ 6.7820083, 46.9473932 ], + [ 6.7818739, 46.9471741 ], + [ 6.7817817, 46.9470564 ], + [ 6.7817553, 46.9469324 ], + [ 6.7817449, 46.9467803 ], + [ 6.7817179, 46.9466338 ], + [ 6.781642, 46.9464707 ], + [ 6.7815326, 46.9462796 ], + [ 6.7814806999999995, 46.9460996 ], + [ 6.7814954, 46.9459698 ], + [ 6.7815177, 46.9458287 ], + [ 6.7815562, 46.945631 ], + [ 6.7815576, 46.9445763 ], + [ 6.7815563999999995, 46.943877 ], + [ 6.7814564, 46.9431953 ], + [ 6.7813876, 46.9429814 ], + [ 6.7813275, 46.9427958 ], + [ 6.7812836, 46.9426211 ], + [ 6.7812984, 46.9424913 ], + [ 6.7812634, 46.9423281 ], + [ 6.7812361, 46.9421477 ], + [ 6.7812342999999995, 46.9420294 ], + [ 6.7812221, 46.9417531 ], + [ 6.7811522, 46.9414265 ], + [ 6.7810977999999995, 46.9411111 ], + [ 6.7809961, 46.9408974 ], + [ 6.7808961, 46.9407571 ], + [ 6.7808284, 46.9406503 ], + [ 6.7806747, 46.9402002 ], + [ 6.7806145, 46.9400201 ], + [ 6.780464, 46.9398407 ], + [ 6.780355, 46.9396948 ], + [ 6.7802963, 46.9395937 ], + [ 6.7802454, 46.9394643 ], + [ 6.7800773, 46.9391778 ], + [ 6.7798496, 46.9388015 ], + [ 6.7795233, 46.9383694 ], + [ 6.7793139, 46.9380438 ], + [ 6.7790713, 46.9377407 ], + [ 6.7788203, 46.9373928 ], + [ 6.7785606, 46.9370843 ], + [ 6.7784024, 46.9369332 ], + [ 6.7782034, 46.9367596 ], + [ 6.7780876, 46.9366983 ], + [ 6.7779551, 46.9366597 ], + [ 6.7778071, 46.9366156 ], + [ 6.7777397, 46.9364919 ], + [ 6.7777045, 46.9363456 ], + [ 6.7777188, 46.9361877 ], + [ 6.7776255, 46.9359683 ], + [ 6.7764885, 46.9339795 ], + [ 6.7761359, 46.9334235 ], + [ 6.7759782, 46.9332948 ], + [ 6.7757052, 46.9331386 ], + [ 6.7754560999999995, 46.9329712 ], + [ 6.7752407, 46.9328034 ], + [ 6.774967, 46.9326361 ], + [ 6.7747852, 46.93253 ], + [ 6.7745608, 46.9323623 ], + [ 6.7742631, 46.9322064 ], + [ 6.773784, 46.9319953 ], + [ 6.7732227, 46.9317904 ], + [ 6.7724552, 46.9315304 ], + [ 6.7719696, 46.9314433 ], + [ 6.7715833, 46.9314234 ], + [ 6.7712386, 46.9314201 ], + [ 6.7708943, 46.9314506 ], + [ 6.7704515, 46.9314817 ], + [ 6.7699423, 46.9315132 ], + [ 6.7694009, 46.9315562 ], + [ 6.7688356, 46.9316051 ], + [ 6.7684993, 46.9316524 ], + [ 6.7681148, 46.9317508 ], + [ 6.7677874, 46.9318095 ], + [ 6.767583, 46.9318784 ], + [ 6.767379, 46.9319812 ], + [ 6.7671997, 46.9320726 ], + [ 6.7670443, 46.9321583 ], + [ 6.7667836, 46.9322671 ], + [ 6.7665296999999995, 46.9323591 ], + [ 6.7662531, 46.9324906 ], + [ 6.7659506, 46.9325941 ], + [ 6.7656971, 46.9327141 ], + [ 6.7654779, 46.9328454 ], + [ 6.7651924999999995, 46.9330221 ], + [ 6.7650299, 46.9331585 ], + [ 6.7648919, 46.9332327 ], + [ 6.7647208, 46.9333297 ], + [ 6.7643851999999995, 46.9334504 ], + [ 6.7640996, 46.9335819 ], + [ 6.7638300000000005, 46.933674 ], + [ 6.7635856, 46.933794 ], + [ 6.7633005, 46.9339482 ], + [ 6.7630394, 46.9340796 ], + [ 6.7627872, 46.9342334 ], + [ 6.7625758, 46.9343984 ], + [ 6.7623393, 46.9345353 ], + [ 6.7621927, 46.9346378 ], + [ 6.7619720999999995, 46.93469 ], + [ 6.7616608, 46.934771 ], + [ 6.7613671, 46.9348856 ], + [ 6.7610973, 46.9350002 ], + [ 6.7608529, 46.9351146 ], + [ 6.7605511, 46.9352857 ], + [ 6.7601605, 46.9355422 ], + [ 6.7597935, 46.935742 ], + [ 6.7595161, 46.9358678 ], + [ 6.7592716, 46.9359878 ], + [ 6.7590918, 46.9360567 ], + [ 6.7588129, 46.9361035 ], + [ 6.7584615, 46.9361792 ], + [ 6.758183, 46.9362599 ], + [ 6.7579293, 46.9363292 ], + [ 6.7577409, 46.93637 ], + [ 6.7574878, 46.9364562 ], + [ 6.7572915, 46.9365252 ], + [ 6.756973, 46.9366569 ], + [ 6.7566628, 46.9367831 ], + [ 6.7562879, 46.9369604 ], + [ 6.7560833, 46.9370405 ], + [ 6.7558705, 46.9371153 ], + [ 6.7557321, 46.9371613 ], + [ 6.7554531, 46.9372195 ], + [ 6.7552243, 46.9372661 ], + [ 6.754986, 46.9372846 ], + [ 6.7547074, 46.9373089 ], + [ 6.7545105, 46.9373045 ], + [ 6.7542224, 46.9373008 ], + [ 6.7539926999999995, 46.937291 ], + [ 6.7536062999999995, 46.9372766 ], + [ 6.7533104, 46.9372446 ], + [ 6.7530391, 46.9372126 ], + [ 6.7528009, 46.9372198 ], + [ 6.7526530000000005, 46.9372376 ], + [ 6.7524483, 46.9372559 ], + [ 6.7523168, 46.9372736 ], + [ 6.7521697, 46.9372858 ], + [ 6.7519309, 46.9372817 ], + [ 6.7516433, 46.9372385 ], + [ 6.7514213, 46.9372061 ], + [ 6.751199, 46.9371906 ], + [ 6.7510851, 46.9372421 ], + [ 6.7510031999999995, 46.9372877 ], + [ 6.7508482999999995, 46.9373394 ], + [ 6.7507337, 46.9373797 ], + [ 6.7505366, 46.937381 ], + [ 6.7503313, 46.9373879 ], + [ 6.7501173, 46.9373724 ], + [ 6.7499447, 46.9373284 ], + [ 6.7497711, 46.9372899 ], + [ 6.7496072, 46.9372684 ], + [ 6.7493684, 46.9372643 ], + [ 6.7489986, 46.9372386 ], + [ 6.7485464, 46.9371681 ], + [ 6.7483649, 46.9371129 ], + [ 6.7482809, 46.9370063 ], + [ 6.7481808, 46.9368772 ], + [ 6.7480806, 46.9367482 ], + [ 6.7479809, 46.936653 ], + [ 6.7477335, 46.9365529 ], + [ 6.7474948, 46.9365376 ], + [ 6.7428346999999995, 46.9368775 ], + [ 6.7421769, 46.9368366 ], + [ 6.7419632, 46.9367984 ], + [ 6.7417077, 46.9367494 ], + [ 6.7414613, 46.9367002 ], + [ 6.7412219, 46.9366171 ], + [ 6.7409579, 46.9365285 ], + [ 6.7406687, 46.9364233 ], + [ 6.7402736, 46.9363185 ], + [ 6.7398779, 46.9362027 ], + [ 6.7394579, 46.9361151 ], + [ 6.7390948, 46.9360159 ], + [ 6.7387162, 46.9359055 ], + [ 6.738427, 46.9358001 ], + [ 6.7380889, 46.9356725 ], + [ 6.7377751, 46.9355618 ], + [ 6.7376267, 46.9354894 ], + [ 6.7374687, 46.9353945 ], + [ 6.7373115, 46.9353053 ], + [ 6.7371288, 46.9351486 ], + [ 6.7370038, 46.9349857 ], + [ 6.7369286, 46.934896 ], + [ 6.736797, 46.9348574 ], + [ 6.7366890999999995, 46.9348185 ], + [ 6.7365243, 46.9347463 ], + [ 6.7363506, 46.9346572 ], + [ 6.7359617, 46.9344003 ], + [ 6.7354893, 46.9341212 ], + [ 6.7350682, 46.9339377 ], + [ 6.734812, 46.9338209 ], + [ 6.7345486999999995, 46.9337436 ], + [ 6.7343084, 46.9336097 ], + [ 6.7340441, 46.9334817 ], + [ 6.7336877, 46.9332471 ], + [ 6.7335057, 46.9331128 ], + [ 6.7333487, 46.9330687 ], + [ 6.7331347, 46.9330476 ], + [ 6.7328554, 46.9330043 ], + [ 6.7327399, 46.9329879 ], + [ 6.732558, 46.932899 ], + [ 6.7323766, 46.932838 ], + [ 6.7321539999999995, 46.9327323 ], + [ 6.7319306999999995, 46.9326096 ], + [ 6.7316824, 46.9324588 ], + [ 6.7315324, 46.9323189 ], + [ 6.7313836, 46.9322125 ], + [ 6.7311929, 46.9321123 ], + [ 6.7308216, 46.931951 ], + [ 6.7302522, 46.9317459 ], + [ 6.7298811, 46.9316356 ], + [ 6.7295765, 46.931581 ], + [ 6.7292893, 46.9315772 ], + [ 6.7289198, 46.9315852 ], + [ 6.7286652, 46.9316036 ], + [ 6.7285258, 46.9315933 ], + [ 6.7284023, 46.9315546 ], + [ 6.7281792, 46.9314882 ], + [ 6.7277341, 46.9313219 ], + [ 6.7271816, 46.9311449 ], + [ 6.7267369, 46.9310742 ], + [ 6.726597, 46.9310413 ], + [ 6.7265301, 46.9309459 ], + [ 6.7264216999999995, 46.9308281 ], + [ 6.7262732, 46.9307614 ], + [ 6.7261417, 46.930717 ], + [ 6.7259188, 46.9306846 ], + [ 6.7257223, 46.930714 ], + [ 6.7255427999999995, 46.9307602 ], + [ 6.7253707, 46.9308008 ], + [ 6.7251492, 46.9308529 ], + [ 6.7248379, 46.9308718 ], + [ 6.7245588, 46.9308792 ], + [ 6.7244112, 46.9309308 ], + [ 6.7242481, 46.9309712 ], + [ 6.7240924, 46.9310174 ], + [ 6.7238712, 46.9310527 ], + [ 6.723557, 46.9310362 ], + [ 6.7232558000000004, 46.9310341 ], + [ 6.7229264, 46.931122 ], + [ 6.7219753, 46.9315388 ], + [ 6.7216434, 46.9318065 ], + [ 6.7205784, 46.9328793 ], + [ 6.7203754, 46.9333278 ], + [ 6.7202608999999995, 46.9340288 ], + [ 6.7204223, 46.9347224 ], + [ 6.7205771, 46.9349303 ], + [ 6.7207042, 46.9352459 ], + [ 6.7208612, 46.9361461 ], + [ 6.7208602, 46.9363386 ], + [ 6.7207647999999995, 46.9365366 ], + [ 6.7206028, 46.9367407 ], + [ 6.7203912, 46.9369111 ], + [ 6.7202677, 46.9368838 ], + [ 6.7200873, 46.9368679 ], + [ 6.7199322, 46.9369252 ], + [ 6.7198507, 46.9370047 ], + [ 6.7197794, 46.9371799 ], + [ 6.7196818, 46.9372935 ], + [ 6.7195359, 46.9374015 ], + [ 6.719422, 46.9375093 ], + [ 6.7192919, 46.9376004 ], + [ 6.7192279, 46.9377192 ], + [ 6.7191717, 46.9378661 ], + [ 6.7190762, 46.9380697 ], + [ 6.7189409, 46.9383695 ], + [ 6.7187627, 46.9386187 ], + [ 6.7185276, 46.9388232 ], + [ 6.7183062, 46.9388697 ], + [ 6.7185609, 46.9395224 ], + [ 6.7187212, 46.9398034 ], + [ 6.7189222, 46.9401179 ], + [ 6.7191634, 46.9403758 ], + [ 6.7193545, 46.94051 ], + [ 6.7195695, 46.9406384 ], + [ 6.7191429, 46.9406806 ], + [ 6.7188313, 46.9407163 ], + [ 6.7190138, 46.9408788 ], + [ 6.7192368, 46.9409564 ], + [ 6.7188429, 46.9410095 ], + [ 6.7186378, 46.9409995 ], + [ 6.7183991, 46.9409896 ], + [ 6.7184164, 46.9410459 ], + [ 6.7184752, 46.9411246 ], + [ 6.7185664, 46.9411804 ], + [ 6.7186653, 46.9412136 ], + [ 6.7188549, 46.94128 ], + [ 6.7186264, 46.9413605 ], + [ 6.7185030999999995, 46.9413726 ], + [ 6.7183384, 46.941351 ], + [ 6.7181408, 46.9413353 ], + [ 6.7181918, 46.9414478 ], + [ 6.7182579, 46.9414756 ], + [ 6.7183655, 46.9415368 ], + [ 6.7185049, 46.9415473 ], + [ 6.7186949, 46.94158 ], + [ 6.7188998, 46.9416014 ], + [ 6.7185808, 46.9416991 ], + [ 6.7184506, 46.9417394 ], + [ 6.7182954, 46.9418025 ], + [ 6.7181467999999995, 46.9418034 ], + [ 6.7179576999999995, 46.9417651 ], + [ 6.7177682999999995, 46.9416873 ], + [ 6.7178104, 46.9417885 ], + [ 6.7178608, 46.9418897 ], + [ 6.7179687, 46.9419792 ], + [ 6.7180925, 46.9420518 ], + [ 6.7182496, 46.9420903 ], + [ 6.7184467, 46.942089 ], + [ 6.7186191, 46.942088 ], + [ 6.7184561, 46.942185 ], + [ 6.7182589, 46.9421973 ], + [ 6.7180953, 46.9422097 ], + [ 6.7178568, 46.942183 ], + [ 6.717593, 46.9421451 ], + [ 6.7173956, 46.9421125 ], + [ 6.7176945, 46.9423532 ], + [ 6.7179095, 46.9424758 ], + [ 6.7182642, 46.9425922 ], + [ 6.718495, 46.9426471 ], + [ 6.7188314, 46.9426564 ], + [ 6.7190783, 46.9426773 ], + [ 6.7190539, 46.9427169 ], + [ 6.7188907, 46.9427631 ], + [ 6.7187433, 46.9428035 ], + [ 6.7184808, 46.9428502 ], + [ 6.7182356, 46.9428913 ], + [ 6.7179808, 46.9429098 ], + [ 6.7176852, 46.9429172 ], + [ 6.7173559, 46.9428628 ], + [ 6.717002, 46.9428086 ], + [ 6.7166734, 46.9427655 ], + [ 6.7167724, 46.9428494 ], + [ 6.7168968, 46.9429445 ], + [ 6.7170622, 46.9430338 ], + [ 6.7172448, 46.9431286 ], + [ 6.7174757, 46.9432342 ], + [ 6.7176817, 46.9433007 ], + [ 6.7178556, 46.9433729 ], + [ 6.7179624, 46.9434231 ], + [ 6.7182102, 46.9434948 ], + [ 6.7184086, 46.9435725 ], + [ 6.7186386, 46.9436275 ], + [ 6.7188614, 46.9436656 ], + [ 6.7191246, 46.9436866 ], + [ 6.7193462, 46.9436908 ], + [ 6.7191662, 46.9437653 ], + [ 6.719011, 46.9438339 ], + [ 6.7189374, 46.9438682 ], + [ 6.7187075, 46.9438753 ], + [ 6.718478, 46.9439106 ], + [ 6.7182566999999995, 46.9439457 ], + [ 6.718093, 46.9439693 ], + [ 6.7179129, 46.943993 ], + [ 6.7177238, 46.9440111 ], + [ 6.7175191, 46.9440348 ], + [ 6.7173138, 46.9440418 ], + [ 6.7170922, 46.9440375 ], + [ 6.7168042, 46.9440223 ], + [ 6.7165164, 46.9439959 ], + [ 6.7161543, 46.9439417 ], + [ 6.7158499, 46.9438702 ], + [ 6.7156693, 46.9438713 ], + [ 6.7156859, 46.9439164 ], + [ 6.715728, 46.9439612 ], + [ 6.7158103, 46.9440059 ], + [ 6.7159589, 46.9440614 ], + [ 6.7161402, 46.9441335 ], + [ 6.7162647, 46.9442173 ], + [ 6.7163563, 46.944307 ], + [ 6.7164648, 46.9444192 ], + [ 6.7165808, 46.94452 ], + [ 6.716664, 46.944621 ], + [ 6.7168551999999995, 46.9447496 ], + [ 6.7170372, 46.9448894 ], + [ 6.7171703, 46.9450013 ], + [ 6.7173361, 46.9451244 ], + [ 6.7174198, 46.945248 ], + [ 6.717275, 46.9455139 ], + [ 6.7172207, 46.9457681 ], + [ 6.7171261, 46.9460225 ], + [ 6.7170494, 46.9464798 ], + [ 6.717771, 46.9463624 ], + [ 6.7180569, 46.9462817 ], + [ 6.7181635, 46.9462304 ], + [ 6.7182449, 46.9461622 ], + [ 6.7183502, 46.9460882 ], + [ 6.7184729, 46.9459972 ], + [ 6.7186194, 46.9459061 ], + [ 6.71875, 46.9458432 ], + [ 6.7189545, 46.9457744 ], + [ 6.719143, 46.9457393 ], + [ 6.7192906, 46.9457496 ], + [ 6.7194303, 46.9457376 ], + [ 6.719726, 46.94573 ], + [ 6.7199881999999995, 46.945706 ], + [ 6.720243, 46.9457438 ], + [ 6.7204651, 46.9457707 ], + [ 6.7206303, 46.9458203 ], + [ 6.7208118, 46.9458757 ], + [ 6.7209853, 46.945976 ], + [ 6.7211262, 46.9460599 ], + [ 6.7212838999999995, 46.9461772 ], + [ 6.7214823, 46.9462607 ], + [ 6.7216394, 46.9463612 ], + [ 6.7217632, 46.9464338 ], + [ 6.721896, 46.9465119 ], + [ 6.7220455999999995, 46.9466238 ], + [ 6.72212, 46.9467022 ], + [ 6.7221792, 46.9468203 ], + [ 6.7222793, 46.9469494 ], + [ 6.7223711999999995, 46.9470166 ], + [ 6.7224454, 46.9470499 ], + [ 6.7225612, 46.9471112 ], + [ 6.7227256, 46.9471553 ], + [ 6.722915, 46.9471767 ], + [ 6.7230715, 46.9471983 ], + [ 6.7233426, 46.9471853 ], + [ 6.7235724, 46.9471895 ], + [ 6.723917, 46.9472043 ], + [ 6.7241146, 46.9472257 ], + [ 6.7243531, 46.9472581 ], + [ 6.724633, 46.9472619 ], + [ 6.7248633, 46.9472887 ], + [ 6.7250274, 46.947299 ], + [ 6.7252164, 46.9472865 ], + [ 6.7254042, 46.9472402 ], + [ 6.7255929, 46.9471882 ], + [ 6.7258789, 46.9471019 ], + [ 6.7261897, 46.9470041 ], + [ 6.7265011999999995, 46.9469175 ], + [ 6.7266644, 46.9468715 ], + [ 6.726894, 46.9468305 ], + [ 6.7270747, 46.9468237 ], + [ 6.7272476999999995, 46.9468395 ], + [ 6.7273876999999995, 46.9468726 ], + [ 6.7275605, 46.9468997 ], + [ 6.7277003, 46.946944 ], + [ 6.7277916, 46.9469942 ], + [ 6.7278419, 46.9470445 ], + [ 6.7278672, 46.9471177 ], + [ 6.7278435, 46.9471686 ], + [ 6.7278521, 46.9472588 ], + [ 6.7278946, 46.9473375 ], + [ 6.7279292, 46.9474501 ], + [ 6.7280043, 46.9475511 ], + [ 6.7280622999999995, 46.9476297 ], + [ 6.7281129, 46.947714 ], + [ 6.7281727, 46.947849 ], + [ 6.728248, 46.9479895 ], + [ 6.7282994, 46.9481414 ], + [ 6.7283676, 46.9483215 ], + [ 6.7284524999999995, 46.9485465 ], + [ 6.7285702, 46.9487658 ], + [ 6.7286544, 46.9489232 ], + [ 6.7287555, 46.9490974 ], + [ 6.7288564, 46.9492885 ], + [ 6.7290486, 46.9495354 ], + [ 6.7292076, 46.9497431 ], + [ 6.7293330000000005, 46.9498777 ], + [ 6.7294996, 46.9500683 ], + [ 6.7297319, 46.9502643 ], + [ 6.7300234, 46.9505727 ], + [ 6.7305154, 46.9511167 ], + [ 6.7306071, 46.951195 ], + [ 6.7306154, 46.9512514 ], + [ 6.7306086, 46.9513304 ], + [ 6.730552, 46.9513871 ], + [ 6.7304952, 46.9514664 ], + [ 6.7303647, 46.9515237 ], + [ 6.7302018, 46.9516093 ], + [ 6.7299646, 46.9517292 ], + [ 6.7297854, 46.9518036 ], + [ 6.7296127, 46.9518216 ], + [ 6.7294156, 46.9518284 ], + [ 6.7292773, 46.9519196 ], + [ 6.7290816, 46.9519998 ], + [ 6.7289679, 46.9520964 ], + [ 6.7288046, 46.9522102 ], + [ 6.7286816, 46.9521941 ], + [ 6.7285176, 46.9522458 ], + [ 6.7283799, 46.9523539 ], + [ 6.7282501, 46.9524787 ], + [ 6.7281199, 46.9525755 ], + [ 6.7279554, 46.9525991 ], + [ 6.7277758, 46.9526453 ], + [ 6.7276039, 46.9527253 ], + [ 6.7275642, 46.9528101 ], + [ 6.7277623, 46.9529174 ], + [ 6.7279917000000005, 46.9528978 ], + [ 6.7282976, 46.9528578 ], + [ 6.7287569, 46.9527771 ], + [ 6.7292623, 46.9526756 ], + [ 6.7292173, 46.9537211 ], + [ 6.7292307000000005, 46.9538884 ], + [ 6.7292746999999995, 46.9540352 ], + [ 6.7293035, 46.9541607 ], + [ 6.7293932, 46.9543287 ], + [ 6.7294371, 46.954423 ], + [ 6.7294671, 46.9545174 ], + [ 6.7294958, 46.9546431 ], + [ 6.7295248999999995, 46.9547373 ], + [ 6.7295536, 46.954863 ], + [ 6.7295676, 46.9549886 ], + [ 6.7296122, 46.9550934 ], + [ 6.7296559, 46.9551983 ], + [ 6.7297152, 46.9553763 ], + [ 6.7297282, 46.9555124 ], + [ 6.7297418, 46.9556589 ], + [ 6.72974, 46.9557948 ], + [ 6.7297384000000005, 46.9559203 ], + [ 6.7297363, 46.9560771 ], + [ 6.7297038, 46.9562338 ], + [ 6.7296097, 46.9564005 ], + [ 6.7295632, 46.9566242 ], + [ 6.7298038, 46.9563097 ], + [ 6.7300223, 46.9560546 ], + [ 6.7303391999999995, 46.9558158 ], + [ 6.7306251, 46.9556785 ], + [ 6.7308861, 46.9555642 ], + [ 6.7311153, 46.955495 ], + [ 6.7314188, 46.9554536 ], + [ 6.7316404, 46.9554579 ], + [ 6.7318381, 46.9554736 ], + [ 6.7320104, 46.9554838 ], + [ 6.7321339, 46.9554604 ], + [ 6.7323629, 46.9554083 ], + [ 6.7326008, 46.9553617 ], + [ 6.732822, 46.9553377 ], + [ 6.7330279, 46.9553533 ], + [ 6.7332669, 46.9554082 ], + [ 6.7334651, 46.9555084 ], + [ 6.7337619, 46.9556081 ], + [ 6.7340262, 46.9556741 ], + [ 6.7342812, 46.9557064 ], + [ 6.7345439, 46.9557103 ], + [ 6.7347584, 46.955754 ], + [ 6.7350388, 46.9558539 ], + [ 6.7353772, 46.9559645 ], + [ 6.7359707, 46.9561074 ], + [ 6.7362836, 46.9561619 ], + [ 6.7365133, 46.956183 ], + [ 6.7368429, 46.9562147 ], + [ 6.7370804, 46.956201899999996 ], + [ 6.7373926, 46.9561886 ], + [ 6.737672, 46.9561756 ], + [ 6.7380075999999995, 46.9561283 ], + [ 6.7384175, 46.9560524 ], + [ 6.7387213, 46.9559941 ], + [ 6.7390733, 46.9559524 ], + [ 6.7393117, 46.9559284 ], + [ 6.7396644, 46.9558979 ], + [ 6.7399929, 46.9558901 ], + [ 6.7404287, 46.9559043 ], + [ 6.7408481, 46.9559243 ], + [ 6.7412748, 46.955944 ], + [ 6.7417439, 46.9559919 ], + [ 6.7422206, 46.956017 ], + [ 6.7426817, 46.9560479 ], + [ 6.7429038, 46.9560747 ], + [ 6.7431255, 46.956079 ], + [ 6.7434539000000004, 46.9560825 ], + [ 6.7440946, 46.9560672 ], + [ 6.7450138, 46.9559766 ], + [ 6.7456204, 46.9559277 ], + [ 6.746056, 46.9558966 ], + [ 6.7464829, 46.9559053 ], + [ 6.7468198, 46.9558862 ], + [ 6.7469841, 46.9558795 ], + [ 6.7475417, 46.9558138 ], + [ 6.748083, 46.9557935 ], + [ 6.7484948, 46.9558303 ], + [ 6.7487908, 46.9558567 ], + [ 6.7491114, 46.955894 ], + [ 6.7493356, 46.9560223 ], + [ 6.7496087, 46.9561728 ], + [ 6.7499973, 46.9564128 ], + [ 6.7504864, 46.9566917 ], + [ 6.7508428, 46.9569488 ], + [ 6.7511081, 46.9571333 ], + [ 6.7513905, 46.9573288 ], + [ 6.751539, 46.9574068 ], + [ 6.7518625, 46.9575964 ], + [ 6.7524499, 46.9578972 ], + [ 6.7531275, 46.9582087 ], + [ 6.7535243, 46.9583866 ], + [ 6.7537802, 46.9584751 ], + [ 6.7540192999999995, 46.9585244 ], + [ 6.754595, 46.9585884 ], + [ 6.7552949, 46.9586966 ], + [ 6.7555504, 46.9587458 ], + [ 6.7558049, 46.9587553 ], + [ 6.7559768, 46.9587317 ], + [ 6.7561573, 46.9586797 ], + [ 6.7563285, 46.9585884 ], + [ 6.7564753, 46.9584747 ], + [ 6.7566944, 46.9582927 ], + [ 6.7569304, 46.9581333 ], + [ 6.757151, 46.9580303 ], + [ 6.7574133, 46.9580062 ], + [ 6.7576191, 46.9580274 ], + [ 6.7578498, 46.9580935 ], + [ 6.7581304, 46.9581763 ], + [ 6.7584273, 46.9582703 ], + [ 6.7587485, 46.9583245 ], + [ 6.759086, 46.95839 ], + [ 6.7594567, 46.9584327 ], + [ 6.7596295, 46.9584655 ], + [ 6.7598023, 46.9585038 ], + [ 6.759984, 46.9585533 ], + [ 6.7602649, 46.9586756 ], + [ 6.7607028, 46.9588532 ], + [ 6.7613646, 46.9591816 ], + [ 6.7624488, 46.9597499 ], + [ 6.76311, 46.9600613 ], + [ 6.7635234, 46.9602334 ], + [ 6.7639107, 46.9603268 ], + [ 6.7641918, 46.9604321 ], + [ 6.7642989, 46.9604709 ], + [ 6.7645466, 46.9605595 ], + [ 6.7649101, 46.960715 ], + [ 6.765125, 46.9607982 ], + [ 6.7653406, 46.9608983 ], + [ 6.7656623, 46.9610428 ], + [ 6.7659773, 46.9612043 ], + [ 6.7662669, 46.9613547 ], + [ 6.7665481, 46.961522 ], + [ 6.7669543999999995, 46.9617393 ], + [ 6.7672844, 46.9618781 ], + [ 6.7675244, 46.9619949 ], + [ 6.7677808, 46.9621117 ], + [ 6.7680377, 46.9622567 ], + [ 6.7683188, 46.9623677 ], + [ 6.7686411, 46.9625347 ], + [ 6.7690962, 46.9627855 ], + [ 6.7693619, 46.9629473 ], + [ 6.7696766, 46.9631313 ], + [ 6.7699006, 46.9632765 ], + [ 6.7701158, 46.9634048 ], + [ 6.7702071, 46.9634606 ], + [ 6.7703898, 46.9636341 ], + [ 6.7705739, 46.9638191 ], + [ 6.7707401, 46.9639928 ], + [ 6.7708654, 46.9641499 ], + [ 6.7710407, 46.9643179 ], + [ 6.7711816, 46.9644129 ], + [ 6.771355, 46.9644681 ], + [ 6.7715109, 46.9644784 ], + [ 6.7716753, 46.9644716 ], + [ 6.7718723, 46.964476 ], + [ 6.772152, 46.9645024 ], + [ 6.7723749, 46.964546 ], + [ 6.7726473, 46.9646344 ], + [ 6.7728375, 46.964729 ], + [ 6.7730528, 46.9648461 ], + [ 6.773383, 46.9649791 ], + [ 6.7737547, 46.9650727 ], + [ 6.7740019, 46.965133 ], + [ 6.774298, 46.965165 ], + [ 6.7745771999999995, 46.9651687 ], + [ 6.7748478, 46.9651386 ], + [ 6.7751838, 46.9650631 ], + [ 6.7756913, 46.9649356 ], + [ 6.7762489, 46.9648079 ], + [ 6.7765924, 46.964721 ], + [ 6.7768553, 46.9647193 ], + [ 6.7769786, 46.9647072 ], + [ 6.7771433, 46.96474 ], + [ 6.7772668, 46.9647786 ], + [ 6.7773747, 46.964823 ], + [ 6.7775403, 46.9649121 ], + [ 6.7776641, 46.9649902 ], + [ 6.777814, 46.9650907 ], + [ 6.7779962, 46.9652361 ], + [ 6.7781634, 46.965393 ], + [ 6.7782883, 46.9655219 ], + [ 6.7783804, 46.9656453 ], + [ 6.7784969, 46.9657855 ], + [ 6.7786301, 46.9659087 ], + [ 6.7789125, 46.9661212 ], + [ 6.7803401999999995, 46.9670985 ], + [ 6.78078, 46.9674001 ], + [ 6.7810781, 46.9676011 ], + [ 6.7812197, 46.9677074 ], + [ 6.7814179, 46.9678188 ], + [ 6.7816165, 46.9678964 ], + [ 6.7819227, 46.968041 ], + [ 6.7823843, 46.9681732 ], + [ 6.7828554, 46.9683392 ], + [ 6.7834491, 46.9684819 ], + [ 6.7836227000000004, 46.9685259 ], + [ 6.7837463, 46.9685588 ], + [ 6.7838777, 46.968558 ], + [ 6.7840244, 46.9685176 ], + [ 6.7841886, 46.9684544 ], + [ 6.7843921, 46.9683402 ], + [ 6.7846204, 46.9682089 ], + [ 6.7848412, 46.968151 ], + [ 6.7850879, 46.9681269 ], + [ 6.7855144, 46.9681071 ], + [ 6.7856953, 46.968089 ], + [ 6.7858427, 46.9680598 ], + [ 6.7859573, 46.9680195 ], + [ 6.7860961, 46.9679565 ], + [ 6.7862677, 46.9678878 ], + [ 6.7863572, 46.9678307 ], + [ 6.7864629999999995, 46.9677736 ], + [ 6.7865776, 46.967739 ], + [ 6.78675, 46.9677379 ], + [ 6.7869389, 46.9677422 ], + [ 6.7870468, 46.9677865 ], + [ 6.7871463, 46.9678423 ], + [ 6.7872537, 46.9679262 ], + [ 6.7873942, 46.9679872 ], + [ 6.7875021, 46.9680317 ], + [ 6.7876421, 46.9680702 ], + [ 6.7877898, 46.9680748 ], + [ 6.7880037, 46.9680452 ], + [ 6.7881751999999995, 46.9679932 ], + [ 6.7884943, 46.9678896 ], + [ 6.788706, 46.9677697 ], + [ 6.7889516, 46.967706 ], + [ 6.7892217, 46.9676422 ], + [ 6.7895336, 46.9675949 ], + [ 6.7898947, 46.9675473 ], + [ 6.7903044, 46.9674939 ], + [ 6.7906002999999995, 46.9674749 ], + [ 6.790953, 46.9674443 ], + [ 6.7913144, 46.9674418 ], + [ 6.7916844, 46.9674732 ], + [ 6.7920876, 46.9674761 ], + [ 6.7926386999999995, 46.9675513 ], + [ 6.7930674, 46.967616 ], + [ 6.7936441, 46.9677418 ], + [ 6.7941639, 46.9678849 ], + [ 6.7946257, 46.9680059 ], + [ 6.794923, 46.9680772 ], + [ 6.7951454, 46.9681547 ], + [ 6.7953684, 46.9681926 ], + [ 6.7957635, 46.9682519 ], + [ 6.7961253, 46.9682889 ], + [ 6.7964472, 46.9683657 ], + [ 6.7968107, 46.9685268 ], + [ 6.7967511, 46.968358 ], + [ 6.7969541, 46.96821 ], + [ 6.7971777, 46.9683325 ], + [ 6.79731, 46.9683993 ], + [ 6.7974497, 46.968387 ], + [ 6.7974488, 46.968325 ], + [ 6.7974145, 46.9682407 ], + [ 6.79724, 46.9680669 ], + [ 6.7972297, 46.9679655 ], + [ 6.797131, 46.9679099 ], + [ 6.7969449, 46.9675445 ], + [ 6.797067, 46.9674929 ], + [ 6.797225, 46.9676047 ], + [ 6.797454, 46.9675523 ], + [ 6.7975293, 46.967642 ], + [ 6.7975864, 46.9676079 ], + [ 6.7980982999999995, 46.9677904 ], + [ 6.7983375, 46.9678451 ], + [ 6.7983759, 46.9676532 ], + [ 6.7984389, 46.9674722 ], + [ 6.7984777, 46.967314 ], + [ 6.7985892, 46.9670596 ], + [ 6.7987418, 46.9667934 ], + [ 6.7988371999999995, 46.9665784 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "JBG0012", + "country" : "CHE", + "name" : [ + { + "text" : "Eidgenössisches Jagdbanngebiet Creux-du-Van", + "lang" : "de-CH" + }, + { + "text" : "District franc fédéral Creux-du-Van", + "lang" : "fr-CH" + }, + { + "text" : "Bandita federale di caccia Creux-du-Van", + "lang" : "it-CH" + }, + { + "text" : "Federal Game Reserve Creux-du-Van", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.7928324, 46.1502523 ], + [ 6.7917872, 46.1515489 ], + [ 6.7916283, 46.1518448 ], + [ 6.7915852, 46.1522044 ], + [ 6.7914543, 46.1523296 ], + [ 6.7911924, 46.15258 ], + [ 6.7908664, 46.152785 ], + [ 6.7903395, 46.1535466 ], + [ 6.7903461, 46.1536046 ], + [ 6.7904332, 46.1543748 ], + [ 6.7904305, 46.1545997 ], + [ 6.7902294, 46.1551833 ], + [ 6.7904454, 46.1554552 ], + [ 6.7905738, 46.155617 ], + [ 6.790629, 46.155731 ], + [ 6.7908012, 46.1560861 ], + [ 6.7908233, 46.1564011 ], + [ 6.7912484, 46.156583499999996 ], + [ 6.7910744, 46.1570593 ], + [ 6.7916505, 46.1576023 ], + [ 6.791835, 46.1578012 ], + [ 6.7919445, 46.1579189 ], + [ 6.7917703, 46.1584127 ], + [ 6.791547, 46.1586812 ], + [ 6.7917000000000005, 46.15888 ], + [ 6.792213, 46.1592878 ], + [ 6.7925693, 46.1598116 ], + [ 6.7922561, 46.1611142 ], + [ 6.7917616, 46.1624158 ], + [ 6.7916270999999995, 46.1628378 ], + [ 6.7916891, 46.1630631 ], + [ 6.7922648, 46.1636511 ], + [ 6.7933189, 46.1642869 ], + [ 6.7938966, 46.164695 ], + [ 6.7942139, 46.1652366 ], + [ 6.7946612, 46.1657339 ], + [ 6.794899, 46.1658801 ], + [ 6.7956971, 46.1655176 ], + [ 6.7963284999999996, 46.1650867 ], + [ 6.7966688, 46.1647729 ], + [ 6.7971936, 46.1643954 ], + [ 6.7976568, 46.1640886 ], + [ 6.7982298, 46.1638085 ], + [ 6.7986995, 46.1635053 ], + [ 6.7989026, 46.1632968 ], + [ 6.7990817, 46.1632025 ], + [ 6.7991527, 46.1630832 ], + [ 6.799632, 46.1628547 ], + [ 6.8000755, 46.1626423 ], + [ 6.8004573, 46.1624448 ], + [ 6.8005767, 46.1624067 ], + [ 6.8009267, 46.1623665 ], + [ 6.8012242, 46.1623178 ], + [ 6.8014981, 46.1622168 ], + [ 6.801801, 46.1620529 ], + [ 6.8020818, 46.1619187 ], + [ 6.8024151, 46.1617848 ], + [ 6.802874, 46.1617064 ], + [ 6.8033271, 46.1616351 ], + [ 6.8036187, 46.1616062 ], + [ 6.8039587, 46.1615281 ], + [ 6.8042267, 46.1613713 ], + [ 6.8044433, 46.1612546 ], + [ 6.8046157, 46.161046 ], + [ 6.8047503, 46.1608839 ], + [ 6.8048256, 46.1608061 ], + [ 6.8049879, 46.1607656 ], + [ 6.8052041, 46.1607551 ], + [ 6.8054632999999995, 46.1607323 ], + [ 6.8056404, 46.1607333 ], + [ 6.8062656, 46.1605497 ], + [ 6.8064503, 46.1604644 ], + [ 6.8065727, 46.1603751 ], + [ 6.8066059, 46.160235 ], + [ 6.8066616, 46.1601049 ], + [ 6.8067581, 46.1600154 ], + [ 6.8069523, 46.1599482 ], + [ 6.8070649, 46.1599326 ], + [ 6.807205, 46.1599262 ], + [ 6.8073723, 46.1598696 ], + [ 6.8074858, 46.1597802 ], + [ 6.8077764, 46.1597648 ], + [ 6.808352, 46.1598157 ], + [ 6.8086272, 46.1598001 ], + [ 6.8088534, 46.1597672 ], + [ 6.8091022, 46.1597263 ], + [ 6.8091511, 46.1596258 ], + [ 6.8091126, 46.1595311 ], + [ 6.8089737, 46.1595016 ], + [ 6.8087961, 46.1594673 ], + [ 6.8086444, 46.1594331 ], + [ 6.8084733, 46.1593999 ], + [ 6.8083597000000005, 46.1593614 ], + [ 6.808209, 46.1593048 ], + [ 6.8082071, 46.1591851 ], + [ 6.808182, 46.1591175 ], + [ 6.8081667, 46.1590455 ], + [ 6.8082322, 46.1589784 ], + [ 6.80841, 46.1589272 ], + [ 6.8085652, 46.1589388 ], + [ 6.808662, 46.158961 ], + [ 6.8087056, 46.1589712 ], + [ 6.8087589, 46.158984 ], + [ 6.8088944, 46.1590136 ], + [ 6.8090239, 46.1590134 ], + [ 6.8091209, 46.1590184 ], + [ 6.8092658, 46.1590183 ], + [ 6.8095093, 46.1590188 ], + [ 6.8096377, 46.1589746 ], + [ 6.8096964, 46.1588615 ], + [ 6.8097347, 46.1587673 ], + [ 6.8098897, 46.1586548 ], + [ 6.8101498, 46.1585591 ], + [ 6.8103283, 46.1585097 ], + [ 6.8105711, 46.1584355 ], + [ 6.8107379, 46.1583573 ], + [ 6.8107709, 46.1582972 ], + [ 6.8107329, 46.1582295 ], + [ 6.8106093, 46.1581389 ], + [ 6.8104806, 46.158076 ], + [ 6.8103499, 46.1580421 ], + [ 6.8101823, 46.1579808 ], + [ 6.8101026000000005, 46.1579516 ], + [ 6.8100114, 46.1579961 ], + [ 6.8098339, 46.1580257 ], + [ 6.8100068, 46.1577667 ], + [ 6.8101675, 46.1575804 ], + [ 6.8103698, 46.1573737 ], + [ 6.8105472, 46.1572101 ], + [ 6.8106608, 46.1570417 ], + [ 6.8107255, 46.1569071 ], + [ 6.8108162, 46.1568284 ], + [ 6.8109141, 46.1567606 ], + [ 6.8110169, 46.156682 ], + [ 6.8112202, 46.1566606 ], + [ 6.8113988, 46.1566832 ], + [ 6.8116248, 46.1566611 ], + [ 6.8117286, 46.1566383 ], + [ 6.8118262, 46.1565939 ], + [ 6.8119329, 46.1565333 ], + [ 6.8119708, 46.1564768 ], + [ 6.8119974, 46.156414 ], + [ 6.8120046, 46.1562791 ], + [ 6.8120147, 46.1561739 ], + [ 6.8121267, 46.1560729 ], + [ 6.8121501, 46.1560091 ], + [ 6.812371, 46.1559312 ], + [ 6.8125231, 46.1558637 ], + [ 6.8125956, 46.1558263 ], + [ 6.8126513, 46.1557627 ], + [ 6.8126936, 46.155673 ], + [ 6.81283, 46.1556288 ], + [ 6.8129279, 46.155561 ], + [ 6.8130071999999995, 46.1554895 ], + [ 6.8131695, 46.155449 ], + [ 6.8132187, 46.155388 ], + [ 6.8132196, 46.1553098 ], + [ 6.8131465, 46.1551906 ], + [ 6.8130501, 46.1551344 ], + [ 6.8131152, 46.1550285 ], + [ 6.8133656, 46.1549993 ], + [ 6.8136396, 46.1550224 ], + [ 6.8138505, 46.1550407 ], + [ 6.814125, 46.1550234 ], + [ 6.8144735999999995, 46.1549632 ], + [ 6.8147, 46.1549006 ], + [ 6.8148453, 46.1548627 ], + [ 6.8149106, 46.1548064 ], + [ 6.8149334, 46.1547274 ], + [ 6.8149263, 46.1546374 ], + [ 6.8149660999999995, 46.1545594 ], + [ 6.8150077, 46.1544579 ], + [ 6.8148628, 46.1542484 ], + [ 6.8146439999999995, 46.1540007 ], + [ 6.814499, 46.1538047 ], + [ 6.8143864, 46.1536808 ], + [ 6.8142575999999995, 46.1536244 ], + [ 6.8140795, 46.1535613 ], + [ 6.813814, 46.153433 ], + [ 6.8135946, 46.1533697 ], + [ 6.8133786, 46.1533019 ], + [ 6.8132235, 46.1532785 ], + [ 6.8130301, 46.1532109 ], + [ 6.8129001, 46.1531211 ], + [ 6.8127716, 46.1530376 ], + [ 6.812667, 46.1529921 ], + [ 6.8124965, 46.1529695 ], + [ 6.8123186, 46.1528948 ], + [ 6.8121834, 46.1528338 ], + [ 6.8120384, 46.1527781 ], + [ 6.8119247, 46.1527478 ], + [ 6.8116900000000005, 46.1526808 ], + [ 6.81157, 46.1526351 ], + [ 6.8113337, 46.1525745 ], + [ 6.8111181, 46.15254 ], + [ 6.8108659, 46.152517 ], + [ 6.810698, 46.1524827 ], + [ 6.8106079, 46.1524427 ], + [ 6.8105837000000005, 46.1523634 ], + [ 6.8106237, 46.1522628 ], + [ 6.810667, 46.1521569 ], + [ 6.8106404, 46.1520785 ], + [ 6.8105595999999995, 46.1520043 ], + [ 6.8103332, 46.1519203 ], + [ 6.810085, 46.1517669 ], + [ 6.8098925999999995, 46.1516155 ], + [ 6.8097626, 46.1515194 ], + [ 6.8095909, 46.151469 ], + [ 6.8094073999999996, 46.1513834 ], + [ 6.8092455, 46.1512593 ], + [ 6.8091072, 46.1511128 ], + [ 6.8090361999999995, 46.1510233 ], + [ 6.8089728, 46.1509105 ], + [ 6.8089246, 46.1508095 ], + [ 6.8089071, 46.1507194 ], + [ 6.8089794999999995, 46.1506137 ], + [ 6.8090442, 46.1505466 ], + [ 6.8091086, 46.1504273 ], + [ 6.8092058, 46.1503487 ], + [ 6.8093123, 46.150378 ], + [ 6.8095063, 46.1503899 ], + [ 6.8096589, 46.1503449 ], + [ 6.8097565, 46.1503005 ], + [ 6.8099011, 46.1503831 ], + [ 6.8100788, 46.1504849 ], + [ 6.8102815, 46.1505076 ], + [ 6.8104758, 46.1505033 ], + [ 6.810848, 46.1504973 ], + [ 6.8111939, 46.1504533 ], + [ 6.8114365, 46.1503926 ], + [ 6.8116558, 46.1503146 ], + [ 6.8118025, 46.1502183 ], + [ 6.8120275, 46.1500721 ], + [ 6.8123427, 46.1499605 ], + [ 6.8126655, 46.1498822 ], + [ 6.812934, 46.1498216 ], + [ 6.8132638, 46.1497704 ], + [ 6.8133444, 46.1497996 ], + [ 6.8135316, 46.1498447 ], + [ 6.8136998, 46.1498457 ], + [ 6.8138938, 46.1497892 ], + [ 6.8140069, 46.1497332 ], + [ 6.8142119, 46.1497046 ], + [ 6.8145348, 46.1496263 ], + [ 6.8147835, 46.1495252 ], + [ 6.8149141, 46.1494197 ], + [ 6.8149615, 46.149312 ], + [ 6.8149618, 46.1492113 ], + [ 6.8149626, 46.1491393 ], + [ 6.8149945, 46.1490423 ], + [ 6.8152142, 46.1489977 ], + [ 6.8154634, 46.1489262 ], + [ 6.8156416, 46.14883 ], + [ 6.8157382, 46.1487352 ], + [ 6.8157818, 46.1486005 ], + [ 6.8157812, 46.1485106 ], + [ 6.815765, 46.148443 ], + [ 6.8157976, 46.1483469 ], + [ 6.8159108, 46.1482855 ], + [ 6.8160563, 46.1482188 ], + [ 6.8161117, 46.1481174 ], + [ 6.8161119, 46.148032 ], + [ 6.8160484, 46.1479264 ], + [ 6.8159447, 46.1477954 ], + [ 6.8158214, 46.1476832 ], + [ 6.815661, 46.1475662 ], + [ 6.8155425, 46.1474531 ], + [ 6.8154445, 46.1473968 ], + [ 6.8155574, 46.1473569 ], + [ 6.8156871, 46.1472623 ], + [ 6.8157847, 46.1472178 ], + [ 6.8159149, 46.1471502 ], + [ 6.8160022, 46.1470832 ], + [ 6.8161949, 46.1470654 ], + [ 6.81643, 46.1470946 ], + [ 6.8167859, 46.1471001 ], + [ 6.816971, 46.1471065 ], + [ 6.8171482999999995, 46.1471004 ], + [ 6.8172939, 46.1470957 ], + [ 6.8173908, 46.147108 ], + [ 6.8176002, 46.147191 ], + [ 6.8179073, 46.1472881 ], + [ 6.818111, 46.1473782 ], + [ 6.8183378999999995, 46.1474803 ], + [ 6.8185854, 46.1476265 ], + [ 6.818772, 46.147721 ], + [ 6.8188868, 46.1477954 ], + [ 6.8190474, 46.1479016 ], + [ 6.8191024, 46.1479693 ], + [ 6.8191922, 46.1480481 ], + [ 6.8193276, 46.1480929 ], + [ 6.8194669, 46.1480712 ], + [ 6.8196288, 46.1479929 ], + [ 6.8197334, 46.1478982 ], + [ 6.8198391, 46.1477863 ], + [ 6.8199846, 46.1476449 ], + [ 6.8200658, 46.1475545 ], + [ 6.8201862, 46.1474202 ], + [ 6.8202665, 46.1473299 ], + [ 6.8202995, 46.1472697 ], + [ 6.8203481, 46.1471954 ], + [ 6.8203901, 46.1470562 ], + [ 6.8205593, 46.1469779 ], + [ 6.8206714, 46.1470046 ], + [ 6.8208343, 46.1470496 ], + [ 6.8210703, 46.1470005 ], + [ 6.8211725, 46.1469786 ], + [ 6.8212376, 46.1469385 ], + [ 6.8212317, 46.1468215 ], + [ 6.8211835, 46.1467195 ], + [ 6.8211404, 46.1465961 ], + [ 6.8211414999999995, 46.1464278 ], + [ 6.8211037999999995, 46.146326 ], + [ 6.8209897, 46.1461841 ], + [ 6.820926, 46.146101 ], + [ 6.8208946, 46.1459479 ], + [ 6.8209102999999995, 46.1457753 ], + [ 6.8209438, 46.1455991 ], + [ 6.8209499000000005, 46.1454147 ], + [ 6.8209824, 46.145262 ], + [ 6.821047, 46.1451337 ], + [ 6.8210649, 46.1449809 ], + [ 6.8210416, 46.1448189 ], + [ 6.820968, 46.1446772 ], + [ 6.8208492, 46.1445983 ], + [ 6.8207035, 46.1445372 ], + [ 6.8205256, 46.1444633 ], + [ 6.8203553, 46.1444292 ], + [ 6.8202413, 46.1444249 ], + [ 6.820169, 46.1443795 ], + [ 6.8201279, 46.1442938 ], + [ 6.8200803, 46.1441434 ], + [ 6.8200736, 46.1440129 ], + [ 6.8201064, 46.1439069 ], + [ 6.8201555, 46.143783 ], + [ 6.8202205, 46.1436197 ], + [ 6.8203337, 46.1435475 ], + [ 6.8205284, 46.1434288 ], + [ 6.8206402, 46.1433386 ], + [ 6.8207059, 46.1432553 ], + [ 6.8207232, 46.1431591 ], + [ 6.8207604, 46.1430127 ], + [ 6.8209875, 46.1429573 ], + [ 6.8212722, 46.1428896 ], + [ 6.8215953, 46.1427852 ], + [ 6.822039, 46.1426059 ], + [ 6.8227022, 46.1423298 ], + [ 6.82289, 46.142168 ], + [ 6.8229226, 46.1420782 ], + [ 6.8229784, 46.1419364 ], + [ 6.8231489, 46.1418024 ], + [ 6.8233017, 46.1417421 ], + [ 6.8234876, 46.1416117 ], + [ 6.8235926, 46.1414836 ], + [ 6.8237062, 46.141308 ], + [ 6.8237711999999995, 46.1410681 ], + [ 6.8238042, 46.140865 ], + [ 6.8238535, 46.1406566 ], + [ 6.8238539, 46.1403975 ], + [ 6.8237734, 46.1402963 ], + [ 6.8235881, 46.1401612 ], + [ 6.8233697, 46.1400215 ], + [ 6.8231438, 46.1398971 ], + [ 6.8229918, 46.1398224 ], + [ 6.8228681, 46.1397435 ], + [ 6.822685, 46.1396309 ], + [ 6.8225073, 46.1396039 ], + [ 6.8223943, 46.1395862 ], + [ 6.8223374, 46.1394689 ], + [ 6.8222646000000005, 46.1393273 ], + [ 6.8221207, 46.1392483 ], + [ 6.8219427, 46.1391807 ], + [ 6.8218372, 46.1390676 ], + [ 6.8217246, 46.1389393 ], + [ 6.8216202, 46.1388083 ], + [ 6.8215072, 46.1387141 ], + [ 6.8213791, 46.1386018 ], + [ 6.8212979, 46.1384143 ], + [ 6.8212413, 46.1382008 ], + [ 6.8212032, 46.1379199 ], + [ 6.8211759, 46.1377578 ], + [ 6.8212028, 46.1376006 ], + [ 6.8213542, 46.1374431 ], + [ 6.8214947, 46.1373197 ], + [ 6.8214534, 46.1371845 ], + [ 6.8213565, 46.1370274 ], + [ 6.8212544, 46.136829 ], + [ 6.8211727, 46.1366109 ], + [ 6.8211645, 46.1364129 ], + [ 6.8211409, 46.136285 ], + [ 6.8211818, 46.1360307 ], + [ 6.8212296, 46.1358015 ], + [ 6.8212885, 46.1355311 ], + [ 6.8213536, 46.1353515 ], + [ 6.8214252, 46.135172 ], + [ 6.821522, 46.1349854 ], + [ 6.8216134, 46.1348348 ], + [ 6.8216689, 46.1347226 ], + [ 6.8218304, 46.1345319 ], + [ 6.8218636, 46.1344574 ], + [ 6.8219446, 46.1343679 ], + [ 6.8220173, 46.1343116 ], + [ 6.8221051, 46.1342662 ], + [ 6.8223313, 46.134289 ], + [ 6.8225024, 46.1343188 ], + [ 6.8228096, 46.1343304 ], + [ 6.8229942, 46.1343125 ], + [ 6.8231018, 46.1342411 ], + [ 6.8231235, 46.1341108 ], + [ 6.8231336, 46.1340047 ], + [ 6.8231888, 46.1338413 ], + [ 6.8232378, 46.1337282 ], + [ 6.8233937000000005, 46.1336004 ], + [ 6.8236029, 46.1334774 ], + [ 6.8237715, 46.1333695 ], + [ 6.8239982, 46.1332079 ], + [ 6.8242414, 46.1330167 ], + [ 6.8243478, 46.1328257 ], + [ 6.8244851, 46.1326285 ], + [ 6.824592, 46.1325455 ], + [ 6.8246136, 46.1323539 ], + [ 6.8244625, 46.1320545 ], + [ 6.824367, 46.1318407 ], + [ 6.8242595999999995, 46.1316162 ], + [ 6.8242002, 46.1315718 ], + [ 6.8240241, 46.1314889 ], + [ 6.8238564, 46.1314412 ], + [ 6.8236371, 46.1313789 ], + [ 6.8231463, 46.1313042 ], + [ 6.8227323, 46.1313019 ], + [ 6.8216957, 46.1314312 ], + [ 6.8216827, 46.1314307 ], + [ 6.8215979, 46.1314268 ], + [ 6.820105, 46.1313595 ], + [ 6.8194596, 46.131221 ], + [ 6.8188782, 46.1311458 ], + [ 6.8184654, 46.1310356 ], + [ 6.8184566, 46.1310276 ], + [ 6.8184542, 46.1310256 ], + [ 6.8178891, 46.1305107 ], + [ 6.8171192, 46.1299487 ], + [ 6.8166948, 46.1297214 ], + [ 6.8152767999999995, 46.1292638 ], + [ 6.8149272, 46.1292798 ], + [ 6.8146633, 46.1297282 ], + [ 6.8142954, 46.1302209 ], + [ 6.8140346, 46.1303994 ], + [ 6.8138143, 46.1304251 ], + [ 6.8136192, 46.130514 ], + [ 6.8135757, 46.1309186 ], + [ 6.8134412, 46.1313676 ], + [ 6.8128911, 46.1319493 ], + [ 6.8125912, 46.1321455 ], + [ 6.8122678, 46.1321437 ], + [ 6.811361, 46.1322286 ], + [ 6.8111011999999995, 46.1323171 ], + [ 6.8109428, 46.1325861 ], + [ 6.8110678, 46.1329737 ], + [ 6.8110647, 46.1332435 ], + [ 6.8109322, 46.1335126 ], + [ 6.8104731, 46.1340498 ], + [ 6.8098249, 46.1341542 ], + [ 6.8096546, 46.1343331 ], + [ 6.8093261, 46.1347631 ], + [ 6.8090378, 46.1350763 ], + [ 6.8082526, 46.1358366 ], + [ 6.80721, 46.1364784 ], + [ 6.807197, 46.1364774 ], + [ 6.8071712, 46.1364755 ], + [ 6.8069514, 46.136459 ], + [ 6.8061398, 46.1361396 ], + [ 6.8057284, 46.1359124 ], + [ 6.8053418, 46.1357753 ], + [ 6.8051087, 46.1357219 ], + [ 6.8050191, 46.1357015 ], + [ 6.8047854, 46.1357721 ], + [ 6.8042391, 46.1360119 ], + [ 6.8040445, 46.1360558 ], + [ 6.8039415, 46.1360103 ], + [ 6.8038144, 46.1358116 ], + [ 6.8034281, 46.1356475 ], + [ 6.8031699, 46.1356011 ], + [ 6.8025873, 46.1356248 ], + [ 6.8022855, 46.135492 ], + [ 6.8021109, 46.1354152 ], + [ 6.801788, 46.1353684 ], + [ 6.801775, 46.1353693 ], + [ 6.8014642, 46.1353935 ], + [ 6.800038, 46.1356283 ], + [ 6.8000251, 46.1356293 ], + [ 6.7991573, 46.1356953 ], + [ 6.7987031, 46.1358006 ], + [ 6.7980913, 46.136112 ], + [ 6.7977884, 46.1365601 ], + [ 6.7975887, 46.1370357 ], + [ 6.7974535, 46.1375297 ], + [ 6.7973605, 46.1377271 ], + [ 6.7972911, 46.1381315 ], + [ 6.7967922, 46.1387404 ], + [ 6.7963089, 46.1391155 ], + [ 6.7962677, 46.1393222 ], + [ 6.7963284, 46.1396553 ], + [ 6.7964533, 46.1400429 ], + [ 6.7964458, 46.1406725 ], + [ 6.7965072, 46.1409608 ], + [ 6.7962983999999995, 46.142201 ], + [ 6.7958785, 46.1426934 ], + [ 6.7951798, 46.1437689 ], + [ 6.7950211, 46.1440559 ], + [ 6.7949133, 46.1444151 ], + [ 6.7949091, 46.1447749 ], + [ 6.7946414, 46.14552 ], + [ 6.7945712, 46.1459874 ], + [ 6.7947274, 46.1470048 ], + [ 6.7945516999999995, 46.1476335 ], + [ 6.7944588, 46.1478309 ], + [ 6.7941584, 46.1480541 ], + [ 6.7937376, 46.1486184 ], + [ 6.7933445, 46.149021 ], + [ 6.7931715, 46.1494248 ], + [ 6.7931683, 46.1496947 ], + [ 6.7931009, 46.1499192 ], + [ 6.7928324, 46.1502523 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "WZV0008", + "country" : "CHE", + "name" : [ + { + "text" : "Wasser- und Zugvogelreservat Col de Bretolet", + "lang" : "de-CH" + }, + { + "text" : "Réserve d'oiseaux d'eau et de migrateurs Col de Bretolet", + "lang" : "fr-CH" + }, + { + "text" : "Riserva di uccelli acquatici e migratori Col de Bretolet", + "lang" : "it-CH" + }, + { + "text" : "Water Bird and Migratory Bird Reserves Col de Bretolet", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4851874, 47.4001315 ], + [ 7.485444, 47.4001694 ], + [ 7.4855976, 47.4001977 ], + [ 7.4857413, 47.4001955 ], + [ 7.4860181, 47.4001871 ], + [ 7.4863395, 47.4001777 ], + [ 7.4866662, 47.4001701 ], + [ 7.4869527, 47.400168 ], + [ 7.48721, 47.4001565 ], + [ 7.4873819, 47.400186 ], + [ 7.4875982, 47.4002278 ], + [ 7.487866, 47.4002849 ], + [ 7.4882669, 47.4003574 ], + [ 7.4887829, 47.4004398 ], + [ 7.4893392, 47.4005587 ], + [ 7.489815, 47.4006632 ], + [ 7.4899731, 47.4007138 ], + [ 7.490434, 47.4003207 ], + [ 7.4905101, 47.4002563 ], + [ 7.4905956, 47.4001924 ], + [ 7.4907475, 47.4001065 ], + [ 7.4909248, 47.4000144 ], + [ 7.4911121, 47.399921 ], + [ 7.4912576, 47.3998383 ], + [ 7.4913859, 47.3997513 ], + [ 7.4915817, 47.3996442 ], + [ 7.4917477, 47.3995453 ], + [ 7.4919, 47.3994504 ], + [ 7.4919623, 47.3994106 ], + [ 7.4920319, 47.3993719 ], + [ 7.492098, 47.3993434 ], + [ 7.4921322, 47.3993305 ], + [ 7.4921658, 47.3993188 ], + [ 7.4922, 47.399308 ], + [ 7.4922347, 47.399298 ], + [ 7.4922315, 47.3992803 ], + [ 7.491947, 47.3992177 ], + [ 7.4917644, 47.3991684 ], + [ 7.4916797, 47.3991403 ], + [ 7.4915516, 47.3990923 ], + [ 7.4914263, 47.3990343 ], + [ 7.4913238, 47.3989649 ], + [ 7.4912575, 47.3989018 ], + [ 7.4911913, 47.3988169 ], + [ 7.4911322, 47.3987336 ], + [ 7.4892209, 47.398732 ], + [ 7.4888631, 47.3987482 ], + [ 7.4882636, 47.3987929 ], + [ 7.4876048, 47.3988423 ], + [ 7.4870391, 47.398926 ], + [ 7.4866195, 47.3989838 ], + [ 7.4862578, 47.3990664 ], + [ 7.48592, 47.3991337 ], + [ 7.4856635, 47.3992103 ], + [ 7.4854883, 47.3993019 ], + [ 7.4854083, 47.3993483 ], + [ 7.485338, 47.3993887 ], + [ 7.4850553, 47.399545 ], + [ 7.4847473, 47.3997217 ], + [ 7.4847178, 47.3997384 ], + [ 7.4845637, 47.3998256 ], + [ 7.4842775, 47.39992 ], + [ 7.4841328, 47.399994 ], + [ 7.4841277999999996, 47.40001 ], + [ 7.4841249, 47.4000263 ], + [ 7.4841241, 47.4000426 ], + [ 7.4841251, 47.4000571 ], + [ 7.4841277999999996, 47.4000715 ], + [ 7.4841321, 47.4000857 ], + [ 7.4841365, 47.400096 ], + [ 7.4841422, 47.400106 ], + [ 7.4841491, 47.4001156 ], + [ 7.4841572, 47.4001248 ], + [ 7.4841664, 47.4001335 ], + [ 7.4843062, 47.4001329 ], + [ 7.4843942, 47.4001425 ], + [ 7.484569, 47.4001489 ], + [ 7.4848686, 47.4001419 ], + [ 7.4851874, 47.4001315 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns326", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Hüttenboden", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Hüttenboden", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Hüttenboden", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Hüttenboden", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7319396, 47.3733439 ], + [ 7.7319454, 47.3733505 ], + [ 7.731952, 47.3733567 ], + [ 7.7319594, 47.3733624 ], + [ 7.7319675, 47.3733677 ], + [ 7.7319762, 47.3733726 ], + [ 7.7319855, 47.3733768 ], + [ 7.7319953, 47.3733806 ], + [ 7.7320056, 47.3733837 ], + [ 7.7320162, 47.3733862 ], + [ 7.7320271, 47.373388 ], + [ 7.7320382, 47.3733892 ], + [ 7.7320495000000005, 47.3733898 ], + [ 7.7320607, 47.3733896 ], + [ 7.7320719, 47.3733889 ], + [ 7.7320829, 47.3733874 ], + [ 7.7321614, 47.3733718 ], + [ 7.7322372999999995, 47.3733511 ], + [ 7.7323097, 47.3733253 ], + [ 7.7323606, 47.3733059 ], + [ 7.7324127, 47.373288 ], + [ 7.7324658, 47.3732716 ], + [ 7.7325283, 47.3732555 ], + [ 7.7325925, 47.3732432 ], + [ 7.7326581, 47.3732348 ], + [ 7.7327246, 47.3732302 ], + [ 7.733212, 47.3732114 ], + [ 7.733289, 47.3732105 ], + [ 7.7333658, 47.3732139 ], + [ 7.733442, 47.3732214 ], + [ 7.7335171, 47.3732332 ], + [ 7.7335905, 47.3732489 ], + [ 7.7336618, 47.3732687 ], + [ 7.7336934, 47.3732797 ], + [ 7.7337236, 47.3732925 ], + [ 7.7337519, 47.3733071 ], + [ 7.7337782, 47.3733233 ], + [ 7.7338023, 47.3733411 ], + [ 7.733824, 47.3733602 ], + [ 7.7338432, 47.3733806 ], + [ 7.7338523, 47.3733925 ], + [ 7.7338598, 47.3734049 ], + [ 7.7338657, 47.3734177 ], + [ 7.7338698, 47.3734305 ], + [ 7.7338723, 47.3734434 ], + [ 7.7338731, 47.3734564 ], + [ 7.7338723, 47.3734694 ], + [ 7.7338713, 47.373476 ], + [ 7.7338698, 47.3734826 ], + [ 7.7338679, 47.3734891 ], + [ 7.7338631, 47.3735014 ], + [ 7.7338568, 47.3735133 ], + [ 7.7338491, 47.3735249 ], + [ 7.73384, 47.373536 ], + [ 7.7338295, 47.3735465 ], + [ 7.7338178, 47.3735564 ], + [ 7.7338049, 47.3735655 ], + [ 7.7337909, 47.373574 ], + [ 7.7335753, 47.3736932 ], + [ 7.7333598, 47.3738125 ], + [ 7.7331444, 47.3739318 ], + [ 7.733105, 47.3739556 ], + [ 7.7330686, 47.3739815 ], + [ 7.7330354, 47.3740093 ], + [ 7.7330057, 47.374039 ], + [ 7.7329798, 47.3740701 ], + [ 7.7329577, 47.3741026 ], + [ 7.7329396, 47.3741363 ], + [ 7.7329256, 47.3741708 ], + [ 7.7329226, 47.3741799 ], + [ 7.7329305, 47.3741851 ], + [ 7.7333204, 47.3742594 ], + [ 7.7335361, 47.3742525 ], + [ 7.7341752, 47.3746006 ], + [ 7.7348945, 47.3743621 ], + [ 7.7356274, 47.3746302 ], + [ 7.7360935, 47.3748675 ], + [ 7.7372377, 47.3749948 ], + [ 7.7381359, 47.3749116 ], + [ 7.7386738, 47.3750418 ], + [ 7.7387022, 47.3750647 ], + [ 7.7387269, 47.3750375 ], + [ 7.7387526, 47.3750107 ], + [ 7.7387793, 47.3749843 ], + [ 7.7387836, 47.3749801 ], + [ 7.738788, 47.374976 ], + [ 7.7387923, 47.3749718 ], + [ 7.7388362, 47.3749321 ], + [ 7.7388822, 47.3748935 ], + [ 7.7389302, 47.374856 ], + [ 7.7389451000000005, 47.3748458 ], + [ 7.7389612, 47.3748364 ], + [ 7.7389784, 47.374828 ], + [ 7.7389966, 47.3748207 ], + [ 7.7390156999999995, 47.3748144 ], + [ 7.7390355, 47.3748092 ], + [ 7.7390558, 47.3748051 ], + [ 7.7390766, 47.3748023 ], + [ 7.7390977, 47.3748007 ], + [ 7.7391189, 47.3748003 ], + [ 7.73914, 47.3748011 ], + [ 7.739161, 47.3748031 ], + [ 7.7391817, 47.3748063 ], + [ 7.7392018, 47.3748107 ], + [ 7.7392176, 47.374814 ], + [ 7.7392336, 47.3748164 ], + [ 7.73925, 47.3748178 ], + [ 7.7392664, 47.3748184 ], + [ 7.7392828, 47.3748179 ], + [ 7.7392992, 47.3748166 ], + [ 7.7393153, 47.3748143 ], + [ 7.739331, 47.3748111 ], + [ 7.7393615, 47.374803 ], + [ 7.7393906, 47.3747929 ], + [ 7.7394184, 47.3747811 ], + [ 7.7394444, 47.3747676 ], + [ 7.7394684, 47.3747526 ], + [ 7.7394904, 47.3747361 ], + [ 7.73951, 47.3747183 ], + [ 7.7395271999999995, 47.3746994 ], + [ 7.7395417, 47.3746795 ], + [ 7.7395841999999995, 47.374608 ], + [ 7.7396203, 47.3745349 ], + [ 7.7396498, 47.3744605 ], + [ 7.739672, 47.3744022 ], + [ 7.7396875, 47.3743429 ], + [ 7.7396962, 47.374283 ], + [ 7.739698, 47.3742228 ], + [ 7.7396991, 47.3741974 ], + [ 7.7397035, 47.3741722 ], + [ 7.7397114, 47.3741474 ], + [ 7.7397226, 47.3741232 ], + [ 7.7397369, 47.3740998 ], + [ 7.7396815, 47.3740673 ], + [ 7.7394885, 47.373939 ], + [ 7.7393753, 47.3738541 ], + [ 7.7392456, 47.3737231 ], + [ 7.7391404, 47.373576 ], + [ 7.7389775, 47.3733043 ], + [ 7.7388663, 47.3731245 ], + [ 7.7387501, 47.3729494 ], + [ 7.7386045, 47.3727452 ], + [ 7.7384688, 47.3725848 ], + [ 7.7383029, 47.3724214 ], + [ 7.7381184, 47.3722513 ], + [ 7.7379892, 47.3721338 ], + [ 7.7379012, 47.372051 ], + [ 7.7378107, 47.3719457 ], + [ 7.7377133, 47.3718291 ], + [ 7.7374469999999995, 47.371461 ], + [ 7.737152, 47.371091 ], + [ 7.7371357, 47.3710717 ], + [ 7.7370592, 47.3711095 ], + [ 7.7367565, 47.3709255 ], + [ 7.7363307, 47.3708238 ], + [ 7.7358926, 47.3706715 ], + [ 7.7355146999999995, 47.3707699 ], + [ 7.7350117, 47.3707811 ], + [ 7.7346257, 47.3707118 ], + [ 7.7339001, 47.3707194 ], + [ 7.7340839, 47.3718841 ], + [ 7.7341252, 47.3718884 ], + [ 7.7341659, 47.371895 ], + [ 7.7342056, 47.3719038 ], + [ 7.7342441, 47.3719149 ], + [ 7.7342702, 47.3719226 ], + [ 7.7342953, 47.3719319 ], + [ 7.734319, 47.3719426 ], + [ 7.7343412, 47.3719546 ], + [ 7.7343619, 47.371968 ], + [ 7.7343807, 47.3719825 ], + [ 7.7343976, 47.3719981 ], + [ 7.7344114, 47.3720094 ], + [ 7.7344238, 47.3720214 ], + [ 7.7344345, 47.3720341 ], + [ 7.7344436, 47.3720475 ], + [ 7.7344508, 47.3720613 ], + [ 7.7344563, 47.3720755 ], + [ 7.7344599, 47.3720899 ], + [ 7.7344617, 47.3721045 ], + [ 7.7344615, 47.3721192 ], + [ 7.7344595, 47.3721338 ], + [ 7.7344556, 47.3721482 ], + [ 7.7344487, 47.3721662 ], + [ 7.7344397, 47.3721837 ], + [ 7.7344285, 47.3722006 ], + [ 7.7344154, 47.3722169 ], + [ 7.7344003, 47.3722323 ], + [ 7.7343834000000005, 47.3722469 ], + [ 7.7343648, 47.3722604 ], + [ 7.7343446, 47.3722729 ], + [ 7.7343229000000004, 47.3722842 ], + [ 7.7342951, 47.3722985 ], + [ 7.7342656, 47.3723111 ], + [ 7.7342345, 47.3723218 ], + [ 7.7342022, 47.3723306 ], + [ 7.7341688, 47.3723374 ], + [ 7.7341347, 47.3723422 ], + [ 7.7341001, 47.3723449 ], + [ 7.7340652, 47.3723455 ], + [ 7.7339401, 47.372351 ], + [ 7.7338148, 47.3723548 ], + [ 7.7336894, 47.372357 ], + [ 7.7335377, 47.3723678 ], + [ 7.7333881, 47.3723877 ], + [ 7.7332415, 47.3724163 ], + [ 7.7331154, 47.3724513 ], + [ 7.7329938, 47.3724931 ], + [ 7.7328776, 47.3725414 ], + [ 7.7327854, 47.3725898 ], + [ 7.7326986, 47.3726426 ], + [ 7.7326177, 47.3726995 ], + [ 7.7324686, 47.3728299 ], + [ 7.7323074, 47.3729535 ], + [ 7.7321347, 47.3730697 ], + [ 7.7320842, 47.3731045 ], + [ 7.7320384, 47.3731423 ], + [ 7.7319977, 47.3731827 ], + [ 7.7319625, 47.3732254 ], + [ 7.7319331, 47.3732701 ], + [ 7.7319294, 47.3732773 ], + [ 7.7319267, 47.3732847 ], + [ 7.7319249, 47.3732922 ], + [ 7.7319241, 47.3732998 ], + [ 7.7319243, 47.3733075 ], + [ 7.7319255, 47.3733151 ], + [ 7.7319276, 47.3733226 ], + [ 7.7319306999999995, 47.3733299 ], + [ 7.7319347, 47.3733371 ], + [ 7.7319396, 47.3733439 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns081", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Dürrenberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Dürrenberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Dürrenberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Dürrenberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7385026, 47.4215385 ], + [ 7.7385765, 47.4219483 ], + [ 7.7387078, 47.4222676 ], + [ 7.7390381999999995, 47.4224713 ], + [ 7.739275, 47.4226527 ], + [ 7.7394675, 47.4228553 ], + [ 7.7395023, 47.422892 ], + [ 7.7395274, 47.423036 ], + [ 7.7395629, 47.4232628 ], + [ 7.7395932, 47.4234744 ], + [ 7.7397329, 47.4236902 ], + [ 7.7398404, 47.4238564 ], + [ 7.7399867, 47.4240824 ], + [ 7.7402359, 47.4244596 ], + [ 7.7405633, 47.4247834 ], + [ 7.7405709, 47.4247891 ], + [ 7.7405881999999995, 47.4247769 ], + [ 7.7408041, 47.4246231 ], + [ 7.7410578999999995, 47.4244559 ], + [ 7.7412934, 47.4243085 ], + [ 7.7410641, 47.4240079 ], + [ 7.740996, 47.4238151 ], + [ 7.7410568, 47.423653 ], + [ 7.7411727, 47.423381 ], + [ 7.7412714, 47.4232162 ], + [ 7.7414586, 47.423268 ], + [ 7.7416515, 47.4233224 ], + [ 7.7420085, 47.4231075 ], + [ 7.7424288, 47.423256 ], + [ 7.7426577, 47.4232499 ], + [ 7.7429996, 47.4231452 ], + [ 7.7431618, 47.4234065 ], + [ 7.7432616, 47.4235669 ], + [ 7.7433742, 47.4237478 ], + [ 7.7438579, 47.4235221 ], + [ 7.744059, 47.4236258 ], + [ 7.7442237, 47.4234916 ], + [ 7.7444427000000005, 47.4233104 ], + [ 7.7446879, 47.4231013 ], + [ 7.7443825, 47.4231112 ], + [ 7.7440236, 47.4230484 ], + [ 7.7438846, 47.4230192 ], + [ 7.7439549, 47.4229159 ], + [ 7.7440381, 47.422799 ], + [ 7.7441933, 47.4225724 ], + [ 7.7442274, 47.422502 ], + [ 7.7444466, 47.422025 ], + [ 7.7444801, 47.4219441 ], + [ 7.7444685, 47.421865 ], + [ 7.7445273, 47.4217281 ], + [ 7.7446108, 47.4215221 ], + [ 7.7446497, 47.4215309 ], + [ 7.744913, 47.4211003 ], + [ 7.7448729, 47.4210887 ], + [ 7.74435, 47.4209378 ], + [ 7.7436778, 47.4207594 ], + [ 7.7431616, 47.4206189 ], + [ 7.7424891, 47.4204388 ], + [ 7.7424849, 47.4204667 ], + [ 7.7421284, 47.4204139 ], + [ 7.7420691, 47.4202506 ], + [ 7.7418808, 47.4200394 ], + [ 7.7417724, 47.4198664 ], + [ 7.741238, 47.4195602 ], + [ 7.7408044, 47.4193339 ], + [ 7.7408003, 47.419209 ], + [ 7.7407961, 47.4190039 ], + [ 7.7407834, 47.4188907 ], + [ 7.7408301999999996, 47.4187564 ], + [ 7.7409089, 47.4185774 ], + [ 7.7410252, 47.4184684 ], + [ 7.7412928, 47.418101 ], + [ 7.7410213, 47.4179194 ], + [ 7.7407632, 47.4177486 ], + [ 7.7403257, 47.417978 ], + [ 7.7397879, 47.4182659 ], + [ 7.7394244, 47.4184712 ], + [ 7.7390697, 47.4186705 ], + [ 7.7392281, 47.4187426 ], + [ 7.7390783, 47.419377 ], + [ 7.7389491, 47.4199044 ], + [ 7.7388373, 47.4203696 ], + [ 7.7388145, 47.4209409 ], + [ 7.7386783, 47.4215136 ], + [ 7.7385026, 47.4215385 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns210", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Tannenboden - Allmet", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Tannenboden - Allmet", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Tannenboden - Allmet", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Tannenboden - Allmet", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6763889, 47.3807126 ], + [ 7.6766403, 47.3810694 ], + [ 7.677201, 47.3811744 ], + [ 7.6771465, 47.3814536 ], + [ 7.6770962, 47.3818141 ], + [ 7.6770481, 47.3821983 ], + [ 7.6772291, 47.3821948 ], + [ 7.6775052, 47.3822435 ], + [ 7.6776301, 47.382287 ], + [ 7.6777128, 47.3823687 ], + [ 7.6778298, 47.3822878 ], + [ 7.6779585, 47.3821881 ], + [ 7.6780496, 47.3821745 ], + [ 7.6780641, 47.3821703 ], + [ 7.678079, 47.3821667 ], + [ 7.6780941, 47.3821637 ], + [ 7.6781095, 47.3821613 ], + [ 7.6781251, 47.3821596 ], + [ 7.6781424, 47.3821577 ], + [ 7.6781596, 47.3821551 ], + [ 7.6781766000000005, 47.382152 ], + [ 7.6781933, 47.3821482 ], + [ 7.6782097, 47.3821438 ], + [ 7.6783233, 47.3821284 ], + [ 7.6785672, 47.3821086 ], + [ 7.6786187, 47.3821627 ], + [ 7.6789714, 47.3825371 ], + [ 7.6792721, 47.3827356 ], + [ 7.6795916, 47.3829093 ], + [ 7.679805, 47.3830205 ], + [ 7.6801753999999995, 47.3828039 ], + [ 7.6804967, 47.3825935 ], + [ 7.6808684, 47.3824325 ], + [ 7.6813399, 47.3824616 ], + [ 7.6816941, 47.3824746 ], + [ 7.6815101, 47.3822666 ], + [ 7.681017, 47.3817192 ], + [ 7.6809655, 47.381662 ], + [ 7.6810271, 47.3816713 ], + [ 7.6810995, 47.3816962 ], + [ 7.6811769, 47.3817187 ], + [ 7.6813062, 47.3817242 ], + [ 7.6813825, 47.3816851 ], + [ 7.6814902, 47.3816175 ], + [ 7.6815555, 47.3815299 ], + [ 7.6815768, 47.3815065 ], + [ 7.6816251, 47.3815135 ], + [ 7.6818501999999995, 47.3814584 ], + [ 7.6820601, 47.3813573 ], + [ 7.6823267, 47.3810878 ], + [ 7.6825148, 47.380992 ], + [ 7.6823403, 47.3810002 ], + [ 7.6822052, 47.3810066 ], + [ 7.6818153, 47.3810039 ], + [ 7.6814454, 47.3810025 ], + [ 7.6815574, 47.3805662 ], + [ 7.6815819, 47.3802371 ], + [ 7.6815917, 47.3801388 ], + [ 7.6818328000000005, 47.3801391 ], + [ 7.6823678, 47.3801469 ], + [ 7.6828179, 47.3802047 ], + [ 7.6829548, 47.3802401 ], + [ 7.683124, 47.3802815 ], + [ 7.6831533, 47.3805192 ], + [ 7.6831762, 47.3807928 ], + [ 7.6835388, 47.3807777 ], + [ 7.6841026, 47.3807602 ], + [ 7.684323, 47.3809286 ], + [ 7.6848475, 47.3809444 ], + [ 7.6850466, 47.3810291 ], + [ 7.6852958000000005, 47.3811904 ], + [ 7.6856309, 47.3813376 ], + [ 7.685849, 47.3815106 ], + [ 7.6862037, 47.3816986 ], + [ 7.6865468, 47.3818109 ], + [ 7.6865845, 47.3817955 ], + [ 7.6870261, 47.3818751 ], + [ 7.6876333, 47.3817732 ], + [ 7.6880847, 47.3816842 ], + [ 7.688119, 47.3818539 ], + [ 7.6885795, 47.3818223 ], + [ 7.6891129, 47.3817714 ], + [ 7.6892164, 47.3822061 ], + [ 7.689316, 47.382417 ], + [ 7.68943, 47.3826645 ], + [ 7.6896195, 47.3830523 ], + [ 7.6896276, 47.3832639 ], + [ 7.6891716, 47.3833372 ], + [ 7.6887336, 47.3834077 ], + [ 7.6882257, 47.3834427 ], + [ 7.6879442000000004, 47.3836129 ], + [ 7.6880098, 47.3837358 ], + [ 7.6879681, 47.3837892 ], + [ 7.6880628, 47.3838058 ], + [ 7.6884855, 47.3836955 ], + [ 7.6889445, 47.3836331 ], + [ 7.6892929, 47.3835765 ], + [ 7.6898206, 47.3834806 ], + [ 7.6903315, 47.3833575 ], + [ 7.6911045, 47.3831589 ], + [ 7.6919128, 47.3829442 ], + [ 7.6926733, 47.382738 ], + [ 7.6935295, 47.3824976 ], + [ 7.6936692, 47.3824558 ], + [ 7.6937569, 47.3807214 ], + [ 7.693755, 47.3806848 ], + [ 7.693755, 47.3806805 ], + [ 7.6937555, 47.3806762 ], + [ 7.6937566, 47.380672 ], + [ 7.6937583, 47.3806679 ], + [ 7.6937604, 47.3806639 ], + [ 7.6937631, 47.38066 ], + [ 7.6937662, 47.3806563 ], + [ 7.6937698, 47.3806528 ], + [ 7.6937739, 47.3806495 ], + [ 7.6937783, 47.3806465 ], + [ 7.6937832, 47.3806438 ], + [ 7.6937883, 47.3806413 ], + [ 7.6938889, 47.3806119 ], + [ 7.6939146, 47.3806011 ], + [ 7.6939389, 47.380589 ], + [ 7.6939617, 47.3805756 ], + [ 7.6939828, 47.380561 ], + [ 7.6940021, 47.3805453 ], + [ 7.6940674, 47.3805053 ], + [ 7.6941353, 47.3804666 ], + [ 7.6942034, 47.3804297 ], + [ 7.6944296, 47.3802928 ], + [ 7.6946089, 47.3801811 ], + [ 7.6948033, 47.3800663 ], + [ 7.6951404, 47.3798041 ], + [ 7.6952518, 47.37968 ], + [ 7.6953614, 47.3795397 ], + [ 7.6955652, 47.3793285 ], + [ 7.6957692, 47.37914 ], + [ 7.6959674, 47.3790129 ], + [ 7.6962139, 47.3788915 ], + [ 7.6964628, 47.3787394 ], + [ 7.696594, 47.3786748 ], + [ 7.6968691, 47.378561 ], + [ 7.6969864, 47.3785146 ], + [ 7.6971294, 47.3784465 ], + [ 7.6972857, 47.3783742 ], + [ 7.697431, 47.3783274 ], + [ 7.6975469, 47.3783084 ], + [ 7.6976386, 47.3782896 ], + [ 7.697745, 47.3782689 ], + [ 7.6978071, 47.3782461 ], + [ 7.6978054, 47.3782373 ], + [ 7.6978043, 47.3782317 ], + [ 7.6977381, 47.3779798 ], + [ 7.6976765, 47.3778122 ], + [ 7.697562, 47.3776039 ], + [ 7.6974364, 47.3773907 ], + [ 7.6973281, 47.3771716 ], + [ 7.6972695, 47.3769917 ], + [ 7.6972213, 47.376745 ], + [ 7.6972021, 47.3765254 ], + [ 7.6972218, 47.3762056 ], + [ 7.6972532000000005, 47.3760332 ], + [ 7.6973115, 47.3757141 ], + [ 7.6973755, 47.3754703 ], + [ 7.6974349, 47.3751892 ], + [ 7.6974737, 47.3750343 ], + [ 7.6975238, 47.3748344 ], + [ 7.6974432, 47.3748333 ], + [ 7.6974141, 47.3748877 ], + [ 7.6973627, 47.3749595 ], + [ 7.6973053, 47.3750292 ], + [ 7.6972419, 47.3750965 ], + [ 7.6970636, 47.3752591 ], + [ 7.6970513, 47.3752696 ], + [ 7.6970377, 47.3752793 ], + [ 7.6970231, 47.3752882 ], + [ 7.6970073, 47.3752963 ], + [ 7.6969906, 47.3753035 ], + [ 7.6969518, 47.3753227 ], + [ 7.6969159, 47.3753445 ], + [ 7.6968833, 47.3753685 ], + [ 7.6968734, 47.3753762 ], + [ 7.6968645, 47.3753845 ], + [ 7.6968566, 47.3753933 ], + [ 7.6968498, 47.3754024 ], + [ 7.6968442, 47.375412 ], + [ 7.6968397, 47.3754218 ], + [ 7.6968365, 47.3754318 ], + [ 7.6968311, 47.3754473 ], + [ 7.6968236, 47.3754624 ], + [ 7.6968143, 47.375477 ], + [ 7.6968031, 47.375491 ], + [ 7.6967472, 47.3755708 ], + [ 7.6966814, 47.3756471 ], + [ 7.6966062, 47.3757192 ], + [ 7.6965667, 47.3757541 ], + [ 7.6965259, 47.3757882 ], + [ 7.6964837, 47.3758215 ], + [ 7.6964635, 47.3758387 ], + [ 7.6964456, 47.375857 ], + [ 7.6964302, 47.3758764 ], + [ 7.6964174, 47.3758966 ], + [ 7.6964073, 47.3759175 ], + [ 7.6964, 47.3759389 ], + [ 7.696395, 47.3759567 ], + [ 7.6963878, 47.3759741 ], + [ 7.6963786, 47.375991 ], + [ 7.6963673, 47.3760074 ], + [ 7.6963539999999995, 47.3760231 ], + [ 7.6963389, 47.376038 ], + [ 7.696322, 47.376052 ], + [ 7.6963035, 47.376065 ], + [ 7.6961919, 47.3761351 ], + [ 7.6960738, 47.3762002 ], + [ 7.6959496, 47.3762598 ], + [ 7.6958808, 47.3762918 ], + [ 7.6958078, 47.3763193 ], + [ 7.6957315, 47.376342 ], + [ 7.6956523, 47.3763599 ], + [ 7.6956093, 47.3763721 ], + [ 7.6955671, 47.3763857 ], + [ 7.6955259, 47.3764005 ], + [ 7.6955162999999995, 47.3764069 ], + [ 7.6955075, 47.3764138 ], + [ 7.6954994, 47.3764211 ], + [ 7.6954964, 47.3764241 ], + [ 7.6954881, 47.3764335 ], + [ 7.6954811, 47.3764433 ], + [ 7.6954754, 47.3764536 ], + [ 7.6954711, 47.3764641 ], + [ 7.6954683, 47.3764749 ], + [ 7.6954668999999996, 47.3764858 ], + [ 7.6954668999999996, 47.3764968 ], + [ 7.6954684, 47.3765077 ], + [ 7.6954714, 47.3765184 ], + [ 7.6954758, 47.3765289 ], + [ 7.6954816, 47.3765392 ], + [ 7.6954887, 47.376549 ], + [ 7.6955001, 47.376565 ], + [ 7.6955232, 47.3765971 ], + [ 7.695544, 47.3766256 ], + [ 7.6957162, 47.3768625 ], + [ 7.6957377000000005, 47.3769331 ], + [ 7.6957265, 47.3770074 ], + [ 7.6956915, 47.3770783 ], + [ 7.6956643, 47.3771331 ], + [ 7.6956416, 47.377174 ], + [ 7.6955486, 47.3772903 ], + [ 7.6954602, 47.3774165 ], + [ 7.6953631, 47.3775685 ], + [ 7.6953443, 47.3776057 ], + [ 7.6953389, 47.3776124 ], + [ 7.6953327, 47.3776189 ], + [ 7.6953257, 47.3776249 ], + [ 7.6953179, 47.3776305 ], + [ 7.6953095, 47.3776356 ], + [ 7.6953005, 47.3776402 ], + [ 7.6952909, 47.3776443 ], + [ 7.6952809, 47.3776479 ], + [ 7.6952704, 47.3776508 ], + [ 7.6952596, 47.3776531 ], + [ 7.6952486, 47.3776548 ], + [ 7.6952108, 47.3776617 ], + [ 7.6951722, 47.3776662 ], + [ 7.6951331, 47.3776682 ], + [ 7.694845, 47.3776731 ], + [ 7.694741, 47.3776829 ], + [ 7.6946379, 47.3776963 ], + [ 7.6945359, 47.3777132 ], + [ 7.694465, 47.3777273 ], + [ 7.694396, 47.3777451 ], + [ 7.6943292, 47.3777665 ], + [ 7.694265, 47.3777914 ], + [ 7.6941207, 47.3778458 ], + [ 7.6938908, 47.3779988 ], + [ 7.6938151, 47.3780611 ], + [ 7.6936389, 47.3782572 ], + [ 7.6936333, 47.3782697 ], + [ 7.6936295, 47.3782825 ], + [ 7.6936275, 47.3782956 ], + [ 7.6936273, 47.3783086 ], + [ 7.6936289, 47.3783217 ], + [ 7.6936304, 47.3783337 ], + [ 7.6936302, 47.3783458 ], + [ 7.6936285, 47.3783578 ], + [ 7.6936251, 47.3783696 ], + [ 7.6936202, 47.3783812 ], + [ 7.6936138, 47.3783925 ], + [ 7.6936059, 47.3784033 ], + [ 7.6933494, 47.3787504 ], + [ 7.6931815, 47.3789564 ], + [ 7.693138, 47.3789928 ], + [ 7.6930945, 47.3790175 ], + [ 7.6929734, 47.3790563 ], + [ 7.692446, 47.3792 ], + [ 7.6923758, 47.3792284 ], + [ 7.6923085, 47.3792599 ], + [ 7.6922444, 47.3792943 ], + [ 7.6922147, 47.3793138 ], + [ 7.6921876000000005, 47.379335 ], + [ 7.6921631999999995, 47.3793576 ], + [ 7.6921417, 47.3793816 ], + [ 7.692104, 47.3794162 ], + [ 7.6920621, 47.3794485 ], + [ 7.6920163, 47.3794782 ], + [ 7.691732, 47.3796429 ], + [ 7.6916922, 47.3796607 ], + [ 7.6916503, 47.3796761 ], + [ 7.6916066, 47.379689 ], + [ 7.6914361, 47.3797346 ], + [ 7.6913233, 47.3797933 ], + [ 7.6912746, 47.3798483 ], + [ 7.6912203, 47.3799258 ], + [ 7.6911984, 47.3799462 ], + [ 7.6911738, 47.3799651 ], + [ 7.6911467, 47.3799823 ], + [ 7.6911173, 47.3799977 ], + [ 7.6910141, 47.3800449 ], + [ 7.6909043, 47.3800848 ], + [ 7.6907892, 47.3801169 ], + [ 7.6903844, 47.3802109 ], + [ 7.6903177, 47.3802178 ], + [ 7.6902504, 47.3802206 ], + [ 7.6901829, 47.3802192 ], + [ 7.6900881, 47.3802122 ], + [ 7.6899927, 47.3802109 ], + [ 7.6898975, 47.3802152 ], + [ 7.6898033, 47.3802252 ], + [ 7.6897107, 47.3802407 ], + [ 7.689662, 47.3802525 ], + [ 7.6896148, 47.3802668 ], + [ 7.6895695, 47.3802837 ], + [ 7.6895264, 47.3803031 ], + [ 7.6894857, 47.3803247 ], + [ 7.6894477, 47.3803485 ], + [ 7.6894231, 47.3803654 ], + [ 7.6894009, 47.3803837 ], + [ 7.6893812, 47.3804033 ], + [ 7.6893643, 47.380424 ], + [ 7.6893503, 47.3804458 ], + [ 7.6893393, 47.3804683 ], + [ 7.6893313, 47.3804914 ], + [ 7.6893118, 47.3805463 ], + [ 7.6892987, 47.3806022 ], + [ 7.6892922, 47.3806586 ], + [ 7.6892908, 47.3806866 ], + [ 7.6892857, 47.3807144 ], + [ 7.6892768, 47.3807417 ], + [ 7.6892643, 47.3807684 ], + [ 7.6892483, 47.3807942 ], + [ 7.6892289, 47.3808189 ], + [ 7.6892063, 47.3808423 ], + [ 7.6891451, 47.3808972 ], + [ 7.6890807, 47.3809504 ], + [ 7.6890131, 47.3810017 ], + [ 7.6889992, 47.3810133 ], + [ 7.688984, 47.3810241 ], + [ 7.6889677, 47.3810342 ], + [ 7.6889453, 47.3810458 ], + [ 7.6889214, 47.3810559 ], + [ 7.6888962, 47.3810644 ], + [ 7.6888699, 47.3810712 ], + [ 7.6888338, 47.3810744 ], + [ 7.6887974, 47.3810755 ], + [ 7.6887611, 47.3810743 ], + [ 7.688725, 47.381071 ], + [ 7.6886895, 47.3810655 ], + [ 7.6885811, 47.3810501 ], + [ 7.6884727999999996, 47.3810345 ], + [ 7.6883645, 47.3810188 ], + [ 7.688258, 47.3810026 ], + [ 7.68815, 47.380992 ], + [ 7.6880410999999995, 47.3809869 ], + [ 7.6879784, 47.3809872 ], + [ 7.6879158, 47.38099 ], + [ 7.6878536, 47.3809953 ], + [ 7.6878006, 47.3809989 ], + [ 7.6877474, 47.3809991 ], + [ 7.6876943, 47.380996 ], + [ 7.6876777, 47.3809939 ], + [ 7.6876125, 47.3806837 ], + [ 7.6874500999999995, 47.380712 ], + [ 7.6873263, 47.3806476 ], + [ 7.6873062, 47.3804201 ], + [ 7.6873313, 47.3802013 ], + [ 7.6870857, 47.3798832 ], + [ 7.6867863, 47.3797458 ], + [ 7.6867826, 47.3797698 ], + [ 7.6863705, 47.3796436 ], + [ 7.6861277999999995, 47.3796428 ], + [ 7.6858531, 47.3797138 ], + [ 7.6858088, 47.3797301 ], + [ 7.6857155, 47.3797155 ], + [ 7.6858463, 47.3794862 ], + [ 7.6857872, 47.3793264 ], + [ 7.6860372, 47.3790744 ], + [ 7.6864091, 47.3788082 ], + [ 7.6865988, 47.3785606 ], + [ 7.6861114, 47.378152 ], + [ 7.6857701, 47.3779163 ], + [ 7.6853941, 47.3777899 ], + [ 7.6851272, 47.377714 ], + [ 7.6846985, 47.3776717 ], + [ 7.6841141, 47.3775632 ], + [ 7.6837778, 47.3774965 ], + [ 7.6833579, 47.3776067 ], + [ 7.682944, 47.3777363 ], + [ 7.682785, 47.3779053 ], + [ 7.6825098, 47.3780798 ], + [ 7.6820123, 47.3780263 ], + [ 7.6816301, 47.3780523 ], + [ 7.6815423, 47.3785612 ], + [ 7.68091, 47.3785312 ], + [ 7.6802902, 47.3783814 ], + [ 7.6796912, 47.3781625 ], + [ 7.6794259, 47.3780705 ], + [ 7.6792441, 47.3779675 ], + [ 7.6791229, 47.37788 ], + [ 7.678819, 47.3777316 ], + [ 7.6786449999999995, 47.3776692 ], + [ 7.6783885, 47.3776868 ], + [ 7.6783298, 47.3775942 ], + [ 7.6775354, 47.3772729 ], + [ 7.6775017, 47.3770917 ], + [ 7.6773704, 47.377005 ], + [ 7.6772655, 47.3770508 ], + [ 7.6772704, 47.377349 ], + [ 7.677324, 47.3774589 ], + [ 7.6776307, 47.3776037 ], + [ 7.6778897, 47.377676 ], + [ 7.6781421, 47.3778884 ], + [ 7.6778359, 47.3783669 ], + [ 7.6777691, 47.3786919 ], + [ 7.6772934, 47.3789069 ], + [ 7.6771813, 47.379036 ], + [ 7.6781618, 47.3801781 ], + [ 7.6779962, 47.3802855 ], + [ 7.6775585, 47.380578 ], + [ 7.6773074999999995, 47.3808141 ], + [ 7.6763889, 47.3807126 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns256", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Bürtenflue - Ängiberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Bürtenflue - Ängiberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Bürtenflue - Ängiberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Bürtenflue - Ängiberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5488142, 47.5351864 ], + [ 7.5489109, 47.5352396 ], + [ 7.548929, 47.5352943 ], + [ 7.5489384, 47.5353229 ], + [ 7.5489805, 47.5355005 ], + [ 7.5490978, 47.5356485 ], + [ 7.5491452, 47.5357083 ], + [ 7.5491912, 47.5359321 ], + [ 7.5493781, 47.5360198 ], + [ 7.5494427, 47.536069499999996 ], + [ 7.5495516, 47.5361534 ], + [ 7.5500157, 47.5366128 ], + [ 7.550053, 47.5366481 ], + [ 7.5500456, 47.5366752 ], + [ 7.5500872999999995, 47.536679 ], + [ 7.5500814, 47.536713 ], + [ 7.5503401, 47.5365642 ], + [ 7.5505788, 47.5364136 ], + [ 7.5506429, 47.5362909 ], + [ 7.5509049, 47.53616 ], + [ 7.550946, 47.53614 ], + [ 7.5512147, 47.5360317 ], + [ 7.5513898, 47.5359514 ], + [ 7.5516098, 47.5358508 ], + [ 7.5516723, 47.5358267 ], + [ 7.5517278999999995, 47.5357925 ], + [ 7.5519324999999995, 47.5356434 ], + [ 7.5519393, 47.5356393 ], + [ 7.5520603, 47.5355646 ], + [ 7.5520961, 47.535512 ], + [ 7.5521493, 47.5354339 ], + [ 7.5522678, 47.5353666 ], + [ 7.552404, 47.5353025 ], + [ 7.5524575, 47.5352829 ], + [ 7.5526807, 47.5352395 ], + [ 7.5527705, 47.5352224 ], + [ 7.5527067, 47.5351314 ], + [ 7.5525353, 47.5348909 ], + [ 7.5524234, 47.5347307 ], + [ 7.5522978, 47.5345505 ], + [ 7.5522274, 47.5345733 ], + [ 7.5519415, 47.5346805 ], + [ 7.5517430999999995, 47.5347648 ], + [ 7.5511667, 47.5350136 ], + [ 7.5508423, 47.5351517 ], + [ 7.5507646, 47.5351634 ], + [ 7.5506957, 47.5351319 ], + [ 7.5504552, 47.5348921 ], + [ 7.5504227, 47.5348752 ], + [ 7.5503822, 47.534875 ], + [ 7.5501074, 47.5349329 ], + [ 7.5500571, 47.5349621 ], + [ 7.550027, 47.535001 ], + [ 7.5499944, 47.5349431 ], + [ 7.549883, 47.5349661 ], + [ 7.5491494, 47.5351178 ], + [ 7.5488539, 47.5351783 ], + [ 7.5488142, 47.5351864 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns135", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Herzogenmatt", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Herzogenmatt", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Herzogenmatt", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Herzogenmatt", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.0456277, 46.3516493 ], + [ 8.0456208, 46.3515081 ], + [ 8.0456033, 46.3513673 ], + [ 8.0455751, 46.3512274 ], + [ 8.0455363, 46.3510887 ], + [ 8.0454872, 46.3509515 ], + [ 8.0454277, 46.3508164 ], + [ 8.0453581, 46.350683599999996 ], + [ 8.0452786, 46.3505535 ], + [ 8.0451893, 46.3504264 ], + [ 8.0450906, 46.3503028 ], + [ 8.0449826, 46.3501829 ], + [ 8.0448658, 46.3500671 ], + [ 8.0447403, 46.3499556 ], + [ 8.0446066, 46.3498489 ], + [ 8.044465, 46.3497472 ], + [ 8.0443159, 46.3496507 ], + [ 8.0441598, 46.3495598 ], + [ 8.043997, 46.3494746 ], + [ 8.0438279, 46.3493955 ], + [ 8.0436531, 46.3493226 ], + [ 8.0434731, 46.3492562 ], + [ 8.0432883, 46.3491963 ], + [ 8.0430992, 46.3491433 ], + [ 8.0429063, 46.3490971 ], + [ 8.0427103, 46.349058 ], + [ 8.0425115, 46.3490261 ], + [ 8.0423106, 46.3490014 ], + [ 8.0421081, 46.3489841 ], + [ 8.0419046, 46.3489741 ], + [ 8.0417006, 46.3489715 ], + [ 8.0414967, 46.3489762 ], + [ 8.0412934, 46.3489884 ], + [ 8.0410913, 46.3490079 ], + [ 8.040891, 46.3490347 ], + [ 8.040693, 46.3490688 ], + [ 8.0404978, 46.3491099 ], + [ 8.040306, 46.3491581 ], + [ 8.0401181, 46.3492132 ], + [ 8.0399346, 46.349275 ], + [ 8.0397561, 46.3493434 ], + [ 8.0395829, 46.3494181 ], + [ 8.0394157, 46.349499 ], + [ 8.0392548, 46.3495859 ], + [ 8.0391006, 46.3496785 ], + [ 8.0389537, 46.3497765 ], + [ 8.0388144, 46.3498797 ], + [ 8.0386831, 46.3499878 ], + [ 8.0385601, 46.3501006 ], + [ 8.0384458, 46.3502176 ], + [ 8.0383406, 46.3503387 ], + [ 8.0382446, 46.3504633 ], + [ 8.0381581, 46.3505913 ], + [ 8.0380815, 46.3507223 ], + [ 8.0380149, 46.3508558 ], + [ 8.0379584, 46.3509916 ], + [ 8.0379123, 46.3511292 ], + [ 8.0378766, 46.3512683 ], + [ 8.0378516, 46.3514085 ], + [ 8.0378371, 46.3515495 ], + [ 8.0378333, 46.3516907 ], + [ 8.0378402, 46.3518319 ], + [ 8.0378578, 46.3519727 ], + [ 8.037886, 46.3521126 ], + [ 8.0379247, 46.3522514 ], + [ 8.0379738, 46.3523885 ], + [ 8.0380333, 46.3525236 ], + [ 8.0381028, 46.3526565 ], + [ 8.0381824, 46.3527866 ], + [ 8.0382716, 46.3529136 ], + [ 8.0383703, 46.3530373 ], + [ 8.0384783, 46.3531572 ], + [ 8.0385951, 46.353273 ], + [ 8.0387206, 46.3533844 ], + [ 8.0388543, 46.3534912 ], + [ 8.0389959, 46.3535929 ], + [ 8.0391449, 46.3536894 ], + [ 8.0393011, 46.3537803 ], + [ 8.0394639, 46.3538655 ], + [ 8.039633, 46.3539446 ], + [ 8.0398078, 46.3540175 ], + [ 8.0399878, 46.3540839 ], + [ 8.0401727, 46.3541438 ], + [ 8.0403618, 46.3541969 ], + [ 8.0405546, 46.354243 ], + [ 8.0407507, 46.3542821 ], + [ 8.0409495, 46.354314 ], + [ 8.0411504, 46.3543387 ], + [ 8.0413529, 46.3543561 ], + [ 8.0415565, 46.3543661 ], + [ 8.0417605, 46.3543687 ], + [ 8.0419644, 46.3543639 ], + [ 8.0421677, 46.3543517 ], + [ 8.0423698, 46.3543322 ], + [ 8.0425701, 46.3543054 ], + [ 8.0427682, 46.3542714 ], + [ 8.0429634, 46.3542302 ], + [ 8.0431552, 46.354182 ], + [ 8.0433431, 46.3541269 ], + [ 8.0435266, 46.3540651 ], + [ 8.0437051, 46.3539968 ], + [ 8.0438783, 46.353922 ], + [ 8.0440456, 46.3538411 ], + [ 8.0442065, 46.3537542 ], + [ 8.0443606, 46.3536616 ], + [ 8.0445075, 46.3535636 ], + [ 8.0446468, 46.3534604 ], + [ 8.0447782, 46.3533522 ], + [ 8.0449011, 46.3532395 ], + [ 8.0450154, 46.3531224 ], + [ 8.0451207, 46.3530014 ], + [ 8.0452166, 46.3528767 ], + [ 8.0453031, 46.3527487 ], + [ 8.0453797, 46.3526178 ], + [ 8.0454463, 46.3524842 ], + [ 8.0455028, 46.3523484 ], + [ 8.0455488, 46.3522108 ], + [ 8.0455845, 46.3520717 ], + [ 8.0456096, 46.3519315 ], + [ 8.045624, 46.3517905 ], + [ 8.0456277, 46.3516493 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0074", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Mörel", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Mörel", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Mörel", + "lang" : "it-CH" + }, + { + "text" : "Substation Mörel", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.327069, 46.5919984 ], + [ 8.3270613, 46.5918572 ], + [ 8.3270429, 46.5917165 ], + [ 8.3270139, 46.5915767 ], + [ 8.3269742, 46.591438 ], + [ 8.3269242, 46.591301 ], + [ 8.3268637, 46.591166 ], + [ 8.3267931, 46.5910334 ], + [ 8.3267126, 46.5909035 ], + [ 8.3266223, 46.5907767 ], + [ 8.3265224, 46.5906533 ], + [ 8.3264134, 46.5905336 ], + [ 8.3262954, 46.5904181 ], + [ 8.3261688, 46.590307 ], + [ 8.3260339, 46.5902006 ], + [ 8.3258912, 46.5900992 ], + [ 8.325741, 46.5900031 ], + [ 8.3255836, 46.5899126 ], + [ 8.3254196, 46.5898279 ], + [ 8.3252495, 46.5897492 ], + [ 8.3250735, 46.5896767 ], + [ 8.3248923, 46.5896107 ], + [ 8.3247064, 46.5895513 ], + [ 8.3245161, 46.5894987 ], + [ 8.3243222, 46.5894531 ], + [ 8.3241251, 46.5894145 ], + [ 8.323925299999999, 46.589383 ], + [ 8.3237233, 46.5893589 ], + [ 8.3235199, 46.589342 ], + [ 8.3233154, 46.5893325 ], + [ 8.3231105, 46.5893304 ], + [ 8.3229057, 46.5893357 ], + [ 8.3227016, 46.5893484 ], + [ 8.3224987, 46.5893684 ], + [ 8.3222976, 46.5893957 ], + [ 8.3220989, 46.5894302 ], + [ 8.3219031, 46.5894719 ], + [ 8.3217107, 46.5895205 ], + [ 8.3215222, 46.5895761 ], + [ 8.3213383, 46.5896383 ], + [ 8.3211593, 46.5897071 ], + [ 8.3209857, 46.5897823 ], + [ 8.3208182, 46.5898636 ], + [ 8.320657, 46.5899509 ], + [ 8.3205027, 46.5900438 ], + [ 8.3203556, 46.5901422 ], + [ 8.3202162, 46.5902458 ], + [ 8.3200849, 46.5903543 ], + [ 8.3199619, 46.5904673 ], + [ 8.3198478, 46.5905846 ], + [ 8.3197426, 46.5907059 ], + [ 8.3196469, 46.5908309 ], + [ 8.3195607, 46.590959 ], + [ 8.3194844, 46.5910902 ], + [ 8.3194182, 46.5912239 ], + [ 8.3193622, 46.5913598 ], + [ 8.3193166, 46.5914975 ], + [ 8.3192815, 46.5916367 ], + [ 8.319257, 46.591777 ], + [ 8.3192432, 46.591918 ], + [ 8.3192402, 46.5920592 ], + [ 8.3192478, 46.5922004 ], + [ 8.3192662, 46.5923412 ], + [ 8.3192952, 46.592481 ], + [ 8.3193349, 46.5926196 ], + [ 8.3193849, 46.5927566 ], + [ 8.3194453, 46.5928916 ], + [ 8.3195159, 46.5930243 ], + [ 8.3195965, 46.5931542 ], + [ 8.3196868, 46.593281 ], + [ 8.3197866, 46.5934044 ], + [ 8.3198956, 46.5935241 ], + [ 8.3200136, 46.5936396 ], + [ 8.3201402, 46.5937507 ], + [ 8.320275, 46.5938571 ], + [ 8.3204178, 46.5939585 ], + [ 8.320568, 46.5940546 ], + [ 8.3207254, 46.5941451 ], + [ 8.3208894, 46.5942299 ], + [ 8.3210596, 46.5943086 ], + [ 8.3212355, 46.5943811 ], + [ 8.3214167, 46.5944471 ], + [ 8.3216027, 46.5945065 ], + [ 8.3217929, 46.5945591 ], + [ 8.3219869, 46.5946047 ], + [ 8.322184, 46.5946433 ], + [ 8.3223839, 46.5946747 ], + [ 8.3225858, 46.5946989 ], + [ 8.3227893, 46.5947158 ], + [ 8.3229938, 46.5947253 ], + [ 8.3231987, 46.5947274 ], + [ 8.3234035, 46.5947221 ], + [ 8.3236077, 46.5947094 ], + [ 8.3238105, 46.5946894 ], + [ 8.3240116, 46.5946621 ], + [ 8.3242104, 46.5946276 ], + [ 8.3244062, 46.5945859 ], + [ 8.3245986, 46.5945373 ], + [ 8.3247871, 46.5944817 ], + [ 8.3249711, 46.5944195 ], + [ 8.3251501, 46.5943506 ], + [ 8.3253236, 46.5942755 ], + [ 8.3254912, 46.5941941 ], + [ 8.3256524, 46.5941069 ], + [ 8.3258067, 46.5940139 ], + [ 8.3259538, 46.5939155 ], + [ 8.3260932, 46.5938119 ], + [ 8.3262245, 46.5937034 ], + [ 8.3263474, 46.5935904 ], + [ 8.3264616, 46.5934731 ], + [ 8.3265667, 46.5933518 ], + [ 8.3266625, 46.5932268 ], + [ 8.3267486, 46.5930986 ], + [ 8.3268249, 46.5929675 ], + [ 8.3268911, 46.5928338 ], + [ 8.3269471, 46.5926979 ], + [ 8.3269927, 46.5925601 ], + [ 8.3270277, 46.5924209 ], + [ 8.3270522, 46.5922807 ], + [ 8.327066, 46.5921397 ], + [ 8.327069, 46.5919984 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0049", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Grimsel", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Grimsel", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Grimsel", + "lang" : "it-CH" + }, + { + "text" : "Substation Grimsel", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8635269, 47.3939751 ], + [ 7.863526, 47.3940238 ], + [ 7.8639561, 47.3941951 ], + [ 7.8645706, 47.3942755 ], + [ 7.8639927, 47.3944375 ], + [ 7.8636884, 47.3946069 ], + [ 7.863639, 47.394657 ], + [ 7.8639198, 47.3946878 ], + [ 7.8642515, 47.3948407 ], + [ 7.8642968, 47.3947951 ], + [ 7.8644082, 47.3948416 ], + [ 7.8644563, 47.394862 ], + [ 7.8647881, 47.3947841 ], + [ 7.8651282, 47.3949448 ], + [ 7.8655722, 47.3950904 ], + [ 7.8662723, 47.3949517 ], + [ 7.8665715, 47.3949827 ], + [ 7.8667741, 47.3947164 ], + [ 7.8667485, 47.3944505 ], + [ 7.8668688, 47.3940163 ], + [ 7.866871, 47.3938406 ], + [ 7.8666427, 47.3934723 ], + [ 7.8666844, 47.393104 ], + [ 7.8669463, 47.3931839 ], + [ 7.8672073000000005, 47.3932697 ], + [ 7.8674715, 47.3928575 ], + [ 7.8666778, 47.3925615 ], + [ 7.866332, 47.3925334 ], + [ 7.866321, 47.392361 ], + [ 7.8668224, 47.3918877 ], + [ 7.86698, 47.3915771 ], + [ 7.8672059, 47.3914456 ], + [ 7.8672333, 47.3914106 ], + [ 7.8673882, 47.3912122 ], + [ 7.8675633, 47.39109 ], + [ 7.8677489, 47.3910724 ], + [ 7.8679283, 47.3910657 ], + [ 7.8679924, 47.3910727 ], + [ 7.8682333, 47.3910987 ], + [ 7.8683954, 47.3911227 ], + [ 7.8686727, 47.3911636 ], + [ 7.8688253, 47.3904603 ], + [ 7.868392, 47.3903493 ], + [ 7.8681135, 47.3903247 ], + [ 7.8681137, 47.3903427 ], + [ 7.8678384999999995, 47.3903769 ], + [ 7.8676079, 47.3903668 ], + [ 7.8674102999999995, 47.3903725 ], + [ 7.8665371, 47.3908195 ], + [ 7.8663272, 47.3909462 ], + [ 7.8660406, 47.3911064 ], + [ 7.8657496, 47.3912344 ], + [ 7.8652593, 47.3915169 ], + [ 7.8650098, 47.3917077 ], + [ 7.8649924, 47.3917957 ], + [ 7.8648874, 47.3917614 ], + [ 7.8648198, 47.3917392 ], + [ 7.8647972, 47.3917568 ], + [ 7.8647775, 47.3919084 ], + [ 7.8647746, 47.3919303 ], + [ 7.8647697999999995, 47.3919521 ], + [ 7.8647632, 47.3919736 ], + [ 7.8647098, 47.3921322 ], + [ 7.8646721, 47.3921178 ], + [ 7.8646767, 47.3921049 ], + [ 7.8646172, 47.3920319 ], + [ 7.864529, 47.3919933 ], + [ 7.8643377999999995, 47.3919852 ], + [ 7.8642841, 47.3920162 ], + [ 7.8642641, 47.3920361 ], + [ 7.8642599, 47.3920559 ], + [ 7.8642581, 47.3920824 ], + [ 7.8642532, 47.392146 ], + [ 7.8642402, 47.3921964 ], + [ 7.8642251, 47.3922302 ], + [ 7.8642076, 47.3922551 ], + [ 7.8641328, 47.3923389 ], + [ 7.8646315, 47.392517 ], + [ 7.8645884, 47.3928057 ], + [ 7.8642164, 47.3932297 ], + [ 7.8638395, 47.393386 ], + [ 7.8637486, 47.3935416 ], + [ 7.8636118, 47.3937341 ], + [ 7.8635779, 47.3938044 ], + [ 7.8635269, 47.3939751 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns320", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Bitzenhalde", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Bitzenhalde", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Bitzenhalde", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Bitzenhalde", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.1530483, 46.2110494 ], + [ 6.1530991, 46.2111485 ], + [ 6.1531176, 46.2111872 ], + [ 6.1530887, 46.2113138 ], + [ 6.1532406, 46.2115886 ], + [ 6.1526039, 46.2138577 ], + [ 6.1527329, 46.2138771 ], + [ 6.1526632, 46.2140833 ], + [ 6.1525991, 46.2140555 ], + [ 6.1522006, 46.2155624 ], + [ 6.1520706, 46.215579 ], + [ 6.1515068, 46.217489 ], + [ 6.1518578999999995, 46.2179878 ], + [ 6.1519849, 46.2180973 ], + [ 6.1521149, 46.2180808 ], + [ 6.1524476, 46.2188043 ], + [ 6.1523696, 46.2193613 ], + [ 6.1529792, 46.21989 ], + [ 6.1531094, 46.2198645 ], + [ 6.1536942, 46.2208879 ], + [ 6.1536593, 46.2212654 ], + [ 6.1534569, 46.221605 ], + [ 6.153152, 46.2218894 ], + [ 6.1521609999999995, 46.2226879 ], + [ 6.152007, 46.2226232 ], + [ 6.1517684, 46.2228454 ], + [ 6.1518965, 46.2229098 ], + [ 6.1513674, 46.2233536 ], + [ 6.1512218, 46.2240267 ], + [ 6.1512838, 46.2241445 ], + [ 6.1512564, 46.2242071 ], + [ 6.1509945, 46.224321 ], + [ 6.1500652, 46.225255 ], + [ 6.1497359, 46.2254762 ], + [ 6.1496944, 46.2255837 ], + [ 6.1495617, 46.2257171 ], + [ 6.1490241, 46.2265205 ], + [ 6.1491129, 46.2271513 ], + [ 6.1494337, 46.2272898 ], + [ 6.1491966, 46.227449 ], + [ 6.1492567, 46.2276476 ], + [ 6.1495163, 46.2276326 ], + [ 6.1495078, 46.2279924 ], + [ 6.1497417, 46.227968 ], + [ 6.1497952, 46.2284455 ], + [ 6.1495619, 46.2284428 ], + [ 6.1497725, 46.2294077 ], + [ 6.1499015, 46.2294362 ], + [ 6.1499599, 46.2297067 ], + [ 6.1499185, 46.2298142 ], + [ 6.150228, 46.2304294 ], + [ 6.1503178, 46.2310152 ], + [ 6.1501489, 46.2310312 ], + [ 6.1501776, 46.2314633 ], + [ 6.1506567, 46.2314868 ], + [ 6.1505866, 46.2317109 ], + [ 6.1499895, 46.2322888 ], + [ 6.15005, 46.2324694 ], + [ 6.1506853, 46.2330164 ], + [ 6.1508722, 46.2333334 ], + [ 6.1509041, 46.2336306 ], + [ 6.1507586, 46.2343036 ], + [ 6.1504573, 46.2344351 ], + [ 6.1504552, 46.2345251 ], + [ 6.1506885, 46.2345277 ], + [ 6.1502752, 46.2355575 ], + [ 6.1502677, 46.2358723 ], + [ 6.1504717, 46.2365673 ], + [ 6.1505726, 46.2366854 ], + [ 6.1507018, 46.2367049 ], + [ 6.1508216000000004, 46.2371201 ], + [ 6.1510637, 46.23894 ], + [ 6.1511617, 46.2391842 ], + [ 6.1509932, 46.2391822 ], + [ 6.1510552, 46.2392999 ], + [ 6.1512503, 46.2392751 ], + [ 6.1512216, 46.2393918 ], + [ 6.1511168, 46.2394355 ], + [ 6.1511158, 46.2394805 ], + [ 6.1513739, 46.2395284 ], + [ 6.1513639, 46.2399512 ], + [ 6.1516514, 46.2404043 ], + [ 6.1518053, 46.240478 ], + [ 6.1521803, 46.2410671 ], + [ 6.1520492, 46.2411286 ], + [ 6.1520443, 46.2413355 ], + [ 6.1524299, 46.2421047 ], + [ 6.1524526999999996, 46.24215 ], + [ 6.1525106, 46.2421056 ], + [ 6.1525452, 46.242079 ], + [ 6.1525834, 46.2421064 ], + [ 6.1526051, 46.2422867 ], + [ 6.1529839, 46.2427138 ], + [ 6.1530816999999995, 46.2429669 ], + [ 6.152941, 46.2434331 ], + [ 6.152556, 46.2443556 ], + [ 6.1527241, 46.2443755 ], + [ 6.1527187, 46.2446004 ], + [ 6.1528096, 46.2446014 ], + [ 6.1528721, 46.2446921 ], + [ 6.1531309, 46.2447221 ], + [ 6.1532234, 46.245191 ], + [ 6.1533082, 46.2454439 ], + [ 6.1535645, 46.2455727 ], + [ 6.1537965, 46.2456293 ], + [ 6.1539204, 46.2458737 ], + [ 6.1537147, 46.2463483 ], + [ 6.1533417, 46.2467669 ], + [ 6.1530771, 46.2469889 ], + [ 6.152027, 46.2475168 ], + [ 6.1516958, 46.24781 ], + [ 6.1514935, 46.2481407 ], + [ 6.1515951, 46.2482318 ], + [ 6.1518155, 46.2482343 ], + [ 6.151849, 46.2484596 ], + [ 6.151713, 46.248728 ], + [ 6.1514752999999995, 46.2489052 ], + [ 6.1514249, 46.2499394 ], + [ 6.1515245, 46.2512003 ], + [ 6.1517721, 46.251698 ], + [ 6.1518611, 46.251771 ], + [ 6.1520573, 46.2517012 ], + [ 6.1523723, 46.2520917 ], + [ 6.1524716999999995, 46.2522728 ], + [ 6.1524685, 46.2524078 ], + [ 6.153512, 46.2532474 ], + [ 6.1538308, 46.253476 ], + [ 6.1540653, 46.2534336 ], + [ 6.1542017, 46.2531473 ], + [ 6.1544892, 46.2530606 ], + [ 6.1546217, 46.2529451 ], + [ 6.1547233, 46.2530362 ], + [ 6.15446, 46.2531952 ], + [ 6.1543531, 46.2533289 ], + [ 6.1543235, 46.2534816 ], + [ 6.1546634000000005, 46.2539174 ], + [ 6.1553431, 46.25424 ], + [ 6.1555557, 46.2545753 ], + [ 6.1556768, 46.2549366 ], + [ 6.1561593, 46.255374 ], + [ 6.1562843, 46.2555733 ], + [ 6.1564091, 46.2557817 ], + [ 6.1566513, 46.2565043 ], + [ 6.157516, 46.2583317 ], + [ 6.1581045, 46.2592201 ], + [ 6.1584197, 46.2596015 ], + [ 6.1591216, 46.2600863 ], + [ 6.1598259, 46.2604721 ], + [ 6.1604647, 46.2608841 ], + [ 6.1608846, 46.2612307 ], + [ 6.1615743, 46.2622282 ], + [ 6.1617029, 46.2622746 ], + [ 6.1616598, 46.2624541 ], + [ 6.1617838, 46.2626984 ], + [ 6.1620108, 46.2629708 ], + [ 6.1623308, 46.2631544 ], + [ 6.1639415, 46.2636042 ], + [ 6.1643555, 46.2636538 ], + [ 6.1648483, 46.2636593 ], + [ 6.1650068, 46.2635441 ], + [ 6.1651991, 46.2636362 ], + [ 6.1655006, 46.2635046 ], + [ 6.1657215, 46.2634891 ], + [ 6.1658491, 46.2635805 ], + [ 6.1656908, 46.2636867 ], + [ 6.1656898, 46.2637316 ], + [ 6.1661384, 46.2639616 ], + [ 6.1663318, 46.2640088 ], + [ 6.1664241, 46.2639468 ], + [ 6.1663072, 46.2634057 ], + [ 6.1660187, 46.2635374 ], + [ 6.1659556, 46.2634647 ], + [ 6.1662882, 46.2631086 ], + [ 6.1663574, 46.2629294 ], + [ 6.1663221, 46.2627761 ], + [ 6.166108, 46.2625037 ], + [ 6.1661739, 46.2624595 ], + [ 6.1663891, 46.2626868 ], + [ 6.1665444, 46.2632464 ], + [ 6.1664992, 46.2635158 ], + [ 6.1667447, 46.2641034 ], + [ 6.1668453, 46.2642395 ], + [ 6.1667351, 46.2645082 ], + [ 6.1668546, 46.2649414 ], + [ 6.1670876, 46.264962 ], + [ 6.1675369, 46.2662537 ], + [ 6.1675673, 46.2666139 ], + [ 6.1680779, 46.2680592 ], + [ 6.168173, 46.2684202 ], + [ 6.1681295, 46.2686176 ], + [ 6.1684181, 46.2690258 ], + [ 6.1684153, 46.2691427 ], + [ 6.1682446, 46.2692308 ], + [ 6.1681766, 46.269365 ], + [ 6.1682789, 46.269429099999996 ], + [ 6.168504, 46.2692337 ], + [ 6.1686305, 46.2693701 ], + [ 6.1685636, 46.2694593 ], + [ 6.1685982, 46.2696396 ], + [ 6.1687539, 46.2696414 ], + [ 6.1689462, 46.2697335 ], + [ 6.1689156, 46.2699311 ], + [ 6.1691329, 46.2700685 ], + [ 6.1693215, 46.2703225 ], + [ 6.1701108, 46.271501 ], + [ 6.1697834, 46.2716323 ], + [ 6.1697398, 46.2718298 ], + [ 6.1696474, 46.2719007 ], + [ 6.1697997, 46.2720374 ], + [ 6.170258, 46.2718626 ], + [ 6.1708199, 46.2727866 ], + [ 6.1706642, 46.2727849 ], + [ 6.1705361, 46.2727204 ], + [ 6.170377, 46.2723137 ], + [ 6.1702262, 46.2721051 ], + [ 6.1699943, 46.2720395 ], + [ 6.1699679, 46.2720572 ], + [ 6.1703075, 46.2725109 ], + [ 6.1702741, 46.2728255 ], + [ 6.1703252, 46.2734109 ], + [ 6.1704127, 46.2735468 ], + [ 6.1706721, 46.2735497 ], + [ 6.1709067, 46.2735074 ], + [ 6.1709848, 46.2740481 ], + [ 6.1711471, 46.2743198 ], + [ 6.1710412, 46.2744086 ], + [ 6.1709498, 46.2744346 ], + [ 6.1708824, 46.2745418 ], + [ 6.1709042, 46.2747218 ], + [ 6.1713975, 46.2747095 ], + [ 6.1712646, 46.2748429 ], + [ 6.1708914, 46.2749402 ], + [ 6.1704664, 46.2756886 ], + [ 6.1706217, 46.2757084 ], + [ 6.1703517, 46.2761552 ], + [ 6.1705446, 46.2762294 ], + [ 6.1704482, 46.2764712 ], + [ 6.170253, 46.276496 ], + [ 6.1696668, 46.277704 ], + [ 6.1695379, 46.2776756 ], + [ 6.1691839, 46.2778335 ], + [ 6.1690464, 46.2781649 ], + [ 6.1686471, 46.2785921 ], + [ 6.1686446, 46.2787001 ], + [ 6.1678425, 46.2797077 ], + [ 6.1678352, 46.2800225 ], + [ 6.1676672, 46.2799936 ], + [ 6.1676407, 46.2800565 ], + [ 6.1674428, 46.2800543 ], + [ 6.1661395, 46.2823226 ], + [ 6.1657646, 46.2917903 ], + [ 6.1658243, 46.2918545 ], + [ 6.1658424, 46.2923834 ], + [ 6.1659226, 46.2928706 ], + [ 6.166125, 46.2933382 ], + [ 6.1663882, 46.2938275 ], + [ 6.1670855, 46.2951438 ], + [ 6.1678745, 46.2961545 ], + [ 6.1681283, 46.2965023 ], + [ 6.1684077, 46.2968686 ], + [ 6.1688688, 46.2973095 ], + [ 6.169101, 46.2974573 ], + [ 6.1692789, 46.2976773 ], + [ 6.169355, 46.297787 ], + [ 6.1695605, 46.2979708 ], + [ 6.170025, 46.2982483 ], + [ 6.1704891, 46.2985621 ], + [ 6.1711604, 46.298987 ], + [ 6.1716512, 46.2992647 ], + [ 6.1732818, 46.3000815 ], + [ 6.1734116, 46.3001374 ], + [ 6.1739851, 46.3002347 ], + [ 6.1750813, 46.3004101 ], + [ 6.1752893, 46.3004669 ], + [ 6.1754453, 46.300523 ], + [ 6.1758617, 46.3006183 ], + [ 6.1763291, 46.300787 ], + [ 6.1767187, 46.3009365 ], + [ 6.1771317, 46.301177 ], + [ 6.1776726, 46.3015641 ], + [ 6.1780589, 46.3018406 ], + [ 6.1781601, 46.3019869 ], + [ 6.1783618, 46.302334 ], + [ 6.1784362, 46.3025163 ], + [ 6.1784324, 46.302679499999996 ], + [ 6.1779583, 46.3028013 ], + [ 6.1785486, 46.303298 ], + [ 6.1790123, 46.3036297 ], + [ 6.1793721, 46.303924 ], + [ 6.1798099, 46.3042374 ], + [ 6.1800643, 46.3045669 ], + [ 6.1801266, 46.3046419 ], + [ 6.180166, 46.3046951 ], + [ 6.1805343, 46.3046265 ], + [ 6.1807703, 46.3046109 ], + [ 6.1809269, 46.3046309 ], + [ 6.1811624, 46.3046335 ], + [ 6.1813981, 46.3046361 ], + [ 6.1815931, 46.3046248 ], + [ 6.1819225, 46.3046056 ], + [ 6.1937234, 46.3007076 ], + [ 6.1812379, 46.2899015 ], + [ 6.1809447, 46.2900025 ], + [ 6.1800549, 46.2897023 ], + [ 6.179919, 46.2896669 ], + [ 6.1794412, 46.2895443 ], + [ 6.1774021, 46.2891488 ], + [ 6.1770713, 46.2891247 ], + [ 6.1771242, 46.2890087 ], + [ 6.1770601, 46.288383 ], + [ 6.17684, 46.2877746 ], + [ 6.1764709, 46.2872016 ], + [ 6.1759639, 46.2866816 ], + [ 6.1753348, 46.2862308 ], + [ 6.1748953, 46.28601 ], + [ 6.1746881, 46.2854372 ], + [ 6.174319, 46.2848643 ], + [ 6.1741471, 46.2846882 ], + [ 6.1740205, 46.28424 ], + [ 6.1738613, 46.2838333 ], + [ 6.1737576, 46.2836002 ], + [ 6.1736269, 46.2833971 ], + [ 6.1736111, 46.2832417 ], + [ 6.1733909, 46.2826334 ], + [ 6.1732886, 46.2824453 ], + [ 6.1729516, 46.2818747 ], + [ 6.1726848, 46.2814899 ], + [ 6.1726092, 46.2814123 ], + [ 6.1726822, 46.2813082 ], + [ 6.1728812, 46.2808243 ], + [ 6.1731879, 46.2804393 ], + [ 6.1733209, 46.2802407 ], + [ 6.1735875, 46.2800615 ], + [ 6.1741185, 46.2795536 ], + [ 6.174514, 46.2789894 ], + [ 6.1745853, 46.2788516 ], + [ 6.1747936, 46.2784221 ], + [ 6.1748998, 46.2783207 ], + [ 6.1752953, 46.2777565 ], + [ 6.1754496, 46.2774306 ], + [ 6.1755898, 46.2772097 ], + [ 6.1757521, 46.2769098 ], + [ 6.1760438, 46.2763959 ], + [ 6.1762535, 46.2760642 ], + [ 6.1763848, 46.2757532 ], + [ 6.1765212, 46.2752376 ], + [ 6.176553, 46.2749885 ], + [ 6.1765861, 46.2747676 ], + [ 6.1765221, 46.2741419 ], + [ 6.1763018, 46.2735337 ], + [ 6.1760745, 46.2731809 ], + [ 6.17607, 46.2731482 ], + [ 6.1759942, 46.2729372 ], + [ 6.1760082, 46.2728448 ], + [ 6.1759442, 46.2722191 ], + [ 6.1757241, 46.2716108 ], + [ 6.1756009, 46.2713876 ], + [ 6.1751033, 46.2705694 ], + [ 6.1750149, 46.2703253 ], + [ 6.1748166, 46.2699842 ], + [ 6.174027, 46.2688058 ], + [ 6.1739345, 46.2686749 ], + [ 6.17385, 46.2685578 ], + [ 6.1734813, 46.267985 ], + [ 6.1733408, 46.2678411 ], + [ 6.1732743, 46.2677728 ], + [ 6.1731811, 46.2674108 ], + [ 6.1731171, 46.2672022 ], + [ 6.1727189, 46.2660755 ], + [ 6.172716, 46.2660429 ], + [ 6.1725802, 46.2654089 ], + [ 6.1721307, 46.2641173 ], + [ 6.1719779, 46.263766 ], + [ 6.1719684, 46.2636723 ], + [ 6.1717484, 46.2630639 ], + [ 6.171657, 46.2629153 ], + [ 6.1716386, 46.2625652 ], + [ 6.1714831, 46.2620056 ], + [ 6.1712921, 46.2615112 ], + [ 6.1709232, 46.2609385 ], + [ 6.1707258, 46.2607121 ], + [ 6.1705106, 46.2604847 ], + [ 6.1702014, 46.2601915 ], + [ 6.1695727, 46.259741 ], + [ 6.1688405, 46.2593729 ], + [ 6.1680273, 46.2590986 ], + [ 6.1671579, 46.2589264 ], + [ 6.1662586, 46.2588615 ], + [ 6.1653565, 46.258906 ], + [ 6.164919, 46.2589822 ], + [ 6.1648565, 46.2589152 ], + [ 6.1644366, 46.2585686 ], + [ 6.163998, 46.2582484 ], + [ 6.1633591, 46.2578363 ], + [ 6.1630414, 46.2576475 ], + [ 6.1626192, 46.2574162 ], + [ 6.1623527, 46.257014 ], + [ 6.1616515, 46.2555326 ], + [ 6.1614615, 46.2549654 ], + [ 6.1611992, 46.2544004 ], + [ 6.1610412, 46.2541373 ], + [ 6.1609162, 46.253938 ], + [ 6.1604036, 46.2533338 ], + [ 6.160304, 46.253126 ], + [ 6.1600914, 46.2527907 ], + [ 6.1598772, 46.2524913 ], + [ 6.1598396, 46.252453 ], + [ 6.1596258, 46.2518605 ], + [ 6.1592572, 46.2512877 ], + [ 6.1588262, 46.2508341 ], + [ 6.1587246, 46.2507428 ], + [ 6.1586491, 46.2506769 ], + [ 6.1580206, 46.2502263 ], + [ 6.1572886, 46.2498581 ], + [ 6.1567419, 46.249653 ], + [ 6.1568229, 46.2494452 ], + [ 6.1570733, 46.2492824 ], + [ 6.1573379, 46.2490603 ], + [ 6.157753, 46.2486587 ], + [ 6.158126, 46.2482401 ], + [ 6.1586811, 46.2473846 ], + [ 6.1588868, 46.2469101 ], + [ 6.1590126, 46.2465564 ], + [ 6.1591059, 46.2459324 ], + [ 6.159042, 46.2453068 ], + [ 6.1588125, 46.2446792 ], + [ 6.1586886, 46.2444348 ], + [ 6.1583296, 46.2438813 ], + [ 6.1581576, 46.2437043 ], + [ 6.1581734, 46.2436497 ], + [ 6.1582668, 46.2430259 ], + [ 6.158203, 46.2424001 ], + [ 6.1580907, 46.2420351 ], + [ 6.157993, 46.2417821 ], + [ 6.1575129, 46.2410091 ], + [ 6.1574848, 46.2409314 ], + [ 6.1573187, 46.2406733 ], + [ 6.1573013, 46.2405005 ], + [ 6.1570814, 46.2398922 ], + [ 6.1569234999999995, 46.2396131 ], + [ 6.1565484, 46.239024 ], + [ 6.1564853, 46.2389358 ], + [ 6.1562749, 46.2383535 ], + [ 6.1562014, 46.2382393 ], + [ 6.1561638, 46.2381352 ], + [ 6.1559848, 46.2367893 ], + [ 6.1559058, 46.2364134 ], + [ 6.1557859, 46.2359982 ], + [ 6.155635, 46.2356131 ], + [ 6.1556837, 46.2354928 ], + [ 6.1557794, 46.2352105 ], + [ 6.155792, 46.2351259 ], + [ 6.1558495, 46.2349864 ], + [ 6.1558862, 46.2348375 ], + [ 6.1560317, 46.2341644 ], + [ 6.1560744, 46.2333636 ], + [ 6.1560426, 46.2330663 ], + [ 6.1557474, 46.2321694 ], + [ 6.1558407, 46.2315456 ], + [ 6.1557767, 46.2309201 ], + [ 6.1555569, 46.2303119 ], + [ 6.1553791, 46.2300355 ], + [ 6.1551227, 46.2292434 ], + [ 6.1550867, 46.2291721 ], + [ 6.1550287, 46.2289029 ], + [ 6.1550213, 46.2288695 ], + [ 6.1549524, 46.2286797 ], + [ 6.1549789, 46.2285044 ], + [ 6.1549638, 46.2281662 ], + [ 6.1549102, 46.2276888 ], + [ 6.1548615, 46.2274014 ], + [ 6.154693, 46.2269355 ], + [ 6.1548399, 46.226788 ], + [ 6.1551724, 46.2265645 ], + [ 6.1557029, 46.2260567 ], + [ 6.1560982, 46.2254926 ], + [ 6.1562172, 46.225252 ], + [ 6.1562446, 46.2251893 ], + [ 6.1563772, 46.2248036 ], + [ 6.1570791, 46.2242379 ], + [ 6.1573111, 46.2240371 ], + [ 6.1576159, 46.2237526 ], + [ 6.1582466, 46.2229807 ], + [ 6.158449, 46.2226411 ], + [ 6.1588326, 46.2214953 ], + [ 6.1588674, 46.2211177 ], + [ 6.1588771, 46.2209467 ], + [ 6.1588134, 46.2203211 ], + [ 6.1585937, 46.2197127 ], + [ 6.1585122, 46.2195605 ], + [ 6.1579272, 46.2185372 ], + [ 6.1576404, 46.2181165 ], + [ 6.1574625, 46.2179336 ], + [ 6.1573855, 46.2177097 ], + [ 6.1570528, 46.2169861 ], + [ 6.1570078, 46.216896 ], + [ 6.1570414, 46.2168484 ], + [ 6.1572898, 46.2162453 ], + [ 6.1572986, 46.2162121 ], + [ 6.1575474, 46.2152714 ], + [ 6.1577094, 46.214905 ], + [ 6.157779, 46.2146989 ], + [ 6.1578221, 46.21456 ], + [ 6.1579152, 46.213936 ], + [ 6.1579011, 46.2137976 ], + [ 6.1581905, 46.2127651 ], + [ 6.1581657, 46.212159 ], + [ 6.1579159, 46.2113583 ], + [ 6.1574877, 46.2105142 ], + [ 6.1570971, 46.2099865 ], + [ 6.1570478, 46.2099451 ], + [ 6.1570013, 46.2098402 ], + [ 6.1568802, 46.2096472 ], + [ 6.1567952, 46.2095112 ], + [ 6.1565487, 46.2090874 ], + [ 6.1561793, 46.2084697 ], + [ 6.1559786, 46.2081857 ], + [ 6.1560648, 46.2074418 ], + [ 6.1579142000000004, 46.2056976 ], + [ 6.1532963, 46.2034815 ], + [ 6.1465697, 46.2049963 ], + [ 6.1465224, 46.2049284 ], + [ 6.1461325, 46.2049256 ], + [ 6.1461245, 46.2048733 ], + [ 6.1459125, 46.2049168 ], + [ 6.1457927, 46.2049271 ], + [ 6.1455663, 46.2049146 ], + [ 6.1452334, 46.2048667 ], + [ 6.1450049, 46.2048712 ], + [ 6.1447236, 46.2048356 ], + [ 6.1444228, 46.2047763 ], + [ 6.1441973, 46.2047233 ], + [ 6.1439651, 46.2046307 ], + [ 6.1437446, 46.2045913 ], + [ 6.1435445, 46.2045602 ], + [ 6.1433081, 46.2045242 ], + [ 6.1430434, 46.2044842 ], + [ 6.1427752, 46.2044415 ], + [ 6.1425736, 46.2044015 ], + [ 6.1422674, 46.2043242 ], + [ 6.1418955, 46.204265 ], + [ 6.1416429, 46.204263 ], + [ 6.1413924, 46.2042907 ], + [ 6.1412205, 46.2043167 ], + [ 6.1411483, 46.2043042 ], + [ 6.1410845, 46.2042657 ], + [ 6.1407025, 46.2042559 ], + [ 6.1401679, 46.204229 ], + [ 6.1397129, 46.2042373 ], + [ 6.1391451, 46.2042613 ], + [ 6.1385129, 46.204245 ], + [ 6.1379129, 46.2042407 ], + [ 6.1375664, 46.2042719 ], + [ 6.1371763, 46.20428 ], + [ 6.1368268, 46.2042659 ], + [ 6.1366153, 46.2042644 ], + [ 6.1363823, 46.2042554 ], + [ 6.1362533, 46.2042323 ], + [ 6.1361949, 46.2041867 ], + [ 6.1359526, 46.2041911 ], + [ 6.1356703, 46.2041779 ], + [ 6.135419, 46.2040743 ], + [ 6.1352432, 46.2039373 ], + [ 6.1348573, 46.2036683 ], + [ 6.1344653, 46.2034695 ], + [ 6.1340528, 46.2033242 ], + [ 6.1335682, 46.2031738 ], + [ 6.1332298, 46.2030646 ], + [ 6.1328424, 46.2029603 ], + [ 6.1325361, 46.2028677 ], + [ 6.1321161, 46.2027738 ], + [ 6.13177, 46.2027266 ], + [ 6.1313315, 46.2026936 ], + [ 6.1307716, 46.202689 ], + [ 6.1302777, 46.2026923 ], + [ 6.1296941, 46.2027144 ], + [ 6.1291656, 46.2027101 ], + [ 6.1286949, 46.2026615 ], + [ 6.1281382, 46.2025894 ], + [ 6.127701, 46.2025475 ], + [ 6.1269897, 46.2024339 ], + [ 6.1264454, 46.2023844 ], + [ 6.1258564, 46.2022893 ], + [ 6.1250223, 46.2022167 ], + [ 6.1244678, 46.2020483 ], + [ 6.123755, 46.2018277 ], + [ 6.1219875, 46.2013492 ], + [ 6.1215901, 46.201116 ], + [ 6.1211898, 46.200621 ], + [ 6.1212853, 46.1985997 ], + [ 6.1211165, 46.1985599 ], + [ 6.1207142, 46.1993847 ], + [ 6.1191335, 46.1992772 ], + [ 6.1178919, 46.1998647 ], + [ 6.1152844, 46.1996229 ], + [ 6.1150187, 46.200568 ], + [ 6.1129789, 46.2003777 ], + [ 6.1126474, 46.2002064 ], + [ 6.1125861, 46.2000636 ], + [ 6.1112882, 46.2006799 ], + [ 6.1107063, 46.2005327 ], + [ 6.1112799, 46.197692 ], + [ 6.1098656, 46.1974549 ], + [ 6.1096965, 46.1973341 ], + [ 6.1091725, 46.1972353 ], + [ 6.1077183999999995, 46.196896 ], + [ 6.1073207, 46.1968815 ], + [ 6.1068512, 46.1968552 ], + [ 6.1065205, 46.1968009 ], + [ 6.106181, 46.1967079 ], + [ 6.1060046, 46.196605 ], + [ 6.1057878, 46.1964117 ], + [ 6.1056532, 46.196304 ], + [ 6.1054292, 46.1961268 ], + [ 6.1052127, 46.1958768 ], + [ 6.1049981, 46.1956943 ], + [ 6.1047264, 46.1955301 ], + [ 6.1045379, 46.1954873 ], + [ 6.104442, 46.1954377 ], + [ 6.1044919, 46.1953186 ], + [ 6.1038315, 46.1950876 ], + [ 6.1030366, 46.1946932 ], + [ 6.1028789, 46.1948316 ], + [ 6.1026154, 46.1947009 ], + [ 6.1023663, 46.1944846 ], + [ 6.1021685, 46.194269 ], + [ 6.1020003, 46.1940421 ], + [ 6.101869, 46.1937519 ], + [ 6.1017752, 46.1935663 ], + [ 6.1016543, 46.1934075 ], + [ 6.1015266, 46.1932871 ], + [ 6.1013821, 46.1932134 ], + [ 6.1012942, 46.1932465 ], + [ 6.1011554, 46.1932117 ], + [ 6.1011573, 46.193137 ], + [ 6.1012064, 46.193036 ], + [ 6.1011045, 46.1929637 ], + [ 6.1008204, 46.1928749 ], + [ 6.1006372, 46.1927836 ], + [ 6.1005081, 46.1927146 ], + [ 6.1003697, 46.1926463 ], + [ 6.1002421, 46.1925207 ], + [ 6.1002286, 46.1923747 ], + [ 6.1002259, 46.1921715 ], + [ 6.1002681, 46.1919911 ], + [ 6.1002378, 46.1918064 ], + [ 6.1001121, 46.1916474 ], + [ 6.0999619, 46.1914809 ], + [ 6.0998723, 46.1913909 ], + [ 6.0996802, 46.1912986 ], + [ 6.0994469, 46.1912356 ], + [ 6.0991803, 46.1910759 ], + [ 6.0991437, 46.1909855 ], + [ 6.0991505, 46.1909064 ], + [ 6.0988777, 46.1907916 ], + [ 6.0982477, 46.1906447 ], + [ 6.0980613, 46.190153 ], + [ 6.098211, 46.1899289 ], + [ 6.0983696, 46.189732 ], + [ 6.0984363, 46.1896086 ], + [ 6.0985055, 46.189379 ], + [ 6.0985152, 46.189147 ], + [ 6.0985198, 46.1888942 ], + [ 6.0985661, 46.1886572 ], + [ 6.0985847, 46.1884775 ], + [ 6.0986767, 46.1882123 ], + [ 6.0987546, 46.1880386 ], + [ 6.0989534, 46.1878079 ], + [ 6.099134, 46.1876246 ], + [ 6.0992407, 46.1875018 ], + [ 6.0994305, 46.1873681 ], + [ 6.0990792, 46.1874324 ], + [ 6.0987475, 46.187486 ], + [ 6.0984633, 46.1874547 ], + [ 6.098221, 46.1874141 ], + [ 6.0979137, 46.1873151 ], + [ 6.0976395, 46.1872408 ], + [ 6.0974396, 46.1871529 ], + [ 6.0973117, 46.1870839 ], + [ 6.0970051, 46.1870101 ], + [ 6.0961818, 46.1886829 ], + [ 6.0943255, 46.1881939 ], + [ 6.0945157, 46.1878848 ], + [ 6.0938155, 46.18771 ], + [ 6.0936074, 46.1879451 ], + [ 6.0935493, 46.1880974 ], + [ 6.0934813, 46.1882819 ], + [ 6.0933485, 46.1884612 ], + [ 6.0932322, 46.1886631 ], + [ 6.0931305, 46.1888949 ], + [ 6.093053, 46.1891018 ], + [ 6.0929611, 46.1893598 ], + [ 6.0928268, 46.1896075 ], + [ 6.0927501, 46.1897756 ], + [ 6.0926824, 46.189944 ], + [ 6.0926819, 46.1899665 ], + [ 6.0928533, 46.1903699 ], + [ 6.0927531, 46.1905377 ], + [ 6.0925582, 46.1905633 ], + [ 6.0922747, 46.1906175 ], + [ 6.0919389, 46.1907232 ], + [ 6.0916719, 46.1908451 ], + [ 6.0912372, 46.1910216 ], + [ 6.0908608, 46.1912141 ], + [ 6.0905107, 46.1914331 ], + [ 6.0900149, 46.190989 ], + [ 6.0897613, 46.191093 ], + [ 6.0895735, 46.1911879 ], + [ 6.089449, 46.1912925 ], + [ 6.089398, 46.1914278 ], + [ 6.0893949, 46.1916491 ], + [ 6.0894183, 46.1917502 ], + [ 6.0892393, 46.1918208 ], + [ 6.0890498, 46.1918869 ], + [ 6.088807, 46.1918966 ], + [ 6.0884594, 46.1918709 ], + [ 6.0881917, 46.1917966 ], + [ 6.087887, 46.1916365 ], + [ 6.0876304, 46.1914921 ], + [ 6.0874049, 46.1913887 ], + [ 6.0872106, 46.1913422 ], + [ 6.0869686, 46.1912727 ], + [ 6.0867227, 46.1911123 ], + [ 6.0865955, 46.1909084 ], + [ 6.0864377, 46.1906888 ], + [ 6.0862842, 46.1905628 ], + [ 6.086139, 46.1905053 ], + [ 6.0858415, 46.1904396 ], + [ 6.0856811, 46.1903775 ], + [ 6.0855049, 46.1902179 ], + [ 6.0853945, 46.1900141 ], + [ 6.0852732, 46.1898938 ], + [ 6.0850578, 46.1898131 ], + [ 6.0848547, 46.1897395 ], + [ 6.0847842, 46.189709 ], + [ 6.0848345, 46.189563 ], + [ 6.0848548, 46.1893833 ], + [ 6.0847608, 46.189186 ], + [ 6.0846552, 46.1890723 ], + [ 6.0844235, 46.1889462 ], + [ 6.0843017, 46.1888935 ], + [ 6.084108, 46.1888246 ], + [ 6.0839922, 46.1889995 ], + [ 6.0838588, 46.1892057 ], + [ 6.0837355, 46.1894255 ], + [ 6.0837065, 46.1895989 ], + [ 6.0837816, 46.1899155 ], + [ 6.0839202, 46.190385 ], + [ 6.0840203, 46.1907408 ], + [ 6.0841111, 46.1911583 ], + [ 6.0842152, 46.1916625 ], + [ 6.084275, 46.1920051 ], + [ 6.0843452, 46.1926825 ], + [ 6.084351, 46.1932305 ], + [ 6.084409, 46.1940318 ], + [ 6.0844948, 46.1946797 ], + [ 6.0845689, 46.1951538 ], + [ 6.0846729, 46.1956615 ], + [ 6.0849716, 46.1962013 ], + [ 6.0864538, 46.1987049 ], + [ 6.0868367, 46.1986788 ], + [ 6.0873127, 46.1987169 ], + [ 6.0875169, 46.1987258 ], + [ 6.0876301999999995, 46.1987648 ], + [ 6.0876989, 46.1988619 ], + [ 6.0876902, 46.1990022 ], + [ 6.0876603, 46.1992726 ], + [ 6.0876224, 46.199543 ], + [ 6.0875692, 46.1998087 ], + [ 6.0875325, 46.200079 ], + [ 6.0874907, 46.2002405 ], + [ 6.0875041, 46.2003827 ], + [ 6.0874184, 46.2006525 ], + [ 6.0872429, 46.2008699 ], + [ 6.0869648, 46.2010143 ], + [ 6.0867192, 46.201148 ], + [ 6.0865723, 46.2012092 ], + [ 6.0863882, 46.2012196 ], + [ 6.0862494, 46.2011208 ], + [ 6.086188, 46.2009356 ], + [ 6.0860464, 46.2006909 ], + [ 6.0858486, 46.2004708 ], + [ 6.0821778, 46.1984033 ], + [ 6.0803572, 46.198305 ], + [ 6.0799581, 46.198301 ], + [ 6.079496, 46.198388 ], + [ 6.0790645, 46.198445 ], + [ 6.0787979, 46.1984831 ], + [ 6.0781791, 46.1986179 ], + [ 6.0777477, 46.1986099 ], + [ 6.0775784, 46.1986466 ], + [ 6.077402, 46.1987513 ], + [ 6.077268, 46.1988308 ], + [ 6.0769873, 46.1990586 ], + [ 6.0766504, 46.199266 ], + [ 6.0763135, 46.1995714 ], + [ 6.0760719, 46.1999031 ], + [ 6.0758469999999996, 46.2003008 ], + [ 6.0753216, 46.2001119 ], + [ 6.0753917, 46.1998572 ], + [ 6.0747108, 46.1994792 ], + [ 6.0749523, 46.1989918 ], + [ 6.0741123, 46.1988043 ], + [ 6.0752078, 46.1978891 ], + [ 6.0757248, 46.1974248 ], + [ 6.0755977, 46.1972767 ], + [ 6.0745093, 46.1964511 ], + [ 6.0736445, 46.1958055 ], + [ 6.0732039, 46.1955949 ], + [ 6.0727059, 46.1953533 ], + [ 6.0722235, 46.1951171 ], + [ 6.0698009, 46.1940251 ], + [ 6.0709224, 46.1924903 ], + [ 6.07109, 46.1925707 ], + [ 6.0713279, 46.1924827 ], + [ 6.0715145, 46.1924346 ], + [ 6.0717574, 46.1924024 ], + [ 6.071904, 46.192352 ], + [ 6.072079, 46.1922363 ], + [ 6.0721353, 46.1921236 ], + [ 6.071514, 46.1914692 ], + [ 6.0721058, 46.1910229 ], + [ 6.0726296, 46.1913163 ], + [ 6.0728986, 46.190759 ], + [ 6.0722956, 46.1903774 ], + [ 6.0721951, 46.1905121 ], + [ 6.0720576, 46.1906166 ], + [ 6.0718859, 46.1905884 ], + [ 6.0717851, 46.1904747 ], + [ 6.0717894, 46.190204 ], + [ 6.0718578, 46.1899457 ], + [ 6.0719258, 46.1898152 ], + [ 6.0720268, 46.1896193 ], + [ 6.0721578, 46.189513 ], + [ 6.0724178, 46.1894765 ], + [ 6.0728655, 46.1892822 ], + [ 6.0684635, 46.1869779 ], + [ 6.0657171, 46.1878973 ], + [ 6.0654598, 46.1877826 ], + [ 6.0652594, 46.1876227 ], + [ 6.0650279, 46.1874903 ], + [ 6.0647227, 46.1873256 ], + [ 6.0644314, 46.18726 ], + [ 6.0641736, 46.1872082 ], + [ 6.0638535, 46.1869614 ], + [ 6.0637167, 46.1867871 ], + [ 6.063503, 46.1866386 ], + [ 6.0632613, 46.1865125 ], + [ 6.0628591, 46.1863284 ], + [ 6.0624779, 46.1862465 ], + [ 6.0621068, 46.1861636 ], + [ 6.0617675, 46.1861163 ], + [ 6.0614108, 46.1860723 ], + [ 6.0611935, 46.1860706 ], + [ 6.0608604, 46.1860674 ], + [ 6.0605189, 46.18611 ], + [ 6.0601054, 46.1862146 ], + [ 6.0598284, 46.1863138 ], + [ 6.059387, 46.1865126 ], + [ 6.0590826, 46.1867014 ], + [ 6.0586835, 46.1869286 ], + [ 6.058387, 46.1871741 ], + [ 6.0581559, 46.1873971 ], + [ 6.0579569, 46.1876277 ], + [ 6.057765, 46.1879015 ], + [ 6.0575912, 46.1881594 ], + [ 6.0574758, 46.1883225 ], + [ 6.0579965, 46.1885233 ], + [ 6.0582185, 46.1884081 ], + [ 6.0591649, 46.1889848 ], + [ 6.0588741, 46.1893726 ], + [ 6.0588535, 46.189564 ], + [ 6.0585522, 46.1897465 ], + [ 6.05867, 46.1899045 ], + [ 6.0587413, 46.1900637 ], + [ 6.0587285, 46.1902615 ], + [ 6.058687, 46.190367 ], + [ 6.0572575, 46.1914598 ], + [ 6.0554343, 46.1913313 ], + [ 6.0551303, 46.1911711 ], + [ 6.0548277, 46.1913554 ], + [ 6.0544275, 46.1914423 ], + [ 6.0539576, 46.1914383 ], + [ 6.0534663, 46.1914008 ], + [ 6.0531959, 46.1914317 ], + [ 6.0528645, 46.1914744 ], + [ 6.0524656, 46.1915316 ], + [ 6.0522048999999996, 46.1915922 ], + [ 6.0519694, 46.1916856 ], + [ 6.0516667, 46.1917575 ], + [ 6.0512694, 46.1918435 ], + [ 6.0510249, 46.1918872 ], + [ 6.0507824, 46.1918852 ], + [ 6.050529, 46.1919162 ], + [ 6.0500425, 46.1919013 ], + [ 6.0497777, 46.1918692 ], + [ 6.0495406, 46.1918672 ], + [ 6.0492908, 46.1918605 ], + [ 6.049233, 46.191849 ], + [ 6.0491767, 46.1919095 ], + [ 6.0489522, 46.1921397 ], + [ 6.0487061, 46.1922771 ], + [ 6.0485114, 46.1923385 ], + [ 6.0479838, 46.1924517 ], + [ 6.0475929, 46.1925386 ], + [ 6.0473715, 46.1925818 ], + [ 6.0470402, 46.1926191 ], + [ 6.0466499, 46.1926835 ], + [ 6.0463413, 46.1927481 ], + [ 6.045998, 46.1928401 ], + [ 6.0455913, 46.1929448 ], + [ 6.0452819, 46.1930436 ], + [ 6.0451027, 46.1930981 ], + [ 6.044734, 46.1932348 ], + [ 6.0444174, 46.1933451 ], + [ 6.0441625, 46.1934329 ], + [ 6.0440955, 46.1935184 ], + [ 6.0440772, 46.1936306 ], + [ 6.0441074, 46.1937596 ], + [ 6.0414338, 46.1946046 ], + [ 6.0413239, 46.1943892 ], + [ 6.041155, 46.1944059 ], + [ 6.0408465, 46.1944705 ], + [ 6.0405363, 46.194536 ], + [ 6.0403747, 46.1945231 ], + [ 6.0402358, 46.1945377 ], + [ 6.0400671, 46.1945472 ], + [ 6.0399205, 46.1945525 ], + [ 6.0396834, 46.1945398 ], + [ 6.037133, 46.1962923 ], + [ 6.0346489, 46.1974201 ], + [ 6.0332016, 46.196704 ], + [ 6.032389, 46.1971752 ], + [ 6.0315091, 46.1965876 ], + [ 6.0313163, 46.1964619 ], + [ 6.0311847, 46.1961948 ], + [ 6.0311471, 46.1958966 ], + [ 6.0311165, 46.1954796 ], + [ 6.0310864, 46.1947801 ], + [ 6.0312059, 46.1935742 ], + [ 6.031783, 46.19355 ], + [ 6.0320337, 46.1935143 ], + [ 6.032376, 46.1934089 ], + [ 6.0327017, 46.1932941 ], + [ 6.032963, 46.1932065 ], + [ 6.0332665, 46.1931347 ], + [ 6.0334021, 46.1931085 ], + [ 6.0334165, 46.1928433 ], + [ 6.0334543, 46.1925387 ], + [ 6.0334498, 46.1923083 ], + [ 6.0334458, 46.1921167 ], + [ 6.033359, 46.1919131 ], + [ 6.0333618, 46.1917441 ], + [ 6.0334384, 46.1916478 ], + [ 6.0336175, 46.1915772 ], + [ 6.0338686, 46.191494 ], + [ 6.0340166, 46.1914229 ], + [ 6.0341893, 46.1913684 ], + [ 6.0344547, 46.1913754 ], + [ 6.0346591, 46.1913769 ], + [ 6.0348772, 46.1913626 ], + [ 6.0350393, 46.1913124 ], + [ 6.0352038, 46.1912118 ], + [ 6.0354098, 46.1911083 ], + [ 6.0356766, 46.1910585 ], + [ 6.0358828, 46.1909432 ], + [ 6.0361191, 46.1907761 ], + [ 6.0363104, 46.1906426 ], + [ 6.0363989, 46.190524 ], + [ 6.0362966, 46.1904733 ], + [ 6.0362166, 46.1904156 ], + [ 6.0361594, 46.1903753 ], + [ 6.0361059, 46.1902847 ], + [ 6.0364052, 46.1901858 ], + [ 6.0367626, 46.1901435 ], + [ 6.0369839, 46.1901004 ], + [ 6.0371541, 46.1900296 ], + [ 6.0371987, 46.189906 ], + [ 6.0372499, 46.189787 ], + [ 6.0374621, 46.189642 ], + [ 6.0377081, 46.1894931 ], + [ 6.0379536, 46.1893755 ], + [ 6.038232, 46.1892206 ], + [ 6.038446, 46.1890758 ], + [ 6.0386006, 46.1889481 ], + [ 6.0387658, 46.1887738 ], + [ 6.0389414, 46.1885457 ], + [ 6.0390579, 46.1883438 ], + [ 6.0391329, 46.1881981 ], + [ 6.039281, 46.1880299 ], + [ 6.0394886, 46.1878786 ], + [ 6.0396748, 46.1877855 ], + [ 6.0399941, 46.1877094 ], + [ 6.0403841, 46.1876558 ], + [ 6.0407468, 46.1877089 ], + [ 6.0409652, 46.1877781 ], + [ 6.0413838, 46.1879399 ], + [ 6.0416753, 46.1879832 ], + [ 6.0419898, 46.1879907 ], + [ 6.0423236, 46.187966 ], + [ 6.0426484, 46.1879285 ], + [ 6.042174, 46.1858156 ], + [ 6.041853, 46.185305 ], + [ 6.0415689, 46.1848635 ], + [ 6.0423575, 46.1843289 ], + [ 6.0421165, 46.1841756 ], + [ 6.0418759, 46.1840044 ], + [ 6.0416909, 46.1838492 ], + [ 6.0414834, 46.1836558 ], + [ 6.0413717, 46.18356 ], + [ 6.0413082, 46.1834584 ], + [ 6.0413593, 46.1833458 ], + [ 6.0408625, 46.1830192 ], + [ 6.0401515, 46.1825506 ], + [ 6.0394485, 46.181976 ], + [ 6.0388486, 46.1814224 ], + [ 6.0381298, 46.1808187 ], + [ 6.0375496, 46.1802565 ], + [ 6.0367105, 46.1794983 ], + [ 6.0356976, 46.1786391 ], + [ 6.035034, 46.1780469 ], + [ 6.0345336, 46.1776142 ], + [ 6.0339297, 46.1772702 ], + [ 6.0333837, 46.1769998 ], + [ 6.0333604, 46.1769941 ], + [ 6.0326188, 46.1768238 ], + [ 6.027455, 46.1755781 ], + [ 6.0272144, 46.1755651 ], + [ 6.0266016, 46.1763195 ], + [ 6.0263393, 46.1766005 ], + [ 6.026143, 46.1767718 ], + [ 6.0259607, 46.1767164 ], + [ 6.0258019, 46.1766451 ], + [ 6.0256429, 46.1765802 ], + [ 6.0255993, 46.1764662 ], + [ 6.0256437, 46.1763435 ], + [ 6.0257085, 46.1762021 ], + [ 6.0256988, 46.1760779 ], + [ 6.0256682, 46.1760101 ], + [ 6.025415, 46.17588 ], + [ 6.0252786, 46.1757983 ], + [ 6.0252127, 46.1756904 ], + [ 6.0251109, 46.1755757 ], + [ 6.025016, 46.1755331 ], + [ 6.0248697, 46.1755249 ], + [ 6.0247726, 46.1755229 ], + [ 6.0247054, 46.1755706 ], + [ 6.0245839, 46.1756203 ], + [ 6.0244194, 46.1756615 ], + [ 6.0243266, 46.1756936 ], + [ 6.0243022, 46.1757427 ], + [ 6.0241787, 46.1757629 ], + [ 6.0240795, 46.1757823 ], + [ 6.0239593, 46.1757754 ], + [ 6.023872, 46.1756987 ], + [ 6.0238534, 46.1756156 ], + [ 6.0238839, 46.1754398 ], + [ 6.0238802, 46.1753839 ], + [ 6.0237897, 46.1753764 ], + [ 6.0236981, 46.1754581 ], + [ 6.0236372, 46.1755132 ], + [ 6.0234748, 46.1755327 ], + [ 6.023408, 46.1755606 ], + [ 6.0233751, 46.1755818 ], + [ 6.0234047, 46.1756434 ], + [ 6.0234753, 46.1757127 ], + [ 6.0235462, 46.1757261 ], + [ 6.0237003, 46.1757749 ], + [ 6.0238411, 46.1758909 ], + [ 6.0238776, 46.1759318 ], + [ 6.0237883, 46.1759747 ], + [ 6.0236243, 46.1760096 ], + [ 6.0235148, 46.1760747 ], + [ 6.0233823, 46.1761469 ], + [ 6.0230748, 46.1761287 ], + [ 6.0229222, 46.1761142 ], + [ 6.0225749, 46.1764265 ], + [ 6.022384, 46.1765465 ], + [ 6.0222394, 46.1765168 ], + [ 6.0221674, 46.1764511 ], + [ 6.0220662, 46.1764111 ], + [ 6.0219093, 46.176419 ], + [ 6.0217498, 46.1763747 ], + [ 6.0212832, 46.1761386 ], + [ 6.0209455, 46.1760173 ], + [ 6.0190051, 46.1753387 ], + [ 6.0177263, 46.1752101 ], + [ 6.0172304, 46.1750167 ], + [ 6.0168547, 46.1747087 ], + [ 6.0163662, 46.1743769 ], + [ 6.015647, 46.1739485 ], + [ 6.0148491, 46.1735083 ], + [ 6.0143686, 46.1731523 ], + [ 6.0141654, 46.1729986 ], + [ 6.0149013, 46.1726975 ], + [ 6.0153319, 46.1725149 ], + [ 6.0156529, 46.172375 ], + [ 6.016015, 46.1722077 ], + [ 6.016349, 46.1720617 ], + [ 6.0166152, 46.1718356 ], + [ 6.0169009, 46.1715585 ], + [ 6.0172502, 46.171275 ], + [ 6.0175177, 46.1710427 ], + [ 6.0178443, 46.1706869 ], + [ 6.0181831, 46.1702638 ], + [ 6.0185951, 46.1698597 ], + [ 6.0188691, 46.1696266 ], + [ 6.0191827, 46.1692706 ], + [ 6.0193912, 46.1688791 ], + [ 6.0195204, 46.1685812 ], + [ 6.0197749, 46.1682578 ], + [ 6.0199451, 46.1679973 ], + [ 6.0201208, 46.167609 ], + [ 6.0202141, 46.1672611 ], + [ 6.0203744, 46.1668187 ], + [ 6.0204917, 46.1664935 ], + [ 6.0204973, 46.1663245 ], + [ 6.020461, 46.166181 ], + [ 6.0204275, 46.1660222 ], + [ 6.0204225, 46.1658755 ], + [ 6.0204213, 46.165718 ], + [ 6.0204436, 46.165515 ], + [ 6.0204485, 46.1653747 ], + [ 6.0203869, 46.1652992 ], + [ 6.0202646, 46.1652707 ], + [ 6.0200731, 46.1651657 ], + [ 6.0199069, 46.1650835 ], + [ 6.0196743, 46.1649717 ], + [ 6.0194494, 46.1649068 ], + [ 6.0191747, 46.1648575 ], + [ 6.0190771, 46.1648778 ], + [ 6.0192236, 46.1651676 ], + [ 6.0192854, 46.1654239 ], + [ 6.0192928, 46.165639 ], + [ 6.0193404, 46.165798 ], + [ 6.0192977, 46.1658992 ], + [ 6.0191128, 46.1660344 ], + [ 6.0189643, 46.1662233 ], + [ 6.0188758, 46.1663904 ], + [ 6.018919, 46.166516 ], + [ 6.0188137, 46.1666892 ], + [ 6.0186572, 46.166923 ], + [ 6.0185691, 46.1670721 ], + [ 6.0185626, 46.1672259 ], + [ 6.0185025, 46.1673412 ], + [ 6.0184146, 46.1674868 ], + [ 6.0182591, 46.1676926 ], + [ 6.0181295, 46.16804 ], + [ 6.0180822, 46.1681743 ], + [ 6.0180126, 46.1682518 ], + [ 6.0179083, 46.1682766 ], + [ 6.0174511, 46.1681377 ], + [ 6.0172987, 46.1682698 ], + [ 6.0176116, 46.1683943 ], + [ 6.017093, 46.1688636 ], + [ 6.0168449, 46.1691898 ], + [ 6.0163601, 46.1695014 ], + [ 6.0158394, 46.169698 ], + [ 6.0152401, 46.1698947 ], + [ 6.0143844, 46.1701799 ], + [ 6.0136981, 46.170424 ], + [ 6.0132301, 46.1705882 ], + [ 6.0127334, 46.1708095 ], + [ 6.0123564, 46.1710153 ], + [ 6.012073, 46.1712051 ], + [ 6.0116212, 46.1709988 ], + [ 6.0110069, 46.1714597 ], + [ 6.010784, 46.1717187 ], + [ 6.0109982, 46.171994 ], + [ 6.0106823, 46.1725244 ], + [ 6.010202, 46.1733083 ], + [ 6.010077, 46.1735829 ], + [ 6.00991, 46.1740244 ], + [ 6.009741, 46.1745459 ], + [ 6.010429, 46.1748883 ], + [ 6.0103611, 46.1749594 ], + [ 6.0102958, 46.1750315 ], + [ 6.010201, 46.1751382 ], + [ 6.0100626, 46.175231 ], + [ 6.0098977, 46.1752846 ], + [ 6.0097253, 46.1752996 ], + [ 6.0094134, 46.1752317 ], + [ 6.0090755, 46.1751358 ], + [ 6.0085034, 46.1749746 ], + [ 6.008023, 46.1748201 ], + [ 6.0077172, 46.1747181 ], + [ 6.0073338, 46.1745873 ], + [ 6.0069889, 46.1744983 ], + [ 6.0067063, 46.1744075 ], + [ 6.0064457, 46.1742682 ], + [ 6.0062124, 46.1741393 ], + [ 6.0059512, 46.1740181 ], + [ 6.0056192, 46.1739339 ], + [ 6.005387, 46.1738959 ], + [ 6.005167, 46.1738922 ], + [ 6.0049082, 46.1738808 ], + [ 6.004699, 46.1739096 ], + [ 6.004543, 46.1739318 ], + [ 6.0042804, 46.1740239 ], + [ 6.0042461, 46.1740469 ], + [ 6.0041472, 46.1741121 ], + [ 6.0039724, 46.1742044 ], + [ 6.0038884, 46.1742933 ], + [ 6.003801, 46.1744721 ], + [ 6.0037565, 46.1746299 ], + [ 6.0036107, 46.1748144 ], + [ 6.0035256, 46.1749419 ], + [ 6.0034498, 46.1750714 ], + [ 6.0032552, 46.1750843 ], + [ 6.0030595, 46.1750871 ], + [ 6.002987, 46.175034 ], + [ 6.0028528, 46.1749648 ], + [ 6.0026121, 46.174915 ], + [ 6.0023522, 46.1749 ], + [ 6.002061, 46.17489 ], + [ 6.001989, 46.1748099 ], + [ 6.0018613, 46.1747444 ], + [ 6.0016115, 46.1747476 ], + [ 6.001391, 46.1747592 ], + [ 6.0011614, 46.1748119 ], + [ 6.0009882, 46.1749447 ], + [ 6.0007643, 46.1750427 ], + [ 6.00048, 46.1751119 ], + [ 6.0000455, 46.1751955 ], + [ 5.9996633, 46.175295 ], + [ 5.999221, 46.1754116 ], + [ 5.9988463, 46.1754851 ], + [ 5.9985832, 46.1755772 ], + [ 5.9983862, 46.1756349 ], + [ 5.9980428, 46.1757493 ], + [ 5.9978774, 46.1758183 ], + [ 5.9975562, 46.1759212 ], + [ 5.9974269, 46.1759124 ], + [ 5.9971418, 46.1759646 ], + [ 5.9967903, 46.176033 ], + [ 5.9965216, 46.1761078 ], + [ 5.9961838, 46.1761917 ], + [ 5.9957922, 46.1762649 ], + [ 5.9953953, 46.176285 ], + [ 5.9951674, 46.1763334 ], + [ 5.9949705, 46.1763903 ], + [ 5.9946922, 46.1764767 ], + [ 5.9943649, 46.1765571 ], + [ 5.9939800000000005, 46.1766223 ], + [ 5.9936796999999995, 46.1766626 ], + [ 5.9934425000000005, 46.1766658 ], + [ 5.9931364, 46.1766422 ], + [ 5.9928784, 46.1766037 ], + [ 5.9925889, 46.1765316 ], + [ 5.9923099, 46.1763985 ], + [ 5.9920765, 46.1763154 ], + [ 5.9918683, 46.1762488 ], + [ 5.9917566, 46.1761673 ], + [ 5.9916632, 46.1760761 ], + [ 5.9916004, 46.1760024 ], + [ 5.9914438, 46.1758466 ], + [ 5.9913355, 46.1756859 ], + [ 5.9912225, 46.1754928 ], + [ 5.9911319, 46.1753063 ], + [ 5.9910305, 46.175117 ], + [ 5.9909977, 46.1749357 ], + [ 5.9909721, 46.1747392 ], + [ 5.9909514, 46.1745914 ], + [ 5.9909823, 46.1744497 ], + [ 5.9910182, 46.1743152 ], + [ 5.9910101000000004, 46.1740847 ], + [ 5.9910277, 46.1737574 ], + [ 5.9910975, 46.1734316 ], + [ 5.9911766, 46.1730306 ], + [ 5.9912858, 46.1726829 ], + [ 5.9913621, 46.1723411 ], + [ 5.9914452, 46.1719814 ], + [ 5.9914543, 46.1717035 ], + [ 5.991423, 46.1715115 ], + [ 5.9914305, 46.171274 ], + [ 5.9913720999999995, 46.1710771 ], + [ 5.991288, 46.1708952 ], + [ 5.991198, 46.1706682 ], + [ 5.9911249, 46.1704523 ], + [ 5.9910678, 46.1702077 ], + [ 5.9909722, 46.1699573 ], + [ 5.9908842, 46.1697033 ], + [ 5.9907496, 46.1695586 ], + [ 5.9905684, 46.1694655 ], + [ 5.9903508, 46.1693708 ], + [ 5.9901578, 46.1693233 ], + [ 5.9899408, 46.1692918 ], + [ 5.989754, 46.1692552 ], + [ 5.9895618, 46.1691771 ], + [ 5.9894452, 46.169092 ], + [ 5.9893348, 46.1689998 ], + [ 5.9892419, 46.1688851 ], + [ 5.9891655, 46.168742 ], + [ 5.9890967, 46.1685603 ], + [ 5.9889411, 46.168372 ], + [ 5.9887683, 46.168189 ], + [ 5.9885625000000005, 46.1680433 ], + [ 5.988381, 46.1679609 ], + [ 5.9881954, 46.1678793 ], + [ 5.9879544, 46.167825 ], + [ 5.9876737, 46.1677754 ], + [ 5.987471, 46.1677423 ], + [ 5.9872544, 46.1677161 ], + [ 5.987002, 46.1677119 ], + [ 5.9866913, 46.1677593 ], + [ 5.9864784, 46.1678167 ], + [ 5.9863292, 46.1679337 ], + [ 5.9860912, 46.1680583 ], + [ 5.9859472, 46.1681753 ], + [ 5.9858381, 46.168325 ], + [ 5.9857279, 46.168436 ], + [ 5.9855595, 46.1686318 ], + [ 5.985356, 46.1688766 ], + [ 5.9851949, 46.1691337 ], + [ 5.9850804, 46.1693616 ], + [ 5.9849683, 46.1695743 ], + [ 5.9848652, 46.1697493 ], + [ 5.9848425, 46.1699632 ], + [ 5.9847791, 46.1701135 ], + [ 5.984733, 46.1702928 ], + [ 5.9847015, 46.1704571 ], + [ 5.984665, 46.170615 ], + [ 5.9846031, 46.1707941 ], + [ 5.9845202, 46.1710343 ], + [ 5.9844723, 46.1712819 ], + [ 5.9844252000000004, 46.1714396 ], + [ 5.9844041, 46.1715923 ], + [ 5.984360000000001, 46.171743 ], + [ 5.9843285, 46.1719116 ], + [ 5.9842354, 46.1720454 ], + [ 5.9841565, 46.1721973 ], + [ 5.984102, 46.1723433 ], + [ 5.9840746, 46.1724897 ], + [ 5.9840758, 46.1726416 ], + [ 5.9839419, 46.172567 ], + [ 5.9838804, 46.1724862 ], + [ 5.9837859, 46.1723879 ], + [ 5.9837004, 46.17224 ], + [ 5.9836992, 46.1721042 ], + [ 5.9836773999999995, 46.1719527 ], + [ 5.9837119, 46.1717211 ], + [ 5.9837727, 46.1715366 ], + [ 5.9838219, 46.1713275 ], + [ 5.9838637, 46.1710798 ], + [ 5.9838939, 46.1708768 ], + [ 5.9838264, 46.1707355 ], + [ 5.9838605, 46.170673 ], + [ 5.9837847, 46.170537 ], + [ 5.9836092, 46.1704278 ], + [ 5.9834368, 46.1702941 ], + [ 5.9832312, 46.1701277 ], + [ 5.9830637, 46.170005 ], + [ 5.9828659, 46.1698955 ], + [ 5.982731, 46.1697471 ], + [ 5.9826318, 46.1696441 ], + [ 5.9826037, 46.1694853 ], + [ 5.9826138, 46.1693947 ], + [ 5.9826038, 46.1692416 ], + [ 5.9825363, 46.1691004 ], + [ 5.9824827, 46.1689683 ], + [ 5.982373, 46.168849 ], + [ 5.982232, 46.1687042 ], + [ 5.9821311999999995, 46.1685967 ], + [ 5.9821453, 46.1684052 ], + [ 5.9821748, 46.1682697 ], + [ 5.9821544, 46.1681228 ], + [ 5.9820746, 46.1679005 ], + [ 5.9820551, 46.1677193 ], + [ 5.9819942, 46.1675782 ], + [ 5.9819984999999996, 46.1674658 ], + [ 5.9821104, 46.1673475 ], + [ 5.9820072, 46.1672328 ], + [ 5.9819568, 46.1670855 ], + [ 5.9818315, 46.1669319 ], + [ 5.9817203, 46.1668674 ], + [ 5.9815835, 46.1668037 ], + [ 5.9814336, 46.1667495 ], + [ 5.9813451, 46.1666754 ], + [ 5.9812986, 46.1666119 ], + [ 5.9812626, 46.1665052 ], + [ 5.9812113, 46.1662895 ], + [ 5.981148, 46.1660521 ], + [ 5.9810671, 46.1657793 ], + [ 5.9809602, 46.1655746 ], + [ 5.9808709, 46.16537 ], + [ 5.9807572, 46.1651761 ], + [ 5.9805861, 46.164974 ], + [ 5.9804934, 46.1648101 ], + [ 5.9803225, 46.1646197 ], + [ 5.9801671, 46.1644252 ], + [ 5.9799625, 46.1642372 ], + [ 5.9797421, 46.1640526 ], + [ 5.9795123, 46.1638382 ], + [ 5.9793035, 46.1636159 ], + [ 5.978994, 46.1633285 ], + [ 5.9788626, 46.1632026 ], + [ 5.9786344, 46.1629775 ], + [ 5.9784591, 46.1626918 ], + [ 5.9782755, 46.1625372 ], + [ 5.9779962, 46.1621944 ], + [ 5.9779143, 46.1620053 ], + [ 5.977945, 46.1617799 ], + [ 5.9777971, 46.1616538 ], + [ 5.9777202, 46.1615169 ], + [ 5.9776524, 46.161346 ], + [ 5.9777235, 46.1609754 ], + [ 5.9776991, 46.1607213 ], + [ 5.9774997, 46.1605721 ], + [ 5.9773043, 46.1604328 ], + [ 5.9770988, 46.1602646 ], + [ 5.9768331, 46.1599894 ], + [ 5.9768849, 46.1599001 ], + [ 5.9772197, 46.1597695 ], + [ 5.9771723, 46.1597464 ], + [ 5.9770893, 46.1596094 ], + [ 5.977011, 46.1595409 ], + [ 5.9768096, 46.1594196 ], + [ 5.9767097, 46.1593273 ], + [ 5.976607, 46.1592064 ], + [ 5.9765415, 46.1590364 ], + [ 5.9764971, 46.1589107 ], + [ 5.976671, 46.158751 ], + [ 5.9767393, 46.1586619 ], + [ 5.9768183, 46.1585217 ], + [ 5.9769387, 46.15832 ], + [ 5.9767453, 46.1582895 ], + [ 5.976574, 46.1582648 ], + [ 5.9762881, 46.1581064 ], + [ 5.9762563, 46.1578909 ], + [ 5.9760362, 46.1576955 ], + [ 5.9757522, 46.1574831 ], + [ 5.9755219, 46.1575628 ], + [ 5.9753986, 46.1573976 ], + [ 5.9752104, 46.1571738 ], + [ 5.9750077, 46.1569443 ], + [ 5.9751807, 46.1568341 ], + [ 5.9751758, 46.156773 ], + [ 5.9750273, 46.1565605 ], + [ 5.9748537, 46.1564115 ], + [ 5.9746483, 46.1562569 ], + [ 5.9740953999999995, 46.1558294 ], + [ 5.9739259, 46.1555897 ], + [ 5.973734, 46.1553083 ], + [ 5.9734764, 46.1549766 ], + [ 5.9732427, 46.1547019 ], + [ 5.9730405, 46.1544681 ], + [ 5.9727236999999995, 46.1542641 ], + [ 5.9725283, 46.1540691 ], + [ 5.9726377, 46.1539085 ], + [ 5.9725781, 46.1537648 ], + [ 5.9724833, 46.1536799 ], + [ 5.9723574, 46.1535919 ], + [ 5.9722173, 46.1534163 ], + [ 5.9721214, 46.1531776 ], + [ 5.9719762, 46.1528923 ], + [ 5.9717847, 46.1527927 ], + [ 5.9716795, 46.1528534 ], + [ 5.9715866, 46.1528908 ], + [ 5.9714493, 46.1529404 ], + [ 5.9712519, 46.1530161 ], + [ 5.9710922, 46.1529383 ], + [ 5.9709525, 46.1527963 ], + [ 5.9707545, 46.1525894 ], + [ 5.9705335, 46.1522518 ], + [ 5.9703489, 46.1521361 ], + [ 5.9701909, 46.1519928 ], + [ 5.970047, 46.151747 ], + [ 5.9698844, 46.1514913 ], + [ 5.9697139, 46.1512443 ], + [ 5.9697004, 46.1509805 ], + [ 5.9695764, 46.1508206 ], + [ 5.9693582, 46.1507529 ], + [ 5.9691817, 46.150712 ], + [ 5.9690481, 46.1506238 ], + [ 5.9689132, 46.150497 ], + [ 5.9687537, 46.1504113 ], + [ 5.9685011, 46.1502262 ], + [ 5.9683382, 46.1500703 ], + [ 5.9682474, 46.149899 ], + [ 5.9681635, 46.1496946 ], + [ 5.9680177, 46.1494732 ], + [ 5.9678643000000005, 46.1492264 ], + [ 5.9678685, 46.149114 ], + [ 5.9678801, 46.1489675 ], + [ 5.967789, 46.1487919 ], + [ 5.9678101, 46.1486392 ], + [ 5.9678476, 46.148493 ], + [ 5.9679357, 46.1483025 ], + [ 5.9679985, 46.1481746 ], + [ 5.9678427, 46.1481493 ], + [ 5.9676314, 46.1480214 ], + [ 5.9675846, 46.1479236 ], + [ 5.9674606, 46.1477709 ], + [ 5.9673517, 46.1476372 ], + [ 5.9672157, 46.1475338 ], + [ 5.9671565, 46.1473927 ], + [ 5.9671237, 46.1472113 ], + [ 5.9671346, 46.1470919 ], + [ 5.9672186, 46.1470101 ], + [ 5.9673492, 46.1469668 ], + [ 5.9676286, 46.1471639 ], + [ 5.9677907999999995, 46.1471481 ], + [ 5.9679849, 46.1471516 ], + [ 5.96817, 46.1471395 ], + [ 5.9683906, 46.1471199 ], + [ 5.9687003, 46.147069 ], + [ 5.968986, 46.1469882 ], + [ 5.969315, 46.1468315 ], + [ 5.9695957, 46.1467002 ], + [ 5.9700255, 46.1464484 ], + [ 5.9701685, 46.1463378 ], + [ 5.9702886, 46.1461414 ], + [ 5.9703672, 46.145923 ], + [ 5.9704598, 46.1456093 ], + [ 5.9705112, 46.1453275 ], + [ 5.9705925, 46.1450577 ], + [ 5.9707297, 46.1448121 ], + [ 5.9709481, 46.1445837 ], + [ 5.971233, 46.14434 ], + [ 5.9715919, 46.144082 ], + [ 5.9717518, 46.1438636 ], + [ 5.9719487, 46.1436134 ], + [ 5.9721412, 46.1433909 ], + [ 5.9723691, 46.1431402 ], + [ 5.9725693, 46.1429736 ], + [ 5.9727264, 46.1428479 ], + [ 5.9730068, 46.142722 ], + [ 5.9734734, 46.1426057 ], + [ 5.9738962, 46.1425743 ], + [ 5.9742726, 46.1424901 ], + [ 5.9745741, 46.1423942 ], + [ 5.9749438999999995, 46.1422694 ], + [ 5.9750818, 46.1422442 ], + [ 5.9754348, 46.1423523 ], + [ 5.9757385, 46.1424587 ], + [ 5.9759785, 46.142542 ], + [ 5.9761969, 46.142606 ], + [ 5.9763927, 46.142587 ], + [ 5.9765603, 46.1426125 ], + [ 5.9767699, 46.1426565 ], + [ 5.9769898999999995, 46.1426604 ], + [ 5.9772223, 46.1426804 ], + [ 5.9774272, 46.1426723 ], + [ 5.9775794, 46.1426977 ], + [ 5.9778943, 46.1427774 ], + [ 5.9782848, 46.1428786 ], + [ 5.9785196, 46.1429618 ], + [ 5.9787979, 46.1430526 ], + [ 5.9790862, 46.1431589 ], + [ 5.9793047999999995, 46.1432121 ], + [ 5.9795862, 46.1432508 ], + [ 5.9798376, 46.1432884 ], + [ 5.9803522000000005, 46.1433994 ], + [ 5.9806017, 46.1434214 ], + [ 5.9806761, 46.1433883 ], + [ 5.9808563, 46.1433402 ], + [ 5.9811084999999995, 46.1432832 ], + [ 5.9814356, 46.1432137 ], + [ 5.9817598, 46.1431927 ], + [ 5.9820115, 46.1432192 ], + [ 5.9821774, 46.143306 ], + [ 5.9824147, 46.1434747 ], + [ 5.9825834, 46.1435497 ], + [ 5.982759, 46.1438192 ], + [ 5.9828364, 46.1439219 ], + [ 5.9829449, 46.1440699 ], + [ 5.983014, 46.1442517 ], + [ 5.9831559, 46.1443606 ], + [ 5.9834326, 46.1445234 ], + [ 5.9836784, 46.1447146 ], + [ 5.9839953, 46.1449228 ], + [ 5.9840786, 46.1450598 ], + [ 5.9841814, 46.1451745 ], + [ 5.9842639, 46.1453276 ], + [ 5.9843665999999995, 46.1454648 ], + [ 5.9843946, 46.1455848 ], + [ 5.9844596, 46.1457548 ], + [ 5.984497, 46.1459137 ], + [ 5.9846442, 46.1460676 ], + [ 5.9847808, 46.1461485 ], + [ 5.9851649, 46.1463092 ], + [ 5.9854803, 46.1465507 ], + [ 5.9856444, 46.146667 ], + [ 5.9858353, 46.1467874 ], + [ 5.9861951, 46.1466876 ], + [ 5.9863425, 46.1466563 ], + [ 5.9864601, 46.146522 ], + [ 5.98658, 46.1463327 ], + [ 5.9868052, 46.1462006 ], + [ 5.9868877, 46.1461567 ], + [ 5.9871197, 46.1459961 ], + [ 5.9873687, 46.1458382 ], + [ 5.9876676, 46.1456558 ], + [ 5.9879969, 46.1454872 ], + [ 5.9882934, 46.1453346 ], + [ 5.9884987, 46.1452023 ], + [ 5.9888877, 46.145039 ], + [ 5.9892725, 46.1448693 ], + [ 5.9898118, 46.1447432 ], + [ 5.9903192, 46.1446004 ], + [ 5.9907958, 46.144398699999996 ], + [ 5.9907996, 46.1445903 ], + [ 5.9907804, 46.1446873 ], + [ 5.9907812, 46.1448456 ], + [ 5.9908344, 46.1449858 ], + [ 5.9909588, 46.1451304 ], + [ 5.9910675, 46.1452722 ], + [ 5.9911583, 46.1451725 ], + [ 5.9912914, 46.1450797 ], + [ 5.991429, 46.1448791 ], + [ 5.9916254, 46.1447961 ], + [ 5.9917323, 46.1448048 ], + [ 5.9918507, 46.1448405 ], + [ 5.9919256999999995, 46.1450339 ], + [ 5.9919146, 46.145158 ], + [ 5.9919334, 46.1452752 ], + [ 5.9919774, 46.1454296 ], + [ 5.9921011, 46.1455895 ], + [ 5.992176, 46.1457498 ], + [ 5.9922382, 46.145845 ], + [ 5.9927352, 46.145989 ], + [ 5.9928953, 46.146055 ], + [ 5.9932166, 46.1461391 ], + [ 5.993571, 46.1462013 ], + [ 5.9938416, 46.1461544 ], + [ 5.9942056, 46.1461447 ], + [ 5.9946862, 46.1461229 ], + [ 5.9950187, 46.1460786 ], + [ 5.9955345, 46.1459566 ], + [ 5.9960467, 46.1458749 ], + [ 5.9965609, 46.1458113 ], + [ 5.9970165, 46.145774 ], + [ 5.997505, 46.1457029 ], + [ 5.9979455, 46.1456428 ], + [ 5.9981303, 46.1456002 ], + [ 5.9983516, 46.1455976 ], + [ 5.9985557, 46.1455103 ], + [ 5.9987874, 46.1453792 ], + [ 5.9989798, 46.1454455 ], + [ 5.9991335, 46.1455041 ], + [ 5.9993362, 46.1454285 ], + [ 5.9995917, 46.1453543 ], + [ 5.9998283, 46.1452611 ], + [ 6.0000742, 46.1451752 ], + [ 6.0005199, 46.1449631 ], + [ 6.0008638, 46.1448218 ], + [ 6.0013004, 46.14466 ], + [ 6.001683, 46.1445875 ], + [ 6.0020063, 46.1445979 ], + [ 6.0023571, 46.1445916 ], + [ 6.0029661, 46.1445229 ], + [ 6.003486, 46.1444863 ], + [ 6.0038748, 46.1444661 ], + [ 6.0042653, 46.144427 ], + [ 6.0045538, 46.1443353 ], + [ 6.0047735, 46.1442553 ], + [ 6.0051997, 46.1441311 ], + [ 6.0056576, 46.1440101 ], + [ 6.0060095, 46.1439642 ], + [ 6.0065157, 46.1438663 ], + [ 6.007011, 46.1437781 ], + [ 6.0073361, 46.1437219 ], + [ 6.0077943, 46.1436171 ], + [ 6.0083568, 46.1435469 ], + [ 6.0087145, 46.1435235 ], + [ 6.0089746, 46.1435241 ], + [ 6.0092337, 46.1435166 ], + [ 6.0095309, 46.1435375 ], + [ 6.009838, 46.1435764 ], + [ 6.0101607, 46.1436111 ], + [ 6.0103897, 46.1435627 ], + [ 6.0106816, 46.1435403 ], + [ 6.0110486, 46.1435171 ], + [ 6.0113582, 46.1434957 ], + [ 6.0118133, 46.1434809 ], + [ 6.0121691, 46.1434863 ], + [ 6.0126603, 46.1435104 ], + [ 6.0129493, 46.1435942 ], + [ 6.0132168, 46.1436506 ], + [ 6.013481, 46.1436998 ], + [ 6.013655, 46.1438316 ], + [ 6.0136522, 46.1439395 ], + [ 6.0136143, 46.1440902 ], + [ 6.0134751, 46.14437 ], + [ 6.0133477, 46.1445826 ], + [ 6.013671, 46.1445947 ], + [ 6.0139378, 46.1445882 ], + [ 6.014305, 46.1445605 ], + [ 6.014571, 46.144535 ], + [ 6.0148908, 46.1444842 ], + [ 6.0151742, 46.1444391 ], + [ 6.0155435, 46.1443818 ], + [ 6.0159567, 46.1443095 ], + [ 6.0163246, 46.1442549 ], + [ 6.0167904, 46.1441086 ], + [ 6.0173565, 46.1439493 ], + [ 6.0178987, 46.1437546 ], + [ 6.0182324, 46.1436652 ], + [ 6.0185858, 46.1435626 ], + [ 6.0187393, 46.1435384 ], + [ 6.0189488, 46.1435419 ], + [ 6.0191694, 46.1435843 ], + [ 6.0194487, 46.14364 ], + [ 6.0196535, 46.1436326 ], + [ 6.0201621, 46.14363 ], + [ 6.0204401, 46.1435435 ], + [ 6.0208536, 46.1436225 ], + [ 6.0211442, 46.1436459 ], + [ 6.0213552, 46.1436539 ], + [ 6.0215885, 46.1436416 ], + [ 6.021809, 46.1436227 ], + [ 6.0219895, 46.1435917 ], + [ 6.0222241, 46.1435281 ], + [ 6.0222923, 46.1434552 ], + [ 6.0222468, 46.1433592 ], + [ 6.0221634, 46.1432376 ], + [ 6.0219583, 46.1430497 ], + [ 6.0217603, 46.1428547 ], + [ 6.0217966, 46.1427535 ], + [ 6.0219286, 46.1426993 ], + [ 6.0222538, 46.1426368 ], + [ 6.022796, 46.1424421 ], + [ 6.023217, 46.1422457 ], + [ 6.023809, 46.1420192 ], + [ 6.0243175, 46.1418348 ], + [ 6.024549, 46.1416857 ], + [ 6.0248475, 46.1415167 ], + [ 6.0252011, 46.1412971 ], + [ 6.0256047, 46.1411608 ], + [ 6.0261805, 46.1410754 ], + [ 6.0265815, 46.1410371 ], + [ 6.0271581, 46.1409562 ], + [ 6.0277045, 46.140909 ], + [ 6.0279465, 46.1409057 ], + [ 6.0281957, 46.1409332 ], + [ 6.0286881, 46.1407558 ], + [ 6.0289932, 46.14063 ], + [ 6.0292626, 46.140815 ], + [ 6.029478, 46.1409042 ], + [ 6.0300292, 46.1411549 ], + [ 6.0302005, 46.1410896 ], + [ 6.0304745, 46.1409544 ], + [ 6.0310486, 46.1407312 ], + [ 6.0315585, 46.1405315 ], + [ 6.0320551, 46.1403973 ], + [ 6.0323442, 46.1402741 ], + [ 6.0327972, 46.1400259 ], + [ 6.033194, 46.1397907 ], + [ 6.0335605, 46.139492 ], + [ 6.0338923, 46.1392651 ], + [ 6.0343655, 46.1389857 ], + [ 6.0346549, 46.1387581 ], + [ 6.0348336, 46.1385579 ], + [ 6.0354671, 46.1377219 ], + [ 6.0358554, 46.137277 ], + [ 6.0361523, 46.1371008 ], + [ 6.0362991, 46.1370034 ], + [ 6.0362855, 46.136984 ], + [ 6.0361924, 46.1368268 ], + [ 6.036106, 46.1366237 ], + [ 6.0359764, 46.1360754 ], + [ 6.0358864, 46.1360821 ], + [ 6.0355969, 46.1351287 ], + [ 6.0354664, 46.1348211 ], + [ 6.0354619, 46.1346399 ], + [ 6.0354253, 46.1344588 ], + [ 6.0353939, 46.134333 ], + [ 6.0353324, 46.1343914 ], + [ 6.0350709, 46.1345995 ], + [ 6.0349383, 46.1347242 ], + [ 6.0348578, 46.1348682 ], + [ 6.0348227, 46.135165 ], + [ 6.0347576, 46.135354 ], + [ 6.0346723, 46.1355159 ], + [ 6.0346554, 46.1355809 ], + [ 6.0345597, 46.1357271 ], + [ 6.0343567, 46.1358941 ], + [ 6.034284, 46.1360453 ], + [ 6.0342818, 46.1361585 ], + [ 6.0344329, 46.1363158 ], + [ 6.0345565, 46.1365332 ], + [ 6.0346281, 46.1366815 ], + [ 6.0345928, 46.1367519 ], + [ 6.034423, 46.1368537 ], + [ 6.0343395, 46.1368776 ], + [ 6.0342806, 46.1368336 ], + [ 6.0341652, 46.1367689 ], + [ 6.0340134, 46.1367395 ], + [ 6.0338094, 46.1366004 ], + [ 6.0336681, 46.1365301 ], + [ 6.0335221, 46.1365303 ], + [ 6.0334835, 46.1365418 ], + [ 6.0334317, 46.1366181 ], + [ 6.033535, 46.1367331 ], + [ 6.0335946, 46.1367854 ], + [ 6.0336772, 46.1369723 ], + [ 6.0336475, 46.1370995 ], + [ 6.0335588, 46.137184 ], + [ 6.0334513, 46.1372199 ], + [ 6.0334136, 46.1372556 ], + [ 6.033405, 46.1372844 ], + [ 6.0334151, 46.1373045 ], + [ 6.0334078, 46.1374154 ], + [ 6.0334407, 46.1375397 ], + [ 6.0335433, 46.1376632 ], + [ 6.0336668, 46.1378612 ], + [ 6.0336748, 46.1379279 ], + [ 6.0336354, 46.1379735 ], + [ 6.0334806, 46.1379918 ], + [ 6.0333862, 46.1379826 ], + [ 6.033217, 46.1378622 ], + [ 6.0330845, 46.1377738 ], + [ 6.032908, 46.1377064 ], + [ 6.0327465, 46.1377229 ], + [ 6.0325581, 46.1378118 ], + [ 6.032531, 46.1378362 ], + [ 6.0324771, 46.1379172 ], + [ 6.0325442, 46.1380154 ], + [ 6.032621, 46.1380653 ], + [ 6.0328507, 46.1383019 ], + [ 6.0330261, 46.1385872 ], + [ 6.0330297, 46.1386675 ], + [ 6.0330094, 46.1387082 ], + [ 6.0329772, 46.1387344 ], + [ 6.0327483, 46.1387702 ], + [ 6.0326269, 46.1387127 ], + [ 6.0325358, 46.1386229 ], + [ 6.0322511, 46.1385065 ], + [ 6.0319896, 46.138386 ], + [ 6.0318758, 46.1383079 ], + [ 6.0318649, 46.138285 ], + [ 6.0316004, 46.1380468 ], + [ 6.0315147, 46.1379839 ], + [ 6.0314861, 46.1379741 ], + [ 6.0314511, 46.1379838 ], + [ 6.0314035, 46.1380272 ], + [ 6.0314046, 46.1380668 ], + [ 6.0314559, 46.1381036 ], + [ 6.0314819, 46.1382168 ], + [ 6.0316172, 46.1384553 ], + [ 6.0316568, 46.1385693 ], + [ 6.0316729, 46.1386676 ], + [ 6.0316684, 46.138686 ], + [ 6.0316302, 46.1387636 ], + [ 6.0315774, 46.1388483 ], + [ 6.0315546, 46.1388944 ], + [ 6.0315386, 46.1389662 ], + [ 6.0315694, 46.139076 ], + [ 6.0316186, 46.1391118 ], + [ 6.0316972, 46.1392162 ], + [ 6.0317026, 46.1392862 ], + [ 6.0316553, 46.1393961 ], + [ 6.0315859, 46.139445 ], + [ 6.031491, 46.1394746 ], + [ 6.0312302, 46.1394758 ], + [ 6.0309103, 46.1394498 ], + [ 6.030805, 46.1394052 ], + [ 6.0307356, 46.1393338 ], + [ 6.0307278, 46.1392539 ], + [ 6.0306381, 46.1391367 ], + [ 6.0305151, 46.1390737 ], + [ 6.0304778, 46.1390693 ], + [ 6.0303257, 46.1390833 ], + [ 6.030056, 46.1391157 ], + [ 6.0299206, 46.1391576 ], + [ 6.0298546, 46.1392131 ], + [ 6.0298812, 46.139351 ], + [ 6.0299467, 46.1394498 ], + [ 6.0299504, 46.1395121 ], + [ 6.0299068, 46.1395664 ], + [ 6.0298335, 46.1396138 ], + [ 6.0296527, 46.139614 ], + [ 6.0294069, 46.1395003 ], + [ 6.029316, 46.1393984 ], + [ 6.0292907, 46.1393775 ], + [ 6.0292076, 46.1393556 ], + [ 6.0290366, 46.1393767 ], + [ 6.0288999, 46.1394986 ], + [ 6.0288572, 46.1395974 ], + [ 6.028811, 46.1396574 ], + [ 6.0287636, 46.1396918 ], + [ 6.0287009, 46.1397114 ], + [ 6.0286262, 46.1397592 ], + [ 6.0285508, 46.1397864 ], + [ 6.0284688, 46.1397665 ], + [ 6.0283805, 46.1397028 ], + [ 6.0282758, 46.139708 ], + [ 6.0282263, 46.1397355 ], + [ 6.028308, 46.1401236 ], + [ 6.028341, 46.1401552 ], + [ 6.0284035, 46.1401661 ], + [ 6.0284903, 46.1402081 ], + [ 6.0285216, 46.1403146 ], + [ 6.0285044, 46.1403728 ], + [ 6.0284521, 46.1404375 ], + [ 6.0282974, 46.1404452 ], + [ 6.0280306, 46.1403845 ], + [ 6.0279595, 46.1402729 ], + [ 6.0278773, 46.1402034 ], + [ 6.0276953, 46.1401372 ], + [ 6.027512, 46.1400989 ], + [ 6.0274335, 46.1400636 ], + [ 6.0272929, 46.1400327 ], + [ 6.0271843, 46.1400385 ], + [ 6.0268572, 46.1400832 ], + [ 6.0267158, 46.1400805 ], + [ 6.0265938, 46.1400933 ], + [ 6.0264379, 46.1400838 ], + [ 6.0262355, 46.1401075 ], + [ 6.026185, 46.1401212 ], + [ 6.0259472, 46.1402581 ], + [ 6.0258546, 46.1403017 ], + [ 6.0257533, 46.1403267 ], + [ 6.0255664, 46.1403373 ], + [ 6.0253122, 46.1404009 ], + [ 6.0252466, 46.1404107 ], + [ 6.0250435, 46.1404081 ], + [ 6.0249917, 46.1403971 ], + [ 6.024738, 46.1404044 ], + [ 6.024531, 46.1403996 ], + [ 6.0243578, 46.1403771 ], + [ 6.0240822, 46.1403687 ], + [ 6.0239589, 46.1403708 ], + [ 6.0239024, 46.1403817 ], + [ 6.0238241, 46.1404289 ], + [ 6.0237622, 46.1405506 ], + [ 6.0236711, 46.1406513 ], + [ 6.0236302, 46.140718 ], + [ 6.0235791, 46.1407618 ], + [ 6.0235223, 46.1408347 ], + [ 6.023427, 46.1409026 ], + [ 6.0233712, 46.1409668 ], + [ 6.0232887999999996, 46.1410298 ], + [ 6.0232311, 46.1410554 ], + [ 6.0231564, 46.1411715 ], + [ 6.0230937, 46.1412292 ], + [ 6.0230147, 46.1413129 ], + [ 6.0229244, 46.1413889 ], + [ 6.0228611, 46.1414174 ], + [ 6.0227244, 46.1415652 ], + [ 6.0226556, 46.1416056 ], + [ 6.0225259, 46.1416575 ], + [ 6.0224338, 46.1416788 ], + [ 6.022336, 46.1416755 ], + [ 6.0222074, 46.1416597 ], + [ 6.0219179, 46.1416085 ], + [ 6.0218112, 46.1415941 ], + [ 6.0217312, 46.1415715 ], + [ 6.0216074, 46.1415197 ], + [ 6.0215721, 46.1414851 ], + [ 6.021541, 46.141432 ], + [ 6.0214874, 46.141297 ], + [ 6.0214583, 46.1412383 ], + [ 6.021373, 46.1411389 ], + [ 6.02133, 46.1411188 ], + [ 6.0212852, 46.1411095 ], + [ 6.0212274, 46.1411097 ], + [ 6.0211695, 46.1411296 ], + [ 6.0210292, 46.1412271 ], + [ 6.0209477, 46.1412756 ], + [ 6.0208865, 46.1413459 ], + [ 6.0208317, 46.1413948 ], + [ 6.0207557, 46.1414523 ], + [ 6.0206689, 46.1414939 ], + [ 6.0206226, 46.1415399 ], + [ 6.0205701, 46.1416055 ], + [ 6.020552, 46.1416355 ], + [ 6.0205265, 46.1416917 ], + [ 6.0205085, 46.1417861 ], + [ 6.0204843, 46.1418174 ], + [ 6.0202919, 46.1419912 ], + [ 6.0202548, 46.1420155 ], + [ 6.0201534, 46.1420617 ], + [ 6.0200533, 46.1420892 ], + [ 6.0199985, 46.1420957 ], + [ 6.0199601, 46.1420982 ], + [ 6.0197867, 46.1420889 ], + [ 6.0197195, 46.14208 ], + [ 6.0196422, 46.1420642 ], + [ 6.0195219, 46.1420216 ], + [ 6.019463, 46.1419912 ], + [ 6.0192444, 46.1419509 ], + [ 6.0192151, 46.1419612 ], + [ 6.0191883, 46.1419769 ], + [ 6.0192652, 46.1420894 ], + [ 6.0192305, 46.1420947 ], + [ 6.0190336, 46.1421075 ], + [ 6.0188575, 46.1421415 ], + [ 6.018633, 46.1421926 ], + [ 6.0184952, 46.1421872 ], + [ 6.0183718, 46.1422226 ], + [ 6.0183203, 46.1422621 ], + [ 6.0183008, 46.142344 ], + [ 6.0182616, 46.142388 ], + [ 6.0181631, 46.1423996 ], + [ 6.0180875, 46.1424648 ], + [ 6.0180433, 46.1424913 ], + [ 6.0179118, 46.142549 ], + [ 6.0177809, 46.1426143 ], + [ 6.0176752, 46.1426731 ], + [ 6.0171786, 46.1428386 ], + [ 6.0170681, 46.1428426 ], + [ 6.0169378, 46.1428177 ], + [ 6.0166266, 46.1427729 ], + [ 6.0164811, 46.1427826 ], + [ 6.0162515, 46.1427824 ], + [ 6.01589, 46.142757 ], + [ 6.015532, 46.1427849 ], + [ 6.0154044, 46.1428131 ], + [ 6.0153277, 46.1428672 ], + [ 6.0152969, 46.1429259 ], + [ 6.0152195, 46.1429884 ], + [ 6.015106, 46.1430571 ], + [ 6.0150125, 46.1430757 ], + [ 6.0149321, 46.1430754 ], + [ 6.0147617, 46.1430211 ], + [ 6.0146891, 46.1429169 ], + [ 6.0146762, 46.1428348 ], + [ 6.0145419, 46.1426557 ], + [ 6.0144575, 46.1424561 ], + [ 6.0143276, 46.1423641 ], + [ 6.014248, 46.1423462 ], + [ 6.0141737, 46.1423605 ], + [ 6.0139416, 46.1424414 ], + [ 6.013769, 46.1425386 ], + [ 6.0136252, 46.1425338 ], + [ 6.0135172, 46.1424459 ], + [ 6.0133295, 46.1422049 ], + [ 6.0132451, 46.142154 ], + [ 6.013081, 46.1420997 ], + [ 6.0129837, 46.1421165 ], + [ 6.0128964, 46.1421151 ], + [ 6.0128111, 46.142125 ], + [ 6.01274, 46.1421432 ], + [ 6.0127324, 46.14216 ], + [ 6.0126892, 46.142191 ], + [ 6.0126585, 46.1422009 ], + [ 6.0125742, 46.1422024 ], + [ 6.0124609, 46.1421839 ], + [ 6.0123799, 46.1421449 ], + [ 6.0123647, 46.1421471 ], + [ 6.0123257, 46.1421361 ], + [ 6.0122907, 46.1421208 ], + [ 6.0122626, 46.1421267 ], + [ 6.0121941, 46.142119 ], + [ 6.0121079, 46.1421182 ], + [ 6.0120255, 46.1421249 ], + [ 6.0119573, 46.142133 ], + [ 6.0119064, 46.1421451 ], + [ 6.0117376, 46.1421688 ], + [ 6.0116596, 46.1421744 ], + [ 6.0115181, 46.1421736 ], + [ 6.0114273, 46.1421684 ], + [ 6.0112977, 46.1421495 ], + [ 6.0111549, 46.142111 ], + [ 6.0110394, 46.1420315 ], + [ 6.0110063, 46.1419838 ], + [ 6.0109496, 46.1419353 ], + [ 6.0109145, 46.1419286 ], + [ 6.0108565, 46.1419467 ], + [ 6.0107866, 46.1419862 ], + [ 6.0107326, 46.1420654 ], + [ 6.0107236, 46.1421164 ], + [ 6.0106987, 46.1421571 ], + [ 6.010676, 46.1421613 ], + [ 6.0106391, 46.1421896 ], + [ 6.0105774, 46.1422242 ], + [ 6.010515, 46.142247 ], + [ 6.010495, 46.1422482 ], + [ 6.0104753, 46.1422406 ], + [ 6.0104163, 46.1422289 ], + [ 6.0103633, 46.1422278 ], + [ 6.0102655, 46.1422195 ], + [ 6.010251, 46.1422131 ], + [ 6.0101708, 46.1421959 ], + [ 6.0101244, 46.142213 ], + [ 6.010022, 46.1421844 ], + [ 6.0099188, 46.1421612 ], + [ 6.0098723, 46.1421582 ], + [ 6.0098403, 46.1421507 ], + [ 6.0097305, 46.1421029 ], + [ 6.009708, 46.1421086 ], + [ 6.0096034, 46.1420922 ], + [ 6.0095636, 46.1421102 ], + [ 6.009516, 46.1421529 ], + [ 6.0094582, 46.1422635 ], + [ 6.0095069, 46.1422855 ], + [ 6.0095162, 46.1423113 ], + [ 6.0095136, 46.1423532 ], + [ 6.0095238, 46.1424303 ], + [ 6.0094869, 46.1424686 ], + [ 6.0093944, 46.1425261 ], + [ 6.0092663, 46.1425911 ], + [ 6.0092135, 46.1426272 ], + [ 6.0091484, 46.1426415 ], + [ 6.0090433, 46.1426497 ], + [ 6.0090167, 46.1426586 ], + [ 6.0090029, 46.1426689 ], + [ 6.0089292, 46.1426936 ], + [ 6.0088814, 46.1427198 ], + [ 6.0087843, 46.1427609 ], + [ 6.0086463, 46.1428009 ], + [ 6.0085712, 46.1428116 ], + [ 6.0085478, 46.142819 ], + [ 6.0084425, 46.1428123 ], + [ 6.0082661, 46.1427851 ], + [ 6.0080501, 46.1426939 ], + [ 6.0079452, 46.1426721 ], + [ 6.0076921, 46.1425951 ], + [ 6.0075421, 46.1425249 ], + [ 6.0074448, 46.1424718 ], + [ 6.0073562, 46.1423909 ], + [ 6.0073104, 46.1423612 ], + [ 6.0072193, 46.1423229 ], + [ 6.007145, 46.1422772 ], + [ 6.007062, 46.1422365 ], + [ 6.0067413, 46.1421322 ], + [ 6.0065728, 46.1421022 ], + [ 6.0065219, 46.1420963 ], + [ 6.0065009, 46.1421068 ], + [ 6.0064455, 46.1421111 ], + [ 6.0061616, 46.1421237 ], + [ 6.0060264, 46.1421606 ], + [ 6.0059847, 46.1421806 ], + [ 6.006005, 46.1422594 ], + [ 6.0059828, 46.1422772 ], + [ 6.0059616, 46.1423028 ], + [ 6.00593, 46.1423194 ], + [ 6.0059002, 46.1423157 ], + [ 6.0058068, 46.1423323 ], + [ 6.0057091, 46.1423411 ], + [ 6.0056398, 46.1423208 ], + [ 6.005564, 46.142325 ], + [ 6.0054727, 46.1423064 ], + [ 6.0052884, 46.1422903 ], + [ 6.0052868, 46.1422817 ], + [ 6.0052482, 46.1422778 ], + [ 6.0052394, 46.142269 ], + [ 6.0051874, 46.1422673 ], + [ 6.0051923, 46.1422752 ], + [ 6.0051638, 46.1422748 ], + [ 6.0051551, 46.1422677 ], + [ 6.0050526, 46.1422431 ], + [ 6.0049386, 46.1421975 ], + [ 6.0045538, 46.1419921 ], + [ 6.0043511, 46.1419257 ], + [ 6.0041107, 46.1419304 ], + [ 6.0039826, 46.1419513 ], + [ 6.0039584, 46.1419744 ], + [ 6.0038685, 46.1420055 ], + [ 6.0037545, 46.1420151 ], + [ 6.0036769, 46.1419865 ], + [ 6.0035826, 46.1419311 ], + [ 6.0032673, 46.1417808 ], + [ 6.0032293, 46.1417766 ], + [ 6.0031536, 46.1417925 ], + [ 6.0031078, 46.1418145 ], + [ 6.0031008, 46.1418489 ], + [ 6.0030529, 46.1418739 ], + [ 6.0029853, 46.1419253 ], + [ 6.0029332, 46.1419504 ], + [ 6.0028756, 46.141961 ], + [ 6.0028203, 46.141986 ], + [ 6.0028106, 46.1420074 ], + [ 6.0027487, 46.1420548 ], + [ 6.0027451, 46.1420754 ], + [ 6.0026791, 46.1421245 ], + [ 6.0025678, 46.1421812 ], + [ 6.002414, 46.1422123 ], + [ 6.0023698, 46.1422158 ], + [ 6.0020967, 46.1422841 ], + [ 6.0019779, 46.1422942 ], + [ 6.0019523, 46.1423019 ], + [ 6.0017968, 46.1422848 ], + [ 6.0017205, 46.1422682 ], + [ 6.0016986, 46.1422701 ], + [ 6.0016937, 46.1422472 ], + [ 6.0015551, 46.1422075 ], + [ 6.0014559, 46.1421865 ], + [ 6.0013743, 46.1421646 ], + [ 6.0013051, 46.142163 ], + [ 6.0012813, 46.1421701 ], + [ 6.0012532, 46.1421858 ], + [ 6.0012255, 46.142194 ], + [ 6.0012138, 46.1421923 ], + [ 6.0011097, 46.1422821 ], + [ 6.0011053, 46.1422922 ], + [ 6.0010214, 46.1423533 ], + [ 6.0009462, 46.1424512 ], + [ 6.0008911, 46.1425513 ], + [ 6.0007882, 46.1426386 ], + [ 6.0007534, 46.1426573 ], + [ 6.0006909, 46.1426743 ], + [ 6.0006147, 46.1426706 ], + [ 6.0005946, 46.1426562 ], + [ 6.0005772, 46.1426331 ], + [ 6.0005307, 46.1426005 ], + [ 6.0005394, 46.1425941 ], + [ 6.0005518, 46.1425917 ], + [ 6.0005263, 46.1425381 ], + [ 6.000503, 46.1425418 ], + [ 6.0004966, 46.1425581 ], + [ 6.0004076, 46.1425542 ], + [ 6.0003999, 46.1425476 ], + [ 6.0003663, 46.1425599 ], + [ 6.0002805, 46.1425783 ], + [ 6.0002682, 46.1425979 ], + [ 6.0002151, 46.142622 ], + [ 6.0002049, 46.1426283 ], + [ 6.0002023, 46.1426397 ], + [ 6.0001201, 46.1426877 ], + [ 5.9999880999999995, 46.1428665 ], + [ 6.0000124, 46.1429775 ], + [ 5.9999927, 46.1430118 ], + [ 5.9999931, 46.1430463 ], + [ 5.9999313, 46.1431172 ], + [ 5.9998987, 46.1431265 ], + [ 5.9998711, 46.1431447 ], + [ 5.9998565, 46.1431462 ], + [ 5.9998342000000005, 46.1431324 ], + [ 5.9998003, 46.143128 ], + [ 5.9996687, 46.143093 ], + [ 5.9996107, 46.1430904 ], + [ 5.9995996, 46.143077 ], + [ 5.999602, 46.1430664 ], + [ 5.9996189, 46.1430604 ], + [ 5.9995471, 46.1430107 ], + [ 5.9994944, 46.1429458 ], + [ 5.9992105, 46.1428951 ], + [ 5.9991944, 46.1429091 ], + [ 5.9991886999999995, 46.1429276 ], + [ 5.9991082, 46.1429286 ], + [ 5.9990412, 46.1429183 ], + [ 5.9989544, 46.1429104 ], + [ 5.9989425999999995, 46.1429028 ], + [ 5.9986852, 46.1428569 ], + [ 5.9986818, 46.1428794 ], + [ 5.998672, 46.1428857 ], + [ 5.9986714, 46.1429111 ], + [ 5.998612, 46.1429463 ], + [ 5.9985612, 46.1429605 ], + [ 5.9985541, 46.1429546 ], + [ 5.9984611999999995, 46.1430075 ], + [ 5.9984493, 46.1430034 ], + [ 5.9982638, 46.1430268 ], + [ 5.9981215, 46.1430373 ], + [ 5.9980636, 46.1430233 ], + [ 5.9980356, 46.1430053 ], + [ 5.9980389, 46.1429827 ], + [ 5.9979226, 46.1429604 ], + [ 5.9979038, 46.1429503 ], + [ 5.9978255, 46.1429397 ], + [ 5.9976776, 46.1428915 ], + [ 5.9975865, 46.1428574 ], + [ 5.997515, 46.142819 ], + [ 5.9974507, 46.142799 ], + [ 5.9973659, 46.1427845 ], + [ 5.9972948, 46.1428104 ], + [ 5.9971444, 46.1428475 ], + [ 5.9970703, 46.142871 ], + [ 5.9969394, 46.14296 ], + [ 5.9969341, 46.1429857 ], + [ 5.996885, 46.1430812 ], + [ 5.9969117, 46.1431349 ], + [ 5.9968955, 46.1431944 ], + [ 5.9969214, 46.1432675 ], + [ 5.9968417, 46.1433452 ], + [ 5.9967386, 46.1435519 ], + [ 5.9967202, 46.1436064 ], + [ 5.9966593, 46.1436668 ], + [ 5.9965931999999995, 46.1437009 ], + [ 5.9964036, 46.143778 ], + [ 5.9962654, 46.1438001 ], + [ 5.9961333, 46.1438024 ], + [ 5.9960912, 46.1437822 ], + [ 5.9960674, 46.1437912 ], + [ 5.9958587, 46.143831 ], + [ 5.995777, 46.1438634 ], + [ 5.9957758, 46.1438931 ], + [ 5.995707, 46.1439264 ], + [ 5.9957002, 46.1439212 ], + [ 5.9956088, 46.1439561 ], + [ 5.9955988, 46.1439748 ], + [ 5.9955475, 46.143967 ], + [ 5.9952979, 46.1440269 ], + [ 5.9950231, 46.1440351 ], + [ 5.9949464, 46.1440204 ], + [ 5.9948443, 46.1439658 ], + [ 5.9948065, 46.1438916 ], + [ 5.9948224, 46.1438367 ], + [ 5.9948065, 46.1437639 ], + [ 5.9948248, 46.1437354 ], + [ 5.994811, 46.1436947 ], + [ 5.9948172, 46.1436465 ], + [ 5.9947828, 46.1436023 ], + [ 5.9947544, 46.1435905 ], + [ 5.9947098, 46.1435985 ], + [ 5.9946215, 46.1436411 ], + [ 5.994562, 46.1437059 ], + [ 5.9945187, 46.1437448 ], + [ 5.994478, 46.1438259 ], + [ 5.9942629, 46.1440373 ], + [ 5.9942557, 46.1440596 ], + [ 5.9941999, 46.144136 ], + [ 5.9941934, 46.1441338 ], + [ 5.9941507, 46.1442198 ], + [ 5.9941315, 46.1442331 ], + [ 5.9941192999999995, 46.1442993 ], + [ 5.994122, 46.1443633 ], + [ 5.9941495, 46.1444069 ], + [ 5.9941973, 46.144433 ], + [ 5.9942238, 46.1444791 ], + [ 5.9942014, 46.1444882 ], + [ 5.9941957, 46.1445402 ], + [ 5.9941692, 46.1445482 ], + [ 5.9941476, 46.1445634 ], + [ 5.9941014, 46.1445694 ], + [ 5.9940721, 46.1445633 ], + [ 5.994009, 46.1445334 ], + [ 5.9939464000000005, 46.1444807 ], + [ 5.9937857, 46.1444448 ], + [ 5.9937866, 46.1444377 ], + [ 5.9937724, 46.1444308 ], + [ 5.9937675, 46.1444339 ], + [ 5.9936613, 46.1443763 ], + [ 5.9936385, 46.1443698 ], + [ 5.9936298, 46.144356 ], + [ 5.9933479, 46.1442101 ], + [ 5.9933151, 46.1441998 ], + [ 5.9932158, 46.1441389 ], + [ 5.9930024, 46.144049 ], + [ 5.9928294, 46.144009 ], + [ 5.9926051, 46.1439629 ], + [ 5.9921953, 46.1439166 ], + [ 5.9921281, 46.1439136 ], + [ 5.9917625, 46.1438088 ], + [ 5.9911332999999996, 46.1435781 ], + [ 5.990884, 46.1434925 ], + [ 5.9905527, 46.1433527 ], + [ 5.99035, 46.1433033 ], + [ 5.9901737, 46.1433696 ], + [ 5.990021, 46.1434449 ], + [ 5.9899273, 46.1434452 ], + [ 5.9896232, 46.1435105 ], + [ 5.9892658, 46.1436443 ], + [ 5.9891659, 46.1436951 ], + [ 5.9891293, 46.1437474 ], + [ 5.9889796, 46.1438392 ], + [ 5.9889323, 46.1438419 ], + [ 5.9888639999999995, 46.1438249 ], + [ 5.9888017, 46.1437811 ], + [ 5.9887408, 46.1436268 ], + [ 5.9886671, 46.1434852 ], + [ 5.9886352, 46.1433805 ], + [ 5.9885841, 46.1433048 ], + [ 5.988541, 46.1432788 ], + [ 5.9885024, 46.1432705 ], + [ 5.9883942999999995, 46.1432719 ], + [ 5.9882533, 46.1432943 ], + [ 5.9881177, 46.1433278 ], + [ 5.9880007, 46.1433233 ], + [ 5.9878993, 46.1432878 ], + [ 5.9878398, 46.1431818 ], + [ 5.9877123, 46.1430358 ], + [ 5.9876349, 46.1429811 ], + [ 5.9875868, 46.14296 ], + [ 5.9870851, 46.1425905 ], + [ 5.9869899, 46.1425676 ], + [ 5.9868996, 46.1425861 ], + [ 5.9868707, 46.1426054 ], + [ 5.9867105, 46.1427439 ], + [ 5.9866733, 46.1428155 ], + [ 5.986549, 46.1429343 ], + [ 5.9863879, 46.1429094 ], + [ 5.9862645, 46.1428301 ], + [ 5.9861603, 46.1428059 ], + [ 5.9859535, 46.1428716 ], + [ 5.9857524, 46.1430684 ], + [ 5.98561, 46.1432989 ], + [ 5.9855379, 46.143368 ], + [ 5.9854809, 46.1434095 ], + [ 5.9852046, 46.143391 ], + [ 5.9850704, 46.1433341 ], + [ 5.9849238, 46.1433596 ], + [ 5.9846797, 46.1432831 ], + [ 5.9840305, 46.1432022 ], + [ 5.9838451, 46.1431579 ], + [ 5.9837047, 46.1430758 ], + [ 5.9835443, 46.1430112 ], + [ 5.9835034, 46.1429889 ], + [ 5.9834923, 46.1429267 ], + [ 5.9833921, 46.1428069 ], + [ 5.9833294, 46.1427205 ], + [ 5.9832155, 46.142607 ], + [ 5.9831216, 46.1425438 ], + [ 5.9830126, 46.1425173 ], + [ 5.9829227, 46.1424723 ], + [ 5.9827615, 46.1424072 ], + [ 5.9824458, 46.1422907 ], + [ 5.9823367, 46.1415447 ], + [ 5.9829267999999995, 46.1413182 ], + [ 5.9828675, 46.1410117 ], + [ 5.9826995, 46.1406219 ], + [ 5.98264, 46.1406354 ], + [ 5.9819052, 46.1406664 ], + [ 5.9818176, 46.1405564 ], + [ 5.9817716999999995, 46.1404721 ], + [ 5.9817053, 46.1403354 ], + [ 5.9816458, 46.1402042 ], + [ 5.9815528, 46.1400509 ], + [ 5.981403, 46.1398906 ], + [ 5.9813044, 46.1397535 ], + [ 5.9811378, 46.1395975 ], + [ 5.9810078, 46.1394213 ], + [ 5.9809119, 46.1393787 ], + [ 5.9806864, 46.1395395 ], + [ 5.9805305, 46.1396049 ], + [ 5.9803673, 46.1396586 ], + [ 5.9801447, 46.1397115 ], + [ 5.9799587, 46.1397352 ], + [ 5.9797329, 46.1397089 ], + [ 5.9795402, 46.1396605 ], + [ 5.9793071, 46.1395729 ], + [ 5.9790502, 46.1395012 ], + [ 5.9788521, 46.1394069 ], + [ 5.978661, 46.139291 ], + [ 5.9785353, 46.1391985 ], + [ 5.978441, 46.1390957 ], + [ 5.9784278, 46.1389983 ], + [ 5.9781680999999995, 46.1392262 ], + [ 5.9779371, 46.1393509 ], + [ 5.9777005, 46.1394369 ], + [ 5.9775916, 46.1394877 ], + [ 5.9775395, 46.1394079 ], + [ 5.9775463, 46.1392046 ], + [ 5.9775218, 46.138956 ], + [ 5.9774354, 46.1388415 ], + [ 5.9772188, 46.1388199 ], + [ 5.9770719, 46.1388395 ], + [ 5.9768444, 46.1388761 ], + [ 5.9766066, 46.1389225 ], + [ 5.976306, 46.138969 ], + [ 5.9760775, 46.1389993 ], + [ 5.9758014, 46.1390219 ], + [ 5.975451, 46.1390605 ], + [ 5.9753935, 46.1391164 ], + [ 5.9753416999999995, 46.139212 ], + [ 5.9752782, 46.1393623 ], + [ 5.9752195, 46.1394857 ], + [ 5.9751656, 46.1396092 ], + [ 5.9750551, 46.139715699999996 ], + [ 5.9749546, 46.1397972 ], + [ 5.9748684999999995, 46.1399607 ], + [ 5.9748136, 46.1401409 ], + [ 5.9746872, 46.140312 ], + [ 5.9746007, 46.1404917 ], + [ 5.9744581, 46.1406014 ], + [ 5.9743477, 46.1407538 ], + [ 5.9741871, 46.140902 ], + [ 5.9740824, 46.1409456 ], + [ 5.9738593, 46.1410156 ], + [ 5.973673, 46.1410509 ], + [ 5.9734501, 46.1411155 ], + [ 5.9732045, 46.1411969 ], + [ 5.9729277, 46.1412482 ], + [ 5.9727695, 46.1411148 ], + [ 5.9726296, 46.1409726 ], + [ 5.9725614, 46.1408628 ], + [ 5.9724848, 46.1407215 ], + [ 5.9723825, 46.1405843 ], + [ 5.972274, 46.1404812 ], + [ 5.9721575, 46.1405292 ], + [ 5.9719095, 46.1406943 ], + [ 5.9716217, 46.1408542 ], + [ 5.9713612, 46.1410641 ], + [ 5.9711733, 46.1411624 ], + [ 5.9709226, 46.1413993 ], + [ 5.970723, 46.1415434 ], + [ 5.970489, 46.1417311 ], + [ 5.9703108, 46.1419087 ], + [ 5.9700859, 46.1421307 ], + [ 5.9699422, 46.1422863 ], + [ 5.9697977, 46.1424985 ], + [ 5.9696485, 46.1426198 ], + [ 5.9694851, 46.1426348 ], + [ 5.9693133, 46.1426596 ], + [ 5.9692566, 46.1427101 ], + [ 5.9690805000000005, 46.1428086 ], + [ 5.9688422, 46.1429557 ], + [ 5.9685356, 46.143093 ], + [ 5.9683487, 46.143158 ], + [ 5.968085, 46.1432886 ], + [ 5.9678602, 46.1434198 ], + [ 5.9677697, 46.1435085 ], + [ 5.9677500000000006, 46.1436262 ], + [ 5.9678401, 46.1438199 ], + [ 5.9679495, 46.1441443 ], + [ 5.9680222, 46.1443711 ], + [ 5.9679287, 46.1445273 ], + [ 5.9678765, 46.1446282 ], + [ 5.9678941, 46.1448022 ], + [ 5.9678654, 46.1449556 ], + [ 5.9679658, 46.1450702 ], + [ 5.9681155, 46.1452306 ], + [ 5.9682296, 46.1454129 ], + [ 5.9683060999999995, 46.1455614 ], + [ 5.9682782, 46.145678 ], + [ 5.9682262999999995, 46.1457746 ], + [ 5.9681493, 46.1458562 ], + [ 5.9680318, 46.1459852 ], + [ 5.9679149, 46.1460899 ], + [ 5.9677924, 46.1461279 ], + [ 5.9675709999999995, 46.1461807 ], + [ 5.9673265, 46.1462154 ], + [ 5.9671242, 46.1462343 ], + [ 5.9669038, 46.1462485 ], + [ 5.9666924, 46.1462611 ], + [ 5.9664667, 46.1462302 ], + [ 5.9663062, 46.1461822 ], + [ 5.9661100000000005, 46.1460591 ], + [ 5.965865, 46.1458472 ], + [ 5.9656748, 46.1457016 ], + [ 5.9655272, 46.1455477 ], + [ 5.9654737, 46.1454156 ], + [ 5.9654654, 46.1452014 ], + [ 5.9654543, 46.1450429 ], + [ 5.9657602, 46.1449353 ], + [ 5.9656264, 46.1447528 ], + [ 5.9655264, 46.1446219 ], + [ 5.9653447, 46.1444432 ], + [ 5.9652974, 46.1442347 ], + [ 5.9652767, 46.1440878 ], + [ 5.9652666, 46.1438888 ], + [ 5.965255, 46.1437483 ], + [ 5.9652382, 46.1435952 ], + [ 5.9652841, 46.1433924 ], + [ 5.9652997, 46.1432343 ], + [ 5.9652560999999995, 46.1430826 ], + [ 5.9651968, 46.1429234 ], + [ 5.9651742, 46.1428035 ], + [ 5.9651894, 46.142675 ], + [ 5.9651925, 46.1425617 ], + [ 5.9652287, 46.1424614 ], + [ 5.9652493, 46.1423304 ], + [ 5.9652921, 46.1422301 ], + [ 5.9653706, 46.1421071 ], + [ 5.9654139, 46.1419834 ], + [ 5.9654165, 46.1418889 ], + [ 5.9653732999999995, 46.1417678 ], + [ 5.9653878, 46.1416061 ], + [ 5.9654322, 46.1414421 ], + [ 5.9655285, 46.1412921 ], + [ 5.9656488, 46.1410912 ], + [ 5.9657416, 46.140917 ], + [ 5.9659113999999995, 46.1407123 ], + [ 5.9661656, 46.1404043 ], + [ 5.9662968, 46.1401586 ], + [ 5.9666008999999995, 46.1398136 ], + [ 5.9667599, 46.1395907 ], + [ 5.9669379, 46.1394247 ], + [ 5.9671199, 46.1393371 ], + [ 5.9672706, 46.1391771 ], + [ 5.9672822, 46.1390307 ], + [ 5.9672825, 46.1388211 ], + [ 5.9673116, 46.1386586 ], + [ 5.9674527, 46.1386164 ], + [ 5.9676316, 46.1385962 ], + [ 5.9678843, 46.1384924 ], + [ 5.9681425, 46.1383231 ], + [ 5.9683771, 46.1381282 ], + [ 5.9682564, 46.1380474 ], + [ 5.9680888, 46.1380219 ], + [ 5.9679163, 46.1380304 ], + [ 5.9675926, 46.1380361 ], + [ 5.9673496, 46.1380158 ], + [ 5.967118, 46.1379669 ], + [ 5.9669655, 46.1378624 ], + [ 5.9668235, 46.1377634 ], + [ 5.9667151, 46.1376099 ], + [ 5.9665702, 46.1374047 ], + [ 5.9664947999999995, 46.1372336 ], + [ 5.9663894, 46.1370172 ], + [ 5.9662565, 46.1368059 ], + [ 5.9660964, 46.1365609 ], + [ 5.965933, 46.1363257 ], + [ 5.9658526, 46.1361394 ], + [ 5.965757, 46.1360859 ], + [ 5.965619, 46.1360274 ], + [ 5.9654912, 46.1359682 ], + [ 5.9653403, 46.1359393 ], + [ 5.9651797, 46.1358957 ], + [ 5.9649624, 46.1357975 ], + [ 5.9648457, 46.1357204 ], + [ 5.9647098, 46.1356124 ], + [ 5.9645851, 46.1354975 ], + [ 5.9644847, 46.1353829 ], + [ 5.9644075999999995, 46.1352568 ], + [ 5.9641278, 46.1349409 ], + [ 5.9639618, 46.1347569 ], + [ 5.9637885, 46.1346144 ], + [ 5.9635546, 46.1343621 ], + [ 5.9632414, 46.1340296 ], + [ 5.9629382, 46.1337126 ], + [ 5.9626886, 46.1334151 ], + [ 5.9625159, 46.1332383 ], + [ 5.962397, 46.1331504 ], + [ 5.9621515, 46.1330293 ], + [ 5.9619466, 46.1328611 ], + [ 5.9617749, 46.1326429 ], + [ 5.9616109, 46.1324437 ], + [ 5.9614971, 46.1322551 ], + [ 5.9613475, 46.1320939 ], + [ 5.9610635, 46.1318706 ], + [ 5.9607331, 46.1315595 ], + [ 5.9604924, 46.1313233 ], + [ 5.960430000000001, 46.1312388 ], + [ 5.9606667, 46.130954 ], + [ 5.9610592, 46.1307945 ], + [ 5.9611257, 46.1307644 ], + [ 5.9611468, 46.1307247 ], + [ 5.9610861, 46.1306099 ], + [ 5.9609509, 46.1305629 ], + [ 5.9606362, 46.1303465 ], + [ 5.9605687, 46.1302501 ], + [ 5.9598864, 46.1298317 ], + [ 5.958791, 46.1293979 ], + [ 5.957382, 46.1285504 ], + [ 5.9573313, 46.1285755 ], + [ 5.9568463, 46.1287568 ], + [ 5.9564457, 46.1318026 ], + [ 5.9559019, 46.1323556 ], + [ 5.9571235, 46.133275 ], + [ 5.9573792, 46.1334569 ], + [ 5.9576493, 46.1336284 ], + [ 5.9579328, 46.133789 ], + [ 5.9582291, 46.1339383 ], + [ 5.9585369, 46.1340756 ], + [ 5.9588554, 46.1342007 ], + [ 5.9623313, 46.1354753 ], + [ 5.9625094999999995, 46.1355329 ], + [ 5.9626917, 46.1355841 ], + [ 5.9631362, 46.1356922 ], + [ 5.9633573, 46.13575 ], + [ 5.9635738, 46.1358158 ], + [ 5.963785, 46.1358893 ], + [ 5.9639904999999995, 46.1359704 ], + [ 5.9641895, 46.1360589 ], + [ 5.9643817, 46.1361544 ], + [ 5.9649244, 46.1364393 ], + [ 5.9650783, 46.1365267 ], + [ 5.9652221999999995, 46.1366221 ], + [ 5.965355, 46.1367249 ], + [ 5.9654761, 46.1368345 ], + [ 5.9655848, 46.1369502 ], + [ 5.9656803, 46.1370714 ], + [ 5.9661669, 46.1377488 ], + [ 5.9662562999999995, 46.1378878 ], + [ 5.9663286, 46.1380315 ], + [ 5.9663831, 46.1381789 ], + [ 5.9664193999999995, 46.138329 ], + [ 5.9664374, 46.1384807 ], + [ 5.9664369, 46.1386329 ], + [ 5.9664178, 46.1387845 ], + [ 5.9663805, 46.1389345 ], + [ 5.9663249, 46.1390817 ], + [ 5.9662517, 46.1392252 ], + [ 5.9658385, 46.1399377 ], + [ 5.9657312, 46.1401096 ], + [ 5.9656728, 46.140194 ], + [ 5.9655465, 46.1403597 ], + [ 5.9654788, 46.1404407 ], + [ 5.9647705, 46.1412641 ], + [ 5.9646258, 46.1414578 ], + [ 5.9645308, 46.1416108 ], + [ 5.9644746, 46.1417159 ], + [ 5.9644247, 46.1418225 ], + [ 5.9643813, 46.1419305 ], + [ 5.9643443, 46.1420396 ], + [ 5.9641006, 46.143019 ], + [ 5.9640465, 46.1433117 ], + [ 5.964027, 46.1436066 ], + [ 5.9640424, 46.1439015 ], + [ 5.9640925, 46.1441945 ], + [ 5.964177, 46.1444838 ], + [ 5.9642953, 46.1447672 ], + [ 5.9647448999999995, 46.1456998 ], + [ 5.964881, 46.1459559 ], + [ 5.9650391, 46.1462057 ], + [ 5.9652188, 46.1464485 ], + [ 5.9654193, 46.1466832 ], + [ 5.9656399, 46.146909 ], + [ 5.9658798, 46.1471251 ], + [ 5.9665058, 46.1476548 ], + [ 5.9665935, 46.147735 ], + [ 5.9666724, 46.1478195 ], + [ 5.9667419, 46.1479078 ], + [ 5.9668018, 46.1479995 ], + [ 5.9668517, 46.148094 ], + [ 5.9668913, 46.1481909 ], + [ 5.9672997, 46.1493521 ], + [ 5.9673409, 46.1494558 ], + [ 5.967391, 46.1495577 ], + [ 5.9674498, 46.1496572 ], + [ 5.9687809, 46.1517332 ], + [ 5.9689049, 46.1519091 ], + [ 5.9690468, 46.1520782 ], + [ 5.9692061, 46.1522397 ], + [ 5.9718624, 46.1547346 ], + [ 5.9722176, 46.1550823 ], + [ 5.9725527, 46.1554395 ], + [ 5.9728673, 46.1558057 ], + [ 5.9731608, 46.1561802 ], + [ 5.9734328, 46.1565624 ], + [ 5.9736829, 46.1569519 ], + [ 5.9745878, 46.1584449 ], + [ 5.9746143, 46.1585057 ], + [ 5.9746483999999995, 46.1586304 ], + [ 5.9746559999999995, 46.1586937 ], + [ 5.9746553, 46.1589027 ], + [ 5.9746626, 46.1589654 ], + [ 5.9746961, 46.1590889 ], + [ 5.974722, 46.1591491 ], + [ 5.9757832, 46.1609201 ], + [ 5.9764016, 46.1619487 ], + [ 5.9764834, 46.1620755 ], + [ 5.9765744, 46.1621992 ], + [ 5.9766745, 46.1623195 ], + [ 5.9797648, 46.1658203 ], + [ 5.9799171, 46.1660069 ], + [ 5.9800508, 46.1662002 ], + [ 5.9801652999999995, 46.1663994 ], + [ 5.98026, 46.1666035 ], + [ 5.9803344, 46.1668117 ], + [ 5.9803882999999995, 46.1670229 ], + [ 5.9809826, 46.1699243 ], + [ 5.9809955, 46.1700051 ], + [ 5.9810056, 46.1701673 ], + [ 5.9809944999999995, 46.1703296 ], + [ 5.9809149, 46.1707239 ], + [ 5.9808987, 46.1708297 ], + [ 5.9808946, 46.170936 ], + [ 5.9809025, 46.1710423 ], + [ 5.9809224, 46.1711478 ], + [ 5.9809542, 46.1712518 ], + [ 5.9809978, 46.1713538 ], + [ 5.9818222, 46.1730388 ], + [ 5.9818756, 46.1731336 ], + [ 5.9819411, 46.1732246 ], + [ 5.9820182, 46.1733112 ], + [ 5.9821063, 46.1733926 ], + [ 5.9822045, 46.1734681 ], + [ 5.9823122, 46.1735371 ], + [ 5.9824285, 46.173599 ], + [ 5.9825523, 46.1736534 ], + [ 5.9826827, 46.1736998 ], + [ 5.9828187, 46.1737379 ], + [ 5.982959, 46.1737672 ], + [ 5.9831025, 46.1737876 ], + [ 5.9832482, 46.1737988 ], + [ 5.9833947, 46.1738009 ], + [ 5.9835408, 46.1737938 ], + [ 5.9836855, 46.1737775 ], + [ 5.9838274, 46.1737522 ], + [ 5.9839655, 46.1737181 ], + [ 5.9840985, 46.1736755 ], + [ 5.9842255, 46.1736246 ], + [ 5.9845065, 46.1735 ], + [ 5.9847709, 46.1733717 ], + [ 5.9850191, 46.1732286 ], + [ 5.9852494, 46.1730717 ], + [ 5.9854601, 46.172902 ], + [ 5.9856498, 46.1727208 ], + [ 5.9858173, 46.1725293 ], + [ 5.9859613, 46.1723287 ], + [ 5.9860808, 46.1721206 ], + [ 5.9861751, 46.1719063 ], + [ 5.9862435, 46.1716873 ], + [ 5.9863833, 46.1711281 ], + [ 5.9864017, 46.1710701 ], + [ 5.9864272, 46.1710135 ], + [ 5.9864598, 46.1709586 ], + [ 5.9864993, 46.170906 ], + [ 5.9865452, 46.170856 ], + [ 5.9865973, 46.170809 ], + [ 5.9866551, 46.1707653 ], + [ 5.9867182, 46.1707253 ], + [ 5.9867862, 46.1706894 ], + [ 5.9868584, 46.1706577 ], + [ 5.9869344, 46.1706306 ], + [ 5.9870135, 46.1706082 ], + [ 5.9870951, 46.1705907 ], + [ 5.9871786, 46.1705783 ], + [ 5.9872634, 46.170571 ], + [ 5.9873487999999995, 46.1705689 ], + [ 5.987434, 46.170572 ], + [ 5.9875186, 46.1705803 ], + [ 5.9876018, 46.1705938 ], + [ 5.987683, 46.1706123 ], + [ 5.9877614999999995, 46.1706357 ], + [ 5.9878367, 46.1706637 ], + [ 5.9879081, 46.1706963 ], + [ 5.9879751, 46.1707331 ], + [ 5.9880372, 46.1707738 ], + [ 5.9880939, 46.1708182 ], + [ 5.9881448, 46.1708659 ], + [ 5.9881895, 46.1709165 ], + [ 5.9885109, 46.1713192 ], + [ 5.9886115, 46.171456 ], + [ 5.9886984, 46.1715973 ], + [ 5.9887711, 46.1717424 ], + [ 5.9888295, 46.1718906 ], + [ 5.9888731, 46.1720412 ], + [ 5.9889019, 46.1721936 ], + [ 5.9890518, 46.1732729 ], + [ 5.989079, 46.1734349 ], + [ 5.9891157, 46.173596 ], + [ 5.9891616, 46.173756 ], + [ 5.9892168, 46.1739145 ], + [ 5.9892812, 46.1740714 ], + [ 5.9893546, 46.1742263 ], + [ 5.9899757, 46.1754541 ], + [ 5.9901042, 46.1756734 ], + [ 5.9902622, 46.1758831 ], + [ 5.9904483, 46.1760814 ], + [ 5.9906609, 46.1762664 ], + [ 5.990898, 46.1764364 ], + [ 5.9911574, 46.17659 ], + [ 5.9914366999999995, 46.1767256 ], + [ 5.9917334, 46.176842 ], + [ 5.9914199, 46.1771615 ], + [ 5.9914741, 46.1771881 ], + [ 5.9914254, 46.1772402 ], + [ 5.9913392, 46.1772874 ], + [ 5.9913218, 46.1772923 ], + [ 5.9913918, 46.177306 ], + [ 5.9916989, 46.1774155 ], + [ 5.9918859, 46.1774457 ], + [ 5.9923108, 46.1775385 ], + [ 5.9928064, 46.1775467 ], + [ 5.993268, 46.1775427 ], + [ 5.9937502, 46.1774724 ], + [ 5.9940912, 46.1774489 ], + [ 5.9944834, 46.1773755 ], + [ 5.9948573, 46.1773327 ], + [ 5.9953297, 46.1772956 ], + [ 5.9958246, 46.1772408 ], + [ 5.9961988, 46.1772015 ], + [ 5.9965834000000005, 46.1771515 ], + [ 5.9969729, 46.1771195 ], + [ 5.9972841, 46.1770569 ], + [ 5.9976327, 46.1769885 ], + [ 5.9980249, 46.1769162 ], + [ 5.9983457, 46.1768266 ], + [ 5.9986128999999995, 46.1768129 ], + [ 5.9989222, 46.17678 ], + [ 5.9993902, 46.1766519 ], + [ 5.9999692, 46.1765036 ], + [ 6.0005021, 46.1763881 ], + [ 6.0007963, 46.1763297 ], + [ 6.0010884, 46.1763011 ], + [ 6.0013662, 46.176238 ], + [ 6.001879, 46.1761447 ], + [ 6.0022224, 46.176078 ], + [ 6.002476, 46.1760371 ], + [ 6.0027216, 46.175962 ], + [ 6.0029839, 46.1758879 ], + [ 6.0032779, 46.1758359 ], + [ 6.0034423, 46.1757983 ], + [ 6.0037836, 46.1757658 ], + [ 6.0042284, 46.1757507 ], + [ 6.0045691, 46.175738 ], + [ 6.0047744, 46.1757191 ], + [ 6.0050006, 46.1757335 ], + [ 6.0051788, 46.1757664 ], + [ 6.0054256, 46.1758272 ], + [ 6.005635, 46.1759027 ], + [ 6.0058687, 46.1759696 ], + [ 6.0061263, 46.1760233 ], + [ 6.0063747, 46.1760912 ], + [ 6.0066078, 46.176185 ], + [ 6.0067835, 46.1762448 ], + [ 6.0068621, 46.1763178 ], + [ 6.006893, 46.1763749 ], + [ 6.0070284, 46.1763955 ], + [ 6.0071832, 46.1764209 ], + [ 6.0074406, 46.1764808 ], + [ 6.0077201, 46.1765807 ], + [ 6.0079926, 46.1766714 ], + [ 6.0082966, 46.176777799999996 ], + [ 6.0085538, 46.1768494 ], + [ 6.0085694, 46.176856 ], + [ 6.008558, 46.1768747 ], + [ 6.0082512, 46.177381 ], + [ 6.0078454, 46.1781776 ], + [ 6.0075883, 46.1787988 ], + [ 6.0074895, 46.1791575 ], + [ 6.0074089, 46.1793697 ], + [ 6.0072318, 46.1794556 ], + [ 6.0071022, 46.1794576 ], + [ 6.0067734, 46.1794003 ], + [ 6.0064897, 46.1793535 ], + [ 6.0063557, 46.179323 ], + [ 6.0063793, 46.1795042 ], + [ 6.0068103, 46.1808 ], + [ 6.0069259, 46.1810894 ], + [ 6.007017, 46.1812264 ], + [ 6.0071491, 46.1813756 ], + [ 6.0072923, 46.1815934 ], + [ 6.0074436, 46.1818004 ], + [ 6.007511, 46.1819479 ], + [ 6.007582, 46.1822952 ], + [ 6.0076088, 46.182616 ], + [ 6.0076013, 46.1829047 ], + [ 6.0076653, 46.1832716 ], + [ 6.0077476, 46.1835894 ], + [ 6.0077472, 46.1838035 ], + [ 6.0077086, 46.1839334 ], + [ 6.0075923, 46.1839869 ], + [ 6.0074625, 46.1839952 ], + [ 6.0073012, 46.1839732 ], + [ 6.0071016, 46.1838628 ], + [ 6.0069499, 46.1838303 ], + [ 6.0066587, 46.1838194 ], + [ 6.0064516, 46.1838591 ], + [ 6.0062942, 46.1840855 ], + [ 6.0059562, 46.1849127 ], + [ 6.0057224, 46.1857257 ], + [ 6.0056181, 46.1859988 ], + [ 6.0054732, 46.1861832 ], + [ 6.0052115, 46.1863464 ], + [ 6.0048793, 46.1865077 ], + [ 6.003536, 46.1871015 ], + [ 6.0031515, 46.1873405 ], + [ 6.0028797, 46.1875781 ], + [ 6.002495, 46.1880141 ], + [ 6.0020702, 46.188563 ], + [ 6.0017684, 46.1889515 ], + [ 6.0014939, 46.1893852 ], + [ 6.0011975, 46.1898178 ], + [ 6.0008378, 46.1901929 ], + [ 6.0003711, 46.1907916 ], + [ 6.0006313, 46.1911017 ], + [ 6.0004349, 46.1914744 ], + [ 6.000716, 46.1917173 ], + [ 6.0007691, 46.1918196 ], + [ 6.0006666, 46.1919308 ], + [ 6.0004704, 46.1920947 ], + [ 6.0002561, 46.1923565 ], + [ 6.0001475, 46.1925954 ], + [ 6.0000898, 46.1929275 ], + [ 6.0001137, 46.193429 ], + [ 6.0001489, 46.194366 ], + [ 6.0001726, 46.1952345 ], + [ 6.0001223, 46.1956173 ], + [ 6.0000464, 46.1960392 ], + [ 5.9999098, 46.1964918 ], + [ 5.9997638, 46.1966239 ], + [ 5.9996398, 46.1967186 ], + [ 5.9994838, 46.1967373 ], + [ 5.9992411, 46.1966973 ], + [ 5.9977757, 46.1964547 ], + [ 5.9976707, 46.1964632 ], + [ 5.9978785, 46.1965351 ], + [ 5.9981246, 46.1966318 ], + [ 5.9982727, 46.1967704 ], + [ 5.9983542, 46.196919 ], + [ 5.9983958, 46.1970618 ], + [ 5.9982321, 46.1974186 ], + [ 5.9980399, 46.1976896 ], + [ 5.9977986, 46.1978422 ], + [ 5.9976335, 46.197913 ], + [ 5.9975086, 46.1979367 ], + [ 5.9973143, 46.1979323 ], + [ 5.9969117, 46.1978624 ], + [ 5.9965885, 46.1978367 ], + [ 5.9963923999999995, 46.1978549 ], + [ 5.9962756, 46.1979082 ], + [ 5.9962657, 46.1979936 ], + [ 5.9971906, 46.1981396 ], + [ 5.997313, 46.1981644 ], + [ 5.99744, 46.1982173 ], + [ 5.9974637, 46.1984093 ], + [ 5.997453, 46.1992998 ], + [ 5.9973013, 46.1997361 ], + [ 5.9970793, 46.2000922 ], + [ 5.9966448, 46.200353 ], + [ 5.9961614, 46.2006077 ], + [ 5.9955559, 46.2009033 ], + [ 5.995093, 46.2010728 ], + [ 5.9946167, 46.2011972 ], + [ 5.9941571, 46.2012768 ], + [ 5.9938217, 46.2013147 ], + [ 5.9936366, 46.2013168 ], + [ 5.9934792, 46.2013401 ], + [ 5.993437, 46.201407 ], + [ 5.9934612, 46.2015765 ], + [ 5.9935315, 46.2018103 ], + [ 5.9934973, 46.2019673 ], + [ 5.9933943, 46.2020938 ], + [ 5.9932849, 46.202204 ], + [ 5.9930753, 46.2021544 ], + [ 5.9926808, 46.2020658 ], + [ 5.9922269, 46.202033 ], + [ 5.9918542, 46.2020246 ], + [ 5.9913745, 46.202077 ], + [ 5.9909578, 46.2021121 ], + [ 5.9905352, 46.2021022 ], + [ 5.9900269, 46.2020795 ], + [ 5.9895634, 46.2020573 ], + [ 5.9894112, 46.2020428 ], + [ 5.9886163, 46.2018103 ], + [ 5.9885325, 46.2018875 ], + [ 5.988474, 46.2019579 ], + [ 5.9883316, 46.2019956 ], + [ 5.9880984, 46.2019944 ], + [ 5.9878554, 46.2019661 ], + [ 5.9876512, 46.2019572 ], + [ 5.9875001999999995, 46.2019238 ], + [ 5.9873238, 46.2016903 ], + [ 5.9867501, 46.2013383 ], + [ 5.9863195, 46.2011636 ], + [ 5.9858562, 46.201002 ], + [ 5.9853091, 46.2009105 ], + [ 5.9848306000000004, 46.2008764 ], + [ 5.9843258, 46.2008987 ], + [ 5.983976, 46.2009473 ], + [ 5.9838626, 46.2009332 ], + [ 5.9837622, 46.2008113 ], + [ 5.983624, 46.2006504 ], + [ 5.9835608, 46.2005883 ], + [ 5.9832084, 46.2006864 ], + [ 5.9827557, 46.2007885 ], + [ 5.9824231999999995, 46.200821 ], + [ 5.9822766, 46.2008219 ], + [ 5.9821329, 46.2007742 ], + [ 5.9819901, 46.2006914 ], + [ 5.981868, 46.200553 ], + [ 5.9817005, 46.2003196 ], + [ 5.9815553, 46.2000838 ], + [ 5.981477, 46.1999128 ], + [ 5.9814311, 46.1998393 ], + [ 5.9812756, 46.1998409 ], + [ 5.9805065, 46.199965 ], + [ 5.9803123, 46.1999598 ], + [ 5.9802315, 46.1999246 ], + [ 5.9801334, 46.19981 ], + [ 5.9800464, 46.1997288 ], + [ 5.9799543, 46.1996295 ], + [ 5.9798482, 46.1996785 ], + [ 5.9796339, 46.1997414 ], + [ 5.979438, 46.1997533 ], + [ 5.9792531, 46.1996879 ], + [ 5.9790332, 46.1995249 ], + [ 5.9788478, 46.1993399 ], + [ 5.9786635, 46.1991144 ], + [ 5.9785126, 46.1988857 ], + [ 5.9784544, 46.1987492 ], + [ 5.978368, 46.1985437 ], + [ 5.9781563, 46.1982235 ], + [ 5.9779209, 46.1979091 ], + [ 5.9776573, 46.1976429 ], + [ 5.9773155, 46.1973416 ], + [ 5.977175, 46.1972192 ], + [ 5.9770643, 46.1971558 ], + [ 5.976903, 46.1971293 ], + [ 5.9760515, 46.1970806 ], + [ 5.9758109, 46.1970297 ], + [ 5.9754885, 46.1969725 ], + [ 5.9752104, 46.1968915 ], + [ 5.9749771, 46.196803 ], + [ 5.9748827, 46.1967487 ], + [ 5.9748536, 46.1966692 ], + [ 5.975021, 46.1965715 ], + [ 5.9751056, 46.1965168 ], + [ 5.9751176, 46.196445 ], + [ 5.9749711, 46.1962613 ], + [ 5.9748158, 46.1961046 ], + [ 5.9746448, 46.1959602 ], + [ 5.9743391, 46.1957619 ], + [ 5.9740245, 46.1955671 ], + [ 5.9736514, 46.1953625 ], + [ 5.9733662, 46.1950853 ], + [ 5.9732118, 46.1949123 ], + [ 5.9731123, 46.1947563 ], + [ 5.9731176, 46.1946511 ], + [ 5.9730822, 46.1945642 ], + [ 5.9729452, 46.1945112 ], + [ 5.9727969, 46.19444 ], + [ 5.9727247, 46.1943706 ], + [ 5.9727585, 46.1942253 ], + [ 5.9728638, 46.1940584 ], + [ 5.9729589, 46.1938959 ], + [ 5.9729801, 46.1938296 ], + [ 5.9729765, 46.1938258 ], + [ 5.9718682, 46.1941815 ], + [ 5.9673684, 46.1957473 ], + [ 5.9637266, 46.1970078 ], + [ 5.9637369, 46.197041 ], + [ 5.9637604, 46.197046 ], + [ 5.9638317999999995, 46.1970885 ], + [ 5.9638026, 46.1971047 ], + [ 5.9637545, 46.1971585 ], + [ 5.9637576, 46.1972057 ], + [ 5.9638734, 46.1973002 ], + [ 5.9639584, 46.1973345 ], + [ 5.9639664, 46.1973533 ], + [ 5.9639597, 46.197364 ], + [ 5.963864, 46.1973951 ], + [ 5.9638523, 46.1974284 ], + [ 5.9639061, 46.1974542 ], + [ 5.9639273, 46.1974716 ], + [ 5.9639396, 46.1974903 ], + [ 5.9639661, 46.197505 ], + [ 5.9640293, 46.1975271 ], + [ 5.9640736, 46.1975669 ], + [ 5.9640838, 46.1975832 ], + [ 5.9641025, 46.1976388 ], + [ 5.9640761, 46.1976576 ], + [ 5.9640587, 46.1976794 ], + [ 5.9640547999999995, 46.1976933 ], + [ 5.9640661999999995, 46.1977203 ], + [ 5.9640939, 46.1977224 ], + [ 5.9641623, 46.1977011 ], + [ 5.9641639, 46.1976896 ], + [ 5.9641782, 46.1976745 ], + [ 5.9642257, 46.1976858 ], + [ 5.9642591, 46.1977453 ], + [ 5.9642513, 46.1977884 ], + [ 5.964258, 46.1978164 ], + [ 5.9642831, 46.1978432 ], + [ 5.9643139, 46.1978518 ], + [ 5.9643546, 46.1978758 ], + [ 5.9644188, 46.197924 ], + [ 5.9644575, 46.1979619 ], + [ 5.964466, 46.1979966 ], + [ 5.9644563999999995, 46.1980462 ], + [ 5.9644680999999995, 46.1980621 ], + [ 5.9644807, 46.1981041 ], + [ 5.9644829999999995, 46.1981183 ], + [ 5.9644782, 46.1981331 ], + [ 5.9645109, 46.1981864 ], + [ 5.9645697, 46.198211 ], + [ 5.96463, 46.1982192 ], + [ 5.964648, 46.1982361 ], + [ 5.9646501999999995, 46.1982828 ], + [ 5.9646301, 46.1983114 ], + [ 5.9645959, 46.1983314 ], + [ 5.9645893, 46.1983444 ], + [ 5.964595, 46.1983896 ], + [ 5.9646249000000005, 46.1983936 ], + [ 5.9646555, 46.1984124 ], + [ 5.9646608, 46.1984741 ], + [ 5.9646399, 46.1985235 ], + [ 5.9646504, 46.1985765 ], + [ 5.9646671, 46.198602 ], + [ 5.9646694, 46.198711 ], + [ 5.9646564, 46.1987913 ], + [ 5.9646787, 46.1988234 ], + [ 5.9647453, 46.1988687 ], + [ 5.9648636, 46.1989689 ], + [ 5.9649393, 46.1989933 ], + [ 5.9649735, 46.1989863 ], + [ 5.9649998, 46.1989945 ], + [ 5.9650967, 46.1990064 ], + [ 5.9651568, 46.1989949 ], + [ 5.9651891, 46.1990062 ], + [ 5.9652385, 46.1990319 ], + [ 5.9652818, 46.1991116 ], + [ 5.965408, 46.1992946 ], + [ 5.9654443, 46.1993261 ], + [ 5.9654647, 46.1993611 ], + [ 5.9655448, 46.1994617 ], + [ 5.9656353, 46.1995323 ], + [ 5.9657376, 46.1995673 ], + [ 5.9659153, 46.1996435 ], + [ 5.9660485, 46.1996871 ], + [ 5.9660914, 46.1996929 ], + [ 5.9662324, 46.199638 ], + [ 5.9662444, 46.1996269 ], + [ 5.9662762, 46.1996293 ], + [ 5.9663009, 46.1996448 ], + [ 5.966354, 46.1996902 ], + [ 5.9663937, 46.199713 ], + [ 5.9664836, 46.1997794 ], + [ 5.9665862, 46.1998181 ], + [ 5.9666341, 46.1998402 ], + [ 5.9666771999999995, 46.1998774 ], + [ 5.9666989, 46.1999151 ], + [ 5.9667033, 46.1999415 ], + [ 5.9667445, 46.1999842 ], + [ 5.966781, 46.2000034 ], + [ 5.9668551, 46.1999997 ], + [ 5.9668725, 46.1999932 ], + [ 5.9669366, 46.1999405 ], + [ 5.9670274, 46.1998783 ], + [ 5.9671427, 46.199887 ], + [ 5.9672667, 46.1999432 ], + [ 5.9673332, 46.2000377 ], + [ 5.9674096, 46.2001001 ], + [ 5.9674911999999996, 46.2001312 ], + [ 5.9675545, 46.2001789 ], + [ 5.9675443999999995, 46.2002355 ], + [ 5.9675286, 46.2002542 ], + [ 5.9675556, 46.2002724 ], + [ 5.9675927, 46.2002821 ], + [ 5.9677502, 46.200235 ], + [ 5.9677633, 46.2002047 ], + [ 5.9677467, 46.2001343 ], + [ 5.9677787, 46.2001081 ], + [ 5.967822, 46.2000935 ], + [ 5.9678942, 46.2001159 ], + [ 5.9679465, 46.2001487 ], + [ 5.9679866, 46.2002083 ], + [ 5.9680175, 46.2002365 ], + [ 5.9680494, 46.2002443 ], + [ 5.9681223, 46.2002464 ], + [ 5.9681285, 46.2002026 ], + [ 5.9681169, 46.2001604 ], + [ 5.9681318999999995, 46.2000229 ], + [ 5.9681799, 46.2000159 ], + [ 5.9682122, 46.2000176 ], + [ 5.9682451, 46.200038 ], + [ 5.9683108, 46.2001167 ], + [ 5.9683483, 46.2001415 ], + [ 5.9684428, 46.2001867 ], + [ 5.9685289, 46.2002175 ], + [ 5.9686223, 46.2002668 ], + [ 5.968657, 46.2003079 ], + [ 5.9686957, 46.2003667 ], + [ 5.9687176, 46.2004371 ], + [ 5.9687241, 46.2005104 ], + [ 5.9687324, 46.2005405 ], + [ 5.9687261, 46.200607 ], + [ 5.9687503, 46.200632 ], + [ 5.9687852, 46.2006368 ], + [ 5.9690065, 46.2005564 ], + [ 5.9690476, 46.2005216 ], + [ 5.9691043, 46.2005139 ], + [ 5.9691595, 46.2005332 ], + [ 5.9691939, 46.2005835 ], + [ 5.9691773, 46.2007112 ], + [ 5.9691839, 46.2007601 ], + [ 5.9692108, 46.2008046 ], + [ 5.9692573, 46.2009059 ], + [ 5.9692827, 46.2009982 ], + [ 5.9692748, 46.2010725 ], + [ 5.9692525, 46.2011258 ], + [ 5.9692351, 46.2011922 ], + [ 5.9692461, 46.2012191 ], + [ 5.9692969, 46.2012321 ], + [ 5.9693469, 46.2012259 ], + [ 5.9693781, 46.2012093 ], + [ 5.9694739, 46.2011812 ], + [ 5.9695333999999995, 46.201156 ], + [ 5.969575, 46.2011014 ], + [ 5.9696812, 46.2010705 ], + [ 5.9697098, 46.2010348 ], + [ 5.9697652, 46.2010411 ], + [ 5.9698343, 46.2011559 ], + [ 5.9699525, 46.2012027 ], + [ 5.9700285, 46.201221 ], + [ 5.9701251, 46.201283 ], + [ 5.9701958, 46.2013525 ], + [ 5.9702953999999995, 46.2014258 ], + [ 5.970321, 46.2014501 ], + [ 5.9703636, 46.201469 ], + [ 5.970395, 46.2014764 ], + [ 5.9704515, 46.2014645 ], + [ 5.970467, 46.2014702 ], + [ 5.9704821, 46.2015116 ], + [ 5.9704552, 46.201625 ], + [ 5.9704783, 46.2016887 ], + [ 5.970518, 46.201726 ], + [ 5.9705896, 46.2017085 ], + [ 5.9706153, 46.2016744 ], + [ 5.9708193, 46.2015911 ], + [ 5.9708427, 46.2015641 ], + [ 5.9708875, 46.2015407 ], + [ 5.9709607, 46.2015403 ], + [ 5.9710167, 46.2015649 ], + [ 5.971039, 46.2016169 ], + [ 5.9710772, 46.2016444 ], + [ 5.9711203, 46.2016501 ], + [ 5.9711822, 46.2016414 ], + [ 5.9713549, 46.2015702 ], + [ 5.9714271, 46.2015909 ], + [ 5.9715278, 46.2015903 ], + [ 5.9715708, 46.2016112 ], + [ 5.9716552, 46.2016731 ], + [ 5.9717082999999995, 46.2017023 ], + [ 5.971766, 46.2017689 ], + [ 5.9719701, 46.2019659 ], + [ 5.9720404, 46.2020858 ], + [ 5.9720916, 46.2021316 ], + [ 5.972107, 46.2021552 ], + [ 5.97215, 46.2021821 ], + [ 5.9722029, 46.2021828 ], + [ 5.9722301, 46.2021634 ], + [ 5.97224, 46.2021621 ], + [ 5.9722791, 46.2021655 ], + [ 5.9723071999999995, 46.2021615 ], + [ 5.9723203, 46.2021303 ], + [ 5.9723652, 46.202117 ], + [ 5.9724183, 46.2021256 ], + [ 5.9724626999999995, 46.2021274 ], + [ 5.9726224, 46.202159 ], + [ 5.9726835, 46.2021736 ], + [ 5.9727383, 46.2021949 ], + [ 5.972728, 46.202241 ], + [ 5.972718, 46.2022513 ], + [ 5.9726834, 46.2022703 ], + [ 5.972641, 46.2022602 ], + [ 5.972604, 46.2022646 ], + [ 5.9725705, 46.2022849 ], + [ 5.9725605999999996, 46.2023112 ], + [ 5.9725544, 46.2023538 ], + [ 5.9725317, 46.2023803 ], + [ 5.9725421, 46.2024022 ], + [ 5.9725968, 46.2024162 ], + [ 5.972651, 46.2024233 ], + [ 5.9727795, 46.2024125 ], + [ 5.9728058, 46.2024131 ], + [ 5.9728737, 46.2024198 ], + [ 5.9730032, 46.2024393 ], + [ 5.9730887, 46.202459 ], + [ 5.9732644, 46.2024915 ], + [ 5.9733932, 46.2025336 ], + [ 5.9734299, 46.2025752 ], + [ 5.9734437, 46.2026281 ], + [ 5.9733996, 46.2026861 ], + [ 5.973397, 46.2027096 ], + [ 5.9734308, 46.2027358 ], + [ 5.9734853, 46.20275 ], + [ 5.9735182, 46.2027778 ], + [ 5.9734437, 46.2028164 ], + [ 5.9733903999999995, 46.2028345 ], + [ 5.973278, 46.2028609 ], + [ 5.9732529, 46.2029313 ], + [ 5.9732074, 46.202973 ], + [ 5.9731551, 46.2029907 ], + [ 5.9731026, 46.2030219 ], + [ 5.9730527, 46.2030877 ], + [ 5.9730359, 46.2031724 ], + [ 5.9729928, 46.2032316 ], + [ 5.9729186, 46.2032552 ], + [ 5.9728858, 46.2032896 ], + [ 5.972831, 46.2033278 ], + [ 5.9727823, 46.2033398 ], + [ 5.9727757, 46.2033557 ], + [ 5.9727813, 46.2033723 ], + [ 5.9728131, 46.2034013 ], + [ 5.9728364, 46.2034129 ], + [ 5.9728746, 46.2034437 ], + [ 5.9728823, 46.2034627 ], + [ 5.972876, 46.203484 ], + [ 5.9728476, 46.2035014 ], + [ 5.972835, 46.2035206 ], + [ 5.9728316, 46.2036002 ], + [ 5.9728088, 46.2036172 ], + [ 5.9726951, 46.2036508 ], + [ 5.9726626, 46.2036568 ], + [ 5.9726194, 46.2036814 ], + [ 5.9725793, 46.2036963 ], + [ 5.9725522, 46.2037152 ], + [ 5.9724974, 46.2037411 ], + [ 5.9723777, 46.2037656 ], + [ 5.9723439, 46.2037889 ], + [ 5.9721767, 46.203851 ], + [ 5.972082, 46.2038567 ], + [ 5.9720227, 46.2038792 ], + [ 5.9719472, 46.2039342 ], + [ 5.9719207, 46.2039664 ], + [ 5.9719103, 46.2039961 ], + [ 5.9718883, 46.2040158 ], + [ 5.9717609, 46.2040817 ], + [ 5.9717101, 46.2041296 ], + [ 5.9716313, 46.204175 ], + [ 5.9715931, 46.2041884 ], + [ 5.9715239, 46.2042541 ], + [ 5.9714107, 46.2042789 ], + [ 5.9713560999999995, 46.2043258 ], + [ 5.9712092, 46.2043327 ], + [ 5.9711167, 46.204298 ], + [ 5.9709269, 46.2043303 ], + [ 5.9708448, 46.2043652 ], + [ 5.9707455, 46.2043834 ], + [ 5.9707503, 46.2044304 ], + [ 5.970732, 46.2044493 ], + [ 5.9707125, 46.2044561 ], + [ 5.9706835, 46.2044553 ], + [ 5.9706553, 46.204461 ], + [ 5.9706491, 46.2045054 ], + [ 5.9706765, 46.2045919 ], + [ 5.9707471, 46.2046694 ], + [ 5.9707639, 46.2047018 ], + [ 5.970732, 46.2047487 ], + [ 5.9707224, 46.2047815 ], + [ 5.9707253, 46.2048108 ], + [ 5.9708176, 46.2048774 ], + [ 5.9708245, 46.2049047 ], + [ 5.9708184, 46.2049234 ], + [ 5.9707796, 46.2049523 ], + [ 5.9707026, 46.2049746 ], + [ 5.9706329, 46.2050021 ], + [ 5.9705879, 46.2050297 ], + [ 5.9705657, 46.2050523 ], + [ 5.9705272, 46.2050784 ], + [ 5.9704975, 46.2050918 ], + [ 5.9704708, 46.2051109 ], + [ 5.970434, 46.2051222 ], + [ 5.9703531, 46.2051668 ], + [ 5.9702619, 46.2052028 ], + [ 5.97022, 46.2052238 ], + [ 5.9701871, 46.2052629 ], + [ 5.9701863, 46.2053023 ], + [ 5.9700985, 46.2055102 ], + [ 5.9700902, 46.2055378 ], + [ 5.9700898, 46.2055772 ], + [ 5.9700385, 46.2056767 ], + [ 5.9699583, 46.2057672 ], + [ 5.9699174, 46.2058489 ], + [ 5.9698147, 46.2058928 ], + [ 5.969774, 46.2059693 ], + [ 5.9697623, 46.2060009 ], + [ 5.9699314999999995, 46.2060244 ], + [ 5.9702459999999995, 46.2060807 ], + [ 5.9703963, 46.2061366 ], + [ 5.9705551, 46.206208 ], + [ 5.9706814, 46.2062717 ], + [ 5.9707773, 46.2063188 ], + [ 5.9709221, 46.2063405 ], + [ 5.9710303, 46.2063086 ], + [ 5.9711824, 46.2061927 ], + [ 5.9713391, 46.2061021 ], + [ 5.9714665, 46.2060489 ], + [ 5.9715676, 46.2060844 ], + [ 5.9718433, 46.2062984 ], + [ 5.9722524, 46.2066979 ], + [ 5.9726576, 46.2070504 ], + [ 5.9727621, 46.2071094 ], + [ 5.9729509, 46.2070344 ], + [ 5.9741589, 46.2061044 ], + [ 5.974266, 46.2060347 ], + [ 5.9743908999999995, 46.2060148 ], + [ 5.974763, 46.2060457 ], + [ 5.9753348, 46.2060927 ], + [ 5.9757029, 46.2060947 ], + [ 5.975856, 46.206076 ], + [ 5.9759797, 46.206056 ], + [ 5.9760488, 46.2060012 ], + [ 5.9761047, 46.2058516 ], + [ 5.9760602, 46.2054219 ], + [ 5.9759986, 46.2050189 ], + [ 5.975981, 46.204845 ], + [ 5.9760023, 46.2047328 ], + [ 5.9760053, 46.2046654 ], + [ 5.9761159, 46.2046048 ], + [ 5.9762721, 46.2045357 ], + [ 5.9766769, 46.2044214 ], + [ 5.9769382, 46.2043869 ], + [ 5.9771433, 46.2043347 ], + [ 5.9773076, 46.2042891 ], + [ 5.9774007000000005, 46.2042507 ], + [ 5.9774429, 46.2041685 ], + [ 5.9774737, 46.2040942 ], + [ 5.9775312, 46.2040167 ], + [ 5.9776413999999995, 46.203974 ], + [ 5.9778035, 46.2039671 ], + [ 5.9800438, 46.2043074 ], + [ 5.9801378, 46.2041853 ], + [ 5.9802556, 46.2040978 ], + [ 5.9804547, 46.2040122 ], + [ 5.9808686, 46.2038574 ], + [ 5.9823217, 46.2033561 ], + [ 5.9825786, 46.2032837 ], + [ 5.9827199, 46.2031965 ], + [ 5.9829196, 46.2030885 ], + [ 5.9833413, 46.2029742 ], + [ 5.98367, 46.2028912 ], + [ 5.9839985, 46.2028136 ], + [ 5.9843250999999995, 46.2027709 ], + [ 5.9846675, 46.2027501 ], + [ 5.9850085, 46.2027465 ], + [ 5.9853489, 46.2027653 ], + [ 5.9855959, 46.2028278 ], + [ 5.9858461, 46.2028788 ], + [ 5.9861394, 46.2030049 ], + [ 5.9864472, 46.2032193 ], + [ 5.9866826, 46.2035292 ], + [ 5.9869993, 46.2038931 ], + [ 5.9873289, 46.2042617 ], + [ 5.9875234, 46.2044513 ], + [ 5.9876337, 46.2045508 ], + [ 5.9877824, 46.2046103 ], + [ 5.9879535, 46.2046485 ], + [ 5.9880641, 46.2046886 ], + [ 5.9881792, 46.2047936 ], + [ 5.9882542999999995, 46.2049367 ], + [ 5.9891728, 46.204755 ], + [ 5.9893937, 46.2047309 ], + [ 5.9895397, 46.2047526 ], + [ 5.9896339, 46.2048041 ], + [ 5.9897335, 46.2049152 ], + [ 5.9900594, 46.2054295 ], + [ 5.9902839, 46.2058075 ], + [ 5.9904576, 46.2060481 ], + [ 5.990522, 46.2062461 ], + [ 5.990425, 46.2063906 ], + [ 5.9902578, 46.2064946 ], + [ 5.9901495, 46.2065598 ], + [ 5.9898771, 46.206621 ], + [ 5.9896306, 46.2066872 ], + [ 5.9894141, 46.2067906 ], + [ 5.9893249, 46.2069738 ], + [ 5.9891114, 46.2073409 ], + [ 5.9888449, 46.2080113 ], + [ 5.9887395, 46.2081674 ], + [ 5.9886886, 46.2082406 ], + [ 5.9885949, 46.208288 ], + [ 5.9884642, 46.2082845 ], + [ 5.9880919, 46.2082599 ], + [ 5.9876318, 46.2082612 ], + [ 5.9871417000000005, 46.2083107 ], + [ 5.9866491, 46.2084231 ], + [ 5.986156, 46.2085356 ], + [ 5.9858947, 46.2085709 ], + [ 5.9855779, 46.2085452 ], + [ 5.9851523, 46.2084678 ], + [ 5.9829785, 46.2077524 ], + [ 5.9827559, 46.2076569 ], + [ 5.9826612, 46.2076097 ], + [ 5.9825583, 46.2073817 ], + [ 5.98247, 46.207206 ], + [ 5.9824579, 46.2071087 ], + [ 5.9823177, 46.2069765 ], + [ 5.9821617, 46.2068601 ], + [ 5.9820422, 46.2067714 ], + [ 5.9819393, 46.2067422 ], + [ 5.981872, 46.2067908 ], + [ 5.981881, 46.2069375 ], + [ 5.982066, 46.2071333 ], + [ 5.9821235999999995, 46.207315 ], + [ 5.9821073, 46.2074388 ], + [ 5.9820632, 46.2075282 ], + [ 5.9819351, 46.207622 ], + [ 5.9817706, 46.2076748 ], + [ 5.9815691, 46.2076965 ], + [ 5.9813882, 46.207722 ], + [ 5.9809661, 46.207712 ], + [ 5.9806913999999995, 46.2076995 ], + [ 5.9805600000000005, 46.2077186 ], + [ 5.9805924, 46.2080536 ], + [ 5.980626, 46.2083582 ], + [ 5.9807508, 46.2084858 ], + [ 5.9810195, 46.2086161 ], + [ 5.9835739, 46.2098637 ], + [ 5.9837178, 46.2099077 ], + [ 5.9838211, 46.2099208 ], + [ 5.9839531, 46.2098902 ], + [ 5.9845081, 46.2098243 ], + [ 5.985089, 46.2097589 ], + [ 5.9854218, 46.2097326 ], + [ 5.9857076, 46.2097507 ], + [ 5.9863611, 46.2097879 ], + [ 5.9867827, 46.209814 ], + [ 5.9870027, 46.2098259 ], + [ 5.9870992, 46.209855 ], + [ 5.9872004, 46.2099022 ], + [ 5.9873028999999995, 46.2099899 ], + [ 5.9874003, 46.2101396 ], + [ 5.9875343999999995, 46.2102546 ], + [ 5.9877763, 46.2104188 ], + [ 5.9884066, 46.210686 ], + [ 5.9891308, 46.2109463 ], + [ 5.9898348, 46.2111812 ], + [ 5.9905029, 46.2113427 ], + [ 5.9907749, 46.2114055 ], + [ 5.9910644, 46.2114866 ], + [ 5.9914856, 46.2116252 ], + [ 5.9917728, 46.211744 ], + [ 5.9919933, 46.2118918 ], + [ 5.9921974, 46.2120139 ], + [ 5.9923073, 46.2121179 ], + [ 5.9923171, 46.2122305 ], + [ 5.9922899, 46.2123274 ], + [ 5.9921292, 46.2124297 ], + [ 5.9909932999999995, 46.2130756 ], + [ 5.9909012, 46.213168 ], + [ 5.9908643999999995, 46.2132458 ], + [ 5.9908964000000005, 46.2134117 ], + [ 5.9911028, 46.2141763 ], + [ 5.9912323, 46.2147098 ], + [ 5.9912594, 46.2149585 ], + [ 5.9912922, 46.2151352 ], + [ 5.9914372, 46.2152892 ], + [ 5.9914713, 46.2154644 ], + [ 5.9914784999999995, 46.2154617 ], + [ 5.9915258, 46.2154521 ], + [ 5.9916193, 46.215463 ], + [ 5.9918568, 46.2155284 ], + [ 5.9919454, 46.2155338 ], + [ 5.9920493, 46.2155003 ], + [ 5.9921312, 46.2154505 ], + [ 5.9921657, 46.2154221 ], + [ 5.9922368, 46.2153768 ], + [ 5.9923986, 46.2152886 ], + [ 5.9924162, 46.2152839 ], + [ 5.9924766, 46.2152459 ], + [ 5.9925059, 46.2152343 ], + [ 5.9926209, 46.215224 ], + [ 5.9926354, 46.2152303 ], + [ 5.9927752, 46.2152213 ], + [ 5.9929988, 46.2156046 ], + [ 5.9932727, 46.2162826 ], + [ 5.99334, 46.2166935 ], + [ 5.993654, 46.2173135 ], + [ 5.9935510999999995, 46.2178985 ], + [ 5.9934275, 46.2181848 ], + [ 5.9929065999999995, 46.2190361 ], + [ 5.9915927, 46.2198112 ], + [ 5.9914100999999995, 46.2200062 ], + [ 5.9912666, 46.2202624 ], + [ 5.991079, 46.2208101 ], + [ 5.9908973, 46.2211291 ], + [ 5.9906578, 46.2214266 ], + [ 5.9901864, 46.2217188 ], + [ 5.9928512, 46.2229539 ], + [ 5.9929153, 46.2229622 ], + [ 5.9929444, 46.2229607 ], + [ 5.992972, 46.2229541 ], + [ 5.9929906, 46.2229412 ], + [ 5.9930673, 46.2229083 ], + [ 5.9931151, 46.2228941 ], + [ 5.9931671, 46.2228895 ], + [ 5.9932242, 46.2228657 ], + [ 5.9932932, 46.2228119 ], + [ 5.9933344, 46.2228019 ], + [ 5.9933651, 46.2227799 ], + [ 5.9933951, 46.2227757 ], + [ 5.9934092, 46.2227618 ], + [ 5.9934213, 46.2227118 ], + [ 5.9934724, 46.222691 ], + [ 5.9935316, 46.2226839 ], + [ 5.9936196, 46.2226836 ], + [ 5.9937092, 46.22267 ], + [ 5.9937635, 46.2226429 ], + [ 5.9938982, 46.2225949 ], + [ 5.9939948, 46.222573 ], + [ 5.9940502, 46.2225177 ], + [ 5.9940656, 46.2225084 ], + [ 5.9941187, 46.2224861 ], + [ 5.9941787, 46.2224777 ], + [ 5.9942782999999995, 46.2224297 ], + [ 5.9943615999999995, 46.2224258 ], + [ 5.9946069, 46.2224358 ], + [ 5.9946945, 46.2224472 ], + [ 5.9948426999999995, 46.222519 ], + [ 5.9949281, 46.2225054 ], + [ 5.9950213, 46.222517 ], + [ 5.9950443, 46.2225231 ], + [ 5.9951169, 46.2225654 ], + [ 5.9951811, 46.222591 ], + [ 5.9952684, 46.2225942 ], + [ 5.9955096, 46.222547 ], + [ 5.9957953, 46.2224728 ], + [ 5.9961227, 46.2223553 ], + [ 5.9963726, 46.2223534 ], + [ 5.9965533, 46.2223084 ], + [ 5.9967725, 46.2222905 ], + [ 5.9968486, 46.2223148 ], + [ 5.9970293, 46.2223406 ], + [ 5.9972843, 46.2222987 ], + [ 5.9973743, 46.2222998 ], + [ 5.9974798, 46.2222665 ], + [ 5.9975689, 46.2222682 ], + [ 5.9976686, 46.2222291 ], + [ 5.9977709, 46.2222043 ], + [ 5.9978118, 46.2221663 ], + [ 5.9978470999999995, 46.2221512 ], + [ 5.9978911, 46.2221425 ], + [ 5.9979482, 46.2221427 ], + [ 5.9980179, 46.2221376 ], + [ 5.998069, 46.2221079 ], + [ 5.9981329, 46.2220835 ], + [ 5.9983454, 46.2219824 ], + [ 5.9984825, 46.2219264 ], + [ 5.9986123, 46.2218475 ], + [ 5.9986856, 46.2217477 ], + [ 5.9987682, 46.2216805 ], + [ 5.9988198, 46.2216587 ], + [ 5.9988604, 46.2216336 ], + [ 5.9989801, 46.2216296 ], + [ 5.9990993, 46.221618 ], + [ 5.9991482, 46.2215925 ], + [ 5.999163, 46.2215545 ], + [ 5.9992146, 46.2214892 ], + [ 5.9992323, 46.2214552 ], + [ 5.9992535, 46.2214298 ], + [ 5.9993528, 46.2213576 ], + [ 5.9994807, 46.2211958 ], + [ 5.9995036, 46.2211212 ], + [ 5.9995027, 46.2210921 ], + [ 5.9995742, 46.2210954 ], + [ 6.0000252, 46.2200551 ], + [ 6.0000356, 46.220031 ], + [ 6.0001701, 46.2200703 ], + [ 6.0002939, 46.2201251 ], + [ 6.0003736, 46.2201404 ], + [ 6.0006537, 46.2202338 ], + [ 6.0011113, 46.2203933 ], + [ 6.0013278, 46.2204274 ], + [ 6.0015391, 46.2205001 ], + [ 6.0016573, 46.2205924 ], + [ 6.0017954, 46.220721 ], + [ 6.0020138, 46.2211223 ], + [ 6.0021434, 46.2212858 ], + [ 6.002316, 46.2215284 ], + [ 6.0025261, 46.2217746 ], + [ 6.0025686, 46.2219072 ], + [ 6.0026094, 46.2219706 ], + [ 6.00275, 46.2221247 ], + [ 6.002781, 46.2221441 ], + [ 6.0028531, 46.2222231 ], + [ 6.0029067, 46.2223109 ], + [ 6.0030582, 46.2224204 ], + [ 6.0031216, 46.2224874 ], + [ 6.0031936, 46.2225294 ], + [ 6.0032123, 46.2225607 ], + [ 6.0035147, 46.2227755 ], + [ 6.0036439, 46.2228217 ], + [ 6.003777, 46.2229047 ], + [ 6.0040387, 46.2230297 ], + [ 6.0040688, 46.2230292 ], + [ 6.0043125, 46.2231752 ], + [ 6.0044137, 46.2232514 ], + [ 6.0046059, 46.2233499 ], + [ 6.0047534, 46.2233958 ], + [ 6.0048734, 46.2234468 ], + [ 6.0050996, 46.2234975 ], + [ 6.0052303, 46.2235388 ], + [ 6.0053404, 46.2235602 ], + [ 6.005462, 46.2236098 ], + [ 6.0055523, 46.2236285 ], + [ 6.0056521, 46.2236396 ], + [ 6.0057434, 46.223684 ], + [ 6.0058041, 46.2237035 ], + [ 6.0058301, 46.2237069 ], + [ 6.0058619, 46.2236993 ], + [ 6.0059429, 46.2237165 ], + [ 6.0060343, 46.2237219 ], + [ 6.0060984, 46.2237165 ], + [ 6.006124, 46.2237311 ], + [ 6.0062112, 46.2237307 ], + [ 6.0062568, 46.2237428 ], + [ 6.0064305, 46.2237486 ], + [ 6.0065597, 46.2237723 ], + [ 6.0066388, 46.2238049 ], + [ 6.0068684, 46.223837 ], + [ 6.0069121, 46.2238536 ], + [ 6.007011, 46.2238493 ], + [ 6.0070433, 46.2238301 ], + [ 6.0071079, 46.2238382 ], + [ 6.0071567, 46.223872 ], + [ 6.0071888, 46.2238809 ], + [ 6.0072403, 46.2239357 ], + [ 6.0072433, 46.2239664 ], + [ 6.0072097, 46.2239777 ], + [ 6.007136, 46.224239 ], + [ 6.0070461, 46.2243727 ], + [ 6.0070148, 46.2244496 ], + [ 6.0070021, 46.2244969 ], + [ 6.0070016, 46.2245879 ], + [ 6.007029, 46.2246469 ], + [ 6.0070377, 46.2249968 ], + [ 6.0070238, 46.2250334 ], + [ 6.0069929, 46.2253687 ], + [ 6.006975, 46.2253884 ], + [ 6.0069701, 46.2255491 ], + [ 6.0069495, 46.2255989 ], + [ 6.0068878, 46.2256934 ], + [ 6.0066912, 46.2259159 ], + [ 6.0066266, 46.2260206 ], + [ 6.0065939, 46.2261904 ], + [ 6.0065717, 46.226232 ], + [ 6.0065806, 46.2263522 ], + [ 6.0065593, 46.2264691 ], + [ 6.0065711, 46.226541 ], + [ 6.006618, 46.2266148 ], + [ 6.0067215, 46.2266743 ], + [ 6.0067787, 46.2266884 ], + [ 6.0069037, 46.2266698 ], + [ 6.0071479, 46.2265727 ], + [ 6.0071778, 46.226554 ], + [ 6.0073358, 46.2265181 ], + [ 6.0074307, 46.2264736 ], + [ 6.0075239, 46.2264566 ], + [ 6.0077426, 46.2263951 ], + [ 6.0079041, 46.2263871 ], + [ 6.0080609, 46.2264017 ], + [ 6.008205, 46.2264357 ], + [ 6.008286, 46.2264692 ], + [ 6.0084642, 46.2265711 ], + [ 6.0085737, 46.2266258 ], + [ 6.0086044, 46.2266482 ], + [ 6.0086883, 46.2266765 ], + [ 6.0088389, 46.226753 ], + [ 6.0090439, 46.2268269 ], + [ 6.0091359, 46.2268888 ], + [ 6.0092088, 46.2269212 ], + [ 6.0094019, 46.2270334 ], + [ 6.0094845, 46.2270984 ], + [ 6.0096572, 46.2272172 ], + [ 6.0097472, 46.2272702 ], + [ 6.0099266, 46.2274204 ], + [ 6.0099801, 46.2274783 ], + [ 6.0100562, 46.2275938 ], + [ 6.0101138, 46.227705 ], + [ 6.0102122, 46.2278191 ], + [ 6.0102572, 46.2278813 ], + [ 6.0102669, 46.227937 ], + [ 6.0102575, 46.2279822 ], + [ 6.0103125, 46.2279777 ], + [ 6.0105453, 46.2279986 ], + [ 6.0108243, 46.2279437 ], + [ 6.0111054, 46.2278537 ], + [ 6.0113294, 46.2277638 ], + [ 6.0114795, 46.2276776 ], + [ 6.0115932, 46.2274811 ], + [ 6.0116365, 46.2272684 ], + [ 6.0118421, 46.2270469 ], + [ 6.0121855, 46.2268515 ], + [ 6.0124758, 46.2267077 ], + [ 6.0127731, 46.2266017 ], + [ 6.0131107, 46.2265348 ], + [ 6.0134038, 46.2265259 ], + [ 6.0137333, 46.226567 ], + [ 6.0139047, 46.2265935 ], + [ 6.0140495, 46.2266196 ], + [ 6.0141539999999996, 46.2264797 ], + [ 6.016834, 46.2237891 ], + [ 6.0154177, 46.2228382 ], + [ 6.0151745, 46.2228154 ], + [ 6.0148723, 46.2228152 ], + [ 6.0145312, 46.2228297 ], + [ 6.0142321, 46.2228224 ], + [ 6.0140297, 46.2227667 ], + [ 6.0138343, 46.2226671 ], + [ 6.0136286, 46.222543 ], + [ 6.013411, 46.222346 ], + [ 6.0132029, 46.2220779 ], + [ 6.0130497, 46.2218825 ], + [ 6.01296, 46.2217042 ], + [ 6.0129351, 46.2215572 ], + [ 6.0130482, 46.2214426 ], + [ 6.0132201, 46.2213791 ], + [ 6.0135166, 46.2212838 ], + [ 6.0138737, 46.2211678 ], + [ 6.0142413, 46.2210798 ], + [ 6.014514, 46.2210184 ], + [ 6.0146954, 46.2209766 ], + [ 6.0149011, 46.2208803 ], + [ 6.0149798, 46.220803 ], + [ 6.0150216, 46.220736 ], + [ 6.0144599, 46.2201144 ], + [ 6.0139162, 46.2195947 ], + [ 6.0137132, 46.2194275 ], + [ 6.0136075, 46.2193956 ], + [ 6.0134433, 46.2194331 ], + [ 6.0130046, 46.219648 ], + [ 6.0122282, 46.2200476 ], + [ 6.0113436, 46.220524 ], + [ 6.0109845, 46.2207633 ], + [ 6.0108846, 46.2208223 ], + [ 6.010753, 46.2208485 ], + [ 6.0105848, 46.2207924 ], + [ 6.0100311, 46.2203473 ], + [ 6.0096931, 46.2199489 ], + [ 6.0095644, 46.2197161 ], + [ 6.0095341, 46.2195285 ], + [ 6.0095839, 46.2193104 ], + [ 6.0097605, 46.2190033 ], + [ 6.0099941, 46.2187443 ], + [ 6.0101368, 46.2186014 ], + [ 6.0101992, 46.21854 ], + [ 6.010428, 46.2185114 ], + [ 6.0106636, 46.2184713 ], + [ 6.0108257, 46.2184706 ], + [ 6.0109228, 46.2184727 ], + [ 6.0109865, 46.2183773 ], + [ 6.0109245, 46.2183152 ], + [ 6.0108134, 46.2182563 ], + [ 6.0106111, 46.2182061 ], + [ 6.0100849, 46.2182056 ], + [ 6.0097742, 46.2182369 ], + [ 6.0095195, 46.2182643 ], + [ 6.0093894, 46.2182842 ], + [ 6.0092927, 46.2182659 ], + [ 6.0091914, 46.2182187 ], + [ 6.0089421, 46.2179987 ], + [ 6.0085277, 46.217486 ], + [ 6.0083898, 46.2173098 ], + [ 6.0083218, 46.2171838 ], + [ 6.0083757, 46.2170613 ], + [ 6.0085704, 46.2169414 ], + [ 6.0088423, 46.2168171 ], + [ 6.0090109, 46.2167031 ], + [ 6.0090318, 46.2166026 ], + [ 6.0088642, 46.2163666 ], + [ 6.008402, 46.2158596 ], + [ 6.0082873, 46.2157394 ], + [ 6.0081908, 46.2157147 ], + [ 6.0080282, 46.2157379 ], + [ 6.0075724, 46.2158626 ], + [ 6.0071741, 46.2159331 ], + [ 6.0069454, 46.2159392 ], + [ 6.0067416, 46.2159114 ], + [ 6.0065481, 46.2157677 ], + [ 6.0062019, 46.2153351 ], + [ 6.0061119, 46.2151711 ], + [ 6.0061322, 46.2150742 ], + [ 6.0062344, 46.2149937 ], + [ 6.0063512, 46.2149438 ], + [ 6.0061573, 46.2149242 ], + [ 6.0057498, 46.214937 ], + [ 6.0055153, 46.2149359 ], + [ 6.0050912, 46.2147982 ], + [ 6.0046629, 46.2145742 ], + [ 6.0043117, 46.2143178 ], + [ 6.003998, 46.2140782 ], + [ 6.00374, 46.213831 ], + [ 6.0036317, 46.2137153 ], + [ 6.0034922, 46.2134419 ], + [ 6.003413, 46.2132079 ], + [ 6.0034245, 46.2129713 ], + [ 6.0034392, 46.2128582 ], + [ 6.0035474, 46.2127778 ], + [ 6.0036952, 46.2127355 ], + [ 6.0039613, 46.21281 ], + [ 6.0043905, 46.2129999 ], + [ 6.0049462, 46.2132606 ], + [ 6.0054016, 46.2133951 ], + [ 6.0079759, 46.2097327 ], + [ 6.0025005, 46.2075587 ], + [ 6.002428, 46.2073608 ], + [ 6.0000922, 46.2071835 ], + [ 6.0003277, 46.2063201 ], + [ 6.0004529, 46.2060859 ], + [ 6.0005626, 46.205965 ], + [ 6.0008629, 46.2056827 ], + [ 6.0025142, 46.2044423 ], + [ 6.0027408, 46.2042554 ], + [ 6.0029566, 46.2040278 ], + [ 6.0031687, 46.2037956 ], + [ 6.0033115, 46.2035401 ], + [ 6.0054364, 46.1990775 ], + [ 6.005571, 46.1987941 ], + [ 6.0057826, 46.1986294 ], + [ 6.0059844, 46.1984925 ], + [ 6.0061085, 46.198405 ], + [ 6.0061607, 46.1983453 ], + [ 6.0062402, 46.1982277 ], + [ 6.0062538, 46.1979641 ], + [ 6.0062334, 46.197505 ], + [ 6.0061682, 46.1970301 ], + [ 6.006111, 46.1966793 ], + [ 6.0061198, 46.196495 ], + [ 6.0061548, 46.1963084 ], + [ 6.0062686, 46.1961038 ], + [ 6.0066203, 46.1955405 ], + [ 6.0067772, 46.1953031 ], + [ 6.0069133, 46.1950512 ], + [ 6.0069424, 46.1949273 ], + [ 6.006983, 46.1947552 ], + [ 6.0069999, 46.1946024 ], + [ 6.0069959, 46.1944665 ], + [ 6.0069719, 46.194297 ], + [ 6.0070877, 46.1941258 ], + [ 6.0072638, 46.1939723 ], + [ 6.0074645, 46.1938408 ], + [ 6.0076786, 46.1937833 ], + [ 6.0077739, 46.1937017 ], + [ 6.0078613, 46.1935732 ], + [ 6.0079498, 46.1934124 ], + [ 6.0079912, 46.1932267 ], + [ 6.0080489, 46.1930475 ], + [ 6.0081805, 46.192809 ], + [ 6.0084823, 46.1924663 ], + [ 6.0086723, 46.1922447 ], + [ 6.0089041, 46.1918032 ], + [ 6.0090245, 46.1914565 ], + [ 6.0091146, 46.1911428 ], + [ 6.0092083, 46.1908695 ], + [ 6.0092661, 46.1906912 ], + [ 6.0094067, 46.1904681 ], + [ 6.0097322, 46.1902545 ], + [ 6.0104946, 46.1897873 ], + [ 6.0100858, 46.1893223 ], + [ 6.01001, 46.1892008 ], + [ 6.0100154, 46.1890884 ], + [ 6.0101512, 46.1889561 ], + [ 6.0107125, 46.1886419 ], + [ 6.0111796, 46.1883663 ], + [ 6.0116246, 46.1880605 ], + [ 6.0120074, 46.1878323 ], + [ 6.0122729, 46.1875901 ], + [ 6.0125401, 46.1872353 ], + [ 6.0126992, 46.1868487 ], + [ 6.012777, 46.1863503 ], + [ 6.0128572, 46.1857025 ], + [ 6.0128499, 46.1851896 ], + [ 6.0129188, 46.1846435 ], + [ 6.0129349, 46.1842784 ], + [ 6.0129394, 46.1839969 ], + [ 6.0128391, 46.1835773 ], + [ 6.0127119, 46.1831905 ], + [ 6.0125739, 46.1828154 ], + [ 6.0122758, 46.1824814 ], + [ 6.0119481, 46.1821804 ], + [ 6.0115464, 46.1818937 ], + [ 6.0109631, 46.1815489 ], + [ 6.0103294, 46.1812188 ], + [ 6.0096531, 46.1809781 ], + [ 6.0094637, 46.1808425 ], + [ 6.0093544, 46.1807611 ], + [ 6.0092693, 46.1806421 ], + [ 6.0092211, 46.1805056 ], + [ 6.0092715, 46.1802633 ], + [ 6.0095901, 46.1795664 ], + [ 6.0107167, 46.1797814 ], + [ 6.0116862, 46.1799528 ], + [ 6.012493, 46.1801178 ], + [ 6.0132498, 46.1804017 ], + [ 6.0139252, 46.1807172 ], + [ 6.0145572, 46.1810678 ], + [ 6.0152044, 46.181687 ], + [ 6.0156865, 46.1822662 ], + [ 6.0160843, 46.1831565 ], + [ 6.0165378, 46.1844571 ], + [ 6.0175707, 46.1873644 ], + [ 6.0177993, 46.1877884 ], + [ 6.0180734, 46.1882534 ], + [ 6.0185333, 46.1887935 ], + [ 6.019204, 46.1893572 ], + [ 6.0199979, 46.1899619 ], + [ 6.0208529, 46.1905557 ], + [ 6.0215816, 46.1911262 ], + [ 6.0220108, 46.191558 ], + [ 6.0221724, 46.1919317 ], + [ 6.0226333, 46.1924836 ], + [ 6.0231829, 46.1930636 ], + [ 6.02383, 46.1935432 ], + [ 6.0244066, 46.1938797 ], + [ 6.024592, 46.1940395 ], + [ 6.0244341, 46.1941797 ], + [ 6.0244566, 46.1944058 ], + [ 6.0245388, 46.1946362 ], + [ 6.0246803, 46.1949259 ], + [ 6.0247839, 46.1951305 ], + [ 6.0248628, 46.195226 ], + [ 6.0249794, 46.1953804 ], + [ 6.025004, 46.1954815 ], + [ 6.0247163, 46.1956299 ], + [ 6.0244915, 46.1955111 ], + [ 6.0242803, 46.1955651 ], + [ 6.0240934, 46.1956248 ], + [ 6.0239306, 46.1956571 ], + [ 6.0237849, 46.1956219 ], + [ 6.023577, 46.1955032 ], + [ 6.0232695, 46.195466 ], + [ 6.0230577, 46.1954985 ], + [ 6.0228627, 46.1955239 ], + [ 6.0228844, 46.195625 ], + [ 6.0227689, 46.195737 ], + [ 6.0224667, 46.1958986 ], + [ 6.0213261, 46.1966222 ], + [ 6.0222215, 46.198197 ], + [ 6.0227371, 46.1992508 ], + [ 6.0182696, 46.1997004 ], + [ 6.0183278, 46.2001069 ], + [ 6.0183936, 46.2006142 ], + [ 6.0184732, 46.200994 ], + [ 6.0185908, 46.2013608 ], + [ 6.0187968, 46.201599 ], + [ 6.0190999, 46.2019016 ], + [ 6.019387, 46.2021301 ], + [ 6.0197241, 46.2023134 ], + [ 6.0200769, 46.2025077 ], + [ 6.0203268, 46.2025558 ], + [ 6.0235717, 46.2011569 ], + [ 6.0265005, 46.2005737 ], + [ 6.0270107, 46.2005396 ], + [ 6.0278959, 46.2005363 ], + [ 6.028059, 46.2004924 ], + [ 6.0283426, 46.2003934 ], + [ 6.028631, 46.2002611 ], + [ 6.02889, 46.200268 ], + [ 6.0323647, 46.2009303 ], + [ 6.0329379, 46.200969 ], + [ 6.0335839, 46.2010877 ], + [ 6.0341275, 46.2011547 ], + [ 6.0346838, 46.201239 ], + [ 6.0350664, 46.2012689 ], + [ 6.0352675, 46.2012598 ], + [ 6.0353655, 46.2011818 ], + [ 6.0355148, 46.2010252 ], + [ 6.035648, 46.2008236 ], + [ 6.0358699, 46.2007085 ], + [ 6.0361491, 46.2005455 ], + [ 6.036417, 46.200458 ], + [ 6.036736, 46.2003369 ], + [ 6.0371344, 46.200205 ], + [ 6.0373146, 46.2001119 ], + [ 6.0375368, 46.1999896 ], + [ 6.037767, 46.1998566 ], + [ 6.0379216, 46.1997334 ], + [ 6.0381318, 46.1997127 ], + [ 6.0383203, 46.1997528 ], + [ 6.0384138, 46.1999411 ], + [ 6.0384589, 46.2000929 ], + [ 6.0386181, 46.200263 ], + [ 6.0389895, 46.2003675 ], + [ 6.0393359, 46.2004114 ], + [ 6.0396042, 46.2004634 ], + [ 6.0397329, 46.2004982 ], + [ 6.0399341, 46.2005295 ], + [ 6.0399698, 46.2003535 ], + [ 6.0400784, 46.2002083 ], + [ 6.0401944, 46.2001189 ], + [ 6.0404064, 46.2000036 ], + [ 6.040692, 46.1998191 ], + [ 6.0430346, 46.2003312 ], + [ 6.0430463, 46.2005725 ], + [ 6.043085, 46.2007871 ], + [ 6.0431307, 46.2009289 ], + [ 6.0432102, 46.2010019 ], + [ 6.0433953, 46.20097 ], + [ 6.0436341, 46.2008928 ], + [ 6.0440259, 46.2007276 ], + [ 6.044255, 46.2006342 ], + [ 6.0444027, 46.2005389 ], + [ 6.0444861, 46.2004157 ], + [ 6.0445373, 46.2002355 ], + [ 6.0445575, 46.1999992 ], + [ 6.044634, 46.1997519 ], + [ 6.0447023, 46.1995151 ], + [ 6.0447976, 46.199286 ], + [ 6.0448738, 46.1990323 ], + [ 6.0450081, 46.1987514 ], + [ 6.0452328, 46.1984825 ], + [ 6.0453675, 46.1982809 ], + [ 6.045523, 46.1980299 ], + [ 6.0456844, 46.1977377 ], + [ 6.0457674, 46.1975922 ], + [ 6.0458212, 46.1973149 ], + [ 6.0458655, 46.1970517 ], + [ 6.0458296, 46.1968254 ], + [ 6.0457864, 46.1966 ], + [ 6.0457553, 46.1964871 ], + [ 6.0457085, 46.1963966 ], + [ 6.047419, 46.195931 ], + [ 6.0483222, 46.1956678 ], + [ 6.04939, 46.1954137 ], + [ 6.0504361, 46.1952916 ], + [ 6.0514608, 46.1951494 ], + [ 6.0522685, 46.1949309 ], + [ 6.0530025, 46.1946934 ], + [ 6.0537074, 46.1945824 ], + [ 6.0544234, 46.1945138 ], + [ 6.0551195, 46.1944926 ], + [ 6.0556007, 46.1944635 ], + [ 6.0558169, 46.1944814 ], + [ 6.0558093, 46.1945713 ], + [ 6.0552612, 46.1953284 ], + [ 6.0564889, 46.1959148 ], + [ 6.0571888, 46.1953906 ], + [ 6.0586065, 46.1949671 ], + [ 6.0587174, 46.1951439 ], + [ 6.0614427, 46.1944909 ], + [ 6.0617178, 46.1950503 ], + [ 6.0633039, 46.1946693 ], + [ 6.065057, 46.1954851 ], + [ 6.0651645, 46.1958463 ], + [ 6.0653204, 46.1961865 ], + [ 6.0655574, 46.1965492 ], + [ 6.065859, 46.1969865 ], + [ 6.0661605, 46.1973619 ], + [ 6.0692616, 46.2017408 ], + [ 6.0689841, 46.2018552 ], + [ 6.0686672, 46.2019945 ], + [ 6.0683408, 46.202094 ], + [ 6.0682345, 46.2020854 ], + [ 6.0680669, 46.2020007 ], + [ 6.0678753, 46.2018462 ], + [ 6.067746, 46.2017888 ], + [ 6.0676169, 46.2021212 ], + [ 6.0667781, 46.2018931 ], + [ 6.0666789, 46.2019711 ], + [ 6.0663398, 46.2019454 ], + [ 6.0661747, 46.2020684 ], + [ 6.0654577, 46.2019382 ], + [ 6.065343, 46.2020232 ], + [ 6.0649531, 46.2020688 ], + [ 6.0649178, 46.2021818 ], + [ 6.0645623, 46.2021513 ], + [ 6.0642859, 46.2021606 ], + [ 6.0640634, 46.2022487 ], + [ 6.063844, 46.2023756 ], + [ 6.0637762, 46.2025438 ], + [ 6.0637944, 46.2027988 ], + [ 6.0640644, 46.2031394 ], + [ 6.0643599, 46.2034957 ], + [ 6.0646363, 46.2038365 ], + [ 6.0648197, 46.2040592 ], + [ 6.0651936, 46.2043894 ], + [ 6.0655137, 46.2046408 ], + [ 6.0658356, 46.2048346 ], + [ 6.0661663, 46.2049664 ], + [ 6.0663979, 46.2051438 ], + [ 6.0665548, 46.205394 ], + [ 6.0666806, 46.2055863 ], + [ 6.0667849, 46.205772 ], + [ 6.0669016, 46.2059758 ], + [ 6.0669952, 46.2061686 ], + [ 6.0671483, 46.2063118 ], + [ 6.0673328, 46.2063473 ], + [ 6.0675871, 46.2062821 ], + [ 6.0677832, 46.2061531 ], + [ 6.067902, 46.2062732 ], + [ 6.0679728, 46.2064478 ], + [ 6.067988, 46.206511 ], + [ 6.0681341, 46.2065281 ], + [ 6.0684621, 46.2066724 ], + [ 6.0691148, 46.2064797 ], + [ 6.0693374, 46.2066912 ], + [ 6.0693704, 46.2066691 ], + [ 6.0696439, 46.2068226 ], + [ 6.0708523, 46.2062921 ], + [ 6.0708172, 46.2064941 ], + [ 6.071025, 46.2066379 ], + [ 6.0717215, 46.206299 ], + [ 6.0720171, 46.206444 ], + [ 6.072477, 46.2061427 ], + [ 6.0723601, 46.2059433 ], + [ 6.0722893, 46.2057175 ], + [ 6.0722295, 46.2054685 ], + [ 6.0721996, 46.2052774 ], + [ 6.0722944, 46.2050473 ], + [ 6.0724113, 46.2048912 ], + [ 6.0725914, 46.2047342 ], + [ 6.0729845, 46.2045617 ], + [ 6.0734721, 46.2044488 ], + [ 6.0738524, 46.2044112 ], + [ 6.0741059, 46.204443 ], + [ 6.0744979, 46.2046196 ], + [ 6.0748927, 46.2048439 ], + [ 6.0752622, 46.2050319 ], + [ 6.0756378, 46.2052453 ], + [ 6.0759446, 46.2053651 ], + [ 6.0759973, 46.2037821 ], + [ 6.076495, 46.20352 ], + [ 6.0772807, 46.2034781 ], + [ 6.0774033, 46.2034716 ], + [ 6.0773889, 46.2033698 ], + [ 6.0777481, 46.2032553 ], + [ 6.0784231, 46.203205 ], + [ 6.0788606, 46.2032355 ], + [ 6.079102, 46.2033733 ], + [ 6.0793004, 46.203517 ], + [ 6.079428, 46.2035968 ], + [ 6.0796859, 46.2036936 ], + [ 6.0798948, 46.2038418 ], + [ 6.0806561, 46.2044349 ], + [ 6.0809761, 46.2046925 ], + [ 6.0811518, 46.2048674 ], + [ 6.0813576, 46.2051398 ], + [ 6.0815373, 46.2054011 ], + [ 6.0817139, 46.2055445 ], + [ 6.0819372, 46.2057308 ], + [ 6.082127, 46.2060264 ], + [ 6.0822619, 46.2062817 ], + [ 6.0823889, 46.2064794 ], + [ 6.0826176, 46.2067583 ], + [ 6.0827923, 46.2069791 ], + [ 6.0829012, 46.2072386 ], + [ 6.0830995, 46.2075568 ], + [ 6.083313, 46.2078292 ], + [ 6.0835773, 46.2080907 ], + [ 6.0837107, 46.2082497 ], + [ 6.0837022, 46.2083351 ], + [ 6.0836891, 46.2085985 ], + [ 6.0836321, 46.2086392 ], + [ 6.083156, 46.208459 ], + [ 6.0825302, 46.2086636 ], + [ 6.0822685, 46.2091392 ], + [ 6.0826496, 46.2096456 ], + [ 6.0826781, 46.2098708 ], + [ 6.0849712, 46.211998 ], + [ 6.0851479, 46.2120721 ], + [ 6.0855632, 46.2124315 ], + [ 6.0858543, 46.2124952 ], + [ 6.0860138, 46.212695 ], + [ 6.0861908, 46.2127754 ], + [ 6.0863248, 46.2128599 ], + [ 6.0866751, 46.2128964 ], + [ 6.088328, 46.2139141 ], + [ 6.0885292, 46.2138993 ], + [ 6.0888629, 46.2139295 ], + [ 6.0892019, 46.2139957 ], + [ 6.089509, 46.2141001 ], + [ 6.0899013, 46.2142722 ], + [ 6.0901841, 46.2144141 ], + [ 6.0903357, 46.2144717 ], + [ 6.0905231, 46.2145415 ], + [ 6.0909386, 46.2142919 ], + [ 6.0913078, 46.2141533 ], + [ 6.0913967, 46.2140635 ], + [ 6.0969947, 46.2158192 ], + [ 6.0973496, 46.2159799 ], + [ 6.0977355, 46.2161457 ], + [ 6.0980676, 46.2162953 ], + [ 6.0983088, 46.2163989 ], + [ 6.0985506, 46.2164684 ], + [ 6.0988109, 46.2164885 ], + [ 6.0990376, 46.2164274 ], + [ 6.0992914, 46.2162334 ], + [ 6.0994822, 46.2160701 ], + [ 6.0996698, 46.2159203 ], + [ 6.0998173, 46.2157682 ], + [ 6.0999753, 46.2156685 ], + [ 6.1000644, 46.2155857 ], + [ 6.1000327, 46.2155513 ], + [ 6.0999612, 46.2154991 ], + [ 6.099799, 46.2155044 ], + [ 6.0995778, 46.2155405 ], + [ 6.0993285, 46.2155618 ], + [ 6.0990099, 46.2155589 ], + [ 6.0987199, 46.2154952 ], + [ 6.0983317, 46.2154177 ], + [ 6.0979696, 46.2153199 ], + [ 6.0976639, 46.2152208 ], + [ 6.0972598, 46.2151 ], + [ 6.0970081, 46.2150079 ], + [ 6.0967505, 46.2148933 ], + [ 6.0985709, 46.2136951 ], + [ 6.0988712, 46.2137652 ], + [ 6.0993729, 46.2138548 ], + [ 6.0996789, 46.2140087 ], + [ 6.1000062, 46.2141916 ], + [ 6.1001925, 46.2143278 ], + [ 6.1003111, 46.2143967 ], + [ 6.1008481, 46.2142843 ], + [ 6.1009744, 46.2140861 ], + [ 6.100946, 46.2138724 ], + [ 6.1009732, 46.2136084 ], + [ 6.1010511, 46.2134059 ], + [ 6.1012505, 46.2130853 ], + [ 6.1014504, 46.2128116 ], + [ 6.1015993, 46.2125991 ], + [ 6.1017827, 46.2123746 ], + [ 6.1019813, 46.2120882 ], + [ 6.1021154, 46.2118028 ], + [ 6.1021749, 46.2115929 ], + [ 6.1022768, 46.2113009 ], + [ 6.1022973, 46.210997 ], + [ 6.1023125, 46.2106878 ], + [ 6.1022603, 46.2099593 ], + [ 6.0985257, 46.2086428 ], + [ 6.0982678, 46.2085389 ], + [ 6.097993, 46.2084808 ], + [ 6.0977776, 46.2083838 ], + [ 6.0975919, 46.2082925 ], + [ 6.0973928, 46.2081264 ], + [ 6.0973057, 46.2079337 ], + [ 6.0972599, 46.2077415 ], + [ 6.0972803, 46.2075383 ], + [ 6.0973485, 46.2073025 ], + [ 6.0973931, 46.2071744 ], + [ 6.0946585, 46.2053252 ], + [ 6.0944344, 46.2051696 ], + [ 6.0942995, 46.2050779 ], + [ 6.0942271, 46.2049601 ], + [ 6.0942457, 46.2048478 ], + [ 6.0942241, 46.2047233 ], + [ 6.0941203, 46.2045646 ], + [ 6.093993, 46.2044282 ], + [ 6.0938094, 46.2043072 ], + [ 6.0935996, 46.2042607 ], + [ 6.0934548, 46.2042365 ], + [ 6.0932778, 46.204174 ], + [ 6.0931076, 46.2040307 ], + [ 6.0929651, 46.2038715 ], + [ 6.0928631, 46.2037533 ], + [ 6.0927262, 46.2035771 ], + [ 6.092674, 46.2034478 ], + [ 6.0926828, 46.2032941 ], + [ 6.0926356, 46.2032216 ], + [ 6.0924107, 46.2031001 ], + [ 6.0921473, 46.2028954 ], + [ 6.0919096, 46.2026002 ], + [ 6.0918152, 46.2024416 ], + [ 6.0916571, 46.2021878 ], + [ 6.0915553, 46.2019051 ], + [ 6.0914894, 46.201593 ], + [ 6.0914438, 46.2013963 ], + [ 6.0913257, 46.20108 ], + [ 6.0912328, 46.2008134 ], + [ 6.0912951, 46.2006063 ], + [ 6.0914614, 46.2003816 ], + [ 6.0915939, 46.2002635 ], + [ 6.0917940999999995, 46.2002272 ], + [ 6.0919624, 46.200447 ], + [ 6.0921785, 46.2005161 ], + [ 6.0924977, 46.200492 ], + [ 6.0927937, 46.200573 ], + [ 6.0930852, 46.200625 ], + [ 6.0933546, 46.2005895 ], + [ 6.0936802, 46.2005241 ], + [ 6.0940446, 46.2004593 ], + [ 6.0946355, 46.2005994 ], + [ 6.0950577, 46.2009751 ], + [ 6.0953376, 46.2012826 ], + [ 6.095657, 46.2015779 ], + [ 6.0959513, 46.2018216 ], + [ 6.0962509, 46.2019214 ], + [ 6.0965249, 46.2020588 ], + [ 6.0973017, 46.2024936 ], + [ 6.0979124, 46.2028481 ], + [ 6.0981536, 46.2029338 ], + [ 6.0983223, 46.2030887 ], + [ 6.0989689, 46.2032403 ], + [ 6.0989501, 46.2033751 ], + [ 6.0994266, 46.2034023 ], + [ 6.0995591, 46.2032833 ], + [ 6.0998495, 46.2033309 ], + [ 6.0999965, 46.2032489 ], + [ 6.1000941, 46.2032312 ], + [ 6.1003153, 46.2031951 ], + [ 6.1002687, 46.2030821 ], + [ 6.1000599, 46.2029447 ], + [ 6.0999148, 46.2029322 ], + [ 6.0997257, 46.2029803 ], + [ 6.0996586, 46.2031217 ], + [ 6.0985386, 46.2027791 ], + [ 6.0983521, 46.2027211 ], + [ 6.0982177, 46.202607 ], + [ 6.0982263, 46.2024722 ], + [ 6.0982924, 46.2024226 ], + [ 6.0982772, 46.2023441 ], + [ 6.0979028, 46.2020293 ], + [ 6.0980857, 46.2018281 ], + [ 6.0979728, 46.2017711 ], + [ 6.0977603, 46.2018818 ], + [ 6.0975794, 46.2019588 ], + [ 6.0974728, 46.201981 ], + [ 6.0972874, 46.2020246 ], + [ 6.0971476, 46.2020302 ], + [ 6.0970362, 46.2019209 ], + [ 6.0970223, 46.2017966 ], + [ 6.0970236, 46.2016949 ], + [ 6.0970181, 46.2016049 ], + [ 6.0969875, 46.2015325 ], + [ 6.096876, 46.2014232 ], + [ 6.0967812, 46.2012827 ], + [ 6.0964731, 46.2012799 ], + [ 6.0961553, 46.2012257 ], + [ 6.0959307, 46.2011403 ], + [ 6.095732, 46.2010084 ], + [ 6.0955619, 46.2008598 ], + [ 6.0953965, 46.2006895 ], + [ 6.0952051, 46.2005252 ], + [ 6.0950352, 46.2003712 ], + [ 6.0948754, 46.2002344 ], + [ 6.0946593, 46.2001652 ], + [ 6.0943029, 46.2001169 ], + [ 6.0940355, 46.2000425 ], + [ 6.0939015, 46.1998989 ], + [ 6.0936853, 46.199638 ], + [ 6.0931797, 46.1994872 ], + [ 6.0929053, 46.1997403 ], + [ 6.0922996, 46.1997691 ], + [ 6.0919162, 46.1997473 ], + [ 6.091706, 46.1997187 ], + [ 6.0916594, 46.1996057 ], + [ 6.0917591, 46.1994594 ], + [ 6.091755, 46.199318 ], + [ 6.0916191, 46.1991473 ], + [ 6.0916365, 46.1990189 ], + [ 6.0917778, 46.1989684 ], + [ 6.0920591, 46.1989592 ], + [ 6.0920852, 46.1983801 ], + [ 6.0919238, 46.1983601 ], + [ 6.0919433, 46.1982101 ], + [ 6.0912635, 46.1981255 ], + [ 6.0911674, 46.1980344 ], + [ 6.0910227, 46.1979769 ], + [ 6.0908394, 46.1978398 ], + [ 6.090678, 46.1978163 ], + [ 6.0904105, 46.1977276 ], + [ 6.090089, 46.1975789 ], + [ 6.0897831, 46.1974295 ], + [ 6.0895903, 46.1973669 ], + [ 6.0892605, 46.1972406 ], + [ 6.0890369, 46.1970625 ], + [ 6.0888345, 46.1969665 ], + [ 6.0885589, 46.1969461 ], + [ 6.0883153, 46.1969504 ], + [ 6.0880865, 46.1967272 ], + [ 6.087919, 46.1964283 ], + [ 6.0878195, 46.1961905 ], + [ 6.0877484, 46.1959917 ], + [ 6.0877771, 46.1958121 ], + [ 6.0879515, 46.1954707 ], + [ 6.0879655, 46.1952225 ], + [ 6.0880172, 46.1950809 ], + [ 6.0882537, 46.1948796 ], + [ 6.088482, 46.194814 ], + [ 6.0886447, 46.1947367 ], + [ 6.0887393, 46.19453 ], + [ 6.0888127, 46.1943951 ], + [ 6.0889694, 46.1943448 ], + [ 6.0892607, 46.1943537 ], + [ 6.0894, 46.194224 ], + [ 6.089491, 46.1941639 ], + [ 6.089728, 46.1940084 ], + [ 6.0902115, 46.1937757 ], + [ 6.0905867, 46.193648 ], + [ 6.0908146, 46.1935544 ], + [ 6.091048, 46.1935455 ], + [ 6.0912522, 46.1936083 ], + [ 6.0915101, 46.1937185 ], + [ 6.0916698, 46.1938104 ], + [ 6.0918665, 46.1937146 ], + [ 6.0919819, 46.1935532 ], + [ 6.0922836, 46.193403 ], + [ 6.0925288, 46.1932763 ], + [ 6.0928151, 46.1932221 ], + [ 6.0929919, 46.1932621 ], + [ 6.0934198, 46.1932996 ], + [ 6.0938563, 46.1933479 ], + [ 6.094402, 46.1933527 ], + [ 6.0946631, 46.1932711 ], + [ 6.094842, 46.1932095 ], + [ 6.0950918, 46.1931549 ], + [ 6.0952447, 46.1933258 ], + [ 6.094876, 46.1934536 ], + [ 6.0947283, 46.1936147 ], + [ 6.0944929, 46.1937028 ], + [ 6.0943528, 46.1937695 ], + [ 6.0943025, 46.1938544 ], + [ 6.0943499, 46.193934 ], + [ 6.0944138, 46.1939682 ], + [ 6.0947172, 46.1938512 ], + [ 6.0960481, 46.193204 ], + [ 6.0977751, 46.1942663 ], + [ 6.0982177, 46.1939703 ], + [ 6.0983634, 46.1940053 ], + [ 6.0985013, 46.1939278 ], + [ 6.098638, 46.1940032 ], + [ 6.0981459, 46.1944202 ], + [ 6.0983857, 46.1946101 ], + [ 6.0989717, 46.194439 ], + [ 6.0994604, 46.1943251 ], + [ 6.099635, 46.1945071 ], + [ 6.0998906999999996, 46.1947396 ], + [ 6.1000236, 46.1949841 ], + [ 6.1001748, 46.1952108 ], + [ 6.1005475, 46.1956425 ], + [ 6.1009927, 46.1961462 ], + [ 6.1014796, 46.1967323 ], + [ 6.1017662, 46.1970325 ], + [ 6.1010784, 46.1974058 ], + [ 6.101642, 46.1980306 ], + [ 6.102027, 46.1979209 ], + [ 6.1033133, 46.1995096 ], + [ 6.1029607, 46.1996693 ], + [ 6.1031918, 46.1999715 ], + [ 6.1035486, 46.2003618 ], + [ 6.1039963, 46.2007602 ], + [ 6.1045345, 46.2010985 ], + [ 6.1050646, 46.2014071 ], + [ 6.1055037, 46.2017263 ], + [ 6.1060646, 46.2021036 ], + [ 6.1063621, 46.2023356 ], + [ 6.1068005, 46.2026845 ], + [ 6.1072766, 46.2029861 ], + [ 6.1076672, 46.2032255 ], + [ 6.1079245, 46.2033967 ], + [ 6.1082106, 46.2033093 ], + [ 6.108631, 46.2033915 ], + [ 6.1091164, 46.203526 ], + [ 6.1095842, 46.2036251 ], + [ 6.1098001, 46.203705 ], + [ 6.1099277, 46.2038307 ], + [ 6.109969, 46.2038986 ], + [ 6.1101299, 46.20394 ], + [ 6.1102992, 46.2039079 ], + [ 6.1105704, 46.2038356 ], + [ 6.1110237, 46.2038463 ], + [ 6.1113318, 46.2038642 ], + [ 6.1115909, 46.2038665 ], + [ 6.1117607, 46.2038117 ], + [ 6.1118205, 46.2037513 ], + [ 6.1124042, 46.2037266 ], + [ 6.1169498, 46.2038717 ], + [ 6.1170601, 46.2036967 ], + [ 6.1198631, 46.2038203 ], + [ 6.1198671, 46.2036017 ], + [ 6.1180122, 46.2030339 ], + [ 6.1199770000000004, 46.2022201 ], + [ 6.1210131, 46.2023527 ], + [ 6.1211371, 46.2017334 ], + [ 6.1216641, 46.2018052 ], + [ 6.1222459, 46.2019675 ], + [ 6.1226216, 46.2021915 ], + [ 6.1231691, 46.2024327 ], + [ 6.1236049, 46.202526 ], + [ 6.1241154, 46.2026363 ], + [ 6.1245039, 46.2027029 ], + [ 6.1247686, 46.2027887 ], + [ 6.1250417, 46.2029216 ], + [ 6.1252606, 46.2030293 ], + [ 6.1255088, 46.2031167 ], + [ 6.1259133, 46.2032151 ], + [ 6.1263978, 46.2033314 ], + [ 6.126893, 46.2034371 ], + [ 6.1273682, 46.2034966 ], + [ 6.1279017, 46.2035756 ], + [ 6.1283548, 46.2036509 ], + [ 6.1285271, 46.2036592 ], + [ 6.128722, 46.2036381 ], + [ 6.1289475, 46.2036964 ], + [ 6.1291257, 46.2037093 ], + [ 6.1294829, 46.2036783 ], + [ 6.1297109, 46.2036233 ], + [ 6.1299887, 46.2035627 ], + [ 6.1302696, 46.2035713 ], + [ 6.1306536, 46.2035523 ], + [ 6.1308974, 46.203502 ], + [ 6.1310765, 46.2034807 ], + [ 6.1313196, 46.2034601 ], + [ 6.1316436, 46.2034583 ], + [ 6.1318937, 46.2034487 ], + [ 6.1320982, 46.2034619 ], + [ 6.1323305, 46.2035023 ], + [ 6.1326155, 46.2035559 ], + [ 6.1329716, 46.2036195 ], + [ 6.1333103, 46.2037124 ], + [ 6.13356, 46.2037324 ], + [ 6.1338501, 46.2038473 ], + [ 6.1342294, 46.20402 ], + [ 6.13447, 46.2042018 ], + [ 6.1347902, 46.204408 ], + [ 6.1350306, 46.2046015 ], + [ 6.135244, 46.2048334 ], + [ 6.1354628, 46.2049996 ], + [ 6.135655, 46.2051359 ], + [ 6.1358798, 46.2052734 ], + [ 6.1360729, 46.2053917 ], + [ 6.1363205, 46.2054846 ], + [ 6.1365631, 46.2055378 ], + [ 6.1369193, 46.205541 ], + [ 6.1375837, 46.2055459 ], + [ 6.1381515, 46.205539 ], + [ 6.1387478, 46.2054308 ], + [ 6.1391705, 46.2053673 ], + [ 6.1398362, 46.2052598 ], + [ 6.140815, 46.2052899 ], + [ 6.1414304, 46.2053437 ], + [ 6.142061, 46.2054688 ], + [ 6.1425877, 46.2055513 ], + [ 6.1430627, 46.2056908 ], + [ 6.1437832, 46.2059034 ], + [ 6.1443469, 46.2060547 ], + [ 6.1448322, 46.2062006 ], + [ 6.1453328, 46.2063332 ], + [ 6.1460426, 46.2065258 ], + [ 6.1466955, 46.2066935 ], + [ 6.1474165, 46.2068412 ], + [ 6.1478918, 46.2068944 ], + [ 6.1484546, 46.2072778 ], + [ 6.1485617, 46.2072376 ], + [ 6.1487281, 46.2073745 ], + [ 6.1486224, 46.2074596 ], + [ 6.1497898, 46.2085103 ], + [ 6.1501386, 46.2084 ], + [ 6.1503719, 46.2086006 ], + [ 6.1505516, 46.2085676 ], + [ 6.1507035, 46.2086143 ], + [ 6.1508148, 46.2086713 ], + [ 6.1509067, 46.2086202 ], + [ 6.1510995, 46.2087906 ], + [ 6.1510725, 46.2088362 ], + [ 6.1511452, 46.208945 ], + [ 6.1511351, 46.2090007 ], + [ 6.1510346, 46.2091399 ], + [ 6.1530483, 46.2110494 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "WZV0028", + "country" : "CHE", + "name" : [ + { + "text" : "Wasser- und Zugvogelreservat Rhône-Verbois", + "lang" : "de-CH" + }, + { + "text" : "Réserve d'oiseaux d'eau et de migrateurs Rhône-Verbois", + "lang" : "fr-CH" + }, + { + "text" : "Riserva di uccelli acquatici e migratori Rhône-Verbois", + "lang" : "it-CH" + }, + { + "text" : "Water Bird and Migratory Bird Reserves Rhône-Verbois", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7675377, 47.468038 ], + [ 7.7674895, 47.4679574 ], + [ 7.7674061, 47.4679294 ], + [ 7.7672573, 47.4679258 ], + [ 7.7671266, 47.4679584 ], + [ 7.7670794999999995, 47.4680433 ], + [ 7.7669434, 47.4681728 ], + [ 7.7667892, 47.4682459 ], + [ 7.7666344, 47.4682382 ], + [ 7.7665033, 47.4682063 ], + [ 7.7663661, 47.4681502 ], + [ 7.7662945, 47.468106 ], + [ 7.7661812, 47.46807 ], + [ 7.766086, 47.4680784 ], + [ 7.7659731, 47.4680989 ], + [ 7.7658665, 47.4681799 ], + [ 7.7656643, 47.4681966 ], + [ 7.76548, 47.4682294 ], + [ 7.7649746, 47.4682913 ], + [ 7.7646786, 47.4683132 ], + [ 7.764356, 47.4683294 ], + [ 7.7639373, 47.4682082 ], + [ 7.7637948, 47.4683005 ], + [ 7.7637418, 47.4683151 ], + [ 7.7637379, 47.4683174 ], + [ 7.7637331, 47.4683175 ], + [ 7.7635754, 47.4683608 ], + [ 7.7635463, 47.4683688 ], + [ 7.7634165, 47.4683219 ], + [ 7.7633936, 47.4683222 ], + [ 7.7630882, 47.4682033 ], + [ 7.7627357, 47.4683104 ], + [ 7.7625227, 47.4683801 ], + [ 7.7625191000000004, 47.4683817 ], + [ 7.7623622999999995, 47.4684333 ], + [ 7.7623002, 47.4684538 ], + [ 7.7623701, 47.4685305 ], + [ 7.762707, 47.468899 ], + [ 7.7627957, 47.4689676 ], + [ 7.7631039, 47.4690744 ], + [ 7.763157, 47.4690928 ], + [ 7.7631581, 47.4690932 ], + [ 7.763295, 47.4691407 ], + [ 7.7638275, 47.4691851 ], + [ 7.7641515, 47.4691411 ], + [ 7.7643192, 47.4691183 ], + [ 7.7645071, 47.468744 ], + [ 7.7645359, 47.4687389 ], + [ 7.7646743, 47.4687148 ], + [ 7.7647823, 47.468696 ], + [ 7.7648261, 47.4686884 ], + [ 7.7648636, 47.4686743 ], + [ 7.7650494, 47.4686045 ], + [ 7.7650524, 47.4686034 ], + [ 7.7652809, 47.4686843 ], + [ 7.7654951, 47.46876 ], + [ 7.7656387, 47.4687633 ], + [ 7.7662856, 47.4687146 ], + [ 7.7663235, 47.4687117 ], + [ 7.7664228, 47.4687297 ], + [ 7.766744, 47.4689553 ], + [ 7.7668317, 47.468915 ], + [ 7.7669384, 47.4688661 ], + [ 7.7669722, 47.4688506 ], + [ 7.7669898, 47.4688261 ], + [ 7.7670151, 47.4687912 ], + [ 7.7670173, 47.4687887 ], + [ 7.7674696999999995, 47.4688094 ], + [ 7.7679552, 47.4687692 ], + [ 7.7679517, 47.4688812 ], + [ 7.7686561, 47.4689608 ], + [ 7.7690983, 47.4687499 ], + [ 7.769263, 47.4687242 ], + [ 7.7694343, 47.468767 ], + [ 7.7698599, 47.4685522 ], + [ 7.769747, 47.4683933 ], + [ 7.7697226, 47.4683801 ], + [ 7.7696243, 47.4683315 ], + [ 7.7695215, 47.4682891 ], + [ 7.7694513, 47.4682558 ], + [ 7.7693885, 47.4681972 ], + [ 7.7693418, 47.4681452 ], + [ 7.7693338, 47.4681399 ], + [ 7.7692869, 47.4681091 ], + [ 7.7692063000000005, 47.4680994 ], + [ 7.7691416, 47.4681126 ], + [ 7.7690107, 47.4681283 ], + [ 7.7689499, 47.4681505 ], + [ 7.7689041, 47.4681726 ], + [ 7.7688523, 47.4681656 ], + [ 7.7688217, 47.4681613 ], + [ 7.7689195, 47.4680427 ], + [ 7.7689866, 47.467916 ], + [ 7.7688401, 47.4679374 ], + [ 7.76868, 47.4680226 ], + [ 7.768496, 47.4680958 ], + [ 7.768288, 47.4681367 ], + [ 7.7681573, 47.4681653 ], + [ 7.7679194, 47.4681942 ], + [ 7.767723, 47.4681827 ], + [ 7.7676098, 47.4681588 ], + [ 7.7675678999999995, 47.4681145 ], + [ 7.7675377, 47.468038 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr146", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Höli", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Höli", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Höli", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Höli", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6312556, 47.5162517 ], + [ 7.6312359, 47.5166826 ], + [ 7.6312792, 47.5169196 ], + [ 7.6313221, 47.5170703 ], + [ 7.6313862, 47.5172067 ], + [ 7.6348152, 47.515549 ], + [ 7.6347793, 47.5141385 ], + [ 7.6324939, 47.5150155 ], + [ 7.6321967, 47.5150664 ], + [ 7.6319626, 47.5151263 ], + [ 7.6318772, 47.515164 ], + [ 7.6316532, 47.5152801 ], + [ 7.6315135, 47.5153589 ], + [ 7.6314767, 47.5154035 ], + [ 7.6313277, 47.515677 ], + [ 7.6312754, 47.515871 ], + [ 7.6312555, 47.5162373 ], + [ 7.6312556, 47.5162517 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr034", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Gruet", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Gruet", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Gruet", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Gruet", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4224921, 47.3980074 ], + [ 7.4225908, 47.3980599 ], + [ 7.4225629, 47.3980774 ], + [ 7.4225284, 47.3980991 ], + [ 7.422436, 47.3981569 ], + [ 7.4224274, 47.3981623 ], + [ 7.4223271, 47.3981927 ], + [ 7.4222482, 47.3982167 ], + [ 7.4222415999999996, 47.3982154 ], + [ 7.4220928, 47.398187 ], + [ 7.421934, 47.3981566 ], + [ 7.4219291, 47.398156 ], + [ 7.4218773, 47.3981502 ], + [ 7.4218116, 47.3981429 ], + [ 7.4217458, 47.3981355 ], + [ 7.4216561, 47.3982457 ], + [ 7.4215862, 47.3982862 ], + [ 7.4216331, 47.3983302 ], + [ 7.4216517, 47.3983475 ], + [ 7.4216574, 47.3983512 ], + [ 7.4217056, 47.3983822 ], + [ 7.4217408, 47.3984049 ], + [ 7.4218489, 47.3984501 ], + [ 7.421961, 47.3984849 ], + [ 7.4219949, 47.3984945 ], + [ 7.4221585, 47.398541 ], + [ 7.4224541, 47.3986021 ], + [ 7.4225014, 47.39861 ], + [ 7.4225224, 47.3986135 ], + [ 7.4227084, 47.3986443 ], + [ 7.4227899, 47.3986583 ], + [ 7.4228262, 47.3986646 ], + [ 7.4230068, 47.3986958 ], + [ 7.4230773, 47.3987099 ], + [ 7.4233316, 47.3987609 ], + [ 7.4234428, 47.3987798 ], + [ 7.4235051, 47.3987904 ], + [ 7.4235683, 47.3988012 ], + [ 7.4236075, 47.3988078 ], + [ 7.4236359, 47.3988106 ], + [ 7.4239781, 47.398844 ], + [ 7.4240221, 47.3988445 ], + [ 7.4240384, 47.3988446 ], + [ 7.4240533, 47.3988448 ], + [ 7.4241737, 47.3988462 ], + [ 7.4242317, 47.3988468 ], + [ 7.4242533, 47.3988471 ], + [ 7.4245522, 47.39882 ], + [ 7.4248098, 47.3987871 ], + [ 7.4249967, 47.3987549 ], + [ 7.42503, 47.3987248 ], + [ 7.4250823, 47.3987204 ], + [ 7.4250952, 47.398735 ], + [ 7.4251085, 47.39875 ], + [ 7.4252025, 47.3987681 ], + [ 7.4254117, 47.3988195 ], + [ 7.4254335, 47.3988196 ], + [ 7.4254444, 47.3988224 ], + [ 7.4254949, 47.3988354 ], + [ 7.4256554, 47.3988667 ], + [ 7.4257723, 47.3988785 ], + [ 7.4258748, 47.3988812 ], + [ 7.42598, 47.398881 ], + [ 7.4260926, 47.3988872 ], + [ 7.4261091, 47.3988914 ], + [ 7.4261715, 47.3989073 ], + [ 7.4261942, 47.3988785 ], + [ 7.4282423, 47.3982697 ], + [ 7.4283811, 47.3981469 ], + [ 7.4284977, 47.3980452 ], + [ 7.4286898, 47.3979337 ], + [ 7.4287944, 47.3978717 ], + [ 7.4288355, 47.3978663 ], + [ 7.4290117, 47.3977863 ], + [ 7.4290528, 47.3977647 ], + [ 7.4291574, 47.3977296 ], + [ 7.4292501, 47.3976783 ], + [ 7.4292872, 47.3976478 ], + [ 7.4293508, 47.3976172 ], + [ 7.4295072, 47.3975129 ], + [ 7.4296608, 47.397422 ], + [ 7.4298052, 47.3973726 ], + [ 7.4299933, 47.3972998 ], + [ 7.4301761, 47.3972566 ], + [ 7.4302887, 47.3972359 ], + [ 7.4303351, 47.3972125 ], + [ 7.4305206, 47.397065 ], + [ 7.4306107, 47.3969922 ], + [ 7.4306941, 47.396958 ], + [ 7.4308001, 47.3968861 ], + [ 7.4308594, 47.396864 ], + [ 7.4308364000000005, 47.3968493 ], + [ 7.4308174, 47.3968371 ], + [ 7.4314374, 47.3964769 ], + [ 7.4318556000000005, 47.3963229 ], + [ 7.4326474, 47.3959643 ], + [ 7.4329159, 47.3958427 ], + [ 7.4330152, 47.3959311 ], + [ 7.4330225, 47.3959284 ], + [ 7.4334767, 47.395763 ], + [ 7.433563, 47.3957315 ], + [ 7.4335709, 47.3957286 ], + [ 7.4336556, 47.3956081 ], + [ 7.4336983, 47.3955473 ], + [ 7.4337976999999995, 47.3954057 ], + [ 7.4337607, 47.3953532 ], + [ 7.4337397, 47.3953234 ], + [ 7.4337287, 47.3953079 ], + [ 7.4337477, 47.3952802 ], + [ 7.4337564, 47.3952675 ], + [ 7.4337962, 47.3952095 ], + [ 7.433833, 47.3951559 ], + [ 7.4338121, 47.3951407 ], + [ 7.4337781, 47.395116 ], + [ 7.4337588, 47.395102 ], + [ 7.433663, 47.3950725 ], + [ 7.4336472, 47.3950679 ], + [ 7.4333868, 47.3950103 ], + [ 7.4333594, 47.3950043 ], + [ 7.433095, 47.3950146 ], + [ 7.4330648, 47.3950191 ], + [ 7.4330345, 47.3950237 ], + [ 7.4327573, 47.3950895 ], + [ 7.4325139, 47.3951654 ], + [ 7.432252, 47.3952534 ], + [ 7.432243, 47.395256 ], + [ 7.4321648, 47.3952942 ], + [ 7.4320731, 47.3953444 ], + [ 7.4319223, 47.3954143 ], + [ 7.4318336, 47.3954784 ], + [ 7.4318144, 47.3954931 ], + [ 7.4317953, 47.3955078 ], + [ 7.4317493, 47.3955425 ], + [ 7.4316834, 47.3955976 ], + [ 7.4316155, 47.3956713 ], + [ 7.4315838, 47.3957059 ], + [ 7.4315255, 47.3957547 ], + [ 7.4314413, 47.3958327 ], + [ 7.4313836, 47.3958806 ], + [ 7.4313323, 47.3959328 ], + [ 7.4312803, 47.3959848 ], + [ 7.4312673, 47.3959963 ], + [ 7.4312549, 47.3960073 ], + [ 7.4311999, 47.3960519 ], + [ 7.431068, 47.3961605 ], + [ 7.4310243, 47.3961936 ], + [ 7.4309437, 47.3962539 ], + [ 7.4308591, 47.3963139 ], + [ 7.4307907, 47.3963558 ], + [ 7.430683, 47.3964235 ], + [ 7.4306648, 47.396434 ], + [ 7.4306466, 47.3964444 ], + [ 7.4305971, 47.3964679 ], + [ 7.4305025, 47.396513 ], + [ 7.4304121, 47.3965608 ], + [ 7.4303109, 47.3966155 ], + [ 7.4302664, 47.3966218 ], + [ 7.4301872, 47.396634 ], + [ 7.4301474, 47.3966402 ], + [ 7.4300234, 47.3966954 ], + [ 7.4297921, 47.3967831 ], + [ 7.4296134, 47.3968424 ], + [ 7.4294347, 47.3969017 ], + [ 7.4286955, 47.3971361 ], + [ 7.4286773, 47.3971419 ], + [ 7.428595, 47.3971679 ], + [ 7.4284817, 47.3972037 ], + [ 7.4281154, 47.3973193 ], + [ 7.4278548, 47.3973965 ], + [ 7.4276087, 47.3974839 ], + [ 7.4274591, 47.3975152 ], + [ 7.4273398, 47.3975459 ], + [ 7.4273611, 47.3976026 ], + [ 7.4273249, 47.3976192 ], + [ 7.4272145, 47.3976697 ], + [ 7.4271581, 47.3976955 ], + [ 7.4271109, 47.3977172 ], + [ 7.4269323, 47.3977538 ], + [ 7.4268029, 47.3977848 ], + [ 7.4263655, 47.3978895 ], + [ 7.4263369, 47.3978962 ], + [ 7.4263082, 47.3979026 ], + [ 7.4262469, 47.3979172 ], + [ 7.4261842, 47.3979319 ], + [ 7.4260583, 47.3979612 ], + [ 7.4260099, 47.3979725 ], + [ 7.4258352, 47.3980132 ], + [ 7.4253362, 47.3980549 ], + [ 7.4250573, 47.3980453 ], + [ 7.4243701, 47.3980675 ], + [ 7.4242912, 47.3980718 ], + [ 7.4241332, 47.3980802 ], + [ 7.4240543, 47.3980819 ], + [ 7.4239753, 47.3980788 ], + [ 7.4238973, 47.3980704 ], + [ 7.4238225, 47.398053 ], + [ 7.4237704, 47.3980378 ], + [ 7.4236008, 47.3980572 ], + [ 7.4234298, 47.3980089 ], + [ 7.4233139999999995, 47.3979762 ], + [ 7.4232589, 47.3979606 ], + [ 7.4231674, 47.3980194 ], + [ 7.4230608, 47.3980879 ], + [ 7.4230135, 47.3980692 ], + [ 7.4229514, 47.3980447 ], + [ 7.4229176, 47.3980364 ], + [ 7.4225581, 47.3979479 ], + [ 7.4224875, 47.3979306 ], + [ 7.4224921, 47.3980074 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr037", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Wuerbergli", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Wuerbergli", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Wuerbergli", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Wuerbergli", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.5104006, 47.2389836 ], + [ 8.5110995, 47.2393252 ], + [ 8.511647, 47.239357 ], + [ 8.5210438, 47.2392521 ], + [ 8.5210737, 47.2387741 ], + [ 8.5222028, 47.2387635 ], + [ 8.5222046, 47.2382031 ], + [ 8.520370400000001, 47.2382203 ], + [ 8.5200957, 47.2379611 ], + [ 8.5190035, 47.2379615 ], + [ 8.5178774, 47.2376644 ], + [ 8.514312499999999, 47.2377247 ], + [ 8.5136471, 47.2377372 ], + [ 8.5133084, 47.2376423 ], + [ 8.5131627, 47.2378856 ], + [ 8.5123063, 47.2381176 ], + [ 8.5110011, 47.2381064 ], + [ 8.5104098, 47.2383259 ], + [ 8.5104006, 47.2389836 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZN002", + "country" : "CHE", + "name" : [ + { + "text" : "LSZN Hausen am Albis (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSZN Hausen am Albis (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSZN Hausen am Albis (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSZN Hausen am Albis (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Flugplatzgenossenschaft Hausen Oberamt", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzgenossenschaft Hausen Oberamt", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzgenossenschaft Hausen Oberamt", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzgenossenschaft Hausen Oberamt", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Michael Ras", + "lang" : "de-CH" + }, + { + "text" : "Michael Ras", + "lang" : "fr-CH" + }, + { + "text" : "Michael Ras", + "lang" : "it-CH" + }, + { + "text" : "Michael Ras", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.fgho.ch/de/kontakt", + "email" : "office@fgho.ch", + "phone" : "0041794574479", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P02DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.9232212, 46.3814409 ], + [ 6.9234762, 46.3814363 ], + [ 6.9236561, 46.3814261 ], + [ 6.9237123, 46.381422 ], + [ 6.9237318, 46.3814206 ], + [ 6.9238663, 46.3814111 ], + [ 6.9239517, 46.3814044 ], + [ 6.9242038, 46.3813768 ], + [ 6.9244527, 46.3813378 ], + [ 6.9246973, 46.3812876 ], + [ 6.9249367, 46.3812265 ], + [ 6.9251698, 46.3811547 ], + [ 6.9253957, 46.3810725 ], + [ 6.9256132, 46.3809802 ], + [ 6.9258216, 46.3808783 ], + [ 6.9260199, 46.3807671 ], + [ 6.9262073, 46.3806473 ], + [ 6.9263829, 46.3805192 ], + [ 6.9265460999999995, 46.3803834 ], + [ 6.9266961, 46.3802405 ], + [ 6.9268323, 46.3800912 ], + [ 6.926954, 46.379936 ], + [ 6.9270608, 46.3797756 ], + [ 6.9271522999999995, 46.3796107 ], + [ 6.9272279, 46.3794421 ], + [ 6.9272875, 46.3792703 ], + [ 6.9273307, 46.3790963 ], + [ 6.9273574, 46.3789207 ], + [ 6.9273674, 46.3787442 ], + [ 6.9273606999999995, 46.3785677 ], + [ 6.927346, 46.3784437 ], + [ 6.9272245, 46.377646 ], + [ 6.9272228, 46.3776241 ], + [ 6.9272088, 46.3775047 ], + [ 6.9271954000000004, 46.3774158 ], + [ 6.9271861, 46.3773594 ], + [ 6.9271462, 46.3771849 ], + [ 6.9270899, 46.3770127 ], + [ 6.9270174, 46.3768434 ], + [ 6.9269291, 46.3766777 ], + [ 6.9268253, 46.3765164 ], + [ 6.9267065, 46.3763601 ], + [ 6.9265732, 46.3762095 ], + [ 6.9264259, 46.3760653 ], + [ 6.9262654, 46.375928 ], + [ 6.9260922, 46.3757984 ], + [ 6.9259071, 46.3756768 ], + [ 6.9257109, 46.3755639 ], + [ 6.9255045, 46.3754601 ], + [ 6.9252887, 46.3753658 ], + [ 6.9250644999999995, 46.3752816 ], + [ 6.9248328, 46.3752076 ], + [ 6.9245946, 46.3751443 ], + [ 6.924351, 46.375092 ], + [ 6.9241029, 46.3750507 ], + [ 6.9238514, 46.3750208 ], + [ 6.9235977, 46.3750024 ], + [ 6.9233427, 46.3749954 ], + [ 6.9230876, 46.375 ], + [ 6.9229113, 46.37501 ], + [ 6.9226057, 46.3750321 ], + [ 6.922528, 46.3750383 ], + [ 6.922276, 46.3750659 ], + [ 6.9220271, 46.3751049 ], + [ 6.9217825, 46.375155 ], + [ 6.9215431, 46.3752162 ], + [ 6.92131, 46.375288 ], + [ 6.9210842, 46.3753702 ], + [ 6.9208666, 46.3754625 ], + [ 6.9206582999999995, 46.3755644 ], + [ 6.92046, 46.3756755 ], + [ 6.9202726, 46.3757954 ], + [ 6.9200969, 46.3759234 ], + [ 6.9199338, 46.3760592 ], + [ 6.9197838, 46.3762021 ], + [ 6.9196476, 46.3763514 ], + [ 6.9195258, 46.3765066 ], + [ 6.9194189999999995, 46.376667 ], + [ 6.9193275, 46.3768318 ], + [ 6.9192519, 46.3770005 ], + [ 6.9191923, 46.3771722 ], + [ 6.919149, 46.3773462 ], + [ 6.9191223, 46.3775219 ], + [ 6.9191123, 46.3776983 ], + [ 6.919119, 46.3778749 ], + [ 6.9191334, 46.377997 ], + [ 6.9191468, 46.3780859 ], + [ 6.9191557, 46.3781396 ], + [ 6.9191956, 46.378314 ], + [ 6.9192519, 46.3784863 ], + [ 6.9193072, 46.3786191 ], + [ 6.919369, 46.3790251 ], + [ 6.9193776, 46.3790769 ], + [ 6.9194175, 46.3792513 ], + [ 6.9194738000000005, 46.3794235 ], + [ 6.9195463, 46.3795929 ], + [ 6.9196346, 46.3797586 ], + [ 6.9197383, 46.3799199 ], + [ 6.9198571, 46.3800762 ], + [ 6.9199904, 46.3802268 ], + [ 6.9201377, 46.380371 ], + [ 6.9202981999999995, 46.3805083 ], + [ 6.9204714, 46.380637899999996 ], + [ 6.9206565, 46.3807595 ], + [ 6.9208527, 46.3808724 ], + [ 6.9210591, 46.3809763 ], + [ 6.9212749, 46.3810705 ], + [ 6.9214991999999995, 46.3811548 ], + [ 6.9217309, 46.3812287 ], + [ 6.9219691, 46.381292 ], + [ 6.9222128, 46.3813444 ], + [ 6.9224609, 46.3813856 ], + [ 6.9227124, 46.3814155 ], + [ 6.9229662, 46.381434 ], + [ 6.9232212, 46.3814409 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00022", + "country" : "CHE", + "name" : [ + { + "text" : "Centre gendarmerie mobile - Région Est (Rennaz)", + "lang" : "de-CH" + }, + { + "text" : "Centre gendarmerie mobile - Région Est (Rennaz)", + "lang" : "fr-CH" + }, + { + "text" : "Centre gendarmerie mobile - Région Est (Rennaz)", + "lang" : "it-CH" + }, + { + "text" : "Centre gendarmerie mobile - Région Est (Rennaz)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kantonspolizei Waadt", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale vaudoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Vaud", + "lang" : "it-CH" + }, + { + "text" : "Vaud Cantonal Police", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.pcv@vd.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.8373591, 46.5447786 ], + [ 6.8373553, 46.5446373 ], + [ 6.8373408, 46.5444964 ], + [ 6.8373156999999996, 46.5443562 ], + [ 6.8372799, 46.5442171 ], + [ 6.8372336, 46.5440795 ], + [ 6.837177, 46.5439437 ], + [ 6.8371101, 46.5438101 ], + [ 6.8370332, 46.5436792 ], + [ 6.8369465, 46.5435512 ], + [ 6.8368502, 46.5434265 ], + [ 6.8367445, 46.5433055 ], + [ 6.8366298, 46.5431885 ], + [ 6.8365064, 46.5430757 ], + [ 6.8363747, 46.5429676 ], + [ 6.8362349, 46.5428643 ], + [ 6.8360874, 46.5427663 ], + [ 6.8359327, 46.5426737 ], + [ 6.8357713, 46.5425868 ], + [ 6.8356034, 46.5425059 ], + [ 6.8354297, 46.5424312 ], + [ 6.8352505, 46.5423628 ], + [ 6.8350663, 46.542301 ], + [ 6.8348778, 46.5422459 ], + [ 6.8346853, 46.5421977 ], + [ 6.8344894, 46.5421566 ], + [ 6.8342907, 46.5421225 ], + [ 6.8340897, 46.5420957 ], + [ 6.8338868999999995, 46.5420762 ], + [ 6.8336829, 46.542064 ], + [ 6.8334782, 46.5420592 ], + [ 6.8332735, 46.5420618 ], + [ 6.8330693, 46.5420718 ], + [ 6.8328661, 46.5420892 ], + [ 6.8326645, 46.5421139 ], + [ 6.832465, 46.5421458 ], + [ 6.8322682, 46.5421849 ], + [ 6.8320747, 46.542231 ], + [ 6.8318849, 46.5422841 ], + [ 6.8316994, 46.5423439 ], + [ 6.8315187, 46.5424103 ], + [ 6.8313433, 46.5424832 ], + [ 6.8311737, 46.5425623 ], + [ 6.8310103, 46.5426475 ], + [ 6.8308535, 46.5427384 ], + [ 6.8307039, 46.5428349 ], + [ 6.8305618, 46.5429366 ], + [ 6.8304276, 46.5430433 ], + [ 6.8303017, 46.5431547 ], + [ 6.8301844, 46.5432706 ], + [ 6.8300761, 46.5433904 ], + [ 6.8299769999999995, 46.5435141 ], + [ 6.8298874, 46.5436411 ], + [ 6.8298076, 46.5437712 ], + [ 6.8297377, 46.5439041 ], + [ 6.8296779999999995, 46.5440392 ], + [ 6.8296287, 46.5441763 ], + [ 6.8295898, 46.5443151 ], + [ 6.8295615, 46.544455 ], + [ 6.8295439, 46.5445957 ], + [ 6.8295369, 46.544737 ], + [ 6.8295407, 46.5448782 ], + [ 6.8295552, 46.5450191 ], + [ 6.8295803, 46.5451594 ], + [ 6.8296161, 46.5452985 ], + [ 6.8296623, 46.5454361 ], + [ 6.8297189, 46.5455719 ], + [ 6.8297858, 46.5457054 ], + [ 6.8298627, 46.5458364 ], + [ 6.8299494, 46.5459644 ], + [ 6.8300457, 46.5460891 ], + [ 6.8301513, 46.5462101 ], + [ 6.830266, 46.5463272 ], + [ 6.8303894, 46.5464399 ], + [ 6.8305212, 46.5465481 ], + [ 6.830661, 46.5466513 ], + [ 6.8308084000000004, 46.5467493 ], + [ 6.8309631, 46.5468419 ], + [ 6.8311246, 46.5469288 ], + [ 6.8312924, 46.5470098 ], + [ 6.8314661999999995, 46.5470845 ], + [ 6.8316454, 46.5471529 ], + [ 6.8318294999999996, 46.5472147 ], + [ 6.8320181, 46.5472698 ], + [ 6.8322106, 46.547318 ], + [ 6.8324065, 46.5473591 ], + [ 6.8326052, 46.5473932 ], + [ 6.8328063, 46.54742 ], + [ 6.8330091, 46.5474395 ], + [ 6.8332131, 46.5474517 ], + [ 6.8334178, 46.5474565 ], + [ 6.8336225, 46.5474539 ], + [ 6.8338268, 46.5474439 ], + [ 6.83403, 46.5474265 ], + [ 6.8342317, 46.5474019 ], + [ 6.8344311, 46.5473699 ], + [ 6.8346279, 46.5473309 ], + [ 6.8348215, 46.5472847 ], + [ 6.8350113, 46.5472317 ], + [ 6.8351968, 46.5471718 ], + [ 6.8353775, 46.5471053 ], + [ 6.8355529, 46.5470325 ], + [ 6.8357226, 46.5469533 ], + [ 6.835886, 46.5468682 ], + [ 6.8360427, 46.5467772 ], + [ 6.8361923, 46.5466808 ], + [ 6.8363344, 46.546579 ], + [ 6.8364686, 46.5464723 ], + [ 6.8365945, 46.5463609 ], + [ 6.8367118, 46.546245 ], + [ 6.8368201, 46.5461251 ], + [ 6.8369192, 46.5460015 ], + [ 6.8370087999999996, 46.5458744 ], + [ 6.8370885999999995, 46.5457443 ], + [ 6.8371584, 46.5456115 ], + [ 6.8372181, 46.5454764 ], + [ 6.8372674, 46.5453392 ], + [ 6.8373063, 46.5452005 ], + [ 6.8373346, 46.5450606 ], + [ 6.8373522, 46.5449198 ], + [ 6.8373591, 46.5447786 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "EDM0001", + "country" : "CHE", + "name" : [ + { + "text" : "Etablissement pour mineurs et jeunes adultes Aux Léchaires", + "lang" : "de-CH" + }, + { + "text" : "Etablissement pour mineurs et jeunes adultes Aux Léchaires", + "lang" : "fr-CH" + }, + { + "text" : "Etablissement pour mineurs et jeunes adultes Aux Léchaires", + "lang" : "it-CH" + }, + { + "text" : "Etablissement pour mineurs et jeunes adultes Aux Léchaires", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Direction du Service pénitentiaire Vaud", + "lang" : "de-CH" + }, + { + "text" : "Direction du Service pénitentiaire Vaud", + "lang" : "fr-CH" + }, + { + "text" : "Direction du Service pénitentiaire Vaud", + "lang" : "it-CH" + }, + { + "text" : "Direction du Service pénitentiaire Vaud", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/toutes-les-autorites/departements/departement-de-la-jeunesse-de-lenvironnement-et-de-la-securite-djes/service-penitentiaire-spen/", + "email" : "info.spen@vd.ch", + "phone" : "0041213164801", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6375942, 47.043907 ], + [ 7.6375601, 47.0437347 ], + [ 7.6375375, 47.0435878 ], + [ 7.6374827, 47.0434349 ], + [ 7.6374689, 47.0433824 ], + [ 7.6368405, 47.042678 ], + [ 7.636723, 47.0420131 ], + [ 7.6366361, 47.0414733 ], + [ 7.6366645, 47.0414714 ], + [ 7.6366596, 47.0414385 ], + [ 7.6366319, 47.0414407 ], + [ 7.6365538, 47.0407883 ], + [ 7.6369717999999995, 47.0407319 ], + [ 7.6369565999999995, 47.0406506 ], + [ 7.6368661, 47.0400941 ], + [ 7.636911, 47.039513 ], + [ 7.637209, 47.0392173 ], + [ 7.6372754, 47.0389424 ], + [ 7.637758, 47.0390066 ], + [ 7.6378625, 47.0383575 ], + [ 7.6371709, 47.0383784 ], + [ 7.6371158, 47.0380441 ], + [ 7.6373449, 47.0377431 ], + [ 7.637497, 47.0375181 ], + [ 7.6379613, 47.0371817 ], + [ 7.6378211, 47.0370856 ], + [ 7.6374243, 47.0370208 ], + [ 7.6373496, 47.0370553 ], + [ 7.6372398, 47.0370839 ], + [ 7.6370892, 47.0371088 ], + [ 7.6368067, 47.0370913 ], + [ 7.6365379, 47.0370641 ], + [ 7.6360317, 47.036985 ], + [ 7.6358114, 47.0369513 ], + [ 7.6355955, 47.0368915 ], + [ 7.6354044, 47.0368275 ], + [ 7.635267, 47.0370346 ], + [ 7.6354852, 47.0371007 ], + [ 7.6350104, 47.0378013 ], + [ 7.6348917, 47.0379557 ], + [ 7.6347918, 47.0381171 ], + [ 7.6345449, 47.0392298 ], + [ 7.6343221, 47.0402032 ], + [ 7.6342443, 47.0405991 ], + [ 7.6341789, 47.0408497 ], + [ 7.6340193, 47.0414609 ], + [ 7.6337504, 47.0431675 ], + [ 7.6336704, 47.0435627 ], + [ 7.6336341999999995, 47.0439521 ], + [ 7.6336285, 47.0443507 ], + [ 7.6336474, 47.0446332 ], + [ 7.6341794, 47.0447009 ], + [ 7.6340477, 47.0451089 ], + [ 7.6340212, 47.0452075 ], + [ 7.6339998, 47.0453089 ], + [ 7.6339848, 47.045411 ], + [ 7.6339791, 47.0455136 ], + [ 7.6339829, 47.0456162 ], + [ 7.6340018, 47.0457188 ], + [ 7.6340269, 47.0458173 ], + [ 7.6340633, 47.0459174 ], + [ 7.634107, 47.0460137 ], + [ 7.6341577, 47.0461097 ], + [ 7.6345594, 47.0467444 ], + [ 7.6345835, 47.0468013 ], + [ 7.6345966, 47.0468598 ], + [ 7.6346029, 47.0468342 ], + [ 7.63461, 47.0468088 ], + [ 7.634618, 47.0467834 ], + [ 7.6346267999999995, 47.0467582 ], + [ 7.6346366, 47.0467332 ], + [ 7.6346472, 47.0467083 ], + [ 7.6346586, 47.0466836 ], + [ 7.6346687, 47.0466634 ], + [ 7.6346794, 47.0466434 ], + [ 7.6346906, 47.0466234 ], + [ 7.6347024, 47.0466037 ], + [ 7.6347147, 47.0465841 ], + [ 7.6347276, 47.0465647 ], + [ 7.6347411, 47.0465454 ], + [ 7.6347361, 47.046546 ], + [ 7.6347312, 47.0465464 ], + [ 7.6347262, 47.0465465 ], + [ 7.6347211999999995, 47.0465465 ], + [ 7.6347163, 47.0465462 ], + [ 7.6347114, 47.0465457 ], + [ 7.6347065, 47.046545 ], + [ 7.6347017, 47.0465441 ], + [ 7.634697, 47.046543 ], + [ 7.6346924, 47.0465416 ], + [ 7.6346879, 47.0465401 ], + [ 7.6346836, 47.0465384 ], + [ 7.6346795, 47.0465365 ], + [ 7.6346755, 47.0465345 ], + [ 7.6346717, 47.0465323 ], + [ 7.6346608, 47.0465251 ], + [ 7.6346502, 47.0465177 ], + [ 7.6346401, 47.04651 ], + [ 7.6346304, 47.046502 ], + [ 7.6346211, 47.0464938 ], + [ 7.6346123, 47.0464854 ], + [ 7.6346039999999995, 47.0464768 ], + [ 7.634546, 47.046417 ], + [ 7.6345366, 47.0464073 ], + [ 7.6345275, 47.0463976 ], + [ 7.6345185, 47.0463877 ], + [ 7.6345097, 47.0463778 ], + [ 7.6345012, 47.0463678 ], + [ 7.6344928, 47.0463577 ], + [ 7.6344846, 47.0463476 ], + [ 7.6344757, 47.0463362 ], + [ 7.6344671, 47.0463248 ], + [ 7.6344588, 47.0463133 ], + [ 7.6344507, 47.0463017 ], + [ 7.6344428, 47.04629 ], + [ 7.6344352, 47.0462783 ], + [ 7.6344279, 47.0462664 ], + [ 7.6343421, 47.0461272 ], + [ 7.6343668000000005, 47.0461205 ], + [ 7.6343858, 47.0461011 ], + [ 7.6342831, 47.0460096 ], + [ 7.6342403999999995, 47.0459176 ], + [ 7.6342027, 47.0458246 ], + [ 7.6341771, 47.045729 ], + [ 7.6341567, 47.0456332 ], + [ 7.6341505, 47.0455379 ], + [ 7.6344319, 47.0446026 ], + [ 7.6346926, 47.0437357 ], + [ 7.6361339, 47.0438342 ], + [ 7.6375910000000005, 47.0439333 ], + [ 7.6375942, 47.043907 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VBS_18", + "country" : "CHE", + "name" : [ + { + "text" : "VBS_18 Burgdorf", + "lang" : "de-CH" + }, + { + "text" : "VBS_18 Burgdorf", + "lang" : "fr-CH" + }, + { + "text" : "VBS_18 Burgdorf", + "lang" : "it-CH" + }, + { + "text" : "VBS_18 Burgdorf", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "regulationExemption" : "YES", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Eidgenössisches Departement für Verteidigung, Bevölkerungsschutz und Sport (VBS)", + "lang" : "de-CH" + }, + { + "text" : "Département fédéral de la défense, de la protection de la population et des sports (DDPS)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento federale della difesa, della protezione della popolazione e dello sport (DDPS)", + "lang" : "it-CH" + }, + { + "text" : "Federal Department of Defence, Civil Protection and Sport (DDPS)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Lageverfolgungszentrum der Armee LVZ A", + "lang" : "de-CH" + }, + { + "text" : "Centre de suivi de la situation de l’armée, CSS A", + "lang" : "fr-CH" + }, + { + "text" : "Centro di monitoraggio della situazione dell’esercito, Centro mon sit Es", + "lang" : "it-CH" + }, + { + "text" : "Joint Operation Center, JOC", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vtg.admin.ch/en/joint-operations-command", + "email" : "lvz.op@vtg.admin.ch", + "phone" : "+41 58 464 96 43", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.1312066, 46.3167208 ], + [ 7.1325224, 46.315922 ], + [ 7.1328625, 46.315698 ], + [ 7.1339991, 46.3155887 ], + [ 7.1347229, 46.3154683 ], + [ 7.1354474, 46.3152246 ], + [ 7.1359209, 46.3150622 ], + [ 7.1364242, 46.3146749 ], + [ 7.1367651, 46.3145328 ], + [ 7.1372223, 46.3144936 ], + [ 7.1376207, 46.3145144 ], + [ 7.1380185, 46.3146486 ], + [ 7.1394491, 46.3146623 ], + [ 7.140526, 46.3147776 ], + [ 7.1420427, 46.3135294 ], + [ 7.1425331, 46.3124026 ], + [ 7.1431503, 46.3115784 ], + [ 7.1450434, 46.3095935 ], + [ 7.1460673, 46.3082181 ], + [ 7.1464266, 46.3070559 ], + [ 7.1461449, 46.3061061 ], + [ 7.1456862, 46.3049876 ], + [ 7.1430991, 46.3057464 ], + [ 7.1415257, 46.3067219 ], + [ 7.1403303, 46.3071775 ], + [ 7.1382849, 46.3075859 ], + [ 7.1371052, 46.308243 ], + [ 7.135817, 46.3088036 ], + [ 7.134529, 46.3090871 ], + [ 7.1327134, 46.3090003 ], + [ 7.1294528, 46.3096454 ], + [ 7.1286975, 46.3098395 ], + [ 7.1265701, 46.3104795 ], + [ 7.1262149, 46.3106251 ], + [ 7.1253652, 46.310737 ], + [ 7.1249048, 46.3108914 ], + [ 7.12409, 46.3110447 ], + [ 7.1238184, 46.3110925 ], + [ 7.1241813, 46.3114129 ], + [ 7.1244268, 46.3118301 ], + [ 7.1250847, 46.3123312 ], + [ 7.1265429, 46.3131682 ], + [ 7.1270372, 46.3134476 ], + [ 7.1281081, 46.3139255 ], + [ 7.129684, 46.3146243 ], + [ 7.1305078, 46.314954 ], + [ 7.1308375999999996, 46.3151753 ], + [ 7.1311423, 46.3154703 ], + [ 7.1312354, 46.3157647 ], + [ 7.1312066, 46.3167208 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00019", + "country" : "CHE", + "name" : [ + { + "text" : "Châtillon", + "lang" : "de-CH" + }, + { + "text" : "Châtillon", + "lang" : "fr-CH" + }, + { + "text" : "Châtillon", + "lang" : "it-CH" + }, + { + "text" : "Châtillon", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "startDateTime" : "2024-11-15T00:00:00+01:00", + "endDateTime" : "2025-04-15T00:00:00+02:00" + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Generaldirektion für Umwelt", + "lang" : "de-CH" + }, + { + "text" : "Direction générale de l'environnement", + "lang" : "fr-CH" + }, + { + "text" : "Direzione generale dell'Ambiente", + "lang" : "it-CH" + }, + { + "text" : "Environment Department", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.dge@vd.ch", + "phone" : "0041213164422", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6699624, 47.4087749 ], + [ 7.6699615, 47.4087856 ], + [ 7.6699605, 47.4087963 ], + [ 7.6699596, 47.4088071 ], + [ 7.6699591, 47.4088125 ], + [ 7.6699611, 47.4088103 ], + [ 7.6699882, 47.4087796 ], + [ 7.6699896, 47.4087781 ], + [ 7.6699901, 47.4087775 ], + [ 7.6699917, 47.4087753 ], + [ 7.6699956, 47.4087703 ], + [ 7.6699963, 47.4087693 ], + [ 7.6699969, 47.4087686 ], + [ 7.670066, 47.4086782 ], + [ 7.6701393, 47.4085731 ], + [ 7.6701435, 47.4085671 ], + [ 7.670233, 47.4084388 ], + [ 7.6703125, 47.4083249 ], + [ 7.6703871, 47.4082178 ], + [ 7.6705121, 47.4080406 ], + [ 7.6705577, 47.4079853 ], + [ 7.670622, 47.4079327 ], + [ 7.6706415, 47.4079209 ], + [ 7.6706741, 47.4079011 ], + [ 7.6707076, 47.4078859 ], + [ 7.6707418, 47.4078704 ], + [ 7.6707429, 47.4078699 ], + [ 7.6707439, 47.4078694 ], + [ 7.670745, 47.407869 ], + [ 7.6707461, 47.4078685 ], + [ 7.6707472, 47.407868 ], + [ 7.6707483, 47.4078676 ], + [ 7.6707493, 47.4078671 ], + [ 7.6707504, 47.4078667 ], + [ 7.6707515, 47.4078663 ], + [ 7.6707526999999995, 47.4078659 ], + [ 7.6707538, 47.4078654 ], + [ 7.6707549, 47.407865 ], + [ 7.670756, 47.4078646 ], + [ 7.6707571, 47.4078642 ], + [ 7.6707583, 47.4078638 ], + [ 7.6707594, 47.4078634 ], + [ 7.6707605, 47.407863 ], + [ 7.6707617, 47.4078627 ], + [ 7.6707628, 47.4078623 ], + [ 7.670764, 47.4078619 ], + [ 7.6707651, 47.4078616 ], + [ 7.6707663, 47.4078612 ], + [ 7.6707675, 47.4078609 ], + [ 7.6707686, 47.4078605 ], + [ 7.6707698, 47.4078602 ], + [ 7.670771, 47.4078598 ], + [ 7.6707722, 47.4078595 ], + [ 7.6707733000000005, 47.4078592 ], + [ 7.6707745, 47.4078589 ], + [ 7.6707757, 47.4078586 ], + [ 7.6707769, 47.4078583 ], + [ 7.6707781, 47.407858 ], + [ 7.6707792999999995, 47.4078577 ], + [ 7.6707805, 47.4078574 ], + [ 7.6707817, 47.4078572 ], + [ 7.670783, 47.4078569 ], + [ 7.6707842, 47.4078566 ], + [ 7.6707854, 47.4078564 ], + [ 7.6707866, 47.4078561 ], + [ 7.6707878, 47.4078559 ], + [ 7.670789, 47.4078557 ], + [ 7.6707903, 47.4078554 ], + [ 7.6707915, 47.4078552 ], + [ 7.6707927, 47.407855 ], + [ 7.670794, 47.4078548 ], + [ 7.6707952, 47.4078546 ], + [ 7.6707965, 47.4078544 ], + [ 7.6707977, 47.4078542 ], + [ 7.6707989, 47.407854 ], + [ 7.6708002, 47.4078538 ], + [ 7.6708014, 47.4078536 ], + [ 7.6708027, 47.4078535 ], + [ 7.6708039, 47.4078533 ], + [ 7.6708051, 47.4078532 ], + [ 7.6708064, 47.407853 ], + [ 7.6708076, 47.4078529 ], + [ 7.6708089, 47.4078528 ], + [ 7.6708101, 47.4078527 ], + [ 7.6708114, 47.4078525 ], + [ 7.6708126, 47.4078524 ], + [ 7.6708138, 47.4078523 ], + [ 7.6708151, 47.4078522 ], + [ 7.6708163, 47.4078521 ], + [ 7.6708176, 47.407852 ], + [ 7.6708189, 47.407852 ], + [ 7.6708201, 47.4078519 ], + [ 7.6708214, 47.4078518 ], + [ 7.6708226, 47.4078518 ], + [ 7.6708239, 47.4078517 ], + [ 7.6708251, 47.4078517 ], + [ 7.6708264, 47.4078516 ], + [ 7.6708276, 47.4078516 ], + [ 7.6708289, 47.4078516 ], + [ 7.6708302, 47.4078515 ], + [ 7.6708314, 47.4078515 ], + [ 7.6708327, 47.4078515 ], + [ 7.6708339, 47.4078515 ], + [ 7.6708352, 47.4078515 ], + [ 7.6708364, 47.4078515 ], + [ 7.6708377, 47.4078516 ], + [ 7.670839, 47.4078516 ], + [ 7.6708402, 47.4078516 ], + [ 7.6708415, 47.4078517 ], + [ 7.6708427, 47.4078517 ], + [ 7.670844, 47.4078518 ], + [ 7.6708452, 47.4078518 ], + [ 7.6708947, 47.4078528 ], + [ 7.6708974, 47.4078527 ], + [ 7.6709, 47.4078527 ], + [ 7.6709027, 47.4078526 ], + [ 7.6709054, 47.4078526 ], + [ 7.6709081, 47.4078525 ], + [ 7.6709107, 47.4078524 ], + [ 7.6709134, 47.4078523 ], + [ 7.6709161, 47.4078522 ], + [ 7.6709188, 47.4078521 ], + [ 7.6709215, 47.407852 ], + [ 7.6709241, 47.4078519 ], + [ 7.6709268, 47.4078518 ], + [ 7.6709295, 47.4078516 ], + [ 7.6709321, 47.4078515 ], + [ 7.6709347999999995, 47.4078514 ], + [ 7.6709375, 47.4078512 ], + [ 7.6709401, 47.4078511 ], + [ 7.6709428, 47.4078509 ], + [ 7.6709455, 47.4078507 ], + [ 7.6709481, 47.4078505 ], + [ 7.6709508, 47.4078504 ], + [ 7.6709534999999995, 47.4078502 ], + [ 7.6709561, 47.40785 ], + [ 7.6709588, 47.4078498 ], + [ 7.6709615, 47.4078496 ], + [ 7.6709641, 47.4078494 ], + [ 7.6709668, 47.4078491 ], + [ 7.6709694, 47.4078489 ], + [ 7.6709721, 47.4078487 ], + [ 7.6709747, 47.4078484 ], + [ 7.6709774, 47.4078482 ], + [ 7.67098, 47.4078479 ], + [ 7.6709827, 47.4078476 ], + [ 7.6709853, 47.4078474 ], + [ 7.6709879999999995, 47.4078471 ], + [ 7.6709906, 47.4078468 ], + [ 7.6709933, 47.4078465 ], + [ 7.6709959, 47.4078462 ], + [ 7.6709985, 47.4078459 ], + [ 7.6710012, 47.4078456 ], + [ 7.6710038, 47.4078453 ], + [ 7.6710064, 47.407845 ], + [ 7.671009, 47.4078447 ], + [ 7.6710117, 47.4078443 ], + [ 7.6710142999999995, 47.407844 ], + [ 7.6710169, 47.4078436 ], + [ 7.6710195, 47.4078433 ], + [ 7.6710221, 47.4078429 ], + [ 7.6710247, 47.4078426 ], + [ 7.6710273, 47.4078422 ], + [ 7.6710299, 47.4078418 ], + [ 7.6710325, 47.4078414 ], + [ 7.6710351, 47.407841 ], + [ 7.6710377, 47.4078406 ], + [ 7.6710403, 47.4078402 ], + [ 7.6710429, 47.4078398 ], + [ 7.6710455, 47.4078394 ], + [ 7.671048, 47.407839 ], + [ 7.6710506, 47.4078386 ], + [ 7.6710532, 47.4078381 ], + [ 7.671056, 47.4078378 ], + [ 7.6710588, 47.4078375 ], + [ 7.6710616, 47.4078372 ], + [ 7.6710644, 47.407837 ], + [ 7.6710671, 47.4078367 ], + [ 7.6710699, 47.4078364 ], + [ 7.6710727, 47.4078362 ], + [ 7.6710755, 47.4078359 ], + [ 7.6710783, 47.4078357 ], + [ 7.6710811, 47.4078354 ], + [ 7.6710839, 47.4078352 ], + [ 7.6710867, 47.407835 ], + [ 7.6710895, 47.4078347 ], + [ 7.6710923, 47.4078345 ], + [ 7.6710951, 47.4078343 ], + [ 7.6710979, 47.4078341 ], + [ 7.6711007, 47.4078339 ], + [ 7.6711035, 47.4078338 ], + [ 7.6711063, 47.4078336 ], + [ 7.6711091, 47.4078334 ], + [ 7.6711119, 47.4078332 ], + [ 7.6711148, 47.4078331 ], + [ 7.6711176, 47.4078329 ], + [ 7.6711203999999995, 47.4078328 ], + [ 7.6711232, 47.4078326 ], + [ 7.671126, 47.4078325 ], + [ 7.6711288, 47.4078324 ], + [ 7.671194, 47.4078314 ], + [ 7.6711963999999995, 47.4078188 ], + [ 7.6712611, 47.4074671 ], + [ 7.6712655, 47.4074432 ], + [ 7.6712682, 47.4074289 ], + [ 7.6711256, 47.4075012 ], + [ 7.6711227, 47.4075026 ], + [ 7.6711197, 47.407504 ], + [ 7.6711167, 47.4075054 ], + [ 7.6711138, 47.4075068 ], + [ 7.6711108, 47.4075082 ], + [ 7.6711078, 47.4075097 ], + [ 7.6711048, 47.407511 ], + [ 7.6711018, 47.4075124 ], + [ 7.6710988, 47.4075138 ], + [ 7.6710958, 47.4075152 ], + [ 7.6710928, 47.4075166 ], + [ 7.6710898, 47.4075179 ], + [ 7.6710867, 47.4075193 ], + [ 7.6710837, 47.4075207 ], + [ 7.6710807, 47.407522 ], + [ 7.6710776, 47.4075234 ], + [ 7.6710746, 47.4075247 ], + [ 7.6710715, 47.407526 ], + [ 7.6710685, 47.4075274 ], + [ 7.6710654, 47.4075287 ], + [ 7.6710623, 47.40753 ], + [ 7.6710593, 47.4075313 ], + [ 7.6710562, 47.4075326 ], + [ 7.6710531, 47.4075339 ], + [ 7.67105, 47.4075352 ], + [ 7.6710469, 47.4075365 ], + [ 7.6710438, 47.4075378 ], + [ 7.6710407, 47.4075391 ], + [ 7.6710376, 47.4075403 ], + [ 7.6710345, 47.4075416 ], + [ 7.6710314, 47.4075429 ], + [ 7.6710282, 47.4075441 ], + [ 7.6710251, 47.4075454 ], + [ 7.671022, 47.4075466 ], + [ 7.6710188, 47.4075478 ], + [ 7.6710157, 47.4075491 ], + [ 7.6710125, 47.4075503 ], + [ 7.6710094, 47.4075515 ], + [ 7.6710062, 47.4075527 ], + [ 7.671003, 47.4075539 ], + [ 7.6709999, 47.4075551 ], + [ 7.6709967, 47.4075563 ], + [ 7.6709935, 47.4075575 ], + [ 7.6709903, 47.4075587 ], + [ 7.6709871, 47.4075599 ], + [ 7.6709838999999995, 47.4075611 ], + [ 7.6709808, 47.4075622 ], + [ 7.6709775, 47.4075634 ], + [ 7.6709743, 47.4075645 ], + [ 7.6709711, 47.4075657 ], + [ 7.6709679, 47.4075668 ], + [ 7.6709647, 47.407568 ], + [ 7.6709615, 47.4075691 ], + [ 7.6709582, 47.4075702 ], + [ 7.670955, 47.4075713 ], + [ 7.6709517, 47.4075724 ], + [ 7.6709485, 47.4075736 ], + [ 7.6709452, 47.4075746 ], + [ 7.670942, 47.4075757 ], + [ 7.6709387, 47.4075768 ], + [ 7.6709355, 47.4075779 ], + [ 7.6709322, 47.407579 ], + [ 7.6709289, 47.4075801 ], + [ 7.6709257, 47.4075811 ], + [ 7.6709224, 47.4075822 ], + [ 7.6709191, 47.4075832 ], + [ 7.6709157999999995, 47.4075843 ], + [ 7.6709125, 47.4075853 ], + [ 7.6709092, 47.4075863 ], + [ 7.6709059, 47.4075874 ], + [ 7.6709026, 47.4075884 ], + [ 7.6708993, 47.4075894 ], + [ 7.670896, 47.4075904 ], + [ 7.6708927, 47.4075914 ], + [ 7.6708893, 47.4075924 ], + [ 7.670886, 47.4075934 ], + [ 7.6708827, 47.4075944 ], + [ 7.6708794000000005, 47.4075954 ], + [ 7.670876, 47.4075963 ], + [ 7.6708727, 47.4075973 ], + [ 7.6708693, 47.4075983 ], + [ 7.670866, 47.4075992 ], + [ 7.6708625999999995, 47.4076002 ], + [ 7.6708593, 47.4076011 ], + [ 7.6708559, 47.407602 ], + [ 7.670835, 47.4076079 ], + [ 7.670814, 47.4076138 ], + [ 7.6707931, 47.4076196 ], + [ 7.6707721, 47.4076255 ], + [ 7.6707471, 47.4076325 ], + [ 7.670722, 47.4076395 ], + [ 7.6706969, 47.4076465 ], + [ 7.6706719, 47.4076534 ], + [ 7.6706468, 47.4076604 ], + [ 7.6706217, 47.4076674 ], + [ 7.6705966, 47.4076743 ], + [ 7.6705716, 47.4076813 ], + [ 7.6705465, 47.4076883 ], + [ 7.6705214, 47.4076952 ], + [ 7.6704963, 47.4077021 ], + [ 7.6704712, 47.4077091 ], + [ 7.6704460999999995, 47.407716 ], + [ 7.670421, 47.4077229 ], + [ 7.6704188, 47.4077237 ], + [ 7.6704167, 47.4077245 ], + [ 7.6704145, 47.4077253 ], + [ 7.6704124, 47.4077261 ], + [ 7.6704103, 47.4077269 ], + [ 7.6704082, 47.4077277 ], + [ 7.6704061, 47.4077285 ], + [ 7.6704039999999996, 47.4077294 ], + [ 7.6704019, 47.4077302 ], + [ 7.6703998, 47.407731 ], + [ 7.6703977, 47.4077319 ], + [ 7.6703956, 47.4077327 ], + [ 7.6703935, 47.4077336 ], + [ 7.6703914, 47.4077344 ], + [ 7.6703894, 47.4077353 ], + [ 7.6703873, 47.4077362 ], + [ 7.6703852, 47.4077371 ], + [ 7.6703832, 47.4077379 ], + [ 7.6703811, 47.4077388 ], + [ 7.6703791, 47.4077397 ], + [ 7.670377, 47.4077406 ], + [ 7.670375, 47.4077415 ], + [ 7.670373, 47.4077425 ], + [ 7.670371, 47.4077434 ], + [ 7.6703689, 47.4077443 ], + [ 7.6703669, 47.4077452 ], + [ 7.6703649, 47.4077462 ], + [ 7.6703629, 47.4077471 ], + [ 7.6703609, 47.407748 ], + [ 7.6703589, 47.407749 ], + [ 7.670357, 47.4077499 ], + [ 7.670355, 47.4077509 ], + [ 7.670353, 47.4077519 ], + [ 7.670351, 47.4077529 ], + [ 7.6703491, 47.4077538 ], + [ 7.6703471, 47.4077548 ], + [ 7.6703452, 47.4077558 ], + [ 7.6703432, 47.4077568 ], + [ 7.6703413, 47.4077578 ], + [ 7.6703394, 47.4077588 ], + [ 7.6703374, 47.4077598 ], + [ 7.6703355, 47.4077608 ], + [ 7.6703336, 47.4077618 ], + [ 7.6703317, 47.4077629 ], + [ 7.6703298, 47.4077639 ], + [ 7.6703279, 47.4077649 ], + [ 7.670326, 47.407766 ], + [ 7.6703241, 47.407767 ], + [ 7.6703223, 47.4077681 ], + [ 7.6703204, 47.4077691 ], + [ 7.6703185, 47.4077702 ], + [ 7.6703167, 47.4077713 ], + [ 7.6703148, 47.4077723 ], + [ 7.670313, 47.4077734 ], + [ 7.6703111, 47.4077745 ], + [ 7.6703092999999996, 47.4077756 ], + [ 7.6703075, 47.4077767 ], + [ 7.6703057, 47.4077778 ], + [ 7.6703039, 47.4077789 ], + [ 7.6703019999999995, 47.40778 ], + [ 7.6703002, 47.4077811 ], + [ 7.6702985, 47.4077822 ], + [ 7.6702967, 47.4077833 ], + [ 7.6702949, 47.4077845 ], + [ 7.6702931, 47.4077856 ], + [ 7.6702914, 47.4077867 ], + [ 7.6702896, 47.4077879 ], + [ 7.6702878, 47.407789 ], + [ 7.6702861, 47.4077902 ], + [ 7.6702844, 47.4077913 ], + [ 7.6702826, 47.4077925 ], + [ 7.6702809, 47.4077936 ], + [ 7.6702791999999995, 47.4077948 ], + [ 7.6702775, 47.407796 ], + [ 7.6702758, 47.4077972 ], + [ 7.6702741, 47.4077984 ], + [ 7.6702724, 47.4077995 ], + [ 7.6702707, 47.4078007 ], + [ 7.670269, 47.4078019 ], + [ 7.6702674, 47.4078031 ], + [ 7.6702657, 47.4078044 ], + [ 7.6702641, 47.4078056 ], + [ 7.6702624, 47.4078068 ], + [ 7.6702608, 47.407808 ], + [ 7.6702592, 47.4078092 ], + [ 7.6702575, 47.4078105 ], + [ 7.6702559, 47.4078117 ], + [ 7.6702543, 47.4078129 ], + [ 7.6702527, 47.4078142 ], + [ 7.6702516, 47.4078151 ], + [ 7.6702505, 47.4078159 ], + [ 7.6702494, 47.4078168 ], + [ 7.6702483, 47.4078177 ], + [ 7.6702473, 47.4078186 ], + [ 7.6702462, 47.4078195 ], + [ 7.6702451, 47.4078204 ], + [ 7.6702441, 47.4078213 ], + [ 7.6702431, 47.4078222 ], + [ 7.670242, 47.4078232 ], + [ 7.670241, 47.4078241 ], + [ 7.67024, 47.407825 ], + [ 7.670239, 47.4078259 ], + [ 7.670238, 47.4078269 ], + [ 7.670237, 47.4078278 ], + [ 7.670236, 47.4078287 ], + [ 7.670235, 47.4078297 ], + [ 7.670234, 47.4078306 ], + [ 7.6702331, 47.4078316 ], + [ 7.6702321, 47.4078325 ], + [ 7.6702312, 47.4078335 ], + [ 7.6702302, 47.4078345 ], + [ 7.6702293, 47.4078354 ], + [ 7.6702284, 47.4078364 ], + [ 7.6702275, 47.4078374 ], + [ 7.6702266, 47.4078383 ], + [ 7.6702257, 47.4078393 ], + [ 7.6702248, 47.4078403 ], + [ 7.6702239, 47.4078413 ], + [ 7.670223, 47.4078423 ], + [ 7.6702221999999995, 47.4078433 ], + [ 7.6702213, 47.4078443 ], + [ 7.6702205, 47.4078453 ], + [ 7.6702196, 47.4078463 ], + [ 7.6702188, 47.4078473 ], + [ 7.670218, 47.4078483 ], + [ 7.6702172, 47.4078493 ], + [ 7.6702164, 47.4078503 ], + [ 7.6702156, 47.4078514 ], + [ 7.6702148, 47.4078524 ], + [ 7.670214, 47.4078534 ], + [ 7.6702132, 47.4078544 ], + [ 7.6702125, 47.4078555 ], + [ 7.6702117, 47.4078565 ], + [ 7.670211, 47.4078576 ], + [ 7.6702102, 47.4078586 ], + [ 7.6702095, 47.4078597 ], + [ 7.6702088, 47.4078608 ], + [ 7.670208, 47.4078618 ], + [ 7.6702072999999995, 47.4078629 ], + [ 7.6702066, 47.4078639 ], + [ 7.6702059, 47.407865 ], + [ 7.6702053, 47.4078661 ], + [ 7.6702046, 47.4078672 ], + [ 7.6702039, 47.4078683 ], + [ 7.6702033, 47.4078693 ], + [ 7.6702026, 47.4078704 ], + [ 7.670202, 47.4078715 ], + [ 7.6702014, 47.4078726 ], + [ 7.6702008, 47.4078737 ], + [ 7.6702002, 47.4078748 ], + [ 7.6701996, 47.4078759 ], + [ 7.670199, 47.407877 ], + [ 7.6701984, 47.4078781 ], + [ 7.6701979, 47.407879199999996 ], + [ 7.6701973, 47.4078803 ], + [ 7.6701968, 47.4078814 ], + [ 7.6701962, 47.4078825 ], + [ 7.6701957, 47.4078836 ], + [ 7.6701952, 47.4078847 ], + [ 7.6701947, 47.4078858 ], + [ 7.6701942, 47.407887 ], + [ 7.6701937000000004, 47.4078881 ], + [ 7.6701932, 47.4078892 ], + [ 7.6701927, 47.4078903 ], + [ 7.6701923, 47.4078915 ], + [ 7.6701918, 47.4078926 ], + [ 7.6701914, 47.4078937 ], + [ 7.6701909, 47.4078948 ], + [ 7.6701905, 47.407896 ], + [ 7.6701901, 47.4078971 ], + [ 7.6701897, 47.4078982 ], + [ 7.6701893, 47.4078994 ], + [ 7.6701889, 47.4079005 ], + [ 7.6701886, 47.4079017 ], + [ 7.6701882, 47.4079028 ], + [ 7.6701878, 47.4079039 ], + [ 7.6701875, 47.4079051 ], + [ 7.6701872, 47.4079062 ], + [ 7.6701869, 47.4079074 ], + [ 7.6701865, 47.4079085 ], + [ 7.6701862, 47.4079097 ], + [ 7.6701859, 47.4079108 ], + [ 7.6701857, 47.407912 ], + [ 7.6701854, 47.4079131 ], + [ 7.6701851, 47.4079143 ], + [ 7.6701849, 47.4079154 ], + [ 7.6701846, 47.4079166 ], + [ 7.6701844, 47.4079178 ], + [ 7.6701842, 47.4079189 ], + [ 7.6701839, 47.4079201 ], + [ 7.6701837, 47.4079212 ], + [ 7.6701835, 47.4079224 ], + [ 7.6701834, 47.4079236 ], + [ 7.6701832, 47.4079247 ], + [ 7.670183, 47.4079259 ], + [ 7.6701829, 47.4079271 ], + [ 7.6701827, 47.4079282 ], + [ 7.6701826, 47.4079294 ], + [ 7.6701825, 47.4079305 ], + [ 7.6701824, 47.4079317 ], + [ 7.6701822, 47.4079329 ], + [ 7.6701614, 47.4080854 ], + [ 7.6701489, 47.4081422 ], + [ 7.6701203, 47.4082232 ], + [ 7.6700795, 47.4083281 ], + [ 7.670053, 47.408397 ], + [ 7.6700159, 47.4084934 ], + [ 7.6699825, 47.4086035 ], + [ 7.6699704, 47.4086634 ], + [ 7.6699662, 47.4087321 ], + [ 7.6699653, 47.4087428 ], + [ 7.6699643, 47.4087535 ], + [ 7.6699633, 47.4087642 ], + [ 7.6699624, 47.4087749 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns108", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Binzenberg - Chüeweid", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Binzenberg - Chüeweid", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Binzenberg - Chüeweid", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Binzenberg - Chüeweid", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7202331, 47.433475 ], + [ 7.7207899, 47.4332767 ], + [ 7.7210954, 47.4331588 ], + [ 7.7210398, 47.432985 ], + [ 7.720909, 47.4325866 ], + [ 7.7207261, 47.4323223 ], + [ 7.720626, 47.432123 ], + [ 7.7204152, 47.431876 ], + [ 7.7202671, 47.4314857 ], + [ 7.7201985, 47.4313675 ], + [ 7.720091, 47.4311824 ], + [ 7.7198104, 47.4309061 ], + [ 7.7195339, 47.4306195 ], + [ 7.7193513, 47.4303654 ], + [ 7.7192566, 47.4301792 ], + [ 7.7191363, 47.4299532 ], + [ 7.7187356, 47.4301909 ], + [ 7.7186620999999995, 47.4302316 ], + [ 7.7186525, 47.4302479 ], + [ 7.7186314, 47.4302648 ], + [ 7.7186036, 47.4302873 ], + [ 7.7185782, 47.4303098 ], + [ 7.7185558, 47.4303306 ], + [ 7.718534, 47.4303641 ], + [ 7.7185078, 47.4303895 ], + [ 7.7184793, 47.4304167 ], + [ 7.71845, 47.4304497 ], + [ 7.7184011, 47.4304922 ], + [ 7.7183665999999995, 47.430525 ], + [ 7.7183326999999995, 47.4305694 ], + [ 7.7183112, 47.4306013 ], + [ 7.7182967, 47.4306391 ], + [ 7.7182843, 47.4306858 ], + [ 7.7182714, 47.4307433 ], + [ 7.7182561, 47.430793 ], + [ 7.7182386, 47.4308328 ], + [ 7.7182224999999995, 47.430888 ], + [ 7.7182098, 47.4309199 ], + [ 7.7181995, 47.4309487 ], + [ 7.7181874, 47.4309794 ], + [ 7.7181779, 47.4310117 ], + [ 7.7181729, 47.4310338 ], + [ 7.7181723, 47.4310473 ], + [ 7.7181741, 47.4310821 ], + [ 7.7181767, 47.431113 ], + [ 7.7181832, 47.4311293 ], + [ 7.7181927, 47.4311429 ], + [ 7.718205, 47.4311557 ], + [ 7.7182493999999995, 47.4311618 ], + [ 7.7182827, 47.4314582 ], + [ 7.7183865, 47.4317319 ], + [ 7.7185477, 47.4319417 ], + [ 7.7187061, 47.4321628 ], + [ 7.7187579, 47.4324009 ], + [ 7.7187949, 47.4326086 ], + [ 7.7188119, 47.4328571 ], + [ 7.7190871, 47.4329508 ], + [ 7.719429, 47.4331128 ], + [ 7.7195039, 47.4331526 ], + [ 7.7198306, 47.4333444 ], + [ 7.7202331, 47.433475 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns355", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Tannmatt", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Tannmatt", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Tannmatt", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Tannmatt", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.0114665, 46.3742737 ], + [ 7.0120242, 46.3747526 ], + [ 7.0128424, 46.3751587 ], + [ 7.0136009, 46.3748917 ], + [ 7.0151282, 46.3730461 ], + [ 7.0158557, 46.3712425 ], + [ 7.0188823, 46.3711017 ], + [ 7.0191505, 46.3708643 ], + [ 7.0192137, 46.3707674 ], + [ 7.0191529, 46.3705657 ], + [ 7.0190616, 46.3704412 ], + [ 7.0185743, 46.3700967 ], + [ 7.0184938, 46.3699191 ], + [ 7.0181414, 46.3696084 ], + [ 7.0178624, 46.369386 ], + [ 7.0173609, 46.369045 ], + [ 7.0169346, 46.3688761 ], + [ 7.0159839999999996, 46.3686306 ], + [ 7.0148822, 46.3685977 ], + [ 7.013795, 46.3693708 ], + [ 7.0122597, 46.3696052 ], + [ 7.0100111, 46.3696435 ], + [ 7.0080969, 46.3712788 ], + [ 7.0059143, 46.3739441 ], + [ 7.0069362, 46.3745516 ], + [ 7.0082588, 46.3752637 ], + [ 7.008937, 46.3756243 ], + [ 7.0095532, 46.3756042 ], + [ 7.0098171, 46.375105 ], + [ 7.0104166, 46.3744047 ], + [ 7.0114665, 46.3742737 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00010", + "country" : "CHE", + "name" : [ + { + "text" : "Tour de Famelon", + "lang" : "de-CH" + }, + { + "text" : "Tour de Famelon", + "lang" : "fr-CH" + }, + { + "text" : "Tour de Famelon", + "lang" : "it-CH" + }, + { + "text" : "Tour de Famelon", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "startDateTime" : "2024-11-15T00:00:00+01:00", + "endDateTime" : "2025-04-15T00:00:00+02:00" + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Generaldirektion für Umwelt", + "lang" : "de-CH" + }, + { + "text" : "Direction générale de l'environnement", + "lang" : "fr-CH" + }, + { + "text" : "Direzione generale dell'Ambiente", + "lang" : "it-CH" + }, + { + "text" : "Environment Department", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.dge@vd.ch", + "phone" : "0041213164422", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.5992185, 46.3504856 ], + [ 8.5992101, 46.3503444 ], + [ 8.5991911, 46.3502038 ], + [ 8.5991615, 46.350064 ], + [ 8.5991214, 46.3499254 ], + [ 8.5990708, 46.3497886 ], + [ 8.59901, 46.3496537 ], + [ 8.598939, 46.3495212 ], + [ 8.5988582, 46.3493915 ], + [ 8.5987676, 46.3492649 ], + [ 8.5986676, 46.3491417 ], + [ 8.5985584, 46.3490224 ], + [ 8.5984404, 46.3489071 ], + [ 8.5983138, 46.3487963 ], + [ 8.598179, 46.3486903 ], + [ 8.5980364, 46.3485892 ], + [ 8.5978864, 46.348493500000004 ], + [ 8.5977293, 46.3484033 ], + [ 8.5975656, 46.348319 ], + [ 8.5973958, 46.3482407 ], + [ 8.5972203, 46.3481687 ], + [ 8.5970395, 46.3481031 ], + [ 8.5968541, 46.3480441 ], + [ 8.5966645, 46.347992 ], + [ 8.5964712, 46.3479468 ], + [ 8.5962747, 46.3479087 ], + [ 8.5960756, 46.3478777 ], + [ 8.5958745, 46.347854 ], + [ 8.5956719, 46.3478377 ], + [ 8.5954682, 46.3478287 ], + [ 8.5952642, 46.347827 ], + [ 8.5950604, 46.3478328 ], + [ 8.5948572, 46.347846 ], + [ 8.5946554, 46.3478665 ], + [ 8.5944553, 46.3478943 ], + [ 8.5942577, 46.3479293 ], + [ 8.5940629, 46.3479714 ], + [ 8.5938716, 46.3480205 ], + [ 8.5936843, 46.3480765 ], + [ 8.5935014, 46.3481392 ], + [ 8.5933236, 46.3482084 ], + [ 8.5931512, 46.348284 ], + [ 8.5929848, 46.3483658 ], + [ 8.5928248, 46.3484534 ], + [ 8.5926716, 46.3485467 ], + [ 8.5925257, 46.3486455 ], + [ 8.5923874, 46.3487494 ], + [ 8.5922572, 46.3488582 ], + [ 8.5921354, 46.3489715 ], + [ 8.5920223, 46.3490891 ], + [ 8.5919183, 46.3492106 ], + [ 8.5918236, 46.3493358 ], + [ 8.5917384, 46.3494642 ], + [ 8.5916632, 46.3495955 ], + [ 8.5915979, 46.3497294 ], + [ 8.5915428, 46.3498654 ], + [ 8.5914981, 46.3500033 ], + [ 8.5914639, 46.3501426 ], + [ 8.5914402, 46.3502829 ], + [ 8.5914272, 46.3504239 ], + [ 8.5914248, 46.3505652 ], + [ 8.5914332, 46.3507063 ], + [ 8.591452199999999, 46.350847 ], + [ 8.5914818, 46.3509868 ], + [ 8.5915219, 46.3511253 ], + [ 8.5915724, 46.3512622 ], + [ 8.5916333, 46.3513971 ], + [ 8.5917042, 46.3515295 ], + [ 8.591785, 46.3516593 ], + [ 8.5918756, 46.3517859 ], + [ 8.5919756, 46.351909 ], + [ 8.592084700000001, 46.3520284 ], + [ 8.592202799999999, 46.3521437 ], + [ 8.5923293, 46.3522545 ], + [ 8.5924641, 46.3523606 ], + [ 8.5926067, 46.3524616 ], + [ 8.5927568, 46.3525573 ], + [ 8.5929139, 46.3526475 ], + [ 8.5930776, 46.3527319 ], + [ 8.5932474, 46.3528102 ], + [ 8.5934229, 46.3528822 ], + [ 8.5936037, 46.3529478 ], + [ 8.5937891, 46.3530067 ], + [ 8.5939788, 46.3530589 ], + [ 8.5941721, 46.3531041 ], + [ 8.5943685, 46.3531422 ], + [ 8.5945676, 46.3531731 ], + [ 8.5947688, 46.3531968 ], + [ 8.5949715, 46.3532132 ], + [ 8.5951751, 46.3532222 ], + [ 8.5953791, 46.3532238 ], + [ 8.595583, 46.3532181 ], + [ 8.5957862, 46.3532049 ], + [ 8.595988, 46.3531844 ], + [ 8.596188099999999, 46.3531566 ], + [ 8.5963858, 46.3531216 ], + [ 8.5965806, 46.3530795 ], + [ 8.5967719, 46.3530303 ], + [ 8.5969592, 46.3529744 ], + [ 8.5971421, 46.3529117 ], + [ 8.5973199, 46.3528424 ], + [ 8.5974923, 46.3527668 ], + [ 8.5976587, 46.3526851 ], + [ 8.5978188, 46.3525974 ], + [ 8.5979719, 46.3525041 ], + [ 8.5981179, 46.3524053 ], + [ 8.5982561, 46.3523014 ], + [ 8.5983863, 46.3521926 ], + [ 8.5985081, 46.3520793 ], + [ 8.5986212, 46.3519617 ], + [ 8.5987252, 46.3518401 ], + [ 8.5988199, 46.351715 ], + [ 8.598905, 46.3515866 ], + [ 8.598980300000001, 46.3514553 ], + [ 8.5990456, 46.3513214 ], + [ 8.5991006, 46.3511854 ], + [ 8.5991453, 46.3510475 ], + [ 8.5991795, 46.3509082 ], + [ 8.5992032, 46.3507679 ], + [ 8.5992162, 46.3506269 ], + [ 8.5992185, 46.3504856 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0023", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Cavergno", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Cavergno", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Cavergno", + "lang" : "it-CH" + }, + { + "text" : "Substation Cavergno", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8529321, 47.5154218 ], + [ 7.850657, 47.5147679 ], + [ 7.8506391, 47.51482 ], + [ 7.8505621, 47.514806 ], + [ 7.8503954, 47.5148347 ], + [ 7.8503568999999995, 47.5148697 ], + [ 7.8503371, 47.5148876 ], + [ 7.8503427, 47.5149027 ], + [ 7.8503659, 47.5149661 ], + [ 7.8503702, 47.5149776 ], + [ 7.8504178, 47.514991 ], + [ 7.8505073, 47.5150163 ], + [ 7.8505192, 47.5150197 ], + [ 7.8504897, 47.515071 ], + [ 7.8503355, 47.51534 ], + [ 7.8507431, 47.5154225 ], + [ 7.8508084, 47.5159198 ], + [ 7.850909, 47.5171194 ], + [ 7.850894, 47.5171382 ], + [ 7.8508127, 47.5172401 ], + [ 7.8503193, 47.5176636 ], + [ 7.8500122, 47.5180366 ], + [ 7.8499146, 47.518227 ], + [ 7.849881, 47.5182927 ], + [ 7.8497395, 47.5184964 ], + [ 7.8496387, 47.5186729 ], + [ 7.8495287, 47.5188409 ], + [ 7.8494892, 47.5189013 ], + [ 7.8492948, 47.5191572 ], + [ 7.8490611999999995, 47.5194169 ], + [ 7.8489854, 47.5194863 ], + [ 7.8489242, 47.5195423 ], + [ 7.8487143, 47.5197032 ], + [ 7.8486682, 47.5197319 ], + [ 7.8483967, 47.5199006 ], + [ 7.8483122, 47.5199573 ], + [ 7.8483179, 47.5199612 ], + [ 7.8481860999999995, 47.5200476 ], + [ 7.8479128, 47.5201465 ], + [ 7.847428, 47.5203169 ], + [ 7.8470842, 47.5203261 ], + [ 7.8466339, 47.5203599 ], + [ 7.8463973, 47.5204169 ], + [ 7.8455783, 47.5203074 ], + [ 7.8464504999999996, 47.5211797 ], + [ 7.8469192, 47.5220123 ], + [ 7.8470477, 47.5222846 ], + [ 7.8471169, 47.5224526 ], + [ 7.8471272, 47.5224775 ], + [ 7.8470968, 47.5226245 ], + [ 7.8470856, 47.5226786 ], + [ 7.8470904, 47.5227236 ], + [ 7.8472115, 47.522705 ], + [ 7.8476324, 47.5225407 ], + [ 7.8479697, 47.5224612 ], + [ 7.8483871, 47.5223874 ], + [ 7.8484729, 47.5223697 ], + [ 7.848706, 47.5219286 ], + [ 7.848904, 47.5217208 ], + [ 7.8495488, 47.5211358 ], + [ 7.8499762, 47.5207104 ], + [ 7.8503771, 47.5202343 ], + [ 7.8507632, 47.5197648 ], + [ 7.8511324, 47.5193263 ], + [ 7.8514603, 47.5188876 ], + [ 7.8515798, 47.5187182 ], + [ 7.8517282, 47.5185037 ], + [ 7.8519733, 47.5182672 ], + [ 7.8522742, 47.5180523 ], + [ 7.8524027, 47.5178614 ], + [ 7.852458, 47.5176203 ], + [ 7.8524399, 47.5174446 ], + [ 7.8523776, 47.517305 ], + [ 7.8522404, 47.5171693 ], + [ 7.8524702, 47.5167122 ], + [ 7.8526134, 47.5162554 ], + [ 7.8527697, 47.5161425 ], + [ 7.8528776, 47.5159417 ], + [ 7.8528789, 47.5159097 ], + [ 7.8528801999999995, 47.5158776 ], + [ 7.8529909, 47.5156242 ], + [ 7.8529321, 47.5154218 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr021", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Mettele", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Mettele", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Mettele", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Mettele", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.075055, 46.1684281 ], + [ 6.0751959, 46.1684689 ], + [ 6.0752433, 46.1685034 ], + [ 6.0753005, 46.1685312 ], + [ 6.0766869, 46.1689558 ], + [ 6.0775205, 46.1689689 ], + [ 6.0776877, 46.168985 ], + [ 6.0777851, 46.168973 ], + [ 6.0782015, 46.1689795 ], + [ 6.0785985, 46.1688726 ], + [ 6.0788843, 46.1688373 ], + [ 6.0792968, 46.1686844 ], + [ 6.079614, 46.1685989 ], + [ 6.0797235, 46.1685262 ], + [ 6.0799566, 46.1684398 ], + [ 6.0807996, 46.1678316 ], + [ 6.0808314, 46.1677999 ], + [ 6.0814396, 46.1668361 ], + [ 6.0814709, 46.1657839 ], + [ 6.0809207, 46.1648034 ], + [ 6.0806135, 46.1645808 ], + [ 6.0806095, 46.1645756 ], + [ 6.0805704, 46.1645495 ], + [ 6.0803671, 46.1644021 ], + [ 6.0802032, 46.1642151 ], + [ 6.07928, 46.1636645 ], + [ 6.0790694, 46.1635744 ], + [ 6.0776491, 46.1632077 ], + [ 6.076135, 46.1632465 ], + [ 6.0747574, 46.1636849 ], + [ 6.0737261, 46.1644561 ], + [ 6.073673, 46.1645159 ], + [ 6.0735807, 46.1646194 ], + [ 6.0731098, 46.1653991 ], + [ 6.0730093, 46.1662418 ], + [ 6.073289, 46.1670647 ], + [ 6.0739216, 46.1677871 ], + [ 6.0748448, 46.1683381 ], + [ 6.074846, 46.1683385 ], + [ 6.075055, 46.1684281 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-40", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4942334, 47.4382315 ], + [ 7.4938947, 47.4376128 ], + [ 7.4938669, 47.4375885 ], + [ 7.4938231, 47.4375805 ], + [ 7.4937262, 47.4374762 ], + [ 7.4935076, 47.4375932 ], + [ 7.493346, 47.4376571 ], + [ 7.4927457, 47.4379021 ], + [ 7.4927484, 47.4379911 ], + [ 7.4927127, 47.4380037 ], + [ 7.4921892, 47.4381946 ], + [ 7.4921401, 47.4380831 ], + [ 7.4915635, 47.4381445 ], + [ 7.4913169, 47.4381761 ], + [ 7.4913169, 47.4381402 ], + [ 7.4906979, 47.438216 ], + [ 7.4906983, 47.4386036 ], + [ 7.4904994, 47.4386235 ], + [ 7.490123, 47.4387136 ], + [ 7.4896617, 47.4387669 ], + [ 7.4888226, 47.4388032 ], + [ 7.4883295, 47.4388088 ], + [ 7.4882765, 47.4387945 ], + [ 7.4870436, 47.4388498 ], + [ 7.4862760999999995, 47.4388672 ], + [ 7.486475, 47.4389211 ], + [ 7.4865627, 47.4391333 ], + [ 7.4853486, 47.4394477 ], + [ 7.4853425, 47.440098 ], + [ 7.4853481, 47.4403489 ], + [ 7.4853828, 47.4406754 ], + [ 7.48564, 47.4406618 ], + [ 7.4858693, 47.4406365 ], + [ 7.4861424, 47.4405987 ], + [ 7.4861676, 47.4406445 ], + [ 7.4864406, 47.4405707 ], + [ 7.486544, 47.4405391 ], + [ 7.4866368, 47.4404905 ], + [ 7.4868726, 47.4403303 ], + [ 7.487029, 47.4402682 ], + [ 7.4878957, 47.4399459 ], + [ 7.4885848, 47.4397 ], + [ 7.4888446, 47.4396424 ], + [ 7.4935152, 47.4384935 ], + [ 7.4939194, 47.4384061 ], + [ 7.4941102, 47.4383574 ], + [ 7.4941870999999995, 47.4383223 ], + [ 7.4942281, 47.4382755 ], + [ 7.4942334, 47.4382315 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSPD002", + "country" : "CHE", + "name" : [ + { + "text" : "LSPD Dittingen (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSPD Dittingen (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSPD Dittingen (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSPD Dittingen (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Segelfluggruppe Dittingen", + "lang" : "de-CH" + }, + { + "text" : "Segelfluggruppe Dittingen", + "lang" : "fr-CH" + }, + { + "text" : "Segelfluggruppe Dittingen", + "lang" : "it-CH" + }, + { + "text" : "Segelfluggruppe Dittingen", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Philipp Glogg", + "lang" : "de-CH" + }, + { + "text" : "Philipp Glogg", + "lang" : "fr-CH" + }, + { + "text" : "Philipp Glogg", + "lang" : "it-CH" + }, + { + "text" : "Philipp Glogg", + "lang" : "en-GB" + } + ], + "siteURL" : "https://sg-dittingen.ch/e/index.php/c-buero#regelungen", + "email" : "info@sg-dittingen.ch", + "phone" : "0041796458361", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P01DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8472147, 47.4060983 ], + [ 7.8472114, 47.4060684 ], + [ 7.8473197, 47.4060749 ], + [ 7.8475513, 47.406089 ], + [ 7.8477113, 47.406075799999996 ], + [ 7.8483549, 47.4059623 ], + [ 7.8487781, 47.4059487 ], + [ 7.8488991, 47.4059692 ], + [ 7.8492603, 47.4060301 ], + [ 7.8494531, 47.4060184 ], + [ 7.8495551, 47.405968 ], + [ 7.8498611, 47.4059178 ], + [ 7.850426, 47.4059248 ], + [ 7.8507351, 47.405966 ], + [ 7.8509266, 47.4059764 ], + [ 7.8510968, 47.4059647 ], + [ 7.8514864, 47.4060167 ], + [ 7.8515543, 47.4059942 ], + [ 7.8516421, 47.4059542 ], + [ 7.8516632, 47.4058174 ], + [ 7.8516271, 47.4057157 ], + [ 7.8516156, 47.4056416 ], + [ 7.8514923, 47.4055547 ], + [ 7.8512813, 47.4053802 ], + [ 7.8508513, 47.4051314 ], + [ 7.8509704, 47.4052598 ], + [ 7.850818, 47.4054775 ], + [ 7.850565, 47.4053921 ], + [ 7.850555, 47.4053887 ], + [ 7.8503833, 47.4053316 ], + [ 7.8504741, 47.4052116 ], + [ 7.8506706, 47.4050896 ], + [ 7.8504828, 47.4050304 ], + [ 7.8504771, 47.405027 ], + [ 7.8504751, 47.405022 ], + [ 7.8504771, 47.4049749 ], + [ 7.8505635, 47.404846 ], + [ 7.8504931, 47.4047947 ], + [ 7.8504912000000004, 47.4047966 ], + [ 7.8504694, 47.4047963 ], + [ 7.8504482, 47.4047999 ], + [ 7.8504293, 47.4048072 ], + [ 7.8504138999999995, 47.4048177 ], + [ 7.8503586, 47.4049099 ], + [ 7.8503519, 47.4049199 ], + [ 7.8503395, 47.404927 ], + [ 7.8503238, 47.4049298 ], + [ 7.8503079, 47.4049278 ], + [ 7.8501432, 47.4049031 ], + [ 7.8500869, 47.4049001 ], + [ 7.849903, 47.4048434 ], + [ 7.8497129999999995, 47.4048016 ], + [ 7.8495308999999995, 47.4047784 ], + [ 7.8493145, 47.4047199 ], + [ 7.8491520999999995, 47.4046639 ], + [ 7.8490946, 47.4047033 ], + [ 7.8484815999999995, 47.4049565 ], + [ 7.8478842, 47.4052074 ], + [ 7.8469831, 47.4055712 ], + [ 7.8466708, 47.4056972 ], + [ 7.8461421, 47.4059452 ], + [ 7.846078, 47.405976 ], + [ 7.8469524, 47.406071 ], + [ 7.8472133, 47.4060982 ], + [ 7.8472147, 47.4060983 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr061", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Papur", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Papur", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Papur", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Papur", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.558835, 47.5405159 ], + [ 9.5618255, 47.5045585 ], + [ 9.5612987, 47.5000845 ], + [ 9.5612549, 47.4993162 ], + [ 9.5613034, 47.498548 ], + [ 9.561444, 47.497785 ], + [ 9.5616756, 47.4970323 ], + [ 9.5619967, 47.4962948 ], + [ 9.5624053, 47.4955775 ], + [ 9.5626683, 47.4952089 ], + [ 9.5628985, 47.4948851 ], + [ 9.5634732, 47.4942222 ], + [ 9.5641255, 47.4935931 ], + [ 9.5648512, 47.493002 ], + [ 9.5656453, 47.4924529 ], + [ 9.5665026, 47.4919494 ], + [ 9.5766773, 47.48645 ], + [ 9.5787171, 47.4853472 ], + [ 9.5792268, 47.4850609 ], + [ 9.5797185, 47.4847605 ], + [ 9.5801913, 47.4844465 ], + [ 9.5806445, 47.4841194 ], + [ 9.5810772, 47.4837799 ], + [ 9.5814887, 47.4834284 ], + [ 9.5818749, 47.4830658 ], + [ 9.5822386, 47.4826927 ], + [ 9.5825792, 47.4823097 ], + [ 9.5828961, 47.4819174 ], + [ 9.583188700000001, 47.4815166 ], + [ 9.5834566, 47.4811079 ], + [ 9.5929598, 47.465846 ], + [ 9.5932131, 47.4654726 ], + [ 9.5934871, 47.4651061 ], + [ 9.5937814, 47.4647469 ], + [ 9.5940201, 47.4644786 ], + [ 9.3858333, 47.4777777 ], + [ 9.3934069, 47.5201769 ], + [ 9.4473916, 47.5581552 ], + [ 9.4907311, 47.5547875 ], + [ 9.4956037, 47.5514551 ], + [ 9.498336, 47.551042 ], + [ 9.5069474, 47.5497394 ], + [ 9.5478266, 47.5435463 ], + [ 9.558835, 47.5405159 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 120, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "CTR0018", + "country" : "CHE", + "name" : [ + { + "text" : "CTR ST. GALLEN", + "lang" : "de-CH" + }, + { + "text" : "CTR ST. GALLEN", + "lang" : "fr-CH" + }, + { + "text" : "CTR ST. GALLEN", + "lang" : "it-CH" + }, + { + "text" : "CTR ST. GALLEN", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only permitted from an altitude of 120 m above ground with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Skyguide Special Flight Office", + "lang" : "de-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "it-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "en-GB" + } + ], + "siteURL" : "https://skyguide.ch/services/special-flights", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.5786945, 47.455918 ], + [ 8.578691899999999, 47.4557984 ], + [ 8.5786664, 47.455599 ], + [ 8.5786329, 47.4554572 ], + [ 8.5786243, 47.4553691 ], + [ 8.578304, 47.4548424 ], + [ 8.5772485, 47.453858 ], + [ 8.5766377, 47.4535105 ], + [ 8.5765108, 47.4531582 ], + [ 8.5763157, 47.4530261 ], + [ 8.5761663, 47.4529232 ], + [ 8.5759411, 47.45275 ], + [ 8.5753142, 47.4523964 ], + [ 8.5750407, 47.4522543 ], + [ 8.5745431, 47.452055 ], + [ 8.5722488, 47.4513057 ], + [ 8.5720084, 47.4512262 ], + [ 8.5715406, 47.45105 ], + [ 8.5710921, 47.4508511 ], + [ 8.5709758, 47.4508082 ], + [ 8.5703518, 47.4504005 ], + [ 8.5697399, 47.4498731 ], + [ 8.5692445, 47.4489649 ], + [ 8.5691557, 47.4485277 ], + [ 8.5691788, 47.4483044 ], + [ 8.5692295, 47.4481357 ], + [ 8.5693161, 47.4479055 ], + [ 8.56951, 47.4475429 ], + [ 8.5698024, 47.447075 ], + [ 8.5717653, 47.447098 ], + [ 8.572259, 47.4466201 ], + [ 8.5724464, 47.4463906 ], + [ 8.572905800000001, 47.4458599 ], + [ 8.5730927, 47.4456701 ], + [ 8.573345, 47.4454391 ], + [ 8.573893, 47.4449588 ], + [ 8.5730146, 47.4449935 ], + [ 8.5728305, 47.4450673 ], + [ 8.5715397, 47.445098 ], + [ 8.5712023, 47.445193 ], + [ 8.5710634, 47.4451467 ], + [ 8.5707665, 47.4451496 ], + [ 8.5703384, 47.4450962 ], + [ 8.5702903, 47.4440821 ], + [ 8.570036, 47.4434117 ], + [ 8.569735, 47.442911 ], + [ 8.5694036, 47.4424752 ], + [ 8.5689718, 47.4420621 ], + [ 8.5687281, 47.4419476 ], + [ 8.568604, 47.4418462 ], + [ 8.5685011, 47.4418121 ], + [ 8.5684263, 47.4417823 ], + [ 8.568228, 47.4416862 ], + [ 8.5680104, 47.4415534 ], + [ 8.5671129, 47.4411205 ], + [ 8.5666238, 47.4409382 ], + [ 8.5662269, 47.4408557 ], + [ 8.5656113, 47.4407727 ], + [ 8.5652157, 47.4406884 ], + [ 8.5648459, 47.4405687 ], + [ 8.5644272, 47.4403911 ], + [ 8.562676, 47.4392703 ], + [ 8.5615555, 47.4388863 ], + [ 8.5603334, 47.4388982 ], + [ 8.560032, 47.4388777 ], + [ 8.5596746, 47.4388416 ], + [ 8.5593894, 47.4387697 ], + [ 8.5589506, 47.4385824 ], + [ 8.5577608, 47.4378644 ], + [ 8.5569122, 47.4386138 ], + [ 8.5513916, 47.4431772 ], + [ 8.5501291, 47.4441788 ], + [ 8.5499565, 47.4441697 ], + [ 8.5474921, 47.4460985 ], + [ 8.546344, 47.4457246 ], + [ 8.5440234, 47.4490956 ], + [ 8.5391379, 47.4561908 ], + [ 8.5357302, 47.4568025 ], + [ 8.5315877, 47.457546 ], + [ 8.5314598, 47.4575796 ], + [ 8.5313359, 47.4576195 ], + [ 8.5312162, 47.4576647 ], + [ 8.5311032, 47.4577161 ], + [ 8.530892099999999, 47.457836 ], + [ 8.5307337, 47.4579373 ], + [ 8.5306079, 47.4580104 ], + [ 8.530478, 47.4580791 ], + [ 8.5303454, 47.4581443 ], + [ 8.5302074, 47.4582058 ], + [ 8.5296016, 47.4584175 ], + [ 8.527519999999999, 47.4585739 ], + [ 8.5274262, 47.4585927 ], + [ 8.5273352, 47.4586179 ], + [ 8.5272496, 47.4586493 ], + [ 8.5271682, 47.4586869 ], + [ 8.5270934, 47.458729 ], + [ 8.5270254, 47.4587764 ], + [ 8.5269642, 47.4588292 ], + [ 8.5269123, 47.4588845 ], + [ 8.5268684, 47.4589443 ], + [ 8.5268339, 47.4590067 ], + [ 8.5268086, 47.4590708 ], + [ 8.5267941, 47.4591357 ], + [ 8.5267888, 47.4592023 ], + [ 8.5267941, 47.4592688 ], + [ 8.5269344, 47.4601616 ], + [ 8.5269168, 47.4602068 ], + [ 8.5269542, 47.4602235 ], + [ 8.5269833, 47.4602835 ], + [ 8.5270217, 47.4603416 ], + [ 8.5270679, 47.460396 ], + [ 8.527122, 47.4604477 ], + [ 8.527184, 47.4604957 ], + [ 8.5273263, 47.460578 ], + [ 8.5274052, 47.4606114 ], + [ 8.5274893, 47.4606394 ], + [ 8.527576, 47.460662 ], + [ 8.5277582, 47.4606882 ], + [ 8.5278525, 47.4606918 ], + [ 8.5279453, 47.4606891 ], + [ 8.5282923, 47.4606678 ], + [ 8.5299266, 47.460549 ], + [ 8.5306693, 47.4604853 ], + [ 8.5306789, 47.4606939 ], + [ 8.5306814, 47.4609439 ], + [ 8.5306463, 47.4611709 ], + [ 8.5305211, 47.4614698 ], + [ 8.5303919, 47.4616393 ], + [ 8.5305719, 47.4616825 ], + [ 8.5321813, 47.4620316 ], + [ 8.5323232, 47.462033 ], + [ 8.5324159, 47.4620213 ], + [ 8.5331293, 47.461885 ], + [ 8.5336545, 47.460788 ], + [ 8.5368121, 47.4606164 ], + [ 8.543746, 47.4601274 ], + [ 8.543872, 47.4601368 ], + [ 8.5439254, 47.4601861 ], + [ 8.5439478, 47.4602534 ], + [ 8.5400917, 47.465874 ], + [ 8.5359583, 47.4718063 ], + [ 8.5354962, 47.4722763 ], + [ 8.5348949, 47.4723531 ], + [ 8.5345491, 47.4723599 ], + [ 8.5341625, 47.4723085 ], + [ 8.5337928, 47.4723291 ], + [ 8.5334553, 47.4724485 ], + [ 8.532656, 47.4743612 ], + [ 8.5330912, 47.47462 ], + [ 8.5328601, 47.4751092 ], + [ 8.5326555, 47.4753599 ], + [ 8.53248, 47.4754895 ], + [ 8.5303791, 47.4778516 ], + [ 8.5297628, 47.4787283 ], + [ 8.5293621, 47.479386 ], + [ 8.5282818, 47.4806509 ], + [ 8.5275682, 47.4813898 ], + [ 8.5270162, 47.481963 ], + [ 8.5271321, 47.4821625 ], + [ 8.5272926, 47.4824859 ], + [ 8.5277168, 47.483528 ], + [ 8.5277959, 47.4837585 ], + [ 8.527861099999999, 47.484053 ], + [ 8.5279573, 47.4843236 ], + [ 8.5280914, 47.4847497 ], + [ 8.5281364, 47.4849075 ], + [ 8.5281577, 47.4850864 ], + [ 8.5281599, 47.4853724 ], + [ 8.5282023, 47.4857427 ], + [ 8.5282477, 47.4859194 ], + [ 8.5283069, 47.4860888 ], + [ 8.5284073, 47.4862675 ], + [ 8.5285374, 47.486455 ], + [ 8.5271908, 47.4875443 ], + [ 8.528556, 47.4883997 ], + [ 8.5297403, 47.4875333 ], + [ 8.5314152, 47.4889744 ], + [ 8.5348592, 47.4873704 ], + [ 8.5332375, 47.4864654 ], + [ 8.5362106, 47.4842794 ], + [ 8.5364296, 47.484224 ], + [ 8.5369953, 47.4844497 ], + [ 8.5373707, 47.4840942 ], + [ 8.5376677, 47.4832419 ], + [ 8.5377384, 47.4831098 ], + [ 8.5378983, 47.4829838 ], + [ 8.5380901, 47.4828789 ], + [ 8.5384022, 47.4827587 ], + [ 8.5387754, 47.482549 ], + [ 8.5416946, 47.4804243 ], + [ 8.5418972, 47.4801308 ], + [ 8.5422001, 47.4793146 ], + [ 8.5424029, 47.4790066 ], + [ 8.5429233, 47.4786134 ], + [ 8.5430758, 47.4785298 ], + [ 8.5444271, 47.4783825 ], + [ 8.5444905, 47.478255 ], + [ 8.545272, 47.47771 ], + [ 8.546714099999999, 47.4766362 ], + [ 8.548388899999999, 47.4756347 ], + [ 8.548606, 47.4754833 ], + [ 8.5493602, 47.4746922 ], + [ 8.5494267, 47.4746932 ], + [ 8.5499463, 47.474252 ], + [ 8.5510941, 47.4734446 ], + [ 8.5522147, 47.472608 ], + [ 8.552881, 47.4720669 ], + [ 8.5530163, 47.4720402 ], + [ 8.5530902, 47.4720469 ], + [ 8.5531569, 47.4720697 ], + [ 8.5535315, 47.4723275 ], + [ 8.553698, 47.4723969 ], + [ 8.5537947, 47.4724081 ], + [ 8.5539495, 47.472394 ], + [ 8.5541866, 47.4722901 ], + [ 8.554405, 47.4722 ], + [ 8.5570968, 47.4712164 ], + [ 8.5575028, 47.4710279 ], + [ 8.5578751, 47.4708206 ], + [ 8.5586366, 47.4702919 ], + [ 8.5618056, 47.4680334 ], + [ 8.5626563, 47.4674255 ], + [ 8.5651346, 47.4656511 ], + [ 8.5652045, 47.4655952 ], + [ 8.5652461, 47.4655511 ], + [ 8.5652891, 47.4654852 ], + [ 8.5653205, 47.465403 ], + [ 8.5653265, 47.4653314 ], + [ 8.565313, 47.4652456 ], + [ 8.5650354, 47.464362 ], + [ 8.5650348, 47.4643152 ], + [ 8.5650537, 47.4642441 ], + [ 8.5650891, 47.4641805 ], + [ 8.5651246, 47.4641403 ], + [ 8.5651685, 47.4641034 ], + [ 8.5668858, 47.4628442 ], + [ 8.5670892, 47.4626779 ], + [ 8.567181399999999, 47.4625687 ], + [ 8.5672385, 47.4625194 ], + [ 8.5690522, 47.4611939 ], + [ 8.569147300000001, 47.4611495 ], + [ 8.5692482, 47.4611265 ], + [ 8.5693555, 47.4611151 ], + [ 8.570171, 47.4610858 ], + [ 8.5702788, 47.4610663 ], + [ 8.5703451, 47.4610457 ], + [ 8.57041, 47.4610191 ], + [ 8.5704686, 47.4609857 ], + [ 8.5710421, 47.4605715 ], + [ 8.5711214, 47.4605213 ], + [ 8.571175, 47.4604971 ], + [ 8.5712375, 47.4604765 ], + [ 8.5713101, 47.4604606 ], + [ 8.5713689, 47.4604539 ], + [ 8.5714803, 47.460446 ], + [ 8.5722839, 47.4603889 ], + [ 8.5728032, 47.4603485 ], + [ 8.5729842, 47.4603252 ], + [ 8.5731644, 47.460295 ], + [ 8.5733751, 47.4602509 ], + [ 8.573681, 47.4601658 ], + [ 8.5738471, 47.4601095 ], + [ 8.5739734, 47.4600606 ], + [ 8.5741604, 47.4599802 ], + [ 8.574599599999999, 47.4597756 ], + [ 8.5747829, 47.4596858 ], + [ 8.5749191, 47.4596093 ], + [ 8.5750502, 47.4595262 ], + [ 8.5751718, 47.4594393 ], + [ 8.5755924, 47.4590868 ], + [ 8.576452, 47.4590245 ], + [ 8.5779474, 47.4573826 ], + [ 8.5780847, 47.4572337 ], + [ 8.5781961, 47.4571085 ], + [ 8.5783267, 47.4569507 ], + [ 8.5784629, 47.456746 ], + [ 8.5785406, 47.4565969 ], + [ 8.578621, 47.4563901 ], + [ 8.5786555, 47.4562656 ], + [ 8.5786859, 47.4560764 ], + [ 8.5786945, 47.455918 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZH003", + "country" : "CHE", + "name" : [ + { + "text" : "LSZH Zürich (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSZH Zürich (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSZH Zürich (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSZH Zürich (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Flughafen Zürich AG / Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Flughafen Zürich AG / Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Flughafen Zürich AG / Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Flughafen Zürich AG / Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Skyguide Special Flight Office", + "lang" : "de-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "it-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.skyguide.ch/services/special-flights", + "email" : "drones@zurich-airport.com", + "phone" : "0041438162211", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.0632877, 46.7641216 ], + [ 9.0686727, 46.7646747 ], + [ 9.0741478, 46.766036 ], + [ 9.0946065, 46.7734788 ], + [ 9.1089986, 46.7793874 ], + [ 9.1181125, 46.7839549 ], + [ 9.121057799999999, 46.7901873 ], + [ 9.1293883, 46.7916163 ], + [ 9.1438936, 46.781166 ], + [ 9.1503401, 46.7668084 ], + [ 9.1335001, 46.7638971 ], + [ 9.1064887, 46.7543662 ], + [ 9.096027, 46.7504697 ], + [ 9.0958978, 46.7478507 ], + [ 9.1016649, 46.7390959 ], + [ 9.1125907, 46.7242702 ], + [ 9.1056834, 46.7166785 ], + [ 9.10062, 46.7158076 ], + [ 9.0876019, 46.7157492 ], + [ 9.0743734, 46.7173793 ], + [ 9.0631176, 46.7204643 ], + [ 9.0523047, 46.7252739 ], + [ 9.0447224, 46.7298796 ], + [ 9.0417916, 46.7325301 ], + [ 9.0366407, 46.7375508 ], + [ 9.0324325, 46.7435029 ], + [ 9.0288599, 46.7510655 ], + [ 9.027791, 46.7547693 ], + [ 9.0273297, 46.7635481 ], + [ 9.0286847, 46.7695349 ], + [ 9.0488996, 46.771186 ], + [ 9.0578772, 46.7648958 ], + [ 9.0632877, 46.7641216 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSXA001", + "country" : "CHE", + "name" : [ + { + "text" : "LSXA Tavanasa", + "lang" : "de-CH" + }, + { + "text" : "LSXA Tavanasa", + "lang" : "fr-CH" + }, + { + "text" : "LSXA Tavanasa", + "lang" : "it-CH" + }, + { + "text" : "LSXA Tavanasa", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swiss Helicopter AG", + "lang" : "de-CH" + }, + { + "text" : "Swiss Helicopter AG", + "lang" : "fr-CH" + }, + { + "text" : "Swiss Helicopter AG", + "lang" : "it-CH" + }, + { + "text" : "Swiss Helicopter AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Basis Tavanasa", + "lang" : "de-CH" + }, + { + "text" : "Basis Tavanasa", + "lang" : "fr-CH" + }, + { + "text" : "Basis Tavanasa", + "lang" : "it-CH" + }, + { + "text" : "Basis Tavanasa", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Tobias Herren", + "lang" : "de-CH" + }, + { + "text" : "Tobias Herren", + "lang" : "fr-CH" + }, + { + "text" : "Tobias Herren", + "lang" : "it-CH" + }, + { + "text" : "Tobias Herren", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swisshelicopter.ch/en/about-us/helicopter-bases/tavanasa", + "email" : "tavanasa@swisshelicopter.ch", + "phone" : "0041819362222", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P02DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.0277002, 46.3863228 ], + [ 8.0269433, 46.3780941 ], + [ 8.0269304, 46.3778073 ], + [ 8.0269121, 46.3776836 ], + [ 8.0268369, 46.3775659 ], + [ 8.0258111, 46.376071 ], + [ 8.0274125, 46.3732335 ], + [ 8.0273145, 46.3731835 ], + [ 8.0272374, 46.3729703 ], + [ 8.0271521, 46.3727402 ], + [ 8.0271092, 46.3726055 ], + [ 8.0269693, 46.3725108 ], + [ 8.0267568, 46.3724674 ], + [ 8.026626, 46.3724684 ], + [ 8.026423, 46.3724699 ], + [ 8.0261792, 46.3725337 ], + [ 8.0260254, 46.3725799 ], + [ 8.0258867, 46.3725977 ], + [ 8.0258454, 46.3725417 ], + [ 8.0258276, 46.3724687 ], + [ 8.0257932, 46.3723677 ], + [ 8.0257424, 46.3722499 ], + [ 8.0256432, 46.3721662 ], + [ 8.0255276, 46.3720658 ], + [ 8.0254039, 46.3719711 ], + [ 8.0252965, 46.3718762 ], + [ 8.0252781, 46.3717581 ], + [ 8.0253173, 46.3716228 ], + [ 8.0253474, 46.3714818 ], + [ 8.0253694, 46.3713354 ], + [ 8.0253348, 46.3712173 ], + [ 8.0253173, 46.3710994 ], + [ 8.0253801, 46.3709695 ], + [ 8.0254749, 46.3707999 ], + [ 8.0255061, 46.3706815 ], + [ 8.0254795, 46.3705466 ], + [ 8.0253619, 46.3703393 ], + [ 8.0251955, 46.3701266 ], + [ 8.0250282, 46.3698239 ], + [ 8.0248601, 46.3695325 ], + [ 8.024693, 46.3692468 ], + [ 8.0245007, 46.3689668 ], + [ 8.0243096, 46.368715 ], + [ 8.0241836, 46.3684852 ], + [ 8.0240505, 46.3683455 ], + [ 8.0239099, 46.3681833 ], + [ 8.0238834, 46.3680654 ], + [ 8.0238404, 46.3679194 ], + [ 8.0237852, 46.3675427 ], + [ 8.0237088, 46.3673125 ], + [ 8.0236405, 46.3671554 ], + [ 8.0235731, 46.3670039 ], + [ 8.0235719, 46.3668971 ], + [ 8.0236104, 46.366773 ], + [ 8.0236649, 46.3666262 ], + [ 8.023737, 46.3665412 ], + [ 8.0238092, 46.3664506 ], + [ 8.023865, 46.3663602 ], + [ 8.0239193, 46.366191 ], + [ 8.0239247, 46.3660164 ], + [ 8.0239708, 46.3658472 ], + [ 8.0240406, 46.3656159 ], + [ 8.0241182, 46.3653565 ], + [ 8.0241789, 46.365114 ], + [ 8.0242326, 46.3648997 ], + [ 8.024319, 46.3647021 ], + [ 8.024389, 46.3644876 ], + [ 8.0244761, 46.3642844 ], + [ 8.0245463, 46.3640925 ], + [ 8.024592, 46.3638839 ], + [ 8.024693, 46.363613 ], + [ 8.0247727, 46.3634716 ], + [ 8.0248541, 46.3634936 ], + [ 8.0248636, 46.3635385 ], + [ 8.024872, 46.3635666 ], + [ 8.0248648, 46.3636511 ], + [ 8.0248668, 46.3637637 ], + [ 8.0248608, 46.3638875 ], + [ 8.0248634, 46.3640451 ], + [ 8.0248735, 46.3641576 ], + [ 8.0248427, 46.3643153 ], + [ 8.024813, 46.3644957 ], + [ 8.0247912, 46.3646592 ], + [ 8.0248023, 46.364856 ], + [ 8.0248308, 46.3650866 ], + [ 8.0248826, 46.3653001 ], + [ 8.024929, 46.3656092 ], + [ 8.0250057, 46.3658676 ], + [ 8.0250348, 46.3661545 ], + [ 8.0252295, 46.3660629 ], + [ 8.0252277, 46.3659672 ], + [ 8.0251683, 46.3658101 ], + [ 8.0251735, 46.365613 ], + [ 8.0251694, 46.365388 ], + [ 8.0251982, 46.3651232 ], + [ 8.0252443, 46.3649483 ], + [ 8.0252986, 46.3647903 ], + [ 8.0253448, 46.3646324 ], + [ 8.025481, 46.3644626 ], + [ 8.0255935, 46.3643491 ], + [ 8.0257951, 46.3642182 ], + [ 8.0258752, 46.3641105 ], + [ 8.02593, 46.3640033 ], + [ 8.0259774, 46.3638791 ], + [ 8.0260236, 46.3637155 ], + [ 8.0259964, 46.3635356 ], + [ 8.0260428, 46.3633889 ], + [ 8.0260972, 46.3632365 ], + [ 8.0261106, 46.3630564 ], + [ 8.0260995, 46.3628537 ], + [ 8.026047, 46.3626572 ], + [ 8.025906, 46.3624613 ], + [ 8.025756, 46.3622542 ], + [ 8.0255658, 46.3620867 ], + [ 8.0253834, 46.3618912 ], + [ 8.0251847, 46.3616956 ], + [ 8.0249038, 46.3614783 ], + [ 8.0247372, 46.3612375 ], + [ 8.0245053, 46.3609691 ], + [ 8.0243885, 46.3608405 ], + [ 8.024313, 46.3606891 ], + [ 8.0242217, 46.3605829 ], + [ 8.0240818, 46.3604882 ], + [ 8.0239259, 46.3604106 ], + [ 8.0237521, 46.3602599 ], + [ 8.0236362, 46.3601313 ], + [ 8.0234696, 46.3598906 ], + [ 8.0233274, 46.3596609 ], + [ 8.0232511, 46.3595095 ], + [ 8.0230941, 46.3593363 ], + [ 8.0229694, 46.3592246 ], + [ 8.0228047, 46.3590795 ], + [ 8.0226566, 46.3589792 ], + [ 8.0224593, 46.3589076 ], + [ 8.0221803, 46.3587915 ], + [ 8.0219595, 46.35872 ], + [ 8.0218685, 46.3586418 ], + [ 8.021785, 46.3585019 ], + [ 8.0216445, 46.3583565 ], + [ 8.0215189, 46.3581549 ], + [ 8.0213365, 46.3579592 ], + [ 8.021195, 46.3577857 ], + [ 8.0209963, 46.357579 ], + [ 8.0207797, 46.3572993 ], + [ 8.0206376, 46.3570696 ], + [ 8.0203556, 46.3567509 ], + [ 8.0201323, 46.3565218 ], + [ 8.0199336, 46.3563094 ], + [ 8.0197677, 46.3561361 ], + [ 8.0196338, 46.3559177 ], + [ 8.0195082, 46.3557105 ], + [ 8.0193742, 46.3554806 ], + [ 8.0193715, 46.3553062 ], + [ 8.0193702, 46.3551768 ], + [ 8.0193032, 46.355059 ], + [ 8.0191699, 46.3548968 ], + [ 8.0189717, 46.3547408 ], + [ 8.0188074, 46.3546407 ], + [ 8.0186271, 46.3545576 ], + [ 8.0184299, 46.3544916 ], + [ 8.0181832, 46.3543527 ], + [ 8.0179374, 46.354225 ], + [ 8.0177882, 46.3540855 ], + [ 8.0176743, 46.3540639 ], + [ 8.0175433, 46.3540424 ], + [ 8.017355, 46.3539761 ], + [ 8.0171335, 46.3539103 ], + [ 8.01688, 46.3538165 ], + [ 8.0166585, 46.3537619 ], + [ 8.0164049, 46.3536568 ], + [ 8.0162153, 46.3535401 ], + [ 8.0159764, 46.353373 ], + [ 8.0156872, 46.3531331 ], + [ 8.0155314, 46.3530668 ], + [ 8.0153275, 46.3530571 ], + [ 8.015149, 46.353064 ], + [ 8.0149775, 46.3530485 ], + [ 8.0148217, 46.3529877 ], + [ 8.0146562, 46.3528426 ], + [ 8.0145156, 46.3526804 ], + [ 8.014176, 46.3523509 ], + [ 8.0138937, 46.3519928 ], + [ 8.01357, 46.351635 ], + [ 8.0130819, 46.3511603 ], + [ 8.0128506, 46.3509313 ], + [ 8.0125629, 46.350759 ], + [ 8.0121339, 46.3504245 ], + [ 8.0120345, 46.3503071 ], + [ 8.0120167, 46.350234 ], + [ 8.0120304, 46.3500764 ], + [ 8.0119809, 46.3499979 ], + [ 8.0117919, 46.3499374 ], + [ 8.0115149, 46.3499283 ], + [ 8.0112373, 46.3498572 ], + [ 8.0108685, 46.3497642 ], + [ 8.0105501, 46.3496766 ], + [ 8.0103771, 46.3495934 ], + [ 8.0101885, 46.3494936 ], + [ 8.0100898, 46.3494492 ], + [ 8.0098953, 46.3494901 ], + [ 8.0097081, 46.3495196 ], + [ 8.0094801, 46.3495326 ], + [ 8.00931, 46.3495788 ], + [ 8.0091718, 46.3496362 ], + [ 8.0088872, 46.3496777 ], + [ 8.0087327, 46.3496564 ], + [ 8.0086423, 46.3496233 ], + [ 8.0085113, 46.3496017 ], + [ 8.0084213, 46.3495348 ], + [ 8.0083224, 46.3494736 ], + [ 8.0081746, 46.3493903 ], + [ 8.008003, 46.3493635 ], + [ 8.007832, 46.3493985 ], + [ 8.0076456, 46.349428 ], + [ 8.0074341, 46.349469 ], + [ 8.0072721, 46.3495096 ], + [ 8.0070928, 46.3495222 ], + [ 8.0069134, 46.3495235 ], + [ 8.0067581, 46.3495022 ], + [ 8.0066367, 46.3495368 ], + [ 8.0064991, 46.3495829 ], + [ 8.0063764, 46.3495782 ], + [ 8.0061968, 46.349557 ], + [ 8.0060089, 46.3495303 ], + [ 8.0058209, 46.3494811 ], + [ 8.0055513, 46.3494099 ], + [ 8.0053541, 46.3493381 ], + [ 8.0051006, 46.3492443 ], + [ 8.0048628, 46.349173 ], + [ 8.0046253, 46.3490622 ], + [ 8.0044682, 46.3489452 ], + [ 8.0042878, 46.3488508 ], + [ 8.0040673, 46.3488073 ], + [ 8.0037973, 46.3487644 ], + [ 8.0035122, 46.3487552 ], + [ 8.0031045, 46.3487469 ], + [ 8.0031559, 46.3489267 ], + [ 8.0029772, 46.3489168 ], + [ 8.0027004, 46.3489244 ], + [ 8.0024157, 46.3489602 ], + [ 8.0020914, 46.3490809 ], + [ 8.0019097, 46.3489415 ], + [ 8.0017116, 46.3487854 ], + [ 8.0015386, 46.3486291 ], + [ 8.001373, 46.3484726 ], + [ 8.0012088, 46.348372499999996 ], + [ 8.0011252, 46.3482213 ], + [ 8.0010651, 46.3480642 ], + [ 8.0010059, 46.3479183 ], + [ 8.0009147, 46.3478063 ], + [ 8.0008071, 46.3476889 ], + [ 8.0006104, 46.3475891 ], + [ 7.9998465, 46.347212 ], + [ 7.9997418, 46.3472915 ], + [ 7.9996363, 46.3473035 ], + [ 7.9994979, 46.347344 ], + [ 7.999255, 46.3474076 ], + [ 7.9990033, 46.3474883 ], + [ 7.9987691, 46.3476082 ], + [ 7.9985512, 46.3477393 ], + [ 7.9984223, 46.347836 ], + [ 7.9983099, 46.3479605 ], + [ 7.9981728, 46.3480516 ], + [ 7.9980682, 46.3481481 ], + [ 7.9979318, 46.348301 ], + [ 7.99782, 46.3484032 ], + [ 7.9977642, 46.3485049 ], + [ 7.9977329, 46.3486177 ], + [ 7.9976614, 46.348697 ], + [ 7.9975891, 46.3487764 ], + [ 7.9975006, 46.3488558 ], + [ 7.9974126, 46.3489802 ], + [ 7.9973735999999995, 46.3490593 ], + [ 7.9973505, 46.3491833 ], + [ 7.9973279, 46.3492735 ], + [ 7.9973209999999995, 46.3493918 ], + [ 7.9973551, 46.3494703 ], + [ 7.9973733, 46.3495827 ], + [ 7.9974159, 46.3496949 ], + [ 7.9974588, 46.349841 ], + [ 7.9975096, 46.3499644 ], + [ 7.9975928, 46.350082 ], + [ 7.9976675, 46.3501545 ], + [ 7.9977252, 46.3502386 ], + [ 7.9977762, 46.3503845 ], + [ 7.9978023, 46.3504743 ], + [ 7.9978203, 46.35057 ], + [ 7.9978386, 46.3506879 ], + [ 7.9978475, 46.3507667 ], + [ 7.9978984, 46.3508958 ], + [ 7.9979572, 46.3510136 ], + [ 7.997951, 46.3511206 ], + [ 7.9979696, 46.3512723 ], + [ 7.9980779, 46.3514573 ], + [ 7.9981872, 46.3516646 ], + [ 7.9971939, 46.3517226 ], + [ 7.997138, 46.351813 ], + [ 7.9970348, 46.3519657 ], + [ 7.996932, 46.3521578 ], + [ 7.9968526, 46.3523273 ], + [ 7.9967907, 46.3525473 ], + [ 7.9967704, 46.3527838 ], + [ 7.9967728, 46.3529357 ], + [ 7.9968158, 46.3530929 ], + [ 7.9968748, 46.3532276 ], + [ 7.9969336, 46.3533397 ], + [ 7.9969601, 46.3534689 ], + [ 7.9969871999999995, 46.3536545 ], + [ 7.9969652, 46.353801 ], + [ 7.997008, 46.3539357 ], + [ 7.9970657, 46.3540254 ], + [ 7.9971322, 46.354098 ], + [ 7.9971507, 46.354233 ], + [ 7.9971852, 46.3543565 ], + [ 7.9972444, 46.3545024 ], + [ 7.9973276, 46.3546201 ], + [ 7.9973882, 46.3548278 ], + [ 7.9973908, 46.3549966 ], + [ 7.9973348, 46.3550815 ], + [ 7.9972297999999995, 46.3551329 ], + [ 7.9970748, 46.3551509 ], + [ 7.9968466, 46.355147 ], + [ 7.9967093, 46.355221 ], + [ 7.9965964, 46.3552951 ], + [ 7.9965092, 46.355419499999996 ], + [ 7.9963792, 46.3554993 ], + [ 7.9962578, 46.3555339 ], + [ 7.9961363, 46.3555687 ], + [ 7.9959342, 46.3556545 ], + [ 7.995773, 46.3557795 ], + [ 7.9956938, 46.3559714 ], + [ 7.9957539, 46.3561285 ], + [ 7.9958783, 46.3563077 ], + [ 7.9961516, 46.3565816 ], + [ 7.996374, 46.3567318 ], + [ 7.9965475999999995, 46.3568769 ], + [ 7.9966135, 46.3569665 ], + [ 7.996674, 46.3571573 ], + [ 7.9967662, 46.3573649 ], + [ 7.9968181, 46.3575164 ], + [ 7.9968109, 46.3576066 ], + [ 7.9967711, 46.3576856 ], + [ 7.9966592, 46.3577766 ], + [ 7.996579, 46.3578728 ], + [ 7.9965635, 46.3579518 ], + [ 7.9965736, 46.3580585 ], + [ 7.9966167, 46.3582271 ], + [ 7.9967016, 46.3584235 ], + [ 7.996802, 46.358631 ], + [ 7.9969111, 46.3588215 ], + [ 7.9970686, 46.3589724 ], + [ 7.9972092, 46.3591458 ], + [ 7.9972842, 46.3592465 ], + [ 7.9973106, 46.3593701 ], + [ 7.9973472, 46.3596119 ], + [ 7.9973101, 46.3598766 ], + [ 7.9972811, 46.3601301 ], + [ 7.9972444, 46.3603556 ], + [ 7.9971166, 46.3605703 ], + [ 7.9970053, 46.360723 ], + [ 7.9968926, 46.360814 ], + [ 7.9967225, 46.3608602 ], + [ 7.9964382, 46.3609355 ], + [ 7.9962851, 46.3610548 ], + [ 7.9962051, 46.3611735 ], + [ 7.9962415, 46.3613984 ], + [ 7.996285, 46.3616007 ], + [ 7.9963445, 46.3617803 ], + [ 7.9964437, 46.361864 ], + [ 7.9965752, 46.361942 ], + [ 7.9966905, 46.3620198 ], + [ 7.9967828, 46.3621487 ], + [ 7.9968003, 46.3622723 ], + [ 7.9968188, 46.3624129 ], + [ 7.996821, 46.3625479 ], + [ 7.9968636, 46.3626602 ], + [ 7.9969139, 46.362733 ], + [ 7.9970374, 46.3628221 ], + [ 7.997177, 46.3628886 ], + [ 7.9973491, 46.3629662 ], + [ 7.9975953, 46.3630545 ], + [ 7.9977673, 46.3631151 ], + [ 7.9980207, 46.3631919 ], + [ 7.9983075, 46.3632799 ], + [ 7.9984717, 46.36338 ], + [ 7.9986034, 46.3634691 ], + [ 7.9987767, 46.3635804 ], + [ 7.9990475, 46.363691 ], + [ 7.9992602999999995, 46.3637683 ], + [ 7.999408, 46.3638347 ], + [ 7.9994827, 46.3639129 ], + [ 7.9995413, 46.3640026 ], + [ 7.9996653, 46.3641366 ], + [ 7.9997565, 46.3642374 ], + [ 7.9998073, 46.3643608 ], + [ 7.9998664, 46.3645011 ], + [ 7.9999418, 46.3646411 ], + [ 8.0000506, 46.3648036 ], + [ 8.0001668, 46.364966 ], + [ 8.0003486, 46.365111 ], + [ 8.0004881, 46.3651719 ], + [ 8.0005711, 46.3652669 ], + [ 8.0006799, 46.3654912 ], + [ 8.0007906, 46.3657549 ], + [ 8.0009254, 46.3660635 ], + [ 8.0008546, 46.3662103 ], + [ 8.0008071, 46.3663233 ], + [ 8.0007928, 46.3664416 ], + [ 8.0007709, 46.3665994 ], + [ 8.0006913, 46.3667575 ], + [ 8.0006046, 46.366927 ], + [ 8.0005586, 46.3671187 ], + [ 8.0004629, 46.3672826 ], + [ 8.0004491, 46.3674459 ], + [ 8.0004528, 46.3676429 ], + [ 8.0004881, 46.3678339 ], + [ 8.0005151, 46.3680139 ], + [ 8.0006411, 46.368255 ], + [ 8.0007342, 46.3684626 ], + [ 8.0007851, 46.3685916 ], + [ 8.0008195, 46.3686983 ], + [ 8.0008866, 46.3688329 ], + [ 8.0010193, 46.369012 ], + [ 8.0012175, 46.3691738 ], + [ 8.0013507, 46.3693304 ], + [ 8.001549, 46.3694978 ], + [ 8.0017061, 46.3696879 ], + [ 8.0018399, 46.3698953 ], + [ 8.0019169, 46.3701142 ], + [ 8.0020347, 46.3703497 ], + [ 8.002177, 46.3706075 ], + [ 8.0024212, 46.3711236 ], + [ 8.0025922, 46.3710829 ], + [ 8.0027621, 46.3710197 ], + [ 8.0029239, 46.3709566 ], + [ 8.0030937, 46.3708822 ], + [ 8.0032145, 46.3707856 ], + [ 8.003351, 46.3706327 ], + [ 8.003463, 46.3704629 ], + [ 8.0035415, 46.3702823 ], + [ 8.0035922, 46.3703889 ], + [ 8.0036837, 46.3705176 ], + [ 8.0037917, 46.3706688 ], + [ 8.0039072, 46.3707636 ], + [ 8.0039088, 46.3708425 ], + [ 8.0038855, 46.3709383 ], + [ 8.0038956, 46.3710507 ], + [ 8.0039381, 46.3711629 ], + [ 8.003989, 46.3712864 ], + [ 8.0040561, 46.3714154 ], + [ 8.0041556, 46.3715272 ], + [ 8.0042876, 46.3716444 ], + [ 8.0043707, 46.3717451 ], + [ 8.004209, 46.3718252 ], + [ 8.0042014, 46.3718702 ], + [ 8.0041708, 46.3719717 ], + [ 8.0041635, 46.3720506 ], + [ 8.0041074, 46.3721299 ], + [ 8.0041251, 46.372186 ], + [ 8.0041676, 46.372287 ], + [ 8.0041518, 46.372332 ], + [ 8.0040627, 46.3723609 ], + [ 8.0039983, 46.3724121 ], + [ 8.003942, 46.3724687 ], + [ 8.0039345, 46.372525 ], + [ 8.0039363, 46.3726207 ], + [ 8.0038965, 46.3727054 ], + [ 8.0039391, 46.372812 ], + [ 8.0039563, 46.372902 ], + [ 8.0039417, 46.3729866 ], + [ 8.0040012, 46.3731662 ], + [ 8.004118, 46.3733004 ], + [ 8.0042499, 46.373412 ], + [ 8.0044063, 46.3735234 ], + [ 8.0045718, 46.3736629 ], + [ 8.0048293, 46.3739762 ], + [ 8.0048548, 46.3740885 ], + [ 8.0048081, 46.3742015 ], + [ 8.0047214, 46.3743879 ], + [ 8.0046495, 46.374501 ], + [ 8.0046178, 46.37458 ], + [ 8.0046197, 46.374687 ], + [ 8.0046947, 46.3747876 ], + [ 8.0047454, 46.3749055 ], + [ 8.0047639, 46.3750461 ], + [ 8.0047338, 46.3751926 ], + [ 8.0046783, 46.3753281 ], + [ 8.0045993, 46.3754638 ], + [ 8.0044946, 46.3755546 ], + [ 8.0043737, 46.3756512 ], + [ 8.0042207, 46.3757817 ], + [ 8.0040676, 46.3759011 ], + [ 8.0039389, 46.3760203 ], + [ 8.0038602, 46.3761896 ], + [ 8.0038306, 46.3763981 ], + [ 8.0037949, 46.3767192 ], + [ 8.0037361, 46.3771588 ], + [ 8.0037001, 46.3774572 ], + [ 8.0036219, 46.3776661 ], + [ 8.0034953, 46.3779203 ], + [ 8.0025939, 46.3786643 ], + [ 8.0023928, 46.3788628 ], + [ 8.0023624, 46.3789868 ], + [ 8.0024038, 46.3790597 ], + [ 8.0025029, 46.3791378 ], + [ 8.0026671, 46.3792323 ], + [ 8.0028324, 46.3793436 ], + [ 8.002932, 46.3794667 ], + [ 8.0029829, 46.3796014 ], + [ 8.0029688, 46.3797365 ], + [ 8.0030196, 46.3798544 ], + [ 8.0031269, 46.3799437 ], + [ 8.0032265, 46.3800611 ], + [ 8.0033016, 46.3801844 ], + [ 8.0033691, 46.3803415 ], + [ 8.0034285, 46.3805155 ], + [ 8.0035945, 46.3806945 ], + [ 8.0037601, 46.3808396 ], + [ 8.0038922, 46.3809737 ], + [ 8.0039758, 46.381125 ], + [ 8.0040683, 46.3812651 ], + [ 8.0041518, 46.3814109 ], + [ 8.0041787, 46.3815794 ], + [ 8.00424, 46.3818491 ], + [ 8.0042751, 46.382029 ], + [ 8.0043425, 46.3821749 ], + [ 8.0043927, 46.3822364 ], + [ 8.0045328, 46.3823536 ], + [ 8.0046239, 46.3824429 ], + [ 8.0047407, 46.3825828 ], + [ 8.0048405, 46.3827227 ], + [ 8.004883, 46.3828237 ], + [ 8.0049086, 46.3829474 ], + [ 8.0049363, 46.3831048 ], + [ 8.0049292, 46.3832061 ], + [ 8.0048992, 46.3833696 ], + [ 8.0048933, 46.3835047 ], + [ 8.004904, 46.3836734 ], + [ 8.0049146, 46.383831 ], + [ 8.0049983, 46.3839936 ], + [ 8.0051396, 46.3841446 ], + [ 8.0052228, 46.3842452 ], + [ 8.0052897, 46.3843573 ], + [ 8.0052826, 46.3844531 ], + [ 8.0052364, 46.3846223 ], + [ 8.0053434, 46.3846721 ], + [ 8.0054507, 46.3847613 ], + [ 8.0056073, 46.3848952 ], + [ 8.0057644, 46.385001 ], + [ 8.0060684, 46.3851677 ], + [ 8.0064064, 46.3854016 ], + [ 8.0066359, 46.3855237 ], + [ 8.0069247, 46.3857129 ], + [ 8.0071475, 46.3858802 ], + [ 8.0073704, 46.3860642 ], + [ 8.0075523, 46.3862092 ], + [ 8.0077333, 46.3863485 ], + [ 8.0079056, 46.3864374 ], + [ 8.0082089, 46.3865363 ], + [ 8.0083323, 46.386603 ], + [ 8.0084072, 46.3866925 ], + [ 8.0084498, 46.3868047 ], + [ 8.0085171, 46.3869506 ], + [ 8.008568, 46.387074 ], + [ 8.0086108, 46.3872089 ], + [ 8.0086289, 46.3873044 ], + [ 8.0086138, 46.3874114 ], + [ 8.0085588, 46.3875188 ], + [ 8.0085356, 46.3876315 ], + [ 8.0085622, 46.3877607 ], + [ 8.0085964, 46.3878449 ], + [ 8.0087122, 46.3879622 ], + [ 8.0088523, 46.3880738 ], + [ 8.0089594, 46.3881405 ], + [ 8.0091237, 46.3882293 ], + [ 8.0092631, 46.3882789 ], + [ 8.0093868, 46.3883681 ], + [ 8.0094613, 46.3884295 ], + [ 8.0095686, 46.3885131 ], + [ 8.0096594, 46.3885688 ], + [ 8.0097666, 46.388641 ], + [ 8.0098646, 46.3886854 ], + [ 8.0099391, 46.3887355 ], + [ 8.0100379, 46.3887854 ], + [ 8.0101696, 46.3888688 ], + [ 8.0102849, 46.3889412 ], + [ 8.0103677, 46.3890081 ], + [ 8.0105239, 46.3891026 ], + [ 8.0106557, 46.389203 ], + [ 8.0108036, 46.3892751 ], + [ 8.0109599, 46.3893865 ], + [ 8.0109941, 46.389465 ], + [ 8.0110121, 46.3895605 ], + [ 8.011063, 46.3896839 ], + [ 8.0111225, 46.3898579 ], + [ 8.0111651, 46.3899703 ], + [ 8.0111223, 46.3903758 ], + [ 8.0111569, 46.3904994 ], + [ 8.0111333, 46.3905783 ], + [ 8.0111188, 46.3906684 ], + [ 8.0111117, 46.3907586 ], + [ 8.0111377, 46.3908372 ], + [ 8.0112048, 46.3909605 ], + [ 8.0112634, 46.3910446 ], + [ 8.0113221, 46.3911397 ], + [ 8.0113555, 46.3912295 ], + [ 8.011398, 46.3913305 ], + [ 8.0114067, 46.3913868 ], + [ 8.0115062, 46.391493 ], + [ 8.0116065, 46.3916048 ], + [ 8.0117465, 46.3917106 ], + [ 8.011903, 46.3918278 ], + [ 8.0121333, 46.3919387 ], + [ 8.0123302, 46.3920384 ], + [ 8.0125849, 46.3921547 ], + [ 8.0128072, 46.3922713 ], + [ 8.0129226, 46.3923548 ], + [ 8.0130869, 46.3924493 ], + [ 8.0132514, 46.3925606 ], + [ 8.0135221, 46.3926486 ], + [ 8.0137107, 46.3927261 ], + [ 8.0140139, 46.3928195 ], + [ 8.0141696, 46.3928634 ], + [ 8.0143178, 46.3929692 ], + [ 8.0144426, 46.3930921 ], + [ 8.0145584, 46.3932038 ], + [ 8.0147407, 46.3933825 ], + [ 8.0149959, 46.3935439 ], + [ 8.0151523, 46.3936552 ], + [ 8.015399, 46.3937829 ], + [ 8.0156122, 46.3938826 ], + [ 8.0158672, 46.3940214 ], + [ 8.0163358, 46.3942261 ], + [ 8.0166058, 46.3943254 ], + [ 8.0167206, 46.3943471 ], + [ 8.0168523, 46.3944249 ], + [ 8.0170178, 46.3945531 ], + [ 8.0171906, 46.3946812 ], + [ 8.017397, 46.3948317 ], + [ 8.0175202, 46.3948814 ], + [ 8.0176517, 46.3949423 ], + [ 8.017767, 46.3950147 ], + [ 8.0178735, 46.3950927 ], + [ 8.0180145, 46.3952098 ], + [ 8.0181787, 46.3952874 ], + [ 8.0184415, 46.3953923 ], + [ 8.0187025, 46.3954129 ], + [ 8.0189149, 46.3954395 ], + [ 8.0191273, 46.3954659 ], + [ 8.0194205, 46.3954525 ], + [ 8.0198119, 46.395427 ], + [ 8.0200809, 46.3954251 ], + [ 8.0203662, 46.3954342 ], + [ 8.0206111, 46.3954605 ], + [ 8.0209384, 46.3955199 ], + [ 8.0212982, 46.3955791 ], + [ 8.0217084, 46.3957111 ], + [ 8.0221665, 46.3958428 ], + [ 8.0225849, 46.3959916 ], + [ 8.0231512, 46.3962012 ], + [ 8.0236516, 46.3964113 ], + [ 8.0244063, 46.3966983 ], + [ 8.0248004, 46.3968472 ], + [ 8.0251443, 46.3969347 ], + [ 8.0253812, 46.3969724 ], + [ 8.0255695, 46.3970216 ], + [ 8.0258061, 46.3970367 ], + [ 8.0260349, 46.3970799 ], + [ 8.0263701, 46.3971168 ], + [ 8.0267299, 46.3971703 ], + [ 8.0269665, 46.3971798 ], + [ 8.0272438, 46.3972003 ], + [ 8.027497, 46.3972378 ], + [ 8.0279226, 46.3972964 ], + [ 8.0282491, 46.3973502 ], + [ 8.0285686, 46.3974435 ], + [ 8.0289789, 46.3975867 ], + [ 8.0294287, 46.3976958 ], + [ 8.0297321, 46.3977948 ], + [ 8.0300275, 46.3979052 ], + [ 8.0303551, 46.3979927 ], + [ 8.0305271, 46.3980364 ], + [ 8.0306501, 46.3980694 ], + [ 8.0308137, 46.3980849 ], + [ 8.0311238, 46.3981332 ], + [ 8.0314104, 46.3981818 ], + [ 8.0317379, 46.3982581 ], + [ 8.0320494, 46.3983513 ], + [ 8.0323352, 46.3984055 ], + [ 8.0328026, 46.3985651 ], + [ 8.0330898, 46.3986699 ], + [ 8.0334261, 46.3988023 ], + [ 8.0339256, 46.3989281 ], + [ 8.0342374, 46.3990494 ], + [ 8.0344762, 46.3991827 ], + [ 8.0347394, 46.3993214 ], + [ 8.0349866, 46.3994884 ], + [ 8.0351848, 46.3996218 ], + [ 8.0353499, 46.3997839 ], + [ 8.0355162, 46.3999739 ], + [ 8.0356737, 46.4001079 ], + [ 8.0357981, 46.4002645 ], + [ 8.0359561, 46.4004377 ], + [ 8.0361467, 46.4006219 ], + [ 8.0363699, 46.4008172 ], + [ 8.036643, 46.4010459 ], + [ 8.0368821, 46.4012073 ], + [ 8.0371378, 46.4013967 ], + [ 8.0373688, 46.4015638 ], + [ 8.037632, 46.4017024 ], + [ 8.0378535, 46.4018133 ], + [ 8.038199, 46.4019627 ], + [ 8.0386571, 46.4020886 ], + [ 8.0391821, 46.4022365 ], + [ 8.0397063, 46.4023788 ], + [ 8.0401643, 46.4024934 ], + [ 8.0407208, 46.402613 ], + [ 8.0409666, 46.4026505 ], + [ 8.041203, 46.4026375 ], + [ 8.0414477, 46.4026468 ], + [ 8.041725, 46.4026559 ], + [ 8.0420019, 46.4026369 ], + [ 8.0422389, 46.4026745 ], + [ 8.0425423, 46.4027734 ], + [ 8.0428297, 46.4028894 ], + [ 8.0430519, 46.402989 ], + [ 8.0432736, 46.4031167 ], + [ 8.0434133, 46.4031831 ], + [ 8.0436595, 46.4032544 ], + [ 8.0438962, 46.4032695 ], + [ 8.0441169, 46.4033071 ], + [ 8.0443054, 46.4033733 ], + [ 8.0445352, 46.4034277 ], + [ 8.0450029, 46.4036042 ], + [ 8.0454783, 46.4037413 ], + [ 8.0461746, 46.4039384 ], + [ 8.0464849, 46.403998 ], + [ 8.0467719, 46.4040744 ], + [ 8.0470348, 46.404185 ], + [ 8.0473142, 46.4043066 ], + [ 8.0475936, 46.4044339 ], + [ 8.0479383, 46.4045887 ], + [ 8.0482758, 46.404755 ], + [ 8.0486613, 46.4049152 ], + [ 8.0491129, 46.4051029 ], + [ 8.0494085, 46.4052301 ], + [ 8.0497113, 46.4052671 ], + [ 8.0498916, 46.405322 ], + [ 8.0500477, 46.4053996 ], + [ 8.0502295, 46.4055163 ], + [ 8.0504831, 46.4055875 ], + [ 8.0507778, 46.4056302 ], + [ 8.0511948, 46.4057058 ], + [ 8.051784, 46.4058419 ], + [ 8.0522916, 46.4059504 ], + [ 8.0530056, 46.4061981 ], + [ 8.0532832, 46.4062352 ], + [ 8.0534632, 46.4062732 ], + [ 8.0537243, 46.4062824 ], + [ 8.054043, 46.4062912 ], + [ 8.054444, 46.4063894 ], + [ 8.0548042, 46.4064709 ], + [ 8.0550832, 46.4065644 ], + [ 8.0554115, 46.4066969 ], + [ 8.0557557, 46.4068011 ], + [ 8.0561249, 46.4069614 ], + [ 8.0564621, 46.4070938 ], + [ 8.0567989, 46.4072599 ], + [ 8.0571528, 46.4074261 ], + [ 8.0573999, 46.4075703 ], + [ 8.0578014, 46.4077136 ], + [ 8.0581217, 46.4078573 ], + [ 8.0584832, 46.4079782 ], + [ 8.0589514, 46.4081885 ], + [ 8.059304, 46.4083151 ], + [ 8.0595755, 46.4084592 ], + [ 8.0598644, 46.4086315 ], + [ 8.0601935, 46.4088315 ], + [ 8.0607229, 46.4092831 ], + [ 8.0609867, 46.4094555 ], + [ 8.0611292, 46.4096907 ], + [ 8.0613041, 46.4099201 ], + [ 8.0614219, 46.4101217 ], + [ 8.061598, 46.4103792 ], + [ 8.0617329, 46.4106539 ], + [ 8.0618171, 46.4108389 ], + [ 8.0619192, 46.411097 ], + [ 8.0620472, 46.4114055 ], + [ 8.0621498, 46.4117029 ], + [ 8.0622368, 46.4120569 ], + [ 8.0623407, 46.4123992 ], + [ 8.0624773, 46.4127528 ], + [ 8.0626064, 46.4131625 ], + [ 8.0627601, 46.413589 ], + [ 8.0629804, 46.4140825 ], + [ 8.0630315, 46.4142172 ], + [ 8.0631574, 46.4144187 ], + [ 8.0632657, 46.4145699 ], + [ 8.0633912, 46.4147434 ], + [ 8.0635159, 46.4149056 ], + [ 8.0636073, 46.4150061 ], + [ 8.0637492, 46.4151907 ], + [ 8.0638334, 46.4153701 ], + [ 8.0639021, 46.415544 ], + [ 8.0639294, 46.4157296 ], + [ 8.0640393, 46.4159482 ], + [ 8.0641241, 46.4161839 ], + [ 8.0642173, 46.4163745 ], + [ 8.0643672, 46.4165421 ], + [ 8.0644993, 46.416648 ], + [ 8.064664, 46.4167536 ], + [ 8.0649373, 46.4169822 ], + [ 8.0651773, 46.4172055 ], + [ 8.0653431, 46.4173392 ], + [ 8.0655419, 46.4175177 ], + [ 8.0657571, 46.417713 ], + [ 8.0659074, 46.4179145 ], + [ 8.066124, 46.4182222 ], + [ 8.0662335, 46.4184071 ], + [ 8.0663255, 46.4185583 ], + [ 8.066413, 46.4188896 ], + [ 8.0665258, 46.419294 ], + [ 8.0665883, 46.4196312 ], + [ 8.066648, 46.4198052 ], + [ 8.0667398, 46.4199395 ], + [ 8.0668326, 46.4200852 ], + [ 8.0669321, 46.4201857 ], + [ 8.0670319, 46.420303 ], + [ 8.0671238, 46.4204486 ], + [ 8.0672662, 46.420667 ], + [ 8.0674576, 46.4209075 ], + [ 8.0676238, 46.4210807 ], + [ 8.0677981, 46.4212481 ], + [ 8.06807, 46.4214148 ], + [ 8.0683007, 46.4215425 ], + [ 8.06863, 46.4217537 ], + [ 8.0687879, 46.4219044 ], + [ 8.0689217, 46.4220834 ], + [ 8.0690222, 46.4222684 ], + [ 8.0691501, 46.4225656 ], + [ 8.0693344, 46.4228906 ], + [ 8.0696032, 46.4233556 ], + [ 8.0696706, 46.4234845 ], + [ 8.0697052, 46.4235968 ], + [ 8.069774, 46.4237763 ], + [ 8.0698319, 46.423866 ], + [ 8.0699572, 46.4240113 ], + [ 8.0701478, 46.4241843 ], + [ 8.0704363, 46.4243789 ], + [ 8.0707175, 46.4245793 ], + [ 8.070899, 46.4247354 ], + [ 8.0710068, 46.4248472 ], + [ 8.0711145, 46.4249476 ], + [ 8.071355, 46.425137 ], + [ 8.0715041, 46.4253047 ], + [ 8.0719173, 46.4255997 ], + [ 8.0721332, 46.42584 ], + [ 8.0723323, 46.4260412 ], + [ 8.0724896, 46.4261412 ], + [ 8.0727618, 46.4263359 ], + [ 8.0729262, 46.426419 ], + [ 8.0731982, 46.426597 ], + [ 8.0734371, 46.426719 ], + [ 8.0737009, 46.4268914 ], + [ 8.0740476, 46.4271249 ], + [ 8.07455, 46.4273967 ], + [ 8.0750693, 46.4277191 ], + [ 8.0756792, 46.4280744 ], + [ 8.0764614, 46.4284903 ], + [ 8.0768, 46.4287183 ], + [ 8.0770717, 46.4288737 ], + [ 8.0773019, 46.4290125 ], + [ 8.0774417, 46.4290791 ], + [ 8.0775732, 46.4291286 ], + [ 8.0776313, 46.4291619 ], + [ 8.0777959, 46.4292563 ], + [ 8.077928, 46.4293621 ], + [ 8.0780842, 46.4294396 ], + [ 8.0782905, 46.4295506 ], + [ 8.0784957, 46.4296447 ], + [ 8.0786772, 46.4297332 ], + [ 8.0787769, 46.4298394 ], + [ 8.0788182, 46.4298953 ], + [ 8.0789338, 46.4299732 ], + [ 8.0791159, 46.4301125 ], + [ 8.0793465, 46.4302232 ], + [ 8.0796754, 46.4303949 ], + [ 8.080022, 46.4306173 ], + [ 8.0803022, 46.4307896 ], + [ 8.0806229, 46.4309559 ], + [ 8.0812598, 46.4314574 ], + [ 8.0814175, 46.4315855 ], + [ 8.0815743, 46.431708 ], + [ 8.0818059, 46.4319032 ], + [ 8.0819889, 46.43211 ], + [ 8.0821143, 46.4322665 ], + [ 8.0822569, 46.4324961 ], + [ 8.082382, 46.4326866 ], + [ 8.0825004, 46.4329388 ], + [ 8.0825937, 46.4331238 ], + [ 8.0827201, 46.4333592 ], + [ 8.0828549, 46.4336169 ], + [ 8.0829726, 46.4338074 ], + [ 8.0830728, 46.4339529 ], + [ 8.0831893, 46.4341096 ], + [ 8.08329, 46.4342327 ], + [ 8.0834557, 46.4344226 ], + [ 8.0836325, 46.4347251 ], + [ 8.0839634, 46.435471 ], + [ 8.0841983, 46.4358744 ], + [ 8.0843997, 46.4361879 ], + [ 8.0845764, 46.4364792 ], + [ 8.0847215, 46.4368552 ], + [ 8.0848912, 46.4372422 ], + [ 8.0849857, 46.4375284 ], + [ 8.0849804, 46.4376972 ], + [ 8.0849167, 46.4378103 ], + [ 8.0849683, 46.4379789 ], + [ 8.0850517, 46.4380851 ], + [ 8.0851523, 46.4381968 ], + [ 8.0852604, 46.4383254 ], + [ 8.08532, 46.4384825 ], + [ 8.0853812, 46.4387072 ], + [ 8.0854835, 46.4389652 ], + [ 8.0855623, 46.4393023 ], + [ 8.085691, 46.4396559 ], + [ 8.0858743, 46.4398851 ], + [ 8.0866243, 46.4393557 ], + [ 8.0871966, 46.4389233 ], + [ 8.0874848, 46.4386114 ], + [ 8.0877569, 46.4383109 ], + [ 8.087982, 46.4380952 ], + [ 8.0881978, 46.4378457 ], + [ 8.0884063, 46.4376021 ], + [ 8.0885815, 46.437353 ], + [ 8.0887324, 46.4371266 ], + [ 8.0889005, 46.4369001 ], + [ 8.0890119, 46.4367642 ], + [ 8.0890841, 46.4366792 ], + [ 8.0892202, 46.4365035 ], + [ 8.0893636, 46.4363166 ], + [ 8.0894999, 46.436158 ], + [ 8.0895786, 46.4360053 ], + [ 8.0897073, 46.4358917 ], + [ 8.089828, 46.4357783 ], + [ 8.0899324, 46.4356704 ], + [ 8.0899789, 46.4355462 ], + [ 8.0900996, 46.4354384 ], + [ 8.0902358, 46.4352684 ], + [ 8.0903798, 46.4351378 ], + [ 8.0904763, 46.4350469 ], + [ 8.0905883, 46.434894 ], + [ 8.0907573, 46.4347519 ], + [ 8.0909081, 46.4345087 ], + [ 8.0910436, 46.4343501 ], + [ 8.0910989, 46.4342145 ], + [ 8.0912022, 46.4340786 ], + [ 8.0912014, 46.434011 ], + [ 8.0912153, 46.433887 ], + [ 8.0912553, 46.4338248 ], + [ 8.0913113, 46.4337513 ], + [ 8.0914726, 46.4336373 ], + [ 8.0916817, 46.4334443 ], + [ 8.0921712, 46.4329675 ], + [ 8.0925155, 46.4325933 ], + [ 8.0928118, 46.4322814 ], + [ 8.093222, 46.4319065 ], + [ 8.0937216, 46.431531 ], + [ 8.094134, 46.4313419 ], + [ 8.0941395, 46.4311899 ], + [ 8.0941542, 46.4310603 ], + [ 8.0939163, 46.4310229 ], + [ 8.0943048, 46.4308059 ], + [ 8.094318, 46.43062 ], + [ 8.0940987, 46.4307005 ], + [ 8.0942506, 46.4304911 ], + [ 8.0942806, 46.4303502 ], + [ 8.0943188, 46.4302091 ], + [ 8.0942922, 46.4300968 ], + [ 8.094241, 46.4299678 ], + [ 8.0942055, 46.4297879 ], + [ 8.0940876, 46.4295806 ], + [ 8.0939459, 46.4293679 ], + [ 8.0937782, 46.4291441 ], + [ 8.0936526, 46.4289088 ], + [ 8.0935508, 46.4286957 ], + [ 8.0933555, 46.4282808 ], + [ 8.0933618, 46.4281288 ], + [ 8.0933257, 46.4279714 ], + [ 8.0932837, 46.4278592 ], + [ 8.0932167, 46.4277642 ], + [ 8.0931821, 46.4276575 ], + [ 8.0931555, 46.4275395 ], + [ 8.0932028, 46.4274152 ], + [ 8.093176, 46.4272861 ], + [ 8.0930914, 46.4271516 ], + [ 8.0929749, 46.426995 ], + [ 8.0928734, 46.4268045 ], + [ 8.0927731, 46.4266421 ], + [ 8.0926067, 46.426469 ], + [ 8.0924741, 46.4263237 ], + [ 8.092209, 46.4261232 ], + [ 8.0919544, 46.4259789 ], + [ 8.0916897, 46.4258009 ], + [ 8.0915092, 46.4257405 ], + [ 8.0912539, 46.4256019 ], + [ 8.0910567, 46.4254966 ], + [ 8.0908094, 46.4253522 ], + [ 8.0904959, 46.4251803 ], + [ 8.0900995, 46.4248683 ], + [ 8.0899096, 46.4247629 ], + [ 8.0898111, 46.4246849 ], + [ 8.0897682, 46.4245671 ], + [ 8.0897008, 46.4244382 ], + [ 8.0895672, 46.4242816 ], + [ 8.0893599, 46.4240807 ], + [ 8.0891269, 46.4238406 ], + [ 8.0888282, 46.4235447 ], + [ 8.0885885, 46.4233497 ], + [ 8.0883411, 46.4231941 ], + [ 8.088152, 46.4230886 ], + [ 8.0880045, 46.4230616 ], + [ 8.0877842, 46.4230635 ], + [ 8.08758, 46.4230538 ], + [ 8.0872706, 46.4230789 ], + [ 8.0868801, 46.4231327 ], + [ 8.0866676, 46.4231006 ], + [ 8.0865361, 46.4230567 ], + [ 8.0863704, 46.4229286 ], + [ 8.0861228, 46.4227617 ], + [ 8.0858664, 46.4225331 ], + [ 8.0854957, 46.4223277 ], + [ 8.0852075, 46.4221613 ], + [ 8.0850336, 46.4220332 ], + [ 8.0849091, 46.4218879 ], + [ 8.0847504, 46.421664 ], + [ 8.0845678, 46.4214854 ], + [ 8.0844093, 46.4212897 ], + [ 8.0842689, 46.4211727 ], + [ 8.0841295, 46.42114 ], + [ 8.0839822, 46.4211243 ], + [ 8.0837778, 46.4210977 ], + [ 8.0835412, 46.4210996 ], + [ 8.0834273, 46.4210893 ], + [ 8.0833441, 46.421 ], + [ 8.0832269, 46.420849 ], + [ 8.0831183, 46.4206753 ], + [ 8.0829437, 46.420491 ], + [ 8.0828508, 46.4203341 ], + [ 8.0827929, 46.4202502 ], + [ 8.08279, 46.4200757 ], + [ 8.0828115, 46.4199011 ], + [ 8.0828314, 46.4196589 ], + [ 8.0827519, 46.4192599 ], + [ 8.0827466, 46.4189504 ], + [ 8.0827011, 46.4186806 ], + [ 8.0826883, 46.4184218 ], + [ 8.0826441, 46.4181914 ], + [ 8.0825838, 46.4180399 ], + [ 8.0823702, 46.4179235 ], + [ 8.0822786, 46.4178117 ], + [ 8.0821629, 46.417722499999996 ], + [ 8.0820299, 46.4176053 ], + [ 8.0819461, 46.4174654 ], + [ 8.0819109, 46.417308 ], + [ 8.0819489, 46.4171501 ], + [ 8.0818568, 46.4169989 ], + [ 8.081707, 46.4168425 ], + [ 8.081466, 46.4165349 ], + [ 8.0811906, 46.416205 ], + [ 8.0808734, 46.4157854 ], + [ 8.080724, 46.4155896 ], + [ 8.0805654, 46.4153828 ], + [ 8.0804402, 46.415243 ], + [ 8.080315, 46.4150357 ], + [ 8.0801968, 46.4148004 ], + [ 8.0801442, 46.414615 ], + [ 8.0800353, 46.4144134 ], + [ 8.0799175, 46.4142116 ], + [ 8.0798242, 46.4140266 ], + [ 8.0797164, 46.4139149 ], + [ 8.0795681, 46.4138092 ], + [ 8.0794521, 46.4136976 ], + [ 8.0793931, 46.4135855 ], + [ 8.0792851, 46.4134625 ], + [ 8.0792098, 46.4133507 ], + [ 8.0791832, 46.4132326 ], + [ 8.0791401, 46.4130923 ], + [ 8.0791135, 46.4129686 ], + [ 8.0790459, 46.412823 ], + [ 8.0789299, 46.4127057 ], + [ 8.0788133, 46.4126053 ], + [ 8.0786974, 46.4124993 ], + [ 8.0786547, 46.4123927 ], + [ 8.0785225, 46.4122811 ], + [ 8.0782667, 46.4120975 ], + [ 8.0778696, 46.4117856 ], + [ 8.0778663, 46.4120614 ], + [ 8.0777506, 46.4119666 ], + [ 8.077619, 46.4119058 ], + [ 8.0775053, 46.4119123 ], + [ 8.0775068, 46.4120417 ], + [ 8.0774088, 46.4120031 ], + [ 8.0773093, 46.4119082 ], + [ 8.0772296, 46.412044 ], + [ 8.0771372, 46.411859 ], + [ 8.0769206, 46.4121027 ], + [ 8.0765864, 46.4116101 ], + [ 8.0765112, 46.4115095 ], + [ 8.0765024, 46.4114532 ], + [ 8.0765251, 46.4113742 ], + [ 8.076581, 46.411295 ], + [ 8.0766692, 46.4111874 ], + [ 8.076732, 46.4110631 ], + [ 8.0767457, 46.4109222 ], + [ 8.0767448, 46.4108435 ], + [ 8.0766855, 46.4107089 ], + [ 8.0766109, 46.4106532 ], + [ 8.0765212, 46.4106314 ], + [ 8.0764393, 46.4106434 ], + [ 8.0763501, 46.4106665 ], + [ 8.0762125, 46.4107127 ], + [ 8.076008999999999, 46.4107594 ], + [ 8.0759114, 46.4107544 ], + [ 8.0757637, 46.4107106 ], + [ 8.0755427, 46.4106449 ], + [ 8.0753207, 46.4105735 ], + [ 8.075132, 46.4104907 ], + [ 8.0749434, 46.4104189 ], + [ 8.0747539, 46.4103417 ], + [ 8.0745409, 46.4102702 ], + [ 8.0743609, 46.4102436 ], + [ 8.0741475, 46.4101384 ], + [ 8.0740568, 46.4100997 ], + [ 8.0739171, 46.4100389 ], + [ 8.0738034, 46.4100454 ], + [ 8.0736731, 46.4100914 ], + [ 8.0735112, 46.4101546 ], + [ 8.0734772, 46.4100987 ], + [ 8.0733472, 46.4100997 ], + [ 8.0732317, 46.4100218 ], + [ 8.0731493, 46.4099943 ], + [ 8.0730355, 46.4099953 ], + [ 8.0728634, 46.4099517 ], + [ 8.0727059, 46.4098235 ], + [ 8.0725411, 46.4097067 ], + [ 8.0724498, 46.4096116 ], + [ 8.0724316, 46.4095218 ], + [ 8.0724792, 46.40942 ], + [ 8.0725189, 46.4093353 ], + [ 8.0723712, 46.4092915 ], + [ 8.0724594, 46.4091839 ], + [ 8.0724415, 46.4091165 ], + [ 8.0723261, 46.4090498 ], + [ 8.0722514, 46.4089829 ], + [ 8.0722343, 46.4089099 ], + [ 8.0721998, 46.4088089 ], + [ 8.0721734, 46.4087077 ], + [ 8.0720251, 46.4086077 ], + [ 8.0719433, 46.4085633 ], + [ 8.0719006, 46.4084567 ], + [ 8.0718826, 46.4083781 ], + [ 8.071841299999999, 46.4083277 ], + [ 8.0716932, 46.4082389 ], + [ 8.0715357, 46.408122 ], + [ 8.0714116, 46.4080048 ], + [ 8.0712962, 46.4079326 ], + [ 8.0712292, 46.4078374 ], + [ 8.0712272, 46.4077305 ], + [ 8.0711699, 46.4076972 ], + [ 8.071071, 46.4076529 ], + [ 8.0709556, 46.4075864 ], + [ 8.0708476, 46.4074579 ], + [ 8.0707979, 46.4073794 ], + [ 8.0707964, 46.4073176 ], + [ 8.0708445, 46.4072608 ], + [ 8.0709092, 46.4072266 ], + [ 8.0709904, 46.4072204 ], + [ 8.0710642, 46.4072084 ], + [ 8.0711289, 46.4071854 ], + [ 8.0712509, 46.4071845 ], + [ 8.0713899, 46.407189 ], + [ 8.0715359, 46.4071597 ], + [ 8.0717559, 46.4071354 ], + [ 8.071893, 46.4070498 ], + [ 8.0718921, 46.406971 ], + [ 8.0717367, 46.4069554 ], + [ 8.0716137, 46.4069339 ], + [ 8.071532, 46.4068952 ], + [ 8.0714167, 46.4068342 ], + [ 8.0712692, 46.4068016 ], + [ 8.0710565, 46.4067583 ], + [ 8.0708683, 46.4067204 ], + [ 8.0706716, 46.4066488 ], + [ 8.070466, 46.4065829 ], + [ 8.0702529, 46.406500199999996 ], + [ 8.0700468, 46.4063892 ], + [ 8.0699067, 46.4062947 ], + [ 8.0697502, 46.4061834 ], + [ 8.0695941, 46.4061171 ], + [ 8.0694383, 46.4060621 ], + [ 8.0693071, 46.4060406 ], + [ 8.0692162, 46.4059738 ], + [ 8.0690521, 46.4059189 ], + [ 8.0688476, 46.4058699 ], + [ 8.0687564, 46.4057862 ], + [ 8.0686162, 46.4056803 ], + [ 8.068485, 46.4056532 ], + [ 8.0683789, 46.4056147 ], + [ 8.0683528, 46.4055362 ], + [ 8.0682778, 46.4054523 ], + [ 8.0681869, 46.4053911 ], + [ 8.0680564, 46.4053527 ], + [ 8.0679173, 46.4053427 ], + [ 8.0677534, 46.4052989 ], + [ 8.0676301, 46.4052493 ], + [ 8.0674982, 46.4051602 ], + [ 8.0673904, 46.4050429 ], + [ 8.0672992, 46.4049592 ], + [ 8.0671919, 46.404887 ], + [ 8.0670851, 46.4048596 ], + [ 8.0670037, 46.404849 ], + [ 8.0669938, 46.4047703 ], + [ 8.067108, 46.4047301 ], + [ 8.0670083, 46.4046127 ], + [ 8.0669415, 46.4045344 ], + [ 8.0668026, 46.4045356 ], + [ 8.0667035, 46.4044744 ], + [ 8.0665731, 46.4044417 ], + [ 8.0664666, 46.4044426 ], + [ 8.0663363, 46.4044211 ], + [ 8.0661469, 46.4043437 ], + [ 8.0659986, 46.4042436 ], + [ 8.0657838, 46.4040877 ], + [ 8.0655709, 46.4040164 ], + [ 8.0653498, 46.4039506 ], + [ 8.065455, 46.4039047 ], + [ 8.0655113, 46.4038535 ], + [ 8.0654366, 46.4037922 ], + [ 8.0653622, 46.4037534 ], + [ 8.065305, 46.4037258 ], + [ 8.0652138, 46.4036421 ], + [ 8.0650982, 46.4035586 ], + [ 8.0649924, 46.4035426 ], + [ 8.0648536, 46.4035605 ], + [ 8.064748, 46.4035614 ], + [ 8.0646327, 46.4035005 ], + [ 8.0644936, 46.4034959 ], + [ 8.0643061, 46.4035198 ], + [ 8.0641433, 46.4034987 ], + [ 8.0639299, 46.4034609 ], + [ 8.0638238, 46.4034168 ], + [ 8.0637244, 46.4033276 ], + [ 8.0635668, 46.4031937 ], + [ 8.0634024, 46.4030993 ], + [ 8.0633598, 46.403004 ], + [ 8.0633263, 46.4029142 ], + [ 8.0629907, 46.4028551 ], + [ 8.0629135, 46.4026417 ], + [ 8.0626848, 46.4026154 ], + [ 8.0625941, 46.4025767 ], + [ 8.0625206, 46.4025436 ], + [ 8.0624221, 46.4025331 ], + [ 8.0623486, 46.4025 ], + [ 8.0622904, 46.4024554 ], + [ 8.0622003, 46.4023942 ], + [ 8.062093, 46.4023275 ], + [ 8.061994, 46.4022664 ], + [ 8.0618709, 46.4022392 ], + [ 8.0617328, 46.4022403 ], + [ 8.0615532, 46.4022417 ], + [ 8.0613652, 46.4022207 ], + [ 8.0612824, 46.4021651 ], + [ 8.0612172, 46.4021431 ], + [ 8.0611184, 46.4021045 ], + [ 8.0610287, 46.4020827 ], + [ 8.0609619, 46.4019933 ], + [ 8.0608867, 46.4018869 ], + [ 8.0607789, 46.4017752 ], + [ 8.0604816, 46.401575 ], + [ 8.0602439, 46.4014755 ], + [ 8.0600964, 46.4014373 ], + [ 8.0599807, 46.4013425 ], + [ 8.0598811, 46.4012364 ], + [ 8.0597401, 46.4011306 ], + [ 8.0595842, 46.4010699 ], + [ 8.0594037, 46.4009926 ], + [ 8.0591741, 46.4008931 ], + [ 8.0589688, 46.4008441 ], + [ 8.0588208, 46.4007721 ], + [ 8.0587133, 46.4006829 ], + [ 8.0585813, 46.4005769 ], + [ 8.0583605, 46.4005337 ], + [ 8.058164, 46.400479 ], + [ 8.057976, 46.400458 ], + [ 8.0577477, 46.4004655 ], + [ 8.0575602, 46.4004838 ], + [ 8.0572836, 46.4005366 ], + [ 8.0570728, 46.4005777 ], + [ 8.0569822, 46.4005446 ], + [ 8.0569655, 46.4005053 ], + [ 8.0568825, 46.4004272 ], + [ 8.0567592, 46.400372 ], + [ 8.0565868, 46.4002945 ], + [ 8.0564062, 46.4002114 ], + [ 8.056176, 46.4001233 ], + [ 8.0560441, 46.400023 ], + [ 8.0558219, 46.3999234 ], + [ 8.0556169, 46.399835 ], + [ 8.0553219, 46.3997699 ], + [ 8.055101, 46.3997097 ], + [ 8.0548215, 46.3995712 ], + [ 8.0544608, 46.3994446 ], + [ 8.0541074, 46.3993123 ], + [ 8.053771, 46.3991742 ], + [ 8.0537299, 46.3991352 ], + [ 8.0536307, 46.3990572 ], + [ 8.0535723, 46.3989956 ], + [ 8.0534566, 46.398901 ], + [ 8.0533818, 46.3988227 ], + [ 8.0533079, 46.3987558 ], + [ 8.0532087, 46.3986777 ], + [ 8.0529944, 46.3985612 ], + [ 8.0528138, 46.3984726 ], + [ 8.0526822, 46.3984005 ], + [ 8.0526238, 46.3983391 ], + [ 8.0525325, 46.3982496 ], + [ 8.0523842, 46.3981382 ], + [ 8.0521792, 46.3980498 ], + [ 8.0519977, 46.3979555 ], + [ 8.0518091, 46.3978782 ], + [ 8.0516205, 46.3978009 ], + [ 8.0513905, 46.3977239 ], + [ 8.0512266, 46.3976745 ], + [ 8.0510302, 46.397631 ], + [ 8.0508906, 46.3975702 ], + [ 8.0508169, 46.3975201 ], + [ 8.0505624, 46.3974433 ], + [ 8.0503739, 46.3973717 ], + [ 8.0502101, 46.3973335 ], + [ 8.0500706, 46.3972839 ], + [ 8.0499225, 46.3971951 ], + [ 8.0498069, 46.3971059 ], + [ 8.0495519, 46.3969785 ], + [ 8.0494042, 46.3969234 ], + [ 8.049232, 46.3968571 ], + [ 8.0490759, 46.3967795 ], + [ 8.048928, 46.3967131 ], + [ 8.0487302, 46.3966134 ], + [ 8.0484996, 46.3964801 ], + [ 8.0482618, 46.3963637 ], + [ 8.0480234, 46.3962642 ], + [ 8.0479, 46.396209 ], + [ 8.0477278, 46.3961427 ], + [ 8.0475799, 46.3960707 ], + [ 8.0474073, 46.3959707 ], + [ 8.0472746, 46.3958704 ], + [ 8.0471347, 46.3957871 ], + [ 8.0469545, 46.3957322 ], + [ 8.0467658, 46.3956436 ], + [ 8.0466097, 46.3955717 ], + [ 8.0463468, 46.3954612 ], + [ 8.046118, 46.3954179 ], + [ 8.0459124, 46.3953463 ], + [ 8.0456, 46.3951686 ], + [ 8.0454519, 46.3950797 ], + [ 8.04532, 46.3949793 ], + [ 8.0452127, 46.3949015 ], + [ 8.0451707, 46.3948511 ], + [ 8.0450953, 46.3947222 ], + [ 8.0450134, 46.3946665 ], + [ 8.0449231, 46.3946561 ], + [ 8.0448178, 46.394685 ], + [ 8.0447267, 46.3946126 ], + [ 8.044644, 46.3945513 ], + [ 8.0445284, 46.3944565 ], + [ 8.0443637, 46.3943339 ], + [ 8.044264, 46.3942165 ], + [ 8.0441893, 46.3941438 ], + [ 8.0440496, 46.3940774 ], + [ 8.0439184, 46.3940446 ], + [ 8.0438863, 46.3940787 ], + [ 8.0438544, 46.3941352 ], + [ 8.0438143, 46.3941862 ], + [ 8.0437174, 46.3942432 ], + [ 8.043596, 46.3942835 ], + [ 8.0434157, 46.3942174 ], + [ 8.0433333, 46.3941899 ], + [ 8.0431128, 46.3941635 ], + [ 8.0428757, 46.394109 ], + [ 8.0428012, 46.3940533 ], + [ 8.0427601, 46.3940143 ], + [ 8.042653, 46.3939588 ], + [ 8.0425379, 46.3939091 ], + [ 8.042456, 46.3938477 ], + [ 8.0423568, 46.3937754 ], + [ 8.0422661, 46.393731 ], + [ 8.0420861, 46.3936931 ], + [ 8.0420034, 46.3936318 ], + [ 8.041954, 46.3935758 ], + [ 8.0418551, 46.3935259 ], + [ 8.0417482, 46.3934818 ], + [ 8.0415844, 46.3934436 ], + [ 8.0413466, 46.393316 ], + [ 8.0412066, 46.3932214 ], + [ 8.0411153, 46.3931264 ], + [ 8.0409998, 46.3930372 ], + [ 8.0408845, 46.3929707 ], + [ 8.0407691, 46.3928983 ], + [ 8.0406698, 46.3928147 ], + [ 8.0405788, 46.3927422 ], + [ 8.0404548, 46.3926193 ], + [ 8.0403454, 46.3924232 ], + [ 8.0402942, 46.3922772 ], + [ 8.0402354, 46.3921764 ], + [ 8.0401525, 46.3921039 ], + [ 8.0400695, 46.39202 ], + [ 8.0400684, 46.3919188 ], + [ 8.0400076, 46.391711 ], + [ 8.0398753, 46.3915769 ], + [ 8.0397683, 46.3915271 ], + [ 8.039670600000001, 46.3915165 ], + [ 8.0395393, 46.3914725 ], + [ 8.039416, 46.3914116 ], + [ 8.0392595, 46.3912947 ], + [ 8.0392007, 46.3911994 ], + [ 8.0391584, 46.3911209 ], + [ 8.0390748, 46.3909809 ], + [ 8.039016, 46.39088 ], + [ 8.0389002, 46.3907683 ], + [ 8.0387932, 46.3907184 ], + [ 8.0386539, 46.3906859 ], + [ 8.0385307, 46.3906417 ], + [ 8.0383991, 46.3905752 ], + [ 8.0382835, 46.3904747 ], + [ 8.0381434, 46.3903689 ], + [ 8.0379794, 46.3903138 ], + [ 8.0377672, 46.3902986 ], + [ 8.0375226, 46.3903005 ], + [ 8.0373668, 46.3902397 ], + [ 8.0371279, 46.3900896 ], + [ 8.0369132, 46.3899279 ], + [ 8.0366824, 46.3897721 ], + [ 8.0365174, 46.3896215 ], + [ 8.0363938, 46.3895323 ], + [ 8.0362946, 46.3894599 ], + [ 8.0360156, 46.3893551 ], + [ 8.0358518, 46.3893057 ], + [ 8.0356227, 46.3892343 ], + [ 8.0354334, 46.3891626 ], + [ 8.0352778, 46.3891299 ], + [ 8.0351382, 46.3890635 ], + [ 8.0349995, 46.3890139 ], + [ 8.0348022, 46.3889479 ], + [ 8.0346705, 46.3888701 ], + [ 8.0345223, 46.3887642 ], + [ 8.0343992, 46.3887314 ], + [ 8.0341703, 46.388677 ], + [ 8.0321431, 46.3878425 ], + [ 8.0319795, 46.3878212 ], + [ 8.0318903, 46.3878388 ], + [ 8.031751, 46.3878061 ], + [ 8.0316612, 46.3877617 ], + [ 8.0314973, 46.3877067 ], + [ 8.0312933, 46.3877026 ], + [ 8.0311139, 46.3877208 ], + [ 8.0309181, 46.3877224 ], + [ 8.0306409, 46.3877132 ], + [ 8.0303218, 46.3876593 ], + [ 8.029971, 46.3876002 ], + [ 8.0296342, 46.3874844 ], + [ 8.0292492, 46.3873411 ], + [ 8.0289622, 46.3872475 ], + [ 8.0288628, 46.387147 ], + [ 8.0287879, 46.3870575 ], + [ 8.028697, 46.3869963 ], + [ 8.028533, 46.38693 ], + [ 8.0284268, 46.3868744 ], + [ 8.0283184, 46.3867741 ], + [ 8.0281375, 46.3866403 ], + [ 8.0279065, 46.3864675 ], + [ 8.0277002, 46.3863228 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "JBG0001", + "country" : "CHE", + "name" : [ + { + "text" : "Eidgenössisches Jagdbanngebiet Aletschwald", + "lang" : "de-CH" + }, + { + "text" : "District franc fédéral Aletschwald", + "lang" : "fr-CH" + }, + { + "text" : "Bandita federale di caccia Aletschwald", + "lang" : "it-CH" + }, + { + "text" : "Federal Game Reserve Aletschwald", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6731428, 47.4846724 ], + [ 7.6730194, 47.4847732 ], + [ 7.6730096, 47.484789 ], + [ 7.6728637, 47.4850246 ], + [ 7.6721452, 47.4853531 ], + [ 7.6718736, 47.4854341 ], + [ 7.6720217, 47.485627 ], + [ 7.6722643999999995, 47.4860097 ], + [ 7.6720181, 47.4863998 ], + [ 7.6719037, 47.486497 ], + [ 7.6719509, 47.4868848 ], + [ 7.6719587, 47.486949 ], + [ 7.6720296, 47.4873888 ], + [ 7.6730568, 47.487544 ], + [ 7.6738418, 47.4876546 ], + [ 7.6742933, 47.4879455 ], + [ 7.6745585, 47.4883105 ], + [ 7.6748775, 47.4888172 ], + [ 7.6752391, 47.489114 ], + [ 7.6752564, 47.4891282 ], + [ 7.675473, 47.489306 ], + [ 7.6754767, 47.4893075 ], + [ 7.6754801, 47.4893103 ], + [ 7.6759463, 47.489498 ], + [ 7.6765592, 47.4897535 ], + [ 7.6769251, 47.4901218 ], + [ 7.6769307, 47.4901246 ], + [ 7.6773565999999995, 47.4903335 ], + [ 7.6777445, 47.4905413 ], + [ 7.678265, 47.490724 ], + [ 7.6782997, 47.4907362 ], + [ 7.6783186, 47.4907428 ], + [ 7.6785193, 47.4908133 ], + [ 7.6785187, 47.4908148 ], + [ 7.6782343, 47.4915398 ], + [ 7.6778489, 47.4921806 ], + [ 7.6777847, 47.492288 ], + [ 7.6777043, 47.4924227 ], + [ 7.6771624, 47.4923584 ], + [ 7.6766892, 47.4922348 ], + [ 7.6766881, 47.4922346 ], + [ 7.6762925, 47.4919745 ], + [ 7.6762858, 47.49197 ], + [ 7.6755605, 47.4921724 ], + [ 7.6754456, 47.4922056 ], + [ 7.6754678, 47.4922324 ], + [ 7.6755136, 47.4922876 ], + [ 7.6755203, 47.4923345 ], + [ 7.675497, 47.4923783 ], + [ 7.6752526, 47.4928355 ], + [ 7.6752117, 47.4929445 ], + [ 7.6751709, 47.4930534 ], + [ 7.6751632, 47.4930738 ], + [ 7.6750226999999995, 47.4934486 ], + [ 7.6749525, 47.4936686 ], + [ 7.6749507999999995, 47.4936802 ], + [ 7.6749286, 47.4938496 ], + [ 7.6749365, 47.493848 ], + [ 7.6752301, 47.4937894 ], + [ 7.6756405, 47.4937129 ], + [ 7.6758154, 47.4936966 ], + [ 7.6760637, 47.4937055 ], + [ 7.6761222, 47.4937049 ], + [ 7.6761208, 47.4936589 ], + [ 7.6761405, 47.4936308 ], + [ 7.6761809, 47.4935929 ], + [ 7.6761943, 47.4935914 ], + [ 7.6762185, 47.4935888 ], + [ 7.6763569, 47.4935425 ], + [ 7.6765542, 47.4934984 ], + [ 7.6766991, 47.4934872 ], + [ 7.6767521, 47.4934831 ], + [ 7.6768864, 47.493493 ], + [ 7.677134, 47.4935261 ], + [ 7.6773719, 47.4935248 ], + [ 7.6775394, 47.4935098 ], + [ 7.6777315999999995, 47.4934817 ], + [ 7.6779128, 47.4934786 ], + [ 7.6780178, 47.4934629 ], + [ 7.6781291, 47.4934369 ], + [ 7.6783794, 47.4933857 ], + [ 7.6785189, 47.493378 ], + [ 7.6788846, 47.4933543 ], + [ 7.6790472, 47.4933612 ], + [ 7.6792007, 47.4933791 ], + [ 7.6793669, 47.493396 ], + [ 7.6794781, 47.4934148 ], + [ 7.6795901, 47.4934447 ], + [ 7.6797146, 47.493459 ], + [ 7.6798702, 47.4934814 ], + [ 7.6799605, 47.4934756 ], + [ 7.6800485, 47.4934546 ], + [ 7.6801641, 47.4934458 ], + [ 7.6803057, 47.4934472 ], + [ 7.6804605, 47.4934577 ], + [ 7.6806095, 47.4934695 ], + [ 7.6807938, 47.493481 ], + [ 7.6809563, 47.4934959 ], + [ 7.6812305, 47.4935387 ], + [ 7.6814529, 47.4935859 ], + [ 7.6816197, 47.4936064 ], + [ 7.6817186, 47.4936251 ], + [ 7.6818376, 47.4936438 ], + [ 7.681898, 47.4936523 ], + [ 7.6820033, 47.4936672 ], + [ 7.6822305, 47.4937124 ], + [ 7.6823733, 47.4937344 ], + [ 7.6826383, 47.493771 ], + [ 7.6828775, 47.49378 ], + [ 7.6830142, 47.4938054 ], + [ 7.6837, 47.4936375 ], + [ 7.6840945, 47.4935725 ], + [ 7.684325, 47.4935209 ], + [ 7.6843725, 47.4934872 ], + [ 7.6843785, 47.493483 ], + [ 7.6844223, 47.4934519 ], + [ 7.6844952, 47.4934042 ], + [ 7.6845545, 47.4934127 ], + [ 7.6848122, 47.4933088 ], + [ 7.6848714000000005, 47.4933144 ], + [ 7.6850915, 47.493311 ], + [ 7.6850922, 47.4933155 ], + [ 7.6851082, 47.4934122 ], + [ 7.6851146, 47.4934111 ], + [ 7.6853453, 47.4933702 ], + [ 7.6857391, 47.4932432 ], + [ 7.6857327, 47.4932213 ], + [ 7.6857319, 47.4932132 ], + [ 7.6857318, 47.4932052 ], + [ 7.6857326, 47.4931971 ], + [ 7.6857343, 47.4931891 ], + [ 7.6857367, 47.4931811 ], + [ 7.68574, 47.4931734 ], + [ 7.6857441, 47.4931658 ], + [ 7.6857489999999995, 47.4931584 ], + [ 7.6857546, 47.4931512 ], + [ 7.685761, 47.4931444 ], + [ 7.6857732, 47.4931327 ], + [ 7.685786, 47.4931212 ], + [ 7.6857993, 47.49311 ], + [ 7.6858131, 47.4930992 ], + [ 7.6858275, 47.4930886 ], + [ 7.6859202, 47.493023 ], + [ 7.6861864, 47.4928427 ], + [ 7.6862945, 47.4927598 ], + [ 7.6863288, 47.4927334 ], + [ 7.6865718, 47.4925697 ], + [ 7.6866721, 47.4924934 ], + [ 7.6866746, 47.4924915 ], + [ 7.6866913, 47.4924788 ], + [ 7.6867734, 47.49245 ], + [ 7.6873007, 47.4923337 ], + [ 7.6876915, 47.4923137 ], + [ 7.6881484, 47.4924017 ], + [ 7.6888619, 47.4925575 ], + [ 7.6890487, 47.4926575 ], + [ 7.6892706, 47.4927055 ], + [ 7.6892744, 47.492709 ], + [ 7.6893964, 47.4928233 ], + [ 7.6895316000000005, 47.492811 ], + [ 7.6896177, 47.4928498 ], + [ 7.6897359, 47.4928566 ], + [ 7.6899327, 47.4928532 ], + [ 7.6901488, 47.4928687 ], + [ 7.6902117, 47.4928681 ], + [ 7.6905062, 47.4929735 ], + [ 7.6905821, 47.4930261 ], + [ 7.6907321, 47.4930973 ], + [ 7.6910351, 47.4931523 ], + [ 7.6915334, 47.4933634 ], + [ 7.6916198, 47.4933798 ], + [ 7.6916281, 47.4933809 ], + [ 7.6917454, 47.4933959 ], + [ 7.6918729, 47.4934008 ], + [ 7.6922296, 47.4934025 ], + [ 7.6923571, 47.4934109 ], + [ 7.6924816, 47.4934305 ], + [ 7.6928583, 47.4935155 ], + [ 7.6929948, 47.4935421 ], + [ 7.6930039, 47.4935435 ], + [ 7.6936364, 47.4936433 ], + [ 7.6944693, 47.4937739 ], + [ 7.6945271, 47.4935503 ], + [ 7.6945337, 47.4935179 ], + [ 7.6945504, 47.4931996 ], + [ 7.6943919, 47.4931938 ], + [ 7.6943266999999995, 47.4931914 ], + [ 7.6942665, 47.493184 ], + [ 7.6942064, 47.4931761 ], + [ 7.6941465, 47.4931678 ], + [ 7.6940867, 47.493159 ], + [ 7.6940271, 47.4931497 ], + [ 7.6939676, 47.49314 ], + [ 7.6939083, 47.4931298 ], + [ 7.6938492, 47.4931191 ], + [ 7.6938078999999995, 47.4931106 ], + [ 7.6937663, 47.4931026 ], + [ 7.6937536, 47.4931004 ], + [ 7.6937162, 47.4930939 ], + [ 7.6936826, 47.4930884 ], + [ 7.6936404, 47.4930822 ], + [ 7.693598, 47.4930766 ], + [ 7.6935554, 47.4930716 ], + [ 7.6935127, 47.4930672 ], + [ 7.6934999, 47.493065 ], + [ 7.6934677, 47.4930594 ], + [ 7.693423, 47.493051 ], + [ 7.6933784, 47.4930421 ], + [ 7.6933673, 47.4930397 ], + [ 7.6933342, 47.4930325 ], + [ 7.6932902, 47.4930223 ], + [ 7.6933887, 47.4927411 ], + [ 7.6935903, 47.492212 ], + [ 7.6935728, 47.4921948 ], + [ 7.6933194, 47.4919461 ], + [ 7.6928571, 47.4916044 ], + [ 7.6926535, 47.4913231 ], + [ 7.6924277, 47.4910952 ], + [ 7.6921004, 47.4907761 ], + [ 7.6918634, 47.4905481 ], + [ 7.691739, 47.4903885 ], + [ 7.6916035, 47.4902289 ], + [ 7.6914451, 47.4900084 ], + [ 7.6913879, 47.4897801 ], + [ 7.6913868, 47.4895592 ], + [ 7.6914534, 47.4893839 ], + [ 7.6915026, 47.489273 ], + [ 7.6915088, 47.489259 ], + [ 7.6909956, 47.4891546 ], + [ 7.6908449999999995, 47.4891075 ], + [ 7.6906448, 47.4890155 ], + [ 7.6903682, 47.4889078 ], + [ 7.6896496, 47.4886984 ], + [ 7.6888731, 47.488406 ], + [ 7.6884608, 47.4882335 ], + [ 7.688234, 47.4881136 ], + [ 7.6878092, 47.4879151 ], + [ 7.6872159, 47.4876246 ], + [ 7.6870151, 47.4875501 ], + [ 7.6866281, 47.4874371 ], + [ 7.6864683, 47.487397 ], + [ 7.6863146, 47.4873773 ], + [ 7.6861816, 47.4873886 ], + [ 7.685703, 47.4874781 ], + [ 7.6856034, 47.4874824 ], + [ 7.6854662, 47.4874612 ], + [ 7.6845299, 47.4872471 ], + [ 7.6839516, 47.4871091 ], + [ 7.6838342, 47.4870753 ], + [ 7.6837142, 47.4870193 ], + [ 7.6836011, 47.4869425 ], + [ 7.683355, 47.4867313 ], + [ 7.6832552, 47.486625 ], + [ 7.683223, 47.486575 ], + [ 7.6831904, 47.4865179 ], + [ 7.6830964, 47.4863569 ], + [ 7.6830447, 47.4862477 ], + [ 7.6830096999999995, 47.4861713 ], + [ 7.6830034, 47.4860956 ], + [ 7.6829545, 47.4860589 ], + [ 7.6826286, 47.4859781 ], + [ 7.6824273, 47.4859518 ], + [ 7.6822038, 47.4859591 ], + [ 7.6818311999999995, 47.4860228 ], + [ 7.6815136, 47.4860764 ], + [ 7.6812132, 47.4861322 ], + [ 7.6808745, 47.486188 ], + [ 7.6801482, 47.486364 ], + [ 7.6798072, 47.4864538 ], + [ 7.6794538, 47.4865391 ], + [ 7.679257, 47.486582 ], + [ 7.6790503999999995, 47.4865944 ], + [ 7.6789024999999995, 47.4865804 ], + [ 7.6785902, 47.4865389 ], + [ 7.6784783999999995, 47.4865089 ], + [ 7.6783479, 47.4864584 ], + [ 7.6782865000000005, 47.4864158 ], + [ 7.6782053999999995, 47.486267 ], + [ 7.6781952, 47.4862041 ], + [ 7.6782154, 47.4861124 ], + [ 7.6782451, 47.4859169 ], + [ 7.6782376, 47.4856429 ], + [ 7.678234, 47.4855717 ], + [ 7.6782698, 47.4854979 ], + [ 7.6783714, 47.48531 ], + [ 7.6785005, 47.4850579 ], + [ 7.6785833, 47.4849155 ], + [ 7.6787288, 47.4847201 ], + [ 7.6787572, 47.484697 ], + [ 7.6783126, 47.4848121 ], + [ 7.6778935, 47.4849028 ], + [ 7.6771287, 47.4850239 ], + [ 7.6770924, 47.4850297 ], + [ 7.6769864, 47.4850465 ], + [ 7.6765303, 47.4850038 ], + [ 7.6760644, 47.4849585 ], + [ 7.6753158, 47.4848863 ], + [ 7.6747425, 47.4848332 ], + [ 7.6741994, 47.4847804 ], + [ 7.6733339, 47.484692 ], + [ 7.6731428, 47.4846724 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns011", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Röserental", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Röserental", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Röserental", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Röserental", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5016935, 47.3902183 ], + [ 7.5019329, 47.3901298 ], + [ 7.502176, 47.3900904 ], + [ 7.5024209, 47.3900873 ], + [ 7.5025411, 47.3900845 ], + [ 7.5026524, 47.3900103 ], + [ 7.5029579, 47.3900007 ], + [ 7.5030999, 47.3899413 ], + [ 7.5033025, 47.389996 ], + [ 7.5034956, 47.3899652 ], + [ 7.5034633, 47.3899248 ], + [ 7.5032924, 47.3898043 ], + [ 7.5029506, 47.3898312 ], + [ 7.502528, 47.3898566 ], + [ 7.5023043, 47.3899192 ], + [ 7.5019647, 47.3899932 ], + [ 7.5015815, 47.3900695 ], + [ 7.5013893, 47.3901286 ], + [ 7.5014679, 47.3902543 ], + [ 7.5016935, 47.3902183 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns273", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Stürmen - Eggfels - Bännli", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Stürmen - Eggfels - Bännli", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Stürmen - Eggfels - Bännli", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Stürmen - Eggfels - Bännli", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5523458, 47.4901536 ], + [ 7.552433, 47.4901393 ], + [ 7.5523783, 47.4899866 ], + [ 7.5523488, 47.4899022 ], + [ 7.5523365, 47.4898674 ], + [ 7.5522662, 47.4896643 ], + [ 7.5522104, 47.489501 ], + [ 7.5520728, 47.4891022 ], + [ 7.5519362999999995, 47.4887062 ], + [ 7.5518681, 47.4885078 ], + [ 7.551822, 47.4883739 ], + [ 7.551803, 47.4883189 ], + [ 7.5515733, 47.4876492 ], + [ 7.5515139, 47.487671399999996 ], + [ 7.5517361, 47.488387 ], + [ 7.5519853, 47.4891161 ], + [ 7.5523458, 47.4901536 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns034", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Marbach", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Marbach", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Marbach", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Marbach", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5856798, 47.5006082 ], + [ 7.5856871, 47.5007297 ], + [ 7.5857429, 47.5011188 ], + [ 7.5858986999999996, 47.501003 ], + [ 7.5861637, 47.5008528 ], + [ 7.586792, 47.5006836 ], + [ 7.5872177, 47.5006082 ], + [ 7.5874055, 47.5004161 ], + [ 7.5856798, 47.5006082 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns038", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Buechloch-Weiher", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Buechloch-Weiher", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Buechloch-Weiher", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Buechloch-Weiher", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7036051, 47.4019187 ], + [ 7.7036269, 47.4020618 ], + [ 7.7037023, 47.4023777 ], + [ 7.7037373, 47.4024458 ], + [ 7.7038261, 47.4024884 ], + [ 7.7038581, 47.4024647 ], + [ 7.7039043, 47.4024306 ], + [ 7.7038833, 47.4024159 ], + [ 7.7038363, 47.4023512 ], + [ 7.7037786, 47.4022838 ], + [ 7.703758, 47.4022494 ], + [ 7.7037496, 47.4022288 ], + [ 7.7037451, 47.4021838 ], + [ 7.7037115, 47.4021032 ], + [ 7.7037083, 47.4020258 ], + [ 7.7037182, 47.4019562 ], + [ 7.7037444, 47.4019051 ], + [ 7.7036748, 47.4019116 ], + [ 7.7036051, 47.4019187 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns070", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Rifenstein - Horniflue", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Rifenstein - Horniflue", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Rifenstein - Horniflue", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Rifenstein - Horniflue", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5451838, 47.4951257 ], + [ 7.545215, 47.4950847 ], + [ 7.545232, 47.4950621 ], + [ 7.5452053, 47.4950566 ], + [ 7.5449965, 47.4949743 ], + [ 7.5449466, 47.4949589 ], + [ 7.544842, 47.4949541 ], + [ 7.5447682, 47.4949405 ], + [ 7.5447033, 47.4949172 ], + [ 7.5445793, 47.4948891 ], + [ 7.5442919, 47.4948613 ], + [ 7.5441214, 47.4947685 ], + [ 7.5440249999999995, 47.494741 ], + [ 7.5438288, 47.4946795 ], + [ 7.5437387000000005, 47.4946356 ], + [ 7.543346, 47.4945418 ], + [ 7.5432053, 47.4945053 ], + [ 7.5430801, 47.4944701 ], + [ 7.5429843, 47.4944265 ], + [ 7.5428055, 47.4943678 ], + [ 7.5426508, 47.494349 ], + [ 7.5423327, 47.4942604 ], + [ 7.5421299, 47.4942644 ], + [ 7.5419713, 47.4942321 ], + [ 7.5414905, 47.4941476 ], + [ 7.541448, 47.4941167 ], + [ 7.5411683, 47.4940646 ], + [ 7.5411529999999996, 47.4940963 ], + [ 7.5411428, 47.4941193 ], + [ 7.5411421, 47.4941225 ], + [ 7.5411418999999995, 47.4941257 ], + [ 7.5411421, 47.4941289 ], + [ 7.5411427, 47.4941321 ], + [ 7.5411438, 47.4941353 ], + [ 7.5411452, 47.4941383 ], + [ 7.541147, 47.4941413 ], + [ 7.5411491, 47.4941442 ], + [ 7.5411516, 47.494147 ], + [ 7.5411543, 47.4941496 ], + [ 7.5411608999999995, 47.4941537 ], + [ 7.5411671, 47.4941596 ], + [ 7.5418216000000005, 47.4942752 ], + [ 7.5427438, 47.4944297 ], + [ 7.543641, 47.4946799 ], + [ 7.5442492, 47.4949213 ], + [ 7.5451838, 47.4951257 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns151", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Schlifbach - Grossmattbach", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Schlifbach - Grossmattbach", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Schlifbach - Grossmattbach", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Schlifbach - Grossmattbach", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5341895999999995, 47.4955159 ], + [ 7.5342016, 47.4955446 ], + [ 7.5343489, 47.4955381 ], + [ 7.5344535, 47.4954523 ], + [ 7.5345726, 47.4953982 ], + [ 7.5347715, 47.4954025 ], + [ 7.5348535, 47.4953914 ], + [ 7.5349808, 47.4954562 ], + [ 7.5351902, 47.4954739 ], + [ 7.5354352, 47.4954335 ], + [ 7.5356636, 47.495361 ], + [ 7.5359388, 47.4953313 ], + [ 7.536121, 47.4953068 ], + [ 7.5365545, 47.4951817 ], + [ 7.5368093, 47.4951807 ], + [ 7.5368964, 47.4951436 ], + [ 7.5371453, 47.4950812 ], + [ 7.5372223, 47.4950182 ], + [ 7.5373204, 47.4950148 ], + [ 7.5374919, 47.4950934 ], + [ 7.5378977, 47.4951179 ], + [ 7.5380033, 47.4951109 ], + [ 7.5381778, 47.495134 ], + [ 7.5382954, 47.4952582 ], + [ 7.5383827, 47.4952959 ], + [ 7.5386703, 47.4954315 ], + [ 7.5390323, 47.4954083 ], + [ 7.5393901, 47.4954304 ], + [ 7.5395885, 47.4954414 ], + [ 7.539731, 47.4954312 ], + [ 7.5400808, 47.4954561 ], + [ 7.5401802, 47.4954592 ], + [ 7.5404617, 47.4954908 ], + [ 7.5405842, 47.4955244 ], + [ 7.5405879, 47.4955085 ], + [ 7.5405964, 47.4954807 ], + [ 7.5406093, 47.4954343 ], + [ 7.5405325, 47.4954114 ], + [ 7.5401763, 47.4953575 ], + [ 7.5396955, 47.4952994 ], + [ 7.5395875, 47.4953379 ], + [ 7.5394813, 47.4953118 ], + [ 7.5392928, 47.4952896 ], + [ 7.5390198, 47.4953141 ], + [ 7.5387147, 47.4953193 ], + [ 7.5383993, 47.4951828 ], + [ 7.5382653, 47.4950632 ], + [ 7.5380143, 47.495005 ], + [ 7.5378834, 47.4950082 ], + [ 7.5375584, 47.4950031 ], + [ 7.5374726, 47.4949789 ], + [ 7.5374771, 47.4949611 ], + [ 7.5373276, 47.4949281 ], + [ 7.5371653, 47.4949512 ], + [ 7.537073, 47.495012 ], + [ 7.5368285, 47.4950621 ], + [ 7.5367826, 47.4950946 ], + [ 7.5365242, 47.495074 ], + [ 7.5360843, 47.4952091 ], + [ 7.5356499, 47.4952918 ], + [ 7.5353846, 47.4953497 ], + [ 7.5351748, 47.4953719 ], + [ 7.5350321000000005, 47.4953728 ], + [ 7.5348637, 47.4953097 ], + [ 7.5347536, 47.4953301 ], + [ 7.5345424, 47.4953154 ], + [ 7.5343861, 47.4953819 ], + [ 7.5342734, 47.4954329 ], + [ 7.5341626999999995, 47.4954517 ], + [ 7.5341778, 47.4954878 ], + [ 7.5341895999999995, 47.4955159 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns162", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Schlifbach - Grossmattbach", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Schlifbach - Grossmattbach", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Schlifbach - Grossmattbach", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Schlifbach - Grossmattbach", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5660407, 47.4386246 ], + [ 7.5660609999999995, 47.4386194 ], + [ 7.5663979999999995, 47.4385397 ], + [ 7.5666454, 47.4384953 ], + [ 7.5668982, 47.4384419 ], + [ 7.5670256, 47.4384143 ], + [ 7.5674237, 47.4380284 ], + [ 7.5676827, 47.4378306 ], + [ 7.5680053, 47.4376203 ], + [ 7.5681412, 47.4375852 ], + [ 7.5684346, 47.4374412 ], + [ 7.5686057, 47.4372812 ], + [ 7.5686065, 47.4372724 ], + [ 7.5686082, 47.4372636 ], + [ 7.5686107, 47.4372549 ], + [ 7.5686141, 47.4372463 ], + [ 7.5686183, 47.4372379 ], + [ 7.5686232, 47.4372297 ], + [ 7.568628, 47.4372196 ], + [ 7.5686332, 47.4372096 ], + [ 7.5686391, 47.4371997 ], + [ 7.5686455, 47.4371901 ], + [ 7.5686525, 47.4371805 ], + [ 7.5687753, 47.4370508 ], + [ 7.5688859, 47.4369046 ], + [ 7.5688855, 47.4368776 ], + [ 7.5688525, 47.4368434 ], + [ 7.5686145, 47.4367352 ], + [ 7.5685643, 47.4366838 ], + [ 7.5685395, 47.436621 ], + [ 7.5685407, 47.4365639 ], + [ 7.5685692, 47.4365011 ], + [ 7.5686085, 47.4364439 ], + [ 7.5686288, 47.4364056 ], + [ 7.5685332, 47.4363852 ], + [ 7.5683173, 47.4363391 ], + [ 7.5686495, 47.4359532 ], + [ 7.5688617, 47.4354715 ], + [ 7.5688821, 47.4353683 ], + [ 7.5689523, 47.4352298 ], + [ 7.5689579, 47.435191 ], + [ 7.5689846, 47.4351463 ], + [ 7.569008, 47.4350664 ], + [ 7.569009, 47.4350108 ], + [ 7.5690456, 47.4348931 ], + [ 7.5690264, 47.434846 ], + [ 7.569062, 47.4347493 ], + [ 7.5690753, 47.434677 ], + [ 7.5691231, 47.4345364 ], + [ 7.569123, 47.4344649 ], + [ 7.5690562, 47.4343341 ], + [ 7.5690723, 47.4342734 ], + [ 7.5691439, 47.4342423 ], + [ 7.5691425, 47.4342393 ], + [ 7.5691333, 47.4342149 ], + [ 7.569132, 47.4342119 ], + [ 7.5691116, 47.4341645 ], + [ 7.5689333, 47.4342518 ], + [ 7.5688357, 47.4342344 ], + [ 7.5687551, 47.4341929 ], + [ 7.5686518, 47.4341184 ], + [ 7.5686337, 47.4340804 ], + [ 7.5685553, 47.4340054 ], + [ 7.5685215, 47.4339354 ], + [ 7.5684844, 47.4338966 ], + [ 7.5684293, 47.4338373 ], + [ 7.5683798, 47.4337646 ], + [ 7.5683539, 47.433688599999996 ], + [ 7.5683615, 47.4335889 ], + [ 7.5683485, 47.4333928 ], + [ 7.5683853, 47.4332552 ], + [ 7.5684677, 47.4330539 ], + [ 7.5685337, 47.4329625 ], + [ 7.5685783, 47.4329185 ], + [ 7.5685882, 47.432847 ], + [ 7.56871, 47.4326802 ], + [ 7.5687935, 47.4325115 ], + [ 7.5687832, 47.4324626 ], + [ 7.5687663, 47.432343 ], + [ 7.5687508, 47.4322745 ], + [ 7.5687549, 47.4321945 ], + [ 7.5687758, 47.4321374 ], + [ 7.5688497, 47.4320231 ], + [ 7.5689609, 47.431903 ], + [ 7.5690408, 47.431783 ], + [ 7.5691220999999995, 47.4315944 ], + [ 7.569137, 47.4314973 ], + [ 7.5691108, 47.4314117 ], + [ 7.5690931, 47.4312803 ], + [ 7.5690524, 47.4311262 ], + [ 7.5690574, 47.4310862 ], + [ 7.5690809, 47.4310405 ], + [ 7.5691137, 47.430949 ], + [ 7.5690949, 47.4308862 ], + [ 7.5691029, 47.4308462 ], + [ 7.5690887, 47.4307435 ], + [ 7.5691109, 47.4306749 ], + [ 7.5691793, 47.4305834 ], + [ 7.56916, 47.4304007 ], + [ 7.5690143, 47.4300239 ], + [ 7.5689781, 47.4298469 ], + [ 7.5689424, 47.4294529 ], + [ 7.5689116, 47.4293558 ], + [ 7.5687151, 47.4289791 ], + [ 7.5686273, 47.4288364 ], + [ 7.5685698, 47.428648 ], + [ 7.5685597, 47.4285738 ], + [ 7.5684269, 47.4283283 ], + [ 7.5683804, 47.4282884 ], + [ 7.5683426, 47.4282085 ], + [ 7.5683385, 47.4278829 ], + [ 7.5683567, 47.4274831 ], + [ 7.5683436, 47.4273975 ], + [ 7.5683218, 47.4273118 ], + [ 7.5681973, 47.4269978 ], + [ 7.5681314, 47.4269065 ], + [ 7.5680599, 47.4267924 ], + [ 7.5679265000000004, 47.4266212 ], + [ 7.5677986, 47.4265414 ], + [ 7.5677325, 47.4264672 ], + [ 7.5676317, 47.4263017 ], + [ 7.5675103, 47.4260734 ], + [ 7.5674834, 47.425992 ], + [ 7.5674786, 47.4259775 ], + [ 7.5674688, 47.4259478 ], + [ 7.5674703999999995, 47.4258564 ], + [ 7.5675368, 47.4256964 ], + [ 7.5677178, 47.4254392 ], + [ 7.5677984, 47.4253077 ], + [ 7.5678113, 47.4251992 ], + [ 7.5677972, 47.4250907 ], + [ 7.5677324, 47.4249594 ], + [ 7.5677326, 47.4248909 ], + [ 7.5677366, 47.4248737 ], + [ 7.5677631, 47.4248223 ], + [ 7.5677822, 47.4247994 ], + [ 7.5678716, 47.4247251 ], + [ 7.5680004, 47.4245936 ], + [ 7.5680795, 47.4245021 ], + [ 7.5681585, 47.4243935 ], + [ 7.5681874, 47.4243421 ], + [ 7.5682504, 47.4242107 ], + [ 7.5682723, 47.4241364 ], + [ 7.5682554, 47.4239479 ], + [ 7.5682558, 47.4238623 ], + [ 7.5682621999999995, 47.4237937 ], + [ 7.5682895, 47.4236909 ], + [ 7.5683363, 47.4235595 ], + [ 7.5683565999999995, 47.4235138 ], + [ 7.5683807, 47.4234852 ], + [ 7.5684556, 47.423428 ], + [ 7.5684823, 47.4234051 ], + [ 7.5685088, 47.4233537 ], + [ 7.5685107, 47.4232851 ], + [ 7.5684918, 47.423228 ], + [ 7.5684428, 47.4231139 ], + [ 7.5683509, 47.4229598 ], + [ 7.5682983, 47.4229027 ], + [ 7.5682463, 47.4228571 ], + [ 7.5681992000000005, 47.4227886 ], + [ 7.5681855, 47.4225601 ], + [ 7.5681913, 47.4224916 ], + [ 7.5682323, 47.422383 ], + [ 7.568286, 47.4222973 ], + [ 7.5683573, 47.422222 ], + [ 7.5684342000000004, 47.4221715 ], + [ 7.5685415, 47.4221199 ], + [ 7.5686406999999996, 47.4221113 ], + [ 7.5687339, 47.4221483 ], + [ 7.5688473, 47.4221825 ], + [ 7.5689252, 47.4221424 ], + [ 7.5690347, 47.4220509 ], + [ 7.5690969, 47.4219823 ], + [ 7.5691635, 47.4219194 ], + [ 7.5691851, 47.4218622 ], + [ 7.569182, 47.421788 ], + [ 7.5691562, 47.4216909 ], + [ 7.5691395, 47.4216453 ], + [ 7.5691438, 47.421611 ], + [ 7.5691557, 47.4215824 ], + [ 7.5691568, 47.4215596 ], + [ 7.5691728, 47.4215139 ], + [ 7.5692984, 47.4213424 ], + [ 7.5693329, 47.4213024 ], + [ 7.5693653, 47.4212566 ], + [ 7.5693844, 47.4212224 ], + [ 7.569418, 47.4211595 ], + [ 7.5694144, 47.4210458 ], + [ 7.5693927, 47.4209748 ], + [ 7.5693925, 47.4209725 ], + [ 7.5693895, 47.4209316 ], + [ 7.5693893, 47.4209288 ], + [ 7.5694155, 47.4208142 ], + [ 7.5694704999999995, 47.4207489 ], + [ 7.5699906, 47.420571 ], + [ 7.5703420999999995, 47.4203792 ], + [ 7.5704988, 47.4201736 ], + [ 7.5706603999999995, 47.4200154 ], + [ 7.5707550999999995, 47.4199271 ], + [ 7.5708431, 47.4198341 ], + [ 7.5711362, 47.4196261 ], + [ 7.57141, 47.4194829 ], + [ 7.5714971, 47.419393 ], + [ 7.5716742, 47.4193297 ], + [ 7.5718489, 47.4192962 ], + [ 7.5720428, 47.4192742 ], + [ 7.5724262, 47.4191687 ], + [ 7.5725469, 47.4191538 ], + [ 7.5726972, 47.419162299999996 ], + [ 7.5728416, 47.4191993 ], + [ 7.572986, 47.4192962 ], + [ 7.5731373, 47.4194172 ], + [ 7.5732520999999995, 47.4194677 ], + [ 7.5734019, 47.4194825 ], + [ 7.5739511, 47.4194984 ], + [ 7.5741716, 47.4194951 ], + [ 7.574372, 47.4194784 ], + [ 7.5744891, 47.419436 ], + [ 7.574643, 47.4193569 ], + [ 7.575354, 47.4190759 ], + [ 7.5756631, 47.4189802 ], + [ 7.5757956, 47.4189175 ], + [ 7.5759056000000005, 47.4188395 ], + [ 7.5758773999999995, 47.4188109 ], + [ 7.5757854, 47.4187175 ], + [ 7.5758195, 47.4185861 ], + [ 7.575837, 47.4185233 ], + [ 7.575888, 47.4185197 ], + [ 7.5760456, 47.4185639 ], + [ 7.57609, 47.4185321 ], + [ 7.5761237, 47.4185531 ], + [ 7.5761864, 47.4185922 ], + [ 7.5762345, 47.4185636 ], + [ 7.5764511, 47.4184275 ], + [ 7.5768493, 47.4182333 ], + [ 7.5771043, 47.4180703 ], + [ 7.577145, 47.4180161 ], + [ 7.5773707, 47.4179652 ], + [ 7.5776377, 47.4177988 ], + [ 7.578017, 47.4176985 ], + [ 7.5781228, 47.4176811 ], + [ 7.5783671, 47.417608 ], + [ 7.5784212, 47.4175851 ], + [ 7.5786616, 47.417411 ], + [ 7.5787603, 47.4173193 ], + [ 7.5788306, 47.4173074 ], + [ 7.5789452, 47.4172066 ], + [ 7.5789909, 47.4171583 ], + [ 7.5790299, 47.4171056 ], + [ 7.5790337, 47.4170493 ], + [ 7.5790389000000005, 47.4169333 ], + [ 7.5791007, 47.4166699 ], + [ 7.5791466, 47.41661 ], + [ 7.5792076999999995, 47.416572 ], + [ 7.5792478, 47.4165397 ], + [ 7.5792751, 47.4165079 ], + [ 7.5793288, 47.416337 ], + [ 7.5793779, 47.4162815 ], + [ 7.5793983, 47.4161273 ], + [ 7.5795019, 47.4159589 ], + [ 7.5796632, 47.4158501 ], + [ 7.5797325, 47.415798 ], + [ 7.5798068, 47.4157293 ], + [ 7.5798711, 47.4156738 ], + [ 7.5799717, 47.4156039 ], + [ 7.5800165, 47.415555 ], + [ 7.5800716, 47.4154727 ], + [ 7.5801438999999995, 47.4154027 ], + [ 7.5802088, 47.4153476 ], + [ 7.5803586, 47.4152013 ], + [ 7.5803731, 47.415159 ], + [ 7.580353, 47.4150893 ], + [ 7.5803674999999995, 47.4150192 ], + [ 7.5803944, 47.4149786 ], + [ 7.5804853, 47.4149404 ], + [ 7.5805793, 47.4149247 ], + [ 7.5806325999999995, 47.4149014 ], + [ 7.5806989, 47.4148274 ], + [ 7.5807158999999995, 47.4148 ], + [ 7.5807333, 47.4147516 ], + [ 7.5807476, 47.4147076 ], + [ 7.5806657, 47.4146882 ], + [ 7.5798548, 47.4145743 ], + [ 7.5796694, 47.4145487 ], + [ 7.5782217, 47.4143387 ], + [ 7.5776612, 47.414877 ], + [ 7.5775667, 47.4149557 ], + [ 7.5773358, 47.4151559 ], + [ 7.5771158, 47.4154774 ], + [ 7.577079, 47.4155071 ], + [ 7.5769479, 47.4156132 ], + [ 7.5766853, 47.4157778 ], + [ 7.5763282, 47.4159781 ], + [ 7.575908, 47.4161856 ], + [ 7.5754774000000005, 47.4164289 ], + [ 7.5753726, 47.4165718 ], + [ 7.57531, 47.4167789 ], + [ 7.5752263, 47.4169289 ], + [ 7.5747853, 47.417265 ], + [ 7.5742603, 47.4176011 ], + [ 7.5735876, 47.4177947 ], + [ 7.5733303, 47.4178195 ], + [ 7.5732203, 47.4177873 ], + [ 7.5731129, 47.4177588 ], + [ 7.5730046, 47.4177348 ], + [ 7.5729459, 47.4177092 ], + [ 7.5728869, 47.417676 ], + [ 7.5728221, 47.4176278 ], + [ 7.5727754, 47.4175908 ], + [ 7.5726857, 47.4175055 ], + [ 7.5725831, 47.4174117 ], + [ 7.5725507, 47.4173864 ], + [ 7.5725095, 47.4173745 ], + [ 7.5724789999999995, 47.4173664 ], + [ 7.5724378, 47.4173664 ], + [ 7.572369, 47.4173714 ], + [ 7.572189, 47.4174308 ], + [ 7.5720759, 47.4174702 ], + [ 7.5719494, 47.4175141 ], + [ 7.5718298, 47.4175634 ], + [ 7.5717237, 47.417628 ], + [ 7.5716194, 47.4176953 ], + [ 7.571459, 47.4177551 ], + [ 7.5713137, 47.4177916 ], + [ 7.571115, 47.4178345 ], + [ 7.571053, 47.4178436 ], + [ 7.5709551, 47.4178596 ], + [ 7.5708798999999996, 47.4178797 ], + [ 7.5708365, 47.4179144 ], + [ 7.5707624, 47.4179656 ], + [ 7.5706706, 47.4180232 ], + [ 7.5706050000000005, 47.4180552 ], + [ 7.570522, 47.4180977 ], + [ 7.5704704, 47.4181202 ], + [ 7.5704168, 47.4181396 ], + [ 7.5703723, 47.4181553 ], + [ 7.570315, 47.4181697 ], + [ 7.5702675, 47.4181775 ], + [ 7.5698561, 47.4188127 ], + [ 7.569405, 47.419313 ], + [ 7.5688282000000005, 47.4200204 ], + [ 7.5686855, 47.4203598 ], + [ 7.5682955, 47.4207595 ], + [ 7.5682742, 47.4207903 ], + [ 7.5675215, 47.4214946 ], + [ 7.5675552, 47.4215145 ], + [ 7.567586, 47.4215364 ], + [ 7.5676139, 47.4215601 ], + [ 7.5676384, 47.4215854 ], + [ 7.5676594, 47.4216121 ], + [ 7.5676767, 47.4216401 ], + [ 7.5676901999999995, 47.4216689 ], + [ 7.5676997, 47.4216985 ], + [ 7.5677159, 47.4217626 ], + [ 7.5677287, 47.4218677 ], + [ 7.5677396, 47.4220914 ], + [ 7.5677503999999995, 47.4222149 ], + [ 7.5677705, 47.4223524 ], + [ 7.5677932, 47.4224709 ], + [ 7.5678186, 47.4226791 ], + [ 7.5678358, 47.4227877 ], + [ 7.5676627, 47.4228004 ], + [ 7.5673404, 47.4228034 ], + [ 7.5674254, 47.4228348 ], + [ 7.567573, 47.4229703 ], + [ 7.5676891, 47.4231344 ], + [ 7.5676791, 47.4233414 ], + [ 7.5676269, 47.4234985 ], + [ 7.5676046, 47.4235406 ], + [ 7.5677086, 47.4236478 ], + [ 7.5677433, 47.4237177 ], + [ 7.5677515, 47.4237359 ], + [ 7.5677491, 47.4238441 ], + [ 7.5677274, 47.4239209 ], + [ 7.5676988, 47.4240221 ], + [ 7.5676323, 47.424149 ], + [ 7.5675736, 47.4242587 ], + [ 7.5674672, 47.4244313 ], + [ 7.5674529, 47.4244563 ], + [ 7.5674012, 47.4245471 ], + [ 7.5672574, 47.4247994 ], + [ 7.5671816, 47.4249536 ], + [ 7.5671549, 47.4249979 ], + [ 7.5670992, 47.4250811 ], + [ 7.5670705, 47.4251239 ], + [ 7.5670307999999995, 47.4251831 ], + [ 7.566967, 47.4253505 ], + [ 7.5669468, 47.4254035 ], + [ 7.5669274, 47.4254545 ], + [ 7.5668692, 47.4256431 ], + [ 7.5668463, 47.4257176 ], + [ 7.5667401, 47.426116 ], + [ 7.5665932, 47.4264039 ], + [ 7.5664448, 47.426592 ], + [ 7.5660952, 47.4268846 ], + [ 7.5655528, 47.4271099 ], + [ 7.5651024, 47.4272506 ], + [ 7.5648756, 47.4272869 ], + [ 7.5646282, 47.4273092 ], + [ 7.5648064, 47.427471 ], + [ 7.5651328, 47.4275635 ], + [ 7.5655581, 47.4276032 ], + [ 7.5657127, 47.4280911 ], + [ 7.5657557, 47.4284909 ], + [ 7.5657564, 47.4288031 ], + [ 7.5657568, 47.4289406 ], + [ 7.5657683, 47.4293904 ], + [ 7.5657369, 47.4294618 ], + [ 7.5654857, 47.4299904 ], + [ 7.5656018, 47.4301402 ], + [ 7.5656232, 47.4303186 ], + [ 7.5657393, 47.4304684 ], + [ 7.5659395, 47.4305967 ], + [ 7.5661189, 47.4308036 ], + [ 7.5663021, 47.4310577 ], + [ 7.5662941, 47.4310558 ], + [ 7.5663124, 47.4310818 ], + [ 7.5664109, 47.4312244 ], + [ 7.5665445, 47.4313433 ], + [ 7.5667623, 47.4315049 ], + [ 7.56691, 47.4316522 ], + [ 7.5668758, 47.432014 ], + [ 7.5668413999999995, 47.4323282 ], + [ 7.5667442, 47.4327138 ], + [ 7.566675, 47.4331327 ], + [ 7.5667669, 47.4334182 ], + [ 7.5669077, 47.4336607 ], + [ 7.5670277, 47.4339747 ], + [ 7.5671267, 47.4342935 ], + [ 7.5671698, 47.4347075 ], + [ 7.5670655, 47.4351027 ], + [ 7.5670104, 47.4355311 ], + [ 7.5668357, 47.4358216 ], + [ 7.5665002, 47.4363265 ], + [ 7.5661715, 47.4367457 ], + [ 7.5659691, 47.4370878 ], + [ 7.5671105, 47.4373311 ], + [ 7.5671524, 47.4373282 ], + [ 7.5671587, 47.4373272 ], + [ 7.5671809, 47.437335 ], + [ 7.5671836, 47.4373436 ], + [ 7.5671841, 47.4373555 ], + [ 7.56722, 47.437383 ], + [ 7.5672184, 47.4374712 ], + [ 7.5671842, 47.4375587 ], + [ 7.5671506, 47.4376083 ], + [ 7.5671066, 47.4376708 ], + [ 7.5670031, 47.4378202 ], + [ 7.5668617000000005, 47.437971 ], + [ 7.5667544, 47.4380377 ], + [ 7.5664521, 47.4382265 ], + [ 7.5663073, 47.4383382 ], + [ 7.5661728, 47.4384511 ], + [ 7.5660969, 47.4384933 ], + [ 7.5660426, 47.4385996 ], + [ 7.5660407, 47.4386246 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns349", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Chaltbrunnental - Birsmatte", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Chaltbrunnental - Birsmatte", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Chaltbrunnental - Birsmatte", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Chaltbrunnental - Birsmatte", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8458011, 47.4246681 ], + [ 7.8458228, 47.4248205 ], + [ 7.8458796, 47.425114 ], + [ 7.8458815, 47.4251239 ], + [ 7.8459739, 47.4253888 ], + [ 7.8459042, 47.4258401 ], + [ 7.8459014, 47.4258587 ], + [ 7.8458713, 47.4260536 ], + [ 7.8458575, 47.426143 ], + [ 7.8464651, 47.4261125 ], + [ 7.8468664, 47.4260999 ], + [ 7.8469274, 47.426087 ], + [ 7.8470323, 47.426326 ], + [ 7.847117, 47.4265878 ], + [ 7.847232, 47.426898 ], + [ 7.8472299, 47.4271416 ], + [ 7.8468213, 47.4275571 ], + [ 7.8467244, 47.4277841 ], + [ 7.8466427, 47.4282064 ], + [ 7.8466874, 47.4285683 ], + [ 7.8465464, 47.4291646 ], + [ 7.8464562, 47.4295509 ], + [ 7.8463531, 47.4299192 ], + [ 7.8463418, 47.4299578 ], + [ 7.846362, 47.4301205 ], + [ 7.8465824, 47.4304732 ], + [ 7.8467057, 47.4304559 ], + [ 7.8467869, 47.4304326 ], + [ 7.8467717, 47.4303624 ], + [ 7.8467511, 47.4302667 ], + [ 7.8467846, 47.4301993 ], + [ 7.8467405, 47.430145 ], + [ 7.8468001, 47.4300579 ], + [ 7.8468661, 47.4300328 ], + [ 7.8468843, 47.4299843 ], + [ 7.8470359, 47.4298935 ], + [ 7.8471405999999995, 47.4298527 ], + [ 7.8471162, 47.4295883 ], + [ 7.8471198, 47.4295879 ], + [ 7.8471234, 47.4295875 ], + [ 7.8471277, 47.4295381 ], + [ 7.8472361, 47.4290767 ], + [ 7.8471131, 47.429073 ], + [ 7.8470449, 47.4289305 ], + [ 7.8470013, 47.4287741 ], + [ 7.8469537, 47.4284785 ], + [ 7.8469397999999995, 47.428333 ], + [ 7.8469116, 47.4283296 ], + [ 7.8468231, 47.4280134 ], + [ 7.8469885, 47.4276644 ], + [ 7.84704, 47.4275557 ], + [ 7.8471312, 47.4274799 ], + [ 7.8472290000000005, 47.4273508 ], + [ 7.847239, 47.4273376 ], + [ 7.8472392, 47.4273373 ], + [ 7.8472392, 47.4273363 ], + [ 7.8472335, 47.427218 ], + [ 7.8472333, 47.4272133 ], + [ 7.847247, 47.427152 ], + [ 7.8472735, 47.4271005 ], + [ 7.8473609, 47.4269901 ], + [ 7.847378, 47.4268464 ], + [ 7.8473588, 47.4268289 ], + [ 7.8472751, 47.4267521 ], + [ 7.8472857, 47.4266882 ], + [ 7.8472207, 47.4265658 ], + [ 7.8470242, 47.4260293 ], + [ 7.8468712, 47.4260431 ], + [ 7.8468736, 47.4260147 ], + [ 7.846876, 47.4259863 ], + [ 7.8469484, 47.4259407 ], + [ 7.8470285, 47.4258904 ], + [ 7.8471753, 47.4257981 ], + [ 7.8471732, 47.425781 ], + [ 7.8471722, 47.4257729 ], + [ 7.8471667, 47.4257264 ], + [ 7.8473045, 47.4256975 ], + [ 7.8473023, 47.4256842 ], + [ 7.8470245, 47.4256357 ], + [ 7.847069, 47.4253548 ], + [ 7.8470611, 47.4253325 ], + [ 7.8470127, 47.4251974 ], + [ 7.8470238, 47.425151 ], + [ 7.8470752, 47.4250601 ], + [ 7.8471202, 47.4249863 ], + [ 7.8471352, 47.4248873 ], + [ 7.8472287, 47.4249086 ], + [ 7.8472453, 47.4248942 ], + [ 7.8472624, 47.4248767 ], + [ 7.8472733, 47.4248656 ], + [ 7.8473078, 47.4248304 ], + [ 7.8471975, 47.4247828 ], + [ 7.8469379, 47.4247389 ], + [ 7.8468844, 47.4247365 ], + [ 7.8468061, 47.4247129 ], + [ 7.8467824, 47.4245362 ], + [ 7.8467265, 47.4245423 ], + [ 7.8467427999999995, 47.4245007 ], + [ 7.8468298, 47.4242787 ], + [ 7.8467012, 47.4241577 ], + [ 7.8465499, 47.4239343 ], + [ 7.8465488, 47.4239322 ], + [ 7.8465021, 47.4238468 ], + [ 7.8464909, 47.4238263 ], + [ 7.8464706, 47.4238316 ], + [ 7.8464609, 47.4238146 ], + [ 7.8464827, 47.4238089 ], + [ 7.8463825, 47.4236915 ], + [ 7.8461885, 47.4235834 ], + [ 7.8461808, 47.4235286 ], + [ 7.8461688, 47.4233876 ], + [ 7.8461586, 47.4232681 ], + [ 7.8461414, 47.4231632 ], + [ 7.8461389, 47.4231544 ], + [ 7.8461124, 47.4230584 ], + [ 7.8461791, 47.4228537 ], + [ 7.8462776, 47.4226459 ], + [ 7.8463633999999995, 47.4225254 ], + [ 7.8463633, 47.4225212 ], + [ 7.8463562, 47.4222888 ], + [ 7.8463307, 47.4221872 ], + [ 7.8463081, 47.4220972 ], + [ 7.8461939, 47.4219251 ], + [ 7.8461894999999995, 47.4219016 ], + [ 7.8461572, 47.4217273 ], + [ 7.8457019, 47.4218174 ], + [ 7.8456126, 47.4218351 ], + [ 7.8451905, 47.4219176 ], + [ 7.8451805, 47.4219196 ], + [ 7.8453647, 47.4222025 ], + [ 7.8455778, 47.422511 ], + [ 7.8457246, 47.4228874 ], + [ 7.8458873, 47.4232835 ], + [ 7.846031, 47.423595 ], + [ 7.8459587, 47.4236038 ], + [ 7.8460763, 47.4238043 ], + [ 7.8460988, 47.4239852 ], + [ 7.8460614, 47.4242781 ], + [ 7.8460102, 47.4244007 ], + [ 7.845896, 47.4245003 ], + [ 7.8458011, 47.4246681 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr097", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Neuweg", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Neuweg", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Neuweg", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Neuweg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.681846, 46.5457352 ], + [ 6.6817896999999995, 46.5433808 ], + [ 6.6815548, 46.5410316 ], + [ 6.6811421, 46.5386941 ], + [ 6.6805528, 46.5363747 ], + [ 6.6797884, 46.5340798 ], + [ 6.6788511, 46.5318156 ], + [ 6.6777434, 46.5295884 ], + [ 6.6764685, 46.5274042 ], + [ 6.6750298, 46.525269 ], + [ 6.6734314, 46.5231887 ], + [ 6.6716774999999995, 46.521169 ], + [ 6.669773, 46.5192154 ], + [ 6.6677231, 46.5173332 ], + [ 6.6655335000000004, 46.5155277 ], + [ 6.6632102, 46.5138036 ], + [ 6.6607595, 46.5121658 ], + [ 6.6581881, 46.5106188 ], + [ 6.6555031, 46.5091667 ], + [ 6.6527119, 46.5078136 ], + [ 6.6498221, 46.5065631 ], + [ 6.6468416, 46.5054187 ], + [ 6.6437786, 46.5043834 ], + [ 6.6406414, 46.5034602 ], + [ 6.6374386, 46.5026515 ], + [ 6.634179, 46.5019596 ], + [ 6.6308715, 46.5013864 ], + [ 6.6275251, 46.5009334 ], + [ 6.624149, 46.5006018 ], + [ 6.6207525, 46.5003926 ], + [ 6.6173448, 46.5003063 ], + [ 6.6139352, 46.5003432 ], + [ 6.6105331, 46.5005032 ], + [ 6.6071477, 46.5007858 ], + [ 6.6037883, 46.5011902 ], + [ 6.6004642, 46.5017155 ], + [ 6.5971843, 46.50236 ], + [ 6.5939575999999995, 46.5031221 ], + [ 6.5907931, 46.5039997 ], + [ 6.5876993, 46.5049903 ], + [ 6.5846847, 46.5060913 ], + [ 6.5817575999999995, 46.5072997 ], + [ 6.5789259, 46.5086121 ], + [ 6.5761974, 46.510025 ], + [ 6.5735797, 46.5115345 ], + [ 6.5710798, 46.5131364 ], + [ 6.5687046, 46.5148264 ], + [ 6.5664606, 46.5165998 ], + [ 6.5643541, 46.5184519 ], + [ 6.5623906, 46.5203775 ], + [ 6.5605757, 46.5223714 ], + [ 6.5589144, 46.5244281 ], + [ 6.5574110999999995, 46.5265419 ], + [ 6.5560701, 46.5287072 ], + [ 6.554895, 46.5309179 ], + [ 6.5538891, 46.533168 ], + [ 6.5530551, 46.5354513 ], + [ 6.5523953, 46.5377617 ], + [ 6.5519117, 46.5400927 ], + [ 6.5516054, 46.5424379 ], + [ 6.5514774, 46.544791000000004 ], + [ 6.5515281, 46.5471456 ], + [ 6.5517574, 46.549495 ], + [ 6.5521645, 46.551833 ], + [ 6.5527485, 46.554153 ], + [ 6.5535078, 46.5564488 ], + [ 6.5544402999999996, 46.558714 ], + [ 6.5555435, 46.5609424 ], + [ 6.5568143, 46.563128 ], + [ 6.5582493, 46.5652646 ], + [ 6.5598446, 46.5673465 ], + [ 6.5615958, 46.5693679 ], + [ 6.5634982, 46.5713234 ], + [ 6.5655465, 46.5732074 ], + [ 6.5677351, 46.5750149 ], + [ 6.5700579999999995, 46.5767409 ], + [ 6.5725089, 46.5783806 ], + [ 6.575081, 46.5799296 ], + [ 6.5777673, 46.5813836 ], + [ 6.5805603999999995, 46.5827385 ], + [ 6.5834527, 46.5839908 ], + [ 6.5864362, 46.5851369 ], + [ 6.5895027, 46.5861736 ], + [ 6.5926439, 46.5870983 ], + [ 6.595851, 46.5879082 ], + [ 6.5991153, 46.5886012 ], + [ 6.6024278, 46.5891754 ], + [ 6.6057794, 46.5896291 ], + [ 6.6091609, 46.5899612 ], + [ 6.612563, 46.5901708 ], + [ 6.6159764, 46.590257199999996 ], + [ 6.6193916, 46.5902203 ], + [ 6.6227994, 46.59006 ], + [ 6.6261903, 46.589777 ], + [ 6.629555, 46.5893718 ], + [ 6.6328843, 46.5888458 ], + [ 6.636169, 46.5882002 ], + [ 6.6394001, 46.5874369 ], + [ 6.6425687, 46.586558 ], + [ 6.6456662, 46.5855658 ], + [ 6.648684, 46.5844632 ], + [ 6.6516138, 46.5832531 ], + [ 6.6544476, 46.5819389 ], + [ 6.6571776, 46.5805242 ], + [ 6.6597964, 46.5790128 ], + [ 6.6622967, 46.5774089 ], + [ 6.6646716999999995, 46.5757169 ], + [ 6.6669149, 46.5739415 ], + [ 6.6690202, 46.5720876 ], + [ 6.6709817000000005, 46.5701601 ], + [ 6.6727941, 46.5681645 ], + [ 6.6744524, 46.5661062 ], + [ 6.6759522, 46.5639908 ], + [ 6.6772893, 46.5618241 ], + [ 6.6784601, 46.5596122 ], + [ 6.6794613, 46.557361 ], + [ 6.6802903, 46.5550767 ], + [ 6.6809448, 46.5527656 ], + [ 6.681423, 46.5504341 ], + [ 6.6817237, 46.5480885 ], + [ 6.681846, 46.5457352 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSGL001", + "country" : "CHE", + "name" : [ + { + "text" : "LSGL Lausanne-la Blécherette", + "lang" : "de-CH" + }, + { + "text" : "LSGL Lausanne-la Blécherette", + "lang" : "fr-CH" + }, + { + "text" : "LSGL Lausanne-la Blécherette", + "lang" : "it-CH" + }, + { + "text" : "LSGL Lausanne-la Blécherette", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Aéroport de Lausanne-La Blécherette", + "lang" : "de-CH" + }, + { + "text" : "Aéroport de Lausanne-La Blécherette", + "lang" : "fr-CH" + }, + { + "text" : "Aéroport de Lausanne-La Blécherette", + "lang" : "it-CH" + }, + { + "text" : "Aéroport de Lausanne-La Blécherette", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Chef d'aérodrome", + "lang" : "de-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "fr-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "it-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.lausanne-airport.ch/", + "email" : "drones@lausanne-airport.ch", + "phone" : "0041216461551", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.8653095, 46.8368255 ], + [ 6.8652626, 46.8367717 ], + [ 6.8650057, 46.8368777 ], + [ 6.8645769, 46.8370373 ], + [ 6.8644172999999995, 46.8370967 ], + [ 6.8643363, 46.8371611 ], + [ 6.864333, 46.8372337 ], + [ 6.8646383, 46.8373516 ], + [ 6.864677, 46.8373202 ], + [ 6.8648706, 46.8374248 ], + [ 6.8649163, 46.8374058 ], + [ 6.8659012, 46.8369981 ], + [ 6.8656371, 46.836769 ], + [ 6.8654722, 46.8367531 ], + [ 6.8653096, 46.8368256 ], + [ 6.8653095, 46.8368255 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VBS_35", + "country" : "CHE", + "name" : [ + { + "text" : "VBS_35 Sevaz", + "lang" : "de-CH" + }, + { + "text" : "VBS_35 Sevaz", + "lang" : "fr-CH" + }, + { + "text" : "VBS_35 Sevaz", + "lang" : "it-CH" + }, + { + "text" : "VBS_35 Sevaz", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "regulationExemption" : "YES", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Eidgenössisches Departement für Verteidigung, Bevölkerungsschutz und Sport (VBS)", + "lang" : "de-CH" + }, + { + "text" : "Département fédéral de la défense, de la protection de la population et des sports (DDPS)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento federale della difesa, della protezione della popolazione e dello sport (DDPS)", + "lang" : "it-CH" + }, + { + "text" : "Federal Department of Defence, Civil Protection and Sport (DDPS)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Lageverfolgungszentrum der Armee LVZ A", + "lang" : "de-CH" + }, + { + "text" : "Centre de suivi de la situation de l’armée, CSS A", + "lang" : "fr-CH" + }, + { + "text" : "Centro di monitoraggio della situazione dell’esercito, Centro mon sit Es", + "lang" : "it-CH" + }, + { + "text" : "Joint Operation Center, JOC", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vtg.admin.ch/en/joint-operations-command", + "email" : "lvz.op@vtg.admin.ch", + "phone" : "+41 58 464 96 43", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5107429, 47.541006 ], + [ 7.5111992, 47.5406691 ], + [ 7.5116133, 47.5403635 ], + [ 7.5120885, 47.5400144 ], + [ 7.5121312, 47.5400303 ], + [ 7.5127011, 47.5402429 ], + [ 7.5134934, 47.5405498 ], + [ 7.5138537, 47.5407894 ], + [ 7.5139493, 47.5409251 ], + [ 7.5139894, 47.5409819 ], + [ 7.5140066, 47.5410063 ], + [ 7.5139515, 47.5410645 ], + [ 7.5139434, 47.5411057 ], + [ 7.5144668, 47.5414762 ], + [ 7.5149369, 47.54181 ], + [ 7.5151756, 47.5419397 ], + [ 7.5158379, 47.5421833 ], + [ 7.5165166, 47.5424355 ], + [ 7.5165814, 47.5423131 ], + [ 7.5166227, 47.5422403 ], + [ 7.5166858, 47.5420875 ], + [ 7.5164896, 47.5419746 ], + [ 7.5163847, 47.5418554 ], + [ 7.5164205, 47.5417039 ], + [ 7.5168428, 47.5412822 ], + [ 7.5167304999999995, 47.5410643 ], + [ 7.516207, 47.5404658 ], + [ 7.5160584, 47.5405166 ], + [ 7.5156537, 47.5406425 ], + [ 7.5156297, 47.5406196 ], + [ 7.5153833, 47.5403847 ], + [ 7.5151955, 47.5401737 ], + [ 7.5152198, 47.5399585 ], + [ 7.5150035, 47.5396972 ], + [ 7.5151321, 47.5396402 ], + [ 7.5158772, 47.540538 ], + [ 7.5160314, 47.5404871 ], + [ 7.5155234, 47.5398405 ], + [ 7.5153634, 47.5396119 ], + [ 7.5153233, 47.5395554 ], + [ 7.5151083, 47.5391852 ], + [ 7.5147895, 47.5387089 ], + [ 7.5147197, 47.5387344 ], + [ 7.5146872, 47.5387145 ], + [ 7.5143923, 47.5385339 ], + [ 7.514057, 47.5383334 ], + [ 7.5134158, 47.5377639 ], + [ 7.5132046, 47.5377905 ], + [ 7.5131148, 47.5378018 ], + [ 7.5128133, 47.5378401 ], + [ 7.5126501, 47.5376772 ], + [ 7.512561, 47.5375913 ], + [ 7.5123211, 47.5373594 ], + [ 7.5122642, 47.5373101 ], + [ 7.5120482, 47.5371508 ], + [ 7.5118884, 47.5370458 ], + [ 7.5116833, 47.5369112 ], + [ 7.5109907, 47.5374417 ], + [ 7.5105119, 47.5376781 ], + [ 7.5097864, 47.5379233 ], + [ 7.5092254, 47.5381713 ], + [ 7.5090958, 47.5382276 ], + [ 7.5091225999999995, 47.5383203 ], + [ 7.5092022, 47.5385952 ], + [ 7.5092856, 47.5389879 ], + [ 7.5094082, 47.5395612 ], + [ 7.5094560999999995, 47.5398426 ], + [ 7.5095031, 47.5401433 ], + [ 7.5098355, 47.5405939 ], + [ 7.5101838, 47.5407752 ], + [ 7.5107429, 47.541006 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns245", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Allschwilerwald", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Allschwilerwald", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Allschwilerwald", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Allschwilerwald", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.0793833, 47.224296 ], + [ 8.0764156, 47.2276577 ], + [ 8.0759862, 47.228191699999996 ], + [ 8.0761891, 47.2282634 ], + [ 8.0763123, 47.2283023 ], + [ 8.0765497, 47.2283882 ], + [ 8.0767406, 47.2284529 ], + [ 8.0769714, 47.2285379 ], + [ 8.077043, 47.2285636 ], + [ 8.0770853, 47.2285688 ], + [ 8.0771236, 47.228565 ], + [ 8.0771644, 47.2285557 ], + [ 8.0772544, 47.2284635 ], + [ 8.0774476, 47.2283896 ], + [ 8.0775405, 47.2283135 ], + [ 8.0777413, 47.2280974 ], + [ 8.0780998, 47.2277104 ], + [ 8.078427, 47.2273587 ], + [ 8.0784721, 47.2273764 ], + [ 8.0785592, 47.227376 ], + [ 8.0789544, 47.2275186 ], + [ 8.0796519, 47.2277612 ], + [ 8.0798396, 47.2275541 ], + [ 8.0799907, 47.2273851 ], + [ 8.0801284, 47.2271954 ], + [ 8.0802668, 47.2269563 ], + [ 8.0804213, 47.2266199 ], + [ 8.0805484, 47.2262108 ], + [ 8.0808064, 47.2252631 ], + [ 8.0811784, 47.2239172 ], + [ 8.0812622, 47.2236316 ], + [ 8.0811546, 47.2235773 ], + [ 8.0802975, 47.223234 ], + [ 8.0797884, 47.2238287 ], + [ 8.0793833, 47.224296 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSPN002", + "country" : "CHE", + "name" : [ + { + "text" : "LSPN Triengen (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSPN Triengen (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSPN Triengen (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSPN Triengen (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Triengen Airport", + "lang" : "de-CH" + }, + { + "text" : "Triengen Airport", + "lang" : "fr-CH" + }, + { + "text" : "Triengen Airport", + "lang" : "it-CH" + }, + { + "text" : "Triengen Airport", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Bruno Müller", + "lang" : "de-CH" + }, + { + "text" : "Bruno Müller", + "lang" : "fr-CH" + }, + { + "text" : "Bruno Müller", + "lang" : "it-CH" + }, + { + "text" : "Bruno Müller", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.flyingranch.ch/", + "email" : "info@flyingranch.ch", + "phone" : "0041419333880", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P01DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8019765, 47.4326004 ], + [ 7.8019677, 47.4326359 ], + [ 7.8025798, 47.4328015 ], + [ 7.8030591, 47.4326984 ], + [ 7.8031597, 47.4326717 ], + [ 7.8035474, 47.4325905 ], + [ 7.803933, 47.4325744 ], + [ 7.8041943, 47.432516 ], + [ 7.8041671, 47.4324217 ], + [ 7.8042119, 47.432065 ], + [ 7.8041391, 47.431761 ], + [ 7.8040172, 47.4314994 ], + [ 7.8038218, 47.4312627 ], + [ 7.8034367, 47.4308334 ], + [ 7.8031571, 47.4305277 ], + [ 7.8028793, 47.4302954 ], + [ 7.8027847999999995, 47.4302729 ], + [ 7.8026838, 47.4302732 ], + [ 7.8025763, 47.4303238 ], + [ 7.8025297, 47.4304062 ], + [ 7.8025103, 47.4305251 ], + [ 7.8024992, 47.4308726 ], + [ 7.8025225, 47.431316 ], + [ 7.8024841, 47.4316224 ], + [ 7.8024656, 47.4318693 ], + [ 7.8023668, 47.4321988 ], + [ 7.8023277, 47.4323909 ], + [ 7.802234, 47.4324872 ], + [ 7.8019765, 47.4326004 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr139", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Stuel", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Stuel", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Stuel", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Stuel", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.1454684, 46.2850941 ], + [ 6.145511, 46.2850862 ], + [ 6.1468717, 46.2846222 ], + [ 6.1478735, 46.2838331 ], + [ 6.1483643, 46.2828384 ], + [ 6.1482697, 46.2817892 ], + [ 6.1482551, 46.281751 ], + [ 6.147588, 46.2808051 ], + [ 6.1464497, 46.2801082 ], + [ 6.1450133, 46.2797663 ], + [ 6.1434977, 46.2798315 ], + [ 6.1434552, 46.2798393 ], + [ 6.1420932, 46.2803005 ], + [ 6.1410885, 46.2810874 ], + [ 6.1405935, 46.2820807 ], + [ 6.1406832, 46.2831298 ], + [ 6.1406976, 46.2831681 ], + [ 6.141188, 46.2839443 ], + [ 6.1420015, 46.284576799999996 ], + [ 6.1430577, 46.2850032 ], + [ 6.1442527, 46.2851815 ], + [ 6.1454684, 46.2850941 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-51", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.0701093, 46.390991 ], + [ 7.0713579, 46.3910949 ], + [ 7.0721505, 46.391164 ], + [ 7.0725104, 46.3911985 ], + [ 7.0729199, 46.3911998 ], + [ 7.0745568, 46.3907904 ], + [ 7.0747253, 46.3906749 ], + [ 7.0759824, 46.3895167 ], + [ 7.0770547, 46.3891621 ], + [ 7.077724, 46.3888053 ], + [ 7.0781444, 46.3885341 ], + [ 7.0781749, 46.3884487 ], + [ 7.0780522, 46.3881343 ], + [ 7.0781972, 46.388035 ], + [ 7.0784122, 46.3879565 ], + [ 7.0784885, 46.3878119 ], + [ 7.0786228, 46.3877538 ], + [ 7.0788674, 46.3877231 ], + [ 7.0790321, 46.3875959 ], + [ 7.079073, 46.3874926 ], + [ 7.079014, 46.3873854 ], + [ 7.0789798, 46.387244 ], + [ 7.0790707, 46.3870653 ], + [ 7.0791262, 46.3869341 ], + [ 7.0790676, 46.3867414 ], + [ 7.0788504, 46.386568 ], + [ 7.0789159, 46.386293 ], + [ 7.0791297, 46.3860166 ], + [ 7.0790001, 46.3859514 ], + [ 7.077291, 46.3855151 ], + [ 7.0756253, 46.3852012 ], + [ 7.0732492, 46.3838316 ], + [ 7.0722876, 46.3832005 ], + [ 7.0719739, 46.3830781 ], + [ 7.0705023, 46.3842373 ], + [ 7.06973, 46.3848411 ], + [ 7.0699524, 46.3851945 ], + [ 7.0700922, 46.3854837 ], + [ 7.0701449, 46.3857574 ], + [ 7.0701171, 46.3860208 ], + [ 7.0700126, 46.3862814 ], + [ 7.0698393, 46.3865435 ], + [ 7.0695328, 46.3868834 ], + [ 7.0691364, 46.3872465 ], + [ 7.0682591, 46.3879821 ], + [ 7.0679697, 46.3882789 ], + [ 7.0678174, 46.388503299999996 ], + [ 7.0677235, 46.3887297 ], + [ 7.0676882, 46.3889599 ], + [ 7.0677139, 46.3891948 ], + [ 7.067825, 46.3894767 ], + [ 7.067991, 46.3897246 ], + [ 7.0682052, 46.3899583 ], + [ 7.0684975, 46.3901878 ], + [ 7.068759, 46.3903397 ], + [ 7.069109, 46.3905019 ], + [ 7.0701093, 46.390991 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00051", + "country" : "CHE", + "name" : [ + { + "text" : "Le Larzey", + "lang" : "de-CH" + }, + { + "text" : "Le Larzey", + "lang" : "fr-CH" + }, + { + "text" : "Le Larzey", + "lang" : "it-CH" + }, + { + "text" : "Le Larzey", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "startDateTime" : "2024-11-15T00:00:00+01:00", + "endDateTime" : "2025-04-15T00:00:00+02:00" + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Generaldirektion für Umwelt", + "lang" : "de-CH" + }, + { + "text" : "Direction générale de l'environnement", + "lang" : "fr-CH" + }, + { + "text" : "Direzione generale dell'Ambiente", + "lang" : "it-CH" + }, + { + "text" : "Environment Department", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.dge@vd.ch", + "phone" : "0041213164422", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.9948367, 47.0067131 ], + [ 6.9949569, 47.0064976 ], + [ 6.9951541, 47.0065074 ], + [ 6.9953532, 47.0063814 ], + [ 6.9955069, 47.0062846 ], + [ 6.9956448, 47.0061973 ], + [ 6.9959605, 47.0059978 ], + [ 6.9959361, 47.0057638 ], + [ 6.9961014, 47.0056479 ], + [ 6.9962932, 47.0055133 ], + [ 6.9964995, 47.0055141 ], + [ 6.9966614, 47.0055147 ], + [ 6.9967803, 47.0054522 ], + [ 6.9967519, 47.0053083 ], + [ 6.9967164, 47.0051288 ], + [ 6.9966667, 47.004876 ], + [ 6.996988, 47.0048822 ], + [ 6.9972584, 47.0048873 ], + [ 6.9972028, 47.0050419 ], + [ 6.9971641, 47.0051478 ], + [ 6.9973717, 47.0051893 ], + [ 6.9975318, 47.0052212 ], + [ 6.9977412999999995, 47.005321 ], + [ 6.9980045, 47.005304 ], + [ 6.9981588, 47.0053267 ], + [ 6.9984478, 47.005369 ], + [ 6.9986349, 47.0053964 ], + [ 6.9988375, 47.0053526 ], + [ 6.9990433, 47.005308 ], + [ 6.9991588, 47.0052542 ], + [ 6.9992521, 47.0052107 ], + [ 6.9994261, 47.0051296 ], + [ 6.999283, 47.0049491 ], + [ 6.9996524, 47.0047976 ], + [ 6.9998488, 47.0049063 ], + [ 7.0000592, 47.0048981 ], + [ 7.0000366, 47.0047529 ], + [ 7.0000217, 47.0046594 ], + [ 6.9999967, 47.004502 ], + [ 7.0003517, 47.0045124 ], + [ 7.000508, 47.0045997 ], + [ 7.0006299, 47.0046678 ], + [ 7.0007575, 47.0047388 ], + [ 7.001047, 47.004713 ], + [ 7.001244, 47.0046392 ], + [ 7.0015218, 47.0045349 ], + [ 7.0019171, 47.0044464 ], + [ 7.0024945, 47.0045835 ], + [ 7.0022213, 47.0042227 ], + [ 7.0023277, 47.0040792 ], + [ 7.0026661, 47.0045122 ], + [ 7.0028763, 47.004531 ], + [ 7.0027841, 47.004457 ], + [ 7.0026281, 47.0043322 ], + [ 7.0028657, 47.0042251 ], + [ 7.0028671, 47.0040452 ], + [ 7.002973, 47.0039557 ], + [ 7.0031904, 47.0039058 ], + [ 7.0034341, 47.0038495 ], + [ 7.0035268, 47.0037779 ], + [ 7.0036031, 47.0035926 ], + [ 7.0036408, 47.0035025 ], + [ 7.0037012, 47.0033557 ], + [ 7.0038998, 47.0031766 ], + [ 7.0041681, 47.0030332 ], + [ 7.0044306, 47.002893 ], + [ 7.0046526, 47.0027746 ], + [ 7.0049154, 47.0027006 ], + [ 7.0052194, 47.0026149 ], + [ 7.005578, 47.0025797 ], + [ 7.0058379, 47.0025542 ], + [ 7.0060094, 47.0024829 ], + [ 7.0061417, 47.0023755 ], + [ 7.0063656, 47.0023313 ], + [ 7.0065684, 47.0023561 ], + [ 7.0067671, 47.0023802 ], + [ 7.0069453, 47.002402 ], + [ 7.0071276, 47.0024241 ], + [ 7.0076144, 47.002381 ], + [ 7.008127, 47.0024179 ], + [ 7.0085344, 47.0024474 ], + [ 7.0088747, 47.0025413 ], + [ 7.0091149, 47.0026075 ], + [ 7.0092953, 47.0026572 ], + [ 7.0095576, 47.0027481 ], + [ 7.0098959, 47.0027879 ], + [ 7.010065, 47.0028079 ], + [ 7.0103458, 47.002841 ], + [ 7.0106431, 47.0027696 ], + [ 7.0108992, 47.0027082 ], + [ 7.0111217, 47.0028349 ], + [ 7.0113575, 47.0028376 ], + [ 7.0124463, 47.0015175 ], + [ 7.0120497, 47.0013694 ], + [ 7.0117086, 47.0012674 ], + [ 7.0113774, 47.0011735 ], + [ 7.0108821, 47.0010331 ], + [ 7.0104625, 47.0008912 ], + [ 7.0099074, 47.0007353 ], + [ 7.0093605, 47.0005768 ], + [ 7.0089143, 47.0004752 ], + [ 7.0083793, 47.0003689 ], + [ 7.0078598, 47.0002841 ], + [ 7.0072568, 47.0001487 ], + [ 7.0068794, 47.0000807 ], + [ 7.0063348, 47.000041 ], + [ 7.0058083, 47.0000065 ], + [ 7.0053222, 46.9999615 ], + [ 7.0048712, 46.9999436 ], + [ 7.004679, 46.9999231 ], + [ 7.0040546, 46.9999072 ], + [ 7.0034719, 46.9999069 ], + [ 7.0028816, 46.9999424 ], + [ 7.0023576, 47.0000034 ], + [ 7.0015934, 47.0000904 ], + [ 7.0011194, 47.0001741 ], + [ 7.000457, 47.0002812 ], + [ 6.9999497999999996, 47.0003882 ], + [ 6.9993178, 47.0004955 ], + [ 6.9988111, 47.0006519 ], + [ 6.9984289, 47.0007628 ], + [ 6.9978261, 47.0010052 ], + [ 6.9973375, 47.0011571 ], + [ 6.9967006, 47.0013652 ], + [ 6.9961701, 47.0016069 ], + [ 6.995502, 47.0019057 ], + [ 6.9948767, 47.0021821 ], + [ 6.9941769, 47.0025312 ], + [ 6.9937073, 47.0028622 ], + [ 6.9932932999999995, 47.003143 ], + [ 6.9930008, 47.0033299 ], + [ 6.9926596, 47.0035427 ], + [ 6.9924339, 47.0037019 ], + [ 6.992094, 47.0039569 ], + [ 6.9916903999999995, 47.0042603 ], + [ 6.9912536, 47.004595 ], + [ 6.9908981, 47.0049427 ], + [ 6.9905541, 47.0052886 ], + [ 6.990239, 47.0056238 ], + [ 6.9899325, 47.0059131 ], + [ 6.989754, 47.0060222 ], + [ 6.9894264, 47.0063789 ], + [ 6.989251, 47.0066121 ], + [ 6.989098, 47.0068274 ], + [ 6.9933350999999995, 47.0085963 ], + [ 6.9933099, 47.0084613 ], + [ 6.9934552, 47.0083899 ], + [ 6.9937093, 47.0083767 ], + [ 6.9939477, 47.0083642 ], + [ 6.9940974, 47.0083564 ], + [ 6.9942577, 47.008348 ], + [ 6.9942993, 47.0080873 ], + [ 6.99425, 47.007992 ], + [ 6.9941424, 47.0077844 ], + [ 6.9940793, 47.0076637 ], + [ 6.9942067, 47.0075558 ], + [ 6.9942912, 47.0074846 ], + [ 6.9944075, 47.0073332 ], + [ 6.9944906, 47.0072245 ], + [ 6.9947116, 47.0071399 ], + [ 6.9948864, 47.0070731 ], + [ 6.9950323999999995, 47.0069027 ], + [ 6.9948367, 47.0067131 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "WZV0010", + "country" : "CHE", + "name" : [ + { + "text" : "Wasser- und Zugvogelreservat Fanel jusqu'à Chablais de Cudrefin, Pointe de Marin", + "lang" : "de-CH" + }, + { + "text" : "Réserve d'oiseaux d'eau et de migrateurs Fanel jusqu'à Chablais de Cudrefin, Pointe de Marin", + "lang" : "fr-CH" + }, + { + "text" : "Riserva di uccelli acquatici e migratori Fanel jusqu'à Chablais de Cudrefin, Pointe de Marin", + "lang" : "it-CH" + }, + { + "text" : "Water Bird and Migratory Bird Reserves Fanel jusqu'à Chablais de Cudrefin, Pointe de Marin", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6110804, 47.5012382 ], + [ 7.6110395, 47.5012469 ], + [ 7.6110305, 47.501249 ], + [ 7.6110213, 47.5012506 ], + [ 7.6110119, 47.5012516 ], + [ 7.6110025, 47.501252 ], + [ 7.610993, 47.5012518 ], + [ 7.6109835, 47.5012511 ], + [ 7.6109742, 47.5012498 ], + [ 7.6109651, 47.501248 ], + [ 7.6109563, 47.5012456 ], + [ 7.6109478, 47.5012427 ], + [ 7.6109398, 47.5012393 ], + [ 7.6109322, 47.5012354 ], + [ 7.6109251, 47.5012311 ], + [ 7.6109186, 47.5012264 ], + [ 7.6109127999999995, 47.5012213 ], + [ 7.6109077, 47.5012159 ], + [ 7.6109033, 47.5012102 ], + [ 7.6108997, 47.5012042 ], + [ 7.6108098, 47.5010194 ], + [ 7.6108054, 47.5010117 ], + [ 7.6108001, 47.5010044 ], + [ 7.6107937, 47.5009973 ], + [ 7.6107865, 47.5009907 ], + [ 7.6107785, 47.5009846 ], + [ 7.6107696, 47.500979 ], + [ 7.6107601, 47.5009739 ], + [ 7.6107499, 47.5009695 ], + [ 7.6107392, 47.5009657 ], + [ 7.610728, 47.5009625 ], + [ 7.6107164, 47.50096 ], + [ 7.6107046, 47.5009583 ], + [ 7.6106926, 47.5009573 ], + [ 7.6106804, 47.500957 ], + [ 7.6103831, 47.500985 ], + [ 7.610359, 47.5009913 ], + [ 7.6102993, 47.5009338 ], + [ 7.6102485, 47.5009394 ], + [ 7.6101656, 47.500946 ], + [ 7.6091622, 47.5010138 ], + [ 7.6090679, 47.5010191 ], + [ 7.6090504, 47.5008983 ], + [ 7.6087382, 47.500919 ], + [ 7.60804, 47.5009654 ], + [ 7.6077925, 47.5009818 ], + [ 7.607093, 47.5010289 ], + [ 7.6070968, 47.5010622 ], + [ 7.6070931999999996, 47.5010878 ], + [ 7.6070834, 47.5011175 ], + [ 7.6070751, 47.5011533 ], + [ 7.6070752, 47.5011911 ], + [ 7.6070852, 47.5012105 ], + [ 7.6070971, 47.5012273 ], + [ 7.6071083, 47.5012454 ], + [ 7.6071228, 47.5012759 ], + [ 7.6071288, 47.5012911 ], + [ 7.6071352, 47.5013062 ], + [ 7.6071421, 47.5013212 ], + [ 7.6072576, 47.5013017 ], + [ 7.6072790999999995, 47.5012978 ], + [ 7.607301, 47.501295 ], + [ 7.6073989, 47.5012813 ], + [ 7.6075903, 47.50126 ], + [ 7.6076942, 47.5012487 ], + [ 7.6077755, 47.5012376 ], + [ 7.6079124, 47.5012215 ], + [ 7.6080872, 47.5012056 ], + [ 7.6081513, 47.5012011 ], + [ 7.6082153, 47.5011956 ], + [ 7.608279, 47.5011891 ], + [ 7.6083501, 47.5011815 ], + [ 7.6085443999999995, 47.5011605 ], + [ 7.6087396, 47.501145 ], + [ 7.608851, 47.5011371 ], + [ 7.6088825, 47.5011358 ], + [ 7.608914, 47.5011359 ], + [ 7.6089455, 47.5011375 ], + [ 7.6089497999999995, 47.5011374 ], + [ 7.608954, 47.5011376 ], + [ 7.6089583, 47.501138 ], + [ 7.6089624, 47.5011387 ], + [ 7.6089664, 47.5011397 ], + [ 7.6089703, 47.5011409 ], + [ 7.608974, 47.5011423 ], + [ 7.6089772, 47.5011438 ], + [ 7.6089801, 47.5011455 ], + [ 7.6089828, 47.5011473 ], + [ 7.6089853, 47.5011493 ], + [ 7.6089876, 47.5011513 ], + [ 7.6089896, 47.5011536 ], + [ 7.6089913, 47.5011559 ], + [ 7.6089993, 47.5011647 ], + [ 7.6090062, 47.501174 ], + [ 7.609012, 47.5011836 ], + [ 7.6090165, 47.5011935 ], + [ 7.6090235, 47.501216 ], + [ 7.6091207, 47.5015165 ], + [ 7.6092878, 47.5019786 ], + [ 7.6094259, 47.5023644 ], + [ 7.6095838, 47.5028005 ], + [ 7.6096009, 47.5028595 ], + [ 7.6096219, 47.5029179 ], + [ 7.6096465, 47.5029756 ], + [ 7.6098253, 47.5033478 ], + [ 7.6099266, 47.5035249 ], + [ 7.6100429, 47.5036868 ], + [ 7.61006, 47.5037091 ], + [ 7.6106832, 47.5034846 ], + [ 7.6106806, 47.5034567 ], + [ 7.6106796, 47.5034476 ], + [ 7.6106792, 47.5034385 ], + [ 7.6106796, 47.5034294 ], + [ 7.6106806, 47.5034203 ], + [ 7.6106824, 47.5034113 ], + [ 7.6106847, 47.5034023 ], + [ 7.6106878, 47.5033935 ], + [ 7.6106918, 47.5033848 ], + [ 7.6106964999999995, 47.5033762 ], + [ 7.6107019000000005, 47.5033679 ], + [ 7.6107078, 47.5033597 ], + [ 7.6107143, 47.5033517 ], + [ 7.6107215, 47.503344 ], + [ 7.6107292, 47.5033365 ], + [ 7.6107994, 47.5032649 ], + [ 7.6108101, 47.5032545 ], + [ 7.6108214, 47.5032445 ], + [ 7.6108334, 47.5032348 ], + [ 7.6108461, 47.5032255 ], + [ 7.6108594, 47.5032166 ], + [ 7.6108733, 47.5032081 ], + [ 7.6108877, 47.5032001 ], + [ 7.6109027000000005, 47.5031926 ], + [ 7.6109182, 47.5031855 ], + [ 7.6109342, 47.503179 ], + [ 7.6109506, 47.5031729 ], + [ 7.6109674, 47.5031674 ], + [ 7.6109845, 47.5031624 ], + [ 7.611002, 47.503158 ], + [ 7.6110198, 47.5031541 ], + [ 7.6110386, 47.5031501 ], + [ 7.6110577, 47.5031468 ], + [ 7.611077, 47.503144 ], + [ 7.6110965, 47.5031419 ], + [ 7.6111161, 47.5031405 ], + [ 7.6111358, 47.5031398 ], + [ 7.6111555, 47.5031397 ], + [ 7.6111753, 47.5031402 ], + [ 7.6111949, 47.5031415 ], + [ 7.6112144, 47.5031434 ], + [ 7.6112338, 47.5031459 ], + [ 7.611253, 47.5031491 ], + [ 7.6112719, 47.5031529 ], + [ 7.6112905, 47.5031574 ], + [ 7.6113927, 47.503198 ], + [ 7.6114057, 47.5032018 ], + [ 7.6114189, 47.5032052 ], + [ 7.6114323, 47.5032081 ], + [ 7.611446, 47.5032105 ], + [ 7.6114598, 47.5032124 ], + [ 7.6114738, 47.5032138 ], + [ 7.6114879, 47.5032147 ], + [ 7.611502, 47.5032151 ], + [ 7.6115161, 47.503215 ], + [ 7.6115303, 47.5032141 ], + [ 7.6115443, 47.5032127 ], + [ 7.6115583, 47.5032108 ], + [ 7.6115721, 47.5032084 ], + [ 7.6115856, 47.5032054 ], + [ 7.6115989, 47.503202 ], + [ 7.611612, 47.5031981 ], + [ 7.6116247, 47.5031938 ], + [ 7.611637, 47.503189 ], + [ 7.6118442, 47.5031032 ], + [ 7.6119544999999995, 47.5030239 ], + [ 7.611933, 47.5029691 ], + [ 7.6119108, 47.5029144 ], + [ 7.6118879, 47.5028598 ], + [ 7.6118643, 47.5028053 ], + [ 7.6118385, 47.502748 ], + [ 7.6118120000000005, 47.5026909 ], + [ 7.6117848, 47.5026339 ], + [ 7.6117568, 47.5025771 ], + [ 7.6111823, 47.5014341 ], + [ 7.6111496, 47.50137 ], + [ 7.6111163, 47.5013061 ], + [ 7.6110826, 47.5012424 ], + [ 7.6110804, 47.5012382 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns149", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Reinacherheide", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Reinacherheide", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Reinacherheide", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Reinacherheide", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.1766268, 46.1717445 ], + [ 6.1763551, 46.1707086 ], + [ 6.1755335, 46.1698237 ], + [ 6.1742871, 46.1692247 ], + [ 6.1728056, 46.1690026 ], + [ 6.1713146, 46.1691913 ], + [ 6.170041, 46.1697621 ], + [ 6.1691786, 46.170628 ], + [ 6.1688589, 46.1716573 ], + [ 6.1691305, 46.1726932 ], + [ 6.169952, 46.1735781 ], + [ 6.1711985, 46.1741772 ], + [ 6.1726801, 46.1743993 ], + [ 6.1741713, 46.1742105 ], + [ 6.1754449, 46.1736397 ], + [ 6.1763072, 46.1727738 ], + [ 6.1766268, 46.1717445 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-55", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7332071, 47.4116385 ], + [ 7.7342928, 47.4112151 ], + [ 7.7346069, 47.4110937 ], + [ 7.7348572, 47.4110298 ], + [ 7.7348926, 47.4110146 ], + [ 7.7345557, 47.4107867 ], + [ 7.7342718999999995, 47.4107134 ], + [ 7.733871, 47.4106021 ], + [ 7.7334265, 47.4106071 ], + [ 7.7330435, 47.4106168 ], + [ 7.7327435, 47.4109635 ], + [ 7.7325431, 47.4112189 ], + [ 7.7324103, 47.4115574 ], + [ 7.7323394, 47.4117249 ], + [ 7.7327144, 47.411463 ], + [ 7.7330064, 47.4115177 ], + [ 7.7332071, 47.4116385 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns103", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Gugger", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Gugger", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Gugger", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Gugger", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7914261, 47.3770384 ], + [ 7.7916038, 47.3770989 ], + [ 7.7917434, 47.3771565 ], + [ 7.7919171, 47.3772093 ], + [ 7.7922068, 47.377247 ], + [ 7.7922526, 47.3772841 ], + [ 7.7923099, 47.3772942 ], + [ 7.7926391, 47.3771352 ], + [ 7.7926958, 47.3771324 ], + [ 7.7929368, 47.3771022 ], + [ 7.7930086, 47.3770778 ], + [ 7.7931121, 47.3770033 ], + [ 7.7932112, 47.3769742 ], + [ 7.7934816, 47.376934 ], + [ 7.7935303, 47.3769213 ], + [ 7.7936194, 47.3769262 ], + [ 7.7937411, 47.3769675 ], + [ 7.7941029, 47.3769484 ], + [ 7.7944819, 47.3766861 ], + [ 7.7951759, 47.3759801 ], + [ 7.7973842, 47.3755744 ], + [ 7.7976645, 47.3755094 ], + [ 7.7977392, 47.3754921 ], + [ 7.7980035999999995, 47.3755193 ], + [ 7.7980278, 47.3755033 ], + [ 7.7980772, 47.3754238 ], + [ 7.798152, 47.3752267 ], + [ 7.7981544, 47.3751362 ], + [ 7.7985176, 47.3749755 ], + [ 7.7985874, 47.374971 ], + [ 7.7986691, 47.3749845 ], + [ 7.7988768, 47.374887 ], + [ 7.7988976999999995, 47.3749213 ], + [ 7.7989762, 47.3749752 ], + [ 7.7990236, 47.3749732 ], + [ 7.79922, 47.3749016 ], + [ 7.7993266, 47.3748547 ], + [ 7.7993548, 47.3748214 ], + [ 7.7993443, 47.3747909 ], + [ 7.7992007, 47.3745826 ], + [ 7.7997502, 47.3743669 ], + [ 7.8000673, 47.3746653 ], + [ 7.8001303, 47.3746751 ], + [ 7.8003264, 47.3746136 ], + [ 7.8004513, 47.3745486 ], + [ 7.8004495, 47.3744843 ], + [ 7.8004138, 47.374379 ], + [ 7.8003824, 47.374338 ], + [ 7.8002367, 47.3742756 ], + [ 7.8002442, 47.3741919 ], + [ 7.8007822, 47.3740055 ], + [ 7.8009687, 47.3739835 ], + [ 7.8010122, 47.3739648 ], + [ 7.8010347, 47.3739305 ], + [ 7.8010556, 47.3738155 ], + [ 7.8010829, 47.3737714 ], + [ 7.8011568, 47.3737363 ], + [ 7.8013261, 47.3737963 ], + [ 7.8013680999999995, 47.3737809 ], + [ 7.8013688, 47.3736646 ], + [ 7.8017781, 47.3735053 ], + [ 7.8017689, 47.3734233 ], + [ 7.8018743, 47.3734019 ], + [ 7.8020476, 47.3735688 ], + [ 7.8021826999999995, 47.3735558 ], + [ 7.8022574, 47.3734472 ], + [ 7.8022002, 47.3733636 ], + [ 7.8023633, 47.3733121 ], + [ 7.8024061, 47.3732423 ], + [ 7.8025656, 47.3732304 ], + [ 7.8026797, 47.3733098 ], + [ 7.8027725, 47.373327 ], + [ 7.8030156, 47.3733011 ], + [ 7.8031579, 47.3733185 ], + [ 7.8032573, 47.3732963 ], + [ 7.8033252, 47.3732552 ], + [ 7.8033468, 47.3732122 ], + [ 7.8034048, 47.3731774 ], + [ 7.8035472, 47.3730953 ], + [ 7.8038858, 47.3729135 ], + [ 7.8039161, 47.3728929 ], + [ 7.8039309, 47.3728332 ], + [ 7.8038769, 47.3728167 ], + [ 7.8037843, 47.3727373 ], + [ 7.8016338, 47.3716927 ], + [ 7.8014703999999995, 47.3716427 ], + [ 7.8012486, 47.3715733 ], + [ 7.8011218, 47.3716369 ], + [ 7.8009461, 47.3717252 ], + [ 7.8005922, 47.3717117 ], + [ 7.8005289, 47.3717909 ], + [ 7.8004134, 47.3719356 ], + [ 7.8003492, 47.372016 ], + [ 7.8002643, 47.3719711 ], + [ 7.8000503, 47.3718579 ], + [ 7.7999732, 47.3718937 ], + [ 7.7998066, 47.3719709 ], + [ 7.7992118999999995, 47.3722448 ], + [ 7.7986162, 47.3725175 ], + [ 7.7985088000000005, 47.3725667 ], + [ 7.7980852, 47.3728549 ], + [ 7.79795, 47.3729469 ], + [ 7.7977837999999995, 47.3729877 ], + [ 7.7973615, 47.3730913 ], + [ 7.7969971000000005, 47.3731962 ], + [ 7.7965426, 47.37339 ], + [ 7.7962885, 47.3734495 ], + [ 7.7959587, 47.3735184 ], + [ 7.795561, 47.3735792 ], + [ 7.7951920999999995, 47.3736629 ], + [ 7.7948053999999996, 47.3738115 ], + [ 7.7944230999999995, 47.3739201 ], + [ 7.7941176, 47.3740212 ], + [ 7.7937441, 47.3741628 ], + [ 7.7934537, 47.3742585 ], + [ 7.7932279, 47.374333 ], + [ 7.7931363000000005, 47.3744457 ], + [ 7.7929269, 47.3746698 ], + [ 7.7925964, 47.3748612 ], + [ 7.7923667, 47.3749806 ], + [ 7.7920634, 47.3751496 ], + [ 7.7918589, 47.3754119 ], + [ 7.7917818, 47.3755318 ], + [ 7.7919526999999995, 47.3757501 ], + [ 7.791987, 47.3757937 ], + [ 7.7919531, 47.3759172 ], + [ 7.7919288, 47.3760056 ], + [ 7.7920098, 47.3761154 ], + [ 7.7919484, 47.3762031 ], + [ 7.7917886, 47.3764312 ], + [ 7.7917445999999995, 47.376494 ], + [ 7.7915538, 47.3765713 ], + [ 7.7914261, 47.3770384 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr136", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Lauchberg", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Lauchberg", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Lauchberg", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Lauchberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8657319999999995, 47.4098265 ], + [ 7.8656954, 47.409966 ], + [ 7.8656751, 47.4100825 ], + [ 7.8656634, 47.4103201 ], + [ 7.8656517, 47.4105831 ], + [ 7.8656415, 47.4108634 ], + [ 7.8657013, 47.4111618 ], + [ 7.8657471999999995, 47.4113484 ], + [ 7.8658687, 47.4113606 ], + [ 7.8663035, 47.4114237 ], + [ 7.8667379, 47.4112002 ], + [ 7.8671564, 47.4110207 ], + [ 7.8674561, 47.4114487 ], + [ 7.8674137, 47.4115315 ], + [ 7.8672795, 47.4116783 ], + [ 7.8673082999999995, 47.4117227 ], + [ 7.8673215, 47.4117271 ], + [ 7.8673319, 47.4117272 ], + [ 7.8673628, 47.4117276 ], + [ 7.867587, 47.4117219 ], + [ 7.8679186, 47.4119374 ], + [ 7.8681283, 47.4120731 ], + [ 7.8684731, 47.4121489 ], + [ 7.8687132, 47.4122024 ], + [ 7.8690012, 47.4121733 ], + [ 7.8694235, 47.4123126 ], + [ 7.8696716, 47.4121074 ], + [ 7.8699262, 47.4118973 ], + [ 7.8697844, 47.411804599999996 ], + [ 7.8695891, 47.4115486 ], + [ 7.8691642, 47.4111093 ], + [ 7.8692712, 47.4107538 ], + [ 7.8691997, 47.4104884 ], + [ 7.8692049, 47.4102603 ], + [ 7.8693754, 47.4099364 ], + [ 7.8695023, 47.4096862 ], + [ 7.869592, 47.4094465 ], + [ 7.8701139, 47.4088857 ], + [ 7.8695868, 47.4089114 ], + [ 7.8695243999999995, 47.4085386 ], + [ 7.869159, 47.4082709 ], + [ 7.8691495, 47.4082676 ], + [ 7.8690434, 47.4080049 ], + [ 7.8690771, 47.4077722 ], + [ 7.8689336, 47.4074017 ], + [ 7.8684813, 47.4079542 ], + [ 7.8682061999999995, 47.4080291 ], + [ 7.8680505, 47.4082423 ], + [ 7.8678581, 47.4083698 ], + [ 7.8675592, 47.4085782 ], + [ 7.8667058, 47.4088681 ], + [ 7.8664504, 47.4089791 ], + [ 7.8660823, 47.4091376 ], + [ 7.8658706, 47.4095425 ], + [ 7.8657319999999995, 47.4098265 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns248", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Teufleten", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Teufleten", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Teufleten", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Teufleten", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4977713999999995, 47.4294283 ], + [ 7.4979098, 47.4294056 ], + [ 7.4980713, 47.42944 ], + [ 7.4983181, 47.4294525 ], + [ 7.4984333, 47.429466 ], + [ 7.4984816, 47.4294675 ], + [ 7.4985542, 47.4294698 ], + [ 7.4987692, 47.4286003 ], + [ 7.4987539, 47.4285985 ], + [ 7.4986132, 47.4285827 ], + [ 7.4985762, 47.4285924 ], + [ 7.4985618, 47.4286023 ], + [ 7.4985269, 47.4286568 ], + [ 7.4983849, 47.428619 ], + [ 7.4983457, 47.4285786 ], + [ 7.4982544, 47.4285734 ], + [ 7.4980865, 47.4285641 ], + [ 7.4981025, 47.4286547 ], + [ 7.498465, 47.4287044 ], + [ 7.4984635, 47.4287243 ], + [ 7.4984127, 47.4288021 ], + [ 7.4983629, 47.428958 ], + [ 7.4983204, 47.4290165 ], + [ 7.4982781, 47.4290471 ], + [ 7.4982218, 47.4290663 ], + [ 7.4981401, 47.4290721 ], + [ 7.4980584, 47.4290606 ], + [ 7.4979991, 47.4290224 ], + [ 7.4979737, 47.4289727 ], + [ 7.4979652, 47.4289058 ], + [ 7.4979623, 47.4288388 ], + [ 7.497965, 47.428747 ], + [ 7.4979711, 47.4286992 ], + [ 7.4978264, 47.4286957 ], + [ 7.4978163, 47.4288051 ], + [ 7.4978006, 47.4290254 ], + [ 7.4977713999999995, 47.4294283 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns300", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Dittinger Weide und Dittinger Wald", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Dittinger Weide und Dittinger Wald", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Dittinger Weide und Dittinger Wald", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Dittinger Weide und Dittinger Wald", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8438117, 47.4505093 ], + [ 7.8438145, 47.450507 ], + [ 7.8435485, 47.4506094 ], + [ 7.8433737, 47.4506768 ], + [ 7.8433082, 47.4507019 ], + [ 7.8429908, 47.450877 ], + [ 7.8428178, 47.4509725 ], + [ 7.8427212, 47.4510258 ], + [ 7.8425762, 47.4511058 ], + [ 7.8425047, 47.4511453 ], + [ 7.8424161, 47.4511844 ], + [ 7.8425241, 47.4513579 ], + [ 7.8427882, 47.451743 ], + [ 7.8430146, 47.4520092 ], + [ 7.8431968, 47.4521704 ], + [ 7.8433478999999995, 47.4522611 ], + [ 7.8436593, 47.4523921 ], + [ 7.8441797, 47.4526581 ], + [ 7.8445098, 47.4529021 ], + [ 7.8449162, 47.4532025 ], + [ 7.8448899, 47.4529905 ], + [ 7.8448718, 47.4527785 ], + [ 7.8448385, 47.4527228 ], + [ 7.8448043, 47.4525555 ], + [ 7.8447784, 47.4523937 ], + [ 7.8446692, 47.4521039 ], + [ 7.8445944999999995, 47.4520148 ], + [ 7.8445355, 47.4518309 ], + [ 7.8445323, 47.4517592 ], + [ 7.8444823, 47.4516174 ], + [ 7.8444516, 47.4515302 ], + [ 7.8443534, 47.4512356 ], + [ 7.8442301, 47.4510221 ], + [ 7.8442479, 47.4508836 ], + [ 7.8442591, 47.4507968 ], + [ 7.844206, 47.4506429 ], + [ 7.8441369, 47.4505994 ], + [ 7.8441243, 47.4505915 ], + [ 7.8440931, 47.4505718 ], + [ 7.8440195, 47.4504288 ], + [ 7.8438117, 47.4505093 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr075", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Eiholde", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Eiholde", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Eiholde", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Eiholde", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.9932951, 46.3504925 ], + [ 6.9935451, 46.3512123 ], + [ 6.9939363, 46.3524606 ], + [ 6.9947147, 46.3538643 ], + [ 6.9955958, 46.3546243 ], + [ 6.9955677, 46.3553655 ], + [ 6.9953175, 46.3556191 ], + [ 6.9958115, 46.3560483 ], + [ 6.9960322, 46.3567158 ], + [ 6.996742, 46.3572952 ], + [ 6.9974699, 46.3575733 ], + [ 6.9979174, 46.3581553 ], + [ 6.9980588, 46.3588188 ], + [ 6.9983312, 46.3596673 ], + [ 6.9986209, 46.3599904 ], + [ 6.9990993, 46.3601308 ], + [ 6.9993487, 46.3601408 ], + [ 6.9996797, 46.3596914 ], + [ 6.9993441, 46.3589354 ], + [ 6.9994288000000005, 46.3585911 ], + [ 6.9995964, 46.357784 ], + [ 6.9996415, 46.3570294 ], + [ 6.9996777, 46.3564088 ], + [ 6.9995521, 46.3557256 ], + [ 6.999538, 46.3557012 ], + [ 6.9998683, 46.354543 ], + [ 6.9996594, 46.3541814 ], + [ 6.9988699, 46.3531726 ], + [ 6.998409, 46.3520158 ], + [ 6.9978959, 46.3513751 ], + [ 6.9976592, 46.3510782 ], + [ 6.9974948999999995, 46.3508338 ], + [ 6.9974533, 46.3508417 ], + [ 6.9974481, 46.3508417 ], + [ 6.9964987999999995, 46.3508056 ], + [ 6.9964767, 46.3508028 ], + [ 6.9964183, 46.3507909 ], + [ 6.9963963, 46.3507845 ], + [ 6.9963847, 46.3507781 ], + [ 6.9963575, 46.3507627 ], + [ 6.9963498, 46.3507582 ], + [ 6.9961211, 46.3505963 ], + [ 6.9961173, 46.3505936 ], + [ 6.9959443, 46.350458 ], + [ 6.9955467, 46.3503026 ], + [ 6.9949746, 46.3503714 ], + [ 6.9932951, 46.3504925 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00054", + "country" : "CHE", + "name" : [ + { + "text" : "La Riondaz", + "lang" : "de-CH" + }, + { + "text" : "La Riondaz", + "lang" : "fr-CH" + }, + { + "text" : "La Riondaz", + "lang" : "it-CH" + }, + { + "text" : "La Riondaz", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "startDateTime" : "2024-11-15T00:00:00+01:00", + "endDateTime" : "2025-04-15T00:00:00+02:00" + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Generaldirektion für Umwelt", + "lang" : "de-CH" + }, + { + "text" : "Direction générale de l'environnement", + "lang" : "fr-CH" + }, + { + "text" : "Direzione generale dell'Ambiente", + "lang" : "it-CH" + }, + { + "text" : "Environment Department", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.dge@vd.ch", + "phone" : "0041213164422", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.2587147, 46.4883448 ], + [ 7.2588713, 46.4878404 ], + [ 7.2582004, 46.4875011 ], + [ 7.2575686, 46.4871636 ], + [ 7.2566401, 46.4867618 ], + [ 7.2558363, 46.4864583 ], + [ 7.2548046, 46.4861463 ], + [ 7.2542008, 46.4859807 ], + [ 7.2529729, 46.4855604 ], + [ 7.2523861, 46.4853939 ], + [ 7.2516341, 46.4851912 ], + [ 7.2505528, 46.4849321 ], + [ 7.2487196, 46.4844325 ], + [ 7.2475681, 46.484131 ], + [ 7.2463849, 46.4839877 ], + [ 7.246075, 46.4839611 ], + [ 7.245747, 46.4839192 ], + [ 7.245164, 46.4838058 ], + [ 7.2446771, 46.4837447 ], + [ 7.2441329, 46.4837095 ], + [ 7.2437447, 46.4837548 ], + [ 7.2427959, 46.4839726 ], + [ 7.2421947, 46.4841794 ], + [ 7.2416005, 46.4843025 ], + [ 7.2409373, 46.484385 ], + [ 7.2400736, 46.4844608 ], + [ 7.2394128, 46.4846243 ], + [ 7.2389379, 46.484834 ], + [ 7.238493, 46.4850787 ], + [ 7.2383582, 46.4855922 ], + [ 7.2441977, 46.4863598 ], + [ 7.243993, 46.4871411 ], + [ 7.2446286, 46.4871188 ], + [ 7.2451898, 46.4871522 ], + [ 7.2454619, 46.4871958 ], + [ 7.2458276, 46.487254 ], + [ 7.2463299, 46.4873691 ], + [ 7.2470127, 46.4876285 ], + [ 7.2471939, 46.4875811 ], + [ 7.2474035, 46.4876156 ], + [ 7.248219, 46.4875594 ], + [ 7.2482818, 46.4874714 ], + [ 7.2484031, 46.4874185 ], + [ 7.2485269, 46.4874079 ], + [ 7.2486479, 46.487427 ], + [ 7.2487889, 46.4869586 ], + [ 7.2529311, 46.4875052 ], + [ 7.2528176, 46.4879206 ], + [ 7.2536226, 46.4879039 ], + [ 7.2536822, 46.4876044 ], + [ 7.2549241, 46.4877675 ], + [ 7.2549016, 46.4878853 ], + [ 7.255847, 46.4879192 ], + [ 7.2587147, 46.4883448 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSGK002", + "country" : "CHE", + "name" : [ + { + "text" : "LSGK Saanen (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSGK Saanen (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSGK Saanen (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSGK Saanen (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Gstaad Airport", + "lang" : "de-CH" + }, + { + "text" : "Gstaad Airport", + "lang" : "fr-CH" + }, + { + "text" : "Gstaad Airport", + "lang" : "it-CH" + }, + { + "text" : "Gstaad Airport", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Thomas Rösti", + "lang" : "de-CH" + }, + { + "text" : "Thomas Rösti", + "lang" : "fr-CH" + }, + { + "text" : "Thomas Rösti", + "lang" : "it-CH" + }, + { + "text" : "Thomas Rösti", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.gstaad-airport.ch/en/", + "email" : "info@gstaad-airport.ch", + "phone" : "0041337483322", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.9459067999999995, 47.5087228 ], + [ 7.947323, 47.5089837 ], + [ 7.9497208, 47.5094444 ], + [ 7.9515654, 47.5098032 ], + [ 7.9521426, 47.5099176 ], + [ 7.9529487, 47.5100831 ], + [ 7.9534779, 47.5101779 ], + [ 7.9538293, 47.5093102 ], + [ 7.9535102, 47.5091227 ], + [ 7.9537477, 47.5087026 ], + [ 7.9535801, 47.5085261 ], + [ 7.9533544, 47.5083868 ], + [ 7.9531876, 47.5082904 ], + [ 7.9529881, 47.508392 ], + [ 7.9529373, 47.5083491 ], + [ 7.9529411, 47.5083365 ], + [ 7.952941, 47.5083203 ], + [ 7.9529302, 47.5083113 ], + [ 7.952604, 47.5082058 ], + [ 7.9519521, 47.5079145 ], + [ 7.9517313, 47.5081395 ], + [ 7.9513562, 47.5080665 ], + [ 7.9507775, 47.5080682 ], + [ 7.9505089, 47.5082978 ], + [ 7.950184, 47.5083325 ], + [ 7.9482005000000004, 47.5081632 ], + [ 7.9479401, 47.5081391 ], + [ 7.9462569, 47.5078605 ], + [ 7.9428832, 47.5072222 ], + [ 7.9424901, 47.5080433 ], + [ 7.9459067999999995, 47.5087228 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZI002", + "country" : "CHE", + "name" : [ + { + "text" : "LSZI Fricktal-Schupfart (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSZI Fricktal-Schupfart (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSZI Fricktal-Schupfart (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSZI Fricktal-Schupfart (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Flugplatz Fricktal-Schupfart", + "lang" : "de-CH" + }, + { + "text" : "Flugplatz Fricktal-Schupfart", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatz Fricktal-Schupfart", + "lang" : "it-CH" + }, + { + "text" : "Flugplatz Fricktal-Schupfart", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Herbert Ebner", + "lang" : "de-CH" + }, + { + "text" : "Herbert Ebner", + "lang" : "fr-CH" + }, + { + "text" : "Herbert Ebner", + "lang" : "it-CH" + }, + { + "text" : "Herbert Ebner", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.aecs-fricktal.ch", + "email" : "flugplatzchef@fricktal.ch", + "phone" : "0041628712222", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.0960001, 47.5598895 ], + [ 9.0959902, 47.5597484 ], + [ 9.0959694, 47.5596078 ], + [ 9.0959378, 47.5594682 ], + [ 9.0958955, 47.5593299 ], + [ 9.0958425, 47.5591932 ], + [ 9.095779, 47.5590587 ], + [ 9.0957052, 47.5589265 ], + [ 9.0956213, 47.5587972 ], + [ 9.0955275, 47.558671 ], + [ 9.0954241, 47.5585483 ], + [ 9.0953113, 47.5584295 ], + [ 9.0951895, 47.5583148 ], + [ 9.095059, 47.5582046 ], + [ 9.0949201, 47.5580991 ], + [ 9.0947733, 47.5579987 ], + [ 9.094619, 47.5579037 ], + [ 9.0944575, 47.5578142 ], + [ 9.0942893, 47.5577306 ], + [ 9.0941148, 47.5576531 ], + [ 9.0939347, 47.5575818 ], + [ 9.0937492, 47.5575171 ], + [ 9.093559, 47.557459 ], + [ 9.0933646, 47.5574077 ], + [ 9.0931664, 47.5573633 ], + [ 9.0929652, 47.5573261 ], + [ 9.0927613, 47.557296 ], + [ 9.0925553, 47.5572732 ], + [ 9.0923479, 47.5572577 ], + [ 9.0921396, 47.5572496 ], + [ 9.0919309, 47.5572489 ], + [ 9.0917225, 47.5572556 ], + [ 9.0915148, 47.5572696 ], + [ 9.0913086, 47.557291 ], + [ 9.0911042, 47.5573196 ], + [ 9.0909024, 47.5573555 ], + [ 9.0907036, 47.5573985 ], + [ 9.0905084, 47.5574484 ], + [ 9.0903173, 47.5575052 ], + [ 9.0901309, 47.5575687 ], + [ 9.0899497, 47.5576387 ], + [ 9.0897741, 47.557715 ], + [ 9.0896046, 47.5577975 ], + [ 9.0894418, 47.5578858 ], + [ 9.089286, 47.5579798 ], + [ 9.0891377, 47.5580791 ], + [ 9.0889973, 47.5581836 ], + [ 9.0888651, 47.5582929 ], + [ 9.0887416, 47.5584068 ], + [ 9.088627, 47.5585249 ], + [ 9.0885217, 47.5586468 ], + [ 9.0884261, 47.5587724 ], + [ 9.0883402, 47.5589011 ], + [ 9.0882644, 47.5590327 ], + [ 9.0881989, 47.5591668 ], + [ 9.0881438, 47.5593031 ], + [ 9.0880994, 47.5594411 ], + [ 9.0880657, 47.5595805 ], + [ 9.0880428, 47.5597209 ], + [ 9.0880308, 47.5598619 ], + [ 9.0880298, 47.5600032 ], + [ 9.0880396, 47.5601443 ], + [ 9.0880603, 47.5602848 ], + [ 9.0880919, 47.5604245 ], + [ 9.0881343, 47.5605628 ], + [ 9.0881872, 47.5606994 ], + [ 9.0882507, 47.560834 ], + [ 9.0883245, 47.5609661 ], + [ 9.0884084, 47.5610955 ], + [ 9.0885022, 47.5612216 ], + [ 9.0886056, 47.5613443 ], + [ 9.0887183, 47.5614632 ], + [ 9.0888401, 47.5615779 ], + [ 9.0889706, 47.5616881 ], + [ 9.0891095, 47.5617936 ], + [ 9.0892563, 47.561894 ], + [ 9.0894106, 47.561989 ], + [ 9.0895722, 47.5620785 ], + [ 9.0897404, 47.5621621 ], + [ 9.0899148, 47.5622397 ], + [ 9.090095, 47.5623109 ], + [ 9.0902805, 47.5623757 ], + [ 9.0904707, 47.5624338 ], + [ 9.0906651, 47.5624851 ], + [ 9.0908633, 47.5625294 ], + [ 9.0910646, 47.5625667 ], + [ 9.0912685, 47.5625968 ], + [ 9.0914744, 47.5626196 ], + [ 9.0916819, 47.5626351 ], + [ 9.0918902, 47.5626432 ], + [ 9.0920989, 47.5626439 ], + [ 9.0923074, 47.5626372 ], + [ 9.092515, 47.5626232 ], + [ 9.0927213, 47.5626018 ], + [ 9.0929257, 47.5625731 ], + [ 9.0931275, 47.5625373 ], + [ 9.0933263, 47.5624943 ], + [ 9.0935215, 47.5624443 ], + [ 9.0937126, 47.5623875 ], + [ 9.0938991, 47.5623241 ], + [ 9.0940803, 47.5622541 ], + [ 9.0942559, 47.5621777 ], + [ 9.0944254, 47.5620953 ], + [ 9.0945882, 47.5620069 ], + [ 9.094744, 47.5619129 ], + [ 9.0948923, 47.5618136 ], + [ 9.0950328, 47.5617091 ], + [ 9.0951649, 47.5615998 ], + [ 9.0952884, 47.5614859 ], + [ 9.095403, 47.5613678 ], + [ 9.0955082, 47.5612458 ], + [ 9.0956039, 47.5611203 ], + [ 9.0956898, 47.5609916 ], + [ 9.0957655, 47.5608599 ], + [ 9.095831, 47.5607258 ], + [ 9.0958861, 47.5605896 ], + [ 9.0959305, 47.5604516 ], + [ 9.0959642, 47.5603121 ], + [ 9.095987, 47.5601717 ], + [ 9.095999, 47.5600307 ], + [ 9.0960001, 47.5598895 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0127", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Weinfelden", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Weinfelden", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Weinfelden", + "lang" : "it-CH" + }, + { + "text" : "Substation Weinfelden", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.2632642, 46.2507237 ], + [ 6.2630496, 46.2504934 ], + [ 6.2618004, 46.2498953 ], + [ 6.2615, 46.2498506 ], + [ 6.2613248, 46.2496627 ], + [ 6.2600756, 46.2490646 ], + [ 6.2591898, 46.2489327 ], + [ 6.2590258, 46.2483119 ], + [ 6.2582016, 46.2474276 ], + [ 6.2569525, 46.2468295 ], + [ 6.2554686, 46.2466085 ], + [ 6.2539758, 46.2467983 ], + [ 6.2527012, 46.24737 ], + [ 6.2518389, 46.2482366 ], + [ 6.2515203, 46.2492661 ], + [ 6.2517504, 46.2501374 ], + [ 6.2516787, 46.2502095 ], + [ 6.25136, 46.251239 ], + [ 6.2516336, 46.2522748 ], + [ 6.2524577, 46.2531591 ], + [ 6.2537068, 46.2537572 ], + [ 6.2544384, 46.2538662 ], + [ 6.2551279, 46.2541963 ], + [ 6.2552402, 46.254213 ], + [ 6.2558824, 46.2545206 ], + [ 6.2573666, 46.2547415 ], + [ 6.2582528, 46.2546289 ], + [ 6.2587152, 46.2548502 ], + [ 6.2601993, 46.2550712 ], + [ 6.2610534, 46.2549626 ], + [ 6.2616715, 46.2545612 ], + [ 6.2612485, 46.2536279 ], + [ 6.2610719, 46.253247 ], + [ 6.2609221999999995, 46.2528441 ], + [ 6.2609172, 46.2527649 ], + [ 6.260861, 46.2526614 ], + [ 6.2607132, 46.2524509 ], + [ 6.2606237, 46.2523502 ], + [ 6.2601774, 46.2518141 ], + [ 6.2601519, 46.2516792 ], + [ 6.2603698, 46.2515649 ], + [ 6.2607064, 46.2515068 ], + [ 6.2608098, 46.251482 ], + [ 6.2611922, 46.2513467 ], + [ 6.2613921999999995, 46.2512884 ], + [ 6.2619612, 46.2511756 ], + [ 6.2622236000000004, 46.2511422 ], + [ 6.2625658, 46.2510752 ], + [ 6.2627914, 46.2510058 ], + [ 6.2630143, 46.2509053 ], + [ 6.2632642, 46.2507237 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-29", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8806695, 47.4705692 ], + [ 7.8804537, 47.4707866 ], + [ 7.8804694, 47.4708065 ], + [ 7.8806356, 47.4709789 ], + [ 7.8808069, 47.4711317 ], + [ 7.8808579, 47.4711537 ], + [ 7.8808863, 47.4711684 ], + [ 7.880991, 47.4712157 ], + [ 7.8811036, 47.4712636 ], + [ 7.8819052, 47.4716086 ], + [ 7.8819509, 47.4716277 ], + [ 7.8819962, 47.4716473 ], + [ 7.8820411, 47.4716673 ], + [ 7.8820855, 47.4716877 ], + [ 7.8821295, 47.4717085 ], + [ 7.8821731, 47.4717298 ], + [ 7.8822163, 47.4717515 ], + [ 7.8822931, 47.4718006 ], + [ 7.8823733, 47.471876 ], + [ 7.8823879, 47.4718932 ], + [ 7.8825038, 47.4720236 ], + [ 7.8827957, 47.4723417 ], + [ 7.8829768, 47.4725394 ], + [ 7.8830696, 47.4726405 ], + [ 7.8833059, 47.4728984 ], + [ 7.8836093, 47.4732304 ], + [ 7.8836337, 47.4732584 ], + [ 7.8836574, 47.4732867 ], + [ 7.8836804, 47.4733152 ], + [ 7.8837026, 47.473344 ], + [ 7.883724, 47.4733731 ], + [ 7.8837447, 47.4734024 ], + [ 7.8837646, 47.473432 ], + [ 7.8837837, 47.4734618 ], + [ 7.883802, 47.4734919 ], + [ 7.8838196, 47.4735221 ], + [ 7.8838363, 47.4735526 ], + [ 7.8838523, 47.4735833 ], + [ 7.8839787999999995, 47.4738205 ], + [ 7.8839943, 47.4738481 ], + [ 7.8840104, 47.4738754 ], + [ 7.8840272, 47.4739026 ], + [ 7.8840447, 47.4739296 ], + [ 7.8840628, 47.4739563 ], + [ 7.8840816, 47.4739829 ], + [ 7.8841626, 47.4740912 ], + [ 7.8841828, 47.4741174 ], + [ 7.8842038, 47.4741434 ], + [ 7.8842256, 47.474169 ], + [ 7.8842481, 47.4741944 ], + [ 7.8842714, 47.4742194 ], + [ 7.8842954, 47.4742442 ], + [ 7.8843661, 47.4742985 ], + [ 7.8844645, 47.4743567 ], + [ 7.8845646, 47.4744217 ], + [ 7.8845757, 47.4744173 ], + [ 7.8846247, 47.4744476 ], + [ 7.8846546, 47.4745017 ], + [ 7.8846812, 47.4746086 ], + [ 7.8847046, 47.4746072 ], + [ 7.8847398, 47.4745832 ], + [ 7.8847469, 47.4745789 ], + [ 7.8847651, 47.4745677 ], + [ 7.8849152, 47.474476 ], + [ 7.8850845, 47.4747358 ], + [ 7.8855515, 47.4745742 ], + [ 7.885717, 47.4745157 ], + [ 7.8859557, 47.4744312 ], + [ 7.8859804, 47.4744259 ], + [ 7.8860273, 47.4744755 ], + [ 7.8861589, 47.4746843 ], + [ 7.8863684, 47.4750164 ], + [ 7.8864744, 47.4751579 ], + [ 7.8866213, 47.4752871 ], + [ 7.886772, 47.475367 ], + [ 7.8868960999999995, 47.4754049 ], + [ 7.8869897, 47.475429 ], + [ 7.8872564, 47.4754899 ], + [ 7.887382, 47.4755255 ], + [ 7.8875006, 47.4755662 ], + [ 7.8876105, 47.4756069 ], + [ 7.8877692, 47.4756767 ], + [ 7.8879161, 47.4757565 ], + [ 7.8881376, 47.475880599999996 ], + [ 7.8883141, 47.4759891 ], + [ 7.888325, 47.4759963 ], + [ 7.8883353, 47.4760039 ], + [ 7.8883449, 47.476012 ], + [ 7.8883538, 47.4760203 ], + [ 7.888362, 47.4760291 ], + [ 7.8883695, 47.4760381 ], + [ 7.8883762, 47.4760474 ], + [ 7.888382, 47.4760569 ], + [ 7.8883868, 47.4760645 ], + [ 7.888391, 47.4760722 ], + [ 7.8883947, 47.4760801 ], + [ 7.8883979, 47.476088 ], + [ 7.8884004999999995, 47.4760961 ], + [ 7.8889416, 47.4762032 ], + [ 7.8890299, 47.4762173 ], + [ 7.8893367, 47.4762637 ], + [ 7.889483, 47.4762956 ], + [ 7.8895327, 47.4763049 ], + [ 7.8896032, 47.4763175 ], + [ 7.8896974, 47.4763347 ], + [ 7.8899002, 47.4763245 ], + [ 7.8899527, 47.4763309 ], + [ 7.890228, 47.4763012 ], + [ 7.8902736, 47.4763018 ], + [ 7.8902792, 47.4763213 ], + [ 7.8902839, 47.4763408 ], + [ 7.8902877, 47.4763605 ], + [ 7.8902906, 47.4763802 ], + [ 7.8902926, 47.4764 ], + [ 7.8902936, 47.4764198 ], + [ 7.8902937, 47.4764396 ], + [ 7.8902929, 47.4764594 ], + [ 7.8902912, 47.4764791 ], + [ 7.8902884, 47.4764988 ], + [ 7.8902847, 47.4765184 ], + [ 7.8902801, 47.476538 ], + [ 7.8902746, 47.4765574 ], + [ 7.8902681, 47.4765767 ], + [ 7.8902608, 47.4765958 ], + [ 7.8902526, 47.4766148 ], + [ 7.8902435, 47.4766336 ], + [ 7.8902336, 47.4766522 ], + [ 7.8900565, 47.4769622 ], + [ 7.8900318, 47.4770186 ], + [ 7.8898825, 47.4774724 ], + [ 7.8898796, 47.4774807 ], + [ 7.8898774, 47.4774891 ], + [ 7.889876, 47.4774975 ], + [ 7.8898754, 47.477506 ], + [ 7.8898755, 47.4775145 ], + [ 7.8898764, 47.477523 ], + [ 7.8898781, 47.4775314 ], + [ 7.8898805, 47.4775398 ], + [ 7.8898836, 47.4775481 ], + [ 7.8898875, 47.4775563 ], + [ 7.8898921, 47.4775643 ], + [ 7.8898974, 47.4775721 ], + [ 7.8899034, 47.4775796 ], + [ 7.8899101, 47.4775869 ], + [ 7.8900296999999995, 47.4777167 ], + [ 7.8909968, 47.4776513 ], + [ 7.8909901, 47.4776229 ], + [ 7.8910512, 47.4772954 ], + [ 7.8912897, 47.4770116 ], + [ 7.8916008, 47.4766917 ], + [ 7.8918591, 47.4764513 ], + [ 7.8933900999999995, 47.4762142 ], + [ 7.8941764, 47.4760533 ], + [ 7.8939987, 47.4757957 ], + [ 7.8938279, 47.4755481 ], + [ 7.8936752, 47.475327 ], + [ 7.8936753, 47.4753268 ], + [ 7.893281, 47.4752441 ], + [ 7.8927737, 47.4751369 ], + [ 7.8923431, 47.4750437 ], + [ 7.8919971, 47.474966 ], + [ 7.8912829, 47.4748055 ], + [ 7.8912819, 47.4748052 ], + [ 7.8909446, 47.4747198 ], + [ 7.890198, 47.4745307 ], + [ 7.8901587, 47.4743832 ], + [ 7.8898647, 47.4742767 ], + [ 7.8895563, 47.4741516 ], + [ 7.8893153, 47.4740413 ], + [ 7.8891045, 47.4739266 ], + [ 7.8891678, 47.4737575 ], + [ 7.8892454, 47.4735875 ], + [ 7.8890195, 47.4734237 ], + [ 7.8886575, 47.4732421 ], + [ 7.8884462, 47.4731396 ], + [ 7.8881259, 47.4730466 ], + [ 7.8878415, 47.4729525 ], + [ 7.8877599, 47.4725907 ], + [ 7.8877759, 47.4723983 ], + [ 7.8877916, 47.472208 ], + [ 7.8878875, 47.4719581 ], + [ 7.8881402, 47.4719793 ], + [ 7.8887417, 47.4721435 ], + [ 7.8890417, 47.4722153 ], + [ 7.889049, 47.4722171 ], + [ 7.8896337, 47.472355 ], + [ 7.8897279, 47.4723774 ], + [ 7.890483, 47.4725643 ], + [ 7.8905097, 47.4725396 ], + [ 7.8903322, 47.4723686 ], + [ 7.8901185, 47.4721822 ], + [ 7.8902363, 47.471973 ], + [ 7.8900527, 47.4719107 ], + [ 7.889876, 47.4718486 ], + [ 7.8895233, 47.4717348 ], + [ 7.889581, 47.4714046 ], + [ 7.8895821999999995, 47.4714011 ], + [ 7.8896341, 47.471123 ], + [ 7.8897431000000005, 47.4707335 ], + [ 7.8893117, 47.4705892 ], + [ 7.8890635, 47.4704953 ], + [ 7.8888796, 47.4703944 ], + [ 7.8885791, 47.4702591 ], + [ 7.8884336, 47.4700155 ], + [ 7.8879501, 47.469868 ], + [ 7.8877587, 47.4701528 ], + [ 7.8876521, 47.4702957 ], + [ 7.8875093, 47.4704816 ], + [ 7.8873449, 47.4703574 ], + [ 7.887072, 47.4702658 ], + [ 7.886643, 47.4701591 ], + [ 7.8863192, 47.4700786 ], + [ 7.8859931, 47.4700143 ], + [ 7.8856496, 47.4699576 ], + [ 7.8854404, 47.469923 ], + [ 7.8853204, 47.4699032 ], + [ 7.8851268, 47.4698713 ], + [ 7.8850089, 47.4698527 ], + [ 7.8846786, 47.4698008 ], + [ 7.8841593, 47.4696743 ], + [ 7.8841924, 47.4692895 ], + [ 7.883922, 47.4692447 ], + [ 7.8833904, 47.4691135 ], + [ 7.8832759, 47.4693624 ], + [ 7.8828867, 47.4692528 ], + [ 7.8828744, 47.4692884 ], + [ 7.8828184, 47.4694275 ], + [ 7.8823299, 47.4694526 ], + [ 7.8821122, 47.4694591 ], + [ 7.8817046, 47.4694656 ], + [ 7.881603, 47.4694684 ], + [ 7.8814558, 47.4694829 ], + [ 7.8811923, 47.4695108 ], + [ 7.8809605, 47.4696145 ], + [ 7.8809038000000005, 47.4696424 ], + [ 7.8805521, 47.4697123 ], + [ 7.8803506, 47.4698384 ], + [ 7.8803964, 47.4701365 ], + [ 7.8803304999999995, 47.4702879 ], + [ 7.8803114, 47.4703271 ], + [ 7.8803049, 47.4703403 ], + [ 7.8806695, 47.4705692 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns239", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Wischberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Wischberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Wischberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Wischberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5777377, 47.4447946 ], + [ 7.5773693, 47.4450232 ], + [ 7.5774308999999995, 47.4451901 ], + [ 7.5775293, 47.4454438 ], + [ 7.5776295000000005, 47.4456918 ], + [ 7.5777299, 47.4459309 ], + [ 7.5777657, 47.4460527 ], + [ 7.5777965, 47.4461761 ], + [ 7.5779911, 47.4463162 ], + [ 7.5782385, 47.4465631 ], + [ 7.5783275, 47.4468044 ], + [ 7.5783456000000005, 47.4468459 ], + [ 7.5785742, 47.4470812 ], + [ 7.5785255, 47.4474364 ], + [ 7.5784368, 47.4479179 ], + [ 7.5781429, 47.4480703 ], + [ 7.5778923, 47.4483114 ], + [ 7.5778028, 47.4487918 ], + [ 7.5778245, 47.4490646 ], + [ 7.5778143, 47.4493299 ], + [ 7.5778524, 47.4497411 ], + [ 7.577857, 47.4500316 ], + [ 7.5779977, 47.450325 ], + [ 7.5777899, 47.4503467 ], + [ 7.5757245, 47.4505884 ], + [ 7.5748669, 47.4517582 ], + [ 7.57372, 47.452272 ], + [ 7.5726357, 47.4527062 ], + [ 7.5717662, 47.4525743 ], + [ 7.5710682, 47.4523815 ], + [ 7.5702248999999995, 47.4521871 ], + [ 7.5694946, 47.4529588 ], + [ 7.5693251, 47.4531704 ], + [ 7.5693321000000005, 47.4531736 ], + [ 7.5693428, 47.4531602 ], + [ 7.5696525999999995, 47.4533041 ], + [ 7.5706150999999995, 47.4536875 ], + [ 7.5712988, 47.4539738 ], + [ 7.5717586, 47.454202 ], + [ 7.5724981, 47.4543813 ], + [ 7.5728642, 47.4544441 ], + [ 7.5732076, 47.4540203 ], + [ 7.5734652, 47.4537329 ], + [ 7.5739260999999996, 47.4532636 ], + [ 7.5738817, 47.4534157 ], + [ 7.5739358, 47.4536644 ], + [ 7.5740891, 47.4538457 ], + [ 7.5742498, 47.4539439 ], + [ 7.5743798, 47.4539593 ], + [ 7.5748307, 47.4539899 ], + [ 7.5753273, 47.4539116 ], + [ 7.5755868, 47.4537921 ], + [ 7.5757315, 47.4536157 ], + [ 7.5762499, 47.4531175 ], + [ 7.5767345, 47.4527357 ], + [ 7.5771084, 47.4525279 ], + [ 7.5777114, 47.4522421 ], + [ 7.5780546, 47.4519877 ], + [ 7.5783518999999995, 47.4517075 ], + [ 7.5786646, 47.4514842 ], + [ 7.5788872, 47.4513275 ], + [ 7.5797217, 47.4514076 ], + [ 7.5797292, 47.4513453 ], + [ 7.5797824, 47.4512364 ], + [ 7.5799197, 47.4511378 ], + [ 7.5800415999999995, 47.4510236 ], + [ 7.5801022, 47.4508058 ], + [ 7.5801392, 47.4503652 ], + [ 7.5801167, 47.4499675 ], + [ 7.5801694, 47.4496721 ], + [ 7.5802071, 47.4495061 ], + [ 7.5800987, 47.4489569 ], + [ 7.5800827, 47.4486873 ], + [ 7.5800975, 47.4484814 ], + [ 7.5800511, 47.448269 ], + [ 7.5801119, 47.44816 ], + [ 7.5800734, 47.4480668 ], + [ 7.5798665, 47.4478131 ], + [ 7.5797514, 47.4476266 ], + [ 7.5798732, 47.446955 ], + [ 7.5798718, 47.4464056 ], + [ 7.5799073, 47.4460547 ], + [ 7.5798272, 47.445997 ], + [ 7.5794707, 47.4457977 ], + [ 7.5791056999999995, 47.4455547 ], + [ 7.5786611, 47.4453196 ], + [ 7.5782724, 47.4450825 ], + [ 7.5777377, 47.4447946 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr010", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Eggflue", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Eggflue", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Eggflue", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Eggflue", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.0098618, 46.1882388 ], + [ 6.0099235, 46.1883055 ], + [ 6.0098836, 46.1884329 ], + [ 6.0101522, 46.1894692 ], + [ 6.0109714, 46.1903552 ], + [ 6.0113628, 46.1905441 ], + [ 6.011399, 46.1906839 ], + [ 6.0122183, 46.19157 ], + [ 6.0134634, 46.1921708 ], + [ 6.0149449, 46.192395 ], + [ 6.0164371, 46.1922083 ], + [ 6.0177128, 46.1916393 ], + [ 6.0185779, 46.1907745 ], + [ 6.0187961, 46.1900789 ], + [ 6.0190307, 46.1900496 ], + [ 6.0203063, 46.1894805 ], + [ 6.0211713, 46.1886157 ], + [ 6.0214939, 46.1875869 ], + [ 6.0212251, 46.1865506 ], + [ 6.0204058, 46.1856646 ], + [ 6.0191607, 46.1850639 ], + [ 6.018721, 46.1849973 ], + [ 6.0190382, 46.1848943 ], + [ 6.0199264, 46.1843178 ], + [ 6.0199441, 46.184302 ], + [ 6.020625, 46.1833613 ], + [ 6.0207357, 46.1823112 ], + [ 6.0202596, 46.1813116 ], + [ 6.019269, 46.1805146 ], + [ 6.0192059, 46.1804805 ], + [ 6.0181422, 46.1800718 ], + [ 6.0169487, 46.1799115 ], + [ 6.0157423, 46.1800152 ], + [ 6.0146411, 46.1803728 ], + [ 6.0137529, 46.1809493 ], + [ 6.0137351, 46.1809651 ], + [ 6.0130542, 46.1819058 ], + [ 6.0129433, 46.1829558 ], + [ 6.0134193, 46.1839555 ], + [ 6.0143045, 46.1846677 ], + [ 6.0135488, 46.1845534 ], + [ 6.0120568, 46.18474 ], + [ 6.0119013, 46.1848093 ], + [ 6.0117041, 46.1840489 ], + [ 6.010885, 46.1831629 ], + [ 6.0096401, 46.182562 ], + [ 6.0081589, 46.1823378 ], + [ 6.006667, 46.1825243 ], + [ 6.0053913, 46.1830932 ], + [ 6.0045262, 46.1839579 ], + [ 6.0042032, 46.1849867 ], + [ 6.0044717, 46.186023 ], + [ 6.0052908, 46.1869091 ], + [ 6.0065358, 46.18751 ], + [ 6.0080171, 46.1877342 ], + [ 6.0095092, 46.1875477 ], + [ 6.0096647, 46.1874783 ], + [ 6.0098618, 46.1882388 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-13", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.2706495, 47.1895132 ], + [ 8.2705225, 47.1871602 ], + [ 8.2702151, 47.1848151 ], + [ 8.269728, 47.182484 ], + [ 8.2690628, 47.1801736 ], + [ 8.2682212, 47.17789 ], + [ 8.2672055, 47.1756396 ], + [ 8.2660186, 47.1734285 ], + [ 8.2646637, 47.1712628 ], + [ 8.2631446, 47.1691484 ], + [ 8.2614654, 47.1670911 ], + [ 8.2596308, 47.1650965 ], + [ 8.2576458, 47.1631701 ], + [ 8.2555158, 47.1613171 ], + [ 8.2532466, 47.1595427 ], + [ 8.2508446, 47.1578516 ], + [ 8.2483163, 47.1562486 ], + [ 8.2456686, 47.154738 ], + [ 8.2429088, 47.1533238 ], + [ 8.2400444, 47.1520101 ], + [ 8.2370833, 47.1508004 ], + [ 8.2340335, 47.1496979 ], + [ 8.2309035, 47.1487058 ], + [ 8.2277018, 47.1478267 ], + [ 8.2244371, 47.1470631 ], + [ 8.2211183, 47.1464169 ], + [ 8.2177547, 47.14589 ], + [ 8.2143553, 47.1454839 ], + [ 8.2109294, 47.1451996 ], + [ 8.2074864, 47.1450379 ], + [ 8.2040358, 47.1449993 ], + [ 8.2005869, 47.1450838 ], + [ 8.1971492, 47.1452913 ], + [ 8.1937321, 47.1456211 ], + [ 8.190345, 47.1460724 ], + [ 8.186997, 47.1466439 ], + [ 8.1836973, 47.1473341 ], + [ 8.1804551, 47.148141 ], + [ 8.1772791, 47.1490626 ], + [ 8.174178, 47.1500961 ], + [ 8.1711603, 47.1512389 ], + [ 8.1682343, 47.1524878 ], + [ 8.165408, 47.1538394 ], + [ 8.1626891, 47.15529 ], + [ 8.160085, 47.1568356 ], + [ 8.157603, 47.1584719 ], + [ 8.1552498, 47.1601946 ], + [ 8.1530318, 47.1619989 ], + [ 8.1509552, 47.1638798 ], + [ 8.1490256, 47.1658323 ], + [ 8.1472483, 47.1678509 ], + [ 8.1456283, 47.1699302 ], + [ 8.1441699, 47.1720644 ], + [ 8.1428772, 47.1742477 ], + [ 8.1417538, 47.1764742 ], + [ 8.1408027, 47.1787377 ], + [ 8.1400266, 47.181032 ], + [ 8.1394276, 47.1833508 ], + [ 8.1390074, 47.1856879 ], + [ 8.1387671, 47.1880367 ], + [ 8.1387075, 47.1903909 ], + [ 8.1388287, 47.192744 ], + [ 8.139130399999999, 47.1950896 ], + [ 8.1396119, 47.1974211 ], + [ 8.1402717, 47.1997323 ], + [ 8.1411082, 47.2020168 ], + [ 8.1421191, 47.2042683 ], + [ 8.1433015, 47.2064806 ], + [ 8.1446524, 47.2086477 ], + [ 8.1461679, 47.2107637 ], + [ 8.1478441, 47.2128227 ], + [ 8.1496761, 47.214819 ], + [ 8.1516592, 47.2167473 ], + [ 8.1537878, 47.2186021 ], + [ 8.1560561, 47.2203785 ], + [ 8.158458, 47.2220715 ], + [ 8.1609867, 47.2236765 ], + [ 8.1636354, 47.2251891 ], + [ 8.1663969, 47.2266051 ], + [ 8.1692634, 47.2279206 ], + [ 8.1722273, 47.2291321 ], + [ 8.1752803, 47.2302361 ], + [ 8.1784141, 47.2312297 ], + [ 8.18162, 47.2321102 ], + [ 8.1848893, 47.232875 ], + [ 8.1882129, 47.2335222 ], + [ 8.1915818, 47.2340499 ], + [ 8.1949867, 47.2344567 ], + [ 8.1984182, 47.2347415 ], + [ 8.2018669, 47.2349035 ], + [ 8.2053234, 47.2349422 ], + [ 8.2087781, 47.2348575 ], + [ 8.2122215, 47.2346497 ], + [ 8.2156441, 47.2343193 ], + [ 8.2190367, 47.2338673 ], + [ 8.2223898, 47.2332949 ], + [ 8.2256943, 47.2326036 ], + [ 8.228941, 47.2317954 ], + [ 8.232121, 47.2308724 ], + [ 8.2352257, 47.2298373 ], + [ 8.2382464, 47.2286929 ], + [ 8.241175, 47.2274422 ], + [ 8.2440032, 47.2260888 ], + [ 8.2467235, 47.2246363 ], + [ 8.2493284, 47.2230888 ], + [ 8.2518106, 47.2214505 ], + [ 8.2541634, 47.2197259 ], + [ 8.2563803, 47.2179197 ], + [ 8.2584554, 47.2160368 ], + [ 8.2603828, 47.2140826 ], + [ 8.2621573, 47.2120622 ], + [ 8.2637741, 47.2099813 ], + [ 8.2652287, 47.2078456 ], + [ 8.2665172, 47.2056609 ], + [ 8.267636, 47.2034333 ], + [ 8.2685822, 47.2011688 ], + [ 8.2693531, 47.1988736 ], + [ 8.2699466, 47.1965541 ], + [ 8.2703612, 47.1942166 ], + [ 8.2705957, 47.1918675 ], + [ 8.2706495, 47.1895132 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZO001", + "country" : "CHE", + "name" : [ + { + "text" : "LSZO Luzern-Beromünster", + "lang" : "de-CH" + }, + { + "text" : "LSZO Luzern-Beromünster", + "lang" : "fr-CH" + }, + { + "text" : "LSZO Luzern-Beromünster", + "lang" : "it-CH" + }, + { + "text" : "LSZO Luzern-Beromünster", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "FLUBAG Flugbetriebs AG Luzern Beromünster", + "lang" : "de-CH" + }, + { + "text" : "FLUBAG Flugbetriebs AG Luzern Beromünster", + "lang" : "fr-CH" + }, + { + "text" : "FLUBAG Flugbetriebs AG Luzern Beromünster", + "lang" : "it-CH" + }, + { + "text" : "FLUBAG Flugbetriebs AG Luzern Beromünster", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.flubag.ch", + "email" : "flubag@flubag.ch", + "phone" : "0041419301866", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P01DT12H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6420569, 47.3767624 ], + [ 7.6420403, 47.3769932 ], + [ 7.6422482, 47.3770186 ], + [ 7.6424627, 47.3770951 ], + [ 7.6425913, 47.3770748 ], + [ 7.6426586, 47.3770426 ], + [ 7.6427226, 47.3769156 ], + [ 7.6427093, 47.3768609 ], + [ 7.6426590999999995, 47.3767803 ], + [ 7.6427485, 47.3767238 ], + [ 7.6429341, 47.3767979 ], + [ 7.6429314, 47.3769268 ], + [ 7.6429867, 47.3769525 ], + [ 7.6430323, 47.3768786 ], + [ 7.6431146, 47.3768701 ], + [ 7.6433251, 47.3769571 ], + [ 7.6434036, 47.3769934 ], + [ 7.6434195, 47.377004 ], + [ 7.6434280999999995, 47.3770271 ], + [ 7.6434387, 47.3770507 ], + [ 7.6434955, 47.3771212 ], + [ 7.6435265, 47.3771513 ], + [ 7.6435429, 47.3771598 ], + [ 7.6435627, 47.3771632 ], + [ 7.6435792, 47.3771611 ], + [ 7.6436139, 47.377156 ], + [ 7.6437154, 47.3771248 ], + [ 7.6438308, 47.3770954 ], + [ 7.6438359, 47.3771127 ], + [ 7.6438535, 47.37713 ], + [ 7.6438754, 47.3771398 ], + [ 7.6438971, 47.3771412 ], + [ 7.6439215, 47.3771372 ], + [ 7.6439471999999995, 47.3771288 ], + [ 7.6439681, 47.3771161 ], + [ 7.6439839, 47.3771017 ], + [ 7.6439901, 47.3770847 ], + [ 7.6439883, 47.3770701 ], + [ 7.6439775, 47.3770548 ], + [ 7.643957, 47.3770338 ], + [ 7.6438413, 47.3769467 ], + [ 7.6437205, 47.3768719 ], + [ 7.643702, 47.3768643 ], + [ 7.6436774, 47.3768605 ], + [ 7.6436435, 47.376858 ], + [ 7.643601, 47.37686 ], + [ 7.6435617, 47.3768665 ], + [ 7.6435179, 47.376874 ], + [ 7.643498, 47.3768725 ], + [ 7.6434299, 47.3768354 ], + [ 7.6433457, 47.3767832 ], + [ 7.643306, 47.3767661 ], + [ 7.6432707, 47.3767516 ], + [ 7.6432375, 47.3767309 ], + [ 7.6432224, 47.3767147 ], + [ 7.6432124, 47.3766855 ], + [ 7.6432112, 47.3766736 ], + [ 7.6432211, 47.376669 ], + [ 7.6432893, 47.3766687 ], + [ 7.6434197, 47.3766783 ], + [ 7.6434821, 47.3766829 ], + [ 7.6436168, 47.3766839 ], + [ 7.6436854, 47.3766887 ], + [ 7.643776, 47.3767172 ], + [ 7.6438275, 47.3767208 ], + [ 7.643921, 47.3767341 ], + [ 7.6440198, 47.3767586 ], + [ 7.6441249, 47.3767895 ], + [ 7.6441598, 47.3768064 ], + [ 7.6441864, 47.376815 ], + [ 7.6442156, 47.3768184 ], + [ 7.6442374, 47.376819 ], + [ 7.6442906, 47.3768245 ], + [ 7.6443848, 47.3768403 ], + [ 7.6444211, 47.3768473 ], + [ 7.6444447, 47.3768563 ], + [ 7.6444611, 47.3768661 ], + [ 7.6444705, 47.3768832 ], + [ 7.644489, 47.3769044 ], + [ 7.6445162, 47.3769186 ], + [ 7.6445445, 47.3769263 ], + [ 7.6446178, 47.3769286 ], + [ 7.6446815, 47.3769374 ], + [ 7.6447528, 47.3769458 ], + [ 7.6448085, 47.3769485 ], + [ 7.6448841, 47.376947 ], + [ 7.6450519, 47.376937 ], + [ 7.6451404, 47.3769159 ], + [ 7.6453999, 47.3768928 ], + [ 7.6454334, 47.3768914 ], + [ 7.6454705, 47.3768956 ], + [ 7.6456183, 47.3769148 ], + [ 7.6457444, 47.3769361 ], + [ 7.6460467, 47.3769748 ], + [ 7.6462923, 47.3770417 ], + [ 7.6463582, 47.3770699 ], + [ 7.6464043, 47.3770929 ], + [ 7.646483, 47.3771654 ], + [ 7.6465217, 47.3771779 ], + [ 7.6465524, 47.3771776 ], + [ 7.6465773, 47.3771727 ], + [ 7.6465951, 47.3771648 ], + [ 7.6466058, 47.3771509 ], + [ 7.6466072, 47.3771321 ], + [ 7.6466036, 47.3771034 ], + [ 7.6465888, 47.3770631 ], + [ 7.6465668, 47.3770223 ], + [ 7.6465435, 47.3769896 ], + [ 7.6465117, 47.3769618 ], + [ 7.6464731, 47.3769344 ], + [ 7.6464595, 47.3769235 ], + [ 7.6464487, 47.3769117 ], + [ 7.6464441, 47.3768975 ], + [ 7.6464445, 47.3768396 ], + [ 7.6464495, 47.3768215 ], + [ 7.6464613, 47.3768061 ], + [ 7.6464799, 47.3767913 ], + [ 7.6465005, 47.3767828 ], + [ 7.6465281, 47.376776 ], + [ 7.6466001, 47.3767682 ], + [ 7.6466722, 47.3767606 ], + [ 7.646705, 47.376754 ], + [ 7.6467355999999995, 47.3767458 ], + [ 7.6467674, 47.376735 ], + [ 7.6468596, 47.3767044 ], + [ 7.6468798, 47.3767004 ], + [ 7.6469059, 47.3766992 ], + [ 7.6469274, 47.376703 ], + [ 7.6470697, 47.3767699 ], + [ 7.6471244, 47.3767641 ], + [ 7.6471877, 47.3767304 ], + [ 7.6472411000000005, 47.3767066 ], + [ 7.6472779, 47.3766831 ], + [ 7.6472925, 47.3766685 ], + [ 7.6473102, 47.3766435 ], + [ 7.647327, 47.3766081 ], + [ 7.6473419, 47.3765709 ], + [ 7.6473576, 47.3765393 ], + [ 7.6474024, 47.3764914 ], + [ 7.6474133, 47.3764752 ], + [ 7.6474172, 47.3764548 ], + [ 7.647416, 47.376424 ], + [ 7.6474233, 47.3764073 ], + [ 7.6476331, 47.3765771 ], + [ 7.6476669, 47.376603 ], + [ 7.6477006, 47.3766235 ], + [ 7.6477249, 47.3766372 ], + [ 7.6479851, 47.3767344 ], + [ 7.6482813, 47.3768479 ], + [ 7.6483768, 47.3769026 ], + [ 7.6485168, 47.3769584 ], + [ 7.6486426, 47.3770135 ], + [ 7.6487618, 47.3770518 ], + [ 7.6488648999999995, 47.3770825 ], + [ 7.6489545, 47.3771171 ], + [ 7.6490252, 47.3771466 ], + [ 7.64907, 47.377169 ], + [ 7.6491016, 47.3771879 ], + [ 7.6491555, 47.3772088 ], + [ 7.649197, 47.3772186 ], + [ 7.6492497, 47.377226 ], + [ 7.6492939, 47.3772339 ], + [ 7.6493412, 47.3772463 ], + [ 7.649734, 47.3773579 ], + [ 7.6500205999999995, 47.3774551 ], + [ 7.6500976, 47.377475 ], + [ 7.6503148, 47.3775154 ], + [ 7.6504776, 47.3775357 ], + [ 7.6505545, 47.3775479 ], + [ 7.6506327, 47.3775618 ], + [ 7.6506905, 47.377578 ], + [ 7.6507673, 47.3776033 ], + [ 7.65081, 47.3776134 ], + [ 7.6508715, 47.3776255 ], + [ 7.6509471, 47.3776352 ], + [ 7.6510625, 47.3776522 ], + [ 7.6511843, 47.3777022 ], + [ 7.6512051, 47.3777077 ], + [ 7.6512199, 47.3777083 ], + [ 7.6512395, 47.3777047 ], + [ 7.6513699, 47.3776552 ], + [ 7.6515406, 47.3775964 ], + [ 7.6515783, 47.3775854 ], + [ 7.6516468, 47.3775722 ], + [ 7.6516643, 47.377569 ], + [ 7.6516885, 47.3775646 ], + [ 7.6517163, 47.3775582 ], + [ 7.6517634999999995, 47.37754 ], + [ 7.6517745, 47.3775342 ], + [ 7.6517783999999995, 47.3775252 ], + [ 7.6517799, 47.377511 ], + [ 7.6517788, 47.377495 ], + [ 7.6517835, 47.3774838 ], + [ 7.651792, 47.377477999999996 ], + [ 7.6518025, 47.3774755 ], + [ 7.6518166, 47.3774766 ], + [ 7.6518359, 47.3774828 ], + [ 7.6518664, 47.3775028 ], + [ 7.6518934, 47.3775241 ], + [ 7.6518977, 47.3775314 ], + [ 7.6518946, 47.3775388 ], + [ 7.6518728, 47.3775546 ], + [ 7.6518604, 47.3775635 ], + [ 7.6518533, 47.3775727 ], + [ 7.6518534, 47.3775856 ], + [ 7.6518578999999995, 47.3775965 ], + [ 7.6518614, 47.3776004 ], + [ 7.6518668, 47.3776065 ], + [ 7.6518744, 47.3776151 ], + [ 7.6519772, 47.3777051 ], + [ 7.6521855, 47.3779765 ], + [ 7.6522916, 47.3780232 ], + [ 7.6523655999999995, 47.3780581 ], + [ 7.6524447, 47.3781011 ], + [ 7.6524949, 47.3781358 ], + [ 7.6525464, 47.3781794 ], + [ 7.6525759, 47.3781993 ], + [ 7.6525884, 47.3782076 ], + [ 7.6525938, 47.3782095 ], + [ 7.652602, 47.3782124 ], + [ 7.6526111, 47.3782156 ], + [ 7.6526333, 47.3782178 ], + [ 7.6526365, 47.3782172 ], + [ 7.6526501, 47.3782149 ], + [ 7.6526548, 47.3782141 ], + [ 7.6526768, 47.3782033 ], + [ 7.6526905, 47.3781869 ], + [ 7.6526885, 47.3781697 ], + [ 7.6526748, 47.3781356 ], + [ 7.6526084, 47.3780422 ], + [ 7.6525942, 47.3780263 ], + [ 7.6525732, 47.3780101 ], + [ 7.6524964, 47.3779651 ], + [ 7.6524276, 47.3779281 ], + [ 7.652408, 47.3779162 ], + [ 7.6523955, 47.3779045 ], + [ 7.6523883999999995, 47.3778912 ], + [ 7.6523861, 47.3778612 ], + [ 7.6525590999999995, 47.3779163 ], + [ 7.6527825, 47.3779747 ], + [ 7.6528343, 47.3780014 ], + [ 7.6528737, 47.3780179 ], + [ 7.6529136, 47.3780303 ], + [ 7.6530106, 47.3780346 ], + [ 7.6530957, 47.3780541 ], + [ 7.6532255, 47.3780698 ], + [ 7.6532865999999995, 47.3780855 ], + [ 7.6533536, 47.3780937 ], + [ 7.6534089, 47.3780983 ], + [ 7.6534579, 47.3781084 ], + [ 7.6535375, 47.3781164 ], + [ 7.6536583, 47.3781177 ], + [ 7.653787, 47.3781304 ], + [ 7.6540757, 47.3781695 ], + [ 7.6543918, 47.3781897 ], + [ 7.6545311, 47.3782242 ], + [ 7.6546955, 47.3782543 ], + [ 7.6548909, 47.3782732 ], + [ 7.6550205, 47.37829 ], + [ 7.6552045, 47.3783289 ], + [ 7.655309, 47.378341 ], + [ 7.6554774, 47.378379699999996 ], + [ 7.655538, 47.378385 ], + [ 7.6556627, 47.378422 ], + [ 7.6558267, 47.3784459 ], + [ 7.6559287, 47.378466 ], + [ 7.6560349, 47.3784729 ], + [ 7.6562299, 47.3785194 ], + [ 7.6563175, 47.378537 ], + [ 7.6563763, 47.3785514 ], + [ 7.6564193, 47.3785612 ], + [ 7.6564671, 47.3785687 ], + [ 7.6564513, 47.3782873 ], + [ 7.6564136, 47.3782559 ], + [ 7.6571388, 47.3783682 ], + [ 7.6576675, 47.3784018 ], + [ 7.6579713, 47.3784324 ], + [ 7.6584483, 47.3784492 ], + [ 7.6587892, 47.3784361 ], + [ 7.6592177, 47.3784198 ], + [ 7.6599099, 47.3783921 ], + [ 7.660449, 47.3783699 ], + [ 7.6609773, 47.378347 ], + [ 7.6613618, 47.378331 ], + [ 7.6617158, 47.3780345 ], + [ 7.6618359, 47.3778413 ], + [ 7.6619372, 47.3773487 ], + [ 7.6622942, 47.376918 ], + [ 7.6626813, 47.3765682 ], + [ 7.6628006, 47.3763184 ], + [ 7.6630237999999995, 47.3761151 ], + [ 7.6632118, 47.3759821 ], + [ 7.6637494, 47.3757671 ], + [ 7.6638991, 47.3757053 ], + [ 7.6643802, 47.3759602 ], + [ 7.6647593, 47.3761379 ], + [ 7.6652256, 47.3763327 ], + [ 7.6655486, 47.3761986 ], + [ 7.6659821, 47.3761682 ], + [ 7.6663461, 47.37614 ], + [ 7.6665953, 47.3761212 ], + [ 7.6673539, 47.376182 ], + [ 7.6676811, 47.3762789 ], + [ 7.6677154, 47.3763459 ], + [ 7.6679259, 47.3762762 ], + [ 7.6682544, 47.3762001 ], + [ 7.6686582, 47.3760953 ], + [ 7.6689013, 47.3759819 ], + [ 7.6691804999999995, 47.3757927 ], + [ 7.6696174, 47.3757977 ], + [ 7.6699691, 47.3758071 ], + [ 7.6703745, 47.3758336 ], + [ 7.670732, 47.3758473 ], + [ 7.6711219, 47.3759273 ], + [ 7.6714068, 47.3759993 ], + [ 7.6722000999999995, 47.3760292 ], + [ 7.6728622, 47.3760011 ], + [ 7.6732891, 47.3759814 ], + [ 7.6735137, 47.375968 ], + [ 7.6740464, 47.3759268 ], + [ 7.6745451, 47.3758878 ], + [ 7.6750241, 47.3758497 ], + [ 7.6751933999999995, 47.3758583 ], + [ 7.6752337, 47.37553 ], + [ 7.6756366, 47.3754828 ], + [ 7.6757976, 47.3751625 ], + [ 7.6754532, 47.3750769 ], + [ 7.6746776, 47.3749061 ], + [ 7.6738026, 47.3749294 ], + [ 7.673297, 47.3747868 ], + [ 7.6735237, 47.3746106 ], + [ 7.6734595, 47.3744375 ], + [ 7.6732688, 47.3741523 ], + [ 7.6733315, 47.3739996 ], + [ 7.6739738, 47.3740231 ], + [ 7.6746091, 47.374047 ], + [ 7.6748106, 47.3737738 ], + [ 7.6749713, 47.37355 ], + [ 7.6754484, 47.3736871 ], + [ 7.6758713, 47.3737213 ], + [ 7.6763805, 47.3737942 ], + [ 7.6768538, 47.3737865 ], + [ 7.6772562, 47.3737789 ], + [ 7.6775418, 47.3738141 ], + [ 7.6777345, 47.3738831 ], + [ 7.678605, 47.3740826 ], + [ 7.6790863, 47.3741704 ], + [ 7.6800638, 47.3741601 ], + [ 7.680643, 47.3741533 ], + [ 7.6817202, 47.3741881 ], + [ 7.6816852, 47.3738919 ], + [ 7.6817284, 47.3732582 ], + [ 7.6817324, 47.3732038 ], + [ 7.6811988, 47.3731978 ], + [ 7.6806281, 47.3732313 ], + [ 7.6802255, 47.373252 ], + [ 7.6795773, 47.3732305 ], + [ 7.6785461999999995, 47.3732219 ], + [ 7.6784301, 47.373233 ], + [ 7.678318, 47.3728121 ], + [ 7.6783038, 47.3724754 ], + [ 7.6784921, 47.3719055 ], + [ 7.6786666, 47.3714849 ], + [ 7.6787717, 47.3711377 ], + [ 7.678799, 47.371067 ], + [ 7.6788467, 47.3708829 ], + [ 7.6789453, 47.3705009 ], + [ 7.6773032, 47.370275 ], + [ 7.6758745, 47.3700788 ], + [ 7.6743711999999995, 47.3698719 ], + [ 7.6730874, 47.36974 ], + [ 7.6718734, 47.3696161 ], + [ 7.6705897, 47.3694834 ], + [ 7.6692959, 47.3693511 ], + [ 7.6682776, 47.369261 ], + [ 7.6669208, 47.3691129 ], + [ 7.6662396, 47.3690423 ], + [ 7.6654434, 47.3689672 ], + [ 7.6644803, 47.3688769 ], + [ 7.6629086, 47.3687356 ], + [ 7.6615581, 47.3686146 ], + [ 7.6601654, 47.3684892 ], + [ 7.6586107, 47.3683486 ], + [ 7.6572326, 47.36822 ], + [ 7.6556987, 47.3680814 ], + [ 7.6544931, 47.3679975 ], + [ 7.6533217, 47.3679181 ], + [ 7.6523384, 47.3678537 ], + [ 7.6511443, 47.3677547 ], + [ 7.650718, 47.3677205 ], + [ 7.6502607000000005, 47.3676848 ], + [ 7.6495674000000005, 47.3676406 ], + [ 7.6487982, 47.3675901 ], + [ 7.6481387, 47.3675608 ], + [ 7.6472847, 47.3675251 ], + [ 7.6465962, 47.3674584 ], + [ 7.6463898, 47.3674363 ], + [ 7.6455254, 47.3673488 ], + [ 7.6450363, 47.3672962 ], + [ 7.6445423, 47.3672456 ], + [ 7.6442098, 47.3672127 ], + [ 7.6441704999999995, 47.3673694 ], + [ 7.6441695, 47.367374 ], + [ 7.6441571, 47.3674326 ], + [ 7.6440463, 47.3679554 ], + [ 7.6440037, 47.3681675 ], + [ 7.6438547, 47.3688623 ], + [ 7.643803, 47.3691086 ], + [ 7.6438837, 47.3691829 ], + [ 7.6445966, 47.3698395 ], + [ 7.6441066, 47.3706769 ], + [ 7.6438331999999996, 47.3712666 ], + [ 7.6437326, 47.3714854 ], + [ 7.6436397, 47.3716887 ], + [ 7.6433994, 47.3716576 ], + [ 7.6433337, 47.3716491 ], + [ 7.6433163, 47.3719392 ], + [ 7.6431823, 47.372431399999996 ], + [ 7.6430934, 47.372762 ], + [ 7.6430443, 47.3729679 ], + [ 7.6428749, 47.3733158 ], + [ 7.642875, 47.3734084 ], + [ 7.6429034, 47.3737629 ], + [ 7.6429688, 47.3740645 ], + [ 7.6429609, 47.3742094 ], + [ 7.6430312, 47.3744412 ], + [ 7.6430578, 47.3747974 ], + [ 7.6431289, 47.3750957 ], + [ 7.6430084, 47.3753137 ], + [ 7.6431854999999995, 47.3754719 ], + [ 7.6430725, 47.3756192 ], + [ 7.6426742999999995, 47.3761657 ], + [ 7.64243, 47.3763757 ], + [ 7.6422297, 47.3765769 ], + [ 7.6420569, 47.3767624 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns182", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Bogental - Geitenberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Bogental - Geitenberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Bogental - Geitenberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Bogental - Geitenberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.5546022, 46.7345002 ], + [ 6.5545992, 46.7343589 ], + [ 6.5545854, 46.7342179 ], + [ 6.5545608, 46.7340776 ], + [ 6.5545257, 46.7339384 ], + [ 6.55448, 46.7338007 ], + [ 6.5544238, 46.7336648 ], + [ 6.5543574, 46.7335311 ], + [ 6.5542809, 46.7333999 ], + [ 6.5541946, 46.7332717 ], + [ 6.5540986, 46.7331468 ], + [ 6.5539932, 46.7330255 ], + [ 6.5538787, 46.7329082 ], + [ 6.5537555, 46.7327951 ], + [ 6.5536238, 46.7326867 ], + [ 6.553484, 46.7325831 ], + [ 6.5533366, 46.7324847 ], + [ 6.5531818, 46.7323917 ], + [ 6.5530202, 46.7323045 ], + [ 6.5528522, 46.7322231 ], + [ 6.5526782, 46.7321479 ], + [ 6.5524988, 46.7320791 ], + [ 6.5523143, 46.7320169 ], + [ 6.5521253999999995, 46.7319613 ], + [ 6.5519324999999995, 46.7319126 ], + [ 6.5517361, 46.731871 ], + [ 6.5515369, 46.7318365 ], + [ 6.5513353, 46.7318091 ], + [ 6.5511319, 46.7317891 ], + [ 6.5509272, 46.7317764 ], + [ 6.5507219, 46.7317711 ], + [ 6.5505164, 46.7317732 ], + [ 6.5503114, 46.7317827 ], + [ 6.5501074, 46.7317996 ], + [ 6.549905, 46.7318237 ], + [ 6.5497046, 46.7318552 ], + [ 6.549507, 46.7318937 ], + [ 6.5493125, 46.7319394 ], + [ 6.5491218, 46.731992 ], + [ 6.5489353, 46.7320513 ], + [ 6.5487535999999995, 46.7321174 ], + [ 6.5485772, 46.7321898 ], + [ 6.5484066, 46.7322685 ], + [ 6.5482422, 46.7323532 ], + [ 6.5480844000000005, 46.7324438 ], + [ 6.5479337, 46.7325398 ], + [ 6.5477906, 46.7326412 ], + [ 6.5476554, 46.7327476 ], + [ 6.5475285, 46.7328587 ], + [ 6.5474102, 46.7329742 ], + [ 6.5473008, 46.7330938 ], + [ 6.5472007, 46.7332172 ], + [ 6.5471101, 46.733344 ], + [ 6.5470293, 46.733474 ], + [ 6.5469585, 46.7336066 ], + [ 6.5468979, 46.7337416 ], + [ 6.5468477, 46.7338786 ], + [ 6.546808, 46.7340172 ], + [ 6.5467788, 46.7341571 ], + [ 6.5467604, 46.7342978 ], + [ 6.5467527, 46.734439 ], + [ 6.5467557, 46.7345802 ], + [ 6.5467695, 46.7347212 ], + [ 6.546794, 46.7348615 ], + [ 6.5468291, 46.7350007 ], + [ 6.5468748, 46.7351384 ], + [ 6.546931, 46.7352744 ], + [ 6.5469973, 46.7354081 ], + [ 6.5470738, 46.7355392 ], + [ 6.5471602, 46.7356674 ], + [ 6.5472562, 46.7357923 ], + [ 6.5473615, 46.7359136 ], + [ 6.547476, 46.736031 ], + [ 6.5475992, 46.736144 ], + [ 6.5477309, 46.7362525 ], + [ 6.5478707, 46.7363561 ], + [ 6.5480181, 46.7364545 ], + [ 6.5481729, 46.7365475 ], + [ 6.5483345, 46.7366348 ], + [ 6.5485025, 46.7367161 ], + [ 6.5486765, 46.7367913 ], + [ 6.5488558999999995, 46.7368601 ], + [ 6.5490404, 46.7369224 ], + [ 6.5492294, 46.7369779 ], + [ 6.5494223, 46.7370266 ], + [ 6.5496186, 46.7370683 ], + [ 6.5498179, 46.7371028 ], + [ 6.5500195, 46.7371301 ], + [ 6.550223, 46.7371501 ], + [ 6.5504276, 46.7371628 ], + [ 6.5506329999999995, 46.7371681 ], + [ 6.5508385, 46.737166 ], + [ 6.5510435000000005, 46.7371565 ], + [ 6.5512475, 46.7371397 ], + [ 6.55145, 46.7371155 ], + [ 6.5516504, 46.7370841 ], + [ 6.5518481, 46.7370455 ], + [ 6.5520425, 46.7369998 ], + [ 6.5522333, 46.7369473 ], + [ 6.5524197, 46.7368879 ], + [ 6.5526014, 46.7368219 ], + [ 6.5527779, 46.7367494 ], + [ 6.5529485, 46.7366707 ], + [ 6.5531129, 46.736586 ], + [ 6.5532707, 46.7364954 ], + [ 6.5534213999999995, 46.7363994 ], + [ 6.5535645, 46.736298 ], + [ 6.5536997, 46.7361916 ], + [ 6.5538266, 46.7360805 ], + [ 6.5539449, 46.7359649 ], + [ 6.5540543, 46.7358453 ], + [ 6.5541544, 46.7357219 ], + [ 6.5542449, 46.7355951 ], + [ 6.5543257, 46.7354652 ], + [ 6.5543965, 46.7353325 ], + [ 6.5544571, 46.7351975 ], + [ 6.5545073, 46.7350605 ], + [ 6.554547, 46.7349219 ], + [ 6.5545761, 46.7347821 ], + [ 6.5545945, 46.7346413 ], + [ 6.5546022, 46.7345002 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "EPO0001", + "country" : "CHE", + "name" : [ + { + "text" : "Etablissements de la Plaine de l'Orbe", + "lang" : "de-CH" + }, + { + "text" : "Etablissements de la Plaine de l'Orbe", + "lang" : "fr-CH" + }, + { + "text" : "Etablissements de la Plaine de l'Orbe", + "lang" : "it-CH" + }, + { + "text" : "Etablissements de la Plaine de l'Orbe", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Direction du Service pénitentiaire Vaud", + "lang" : "de-CH" + }, + { + "text" : "Direction du Service pénitentiaire Vaud", + "lang" : "fr-CH" + }, + { + "text" : "Direction du Service pénitentiaire Vaud", + "lang" : "it-CH" + }, + { + "text" : "Direction du Service pénitentiaire Vaud", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/toutes-les-autorites/departements/departement-de-la-jeunesse-de-lenvironnement-et-de-la-securite-djes/service-penitentiaire-spen/", + "email" : "info.spen@vd.ch", + "phone" : "0041213164801", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6740518, 47.5845524 ], + [ 7.6740835, 47.5845111 ], + [ 7.6861372, 47.5688284 ], + [ 7.6853787, 47.5664102 ], + [ 7.6853527, 47.5663437 ], + [ 7.6837628, 47.5683562 ], + [ 7.6834299, 47.568426 ], + [ 7.6835367, 47.569213 ], + [ 7.6835846, 47.5696202 ], + [ 7.6837234, 47.5705397 ], + [ 7.6835091, 47.5712583 ], + [ 7.6810312, 47.5704373 ], + [ 7.6791103, 47.5695047 ], + [ 7.6784499, 47.5689662 ], + [ 7.6776907, 47.5678107 ], + [ 7.6767525, 47.5669884 ], + [ 7.6757048999999995, 47.5659411 ], + [ 7.675153, 47.5654273 ], + [ 7.6772884, 47.5649378 ], + [ 7.6773248, 47.5637496 ], + [ 7.6756235, 47.5634856 ], + [ 7.6744619, 47.5634607 ], + [ 7.6724571, 47.56373 ], + [ 7.6723179, 47.565007 ], + [ 7.6723684, 47.5654448 ], + [ 7.6707079, 47.5658194 ], + [ 7.6702274, 47.5658367 ], + [ 7.6694721999999995, 47.5656665 ], + [ 7.6674949, 47.5653095 ], + [ 7.6661216, 47.5651403 ], + [ 7.6655579, 47.565065 ], + [ 7.6642348, 47.5654038 ], + [ 7.662281, 47.565069 ], + [ 7.6607454, 47.5647994 ], + [ 7.6587596, 47.5644824 ], + [ 7.6578998, 47.5638685 ], + [ 7.6567642, 47.5631341 ], + [ 7.6561637000000005, 47.5622833 ], + [ 7.6545441, 47.5623718 ], + [ 7.6527939, 47.5618374 ], + [ 7.6526504, 47.5617824 ], + [ 7.6503568, 47.5609023 ], + [ 7.6482841, 47.5599364 ], + [ 7.6465121, 47.5605019 ], + [ 7.6460728, 47.5607223 ], + [ 7.6440578, 47.5612897 ], + [ 7.6412671, 47.5612696 ], + [ 7.6401012999999995, 47.5620044 ], + [ 7.6383384, 47.5632316 ], + [ 7.6361267999999995, 47.5639226 ], + [ 7.6339646, 47.5612292 ], + [ 7.6339443, 47.5612039 ], + [ 7.6342716, 47.5611269 ], + [ 7.634595, 47.5610427 ], + [ 7.6349142, 47.5609514 ], + [ 7.6352288, 47.5608531 ], + [ 7.6355385, 47.5607479 ], + [ 7.6358429999999995, 47.5606359 ], + [ 7.6361419999999995, 47.5605173 ], + [ 7.636435, 47.5603921 ], + [ 7.6367218999999995, 47.5602606 ], + [ 7.6370023, 47.5601227 ], + [ 7.6372759, 47.5599788 ], + [ 7.6375424, 47.5598289 ], + [ 7.6378015999999995, 47.5596732 ], + [ 7.6380531, 47.5595119 ], + [ 7.6382967, 47.5593451 ], + [ 7.6385322, 47.559173 ], + [ 7.6403748, 47.5577814 ], + [ 7.6407167, 47.5575145 ], + [ 7.6410456, 47.5572402 ], + [ 7.6413609000000005, 47.5569587 ], + [ 7.6416626, 47.5566704 ], + [ 7.6419501, 47.5563755 ], + [ 7.6422231, 47.5560745 ], + [ 7.6447042, 47.553236 ], + [ 7.6449757, 47.552918 ], + [ 7.6452376, 47.552596199999996 ], + [ 7.6454897, 47.552271 ], + [ 7.6457319, 47.5519423 ], + [ 7.6459204, 47.5516798 ], + [ 7.6465321, 47.5508282 ], + [ 7.6466758, 47.5506341 ], + [ 7.6468264, 47.5504424 ], + [ 7.6469838, 47.5502532 ], + [ 7.6471479, 47.5500667 ], + [ 7.6473186, 47.5498828 ], + [ 7.6474958, 47.5497018 ], + [ 7.6476794, 47.5495238 ], + [ 7.6478693, 47.5493488 ], + [ 7.6480654, 47.549177 ], + [ 7.6482675, 47.5490084 ], + [ 7.6484756, 47.5488432 ], + [ 7.6486896, 47.5486814 ], + [ 7.6489092, 47.5485232 ], + [ 7.6491344, 47.5483686 ], + [ 7.6493651, 47.5482177 ], + [ 7.649601, 47.5480706 ], + [ 7.6499456, 47.547861 ], + [ 7.6501296, 47.5477527 ], + [ 7.6503186, 47.5476487 ], + [ 7.6505126, 47.5475488 ], + [ 7.6507113, 47.5474533 ], + [ 7.6509145, 47.5473623 ], + [ 7.651122, 47.5472758 ], + [ 7.6513335, 47.5471939 ], + [ 7.651549, 47.5471168 ], + [ 7.6519011, 47.5470035 ], + [ 7.6522614, 47.5469029 ], + [ 7.6526291, 47.5468151 ], + [ 7.6530031, 47.5467405 ], + [ 7.6533823, 47.5466793 ], + [ 7.6590424, 47.5458709 ], + [ 7.6592778, 47.5458318 ], + [ 7.6595089, 47.5457824 ], + [ 7.6597348, 47.5457229 ], + [ 7.6599544999999996, 47.5456536 ], + [ 7.6601669999999995, 47.5455747 ], + [ 7.6603715, 47.5454867 ], + [ 7.6605671, 47.5453898 ], + [ 7.660753, 47.5452845 ], + [ 7.6609283999999995, 47.5451712 ], + [ 7.6610924, 47.5450504 ], + [ 7.6612445000000005, 47.5449227 ], + [ 7.661384, 47.5447885 ], + [ 7.6615103, 47.5446484 ], + [ 7.6616228, 47.5445031 ], + [ 7.6617212, 47.5443532 ], + [ 7.6618049, 47.5441992 ], + [ 7.6639951, 47.5397243 ], + [ 7.6641632, 47.5394085 ], + [ 7.6643552, 47.539099 ], + [ 7.6645706, 47.5387967 ], + [ 7.6648089, 47.5385023 ], + [ 7.6650694, 47.5382167 ], + [ 7.6653514, 47.5379406 ], + [ 7.6656542, 47.5376748 ], + [ 7.6659769, 47.53742 ], + [ 7.6674302, 47.5363306 ], + [ 7.6677243, 47.5361225 ], + [ 7.6678809999999995, 47.5360236 ], + [ 7.6678198, 47.5359451 ], + [ 7.6678187, 47.5359456 ], + [ 7.6609827, 47.5286175 ], + [ 7.6533052999999995, 47.5216827 ], + [ 7.6448359, 47.5151853 ], + [ 7.6356286, 47.5091669 ], + [ 7.6257424, 47.5036657 ], + [ 7.6152407, 47.498717 ], + [ 7.6041905, 47.4943522 ], + [ 7.5926623, 47.4905991 ], + [ 7.5807296, 47.4874817 ], + [ 7.5684686, 47.4850197 ], + [ 7.5559573, 47.483229 ], + [ 7.5432754, 47.4821209 ], + [ 7.5305038, 47.4817024 ], + [ 7.5177236, 47.4819762 ], + [ 7.5050162, 47.4829406 ], + [ 7.4924626, 47.4845894 ], + [ 7.4916662, 47.4847396 ], + [ 7.4921882, 47.4854732 ], + [ 7.4925877, 47.4862365 ], + [ 7.4930283, 47.4870782 ], + [ 7.4933457, 47.4877992 ], + [ 7.4934703, 47.4880822 ], + [ 7.4935567, 47.4881699 ], + [ 7.4937994, 47.4884162 ], + [ 7.4940733999999996, 47.4884452 ], + [ 7.4946963, 47.4885466 ], + [ 7.4950523, 47.4885247 ], + [ 7.4955826, 47.4886147 ], + [ 7.4959256, 47.4886852 ], + [ 7.4965292, 47.4888319 ], + [ 7.496848, 47.4889857 ], + [ 7.4980982, 47.4889399 ], + [ 7.4981935, 47.4893862 ], + [ 7.498464, 47.4897982 ], + [ 7.4987124, 47.4898516 ], + [ 7.4988128, 47.4900781 ], + [ 7.4988876, 47.4901604 ], + [ 7.4994718, 47.4905434 ], + [ 7.499672, 47.4907195 ], + [ 7.499815, 47.490863 ], + [ 7.4999462999999995, 47.4910212 ], + [ 7.5010141, 47.4908508 ], + [ 7.5011712, 47.4905453 ], + [ 7.5024548, 47.4907742 ], + [ 7.5011436, 47.4935199 ], + [ 7.5018604, 47.493793 ], + [ 7.5042133, 47.4948512 ], + [ 7.5052406, 47.4954005 ], + [ 7.506673, 47.4959354 ], + [ 7.508414, 47.4964489 ], + [ 7.510946, 47.4969586 ], + [ 7.5110727, 47.4970317 ], + [ 7.5104609, 47.4983808 ], + [ 7.5099243, 47.4995394 ], + [ 7.509629, 47.5000917 ], + [ 7.5092993, 47.5007613 ], + [ 7.5087607, 47.5023472 ], + [ 7.5096466, 47.5025124 ], + [ 7.5104518, 47.5026325 ], + [ 7.5099463, 47.5049125 ], + [ 7.5103058, 47.5059926 ], + [ 7.5097935, 47.5072532 ], + [ 7.5096783, 47.5077149 ], + [ 7.5095446, 47.5081996 ], + [ 7.5093542, 47.5088899 ], + [ 7.5090552, 47.5092088 ], + [ 7.508301, 47.5100668 ], + [ 7.5079167, 47.5108173 ], + [ 7.5069115, 47.511075 ], + [ 7.5058942, 47.5113465 ], + [ 7.5039265, 47.5127014 ], + [ 7.5030887, 47.5139932 ], + [ 7.5022887, 47.5142902 ], + [ 7.5008991, 47.5148133 ], + [ 7.499088, 47.5162832 ], + [ 7.4985365, 47.518215 ], + [ 7.4982178, 47.5195208 ], + [ 7.4980409, 47.5203853 ], + [ 7.497876, 47.5212528 ], + [ 7.4985567, 47.5211284 ], + [ 7.4997583, 47.5205769 ], + [ 7.500795, 47.5187461 ], + [ 7.5012541, 47.5178302 ], + [ 7.5017028, 47.5169159 ], + [ 7.5025372, 47.5157162 ], + [ 7.5020432, 47.5154412 ], + [ 7.5022836999999996, 47.5149117 ], + [ 7.5044352, 47.5149146 ], + [ 7.5054647, 47.5146602 ], + [ 7.5063401, 47.5152431 ], + [ 7.508842, 47.5161849 ], + [ 7.5113023, 47.5170275 ], + [ 7.5123961999999995, 47.5171971 ], + [ 7.5136503999999995, 47.5173345 ], + [ 7.5148817999999995, 47.5173731 ], + [ 7.517465, 47.5172861 ], + [ 7.5176921, 47.5166459 ], + [ 7.5179808999999995, 47.5160863 ], + [ 7.518344, 47.5155958 ], + [ 7.5190847, 47.5148183 ], + [ 7.5207445, 47.5157238 ], + [ 7.5212468, 47.5147557 ], + [ 7.5221918, 47.5142011 ], + [ 7.5228509, 47.5144438 ], + [ 7.5237338000000005, 47.5153393 ], + [ 7.5237093999999995, 47.5164651 ], + [ 7.5236959, 47.5175871 ], + [ 7.5234616, 47.5186762 ], + [ 7.5246401, 47.5198347 ], + [ 7.5275888, 47.5217563 ], + [ 7.5281718, 47.5227141 ], + [ 7.5287641, 47.5237938 ], + [ 7.529693, 47.5251607 ], + [ 7.5309447, 47.5268387 ], + [ 7.5312309, 47.528164 ], + [ 7.5309618, 47.5290504 ], + [ 7.5304895, 47.5297648 ], + [ 7.5297627, 47.5306834 ], + [ 7.5279837, 47.5317737 ], + [ 7.5275692, 47.5321633 ], + [ 7.5267844, 47.5328811 ], + [ 7.5267459, 47.5328797 ], + [ 7.5266843, 47.5328708 ], + [ 7.5266266, 47.5328718 ], + [ 7.526576, 47.5328605 ], + [ 7.5265076, 47.5328364 ], + [ 7.5264578, 47.5327963 ], + [ 7.5263966, 47.5327656 ], + [ 7.5263316, 47.5327445 ], + [ 7.5262851, 47.5327058 ], + [ 7.5261881, 47.5326537 ], + [ 7.5261586, 47.5326435 ], + [ 7.5260576, 47.532584 ], + [ 7.5259897, 47.5325615 ], + [ 7.5259545, 47.5324631 ], + [ 7.5258942, 47.5324253 ], + [ 7.5258725, 47.5323906 ], + [ 7.5257877, 47.5323401 ], + [ 7.5256654, 47.5322826 ], + [ 7.5256289, 47.53221 ], + [ 7.5256001, 47.5322007 ], + [ 7.5255664, 47.5322064 ], + [ 7.5254593, 47.5321808 ], + [ 7.5254173, 47.5321671 ], + [ 7.5253027, 47.5321497 ], + [ 7.5252739, 47.532161 ], + [ 7.5251795, 47.5321436 ], + [ 7.525158, 47.5321501 ], + [ 7.5251177, 47.5321831 ], + [ 7.5250829, 47.5321636 ], + [ 7.5250454, 47.5321315 ], + [ 7.5249983, 47.5321196 ], + [ 7.5249752999999995, 47.5320948 ], + [ 7.5249326, 47.5320953 ], + [ 7.5248974, 47.5320792 ], + [ 7.5248337, 47.532074 ], + [ 7.5246604, 47.5319743 ], + [ 7.5246022, 47.5319306 ], + [ 7.5245235, 47.5319214 ], + [ 7.5244882, 47.5318819 ], + [ 7.5244213, 47.531883 ], + [ 7.5244043, 47.5318652 ], + [ 7.5211492, 47.5338704 ], + [ 7.5193596, 47.534723 ], + [ 7.5177311, 47.5340549 ], + [ 7.5157988, 47.5329516 ], + [ 7.5157861, 47.5329384 ], + [ 7.5142962, 47.5313723 ], + [ 7.5127355, 47.5307995 ], + [ 7.5126739, 47.5304808 ], + [ 7.5107578, 47.528995 ], + [ 7.5082131, 47.5281656 ], + [ 7.5076771, 47.5281231 ], + [ 7.5063866, 47.5286055 ], + [ 7.5051002, 47.5290275 ], + [ 7.5045697, 47.5288875 ], + [ 7.5023042, 47.5284098 ], + [ 7.5010153, 47.5290598 ], + [ 7.5005246, 47.5301374 ], + [ 7.5014441, 47.5321775 ], + [ 7.5004212, 47.5339066 ], + [ 7.4996614, 47.5350365 ], + [ 7.4992386, 47.5353277 ], + [ 7.4980440999999995, 47.5361575 ], + [ 7.4985365999999996, 47.5372004 ], + [ 7.4995037, 47.539273 ], + [ 7.4991807, 47.5401179 ], + [ 7.4992924, 47.5401435 ], + [ 7.4994238, 47.5401852 ], + [ 7.4994667, 47.5401784 ], + [ 7.499488, 47.5401468 ], + [ 7.4995199, 47.5401198 ], + [ 7.4995729, 47.5400978 ], + [ 7.4997027, 47.5400771 ], + [ 7.4997869, 47.5400767 ], + [ 7.5000806, 47.5401267 ], + [ 7.5002447, 47.540218 ], + [ 7.5002901, 47.5402333 ], + [ 7.5003228, 47.5402698 ], + [ 7.5003417, 47.5403586 ], + [ 7.5003421, 47.5404326 ], + [ 7.5003885, 47.5404926 ], + [ 7.5004674, 47.54054 ], + [ 7.5007096, 47.5406232 ], + [ 7.5007791, 47.5406805 ], + [ 7.5008669, 47.5408381 ], + [ 7.5009122999999995, 47.5408867 ], + [ 7.501067, 47.5409252 ], + [ 7.5011229, 47.5409536 ], + [ 7.5011317, 47.5410451 ], + [ 7.5011085, 47.5411122 ], + [ 7.5013162, 47.5412166 ], + [ 7.5014378, 47.5412509 ], + [ 7.5016428, 47.5413458 ], + [ 7.5016808, 47.5413673 ], + [ 7.5017162, 47.5413975 ], + [ 7.5017278, 47.5414228 ], + [ 7.5018233, 47.5414965 ], + [ 7.5019247, 47.5415579 ], + [ 7.5020345, 47.5415872 ], + [ 7.5021748, 47.5415894 ], + [ 7.502224, 47.5416028 ], + [ 7.5022267, 47.5416512 ], + [ 7.5021945, 47.5416554 ], + [ 7.5021766, 47.5416701 ], + [ 7.5022011, 47.5417369 ], + [ 7.5022767, 47.5417866 ], + [ 7.5025061, 47.5418453 ], + [ 7.5026373, 47.54187 ], + [ 7.5026725, 47.5418903 ], + [ 7.5026781, 47.5419256 ], + [ 7.5027679, 47.5420313 ], + [ 7.5027781000000004, 47.542086 ], + [ 7.5027419, 47.5421221 ], + [ 7.5027497, 47.542187 ], + [ 7.5027907, 47.5422262 ], + [ 7.5028212, 47.5422861 ], + [ 7.5028908, 47.5423361 ], + [ 7.5029361, 47.5423818 ], + [ 7.5029918, 47.5424089 ], + [ 7.5030597, 47.542434 ], + [ 7.5031901, 47.5424224 ], + [ 7.5032778, 47.5424419 ], + [ 7.5035176, 47.5425978 ], + [ 7.503707, 47.5426688 ], + [ 7.5039031, 47.5427805 ], + [ 7.5039518, 47.542873900000004 ], + [ 7.5039818, 47.5429203 ], + [ 7.5041053, 47.5429772 ], + [ 7.5042676, 47.5430316 ], + [ 7.5042313, 47.5431029 ], + [ 7.5041814, 47.5431266 ], + [ 7.5041652, 47.5431474 ], + [ 7.5041071, 47.5432599 ], + [ 7.5041009, 47.5433031 ], + [ 7.5041275, 47.5433479 ], + [ 7.5041842, 47.5433748 ], + [ 7.5042344, 47.5434119 ], + [ 7.5042704, 47.5434531 ], + [ 7.5042495, 47.5434817 ], + [ 7.5042521, 47.5435033 ], + [ 7.5042916, 47.5435169 ], + [ 7.5043343, 47.5435555 ], + [ 7.5044531, 47.543597 ], + [ 7.5045477, 47.5436168 ], + [ 7.5045634, 47.5436411 ], + [ 7.5045462, 47.543706 ], + [ 7.5045987, 47.5437374 ], + [ 7.5046641, 47.5437531 ], + [ 7.5048821, 47.5438243 ], + [ 7.504948, 47.5438571 ], + [ 7.5050801, 47.5439694 ], + [ 7.5050258, 47.5440034 ], + [ 7.5050278, 47.5440483 ], + [ 7.5051053, 47.5440953 ], + [ 7.5052672000000005, 47.544203 ], + [ 7.5053425, 47.5442226 ], + [ 7.5053928, 47.5442426 ], + [ 7.5053855, 47.5443286 ], + [ 7.5054605, 47.5443873 ], + [ 7.5055635, 47.5443979 ], + [ 7.5056503, 47.5444397 ], + [ 7.5056907, 47.5444654 ], + [ 7.5059367, 47.5445162 ], + [ 7.5059769, 47.5445811 ], + [ 7.5060364, 47.544639 ], + [ 7.5062639, 47.5447319 ], + [ 7.5064136, 47.5447663 ], + [ 7.5066118, 47.5447973 ], + [ 7.5067196, 47.5447875 ], + [ 7.506989, 47.5448056 ], + [ 7.5070392, 47.5448603 ], + [ 7.5071962, 47.5449345 ], + [ 7.5073256, 47.5449818 ], + [ 7.5074183, 47.5450402 ], + [ 7.5075017, 47.5450526 ], + [ 7.5075426, 47.5449798 ], + [ 7.5075484, 47.5449337 ], + [ 7.5076015, 47.5449183 ], + [ 7.5076368, 47.5448925 ], + [ 7.5077004, 47.5448773 ], + [ 7.5079065, 47.5448886 ], + [ 7.5079975999999995, 47.5449786 ], + [ 7.5080825, 47.5450297 ], + [ 7.5082074, 47.5450502 ], + [ 7.5082643000000004, 47.5450495 ], + [ 7.5083513, 47.5450615 ], + [ 7.5085065, 47.5450544 ], + [ 7.5085568, 47.545061 ], + [ 7.5086434, 47.5451174 ], + [ 7.5087015, 47.5451805 ], + [ 7.508709, 47.5452058 ], + [ 7.5087503, 47.5452418 ], + [ 7.5089778, 47.5452771 ], + [ 7.5090326, 47.5452916 ], + [ 7.5090908, 47.5453268 ], + [ 7.5092219, 47.5454622 ], + [ 7.5092327, 47.5455137 ], + [ 7.5092267, 47.5455862 ], + [ 7.5092322, 47.5456117 ], + [ 7.5092812, 47.5457085 ], + [ 7.5092780999999995, 47.5457304 ], + [ 7.5093461999999995, 47.5458394 ], + [ 7.5098338, 47.5453869 ], + [ 7.5109814, 47.5445121 ], + [ 7.5113059, 47.544566 ], + [ 7.5140095, 47.5450522 ], + [ 7.5167641, 47.5454136 ], + [ 7.5188629, 47.5463403 ], + [ 7.5222681, 47.5487063 ], + [ 7.5219049, 47.548927 ], + [ 7.5254286, 47.5509147 ], + [ 7.5247977, 47.5514779 ], + [ 7.5273233, 47.5527843 ], + [ 7.52962, 47.5536976 ], + [ 7.5307908, 47.5540596 ], + [ 7.5307094, 47.5542033 ], + [ 7.5331226000000004, 47.5547059 ], + [ 7.5342618, 47.5549432 ], + [ 7.5350106, 47.555113 ], + [ 7.5365298, 47.5554575 ], + [ 7.5379603, 47.5566494 ], + [ 7.539491, 47.5580031 ], + [ 7.5403671, 47.5572774 ], + [ 7.5438097, 47.5595871 ], + [ 7.5468618, 47.5614991 ], + [ 7.5496966, 47.5624241 ], + [ 7.5546595, 47.5643666 ], + [ 7.5572997, 47.5650307 ], + [ 7.5582650000000005, 47.5672471 ], + [ 7.5593353, 47.5693894 ], + [ 7.5564642, 47.5713871 ], + [ 7.5568956, 47.5724659 ], + [ 7.5624082, 47.5748755 ], + [ 7.5654375, 47.5762202 ], + [ 7.5664902, 47.5776694 ], + [ 7.5690791, 47.5774147 ], + [ 7.5716147, 47.5771124 ], + [ 7.5752538, 47.5761401 ], + [ 7.5764032, 47.576454 ], + [ 7.5788585, 47.5766687 ], + [ 7.5807642, 47.5762962 ], + [ 7.5846599, 47.5755212 ], + [ 7.5843971, 47.5785818 ], + [ 7.5847394, 47.5808568 ], + [ 7.5857254, 47.5840902 ], + [ 7.5869704, 47.5865515 ], + [ 7.5882543, 47.588521 ], + [ 7.5890451, 47.5899018 ], + [ 7.5931714, 47.5889797 ], + [ 7.5984685, 47.5876436 ], + [ 7.6019749999999995, 47.586146 ], + [ 7.6048224, 47.5849348 ], + [ 7.604586, 47.5828148 ], + [ 7.6040606, 47.5813388 ], + [ 7.6044691, 47.5812992 ], + [ 7.6047005, 47.5811761 ], + [ 7.6047687, 47.5804091 ], + [ 7.605339, 47.579888 ], + [ 7.6048884999999995, 47.5778789 ], + [ 7.6078589, 47.5781013 ], + [ 7.6094177, 47.5781859 ], + [ 7.6113252, 47.5781827 ], + [ 7.6132115, 47.5781612 ], + [ 7.6149813, 47.577998 ], + [ 7.6167153, 47.5776847 ], + [ 7.6191423, 47.5768749 ], + [ 7.6206029, 47.5775644 ], + [ 7.6223957, 47.5783608 ], + [ 7.6239583, 47.5791648 ], + [ 7.6245533, 47.5794211 ], + [ 7.625014, 47.5796196 ], + [ 7.6264436, 47.5804061 ], + [ 7.6280286, 47.5813702 ], + [ 7.6296149, 47.5825138 ], + [ 7.6311075, 47.5836546 ], + [ 7.632622, 47.5847831 ], + [ 7.6341102, 47.5858632 ], + [ 7.6348711, 47.5867725 ], + [ 7.6356338, 47.5875861 ], + [ 7.6364444, 47.5883771 ], + [ 7.6396376, 47.59037 ], + [ 7.6432475, 47.5913464 ], + [ 7.6418646, 47.5929128 ], + [ 7.641791, 47.594197199999996 ], + [ 7.6430536, 47.5950505 ], + [ 7.6444127, 47.5957457 ], + [ 7.6456773, 47.596961 ], + [ 7.6490224, 47.5962312 ], + [ 7.6510644, 47.5957223 ], + [ 7.6550724, 47.5954012 ], + [ 7.6616978, 47.593708 ], + [ 7.6646278, 47.5926712 ], + [ 7.6673378, 47.5919514 ], + [ 7.6683688, 47.5919427 ], + [ 7.66838, 47.5919281 ], + [ 7.6718807, 47.587376 ], + [ 7.6718872000000005, 47.5873675 ], + [ 7.6717499, 47.5872757 ], + [ 7.6720771, 47.5852449 ], + [ 7.6740518, 47.5845524 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 120, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "CTR0016", + "country" : "CHE", + "name" : [ + { + "text" : "CTR BALE", + "lang" : "de-CH" + }, + { + "text" : "CTR BALE", + "lang" : "fr-CH" + }, + { + "text" : "CTR BALE", + "lang" : "it-CH" + }, + { + "text" : "CTR BALE", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only permitted from an altitude of 120 m above ground with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Direction générale de l'aviation civile (DGAC)", + "lang" : "de-CH" + }, + { + "text" : "Direction générale de l'aviation civile (DGAC)", + "lang" : "fr-CH" + }, + { + "text" : "Direction générale de l'aviation civile (DGAC)", + "lang" : "it-CH" + }, + { + "text" : "French Civil Aviation Authority (DGAC)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "DGAC SUBDIVISION CONTRÔLE Bâle-Mulhouse", + "lang" : "de-CH" + }, + { + "text" : "DGAC SUBDIVISION CONTRÔLE Bâle-Mulhouse", + "lang" : "fr-CH" + }, + { + "text" : "DGAC SUBDIVISION CONTRÔLE Bâle-Mulhouse", + "lang" : "it-CH" + }, + { + "text" : "DGAC ATC OPERATIONS UNIT Bâle-Mulhouse", + "lang" : "en-GB" + } + ], + "siteURL" : "https://app.clearance.aero", + "email" : "bale.atm-procedures@aviation-civile.gouv.fr", + "phone" : "0033389907875", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4785176, 47.4327547 ], + [ 7.4785467, 47.4326274 ], + [ 7.4786823, 47.4326378 ], + [ 7.4790531, 47.4326638 ], + [ 7.4791679, 47.4326736 ], + [ 7.4791904, 47.4325212 ], + [ 7.4791991, 47.4324623 ], + [ 7.4792921, 47.432126 ], + [ 7.4795748, 47.4314471 ], + [ 7.4796534, 47.4312583 ], + [ 7.4797358, 47.4312084 ], + [ 7.4797027, 47.4312157 ], + [ 7.4797004, 47.43122 ], + [ 7.4795659, 47.4312516 ], + [ 7.4794502, 47.4312787 ], + [ 7.4794107, 47.4311883 ], + [ 7.4794086, 47.4311879 ], + [ 7.4793796, 47.4311849 ], + [ 7.4793503999999995, 47.4311837 ], + [ 7.4793212, 47.4311841 ], + [ 7.4792921, 47.4311863 ], + [ 7.4792634, 47.4311902 ], + [ 7.4788989, 47.4312509 ], + [ 7.4789459, 47.4313405 ], + [ 7.4784551, 47.4314588 ], + [ 7.4783975, 47.4313479 ], + [ 7.4782439, 47.4313852 ], + [ 7.4781902, 47.4313979 ], + [ 7.4781409, 47.4314087 ], + [ 7.478196, 47.4315213 ], + [ 7.4778061, 47.4316153 ], + [ 7.4776861, 47.4316295 ], + [ 7.4773912, 47.4316645 ], + [ 7.4767804, 47.4317369 ], + [ 7.4761142, 47.4318268 ], + [ 7.4759504, 47.4318492 ], + [ 7.4754818, 47.4320109 ], + [ 7.4751785, 47.4321156 ], + [ 7.4736869, 47.4323231 ], + [ 7.4736218, 47.4322828 ], + [ 7.4736108, 47.4322022 ], + [ 7.4736075, 47.4322001 ], + [ 7.4735416, 47.4322028 ], + [ 7.4735188, 47.4322309 ], + [ 7.4735118, 47.432274 ], + [ 7.4734931, 47.4322868 ], + [ 7.4734863, 47.4322916 ], + [ 7.4730143, 47.432611 ], + [ 7.4726582, 47.4328586 ], + [ 7.4723063, 47.4331044 ], + [ 7.4722445, 47.4331423 ], + [ 7.4724661, 47.433294599999996 ], + [ 7.4723204, 47.4333922 ], + [ 7.4716716, 47.4339239 ], + [ 7.4716183, 47.4340411 ], + [ 7.4714279999999995, 47.4344585 ], + [ 7.4713452, 47.434657 ], + [ 7.4711478, 47.4351305 ], + [ 7.4711136, 47.4352125 ], + [ 7.4705625, 47.4356128 ], + [ 7.4704859, 47.4356684 ], + [ 7.4704843, 47.4356806 ], + [ 7.4702778, 47.4360478 ], + [ 7.4702245, 47.4361425 ], + [ 7.4700756, 47.4363105 ], + [ 7.4699039, 47.4365138 ], + [ 7.4699039, 47.4365254 ], + [ 7.4699102, 47.4365789 ], + [ 7.4699595, 47.4369227 ], + [ 7.4707539, 47.4369811 ], + [ 7.4707947, 47.4369839 ], + [ 7.4708004, 47.4369731 ], + [ 7.4708158, 47.43695 ], + [ 7.4708341, 47.436928 ], + [ 7.4708887, 47.4368735 ], + [ 7.4709498, 47.4368223 ], + [ 7.471017, 47.4367748 ], + [ 7.4710898, 47.4367313 ], + [ 7.4711651, 47.4366934 ], + [ 7.4712174, 47.4367163 ], + [ 7.4712546, 47.4367316 ], + [ 7.4712664, 47.4367356 ], + [ 7.4713111, 47.4367462 ], + [ 7.4713667, 47.4367663 ], + [ 7.4714224, 47.4367865 ], + [ 7.4714833, 47.436808 ], + [ 7.471491, 47.4368108 ], + [ 7.4715378999999995, 47.4368321 ], + [ 7.4715804, 47.4368467 ], + [ 7.4716415, 47.436862 ], + [ 7.4717431, 47.4369029 ], + [ 7.4717644, 47.4369157 ], + [ 7.4718097, 47.4369372 ], + [ 7.4718682, 47.4369523 ], + [ 7.4719215, 47.4369657 ], + [ 7.4720414, 47.4369893 ], + [ 7.4721267, 47.436854 ], + [ 7.4724349, 47.4366703 ], + [ 7.4730562, 47.4364093 ], + [ 7.4734641, 47.4363995 ], + [ 7.4736823, 47.4363157 ], + [ 7.4738241, 47.4360031 ], + [ 7.473682, 47.4359162 ], + [ 7.4739226, 47.4356305 ], + [ 7.4739461, 47.4356001 ], + [ 7.4739672, 47.4355664 ], + [ 7.4739837, 47.4355328 ], + [ 7.4742697, 47.4348645 ], + [ 7.4743054, 47.4347922 ], + [ 7.4743499, 47.4347222 ], + [ 7.4744028, 47.4346549 ], + [ 7.4745308999999995, 47.4345068 ], + [ 7.4746239, 47.4344093 ], + [ 7.4747292, 47.4343178 ], + [ 7.474846, 47.4342329 ], + [ 7.4749072, 47.4342081 ], + [ 7.4749424, 47.4341964 ], + [ 7.4749523, 47.4341931 ], + [ 7.4749663, 47.4341481 ], + [ 7.4749923, 47.4341117 ], + [ 7.4750182, 47.4340785 ], + [ 7.4750458, 47.434042 ], + [ 7.4751252, 47.4339406 ], + [ 7.4751541, 47.4339089 ], + [ 7.4751849, 47.433876 ], + [ 7.4752194, 47.4338437 ], + [ 7.4752553, 47.4338164 ], + [ 7.4752959, 47.4337893 ], + [ 7.4753377, 47.4337631 ], + [ 7.4754206, 47.4337123 ], + [ 7.4754606, 47.4336883 ], + [ 7.4755044999999996, 47.4336651 ], + [ 7.4755511, 47.4336412 ], + [ 7.4756015, 47.4336167 ], + [ 7.475736, 47.4335536 ], + [ 7.4757824, 47.4335324 ], + [ 7.4758287, 47.4335127 ], + [ 7.4758742, 47.4334899 ], + [ 7.4759158, 47.4334657 ], + [ 7.4760357, 47.4333867 ], + [ 7.4760729, 47.4333607 ], + [ 7.4761132, 47.4333361 ], + [ 7.4761607, 47.4333114 ], + [ 7.476212, 47.4332893 ], + [ 7.4762625, 47.4332699 ], + [ 7.4763142, 47.4332496 ], + [ 7.4763632, 47.4332326 ], + [ 7.4764109, 47.433218 ], + [ 7.4764598, 47.4332032 ], + [ 7.4765131, 47.4331889 ], + [ 7.4765663, 47.4331783 ], + [ 7.4766218, 47.4331677 ], + [ 7.4766789, 47.4331578 ], + [ 7.4767361, 47.4331504 ], + [ 7.4767936, 47.4331444 ], + [ 7.4769087, 47.4331313 ], + [ 7.4769648, 47.4331231 ], + [ 7.4770202999999995, 47.4331107 ], + [ 7.4770719, 47.4331014 ], + [ 7.4771811, 47.4330802 ], + [ 7.4772354, 47.4330713 ], + [ 7.4772888, 47.4330613 ], + [ 7.4773454, 47.4330514 ], + [ 7.4773832, 47.433044 ], + [ 7.4774366, 47.4330358 ], + [ 7.4774891, 47.4330256 ], + [ 7.4775061, 47.4330219 ], + [ 7.4775406, 47.4330145 ], + [ 7.4776404, 47.432986 ], + [ 7.4776922, 47.4329738 ], + [ 7.4777411, 47.4329623 ], + [ 7.4778323, 47.4329478 ], + [ 7.4778854, 47.4329437 ], + [ 7.4779353, 47.432935 ], + [ 7.4779819, 47.432925 ], + [ 7.4780258, 47.4329132 ], + [ 7.4780684, 47.4328981 ], + [ 7.4781142, 47.4328831 ], + [ 7.4781565, 47.432871 ], + [ 7.4781979, 47.432862 ], + [ 7.4782388, 47.4328499 ], + [ 7.4782878, 47.432838 ], + [ 7.4783345, 47.4328247 ], + [ 7.4783778, 47.4328096 ], + [ 7.4784207, 47.4327938 ], + [ 7.4785091999999995, 47.4327587 ], + [ 7.4785176, 47.4327547 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns330", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Lange Rai", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Lange Rai", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Lange Rai", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Lange Rai", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7363501, 46.5932834 ], + [ 7.7365469000000004, 46.5933212 ], + [ 7.7368254, 46.5933978 ], + [ 7.7369734999999995, 46.5934866 ], + [ 7.7371308, 46.5936148 ], + [ 7.7373115, 46.5937035 ], + [ 7.737493, 46.5937865 ], + [ 7.7376493, 46.5938866 ], + [ 7.7378383, 46.5939808 ], + [ 7.7380107, 46.5940413 ], + [ 7.7380689, 46.5940972 ], + [ 7.7381282, 46.5942093 ], + [ 7.7381715, 46.5943612 ], + [ 7.7381902, 46.5945132 ], + [ 7.7382673, 46.5947323 ], + [ 7.7384003, 46.5948889 ], + [ 7.7385833, 46.5950903 ], + [ 7.7388304, 46.5952347 ], + [ 7.7390947, 46.5953903 ], + [ 7.739194, 46.5955021 ], + [ 7.7393022, 46.5956082 ], + [ 7.7394179, 46.5957257 ], + [ 7.7395587, 46.5958314 ], + [ 7.7396822, 46.5958812 ], + [ 7.7397813, 46.5959648 ], + [ 7.7398479, 46.5960601 ], + [ 7.739948, 46.596172 ], + [ 7.7400155, 46.5962897 ], + [ 7.740059, 46.5964697 ], + [ 7.7401208, 46.5967341 ], + [ 7.7401907, 46.5969984 ], + [ 7.7402505, 46.5971782 ], + [ 7.7403669, 46.5972843 ], + [ 7.7405314, 46.5973843 ], + [ 7.7407364, 46.5974389 ], + [ 7.740916, 46.5974712 ], + [ 7.7410312999999995, 46.5975322 ], + [ 7.7411885, 46.5976266 ], + [ 7.7412957, 46.597699 ], + [ 7.7413612, 46.5977435 ], + [ 7.7414286, 46.5978274 ], + [ 7.7414871, 46.5979341 ], + [ 7.7415722, 46.5981419 ], + [ 7.7416073, 46.5982937 ], + [ 7.7416668, 46.5984284 ], + [ 7.7417497, 46.5985236 ], + [ 7.7418744, 46.5986464 ], + [ 7.742033, 46.5988536 ], + [ 7.7422217, 46.5989083 ], + [ 7.7424595, 46.5990022 ], + [ 7.7427135, 46.5990451 ], + [ 7.7429428, 46.5990768 ], + [ 7.7430909, 46.5991544 ], + [ 7.7432155, 46.5992661 ], + [ 7.7432983, 46.5993499 ], + [ 7.7433884, 46.5993999 ], + [ 7.7434394, 46.5994783 ], + [ 7.7434989, 46.5996187 ], + [ 7.7435176, 46.5997595 ], + [ 7.7435026, 46.5998554 ], + [ 7.7434957, 46.599923 ], + [ 7.7435539, 46.5999846 ], + [ 7.7435798, 46.6000802 ], + [ 7.7435564, 46.6001254 ], + [ 7.7434179, 46.6001549 ], + [ 7.7431827, 46.600264 ], + [ 7.7428997, 46.6004185 ], + [ 7.7424548, 46.6006366 ], + [ 7.7432417000000004, 46.6013342 ], + [ 7.7434328, 46.6015073 ], + [ 7.7434747, 46.601569 ], + [ 7.7435941, 46.6019173 ], + [ 7.7437292, 46.6021529 ], + [ 7.7440544, 46.6020993 ], + [ 7.7440078, 46.6022293 ], + [ 7.7440498, 46.6023079 ], + [ 7.7440999, 46.6023695 ], + [ 7.7442724, 46.6024413 ], + [ 7.7444614, 46.6025354 ], + [ 7.7446664, 46.6025731 ], + [ 7.7447246, 46.6026346 ], + [ 7.7447096, 46.6027193 ], + [ 7.7446782, 46.6027927 ], + [ 7.744565, 46.6028332 ], + [ 7.7444185999999995, 46.6028965 ], + [ 7.7442147, 46.6029095 ], + [ 7.7442576, 46.6029881 ], + [ 7.7442914, 46.6030553 ], + [ 7.7442274, 46.6031404 ], + [ 7.7440809, 46.6031925 ], + [ 7.7438618, 46.6032564 ], + [ 7.7441251, 46.6033612 ], + [ 7.7442663, 46.603529 ], + [ 7.7443736, 46.6036126 ], + [ 7.7447722, 46.6039924 ], + [ 7.7446756, 46.6040721 ], + [ 7.7447747, 46.6041389 ], + [ 7.7447923, 46.6042289 ], + [ 7.74472, 46.6042859 ], + [ 7.744557, 46.6043098 ], + [ 7.7447970999999995, 46.6044995 ], + [ 7.7450943, 46.6046997 ], + [ 7.745374, 46.604827 ], + [ 7.745253, 46.6049125 ], + [ 7.7450574, 46.604948 ], + [ 7.7447068, 46.6049735 ], + [ 7.7449212, 46.6050957 ], + [ 7.7451427, 46.6051727 ], + [ 7.7452267, 46.6053185 ], + [ 7.7456762999999995, 46.6053316 ], + [ 7.7454982, 46.6054402 ], + [ 7.7454422, 46.6054857 ], + [ 7.7453388, 46.6056671 ], + [ 7.7451221, 46.6058605 ], + [ 7.7452691, 46.6058986 ], + [ 7.7455301, 46.6058851 ], + [ 7.7458213, 46.605736 ], + [ 7.7458738, 46.6059384 ], + [ 7.7462232, 46.6058284 ], + [ 7.7465482, 46.6057411 ], + [ 7.7468149, 46.6055923 ], + [ 7.7469906, 46.6053652 ], + [ 7.7472397, 46.6051321 ], + [ 7.7473362, 46.6050297 ], + [ 7.7474329, 46.6049557 ], + [ 7.7475623, 46.6049094 ], + [ 7.747766, 46.6048682 ], + [ 7.7479853, 46.6048325 ], + [ 7.7482204, 46.6047233 ], + [ 7.7483732, 46.604615 ], + [ 7.7484939, 46.6044787 ], + [ 7.7484915999999995, 46.604349 ], + [ 7.7484484, 46.6042254 ], + [ 7.7484461, 46.6041071 ], + [ 7.7485601, 46.6040667 ], + [ 7.7488526, 46.6040021 ], + [ 7.7490480999999996, 46.603961 ], + [ 7.7492754, 46.6039027 ], + [ 7.7494281, 46.6037886 ], + [ 7.7495082, 46.6036809 ], + [ 7.7495944, 46.6034829 ], + [ 7.7496572, 46.6033414 ], + [ 7.7497457, 46.6032618 ], + [ 7.7498585, 46.6031593 ], + [ 7.7500191, 46.6030058 ], + [ 7.7501145000000005, 46.6028471 ], + [ 7.7500862999999995, 46.6026389 ], + [ 7.750156, 46.6024072 ], + [ 7.7503063, 46.6021635 ], + [ 7.7504983, 46.6019364 ], + [ 7.7508216999999995, 46.6017195 ], + [ 7.7510642, 46.6016159 ], + [ 7.751127, 46.6014687 ], + [ 7.7512046, 46.6012089 ], + [ 7.7513387, 46.600971 ], + [ 7.7515643, 46.6007774 ], + [ 7.7519124, 46.6005884 ], + [ 7.7521618, 46.6004172 ], + [ 7.7522596, 46.600410600000004 ], + [ 7.7523748, 46.6004322 ], + [ 7.7525134, 46.6004254 ], + [ 7.7525694, 46.6003742 ], + [ 7.752757, 46.6003782 ], + [ 7.7527625, 46.6001977 ], + [ 7.7529093, 46.6001965 ], + [ 7.7530972, 46.6002399 ], + [ 7.7534662999999995, 46.6003213 ], + [ 7.7536144, 46.6003876 ], + [ 7.7537448, 46.600380799999996 ], + [ 7.7538007, 46.600307 ], + [ 7.7538214, 46.6000871 ], + [ 7.7539103, 46.6000694 ], + [ 7.7539251, 46.5999622 ], + [ 7.7540637, 46.5999441 ], + [ 7.7542095, 46.5999146 ], + [ 7.7543551, 46.5998345 ], + [ 7.7543220999999996, 46.599784 ], + [ 7.7542721, 46.599728 ], + [ 7.7543187, 46.5996093 ], + [ 7.7543989, 46.5995184 ], + [ 7.7545363, 46.5994327 ], + [ 7.7546956, 46.5992058 ], + [ 7.7548088, 46.5991711 ], + [ 7.7548712, 46.5989564 ], + [ 7.7549528, 46.5989669 ], + [ 7.7551717, 46.5988749 ], + [ 7.7554048, 46.5987038 ], + [ 7.7556071, 46.5985723 ], + [ 7.75567, 46.5984422 ], + [ 7.7557072, 46.5982558 ], + [ 7.7556813, 46.5981377 ], + [ 7.7555496, 46.5980881 ], + [ 7.7554424, 46.5980215 ], + [ 7.7553434, 46.597966 ], + [ 7.7553164, 46.5978196 ], + [ 7.7552824000000005, 46.5977185 ], + [ 7.755216, 46.5976628 ], + [ 7.7551008, 46.5976243 ], + [ 7.7549773, 46.5975691 ], + [ 7.754871, 46.5975192 ], + [ 7.754722, 46.5974304 ], + [ 7.7546555999999995, 46.5973634 ], + [ 7.7545806, 46.5972457 ], + [ 7.7544397, 46.5971285 ], + [ 7.7542753, 46.597051 ], + [ 7.7543709, 46.5969374 ], + [ 7.754352, 46.5967799 ], + [ 7.7541814, 46.5963361 ], + [ 7.7543435, 46.5962953 ], + [ 7.7544238, 46.5962101 ], + [ 7.7545377, 46.5961639 ], + [ 7.7546763, 46.5961514 ], + [ 7.7548067, 46.5961502 ], + [ 7.7549782, 46.5961714 ], + [ 7.7550921, 46.5961365 ], + [ 7.7551480999999995, 46.5960853 ], + [ 7.7551794, 46.5959949 ], + [ 7.7551852, 46.5958653 ], + [ 7.7552724, 46.5957179 ], + [ 7.7553677, 46.595553699999996 ], + [ 7.7554143, 46.5954348 ], + [ 7.7553966, 46.5953279 ], + [ 7.755329, 46.5952045 ], + [ 7.755302, 46.5950639 ], + [ 7.7553308, 46.594827 ], + [ 7.7553191, 46.5946355 ], + [ 7.7552327, 46.5943657 ], + [ 7.7552302, 46.5942191 ], + [ 7.7550878, 46.5939838 ], + [ 7.7549444, 46.5937369 ], + [ 7.7550167, 46.5936743 ], + [ 7.7551049, 46.5935666 ], + [ 7.7552575, 46.5934356 ], + [ 7.7553703, 46.5933331 ], + [ 7.7554658, 46.5932083 ], + [ 7.7555621, 46.5930835 ], + [ 7.7562753, 46.5932914 ], + [ 7.7563175, 46.5933924 ], + [ 7.7563837, 46.5934201 ], + [ 7.7564573, 46.5934588 ], + [ 7.7565971, 46.593514 ], + [ 7.7566553, 46.5935586 ], + [ 7.7566893, 46.5936597 ], + [ 7.7567395, 46.5937325 ], + [ 7.7568304, 46.5938051 ], + [ 7.7570271, 46.5938259 ], + [ 7.7576295, 46.5937698 ], + [ 7.7577449, 46.593842 ], + [ 7.7578439, 46.5938863 ], + [ 7.7579255, 46.5939025 ], + [ 7.7579905, 46.5938512 ], + [ 7.7580626, 46.5937773 ], + [ 7.7581665, 46.5936919 ], + [ 7.7582713, 46.5936177 ], + [ 7.7584099, 46.5936108 ], + [ 7.758532, 46.5935703 ], + [ 7.7586941, 46.5935295 ], + [ 7.7587825, 46.5934442 ], + [ 7.7588546, 46.5933646 ], + [ 7.7590734999999995, 46.5932895 ], + [ 7.7592599, 46.5932202 ], + [ 7.7593794, 46.5930218 ], + [ 7.7595621999999995, 46.5927498 ], + [ 7.7598186, 46.5929447 ], + [ 7.7601238, 46.5931223 ], + [ 7.7604446, 46.5933055 ], + [ 7.760708, 46.5934272 ], + [ 7.7609796, 46.5935714 ], + [ 7.7613908, 46.5937368 ], + [ 7.7618665, 46.5939073 ], + [ 7.7622277, 46.5940282 ], + [ 7.7625551999999995, 46.5940985 ], + [ 7.7628417, 46.5941411 ], + [ 7.7631027, 46.5941387 ], + [ 7.763388, 46.5941081 ], + [ 7.7636082, 46.594106 ], + [ 7.7637804, 46.5941328 ], + [ 7.763953, 46.5942102 ], + [ 7.7642655, 46.5943595 ], + [ 7.7644881, 46.5944872 ], + [ 7.7647759, 46.5946143 ], + [ 7.7650301, 46.5947021 ], + [ 7.7653424, 46.5948234 ], + [ 7.7655731, 46.5949397 ], + [ 7.7658856, 46.5951004 ], + [ 7.7661478, 46.5951657 ], + [ 7.7664019, 46.5952423 ], + [ 7.7666723, 46.5953076 ], + [ 7.767009, 46.595423 ], + [ 7.7672629, 46.5954489 ], + [ 7.7674589, 46.5954979 ], + [ 7.7676638, 46.5955299 ], + [ 7.7679342, 46.5955951 ], + [ 7.7681476, 46.5956834 ], + [ 7.7685587, 46.5958262 ], + [ 7.7689433999999995, 46.5959073 ], + [ 7.7695483, 46.5959922 ], + [ 7.7697859, 46.5960294 ], + [ 7.7700306, 46.5960442 ], + [ 7.7702751, 46.5960138 ], + [ 7.7705604, 46.5959888 ], + [ 7.7708539, 46.595958 ], + [ 7.7710975, 46.595922 ], + [ 7.7712607, 46.5959262 ], + [ 7.77144, 46.5959077 ], + [ 7.7715948, 46.5958837 ], + [ 7.7717813, 46.5958315 ], + [ 7.7719512, 46.5957454 ], + [ 7.7720801, 46.5956146 ], + [ 7.7721675999999995, 46.595518 ], + [ 7.772257, 46.5954665 ], + [ 7.7724108, 46.5954088 ], + [ 7.7726378, 46.5953223 ], + [ 7.7729125, 46.5951563 ], + [ 7.7731547, 46.5950246 ], + [ 7.7735192, 46.5948691 ], + [ 7.7737533, 46.594743 ], + [ 7.7738743, 46.5946518 ], + [ 7.7740268, 46.5945208 ], + [ 7.7741312, 46.5943958 ], + [ 7.7742908, 46.5942198 ], + [ 7.7744023, 46.5940553 ], + [ 7.7745548, 46.5939187 ], + [ 7.774692, 46.5938047 ], + [ 7.7748932, 46.5936451 ], + [ 7.7750632, 46.5935592 ], + [ 7.7751924, 46.5934903 ], + [ 7.7753055, 46.5934442 ], + [ 7.7754114, 46.5934207 ], + [ 7.7755255, 46.5934084 ], + [ 7.7756722, 46.5933846 ], + [ 7.7758343, 46.5933663 ], + [ 7.775981, 46.5933368 ], + [ 7.7761112, 46.5933018 ], + [ 7.776265, 46.593244 ], + [ 7.7763698, 46.5931698 ], + [ 7.7764909, 46.5931123 ], + [ 7.7766295, 46.5930998 ], + [ 7.7768332000000004, 46.5930642 ], + [ 7.7792629, 46.5929523 ], + [ 7.7795227, 46.5928936 ], + [ 7.7797998, 46.5928517 ], + [ 7.7800025999999995, 46.5928104 ], + [ 7.7802388, 46.5927633 ], + [ 7.7804334, 46.5927107 ], + [ 7.7807175, 46.5926293 ], + [ 7.7810657, 46.5924853 ], + [ 7.7813974, 46.5923189 ], + [ 7.7818419, 46.5920613 ], + [ 7.7821727, 46.5918892 ], + [ 7.7824635, 46.5917062 ], + [ 7.7828023, 46.5915003 ], + [ 7.7831012, 46.5913116 ], + [ 7.7833187, 46.5911462 ], + [ 7.7835435, 46.5909583 ], + [ 7.7837445, 46.5907648 ], + [ 7.7840959, 46.5903671 ], + [ 7.7843284, 46.5901227 ], + [ 7.7845855, 46.5899062 ], + [ 7.7849158, 46.589644 ], + [ 7.7851496000000004, 46.5894841 ], + [ 7.7853836, 46.5893468 ], + [ 7.7855932, 46.5892265 ], + [ 7.7858434, 46.5890721 ], + [ 7.7859806, 46.588975 ], + [ 7.7861003, 46.5888161 ], + [ 7.7861629, 46.5886634 ], + [ 7.7862174, 46.5885164 ], + [ 7.7862708, 46.5883187 ], + [ 7.7863006, 46.5881324 ], + [ 7.7863784, 46.5879345 ], + [ 7.786441, 46.5877705 ], + [ 7.7865119, 46.5876346 ], + [ 7.786599, 46.5874873 ], + [ 7.7867663, 46.5872604 ], + [ 7.7869011, 46.5870393 ], + [ 7.7870279, 46.5868521 ], + [ 7.7871627, 46.5866368 ], + [ 7.7872986, 46.5864608 ], + [ 7.7874344, 46.5862736 ], + [ 7.7876648, 46.5859616 ], + [ 7.7878959, 46.5856327 ], + [ 7.7881354, 46.5853375 ], + [ 7.7882622, 46.5851447 ], + [ 7.7883316, 46.584913 ], + [ 7.7884986, 46.5846409 ], + [ 7.7887068, 46.5844306 ], + [ 7.7888117, 46.5843788 ], + [ 7.7889826, 46.5843322 ], + [ 7.7892517, 46.5843298 ], + [ 7.7893661, 46.5843683 ], + [ 7.7894977999999995, 46.5844234 ], + [ 7.7896214, 46.5845012 ], + [ 7.7897789, 46.5846407 ], + [ 7.7900027, 46.5848247 ], + [ 7.7902512, 46.5850478 ], + [ 7.7903839, 46.5851424 ], + [ 7.7904900999999995, 46.5851753 ], + [ 7.790679, 46.585258 ], + [ 7.7909749, 46.5853625 ], + [ 7.791221, 46.5854617 ], + [ 7.791476, 46.5855496 ], + [ 7.7916731, 46.585638 ], + [ 7.7918302, 46.5857324 ], + [ 7.7920112, 46.5858434 ], + [ 7.7921849, 46.5859771 ], + [ 7.7923588, 46.5861277 ], + [ 7.7926073, 46.5863452 ], + [ 7.7929464, 46.5865845 ], + [ 7.7930947, 46.5866903 ], + [ 7.7932844, 46.5867618 ], + [ 7.7934735, 46.5868728 ], + [ 7.7937289, 46.5870282 ], + [ 7.7939854, 46.5872232 ], + [ 7.7941089, 46.5872671 ], + [ 7.7943537, 46.587293 ], + [ 7.7946076, 46.5873415 ], + [ 7.7948616, 46.5874068 ], + [ 7.7951238, 46.5874721 ], + [ 7.7954183, 46.5874807 ], + [ 7.7957364, 46.5875002 ], + [ 7.795981, 46.5874924 ], + [ 7.7962256, 46.5874901 ], + [ 7.7963816, 46.5875283 ], + [ 7.7965531, 46.5875661 ], + [ 7.7967256, 46.587621 ], + [ 7.7969796, 46.5876806 ], + [ 7.7971612, 46.5877748 ], + [ 7.797391, 46.5878628 ], + [ 7.7976206999999995, 46.5879509 ], + [ 7.7978828, 46.5880049 ], + [ 7.7980959, 46.588048 ], + [ 7.7983244, 46.5880684 ], + [ 7.79857, 46.5880887 ], + [ 7.7987658, 46.5881038 ], + [ 7.7989382, 46.5881474 ], + [ 7.7991025, 46.5882135 ], + [ 7.7993158, 46.5882736 ], + [ 7.7995208, 46.5883224 ], + [ 7.7997248, 46.5883431 ], + [ 7.8000102, 46.5883462 ], + [ 7.8002386, 46.5883497 ], + [ 7.8004912, 46.5883192 ], + [ 7.8007112, 46.5883002 ], + [ 7.8008826, 46.58831 ], + [ 7.8009896, 46.5883428 ], + [ 7.8010714, 46.5883871 ], + [ 7.8011378, 46.5884316 ], + [ 7.801244, 46.5884644 ], + [ 7.8013511, 46.588503 ], + [ 7.8014653, 46.5885076 ], + [ 7.8017191, 46.5885335 ], + [ 7.8020129, 46.5885646 ], + [ 7.8022504999999995, 46.588613 ], + [ 7.8024636, 46.5886506 ], + [ 7.8027166999999995, 46.5886877 ], + [ 7.8029136999999995, 46.5887592 ], + [ 7.8031268, 46.5888022 ], + [ 7.8033483, 46.5888735 ], + [ 7.8035044, 46.5889341 ], + [ 7.8042762, 46.5887354 ], + [ 7.8047233, 46.5886523 ], + [ 7.8051064, 46.5886206 ], + [ 7.8053676, 46.5886577 ], + [ 7.8056051, 46.5886893 ], + [ 7.8057846, 46.588699 ], + [ 7.8059395, 46.5886862 ], + [ 7.8060873, 46.5887244 ], + [ 7.806169, 46.5887519 ], + [ 7.8062355, 46.5888076 ], + [ 7.8062939, 46.5888803 ], + [ 7.8063524, 46.5889756 ], + [ 7.8063945, 46.589054 ], + [ 7.8064526, 46.5890704 ], + [ 7.806534, 46.5890584 ], + [ 7.8067288, 46.5890341 ], + [ 7.8069488, 46.5890095 ], + [ 7.8073073, 46.5889668 ], + [ 7.8076406, 46.5889298 ], + [ 7.8079504, 46.5889214 ], + [ 7.8083101, 46.588935 ], + [ 7.8086283, 46.5889546 ], + [ 7.8090047, 46.5890131 ], + [ 7.8093575, 46.5890887 ], + [ 7.8096443, 46.5891763 ], + [ 7.8099229999999995, 46.5892695 ], + [ 7.8100806, 46.5894146 ], + [ 7.8102961, 46.5895648 ], + [ 7.8105422, 46.5896527 ], + [ 7.8108207, 46.5897177 ], + [ 7.8111085, 46.5898278 ], + [ 7.8113639, 46.5899719 ], + [ 7.811554, 46.5900941 ], + [ 7.8118096999999995, 46.5902835 ], + [ 7.8120744, 46.5904727 ], + [ 7.8123227, 46.5906394 ], + [ 7.8126122, 46.5908734 ], + [ 7.8127956, 46.5910915 ], + [ 7.8129219, 46.5913214 ], + [ 7.8130698, 46.5913539 ], + [ 7.813275, 46.5914364 ], + [ 7.8135791999999995, 46.5915463 ], + [ 7.8141795, 46.5917944 ], + [ 7.8148537000000005, 46.5921038 ], + [ 7.8159403, 46.5926122 ], + [ 7.8163763, 46.5928055 ], + [ 7.8165734, 46.5928768 ], + [ 7.8168264, 46.5929026 ], + [ 7.8171199, 46.592883 ], + [ 7.8173806, 46.5928524 ], + [ 7.8176473, 46.5927259 ], + [ 7.8187072, 46.5922201 ], + [ 7.818998, 46.592054 ], + [ 7.8191588, 46.591951 ], + [ 7.8194017, 46.5918191 ], + [ 7.8196287, 46.591738 ], + [ 7.8198722, 46.5916907 ], + [ 7.820148, 46.591598 ], + [ 7.8204403, 46.591522 ], + [ 7.8207170999999995, 46.5914574 ], + [ 7.8209757, 46.591347999999996 ], + [ 7.8211946, 46.5912838 ], + [ 7.8213235999999995, 46.5911869 ], + [ 7.8214119, 46.5911015 ], + [ 7.8214991, 46.5909767 ], + [ 7.8215209, 46.5908413 ], + [ 7.8213772, 46.5901155 ], + [ 7.8212971, 46.5897443 ], + [ 7.8213174, 46.5895017 ], + [ 7.8213311, 46.5893607 ], + [ 7.8213776, 46.5892477 ], + [ 7.8214819, 46.5891283 ], + [ 7.8216505, 46.5889745 ], + [ 7.8217634, 46.5889172 ], + [ 7.8218601, 46.5888598 ], + [ 7.8219984, 46.5888135 ], + [ 7.8222665, 46.5887884 ], + [ 7.8224457, 46.588753 ], + [ 7.8225505, 46.5887069 ], + [ 7.8233483, 46.5881639 ], + [ 7.8236782, 46.5878791 ], + [ 7.8238468, 46.5877254 ], + [ 7.8241092, 46.5873621 ], + [ 7.8242673, 46.5871183 ], + [ 7.8244357, 46.5869476 ], + [ 7.8246367, 46.5867767 ], + [ 7.824789, 46.5866287 ], + [ 7.8249888, 46.5864071 ], + [ 7.8254988, 46.5853032 ], + [ 7.8255761, 46.5850546 ], + [ 7.8255887, 46.5848797 ], + [ 7.8255754, 46.5846093 ], + [ 7.8255384, 46.5843392 ], + [ 7.8254764, 46.5841143 ], + [ 7.8253347, 46.5839071 ], + [ 7.8251106, 46.5837063 ], + [ 7.8247795, 46.5834614 ], + [ 7.8245308, 46.583244 ], + [ 7.8243799, 46.5830086 ], + [ 7.8241547, 46.5827571 ], + [ 7.8239957, 46.5825219 ], + [ 7.8238682, 46.5822526 ], + [ 7.8238481, 46.5820725 ], + [ 7.823863, 46.5819822 ], + [ 7.8239106, 46.581914 ], + [ 7.824063, 46.581783 ], + [ 7.8242487, 46.5816403 ], + [ 7.8244256, 46.5815147 ], + [ 7.8245208, 46.5813729 ], + [ 7.8245343, 46.5812094 ], + [ 7.8245872, 46.580972 ], + [ 7.8247453, 46.580734 ], + [ 7.8243824, 46.5804837 ], + [ 7.8242411, 46.5803441 ], + [ 7.8241556, 46.5801251 ], + [ 7.8241353, 46.5799055 ], + [ 7.8241467, 46.5796743 ], + [ 7.824266, 46.5794873 ], + [ 7.8244087, 46.5792549 ], + [ 7.8246875, 46.5789028 ], + [ 7.8250559, 46.5785386 ], + [ 7.8253683, 46.57822 ], + [ 7.8257312, 46.5779969 ], + [ 7.8258604, 46.5779392 ], + [ 7.8259161, 46.5778599 ], + [ 7.8259867, 46.5776901 ], + [ 7.8260804, 46.5774525 ], + [ 7.8262057, 46.5771977 ], + [ 7.8263972, 46.5769536 ], + [ 7.8265321, 46.5767663 ], + [ 7.8265861999999995, 46.5765911 ], + [ 7.8264563, 46.575747 ], + [ 7.8263977, 46.5756516 ], + [ 7.8262567, 46.5755459 ], + [ 7.8261818, 46.5754451 ], + [ 7.8261629, 46.5753157 ], + [ 7.8261427999999995, 46.575113 ], + [ 7.8261385, 46.5748594 ], + [ 7.8260751, 46.57455 ], + [ 7.8260127, 46.5742519 ], + [ 7.8259378, 46.5741511 ], + [ 7.8258632, 46.5741011 ], + [ 7.8257408, 46.5740797 ], + [ 7.8256256, 46.5740527 ], + [ 7.8254936, 46.5739525 ], + [ 7.8253935, 46.5738519 ], + [ 7.8253011, 46.5737005 ], + [ 7.8252574, 46.5735263 ], + [ 7.8252222, 46.5733913 ], + [ 7.8251951, 46.5732451 ], + [ 7.8250934, 46.5730431 ], + [ 7.8249577, 46.5727682 ], + [ 7.8248638, 46.5725156 ], + [ 7.8247947, 46.5723189 ], + [ 7.8246996, 46.5720154 ], + [ 7.8246702, 46.5717677 ], + [ 7.8246893, 46.5714857 ], + [ 7.8247354, 46.5713049 ], + [ 7.824828, 46.5710392 ], + [ 7.8250019, 46.5707276 ], + [ 7.825048, 46.5705637 ], + [ 7.8250618, 46.5704453 ], + [ 7.8250182, 46.5702652 ], + [ 7.8249738, 46.5700966 ], + [ 7.8249371, 46.5698715 ], + [ 7.8249563, 46.5695952 ], + [ 7.8250336, 46.5693408 ], + [ 7.8250528, 46.5690588 ], + [ 7.8250653, 46.5688614 ], + [ 7.8251927, 46.5686687 ], + [ 7.8252869, 46.5684987 ], + [ 7.8253329, 46.5683292 ], + [ 7.8253126, 46.5681039 ], + [ 7.8251933, 46.567834500000004 ], + [ 7.8250994, 46.5675874 ], + [ 7.8251052, 46.5674915 ], + [ 7.8252015, 46.5673835 ], + [ 7.825305, 46.5672643 ], + [ 7.8253605, 46.5671623 ], + [ 7.8253266, 46.567095 ], + [ 7.8252517, 46.5669999 ], + [ 7.8251177, 46.5668434 ], + [ 7.8249753, 46.5666473 ], + [ 7.8248581999999995, 46.5664512 ], + [ 7.8247404, 46.5662889 ], + [ 7.8245746, 46.5661213 ], + [ 7.8244741, 46.5659701 ], + [ 7.824447, 46.5658295 ], + [ 7.8244269, 46.565638 ], + [ 7.8243835, 46.5655088 ], + [ 7.8242598999999995, 46.5654255 ], + [ 7.8241036, 46.5653368 ], + [ 7.8238647, 46.565215 ], + [ 7.8235617, 46.5651445 ], + [ 7.8232321, 46.5649785 ], + [ 7.822936, 46.5648461 ], + [ 7.8226642, 46.5646682 ], + [ 7.8223345, 46.5645078 ], + [ 7.8220792, 46.5643694 ], + [ 7.8217516, 46.5642654 ], + [ 7.8214963, 46.5641155 ], + [ 7.8213389, 46.5639987 ], + [ 7.821123, 46.5637809 ], + [ 7.8209726, 46.563602 ], + [ 7.8207823, 46.5634291 ], + [ 7.8206728, 46.5632723 ], + [ 7.8205557, 46.5630816 ], + [ 7.8204706, 46.5629246 ], + [ 7.8203702, 46.5627791 ], + [ 7.8201148, 46.5626236 ], + [ 7.819752, 46.5623904 ], + [ 7.8194727, 46.562314 ], + [ 7.8191545, 46.5622663 ], + [ 7.8189334, 46.562229 ], + [ 7.8187935, 46.5621682 ], + [ 7.8186607, 46.562045499999996 ], + [ 7.8185356, 46.5618833 ], + [ 7.8184743999999995, 46.5616358 ], + [ 7.8190449, 46.5616305 ], + [ 7.8192639, 46.561589 ], + [ 7.8195408, 46.5615581 ], + [ 7.8196873, 46.5615287 ], + [ 7.8198816, 46.5614592 ], + [ 7.8201083, 46.5613613 ], + [ 7.8203098, 46.5612692 ], + [ 7.8205131, 46.5611997 ], + [ 7.8207146, 46.5611076 ], + [ 7.8209658, 46.5610208 ], + [ 7.8212659, 46.5609165 ], + [ 7.8214611, 46.5608639 ], + [ 7.821574, 46.5608065 ], + [ 7.8216531, 46.5606931 ], + [ 7.8217647, 46.5605624 ], + [ 7.8219167, 46.5603919 ], + [ 7.8220931, 46.5602099 ], + [ 7.8223022, 46.5600501 ], + [ 7.8225673, 46.559839 ], + [ 7.8235387, 46.5590071 ], + [ 7.8231747, 46.5587174 ], + [ 7.8228624, 46.5585851 ], + [ 7.8225966, 46.5583339 ], + [ 7.8224146, 46.5581778 ], + [ 7.8223047, 46.5579705 ], + [ 7.8221706, 46.5577913 ], + [ 7.8220711, 46.5576738 ], + [ 7.821914, 46.5575795 ], + [ 7.8218066, 46.5574903 ], + [ 7.8217307, 46.5573671 ], + [ 7.8216141, 46.5572441 ], + [ 7.8214743, 46.5571778 ], + [ 7.8213494, 46.5570381 ], + [ 7.8211413, 46.5567639 ], + [ 7.8209326, 46.5565235 ], + [ 7.8207059, 46.5561649 ], + [ 7.8204874, 46.5558006 ], + [ 7.8204089, 46.5555308 ], + [ 7.8202025, 46.5553918 ], + [ 7.8199637, 46.5552758 ], + [ 7.8196269, 46.5551323 ], + [ 7.8192414, 46.5550176 ], + [ 7.8189044, 46.5548347 ], + [ 7.8185991, 46.5546516 ], + [ 7.8182437, 46.554407 ], + [ 7.8179708, 46.5541954 ], + [ 7.817722, 46.5539384 ], + [ 7.8175131, 46.5536585 ], + [ 7.8173533, 46.5534176 ], + [ 7.8172759, 46.5531929 ], + [ 7.8171428, 46.553042 ], + [ 7.8170101, 46.5529362 ], + [ 7.8167872, 46.5527635 ], + [ 7.8165971, 46.5526131 ], + [ 7.8163826, 46.5524799 ], + [ 7.8161275, 46.5523582 ], + [ 7.8159387, 46.5522754 ], + [ 7.8156838, 46.5521932 ], + [ 7.8154133, 46.5520887 ], + [ 7.8150115, 46.5519684 ], + [ 7.8147564, 46.5518355 ], + [ 7.8145676, 46.5517584 ], + [ 7.8143612000000005, 46.5516137 ], + [ 7.8142610999999995, 46.5515189 ], + [ 7.8141608, 46.5513845 ], + [ 7.8140602, 46.551222 ], + [ 7.8140085, 46.5510535 ], + [ 7.8139638, 46.550834 ], + [ 7.8139017, 46.5505753 ], + [ 7.8138327, 46.5503788 ], + [ 7.813724, 46.5502162 ], + [ 7.8136141, 46.5500088 ], + [ 7.8135464, 46.5498797 ], + [ 7.8134936, 46.5496717 ], + [ 7.8134812, 46.549407 ], + [ 7.8135237, 46.5490796 ], + [ 7.8135252, 46.548702 ], + [ 7.8135931, 46.5483915 ], + [ 7.813717, 46.5480408 ], + [ 7.8137429, 46.5476631 ], + [ 7.8135397, 46.5472649 ], + [ 7.8132885, 46.5468839 ], + [ 7.8131138, 46.5467334 ], + [ 7.8129425, 46.5466955 ], + [ 7.812754, 46.5466579 ], + [ 7.8125501, 46.5466372 ], + [ 7.8122813, 46.5466566 ], + [ 7.812053, 46.5466418 ], + [ 7.8118238, 46.5466044 ], + [ 7.8116106, 46.5465275 ], + [ 7.8113555, 46.5464002 ], + [ 7.8110748999999995, 46.5462395 ], + [ 7.8109022, 46.5461283 ], + [ 7.8106971, 46.546057 ], + [ 7.8105342, 46.5460584 ], + [ 7.810362, 46.5460318 ], + [ 7.8102386, 46.5459767 ], + [ 7.8100579, 46.5458769 ], + [ 7.8096696, 46.5455818 ], + [ 7.8089629, 46.54485 ], + [ 7.8083498, 46.5443146 ], + [ 7.8082004, 46.5441639 ], + [ 7.808108, 46.543995699999996 ], + [ 7.8080079, 46.5438894 ], + [ 7.8078596000000005, 46.5437782 ], + [ 7.807686, 46.5436445 ], + [ 7.8074693, 46.5434154 ], + [ 7.8072534000000005, 46.5431807 ], + [ 7.8069726, 46.5429973 ], + [ 7.8067255, 46.5428475 ], + [ 7.8064308, 46.5427656 ], + [ 7.8061921, 46.5426494 ], + [ 7.8066168, 46.5426794 ], + [ 7.8069417, 46.5426482 ], + [ 7.8071777, 46.5425953 ], + [ 7.8073884, 46.5425539 ], + [ 7.8076326, 46.5425123 ], + [ 7.8078024, 46.5424374 ], + [ 7.8079965, 46.5423454 ], + [ 7.808237, 46.542129 ], + [ 7.8085111, 46.5419462 ], + [ 7.8087681, 46.5417521 ], + [ 7.8089839, 46.5415022 ], + [ 7.80915, 46.5412471 ], + [ 7.8093078, 46.5409638 ], + [ 7.8093947, 46.5408053 ], + [ 7.8095873000000005, 46.5406118 ], + [ 7.8097601999999995, 46.5402834 ], + [ 7.8099655, 46.5399208 ], + [ 7.8101241, 46.5396488 ], + [ 7.8103062, 46.5393541 ], + [ 7.8107615, 46.5388652 ], + [ 7.8107342, 46.5386794 ], + [ 7.810756, 46.5385384 ], + [ 7.8108651, 46.5382894 ], + [ 7.8109192, 46.5380974 ], + [ 7.8108338, 46.5378896 ], + [ 7.8107742, 46.5377549 ], + [ 7.8107054, 46.5375752 ], + [ 7.8106304, 46.5374575 ], + [ 7.8106047, 46.5373845 ], + [ 7.8106837, 46.5372598 ], + [ 7.8107704, 46.5370842 ], + [ 7.810825, 46.5369654 ], + [ 7.8107085, 46.5368537 ], + [ 7.8105104999999995, 46.5367203 ], + [ 7.810353, 46.5365696 ], + [ 7.8102782, 46.5364745 ], + [ 7.8102432, 46.5363678 ], + [ 7.8102908, 46.536294 ], + [ 7.8103858, 46.5361297 ], + [ 7.8104565, 46.5359826 ], + [ 7.8105014, 46.5357623 ], + [ 7.8104854, 46.5353285 ], + [ 7.8104858, 46.5349227 ], + [ 7.8105864, 46.5346232 ], + [ 7.8107521, 46.5343117 ], + [ 7.8110062, 46.5339487 ], + [ 7.8113632, 46.5333874 ], + [ 7.8117545, 46.5329499 ], + [ 7.8121889, 46.5326246 ], + [ 7.8125503, 46.5323338 ], + [ 7.812807, 46.5321229 ], + [ 7.8128766, 46.5319363 ], + [ 7.8129609, 46.5311634 ], + [ 7.8129396, 46.5309157 ], + [ 7.8130835, 46.5307509 ], + [ 7.8132285, 46.5306369 ], + [ 7.8133634, 46.5304665 ], + [ 7.8133999, 46.5302126 ], + [ 7.8134938, 46.5300145 ], + [ 7.8136596, 46.5297199 ], + [ 7.8139571, 46.5295142 ], + [ 7.8142718, 46.5293141 ], + [ 7.8146832, 46.5290791 ], + [ 7.8150061, 46.5288958 ], + [ 7.8152153, 46.528753 ], + [ 7.815358, 46.5285431 ], + [ 7.8155821, 46.5283269 ], + [ 7.8168962, 46.527537 ], + [ 7.8173705, 46.5272113 ], + [ 7.8176434, 46.5269834 ], + [ 7.81795, 46.5267945 ], + [ 7.8182255, 46.5267018 ], + [ 7.8184997, 46.5265471 ], + [ 7.8186928, 46.5264326 ], + [ 7.8188458, 46.5263015 ], + [ 7.8189395, 46.5260808 ], + [ 7.8189604, 46.5259171 ], + [ 7.8191355, 46.5256901 ], + [ 7.8194095, 46.5255016 ], + [ 7.8197153, 46.5253128 ], + [ 7.8200229, 46.5251633 ], + [ 7.8200099, 46.5249268 ], + [ 7.8200698, 46.5246444 ], + [ 7.8201215, 46.5243565 ], + [ 7.82028, 46.5240789 ], + [ 7.8201891, 46.5240064 ], + [ 7.8200901, 46.523945499999996 ], + [ 7.819972, 46.5237155 ], + [ 7.8198937, 46.5234683 ], + [ 7.8197906, 46.5231817 ], + [ 7.8196957, 46.5228839 ], + [ 7.8196416, 46.5226027 ], + [ 7.8196373999999995, 46.5223548 ], + [ 7.819699, 46.5221964 ], + [ 7.8196962, 46.5220387 ], + [ 7.8196353, 46.5218363 ], + [ 7.8195986, 46.5215887 ], + [ 7.8196831, 46.5213343 ], + [ 7.8197755, 46.5210347 ], + [ 7.8198269, 46.5207073 ], + [ 7.8198296, 46.5203974 ], + [ 7.8197905, 46.520054 ], + [ 7.8198438, 46.5194166 ], + [ 7.8198898, 46.5192414 ], + [ 7.8200488, 46.5190315 ], + [ 7.8200693, 46.5188172 ], + [ 7.82009, 46.5186423 ], + [ 7.8202932, 46.5185784 ], + [ 7.8204712, 46.5185203 ], + [ 7.8207306, 46.5184671 ], + [ 7.8208677, 46.5183926 ], + [ 7.8209487, 46.5183356 ], + [ 7.8209625, 46.5182114 ], + [ 7.8210181, 46.5181207 ], + [ 7.8211226, 46.5180408 ], + [ 7.8212344, 46.5179552 ], + [ 7.821248, 46.5178086 ], + [ 7.8212126, 46.5176399 ], + [ 7.8213497, 46.5175654 ], + [ 7.8215598, 46.5174451 ], + [ 7.821777, 46.5172965 ], + [ 7.8219768, 46.5171086 ], + [ 7.8221765, 46.5169038 ], + [ 7.8223609, 46.5167218 ], + [ 7.8225118, 46.5165288 ], + [ 7.822722, 46.5164254 ], + [ 7.8228906, 46.5162999 ], + [ 7.8229366, 46.5161303 ], + [ 7.823091, 46.5160837 ], + [ 7.8231466, 46.5160044 ], + [ 7.8232108, 46.5159811 ], + [ 7.8232757, 46.5159411 ], + [ 7.8233641, 46.5158895 ], + [ 7.8234279, 46.5158157 ], + [ 7.8234915, 46.5157193 ], + [ 7.823588, 46.5156621 ], + [ 7.8236518, 46.515577 ], + [ 7.8237656, 46.5155478 ], + [ 7.8239031, 46.5155351 ], + [ 7.823976, 46.5154837 ], + [ 7.8240224, 46.5153536 ], + [ 7.8241757, 46.5152677 ], + [ 7.8244252, 46.5150907 ], + [ 7.8247877, 46.5148731 ], + [ 7.8249224, 46.5146915 ], + [ 7.8250077000000005, 46.5144315 ], + [ 7.8251272, 46.5142894 ], + [ 7.8252398, 46.5142038 ], + [ 7.8253757, 46.5140673 ], + [ 7.8255102999999995, 46.5138744 ], + [ 7.8257505, 46.5136467 ], + [ 7.8260571, 46.5134747 ], + [ 7.8262511, 46.5133715 ], + [ 7.8263708, 46.5132633 ], + [ 7.8264099, 46.5131445 ], + [ 7.8264072, 46.512998 ], + [ 7.8264208, 46.512857 ], + [ 7.8264916, 46.5127322 ], + [ 7.8266189, 46.5125452 ], + [ 7.8267049, 46.5123808 ], + [ 7.8267752999999995, 46.5122055 ], + [ 7.8267536, 46.5119014 ], + [ 7.826849, 46.5118046 ], + [ 7.8270021, 46.5117018 ], + [ 7.8271637, 46.511627 ], + [ 7.8271783, 46.5115085 ], + [ 7.8271676, 46.511379 ], + [ 7.827051, 46.5112448 ], + [ 7.8269019, 46.5111222 ], + [ 7.8267703, 46.5110502 ], + [ 7.8266226, 46.5110177 ], + [ 7.8264271999999995, 46.511014 ], + [ 7.826214, 46.5109258 ], + [ 7.8259916, 46.510804 ], + [ 7.8259156, 46.5106581 ], + [ 7.8258734, 46.5105628 ], + [ 7.8259279, 46.5104438 ], + [ 7.8258939, 46.510354 ], + [ 7.825673, 46.5103167 ], + [ 7.8254529, 46.5102962 ], + [ 7.8253867, 46.5102573 ], + [ 7.8253772, 46.5101785 ], + [ 7.8254326, 46.5100653 ], + [ 7.8254871999999995, 46.5099578 ], + [ 7.8255498, 46.5098331 ], + [ 7.8255237, 46.509715 ], + [ 7.8254059, 46.5095302 ], + [ 7.8252566, 46.5093793 ], + [ 7.8251739, 46.5093069 ], + [ 7.8251805999999995, 46.5092223 ], + [ 7.8252443, 46.5091315 ], + [ 7.8252745, 46.5090354 ], + [ 7.8252488, 46.5089624 ], + [ 7.8251811, 46.5088334 ], + [ 7.8250735, 46.5087048 ], + [ 7.8249314, 46.5085427 ], + [ 7.8248565, 46.508425 ], + [ 7.8248538, 46.5082786 ], + [ 7.8248435, 46.5081998 ], + [ 7.8247211, 46.508167 ], + [ 7.8245897, 46.5081288 ], + [ 7.8244906, 46.5080452 ], + [ 7.8244798, 46.5078932 ], + [ 7.8244052, 46.5078263 ], + [ 7.8242817, 46.5077542 ], + [ 7.8241174, 46.5076598 ], + [ 7.8240335, 46.507548 ], + [ 7.8240867, 46.5073614 ], + [ 7.8241505, 46.5068312 ], + [ 7.8241874, 46.5066335 ], + [ 7.8241449, 46.5064986 ], + [ 7.8240299, 46.5064772 ], + [ 7.8238425, 46.5064507 ], + [ 7.8236136, 46.5064417 ], + [ 7.823369, 46.5063988 ], + [ 7.8234003, 46.5063309 ], + [ 7.8234629, 46.5062007 ], + [ 7.8234776, 46.5060992 ], + [ 7.8234413, 46.5059191 ], + [ 7.8233245, 46.5057455 ], + [ 7.8230834, 46.505511 ], + [ 7.8229668, 46.5053656 ], + [ 7.8229384, 46.5051516 ], + [ 7.8230009, 46.5050158 ], + [ 7.823105, 46.5048795 ], + [ 7.8229698, 46.5046497 ], + [ 7.822705, 46.5043874 ], + [ 7.8224991, 46.5042935 ], + [ 7.8222614, 46.5041886 ], + [ 7.8220228, 46.5040668 ], + [ 7.8218076, 46.5039111 ], + [ 7.8217312, 46.5037033 ], + [ 7.8216787, 46.5035347 ], + [ 7.8216514, 46.5033602 ], + [ 7.8213652, 46.5033065 ], + [ 7.8211197, 46.5032469 ], + [ 7.8209545, 46.5031357 ], + [ 7.8207891, 46.5030076 ], + [ 7.8206885, 46.5028338 ], + [ 7.820523, 46.5026775 ], + [ 7.820184, 46.5024045 ], + [ 7.8199009, 46.5021029 ], + [ 7.8197924, 46.5019573 ], + [ 7.8198141, 46.5017937 ], + [ 7.8198194, 46.5016302 ], + [ 7.8197071, 46.5012874 ], + [ 7.8196053, 46.501046 ], + [ 7.8194932999999995, 46.500754 ], + [ 7.8192949, 46.500553 ], + [ 7.8189139999999995, 46.5002241 ], + [ 7.8186239, 46.4999618 ], + [ 7.8184474999999996, 46.4996536 ], + [ 7.8180977, 46.499234 ], + [ 7.8175105, 46.4987436 ], + [ 7.8167721, 46.4980403 ], + [ 7.8166461, 46.497833 ], + [ 7.8165305, 46.4977157 ], + [ 7.8163667, 46.4976946 ], + [ 7.8162525, 46.4976676 ], + [ 7.8161455, 46.4976234 ], + [ 7.8159407, 46.4975465 ], + [ 7.8156938, 46.4974023 ], + [ 7.8154554, 46.497303 ], + [ 7.8152503, 46.4971978 ], + [ 7.8151258, 46.497092 ], + [ 7.815059, 46.4969629 ], + [ 7.8149195, 46.4969247 ], + [ 7.8147472, 46.4968531 ], + [ 7.8144017, 46.4966928 ], + [ 7.8141723, 46.4965992 ], + [ 7.8138859, 46.4965004 ], + [ 7.8134521, 46.4964142 ], + [ 7.8130287, 46.4963957 ], + [ 7.8125566, 46.4964113 ], + [ 7.8119941, 46.4964277 ], + [ 7.8115138, 46.4964322 ], + [ 7.8109999, 46.4963919 ], + [ 7.8103054, 46.496263 ], + [ 7.8099133, 46.4961991 ], + [ 7.8094645, 46.4961581 ], + [ 7.8090981, 46.4961558 ], + [ 7.8088051, 46.4961754 ], + [ 7.8086437, 46.4962502 ], + [ 7.8084754, 46.4964039 ], + [ 7.8082349, 46.4965922 ], + [ 7.8081806, 46.4967505 ], + [ 7.8081331, 46.4968298 ], + [ 7.8079309, 46.4969162 ], + [ 7.8076322, 46.4970486 ], + [ 7.8070352, 46.4973697 ], + [ 7.8068574, 46.497439 ], + [ 7.8067913, 46.497417 ], + [ 7.8065864, 46.4973343 ], + [ 7.8063571, 46.497252 ], + [ 7.8060804, 46.4972658 ], + [ 7.8056571, 46.4972753 ], + [ 7.8053303, 46.4972276 ], + [ 7.8051255, 46.4971674 ], + [ 7.8049289, 46.4971073 ], + [ 7.8047334, 46.497081 ], + [ 7.8041298, 46.4970414 ], + [ 7.8035506, 46.4969903 ], + [ 7.8031588, 46.4969545 ], + [ 7.8028402, 46.4969123 ], + [ 7.802448, 46.4968313 ], + [ 7.8022363, 46.4968277 ], + [ 7.8019841, 46.4968525 ], + [ 7.8016018, 46.4968955 ], + [ 7.8012042, 46.4969781 ], + [ 7.801033, 46.4969401 ], + [ 7.8008473, 46.4970433 ], + [ 7.8005963, 46.4971358 ], + [ 7.8002393, 46.4971954 ], + [ 7.7999383, 46.4972321 ], + [ 7.7996575, 46.4969923 ], + [ 7.7994596, 46.4968701 ], + [ 7.7991489, 46.496794 ], + [ 7.7982038, 46.4968026 ], + [ 7.7978946, 46.4968337 ], + [ 7.7976028, 46.4968927 ], + [ 7.797383, 46.4969004 ], + [ 7.7971946, 46.4968457 ], + [ 7.7971035, 46.4967339 ], + [ 7.7970348, 46.4965654 ], + [ 7.7968721, 46.4965838 ], + [ 7.7967337, 46.4965794 ], + [ 7.7964813, 46.496576 ], + [ 7.7962359, 46.4965276 ], + [ 7.7959496, 46.4964457 ], + [ 7.7957271, 46.4962899 ], + [ 7.7956095, 46.4961105 ], + [ 7.7954533999999995, 46.4960219 ], + [ 7.7952824, 46.4960122 ], + [ 7.7951754, 46.4959511 ], + [ 7.7950089, 46.4957779 ], + [ 7.7947375999999995, 46.4956113 ], + [ 7.7944583, 46.4954899 ], + [ 7.7941069, 46.4954029 ], + [ 7.7937385, 46.4953443 ], + [ 7.7933231, 46.495303 ], + [ 7.7928988, 46.4952842 ], + [ 7.7925081, 46.4952878 ], + [ 7.7923112, 46.4951938 ], + [ 7.7921837, 46.4953584 ], + [ 7.7919993, 46.4955404 ], + [ 7.7917275, 46.4958078 ], + [ 7.7914639999999995, 46.4961032 ], + [ 7.7912646, 46.4963643 ], + [ 7.7910962999999995, 46.4965236 ], + [ 7.7909357, 46.496621 ], + [ 7.7906932, 46.4967583 ], + [ 7.7902991, 46.4970043 ], + [ 7.7898486, 46.4973296 ], + [ 7.7893669, 46.4977567 ], + [ 7.7887018, 46.4978811 ], + [ 7.7880683, 46.4979939 ], + [ 7.7875649, 46.4980774 ], + [ 7.7871825, 46.4981203 ], + [ 7.7866708, 46.4981756 ], + [ 7.7861988, 46.4982081 ], + [ 7.7854987, 46.4982313 ], + [ 7.7847, 46.498216 ], + [ 7.7835111999999995, 46.4982041 ], + [ 7.7817764, 46.4982254 ], + [ 7.7811335, 46.498265 ], + [ 7.7809966, 46.4983733 ], + [ 7.7808768, 46.4984871 ], + [ 7.7807493, 46.4986629 ], + [ 7.7806633, 46.4988385 ], + [ 7.780609, 46.499008 ], + [ 7.7805653, 46.4993071 ], + [ 7.7806366, 46.4996446 ], + [ 7.7807721999999995, 46.4999646 ], + [ 7.7809494, 46.5003069 ], + [ 7.7810929, 46.5006043 ], + [ 7.7811617, 46.5007952 ], + [ 7.7811386, 46.50088 ], + [ 7.781083, 46.500965 ], + [ 7.7810038, 46.5010615 ], + [ 7.7809077, 46.5011865 ], + [ 7.7809273999999995, 46.501344 ], + [ 7.7809313, 46.5015638 ], + [ 7.7808538, 46.5017955 ], + [ 7.7809702, 46.5019186 ], + [ 7.7810124, 46.5020309 ], + [ 7.7810241, 46.5022054 ], + [ 7.7809781000000005, 46.5024088 ], + [ 7.7808689, 46.502652 ], + [ 7.7807916, 46.502912 ], + [ 7.7806024, 46.5032519 ], + [ 7.7804133, 46.5036143 ], + [ 7.7802477, 46.5039483 ], + [ 7.78009, 46.5042372 ], + [ 7.7799821, 46.5045594 ], + [ 7.7799059, 46.5048756 ], + [ 7.7798635, 46.5052537 ], + [ 7.7798756000000004, 46.5054902 ], + [ 7.7799034, 46.5056478 ], + [ 7.779791, 46.5057615 ], + [ 7.7712072, 46.5105555 ], + [ 7.7707399, 46.5108471 ], + [ 7.7703936, 46.511087 ], + [ 7.7701112, 46.5112416 ], + [ 7.7697161, 46.5114818 ], + [ 7.7694269, 46.5117324 ], + [ 7.7693317, 46.5118797 ], + [ 7.7693017, 46.5120378 ], + [ 7.7691901, 46.5121684 ], + [ 7.7690703, 46.5122878 ], + [ 7.7689006, 46.5123739 ], + [ 7.7683823, 46.5125644 ], + [ 7.7678568, 46.5127945 ], + [ 7.7672581, 46.5130535 ], + [ 7.7660468, 46.5136673 ], + [ 7.7646345, 46.5144406 ], + [ 7.7644636, 46.5144759 ], + [ 7.7643426, 46.5145277 ], + [ 7.7641404, 46.514631 ], + [ 7.7638577, 46.5147462 ], + [ 7.7630813, 46.5151081 ], + [ 7.7626777, 46.515292 ], + [ 7.7625989, 46.5154561 ], + [ 7.7624956, 46.5156148 ], + [ 7.7623746, 46.5156722 ], + [ 7.7621803, 46.515736 ], + [ 7.7613047, 46.515986 ], + [ 7.7608338, 46.5161029 ], + [ 7.7604197, 46.5161686 ], + [ 7.7600466, 46.5162902 ], + [ 7.7598278, 46.5163428 ], + [ 7.7596568999999995, 46.5163613 ], + [ 7.7588021, 46.5164195 ], + [ 7.7578245, 46.5159604 ], + [ 7.7569807, 46.515669 ], + [ 7.7563664, 46.5154998 ], + [ 7.7561547, 46.5155016 ], + [ 7.7559676, 46.5155314 ], + [ 7.7557173, 46.5156294 ], + [ 7.7552394, 46.515797 ], + [ 7.7545745, 46.5160227 ], + [ 7.7541534, 46.5161447 ], + [ 7.7537880999999995, 46.5162155 ], + [ 7.7534543, 46.5162354 ], + [ 7.7532102, 46.5162713 ], + [ 7.7529742, 46.5163015 ], + [ 7.7526729, 46.5163041 ], + [ 7.7524775, 46.5163116 ], + [ 7.7523228, 46.5163185 ], + [ 7.7520621, 46.5163151 ], + [ 7.7518258, 46.5163003 ], + [ 7.7515806, 46.5162743 ], + [ 7.7513116, 46.5162484 ], + [ 7.7509684, 46.5161781 ], + [ 7.7507627, 46.5161011 ], + [ 7.7505823, 46.5160293 ], + [ 7.7504926, 46.5160133 ], + [ 7.7496927, 46.5164146 ], + [ 7.7494589, 46.516552 ], + [ 7.7492564999999995, 46.5166045 ], + [ 7.7490288, 46.5166741 ], + [ 7.7487206, 46.5167557 ], + [ 7.7481772, 46.5168732 ], + [ 7.7477146, 46.5170011 ], + [ 7.7470492, 46.5171478 ], + [ 7.7465212, 46.5172596 ], + [ 7.7455058999999995, 46.5174487 ], + [ 7.7452464, 46.517496 ], + [ 7.7448881, 46.5175104 ], + [ 7.7445543, 46.5175302 ], + [ 7.744188, 46.517572799999996 ], + [ 7.7437728, 46.5175989 ], + [ 7.7433258, 46.5176253 ], + [ 7.7428455, 46.517669 ], + [ 7.7425443, 46.5176885 ], + [ 7.7422675, 46.5177134 ], + [ 7.7420478, 46.5177435 ], + [ 7.7418035, 46.5177456 ], + [ 7.7416253, 46.5177753 ], + [ 7.7413975, 46.5178168 ], + [ 7.7412264, 46.5178126 ], + [ 7.7410227, 46.5177974 ], + [ 7.7408263, 46.5177766 ], + [ 7.7405565, 46.5177282 ], + [ 7.7403285, 46.5177359 ], + [ 7.7400851, 46.5177548 ], + [ 7.7392967, 46.5179081 ], + [ 7.7386638, 46.5180433 ], + [ 7.7381287, 46.5181888 ], + [ 7.7375275, 46.5183178 ], + [ 7.7372053, 46.5185236 ], + [ 7.7369707, 46.5186552 ], + [ 7.7366554, 46.5187932 ], + [ 7.7364043, 46.5188968 ], + [ 7.7361112, 46.5189106 ], + [ 7.7358668999999995, 46.5189127 ], + [ 7.7354841, 46.5189159 ], + [ 7.7351339, 46.5189133 ], + [ 7.7347999, 46.5189105 ], + [ 7.7345231, 46.5189355 ], + [ 7.7342637, 46.519011 ], + [ 7.7340126, 46.5191033 ], + [ 7.7336973, 46.51923 ], + [ 7.73343, 46.5193675 ], + [ 7.7332519, 46.5194029 ], + [ 7.7330238, 46.5193992 ], + [ 7.7328204, 46.5194347 ], + [ 7.7325774, 46.519544 ], + [ 7.7322285, 46.5196258 ], + [ 7.7319853, 46.5196899 ], + [ 7.7317736, 46.5197029 ], + [ 7.7315781, 46.5196934 ], + [ 7.7312107, 46.5196796 ], + [ 7.7308765, 46.5196429 ], + [ 7.7305834, 46.5196567 ], + [ 7.7300335, 46.519932 ], + [ 7.7297831, 46.52003 ], + [ 7.7296052, 46.5201103 ], + [ 7.7295403, 46.520156 ], + [ 7.7294611, 46.5202637 ], + [ 7.7293902, 46.5204109 ], + [ 7.7292637, 46.5206655 ], + [ 7.7290743, 46.5210448 ], + [ 7.7281644, 46.5231605 ], + [ 7.7279983, 46.523483 ], + [ 7.7278971, 46.5237488 ], + [ 7.7277959, 46.5240202 ], + [ 7.7277099, 46.5242351 ], + [ 7.7276812, 46.5245115 ], + [ 7.7276521, 46.5246978 ], + [ 7.727402, 46.5248464 ], + [ 7.7272009, 46.5250172 ], + [ 7.7270486, 46.5251706 ], + [ 7.72688, 46.5253355 ], + [ 7.7267521, 46.5254719 ], + [ 7.7266658, 46.5256417 ], + [ 7.7265869, 46.5258171 ], + [ 7.7265809999999995, 46.5259411 ], + [ 7.7266092, 46.5261719 ], + [ 7.7266197, 46.526324 ], + [ 7.725404, 46.526712 ], + [ 7.7250713, 46.526805 ], + [ 7.7247792, 46.5268695 ], + [ 7.7246085, 46.5269385 ], + [ 7.7233826, 46.5277154 ], + [ 7.723109, 46.5278868 ], + [ 7.722923, 46.5279899 ], + [ 7.7227765, 46.5280248 ], + [ 7.722582, 46.5280491 ], + [ 7.7222726, 46.5280912 ], + [ 7.7220309, 46.5287413 ], + [ 7.7179999, 46.5304379 ], + [ 7.7178313, 46.5305972 ], + [ 7.717638, 46.5307173 ], + [ 7.7162772, 46.5317488 ], + [ 7.7161501, 46.5319189 ], + [ 7.716127, 46.5320037 ], + [ 7.7161539, 46.5321782 ], + [ 7.7161818, 46.5323752 ], + [ 7.7162098, 46.5325891 ], + [ 7.716197, 46.5328033 ], + [ 7.7162007, 46.5330344 ], + [ 7.7160982, 46.5332325 ], + [ 7.715947, 46.5334536 ], + [ 7.7157643, 46.5337313 ], + [ 7.7154352, 46.5340609 ], + [ 7.7150978, 46.5343511 ], + [ 7.7149118, 46.5344711 ], + [ 7.7146127, 46.5346088 ], + [ 7.7144684, 46.5347397 ], + [ 7.714365, 46.5349096 ], + [ 7.7142625, 46.5351022 ], + [ 7.714201, 46.5353507 ], + [ 7.7141567, 46.5356046 ], + [ 7.7140858, 46.5357631 ], + [ 7.7126331, 46.5386608 ], + [ 7.7125726, 46.5389318 ], + [ 7.7130004, 46.5411882 ], + [ 7.7122927, 46.541256 ], + [ 7.7120157, 46.541281 ], + [ 7.7116421, 46.5413574 ], + [ 7.7112441, 46.5414452 ], + [ 7.7108299, 46.5415388 ], + [ 7.7105704, 46.54162 ], + [ 7.7102305, 46.5417523 ], + [ 7.7099072, 46.541958 ], + [ 7.7070736, 46.5441457 ], + [ 7.7062427, 46.5456743 ], + [ 7.7060367, 46.5460367 ], + [ 7.7059353999999995, 46.5463193 ], + [ 7.7057632, 46.5467546 ], + [ 7.7055597, 46.5472974 ], + [ 7.7054108, 46.5476762 ], + [ 7.7052933, 46.5479871 ], + [ 7.7052314, 46.5481568 ], + [ 7.7052268, 46.548371 ], + [ 7.7052955, 46.5485959 ], + [ 7.7053979, 46.5488599 ], + [ 7.7051709, 46.5489407 ], + [ 7.7045296, 46.5486078 ], + [ 7.7028408, 46.5485486 ], + [ 7.7018715, 46.5491258 ], + [ 7.7012906, 46.5494969 ], + [ 7.700952, 46.5497477 ], + [ 7.7007669, 46.5498957 ], + [ 7.7006561, 46.5500602 ], + [ 7.7003687, 46.5504513 ], + [ 7.7000813, 46.5508425 ], + [ 7.6999775, 46.5509674 ], + [ 7.6999043, 46.5509849 ], + [ 7.6998308, 46.5509517 ], + [ 7.6997074, 46.5508907 ], + [ 7.6994456, 46.5508421 ], + [ 7.6991757, 46.5508162 ], + [ 7.6987112, 46.5508032 ], + [ 7.6981408, 46.5508303 ], + [ 7.6963028, 46.5521305 ], + [ 7.6962575, 46.5528691 ], + [ 7.6962389, 46.5532468 ], + [ 7.6962223, 46.5536979 ], + [ 7.6962014, 46.5539291 ], + [ 7.6960991, 46.5541779 ], + [ 7.6959571, 46.5544833 ], + [ 7.6957601, 46.5548852 ], + [ 7.6955541, 46.5552701 ], + [ 7.6953785, 46.5555251 ], + [ 7.6952187, 46.5556898 ], + [ 7.6950278, 46.557523 ], + [ 7.6949359, 46.5579182 ], + [ 7.6949322, 46.5581663 ], + [ 7.6949348, 46.5583635 ], + [ 7.6948974, 46.5585723 ], + [ 7.6948599, 46.5587304 ], + [ 7.6947971, 46.5588888 ], + [ 7.6946305, 46.5591832 ], + [ 7.6938609, 46.5605194 ], + [ 7.6937411, 46.5606951 ], + [ 7.6936701, 46.5608535 ], + [ 7.6936887, 46.5609887 ], + [ 7.6937165, 46.5611801 ], + [ 7.6937619, 46.5614671 ], + [ 7.6937698999999995, 46.5619518 ], + [ 7.69377, 46.5624984 ], + [ 7.6937932, 46.5629264 ], + [ 7.6937978000000005, 46.563197 ], + [ 7.6937605, 46.5634114 ], + [ 7.6936905, 46.5636204 ], + [ 7.6928905, 46.5661349 ], + [ 7.6928056, 46.5664512 ], + [ 7.6927927, 46.5666654 ], + [ 7.6927962, 46.5668852 ], + [ 7.6928404, 46.5670878 ], + [ 7.6929007, 46.5672676 ], + [ 7.692951, 46.5673912 ], + [ 7.6930266, 46.5675033 ], + [ 7.693029, 46.5676724 ], + [ 7.6930498, 46.5679314 ], + [ 7.6930951, 46.5682016 ], + [ 7.6930894, 46.5683875 ], + [ 7.6930521, 46.5685963 ], + [ 7.6929983, 46.5687772 ], + [ 7.692952, 46.568986 ], + [ 7.6930438, 46.5690811 ], + [ 7.6931183, 46.5691481 ], + [ 7.6931756, 46.5691927 ], + [ 7.6931694, 46.5692773 ], + [ 7.6931298, 46.5693453 ], + [ 7.6930984, 46.5694245 ], + [ 7.6930192, 46.5695773 ], + [ 7.6929482, 46.5697356 ], + [ 7.6928853, 46.5698714 ], + [ 7.692855, 46.5700182 ], + [ 7.6928329, 46.5701706 ], + [ 7.6928108, 46.5703397 ], + [ 7.6927888, 46.5705034 ], + [ 7.6926779, 46.5706734 ], + [ 7.6926556999999995, 46.5708144 ], + [ 7.6926837, 46.5710285 ], + [ 7.6926872, 46.5712706 ], + [ 7.692715, 46.5714621 ], + [ 7.6927581, 46.5716026 ], + [ 7.6928654, 46.5717201 ], + [ 7.6929329, 46.5718379 ], + [ 7.6929352, 46.5719956 ], + [ 7.6928805, 46.5721539 ], + [ 7.6927848999999995, 46.5722673 ], + [ 7.6927219000000004, 46.5724031 ], + [ 7.6926581, 46.572522 ], + [ 7.6926196000000004, 46.5726632 ], + [ 7.6926228, 46.5728323 ], + [ 7.6926252, 46.57299 ], + [ 7.6926358, 46.5731534 ], + [ 7.6925564, 46.5732668 ], + [ 7.6924518, 46.5733917 ], + [ 7.6923318, 46.5735335 ], + [ 7.6921954, 46.5736473 ], + [ 7.6920582, 46.5737668 ], + [ 7.6919299, 46.5738805 ], + [ 7.6919149, 46.5739878 ], + [ 7.6919486, 46.5740495 ], + [ 7.6920312, 46.5740996 ], + [ 7.692171, 46.5741885 ], + [ 7.6924017, 46.5743501 ], + [ 7.6926088, 46.5745343 ], + [ 7.6928161, 46.5747468 ], + [ 7.6929744, 46.5749484 ], + [ 7.693092, 46.5751673 ], + [ 7.6932259, 46.5753691 ], + [ 7.6933363, 46.5756273 ], + [ 7.6934296, 46.5758746 ], + [ 7.6935391, 46.5760879 ], + [ 7.6936903, 46.5763345 ], + [ 7.6938885, 46.5765245 ], + [ 7.6940547, 46.576681 ], + [ 7.6942283, 46.5768373 ], + [ 7.6943447, 46.576966 ], + [ 7.6944590999999996, 46.5770101 ], + [ 7.6945335, 46.5770547 ], + [ 7.6945591, 46.5771277 ], + [ 7.6945767, 46.577229 ], + [ 7.6945392, 46.5773983 ], + [ 7.6948805, 46.5778465 ], + [ 7.6950167, 46.5776931 ], + [ 7.6951484, 46.5777766 ], + [ 7.6952413, 46.5779337 ], + [ 7.6953323000000005, 46.5780456 ], + [ 7.6953835, 46.578186099999996 ], + [ 7.6954172, 46.5782422 ], + [ 7.6956047, 46.5782407 ], + [ 7.6957107, 46.5782341 ], + [ 7.6959053, 46.5781818 ], + [ 7.6959319, 46.5782773 ], + [ 7.6960451, 46.5782539 ], + [ 7.6961335, 46.5781574 ], + [ 7.6962404, 46.5781847 ], + [ 7.6963068, 46.5782574 ], + [ 7.6963408, 46.5783755 ], + [ 7.6963268, 46.5785221 ], + [ 7.6963044, 46.5786124 ], + [ 7.6962813, 46.5787197 ], + [ 7.6962918, 46.5788661 ], + [ 7.6962697, 46.5790185 ], + [ 7.6963452, 46.5791249 ], + [ 7.6964779, 46.5792591 ], + [ 7.6965771, 46.5793711 ], + [ 7.6966363, 46.5794664 ], + [ 7.6966621, 46.5795845 ], + [ 7.6966981, 46.5797701 ], + [ 7.6967494, 46.5799219 ], + [ 7.6967272, 46.5800686 ], + [ 7.6966968, 46.5801873 ], + [ 7.6965595, 46.5802898 ], + [ 7.6964022, 46.5801333 ], + [ 7.6962439, 46.5799316 ], + [ 7.6960786, 46.5798034 ], + [ 7.6958979, 46.5797147 ], + [ 7.6956024, 46.579644 ], + [ 7.6952915, 46.5795845 ], + [ 7.695063, 46.5795413 ], + [ 7.6947614, 46.5795607 ], + [ 7.6944669, 46.5795349 ], + [ 7.6941326, 46.5795207 ], + [ 7.6938797, 46.5795058 ], + [ 7.6935934, 46.5794688 ], + [ 7.6933242, 46.5794485 ], + [ 7.6930543, 46.5794394 ], + [ 7.6927282, 46.5794589 ], + [ 7.6924277, 46.5795346 ], + [ 7.692063, 46.5796673 ], + [ 7.6917801, 46.5798443 ], + [ 7.6914992, 46.5801003 ], + [ 7.6913387, 46.5803101 ], + [ 7.6912196999999995, 46.580497 ], + [ 7.6910682999999995, 46.580718 ], + [ 7.690982, 46.5809159 ], + [ 7.6908949, 46.5811253 ], + [ 7.6908178, 46.5813682 ], + [ 7.6907887, 46.5816107 ], + [ 7.6907594, 46.581797 ], + [ 7.6907537999999995, 46.5819886 ], + [ 7.6907745, 46.5822365 ], + [ 7.6908353, 46.5825009 ], + [ 7.6908794, 46.5826977 ], + [ 7.6909899, 46.5829504 ], + [ 7.6911656, 46.5832195 ], + [ 7.6914149, 46.5835161 ], + [ 7.6937625, 46.5864444 ], + [ 7.6941539, 46.5869653 ], + [ 7.694246, 46.5871167 ], + [ 7.6942797, 46.587172699999996 ], + [ 7.6942728, 46.5872686 ], + [ 7.6942424, 46.5873871 ], + [ 7.6942774, 46.5875448 ], + [ 7.6943612, 46.5876906 ], + [ 7.6944276, 46.5877633 ], + [ 7.6944532, 46.5878251 ], + [ 7.694438, 46.5878928 ], + [ 7.6944312, 46.5879887 ], + [ 7.6944578, 46.5881125 ], + [ 7.6944847, 46.5882812 ], + [ 7.6945217, 46.5885064 ], + [ 7.6944858, 46.5888448 ], + [ 7.6944728, 46.589031 ], + [ 7.6944192000000005, 46.5892568 ], + [ 7.6943972, 46.5894317 ], + [ 7.6944077, 46.5895838 ], + [ 7.6944669999999995, 46.5897073 ], + [ 7.69456, 46.5898813 ], + [ 7.6946685, 46.5900606 ], + [ 7.6947453, 46.5902685 ], + [ 7.6948383, 46.5904481 ], + [ 7.6949152, 46.5906617 ], + [ 7.6950003, 46.5909032 ], + [ 7.6950447, 46.5911509 ], + [ 7.6950727, 46.5913704 ], + [ 7.6950761, 46.591579 ], + [ 7.6950724, 46.5918157 ], + [ 7.6950598, 46.592075 ], + [ 7.6950549, 46.592249699999996 ], + [ 7.6950503, 46.5924864 ], + [ 7.6950283, 46.5926726 ], + [ 7.6949745, 46.5928478 ], + [ 7.6948964, 46.593045599999996 ], + [ 7.6948173, 46.5932323 ], + [ 7.6947065, 46.5934305 ], + [ 7.6945551, 46.5936515 ], + [ 7.6944198, 46.5938554 ], + [ 7.6943418999999995, 46.5941041 ], + [ 7.6942709, 46.5942625 ], + [ 7.6942322999999995, 46.5943923 ], + [ 7.6942021, 46.5945618 ], + [ 7.6942462, 46.5947417 ], + [ 7.6942965999999995, 46.5948653 ], + [ 7.6943068, 46.5949554 ], + [ 7.6942825, 46.5950007 ], + [ 7.6942102, 46.595052 ], + [ 7.6940644, 46.5950983 ], + [ 7.6940729, 46.5951657 ], + [ 7.694067, 46.5952955 ], + [ 7.6940447, 46.595414 ], + [ 7.6940215, 46.5955099 ], + [ 7.6939098, 46.59568 ], + [ 7.6938559, 46.5958551 ], + [ 7.6938664, 46.5959959 ], + [ 7.6938759, 46.5961086 ], + [ 7.6938452999999996, 46.596199 ], + [ 7.6937814, 46.5963122 ], + [ 7.6936205, 46.5964262 ], + [ 7.6936786999999995, 46.5964934 ], + [ 7.6937045, 46.596606 ], + [ 7.6936986, 46.5967356 ], + [ 7.6936612, 46.5969275 ], + [ 7.6936077, 46.5971815 ], + [ 7.6934528, 46.5977182 ], + [ 7.6933118, 46.5980743 ], + [ 7.6932069, 46.5981485 ], + [ 7.6930765, 46.5981665 ], + [ 7.692905, 46.5981171 ], + [ 7.6926347, 46.5980461 ], + [ 7.6922899000000005, 46.597925 ], + [ 7.6919615, 46.5978318 ], + [ 7.6917158, 46.5977719 ], + [ 7.691216, 46.5976407 ], + [ 7.6908873, 46.59748 ], + [ 7.6907730999999995, 46.5974809 ], + [ 7.6907734, 46.5975317 ], + [ 7.6908245, 46.5976438 ], + [ 7.6908584, 46.5977395 ], + [ 7.6908115, 46.5978412 ], + [ 7.6908455, 46.5979593 ], + [ 7.6909046, 46.5980378 ], + [ 7.6909956, 46.5981327 ], + [ 7.6910295, 46.5982228 ], + [ 7.6910398, 46.5983409 ], + [ 7.6911401, 46.5985036 ], + [ 7.6913054, 46.5986319 ], + [ 7.691478, 46.5987318 ], + [ 7.6915534, 46.5988101 ], + [ 7.6915211, 46.5988781 ], + [ 7.6914404, 46.59889 ], + [ 7.6913008, 46.5988686 ], + [ 7.6911039, 46.598796899999996 ], + [ 7.6909151, 46.5987196 ], + [ 7.6908079, 46.5986472 ], + [ 7.6906925, 46.5985523 ], + [ 7.690031, 46.5985634 ], + [ 7.6898957, 46.5987449 ], + [ 7.6898082, 46.5988808 ], + [ 7.6896861, 46.5989212 ], + [ 7.6894016, 46.5989686 ], + [ 7.6890756, 46.599022 ], + [ 7.689078, 46.5991855 ], + [ 7.6890475, 46.5992984 ], + [ 7.6889672000000004, 46.5993948 ], + [ 7.688854, 46.5994239 ], + [ 7.6886666, 46.5994762 ], + [ 7.6885047, 46.5995677 ], + [ 7.6883916, 46.5996193 ], + [ 7.6883365999999995, 46.5997268 ], + [ 7.6883625, 46.5998562 ], + [ 7.6884299, 46.5999741 ], + [ 7.6885046, 46.6000749 ], + [ 7.6885555, 46.6001533 ], + [ 7.6885558, 46.6002153 ], + [ 7.688508, 46.6002777 ], + [ 7.6884439, 46.6003515 ], + [ 7.6883389, 46.6004088 ], + [ 7.688177, 46.6005002 ], + [ 7.6879916, 46.6006145 ], + [ 7.6879113, 46.6007109 ], + [ 7.6878891, 46.6008577 ], + [ 7.6878924, 46.6010436 ], + [ 7.6878541, 46.601213 ], + [ 7.6877911, 46.6013487 ], + [ 7.6877189999999995, 46.6014676 ], + [ 7.6876316, 46.6016149 ], + [ 7.6876257, 46.6017502 ], + [ 7.6876781, 46.6019697 ], + [ 7.6877978, 46.6022842 ], + [ 7.687587, 46.6023761 ], + [ 7.687629, 46.6024772 ], + [ 7.6877384, 46.6026623 ], + [ 7.687904, 46.6028413 ], + [ 7.6880529, 46.6029471 ], + [ 7.6880866999999995, 46.6030257 ], + [ 7.6880973, 46.6031834 ], + [ 7.6880926, 46.6034089 ], + [ 7.6881042, 46.6036231 ], + [ 7.6880806, 46.6036514 ], + [ 7.687991, 46.603669 ], + [ 7.6878117, 46.60371 ], + [ 7.6877474, 46.6037443 ], + [ 7.6876916, 46.6038406 ], + [ 7.6876124, 46.6039934 ], + [ 7.687477, 46.6041748 ], + [ 7.6873734, 46.6043672 ], + [ 7.6873606, 46.6045872 ], + [ 7.6873803, 46.6048011 ], + [ 7.6874313999999995, 46.604919 ], + [ 7.6876131, 46.605036 ], + [ 7.6878601, 46.6051861 ], + [ 7.6880735, 46.6052801 ], + [ 7.6884846, 46.6054515 ], + [ 7.6886733, 46.6055007 ], + [ 7.6889099, 46.6055157 ], + [ 7.6891301, 46.6055026 ], + [ 7.6893096, 46.6054956 ], + [ 7.6896348, 46.6054365 ], + [ 7.6899037, 46.6053722 ], + [ 7.6901871, 46.6052742 ], + [ 7.690399, 46.6052217 ], + [ 7.6906509, 46.6051858 ], + [ 7.6907324, 46.6051852 ], + [ 7.6908138, 46.6051281 ], + [ 7.6908943, 46.6050767 ], + [ 7.6909583, 46.6049917 ], + [ 7.6911447, 46.6049057 ], + [ 7.6913078, 46.6048931 ], + [ 7.6914141, 46.6049373 ], + [ 7.6915538, 46.6049812 ], + [ 7.6916773, 46.6050479 ], + [ 7.691808, 46.6050806 ], + [ 7.6919148, 46.6050797 ], + [ 7.6920535, 46.6050841 ], + [ 7.6921678, 46.6050888 ], + [ 7.6922495, 46.6051221 ], + [ 7.6924218, 46.6051601 ], + [ 7.6925116, 46.6051818 ], + [ 7.6926095, 46.6051698 ], + [ 7.692691, 46.6051692 ], + [ 7.6928541, 46.6051508 ], + [ 7.6930244, 46.6050987 ], + [ 7.6932282, 46.6050689 ], + [ 7.6934331, 46.6050954 ], + [ 7.6935626, 46.6050662 ], + [ 7.6936184999999995, 46.6049699 ], + [ 7.6936653, 46.6048624 ], + [ 7.6936721, 46.6047609 ], + [ 7.693727, 46.6046308 ], + [ 7.6937829, 46.6045571 ], + [ 7.6938644, 46.6045395 ], + [ 7.6939542, 46.6045558 ], + [ 7.6940042, 46.604606 ], + [ 7.6940217, 46.6046736 ], + [ 7.6940392, 46.6047466 ], + [ 7.6940332, 46.6048764 ], + [ 7.6940029, 46.6050118 ], + [ 7.6939073, 46.6051535 ], + [ 7.6938353, 46.6052837 ], + [ 7.6938131, 46.6054191 ], + [ 7.6938072, 46.6055545 ], + [ 7.6937514, 46.6056507 ], + [ 7.6936384, 46.6057305 ], + [ 7.6934926, 46.6057937 ], + [ 7.6932734, 46.6058406 ], + [ 7.6929974, 46.6059556 ], + [ 7.6928038, 46.6060699 ], + [ 7.6926348, 46.6062066 ], + [ 7.6925057, 46.6063485 ], + [ 7.6923693, 46.6064793 ], + [ 7.6922166, 46.6066213 ], + [ 7.6921116, 46.6066842 ], + [ 7.6918202, 46.6068219 ], + [ 7.6915289, 46.6069821 ], + [ 7.6912938, 46.6071192 ], + [ 7.6911176999999995, 46.6073179 ], + [ 7.6910558, 46.6075157 ], + [ 7.6910591, 46.6077129 ], + [ 7.6910779, 46.607893 ], + [ 7.6910475, 46.6080061 ], + [ 7.6907435, 46.6084312 ], + [ 7.6904231, 46.6088171 ], + [ 7.690127, 46.6091802 ], + [ 7.6899113, 46.609475 ], + [ 7.6897432, 46.6096398 ], + [ 7.6895732, 46.6097427 ], + [ 7.6892574, 46.6099087 ], + [ 7.6889814, 46.6100181 ], + [ 7.6887705, 46.6101043 ], + [ 7.688748, 46.6101833 ], + [ 7.6888053, 46.6102222 ], + [ 7.6889706, 46.6103336 ], + [ 7.6890871, 46.6104793 ], + [ 7.6891465, 46.6106084 ], + [ 7.6892142, 46.6107938 ], + [ 7.689242, 46.610974 ], + [ 7.6894051999999995, 46.6109951 ], + [ 7.6894552, 46.6110454 ], + [ 7.6894881, 46.6110846 ], + [ 7.6894891, 46.6111353 ], + [ 7.6894494, 46.6111808 ], + [ 7.6893435, 46.6112267 ], + [ 7.6892059, 46.6112899 ], + [ 7.6889867, 46.611348 ], + [ 7.6888727, 46.6113997 ], + [ 7.6887678, 46.6114737 ], + [ 7.6887457, 46.6116261 ], + [ 7.6887235, 46.6117671 ], + [ 7.6887267, 46.611925 ], + [ 7.6886627, 46.6120382 ], + [ 7.6885251, 46.6121012 ], + [ 7.6885273, 46.6122196 ], + [ 7.6884797, 46.6123214 ], + [ 7.6883758, 46.6124463 ], + [ 7.688046, 46.6127646 ], + [ 7.6879655, 46.6128273 ], + [ 7.6879074, 46.6127882 ], + [ 7.6878502, 46.6127605 ], + [ 7.6877686, 46.6127613 ], + [ 7.6877442, 46.6127783 ], + [ 7.687729, 46.6128517 ], + [ 7.6877303999999995, 46.6129644 ], + [ 7.6877896, 46.613071 ], + [ 7.6879051, 46.6131547 ], + [ 7.6877510000000004, 46.6131953 ], + [ 7.6875715, 46.6131968 ], + [ 7.6873992, 46.6131643 ], + [ 7.6872338, 46.6130305 ], + [ 7.6870847, 46.6128964 ], + [ 7.6869531, 46.6128356 ], + [ 7.6868634, 46.6128476 ], + [ 7.6868563, 46.6128983 ], + [ 7.6868574, 46.6129716 ], + [ 7.6869087, 46.6131232 ], + [ 7.6870182, 46.6133421 ], + [ 7.6871032, 46.6135387 ], + [ 7.6871627, 46.6137074 ], + [ 7.6871485, 46.6138145 ], + [ 7.6867476, 46.6137614 ], + [ 7.6868314, 46.6138734 ], + [ 7.687003, 46.6139284 ], + [ 7.6872008, 46.6140226 ], + [ 7.6874967, 46.6141386 ], + [ 7.6878092, 46.6142994 ], + [ 7.68795, 46.6144054 ], + [ 7.6880737, 46.6145283 ], + [ 7.688133, 46.6146461 ], + [ 7.688167, 46.6147474 ], + [ 7.688266, 46.6148199 ], + [ 7.6883161, 46.6148871 ], + [ 7.6883834, 46.6149824 ], + [ 7.6883848, 46.6150893 ], + [ 7.6883381, 46.6152419 ], + [ 7.6882760999999995, 46.6154172 ], + [ 7.6882459, 46.6155809 ], + [ 7.688346, 46.6157039 ], + [ 7.6885069, 46.6155617 ], + [ 7.6885863, 46.615454 ], + [ 7.688626, 46.6153748 ], + [ 7.6886738, 46.6153012 ], + [ 7.6888835, 46.6151416 ], + [ 7.689401, 46.6148219 ], + [ 7.6901679, 46.6142801 ], + [ 7.6907319, 46.613807800000004 ], + [ 7.6910608, 46.6134725 ], + [ 7.6913346, 46.6132223 ], + [ 7.6914721, 46.6131479 ], + [ 7.6917412, 46.6131289 ], + [ 7.6918881, 46.613122 ], + [ 7.6920991999999995, 46.6130753 ], + [ 7.6924415, 46.6130104 ], + [ 7.6928728, 46.6129392 ], + [ 7.6930838999999995, 46.6128868 ], + [ 7.6932782, 46.6127555 ], + [ 7.6934299, 46.6125626 ], + [ 7.6938496, 46.611759 ], + [ 7.694086, 46.6112105 ], + [ 7.6941711, 46.6109166 ], + [ 7.6941667, 46.6106631 ], + [ 7.694154, 46.6103983 ], + [ 7.6941748, 46.6101332 ], + [ 7.6942704, 46.6099972 ], + [ 7.6944008, 46.6099679 ], + [ 7.6945966, 46.6099776 ], + [ 7.6948587, 46.6100205 ], + [ 7.6950628, 46.6100414 ], + [ 7.6952586, 46.6100398 ], + [ 7.695544, 46.6100092 ], + [ 7.6958691, 46.6099333 ], + [ 7.6962828, 46.6097609 ], + [ 7.6965021, 46.6097365 ], + [ 7.6966896, 46.6096955 ], + [ 7.696925, 46.6096203 ], + [ 7.697037, 46.6094954 ], + [ 7.6971081, 46.609354 ], + [ 7.69713, 46.6091564 ], + [ 7.6971277, 46.6090268 ], + [ 7.6971416999999995, 46.6088802 ], + [ 7.6972362, 46.6086766 ], + [ 7.6973234999999995, 46.6084955 ], + [ 7.6973772, 46.6083034 ], + [ 7.6973994, 46.6081736 ], + [ 7.6973073, 46.6080223 ], + [ 7.6971266, 46.6079223 ], + [ 7.696897, 46.6078621 ], + [ 7.6966106, 46.607842 ], + [ 7.6963331, 46.6078217 ], + [ 7.6961689, 46.6077724 ], + [ 7.6961338999999995, 46.6076262 ], + [ 7.6961725, 46.6075019 ], + [ 7.6962925, 46.607343 ], + [ 7.6964288, 46.6071954 ], + [ 7.6966477, 46.6070752 ], + [ 7.6968586, 46.606989 ], + [ 7.6970767, 46.6068857 ], + [ 7.6972874000000004, 46.60676 ], + [ 7.6973411, 46.6065623 ], + [ 7.6973868, 46.6063759 ], + [ 7.6974169, 46.6062066 ], + [ 7.6975288, 46.6060592 ], + [ 7.6975997, 46.6058783 ], + [ 7.6975883, 46.6057036 ], + [ 7.6975522, 46.6055011 ], + [ 7.6976313, 46.6053201 ], + [ 7.6979051, 46.6050867 ], + [ 7.6981964, 46.6049266 ], + [ 7.6985879, 46.6049064 ], + [ 7.698758, 46.6048262 ], + [ 7.6989271, 46.6047063 ], + [ 7.6991285, 46.6045188 ], + [ 7.6992974, 46.6043765 ], + [ 7.6995224, 46.6041661 ], + [ 7.6997462, 46.6038825 ], + [ 7.7000047, 46.6037 ], + [ 7.7003765, 46.6034996 ], + [ 7.7008787, 46.6032701 ], + [ 7.7013411, 46.603069 ], + [ 7.7019248000000005, 46.6028162 ], + [ 7.7025167, 46.6025915 ], + [ 7.703124, 46.6023272 ], + [ 7.7037332, 46.6021362 ], + [ 7.7038463, 46.6020676 ], + [ 7.7039173, 46.6019204 ], + [ 7.703971, 46.6017115 ], + [ 7.7040173, 46.6015139 ], + [ 7.7040302, 46.6013053 ], + [ 7.7041096, 46.6012088 ], + [ 7.7042398, 46.60114 ], + [ 7.7044253, 46.6010484 ], + [ 7.7046432, 46.6009 ], + [ 7.7048621, 46.6007967 ], + [ 7.7050229, 46.6006377 ], + [ 7.7051429, 46.6004901 ], + [ 7.7051978, 46.6003713 ], + [ 7.7052768, 46.6001959 ], + [ 7.7053559, 46.600009299999996 ], + [ 7.7055309, 46.5997711 ], + [ 7.705723, 46.5995272 ], + [ 7.7059398, 46.5993168 ], + [ 7.7060014, 46.5990796 ], + [ 7.7060877, 46.5988872 ], + [ 7.7060679, 46.598679 ], + [ 7.7060992, 46.5985717 ], + [ 7.7061551, 46.5984866 ], + [ 7.7063405, 46.5983667 ], + [ 7.7065582, 46.5981959 ], + [ 7.7067005, 46.5979297 ], + [ 7.70674, 46.5978393 ], + [ 7.7067958999999995, 46.5977655 ], + [ 7.7069008, 46.5976971 ], + [ 7.7069903, 46.5976512 ], + [ 7.7070371, 46.5975551 ], + [ 7.7070439, 46.5974534 ], + [ 7.7070172, 46.5973184 ], + [ 7.7070146, 46.5971269 ], + [ 7.7070276, 46.5969521 ], + [ 7.7070253, 46.5968168 ], + [ 7.7070638, 46.596687 ], + [ 7.7071838, 46.5965394 ], + [ 7.7072894, 46.5964708 ], + [ 7.7074668, 46.5963792 ], + [ 7.7075888, 46.5963106 ], + [ 7.7077183, 46.5962645 ], + [ 7.707766, 46.5961851 ], + [ 7.7078463, 46.5960998 ], + [ 7.7079757, 46.5960369 ], + [ 7.7081376, 46.5959623 ], + [ 7.7083006, 46.595927 ], + [ 7.7084545, 46.5958694 ], + [ 7.7085685, 46.5958458 ], + [ 7.7086735, 46.5957999 ], + [ 7.7087050999999995, 46.5957602 ], + [ 7.7087284, 46.5956755 ], + [ 7.708776, 46.5955737 ], + [ 7.7087982, 46.5954607 ], + [ 7.7088296, 46.5953703 ], + [ 7.708869, 46.595263 ], + [ 7.7089006, 46.5952232 ], + [ 7.7089319, 46.5951216 ], + [ 7.7089868, 46.594997 ], + [ 7.7089853999999995, 46.5948843 ], + [ 7.7090087, 46.5948221 ], + [ 7.709081, 46.5947539 ], + [ 7.7091534, 46.5947138 ], + [ 7.7092676, 46.5947243 ], + [ 7.7093663, 46.5947291 ], + [ 7.7094561, 46.5947452 ], + [ 7.7095785, 46.5947554 ], + [ 7.7097171, 46.5947374 ], + [ 7.7098312, 46.5947139 ], + [ 7.7099849, 46.5946337 ], + [ 7.7101468, 46.5945534 ], + [ 7.7102753, 46.5944679 ], + [ 7.71038, 46.5943768 ], + [ 7.710445, 46.5943255 ], + [ 7.7105256, 46.5942966 ], + [ 7.7106316, 46.5942844 ], + [ 7.7107619, 46.5942496 ], + [ 7.7108669, 46.5942036 ], + [ 7.7109144, 46.5940905 ], + [ 7.7109368, 46.5939888 ], + [ 7.7109597999999995, 46.5938703 ], + [ 7.7109904, 46.5937798 ], + [ 7.7110544, 46.5937004 ], + [ 7.7112408, 46.5936312 ], + [ 7.7114352, 46.5935169 ], + [ 7.7115401, 46.5934541 ], + [ 7.7115796, 46.5933579 ], + [ 7.711618, 46.5932167 ], + [ 7.7116811, 46.5931148 ], + [ 7.7117787, 46.5930576 ], + [ 7.7119254999999995, 46.5930563 ], + [ 7.7121528, 46.593015 ], + [ 7.7123404, 46.5930078 ], + [ 7.7124626, 46.5929785 ], + [ 7.712535, 46.5929386 ], + [ 7.7126233, 46.5928363 ], + [ 7.7127271, 46.5927001 ], + [ 7.7128144, 46.5925529 ], + [ 7.712903, 46.5924901 ], + [ 7.7130578, 46.5924663 ], + [ 7.7132453, 46.5924422 ], + [ 7.7134082, 46.5924014 ], + [ 7.7134958000000005, 46.592310499999996 ], + [ 7.7135434, 46.5922144 ], + [ 7.7135992, 46.5921123 ], + [ 7.7136785, 46.5919934 ], + [ 7.7137751, 46.5918911 ], + [ 7.7139043, 46.5918055 ], + [ 7.714098, 46.5917136 ], + [ 7.714276, 46.5915939 ], + [ 7.7144205, 46.5914629 ], + [ 7.7145731, 46.5913265 ], + [ 7.714735, 46.5912405 ], + [ 7.7149304999999995, 46.5911882 ], + [ 7.7152555, 46.5911178 ], + [ 7.7155154, 46.5910593 ], + [ 7.7158404, 46.590972 ], + [ 7.7161081, 46.5908684 ], + [ 7.7163994, 46.590725 ], + [ 7.7166007, 46.5905485 ], + [ 7.7168092, 46.5903214 ], + [ 7.7170237, 46.590004 ], + [ 7.7172332, 46.5898389 ], + [ 7.7173869, 46.5897586 ], + [ 7.7176629, 46.589666 ], + [ 7.7178984, 46.5896247 ], + [ 7.7180938999999995, 46.589578 ], + [ 7.7182151999999995, 46.5895319 ], + [ 7.71832, 46.5894577 ], + [ 7.7183908, 46.5892711 ], + [ 7.7184442, 46.5890283 ], + [ 7.7184478, 46.5887859 ], + [ 7.7185013, 46.5885601 ], + [ 7.7185803, 46.5883848 ], + [ 7.7188391, 46.5882755 ], + [ 7.7191151, 46.5881829 ], + [ 7.7193503, 46.588102 ], + [ 7.719512, 46.5879767 ], + [ 7.719574, 46.587824 ], + [ 7.7196612, 46.5876712 ], + [ 7.7197659, 46.5875631 ], + [ 7.7199359, 46.5874885 ], + [ 7.7202364, 46.58739 ], + [ 7.720488, 46.5873317 ], + [ 7.7206428, 46.5872852 ], + [ 7.7207639, 46.5872109 ], + [ 7.7208351, 46.5871032 ], + [ 7.7209792, 46.5869105 ], + [ 7.7212203, 46.5866999 ], + [ 7.7216164, 46.5864993 ], + [ 7.7219086, 46.586384 ], + [ 7.7220148, 46.5864226 ], + [ 7.7222033, 46.5864492 ], + [ 7.7223908, 46.5864251 ], + [ 7.7226344000000005, 46.5863892 ], + [ 7.7228871, 46.5863588 ], + [ 7.7230259, 46.5863915 ], + [ 7.7231748, 46.5864804 ], + [ 7.7233718, 46.5865802 ], + [ 7.7236189, 46.5867247 ], + [ 7.7239239, 46.5868854 ], + [ 7.7243677, 46.5870677 ], + [ 7.7246219, 46.5871726 ], + [ 7.7247628, 46.5872954 ], + [ 7.7249855, 46.5874682 ], + [ 7.7256204, 46.5878573 ], + [ 7.7262902, 46.5883644 ], + [ 7.7272888, 46.5890661 ], + [ 7.7282524, 46.5896102 ], + [ 7.728623, 46.5898268 ], + [ 7.7289283, 46.5900441 ], + [ 7.7290541, 46.5902346 ], + [ 7.729335, 46.5904521 ], + [ 7.7295994, 46.5906358 ], + [ 7.7298384, 46.5907859 ], + [ 7.7300865, 46.5909811 ], + [ 7.73035, 46.5911536 ], + [ 7.7305806, 46.5912699 ], + [ 7.73081, 46.5913131 ], + [ 7.7310222, 46.5913395 ], + [ 7.7312271, 46.5913715 ], + [ 7.7315207, 46.5913803 ], + [ 7.7318072, 46.5914286 ], + [ 7.7319716, 46.5915173 ], + [ 7.7321778, 46.591634 ], + [ 7.7324167, 46.5917728 ], + [ 7.7326648, 46.5919624 ], + [ 7.7328700999999995, 46.5920733 ], + [ 7.7331589, 46.5922398 ], + [ 7.7333814, 46.592362 ], + [ 7.7336927, 46.5924721 ], + [ 7.7340209, 46.5925481 ], + [ 7.7343719, 46.5925959 ], + [ 7.7347482, 46.592649 ], + [ 7.7351814999999995, 46.5927016 ], + [ 7.7357792, 46.5928318 ], + [ 7.7359365, 46.5929545 ], + [ 7.7360703, 46.5931224 ], + [ 7.7361287999999995, 46.5932233 ], + [ 7.7362277, 46.5932676 ], + [ 7.7363501, 46.5932834 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "JBG0021", + "country" : "CHE", + "name" : [ + { + "text" : "Eidgenössisches Jagdbanngebiet Kiental", + "lang" : "de-CH" + }, + { + "text" : "District franc fédéral Kiental", + "lang" : "fr-CH" + }, + { + "text" : "Bandita federale di caccia Kiental", + "lang" : "it-CH" + }, + { + "text" : "Federal Game Reserve Kiental", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6124088, 46.8262078 ], + [ 7.6125062, 46.8262558 ], + [ 7.6128763, 46.8264095 ], + [ 7.6130873999999995, 46.8265357 ], + [ 7.6149923, 46.8283074 ], + [ 7.6152744, 46.8282542 ], + [ 7.615727, 46.8281661 ], + [ 7.6160109, 46.8281127 ], + [ 7.6159668, 46.8280691 ], + [ 7.6159117, 46.8279875 ], + [ 7.6158785, 46.8279011 ], + [ 7.615861, 46.8278035 ], + [ 7.6158576, 46.8276607 ], + [ 7.6158497, 46.8275175 ], + [ 7.6158173, 46.8273789 ], + [ 7.615715, 46.8271366 ], + [ 7.6155969, 46.8269048 ], + [ 7.6155479, 46.826769 ], + [ 7.6154985, 46.8267771 ], + [ 7.6150602, 46.8265151 ], + [ 7.6148719, 46.8262009 ], + [ 7.6143778, 46.8262889 ], + [ 7.6140025, 46.8263558 ], + [ 7.6135197, 46.8262585 ], + [ 7.6131942, 46.8263967 ], + [ 7.6129849, 46.8263137 ], + [ 7.612645, 46.8261751 ], + [ 7.6125359, 46.826127 ], + [ 7.6127179, 46.8259498 ], + [ 7.6128234, 46.826006 ], + [ 7.6128514, 46.8259838 ], + [ 7.6119587, 46.8255151 ], + [ 7.6119281, 46.8254727 ], + [ 7.6119587, 46.8254296 ], + [ 7.6116641, 46.8255856 ], + [ 7.6117264, 46.8255585 ], + [ 7.6118163, 46.8257113 ], + [ 7.6119269, 46.8258554 ], + [ 7.6120656, 46.8259875 ], + [ 7.6122293, 46.8261045 ], + [ 7.6124088, 46.8262078 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VBS_32", + "country" : "CHE", + "name" : [ + { + "text" : "VBS_32 Herbligen", + "lang" : "de-CH" + }, + { + "text" : "VBS_32 Herbligen", + "lang" : "fr-CH" + }, + { + "text" : "VBS_32 Herbligen", + "lang" : "it-CH" + }, + { + "text" : "VBS_32 Herbligen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "regulationExemption" : "YES", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Eidgenössisches Departement für Verteidigung, Bevölkerungsschutz und Sport (VBS)", + "lang" : "de-CH" + }, + { + "text" : "Département fédéral de la défense, de la protection de la population et des sports (DDPS)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento federale della difesa, della protezione della popolazione e dello sport (DDPS)", + "lang" : "it-CH" + }, + { + "text" : "Federal Department of Defence, Civil Protection and Sport (DDPS)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Lageverfolgungszentrum der Armee LVZ A", + "lang" : "de-CH" + }, + { + "text" : "Centre de suivi de la situation de l’armée, CSS A", + "lang" : "fr-CH" + }, + { + "text" : "Centro di monitoraggio della situazione dell’esercito, Centro mon sit Es", + "lang" : "it-CH" + }, + { + "text" : "Joint Operation Center, JOC", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vtg.admin.ch/en/joint-operations-command", + "email" : "lvz.op@vtg.admin.ch", + "phone" : "+41 58 464 96 43", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.579355, 47.1750458 ], + [ 7.5793492, 47.1749045 ], + [ 7.5793326, 47.1747637 ], + [ 7.5793052, 47.1746237 ], + [ 7.5792671, 47.1744848 ], + [ 7.5792184, 47.1743475 ], + [ 7.5791592, 47.1742121 ], + [ 7.5790896, 47.174079 ], + [ 7.57901, 47.1739486 ], + [ 7.5789205, 47.1738212 ], + [ 7.5788212999999995, 47.1736972 ], + [ 7.5787128, 47.1735769 ], + [ 7.5785951, 47.1734606 ], + [ 7.5784687, 47.1733486 ], + [ 7.5783339, 47.1732414 ], + [ 7.578191, 47.1731391 ], + [ 7.5780405, 47.173042 ], + [ 7.5778827, 47.1729505 ], + [ 7.5777181, 47.1728647 ], + [ 7.5775472, 47.1727848 ], + [ 7.5773703, 47.1727112 ], + [ 7.5771881, 47.172644 ], + [ 7.5770009, 47.1725834 ], + [ 7.5768094, 47.1725296 ], + [ 7.576614, 47.1724827 ], + [ 7.5764152, 47.1724428 ], + [ 7.5762137, 47.1724101 ], + [ 7.5760099, 47.1723846 ], + [ 7.5758045, 47.1723664 ], + [ 7.5755979, 47.1723555 ], + [ 7.5753908, 47.1723521 ], + [ 7.5751837, 47.172356 ], + [ 7.5749772, 47.1723673 ], + [ 7.5747719, 47.172386 ], + [ 7.5745682, 47.172412 ], + [ 7.5743669, 47.1724452 ], + [ 7.5741683, 47.1724856 ], + [ 7.5739732, 47.172533 ], + [ 7.5737819, 47.1725872 ], + [ 7.5735951, 47.1726483 ], + [ 7.5734132, 47.1727159 ], + [ 7.5732367, 47.1727899 ], + [ 7.5730661999999995, 47.1728701 ], + [ 7.572902, 47.1729563 ], + [ 7.5727447, 47.1730483 ], + [ 7.5725947, 47.1731457 ], + [ 7.5724523, 47.1732483 ], + [ 7.572318, 47.1733559 ], + [ 7.5721922, 47.1734681 ], + [ 7.5720751, 47.1735847 ], + [ 7.5719672, 47.1737053 ], + [ 7.5718686, 47.1738295 ], + [ 7.5717797000000004, 47.1739572 ], + [ 7.5717008, 47.1740878 ], + [ 7.571632, 47.174221 ], + [ 7.5715734999999995, 47.1743565 ], + [ 7.5715254, 47.174494 ], + [ 7.571488, 47.1746329 ], + [ 7.5714613, 47.174773 ], + [ 7.5714454, 47.1749139 ], + [ 7.5714403, 47.1750551 ], + [ 7.5714461, 47.1751963 ], + [ 7.5714627, 47.1753371 ], + [ 7.5714901, 47.1754772 ], + [ 7.5715281999999995, 47.175616 ], + [ 7.5715769, 47.1757533 ], + [ 7.5716361, 47.1758887 ], + [ 7.5717056, 47.1760218 ], + [ 7.5717852, 47.1761523 ], + [ 7.5718747, 47.1762797 ], + [ 7.5719739, 47.1764037 ], + [ 7.5720824, 47.176524 ], + [ 7.5722001, 47.1766403 ], + [ 7.5723265, 47.1767523 ], + [ 7.5724613, 47.1768595 ], + [ 7.5726042, 47.1769618 ], + [ 7.5727547, 47.1770589 ], + [ 7.5729125, 47.1771505 ], + [ 7.5730771, 47.1772363 ], + [ 7.5732479999999995, 47.1773161 ], + [ 7.5734249, 47.1773897 ], + [ 7.5736071, 47.1774569 ], + [ 7.5737943, 47.1775175 ], + [ 7.5739858, 47.1775714 ], + [ 7.5741813, 47.1776183 ], + [ 7.57438, 47.1776582 ], + [ 7.5745816, 47.1776909 ], + [ 7.5747854, 47.1777164 ], + [ 7.5749908, 47.1777346 ], + [ 7.5751974, 47.1777455 ], + [ 7.5754045, 47.1777489 ], + [ 7.5756116, 47.177745 ], + [ 7.5758182, 47.1777336 ], + [ 7.5760235, 47.177715 ], + [ 7.5762272, 47.177689 ], + [ 7.5764286, 47.1776558 ], + [ 7.5766271, 47.1776154 ], + [ 7.5768223, 47.177568 ], + [ 7.5770136, 47.1775137 ], + [ 7.5772005, 47.1774527 ], + [ 7.5773824, 47.177385 ], + [ 7.5775588, 47.177311 ], + [ 7.5777294, 47.1772308 ], + [ 7.5778935, 47.1771446 ], + [ 7.5780508, 47.1770526 ], + [ 7.5782009, 47.1769552 ], + [ 7.5783432, 47.1768526 ], + [ 7.5784775, 47.176745 ], + [ 7.5786034, 47.1766328 ], + [ 7.5787204, 47.1765162 ], + [ 7.5788284, 47.1763956 ], + [ 7.5789269, 47.1762713 ], + [ 7.5790158, 47.1761437 ], + [ 7.5790947, 47.1760131 ], + [ 7.5791635, 47.1758798 ], + [ 7.579222, 47.1757443 ], + [ 7.57927, 47.1756069 ], + [ 7.5793074, 47.1754679 ], + [ 7.5793341, 47.1753278 ], + [ 7.57935, 47.175187 ], + [ 7.579355, 47.1750458 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0043", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Gerlafingen", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Gerlafingen", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Gerlafingen", + "lang" : "it-CH" + }, + { + "text" : "Substation Gerlafingen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4918294, 47.3923795 ], + [ 7.4930189, 47.3929795 ], + [ 7.4939089, 47.3934272 ], + [ 7.494158, 47.3936049 ], + [ 7.4947022, 47.3934988 ], + [ 7.4947216, 47.3934947 ], + [ 7.4947403999999995, 47.3934894 ], + [ 7.4947588, 47.3934828 ], + [ 7.4947763, 47.3934752 ], + [ 7.4947927, 47.3934665 ], + [ 7.4948079, 47.3934568 ], + [ 7.4948217, 47.3934462 ], + [ 7.4948907, 47.3933027 ], + [ 7.4949211, 47.3932369 ], + [ 7.4952015, 47.3929891 ], + [ 7.4954622, 47.392643 ], + [ 7.495572, 47.3925182 ], + [ 7.4956891, 47.3924163 ], + [ 7.4957917, 47.3923412 ], + [ 7.4959187, 47.3922861 ], + [ 7.4961102, 47.3922584 ], + [ 7.4962874, 47.3922282 ], + [ 7.4965211, 47.3921638 ], + [ 7.496829, 47.3920759 ], + [ 7.4971003, 47.392002 ], + [ 7.4974292, 47.3919338 ], + [ 7.4976165, 47.3919042 ], + [ 7.4977896, 47.3918885 ], + [ 7.4979917, 47.3918745 ], + [ 7.4981919999999995, 47.3918587 ], + [ 7.4984173, 47.391826 ], + [ 7.4986762, 47.3917666 ], + [ 7.498782, 47.3920443 ], + [ 7.4988704, 47.3922488 ], + [ 7.4989305, 47.3923704 ], + [ 7.499014, 47.3925216 ], + [ 7.4992364, 47.3928807 ], + [ 7.4996104, 47.3928827 ], + [ 7.5000889, 47.3929074 ], + [ 7.5011266, 47.3929601 ], + [ 7.5012637, 47.392949 ], + [ 7.5014157, 47.3929428 ], + [ 7.5015602, 47.3929424 ], + [ 7.5016864, 47.3929591 ], + [ 7.5018552, 47.3929904 ], + [ 7.5020592, 47.3930367 ], + [ 7.5021712, 47.3930738 ], + [ 7.5023024, 47.3931135 ], + [ 7.5023891, 47.3931316 ], + [ 7.5024442, 47.3931383 ], + [ 7.5026019, 47.3931478 ], + [ 7.5027512, 47.3931564 ], + [ 7.5028943, 47.3931654 ], + [ 7.5031431, 47.3931796 ], + [ 7.5033142, 47.3931241 ], + [ 7.5035169, 47.3930578 ], + [ 7.5037398, 47.3929856 ], + [ 7.5039952, 47.3929081 ], + [ 7.5042307, 47.3928341 ], + [ 7.5044157, 47.3927831 ], + [ 7.504571, 47.3927452 ], + [ 7.5046883, 47.392721 ], + [ 7.5047974, 47.3926969 ], + [ 7.5049118, 47.3926683 ], + [ 7.5050292, 47.3926291 ], + [ 7.5051156, 47.392596 ], + [ 7.505214, 47.3925556 ], + [ 7.505305, 47.3925125 ], + [ 7.505472, 47.3924314 ], + [ 7.5056172, 47.3923659 ], + [ 7.5057996, 47.3922814 ], + [ 7.5059656, 47.3922071 ], + [ 7.5061541, 47.3921273 ], + [ 7.5063865, 47.3920134 ], + [ 7.5063325, 47.3917072 ], + [ 7.5064967, 47.3916236 ], + [ 7.5065828, 47.3916123 ], + [ 7.5068639, 47.3917057 ], + [ 7.5068853, 47.3916404 ], + [ 7.5069058, 47.391543 ], + [ 7.5069079, 47.3915294 ], + [ 7.5069239, 47.3914272 ], + [ 7.5069324, 47.3913275 ], + [ 7.5069278, 47.3912649 ], + [ 7.5069204, 47.3912091 ], + [ 7.5069246, 47.3911298 ], + [ 7.5069453, 47.3910899 ], + [ 7.5069765, 47.3910596 ], + [ 7.5070224, 47.3910225 ], + [ 7.5070567, 47.3909947 ], + [ 7.5070694, 47.3909712 ], + [ 7.5070537, 47.3909229 ], + [ 7.5070189, 47.3908685 ], + [ 7.5069182, 47.3906918 ], + [ 7.5068699, 47.3906212 ], + [ 7.5068275, 47.3905891 ], + [ 7.5066995, 47.3905142 ], + [ 7.5066006, 47.3904729 ], + [ 7.5064485, 47.390404 ], + [ 7.5063931, 47.3903758 ], + [ 7.5063541, 47.3903432 ], + [ 7.5063204, 47.3902845 ], + [ 7.5063188, 47.3902767 ], + [ 7.5061357, 47.3903415 ], + [ 7.505759, 47.3903748 ], + [ 7.505331, 47.3904926 ], + [ 7.5051871, 47.3904958 ], + [ 7.5048902, 47.3905883 ], + [ 7.5046602, 47.3906563 ], + [ 7.5045401, 47.3907149 ], + [ 7.5043578, 47.3907563 ], + [ 7.5042541, 47.3907604 ], + [ 7.504111, 47.3907442 ], + [ 7.5038305, 47.3907472 ], + [ 7.5036669, 47.3908015 ], + [ 7.5035067, 47.3908815 ], + [ 7.5031914, 47.3909075 ], + [ 7.5029152, 47.390913 ], + [ 7.5027263, 47.3909372 ], + [ 7.502623, 47.3909425 ], + [ 7.5024894, 47.3907779 ], + [ 7.5023337, 47.3907388 ], + [ 7.5021424, 47.3907353 ], + [ 7.5018946, 47.3907554 ], + [ 7.5013267, 47.3907397 ], + [ 7.5010428000000005, 47.3907743 ], + [ 7.5006585, 47.3908464 ], + [ 7.5004671, 47.3908884 ], + [ 7.5003623, 47.3907241 ], + [ 7.5002628, 47.3904937 ], + [ 7.5002711, 47.3902429 ], + [ 7.5002292, 47.3901953 ], + [ 7.500126, 47.3899399 ], + [ 7.5002068, 47.3898871 ], + [ 7.5001917, 47.3896999 ], + [ 7.5000369, 47.3894844 ], + [ 7.4998469, 47.3892973 ], + [ 7.4997358, 47.3890834 ], + [ 7.4997419, 47.3889627 ], + [ 7.4996368, 47.3886975 ], + [ 7.4995522, 47.3885514 ], + [ 7.4994275, 47.3885203 ], + [ 7.4993127, 47.3882485 ], + [ 7.4992556, 47.3881347 ], + [ 7.4991177, 47.3881248 ], + [ 7.4988943, 47.3878948 ], + [ 7.4986737, 47.387821 ], + [ 7.4984034, 47.3876608 ], + [ 7.4982099, 47.3875285 ], + [ 7.4979091, 47.3875492 ], + [ 7.4977232, 47.3875607 ], + [ 7.497554, 47.3875149 ], + [ 7.4971935, 47.3874678 ], + [ 7.4969068, 47.3874819 ], + [ 7.4965687, 47.3875307 ], + [ 7.4963228, 47.3876364 ], + [ 7.4961225, 47.3876873 ], + [ 7.4959422, 47.3876919 ], + [ 7.4957435, 47.3877368 ], + [ 7.495607, 47.3877466 ], + [ 7.4954611, 47.3876192 ], + [ 7.4952824, 47.3874874 ], + [ 7.4948849, 47.387001 ], + [ 7.4947935, 47.3869361 ], + [ 7.4945853, 47.3869665 ], + [ 7.4944624, 47.3869545 ], + [ 7.4943289, 47.3869455 ], + [ 7.4940193, 47.3869799 ], + [ 7.4938096, 47.3869873 ], + [ 7.4935165, 47.3870116 ], + [ 7.4933482, 47.3870387 ], + [ 7.4931853, 47.3870549 ], + [ 7.4929796, 47.3870782 ], + [ 7.4928118999999995, 47.3870947 ], + [ 7.4926292, 47.3871609 ], + [ 7.4924646, 47.3872165 ], + [ 7.4922976, 47.3872525 ], + [ 7.4922952, 47.3872442 ], + [ 7.4922872, 47.3872169 ], + [ 7.4922686, 47.3871952 ], + [ 7.4922222, 47.3872111 ], + [ 7.4920354, 47.3872782 ], + [ 7.4917561, 47.3873674 ], + [ 7.4915212, 47.3874453 ], + [ 7.4912498, 47.3875425 ], + [ 7.4911475, 47.3875888 ], + [ 7.4908209, 47.3880375 ], + [ 7.4908179, 47.388043 ], + [ 7.4904927, 47.3885979 ], + [ 7.4898275, 47.3899594 ], + [ 7.4895709, 47.3904821 ], + [ 7.4899755, 47.390829 ], + [ 7.4908615, 47.3915833 ], + [ 7.4913512, 47.3919861 ], + [ 7.4918294, 47.3923795 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns271", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Stürmen - Eggfels - Bännli", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Stürmen - Eggfels - Bännli", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Stürmen - Eggfels - Bännli", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Stürmen - Eggfels - Bännli", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8575532, 47.5136999 ], + [ 7.8576251, 47.5136981 ], + [ 7.8576339, 47.5137519 ], + [ 7.8576811, 47.5137966 ], + [ 7.8576968, 47.5138056 ], + [ 7.8577118, 47.5138152 ], + [ 7.8577261, 47.5138252 ], + [ 7.8577398, 47.5138356 ], + [ 7.8577528, 47.5138464 ], + [ 7.857765, 47.5138577 ], + [ 7.8577764, 47.5138693 ], + [ 7.8577870999999995, 47.5138812 ], + [ 7.8577969, 47.5138934 ], + [ 7.8578057, 47.5139054 ], + [ 7.8578138, 47.5139176 ], + [ 7.8578209999999995, 47.51393 ], + [ 7.8578275, 47.5139427 ], + [ 7.8578331, 47.5139555 ], + [ 7.8578379, 47.5139685 ], + [ 7.8578418, 47.5139816 ], + [ 7.8578449, 47.5139948 ], + [ 7.8578471, 47.514008 ], + [ 7.8579519, 47.5144898 ], + [ 7.8579563, 47.5145115 ], + [ 7.8579599, 47.5145331 ], + [ 7.8579627, 47.5145548 ], + [ 7.8579647999999995, 47.5145766 ], + [ 7.8579662, 47.5145984 ], + [ 7.8579667, 47.5146202 ], + [ 7.8579665, 47.514642 ], + [ 7.8579656, 47.5146638 ], + [ 7.8579641, 47.5146864 ], + [ 7.8579618, 47.5147089 ], + [ 7.8579587, 47.5147314 ], + [ 7.8579548, 47.5147539 ], + [ 7.8579501, 47.5147762 ], + [ 7.8579446, 47.5147985 ], + [ 7.8579381999999995, 47.5148207 ], + [ 7.8579311, 47.5148428 ], + [ 7.8578153, 47.5151013 ], + [ 7.8578782, 47.5151861 ], + [ 7.8578566, 47.5152292 ], + [ 7.8577358, 47.515276 ], + [ 7.8575832, 47.5156126 ], + [ 7.8575773, 47.5156262 ], + [ 7.8575723, 47.51564 ], + [ 7.857568, 47.515654 ], + [ 7.8575646, 47.515668 ], + [ 7.857562, 47.5156821 ], + [ 7.8575602, 47.5156963 ], + [ 7.8575593, 47.5157105 ], + [ 7.8575592, 47.5157247 ], + [ 7.8575599, 47.5157389 ], + [ 7.8575614, 47.5157531 ], + [ 7.8575628, 47.5157609 ], + [ 7.8575645, 47.5157686 ], + [ 7.8575664, 47.5157763 ], + [ 7.8575686000000005, 47.5157839 ], + [ 7.8575727, 47.5157967 ], + [ 7.8575775, 47.5158094 ], + [ 7.857583, 47.515822 ], + [ 7.8575892, 47.5158344 ], + [ 7.8575961, 47.5158466 ], + [ 7.8576037, 47.5158586 ], + [ 7.8576119, 47.5158705 ], + [ 7.8576209, 47.5158821 ], + [ 7.857901, 47.5162276 ], + [ 7.8580514, 47.5163762 ], + [ 7.8580617, 47.5163869 ], + [ 7.8580711, 47.5163978 ], + [ 7.8580798, 47.5164091 ], + [ 7.8580877000000005, 47.516420600000004 ], + [ 7.8580948, 47.5164323 ], + [ 7.8581011, 47.5164443 ], + [ 7.8581066, 47.5164565 ], + [ 7.8581112, 47.5164688 ], + [ 7.8581149, 47.5164812 ], + [ 7.8581177, 47.5164938 ], + [ 7.8581197, 47.5165064 ], + [ 7.8581208, 47.5165191 ], + [ 7.8581211, 47.5165318 ], + [ 7.8581204, 47.5165445 ], + [ 7.8581189, 47.5165571 ], + [ 7.8581164, 47.5165697 ], + [ 7.8580935, 47.516675 ], + [ 7.8580909, 47.5166882 ], + [ 7.8580891, 47.516701499999996 ], + [ 7.8580881, 47.5167149 ], + [ 7.8580879, 47.5167282 ], + [ 7.8580885, 47.5167416 ], + [ 7.8580898999999995, 47.5167549 ], + [ 7.8580922, 47.5167682 ], + [ 7.8580953000000004, 47.5167814 ], + [ 7.8580992, 47.5167945 ], + [ 7.8581039, 47.5168075 ], + [ 7.8581094, 47.5168203 ], + [ 7.8581156, 47.516833 ], + [ 7.8581227, 47.5168455 ], + [ 7.8581305, 47.5168578 ], + [ 7.8581389999999995, 47.5168699 ], + [ 7.8581483, 47.5168817 ], + [ 7.8581734999999995, 47.5169125 ], + [ 7.8602844, 47.5166275 ], + [ 7.8603085, 47.5166238 ], + [ 7.8602422, 47.5164729 ], + [ 7.8601898, 47.5163191 ], + [ 7.8600855, 47.5161242 ], + [ 7.860024, 47.5160281 ], + [ 7.8599686, 47.5159478 ], + [ 7.8599234, 47.5158833 ], + [ 7.8598862, 47.5158166 ], + [ 7.8598572, 47.515748 ], + [ 7.8598375, 47.5156817 ], + [ 7.8598256, 47.5156146 ], + [ 7.8598213999999995, 47.5155471 ], + [ 7.8597863, 47.5152384 ], + [ 7.8596468, 47.5142407 ], + [ 7.8596383, 47.5141707 ], + [ 7.8596329, 47.5141006 ], + [ 7.8596307, 47.5140304 ], + [ 7.8596322, 47.5139433 ], + [ 7.8596384, 47.5138563 ], + [ 7.8596494, 47.5137695 ], + [ 7.8596533, 47.5137331 ], + [ 7.8596595, 47.5136969 ], + [ 7.8596682, 47.513661 ], + [ 7.859685, 47.5136093 ], + [ 7.8597066, 47.5135585 ], + [ 7.8597331, 47.5135088 ], + [ 7.859777, 47.513458299999996 ], + [ 7.8598258, 47.5134099 ], + [ 7.8598793, 47.5133638 ], + [ 7.8599083, 47.5133411 ], + [ 7.8599385, 47.5133192 ], + [ 7.8599698, 47.5132979 ], + [ 7.8600065, 47.5132654 ], + [ 7.8600389, 47.513230899999996 ], + [ 7.8600669, 47.5131947 ], + [ 7.8600902, 47.5131569 ], + [ 7.8601086, 47.513118 ], + [ 7.8601221, 47.5130785 ], + [ 7.8601305, 47.5130383 ], + [ 7.8601339, 47.5129978 ], + [ 7.8601322, 47.5129572 ], + [ 7.8601255, 47.5129169 ], + [ 7.860128, 47.5128447 ], + [ 7.8601373, 47.5127728 ], + [ 7.8601533, 47.5127015 ], + [ 7.8601743, 47.5126356 ], + [ 7.8602009, 47.5125707 ], + [ 7.8602332, 47.512507 ], + [ 7.8602989, 47.5123775 ], + [ 7.860305, 47.512364 ], + [ 7.8603191, 47.5123362 ], + [ 7.8603318, 47.5123082 ], + [ 7.8603432, 47.5122799 ], + [ 7.8603556, 47.5122422 ], + [ 7.8603657, 47.5122042 ], + [ 7.8603734, 47.512166 ], + [ 7.8603804, 47.5121326 ], + [ 7.8603882, 47.5120993 ], + [ 7.8603967, 47.5120661 ], + [ 7.8604075, 47.5120279 ], + [ 7.8604192, 47.5119898 ], + [ 7.860432, 47.5119519 ], + [ 7.8604464, 47.5119132 ], + [ 7.8604647, 47.5118753 ], + [ 7.860487, 47.5118384 ], + [ 7.8605067, 47.5118109 ], + [ 7.8605286, 47.5117841 ], + [ 7.8605526999999995, 47.5117582 ], + [ 7.8605830999999995, 47.5117363 ], + [ 7.8606149, 47.5117153 ], + [ 7.8606479, 47.5116951 ], + [ 7.860777, 47.5116295 ], + [ 7.8608119, 47.5116081 ], + [ 7.8608443999999995, 47.511585 ], + [ 7.8608744, 47.5115604 ], + [ 7.860896, 47.5115383 ], + [ 7.860917, 47.5115159 ], + [ 7.8609374, 47.5114932 ], + [ 7.8609561, 47.5114716 ], + [ 7.8609743, 47.5114496 ], + [ 7.8609919999999995, 47.511427499999996 ], + [ 7.8610173, 47.5113944 ], + [ 7.8610404, 47.5113606 ], + [ 7.8610612, 47.5113261 ], + [ 7.8610769, 47.5112995 ], + [ 7.8610899, 47.5112723 ], + [ 7.8611005, 47.5112446 ], + [ 7.8611384, 47.5109243 ], + [ 7.8611403, 47.5109133 ], + [ 7.8611408, 47.5109023 ], + [ 7.8611401, 47.5108912 ], + [ 7.861138, 47.5108803 ], + [ 7.8611345, 47.5108694 ], + [ 7.8611298, 47.5108589 ], + [ 7.8611273, 47.5108517 ], + [ 7.8611239, 47.5108447 ], + [ 7.8611195, 47.510838 ], + [ 7.8619654, 47.5106701 ], + [ 7.8619452, 47.5104455 ], + [ 7.8619447000000005, 47.5104213 ], + [ 7.8619435, 47.5103972 ], + [ 7.8619415, 47.510373 ], + [ 7.8619388, 47.5103489 ], + [ 7.8619354999999995, 47.510326 ], + [ 7.8619315, 47.5103032 ], + [ 7.8619268, 47.5102804 ], + [ 7.8619214, 47.5102577 ], + [ 7.861809, 47.5100944 ], + [ 7.8618508, 47.5099179 ], + [ 7.8615759, 47.5098009 ], + [ 7.8614198, 47.5097683 ], + [ 7.8613086, 47.5097708 ], + [ 7.8611959, 47.5097827 ], + [ 7.8609871, 47.5098203 ], + [ 7.8608591, 47.5098534 ], + [ 7.860707, 47.5099195 ], + [ 7.8605142, 47.5100455 ], + [ 7.8603480999999995, 47.5101799 ], + [ 7.8601582, 47.5103921 ], + [ 7.8599653, 47.5106066 ], + [ 7.8598117, 47.5107424 ], + [ 7.8597649, 47.5107866 ], + [ 7.8596834, 47.5108735 ], + [ 7.8595834, 47.5110331 ], + [ 7.859459, 47.5112691 ], + [ 7.8594078, 47.5112562 ], + [ 7.8593402, 47.5111847 ], + [ 7.8591804, 47.5111794 ], + [ 7.8590055, 47.5112288 ], + [ 7.8588988, 47.5113938 ], + [ 7.8587475, 47.5113647 ], + [ 7.8586547, 47.5114467 ], + [ 7.8585362, 47.5115121 ], + [ 7.8583425, 47.5116017 ], + [ 7.8582352, 47.5116374 ], + [ 7.8581163, 47.5116464 ], + [ 7.8580769, 47.5116358 ], + [ 7.8580052, 47.5116172 ], + [ 7.8579536, 47.5115732 ], + [ 7.8578798, 47.51155 ], + [ 7.8578604, 47.5115549 ], + [ 7.8578408, 47.5115593 ], + [ 7.8578211, 47.5115635 ], + [ 7.8578012, 47.5115672 ], + [ 7.8578092999999996, 47.5117125 ], + [ 7.8577407, 47.5117222 ], + [ 7.8575626, 47.5117501 ], + [ 7.8575421, 47.5116894 ], + [ 7.8575267, 47.5116464 ], + [ 7.857482, 47.5116647 ], + [ 7.857415, 47.511808 ], + [ 7.8572082, 47.5123444 ], + [ 7.857012, 47.5128534 ], + [ 7.8570067, 47.5128727 ], + [ 7.8570022, 47.5128922 ], + [ 7.8569984, 47.5129117 ], + [ 7.8569953, 47.5129313 ], + [ 7.856993, 47.5129509 ], + [ 7.856992, 47.5129711 ], + [ 7.8569917, 47.5129914 ], + [ 7.8569922, 47.5130116 ], + [ 7.8569935, 47.5130319 ], + [ 7.8569956, 47.5130521 ], + [ 7.8569993, 47.5130822 ], + [ 7.8570022999999996, 47.5131123 ], + [ 7.8570048, 47.5131424 ], + [ 7.8570066, 47.5131726 ], + [ 7.8570079, 47.5132028 ], + [ 7.8570084, 47.513233 ], + [ 7.8570083, 47.5132632 ], + [ 7.8570076, 47.5132934 ], + [ 7.8570062, 47.5133236 ], + [ 7.8570043, 47.5133538 ], + [ 7.8569666, 47.5136246 ], + [ 7.8575532, 47.5136999 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns292", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Schönenberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Schönenberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Schönenberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Schönenberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.698432, 47.4141508 ], + [ 7.6984342, 47.414198999999996 ], + [ 7.6984791999999995, 47.4143722 ], + [ 7.6985947, 47.414761 ], + [ 7.6987875, 47.4152441 ], + [ 7.6988266, 47.4153461 ], + [ 7.7011781, 47.4155703 ], + [ 7.7006118, 47.4146768 ], + [ 7.7004805, 47.4142158 ], + [ 7.7004126, 47.4139182 ], + [ 7.700375, 47.4137542 ], + [ 7.7003069, 47.4135901 ], + [ 7.7002904999999995, 47.4135512 ], + [ 7.7002539, 47.4135888 ], + [ 7.7001562, 47.4136747 ], + [ 7.7000651, 47.4136987 ], + [ 7.6999461, 47.413737 ], + [ 7.6998621, 47.4137657 ], + [ 7.6998342, 47.4137944 ], + [ 7.6998344, 47.4138229 ], + [ 7.6998277999999996, 47.4139181 ], + [ 7.6997864, 47.4140467 ], + [ 7.6997731, 47.4141943 ], + [ 7.6997243, 47.4142468 ], + [ 7.6996544, 47.4143088 ], + [ 7.6995072, 47.4143187 ], + [ 7.699388, 47.4143046 ], + [ 7.6992126, 47.414286 ], + [ 7.6990582, 47.4142626 ], + [ 7.6988967, 47.4142106 ], + [ 7.698749, 47.41413 ], + [ 7.6986718, 47.4141064 ], + [ 7.6985035, 47.414102 ], + [ 7.698432, 47.4141508 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns352", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Arlisberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Arlisberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Arlisberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Arlisberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.6564269, 47.4669398 ], + [ 8.6564182, 47.4667986 ], + [ 8.6563986, 47.466658 ], + [ 8.6563683, 47.4665182 ], + [ 8.6563271, 47.4663798 ], + [ 8.6562753, 47.4662429 ], + [ 8.6562131, 47.4661081 ], + [ 8.6561405, 47.4659757 ], + [ 8.6560578, 47.4658461 ], + [ 8.6559652, 47.4657195 ], + [ 8.655863, 47.4655964 ], + [ 8.6557514, 47.4654772 ], + [ 8.6556308, 47.465362 ], + [ 8.6555014, 47.4652513 ], + [ 8.6553637, 47.4651453 ], + [ 8.655218, 47.4650443 ], + [ 8.6550647, 47.4649487 ], + [ 8.6549042, 47.4648586 ], + [ 8.654737, 47.4647744 ], + [ 8.6545635, 47.4646962 ], + [ 8.654384199999999, 47.4646243 ], + [ 8.6541996, 47.4645588 ], + [ 8.6540102, 47.4645 ], + [ 8.6538166, 47.4644479 ], + [ 8.6536192, 47.4644028 ], + [ 8.6534185, 47.4643648 ], + [ 8.6532153, 47.464334 ], + [ 8.6530099, 47.4643104 ], + [ 8.6528029, 47.4642941 ], + [ 8.6525951, 47.4642852 ], + [ 8.6523868, 47.4642837 ], + [ 8.6521786, 47.4642896 ], + [ 8.6519712, 47.4643028 ], + [ 8.6517652, 47.4643234 ], + [ 8.6515609, 47.4643513 ], + [ 8.6513592, 47.4643864 ], + [ 8.6511604, 47.4644286 ], + [ 8.6509651, 47.4644778 ], + [ 8.6507739, 47.4645339 ], + [ 8.6505873, 47.4645967 ], + [ 8.6504058, 47.464666 ], + [ 8.6502299, 47.4647417 ], + [ 8.65006, 47.4648235 ], + [ 8.6498968, 47.4649112 ], + [ 8.6497405, 47.4650046 ], + [ 8.6495916, 47.4651034 ], + [ 8.6494505, 47.4652073 ], + [ 8.6493177, 47.4653161 ], + [ 8.649193499999999, 47.4654295 ], + [ 8.6490781, 47.4655472 ], + [ 8.648972, 47.4656687 ], + [ 8.648875499999999, 47.4657939 ], + [ 8.6487887, 47.4659223 ], + [ 8.648712, 47.4660537 ], + [ 8.6486455, 47.4661875 ], + [ 8.6485894, 47.4663236 ], + [ 8.6485439, 47.4664614 ], + [ 8.6485091, 47.4666007 ], + [ 8.6484851, 47.466741 ], + [ 8.6484719, 47.466882 ], + [ 8.6484697, 47.4670232 ], + [ 8.6484784, 47.4671644 ], + [ 8.6484979, 47.467305 ], + [ 8.6485283, 47.4674448 ], + [ 8.6485694, 47.4675833 ], + [ 8.6486211, 47.4677201 ], + [ 8.6486834, 47.4678549 ], + [ 8.648756, 47.4679873 ], + [ 8.6488386, 47.468117 ], + [ 8.6489312, 47.4682435 ], + [ 8.6490334, 47.4683666 ], + [ 8.649145, 47.4684859 ], + [ 8.6492656, 47.4686011 ], + [ 8.649395, 47.4687118 ], + [ 8.6495327, 47.4688178 ], + [ 8.649678399999999, 47.4689187 ], + [ 8.6498317, 47.4690144 ], + [ 8.6499922, 47.4691045 ], + [ 8.6501594, 47.4691887 ], + [ 8.6503329, 47.4692669 ], + [ 8.6505122, 47.4693389 ], + [ 8.6506968, 47.4694043 ], + [ 8.6508862, 47.4694632 ], + [ 8.6510799, 47.4695152 ], + [ 8.6512773, 47.4695603 ], + [ 8.651478000000001, 47.4695983 ], + [ 8.6516813, 47.4696292 ], + [ 8.6518867, 47.4696528 ], + [ 8.6520936, 47.469669 ], + [ 8.6523015, 47.4696779 ], + [ 8.6525099, 47.4696794 ], + [ 8.652718, 47.4696736 ], + [ 8.6529254, 47.4696603 ], + [ 8.6531315, 47.4696397 ], + [ 8.6533358, 47.4696118 ], + [ 8.6535375, 47.4695767 ], + [ 8.6537364, 47.4695345 ], + [ 8.6539316, 47.4694853 ], + [ 8.6541228, 47.4694292 ], + [ 8.6543095, 47.4693664 ], + [ 8.654491, 47.4692971 ], + [ 8.6546669, 47.4692214 ], + [ 8.6548368, 47.4691396 ], + [ 8.655, 47.4690519 ], + [ 8.6551563, 47.4689585 ], + [ 8.6553052, 47.4688597 ], + [ 8.6554463, 47.4687557 ], + [ 8.6555791, 47.4686469 ], + [ 8.6557033, 47.4685335 ], + [ 8.6558186, 47.4684159 ], + [ 8.6559247, 47.4682943 ], + [ 8.656021299999999, 47.4681691 ], + [ 8.656108, 47.4680407 ], + [ 8.6561848, 47.4679094 ], + [ 8.6562512, 47.4677755 ], + [ 8.6563073, 47.4676395 ], + [ 8.6563528, 47.4675016 ], + [ 8.6563876, 47.4673623 ], + [ 8.6564116, 47.467222 ], + [ 8.6564247, 47.467081 ], + [ 8.6564269, 47.4669398 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0020", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Breite", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Breite", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Breite", + "lang" : "it-CH" + }, + { + "text" : "Substation Breite", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.9013226, 47.4422769 ], + [ 7.9011794, 47.4427115 ], + [ 7.9010315, 47.4429881 ], + [ 7.9010644, 47.4429948 ], + [ 7.9010615, 47.443007 ], + [ 7.9010586, 47.4430189 ], + [ 7.9010054, 47.4432421 ], + [ 7.9009414, 47.4432292 ], + [ 7.9007813, 47.4432237 ], + [ 7.9007553999999995, 47.4432228 ], + [ 7.9004758, 47.443213 ], + [ 7.899615, 47.443183 ], + [ 7.8995127, 47.4431795 ], + [ 7.8991657, 47.4431674 ], + [ 7.8990028, 47.443174 ], + [ 7.8988999, 47.4431782 ], + [ 7.8986298999999995, 47.4431892 ], + [ 7.8980016, 47.4432559 ], + [ 7.8980057, 47.443271 ], + [ 7.8980129, 47.4432978 ], + [ 7.8980112, 47.4432981 ], + [ 7.8977499, 47.4433539 ], + [ 7.897715, 47.4433613 ], + [ 7.8974005, 47.4434089 ], + [ 7.8968699, 47.4434638 ], + [ 7.8966387000000005, 47.4435206 ], + [ 7.8963967, 47.4435315 ], + [ 7.8963076, 47.4435394 ], + [ 7.8961448999999995, 47.4435539 ], + [ 7.8960646, 47.443561 ], + [ 7.8956548, 47.4436447 ], + [ 7.8955801999999995, 47.4436087 ], + [ 7.8955657, 47.4436078 ], + [ 7.8955402, 47.4436062 ], + [ 7.8955079, 47.4435945 ], + [ 7.8954471, 47.443584 ], + [ 7.8954123, 47.4435888 ], + [ 7.8954038, 47.4436622 ], + [ 7.8951923, 47.4437213 ], + [ 7.8950681, 47.4437708 ], + [ 7.894934, 47.4435913 ], + [ 7.8949177, 47.4435405 ], + [ 7.8949207, 47.4435187 ], + [ 7.8948925, 47.443428 ], + [ 7.8948885, 47.443415 ], + [ 7.8948843, 47.4434017 ], + [ 7.894866, 47.4433426 ], + [ 7.8943343, 47.4433918 ], + [ 7.8935675, 47.4434786 ], + [ 7.8935991, 47.4435594 ], + [ 7.8936598, 47.4437151 ], + [ 7.8936612, 47.4437185 ], + [ 7.8936634, 47.4437228 ], + [ 7.8936744999999995, 47.443744 ], + [ 7.8936774, 47.4437496 ], + [ 7.8936358, 47.4437617 ], + [ 7.8935843, 47.4437768 ], + [ 7.8936114, 47.4438517 ], + [ 7.8936228, 47.4438832 ], + [ 7.8936516, 47.4439631 ], + [ 7.893714, 47.4439465 ], + [ 7.8937622, 47.4439336 ], + [ 7.893804, 47.4439431 ], + [ 7.8938673999999995, 47.4439728 ], + [ 7.8940551, 47.4442503 ], + [ 7.8939377, 47.4443008 ], + [ 7.8936656, 47.4444178 ], + [ 7.8936791, 47.44443 ], + [ 7.8940249, 47.4447375 ], + [ 7.8941326, 47.4448334 ], + [ 7.8946012, 47.4445592 ], + [ 7.8951889, 47.4443417 ], + [ 7.8954818, 47.4442364 ], + [ 7.8955759, 47.4442055 ], + [ 7.8963615, 47.4440225 ], + [ 7.8970784, 47.4439689 ], + [ 7.8973252, 47.4439292 ], + [ 7.9015702, 47.4439788 ], + [ 7.9015951, 47.443857 ], + [ 7.9016106, 47.443781 ], + [ 7.901948, 47.4438685 ], + [ 7.9026391, 47.4439913 ], + [ 7.9032442, 47.4439984 ], + [ 7.90333, 47.4440021 ], + [ 7.9037197, 47.4439495 ], + [ 7.9042019, 47.4437927 ], + [ 7.9042494, 47.4437763 ], + [ 7.904318, 47.4437527 ], + [ 7.9043887, 47.443739 ], + [ 7.9045245, 47.4437127 ], + [ 7.9044737, 47.4434944 ], + [ 7.9044725, 47.4434891 ], + [ 7.9044527, 47.4434038 ], + [ 7.9044366, 47.443345 ], + [ 7.9043014, 47.4432625 ], + [ 7.90378, 47.4432275 ], + [ 7.9035469, 47.443093 ], + [ 7.9032732, 47.4429542 ], + [ 7.9027206, 47.4426842 ], + [ 7.9024823, 47.4425606 ], + [ 7.9023052, 47.4425351 ], + [ 7.9020769, 47.442451 ], + [ 7.9016731, 47.442346 ], + [ 7.9013226, 47.4422769 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr035", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Alete", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Alete", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Alete", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Alete", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.1460039, 46.2907027 ], + [ 6.1460045, 46.2907049 ], + [ 6.1459941, 46.2907381 ], + [ 6.1462658, 46.2917741 ], + [ 6.1470888, 46.2926592 ], + [ 6.1483377, 46.2932585 ], + [ 6.1498225, 46.2934809 ], + [ 6.151317, 46.2932925 ], + [ 6.1525937, 46.292722 ], + [ 6.1534582, 46.2918562 ], + [ 6.1537789, 46.2908269 ], + [ 6.1537784, 46.2908248 ], + [ 6.1537887, 46.2907915 ], + [ 6.1535169, 46.2897555 ], + [ 6.1526939, 46.2888705 ], + [ 6.151445, 46.2882712 ], + [ 6.1499603, 46.2880488 ], + [ 6.148466, 46.2882372 ], + [ 6.1471893, 46.2888077 ], + [ 6.1463247, 46.2896735 ], + [ 6.1460039, 46.2907027 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-52", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.9834755, 46.2606916 ], + [ 6.9833457, 46.260853 ], + [ 6.9841985, 46.2612333 ], + [ 6.9894672, 46.2555654 ], + [ 6.9885947, 46.2552138 ], + [ 6.9886845, 46.2551746 ], + [ 6.9880627, 46.2549346 ], + [ 6.9830313, 46.2604496 ], + [ 6.9834755, 46.2606916 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSGB002", + "country" : "CHE", + "name" : [ + { + "text" : "LSGB Bex (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSGB Bex (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSGB Bex (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSGB Bex (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "AéroBex Aérodrome Bex Chablais", + "lang" : "de-CH" + }, + { + "text" : "AéroBex Aérodrome Bex Chablais", + "lang" : "fr-CH" + }, + { + "text" : "AéroBex Aérodrome Bex Chablais", + "lang" : "it-CH" + }, + { + "text" : "AéroBex Aérodrome Bex Chablais", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Chef d'aérodrome", + "lang" : "de-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "fr-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "it-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Philippe Manuel", + "lang" : "de-CH" + }, + { + "text" : "Philippe Manuel", + "lang" : "fr-CH" + }, + { + "text" : "Philippe Manuel", + "lang" : "it-CH" + }, + { + "text" : "Philippe Manuel", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.aerobex.ch/informations/drones.html", + "email" : "chefdeplace@aerobex.ch", + "phone" : "0041762324225", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.1482779, 46.27828 ], + [ 6.1497896, 46.2783733 ], + [ 6.1498721, 46.2783672 ], + [ 6.151048, 46.2781463 ], + [ 6.1520678, 46.2776841 ], + [ 6.1528315, 46.277026 ], + [ 6.1532644, 46.2762364 ], + [ 6.153324, 46.2753927 ], + [ 6.1533178, 46.2753531 ], + [ 6.1529983, 46.2745379 ], + [ 6.152331, 46.2738311 ], + [ 6.1513813, 46.273302 ], + [ 6.1502423, 46.2730025 ], + [ 6.1490255, 46.2729618 ], + [ 6.1489429, 46.272968 ], + [ 6.1474952, 46.2732843 ], + [ 6.146332, 46.2739607 ], + [ 6.1456304, 46.2748941 ], + [ 6.1454971, 46.2759426 ], + [ 6.1455033, 46.2759821 ], + [ 6.1459584, 46.276986 ], + [ 6.1469326, 46.2777928 ], + [ 6.1482779, 46.27828 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-47", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.4252875, 46.5901135 ], + [ 9.4252769, 46.5899724 ], + [ 9.4252557, 46.5898319 ], + [ 9.4252238, 46.5896923 ], + [ 9.4251813, 46.5895541 ], + [ 9.4251285, 46.5894176 ], + [ 9.4250653, 46.5892832 ], + [ 9.424992, 46.5891512 ], + [ 9.4249088, 46.5890221 ], + [ 9.4248159, 46.5888961 ], + [ 9.4247136, 46.5887737 ], + [ 9.4246022, 46.5886552 ], + [ 9.4244818, 46.5885408 ], + [ 9.424353, 46.5884309 ], + [ 9.424216, 46.5883258 ], + [ 9.4240712, 46.588225800000004 ], + [ 9.423919099999999, 46.5881312 ], + [ 9.4237599, 46.5880422 ], + [ 9.4235942, 46.5879591 ], + [ 9.4234225, 46.587882 ], + [ 9.4232451, 46.5878113 ], + [ 9.4230625, 46.587747 ], + [ 9.4228754, 46.5876894 ], + [ 9.4226841, 46.5876387 ], + [ 9.4224893, 46.5875949 ], + [ 9.4222914, 46.5875582 ], + [ 9.422091, 46.5875287 ], + [ 9.4218886, 46.5875065 ], + [ 9.4216848, 46.5874916 ], + [ 9.4214802, 46.5874841 ], + [ 9.4212753, 46.5874839 ], + [ 9.4210706, 46.5874912 ], + [ 9.4208668, 46.5875058 ], + [ 9.4206643, 46.5875278 ], + [ 9.4204638, 46.5875571 ], + [ 9.4202658, 46.5875935 ], + [ 9.4200709, 46.587637 ], + [ 9.4198795, 46.5876876 ], + [ 9.4196922, 46.5877449 ], + [ 9.4195095, 46.5878089 ], + [ 9.419332, 46.5878795 ], + [ 9.41916, 46.5879563 ], + [ 9.4189941, 46.5880392 ], + [ 9.4188347, 46.588128 ], + [ 9.4186823, 46.5882225 ], + [ 9.4185372, 46.5883223 ], + [ 9.4184, 46.5884272 ], + [ 9.4182708, 46.5885369 ], + [ 9.4181502, 46.5886511 ], + [ 9.4180384, 46.5887696 ], + [ 9.4179358, 46.5888919 ], + [ 9.4178426, 46.5890177 ], + [ 9.417759, 46.5891467 ], + [ 9.4176854, 46.5892786 ], + [ 9.4176219, 46.5894129 ], + [ 9.4175687, 46.5895493 ], + [ 9.4175259, 46.5896875 ], + [ 9.4174936, 46.589827 ], + [ 9.417472, 46.5899675 ], + [ 9.4174611, 46.5901086 ], + [ 9.4174609, 46.5902499 ], + [ 9.4174714, 46.590391 ], + [ 9.4174926, 46.5905315 ], + [ 9.4175245, 46.5906711 ], + [ 9.4175669, 46.5908093 ], + [ 9.4176198, 46.5909458 ], + [ 9.417682899999999, 46.5910802 ], + [ 9.4177562, 46.5912122 ], + [ 9.4178394, 46.5913413 ], + [ 9.4179323, 46.5914672 ], + [ 9.4180346, 46.5915897 ], + [ 9.418146, 46.5917082 ], + [ 9.418266299999999, 46.5918226 ], + [ 9.4183951, 46.5919325 ], + [ 9.4185322, 46.5920376 ], + [ 9.4186769, 46.5921376 ], + [ 9.4188291, 46.5922322 ], + [ 9.4189883, 46.5923212 ], + [ 9.419154, 46.5924044 ], + [ 9.4193257, 46.5924814 ], + [ 9.4195031, 46.5925522 ], + [ 9.4196857, 46.5926165 ], + [ 9.4198728, 46.592674099999996 ], + [ 9.4200641, 46.5927248 ], + [ 9.4202589, 46.5927686 ], + [ 9.4204569, 46.5928053 ], + [ 9.4206573, 46.5928348 ], + [ 9.4208597, 46.592857 ], + [ 9.4210635, 46.5928719 ], + [ 9.4212682, 46.5928794 ], + [ 9.4214731, 46.5928796 ], + [ 9.4216778, 46.5928723 ], + [ 9.4218816, 46.5928577 ], + [ 9.4220841, 46.5928357 ], + [ 9.4222846, 46.5928064 ], + [ 9.4224826, 46.59277 ], + [ 9.4226776, 46.5927264 ], + [ 9.422869, 46.5926759 ], + [ 9.4230563, 46.5926186 ], + [ 9.423239, 46.5925545 ], + [ 9.4234166, 46.592484 ], + [ 9.4235886, 46.5924072 ], + [ 9.4237545, 46.5923242 ], + [ 9.4239139, 46.5922354 ], + [ 9.4240663, 46.5921409 ], + [ 9.4242113, 46.5920411 ], + [ 9.4243486, 46.5919362 ], + [ 9.4244777, 46.5918265 ], + [ 9.4245983, 46.5917123 ], + [ 9.4247101, 46.5915938 ], + [ 9.4248127, 46.5914715 ], + [ 9.4249059, 46.5913457 ], + [ 9.4249895, 46.5912167 ], + [ 9.4250631, 46.5910848 ], + [ 9.4251266, 46.5909505 ], + [ 9.4251798, 46.5908141 ], + [ 9.4252225, 46.5906759 ], + [ 9.4252548, 46.5905363 ], + [ 9.4252764, 46.5903959 ], + [ 9.4252873, 46.5902548 ], + [ 9.4252875, 46.5901135 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0008", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Bärenburg", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Bärenburg", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Bärenburg", + "lang" : "it-CH" + }, + { + "text" : "Substation Bärenburg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.3214584, 47.3768905 ], + [ 8.3214718, 47.376816 ], + [ 8.3214089, 47.3767547 ], + [ 8.3212917, 47.3767042 ], + [ 8.3211118, 47.3766295 ], + [ 8.32093, 47.376561 ], + [ 8.3207403, 47.3765085 ], + [ 8.3206295, 47.3764927 ], + [ 8.3205644, 47.3764944 ], + [ 8.3205128, 47.376521 ], + [ 8.3205149, 47.3765885 ], + [ 8.3205175, 47.3766681 ], + [ 8.3205634, 47.3767546 ], + [ 8.3206587, 47.3768745 ], + [ 8.3207822, 47.3769909 ], + [ 8.3209037, 47.3770778 ], + [ 8.3210486, 47.3771408 ], + [ 8.3211747, 47.3771435 ], + [ 8.3212625, 47.377099 ], + [ 8.3213756, 47.3769911 ], + [ 8.3214584, 47.3768905 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "KTAG508", + "country" : "CHE", + "name" : [ + { + "text" : "Alte Reuss", + "lang" : "de-CH" + }, + { + "text" : "Alte Reuss", + "lang" : "fr-CH" + }, + { + "text" : "Alte Reuss", + "lang" : "it-CH" + }, + { + "text" : "Alte Reuss", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "regulationExemption" : "NO", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "schedule" : [ + { + "day" : [ "ANY" ], + "startTime" : "00:00:00.00+01:00", + "endTime" : "00:00:00.00+01:00" + } + ] + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Aargau", + "lang" : "de-CH" + }, + { + "text" : "Canton d'Argovie", + "lang" : "fr-CH" + }, + { + "text" : "Canton Argovia", + "lang" : "it-CH" + }, + { + "text" : "Canton of Aargau", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Departement Bau, Verkehr und Umwelt (BVU)", + "lang" : "de-CH" + }, + { + "text" : "Département de la construction, des transports et de l'environnement (CTE)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento delle costruzioni, dei trasporti e dell'ambiente (CTA)", + "lang" : "it-CH" + }, + { + "text" : "Department of Civil Engineering,Transport and Environment (CTE)", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Sektion Gewässernutzung", + "lang" : "de-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "fr-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "it-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ag.ch/de/verwaltung/bvu/umwelt-natur-landschaft/hochwasserschutz-gewaesser/gewaessernutzung", + "email" : "alg@ag.ch", + "phone" : "0041 62 835 34 50", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8415593999999995, 47.4469793 ], + [ 7.8413503, 47.4469464 ], + [ 7.8413375, 47.4469469 ], + [ 7.8411548, 47.4469533 ], + [ 7.841134, 47.4470361 ], + [ 7.8409751, 47.4473147 ], + [ 7.8408707, 47.4474972 ], + [ 7.8408043, 47.4476026 ], + [ 7.840711, 47.4477006 ], + [ 7.8405487, 47.4478388 ], + [ 7.8404613, 47.4479208 ], + [ 7.8404084, 47.4479703 ], + [ 7.8402739, 47.4481504 ], + [ 7.8402082, 47.4482365 ], + [ 7.8400661, 47.4484546 ], + [ 7.8399991, 47.4485384 ], + [ 7.8398334, 47.4487456 ], + [ 7.8396257, 47.4489082 ], + [ 7.8393477, 47.4490508 ], + [ 7.8392475, 47.4491078 ], + [ 7.8390076, 47.4492192 ], + [ 7.8390331, 47.4492389 ], + [ 7.8391393, 47.4492974 ], + [ 7.8391715, 47.4493151 ], + [ 7.8390123, 47.4494728 ], + [ 7.8390808, 47.4495103 ], + [ 7.8393425, 47.4496538 ], + [ 7.83922, 47.4497549 ], + [ 7.839188, 47.4497899 ], + [ 7.8390555, 47.4499352 ], + [ 7.8389233, 47.4500801 ], + [ 7.8389024, 47.4501031 ], + [ 7.8387362, 47.4502853 ], + [ 7.8385967, 47.4504383 ], + [ 7.8383448, 47.4507144 ], + [ 7.838634, 47.4508177 ], + [ 7.8389362, 47.4509101 ], + [ 7.8392699, 47.4510121 ], + [ 7.8397310000000004, 47.4511525 ], + [ 7.8415236, 47.451578 ], + [ 7.8416214, 47.4513282 ], + [ 7.8417103, 47.4511299 ], + [ 7.8418320999999995, 47.4508496 ], + [ 7.8420089, 47.450559 ], + [ 7.842089, 47.4501788 ], + [ 7.8421493, 47.4498578 ], + [ 7.8421996, 47.4496392 ], + [ 7.8422678999999995, 47.449276 ], + [ 7.8423232, 47.4490412 ], + [ 7.8423818, 47.4490223 ], + [ 7.8422515, 47.448555 ], + [ 7.8422646, 47.4482515 ], + [ 7.842944, 47.447911 ], + [ 7.8426029, 47.4475459 ], + [ 7.8421611, 47.4471826 ], + [ 7.8418138, 47.4470616 ], + [ 7.8415932, 47.4469846 ], + [ 7.8415593999999995, 47.4469793 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns067", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Rebhalde - Rehhag", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Rebhalde - Rehhag", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Rebhalde - Rehhag", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Rebhalde - Rehhag", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.931875, 47.4511498 ], + [ 7.9318798, 47.4511402 ], + [ 7.9318837, 47.4511305 ], + [ 7.9318866, 47.4511205 ], + [ 7.9318887, 47.4511105 ], + [ 7.9318887, 47.45111 ], + [ 7.9318896, 47.4511024 ], + [ 7.9318898, 47.4511004 ], + [ 7.93189, 47.4510903 ], + [ 7.9318892, 47.4510802 ], + [ 7.9318875, 47.4510701 ], + [ 7.9318849, 47.4510602 ], + [ 7.9319425, 47.4510872 ], + [ 7.9332709999999995, 47.4503565 ], + [ 7.9330499, 47.4501889 ], + [ 7.9329715, 47.4501224 ], + [ 7.9329122, 47.450036 ], + [ 7.9329039, 47.4499426 ], + [ 7.9329349, 47.449857 ], + [ 7.9329837, 47.4494781 ], + [ 7.9330987, 47.4492399 ], + [ 7.9332446, 47.449093 ], + [ 7.9334422, 47.4489794 ], + [ 7.9336378, 47.4489269 ], + [ 7.9339063, 47.4488655 ], + [ 7.9344896, 47.4487173 ], + [ 7.934863, 47.4486065 ], + [ 7.9354201, 47.4484181 ], + [ 7.9355949, 47.4483937 ], + [ 7.9357738, 47.4483813 ], + [ 7.9359337, 47.4483627 ], + [ 7.9357967, 47.4483529 ], + [ 7.9357515, 47.4483504 ], + [ 7.9357062, 47.4483484 ], + [ 7.9356609, 47.4483471 ], + [ 7.9356155, 47.4483464 ], + [ 7.9355701, 47.4483463 ], + [ 7.9355247, 47.4483467 ], + [ 7.9354794, 47.4483478 ], + [ 7.9354341, 47.4483494 ], + [ 7.9353888, 47.4483517 ], + [ 7.9353437, 47.4483546 ], + [ 7.9352986, 47.448358 ], + [ 7.9352858, 47.4482764 ], + [ 7.9356838, 47.4481996 ], + [ 7.9356819, 47.4481476 ], + [ 7.9356731, 47.4479147 ], + [ 7.9356582, 47.44777 ], + [ 7.9355182, 47.4477568 ], + [ 7.9354308, 47.4477398 ], + [ 7.9349343, 47.4475915 ], + [ 7.9349221, 47.4475488 ], + [ 7.934817, 47.4475206 ], + [ 7.9346773, 47.4474613 ], + [ 7.9345213999999995, 47.447415 ], + [ 7.9341699, 47.4473313 ], + [ 7.9338173, 47.4472865 ], + [ 7.9327288, 47.4470831 ], + [ 7.9325728, 47.4470405 ], + [ 7.9322466, 47.446836 ], + [ 7.9322204, 47.4467634 ], + [ 7.9322619, 47.44669 ], + [ 7.9327406, 47.4462106 ], + [ 7.9328959, 47.4460471 ], + [ 7.9330194, 47.4458787 ], + [ 7.9334234, 47.4453659 ], + [ 7.9332569, 47.4452234 ], + [ 7.9336752, 47.4446006 ], + [ 7.9335306, 47.444479 ], + [ 7.9339375, 47.4441051 ], + [ 7.9341218, 47.4438492 ], + [ 7.9344836999999995, 47.4436146 ], + [ 7.9348809, 47.443591 ], + [ 7.9350001, 47.4434503 ], + [ 7.9347639, 47.4432597 ], + [ 7.9347352, 47.4431243 ], + [ 7.9347921, 47.4429759 ], + [ 7.9347615, 47.4429701 ], + [ 7.9343584, 47.4428472 ], + [ 7.934442, 47.4425325 ], + [ 7.9344570999999995, 47.44234 ], + [ 7.9344817, 47.4421854 ], + [ 7.934599, 47.441991 ], + [ 7.9347196, 47.4418062 ], + [ 7.9347243, 47.4412736 ], + [ 7.9341851, 47.4412822 ], + [ 7.9339276, 47.4416154 ], + [ 7.9337938, 47.4418564 ], + [ 7.9336988999999996, 47.4420413 ], + [ 7.9335511, 47.4422098 ], + [ 7.9333083, 47.4423046 ], + [ 7.9333258, 47.442523 ], + [ 7.9331692, 47.4426289 ], + [ 7.932989, 47.4426983 ], + [ 7.9327267, 47.4428571 ], + [ 7.9324401, 47.4430469 ], + [ 7.9321861, 47.4432067 ], + [ 7.9319113, 47.4432834 ], + [ 7.9317088, 47.4432682 ], + [ 7.931465, 47.4432317 ], + [ 7.9311416999999995, 47.4431971 ], + [ 7.9309749, 47.443462 ], + [ 7.9310571, 47.4436696 ], + [ 7.9310591, 47.4438129 ], + [ 7.9309507, 47.4439171 ], + [ 7.9308509, 47.4439809 ], + [ 7.9306751, 47.4442664 ], + [ 7.9305475, 47.4444587 ], + [ 7.93053, 47.4444851 ], + [ 7.9304916, 47.444543 ], + [ 7.9303013, 47.4447917 ], + [ 7.9302097, 47.4450111 ], + [ 7.9302425, 47.4452572 ], + [ 7.9301779, 47.4454416 ], + [ 7.9300374, 47.4455447 ], + [ 7.9298092, 47.4456087 ], + [ 7.9295213, 47.4456872 ], + [ 7.9292198, 47.445768 ], + [ 7.9291838, 47.4457795 ], + [ 7.9290348, 47.4458274 ], + [ 7.9290738, 47.445929 ], + [ 7.9292793, 47.445988 ], + [ 7.9294904, 47.446074 ], + [ 7.9296543, 47.4461933 ], + [ 7.9296146, 47.4464137 ], + [ 7.9294696, 47.4466867 ], + [ 7.9292567, 47.4468934 ], + [ 7.9292175, 47.4470469 ], + [ 7.9293211, 47.4472491 ], + [ 7.9294673, 47.4473793 ], + [ 7.9294183, 47.4475797 ], + [ 7.9293285000000004, 47.4477123 ], + [ 7.9292731, 47.4477956 ], + [ 7.9291336999999995, 47.4480051 ], + [ 7.929027, 47.4481797 ], + [ 7.9287902, 47.4484392 ], + [ 7.9287344, 47.4485139 ], + [ 7.9285841, 47.4487152 ], + [ 7.9283754, 47.4489988 ], + [ 7.9283087, 47.4491401 ], + [ 7.9282034, 47.4493632 ], + [ 7.9281374, 47.4496233 ], + [ 7.9281002, 47.4498667 ], + [ 7.9280052, 47.4499958 ], + [ 7.9277931, 47.4500821 ], + [ 7.9275687999999995, 47.450161 ], + [ 7.9272884999999995, 47.4502369 ], + [ 7.9269733, 47.4502908 ], + [ 7.9267076, 47.4503834 ], + [ 7.92652, 47.4504623 ], + [ 7.9263302, 47.4505712 ], + [ 7.9260969, 47.4507064 ], + [ 7.9258859, 47.450989 ], + [ 7.9255391, 47.4509965 ], + [ 7.9255610999999995, 47.4511112 ], + [ 7.9253049, 47.4511018 ], + [ 7.9250591, 47.4510505 ], + [ 7.9247913, 47.4509446 ], + [ 7.9245742, 47.450773 ], + [ 7.9244335, 47.450704 ], + [ 7.9242605, 47.4506481 ], + [ 7.9239267, 47.4508278 ], + [ 7.9238042, 47.4508185 ], + [ 7.923507, 47.4506799 ], + [ 7.923277, 47.4505546 ], + [ 7.9230773, 47.4505159 ], + [ 7.922898, 47.4505847 ], + [ 7.9226027, 47.4506416 ], + [ 7.9226636, 47.4507251 ], + [ 7.9228325, 47.4508876 ], + [ 7.9228895, 47.4510626 ], + [ 7.9226669, 47.4513059 ], + [ 7.9224988, 47.4514572 ], + [ 7.9224265, 47.4514929 ], + [ 7.9228753, 47.4517485 ], + [ 7.9231367, 47.4518793 ], + [ 7.9234718, 47.4520452 ], + [ 7.9236979, 47.4521518 ], + [ 7.923677, 47.4521786 ], + [ 7.9236388, 47.4522238 ], + [ 7.9233868, 47.452389 ], + [ 7.9233041, 47.4524343 ], + [ 7.9230645, 47.4525594 ], + [ 7.9226196, 47.4528565 ], + [ 7.9223968, 47.453022 ], + [ 7.9221775, 47.4534026 ], + [ 7.922147, 47.4537376 ], + [ 7.9220671, 47.4538296 ], + [ 7.9219677, 47.4539453 ], + [ 7.921925, 47.4540122 ], + [ 7.921899, 47.454087 ], + [ 7.9219428, 47.4541778 ], + [ 7.9219204, 47.4542216 ], + [ 7.9218105, 47.4543386 ], + [ 7.9217551, 47.4543955 ], + [ 7.9216418, 47.4545033 ], + [ 7.9215916, 47.4545405 ], + [ 7.9215365, 47.4545797 ], + [ 7.9213176, 47.4547365 ], + [ 7.9212306, 47.4547989 ], + [ 7.921274, 47.4548247 ], + [ 7.9213021, 47.4548372 ], + [ 7.9213428, 47.4548605 ], + [ 7.9214619, 47.4549288 ], + [ 7.9217089, 47.4550703 ], + [ 7.9221178, 47.4547912 ], + [ 7.9222279, 47.454766 ], + [ 7.9223387, 47.4546886 ], + [ 7.9225455, 47.4545341 ], + [ 7.9227857, 47.4543179 ], + [ 7.9228948, 47.454202 ], + [ 7.9230041, 47.4540648 ], + [ 7.9231047, 47.4541001 ], + [ 7.9231282, 47.4541085 ], + [ 7.9231978, 47.4541334 ], + [ 7.923458, 47.4539163 ], + [ 7.9238411, 47.4536001 ], + [ 7.9238485999999995, 47.4535943 ], + [ 7.92409, 47.4534077 ], + [ 7.9243351, 47.4532882 ], + [ 7.9244957, 47.4532429 ], + [ 7.9245078, 47.4536098 ], + [ 7.9245268, 47.4539545 ], + [ 7.9245589, 47.4542217 ], + [ 7.9246106, 47.4545401 ], + [ 7.9247037, 47.4547843 ], + [ 7.9248301, 47.4550443 ], + [ 7.9249647, 47.4552566 ], + [ 7.9251292, 47.455472 ], + [ 7.925232, 47.4555928 ], + [ 7.9252842999999995, 47.4555736 ], + [ 7.9253376, 47.4555541 ], + [ 7.9254435999999995, 47.4555149 ], + [ 7.92596, 47.4554177 ], + [ 7.9262152, 47.4554941 ], + [ 7.9260355, 47.4550759 ], + [ 7.9260641, 47.4548006 ], + [ 7.9260754, 47.4545138 ], + [ 7.9261646, 47.4543032 ], + [ 7.9262575, 47.4540168 ], + [ 7.9263309, 47.4537929 ], + [ 7.9264191, 47.4536939 ], + [ 7.926856, 47.4537335 ], + [ 7.9270478, 47.4537703 ], + [ 7.9271138, 47.4537831 ], + [ 7.9272427, 47.4538079 ], + [ 7.9277304, 47.453934 ], + [ 7.9284077, 47.4540938 ], + [ 7.9285297, 47.4539805 ], + [ 7.9286293, 47.4539048 ], + [ 7.9287463, 47.4538657 ], + [ 7.9288142, 47.4538713 ], + [ 7.9289608, 47.4538561 ], + [ 7.9291902, 47.4538186 ], + [ 7.9293672, 47.453779 ], + [ 7.929515, 47.4537346 ], + [ 7.9299859999999995, 47.4535586 ], + [ 7.9301612, 47.4534735 ], + [ 7.9303147, 47.453375199999996 ], + [ 7.9306906999999995, 47.4530815 ], + [ 7.9308374, 47.4529758 ], + [ 7.9309781, 47.4528955 ], + [ 7.9311397, 47.4528349 ], + [ 7.9313436, 47.4527818 ], + [ 7.9315583, 47.4527404 ], + [ 7.9317519, 47.4527149 ], + [ 7.9319112, 47.4527162 ], + [ 7.9320740999999995, 47.4527417 ], + [ 7.9322265, 47.4527911 ], + [ 7.9323578, 47.4528584 ], + [ 7.9324532, 47.4527768 ], + [ 7.9332684, 47.4521119 ], + [ 7.9325958, 47.4516796 ], + [ 7.9320051, 47.4513755 ], + [ 7.9318363, 47.4512805 ], + [ 7.9317366, 47.4512957 ], + [ 7.9318187, 47.4512088 ], + [ 7.931829, 47.4512015 ], + [ 7.9318386, 47.4511938 ], + [ 7.9318475, 47.4511856 ], + [ 7.9318556000000005, 47.4511771 ], + [ 7.9318629, 47.4511683 ], + [ 7.9318694, 47.4511592 ], + [ 7.931875, 47.4511498 ] + ], + [ + [ 7.9302633, 47.4501966 ], + [ 7.9305853, 47.4503029 ], + [ 7.9302238, 47.4504664 ], + [ 7.9301398, 47.450373 ], + [ 7.9302633, 47.4501966 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns252", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Tal", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Tal", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Tal", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Tal", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.6567375, 47.2678692 ], + [ 8.6567288, 47.2677281 ], + [ 8.6567093, 47.2675874 ], + [ 8.656679, 47.2674477 ], + [ 8.6566381, 47.2673092 ], + [ 8.6565865, 47.2671723 ], + [ 8.6565244, 47.2670375 ], + [ 8.6564522, 47.2669051 ], + [ 8.6563698, 47.2667754 ], + [ 8.6562775, 47.2666489 ], + [ 8.6561757, 47.2665258 ], + [ 8.6560645, 47.2664065 ], + [ 8.6559443, 47.2662913 ], + [ 8.6558154, 47.2661806 ], + [ 8.6556782, 47.2660746 ], + [ 8.655533, 47.2659736 ], + [ 8.6553803, 47.265878 ], + [ 8.6552204, 47.2657879 ], + [ 8.6550538, 47.2657037 ], + [ 8.654881, 47.2656255 ], + [ 8.6547024, 47.2655535 ], + [ 8.6545185, 47.265488 ], + [ 8.6543298, 47.2654292 ], + [ 8.6541369, 47.2653772 ], + [ 8.6539402, 47.2653321 ], + [ 8.653740299999999, 47.2652941 ], + [ 8.6535378, 47.2652632 ], + [ 8.6533332, 47.2652396 ], + [ 8.653127, 47.2652233 ], + [ 8.6529199, 47.2652144 ], + [ 8.6527124, 47.2652129 ], + [ 8.652505, 47.2652188 ], + [ 8.6522984, 47.2652321 ], + [ 8.6520931, 47.2652527 ], + [ 8.6518896, 47.2652806 ], + [ 8.6516886, 47.2653157 ], + [ 8.6514906, 47.2653579 ], + [ 8.651296, 47.2654071 ], + [ 8.6511056, 47.2654631 ], + [ 8.6509196, 47.2655259 ], + [ 8.6507388, 47.2655953 ], + [ 8.6505636, 47.2656709 ], + [ 8.6503943, 47.2657527 ], + [ 8.650231699999999, 47.2658404 ], + [ 8.650076, 47.2659338 ], + [ 8.6499276, 47.2660327 ], + [ 8.6497871, 47.2661366 ], + [ 8.6496548, 47.2662455 ], + [ 8.649531, 47.2663589 ], + [ 8.6494161, 47.2664765 ], + [ 8.6493104, 47.2665981 ], + [ 8.6492142, 47.2667233 ], + [ 8.6491278, 47.2668517 ], + [ 8.6490513, 47.266983 ], + [ 8.6489851, 47.2671169 ], + [ 8.6489292, 47.267253 ], + [ 8.6488838, 47.2673908 ], + [ 8.6488492, 47.2675301 ], + [ 8.6488253, 47.2676704 ], + [ 8.6488122, 47.2678114 ], + [ 8.6488099, 47.2679527 ], + [ 8.6488186, 47.2680939 ], + [ 8.648838, 47.2682345 ], + [ 8.6488683, 47.2683743 ], + [ 8.6489093, 47.2685128 ], + [ 8.6489608, 47.2686496 ], + [ 8.649022800000001, 47.2687844 ], + [ 8.6490951, 47.2689169 ], + [ 8.6491775, 47.2690465 ], + [ 8.6492697, 47.2691731 ], + [ 8.6493716, 47.2692962 ], + [ 8.6494827, 47.2694155 ], + [ 8.6496029, 47.2695307 ], + [ 8.6497318, 47.2696414 ], + [ 8.649869, 47.2697474 ], + [ 8.6500142, 47.2698484 ], + [ 8.6501669, 47.269944 ], + [ 8.6503268, 47.2700341 ], + [ 8.6504934, 47.2701184 ], + [ 8.6506662, 47.2701966 ], + [ 8.6508448, 47.2702685 ], + [ 8.6510288, 47.270334 ], + [ 8.6512174, 47.2703928 ], + [ 8.6514104, 47.2704449 ], + [ 8.6516071, 47.27049 ], + [ 8.651807, 47.270528 ], + [ 8.6520095, 47.2705589 ], + [ 8.6522142, 47.2705825 ], + [ 8.6524203, 47.2705987 ], + [ 8.6526275, 47.2706076 ], + [ 8.652835, 47.2706092 ], + [ 8.6530424, 47.2706033 ], + [ 8.653249, 47.27059 ], + [ 8.6534544, 47.2705694 ], + [ 8.6536578, 47.2705415 ], + [ 8.6538589, 47.2705064 ], + [ 8.654057, 47.2704642 ], + [ 8.6542515, 47.270415 ], + [ 8.654442, 47.2703589 ], + [ 8.6546279, 47.2702961 ], + [ 8.6548088, 47.2702268 ], + [ 8.654984, 47.2701511 ], + [ 8.6551532, 47.2700693 ], + [ 8.6553159, 47.2699816 ], + [ 8.6554716, 47.2698882 ], + [ 8.65562, 47.2697893 ], + [ 8.6557605, 47.2696854 ], + [ 8.6558928, 47.2695765 ], + [ 8.6560166, 47.2694631 ], + [ 8.6561315, 47.2693455 ], + [ 8.6562372, 47.2692239 ], + [ 8.6563334, 47.2690987 ], + [ 8.6564198, 47.2689703 ], + [ 8.6564962, 47.2688389 ], + [ 8.6565625, 47.268705 ], + [ 8.6566183, 47.268569 ], + [ 8.6566636, 47.2684311 ], + [ 8.6566983, 47.2682918 ], + [ 8.6567222, 47.2681515 ], + [ 8.6567353, 47.2680105 ], + [ 8.6567375, 47.2678692 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "MEL0001", + "country" : "CHE", + "name" : [ + { + "text" : "Gefängnis Meilen", + "lang" : "de-CH" + }, + { + "text" : "Gefängnis Meilen", + "lang" : "fr-CH" + }, + { + "text" : "Gefängnis Meilen", + "lang" : "it-CH" + }, + { + "text" : "Gefängnis Meilen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "de-CH" + }, + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "fr-CH" + }, + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "it-CH" + }, + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "de-CH" + }, + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "fr-CH" + }, + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "it-CH" + }, + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Reno Berner", + "lang" : "de-CH" + }, + { + "text" : "Reno Berner", + "lang" : "fr-CH" + }, + { + "text" : "Reno Berner", + "lang" : "it-CH" + }, + { + "text" : "Reno Berner", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.zh.ch/de/direktion-der-justiz-und-des-innern/justizvollzug-wiedereingliederung.html", + "email" : "sicherheit-juwe@ji.zh.ch", + "phone" : "0041432583400", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT12H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5624081, 47.5258834 ], + [ 7.5624384, 47.5259983 ], + [ 7.5624484, 47.5260351 ], + [ 7.562459, 47.5260718 ], + [ 7.5624702, 47.5261084 ], + [ 7.5624819, 47.526145 ], + [ 7.5625309, 47.5261749 ], + [ 7.5641315, 47.5262667 ], + [ 7.5641672, 47.5262421 ], + [ 7.5641381, 47.5260481 ], + [ 7.5640902, 47.5260092 ], + [ 7.563546, 47.5259076 ], + [ 7.5631146000000005, 47.5258298 ], + [ 7.5629634, 47.5258076 ], + [ 7.5628097, 47.5257951 ], + [ 7.5626551, 47.5257922 ], + [ 7.5625007, 47.5257992 ], + [ 7.5624915999999995, 47.5258001 ], + [ 7.5624828, 47.5258016 ], + [ 7.5624741, 47.5258036 ], + [ 7.5624658, 47.5258061 ], + [ 7.5624576999999995, 47.525809100000004 ], + [ 7.5624500999999995, 47.5258125 ], + [ 7.562443, 47.5258164 ], + [ 7.5624363, 47.5258206 ], + [ 7.5624303, 47.5258253 ], + [ 7.5624248, 47.5258302 ], + [ 7.56242, 47.5258355 ], + [ 7.562411, 47.525840099999996 ], + [ 7.5624101, 47.5258424 ], + [ 7.5624078, 47.5258505 ], + [ 7.5624064, 47.5258587 ], + [ 7.562406, 47.5258669 ], + [ 7.5624066, 47.5258752 ], + [ 7.5624081, 47.5258834 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns138", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Fuchshag", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Fuchshag", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Fuchshag", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Fuchshag", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7958308, 47.1549442 ], + [ 7.7958244, 47.1548029 ], + [ 7.7958073, 47.1546622 ], + [ 7.7957792999999995, 47.1545222 ], + [ 7.7957406, 47.1543834 ], + [ 7.7956914, 47.1542462 ], + [ 7.7956316, 47.1541109 ], + [ 7.7955616, 47.1539779 ], + [ 7.7954815, 47.1538477 ], + [ 7.7953915, 47.1537204 ], + [ 7.7952918, 47.1535966 ], + [ 7.7951828, 47.1534765 ], + [ 7.7950648000000005, 47.1533604 ], + [ 7.7949379, 47.1532487 ], + [ 7.7948027, 47.1531417 ], + [ 7.7946595, 47.1530397 ], + [ 7.7945086, 47.1529429 ], + [ 7.7943505, 47.1528516 ], + [ 7.7941857, 47.1527661 ], + [ 7.7940145, 47.1526866 ], + [ 7.7938374, 47.1526134 ], + [ 7.793655, 47.1525465 ], + [ 7.7934676, 47.1524863 ], + [ 7.793276, 47.1524328 ], + [ 7.7930804, 47.1523863 ], + [ 7.7928816, 47.1523467 ], + [ 7.79268, 47.1523144 ], + [ 7.7924762, 47.1522893 ], + [ 7.7922708, 47.1522714 ], + [ 7.7920643, 47.152261 ], + [ 7.7918572, 47.1522579 ], + [ 7.7916502, 47.1522623 ], + [ 7.7914438, 47.152274 ], + [ 7.7912386, 47.152293 ], + [ 7.7910352, 47.1523194 ], + [ 7.790834, 47.152353 ], + [ 7.7906357, 47.1523937 ], + [ 7.7904408, 47.1524415 ], + [ 7.7902498, 47.1524961 ], + [ 7.7900633, 47.1525575 ], + [ 7.7898818, 47.1526255 ], + [ 7.7897057, 47.1526999 ], + [ 7.7895354999999995, 47.1527804 ], + [ 7.7893718, 47.1528669 ], + [ 7.7892149, 47.1529591 ], + [ 7.7890653, 47.1530568 ], + [ 7.7889234, 47.1531597 ], + [ 7.7887896, 47.1532676 ], + [ 7.7886643, 47.15338 ], + [ 7.7885478, 47.1534968 ], + [ 7.7884402999999995, 47.1536176 ], + [ 7.7883423, 47.153742 ], + [ 7.788254, 47.1538698 ], + [ 7.7881756, 47.1540006 ], + [ 7.7881073, 47.154134 ], + [ 7.7880494, 47.1542696 ], + [ 7.788002, 47.1544071 ], + [ 7.7879651, 47.1545461 ], + [ 7.787939, 47.1546863 ], + [ 7.7879237, 47.1548272 ], + [ 7.7879192, 47.1549684 ], + [ 7.7879255, 47.1551096 ], + [ 7.7879427, 47.1552504 ], + [ 7.7879705999999995, 47.1553904 ], + [ 7.7880093, 47.1555292 ], + [ 7.7880585, 47.1556664 ], + [ 7.7881181999999995, 47.1558017 ], + [ 7.7881882000000004, 47.1559346 ], + [ 7.7882683, 47.1560649 ], + [ 7.7883583, 47.1561921 ], + [ 7.7884579, 47.156316 ], + [ 7.7885669, 47.1564361 ], + [ 7.788685, 47.1565522 ], + [ 7.7888117999999995, 47.1566639 ], + [ 7.788947, 47.1567709 ], + [ 7.7890903, 47.1568729 ], + [ 7.7892411, 47.1569697 ], + [ 7.7893992, 47.157061 ], + [ 7.7895641, 47.1571465 ], + [ 7.7897353, 47.157226 ], + [ 7.7899124, 47.1572993 ], + [ 7.7900948, 47.1573661 ], + [ 7.7902822, 47.1574264 ], + [ 7.7904739, 47.1574799 ], + [ 7.7906694, 47.1575264 ], + [ 7.7908683, 47.1575659 ], + [ 7.7910699, 47.1575983 ], + [ 7.7912737, 47.1576234 ], + [ 7.7914791, 47.1576412 ], + [ 7.7916857, 47.1576517 ], + [ 7.7918928, 47.1576548 ], + [ 7.7920998, 47.1576504 ], + [ 7.7923062, 47.1576387 ], + [ 7.7925114, 47.1576196 ], + [ 7.7927149, 47.1575933 ], + [ 7.792916, 47.1575597 ], + [ 7.7931144, 47.1575189 ], + [ 7.7933093, 47.1574712 ], + [ 7.7935003, 47.1574165 ], + [ 7.7936868, 47.1573551 ], + [ 7.7938684, 47.1572872 ], + [ 7.7940445, 47.1572128 ], + [ 7.7942146, 47.1571323 ], + [ 7.7943784, 47.1570457 ], + [ 7.7945352, 47.1569535 ], + [ 7.7946848, 47.1568558 ], + [ 7.7948267, 47.1567529 ], + [ 7.7949605, 47.156645 ], + [ 7.7950858, 47.1565326 ], + [ 7.7952024, 47.1564158 ], + [ 7.7953098, 47.156295 ], + [ 7.7954077999999996, 47.1561705 ], + [ 7.7954961, 47.1560428 ], + [ 7.7955745, 47.155912 ], + [ 7.7956427, 47.1557786 ], + [ 7.7957007, 47.155643 ], + [ 7.7957481, 47.1555055 ], + [ 7.7957849, 47.1553664 ], + [ 7.795811, 47.1552263 ], + [ 7.7958263, 47.1550854 ], + [ 7.7958308, 47.1549442 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0063", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Lindenholz", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Lindenholz", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Lindenholz", + "lang" : "it-CH" + }, + { + "text" : "Substation Lindenholz", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.9603653, 46.0838878 ], + [ 7.9603586, 46.0837466 ], + [ 7.9603414, 46.0836058 ], + [ 7.9603135, 46.0834659 ], + [ 7.9602752, 46.0833271 ], + [ 7.9602265, 46.08319 ], + [ 7.9601675, 46.0830548 ], + [ 7.9600985, 46.0829219 ], + [ 7.9600195, 46.0827917 ], + [ 7.9599309, 46.0826646 ], + [ 7.9598329, 46.0825409 ], + [ 7.9597256, 46.0824209 ], + [ 7.9596095, 46.082305 ], + [ 7.9594849, 46.0821935 ], + [ 7.959352, 46.0820867 ], + [ 7.9592112, 46.0819849 ], + [ 7.959063, 46.0818883 ], + [ 7.9589078, 46.0817972 ], + [ 7.9587459, 46.081712 ], + [ 7.9585778, 46.0816327 ], + [ 7.958404, 46.0815597 ], + [ 7.9582249, 46.0814931 ], + [ 7.9580411, 46.0814331 ], + [ 7.957853, 46.0813799 ], + [ 7.9576612, 46.0813337 ], + [ 7.9574662, 46.0812944 ], + [ 7.9572684, 46.0812624 ], + [ 7.9570685999999995, 46.0812375 ], + [ 7.9568671, 46.08122 ], + [ 7.9566646, 46.0812098 ], + [ 7.9564616, 46.0812071 ], + [ 7.9562587, 46.0812117 ], + [ 7.9560564, 46.0812237 ], + [ 7.9558553, 46.0812431 ], + [ 7.9556559, 46.0812698 ], + [ 7.9554588, 46.0813036 ], + [ 7.9552645, 46.0813447 ], + [ 7.9550736, 46.0813927 ], + [ 7.9548865, 46.0814476 ], + [ 7.9547038, 46.0815093 ], + [ 7.9545261, 46.0815775 ], + [ 7.9543536, 46.0816521 ], + [ 7.9541871, 46.0817329 ], + [ 7.9540268, 46.0818196 ], + [ 7.9538733, 46.0819121 ], + [ 7.953727, 46.08201 ], + [ 7.9535882, 46.0821132 ], + [ 7.9534573, 46.0822212 ], + [ 7.9533348, 46.0823338 ], + [ 7.9532209, 46.0824508 ], + [ 7.9531159, 46.0825717 ], + [ 7.9530202, 46.0826963 ], + [ 7.952934, 46.0828243 ], + [ 7.9528576, 46.0829551 ], + [ 7.9527909999999995, 46.0830886 ], + [ 7.9527346, 46.0832244 ], + [ 7.9526885, 46.0833619 ], + [ 7.9526528, 46.083501 ], + [ 7.9526277, 46.0836412 ], + [ 7.9526131, 46.0837821 ], + [ 7.9526091, 46.0839234 ], + [ 7.9526157, 46.0840646 ], + [ 7.952633, 46.0842054 ], + [ 7.9526608, 46.0843453 ], + [ 7.9526991, 46.0844841 ], + [ 7.9527478, 46.0846213 ], + [ 7.9528067, 46.0847565 ], + [ 7.9528758, 46.0848893 ], + [ 7.9529547, 46.0850195 ], + [ 7.9530433, 46.0851466 ], + [ 7.9531413, 46.0852703 ], + [ 7.9532486, 46.0853903 ], + [ 7.9533647, 46.0855062 ], + [ 7.9534893, 46.0856177 ], + [ 7.9536222, 46.0857246 ], + [ 7.9537629, 46.0858264 ], + [ 7.9539111, 46.085923 ], + [ 7.9540664, 46.0860141 ], + [ 7.9542283, 46.0860993 ], + [ 7.9543964, 46.0861786 ], + [ 7.9545702, 46.0862516 ], + [ 7.9547493, 46.0863182 ], + [ 7.9549331, 46.0863782 ], + [ 7.9551212, 46.0864314 ], + [ 7.955313, 46.0864777 ], + [ 7.9555081, 46.0865169 ], + [ 7.9557058, 46.086549 ], + [ 7.9559057, 46.0865738 ], + [ 7.9561072, 46.0865914 ], + [ 7.9563097, 46.0866015 ], + [ 7.9565128, 46.0866043 ], + [ 7.9567157, 46.0865996 ], + [ 7.956918, 46.0865876 ], + [ 7.9571191, 46.0865683 ], + [ 7.9573184999999995, 46.0865416 ], + [ 7.9575157, 46.0865077 ], + [ 7.9577100000000005, 46.0864667 ], + [ 7.9579009, 46.0864186 ], + [ 7.958088, 46.0863637 ], + [ 7.9582707, 46.0863021 ], + [ 7.9584485, 46.0862338 ], + [ 7.9586209, 46.0861592 ], + [ 7.9587875, 46.0860784 ], + [ 7.9589476999999995, 46.0859917 ], + [ 7.9591012, 46.0858992 ], + [ 7.9592476, 46.0858013 ], + [ 7.9593864, 46.0856981 ], + [ 7.9595172, 46.0855901 ], + [ 7.9596398, 46.0854774 ], + [ 7.9597536, 46.0853605 ], + [ 7.9598586000000005, 46.0852395 ], + [ 7.9599543, 46.0851149 ], + [ 7.9600405, 46.084987 ], + [ 7.9601169, 46.0848561 ], + [ 7.9601834, 46.0847226 ], + [ 7.9602398, 46.0845869 ], + [ 7.9602859, 46.0844493 ], + [ 7.9603216, 46.0843102 ], + [ 7.9603467, 46.08417 ], + [ 7.9603613, 46.0840291 ], + [ 7.9603653, 46.0838878 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0132", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Zermeiggern", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Zermeiggern", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Zermeiggern", + "lang" : "it-CH" + }, + { + "text" : "Substation Zermeiggern", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.4553004, 47.4806197 ], + [ 8.4552922, 47.4804785 ], + [ 8.4552732, 47.4803379 ], + [ 8.4552433, 47.4801981 ], + [ 8.4552027, 47.4800595 ], + [ 8.4551514, 47.4799226 ], + [ 8.4550896, 47.4797877 ], + [ 8.4550175, 47.4796551 ], + [ 8.4549353, 47.4795253 ], + [ 8.4548432, 47.4793986 ], + [ 8.4547414, 47.4792754 ], + [ 8.4546302, 47.4791559 ], + [ 8.45451, 47.479040499999996 ], + [ 8.454381, 47.4789296 ], + [ 8.4542436, 47.4788234 ], + [ 8.4540983, 47.4787222 ], + [ 8.4539453, 47.4786263 ], + [ 8.4537851, 47.4785359 ], + [ 8.4536182, 47.4784514 ], + [ 8.4534449, 47.4783729 ], + [ 8.4532659, 47.4783006 ], + [ 8.4530815, 47.4782348 ], + [ 8.4528923, 47.4781757 ], + [ 8.4526988, 47.4781233 ], + [ 8.4525015, 47.4780779 ], + [ 8.452300900000001, 47.4780395 ], + [ 8.4520977, 47.4780083 ], + [ 8.4518924, 47.4779844 ], + [ 8.4516855, 47.4779677 ], + [ 8.4514775, 47.4779585 ], + [ 8.4512692, 47.4779566 ], + [ 8.451061, 47.4779621 ], + [ 8.4508535, 47.477975 ], + [ 8.4506473, 47.4779953 ], + [ 8.4504429, 47.4780228 ], + [ 8.4502409, 47.4780575 ], + [ 8.4500419, 47.4780994 ], + [ 8.4498464, 47.4781483 ], + [ 8.449655, 47.478204 ], + [ 8.4494681, 47.4782665 ], + [ 8.4492863, 47.4783355 ], + [ 8.44911, 47.4784108 ], + [ 8.4489398, 47.4784923 ], + [ 8.4487762, 47.4785797 ], + [ 8.4486195, 47.4786729 ], + [ 8.4484702, 47.4787714 ], + [ 8.4483287, 47.4788751 ], + [ 8.4481955, 47.4789837 ], + [ 8.4480708, 47.4790969 ], + [ 8.447955, 47.4792143 ], + [ 8.4478484, 47.4793357 ], + [ 8.4477513, 47.4794607 ], + [ 8.447664, 47.479589 ], + [ 8.4475868, 47.4797201 ], + [ 8.4475197, 47.4798539 ], + [ 8.4474632, 47.4799899 ], + [ 8.4474171, 47.4801276 ], + [ 8.4473818, 47.4802668 ], + [ 8.4473572, 47.4804071 ], + [ 8.4473436, 47.4805481 ], + [ 8.4473408, 47.4806893 ], + [ 8.4473489, 47.4808305 ], + [ 8.4473679, 47.4809711 ], + [ 8.4473978, 47.4811109 ], + [ 8.4474384, 47.4812495 ], + [ 8.4474896, 47.4813864 ], + [ 8.4475514, 47.4815213 ], + [ 8.4476235, 47.4816539 ], + [ 8.4477057, 47.4817837 ], + [ 8.4477978, 47.4819104 ], + [ 8.4478996, 47.4820337 ], + [ 8.4480107, 47.4821531 ], + [ 8.448131, 47.4822685 ], + [ 8.4482599, 47.4823795 ], + [ 8.4483973, 47.4824857 ], + [ 8.4485427, 47.4825869 ], + [ 8.4486957, 47.4826828 ], + [ 8.4488559, 47.4827732 ], + [ 8.4490228, 47.4828577 ], + [ 8.449196, 47.4829362 ], + [ 8.4493751, 47.4830085 ], + [ 8.4495595, 47.4830743 ], + [ 8.4497487, 47.4831334 ], + [ 8.4499423, 47.4831858 ], + [ 8.4501396, 47.4832312 ], + [ 8.4503401, 47.4832696 ], + [ 8.4505434, 47.4833008 ], + [ 8.4507487, 47.4833248 ], + [ 8.4509557, 47.4833414 ], + [ 8.4511636, 47.4833507 ], + [ 8.451372, 47.4833525 ], + [ 8.4515802, 47.483347 ], + [ 8.4517877, 47.4833341 ], + [ 8.4519939, 47.4833139 ], + [ 8.4521983, 47.4832863 ], + [ 8.4524003, 47.4832516 ], + [ 8.4525993, 47.4832097 ], + [ 8.4527948, 47.4831608 ], + [ 8.4529863, 47.4831051 ], + [ 8.4531732, 47.4830426 ], + [ 8.4533551, 47.4829736 ], + [ 8.4535313, 47.4828983 ], + [ 8.4537015, 47.4828168 ], + [ 8.4538652, 47.4827293 ], + [ 8.4540219, 47.4826362 ], + [ 8.4541711, 47.4825377 ], + [ 8.4543126, 47.4824339 ], + [ 8.4544459, 47.4823254 ], + [ 8.4545706, 47.4822122 ], + [ 8.4546864, 47.4820947 ], + [ 8.4547929, 47.4819733 ], + [ 8.45489, 47.4818483 ], + [ 8.4549773, 47.4817201 ], + [ 8.4550545, 47.4815889 ], + [ 8.4551215, 47.4814551 ], + [ 8.4551781, 47.4813192 ], + [ 8.4552241, 47.4811814 ], + [ 8.4552594, 47.4810422 ], + [ 8.4552839, 47.4809019 ], + [ 8.4552976, 47.4807609 ], + [ 8.4553004, 47.4806197 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "DID0001", + "country" : "CHE", + "name" : [ + { + "text" : "Gefängnis Dielsdorf", + "lang" : "de-CH" + }, + { + "text" : "Gefängnis Dielsdorf", + "lang" : "fr-CH" + }, + { + "text" : "Gefängnis Dielsdorf", + "lang" : "it-CH" + }, + { + "text" : "Gefängnis Dielsdorf", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "de-CH" + }, + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "fr-CH" + }, + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "it-CH" + }, + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "de-CH" + }, + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "fr-CH" + }, + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "it-CH" + }, + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Reno Berner", + "lang" : "de-CH" + }, + { + "text" : "Reno Berner", + "lang" : "fr-CH" + }, + { + "text" : "Reno Berner", + "lang" : "it-CH" + }, + { + "text" : "Reno Berner", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.zh.ch/de/direktion-der-justiz-und-des-innern/justizvollzug-wiedereingliederung.html", + "email" : "sicherheit-juwe@ji.zh.ch", + "phone" : "0041432583400", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT12H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.5476583, 47.0136914 ], + [ 9.5474758, 47.01134 ], + [ 9.5471135, 47.0089985 ], + [ 9.5465727, 47.0066731 ], + [ 9.5458547, 47.0043702 ], + [ 9.5449616, 47.0020962 ], + [ 9.5438959, 46.9998573 ], + [ 9.542660399999999, 46.9976596 ], + [ 9.541258599999999, 46.9955092 ], + [ 9.5396943, 46.9934118 ], + [ 9.5379719, 46.9913733 ], + [ 9.5360961, 46.9893993 ], + [ 9.534072, 46.9874951 ], + [ 9.5319052, 46.985666 ], + [ 9.5296016, 46.9839169 ], + [ 9.527167500000001, 46.9822527 ], + [ 9.5246097, 46.9806778 ], + [ 9.5219351, 46.9791967 ], + [ 9.519151, 46.9778134 ], + [ 9.5162651, 46.9765316 ], + [ 9.5132853, 46.9753549 ], + [ 9.5102197, 46.9742864 ], + [ 9.5070768, 46.9733291 ], + [ 9.503865, 46.9724856 ], + [ 9.5005932, 46.9717583 ], + [ 9.4972704, 46.9711491 ], + [ 9.4939057, 46.9706596 ], + [ 9.4905081, 46.9702912 ], + [ 9.4870871, 46.970045 ], + [ 9.483652, 46.9699216 ], + [ 9.4802122, 46.9699212 ], + [ 9.476777, 46.9700441 ], + [ 9.4733559, 46.9702897 ], + [ 9.4699583, 46.9706574 ], + [ 9.4665933, 46.9711463 ], + [ 9.4632703, 46.9717549 ], + [ 9.4599982, 46.9724816 ], + [ 9.4567861, 46.9733245 ], + [ 9.4536428, 46.9742812 ], + [ 9.4505768, 46.9753491 ], + [ 9.4475965, 46.9765253 ], + [ 9.4447101, 46.9778066 ], + [ 9.4419255, 46.9791894 ], + [ 9.4392504, 46.9806701 ], + [ 9.4366919, 46.9822444 ], + [ 9.4342572, 46.9839082 ], + [ 9.4319529, 46.9856569 ], + [ 9.4297854, 46.9874856 ], + [ 9.4277606, 46.9893894 ], + [ 9.425884, 46.9913631 ], + [ 9.4241608, 46.9934013 ], + [ 9.4225957, 46.9954984 ], + [ 9.4211931, 46.9976486 ], + [ 9.4199567, 46.999846 ], + [ 9.4188901, 47.0020848 ], + [ 9.4179961, 47.0043586 ], + [ 9.4172773, 47.0066613 ], + [ 9.4167355, 47.0089866 ], + [ 9.4163724, 47.0113281 ], + [ 9.4161888, 47.0136794 ], + [ 9.4161855, 47.016034 ], + [ 9.4163624, 47.0183855 ], + [ 9.4167189, 47.0207275 ], + [ 9.4172543, 47.0230535 ], + [ 9.417967, 47.0253571 ], + [ 9.4188551, 47.0276321 ], + [ 9.4199162, 47.0298722 ], + [ 9.4211474, 47.0320712 ], + [ 9.4225453, 47.0342231 ], + [ 9.4241062, 47.036322 ], + [ 9.4258257, 47.0383622 ], + [ 9.4276992, 47.040338 ], + [ 9.4297215, 47.0422441 ], + [ 9.4318871, 47.0440751 ], + [ 9.4341901, 47.0458261 ], + [ 9.4366241, 47.0474923 ], + [ 9.4391826, 47.0490691 ], + [ 9.4418584, 47.0505521 ], + [ 9.4446442, 47.0519373 ], + [ 9.4475325, 47.0532209 ], + [ 9.4505152, 47.0543993 ], + [ 9.4535842, 47.0554693 ], + [ 9.456731, 47.0564281 ], + [ 9.459947, 47.0572728 ], + [ 9.4632234, 47.0580013 ], + [ 9.4665512, 47.0586115 ], + [ 9.4699213, 47.0591018 ], + [ 9.4733243, 47.0594708 ], + [ 9.4767509, 47.0597174 ], + [ 9.4801918, 47.0598411 ], + [ 9.4836374, 47.0598414 ], + [ 9.4870783, 47.0597184 ], + [ 9.490505, 47.0594723 ], + [ 9.4939082, 47.059104 ], + [ 9.4972784, 47.0586143 ], + [ 9.5006065, 47.0580047 ], + [ 9.5038832, 47.0572768 ], + [ 9.5070996, 47.0564327 ], + [ 9.510246800000001, 47.0554745 ], + [ 9.5133162, 47.054405 ], + [ 9.5162993, 47.0532271 ], + [ 9.5191881, 47.0519441 ], + [ 9.5219744, 47.0505594 ], + [ 9.5246508, 47.0490768 ], + [ 9.5272099, 47.0475005 ], + [ 9.5296446, 47.0458348 ], + [ 9.5319483, 47.0440842 ], + [ 9.5341146, 47.0422536 ], + [ 9.5361376, 47.0403479 ], + [ 9.5380119, 47.0383724 ], + [ 9.5397322, 47.0363325 ], + [ 9.5412939, 47.0342339 ], + [ 9.5426927, 47.0320822 ], + [ 9.5439247, 47.0298835 ], + [ 9.544986699999999, 47.0276436 ], + [ 9.5458756, 47.0253688 ], + [ 9.5465892, 47.0230653 ], + [ 9.5471255, 47.0207394 ], + [ 9.547483, 47.0183975 ], + [ 9.5476608, 47.016046 ], + [ 9.5476583, 47.0136914 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZE001", + "country" : "CHE", + "name" : [ + { + "text" : "LSZE Bad Ragaz", + "lang" : "de-CH" + }, + { + "text" : "LSZE Bad Ragaz", + "lang" : "fr-CH" + }, + { + "text" : "LSZE Bad Ragaz", + "lang" : "it-CH" + }, + { + "text" : "LSZE Bad Ragaz", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Docair AG Bad Ragaz", + "lang" : "de-CH" + }, + { + "text" : "Docair AG Bad Ragaz", + "lang" : "fr-CH" + }, + { + "text" : "Docair AG Bad Ragaz", + "lang" : "it-CH" + }, + { + "text" : "Docair AG Bad Ragaz", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Carlo Ronchetti", + "lang" : "de-CH" + }, + { + "text" : "Carlo Ronchetti", + "lang" : "fr-CH" + }, + { + "text" : "Carlo Ronchetti", + "lang" : "it-CH" + }, + { + "text" : "Carlo Ronchetti", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.lsze.ch/kontakte/index.html", + "email" : "carlo.ronchetti@bluewin.ch", + "phone" : "0041794009318", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P02DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.6934078, 46.669563 ], + [ 9.6933965, 46.6694219 ], + [ 9.693374500000001, 46.6692815 ], + [ 9.6933419, 46.669142 ], + [ 9.6932987, 46.6690038 ], + [ 9.6932451, 46.6688675 ], + [ 9.6931812, 46.6687332 ], + [ 9.6931071, 46.6686014 ], + [ 9.6930232, 46.6684725 ], + [ 9.6929295, 46.6683468 ], + [ 9.6928264, 46.6682246 ], + [ 9.6927142, 46.6681063 ], + [ 9.6925932, 46.6679922 ], + [ 9.6924636, 46.6678827 ], + [ 9.6923259, 46.6677779 ], + [ 9.6921804, 46.6676783 ], + [ 9.6920275, 46.667584 ], + [ 9.6918677, 46.6674954 ], + [ 9.6917013, 46.6674126 ], + [ 9.6915289, 46.667336 ], + [ 9.6913509, 46.6672656 ], + [ 9.6911678, 46.6672018 ], + [ 9.6909801, 46.6671447 ], + [ 9.6907883, 46.6670944 ], + [ 9.690593, 46.667051 ], + [ 9.6903946, 46.6670148 ], + [ 9.6901938, 46.6669858 ], + [ 9.689991, 46.666964 ], + [ 9.6897868, 46.6669496 ], + [ 9.6895819, 46.6669426 ], + [ 9.6893766, 46.6669429 ], + [ 9.6891717, 46.6669507 ], + [ 9.6889676, 46.6669658 ], + [ 9.688765, 46.6669883 ], + [ 9.6885644, 46.667018 ], + [ 9.6883663, 46.6670549 ], + [ 9.6881712, 46.6670989 ], + [ 9.6879798, 46.6671499 ], + [ 9.6877925, 46.6672076 ], + [ 9.6876099, 46.6672721 ], + [ 9.6874324, 46.667343 ], + [ 9.6872606, 46.6674203 ], + [ 9.6870948, 46.6675036 ], + [ 9.6869357, 46.6675928 ], + [ 9.6867835, 46.6676876 ], + [ 9.6866387, 46.6677877 ], + [ 9.6865018, 46.667893 ], + [ 9.686373, 46.668003 ], + [ 9.6862528, 46.6681175 ], + [ 9.6861414, 46.6682362 ], + [ 9.6860392, 46.6683587 ], + [ 9.6859465, 46.6684848 ], + [ 9.6858635, 46.668614 ], + [ 9.6857904, 46.668746 ], + [ 9.6857275, 46.6688805 ], + [ 9.6856749, 46.669017 ], + [ 9.6856327, 46.6691553 ], + [ 9.6856011, 46.6692949 ], + [ 9.6855801, 46.6694354 ], + [ 9.6855699, 46.6695766 ], + [ 9.6855704, 46.6697178 ], + [ 9.6855816, 46.6698589 ], + [ 9.6856036, 46.6699994 ], + [ 9.6856362, 46.6701389 ], + [ 9.6856794, 46.670277 ], + [ 9.685732999999999, 46.6704134 ], + [ 9.6857969, 46.6705477 ], + [ 9.6858709, 46.6706794 ], + [ 9.6859549, 46.6708084 ], + [ 9.6860485, 46.6709341 ], + [ 9.6861516, 46.6710563 ], + [ 9.6862638, 46.6711746 ], + [ 9.6863848, 46.6712887 ], + [ 9.6865144, 46.6713983 ], + [ 9.6866521, 46.671503 ], + [ 9.6867976, 46.6716027 ], + [ 9.6869505, 46.6716969 ], + [ 9.6871103, 46.6717856 ], + [ 9.6872766, 46.6718683 ], + [ 9.6874491, 46.671945 ], + [ 9.6876271, 46.6720153 ], + [ 9.6878102, 46.6720792 ], + [ 9.6879979, 46.6721363 ], + [ 9.6881897, 46.6721866 ], + [ 9.6883851, 46.6722299 ], + [ 9.6885834, 46.6722662 ], + [ 9.6887843, 46.6722952 ], + [ 9.6889871, 46.672317 ], + [ 9.6891913, 46.6723314 ], + [ 9.6893963, 46.6723384 ], + [ 9.6896016, 46.672338 ], + [ 9.6898065, 46.6723303 ], + [ 9.6900106, 46.6723152 ], + [ 9.6902132, 46.6722927 ], + [ 9.6904139, 46.672263 ], + [ 9.690612, 46.6722261 ], + [ 9.6908071, 46.6721821 ], + [ 9.6909985, 46.6721311 ], + [ 9.6911858, 46.6720733 ], + [ 9.6913684, 46.6720089 ], + [ 9.6915459, 46.6719379 ], + [ 9.6917178, 46.6718607 ], + [ 9.6918835, 46.6717773 ], + [ 9.6920427, 46.6716881 ], + [ 9.6921949, 46.6715933 ], + [ 9.6923396, 46.6714932 ], + [ 9.692476599999999, 46.6713879 ], + [ 9.6926053, 46.6712779 ], + [ 9.6927256, 46.6711634 ], + [ 9.6928369, 46.6710447 ], + [ 9.6929391, 46.6709222 ], + [ 9.6930318, 46.6707961 ], + [ 9.6931148, 46.6706669 ], + [ 9.6931879, 46.6705349 ], + [ 9.6932508, 46.6704004 ], + [ 9.6933034, 46.6702638 ], + [ 9.6933455, 46.6701256 ], + [ 9.6933771, 46.6699859 ], + [ 9.6933981, 46.6698454 ], + [ 9.6934083, 46.6697043 ], + [ 9.6934078, 46.669563 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0035", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Filisur", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Filisur", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Filisur", + "lang" : "it-CH" + }, + { + "text" : "Substation Filisur", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.485351, 47.0132519 ], + [ 9.4805431, 47.0151058 ], + [ 9.4804638, 47.0150918 ], + [ 9.4802232, 47.0148039 ], + [ 9.4797317, 47.0149851 ], + [ 9.4800061, 47.0153134 ], + [ 9.4783926, 47.0159349 ], + [ 9.4781975, 47.0160335 ], + [ 9.478598999999999, 47.0165206 ], + [ 9.4816111, 47.0153626 ], + [ 9.4817514, 47.0153086 ], + [ 9.4821941, 47.0156544 ], + [ 9.4843983, 47.0148068 ], + [ 9.4846891, 47.0150322 ], + [ 9.4856124, 47.0145226 ], + [ 9.4854336, 47.0143702 ], + [ 9.4860728, 47.0140573 ], + [ 9.485351, 47.0132519 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZE002", + "country" : "CHE", + "name" : [ + { + "text" : "LSZE Bad Ragaz (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSZE Bad Ragaz (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSZE Bad Ragaz (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSZE Bad Ragaz (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Docair AG Bad Ragaz", + "lang" : "de-CH" + }, + { + "text" : "Docair AG Bad Ragaz", + "lang" : "fr-CH" + }, + { + "text" : "Docair AG Bad Ragaz", + "lang" : "it-CH" + }, + { + "text" : "Docair AG Bad Ragaz", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Carlo Ronchetti", + "lang" : "de-CH" + }, + { + "text" : "Carlo Ronchetti", + "lang" : "fr-CH" + }, + { + "text" : "Carlo Ronchetti", + "lang" : "it-CH" + }, + { + "text" : "Carlo Ronchetti", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.lsze.ch/kontakte/index.html", + "email" : "carlo.ronchetti@bluewin.ch", + "phone" : "0041794009318", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P02DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.2550736, 46.3615297 ], + [ 6.2522984, 46.3616517 ], + [ 6.2489198, 46.3619236 ], + [ 6.2455664, 46.3623175 ], + [ 6.2422473, 46.3628322 ], + [ 6.2389716, 46.3634664 ], + [ 6.2357482, 46.3642183 ], + [ 6.232586, 46.3650859 ], + [ 6.2294936, 46.3660668 ], + [ 6.2264795, 46.3671583 ], + [ 6.2235519, 46.3683574 ], + [ 6.2207189, 46.3696608 ], + [ 6.2179881, 46.3710651 ], + [ 6.2153671, 46.3725663 ], + [ 6.212863, 46.3741603 ], + [ 6.2104828, 46.3758428 ], + [ 6.2082329, 46.3776092 ], + [ 6.2061195, 46.3794546 ], + [ 6.2041484, 46.381374 ], + [ 6.202325, 46.3833621 ], + [ 6.2006544, 46.3854136 ], + [ 6.1991411, 46.3875227 ], + [ 6.1977892, 46.3896837 ], + [ 6.1966025, 46.391890599999996 ], + [ 6.1955843, 46.3941376 ], + [ 6.1947374, 46.3964183 ], + [ 6.194064, 46.3987265 ], + [ 6.1935662, 46.401056 ], + [ 6.1932452, 46.4034003 ], + [ 6.1931021, 46.405753 ], + [ 6.1931371, 46.4081076 ], + [ 6.1933502, 46.4104578 ], + [ 6.1937408, 46.412797 ], + [ 6.194308, 46.4151189 ], + [ 6.1950502, 46.417417 ], + [ 6.1959653, 46.4196852 ], + [ 6.1970509, 46.4219171 ], + [ 6.198304, 46.4241066 ], + [ 6.1997212, 46.4262478 ], + [ 6.2012986, 46.4283347 ], + [ 6.2030319, 46.4303617 ], + [ 6.2049165, 46.4323231 ], + [ 6.2069469999999995, 46.4342136 ], + [ 6.209118, 46.436028 ], + [ 6.2114235, 46.4377613 ], + [ 6.2138573, 46.4394087 ], + [ 6.2164125, 46.4409658 ], + [ 6.2190823, 46.4424282 ], + [ 6.2218593, 46.443792 ], + [ 6.2247358, 46.4450534 ], + [ 6.227704, 46.4462089 ], + [ 6.2307558, 46.4472553 ], + [ 6.2338827, 46.4481898 ], + [ 6.2370762, 46.4490099 ], + [ 6.2403276, 46.4497132 ], + [ 6.2436277, 46.4502978 ], + [ 6.2469677, 46.4507622 ], + [ 6.2503383, 46.4511049 ], + [ 6.2537303, 46.4513252 ], + [ 6.2571343, 46.4514224 ], + [ 6.260541, 46.4513962 ], + [ 6.2639411, 46.4512467 ], + [ 6.2673251, 46.4509744 ], + [ 6.2706839, 46.4505799 ], + [ 6.2740081, 46.4500643 ], + [ 6.2772886, 46.4494291 ], + [ 6.2805165, 46.448676 ], + [ 6.2836828, 46.4478071 ], + [ 6.2867789, 46.4468247 ], + [ 6.2897962, 46.4457316 ], + [ 6.2927265, 46.4445308 ], + [ 6.2955617, 46.4432255 ], + [ 6.2982941, 46.4418194 ], + [ 6.3009162, 46.4403163 ], + [ 6.3034207, 46.4387203 ], + [ 6.3058008, 46.4370359 ], + [ 6.30805, 46.4352676 ], + [ 6.3101621, 46.4334202 ], + [ 6.3121313, 46.431499 ], + [ 6.3139523, 46.4295091 ], + [ 6.31562, 46.427456 ], + [ 6.3171299, 46.4253454 ], + [ 6.3184778999999995, 46.423183 ], + [ 6.3196603, 46.4209747 ], + [ 6.3206739, 46.4187267 ], + [ 6.3215159, 46.416445 ], + [ 6.322184, 46.414136 ], + [ 6.3226764, 46.411806 ], + [ 6.3229918, 46.4094614 ], + [ 6.3231294, 46.4071085 ], + [ 6.3230888, 46.4047539 ], + [ 6.32287, 46.402404 ], + [ 6.3224739, 46.4000652 ], + [ 6.3219014, 46.397744 ], + [ 6.3214965, 46.3964993 ], + [ 6.2929626, 46.3814874 ], + [ 6.2680776, 46.3683825 ], + [ 6.2550736, 46.3615297 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSGP001", + "country" : "CHE", + "name" : [ + { + "text" : "LSGP La Côte", + "lang" : "de-CH" + }, + { + "text" : "LSGP La Côte", + "lang" : "fr-CH" + }, + { + "text" : "LSGP La Côte", + "lang" : "it-CH" + }, + { + "text" : "LSGP La Côte", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Aérodrome de la Côte", + "lang" : "de-CH" + }, + { + "text" : "Aérodrome de la Côte", + "lang" : "fr-CH" + }, + { + "text" : "Aérodrome de la Côte", + "lang" : "it-CH" + }, + { + "text" : "Aérodrome de la Côte", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Chef d'aérodrome", + "lang" : "de-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "fr-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "it-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Marc Kleiner", + "lang" : "de-CH" + }, + { + "text" : "Marc Kleiner", + "lang" : "fr-CH" + }, + { + "text" : "Marc Kleiner", + "lang" : "it-CH" + }, + { + "text" : "Marc Kleiner", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.lsgp.ch/", + "email" : "info@lsgp.ch", + "phone" : "0041223630990", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.4737903, 47.576361 ], + [ 8.4738283, 47.5763614 ], + [ 8.4740369, 47.5763558 ], + [ 8.4742447, 47.5763429 ], + [ 8.4744513, 47.5763226 ], + [ 8.4746561, 47.576295 ], + [ 8.4748584, 47.5762602 ], + [ 8.4750577, 47.5762183 ], + [ 8.4752536, 47.5761694 ], + [ 8.4754453, 47.5761137 ], + [ 8.4756325, 47.5760512 ], + [ 8.4758147, 47.5759821 ], + [ 8.4759912, 47.5759067 ], + [ 8.4761617, 47.5758252 ], + [ 8.4763256, 47.5757377 ], + [ 8.4764825, 47.5756446 ], + [ 8.476632, 47.575546 ], + [ 8.4767737, 47.5754423 ], + [ 8.4769071, 47.5753336 ], + [ 8.477032, 47.5752205 ], + [ 8.477148, 47.575103 ], + [ 8.4772547, 47.5749816 ], + [ 8.4773518, 47.5748566 ], + [ 8.4774392, 47.5747283 ], + [ 8.4775165, 47.5745971 ], + [ 8.477583599999999, 47.5744633 ], + [ 8.4776402, 47.5743273 ], + [ 8.4776862, 47.5741896 ], + [ 8.4777216, 47.5740503 ], + [ 8.4777461, 47.5739101 ], + [ 8.4777597, 47.5737691 ], + [ 8.4777624, 47.5736279 ], + [ 8.4777542, 47.5734867 ], + [ 8.477735, 47.5733461 ], + [ 8.4777051, 47.5732063 ], + [ 8.4776643, 47.5730677 ], + [ 8.4776129, 47.5729308 ], + [ 8.477551, 47.5727959 ], + [ 8.4774787, 47.5726634 ], + [ 8.4773963, 47.5725336 ], + [ 8.4773039, 47.572407 ], + [ 8.4772019, 47.5722837 ], + [ 8.4770905, 47.5721643 ], + [ 8.47697, 47.5720489 ], + [ 8.4768407, 47.571938 ], + [ 8.4767031, 47.5718318 ], + [ 8.4765574, 47.5717306 ], + [ 8.4764041, 47.5716348 ], + [ 8.4762436, 47.5715445 ], + [ 8.4760764, 47.57146 ], + [ 8.4759028, 47.5713815 ], + [ 8.4757234, 47.5713093 ], + [ 8.4755387, 47.5712435 ], + [ 8.4753491, 47.5711844 ], + [ 8.4751552, 47.5711321 ], + [ 8.4749576, 47.5710867 ], + [ 8.4747567, 47.5710484 ], + [ 8.4745531, 47.5710172 ], + [ 8.4743474, 47.5709933 ], + [ 8.4741401, 47.5709767 ], + [ 8.4739318, 47.5709675 ], + [ 8.4737231, 47.5709657 ], + [ 8.4735145, 47.5709712 ], + [ 8.4733067, 47.5709842 ], + [ 8.4731001, 47.5710044 ], + [ 8.4728954, 47.571032 ], + [ 8.4726931, 47.5710668 ], + [ 8.4724938, 47.5711087 ], + [ 8.4722979, 47.5711576 ], + [ 8.4721062, 47.5712134 ], + [ 8.471919, 47.5712759 ], + [ 8.4717369, 47.5713449 ], + [ 8.4715603, 47.5714203 ], + [ 8.4713899, 47.5715018 ], + [ 8.471226, 47.5715893 ], + [ 8.4710691, 47.5716824 ], + [ 8.4709195, 47.571781 ], + [ 8.4707779, 47.5718847 ], + [ 8.4706444, 47.5719933 ], + [ 8.4705195, 47.5721065 ], + [ 8.4704036, 47.572224 ], + [ 8.4702969, 47.5723454 ], + [ 8.4701997, 47.5724704 ], + [ 8.4701123, 47.5725987 ], + [ 8.470035, 47.5727299 ], + [ 8.4699679, 47.5728636 ], + [ 8.4699112, 47.5729996 ], + [ 8.4698652, 47.5731373 ], + [ 8.4698298, 47.5732766 ], + [ 8.4698053, 47.5734168 ], + [ 8.4697917, 47.5735578 ], + [ 8.4697889, 47.573699 ], + [ 8.4697971, 47.5738402 ], + [ 8.4698163, 47.5739809 ], + [ 8.4698462, 47.5741206 ], + [ 8.4698842, 47.5742499 ], + [ 8.4702256, 47.5744158 ], + [ 8.4710601, 47.5748566 ], + [ 8.4718224, 47.5752774 ], + [ 8.4725852, 47.5756979 ], + [ 8.4733483, 47.576118 ], + [ 8.4737903, 47.576361 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0030", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Eglisau", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Eglisau", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Eglisau", + "lang" : "it-CH" + }, + { + "text" : "Substation Eglisau", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8920048, 47.441437 ], + [ 7.8919594, 47.4415396 ], + [ 7.8919174, 47.4416873 ], + [ 7.8918902, 47.441783 ], + [ 7.8919008999999996, 47.4417936 ], + [ 7.8919366, 47.441829 ], + [ 7.8920378, 47.4419294 ], + [ 7.8920867, 47.441978 ], + [ 7.8922967, 47.4420401 ], + [ 7.8923135, 47.4422453 ], + [ 7.892281, 47.4423359 ], + [ 7.8922115999999995, 47.4425298 ], + [ 7.8921025, 47.4428504 ], + [ 7.8921079, 47.4429128 ], + [ 7.8921408, 47.4432916 ], + [ 7.8921805, 47.4433237 ], + [ 7.8922, 47.4433395 ], + [ 7.8927371, 47.4429894 ], + [ 7.8931818, 47.4426981 ], + [ 7.8934626, 47.4425033 ], + [ 7.8939553, 47.4421605 ], + [ 7.8940139, 47.4421237 ], + [ 7.8940377999999995, 47.4420814 ], + [ 7.8944581, 47.4415827 ], + [ 7.894605, 47.4414535 ], + [ 7.8947021, 47.4415205 ], + [ 7.8947596, 47.4415601 ], + [ 7.894822, 47.4415302 ], + [ 7.8950254, 47.4414326 ], + [ 7.8952859, 47.4413047 ], + [ 7.8955705, 47.4412621 ], + [ 7.8959354, 47.4412104 ], + [ 7.8961866, 47.4411362 ], + [ 7.8964853, 47.4410537 ], + [ 7.8965189, 47.441028 ], + [ 7.8967814, 47.4408779 ], + [ 7.8972994, 47.440679 ], + [ 7.898046, 47.4403578 ], + [ 7.8987977, 47.4400672 ], + [ 7.8988312, 47.4400528 ], + [ 7.8992542, 47.4397319 ], + [ 7.8995797, 47.4395404 ], + [ 7.8998788, 47.4393741 ], + [ 7.9003862, 47.4390239 ], + [ 7.900689, 47.4388736 ], + [ 7.9009111, 47.4388064 ], + [ 7.9015756, 47.4387406 ], + [ 7.9019354, 47.4387533 ], + [ 7.9021535, 47.438744 ], + [ 7.9023305, 47.4387498 ], + [ 7.9026998, 47.4388019 ], + [ 7.9030297, 47.4386157 ], + [ 7.9032347, 47.4384242 ], + [ 7.9029082, 47.4382049 ], + [ 7.9027279, 47.4380838 ], + [ 7.9035186, 47.4378275 ], + [ 7.9036221, 47.4377782 ], + [ 7.9036659, 47.4377574 ], + [ 7.9037254, 47.437729 ], + [ 7.9039202, 47.4372797 ], + [ 7.9038001, 47.4371603 ], + [ 7.9037029, 47.4370637 ], + [ 7.9033264, 47.4370328 ], + [ 7.9031399, 47.4369554 ], + [ 7.902776, 47.4368044 ], + [ 7.9031351999999995, 47.4364437 ], + [ 7.9034262, 47.4361515 ], + [ 7.903698, 47.4358292 ], + [ 7.9039372, 47.4355797 ], + [ 7.9040305, 47.4354823 ], + [ 7.9044131, 47.4350581 ], + [ 7.9044547, 47.4350199 ], + [ 7.9047138, 47.4347817 ], + [ 7.9051168, 47.4341758 ], + [ 7.9052097, 47.4339872 ], + [ 7.9052527, 47.4338998 ], + [ 7.9052181, 47.4335682 ], + [ 7.905312, 47.4333048 ], + [ 7.9055227, 47.4330053 ], + [ 7.9055982, 47.432898 ], + [ 7.9058933, 47.4324517 ], + [ 7.9064179, 47.432326 ], + [ 7.9064751, 47.4323079 ], + [ 7.9066963999999995, 47.4322379 ], + [ 7.9069716, 47.432176 ], + [ 7.9073157, 47.4320959 ], + [ 7.9074456, 47.4319208 ], + [ 7.9076877, 47.4317209 ], + [ 7.9079197, 47.4315266 ], + [ 7.9080132, 47.4314871 ], + [ 7.9083392, 47.4313497 ], + [ 7.9083711, 47.4313362 ], + [ 7.9073630999999995, 47.4312288 ], + [ 7.90685, 47.4311064 ], + [ 7.9067904, 47.4310528 ], + [ 7.9066561, 47.4310334 ], + [ 7.9062294, 47.4309717 ], + [ 7.9058211, 47.4308888 ], + [ 7.9058518, 47.4305517 ], + [ 7.9058697, 47.4302974 ], + [ 7.9058287, 47.4302168 ], + [ 7.9057579, 47.4300774 ], + [ 7.9057192, 47.4297657 ], + [ 7.9058817, 47.4296044 ], + [ 7.9058572, 47.4295736 ], + [ 7.9056426, 47.4293035 ], + [ 7.9056158, 47.4292381 ], + [ 7.9055981, 47.4287831 ], + [ 7.9056198, 47.4285469 ], + [ 7.9056455, 47.4282668 ], + [ 7.9056422, 47.4280667 ], + [ 7.9056229, 47.4279139 ], + [ 7.9055966, 47.4277065 ], + [ 7.9055877, 47.427684 ], + [ 7.9054839, 47.4274231 ], + [ 7.905309, 47.4274376 ], + [ 7.9053451, 47.4278295 ], + [ 7.9052336, 47.4284601 ], + [ 7.9051389, 47.4289503 ], + [ 7.9051158, 47.4293313 ], + [ 7.9051407, 47.4297596 ], + [ 7.9051461, 47.4300804 ], + [ 7.9051686, 47.4305642 ], + [ 7.9051816, 47.4308887 ], + [ 7.905247, 47.4311329 ], + [ 7.9054692, 47.4314642 ], + [ 7.9058535, 47.4314918 ], + [ 7.9065226, 47.431559 ], + [ 7.9069424999999995, 47.4315512 ], + [ 7.9074948, 47.4314123 ], + [ 7.9070668, 47.4317029 ], + [ 7.9066436, 47.4317899 ], + [ 7.9060169, 47.4318567 ], + [ 7.9054942, 47.4319123 ], + [ 7.9051454, 47.4319923 ], + [ 7.9049879999999995, 47.4321195 ], + [ 7.9049124, 47.4322705 ], + [ 7.904724, 47.4325768 ], + [ 7.9045247, 47.4329086 ], + [ 7.904253, 47.4333507 ], + [ 7.9039637, 47.4338244 ], + [ 7.9037989, 47.4340796 ], + [ 7.9036073, 47.4343105 ], + [ 7.9033747, 47.4345468 ], + [ 7.9029402, 47.4349925 ], + [ 7.902535, 47.4353461 ], + [ 7.902373, 47.4355553 ], + [ 7.9022673, 47.4357357 ], + [ 7.9020571, 47.4358868 ], + [ 7.9017687, 47.4362848 ], + [ 7.9015959, 47.4366541 ], + [ 7.9016037, 47.4368836 ], + [ 7.9017173, 47.4369881 ], + [ 7.9017554, 47.4370226 ], + [ 7.9021871, 47.4373749 ], + [ 7.9026292, 47.4374933 ], + [ 7.9027382, 47.4376387 ], + [ 7.9022994, 47.4376324 ], + [ 7.9018653, 47.4376312 ], + [ 7.9011215, 47.4376085 ], + [ 7.9007017, 47.4375848 ], + [ 7.9003005, 47.4377079 ], + [ 7.8999318, 47.4378073 ], + [ 7.8998015, 47.4378649 ], + [ 7.8992683, 47.4381005 ], + [ 7.8990165, 47.4382425 ], + [ 7.8989191, 47.437932 ], + [ 7.898997, 47.4377267 ], + [ 7.8989648, 47.4372267 ], + [ 7.8989491, 47.4372389 ], + [ 7.8989116, 47.4372568 ], + [ 7.8989493, 47.4371061 ], + [ 7.8992221, 47.4369964 ], + [ 7.8993392, 47.4368919 ], + [ 7.8995381, 47.4368396 ], + [ 7.900633, 47.4363423 ], + [ 7.9003271999999996, 47.4362441 ], + [ 7.9003147, 47.4362412 ], + [ 7.9003526, 47.4362074 ], + [ 7.9005554, 47.4359425 ], + [ 7.9005605, 47.4359363 ], + [ 7.9006908, 47.4358242 ], + [ 7.9008444, 47.4356974 ], + [ 7.9011107, 47.4354728 ], + [ 7.9015626999999995, 47.4351674 ], + [ 7.9018761, 47.4348809 ], + [ 7.9019226, 47.4348263 ], + [ 7.9021969, 47.4345488 ], + [ 7.9024465, 47.4343485 ], + [ 7.9026235, 47.4341478 ], + [ 7.9026873, 47.4340163 ], + [ 7.9029979, 47.4336013 ], + [ 7.9030758, 47.433536 ], + [ 7.9031672, 47.4333279 ], + [ 7.9034189999999995, 47.4328766 ], + [ 7.9034289, 47.4328475 ], + [ 7.9034294, 47.4328426 ], + [ 7.9035931999999995, 47.4327721 ], + [ 7.9038153, 47.432704 ], + [ 7.9039557, 47.4325812 ], + [ 7.9041104, 47.4324205 ], + [ 7.9042133, 47.4322751 ], + [ 7.9043917, 47.4320443 ], + [ 7.9043968, 47.4320343 ], + [ 7.9044014, 47.4320242 ], + [ 7.9044063, 47.4320117 ], + [ 7.904436, 47.431754 ], + [ 7.9044303, 47.4316614 ], + [ 7.9044355, 47.4315696 ], + [ 7.9044448, 47.4315589 ], + [ 7.9044483, 47.4315477 ], + [ 7.9044527, 47.4315367 ], + [ 7.9044963, 47.431475 ], + [ 7.9045062, 47.4314658 ], + [ 7.9045168, 47.4314569 ], + [ 7.9045185, 47.4314496 ], + [ 7.9046185, 47.4313772 ], + [ 7.9047928, 47.4313174 ], + [ 7.9048241, 47.431254 ], + [ 7.9048444, 47.4312191 ], + [ 7.9048327, 47.4310983 ], + [ 7.9047652, 47.4310262 ], + [ 7.9046837, 47.4309586 ], + [ 7.9045252, 47.4308266 ], + [ 7.9043508, 47.4306411 ], + [ 7.9042969, 47.4305339 ], + [ 7.9041934, 47.4304229 ], + [ 7.9041509, 47.4304094 ], + [ 7.9041813, 47.4303784 ], + [ 7.9041681, 47.4302546 ], + [ 7.9041408, 47.4299972 ], + [ 7.9042639, 47.4296778 ], + [ 7.904284, 47.4296233 ], + [ 7.9043289, 47.4293072 ], + [ 7.9043356, 47.4292041 ], + [ 7.9043404, 47.4291804 ], + [ 7.9043513, 47.4290138 ], + [ 7.9043495, 47.42899 ], + [ 7.904354, 47.4289211 ], + [ 7.9043294, 47.4287121 ], + [ 7.9043647, 47.4285952 ], + [ 7.9043827, 47.4285356 ], + [ 7.9044107, 47.4285148 ], + [ 7.9046307, 47.428311 ], + [ 7.9046514, 47.4282867 ], + [ 7.9046503999999995, 47.4282563 ], + [ 7.9046844, 47.4280703 ], + [ 7.9046997999999995, 47.4279692 ], + [ 7.9046452, 47.4278116 ], + [ 7.9046888, 47.4275169 ], + [ 7.904687, 47.4274914 ], + [ 7.9046677, 47.4274932 ], + [ 7.904606, 47.4274989 ], + [ 7.9046021, 47.4274992 ], + [ 7.9043137, 47.4275258 ], + [ 7.9042721, 47.4275294 ], + [ 7.9042262999999995, 47.4276842 ], + [ 7.9039317, 47.4279642 ], + [ 7.9039985999999995, 47.428116 ], + [ 7.903989, 47.4283081 ], + [ 7.9038443, 47.4286329 ], + [ 7.9037375, 47.4288798 ], + [ 7.9036774, 47.4291701 ], + [ 7.9035062, 47.4296189 ], + [ 7.9034661, 47.4300896 ], + [ 7.9033012, 47.4302641 ], + [ 7.9033449000000005, 47.4305937 ], + [ 7.9028019, 47.430924 ], + [ 7.9026945, 47.4314747 ], + [ 7.9026041, 47.431752 ], + [ 7.9024899, 47.4320789 ], + [ 7.9023486, 47.4324119 ], + [ 7.9022787, 47.4326176 ], + [ 7.9021814, 47.4328377 ], + [ 7.9021055, 47.4330541 ], + [ 7.901935, 47.4333232 ], + [ 7.9016949, 47.4334968 ], + [ 7.9016002, 47.4338379 ], + [ 7.9013874, 47.4340899 ], + [ 7.9009597, 47.434309 ], + [ 7.9006351, 47.4343306 ], + [ 7.9003309999999995, 47.4345776 ], + [ 7.9001423, 47.4347539 ], + [ 7.8998708, 47.4349774 ], + [ 7.8994794, 47.4351555 ], + [ 7.8992124, 47.4353513 ], + [ 7.898903, 47.4356241 ], + [ 7.8987959, 47.4358332 ], + [ 7.898559, 47.4359984 ], + [ 7.898367, 47.4361578 ], + [ 7.8981947, 47.4363093 ], + [ 7.8980413, 47.4364664 ], + [ 7.8979417, 47.4364847 ], + [ 7.8978277, 47.4365827 ], + [ 7.8975042, 47.4367443 ], + [ 7.8972109, 47.4370084 ], + [ 7.8970208, 47.437149 ], + [ 7.8964262, 47.4373474 ], + [ 7.8959606, 47.4373214 ], + [ 7.895788, 47.4373104 ], + [ 7.895331, 47.4372969 ], + [ 7.8951587, 47.4374171 ], + [ 7.8951315, 47.4374361 ], + [ 7.8946901, 47.4374726 ], + [ 7.8943727, 47.4375645 ], + [ 7.8938901, 47.4376525 ], + [ 7.8932676, 47.4376436 ], + [ 7.8929911, 47.4375631 ], + [ 7.8929611, 47.437564 ], + [ 7.8929077, 47.4375657 ], + [ 7.8925254, 47.437578 ], + [ 7.8920015, 47.4375257 ], + [ 7.8923307, 47.4377048 ], + [ 7.8923058, 47.4378092 ], + [ 7.8925377999999995, 47.4381509 ], + [ 7.8927452, 47.4384252 ], + [ 7.8929637, 47.438539 ], + [ 7.8933101, 47.4387191 ], + [ 7.8935183, 47.4388025 ], + [ 7.8936068, 47.4388379 ], + [ 7.8937974, 47.4387815 ], + [ 7.8941692, 47.438693 ], + [ 7.8946818, 47.4385896 ], + [ 7.8950797, 47.4384996 ], + [ 7.8955491, 47.4384105 ], + [ 7.8959832, 47.4383201 ], + [ 7.8963025, 47.4382347 ], + [ 7.8963038, 47.4382342 ], + [ 7.8970687, 47.4379338 ], + [ 7.8973081, 47.4378266 ], + [ 7.8977184, 47.4376879 ], + [ 7.898299, 47.4374428 ], + [ 7.8989332, 47.4370561 ], + [ 7.8991906, 47.4369631 ], + [ 7.8989426, 47.4370679 ], + [ 7.8988909, 47.437111 ], + [ 7.8988769, 47.437129 ], + [ 7.898836, 47.4372955 ], + [ 7.8988292, 47.4372961 ], + [ 7.8987704999999995, 47.4373264 ], + [ 7.8987703, 47.437711 ], + [ 7.8986876, 47.4379286 ], + [ 7.8987652, 47.4381758 ], + [ 7.8986263, 47.4382571 ], + [ 7.8982914, 47.4384136 ], + [ 7.8977033, 47.4386198 ], + [ 7.8974766, 47.4387052 ], + [ 7.8971369, 47.438803300000004 ], + [ 7.8965938, 47.438948 ], + [ 7.8962965, 47.4390755 ], + [ 7.8961835, 47.4391482 ], + [ 7.8959934, 47.4393331 ], + [ 7.8953975, 47.4395688 ], + [ 7.8952879, 47.4396121 ], + [ 7.8950306, 47.4396734 ], + [ 7.8947932, 47.43973 ], + [ 7.8945837, 47.4398361 ], + [ 7.8944756, 47.4398909 ], + [ 7.8942799, 47.4400177 ], + [ 7.8942057, 47.4400507 ], + [ 7.8938075, 47.4402283 ], + [ 7.893527, 47.4404495 ], + [ 7.8935001, 47.4404628 ], + [ 7.8932337, 47.4405874 ], + [ 7.8931041, 47.440648 ], + [ 7.8929367, 47.4407404 ], + [ 7.8927502, 47.4409098 ], + [ 7.8926807, 47.4409629 ], + [ 7.8924281, 47.4411526 ], + [ 7.8923699, 47.4411653 ], + [ 7.8922734, 47.441206 ], + [ 7.8922375, 47.441213 ], + [ 7.8922107, 47.4412325 ], + [ 7.8920984999999995, 47.4412798 ], + [ 7.8920048, 47.441437 ] + ], + [ + [ 7.9034453, 47.4327953 ], + [ 7.9034636, 47.4327445 ], + [ 7.9035092, 47.4326096 ], + [ 7.9036029, 47.4322959 ], + [ 7.903731, 47.4319963 ], + [ 7.9037537, 47.4317346 ], + [ 7.903818, 47.4313656 ], + [ 7.9038889, 47.4312036 ], + [ 7.9039475, 47.4310694 ], + [ 7.9040695, 47.4304976 ], + [ 7.9041082, 47.4304563 ], + [ 7.9041112, 47.4304506 ], + [ 7.9041309, 47.4304609 ], + [ 7.9041733999999995, 47.4304742 ], + [ 7.9042554, 47.4305491 ], + [ 7.9042891, 47.4306535 ], + [ 7.904483, 47.4308432 ], + [ 7.9046389999999995, 47.4309786 ], + [ 7.9047301999999995, 47.4310412 ], + [ 7.9047785, 47.4311187 ], + [ 7.9047805, 47.4312195 ], + [ 7.9047417, 47.4312557 ], + [ 7.9047346, 47.4312669 ], + [ 7.9047156, 47.4312796 ], + [ 7.9046736, 47.43132 ], + [ 7.9045936, 47.4313544 ], + [ 7.9044763, 47.4314293 ], + [ 7.9043955, 47.4315552 ], + [ 7.9043795, 47.4316478 ], + [ 7.9043931, 47.4317941 ], + [ 7.9043596, 47.4320138 ], + [ 7.9041777, 47.4322608 ], + [ 7.9040719, 47.432407 ], + [ 7.9039795999999996, 47.4324949 ], + [ 7.9039615, 47.432515 ], + [ 7.9039427, 47.4325347 ], + [ 7.9039231, 47.4325542 ], + [ 7.9039029, 47.4325733 ], + [ 7.903882, 47.4325921 ], + [ 7.9038253, 47.4326376 ], + [ 7.9038119, 47.4326462 ], + [ 7.9037979, 47.4326544 ], + [ 7.9037834, 47.4326621 ], + [ 7.9037641999999995, 47.4326808 ], + [ 7.9036137, 47.4327419 ], + [ 7.9034453, 47.4327953 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns208", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Eital - Summerholden", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Eital - Summerholden", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Eital - Summerholden", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Eital - Summerholden", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.3161924, 47.3720014 ], + [ 8.3162083, 47.3719464 ], + [ 8.3161909, 47.3718447 ], + [ 8.3161409, 47.3718135 ], + [ 8.3161286, 47.3717314 ], + [ 8.3161551, 47.3716686 ], + [ 8.3162308, 47.3715954 ], + [ 8.3162358, 47.3715329 ], + [ 8.3162103, 47.3714926 ], + [ 8.3160919, 47.3714326 ], + [ 8.3160669, 47.3714147 ], + [ 8.3159871, 47.3713571 ], + [ 8.3159504, 47.3712951 ], + [ 8.3159401, 47.3712426 ], + [ 8.3159696, 47.3710888 ], + [ 8.3160182, 47.3709699 ], + [ 8.3161429, 47.3707963 ], + [ 8.3162524, 47.3706361 ], + [ 8.316355, 47.3705176 ], + [ 8.3164435, 47.3703883 ], + [ 8.3165119, 47.3703327 ], + [ 8.3166417, 47.3702654 ], + [ 8.3168222, 47.3701887 ], + [ 8.3171573, 47.3700467 ], + [ 8.3175308, 47.3698943 ], + [ 8.3178238, 47.3698064 ], + [ 8.3180831, 47.3697365 ], + [ 8.3182678, 47.3697167 ], + [ 8.3184976, 47.3697118 ], + [ 8.3186508, 47.3697341 ], + [ 8.3188318, 47.3697594 ], + [ 8.3189885, 47.3698058 ], + [ 8.3191502, 47.369874 ], + [ 8.3192565, 47.3699429 ], + [ 8.3193681, 47.3700523 ], + [ 8.3194797, 47.3701562 ], + [ 8.3195763, 47.3702833 ], + [ 8.3196451, 47.3704118 ], + [ 8.3196946, 47.3704978 ], + [ 8.3197635, 47.3705518 ], + [ 8.3198979, 47.3705589 ], + [ 8.3199686, 47.3705471 ], + [ 8.3200158, 47.370517 ], + [ 8.3200147, 47.3704611 ], + [ 8.3200035, 47.3703582 ], + [ 8.3199288, 47.3702473 ], + [ 8.3197831, 47.3700528 ], + [ 8.319558, 47.3698198 ], + [ 8.3193451, 47.3696623 ], + [ 8.3191693, 47.3695833 ], + [ 8.3189629, 47.3695189 ], + [ 8.3187504, 47.3694622 ], + [ 8.3184658, 47.369424 ], + [ 8.3183423, 47.3694188 ], + [ 8.3182347, 47.3694409 ], + [ 8.3181209, 47.3694587 ], + [ 8.3180167, 47.3694939 ], + [ 8.317832, 47.3695159 ], + [ 8.3176949, 47.369524 ], + [ 8.3173738, 47.3695925 ], + [ 8.3171131, 47.3696723 ], + [ 8.3169676, 47.3697289 ], + [ 8.3168301, 47.3697995 ], + [ 8.316714, 47.369859 ], + [ 8.3166005, 47.3698943 ], + [ 8.3164607, 47.3699234 ], + [ 8.3163154, 47.3699865 ], + [ 8.3161309, 47.3700994 ], + [ 8.3160553, 47.3701781 ], + [ 8.3160019, 47.3702883 ], + [ 8.3160041, 47.3704001 ], + [ 8.3159707, 47.3705101 ], + [ 8.315857, 47.3706134 ], + [ 8.31577, 47.3706637 ], + [ 8.3157366, 47.3707693 ], + [ 8.3156512, 47.3708197 ], + [ 8.3156306, 47.3709118 ], + [ 8.3156001, 47.3710483 ], + [ 8.3155979, 47.3712565 ], + [ 8.3156146, 47.3714021 ], + [ 8.3156849, 47.371524 ], + [ 8.315759, 47.3716076 ], + [ 8.3158035, 47.3716524 ], + [ 8.3158707, 47.3717202 ], + [ 8.3159248, 47.371804 ], + [ 8.3159678, 47.3718725 ], + [ 8.3160657, 47.3719086 ], + [ 8.3161406, 47.3719571 ], + [ 8.3161924, 47.3720014 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "KTAG509", + "country" : "CHE", + "name" : [ + { + "text" : "Tote Reuss", + "lang" : "de-CH" + }, + { + "text" : "Tote Reuss", + "lang" : "fr-CH" + }, + { + "text" : "Tote Reuss", + "lang" : "it-CH" + }, + { + "text" : "Tote Reuss", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "regulationExemption" : "NO", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "schedule" : [ + { + "day" : [ "ANY" ], + "startTime" : "00:00:00.00+01:00", + "endTime" : "00:00:00.00+01:00" + } + ] + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Aargau", + "lang" : "de-CH" + }, + { + "text" : "Canton d'Argovie", + "lang" : "fr-CH" + }, + { + "text" : "Canton Argovia", + "lang" : "it-CH" + }, + { + "text" : "Canton of Aargau", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Departement Bau, Verkehr und Umwelt (BVU)", + "lang" : "de-CH" + }, + { + "text" : "Département de la construction, des transports et de l'environnement (CTE)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento delle costruzioni, dei trasporti e dell'ambiente (CTA)", + "lang" : "it-CH" + }, + { + "text" : "Department of Civil Engineering,Transport and Environment (CTE)", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Sektion Gewässernutzung", + "lang" : "de-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "fr-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "it-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ag.ch/de/verwaltung/bvu/umwelt-natur-landschaft/hochwasserschutz-gewaesser/gewaessernutzung", + "email" : "alg@ag.ch", + "phone" : "0041 62 835 34 50", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.3844584, 47.427405 ], + [ 8.3844504, 47.4272639 ], + [ 8.3844316, 47.4271232 ], + [ 8.3844019, 47.4269834 ], + [ 8.3843615, 47.4268448 ], + [ 8.3843105, 47.4267078 ], + [ 8.384249, 47.4265729 ], + [ 8.3841771, 47.4264403 ], + [ 8.3840952, 47.4263105 ], + [ 8.3840033, 47.4261837 ], + [ 8.3839018, 47.4260604 ], + [ 8.3837909, 47.4259408 ], + [ 8.3836709, 47.4258254 ], + [ 8.3835422, 47.4257144 ], + [ 8.3834051, 47.425608 ], + [ 8.38326, 47.4255068 ], + [ 8.3831073, 47.4254108 ], + [ 8.3829474, 47.4253203 ], + [ 8.3827808, 47.4252357 ], + [ 8.3826078, 47.4251571 ], + [ 8.382429, 47.4250847 ], + [ 8.3822449, 47.4250188 ], + [ 8.382056, 47.4249595 ], + [ 8.3818627, 47.424907 ], + [ 8.3816657, 47.4248615 ], + [ 8.3814654, 47.424823 ], + [ 8.3812624, 47.4247917 ], + [ 8.3810573, 47.4247676 ], + [ 8.3808507, 47.4247508 ], + [ 8.380643, 47.4247414 ], + [ 8.3804348, 47.4247394 ], + [ 8.380226799999999, 47.4247448 ], + [ 8.3800195, 47.4247576 ], + [ 8.3798135, 47.4247777 ], + [ 8.3796093, 47.4248051 ], + [ 8.3794075, 47.4248398 ], + [ 8.3792086, 47.4248815 ], + [ 8.3790133, 47.4249302 ], + [ 8.3788219, 47.4249859 ], + [ 8.3786351, 47.4250482 ], + [ 8.3784534, 47.4251171 ], + [ 8.3782772, 47.4251923 ], + [ 8.3781071, 47.4252737 ], + [ 8.3779435, 47.4253611 ], + [ 8.377786799999999, 47.4254541 ], + [ 8.3776376, 47.4255525 ], + [ 8.3774961, 47.4256562 ], + [ 8.3773628, 47.4257647 ], + [ 8.3772381, 47.4258778 ], + [ 8.3771222, 47.4259951 ], + [ 8.3770156, 47.4261165 ], + [ 8.3769185, 47.4262414 ], + [ 8.3768311, 47.4263696 ], + [ 8.3767537, 47.4265008 ], + [ 8.3766866, 47.4266345 ], + [ 8.3766299, 47.4267704 ], + [ 8.3765837, 47.4269081 ], + [ 8.3765482, 47.4270473 ], + [ 8.3765235, 47.4271876 ], + [ 8.3765097, 47.4273285 ], + [ 8.3765067, 47.4274698 ], + [ 8.3765146, 47.427611 ], + [ 8.3765334, 47.4277516 ], + [ 8.3765631, 47.4278915 ], + [ 8.3766035, 47.4280301 ], + [ 8.3766545, 47.428167 ], + [ 8.376716, 47.428302 ], + [ 8.3767878, 47.4284345 ], + [ 8.3768698, 47.4285644 ], + [ 8.3769616, 47.4286912 ], + [ 8.3770631, 47.4288145 ], + [ 8.377174, 47.4289341 ], + [ 8.377294, 47.4290495 ], + [ 8.3774227, 47.4291605 ], + [ 8.3775598, 47.4292668 ], + [ 8.3777048, 47.4293681 ], + [ 8.3778575, 47.4294642 ], + [ 8.3780174, 47.4295546 ], + [ 8.3781841, 47.4296393 ], + [ 8.3783571, 47.4297179 ], + [ 8.3785359, 47.4297902 ], + [ 8.37872, 47.4298561 ], + [ 8.3789089, 47.4299154 ], + [ 8.3791022, 47.4299679 ], + [ 8.3792993, 47.4300135 ], + [ 8.3794996, 47.430052 ], + [ 8.3797025, 47.4300833 ], + [ 8.3799077, 47.4301074 ], + [ 8.3801144, 47.4301241 ], + [ 8.3803221, 47.4301335 ], + [ 8.3805303, 47.4301355 ], + [ 8.3807383, 47.4301301 ], + [ 8.3809456, 47.4301174 ], + [ 8.3811516, 47.4300972 ], + [ 8.381355899999999, 47.4300698 ], + [ 8.3815577, 47.4300352 ], + [ 8.3817566, 47.4299935 ], + [ 8.381952, 47.4299447 ], + [ 8.3821433, 47.4298891 ], + [ 8.3823301, 47.4298267 ], + [ 8.3825119, 47.4297578 ], + [ 8.382688, 47.4296826 ], + [ 8.3828582, 47.4296012 ], + [ 8.3830218, 47.4295139 ], + [ 8.3831784, 47.4294208 ], + [ 8.3833277, 47.4293224 ], + [ 8.3834692, 47.4292187 ], + [ 8.3836025, 47.4291102 ], + [ 8.3837272, 47.4289971 ], + [ 8.383843, 47.4288797 ], + [ 8.3839497, 47.4287584 ], + [ 8.3840468, 47.4286335 ], + [ 8.3841341, 47.4285052 ], + [ 8.3842115, 47.4283741 ], + [ 8.3842786, 47.4282404 ], + [ 8.3843353, 47.4281044 ], + [ 8.3843814, 47.4279667 ], + [ 8.3844169, 47.4278275 ], + [ 8.3844416, 47.4276872 ], + [ 8.3844554, 47.4275463 ], + [ 8.3844584, 47.427405 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0113", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Spreitenbach", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Spreitenbach", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Spreitenbach", + "lang" : "it-CH" + }, + { + "text" : "Substation Spreitenbach", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.9760189, 47.2349836 ], + [ 7.9759047, 47.2326304 ], + [ 7.97561, 47.2302845 ], + [ 7.9751354, 47.2279522 ], + [ 7.9744823, 47.2256401 ], + [ 7.9736526, 47.2233545 ], + [ 7.9726485, 47.2211015 ], + [ 7.9714728, 47.2188874 ], + [ 7.9701287, 47.2167183 ], + [ 7.9686199, 47.2146 ], + [ 7.9669507, 47.2125384 ], + [ 7.9651255, 47.2105392 ], + [ 7.9631494, 47.2086077 ], + [ 7.9610278, 47.2067493 ], + [ 7.9587666, 47.2049691 ], + [ 7.9563719, 47.2032719 ], + [ 7.9538502, 47.2016624 ], + [ 7.9512086, 47.200145 ], + [ 7.9484543, 47.1987239 ], + [ 7.9455947, 47.1974028 ], + [ 7.9426378, 47.1961855 ], + [ 7.9395915, 47.1950753 ], + [ 7.9364643, 47.1940752 ], + [ 7.9332647, 47.1931879 ], + [ 7.9300014999999995, 47.1924159 ], + [ 7.9266835, 47.1917612 ], + [ 7.9233199, 47.1912258 ], + [ 7.9199199, 47.1908109 ], + [ 7.9164927, 47.1905179 ], + [ 7.9130478, 47.1903473 ], + [ 7.9095944, 47.1902999 ], + [ 7.9061422, 47.1903756 ], + [ 7.9027005, 47.1905742 ], + [ 7.8992787, 47.1908953 ], + [ 7.8958862, 47.1913379 ], + [ 7.8925322, 47.1919008 ], + [ 7.889226, 47.1925825 ], + [ 7.8859766, 47.1933811 ], + [ 7.8827928, 47.1942945 ], + [ 7.8796834, 47.1953201 ], + [ 7.8766569, 47.1964552 ], + [ 7.8737216, 47.1976965 ], + [ 7.8708855, 47.1990409 ], + [ 7.8681563, 47.2004844 ], + [ 7.8655415, 47.2020233 ], + [ 7.8630484, 47.2036533 ], + [ 7.8606837, 47.2053699 ], + [ 7.8584539, 47.2071685 ], + [ 7.8563652, 47.2090441 ], + [ 7.8544232, 47.2109916 ], + [ 7.8526333, 47.2130056 ], + [ 7.8510005, 47.2150807 ], + [ 7.8495291, 47.2172111 ], + [ 7.8482233, 47.2193911 ], + [ 7.8470867, 47.2216146 ], + [ 7.8461223, 47.2238756 ], + [ 7.8453329, 47.2261679 ], + [ 7.8447206, 47.2284852 ], + [ 7.8442871, 47.2308211 ], + [ 7.8440337, 47.2331693 ], + [ 7.843961, 47.2355233 ], + [ 7.8440693, 47.2378766 ], + [ 7.8443584, 47.2402229 ], + [ 7.8448273, 47.2425557 ], + [ 7.845475, 47.2448685 ], + [ 7.8462996, 47.2471551 ], + [ 7.8472988, 47.2494091 ], + [ 7.8484701, 47.2516245 ], + [ 7.8498101, 47.253795 ], + [ 7.8513152, 47.2559148 ], + [ 7.8529814, 47.257978 ], + [ 7.854804, 47.259979 ], + [ 7.856778, 47.2619123 ], + [ 7.8588982, 47.2637726 ], + [ 7.8611585999999996, 47.2655548 ], + [ 7.8635531, 47.2672539 ], + [ 7.8660751, 47.2688653 ], + [ 7.8687176, 47.2703847 ], + [ 7.8714736, 47.2718077 ], + [ 7.8743353, 47.2731306 ], + [ 7.877295, 47.2743496 ], + [ 7.8803444, 47.2754615 ], + [ 7.8834753, 47.2764631 ], + [ 7.8866791, 47.2773517 ], + [ 7.8899469, 47.278125 ], + [ 7.8932698, 47.2787806 ], + [ 7.8966386, 47.279317 ], + [ 7.9000441, 47.2797325 ], + [ 7.9034769, 47.280026 ], + [ 7.9069275999999995, 47.2801968 ], + [ 7.9103867999999995, 47.2802444 ], + [ 7.9138448, 47.2801686 ], + [ 7.9172923, 47.2799696 ], + [ 7.9207197, 47.279648 ], + [ 7.9241176, 47.2792047 ], + [ 7.9274767, 47.2786409 ], + [ 7.9307877, 47.2779581 ], + [ 7.9340416, 47.2771582 ], + [ 7.9372295, 47.2762434 ], + [ 7.9403425, 47.2752163 ], + [ 7.9433720999999995, 47.2740796 ], + [ 7.94631, 47.2728364 ], + [ 7.9491482, 47.271490299999996 ], + [ 7.9518788, 47.2700448 ], + [ 7.9544944, 47.268504 ], + [ 7.9569877, 47.2668721 ], + [ 7.959352, 47.2651535 ], + [ 7.9615808, 47.263353 ], + [ 7.963668, 47.2614755 ], + [ 7.9656078, 47.2595262 ], + [ 7.967395, 47.2575105 ], + [ 7.9690246, 47.2554338 ], + [ 7.9704923, 47.2533018 ], + [ 7.9717939, 47.2511205 ], + [ 7.972926, 47.2488957 ], + [ 7.9738855, 47.2466337 ], + [ 7.9746697, 47.2443405 ], + [ 7.9752765, 47.2420226 ], + [ 7.9757043, 47.2396862 ], + [ 7.9759519999999995, 47.2373377 ], + [ 7.9760189, 47.2349836 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSXP001", + "country" : "CHE", + "name" : [ + { + "text" : "LSXP Pfaffnau", + "lang" : "de-CH" + }, + { + "text" : "LSXP Pfaffnau", + "lang" : "fr-CH" + }, + { + "text" : "LSXP Pfaffnau", + "lang" : "it-CH" + }, + { + "text" : "LSXP Pfaffnau", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swiss Helicopter AG", + "lang" : "de-CH" + }, + { + "text" : "Swiss Helicopter AG", + "lang" : "fr-CH" + }, + { + "text" : "Swiss Helicopter AG", + "lang" : "it-CH" + }, + { + "text" : "Swiss Helicopter AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Basis Pfaffnau", + "lang" : "de-CH" + }, + { + "text" : "Basis Pfaffnau", + "lang" : "fr-CH" + }, + { + "text" : "Basis Pfaffnau", + "lang" : "it-CH" + }, + { + "text" : "Basis Pfaffnau", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Markus Lerch", + "lang" : "de-CH" + }, + { + "text" : "Markus Lerch", + "lang" : "fr-CH" + }, + { + "text" : "Markus Lerch", + "lang" : "it-CH" + }, + { + "text" : "Markus Lerch", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swisshelicopter.ch/en/about-us/helicopter-bases/pfaffnau", + "email" : "pfaffnau@swisshelicopter.ch", + "phone" : "0041627540101", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P00DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 10.0656552, 46.3481567 ], + [ 10.065643, 46.3480157 ], + [ 10.0656202, 46.3478753 ], + [ 10.0655868, 46.3477359 ], + [ 10.0655429, 46.3475979 ], + [ 10.0654887, 46.3474617 ], + [ 10.0654242, 46.3473277 ], + [ 10.0653497, 46.3471962 ], + [ 10.0652654, 46.3470675 ], + [ 10.0651714, 46.3469421 ], + [ 10.0650681, 46.3468203 ], + [ 10.0649558, 46.3467023 ], + [ 10.0648346, 46.3465886 ], + [ 10.0647051, 46.3464795 ], + [ 10.0645675, 46.3463752 ], + [ 10.0644221, 46.346276 ], + [ 10.0642695, 46.3461822 ], + [ 10.0641101, 46.3460941 ], + [ 10.0639441, 46.3460119 ], + [ 10.0637722, 46.3459358 ], + [ 10.0635948, 46.3458661 ], + [ 10.0634123, 46.3458028 ], + [ 10.0632254, 46.3457463 ], + [ 10.0630344, 46.3456967 ], + [ 10.0628399, 46.345654 ], + [ 10.0626424, 46.3456184 ], + [ 10.0624426, 46.34559 ], + [ 10.0622408, 46.3455689 ], + [ 10.0620378, 46.3455552 ], + [ 10.061834, 46.3455488 ], + [ 10.06163, 46.3455498 ], + [ 10.0614263, 46.3455583 ], + [ 10.0612236, 46.345574 ], + [ 10.0610223, 46.3455972 ], + [ 10.060823, 46.3456275 ], + [ 10.0606264, 46.3456651 ], + [ 10.0604328, 46.3457097 ], + [ 10.0602429, 46.3457613 ], + [ 10.0600571, 46.3458197 ], + [ 10.059876, 46.3458848 ], + [ 10.0597, 46.3459563 ], + [ 10.0595297, 46.3460341 ], + [ 10.0593656, 46.346118 ], + [ 10.0592079, 46.3462077 ], + [ 10.0590573, 46.346303 ], + [ 10.0589141, 46.3464036 ], + [ 10.0587787, 46.3465093 ], + [ 10.0586514, 46.3466197 ], + [ 10.0585327, 46.3467346 ], + [ 10.0584228, 46.3468537 ], + [ 10.0583221, 46.3469765 ], + [ 10.0582308, 46.3471029 ], + [ 10.0581491, 46.3472324 ], + [ 10.0580774, 46.3473646 ], + [ 10.0580157, 46.3474993 ], + [ 10.0579644, 46.347636 ], + [ 10.0579234, 46.3477745 ], + [ 10.0578929, 46.3479142 ], + [ 10.0578731, 46.3480548 ], + [ 10.0578639, 46.3481959 ], + [ 10.0578653, 46.3483372 ], + [ 10.0578775, 46.3484782 ], + [ 10.0579003, 46.3486187 ], + [ 10.0579336, 46.348758 ], + [ 10.0579775, 46.348896 ], + [ 10.0580317, 46.3490322 ], + [ 10.0580962, 46.3491663 ], + [ 10.0581707, 46.3492978 ], + [ 10.058255, 46.3494265 ], + [ 10.0583489, 46.3495519 ], + [ 10.0584522, 46.3496737 ], + [ 10.0585646, 46.3497917 ], + [ 10.0586857, 46.3499054 ], + [ 10.0588152, 46.3500145 ], + [ 10.0589529, 46.3501188 ], + [ 10.0590982, 46.350218 ], + [ 10.0592508, 46.3503118 ], + [ 10.0594103, 46.3503999 ], + [ 10.0595762, 46.3504821 ], + [ 10.0597481, 46.3505582 ], + [ 10.0599256, 46.350628 ], + [ 10.060108, 46.3506912 ], + [ 10.060295, 46.3507477 ], + [ 10.060486, 46.3507974 ], + [ 10.0606805, 46.3508401 ], + [ 10.060878, 46.3508757 ], + [ 10.0610779, 46.3509041 ], + [ 10.0612796, 46.3509251 ], + [ 10.0614827, 46.3509389 ], + [ 10.0616865, 46.3509453 ], + [ 10.0618906, 46.3509442 ], + [ 10.0620942, 46.3509358 ], + [ 10.062297, 46.35092 ], + [ 10.0624983, 46.3508969 ], + [ 10.0626976, 46.3508665 ], + [ 10.0628943, 46.350829 ], + [ 10.0630878, 46.3507843 ], + [ 10.0632778, 46.3507327 ], + [ 10.0634636, 46.3506743 ], + [ 10.0636447, 46.3506093 ], + [ 10.0638206, 46.3505378 ], + [ 10.063991, 46.3504599 ], + [ 10.0641551, 46.3503761 ], + [ 10.0643128, 46.3502863 ], + [ 10.0644634, 46.350191 ], + [ 10.0646066, 46.3500904 ], + [ 10.064742, 46.3499847 ], + [ 10.0648693, 46.3498743 ], + [ 10.064988, 46.3497594 ], + [ 10.0650979, 46.3496403 ], + [ 10.0651986, 46.3495174 ], + [ 10.0652899, 46.3493911 ], + [ 10.0653715, 46.3492616 ], + [ 10.0654432, 46.3491293 ], + [ 10.0655049, 46.3489946 ], + [ 10.0655562, 46.3488579 ], + [ 10.0655972, 46.3487195 ], + [ 10.0656276, 46.3485798 ], + [ 10.0656475, 46.3484392 ], + [ 10.0656567, 46.348298 ], + [ 10.0656552, 46.3481567 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0098", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Robbia", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Robbia", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Robbia", + "lang" : "it-CH" + }, + { + "text" : "Substation Robbia", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6240501, 46.7602736 ], + [ 7.6240442999999996, 46.7601324 ], + [ 7.6240277, 46.7599916 ], + [ 7.6240003, 46.7598516 ], + [ 7.6239624, 46.7597127 ], + [ 7.6239139, 46.7595754 ], + [ 7.6238551, 46.75944 ], + [ 7.623786, 46.759307 ], + [ 7.6237069, 46.7591766 ], + [ 7.6236179, 46.7590492 ], + [ 7.6235194, 46.7589252 ], + [ 7.6234116, 46.7588049 ], + [ 7.6232947, 46.7586886 ], + [ 7.6231691999999995, 46.7585767 ], + [ 7.6230353, 46.7584695 ], + [ 7.6228934, 46.7583673 ], + [ 7.622744, 46.7582703 ], + [ 7.6225873, 46.7581787 ], + [ 7.622424, 46.758093 ], + [ 7.6222543, 46.7580133 ], + [ 7.6220787, 46.7579397 ], + [ 7.6218978, 46.7578726 ], + [ 7.6217121, 46.7578121 ], + [ 7.621522, 46.7577583 ], + [ 7.621328, 46.7577114 ], + [ 7.6211307999999995, 46.7576716 ], + [ 7.6209308, 46.757639 ], + [ 7.6207285, 46.7576135 ], + [ 7.6205247, 46.7575954 ], + [ 7.6203197, 46.7575847 ], + [ 7.6201141, 46.7575813 ], + [ 7.6199086, 46.7575853 ], + [ 7.6197037, 46.7575967 ], + [ 7.6195, 46.7576155 ], + [ 7.6192979, 46.7576416 ], + [ 7.6190982, 46.7576748 ], + [ 7.6189012, 46.7577153 ], + [ 7.6187075, 46.7577627 ], + [ 7.6185178, 46.7578171 ], + [ 7.6183325, 46.7578782 ], + [ 7.618152, 46.7579459 ], + [ 7.617977, 46.75802 ], + [ 7.6178078, 46.7581003 ], + [ 7.6176449999999996, 46.7581866 ], + [ 7.617489, 46.7582786 ], + [ 7.6173402, 46.7583761 ], + [ 7.617199, 46.7584788 ], + [ 7.6170658, 46.7585864 ], + [ 7.6169411, 46.7586987 ], + [ 7.616825, 46.7588153 ], + [ 7.616718, 46.7589359 ], + [ 7.6166203, 46.7590603 ], + [ 7.6165322, 46.7591879 ], + [ 7.616454, 46.7593186 ], + [ 7.6163858, 46.7594519 ], + [ 7.6163279, 46.7595874 ], + [ 7.6162803, 46.7597249 ], + [ 7.6162433, 46.7598638 ], + [ 7.6162168999999995, 46.760004 ], + [ 7.6162013, 46.7601448 ], + [ 7.6161963, 46.7602861 ], + [ 7.6162022, 46.7604273 ], + [ 7.6162188, 46.7605681 ], + [ 7.6162461, 46.7607082 ], + [ 7.616284, 46.760847 ], + [ 7.6163324, 46.7609843 ], + [ 7.6163913, 46.7611197 ], + [ 7.6164604, 46.7612528 ], + [ 7.6165395, 46.7613832 ], + [ 7.6166284, 46.7615106 ], + [ 7.6167269, 46.7616346 ], + [ 7.6168347, 46.7617549 ], + [ 7.6169516, 46.7618711 ], + [ 7.6170770999999995, 46.761983 ], + [ 7.617211, 46.7620903 ], + [ 7.6173528, 46.7621925 ], + [ 7.6175023, 46.7622896 ], + [ 7.6176589, 46.7623811 ], + [ 7.6178223, 46.7624668 ], + [ 7.617992, 46.7625466 ], + [ 7.6181676, 46.7626201 ], + [ 7.6183485, 46.7626873 ], + [ 7.6185343, 46.7627478 ], + [ 7.6187244, 46.7628016 ], + [ 7.6189184, 46.7628484 ], + [ 7.6191156, 46.7628882 ], + [ 7.6193156, 46.7629209 ], + [ 7.6195179, 46.7629463 ], + [ 7.6197218, 46.7629644 ], + [ 7.6199268, 46.7629752 ], + [ 7.6201323, 46.7629786 ], + [ 7.6203378, 46.7629746 ], + [ 7.6205428, 46.7629631 ], + [ 7.6207465, 46.7629444 ], + [ 7.6209486, 46.7629183 ], + [ 7.6211484, 46.762885 ], + [ 7.6213454, 46.7628446 ], + [ 7.6215391, 46.7627971 ], + [ 7.6217288, 46.7627427 ], + [ 7.6219142, 46.7626816 ], + [ 7.6220946, 46.7626139 ], + [ 7.6222697, 46.7625398 ], + [ 7.6224389, 46.7624595 ], + [ 7.6226017, 46.7623732 ], + [ 7.6227577, 46.7622812 ], + [ 7.6229065, 46.7621837 ], + [ 7.6230477, 46.762081 ], + [ 7.6231808, 46.7619734 ], + [ 7.6233056, 46.7618611 ], + [ 7.6234216, 46.7617445 ], + [ 7.6235287, 46.7616238 ], + [ 7.6236263, 46.7614995 ], + [ 7.6237144, 46.7613718 ], + [ 7.6237926, 46.7612412 ], + [ 7.6238608, 46.7611079 ], + [ 7.6239187, 46.7609723 ], + [ 7.6239662, 46.7608349 ], + [ 7.6240032, 46.7606959 ], + [ 7.6240296, 46.7605558 ], + [ 7.6240452, 46.7604149 ], + [ 7.6240501, 46.7602736 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "THU0001", + "country" : "CHE", + "name" : [ + { + "text" : "Regionalgefängnis Thun", + "lang" : "de-CH" + }, + { + "text" : "Regionalgefängnis Thun", + "lang" : "fr-CH" + }, + { + "text" : "Regionalgefängnis Thun", + "lang" : "it-CH" + }, + { + "text" : "Regionalgefängnis Thun", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Regionalgefängnis Thun", + "lang" : "de-CH" + }, + { + "text" : "Prison régionale de Thoune", + "lang" : "fr-CH" + }, + { + "text" : "Carcere regionale di Thun", + "lang" : "it-CH" + }, + { + "text" : "Thun Regional Prison", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Direktion", + "lang" : "de-CH" + }, + { + "text" : "Direktion", + "lang" : "fr-CH" + }, + { + "text" : "Direktion", + "lang" : "it-CH" + }, + { + "text" : "Direktion", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Ulrich Kräuchi", + "lang" : "de-CH" + }, + { + "text" : "Ulrich Kräuchi", + "lang" : "fr-CH" + }, + { + "text" : "Ulrich Kräuchi", + "lang" : "it-CH" + }, + { + "text" : "Ulrich Kräuchi", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ajv.sid.be.ch/de/start/themen/haft/regionalgefaengnis-thun.html", + "email" : "rgthun.loge@be.ch", + "phone" : "0041316360011", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P02DT12H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5238479, 47.5356151 ], + [ 7.5236709, 47.5357291 ], + [ 7.5238081, 47.5361454 ], + [ 7.5238926, 47.5364186 ], + [ 7.5239534, 47.5364422 ], + [ 7.5243754, 47.5363587 ], + [ 7.5245692, 47.5363204 ], + [ 7.5249066, 47.5362536 ], + [ 7.5249223, 47.5362475 ], + [ 7.5250865000000005, 47.5361842 ], + [ 7.5252724, 47.5360753 ], + [ 7.5253059, 47.5360562 ], + [ 7.5253418, 47.5360308 ], + [ 7.5253772, 47.536005 ], + [ 7.5254119, 47.5359788 ], + [ 7.5254459, 47.5359522 ], + [ 7.5254793, 47.5359252 ], + [ 7.5255121, 47.5358978 ], + [ 7.5255441, 47.5358701 ], + [ 7.5255755, 47.535842099999996 ], + [ 7.5256062, 47.5358136 ], + [ 7.5256361, 47.5357849 ], + [ 7.5258584, 47.5355811 ], + [ 7.5258882, 47.5355543 ], + [ 7.5259188, 47.535528 ], + [ 7.52595, 47.535502 ], + [ 7.5259819, 47.5354764 ], + [ 7.5260145, 47.5354512 ], + [ 7.5260478, 47.5354264 ], + [ 7.5260817, 47.535402 ], + [ 7.5261163, 47.535378 ], + [ 7.5265542, 47.5350757 ], + [ 7.5265759, 47.5350585 ], + [ 7.5265971, 47.5350409 ], + [ 7.5266178, 47.5350231 ], + [ 7.5266379, 47.535005 ], + [ 7.5266575, 47.5349866 ], + [ 7.5266765, 47.5349679 ], + [ 7.526695, 47.534949 ], + [ 7.5268929, 47.5347306 ], + [ 7.5269079, 47.5347134 ], + [ 7.5269236, 47.5346965 ], + [ 7.52694, 47.5346799 ], + [ 7.5269571, 47.5346637 ], + [ 7.5269749, 47.5346477 ], + [ 7.5269934, 47.5346322 ], + [ 7.5270125, 47.5346169 ], + [ 7.5270322, 47.5346021 ], + [ 7.5270525, 47.5345876 ], + [ 7.5270734, 47.5345735 ], + [ 7.527095, 47.5345599 ], + [ 7.5271171, 47.5345466 ], + [ 7.5271397, 47.5345338 ], + [ 7.5276383, 47.5342875 ], + [ 7.5276639, 47.5342584 ], + [ 7.5275486, 47.5341401 ], + [ 7.5272615, 47.5338365 ], + [ 7.5270301, 47.5336157 ], + [ 7.526846, 47.5334257 ], + [ 7.5266818, 47.5333012 ], + [ 7.5261548, 47.5330227 ], + [ 7.5256649, 47.5327864 ], + [ 7.5252631, 47.5331227 ], + [ 7.5248269, 47.5334882 ], + [ 7.5240031, 47.5341817 ], + [ 7.5237155, 47.5344243 ], + [ 7.5238815, 47.5345786 ], + [ 7.523969, 47.5346576 ], + [ 7.5239999, 47.5346854 ], + [ 7.5240134, 47.5346975 ], + [ 7.5240671, 47.5347455 ], + [ 7.5241031, 47.5347775 ], + [ 7.5241202, 47.5347928 ], + [ 7.5241383, 47.5348089 ], + [ 7.5241869999999995, 47.5348524 ], + [ 7.5242082, 47.5348713 ], + [ 7.5242331, 47.5348963 ], + [ 7.5242677, 47.5349313 ], + [ 7.5242933, 47.5349572 ], + [ 7.5243182, 47.5349824 ], + [ 7.5243689, 47.5350336 ], + [ 7.5244207, 47.5350858 ], + [ 7.5244269, 47.5350921 ], + [ 7.5245128, 47.5351862 ], + [ 7.5241087, 47.5354468 ], + [ 7.5238479, 47.5356151 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns234", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Allschwilerwald", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Allschwilerwald", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Allschwilerwald", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Allschwilerwald", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8484177, 47.4838049 ], + [ 7.8488996, 47.4838322 ], + [ 7.8488448, 47.4837332 ], + [ 7.8490212, 47.4834604 ], + [ 7.849242, 47.4832229 ], + [ 7.8495169, 47.4830055 ], + [ 7.8497713000000005, 47.4828323 ], + [ 7.8485785, 47.4828085 ], + [ 7.8484911, 47.4833633 ], + [ 7.8484177, 47.4838049 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns278", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Weier", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Weier", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Weier", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Weier", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8105109, 47.4275884 ], + [ 7.8107199, 47.4276206 ], + [ 7.8109754, 47.427619 ], + [ 7.8111527, 47.427478 ], + [ 7.8114012, 47.4275882 ], + [ 7.8115395, 47.4275937 ], + [ 7.8117517, 47.4274206 ], + [ 7.8118774, 47.4273067 ], + [ 7.8121628, 47.4270155 ], + [ 7.8122885, 47.4268853 ], + [ 7.8123796, 47.4267817 ], + [ 7.8126906, 47.4269433 ], + [ 7.8128344, 47.4267457 ], + [ 7.8129077, 47.4266576 ], + [ 7.813172, 47.4263503 ], + [ 7.8132856, 47.4262422 ], + [ 7.813696, 47.4259317 ], + [ 7.8141193, 47.4256319 ], + [ 7.8143208, 47.4254605 ], + [ 7.8145359, 47.4252417 ], + [ 7.8149739, 47.4249225 ], + [ 7.8152306, 47.4247852 ], + [ 7.8155142, 47.4246278 ], + [ 7.8154156, 47.4246264 ], + [ 7.8142907, 47.4245519 ], + [ 7.8139315, 47.4248116 ], + [ 7.8136882, 47.4249874 ], + [ 7.8131257, 47.4254171 ], + [ 7.8127103, 47.4257436 ], + [ 7.8123081, 47.4260707 ], + [ 7.8119496999999996, 47.4263692 ], + [ 7.8112895, 47.4269289 ], + [ 7.8108746, 47.4272812 ], + [ 7.8105109, 47.4275884 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr129", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Neumatt", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Neumatt", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Neumatt", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Neumatt", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.6485959999999995, 46.5126368 ], + [ 6.6483403, 46.5126408 ], + [ 6.6480855, 46.5126563 ], + [ 6.6478327, 46.5126833 ], + [ 6.647583, 46.5127217 ], + [ 6.6473375, 46.5127712 ], + [ 6.6470972, 46.5128317 ], + [ 6.6468632, 46.512903 ], + [ 6.6466364, 46.5129847 ], + [ 6.6464178, 46.5130764 ], + [ 6.6462084, 46.5131778 ], + [ 6.646009, 46.5132885 ], + [ 6.6458205, 46.5134079 ], + [ 6.6456438, 46.5135355 ], + [ 6.6454795, 46.5136709 ], + [ 6.6453284, 46.5138134 ], + [ 6.6453219, 46.5138201 ], + [ 6.6452868, 46.5138549 ], + [ 6.6451495, 46.5140039 ], + [ 6.6450266, 46.5141588 ], + [ 6.6449187, 46.5143189 ], + [ 6.6448262, 46.5144836 ], + [ 6.6447495, 46.514652 ], + [ 6.6446888, 46.5148236 ], + [ 6.6446446, 46.5149976 ], + [ 6.6446173, 46.5151704 ], + [ 6.6445994, 46.5153311 ], + [ 6.6445991, 46.5153338 ], + [ 6.6445881, 46.5155103 ], + [ 6.6445939, 46.5156868 ], + [ 6.6446164, 46.5158627 ], + [ 6.6446343, 46.5159519 ], + [ 6.6446399, 46.5159856 ], + [ 6.644679, 46.5161601 ], + [ 6.6447346, 46.5163325 ], + [ 6.6448063, 46.516502 ], + [ 6.644894, 46.5166679 ], + [ 6.6449972, 46.5168295 ], + [ 6.6451155, 46.5169861 ], + [ 6.6452484, 46.517137 ], + [ 6.6453953, 46.5172816 ], + [ 6.6455556, 46.5174192 ], + [ 6.6457285, 46.5175493 ], + [ 6.6459135, 46.5176713 ], + [ 6.6461096, 46.5177847 ], + [ 6.646316, 46.5178891 ], + [ 6.6465318, 46.5179838 ], + [ 6.6467562000000004, 46.5180686 ], + [ 6.6469882, 46.5181431 ], + [ 6.6472267, 46.518207 ], + [ 6.6474706999999995, 46.51826 ], + [ 6.6477192, 46.5183018 ], + [ 6.6479712, 46.5183323 ], + [ 6.6482255, 46.5183514 ], + [ 6.6484811, 46.518359 ], + [ 6.6487369, 46.518355 ], + [ 6.6489917, 46.5183395 ], + [ 6.6492417, 46.5183128 ], + [ 6.6493405, 46.518299999999996 ], + [ 6.6493433, 46.5182996 ], + [ 6.6494444999999995, 46.5182855 ], + [ 6.6494612, 46.5182834 ], + [ 6.649711, 46.518245 ], + [ 6.6498445, 46.5182195 ], + [ 6.6499122, 46.5182064 ], + [ 6.6501291, 46.518162 ], + [ 6.6501434, 46.5181588 ], + [ 6.6502038, 46.5181454 ], + [ 6.6504441, 46.5180849 ], + [ 6.6506782, 46.5180136 ], + [ 6.650905, 46.517932 ], + [ 6.6511236, 46.5178402 ], + [ 6.651333, 46.5177388 ], + [ 6.6515324, 46.5176282 ], + [ 6.6517208, 46.5175087 ], + [ 6.6518976, 46.5173811 ], + [ 6.6520618, 46.5172457 ], + [ 6.6522129, 46.5171032 ], + [ 6.6523502, 46.5169542 ], + [ 6.652473, 46.5167993 ], + [ 6.6525809, 46.5166391 ], + [ 6.6526734, 46.5164745 ], + [ 6.6527502, 46.516306 ], + [ 6.6528107, 46.5161345 ], + [ 6.6528549, 46.5159605 ], + [ 6.6528826, 46.515785 ], + [ 6.6528863, 46.5157474 ], + [ 6.6528974, 46.5156232 ], + [ 6.6528992, 46.5156063 ], + [ 6.6529038, 46.5155654 ], + [ 6.6529042, 46.5155616 ], + [ 6.6529150999999995, 46.5153852 ], + [ 6.6529093, 46.5152086 ], + [ 6.6528868, 46.5150327 ], + [ 6.6528477, 46.5148582 ], + [ 6.6527921, 46.5146858 ], + [ 6.6527203, 46.5145163 ], + [ 6.6526326000000005, 46.5143504 ], + [ 6.6525294, 46.5141889 ], + [ 6.6524111, 46.5140323 ], + [ 6.6522782, 46.5138814 ], + [ 6.6521313, 46.5137368 ], + [ 6.651971, 46.5135992 ], + [ 6.651798, 46.5134691 ], + [ 6.6516131, 46.5133471 ], + [ 6.651417, 46.5132337 ], + [ 6.6512106, 46.5131294 ], + [ 6.6509947, 46.5130346 ], + [ 6.6507704, 46.5129498 ], + [ 6.6505384, 46.5128753 ], + [ 6.6503, 46.5128115 ], + [ 6.6500559, 46.5127585 ], + [ 6.6498074, 46.5127167 ], + [ 6.6495555, 46.5126861 ], + [ 6.6493012, 46.5126671 ], + [ 6.6492918, 46.5126666 ], + [ 6.6488422, 46.5126438 ], + [ 6.6485959999999995, 46.5126368 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00025", + "country" : "CHE", + "name" : [ + { + "text" : "Cour de droit administratif et public du Tribunal cantonal", + "lang" : "de-CH" + }, + { + "text" : "Cour de droit administratif et public du Tribunal cantonal", + "lang" : "fr-CH" + }, + { + "text" : "Cour de droit administratif et public du Tribunal cantonal", + "lang" : "it-CH" + }, + { + "text" : "Cour de droit administratif et public du Tribunal cantonal", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kantonspolizei Waadt", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale vaudoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Vaud", + "lang" : "it-CH" + }, + { + "text" : "Vaud Cantonal Police", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.pcv@vd.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.988178, 47.2068616 ], + [ 8.9881907, 47.2067561 ], + [ 8.9877711, 47.2043022 ], + [ 8.9810051, 47.2048864 ], + [ 8.9769513, 47.2111781 ], + [ 8.9773007, 47.2117113 ], + [ 8.9766324, 47.2127547 ], + [ 8.9765528, 47.21286 ], + [ 8.976212199999999, 47.212995 ], + [ 8.9759194, 47.2130809 ], + [ 8.9756809, 47.213163 ], + [ 8.9748733, 47.2144022 ], + [ 8.9820139, 47.2172237 ], + [ 8.9811395, 47.2190146 ], + [ 8.9860873, 47.2189585 ], + [ 8.9888478, 47.218342 ], + [ 8.9968178, 47.2125865 ], + [ 8.9897477, 47.2085506 ], + [ 8.9888615, 47.2087632 ], + [ 8.988178, 47.2068616 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "WZV0003", + "country" : "CHE", + "name" : [ + { + "text" : "Wasser- und Zugvogelreservat Benkner-, Burger- und Kaltbrunner-Riet", + "lang" : "de-CH" + }, + { + "text" : "Réserve d'oiseaux d'eau et de migrateurs Benkner-, Burger- und Kaltbrunner-Riet", + "lang" : "fr-CH" + }, + { + "text" : "Riserva di uccelli acquatici e migratori Benkner-, Burger- und Kaltbrunner-Riet", + "lang" : "it-CH" + }, + { + "text" : "Water Bird and Migratory Bird Reserves Benkner-, Burger- und Kaltbrunner-Riet", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.2626609, 47.337692 ], + [ 7.262656, 47.3375508 ], + [ 7.2626401, 47.3374099 ], + [ 7.2626135, 47.3372698 ], + [ 7.2625761, 47.3371308 ], + [ 7.262528, 47.3369934 ], + [ 7.2624694, 47.3368579 ], + [ 7.2624005, 47.3367246 ], + [ 7.2623214, 47.336594 ], + [ 7.2622324, 47.3364663 ], + [ 7.2621336, 47.336342 ], + [ 7.2620254, 47.3362214 ], + [ 7.2619081, 47.3361048 ], + [ 7.261782, 47.3359925 ], + [ 7.2616474, 47.3358849 ], + [ 7.2615047, 47.3357822 ], + [ 7.2613543, 47.3356847 ], + [ 7.2611966, 47.3355927 ], + [ 7.261032, 47.3355065 ], + [ 7.260861, 47.3354262 ], + [ 7.2606841, 47.3353521 ], + [ 7.2605017, 47.3352844 ], + [ 7.2603143, 47.3352233 ], + [ 7.2601225, 47.335169 ], + [ 7.2599268, 47.3351215 ], + [ 7.2597277, 47.3350811 ], + [ 7.2595257, 47.3350478 ], + [ 7.2593215, 47.3350217 ], + [ 7.2591155, 47.335003 ], + [ 7.2589084, 47.3349916 ], + [ 7.2587007, 47.3349875 ], + [ 7.2584929, 47.3349909 ], + [ 7.2582857, 47.3350017 ], + [ 7.2580797, 47.3350198 ], + [ 7.2578752, 47.3350452 ], + [ 7.2576731, 47.3350779 ], + [ 7.2574737, 47.3351177 ], + [ 7.2572776, 47.3351645 ], + [ 7.2570855, 47.3352183 ], + [ 7.2568977, 47.3352788 ], + [ 7.2567148, 47.3353459 ], + [ 7.2565374, 47.3354194 ], + [ 7.2563659, 47.3354992 ], + [ 7.2562007, 47.3355849 ], + [ 7.2560424, 47.3356764 ], + [ 7.2558913, 47.3357734 ], + [ 7.2557479, 47.3358757 ], + [ 7.2556126, 47.3359829 ], + [ 7.2554857, 47.3360947 ], + [ 7.2553676, 47.336211 ], + [ 7.2552586, 47.3363312 ], + [ 7.255159, 47.3364552 ], + [ 7.2550691, 47.3365826 ], + [ 7.2549890999999995, 47.336713 ], + [ 7.2549193, 47.336846 ], + [ 7.2548598, 47.3369814 ], + [ 7.2548108, 47.3371187 ], + [ 7.2547724, 47.3372575 ], + [ 7.2547448, 47.3373975 ], + [ 7.254728, 47.3375383 ], + [ 7.2547221, 47.3376795 ], + [ 7.2547271, 47.3378208 ], + [ 7.2547429, 47.3379616 ], + [ 7.2547695, 47.3381017 ], + [ 7.2548069, 47.3382407 ], + [ 7.2548549, 47.3383781 ], + [ 7.2549135, 47.3385137 ], + [ 7.2549824, 47.3386469 ], + [ 7.2550615, 47.3387776 ], + [ 7.2551505, 47.3389052 ], + [ 7.2552492, 47.3390295 ], + [ 7.2553574, 47.3391502 ], + [ 7.2554747, 47.3392668 ], + [ 7.2556008, 47.339379 ], + [ 7.2557355, 47.3394867 ], + [ 7.2558781, 47.3395894 ], + [ 7.2560286, 47.3396869 ], + [ 7.2561862999999995, 47.3397789 ], + [ 7.2563508, 47.3398651 ], + [ 7.2565218, 47.3399454 ], + [ 7.2566988, 47.3400195 ], + [ 7.2568812, 47.3400872 ], + [ 7.2570686, 47.3401483 ], + [ 7.2572604, 47.3402027 ], + [ 7.2574561, 47.3402501 ], + [ 7.2576553, 47.3402906 ], + [ 7.2578572, 47.3403239 ], + [ 7.2580615, 47.3403499 ], + [ 7.2582675, 47.3403687 ], + [ 7.2584745999999996, 47.3403801 ], + [ 7.2586824, 47.3403841 ], + [ 7.2588901, 47.3403808 ], + [ 7.2590974, 47.34037 ], + [ 7.2593035, 47.3403519 ], + [ 7.2595079, 47.3403265 ], + [ 7.2597101, 47.3402938 ], + [ 7.2599095, 47.340254 ], + [ 7.2601055, 47.3402071 ], + [ 7.2602977, 47.3401534 ], + [ 7.2604855, 47.3400928 ], + [ 7.2606684, 47.3400257 ], + [ 7.2608458, 47.3399522 ], + [ 7.2610174, 47.3398724 ], + [ 7.2611825, 47.3397867 ], + [ 7.2613409, 47.3396952 ], + [ 7.2614919, 47.3395982 ], + [ 7.2616353, 47.3394959 ], + [ 7.2617707, 47.3393887 ], + [ 7.2618976, 47.3392768 ], + [ 7.2620157, 47.3391606 ], + [ 7.2621246, 47.3390403 ], + [ 7.2622242, 47.3389163 ], + [ 7.2623141, 47.338789 ], + [ 7.2623941, 47.3386586 ], + [ 7.2624639, 47.3385255 ], + [ 7.2625234, 47.3383902 ], + [ 7.2625723, 47.3382529 ], + [ 7.2626107, 47.338114 ], + [ 7.2626383, 47.337974 ], + [ 7.262655, 47.3378332 ], + [ 7.2626609, 47.337692 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0009", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Bassecourt", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Bassecourt", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Bassecourt", + "lang" : "it-CH" + }, + { + "text" : "Substation Bassecourt", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.239315, 46.2562654 ], + [ 6.2390417, 46.2552296 ], + [ 6.2382178, 46.2543452 ], + [ 6.2369688, 46.2537469 ], + [ 6.2354847, 46.2535256 ], + [ 6.2339916, 46.2537152 ], + [ 6.2327167, 46.2542866 ], + [ 6.231854, 46.255153 ], + [ 6.231535, 46.2561825 ], + [ 6.2318081, 46.2572183 ], + [ 6.232632, 46.2581027 ], + [ 6.2338811, 46.2587011 ], + [ 6.2353652, 46.2589224 ], + [ 6.2368585, 46.2587328 ], + [ 6.2381335, 46.2581613 ], + [ 6.2389961, 46.2572949 ], + [ 6.239315, 46.2562654 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-54", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.1341026, 46.3912002 ], + [ 8.1340955, 46.391059 ], + [ 8.1340777, 46.3909183 ], + [ 8.1340492, 46.3907784 ], + [ 8.1340102, 46.3906397 ], + [ 8.1339608, 46.3905026 ], + [ 8.1339011, 46.390367499999996 ], + [ 8.1338312, 46.3902347 ], + [ 8.1337514, 46.3901047 ], + [ 8.1336619, 46.3899777 ], + [ 8.1335629, 46.3898541 ], + [ 8.1334547, 46.3897343 ], + [ 8.1333375, 46.3896186 ], + [ 8.1332118, 46.3895073 ], + [ 8.1330778, 46.3894007 ], + [ 8.132936, 46.389299 ], + [ 8.1327866, 46.3892027 ], + [ 8.1326302, 46.3891119 ], + [ 8.1324671, 46.3890269 ], + [ 8.1322978, 46.3889479 ], + [ 8.1321228, 46.3888751 ], + [ 8.1319425, 46.3888088 ], + [ 8.1317575, 46.3887491 ], + [ 8.1315681, 46.3886962 ], + [ 8.1313751, 46.3886502 ], + [ 8.1311788, 46.3886113 ], + [ 8.1309799, 46.3885795 ], + [ 8.1307788, 46.388555 ], + [ 8.1305761, 46.3885378 ], + [ 8.1303724, 46.3885279 ], + [ 8.1301683, 46.3885255 ], + [ 8.1299642, 46.3885304 ], + [ 8.1297608, 46.3885427 ], + [ 8.1295586, 46.3885624 ], + [ 8.1293582, 46.3885894 ], + [ 8.1291601, 46.3886236 ], + [ 8.1289648, 46.3886649 ], + [ 8.128773, 46.3887132 ], + [ 8.128585, 46.3887684 ], + [ 8.1284015, 46.3888304 ], + [ 8.128223, 46.3888989 ], + [ 8.1280498, 46.3889738 ], + [ 8.1278826, 46.3890548 ], + [ 8.1277217, 46.3891418 ], + [ 8.1275676, 46.3892345 ], + [ 8.1274207, 46.3893327 ], + [ 8.1272815, 46.389436 ], + [ 8.127150199999999, 46.3895442 ], + [ 8.1270274, 46.3896571 ], + [ 8.1269132, 46.3897742 ], + [ 8.126808, 46.3898953 ], + [ 8.1267122, 46.3900201 ], + [ 8.1266259, 46.3901481 ], + [ 8.1265494, 46.3902791 ], + [ 8.1264829, 46.3904127 ], + [ 8.1264267, 46.3905485 ], + [ 8.1263807, 46.3906862 ], + [ 8.1263453, 46.3908253 ], + [ 8.1263204, 46.3909656 ], + [ 8.1263062, 46.3911065 ], + [ 8.1263026, 46.3912478 ], + [ 8.1263097, 46.391389 ], + [ 8.1263275, 46.3915297 ], + [ 8.126356, 46.3916696 ], + [ 8.1263949, 46.3918083 ], + [ 8.1264443, 46.3919454 ], + [ 8.1265041, 46.3920805 ], + [ 8.1265739, 46.3922133 ], + [ 8.1266537, 46.3923433 ], + [ 8.1267432, 46.3924703 ], + [ 8.1268422, 46.3925939 ], + [ 8.1269504, 46.3927137 ], + [ 8.1270676, 46.3928294 ], + [ 8.1271933, 46.3929408 ], + [ 8.1273273, 46.3930474 ], + [ 8.1274691, 46.393149 ], + [ 8.1276184, 46.3932454 ], + [ 8.1277749, 46.3933362 ], + [ 8.127938, 46.3934212 ], + [ 8.1281073, 46.3935002 ], + [ 8.1282823, 46.393573 ], + [ 8.1284626, 46.3936393 ], + [ 8.1286477, 46.393699 ], + [ 8.128837, 46.3937519 ], + [ 8.1290301, 46.3937979 ], + [ 8.1292264, 46.3938368 ], + [ 8.1294253, 46.3938686 ], + [ 8.1296264, 46.3938931 ], + [ 8.1298291, 46.3939104 ], + [ 8.1300328, 46.3939202 ], + [ 8.130237, 46.3939226 ], + [ 8.1304411, 46.3939177 ], + [ 8.1306445, 46.3939054 ], + [ 8.1308467, 46.3938857 ], + [ 8.1310471, 46.3938587 ], + [ 8.1312453, 46.3938245 ], + [ 8.1314405, 46.3937832 ], + [ 8.1316324, 46.3937349 ], + [ 8.1318204, 46.3936797 ], + [ 8.1320039, 46.3936177 ], + [ 8.1321825, 46.3935492 ], + [ 8.1323556, 46.3934743 ], + [ 8.1325229, 46.3933933 ], + [ 8.1326838, 46.3933063 ], + [ 8.1328379, 46.3932136 ], + [ 8.1329848, 46.3931154 ], + [ 8.133124, 46.3930121 ], + [ 8.1332552, 46.3929038 ], + [ 8.1333781, 46.392791 ], + [ 8.1334923, 46.3926738 ], + [ 8.1335974, 46.3925527 ], + [ 8.1336932, 46.392428 ], + [ 8.1337795, 46.3922999 ], + [ 8.133856, 46.3921689 ], + [ 8.1339224, 46.3920353 ], + [ 8.1339787, 46.3918995 ], + [ 8.1340246, 46.3917618 ], + [ 8.13406, 46.3916227 ], + [ 8.1340849, 46.3914824 ], + [ 8.1340991, 46.3913415 ], + [ 8.1341026, 46.3912002 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0031", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Ernen", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Ernen", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Ernen", + "lang" : "it-CH" + }, + { + "text" : "Substation Ernen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5964185, 46.7592425 ], + [ 7.5969142, 46.7595486 ], + [ 7.5958382, 46.7604244 ], + [ 7.5970601, 46.7610893 ], + [ 7.5973708, 46.7608172 ], + [ 7.598376, 46.7603094 ], + [ 7.5997116, 46.7591705 ], + [ 7.5989105, 46.7587191 ], + [ 7.6029945, 46.7553139 ], + [ 7.6034403, 46.755584 ], + [ 7.6046426, 46.7545739 ], + [ 7.6041837, 46.7543074 ], + [ 7.6048352, 46.7537757 ], + [ 7.6028399, 46.7527063 ], + [ 7.6021767, 46.7532587 ], + [ 7.6019316, 46.753134 ], + [ 7.6004119, 46.7544018 ], + [ 7.6006532, 46.7545454 ], + [ 7.597262, 46.7576527 ], + [ 7.5967346, 46.7581077 ], + [ 7.5964916, 46.7582907 ], + [ 7.5960604, 46.7585423 ], + [ 7.5959141, 46.758618 ], + [ 7.5956475, 46.7587839 ], + [ 7.5964185, 46.7592425 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZW002", + "country" : "CHE", + "name" : [ + { + "text" : "LSZW Thun (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSZW Thun (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSZW Thun (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSZW Thun (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Thun Airfield", + "lang" : "de-CH" + }, + { + "text" : "Thun Airfield", + "lang" : "fr-CH" + }, + { + "text" : "Thun Airfield", + "lang" : "it-CH" + }, + { + "text" : "Thun Airfield", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "André Schneeberger", + "lang" : "de-CH" + }, + { + "text" : "André Schneeberger", + "lang" : "fr-CH" + }, + { + "text" : "André Schneeberger", + "lang" : "it-CH" + }, + { + "text" : "André Schneeberger", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.thun-airfield.ch", + "email" : "flugplatzleitung@thun-airfield.ch", + "phone" : "0041332224214", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P02DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7796427, 47.499491 ], + [ 7.7795814, 47.4994795 ], + [ 7.7795199, 47.4994685 ], + [ 7.7794582, 47.4994581 ], + [ 7.7793706, 47.4994436 ], + [ 7.7790137, 47.4993845 ], + [ 7.7789629, 47.4993764 ], + [ 7.778912, 47.4993688 ], + [ 7.7788609, 47.4993617 ], + [ 7.7788096, 47.4993551 ], + [ 7.7787583, 47.499349 ], + [ 7.7787067, 47.4993435 ], + [ 7.7786551, 47.4993385 ], + [ 7.7786034, 47.499334 ], + [ 7.7784538, 47.4993218 ], + [ 7.7784137, 47.4993184 ], + [ 7.7783735, 47.499315 ], + [ 7.7783334, 47.4993115 ], + [ 7.7782933, 47.4993078 ], + [ 7.7782641, 47.4993054 ], + [ 7.7782349, 47.4993033 ], + [ 7.7782056, 47.4993018 ], + [ 7.7781762, 47.4993007 ], + [ 7.7781468, 47.4993 ], + [ 7.7781232, 47.4992999 ], + [ 7.7780995, 47.4992996 ], + [ 7.7780758, 47.4992992 ], + [ 7.7780521, 47.4992987 ], + [ 7.7777316, 47.4992907 ], + [ 7.7776791, 47.4992891 ], + [ 7.7776266, 47.499287 ], + [ 7.7775905, 47.4992852 ], + [ 7.7775742, 47.4992844 ], + [ 7.7775218, 47.4992812 ], + [ 7.7774695, 47.4992776 ], + [ 7.7774173, 47.4992734 ], + [ 7.7773652, 47.4992687 ], + [ 7.7773388, 47.4992658 ], + [ 7.7773126999999995, 47.4992624 ], + [ 7.7772867, 47.4992583 ], + [ 7.7772609, 47.4992537 ], + [ 7.7772354, 47.4992484 ], + [ 7.7772101, 47.4992425 ], + [ 7.7771852, 47.4992361 ], + [ 7.7771606, 47.4992291 ], + [ 7.7771364, 47.4992214 ], + [ 7.7771127, 47.4992133 ], + [ 7.7770893, 47.4992046 ], + [ 7.7770664, 47.4991953 ], + [ 7.777044, 47.4991855 ], + [ 7.777022, 47.4991752 ], + [ 7.7770007, 47.4991644 ], + [ 7.7769799, 47.4991531 ], + [ 7.7769597, 47.4991413 ], + [ 7.7768865, 47.4990968 ], + [ 7.7768135, 47.4990521 ], + [ 7.776741, 47.4990072 ], + [ 7.7766687, 47.498962 ], + [ 7.776636, 47.4989421 ], + [ 7.7766029, 47.4989225 ], + [ 7.7765695, 47.4989032 ], + [ 7.7765357, 47.4988841 ], + [ 7.7765131, 47.498871199999996 ], + [ 7.7764911, 47.4988578 ], + [ 7.7764697, 47.498844 ], + [ 7.7764489, 47.4988298 ], + [ 7.7764286, 47.4988152 ], + [ 7.776409, 47.4988002 ], + [ 7.7763901, 47.4987849 ], + [ 7.7763717, 47.4987691 ], + [ 7.7763541, 47.4987531 ], + [ 7.7763371, 47.4987367 ], + [ 7.7763209, 47.49872 ], + [ 7.7763053, 47.4987029 ], + [ 7.7762919, 47.4986872 ], + [ 7.7762792, 47.4986711 ], + [ 7.7762671999999995, 47.4986548 ], + [ 7.7762561, 47.4986383 ], + [ 7.7762458, 47.4986215 ], + [ 7.7762362, 47.4986044 ], + [ 7.7762275, 47.4985872 ], + [ 7.7762196, 47.4985698 ], + [ 7.7762125, 47.4985523 ], + [ 7.7762063, 47.4985346 ], + [ 7.7761983, 47.4985088 ], + [ 7.7761911, 47.4984829 ], + [ 7.7761847, 47.498457 ], + [ 7.7761792, 47.4984309 ], + [ 7.7761745, 47.4984048 ], + [ 7.7761706, 47.4983786 ], + [ 7.7761676, 47.4983523 ], + [ 7.7761595, 47.4982718 ], + [ 7.7761566, 47.498239 ], + [ 7.7761543, 47.4982062 ], + [ 7.7761534999999995, 47.4981884 ], + [ 7.7761528, 47.4981734 ], + [ 7.7761521, 47.4981405 ], + [ 7.776152, 47.4981077 ], + [ 7.7761526, 47.4980847 ], + [ 7.7761541, 47.4980618 ], + [ 7.7761564, 47.4980388 ], + [ 7.7761595, 47.498016 ], + [ 7.7761634, 47.4979932 ], + [ 7.7761682, 47.4979704 ], + [ 7.7761738, 47.4979477 ], + [ 7.7761802, 47.4979252 ], + [ 7.7761873999999995, 47.4979027 ], + [ 7.7761954, 47.4978804 ], + [ 7.7762042000000005, 47.4978582 ], + [ 7.7762138, 47.4978362 ], + [ 7.7762919, 47.4976652 ], + [ 7.7762986, 47.4976496 ], + [ 7.7763046, 47.4976339 ], + [ 7.7763099, 47.4976181 ], + [ 7.7763145, 47.4976022 ], + [ 7.7763174, 47.4975907 ], + [ 7.7763185, 47.4975862 ], + [ 7.7763216, 47.4975701 ], + [ 7.7763241, 47.497554 ], + [ 7.7763249, 47.4975442 ], + [ 7.7763248, 47.4975344 ], + [ 7.7763237, 47.4975247 ], + [ 7.7763217000000004, 47.497515 ], + [ 7.7763188, 47.4975054 ], + [ 7.776315, 47.4974959 ], + [ 7.7763103000000005, 47.4974867 ], + [ 7.7763047, 47.4974777 ], + [ 7.7762983, 47.4974689 ], + [ 7.7762911, 47.4974604 ], + [ 7.776283, 47.4974523 ], + [ 7.7762743, 47.4974445 ], + [ 7.7762647, 47.4974372 ], + [ 7.7762545, 47.4974302 ], + [ 7.7762437, 47.4974238 ], + [ 7.7762095, 47.4974049 ], + [ 7.7761748, 47.4973864 ], + [ 7.7761397, 47.4973683 ], + [ 7.7761042, 47.4973505 ], + [ 7.7760683, 47.4973332 ], + [ 7.776043, 47.4973215 ], + [ 7.7760172999999995, 47.4973103 ], + [ 7.7759911, 47.4972996 ], + [ 7.7759792999999995, 47.4972951 ], + [ 7.7755197, 47.4975132 ], + [ 7.7749876, 47.4977634 ], + [ 7.7748671, 47.4978344 ], + [ 7.7748632, 47.4978768 ], + [ 7.7748512, 47.4979503 ], + [ 7.7748101, 47.4980437 ], + [ 7.7747898, 47.4981426 ], + [ 7.7747944, 47.4982076 ], + [ 7.7748146, 47.4982893 ], + [ 7.7748201, 47.4983149 ], + [ 7.7748248, 47.4984025 ], + [ 7.7748503, 47.4984702 ], + [ 7.7748798, 47.4985238 ], + [ 7.7749135, 47.4985831 ], + [ 7.7749348, 47.4986424 ], + [ 7.7749767, 47.4986846 ], + [ 7.7749897, 47.4987496 ], + [ 7.7750192, 47.4988145 ], + [ 7.7750658999999995, 47.498933 ], + [ 7.7750956, 47.4990262 ], + [ 7.7751044, 47.499094 ], + [ 7.7751215, 47.4991617 ], + [ 7.7751385, 47.4992154 ], + [ 7.7751557, 47.4992973 ], + [ 7.7751688, 47.4993933 ], + [ 7.7751695, 47.4995035 ], + [ 7.7751535, 47.4995996 ], + [ 7.7751248, 47.4996732 ], + [ 7.7751292, 47.4997212 ], + [ 7.7751461, 47.4997579 ], + [ 7.7751632, 47.4998115 ], + [ 7.7752303, 47.499882 ], + [ 7.7752769, 47.4999892 ], + [ 7.7753169, 47.5000657 ], + [ 7.7755062, 47.5001105 ], + [ 7.7755406, 47.5001037 ], + [ 7.7757477999999995, 47.5001596 ], + [ 7.7761005, 47.5003565 ], + [ 7.7762594, 47.5004136 ], + [ 7.7764521, 47.5004435 ], + [ 7.7769781, 47.5005133 ], + [ 7.7771759, 47.500524 ], + [ 7.7773727, 47.5005183 ], + [ 7.7777689, 47.5004853 ], + [ 7.7779518, 47.500462 ], + [ 7.7781292, 47.500415 ], + [ 7.7785632, 47.5002847 ], + [ 7.7787422, 47.5002464 ], + [ 7.778748, 47.5002583 ], + [ 7.7789681999999996, 47.5002195 ], + [ 7.7789959, 47.500215 ], + [ 7.7790239, 47.500211 ], + [ 7.779052, 47.5002076 ], + [ 7.7790803, 47.5002049 ], + [ 7.7791087, 47.5002027 ], + [ 7.7791372, 47.5002012 ], + [ 7.7791657, 47.5002003 ], + [ 7.7791932, 47.5002 ], + [ 7.7792207, 47.5002002 ], + [ 7.7792482, 47.500201 ], + [ 7.7792757, 47.5002023 ], + [ 7.779303, 47.5002042 ], + [ 7.7793303, 47.5002065 ], + [ 7.7793575, 47.5002095 ], + [ 7.7793845, 47.5002129 ], + [ 7.7794114, 47.5002169 ], + [ 7.7794381, 47.5002214 ], + [ 7.7794491, 47.5002237 ], + [ 7.7794598, 47.5002266 ], + [ 7.7794701, 47.50023 ], + [ 7.7794799, 47.5002341 ], + [ 7.7794893, 47.5002386 ], + [ 7.779498, 47.5002437 ], + [ 7.7795061, 47.5002492 ], + [ 7.7795135, 47.5002551 ], + [ 7.7795202, 47.5002615 ], + [ 7.7795261, 47.5002682 ], + [ 7.7795312, 47.5002752 ], + [ 7.7795354, 47.5002824 ], + [ 7.7795388, 47.5002899 ], + [ 7.7795423, 47.5003002 ], + [ 7.7795449, 47.5003107 ], + [ 7.7795466, 47.5003213 ], + [ 7.7795474, 47.5003319 ], + [ 7.7795472, 47.5003426 ], + [ 7.7795462, 47.5003532 ], + [ 7.7795442, 47.5003638 ], + [ 7.7795414, 47.5003742 ], + [ 7.7795376, 47.5003846 ], + [ 7.779533, 47.5003947 ], + [ 7.7795275, 47.5004047 ], + [ 7.7795212, 47.5004145 ], + [ 7.779514, 47.5004239 ], + [ 7.7795061, 47.5004331 ], + [ 7.7794973, 47.500442 ], + [ 7.7794878, 47.5004504 ], + [ 7.7794701, 47.500465 ], + [ 7.7794517, 47.5004791 ], + [ 7.7794327, 47.5004929 ], + [ 7.7794131, 47.5005063 ], + [ 7.779393, 47.5005193 ], + [ 7.7793723, 47.5005319 ], + [ 7.779351, 47.5005441 ], + [ 7.7793292, 47.5005558 ], + [ 7.7793069, 47.5005671 ], + [ 7.7792842, 47.5005779 ], + [ 7.7791543999999995, 47.5006378 ], + [ 7.7791205, 47.5006535 ], + [ 7.7791007, 47.500663 ], + [ 7.7790813, 47.500673 ], + [ 7.7790625, 47.5006835 ], + [ 7.7790443, 47.5006945 ], + [ 7.7790267, 47.5007059 ], + [ 7.7790098, 47.5007177 ], + [ 7.7789934, 47.5007299 ], + [ 7.7789778, 47.5007426 ], + [ 7.7789628, 47.5007556 ], + [ 7.7789486, 47.5007689 ], + [ 7.778935, 47.5007827 ], + [ 7.7789223, 47.5007967 ], + [ 7.7789103, 47.500811 ], + [ 7.778899, 47.5008257 ], + [ 7.7788397, 47.5009066 ], + [ 7.778823, 47.5009289 ], + [ 7.7788055, 47.5009509 ], + [ 7.7787873, 47.5009726 ], + [ 7.7787685, 47.5009941 ], + [ 7.7787489, 47.5010152 ], + [ 7.7787287, 47.5010361 ], + [ 7.7787078, 47.5010567 ], + [ 7.7786863, 47.501077 ], + [ 7.7786522, 47.5011088 ], + [ 7.7786187, 47.501141 ], + [ 7.778586, 47.5011734 ], + [ 7.7785539, 47.5012062 ], + [ 7.7785074, 47.5011965 ], + [ 7.7782143999999995, 47.5015066 ], + [ 7.7779636, 47.5017433 ], + [ 7.7777735, 47.5018506 ], + [ 7.7775468, 47.5019098 ], + [ 7.7771493, 47.5019574 ], + [ 7.7768925, 47.5019694 ], + [ 7.7766725999999995, 47.5019798 ], + [ 7.776634, 47.5019854 ], + [ 7.7764646, 47.5020099 ], + [ 7.7764014, 47.502019 ], + [ 7.7761187, 47.5021364 ], + [ 7.7758755, 47.5022752 ], + [ 7.7757132, 47.5023451 ], + [ 7.7754766, 47.5023925 ], + [ 7.7747744999999995, 47.5025195 ], + [ 7.7747132, 47.5026078 ], + [ 7.7747412, 47.5026424 ], + [ 7.7747334, 47.5026524 ], + [ 7.7747228, 47.5026676 ], + [ 7.774713, 47.502683 ], + [ 7.774704, 47.5026986 ], + [ 7.7746957, 47.5027144 ], + [ 7.7746883, 47.5027304 ], + [ 7.7746817, 47.5027466 ], + [ 7.7746759, 47.5027629 ], + [ 7.7746709, 47.5027793 ], + [ 7.7746668, 47.5027958 ], + [ 7.7745818, 47.5031766 ], + [ 7.7745762, 47.5032034 ], + [ 7.7745713, 47.5032303 ], + [ 7.7745672, 47.5032572 ], + [ 7.7745638, 47.5032842 ], + [ 7.7745611, 47.5033112 ], + [ 7.7745592, 47.5033382 ], + [ 7.774551, 47.5034809 ], + [ 7.7745495, 47.5035073 ], + [ 7.7765334, 47.5035941 ], + [ 7.7766221, 47.5036813 ], + [ 7.7767186, 47.5037658 ], + [ 7.7768649, 47.5038247 ], + [ 7.7770568, 47.5038439 ], + [ 7.7771693, 47.5038266 ], + [ 7.7772389, 47.5037941 ], + [ 7.7772275, 47.5037847 ], + [ 7.7772118, 47.5037709 ], + [ 7.7772043, 47.5037638 ], + [ 7.7771969, 47.5037568 ], + [ 7.7771827, 47.5037422 ], + [ 7.7771744, 47.5037331 ], + [ 7.7771693, 47.5037274 ], + [ 7.7771567, 47.5037122 ], + [ 7.7771448, 47.5036968 ], + [ 7.7771338, 47.503681 ], + [ 7.7771269, 47.5036702 ], + [ 7.7771235999999995, 47.5036651 ], + [ 7.7771143, 47.5036488 ], + [ 7.7771058, 47.5036324 ], + [ 7.7771006, 47.503621 ], + [ 7.7770964, 47.5036094 ], + [ 7.7770931, 47.5035976 ], + [ 7.7770908, 47.5035858 ], + [ 7.7770893, 47.5035739 ], + [ 7.7770887, 47.5035619 ], + [ 7.7770890999999995, 47.5035499 ], + [ 7.7770904, 47.503538 ], + [ 7.7770927, 47.5035262 ], + [ 7.7770958, 47.5035144 ], + [ 7.7770999, 47.5035027 ], + [ 7.7771049, 47.5034913 ], + [ 7.7771102, 47.5034811 ], + [ 7.7771164, 47.5034712 ], + [ 7.7771235, 47.5034616 ], + [ 7.7771314, 47.5034522 ], + [ 7.7771401000000004, 47.5034432 ], + [ 7.7771495999999996, 47.5034346 ], + [ 7.7771599, 47.5034264 ], + [ 7.7771709, 47.5034186 ], + [ 7.7771825, 47.5034112 ], + [ 7.7771948, 47.5034044 ], + [ 7.7772076, 47.5033981 ], + [ 7.777221, 47.5033922 ], + [ 7.7772349, 47.503387000000004 ], + [ 7.7772492, 47.5033823 ], + [ 7.7772639, 47.5033782 ], + [ 7.777279, 47.5033748 ], + [ 7.7772943, 47.5033719 ], + [ 7.7780441, 47.5032483 ], + [ 7.7780891, 47.5032406 ], + [ 7.7781339, 47.5032322 ], + [ 7.7781785, 47.5032233 ], + [ 7.7782228, 47.5032137 ], + [ 7.7782668, 47.5032036 ], + [ 7.7783105, 47.5031929 ], + [ 7.7783539, 47.5031816 ], + [ 7.7783969, 47.5031697 ], + [ 7.7784396000000005, 47.5031573 ], + [ 7.7784819, 47.5031442 ], + [ 7.7785239, 47.5031307 ], + [ 7.7785654, 47.5031165 ], + [ 7.7785926, 47.503106700000004 ], + [ 7.7786193, 47.5030962 ], + [ 7.7786456, 47.5030853 ], + [ 7.7786713, 47.5030737 ], + [ 7.7786965, 47.5030617 ], + [ 7.7787211, 47.5030491 ], + [ 7.7787451, 47.503036 ], + [ 7.7787685, 47.5030224 ], + [ 7.7787913, 47.5030083 ], + [ 7.7788134, 47.5029937 ], + [ 7.7788348, 47.5029787 ], + [ 7.7788555, 47.502963199999996 ], + [ 7.7788755, 47.5029473 ], + [ 7.7788948, 47.502931 ], + [ 7.7789133, 47.5029143 ], + [ 7.7789311, 47.5028972 ], + [ 7.778948, 47.5028797 ], + [ 7.7789641, 47.5028619 ], + [ 7.7789794, 47.5028438 ], + [ 7.7789939, 47.5028253 ], + [ 7.7790075, 47.5028066 ], + [ 7.7790202, 47.5027876 ], + [ 7.7790321, 47.5027683 ], + [ 7.7790431, 47.5027487 ], + [ 7.7790531, 47.502729 ], + [ 7.7790623, 47.502709 ], + [ 7.7790704999999996, 47.5026889 ], + [ 7.7790778, 47.5026686 ], + [ 7.7790842, 47.5026482 ], + [ 7.7790896, 47.5026276 ], + [ 7.77913, 47.5024595 ], + [ 7.7791361, 47.5024363 ], + [ 7.7791429, 47.5024133 ], + [ 7.7791507, 47.5023904 ], + [ 7.7791594, 47.5023676 ], + [ 7.7791689, 47.502345 ], + [ 7.7791793, 47.5023226 ], + [ 7.7791905, 47.5023003 ], + [ 7.7792025, 47.5022783 ], + [ 7.7792154, 47.5022565 ], + [ 7.7792331, 47.5022285 ], + [ 7.7792517, 47.5022008 ], + [ 7.7792711, 47.5021734 ], + [ 7.7792914, 47.5021463 ], + [ 7.7793125, 47.5021194 ], + [ 7.7793345, 47.5020929 ], + [ 7.7793573, 47.5020667 ], + [ 7.779381, 47.5020409 ], + [ 7.7794054, 47.5020154 ], + [ 7.7794307, 47.5019902 ], + [ 7.7794567, 47.5019655 ], + [ 7.7794834999999996, 47.5019411 ], + [ 7.7795153, 47.5019681 ], + [ 7.779647, 47.5019968 ], + [ 7.7797678999999995, 47.5019908 ], + [ 7.7799262, 47.5019592 ], + [ 7.7801636, 47.5019133 ], + [ 7.7804625, 47.5017146 ], + [ 7.7806619, 47.5015925 ], + [ 7.7808449, 47.5015157 ], + [ 7.7810318, 47.5014049 ], + [ 7.7811354, 47.5013142 ], + [ 7.7813813, 47.5012852 ], + [ 7.7814895, 47.5012482 ], + [ 7.7815349, 47.5011802 ], + [ 7.7815508, 47.5010643 ], + [ 7.7815503, 47.500988 ], + [ 7.7816041, 47.5009229 ], + [ 7.7816847, 47.5008464 ], + [ 7.7817118, 47.5008121 ], + [ 7.7817381, 47.5008109 ], + [ 7.7817643, 47.5008103 ], + [ 7.7817906, 47.5008103 ], + [ 7.7818169, 47.500811 ], + [ 7.7818431, 47.5008123 ], + [ 7.7818692, 47.5008142 ], + [ 7.7818952, 47.5008167 ], + [ 7.7819211, 47.5008199 ], + [ 7.7819468, 47.5008236 ], + [ 7.7819722, 47.500828 ], + [ 7.7819975, 47.5008329 ], + [ 7.7820224, 47.5008385 ], + [ 7.7825092, 47.5009531 ], + [ 7.782523, 47.500956 ], + [ 7.782537, 47.5009583 ], + [ 7.7825512, 47.5009599 ], + [ 7.7825655, 47.5009609 ], + [ 7.7825799, 47.5009613 ], + [ 7.7825942999999995, 47.500961 ], + [ 7.7826087, 47.5009601 ], + [ 7.7826229, 47.5009586 ], + [ 7.782637, 47.5009564 ], + [ 7.7826508, 47.5009536 ], + [ 7.7826643, 47.5009502 ], + [ 7.7826774, 47.5009462 ], + [ 7.7827531, 47.5009212 ], + [ 7.7827627, 47.5009176 ], + [ 7.782772, 47.5009136 ], + [ 7.7827807, 47.5009091 ], + [ 7.7827888, 47.5009042 ], + [ 7.7827964, 47.5008988 ], + [ 7.7828033, 47.5008931 ], + [ 7.7828096, 47.5008869 ], + [ 7.7828151, 47.5008805 ], + [ 7.7828198, 47.5008738 ], + [ 7.7828247, 47.5008654 ], + [ 7.7828288, 47.5008568 ], + [ 7.7828321, 47.5008481 ], + [ 7.7828345, 47.5008392 ], + [ 7.7828361, 47.5008302 ], + [ 7.7828368, 47.5008212 ], + [ 7.7828365999999995, 47.5008122 ], + [ 7.7828356, 47.5008032 ], + [ 7.7828337, 47.5007942 ], + [ 7.7828309, 47.5007854 ], + [ 7.7828274, 47.5007767 ], + [ 7.782823, 47.5007682 ], + [ 7.7828178, 47.5007598 ], + [ 7.7828155, 47.5007567 ], + [ 7.7828118, 47.5007518 ], + [ 7.7828051, 47.500744 ], + [ 7.7827766, 47.500714 ], + [ 7.7827475, 47.5006843 ], + [ 7.7827177, 47.5006549 ], + [ 7.7826872, 47.5006259 ], + [ 7.7826561, 47.5005972 ], + [ 7.7826242, 47.500568799999996 ], + [ 7.7825917, 47.5005408 ], + [ 7.7825586, 47.5005131 ], + [ 7.7825248, 47.5004858 ], + [ 7.7824704, 47.5004421 ], + [ 7.7824165, 47.5003981 ], + [ 7.7823632, 47.5003537 ], + [ 7.7823105, 47.5003091 ], + [ 7.7822461, 47.5002541 ], + [ 7.782225, 47.5002365 ], + [ 7.782203, 47.5002193 ], + [ 7.7821804, 47.5002025 ], + [ 7.7821571, 47.5001862 ], + [ 7.7821332, 47.5001703 ], + [ 7.7821086, 47.5001549 ], + [ 7.7820833, 47.5001399 ], + [ 7.7820575, 47.5001255 ], + [ 7.782031, 47.5001115 ], + [ 7.782004, 47.5000981 ], + [ 7.7819764, 47.5000851 ], + [ 7.7819484, 47.5000727 ], + [ 7.7819198, 47.5000608 ], + [ 7.7818907, 47.5000495 ], + [ 7.7818612, 47.5000388 ], + [ 7.7818313, 47.5000286 ], + [ 7.7818009, 47.5000189 ], + [ 7.7812864, 47.4998618 ], + [ 7.7812369, 47.499847 ], + [ 7.781187, 47.4998328 ], + [ 7.7811368, 47.4998192 ], + [ 7.781103, 47.4998105 ], + [ 7.7810827, 47.4998053 ], + [ 7.7810363, 47.4997939 ], + [ 7.780942, 47.4997732 ], + [ 7.780383, 47.4996581 ], + [ 7.7799458999999995, 47.4995561 ], + [ 7.7798857, 47.4995421 ], + [ 7.7798253, 47.4995286 ], + [ 7.7797647, 47.4995156 ], + [ 7.7797038, 47.499503 ], + [ 7.7796427, 47.499491 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns006", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Eileten - Dumberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Eileten - Dumberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Eileten - Dumberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Eileten - Dumberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.3123336, 46.0317045 ], + [ 7.3123286, 46.0315633 ], + [ 7.312313, 46.0314224 ], + [ 7.3122869, 46.0312823 ], + [ 7.3122502, 46.0311433 ], + [ 7.3122032, 46.0310059 ], + [ 7.3121459, 46.0308704 ], + [ 7.3120785, 46.0307371 ], + [ 7.3120012, 46.0306065 ], + [ 7.3119141, 46.0304789 ], + [ 7.3118176, 46.0303546 ], + [ 7.3117119, 46.030234 ], + [ 7.3115973, 46.0301175 ], + [ 7.3114741, 46.0300052 ], + [ 7.3113426, 46.0298977 ], + [ 7.3112032, 46.029795 ], + [ 7.3110563, 46.0296976 ], + [ 7.3109023, 46.0296057 ], + [ 7.3107416, 46.0295195 ], + [ 7.3105746, 46.0294393 ], + [ 7.3104019000000005, 46.0293652 ], + [ 7.3102238, 46.0292976 ], + [ 7.3100408, 46.0292366 ], + [ 7.3098536, 46.0291823 ], + [ 7.3096625, 46.0291349 ], + [ 7.3094681, 46.0290946 ], + [ 7.3092709, 46.0290614 ], + [ 7.3090716, 46.0290354 ], + [ 7.3088705, 46.0290167 ], + [ 7.3086683, 46.0290054 ], + [ 7.3084656, 46.0290014 ], + [ 7.3082628, 46.0290049 ], + [ 7.3080606, 46.0290157 ], + [ 7.3078594, 46.029034 ], + [ 7.3076599, 46.0290595 ], + [ 7.3074626, 46.0290922 ], + [ 7.307268, 46.0291321 ], + [ 7.3070767, 46.0291791 ], + [ 7.3068892, 46.0292329 ], + [ 7.306706, 46.0292935 ], + [ 7.3065275, 46.0293607 ], + [ 7.3063544, 46.0294343 ], + [ 7.3061871, 46.0295142 ], + [ 7.3060259, 46.0296 ], + [ 7.3058715, 46.0296916 ], + [ 7.3057241, 46.0297886 ], + [ 7.3055842, 46.0298909 ], + [ 7.3054522, 46.0299982 ], + [ 7.3053285, 46.0301102 ], + [ 7.3052133, 46.0302265 ], + [ 7.305107, 46.0303468 ], + [ 7.3050099, 46.0304708 ], + [ 7.3049223, 46.0305983 ], + [ 7.3048443, 46.0307287 ], + [ 7.3047763, 46.0308618 ], + [ 7.3047183, 46.0309972 ], + [ 7.3046707, 46.0311345 ], + [ 7.3046333, 46.0312734 ], + [ 7.3046065, 46.0314134 ], + [ 7.3045903, 46.0315543 ], + [ 7.3045846, 46.0316955 ], + [ 7.3045896, 46.0318367 ], + [ 7.3046051, 46.0319776 ], + [ 7.3046313, 46.0321177 ], + [ 7.3046679, 46.0322567 ], + [ 7.3047149000000005, 46.0323941 ], + [ 7.3047722, 46.0325296 ], + [ 7.3048396, 46.0326629 ], + [ 7.3049169, 46.0327935 ], + [ 7.3050039, 46.0329212 ], + [ 7.3051004, 46.0330454 ], + [ 7.3052061, 46.033166 ], + [ 7.3053207, 46.0332826 ], + [ 7.3054439, 46.0333948 ], + [ 7.3055754, 46.0335024 ], + [ 7.3057147, 46.0336051 ], + [ 7.3058616, 46.0337025 ], + [ 7.3060157, 46.0337944 ], + [ 7.3061764, 46.0338806 ], + [ 7.3063434, 46.0339609 ], + [ 7.3065162, 46.0340349 ], + [ 7.3066943, 46.0341025 ], + [ 7.3068772, 46.0341636 ], + [ 7.3070645, 46.0342178 ], + [ 7.3072555999999995, 46.0342652 ], + [ 7.30745, 46.0343056 ], + [ 7.3076472, 46.0343388 ], + [ 7.3078465999999995, 46.0343648 ], + [ 7.3080476, 46.0343835 ], + [ 7.3082498, 46.0343948 ], + [ 7.3084526, 46.0343987 ], + [ 7.3086554, 46.0343953 ], + [ 7.3088577, 46.0343844 ], + [ 7.3090588, 46.0343662 ], + [ 7.3092583, 46.0343407 ], + [ 7.3094557, 46.0343079 ], + [ 7.3096503, 46.034268 ], + [ 7.3098416, 46.0342211 ], + [ 7.3100291, 46.0341672 ], + [ 7.3102124, 46.0341066 ], + [ 7.3103908, 46.0340394 ], + [ 7.3105639, 46.0339658 ], + [ 7.3107313, 46.0338859 ], + [ 7.3108924, 46.0338001 ], + [ 7.3110469, 46.0337085 ], + [ 7.3111943, 46.0336115 ], + [ 7.3113341, 46.0335091 ], + [ 7.3114661, 46.0334019 ], + [ 7.3115898999999995, 46.0332899 ], + [ 7.3117051, 46.0331736 ], + [ 7.3118113000000005, 46.0330533 ], + [ 7.3119084, 46.0329292 ], + [ 7.311996, 46.0328018 ], + [ 7.312074, 46.0326713 ], + [ 7.312142, 46.0325382 ], + [ 7.3121998999999995, 46.0324028 ], + [ 7.3122476, 46.0322655 ], + [ 7.3122849, 46.0321266 ], + [ 7.3123117, 46.0319866 ], + [ 7.3123279, 46.0318458 ], + [ 7.3123336, 46.0317045 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0036", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Fionnay FMM", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Fionnay FMM", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Fionnay FMM", + "lang" : "it-CH" + }, + { + "text" : "Substation Fionnay FMM", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.4803539, 47.068164 ], + [ 9.4813283, 47.0685336 ], + [ 9.4817106, 47.0683531 ], + [ 9.4823288, 47.0680946 ], + [ 9.4822771, 47.0680571 ], + [ 9.4807433, 47.067686 ], + [ 9.4799545, 47.0674971 ], + [ 9.4796149, 47.0679052 ], + [ 9.4803539, 47.068164 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSXB002", + "country" : "LIE", + "name" : [ + { + "text" : "LSXB Balzers (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSXB Balzers (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSXB Balzers (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSXB Balzers (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 27, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Heliport Balzers", + "lang" : "de-CH" + }, + { + "text" : "Heliport Balzers", + "lang" : "fr-CH" + }, + { + "text" : "Heliport Balzers", + "lang" : "it-CH" + }, + { + "text" : "Heliport Balzers", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleiter", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleiter", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleiter", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleiter", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Renzo Aldovini", + "lang" : "de-CH" + }, + { + "text" : "Renzo Aldovini", + "lang" : "fr-CH" + }, + { + "text" : "Renzo Aldovini", + "lang" : "it-CH" + }, + { + "text" : "Renzo Aldovini", + "lang" : "en-GB" + } + ], + "siteURL" : "https://lsxb.li/drohnenfluege/", + "email" : "info@lsxb.li", + "phone" : "004233800303", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P01DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.5821805, 47.3391847 ], + [ 9.5821694, 47.3390437 ], + [ 9.5821474, 47.3389032 ], + [ 9.5821147, 47.3387637 ], + [ 9.582071299999999, 47.3386255 ], + [ 9.5820172, 47.3384891 ], + [ 9.5819528, 47.3383548 ], + [ 9.5818781, 47.338223 ], + [ 9.5817934, 47.338094 ], + [ 9.5816988, 47.3379682 ], + [ 9.5815947, 47.337846 ], + [ 9.5814813, 47.3377276 ], + [ 9.581358999999999, 47.3376134 ], + [ 9.581228, 47.3375037 ], + [ 9.5810888, 47.3373988 ], + [ 9.5809417, 47.337299 ], + [ 9.5807871, 47.3372046 ], + [ 9.5806254, 47.3371159 ], + [ 9.5804572, 47.337033 ], + [ 9.580282799999999, 47.3369561 ], + [ 9.5801027, 47.3368856 ], + [ 9.5799174, 47.3368217 ], + [ 9.5797275, 47.3367643 ], + [ 9.5795334, 47.3367139 ], + [ 9.5793357, 47.3366704 ], + [ 9.5791349, 47.3366339 ], + [ 9.5789316, 47.3366047 ], + [ 9.5787263, 47.3365828 ], + [ 9.5785196, 47.3365682 ], + [ 9.578312, 47.3365609 ], + [ 9.5781042, 47.3365611 ], + [ 9.5778967, 47.3365686 ], + [ 9.5776901, 47.3365836 ], + [ 9.5774848, 47.3366058 ], + [ 9.5772816, 47.3366353 ], + [ 9.5770809, 47.336672 ], + [ 9.5768834, 47.3367158 ], + [ 9.5766895, 47.3367666 ], + [ 9.5764997, 47.3368242 ], + [ 9.5763146, 47.3368885 ], + [ 9.5761348, 47.3369592 ], + [ 9.5759606, 47.3370363 ], + [ 9.5757926, 47.3371195 ], + [ 9.5756313, 47.3372085 ], + [ 9.575477, 47.3373031 ], + [ 9.5753302, 47.3374031 ], + [ 9.5751913, 47.3375082 ], + [ 9.5750607, 47.3376181 ], + [ 9.5749387, 47.3377324 ], + [ 9.5748257, 47.337851 ], + [ 9.574722, 47.3379734 ], + [ 9.5746278, 47.3380994 ], + [ 9.5745435, 47.3382285 ], + [ 9.5744692, 47.3383604 ], + [ 9.5744052, 47.3384948 ], + [ 9.5743516, 47.3386313 ], + [ 9.5743087, 47.3387695 ], + [ 9.5742764, 47.3389091 ], + [ 9.5742548, 47.3390496 ], + [ 9.5742442, 47.3391906 ], + [ 9.5742444, 47.3393319 ], + [ 9.5742555, 47.339473 ], + [ 9.5742774, 47.3396135 ], + [ 9.5743102, 47.3397529 ], + [ 9.5743536, 47.3398911 ], + [ 9.5744076, 47.3400275 ], + [ 9.574472, 47.3401618 ], + [ 9.574546699999999, 47.3402936 ], + [ 9.5746314, 47.3404226 ], + [ 9.574726, 47.3405484 ], + [ 9.5748301, 47.3406707 ], + [ 9.5749434, 47.3407891 ], + [ 9.5750658, 47.3409033 ], + [ 9.5751967, 47.341013 ], + [ 9.575336, 47.3411179 ], + [ 9.5754831, 47.3412177 ], + [ 9.5756377, 47.3413121 ], + [ 9.5757993, 47.3414009 ], + [ 9.5759676, 47.3414838 ], + [ 9.576142, 47.3415606 ], + [ 9.5763221, 47.3416311 ], + [ 9.5765074, 47.3416951 ], + [ 9.5766973, 47.3417524 ], + [ 9.5768915, 47.3418029 ], + [ 9.5770892, 47.3418464 ], + [ 9.57729, 47.3418828 ], + [ 9.5774933, 47.341912 ], + [ 9.5776986, 47.341934 ], + [ 9.5779053, 47.3419486 ], + [ 9.5781129, 47.3419558 ], + [ 9.5783207, 47.3419557 ], + [ 9.5785283, 47.3419481 ], + [ 9.5787349, 47.3419332 ], + [ 9.5789402, 47.341911 ], + [ 9.5791434, 47.3418814 ], + [ 9.5793441, 47.3418447 ], + [ 9.5795417, 47.3418009 ], + [ 9.5797356, 47.3417501 ], + [ 9.5799254, 47.3416925 ], + [ 9.5801105, 47.341628299999996 ], + [ 9.5802903, 47.3415575 ], + [ 9.5804645, 47.3414804 ], + [ 9.5806325, 47.3413973 ], + [ 9.5807939, 47.3413082 ], + [ 9.5809482, 47.3412136 ], + [ 9.581095, 47.3411136 ], + [ 9.5812338, 47.3410085 ], + [ 9.5813645, 47.3408986 ], + [ 9.5814864, 47.3407842 ], + [ 9.5815994, 47.3406657 ], + [ 9.5817031, 47.3405433 ], + [ 9.5817973, 47.3404173 ], + [ 9.581881599999999, 47.3402882 ], + [ 9.5819558, 47.3401562 ], + [ 9.5820198, 47.3400218 ], + [ 9.5820734, 47.3398854 ], + [ 9.5821164, 47.3397471 ], + [ 9.5821486, 47.3396076 ], + [ 9.5821701, 47.3394671 ], + [ 9.5821808, 47.339326 ], + [ 9.5821805, 47.3391847 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0073", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Montlingen", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Montlingen", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Montlingen", + "lang" : "it-CH" + }, + { + "text" : "Substation Montlingen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5074453, 47.3910242 ], + [ 7.5074518, 47.3911766 ], + [ 7.507445, 47.391331 ], + [ 7.5074947, 47.3914516 ], + [ 7.5076019, 47.3915474 ], + [ 7.5077151, 47.3916287 ], + [ 7.5078873, 47.3917343 ], + [ 7.5079543, 47.3917779 ], + [ 7.508075, 47.3918354 ], + [ 7.5080379, 47.3918979 ], + [ 7.5080175, 47.3919473 ], + [ 7.5080064, 47.3919757 ], + [ 7.5079954, 47.3920041 ], + [ 7.5079774, 47.3921048 ], + [ 7.5079981, 47.3922066 ], + [ 7.5080075, 47.3922331 ], + [ 7.5080722, 47.3922249 ], + [ 7.5081219, 47.3922091 ], + [ 7.5081499, 47.3921632 ], + [ 7.5082389, 47.3920997 ], + [ 7.5085309, 47.3919797 ], + [ 7.5087922, 47.3919343 ], + [ 7.508985, 47.3919008 ], + [ 7.5091092, 47.3919775 ], + [ 7.5093187, 47.3921555 ], + [ 7.5094373, 47.3923307 ], + [ 7.5095496, 47.3924632 ], + [ 7.509486, 47.3924854 ], + [ 7.5094126, 47.3925323 ], + [ 7.5094269, 47.392698 ], + [ 7.5096428, 47.3928164 ], + [ 7.5099237, 47.3929279 ], + [ 7.5100426, 47.3929638 ], + [ 7.510039, 47.3930424 ], + [ 7.5098426, 47.3931307 ], + [ 7.5098518, 47.393256 ], + [ 7.5099721, 47.3934591 ], + [ 7.5100774, 47.3934563 ], + [ 7.5100815, 47.393346 ], + [ 7.5101947, 47.393256 ], + [ 7.5103043, 47.3932359 ], + [ 7.5103635, 47.3932386 ], + [ 7.5104032, 47.3930794 ], + [ 7.5105297, 47.3930383 ], + [ 7.5106224, 47.3929861 ], + [ 7.5107869, 47.3929474 ], + [ 7.5110268, 47.392932 ], + [ 7.5112549, 47.3929596 ], + [ 7.5114509, 47.3930261 ], + [ 7.511656, 47.393087 ], + [ 7.5119214, 47.3930568 ], + [ 7.5121431, 47.3929109 ], + [ 7.5121025, 47.3928857 ], + [ 7.512086, 47.3928752 ], + [ 7.5120687, 47.3928653 ], + [ 7.5120506, 47.392856 ], + [ 7.5120317, 47.3928474 ], + [ 7.5119592, 47.3928117 ], + [ 7.5114763, 47.392608 ], + [ 7.5114538, 47.3926035 ], + [ 7.511431, 47.3925999 ], + [ 7.511408, 47.392597 ], + [ 7.5113847, 47.392595 ], + [ 7.5113613, 47.3925939 ], + [ 7.5113379, 47.3925936 ], + [ 7.5113145, 47.3925941 ], + [ 7.5112912, 47.3925955 ], + [ 7.5112555, 47.3925994 ], + [ 7.5112203, 47.3926052 ], + [ 7.5112031, 47.3926061 ], + [ 7.5111859, 47.392606 ], + [ 7.5111687, 47.392605 ], + [ 7.5111517, 47.3926029 ], + [ 7.5111426, 47.3926014 ], + [ 7.5111336, 47.3925997 ], + [ 7.5111247, 47.3925976 ], + [ 7.5111159, 47.392595299999996 ], + [ 7.5111073, 47.3925926 ], + [ 7.5110989, 47.3925898 ], + [ 7.5110908, 47.3925866 ], + [ 7.5110828, 47.3925833 ], + [ 7.5110633, 47.3925728 ], + [ 7.5110448, 47.3925617 ], + [ 7.5110192, 47.3925443 ], + [ 7.5109957, 47.3925256 ], + [ 7.5109901, 47.3925166 ], + [ 7.5109853, 47.3925074 ], + [ 7.5109812, 47.392498 ], + [ 7.5109778, 47.3924885 ], + [ 7.5109746, 47.392476 ], + [ 7.5109726, 47.3924634 ], + [ 7.510972, 47.3924508 ], + [ 7.5109726, 47.3924381 ], + [ 7.5109745, 47.3924255 ], + [ 7.5109778, 47.3924131 ], + [ 7.5109822, 47.3924008 ], + [ 7.510988, 47.3923887 ], + [ 7.5108078, 47.3922918 ], + [ 7.5106738, 47.3922134 ], + [ 7.5104638, 47.3920735 ], + [ 7.5102904, 47.3919517 ], + [ 7.50988, 47.3916341 ], + [ 7.509843, 47.3916015 ], + [ 7.5098082, 47.3915679 ], + [ 7.5097674, 47.3915235 ], + [ 7.5097306, 47.3914774 ], + [ 7.5095089, 47.3911499 ], + [ 7.509488, 47.3911237 ], + [ 7.5094652, 47.3910983 ], + [ 7.5094406, 47.3910737 ], + [ 7.5094141, 47.39105 ], + [ 7.5093727999999995, 47.3910174 ], + [ 7.5093281, 47.390987 ], + [ 7.5090936, 47.3908369 ], + [ 7.5090316999999995, 47.3907914 ], + [ 7.5089732, 47.3907439 ], + [ 7.5089067, 47.3906834 ], + [ 7.5088799, 47.3906558 ], + [ 7.5088197999999995, 47.3905737 ], + [ 7.5087671, 47.3904939 ], + [ 7.5087161, 47.3904076 ], + [ 7.5086675, 47.3903229 ], + [ 7.5086391, 47.390253 ], + [ 7.5086182, 47.390145 ], + [ 7.5086427, 47.3900551 ], + [ 7.5087007, 47.3899459 ], + [ 7.5087772, 47.3898387 ], + [ 7.5088586, 47.3897438 ], + [ 7.5089559, 47.389658 ], + [ 7.5090422, 47.3895886 ], + [ 7.5091284, 47.3895199 ], + [ 7.5091992, 47.389462 ], + [ 7.5092879, 47.3893962 ], + [ 7.5094125, 47.3893166 ], + [ 7.5095193, 47.3892468 ], + [ 7.5096137, 47.3891821 ], + [ 7.5097116, 47.3891166 ], + [ 7.5098337, 47.3890102 ], + [ 7.509876, 47.3889445 ], + [ 7.5098042, 47.3889066 ], + [ 7.5090967, 47.3885056 ], + [ 7.5087407, 47.388304 ], + [ 7.5080839, 47.3888537 ], + [ 7.5081268, 47.3889312 ], + [ 7.5081476, 47.3889898 ], + [ 7.5081702, 47.3891174 ], + [ 7.5081852, 47.3893894 ], + [ 7.5081941, 47.389552 ], + [ 7.5081589, 47.3895495 ], + [ 7.5078493, 47.3895199 ], + [ 7.507727, 47.3895499 ], + [ 7.5076502, 47.3896524 ], + [ 7.5075668, 47.3896955 ], + [ 7.5072532, 47.3897002 ], + [ 7.5069617, 47.3897533 ], + [ 7.5067453, 47.3898366 ], + [ 7.5067289, 47.3899013 ], + [ 7.5066982, 47.3899012 ], + [ 7.5066345, 47.3899025 ], + [ 7.5065635, 47.3899743 ], + [ 7.5064849, 47.3900573 ], + [ 7.5064174, 47.3901001 ], + [ 7.506383, 47.3901502 ], + [ 7.5063661, 47.3902066 ], + [ 7.506369, 47.3902604 ], + [ 7.5063851, 47.3903056 ], + [ 7.5064095, 47.3903378 ], + [ 7.5064478999999995, 47.3903626 ], + [ 7.5065195, 47.3903944 ], + [ 7.5067245, 47.3904911 ], + [ 7.5068038999999995, 47.3905318 ], + [ 7.5068602, 47.3905717 ], + [ 7.5069061, 47.3906132 ], + [ 7.5069666999999995, 47.3906993 ], + [ 7.5069843, 47.3907466 ], + [ 7.5070132, 47.3907944 ], + [ 7.5070454, 47.3907767 ], + [ 7.5071649, 47.3906871 ], + [ 7.5072978, 47.3907792 ], + [ 7.5074254, 47.3908901 ], + [ 7.5074226, 47.3909541 ], + [ 7.5074317, 47.3909846 ], + [ 7.5074339, 47.3909891 ], + [ 7.5074453, 47.3910242 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr039", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Neuenstein", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Neuenstein", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Neuenstein", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Neuenstein", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5228071, 47.5440305 ], + [ 7.5229543, 47.5441265 ], + [ 7.5236167, 47.543634 ], + [ 7.523459, 47.543548799999996 ], + [ 7.5231387, 47.5437754 ], + [ 7.5228071, 47.5440305 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns073", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Allschwilerwald", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Allschwilerwald", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Allschwilerwald", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Allschwilerwald", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6835086, 47.3943308 ], + [ 7.6834198, 47.3943396 ], + [ 7.6830113, 47.3944362 ], + [ 7.682714, 47.3945057 ], + [ 7.682278, 47.3945766 ], + [ 7.6819509, 47.3946145 ], + [ 7.6819318, 47.3946167 ], + [ 7.6813375, 47.394682 ], + [ 7.6811824, 47.3948445 ], + [ 7.6810338, 47.3950036 ], + [ 7.681051, 47.3953662 ], + [ 7.6814916, 47.3951885 ], + [ 7.6815082, 47.3951895 ], + [ 7.6817919, 47.3952075 ], + [ 7.6819774, 47.3952277 ], + [ 7.6824389, 47.3952634 ], + [ 7.6829512, 47.3950258 ], + [ 7.6830277, 47.3949904 ], + [ 7.6835026, 47.3949172 ], + [ 7.6837189, 47.394883899999996 ], + [ 7.6837243, 47.3948833 ], + [ 7.6841796, 47.3948303 ], + [ 7.6842115, 47.3948266 ], + [ 7.6847067, 47.3946946 ], + [ 7.685144, 47.3946532 ], + [ 7.6854237, 47.3946269 ], + [ 7.6858474, 47.3945869 ], + [ 7.6859058000000005, 47.3945991 ], + [ 7.6864848, 47.3947276 ], + [ 7.686702, 47.3948536 ], + [ 7.6871147, 47.3949685 ], + [ 7.6875604, 47.3950864 ], + [ 7.6879146, 47.3951241 ], + [ 7.6882202, 47.3951547 ], + [ 7.6882907, 47.3951608 ], + [ 7.6884255, 47.395103399999996 ], + [ 7.6885757, 47.3950391 ], + [ 7.6888027999999995, 47.394941 ], + [ 7.6889442, 47.3949149 ], + [ 7.6889591, 47.3949122 ], + [ 7.6890874, 47.394889 ], + [ 7.6892461999999995, 47.3948602 ], + [ 7.6895608, 47.3948029 ], + [ 7.6898073, 47.3947838 ], + [ 7.6901103, 47.3947655 ], + [ 7.6905357, 47.3946366 ], + [ 7.6905916, 47.3945899 ], + [ 7.691137, 47.3944259 ], + [ 7.6913599, 47.3942927 ], + [ 7.6913479, 47.3942782 ], + [ 7.6915698, 47.3941615 ], + [ 7.6916284, 47.3938925 ], + [ 7.6916712, 47.3936741 ], + [ 7.6912733, 47.393747 ], + [ 7.6910118, 47.3938037 ], + [ 7.6905899, 47.3938869 ], + [ 7.6898915, 47.3939873 ], + [ 7.6894165, 47.3941792 ], + [ 7.6891294, 47.3941791 ], + [ 7.6888941, 47.3942121 ], + [ 7.6886209, 47.394288 ], + [ 7.6882926, 47.3942974 ], + [ 7.6879985, 47.3943236 ], + [ 7.6877179, 47.39435 ], + [ 7.6872983999999995, 47.3942945 ], + [ 7.6868726, 47.3942946 ], + [ 7.6864036, 47.3942938 ], + [ 7.6863971, 47.394197 ], + [ 7.6862314, 47.3941883 ], + [ 7.6854546, 47.3941667 ], + [ 7.6847511, 47.3942538 ], + [ 7.6839902, 47.3942829 ], + [ 7.6835086, 47.3943308 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns221", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Gillen", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Gillen", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Gillen", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Gillen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.9514308, 47.5439811 ], + [ 7.988231, 47.5317007 ], + [ 8.0163259, 47.5099783 ], + [ 7.9743497, 47.4807991 ], + [ 7.9049422, 47.4836176 ], + [ 7.8975762, 47.5218417 ], + [ 7.9514308, 47.5439811 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZI001", + "country" : "CHE", + "name" : [ + { + "text" : "LSZI Fricktal-Schupfart", + "lang" : "de-CH" + }, + { + "text" : "LSZI Fricktal-Schupfart", + "lang" : "fr-CH" + }, + { + "text" : "LSZI Fricktal-Schupfart", + "lang" : "it-CH" + }, + { + "text" : "LSZI Fricktal-Schupfart", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Flugplatz Fricktal-Schupfart", + "lang" : "de-CH" + }, + { + "text" : "Flugplatz Fricktal-Schupfart", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatz Fricktal-Schupfart", + "lang" : "it-CH" + }, + { + "text" : "Flugplatz Fricktal-Schupfart", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Herbert Ebner", + "lang" : "de-CH" + }, + { + "text" : "Herbert Ebner", + "lang" : "fr-CH" + }, + { + "text" : "Herbert Ebner", + "lang" : "it-CH" + }, + { + "text" : "Herbert Ebner", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.aecs-fricktal.ch", + "email" : "flugplatzchef@fricktal.ch", + "phone" : "0041628712222", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4927645, 47.4374481 ], + [ 7.4927418, 47.4375698 ], + [ 7.4927208, 47.4377886 ], + [ 7.4928254, 47.4377672 ], + [ 7.4928761999999995, 47.437711 ], + [ 7.4929087, 47.4376185 ], + [ 7.4929278, 47.4374931 ], + [ 7.4929043, 47.4374126 ], + [ 7.4929678, 47.4374082 ], + [ 7.4930616, 47.4374055 ], + [ 7.4931297, 47.4373737 ], + [ 7.4931505, 47.4373291 ], + [ 7.4930913, 47.4371917 ], + [ 7.4929858, 47.437157 ], + [ 7.4930226, 47.4370394 ], + [ 7.4930739, 47.4369262 ], + [ 7.4930733, 47.4367886 ], + [ 7.4931283, 47.4367158 ], + [ 7.4933818, 47.4366704 ], + [ 7.4935575, 47.4366023 ], + [ 7.4936724, 47.4365747 ], + [ 7.4936479, 47.4365156 ], + [ 7.4936454999999995, 47.4365068 ], + [ 7.4934525, 47.4365404 ], + [ 7.4934463000000004, 47.4365412 ], + [ 7.4930537, 47.436606 ], + [ 7.4926313, 47.4366646 ], + [ 7.4926237, 47.436692 ], + [ 7.4926244, 47.4367053 ], + [ 7.4926206, 47.4367465 ], + [ 7.4925733, 47.4367995 ], + [ 7.4926134, 47.4369472 ], + [ 7.4926452999999995, 47.4370695 ], + [ 7.4926961, 47.437221 ], + [ 7.4927229, 47.4373176 ], + [ 7.4927645, 47.4374481 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns289", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Dittinger Weide und Dittinger Wald", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Dittinger Weide und Dittinger Wald", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Dittinger Weide und Dittinger Wald", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Dittinger Weide und Dittinger Wald", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6602096, 47.5128578 ], + [ 7.6598184, 47.5128712 ], + [ 7.6598336, 47.5128953 ], + [ 7.6601359, 47.5133751 ], + [ 7.6601524, 47.5134013 ], + [ 7.6604993, 47.5133224 ], + [ 7.6610309999999995, 47.5132015 ], + [ 7.6610148, 47.5131724 ], + [ 7.6608244, 47.5128547 ], + [ 7.6608032999999995, 47.5128196 ], + [ 7.6604928999999995, 47.5128481 ], + [ 7.6602096, 47.5128578 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns316", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Zinggibrunn", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Zinggibrunn", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Zinggibrunn", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Zinggibrunn", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5358353000000005, 47.469995 ], + [ 7.5358689, 47.4699754 ], + [ 7.5360981, 47.4698412 ], + [ 7.5368568, 47.4698226 ], + [ 7.5374983, 47.4697615 ], + [ 7.5381903, 47.4697406 ], + [ 7.5385553, 47.4697307 ], + [ 7.5386087, 47.4696427 ], + [ 7.5387102, 47.4695357 ], + [ 7.5388024, 47.4694489 ], + [ 7.5387658, 47.468599 ], + [ 7.5387592, 47.4684468 ], + [ 7.5370169, 47.4680967 ], + [ 7.5368845, 47.46807 ], + [ 7.5355672, 47.4675652 ], + [ 7.5354522, 47.467626 ], + [ 7.5353328, 47.4676842 ], + [ 7.5352711, 47.4677074 ], + [ 7.5352015, 47.4677261 ], + [ 7.5351140999999995, 47.4677377 ], + [ 7.5350395, 47.4677402 ], + [ 7.5349566, 47.4677282 ], + [ 7.5348562999999995, 47.4676942 ], + [ 7.5347304, 47.4676498 ], + [ 7.5345699, 47.4675812 ], + [ 7.534361, 47.4674907 ], + [ 7.534177, 47.467396 ], + [ 7.5339973, 47.4673149 ], + [ 7.5339882, 47.4673079 ], + [ 7.5338679, 47.4673166 ], + [ 7.5334018, 47.4673486 ], + [ 7.5328333, 47.4673852 ], + [ 7.5325428, 47.4674038 ], + [ 7.5318479, 47.4674582 ], + [ 7.5314752, 47.4674877 ], + [ 7.5312709, 47.4675055 ], + [ 7.5306795, 47.4676591 ], + [ 7.5293371, 47.4676891 ], + [ 7.5288877, 47.4676989 ], + [ 7.5287315, 47.4683105 ], + [ 7.5288412000000005, 47.4683126 ], + [ 7.5289383, 47.4683144 ], + [ 7.5289678, 47.4683224 ], + [ 7.5291343, 47.4683676 ], + [ 7.5294442, 47.4684516 ], + [ 7.5297946, 47.4685467 ], + [ 7.5299415, 47.4685865 ], + [ 7.5300834, 47.4686257 ], + [ 7.530387, 47.4687095 ], + [ 7.5305362, 47.4687506 ], + [ 7.530591, 47.4687659 ], + [ 7.5306051, 47.4687698 ], + [ 7.5309468, 47.4688652 ], + [ 7.5311333000000005, 47.4689172 ], + [ 7.5312019, 47.4689219 ], + [ 7.5312424, 47.4689247 ], + [ 7.5326745, 47.4690302 ], + [ 7.5327138, 47.4690337 ], + [ 7.5326982000000005, 47.4691138 ], + [ 7.5333594, 47.4692638 ], + [ 7.533727, 47.4693478 ], + [ 7.5340974, 47.4694681 ], + [ 7.5341325, 47.4694798 ], + [ 7.534272, 47.4695258 ], + [ 7.5345805, 47.4696301 ], + [ 7.5346926, 47.469668 ], + [ 7.5347599, 47.4696907 ], + [ 7.534833, 47.4697155 ], + [ 7.5349569, 47.4697574 ], + [ 7.5351040000000005, 47.4698073 ], + [ 7.5352521, 47.4698574 ], + [ 7.535335, 47.4698855 ], + [ 7.5353543, 47.46989 ], + [ 7.5355336, 47.4699319 ], + [ 7.5357169, 47.4699748 ], + [ 7.5358051, 47.4699955 ], + [ 7.5358166, 47.470006 ], + [ 7.5358353000000005, 47.469995 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns328", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Fürstenstein", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Fürstenstein", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Fürstenstein", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Fürstenstein", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.2010611, 46.217262 ], + [ 6.201059, 46.2171207 ], + [ 6.2010462, 46.2169797 ], + [ 6.2010228, 46.2168393 ], + [ 6.2009889, 46.2167 ], + [ 6.2009445, 46.2165621 ], + [ 6.2008898, 46.2164261 ], + [ 6.2008249, 46.2162921 ], + [ 6.20075, 46.2161608 ], + [ 6.2006653, 46.2160323 ], + [ 6.200571, 46.2159071 ], + [ 6.2004674, 46.2157855 ], + [ 6.2003548, 46.2156678 ], + [ 6.2002334, 46.2155544 ], + [ 6.2001037, 46.2154455 ], + [ 6.199966, 46.2153415 ], + [ 6.1998206, 46.2152426 ], + [ 6.199668, 46.2151492 ], + [ 6.1995085, 46.2150614 ], + [ 6.1993426, 46.2149795 ], + [ 6.1991708, 46.2149038 ], + [ 6.1989935, 46.2148344 ], + [ 6.1988112, 46.2147716 ], + [ 6.1986244, 46.2147155 ], + [ 6.1984337, 46.2146662 ], + [ 6.1982395, 46.2146239 ], + [ 6.1980423, 46.2145888 ], + [ 6.1978428, 46.2145608 ], + [ 6.1976415, 46.2145402 ], + [ 6.1974389, 46.2145269 ], + [ 6.1972355, 46.2145209 ], + [ 6.197032, 46.2145224 ], + [ 6.1968289, 46.2145312 ], + [ 6.1966267, 46.2145475 ], + [ 6.196426, 46.214571 ], + [ 6.1962274, 46.2146018 ], + [ 6.1960314, 46.2146398 ], + [ 6.1958385, 46.2146848 ], + [ 6.1956492, 46.2147368 ], + [ 6.1954642, 46.2147956 ], + [ 6.1952838, 46.214861 ], + [ 6.1951086, 46.2149329 ], + [ 6.194939, 46.2150111 ], + [ 6.1947756, 46.2150953 ], + [ 6.1946188, 46.2151853 ], + [ 6.1944689, 46.215281 ], + [ 6.1943265, 46.2153819 ], + [ 6.1941919, 46.2154878 ], + [ 6.1940654, 46.2155986 ], + [ 6.1939475, 46.2157137 ], + [ 6.1938384, 46.215833 ], + [ 6.1937385, 46.2159561 ], + [ 6.1936479, 46.2160826 ], + [ 6.1935671, 46.2162123 ], + [ 6.1934961, 46.2163447 ], + [ 6.1934352, 46.2164795 ], + [ 6.1933845, 46.2166163 ], + [ 6.1933442, 46.2167548 ], + [ 6.1933145, 46.2168946 ], + [ 6.1932953, 46.2170352 ], + [ 6.1932867, 46.2171764 ], + [ 6.1932888, 46.2173177 ], + [ 6.1933015, 46.2174587 ], + [ 6.1933249, 46.217599 ], + [ 6.1933588, 46.2177383 ], + [ 6.1934031, 46.2178762 ], + [ 6.1934578, 46.2180123 ], + [ 6.1935227, 46.2181462 ], + [ 6.1935976, 46.2182776 ], + [ 6.1936823, 46.2184061 ], + [ 6.1937765, 46.2185313 ], + [ 6.1938801, 46.2186529 ], + [ 6.1939927, 46.2187706 ], + [ 6.194114, 46.2188841 ], + [ 6.1942438, 46.2189929 ], + [ 6.1943815, 46.219097 ], + [ 6.1945269, 46.2191958 ], + [ 6.1946796, 46.2192893 ], + [ 6.1948391, 46.219377 ], + [ 6.195005, 46.2194589 ], + [ 6.1951768, 46.2195346 ], + [ 6.1953541, 46.219604 ], + [ 6.1955364, 46.2196669 ], + [ 6.1957232, 46.219723 ], + [ 6.195914, 46.2197723 ], + [ 6.1961082, 46.2198145 ], + [ 6.1963054, 46.2198497 ], + [ 6.1965049, 46.2198776 ], + [ 6.1967063, 46.2198983 ], + [ 6.1969089, 46.2199116 ], + [ 6.1971123, 46.2199175 ], + [ 6.1973158, 46.2199161 ], + [ 6.197519, 46.2199072 ], + [ 6.1977211, 46.219891 ], + [ 6.1979219, 46.2198675 ], + [ 6.1981205, 46.2198367 ], + [ 6.1983166, 46.2197987 ], + [ 6.1985095, 46.2197537 ], + [ 6.1986987, 46.2197017 ], + [ 6.1988838, 46.2196429 ], + [ 6.1990642, 46.2195774 ], + [ 6.1992394, 46.2195055 ], + [ 6.199409, 46.2194273 ], + [ 6.1995724, 46.2193431 ], + [ 6.1997292999999996, 46.2192531 ], + [ 6.1998791, 46.2191574 ], + [ 6.2000215, 46.2190565 ], + [ 6.2001561, 46.2189505 ], + [ 6.2002825999999995, 46.2188398 ], + [ 6.2004005, 46.2187247 ], + [ 6.2005096, 46.2186054 ], + [ 6.2006095, 46.2184823 ], + [ 6.2007, 46.2183558 ], + [ 6.2007809, 46.2182261 ], + [ 6.2008519, 46.2180937 ], + [ 6.2009127, 46.2179589 ], + [ 6.2009634, 46.217822 ], + [ 6.2010036, 46.2176835 ], + [ 6.2010334, 46.2175438 ], + [ 6.2010526, 46.2174031 ], + [ 6.2010611, 46.217262 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE29", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5325474, 47.4952104 ], + [ 7.5325443, 47.4952551 ], + [ 7.5325378, 47.4953486 ], + [ 7.5325372999999995, 47.4953558 ], + [ 7.5330481, 47.4954229 ], + [ 7.5339902, 47.4956241 ], + [ 7.534097, 47.495642 ], + [ 7.5341875, 47.4956559 ], + [ 7.534126, 47.4955187 ], + [ 7.5341184, 47.4954909 ], + [ 7.5341062999999995, 47.4954618 ], + [ 7.5340678, 47.4954688 ], + [ 7.5340147, 47.495543 ], + [ 7.5339779, 47.4955326 ], + [ 7.5338799, 47.4954659 ], + [ 7.5337933, 47.4954069 ], + [ 7.5335104, 47.4953759 ], + [ 7.5333016, 47.4953334 ], + [ 7.5331344, 47.4953274 ], + [ 7.5328239, 47.4951837 ], + [ 7.5326374, 47.4952484 ], + [ 7.5325474, 47.4952104 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns037", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Schlifbach - Grossmattbach", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Schlifbach - Grossmattbach", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Schlifbach - Grossmattbach", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Schlifbach - Grossmattbach", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.5608473, 47.3023827 ], + [ 9.5608362, 47.3022416 ], + [ 9.5608143, 47.3021012 ], + [ 9.5607817, 47.3019617 ], + [ 9.5607383, 47.3018235 ], + [ 9.5606844, 47.3016871 ], + [ 9.56062, 47.3015528 ], + [ 9.5605455, 47.3014209 ], + [ 9.5604608, 47.3012919 ], + [ 9.5603664, 47.3011661 ], + [ 9.5602624, 47.3010438 ], + [ 9.5601491, 47.3009254 ], + [ 9.5600269, 47.3008112 ], + [ 9.5598961, 47.3007015 ], + [ 9.559757, 47.3005966 ], + [ 9.55961, 47.3004968 ], + [ 9.5594556, 47.3004023 ], + [ 9.5592941, 47.3003135 ], + [ 9.559126, 47.3002306 ], + [ 9.5589517, 47.3001538 ], + [ 9.5587718, 47.3000832 ], + [ 9.5585867, 47.3000192 ], + [ 9.5583969, 47.2999618 ], + [ 9.5582029, 47.2999113 ], + [ 9.5580054, 47.2998678 ], + [ 9.5578048, 47.2998313 ], + [ 9.5576016, 47.2998021 ], + [ 9.5573964, 47.2997801 ], + [ 9.557189900000001, 47.2997654 ], + [ 9.5569825, 47.2997582 ], + [ 9.5567748, 47.2997583 ], + [ 9.5565675, 47.2997658 ], + [ 9.556361, 47.2997807 ], + [ 9.5561559, 47.2998029 ], + [ 9.5559528, 47.2998324 ], + [ 9.5557522, 47.299869 ], + [ 9.5555548, 47.2999128 ], + [ 9.555361, 47.2999635 ], + [ 9.5551713, 47.3000211 ], + [ 9.5549864, 47.3000853 ], + [ 9.5548066, 47.3001561 ], + [ 9.5546325, 47.3002331 ], + [ 9.5544646, 47.3003162 ], + [ 9.5543033, 47.3004052 ], + [ 9.5541491, 47.3004998 ], + [ 9.5540024, 47.3005998 ], + [ 9.5538636, 47.3007049 ], + [ 9.553733, 47.3008147 ], + [ 9.553611, 47.3009291 ], + [ 9.5534981, 47.3010476 ], + [ 9.5533944, 47.30117 ], + [ 9.5533002, 47.3012959 ], + [ 9.5532159, 47.301425 ], + [ 9.5531417, 47.301557 ], + [ 9.5530776, 47.3016913 ], + [ 9.553024, 47.3018278 ], + [ 9.552980999999999, 47.301966 ], + [ 9.5529487, 47.3021056 ], + [ 9.5529271, 47.3022461 ], + [ 9.5529164, 47.3023872 ], + [ 9.5529166, 47.3025284 ], + [ 9.5529276, 47.3026695 ], + [ 9.5529495, 47.30281 ], + [ 9.5529821, 47.3029495 ], + [ 9.5530255, 47.3030876 ], + [ 9.5530794, 47.3032241 ], + [ 9.5531437, 47.3033584 ], + [ 9.5532183, 47.3034902 ], + [ 9.5533029, 47.3036192 ], + [ 9.5533973, 47.3037451 ], + [ 9.5535013, 47.3038674 ], + [ 9.5536146, 47.3039858 ], + [ 9.5537368, 47.3041 ], + [ 9.5538676, 47.3042097 ], + [ 9.5540067, 47.3043146 ], + [ 9.5541536, 47.3044144 ], + [ 9.5543081, 47.3045089 ], + [ 9.554469600000001, 47.3045977 ], + [ 9.5546377, 47.3046806 ], + [ 9.554812, 47.3047575 ], + [ 9.5549919, 47.304828 ], + [ 9.5551771, 47.3048921 ], + [ 9.5553669, 47.3049494 ], + [ 9.5555608, 47.3049999 ], + [ 9.5557584, 47.3050435 ], + [ 9.555959, 47.3050799 ], + [ 9.5561622, 47.3051092 ], + [ 9.5563674, 47.3051312 ], + [ 9.5565739, 47.3051458 ], + [ 9.5567814, 47.3051531 ], + [ 9.556989, 47.305153 ], + [ 9.5571964, 47.3051455 ], + [ 9.557403, 47.3051306 ], + [ 9.5576081, 47.3051084 ], + [ 9.5578112, 47.3050789 ], + [ 9.5580118, 47.3050422 ], + [ 9.5582092, 47.3049984 ], + [ 9.558403, 47.3049477 ], + [ 9.5585927, 47.3048901 ], + [ 9.5587777, 47.3048259 ], + [ 9.5589575, 47.3047552 ], + [ 9.5591315, 47.3046781 ], + [ 9.5592995, 47.304595 ], + [ 9.5594607, 47.304506 ], + [ 9.559615, 47.3044114 ], + [ 9.5597617, 47.3043114 ], + [ 9.5599005, 47.3042063 ], + [ 9.5600311, 47.3040965 ], + [ 9.560153, 47.3039821 ], + [ 9.560266, 47.3038636 ], + [ 9.5603697, 47.3037412 ], + [ 9.5604638, 47.3036152 ], + [ 9.5605481, 47.3034861 ], + [ 9.5606224, 47.3033542 ], + [ 9.5606864, 47.3032198 ], + [ 9.5607399, 47.3030833 ], + [ 9.5607829, 47.3029451 ], + [ 9.5608153, 47.3028056 ], + [ 9.5608368, 47.3026651 ], + [ 9.5608475, 47.302524 ], + [ 9.5608473, 47.3023827 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0103", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Rüthi", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Rüthi", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Rüthi", + "lang" : "it-CH" + }, + { + "text" : "Substation Rüthi", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4355068, 46.9402526 ], + [ 7.5093889, 46.9613887 ], + [ 7.5118205, 46.9609232 ], + [ 7.5150796, 46.9601712 ], + [ 7.5182766999999995, 46.9593033 ], + [ 7.5214029, 46.958322 ], + [ 7.5244497, 46.9572299 ], + [ 7.5274088, 46.9560301 ], + [ 7.5302719, 46.9547258 ], + [ 7.5330313, 46.9533206 ], + [ 7.5356793, 46.9518184 ], + [ 7.5382088, 46.9502233 ], + [ 7.5406127, 46.9485397 ], + [ 7.5428844999999995, 46.9467722 ], + [ 7.5557498, 46.9362146 ], + [ 7.5578824000000004, 46.9343678 ], + [ 7.5598708, 46.9324471 ], + [ 7.5617096, 46.9304577 ], + [ 7.5633938, 46.928405 ], + [ 7.5649187, 46.9262948 ], + [ 7.5662802, 46.9241327 ], + [ 7.5674746, 46.9219248 ], + [ 7.5684986, 46.9196771 ], + [ 7.5693494, 46.9173957 ], + [ 7.5700247, 46.915087 ], + [ 7.5705227, 46.9127571 ], + [ 7.5708421, 46.9104127 ], + [ 7.5709819, 46.9080599 ], + [ 7.5709419, 46.9057054 ], + [ 7.5707222, 46.9033556 ], + [ 7.5703233, 46.9010168 ], + [ 7.5697465, 46.8986955 ], + [ 7.5689931999999995, 46.8963982 ], + [ 7.5680657, 46.894131 ], + [ 7.5669664, 46.8919001 ], + [ 7.5656984, 46.8897117 ], + [ 7.5642652, 46.8875719 ], + [ 7.5626707, 46.8854863 ], + [ 7.5609193999999995, 46.8834608 ], + [ 7.5590159, 46.8815009 ], + [ 7.5569656, 46.8796119 ], + [ 7.5547740999999995, 46.8777991 ], + [ 7.5524474, 46.8760673 ], + [ 7.5499918, 46.8744214 ], + [ 7.5474142, 46.8728658 ], + [ 7.5447215, 46.8714047 ], + [ 7.5419211, 46.8700423 ], + [ 7.5390207, 46.8687821 ], + [ 7.5360283, 46.8676277 ], + [ 7.532952, 46.8665823 ], + [ 7.5298002, 46.8656485 ], + [ 7.5265816999999995, 46.8648292 ], + [ 7.523305, 46.8641263 ], + [ 7.5199794, 46.863542 ], + [ 7.5166137, 46.8630777 ], + [ 7.5132173, 46.8627348 ], + [ 7.5097995, 46.8625142 ], + [ 7.5063695, 46.8624165 ], + [ 7.5029367, 46.8624419 ], + [ 7.4995106, 46.8625904 ], + [ 7.4961003999999996, 46.8628616 ], + [ 7.4927156, 46.8632548 ], + [ 7.4893654, 46.8637688 ], + [ 7.4860589, 46.8644023 ], + [ 7.4828051, 46.8651535 ], + [ 7.4796131, 46.8660204 ], + [ 7.4764915, 46.8670006 ], + [ 7.4734488, 46.8680914 ], + [ 7.4704934, 46.8692898 ], + [ 7.4676334, 46.8705927 ], + [ 7.4648765, 46.8719963 ], + [ 7.4622305, 46.8734969 ], + [ 7.4597024, 46.8750903 ], + [ 7.4572992, 46.8767722 ], + [ 7.4550276, 46.8785381 ], + [ 7.4421562, 46.8890844 ], + [ 7.4400215, 46.890929 ], + [ 7.4380303, 46.8928477 ], + [ 7.4361882, 46.8948351 ], + [ 7.4345002000000004, 46.8968859 ], + [ 7.432971, 46.8989944 ], + [ 7.4316048, 46.9011549 ], + [ 7.4304053, 46.9033614 ], + [ 7.4293759, 46.9056079 ], + [ 7.4285193, 46.9078882 ], + [ 7.427838, 46.9101962 ], + [ 7.4273337999999995, 46.9125253 ], + [ 7.4270082, 46.9148694 ], + [ 7.426862, 46.917222 ], + [ 7.4268957, 46.9195765 ], + [ 7.4271092, 46.9219266 ], + [ 7.427502, 46.9242659 ], + [ 7.428073, 46.9265879 ], + [ 7.4288206, 46.9288861 ], + [ 7.4297429, 46.9311545 ], + [ 7.4308373, 46.9333866 ], + [ 7.4321008, 46.9355765 ], + [ 7.43353, 46.937718 ], + [ 7.435121, 46.9398053 ], + [ 7.4355068, 46.9402526 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZB001", + "country" : "CHE", + "name" : [ + { + "text" : "LSZB Bern-Belp 1", + "lang" : "de-CH" + }, + { + "text" : "LSZB Bern-Belp 1", + "lang" : "fr-CH" + }, + { + "text" : "LSZB Bern-Belp 1", + "lang" : "it-CH" + }, + { + "text" : "LSZB Bern-Belp 1", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Special Flight Office (SFO)", + "lang" : "de-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "fr-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "it-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "en-GB" + } + ], + "siteURL" : "https://skyguide.ch/services/special-flights", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.1478504, 46.167764 ], + [ 6.1487286, 46.1675135 ], + [ 6.1496554, 46.1669671 ], + [ 6.1497456, 46.1668942 ], + [ 6.1497782, 46.1668575 ], + [ 6.1499766, 46.1667363 ], + [ 6.150133, 46.1665955 ], + [ 6.1507166, 46.1658524 ], + [ 6.1507794, 46.1656187 ], + [ 6.1508294, 46.1655437 ], + [ 6.1508399, 46.1653938 ], + [ 6.1508591, 46.1653223 ], + [ 6.1523268, 46.1655427 ], + [ 6.1538178, 46.1653542 ], + [ 6.1550915, 46.1647836 ], + [ 6.155954, 46.1639178 ], + [ 6.1562739, 46.1628886 ], + [ 6.1560026, 46.1618526 ], + [ 6.1551815, 46.1609676 ], + [ 6.1539355, 46.1603684 ], + [ 6.1529015, 46.1602131 ], + [ 6.1526584, 46.1592845 ], + [ 6.1525533, 46.1591712 ], + [ 6.1525311, 46.1590865 ], + [ 6.1517101, 46.1582015 ], + [ 6.1504642, 46.1576022 ], + [ 6.1489831, 46.1573799 ], + [ 6.1482128, 46.1574772 ], + [ 6.1476851, 46.1572233 ], + [ 6.1462041, 46.1570009 ], + [ 6.1447133, 46.1571893 ], + [ 6.1434397, 46.1577597 ], + [ 6.1425771, 46.1586254 ], + [ 6.1422569, 46.1596546 ], + [ 6.1423427, 46.1599826 ], + [ 6.1420322, 46.1602943 ], + [ 6.141712, 46.1613235 ], + [ 6.141983, 46.1623595 ], + [ 6.1422089, 46.1626031 ], + [ 6.1419177, 46.1635394 ], + [ 6.1421887, 46.1645754 ], + [ 6.1422196, 46.1646087 ], + [ 6.1419505, 46.1654734 ], + [ 6.1422215, 46.1665094 ], + [ 6.1430425, 46.1673945 ], + [ 6.1442886, 46.1679939 ], + [ 6.1457699, 46.1682163 ], + [ 6.147261, 46.1680279 ], + [ 6.1478504, 46.167764 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-18", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.0936283, 46.150538 ], + [ 6.0934439, 46.1506858 ], + [ 6.0939778, 46.151268 ], + [ 6.094013, 46.1512936 ], + [ 6.0940172, 46.1512967 ], + [ 6.0941636, 46.151403 ], + [ 6.0946371, 46.1517469 ], + [ 6.0958776, 46.1523509 ], + [ 6.0973563, 46.1525791 ], + [ 6.0988481, 46.1523968 ], + [ 6.100126, 46.1518317 ], + [ 6.100147, 46.1518177 ], + [ 6.1002382, 46.1517571 ], + [ 6.1009746, 46.1510848 ], + [ 6.1013756, 46.1502872 ], + [ 6.1014022, 46.1494425 ], + [ 6.1010517, 46.1486335 ], + [ 6.1003584, 46.1479394 ], + [ 6.0997014, 46.1474629 ], + [ 6.0996695, 46.1474841 ], + [ 6.098991, 46.1470558 ], + [ 6.097803, 46.1467036 ], + [ 6.096772, 46.1466542 ], + [ 6.0957906, 46.1482694 ], + [ 6.0957825, 46.1482776 ], + [ 6.095442, 46.1486199 ], + [ 6.0949486, 46.1491162 ], + [ 6.0945562, 46.149343 ], + [ 6.0934709, 46.1499715 ], + [ 6.0936283, 46.150538 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-56", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.122189, 46.2239171 ], + [ 7.1225359, 46.2237668 ], + [ 7.1226022, 46.2236361 ], + [ 7.122519, 46.2234753 ], + [ 7.1222442, 46.2233518 ], + [ 7.1219947, 46.2233346 ], + [ 7.1216080999999996, 46.2232483 ], + [ 7.1213454, 46.2232385 ], + [ 7.1210539, 46.2231322 ], + [ 7.1207745, 46.2230846 ], + [ 7.1204792, 46.2228753 ], + [ 7.1199495, 46.2228033 ], + [ 7.1199207, 46.2225932 ], + [ 7.1198177, 46.2224292 ], + [ 7.1195977, 46.2222213 ], + [ 7.1193701, 46.2220858 ], + [ 7.1188706, 46.2219372 ], + [ 7.1191514, 46.2215542 ], + [ 7.1190232, 46.2214207 ], + [ 7.1189684, 46.2212338 ], + [ 7.1183179, 46.2208437 ], + [ 7.1180848, 46.2206322 ], + [ 7.1176702, 46.2200549 ], + [ 7.1175047, 46.2199456 ], + [ 7.1167676, 46.2196641 ], + [ 7.1149402, 46.2183736 ], + [ 7.115345, 46.2181217 ], + [ 7.1153222, 46.2179722 ], + [ 7.1156864, 46.2176871 ], + [ 7.1152845, 46.217441 ], + [ 7.1152259, 46.2172854 ], + [ 7.1149188, 46.2171025 ], + [ 7.1144277, 46.2169609 ], + [ 7.1139293, 46.2167366 ], + [ 7.1137403, 46.2164387 ], + [ 7.1134374, 46.2162712 ], + [ 7.1130977, 46.2162565 ], + [ 7.1127522, 46.2160503 ], + [ 7.1126746, 46.215813 ], + [ 7.1121837, 46.2154412 ], + [ 7.1119672, 46.2150833 ], + [ 7.1118306, 46.2149569 ], + [ 7.1116215, 46.2147745 ], + [ 7.1113747, 46.2146513 ], + [ 7.1113821, 46.2141502 ], + [ 7.1110911, 46.2139193 ], + [ 7.1106873, 46.213769 ], + [ 7.110214, 46.2137095 ], + [ 7.1097878, 46.2134324 ], + [ 7.1094748, 46.213165 ], + [ 7.1086437, 46.2127075 ], + [ 7.1086015, 46.2123445 ], + [ 7.1084349, 46.2122085 ], + [ 7.1082527, 46.2121159 ], + [ 7.107626, 46.2118312 ], + [ 7.1074103, 46.2117621 ], + [ 7.1066893, 46.2115975 ], + [ 7.1066845, 46.2114742 ], + [ 7.1062823, 46.2110198 ], + [ 7.1059022, 46.2109304 ], + [ 7.1056791, 46.210868 ], + [ 7.1047919, 46.2104831 ], + [ 7.1037707, 46.210262 ], + [ 7.1035857, 46.2101554 ], + [ 7.1033681, 46.2101211 ], + [ 7.1030136, 46.210181 ], + [ 7.1026616, 46.2099233 ], + [ 7.1021686, 46.2098164 ], + [ 7.1016564, 46.2096052 ], + [ 7.1013909, 46.2094308 ], + [ 7.1012256, 46.2092288 ], + [ 7.1011988, 46.2090319 ], + [ 7.1007808, 46.2088175 ], + [ 7.1007325, 46.2086483 ], + [ 7.1002302, 46.2083975 ], + [ 7.0998741, 46.2080653 ], + [ 7.0995945, 46.2078988 ], + [ 7.0985996, 46.2077449 ], + [ 7.0977401, 46.2078215 ], + [ 7.0966938, 46.207692 ], + [ 7.0962563, 46.2075392 ], + [ 7.0960534, 46.2074237 ], + [ 7.0955965, 46.2070704 ], + [ 7.0953786, 46.206914 ], + [ 7.0952893, 46.2066693 ], + [ 7.0950433, 46.2064748 ], + [ 7.0948968, 46.2062792 ], + [ 7.0947633, 46.2060663 ], + [ 7.094363, 46.2054857 ], + [ 7.0941192, 46.2053239 ], + [ 7.0936242, 46.204834 ], + [ 7.0933465, 46.2048214 ], + [ 7.0931577, 46.2045955 ], + [ 7.0929684, 46.2044571 ], + [ 7.0925806, 46.2042797 ], + [ 7.0923475, 46.2041414 ], + [ 7.0922802, 46.2040489 ], + [ 7.0921517, 46.2039002 ], + [ 7.0918506, 46.2036751 ], + [ 7.0914624, 46.2034653 ], + [ 7.0911616, 46.2032357 ], + [ 7.090781, 46.2030384 ], + [ 7.0906131, 46.2028561 ], + [ 7.0904804, 46.2027672 ], + [ 7.0900889, 46.2025381 ], + [ 7.0896749, 46.2025083 ], + [ 7.0894898, 46.2024367 ], + [ 7.0885602, 46.2017871 ], + [ 7.0884359, 46.2015881 ], + [ 7.0884333, 46.201588 ], + [ 7.0881152, 46.2015361 ], + [ 7.0871834, 46.2015057 ], + [ 7.0866062, 46.2014746 ], + [ 7.0859632, 46.2013939 ], + [ 7.0856688, 46.2012498 ], + [ 7.0854789, 46.2010791 ], + [ 7.0852063, 46.2009672 ], + [ 7.0840997, 46.2006578 ], + [ 7.0832372, 46.2005742 ], + [ 7.0828979, 46.2003304 ], + [ 7.0824063, 46.2001526 ], + [ 7.0819144, 46.1999225 ], + [ 7.0817166, 46.1997677 ], + [ 7.0811846, 46.1997832 ], + [ 7.0808128, 46.1996687 ], + [ 7.0805434, 46.1997871 ], + [ 7.0803914, 46.199704 ], + [ 7.0793151, 46.1995908 ], + [ 7.0790841, 46.1996892 ], + [ 7.0781862, 46.1996192 ], + [ 7.0780595, 46.19949 ], + [ 7.0777906999999995, 46.1991465 ], + [ 7.0769683, 46.1989674 ], + [ 7.0766981, 46.1989667 ], + [ 7.076444, 46.1990146 ], + [ 7.0764672, 46.1993903 ], + [ 7.0764601, 46.1993897 ], + [ 7.0764603, 46.1993937 ], + [ 7.0754943, 46.1993198 ], + [ 7.0753807, 46.1993882 ], + [ 7.0753751, 46.1993922 ], + [ 7.0753696, 46.1993949 ], + [ 7.0753685, 46.1993956 ], + [ 7.0750686, 46.1995436 ], + [ 7.0748892, 46.1996002 ], + [ 7.0747981, 46.1996198 ], + [ 7.074469, 46.1996344 ], + [ 7.0741941, 46.1996845 ], + [ 7.0739972, 46.199741 ], + [ 7.0738167, 46.1998 ], + [ 7.0737748, 46.1998305 ], + [ 7.0736899, 46.1999426 ], + [ 7.0735112, 46.2001184 ], + [ 7.0734762, 46.2001362 ], + [ 7.0734637, 46.2001426 ], + [ 7.0732408, 46.2001991 ], + [ 7.0729408, 46.2002513 ], + [ 7.0727705, 46.200456 ], + [ 7.0726271, 46.2005887 ], + [ 7.0726226, 46.2005897 ], + [ 7.0726195, 46.2005925 ], + [ 7.0724544, 46.2006283 ], + [ 7.072171, 46.2005979 ], + [ 7.0720968, 46.2006481 ], + [ 7.0720949, 46.200649 ], + [ 7.0720902, 46.2006523 ], + [ 7.0719607, 46.20071 ], + [ 7.0716697, 46.2008027 ], + [ 7.0714381, 46.2009204 ], + [ 7.0714318, 46.2009232 ], + [ 7.0714303, 46.200924 ], + [ 7.0712427, 46.2010111 ], + [ 7.0712018, 46.2010018 ], + [ 7.0710934, 46.2011342 ], + [ 7.070971, 46.2012229 ], + [ 7.0708488, 46.2012899 ], + [ 7.0706773, 46.2013632 ], + [ 7.0704735, 46.2014183 ], + [ 7.0702863, 46.2015184 ], + [ 7.0700666, 46.2016184 ], + [ 7.0699268, 46.2017925 ], + [ 7.0698364, 46.2019388 ], + [ 7.0698093, 46.202124 ], + [ 7.0697755, 46.2023263 ], + [ 7.0696846, 46.2025509 ], + [ 7.0696265, 46.2027082 ], + [ 7.0695194, 46.202832 ], + [ 7.0693154, 46.202932 ], + [ 7.0692331, 46.2030271 ], + [ 7.0692738, 46.2031289 ], + [ 7.0693536, 46.2032191 ], + [ 7.0695485, 46.203316 ], + [ 7.0697974, 46.2034914 ], + [ 7.0700965, 46.2037064 ], + [ 7.0703769, 46.2040114 ], + [ 7.0705788, 46.204237 ], + [ 7.070675, 46.2043785 ], + [ 7.0706743, 46.204473899999996 ], + [ 7.0706243, 46.2045924 ], + [ 7.070574, 46.2047497 ], + [ 7.0705159, 46.2049123 ], + [ 7.070481, 46.2050867 ], + [ 7.0704969, 46.2052217 ], + [ 7.0705283, 46.2053792 ], + [ 7.0706154, 46.2055199 ], + [ 7.070744, 46.2056669 ], + [ 7.0707106, 46.2058188 ], + [ 7.0706509, 46.206021 ], + [ 7.0706015, 46.206235 ], + [ 7.0706635, 46.2064547 ], + [ 7.070767, 46.2066691 ], + [ 7.0709047, 46.2067991 ], + [ 7.0710089, 46.2069173 ], + [ 7.0711295, 46.2070868 ], + [ 7.0712488, 46.2072617 ], + [ 7.0714264, 46.2074485 ], + [ 7.0715379, 46.2076234 ], + [ 7.0715768, 46.2078142 ], + [ 7.0715927, 46.2079555 ], + [ 7.071582, 46.2082028 ], + [ 7.0715219, 46.2084617 ], + [ 7.0714485, 46.2085901 ], + [ 7.0713585, 46.208669 ], + [ 7.0712115, 46.2087585 ], + [ 7.0711365, 46.2089264 ], + [ 7.0710615, 46.2090953 ], + [ 7.0710276, 46.2093255 ], + [ 7.070994, 46.2094945 ], + [ 7.0708624, 46.2096002 ], + [ 7.0707397, 46.2097464 ], + [ 7.0706807, 46.2100386 ], + [ 7.0706618, 46.2103363 ], + [ 7.0708484, 46.2103378 ], + [ 7.071035, 46.2103267 ], + [ 7.0712214, 46.2103669 ], + [ 7.0714645, 46.2104307 ], + [ 7.0717064, 46.2104989 ], + [ 7.0719987, 46.2105736 ], + [ 7.0722572, 46.2106644 ], + [ 7.0725402, 46.2107895 ], + [ 7.0727258, 46.2109367 ], + [ 7.0729915, 46.2111067 ], + [ 7.0732259, 46.211327 ], + [ 7.0733294, 46.2115468 ], + [ 7.0734826, 46.2116939 ], + [ 7.0736346, 46.2118294 ], + [ 7.0737721, 46.2119935 ], + [ 7.0739329, 46.212174 ], + [ 7.0741494, 46.2123555 ], + [ 7.0743196, 46.2124793 ], + [ 7.0745622, 46.2126267 ], + [ 7.0747477, 46.212791 ], + [ 7.0750286, 46.2130285 ], + [ 7.0752462, 46.2132379 ], + [ 7.0754555, 46.2135138 ], + [ 7.0755825, 46.2137059 ], + [ 7.075767, 46.2140276 ], + [ 7.0758529, 46.2143652 ], + [ 7.0759313, 46.2146416 ], + [ 7.0759296, 46.2149007 ], + [ 7.0760265, 46.2149514 ], + [ 7.076275, 46.2151888 ], + [ 7.0763801, 46.2153636 ], + [ 7.0764264, 46.2156004 ], + [ 7.0764894, 46.2158704 ], + [ 7.0765258, 46.2162421 ], + [ 7.0766212, 46.2165123 ], + [ 7.0767895, 46.2167323 ], + [ 7.0770247, 46.2168293 ], + [ 7.0773005, 46.2168698 ], + [ 7.077153, 46.2170213 ], + [ 7.0769886, 46.2171953 ], + [ 7.076881, 46.2173974 ], + [ 7.0767981, 46.2175878 ], + [ 7.0767396, 46.2178125 ], + [ 7.0766811, 46.2180264 ], + [ 7.0767369, 46.2182065 ], + [ 7.0768569, 46.2182915 ], + [ 7.0770273, 46.2183883 ], + [ 7.0770824, 46.2184892 ], + [ 7.0770892, 46.2186358 ], + [ 7.0770553, 46.2188606 ], + [ 7.0770291, 46.2190854 ], + [ 7.076954, 46.2192705 ], + [ 7.0768635, 46.2194393 ], + [ 7.0768055, 46.219591199999996 ], + [ 7.0768278, 46.2197433 ], + [ 7.076778, 46.2198268 ], + [ 7.0767291, 46.2199562 ], + [ 7.0765723, 46.2201527 ], + [ 7.0764815, 46.2203602 ], + [ 7.0763816, 46.2205793 ], + [ 7.0763076, 46.2207869 ], + [ 7.0763135, 46.2210685 ], + [ 7.0763432, 46.2212773 ], + [ 7.0763266, 46.2214284 ], + [ 7.0762674, 46.2215694 ], + [ 7.0762016, 46.2217203 ], + [ 7.0761028, 46.2219512 ], + [ 7.0760276, 46.222148 ], + [ 7.0760019, 46.2223161 ], + [ 7.0760486, 46.2225078 ], + [ 7.0761122, 46.2226772 ], + [ 7.0762086, 46.2227953 ], + [ 7.0761502, 46.2230029 ], + [ 7.0761491, 46.2231775 ], + [ 7.0761545, 46.2233295 ], + [ 7.0762504, 46.2235331 ], + [ 7.0763952, 46.2237756 ], + [ 7.0764913, 46.2239504 ], + [ 7.0765553, 46.2240684 ], + [ 7.076578, 46.2241639 ], + [ 7.0765203, 46.2242653 ], + [ 7.07643, 46.2243883 ], + [ 7.0763471, 46.2245796 ], + [ 7.0762964, 46.2247873 ], + [ 7.0763122, 46.2249564 ], + [ 7.0764241, 46.2250809 ], + [ 7.0766255, 46.2251994 ], + [ 7.0767466, 46.2253131 ], + [ 7.076892, 46.225471 ], + [ 7.0770606, 46.2256407 ], + [ 7.0771896, 46.2257419 ], + [ 7.0773514, 46.2257712 ], + [ 7.0775944, 46.2258682 ], + [ 7.0779009, 46.2259708 ], + [ 7.0781128, 46.2260786 ], + [ 7.0781433, 46.2261569 ], + [ 7.0781421, 46.2263485 ], + [ 7.0782634, 46.2264281 ], + [ 7.0784726, 46.2265466 ], + [ 7.0787154, 46.2266661 ], + [ 7.0787796, 46.2267617 ], + [ 7.0788835, 46.2269311 ], + [ 7.0790038, 46.2271681 ], + [ 7.0790824, 46.2274328 ], + [ 7.0791694, 46.2276022 ], + [ 7.0792751, 46.2276925 ], + [ 7.0793887, 46.2277603 ], + [ 7.0795007, 46.2278731 ], + [ 7.0796225, 46.2278798 ], + [ 7.0797023, 46.2279646 ], + [ 7.0797668, 46.2280044 ], + [ 7.0798561, 46.2280326 ], + [ 7.0799206, 46.2280778 ], + [ 7.0799927, 46.2281572 ], + [ 7.0800658, 46.2282699 ], + [ 7.0802021, 46.2284277 ], + [ 7.0802911, 46.2285072 ], + [ 7.0803626, 46.2286594 ], + [ 7.0804267, 46.2287667 ], + [ 7.0805314, 46.228812 ], + [ 7.0806527, 46.2288915 ], + [ 7.0808461, 46.2290496 ], + [ 7.0810232, 46.2291239 ], + [ 7.0811709, 46.2291352 ], + [ 7.0813644, 46.2292824 ], + [ 7.0814445, 46.2293222 ], + [ 7.0817123, 46.2293905 ], + [ 7.0821003, 46.2295222 ], + [ 7.0822373, 46.2295955 ], + [ 7.0824152, 46.2297319 ], + [ 7.0825533, 46.2298223 ], + [ 7.0827469, 46.2299578 ], + [ 7.0828759, 46.2300428 ], + [ 7.0830125, 46.2301728 ], + [ 7.0831736, 46.2303091 ], + [ 7.0832946, 46.230439 ], + [ 7.083431, 46.2306023 ], + [ 7.0835518, 46.2307547 ], + [ 7.0836961, 46.2308964 ], + [ 7.0838816, 46.2310598 ], + [ 7.0841072, 46.2312584 ], + [ 7.0844696, 46.2315411 ], + [ 7.0845416, 46.2316313 ], + [ 7.0845503, 46.2316934 ], + [ 7.0845329, 46.2317716 ], + [ 7.0844753, 46.2318506 ], + [ 7.0843602, 46.2320077 ], + [ 7.084033, 46.2322927 ], + [ 7.083755, 46.2325842 ], + [ 7.0836307, 46.2327583 ], + [ 7.0836221, 46.2328815 ], + [ 7.0836447, 46.2330057 ], + [ 7.083676, 46.2331632 ], + [ 7.0837969, 46.2333157 ], + [ 7.0839179, 46.2334519 ], + [ 7.0840946, 46.2335757 ], + [ 7.0844418, 46.2338196 ], + [ 7.0846106, 46.2339668 ], + [ 7.0848056, 46.2340799 ], + [ 7.0849589, 46.2342324 ], + [ 7.0850787, 46.2343452 ], + [ 7.0852396, 46.2345148 ], + [ 7.085393, 46.2346565 ], + [ 7.0855617, 46.2348316 ], + [ 7.085658, 46.2349722 ], + [ 7.08577, 46.2350913 ], + [ 7.0859401, 46.2352493 ], + [ 7.0860766, 46.2353792 ], + [ 7.0862949, 46.2354987 ], + [ 7.0864565, 46.2355783 ], + [ 7.0866997, 46.2356573 ], + [ 7.086926, 46.2357372 ], + [ 7.0872094, 46.235811 ], + [ 7.087234, 46.2358173 ], + [ 7.087525, 46.2359253 ], + [ 7.0876466, 46.2359652 ], + [ 7.0877679, 46.2360565 ], + [ 7.0879782, 46.2362146 ], + [ 7.0882684, 46.2364296 ], + [ 7.0885188, 46.2365995 ], + [ 7.088777, 46.2367748 ], + [ 7.0890122, 46.2368943 ], + [ 7.0892937, 46.2370642 ], + [ 7.0894876, 46.2371494 ], + [ 7.0897303, 46.2373022 ], + [ 7.0899484, 46.2374549 ], + [ 7.0901833, 46.2376247 ], + [ 7.0907081, 46.2378575 ], + [ 7.0908867, 46.2379148 ], + [ 7.0910485, 46.2379441 ], + [ 7.0912598, 46.2379555 ], + [ 7.091406, 46.2379901 ], + [ 7.0914212, 46.2380522 ], + [ 7.0914052, 46.2381251 ], + [ 7.091363, 46.2382266 ], + [ 7.0913452, 46.2383786 ], + [ 7.0913118, 46.2385296 ], + [ 7.0912691, 46.2387211 ], + [ 7.0912928, 46.2388732 ], + [ 7.091388, 46.2389913 ], + [ 7.091501, 46.23915 ], + [ 7.0915804, 46.2393022 ], + [ 7.0917016, 46.2394151 ], + [ 7.0918401, 46.2394497 ], + [ 7.0920098, 46.2394727 ], + [ 7.092115, 46.2396358 ], + [ 7.0922027, 46.2397153 ], + [ 7.0922916, 46.2398001 ], + [ 7.0924283, 46.2399184 ], + [ 7.0925895, 46.2400547 ], + [ 7.092695, 46.2401675 ], + [ 7.0927825, 46.2402802 ], + [ 7.0929201, 46.2404497 ], + [ 7.0931206, 46.2407211 ], + [ 7.0933536, 46.2409863 ], + [ 7.0935545, 46.2411947 ], + [ 7.0938049, 46.2413763 ], + [ 7.093991, 46.2414785 ], + [ 7.0941927, 46.2415637 ], + [ 7.0944114, 46.241621 ], + [ 7.0945406, 46.2416943 ], + [ 7.0945726, 46.2417618 ], + [ 7.0946214, 46.2418295 ], + [ 7.0946515, 46.2419933 ], + [ 7.0947241, 46.2421905 ], + [ 7.0947964, 46.2422528 ], + [ 7.0948765, 46.2422926 ], + [ 7.0949331, 46.2423603 ], + [ 7.0950542, 46.2424785 ], + [ 7.0951768, 46.242361 ], + [ 7.0953063, 46.2423839 ], + [ 7.0954188, 46.2426433 ], + [ 7.0955663, 46.2424863 ], + [ 7.0958362, 46.2422515 ], + [ 7.0958918, 46.2422741 ], + [ 7.0959483, 46.2423526 ], + [ 7.0961298, 46.2429666 ], + [ 7.0962346, 46.2432089 ], + [ 7.0963294, 46.2434008 ], + [ 7.0964013, 46.2435027 ], + [ 7.0965221, 46.243683 ], + [ 7.0966015, 46.2438352 ], + [ 7.0966649, 46.2440549 ], + [ 7.0967116, 46.2442638 ], + [ 7.0967602, 46.2443647 ], + [ 7.0968503, 46.2442642 ], + [ 7.0969625, 46.2443662 ], + [ 7.0970694, 46.2442702 ], + [ 7.0972137, 46.2444173 ], + [ 7.0972547, 46.2444912 ], + [ 7.0972776, 46.2445695 ], + [ 7.0973157, 46.2449016 ], + [ 7.0975033, 46.244751 ], + [ 7.0975598, 46.2448358 ], + [ 7.0977298, 46.2448192 ], + [ 7.097711, 46.2451232 ], + [ 7.0978988, 46.2451516 ], + [ 7.0978802, 46.2454277 ], + [ 7.0980994, 46.245423 ], + [ 7.0981717, 46.2454682 ], + [ 7.0981128, 46.2457658 ], + [ 7.0983246, 46.2456999 ], + [ 7.0983786, 46.2459807 ], + [ 7.0986798, 46.2459087 ], + [ 7.0985706, 46.2463699 ], + [ 7.0985366, 46.2464094 ], + [ 7.0984066, 46.2464701 ], + [ 7.0983245, 46.2465437 ], + [ 7.0983566, 46.2465941 ], + [ 7.0984305, 46.2465943 ], + [ 7.0985449, 46.2465443 ], + [ 7.0986579, 46.2465114 ], + [ 7.0987645, 46.2464604 ], + [ 7.0989593, 46.2464106 ], + [ 7.0991306, 46.2463896 ], + [ 7.0993173, 46.2463955 ], + [ 7.099187, 46.2464959 ], + [ 7.0990232, 46.2465691 ], + [ 7.0988111, 46.2466801 ], + [ 7.0987532, 46.2468148 ], + [ 7.0986951, 46.2469838 ], + [ 7.0986541, 46.2471132 ], + [ 7.0989122, 46.2473056 ], + [ 7.0989269, 46.2474459 ], + [ 7.0989016, 46.2475475 ], + [ 7.0988113, 46.2476876 ], + [ 7.0990127, 46.2478231 ], + [ 7.0991096, 46.2478855 ], + [ 7.0992232, 46.2479704 ], + [ 7.0993431, 46.2480724 ], + [ 7.0994242, 46.2481626 ], + [ 7.0995533, 46.2482646 ], + [ 7.0996421, 46.2483719 ], + [ 7.0996893, 46.2484845 ], + [ 7.0997286, 46.2486367 ], + [ 7.0998002, 46.2487889 ], + [ 7.0998566, 46.2489069 ], + [ 7.1000009, 46.2490486 ], + [ 7.1001624, 46.249139 ], + [ 7.1003411, 46.2491738 ], + [ 7.1006016, 46.2492024 ], + [ 7.1007711, 46.2492596 ], + [ 7.1009, 46.2493787 ], + [ 7.1011182, 46.2495314 ], + [ 7.1012877, 46.2495886 ], + [ 7.1013117, 46.2496957 ], + [ 7.1013683, 46.2497742 ], + [ 7.1014975, 46.249842 ], + [ 7.1017083, 46.2499335 ], + [ 7.101918, 46.2499845 ], + [ 7.102146, 46.2500311 ], + [ 7.1022179, 46.2501491 ], + [ 7.1023299, 46.2502736 ], + [ 7.1024508, 46.2504314 ], + [ 7.1025877, 46.250528 ], + [ 7.1027262, 46.2505617 ], + [ 7.1028725, 46.2506018 ], + [ 7.1029769, 46.2506983 ], + [ 7.1030243, 46.2507938 ], + [ 7.1031207, 46.2509353 ], + [ 7.1032495, 46.2510707 ], + [ 7.103468, 46.2511838 ], + [ 7.1036866, 46.2512582 ], + [ 7.1039224, 46.2513038 ], + [ 7.1041736, 46.2513559 ], + [ 7.1044175, 46.2513458 ], + [ 7.104572, 46.2513121 ], + [ 7.104685, 46.2512737 ], + [ 7.1048491, 46.2511618 ], + [ 7.1050781, 46.2510329 ], + [ 7.1052982, 46.2508878 ], + [ 7.1054703, 46.2507309 ], + [ 7.1056179, 46.2505568 ], + [ 7.1058124, 46.2505466 ], + [ 7.1061048, 46.2506662 ], + [ 7.106354, 46.2508298 ], + [ 7.1063246, 46.2505544 ], + [ 7.1063255, 46.2504141 ], + [ 7.1069882, 46.25081 ], + [ 7.1070219, 46.2506023 ], + [ 7.1070641, 46.2504954 ], + [ 7.1072582, 46.2505527 ], + [ 7.1074599, 46.2506603 ], + [ 7.1074839, 46.250762 ], + [ 7.1075404, 46.2508576 ], + [ 7.1076522, 46.2510153 ], + [ 7.1077487, 46.2511397 ], + [ 7.1078452, 46.2512579 ], + [ 7.1079909, 46.2514049 ], + [ 7.1080876, 46.2514898 ], + [ 7.1082564, 46.2516648 ], + [ 7.1082884, 46.2517269 ], + [ 7.1082461, 46.2518671 ], + [ 7.1081886, 46.2519407 ], + [ 7.1081231, 46.2520467 ], + [ 7.1080411, 46.2521031 ], + [ 7.1079597, 46.2522549 ], + [ 7.1079328, 46.2524177 ], + [ 7.1080212, 46.2525978 ], + [ 7.1082327, 46.2525823 ], + [ 7.1085417, 46.252515700000004 ], + [ 7.1087044, 46.2524208 ], + [ 7.1087635, 46.2522968 ], + [ 7.1089577, 46.2523433 ], + [ 7.1090946, 46.2524337 ], + [ 7.1092638, 46.2525466 ], + [ 7.1093769, 46.2527052 ], + [ 7.1093684, 46.2528339 ], + [ 7.109334, 46.2529408 ], + [ 7.1093329, 46.2531207 ], + [ 7.1093319, 46.2532844 ], + [ 7.1094037, 46.2534304 ], + [ 7.1093214, 46.2535318 ], + [ 7.1092222, 46.2536323 ], + [ 7.1090684, 46.2537613 ], + [ 7.1088794, 46.2539182 ], + [ 7.1086995, 46.2540697 ], + [ 7.1086339, 46.2541982 ], + [ 7.1084452, 46.2543101 ], + [ 7.1079915, 46.2542862 ], + [ 7.1079414, 46.2544093 ], + [ 7.1078748, 46.254482 ], + [ 7.1076646, 46.2545093 ], + [ 7.1073712, 46.2545534 ], + [ 7.1069497, 46.2545629 ], + [ 7.1066162, 46.2546069 ], + [ 7.1063132, 46.2547464 ], + [ 7.1061182, 46.2548241 ], + [ 7.1057939, 46.2548393 ], + [ 7.1053958, 46.2548381 ], + [ 7.1050546, 46.2548587 ], + [ 7.1046948, 46.2549476 ], + [ 7.1043456, 46.2550023 ], + [ 7.1038902, 46.2550451 ], + [ 7.103469, 46.2550042 ], + [ 7.1034611, 46.2550159 ], + [ 7.1030116, 46.2553681 ], + [ 7.1026857, 46.2554175 ], + [ 7.1022379, 46.255489 ], + [ 7.1017914, 46.2555489 ], + [ 7.1013515, 46.2555979 ], + [ 7.1009931, 46.2556805 ], + [ 7.100644, 46.2557181 ], + [ 7.1003257, 46.2558017 ], + [ 7.0999607, 46.2559068 ], + [ 7.0996504, 46.2559508 ], + [ 7.0993417, 46.2559661 ], + [ 7.0993158, 46.256163 ], + [ 7.099258, 46.2562861 ], + [ 7.0992246, 46.2564443 ], + [ 7.0991586, 46.2566348 ], + [ 7.0990735, 46.2569665 ], + [ 7.0990551, 46.2572084 ], + [ 7.0990309, 46.2573487 ], + [ 7.0990445, 46.257445 ], + [ 7.0990855, 46.2575288 ], + [ 7.0991498, 46.2576198 ], + [ 7.0992217, 46.2577271 ], + [ 7.0993105, 46.2578506 ], + [ 7.0994146, 46.2579922 ], + [ 7.0995029, 46.2581894 ], + [ 7.0996146, 46.2583589 ], + [ 7.0997607, 46.2584439 ], + [ 7.0998732, 46.2584946 ], + [ 7.1000518, 46.2585518 ], + [ 7.1001885, 46.2586764 ], + [ 7.1002766, 46.2589015 ], + [ 7.1002985, 46.2591211 ], + [ 7.1002732, 46.2592334 ], + [ 7.1002951, 46.2594701 ], + [ 7.100311, 46.2596159 ], + [ 7.100375, 46.259751 ], + [ 7.1005272, 46.259881 ], + [ 7.1006239, 46.2599775 ], + [ 7.1008342, 46.2601527 ], + [ 7.1011172, 46.2603227 ], + [ 7.1013365, 46.2603071 ], + [ 7.1015881, 46.2603025 ], + [ 7.1019462, 46.2602757 ], + [ 7.1020678, 46.2603327 ], + [ 7.1021644, 46.2604454 ], + [ 7.1022438, 46.2606031 ], + [ 7.102308, 46.2607103 ], + [ 7.1022105, 46.2607496 ], + [ 7.1020067, 46.2607706 ], + [ 7.1020155, 46.2608102 ], + [ 7.1020707, 46.2609003 ], + [ 7.10211, 46.2610579 ], + [ 7.1021583, 46.26121 ], + [ 7.1021071, 46.2613061 ], + [ 7.1023342, 46.2615038 ], + [ 7.1019513, 46.2615468 ], + [ 7.101991, 46.2616314 ], + [ 7.1018931, 46.2617265 ], + [ 7.1021977, 46.2621835 ], + [ 7.1018964, 46.2622447 ], + [ 7.1020569, 46.2625096 ], + [ 7.1018712, 46.2625369 ], + [ 7.1016675, 46.2625471 ], + [ 7.1014885, 46.2625583 ], + [ 7.1012363, 46.2626412 ], + [ 7.1010972, 46.2626966 ], + [ 7.1010072, 46.2627754 ], + [ 7.1009739, 46.2629157 ], + [ 7.1009732, 46.2630398 ], + [ 7.1010354, 46.2632595 ], + [ 7.1011237, 46.2634514 ], + [ 7.1012203, 46.2635524 ], + [ 7.1013251, 46.2635923 ], + [ 7.1014884, 46.2636099 ], + [ 7.1016304, 46.2639261 ], + [ 7.1016868, 46.2640387 ], + [ 7.1017508, 46.2641684 ], + [ 7.1017995, 46.2642693 ], + [ 7.1018795, 46.2643379 ], + [ 7.101993, 46.2644336 ], + [ 7.1020804, 46.2645634 ], + [ 7.1022902, 46.2648231 ], + [ 7.1021511, 46.2648785 ], + [ 7.1020212, 46.2649123 ], + [ 7.1018499, 46.2649279 ], + [ 7.1016877, 46.2649329 ], + [ 7.1015334, 46.2649324 ], + [ 7.1012481, 46.2649252 ], + [ 7.1009654, 46.2649073 ], + [ 7.1006478, 46.2648893 ], + [ 7.100356, 46.2648821 ], + [ 7.1001524, 46.2648644 ], + [ 7.0999905, 46.264836 ], + [ 7.0998287, 46.2647843 ], + [ 7.0996497, 46.2647891 ], + [ 7.0995029, 46.2648282 ], + [ 7.0993575, 46.2648449 ], + [ 7.0991943, 46.2648048 ], + [ 7.0989851, 46.2646522 ], + [ 7.0989103, 46.2647923 ], + [ 7.0989092, 46.2649722 ], + [ 7.0988121, 46.2649494 ], + [ 7.0985762, 46.2649145 ], + [ 7.0983322, 46.2649417 ], + [ 7.0982747, 46.2650144 ], + [ 7.0983223, 46.2650766 ], + [ 7.098428, 46.2651722 ], + [ 7.098216, 46.2652787 ], + [ 7.0986451, 46.2653033 ], + [ 7.0983767, 46.2654932 ], + [ 7.0986022, 46.2657413 ], + [ 7.0983816, 46.2657523 ], + [ 7.0982514, 46.2658248 ], + [ 7.0981046, 46.265863 ], + [ 7.0977958, 46.2658792 ], + [ 7.09782, 46.2659467 ], + [ 7.0979585, 46.2660038 ], + [ 7.0980878, 46.26606 ], + [ 7.0983145, 46.2661066 ], + [ 7.0984935, 46.2661125 ], + [ 7.0985904, 46.2661749 ], + [ 7.0985251, 46.2662367 ], + [ 7.0984262, 46.2662868 ], + [ 7.0982483, 46.2663196 ], + [ 7.0980441, 46.2664089 ], + [ 7.0981561, 46.2665559 ], + [ 7.0982529, 46.2666182 ], + [ 7.0983747, 46.2666411 ], + [ 7.0985444, 46.2666866 ], + [ 7.0987476, 46.2667547 ], + [ 7.0988766, 46.2668567 ], + [ 7.0989578, 46.2669469 ], + [ 7.0996475, 46.268874 ], + [ 7.0997101, 46.2692233 ], + [ 7.0996511, 46.2693355 ], + [ 7.0995701, 46.2694253 ], + [ 7.0993829999999996, 46.2694751 ], + [ 7.0992362, 46.2695142 ], + [ 7.0990177, 46.2693948 ], + [ 7.098799, 46.269315 ], + [ 7.0987592, 46.269242 ], + [ 7.0986157, 46.2689654 ], + [ 7.0984845, 46.2689875 ], + [ 7.0982728999999996, 46.2690201 ], + [ 7.0979884, 46.2690813 ], + [ 7.0976947, 46.2691758 ], + [ 7.0973204, 46.2692862 ], + [ 7.096994, 46.2694202 ], + [ 7.0967494, 46.2695265 ], + [ 7.0964727, 46.2696039 ], + [ 7.0962935, 46.2696196 ], + [ 7.0962761, 46.2697095 ], + [ 7.0963726, 46.2698339 ], + [ 7.0964137, 46.2698961 ], + [ 7.0951028, 46.2702222 ], + [ 7.0948509, 46.2702718 ], + [ 7.0946059, 46.2702369 ], + [ 7.0942246, 46.2702241 ], + [ 7.0938914, 46.2702059 ], + [ 7.0935825, 46.2702329 ], + [ 7.0933554, 46.270243 ], + [ 7.0931115, 46.270253 ], + [ 7.0930215, 46.2703202 ], + [ 7.0930405, 46.2703959 ], + [ 7.0931777, 46.2704484 ], + [ 7.0934042, 46.2705274 ], + [ 7.0936311, 46.2705479 ], + [ 7.0937719, 46.2706275 ], + [ 7.0938286, 46.2706861 ], + [ 7.0938278, 46.2708247 ], + [ 7.0938557, 46.2709228 ], + [ 7.0940094, 46.2710267 ], + [ 7.0943081, 46.2711797 ], + [ 7.0946757, 46.2713049 ], + [ 7.0949667, 46.2714326 ], + [ 7.0953822, 46.2715769 ], + [ 7.0957796, 46.2717158 ], + [ 7.0961759, 46.271815 ], + [ 7.0964621, 46.2718861 ], + [ 7.096817, 46.2719771 ], + [ 7.0970214, 46.2720677 ], + [ 7.0971282, 46.272202 ], + [ 7.0972505, 46.2723499 ], + [ 7.0974197, 46.2724683 ], + [ 7.0978171, 46.2726071 ], + [ 7.0980989, 46.2727654 ], + [ 7.0984957, 46.2730023 ], + [ 7.0987772, 46.2732002 ], + [ 7.0990602, 46.2733782 ], + [ 7.0993428, 46.2736148 ], + [ 7.0996133, 46.2739259 ], + [ 7.1001602, 46.2744241 ], + [ 7.1004142, 46.2746813 ], + [ 7.1006113, 46.2748978 ], + [ 7.1007249, 46.2749971 ], + [ 7.100837, 46.2751152 ], + [ 7.1009507, 46.2751938 ], + [ 7.1011202, 46.2752537 ], + [ 7.1012902, 46.2752542 ], + [ 7.1014884, 46.2752944 ], + [ 7.1018007, 46.2753538 ], + [ 7.1020848, 46.2753547 ], + [ 7.1024805, 46.2753558 ], + [ 7.1027984, 46.2753352 ], + [ 7.1032158, 46.275394 ], + [ 7.1035398, 46.2754516 ], + [ 7.1038015, 46.2755019 ], + [ 7.104075, 46.275536 ], + [ 7.1044328, 46.2755865 ], + [ 7.1048341, 46.2757173 ], + [ 7.1051747, 46.2758163 ], + [ 7.1053157, 46.2758761 ], + [ 7.1054012, 46.2758962 ], + [ 7.1054854, 46.2759162 ], + [ 7.1055709, 46.2759362 ], + [ 7.1056163, 46.2759427 ], + [ 7.1056837, 46.2759564 ], + [ 7.1057186, 46.2759691 ], + [ 7.1057974999999995, 46.2760152 ], + [ 7.1058142, 46.2760458 ], + [ 7.1058139, 46.2760818 ], + [ 7.1057955, 46.2761258 ], + [ 7.1057395, 46.276158 ], + [ 7.1056474, 46.2761614 ], + [ 7.1055916, 46.2761639 ], + [ 7.1054437, 46.2761688 ], + [ 7.1051729, 46.2761123 ], + [ 7.1049177, 46.2760521 ], + [ 7.1045251, 46.2759718 ], + [ 7.1041205, 46.2759409 ], + [ 7.1038585, 46.2759321 ], + [ 7.103642, 46.2759179 ], + [ 7.1034202, 46.2759011 ], + [ 7.1031775, 46.2759138 ], + [ 7.1029881, 46.2759133 ], + [ 7.1028597, 46.2759183 ], + [ 7.1027869, 46.2759442 ], + [ 7.1027944, 46.2759892 ], + [ 7.1028591, 46.2760118 ], + [ 7.1029304, 46.2760265 ], + [ 7.1030731, 46.2760269 ], + [ 7.1033284, 46.2760672 ], + [ 7.1036395, 46.2761077 ], + [ 7.1038391, 46.2761398 ], + [ 7.1040334, 46.2761755 ], + [ 7.1042782, 46.2762401 ], + [ 7.1045461, 46.2763461 ], + [ 7.1047167, 46.2764645 ], + [ 7.1048292, 46.2765242 ], + [ 7.104891, 46.2765918 ], + [ 7.1050007, 46.2766785 ], + [ 7.1051415, 46.2767797 ], + [ 7.1052864, 46.276853 ], + [ 7.1054572, 46.2769299 ], + [ 7.1056927, 46.2770233 ], + [ 7.1058777, 46.2771075 ], + [ 7.1060939, 46.2771882 ], + [ 7.1062722, 46.2772958 ], + [ 7.1063846, 46.2773743 ], + [ 7.1065266, 46.2774935 ], + [ 7.1066752, 46.2775866 ], + [ 7.1068173, 46.277695 ], + [ 7.1069128, 46.277778 ], + [ 7.1070625, 46.277908 ], + [ 7.1071982, 46.2779893 ], + [ 7.1073998, 46.2781222 ], + [ 7.1076377, 46.2782551 ], + [ 7.1077979, 46.2783626 ], + [ 7.108081, 46.2785209 ], + [ 7.1084206, 46.2785813 ], + [ 7.1089597, 46.2786809 ], + [ 7.1097808, 46.278919 ], + [ 7.1104613, 46.2790199 ], + [ 7.110942, 46.2791194 ], + [ 7.111425, 46.2792755 ], + [ 7.1120204, 46.2795093 ], + [ 7.1124722, 46.2796752 ], + [ 7.1128973, 46.2797547 ], + [ 7.1131238, 46.2798345 ], + [ 7.1132361, 46.2799329 ], + [ 7.1134067, 46.2800512 ], + [ 7.1135437, 46.2801254 ], + [ 7.1137934, 46.2802422 ], + [ 7.1138998, 46.2802425 ], + [ 7.1140439, 46.2802348 ], + [ 7.1141994, 46.2802703 ], + [ 7.1142587, 46.280318199999996 ], + [ 7.1143685, 46.2804085 ], + [ 7.1145663, 46.2805269 ], + [ 7.1147217, 46.2805669 ], + [ 7.1148501, 46.280587 ], + [ 7.11502, 46.2805848 ], + [ 7.1151753, 46.280659 ], + [ 7.1153291, 46.2807593 ], + [ 7.1154725, 46.2808668 ], + [ 7.1156388, 46.2810328 ], + [ 7.1157261, 46.2811995 ], + [ 7.1158145, 46.2813814 ], + [ 7.1158377, 46.2816289 ], + [ 7.1158364, 46.2818493 ], + [ 7.1158355, 46.2819968 ], + [ 7.1158888, 46.2819772 ], + [ 7.1159705, 46.2819891 ], + [ 7.1160584, 46.2820397 ], + [ 7.1161643, 46.2821246 ], + [ 7.1163826, 46.2822772 ], + [ 7.1165687, 46.282401899999996 ], + [ 7.116851, 46.2825044 ], + [ 7.1170867, 46.2825671 ], + [ 7.1173781, 46.2826579 ], + [ 7.1176863, 46.2827604 ], + [ 7.117996, 46.2828297 ], + [ 7.1182876, 46.2828926 ], + [ 7.1186117, 46.2829277 ], + [ 7.1190098, 46.2829738 ], + [ 7.1192859, 46.283015 ], + [ 7.1195699, 46.2830383 ], + [ 7.1212926, 46.2831071 ], + [ 7.1218205, 46.2831373 ], + [ 7.1219747, 46.283172 ], + [ 7.1221455, 46.2832399 ], + [ 7.1224445, 46.2833703 ], + [ 7.1229466, 46.2836029 ], + [ 7.1233518, 46.2837569 ], + [ 7.123643, 46.2838819 ], + [ 7.1239267, 46.2839556 ], + [ 7.1241537, 46.2839733 ], + [ 7.1243742, 46.2839748 ], + [ 7.1245691, 46.2839411 ], + [ 7.1247728, 46.2839363 ], + [ 7.1249102, 46.2839601 ], + [ 7.1251293, 46.283994 ], + [ 7.1253482, 46.2840513 ], + [ 7.1256087, 46.2840979 ], + [ 7.1258263, 46.2841713 ], + [ 7.1259738, 46.2842392 ], + [ 7.1259876, 46.2843184 ], + [ 7.1259547, 46.2843975 ], + [ 7.1257838, 46.2845598 ], + [ 7.1259379, 46.2846223 ], + [ 7.1261243, 46.284702 ], + [ 7.1262692, 46.2847645 ], + [ 7.1264711, 46.2848496 ], + [ 7.1266913, 46.2849177 ], + [ 7.1269012, 46.2849695 ], + [ 7.1270647, 46.2849808 ], + [ 7.1272515, 46.2849822 ], + [ 7.1274305, 46.2849827 ], + [ 7.1275603, 46.2849884 ], + [ 7.1277379, 46.285006 ], + [ 7.1278845, 46.2850181 ], + [ 7.1281114, 46.2850412 ], + [ 7.128168, 46.2851376 ], + [ 7.1281997, 46.2852502 ], + [ 7.1282714, 46.2854249 ], + [ 7.1283124, 46.2855258 ], + [ 7.1284741, 46.2856 ], + [ 7.1286116, 46.2856174 ], + [ 7.1287752, 46.2855954 ], + [ 7.1289128999999996, 46.2855679 ], + [ 7.1290427, 46.2855512 ], + [ 7.1292373, 46.285558 ], + [ 7.12945, 46.2855811 ], + [ 7.1296277, 46.2855878 ], + [ 7.1297667, 46.2855594 ], + [ 7.1299213, 46.285532 ], + [ 7.1301157, 46.2855721 ], + [ 7.1303424, 46.2856294 ], + [ 7.1306339, 46.2857093 ], + [ 7.1308542, 46.2857666 ], + [ 7.1311059, 46.2857619 ], + [ 7.1313409, 46.2857293 ], + [ 7.1316174, 46.2857192 ], + [ 7.1317889, 46.2856747 ], + [ 7.1318219, 46.2855794 ], + [ 7.1318549, 46.2854833 ], + [ 7.1319697, 46.2853711 ], + [ 7.1321092, 46.2852483 ], + [ 7.1322811, 46.285148 ], + [ 7.1329437, 46.285685 ], + [ 7.1304462, 46.2890561 ], + [ 7.1302492, 46.2892418 ], + [ 7.1301264, 46.2893926 ], + [ 7.1299545, 46.2894992 ], + [ 7.1297345, 46.2896218 ], + [ 7.1294976, 46.2897336 ], + [ 7.1293179, 46.2898456 ], + [ 7.1290656, 46.289951 ], + [ 7.1288037, 46.2901419 ], + [ 7.1286235, 46.2903375 ], + [ 7.1284913, 46.2905342 ], + [ 7.1284158, 46.2907984 ], + [ 7.1283004, 46.2910059 ], + [ 7.1282271, 46.2911181 ], + [ 7.1280876, 46.2912302 ], + [ 7.1278754, 46.2913592 ], + [ 7.1277279, 46.2914991 ], + [ 7.127458, 46.2917232 ], + [ 7.1268045, 46.2920804 ], + [ 7.1265274, 46.2921974 ], + [ 7.126168, 46.2924159 ], + [ 7.1257835, 46.2927063 ], + [ 7.1255055, 46.2929754 ], + [ 7.1251607, 46.2933685 ], + [ 7.1249398, 46.2936431 ], + [ 7.1246432, 46.293985 ], + [ 7.1242744, 46.2944788 ], + [ 7.1231454, 46.2942435 ], + [ 7.1228539, 46.2941582 ], + [ 7.1225531, 46.294106 ], + [ 7.122309, 46.2941332 ], + [ 7.1219918, 46.2942223 ], + [ 7.1216254, 46.2942995 ], + [ 7.1213567, 46.2943096 ], + [ 7.1202535, 46.294114 ], + [ 7.1193771, 46.2939694 ], + [ 7.1188402, 46.2939004 ], + [ 7.1183772, 46.2938478 ], + [ 7.1178414, 46.2938283 ], + [ 7.1172716, 46.2938374 ], + [ 7.1166862, 46.2938691 ], + [ 7.1164658, 46.2940366 ], + [ 7.116236, 46.2942834 ], + [ 7.1160707, 46.2945699 ], + [ 7.1158496, 46.2948724 ], + [ 7.1156271, 46.2951983 ], + [ 7.1152891, 46.29572 ], + [ 7.1151815, 46.2959221 ], + [ 7.1150908, 46.2961134 ], + [ 7.1150327, 46.2962761 ], + [ 7.1150549, 46.2964839 ], + [ 7.1150709, 46.2966306 ], + [ 7.115127, 46.2967936 ], + [ 7.1152714, 46.296946 ], + [ 7.1153755, 46.2971154 ], + [ 7.1155367, 46.2973021 ], + [ 7.1156252, 46.2974769 ], + [ 7.1157045, 46.2976624 ], + [ 7.1157685, 46.2978092 ], + [ 7.1157989, 46.2979389 ], + [ 7.1158627, 46.2981244 ], + [ 7.1159184, 46.2983665 ], + [ 7.1159568, 46.2986599 ], + [ 7.1159806, 46.2988174 ], + [ 7.1160264, 46.2989749 ], + [ 7.1160995, 46.2991218 ], + [ 7.1161956, 46.299319 ], + [ 7.1162581, 46.2995108 ], + [ 7.1162741, 46.2996512 ], + [ 7.1162238, 46.2998193 ], + [ 7.1161568, 46.2999603 ], + [ 7.1160831, 46.3001175 ], + [ 7.1159928, 46.3002459 ], + [ 7.1159428, 46.3003582 ], + [ 7.1158121, 46.3005153 ], + [ 7.1156552, 46.3007064 ], + [ 7.1154747, 46.3009362 ], + [ 7.1153842, 46.3010988 ], + [ 7.1153093, 46.3012623 ], + [ 7.1152264, 46.3014473 ], + [ 7.1151847, 46.3016838 ], + [ 7.1152221, 46.3019421 ], + [ 7.1152533, 46.3021563 ], + [ 7.115243, 46.3023533 ], + [ 7.1152003, 46.3025609 ], + [ 7.1151667, 46.3027471 ], + [ 7.1150755, 46.3030221 ], + [ 7.1149758, 46.3032071 ], + [ 7.1148773, 46.3033984 ], + [ 7.1150239, 46.3033988 ], + [ 7.1151697, 46.3033318 ], + [ 7.1152859, 46.3032251 ], + [ 7.1153347, 46.3030849 ], + [ 7.1154579, 46.3028828 ], + [ 7.1155743, 46.3027374 ], + [ 7.1156805, 46.3025578 ], + [ 7.1158627, 46.3022597 ], + [ 7.1160661, 46.3021091 ], + [ 7.1163123, 46.3019524 ], + [ 7.1165651, 46.3017849 ], + [ 7.1166148, 46.301723 ], + [ 7.1166806, 46.3015711 ], + [ 7.1167554, 46.3014364 ], + [ 7.116926, 46.3013362 ], + [ 7.1171705, 46.301264 ], + [ 7.1174472, 46.301209 ], + [ 7.1177331, 46.3011594 ], + [ 7.1179771, 46.3011547 ], + [ 7.1182615, 46.3011277 ], + [ 7.1185536, 46.3011177 ], + [ 7.1188394, 46.3010789 ], + [ 7.1191641, 46.3010295 ], + [ 7.1194498, 46.3010033 ], + [ 7.1197345, 46.3009312 ], + [ 7.1199788999999996, 46.3008591 ], + [ 7.1202233, 46.3008031 ], + [ 7.1203947, 46.3007874 ], + [ 7.120574, 46.3007546 ], + [ 7.1207936, 46.3007102 ], + [ 7.1210132, 46.3006605 ], + [ 7.1212498, 46.3005937 ], + [ 7.1214212, 46.3005888 ], + [ 7.1216716, 46.3006066 ], + [ 7.1219246, 46.300619 ], + [ 7.1222009, 46.3006485 ], + [ 7.1223302, 46.3007334 ], + [ 7.122402, 46.300874 ], + [ 7.1224414, 46.3010144 ], + [ 7.1224809, 46.3011441 ], + [ 7.1225047, 46.3012908 ], + [ 7.1225427, 46.30146 ], + [ 7.1225178, 46.3017181 ], + [ 7.1224983, 46.3019438 ], + [ 7.1224726, 46.3021237 ], + [ 7.1224636, 46.3023261 ], + [ 7.122446, 46.3024555 ], + [ 7.1224526, 46.3026688 ], + [ 7.1225161, 46.3029055 ], + [ 7.1225704, 46.3031531 ], + [ 7.1226261, 46.3034015 ], + [ 7.1227048, 46.3036995 ], + [ 7.122816, 46.3039984 ], + [ 7.1228627, 46.3042235 ], + [ 7.1229431, 46.3044711 ], + [ 7.1232396, 46.3048155 ], + [ 7.1234426, 46.3049456 ], + [ 7.1236446, 46.3050371 ], + [ 7.1239375, 46.3051107 ], + [ 7.1241967, 46.3051744 ], + [ 7.1244327, 46.3052255 ], + [ 7.1247726, 46.3052552 ], + [ 7.1250659, 46.3052677 ], + [ 7.1253177, 46.305263 ], + [ 7.1256191, 46.3052189 ], + [ 7.1258462, 46.3052195 ], + [ 7.1261229, 46.3051933 ], + [ 7.1263019, 46.3052109 ], + [ 7.126586, 46.3052341 ], + [ 7.1268466, 46.3052915 ], + [ 7.1270083, 46.3053819 ], + [ 7.127178, 46.3054499 ], + [ 7.1273972, 46.3054676 ], + [ 7.1275918, 46.3054969 ], + [ 7.1277302, 46.3055818 ], + [ 7.1277869, 46.3056549 ], + [ 7.1278498, 46.3057621 ], + [ 7.1279061, 46.3059143 ], + [ 7.12793, 46.3060439 ], + [ 7.1278872, 46.3062579 ], + [ 7.1278861, 46.3064603 ], + [ 7.1278356, 46.3066625 ], + [ 7.1277523, 46.3069268 ], + [ 7.1277188, 46.307112 ], + [ 7.1277092, 46.3071965 ], + [ 7.1277336, 46.3072524 ], + [ 7.1277891, 46.3073038 ], + [ 7.1279183, 46.3074058 ], + [ 7.1279919, 46.3074672 ], + [ 7.1280795, 46.3075861 ], + [ 7.1281205, 46.3076762 ], + [ 7.1281677, 46.3078284 ], + [ 7.1282317, 46.307986 ], + [ 7.1282537, 46.308228 ], + [ 7.1282034, 46.3084024 ], + [ 7.1280977, 46.3084867 ], + [ 7.1280002, 46.3085143 ], + [ 7.1278861, 46.3084852 ], + [ 7.1278295, 46.3084068 ], + [ 7.1277405, 46.3083103 ], + [ 7.127628, 46.3082317 ], + [ 7.1274659, 46.3081971 ], + [ 7.1272942, 46.3082641 ], + [ 7.1271559, 46.3083869 ], + [ 7.1269266, 46.3085383 ], + [ 7.1267794, 46.3086162 ], + [ 7.1266245, 46.308688599999996 ], + [ 7.1264033, 46.3087833 ], + [ 7.1262579, 46.3087829 ], + [ 7.1261111, 46.3088158 ], + [ 7.1260535, 46.3089002 ], + [ 7.1259879999999995, 46.30899 ], + [ 7.1258733, 46.3090742 ], + [ 7.1257342, 46.3091071 ], + [ 7.1255875, 46.3091067 ], + [ 7.125499, 46.3091461 ], + [ 7.1253766, 46.309224 ], + [ 7.1251972, 46.3092631 ], + [ 7.1250336, 46.3092734 ], + [ 7.1247173, 46.3091934 ], + [ 7.1230954, 46.3086239 ], + [ 7.1231921, 46.3087375 ], + [ 7.1233212, 46.3088611 ], + [ 7.1234268, 46.3090027 ], + [ 7.1234912, 46.3090982 ], + [ 7.123636, 46.3091948 ], + [ 7.1237655, 46.3092402 ], + [ 7.1239273, 46.3093198 ], + [ 7.1240415, 46.3093309 ], + [ 7.1241803, 46.3093547 ], + [ 7.1243255, 46.3093722 ], + [ 7.1245041, 46.309468 ], + [ 7.1246503, 46.3095584 ], + [ 7.1247849, 46.3096289 ], + [ 7.1248354, 46.3096552 ], + [ 7.1249571, 46.3097005 ], + [ 7.1251206, 46.3097072 ], + [ 7.1252336, 46.3096959 ], + [ 7.1253804, 46.3096801 ], + [ 7.1255349, 46.3096805 ], + [ 7.1256568, 46.3096979 ], + [ 7.1258266, 46.309738 ], + [ 7.1259577, 46.3097437 ], + [ 7.1261445, 46.3097614 ], + [ 7.1263965, 46.3097405 ], + [ 7.1266732, 46.3097133 ], + [ 7.1269173, 46.3096915 ], + [ 7.1272342, 46.3096699 ], + [ 7.1274785, 46.3096319 ], + [ 7.1277306, 46.3095768 ], + [ 7.127984, 46.3095272 ], + [ 7.1282687, 46.3094659 ], + [ 7.1284714, 46.3094161 ], + [ 7.1287326, 46.3093781 ], + [ 7.1289848, 46.3093113 ], + [ 7.1292134, 46.3092957 ], + [ 7.1293928, 46.3092396 ], + [ 7.1296525, 46.3092241 ], + [ 7.1298966, 46.3092194 ], + [ 7.1301174, 46.3092029 ], + [ 7.1305889, 46.3091376 ], + [ 7.1309228000000004, 46.3090881 ], + [ 7.1311023, 46.3090328 ], + [ 7.1312648, 46.3089883 ], + [ 7.1314119, 46.3089212 ], + [ 7.1315019, 46.3088432 ], + [ 7.1315840999999995, 46.3087697 ], + [ 7.1316417, 46.3086745 ], + [ 7.131698, 46.3085901 ], + [ 7.1317481, 46.3084616 ], + [ 7.1317255, 46.3083257 ], + [ 7.1318723, 46.3083099 ], + [ 7.1319773, 46.3083273 ], + [ 7.1321797, 46.3083503 ], + [ 7.1322538, 46.3083226 ], + [ 7.1322734, 46.3083101 ], + [ 7.1323594, 46.3082554 ], + [ 7.1324259, 46.3081881 ], + [ 7.1325561, 46.3081327 ], + [ 7.1327458, 46.3080883 ], + [ 7.1328173, 46.3080714 ], + [ 7.132946, 46.3080447 ], + [ 7.132985, 46.3080367 ], + [ 7.1331097, 46.308011 ], + [ 7.1332639, 46.3080618 ], + [ 7.1333858, 46.3080909 ], + [ 7.1335249, 46.3080463 ], + [ 7.1337044, 46.3079901 ], + [ 7.1338743000000004, 46.3080023 ], + [ 7.1339963, 46.3080197 ], + [ 7.1342079, 46.3080149 ], + [ 7.1344428, 46.3080218 ], + [ 7.1346467, 46.3080052 ], + [ 7.1348014, 46.3079553 ], + [ 7.1349318, 46.3078549 ], + [ 7.1351684, 46.3077935 ], + [ 7.1353243, 46.3077606 ], + [ 7.1354871, 46.3076765 ], + [ 7.1357467, 46.3076664 ], + [ 7.1359999, 46.3076509 ], + [ 7.1363894, 46.3076411 ], + [ 7.136731, 46.3076141 ], + [ 7.1370972, 46.3075818 ], + [ 7.1374633, 46.307572 ], + [ 7.1375387, 46.3075596 ], + [ 7.1377855, 46.3075189 ], + [ 7.1377972, 46.3075171 ], + [ 7.1380256, 46.3075231 ], + [ 7.1382849, 46.3075859 ], + [ 7.1383306, 46.3075392 ], + [ 7.1385473, 46.3073167 ], + [ 7.1386636, 46.3069347 ], + [ 7.1386319, 46.3068114 ], + [ 7.1385271, 46.3067428 ], + [ 7.1383571, 46.3067315 ], + [ 7.1380963, 46.3067191 ], + [ 7.137975, 46.3065893 ], + [ 7.1378216, 46.3064026 ], + [ 7.1376605, 46.3061881 ], + [ 7.1377272, 46.3061046 ], + [ 7.1377925, 46.306031 ], + [ 7.1378099, 46.3059303 ], + [ 7.1377952, 46.3057783 ], + [ 7.1377223, 46.3055757 ], + [ 7.1376348, 46.3054513 ], + [ 7.1376586, 46.3053731 ], + [ 7.137668, 46.3052994 ], + [ 7.13788, 46.3052324 ], + [ 7.1379702, 46.3051094 ], + [ 7.1378739, 46.3049293 ], + [ 7.1379331, 46.3047774 ], + [ 7.1379573, 46.3046308 ], + [ 7.137958, 46.3045076 ], + [ 7.1380004, 46.3043611 ], + [ 7.1380413, 46.3042263 ], + [ 7.1380014, 46.3041641 ], + [ 7.1379785, 46.3040912 ], + [ 7.1380287, 46.3039393 ], + [ 7.1381344, 46.3038271 ], + [ 7.1382567, 46.3037717 ], + [ 7.1383389, 46.303699 ], + [ 7.1384369, 46.3035751 ], + [ 7.1383646, 46.3035129 ], + [ 7.1383666, 46.3033779 ], + [ 7.1383909, 46.3032152 ], + [ 7.1384161, 46.3031136 ], + [ 7.1385398, 46.3030411 ], + [ 7.1385233, 46.3029843 ], + [ 7.1385639, 46.3029233 ], + [ 7.138623, 46.3027885 ], + [ 7.1387213, 46.3026142 ], + [ 7.1388118, 46.3024454 ], + [ 7.1389192, 46.302272 ], + [ 7.138962, 46.3020473 ], + [ 7.139003, 46.3019007 ], + [ 7.1390934999999995, 46.3017436 ], + [ 7.1391452, 46.3015467 ], + [ 7.1392105, 46.301474 ], + [ 7.139194, 46.3014011 ], + [ 7.1391621, 46.301294 ], + [ 7.1391554, 46.3011077 ], + [ 7.1391084, 46.3009223 ], + [ 7.1390366, 46.300753 ], + [ 7.1392426, 46.3003541 ], + [ 7.139486, 46.3004735 ], + [ 7.1396803, 46.3005307 ], + [ 7.1398591, 46.3005986 ], + [ 7.1400366, 46.3006441 ], + [ 7.1403128, 46.3006907 ], + [ 7.1405318, 46.3007533 ], + [ 7.1409052, 46.3008335 ], + [ 7.141158, 46.3008845 ], + [ 7.1413756, 46.3009535 ], + [ 7.1416204, 46.3010495 ], + [ 7.1417497, 46.3011515 ], + [ 7.141894, 46.3013435 ], + [ 7.1420154, 46.3014454 ], + [ 7.1421126, 46.3014736 ], + [ 7.1423072, 46.3014966 ], + [ 7.1425989, 46.3015432 ], + [ 7.1429413, 46.3015891 ], + [ 7.1431762, 46.301596 ], + [ 7.1433879, 46.3015795 ], + [ 7.1435841, 46.3015413 ], + [ 7.1437941, 46.3015922 ], + [ 7.1440871, 46.3016497 ], + [ 7.1443697, 46.3017188 ], + [ 7.1445901, 46.3017535 ], + [ 7.1447766, 46.3018269 ], + [ 7.1450112, 46.301895 ], + [ 7.1452869, 46.3020315 ], + [ 7.1455536, 46.3021617 ], + [ 7.1458787, 46.3022813 ], + [ 7.1462115, 46.3024234 ], + [ 7.146503, 46.3025258 ], + [ 7.1466882, 46.3025938 ], + [ 7.146884, 46.3026393 ], + [ 7.1471772, 46.3026517 ], + [ 7.1474603, 46.30263 ], + [ 7.1478107, 46.3026318 ], + [ 7.1481275, 46.3026164 ], + [ 7.1483809, 46.3025604 ], + [ 7.1485751, 46.3026454 ], + [ 7.1488509, 46.302782 ], + [ 7.1490685, 46.3028617 ], + [ 7.1492398999999995, 46.3028567 ], + [ 7.1494519, 46.3027727 ], + [ 7.1497119, 46.3026951 ], + [ 7.149925, 46.3026561 ], + [ 7.1501118, 46.3026629 ], + [ 7.1503064, 46.3026804 ], + [ 7.1505426, 46.3026981 ], + [ 7.1508269, 46.3026764 ], + [ 7.1510385, 46.3026661 ], + [ 7.1511435, 46.3026952 ], + [ 7.151256, 46.3027737 ], + [ 7.1512819, 46.3027936 ], + [ 7.1514189, 46.3028983 ], + [ 7.1516051, 46.3030229 ], + [ 7.1518238, 46.3031647 ], + [ 7.1519853, 46.3032883 ], + [ 7.1522275, 46.3033906 ], + [ 7.152479, 46.3034425 ], + [ 7.1527152, 46.3034548 ], + [ 7.1531057, 46.3034954 ], + [ 7.1532458, 46.3035065 ], + [ 7.153325, 46.303513 ], + [ 7.1534129, 46.3035699 ], + [ 7.153431, 46.3035862 ], + [ 7.1535188, 46.3036655 ], + [ 7.1537378, 46.3037453 ], + [ 7.1538752, 46.3037798 ], + [ 7.1538946, 46.3037852 ], + [ 7.1541111, 46.3038425 ], + [ 7.1544195, 46.3039332 ], + [ 7.1546217, 46.3039904 ], + [ 7.1548653, 46.3040809 ], + [ 7.1551569, 46.3041554 ], + [ 7.1554898, 46.3042921 ], + [ 7.1557963, 46.3045007 ], + [ 7.1563354, 46.3046721 ], + [ 7.1564624, 46.304712 ], + [ 7.156649, 46.3047574 ], + [ 7.1567792, 46.3046957 ], + [ 7.1569985, 46.3047025 ], + [ 7.1571699, 46.3046804 ], + [ 7.1572584, 46.3046501 ], + [ 7.1572844, 46.3046411 ], + [ 7.1574147, 46.3045299 ], + [ 7.1575215, 46.3044627 ], + [ 7.1576518, 46.3043731 ], + [ 7.1578066, 46.3043114 ], + [ 7.157961, 46.3043181 ], + [ 7.1581802, 46.3043465 ], + [ 7.158344, 46.3042966 ], + [ 7.1584497, 46.3041961 ], + [ 7.1585001, 46.3039929 ], + [ 7.1584759, 46.3038867 ], + [ 7.158575, 46.303797 ], + [ 7.1586404, 46.3037009 ], + [ 7.1585918, 46.3035658 ], + [ 7.1585457, 46.3034425 ], + [ 7.1584323, 46.3032902 ], + [ 7.1583108, 46.3031828 ], + [ 7.1584012, 46.3030364 ], + [ 7.1583616, 46.3029014 ], + [ 7.1583547, 46.3027439 ], + [ 7.158308, 46.302473 ], + [ 7.1582533, 46.3022705 ], + [ 7.1583016, 46.3022032 ], + [ 7.158703, 46.301901 ], + [ 7.1588561, 46.301896 ], + [ 7.1590599, 46.3018965 ], + [ 7.1592637, 46.3018862 ], + [ 7.1594989, 46.3018418 ], + [ 7.1597595, 46.3018883 ], + [ 7.160028, 46.3019394 ], + [ 7.1602627, 46.3019741 ], + [ 7.1604589, 46.3019242 ], + [ 7.160654, 46.3018465 ], + [ 7.1608489, 46.3018136 ], + [ 7.1609877, 46.3018302 ], + [ 7.1610769, 46.3018925 ], + [ 7.1612064, 46.3019495 ], + [ 7.1613762, 46.3020066 ], + [ 7.16162, 46.3020467 ], + [ 7.1619365, 46.3020817 ], + [ 7.1622455, 46.3020663 ], + [ 7.1626608, 46.3020565 ], + [ 7.1629933, 46.3020177 ], + [ 7.1633209, 46.3019232 ], + [ 7.1635717, 46.3018572 ], + [ 7.1637927, 46.3017849 ], + [ 7.1639069, 46.301796 ], + [ 7.1640844, 46.3018477 ], + [ 7.1643115, 46.3018707 ], + [ 7.1644596, 46.3018378 ], + [ 7.1646542, 46.301849 ], + [ 7.1650111, 46.3018508 ], + [ 7.1655733999999995, 46.3018081 ], + [ 7.1657265, 46.3018085 ], + [ 7.1658652, 46.3018484 ], + [ 7.1660842, 46.3019164 ], + [ 7.1662538, 46.3019906 ], + [ 7.1663523, 46.3020358 ], + [ 7.1665066, 46.302064 ], + [ 7.1667165, 46.3021383 ], + [ 7.1669446, 46.3022063 ], + [ 7.1671638, 46.3022356 ], + [ 7.1673338, 46.3022414 ], + [ 7.1674556, 46.3022813 ], + [ 7.1676344, 46.302333 ], + [ 7.1678057, 46.3023442 ], + [ 7.1679359, 46.3022717 ], + [ 7.1680584, 46.3021595 ], + [ 7.168238, 46.3020592 ], + [ 7.1684008, 46.3019588 ], + [ 7.1686127, 46.3018919 ], + [ 7.1687344, 46.3019542 ], + [ 7.1689377, 46.3020447 ], + [ 7.1691321, 46.3021072 ], + [ 7.1694163, 46.3021088 ], + [ 7.1695538, 46.3021253 ], + [ 7.1696429, 46.3022101 ], + [ 7.1697802, 46.3022842 ], + [ 7.1698295, 46.3022726 ], + [ 7.1699517, 46.3022342 ], + [ 7.1701138, 46.3022742 ], + [ 7.1703341, 46.3023422 ], + [ 7.1706013, 46.3023662 ], + [ 7.1709024, 46.3023894 ], + [ 7.1711942, 46.3024351 ], + [ 7.1713003, 46.302492 ], + [ 7.1714453, 46.3025769 ], + [ 7.1716148, 46.3026844 ], + [ 7.1718828, 46.3028091 ], + [ 7.1721019, 46.3028717 ], + [ 7.1723783, 46.3028787 ], + [ 7.1726314, 46.3028739 ], + [ 7.1727442, 46.302902 ], + [ 7.1729309, 46.3029537 ], + [ 7.1731421, 46.3030217 ], + [ 7.1733768, 46.3030564 ], + [ 7.173678, 46.3030571 ], + [ 7.1739297, 46.3030694 ], + [ 7.1742062, 46.3030593 ], + [ 7.1747267, 46.3030614 ], + [ 7.1752147, 46.3030742 ], + [ 7.1755561, 46.3030579 ], + [ 7.175914, 46.3031325 ], + [ 7.1763353, 46.3032469 ], + [ 7.1768874, 46.3034002 ], + [ 7.1771296, 46.3035195 ], + [ 7.1773407, 46.3036099 ], + [ 7.1775766, 46.3036842 ], + [ 7.1776971, 46.3037241 ], + [ 7.1778853, 46.3037245 ], + [ 7.1781127, 46.3036747 ], + [ 7.1784137, 46.3037042 ], + [ 7.1786656, 46.3036886 ], + [ 7.1787708, 46.30366 ], + [ 7.1790805, 46.303515 ], + [ 7.1792767, 46.3034597 ], + [ 7.1795702, 46.3034271 ], + [ 7.1798143, 46.3034105 ], + [ 7.1801962, 46.3033502 ], + [ 7.1807018, 46.3032003 ], + [ 7.1811334, 46.3030555 ], + [ 7.1813539, 46.3028249 ], + [ 7.1818658, 46.3029789 ], + [ 7.182093, 46.3029687 ], + [ 7.182386, 46.3030422 ], + [ 7.1827179, 46.3031284 ], + [ 7.182994, 46.3032082 ], + [ 7.1833025, 46.3032818 ], + [ 7.1835865, 46.3033337 ], + [ 7.1839031, 46.3033686 ], + [ 7.1839847, 46.303403 ], + [ 7.1841298, 46.3034653 ], + [ 7.1842853, 46.3035107 ], + [ 7.1844874, 46.3035903 ], + [ 7.1846571, 46.3036635 ], + [ 7.1848773, 46.3037549 ], + [ 7.1851766, 46.3038734 ], + [ 7.185428, 46.3039702 ], + [ 7.1855162, 46.3039785 ], + [ 7.1856719, 46.3039933 ], + [ 7.1860288, 46.303995 ], + [ 7.1877684, 46.3039251 ], + [ 7.1890583, 46.3038724 ], + [ 7.1892482, 46.2951719 ], + [ 7.1940093, 46.291396399999996 ], + [ 7.1954789, 46.2902968 ], + [ 7.1969481, 46.2891297 ], + [ 7.1964546, 46.2891325 ], + [ 7.1943741, 46.2890673 ], + [ 7.1938786, 46.2883813 ], + [ 7.1941147, 46.287133 ], + [ 7.1948396, 46.285681 ], + [ 7.1939616, 46.2857063 ], + [ 7.1940036, 46.285223 ], + [ 7.1929914, 46.2848775 ], + [ 7.1902864, 46.2850066 ], + [ 7.1891198, 46.2844908 ], + [ 7.1887511, 46.2841589 ], + [ 7.1871531, 46.2837064 ], + [ 7.1868059, 46.2835771 ], + [ 7.1863074, 46.2828432 ], + [ 7.1865815, 46.2815647 ], + [ 7.1873732, 46.2783889 ], + [ 7.1893365, 46.2733742 ], + [ 7.1894089, 46.2729077 ], + [ 7.1893052, 46.2726064 ], + [ 7.1889271, 46.2720586 ], + [ 7.188959, 46.2717021 ], + [ 7.1887718, 46.2713556 ], + [ 7.1885052, 46.2710027 ], + [ 7.1884185, 46.2706672 ], + [ 7.1882337, 46.270537 ], + [ 7.1877278, 46.2702557 ], + [ 7.1875594, 46.2701256 ], + [ 7.1873313, 46.2699802 ], + [ 7.1868384, 46.2696322 ], + [ 7.1863335, 46.2693553 ], + [ 7.1856788, 46.2691982 ], + [ 7.1853485, 46.2690764 ], + [ 7.1851069, 46.2688493 ], + [ 7.1837157, 46.268473 ], + [ 7.1824494, 46.2683874 ], + [ 7.1818558, 46.2685476 ], + [ 7.1815818, 46.2685416 ], + [ 7.1811065, 46.2684003 ], + [ 7.1809656, 46.2684956 ], + [ 7.180781, 46.2685627 ], + [ 7.1807518, 46.2685735 ], + [ 7.1802222, 46.2686649 ], + [ 7.1799966, 46.2687938 ], + [ 7.1796339, 46.2689468 ], + [ 7.1796316000000004, 46.2689472 ], + [ 7.1796264, 46.2689493 ], + [ 7.1791888, 46.2690095 ], + [ 7.1789413, 46.2689478 ], + [ 7.1784886, 46.2686825 ], + [ 7.1781497, 46.2685828 ], + [ 7.177758, 46.2683066 ], + [ 7.177247, 46.2677272 ], + [ 7.177181, 46.2675761 ], + [ 7.1770904, 46.2671361 ], + [ 7.1766551, 46.266685 ], + [ 7.1761316, 46.2663512 ], + [ 7.1758642, 46.2659874 ], + [ 7.1756752, 46.2657578 ], + [ 7.1752324, 46.2656446 ], + [ 7.1747071, 46.265456 ], + [ 7.1745048, 46.2653122 ], + [ 7.1743141, 46.264999 ], + [ 7.1740308, 46.2647962 ], + [ 7.173788, 46.2643983 ], + [ 7.1735163, 46.2641485 ], + [ 7.1733118, 46.2639078 ], + [ 7.1727396, 46.2633104 ], + [ 7.1724173, 46.2630695 ], + [ 7.1719724, 46.2626449 ], + [ 7.171921, 46.2624322 ], + [ 7.1719124, 46.2621265 ], + [ 7.1718103, 46.2619883 ], + [ 7.1718325, 46.2617701 ], + [ 7.1717442, 46.2615067 ], + [ 7.1715199, 46.2610963 ], + [ 7.1712759, 46.2609793 ], + [ 7.1707558, 46.2609461 ], + [ 7.1704328, 46.2608281 ], + [ 7.1699711, 46.2605638 ], + [ 7.1692062, 46.260278 ], + [ 7.1685424, 46.2597939 ], + [ 7.1682067, 46.2593943 ], + [ 7.1672975, 46.2588372 ], + [ 7.1671023, 46.2585814 ], + [ 7.1667973, 46.2582831 ], + [ 7.1665607, 46.2579104 ], + [ 7.1661249, 46.2576337 ], + [ 7.165798, 46.2572648 ], + [ 7.1656472, 46.2568629 ], + [ 7.1652092, 46.2563468 ], + [ 7.1644672, 46.2559394 ], + [ 7.164395, 46.2557042 ], + [ 7.1634674, 46.2552214 ], + [ 7.1627756, 46.2547702 ], + [ 7.1623571, 46.2544478 ], + [ 7.1621506, 46.2541618 ], + [ 7.1618909, 46.253914 ], + [ 7.1614619, 46.2538259 ], + [ 7.161297, 46.2535092 ], + [ 7.1610763, 46.2533727 ], + [ 7.1605994, 46.2532171 ], + [ 7.160259, 46.253169 ], + [ 7.1599369, 46.2531853 ], + [ 7.1596979, 46.253118 ], + [ 7.1590754, 46.2530465 ], + [ 7.1587398, 46.2531085 ], + [ 7.1584312, 46.2530855 ], + [ 7.1575919, 46.2530075 ], + [ 7.1572709, 46.2529513 ], + [ 7.1567072, 46.2527456 ], + [ 7.1563695, 46.2527674 ], + [ 7.1559812, 46.2527237 ], + [ 7.1557284, 46.2527187 ], + [ 7.1552323, 46.2527528 ], + [ 7.1549905, 46.2523515 ], + [ 7.1546101, 46.252141 ], + [ 7.1544952, 46.2518766 ], + [ 7.1541571, 46.251452 ], + [ 7.1538061, 46.2509152 ], + [ 7.1536172, 46.2506791 ], + [ 7.1534265, 46.250308 ], + [ 7.152757, 46.2496589 ], + [ 7.1525925, 46.2493913 ], + [ 7.1524332, 46.2492766 ], + [ 7.1524212, 46.2491446 ], + [ 7.1521402, 46.2487207 ], + [ 7.1517677, 46.2480773 ], + [ 7.1517351, 46.2479088 ], + [ 7.1517357, 46.2475955 ], + [ 7.1515115, 46.2468698 ], + [ 7.1512912, 46.2463837 ], + [ 7.15141, 46.2463025 ], + [ 7.151528, 46.2460186 ], + [ 7.1515919, 46.2457863 ], + [ 7.1514152, 46.2456039 ], + [ 7.1513473, 46.2454629 ], + [ 7.1513594, 46.2451192 ], + [ 7.1514202000000004, 46.2447226 ], + [ 7.151295, 46.2445331 ], + [ 7.1511828, 46.2444539 ], + [ 7.1511605, 46.2444385 ], + [ 7.1510579, 46.2443573 ], + [ 7.150705, 46.2439977 ], + [ 7.150422, 46.24378 ], + [ 7.1500314, 46.2434956 ], + [ 7.1501669, 46.2432942 ], + [ 7.1501667, 46.2431338 ], + [ 7.1500456, 46.243041 ], + [ 7.1495940000000004, 46.242831 ], + [ 7.1489138, 46.2426193 ], + [ 7.1474594, 46.2420848 ], + [ 7.1471397, 46.2419882 ], + [ 7.1466868, 46.241928 ], + [ 7.1458563, 46.241649 ], + [ 7.145626, 46.2416221 ], + [ 7.1452764, 46.2416059 ], + [ 7.1448775, 46.2414361 ], + [ 7.1447488, 46.2413497 ], + [ 7.14468, 46.2411644 ], + [ 7.1441514999999995, 46.2409723 ], + [ 7.1439242, 46.2408127 ], + [ 7.1438557, 46.2406852 ], + [ 7.1437923, 46.2402475 ], + [ 7.1436713, 46.2400807 ], + [ 7.14309, 46.2395039 ], + [ 7.14276, 46.2391107 ], + [ 7.1425497, 46.2388861 ], + [ 7.1423783, 46.2387388 ], + [ 7.1421048, 46.2386057 ], + [ 7.141685, 46.2384333 ], + [ 7.1413902, 46.2382031 ], + [ 7.1411587, 46.2380291 ], + [ 7.1409605, 46.2379045 ], + [ 7.1391161, 46.2373199 ], + [ 7.1389949, 46.2372939 ], + [ 7.1386773, 46.2372532 ], + [ 7.1377043, 46.2369906 ], + [ 7.1375876, 46.236988 ], + [ 7.1358160999999996, 46.2367292 ], + [ 7.1355425, 46.236671 ], + [ 7.135137, 46.2365624 ], + [ 7.1349503, 46.2365784 ], + [ 7.1346439, 46.2366539 ], + [ 7.1343871, 46.2366705 ], + [ 7.1339495, 46.236665 ], + [ 7.1337341, 46.2366668 ], + [ 7.1333063, 46.2367046 ], + [ 7.1329421, 46.2367408 ], + [ 7.1324256, 46.2367532 ], + [ 7.1317314, 46.2367732 ], + [ 7.1314482, 46.2368369 ], + [ 7.1312845, 46.2368318 ], + [ 7.1308058, 46.2367763 ], + [ 7.1304947, 46.2368023 ], + [ 7.1303697, 46.236788 ], + [ 7.1300453, 46.2368286 ], + [ 7.1295805, 46.2369332 ], + [ 7.1287826, 46.2369883 ], + [ 7.1284504, 46.2369591 ], + [ 7.1278538, 46.2370224 ], + [ 7.1274039, 46.2371308 ], + [ 7.1271296, 46.2370709 ], + [ 7.1268905, 46.237068 ], + [ 7.1266652, 46.2371775 ], + [ 7.1266603, 46.2371787 ], + [ 7.1266591, 46.2371794 ], + [ 7.1264754, 46.237226 ], + [ 7.1261603000000004, 46.2371723 ], + [ 7.1260927, 46.2370701 ], + [ 7.1258108, 46.2370378 ], + [ 7.1256347, 46.2369498 ], + [ 7.1254591, 46.2368464 ], + [ 7.1250129, 46.2364259 ], + [ 7.1241717, 46.2359317 ], + [ 7.1241447, 46.2355636 ], + [ 7.124003, 46.2353252 ], + [ 7.1240081, 46.2351416 ], + [ 7.1239239, 46.2349774 ], + [ 7.1238122, 46.2343088 ], + [ 7.123628, 46.2340207 ], + [ 7.1235598, 46.2336426 ], + [ 7.1234826, 46.2334489 ], + [ 7.1233281, 46.2332198 ], + [ 7.1234294, 46.2325006 ], + [ 7.1231247, 46.2322084 ], + [ 7.1228213, 46.231754 ], + [ 7.1224358, 46.2311858 ], + [ 7.1221727, 46.2305694 ], + [ 7.1218132, 46.2299431 ], + [ 7.1212223, 46.2293194 ], + [ 7.1216368, 46.2281145 ], + [ 7.1217755, 46.2276078 ], + [ 7.1218181, 46.2263587 ], + [ 7.1214586, 46.2259081 ], + [ 7.1214066, 46.2257177 ], + [ 7.1213942, 46.2253852 ], + [ 7.1213234, 46.2249069 ], + [ 7.1214789, 46.2248266 ], + [ 7.1216064, 46.2245261 ], + [ 7.1217316, 46.2243816 ], + [ 7.1218465, 46.2242682 ], + [ 7.1218512, 46.2239691 ], + [ 7.1218575, 46.2239687 ], + [ 7.1218575, 46.2239666 ], + [ 7.1220767, 46.223951 ], + [ 7.122189, 46.2239171 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00049", + "country" : "CHE", + "name" : [ + { + "text" : "Grand Muveran", + "lang" : "de-CH" + }, + { + "text" : "Grand Muveran", + "lang" : "fr-CH" + }, + { + "text" : "Grand Muveran", + "lang" : "it-CH" + }, + { + "text" : "Grand Muveran", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "startDateTime" : "2024-11-15T00:00:00+01:00", + "endDateTime" : "2025-04-15T00:00:00+02:00" + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Generaldirektion für Umwelt", + "lang" : "de-CH" + }, + { + "text" : "Direction générale de l'environnement", + "lang" : "fr-CH" + }, + { + "text" : "Direzione generale dell'Ambiente", + "lang" : "it-CH" + }, + { + "text" : "Environment Department", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.dge@vd.ch", + "phone" : "0041213164422", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 10.2925328, 46.7694583 ], + [ 10.2925612, 46.7693753 ], + [ 10.2925761, 46.7693175 ], + [ 10.2925821, 46.7692598 ], + [ 10.292609, 46.7692117 ], + [ 10.2926674, 46.7691239 ], + [ 10.2926841, 46.7690989 ], + [ 10.292690499999999, 46.7690493 ], + [ 10.2926732, 46.7690004 ], + [ 10.2926582, 46.7689494 ], + [ 10.2926564, 46.7689166 ], + [ 10.2926606, 46.7688876 ], + [ 10.2927461, 46.7686922 ], + [ 10.2928159, 46.7684808 ], + [ 10.2928351, 46.7684412 ], + [ 10.2928362, 46.7683837 ], + [ 10.29286, 46.7683234 ], + [ 10.2928874, 46.7682837 ], + [ 10.2929078, 46.7682667 ], + [ 10.2929341, 46.7682537 ], + [ 10.2932563, 46.768184 ], + [ 10.2934046, 46.7681555 ], + [ 10.2934578, 46.7681399 ], + [ 10.2934983, 46.7681162 ], + [ 10.2935845, 46.7680441 ], + [ 10.2936611, 46.7680052 ], + [ 10.2937232, 46.7679872 ], + [ 10.293795, 46.7679833 ], + [ 10.2938788, 46.7679874 ], + [ 10.2939387, 46.76799 ], + [ 10.2939775, 46.7679809 ], + [ 10.2940448, 46.7679544 ], + [ 10.2941354, 46.7679173 ], + [ 10.2942423, 46.7678941 ], + [ 10.2943066, 46.7678718 ], + [ 10.2943352, 46.7678403 ], + [ 10.2943571, 46.7678048 ], + [ 10.2943609, 46.7677697 ], + [ 10.2943681, 46.7677347 ], + [ 10.2943915, 46.7677134 ], + [ 10.2944201, 46.7676962 ], + [ 10.2944644, 46.7676829 ], + [ 10.2945117, 46.7676796 ], + [ 10.2945661, 46.7676864 ], + [ 10.294657, 46.7677027 ], + [ 10.2947171, 46.7677074 ], + [ 10.294771, 46.767706 ], + [ 10.294842, 46.7677002 ], + [ 10.2949078, 46.7676902 ], + [ 10.2949703, 46.7676805 ], + [ 10.2950057, 46.7676837 ], + [ 10.295069699999999, 46.7677026 ], + [ 10.2951308, 46.7677278 ], + [ 10.2951729, 46.767735 ], + [ 10.2952125, 46.7677403 ], + [ 10.2952482, 46.7677332 ], + [ 10.2952858, 46.7677177 ], + [ 10.2953049, 46.7676762 ], + [ 10.2953211, 46.7676408 ], + [ 10.2953381, 46.7676219 ], + [ 10.2953671, 46.7676129 ], + [ 10.2954265, 46.7676073 ], + [ 10.2954984, 46.7676036 ], + [ 10.2955307, 46.7675945 ], + [ 10.2955859, 46.7675561 ], + [ 10.2956295, 46.7675283 ], + [ 10.2956993, 46.7675018 ], + [ 10.2957474, 46.7674965 ], + [ 10.295871, 46.767481 ], + [ 10.295918, 46.7674717 ], + [ 10.296006, 46.7674325 ], + [ 10.2960614, 46.7674125 ], + [ 10.2961712, 46.7673995 ], + [ 10.2962189, 46.767388 ], + [ 10.2962506, 46.7673667 ], + [ 10.2962906, 46.7673349 ], + [ 10.2963434, 46.767311 ], + [ 10.2964053, 46.7672889 ], + [ 10.29644, 46.7672654 ], + [ 10.2964588, 46.7672339 ], + [ 10.2964699, 46.7671638 ], + [ 10.296494299999999, 46.7671159 ], + [ 10.2965487, 46.7669829 ], + [ 10.2965553, 46.7669376 ], + [ 10.2965506, 46.7668492 ], + [ 10.2965324, 46.7667839 ], + [ 10.2965207, 46.7667328 ], + [ 10.296531, 46.7666956 ], + [ 10.2966088, 46.7665271 ], + [ 10.2966327, 46.7664669 ], + [ 10.2966833, 46.7664182 ], + [ 10.2966415, 46.7663247 ], + [ 10.2966253, 46.766251 ], + [ 10.2966146, 46.7661115 ], + [ 10.296633, 46.7659939 ], + [ 10.296664, 46.7658533 ], + [ 10.2966634, 46.7657813 ], + [ 10.2966497, 46.765722 ], + [ 10.2966115, 46.7656819 ], + [ 10.2965501, 46.7656505 ], + [ 10.2963976, 46.7656009 ], + [ 10.2962809, 46.7655462 ], + [ 10.2961634, 46.7654772 ], + [ 10.2960988, 46.7654316 ], + [ 10.2960697, 46.7653932 ], + [ 10.2960558, 46.7653626 ], + [ 10.2960633, 46.7653337 ], + [ 10.2961325, 46.7651715 ], + [ 10.2962007, 46.7650383 ], + [ 10.2962594, 46.7649402 ], + [ 10.2962853, 46.7649189 ], + [ 10.296349, 46.7648845 ], + [ 10.2964282, 46.7648496 ], + [ 10.2965057, 46.764783800000004 ], + [ 10.2965849, 46.7647017 ], + [ 10.296651, 46.7646507 ], + [ 10.2967443, 46.7646052 ], + [ 10.2967576, 46.7645781 ], + [ 10.2967441, 46.7645395 ], + [ 10.2967394, 46.7645129 ], + [ 10.2967664, 46.7644505 ], + [ 10.2967728, 46.7644009 ], + [ 10.2967683, 46.7643784 ], + [ 10.2967452, 46.7643441 ], + [ 10.2967057, 46.7642936 ], + [ 10.2966714, 46.7642184 ], + [ 10.2966587, 46.7641941 ], + [ 10.2966393, 46.7641678 ], + [ 10.2965386, 46.7640757 ], + [ 10.2965001, 46.7640294 ], + [ 10.2964642, 46.7639707 ], + [ 10.2964339, 46.7639077 ], + [ 10.296413, 46.7638527 ], + [ 10.2964047, 46.7638056 ], + [ 10.2964033, 46.7637317 ], + [ 10.2964088, 46.7636657 ], + [ 10.2964352, 46.7635931 ], + [ 10.2964529, 46.7635413 ], + [ 10.2964582, 46.7635021 ], + [ 10.2964373, 46.763447 ], + [ 10.2964299, 46.7634164 ], + [ 10.2964258, 46.7633856 ], + [ 10.2964387, 46.7633504 ], + [ 10.2964805, 46.7632897 ], + [ 10.2965429, 46.7632306 ], + [ 10.2965649, 46.7631991 ], + [ 10.2965841, 46.7631597 ], + [ 10.2966084, 46.7631076 ], + [ 10.2966509, 46.7630593 ], + [ 10.2967002, 46.762986 ], + [ 10.296731, 46.7629339 ], + [ 10.2967549, 46.7628592 ], + [ 10.2967503, 46.7628203 ], + [ 10.2967317, 46.7627612 ], + [ 10.2967104, 46.7627 ], + [ 10.2967022, 46.7626529 ], + [ 10.2967023, 46.7625933 ], + [ 10.2967125, 46.7625086 ], + [ 10.2967549, 46.7623966 ], + [ 10.296818, 46.7622901 ], + [ 10.2968768, 46.7622249 ], + [ 10.2969165, 46.7621869 ], + [ 10.2969614, 46.7621529 ], + [ 10.2970196, 46.7621247 ], + [ 10.2972742, 46.7620628 ], + [ 10.2974749, 46.7620187 ], + [ 10.2975482, 46.7619963 ], + [ 10.2976274, 46.7619614 ], + [ 10.2976657, 46.761942 ], + [ 10.2976568, 46.761896899999996 ], + [ 10.2975761, 46.7617818 ], + [ 10.2975307, 46.761713 ], + [ 10.2974868, 46.761671 ], + [ 10.2974506, 46.7616225 ], + [ 10.297392, 46.7615211 ], + [ 10.2973322, 46.7614733 ], + [ 10.297287, 46.7614394 ], + [ 10.297267399999999, 46.7614091 ], + [ 10.2972648, 46.7613598 ], + [ 10.2972649, 46.7613001 ], + [ 10.2972638, 46.7612796 ], + [ 10.2972388, 46.7612556 ], + [ 10.2971575, 46.7611898 ], + [ 10.2971063, 46.7611356 ], + [ 10.2970833, 46.7610868 ], + [ 10.2970698, 46.7610645 ], + [ 10.2970556, 46.7610279 ], + [ 10.2970627, 46.7609927 ], + [ 10.2970857, 46.7609634 ], + [ 10.2971173, 46.7609419 ], + [ 10.2971457, 46.7609207 ], + [ 10.2971688, 46.7608934 ], + [ 10.2971818, 46.7608294 ], + [ 10.2971958, 46.760755 ], + [ 10.2972319, 46.7607088 ], + [ 10.2972922, 46.760658 ], + [ 10.2973604, 46.7605864 ], + [ 10.2974, 46.7605443 ], + [ 10.2973869, 46.7604685 ], + [ 10.2973741, 46.7603968 ], + [ 10.2973709, 46.76029 ], + [ 10.2973661, 46.760244900000004 ], + [ 10.2973517, 46.7602061 ], + [ 10.2972799, 46.7601483 ], + [ 10.2972358, 46.7601042 ], + [ 10.2972222, 46.7600798 ], + [ 10.297218, 46.760047 ], + [ 10.2972225, 46.7600223 ], + [ 10.2971989, 46.7599941 ], + [ 10.2971352, 46.759936 ], + [ 10.2970905, 46.7598796 ], + [ 10.2970667, 46.7598185 ], + [ 10.2970405, 46.7597246 ], + [ 10.2970345, 46.7596589 ], + [ 10.2970487, 46.7596011 ], + [ 10.2970975, 46.7595032 ], + [ 10.2971569, 46.7594338 ], + [ 10.2971786, 46.7593963 ], + [ 10.297202, 46.7593279 ], + [ 10.2972356, 46.759251 ], + [ 10.2972689, 46.7592007 ], + [ 10.2973366, 46.7591332 ], + [ 10.2973706, 46.7590954 ], + [ 10.2973859, 46.7590456 ], + [ 10.2974044, 46.7589917 ], + [ 10.2974157, 46.7589277 ], + [ 10.2974307, 46.7588718 ], + [ 10.2974575, 46.7588197 ], + [ 10.2974938, 46.7587633 ], + [ 10.2975626, 46.7587039 ], + [ 10.2977111, 46.7585707 ], + [ 10.2978378, 46.7584585 ], + [ 10.2978986, 46.7584159 ], + [ 10.2979685, 46.7583772 ], + [ 10.2980233, 46.758345 ], + [ 10.2981326, 46.7583072 ], + [ 10.2981932, 46.7582769 ], + [ 10.2982399, 46.7582449 ], + [ 10.2982764, 46.758209 ], + [ 10.2983041, 46.7581591 ], + [ 10.2983283, 46.758107 ], + [ 10.2983672, 46.7580526 ], + [ 10.2984259, 46.7579709 ], + [ 10.2984509, 46.7579188 ], + [ 10.2984607, 46.7578713 ], + [ 10.298455, 46.7578262 ], + [ 10.2984307, 46.7577528 ], + [ 10.2984239, 46.7576871 ], + [ 10.2984269, 46.7576357 ], + [ 10.298469, 46.7575195 ], + [ 10.2985503, 46.757355 ], + [ 10.2985943, 46.7572881 ], + [ 10.298634, 46.7572501 ], + [ 10.2987037, 46.7572052 ], + [ 10.2987771, 46.757154 ], + [ 10.2988656, 46.7570799 ], + [ 10.298894, 46.7570441 ], + [ 10.2989066, 46.7570027 ], + [ 10.2989313, 46.756959 ], + [ 10.2989566, 46.7569274 ], + [ 10.2989996, 46.7568893 ], + [ 10.2991112, 46.7568023 ], + [ 10.2991573, 46.7567599 ], + [ 10.2992018, 46.7567053 ], + [ 10.2992532, 46.7566547 ], + [ 10.2992845, 46.7566272 ], + [ 10.299387, 46.7565856 ], + [ 10.2995208, 46.7565308 ], + [ 10.2996112, 46.7564894 ], + [ 10.2996663, 46.7564635 ], + [ 10.299713, 46.7564335 ], + [ 10.2997674, 46.7563951 ], + [ 10.2998674, 46.7563515 ], + [ 10.2999453, 46.7563084 ], + [ 10.3000435, 46.7562443 ], + [ 10.300126, 46.756164 ], + [ 10.3001571, 46.7561036 ], + [ 10.3001623, 46.7560768 ], + [ 10.300161, 46.7560522 ], + [ 10.2999098, 46.7558858 ], + [ 10.2998753, 46.7558516 ], + [ 10.2998671, 46.755821 ], + [ 10.2998802, 46.7557754 ], + [ 10.2999126, 46.7557232 ], + [ 10.2999203, 46.7556983 ], + [ 10.2999252, 46.7556674 ], + [ 10.299906, 46.7555979 ], + [ 10.2998781, 46.7555204 ], + [ 10.2998696, 46.7554672 ], + [ 10.2998697, 46.755424 ], + [ 10.2998901, 46.7553763 ], + [ 10.2999419, 46.7553339 ], + [ 10.3000234, 46.755296799999996 ], + [ 10.3000693, 46.7552668 ], + [ 10.3000923, 46.7552376 ], + [ 10.3001077, 46.7551878 ], + [ 10.3001219, 46.7550703 ], + [ 10.30015, 46.7549833 ], + [ 10.3001614, 46.7549048 ], + [ 10.3001644, 46.7548532 ], + [ 10.3001488, 46.7547283 ], + [ 10.3001521, 46.7546829 ], + [ 10.3001666, 46.754664 ], + [ 10.300221, 46.7545927 ], + [ 10.3002537, 46.7545303 ], + [ 10.3002624, 46.7544786 ], + [ 10.3002563, 46.754411 ], + [ 10.3002268, 46.7543027 ], + [ 10.3002239, 46.7542472 ], + [ 10.3002475, 46.7541994 ], + [ 10.3003085, 46.7540991 ], + [ 10.3003298, 46.7540534 ], + [ 10.3003465, 46.7539667 ], + [ 10.3003522, 46.7539048 ], + [ 10.3003509, 46.7537404 ], + [ 10.3003678, 46.7536741 ], + [ 10.3004437, 46.7535776 ], + [ 10.3005718, 46.7534613 ], + [ 10.3006495, 46.7533977 ], + [ 10.3007246, 46.7533484 ], + [ 10.3007623, 46.7533188 ], + [ 10.3007727, 46.7532979 ], + [ 10.3006908, 46.7531597 ], + [ 10.3006436, 46.7530405 ], + [ 10.3006211, 46.7529568 ], + [ 10.3006605, 46.7528194 ], + [ 10.3008826, 46.752593 ], + [ 10.30098, 46.7524541 ], + [ 10.3010549, 46.7523238 ], + [ 10.3011228, 46.7521695 ], + [ 10.3011531, 46.7520765 ], + [ 10.3012225, 46.7519663 ], + [ 10.3013106, 46.7518678 ], + [ 10.301347, 46.7517826 ], + [ 10.301379, 46.7517216 ], + [ 10.3014168, 46.7515561 ], + [ 10.3014377, 46.751395 ], + [ 10.3014932, 46.751237 ], + [ 10.3016056, 46.7510417 ], + [ 10.3017086, 46.7508384 ], + [ 10.3017327, 46.7507374 ], + [ 10.3017293, 46.7506733 ], + [ 10.301689, 46.750578 ], + [ 10.3016214, 46.7505074 ], + [ 10.3016097, 46.7503953 ], + [ 10.301616899999999, 46.7503148 ], + [ 10.3016135, 46.7502507 ], + [ 10.301651, 46.7501855 ], + [ 10.3017164, 46.7501077 ], + [ 10.3017668, 46.7500542 ], + [ 10.3017996, 46.7500253 ], + [ 10.3018091, 46.7499728 ], + [ 10.3018018, 46.7498366 ], + [ 10.3018145, 46.749752 ], + [ 10.3018486, 46.7496226 ], + [ 10.3018805, 46.7495616 ], + [ 10.3020123, 46.7493457 ], + [ 10.3021074, 46.7491627 ], + [ 10.302177, 46.7490404 ], + [ 10.3022381, 46.7488823 ], + [ 10.3022821, 46.7487087 ], + [ 10.3023259, 46.7485471 ], + [ 10.302351, 46.7483577 ], + [ 10.3024124, 46.7480953 ], + [ 10.302467, 46.7478451 ], + [ 10.3025121, 46.7475991 ], + [ 10.3025103, 46.7472419 ], + [ 10.3024531, 46.7467055 ], + [ 10.3025011, 46.7465759 ], + [ 10.302536, 46.7464626 ], + [ 10.3025429, 46.7463622 ], + [ 10.3025323, 46.7462861 ], + [ 10.3025287, 46.7462179 ], + [ 10.3025314, 46.7461457 ], + [ 10.3025881, 46.7460118 ], + [ 10.302644, 46.7458458 ], + [ 10.3026876, 46.7456802 ], + [ 10.3026909, 46.7455275 ], + [ 10.3026769, 46.7453713 ], + [ 10.3026292, 46.7452441 ], + [ 10.3024785, 46.7451034 ], + [ 10.3023798, 46.7450016 ], + [ 10.3023507, 46.7449019 ], + [ 10.3023336, 46.744794 ], + [ 10.3023378, 46.7446573 ], + [ 10.3023665, 46.7445362 ], + [ 10.3024366, 46.7444221 ], + [ 10.302474, 46.744357 ], + [ 10.3025053, 46.7442839 ], + [ 10.3025051, 46.7441715 ], + [ 10.3025268, 46.7440265 ], + [ 10.3026014, 46.7439041 ], + [ 10.3026663, 46.7438022 ], + [ 10.3026938, 46.7437654 ], + [ 10.30272, 46.7436564 ], + [ 10.3027076, 46.7435323 ], + [ 10.3026663, 46.7434169 ], + [ 10.3026125, 46.7432818 ], + [ 10.3026127, 46.7431774 ], + [ 10.3026169, 46.7430409 ], + [ 10.3026566, 46.7429115 ], + [ 10.3026797, 46.7427904 ], + [ 10.3026779, 46.7425416 ], + [ 10.3027094, 46.7423642 ], + [ 10.3027348, 46.7422873 ], + [ 10.3027477, 46.7419297 ], + [ 10.3027614, 46.7418491 ], + [ 10.3028103, 46.7417837 ], + [ 10.3028952, 46.7417333 ], + [ 10.3029809, 46.7416991 ], + [ 10.3030377, 46.7416736 ], + [ 10.3031116, 46.7416317 ], + [ 10.3031728, 46.7415819 ], + [ 10.3034324, 46.7412944 ], + [ 10.3037428, 46.741098 ], + [ 10.3039931, 46.7406944 ], + [ 10.3041747, 46.7404932 ], + [ 10.3042644, 46.7404106 ], + [ 10.3043254, 46.7403569 ], + [ 10.3043694, 46.7403076 ], + [ 10.3043723, 46.7402553 ], + [ 10.3043795, 46.7401749 ], + [ 10.3043581, 46.7400952 ], + [ 10.3043246, 46.7400198 ], + [ 10.3042985, 46.7399601 ], + [ 10.3042848, 46.7399164 ], + [ 10.304268, 46.7398325 ], + [ 10.3042646, 46.7397684 ], + [ 10.3042957, 46.7396913 ], + [ 10.3043268, 46.7396142 ], + [ 10.3043743, 46.7394606 ], + [ 10.3043649, 46.7393926 ], + [ 10.3043253, 46.7393092 ], + [ 10.3042451, 46.7392311 ], + [ 10.3041714, 46.7391686 ], + [ 10.3041461, 46.7391251 ], + [ 10.3041442, 46.739089 ], + [ 10.3041643, 46.7390363 ], + [ 10.3042729, 46.7388771 ], + [ 10.3043154, 46.7387998 ], + [ 10.3043592, 46.7387465 ], + [ 10.3044552, 46.7383507 ], + [ 10.3044964, 46.7381409 ], + [ 10.3045263, 46.7379797 ], + [ 10.304496199999999, 46.7378601 ], + [ 10.3043784, 46.7376141 ], + [ 10.3043257, 46.7375151 ], + [ 10.3043377, 46.7374024 ], + [ 10.3043889, 46.7372727 ], + [ 10.3044691, 46.7371341 ], + [ 10.3045158, 46.7370286 ], + [ 10.3045627, 46.7368027 ], + [ 10.3045557, 46.7366704 ], + [ 10.3045242, 46.7364624 ], + [ 10.3044416, 46.7363402 ], + [ 10.3042946, 46.7362073 ], + [ 10.3042393, 46.7361526 ], + [ 10.3042298, 46.7360805 ], + [ 10.3042321, 46.7360163 ], + [ 10.3042513, 46.7359476 ], + [ 10.3043114, 46.7358617 ], + [ 10.3044818, 46.7356648 ], + [ 10.3047836, 46.7354164 ], + [ 10.3048109, 46.7353756 ], + [ 10.3048209, 46.7353472 ], + [ 10.3048194, 46.7353191 ], + [ 10.3048111, 46.7352713 ], + [ 10.3047846, 46.7352197 ], + [ 10.3046777, 46.7351181 ], + [ 10.3045935, 46.7350719 ], + [ 10.3045498, 46.7350209 ], + [ 10.3045177, 46.7349695 ], + [ 10.3044979, 46.7349219 ], + [ 10.3044952, 46.7348698 ], + [ 10.3045089, 46.7348051 ], + [ 10.304511399999999, 46.7347449 ], + [ 10.3045131, 46.7346686 ], + [ 10.3045321, 46.7344715 ], + [ 10.3045545, 46.7343385 ], + [ 10.3046021, 46.7342489 ], + [ 10.3047367, 46.7341492 ], + [ 10.3048722, 46.7340655 ], + [ 10.3048929, 46.7340089 ], + [ 10.3049047, 46.7339081 ], + [ 10.3049178, 46.7338155 ], + [ 10.3049307, 46.7337349 ], + [ 10.304947, 46.73355 ], + [ 10.3049389, 46.7333976 ], + [ 10.3049114, 46.7333099 ], + [ 10.3048838, 46.7332385 ], + [ 10.3048969, 46.7331618 ], + [ 10.3048825, 46.7328893 ], + [ 10.3048714, 46.7327891 ], + [ 10.3048563, 46.7327213 ], + [ 10.304858, 46.732645 ], + [ 10.3048648, 46.7325565 ], + [ 10.3049134, 46.7324711 ], + [ 10.3050996, 46.7322496 ], + [ 10.3051776, 46.7321152 ], + [ 10.3052125, 46.7320019 ], + [ 10.3052571, 46.7313024 ], + [ 10.3053059, 46.7308035 ], + [ 10.3053063, 46.7301973 ], + [ 10.3052934, 46.7299529 ], + [ 10.3052734, 46.7298088 ], + [ 10.3052347, 46.7297416 ], + [ 10.3052031, 46.7296863 ], + [ 10.3052014, 46.7296541 ], + [ 10.3052113, 46.7296257 ], + [ 10.3054225, 46.7294279 ], + [ 10.305492600000001, 46.7293137 ], + [ 10.3054878, 46.7292857 ], + [ 10.3054085, 46.729103 ], + [ 10.3053894, 46.7289751 ], + [ 10.3053233, 46.7288242 ], + [ 10.3053008, 46.7287245 ], + [ 10.305254, 46.7286133 ], + [ 10.3052038, 46.7285463 ], + [ 10.3050939, 46.7284647 ], + [ 10.3049673, 46.7283916 ], + [ 10.3049248, 46.7283606 ], + [ 10.3049002, 46.7283292 ], + [ 10.3048871, 46.7282973 ], + [ 10.3048599, 46.7282338 ], + [ 10.3047663, 46.7280114 ], + [ 10.3047417, 46.7279799 ], + [ 10.3046415, 46.727850000000004 ], + [ 10.304659000000001, 46.7277933 ], + [ 10.3046674, 46.7277368 ], + [ 10.3047229, 46.7275789 ], + [ 10.3048483, 46.7274153 ], + [ 10.3049099, 46.7272492 ], + [ 10.3049473, 46.727184 ], + [ 10.3050127, 46.7271519 ], + [ 10.3050433, 46.7268507 ], + [ 10.3051976, 46.7261051 ], + [ 10.3054978, 46.7254891 ], + [ 10.3060606, 46.7247493 ], + [ 10.3064141, 46.7242589 ], + [ 10.3065154, 46.7237027 ], + [ 10.3064582, 46.7228275 ], + [ 10.3065112, 46.7220087 ], + [ 10.3066452, 46.7210972 ], + [ 10.307009, 46.7197702 ], + [ 10.307309, 46.7188742 ], + [ 10.3077288, 46.7177871 ], + [ 10.3085217, 46.7165924 ], + [ 10.3091015, 46.7155435 ], + [ 10.3093207, 46.7143913 ], + [ 10.3094297, 46.7135199 ], + [ 10.3098713, 46.7129192 ], + [ 10.3104953, 46.7122877 ], + [ 10.3106417, 46.7121651 ], + [ 10.3101207, 46.7113816 ], + [ 10.3094318, 46.7105033 ], + [ 10.3087951, 46.7097272 ], + [ 10.3079157, 46.7089257 ], + [ 10.3070957, 46.7081462 ], + [ 10.3064558, 46.7072792 ], + [ 10.3058318, 46.7060338 ], + [ 10.3052213, 46.7047187 ], + [ 10.3046145, 46.7035188 ], + [ 10.3039221, 46.7022003 ], + [ 10.3034195, 46.7011589 ], + [ 10.3026507, 46.7000639 ], + [ 10.3019553, 46.6990254 ], + [ 10.3014647, 46.6977325 ], + [ 10.3011053, 46.6968153 ], + [ 10.3005125, 46.6957985 ], + [ 10.2997695, 46.6950639 ], + [ 10.2981071, 46.694552 ], + [ 10.2968147, 46.6938013 ], + [ 10.2956015, 46.6925858 ], + [ 10.2949393, 46.6914899 ], + [ 10.2945749, 46.6903207 ], + [ 10.2942516, 46.6891234 ], + [ 10.2936161, 46.6877748 ], + [ 10.292781, 46.6866697 ], + [ 10.2915521, 46.6855689 ], + [ 10.2905911, 46.6844471 ], + [ 10.2901602, 46.6838575 ], + [ 10.2900197, 46.6834586 ], + [ 10.2901992, 46.6827734 ], + [ 10.2903646, 46.6822145 ], + [ 10.2917592, 46.6813159 ], + [ 10.2923103, 46.6808893 ], + [ 10.2930367, 46.6801214 ], + [ 10.2936905, 46.6799635 ], + [ 10.2940198, 46.6796842 ], + [ 10.2944354, 46.679531 ], + [ 10.2960543, 46.6791478 ], + [ 10.2968584, 46.6787696 ], + [ 10.297666, 46.6778909 ], + [ 10.2981744, 46.6774606 ], + [ 10.2991435, 46.6773937 ], + [ 10.3002995, 46.6773859 ], + [ 10.3005772, 46.6774837 ], + [ 10.3008831, 46.6773891 ], + [ 10.3015671, 46.6773142 ], + [ 10.3021467, 46.6771826 ], + [ 10.3025219, 46.6764543 ], + [ 10.302834, 46.6764961 ], + [ 10.3042328, 46.676152 ], + [ 10.3048457, 46.6757855 ], + [ 10.305384, 46.6755703 ], + [ 10.3058921, 46.6755346 ], + [ 10.3064724, 46.6752443 ], + [ 10.3079153, 46.674671000000004 ], + [ 10.3086254, 46.6746361 ], + [ 10.3095226, 46.6746872 ], + [ 10.3103278, 46.6744661 ], + [ 10.3107518, 46.6745477 ], + [ 10.3129562, 46.6739734 ], + [ 10.3128184, 46.6732247 ], + [ 10.312888300000001, 46.6727057 ], + [ 10.3128817, 46.6720184 ], + [ 10.3128315, 46.6718346 ], + [ 10.3129998, 46.6714369 ], + [ 10.3133728, 46.6704441 ], + [ 10.3140059, 46.6687753 ], + [ 10.3138686, 46.6686942 ], + [ 10.3080098, 46.6654635 ], + [ 10.3048206, 46.6626841 ], + [ 10.2953313, 46.6594656 ], + [ 10.2896828, 46.6577514 ], + [ 10.2879031, 46.657671 ], + [ 10.2869212, 46.6569485 ], + [ 10.2866432, 46.6567437 ], + [ 10.2859341, 46.6569472 ], + [ 10.2854362, 46.6571117 ], + [ 10.2848502, 46.6574344 ], + [ 10.2841023, 46.6574446 ], + [ 10.2839373, 46.6568916 ], + [ 10.2837404, 46.656981 ], + [ 10.2830459, 46.6573522 ], + [ 10.2822795, 46.6577727 ], + [ 10.2814595, 46.6581821 ], + [ 10.2806306, 46.6585628 ], + [ 10.2799143, 46.6588633 ], + [ 10.2795288, 46.6590467 ], + [ 10.2794142, 46.6588689 ], + [ 10.2789342, 46.6583138 ], + [ 10.2783449, 46.6576504 ], + [ 10.2770348, 46.656021 ], + [ 10.2758687, 46.6549259 ], + [ 10.2753129, 46.6543968 ], + [ 10.2729991, 46.6528497 ], + [ 10.2711558, 46.651609 ], + [ 10.2686072, 46.649897 ], + [ 10.2678477, 46.6493866 ], + [ 10.2666813, 46.6485964 ], + [ 10.2663881, 46.6483995 ], + [ 10.2662827, 46.6483299 ], + [ 10.2659627, 46.6481185 ], + [ 10.2654884, 46.6478555 ], + [ 10.2652319, 46.6477132 ], + [ 10.2625553, 46.6462286 ], + [ 10.2580896, 46.6437514 ], + [ 10.2572023, 46.6431708 ], + [ 10.2554103, 46.6438702 ], + [ 10.2516342, 46.6444559 ], + [ 10.2465209, 46.6436695 ], + [ 10.2462247, 46.6438435 ], + [ 10.2460447, 46.6439321 ], + [ 10.2457141, 46.6440167 ], + [ 10.2453009, 46.6440967 ], + [ 10.2450957, 46.64422 ], + [ 10.2448201, 46.6444648 ], + [ 10.2441611, 46.6446744 ], + [ 10.2437959, 46.6447193 ], + [ 10.2431073, 46.6447681 ], + [ 10.2426863, 46.6448885 ], + [ 10.2420687, 46.6450917 ], + [ 10.241645, 46.6450971 ], + [ 10.241319, 46.6450323 ], + [ 10.240941, 46.6449108 ], + [ 10.2398597, 46.6430628 ], + [ 10.2397895, 46.6429428 ], + [ 10.2390077, 46.6419294 ], + [ 10.2382873, 46.6406335 ], + [ 10.2435494, 46.6385088 ], + [ 10.247525, 46.6319817 ], + [ 10.2491036, 46.6298855 ], + [ 10.2500813, 46.6269583 ], + [ 10.2505622, 46.6248276 ], + [ 10.2521106, 46.6213807 ], + [ 10.2490319, 46.6182654 ], + [ 10.2449054, 46.6221489 ], + [ 10.2447876, 46.6221675 ], + [ 10.2411882, 46.6270457 ], + [ 10.2403166, 46.6313579 ], + [ 10.2403299, 46.6321847 ], + [ 10.2403432, 46.6323854 ], + [ 10.2404432, 46.6325582 ], + [ 10.2404242, 46.6327096 ], + [ 10.2402429, 46.6328053 ], + [ 10.2401632, 46.6332727 ], + [ 10.2401725, 46.6334337 ], + [ 10.2402476, 46.6336951 ], + [ 10.2401277, 46.633833 ], + [ 10.2401207, 46.6340689 ], + [ 10.2402205, 46.6342485 ], + [ 10.2402491, 46.6344067 ], + [ 10.2402652, 46.6350931 ], + [ 10.2401714, 46.6352004 ], + [ 10.2400125, 46.6352915 ], + [ 10.2395894, 46.6353339 ], + [ 10.2391757, 46.635327 ], + [ 10.2388899, 46.6353512 ], + [ 10.2387501, 46.6353137 ], + [ 10.2386598, 46.6352478 ], + [ 10.2385995, 46.6351264 ], + [ 10.2385183, 46.6350379 ], + [ 10.2383963, 46.6349657 ], + [ 10.2382572, 46.6349233 ], + [ 10.2380385, 46.6349153 ], + [ 10.2376453, 46.6349287 ], + [ 10.2375258, 46.6349171 ], + [ 10.2374199, 46.6348743 ], + [ 10.2373328, 46.6347764 ], + [ 10.2372083, 46.6346963 ], + [ 10.2369721, 46.6346338 ], + [ 10.2368699, 46.6345469 ], + [ 10.2360293, 46.6343968 ], + [ 10.2358428, 46.6342698 ], + [ 10.2357018, 46.6340997 ], + [ 10.2356715, 46.6338563 ], + [ 10.2355229, 46.6337722 ], + [ 10.2353858, 46.6335905 ], + [ 10.2351477, 46.6334834 ], + [ 10.234861, 46.6334485 ], + [ 10.2347119, 46.6334074 ], + [ 10.2343872, 46.6332648 ], + [ 10.2342579, 46.6331269 ], + [ 10.2341033, 46.633099 ], + [ 10.2339892, 46.6330495 ], + [ 10.2338171, 46.6330442 ], + [ 10.2336414, 46.6330094 ], + [ 10.2334475, 46.633025 ], + [ 10.2332862, 46.632997 ], + [ 10.2331574, 46.6329973 ], + [ 10.2330356, 46.6329618 ], + [ 10.232931, 46.632951 ], + [ 10.2329035, 46.6328644 ], + [ 10.2328459, 46.6328278 ], + [ 10.2326635, 46.6328239 ], + [ 10.2324207, 46.6327502 ], + [ 10.2322339, 46.6326586 ], + [ 10.2320119, 46.6326125 ], + [ 10.2318079, 46.6325131 ], + [ 10.2315136, 46.6323933 ], + [ 10.2314261, 46.6323416 ], + [ 10.2311617, 46.6322924 ], + [ 10.230923, 46.6321793 ], + [ 10.230748, 46.6321577 ], + [ 10.2306585, 46.6321311 ], + [ 10.2305392, 46.6320727 ], + [ 10.2302559, 46.6318902 ], + [ 10.2300914, 46.6318174 ], + [ 10.2297733, 46.6317489 ], + [ 10.2296325, 46.6316742 ], + [ 10.2294106, 46.6316535 ], + [ 10.2292492, 46.6316179 ], + [ 10.229034, 46.6315127 ], + [ 10.2288565, 46.6313782 ], + [ 10.2285716, 46.631122 ], + [ 10.2283963, 46.6308795 ], + [ 10.2282664, 46.6307279 ], + [ 10.228202, 46.6306913 ], + [ 10.2280292, 46.6306286 ], + [ 10.2279329, 46.6305584 ], + [ 10.2278322, 46.630418399999996 ], + [ 10.2277852, 46.6301872 ], + [ 10.2277398, 46.6300605 ], + [ 10.2276603, 46.6299862 ], + [ 10.2275579, 46.629952 ], + [ 10.2274568, 46.6299554 ], + [ 10.2272485, 46.6300121 ], + [ 10.2269849, 46.6300485 ], + [ 10.2268524, 46.6300395 ], + [ 10.2266723, 46.6300655 ], + [ 10.2264162, 46.6300537 ], + [ 10.2262584, 46.6299573 ], + [ 10.2261218, 46.6297806 ], + [ 10.2260431, 46.6297153 ], + [ 10.2258987, 46.6296808 ], + [ 10.2256683, 46.6296792 ], + [ 10.225537, 46.6296484 ], + [ 10.2253239, 46.6295329 ], + [ 10.2248946, 46.6294158 ], + [ 10.2246835, 46.6293351 ], + [ 10.2244672, 46.6291747 ], + [ 10.2241857, 46.6291247 ], + [ 10.2240334, 46.6289027 ], + [ 10.2238782, 46.6286479 ], + [ 10.2236581, 46.6285004 ], + [ 10.2235317, 46.6283192 ], + [ 10.2234945, 46.6283007 ], + [ 10.2234426, 46.6283073 ], + [ 10.2232099, 46.6283371 ], + [ 10.2224629, 46.6284471 ], + [ 10.2222314, 46.6284444 ], + [ 10.2187371, 46.6271929 ], + [ 10.2161802, 46.6256314 ], + [ 10.2149717, 46.6254253 ], + [ 10.2138075, 46.6250915 ], + [ 10.2125601, 46.6247002 ], + [ 10.2109482, 46.6247921 ], + [ 10.2094378, 46.6253122 ], + [ 10.2082219, 46.6258981 ], + [ 10.2059755, 46.6263348 ], + [ 10.2042888, 46.6271225 ], + [ 10.202475, 46.6267105 ], + [ 10.2001586, 46.6263163 ], + [ 10.1978482, 46.6259958 ], + [ 10.1940356, 46.6254763 ], + [ 10.1937899, 46.6255781 ], + [ 10.1935327, 46.6256513 ], + [ 10.1927642, 46.625934 ], + [ 10.1879869, 46.625586 ], + [ 10.1830673, 46.6239694 ], + [ 10.1738424, 46.6200375 ], + [ 10.1624182, 46.6157048 ], + [ 10.1622163, 46.6158508 ], + [ 10.1620295, 46.6159303 ], + [ 10.1616076, 46.6160135 ], + [ 10.1614515, 46.6160118 ], + [ 10.1612998, 46.6160637 ], + [ 10.1609277, 46.6160983 ], + [ 10.1608086, 46.6161121 ], + [ 10.1605822, 46.6161775 ], + [ 10.1603382, 46.6161727 ], + [ 10.1600428, 46.6160727 ], + [ 10.1597524, 46.6160657 ], + [ 10.1596326, 46.6160314 ], + [ 10.1593494, 46.6158638 ], + [ 10.1592543, 46.615766 ], + [ 10.1591943, 46.6156362 ], + [ 10.1591126, 46.6155409 ], + [ 10.1589661, 46.6154922 ], + [ 10.1588128, 46.6153084 ], + [ 10.1586264, 46.6151357 ], + [ 10.1584975, 46.6150747 ], + [ 10.1582894, 46.6150362 ], + [ 10.1580963, 46.614925 ], + [ 10.1579279, 46.6149002 ], + [ 10.1571562, 46.614918 ], + [ 10.1569695, 46.6148832 ], + [ 10.1567762, 46.6148215 ], + [ 10.1563203, 46.614990399999996 ], + [ 10.1558419, 46.6151079 ], + [ 10.1555112, 46.6149465 ], + [ 10.155415, 46.6149359 ], + [ 10.1546193, 46.6151133 ], + [ 10.1543535, 46.6150546 ], + [ 10.1541539, 46.6149759 ], + [ 10.1538536, 46.6149765 ], + [ 10.1534751, 46.615017 ], + [ 10.152858, 46.6148751 ], + [ 10.1526063, 46.6148024 ], + [ 10.1522029, 46.6146708 ], + [ 10.1515193, 46.6146163 ], + [ 10.1513886, 46.61452 ], + [ 10.1512845, 46.6143926 ], + [ 10.1512281, 46.6142868 ], + [ 10.1509775, 46.6142444 ], + [ 10.1506748, 46.614013 ], + [ 10.1505488, 46.6138586 ], + [ 10.1500889, 46.6136326 ], + [ 10.1498183, 46.6134346 ], + [ 10.1494045, 46.6132869 ], + [ 10.1492037, 46.6132723 ], + [ 10.1490152, 46.613198 ], + [ 10.1485688, 46.6129122 ], + [ 10.1484877, 46.6128019 ], + [ 10.1480027, 46.6126689 ], + [ 10.1479196, 46.6125545 ], + [ 10.1477941, 46.6124743 ], + [ 10.147651, 46.6124175 ], + [ 10.1473006, 46.6123545 ], + [ 10.1469615, 46.6122147 ], + [ 10.1466659, 46.6121233 ], + [ 10.1465028, 46.612126 ], + [ 10.1462776, 46.6120816 ], + [ 10.1461354, 46.612003 ], + [ 10.1458452, 46.6119321 ], + [ 10.1456515, 46.6117508 ], + [ 10.1452033, 46.6114783 ], + [ 10.1449255, 46.6113998 ], + [ 10.1446387, 46.6112733 ], + [ 10.1443912, 46.6112157 ], + [ 10.1441712, 46.6111036 ], + [ 10.1438627, 46.6108555 ], + [ 10.1435185, 46.6106862 ], + [ 10.1433855, 46.6106829 ], + [ 10.1432231, 46.6106988 ], + [ 10.1426043, 46.6109104 ], + [ 10.1423208, 46.610781 ], + [ 10.1416944, 46.6108591 ], + [ 10.1413774, 46.6108745 ], + [ 10.140947, 46.6109458 ], + [ 10.1405142, 46.6108985 ], + [ 10.1403044, 46.610908 ], + [ 10.1400951, 46.6109613 ], + [ 10.1398005, 46.6109142 ], + [ 10.1394008, 46.6109328 ], + [ 10.1392083, 46.6110085 ], + [ 10.1390216, 46.6110271 ], + [ 10.1388033, 46.6109621 ], + [ 10.1385414, 46.6108485 ], + [ 10.1381619, 46.6107563 ], + [ 10.1373591, 46.6107401 ], + [ 10.1370753, 46.610373 ], + [ 10.1370694, 46.6101542 ], + [ 10.1369966, 46.6099721 ], + [ 10.1369779, 46.6098252 ], + [ 10.1370019, 46.6097553 ], + [ 10.1369739, 46.6096287 ], + [ 10.1368754, 46.6094005 ], + [ 10.1367532, 46.6092195 ], + [ 10.1367673, 46.6089889 ], + [ 10.1369635, 46.6086658 ], + [ 10.1368222, 46.6086305 ], + [ 10.1366222, 46.6083838 ], + [ 10.1366159, 46.6079978 ], + [ 10.1366874, 46.6078556 ], + [ 10.1364299, 46.6077395 ], + [ 10.1362116, 46.6075365 ], + [ 10.1359736, 46.6075359 ], + [ 10.1354138, 46.6076887 ], + [ 10.1346064, 46.607891 ], + [ 10.1341757, 46.6076412 ], + [ 10.1339403, 46.6073658 ], + [ 10.1336964, 46.6072437 ], + [ 10.133483, 46.6071895 ], + [ 10.1332749, 46.6068927 ], + [ 10.1330821, 46.6067087 ], + [ 10.1328739, 46.606681 ], + [ 10.1325844, 46.6064131 ], + [ 10.1323864, 46.6062946 ], + [ 10.1318418, 46.6062978 ], + [ 10.131587, 46.6061278 ], + [ 10.1314135, 46.6060479 ], + [ 10.1307207, 46.6060057 ], + [ 10.1300971, 46.606004 ], + [ 10.1294076, 46.6057439 ], + [ 10.1290653, 46.6056511 ], + [ 10.128584, 46.6055082 ], + [ 10.1279801, 46.6052593 ], + [ 10.1276542, 46.6050805 ], + [ 10.1274261, 46.6051585 ], + [ 10.1272259, 46.6052565 ], + [ 10.1269051, 46.6054493 ], + [ 10.1267078, 46.6053847 ], + [ 10.1265439, 46.6054945 ], + [ 10.1260341, 46.6056218 ], + [ 10.1255319, 46.6056772 ], + [ 10.125191300000001, 46.6056466 ], + [ 10.1247214, 46.6056574 ], + [ 10.1245553, 46.6057767 ], + [ 10.1242621, 46.6059454 ], + [ 10.1238391, 46.6061199 ], + [ 10.1235751, 46.6060117 ], + [ 10.1229534, 46.6061357 ], + [ 10.1221807, 46.6062226 ], + [ 10.1219575, 46.6061131 ], + [ 10.1216363, 46.6061062 ], + [ 10.1212571, 46.6059521 ], + [ 10.120944, 46.6059595 ], + [ 10.1205341, 46.60604 ], + [ 10.1202226, 46.6059249 ], + [ 10.1198761, 46.6058361 ], + [ 10.119365, 46.605934 ], + [ 10.1190567, 46.6059446 ], + [ 10.1185448, 46.606079199999996 ], + [ 10.1181047, 46.606275600000004 ], + [ 10.1179019, 46.6063027 ], + [ 10.1173965, 46.6063075 ], + [ 10.1168292, 46.60644 ], + [ 10.1157633, 46.6068371 ], + [ 10.1153525, 46.6069126 ], + [ 10.1147261, 46.6069898 ], + [ 10.1143263, 46.6069776 ], + [ 10.1134999, 46.6070986 ], + [ 10.1133165, 46.6071823 ], + [ 10.1131765, 46.6073032 ], + [ 10.1130293, 46.6073695 ], + [ 10.1128454, 46.6075089 ], + [ 10.1127744, 46.607607 ], + [ 10.1125824, 46.607731 ], + [ 10.112318, 46.6078483 ], + [ 10.1120109, 46.607949 ], + [ 10.1115777, 46.6080231 ], + [ 10.1112226, 46.6081195 ], + [ 10.1108643, 46.6081724 ], + [ 10.1106542, 46.6083069 ], + [ 10.1100692, 46.6084144 ], + [ 10.1093203, 46.6086979 ], + [ 10.1091537, 46.6088168 ], + [ 10.1090213, 46.608992 ], + [ 10.1088501, 46.6091676 ], + [ 10.1085955, 46.6093285 ], + [ 10.1083727, 46.609434 ], + [ 10.1080079, 46.6095234 ], + [ 10.1076955, 46.609824 ], + [ 10.1073319, 46.6100749 ], + [ 10.1067679, 46.6105635 ], + [ 10.1066606, 46.6106954 ], + [ 10.1064863, 46.610635 ], + [ 10.1061989, 46.6106595 ], + [ 10.1058373, 46.6107334 ], + [ 10.1055568, 46.6108248 ], + [ 10.1054316, 46.6107249 ], + [ 10.1052665, 46.6106823 ], + [ 10.1049612, 46.6106984 ], + [ 10.1047368, 46.6106788 ], + [ 10.1046298, 46.6106965 ], + [ 10.1043889, 46.6107679 ], + [ 10.1040659, 46.6107977 ], + [ 10.1037438, 46.6106926 ], + [ 10.1035767, 46.6106706 ], + [ 10.1034298, 46.6107011 ], + [ 10.1033045, 46.6107707 ], + [ 10.1031407, 46.6108053 ], + [ 10.1029691, 46.6108123 ], + [ 10.1024989, 46.6107101 ], + [ 10.1023629, 46.6107176 ], + [ 10.1015432, 46.6098765 ], + [ 10.1014177, 46.609249 ], + [ 10.1013581, 46.6087196 ], + [ 10.1013803, 46.6081189 ], + [ 10.100679, 46.6070132 ], + [ 10.0998034, 46.606486 ], + [ 10.0994356, 46.6062158 ], + [ 10.0990229, 46.605899 ], + [ 10.0988456, 46.605457799999996 ], + [ 10.0988447, 46.6049917 ], + [ 10.099368, 46.603399 ], + [ 10.0998644, 46.6030484 ], + [ 10.1004548, 46.6017751 ], + [ 10.1009782, 46.6012993 ], + [ 10.1014032, 46.6009753 ], + [ 10.1006523, 46.6002026 ], + [ 10.1001799, 46.5996676 ], + [ 10.1000068, 46.5990348 ], + [ 10.098912, 46.5982929 ], + [ 10.0980022, 46.5980254 ], + [ 10.0976969, 46.5976844 ], + [ 10.0980135, 46.5972095 ], + [ 10.0979084, 46.596696 ], + [ 10.0980213, 46.5964722 ], + [ 10.0976196, 46.5957926 ], + [ 10.0974211, 46.5949474 ], + [ 10.0972248, 46.5945889 ], + [ 10.0973455, 46.5940203 ], + [ 10.0970206, 46.5934642 ], + [ 10.0970932, 46.5929917 ], + [ 10.0974604, 46.5924999 ], + [ 10.0977169, 46.5921112 ], + [ 10.0985216, 46.5916101 ], + [ 10.0989865, 46.5910477 ], + [ 10.0994165, 46.5906962 ], + [ 10.1001744, 46.5901926 ], + [ 10.1007401, 46.5896769 ], + [ 10.1011669, 46.5891796 ], + [ 10.1003829, 46.5880195 ], + [ 10.1005899, 46.5878426 ], + [ 10.1001661, 46.5869412 ], + [ 10.1002161, 46.5864968 ], + [ 10.1003863, 46.5862453 ], + [ 10.100229, 46.5860892 ], + [ 10.100542, 46.5858789 ], + [ 10.1006906, 46.5856249 ], + [ 10.100924, 46.5853913 ], + [ 10.1012327, 46.5852034 ], + [ 10.10154, 46.5850795 ], + [ 10.1014638, 46.5844233 ], + [ 10.101149, 46.5841939 ], + [ 10.1009627, 46.5839094 ], + [ 10.1008418, 46.5835479 ], + [ 10.1006355, 46.583011 ], + [ 10.1007544, 46.5827494 ], + [ 10.0990238, 46.5821485 ], + [ 10.0978335, 46.5810846 ], + [ 10.0975085, 46.5806569 ], + [ 10.097104, 46.5801399 ], + [ 10.096777, 46.5796885 ], + [ 10.0965623, 46.5789915 ], + [ 10.0961409, 46.5784578 ], + [ 10.0958716, 46.5777421 ], + [ 10.0955898, 46.5773399 ], + [ 10.0951437, 46.5772118 ], + [ 10.0944997, 46.5771057 ], + [ 10.0937945, 46.5768444 ], + [ 10.0930411, 46.5768526 ], + [ 10.0925432, 46.5769682 ], + [ 10.0917764, 46.5767649 ], + [ 10.0912475, 46.5766504 ], + [ 10.0902727, 46.5765695 ], + [ 10.0881973, 46.5760868 ], + [ 10.0875584, 46.576004 ], + [ 10.0869476, 46.5760045 ], + [ 10.0864439, 46.575829 ], + [ 10.0841139, 46.5756176 ], + [ 10.083496, 46.5754611 ], + [ 10.083075, 46.5752728 ], + [ 10.0826998, 46.5752545 ], + [ 10.0818049, 46.5754886 ], + [ 10.0801552, 46.575327 ], + [ 10.0793183, 46.5752339 ], + [ 10.0786732, 46.5751226 ], + [ 10.0782596, 46.5754287 ], + [ 10.0779022, 46.5755768 ], + [ 10.0776619, 46.5757186 ], + [ 10.0773899, 46.575878 ], + [ 10.077058, 46.5759972 ], + [ 10.0766522, 46.576158 ], + [ 10.0763134, 46.5762855 ], + [ 10.0758059, 46.5766015 ], + [ 10.0754338, 46.5767851 ], + [ 10.0750221, 46.5772094 ], + [ 10.0746398, 46.5775341 ], + [ 10.0744154, 46.5778507 ], + [ 10.0741507, 46.5781277 ], + [ 10.0740063, 46.5783274 ], + [ 10.0738418, 46.5785019 ], + [ 10.0736673, 46.5788042 ], + [ 10.0734442, 46.5792495 ], + [ 10.0732759, 46.5794946 ], + [ 10.0731736, 46.5797562 ], + [ 10.073113, 46.5798701 ], + [ 10.0729852, 46.5801439 ], + [ 10.0728645, 46.5803791 ], + [ 10.0727399, 46.5806348 ], + [ 10.0725164, 46.5807525 ], + [ 10.0724068, 46.5810484 ], + [ 10.0713556, 46.5823654 ], + [ 10.0712567, 46.5824956 ], + [ 10.0709276, 46.582792 ], + [ 10.0702864, 46.5832623 ], + [ 10.0695129, 46.5838662 ], + [ 10.0690644, 46.5838531 ], + [ 10.0682939, 46.5838314 ], + [ 10.0670821, 46.5838768 ], + [ 10.0662867, 46.5839142 ], + [ 10.0656291, 46.5840313 ], + [ 10.064961, 46.5842008 ], + [ 10.0641106, 46.5844312 ], + [ 10.0637169, 46.5845412 ], + [ 10.0634654, 46.5846036 ], + [ 10.062928, 46.5848114 ], + [ 10.0624511, 46.5850216 ], + [ 10.062105, 46.5853045 ], + [ 10.0616066, 46.5856773 ], + [ 10.0609633, 46.5868478 ], + [ 10.0608259, 46.5870588 ], + [ 10.0604385, 46.5874008 ], + [ 10.0600218, 46.5877084 ], + [ 10.0596149, 46.5879833 ], + [ 10.059062, 46.5881923 ], + [ 10.058933, 46.5882241 ], + [ 10.0587425, 46.5881988 ], + [ 10.0585548, 46.5881806 ], + [ 10.0583649, 46.5881687 ], + [ 10.0581746, 46.5880984 ], + [ 10.0580274, 46.5880901 ], + [ 10.0578294, 46.5880451 ], + [ 10.0576354, 46.5880829 ], + [ 10.0574951, 46.5881024 ], + [ 10.057325, 46.5880946 ], + [ 10.0571044, 46.5881222 ], + [ 10.0570224, 46.5881304 ], + [ 10.0568695, 46.5881564 ], + [ 10.0566828, 46.5882102 ], + [ 10.0563981, 46.5882113 ], + [ 10.0561948, 46.588261 ], + [ 10.0559804, 46.5882318 ], + [ 10.0557498, 46.5881857 ], + [ 10.0554835, 46.5880785 ], + [ 10.0551036, 46.5880026 ], + [ 10.0549868, 46.5881008 ], + [ 10.0551077, 46.5882555 ], + [ 10.0551303, 46.5883683 ], + [ 10.0551561, 46.5884469 ], + [ 10.0551815, 46.5886335 ], + [ 10.0551163, 46.58877 ], + [ 10.0549764, 46.5889308 ], + [ 10.0547071, 46.588982 ], + [ 10.0545292, 46.5890311 ], + [ 10.0543675, 46.5890618 ], + [ 10.054102, 46.5891237 ], + [ 10.0536532, 46.5891566 ], + [ 10.0529512, 46.5892016 ], + [ 10.0519271, 46.5893188 ], + [ 10.050399, 46.5895276 ], + [ 10.050234, 46.5896259 ], + [ 10.0496029, 46.5901255 ], + [ 10.0488196, 46.5908537 ], + [ 10.0484358, 46.591083 ], + [ 10.0481985, 46.5912396 ], + [ 10.0478556, 46.5914383 ], + [ 10.0474381, 46.5916459 ], + [ 10.0469106, 46.5918767 ], + [ 10.0463102, 46.5921335 ], + [ 10.0456885, 46.5923386 ], + [ 10.0454605, 46.5924834 ], + [ 10.0450923, 46.5926835 ], + [ 10.0448551, 46.5928419 ], + [ 10.0446608, 46.5929575 ], + [ 10.0445189, 46.5930622 ], + [ 10.0443239, 46.5932646 ], + [ 10.0441332, 46.5933707 ], + [ 10.043863, 46.5935227 ], + [ 10.0435742, 46.5936071 ], + [ 10.0431899, 46.593693 ], + [ 10.0427754, 46.5937634 ], + [ 10.04234, 46.5938383 ], + [ 10.0418955, 46.5939107 ], + [ 10.041376, 46.5940017 ], + [ 10.0411243, 46.5940795 ], + [ 10.0405395, 46.5943062 ], + [ 10.0397722, 46.594691 ], + [ 10.0403009, 46.595876 ], + [ 10.0402821, 46.5960276 ], + [ 10.0401767, 46.596227999999996 ], + [ 10.0400495, 46.5964344 ], + [ 10.0398905, 46.596555 ], + [ 10.038938, 46.597961 ], + [ 10.0384702, 46.5988226 ], + [ 10.0380227, 46.5993923 ], + [ 10.0377848, 46.5998261 ], + [ 10.0376549, 46.6002635 ], + [ 10.0376701, 46.6005786 ], + [ 10.0375152, 46.6009571 ], + [ 10.0374164, 46.6020249 ], + [ 10.0376009, 46.6027042 ], + [ 10.0374267, 46.6029517 ], + [ 10.0374022, 46.6035276 ], + [ 10.0372326, 46.6038701 ], + [ 10.0371222, 46.604374 ], + [ 10.0372587, 46.6048877 ], + [ 10.0373179, 46.6058815 ], + [ 10.0371981, 46.6065803 ], + [ 10.0380594, 46.6067871 ], + [ 10.0384794, 46.6066777 ], + [ 10.0387763, 46.6066242 ], + [ 10.0392846, 46.6067198 ], + [ 10.0394141, 46.607004 ], + [ 10.0394408, 46.6073714 ], + [ 10.0394258, 46.6080603 ], + [ 10.0396719, 46.6085304 ], + [ 10.0397009, 46.6085858 ], + [ 10.0397378, 46.6086562 ], + [ 10.0401812, 46.6092033 ], + [ 10.0402523, 46.6092713 ], + [ 10.0407314, 46.6097297 ], + [ 10.0415778, 46.6101857 ], + [ 10.0416556, 46.610332 ], + [ 10.0418346, 46.6106686 ], + [ 10.0419054, 46.6112412 ], + [ 10.0420975, 46.6117535 ], + [ 10.0422896, 46.6120186 ], + [ 10.0423015, 46.612035 ], + [ 10.0425434, 46.6123688 ], + [ 10.0426396, 46.6124788 ], + [ 10.0430109, 46.6129035 ], + [ 10.0432992, 46.6135161 ], + [ 10.0435454, 46.6141027 ], + [ 10.0437039, 46.6147994 ], + [ 10.0437303, 46.615107 ], + [ 10.0437638, 46.6154991 ], + [ 10.0435337, 46.6163486 ], + [ 10.0433885, 46.6172655 ], + [ 10.0433872, 46.6172814 ], + [ 10.0433366, 46.6178985 ], + [ 10.0431887, 46.6179351 ], + [ 10.0426843, 46.6180601 ], + [ 10.0424161, 46.6181266 ], + [ 10.0420776, 46.6181809 ], + [ 10.0414026, 46.6182893 ], + [ 10.0411435, 46.6183865 ], + [ 10.040709, 46.6185495 ], + [ 10.0405213, 46.6186199 ], + [ 10.0404474, 46.6187615 ], + [ 10.0403692, 46.6189115 ], + [ 10.0402328, 46.6191729 ], + [ 10.0401974, 46.6196507 ], + [ 10.0401838, 46.6198347 ], + [ 10.0401579, 46.6205013 ], + [ 10.0403115, 46.6212502 ], + [ 10.0403871, 46.6219208 ], + [ 10.040594, 46.6227081 ], + [ 10.0406143, 46.623299 ], + [ 10.0406809, 46.6239697 ], + [ 10.0407739, 46.6246624 ], + [ 10.0408915, 46.6251709 ], + [ 10.0407683, 46.6255473 ], + [ 10.0405975, 46.62612 ], + [ 10.0403243, 46.626804 ], + [ 10.0401186, 46.6273487 ], + [ 10.0399066, 46.6280835 ], + [ 10.0397939, 46.6286783 ], + [ 10.0400481, 46.6289362 ], + [ 10.0404839, 46.6293222 ], + [ 10.0404587, 46.629799 ], + [ 10.040386, 46.6303577 ], + [ 10.0401523, 46.6308293 ], + [ 10.0402548, 46.6312112 ], + [ 10.0404327, 46.631632 ], + [ 10.0407572, 46.6321296 ], + [ 10.0411801, 46.6329236 ], + [ 10.0416508, 46.6336589 ], + [ 10.0419518, 46.634382 ], + [ 10.0423081, 46.6351829 ], + [ 10.0427832, 46.6358552 ], + [ 10.043499, 46.636711 ], + [ 10.0440791, 46.6374951 ], + [ 10.0444945, 46.6376233 ], + [ 10.0454277, 46.6378539 ], + [ 10.0467305, 46.6381274 ], + [ 10.0470755, 46.6383715 ], + [ 10.0480423, 46.6387391 ], + [ 10.049117, 46.6391096 ], + [ 10.049877, 46.63966 ], + [ 10.0500511, 46.6399827 ], + [ 10.0501659, 46.6401291 ], + [ 10.0502055, 46.6403575 ], + [ 10.050192, 46.6404991 ], + [ 10.0501817, 46.6406145 ], + [ 10.0501516, 46.6407285 ], + [ 10.0501483, 46.6408969 ], + [ 10.0501323, 46.6410394 ], + [ 10.0501285, 46.6411557 ], + [ 10.0501144, 46.6412396 ], + [ 10.0501027, 46.6413173 ], + [ 10.0500878, 46.6414544 ], + [ 10.0501711, 46.6414809 ], + [ 10.0502374, 46.6415086 ], + [ 10.050353, 46.6415589 ], + [ 10.0503745, 46.6416909 ], + [ 10.0503995, 46.6418463 ], + [ 10.0504401, 46.6419978 ], + [ 10.0504688, 46.642072 ], + [ 10.0504854, 46.6421744 ], + [ 10.050501, 46.6422471 ], + [ 10.0505813, 46.6422619 ], + [ 10.0506313, 46.6422701 ], + [ 10.0506982, 46.6422762 ], + [ 10.0508351, 46.6423036 ], + [ 10.0508868, 46.6423604 ], + [ 10.0509563, 46.6424421 ], + [ 10.05104, 46.6425172 ], + [ 10.0511379, 46.6425894 ], + [ 10.0512277, 46.6426887 ], + [ 10.0513373, 46.642795 ], + [ 10.0514467, 46.6428958 ], + [ 10.0515034, 46.6429489 ], + [ 10.0516659, 46.64311 ], + [ 10.0517801, 46.643236 ], + [ 10.051868, 46.6433174 ], + [ 10.0520056, 46.6434402 ], + [ 10.0521194, 46.6435554 ], + [ 10.0522052, 46.6436521 ], + [ 10.052363, 46.6437917 ], + [ 10.0524405, 46.643876 ], + [ 10.0525048, 46.6439586 ], + [ 10.05258, 46.6440915 ], + [ 10.0525657, 46.644207 ], + [ 10.0525262, 46.6443121 ], + [ 10.0525069, 46.6443962 ], + [ 10.0524952, 46.6445126 ], + [ 10.0525123, 46.6446293 ], + [ 10.0525313, 46.6447614 ], + [ 10.0525471, 46.6449142 ], + [ 10.0525839, 46.6450711 ], + [ 10.0525884, 46.6451647 ], + [ 10.0526091, 46.6453084 ], + [ 10.0526493, 46.6454869 ], + [ 10.0526716, 46.6456414 ], + [ 10.0526885, 46.6457897 ], + [ 10.0527096, 46.6459055 ], + [ 10.0527126, 46.6459937 ], + [ 10.0527218, 46.646071 ], + [ 10.0527567, 46.6461713 ], + [ 10.0527688, 46.6462575 ], + [ 10.0527834, 46.6463383 ], + [ 10.0527969, 46.6464254 ], + [ 10.0527225, 46.646505 ], + [ 10.0525962, 46.6465963 ], + [ 10.052484, 46.6466801 ], + [ 10.0523719, 46.6467657 ], + [ 10.0522725, 46.6468421 ], + [ 10.0521897, 46.6469065 ], + [ 10.0521028, 46.6469629 ], + [ 10.0519468, 46.6470654 ], + [ 10.0518237, 46.6471359 ], + [ 10.0517259, 46.6471835 ], + [ 10.051654, 46.6472207 ], + [ 10.0515344, 46.6472803 ], + [ 10.0513741, 46.6473712 ], + [ 10.0514686, 46.6473823 ], + [ 10.0516169, 46.647396 ], + [ 10.0517502, 46.6473947 ], + [ 10.0519023, 46.6474065 ], + [ 10.0520267, 46.6474108 ], + [ 10.0521197, 46.6474128 ], + [ 10.052235, 46.6474208 ], + [ 10.0524048, 46.647526 ], + [ 10.0525185, 46.6476015 ], + [ 10.0527051, 46.6477011 ], + [ 10.0528332, 46.6477746 ], + [ 10.0529523, 46.6478527 ], + [ 10.0531278, 46.6479371 ], + [ 10.0532505, 46.6480035 ], + [ 10.0533573, 46.6480675 ], + [ 10.05342, 46.6481042 ], + [ 10.0535041, 46.6481541 ], + [ 10.0536014, 46.6482038 ], + [ 10.0537121, 46.6482668 ], + [ 10.0537983, 46.6483032 ], + [ 10.0538884, 46.6483368 ], + [ 10.0539454, 46.6483566 ], + [ 10.0540516, 46.6484043 ], + [ 10.054159, 46.6484457 ], + [ 10.0543656, 46.6484441 ], + [ 10.0545577, 46.6484409 ], + [ 10.0547212, 46.6484418 ], + [ 10.0548545, 46.6484368 ], + [ 10.0549655, 46.6484323 ], + [ 10.0550974, 46.6484292 ], + [ 10.0552134, 46.6484173 ], + [ 10.0553366, 46.6484243 ], + [ 10.0554296, 46.6484668 ], + [ 10.0554942, 46.6485576 ], + [ 10.0555289, 46.6486128 ], + [ 10.055637, 46.648675 ], + [ 10.0557128, 46.6487115 ], + [ 10.0557804, 46.6487383 ], + [ 10.0559007, 46.648775 ], + [ 10.0560181, 46.6488027 ], + [ 10.0560683, 46.6488199 ], + [ 10.0561841, 46.6488783 ], + [ 10.0562364, 46.6489134 ], + [ 10.0562945, 46.6489305 ], + [ 10.0563917, 46.6489415 ], + [ 10.0563808, 46.648854299999996 ], + [ 10.0563989, 46.6487739 ], + [ 10.0564027, 46.6487315 ], + [ 10.0565164, 46.6486927 ], + [ 10.0566135, 46.6487018 ], + [ 10.0567133, 46.6487137 ], + [ 10.0568067, 46.6487283 ], + [ 10.0569224, 46.6487471 ], + [ 10.0571111, 46.6487943 ], + [ 10.057228, 46.6488086 ], + [ 10.0573254, 46.6488259 ], + [ 10.0574389, 46.6488555 ], + [ 10.0575537, 46.6489229 ], + [ 10.057661, 46.6489625 ], + [ 10.0577376, 46.6489847 ], + [ 10.0578075, 46.6490015 ], + [ 10.0579052, 46.6490278 ], + [ 10.0579788, 46.6490373 ], + [ 10.0580721, 46.6490502 ], + [ 10.0581891, 46.6490689 ], + [ 10.0582524, 46.6490823 ], + [ 10.0583382, 46.649107 ], + [ 10.0584243, 46.6491361 ], + [ 10.0585398, 46.6491864 ], + [ 10.0586282, 46.6492471 ], + [ 10.0587431, 46.6493172 ], + [ 10.0588278, 46.6493815 ], + [ 10.0589305, 46.6494392 ], + [ 10.0589607, 46.6495197 ], + [ 10.0589786, 46.6495825 ], + [ 10.0590106, 46.6496738 ], + [ 10.0590943, 46.649676 ], + [ 10.0591836, 46.6496862 ], + [ 10.0592606, 46.6496795 ], + [ 10.0593573, 46.6496779 ], + [ 10.0594485, 46.6496673 ], + [ 10.0595335, 46.6496668 ], + [ 10.0596016, 46.6496711 ], + [ 10.0596989, 46.6497235 ], + [ 10.0598163, 46.6497881 ], + [ 10.0598591, 46.6498162 ], + [ 10.0599369, 46.6498725 ], + [ 10.0599852, 46.649906 ], + [ 10.0600786, 46.6499602 ], + [ 10.0600784, 46.6500305 ], + [ 10.0600858, 46.6501294 ], + [ 10.060113, 46.6501973 ], + [ 10.0601373, 46.6502582 ], + [ 10.0601715, 46.6503008 ], + [ 10.0602696, 46.650337 ], + [ 10.0603539, 46.6503545 ], + [ 10.0604248, 46.6503632 ], + [ 10.060516, 46.6503896 ], + [ 10.0605976, 46.6504431 ], + [ 10.0606802, 46.6505237 ], + [ 10.0607326, 46.6506021 ], + [ 10.0606951, 46.65069 ], + [ 10.0606693, 46.6507733 ], + [ 10.0606471, 46.6508142 ], + [ 10.0606777, 46.6508659 ], + [ 10.0607649, 46.6508897 ], + [ 10.0608198, 46.6508896 ], + [ 10.0608888, 46.6508804 ], + [ 10.0609657, 46.6508728 ], + [ 10.0610535, 46.6508776 ], + [ 10.0611094, 46.6509073 ], + [ 10.061124, 46.6509485 ], + [ 10.0611374, 46.6510375 ], + [ 10.0611501, 46.6511156 ], + [ 10.0611791, 46.6511729 ], + [ 10.0612277, 46.6512253 ], + [ 10.0612656, 46.6512707 ], + [ 10.0613543, 46.6513127 ], + [ 10.0614153, 46.6513425 ], + [ 10.0614678, 46.6513949 ], + [ 10.0615213, 46.6514392 ], + [ 10.0615856, 46.6514951 ], + [ 10.0616582, 46.6515175 ], + [ 10.0617068, 46.6515286 ], + [ 10.0617662, 46.6515476 ], + [ 10.0618138, 46.6515658 ], + [ 10.0618471, 46.6515888 ], + [ 10.06189, 46.6516251 ], + [ 10.0619162, 46.6516725 ], + [ 10.0619312, 46.6516948 ], + [ 10.0619425, 46.6517747 ], + [ 10.0619493, 46.6518287 ], + [ 10.0619583, 46.6518717 ], + [ 10.0619677, 46.6519274 ], + [ 10.0619893, 46.6519496 ], + [ 10.0620419, 46.6519624 ], + [ 10.0621147, 46.6519453 ], + [ 10.0621614, 46.6519311 ], + [ 10.0622027, 46.6519153 ], + [ 10.0622735, 46.6519206 ], + [ 10.0623839, 46.6519389 ], + [ 10.0624583, 46.651982 ], + [ 10.0624975, 46.6520283 ], + [ 10.0625473, 46.652079 ], + [ 10.0625771, 46.6521173 ], + [ 10.0626046, 46.6521637 ], + [ 10.0626204, 46.6522157 ], + [ 10.0626306, 46.6522543 ], + [ 10.0626277, 46.6522903 ], + [ 10.062615, 46.652349 ], + [ 10.0626159, 46.6523805 ], + [ 10.0626483, 46.652417 ], + [ 10.062688, 46.6524363 ], + [ 10.0627171, 46.6524467 ], + [ 10.0627474, 46.6524562 ], + [ 10.0627975, 46.6524708 ], + [ 10.0628981, 46.6525136 ], + [ 10.062965, 46.6525703 ], + [ 10.0630174, 46.6526173 ], + [ 10.0630829, 46.6526686 ], + [ 10.0631136, 46.6526916 ], + [ 10.0631686, 46.6527431 ], + [ 10.063222, 46.6527811 ], + [ 10.063273, 46.652829 ], + [ 10.0633055, 46.6528681 ], + [ 10.0633645, 46.6529214 ], + [ 10.063425, 46.65298 ], + [ 10.063485, 46.6530224 ], + [ 10.0635542, 46.6530655 ], + [ 10.0636337, 46.6531473 ], + [ 10.0637061, 46.6532111 ], + [ 10.0637713, 46.6532526 ], + [ 10.0638157, 46.6532961 ], + [ 10.0638679, 46.6533413 ], + [ 10.0639188, 46.6533847 ], + [ 10.0640137, 46.6534572 ], + [ 10.0640797, 46.6535266 ], + [ 10.0641719, 46.6535964 ], + [ 10.0642586, 46.6536601 ], + [ 10.064367, 46.6537487 ], + [ 10.0644684, 46.6538184 ], + [ 10.0645272, 46.6538644 ], + [ 10.0645974, 46.6539436 ], + [ 10.064604, 46.6540398 ], + [ 10.0646159, 46.6541387 ], + [ 10.064627, 46.6542529 ], + [ 10.0646267, 46.6543348 ], + [ 10.0646779, 46.6544835 ], + [ 10.0647032, 46.654593 ], + [ 10.0647438, 46.6547824 ], + [ 10.0647643, 46.6549073 ], + [ 10.0648039, 46.6550138 ], + [ 10.064828, 46.6550801 ], + [ 10.0648494, 46.6551465 ], + [ 10.0648864, 46.6552072 ], + [ 10.0649526, 46.6553278 ], + [ 10.0649863, 46.6554129 ], + [ 10.0650376, 46.6555148 ], + [ 10.0651022, 46.6556292 ], + [ 10.0651572, 46.6557238 ], + [ 10.0651836, 46.6557793 ], + [ 10.0652507, 46.6558864 ], + [ 10.0652923, 46.6559732 ], + [ 10.0653398, 46.6560346 ], + [ 10.0653648, 46.6560856 ], + [ 10.0654112, 46.6561543 ], + [ 10.065572, 46.6562467 ], + [ 10.0657616, 46.6563395 ], + [ 10.065974, 46.6564537 ], + [ 10.0668903, 46.6579329 ], + [ 10.0688784, 46.6583661 ], + [ 10.0690357, 46.6583334 ], + [ 10.069149, 46.6583147 ], + [ 10.0693453, 46.6582734 ], + [ 10.0695082, 46.6582532 ], + [ 10.0696356, 46.6582281 ], + [ 10.0697332, 46.6582105 ], + [ 10.0698828, 46.6581815 ], + [ 10.0699945, 46.6581566 ], + [ 10.0700935, 46.6581408 ], + [ 10.0702329, 46.6581246 ], + [ 10.0704497, 46.6581144 ], + [ 10.070609, 46.658106 ], + [ 10.0707438, 46.6581078 ], + [ 10.0708287, 46.6581039 ], + [ 10.0709068, 46.658092 ], + [ 10.0710944, 46.6582047 ], + [ 10.0712175, 46.6583039 ], + [ 10.0713306, 46.6583762 ], + [ 10.0714054, 46.6584301 ], + [ 10.0715304, 46.6585049 ], + [ 10.0716265, 46.6585738 ], + [ 10.0717318, 46.6586444 ], + [ 10.071882, 46.6587288 ], + [ 10.0719674, 46.658788799999996 ], + [ 10.072034, 46.6588321 ], + [ 10.0721511, 46.6589043 ], + [ 10.072174, 46.6590237 ], + [ 10.0721975, 46.6591593 ], + [ 10.0722173, 46.6592608 ], + [ 10.0722278, 46.6593542 ], + [ 10.0722842, 46.6594975 ], + [ 10.0723179, 46.6595826 ], + [ 10.0724077, 46.6597506 ], + [ 10.0724954, 46.6598925 ], + [ 10.0725575, 46.6600087 ], + [ 10.0726059, 46.6601026 ], + [ 10.0726487, 46.6601821 ], + [ 10.0726986, 46.6603309 ], + [ 10.0727596, 46.6604516 ], + [ 10.072813, 46.6605832 ], + [ 10.072871, 46.6607408 ], + [ 10.0729158, 46.6609382 ], + [ 10.0729632, 46.6611338 ], + [ 10.0730034, 46.6613538 ], + [ 10.0730516, 46.6616259 ], + [ 10.0731903, 46.6617663 ], + [ 10.0733026, 46.6618989 ], + [ 10.0734036, 46.6620029 ], + [ 10.0734987, 46.6620844 ], + [ 10.0735742, 46.6621635 ], + [ 10.0743617, 46.6629603 ], + [ 10.0745097, 46.6631545 ], + [ 10.0753874, 46.6639456 ], + [ 10.0754954, 46.6641106 ], + [ 10.0756204, 46.6642791 ], + [ 10.0757135, 46.664426399999996 ], + [ 10.0757865, 46.6645109 ], + [ 10.07584, 46.6646911 ], + [ 10.0758673, 46.6648239 ], + [ 10.0759145, 46.6649187 ], + [ 10.0759946, 46.6649779 ], + [ 10.0760705, 46.6650246 ], + [ 10.07595, 46.6651118 ], + [ 10.0758008, 46.6652002 ], + [ 10.0756626, 46.6653092 ], + [ 10.0755701, 46.6653699 ], + [ 10.0754757, 46.6654522 ], + [ 10.0753361, 46.6655594 ], + [ 10.0753016, 46.6655869 ], + [ 10.0751703, 46.6658452 ], + [ 10.0750373, 46.6659523 ], + [ 10.074942, 46.6660067 ], + [ 10.0747779, 46.6661242 ], + [ 10.0746684, 46.6661833 ], + [ 10.0745553, 46.6662541 ], + [ 10.0744399, 46.6663358 ], + [ 10.0743612, 46.6664665 ], + [ 10.0742885, 46.6665791 ], + [ 10.0742435, 46.6667444 ], + [ 10.0741802, 46.6668659 ], + [ 10.0740974, 46.6669904 ], + [ 10.0740351, 46.6670992 ], + [ 10.0739274, 46.6672222 ], + [ 10.0738413, 46.6673251 ], + [ 10.0737327, 46.6674625 ], + [ 10.0736251, 46.6675432 ], + [ 10.0738372, 46.6676897 ], + [ 10.073978199999999, 46.6677742 ], + [ 10.0740637, 46.6678379 ], + [ 10.0742271, 46.6679248 ], + [ 10.0744178, 46.6680113 ], + [ 10.0745146, 46.6680568 ], + [ 10.0747081, 46.6681451 ], + [ 10.0749323, 46.6682582 ], + [ 10.0751414, 46.6683445 ], + [ 10.0752833, 46.6684155 ], + [ 10.0753839, 46.6684573 ], + [ 10.0755552, 46.6685459 ], + [ 10.0757142, 46.6686185 ], + [ 10.0758631, 46.6687065 ], + [ 10.0759958, 46.6687713 ], + [ 10.0762092, 46.6688719 ], + [ 10.0763606, 46.6689545 ], + [ 10.076436, 46.6689832 ], + [ 10.0766777, 46.6690681 ], + [ 10.0768246, 46.6691255 ], + [ 10.0770104, 46.6692229 ], + [ 10.0771427, 46.669321 ], + [ 10.0772697, 46.6694174 ], + [ 10.0774865, 46.669545 ], + [ 10.0776536, 46.6696751 ], + [ 10.0777871, 46.6697687 ], + [ 10.0779716, 46.6698652 ], + [ 10.0781477, 46.669987 ], + [ 10.0782313, 46.6700759 ], + [ 10.0783548, 46.670185 ], + [ 10.0784869, 46.6702795 ], + [ 10.0785666, 46.6703207 ], + [ 10.0786982, 46.6703964 ], + [ 10.0788844, 46.6704604 ], + [ 10.0789908, 46.6705211 ], + [ 10.0790544, 46.6705508 ], + [ 10.0791708, 46.670597 ], + [ 10.0792317, 46.6706204 ], + [ 10.0793165, 46.6706589 ], + [ 10.0794043, 46.6707108 ], + [ 10.0794496, 46.6707408 ], + [ 10.0795189, 46.6708326 ], + [ 10.0795799, 46.6709092 ], + [ 10.0796355, 46.6709777 ], + [ 10.0797214, 46.6710999 ], + [ 10.0798048, 46.6711816 ], + [ 10.0798666, 46.6712419 ], + [ 10.0799497, 46.671311 ], + [ 10.0800903, 46.6713793 ], + [ 10.0801753, 46.6714241 ], + [ 10.0802643, 46.6714742 ], + [ 10.0803599, 46.6715233 ], + [ 10.080387, 46.6715553 ], + [ 10.0804825, 46.6716035 ], + [ 10.0805754, 46.6716518 ], + [ 10.0807277, 46.6717154 ], + [ 10.080793, 46.6717604 ], + [ 10.0808765, 46.6717989 ], + [ 10.0809388, 46.6718269 ], + [ 10.0810306, 46.6718805 ], + [ 10.0811087, 46.6719146 ], + [ 10.0811895, 46.6719495 ], + [ 10.0813003, 46.6719831 ], + [ 10.0813886, 46.6720053 ], + [ 10.0814452, 46.6720198 ], + [ 10.081523, 46.6720413 ], + [ 10.0815836, 46.6720548 ], + [ 10.0816586, 46.6720718 ], + [ 10.0817339, 46.6720969 ], + [ 10.0819231, 46.6721745 ], + [ 10.081992, 46.6722059 ], + [ 10.0821061, 46.6722611 ], + [ 10.0822295, 46.6723215 ], + [ 10.08229, 46.672336 ], + [ 10.0823719, 46.6723646 ], + [ 10.0824845, 46.6724126 ], + [ 10.0826115, 46.672463 ], + [ 10.0827202, 46.6725138 ], + [ 10.0829231, 46.6726109 ], + [ 10.0831217, 46.6726946 ], + [ 10.0832434, 46.6727443 ], + [ 10.0833667, 46.6728002 ], + [ 10.083498, 46.6728659 ], + [ 10.083694, 46.6729488 ], + [ 10.0838386, 46.6729765 ], + [ 10.0840524, 46.6729952 ], + [ 10.0841932, 46.6730239 ], + [ 10.0843671, 46.6730683 ], + [ 10.0845105, 46.6730988 ], + [ 10.0846134, 46.673128 ], + [ 10.0847227, 46.6731526 ], + [ 10.0848252, 46.6731701 ], + [ 10.0848792, 46.673182 ], + [ 10.084995, 46.6732065 ], + [ 10.0850556, 46.6732696 ], + [ 10.0851253, 46.6733289 ], + [ 10.0852062, 46.6734116 ], + [ 10.0852653, 46.6734675 ], + [ 10.0853149, 46.67351 ], + [ 10.0853631, 46.6735489 ], + [ 10.0854676, 46.6735907 ], + [ 10.0855311, 46.6736142 ], + [ 10.0855852, 46.6736323 ], + [ 10.0857094, 46.6736765 ], + [ 10.0857756, 46.6737017 ], + [ 10.0858522, 46.6737286 ], + [ 10.0859063, 46.6737441 ], + [ 10.0859802, 46.6737665 ], + [ 10.0860329, 46.673781 ], + [ 10.0861214, 46.6738114 ], + [ 10.0861743, 46.6738331 ], + [ 10.0862114, 46.673847 ], + [ 10.0863114, 46.6738691 ], + [ 10.0865265, 46.6738895 ], + [ 10.0866628, 46.6738985 ], + [ 10.0868409, 46.6739068 ], + [ 10.0869758, 46.6739122 ], + [ 10.0871211, 46.6739156 ], + [ 10.0872009, 46.6739154 ], + [ 10.0873185, 46.6739111 ], + [ 10.0874028, 46.673883000000004 ], + [ 10.0874659, 46.6738488 ], + [ 10.0876532, 46.6738111 ], + [ 10.087743, 46.6738414 ], + [ 10.0878548, 46.6738651 ], + [ 10.0880339, 46.6739058 ], + [ 10.0881407, 46.6739341 ], + [ 10.088304, 46.6739751 ], + [ 10.0884975, 46.6740174 ], + [ 10.0886557, 46.6740594 ], + [ 10.0887847, 46.6740891 ], + [ 10.0889283, 46.6741241 ], + [ 10.0890718, 46.6741554 ], + [ 10.0891839, 46.674189 ], + [ 10.0893156, 46.6742187 ], + [ 10.089392, 46.6743284 ], + [ 10.0894362, 46.6744115 ], + [ 10.0894933, 46.674489 ], + [ 10.0895351, 46.6745298 ], + [ 10.0897097, 46.6745527 ], + [ 10.0897963, 46.6745623 ], + [ 10.0898435, 46.6745661 ], + [ 10.0900388, 46.6745806 ], + [ 10.0901245, 46.6746496 ], + [ 10.0902162, 46.6746997 ], + [ 10.0902928, 46.6747724 ], + [ 10.090382, 46.6748252 ], + [ 10.0905195, 46.6749242 ], + [ 10.090517, 46.6751114 ], + [ 10.090519, 46.6752275 ], + [ 10.090528, 46.6753579 ], + [ 10.0906835, 46.6754449 ], + [ 10.0907727, 46.6754995 ], + [ 10.0908924, 46.6755672 ], + [ 10.0909546, 46.6755924 ], + [ 10.0911538, 46.6756968 ], + [ 10.0912585, 46.6758844 ], + [ 10.0913191, 46.6760357 ], + [ 10.0913702, 46.6761755 ], + [ 10.0914495, 46.676295 ], + [ 10.091475, 46.6765494 ], + [ 10.0915083, 46.6766624 ], + [ 10.0915285, 46.6767737 ], + [ 10.091576, 46.6768343 ], + [ 10.0915953, 46.67696 ], + [ 10.0916842, 46.6770488 ], + [ 10.0917787, 46.6771502 ], + [ 10.0918599, 46.6772454 ], + [ 10.0919309, 46.6773056 ], + [ 10.0920302, 46.6773925 ], + [ 10.0920926, 46.6774717 ], + [ 10.0921513, 46.6775114 ], + [ 10.0922229, 46.6775888 ], + [ 10.0923039, 46.6777236 ], + [ 10.0923292, 46.6778295 ], + [ 10.0923875, 46.6779484 ], + [ 10.0924604, 46.6780716 ], + [ 10.0925867, 46.6781428 ], + [ 10.09266, 46.6781904 ], + [ 10.0927411, 46.6782352 ], + [ 10.0928023, 46.6782722 ], + [ 10.0928794, 46.6783161 ], + [ 10.0929263, 46.6783551 ], + [ 10.0929956, 46.6783973 ], + [ 10.0931633, 46.6784977 ], + [ 10.0933374, 46.6785475 ], + [ 10.0935, 46.6786065 ], + [ 10.0936387, 46.6786541 ], + [ 10.0937892, 46.6787015 ], + [ 10.0939157, 46.6787349 ], + [ 10.0940637, 46.6787851 ], + [ 10.0942193, 46.6788307 ], + [ 10.0943345, 46.6788768 ], + [ 10.0945102, 46.6789833 ], + [ 10.094664999999999, 46.679091 ], + [ 10.094781, 46.6791668 ], + [ 10.0948982, 46.679239 ], + [ 10.0950034, 46.6793033 ], + [ 10.0951402, 46.6793743 ], + [ 10.095256, 46.6794456 ], + [ 10.0953026, 46.6794747 ], + [ 10.0953616, 46.6795234 ], + [ 10.0954797, 46.6795821 ], + [ 10.0954107, 46.679638 ], + [ 10.0955317, 46.6797065 ], + [ 10.0956221, 46.6797566 ], + [ 10.0956763, 46.6797783 ], + [ 10.0957472, 46.6798314 ], + [ 10.0958354, 46.6799877 ], + [ 10.095892, 46.6800905 ], + [ 10.0959646, 46.6801615 ], + [ 10.0960483, 46.6802521 ], + [ 10.0960975, 46.6803253 ], + [ 10.0960998, 46.6804486 ], + [ 10.0961255, 46.6805706 ], + [ 10.096205, 46.6806974 ], + [ 10.0962851, 46.6807548 ], + [ 10.0963449, 46.6808764 ], + [ 10.0963935, 46.6809756 ], + [ 10.096437, 46.6810768 ], + [ 10.0964752, 46.6811807 ], + [ 10.0965278, 46.6813267 ], + [ 10.0966289, 46.6814297 ], + [ 10.0967475, 46.6815037 ], + [ 10.096794, 46.6815292 ], + [ 10.0968871, 46.6815819 ], + [ 10.0969548, 46.6816179 ], + [ 10.0970544, 46.6816228 ], + [ 10.0971347, 46.6816415 ], + [ 10.097197, 46.6816676 ], + [ 10.0972006, 46.6817027 ], + [ 10.0971645, 46.6817212 ], + [ 10.0970833, 46.6817187 ], + [ 10.0970179, 46.6817196 ], + [ 10.0969434, 46.6817224 ], + [ 10.0969043, 46.6817266 ], + [ 10.0968446, 46.6817454 ], + [ 10.0968481, 46.681776 ], + [ 10.0969159, 46.6818137 ], + [ 10.096987, 46.6818272 ], + [ 10.0970593, 46.6818415 ], + [ 10.0971079, 46.6818471 ], + [ 10.0971956, 46.6818495 ], + [ 10.0972613, 46.6818576 ], + [ 10.0973755, 46.6818713 ], + [ 10.0974453, 46.6818875 ], + [ 10.0975102, 46.6819604 ], + [ 10.0975917, 46.6820655 ], + [ 10.0976992, 46.6821648 ], + [ 10.0978363, 46.6822467 ], + [ 10.0980279, 46.6823125 ], + [ 10.0981273, 46.6823579 ], + [ 10.0982965, 46.6824168 ], + [ 10.0984339, 46.6824662 ], + [ 10.0985567, 46.682505 ], + [ 10.0986781, 46.6825385 ], + [ 10.0988059, 46.6825718 ], + [ 10.0989051, 46.6826074 ], + [ 10.0990576, 46.6826332 ], + [ 10.0992447, 46.6826333 ], + [ 10.0993334, 46.6826249 ], + [ 10.0994018, 46.6825942 ], + [ 10.0995292, 46.6825655 ], + [ 10.0996275, 46.6825695 ], + [ 10.0997115, 46.68258 ], + [ 10.0997886, 46.6826213 ], + [ 10.0998776, 46.6826678 ], + [ 10.0999481, 46.6827082 ], + [ 10.1000762, 46.6827515 ], + [ 10.1001772, 46.68276 ], + [ 10.1002149, 46.6827523 ], + [ 10.1003465, 46.6827342 ], + [ 10.1004105, 46.6827298 ], + [ 10.1005399, 46.6827235 ], + [ 10.1006544, 46.6827021 ], + [ 10.1008007, 46.6826956 ], + [ 10.1009335, 46.6827172 ], + [ 10.1010245, 46.682742 ], + [ 10.1011347, 46.6827549 ], + [ 10.1012205, 46.6827807 ], + [ 10.101364, 46.6828561 ], + [ 10.1014638, 46.6829151 ], + [ 10.1015332, 46.6829627 ], + [ 10.1016055, 46.6830194 ], + [ 10.1017014, 46.6830792 ], + [ 10.1018053, 46.6831444 ], + [ 10.1018967, 46.6831819 ], + [ 10.1019997, 46.6832147 ], + [ 10.1020671, 46.6832389 ], + [ 10.1021316, 46.6832569 ], + [ 10.1025325, 46.6833232 ], + [ 10.1027488, 46.6833551 ], + [ 10.1028335, 46.6834 ], + [ 10.1029447, 46.6834506 ], + [ 10.1030443, 46.6835041 ], + [ 10.1031026, 46.683546 ], + [ 10.1031652, 46.6835932 ], + [ 10.1032291, 46.6836421 ], + [ 10.1033375, 46.6837144 ], + [ 10.1034089, 46.683783 ], + [ 10.1034458, 46.6838136 ], + [ 10.1035416, 46.68387 ], + [ 10.1036702, 46.683903 ], + [ 10.1038013, 46.6839324 ], + [ 10.1038902, 46.6839546 ], + [ 10.1039966, 46.6839882 ], + [ 10.1041722, 46.6840174 ], + [ 10.1042892, 46.6840526 ], + [ 10.1044167, 46.6840901 ], + [ 10.1045458, 46.6841313 ], + [ 10.1046264, 46.6841735 ], + [ 10.1047769, 46.6842241 ], + [ 10.1048733, 46.6842678 ], + [ 10.1049464, 46.6842886 ], + [ 10.1050867, 46.6843448 ], + [ 10.1051195, 46.684426 ], + [ 10.1052076, 46.6845131 ], + [ 10.1053071, 46.684618 ], + [ 10.1053946, 46.6847195 ], + [ 10.1054854, 46.6848345 ], + [ 10.1055559, 46.6849365 ], + [ 10.1056604, 46.6850385 ], + [ 10.1058223, 46.6851609 ], + [ 10.1059534, 46.6852704 ], + [ 10.1062611, 46.6855074 ], + [ 10.1064309, 46.6857908 ], + [ 10.1065394, 46.685999 ], + [ 10.1066213, 46.6860926 ], + [ 10.1069232, 46.6862666 ], + [ 10.1071489, 46.6864082 ], + [ 10.1073493, 46.6865684 ], + [ 10.1075036, 46.6866954 ], + [ 10.1075993, 46.686776 ], + [ 10.1076918, 46.6868739 ], + [ 10.1078304, 46.6869742 ], + [ 10.1080414, 46.6870306 ], + [ 10.1082292, 46.6870685 ], + [ 10.1083946, 46.6871034 ], + [ 10.1085588, 46.6871401 ], + [ 10.108719, 46.6871742 ], + [ 10.1088203, 46.6872097 ], + [ 10.1089679, 46.6872549 ], + [ 10.1091637, 46.6873224 ], + [ 10.1093976, 46.687416999999996 ], + [ 10.1096082, 46.6874913 ], + [ 10.1097761, 46.6875505 ], + [ 10.1099547, 46.6876139 ], + [ 10.1101758, 46.687688 ], + [ 10.1103864, 46.6877615 ], + [ 10.110600699999999, 46.687779 ], + [ 10.1108255, 46.6877972 ], + [ 10.11114, 46.6878277 ], + [ 10.111364, 46.6879062 ], + [ 10.1115013, 46.6879562 ], + [ 10.1116404, 46.6880142 ], + [ 10.1117678, 46.6881013 ], + [ 10.111884, 46.6881725 ], + [ 10.1120156, 46.688265799999996 ], + [ 10.1122023, 46.6883605 ], + [ 10.112474, 46.6885298 ], + [ 10.1127462, 46.6886847 ], + [ 10.1128109, 46.6887229 ], + [ 10.1130043, 46.6888733 ], + [ 10.1131552, 46.6889842 ], + [ 10.113288, 46.6890738 ], + [ 10.1134781, 46.6891577 ], + [ 10.1136419, 46.6892647 ], + [ 10.1138179, 46.6893551 ], + [ 10.1140298, 46.6894808 ], + [ 10.1141945, 46.6895544 ], + [ 10.1143027, 46.689624 ], + [ 10.1144344, 46.6896912 ], + [ 10.1146326, 46.6897532 ], + [ 10.1147773, 46.6897931 ], + [ 10.1150155, 46.6898677 ], + [ 10.1151788, 46.6899918 ], + [ 10.1153552, 46.6901417 ], + [ 10.1154162, 46.6901853 ], + [ 10.1155407, 46.6903454 ], + [ 10.115586, 46.6904399 ], + [ 10.1156743, 46.6905558 ], + [ 10.1158986, 46.6906695 ], + [ 10.1161053, 46.6907691 ], + [ 10.116406, 46.690917 ], + [ 10.1166527, 46.6910338 ], + [ 10.1169178, 46.6911762 ], + [ 10.1171738, 46.6913207 ], + [ 10.1173244, 46.6914 ], + [ 10.1174158, 46.6914456 ], + [ 10.1174846, 46.6914864 ], + [ 10.1176134, 46.6915482 ], + [ 10.1177108, 46.6917162 ], + [ 10.1177713, 46.6918283 ], + [ 10.1177936, 46.691986299999996 ], + [ 10.1178193, 46.6921893 ], + [ 10.1178957, 46.6923289 ], + [ 10.1179542, 46.6925329 ], + [ 10.1179932, 46.6927635 ], + [ 10.118019199999999, 46.6929196 ], + [ 10.118051, 46.6929783 ], + [ 10.1180756, 46.6931327 ], + [ 10.1181157, 46.6932803 ], + [ 10.1181442, 46.693458 ], + [ 10.1183665, 46.6933979 ], + [ 10.118561, 46.693333 ], + [ 10.1187629, 46.693258 ], + [ 10.1190398, 46.6931894 ], + [ 10.1192327, 46.6931966 ], + [ 10.1194401, 46.6932044 ], + [ 10.1196063, 46.6932032 ], + [ 10.1197673, 46.6931742 ], + [ 10.1199873, 46.6931475 ], + [ 10.1200878, 46.6931397 ], + [ 10.1202428, 46.6931226 ], + [ 10.1203274, 46.6931107 ], + [ 10.1204653, 46.6930399 ], + [ 10.1205497, 46.6929992 ], + [ 10.1206477, 46.692887999999996 ], + [ 10.1207214, 46.6927899 ], + [ 10.1207789, 46.6927074 ], + [ 10.1208023, 46.6925718 ], + [ 10.1208495, 46.6924419 ], + [ 10.1208941, 46.6923364 ], + [ 10.1209538, 46.6922476 ], + [ 10.1210522, 46.6921705 ], + [ 10.1211432, 46.6921315 ], + [ 10.1211953, 46.6920987 ], + [ 10.1212781, 46.6920518 ], + [ 10.1213545, 46.6920067 ], + [ 10.1214782, 46.691966 ], + [ 10.1215813, 46.6919321 ], + [ 10.1216863, 46.6919107 ], + [ 10.1218092, 46.6918808 ], + [ 10.1219531, 46.6918504 ], + [ 10.1220327, 46.691817 ], + [ 10.1220909, 46.6917499 ], + [ 10.1221257, 46.6916852 ], + [ 10.1221788, 46.6916209 ], + [ 10.1222369, 46.6915511 ], + [ 10.1223445, 46.6914495 ], + [ 10.1224286, 46.6913763 ], + [ 10.1225686, 46.6912947 ], + [ 10.1226923, 46.691254 ], + [ 10.1228498, 46.6912341 ], + [ 10.1229543, 46.6912542 ], + [ 10.1230719, 46.6912748 ], + [ 10.1233589, 46.6913321 ], + [ 10.123608, 46.6913902 ], + [ 10.1237222, 46.691447 ], + [ 10.1239076, 46.6915147 ], + [ 10.1240561, 46.6915509 ], + [ 10.1242534, 46.691621 ], + [ 10.1244226, 46.6916522 ], + [ 10.124672, 46.6917157 ], + [ 10.1248379, 46.6917587 ], + [ 10.1249673, 46.6917808 ], + [ 10.1251049, 46.691783 ], + [ 10.125279, 46.6917799 ], + [ 10.1253999, 46.6917887 ], + [ 10.125536, 46.6917856 ], + [ 10.1257194, 46.6917867 ], + [ 10.1258712, 46.6917327 ], + [ 10.1259498, 46.6916795 ], + [ 10.1259958, 46.6915514 ], + [ 10.1260842, 46.6914061 ], + [ 10.1261818, 46.6912606 ], + [ 10.1262531, 46.6911157 ], + [ 10.1263112, 46.6909396 ], + [ 10.1263673, 46.6908311 ], + [ 10.1264087, 46.6906887 ], + [ 10.1263849, 46.6905515 ], + [ 10.1263793, 46.6904381 ], + [ 10.1263831, 46.6903317 ], + [ 10.1264568, 46.6902075 ], + [ 10.1265684, 46.6900815 ], + [ 10.126649, 46.690015700000004 ], + [ 10.1267651, 46.6899283 ], + [ 10.1268821, 46.6898318 ], + [ 10.126977, 46.6897386 ], + [ 10.1270792, 46.6896606 ], + [ 10.127155, 46.6895778 ], + [ 10.1272338, 46.6895038 ], + [ 10.1273067, 46.6894148 ], + [ 10.1273629, 46.6893351 ], + [ 10.1274278, 46.6892435 ], + [ 10.1275802, 46.6891219 ], + [ 10.1277169, 46.6890268 ], + [ 10.1277918, 46.6889792 ], + [ 10.1278569, 46.6889182 ], + [ 10.1279632, 46.6887905 ], + [ 10.1280801, 46.6886661 ], + [ 10.1281881, 46.6885465 ], + [ 10.1282964, 46.6884602 ], + [ 10.1284379, 46.6884091 ], + [ 10.1286417, 46.6883188 ], + [ 10.1288389, 46.6882547 ], + [ 10.1290343, 46.6882078 ], + [ 10.129224, 46.6881511 ], + [ 10.1294123, 46.6881197 ], + [ 10.1295903, 46.6880912 ], + [ 10.1297819, 46.6880462 ], + [ 10.1300287, 46.6880575 ], + [ 10.1302848, 46.6880983 ], + [ 10.1305395, 46.6881122 ], + [ 10.1307243, 46.6881141 ], + [ 10.1309114, 46.6880836 ], + [ 10.1310574, 46.6880451 ], + [ 10.131196599999999, 46.6880247 ], + [ 10.1313701, 46.687985499999996 ], + [ 10.1315628, 46.6879639 ], + [ 10.1317848, 46.6879497 ], + [ 10.1319376, 46.6879407 ], + [ 10.132003, 46.68794 ], + [ 10.1321793, 46.6879305 ], + [ 10.1323595, 46.6879182 ], + [ 10.1325027, 46.6879013 ], + [ 10.132691, 46.6878689 ], + [ 10.1328245, 46.6878424 ], + [ 10.1329417, 46.6878018 ], + [ 10.1330746, 46.6877618 ], + [ 10.1332263, 46.6877312 ], + [ 10.1333574, 46.6877083 ], + [ 10.1334898, 46.6876845 ], + [ 10.1336559, 46.6876544 ], + [ 10.1337752, 46.6876309 ], + [ 10.1339704, 46.6876038 ], + [ 10.1341859, 46.6876447 ], + [ 10.1344739, 46.6876956 ], + [ 10.1346487, 46.6877347 ], + [ 10.1348229, 46.6877603 ], + [ 10.1349798, 46.6877819 ], + [ 10.1351995, 46.6877749 ], + [ 10.1354132, 46.6877537 ], + [ 10.1356515, 46.6877274 ], + [ 10.1358404, 46.6877076 ], + [ 10.1360181, 46.6876989 ], + [ 10.1363233, 46.6876999 ], + [ 10.1364884, 46.6877005 ], + [ 10.1366609, 46.6876928 ], + [ 10.1368313, 46.6876699 ], + [ 10.1371119, 46.6876246 ], + [ 10.1373176, 46.6875738 ], + [ 10.1375143, 46.6875007 ], + [ 10.1376945, 46.6874109 ], + [ 10.1377917, 46.6873384 ], + [ 10.1379173, 46.6871778 ], + [ 10.138092199999999, 46.6871142 ], + [ 10.1381931, 46.6870884 ], + [ 10.1383542, 46.6870378 ], + [ 10.1385788, 46.6871028 ], + [ 10.1387516, 46.6871528 ], + [ 10.1389851, 46.6872139 ], + [ 10.1391236, 46.6872341 ], + [ 10.1393272, 46.6871933 ], + [ 10.1394468, 46.6871481 ], + [ 10.1395828, 46.6870918 ], + [ 10.1396764, 46.6870526 ], + [ 10.1397741, 46.6870152 ], + [ 10.1399389, 46.6869861 ], + [ 10.1400392, 46.6869757 ], + [ 10.1401425, 46.6869714 ], + [ 10.1402702, 46.6869594 ], + [ 10.1403535, 46.6869475 ], + [ 10.140441299999999, 46.6869239 ], + [ 10.1405481, 46.6868583 ], + [ 10.1406778, 46.6867553 ], + [ 10.1407513, 46.6866526 ], + [ 10.1407589, 46.6865426 ], + [ 10.1407472, 46.6864672 ], + [ 10.1407407, 46.686416 ], + [ 10.1406739, 46.6861439 ], + [ 10.1403346, 46.6859952 ], + [ 10.1401609, 46.685840999999996 ], + [ 10.1400759, 46.6856135 ], + [ 10.1400259, 46.6854463 ], + [ 10.1400118, 46.6853441 ], + [ 10.1400025, 46.6851598 ], + [ 10.1401074, 46.684935 ], + [ 10.1403589, 46.6847013 ], + [ 10.1405735, 46.6844001 ], + [ 10.1405666, 46.6842292 ], + [ 10.1407115, 46.6840224 ], + [ 10.1406955, 46.6837833 ], + [ 10.1407736, 46.6835141 ], + [ 10.1408966, 46.6832456 ], + [ 10.1411318, 46.6830285 ], + [ 10.141308, 46.6828408 ], + [ 10.1415549, 46.6825478 ], + [ 10.1417601, 46.6823864 ], + [ 10.1417823, 46.6822418 ], + [ 10.1418851, 46.6820746 ], + [ 10.1419189, 46.6818362 ], + [ 10.1419107, 46.6816059 ], + [ 10.1418997, 46.681338 ], + [ 10.1418251, 46.6811552 ], + [ 10.1418367, 46.6810434 ], + [ 10.1417833, 46.6807935 ], + [ 10.1416304, 46.6806936 ], + [ 10.1416276, 46.6805073 ], + [ 10.1415793, 46.6802781 ], + [ 10.1415019, 46.6799729 ], + [ 10.1417733, 46.6795993 ], + [ 10.1420747, 46.6792024 ], + [ 10.1424255, 46.6789132 ], + [ 10.1430318, 46.678664 ], + [ 10.1435934, 46.6784706 ], + [ 10.1441075, 46.6782424 ], + [ 10.1444978, 46.6781683 ], + [ 10.1451574, 46.6779239 ], + [ 10.1458011, 46.6777539 ], + [ 10.1465334, 46.6775097 ], + [ 10.1472179, 46.6772557 ], + [ 10.1478088, 46.6769952 ], + [ 10.1485468, 46.6767166 ], + [ 10.1492597, 46.6763153 ], + [ 10.14986, 46.6759158 ], + [ 10.1502752, 46.675508 ], + [ 10.1508229, 46.6750232 ], + [ 10.1514456, 46.6746304 ], + [ 10.1521053, 46.6741943 ], + [ 10.1527257, 46.6736116 ], + [ 10.1533409, 46.6730217 ], + [ 10.1540743, 46.6725083 ], + [ 10.1547144, 46.6721852 ], + [ 10.1552596, 46.6719769 ], + [ 10.1560782, 46.6716288 ], + [ 10.1568201, 46.6713501 ], + [ 10.1575114, 46.6710394 ], + [ 10.1578984, 46.6707573 ], + [ 10.1582628, 46.6703975 ], + [ 10.1588223, 46.6702933 ], + [ 10.1594358, 46.6703219 ], + [ 10.1598233, 46.6704855 ], + [ 10.1602576, 46.6707361 ], + [ 10.1607599, 46.6710707 ], + [ 10.1612762, 46.671422 ], + [ 10.161681, 46.6716228 ], + [ 10.1617087, 46.6716398 ], + [ 10.1618525, 46.6716909 ], + [ 10.161894, 46.6717056 ], + [ 10.1620544, 46.6717441 ], + [ 10.1621976, 46.6717795 ], + [ 10.1623332, 46.6718204 ], + [ 10.1624477, 46.671833 ], + [ 10.1626004, 46.6718492 ], + [ 10.1627201, 46.671859 ], + [ 10.1627563, 46.6718758 ], + [ 10.1628179, 46.6719044 ], + [ 10.1629224, 46.6719514 ], + [ 10.1629599, 46.672003 ], + [ 10.1629815, 46.6720329 ], + [ 10.1630504, 46.6721076 ], + [ 10.1631166, 46.6722198 ], + [ 10.1631326, 46.6722537 ], + [ 10.1631738, 46.6723409 ], + [ 10.1631938, 46.6724521 ], + [ 10.1632099, 46.6726148 ], + [ 10.1631905, 46.6727756 ], + [ 10.1631937, 46.6729363 ], + [ 10.1632057, 46.6730527 ], + [ 10.1632362, 46.673215 ], + [ 10.1632551, 46.6733569 ], + [ 10.1633263, 46.6735218 ], + [ 10.1634148, 46.6736927 ], + [ 10.1634836, 46.6738631 ], + [ 10.1635592, 46.6740387 ], + [ 10.1636169, 46.6741707 ], + [ 10.1636618, 46.674307400000004 ], + [ 10.1636853, 46.6743852 ], + [ 10.1637654, 46.6745455 ], + [ 10.163777, 46.6745641 ], + [ 10.1638153, 46.6746254 ], + [ 10.1637966, 46.6747744 ], + [ 10.1637515, 46.6748926 ], + [ 10.1636911, 46.6750192 ], + [ 10.1636319, 46.6751179 ], + [ 10.1635769, 46.6751958 ], + [ 10.1635266, 46.6752889 ], + [ 10.16347, 46.6753875 ], + [ 10.1634459, 46.6754799 ], + [ 10.1634276, 46.6756362 ], + [ 10.1634302, 46.6758181 ], + [ 10.1634179, 46.6759373 ], + [ 10.1634227, 46.6760597 ], + [ 10.163444, 46.67617 ], + [ 10.1634666, 46.6762802 ], + [ 10.1635093, 46.6763756 ], + [ 10.1635295, 46.6764373 ], + [ 10.1635027, 46.676555 ], + [ 10.163489, 46.6766733 ], + [ 10.1635035, 46.6767541 ], + [ 10.1635245, 46.6768581 ], + [ 10.163560499999999, 46.6769743 ], + [ 10.1635691, 46.677093 ], + [ 10.1635305, 46.6771849 ], + [ 10.1634533, 46.6772651 ], + [ 10.1633931, 46.6773431 ], + [ 10.1633458, 46.6774181 ], + [ 10.1632795, 46.6775061 ], + [ 10.1632278, 46.6775704 ], + [ 10.1631865, 46.6776867 ], + [ 10.1632596, 46.6777867 ], + [ 10.1633209, 46.6778582 ], + [ 10.1633674, 46.6779247 ], + [ 10.1634243, 46.6779882 ], + [ 10.1635119, 46.6780636 ], + [ 10.163597, 46.6781408 ], + [ 10.1636698, 46.6782094 ], + [ 10.1637972, 46.6782946 ], + [ 10.1639237, 46.6783619 ], + [ 10.1640138, 46.6784084 ], + [ 10.1641795, 46.6785008 ], + [ 10.1644052, 46.6785621 ], + [ 10.1646081, 46.6786131 ], + [ 10.1647717, 46.6786633 ], + [ 10.1649079, 46.678715 ], + [ 10.1650005, 46.6787596 ], + [ 10.1651212, 46.6788171 ], + [ 10.1652587, 46.6788949 ], + [ 10.1653266, 46.6789699 ], + [ 10.165403, 46.6790825 ], + [ 10.1654517, 46.6791912 ], + [ 10.1655433, 46.6792935 ], + [ 10.1656329, 46.6793562 ], + [ 10.1657058, 46.6794248 ], + [ 10.1658375, 46.6794919 ], + [ 10.1659107, 46.6795937 ], + [ 10.1659431, 46.6797164 ], + [ 10.1659758, 46.6798201 ], + [ 10.166030899999999, 46.6799521 ], + [ 10.1659873, 46.6800747 ], + [ 10.1660111, 46.6802093 ], + [ 10.165971, 46.680321 ], + [ 10.1659011, 46.6803893 ], + [ 10.1659115, 46.6805179 ], + [ 10.1658951, 46.6806084 ], + [ 10.1659624, 46.6807743 ], + [ 10.1660332, 46.6809059 ], + [ 10.1660839, 46.6810029 ], + [ 10.1661587, 46.6811354 ], + [ 10.1662407, 46.681255 ], + [ 10.166241, 46.6813658 ], + [ 10.1662299, 46.6814832 ], + [ 10.1661181, 46.6815516 ], + [ 10.1661033, 46.6816204 ], + [ 10.1661078, 46.6817365 ], + [ 10.1660968, 46.6818547 ], + [ 10.1660993, 46.6819565 ], + [ 10.1661528, 46.682082199999996 ], + [ 10.1662106, 46.6821646 ], + [ 10.1662496, 46.6822619 ], + [ 10.1663367, 46.6823544 ], + [ 10.1664474, 46.6824193 ], + [ 10.1665952, 46.6824941 ], + [ 10.1667193, 46.6825398 ], + [ 10.1668474, 46.6825872 ], + [ 10.1669168, 46.6827162 ], + [ 10.1669419, 46.6827994 ], + [ 10.1669375, 46.6828931 ], + [ 10.1669941, 46.6829765 ], + [ 10.1670784, 46.6830916 ], + [ 10.1671538, 46.6831843 ], + [ 10.1671773, 46.6832351 ], + [ 10.167158, 46.6833968 ], + [ 10.1671687, 46.6835056 ], + [ 10.167269, 46.6836239 ], + [ 10.1674674, 46.6836624 ], + [ 10.1675412, 46.6837237 ], + [ 10.1676071, 46.6838095 ], + [ 10.1676149, 46.683912 ], + [ 10.1676323, 46.6840764 ], + [ 10.1675935, 46.6841899 ], + [ 10.1675556, 46.6842944 ], + [ 10.1675472, 46.6844135 ], + [ 10.1675367, 46.6845435 ], + [ 10.1674522, 46.6847644 ], + [ 10.1674031, 46.68488 ], + [ 10.1673796, 46.6850111 ], + [ 10.167355, 46.6851216 ], + [ 10.1673784, 46.6852219 ], + [ 10.167419, 46.685325399999996 ], + [ 10.1674648, 46.6854018 ], + [ 10.1674262, 46.6854946 ], + [ 10.1673752, 46.6855472 ], + [ 10.1673335, 46.685577 ], + [ 10.1672915, 46.6856014 ], + [ 10.1672551, 46.685632 ], + [ 10.1671543, 46.6857119 ], + [ 10.1671047, 46.6857671 ], + [ 10.1670447, 46.6858244 ], + [ 10.1670001, 46.6858732 ], + [ 10.1669587, 46.6859093 ], + [ 10.1668881, 46.685965 ], + [ 10.1668284, 46.686052 ], + [ 10.1668174, 46.6861207 ], + [ 10.166831, 46.6861825 ], + [ 10.1668582, 46.6863053 ], + [ 10.1668481, 46.686392 ], + [ 10.1668542, 46.6864873 ], + [ 10.1668618, 46.6865601 ], + [ 10.1668652, 46.6866276 ], + [ 10.1668414, 46.6866993 ], + [ 10.1668534, 46.6868332 ], + [ 10.1668447, 46.6869208 ], + [ 10.1668465, 46.6870082 ], + [ 10.1668474, 46.6871054 ], + [ 10.166889, 46.6872017 ], + [ 10.166947, 46.6872877 ], + [ 10.1669427, 46.6873833 ], + [ 10.1669008, 46.6875131 ], + [ 10.1668973, 46.6876519 ], + [ 10.1669086, 46.6877462 ], + [ 10.1668735, 46.687829 ], + [ 10.1668482, 46.6879251 ], + [ 10.1668221, 46.6879788 ], + [ 10.166756, 46.6880966 ], + [ 10.1666712, 46.6882067 ], + [ 10.1666021, 46.6882903 ], + [ 10.1665614, 46.688367 ], + [ 10.1664918, 46.6884677 ], + [ 10.166443, 46.6885634 ], + [ 10.1664393, 46.6886977 ], + [ 10.1658487, 46.6899439 ], + [ 10.1658315, 46.6899804 ], + [ 10.1656634, 46.6899712 ], + [ 10.1656275, 46.6899767 ], + [ 10.1653733, 46.6901193 ], + [ 10.1653553, 46.69062 ], + [ 10.1652766, 46.6911183 ], + [ 10.1649446, 46.6913596 ], + [ 10.164860000000001, 46.6916282 ], + [ 10.1647607, 46.6919433 ], + [ 10.164749, 46.6920338 ], + [ 10.1647289, 46.6921885 ], + [ 10.1646191, 46.6926049 ], + [ 10.1644685, 46.6931992 ], + [ 10.1638895, 46.6933108 ], + [ 10.1633058, 46.6933436 ], + [ 10.1629061, 46.6935412 ], + [ 10.1625097, 46.6937049 ], + [ 10.1619649, 46.693748 ], + [ 10.1614999, 46.69406 ], + [ 10.1612959, 46.6941326 ], + [ 10.161274, 46.6944604 ], + [ 10.1616317, 46.6946801 ], + [ 10.1618359, 46.6949021 ], + [ 10.1620461, 46.695114 ], + [ 10.1622364, 46.6953704 ], + [ 10.1623668, 46.6957175 ], + [ 10.1625458, 46.6958941 ], + [ 10.1626013, 46.6960881 ], + [ 10.1627636, 46.6963228 ], + [ 10.1628789, 46.696663 ], + [ 10.1629213, 46.6968854 ], + [ 10.1629868, 46.6969892 ], + [ 10.1630621, 46.6970802 ], + [ 10.1632395, 46.6972462 ], + [ 10.1633295, 46.6973432 ], + [ 10.1634319, 46.6974524 ], + [ 10.163512, 46.6975082 ], + [ 10.1637413, 46.6975604 ], + [ 10.1639151, 46.697604 ], + [ 10.1640662, 46.697641 ], + [ 10.1642769, 46.6976882 ], + [ 10.1644032, 46.6977248 ], + [ 10.1645158, 46.697751 ], + [ 10.1646979, 46.6978034 ], + [ 10.1648976, 46.6978653 ], + [ 10.1650332, 46.6979062 ], + [ 10.1651654, 46.6979553 ], + [ 10.165267, 46.6979962 ], + [ 10.1653658, 46.6980326 ], + [ 10.1654487, 46.6980657 ], + [ 10.1655731, 46.6981177 ], + [ 10.1657494, 46.6981838 ], + [ 10.1659664, 46.6983047 ], + [ 10.1660807, 46.6983651 ], + [ 10.166181, 46.6984311 ], + [ 10.1662838, 46.6984953 ], + [ 10.1663749, 46.6985616 ], + [ 10.166495, 46.6986317 ], + [ 10.1665925, 46.6986934 ], + [ 10.1667288, 46.6987739 ], + [ 10.1668353, 46.6988326 ], + [ 10.1669346, 46.6989059 ], + [ 10.167058, 46.6989895 ], + [ 10.1671208, 46.6990654 ], + [ 10.1671682, 46.6991472 ], + [ 10.1671819, 46.6992892 ], + [ 10.1671982, 46.6994059 ], + [ 10.1672061, 46.6995624 ], + [ 10.1672385, 46.6997112 ], + [ 10.1672823, 46.6998507 ], + [ 10.167311399999999, 46.6999869 ], + [ 10.1673539, 46.700103 ], + [ 10.1673889, 46.7002255 ], + [ 10.1674289, 46.7003435 ], + [ 10.1674883, 46.7004295 ], + [ 10.1675845, 46.7005434 ], + [ 10.1676859, 46.700659 ], + [ 10.1677816, 46.7007891 ], + [ 10.1678597, 46.7008584 ], + [ 10.167968, 46.7009522 ], + [ 10.1680806, 46.7010297 ], + [ 10.1681617, 46.7010791 ], + [ 10.1683062, 46.7011657 ], + [ 10.1684691, 46.701251 ], + [ 10.1685628, 46.7012921 ], + [ 10.1687725, 46.7013708 ], + [ 10.168927, 46.7013428 ], + [ 10.1691187, 46.7013014 ], + [ 10.1693064, 46.7013077 ], + [ 10.1695389, 46.7013454 ], + [ 10.1697183, 46.7013718 ], + [ 10.1704502, 46.7015183 ], + [ 10.1707596, 46.7015487 ], + [ 10.170907, 46.7015633 ], + [ 10.1710304, 46.7015675 ], + [ 10.1711853, 46.7015746 ], + [ 10.1713189, 46.7015733 ], + [ 10.1716079, 46.7015637 ], + [ 10.1718123, 46.7015642 ], + [ 10.1719542, 46.7015726 ], + [ 10.1721417, 46.7015753 ], + [ 10.1722801, 46.7015918 ], + [ 10.1724097, 46.7016176 ], + [ 10.1725424, 46.7016243 ], + [ 10.1726462, 46.7016038 ], + [ 10.172804, 46.7015649 ], + [ 10.1729623, 46.701535 ], + [ 10.1731464, 46.7015216 ], + [ 10.1733112, 46.7015177 ], + [ 10.173486, 46.7015036 ], + [ 10.1736172, 46.7014807 ], + [ 10.1737983, 46.7013845 ], + [ 10.1739675, 46.7013625 ], + [ 10.1742464, 46.7013585 ], + [ 10.17444, 46.701353 ], + [ 10.1746353, 46.7013033 ], + [ 10.1748334, 46.7013355 ], + [ 10.1750215, 46.70135 ], + [ 10.1752284, 46.7013495 ], + [ 10.1753403, 46.7012829 ], + [ 10.175449, 46.7011776 ], + [ 10.1756009, 46.7010479 ], + [ 10.1757499, 46.7010155 ], + [ 10.1759563, 46.7010043 ], + [ 10.1760637, 46.7010035 ], + [ 10.1761986, 46.700976 ], + [ 10.1762595, 46.7009367 ], + [ 10.1763224, 46.7008857 ], + [ 10.1764231, 46.7007788 ], + [ 10.1764795, 46.7007027 ], + [ 10.1765418, 46.7006399 ], + [ 10.1766594, 46.7005831 ], + [ 10.1767502, 46.7005395 ], + [ 10.1768275, 46.7005133 ], + [ 10.1769352, 46.7004666 ], + [ 10.1769947, 46.7003742 ], + [ 10.177075, 46.7003038 ], + [ 10.1771449, 46.7002355 ], + [ 10.1772369, 46.7001649 ], + [ 10.1773327, 46.7001166 ], + [ 10.1775373, 46.7000442 ], + [ 10.1776555, 46.7000234 ], + [ 10.1778026, 46.6999793 ], + [ 10.1778928, 46.6999501 ], + [ 10.1780008, 46.6998836 ], + [ 10.1782076, 46.699803 ], + [ 10.1783691, 46.6997577 ], + [ 10.1785785, 46.6997023 ], + [ 10.1789386, 46.6996477 ], + [ 10.1790826, 46.6996209 ], + [ 10.1791974, 46.6995848 ], + [ 10.1793505, 46.699555 ], + [ 10.1795559, 46.6995772 ], + [ 10.1797349, 46.6996197 ], + [ 10.1799123, 46.699656 ], + [ 10.1800412, 46.6996917 ], + [ 10.1802137, 46.6997353 ], + [ 10.1803179, 46.6996968 ], + [ 10.1804977, 46.6996781 ], + [ 10.1807438, 46.6997271 ], + [ 10.1808932, 46.6997794 ], + [ 10.1809883, 46.6997952 ], + [ 10.1811385, 46.6998384 ], + [ 10.1812626, 46.6998309 ], + [ 10.1814255, 46.6998144 ], + [ 10.181578, 46.6998 ], + [ 10.1817022, 46.6997952 ], + [ 10.1818212, 46.6997906 ], + [ 10.1819742, 46.6997851 ], + [ 10.1820955, 46.6997741 ], + [ 10.1822973, 46.6997495 ], + [ 10.1825884, 46.6997038 ], + [ 10.1827479, 46.6996711 ], + [ 10.1828912, 46.6996308 ], + [ 10.1830102, 46.6996 ], + [ 10.1832351, 46.6994883 ], + [ 10.1833056, 46.6994587 ], + [ 10.1835218, 46.6994076 ], + [ 10.1836699, 46.6993572 ], + [ 10.1838412, 46.6993261 ], + [ 10.1840453, 46.6993212 ], + [ 10.1842782, 46.6993157 ], + [ 10.1844154, 46.6993088 ], + [ 10.1845793, 46.6992859 ], + [ 10.1846977, 46.6992453 ], + [ 10.1848581, 46.6992036 ], + [ 10.1850108, 46.6991684 ], + [ 10.185172, 46.699143 ], + [ 10.1853117, 46.6991342 ], + [ 10.1855587, 46.6990184 ], + [ 10.1856534, 46.6990278 ], + [ 10.1858187, 46.6990311 ], + [ 10.1860022, 46.699033 ], + [ 10.1861735, 46.6990541 ], + [ 10.1863651, 46.6990613 ], + [ 10.1865104, 46.6990578 ], + [ 10.1866528, 46.6990508 ], + [ 10.1868435, 46.6990408 ], + [ 10.1869523, 46.6990418 ], + [ 10.1870923, 46.6990646 ], + [ 10.1872383, 46.6991016 ], + [ 10.1873974, 46.6991392 ], + [ 10.187569, 46.6991648 ], + [ 10.1877681, 46.6991907 ], + [ 10.1878693, 46.6991973 ], + [ 10.1879338, 46.699202 ], + [ 10.1880805, 46.6992283 ], + [ 10.188199000000001, 46.699266 ], + [ 10.1883038, 46.6993175 ], + [ 10.1883938, 46.6993604 ], + [ 10.1884826, 46.6993817 ], + [ 10.188714300000001, 46.6993788 ], + [ 10.1889986, 46.6993792 ], + [ 10.189239, 46.6993653 ], + [ 10.1894072, 46.6993514 ], + [ 10.1896227, 46.6993381 ], + [ 10.1899674, 46.6993164 ], + [ 10.1901412, 46.6993086 ], + [ 10.1902867, 46.6993087 ], + [ 10.1903784, 46.6993092 ], + [ 10.1906033, 46.6993786 ], + [ 10.1907021, 46.6994402 ], + [ 10.1908169, 46.6995338 ], + [ 10.1910031, 46.6996149 ], + [ 10.191217, 46.6996746 ], + [ 10.1914566, 46.6997238 ], + [ 10.1916767, 46.6997492 ], + [ 10.1919469, 46.6997814 ], + [ 10.1921938, 46.6998196 ], + [ 10.1923909, 46.6998581 ], + [ 10.1925169, 46.6998884 ], + [ 10.1927068, 46.6999127 ], + [ 10.1928736, 46.6999213 ], + [ 10.1930398, 46.6999426 ], + [ 10.1931726, 46.6999538 ], + [ 10.1933511, 46.6998612 ], + [ 10.1933615, 46.6997312 ], + [ 10.193393, 46.6996617 ], + [ 10.1934878, 46.6996317 ], + [ 10.1937875, 46.6996164 ], + [ 10.1940383, 46.6994965 ], + [ 10.1943117, 46.6994671 ], + [ 10.1942407, 46.6993459 ], + [ 10.1942642, 46.6992567 ], + [ 10.1946233, 46.6989466 ], + [ 10.1946872, 46.6988583 ], + [ 10.1946741, 46.6987393 ], + [ 10.194729, 46.6986825 ], + [ 10.1952738, 46.6985681 ], + [ 10.1954868, 46.6984924 ], + [ 10.1959463, 46.6982153 ], + [ 10.1959862, 46.6980512 ], + [ 10.1960653, 46.6979839 ], + [ 10.1966285, 46.6979339 ], + [ 10.1969814, 46.6979258 ], + [ 10.1974842, 46.6977484 ], + [ 10.1976158, 46.697734 ], + [ 10.1977866, 46.6977499 ], + [ 10.1979957, 46.697706 ], + [ 10.1982339, 46.6977013 ], + [ 10.1985062, 46.6976201 ], + [ 10.1986195, 46.6976275 ], + [ 10.1987435, 46.6976583 ], + [ 10.1988327, 46.6976585 ], + [ 10.1989212, 46.6976386 ], + [ 10.1991693, 46.6975428 ], + [ 10.1993403, 46.6974358 ], + [ 10.1997567, 46.6973293 ], + [ 10.1999424, 46.6972461 ], + [ 10.2001339, 46.6972292 ], + [ 10.2004561, 46.697145 ], + [ 10.2009855, 46.6973325 ], + [ 10.2011324, 46.6973301 ], + [ 10.2013402, 46.6972905 ], + [ 10.201516699999999, 46.6972813 ], + [ 10.2016961, 46.6972527 ], + [ 10.2020087, 46.6972679 ], + [ 10.2021591, 46.6972395 ], + [ 10.2023232, 46.6971791 ], + [ 10.2025877, 46.6971152 ], + [ 10.2031255, 46.6970202 ], + [ 10.203266, 46.6970418 ], + [ 10.2033735, 46.6971208 ], + [ 10.2035951, 46.6972006 ], + [ 10.2037113, 46.6972008 ], + [ 10.2041663, 46.697038 ], + [ 10.2043931, 46.6969596 ], + [ 10.2044812, 46.6968911 ], + [ 10.2045381, 46.6967739 ], + [ 10.2046158, 46.6967134 ], + [ 10.2048815, 46.6966258 ], + [ 10.2051568, 46.6964791 ], + [ 10.2053634, 46.6963984 ], + [ 10.2057124, 46.6963457 ], + [ 10.205937, 46.6963457 ], + [ 10.2060644, 46.6961906 ], + [ 10.2062757, 46.696174 ], + [ 10.2064726, 46.6960758 ], + [ 10.206609, 46.6960537 ], + [ 10.2067811, 46.6960476 ], + [ 10.2069488, 46.6959674 ], + [ 10.2070898, 46.6959272 ], + [ 10.2072193, 46.6958664 ], + [ 10.2072904, 46.6957816 ], + [ 10.2073104, 46.6956624 ], + [ 10.2074498, 46.6956349 ], + [ 10.2077972, 46.6956139 ], + [ 10.2078689, 46.6956265 ], + [ 10.2079115, 46.6956515 ], + [ 10.2079699, 46.6957566 ], + [ 10.2080492, 46.695779 ], + [ 10.208317, 46.6957725 ], + [ 10.2088498, 46.6957916 ], + [ 10.2090212, 46.6958226 ], + [ 10.2091549, 46.695917 ], + [ 10.209514800000001, 46.6960939 ], + [ 10.2097511, 46.6960937 ], + [ 10.2100453, 46.6961592 ], + [ 10.2103111, 46.6961798 ], + [ 10.2104397, 46.6962135 ], + [ 10.2106029, 46.6961776 ], + [ 10.2107812, 46.6962424 ], + [ 10.2110112, 46.6962659 ], + [ 10.2112271, 46.6963159 ], + [ 10.211444, 46.6963602 ], + [ 10.2118233, 46.696418800000004 ], + [ 10.2123482, 46.6964249 ], + [ 10.2129178, 46.6964205 ], + [ 10.2135447, 46.6963703 ], + [ 10.2136916, 46.6963818 ], + [ 10.2138675, 46.6964235 ], + [ 10.2140485, 46.6964362 ], + [ 10.2142832, 46.6964914 ], + [ 10.2144456, 46.696481 ], + [ 10.2147738, 46.6963732 ], + [ 10.215174, 46.6963611 ], + [ 10.2153355, 46.6963272 ], + [ 10.2155351, 46.696349 ], + [ 10.2156716, 46.6963237 ], + [ 10.2158345, 46.6963113 ], + [ 10.2161459, 46.6960304 ], + [ 10.2161202, 46.6959175 ], + [ 10.216137, 46.6958582 ], + [ 10.2162109, 46.6958316 ], + [ 10.2166339, 46.6958181 ], + [ 10.217074, 46.6957514 ], + [ 10.217056, 46.6955421 ], + [ 10.2171411, 46.6953996 ], + [ 10.2172251, 46.6951098 ], + [ 10.2171598, 46.69492 ], + [ 10.217301, 46.6949353 ], + [ 10.2174584, 46.694925 ], + [ 10.2176811, 46.6948496 ], + [ 10.2179139, 46.6947473 ], + [ 10.2181813, 46.6947357 ], + [ 10.2184145, 46.6946789 ], + [ 10.2187073, 46.6945342 ], + [ 10.2190356, 46.694326 ], + [ 10.2192502, 46.6943252 ], + [ 10.2194568, 46.6943026 ], + [ 10.2196438, 46.6942588 ], + [ 10.2198716, 46.6942222 ], + [ 10.2199222, 46.6941956 ], + [ 10.2199923, 46.6940549 ], + [ 10.2200656, 46.6939695 ], + [ 10.2202077, 46.6940299 ], + [ 10.2203516, 46.6940404 ], + [ 10.2206439, 46.6939792 ], + [ 10.2209714, 46.6939237 ], + [ 10.2213577, 46.69378 ], + [ 10.2215513, 46.6936751 ], + [ 10.2217089, 46.6936425 ], + [ 10.2218955, 46.6936256 ], + [ 10.2220187, 46.6935516 ], + [ 10.2221401, 46.6935227 ], + [ 10.2223319, 46.6935019 ], + [ 10.2225173, 46.6934505 ], + [ 10.2227979, 46.6933393 ], + [ 10.2229167, 46.6932451 ], + [ 10.2230491, 46.6932004 ], + [ 10.2231999, 46.6931832 ], + [ 10.2232671, 46.6931022 ], + [ 10.2233689, 46.6930186 ], + [ 10.2234307, 46.6928674 ], + [ 10.2235362, 46.6927347 ], + [ 10.2235703, 46.6926282 ], + [ 10.22362, 46.6925711 ], + [ 10.2237054, 46.692538 ], + [ 10.224008, 46.692495 ], + [ 10.2243927, 46.6923581 ], + [ 10.2245963, 46.6923341 ], + [ 10.2248406, 46.6923735 ], + [ 10.2250458, 46.6924443 ], + [ 10.2251452, 46.6923637 ], + [ 10.2253128, 46.69219 ], + [ 10.2254334, 46.6921343 ], + [ 10.2256371, 46.6921248 ], + [ 10.2257803, 46.6921012 ], + [ 10.2259955, 46.6920895 ], + [ 10.2261906, 46.6920677 ], + [ 10.2263666, 46.6919805 ], + [ 10.2264205, 46.6918254 ], + [ 10.226568, 46.6917644 ], + [ 10.2266587, 46.6916854 ], + [ 10.2268053, 46.6915885 ], + [ 10.2269483, 46.6915643 ], + [ 10.2270391, 46.6914898 ], + [ 10.2271418, 46.6915184 ], + [ 10.227194, 46.691514 ], + [ 10.2272611, 46.6914726 ], + [ 10.2276794, 46.6912613 ], + [ 10.2278499, 46.6912103 ], + [ 10.2280301, 46.6911908 ], + [ 10.2282167, 46.6911834 ], + [ 10.2287452, 46.6912273 ], + [ 10.2289151, 46.6911874 ], + [ 10.2290385, 46.6911024 ], + [ 10.2291523, 46.6910196 ], + [ 10.22925, 46.6909213 ], + [ 10.2294014, 46.6906589 ], + [ 10.2294986, 46.6905517 ], + [ 10.229549, 46.6905433 ], + [ 10.229731, 46.6906117 ], + [ 10.2299139, 46.690648 ], + [ 10.2300673, 46.6906524 ], + [ 10.2303764, 46.6906376 ], + [ 10.2305433, 46.6906019 ], + [ 10.2309042, 46.6905842 ], + [ 10.2311362, 46.690644 ], + [ 10.2313234, 46.6906549 ], + [ 10.231488, 46.690647 ], + [ 10.2315647, 46.6906168 ], + [ 10.2317677, 46.6904172 ], + [ 10.2318984, 46.6903351 ], + [ 10.2320324, 46.6902891 ], + [ 10.2321981, 46.6902822 ], + [ 10.2325338, 46.6903251 ], + [ 10.232747700000001, 46.690337 ], + [ 10.2329688, 46.6903655 ], + [ 10.2330632, 46.6903553 ], + [ 10.2333556, 46.6902668 ], + [ 10.233552, 46.690242 ], + [ 10.2335431, 46.6903152 ], + [ 10.2336705, 46.6903406 ], + [ 10.2338737, 46.6902857 ], + [ 10.2339643, 46.6902864 ], + [ 10.2341822, 46.6903507 ], + [ 10.2343132, 46.6903457 ], + [ 10.234397, 46.6903915 ], + [ 10.2345687, 46.6903714 ], + [ 10.2348802, 46.6904447 ], + [ 10.2351038, 46.6904776 ], + [ 10.2353375, 46.6904782 ], + [ 10.2354427, 46.6904566 ], + [ 10.2358543, 46.6902681 ], + [ 10.2360335, 46.6902303 ], + [ 10.2362696, 46.6902516 ], + [ 10.2365356, 46.6902415 ], + [ 10.2368351, 46.6901948 ], + [ 10.2371275, 46.690075 ], + [ 10.2373211, 46.6900226 ], + [ 10.2377119, 46.6900148 ], + [ 10.238008, 46.689979 ], + [ 10.2382123, 46.6901204 ], + [ 10.2383032, 46.6901529 ], + [ 10.2383962, 46.690155 ], + [ 10.2385142, 46.6901307 ], + [ 10.2387299, 46.690126 ], + [ 10.2389375, 46.6900983 ], + [ 10.2391348, 46.6900629 ], + [ 10.2392366, 46.690104 ], + [ 10.2393515, 46.6900924 ], + [ 10.2395248, 46.6900908 ], + [ 10.2396481, 46.6899875 ], + [ 10.2397781, 46.6897856 ], + [ 10.2400253, 46.6897869 ], + [ 10.2402118, 46.6897538 ], + [ 10.240384, 46.6896239 ], + [ 10.2405049, 46.6895758 ], + [ 10.2406771, 46.6895544 ], + [ 10.2407903, 46.6894489 ], + [ 10.2409401, 46.6893739 ], + [ 10.2410798, 46.6893462 ], + [ 10.2412857, 46.6892657 ], + [ 10.2414268, 46.6891773 ], + [ 10.2417067, 46.6890318 ], + [ 10.2418178, 46.6890227 ], + [ 10.2420046, 46.6890551 ], + [ 10.2421517, 46.6890307 ], + [ 10.24227, 46.6889726 ], + [ 10.2425426, 46.6888875 ], + [ 10.2426602, 46.6888647 ], + [ 10.2428691, 46.6887159 ], + [ 10.2430623, 46.6885427 ], + [ 10.2432111, 46.6884514 ], + [ 10.2434986, 46.688326 ], + [ 10.2439062, 46.6881863 ], + [ 10.2440802, 46.6881504 ], + [ 10.2443757, 46.6881025 ], + [ 10.2445362, 46.6880579 ], + [ 10.2446733, 46.6879875 ], + [ 10.2448009, 46.6879475 ], + [ 10.2449022, 46.6879025 ], + [ 10.245034799999999, 46.6878762 ], + [ 10.245195, 46.6877779 ], + [ 10.2453239, 46.6877322 ], + [ 10.2454844, 46.6877129 ], + [ 10.2456453, 46.687601 ], + [ 10.2458103, 46.6874678 ], + [ 10.2459124, 46.687412 ], + [ 10.2460423, 46.6873853 ], + [ 10.2465509, 46.6873718 ], + [ 10.2468396, 46.6872934 ], + [ 10.2471585, 46.6870322 ], + [ 10.2473824, 46.6868775 ], + [ 10.2475139, 46.6868318 ], + [ 10.2478874, 46.6867683 ], + [ 10.2481756, 46.6866993 ], + [ 10.2482265, 46.6866644 ], + [ 10.2482331, 46.686624 ], + [ 10.2482673, 46.6865978 ], + [ 10.2485333, 46.6865958 ], + [ 10.2488214, 46.6866507 ], + [ 10.2488823, 46.6866469 ], + [ 10.2489691, 46.6866012 ], + [ 10.2490844, 46.6865822 ], + [ 10.2491877, 46.6865399 ], + [ 10.2493691, 46.6865377 ], + [ 10.2495215, 46.686514 ], + [ 10.2496403, 46.6865189 ], + [ 10.2497479, 46.6865518 ], + [ 10.2499369, 46.6867079 ], + [ 10.2500104, 46.6867512 ], + [ 10.250092800000001, 46.6867855 ], + [ 10.2502022, 46.6867813 ], + [ 10.2504664, 46.686728 ], + [ 10.2505478, 46.6867021 ], + [ 10.2506088, 46.6866687 ], + [ 10.2507052, 46.6865345 ], + [ 10.2507936, 46.6864504 ], + [ 10.2509065, 46.6863725 ], + [ 10.2510294, 46.6863204 ], + [ 10.2511928, 46.6863225 ], + [ 10.2513301, 46.686301 ], + [ 10.2514281, 46.6863247 ], + [ 10.2515874, 46.6863947 ], + [ 10.2517516, 46.6864373 ], + [ 10.2522395, 46.6865108 ], + [ 10.2523611, 46.6864992 ], + [ 10.2524993, 46.6863267 ], + [ 10.2526044, 46.6862854 ], + [ 10.2528206, 46.6862541 ], + [ 10.2529733, 46.6861743 ], + [ 10.253260000000001, 46.686088 ], + [ 10.2534878, 46.6859504 ], + [ 10.2536045, 46.6858468 ], + [ 10.2537478, 46.6857764 ], + [ 10.2539128, 46.6857593 ], + [ 10.2542253, 46.6856113 ], + [ 10.2543999, 46.6855678 ], + [ 10.2547583, 46.685428 ], + [ 10.2549477, 46.6853061 ], + [ 10.2550895, 46.6852758 ], + [ 10.2552384, 46.685187 ], + [ 10.2553781, 46.6851725 ], + [ 10.255725, 46.6851564 ], + [ 10.2558983, 46.6850839 ], + [ 10.2560406, 46.685014699999996 ], + [ 10.2561859, 46.6849804 ], + [ 10.2564205, 46.6849484 ], + [ 10.2565624, 46.6849006 ], + [ 10.2567743, 46.6847748 ], + [ 10.2570427, 46.6846733 ], + [ 10.2572037, 46.6846386 ], + [ 10.2573445, 46.6846347 ], + [ 10.2576712, 46.6845116 ], + [ 10.257858, 46.6843754 ], + [ 10.2580135, 46.6843603 ], + [ 10.2582046, 46.6842708 ], + [ 10.2583416, 46.68426 ], + [ 10.2584365, 46.6843172 ], + [ 10.2586039, 46.684305 ], + [ 10.2587638, 46.6842766 ], + [ 10.2589274, 46.6842963 ], + [ 10.2593712, 46.6843926 ], + [ 10.2595887, 46.6844762 ], + [ 10.2597035, 46.6844799 ], + [ 10.2600127, 46.6844523 ], + [ 10.2601441, 46.6844622 ], + [ 10.2604298, 46.6845188 ], + [ 10.2605718, 46.6845289 ], + [ 10.2610448, 46.6845214 ], + [ 10.2612768, 46.6845401 ], + [ 10.2614954, 46.6845242 ], + [ 10.261669, 46.6845327 ], + [ 10.261905, 46.6844972 ], + [ 10.2620042, 46.684498 ], + [ 10.2622064, 46.6845441 ], + [ 10.2624638, 46.684543 ], + [ 10.2627735, 46.6845951 ], + [ 10.2629923, 46.6846127 ], + [ 10.2631855, 46.6846188 ], + [ 10.2632614, 46.6846142 ], + [ 10.2634704, 46.6845071 ], + [ 10.2638176, 46.6844057 ], + [ 10.2640238, 46.6843581 ], + [ 10.2642763, 46.6843248 ], + [ 10.2644524, 46.6843452 ], + [ 10.2646335, 46.6842809 ], + [ 10.2649258, 46.6842591 ], + [ 10.2651673, 46.6842187 ], + [ 10.2651889, 46.6843167 ], + [ 10.2654454, 46.6845229 ], + [ 10.2656614, 46.6851208 ], + [ 10.2655668, 46.6852453 ], + [ 10.2657413, 46.6853267 ], + [ 10.2657318, 46.6854617 ], + [ 10.2658056, 46.6855326 ], + [ 10.2667038, 46.6856692 ], + [ 10.2671429, 46.685802699999996 ], + [ 10.2677908, 46.68586 ], + [ 10.2681043, 46.6863612 ], + [ 10.2687899, 46.6862059 ], + [ 10.2690336, 46.6864563 ], + [ 10.2694904, 46.6866879 ], + [ 10.2700155, 46.6867618 ], + [ 10.2707085, 46.6871042 ], + [ 10.2710262, 46.6874551 ], + [ 10.2714342, 46.6874321 ], + [ 10.2724901, 46.6878444 ], + [ 10.2732065, 46.6879798 ], + [ 10.2739372, 46.688638 ], + [ 10.2745101, 46.6888197 ], + [ 10.2753681, 46.6897233 ], + [ 10.2767137, 46.6905593 ], + [ 10.2769619, 46.6910847 ], + [ 10.2767432, 46.6914052 ], + [ 10.275672, 46.6914319 ], + [ 10.2748639, 46.6922351 ], + [ 10.2734433, 46.6925855 ], + [ 10.2726893, 46.6926763 ], + [ 10.2733671, 46.6931275 ], + [ 10.273511, 46.693376 ], + [ 10.2734561, 46.6935754 ], + [ 10.2735046, 46.6949964 ], + [ 10.2730293, 46.6954133 ], + [ 10.2728829, 46.695615 ], + [ 10.2729544, 46.6957302 ], + [ 10.2716678, 46.6956452 ], + [ 10.2712129, 46.6957015 ], + [ 10.2709373, 46.6959334 ], + [ 10.2708412, 46.6960978 ], + [ 10.2705903, 46.696302 ], + [ 10.270454, 46.6961974 ], + [ 10.2698599, 46.6960951 ], + [ 10.2694456, 46.6961774 ], + [ 10.2683098, 46.6969708 ], + [ 10.2679211, 46.6970434 ], + [ 10.2668639, 46.6975917 ], + [ 10.2664941, 46.698024 ], + [ 10.2662114, 46.698121 ], + [ 10.2663537, 46.6990896 ], + [ 10.2646227, 46.6997627 ], + [ 10.2630474, 46.7001618 ], + [ 10.2614008, 46.7006976 ], + [ 10.2607937, 46.7008477 ], + [ 10.2600144, 46.700957 ], + [ 10.2593322, 46.7011719 ], + [ 10.2582558, 46.7018556 ], + [ 10.2578541, 46.7021806 ], + [ 10.2562686, 46.7031379 ], + [ 10.2558277, 46.7034639 ], + [ 10.2556733, 46.7037647 ], + [ 10.255753, 46.7044777 ], + [ 10.2555919, 46.7047119 ], + [ 10.2549257, 46.7057365 ], + [ 10.2546781, 46.7065077 ], + [ 10.2540945, 46.7073593 ], + [ 10.2537945, 46.7078797 ], + [ 10.2537824, 46.7081501 ], + [ 10.2542915, 46.7091276 ], + [ 10.2552436, 46.7105713 ], + [ 10.2556615, 46.7110561 ], + [ 10.2560921, 46.7117835 ], + [ 10.2562846, 46.7122108 ], + [ 10.2565511, 46.7135544 ], + [ 10.256658999999999, 46.7138668 ], + [ 10.2570447, 46.7142353 ], + [ 10.258992, 46.7164375 ], + [ 10.2592069, 46.7167922 ], + [ 10.2591771, 46.716973 ], + [ 10.259032, 46.7172016 ], + [ 10.2593027, 46.718122 ], + [ 10.2591357, 46.7186842 ], + [ 10.2588693, 46.7190959 ], + [ 10.2590118, 46.7193174 ], + [ 10.2594148, 46.7195145 ], + [ 10.2597566, 46.7197941 ], + [ 10.2606998, 46.7203108 ], + [ 10.2615147, 46.7208757 ], + [ 10.2619318, 46.7213425 ], + [ 10.2621979, 46.7214259 ], + [ 10.2624865, 46.7214367 ], + [ 10.2628074, 46.7218159 ], + [ 10.262687, 46.7220169 ], + [ 10.2627049, 46.7223585 ], + [ 10.2628065, 46.7230491 ], + [ 10.2630537, 46.72352 ], + [ 10.2632896, 46.7238809 ], + [ 10.2639267, 46.7244435 ], + [ 10.2659292, 46.7264372 ], + [ 10.2663105, 46.7269678 ], + [ 10.2672386, 46.727691899999996 ], + [ 10.2675996, 46.727835999999996 ], + [ 10.2684565, 46.727949699999996 ], + [ 10.2679286, 46.7283679 ], + [ 10.2677457, 46.7286245 ], + [ 10.267661, 46.7290046 ], + [ 10.267289, 46.7294009 ], + [ 10.2666563, 46.7303167 ], + [ 10.2662471, 46.7307499 ], + [ 10.2658083, 46.7311209 ], + [ 10.2656264, 46.7313954 ], + [ 10.2652922, 46.7317637 ], + [ 10.2648402, 46.7326301 ], + [ 10.2656662, 46.7326546 ], + [ 10.2658219, 46.7331278 ], + [ 10.2662474, 46.7332523 ], + [ 10.2676856, 46.7332166 ], + [ 10.2682535, 46.7333105 ], + [ 10.268388999999999, 46.7333972 ], + [ 10.2684946, 46.7336646 ], + [ 10.2685112, 46.7339793 ], + [ 10.2688157, 46.7340437 ], + [ 10.2696461, 46.7344012 ], + [ 10.2699506, 46.7344656 ], + [ 10.2708944, 46.7344872 ], + [ 10.2712638, 46.734541 ], + [ 10.2716893, 46.7346655 ], + [ 10.2721625, 46.7349508 ], + [ 10.2724297, 46.7350522 ], + [ 10.2727721, 46.7353407 ], + [ 10.2734149, 46.7356128 ], + [ 10.2736802, 46.7356782 ], + [ 10.2740174, 46.7358678 ], + [ 10.2747531, 46.7361646 ], + [ 10.2753677, 46.7361493 ], + [ 10.2756068, 46.7362154 ], + [ 10.2759821, 46.7366291 ], + [ 10.2762947, 46.7368464 ], + [ 10.2765861, 46.7369111 ], + [ 10.2767202, 46.7369708 ], + [ 10.2771517, 46.7377072 ], + [ 10.2772753, 46.7380641 ], + [ 10.2772502, 46.7383348 ], + [ 10.2767461, 46.7387074 ], + [ 10.2763988, 46.7388241 ], + [ 10.2764869, 46.7392539 ], + [ 10.2764452, 46.739705 ], + [ 10.2766186, 46.7400158 ], + [ 10.2766328, 46.7402855 ], + [ 10.276521, 46.7406483 ], + [ 10.2765376, 46.7409629 ], + [ 10.2766873, 46.7413193 ], + [ 10.2769473, 46.7417809 ], + [ 10.2771781, 46.7419371 ], + [ 10.2772931, 46.7421323 ], + [ 10.277386, 46.7426521 ], + [ 10.2772979, 46.7429693 ], + [ 10.2775045, 46.7431622 ], + [ 10.2783175, 46.743682 ], + [ 10.2792045, 46.7443621 ], + [ 10.2794926, 46.7444895 ], + [ 10.2792211, 46.7446767 ], + [ 10.2787904, 46.7452005 ], + [ 10.2786097, 46.7459971 ], + [ 10.2786216, 46.7462218 ], + [ 10.2789172, 46.7468626 ], + [ 10.2788196, 46.7474951 ], + [ 10.27896, 46.7484188 ], + [ 10.2789457, 46.7486441 ], + [ 10.2790215, 46.7488403 ], + [ 10.2792319, 46.7491051 ], + [ 10.2803886, 46.7499314 ], + [ 10.280618, 46.7500607 ], + [ 10.2806242, 46.7501776 ], + [ 10.2805421, 46.7503596 ], + [ 10.2801271, 46.750685 ], + [ 10.279919, 46.7509603 ], + [ 10.2796537, 46.751642 ], + [ 10.2796441, 46.7519572 ], + [ 10.2800352, 46.7526676 ], + [ 10.2801196, 46.7530256 ], + [ 10.2803238, 46.7531735 ], + [ 10.2798234, 46.753618 ], + [ 10.2796293, 46.7538218 ], + [ 10.2795985, 46.7541987 ], + [ 10.2793958, 46.7546838 ], + [ 10.2794677, 46.7549652 ], + [ 10.2797299, 46.755329 ], + [ 10.2797001, 46.7554852 ], + [ 10.2798318, 46.7560236 ], + [ 10.2791239, 46.7561407 ], + [ 10.2788747, 46.7564635 ], + [ 10.2786307, 46.7565262 ], + [ 10.2783325, 46.7568797 ], + [ 10.2785772, 46.7571353 ], + [ 10.27864, 46.7576614 ], + [ 10.2783303, 46.7581633 ], + [ 10.2786465, 46.7588616 ], + [ 10.2786634, 46.7590711 ], + [ 10.2787767, 46.7591939 ], + [ 10.2785742, 46.7595827 ], + [ 10.2788953, 46.7597811 ], + [ 10.2794106, 46.7607016 ], + [ 10.2827272, 46.7677811 ], + [ 10.2832162, 46.7679293 ], + [ 10.2835226, 46.7680253 ], + [ 10.2839594, 46.768111 ], + [ 10.2842292, 46.7681803 ], + [ 10.2843211, 46.7683092 ], + [ 10.2844574, 46.7684093 ], + [ 10.2846516, 46.7684735 ], + [ 10.2848851, 46.768523 ], + [ 10.2851591, 46.7685644 ], + [ 10.2856471, 46.7685799 ], + [ 10.2859735, 46.7685752 ], + [ 10.2863052, 46.7685773 ], + [ 10.2866339, 46.768614 ], + [ 10.286978, 46.7686192 ], + [ 10.2873189, 46.7687005 ], + [ 10.2876535, 46.7687577 ], + [ 10.2879703, 46.76885 ], + [ 10.2882661, 46.7689323 ], + [ 10.2885524, 46.7690184 ], + [ 10.2888716, 46.7691244 ], + [ 10.2890335, 46.7692447 ], + [ 10.2891663, 46.7693724 ], + [ 10.2893966, 46.7695463 ], + [ 10.28954, 46.7695012 ], + [ 10.2896698, 46.7694946 ], + [ 10.2898205, 46.7694942 ], + [ 10.2899031, 46.7695232 ], + [ 10.290245, 46.7696252 ], + [ 10.2903775, 46.7696702 ], + [ 10.2904889, 46.7696847 ], + [ 10.2910206, 46.7697991 ], + [ 10.2913284, 46.7698294 ], + [ 10.291586, 46.769854 ], + [ 10.2917179, 46.7698714 ], + [ 10.291913, 46.7698596 ], + [ 10.2922508, 46.7698374 ], + [ 10.2925308, 46.7697141 ], + [ 10.2925198, 46.7696149 ], + [ 10.2925211, 46.7695306 ], + [ 10.2925328, 46.7694583 ] + ] + ], + "layer" : { + "upper" : 300, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "NPA0002", + "country" : "CHE", + "name" : [ + { + "text" : "Schweizerischer Nationalpark", + "lang" : "de-CH" + }, + { + "text" : "Parc National Suisse", + "lang" : "fr-CH" + }, + { + "text" : "Parco Nazionale Svizzero", + "lang" : "it-CH" + }, + { + "text" : "Swiss National Park", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Schweizerischer Nationalpark", + "lang" : "de-CH" + }, + { + "text" : "Parc National Suisse", + "lang" : "fr-CH" + }, + { + "text" : "Parco Nazionale Svizzero", + "lang" : "it-CH" + }, + { + "text" : "Swiss National Park", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Bereich Naturschutz und Naturraummanagement", + "lang" : "de-CH" + }, + { + "text" : "Division Protection et gestion de la nature", + "lang" : "fr-CH" + }, + { + "text" : "Divisione conservazione e gestione della natura", + "lang" : "it-CH" + }, + { + "text" : "Conservation and Natural Resources Department", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Flurin Filli", + "lang" : "de-CH" + }, + { + "text" : "Flurin Filli", + "lang" : "fr-CH" + }, + { + "text" : "Flurin Filli", + "lang" : "it-CH" + }, + { + "text" : "Flurin Filli", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.nationalpark.ch/en/visit/hiking/protection-regulations/", + "email" : "info@nationalpark.ch", + "phone" : "0041818514111", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P01DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.050844, 46.52008 ], + [ 7.0509134, 46.5199513 ], + [ 7.0509075, 46.5198609 ], + [ 7.0508862, 46.519759 ], + [ 7.0509058, 46.5196407 ], + [ 7.0509498, 46.5195286 ], + [ 7.0509705, 46.5193708 ], + [ 7.0509176, 46.5192459 ], + [ 7.0508826, 46.5190253 ], + [ 7.0508797, 46.5188617 ], + [ 7.0508119, 46.5186631 ], + [ 7.0507336, 46.5185548 ], + [ 7.0507055, 46.5183964 ], + [ 7.0507016, 46.5182553 ], + [ 7.0506489, 46.5181022 ], + [ 7.050517, 46.5178746 ], + [ 7.0503443, 46.5176519 ], + [ 7.0501219, 46.51744 ], + [ 7.0498993, 46.5172506 ], + [ 7.0496921, 46.5170727 ], + [ 7.049438, 46.5168434 ], + [ 7.0491687, 46.5165855 ], + [ 7.0488811, 46.5163614 ], + [ 7.0487073, 46.5161839 ], + [ 7.0484988, 46.5160681 ], + [ 7.0482833, 46.5159184 ], + [ 7.0479458, 46.515733 ], + [ 7.0476733, 46.5155767 ], + [ 7.0474252, 46.5154152 ], + [ 7.0472098, 46.5152485 ], + [ 7.0470361, 46.5150484 ], + [ 7.046903, 46.5148717 ], + [ 7.0467792, 46.5146498 ], + [ 7.0462951, 46.5133506 ], + [ 7.0461137, 46.5128683 ], + [ 7.0460143, 46.5126467 ], + [ 7.0458326, 46.5124298 ], + [ 7.0456925, 46.5122189 ], + [ 7.045525, 46.5120699 ], + [ 7.0452951, 46.5118691 ], + [ 7.0451123, 46.5116971 ], + [ 7.0449051, 46.5115193 ], + [ 7.0446509, 46.5113125 ], + [ 7.0444436, 46.5111572 ], + [ 7.0441875, 46.5109843 ], + [ 7.0439325, 46.5107775 ], + [ 7.0437485, 46.5106506 ], + [ 7.0435413, 46.510484 ], + [ 7.0433034, 46.5102662 ], + [ 7.0431216, 46.5100717 ], + [ 7.0429978, 46.5098498 ], + [ 7.0428649, 46.5096561 ], + [ 7.0427043, 46.5095578 ], + [ 7.0425202, 46.5094594 ], + [ 7.0423445, 46.5093213 ], + [ 7.0421047, 46.5091543 ], + [ 7.0418772, 46.5088575 ], + [ 7.0414316, 46.5082135 ], + [ 7.0412803, 46.5080815 ], + [ 7.0411604, 46.5079896 ], + [ 7.0410638, 46.5079543 ], + [ 7.0409298, 46.5077944 ], + [ 7.040814, 46.5075953 ], + [ 7.040751, 46.5075154 ], + [ 7.0406046, 46.5074907 ], + [ 7.0404581, 46.5074772 ], + [ 7.0402475, 46.5074404 ], + [ 7.0399962, 46.5073917 ], + [ 7.0397053, 46.5073084 ], + [ 7.039446, 46.5072484 ], + [ 7.0391318, 46.5071196 ], + [ 7.0388665, 46.5069805 ], + [ 7.038589, 46.5067395 ], + [ 7.0383259, 46.5065269 ], + [ 7.0380791, 46.5063202 ], + [ 7.0378811, 46.5061198 ], + [ 7.0376747, 46.5059419 ], + [ 7.0374431, 46.505775 ], + [ 7.0371533, 46.5056522 ], + [ 7.0369054, 46.5054795 ], + [ 7.0365677, 46.5053391 ], + [ 7.0362374, 46.5051877 ], + [ 7.0358906, 46.5050698 ], + [ 7.0356648, 46.5049932 ], + [ 7.035487, 46.504923 ], + [ 7.035426, 46.504798 ], + [ 7.0352276, 46.5048742 ], + [ 7.0350635, 46.5049281 ], + [ 7.0348752, 46.5049481 ], + [ 7.0346463, 46.5049616 ], + [ 7.0344103, 46.5049414 ], + [ 7.0342088, 46.5048877 ], + [ 7.0340391, 46.5048175 ], + [ 7.0338214, 46.5047467 ], + [ 7.0336445, 46.5046651 ], + [ 7.0334014, 46.5046221 ], + [ 7.0331247, 46.5046013 ], + [ 7.0328714, 46.5046089 ], + [ 7.0326514, 46.5046226 ], + [ 7.0322922, 46.5046344 ], + [ 7.031932, 46.5046801 ], + [ 7.0316216, 46.5046982 ], + [ 7.0314344, 46.5046898 ], + [ 7.0312066, 46.5046639 ], + [ 7.0309796, 46.5046381 ], + [ 7.0307203, 46.5045722 ], + [ 7.0305353, 46.504485 ], + [ 7.0303747, 46.5044037 ], + [ 7.0301571, 46.5043159 ], + [ 7.0299477, 46.5042282 ], + [ 7.0297311, 46.5041179 ], + [ 7.0295797, 46.5040028 ], + [ 7.0294121, 46.5038875 ], + [ 7.0292932, 46.5037785 ], + [ 7.0291163, 46.5036913 ], + [ 7.0288745, 46.5035806 ], + [ 7.0286741, 46.5034874 ], + [ 7.0284658, 46.5033547 ], + [ 7.0282728, 46.5032502 ], + [ 7.0281153, 46.5030844 ], + [ 7.0279033, 46.5027991 ], + [ 7.0276374, 46.5024341 ], + [ 7.0273553, 46.5020519 ], + [ 7.0271668, 46.5017896 ], + [ 7.026916, 46.501469900000004 ], + [ 7.0267029, 46.5012297 ], + [ 7.0264897, 46.501001 ], + [ 7.0262778, 46.5007044 ], + [ 7.0260412, 46.5004471 ], + [ 7.025756, 46.5001552 ], + [ 7.0255753, 46.4999324 ], + [ 7.0253936, 46.4997379 ], + [ 7.0252038, 46.4995377 ], + [ 7.0250545, 46.4993606 ], + [ 7.0247854, 46.499097 ], + [ 7.0245327, 46.4988168 ], + [ 7.0241814, 46.4985521 ], + [ 7.0238867, 46.4983391 ], + [ 7.0237201, 46.4981842 ], + [ 7.0234326, 46.4979882 ], + [ 7.0231768, 46.4977984 ], + [ 7.0229705, 46.497626 ], + [ 7.0227634, 46.4974538 ], + [ 7.0225319, 46.4972868 ], + [ 7.0222513, 46.4971473 ], + [ 7.0220104, 46.4970252 ], + [ 7.0216731, 46.496851 ], + [ 7.0212808, 46.4966196 ], + [ 7.020911, 46.4964337 ], + [ 7.0205807, 46.4962991 ], + [ 7.0200154, 46.4961273 ], + [ 7.0195701, 46.4960193 ], + [ 7.0191175, 46.4959111 ], + [ 7.0187861, 46.4958159 ], + [ 7.01847, 46.495738 ], + [ 7.0181792, 46.4956492 ], + [ 7.0178313, 46.495582 ], + [ 7.0173675, 46.4955528 ], + [ 7.0170351, 46.4954859 ], + [ 7.0165419, 46.4953546 ], + [ 7.0163538, 46.4953688 ], + [ 7.0163372, 46.4954023 ], + [ 7.016392, 46.4954708 ], + [ 7.01686, 46.4959066 ], + [ 7.0170044, 46.4959708 ], + [ 7.0171172, 46.4960175 ], + [ 7.0171313, 46.4960854 ], + [ 7.0170649, 46.496141 ], + [ 7.0169816, 46.496185 ], + [ 7.0168676, 46.4961889 ], + [ 7.0166804, 46.4961805 ], + [ 7.0164617, 46.4961379 ], + [ 7.0161851, 46.4961113 ], + [ 7.0159664, 46.4960798 ], + [ 7.0156502, 46.4960132 ], + [ 7.0154488, 46.4959482 ], + [ 7.015264, 46.4958439 ], + [ 7.0150859, 46.4958188 ], + [ 7.0148664, 46.4957873 ], + [ 7.0146397, 46.4957277 ], + [ 7.0144383, 46.4956626 ], + [ 7.0141882, 46.4955856 ], + [ 7.0139706, 46.4955034 ], + [ 7.0137276, 46.4954491 ], + [ 7.0133696, 46.4954213 ], + [ 7.0130288, 46.4953825 ], + [ 7.0126697, 46.4953943 ], + [ 7.0124642, 46.4954421 ], + [ 7.0126817, 46.4955299 ], + [ 7.0128747, 46.4956174 ], + [ 7.0129784, 46.4956923 ], + [ 7.012976, 46.4957825 ], + [ 7.0129565, 46.4958894 ], + [ 7.0128952, 46.496024 ], + [ 7.0128674, 46.4961308 ], + [ 7.0127967, 46.4963217 ], + [ 7.0126785, 46.4964441 ], + [ 7.0125715, 46.496499 ], + [ 7.0123334, 46.4965407 ], + [ 7.0121205, 46.4965997 ], + [ 7.0118824, 46.4966414 ], + [ 7.0116767, 46.4967062 ], + [ 7.0114804, 46.4967202 ], + [ 7.0111863, 46.4967441 ], + [ 7.0106724, 46.4967762 ], + [ 7.009379, 46.4969436 ], + [ 7.0087326, 46.4970526 ], + [ 7.0085677, 46.4971011 ], + [ 7.0084748, 46.4972126 ], + [ 7.0083229, 46.497374 ], + [ 7.0081962, 46.4975471 ], + [ 7.0080848, 46.4977261 ], + [ 7.0079504, 46.4978427 ], + [ 7.0077284, 46.4979127 ], + [ 7.0075076, 46.4979321 ], + [ 7.0072237, 46.4979055 ], + [ 7.0069879, 46.4978682 ], + [ 7.0068434, 46.4978096 ], + [ 7.006747, 46.4977573 ], + [ 7.0066759, 46.497683 ], + [ 7.0065399, 46.4975907 ], + [ 7.0063721, 46.4974924 ], + [ 7.0061058, 46.4974038 ], + [ 7.0058281, 46.497411 ], + [ 7.0059155, 46.4974857 ], + [ 7.0058969, 46.4975643 ], + [ 7.0058762, 46.4977053 ], + [ 7.0058321, 46.4978286 ], + [ 7.0056764, 46.497849 ], + [ 7.005552, 46.4979319 ], + [ 7.0054175, 46.4980541 ], + [ 7.0052128, 46.4980961 ], + [ 7.0050002, 46.4981157 ], + [ 7.0048059, 46.498079 ], + [ 7.0045316, 46.4979734 ], + [ 7.0043108, 46.4979928 ], + [ 7.0041268, 46.4978885 ], + [ 7.0039653, 46.497824 ], + [ 7.0038118, 46.4977823 ], + [ 7.003657, 46.4977912 ], + [ 7.0035897, 46.497858 ], + [ 7.0035783, 46.4979595 ], + [ 7.003582, 46.4981118 ], + [ 7.0035705, 46.4982245 ], + [ 7.0036068, 46.4983662 ], + [ 7.0035696, 46.498535 ], + [ 7.003478, 46.4985901 ], + [ 7.0033813, 46.4985661 ], + [ 7.0033001, 46.4985423 ], + [ 7.0031791, 46.4985011 ], + [ 7.0029303, 46.4983619 ], + [ 7.0027137, 46.4982629 ], + [ 7.0025603, 46.4982098 ], + [ 7.0022764, 46.4981718 ], + [ 7.0014443, 46.4981822 ], + [ 7.0011267, 46.4981889 ], + [ 7.0008806, 46.4982191 ], + [ 7.0006759, 46.4982612 ], + [ 7.0004552, 46.498275 ], + [ 7.0001945, 46.498288 ], + [ 6.9999656, 46.4983072 ], + [ 6.9998192, 46.4982826 ], + [ 6.9996563, 46.4983028 ], + [ 6.9994508, 46.4983336 ], + [ 6.9992902, 46.4982636 ], + [ 6.9990749, 46.4981136 ], + [ 6.9989308999999995, 46.4982921 ], + [ 6.9987308, 46.4981764 ], + [ 6.9986018, 46.498118 ], + [ 6.998495, 46.4981391 ], + [ 6.9984124, 46.4981773 ], + [ 6.9983555, 46.4981765 ], + [ 6.9982823, 46.4981697 ], + [ 6.9982263, 46.4981407 ], + [ 6.9980728, 46.4980933 ], + [ 6.9975134, 46.4980005 ], + [ 6.9973905, 46.4980043 ], + [ 6.9972672, 46.4980477 ], + [ 6.9971754, 46.4981196 ], + [ 6.9970674, 46.4981802 ], + [ 6.9969198, 46.4982176 ], + [ 6.9967641, 46.4982378 ], + [ 6.9966082, 46.498292 ], + [ 6.9964586, 46.4983687 ], + [ 6.9963993, 46.4984469 ], + [ 6.9963888, 46.4985371 ], + [ 6.9963936, 46.49865 ], + [ 6.9963405, 46.4987677 ], + [ 6.9962659, 46.4988343 ], + [ 6.9961581, 46.4988779 ], + [ 6.9960766, 46.498888 ], + [ 6.9958639, 46.4989074 ], + [ 6.9956767, 46.4989047 ], + [ 6.9954895, 46.4988906 ], + [ 6.9953594, 46.4988775 ], + [ 6.9952118, 46.4989092 ], + [ 6.995063, 46.4989747 ], + [ 6.9949084, 46.4989724 ], + [ 6.9947059, 46.4989413 ], + [ 6.9944852, 46.4989492 ], + [ 6.9941482, 46.4990403 ], + [ 6.993372, 46.4993676 ], + [ 6.9935267, 46.4993697 ], + [ 6.9936812, 46.499389 ], + [ 6.9938021, 46.4994473 ], + [ 6.9938731999999995, 46.4995104 ], + [ 6.9938955, 46.4995727 ], + [ 6.9937967, 46.4996051 ], + [ 6.9936338, 46.499614 ], + [ 6.9936224, 46.4997154 ], + [ 6.9934607, 46.4996736 ], + [ 6.9934004, 46.4997856 ], + [ 6.9933887, 46.4999095 ], + [ 6.9933833, 46.5000731 ], + [ 6.9932426, 46.5001557 ], + [ 6.9930789, 46.5001646 ], + [ 6.9928999, 46.5001507 ], + [ 6.992681, 46.5001361 ], + [ 6.9924615, 46.5000991 ], + [ 6.9921857, 46.5000725 ], + [ 6.9921012, 46.5001503 ], + [ 6.9920743, 46.5002457 ], + [ 6.9920872, 46.5003644 ], + [ 6.9921062, 46.5005228 ], + [ 6.9921505, 46.5006871 ], + [ 6.9921959, 46.5008062 ], + [ 6.9922892, 46.5009431 ], + [ 6.9922137, 46.5010209 ], + [ 6.9922498, 46.5011795 ], + [ 6.9922453, 46.5013318 ], + [ 6.992249, 46.5014786 ], + [ 6.9922873, 46.5015639 ], + [ 6.992398, 46.5016727 ], + [ 6.9925249, 46.5017875 ], + [ 6.9926923, 46.5019141 ], + [ 6.9928194, 46.5020119 ], + [ 6.9929973, 46.502054 ], + [ 6.9932322, 46.5021026 ], + [ 6.9932381, 46.5021761 ], + [ 6.9930426, 46.5021901 ], + [ 6.9927903, 46.5021807 ], + [ 6.9925554, 46.5021321 ], + [ 6.9922393, 46.5020598 ], + [ 6.9918577, 46.5020203 ], + [ 6.9920568, 46.5021699 ], + [ 6.9922, 46.5022849 ], + [ 6.9924467, 46.5024748 ], + [ 6.9928073, 46.5026889 ], + [ 6.9931841, 46.5029089 ], + [ 6.9934493, 46.5030257 ], + [ 6.9938427, 46.5032178 ], + [ 6.9942044, 46.5033868 ], + [ 6.9945276, 46.5034986 ], + [ 6.9948255, 46.5036103 ], + [ 6.9950675, 46.5036816 ], + [ 6.9953581, 46.5037931 ], + [ 6.9955187, 46.5038632 ], + [ 6.9956549, 46.5039329 ], + [ 6.9958398, 46.5040316 ], + [ 6.9959980999999996, 46.5041862 ], + [ 6.9962194, 46.504404 ], + [ 6.9964753, 46.504577 ], + [ 6.9967718, 46.5047619 ], + [ 6.9970593999999995, 46.5049411 ], + [ 6.9973571, 46.5050754 ], + [ 6.9976386, 46.5052035 ], + [ 6.9980329999999995, 46.505373 ], + [ 6.998596, 46.5056296 ], + [ 6.9994254, 46.505969 ], + [ 6.9999581, 46.5061406 ], + [ 7.0005337, 46.5062505 ], + [ 7.000729, 46.5062647 ], + [ 7.0009572, 46.5062455 ], + [ 7.001063, 46.5062527 ], + [ 7.0012317, 46.5063342 ], + [ 7.0015526, 46.5065194 ], + [ 7.0018156, 46.5067208 ], + [ 7.0020228, 46.5068819 ], + [ 7.0022777, 46.5070831 ], + [ 7.0025001, 46.507267 ], + [ 7.0027145, 46.5074451 ], + [ 7.0028493, 46.5075825 ], + [ 7.0029354, 46.5077135 ], + [ 7.0029799, 46.5078496 ], + [ 7.0029592, 46.5079904 ], + [ 7.0028886, 46.50817 ], + [ 7.0028015, 46.5083606 ], + [ 7.0026913, 46.5085 ], + [ 7.002582, 46.5086226 ], + [ 7.0024139, 46.5087669 ], + [ 7.0022872, 46.5089231 ], + [ 7.0021758, 46.5091077 ], + [ 7.0021134, 46.5092761 ], + [ 7.0021148, 46.5095074 ], + [ 7.0021535, 46.5098466 ], + [ 7.002218, 46.5101298 ], + [ 7.0020957, 46.510145 ], + [ 7.0019482, 46.510171 ], + [ 7.0018239, 46.5102312 ], + [ 7.0017576, 46.5102697 ], + [ 7.0016404, 46.5103697 ], + [ 7.0015812, 46.5104365 ], + [ 7.0015066, 46.5104975 ], + [ 7.0014057, 46.5105807 ], + [ 7.0013699, 46.5106874 ], + [ 7.0013919, 46.510778 ], + [ 7.0014608, 46.5109257 ], + [ 7.0016054, 46.5112608 ], + [ 7.0017277, 46.5115448 ], + [ 7.0018292, 46.511693 ], + [ 7.0019806, 46.5118024 ], + [ 7.0020933, 46.5118606 ], + [ 7.002318, 46.5119711 ], + [ 7.0024775, 46.512075 ], + [ 7.0027661, 46.5122485 ], + [ 7.0029732, 46.5124153 ], + [ 7.0031479, 46.5125589 ], + [ 7.0033389, 46.5127141 ], + [ 7.0034423, 46.5128171 ], + [ 7.0036006, 46.5129832 ], + [ 7.0036695, 46.5131196 ], + [ 7.0037932, 46.5133302 ], + [ 7.0038466, 46.5134777 ], + [ 7.0038829, 46.5136137 ], + [ 7.0038876, 46.5137379 ], + [ 7.0039391, 46.5139249 ], + [ 7.0039661, 46.5141059 ], + [ 7.0039779, 46.5142585 ], + [ 7.0040131, 46.5144451 ], + [ 7.0040657, 46.5145814 ], + [ 7.0041019, 46.5147343 ], + [ 7.0041627, 46.5148762 ], + [ 7.0042407, 46.5150016 ], + [ 7.0043512, 46.5151329 ], + [ 7.0045016, 46.5152707 ], + [ 7.0046681, 46.5154198 ], + [ 7.005798, 46.5160966 ], + [ 7.005932, 46.5162453 ], + [ 7.0059614, 46.5163361 ], + [ 7.0060089, 46.5163988 ], + [ 7.006023, 46.516478 ], + [ 7.0060035, 46.516568 ], + [ 7.0059583, 46.5167198 ], + [ 7.0058979, 46.516843 ], + [ 7.0058679, 46.5170288 ], + [ 7.0058982, 46.5171026 ], + [ 7.0059532, 46.5171542 ], + [ 7.00596, 46.5172164 ], + [ 7.0059416, 46.5172838 ], + [ 7.0059303, 46.517374 ], + [ 7.0059502, 46.5175267 ], + [ 7.0059977, 46.5175951 ], + [ 7.0061097, 46.5176475 ], + [ 7.0062214, 46.5177282 ], + [ 7.0062925, 46.5178025 ], + [ 7.0063299, 46.517916 ], + [ 7.006359, 46.5180405 ], + [ 7.006323, 46.5181585 ], + [ 7.0063371, 46.5182377 ], + [ 7.0064409, 46.51829 ], + [ 7.0065363, 46.5183761 ], + [ 7.0065921, 46.518422 ], + [ 7.0066061, 46.5185126 ], + [ 7.0066425, 46.5186372 ], + [ 7.006696, 46.5187791 ], + [ 7.006765, 46.51891 ], + [ 7.0068653, 46.519092 ], + [ 7.0069269, 46.519234 ], + [ 7.0068912, 46.5193181 ], + [ 7.0068623, 46.5194757 ], + [ 7.0068669, 46.5196056 ], + [ 7.0069115, 46.5197304 ], + [ 7.0070199, 46.5199294 ], + [ 7.0071212, 46.5200889 ], + [ 7.0072449, 46.5203165 ], + [ 7.0073382, 46.520459 ], + [ 7.0075791, 46.5205867 ], + [ 7.0077082, 46.5206393 ], + [ 7.0077468, 46.5206963 ], + [ 7.0077853, 46.520776 ], + [ 7.0078491, 46.5208333 ], + [ 7.0078877, 46.5209016 ], + [ 7.007868, 46.5210197 ], + [ 7.007888, 46.5211668 ], + [ 7.0079069, 46.5213477 ], + [ 7.0079351, 46.5214892 ], + [ 7.0079969, 46.521603 ], + [ 7.008084, 46.5217114 ], + [ 7.0081449, 46.5218365 ], + [ 7.0081406, 46.5219776 ], + [ 7.0081848, 46.5221475 ], + [ 7.008213, 46.522289 ], + [ 7.0082911, 46.522403 ], + [ 7.0083935, 46.5225287 ], + [ 7.0086079, 46.5227124 ], + [ 7.0088395, 46.5228908 ], + [ 7.0090386, 46.5230404 ], + [ 7.009176, 46.5230818 ], + [ 7.0093224, 46.5231009 ], + [ 7.0094099, 46.5231642 ], + [ 7.0095531, 46.5232791 ], + [ 7.0097208, 46.5233945 ], + [ 7.0098242, 46.5235089 ], + [ 7.0098545, 46.5235826 ], + [ 7.0098687, 46.5236506 ], + [ 7.0099143, 46.5237529 ], + [ 7.009918, 46.5238997 ], + [ 7.0099483, 46.5239847 ], + [ 7.0100672, 46.524088 ], + [ 7.0102267, 46.524203299999996 ], + [ 7.0104491, 46.524404 ], + [ 7.0105924, 46.524519 ], + [ 7.01076, 46.5246512 ], + [ 7.0109276, 46.5247778 ], + [ 7.0110952, 46.5248987 ], + [ 7.0112802, 46.5249918 ], + [ 7.0114236, 46.5250955 ], + [ 7.0114773, 46.5251979 ], + [ 7.0115319, 46.5253001 ], + [ 7.0116845, 46.5253701 ], + [ 7.0118544, 46.5254121 ], + [ 7.0120244, 46.5254484 ], + [ 7.0122361, 46.5254571 ], + [ 7.0124568, 46.5254603 ], + [ 7.0127022, 46.5254356 ], + [ 7.0128918, 46.5253538 ], + [ 7.0130882, 46.5253341 ], + [ 7.013299, 46.5253597 ], + [ 7.0134851, 46.5254131 ], + [ 7.013663, 46.5254723 ], + [ 7.0137666, 46.525564 ], + [ 7.0138774, 46.5256672 ], + [ 7.0139638, 46.5257644 ], + [ 7.0140988, 46.5258905 ], + [ 7.0142289, 46.5259207 ], + [ 7.0144245, 46.5259121 ], + [ 7.0146546, 46.5258534 ], + [ 7.0148919, 46.5258174 ], + [ 7.015022, 46.5258474 ], + [ 7.0151371, 46.5258209 ], + [ 7.0152359, 46.5257885 ], + [ 7.0153673, 46.5257509 ], + [ 7.0155304, 46.5257363 ], + [ 7.015693, 46.5257725 ], + [ 7.0158222, 46.5258196 ], + [ 7.0159586, 46.5258723 ], + [ 7.0160622, 46.5259529 ], + [ 7.0161251, 46.5260327 ], + [ 7.0161939, 46.5261918 ], + [ 7.0162812, 46.5262834 ], + [ 7.0164185, 46.5263249 ], + [ 7.0165571, 46.5263156 ], + [ 7.0166536, 46.5263735 ], + [ 7.0167165, 46.526459 ], + [ 7.0168364, 46.5265397 ], + [ 7.0169809, 46.5265983 ], + [ 7.0171123, 46.5265719 ], + [ 7.017261, 46.5265177 ], + [ 7.0173995, 46.5265027 ], + [ 7.0175053, 46.5265156 ], + [ 7.017602, 46.5265508 ], + [ 7.0177229, 46.5266091 ], + [ 7.0178756, 46.5266733 ], + [ 7.0179893, 46.5267089 ], + [ 7.0181105, 46.5267332 ], + [ 7.0183384, 46.5267647 ], + [ 7.0186875, 46.5268037 ], + [ 7.0191576, 46.5269007 ], + [ 7.0192868, 46.5269421 ], + [ 7.0193764, 46.526949 ], + [ 7.0194588, 46.5269221 ], + [ 7.0195496, 46.5268838 ], + [ 7.019624, 46.5268454 ], + [ 7.019731, 46.526813 ], + [ 7.0199031, 46.5267761 ], + [ 7.0200588, 46.526767 ], + [ 7.0202542, 46.5267811 ], + [ 7.0204893, 46.5268127 ], + [ 7.0206673, 46.5268717 ], + [ 7.0208361, 46.5269532 ], + [ 7.0209246, 46.526994 ], + [ 7.0210609, 46.527058 ], + [ 7.0212062, 46.5271335 ], + [ 7.0213182, 46.5271803 ], + [ 7.0214471, 46.5272555 ], + [ 7.0216078, 46.5273369 ], + [ 7.0217278, 46.5274176 ], + [ 7.0218815, 46.527448 ], + [ 7.0220352, 46.5274841 ], + [ 7.0222132, 46.5275262 ], + [ 7.0224249, 46.5275405 ], + [ 7.0225958, 46.5275712 ], + [ 7.0227728, 46.5276472 ], + [ 7.0228764, 46.5277333 ], + [ 7.0229800000000004, 46.5278138 ], + [ 7.0231132, 46.5279795 ], + [ 7.02324, 46.5281223 ], + [ 7.023367, 46.5282371 ], + [ 7.0234776, 46.5283629 ], + [ 7.0235313, 46.5284709 ], + [ 7.0235269, 46.5286231 ], + [ 7.0235135, 46.5287753 ], + [ 7.0234938, 46.5288992 ], + [ 7.0234406, 46.5290395 ], + [ 7.0234689, 46.529181 ], + [ 7.023555, 46.5293121 ], + [ 7.0236425, 46.529381 ], + [ 7.0237635, 46.5294279 ], + [ 7.0239181, 46.5294527 ], + [ 7.0240472, 46.5294997 ], + [ 7.0241918, 46.5295639 ], + [ 7.0243199, 46.5296391 ], + [ 7.0245212, 46.529738 ], + [ 7.0246747, 46.5297966 ], + [ 7.0248203, 46.5298213 ], + [ 7.025032, 46.5298357 ], + [ 7.025309, 46.5298396 ], + [ 7.0255857, 46.5298775 ], + [ 7.0258942, 46.5299101 ], + [ 7.0263329, 46.5299672 ], + [ 7.0267888, 46.5300133 ], + [ 7.027146, 46.5300692 ], + [ 7.0272823, 46.5301389 ], + [ 7.0274594, 46.5302036 ], + [ 7.0276446, 46.5302852 ], + [ 7.0278296, 46.5303839 ], + [ 7.0279681, 46.5303802 ], + [ 7.0280262, 46.5303416 ], + [ 7.0281107, 46.5302637 ], + [ 7.0282271, 46.530175 ], + [ 7.0283096, 46.5301481 ], + [ 7.0286201, 46.5301299 ], + [ 7.0285676, 46.5299599 ], + [ 7.0285394, 46.5298184 ], + [ 7.028552, 46.5296605 ], + [ 7.0285796, 46.5295594 ], + [ 7.0287364, 46.5295165 ], + [ 7.0295833, 46.5295568 ], + [ 7.0297464, 46.5295422 ], + [ 7.0297964, 46.5295035 ], + [ 7.0297983, 46.5294583 ], + [ 7.0297671, 46.5293902 ], + [ 7.0297121, 46.5293329 ], + [ 7.0296899, 46.5292594 ], + [ 7.0296757, 46.5291914 ], + [ 7.0297024, 46.5291128 ], + [ 7.029778, 46.5290179 ], + [ 7.0299056, 46.5288504 ], + [ 7.0300821, 46.5286724 ], + [ 7.0302818, 46.5285455 ], + [ 7.0305119, 46.5284923 ], + [ 7.0308144, 46.5284684 ], + [ 7.0309528, 46.5284817 ], + [ 7.0310727, 46.5285567 ], + [ 7.0311836, 46.5286543 ], + [ 7.0313443, 46.5287357 ], + [ 7.0314734, 46.5287883 ], + [ 7.0316515, 46.528836 ], + [ 7.0318133, 46.5288778 ], + [ 7.0319832, 46.5289311 ], + [ 7.0321227, 46.5289049 ], + [ 7.0322867, 46.5288676 ], + [ 7.0324518, 46.5287911 ], + [ 7.0326424, 46.5286865 ], + [ 7.0328573, 46.528605 ], + [ 7.0330886, 46.5285067 ], + [ 7.0332606, 46.5284865 ], + [ 7.0334155, 46.5284663 ], + [ 7.0336608, 46.5284641 ], + [ 7.0338317, 46.5284779 ], + [ 7.0340762, 46.5284757 ], + [ 7.0343052, 46.5284564 ], + [ 7.0345182, 46.5284143 ], + [ 7.0346833, 46.5283433 ], + [ 7.0348248, 46.528255 ], + [ 7.0349513, 46.5281157 ], + [ 7.0350117, 46.5279925 ], + [ 7.0350476, 46.5278744 ], + [ 7.0350764, 46.5277338 ], + [ 7.0350307, 46.5276315 ], + [ 7.0350096, 46.5275128 ], + [ 7.0350129, 46.5274055 ], + [ 7.0350721, 46.5273331 ], + [ 7.0352044, 46.5272841 ], + [ 7.0354102, 46.5272137 ], + [ 7.0356892, 46.5271612 ], + [ 7.0359684, 46.5270862 ], + [ 7.0361742, 46.5270102 ], + [ 7.0362925, 46.5268821 ], + [ 7.0363448, 46.526753 ], + [ 7.0364631, 46.5266137 ], + [ 7.0365976, 46.5264971 ], + [ 7.0367046, 46.5264591 ], + [ 7.0369103, 46.5264056 ], + [ 7.0370895, 46.5264082 ], + [ 7.0372524, 46.5264104 ], + [ 7.0374151, 46.5264297 ], + [ 7.0375395, 46.5263638 ], + [ 7.0376486, 46.5262524 ], + [ 7.0377333, 46.5261464 ], + [ 7.0377621, 46.5259945 ], + [ 7.0378084, 46.5257976 ], + [ 7.0378627, 46.5256122 ], + [ 7.0379241, 46.5254606 ], + [ 7.0380553, 46.5254625 ], + [ 7.0382101, 46.5254591 ], + [ 7.0383903, 46.5254335 ], + [ 7.038538, 46.525396 ], + [ 7.0386136, 46.5253069 ], + [ 7.0386178, 46.5251884 ], + [ 7.0386303, 46.5250419 ], + [ 7.0386255, 46.5249176 ], + [ 7.0386775, 46.5248225 ], + [ 7.0387369, 46.5247218 ], + [ 7.0388053, 46.5246155 ], + [ 7.0388167, 46.5245084 ], + [ 7.0388606, 46.5244131 ], + [ 7.0389474, 46.5242338 ], + [ 7.0390332, 46.5240938 ], + [ 7.0391354, 46.5239261 ], + [ 7.039257, 46.5236794 ], + [ 7.0394438, 46.5234225 ], + [ 7.0396316, 46.5231431 ], + [ 7.0397755, 46.5229645 ], + [ 7.0399751, 46.5228432 ], + [ 7.0401157, 46.5227775 ], + [ 7.0402076, 46.5226884 ], + [ 7.0402506, 46.5226101 ], + [ 7.0402455, 46.5225197 ], + [ 7.040201, 46.5223666 ], + [ 7.0401413, 46.5221853 ], + [ 7.0401365, 46.5220554 ], + [ 7.040156, 46.5219597 ], + [ 7.0402061, 46.5218983 ], + [ 7.0402813, 46.5218599 ], + [ 7.0403966, 46.5217995 ], + [ 7.0406115, 46.5217122 ], + [ 7.0407359, 46.5216351 ], + [ 7.0409925, 46.5215258 ], + [ 7.0412656, 46.5213829 ], + [ 7.0414653, 46.5212448 ], + [ 7.0416396, 46.5211343 ], + [ 7.0418486, 46.5209681 ], + [ 7.042031, 46.5208522 ], + [ 7.0422448, 46.5208044 ], + [ 7.0425228, 46.5207745 ], + [ 7.0428414, 46.5207508 ], + [ 7.0430307, 46.5207027 ], + [ 7.0431797, 46.5206089 ], + [ 7.0433283, 46.5205603 ], + [ 7.0435514, 46.5204618 ], + [ 7.043748, 46.5204138 ], + [ 7.0439548, 46.5203152 ], + [ 7.0441442, 46.5202558 ], + [ 7.0444324, 46.5201583 ], + [ 7.0447124, 46.5200834 ], + [ 7.0449426, 46.5200075 ], + [ 7.0451331, 46.519914299999996 ], + [ 7.0454061, 46.5197771 ], + [ 7.0456048, 46.5196784 ], + [ 7.0458096, 46.5196305 ], + [ 7.0460478, 46.5195718 ], + [ 7.0462128, 46.5195065 ], + [ 7.0463126, 46.5194514 ], + [ 7.0464614, 46.5193745 ], + [ 7.0465765, 46.5193423 ], + [ 7.0467251, 46.5192936 ], + [ 7.0468485, 46.5192333 ], + [ 7.0471285, 46.5191526 ], + [ 7.0473016, 46.519093 ], + [ 7.0475124, 46.5191129 ], + [ 7.0476345, 46.5191259 ], + [ 7.0478776, 46.5191802 ], + [ 7.0480882, 46.5192397 ], + [ 7.0483058, 46.5193216 ], + [ 7.0485702, 46.5194779 ], + [ 7.0487146, 46.5195645 ], + [ 7.0490231, 46.5195972 ], + [ 7.04938, 46.5196812 ], + [ 7.0498175, 46.5197777 ], + [ 7.0502378, 46.5198853 ], + [ 7.050844, 46.52008 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "JBG0013", + "country" : "CHE", + "name" : [ + { + "text" : "Eidgenössisches Jagdbanngebiet Dent de Lys", + "lang" : "de-CH" + }, + { + "text" : "District franc fédéral Dent de Lys", + "lang" : "fr-CH" + }, + { + "text" : "Bandita federale di caccia Dent de Lys", + "lang" : "it-CH" + }, + { + "text" : "Federal Game Reserve Dent de Lys", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.0260093, 47.313779 ], + [ 8.0260092, 47.313779 ], + [ 8.0259954, 47.3138446 ], + [ 8.0259897, 47.3138715 ], + [ 8.0258149, 47.3139306 ], + [ 8.0256483, 47.3144408 ], + [ 8.0257432, 47.3145327 ], + [ 8.0259069, 47.3145458 ], + [ 8.0262414, 47.3145654 ], + [ 8.0263613, 47.3143534 ], + [ 8.0263641, 47.3143541 ], + [ 8.0265184, 47.3140754 ], + [ 8.0265698, 47.3139402 ], + [ 8.0265638, 47.3138719 ], + [ 8.0265528, 47.3138297 ], + [ 8.0265446, 47.3138108 ], + [ 8.0265298, 47.3137893 ], + [ 8.0264802, 47.3137302 ], + [ 8.0264175, 47.3136774 ], + [ 8.0264001, 47.3136636 ], + [ 8.0263215, 47.3135988 ], + [ 8.0263015, 47.3136296 ], + [ 8.0262887, 47.3136727 ], + [ 8.0260908, 47.3136755 ], + [ 8.0260376, 47.3136452 ], + [ 8.0260093, 47.313779 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSXH002", + "country" : "CHE", + "name" : [ + { + "text" : "LSXH Holziken (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSXH Holziken (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSXH Holziken (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSXH Holziken (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Rose Helicopter AG", + "lang" : "de-CH" + }, + { + "text" : "Rose Helicopter AG", + "lang" : "fr-CH" + }, + { + "text" : "Rose Helicopter AG", + "lang" : "it-CH" + }, + { + "text" : "Rose Helicopter AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Lukas Fischer", + "lang" : "de-CH" + }, + { + "text" : "Lukas Fischer", + "lang" : "fr-CH" + }, + { + "text" : "Lukas Fischer", + "lang" : "it-CH" + }, + { + "text" : "Lukas Fischer", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.roseheli.ch", + "email" : "info@roseheli.ch", + "phone" : "0041627214444", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.5332289, 46.4103404 ], + [ 8.5332207, 46.4101993 ], + [ 8.5332019, 46.4100586 ], + [ 8.5331724, 46.4099188 ], + [ 8.5331324, 46.4097802 ], + [ 8.533081899999999, 46.4096433 ], + [ 8.5330212, 46.4095084 ], + [ 8.5329503, 46.4093759 ], + [ 8.5328695, 46.4092462 ], + [ 8.532779, 46.4091195 ], + [ 8.5326791, 46.4089963 ], + [ 8.5325699, 46.4088768 ], + [ 8.5324519, 46.4087615 ], + [ 8.5323253, 46.4086507 ], + [ 8.5321905, 46.4085445 ], + [ 8.5320479, 46.4084434 ], + [ 8.5318978, 46.4083476 ], + [ 8.5317406, 46.4082573 ], + [ 8.5315769, 46.4081729 ], + [ 8.5314069, 46.4080945 ], + [ 8.5312313, 46.4080223 ], + [ 8.5310505, 46.4079567 ], + [ 8.5308649, 46.4078976 ], + [ 8.5306751, 46.4078454 ], + [ 8.5304817, 46.4078001 ], + [ 8.530285, 46.4077618 ], + [ 8.5300858, 46.4077308 ], + [ 8.5298844, 46.4077069 ], + [ 8.5296816, 46.4076905 ], + [ 8.5294778, 46.4076813 ], + [ 8.5292735, 46.4076796 ], + [ 8.529069400000001, 46.4076853 ], + [ 8.5288661, 46.4076983 ], + [ 8.528664, 46.4077187 ], + [ 8.5284637, 46.4077464 ], + [ 8.5282657, 46.4077812 ], + [ 8.5280707, 46.4078233 ], + [ 8.5278791, 46.4078723 ], + [ 8.5276915, 46.4079281 ], + [ 8.5275084, 46.4079907 ], + [ 8.5273303, 46.4080599 ], + [ 8.5271576, 46.4081353 ], + [ 8.5269909, 46.408217 ], + [ 8.5268306, 46.4083045 ], + [ 8.5266772, 46.4083978 ], + [ 8.526531, 46.4084964 ], + [ 8.5263924, 46.4086003 ], + [ 8.5262619, 46.408709 ], + [ 8.5261399, 46.4088222 ], + [ 8.5260265, 46.4089398 ], + [ 8.5259222, 46.4090612 ], + [ 8.5258272, 46.4091863 ], + [ 8.5257419, 46.4093147 ], + [ 8.5256663, 46.409446 ], + [ 8.5256008, 46.4095798 ], + [ 8.5255455, 46.4097158 ], + [ 8.5255006, 46.4098536 ], + [ 8.5254662, 46.4099929 ], + [ 8.5254423, 46.4101332 ], + [ 8.5254291, 46.4102742 ], + [ 8.5254266, 46.4104155 ], + [ 8.5254348, 46.4105566 ], + [ 8.5254536, 46.4106973 ], + [ 8.5254831, 46.4108371 ], + [ 8.525523100000001, 46.4109757 ], + [ 8.5255735, 46.4111126 ], + [ 8.5256342, 46.4112475 ], + [ 8.5257051, 46.41138 ], + [ 8.5257858, 46.4115098 ], + [ 8.5258763, 46.4116365 ], + [ 8.5259763, 46.4117597 ], + [ 8.5260854, 46.4118791 ], + [ 8.5262034, 46.4119944 ], + [ 8.52633, 46.4121053 ], + [ 8.5264648, 46.4122115 ], + [ 8.5266075, 46.4123126 ], + [ 8.5267576, 46.4124084 ], + [ 8.5269147, 46.4124987 ], + [ 8.5270785, 46.4125831 ], + [ 8.5272484, 46.4126615 ], + [ 8.5274241, 46.4127337 ], + [ 8.5276049, 46.4127994 ], + [ 8.5277905, 46.4128584 ], + [ 8.5279803, 46.4129107 ], + [ 8.5281738, 46.412956 ], + [ 8.5283704, 46.4129942 ], + [ 8.5285697, 46.4130253 ], + [ 8.528771, 46.4130491 ], + [ 8.5289739, 46.4130656 ], + [ 8.5291777, 46.4130747 ], + [ 8.529382, 46.4130765 ], + [ 8.5295861, 46.4130708 ], + [ 8.5297895, 46.4130578 ], + [ 8.5299916, 46.4130374 ], + [ 8.5301919, 46.4130097 ], + [ 8.5303899, 46.4129748 ], + [ 8.530584900000001, 46.4129328 ], + [ 8.5307765, 46.4128838 ], + [ 8.5309641, 46.4128279 ], + [ 8.5311472, 46.4127653 ], + [ 8.5313254, 46.4126962 ], + [ 8.5314981, 46.4126207 ], + [ 8.5316648, 46.412539 ], + [ 8.5318251, 46.4124515 ], + [ 8.5319785, 46.4123582 ], + [ 8.5321247, 46.4122595 ], + [ 8.5322633, 46.4121557 ], + [ 8.5323938, 46.412047 ], + [ 8.5325158, 46.4119337 ], + [ 8.5326292, 46.4118162 ], + [ 8.532733499999999, 46.4116947 ], + [ 8.5328284, 46.4115696 ], + [ 8.5329138, 46.4114413 ], + [ 8.5329893, 46.41131 ], + [ 8.5330548, 46.4111762 ], + [ 8.5331101, 46.4110401 ], + [ 8.533155, 46.4109023 ], + [ 8.5331894, 46.410763 ], + [ 8.5332132, 46.4106227 ], + [ 8.5332264, 46.4104817 ], + [ 8.5332289, 46.4103404 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0011", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Bavona", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Bavona", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Bavona", + "lang" : "it-CH" + }, + { + "text" : "Substation Bavona", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4470596, 47.4551964 ], + [ 7.4470588, 47.4551847 ], + [ 7.4470294, 47.4552004 ], + [ 7.4468192, 47.4552283 ], + [ 7.4467934, 47.4549667 ], + [ 7.4467419, 47.454958 ], + [ 7.4466545, 47.454914 ], + [ 7.4464682, 47.4548226 ], + [ 7.4464568, 47.4548133 ], + [ 7.4464226, 47.4548253 ], + [ 7.4463145, 47.4547553 ], + [ 7.4460858, 47.4548393 ], + [ 7.4460348, 47.454891 ], + [ 7.4459624, 47.4549709 ], + [ 7.4458522, 47.4550547 ], + [ 7.4457365, 47.4551288 ], + [ 7.4457757, 47.4551859 ], + [ 7.4458378, 47.4552326 ], + [ 7.4459869, 47.4553047 ], + [ 7.4460752, 47.4553305 ], + [ 7.4460977, 47.4553371 ], + [ 7.4461087, 47.4553321 ], + [ 7.4461065, 47.4553371 ], + [ 7.4455887, 47.4565019 ], + [ 7.445787, 47.4565265 ], + [ 7.4460729, 47.4565603 ], + [ 7.446282, 47.4565661 ], + [ 7.4465164999999995, 47.4565444 ], + [ 7.4467967, 47.4565072 ], + [ 7.4469003, 47.4564858 ], + [ 7.4468306, 47.4564227 ], + [ 7.4468067, 47.4564001 ], + [ 7.4467934, 47.4563776 ], + [ 7.4467787, 47.4563469 ], + [ 7.4467784, 47.4563229 ], + [ 7.4467757, 47.4563035 ], + [ 7.4467648, 47.4562774 ], + [ 7.446768, 47.4562423 ], + [ 7.4467774, 47.4562071 ], + [ 7.4467908, 47.4561742 ], + [ 7.4468088, 47.4561403 ], + [ 7.446825, 47.4561079 ], + [ 7.4468456, 47.456075 ], + [ 7.4468622, 47.4560458 ], + [ 7.4468721, 47.4560258 ], + [ 7.4468765, 47.4560065 ], + [ 7.4468753, 47.4559913 ], + [ 7.4468672, 47.4559589 ], + [ 7.4468514, 47.4559258 ], + [ 7.4468333, 47.4558945 ], + [ 7.4468203, 47.455860799999996 ], + [ 7.4468051, 47.4558357 ], + [ 7.4467871, 47.4558087 ], + [ 7.446785, 47.4558035 ], + [ 7.4467747, 47.4557784 ], + [ 7.4467604, 47.4557464 ], + [ 7.4467485, 47.4557153 ], + [ 7.4467241, 47.4556436 ], + [ 7.4467209, 47.4556064 ], + [ 7.4467232, 47.4555714 ], + [ 7.4467326, 47.4555408 ], + [ 7.4467462, 47.455505 ], + [ 7.4467492, 47.4554894 ], + [ 7.4467532, 47.4554733 ], + [ 7.4469477, 47.4554764 ], + [ 7.447118, 47.455473 ], + [ 7.4470654, 47.4552737 ], + [ 7.4470596, 47.4551964 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns105", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Blüttenenchöpfli - Chaselboden", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Blüttenenchöpfli - Chaselboden", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Blüttenenchöpfli - Chaselboden", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Blüttenenchöpfli - Chaselboden", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.54153, 47.5316217 ], + [ 7.5414957000000005, 47.5316678 ], + [ 7.5414801, 47.5317248 ], + [ 7.5415652, 47.5317486 ], + [ 7.5415714, 47.5317503 ], + [ 7.5419097, 47.5318533 ], + [ 7.542065, 47.5318922 ], + [ 7.5423157, 47.5319549 ], + [ 7.5427599, 47.5320661 ], + [ 7.5430114, 47.5321256 ], + [ 7.5433346, 47.5322022 ], + [ 7.5432349, 47.5324317 ], + [ 7.5437238, 47.5325021 ], + [ 7.5444481, 47.5325747 ], + [ 7.5449304, 47.5326133 ], + [ 7.5457014000000004, 47.5326709 ], + [ 7.5457602999999995, 47.5329237 ], + [ 7.5453251, 47.5328851 ], + [ 7.5443719, 47.5328159 ], + [ 7.5436845, 47.532741 ], + [ 7.5434503, 47.532713 ], + [ 7.5434631, 47.5326731 ], + [ 7.543476, 47.5326329 ], + [ 7.5429109, 47.532563 ], + [ 7.5429025, 47.5326023 ], + [ 7.5428939, 47.5326429 ], + [ 7.5428661, 47.5326409 ], + [ 7.5428619, 47.5327056 ], + [ 7.5428527, 47.532797 ], + [ 7.5428453, 47.5328832 ], + [ 7.5428379, 47.5329684 ], + [ 7.5419615, 47.5327998 ], + [ 7.541895, 47.5327855 ], + [ 7.5419347, 47.5328554 ], + [ 7.541981, 47.532941 ], + [ 7.5420164, 47.5329472 ], + [ 7.5420428, 47.5329528 ], + [ 7.5420744, 47.5329565 ], + [ 7.5422063, 47.5332104 ], + [ 7.5423614, 47.53346 ], + [ 7.5426352, 47.5338648 ], + [ 7.5428948, 47.53428 ], + [ 7.5430779999999995, 47.5346127 ], + [ 7.5432442, 47.534909999999996 ], + [ 7.5434058, 47.5351986 ], + [ 7.5434005, 47.5352004 ], + [ 7.5433609, 47.5352143 ], + [ 7.543686, 47.5357309 ], + [ 7.5439203, 47.5362184 ], + [ 7.5439594, 47.5362185 ], + [ 7.544715, 47.5362191 ], + [ 7.5447196, 47.5363712 ], + [ 7.5447223999999995, 47.5364458 ], + [ 7.5447258, 47.5365694 ], + [ 7.5447309, 47.5367257 ], + [ 7.5447261999999995, 47.5370948 ], + [ 7.5447248, 47.5371714 ], + [ 7.5447422, 47.5376072 ], + [ 7.5447606, 47.538067 ], + [ 7.5447613, 47.5380926 ], + [ 7.544774, 47.5385437 ], + [ 7.5447474, 47.5387144 ], + [ 7.5447192, 47.5389264 ], + [ 7.5447106, 47.5389891 ], + [ 7.5447066, 47.5392007 ], + [ 7.5445763, 47.5395254 ], + [ 7.5445335, 47.5396321 ], + [ 7.5450794, 47.5398325 ], + [ 7.5451198, 47.539848 ], + [ 7.5456398, 47.540048 ], + [ 7.5461386, 47.5402408 ], + [ 7.5465926, 47.5404144 ], + [ 7.5465571, 47.5405043 ], + [ 7.5465051, 47.5406346 ], + [ 7.5464927, 47.5406661 ], + [ 7.5464383999999995, 47.5408113 ], + [ 7.5468276, 47.5409932 ], + [ 7.5477811, 47.5410061 ], + [ 7.5480937, 47.5410432 ], + [ 7.5484726, 47.5410496 ], + [ 7.5486348, 47.541009 ], + [ 7.5486744, 47.5409987 ], + [ 7.5491671, 47.5408796 ], + [ 7.5486138, 47.5400762 ], + [ 7.5481962, 47.5394761 ], + [ 7.5479849, 47.5391511 ], + [ 7.5477798, 47.538859 ], + [ 7.5475343, 47.5386484 ], + [ 7.5473072, 47.5384536 ], + [ 7.5477662, 47.5383999 ], + [ 7.5484122, 47.5383576 ], + [ 7.5487749, 47.5385614 ], + [ 7.5490969, 47.5385394 ], + [ 7.5491706, 47.5385349 ], + [ 7.5495295, 47.5384332 ], + [ 7.5496655, 47.5383946 ], + [ 7.5495659, 47.5383335 ], + [ 7.549554, 47.5382799 ], + [ 7.5496304, 47.5382105 ], + [ 7.5497383, 47.5381125 ], + [ 7.5497461999999995, 47.5379872 ], + [ 7.5491527, 47.5381373 ], + [ 7.5491465, 47.5381409 ], + [ 7.5491621, 47.5380203 ], + [ 7.5491624, 47.5380169 ], + [ 7.5496181, 47.5379015 ], + [ 7.5497535, 47.5378714 ], + [ 7.5497537999999995, 47.5378671 ], + [ 7.5497559, 47.5378332 ], + [ 7.5497574, 47.5378106 ], + [ 7.5497602, 47.5377658 ], + [ 7.5497254, 47.5377058 ], + [ 7.5492395, 47.5378344 ], + [ 7.5491758, 47.5378512 ], + [ 7.5491874, 47.5377076 ], + [ 7.5491889, 47.5376889 ], + [ 7.5491904, 47.5376709 ], + [ 7.549198, 47.5375773 ], + [ 7.5492015, 47.5375343 ], + [ 7.5492045, 47.5374973 ], + [ 7.5492108, 47.5374189 ], + [ 7.5492168, 47.5373453 ], + [ 7.5492238, 47.5372589 ], + [ 7.5492146, 47.537174 ], + [ 7.5492083999999995, 47.5371167 ], + [ 7.5491982, 47.537023 ], + [ 7.5491618, 47.5366873 ], + [ 7.5491133, 47.5366632 ], + [ 7.5490771, 47.5366438 ], + [ 7.5490148999999995, 47.5366103 ], + [ 7.5486848, 47.5364316 ], + [ 7.5483747999999995, 47.5362286 ], + [ 7.5482359, 47.536135 ], + [ 7.5478653, 47.535880399999996 ], + [ 7.547838, 47.5358603 ], + [ 7.5476285, 47.5357087 ], + [ 7.5474186, 47.5354957 ], + [ 7.5472259, 47.5352843 ], + [ 7.5470421, 47.5350538 ], + [ 7.5471551, 47.5349993 ], + [ 7.5472521, 47.5349524 ], + [ 7.5475408, 47.5347805 ], + [ 7.5474682, 47.5346449 ], + [ 7.5473263, 47.534468 ], + [ 7.5473707999999995, 47.5344581 ], + [ 7.5473372, 47.5343903 ], + [ 7.5473829, 47.534378 ], + [ 7.5478716, 47.5342456 ], + [ 7.5479836, 47.5342153 ], + [ 7.5477772, 47.5341153 ], + [ 7.5477135, 47.53402 ], + [ 7.5476907, 47.5339794 ], + [ 7.5477459, 47.5339053 ], + [ 7.5477305, 47.5338885 ], + [ 7.5476801, 47.5338347 ], + [ 7.5476448, 47.5337396 ], + [ 7.5476515, 47.5336708 ], + [ 7.5474754, 47.5337228 ], + [ 7.5471509999999995, 47.5338104 ], + [ 7.5471072, 47.5338225 ], + [ 7.5469438, 47.5334196 ], + [ 7.5469331, 47.5333932 ], + [ 7.5470027, 47.5333835 ], + [ 7.5470229, 47.5332209 ], + [ 7.547021, 47.5332175 ], + [ 7.5469197, 47.533045 ], + [ 7.5468445, 47.5328874 ], + [ 7.5468969999999995, 47.5327929 ], + [ 7.5469439, 47.5327693 ], + [ 7.54696, 47.5327143 ], + [ 7.5471875, 47.5325944 ], + [ 7.5472274, 47.5325584 ], + [ 7.547273, 47.5323691 ], + [ 7.5472194, 47.5322603 ], + [ 7.5472678, 47.5321738 ], + [ 7.5472933, 47.5321283 ], + [ 7.5472994, 47.5321017 ], + [ 7.5472886, 47.5320664 ], + [ 7.5471171, 47.5319525 ], + [ 7.5470928, 47.5319236 ], + [ 7.5470924, 47.5318869 ], + [ 7.5470558, 47.5318463 ], + [ 7.5469325, 47.5317589 ], + [ 7.5469104, 47.5317265 ], + [ 7.546909, 47.5316895 ], + [ 7.546918, 47.531662 ], + [ 7.5469246, 47.531602 ], + [ 7.5469171, 47.5315066 ], + [ 7.5468774, 47.5314592 ], + [ 7.546758, 47.5314142 ], + [ 7.5466116, 47.5314049 ], + [ 7.5464471, 47.5313575 ], + [ 7.5463861, 47.5313616 ], + [ 7.5463492, 47.531363999999996 ], + [ 7.5462446, 47.5314027 ], + [ 7.5461428, 47.531363 ], + [ 7.5460819, 47.5313118 ], + [ 7.5459741000000005, 47.5312677 ], + [ 7.5459021, 47.531282 ], + [ 7.545861, 47.5312628 ], + [ 7.5458605, 47.5312327 ], + [ 7.5459001, 47.5311637 ], + [ 7.5459096, 47.5311346 ], + [ 7.5459037, 47.5311005 ], + [ 7.54585, 47.5310879 ], + [ 7.5457333, 47.5311239 ], + [ 7.5457128, 47.5311098 ], + [ 7.5456826, 47.5310569 ], + [ 7.5456327, 47.5310263 ], + [ 7.5455103999999995, 47.5309769 ], + [ 7.5454904, 47.5309653 ], + [ 7.5454831, 47.5309516 ], + [ 7.5454702000000005, 47.530948 ], + [ 7.5453977, 47.5309278 ], + [ 7.5453044, 47.5308509 ], + [ 7.544676, 47.5304479 ], + [ 7.5436296, 47.5301534 ], + [ 7.5425258, 47.5299489 ], + [ 7.5425006, 47.5299442 ], + [ 7.5424761, 47.5299396 ], + [ 7.5424285, 47.5300691 ], + [ 7.5422845, 47.5305156 ], + [ 7.542048, 47.5308724 ], + [ 7.54153, 47.5316217 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns261", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Allschwilerwald", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Allschwilerwald", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Allschwilerwald", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Allschwilerwald", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7187338, 47.4693236 ], + [ 7.7187988, 47.4695811 ], + [ 7.7188166, 47.4697499 ], + [ 7.7188343, 47.4699158 ], + [ 7.718878, 47.4700081 ], + [ 7.7195046, 47.4700522 ], + [ 7.720532, 47.4701297 ], + [ 7.7216527, 47.4702089 ], + [ 7.721735, 47.470214 ], + [ 7.7217663, 47.4701676 ], + [ 7.7218304, 47.4700684 ], + [ 7.721871, 47.4700103 ], + [ 7.7219069000000005, 47.4699669 ], + [ 7.7219612, 47.4699035 ], + [ 7.7220242, 47.4698459 ], + [ 7.722091, 47.4697852 ], + [ 7.7221341, 47.4697524 ], + [ 7.7221896999999995, 47.469714 ], + [ 7.7222957, 47.4696505 ], + [ 7.7224189, 47.4695877 ], + [ 7.7225512, 47.4695272 ], + [ 7.7226954, 47.469463 ], + [ 7.7230824, 47.4692889 ], + [ 7.7233525, 47.4691832 ], + [ 7.7235869, 47.4690985 ], + [ 7.7237594, 47.4690282 ], + [ 7.7237752, 47.4690149 ], + [ 7.7238111, 47.4689731 ], + [ 7.7238843, 47.4688526 ], + [ 7.7239018, 47.4687992 ], + [ 7.7239244, 47.4687259 ], + [ 7.7239018999999995, 47.4686487 ], + [ 7.7237925, 47.4684634 ], + [ 7.723721, 47.4683568 ], + [ 7.7236218, 47.4682291 ], + [ 7.7234906, 47.4680823 ], + [ 7.7234037, 47.4679675 ], + [ 7.723375, 47.4679327 ], + [ 7.7233724, 47.4679298 ], + [ 7.7233693, 47.467927 ], + [ 7.7233659, 47.4679244 ], + [ 7.7233622, 47.4679221 ], + [ 7.7233582, 47.4679199 ], + [ 7.723354, 47.467918 ], + [ 7.7233495, 47.4679164 ], + [ 7.7233449, 47.467915 ], + [ 7.72334, 47.4679139 ], + [ 7.7233351, 47.4679131 ], + [ 7.7233301, 47.4679126 ], + [ 7.723325, 47.4679124 ], + [ 7.7233199, 47.4679125 ], + [ 7.7233148, 47.4679129 ], + [ 7.7233099, 47.4679136 ], + [ 7.723305, 47.4679146 ], + [ 7.7233003, 47.4679159 ], + [ 7.7232956999999995, 47.4679174 ], + [ 7.7232914, 47.4679192 ], + [ 7.7232433, 47.4679412 ], + [ 7.7230699, 47.468029 ], + [ 7.7229986, 47.4680313 ], + [ 7.7228857, 47.4680548 ], + [ 7.722369, 47.4681613 ], + [ 7.7222728, 47.4681798 ], + [ 7.7219066, 47.4681848 ], + [ 7.7216314, 47.4681864 ], + [ 7.7214595, 47.4681907 ], + [ 7.7213388, 47.4681981 ], + [ 7.7212266, 47.4682141 ], + [ 7.7211165, 47.4682358 ], + [ 7.7209581, 47.4682714 ], + [ 7.7207695, 47.4683199 ], + [ 7.7203049, 47.4684667 ], + [ 7.7201837, 47.4685065 ], + [ 7.7200633, 47.4685558 ], + [ 7.7199596, 47.4686017 ], + [ 7.7198294, 47.4686668 ], + [ 7.7197672, 47.4687055 ], + [ 7.7195951, 47.4688277 ], + [ 7.719249, 47.4690723 ], + [ 7.7192188999999996, 47.4690885 ], + [ 7.7191491, 47.4691227 ], + [ 7.7187338, 47.4693236 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns218", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Stellihübel - Furtboden", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Stellihübel - Furtboden", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Stellihübel - Furtboden", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Stellihübel - Furtboden", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.8935051, 47.6109536 ], + [ 8.8934958, 47.6108125 ], + [ 8.8934755, 47.6106719 ], + [ 8.8934445, 47.6105322 ], + [ 8.8934026, 47.6103938 ], + [ 8.8933501, 47.6102571 ], + [ 8.893287, 47.6101225 ], + [ 8.8932137, 47.6099902 ], + [ 8.8931302, 47.6098607 ], + [ 8.8930368, 47.6097344 ], + [ 8.8929337, 47.6096115 ], + [ 8.8928213, 47.6094925 ], + [ 8.892699799999999, 47.6093776 ], + [ 8.8925696, 47.6092671 ], + [ 8.892431, 47.6091614 ], + [ 8.8922845, 47.6090608 ], + [ 8.8921303, 47.6089655 ], + [ 8.891969, 47.6088758 ], + [ 8.891801, 47.6087919 ], + [ 8.8916267, 47.608714 ], + [ 8.8914466, 47.6086425 ], + [ 8.8912612, 47.6085774 ], + [ 8.891071, 47.6085189 ], + [ 8.8908766, 47.6084673 ], + [ 8.8906785, 47.6084226 ], + [ 8.8904772, 47.608385 ], + [ 8.8902732, 47.6083546 ], + [ 8.8900671, 47.6083314 ], + [ 8.8898596, 47.6083156 ], + [ 8.8896511, 47.6083071 ], + [ 8.8894422, 47.608306 ], + [ 8.8892336, 47.6083123 ], + [ 8.8890257, 47.608326 ], + [ 8.8888191, 47.6083471 ], + [ 8.8886145, 47.6083754 ], + [ 8.8884123, 47.6084109 ], + [ 8.8882132, 47.6084535 ], + [ 8.8880176, 47.6085031 ], + [ 8.8878262, 47.6085596 ], + [ 8.8876393, 47.6086227 ], + [ 8.8874577, 47.6086924 ], + [ 8.8872816, 47.6087684 ], + [ 8.8871117, 47.6088506 ], + [ 8.8869484, 47.6089386 ], + [ 8.8867921, 47.6090323 ], + [ 8.8866432, 47.6091314 ], + [ 8.8865023, 47.6092357 ], + [ 8.8863696, 47.6093448 ], + [ 8.8862455, 47.6094584 ], + [ 8.8861304, 47.6095762 ], + [ 8.8860246, 47.609698 ], + [ 8.8859283, 47.6098234 ], + [ 8.885841899999999, 47.609952 ], + [ 8.8857655, 47.6100835 ], + [ 8.8856994, 47.6102175 ], + [ 8.8856438, 47.6103536 ], + [ 8.8855988, 47.6104915 ], + [ 8.8855645, 47.6106309 ], + [ 8.8855411, 47.6107712 ], + [ 8.8855285, 47.6109122 ], + [ 8.8855269, 47.6110535 ], + [ 8.8855362, 47.6111946 ], + [ 8.8855564, 47.6113352 ], + [ 8.8855875, 47.6114748 ], + [ 8.8856293, 47.6116132 ], + [ 8.8856818, 47.6117499 ], + [ 8.8857449, 47.6118846 ], + [ 8.8858182, 47.6120169 ], + [ 8.8859017, 47.6121463 ], + [ 8.8859951, 47.6122727 ], + [ 8.8860981, 47.6123956 ], + [ 8.8862105, 47.6125146 ], + [ 8.886332, 47.6126295 ], + [ 8.8864622, 47.61274 ], + [ 8.8866007, 47.6128457 ], + [ 8.8867473, 47.6129463 ], + [ 8.8869014, 47.6130416 ], + [ 8.8870628, 47.6131314 ], + [ 8.8872308, 47.6132153 ], + [ 8.8874051, 47.6132931 ], + [ 8.8875852, 47.6133647 ], + [ 8.8877706, 47.6134298 ], + [ 8.8879607, 47.6134882 ], + [ 8.8881552, 47.6135398 ], + [ 8.8883533, 47.6135845 ], + [ 8.8885547, 47.6136221 ], + [ 8.8887587, 47.6136525 ], + [ 8.8889647, 47.6136757 ], + [ 8.8891723, 47.6136915 ], + [ 8.8893808, 47.6137 ], + [ 8.8895897, 47.6137011 ], + [ 8.8897984, 47.6136948 ], + [ 8.8900063, 47.6136811 ], + [ 8.8902129, 47.6136601 ], + [ 8.8904175, 47.6136318 ], + [ 8.8906197, 47.6135963 ], + [ 8.8908189, 47.6135536 ], + [ 8.8910144, 47.613504 ], + [ 8.8912059, 47.6134476 ], + [ 8.8913928, 47.6133844 ], + [ 8.8915745, 47.6133147 ], + [ 8.8917505, 47.6132387 ], + [ 8.8919205, 47.613156599999996 ], + [ 8.8920838, 47.6130685 ], + [ 8.8922401, 47.6129748 ], + [ 8.8923889, 47.612875700000004 ], + [ 8.8925299, 47.6127714 ], + [ 8.8926626, 47.6126623 ], + [ 8.8927867, 47.6125487 ], + [ 8.8929018, 47.6124308 ], + [ 8.8930076, 47.6123091 ], + [ 8.8931039, 47.6121837 ], + [ 8.8931903, 47.6120551 ], + [ 8.8932666, 47.6119236 ], + [ 8.8933327, 47.6117896 ], + [ 8.8933883, 47.6116535 ], + [ 8.8934333, 47.6115155 ], + [ 8.8934676, 47.6113762 ], + [ 8.893491, 47.6112358 ], + [ 8.8935035, 47.6110948 ], + [ 8.8935051, 47.6109536 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "MZK0001", + "country" : "CHE", + "name" : [ + { + "text" : "Massnahmenzentrum Kalchrain", + "lang" : "de-CH" + }, + { + "text" : "Massnahmenzentrum Kalchrain", + "lang" : "fr-CH" + }, + { + "text" : "Massnahmenzentrum Kalchrain", + "lang" : "it-CH" + }, + { + "text" : "Massnahmenzentrum Kalchrain", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Justizvollzug", + "lang" : "de-CH" + }, + { + "text" : "Amt für Justizvollzug", + "lang" : "fr-CH" + }, + { + "text" : "Amt für Justizvollzug", + "lang" : "it-CH" + }, + { + "text" : "Amt für Justizvollzug", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Amtsleitung", + "lang" : "de-CH" + }, + { + "text" : "Amtsleitung", + "lang" : "fr-CH" + }, + { + "text" : "Amtsleitung", + "lang" : "it-CH" + }, + { + "text" : "Amtsleitung", + "lang" : "en-GB" + } + ], + "siteURL" : "https://ajv.tg.ch/", + "email" : "ajv@tg.ch", + "phone" : "0041583453460", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.9742349, 47.111271 ], + [ 7.974228, 47.1111298 ], + [ 7.9742104, 47.110989 ], + [ 7.974182, 47.1108491 ], + [ 7.9741429, 47.1107104 ], + [ 7.9740932, 47.1105732 ], + [ 7.9740331, 47.110438 ], + [ 7.9739626999999995, 47.1103052 ], + [ 7.9738822, 47.110175 ], + [ 7.9737918, 47.110048 ], + [ 7.9736919, 47.1099243 ], + [ 7.9735825, 47.1098043 ], + [ 7.9734642000000004, 47.1096884 ], + [ 7.9733371, 47.1095769 ], + [ 7.9732016, 47.1094701 ], + [ 7.9730582, 47.1093683 ], + [ 7.9729071, 47.1092718 ], + [ 7.9727488, 47.1091808 ], + [ 7.9725838, 47.1090955 ], + [ 7.9724125, 47.1090163 ], + [ 7.9722352999999995, 47.1089433 ], + [ 7.9720528, 47.1088767 ], + [ 7.9718654, 47.1088168 ], + [ 7.9716737, 47.1087636 ], + [ 7.9714782, 47.1087173 ], + [ 7.9712794, 47.1086781 ], + [ 7.9710779, 47.1086461 ], + [ 7.9708742, 47.1086213 ], + [ 7.9706688, 47.1086038 ], + [ 7.9704624, 47.1085937 ], + [ 7.9702556, 47.1085909 ], + [ 7.9700486999999995, 47.1085956 ], + [ 7.9698426, 47.1086076 ], + [ 7.9696376, 47.108627 ], + [ 7.9694344, 47.1086537 ], + [ 7.9692335, 47.1086876 ], + [ 7.9690355, 47.1087286 ], + [ 7.9688409, 47.1087767 ], + [ 7.9686503, 47.1088316 ], + [ 7.9684641, 47.1088933 ], + [ 7.968283, 47.1089616 ], + [ 7.9681073, 47.1090362 ], + [ 7.9679375, 47.109117 ], + [ 7.9677742, 47.1092037 ], + [ 7.9676178, 47.1092962 ], + [ 7.9674686, 47.1093942 ], + [ 7.9673272, 47.1094973 ], + [ 7.9671939, 47.1096053 ], + [ 7.967069, 47.109718 ], + [ 7.966953, 47.1098349 ], + [ 7.966846, 47.1099559 ], + [ 7.9667485, 47.1100805 ], + [ 7.9666607, 47.1102084 ], + [ 7.9665828, 47.1103393 ], + [ 7.966515, 47.1104728 ], + [ 7.9664576, 47.1106085 ], + [ 7.9664106, 47.1107461 ], + [ 7.9663743, 47.1108852 ], + [ 7.9663486, 47.1110254 ], + [ 7.9663338, 47.1111663 ], + [ 7.9663298, 47.1113075 ], + [ 7.9663366, 47.1114487 ], + [ 7.9663542, 47.1115895 ], + [ 7.9663826, 47.1117294 ], + [ 7.9664217, 47.1118682 ], + [ 7.9664713, 47.1120053 ], + [ 7.9665314, 47.1121405 ], + [ 7.9666018, 47.1122733 ], + [ 7.9666823, 47.1124035 ], + [ 7.9667726, 47.1125306 ], + [ 7.9668726, 47.1126543 ], + [ 7.9669819, 47.1127743 ], + [ 7.9671003, 47.1128901 ], + [ 7.9672273, 47.1130016 ], + [ 7.9673628, 47.1131084 ], + [ 7.9675063, 47.1132103 ], + [ 7.9676573, 47.1133068 ], + [ 7.9678156, 47.1133979 ], + [ 7.9679806, 47.1134831 ], + [ 7.9681519, 47.1135623 ], + [ 7.9683291, 47.1136353 ], + [ 7.9685117, 47.1137019 ], + [ 7.968699, 47.1137619 ], + [ 7.9688908, 47.113815 ], + [ 7.9690863, 47.1138613 ], + [ 7.9692851000000005, 47.1139005 ], + [ 7.9694867, 47.1139326 ], + [ 7.9696904, 47.1139574 ], + [ 7.9698957, 47.1139749 ], + [ 7.9701021999999995, 47.113985 ], + [ 7.9703091, 47.1139877 ], + [ 7.9705159, 47.1139831 ], + [ 7.9707221, 47.113971 ], + [ 7.9709271, 47.1139517 ], + [ 7.9711303000000004, 47.113925 ], + [ 7.9713312, 47.1138911 ], + [ 7.9715292, 47.11385 ], + [ 7.9717237999999995, 47.1138019 ], + [ 7.9719145, 47.113747 ], + [ 7.9721006, 47.1136853 ], + [ 7.9722818, 47.1136171 ], + [ 7.9724576, 47.1135424 ], + [ 7.9726273, 47.1134616 ], + [ 7.9727906, 47.1133749 ], + [ 7.9729471, 47.1132824 ], + [ 7.9730962, 47.1131844 ], + [ 7.9732376, 47.1130813 ], + [ 7.973371, 47.1129733 ], + [ 7.9734958, 47.1128606 ], + [ 7.9736119, 47.1127436 ], + [ 7.9737188, 47.1126227 ], + [ 7.9738163, 47.112498 ], + [ 7.9739041, 47.1123701 ], + [ 7.9739819999999995, 47.1122392 ], + [ 7.9740497, 47.1121057 ], + [ 7.9741071, 47.11197 ], + [ 7.9741541, 47.1118324 ], + [ 7.9741903999999995, 47.1116933 ], + [ 7.974216, 47.1115532 ], + [ 7.9742308, 47.1114122 ], + [ 7.9742349, 47.111271 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0128", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Willisau", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Willisau", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Willisau", + "lang" : "it-CH" + }, + { + "text" : "Substation Willisau", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6883541, 47.4229419 ], + [ 7.6880877, 47.423326 ], + [ 7.6880428, 47.4234296 ], + [ 7.6880837, 47.423486 ], + [ 7.6881145, 47.4235934 ], + [ 7.6881063, 47.4236502 ], + [ 7.6890424, 47.4239305 ], + [ 7.6890895, 47.4239208 ], + [ 7.689338, 47.4238698 ], + [ 7.6893439, 47.4238686 ], + [ 7.6895896, 47.4237956 ], + [ 7.6898186, 47.4237328 ], + [ 7.6901298, 47.423701 ], + [ 7.6903721, 47.4236762 ], + [ 7.6911182, 47.4234448 ], + [ 7.6913845, 47.4232902 ], + [ 7.6914373, 47.4232595 ], + [ 7.6915227999999995, 47.4232273 ], + [ 7.6915064, 47.4232164 ], + [ 7.6914712, 47.4231674 ], + [ 7.6914517, 47.4231099 ], + [ 7.6914798, 47.4229784 ], + [ 7.6914786, 47.4229301 ], + [ 7.6914491, 47.4228918 ], + [ 7.6913952, 47.422858 ], + [ 7.6913095, 47.4228275 ], + [ 7.69113, 47.4227806 ], + [ 7.6908935, 47.4227067 ], + [ 7.6906281, 47.4226415 ], + [ 7.6903941, 47.4225973 ], + [ 7.690212, 47.4225708 ], + [ 7.6900598, 47.4225415 ], + [ 7.689923, 47.4224992 ], + [ 7.6896898, 47.422423 ], + [ 7.6895015, 47.4223722 ], + [ 7.6893681, 47.4223489 ], + [ 7.6892132, 47.4223187 ], + [ 7.6889057, 47.4224615 ], + [ 7.6885814, 47.4226924 ], + [ 7.6883541, 47.4229419 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns113", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Holzenberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Holzenberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Holzenberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Holzenberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5744063, 47.4473818 ], + [ 7.5727139999999995, 47.4478823 ], + [ 7.5699364, 47.4488392 ], + [ 7.5679416, 47.4497735 ], + [ 7.5690498999999996, 47.4502354 ], + [ 7.5696601, 47.4504948 ], + [ 7.5718695, 47.4495421 ], + [ 7.5746334, 47.4487363 ], + [ 7.5744063, 47.4473818 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr047", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Staatswald", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Staatswald", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Staatswald", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Staatswald", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.2059121, 47.1894674 ], + [ 8.206432, 47.1879932 ], + [ 8.2053986, 47.1877033 ], + [ 8.2058752, 47.1868888 ], + [ 8.2050364, 47.1866452 ], + [ 8.2028869, 47.1900633 ], + [ 8.2017804, 47.1897396 ], + [ 8.2013379, 47.1904468 ], + [ 8.2013477, 47.1904872 ], + [ 8.201359, 47.1905375 ], + [ 8.2012801, 47.1911138 ], + [ 8.2012809, 47.1911704 ], + [ 8.2013131, 47.1912997 ], + [ 8.2012581, 47.1914251 ], + [ 8.201941099999999, 47.1914746 ], + [ 8.2019576, 47.1916139 ], + [ 8.2019571, 47.1917659 ], + [ 8.2027979, 47.1919609 ], + [ 8.2038522, 47.1922355 ], + [ 8.2043982, 47.1913764 ], + [ 8.2058035, 47.1915541 ], + [ 8.2059575, 47.19116 ], + [ 8.2065124, 47.1895534 ], + [ 8.2059121, 47.1894674 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZO002", + "country" : "CHE", + "name" : [ + { + "text" : "LSZO Luzern-Beromünster (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSZO Luzern-Beromünster (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSZO Luzern-Beromünster (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSZO Luzern-Beromünster (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "FLUBAG Flugbetriebs AG Luzern Beromünster", + "lang" : "de-CH" + }, + { + "text" : "FLUBAG Flugbetriebs AG Luzern Beromünster", + "lang" : "fr-CH" + }, + { + "text" : "FLUBAG Flugbetriebs AG Luzern Beromünster", + "lang" : "it-CH" + }, + { + "text" : "FLUBAG Flugbetriebs AG Luzern Beromünster", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.flubag.ch", + "email" : "flubag@flubag.ch", + "phone" : "0041419301866", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P01DT12H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.975713, 45.8648578 ], + [ 8.9757038, 45.8647167 ], + [ 8.9756839, 45.864576 ], + [ 8.9756536, 45.8644364 ], + [ 8.9756129, 45.864298 ], + [ 8.9755618, 45.8641613 ], + [ 8.9755006, 45.8640266 ], + [ 8.9754294, 45.8638944 ], + [ 8.9753484, 45.863765 ], + [ 8.9752577, 45.8636387 ], + [ 8.9751578, 45.8635158 ], + [ 8.9750488, 45.8633968 ], + [ 8.974931, 45.863282 ], + [ 8.9748048, 45.8631716 ], + [ 8.9746704, 45.863066 ], + [ 8.9745284, 45.8629654 ], + [ 8.974379, 45.8628702 ], + [ 8.9742227, 45.8627806 ], + [ 8.9740599, 45.8626968 ], + [ 8.973891, 45.8626191 ], + [ 8.9737166, 45.8625476 ], + [ 8.973537, 45.8624826 ], + [ 8.9733528, 45.8624243 ], + [ 8.9731645, 45.8623728 ], + [ 8.9729726, 45.8623283 ], + [ 8.9727776, 45.8622908 ], + [ 8.9725801, 45.8622605 ], + [ 8.9723806, 45.8622375 ], + [ 8.9721796, 45.8622218 ], + [ 8.9719778, 45.8622135 ], + [ 8.9717756, 45.8622125 ], + [ 8.9715735, 45.862219 ], + [ 8.9713723, 45.8622328 ], + [ 8.9711724, 45.862254 ], + [ 8.9709743, 45.8622824 ], + [ 8.9707786, 45.8623181 ], + [ 8.9705859, 45.8623609 ], + [ 8.9703966, 45.8624106 ], + [ 8.9702113, 45.8624672 ], + [ 8.9700306, 45.8625305 ], + [ 8.9698548, 45.8626003 ], + [ 8.9696844, 45.8626765 ], + [ 8.9695201, 45.8627588 ], + [ 8.9693621, 45.862847 ], + [ 8.9692109, 45.8629408 ], + [ 8.9690669, 45.86304 ], + [ 8.9689306, 45.8631444 ], + [ 8.9688023, 45.8632536 ], + [ 8.9686824, 45.8633673 ], + [ 8.9685711, 45.8634853 ], + [ 8.9684688, 45.8636072 ], + [ 8.9683758, 45.8637326 ], + [ 8.9682923, 45.863861299999996 ], + [ 8.9682186, 45.8639929 ], + [ 8.9681548, 45.8641269 ], + [ 8.9681012, 45.8642632 ], + [ 8.9680578, 45.8644012 ], + [ 8.9680248, 45.8645406 ], + [ 8.9680024, 45.864681 ], + [ 8.9679904, 45.864822 ], + [ 8.9679891, 45.8649633 ], + [ 8.9679983, 45.8651044 ], + [ 8.9680181, 45.865245 ], + [ 8.9680484, 45.8653847 ], + [ 8.9680891, 45.8655231 ], + [ 8.9681402, 45.8656598 ], + [ 8.9682014, 45.8657944 ], + [ 8.9682726, 45.8659267 ], + [ 8.9683536, 45.8660561 ], + [ 8.9684442, 45.8661824 ], + [ 8.968544099999999, 45.8663053 ], + [ 8.9686532, 45.8664243 ], + [ 8.968770899999999, 45.8665391 ], + [ 8.9688972, 45.8666495 ], + [ 8.9690315, 45.8667551 ], + [ 8.9691735, 45.8668557 ], + [ 8.9693229, 45.8669509 ], + [ 8.9694792, 45.8670406 ], + [ 8.969642, 45.8671244 ], + [ 8.9698109, 45.8672021 ], + [ 8.9699854, 45.8672736 ], + [ 8.9701649, 45.8673385 ], + [ 8.9703491, 45.8673969 ], + [ 8.9705375, 45.8674484 ], + [ 8.9707294, 45.8674929 ], + [ 8.9709244, 45.8675304 ], + [ 8.9711219, 45.8675607 ], + [ 8.9713214, 45.8675837 ], + [ 8.9715224, 45.8675994 ], + [ 8.9717243, 45.8676077 ], + [ 8.9719265, 45.8676087 ], + [ 8.9721286, 45.8676022 ], + [ 8.9723298, 45.8675884 ], + [ 8.9725298, 45.8675672 ], + [ 8.9727279, 45.8675387 ], + [ 8.9729236, 45.8675031 ], + [ 8.9731163, 45.8674603 ], + [ 8.9733056, 45.8674106 ], + [ 8.9734909, 45.867354 ], + [ 8.9736717, 45.8672906 ], + [ 8.9738475, 45.8672208 ], + [ 8.9740178, 45.8671446 ], + [ 8.9741822, 45.8670624 ], + [ 8.9743402, 45.8669742 ], + [ 8.9744914, 45.8668803 ], + [ 8.9746353, 45.8667811 ], + [ 8.9747716, 45.8666767 ], + [ 8.9749, 45.8665675 ], + [ 8.9750199, 45.8664538 ], + [ 8.9751312, 45.8663358 ], + [ 8.9752334, 45.8662139 ], + [ 8.9753264, 45.8660884 ], + [ 8.9754099, 45.8659598 ], + [ 8.9754836, 45.8658282 ], + [ 8.9755474, 45.8656941 ], + [ 8.975601, 45.8655579 ], + [ 8.975644299999999, 45.8654199 ], + [ 8.9756773, 45.8652805 ], + [ 8.9756998, 45.8651401 ], + [ 8.9757117, 45.8649991 ], + [ 8.975713, 45.8648578 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0071", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Mendrisio", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Mendrisio", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Mendrisio", + "lang" : "it-CH" + }, + { + "text" : "Substation Mendrisio", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.3688911, 47.3166236 ], + [ 8.3688866, 47.3165857 ], + [ 8.3688761, 47.3165289 ], + [ 8.3688302, 47.3164691 ], + [ 8.3687592, 47.3163872 ], + [ 8.3686856, 47.3163283 ], + [ 8.3686042, 47.3162498 ], + [ 8.368531, 47.3161598 ], + [ 8.3684936, 47.3160945 ], + [ 8.3684846, 47.3160688 ], + [ 8.3685107, 47.3160327 ], + [ 8.3685122, 47.3160123 ], + [ 8.3684697, 47.3159796 ], + [ 8.3684205, 47.3159482 ], + [ 8.3683547, 47.3158398 ], + [ 8.3683107, 47.3157773 ], + [ 8.3682875, 47.3157098 ], + [ 8.3682619, 47.3156071 ], + [ 8.3682033, 47.3154776 ], + [ 8.3681659, 47.3153581 ], + [ 8.3681333, 47.3152399 ], + [ 8.3681252, 47.3151046 ], + [ 8.3681456, 47.3149655 ], + [ 8.368189, 47.3148317 ], + [ 8.3682205, 47.3147237 ], + [ 8.368252, 47.3146205 ], + [ 8.3682995, 47.3145543 ], + [ 8.3683547, 47.3144976 ], + [ 8.3684015, 47.314445 ], + [ 8.3684484, 47.3143504 ], + [ 8.3684853, 47.3142782 ], + [ 8.3685382, 47.3142005 ], + [ 8.3685793, 47.3141507 ], + [ 8.3686467, 47.3141311 ], + [ 8.3687023, 47.3140973 ], + [ 8.368738, 47.3140672 ], + [ 8.3687682, 47.314045899999996 ], + [ 8.3688263, 47.3140433 ], + [ 8.3688785, 47.3140313 ], + [ 8.3689243, 47.3140309 ], + [ 8.3689712, 47.3140433 ], + [ 8.369091300000001, 47.314038 ], + [ 8.369159, 47.3140381 ], + [ 8.3692032, 47.3140586 ], + [ 8.3692427, 47.3140786 ], + [ 8.3692972, 47.3140916 ], + [ 8.3693585, 47.3141045 ], + [ 8.3693791, 47.3141389 ], + [ 8.3694111, 47.314165 ], + [ 8.3695089, 47.3141965 ], + [ 8.369629, 47.3142482 ], + [ 8.3697261, 47.314296 ], + [ 8.3697984, 47.3143366 ], + [ 8.3698545, 47.3143794 ], + [ 8.369894, 47.3144075 ], + [ 8.3700219, 47.3144679 ], + [ 8.370034799999999, 47.3144935 ], + [ 8.3700687, 47.3145263 ], + [ 8.3701128, 47.3145388 ], + [ 8.3701173, 47.3145767 ], + [ 8.3701208, 47.3146112 ], + [ 8.370149, 47.3146447 ], + [ 8.370218, 47.3146637 ], + [ 8.3702602, 47.3146769 ], + [ 8.3703106, 47.3146709 ], + [ 8.3703428, 47.314655 ], + [ 8.3704169, 47.3146401 ], + [ 8.3704835, 47.3146313 ], + [ 8.3705424, 47.3146193 ], + [ 8.3706091, 47.3146186 ], + [ 8.3706607, 47.3146242 ], + [ 8.3707162, 47.3146331 ], + [ 8.3707476, 47.3146294 ], + [ 8.370771, 47.3146076 ], + [ 8.3707762, 47.3145764 ], + [ 8.3707525, 47.3145305 ], + [ 8.3707257, 47.3144705 ], + [ 8.3707315, 47.314421 ], + [ 8.3707496, 47.3143653 ], + [ 8.3707816, 47.3143447 ], + [ 8.370831, 47.3143347 ], + [ 8.3708662, 47.3143269 ], + [ 8.3708867, 47.314303 ], + [ 8.3709058, 47.3142527 ], + [ 8.370916, 47.3141795 ], + [ 8.3708911, 47.3141188 ], + [ 8.3707921, 47.3140229 ], + [ 8.3706951, 47.3139317 ], + [ 8.3705819, 47.3138394 ], + [ 8.370518, 47.3137811 ], + [ 8.3703809, 47.3136869 ], + [ 8.370287, 47.3136066 ], + [ 8.370246999999999, 47.3135555 ], + [ 8.370205, 47.3135031 ], + [ 8.370149, 47.3134623 ], + [ 8.3700605, 47.3134164 ], + [ 8.3699752, 47.3133929 ], + [ 8.3698853, 47.3133816 ], + [ 8.3698043, 47.3133823 ], + [ 8.3696757, 47.313389 ], + [ 8.3695642, 47.3133901 ], + [ 8.3694681, 47.3134012 ], + [ 8.3693645, 47.3134232 ], + [ 8.3693077, 47.3134454 ], + [ 8.36926, 47.3134459 ], + [ 8.3692014, 47.3134214 ], + [ 8.3691633, 47.3134197 ], + [ 8.3691129, 47.3134297 ], + [ 8.3690604, 47.3134289 ], + [ 8.3690016, 47.313445 ], + [ 8.3689303, 47.3134538 ], + [ 8.3688485, 47.3134648 ], + [ 8.3687688, 47.3134906 ], + [ 8.3687062, 47.3135108 ], + [ 8.3686625, 47.313518 ], + [ 8.3685921, 47.3135262 ], + [ 8.3685278, 47.3135573 ], + [ 8.3684681, 47.3135809 ], + [ 8.3683813, 47.3136318 ], + [ 8.3683162, 47.3136684 ], + [ 8.3682584, 47.3136879 ], + [ 8.3682025, 47.3137135 ], + [ 8.3681632, 47.3137545 ], + [ 8.3680838, 47.3138447 ], + [ 8.3679966, 47.3139274 ], + [ 8.3679355, 47.3139788 ], + [ 8.3678505, 47.3140277 ], + [ 8.3677637, 47.3140766 ], + [ 8.3676958, 47.3141179 ], + [ 8.3676479, 47.3141617 ], + [ 8.3675671, 47.3142302 ], + [ 8.3674944, 47.3143217 ], + [ 8.3674487, 47.3143817 ], + [ 8.3674167, 47.3144599 ], + [ 8.3673848, 47.3145449 ], + [ 8.3673734, 47.3145999 ], + [ 8.3673779, 47.314635 ], + [ 8.367368, 47.3146697 ], + [ 8.367335, 47.3146903 ], + [ 8.3673336, 47.3147208 ], + [ 8.3673464, 47.3147457 ], + [ 8.3673759, 47.3147908 ], + [ 8.367374, 47.3148457 ], + [ 8.3673748, 47.3148931 ], + [ 8.3673832, 47.314937 ], + [ 8.3673756, 47.314994 ], + [ 8.3673528, 47.3150518 ], + [ 8.3673566, 47.3151052 ], + [ 8.3673702, 47.3151715 ], + [ 8.3674027, 47.3152822 ], + [ 8.3674514, 47.3153955 ], + [ 8.3674889, 47.3155191 ], + [ 8.3675202, 47.3156197 ], + [ 8.367538, 47.3157109 ], + [ 8.3675392, 47.3158301 ], + [ 8.3675648, 47.3159281 ], + [ 8.3675916, 47.3159881 ], + [ 8.3676375, 47.3160486 ], + [ 8.3676788, 47.316122 ], + [ 8.3677208, 47.3161785 ], + [ 8.3677413, 47.3162568 ], + [ 8.3678022, 47.3163585 ], + [ 8.3678561, 47.3163864 ], + [ 8.3679375, 47.3164066 ], + [ 8.3679705, 47.3164368 ], + [ 8.3680071, 47.3164581 ], + [ 8.368043, 47.3164923 ], + [ 8.3680457, 47.3165356 ], + [ 8.3680701, 47.3165686 ], + [ 8.3680954, 47.3166008 ], + [ 8.3681448, 47.3166403 ], + [ 8.3681869, 47.316648 ], + [ 8.3682401, 47.3166908 ], + [ 8.3682695, 47.3167346 ], + [ 8.3683308, 47.3167529 ], + [ 8.3683666, 47.3167838 ], + [ 8.368367, 47.3168068 ], + [ 8.3683836, 47.3168242 ], + [ 8.3684341, 47.3168231 ], + [ 8.3684516, 47.3168425 ], + [ 8.3684887, 47.3168909 ], + [ 8.3684946, 47.3169579 ], + [ 8.3685298, 47.317007 ], + [ 8.3685672, 47.3170724 ], + [ 8.3686136, 47.3171064 ], + [ 8.3686896, 47.3171402 ], + [ 8.3687544, 47.3171951 ], + [ 8.3688001, 47.3172408 ], + [ 8.3688386, 47.3172654 ], + [ 8.3688819, 47.3172846 ], + [ 8.3689082, 47.3173189 ], + [ 8.3689678, 47.3173441 ], + [ 8.3690491, 47.3173596 ], + [ 8.3690852, 47.3173524 ], + [ 8.3691233, 47.317346 ], + [ 8.3691718, 47.3173408 ], + [ 8.3692324, 47.3173144 ], + [ 8.3692794, 47.3172794 ], + [ 8.3692922, 47.3172455 ], + [ 8.3692752, 47.3172009 ], + [ 8.3692802, 47.3171596 ], + [ 8.3692576, 47.3171219 ], + [ 8.3692042, 47.3170696 ], + [ 8.3691835, 47.3170291 ], + [ 8.369179, 47.3169919 ], + [ 8.3691803, 47.3169608 ], + [ 8.3691469, 47.3169062 ], + [ 8.3691269, 47.3168536 ], + [ 8.3691242, 47.3168103 ], + [ 8.369102, 47.3167367 ], + [ 8.3690687, 47.3166903 ], + [ 8.3690206, 47.316667 ], + [ 8.3689719, 47.3166601 ], + [ 8.3689143, 47.3166383 ], + [ 8.3688911, 47.3166236 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "KTAG501", + "country" : "CHE", + "name" : [ + { + "text" : "Stille Reuss", + "lang" : "de-CH" + }, + { + "text" : "Stille Reuss", + "lang" : "fr-CH" + }, + { + "text" : "Stille Reuss", + "lang" : "it-CH" + }, + { + "text" : "Stille Reuss", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "regulationExemption" : "NO", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "schedule" : [ + { + "day" : [ "ANY" ], + "startTime" : "00:00:00.00+01:00", + "endTime" : "00:00:00.00+01:00" + } + ] + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Aargau", + "lang" : "de-CH" + }, + { + "text" : "Canton d'Argovie", + "lang" : "fr-CH" + }, + { + "text" : "Canton Argovia", + "lang" : "it-CH" + }, + { + "text" : "Canton of Aargau", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Departement Bau, Verkehr und Umwelt (BVU)", + "lang" : "de-CH" + }, + { + "text" : "Département de la construction, des transports et de l'environnement (CTE)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento delle costruzioni, dei trasporti e dell'ambiente (CTA)", + "lang" : "it-CH" + }, + { + "text" : "Department of Civil Engineering,Transport and Environment (CTE)", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Sektion Gewässernutzung", + "lang" : "de-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "fr-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "it-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ag.ch/de/verwaltung/bvu/umwelt-natur-landschaft/hochwasserschutz-gewaesser/gewaessernutzung", + "email" : "alg@ag.ch", + "phone" : "0041 62 835 34 50", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7882272, 47.3887477 ], + [ 7.7883289, 47.3884226 ], + [ 7.7887645, 47.3881479 ], + [ 7.7895747, 47.3878928 ], + [ 7.7894814, 47.3877064 ], + [ 7.7894715, 47.3876829 ], + [ 7.7891872, 47.3872304 ], + [ 7.7885651, 47.3873886 ], + [ 7.7879406, 47.3877025 ], + [ 7.7874672, 47.3881386 ], + [ 7.7866419, 47.3884701 ], + [ 7.785953, 47.3889583 ], + [ 7.7856096, 47.3889538 ], + [ 7.7856552, 47.3893108 ], + [ 7.7855774, 47.3895748 ], + [ 7.7845641, 47.3898525 ], + [ 7.7842966, 47.3901136 ], + [ 7.7836841, 47.3897291 ], + [ 7.782863, 47.3896877 ], + [ 7.782229, 47.3900241 ], + [ 7.7817995, 47.3902549 ], + [ 7.7819127, 47.3903168 ], + [ 7.781794, 47.3904222 ], + [ 7.7817131, 47.3904877 ], + [ 7.7815615000000005, 47.3905694 ], + [ 7.7815911, 47.3905947 ], + [ 7.7816787, 47.3906642 ], + [ 7.782421, 47.3911222 ], + [ 7.7830015, 47.3914715 ], + [ 7.7843886, 47.3919136 ], + [ 7.7861875, 47.3923603 ], + [ 7.7865559, 47.3924187 ], + [ 7.7873557, 47.3922941 ], + [ 7.7877224, 47.3924171 ], + [ 7.7878679, 47.3920875 ], + [ 7.7877288, 47.3918072 ], + [ 7.7877375, 47.3918187 ], + [ 7.7877472, 47.39183 ], + [ 7.7877576, 47.3918409 ], + [ 7.7877688, 47.3918514 ], + [ 7.7877808, 47.3918616 ], + [ 7.7877935, 47.3918713 ], + [ 7.7878069, 47.3918806 ], + [ 7.7878209, 47.3918894 ], + [ 7.7878356, 47.3918978 ], + [ 7.7878509, 47.3919056 ], + [ 7.7878837, 47.3919169 ], + [ 7.7879161, 47.3919287 ], + [ 7.7879480999999995, 47.391941 ], + [ 7.7879797, 47.3919538 ], + [ 7.7880109, 47.3919671 ], + [ 7.7880416, 47.3919808 ], + [ 7.7880719, 47.3919949 ], + [ 7.7881017, 47.3920096 ], + [ 7.788131, 47.3920246 ], + [ 7.7881598, 47.3920402 ], + [ 7.7889276, 47.3920308 ], + [ 7.7892693, 47.3920297 ], + [ 7.7900235, 47.3921524 ], + [ 7.7906983, 47.392186 ], + [ 7.7909177, 47.392182 ], + [ 7.7907797, 47.3918988 ], + [ 7.7906255, 47.3915775 ], + [ 7.7904753, 47.391284 ], + [ 7.7903161, 47.3910003 ], + [ 7.7901896, 47.3907264 ], + [ 7.7900264, 47.3904409 ], + [ 7.7898182, 47.3900581 ], + [ 7.7898106, 47.3900441 ], + [ 7.7896318, 47.3896944 ], + [ 7.7895912, 47.3895857 ], + [ 7.78954, 47.3894586 ], + [ 7.7894816, 47.3892713 ], + [ 7.7895476, 47.3890431 ], + [ 7.7895905, 47.3888567 ], + [ 7.7896418, 47.3886337 ], + [ 7.7887588, 47.3887505 ], + [ 7.7882272, 47.3887477 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns107", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Harzflue", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Harzflue", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Harzflue", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Harzflue", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4769483, 46.4977648 ], + [ 7.4768574, 46.4954108 ], + [ 7.4765882999999995, 46.4930634 ], + [ 7.4761417, 46.4907289 ], + [ 7.4755188, 46.4884138 ], + [ 7.4747214, 46.4861243 ], + [ 7.4737518, 46.4838668 ], + [ 7.4726125, 46.4816474 ], + [ 7.4713066999999995, 46.4794723 ], + [ 7.469838, 46.4773473 ], + [ 7.4682105, 46.4752783 ], + [ 7.4664286, 46.473271 ], + [ 7.4644973, 46.4713308 ], + [ 7.4624217, 46.469463 ], + [ 7.4602077, 46.4676729 ], + [ 7.4578612, 46.4659652 ], + [ 7.4553888, 46.4643446 ], + [ 7.4527971, 46.4628157 ], + [ 7.4500934, 46.4613824 ], + [ 7.4472849, 46.4600489 ], + [ 7.4443795, 46.4588187 ], + [ 7.441385, 46.4576952 ], + [ 7.4383096, 46.4566814 ], + [ 7.4351618, 46.4557802 ], + [ 7.4319501, 46.454994 ], + [ 7.4286834, 46.454325 ], + [ 7.4253706, 46.4537749 ], + [ 7.4220207, 46.4533453 ], + [ 7.4186429, 46.4530373 ], + [ 7.4152465, 46.4528519 ], + [ 7.4118406, 46.4527895 ], + [ 7.4084348, 46.4528502 ], + [ 7.4050381, 46.453034 ], + [ 7.40166, 46.4533403 ], + [ 7.3983097, 46.4537683 ], + [ 7.3949963, 46.4543167 ], + [ 7.3917289, 46.4549842 ], + [ 7.3885165, 46.4557688 ], + [ 7.3853677, 46.4566685 ], + [ 7.3822913, 46.4576807 ], + [ 7.3792956, 46.4588028 ], + [ 7.3763889, 46.4600316 ], + [ 7.3735791, 46.4613637 ], + [ 7.3708739, 46.4627956 ], + [ 7.3682807, 46.4643233 ], + [ 7.3658066, 46.4659427 ], + [ 7.3634584, 46.4676492 ], + [ 7.3612425, 46.4694383 ], + [ 7.3591651, 46.471305 ], + [ 7.3572317, 46.4732443 ], + [ 7.3554478, 46.4752507 ], + [ 7.3538181, 46.4773189 ], + [ 7.3523473, 46.4794432 ], + [ 7.3510393, 46.4816177 ], + [ 7.3498977, 46.4838365 ], + [ 7.3489257, 46.4860936 ], + [ 7.348126, 46.4883826 ], + [ 7.3475008, 46.4906975 ], + [ 7.3470518, 46.4930318 ], + [ 7.3467803, 46.495379 ], + [ 7.346687, 46.4977329 ], + [ 7.3467722, 46.500087 ], + [ 7.3470357, 46.5024347 ], + [ 7.3474769, 46.5047697 ], + [ 7.3480944, 46.5070855 ], + [ 7.3488866999999995, 46.5093759 ], + [ 7.3498516, 46.5116345 ], + [ 7.3509865, 46.5138551 ], + [ 7.3522883, 46.5160316 ], + [ 7.3537534, 46.5181581 ], + [ 7.3553778, 46.5202287 ], + [ 7.3571572, 46.5222378 ], + [ 7.3590865, 46.5241798 ], + [ 7.3611606, 46.5260494 ], + [ 7.3633737, 46.5278415 ], + [ 7.3657199, 46.5295512 ], + [ 7.3681926, 46.5311737 ], + [ 7.3707851, 46.5327046 ], + [ 7.3734903, 46.5341397 ], + [ 7.3763008, 46.535475 ], + [ 7.3792088, 46.536707 ], + [ 7.3822064, 46.5378321 ], + [ 7.3852854, 46.5388474 ], + [ 7.3884372, 46.53975 ], + [ 7.3916533, 46.5405374 ], + [ 7.3949247, 46.5412076 ], + [ 7.3982426, 46.5417585 ], + [ 7.4015978, 46.5421888 ], + [ 7.404981, 46.5424973 ], + [ 7.408383, 46.542683 ], + [ 7.4117945, 46.5427455 ], + [ 7.4152061, 46.5426847 ], + [ 7.4186083, 46.5425006 ], + [ 7.4219918, 46.5421938 ], + [ 7.4253475, 46.5417652 ], + [ 7.4286659, 46.5412158 ], + [ 7.4319381, 46.5405473 ], + [ 7.4351549, 46.5397614 ], + [ 7.4383077, 46.5388604 ], + [ 7.4413876, 46.5378466 ], + [ 7.4443864, 46.5367229 ], + [ 7.4472957, 46.5354924 ], + [ 7.4501075, 46.5341584 ], + [ 7.4528142, 46.5327246 ], + [ 7.4554083, 46.531195 ], + [ 7.4578827, 46.5295737 ], + [ 7.4602306, 46.5278652 ], + [ 7.4624456, 46.5260742 ], + [ 7.4645216, 46.5242056 ], + [ 7.4664529, 46.5222645 ], + [ 7.4682343, 46.5202563 ], + [ 7.4698609, 46.5181865 ], + [ 7.4713282, 46.5160607 ], + [ 7.4726322, 46.5138848 ], + [ 7.4737693, 46.5116648 ], + [ 7.4747366, 46.5094067 ], + [ 7.4755312, 46.5071167 ], + [ 7.4761512, 46.5048012 ], + [ 7.4765947, 46.5024664 ], + [ 7.4768606, 46.5001188 ], + [ 7.4769483, 46.4977648 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSTS001", + "country" : "CHE", + "name" : [ + { + "text" : "LSTS St. Stephan", + "lang" : "de-CH" + }, + { + "text" : "LSTS St. Stephan", + "lang" : "fr-CH" + }, + { + "text" : "LSTS St. Stephan", + "lang" : "it-CH" + }, + { + "text" : "LSTS St. Stephan", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Airfield St. Stephan", + "lang" : "de-CH" + }, + { + "text" : "Airfield St. Stephan", + "lang" : "fr-CH" + }, + { + "text" : "Airfield St. Stephan", + "lang" : "it-CH" + }, + { + "text" : "Airfield St. Stephan", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Stephan Speiser", + "lang" : "de-CH" + }, + { + "text" : "Stephan Speiser", + "lang" : "fr-CH" + }, + { + "text" : "Stephan Speiser", + "lang" : "it-CH" + }, + { + "text" : "Stephan Speiser", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.p-c-a.ch/modellflug.html", + "email" : "info@p-c-a.ch", + "phone" : "0041787341880", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8382169, 47.3778025 ], + [ 7.8382284, 47.3779374 ], + [ 7.8383306, 47.3779956 ], + [ 7.8386005, 47.3780995 ], + [ 7.8388178, 47.378152 ], + [ 7.8390846, 47.3782044 ], + [ 7.8391817, 47.3782662 ], + [ 7.839289, 47.3782924 ], + [ 7.8394358, 47.3783523 ], + [ 7.8395484, 47.3783892 ], + [ 7.8396791, 47.3783994 ], + [ 7.8397847, 47.3783898 ], + [ 7.839902, 47.3783627 ], + [ 7.8400537, 47.3783711 ], + [ 7.840195, 47.3784186 ], + [ 7.8403282999999995, 47.3784252 ], + [ 7.8405397, 47.3783978 ], + [ 7.8409289, 47.3784781 ], + [ 7.8413973, 47.3785599 ], + [ 7.8419506, 47.3786464 ], + [ 7.8422017, 47.3786864 ], + [ 7.8423402, 47.3786877 ], + [ 7.8423683, 47.3785935 ], + [ 7.8421337, 47.3783173 ], + [ 7.8420631, 47.3783086 ], + [ 7.8420252, 47.378339 ], + [ 7.8420859, 47.3784291 ], + [ 7.8421715, 47.3785126 ], + [ 7.8421389, 47.3786225 ], + [ 7.8420239, 47.3786052 ], + [ 7.84174, 47.3785603 ], + [ 7.8415698, 47.3785389 ], + [ 7.8414475, 47.3785206 ], + [ 7.8413049, 47.3784964 ], + [ 7.8410271, 47.3784469 ], + [ 7.8408575, 47.378412 ], + [ 7.8406173, 47.3783633 ], + [ 7.8405879, 47.3783588 ], + [ 7.8405579, 47.3783563 ], + [ 7.8405277, 47.3783561 ], + [ 7.8404976, 47.3783579 ], + [ 7.8404681, 47.3783618 ], + [ 7.8404644, 47.3783625 ], + [ 7.840338, 47.3783785 ], + [ 7.8403105, 47.378382 ], + [ 7.8402826, 47.3783835 ], + [ 7.8402545, 47.3783832 ], + [ 7.8402267, 47.3783808 ], + [ 7.8401993999999995, 47.3783764 ], + [ 7.8401727999999995, 47.3783701 ], + [ 7.8401475, 47.378362 ], + [ 7.8401367, 47.3783579 ], + [ 7.8400773, 47.3783415 ], + [ 7.8400473999999996, 47.3783338 ], + [ 7.8400165, 47.3783282 ], + [ 7.839985, 47.3783249 ], + [ 7.8399531, 47.3783238 ], + [ 7.8399212, 47.3783251 ], + [ 7.8398897, 47.3783285 ], + [ 7.8398669, 47.3783325 ], + [ 7.839787, 47.3783522 ], + [ 7.8397574, 47.3783594 ], + [ 7.8397267, 47.3783643 ], + [ 7.8396956, 47.378367 ], + [ 7.8396642, 47.3783676 ], + [ 7.8396328, 47.3783659 ], + [ 7.8396131, 47.3783636 ], + [ 7.8395637, 47.3783554 ], + [ 7.8395161, 47.3783437 ], + [ 7.8394704, 47.3783288 ], + [ 7.8394273, 47.3783107 ], + [ 7.8394037, 47.3782988 ], + [ 7.8393575, 47.3782796 ], + [ 7.8393087, 47.3782638 ], + [ 7.8392702, 47.3782541 ], + [ 7.8392527, 47.3782504 ], + [ 7.839236, 47.3782454 ], + [ 7.83922, 47.3782392 ], + [ 7.839205, 47.3782319 ], + [ 7.8391912999999995, 47.3782237 ], + [ 7.8391789, 47.3782145 ], + [ 7.8391687999999995, 47.3782052 ], + [ 7.8391545, 47.3781942 ], + [ 7.8391387, 47.3781842 ], + [ 7.8391214, 47.3781755 ], + [ 7.8391028, 47.378168 ], + [ 7.8390833, 47.3781618 ], + [ 7.8390628, 47.3781571 ], + [ 7.8390418, 47.3781539 ], + [ 7.8390384, 47.3781535 ], + [ 7.8388812, 47.3781152 ], + [ 7.8387139999999995, 47.3780705 ], + [ 7.8385545, 47.3780141 ], + [ 7.8384453, 47.3779665 ], + [ 7.8383227, 47.3779096 ], + [ 7.8383096, 47.377863 ], + [ 7.8383586, 47.3778307 ], + [ 7.8383663, 47.377727 ], + [ 7.8383938, 47.37756 ], + [ 7.8383807, 47.3775423 ], + [ 7.8383362, 47.3775389 ], + [ 7.8383129, 47.3775577 ], + [ 7.8382944, 47.3776167 ], + [ 7.8382552, 47.3776851 ], + [ 7.8382169, 47.3778025 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns200", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Hecken-Komplex Schmutzberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Hecken-Komplex Schmutzberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Hecken-Komplex Schmutzberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Hecken-Komplex Schmutzberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.9757202, 47.2053192 ], + [ 8.9757312, 47.2067568 ], + [ 8.9756803, 47.2070989 ], + [ 8.9756098, 47.207286 ], + [ 8.9755223, 47.2074113 ], + [ 8.9754503, 47.2075467 ], + [ 8.9753923, 47.2076406 ], + [ 8.9753688, 47.2094615 ], + [ 8.9756749, 47.2095505 ], + [ 8.9790742, 47.2042503 ], + [ 8.9788133, 47.2041503 ], + [ 8.9784846, 47.2043306 ], + [ 8.9780907, 47.2043565 ], + [ 8.9773684, 47.2045731 ], + [ 8.9770218, 47.2046604 ], + [ 8.9766017, 47.2048316 ], + [ 8.9762858, 47.2049289 ], + [ 8.9759841, 47.204995 ], + [ 8.9757886, 47.2050597 ], + [ 8.9756848, 47.2051438 ], + [ 8.9757202, 47.2053192 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "WZV0004", + "country" : "CHE", + "name" : [ + { + "text" : "Wasser- und Zugvogelreservat Benkner-, Burger- und Kaltbrunner-Riet", + "lang" : "de-CH" + }, + { + "text" : "Réserve d'oiseaux d'eau et de migrateurs Benkner-, Burger- und Kaltbrunner-Riet", + "lang" : "fr-CH" + }, + { + "text" : "Riserva di uccelli acquatici e migratori Benkner-, Burger- und Kaltbrunner-Riet", + "lang" : "it-CH" + }, + { + "text" : "Water Bird and Migratory Bird Reserves Benkner-, Burger- und Kaltbrunner-Riet", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8087701, 47.4946579 ], + [ 7.8084117, 47.4946372 ], + [ 7.8079003, 47.4946103 ], + [ 7.8078638, 47.4946955 ], + [ 7.8083199, 47.4947944 ], + [ 7.8087089, 47.4948589 ], + [ 7.8087701, 47.4946579 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns272", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Im Boden", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Im Boden", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Im Boden", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Im Boden", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.5962005, 47.6061426 ], + [ 8.6034342, 47.6051091 ], + [ 8.6181635, 47.60227 ], + [ 8.6325649, 47.598746 ], + [ 8.6465687, 47.5945541 ], + [ 8.6601073, 47.5897147 ], + [ 8.6731153, 47.5842511 ], + [ 8.68553, 47.5781898 ], + [ 8.6972915, 47.5715601 ], + [ 8.7083433, 47.564394 ], + [ 8.7186322, 47.5567261 ], + [ 8.728109, 47.5485935 ], + [ 8.7367282, 47.5400355 ], + [ 8.7444487, 47.5310932 ], + [ 8.7512338, 47.5218099 ], + [ 8.7570512, 47.5122303 ], + [ 8.7618735, 47.5024006 ], + [ 8.765678, 47.4923679 ], + [ 8.768447, 47.4821807 ], + [ 8.7701677, 47.471888 ], + [ 8.7708325, 47.4615391 ], + [ 8.7704389, 47.4511838 ], + [ 8.7689893, 47.4408719 ], + [ 8.7664913, 47.4306528 ], + [ 8.7629575, 47.4205754 ], + [ 8.7584055, 47.4106882 ], + [ 8.7584052, 47.4106882 ], + [ 8.6863048, 47.3844367 ], + [ 8.7928816, 47.2482721 ], + [ 8.666371, 47.2243677 ], + [ 8.6188669, 47.2366996 ], + [ 8.5303101, 47.3658141 ], + [ 8.3402977, 47.351693 ], + [ 8.3300083, 47.4614277 ], + [ 8.3306611, 47.4717769 ], + [ 8.3323705, 47.4820705 ], + [ 8.3351282, 47.4922591 ], + [ 8.3389216, 47.5022937 ], + [ 8.3437331, 47.5121259 ], + [ 8.3495399, 47.5217084 ], + [ 8.3563148, 47.5309951 ], + [ 8.3640254, 47.5399413 ], + [ 8.3726352, 47.5485037 ], + [ 8.382103, 47.5566411 ], + [ 8.3923835, 47.5643141 ], + [ 8.4034273, 47.5714858 ], + [ 8.4082247, 47.5741945 ], + [ 8.4085257, 47.5740544 ], + [ 8.4091836, 47.5737264 ], + [ 8.4116745, 47.5724423 ], + [ 8.4122143, 47.5721729 ], + [ 8.4127665, 47.5719152 ], + [ 8.4133303, 47.5716694 ], + [ 8.4139054, 47.5714358 ], + [ 8.414491, 47.571214499999996 ], + [ 8.4148622, 47.5710826 ], + [ 8.4152371, 47.5709557 ], + [ 8.4156157, 47.5708338 ], + [ 8.4159977, 47.570717 ], + [ 8.4162573, 47.5706417 ], + [ 8.416383, 47.5706053 ], + [ 8.4167716, 47.5704987 ], + [ 8.4171631, 47.5703974 ], + [ 8.4175575, 47.5703013 ], + [ 8.4184705, 47.5700798 ], + [ 8.4193773, 47.5698469 ], + [ 8.4202776, 47.5696028 ], + [ 8.421171, 47.5693475 ], + [ 8.4220574, 47.5690811 ], + [ 8.4229364, 47.5688037 ], + [ 8.4238077, 47.5685154 ], + [ 8.4246709, 47.5682163 ], + [ 8.4256792, 47.5678595 ], + [ 8.4269019, 47.5674268 ], + [ 8.4277508, 47.5671562 ], + [ 8.4286298, 47.5669342 ], + [ 8.4295331, 47.5667623 ], + [ 8.4304543, 47.5666418 ], + [ 8.4313872, 47.5665734 ], + [ 8.4323252, 47.5665576 ], + [ 8.4332618, 47.5665946 ], + [ 8.4341908, 47.566684 ], + [ 8.4371213, 47.5670508 ], + [ 8.4375449, 47.5671099 ], + [ 8.4379647, 47.5671806 ], + [ 8.4383798, 47.5672627 ], + [ 8.4387896, 47.5673563 ], + [ 8.4391935, 47.567461 ], + [ 8.4395908, 47.5675768 ], + [ 8.446223700000001, 47.5696187 ], + [ 8.4466824, 47.5697628 ], + [ 8.4471378, 47.5699119 ], + [ 8.4475896, 47.5700659 ], + [ 8.4480377, 47.5702247 ], + [ 8.4484821, 47.5703883 ], + [ 8.4489225, 47.5705566 ], + [ 8.449392, 47.5707274 ], + [ 8.4498752, 47.5708798 ], + [ 8.4503706, 47.5710132 ], + [ 8.4508764, 47.5711271 ], + [ 8.451391, 47.5712213 ], + [ 8.4519127, 47.5712953 ], + [ 8.4521799, 47.5713317 ], + [ 8.4524446, 47.5713755 ], + [ 8.4527065, 47.5714266 ], + [ 8.4529651, 47.5714849 ], + [ 8.4532199, 47.5715503 ], + [ 8.4534705, 47.5716227 ], + [ 8.4559023, 47.5723658 ], + [ 8.45601, 47.5723962 ], + [ 8.45612, 47.5724223 ], + [ 8.4562322, 47.5724439 ], + [ 8.456346, 47.5724611 ], + [ 8.4564611, 47.5724737 ], + [ 8.4565771, 47.5724818 ], + [ 8.4566936, 47.5724852 ], + [ 8.4568102, 47.5724841 ], + [ 8.4569265, 47.5724783 ], + [ 8.4570422, 47.5724679 ], + [ 8.4606074, 47.5720762 ], + [ 8.4614725, 47.5720112 ], + [ 8.4623429, 47.5720054 ], + [ 8.4632097, 47.5720589 ], + [ 8.4640642, 47.5721712 ], + [ 8.4641829, 47.5721954 ], + [ 8.4648976, 47.5723411 ], + [ 8.4657015, 47.5725668 ], + [ 8.4666484, 47.5728873 ], + [ 8.4675757, 47.5732329 ], + [ 8.468482, 47.5736033 ], + [ 8.4693657, 47.5739978 ], + [ 8.4702256, 47.5744158 ], + [ 8.4710601, 47.5748566 ], + [ 8.4718224, 47.5752774 ], + [ 8.4725852, 47.5756979 ], + [ 8.4733483, 47.576118 ], + [ 8.4741118, 47.5765378 ], + [ 8.4748757, 47.5769573 ], + [ 8.47564, 47.5773764 ], + [ 8.4759642, 47.5775395 ], + [ 8.476308, 47.5776829 ], + [ 8.4766689, 47.5778055 ], + [ 8.4770442, 47.5779066 ], + [ 8.4774311, 47.5779852 ], + [ 8.4778265, 47.5780408 ], + [ 8.4782276, 47.578073 ], + [ 8.4786313, 47.5780815 ], + [ 8.4790346, 47.5780663 ], + [ 8.4794344, 47.5780275 ], + [ 8.4798277, 47.5779654 ], + [ 8.4802116, 47.5778804 ], + [ 8.4825995, 47.5772728 ], + [ 8.4829732, 47.5771898 ], + [ 8.4833559, 47.5771284 ], + [ 8.483745, 47.5770891 ], + [ 8.4838574, 47.5770842 ], + [ 8.4841375, 47.5770721 ], + [ 8.4845307, 47.5770777 ], + [ 8.4849219, 47.5771057 ], + [ 8.4853081, 47.577156 ], + [ 8.4856868, 47.5772282 ], + [ 8.486055, 47.5773217 ], + [ 8.4864102, 47.577436 ], + [ 8.4867499, 47.5775702 ], + [ 8.4870716, 47.5777233 ], + [ 8.4873472, 47.5778666 ], + [ 8.4910548, 47.5797944 ], + [ 8.4916164, 47.5800672 ], + [ 8.492203, 47.5803147 ], + [ 8.4928121, 47.5805359 ], + [ 8.4934411, 47.5807299 ], + [ 8.4940875, 47.5808958 ], + [ 8.4947484, 47.5810329 ], + [ 8.4943694, 47.5818008 ], + [ 8.494153, 47.5822443 ], + [ 8.4928645, 47.5837195 ], + [ 8.491995, 47.5846241 ], + [ 8.4913657, 47.5852983 ], + [ 8.4909031, 47.5858382 ], + [ 8.4903653, 47.5864267 ], + [ 8.4887069, 47.5878289 ], + [ 8.4872752, 47.5874196 ], + [ 8.4832818, 47.5869176 ], + [ 8.4817632, 47.5860117 ], + [ 8.4810395, 47.5852042 ], + [ 8.4805424, 47.5851844 ], + [ 8.4800947, 47.5851613 ], + [ 8.4795557, 47.58535 ], + [ 8.4780977, 47.5849717 ], + [ 8.4777009, 47.5848929 ], + [ 8.4764969, 47.5847255 ], + [ 8.4754579, 47.5845274 ], + [ 8.4737299, 47.5844113 ], + [ 8.4733978, 47.5844035 ], + [ 8.4730674, 47.5844102 ], + [ 8.4722264, 47.5844477 ], + [ 8.4714258, 47.5845324 ], + [ 8.4703478, 47.5846319 ], + [ 8.4702444, 47.5846126 ], + [ 8.4701581, 47.5845201 ], + [ 8.4700326, 47.5844752 ], + [ 8.4696239, 47.5843752 ], + [ 8.4695669, 47.5842654 ], + [ 8.4694815, 47.5841775 ], + [ 8.469381, 47.5841197 ], + [ 8.4692046, 47.5840297 ], + [ 8.4686993, 47.5839858 ], + [ 8.4683037, 47.5839166 ], + [ 8.4682065, 47.5839131 ], + [ 8.4680553, 47.5839553 ], + [ 8.4679621, 47.5839741 ], + [ 8.467791, 47.5839855 ], + [ 8.4676046, 47.583978 ], + [ 8.467514, 47.5839975 ], + [ 8.4674458, 47.5840459 ], + [ 8.4672302, 47.5841588 ], + [ 8.4670479, 47.5842427 ], + [ 8.4669542, 47.584275 ], + [ 8.4668687, 47.584248 ], + [ 8.4668565, 47.5842701 ], + [ 8.4662312, 47.5853976 ], + [ 8.4655369, 47.5866496 ], + [ 8.4648205, 47.5880082 ], + [ 8.4627093, 47.5880082 ], + [ 8.4626201, 47.5884462 ], + [ 8.4605392, 47.588377 ], + [ 8.4603537, 47.5895824 ], + [ 8.4605608, 47.5896139 ], + [ 8.4606356, 47.5904511 ], + [ 8.4606838, 47.5909909 ], + [ 8.4607709, 47.5912181 ], + [ 8.4610166, 47.5920287 ], + [ 8.4612358, 47.5926655 ], + [ 8.460881, 47.5930333 ], + [ 8.4605927, 47.5933321 ], + [ 8.4602538, 47.5942151 ], + [ 8.4600205, 47.595015599999996 ], + [ 8.4592767, 47.5960511 ], + [ 8.4681238, 47.5987044 ], + [ 8.4825213, 47.6022357 ], + [ 8.4972474, 47.6050823 ], + [ 8.5122311, 47.6072304 ], + [ 8.5273996, 47.6086695 ], + [ 8.5426797, 47.6093928 ], + [ 8.557997199999999, 47.6093966 ], + [ 8.566399, 47.6090035 ], + [ 8.5664204, 47.6086336 ], + [ 8.5664775, 47.6083172 ], + [ 8.5665777, 47.60805 ], + [ 8.566517, 47.607585 ], + [ 8.5664663, 47.6068203 ], + [ 8.566415899999999, 47.6060918 ], + [ 8.5660204, 47.6051939 ], + [ 8.5650406, 47.6044356 ], + [ 8.5645635, 47.6037278 ], + [ 8.5639021, 47.6028615 ], + [ 8.5632716, 47.6023811 ], + [ 8.5622613, 47.6018126 ], + [ 8.5616546, 47.6013046 ], + [ 8.561929899999999, 47.6008113 ], + [ 8.5622228, 47.6002866 ], + [ 8.5626957, 47.5998244 ], + [ 8.5630816, 47.5994477 ], + [ 8.5639922, 47.5984783 ], + [ 8.5646905, 47.5980456 ], + [ 8.5656639, 47.5975974 ], + [ 8.5666422, 47.5971472 ], + [ 8.5676073, 47.5976212 ], + [ 8.56875, 47.5979193 ], + [ 8.5697771, 47.598134 ], + [ 8.5711347, 47.5982019 ], + [ 8.5715188, 47.5981468 ], + [ 8.5721708, 47.5978222 ], + [ 8.5736596, 47.5966505 ], + [ 8.5748671, 47.5955091 ], + [ 8.5768751, 47.5968226 ], + [ 8.5776229, 47.5968309 ], + [ 8.579507, 47.5964837 ], + [ 8.5810054, 47.5963396 ], + [ 8.5825769, 47.5961396 ], + [ 8.5832933, 47.5971184 ], + [ 8.583739, 47.5982756 ], + [ 8.5843162, 47.5997868 ], + [ 8.5852357, 47.6002559 ], + [ 8.5859095, 47.6008529 ], + [ 8.5868055, 47.6012734 ], + [ 8.5877841, 47.6017425 ], + [ 8.5890722, 47.601599 ], + [ 8.590183, 47.601209 ], + [ 8.5913206, 47.6022964 ], + [ 8.5912036, 47.6028916 ], + [ 8.5917027, 47.603766 ], + [ 8.5920197, 47.6042359 ], + [ 8.5923538, 47.6053543 ], + [ 8.5927412, 47.6061569 ], + [ 8.5938426, 47.6059692 ], + [ 8.5947993, 47.6057873 ], + [ 8.5957278, 47.6056109 ], + [ 8.595951, 47.6058884 ], + [ 8.5962005, 47.6061426 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 120, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "CTR0015", + "country" : "CHE", + "name" : [ + { + "text" : "CTR ZURICH 1", + "lang" : "de-CH" + }, + { + "text" : "CTR ZURICH 1", + "lang" : "fr-CH" + }, + { + "text" : "CTR ZURICH 1", + "lang" : "it-CH" + }, + { + "text" : "CTR ZURICH 1", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only permitted from an altitude of 120 m above ground with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Skyguide Special Flight Office", + "lang" : "de-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "it-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "en-GB" + } + ], + "siteURL" : "https://skyguide.ch/services/special-flights", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5432238, 47.4873465 ], + [ 7.5431331, 47.4873536 ], + [ 7.5430924, 47.4873459 ], + [ 7.5430117, 47.4873616 ], + [ 7.5429537, 47.487363 ], + [ 7.5429061, 47.487376 ], + [ 7.5428657999999995, 47.487369 ], + [ 7.54269, 47.4873279 ], + [ 7.5426126, 47.4872964 ], + [ 7.5424918, 47.4872467 ], + [ 7.5424402, 47.4871945 ], + [ 7.54234, 47.4871751 ], + [ 7.5422282, 47.487199 ], + [ 7.5421927, 47.4872283 ], + [ 7.5420764, 47.4872766 ], + [ 7.5419864, 47.4872904 ], + [ 7.5419259, 47.4872486 ], + [ 7.541807, 47.4872325 ], + [ 7.5417416, 47.4871853 ], + [ 7.5411255, 47.4869993 ], + [ 7.540622, 47.4868287 ], + [ 7.5405722, 47.4868434 ], + [ 7.5416658, 47.4871843 ], + [ 7.5419617, 47.4873119 ], + [ 7.5421519, 47.487296 ], + [ 7.5422337, 47.4872607 ], + [ 7.542476, 47.4872867 ], + [ 7.5426231999999995, 47.4873438 ], + [ 7.5428515, 47.4873933 ], + [ 7.543471, 47.4873549 ], + [ 7.5435238, 47.4873612 ], + [ 7.5435368, 47.4874407 ], + [ 7.5436834, 47.4876245 ], + [ 7.5438026, 47.4877123 ], + [ 7.5439556, 47.4877954 ], + [ 7.5443023, 47.4879833 ], + [ 7.5443413, 47.4880116 ], + [ 7.5447138, 47.4882814 ], + [ 7.54484, 47.4883795 ], + [ 7.5449682, 47.4884185 ], + [ 7.5451221, 47.4884297 ], + [ 7.5452238, 47.4884858 ], + [ 7.5455229, 47.488559 ], + [ 7.5456855, 47.4885347 ], + [ 7.5460301, 47.4885195 ], + [ 7.5460892, 47.4885169 ], + [ 7.5461145, 47.4885801 ], + [ 7.5463632, 47.489019 ], + [ 7.5466182, 47.4894537 ], + [ 7.5466964, 47.4895207 ], + [ 7.5467293, 47.4896211 ], + [ 7.5467335, 47.4898117 ], + [ 7.546873, 47.4899223 ], + [ 7.5470718, 47.4900897 ], + [ 7.5473019, 47.4904866 ], + [ 7.5477637, 47.4907239 ], + [ 7.5485629, 47.4910886 ], + [ 7.548705, 47.4911292 ], + [ 7.548864, 47.4911465 ], + [ 7.5491696, 47.4911491 ], + [ 7.5493368, 47.4911628 ], + [ 7.5494991, 47.491194 ], + [ 7.5499378, 47.4913101 ], + [ 7.5502934, 47.491202 ], + [ 7.5509035, 47.4914022 ], + [ 7.5514095, 47.4915944 ], + [ 7.5516078, 47.4916442 ], + [ 7.5517508, 47.4917915 ], + [ 7.5521233, 47.4918905 ], + [ 7.552255, 47.4919283 ], + [ 7.5523836, 47.4919807 ], + [ 7.5524917, 47.492047 ], + [ 7.5526541, 47.4922332 ], + [ 7.55272, 47.4922281 ], + [ 7.5527044, 47.4921314 ], + [ 7.5526793, 47.4921164 ], + [ 7.5525499, 47.4919747 ], + [ 7.5524465, 47.4918945 ], + [ 7.5522177, 47.4918437 ], + [ 7.5518365, 47.4917294 ], + [ 7.5517521, 47.4916796 ], + [ 7.5516573000000005, 47.4915886 ], + [ 7.5514736, 47.4915414 ], + [ 7.5509409, 47.4913464 ], + [ 7.5502981, 47.4911328 ], + [ 7.5500929, 47.4912057 ], + [ 7.5499727, 47.4912073 ], + [ 7.5497706, 47.4910844 ], + [ 7.5493611, 47.4910546 ], + [ 7.5492324, 47.4909878 ], + [ 7.5488789, 47.4910455 ], + [ 7.5486879, 47.4909867 ], + [ 7.548609, 47.4908925 ], + [ 7.548363, 47.4908638 ], + [ 7.5483028999999995, 47.490836 ], + [ 7.5478852, 47.4906426 ], + [ 7.5474297, 47.490384 ], + [ 7.5473023999999995, 47.4902001 ], + [ 7.5471566, 47.4900482 ], + [ 7.547072, 47.4899784 ], + [ 7.5469403, 47.4898687 ], + [ 7.546829, 47.4897628 ], + [ 7.5468561, 47.4896153 ], + [ 7.5467865, 47.4895341 ], + [ 7.5467735000000005, 47.4895024 ], + [ 7.5467424, 47.4894901 ], + [ 7.5467299, 47.4894922 ], + [ 7.546715, 47.4894948 ], + [ 7.5466668, 47.4894449 ], + [ 7.5466282, 47.4893695 ], + [ 7.5465652, 47.4892614 ], + [ 7.5465535, 47.4892223 ], + [ 7.5465143, 47.48917 ], + [ 7.5464817, 47.4891017 ], + [ 7.5464065, 47.4890377 ], + [ 7.5463284, 47.4888629 ], + [ 7.5462527999999995, 47.4887652 ], + [ 7.5462205, 47.488699 ], + [ 7.5461975, 47.4886323 ], + [ 7.5461506, 47.4885852 ], + [ 7.5461276999999995, 47.4885276 ], + [ 7.5460943, 47.4884966 ], + [ 7.5460261, 47.4884985 ], + [ 7.5459527, 47.4885058 ], + [ 7.5458206, 47.48851 ], + [ 7.5457593, 47.4885205 ], + [ 7.5457097, 47.4885135 ], + [ 7.5456369, 47.4885187 ], + [ 7.5455442, 47.4885407 ], + [ 7.5454557, 47.4885252 ], + [ 7.5453978, 47.4885054 ], + [ 7.5453171, 47.4884848 ], + [ 7.5452653, 47.4884813 ], + [ 7.5452101, 47.4884584 ], + [ 7.5451494, 47.4884096 ], + [ 7.5450561, 47.4884036 ], + [ 7.5450022, 47.4884038 ], + [ 7.5449649999999995, 47.4883936 ], + [ 7.5449131, 47.4883847 ], + [ 7.5448328, 47.488351 ], + [ 7.5448, 47.4883188 ], + [ 7.5447765, 47.4882907 ], + [ 7.5446901, 47.4882289 ], + [ 7.5446574, 47.4882099 ], + [ 7.5446126, 47.4881682 ], + [ 7.5445063999999995, 47.4881037 ], + [ 7.5443803, 47.488008 ], + [ 7.5442978, 47.4879546 ], + [ 7.5441808, 47.4878909 ], + [ 7.5440815, 47.4878346 ], + [ 7.5439722, 47.4877753 ], + [ 7.5438412, 47.4876946 ], + [ 7.5437701, 47.4876513 ], + [ 7.5437069999999995, 47.4876112 ], + [ 7.5436764, 47.4875448 ], + [ 7.5435907, 47.4874282 ], + [ 7.5435603, 47.4873967 ], + [ 7.54355, 47.4873539 ], + [ 7.5434775, 47.4873376 ], + [ 7.5434354, 47.4873306 ], + [ 7.5433912, 47.4873366 ], + [ 7.5432944, 47.4873336 ], + [ 7.5432238, 47.4873465 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns139", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Marbach", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Marbach", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Marbach", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Marbach", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5099716, 47.5048002 ], + [ 7.5105267, 47.5048148 ], + [ 7.5108336, 47.5048068 ], + [ 7.5109438, 47.5048072 ], + [ 7.5110577, 47.5048107 ], + [ 7.5111492, 47.5048033 ], + [ 7.5113328, 47.5047853 ], + [ 7.5115491, 47.5047221 ], + [ 7.5116381, 47.5046843 ], + [ 7.5118331, 47.5046261 ], + [ 7.511925, 47.5045927 ], + [ 7.5120384, 47.5045721 ], + [ 7.5122274, 47.5045301 ], + [ 7.5123932, 47.5045185 ], + [ 7.5124281, 47.5045179 ], + [ 7.5124793, 47.5045209 ], + [ 7.5128257, 47.5045564 ], + [ 7.5128756, 47.5045615 ], + [ 7.5129095, 47.5045638 ], + [ 7.5130959, 47.5045869 ], + [ 7.5132776, 47.5046245 ], + [ 7.5137163000000005, 47.5046739 ], + [ 7.5138332, 47.5046929 ], + [ 7.5139328, 47.5047132 ], + [ 7.5140709999999995, 47.5047534 ], + [ 7.5142826, 47.5048005 ], + [ 7.51436, 47.5048112 ], + [ 7.5144413, 47.5048226 ], + [ 7.5145239, 47.5048204 ], + [ 7.5147891, 47.504822 ], + [ 7.5149311999999995, 47.5048159 ], + [ 7.5149322, 47.5048159 ], + [ 7.5149331, 47.504816 ], + [ 7.5149341, 47.5048161 ], + [ 7.514935, 47.5048162 ], + [ 7.5149359, 47.5048165 ], + [ 7.5149368, 47.5048168 ], + [ 7.5149377, 47.5048171 ], + [ 7.5149384999999995, 47.5048175 ], + [ 7.5149392, 47.5048179 ], + [ 7.5149399, 47.5048184 ], + [ 7.5149405, 47.5048189 ], + [ 7.5149411, 47.5048194 ], + [ 7.5149416, 47.50482 ], + [ 7.514942, 47.5048206 ], + [ 7.5149422999999995, 47.5048212 ], + [ 7.5149425, 47.5048219 ], + [ 7.5149374, 47.5048776 ], + [ 7.5149679, 47.5049605 ], + [ 7.5150237, 47.5050594 ], + [ 7.5150415, 47.5050553 ], + [ 7.5149926, 47.504954 ], + [ 7.5149646, 47.5048761 ], + [ 7.5149692, 47.5048089 ], + [ 7.5149509, 47.5047983 ], + [ 7.514785, 47.5048041 ], + [ 7.5145988, 47.5048034 ], + [ 7.5145425, 47.5048032 ], + [ 7.5144454, 47.5048053 ], + [ 7.5143617, 47.504793 ], + [ 7.5142889, 47.5047827 ], + [ 7.5140815, 47.504737 ], + [ 7.5139426, 47.5046964 ], + [ 7.5138546, 47.5046743 ], + [ 7.5138358, 47.5046705 ], + [ 7.5137219, 47.5046545 ], + [ 7.5132837, 47.5046069 ], + [ 7.5130985, 47.504569 ], + [ 7.5129119, 47.5045459 ], + [ 7.5128795, 47.5045437 ], + [ 7.5128297, 47.5045386 ], + [ 7.5124828, 47.504503 ], + [ 7.5124307, 47.5045001 ], + [ 7.5123915, 47.5045005 ], + [ 7.5122218, 47.5045124 ], + [ 7.5120315, 47.5045566 ], + [ 7.5119161, 47.5045775 ], + [ 7.5118227, 47.5046115 ], + [ 7.5116268, 47.5046699 ], + [ 7.5115379, 47.5047077 ], + [ 7.5113262, 47.5047696 ], + [ 7.5111448, 47.5047874 ], + [ 7.5110568, 47.5047945 ], + [ 7.5109438, 47.504791 ], + [ 7.5108331, 47.5047906 ], + [ 7.5105265, 47.5048013 ], + [ 7.5099746, 47.5047868 ], + [ 7.5099716, 47.5048002 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns134", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Mühleteich", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Mühleteich", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Mühleteich", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Mühleteich", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6654389, 47.4989056 ], + [ 7.6654022, 47.4986685 ], + [ 7.6653143, 47.4981748 ], + [ 7.6652487, 47.4978554 ], + [ 7.6651045, 47.4975459 ], + [ 7.6650396, 47.4974008 ], + [ 7.6650252, 47.4973863 ], + [ 7.6649033, 47.4972751 ], + [ 7.6647528, 47.4971689 ], + [ 7.6645019, 47.4969661 ], + [ 7.6644661, 47.4969516 ], + [ 7.6640863, 47.4966571 ], + [ 7.6636922, 47.4963867 ], + [ 7.6634559, 47.4962516 ], + [ 7.6632701, 47.4961691 ], + [ 7.6631407, 47.4961373 ], + [ 7.6631165, 47.4961316 ], + [ 7.6630035, 47.4961038 ], + [ 7.6628553, 47.4961172 ], + [ 7.6626483, 47.4961515 ], + [ 7.6622985, 47.4962199 ], + [ 7.6620845, 47.4962785 ], + [ 7.6618277, 47.4963806 ], + [ 7.6618278, 47.4963903 ], + [ 7.6616212, 47.4965408 ], + [ 7.6615576, 47.496691 ], + [ 7.661501, 47.4968315 ], + [ 7.6614802, 47.4969768 ], + [ 7.6614739, 47.4971704 ], + [ 7.6615103, 47.4973447 ], + [ 7.6616181999999995, 47.4975284 ], + [ 7.661755, 47.4977654 ], + [ 7.6618703, 47.4980121 ], + [ 7.661986, 47.498341 ], + [ 7.6620443, 47.4986266 ], + [ 7.6620808, 47.498796 ], + [ 7.6620454, 47.4988832 ], + [ 7.6619744, 47.4989898 ], + [ 7.6620653, 47.4990166 ], + [ 7.6621732, 47.4990484 ], + [ 7.6623717, 47.4991498 ], + [ 7.6626866, 47.4993405 ], + [ 7.6629195, 47.499477 ], + [ 7.6631824, 47.499688 ], + [ 7.6633852000000005, 47.4998053 ], + [ 7.6642372, 47.5002297 ], + [ 7.6648027, 47.50049 ], + [ 7.6649528, 47.5005139 ], + [ 7.6650814, 47.500504 ], + [ 7.665174, 47.5004408 ], + [ 7.6652235, 47.5003342 ], + [ 7.6653142, 47.4998257 ], + [ 7.6654326, 47.4991041 ], + [ 7.6654389, 47.4989056 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr008", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Stierewald", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Stierewald", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Stierewald", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Stierewald", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.874399, 46.166768 ], + [ 8.8857343, 46.166841 ], + [ 8.8856445, 46.1659919 ], + [ 8.8856985, 46.1650024 ], + [ 8.8857473, 46.1643548 ], + [ 8.8880379, 46.1597296 ], + [ 8.8851921, 46.1591975 ], + [ 8.8827465, 46.158716 ], + [ 8.8802042, 46.1583472 ], + [ 8.8775025, 46.1580209 ], + [ 8.874584, 46.1577675 ], + [ 8.8727666, 46.1576376 ], + [ 8.871412, 46.1614661 ], + [ 8.8720901, 46.1615502 ], + [ 8.8719773, 46.1638585 ], + [ 8.8719759, 46.1649364 ], + [ 8.8718865, 46.166458 ], + [ 8.874399, 46.166768 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZL002", + "country" : "CHE", + "name" : [ + { + "text" : "LSZL Locarno (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSZL Locarno (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSZL Locarno (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSZL Locarno (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Special Flight Office (SFO)", + "lang" : "de-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "fr-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "it-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "en-GB" + } + ], + "siteURL" : "https://skyguide.ch/services/special-flights", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.0636422, 46.9874585 ], + [ 7.0636378, 46.9873172 ], + [ 7.0636226, 46.9871763 ], + [ 7.0635966, 46.9870362 ], + [ 7.06356, 46.9868971 ], + [ 7.0635127, 46.9867596 ], + [ 7.063455, 46.9866239 ], + [ 7.0633871, 46.9864905 ], + [ 7.063309, 46.9863598 ], + [ 7.063221, 46.9862319 ], + [ 7.0631233, 46.9861075 ], + [ 7.0630163, 46.9859866 ], + [ 7.0629002, 46.9858698 ], + [ 7.0627753, 46.9857573 ], + [ 7.062642, 46.9856495 ], + [ 7.0625006, 46.9855465 ], + [ 7.0623515, 46.9854488 ], + [ 7.0621952, 46.9853565 ], + [ 7.062032, 46.98527 ], + [ 7.0618624, 46.9851894 ], + [ 7.0616869, 46.985115 ], + [ 7.061506, 46.985047 ], + [ 7.0613201, 46.9849855 ], + [ 7.0611297, 46.9849308 ], + [ 7.0609354, 46.984882999999996 ], + [ 7.0607378, 46.9848422 ], + [ 7.0605373, 46.9848086 ], + [ 7.0603344, 46.9847822 ], + [ 7.0601299, 46.9847631 ], + [ 7.0599242, 46.9847513 ], + [ 7.0597178, 46.9847469 ], + [ 7.0595114, 46.9847499 ], + [ 7.0593055, 46.9847603 ], + [ 7.0591007, 46.9847781 ], + [ 7.0588976, 46.9848032 ], + [ 7.0586966, 46.9848355 ], + [ 7.0584983, 46.984875 ], + [ 7.0583034, 46.9849215 ], + [ 7.0581123, 46.9849749 ], + [ 7.0579255, 46.9850351 ], + [ 7.0577436, 46.9851019 ], + [ 7.0575671, 46.9851751 ], + [ 7.0573964, 46.9852546 ], + [ 7.057232, 46.9853401 ], + [ 7.0570743, 46.9854313 ], + [ 7.0569239, 46.985528 ], + [ 7.056781, 46.98563 ], + [ 7.0566462, 46.985737 ], + [ 7.0565197, 46.9858487 ], + [ 7.0564019, 46.9859647 ], + [ 7.0562932, 46.9860848 ], + [ 7.0561938, 46.9862087 ], + [ 7.056104, 46.9863359 ], + [ 7.0560241, 46.9864661 ], + [ 7.0559542, 46.9865991 ], + [ 7.0558946, 46.9867344 ], + [ 7.0558455, 46.9868716 ], + [ 7.0558068, 46.9870104 ], + [ 7.0557789, 46.9871503 ], + [ 7.0557617, 46.9872911 ], + [ 7.0557553, 46.9874323 ], + [ 7.0557597, 46.9875736 ], + [ 7.0557749, 46.9877145 ], + [ 7.0558008, 46.9878547 ], + [ 7.0558374, 46.9879937 ], + [ 7.0558846, 46.9881312 ], + [ 7.0559423, 46.9882669 ], + [ 7.0560103, 46.9884003 ], + [ 7.0560884, 46.9885311 ], + [ 7.0561763, 46.9886589 ], + [ 7.056274, 46.9887834 ], + [ 7.056381, 46.9889042 ], + [ 7.0564971, 46.989021 ], + [ 7.056622, 46.9891335 ], + [ 7.0567553, 46.9892414 ], + [ 7.0568967, 46.9893444 ], + [ 7.0570458, 46.9894421 ], + [ 7.0572021, 46.9895344 ], + [ 7.0573653, 46.989621 ], + [ 7.0575349, 46.9897015 ], + [ 7.0577104, 46.9897759 ], + [ 7.0578914, 46.989844 ], + [ 7.0580773, 46.9899054 ], + [ 7.0582676, 46.9899601 ], + [ 7.0584619, 46.9900079 ], + [ 7.0586596, 46.9900487 ], + [ 7.0588601, 46.9900823 ], + [ 7.059063, 46.9901088 ], + [ 7.0592675, 46.9901279 ], + [ 7.0594733, 46.9901397 ], + [ 7.0596797, 46.990144 ], + [ 7.0598861, 46.990141 ], + [ 7.060092, 46.9901306 ], + [ 7.0602968, 46.9901129 ], + [ 7.0605, 46.9900878 ], + [ 7.060701, 46.9900555 ], + [ 7.0608993, 46.990016 ], + [ 7.0610942, 46.9899695 ], + [ 7.0612853, 46.989916 ], + [ 7.0614721, 46.9898558 ], + [ 7.061654, 46.989789 ], + [ 7.0618306, 46.9897158 ], + [ 7.0620013, 46.9896363 ], + [ 7.0621657, 46.9895508 ], + [ 7.0623234, 46.9894596 ], + [ 7.0624738, 46.9893629 ], + [ 7.0626166, 46.9892608 ], + [ 7.0627515, 46.9891539 ], + [ 7.0628779, 46.9890422 ], + [ 7.0629957, 46.9889261 ], + [ 7.0631044, 46.988806 ], + [ 7.0632038, 46.9886822 ], + [ 7.0632936, 46.988555 ], + [ 7.0633735, 46.9884247 ], + [ 7.0634434, 46.9882917 ], + [ 7.0635029, 46.9881565 ], + [ 7.0635521, 46.9880193 ], + [ 7.0635907, 46.9878805 ], + [ 7.0636186, 46.9877405 ], + [ 7.0636358, 46.9875997 ], + [ 7.0636422, 46.9874585 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "WIT0001", + "country" : "CHE", + "name" : [ + { + "text" : "JVA Witzwil", + "lang" : "de-CH" + }, + { + "text" : "JVA Witzwil", + "lang" : "fr-CH" + }, + { + "text" : "JVA Witzwil", + "lang" : "it-CH" + }, + { + "text" : "JVA Witzwil", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "JVA Witzwil", + "lang" : "de-CH" + }, + { + "text" : "JVA Witzwil", + "lang" : "fr-CH" + }, + { + "text" : "JVA Witzwil", + "lang" : "it-CH" + }, + { + "text" : "JVA Witzwil", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Leitung Infrastruktur", + "lang" : "de-CH" + }, + { + "text" : "Leitung Infrastruktur", + "lang" : "fr-CH" + }, + { + "text" : "Leitung Infrastruktur", + "lang" : "it-CH" + }, + { + "text" : "Leitung Infrastruktur", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Ralph Zurbuchen", + "lang" : "de-CH" + }, + { + "text" : "Ralph Zurbuchen", + "lang" : "fr-CH" + }, + { + "text" : "Ralph Zurbuchen", + "lang" : "it-CH" + }, + { + "text" : "Ralph Zurbuchen", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ajv.sid.be.ch/de/start/themen/erwachsenen--und-jugendvollzug/justizvollzugsanstalt-witzwil.html", + "email" : "jva.witzwil@be.ch", + "phone" : "0041316356511", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5409546, 47.543334 ], + [ 7.5408552, 47.5434121 ], + [ 7.5423064, 47.5440835 ], + [ 7.5423813, 47.5440025 ], + [ 7.5409546, 47.543334 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns264", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Allschwilerwald", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Allschwilerwald", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Allschwilerwald", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Allschwilerwald", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.3470549, 47.4354782 ], + [ 7.3471778, 47.4354568 ], + [ 7.3473362, 47.4354586 ], + [ 7.3475734, 47.4354406 ], + [ 7.3477834, 47.435373 ], + [ 7.3479453, 47.4353377 ], + [ 7.3480123, 47.4353262 ], + [ 7.3481725, 47.4353092 ], + [ 7.3482775, 47.4353167 ], + [ 7.3485425, 47.4353499 ], + [ 7.3488075, 47.4353959 ], + [ 7.3490248, 47.4354274 ], + [ 7.3491227, 47.4354278 ], + [ 7.3492196, 47.4354113 ], + [ 7.3493002, 47.4353792 ], + [ 7.3494351, 47.4353213 ], + [ 7.349611, 47.4352851 ], + [ 7.3497682, 47.4352761 ], + [ 7.3498741, 47.4352559 ], + [ 7.3498727, 47.4352522 ], + [ 7.349813, 47.4350875 ], + [ 7.3500438, 47.4349507 ], + [ 7.3504101, 47.4347029 ], + [ 7.3505318, 47.4345661 ], + [ 7.350527, 47.4342941 ], + [ 7.3504826, 47.4341499 ], + [ 7.3504648, 47.4341121 ], + [ 7.3504639, 47.434063 ], + [ 7.3504227, 47.4340255 ], + [ 7.350379, 47.4339189 ], + [ 7.3503413, 47.4338615 ], + [ 7.3503091, 47.4337995 ], + [ 7.3502971, 47.4337414 ], + [ 7.3502955, 47.4337333 ], + [ 7.3502071, 47.4334786 ], + [ 7.35015, 47.4333457 ], + [ 7.3500554, 47.4331432 ], + [ 7.3499613, 47.4330479 ], + [ 7.3499495, 47.432899 ], + [ 7.3499404, 47.432807 ], + [ 7.3498039, 47.4325976 ], + [ 7.3498095, 47.4325057 ], + [ 7.3498096, 47.4325036 ], + [ 7.3498071, 47.4325002 ], + [ 7.3497956, 47.4324851 ], + [ 7.3497240999999995, 47.4323909 ], + [ 7.3496251, 47.4322805 ], + [ 7.349535, 47.4321598 ], + [ 7.3494877, 47.432066 ], + [ 7.3494216, 47.4320101 ], + [ 7.3493625, 47.4319331 ], + [ 7.3493458, 47.4318511 ], + [ 7.3493688, 47.4318503 ], + [ 7.3493933, 47.4319247 ], + [ 7.3494477, 47.4319991 ], + [ 7.3495118999999995, 47.4320548 ], + [ 7.3495655, 47.4321525 ], + [ 7.3496528, 47.432272 ], + [ 7.3497424, 47.4323818 ], + [ 7.3498418, 47.4325048 ], + [ 7.3498402, 47.4325746 ], + [ 7.3498399, 47.4325849 ], + [ 7.3498567, 47.4326118 ], + [ 7.34998, 47.4328091 ], + [ 7.3499788, 47.4328862 ], + [ 7.3499786, 47.432900599999996 ], + [ 7.3499829, 47.4330405 ], + [ 7.3500949, 47.4331489 ], + [ 7.3501750999999995, 47.4333413 ], + [ 7.3502534, 47.4334742 ], + [ 7.3503346, 47.4337158 ], + [ 7.3503357, 47.4337232 ], + [ 7.3503691, 47.4337075 ], + [ 7.350481, 47.4336996 ], + [ 7.3506314, 47.4337939 ], + [ 7.3507521, 47.4338688 ], + [ 7.3508151999999995, 47.4339118 ], + [ 7.350952, 47.4339873 ], + [ 7.3509723, 47.4340014 ], + [ 7.351012, 47.4340267 ], + [ 7.35142, 47.4341649 ], + [ 7.3516296, 47.4341758 ], + [ 7.3516186, 47.4342887 ], + [ 7.3513825, 47.4343941 ], + [ 7.3514385, 47.4344849 ], + [ 7.351734, 47.4343704 ], + [ 7.3519891, 47.4342638 ], + [ 7.3523002, 47.4341596 ], + [ 7.3527008, 47.4341404 ], + [ 7.3531006, 47.4340822 ], + [ 7.3533981, 47.434027 ], + [ 7.3537928, 47.4340511 ], + [ 7.3541304, 47.4340359 ], + [ 7.3543581, 47.4340121 ], + [ 7.3545955, 47.433956 ], + [ 7.3547953, 47.4339085 ], + [ 7.3549858, 47.4339037 ], + [ 7.3551233, 47.4339033 ], + [ 7.3551874999999995, 47.4338356 ], + [ 7.3553128, 47.4336412 ], + [ 7.3553183, 47.4335977 ], + [ 7.3552917, 47.4335462 ], + [ 7.3552987, 47.4335074 ], + [ 7.3552911, 47.4333794 ], + [ 7.3551635, 47.4334197 ], + [ 7.355173, 47.4336495 ], + [ 7.3550404, 47.4336291 ], + [ 7.3550073, 47.4335399 ], + [ 7.3549195, 47.433428 ], + [ 7.3548478, 47.4332517 ], + [ 7.3550204, 47.4332136 ], + [ 7.3549882, 47.432964 ], + [ 7.3548705, 47.4327719 ], + [ 7.3547133, 47.4325265 ], + [ 7.3546192999999995, 47.4325074 ], + [ 7.3545438, 47.4322383 ], + [ 7.3544778, 47.4320008 ], + [ 7.3544614, 47.4318453 ], + [ 7.3544911, 47.4317094 ], + [ 7.3544353000000005, 47.431573 ], + [ 7.3543434, 47.4313806 ], + [ 7.3542624, 47.4311902 ], + [ 7.3540981, 47.4312395 ], + [ 7.354057, 47.4312518 ], + [ 7.3536788, 47.4313535 ], + [ 7.3533153, 47.4314513 ], + [ 7.3533005, 47.4314553 ], + [ 7.353312, 47.4315586 ], + [ 7.3532553, 47.4316026 ], + [ 7.353242, 47.4316896 ], + [ 7.3532993, 47.4318164 ], + [ 7.3532846, 47.4319132 ], + [ 7.3532639, 47.4320015 ], + [ 7.3531680999999995, 47.4323236 ], + [ 7.3527929, 47.4322731 ], + [ 7.3526254, 47.4322794 ], + [ 7.3526143, 47.432195899999996 ], + [ 7.3525684, 47.4321474 ], + [ 7.3524993, 47.432118 ], + [ 7.3524038, 47.4320933 ], + [ 7.3523322, 47.4320616 ], + [ 7.3522179, 47.4320614 ], + [ 7.3520219, 47.4320393 ], + [ 7.3519641, 47.4320275 ], + [ 7.3519239, 47.4320297 ], + [ 7.351805, 47.4319908 ], + [ 7.3517699, 47.4319782 ], + [ 7.3515841, 47.432201 ], + [ 7.3515654, 47.4322258 ], + [ 7.3514953, 47.4323395 ], + [ 7.3514086, 47.4324285 ], + [ 7.3513436, 47.432427 ], + [ 7.3511733, 47.4323568 ], + [ 7.3508752, 47.432198 ], + [ 7.3505248, 47.4320113 ], + [ 7.350429, 47.4319855 ], + [ 7.3503254, 47.4319575 ], + [ 7.3502931, 47.4320067 ], + [ 7.3502434, 47.4320328 ], + [ 7.3502137, 47.4320612 ], + [ 7.3501578, 47.4321147 ], + [ 7.3500869, 47.4321027 ], + [ 7.3500282, 47.432024 ], + [ 7.3499125, 47.4319436 ], + [ 7.349881, 47.4319128 ], + [ 7.3497684, 47.4318537 ], + [ 7.3497353, 47.4318078 ], + [ 7.3496542, 47.4317961 ], + [ 7.3494707, 47.4318349 ], + [ 7.3494053, 47.4317774 ], + [ 7.3493753, 47.4317176 ], + [ 7.3493235, 47.4316842 ], + [ 7.3492866, 47.4316941 ], + [ 7.3492607, 47.431775 ], + [ 7.3492589, 47.4317851 ], + [ 7.3492498, 47.431835 ], + [ 7.3492557, 47.431963 ], + [ 7.3492684, 47.432009 ], + [ 7.3493056, 47.4321429 ], + [ 7.3493271, 47.4322205 ], + [ 7.3493553, 47.4322796 ], + [ 7.3494142, 47.4324027 ], + [ 7.3494802, 47.4325959 ], + [ 7.3495167, 47.4327026 ], + [ 7.3495557, 47.4328165 ], + [ 7.3495674, 47.4328559 ], + [ 7.3496155, 47.4330179 ], + [ 7.349581, 47.4332713 ], + [ 7.349535, 47.4334533 ], + [ 7.3494585, 47.4335473 ], + [ 7.3494157, 47.4336394 ], + [ 7.3493824, 47.4337448 ], + [ 7.349416, 47.4339199 ], + [ 7.349469, 47.433981 ], + [ 7.34967, 47.4342385 ], + [ 7.349661, 47.4342651 ], + [ 7.3495478, 47.4343113 ], + [ 7.349543, 47.4343523 ], + [ 7.3495761, 47.4343864 ], + [ 7.3496459, 47.4344289 ], + [ 7.349648, 47.4344757 ], + [ 7.3495951, 47.4345514 ], + [ 7.3496016, 47.4345876 ], + [ 7.3496886, 47.4346072 ], + [ 7.3496667, 47.4347081 ], + [ 7.3493969, 47.4347751 ], + [ 7.3486524, 47.4347974 ], + [ 7.3484308, 47.4347863 ], + [ 7.3481449, 47.4347804 ], + [ 7.3475965, 47.4348098 ], + [ 7.3461179, 47.4348393 ], + [ 7.3460422, 47.434984299999996 ], + [ 7.3460003, 47.4353048 ], + [ 7.3459559, 47.4353792 ], + [ 7.3459786, 47.4354677 ], + [ 7.3460178, 47.4354776 ], + [ 7.3461277, 47.4354412 ], + [ 7.3462553, 47.4354232 ], + [ 7.3464012, 47.4354365 ], + [ 7.3465311, 47.4354165 ], + [ 7.3466533, 47.435415 ], + [ 7.3467611, 47.4354446 ], + [ 7.3468525, 47.4354511 ], + [ 7.3469067, 47.4354466 ], + [ 7.3469546, 47.4354595 ], + [ 7.3469571, 47.4354908 ], + [ 7.3469788, 47.4355159 ], + [ 7.3469928, 47.4355055 ], + [ 7.3470178, 47.4354945 ], + [ 7.3470549, 47.4354782 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr116", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Stägmatt", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Stägmatt", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Stägmatt", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Stägmatt", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.6158779, 46.9183007 ], + [ 6.6175496, 46.9187868 ], + [ 6.6175519, 46.9187853 ], + [ 6.6179431, 46.9188985 ], + [ 6.6179337, 46.9189974 ], + [ 6.6185523, 46.9194093 ], + [ 6.6188310999999995, 46.9187771 ], + [ 6.6182121, 46.9183396 ], + [ 6.6182142, 46.9183382 ], + [ 6.6124965, 46.9142997 ], + [ 6.6119315, 46.9146716 ], + [ 6.6152101, 46.9169925 ], + [ 6.6161424, 46.9176612 ], + [ 6.615987, 46.9180361 ], + [ 6.6158779, 46.9183007 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSTO002", + "country" : "CHE", + "name" : [ + { + "text" : "LSTO Môtiers (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSTO Môtiers (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSTO Môtiers (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSTO Môtiers (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Aéro-Club du Val-de-Travers", + "lang" : "de-CH" + }, + { + "text" : "Aéro-Club du Val-de-Travers", + "lang" : "fr-CH" + }, + { + "text" : "Aéro-Club du Val-de-Travers", + "lang" : "it-CH" + }, + { + "text" : "Aéro-Club du Val-de-Travers", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Chef d'aérodrome", + "lang" : "de-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "fr-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "it-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Alexandre Iseppi", + "lang" : "de-CH" + }, + { + "text" : "Alexandre Iseppi", + "lang" : "fr-CH" + }, + { + "text" : "Alexandre Iseppi", + "lang" : "it-CH" + }, + { + "text" : "Alexandre Iseppi", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.acvt.ch/dronesmodeles/", + "email" : "iseppi@acvt.ch", + "phone" : "0041328631555", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P02DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7356278, 47.5014806 ], + [ 7.7355776, 47.5012511 ], + [ 7.735575, 47.5012314 ], + [ 7.7355733, 47.5012116 ], + [ 7.7355725, 47.5011918 ], + [ 7.7355726, 47.501172 ], + [ 7.7355737, 47.5011522 ], + [ 7.7355756, 47.5011325 ], + [ 7.7355784, 47.5011127 ], + [ 7.7355821, 47.5010931 ], + [ 7.7355867, 47.5010735 ], + [ 7.7355922, 47.5010541 ], + [ 7.7357709, 47.5005007 ], + [ 7.7357969, 47.5004197 ], + [ 7.7358025999999995, 47.5004019 ], + [ 7.7358369, 47.5003614 ], + [ 7.7359074, 47.5002958 ], + [ 7.7359949, 47.5002587 ], + [ 7.7360813, 47.5002444 ], + [ 7.7361797, 47.5002372 ], + [ 7.7362195, 47.5002407 ], + [ 7.7363177, 47.5002494 ], + [ 7.7364578999999996, 47.5002617 ], + [ 7.7365695, 47.5002741 ], + [ 7.7366874, 47.5002897 ], + [ 7.736791, 47.5003068 ], + [ 7.7369064, 47.5003372 ], + [ 7.7370234, 47.5003685 ], + [ 7.7371423, 47.500401 ], + [ 7.7371958, 47.5004146 ], + [ 7.7381765, 47.4995294 ], + [ 7.7381958, 47.4995403 ], + [ 7.7382155, 47.4995507 ], + [ 7.7382358, 47.4995607 ], + [ 7.7382565, 47.4995703 ], + [ 7.7382777, 47.4995794 ], + [ 7.7382992999999995, 47.4995881 ], + [ 7.7383213, 47.4995962 ], + [ 7.7383437, 47.4996039 ], + [ 7.7383844, 47.4996185 ], + [ 7.7384255, 47.4996326 ], + [ 7.7384669, 47.4996463 ], + [ 7.7385087, 47.4996595 ], + [ 7.7385507, 47.4996722 ], + [ 7.7385931, 47.4996844 ], + [ 7.7386357, 47.4996962 ], + [ 7.7386786, 47.4997075 ], + [ 7.7387218, 47.4997184 ], + [ 7.7390031, 47.4997866 ], + [ 7.7390204, 47.4997912 ], + [ 7.7390374, 47.4997963 ], + [ 7.739054, 47.4998019 ], + [ 7.7390702000000005, 47.499808 ], + [ 7.7390859, 47.4998147 ], + [ 7.7391011, 47.4998219 ], + [ 7.7391158, 47.4998295 ], + [ 7.73913, 47.4998377 ], + [ 7.7391435, 47.4998462 ], + [ 7.7391565, 47.4998552 ], + [ 7.7391688, 47.4998646 ], + [ 7.7391804, 47.4998744 ], + [ 7.7391913, 47.4998846 ], + [ 7.7392015, 47.4998951 ], + [ 7.7392109, 47.4999059 ], + [ 7.7392196, 47.499917 ], + [ 7.7393003, 47.5000161 ], + [ 7.7393086, 47.5000257 ], + [ 7.7393168, 47.5000354 ], + [ 7.7393249, 47.500045 ], + [ 7.739333, 47.5000547 ], + [ 7.7393442, 47.5000674 ], + [ 7.7393562, 47.5000798 ], + [ 7.7393689, 47.5000919 ], + [ 7.7393824, 47.5001035 ], + [ 7.7393966, 47.5001148 ], + [ 7.7394115, 47.5001257 ], + [ 7.7394271, 47.5001361 ], + [ 7.7394433, 47.500146 ], + [ 7.73946, 47.5001555 ], + [ 7.7394774, 47.5001645 ], + [ 7.7394953, 47.500173 ], + [ 7.7395138, 47.500181 ], + [ 7.7395327, 47.5001885 ], + [ 7.739552, 47.5001954 ], + [ 7.7395718, 47.5002017 ], + [ 7.7395919, 47.5002075 ], + [ 7.7397221, 47.5002476 ], + [ 7.7397563, 47.5002567 ], + [ 7.7397908, 47.5002653 ], + [ 7.7398255, 47.5002733 ], + [ 7.7398605, 47.5002809 ], + [ 7.7398957, 47.500288 ], + [ 7.7399311, 47.5002945 ], + [ 7.7399667, 47.5003005 ], + [ 7.7400025, 47.5003061 ], + [ 7.7400385, 47.5003111 ], + [ 7.7404376, 47.5003542 ], + [ 7.7408198, 47.5003956 ], + [ 7.740884, 47.5004029 ], + [ 7.7409482, 47.5004102 ], + [ 7.7410125, 47.5004173 ], + [ 7.7410768, 47.5004243 ], + [ 7.7411282, 47.5004293 ], + [ 7.7411798, 47.5004339 ], + [ 7.7412314, 47.500438 ], + [ 7.7412831, 47.5004416 ], + [ 7.7413348, 47.5004447 ], + [ 7.7413866, 47.5004473 ], + [ 7.7414385, 47.5004494 ], + [ 7.7414818, 47.5004495 ], + [ 7.741525, 47.5004491 ], + [ 7.7415682, 47.5004482 ], + [ 7.7416114, 47.5004468 ], + [ 7.7416546, 47.500445 ], + [ 7.7416977, 47.5004427 ], + [ 7.7417407, 47.5004399 ], + [ 7.7422929, 47.5004002 ], + [ 7.7425315, 47.5003834 ], + [ 7.7426409, 47.5003765 ], + [ 7.7426446, 47.5003733 ], + [ 7.7427965, 47.5003665 ], + [ 7.742875, 47.5003615 ], + [ 7.7429534, 47.5003565 ], + [ 7.7430319, 47.5003515 ], + [ 7.743059, 47.5003495 ], + [ 7.7430861, 47.500347 ], + [ 7.7431131, 47.500344 ], + [ 7.7431399, 47.5003405 ], + [ 7.7431667, 47.5003366 ], + [ 7.7431932, 47.5003321 ], + [ 7.7432171, 47.5003276 ], + [ 7.7432408, 47.5003224 ], + [ 7.7432642, 47.5003167 ], + [ 7.7432873, 47.5003104 ], + [ 7.74331, 47.5003035 ], + [ 7.7433323, 47.500296 ], + [ 7.7433542, 47.500288 ], + [ 7.7433756, 47.5002794 ], + [ 7.7433966, 47.5002704 ], + [ 7.7434171, 47.5002608 ], + [ 7.743437, 47.5002507 ], + [ 7.7434765, 47.5002295 ], + [ 7.7435157, 47.5002081 ], + [ 7.7435544, 47.5001863 ], + [ 7.7435928, 47.5001642 ], + [ 7.7436336, 47.5001407 ], + [ 7.7436748, 47.5001175 ], + [ 7.7437165, 47.5000947 ], + [ 7.7437586, 47.5000723 ], + [ 7.7438011, 47.5000502 ], + [ 7.743844, 47.5000284 ], + [ 7.7439518, 47.4999852 ], + [ 7.7442323, 47.4998982 ], + [ 7.7442795, 47.4998841 ], + [ 7.7443271, 47.4998705 ], + [ 7.7443749, 47.4998574 ], + [ 7.7444231, 47.4998449 ], + [ 7.7444714999999995, 47.4998328 ], + [ 7.7445202, 47.4998213 ], + [ 7.7445692, 47.4998103 ], + [ 7.7445878, 47.4998075 ], + [ 7.7446066, 47.4998051 ], + [ 7.7446254, 47.4998031 ], + [ 7.7446444, 47.4998016 ], + [ 7.7446634, 47.4998005 ], + [ 7.7446824, 47.4997999 ], + [ 7.7447191, 47.4997712 ], + [ 7.744763, 47.4997647 ], + [ 7.7446117, 47.4995991 ], + [ 7.7445147, 47.4994789 ], + [ 7.7445083, 47.4994701 ], + [ 7.7444892, 47.4994434 ], + [ 7.7444389000000005, 47.4993828 ], + [ 7.7443907, 47.4993166 ], + [ 7.7443258, 47.4992378 ], + [ 7.7442823, 47.499178 ], + [ 7.7442585, 47.4991368 ], + [ 7.7442543, 47.4990992 ], + [ 7.7442434, 47.499016 ], + [ 7.7442367, 47.4989539 ], + [ 7.7442142, 47.4989043 ], + [ 7.7441772, 47.4988639 ], + [ 7.7441638, 47.4977582 ], + [ 7.7436899, 47.4977633 ], + [ 7.7432297, 47.4979553 ], + [ 7.7427531, 47.4981509 ], + [ 7.742687, 47.4981848 ], + [ 7.7426293, 47.4982144 ], + [ 7.7420279, 47.4985227 ], + [ 7.7414097, 47.4988673 ], + [ 7.7409994, 47.4990549 ], + [ 7.7405193, 47.4991709 ], + [ 7.7397762, 47.4990364 ], + [ 7.7389642, 47.4987225 ], + [ 7.7379669, 47.4982831 ], + [ 7.7379024, 47.498318 ], + [ 7.7377958, 47.498361 ], + [ 7.73771, 47.4983761 ], + [ 7.7376211999999995, 47.4983681 ], + [ 7.7375419, 47.4983428 ], + [ 7.7372851, 47.4982058 ], + [ 7.7372761, 47.4981973 ], + [ 7.7371177, 47.498298 ], + [ 7.7369647, 47.4984245 ], + [ 7.7368095, 47.4985929 ], + [ 7.7365826, 47.4987479 ], + [ 7.7359802, 47.4988684 ], + [ 7.7359858, 47.4992395 ], + [ 7.7359862, 47.499264 ], + [ 7.7359867, 47.4992951 ], + [ 7.7359868, 47.499301 ], + [ 7.7359889, 47.4993933 ], + [ 7.7356958, 47.4996383 ], + [ 7.7355624, 47.4998491 ], + [ 7.735465, 47.5001588 ], + [ 7.7355487, 47.5005553 ], + [ 7.7354906, 47.5006933 ], + [ 7.7354115, 47.5008619 ], + [ 7.735227, 47.5010134 ], + [ 7.7351987, 47.5010739 ], + [ 7.7352086, 47.5010807 ], + [ 7.7352389, 47.5011042 ], + [ 7.7352685, 47.5011281 ], + [ 7.7352973, 47.5011524 ], + [ 7.7353254, 47.5011771 ], + [ 7.7353527, 47.5012022 ], + [ 7.7353793, 47.5012277 ], + [ 7.735405, 47.5012536 ], + [ 7.73543, 47.5012798 ], + [ 7.7354541, 47.5013064 ], + [ 7.7354775, 47.5013333 ], + [ 7.7355144, 47.5013704 ], + [ 7.7355518, 47.5014073 ], + [ 7.7355896, 47.5014441 ], + [ 7.7356278, 47.5014806 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns027", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Hümpeli", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Hümpeli", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Hümpeli", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Hümpeli", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7666374, 47.4486249 ], + [ 7.7666509, 47.4486236 ], + [ 7.7666645, 47.4486229 ], + [ 7.7666781, 47.4486228 ], + [ 7.7666917, 47.4486233 ], + [ 7.7667053, 47.4486244 ], + [ 7.7667187, 47.4486261 ], + [ 7.7667319, 47.4486284 ], + [ 7.7667449, 47.4486312 ], + [ 7.7667575, 47.4486346 ], + [ 7.7667699, 47.4486385 ], + [ 7.7667818, 47.4486429 ], + [ 7.7667933, 47.4486479 ], + [ 7.7668043, 47.4486534 ], + [ 7.7668148, 47.4486593 ], + [ 7.7668246, 47.4486657 ], + [ 7.767016, 47.4487935 ], + [ 7.7671776999999995, 47.4489293 ], + [ 7.767254, 47.4490046 ], + [ 7.7672156999999995, 47.4490224 ], + [ 7.7676169, 47.4494185 ], + [ 7.7678281, 47.4492758 ], + [ 7.7683599, 47.4494856 ], + [ 7.7690145, 47.4495284 ], + [ 7.7692542, 47.4494943 ], + [ 7.7692795, 47.4492764 ], + [ 7.7691169, 47.4493333 ], + [ 7.7690028, 47.4492529 ], + [ 7.7686081, 47.4491872 ], + [ 7.7685566999999995, 47.448934 ], + [ 7.768439, 47.4488966 ], + [ 7.7682907, 47.4487822 ], + [ 7.7679962, 47.448598 ], + [ 7.7678721, 47.4485096 ], + [ 7.7673938, 47.4480838 ], + [ 7.7672887, 47.447993 ], + [ 7.7671363, 47.4479191 ], + [ 7.7671107, 47.4479071 ], + [ 7.7668874, 47.4478415 ], + [ 7.7668777, 47.4481125 ], + [ 7.7665992, 47.448185 ], + [ 7.7667293, 47.4485614 ], + [ 7.7666374, 47.4486249 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns303", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Bodenrüti", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Bodenrüti", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Bodenrüti", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Bodenrüti", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.6783003, 46.8127191 ], + [ 8.6404521, 46.8019678 ], + [ 8.621592, 46.826095 ], + [ 8.6074946, 46.8650142 ], + [ 8.6304739, 46.8780017 ], + [ 8.6612368, 46.8749782 ], + [ 8.655054, 46.8394184 ], + [ 8.6783003, 46.8127191 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSXE001", + "country" : "CHE", + "name" : [ + { + "text" : "LSXE Erstfeld", + "lang" : "de-CH" + }, + { + "text" : "LSXE Erstfeld", + "lang" : "fr-CH" + }, + { + "text" : "LSXE Erstfeld", + "lang" : "it-CH" + }, + { + "text" : "LSXE Erstfeld", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swiss Helicopter AG", + "lang" : "de-CH" + }, + { + "text" : "Swiss Helicopter AG", + "lang" : "fr-CH" + }, + { + "text" : "Swiss Helicopter AG", + "lang" : "it-CH" + }, + { + "text" : "Swiss Helicopter AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Basis Erstfeld", + "lang" : "de-CH" + }, + { + "text" : "Basis Erstfeld", + "lang" : "fr-CH" + }, + { + "text" : "Basis Erstfeld", + "lang" : "it-CH" + }, + { + "text" : "Basis Erstfeld", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Markus Lerch", + "lang" : "de-CH" + }, + { + "text" : "Markus Lerch", + "lang" : "fr-CH" + }, + { + "text" : "Markus Lerch", + "lang" : "it-CH" + }, + { + "text" : "Markus Lerch", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swisshelicopter.ch/en/about-us/helicopter-bases/erstfeld", + "email" : "markus.lerch@swisshelicopter.ch", + "phone" : "0041418820050", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P02DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.1944183, 46.9741314 ], + [ 7.1944135, 46.9739901 ], + [ 7.194398, 46.9738493 ], + [ 7.1943717, 46.9737091 ], + [ 7.1943347, 46.9735701 ], + [ 7.1942871, 46.9734327 ], + [ 7.1942291, 46.973297099999996 ], + [ 7.1941608, 46.9731638 ], + [ 7.1940825, 46.9730331 ], + [ 7.1939942, 46.9729054 ], + [ 7.1938963, 46.972781 ], + [ 7.193789, 46.9726603 ], + [ 7.1936726, 46.9725436 ], + [ 7.1935475, 46.9724313 ], + [ 7.1934139, 46.9723235 ], + [ 7.1932723, 46.9722208 ], + [ 7.193123, 46.9721232 ], + [ 7.1929665, 46.9720311 ], + [ 7.1928032, 46.9719447 ], + [ 7.1926334, 46.9718644 ], + [ 7.1924578, 46.9717901 ], + [ 7.1922767, 46.9717223 ], + [ 7.1920907, 46.9716611 ], + [ 7.1919003, 46.9716066 ], + [ 7.1917059, 46.9715591 ], + [ 7.1915082, 46.9715185 ], + [ 7.1913077, 46.9714851 ], + [ 7.1911048, 46.9714589 ], + [ 7.1909003, 46.97144 ], + [ 7.1906946, 46.9714285 ], + [ 7.1904883, 46.9714243 ], + [ 7.1902819000000004, 46.9714276 ], + [ 7.1900761, 46.9714382 ], + [ 7.1898714, 46.9714562 ], + [ 7.1896684, 46.9714815 ], + [ 7.1894675, 46.9715141 ], + [ 7.1892694, 46.9715538 ], + [ 7.1890747, 46.9716005 ], + [ 7.1888837, 46.9716541 ], + [ 7.1886971, 46.9717146 ], + [ 7.1885154, 46.9717816 ], + [ 7.1883391, 46.971855 ], + [ 7.1881686, 46.9719347 ], + [ 7.1880045, 46.9720203 ], + [ 7.1878471, 46.9721117 ], + [ 7.1876969, 46.9722086 ], + [ 7.1875544, 46.9723108 ], + [ 7.1874198, 46.972417899999996 ], + [ 7.1872937, 46.9725297 ], + [ 7.1871762, 46.9726459 ], + [ 7.1870678, 46.9727661 ], + [ 7.1869686999999995, 46.9728901 ], + [ 7.1868793, 46.9730174 ], + [ 7.1867997, 46.9731478 ], + [ 7.1867301, 46.9732808 ], + [ 7.1866709, 46.9734161 ], + [ 7.1866221, 46.9735534 ], + [ 7.1865838, 46.9736922 ], + [ 7.1865562, 46.9738322 ], + [ 7.1865393, 46.973973 ], + [ 7.1865333, 46.9741142 ], + [ 7.186538, 46.9742555 ], + [ 7.1865535, 46.9743964 ], + [ 7.1865798, 46.9745365 ], + [ 7.1866168, 46.9746755 ], + [ 7.1866643, 46.974813 ], + [ 7.1867223, 46.9749486 ], + [ 7.1867906, 46.9750819 ], + [ 7.1868689, 46.9752126 ], + [ 7.1869572, 46.9753403 ], + [ 7.1870551, 46.9754647 ], + [ 7.1871624, 46.9755854 ], + [ 7.1872788, 46.9757021 ], + [ 7.1874039, 46.9758144 ], + [ 7.1875374, 46.9759221 ], + [ 7.187679, 46.9760249 ], + [ 7.1878283, 46.9761225 ], + [ 7.1879848, 46.9762146 ], + [ 7.1881482, 46.976301 ], + [ 7.1883179, 46.9763814 ], + [ 7.1884936, 46.9764556 ], + [ 7.1886747, 46.9765234 ], + [ 7.1888607, 46.9765846 ], + [ 7.1890511, 46.9766391 ], + [ 7.1892455, 46.9766867 ], + [ 7.1894432, 46.9767272 ], + [ 7.1896438, 46.9767606 ], + [ 7.1898466, 46.9767868 ], + [ 7.1900512, 46.9768057 ], + [ 7.1902569, 46.9768173 ], + [ 7.1904632, 46.9768214 ], + [ 7.1906696, 46.9768182 ], + [ 7.1908754, 46.9768075 ], + [ 7.1910802, 46.9767895 ], + [ 7.1912833, 46.9767642 ], + [ 7.1914841, 46.9767317 ], + [ 7.1916822, 46.976692 ], + [ 7.191877, 46.9766452 ], + [ 7.192068, 46.9765916 ], + [ 7.1922545, 46.9765312 ], + [ 7.1924363, 46.9764641 ], + [ 7.1926126, 46.9763907 ], + [ 7.1927831, 46.976311 ], + [ 7.1929472, 46.9762254 ], + [ 7.1931046, 46.976134 ], + [ 7.1932548, 46.9760371 ], + [ 7.1933973, 46.9759349 ], + [ 7.1935319, 46.975827699999996 ], + [ 7.1936581, 46.9757159 ], + [ 7.1937755, 46.9755997 ], + [ 7.1938839, 46.9754795 ], + [ 7.193983, 46.9753556 ], + [ 7.1940724, 46.9752282 ], + [ 7.194152, 46.9750979 ], + [ 7.1942215, 46.9749649 ], + [ 7.1942807, 46.9748295 ], + [ 7.1943296, 46.9746923 ], + [ 7.1943678, 46.9745534 ], + [ 7.1943954, 46.9744134 ], + [ 7.1944122, 46.9742726 ], + [ 7.1944183, 46.9741314 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0058", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Kerzers", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Kerzers", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Kerzers", + "lang" : "it-CH" + }, + { + "text" : "Substation Kerzers", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8509813, 47.4530381 ], + [ 7.8508402, 47.4532125 ], + [ 7.8508498, 47.4532254 ], + [ 7.8507368, 47.4533417 ], + [ 7.8505567, 47.4534616 ], + [ 7.8501192, 47.4535106 ], + [ 7.8498861, 47.4535565 ], + [ 7.8499415, 47.4536408 ], + [ 7.8499722, 47.4537175 ], + [ 7.8500897, 47.4538408 ], + [ 7.8501468, 47.4540102 ], + [ 7.8502668, 47.4541174 ], + [ 7.8503785, 47.454140699999996 ], + [ 7.8507035, 47.4541163 ], + [ 7.8507748, 47.4541004 ], + [ 7.8510717, 47.454227 ], + [ 7.851165, 47.4541156 ], + [ 7.8514459, 47.453683 ], + [ 7.8516791999999995, 47.4534677 ], + [ 7.8517218, 47.4534399 ], + [ 7.8519543, 47.4532713 ], + [ 7.852449, 47.452979 ], + [ 7.852675, 47.452807 ], + [ 7.8526831, 47.4527951 ], + [ 7.8527404, 47.4527106 ], + [ 7.8527575, 47.4526854 ], + [ 7.8527578, 47.4526847 ], + [ 7.8527636, 47.4526721 ], + [ 7.8527733, 47.452662 ], + [ 7.8528054, 47.4526147 ], + [ 7.8528435, 47.4525318 ], + [ 7.8530066, 47.4521768 ], + [ 7.8529222, 47.452075 ], + [ 7.8529663, 47.4519828 ], + [ 7.8528152, 47.4519882 ], + [ 7.8525127999999995, 47.4521632 ], + [ 7.8521347, 47.45239 ], + [ 7.8518512, 47.4525649 ], + [ 7.8515581999999995, 47.4527334 ], + [ 7.8513217, 47.4528501 ], + [ 7.8511134, 47.4529346 ], + [ 7.8509813, 47.4530381 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr082", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Frändlede", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Frändlede", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Frändlede", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Frändlede", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 5.9665097, 46.1461255 ], + [ 5.9656838, 46.1469506 ], + [ 5.9656841, 46.1469509 ], + [ 5.965689, 46.1469554 ], + [ 5.9656938, 46.14696 ], + [ 5.9656987, 46.1469645 ], + [ 5.9657036, 46.146969 ], + [ 5.9657085, 46.1469736 ], + [ 5.9657134, 46.1469781 ], + [ 5.9657183, 46.1469826 ], + [ 5.9657232, 46.1469871 ], + [ 5.9657282, 46.1469917 ], + [ 5.9657331, 46.1469962 ], + [ 5.9657381, 46.1470007 ], + [ 5.965743, 46.1470052 ], + [ 5.965748, 46.1470097 ], + [ 5.9657529, 46.1470142 ], + [ 5.9657579, 46.1470187 ], + [ 5.9657629, 46.1470231 ], + [ 5.9657678999999995, 46.1470276 ], + [ 5.9657729, 46.1470321 ], + [ 5.9657779, 46.1470366 ], + [ 5.9657829, 46.147041 ], + [ 5.965788, 46.1470455 ], + [ 5.965793, 46.14705 ], + [ 5.9657979999999995, 46.1470544 ], + [ 5.9658031, 46.1470589 ], + [ 5.9658081, 46.1470633 ], + [ 5.9658131999999995, 46.1470677 ], + [ 5.9658183, 46.1470722 ], + [ 5.9658234, 46.1470766 ], + [ 5.9658285, 46.147081 ], + [ 5.9658336, 46.1470855 ], + [ 5.9658387, 46.1470899 ], + [ 5.9658438, 46.1470943 ], + [ 5.9658489, 46.1470987 ], + [ 5.965854, 46.1471031 ], + [ 5.9658592, 46.1471075 ], + [ 5.9658643, 46.1471119 ], + [ 5.9658695, 46.1471163 ], + [ 5.9658747, 46.1471207 ], + [ 5.9658798, 46.1471251 ], + [ 5.9665059, 46.1476548 ], + [ 5.9665087, 46.1476572 ], + [ 5.9665115, 46.1476596 ], + [ 5.9665143, 46.147662 ], + [ 5.9665171, 46.1476644 ], + [ 5.9665199, 46.1476668 ], + [ 5.9665227, 46.1476693 ], + [ 5.9665254999999995, 46.1476717 ], + [ 5.9665282, 46.1476741 ], + [ 5.966531, 46.1476765 ], + [ 5.9665338, 46.147679 ], + [ 5.9665365, 46.1476814 ], + [ 5.9665392, 46.1476839 ], + [ 5.966542, 46.1476863 ], + [ 5.9665447, 46.1476888 ], + [ 5.9665474, 46.1476912 ], + [ 5.9665501, 46.1476937 ], + [ 5.9665528, 46.1476962 ], + [ 5.9665555, 46.1476986 ], + [ 5.9665582, 46.1477011 ], + [ 5.9665609, 46.1477036 ], + [ 5.9665634999999995, 46.1477061 ], + [ 5.9665662, 46.1477086 ], + [ 5.9665688, 46.1477111 ], + [ 5.9665715, 46.1477136 ], + [ 5.9665741, 46.1477161 ], + [ 5.9665767, 46.1477186 ], + [ 5.9665793, 46.1477211 ], + [ 5.9665818999999995, 46.1477236 ], + [ 5.9665845, 46.1477261 ], + [ 5.9665871, 46.1477286 ], + [ 5.9665897, 46.1477312 ], + [ 5.9665923, 46.1477337 ], + [ 5.9665948, 46.1477362 ], + [ 5.9665973999999995, 46.1477388 ], + [ 5.9665999, 46.1477413 ], + [ 5.9666025, 46.1477438 ], + [ 5.9666049999999995, 46.1477464 ], + [ 5.9666075, 46.147749 ], + [ 5.96661, 46.1477515 ], + [ 5.9666125999999995, 46.1477541 ], + [ 5.966615, 46.1477567 ], + [ 5.9666175, 46.1477592 ], + [ 5.96662, 46.1477618 ], + [ 5.9666225, 46.1477644 ], + [ 5.966625, 46.147767 ], + [ 5.9666274, 46.1477695 ], + [ 5.9666299, 46.1477721 ], + [ 5.9666323, 46.1477747 ], + [ 5.9666347, 46.1477773 ], + [ 5.9666372, 46.1477799 ], + [ 5.9666396, 46.1477825 ], + [ 5.966642, 46.1477851 ], + [ 5.9666444, 46.1477878 ], + [ 5.9666467, 46.1477904 ], + [ 5.9666491, 46.147793 ], + [ 5.9666515, 46.1477956 ], + [ 5.9666538, 46.1477983 ], + [ 5.9666562, 46.1478009 ], + [ 5.9666585, 46.1478035 ], + [ 5.9666609, 46.1478062 ], + [ 5.9666632, 46.1478088 ], + [ 5.9666654999999995, 46.1478115 ], + [ 5.9666678, 46.1478141 ], + [ 5.9666701, 46.1478168 ], + [ 5.9666724, 46.1478194 ], + [ 5.9666747, 46.1478221 ], + [ 5.966677, 46.1478248 ], + [ 5.9666792, 46.1478274 ], + [ 5.9666815, 46.1478301 ], + [ 5.9666837, 46.1478328 ], + [ 5.966686, 46.1478355 ], + [ 5.9666882, 46.1478381 ], + [ 5.9666904, 46.1478408 ], + [ 5.9666926, 46.1478435 ], + [ 5.9666948, 46.1478462 ], + [ 5.966697, 46.1478489 ], + [ 5.9666992, 46.1478516 ], + [ 5.9667014, 46.1478543 ], + [ 5.9667034999999995, 46.147857 ], + [ 5.9667057, 46.1478597 ], + [ 5.9667078, 46.1478625 ], + [ 5.96671, 46.1478652 ], + [ 5.9667121, 46.1478679 ], + [ 5.9667142, 46.1478706 ], + [ 5.9667163, 46.1478734 ], + [ 5.9667183999999995, 46.1478761 ], + [ 5.9667205, 46.1478788 ], + [ 5.9667226, 46.1478816 ], + [ 5.9667247, 46.1478843 ], + [ 5.9667268, 46.1478871 ], + [ 5.9667288, 46.1478898 ], + [ 5.9667309, 46.1478926 ], + [ 5.9667329, 46.1478953 ], + [ 5.9667349, 46.1478981 ], + [ 5.966737, 46.1479008 ], + [ 5.966739, 46.1479036 ], + [ 5.966741, 46.1479064 ], + [ 5.966743, 46.1479091 ], + [ 5.9667449999999995, 46.1479119 ], + [ 5.9667469, 46.1479147 ], + [ 5.9667489, 46.1479175 ], + [ 5.9667509, 46.1479203 ], + [ 5.9667528, 46.147923 ], + [ 5.9667547, 46.1479258 ], + [ 5.9667566999999995, 46.1479286 ], + [ 5.9667586, 46.1479314 ], + [ 5.9667604999999995, 46.1479342 ], + [ 5.9667624, 46.147937 ], + [ 5.9667642999999995, 46.1479398 ], + [ 5.9667662, 46.1479427 ], + [ 5.9667680999999995, 46.1479455 ], + [ 5.9667699, 46.1479483 ], + [ 5.9667718, 46.1479511 ], + [ 5.9667736, 46.1479539 ], + [ 5.9667755, 46.1479567 ], + [ 5.9667773, 46.1479596 ], + [ 5.9667791, 46.1479624 ], + [ 5.9667809, 46.1479652 ], + [ 5.9667826999999996, 46.1479681 ], + [ 5.9667845, 46.1479709 ], + [ 5.9667863, 46.1479737 ], + [ 5.966788, 46.1479766 ], + [ 5.9667898, 46.1479794 ], + [ 5.9667916, 46.1479823 ], + [ 5.9667933, 46.1479851 ], + [ 5.966795, 46.147988 ], + [ 5.9667968, 46.1479909 ], + [ 5.9667985, 46.1479937 ], + [ 5.9668002, 46.1479966 ], + [ 5.9668019, 46.1479994 ], + [ 5.9668036, 46.1480023 ], + [ 5.9668052, 46.1480052 ], + [ 5.9668069, 46.1480081 ], + [ 5.9668086, 46.1480109 ], + [ 5.9668102, 46.1480138 ], + [ 5.9668118, 46.1480167 ], + [ 5.9668135, 46.1480196 ], + [ 5.9668151, 46.1480225 ], + [ 5.9668167, 46.1480254 ], + [ 5.9668183, 46.1480282 ], + [ 5.9668199, 46.1480311 ], + [ 5.9668215, 46.148034 ], + [ 5.966823, 46.1480369 ], + [ 5.9668246, 46.1480398 ], + [ 5.9668262, 46.1480428 ], + [ 5.9668277, 46.1480457 ], + [ 5.9668292, 46.1480486 ], + [ 5.9668308, 46.1480515 ], + [ 5.9668323, 46.1480544 ], + [ 5.9668338, 46.1480573 ], + [ 5.9668353, 46.1480602 ], + [ 5.9668368, 46.1480632 ], + [ 5.9668382, 46.1480661 ], + [ 5.9668396999999995, 46.148069 ], + [ 5.9668412, 46.1480719 ], + [ 5.9668426, 46.1480749 ], + [ 5.966844, 46.1480778 ], + [ 5.9668455, 46.1480807 ], + [ 5.9668469, 46.1480837 ], + [ 5.9668483, 46.1480866 ], + [ 5.9668497, 46.1480896 ], + [ 5.9668510999999995, 46.1480925 ], + [ 5.9668525, 46.1480955 ], + [ 5.9668538, 46.1480984 ], + [ 5.9668551999999995, 46.1481014 ], + [ 5.9668565000000005, 46.1481043 ], + [ 5.9668579, 46.1481073 ], + [ 5.9668592, 46.1481102 ], + [ 5.9668605, 46.1481132 ], + [ 5.9668618, 46.1481161 ], + [ 5.9668631, 46.1481191 ], + [ 5.9668644, 46.1481221 ], + [ 5.9668657, 46.148125 ], + [ 5.966867, 46.148128 ], + [ 5.9668682, 46.148131 ], + [ 5.9668695, 46.148134 ], + [ 5.9668707, 46.1481369 ], + [ 5.9668719, 46.1481399 ], + [ 5.9668732, 46.1481429 ], + [ 5.9668744, 46.1481459 ], + [ 5.9668756, 46.1481489 ], + [ 5.9668768, 46.1481519 ], + [ 5.9668779999999995, 46.1481548 ], + [ 5.9668791, 46.1481578 ], + [ 5.9668803, 46.1481608 ], + [ 5.9668814999999995, 46.1481638 ], + [ 5.9668826, 46.1481668 ], + [ 5.9668837, 46.1481698 ], + [ 5.9668848, 46.1481728 ], + [ 5.966886, 46.1481758 ], + [ 5.9668871, 46.1481788 ], + [ 5.9668881, 46.1481818 ], + [ 5.9668892, 46.1481848 ], + [ 5.9668903, 46.1481878 ], + [ 5.9668914, 46.1481908 ], + [ 5.9672997, 46.149352 ], + [ 5.9673009, 46.1493555 ], + [ 5.9673022, 46.1493589 ], + [ 5.9673034, 46.1493624 ], + [ 5.9673047, 46.1493658 ], + [ 5.9673058999999995, 46.1493692 ], + [ 5.9673072, 46.1493727 ], + [ 5.9673085, 46.1493761 ], + [ 5.9673096999999995, 46.1493796 ], + [ 5.967311, 46.149383 ], + [ 5.9673123, 46.1493864 ], + [ 5.9673136, 46.1493899 ], + [ 5.967315, 46.1493933 ], + [ 5.9673163, 46.1493967 ], + [ 5.9673177, 46.1494001 ], + [ 5.967319, 46.1494035 ], + [ 5.9673204, 46.149407 ], + [ 5.9673217, 46.1494104 ], + [ 5.9673231, 46.1494138 ], + [ 5.9673245, 46.1494172 ], + [ 5.9673259, 46.1494206 ], + [ 5.9673273, 46.149424 ], + [ 5.9673288, 46.1494274 ], + [ 5.9673302, 46.1494309 ], + [ 5.9673316, 46.1494343 ], + [ 5.9673331, 46.1494377 ], + [ 5.9673345, 46.1494411 ], + [ 5.9673359999999995, 46.1494445 ], + [ 5.9673375, 46.1494479 ], + [ 5.967339, 46.1494512 ], + [ 5.9673405, 46.1494546 ], + [ 5.967342, 46.149458 ], + [ 5.9673435, 46.1494614 ], + [ 5.967345, 46.1494648 ], + [ 5.9673465, 46.1494682 ], + [ 5.9673481, 46.1494716 ], + [ 5.9673497, 46.1494749 ], + [ 5.9673511999999995, 46.1494783 ], + [ 5.9673528, 46.1494817 ], + [ 5.9673544, 46.1494851 ], + [ 5.967356, 46.1494884 ], + [ 5.9673576, 46.1494918 ], + [ 5.9673592, 46.1494952 ], + [ 5.9673608, 46.1494985 ], + [ 5.9673624, 46.1495019 ], + [ 5.9673641, 46.1495053 ], + [ 5.9673657, 46.1495086 ], + [ 5.9673674, 46.149512 ], + [ 5.9673691, 46.1495153 ], + [ 5.9673708, 46.1495187 ], + [ 5.9673724, 46.149522 ], + [ 5.9673741, 46.1495254 ], + [ 5.9673759, 46.1495287 ], + [ 5.9673776, 46.1495321 ], + [ 5.9673793, 46.1495354 ], + [ 5.967381, 46.1495388 ], + [ 5.9673828, 46.1495421 ], + [ 5.9673845, 46.1495454 ], + [ 5.9673863, 46.1495487 ], + [ 5.9673881, 46.1495521 ], + [ 5.9673899, 46.1495554 ], + [ 5.9673917, 46.1495587 ], + [ 5.9673935, 46.149562 ], + [ 5.9673953, 46.1495654 ], + [ 5.9673971, 46.1495687 ], + [ 5.9673989, 46.149572 ], + [ 5.9674008, 46.1495753 ], + [ 5.9674026, 46.1495786 ], + [ 5.9674045, 46.1495819 ], + [ 5.9674063, 46.1495852 ], + [ 5.9674081999999995, 46.1495885 ], + [ 5.9674101, 46.1495918 ], + [ 5.9674119999999995, 46.1495951 ], + [ 5.9674139, 46.1495984 ], + [ 5.9674157999999995, 46.1496017 ], + [ 5.9674177, 46.149605 ], + [ 5.9674197, 46.1496083 ], + [ 5.9674216, 46.1496115 ], + [ 5.9674236, 46.1496148 ], + [ 5.9674255, 46.1496181 ], + [ 5.9674275, 46.1496214 ], + [ 5.9674295, 46.1496246 ], + [ 5.9674315, 46.1496279 ], + [ 5.9674335, 46.1496312 ], + [ 5.9674355, 46.1496344 ], + [ 5.9674375, 46.1496377 ], + [ 5.9674395, 46.1496409 ], + [ 5.9674416, 46.1496442 ], + [ 5.9674436, 46.1496475 ], + [ 5.9674457, 46.1496507 ], + [ 5.9674477, 46.1496539 ], + [ 5.9674498, 46.1496572 ], + [ 5.968781, 46.1517332 ], + [ 5.9687835, 46.1517372 ], + [ 5.9687861, 46.1517412 ], + [ 5.9687887, 46.1517452 ], + [ 5.9687912999999995, 46.1517492 ], + [ 5.9687939, 46.1517532 ], + [ 5.9687965, 46.1517572 ], + [ 5.9687992, 46.1517611 ], + [ 5.9688018, 46.1517651 ], + [ 5.9688045, 46.1517691 ], + [ 5.9688071, 46.1517731 ], + [ 5.9688098, 46.151777 ], + [ 5.9688125, 46.151781 ], + [ 5.9688152, 46.151785 ], + [ 5.9688178, 46.151789 ], + [ 5.9688205, 46.1517929 ], + [ 5.9688233, 46.1517969 ], + [ 5.968826, 46.1518008 ], + [ 5.9688286999999995, 46.1518048 ], + [ 5.9688315, 46.1518087 ], + [ 5.9688342, 46.1518127 ], + [ 5.968837, 46.1518166 ], + [ 5.9688397, 46.1518206 ], + [ 5.9688425, 46.1518245 ], + [ 5.9688453, 46.1518284 ], + [ 5.9688481, 46.1518324 ], + [ 5.9688509, 46.1518363 ], + [ 5.9688537, 46.1518402 ], + [ 5.9688565, 46.1518441 ], + [ 5.9688593999999995, 46.151848 ], + [ 5.9688622, 46.151852 ], + [ 5.9688651, 46.1518559 ], + [ 5.9688679, 46.1518598 ], + [ 5.9688707999999995, 46.1518637 ], + [ 5.9688737, 46.1518676 ], + [ 5.9688765, 46.1518715 ], + [ 5.9688794, 46.1518754 ], + [ 5.9688824, 46.1518793 ], + [ 5.9688853, 46.1518832 ], + [ 5.9688882, 46.151887 ], + [ 5.9688911000000004, 46.1518909 ], + [ 5.9688941, 46.1518948 ], + [ 5.968897, 46.1518987 ], + [ 5.9689, 46.1519026 ], + [ 5.9689029, 46.1519064 ], + [ 5.9689059, 46.1519103 ], + [ 5.9689089, 46.1519142 ], + [ 5.9689119, 46.151918 ], + [ 5.9689149, 46.1519219 ], + [ 5.9689179, 46.1519257 ], + [ 5.9689209, 46.1519296 ], + [ 5.968924, 46.1519334 ], + [ 5.968927, 46.1519373 ], + [ 5.9689301, 46.1519411 ], + [ 5.9689331, 46.1519449 ], + [ 5.9689362, 46.1519488 ], + [ 5.9689393, 46.1519526 ], + [ 5.9689423999999995, 46.1519564 ], + [ 5.9689455, 46.1519602 ], + [ 5.9689486, 46.1519641 ], + [ 5.9689517, 46.1519679 ], + [ 5.9689548, 46.1519717 ], + [ 5.9689578999999995, 46.1519755 ], + [ 5.9689611, 46.1519793 ], + [ 5.9689642, 46.1519831 ], + [ 5.9689674, 46.1519869 ], + [ 5.9689705, 46.1519907 ], + [ 5.9689737, 46.1519945 ], + [ 5.9689768999999995, 46.1519983 ], + [ 5.9689801, 46.152002 ], + [ 5.9689833, 46.1520058 ], + [ 5.9689865, 46.1520096 ], + [ 5.9689897, 46.1520134 ], + [ 5.9689929, 46.1520171 ], + [ 5.9689962, 46.1520209 ], + [ 5.9689993999999995, 46.1520247 ], + [ 5.9690027, 46.1520284 ], + [ 5.9690059, 46.1520322 ], + [ 5.9690092, 46.1520359 ], + [ 5.9690125, 46.1520397 ], + [ 5.9690158, 46.1520434 ], + [ 5.9690191, 46.1520471 ], + [ 5.9690224, 46.1520509 ], + [ 5.9690256999999995, 46.1520546 ], + [ 5.969029, 46.1520583 ], + [ 5.9690324, 46.152062 ], + [ 5.9690357, 46.1520658 ], + [ 5.9690391, 46.1520695 ], + [ 5.9690424, 46.1520732 ], + [ 5.9690458, 46.1520769 ], + [ 5.9690492, 46.1520806 ], + [ 5.9690525, 46.1520843 ], + [ 5.9690559, 46.152088 ], + [ 5.9690593, 46.1520917 ], + [ 5.9690627, 46.1520954 ], + [ 5.9690662, 46.1520991 ], + [ 5.9690696, 46.1521027 ], + [ 5.969073, 46.1521064 ], + [ 5.9690765, 46.1521101 ], + [ 5.9690799, 46.1521138 ], + [ 5.9690834, 46.1521174 ], + [ 5.9690869, 46.1521211 ], + [ 5.9690902999999995, 46.1521248 ], + [ 5.9690938, 46.1521284 ], + [ 5.9690973, 46.1521321 ], + [ 5.9691008, 46.1521357 ], + [ 5.9691044, 46.1521393 ], + [ 5.9691079, 46.152143 ], + [ 5.9691114, 46.1521466 ], + [ 5.969115, 46.1521502 ], + [ 5.9691185, 46.1521539 ], + [ 5.969122, 46.1521575 ], + [ 5.9691256, 46.1521611 ], + [ 5.9691292, 46.1521647 ], + [ 5.9691328, 46.1521683 ], + [ 5.9691364, 46.1521719 ], + [ 5.96914, 46.1521755 ], + [ 5.9691436, 46.1521791 ], + [ 5.9691472, 46.1521827 ], + [ 5.9691507999999995, 46.1521863 ], + [ 5.9691544, 46.1521899 ], + [ 5.9691581, 46.1521935 ], + [ 5.9691617, 46.1521971 ], + [ 5.9691654, 46.1522006 ], + [ 5.969169, 46.1522042 ], + [ 5.9691727, 46.1522078 ], + [ 5.9691764, 46.1522113 ], + [ 5.9691801, 46.1522149 ], + [ 5.9691838, 46.1522184 ], + [ 5.9691875, 46.152222 ], + [ 5.9691912, 46.1522255 ], + [ 5.9691949, 46.1522291 ], + [ 5.9691987, 46.1522326 ], + [ 5.9692024, 46.1522361 ], + [ 5.9692062, 46.1522397 ], + [ 5.9698624, 46.152856 ], + [ 5.9700675, 46.1528872 ], + [ 5.9711924, 46.1527468 ], + [ 5.9715833, 46.1528062 ], + [ 5.971776, 46.1527822 ], + [ 5.972085, 46.153117 ], + [ 5.9733288, 46.1537182 ], + [ 5.9748091, 46.1539429 ], + [ 5.9763003999999995, 46.1537568 ], + [ 5.9775756, 46.1531883 ], + [ 5.9784407, 46.1523238 ], + [ 5.978764, 46.1512951 ], + [ 5.9784961, 46.1502587 ], + [ 5.977678, 46.1493724 ], + [ 5.9764343, 46.1487712 ], + [ 5.9761603, 46.1487296 ], + [ 5.9760511, 46.1483072 ], + [ 5.9752331, 46.1474209 ], + [ 5.9739894, 46.1468196 ], + [ 5.9728202, 46.1466421 ], + [ 5.9720801, 46.1462843 ], + [ 5.9719996, 46.1461971 ], + [ 5.970756, 46.1455958 ], + [ 5.969276, 46.1453711 ], + [ 5.9677849, 46.1455571 ], + [ 5.9665097, 46.1461255 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-28", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.1263694, 46.9615432 ], + [ 7.1284261, 46.9599219 ], + [ 7.1296286, 46.9604784 ], + [ 7.1298071, 46.9601829 ], + [ 7.1287843, 46.9596394 ], + [ 7.1294335, 46.9591276 ], + [ 7.1322389, 46.9604231 ], + [ 7.1322764, 46.9604404 ], + [ 7.1321305, 46.9605519 ], + [ 7.1321113, 46.9607383 ], + [ 7.1322934, 46.9606394 ], + [ 7.1325665, 46.9605158 ], + [ 7.1329478, 46.960492 ], + [ 7.1330395, 46.960343 ], + [ 7.133203, 46.9603186 ], + [ 7.1329686, 46.9600445 ], + [ 7.1353115, 46.9582857 ], + [ 7.1355482, 46.9581496 ], + [ 7.1356942, 46.9580257 ], + [ 7.1359854, 46.9579022 ], + [ 7.1362038, 46.9577909 ], + [ 7.1371002, 46.9565875 ], + [ 7.1373287, 46.9562898 ], + [ 7.1375292, 46.9561536 ], + [ 7.1378204, 46.9560301 ], + [ 7.1382391, 46.9558199 ], + [ 7.1383848, 46.9557208 ], + [ 7.1386589, 46.9554108 ], + [ 7.1389505, 46.9552002 ], + [ 7.139097, 46.9549769 ], + [ 7.1392066, 46.9548529 ], + [ 7.1400039, 46.955116 ], + [ 7.14101, 46.9537389 ], + [ 7.1412635, 46.9538514 ], + [ 7.1419762, 46.9529956 ], + [ 7.1438131, 46.9506884 ], + [ 7.1417295, 46.949987 ], + [ 7.141777, 46.9496142 ], + [ 7.1419986, 46.9489187 ], + [ 7.1425684, 46.9476275 ], + [ 7.1416678, 46.9463697 ], + [ 7.1406866, 46.9449252 ], + [ 7.1406599, 46.9449246 ], + [ 7.1390626, 46.944884 ], + [ 7.1390562, 46.9448918 ], + [ 7.1372249, 46.9447145 ], + [ 7.1343949, 46.944483 ], + [ 7.1341547, 46.9444742 ], + [ 7.1341557, 46.944295 ], + [ 7.1342199, 46.9440166 ], + [ 7.1342842, 46.9437167 ], + [ 7.134308, 46.9433779 ], + [ 7.1339429, 46.9432015 ], + [ 7.1335374, 46.9429862 ], + [ 7.1335385, 46.9427933 ], + [ 7.1332586, 46.9424926 ], + [ 7.1327282, 46.942234 ], + [ 7.1324163, 46.9420617 ], + [ 7.1319178, 46.9416961 ], + [ 7.131951, 46.9413533 ], + [ 7.1321089, 46.9410966 ], + [ 7.1311409, 46.9407725 ], + [ 7.1307042, 46.9405357 ], + [ 7.1302362, 46.9402987 ], + [ 7.1300488, 46.9402553 ], + [ 7.1294866, 46.9400824 ], + [ 7.129081, 46.9398884 ], + [ 7.1289146, 46.9401393 ], + [ 7.1188205, 46.9553532 ], + [ 7.1191281, 46.9564889 ], + [ 7.1193128, 46.9574839 ], + [ 7.1192733, 46.9580182 ], + [ 7.1190525, 46.9585148 ], + [ 7.1187315, 46.9590694 ], + [ 7.1224793, 46.9609094 ], + [ 7.1232644, 46.9600679 ], + [ 7.1258715, 46.961318 ], + [ 7.1263694, 46.9615432 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "WZV0006", + "country" : "CHE", + "name" : [ + { + "text" : "Wasser- und Zugvogelreservat Chablais", + "lang" : "de-CH" + }, + { + "text" : "Réserve d'oiseaux d'eau et de migrateurs Chablais", + "lang" : "fr-CH" + }, + { + "text" : "Riserva di uccelli acquatici e migratori Chablais", + "lang" : "it-CH" + }, + { + "text" : "Water Bird and Migratory Bird Reserves Chablais", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.2572371, 46.8962615 ], + [ 8.2572295, 46.8961203 ], + [ 8.2572112, 46.8959796 ], + [ 8.2571822, 46.8958397 ], + [ 8.2571425, 46.8957011 ], + [ 8.2570923, 46.895564 ], + [ 8.2570317, 46.895429 ], + [ 8.2569609, 46.8952963 ], + [ 8.2568801, 46.8951664 ], + [ 8.2567894, 46.8950395 ], + [ 8.2566892, 46.894916 ], + [ 8.2565796, 46.8947964 ], + [ 8.2564611, 46.8946808 ], + [ 8.256334, 46.8945696 ], + [ 8.2561985, 46.8944631 ], + [ 8.2560551, 46.8943616 ], + [ 8.2559041, 46.8942655 ], + [ 8.255746, 46.8941748 ], + [ 8.2555812, 46.89409 ], + [ 8.2554101, 46.8940112 ], + [ 8.2552333, 46.8939386 ], + [ 8.2550511, 46.8938725 ], + [ 8.2548642, 46.893813 ], + [ 8.254673, 46.8937603 ], + [ 8.254478, 46.8937145 ], + [ 8.2542798, 46.8936758 ], + [ 8.2540789, 46.8936443 ], + [ 8.2538759, 46.89362 ], + [ 8.2536713, 46.893603 ], + [ 8.2534656, 46.8935934 ], + [ 8.2532596, 46.8935911 ], + [ 8.2530536, 46.8935963 ], + [ 8.2528483, 46.8936088 ], + [ 8.2526443, 46.8936287 ], + [ 8.252442, 46.8936559 ], + [ 8.2522421, 46.8936903 ], + [ 8.2520451, 46.8937319 ], + [ 8.2518516, 46.8937804 ], + [ 8.251662, 46.8938358 ], + [ 8.2514769, 46.893898 ], + [ 8.2512968, 46.8939667 ], + [ 8.2511222, 46.8940417 ], + [ 8.2509536, 46.894123 ], + [ 8.2507914, 46.8942101 ], + [ 8.2506361, 46.894303 ], + [ 8.250488, 46.8944013 ], + [ 8.2503477, 46.8945048 ], + [ 8.2502155, 46.8946131 ], + [ 8.2500917, 46.8947261 ], + [ 8.2499767, 46.8948434 ], + [ 8.2498709, 46.8949646 ], + [ 8.2497744, 46.8950894 ], + [ 8.2496876, 46.8952176 ], + [ 8.2496107, 46.8953487 ], + [ 8.2495439, 46.8954823 ], + [ 8.2494874, 46.8956182 ], + [ 8.2494414, 46.8957559 ], + [ 8.2494059, 46.8958951 ], + [ 8.2493811, 46.8960353 ], + [ 8.2493671, 46.8961763 ], + [ 8.2493638, 46.8963176 ], + [ 8.2493714, 46.8964587 ], + [ 8.2493897, 46.8965995 ], + [ 8.2494187, 46.8967393 ], + [ 8.2494583, 46.896878 ], + [ 8.2495085, 46.897015 ], + [ 8.2495691, 46.8971501 ], + [ 8.2496399, 46.8972827 ], + [ 8.2497207, 46.8974127 ], + [ 8.2498114, 46.8975396 ], + [ 8.2499116, 46.897663 ], + [ 8.2500211, 46.8977827 ], + [ 8.2501396, 46.8978983 ], + [ 8.2502668, 46.8980095 ], + [ 8.2504022, 46.898116 ], + [ 8.2505457, 46.8982175 ], + [ 8.2506966, 46.8983137 ], + [ 8.2508547, 46.8984043 ], + [ 8.2510196, 46.8984891 ], + [ 8.2511906, 46.898568 ], + [ 8.2513675, 46.8986405 ], + [ 8.2515496, 46.8987066 ], + [ 8.2517366, 46.8987661 ], + [ 8.2519278, 46.8988189 ], + [ 8.2521228, 46.8988646 ], + [ 8.252321, 46.8989034 ], + [ 8.252522, 46.8989349 ], + [ 8.252725, 46.8989592 ], + [ 8.2529296, 46.8989762 ], + [ 8.2531353, 46.8989858 ], + [ 8.2533414, 46.898988 ], + [ 8.2535473, 46.8989829 ], + [ 8.2537526, 46.8989703 ], + [ 8.2539567, 46.8989504 ], + [ 8.254159, 46.8989232 ], + [ 8.2543589, 46.8988888 ], + [ 8.2545559, 46.8988473 ], + [ 8.254749499999999, 46.8987988 ], + [ 8.2549391, 46.8987433 ], + [ 8.2551242, 46.8986812 ], + [ 8.2553043, 46.8986125 ], + [ 8.2554789, 46.8985374 ], + [ 8.2556475, 46.8984562 ], + [ 8.2558097, 46.898369 ], + [ 8.2559651, 46.8982762 ], + [ 8.2561131, 46.8981778 ], + [ 8.2562534, 46.8980743 ], + [ 8.2563856, 46.897966 ], + [ 8.2565094, 46.897853 ], + [ 8.2566244, 46.8977357 ], + [ 8.2567302, 46.8976145 ], + [ 8.2568267, 46.8974896 ], + [ 8.2569135, 46.8973615 ], + [ 8.2569903, 46.8972304 ], + [ 8.2570571, 46.8970967 ], + [ 8.2571136, 46.8969609 ], + [ 8.2571596, 46.8968232 ], + [ 8.2571951, 46.896684 ], + [ 8.2572198, 46.8965437 ], + [ 8.2572338, 46.8964028 ], + [ 8.2572371, 46.8962615 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SAR0001", + "country" : "CHE", + "name" : [ + { + "text" : "Untersuchungsgefängnis Sarnen", + "lang" : "de-CH" + }, + { + "text" : "Untersuchungsgefängnis Sarnen", + "lang" : "fr-CH" + }, + { + "text" : "Untersuchungsgefängnis Sarnen", + "lang" : "it-CH" + }, + { + "text" : "Untersuchungsgefängnis Sarnen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kantonspolizei Obwalden", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale d'Obwald", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Obvaldo", + "lang" : "it-CH" + }, + { + "text" : "Obwalden cantonal police", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Amtsleitung Kantonspolizei Obwalden", + "lang" : "de-CH" + }, + { + "text" : "Chef de la police cantonale d'Obwald", + "lang" : "fr-CH" + }, + { + "text" : "Capo della polizia cantonale di Obvaldo", + "lang" : "it-CH" + }, + { + "text" : "Head of the cantonal police in Obwalden", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ow.ch/aemter/232", + "email" : "kapo@ow.ch", + "phone" : "0041416666500", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT12H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.3460829, 46.222933 ], + [ 7.3456526, 46.2222165 ], + [ 7.3419883, 46.2216784 ], + [ 7.3429318, 46.2202254 ], + [ 7.3333905, 46.2177278 ], + [ 7.33351, 46.2182497 ], + [ 7.3300045, 46.2182744 ], + [ 7.3297769, 46.2186763 ], + [ 7.3247467, 46.217716 ], + [ 7.3248533, 46.2169451 ], + [ 7.3173042, 46.2154608 ], + [ 7.3167542, 46.2151103 ], + [ 7.3151209, 46.21478 ], + [ 7.314476, 46.2157203 ], + [ 7.3109918, 46.2149786 ], + [ 7.3108509999999995, 46.2153338 ], + [ 7.3090389, 46.2149837 ], + [ 7.3087657, 46.215964 ], + [ 7.3137007, 46.2169915 ], + [ 7.3139411, 46.217249 ], + [ 7.3194123, 46.2185164 ], + [ 7.3199487, 46.2191359 ], + [ 7.3245704, 46.2202238 ], + [ 7.3246226, 46.2200628 ], + [ 7.3293573, 46.2210552 ], + [ 7.3385297, 46.222809 ], + [ 7.3387308, 46.2226904 ], + [ 7.3434977, 46.2234453 ], + [ 7.3458708999999995, 46.2233574 ], + [ 7.3460829, 46.222933 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSMS003", + "country" : "CHE", + "name" : [ + { + "text" : "LSMS Sion (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSMS Sion (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSMS Sion (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSMS Sion (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Special Flight Office (SFO)", + "lang" : "de-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "fr-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "it-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "en-GB" + } + ], + "siteURL" : "https://skyguide.ch/services/special-flights", + "email" : "specialflight@skyguide.ch", + "phone" : "0041439316236", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5334287, 47.4929994 ], + [ 7.533446, 47.4930198 ], + [ 7.5334711, 47.4930232 ], + [ 7.5340606, 47.4928654 ], + [ 7.5341218, 47.4928813 ], + [ 7.5345331, 47.4928009 ], + [ 7.535722, 47.4927476 ], + [ 7.5365287, 47.4928979 ], + [ 7.5366181999999995, 47.4928974 ], + [ 7.5366772, 47.4928738 ], + [ 7.5366827, 47.4928509 ], + [ 7.5366303, 47.4928217 ], + [ 7.5359375, 47.4926848 ], + [ 7.5357266, 47.4926683 ], + [ 7.5348954, 47.4926933 ], + [ 7.5347755, 47.4926962 ], + [ 7.5345007, 47.4927201 ], + [ 7.5339064, 47.4928149 ], + [ 7.5337556, 47.4928477 ], + [ 7.533402, 47.4929686 ], + [ 7.5334287, 47.4929994 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns158", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Schlifbach - Grossmattbach", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Schlifbach - Grossmattbach", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Schlifbach - Grossmattbach", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Schlifbach - Grossmattbach", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.3576273, 46.1788244 ], + [ 7.3344128, 46.1738753 ], + [ 7.3311477, 46.1732432 ], + [ 7.3278394, 46.1727306 ], + [ 7.3244972, 46.1723389 ], + [ 7.32113, 46.1720692 ], + [ 7.3177472, 46.1719221 ], + [ 7.3143579, 46.1718982 ], + [ 7.3109715, 46.1719974 ], + [ 7.3075971, 46.1722195 ], + [ 7.3042441, 46.1725639 ], + [ 7.3009216, 46.1730296 ], + [ 7.2976386, 46.1736154 ], + [ 7.2944042, 46.1743197 ], + [ 7.2912271, 46.1751405 ], + [ 7.2881162, 46.1760756 ], + [ 7.2850799, 46.1771225 ], + [ 7.2821264, 46.1782782 ], + [ 7.279264, 46.1795397 ], + [ 7.2765004, 46.1809034 ], + [ 7.2738432, 46.1823656 ], + [ 7.2712996, 46.1839224 ], + [ 7.2688767, 46.1855695 ], + [ 7.2665811, 46.1873023 ], + [ 7.264419, 46.1891162 ], + [ 7.2623965, 46.1910061 ], + [ 7.260519, 46.1929669 ], + [ 7.2587917, 46.1949933 ], + [ 7.2572193, 46.1970796 ], + [ 7.2558063, 46.1992202 ], + [ 7.2545564, 46.2014092 ], + [ 7.2534731, 46.2036406 ], + [ 7.2525594, 46.2059083 ], + [ 7.2518179, 46.2082061 ], + [ 7.2512505, 46.2105277 ], + [ 7.2508589, 46.2128667 ], + [ 7.2506441, 46.2152168 ], + [ 7.2506068, 46.2175714 ], + [ 7.250747, 46.2199242 ], + [ 7.2510645, 46.2222686 ], + [ 7.2515583, 46.2245983 ], + [ 7.2522272, 46.2269069 ], + [ 7.2530693, 46.2291879 ], + [ 7.2540824, 46.2314353 ], + [ 7.2552637, 46.2336428 ], + [ 7.2566099, 46.2358043 ], + [ 7.2581174, 46.237914 ], + [ 7.2597821, 46.239966 ], + [ 7.2615994, 46.2419547 ], + [ 7.2635643, 46.2438747 ], + [ 7.2656716, 46.2457206 ], + [ 7.2679153, 46.2474875 ], + [ 7.2702894, 46.2491704 ], + [ 7.2727873, 46.2507647 ], + [ 7.2754022, 46.2522661 ], + [ 7.278127, 46.2536705 ], + [ 7.2809541, 46.2549739 ], + [ 7.2838758, 46.2561729 ], + [ 7.2868841, 46.257264 ], + [ 7.2899707, 46.2582444 ], + [ 7.2931270999999995, 46.2591112 ], + [ 7.2963447, 46.2598623 ], + [ 7.3195925, 46.2648192 ], + [ 7.322863, 46.2654516 ], + [ 7.3261768, 46.2659644 ], + [ 7.3295248, 46.266356 ], + [ 7.3328979, 46.2666255 ], + [ 7.3362866, 46.2667721 ], + [ 7.3396818, 46.2667954 ], + [ 7.3430741, 46.2666953 ], + [ 7.3464542, 46.2664721 ], + [ 7.3498127, 46.2661265 ], + [ 7.3531405, 46.2656593 ], + [ 7.3564285, 46.2650719 ], + [ 7.3596675, 46.2643658 ], + [ 7.3628487, 46.2635431 ], + [ 7.3659633, 46.2626059 ], + [ 7.3690029, 46.2615569 ], + [ 7.371959, 46.2603989 ], + [ 7.3748235, 46.2591351 ], + [ 7.3775886, 46.2577689 ], + [ 7.3802468, 46.2563042 ], + [ 7.3827906, 46.254745 ], + [ 7.3852131, 46.2530955 ], + [ 7.3875077, 46.2513602 ], + [ 7.3896682, 46.249544 ], + [ 7.3916885, 46.2476518 ], + [ 7.3935631, 46.2456888 ], + [ 7.395287, 46.2436604 ], + [ 7.3968554, 46.2415721 ], + [ 7.398264, 46.2394298 ], + [ 7.399509, 46.2372392 ], + [ 7.4005869, 46.2350064 ], + [ 7.4014949, 46.2327375 ], + [ 7.4022305, 46.2304387 ], + [ 7.4027916, 46.2281163 ], + [ 7.4031768, 46.2257768 ], + [ 7.4033851, 46.2234265 ], + [ 7.4034158, 46.2210718 ], + [ 7.4032689, 46.2187192 ], + [ 7.4029449, 46.2163752 ], + [ 7.4024447, 46.2140462 ], + [ 7.4017696, 46.2117385 ], + [ 7.4009215, 46.2094585 ], + [ 7.3999028, 46.2072125 ], + [ 7.3987162, 46.2050065 ], + [ 7.3973651, 46.2028467 ], + [ 7.3958532, 46.2007389 ], + [ 7.3941846, 46.1986889 ], + [ 7.3923639, 46.1967023 ], + [ 7.3903961, 46.1947846 ], + [ 7.3882866, 46.192941 ], + [ 7.3860412, 46.1911766 ], + [ 7.3836661, 46.1894961 ], + [ 7.3811678, 46.1879042 ], + [ 7.378553, 46.1864052 ], + [ 7.3758289999999995, 46.1850033 ], + [ 7.3730033, 46.1837023 ], + [ 7.3700835, 46.1825056 ], + [ 7.3670777, 46.1814167 ], + [ 7.363994, 46.1804385 ], + [ 7.360841, 46.1795736 ], + [ 7.3576273, 46.1788244 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSGS001", + "country" : "CHE", + "name" : [ + { + "text" : "LSGS Sion", + "lang" : "de-CH" + }, + { + "text" : "LSGS Sion", + "lang" : "fr-CH" + }, + { + "text" : "LSGS Sion", + "lang" : "it-CH" + }, + { + "text" : "LSGS Sion", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Special Flight Office (SFO)", + "lang" : "de-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "fr-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "it-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "en-GB" + } + ], + "siteURL" : "https://skyguide.ch/services/special-flights", + "email" : "specialflight@skyguide.ch", + "phone" : "0041439316236", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.7604569, 47.3306704 ], + [ 8.760447899999999, 47.3305293 ], + [ 8.7604281, 47.3303886 ], + [ 8.7603975, 47.3302489 ], + [ 8.7603562, 47.3301105 ], + [ 8.7603043, 47.3299737 ], + [ 8.760242, 47.3298389 ], + [ 8.7601693, 47.3297066 ], + [ 8.7600866, 47.329577 ], + [ 8.759994, 47.3294505 ], + [ 8.7598918, 47.3293275 ], + [ 8.7597802, 47.3292083 ], + [ 8.7596597, 47.3290933 ], + [ 8.7595304, 47.3289827 ], + [ 8.7593929, 47.3288768 ], + [ 8.7592473, 47.328776 ], + [ 8.7590942, 47.3286805 ], + [ 8.758934, 47.3285905 ], + [ 8.758767, 47.3285064 ], + [ 8.7585938, 47.3284284 ], + [ 8.7584149, 47.3283566 ], + [ 8.7582306, 47.3282913 ], + [ 8.7580416, 47.3282326 ], + [ 8.7578483, 47.3281808 ], + [ 8.7576513, 47.3281359 ], + [ 8.7574512, 47.328098 ], + [ 8.7572483, 47.3280674 ], + [ 8.7570434, 47.328044 ], + [ 8.756837, 47.3280279 ], + [ 8.7566296, 47.3280192 ], + [ 8.7564219, 47.3280178 ], + [ 8.7562143, 47.3280239 ], + [ 8.7560074, 47.3280374 ], + [ 8.7558019, 47.3280581 ], + [ 8.755598299999999, 47.3280862 ], + [ 8.7553971, 47.3281215 ], + [ 8.7551989, 47.3281639 ], + [ 8.7550042, 47.3282133 ], + [ 8.7548136, 47.3282695 ], + [ 8.7546276, 47.3283325 ], + [ 8.754446699999999, 47.3284019 ], + [ 8.7542714, 47.3284778 ], + [ 8.7541021, 47.3285597 ], + [ 8.7539395, 47.3286476 ], + [ 8.7537837, 47.3287411 ], + [ 8.7536354, 47.3288401 ], + [ 8.753495, 47.3289442 ], + [ 8.7533627, 47.3290531 ], + [ 8.753239, 47.3291666 ], + [ 8.7531242, 47.3292843 ], + [ 8.7530186, 47.329406 ], + [ 8.7529225, 47.3295313 ], + [ 8.7528362, 47.3296598 ], + [ 8.7527599, 47.3297912 ], + [ 8.7526939, 47.3299251 ], + [ 8.7526382, 47.3300612 ], + [ 8.7525931, 47.3301991 ], + [ 8.7525586, 47.3303384 ], + [ 8.752535, 47.3304788 ], + [ 8.7525221, 47.3306198 ], + [ 8.7525202, 47.330761 ], + [ 8.7525291, 47.3309022 ], + [ 8.7525489, 47.3310428 ], + [ 8.7525794, 47.3311825 ], + [ 8.7526207, 47.331321 ], + [ 8.7526726, 47.3314578 ], + [ 8.7527349, 47.3315925 ], + [ 8.7528076, 47.3317249 ], + [ 8.7528903, 47.3318545 ], + [ 8.7529829, 47.3319809 ], + [ 8.7530851, 47.3321039 ], + [ 8.7531966, 47.3322231 ], + [ 8.7533171, 47.3323382 ], + [ 8.7534464, 47.3324488 ], + [ 8.753584, 47.3325547 ], + [ 8.7537295, 47.3326555 ], + [ 8.7538826, 47.332751 ], + [ 8.7540429, 47.332841 ], + [ 8.7542098, 47.3329251 ], + [ 8.754383, 47.3330031 ], + [ 8.754562, 47.3330749 ], + [ 8.7547462, 47.3331402 ], + [ 8.7549353, 47.3331989 ], + [ 8.755128599999999, 47.3332507 ], + [ 8.755325599999999, 47.3332957 ], + [ 8.7555258, 47.3333335 ], + [ 8.7557286, 47.3333642 ], + [ 8.7559335, 47.3333876 ], + [ 8.75614, 47.3334037 ], + [ 8.7563474, 47.3334124 ], + [ 8.7565552, 47.3334137 ], + [ 8.7567628, 47.3334076 ], + [ 8.7569696, 47.3333942 ], + [ 8.7571752, 47.3333734 ], + [ 8.7573788, 47.3333453 ], + [ 8.75758, 47.33331 ], + [ 8.7577783, 47.3332677 ], + [ 8.7579729, 47.3332183 ], + [ 8.7581636, 47.333162 ], + [ 8.7583496, 47.3330991 ], + [ 8.758530499999999, 47.3330296 ], + [ 8.7587058, 47.3329537 ], + [ 8.7588751, 47.3328718 ], + [ 8.7590378, 47.3327839 ], + [ 8.7591935, 47.3326904 ], + [ 8.7593418, 47.3325914 ], + [ 8.7594823, 47.3324873 ], + [ 8.7596145, 47.3323784 ], + [ 8.7597382, 47.3322649 ], + [ 8.759853, 47.3321471 ], + [ 8.7599586, 47.3320254 ], + [ 8.7600547, 47.3319002 ], + [ 8.760141, 47.3317717 ], + [ 8.7602172, 47.3316403 ], + [ 8.7602833, 47.3315063 ], + [ 8.7603389, 47.3313702 ], + [ 8.760384, 47.3312323 ], + [ 8.7604185, 47.331093 ], + [ 8.7604421, 47.3309527 ], + [ 8.7604549, 47.3308117 ], + [ 8.7604569, 47.3306704 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0001", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Aathal", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Aathal", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Aathal", + "lang" : "it-CH" + }, + { + "text" : "Substation Aathal", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.7795936, 47.6573669 ], + [ 8.7795846, 47.6572258 ], + [ 8.7795646, 47.6570852 ], + [ 8.7795338, 47.6569455 ], + [ 8.7794922, 47.656807 ], + [ 8.7794399, 47.6566703 ], + [ 8.7793771, 47.6565355 ], + [ 8.779304, 47.6564032 ], + [ 8.7792207, 47.6562737 ], + [ 8.7791275, 47.6561472 ], + [ 8.7790246, 47.6560243 ], + [ 8.7789123, 47.6559051 ], + [ 8.778791, 47.6557901 ], + [ 8.7786609, 47.6556795 ], + [ 8.7785224, 47.6555737 ], + [ 8.7783759, 47.6554729 ], + [ 8.7782219, 47.6553774 ], + [ 8.7780606, 47.6552875 ], + [ 8.7778926, 47.6552035 ], + [ 8.7777183, 47.6551255 ], + [ 8.7775382, 47.6550537 ], + [ 8.7773528, 47.6549884 ], + [ 8.7771626, 47.6549298 ], + [ 8.7769681, 47.654878 ], + [ 8.7767699, 47.6548331 ], + [ 8.7765685, 47.6547953 ], + [ 8.7763644, 47.6547647 ], + [ 8.7761582, 47.6547413 ], + [ 8.7759505, 47.6547253 ], + [ 8.7757418, 47.6547166 ], + [ 8.7755328, 47.6547153 ], + [ 8.7753239, 47.6547214 ], + [ 8.7751158, 47.6547349 ], + [ 8.774909, 47.6547557 ], + [ 8.7747042, 47.6547838 ], + [ 8.7745017, 47.6548191 ], + [ 8.7743023, 47.6548615 ], + [ 8.7741065, 47.6549109 ], + [ 8.7739147, 47.6549672 ], + [ 8.7737276, 47.6550302 ], + [ 8.7735456, 47.6550997 ], + [ 8.7733692, 47.6551755 ], + [ 8.773199, 47.6552575 ], + [ 8.7730353, 47.6553454 ], + [ 8.7728787, 47.6554389 ], + [ 8.7727295, 47.6555379 ], + [ 8.7725882, 47.655642 ], + [ 8.7724551, 47.6557509 ], + [ 8.7723307, 47.6558645 ], + [ 8.7722152, 47.6559822 ], + [ 8.772109, 47.6561039 ], + [ 8.7720124, 47.6562291 ], + [ 8.7719256, 47.6563576 ], + [ 8.7718489, 47.656489 ], + [ 8.7717825, 47.656623 ], + [ 8.7717265, 47.6567591 ], + [ 8.7716812, 47.656897 ], + [ 8.7716466, 47.6570363 ], + [ 8.7716228, 47.6571766 ], + [ 8.77161, 47.6573176 ], + [ 8.771608, 47.6574588 ], + [ 8.7716171, 47.6576 ], + [ 8.771637, 47.6577406 ], + [ 8.7716678, 47.6578803 ], + [ 8.7717094, 47.6580187 ], + [ 8.7717616, 47.6581555 ], + [ 8.7718244, 47.6582902 ], + [ 8.771897599999999, 47.6584225 ], + [ 8.7719808, 47.6585521 ], + [ 8.772074, 47.6586785 ], + [ 8.7721769, 47.6588015 ], + [ 8.7722892, 47.6589207 ], + [ 8.7724105, 47.6590357 ], + [ 8.7725406, 47.6591463 ], + [ 8.772679, 47.6592521 ], + [ 8.7728255, 47.6593529 ], + [ 8.7729796, 47.6594484 ], + [ 8.7731409, 47.6595383 ], + [ 8.7733089, 47.6596223 ], + [ 8.7734832, 47.6597004 ], + [ 8.773663299999999, 47.6597721 ], + [ 8.7738487, 47.6598374 ], + [ 8.7740389, 47.659896 ], + [ 8.7742334, 47.6599478 ], + [ 8.7744316, 47.6599927 ], + [ 8.774633099999999, 47.6600305 ], + [ 8.7748372, 47.6600611 ], + [ 8.7750434, 47.660084499999996 ], + [ 8.7752511, 47.6601006 ], + [ 8.7754598, 47.6601093 ], + [ 8.7756689, 47.6601105 ], + [ 8.7758778, 47.6601044 ], + [ 8.7760859, 47.660091 ], + [ 8.776292699999999, 47.6600701 ], + [ 8.7764976, 47.660042 ], + [ 8.7767, 47.6600067 ], + [ 8.7768994, 47.6599643 ], + [ 8.7770953, 47.6599149 ], + [ 8.7772871, 47.6598586 ], + [ 8.7774742, 47.6597956 ], + [ 8.7776562, 47.6597261 ], + [ 8.7778326, 47.6596503 ], + [ 8.7780029, 47.6595683 ], + [ 8.7781666, 47.6594804 ], + [ 8.778323199999999, 47.6593868 ], + [ 8.7784724, 47.6592879 ], + [ 8.7786137, 47.6591838 ], + [ 8.7787467, 47.6590748 ], + [ 8.7788712, 47.6589613 ], + [ 8.7789866, 47.6588436 ], + [ 8.7790928, 47.6587219 ], + [ 8.7791894, 47.6585966 ], + [ 8.7792762, 47.6584681 ], + [ 8.7793529, 47.6583367 ], + [ 8.7794193, 47.6582027 ], + [ 8.7794752, 47.6580667 ], + [ 8.7795206, 47.6579288 ], + [ 8.7795551, 47.6577894 ], + [ 8.7795789, 47.6576491 ], + [ 8.7795917, 47.6575081 ], + [ 8.7795936, 47.6573669 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0106", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Schlattingen", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Schlattingen", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Schlattingen", + "lang" : "it-CH" + }, + { + "text" : "Substation Schlattingen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8453102999999995, 47.3795831 ], + [ 7.8453339, 47.3796332 ], + [ 7.8456118, 47.3797328 ], + [ 7.8459774, 47.3798194 ], + [ 7.8464496, 47.3799339 ], + [ 7.8465558, 47.3799335 ], + [ 7.8465877, 47.3798675 ], + [ 7.8465504, 47.3798268 ], + [ 7.8462541, 47.3797367 ], + [ 7.8458051, 47.379619 ], + [ 7.8454949, 47.379551 ], + [ 7.8453608, 47.3795295 ], + [ 7.8453102999999995, 47.3795831 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns201", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Hecken-Komplex Schmutzberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Hecken-Komplex Schmutzberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Hecken-Komplex Schmutzberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Hecken-Komplex Schmutzberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.9245223, 46.0285673 ], + [ 8.9245131, 46.0284262 ], + [ 8.9244934, 46.0282856 ], + [ 8.9244631, 46.0281459 ], + [ 8.9244224, 46.0280075 ], + [ 8.9243713, 46.0278707 ], + [ 8.92431, 46.0277361 ], + [ 8.9242387, 46.0276038 ], + [ 8.9241575, 46.0274743 ], + [ 8.9240668, 46.027348 ], + [ 8.9239666, 46.0272251 ], + [ 8.9238574, 46.0271061 ], + [ 8.9237394, 46.0269911 ], + [ 8.9236129, 46.0268807 ], + [ 8.9234782, 46.026775 ], + [ 8.9233359, 46.0266744 ], + [ 8.9231861, 46.0265791 ], + [ 8.9230294, 46.0264894 ], + [ 8.9228662, 46.0264055 ], + [ 8.9226969, 46.0263277 ], + [ 8.922522, 46.0262562 ], + [ 8.922342, 46.0261911 ], + [ 8.9221573, 46.0261327 ], + [ 8.9219685, 46.0260812 ], + [ 8.921776, 46.0260365 ], + [ 8.9215805, 46.025999 ], + [ 8.9213824, 46.0259686 ], + [ 8.9211823, 46.0259455 ], + [ 8.9209808, 46.0259297 ], + [ 8.9207783, 46.0259212 ], + [ 8.9205755, 46.0259202 ], + [ 8.9203729, 46.0259266 ], + [ 8.920171, 46.0259403 ], + [ 8.9199705, 46.0259614 ], + [ 8.9197718, 46.0259898 ], + [ 8.9195755, 46.0260253 ], + [ 8.9193821, 46.026068 ], + [ 8.9191923, 46.0261177 ], + [ 8.9190064, 46.0261742 ], + [ 8.918825, 46.0262374 ], + [ 8.9186486, 46.0263072 ], + [ 8.9184777, 46.0263833 ], + [ 8.9183127, 46.0264655 ], + [ 8.9181542, 46.0265536 ], + [ 8.9180025, 46.0266473 ], + [ 8.917858, 46.0267465 ], + [ 8.917721199999999, 46.0268508 ], + [ 8.9175924, 46.0269599 ], + [ 8.917472, 46.0270736 ], + [ 8.9173602, 46.0271916 ], + [ 8.9172575, 46.0273134 ], + [ 8.9171641, 46.0274388 ], + [ 8.9170803, 46.0275675 ], + [ 8.9170062, 46.027699 ], + [ 8.9169421, 46.027833 ], + [ 8.9168882, 46.0279692 ], + [ 8.9168446, 46.0281072 ], + [ 8.9168114, 46.0282466 ], + [ 8.9167887, 46.028387 ], + [ 8.9167766, 46.028528 ], + [ 8.9167751, 46.0286693 ], + [ 8.9167842, 46.0288104 ], + [ 8.9168039, 46.0289511 ], + [ 8.9168342, 46.0290908 ], + [ 8.9168749, 46.0292292 ], + [ 8.916926, 46.0293659 ], + [ 8.9169872, 46.0295006 ], + [ 8.9170585, 46.0296328 ], + [ 8.9171397, 46.0297623 ], + [ 8.9172304, 46.0298887 ], + [ 8.9173306, 46.0300116 ], + [ 8.9174398, 46.0301306 ], + [ 8.9175578, 46.0302455 ], + [ 8.9176843, 46.030356 ], + [ 8.9178189, 46.0304617 ], + [ 8.9179613, 46.0305623 ], + [ 8.918111, 46.0306576 ], + [ 8.9182677, 46.0307473 ], + [ 8.918431, 46.0308312 ], + [ 8.9186003, 46.030909 ], + [ 8.9187752, 46.0309805 ], + [ 8.9189552, 46.0310456 ], + [ 8.9191399, 46.031104 ], + [ 8.9193288, 46.0311556 ], + [ 8.9195212, 46.0312002 ], + [ 8.9197168, 46.0312378 ], + [ 8.9199149, 46.0312682 ], + [ 8.920115, 46.0312913 ], + [ 8.9203165, 46.0313071 ], + [ 8.920519, 46.0313155 ], + [ 8.9207219, 46.0313165 ], + [ 8.9209245, 46.0313102 ], + [ 8.9211264, 46.0312964 ], + [ 8.921327, 46.0312754 ], + [ 8.9215257, 46.031247 ], + [ 8.921721999999999, 46.0312114 ], + [ 8.9219153, 46.0311687 ], + [ 8.9221052, 46.0311191 ], + [ 8.9222911, 46.0310625 ], + [ 8.9224725, 46.0309993 ], + [ 8.9226489, 46.0309296 ], + [ 8.9228199, 46.0308535 ], + [ 8.9229848, 46.0307713 ], + [ 8.9231434, 46.0306831 ], + [ 8.9232951, 46.0305894 ], + [ 8.9234396, 46.0304902 ], + [ 8.9235764, 46.0303859 ], + [ 8.9237052, 46.0302767 ], + [ 8.9238256, 46.030163 ], + [ 8.9239373, 46.0300451 ], + [ 8.92404, 46.0299233 ], + [ 8.9241334, 46.0297978 ], + [ 8.9242172, 46.0296692 ], + [ 8.9242913, 46.0295377 ], + [ 8.9243554, 46.0294036 ], + [ 8.9244093, 46.0292674 ], + [ 8.9244529, 46.0291294 ], + [ 8.9244861, 46.02899 ], + [ 8.9245087, 46.0288497 ], + [ 8.9245208, 46.0287086 ], + [ 8.9245223, 46.0285673 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0068", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Manno", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Manno", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Manno", + "lang" : "it-CH" + }, + { + "text" : "Substation Manno", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7586357, 47.4527561 ], + [ 7.7582376, 47.452576 ], + [ 7.7580527, 47.4524776 ], + [ 7.7580451, 47.4524919 ], + [ 7.7576823, 47.4523354 ], + [ 7.7570397, 47.452212 ], + [ 7.7564336, 47.4521321 ], + [ 7.7558872, 47.4521353 ], + [ 7.7551433, 47.4521114 ], + [ 7.7548117, 47.452083 ], + [ 7.7542857, 47.4519952 ], + [ 7.7539323, 47.4519624 ], + [ 7.7539121, 47.4519627 ], + [ 7.753907, 47.4520253 ], + [ 7.7538614, 47.4521998 ], + [ 7.7538529, 47.4522396 ], + [ 7.7538195, 47.4522951 ], + [ 7.7537399, 47.4523496 ], + [ 7.7537287, 47.4523884 ], + [ 7.7538058, 47.4525356 ], + [ 7.7540192999999995, 47.4525557 ], + [ 7.7540165, 47.4527418 ], + [ 7.7534906, 47.4527433 ], + [ 7.7534822, 47.4525988 ], + [ 7.7534381, 47.4525931 ], + [ 7.7533763, 47.4525825 ], + [ 7.7533155, 47.4525696 ], + [ 7.7532667, 47.4525598 ], + [ 7.7532174, 47.4525515 ], + [ 7.7531675, 47.4525446 ], + [ 7.7531319, 47.4525432 ], + [ 7.7530963, 47.4525442 ], + [ 7.753061, 47.4525474 ], + [ 7.7530263, 47.4525529 ], + [ 7.7528584, 47.452582 ], + [ 7.7526801, 47.4526163 ], + [ 7.7526523, 47.4526224 ], + [ 7.7525994, 47.4526391 ], + [ 7.7525509, 47.4526613 ], + [ 7.7524879, 47.4526927 ], + [ 7.7524115, 47.4527404 ], + [ 7.7516089, 47.4532271 ], + [ 7.7514164999999995, 47.4533506 ], + [ 7.7511247, 47.453552 ], + [ 7.7510052, 47.4536422 ], + [ 7.7509291000000005, 47.4537436 ], + [ 7.7508766, 47.4538143 ], + [ 7.7505933, 47.4541962 ], + [ 7.750483, 47.45436 ], + [ 7.7501477, 47.454882 ], + [ 7.749811, 47.4554057 ], + [ 7.7494743, 47.4559285 ], + [ 7.749332, 47.456138 ], + [ 7.7491733, 47.4563415 ], + [ 7.7488102, 47.4567701 ], + [ 7.7486363, 47.4569609 ], + [ 7.748439, 47.457142 ], + [ 7.7487215, 47.4573208 ], + [ 7.7491103, 47.4575309 ], + [ 7.7495327, 47.4577378 ], + [ 7.749718, 47.4577992 ], + [ 7.7497913, 47.4578235 ], + [ 7.7503728, 47.4580793 ], + [ 7.7503568, 47.4582134 ], + [ 7.7503795, 47.4584401 ], + [ 7.7503877, 47.458646 ], + [ 7.7503896, 47.4588731 ], + [ 7.7504767, 47.4589983 ], + [ 7.7505220999999995, 47.4590647 ], + [ 7.7505502, 47.4592087 ], + [ 7.750581, 47.4593329 ], + [ 7.7505899, 47.4593693 ], + [ 7.7506461, 47.4595062 ], + [ 7.7506978, 47.4596516 ], + [ 7.7506199, 47.4597856 ], + [ 7.7505455, 47.4598761 ], + [ 7.7504171, 47.4599527 ], + [ 7.750214, 47.4600728 ], + [ 7.7502286, 47.4600829 ], + [ 7.7502443, 47.4600921 ], + [ 7.750261, 47.4601003 ], + [ 7.7502788, 47.4601075 ], + [ 7.7502973, 47.4601136 ], + [ 7.7505021, 47.460222 ], + [ 7.7506725, 47.4603119 ], + [ 7.7509518, 47.460461 ], + [ 7.7512753, 47.460797 ], + [ 7.751349, 47.4608677 ], + [ 7.7514959999999995, 47.4609985 ], + [ 7.7516301, 47.4611062 ], + [ 7.7518071, 47.4612202 ], + [ 7.7521273, 47.4614249 ], + [ 7.7522664, 47.4615079 ], + [ 7.7524209, 47.4615624 ], + [ 7.7526278, 47.4616292 ], + [ 7.7528224, 47.4616969 ], + [ 7.7529291, 47.4617296 ], + [ 7.7529506, 47.4617397 ], + [ 7.7529949, 47.4617526 ], + [ 7.7530989, 47.4617891 ], + [ 7.75317, 47.4618103 ], + [ 7.7532406, 47.4618208 ], + [ 7.7534945, 47.4618786 ], + [ 7.7536465, 47.4619171 ], + [ 7.7537381, 47.46194 ], + [ 7.7537901, 47.4619439 ], + [ 7.754107, 47.4617551 ], + [ 7.7543453, 47.4607722 ], + [ 7.7545805, 47.4598722 ], + [ 7.7548306, 47.4587264 ], + [ 7.7550460999999995, 47.4578046 ], + [ 7.7560715, 47.4573035 ], + [ 7.7568775, 47.4569795 ], + [ 7.7576753, 47.4566728 ], + [ 7.7578073, 47.4566181 ], + [ 7.7593464, 47.4559803 ], + [ 7.7597647, 47.4558069 ], + [ 7.7594945, 47.4553759 ], + [ 7.7594118, 47.4551907 ], + [ 7.7591467, 47.45499 ], + [ 7.7588163, 47.4547397 ], + [ 7.7587132, 47.4542131 ], + [ 7.7588503, 47.4539438 ], + [ 7.7590858, 47.4534843 ], + [ 7.7592731, 47.4529482 ], + [ 7.7592661, 47.452947 ], + [ 7.7589764, 47.4528776 ], + [ 7.7586357, 47.4527561 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns311", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Landschachen - Huppergruben", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Landschachen - Huppergruben", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Landschachen - Huppergruben", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Landschachen - Huppergruben", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8076215, 47.4381334 ], + [ 7.8075404, 47.4381812 ], + [ 7.8074966, 47.4381701 ], + [ 7.8074224, 47.4380926 ], + [ 7.8072256, 47.4379798 ], + [ 7.8071264, 47.437923 ], + [ 7.8070181, 47.4378308 ], + [ 7.8068976, 47.4379264 ], + [ 7.8066778, 47.4378917 ], + [ 7.8066086, 47.4378807 ], + [ 7.806537, 47.4378695 ], + [ 7.8065175, 47.4378586 ], + [ 7.8064948, 47.4378459 ], + [ 7.8064503, 47.4378211 ], + [ 7.8061438, 47.4377804 ], + [ 7.8060632, 47.4376957 ], + [ 7.8059405, 47.4376784 ], + [ 7.8058954, 47.4375777 ], + [ 7.8057682, 47.4374579 ], + [ 7.8055316999999995, 47.4373174 ], + [ 7.8055132, 47.4373064 ], + [ 7.8053809, 47.4372279 ], + [ 7.8052382, 47.4371208 ], + [ 7.8050507, 47.4370439 ], + [ 7.8049664, 47.4366201 ], + [ 7.8048454, 47.4366428 ], + [ 7.8044564, 47.4366888 ], + [ 7.8044697, 47.4367067 ], + [ 7.8044498, 47.4367154 ], + [ 7.8044225, 47.4367222 ], + [ 7.8041102, 47.4366867 ], + [ 7.8039542, 47.436628 ], + [ 7.8037905, 47.4365664 ], + [ 7.803517, 47.4364635 ], + [ 7.8031887, 47.4363119 ], + [ 7.80298, 47.4362155 ], + [ 7.8024234, 47.4360661 ], + [ 7.8023977, 47.4359496 ], + [ 7.8023655, 47.4358033 ], + [ 7.8021815, 47.4356694 ], + [ 7.8020148, 47.4356782 ], + [ 7.8019599, 47.4356812 ], + [ 7.8008089, 47.436424 ], + [ 7.8008616, 47.4364431 ], + [ 7.8009006, 47.4364573 ], + [ 7.800992, 47.4364847 ], + [ 7.8010835, 47.4365121 ], + [ 7.8011036, 47.4365167 ], + [ 7.8011304, 47.436523 ], + [ 7.8012476, 47.4365502 ], + [ 7.8013056, 47.4365637 ], + [ 7.8016885, 47.4366528 ], + [ 7.8017888, 47.4366761 ], + [ 7.8018646, 47.4366937 ], + [ 7.8025731, 47.4368696 ], + [ 7.8026962, 47.4369001 ], + [ 7.8029157, 47.4369635 ], + [ 7.8029447, 47.4369718 ], + [ 7.8030786, 47.4370105 ], + [ 7.803153, 47.4370462 ], + [ 7.8032646, 47.4370998 ], + [ 7.803267, 47.4371013 ], + [ 7.8033244, 47.4371356 ], + [ 7.8033651, 47.43716 ], + [ 7.8033746, 47.4371656 ], + [ 7.8035983, 47.4372994 ], + [ 7.8036644, 47.4373352 ], + [ 7.8038158, 47.4374171 ], + [ 7.8038988, 47.4374619 ], + [ 7.8039165, 47.4374715 ], + [ 7.8039606, 47.4374953 ], + [ 7.8039608, 47.4374954 ], + [ 7.8040563, 47.4375388 ], + [ 7.8043326, 47.4376642 ], + [ 7.8048448, 47.4378645 ], + [ 7.8049665, 47.4379185 ], + [ 7.8050037, 47.437935 ], + [ 7.8050232, 47.4379437 ], + [ 7.8051241000000005, 47.4380107 ], + [ 7.8051319, 47.4380159 ], + [ 7.8051779, 47.4380464 ], + [ 7.8053999, 47.438234 ], + [ 7.8055261, 47.4383582 ], + [ 7.8056539, 47.4384841 ], + [ 7.8056626, 47.4384927 ], + [ 7.8056935, 47.438523 ], + [ 7.8058505, 47.4386777 ], + [ 7.8060808, 47.4388931 ], + [ 7.8061274, 47.4389324 ], + [ 7.806392, 47.4391554 ], + [ 7.8064051, 47.4391664 ], + [ 7.8065286, 47.4392705 ], + [ 7.8066344, 47.4393503 ], + [ 7.8067215, 47.4393929 ], + [ 7.8067630999999995, 47.4394132 ], + [ 7.8069352, 47.4394811 ], + [ 7.8071164, 47.4395313 ], + [ 7.807313, 47.4395527 ], + [ 7.8080581, 47.4394661 ], + [ 7.8079667, 47.439224 ], + [ 7.8079611, 47.4392091 ], + [ 7.8079464, 47.43917 ], + [ 7.8079437, 47.4390041 ], + [ 7.8079501, 47.438966 ], + [ 7.8079706, 47.4388447 ], + [ 7.807999, 47.4386685 ], + [ 7.8081268999999995, 47.4388529 ], + [ 7.8081686, 47.438738 ], + [ 7.8081903, 47.4386401 ], + [ 7.8082741, 47.4381542 ], + [ 7.8083482, 47.4376027 ], + [ 7.8083552, 47.4374221 ], + [ 7.8083884, 47.4372397 ], + [ 7.8084121, 47.4368442 ], + [ 7.8084502, 47.436256 ], + [ 7.8084877, 47.4356712 ], + [ 7.8085001, 47.4352677 ], + [ 7.8084988, 47.4349736 ], + [ 7.8084862, 47.4348355 ], + [ 7.8084734000000005, 47.4346293 ], + [ 7.8083234, 47.4345248 ], + [ 7.8080692, 47.4340216 ], + [ 7.8080992, 47.4342403 ], + [ 7.8081487, 47.4345701 ], + [ 7.8082071, 47.4350427 ], + [ 7.8082214, 47.4351519 ], + [ 7.8082076, 47.4353222 ], + [ 7.8081787, 47.4353958 ], + [ 7.8081355, 47.4354678 ], + [ 7.8080119, 47.4355975 ], + [ 7.8079048, 47.4357099 ], + [ 7.8078701, 47.4358629 ], + [ 7.8078326, 47.4360282 ], + [ 7.8077855, 47.4362356 ], + [ 7.8077003, 47.4362627 ], + [ 7.8077442, 47.4363373 ], + [ 7.8077767, 47.4363927 ], + [ 7.8078189, 47.4365297 ], + [ 7.8078305, 47.4366706 ], + [ 7.8078126, 47.4370249 ], + [ 7.8077783, 47.4373716 ], + [ 7.8077485, 47.4375267 ], + [ 7.8077193, 47.4376785 ], + [ 7.8076411, 47.4379919 ], + [ 7.8076215, 47.4381334 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr154", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Reckenacker", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Reckenacker", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Reckenacker", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Reckenacker", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8797803, 47.4140886 ], + [ 7.8803849, 47.4135286 ], + [ 7.8804757, 47.4136431 ], + [ 7.8806899, 47.4135632 ], + [ 7.8814798, 47.4133287 ], + [ 7.8814371, 47.4134059 ], + [ 7.8813921, 47.4134735 ], + [ 7.8813230999999995, 47.4135073 ], + [ 7.881322, 47.413644 ], + [ 7.8813402, 47.4137028 ], + [ 7.8813805, 47.4140157 ], + [ 7.8814844, 47.4142433 ], + [ 7.8816649, 47.4143478 ], + [ 7.881692, 47.4143091 ], + [ 7.8816632, 47.4142683 ], + [ 7.8816358, 47.4142277 ], + [ 7.8816146, 47.4141916 ], + [ 7.8815866, 47.414136 ], + [ 7.8815653, 47.4140828 ], + [ 7.8815287, 47.413971 ], + [ 7.8815095, 47.4139293 ], + [ 7.8814962, 47.413873 ], + [ 7.8814944, 47.4138594 ], + [ 7.8814965, 47.4138469 ], + [ 7.8815223, 47.4137711 ], + [ 7.8815309, 47.4137292 ], + [ 7.8815496, 47.4136735 ], + [ 7.8815494, 47.4136682 ], + [ 7.8815455, 47.4136617 ], + [ 7.8815296, 47.4136461 ], + [ 7.881522, 47.4136311 ], + [ 7.88152, 47.4136139 ], + [ 7.8815238999999995, 47.4135215 ], + [ 7.8815311999999995, 47.4134714 ], + [ 7.8815551, 47.4133536 ], + [ 7.8815562, 47.4133379 ], + [ 7.8815542, 47.4133158 ], + [ 7.881549, 47.4132959 ], + [ 7.8815414, 47.4132819 ], + [ 7.8815275, 47.413268 ], + [ 7.8814779999999995, 47.413248 ], + [ 7.8814496, 47.4132551 ], + [ 7.8810839, 47.4133649 ], + [ 7.8807692, 47.4134471 ], + [ 7.8805334, 47.413502 ], + [ 7.8804543, 47.4133572 ], + [ 7.880278, 47.4134475 ], + [ 7.8800757, 47.4136068 ], + [ 7.8800007, 47.4137093 ], + [ 7.8796477, 47.4140099 ], + [ 7.8797803, 47.4140886 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns186", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Mapprach - Hofmatt", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Mapprach - Hofmatt", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Mapprach - Hofmatt", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Mapprach - Hofmatt", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.552433, 47.4901393 ], + [ 7.5523458, 47.4901536 ], + [ 7.5524348, 47.4903908 ], + [ 7.552533, 47.4906253 ], + [ 7.5526408, 47.4908619 ], + [ 7.5528088, 47.4911713 ], + [ 7.5530119, 47.4914706 ], + [ 7.5532255, 47.4917656 ], + [ 7.5532996, 47.4917393 ], + [ 7.5530872, 47.4914474 ], + [ 7.5528977, 47.491147 ], + [ 7.5527657999999995, 47.4909055 ], + [ 7.5527313, 47.4908411 ], + [ 7.5527066, 47.4907898 ], + [ 7.552621, 47.4906077 ], + [ 7.5525231, 47.4903745 ], + [ 7.552433, 47.4901393 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns021", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Marbach", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Marbach", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Marbach", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Marbach", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6041101, 47.4605166 ], + [ 7.6041142, 47.4605094 ], + [ 7.6043379, 47.4601854 ], + [ 7.6043489, 47.4601685 ], + [ 7.604464, 47.4600006 ], + [ 7.6046366, 47.4598509 ], + [ 7.6047186, 47.4597784 ], + [ 7.6046864, 47.4596347 ], + [ 7.6045357, 47.459517 ], + [ 7.6043439, 47.4593621 ], + [ 7.6039821, 47.4592268 ], + [ 7.6038806, 47.4591754 ], + [ 7.6035797, 47.4590425 ], + [ 7.6035733, 47.4590196 ], + [ 7.603485, 47.4587791 ], + [ 7.6031159, 47.4585544 ], + [ 7.6031215, 47.4585016 ], + [ 7.6031214, 47.4584388 ], + [ 7.6027921, 47.4582424 ], + [ 7.6026374, 47.4581338 ], + [ 7.6025459, 47.4580734 ], + [ 7.6021619000000005, 47.458059 ], + [ 7.6021587, 47.4580552 ], + [ 7.6021551, 47.458055 ], + [ 7.6020544999999995, 47.4579305 ], + [ 7.602007, 47.4578736 ], + [ 7.6016175, 47.4575446 ], + [ 7.6013783, 47.4573516 ], + [ 7.6011938, 47.4572082 ], + [ 7.601154, 47.4571942 ], + [ 7.6008843, 47.4571113 ], + [ 7.6007182, 47.4568018 ], + [ 7.6005307, 47.4567008 ], + [ 7.600398, 47.4566411 ], + [ 7.6000945, 47.4565717 ], + [ 7.600074, 47.4565527 ], + [ 7.5999816, 47.4563893 ], + [ 7.5999832, 47.4563446 ], + [ 7.599832, 47.456007 ], + [ 7.5996678, 47.455689 ], + [ 7.5993061, 47.4548326 ], + [ 7.5992451, 47.4546962 ], + [ 7.598684, 47.4543645 ], + [ 7.5981261, 47.4540071 ], + [ 7.5979664, 47.4538847 ], + [ 7.5977651, 47.4537292 ], + [ 7.5975351, 47.453605 ], + [ 7.5973166, 47.4534768 ], + [ 7.5970751, 47.4533331 ], + [ 7.5969194, 47.4531113 ], + [ 7.5967134, 47.4528264 ], + [ 7.5965753, 47.4527098 ], + [ 7.5964545999999995, 47.4526671 ], + [ 7.5961438, 47.4523872 ], + [ 7.5957467, 47.4520452 ], + [ 7.5952611999999995, 47.4518755 ], + [ 7.5947556, 47.451701 ], + [ 7.5944339, 47.4516352 ], + [ 7.5939457, 47.4514996 ], + [ 7.593647, 47.4514455 ], + [ 7.5934577, 47.4514691 ], + [ 7.5927868, 47.4517143 ], + [ 7.5919149, 47.451914 ], + [ 7.5908767, 47.4521685 ], + [ 7.5905667999999995, 47.4522117 ], + [ 7.5899702, 47.4523273 ], + [ 7.589517, 47.4524408 ], + [ 7.5892017, 47.4525853 ], + [ 7.5884909, 47.4529405 ], + [ 7.5882217, 47.4531394 ], + [ 7.5879182, 47.4533812 ], + [ 7.5876947999999995, 47.4535606 ], + [ 7.587673, 47.4536844 ], + [ 7.5876811, 47.4537845 ], + [ 7.587862, 47.4538426 ], + [ 7.5882022, 47.4538685 ], + [ 7.5883748, 47.4540084 ], + [ 7.5883751, 47.4541077 ], + [ 7.588341, 47.4542187 ], + [ 7.5884271, 47.4542244 ], + [ 7.5889692, 47.4541011 ], + [ 7.5895542, 47.4539252 ], + [ 7.5901049, 47.4537901 ], + [ 7.5909484, 47.4536722 ], + [ 7.5911511, 47.4536472 ], + [ 7.5911506, 47.4536456 ], + [ 7.5917101, 47.4535865 ], + [ 7.5923038, 47.4535099 ], + [ 7.5933079, 47.453271 ], + [ 7.5935084, 47.4531549 ], + [ 7.5939002, 47.4531612 ], + [ 7.5939607, 47.4532292 ], + [ 7.5946336, 47.4531874 ], + [ 7.5951759, 47.4531322 ], + [ 7.5954775, 47.4531999 ], + [ 7.5955984999999995, 47.4533701 ], + [ 7.5961927, 47.4538667 ], + [ 7.5963641, 47.4540981 ], + [ 7.5964954, 47.4543364 ], + [ 7.5966612, 47.454599 ], + [ 7.5967321, 47.4548033 ], + [ 7.5973551, 47.4548433 ], + [ 7.5976067, 47.4550201 ], + [ 7.5977781, 47.4552379 ], + [ 7.59805, 47.455442 ], + [ 7.598171, 47.4555849 ], + [ 7.5982525, 47.4559595 ], + [ 7.5987057, 47.4563472 ], + [ 7.5996442, 47.4572745 ], + [ 7.6006522, 47.4584246 ], + [ 7.6010168, 47.4589185 ], + [ 7.601133, 47.4591052 ], + [ 7.6011466, 47.459113 ], + [ 7.6016814, 47.4594072 ], + [ 7.6020435, 47.4595527 ], + [ 7.6022849, 47.4596575 ], + [ 7.6025783, 47.459844 ], + [ 7.6028974, 47.4600187 ], + [ 7.6032250999999995, 47.4601643 ], + [ 7.6035527, 47.4602631 ], + [ 7.6037682, 47.4603504 ], + [ 7.6039236, 47.4604728 ], + [ 7.6041101, 47.4605166 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr016", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Schlossgrabe", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Schlossgrabe", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Schlossgrabe", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Schlossgrabe", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.2272365, 47.4942847 ], + [ 8.2273081, 47.4942935 ], + [ 8.2281283, 47.4938853 ], + [ 8.2290618, 47.4934208 ], + [ 8.2295498, 47.4931773 ], + [ 8.2304794, 47.4927133 ], + [ 8.2312506, 47.4923284 ], + [ 8.2312645, 47.4922767 ], + [ 8.2304301, 47.4913999 ], + [ 8.2301278, 47.4910815 ], + [ 8.230028, 47.4909539 ], + [ 8.2299598, 47.4908178 ], + [ 8.229906, 47.4907174 ], + [ 8.2299028, 47.4907147 ], + [ 8.2298993, 47.4907121 ], + [ 8.2298956, 47.4907096 ], + [ 8.2298917, 47.4907074 ], + [ 8.2298875, 47.4907053 ], + [ 8.2298832, 47.4907034 ], + [ 8.2298786, 47.4907017 ], + [ 8.229874, 47.4907002 ], + [ 8.2298692, 47.4906989 ], + [ 8.2298642, 47.4906978 ], + [ 8.2298592, 47.490697 ], + [ 8.2298541, 47.4906964 ], + [ 8.229849, 47.490696 ], + [ 8.2298437, 47.4906958 ], + [ 8.2298383, 47.4906959 ], + [ 8.229833, 47.4906962 ], + [ 8.2298277, 47.4906968 ], + [ 8.2298225, 47.4906976 ], + [ 8.2298174, 47.4906986 ], + [ 8.2298124, 47.4906999 ], + [ 8.229807600000001, 47.4907014 ], + [ 8.2298029, 47.4907031 ], + [ 8.2297984, 47.490705 ], + [ 8.2297941, 47.4907072 ], + [ 8.22979, 47.4907095 ], + [ 8.2297861, 47.490712 ], + [ 8.2291532, 47.4910617 ], + [ 8.2280855, 47.4916512 ], + [ 8.2271777, 47.4921519 ], + [ 8.2270133, 47.4922138 ], + [ 8.2259094, 47.4928235 ], + [ 8.2258973, 47.4928763 ], + [ 8.2263995, 47.4934042 ], + [ 8.226486, 47.4934948 ], + [ 8.2272365, 47.4942847 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VBS_20", + "country" : "CHE", + "name" : [ + { + "text" : "VBS_20 Brugg", + "lang" : "de-CH" + }, + { + "text" : "VBS_20 Brugg", + "lang" : "fr-CH" + }, + { + "text" : "VBS_20 Brugg", + "lang" : "it-CH" + }, + { + "text" : "VBS_20 Brugg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "regulationExemption" : "YES", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Eidgenössisches Departement für Verteidigung, Bevölkerungsschutz und Sport (VBS)", + "lang" : "de-CH" + }, + { + "text" : "Département fédéral de la défense, de la protection de la population et des sports (DDPS)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento federale della difesa, della protezione della popolazione e dello sport (DDPS)", + "lang" : "it-CH" + }, + { + "text" : "Federal Department of Defence, Civil Protection and Sport (DDPS)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Lageverfolgungszentrum der Armee LVZ A", + "lang" : "de-CH" + }, + { + "text" : "Centre de suivi de la situation de l’armée, CSS A", + "lang" : "fr-CH" + }, + { + "text" : "Centro di monitoraggio della situazione dell’esercito, Centro mon sit Es", + "lang" : "it-CH" + }, + { + "text" : "Joint Operation Center, JOC", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vtg.admin.ch/en/joint-operations-command", + "email" : "lvz.op@vtg.admin.ch", + "phone" : "+41 58 464 96 43", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.6223278, 47.4574758 ], + [ 9.6220738, 47.4572329 ], + [ 9.6199573, 47.4554157 ], + [ 9.617706, 47.4536747 ], + [ 9.6153256, 47.4520146 ], + [ 9.6128225, 47.4504397 ], + [ 9.6102034, 47.4489543 ], + [ 9.6074751, 47.4475623 ], + [ 9.604645, 47.4462673 ], + [ 9.6017204, 47.4450728 ], + [ 9.5987093, 47.4439819 ], + [ 9.5956194, 47.4429975 ], + [ 9.5924591, 47.4421223 ], + [ 9.5892366, 47.4413585 ], + [ 9.5859606, 47.4407081 ], + [ 9.5826396, 47.440173 ], + [ 9.5792825, 47.4397544 ], + [ 9.5758981, 47.4394536 ], + [ 9.5724953, 47.4392713 ], + [ 9.569083299999999, 47.4392079 ], + [ 9.565671, 47.4392637 ], + [ 9.5622674, 47.4394385 ], + [ 9.5588816, 47.4397318 ], + [ 9.5415152, 47.4415442 ], + [ 9.5381001, 47.4419627 ], + [ 9.5347219, 47.4425017 ], + [ 9.5313898, 47.4431598 ], + [ 9.528113, 47.4439353 ], + [ 9.5249004, 47.4448259 ], + [ 9.5217608, 47.4458293 ], + [ 9.5187028, 47.4469427 ], + [ 9.5157347, 47.4481631 ], + [ 9.5128647, 47.449487 ], + [ 9.5101006, 47.450911 ], + [ 9.5074501, 47.4524311 ], + [ 9.5049203, 47.4540432 ], + [ 9.5025182, 47.4557428 ], + [ 9.5002504, 47.4575253 ], + [ 9.4981231, 47.4593858 ], + [ 9.4961422, 47.4613192 ], + [ 9.494313, 47.4633203 ], + [ 9.4926406, 47.4653835 ], + [ 9.4911297, 47.4675032 ], + [ 9.4897843, 47.4696736 ], + [ 9.4886081, 47.4718888 ], + [ 9.4876045, 47.4741426 ], + [ 9.4867761, 47.476429 ], + [ 9.4861253, 47.4787416 ], + [ 9.485653899999999, 47.4810742 ], + [ 9.4853631, 47.4834202 ], + [ 9.4852539, 47.4857734 ], + [ 9.4853265, 47.4881272 ], + [ 9.4855808, 47.4904752 ], + [ 9.486016, 47.492811 ], + [ 9.4866311, 47.4951281 ], + [ 9.4874243, 47.4974203 ], + [ 9.4883935, 47.4996811 ], + [ 9.4895361, 47.5019045 ], + [ 9.4908489, 47.5040842 ], + [ 9.4923284, 47.5062145 ], + [ 9.4939705, 47.5082893 ], + [ 9.4957708, 47.5103029 ], + [ 9.4977242, 47.51225 ], + [ 9.4998256, 47.5141251 ], + [ 9.5020691, 47.5159231 ], + [ 9.5044485, 47.517639 ], + [ 9.5069574, 47.5192681 ], + [ 9.5095889, 47.520806 ], + [ 9.5123357, 47.5222485 ], + [ 9.5151904, 47.5235915 ], + [ 9.518145, 47.5248314 ], + [ 9.5211916, 47.5259647 ], + [ 9.5243217, 47.5269885 ], + [ 9.5275266, 47.5278998 ], + [ 9.5307978, 47.5286961 ], + [ 9.534126, 47.5293753 ], + [ 9.5375023, 47.5299355 ], + [ 9.540917199999999, 47.5303751 ], + [ 9.5443615, 47.5306931 ], + [ 9.5478257, 47.5308883 ], + [ 9.5513003, 47.5309604 ], + [ 9.5547756, 47.530909199999996 ], + [ 9.5582422, 47.5307347 ], + [ 9.5596591, 47.5306126 ], + [ 9.5618255, 47.5045585 ], + [ 9.5612987, 47.5000845 ], + [ 9.5612549, 47.4993162 ], + [ 9.5613034, 47.498548 ], + [ 9.561444, 47.497785 ], + [ 9.5616756, 47.4970323 ], + [ 9.5619967, 47.4962948 ], + [ 9.5624053, 47.4955775 ], + [ 9.5626683, 47.4952089 ], + [ 9.5628985, 47.4948851 ], + [ 9.5634732, 47.4942222 ], + [ 9.5641255, 47.4935931 ], + [ 9.5648512, 47.493002 ], + [ 9.5656453, 47.4924529 ], + [ 9.5665026, 47.4919494 ], + [ 9.5766773, 47.48645 ], + [ 9.5787171, 47.4853472 ], + [ 9.5792268, 47.4850609 ], + [ 9.5797185, 47.4847605 ], + [ 9.5801913, 47.4844465 ], + [ 9.5806445, 47.4841194 ], + [ 9.5810772, 47.4837799 ], + [ 9.5814887, 47.4834284 ], + [ 9.5818749, 47.4830658 ], + [ 9.5822386, 47.4826927 ], + [ 9.5825792, 47.4823097 ], + [ 9.5828961, 47.4819174 ], + [ 9.583188700000001, 47.4815166 ], + [ 9.5834566, 47.4811079 ], + [ 9.5929598, 47.465846 ], + [ 9.5932131, 47.4654726 ], + [ 9.5934871, 47.4651061 ], + [ 9.5937814, 47.4647469 ], + [ 9.594081, 47.4644101 ], + [ 9.5946985, 47.4637296 ], + [ 9.5948785, 47.4635443 ], + [ 9.595075, 47.4633669 ], + [ 9.5952872, 47.463198 ], + [ 9.5955144, 47.4630384 ], + [ 9.5957557, 47.4628885 ], + [ 9.5960102, 47.462749 ], + [ 9.5962768, 47.4626204 ], + [ 9.5965546, 47.4625032 ], + [ 9.5968426, 47.4623978 ], + [ 9.5971396, 47.4623046 ], + [ 9.5974445, 47.4622241 ], + [ 9.5977561, 47.4621564 ], + [ 9.600351, 47.4616525 ], + [ 9.6004828, 47.4616294 ], + [ 9.6006162, 47.4616108 ], + [ 9.6007509, 47.461597 ], + [ 9.6008864, 47.4615878 ], + [ 9.6010224, 47.4615834 ], + [ 9.6011586, 47.4615837 ], + [ 9.6012946, 47.4615887 ], + [ 9.60143, 47.4615985 ], + [ 9.6015645, 47.4616131 ], + [ 9.6016977, 47.4616322 ], + [ 9.6018293, 47.461656 ], + [ 9.601959, 47.4616843 ], + [ 9.6021686, 47.4617387 ], + [ 9.6023734, 47.461801 ], + [ 9.6026701, 47.4619089 ], + [ 9.6028599, 47.4619901 ], + [ 9.6030426, 47.4620784 ], + [ 9.603364299999999, 47.4622588 ], + [ 9.6035868, 47.4624005 ], + [ 9.603798, 47.4625499 ], + [ 9.6039975, 47.4627065 ], + [ 9.6041846, 47.4628701 ], + [ 9.6043588, 47.46304 ], + [ 9.6045197, 47.4632159 ], + [ 9.6046668, 47.4633972 ], + [ 9.6047998, 47.4635835 ], + [ 9.6049181, 47.4637742 ], + [ 9.6050216, 47.4639689 ], + [ 9.60511, 47.464167 ], + [ 9.6054271, 47.4649513 ], + [ 9.605615, 47.465443 ], + [ 9.6057824, 47.4659382 ], + [ 9.605929, 47.4664364 ], + [ 9.6060549, 47.4669372 ], + [ 9.6061598, 47.4674403 ], + [ 9.6062437, 47.4679452 ], + [ 9.6064522, 47.4693809 ], + [ 9.6064751, 47.4694913 ], + [ 9.6065113, 47.4696001 ], + [ 9.6065607, 47.4697064 ], + [ 9.6066228, 47.4698097 ], + [ 9.6066974, 47.4699091 ], + [ 9.6067837, 47.470004 ], + [ 9.6068814, 47.4700937 ], + [ 9.6069896, 47.4701777 ], + [ 9.6071077, 47.4702553 ], + [ 9.6072349, 47.470326 ], + [ 9.6073702, 47.4703894 ], + [ 9.6075128, 47.470445 ], + [ 9.6076617, 47.4704924 ], + [ 9.6078159, 47.4705313 ], + [ 9.6079742, 47.4705614 ], + [ 9.6081358, 47.4705826 ], + [ 9.6082993, 47.4705947 ], + [ 9.6084637, 47.4705975 ], + [ 9.6086279, 47.4705911 ], + [ 9.6087908, 47.4705756 ], + [ 9.6091507, 47.4705208 ], + [ 9.609503, 47.4704469 ], + [ 9.6098455, 47.4703542 ], + [ 9.6101761, 47.4702434 ], + [ 9.6104927, 47.4701151 ], + [ 9.6107933, 47.4699703 ], + [ 9.6110759, 47.4698097 ], + [ 9.6113388, 47.4696344 ], + [ 9.6115803, 47.4694455 ], + [ 9.611799, 47.4692442 ], + [ 9.6119935, 47.4690317 ], + [ 9.6121624, 47.4688095 ], + [ 9.6163787, 47.4626791 ], + [ 9.6166602, 47.4623077 ], + [ 9.6169669, 47.4619456 ], + [ 9.617185, 47.4617098 ], + [ 9.617532, 47.4613648 ], + [ 9.6204979, 47.4585586 ], + [ 9.6206572, 47.4584155 ], + [ 9.6208269, 47.458278 ], + [ 9.6210064, 47.4581464 ], + [ 9.6211954, 47.458021 ], + [ 9.6213933, 47.4579022 ], + [ 9.6215998, 47.4577902 ], + [ 9.6218141, 47.4576853 ], + [ 9.6221495, 47.4575419 ], + [ 9.6223278, 47.4574758 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZR001", + "country" : "CHE", + "name" : [ + { + "text" : "LSZR St.Gallen", + "lang" : "de-CH" + }, + { + "text" : "LSZR St.Gallen", + "lang" : "fr-CH" + }, + { + "text" : "LSZR St.Gallen", + "lang" : "it-CH" + }, + { + "text" : "LSZR St.Gallen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Special Flight Office (SFO)", + "lang" : "de-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "fr-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "it-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "en-GB" + } + ], + "siteURL" : "https://skyguide.ch/services/special-flights", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.9043503, 47.1717158 ], + [ 8.904341, 47.1715746 ], + [ 8.9043209, 47.171434 ], + [ 8.90429, 47.1712943 ], + [ 8.9042485, 47.1711559 ], + [ 8.9041964, 47.1710192 ], + [ 8.9041338, 47.1708845 ], + [ 8.904061, 47.1707523 ], + [ 8.9039782, 47.1706228 ], + [ 8.9038855, 47.1704964 ], + [ 8.9037833, 47.1703735 ], + [ 8.9036718, 47.1702545 ], + [ 8.9035513, 47.1701396 ], + [ 8.9034221, 47.1700291 ], + [ 8.9032846, 47.1699234 ], + [ 8.9031393, 47.1698228 ], + [ 8.9029864, 47.1697275 ], + [ 8.9028264, 47.1696377 ], + [ 8.9026597, 47.1695538 ], + [ 8.9024868, 47.169476 ], + [ 8.9023082, 47.1694045 ], + [ 8.9021243, 47.1693394 ], + [ 8.9019357, 47.1692809 ], + [ 8.9017429, 47.1692293 ], + [ 8.9015463, 47.1691847 ], + [ 8.9013466, 47.1691471 ], + [ 8.9011443, 47.1691167 ], + [ 8.90094, 47.1690935 ], + [ 8.9007341, 47.1690777 ], + [ 8.9005273, 47.1690692 ], + [ 8.9003202, 47.1690682 ], + [ 8.9001132, 47.1690745 ], + [ 8.899907, 47.1690882 ], + [ 8.8997022, 47.1691092 ], + [ 8.8994992, 47.1691376 ], + [ 8.8992987, 47.1691731 ], + [ 8.8991012, 47.1692157 ], + [ 8.8989073, 47.1692654 ], + [ 8.8987174, 47.1693218 ], + [ 8.8985321, 47.169385 ], + [ 8.8983519, 47.1694547 ], + [ 8.8981773, 47.1695308 ], + [ 8.8980088, 47.1696129 ], + [ 8.8978469, 47.169701 ], + [ 8.8976919, 47.1697948 ], + [ 8.8975443, 47.1698939 ], + [ 8.8974045, 47.1699982 ], + [ 8.8972729, 47.1701073 ], + [ 8.8971499, 47.1702209 ], + [ 8.8970357, 47.1703388 ], + [ 8.8969308, 47.1704606 ], + [ 8.8968353, 47.170586 ], + [ 8.8967496, 47.1707146 ], + [ 8.8966739, 47.1708461 ], + [ 8.8966084, 47.1709801 ], + [ 8.8965533, 47.1711163 ], + [ 8.8965087, 47.1712543 ], + [ 8.8964747, 47.1713937 ], + [ 8.8964515, 47.171534 ], + [ 8.8964391, 47.171675 ], + [ 8.8964375, 47.1718163 ], + [ 8.8964467, 47.1719575 ], + [ 8.8964668, 47.1720981 ], + [ 8.8964977, 47.1722378 ], + [ 8.8965392, 47.1723762 ], + [ 8.8965913, 47.1725129 ], + [ 8.8966538, 47.1726476 ], + [ 8.8967266, 47.1727798 ], + [ 8.8968094, 47.1729093 ], + [ 8.8969021, 47.1730357 ], + [ 8.8970043, 47.1731586 ], + [ 8.8971158, 47.1732776 ], + [ 8.8972363, 47.1733926 ], + [ 8.8973655, 47.173503 ], + [ 8.8975029, 47.1736087 ], + [ 8.8976483, 47.1737094 ], + [ 8.8978012, 47.1738047 ], + [ 8.8979612, 47.1738944 ], + [ 8.8981279, 47.1739783 ], + [ 8.8983008, 47.1740562 ], + [ 8.8984794, 47.1741277 ], + [ 8.898663299999999, 47.1741928 ], + [ 8.898852, 47.1742513 ], + [ 8.8990448, 47.1743029 ], + [ 8.8992414, 47.1743476 ], + [ 8.8994411, 47.1743852 ], + [ 8.8996434, 47.1744156 ], + [ 8.8998478, 47.1744387 ], + [ 8.9000536, 47.1744545 ], + [ 8.9002604, 47.174463 ], + [ 8.9004676, 47.1744641 ], + [ 8.9006746, 47.1744577 ], + [ 8.9008808, 47.174444 ], + [ 8.9010857, 47.174423 ], + [ 8.9012886, 47.1743947 ], + [ 8.9014892, 47.1743591 ], + [ 8.901686699999999, 47.1743165 ], + [ 8.9018806, 47.1742668 ], + [ 8.9020705, 47.1742104 ], + [ 8.9022558, 47.1741472 ], + [ 8.902436, 47.1740775 ], + [ 8.9026106, 47.1740014 ], + [ 8.9027792, 47.1739192 ], + [ 8.9029411, 47.1738312 ], + [ 8.903096099999999, 47.1737374 ], + [ 8.9032437, 47.1736383 ], + [ 8.9033835, 47.173534 ], + [ 8.9035151, 47.1734249 ], + [ 8.9036381, 47.1733112 ], + [ 8.9037523, 47.1731933 ], + [ 8.9038572, 47.1730715 ], + [ 8.9039526, 47.1729461 ], + [ 8.9040383, 47.1728175 ], + [ 8.904114, 47.172686 ], + [ 8.9041795, 47.172552 ], + [ 8.9042346, 47.1724158 ], + [ 8.9042792, 47.1722778 ], + [ 8.9043132, 47.1721384 ], + [ 8.9043364, 47.1719981 ], + [ 8.9043488, 47.171857 ], + [ 8.9043503, 47.1717158 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0110", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Siebnen", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Siebnen", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Siebnen", + "lang" : "it-CH" + }, + { + "text" : "Substation Siebnen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.9043453, 46.8379495 ], + [ 6.9171594, 46.8458995 ], + [ 6.9177833, 46.8463207 ], + [ 6.9180316, 46.8462687 ], + [ 6.918278, 46.8464476 ], + [ 6.9193179, 46.8472029 ], + [ 6.9189127, 46.8474984 ], + [ 6.9186828, 46.847666 ], + [ 6.9192763, 46.8480266 ], + [ 6.919882, 46.8483947 ], + [ 6.9199166, 46.8483686 ], + [ 6.9200444999999995, 46.8482722 ], + [ 6.925425, 46.8517508 ], + [ 6.9256333, 46.8516263 ], + [ 6.9257507, 46.8515561 ], + [ 6.926183, 46.8518277 ], + [ 6.9271324, 46.8524241 ], + [ 6.926989, 46.8525326 ], + [ 6.9268061, 46.8526709 ], + [ 6.9302501, 46.8547014 ], + [ 6.931048, 46.8551717 ], + [ 6.9315531, 46.8516675 ], + [ 6.9315428, 46.8516612 ], + [ 6.9176651, 46.8432247 ], + [ 6.9172262, 46.8429612 ], + [ 6.9185172, 46.8421941 ], + [ 6.9180919, 46.8418527 ], + [ 6.9195734, 46.8409719 ], + [ 6.9191376, 46.8406182 ], + [ 6.9190308, 46.8406798 ], + [ 6.9190299, 46.840679 ], + [ 6.9171897, 46.8391566 ], + [ 6.9172905, 46.8390968 ], + [ 6.9181254, 46.838604 ], + [ 6.9181238, 46.8386026 ], + [ 6.9181303, 46.8385987 ], + [ 6.9183767, 46.8384526 ], + [ 6.9164155, 46.8368915 ], + [ 6.915635, 46.8360742 ], + [ 6.9148372, 46.8364688 ], + [ 6.9126863, 46.8375301 ], + [ 6.9126232, 46.8375615 ], + [ 6.9114738, 46.8381282 ], + [ 6.9108583, 46.8384245 ], + [ 6.9118442, 46.8393418 ], + [ 6.9125935, 46.8389807 ], + [ 6.9125937, 46.8389809 ], + [ 6.9141541, 46.8402279 ], + [ 6.9134499, 46.8406449 ], + [ 6.9060175, 46.8361203 ], + [ 6.904942, 46.83618 ], + [ 6.9048807, 46.8361427 ], + [ 6.8998538, 46.8330831 ], + [ 6.8996486, 46.8332301 ], + [ 6.8982985, 46.8341966 ], + [ 6.9043453, 46.8379495 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSMP004", + "country" : "CHE", + "name" : [ + { + "text" : "LSMP Payerne Ziv (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSMP Payerne Ziv (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSMP Payerne Ziv (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSMP Payerne Ziv (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Skyguide Special Flight Office", + "lang" : "de-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "it-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.skyguide.ch/services/special-flights", + "email" : "specialflight@skyguide.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.0152323, 46.5835769 ], + [ 8.0151179, 46.5812235 ], + [ 8.014825, 46.5788774 ], + [ 8.0143544, 46.5765451 ], + [ 8.0137075, 46.5742329 ], + [ 8.0128861, 46.5719473 ], + [ 8.0118925, 46.5696945 ], + [ 8.0107293, 46.5674806 ], + [ 8.0093999, 46.5653117 ], + [ 8.0079078, 46.5631937 ], + [ 8.0062571, 46.5611325 ], + [ 8.0044525, 46.5591336 ], + [ 8.0024988, 46.5572026 ], + [ 8.0004014, 46.5553448 ], + [ 7.9981661, 46.5535652 ], + [ 7.995799, 46.5518687 ], + [ 7.9933065, 46.5502599 ], + [ 7.9906956000000005, 46.5487432 ], + [ 7.9879734, 46.5473229 ], + [ 7.9851472999999995, 46.5460027 ], + [ 7.9822251, 46.5447863 ], + [ 7.9792147, 46.543677 ], + [ 7.9761244, 46.5426779 ], + [ 7.9729627, 46.5417916 ], + [ 7.9697382, 46.5410206 ], + [ 7.9664597, 46.5403671 ], + [ 7.9631362, 46.5398327 ], + [ 7.9597768, 46.539419 ], + [ 7.9563907, 46.5391271 ], + [ 7.9529871, 46.5389578 ], + [ 7.9495753, 46.5389115 ], + [ 7.9461647, 46.5389884 ], + [ 7.9427645, 46.5391883 ], + [ 7.9393842, 46.5395105 ], + [ 7.9360329, 46.5399544 ], + [ 7.9327197, 46.5405185 ], + [ 7.9294538, 46.5412014 ], + [ 7.9262441, 46.5420013 ], + [ 7.9230994, 46.5429159 ], + [ 7.9200282, 46.5439427 ], + [ 7.917039, 46.5450789 ], + [ 7.9141399, 46.5463214 ], + [ 7.9113389, 46.5476669 ], + [ 7.9086437, 46.5491115 ], + [ 7.9060616, 46.5506515 ], + [ 7.9035997, 46.5522825 ], + [ 7.9012648, 46.5540002 ], + [ 7.8990632, 46.5557997 ], + [ 7.8970009999999995, 46.5576762 ], + [ 7.8950838999999995, 46.5596246 ], + [ 7.8933171, 46.5616394 ], + [ 7.8917055, 46.5637153 ], + [ 7.8902535, 46.5658465 ], + [ 7.888965, 46.5680271 ], + [ 7.8878437, 46.5702513 ], + [ 7.8868927, 46.5725129 ], + [ 7.8861145, 46.5748057 ], + [ 7.8855113, 46.5771234 ], + [ 7.8850848, 46.5794598 ], + [ 7.8848362, 46.5818083 ], + [ 7.8847662, 46.5841625 ], + [ 7.884875, 46.5865161 ], + [ 7.8851623, 46.5888625 ], + [ 7.8856274, 46.5911954 ], + [ 7.886269, 46.5935082 ], + [ 7.8870854, 46.5957947 ], + [ 7.8880742999999995, 46.5980487 ], + [ 7.8892331, 46.6002638 ], + [ 7.8905586, 46.602434099999996 ], + [ 7.8920472, 46.6045536 ], + [ 7.8936948000000005, 46.6066165 ], + [ 7.8954968999999995, 46.608617100000004 ], + [ 7.8974487, 46.6105499 ], + [ 7.8995447, 46.6124097 ], + [ 7.9017792, 46.6141912 ], + [ 7.904146, 46.6158897 ], + [ 7.9066388, 46.6175004 ], + [ 7.9092507, 46.619019 ], + [ 7.9119744999999995, 46.6204412 ], + [ 7.9148027, 46.6217632 ], + [ 7.9177276, 46.6229813 ], + [ 7.9207411, 46.6240923 ], + [ 7.923835, 46.6250929 ], + [ 7.9270008, 46.6259805 ], + [ 7.9302297, 46.6267527 ], + [ 7.933513, 46.6274073 ], + [ 7.9368416, 46.6279425 ], + [ 7.9402064, 46.6283569 ], + [ 7.943598, 46.6286493 ], + [ 7.9470072, 46.6288189 ], + [ 7.9504247, 46.6288653 ], + [ 7.953841, 46.6287882 ], + [ 7.9572467, 46.628588 ], + [ 7.9606325, 46.6282652 ], + [ 7.9639891, 46.6278207 ], + [ 7.9673073, 46.6272556 ], + [ 7.9705779, 46.6265716 ], + [ 7.9737919999999995, 46.6257705 ], + [ 7.9769407, 46.6248545 ], + [ 7.9800154, 46.6238262 ], + [ 7.9830077, 46.6226883 ], + [ 7.9859092, 46.621444 ], + [ 7.9887122, 46.6200968 ], + [ 7.9914088, 46.6186502 ], + [ 7.9939917, 46.6171083 ], + [ 7.9964538, 46.6154753 ], + [ 7.9987884, 46.6137558 ], + [ 8.000989, 46.6119543 ], + [ 8.0030496, 46.6100759 ], + [ 8.0049647, 46.6081257 ], + [ 8.0067288, 46.6061091 ], + [ 8.0083373, 46.6040316 ], + [ 8.0097857, 46.601899 ], + [ 8.01107, 46.5997169 ], + [ 8.0121869, 46.5974916 ], + [ 8.0131331, 46.5952289 ], + [ 8.0139062, 46.5929353 ], + [ 8.0145041, 46.5906169 ], + [ 8.014925, 46.5882801 ], + [ 8.015168, 46.5859313 ], + [ 8.0152323, 46.5835769 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSWL001", + "country" : "CHE", + "name" : [ + { + "text" : "LSWL Lauberhorn", + "lang" : "de-CH" + }, + { + "text" : "LSWL Lauberhorn", + "lang" : "fr-CH" + }, + { + "text" : "LSWL Lauberhorn", + "lang" : "it-CH" + }, + { + "text" : "LSWL Lauberhorn", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "startDateTime" : "2024-11-01T00:00:00+01:00", + "endDateTime" : "2025-04-01T00:00:00+02:00" + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Air-Glaciers SA", + "lang" : "de-CH" + }, + { + "text" : "Air-Glaciers SA", + "lang" : "fr-CH" + }, + { + "text" : "Air-Glaciers SA", + "lang" : "it-CH" + }, + { + "text" : "Air-Glaciers SA", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Basis Lauterbrunnen", + "lang" : "de-CH" + }, + { + "text" : "Basis Lauterbrunnen", + "lang" : "fr-CH" + }, + { + "text" : "Basis Lauterbrunnen", + "lang" : "it-CH" + }, + { + "text" : "Basis Lauterbrunnen", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.air-glaciers.ch/de-ch/lauterbrunnen-de", + "email" : "agl@air-glaciers.ch", + "phone" : "0041338560560", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P02DT12H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5252443, 47.5382062 ], + [ 7.5251005, 47.5382227 ], + [ 7.5250986, 47.5382271 ], + [ 7.5255357, 47.539576 ], + [ 7.5255465, 47.5395741 ], + [ 7.5256795, 47.5395505 ], + [ 7.5252443, 47.5382062 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns266", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Allschwilerwald", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Allschwilerwald", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Allschwilerwald", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Allschwilerwald", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.9306263999999995, 46.9928162 ], + [ 6.9308844, 46.9928216 ], + [ 6.931139, 46.9927924 ], + [ 6.9313803, 46.9927297 ], + [ 6.931599, 46.9926359 ], + [ 6.9317868, 46.9925147 ], + [ 6.9318176, 46.9924851 ], + [ 6.9318214, 46.9924826 ], + [ 6.9319713, 46.9923394 ], + [ 6.9320775, 46.9921789 ], + [ 6.9321894, 46.9919532 ], + [ 6.9322479, 46.9917816 ], + [ 6.9322563, 46.9916055 ], + [ 6.9322551, 46.9916003 ], + [ 6.9322569, 46.991562 ], + [ 6.9322147, 46.9913881 ], + [ 6.9321238, 46.9912232 ], + [ 6.9319877, 46.9910736 ], + [ 6.9318116, 46.9909451 ], + [ 6.9316022, 46.9908424 ], + [ 6.9313676, 46.9907697 ], + [ 6.9311193, 46.9907121 ], + [ 6.9308679, 46.990672 ], + [ 6.9306098, 46.9906663 ], + [ 6.9303551, 46.9906952 ], + [ 6.9301136, 46.9907577 ], + [ 6.9298946, 46.9908512 ], + [ 6.9297065, 46.9909722 ], + [ 6.9296906, 46.9909875 ], + [ 6.9296703, 46.9910004 ], + [ 6.9295183, 46.9911447 ], + [ 6.9294108, 46.9913067 ], + [ 6.9292976, 46.9915349 ], + [ 6.9292392, 46.991706 ], + [ 6.9292305, 46.9918816 ], + [ 6.9292368, 46.991908 ], + [ 6.9292359, 46.9919325 ], + [ 6.9292795, 46.9921054 ], + [ 6.9293713, 46.9922693 ], + [ 6.9295078, 46.9924178 ], + [ 6.9296839, 46.9925454 ], + [ 6.9298929, 46.9926471 ], + [ 6.9301267, 46.9927192 ], + [ 6.9303749, 46.9927765 ], + [ 6.9306263999999995, 46.9928162 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "NE06", + "country" : "CHE", + "name" : [ + { + "text" : "Tribunal régional Neuchâtel", + "lang" : "de-CH" + }, + { + "text" : "Tribunal régional Neuchâtel", + "lang" : "fr-CH" + }, + { + "text" : "Tribunal régional Neuchâtel", + "lang" : "it-CH" + }, + { + "text" : "Tribunal régional Neuchâtel", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "regulationExemption" : "YES", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Police Neuchâteloise", + "lang" : "de-CH" + }, + { + "text" : "Police Neuchâteloise", + "lang" : "fr-CH" + }, + { + "text" : "Police Neuchâteloise", + "lang" : "it-CH" + }, + { + "text" : "Police Neuchâteloise", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "PN - Rens et opérations", + "lang" : "de-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "fr-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "it-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "PN - Rens et opérations", + "lang" : "de-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "fr-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "it-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ne.ch/autorites/DESC/PONE/Pages/Drones.aspx", + "email" : "Police.Neuchateloise@ne.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8559346, 47.4220448 ], + [ 7.8559535, 47.4220349 ], + [ 7.8559447, 47.4220253 ], + [ 7.8558686, 47.4219805 ], + [ 7.8557931, 47.4219807 ], + [ 7.8557003, 47.4219536 ], + [ 7.8555305, 47.4219246 ], + [ 7.8554687, 47.4219199 ], + [ 7.8554221, 47.4219195 ], + [ 7.8553869, 47.4219188 ], + [ 7.8553571, 47.4219483 ], + [ 7.8553147, 47.4219793 ], + [ 7.8551882, 47.4220686 ], + [ 7.8551252, 47.4220903 ], + [ 7.8549618, 47.4221111 ], + [ 7.8549748, 47.4221235 ], + [ 7.8549818, 47.4221302 ], + [ 7.8551533, 47.4222949 ], + [ 7.8551593, 47.422293 ], + [ 7.8551652, 47.4222911 ], + [ 7.8551712, 47.4222892 ], + [ 7.8552706, 47.4222589 ], + [ 7.8556961, 47.4221317 ], + [ 7.8557168, 47.4221253 ], + [ 7.8557374, 47.4221188 ], + [ 7.8557579, 47.4221122 ], + [ 7.8557784, 47.4221055 ], + [ 7.8558027, 47.4220973 ], + [ 7.8558269, 47.4220889 ], + [ 7.8558509999999995, 47.4220804 ], + [ 7.8558749, 47.4220718 ], + [ 7.8558952, 47.4220632 ], + [ 7.8559151, 47.4220543 ], + [ 7.8559346, 47.4220448 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns170", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Feuchtbiotop Eimatt", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Feuchtbiotop Eimatt", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Feuchtbiotop Eimatt", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Feuchtbiotop Eimatt", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8110101, 47.4915411 ], + [ 7.8110018, 47.4915352 ], + [ 7.8109931, 47.4915296 ], + [ 7.8109838, 47.4915244 ], + [ 7.8109741, 47.4915196 ], + [ 7.810964, 47.4915152 ], + [ 7.8109514, 47.4916352 ], + [ 7.8109358, 47.4917837 ], + [ 7.8110101, 47.4915411 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns277", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Im Boden", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Im Boden", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Im Boden", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Im Boden", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.9274735, 46.9124754 ], + [ 6.9390452, 46.918965299999996 ], + [ 6.9463229, 46.9230487 ], + [ 6.95023, 46.920414 ], + [ 6.9503598, 46.920355 ], + [ 6.9503601, 46.9203548 ], + [ 6.950374, 46.9203447 ], + [ 6.9504128, 46.920288 ], + [ 6.9505959, 46.9201642 ], + [ 6.9508461, 46.9200574 ], + [ 6.9508703, 46.9200471 ], + [ 6.9508745, 46.9200453 ], + [ 6.9508999, 46.9200321 ], + [ 6.9509921, 46.919973 ], + [ 6.9511282, 46.9199004 ], + [ 6.9513304, 46.9197905 ], + [ 6.9514102, 46.9197472 ], + [ 6.9515975, 46.9196455 ], + [ 6.951935, 46.9194641 ], + [ 6.9520922, 46.9193796 ], + [ 6.9525292, 46.9191387 ], + [ 6.9531811, 46.9187916 ], + [ 6.9534471, 46.9186405 ], + [ 6.9520325, 46.9177775 ], + [ 6.9520849, 46.9177334 ], + [ 6.9521032, 46.9176094 ], + [ 6.9520395, 46.9174022 ], + [ 6.9519264, 46.9172038 ], + [ 6.9517898, 46.9169784 ], + [ 6.9516551, 46.9167251 ], + [ 6.9515164, 46.9165446 ], + [ 6.9513879, 46.9164198 ], + [ 6.9512097, 46.9162544 ], + [ 6.9509656, 46.9160285 ], + [ 6.9508558, 46.9159228 ], + [ 6.95082, 46.9158884 ], + [ 6.9507068, 46.9158017 ], + [ 6.9505762, 46.915722 ], + [ 6.9505847, 46.9157138 ], + [ 6.9505852, 46.9157134 ], + [ 6.950636, 46.9156643 ], + [ 6.9508858, 46.9154236 ], + [ 6.9508725, 46.9154143 ], + [ 6.9487505, 46.9139277 ], + [ 6.9486739, 46.913874 ], + [ 6.9434965, 46.9107714 ], + [ 6.9433758999999995, 46.9106881 ], + [ 6.9432618, 46.9106064 ], + [ 6.9428754999999995, 46.9104167 ], + [ 6.9421261, 46.9101013 ], + [ 6.9413537, 46.9097876 ], + [ 6.9406838, 46.9095697 ], + [ 6.9399561, 46.9093066 ], + [ 6.9390914, 46.908952 ], + [ 6.9365635999999995, 46.9075746 ], + [ 6.9364602, 46.9076276 ], + [ 6.9363394, 46.9076896 ], + [ 6.9356694, 46.9074897 ], + [ 6.9352289, 46.9072214 ], + [ 6.9350574, 46.907317 ], + [ 6.9348114, 46.907387 ], + [ 6.9347636, 46.9073809 ], + [ 6.934532, 46.9073515 ], + [ 6.9343981, 46.9072897 ], + [ 6.9341481, 46.9071753 ], + [ 6.9339148999999995, 46.9070277 ], + [ 6.9336271, 46.9069247 ], + [ 6.9333925, 46.9068374 ], + [ 6.9330017999999995, 46.9066845 ], + [ 6.9328231, 46.9065748 ], + [ 6.9326337, 46.906484 ], + [ 6.9324307, 46.9064328 ], + [ 6.9321376, 46.9062894 ], + [ 6.9318609, 46.9061371 ], + [ 6.931665, 46.9060345 ], + [ 6.9313551, 46.9059243 ], + [ 6.9310785, 46.905772 ], + [ 6.9308511, 46.905606399999996 ], + [ 6.9305807999999995, 46.9054765 ], + [ 6.9303696, 46.9053514 ], + [ 6.9301186, 46.9052595 ], + [ 6.9298577, 46.9051719 ], + [ 6.9295985, 46.9050017 ], + [ 6.9294202, 46.9048543 ], + [ 6.9292307, 46.9047698 ], + [ 6.9290607, 46.9047016 ], + [ 6.9289644, 46.904559 ], + [ 6.9289547, 46.9044582 ], + [ 6.9288016, 46.9044296 ], + [ 6.9285965, 46.9043432 ], + [ 6.9284184, 46.9041842 ], + [ 6.9282996, 46.9039929 ], + [ 6.9282430999999995, 46.9038074 ], + [ 6.9282457, 46.9037066 ], + [ 6.9282401, 46.9036058 ], + [ 6.9280831, 46.903553 ], + [ 6.9279782, 46.9035409 ], + [ 6.9278539, 46.9035016 ], + [ 6.9280652, 46.9029782 ], + [ 6.9276211, 46.9026608 ], + [ 6.9271683, 46.9023494 ], + [ 6.9269839, 46.9022034 ], + [ 6.9268118, 46.9020504 ], + [ 6.9266095, 46.9018667 ], + [ 6.9263852, 46.9016224 ], + [ 6.9262485, 46.9014794 ], + [ 6.9261004, 46.9012764 ], + [ 6.9260095, 46.9011681 ], + [ 6.9258536, 46.9010055 ], + [ 6.9258111, 46.9009216 ], + [ 6.9254261, 46.9005484 ], + [ 6.9252879, 46.9004551 ], + [ 6.9251575, 46.9003673 ], + [ 6.9248768, 46.900214 ], + [ 6.9246584, 46.9001284 ], + [ 6.9242335, 46.8999655 ], + [ 6.9239159, 46.8998292 ], + [ 6.9233253, 46.8995566 ], + [ 6.9229659, 46.8993913 ], + [ 6.9224588, 46.8991794 ], + [ 6.9219753, 46.8989614 ], + [ 6.9215873, 46.8987779 ], + [ 6.9211428999999995, 46.8985825 ], + [ 6.9207797, 46.8984189 ], + [ 6.9204137, 46.8982644 ], + [ 6.9199473, 46.8980509 ], + [ 6.919503, 46.8978573 ], + [ 6.9191959, 46.8977236 ], + [ 6.9183921999999995, 46.8973737 ], + [ 6.9180094, 46.8972028 ], + [ 6.9175625, 46.8970029 ], + [ 6.9168921999999995, 46.8967057 ], + [ 6.9165197, 46.896551099999996 ], + [ 6.9162061999999995, 46.896403 ], + [ 6.9156823, 46.8961712 ], + [ 6.9136767, 46.8952733 ], + [ 6.9125832, 46.8947962 ], + [ 6.9093674, 46.8933995 ], + [ 6.9070637999999995, 46.8923984 ], + [ 6.9064581, 46.8921347 ], + [ 6.9060129, 46.8925858 ], + [ 6.9046408, 46.8920507 ], + [ 6.9037969, 46.8932262 ], + [ 6.9026008, 46.8944308 ], + [ 6.9014979, 46.8955415 ], + [ 6.9014623, 46.8957359 ], + [ 6.9013833, 46.8960959 ], + [ 6.9013478, 46.8962845 ], + [ 6.9011039, 46.896392 ], + [ 6.9007287, 46.8964379 ], + [ 6.901027, 46.8971952 ], + [ 6.9010502, 46.8972539 ], + [ 6.9003727, 46.8980722 ], + [ 6.8983492, 46.9005168 ], + [ 6.9082743, 46.9040039 ], + [ 6.9186772, 46.9077321 ], + [ 6.9187536, 46.9077595 ], + [ 6.922118, 46.9095358 ], + [ 6.9235997, 46.9103181 ], + [ 6.9238469, 46.9104485 ], + [ 6.9258804, 46.9115852 ], + [ 6.9274735, 46.9124754 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "WZV0007", + "country" : "CHE", + "name" : [ + { + "text" : "Wasser- und Zugvogelreservat Chevroux jusqu'à Portalban", + "lang" : "de-CH" + }, + { + "text" : "Réserve d'oiseaux d'eau et de migrateurs Chevroux jusqu'à Portalban", + "lang" : "fr-CH" + }, + { + "text" : "Riserva di uccelli acquatici e migratori Chevroux jusqu'à Portalban", + "lang" : "it-CH" + }, + { + "text" : "Water Bird and Migratory Bird Reserves Chevroux jusqu'à Portalban", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.753271999999999, 46.1978361 ], + [ 8.7532633, 46.1976949 ], + [ 8.7532439, 46.1975543 ], + [ 8.753214, 46.1974145 ], + [ 8.753173499999999, 46.1972761 ], + [ 8.7531227, 46.1971393 ], + [ 8.7530617, 46.1970045 ], + [ 8.7529906, 46.1968721 ], + [ 8.7529096, 46.1967425 ], + [ 8.7528189, 46.196616 ], + [ 8.7527189, 46.196493 ], + [ 8.7526097, 46.1963738 ], + [ 8.752491599999999, 46.1962587 ], + [ 8.7523651, 46.1961481 ], + [ 8.7522304, 46.1960422 ], + [ 8.7520879, 46.1959413 ], + [ 8.751937999999999, 46.1958458 ], + [ 8.7517811, 46.1957559 ], + [ 8.7516176, 46.1956717 ], + [ 8.751448, 46.1955937 ], + [ 8.7512728, 46.1955219 ], + [ 8.7510924, 46.1954566 ], + [ 8.7509073, 46.1953979 ], + [ 8.7507181, 46.195346 ], + [ 8.7505252, 46.1953011 ], + [ 8.7503292, 46.1952632 ], + [ 8.7501306, 46.1952325 ], + [ 8.7499299, 46.1952091 ], + [ 8.7497278, 46.195193 ], + [ 8.7495247, 46.1951843 ], + [ 8.7493213, 46.1951829 ], + [ 8.749118, 46.195189 ], + [ 8.7489155, 46.1952024 ], + [ 8.7487143, 46.1952232 ], + [ 8.7485149, 46.1952513 ], + [ 8.7483178, 46.1952865 ], + [ 8.7481238, 46.1953289 ], + [ 8.747933100000001, 46.1953783 ], + [ 8.7477465, 46.1954345 ], + [ 8.7475643, 46.1954975 ], + [ 8.7473872, 46.195567 ], + [ 8.7472155, 46.1956428 ], + [ 8.7470498, 46.1957247 ], + [ 8.7468905, 46.1958126 ], + [ 8.746738, 46.1959062 ], + [ 8.7465928, 46.1960051 ], + [ 8.7464552, 46.1961092 ], + [ 8.7463256, 46.1962181 ], + [ 8.7462045, 46.1963316 ], + [ 8.7460921, 46.1964494 ], + [ 8.7459887, 46.1965711 ], + [ 8.7458946, 46.1966964 ], + [ 8.74581, 46.1968249 ], + [ 8.7457353, 46.1969563 ], + [ 8.7456706, 46.1970902 ], + [ 8.7456161, 46.1972264 ], + [ 8.7455719, 46.1973643 ], + [ 8.7455381, 46.1975036 ], + [ 8.745515, 46.197644 ], + [ 8.7455024, 46.197785 ], + [ 8.7455004, 46.1979263 ], + [ 8.7455092, 46.1980674 ], + [ 8.7455285, 46.1982081 ], + [ 8.7455584, 46.1983478 ], + [ 8.7455988, 46.1984863 ], + [ 8.7456496, 46.1986231 ], + [ 8.7457106, 46.1987579 ], + [ 8.7457817, 46.1988903 ], + [ 8.7458627, 46.1990199 ], + [ 8.7459534, 46.1991464 ], + [ 8.7460534, 46.1992694 ], + [ 8.7461626, 46.1993886 ], + [ 8.7462806, 46.1995037 ], + [ 8.7464072, 46.1996143 ], + [ 8.7465419, 46.1997202 ], + [ 8.7466844, 46.1998211 ], + [ 8.7468343, 46.1999166 ], + [ 8.7469912, 46.2000066 ], + [ 8.7471547, 46.2000907 ], + [ 8.7473242, 46.2001688 ], + [ 8.7474995, 46.2002406 ], + [ 8.7476799, 46.2003059 ], + [ 8.747865000000001, 46.2003646 ], + [ 8.7480542, 46.2004165 ], + [ 8.7482471, 46.2004614 ], + [ 8.7484432, 46.2004993 ], + [ 8.7486418, 46.20053 ], + [ 8.7488425, 46.2005534 ], + [ 8.7490446, 46.2005695 ], + [ 8.7492477, 46.2005782 ], + [ 8.7494512, 46.2005795 ], + [ 8.7496544, 46.2005735 ], + [ 8.749857, 46.2005601 ], + [ 8.7500582, 46.2005393 ], + [ 8.7502577, 46.2005112 ], + [ 8.7504547, 46.2004759 ], + [ 8.7506488, 46.2004335 ], + [ 8.7508394, 46.2003842 ], + [ 8.7510261, 46.2003279 ], + [ 8.7512083, 46.200265 ], + [ 8.7513854, 46.2001955 ], + [ 8.7515571, 46.2001197 ], + [ 8.7517229, 46.2000377 ], + [ 8.7518822, 46.1999498 ], + [ 8.7520347, 46.1998563 ], + [ 8.7521799, 46.1997573 ], + [ 8.7523175, 46.1996532 ], + [ 8.752447, 46.1995443 ], + [ 8.7525681, 46.1994308 ], + [ 8.7526806, 46.199313 ], + [ 8.752784, 46.1991913 ], + [ 8.752877999999999, 46.199066 ], + [ 8.7529625, 46.1989375 ], + [ 8.7530372, 46.1988061 ], + [ 8.7531019, 46.1986721 ], + [ 8.7531565, 46.198536 ], + [ 8.7532006, 46.1983981 ], + [ 8.7532344, 46.1982588 ], + [ 8.7532575, 46.1981184 ], + [ 8.7532701, 46.1979774 ], + [ 8.753271999999999, 46.1978361 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0006", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Avegno", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Avegno", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Avegno", + "lang" : "it-CH" + }, + { + "text" : "Substation Avegno", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8025257, 47.4800751 ], + [ 7.8025298, 47.4800074 ], + [ 7.8025341, 47.4799338 ], + [ 7.8022729, 47.4798169 ], + [ 7.8021337, 47.4797545 ], + [ 7.8021539, 47.4797179 ], + [ 7.8021821, 47.4796666 ], + [ 7.8020719, 47.4795171 ], + [ 7.8020564, 47.4795119 ], + [ 7.8019194, 47.4794662 ], + [ 7.8018922, 47.4792402 ], + [ 7.8018725, 47.4791069 ], + [ 7.8017395, 47.4787899 ], + [ 7.801767, 47.4785494 ], + [ 7.8017029, 47.478511 ], + [ 7.8016739, 47.4784936 ], + [ 7.8015924, 47.4782778 ], + [ 7.8015253, 47.4781068 ], + [ 7.8013328, 47.4777351 ], + [ 7.801122, 47.4774275 ], + [ 7.800732, 47.477247 ], + [ 7.8007318, 47.4772469 ], + [ 7.800705, 47.477166 ], + [ 7.8006756, 47.4770777 ], + [ 7.8006736, 47.4770582 ], + [ 7.8006552, 47.4768805 ], + [ 7.8006121, 47.4768764 ], + [ 7.8006097, 47.4768762 ], + [ 7.8005187, 47.4768559 ], + [ 7.8003812, 47.4767581 ], + [ 7.8003647, 47.4767464 ], + [ 7.8003425, 47.4766883 ], + [ 7.8003203, 47.4766305 ], + [ 7.8001929, 47.476484 ], + [ 7.8001444, 47.4764005 ], + [ 7.8001339, 47.4762942 ], + [ 7.8001479, 47.4761877 ], + [ 7.800131, 47.4761439 ], + [ 7.7998831, 47.4762396 ], + [ 7.7998646, 47.4763619 ], + [ 7.7998452, 47.4764902 ], + [ 7.7998362, 47.4766649 ], + [ 7.7998552, 47.4768019 ], + [ 7.7998279, 47.476837 ], + [ 7.7997696, 47.4768674 ], + [ 7.7996887, 47.4769096 ], + [ 7.7996227, 47.476895 ], + [ 7.799405, 47.4768326 ], + [ 7.7991946, 47.4766837 ], + [ 7.7991715, 47.4767047 ], + [ 7.7991684, 47.4767265 ], + [ 7.7991685, 47.4767558 ], + [ 7.7991834, 47.4767894 ], + [ 7.7991982, 47.4768274 ], + [ 7.7992228, 47.47686 ], + [ 7.7992409, 47.4768968 ], + [ 7.7992656, 47.4769402 ], + [ 7.7990706, 47.4776003 ], + [ 7.7990087, 47.4780095 ], + [ 7.7988826, 47.478161 ], + [ 7.7985939, 47.4782517 ], + [ 7.7984162999999995, 47.4784625 ], + [ 7.7984137, 47.4785973 ], + [ 7.7984086, 47.4788525 ], + [ 7.7983843, 47.4789012 ], + [ 7.7983253999999995, 47.479019 ], + [ 7.7983139999999995, 47.4790418 ], + [ 7.7983256999999995, 47.4790451 ], + [ 7.7984387, 47.4790762 ], + [ 7.7983849, 47.4791755 ], + [ 7.7980342, 47.4794807 ], + [ 7.7978666, 47.4796448 ], + [ 7.7978341, 47.4796767 ], + [ 7.7978054, 47.479708 ], + [ 7.7977542, 47.4797639 ], + [ 7.7975107999999995, 47.4799561 ], + [ 7.797426, 47.4800231 ], + [ 7.7972577, 47.4800778 ], + [ 7.7971803, 47.4800909 ], + [ 7.7971107, 47.4801027 ], + [ 7.797012, 47.4801555 ], + [ 7.7969906, 47.4801782 ], + [ 7.7969459, 47.4802257 ], + [ 7.7968724, 47.4802657 ], + [ 7.7968234, 47.4802924 ], + [ 7.7967182, 47.4803449 ], + [ 7.7964082999999995, 47.4806045 ], + [ 7.7961873, 47.4809418 ], + [ 7.7960707, 47.4812304 ], + [ 7.7959734, 47.4814897 ], + [ 7.7958887, 47.4818898 ], + [ 7.7958522, 47.4820887 ], + [ 7.795856, 47.4821841 ], + [ 7.7960074, 47.4821924 ], + [ 7.796163, 47.4821722 ], + [ 7.7962122, 47.48215 ], + [ 7.7963669, 47.4820448 ], + [ 7.7964892, 47.4819496 ], + [ 7.7965716, 47.4818959 ], + [ 7.7966617, 47.4818536 ], + [ 7.796764, 47.4818026 ], + [ 7.7968837, 47.4817634 ], + [ 7.7970621, 47.4817062 ], + [ 7.7972003, 47.4816446 ], + [ 7.7973983, 47.4815203 ], + [ 7.7975662, 47.4813871 ], + [ 7.797665, 47.481298 ], + [ 7.7977625, 47.4812583 ], + [ 7.7978801, 47.4812425 ], + [ 7.7980975, 47.4812456 ], + [ 7.798605, 47.4812694 ], + [ 7.7990488, 47.4812984 ], + [ 7.7991562, 47.4813195 ], + [ 7.7992407, 47.4813389 ], + [ 7.7994269, 47.4813105 ], + [ 7.799675, 47.4812431 ], + [ 7.7999013, 47.4811714 ], + [ 7.8001334, 47.4810516 ], + [ 7.8003069, 47.4809661 ], + [ 7.8005426, 47.4808132 ], + [ 7.8006801, 47.4806853 ], + [ 7.8007852, 47.4805605 ], + [ 7.8009145, 47.4803913 ], + [ 7.8010248, 47.4805816 ], + [ 7.8010859, 47.480744 ], + [ 7.8011756, 47.4810736 ], + [ 7.8012388, 47.4813195 ], + [ 7.8012846, 47.4815489 ], + [ 7.8012901, 47.481665 ], + [ 7.8013169, 47.4820087 ], + [ 7.8013144, 47.4823227 ], + [ 7.8013468, 47.4824825 ], + [ 7.8014189, 47.4826881 ], + [ 7.8015022, 47.4828619 ], + [ 7.8015874, 47.4830129 ], + [ 7.8019957, 47.4833418 ], + [ 7.8020709, 47.4834109 ], + [ 7.8022121, 47.4834389 ], + [ 7.8024293, 47.4834769 ], + [ 7.8026433, 47.4836079 ], + [ 7.8034501, 47.4835906 ], + [ 7.8037261, 47.4835208 ], + [ 7.8039878, 47.4834882 ], + [ 7.8043377, 47.4834108 ], + [ 7.8045043, 47.4834112 ], + [ 7.8045041, 47.4833739 ], + [ 7.8045636, 47.4833608 ], + [ 7.8045791, 47.4832978 ], + [ 7.8046394, 47.483223 ], + [ 7.8046435, 47.483222 ], + [ 7.8047606, 47.4832612 ], + [ 7.8048011, 47.483309 ], + [ 7.8048765, 47.4833739 ], + [ 7.804951, 47.4834533 ], + [ 7.8050145, 47.4835121 ], + [ 7.8051393000000004, 47.4836227 ], + [ 7.8052708, 47.483713 ], + [ 7.8053652, 47.4837684 ], + [ 7.8054518, 47.4838072 ], + [ 7.8055315, 47.4838374 ], + [ 7.8056503, 47.4838694 ], + [ 7.8057746, 47.4838871 ], + [ 7.8058691, 47.4838821 ], + [ 7.8059414, 47.4838706 ], + [ 7.8059940999999995, 47.4838542 ], + [ 7.8060626, 47.483802 ], + [ 7.8060906, 47.4837469 ], + [ 7.8061031, 47.4836985 ], + [ 7.8060838, 47.4836261 ], + [ 7.8060823, 47.4836232 ], + [ 7.8060659999999995, 47.4835894 ], + [ 7.8060048, 47.4835222 ], + [ 7.8059497, 47.4834795 ], + [ 7.8054273, 47.4830847 ], + [ 7.8053181, 47.4830037 ], + [ 7.8052662, 47.4829638 ], + [ 7.805197, 47.4829075 ], + [ 7.8051903, 47.4829006 ], + [ 7.805149, 47.4828578 ], + [ 7.8052539, 47.4828609 ], + [ 7.8052467, 47.4828563 ], + [ 7.8052496, 47.4827947 ], + [ 7.805251, 47.4826121 ], + [ 7.8053022, 47.4825817 ], + [ 7.8054109, 47.4825171 ], + [ 7.8054102, 47.4825162 ], + [ 7.8054085, 47.4825167 ], + [ 7.8052847, 47.4825334 ], + [ 7.805253, 47.4825288 ], + [ 7.8052358, 47.4825172 ], + [ 7.8051379999999995, 47.4824512 ], + [ 7.8051048, 47.4822714 ], + [ 7.8049841, 47.4818913 ], + [ 7.8049263, 47.4817531 ], + [ 7.8049747, 47.4814985 ], + [ 7.8046741, 47.4813332 ], + [ 7.8047525, 47.4812252 ], + [ 7.8047985, 47.4811619 ], + [ 7.8047482, 47.4811417 ], + [ 7.8044696, 47.4810296 ], + [ 7.8041572, 47.4809007 ], + [ 7.8039337, 47.4807938 ], + [ 7.8038112, 47.4807212 ], + [ 7.8037174, 47.4806475 ], + [ 7.8037086, 47.4806159 ], + [ 7.8036851, 47.4805312 ], + [ 7.803627, 47.4805081 ], + [ 7.8034447, 47.4804357 ], + [ 7.803014, 47.4802678 ], + [ 7.8028094, 47.4801861 ], + [ 7.8026822, 47.4801352 ], + [ 7.8025257, 47.4800751 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr114", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Strickrain", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Strickrain", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Strickrain", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Strickrain", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.1110195, 46.2312073 ], + [ 6.1098085, 46.2303625 ], + [ 6.1105271, 46.2298246 ], + [ 6.1090719, 46.2288793 ], + [ 6.1084023, 46.2293815 ], + [ 6.1082226, 46.2292561 ], + [ 6.1071139, 46.2287357 ], + [ 6.106489, 46.2291583 ], + [ 6.1060541, 46.2289193 ], + [ 6.105507, 46.2292934 ], + [ 6.1033402, 46.227992 ], + [ 6.1032839, 46.2278033 ], + [ 6.1033909, 46.2277192 ], + [ 6.1032672, 46.2276376 ], + [ 6.1035271, 46.2274518 ], + [ 6.1025143, 46.2267776 ], + [ 6.1006302, 46.2253744 ], + [ 6.098414, 46.2234057 ], + [ 6.0973515, 46.2224395 ], + [ 6.0970217, 46.2223609 ], + [ 6.0950627, 46.2227982 ], + [ 6.0926698, 46.2234318 ], + [ 6.0927241, 46.2234918 ], + [ 6.08984, 46.2242796 ], + [ 6.0874603, 46.2226567 ], + [ 6.0864203, 46.2234522 ], + [ 6.0881806, 46.2246537 ], + [ 6.0878032, 46.2247661 ], + [ 6.0876722, 46.2248176 ], + [ 6.0875396, 46.2248872 ], + [ 6.0873638, 46.22502 ], + [ 6.0872904, 46.2251073 ], + [ 6.087232, 46.2252146 ], + [ 6.0870616, 46.2260735 ], + [ 6.0896487, 46.2275449 ], + [ 6.0904931, 46.228102 ], + [ 6.092071, 46.2298707 ], + [ 6.0921175, 46.2299846 ], + [ 6.0935299, 46.2307995 ], + [ 6.0931423, 46.2310603 ], + [ 6.0942793, 46.2316874 ], + [ 6.0933546, 46.2324844 ], + [ 6.0935352, 46.2326278 ], + [ 6.0949034, 46.2334502 ], + [ 6.0957169, 46.2339493 ], + [ 6.0959507, 46.2340375 ], + [ 6.0967931, 46.2342077 ], + [ 6.0974081, 46.2344561 ], + [ 6.0975049, 46.2345266 ], + [ 6.0966871, 46.2350855 ], + [ 6.0960964, 46.2356956 ], + [ 6.0992103, 46.2378154 ], + [ 6.0989316, 46.2380766 ], + [ 6.099049, 46.2381554 ], + [ 6.0995219, 46.2383787 ], + [ 6.0987952, 46.2389306 ], + [ 6.0980382, 46.2394992 ], + [ 6.0982499, 46.239643 ], + [ 6.0991442, 46.2390256 ], + [ 6.1000733, 46.2384698 ], + [ 6.1014669, 46.2376452 ], + [ 6.1037377, 46.2391089 ], + [ 6.1054448, 46.2401935 ], + [ 6.1068693, 46.2411667 ], + [ 6.1088438, 46.2398665 ], + [ 6.1160087, 46.2447464 ], + [ 6.1208017, 46.2480101 ], + [ 6.12031, 46.2484992 ], + [ 6.1209144, 46.2488203 ], + [ 6.1245097, 46.251277 ], + [ 6.1250265, 46.2516284 ], + [ 6.1256725, 46.2524277 ], + [ 6.1288121, 46.2523389 ], + [ 6.1352818, 46.2567421 ], + [ 6.1363191, 46.2559443 ], + [ 6.1299068, 46.2515814 ], + [ 6.130131, 46.2509452 ], + [ 6.1301958, 46.2506238 ], + [ 6.1302028, 46.2502244 ], + [ 6.1301571, 46.2500232 ], + [ 6.1300785, 46.2497317 ], + [ 6.1287995, 46.2474316 ], + [ 6.1275658, 46.2472338 ], + [ 6.1261368, 46.2464768 ], + [ 6.1264186, 46.245978 ], + [ 6.1264783, 46.2457619 ], + [ 6.1263908, 46.245625 ], + [ 6.1263641, 46.2453899 ], + [ 6.1264537, 46.2450634 ], + [ 6.1264156, 46.2444934 ], + [ 6.1248236, 46.2434511 ], + [ 6.1236562, 46.2434619 ], + [ 6.12328, 46.2447523 ], + [ 6.1231276, 46.2447271 ], + [ 6.1230371, 46.2446622 ], + [ 6.1231093, 46.2441448 ], + [ 6.1226156, 46.2435371 ], + [ 6.12227, 46.2432973 ], + [ 6.1227038, 46.2412924 ], + [ 6.1217487, 46.2404625 ], + [ 6.118506, 46.2377803 ], + [ 6.1148574, 46.2348954 ], + [ 6.1150433, 46.2347635 ], + [ 6.1143208, 46.2339758 ], + [ 6.1123034, 46.2322589 ], + [ 6.1121317, 46.2323369 ], + [ 6.1118984, 46.232174 ], + [ 6.1120352, 46.232092 ], + [ 6.1110195, 46.2312073 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSGG002", + "country" : "CHE", + "name" : [ + { + "text" : "LSGG Genève (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSGG Genève (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSGG Genève (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSGG Genève (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Skyguide Special Flight Office", + "lang" : "de-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "it-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.skyguide.ch/services/special-flights", + "email" : "specialflight@skyguide.ch", + "phone" : "0041439316236", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8345678, 47.3925724 ], + [ 7.8345229, 47.3925924 ], + [ 7.8346594, 47.3928133 ], + [ 7.8346801, 47.3929056 ], + [ 7.8347042, 47.3930074 ], + [ 7.8347733999999996, 47.3931046 ], + [ 7.8348544, 47.3931118 ], + [ 7.8349436, 47.3931191 ], + [ 7.8350808, 47.3929353 ], + [ 7.8350648, 47.3928336 ], + [ 7.8350862, 47.3927939 ], + [ 7.8352789, 47.3928326 ], + [ 7.8354269, 47.3929084 ], + [ 7.8353641, 47.3931522 ], + [ 7.8354625, 47.3933976 ], + [ 7.835482, 47.3935919 ], + [ 7.8354542, 47.3937327 ], + [ 7.8354388, 47.3938078 ], + [ 7.835455, 47.3938816 ], + [ 7.8354678, 47.3939319 ], + [ 7.8354482, 47.3940502 ], + [ 7.8353459, 47.3941106 ], + [ 7.8353385, 47.3941757 ], + [ 7.8354326, 47.3942221 ], + [ 7.8356414, 47.3942808 ], + [ 7.8356154, 47.3943478 ], + [ 7.8355386, 47.3944321 ], + [ 7.8353959, 47.3946207 ], + [ 7.8351941, 47.3948099 ], + [ 7.8351317, 47.3949406 ], + [ 7.8351921, 47.3950027 ], + [ 7.835362, 47.395009 ], + [ 7.835371, 47.3950004 ], + [ 7.8354654, 47.3949379 ], + [ 7.8356387, 47.3947423 ], + [ 7.8356196, 47.3945178 ], + [ 7.8356429, 47.3944422 ], + [ 7.8357544, 47.3943529 ], + [ 7.8359928, 47.3942191 ], + [ 7.8361366, 47.3940699 ], + [ 7.836469, 47.3942174 ], + [ 7.836558, 47.3942377 ], + [ 7.8370166, 47.3942842 ], + [ 7.8372533, 47.3943178 ], + [ 7.8372786, 47.3942923 ], + [ 7.8371528, 47.3942305 ], + [ 7.8366622, 47.3940093 ], + [ 7.836451, 47.3938592 ], + [ 7.8360967, 47.3935283 ], + [ 7.8359631, 47.3932639 ], + [ 7.8357576, 47.3928445 ], + [ 7.8356404, 47.3925883 ], + [ 7.8356726, 47.3924441 ], + [ 7.8357521, 47.3922002 ], + [ 7.8358038, 47.3920145 ], + [ 7.8345678, 47.3925724 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns045", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Schanz - Walten", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Schanz - Walten", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Schanz - Walten", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Schanz - Walten", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.9919299, 46.9393144 ], + [ 7.0763611, 46.8757105 ], + [ 6.8536127, 46.7354527 ], + [ 6.7691786, 46.7987766 ], + [ 6.9919299, 46.9393144 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 120, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "CTR0012", + "country" : "CHE", + "name" : [ + { + "text" : "CTR PAYERNE", + "lang" : "de-CH" + }, + { + "text" : "CTR PAYERNE", + "lang" : "fr-CH" + }, + { + "text" : "CTR PAYERNE", + "lang" : "it-CH" + }, + { + "text" : "CTR PAYERNE", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only permitted from an altitude of 120 m above ground with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Skyguide Special Flight Office", + "lang" : "de-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "it-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "en-GB" + } + ], + "siteURL" : "https://skyguide.ch/services/special-flights", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6297368, 47.5264786 ], + [ 7.6297388, 47.5265569 ], + [ 7.6297547, 47.5266372 ], + [ 7.6297829, 47.5267159 ], + [ 7.6298231, 47.5267922 ], + [ 7.6298749, 47.5268652 ], + [ 7.6299377, 47.5269341 ], + [ 7.6300108, 47.5269982 ], + [ 7.6300247, 47.5270081 ], + [ 7.6300405, 47.5270173 ], + [ 7.6300577, 47.5270253 ], + [ 7.630076, 47.527032 ], + [ 7.6300953, 47.5270374 ], + [ 7.6301152, 47.5270415 ], + [ 7.6301358, 47.527044 ], + [ 7.6301565, 47.5270452 ], + [ 7.6301774, 47.5270448 ], + [ 7.6302158, 47.5270435 ], + [ 7.6302831, 47.5270451 ], + [ 7.6303498, 47.5270514 ], + [ 7.630415, 47.5270624 ], + [ 7.6304784, 47.527078 ], + [ 7.6305389, 47.5270979 ], + [ 7.6305613, 47.527109 ], + [ 7.6305888, 47.5271253 ], + [ 7.6306136, 47.5271435 ], + [ 7.6306354, 47.5271635 ], + [ 7.6306541, 47.5271847 ], + [ 7.6306693, 47.5272073 ], + [ 7.6306811, 47.5272307 ], + [ 7.630689, 47.5272549 ], + [ 7.6306933, 47.5272795 ], + [ 7.6306937, 47.5273043 ], + [ 7.6306881, 47.527327 ], + [ 7.6307632, 47.5273172 ], + [ 7.6308398, 47.5273127 ], + [ 7.6308885, 47.5273123 ], + [ 7.6309367, 47.5273084 ], + [ 7.630993, 47.5272993 ], + [ 7.6310368, 47.5272886 ], + [ 7.6310787, 47.5272748 ], + [ 7.6311181999999995, 47.5272581 ], + [ 7.6311311, 47.5272518 ], + [ 7.6311668, 47.5272315 ], + [ 7.6311991, 47.5272089 ], + [ 7.6312278, 47.5271841 ], + [ 7.6312525, 47.5271573 ], + [ 7.6312636, 47.5271429 ], + [ 7.631326, 47.5269818 ], + [ 7.6313802, 47.5267715 ], + [ 7.6314569, 47.5264926 ], + [ 7.631452, 47.5264622 ], + [ 7.6313851, 47.5261803 ], + [ 7.6313216, 47.5259944 ], + [ 7.6312751, 47.5258909 ], + [ 7.63126, 47.5258553 ], + [ 7.6307466, 47.5261767 ], + [ 7.6297368, 47.5264786 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns217", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Fröschenegg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Fröschenegg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Fröschenegg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Fröschenegg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.990462, 46.880966 ], + [ 8.9904526, 46.8808249 ], + [ 8.9904323, 46.8806843 ], + [ 8.9904014, 46.8805446 ], + [ 8.9903599, 46.8804062 ], + [ 8.9903078, 46.8802695 ], + [ 8.9902454, 46.8801349 ], + [ 8.9901728, 46.8800027 ], + [ 8.9900902, 46.8798732 ], + [ 8.9899978, 46.879747 ], + [ 8.9898959, 46.8796241 ], + [ 8.9897848, 46.8795052 ], + [ 8.9896648, 46.8793903 ], + [ 8.9895362, 46.87928 ], + [ 8.9893993, 46.8791744 ], + [ 8.9892545, 46.8790738 ], + [ 8.9891023, 46.878978599999996 ], + [ 8.988942999999999, 46.878889 ], + [ 8.9887771, 46.8788052 ], + [ 8.988605, 46.8787275 ], + [ 8.9884272, 46.8786561 ], + [ 8.9882443, 46.8785912 ], + [ 8.9880566, 46.8785329 ], + [ 8.9878647, 46.8784814 ], + [ 8.9876692, 46.8784369 ], + [ 8.9874705, 46.8783994 ], + [ 8.9872692, 46.8783692 ], + [ 8.9870659, 46.8783462 ], + [ 8.9868612, 46.8783305 ], + [ 8.9866555, 46.8783222 ], + [ 8.986449499999999, 46.8783213 ], + [ 8.9862436, 46.8783278 ], + [ 8.9860386, 46.8783416 ], + [ 8.9858349, 46.8783628 ], + [ 8.9856331, 46.8783913 ], + [ 8.9854337, 46.878427 ], + [ 8.985237399999999, 46.8784698 ], + [ 8.9850445, 46.8785195 ], + [ 8.9848558, 46.8785762 ], + [ 8.9846716, 46.8786395 ], + [ 8.9844925, 46.8787093 ], + [ 8.9843189, 46.8787855 ], + [ 8.9841515, 46.8788678 ], + [ 8.9839905, 46.878956 ], + [ 8.9838365, 46.8790499 ], + [ 8.9836899, 46.8791491 ], + [ 8.983551, 46.8792535 ], + [ 8.9834203, 46.8793627 ], + [ 8.9832981, 46.8794765 ], + [ 8.9831848, 46.8795945 ], + [ 8.9830806, 46.8797164 ], + [ 8.9829859, 46.8798418 ], + [ 8.9829008, 46.8799705 ], + [ 8.9828258, 46.8801021 ], + [ 8.9827608, 46.8802362 ], + [ 8.982706199999999, 46.8803724 ], + [ 8.982662, 46.8805104 ], + [ 8.9826285, 46.8806498 ], + [ 8.9826056, 46.8807902 ], + [ 8.9825935, 46.8809312 ], + [ 8.9825922, 46.8810725 ], + [ 8.9826016, 46.8812136 ], + [ 8.9826218, 46.8813542 ], + [ 8.9826527, 46.8814939 ], + [ 8.9826943, 46.8816323 ], + [ 8.9827463, 46.881769 ], + [ 8.9828087, 46.8819036 ], + [ 8.9828813, 46.8820359 ], + [ 8.9829639, 46.8821653 ], + [ 8.9830562, 46.8822916 ], + [ 8.9831581, 46.8824144 ], + [ 8.9832692, 46.8825334 ], + [ 8.9833892, 46.8826482 ], + [ 8.9835178, 46.8827586 ], + [ 8.9836547, 46.8828642 ], + [ 8.9837995, 46.8829648 ], + [ 8.9839517, 46.88306 ], + [ 8.984111, 46.8831496 ], + [ 8.9842769, 46.8832334 ], + [ 8.984449, 46.8833111 ], + [ 8.9846268, 46.8833825 ], + [ 8.9848098, 46.8834475 ], + [ 8.9849975, 46.8835058 ], + [ 8.9851894, 46.8835573 ], + [ 8.9853849, 46.8836018 ], + [ 8.9855836, 46.8836392 ], + [ 8.9857849, 46.8836695 ], + [ 8.9859882, 46.8836925 ], + [ 8.986193, 46.8837082 ], + [ 8.9863987, 46.8837165 ], + [ 8.986604700000001, 46.8837174 ], + [ 8.9868106, 46.8837109 ], + [ 8.9870157, 46.883697 ], + [ 8.9872194, 46.8836758 ], + [ 8.9874212, 46.8836474 ], + [ 8.9876206, 46.8836117 ], + [ 8.987817, 46.8835689 ], + [ 8.9880098, 46.8835191 ], + [ 8.9881986, 46.8834625 ], + [ 8.9883828, 46.8833991 ], + [ 8.9885619, 46.8833293 ], + [ 8.9887354, 46.8832531 ], + [ 8.9889029, 46.8831708 ], + [ 8.9890639, 46.8830826 ], + [ 8.9892179, 46.8829887 ], + [ 8.9893645, 46.8828895 ], + [ 8.9895034, 46.8827851 ], + [ 8.9896341, 46.8826759 ], + [ 8.9897563, 46.8825621 ], + [ 8.9898696, 46.8824441 ], + [ 8.9899738, 46.8823222 ], + [ 8.9900685, 46.8821967 ], + [ 8.9901535, 46.882068 ], + [ 8.9902286, 46.8819365 ], + [ 8.9902935, 46.8818024 ], + [ 8.9903481, 46.8816662 ], + [ 8.9903922, 46.8815282 ], + [ 8.9904258, 46.8813887 ], + [ 8.9904486, 46.8812483 ], + [ 8.9904607, 46.8811073 ], + [ 8.990462, 46.880966 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0119", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Tierfehd", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Tierfehd", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Tierfehd", + "lang" : "it-CH" + }, + { + "text" : "Substation Tierfehd", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8259955, 47.4737183 ], + [ 7.8264584, 47.4742173 ], + [ 7.8267942, 47.474421 ], + [ 7.8272641, 47.4747305 ], + [ 7.8276392, 47.4750355 ], + [ 7.827894, 47.4755113 ], + [ 7.8279933, 47.4757206 ], + [ 7.8282524, 47.4760543 ], + [ 7.8281951, 47.4758815 ], + [ 7.8282445, 47.4756993 ], + [ 7.8282517, 47.4755762 ], + [ 7.8282538, 47.4754798 ], + [ 7.8284244, 47.4757151 ], + [ 7.828556, 47.4758913 ], + [ 7.8286867, 47.4759471 ], + [ 7.8288762, 47.4759384 ], + [ 7.8289557, 47.4754723 ], + [ 7.8289532, 47.475135 ], + [ 7.8290695, 47.4748375 ], + [ 7.8290442, 47.4746287 ], + [ 7.8291838, 47.4742749 ], + [ 7.8291462, 47.473993899999996 ], + [ 7.8290141, 47.4737454 ], + [ 7.8286462, 47.4733513 ], + [ 7.8283235, 47.4729684 ], + [ 7.8279412, 47.4726263 ], + [ 7.8274929, 47.4723613 ], + [ 7.8271986, 47.4722132 ], + [ 7.8268477999999995, 47.472101 ], + [ 7.8266568, 47.4724209 ], + [ 7.8261676, 47.4732863 ], + [ 7.8259955, 47.4737183 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr042", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Bischofstein", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Bischofstein", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Bischofstein", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Bischofstein", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.2279833, 46.2654652 ], + [ 6.2288158, 46.2650922 ], + [ 6.2293566, 46.2645492 ], + [ 6.2296726, 46.2644076 ], + [ 6.2300731, 46.2640055 ], + [ 6.231333, 46.2638456 ], + [ 6.2326081, 46.2632742 ], + [ 6.2334709, 46.2624078 ], + [ 6.23379, 46.2613783 ], + [ 6.2335167, 46.2603425 ], + [ 6.2326928, 46.2594581 ], + [ 6.2314438, 46.2588597 ], + [ 6.2312296, 46.2588278 ], + [ 6.2311867, 46.2587817 ], + [ 6.2299376, 46.2581832 ], + [ 6.2284535, 46.2579619 ], + [ 6.2269602, 46.2581513 ], + [ 6.226212, 46.2584866 ], + [ 6.2259787, 46.2584518 ], + [ 6.2244854, 46.2586412 ], + [ 6.2242285, 46.2587563 ], + [ 6.2233011, 46.2588739 ], + [ 6.2220259, 46.2594453 ], + [ 6.221163, 46.2603116 ], + [ 6.2211265000000004, 46.2604293 ], + [ 6.2210432, 46.2605129 ], + [ 6.2207239, 46.2615424 ], + [ 6.2207819, 46.2617625 ], + [ 6.2207037, 46.2620147 ], + [ 6.2209767, 46.2630505 ], + [ 6.2212327, 46.2633254 ], + [ 6.2212688, 46.2634623 ], + [ 6.2205841, 46.2641497 ], + [ 6.2202648, 46.2651791 ], + [ 6.2205378, 46.2662149 ], + [ 6.2213616, 46.2670994 ], + [ 6.2226107, 46.2676979 ], + [ 6.2240950999999995, 46.2679194 ], + [ 6.2255886, 46.26773 ], + [ 6.226864, 46.2671586 ], + [ 6.2277269, 46.2662922 ], + [ 6.2279833, 46.2654652 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-22", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.267514, 47.0870684 ], + [ 8.2677525, 47.0872231 ], + [ 8.268001, 47.0873627 ], + [ 8.2680064, 47.0873624 ], + [ 8.2686723, 47.0877902 ], + [ 8.2687702, 47.087856 ], + [ 8.2692291, 47.0881549 ], + [ 8.2699507, 47.0876058 ], + [ 8.2703058, 47.0873353 ], + [ 8.2705973, 47.0871132 ], + [ 8.2705444, 47.0871109 ], + [ 8.2706989, 47.0867122 ], + [ 8.2707293, 47.0864501 ], + [ 8.2706448, 47.0862553 ], + [ 8.2704341, 47.0860154 ], + [ 8.2710556, 47.0857612 ], + [ 8.2709208, 47.0856717 ], + [ 8.2702837, 47.0851506 ], + [ 8.2702601, 47.0851394 ], + [ 8.2699788, 47.0850061 ], + [ 8.2695751, 47.084816000000004 ], + [ 8.2687568, 47.0846881 ], + [ 8.2684197, 47.0844688 ], + [ 8.2673429, 47.0836369 ], + [ 8.2674271, 47.0835597 ], + [ 8.2670508, 47.0835343 ], + [ 8.2669296, 47.0835258 ], + [ 8.2667373, 47.0835059 ], + [ 8.2663638, 47.0834031 ], + [ 8.2661554, 47.0833627 ], + [ 8.2660808, 47.0833638 ], + [ 8.2658954, 47.0834011 ], + [ 8.2657015, 47.0834838 ], + [ 8.2654974, 47.0835958 ], + [ 8.2652356, 47.0835649 ], + [ 8.2650861, 47.084051 ], + [ 8.2651721, 47.0845959 ], + [ 8.2646999, 47.0846171 ], + [ 8.2649008, 47.0850317 ], + [ 8.2651126, 47.0853707 ], + [ 8.265303, 47.0854894 ], + [ 8.2653984, 47.0855448 ], + [ 8.2654258, 47.0855565 ], + [ 8.265364, 47.0856034 ], + [ 8.2648933, 47.0853107 ], + [ 8.2648589, 47.0853362 ], + [ 8.2653554, 47.0856653 ], + [ 8.265848, 47.0859862 ], + [ 8.2663529, 47.0863134 ], + [ 8.2668941, 47.0866646 ], + [ 8.267514, 47.0870684 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VBS_17", + "country" : "CHE", + "name" : [ + { + "text" : "VBS_17 Rothenburg", + "lang" : "de-CH" + }, + { + "text" : "VBS_17 Rothenburg", + "lang" : "fr-CH" + }, + { + "text" : "VBS_17 Rothenburg", + "lang" : "it-CH" + }, + { + "text" : "VBS_17 Rothenburg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "regulationExemption" : "YES", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Eidgenössisches Departement für Verteidigung, Bevölkerungsschutz und Sport (VBS)", + "lang" : "de-CH" + }, + { + "text" : "Département fédéral de la défense, de la protection de la population et des sports (DDPS)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento federale della difesa, della protezione della popolazione e dello sport (DDPS)", + "lang" : "it-CH" + }, + { + "text" : "Federal Department of Defence, Civil Protection and Sport (DDPS)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Lageverfolgungszentrum der Armee LVZ A", + "lang" : "de-CH" + }, + { + "text" : "Centre de suivi de la situation de l’armée, CSS A", + "lang" : "fr-CH" + }, + { + "text" : "Centro di monitoraggio della situazione dell’esercito, Centro mon sit Es", + "lang" : "it-CH" + }, + { + "text" : "Joint Operation Center, JOC", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vtg.admin.ch/en/joint-operations-command", + "email" : "lvz.op@vtg.admin.ch", + "phone" : "+41 58 464 96 43", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.322887099999999, 47.3794749 ], + [ 8.3229555, 47.3794186 ], + [ 8.3229565, 47.3793943 ], + [ 8.3229715, 47.3793273 ], + [ 8.3229844, 47.3792149 ], + [ 8.3230005, 47.3791005 ], + [ 8.3229961, 47.3790114 ], + [ 8.3229909, 47.3789253 ], + [ 8.3230039, 47.3787345 ], + [ 8.3230106, 47.3785633 ], + [ 8.3230171, 47.3783842 ], + [ 8.3230105, 47.3783514 ], + [ 8.322991, 47.3782554 ], + [ 8.3229699, 47.3781252 ], + [ 8.3229728, 47.3780883 ], + [ 8.3229754, 47.3780541 ], + [ 8.3230125, 47.3779813 ], + [ 8.3230434, 47.377928 ], + [ 8.3230466, 47.3778946 ], + [ 8.3230337, 47.3778359 ], + [ 8.3229969, 47.3777504 ], + [ 8.3229425, 47.3776208 ], + [ 8.322911, 47.3775964 ], + [ 8.3228473, 47.3775556 ], + [ 8.3227899, 47.3775237 ], + [ 8.3227703, 47.3775246 ], + [ 8.3227514, 47.3775498 ], + [ 8.322783, 47.3776027 ], + [ 8.3227833, 47.3776421 ], + [ 8.3227107, 47.3777016 ], + [ 8.3226815, 47.3777518 ], + [ 8.3226805, 47.3778034 ], + [ 8.3226819, 47.3779041 ], + [ 8.3227133, 47.3779534 ], + [ 8.322738, 47.3780355 ], + [ 8.3227692, 47.3781054 ], + [ 8.3227722, 47.3781478 ], + [ 8.3227933, 47.3781924 ], + [ 8.3228095, 47.3782194 ], + [ 8.3227597, 47.3782409 ], + [ 8.3227294, 47.378285 ], + [ 8.3227555, 47.3784115 ], + [ 8.3227595, 47.3785419 ], + [ 8.3227563, 47.3786928 ], + [ 8.3227553, 47.3787416 ], + [ 8.3227498, 47.3789255 ], + [ 8.322749, 47.3790129 ], + [ 8.3227607, 47.3790583 ], + [ 8.3227411, 47.3790877 ], + [ 8.3227377, 47.3791994 ], + [ 8.3227445, 47.3792837 ], + [ 8.3227167, 47.379326 ], + [ 8.3226949, 47.3793664 ], + [ 8.3227032, 47.3794427 ], + [ 8.3227487, 47.3794766 ], + [ 8.3228329, 47.379491 ], + [ 8.322887099999999, 47.3794749 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "KTAG507", + "country" : "CHE", + "name" : [ + { + "text" : "Alte Reuss", + "lang" : "de-CH" + }, + { + "text" : "Alte Reuss", + "lang" : "fr-CH" + }, + { + "text" : "Alte Reuss", + "lang" : "it-CH" + }, + { + "text" : "Alte Reuss", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "regulationExemption" : "NO", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "schedule" : [ + { + "day" : [ "ANY" ], + "startTime" : "00:00:00.00+01:00", + "endTime" : "00:00:00.00+01:00" + } + ] + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Aargau", + "lang" : "de-CH" + }, + { + "text" : "Canton d'Argovie", + "lang" : "fr-CH" + }, + { + "text" : "Canton Argovia", + "lang" : "it-CH" + }, + { + "text" : "Canton of Aargau", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Departement Bau, Verkehr und Umwelt (BVU)", + "lang" : "de-CH" + }, + { + "text" : "Département de la construction, des transports et de l'environnement (CTE)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento delle costruzioni, dei trasporti e dell'ambiente (CTA)", + "lang" : "it-CH" + }, + { + "text" : "Department of Civil Engineering,Transport and Environment (CTE)", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Sektion Gewässernutzung", + "lang" : "de-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "fr-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "it-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ag.ch/de/verwaltung/bvu/umwelt-natur-landschaft/hochwasserschutz-gewaesser/gewaessernutzung", + "email" : "alg@ag.ch", + "phone" : "0041 62 835 34 50", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.1982573, 46.979513 ], + [ 7.1981778, 46.977159 ], + [ 7.1979185, 46.974811 ], + [ 7.19748, 46.9724756 ], + [ 7.1968636, 46.970159 ], + [ 7.1960709, 46.9678677 ], + [ 7.1951043, 46.965608 ], + [ 7.1939663, 46.9633859 ], + [ 7.1926601, 46.9612077 ], + [ 7.1911893, 46.9590792 ], + [ 7.1895579, 46.9570064 ], + [ 7.1877705, 46.9549947 ], + [ 7.1858319, 46.9530499 ], + [ 7.1837474, 46.9511772 ], + [ 7.1815228, 46.9493817 ], + [ 7.1791642, 46.9476683 ], + [ 7.176678, 46.9460418 ], + [ 7.174071, 46.9445065 ], + [ 7.1713505, 46.9430668 ], + [ 7.1685238, 46.9417264 ], + [ 7.1655987, 46.9404891 ], + [ 7.1625832, 46.9393583 ], + [ 7.1594855, 46.9383371 ], + [ 7.1563141, 46.9374281 ], + [ 7.1530778, 46.9366341 ], + [ 7.1497853, 46.935957 ], + [ 7.1464456, 46.9353988 ], + [ 7.1430679, 46.934961 ], + [ 7.1396615, 46.9346448 ], + [ 7.1362356, 46.934451 ], + [ 7.1327995, 46.9343802 ], + [ 7.1293628, 46.9344326 ], + [ 7.1259348, 46.934608 ], + [ 7.1225249, 46.934906 ], + [ 7.1191423, 46.9353257 ], + [ 7.1157964, 46.9358659 ], + [ 7.1124962, 46.9365253 ], + [ 7.1092509, 46.937302 ], + [ 7.1060692, 46.9381939 ], + [ 7.10296, 46.9391985 ], + [ 7.0999317, 46.9403131 ], + [ 7.0969925, 46.9415347 ], + [ 7.0941506, 46.9428598 ], + [ 7.0914137, 46.944285 ], + [ 7.0887893, 46.9458062 ], + [ 7.0862846, 46.9474194 ], + [ 7.0839065, 46.9491201 ], + [ 7.0816614, 46.9509036 ], + [ 7.0795556, 46.9527651 ], + [ 7.0775948, 46.9546994 ], + [ 7.0757844, 46.9567014 ], + [ 7.0741294, 46.9587655 ], + [ 7.0726343, 46.960886 ], + [ 7.0713033, 46.9630572 ], + [ 7.0701399, 46.965273 ], + [ 7.0691475, 46.9675276 ], + [ 7.0683286, 46.9698145 ], + [ 7.0676857, 46.9721277 ], + [ 7.0672206, 46.9744607 ], + [ 7.0669343, 46.9768072 ], + [ 7.0668279, 46.9791607 ], + [ 7.0669016, 46.9815148 ], + [ 7.0671553, 46.9838631 ], + [ 7.0675882, 46.986199 ], + [ 7.0681992, 46.9885162 ], + [ 7.0689867, 46.9908084 ], + [ 7.0699485, 46.9930692 ], + [ 7.071082, 46.9952925 ], + [ 7.0723841, 46.9974721 ], + [ 7.0738512, 46.999602 ], + [ 7.0754794, 47.0016765 ], + [ 7.0772642, 47.0036899 ], + [ 7.0792007, 47.0056365 ], + [ 7.0812836, 47.0075111 ], + [ 7.0835073, 47.0093086 ], + [ 7.0858656, 47.0110239 ], + [ 7.088352, 47.0126524 ], + [ 7.0909598, 47.0141896 ], + [ 7.0936818, 47.0156312 ], + [ 7.0965105, 47.0169734 ], + [ 7.0994382, 47.0182124 ], + [ 7.1024568, 47.0193449 ], + [ 7.1055581, 47.0203677 ], + [ 7.1087335, 47.021278 ], + [ 7.1119743, 47.0220733 ], + [ 7.1152716, 47.0227514 ], + [ 7.1186164, 47.0233105 ], + [ 7.1219995, 47.023749 ], + [ 7.1254115, 47.0240658 ], + [ 7.1288431, 47.0242599 ], + [ 7.1322848, 47.0243308 ], + [ 7.1357273, 47.0242783 ], + [ 7.139161, 47.0241026 ], + [ 7.1425766, 47.0238042 ], + [ 7.1459645, 47.0233838 ], + [ 7.1493155999999995, 47.0228427 ], + [ 7.1526206, 47.0221822 ], + [ 7.1558705, 47.0214043 ], + [ 7.1590562, 47.0205111 ], + [ 7.1621691, 47.019505 ], + [ 7.1652006, 47.0183887 ], + [ 7.1681424, 47.0171654 ], + [ 7.1709865, 47.0158384 ], + [ 7.1737249, 47.0144114 ], + [ 7.1763503, 47.0128882 ], + [ 7.1788553, 47.0112731 ], + [ 7.1812332, 47.0095705 ], + [ 7.1834774, 47.007785 ], + [ 7.1855817, 47.0059217 ], + [ 7.1875405, 47.0039855 ], + [ 7.1893483, 47.0019817 ], + [ 7.1910002, 46.999916 ], + [ 7.1924917, 46.997794 ], + [ 7.1938187, 46.9956214 ], + [ 7.1949776, 46.9934043 ], + [ 7.1959653, 46.9911487 ], + [ 7.196779, 46.9888608 ], + [ 7.1974165, 46.986547 ], + [ 7.1978761, 46.9842134 ], + [ 7.1981567, 46.9818666 ], + [ 7.1982573, 46.979513 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSTB001", + "country" : "CHE", + "name" : [ + { + "text" : "LSTB Bellechasse", + "lang" : "de-CH" + }, + { + "text" : "LSTB Bellechasse", + "lang" : "fr-CH" + }, + { + "text" : "LSTB Bellechasse", + "lang" : "it-CH" + }, + { + "text" : "LSTB Bellechasse", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Segelfluggruppe Freiburg", + "lang" : "de-CH" + }, + { + "text" : "Segelfluggruppe Freiburg", + "lang" : "fr-CH" + }, + { + "text" : "Segelfluggruppe Freiburg", + "lang" : "it-CH" + }, + { + "text" : "Segelfluggruppe Freiburg", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Reto Petri", + "lang" : "de-CH" + }, + { + "text" : "Reto Petri", + "lang" : "fr-CH" + }, + { + "text" : "Reto Petri", + "lang" : "it-CH" + }, + { + "text" : "Reto Petri", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.sg-freiburg.com/kontakt", + "email" : "flugplatzleiter@sg-freiburg.ch", + "phone" : "0041266731933", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P02DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6520681, 47.5178542 ], + [ 7.6520675, 47.5178994 ], + [ 7.6520757, 47.5179697 ], + [ 7.6521267, 47.5184069 ], + [ 7.6521481, 47.5184925 ], + [ 7.6522581, 47.5187764 ], + [ 7.6523207, 47.5189993 ], + [ 7.6524288, 47.5195379 ], + [ 7.6524952, 47.5198685 ], + [ 7.6525175999999995, 47.5199569 ], + [ 7.6528381, 47.5198244 ], + [ 7.6530923, 47.5200327 ], + [ 7.6527084, 47.5202043 ], + [ 7.6529301, 47.5205533 ], + [ 7.653016, 47.5206677 ], + [ 7.6531111, 47.520824 ], + [ 7.6531369, 47.5208744 ], + [ 7.6531692, 47.5208349 ], + [ 7.6532304, 47.5208183 ], + [ 7.653294, 47.5208336 ], + [ 7.6536519, 47.5210192 ], + [ 7.6537416, 47.5210856 ], + [ 7.6543354, 47.5216327 ], + [ 7.6544095, 47.5217267 ], + [ 7.6544978, 47.5219528 ], + [ 7.6545349, 47.52201 ], + [ 7.6546138, 47.5220433 ], + [ 7.6545357, 47.5221384 ], + [ 7.6542658, 47.5222772 ], + [ 7.6546409, 47.5224921 ], + [ 7.654686, 47.5225177 ], + [ 7.6547537, 47.5223303 ], + [ 7.656445, 47.5229947 ], + [ 7.6562059, 47.523062 ], + [ 7.6560683, 47.523188 ], + [ 7.6560201, 47.5232666 ], + [ 7.6560403, 47.5232717 ], + [ 7.6561673, 47.5232987 ], + [ 7.6562977, 47.5233165 ], + [ 7.6564292, 47.5233225 ], + [ 7.6565617, 47.5233204 ], + [ 7.6568976, 47.523306 ], + [ 7.6571571, 47.5232949 ], + [ 7.6572901, 47.5232958 ], + [ 7.6574199, 47.5233118 ], + [ 7.6574577, 47.5233183 ], + [ 7.6574344, 47.5233424 ], + [ 7.6573792, 47.5233912 ], + [ 7.6573278, 47.5234565 ], + [ 7.6573245, 47.5234962 ], + [ 7.6573769, 47.5235333 ], + [ 7.6576352, 47.5236176 ], + [ 7.6578549, 47.5236854 ], + [ 7.658152, 47.5237707 ], + [ 7.6583225, 47.5239146 ], + [ 7.6582577, 47.5239381 ], + [ 7.6586929, 47.5238849 ], + [ 7.6594093999999995, 47.52377 ], + [ 7.6599036, 47.5236755 ], + [ 7.6601507, 47.5236199 ], + [ 7.6605171, 47.523525 ], + [ 7.6608749, 47.5234087 ], + [ 7.6622681, 47.522924 ], + [ 7.662343, 47.5228746 ], + [ 7.662393, 47.5228123 ], + [ 7.6626854, 47.5223315 ], + [ 7.6627933, 47.5221542 ], + [ 7.6628155, 47.5221179 ], + [ 7.6627773999999995, 47.5221081 ], + [ 7.6620408, 47.5219183 ], + [ 7.6612901, 47.5217265 ], + [ 7.6612442, 47.5217148 ], + [ 7.6612001, 47.5217112 ], + [ 7.6612801, 47.5216153 ], + [ 7.6609358, 47.5215608 ], + [ 7.6608758, 47.5215422 ], + [ 7.6609315, 47.5214481 ], + [ 7.6609075, 47.5213536 ], + [ 7.6607976, 47.5211807 ], + [ 7.6606043, 47.5209603 ], + [ 7.6604989, 47.5208054 ], + [ 7.6604741, 47.52067 ], + [ 7.6600909, 47.5206689 ], + [ 7.6593806, 47.5209784 ], + [ 7.6595832, 47.5212047 ], + [ 7.6596532, 47.5213931 ], + [ 7.6596060999999995, 47.5214761 ], + [ 7.6594463, 47.5215177 ], + [ 7.6594002, 47.521529 ], + [ 7.6589907, 47.5216295 ], + [ 7.658952, 47.521639 ], + [ 7.6588369, 47.5215513 ], + [ 7.6587484, 47.5214675 ], + [ 7.6585407, 47.5213864 ], + [ 7.658108, 47.5211886 ], + [ 7.6579925, 47.5211196 ], + [ 7.657909, 47.5210312 ], + [ 7.6578524, 47.5209478 ], + [ 7.6578233, 47.5209693 ], + [ 7.6577023, 47.5210585 ], + [ 7.6574177, 47.5212683 ], + [ 7.6569263, 47.5209426 ], + [ 7.656486, 47.5206618 ], + [ 7.6560648, 47.5202544 ], + [ 7.6558326999999995, 47.5200592 ], + [ 7.6559932, 47.5200129 ], + [ 7.6564451, 47.5198825 ], + [ 7.6570532, 47.519709399999996 ], + [ 7.6568767, 47.5194537 ], + [ 7.6567185, 47.5194855 ], + [ 7.6564905, 47.5191087 ], + [ 7.6563727, 47.5187746 ], + [ 7.6561205999999995, 47.5188378 ], + [ 7.6556977, 47.5183083 ], + [ 7.6556419, 47.5182444 ], + [ 7.6556166, 47.5182154 ], + [ 7.6551926, 47.5177297 ], + [ 7.6551013999999995, 47.5177695 ], + [ 7.654825, 47.5174811 ], + [ 7.6552117, 47.5172985 ], + [ 7.6551156, 47.5172098 ], + [ 7.655198, 47.5170822 ], + [ 7.6556365, 47.5168332 ], + [ 7.6555578, 47.5167175 ], + [ 7.6556038, 47.5166081 ], + [ 7.655523, 47.516547 ], + [ 7.6552822, 47.5167478 ], + [ 7.6551819, 47.5167033 ], + [ 7.6552469, 47.5166006 ], + [ 7.6548848, 47.5167921 ], + [ 7.6546382, 47.516614 ], + [ 7.6548294, 47.516364 ], + [ 7.6550936, 47.5162908 ], + [ 7.6552098, 47.5162523 ], + [ 7.6549219, 47.5161928 ], + [ 7.6546503, 47.5161009 ], + [ 7.6546599, 47.516071 ], + [ 7.6546119, 47.5160376 ], + [ 7.6544634, 47.5160017 ], + [ 7.6543057, 47.515994 ], + [ 7.6541492, 47.5160062 ], + [ 7.6537734, 47.5160581 ], + [ 7.6534048, 47.5161357 ], + [ 7.6532704, 47.5161827 ], + [ 7.6532246, 47.5162021 ], + [ 7.6534524, 47.516368 ], + [ 7.6535163, 47.516354 ], + [ 7.6532994, 47.5165598 ], + [ 7.6530866, 47.5167661 ], + [ 7.652967, 47.5168628 ], + [ 7.6527113, 47.5170489 ], + [ 7.6525663999999995, 47.5171764 ], + [ 7.6523844, 47.5173547 ], + [ 7.6523468, 47.5173974 ], + [ 7.6522973, 47.5174535 ], + [ 7.6522731, 47.5174863 ], + [ 7.6521656, 47.517632 ], + [ 7.6521399, 47.5176737 ], + [ 7.6520822, 47.5178109 ], + [ 7.6520681, 47.5178542 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns213", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Wartenberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Wartenberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Wartenberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Wartenberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7363368, 47.4071421 ], + [ 7.7363379, 47.4072195 ], + [ 7.7363298, 47.4073767 ], + [ 7.7363307, 47.4074259 ], + [ 7.7363382, 47.4074749 ], + [ 7.7363523, 47.4075232 ], + [ 7.7363729, 47.4075705 ], + [ 7.7363998, 47.4076162 ], + [ 7.7364087, 47.4076283 ], + [ 7.7364189, 47.40764 ], + [ 7.7364304, 47.407651 ], + [ 7.736457, 47.4076727 ], + [ 7.7364861, 47.4076929 ], + [ 7.7365175, 47.4077114 ], + [ 7.7365511, 47.407728 ], + [ 7.7365865, 47.4077428 ], + [ 7.7366236, 47.4077555 ], + [ 7.7366622, 47.4077661 ], + [ 7.7366995, 47.4078003 ], + [ 7.7367893, 47.4078753 ], + [ 7.7368375, 47.4079146 ], + [ 7.7369607, 47.4079464 ], + [ 7.7370932, 47.4079805 ], + [ 7.7371296, 47.4079925 ], + [ 7.7372596, 47.4079854 ], + [ 7.7374361, 47.4079504 ], + [ 7.7376629, 47.4078526 ], + [ 7.737633, 47.4078136 ], + [ 7.737503, 47.4076417 ], + [ 7.7374493, 47.4075735 ], + [ 7.737429, 47.4075457 ], + [ 7.737381, 47.4074831 ], + [ 7.7373712999999995, 47.4074928 ], + [ 7.7373628, 47.4075029 ], + [ 7.7373555, 47.4075135 ], + [ 7.7373495, 47.4075245 ], + [ 7.7373117, 47.4075161 ], + [ 7.737116, 47.4073678 ], + [ 7.7370176, 47.4071219 ], + [ 7.7369725, 47.4070133 ], + [ 7.7368661, 47.4067005 ], + [ 7.7367406, 47.4063153 ], + [ 7.7370833, 47.4062747 ], + [ 7.7372229, 47.4062551 ], + [ 7.7377132, 47.4062003 ], + [ 7.7373513, 47.4059995 ], + [ 7.7369523000000004, 47.4057158 ], + [ 7.7368628, 47.4056139 ], + [ 7.7364469, 47.4054837 ], + [ 7.735963, 47.4053495 ], + [ 7.7354237, 47.4051992 ], + [ 7.7352595, 47.4053947 ], + [ 7.7349768, 47.4057144 ], + [ 7.7351658, 47.405804 ], + [ 7.7352272, 47.405836 ], + [ 7.735284, 47.4058718 ], + [ 7.7353356, 47.405911 ], + [ 7.7355111999999995, 47.4060572 ], + [ 7.7355384, 47.4060787 ], + [ 7.7355671, 47.4060991 ], + [ 7.7355974, 47.4061185 ], + [ 7.7359729, 47.4063464 ], + [ 7.7360011, 47.4063653 ], + [ 7.7360268, 47.4063857 ], + [ 7.7360497, 47.4064076 ], + [ 7.7360697, 47.4064307 ], + [ 7.7361051, 47.4064833 ], + [ 7.7361327, 47.406538 ], + [ 7.736152, 47.4065943 ], + [ 7.7361846, 47.4067024 ], + [ 7.7362249, 47.4068093 ], + [ 7.7362728, 47.4069148 ], + [ 7.7363041, 47.4069892 ], + [ 7.7363254999999995, 47.4070652 ], + [ 7.7363368, 47.4071421 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr077", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Mittlere Sörzech", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Mittlere Sörzech", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Mittlere Sörzech", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Mittlere Sörzech", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.0557125, 46.195258 ], + [ 6.0557526, 46.1953433 ], + [ 6.0557497, 46.1953666 ], + [ 6.0558825, 46.1956571 ], + [ 6.0558881, 46.195858 ], + [ 6.0562892, 46.1966588 ], + [ 6.0563936, 46.196794 ], + [ 6.0563942, 46.1967946 ], + [ 6.0563954, 46.1967962 ], + [ 6.0573568, 46.1976074 ], + [ 6.0586915, 46.1981021 ], + [ 6.060197, 46.1982054 ], + [ 6.061217, 46.1979915 ], + [ 6.0615063, 46.1982037 ], + [ 6.0615111, 46.1982063 ], + [ 6.0615113, 46.1982063 ], + [ 6.0616027, 46.1982551 ], + [ 6.0629596, 46.1987211 ], + [ 6.0633198, 46.198738 ], + [ 6.0629288, 46.1989736 ], + [ 6.062897, 46.1989999 ], + [ 6.0621668, 46.1999226 ], + [ 6.0620006, 46.2009691 ], + [ 6.0624017, 46.2019275 ], + [ 6.0624197, 46.2020207 ], + [ 6.0629465, 46.2027825 ], + [ 6.0637868, 46.2033939 ], + [ 6.0638988, 46.2034532 ], + [ 6.0652555, 46.2039151 ], + [ 6.0665435, 46.203973 ], + [ 6.0665958, 46.2039968 ], + [ 6.0677728, 46.2042195 ], + [ 6.0689911, 46.2041779 ], + [ 6.0701309, 46.2038762 ], + [ 6.0702678, 46.2038215 ], + [ 6.0712154, 46.2032904 ], + [ 6.0718797, 46.2025818 ], + [ 6.0721956, 46.2017653 ], + [ 6.0721321, 46.2009209 ], + [ 6.0716954, 46.2001316 ], + [ 6.0716749, 46.200107 ], + [ 6.0716562, 46.2000922 ], + [ 6.0716475, 46.2000744 ], + [ 6.0715692, 46.1999799 ], + [ 6.0714871, 46.1999148 ], + [ 6.0714477, 46.1998336 ], + [ 6.0713698, 46.1997392 ], + [ 6.0713423, 46.1997155 ], + [ 6.0713254, 46.1996852 ], + [ 6.0713044, 46.1996602 ], + [ 6.0710145, 46.1994327 ], + [ 6.070607, 46.1990811 ], + [ 6.0705114, 46.1990377 ], + [ 6.0703021, 46.1988734 ], + [ 6.0697516, 46.1986864 ], + [ 6.0702481, 46.1982781 ], + [ 6.0707074, 46.1974949 ], + [ 6.070795, 46.1966514 ], + [ 6.0705023, 46.1958305 ], + [ 6.0704896, 46.1958096 ], + [ 6.069641, 46.1949404 ], + [ 6.0683789, 46.194362 ], + [ 6.0671722, 46.1941993 ], + [ 6.0666042000000004, 46.1937468 ], + [ 6.0665243, 46.193704 ], + [ 6.0654573, 46.1932989 ], + [ 6.0650494, 46.1932456 ], + [ 6.0650364, 46.1932331 ], + [ 6.0639231, 46.1925183 ], + [ 6.0625008, 46.1921537 ], + [ 6.0619078, 46.1921697 ], + [ 6.061719, 46.1921044 ], + [ 6.0602065, 46.1920314 ], + [ 6.0593209, 46.1922375 ], + [ 6.0589199, 46.1922486 ], + [ 6.0577782, 46.192542 ], + [ 6.0576682, 46.1925849 ], + [ 6.0565165, 46.1932696 ], + [ 6.0558298, 46.1942083 ], + [ 6.0557125, 46.195258 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-14", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.2384504, 47.5503647 ], + [ 8.2384314, 47.5500118 ], + [ 8.2383852, 47.5496601 ], + [ 8.2383119, 47.5493104 ], + [ 8.2382116, 47.5489639 ], + [ 8.2380847, 47.5486214 ], + [ 8.2379314, 47.5482838 ], + [ 8.2377523, 47.5479521 ], + [ 8.2375478, 47.5476273 ], + [ 8.2373185, 47.5473101 ], + [ 8.237065, 47.5470015 ], + [ 8.2367879, 47.5467023 ], + [ 8.2364882, 47.5464133 ], + [ 8.2361664, 47.5461353 ], + [ 8.2358237, 47.5458691 ], + [ 8.2354609, 47.5456154 ], + [ 8.2350789, 47.5453749 ], + [ 8.2346789, 47.5451483 ], + [ 8.2342619, 47.5449362 ], + [ 8.2338291, 47.5447391 ], + [ 8.2333816, 47.5445577 ], + [ 8.2329208, 47.5443923 ], + [ 8.2324478, 47.5442435 ], + [ 8.231964, 47.5441117 ], + [ 8.2314706, 47.5439972 ], + [ 8.230969, 47.5439003 ], + [ 8.2304607, 47.5438213 ], + [ 8.2299469, 47.5437605 ], + [ 8.2294292, 47.5437179 ], + [ 8.2289088, 47.5436938 ], + [ 8.2283874, 47.5436881 ], + [ 8.2278662, 47.5437009 ], + [ 8.2273466, 47.5437321 ], + [ 8.2268303, 47.5437817 ], + [ 8.2263184, 47.5438496 ], + [ 8.2258125, 47.5439354 ], + [ 8.225314, 47.5440391 ], + [ 8.2248241, 47.5441603 ], + [ 8.2243443, 47.5442987 ], + [ 8.2238758, 47.544454 ], + [ 8.2234199, 47.5446256 ], + [ 8.222978, 47.5448131 ], + [ 8.2225511, 47.545016 ], + [ 8.2221405, 47.5452338 ], + [ 8.2217473, 47.5454658 ], + [ 8.2213726, 47.5457114 ], + [ 8.2210173, 47.54597 ], + [ 8.2206826, 47.5462408 ], + [ 8.2203692, 47.5465231 ], + [ 8.2200781, 47.5468161 ], + [ 8.21981, 47.547119 ], + [ 8.2195657, 47.547431 ], + [ 8.2193458, 47.5477513 ], + [ 8.219151, 47.5480788 ], + [ 8.2189818, 47.5484129 ], + [ 8.2188386, 47.5487525 ], + [ 8.2187219, 47.5490967 ], + [ 8.2186319, 47.5494445 ], + [ 8.218569, 47.5497951 ], + [ 8.2185332, 47.5501474 ], + [ 8.2185248, 47.5505005 ], + [ 8.2185436, 47.5508534 ], + [ 8.2185897, 47.5512052 ], + [ 8.2186629, 47.5515548 ], + [ 8.2187631, 47.5519014 ], + [ 8.2188899, 47.5522439 ], + [ 8.219043, 47.5525815 ], + [ 8.219222, 47.5529132 ], + [ 8.2194264, 47.5532381 ], + [ 8.2196557, 47.5535553 ], + [ 8.2199091, 47.553864 ], + [ 8.2201861, 47.5541632 ], + [ 8.2204858, 47.5544523 ], + [ 8.2208075, 47.5547303 ], + [ 8.2211502, 47.5549965 ], + [ 8.2215131, 47.5552502 ], + [ 8.2218951, 47.5554907 ], + [ 8.2222951, 47.5557174 ], + [ 8.2227121, 47.5559296 ], + [ 8.223145, 47.5561267 ], + [ 8.2235925, 47.5563082 ], + [ 8.2240534, 47.5564736 ], + [ 8.2245265, 47.5566224 ], + [ 8.2250104, 47.5567543 ], + [ 8.2255039, 47.5568688 ], + [ 8.2260056, 47.5569657 ], + [ 8.226514, 47.5570447 ], + [ 8.2270279, 47.5571056 ], + [ 8.2275458, 47.5571481 ], + [ 8.2280663, 47.5571723 ], + [ 8.2285879, 47.557178 ], + [ 8.2291092, 47.5571652 ], + [ 8.2296288, 47.5571339 ], + [ 8.2301454, 47.5570843 ], + [ 8.2306573, 47.5570165 ], + [ 8.2311633, 47.5569306 ], + [ 8.231662, 47.5568268 ], + [ 8.232152, 47.5567056 ], + [ 8.2326319, 47.5565672 ], + [ 8.2331005, 47.5564119 ], + [ 8.2335564, 47.5562403 ], + [ 8.2339984, 47.5560527 ], + [ 8.2344253, 47.5558498 ], + [ 8.2348359, 47.555632 ], + [ 8.2352292, 47.5553999 ], + [ 8.2356039, 47.5551542 ], + [ 8.2359591, 47.5548956 ], + [ 8.2362939, 47.5546248 ], + [ 8.2366072, 47.5543424 ], + [ 8.2368983, 47.5540494 ], + [ 8.2371663, 47.5537464 ], + [ 8.2374106, 47.5534344 ], + [ 8.2376303, 47.5531141 ], + [ 8.237825, 47.5527865 ], + [ 8.2379941, 47.5524524 ], + [ 8.2381372, 47.5521128 ], + [ 8.2382538, 47.5517686 ], + [ 8.2383436, 47.5514207 ], + [ 8.2384064, 47.5510702 ], + [ 8.2384421, 47.5507178 ], + [ 8.2384504, 47.5503647 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "ENSI001", + "country" : "CHE", + "name" : [ + { + "text" : "KKA Beznau", + "lang" : "de-CH" + }, + { + "text" : "KKA Beznau", + "lang" : "fr-CH" + }, + { + "text" : "KKA Beznau", + "lang" : "it-CH" + }, + { + "text" : "KKA Beznau", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Axpo Power AG", + "lang" : "de-CH" + }, + { + "text" : "Axpo Power AG", + "lang" : "fr-CH" + }, + { + "text" : "Axpo Power AG", + "lang" : "it-CH" + }, + { + "text" : "Axpo Power AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Stab", + "lang" : "de-CH" + }, + { + "text" : "Stab", + "lang" : "fr-CH" + }, + { + "text" : "Stab", + "lang" : "it-CH" + }, + { + "text" : "Stab", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Rolf Jäggi", + "lang" : "de-CH" + }, + { + "text" : "Rolf Jäggi", + "lang" : "fr-CH" + }, + { + "text" : "Rolf Jäggi", + "lang" : "it-CH" + }, + { + "text" : "Rolf Jäggi", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.axpo.com/ch/de/ueber-uns/energiewissen.detail.html/energiewissen/kernkraftwerk-beznau.html", + "phone" : "0041562667111", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.3691191, 47.4241263 ], + [ 7.3693308, 47.42428 ], + [ 7.3693857, 47.4243198 ], + [ 7.3696678, 47.4244738 ], + [ 7.3698265, 47.4245683 ], + [ 7.3699381, 47.4246571 ], + [ 7.3700051, 47.4247004 ], + [ 7.3700472, 47.4247382 ], + [ 7.3701914, 47.4248914 ], + [ 7.3702839, 47.4249825 ], + [ 7.3703685, 47.4250122 ], + [ 7.3704726, 47.4250149 ], + [ 7.3707155, 47.4249685 ], + [ 7.3708609, 47.4248718 ], + [ 7.3708846, 47.4248561 ], + [ 7.3707842, 47.424794 ], + [ 7.3707513, 47.4247734 ], + [ 7.3707546, 47.4247387 ], + [ 7.3707157, 47.4246663 ], + [ 7.3708675, 47.4245758 ], + [ 7.3708992, 47.4245569 ], + [ 7.3711894000000004, 47.4243838 ], + [ 7.3714261, 47.424148 ], + [ 7.3714594, 47.4240984 ], + [ 7.3718339, 47.4240767 ], + [ 7.3721214, 47.424014 ], + [ 7.3723655, 47.4240132 ], + [ 7.3724636, 47.4240128 ], + [ 7.3726672, 47.4240369 ], + [ 7.3727888, 47.4241103 ], + [ 7.372806, 47.424246 ], + [ 7.3728268, 47.4243459 ], + [ 7.3730002, 47.4244446 ], + [ 7.3734267, 47.4245676 ], + [ 7.3738816, 47.4247575 ], + [ 7.3741404, 47.4247806 ], + [ 7.3745296, 47.4249236 ], + [ 7.3750008, 47.4249931 ], + [ 7.3753791, 47.4250439 ], + [ 7.3758454, 47.4252367 ], + [ 7.3763343, 47.4253748 ], + [ 7.3767036, 47.4253976 ], + [ 7.3768715, 47.4253289 ], + [ 7.3776444, 47.4249736 ], + [ 7.3776475, 47.4249722 ], + [ 7.3777282, 47.4249274 ], + [ 7.3779017, 47.4248311 ], + [ 7.3782881, 47.4245325 ], + [ 7.378617, 47.4243258 ], + [ 7.3787992, 47.4241064 ], + [ 7.3793173, 47.4242113 ], + [ 7.379251, 47.4244846 ], + [ 7.3795052, 47.4247988 ], + [ 7.3794828, 47.4240012 ], + [ 7.3792776, 47.4233937 ], + [ 7.3792493, 47.4232466 ], + [ 7.3792293, 47.4231429 ], + [ 7.3791995, 47.4228704 ], + [ 7.3790671, 47.422876 ], + [ 7.3789462, 47.4228344 ], + [ 7.3786951, 47.4228883 ], + [ 7.3783346, 47.4230017 ], + [ 7.3778628, 47.422992 ], + [ 7.3776781, 47.4228604 ], + [ 7.3774049999999995, 47.4228698 ], + [ 7.3772844, 47.4229995 ], + [ 7.3767949, 47.4230228 ], + [ 7.376187, 47.4229688 ], + [ 7.3758676, 47.4228492 ], + [ 7.3755353, 47.4228003 ], + [ 7.3753058, 47.4226826 ], + [ 7.3749908, 47.422663299999996 ], + [ 7.3745543, 47.4225443 ], + [ 7.3741441, 47.4224421 ], + [ 7.3737525, 47.4224303 ], + [ 7.3733463, 47.4223861 ], + [ 7.3730125, 47.4223694 ], + [ 7.3725837, 47.4223865 ], + [ 7.3723673, 47.4224108 ], + [ 7.3723469, 47.4224131 ], + [ 7.3721292, 47.422432 ], + [ 7.3719974, 47.4224198 ], + [ 7.3717301, 47.4224519 ], + [ 7.3715075, 47.4224529 ], + [ 7.3714256, 47.4224202 ], + [ 7.3712613, 47.4224458 ], + [ 7.3710483, 47.422485 ], + [ 7.3708537, 47.4225133 ], + [ 7.370732, 47.4225299 ], + [ 7.370605, 47.4225553 ], + [ 7.3703106, 47.4226232 ], + [ 7.3701023, 47.4226801 ], + [ 7.3698988, 47.4227324 ], + [ 7.3696999, 47.4227719 ], + [ 7.3695547999999995, 47.4228015 ], + [ 7.3693100000000005, 47.4228673 ], + [ 7.3692916, 47.4228696 ], + [ 7.3692664, 47.4228808 ], + [ 7.3692408, 47.4228915 ], + [ 7.3692147, 47.4229018 ], + [ 7.3691882, 47.4229116 ], + [ 7.3691613, 47.4229209 ], + [ 7.3689969, 47.4229757 ], + [ 7.3689748, 47.4229834 ], + [ 7.3689531, 47.4229917 ], + [ 7.3689318, 47.4230004 ], + [ 7.3689109, 47.4230096 ], + [ 7.3688905, 47.4230193 ], + [ 7.3688705, 47.4230294 ], + [ 7.368851, 47.4230399 ], + [ 7.368832, 47.4230508 ], + [ 7.3688241, 47.4230643 ], + [ 7.3688154, 47.4230766 ], + [ 7.3688087, 47.4230895 ], + [ 7.3688074, 47.4235097 ], + [ 7.3688142, 47.4235569 ], + [ 7.3688289, 47.4236035 ], + [ 7.3688412, 47.4236502 ], + [ 7.3688561, 47.4236965 ], + [ 7.3688734, 47.4237425 ], + [ 7.3688932, 47.4237878 ], + [ 7.3689156, 47.4238328 ], + [ 7.3689404, 47.4238772 ], + [ 7.3691191, 47.4241263 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns310", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Martiswald", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Martiswald", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Martiswald", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Martiswald", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7310303000000005, 47.3935988 ], + [ 7.7308826, 47.3936228 ], + [ 7.7307403, 47.3936464 ], + [ 7.7306995, 47.3936521 ], + [ 7.7306586, 47.3936572 ], + [ 7.7306175, 47.3936618 ], + [ 7.7305763, 47.3936657 ], + [ 7.7305349, 47.393669 ], + [ 7.7304935, 47.3936717 ], + [ 7.730452, 47.3936738 ], + [ 7.7304104, 47.3936753 ], + [ 7.7303692, 47.3936762 ], + [ 7.7303280999999995, 47.3936765 ], + [ 7.7302869, 47.3936762 ], + [ 7.7302457, 47.3936753 ], + [ 7.7302046, 47.3936738 ], + [ 7.7301636, 47.3936717 ], + [ 7.7301226, 47.393669 ], + [ 7.7300816999999995, 47.3936658 ], + [ 7.730041, 47.3936619 ], + [ 7.7300003, 47.3936574 ], + [ 7.7297058, 47.3936211 ], + [ 7.7293492, 47.3935899 ], + [ 7.7292123, 47.3935913 ], + [ 7.7290767, 47.3936105 ], + [ 7.7289505, 47.3936463 ], + [ 7.7286372, 47.3937781 ], + [ 7.7284775, 47.3938254 ], + [ 7.728332, 47.393863 ], + [ 7.7282155, 47.3938608 ], + [ 7.7280716, 47.3938471 ], + [ 7.7274501, 47.3937626 ], + [ 7.7272014, 47.3936868 ], + [ 7.7269189, 47.3935903 ], + [ 7.7265519, 47.3934714 ], + [ 7.7262189, 47.3937138 ], + [ 7.726034, 47.3939576 ], + [ 7.7258668, 47.3940479 ], + [ 7.7256794, 47.3942044 ], + [ 7.7256404, 47.394237 ], + [ 7.7256398, 47.3942373 ], + [ 7.7257446, 47.3942595 ], + [ 7.7259549, 47.3943158 ], + [ 7.7259902, 47.3943251 ], + [ 7.7260259, 47.3943338 ], + [ 7.7260618, 47.394342 ], + [ 7.726098, 47.3943496 ], + [ 7.7261344, 47.3943567 ], + [ 7.7261711, 47.3943631 ], + [ 7.726208, 47.394369 ], + [ 7.726245, 47.3943743 ], + [ 7.7262868000000005, 47.3943811 ], + [ 7.7263283, 47.3943885 ], + [ 7.7263697, 47.3943964 ], + [ 7.7264108, 47.3944048 ], + [ 7.7264517, 47.3944137 ], + [ 7.7264923, 47.3944231 ], + [ 7.7265327, 47.394433 ], + [ 7.7265728, 47.3944434 ], + [ 7.7266068, 47.3944481 ], + [ 7.7266407, 47.3944533 ], + [ 7.7266743, 47.3944591 ], + [ 7.7267077, 47.3944655 ], + [ 7.7267409, 47.3944724 ], + [ 7.7267738, 47.3944799 ], + [ 7.7268065, 47.3944879 ], + [ 7.7268388, 47.3944965 ], + [ 7.7268708, 47.3945056 ], + [ 7.7269025, 47.3945153 ], + [ 7.7269338, 47.3945255 ], + [ 7.7269647, 47.3945362 ], + [ 7.727001, 47.3945484 ], + [ 7.7270376, 47.3945601 ], + [ 7.7270746, 47.3945712 ], + [ 7.7271119, 47.3945819 ], + [ 7.7271495, 47.394592 ], + [ 7.7271874, 47.3946016 ], + [ 7.7272256, 47.3946106 ], + [ 7.7272641, 47.3946191 ], + [ 7.7273028, 47.394627 ], + [ 7.7273418, 47.3946344 ], + [ 7.727381, 47.3946412 ], + [ 7.7274118, 47.3946457 ], + [ 7.7274424, 47.3946507 ], + [ 7.7274728, 47.3946564 ], + [ 7.7275030000000005, 47.3946626 ], + [ 7.7275328, 47.3946695 ], + [ 7.7275624, 47.3946769 ], + [ 7.7275916, 47.3946849 ], + [ 7.7276205000000004, 47.3946935 ], + [ 7.7276489999999995, 47.3947027 ], + [ 7.7276771, 47.3947124 ], + [ 7.7277047, 47.3947226 ], + [ 7.7277319, 47.3947334 ], + [ 7.7277587, 47.3947448 ], + [ 7.7277849, 47.3947566 ], + [ 7.7278106, 47.394769 ], + [ 7.7278358, 47.3947818 ], + [ 7.7278604, 47.3947952 ], + [ 7.7278845, 47.394809 ], + [ 7.7279079, 47.3948233 ], + [ 7.7279493, 47.3948471 ], + [ 7.72799, 47.3948713 ], + [ 7.7280302, 47.3948959 ], + [ 7.7280697, 47.3949211 ], + [ 7.7281087, 47.3949466 ], + [ 7.728147, 47.3949726 ], + [ 7.7281847, 47.394999 ], + [ 7.7282217, 47.3950258 ], + [ 7.7285466, 47.3952571 ], + [ 7.7285727, 47.3952739 ], + [ 7.7285995, 47.3952903 ], + [ 7.7286269999999995, 47.3953061 ], + [ 7.7286551, 47.3953214 ], + [ 7.7286839, 47.3953362 ], + [ 7.7287132, 47.3953504 ], + [ 7.7287431, 47.3953641 ], + [ 7.7287735, 47.3953772 ], + [ 7.7288045, 47.3953897 ], + [ 7.728836, 47.3954016 ], + [ 7.7288679, 47.3954129 ], + [ 7.7289003, 47.3954237 ], + [ 7.7289332, 47.3954337 ], + [ 7.7289664, 47.3954432 ], + [ 7.729, 47.395452 ], + [ 7.729034, 47.3954602 ], + [ 7.7290683, 47.3954678 ], + [ 7.7291028, 47.3954747 ], + [ 7.7291377, 47.3954809 ], + [ 7.7291728, 47.3954865 ], + [ 7.7292081, 47.3954914 ], + [ 7.7292436, 47.3954956 ], + [ 7.7292784, 47.3954996 ], + [ 7.7293131, 47.3955042 ], + [ 7.7293475, 47.3955095 ], + [ 7.7293817, 47.3955154 ], + [ 7.7294157, 47.395522 ], + [ 7.7294493, 47.3955292 ], + [ 7.7294827, 47.3955371 ], + [ 7.7295157, 47.3955456 ], + [ 7.7295483, 47.3955547 ], + [ 7.7295806, 47.3955645 ], + [ 7.7296124, 47.3955748 ], + [ 7.7296438, 47.3955858 ], + [ 7.7296747, 47.3955974 ], + [ 7.7297052, 47.3956095 ], + [ 7.7297351, 47.3956222 ], + [ 7.7297645, 47.3956355 ], + [ 7.7297933, 47.3956494 ], + [ 7.7298215, 47.3956638 ], + [ 7.7299263, 47.3957192 ], + [ 7.7301952, 47.3958983 ], + [ 7.7302143999999995, 47.395841 ], + [ 7.7302979, 47.3955915 ], + [ 7.7304077, 47.3952638 ], + [ 7.7304679, 47.3950841 ], + [ 7.7305029, 47.3949144 ], + [ 7.7306127, 47.3943822 ], + [ 7.7307266, 47.3941588 ], + [ 7.7308689, 47.3939064 ], + [ 7.7310303000000005, 47.3935988 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr096", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Fuchsloch", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Fuchsloch", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Fuchsloch", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Fuchsloch", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.4994572999999995, 46.5189915 ], + [ 6.4992016, 46.5189951 ], + [ 6.4989467, 46.5190103 ], + [ 6.4986938, 46.519037 ], + [ 6.498444, 46.519075 ], + [ 6.4981983, 46.5191243 ], + [ 6.4979578, 46.5191845 ], + [ 6.4977236, 46.5192554 ], + [ 6.4974965, 46.5193368 ], + [ 6.4972776, 46.5194282 ], + [ 6.4970679, 46.5195294 ], + [ 6.4968682, 46.5196398 ], + [ 6.4966794, 46.5197589 ], + [ 6.4965022999999995, 46.5198864 ], + [ 6.4963376, 46.5200215 ], + [ 6.4961861, 46.5201638 ], + [ 6.4960484, 46.5203126 ], + [ 6.4959251, 46.5204674 ], + [ 6.4958168, 46.5206273 ], + [ 6.4957238, 46.5207919 ], + [ 6.4956466, 46.5209602 ], + [ 6.4956167, 46.521038 ], + [ 6.4955522, 46.5212168 ], + [ 6.495521, 46.5213105 ], + [ 6.4954763, 46.5214844 ], + [ 6.4954481, 46.5216599 ], + [ 6.4954367, 46.5218363 ], + [ 6.495442, 46.5220129 ], + [ 6.495464, 46.5221888 ], + [ 6.4955026, 46.5223634 ], + [ 6.4955577, 46.5225358 ], + [ 6.495629, 46.5227054 ], + [ 6.4957163, 46.5228715 ], + [ 6.495819, 46.5230332 ], + [ 6.4959369, 46.5231899 ], + [ 6.4960694, 46.523341 ], + [ 6.4962159, 46.5234858 ], + [ 6.4963758, 46.5236236 ], + [ 6.4965484, 46.5237539 ], + [ 6.4967331, 46.5238762 ], + [ 6.4969289, 46.5239899 ], + [ 6.497135, 46.5240945 ], + [ 6.4973506, 46.5241895 ], + [ 6.4975748, 46.5242746 ], + [ 6.4978066, 46.5243494 ], + [ 6.4980449, 46.5244136 ], + [ 6.4982888, 46.5244669 ], + [ 6.4983547, 46.5244793 ], + [ 6.4986056, 46.5245246 ], + [ 6.4987881, 46.5245545 ], + [ 6.49904, 46.5245853 ], + [ 6.4992943, 46.5246047 ], + [ 6.4995499, 46.5246126 ], + [ 6.4998057, 46.524609 ], + [ 6.5000606, 46.5245938 ], + [ 6.5003135, 46.5245671 ], + [ 6.5005634, 46.524529 ], + [ 6.5008091, 46.5244798 ], + [ 6.5010496, 46.5244196 ], + [ 6.5012839, 46.5243486 ], + [ 6.501511, 46.5242673 ], + [ 6.5017298, 46.5241758 ], + [ 6.5019396, 46.5240747 ], + [ 6.5021392, 46.5239643 ], + [ 6.5023281, 46.5238451 ], + [ 6.5025052, 46.5237177 ], + [ 6.5026698, 46.5235825 ], + [ 6.5028213, 46.5234402 ], + [ 6.502959, 46.5232913 ], + [ 6.5030823, 46.5231366 ], + [ 6.5031907, 46.5229766 ], + [ 6.5032836, 46.5228121 ], + [ 6.5033608, 46.5226437 ], + [ 6.5033723, 46.522615 ], + [ 6.5034393999999995, 46.5224428 ], + [ 6.503489, 46.5223001 ], + [ 6.5035337, 46.5221262 ], + [ 6.5035618, 46.5219506 ], + [ 6.5035732, 46.5217742 ], + [ 6.5035679, 46.5215977 ], + [ 6.5035457999999995, 46.5214217 ], + [ 6.5035072, 46.5212472 ], + [ 6.5034521, 46.5210747 ], + [ 6.5033807, 46.5209051 ], + [ 6.5032935, 46.5207391 ], + [ 6.5031907, 46.5205774 ], + [ 6.5030728, 46.5204207 ], + [ 6.5029403, 46.5202696 ], + [ 6.5027938, 46.5201248 ], + [ 6.5026339, 46.519987 ], + [ 6.5024612, 46.5198567 ], + [ 6.5022766, 46.5197344 ], + [ 6.5020808, 46.5196208 ], + [ 6.5018747, 46.5195162 ], + [ 6.5016591, 46.5194212 ], + [ 6.5014349, 46.519336 ], + [ 6.5012032, 46.5192612 ], + [ 6.5009648, 46.5191971 ], + [ 6.5007776, 46.5191551 ], + [ 6.5005241, 46.5191031 ], + [ 6.5004675, 46.5190918 ], + [ 6.5002191, 46.5190496 ], + [ 6.4999672, 46.5190188 ], + [ 6.4997129, 46.5189994 ], + [ 6.4994572999999995, 46.5189915 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00037", + "country" : "CHE", + "name" : [ + { + "text" : "Hôpital régional EHC Morges", + "lang" : "de-CH" + }, + { + "text" : "Hôpital régional EHC Morges", + "lang" : "fr-CH" + }, + { + "text" : "Hôpital régional EHC Morges", + "lang" : "it-CH" + }, + { + "text" : "Hôpital régional EHC Morges", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kantonspolizei Waadt", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale vaudoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Vaud", + "lang" : "it-CH" + }, + { + "text" : "Vaud Cantonal Police", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.pcv@vd.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.2496994, 46.2451658 ], + [ 7.2497695, 46.2450317 ], + [ 7.2498298, 46.2449428 ], + [ 7.2499143, 46.2448654 ], + [ 7.2500143, 46.2447828 ], + [ 7.2500899, 46.2447166 ], + [ 7.2501267, 46.2446101 ], + [ 7.2501222, 46.2445143 ], + [ 7.2501663, 46.2444249 ], + [ 7.2502688, 46.2443084 ], + [ 7.2504119, 46.2441646 ], + [ 7.2504992, 46.2440028 ], + [ 7.2505215, 46.2438567 ], + [ 7.2505845, 46.2436943 ], + [ 7.250698, 46.2436909 ], + [ 7.2512616, 46.2438084 ], + [ 7.2514705, 46.2438463 ], + [ 7.2516352, 46.2437985 ], + [ 7.2517603, 46.2437107 ], + [ 7.2518629, 46.243566 ], + [ 7.2519573, 46.2434382 ], + [ 7.2520598, 46.2433048 ], + [ 7.2521516, 46.2430247 ], + [ 7.2521360999999995, 46.2427934 ], + [ 7.2521045, 46.2425787 ], + [ 7.2520108, 46.2424811 ], + [ 7.251927, 46.2423386 ], + [ 7.2518982, 46.2422423 ], + [ 7.2519107, 46.2421355 ], + [ 7.2519629, 46.2420406 ], + [ 7.252096, 46.241953 ], + [ 7.2522301, 46.2418427 ], + [ 7.2523246, 46.2417148 ], + [ 7.2523452, 46.2416026 ], + [ 7.2523532, 46.2413941 ], + [ 7.2524142, 46.2410796 ], + [ 7.2523493, 46.2408699 ], + [ 7.2522484, 46.2407609 ], + [ 7.2522033, 46.2406698 ], + [ 7.2523212, 46.2405594 ], + [ 7.2525381, 46.2404113 ], + [ 7.2529439, 46.2401934 ], + [ 7.2533948, 46.2398636 ], + [ 7.2535622, 46.2397259 ], + [ 7.2536818, 46.239576 ], + [ 7.2537195, 46.2394301 ], + [ 7.2536835, 46.2393168 ], + [ 7.2536059999999996, 46.2392252 ], + [ 7.2534817, 46.2390819 ], + [ 7.2534149, 46.2389341 ], + [ 7.2533555, 46.2387865 ], + [ 7.2533131, 46.2386222 ], + [ 7.2533453, 46.2384312 ], + [ 7.2533516, 46.2382623 ], + [ 7.2533353, 46.2380535 ], + [ 7.2533235, 46.2379462 ], + [ 7.2533603, 46.2378341 ], + [ 7.2533584, 46.237682 ], + [ 7.2533565, 46.2375128 ], + [ 7.2533222, 46.2373543 ], + [ 7.2532952, 46.237213 ], + [ 7.2533274, 46.237022 ], + [ 7.2533346, 46.2368249 ], + [ 7.2533092, 46.236644 ], + [ 7.2533154, 46.236492 ], + [ 7.2533604, 46.23638 ], + [ 7.2534224, 46.2362516 ], + [ 7.2534286, 46.2360939 ], + [ 7.2533466, 46.235912 ], + [ 7.2532727, 46.2357134 ], + [ 7.2531834, 46.2355089 ], + [ 7.2531311, 46.2354007 ], + [ 7.2531509, 46.2352998 ], + [ 7.253123, 46.2351809 ], + [ 7.2530103, 46.2349703 ], + [ 7.252913, 46.2347431 ], + [ 7.2528192, 46.2344482 ], + [ 7.2527398, 46.23421 ], + [ 7.2528009, 46.2340984 ], + [ 7.2528864, 46.2339874 ], + [ 7.252962, 46.2339041 ], + [ 7.2529997999999996, 46.2337696 ], + [ 7.2529672, 46.2335773 ], + [ 7.2528959, 46.2333225 ], + [ 7.2528481, 46.2330905 ], + [ 7.2528263, 46.2328196 ], + [ 7.2528388, 46.2324985 ], + [ 7.2528259, 46.2319967 ], + [ 7.2528124, 46.2319232 ], + [ 7.2527285, 46.2318033 ], + [ 7.2526502, 46.2317286 ], + [ 7.2525719, 46.2316481 ], + [ 7.2525583000000005, 46.2315916 ], + [ 7.2525448, 46.2315237 ], + [ 7.2525547, 46.2314675 ], + [ 7.2525753, 46.2313608 ], + [ 7.2526031, 46.2312769 ], + [ 7.2526805, 46.2311543 ], + [ 7.2527498, 46.2310372 ], + [ 7.2527982, 46.2308521 ], + [ 7.2528296, 46.2306667 ], + [ 7.2528251, 46.2305595 ], + [ 7.2527629000000005, 46.230502 ], + [ 7.2526927, 46.2304331 ], + [ 7.2526242, 46.230319 ], + [ 7.252563, 46.2302165 ], + [ 7.2525125, 46.2300578 ], + [ 7.2524619999999995, 46.2298934 ], + [ 7.2524205, 46.2297066 ], + [ 7.25246, 46.2295326 ], + [ 7.2525093, 46.2293138 ], + [ 7.2525254, 46.2290999 ], + [ 7.2525371, 46.2290044 ], + [ 7.2524848, 46.2289076 ], + [ 7.2523839, 46.2287817 ], + [ 7.2523002, 46.2286448 ], + [ 7.2522389, 46.2285423 ], + [ 7.2521363, 46.2284783 ], + [ 7.2520003, 46.2284364 ], + [ 7.2519067, 46.2283444 ], + [ 7.2517977, 46.2282297 ], + [ 7.251713, 46.2281098 ], + [ 7.2516608, 46.2279905 ], + [ 7.2515914, 46.2278933 ], + [ 7.2514897, 46.2277956 ], + [ 7.2514212, 46.2276928 ], + [ 7.25136, 46.2275903 ], + [ 7.2513239, 46.2274882 ], + [ 7.2512914, 46.2272847 ], + [ 7.2512796, 46.2271549 ], + [ 7.2512543, 46.2269853 ], + [ 7.2512336, 46.2268779 ], + [ 7.2511399, 46.2267972 ], + [ 7.2510769, 46.226751 ], + [ 7.2509905, 46.226676 ], + [ 7.2509292, 46.2265904 ], + [ 7.2509174, 46.2264774 ], + [ 7.2509219, 46.2263592 ], + [ 7.2508453, 46.2262507 ], + [ 7.2507346, 46.2261753 ], + [ 7.2506166, 46.2260829 ], + [ 7.2505733, 46.2259468 ], + [ 7.2505553, 46.2257831 ], + [ 7.2505291, 46.2256191 ], + [ 7.2505992, 46.2254852 ], + [ 7.2506838, 46.225391 ], + [ 7.2507945, 46.2252522 ], + [ 7.2509221, 46.2251136 ], + [ 7.2510417, 46.224958 ], + [ 7.2512163, 46.2248374 ], + [ 7.2513674, 46.2247162 ], + [ 7.2514672000000004, 46.2244306 ], + [ 7.2516317, 46.2241801 ], + [ 7.2516938, 46.2240291 ], + [ 7.2516756, 46.2238878 ], + [ 7.2515919, 46.2237341 ], + [ 7.2514991, 46.2236253 ], + [ 7.2514144, 46.2235166 ], + [ 7.2512164, 46.2233833 ], + [ 7.2510499, 46.2233013 ], + [ 7.25094, 46.2232091 ], + [ 7.250832, 46.2230494 ], + [ 7.2507006, 46.2228891 ], + [ 7.2505358, 46.2227451 ], + [ 7.2504133, 46.222568 ], + [ 7.2503413, 46.2225555 ], + [ 7.2502351, 46.2225591 ], + [ 7.2500858, 46.2226521 ], + [ 7.2500093, 46.2227465 ], + [ 7.2498743, 46.2228848 ], + [ 7.2497241, 46.2229891 ], + [ 7.2495657, 46.2231045 ], + [ 7.2494389, 46.2232374 ], + [ 7.2494021, 46.2233326 ], + [ 7.2492438, 46.2234423 ], + [ 7.2491043, 46.2234905 ], + [ 7.2490027, 46.22359 ], + [ 7.2488938, 46.2236838 ], + [ 7.24873, 46.2237258 ], + [ 7.2485906, 46.2237626 ], + [ 7.2484493, 46.2238501 ], + [ 7.2482999, 46.2239375 ], + [ 7.2481326, 46.2240697 ], + [ 7.2479257, 46.2241841 ], + [ 7.24777, 46.2242319 ], + [ 7.2475819, 46.2242567 ], + [ 7.2474874, 46.224193 ], + [ 7.2473694, 46.2241118 ], + [ 7.2472416, 46.2240531 ], + [ 7.2469779, 46.2239579 ], + [ 7.2466845, 46.2237778 ], + [ 7.2464846, 46.2237065 ], + [ 7.2462731, 46.2237306 ], + [ 7.2460599, 46.2237942 ], + [ 7.2458449, 46.2238916 ], + [ 7.2454794, 46.2239243 ], + [ 7.2452778, 46.2238924 ], + [ 7.2450672, 46.2238885 ], + [ 7.2449674, 46.2239542 ], + [ 7.2448513, 46.2240197 ], + [ 7.2447361, 46.2240626 ], + [ 7.2446048, 46.2240996 ], + [ 7.2444419, 46.2241078 ], + [ 7.2443132, 46.2240941 ], + [ 7.2440774, 46.2241123 ], + [ 7.2439478, 46.2241099 ], + [ 7.2437129, 46.2240886 ], + [ 7.2435041, 46.2240452 ], + [ 7.2433826, 46.2240429 ], + [ 7.243227, 46.2240738 ], + [ 7.2430478, 46.2241043 ], + [ 7.2428418, 46.2241737 ], + [ 7.2426123, 46.2242483 ], + [ 7.2424089, 46.2242613 ], + [ 7.2421317, 46.224307 ], + [ 7.2419364999999996, 46.2243145 ], + [ 7.2417898, 46.2243456 ], + [ 7.2416251, 46.2244102 ], + [ 7.2414371, 46.2244349 ], + [ 7.2412904, 46.2244546 ], + [ 7.2411265, 46.2245079 ], + [ 7.2410177000000004, 46.2245904 ], + [ 7.2409259, 46.2246563 ], + [ 7.2408576, 46.2247452 ], + [ 7.2407514, 46.2247657 ], + [ 7.2406542, 46.2247583 ], + [ 7.240493, 46.224744 ], + [ 7.2402888, 46.2247852 ], + [ 7.2401223, 46.2248836 ], + [ 7.2399955, 46.2250108 ], + [ 7.2398345, 46.2251826 ], + [ 7.2396743, 46.2253598 ], + [ 7.2392478, 46.2256844 ], + [ 7.2391957, 46.2257567 ], + [ 7.239193, 46.2258299 ], + [ 7.2391102, 46.2258678 ], + [ 7.2390436, 46.2259116 ], + [ 7.2388772, 46.2260269 ], + [ 7.2387853, 46.2261041 ], + [ 7.2386999, 46.2262039 ], + [ 7.2386072, 46.2263035 ], + [ 7.2384804, 46.2264309 ], + [ 7.2383877, 46.2265081 ], + [ 7.2382221, 46.2266064 ], + [ 7.2380557, 46.2267047 ], + [ 7.2378108, 46.2267621 ], + [ 7.2375976, 46.226820000000004 ], + [ 7.2374896, 46.2268913 ], + [ 7.2373952, 46.227008 ], + [ 7.2373762, 46.2270864 ], + [ 7.237469, 46.2272009 ], + [ 7.2374646, 46.2273023 ], + [ 7.2374375, 46.2273863 ], + [ 7.2373818, 46.2275657 ], + [ 7.2372882, 46.2276596 ], + [ 7.2372288, 46.2277318 ], + [ 7.2371289, 46.2278032 ], + [ 7.237101, 46.2278984 ], + [ 7.2370579, 46.2279597 ], + [ 7.2370066, 46.2280263 ], + [ 7.2368896, 46.2281256 ], + [ 7.2367564, 46.2282076 ], + [ 7.2366881, 46.2282852 ], + [ 7.2366530000000004, 46.2283578 ], + [ 7.2366836, 46.2284091 ], + [ 7.2366647, 46.2284707 ], + [ 7.2365972, 46.2285428 ], + [ 7.2365054, 46.2286087 ], + [ 7.236446, 46.2286808 ], + [ 7.2364596, 46.2287319 ], + [ 7.2365136, 46.2288117 ], + [ 7.2364992, 46.2289692 ], + [ 7.2364677, 46.2291547 ], + [ 7.2364489, 46.2292162 ], + [ 7.2364039, 46.2293225 ], + [ 7.2362941, 46.2294388 ], + [ 7.2362266, 46.2294995 ], + [ 7.2362087, 46.2295443 ], + [ 7.2362068, 46.2296006 ], + [ 7.2361862, 46.2297073 ], + [ 7.2361509999999996, 46.2297855 ], + [ 7.236107, 46.2298692 ], + [ 7.2360233, 46.2299296 ], + [ 7.2358991, 46.2300062 ], + [ 7.2358001, 46.2300438 ], + [ 7.2357416, 46.2300878 ], + [ 7.2356993, 46.2301321 ], + [ 7.2356470999999996, 46.2302213 ], + [ 7.2355878, 46.2302765 ], + [ 7.2355535, 46.2303322 ], + [ 7.2355284, 46.2303543 ], + [ 7.235469, 46.2304208 ], + [ 7.2353691, 46.2304922 ], + [ 7.2353106, 46.2305249 ], + [ 7.2352431, 46.2305969 ], + [ 7.2352161, 46.2306584 ], + [ 7.235181, 46.230731 ], + [ 7.2351225, 46.230775 ], + [ 7.2350236, 46.2308069 ], + [ 7.2348777, 46.2308155 ], + [ 7.2347868, 46.2308588 ], + [ 7.2346294, 46.2309292 ], + [ 7.2344377, 46.2310608 ], + [ 7.2342882, 46.2311538 ], + [ 7.2341137, 46.2312633 ], + [ 7.2338887, 46.2314168 ], + [ 7.2337221, 46.2315377 ], + [ 7.2336376, 46.2316094 ], + [ 7.2336016, 46.2316988 ], + [ 7.2335665, 46.2317714 ], + [ 7.2335224, 46.2318721 ], + [ 7.2334612, 46.2319836 ], + [ 7.2333685, 46.2320721 ], + [ 7.2332353, 46.2321597 ], + [ 7.233085, 46.2322527 ], + [ 7.232986, 46.2323071 ], + [ 7.2327358, 46.2324885 ], + [ 7.2324523, 46.2326804 ], + [ 7.2323345, 46.2327796 ], + [ 7.232221, 46.2327775 ], + [ 7.2320419, 46.232791 ], + [ 7.2319204, 46.2328056 ], + [ 7.2318295, 46.2328378 ], + [ 7.2316729, 46.2328968 ], + [ 7.231582, 46.2329459 ], + [ 7.2313929, 46.2330211 ], + [ 7.2311949, 46.2331019 ], + [ 7.2309142, 46.2332151 ], + [ 7.2306666, 46.2333401 ], + [ 7.2304335, 46.2334765 ], + [ 7.2301851, 46.233624 ], + [ 7.229979, 46.2337046 ], + [ 7.2297495, 46.2337623 ], + [ 7.2294857, 46.2338757 ], + [ 7.2288944, 46.2340562 ], + [ 7.2280492, 46.2343108 ], + [ 7.225094, 46.2335561 ], + [ 7.22485, 46.2333825 ], + [ 7.2248212, 46.2332917 ], + [ 7.2248096, 46.2331676 ], + [ 7.2247907, 46.2330263 ], + [ 7.2247528, 46.2327663 ], + [ 7.2247654, 46.232451 ], + [ 7.224778, 46.2321299 ], + [ 7.2247788, 46.2319101 ], + [ 7.2247411, 46.2318363 ], + [ 7.2246223, 46.2317495 ], + [ 7.2244962, 46.2316681 ], + [ 7.2243054, 46.2315687 ], + [ 7.2242047, 46.2314485 ], + [ 7.2241777, 46.231307 ], + [ 7.2242092, 46.2311273 ], + [ 7.2242343, 46.2309137 ], + [ 7.2242658, 46.2307339 ], + [ 7.2243224999999995, 46.2305321 ], + [ 7.224355, 46.2303186 ], + [ 7.2244225, 46.2300549 ], + [ 7.2244702, 46.2298585 ], + [ 7.2245188, 46.2296735 ], + [ 7.2245989, 46.2294777 ], + [ 7.2246295, 46.2293206 ], + [ 7.2245719, 46.2291391 ], + [ 7.2245062, 46.2289688 ], + [ 7.2244890999999996, 46.2287881 ], + [ 7.2244639, 46.2286018 ], + [ 7.2244712, 46.2284046 ], + [ 7.2244954, 46.2282134 ], + [ 7.2245179, 46.228056 ], + [ 7.2245549, 46.2279328 ], + [ 7.2245944, 46.2277588 ], + [ 7.2245864, 46.2275502 ], + [ 7.2246664, 46.2273769 ], + [ 7.2247492, 46.2271305 ], + [ 7.2248681, 46.226789 ], + [ 7.224941, 46.2265762 ], + [ 7.2249293, 46.2264633 ], + [ 7.224797, 46.2263367 ], + [ 7.2244567, 46.2261275 ], + [ 7.2238286, 46.2266172 ], + [ 7.2235693, 46.2268265 ], + [ 7.2233318, 46.2270869 ], + [ 7.2231625, 46.2272697 ], + [ 7.2230321, 46.2274814 ], + [ 7.2229528, 46.2276488 ], + [ 7.2228341, 46.2277707 ], + [ 7.222717, 46.2278587 ], + [ 7.222519, 46.2279619 ], + [ 7.2223939, 46.2280329 ], + [ 7.2222616, 46.2281092 ], + [ 7.2220357, 46.228274 ], + [ 7.2218944, 46.2283616 ], + [ 7.221735, 46.2285051 ], + [ 7.2215505, 46.2286537 ], + [ 7.2214083, 46.2287694 ], + [ 7.2212427, 46.2288565 ], + [ 7.2210933, 46.2289438 ], + [ 7.2209268, 46.2290421 ], + [ 7.2206954, 46.2291561 ], + [ 7.2205146, 46.229209 ], + [ 7.2203741, 46.2292853 ], + [ 7.2202814, 46.2293681 ], + [ 7.2201797, 46.2294676 ], + [ 7.2200879, 46.2295504 ], + [ 7.2200114, 46.2296334 ], + [ 7.219843, 46.229788 ], + [ 7.2197189, 46.2298421 ], + [ 7.2196207, 46.2298797 ], + [ 7.2195037, 46.229962 ], + [ 7.2193858, 46.2300725 ], + [ 7.2192742, 46.2302282 ], + [ 7.2191968, 46.2303281 ], + [ 7.2190536, 46.230472 ], + [ 7.2188763, 46.2306377 ], + [ 7.218708, 46.2307923 ], + [ 7.2185289, 46.2310144 ], + [ 7.2183533, 46.2311575 ], + [ 7.2181265, 46.2313505 ], + [ 7.2179347, 46.2314877 ], + [ 7.2176845, 46.2316521 ], + [ 7.2174783, 46.2317553 ], + [ 7.2171588, 46.2318168 ], + [ 7.217048, 46.2319669 ], + [ 7.2168130999999995, 46.2319568 ], + [ 7.2165944, 46.2319585 ], + [ 7.2164477, 46.2319781 ], + [ 7.21612, 46.2320565 ], + [ 7.2159068, 46.2321032 ], + [ 7.2157753, 46.2321626 ], + [ 7.2155449, 46.2322371 ], + [ 7.2153882, 46.2323075 ], + [ 7.2151893, 46.2324051 ], + [ 7.2150813, 46.232482 ], + [ 7.2148743, 46.2325739 ], + [ 7.2146916, 46.2326832 ], + [ 7.2145835, 46.2327656 ], + [ 7.2144737, 46.2328706 ], + [ 7.214354, 46.2330205 ], + [ 7.2142522, 46.2331369 ], + [ 7.214182, 46.2332765 ], + [ 7.2140379, 46.2334315 ], + [ 7.2138939, 46.2335809 ], + [ 7.2137607, 46.2336631 ], + [ 7.2135473, 46.2337322 ], + [ 7.2133097, 46.2337897 ], + [ 7.2130082, 46.2338235 ], + [ 7.2131873, 46.2340073 ], + [ 7.2132565, 46.2341043 ], + [ 7.2132503, 46.2342564 ], + [ 7.2132043, 46.2343907 ], + [ 7.2129558, 46.2345269 ], + [ 7.2127497, 46.2346132 ], + [ 7.2126875, 46.2347585 ], + [ 7.2126308, 46.234949 ], + [ 7.2125354, 46.2351051 ], + [ 7.2123498999999995, 46.2350903 ], + [ 7.2121717, 46.235087 ], + [ 7.2120169, 46.2350895 ], + [ 7.2118467, 46.2350976 ], + [ 7.2116992, 46.235123 ], + [ 7.2114885, 46.2351302 ], + [ 7.2113417, 46.2351556 ], + [ 7.2111536, 46.2351972 ], + [ 7.2110321, 46.2351949 ], + [ 7.2109394, 46.2352664 ], + [ 7.2108719, 46.2353271 ], + [ 7.2107557, 46.2354037 ], + [ 7.2106315, 46.2354747 ], + [ 7.2104839, 46.2355058 ], + [ 7.2103137, 46.2355138 ], + [ 7.2102453, 46.2356026 ], + [ 7.2101499, 46.2357417 ], + [ 7.2100346, 46.2357845 ], + [ 7.2098897, 46.2357649 ], + [ 7.2097421, 46.235807199999996 ], + [ 7.2096574, 46.2358901 ], + [ 7.2095322, 46.2359948 ], + [ 7.2094431, 46.2361847 ], + [ 7.2093404, 46.236318 ], + [ 7.2091811, 46.2364503 ], + [ 7.208911, 46.2365128 ], + [ 7.2086653, 46.2365644 ], + [ 7.2086221, 46.2366313 ], + [ 7.2085941, 46.2367378 ], + [ 7.2085464, 46.2369002 ], + [ 7.2084302, 46.2369713 ], + [ 7.2083402, 46.2369922 ], + [ 7.2081691, 46.2370228 ], + [ 7.2080053, 46.2370478 ], + [ 7.2078585, 46.2370845 ], + [ 7.2076947, 46.2371209 ], + [ 7.2075056, 46.2371849 ], + [ 7.2074382, 46.23724 ], + [ 7.2073778, 46.2373403 ], + [ 7.2073327, 46.2374464 ], + [ 7.2072625, 46.237586 ], + [ 7.2072013, 46.2376919 ], + [ 7.207077, 46.2377516 ], + [ 7.2070113, 46.2377841 ], + [ 7.20695, 46.2379013 ], + [ 7.2068087, 46.2379774 ], + [ 7.2066152, 46.2379456 ], + [ 7.2064288, 46.2379365 ], + [ 7.2062578, 46.2379614 ], + [ 7.2061353, 46.2379872 ], + [ 7.2058986, 46.2380109 ], + [ 7.2057356, 46.2380417 ], + [ 7.2055222, 46.2381052 ], + [ 7.2053251, 46.2381634 ], + [ 7.2051459, 46.2381825 ], + [ 7.2049758, 46.2381737 ], + [ 7.2047481, 46.2381862 ], + [ 7.2045041, 46.2382098 ], + [ 7.2042602, 46.238222 ], + [ 7.2039532, 46.2381936 ], + [ 7.2036958, 46.2381323 ], + [ 7.2030404, 46.2380973 ], + [ 7.2030277, 46.2384183 ], + [ 7.2025154, 46.2384537 ], + [ 7.2024137, 46.2385532 ], + [ 7.2022985, 46.2386017 ], + [ 7.2022246, 46.2386284 ], + [ 7.2021013, 46.2386599 ], + [ 7.2020023, 46.2387031 ], + [ 7.2018519, 46.238813 ], + [ 7.2016772, 46.238928 ], + [ 7.2014853, 46.2390653 ], + [ 7.2012846, 46.2392135 ], + [ 7.2011198, 46.2392724 ], + [ 7.2009974, 46.2392926 ], + [ 7.2008596, 46.23929 ], + [ 7.2006733, 46.2392808 ], + [ 7.2004879, 46.2392547 ], + [ 7.2002943, 46.2392341 ], + [ 7.200099, 46.2392416 ], + [ 7.1998874, 46.2392658 ], + [ 7.1996588, 46.2392953 ], + [ 7.1994228, 46.2393302 ], + [ 7.1990448, 46.2394357 ], + [ 7.1987818, 46.2395264 ], + [ 7.1985918, 46.2396186 ], + [ 7.1983758, 46.2397385 ], + [ 7.1981615, 46.2398246 ], + [ 7.1979805, 46.2398945 ], + [ 7.1978599, 46.2398582 ], + [ 7.1976429, 46.2398203 ], + [ 7.1974179, 46.2397596 ], + [ 7.1970408, 46.2396678 ], + [ 7.1968139, 46.2396635 ], + [ 7.1965979, 46.2395805 ], + [ 7.1963018, 46.2394903 ], + [ 7.1961487, 46.2394648 ], + [ 7.1959939, 46.2394843 ], + [ 7.1958769, 46.2395667 ], + [ 7.195776, 46.2396437 ], + [ 7.1956742, 46.2397657 ], + [ 7.1955957999999995, 46.2398938 ], + [ 7.1954364, 46.240026 ], + [ 7.1952788, 46.2401244 ], + [ 7.1950411, 46.2401819 ], + [ 7.1947972, 46.2401885 ], + [ 7.194555, 46.2401727 ], + [ 7.1942148, 46.2401548 ], + [ 7.1939249, 46.2401098 ], + [ 7.1935865, 46.2400357 ], + [ 7.1932894, 46.2399793 ], + [ 7.1929933, 46.2398778 ], + [ 7.1927468, 46.2397434 ], + [ 7.1925002, 46.2396203 ], + [ 7.1922068, 46.2394738 ], + [ 7.1919188, 46.2393613 ], + [ 7.1917533, 46.2392397 ], + [ 7.191522, 46.2391451 ], + [ 7.191306, 46.2390733 ], + [ 7.1910495, 46.2389952 ], + [ 7.1907767, 46.2389336 ], + [ 7.1905427, 46.2388952 ], + [ 7.1902781, 46.2388282 ], + [ 7.1899649, 46.238732 ], + [ 7.189685, 46.2386421 ], + [ 7.1894051, 46.2385465 ], + [ 7.1890442, 46.2384494 ], + [ 7.1887607, 46.2384328 ], + [ 7.1885257, 46.2384339 ], + [ 7.1881936, 46.2384219 ], + [ 7.1879172, 46.2384391 ], + [ 7.1875995, 46.2384611 ], + [ 7.1872384, 46.2385725 ], + [ 7.1869224, 46.2385777 ], + [ 7.1867002, 46.2384552 ], + [ 7.1864707, 46.2383154 ], + [ 7.1862951, 46.2384473 ], + [ 7.1860736, 46.2385051 ], + [ 7.1859205, 46.2386768 ], + [ 7.1857629, 46.2387641 ], + [ 7.1856018, 46.2387383 ], + [ 7.1854029, 46.2386443 ], + [ 7.1851564, 46.2385212 ], + [ 7.184935, 46.2383873 ], + [ 7.184711, 46.2382929 ], + [ 7.1845507, 46.2382616 ], + [ 7.1842718, 46.2381322 ], + [ 7.184, 46.2380425 ], + [ 7.1837498, 46.2380039 ], + [ 7.1833907, 46.2378673 ], + [ 7.1829579, 46.237735 ], + [ 7.1824431, 46.2376293 ], + [ 7.1819912, 46.2375754 ], + [ 7.1816709, 46.2374734 ], + [ 7.181445, 46.2374297 ], + [ 7.1812353, 46.2374031 ], + [ 7.1810579, 46.2373884 ], + [ 7.1808464, 46.2374069 ], + [ 7.1806268, 46.2374083 ], + [ 7.1804413, 46.2373935 ], + [ 7.1802092, 46.2373157 ], + [ 7.1799985, 46.2373172 ], + [ 7.1798347, 46.2373479 ], + [ 7.1795521, 46.2373143 ], + [ 7.1793379, 46.2372031 ], + [ 7.1789555, 46.2370266 ], + [ 7.1784113, 46.2366498 ], + [ 7.1777545, 46.2362427 ], + [ 7.1766811, 46.2357203 ], + [ 7.1765136, 46.2358411 ], + [ 7.1763965, 46.2359346 ], + [ 7.1762551, 46.2360276 ], + [ 7.1761299, 46.2361042 ], + [ 7.1759885, 46.2361916 ], + [ 7.1758237, 46.2362617 ], + [ 7.1756671, 46.236315 ], + [ 7.1754618, 46.2363899 ], + [ 7.1753141, 46.2364322 ], + [ 7.1751493, 46.2364966 ], + [ 7.1750088, 46.2365671 ], + [ 7.1748799, 46.236745 ], + [ 7.1748043, 46.2367999 ], + [ 7.1747502, 46.236934 ], + [ 7.1745736, 46.2370998 ], + [ 7.1743647, 46.2372423 ], + [ 7.1741747, 46.2373232 ], + [ 7.1739955, 46.2373535 ], + [ 7.1738649, 46.2373679 ], + [ 7.173568, 46.2372832 ], + [ 7.1733682, 46.2372175 ], + [ 7.1731361, 46.2371339 ], + [ 7.1728868, 46.2370898 ], + [ 7.1726591, 46.2370966 ], + [ 7.1723584, 46.2371077 ], + [ 7.1721063, 46.2371366 ], + [ 7.1719362, 46.2371277 ], + [ 7.1717679, 46.237085 ], + [ 7.1714871, 46.2370118 ], + [ 7.1710983, 46.2369874 ], + [ 7.1707328, 46.2370086 ], + [ 7.1704402, 46.2370311 ], + [ 7.1702774, 46.237028 ], + [ 7.1700434, 46.2370008 ], + [ 7.1697869, 46.236934 ], + [ 7.1696429, 46.2368804 ], + [ 7.1693901, 46.2367233 ], + [ 7.1691446, 46.2365665 ], + [ 7.1688828, 46.2364204 ], + [ 7.1686452, 46.2362974 ], + [ 7.1683888, 46.2362079 ], + [ 7.1681719, 46.2361643 ], + [ 7.167946, 46.2361374 ], + [ 7.1677759, 46.2361173 ], + [ 7.1675743, 46.2361076 ], + [ 7.1674213, 46.2360821 ], + [ 7.1672206, 46.2360219 ], + [ 7.1670586, 46.2360244 ], + [ 7.1667436, 46.2359788 ], + [ 7.1664466000000004, 46.2359166 ], + [ 7.1661344, 46.2358148 ], + [ 7.1657384, 46.2357677 ], + [ 7.1656808, 46.2358004 ], + [ 7.1655655, 46.2358432 ], + [ 7.165443, 46.2358689 ], + [ 7.1652874, 46.2358886 ], + [ 7.1650929, 46.2359017 ], + [ 7.1648724, 46.2359255 ], + [ 7.1646608, 46.2359552 ], + [ 7.1644564, 46.2359907 ], + [ 7.1642510999999995, 46.2360488 ], + [ 7.1640296, 46.2361121 ], + [ 7.1638018, 46.2361358 ], + [ 7.1635733, 46.2361596 ], + [ 7.1633473, 46.2361495 ], + [ 7.1631285, 46.2361453 ], + [ 7.1630143, 46.2361486 ], + [ 7.1628351, 46.236179 ], + [ 7.1626794, 46.2362042 ], + [ 7.1624849, 46.2362173 ], + [ 7.1622976, 46.2362306 ], + [ 7.1620537, 46.2362428 ], + [ 7.1618341, 46.2362498 ], + [ 7.1614524, 46.2362649 ], + [ 7.1611355, 46.2362925 ], + [ 7.1607745, 46.2363813 ], + [ 7.1604378, 46.2364819 ], + [ 7.1598867, 46.2366739 ], + [ 7.1594075, 46.2368901 ], + [ 7.1590446, 46.2370353 ], + [ 7.1547843, 46.2341399 ], + [ 7.1535085, 46.2343968 ], + [ 7.1534024, 46.234406 ], + [ 7.1532871, 46.2344432 ], + [ 7.153169, 46.2345592 ], + [ 7.1530761, 46.2346589 ], + [ 7.1529176, 46.2347628 ], + [ 7.1527482, 46.2349286 ], + [ 7.1526067, 46.2350273 ], + [ 7.1524553, 46.2351596 ], + [ 7.1522887, 46.2352746 ], + [ 7.1522039, 46.2353633 ], + [ 7.1521012, 46.2354852 ], + [ 7.1519984, 46.2356129 ], + [ 7.151875, 46.2356724 ], + [ 7.1517093, 46.2357537 ], + [ 7.1514778, 46.2358563 ], + [ 7.1512868, 46.2359652 ], + [ 7.1510383, 46.2360901 ], + [ 7.150813, 46.2362434 ], + [ 7.1506373, 46.2363753 ], + [ 7.1505002, 46.2365586 ], + [ 7.1501426, 46.2367657 ], + [ 7.1499211, 46.2368347 ], + [ 7.1497033, 46.2368079 ], + [ 7.1494936, 46.2367757 ], + [ 7.1493416, 46.2367276 ], + [ 7.1492382, 46.2366692 ], + [ 7.149115, 46.2365259 ], + [ 7.1491269, 46.236419 ], + [ 7.1492898, 46.2363997 ], + [ 7.1491757, 46.2362227 ], + [ 7.1494044, 46.2361933 ], + [ 7.1495025, 46.2361727 ], + [ 7.1495449, 46.2361172 ], + [ 7.1494766, 46.2360088 ], + [ 7.1494723, 46.2359185 ], + [ 7.1495236, 46.2358519 ], + [ 7.149476, 46.2358284 ], + [ 7.1493636, 46.2357868 ], + [ 7.1492772, 46.2357287 ], + [ 7.1492314, 46.2356602 ], + [ 7.1492261, 46.2355925 ], + [ 7.1492145, 46.2354796 ], + [ 7.149184, 46.2354226 ], + [ 7.1491267, 46.2352354 ], + [ 7.1490864, 46.2350431 ], + [ 7.1490929, 46.2348854 ], + [ 7.1491839, 46.2348477 ], + [ 7.14921, 46.2348031 ], + [ 7.149122, 46.2347563 ], + [ 7.1488636, 46.2347456 ], + [ 7.1484866, 46.2346368 ], + [ 7.1478218, 46.2344322 ], + [ 7.1471316, 46.2342553 ], + [ 7.1467565, 46.234107 ], + [ 7.1464605, 46.2340054 ], + [ 7.1461511, 46.2338415 ], + [ 7.1459056, 46.2337014 ], + [ 7.1454504, 46.2335347 ], + [ 7.145112, 46.233483 ], + [ 7.1448484, 46.233382 ], + [ 7.1445543, 46.2332353 ], + [ 7.1442459, 46.2330377 ], + [ 7.1440257, 46.2328643 ], + [ 7.1438494, 46.2328157 ], + [ 7.1436568, 46.2327669 ], + [ 7.1435885, 46.2326585 ], + [ 7.1435546, 46.2324944 ], + [ 7.14349, 46.2323015 ], + [ 7.1433832, 46.2321247 ], + [ 7.1432175, 46.232206 ], + [ 7.1430348, 46.2321291 ], + [ 7.141452, 46.2319516 ], + [ 7.1411146, 46.2318773 ], + [ 7.1409887, 46.2317903 ], + [ 7.140827, 46.2315729 ], + [ 7.1406958, 46.2314125 ], + [ 7.1405027, 46.2311833 ], + [ 7.1403005, 46.2309708 ], + [ 7.1401369, 46.2308098 ], + [ 7.1400839, 46.2307242 ], + [ 7.140113, 46.2305952 ], + [ 7.1401042, 46.2304316 ], + [ 7.1400549, 46.2302502 ], + [ 7.1399653, 46.2300569 ], + [ 7.1398764, 46.2298578 ], + [ 7.1397949, 46.2296646 ], + [ 7.1396351, 46.2294079 ], + [ 7.1394716, 46.2292356 ], + [ 7.1391388, 46.2290544 ], + [ 7.1387475, 46.228917 ], + [ 7.1382824, 46.2287726 ], + [ 7.1378478, 46.2287021 ], + [ 7.1374843, 46.2286668 ], + [ 7.1368974, 46.2287398 ], + [ 7.1362376, 46.2288113 ], + [ 7.1360375, 46.2289427 ], + [ 7.1348069, 46.229685 ], + [ 7.1344736, 46.2298982 ], + [ 7.1344041, 46.2300096 ], + [ 7.1344065, 46.2301505 ], + [ 7.1343929, 46.2302798 ], + [ 7.1343548, 46.2304256 ], + [ 7.1342158, 46.2306483 ], + [ 7.1340553, 46.2308086 ], + [ 7.133876, 46.2310136 ], + [ 7.1336693, 46.2313195 ], + [ 7.1334356, 46.2316756 ], + [ 7.1332552, 46.2319144 ], + [ 7.1330405, 46.2322088 ], + [ 7.1328759, 46.232662 ], + [ 7.1328027, 46.2328579 ], + [ 7.1327652, 46.2331841 ], + [ 7.132755, 46.233415 ], + [ 7.1327465, 46.2336346 ], + [ 7.1327039, 46.2338648 ], + [ 7.1326268, 46.2341733 ], + [ 7.1324726, 46.2343675 ], + [ 7.1322978, 46.2344768 ], + [ 7.1320591, 46.2345622 ], + [ 7.1318366, 46.2346481 ], + [ 7.1316995, 46.2348257 ], + [ 7.1315381, 46.2349972 ], + [ 7.1315269, 46.2352675 ], + [ 7.1314336, 46.2355644 ], + [ 7.1314081, 46.2357894 ], + [ 7.1312961, 46.2359618 ], + [ 7.13106, 46.2361657 ], + [ 7.1308246, 46.2363752 ], + [ 7.1304694, 46.236869 ], + [ 7.1304524, 46.2368689 ], + [ 7.1288704, 46.2369546 ], + [ 7.128287, 46.236953 ], + [ 7.1278974999999996, 46.2370598 ], + [ 7.1270153, 46.2371743 ], + [ 7.1265356, 46.237191 ], + [ 7.1261727, 46.237172 ], + [ 7.1253967, 46.236855 ], + [ 7.1249198, 46.2363769 ], + [ 7.1245966, 46.2362231 ], + [ 7.1243386, 46.2359975 ], + [ 7.1240451, 46.2352051 ], + [ 7.1238935, 46.234512 ], + [ 7.1237273, 46.2341067 ], + [ 7.1236005, 46.2336116 ], + [ 7.1233833, 46.2330713 ], + [ 7.1234113, 46.2327116 ], + [ 7.1233864, 46.2325316 ], + [ 7.1229998, 46.2321437 ], + [ 7.122319, 46.2310623 ], + [ 7.1220003, 46.2301439 ], + [ 7.1219109, 46.2299188 ], + [ 7.1216528, 46.2297111 ], + [ 7.1213556, 46.2295574 ], + [ 7.1212274, 46.2293052 ], + [ 7.1216615, 46.2282269 ], + [ 7.1218213, 46.2274897 ], + [ 7.1218648, 46.2266982 ], + [ 7.1218278, 46.2263653 ], + [ 7.1214442, 46.2254646 ], + [ 7.1215517, 46.2248083 ], + [ 7.1220112, 46.2238021 ], + [ 7.1225576, 46.2234438 ], + [ 7.1219749, 46.2233522 ], + [ 7.1215221, 46.223216 ], + [ 7.1211337, 46.2231429 ], + [ 7.11984, 46.2227345 ], + [ 7.1194933, 46.2221938 ], + [ 7.1192349, 46.2220402 ], + [ 7.1188082, 46.221877 ], + [ 7.1189775, 46.2217426 ], + [ 7.1192375, 46.2216084 ], + [ 7.119238, 46.2215184 ], + [ 7.1185928, 46.2210488 ], + [ 7.1183608, 46.2208233 ], + [ 7.1179732, 46.2206153 ], + [ 7.1175606, 46.2202543 ], + [ 7.1173036, 46.2198937 ], + [ 7.1157149, 46.2189897 ], + [ 7.1153011, 46.2188356 ], + [ 7.1150431, 46.218628 ], + [ 7.1148501, 46.2184025 ], + [ 7.1151768, 46.2179357 ], + [ 7.115632, 46.2176671 ], + [ 7.1155942, 46.2174871 ], + [ 7.1154656, 46.2173248 ], + [ 7.1151168, 46.2171259 ], + [ 7.1146642, 46.2169627 ], + [ 7.1142112, 46.2168715 ], + [ 7.1138233, 46.2167354 ], + [ 7.1127513, 46.2161296 ], + [ 7.1122752, 46.2155615 ], + [ 7.1120188, 46.215093 ], + [ 7.1110764, 46.2145056 ], + [ 7.1108846, 46.2140733 ], + [ 7.110601, 46.2138296 ], + [ 7.1093348, 46.2132142 ], + [ 7.1090508, 46.2130335 ], + [ 7.1087285, 46.2127627 ], + [ 7.1081498, 46.2120413 ], + [ 7.106948, 46.2114981 ], + [ 7.1064327, 46.2110018 ], + [ 7.1061489, 46.2108031 ], + [ 7.1057225, 46.210595 ], + [ 7.1052438, 46.2104856 ], + [ 7.104622, 46.2104568 ], + [ 7.1035871, 46.2101839 ], + [ 7.1030692, 46.2101194 ], + [ 7.1018799, 46.2096661 ], + [ 7.1015571, 46.2094852 ], + [ 7.1011326, 46.2089892 ], + [ 7.1001646, 46.2083746 ], + [ 7.0994938, 46.2079048 ], + [ 7.0986782999999996, 46.2077675 ], + [ 7.0980301, 46.2078285 ], + [ 7.0969942, 46.2077354 ], + [ 7.0964124, 46.2075358 ], + [ 7.0959603, 46.2073095 ], + [ 7.0955474, 46.2070384 ], + [ 7.0952901, 46.2067408 ], + [ 7.0948413, 46.2060018 ], + [ 7.0945453, 46.205686 ], + [ 7.0938363, 46.2051172 ], + [ 7.0927783, 46.2044213 ], + [ 7.0915786, 46.203608 ], + [ 7.0906494, 46.2030384 ], + [ 7.0901981, 46.2027042 ], + [ 7.0897719, 46.202496 ], + [ 7.0895129, 46.2024772 ], + [ 7.08932, 46.2022517 ], + [ 7.0884822, 46.2015745 ], + [ 7.0866696, 46.201407 ], + [ 7.0861521, 46.2012974 ], + [ 7.085377, 46.2009532 ], + [ 7.0849887, 46.200889 ], + [ 7.0842781, 46.2005899 ], + [ 7.0835666, 46.2004348 ], + [ 7.0828559, 46.2001627 ], + [ 7.081563, 46.1997538 ], + [ 7.0804366, 46.1996603 ], + [ 7.0795941, 46.1997206 ], + [ 7.0792315, 46.1997014 ], + [ 7.0783644, 46.1995638 ], + [ 7.0782354, 46.1994914 ], + [ 7.0779781, 46.1992207 ], + [ 7.07772, 46.1990669 ], + [ 7.0773323, 46.1989308 ], + [ 7.0768399, 46.1989472 ], + [ 7.0764892, 46.199081 ], + [ 7.076488, 46.1992609 ], + [ 7.0756062, 46.199393 ], + [ 7.0753462, 46.1995271 ], + [ 7.0746322, 46.1997497 ], + [ 7.0739834, 46.1999095 ], + [ 7.0739569, 46.1999994 ], + [ 7.0737222, 46.2002235 ], + [ 7.072657, 46.2006429 ], + [ 7.07132, 46.2010253 ], + [ 7.0712012, 46.2009973 ], + [ 7.0710861, 46.2011375 ], + [ 7.0709632, 46.2012269 ], + [ 7.0708413, 46.201294 ], + [ 7.07067, 46.2013664 ], + [ 7.0704663, 46.2014217 ], + [ 7.0702786, 46.2015222 ], + [ 7.0700593, 46.2016224 ], + [ 7.0699197, 46.2017963 ], + [ 7.0698288, 46.2019422 ], + [ 7.0698024, 46.2021277 ], + [ 7.0697687, 46.2023301 ], + [ 7.0696773, 46.2025547 ], + [ 7.0696187, 46.2027119 ], + [ 7.0695126, 46.2028353 ], + [ 7.0693087, 46.2029356 ], + [ 7.0692263, 46.203031 ], + [ 7.0692661, 46.2031324 ], + [ 7.0693464, 46.2032228 ], + [ 7.0695409, 46.2033192 ], + [ 7.0697908, 46.2034949 ], + [ 7.0700889, 46.2037099 ], + [ 7.0703703, 46.204015 ], + [ 7.0705712, 46.204241 ], + [ 7.0706674, 46.2043821 ], + [ 7.0706667, 46.2044777 ], + [ 7.0706166, 46.2045956 ], + [ 7.0705669, 46.2047529 ], + [ 7.0705083, 46.2049158 ], + [ 7.0704739, 46.2050901 ], + [ 7.0704892, 46.2052252 ], + [ 7.0705205, 46.2053828 ], + [ 7.0706087, 46.2055239 ], + [ 7.0707372, 46.2056708 ], + [ 7.070703, 46.2058226 ], + [ 7.0706441, 46.2060248 ], + [ 7.0705941, 46.2062383 ], + [ 7.0706566, 46.2064581 ], + [ 7.0707604, 46.2066724 ], + [ 7.0708972, 46.2068023 ], + [ 7.0710017, 46.206921 ], + [ 7.071122, 46.2070903 ], + [ 7.0712423, 46.2072653 ], + [ 7.0714192, 46.2074517 ], + [ 7.0715314, 46.2076267 ], + [ 7.0715698, 46.2078181 ], + [ 7.071585, 46.2079588 ], + [ 7.0715745, 46.2082064 ], + [ 7.0715152, 46.2084649 ], + [ 7.0714415, 46.208594 ], + [ 7.071351, 46.2086723 ], + [ 7.0712047, 46.2087616 ], + [ 7.0711298, 46.2089301 ], + [ 7.071055, 46.2090985 ], + [ 7.071021, 46.2093291 ], + [ 7.0709867, 46.2094977 ], + [ 7.0708556, 46.2096041 ], + [ 7.0707332, 46.2097499 ], + [ 7.0706737, 46.2100421 ], + [ 7.0706547, 46.2103402 ], + [ 7.0708409, 46.210341 ], + [ 7.0710281, 46.2103306 ], + [ 7.0712141, 46.2103708 ], + [ 7.0714574, 46.2104338 ], + [ 7.0716999, 46.2105024 ], + [ 7.0719917, 46.2105768 ], + [ 7.0722503, 46.2106679 ], + [ 7.0725337, 46.210793 ], + [ 7.072719, 46.2109401 ], + [ 7.0729851, 46.21111 ], + [ 7.0732185, 46.2113305 ], + [ 7.0733223, 46.2115504 ], + [ 7.0734752, 46.2116973 ], + [ 7.0736281, 46.211833 ], + [ 7.0737647, 46.2119968 ], + [ 7.0739255, 46.2121776 ], + [ 7.074143, 46.2123585 ], + [ 7.0743122, 46.212483 ], + [ 7.074555, 46.2126304 ], + [ 7.0747402, 46.2127943 ], + [ 7.075022, 46.2130319 ], + [ 7.0752393, 46.213241 ], + [ 7.075448, 46.2135176 ], + [ 7.0755755, 46.2137095 ], + [ 7.0757597, 46.214031 ], + [ 7.0758457, 46.214369 ], + [ 7.0759249, 46.214645 ], + [ 7.0759223, 46.2149037 ], + [ 7.0760192, 46.2149549 ], + [ 7.0762687, 46.2151922 ], + [ 7.0763728, 46.2153672 ], + [ 7.0764198, 46.2156036 ], + [ 7.076482, 46.2158739 ], + [ 7.0765192, 46.2162454 ], + [ 7.0766146, 46.2165159 ], + [ 7.0767832, 46.216736 ], + [ 7.0770175, 46.2168327 ], + [ 7.0772934, 46.2168732 ], + [ 7.0771458, 46.2170245 ], + [ 7.0769818, 46.2171983 ], + [ 7.0768744, 46.2174004 ], + [ 7.0767913, 46.2175912 ], + [ 7.0767331, 46.2178161 ], + [ 7.0766742, 46.2180296 ], + [ 7.0767297, 46.2182098 ], + [ 7.0768506, 46.2182948 ], + [ 7.0770201, 46.2183912 ], + [ 7.0770761, 46.2184927 ], + [ 7.0770824, 46.218639 ], + [ 7.0770485, 46.2188639 ], + [ 7.0770219, 46.2190889 ], + [ 7.076947, 46.2192742 ], + [ 7.0768568, 46.2194426 ], + [ 7.0767983, 46.2195942 ], + [ 7.0768215, 46.2197462 ], + [ 7.0767716, 46.2198304 ], + [ 7.0767221, 46.2199596 ], + [ 7.0765661, 46.2201558 ], + [ 7.0764748, 46.2203636 ], + [ 7.0763754, 46.2205825 ], + [ 7.0763011, 46.2207904 ], + [ 7.0763065, 46.2210718 ], + [ 7.0763367, 46.2212801 ], + [ 7.0763195, 46.2214319 ], + [ 7.076261, 46.2215723 ], + [ 7.0761952, 46.2217239 ], + [ 7.0760957, 46.2219542 ], + [ 7.0760206, 46.2221509 ], + [ 7.0759952, 46.2223195 ], + [ 7.0760417, 46.222511 ], + [ 7.0761054, 46.22268 ], + [ 7.0762018, 46.2227986 ], + [ 7.0761429, 46.2230065 ], + [ 7.0761418, 46.2231808 ], + [ 7.0761481, 46.2233328 ], + [ 7.0762439, 46.2235358 ], + [ 7.0763881, 46.2237783 ], + [ 7.0764841, 46.2239532 ], + [ 7.0765482, 46.2240716 ], + [ 7.076571, 46.2241673 ], + [ 7.0765136, 46.2242684 ], + [ 7.0764229, 46.2243918 ], + [ 7.0763406, 46.2245827 ], + [ 7.0762898, 46.2247906 ], + [ 7.0763049, 46.2249595 ], + [ 7.0764175, 46.2250837 ], + [ 7.0766192, 46.2252029 ], + [ 7.07674, 46.2253159 ], + [ 7.0768847, 46.225474 ], + [ 7.0770537000000004, 46.2256436 ], + [ 7.0771827, 46.2257454 ], + [ 7.0773445, 46.2257742 ], + [ 7.0775877, 46.225871 ], + [ 7.0778948, 46.2259736 ], + [ 7.0781056, 46.2260813 ], + [ 7.0781366, 46.2261602 ], + [ 7.0781354, 46.2263516 ], + [ 7.0782563, 46.2264309 ], + [ 7.0784662, 46.2265499 ], + [ 7.0787092, 46.2266691 ], + [ 7.0787734, 46.2267649 ], + [ 7.0788768, 46.2269344 ], + [ 7.0789967, 46.2271711 ], + [ 7.079076, 46.2274359 ], + [ 7.0791632, 46.227605 ], + [ 7.0792679, 46.2276955 ], + [ 7.0793817, 46.2277635 ], + [ 7.0794944, 46.2278766 ], + [ 7.0796158, 46.2278827 ], + [ 7.0796963, 46.2279674 ], + [ 7.0797608, 46.2280071 ], + [ 7.0798498, 46.2280356 ], + [ 7.0799143, 46.2280809 ], + [ 7.0799867, 46.22816 ], + [ 7.0800588, 46.2282728 ], + [ 7.0801955, 46.228431 ], + [ 7.0802841, 46.2285102 ], + [ 7.080356, 46.2286623 ], + [ 7.0804200999999996, 46.2287694 ], + [ 7.0805251, 46.2288149 ], + [ 7.0806461, 46.2288943 ], + [ 7.0808395, 46.2290526 ], + [ 7.0810173, 46.2291266 ], + [ 7.0811638, 46.2291383 ], + [ 7.0813573, 46.2292856 ], + [ 7.081438, 46.2293252 ], + [ 7.0817057, 46.229394 ], + [ 7.0820938, 46.2295251 ], + [ 7.082231, 46.2295988 ], + [ 7.0824092, 46.2297346 ], + [ 7.0825463, 46.2298252 ], + [ 7.0827398, 46.2299611 ], + [ 7.0828689, 46.230046 ], + [ 7.0830058, 46.230176 ], + [ 7.0831669, 46.2303117 ], + [ 7.0832876, 46.2304417 ], + [ 7.0834242, 46.2306054 ], + [ 7.0835448, 46.2307578 ], + [ 7.0836897, 46.2308991 ], + [ 7.083875, 46.2310631 ], + [ 7.0841005, 46.2312609 ], + [ 7.0844632, 46.2315438 ], + [ 7.0845356, 46.2316342 ], + [ 7.0845433, 46.231696 ], + [ 7.0845266, 46.2317748 ], + [ 7.0844693, 46.2318533 ], + [ 7.0843541, 46.2320102 ], + [ 7.0840265, 46.2322958 ], + [ 7.0837484, 46.2325872 ], + [ 7.0836249, 46.2327611 ], + [ 7.0836152, 46.2328848 ], + [ 7.0836387, 46.2330087 ], + [ 7.08367, 46.2331664 ], + [ 7.0837906, 46.2333189 ], + [ 7.0839112, 46.2334544 ], + [ 7.0840887, 46.2335789 ], + [ 7.0844354, 46.2338223 ], + [ 7.0846046, 46.2339694 ], + [ 7.0847992, 46.2340827 ], + [ 7.0849521, 46.2342353 ], + [ 7.0850729, 46.2343483 ], + [ 7.0852338, 46.2345178 ], + [ 7.0853869, 46.2346591 ], + [ 7.0855559, 46.2348342 ], + [ 7.0856514, 46.2349753 ], + [ 7.085764, 46.2350939 ], + [ 7.085934, 46.2352522 ], + [ 7.0860709, 46.2353822 ], + [ 7.0862889, 46.2355013 ], + [ 7.0864504, 46.2355808 ], + [ 7.0866938, 46.2356606 ], + [ 7.0869201, 46.2357403 ], + [ 7.0872283, 46.2358204 ], + [ 7.0875193, 46.2359285 ], + [ 7.0876406, 46.2359684 ], + [ 7.0877615, 46.236059 ], + [ 7.087972, 46.2362173 ], + [ 7.0882623, 46.2364324 ], + [ 7.0885123, 46.2366023 ], + [ 7.0887705, 46.2367778 ], + [ 7.0890055, 46.2368969 ], + [ 7.089288, 46.237067 ], + [ 7.0894819, 46.2371522 ], + [ 7.089724, 46.2373051 ], + [ 7.0899426, 46.237458 ], + [ 7.0901765, 46.2376277 ], + [ 7.0907025, 46.2378606 ], + [ 7.0908804, 46.2379177 ], + [ 7.0910423, 46.2379465 ], + [ 7.0912537, 46.2379586 ], + [ 7.0913993, 46.2379931 ], + [ 7.0914151, 46.2380549 ], + [ 7.0913984, 46.2381281 ], + [ 7.0913565, 46.2382291 ], + [ 7.0913393, 46.2383809 ], + [ 7.0913059, 46.2385327 ], + [ 7.0912634, 46.2387237 ], + [ 7.0912867, 46.2388759 ], + [ 7.0913824, 46.2389944 ], + [ 7.0914948, 46.2391524 ], + [ 7.0915749, 46.2393047 ], + [ 7.0916957, 46.2394177 ], + [ 7.091834, 46.239452 ], + [ 7.092004, 46.2394753 ], + [ 7.0921083, 46.2396389 ], + [ 7.092197, 46.239718 ], + [ 7.0922855, 46.2398027 ], + [ 7.0924225, 46.2399214 ], + [ 7.0925837, 46.2400573 ], + [ 7.0926884, 46.2401702 ], + [ 7.0927768, 46.240283 ], + [ 7.0929134, 46.2404524 ], + [ 7.0931143, 46.2407234 ], + [ 7.0933476, 46.2409888 ], + [ 7.0935489, 46.2411978 ], + [ 7.0937989, 46.2413789 ], + [ 7.0939846, 46.241481 ], + [ 7.0941867, 46.2415662 ], + [ 7.0944059, 46.2416234 ], + [ 7.0945351, 46.2416971 ], + [ 7.0945671, 46.2417647 ], + [ 7.0946153, 46.2418324 ], + [ 7.0946459, 46.2419957 ], + [ 7.0947175, 46.2421929 ], + [ 7.0947901, 46.2422551 ], + [ 7.0948708, 46.2422949 ], + [ 7.0949271, 46.2423626 ], + [ 7.0950479, 46.2424812 ], + [ 7.0951711, 46.2423636 ], + [ 7.0953006, 46.2423866 ], + [ 7.0954124, 46.2426459 ], + [ 7.09556, 46.242489 ], + [ 7.0958297, 46.2422539 ], + [ 7.0958863, 46.2422766 ], + [ 7.0959425, 46.2423556 ], + [ 7.0961242, 46.2429696 ], + [ 7.0962281, 46.2432119 ], + [ 7.0963233, 46.2434038 ], + [ 7.0963956, 46.2435053 ], + [ 7.096516, 46.2436858 ], + [ 7.0965961, 46.2438381 ], + [ 7.0966587, 46.2440577 ], + [ 7.096706, 46.2442661 ], + [ 7.096754, 46.2443676 ], + [ 7.0968438, 46.2442667 ], + [ 7.0969566, 46.2443684 ], + [ 7.0970633, 46.2442732 ], + [ 7.0972083, 46.2444201 ], + [ 7.0972483, 46.2444933 ], + [ 7.0972722, 46.2445723 ], + [ 7.0973098, 46.2449045 ], + [ 7.0974979, 46.2447533 ], + [ 7.0975541, 46.2448379 ], + [ 7.0977244, 46.2448218 ], + [ 7.0977055, 46.2451255 ], + [ 7.0978925, 46.2451544 ], + [ 7.0978738, 46.24543 ], + [ 7.0980934, 46.2454253 ], + [ 7.098166, 46.2454706 ], + [ 7.0981066, 46.2457686 ], + [ 7.0983186, 46.245702 ], + [ 7.0983727, 46.2459834 ], + [ 7.0986738, 46.2459116 ], + [ 7.0985648, 46.2463724 ], + [ 7.0985313, 46.2464116 ], + [ 7.0984013, 46.2464731 ], + [ 7.098319, 46.2465458 ], + [ 7.0983511, 46.2465966 ], + [ 7.0984248, 46.2465969 ], + [ 7.0985386, 46.2465468 ], + [ 7.0986522, 46.2465135 ], + [ 7.0987587, 46.2464633 ], + [ 7.0989535, 46.2464135 ], + [ 7.0991247, 46.2463917 ], + [ 7.099311, 46.2463981 ], + [ 7.0991807, 46.2464988 ], + [ 7.0990174, 46.2465713 ], + [ 7.0988052, 46.246683 ], + [ 7.0987476, 46.2468177 ], + [ 7.098689, 46.2469862 ], + [ 7.0986477, 46.2471154 ], + [ 7.0989058, 46.2473078 ], + [ 7.0989211, 46.2474485 ], + [ 7.0988954, 46.2475497 ], + [ 7.0988053, 46.24769 ], + [ 7.0990071, 46.2478259 ], + [ 7.099104, 46.2478882 ], + [ 7.0992169, 46.2479731 ], + [ 7.0993378, 46.2480748 ], + [ 7.0994183, 46.2481652 ], + [ 7.0995473, 46.248267 ], + [ 7.0996358, 46.2483743 ], + [ 7.0996837, 46.2484869 ], + [ 7.0997233, 46.2486391 ], + [ 7.0997945, 46.2487913 ], + [ 7.0998505, 46.2489096 ], + [ 7.0999955, 46.2490509 ], + [ 7.100157, 46.2491415 ], + [ 7.1003359, 46.2491761 ], + [ 7.1005959, 46.2492053 ], + [ 7.1007657, 46.2492622 ], + [ 7.1008946, 46.249381 ], + [ 7.1011125, 46.2495339 ], + [ 7.1012824, 46.2495907 ], + [ 7.101306, 46.2496978 ], + [ 7.1013622, 46.2497767 ], + [ 7.1014915, 46.2498448 ], + [ 7.1017025, 46.2499357 ], + [ 7.1019129, 46.2499873 ], + [ 7.1021403, 46.2500332 ], + [ 7.1022117, 46.2501516 ], + [ 7.1023244, 46.2502759 ], + [ 7.102445, 46.2504339 ], + [ 7.1025822, 46.2505301 ], + [ 7.1027206, 46.2505644 ], + [ 7.1028662, 46.2506044 ], + [ 7.1029709, 46.2507005 ], + [ 7.103019, 46.2507963 ], + [ 7.1031154, 46.2509374 ], + [ 7.1032442, 46.251073 ], + [ 7.1034623, 46.2511864 ], + [ 7.1036815, 46.2512605 ], + [ 7.1039163, 46.2513064 ], + [ 7.104168, 46.251358 ], + [ 7.1044112, 46.2513479 ], + [ 7.1045662, 46.2513147 ], + [ 7.1046799, 46.2512759 ], + [ 7.1048435, 46.251164 ], + [ 7.105072, 46.2510355 ], + [ 7.1052925, 46.2508902 ], + [ 7.1054645, 46.2507333 ], + [ 7.1056123, 46.2505595 ], + [ 7.1058068, 46.2505491 ], + [ 7.1060987, 46.2506684 ], + [ 7.1063489, 46.2508326 ], + [ 7.106319, 46.2505568 ], + [ 7.1063199, 46.2504161 ], + [ 7.1069828, 46.2508127 ], + [ 7.1070165, 46.2506046 ], + [ 7.1070585, 46.2504979 ], + [ 7.1072526, 46.2505551 ], + [ 7.1074546, 46.2506627 ], + [ 7.1074783, 46.2507641 ], + [ 7.1075344, 46.25086 ], + [ 7.1076469, 46.251018 ], + [ 7.1077434, 46.2511421 ], + [ 7.10784, 46.2512607 ], + [ 7.107985, 46.2514075 ], + [ 7.1080817, 46.2514923 ], + [ 7.1082508, 46.2516675 ], + [ 7.1082829, 46.2517295 ], + [ 7.1082407, 46.2518699 ], + [ 7.1081835, 46.2519429 ], + [ 7.108118, 46.2520495 ], + [ 7.1080358, 46.2521055 ], + [ 7.1079539, 46.252257 ], + [ 7.1079277, 46.25242 ], + [ 7.1080158, 46.2526005 ], + [ 7.1082266, 46.2525844 ], + [ 7.1085358, 46.2525183 ], + [ 7.1086993, 46.2524232 ], + [ 7.1087576, 46.2522997 ], + [ 7.1089518, 46.2523455 ], + [ 7.109089, 46.252436 ], + [ 7.1092586, 46.2525492 ], + [ 7.1093711, 46.2527074 ], + [ 7.1093622, 46.2528367 ], + [ 7.1093283, 46.2529435 ], + [ 7.1093272, 46.2531234 ], + [ 7.1093262, 46.2532866 ], + [ 7.1093975, 46.2534332 ], + [ 7.1093158, 46.2535342 ], + [ 7.1092171, 46.2536351 ], + [ 7.1090624, 46.2537638 ], + [ 7.1088742, 46.2539206 ], + [ 7.1086942, 46.2540717 ], + [ 7.1086276999999995, 46.2542009 ], + [ 7.1084398, 46.2543126 ], + [ 7.1079853, 46.2542883 ], + [ 7.1079359, 46.2544119 ], + [ 7.1078698, 46.2544848 ], + [ 7.1076589, 46.254512 ], + [ 7.1073661, 46.2545558 ], + [ 7.1069437, 46.2545653 ], + [ 7.1066103, 46.254609 ], + [ 7.106308, 46.2547484 ], + [ 7.106113, 46.2548263 ], + [ 7.1057879, 46.2548419 ], + [ 7.1053899, 46.2548402 ], + [ 7.1050486, 46.2548614 ], + [ 7.1046898, 46.2549499 ], + [ 7.1043401, 46.2550047 ], + [ 7.1038852, 46.2550478 ], + [ 7.1034632, 46.255007 ], + [ 7.103455, 46.2550179 ], + [ 7.1030054, 46.2553705 ], + [ 7.1026801, 46.2554198 ], + [ 7.1022321999999996, 46.2554911 ], + [ 7.1017853, 46.2555511 ], + [ 7.1013465, 46.2555999 ], + [ 7.1009877, 46.2556828 ], + [ 7.1006382, 46.2557208 ], + [ 7.1003207, 46.2558038 ], + [ 7.0999545, 46.2559091 ], + [ 7.0996455, 46.2559529 ], + [ 7.0993366, 46.2559685 ], + [ 7.0993102, 46.2561653 ], + [ 7.0992527, 46.2562889 ], + [ 7.0992185, 46.2564463 ], + [ 7.0991525, 46.2566374 ], + [ 7.0990685, 46.2569689 ], + [ 7.09905, 46.2572107 ], + [ 7.0990248, 46.2573513 ], + [ 7.0990396, 46.257447 ], + [ 7.0990796, 46.2575316 ], + [ 7.0991439, 46.2576219 ], + [ 7.0992162, 46.2577291 ], + [ 7.0993046, 46.2578532 ], + [ 7.099409, 46.2579943 ], + [ 7.099497, 46.2581916 ], + [ 7.0996086, 46.2583609 ], + [ 7.0997548, 46.2584459 ], + [ 7.0998679, 46.2584969 ], + [ 7.1000459, 46.258554 ], + [ 7.1001829, 46.2586784 ], + [ 7.1002707, 46.2589038 ], + [ 7.1002928, 46.2591232 ], + [ 7.1002678, 46.2592357 ], + [ 7.1002898, 46.259472099999996 ], + [ 7.1003051, 46.2596184 ], + [ 7.1003691, 46.2597538 ], + [ 7.1005223, 46.2598838 ], + [ 7.100619, 46.2599799 ], + [ 7.1008286, 46.2601551 ], + [ 7.1011113, 46.2603251 ], + [ 7.101331, 46.2603092 ], + [ 7.1015832, 46.2603046 ], + [ 7.1019408, 46.2602779 ], + [ 7.102062, 46.2603347 ], + [ 7.1021586, 46.2604476 ], + [ 7.1022387, 46.2606055 ], + [ 7.1023029, 46.2607127 ], + [ 7.1022045, 46.2607517 ], + [ 7.1020018, 46.2607734 ], + [ 7.1020096, 46.2608128 ], + [ 7.102065, 46.260903 ], + [ 7.1021045, 46.2610607 ], + [ 7.1021522, 46.2612128 ], + [ 7.1021022, 46.2613083 ], + [ 7.1023287, 46.2615061 ], + [ 7.1019459, 46.2615495 ], + [ 7.1019859, 46.2616341 ], + [ 7.101888, 46.2617294 ], + [ 7.1021924, 46.2621864 ], + [ 7.1018913, 46.262247 ], + [ 7.1020518, 46.2625121 ], + [ 7.1018652, 46.2625395 ], + [ 7.1016616, 46.2625499 ], + [ 7.1014824, 46.2625603 ], + [ 7.1012306, 46.2626438 ], + [ 7.1010917, 46.2626994 ], + [ 7.101002, 46.2627778 ], + [ 7.1009679, 46.2629183 ], + [ 7.1009671, 46.2630421 ], + [ 7.1010298, 46.2632618 ], + [ 7.1011178, 46.2634535 ], + [ 7.1012144, 46.2635553 ], + [ 7.1013195, 46.263595 ], + [ 7.1014824, 46.2636125 ], + [ 7.1016255, 46.2639281 ], + [ 7.1016816, 46.264041 ], + [ 7.1017456, 46.2641707 ], + [ 7.1017936, 46.2642722 ], + [ 7.1018743, 46.26434 ], + [ 7.1019871, 46.2644361 ], + [ 7.1020755, 46.2645659 ], + [ 7.1022847, 46.2648256 ], + [ 7.1021457, 46.2648813 ], + [ 7.1020158, 46.2649145 ], + [ 7.1018446, 46.2649306 ], + [ 7.1016825, 46.2649356 ], + [ 7.1015277, 46.2649349 ], + [ 7.1012432, 46.2649282 ], + [ 7.1009595, 46.2649101 ], + [ 7.1006427, 46.2648919 ], + [ 7.1003501, 46.264885 ], + [ 7.1001475, 46.2648673 ], + [ 7.0999848, 46.2648385 ], + [ 7.099823, 46.2647872 ], + [ 7.0996438, 46.264792 ], + [ 7.0994976, 46.2648308 ], + [ 7.0993516, 46.2648471 ], + [ 7.0991889, 46.264807 ], + [ 7.0989791, 46.2646543 ], + [ 7.0989045, 46.2647946 ], + [ 7.0989033, 46.2649746 ], + [ 7.0988062, 46.2649517 ], + [ 7.0985705, 46.264917 ], + [ 7.0983263, 46.2649441 ], + [ 7.0982690999999996, 46.265017 ], + [ 7.0983174, 46.2650791 ], + [ 7.0984222, 46.2651752 ], + [ 7.0982099, 46.2652812 ], + [ 7.0986402, 46.2653056 ], + [ 7.0983707, 46.2654957 ], + [ 7.0985961, 46.2657442 ], + [ 7.0983764, 46.2657546 ], + [ 7.0982462, 46.2658271 ], + [ 7.0980993, 46.2658659 ], + [ 7.0977903, 46.2658815 ], + [ 7.0978142, 46.2659491 ], + [ 7.0979525, 46.2660059 ], + [ 7.0980818, 46.2660628 ], + [ 7.0983085, 46.2661086 ], + [ 7.0984876, 46.2661151 ], + [ 7.0985845, 46.2661774 ], + [ 7.0985193, 46.266239 ], + [ 7.0984209, 46.2662893 ], + [ 7.0982423, 46.2663222 ], + [ 7.0980383, 46.2664114 ], + [ 7.0981508, 46.2665582 ], + [ 7.0982477, 46.2666205 ], + [ 7.0983692, 46.2666435 ], + [ 7.0985391, 46.2666892 ], + [ 7.0987422, 46.2667576 ], + [ 7.0988713, 46.2668594 ], + [ 7.0989518, 46.2669497 ], + [ 7.0996426, 46.2688769 ], + [ 7.0997044, 46.269226 ], + [ 7.0996462, 46.2693383 ], + [ 7.0995645, 46.269428 ], + [ 7.099377, 46.2694778 ], + [ 7.0992308, 46.2695166 ], + [ 7.0990118, 46.2693976 ], + [ 7.0987934, 46.2693178 ], + [ 7.0987534, 46.2692445 ], + [ 7.09861, 46.2689682 ], + [ 7.0984793, 46.2689901 ], + [ 7.0982675, 46.2690231 ], + [ 7.0979826, 46.2690837 ], + [ 7.0976893, 46.2691782 ], + [ 7.0973149, 46.2692891 ], + [ 7.0969889, 46.2694228 ], + [ 7.0967442, 46.2695287 ], + [ 7.0964673, 46.2696063 ], + [ 7.096288, 46.2696224 ], + [ 7.0962712, 46.2697123 ], + [ 7.0963677, 46.2698365 ], + [ 7.0964079, 46.2698986 ], + [ 7.0950973, 46.270225 ], + [ 7.0948449, 46.2702747 ], + [ 7.0946011, 46.2702398 ], + [ 7.0942193, 46.270227 ], + [ 7.0938862, 46.2702087 ], + [ 7.0935771, 46.2702355 ], + [ 7.0933501, 46.2702458 ], + [ 7.093106, 46.270256 ], + [ 7.0930164, 46.2703232 ], + [ 7.0930353, 46.2703988 ], + [ 7.093172, 46.2704509 ], + [ 7.0933985, 46.2705303 ], + [ 7.0936254, 46.2705507 ], + [ 7.0937668, 46.2706298 ], + [ 7.0938232, 46.2706891 ], + [ 7.0938223, 46.2708268 ], + [ 7.09385, 46.2709253 ], + [ 7.0940034, 46.271029 ], + [ 7.0943024, 46.2711824 ], + [ 7.0946705, 46.2713077 ], + [ 7.0949607, 46.2714357 ], + [ 7.0953774, 46.2715793 ], + [ 7.0957737, 46.2717182 ], + [ 7.0961704, 46.2718179 ], + [ 7.0964561, 46.2718889 ], + [ 7.0968115, 46.2719797 ], + [ 7.097016, 46.2720701 ], + [ 7.097123, 46.2722049 ], + [ 7.0972453, 46.2723523 ], + [ 7.0974148, 46.272471 ], + [ 7.0978112, 46.2726098 ], + [ 7.098094, 46.2727681 ], + [ 7.0984898, 46.2730054 ], + [ 7.0987723, 46.2732031 ], + [ 7.099055, 46.273381 ], + [ 7.0993373, 46.2736179 ], + [ 7.0996077, 46.2739287 ], + [ 7.1001551, 46.2744271 ], + [ 7.1004089, 46.2746837 ], + [ 7.1006062, 46.2749007 ], + [ 7.1007191, 46.2749993 ], + [ 7.1008319, 46.2751178 ], + [ 7.1009449, 46.2751969 ], + [ 7.1011148, 46.2752564 ], + [ 7.1012851, 46.2752569 ], + [ 7.1014835, 46.2752969 ], + [ 7.1017953, 46.2753568 ], + [ 7.1020791, 46.2753577 ], + [ 7.1024755, 46.2753589 ], + [ 7.1027935, 46.2753378 ], + [ 7.1032099, 46.2753967 ], + [ 7.1035339, 46.2754541 ], + [ 7.1037954, 46.2755045 ], + [ 7.1040701, 46.2755384 ], + [ 7.1044274, 46.2755891 ], + [ 7.1048287, 46.27572 ], + [ 7.1051687, 46.2758194 ], + [ 7.1053102, 46.2758788 ], + [ 7.1053952, 46.2758988 ], + [ 7.1054802, 46.2759187 ], + [ 7.1055652, 46.2759386 ], + [ 7.1056106, 46.2759456 ], + [ 7.1056786, 46.2759586 ], + [ 7.1057126, 46.2759717 ], + [ 7.1057917, 46.276018 ], + [ 7.1058086, 46.2760488 ], + [ 7.1058084, 46.2760841 ], + [ 7.1057903, 46.2761289 ], + [ 7.1057341, 46.2761608 ], + [ 7.1056417, 46.2761637 ], + [ 7.1055865, 46.2761668 ], + [ 7.1054381, 46.2761711 ], + [ 7.1051668, 46.2761145 ], + [ 7.1049118, 46.2760547 ], + [ 7.104519, 46.2759745 ], + [ 7.1041154, 46.2759439 ], + [ 7.1038528, 46.2759349 ], + [ 7.1036364, 46.2759205 ], + [ 7.1034143, 46.2759039 ], + [ 7.1031726, 46.2759163 ], + [ 7.1029821, 46.2759157 ], + [ 7.1028548, 46.2759214 ], + [ 7.1027808, 46.2759468 ], + [ 7.1027895, 46.2759918 ], + [ 7.1028542, 46.2760144 ], + [ 7.1029254, 46.276029199999996 ], + [ 7.1030673, 46.2760296 ], + [ 7.1033225, 46.2760697 ], + [ 7.1036344, 46.27611 ], + [ 7.1038337, 46.2761424 ], + [ 7.104028, 46.2761782 ], + [ 7.1042725, 46.276243 ], + [ 7.1045411, 46.2763488 ], + [ 7.1047106, 46.2764673 ], + [ 7.1048238, 46.2765268 ], + [ 7.1048858, 46.2765944 ], + [ 7.1049955, 46.2766813 ], + [ 7.105136, 46.2767824 ], + [ 7.1052815, 46.2768553 ], + [ 7.1054521, 46.2769328 ], + [ 7.1056875, 46.2770264 ], + [ 7.1058718, 46.2771103 ], + [ 7.1060878, 46.2771906 ], + [ 7.1062663, 46.2772983 ], + [ 7.1063794, 46.2773774 ], + [ 7.1065206, 46.2774959 ], + [ 7.10667, 46.2775893 ], + [ 7.106812, 46.2776973 ], + [ 7.1069072, 46.2777803 ], + [ 7.1070572, 46.2779107 ], + [ 7.1071921, 46.277992 ], + [ 7.107394, 46.2781249 ], + [ 7.1076324, 46.2782581 ], + [ 7.1077923, 46.2783653 ], + [ 7.1080751, 46.2785236 ], + [ 7.1084153, 46.2785836 ], + [ 7.1089539, 46.2786835 ], + [ 7.1097755, 46.278922 ], + [ 7.1104552, 46.2790224 ], + [ 7.1109371, 46.2791222 ], + [ 7.1114194, 46.2792782 ], + [ 7.1120148, 46.2795116 ], + [ 7.1124663, 46.2796775 ], + [ 7.1128915, 46.2797574 ], + [ 7.1131181, 46.2798368 ], + [ 7.113231, 46.2799355 ], + [ 7.1134006, 46.2800541 ], + [ 7.113538, 46.2801281 ], + [ 7.1137879, 46.2802446 ], + [ 7.1138949, 46.2802449 ], + [ 7.1140385, 46.2802371 ], + [ 7.1141939, 46.2802728 ], + [ 7.1142528, 46.2803204 ], + [ 7.1143634, 46.280411 ], + [ 7.1145614, 46.2805296 ], + [ 7.1147168, 46.2805699 ], + [ 7.1148448, 46.2805895 ], + [ 7.1150143, 46.2805873 ], + [ 7.1151695, 46.2806622 ], + [ 7.1153238, 46.2807619 ], + [ 7.1154667, 46.2808699 ], + [ 7.1156328, 46.2810358 ], + [ 7.115721, 46.2812019 ], + [ 7.1158091, 46.2813837 ], + [ 7.1158319, 46.2816319 ], + [ 7.1158306, 46.2818516 ], + [ 7.1158297, 46.2819999 ], + [ 7.1158834, 46.2819798 ], + [ 7.1159644, 46.2819914 ], + [ 7.1160533, 46.2820424 ], + [ 7.1161582, 46.2821272 ], + [ 7.1163771, 46.2822799 ], + [ 7.1165628, 46.2824046 ], + [ 7.116846, 46.2825069 ], + [ 7.1170816, 46.2825698 ], + [ 7.117373, 46.282661 ], + [ 7.1176814, 46.2827634 ], + [ 7.1179899, 46.2828322 ], + [ 7.1182815, 46.2828953 ], + [ 7.1186065, 46.2829303 ], + [ 7.1190044, 46.2829768 ], + [ 7.1192806, 46.2830174 ], + [ 7.1195643, 46.283041 ], + [ 7.1212871, 46.2831098 ], + [ 7.1218149, 46.2831399 ], + [ 7.1219695, 46.2831744 ], + [ 7.1221394, 46.2832426 ], + [ 7.1224387, 46.2833732 ], + [ 7.1229409, 46.2836059 ], + [ 7.1233463, 46.2837594 ], + [ 7.1236375, 46.2838843 ], + [ 7.1239217, 46.2839586 ], + [ 7.1241487, 46.2839763 ], + [ 7.1243685, 46.2839772 ], + [ 7.1245641, 46.2839442 ], + [ 7.1247669, 46.2839394 ], + [ 7.1249046, 46.2839624 ], + [ 7.1251241, 46.283997 ], + [ 7.1253428, 46.2840543 ], + [ 7.1256028, 46.2841002 ], + [ 7.1258213, 46.2841742 ], + [ 7.1259677, 46.2842422 ], + [ 7.1259827, 46.2843211 ], + [ 7.1259498, 46.2843998 ], + [ 7.1257777, 46.2845622 ], + [ 7.1259323, 46.2846249 ], + [ 7.1261183, 46.2847042 ], + [ 7.1262639, 46.2847668 ], + [ 7.1264662, 46.2848519 ], + [ 7.1266856, 46.2849203 ], + [ 7.1268961, 46.2849718 ], + [ 7.127059, 46.2849837 ], + [ 7.1272456, 46.2849844 ], + [ 7.1274248, 46.2849851 ], + [ 7.1275545, 46.2849912 ], + [ 7.1277328, 46.2850088 ], + [ 7.1278795, 46.2850206 ], + [ 7.1281064, 46.285044 ], + [ 7.1281627, 46.2851398 ], + [ 7.1281945, 46.2852525 ], + [ 7.1282664, 46.2854272 ], + [ 7.1283064, 46.2855287 ], + [ 7.1284682, 46.2856023 ], + [ 7.1286059, 46.2856199 ], + [ 7.1287691, 46.285598 ], + [ 7.1289071, 46.2855704 ], + [ 7.1290377, 46.285554 ], + [ 7.1292323, 46.2855605 ], + [ 7.1294439, 46.2855837 ], + [ 7.1296223, 46.28559 ], + [ 7.1297611, 46.2855625 ], + [ 7.1299153, 46.285535 ], + [ 7.1301097, 46.2855751 ], + [ 7.1303373, 46.2856322 ], + [ 7.1306288, 46.2857121 ], + [ 7.1308482, 46.2857692 ], + [ 7.1311004, 46.2857646 ], + [ 7.1313358000000004, 46.2857318 ], + [ 7.1316124, 46.2857215 ], + [ 7.1317838, 46.2856772 ], + [ 7.1318167, 46.2855816 ], + [ 7.1318497, 46.2854862 ], + [ 7.1319647, 46.2853741 ], + [ 7.1321041, 46.2852508 ], + [ 7.1322749, 46.2851503 ], + [ 7.1329377, 46.2856873 ], + [ 7.1304402, 46.2890591 ], + [ 7.1302437, 46.289244 ], + [ 7.1301204, 46.2893955 ], + [ 7.1299495, 46.2895017 ], + [ 7.129729, 46.2896246 ], + [ 7.1294924, 46.2897363 ], + [ 7.1293125, 46.2898481 ], + [ 7.1290597, 46.289954 ], + [ 7.1287982, 46.2901443 ], + [ 7.1286179, 46.2903405 ], + [ 7.1284862, 46.2905369 ], + [ 7.1284109, 46.2908011 ], + [ 7.1282953, 46.2910088 ], + [ 7.1282217, 46.291121 ], + [ 7.1280823, 46.2912331 ], + [ 7.1278699, 46.2913615 ], + [ 7.1277223, 46.2915017 ], + [ 7.1274526, 46.2917257 ], + [ 7.1267993, 46.2920831 ], + [ 7.126522, 46.2922004 ], + [ 7.1261623, 46.2924183 ], + [ 7.1257786, 46.2927094 ], + [ 7.1254996, 46.2929783 ], + [ 7.1251551, 46.2933709 ], + [ 7.1249337, 46.2936457 ], + [ 7.1246381, 46.2939877 ], + [ 7.1242686, 46.2944814 ], + [ 7.1231401, 46.2942462 ], + [ 7.1228487, 46.2941607 ], + [ 7.122548, 46.2941089 ], + [ 7.1223037, 46.294136 ], + [ 7.1219861, 46.2942248 ], + [ 7.1216198, 46.2943021 ], + [ 7.1213513, 46.2943123 ], + [ 7.1202478, 46.2941165 ], + [ 7.119371, 46.2939724 ], + [ 7.1188345, 46.2939028 ], + [ 7.1183717, 46.2938504 ], + [ 7.1178357, 46.2938313 ], + [ 7.1172662, 46.2938403 ], + [ 7.1166812, 46.2938717 ], + [ 7.1164605, 46.2940396 ], + [ 7.1162303, 46.2942863 ], + [ 7.1160655, 46.2945725 ], + [ 7.1158439, 46.2948754 ], + [ 7.1156214, 46.2952009 ], + [ 7.1152841, 46.2957228 ], + [ 7.1151766, 46.2959249 ], + [ 7.1150854, 46.2961159 ], + [ 7.1150277, 46.2962787 ], + [ 7.11505, 46.2964871 ], + [ 7.1150653, 46.2966334 ], + [ 7.1151211, 46.2967968 ], + [ 7.1152662, 46.2969494 ], + [ 7.1153698, 46.2971186 ], + [ 7.115531, 46.2973048 ], + [ 7.1156191, 46.2974796 ], + [ 7.1156991, 46.2976656 ], + [ 7.1157632, 46.2978121 ], + [ 7.115794, 46.2979417 ], + [ 7.1158578, 46.2981276 ], + [ 7.1159131, 46.2983697 ], + [ 7.1159511, 46.2986625 ], + [ 7.1159745, 46.2988201 ], + [ 7.1160215, 46.2989778 ], + [ 7.1160936, 46.2991244 ], + [ 7.1161897, 46.2993218 ], + [ 7.1162527, 46.2995133 ], + [ 7.1162681, 46.2996541 ], + [ 7.1162184, 46.2998226 ], + [ 7.1161519, 46.2999631 ], + [ 7.1160771, 46.3001203 ], + [ 7.1159871, 46.3002493 ], + [ 7.1159369, 46.3003616 ], + [ 7.1158062, 46.3005186 ], + [ 7.1156501, 46.3007093 ], + [ 7.1154695, 46.3009394 ], + [ 7.1153785, 46.3011021 ], + [ 7.1153037, 46.301265 ], + [ 7.1152206, 46.3014503 ], + [ 7.1151787, 46.3016865 ], + [ 7.1152169, 46.3019455 ], + [ 7.115248, 46.3021594 ], + [ 7.1152379, 46.3023563 ], + [ 7.1151953, 46.3025643 ], + [ 7.1151618, 46.3027498 ], + [ 7.1150701, 46.3030251 ], + [ 7.1149708, 46.3032105 ], + [ 7.1148715, 46.3034014 ], + [ 7.1150183, 46.3034018 ], + [ 7.1151647, 46.303335 ], + [ 7.1152798, 46.3032286 ], + [ 7.1153293, 46.3030881 ], + [ 7.115453, 46.302886 ], + [ 7.1155682, 46.3027402 ], + [ 7.1156756, 46.3025606 ], + [ 7.1158566, 46.3022632 ], + [ 7.1160611, 46.3021121 ], + [ 7.1163063, 46.3019555 ], + [ 7.1165595, 46.3017876 ], + [ 7.1166094, 46.301726 ], + [ 7.1166752, 46.3015743 ], + [ 7.1167498, 46.3014396 ], + [ 7.1169208, 46.301339 ], + [ 7.1171654, 46.3012669 ], + [ 7.1174423, 46.3012117 ], + [ 7.1177273, 46.3011622 ], + [ 7.1179715, 46.3011575 ], + [ 7.1182564, 46.3011305 ], + [ 7.1185485, 46.3011204 ], + [ 7.1188334, 46.3010821 ], + [ 7.119159, 46.3010329 ], + [ 7.1194439, 46.3010059 ], + [ 7.1197291, 46.3009339 ], + [ 7.1199736, 46.3008617 ], + [ 7.1202181, 46.3008064 ], + [ 7.1203886, 46.3007902 ], + [ 7.1205681, 46.3007572 ], + [ 7.1207882, 46.3007131 ], + [ 7.1210075, 46.3006632 ], + [ 7.1212439, 46.3005967 ], + [ 7.1214151, 46.3005917 ], + [ 7.1216664, 46.3006096 ], + [ 7.1219187, 46.3006219 ], + [ 7.1221951, 46.3006511 ], + [ 7.1223244, 46.300736 ], + [ 7.1223966, 46.3008769 ], + [ 7.1224355, 46.3010178 ], + [ 7.1224753, 46.3011474 ], + [ 7.1224988, 46.3012937 ], + [ 7.1225375, 46.3014626 ], + [ 7.1225117000000004, 46.3017214 ], + [ 7.1224933, 46.3019464 ], + [ 7.1224671, 46.302126200000004 ], + [ 7.1224578, 46.3023288 ], + [ 7.1224409, 46.3024582 ], + [ 7.1224469, 46.302672 ], + [ 7.1225104, 46.3029086 ], + [ 7.1225649, 46.3031563 ], + [ 7.1226203, 46.3034041 ], + [ 7.1226989, 46.3037027 ], + [ 7.1228099, 46.3040012 ], + [ 7.1228572, 46.3042266 ], + [ 7.1229369, 46.3044745 ], + [ 7.1232342, 46.3048188 ], + [ 7.1234371, 46.3049491 ], + [ 7.1236394, 46.3050399 ], + [ 7.1239318, 46.3051142 ], + [ 7.124191, 46.3051771 ], + [ 7.1244268, 46.3052286 ], + [ 7.1247674, 46.3052582 ], + [ 7.1250602, 46.3052705 ], + [ 7.1253125, 46.3052659 ], + [ 7.1256137, 46.3052221 ], + [ 7.1258408, 46.3052229 ], + [ 7.1261176, 46.3051959 ], + [ 7.1262968, 46.3052135 ], + [ 7.1265806, 46.3052372 ], + [ 7.1268407, 46.3052944 ], + [ 7.1270024, 46.3053851 ], + [ 7.1271724, 46.3054533 ], + [ 7.1273922, 46.3054711 ], + [ 7.1275867, 46.3054999 ], + [ 7.1277249, 46.3055848 ], + [ 7.1277813, 46.3056582 ], + [ 7.1278448, 46.3057653 ], + [ 7.1279007, 46.3059175 ], + [ 7.1279243, 46.3060469 ], + [ 7.1278817, 46.3062607 ], + [ 7.1278805, 46.3064633 ], + [ 7.1278299, 46.3066655 ], + [ 7.1277464, 46.3069296 ], + [ 7.1277129, 46.3071152 ], + [ 7.1277035, 46.3071995 ], + [ 7.1277275, 46.3072559 ], + [ 7.127784, 46.3073068 ], + [ 7.1279132, 46.3074085 ], + [ 7.1279859, 46.3074707 ], + [ 7.1280744, 46.3075893 ], + [ 7.1281145, 46.3076794 ], + [ 7.1281623, 46.3078315 ], + [ 7.1282263, 46.3079893 ], + [ 7.1282484, 46.3082314 ], + [ 7.1281979, 46.3084056 ], + [ 7.1280919, 46.3084896 ], + [ 7.1279944, 46.3085173 ], + [ 7.1278802, 46.3084888 ], + [ 7.1278239, 46.3084097 ], + [ 7.1277352, 46.3083138 ], + [ 7.127622, 46.3082346 ], + [ 7.12746, 46.3082002 ], + [ 7.1272884, 46.308267 ], + [ 7.1271498, 46.3083903 ], + [ 7.1269209, 46.3085412 ], + [ 7.1267737, 46.3086195 ], + [ 7.1266183, 46.308692 ], + [ 7.1263979, 46.3087867 ], + [ 7.1262518, 46.3087862 ], + [ 7.1261056, 46.3088194 ], + [ 7.1260475, 46.3089036 ], + [ 7.1259821, 46.3089932 ], + [ 7.1258672, 46.3090772 ], + [ 7.1257291, 46.3091105 ], + [ 7.1255823, 46.3091099 ], + [ 7.1254928, 46.3091489 ], + [ 7.1253706, 46.3092272 ], + [ 7.1251911, 46.3092659 ], + [ 7.125028, 46.3092766 ], + [ 7.124712, 46.3091965 ], + [ 7.1230903, 46.3086274 ], + [ 7.123187, 46.3087403 ], + [ 7.1233161, 46.3088646 ], + [ 7.1234207, 46.3090058 ], + [ 7.1234851, 46.3091016 ], + [ 7.1236306, 46.3091979 ], + [ 7.1237601, 46.3092434 ], + [ 7.1239219, 46.3093228 ], + [ 7.1240362, 46.3093346 ], + [ 7.124174, 46.3093575 ], + [ 7.1243199, 46.309375 ], + [ 7.1244979, 46.3094714 ], + [ 7.1246442, 46.3095619 ], + [ 7.1248302, 46.309658400000004 ], + [ 7.1249517, 46.3097038 ], + [ 7.1251147, 46.3097101 ], + [ 7.1252284, 46.3096992 ], + [ 7.1253745, 46.309683 ], + [ 7.1255294, 46.3096836 ], + [ 7.125651, 46.3097009 ], + [ 7.1258212, 46.3097411 ], + [ 7.1259518, 46.3097472 ], + [ 7.1261383, 46.3097647 ], + [ 7.1263907, 46.3097433 ], + [ 7.1266675, 46.3097162 ], + [ 7.126911, 46.3096947 ], + [ 7.1272284, 46.3096734 ], + [ 7.1274728, 46.309635 ], + [ 7.1277255, 46.3095797 ], + [ 7.1279781, 46.30953 ], + [ 7.1282632, 46.3094692 ], + [ 7.1284663, 46.3094194 ], + [ 7.1287269, 46.3093811 ], + [ 7.1289797, 46.3093145 ], + [ 7.1292077, 46.3092985 ], + [ 7.1293865, 46.3092429 ], + [ 7.1296471, 46.3092271 ], + [ 7.1298913, 46.3092224 ], + [ 7.1301112, 46.3092064 ], + [ 7.130583, 46.3091407 ], + [ 7.1309167, 46.3090914 ], + [ 7.1310963, 46.3090358 ], + [ 7.1312588, 46.3089914 ], + [ 7.1314061, 46.3089245 ], + [ 7.1314958, 46.3088461 ], + [ 7.1315781, 46.3087732 ], + [ 7.1316354, 46.3086778 ], + [ 7.1316927, 46.3085936 ], + [ 7.1317429, 46.3084644 ], + [ 7.1317194, 46.3083293 ], + [ 7.1318663, 46.3083129 ], + [ 7.1319717, 46.3083302 ], + [ 7.1321744, 46.3083535 ], + [ 7.1322483, 46.3083257 ], + [ 7.1323542, 46.3082585 ], + [ 7.1324203, 46.3081912 ], + [ 7.1325504, 46.3081356 ], + [ 7.1328112, 46.3080747 ], + [ 7.1331044, 46.3080139 ], + [ 7.1332583, 46.3080652 ], + [ 7.1333798, 46.3080937 ], + [ 7.1335188, 46.3080493 ], + [ 7.1336984, 46.3079937 ], + [ 7.1338687, 46.3080056 ], + [ 7.1339903, 46.3080229 ], + [ 7.1342020999999995, 46.3080182 ], + [ 7.1344373, 46.3080247 ], + [ 7.134641, 46.3080086 ], + [ 7.1347963, 46.3079585 ], + [ 7.1349266, 46.3078578 ], + [ 7.1351631, 46.3077968 ], + [ 7.1353182, 46.3077636 ], + [ 7.1354809, 46.3076799 ], + [ 7.1357414, 46.3076696 ], + [ 7.1359938, 46.3076537 ], + [ 7.1363841, 46.3076439 ], + [ 7.1367258, 46.3076171 ], + [ 7.1370919, 46.3075847 ], + [ 7.1374578, 46.3075749 ], + [ 7.1377916, 46.3075199 ], + [ 7.1380195, 46.3075264 ], + [ 7.1382787, 46.3075893 ], + [ 7.1385415, 46.3073202 ], + [ 7.138658, 46.306938099999996 ], + [ 7.1386262, 46.3068141 ], + [ 7.1385211, 46.3067462 ], + [ 7.1383507999999996, 46.3067343 ], + [ 7.1380905, 46.3067221 ], + [ 7.1379695, 46.3065922 ], + [ 7.1378164, 46.3064059 ], + [ 7.1376554, 46.3061916 ], + [ 7.1377215, 46.3061074 ], + [ 7.1377868, 46.3060345 ], + [ 7.1378036, 46.3059334 ], + [ 7.1377891, 46.3057812 ], + [ 7.1377172, 46.3055785 ], + [ 7.1376286, 46.3054544 ], + [ 7.1376534, 46.3053757 ], + [ 7.1376627, 46.3053025 ], + [ 7.137874, 46.3052359 ], + [ 7.1379648, 46.3051124 ], + [ 7.1378684, 46.304932 ], + [ 7.1379269, 46.3047803 ], + [ 7.137952, 46.3046341 ], + [ 7.1379527, 46.3045104 ], + [ 7.1379949, 46.3043642 ], + [ 7.1380362, 46.3042293 ], + [ 7.137996, 46.3041673 ], + [ 7.1379729, 46.3040941 ], + [ 7.1380224, 46.3039423 ], + [ 7.1381293, 46.3038302 ], + [ 7.1382513, 46.3037744 ], + [ 7.1383336, 46.3037016 ], + [ 7.1384317, 46.3035782 ], + [ 7.138359, 46.303516 ], + [ 7.1383606, 46.303381 ], + [ 7.1383858, 46.3032179 ], + [ 7.1384107, 46.3031167 ], + [ 7.1385336, 46.3030439 ], + [ 7.1385177, 46.3029877 ], + [ 7.1385586, 46.302926 ], + [ 7.1386169, 46.3027911 ], + [ 7.1387161, 46.3026171 ], + [ 7.1388062, 46.3024487 ], + [ 7.1389135, 46.3022747 ], + [ 7.1389561, 46.3020497 ], + [ 7.1389974, 46.3019036 ], + [ 7.1390884, 46.3017464 ], + [ 7.1391389, 46.3015498 ], + [ 7.1392042, 46.3014768 ], + [ 7.1391884, 46.3014036 ], + [ 7.1391566, 46.3012965 ], + [ 7.1391503, 46.301110800000004 ], + [ 7.1391026, 46.3009251 ], + [ 7.1390306, 46.3007559 ], + [ 7.1392372, 46.3003572 ], + [ 7.1394798999999995, 46.3004763 ], + [ 7.1396751, 46.3005332 ], + [ 7.1398532, 46.3006015 ], + [ 7.1400314, 46.3006472 ], + [ 7.1403077, 46.3006932 ], + [ 7.1405264, 46.300756 ], + [ 7.1408999, 46.3008362 ], + [ 7.1411519, 46.3008877 ], + [ 7.1413705, 46.3009562 ], + [ 7.1416142, 46.3010527 ], + [ 7.1417434, 46.3011545 ], + [ 7.1418884, 46.3013463 ], + [ 7.1420095, 46.301448 ], + [ 7.1421067, 46.3014766 ], + [ 7.1423012, 46.3014998 ], + [ 7.1425938, 46.301546 ], + [ 7.1429351, 46.3015922 ], + [ 7.1431703, 46.3015987 ], + [ 7.1433821, 46.3015826 ], + [ 7.1435778, 46.3015441 ], + [ 7.1437885, 46.3015954 ], + [ 7.144081, 46.3016528 ], + [ 7.1443645, 46.3017214 ], + [ 7.1445842, 46.301756 ], + [ 7.1447703, 46.3018299 ], + [ 7.145006, 46.3018982 ], + [ 7.1452811, 46.3020343 ], + [ 7.1455481, 46.3021648 ], + [ 7.1458727, 46.3022842 ], + [ 7.1462054, 46.302426 ], + [ 7.1464969, 46.3025283 ], + [ 7.146683, 46.3025966 ], + [ 7.1468783, 46.3026423 ], + [ 7.1471710999999996, 46.3026548 ], + [ 7.1474551, 46.3026332 ], + [ 7.1478047, 46.3026345 ], + [ 7.148122, 46.3026188 ], + [ 7.1483746, 46.3025635 ], + [ 7.1485688, 46.3026487 ], + [ 7.1488447, 46.3027847 ], + [ 7.1490633, 46.3028643 ], + [ 7.1492345, 46.3028593 ], + [ 7.1494459, 46.3027757 ], + [ 7.1497067, 46.3026979 ], + [ 7.1499186, 46.3026593 ], + [ 7.150106, 46.3026656 ], + [ 7.1503006, 46.3026832 ], + [ 7.1505366, 46.302701 ], + [ 7.1508206, 46.3026794 ], + [ 7.1510324, 46.3026691 ], + [ 7.1511377, 46.3026976 ], + [ 7.1512508, 46.3027767 ], + [ 7.1514132, 46.3029011 ], + [ 7.1515991, 46.3030256 ], + [ 7.1518174, 46.3031671 ], + [ 7.151979, 46.3032915 ], + [ 7.1522218, 46.3033937 ], + [ 7.1524738, 46.3034452 ], + [ 7.1527098, 46.3034572 ], + [ 7.1530998, 46.3034981 ], + [ 7.1533188, 46.3035158 ], + [ 7.1534077, 46.3035725 ], + [ 7.1535126, 46.3036684 ], + [ 7.1537321, 46.3037481 ], + [ 7.1538698, 46.3037823 ], + [ 7.1541046999999995, 46.303845 ], + [ 7.1544133, 46.3039362 ], + [ 7.1546158, 46.3039932 ], + [ 7.1548595, 46.3040841 ], + [ 7.1551512, 46.3041583 ], + [ 7.1554839, 46.3042946 ], + [ 7.155791, 46.3045039 ], + [ 7.156456, 46.3047145 ], + [ 7.1566431, 46.3047602 ], + [ 7.1567732, 46.3046988 ], + [ 7.1569931, 46.3047053 ], + [ 7.1571635, 46.3046833 ], + [ 7.1572781, 46.3046444 ], + [ 7.1574093, 46.3045323 ], + [ 7.1575151, 46.3044652 ], + [ 7.1576462, 46.3043756 ], + [ 7.1578007, 46.3043144 ], + [ 7.1579556, 46.3043205 ], + [ 7.1581745, 46.3043495 ], + [ 7.1583378, 46.3042994 ], + [ 7.1584438, 46.3041985 ], + [ 7.1584943, 46.3039961 ], + [ 7.1584705, 46.3038892 ], + [ 7.1585691, 46.3037994 ], + [ 7.1586345, 46.3037041 ], + [ 7.1585866, 46.3035688 ], + [ 7.1585393, 46.3034448 ], + [ 7.1584266, 46.3032926 ], + [ 7.1583054, 46.3031852 ], + [ 7.1583954, 46.3030393 ], + [ 7.1583556, 46.3029041 ], + [ 7.1583491, 46.3027466 ], + [ 7.1583018, 46.3024762 ], + [ 7.1582469, 46.3022735 ], + [ 7.1582959, 46.3022062 ], + [ 7.1586966, 46.3019038 ], + [ 7.1588507, 46.3018988 ], + [ 7.1590543, 46.3018994 ], + [ 7.159258, 46.3018889 ], + [ 7.1594935, 46.3018448 ], + [ 7.1597536999999996, 46.3018907 ], + [ 7.1600219, 46.3019423 ], + [ 7.160257, 46.301977 ], + [ 7.1604527000000004, 46.301927 ], + [ 7.1606486, 46.301849 ], + [ 7.1608435, 46.301816 ], + [ 7.1609812999999995, 46.3018333 ], + [ 7.161071, 46.3018955 ], + [ 7.1612005, 46.3019523 ], + [ 7.1613706, 46.3020091 ], + [ 7.1616145, 46.3020494 ], + [ 7.1619307, 46.3020843 ], + [ 7.1622399, 46.3020685 ], + [ 7.1626545, 46.3020588 ], + [ 7.162988, 46.3020205 ], + [ 7.1633146, 46.3019261 ], + [ 7.1635664, 46.3018595 ], + [ 7.1637867, 46.3017872 ], + [ 7.163901, 46.3017988 ], + [ 7.1640792, 46.30185 ], + [ 7.1643062, 46.3018734 ], + [ 7.1644532, 46.3018401 ], + [ 7.1646478, 46.3018521 ], + [ 7.1650055, 46.3018534 ], + [ 7.1655671, 46.3018104 ], + [ 7.1657212, 46.301811 ], + [ 7.1658597, 46.3018508 ], + [ 7.1660784, 46.3019192 ], + [ 7.1662484, 46.3019928 ], + [ 7.1663463, 46.3020383 ], + [ 7.1665003, 46.3020669 ], + [ 7.1667108, 46.3021408 ], + [ 7.1669384, 46.3022091 ], + [ 7.1671573, 46.3022381 ], + [ 7.1673285, 46.3022443 ], + [ 7.1674499, 46.3022841 ], + [ 7.1676281, 46.3023353 ], + [ 7.1677993, 46.3023473 ], + [ 7.1679294, 46.3022745 ], + [ 7.1680525, 46.3021625 ], + [ 7.1682322, 46.3020618 ], + [ 7.168395, 46.3019612 ], + [ 7.168607, 46.3018944 ], + [ 7.1687284, 46.3019566 ], + [ 7.1689316, 46.3020475 ], + [ 7.1691259, 46.30211 ], + [ 7.1694107, 46.302111 ], + [ 7.1695485, 46.3021284 ], + [ 7.1696373, 46.3022131 ], + [ 7.1697748, 46.3022867 ], + [ 7.1698236, 46.3022756 ], + [ 7.1699463, 46.3022367 ], + [ 7.1701083, 46.3022766 ], + [ 7.1703278, 46.3023449 ], + [ 7.1705954, 46.3023684 ], + [ 7.1708962, 46.3023919 ], + [ 7.1711888, 46.302438 ], + [ 7.171294, 46.3024946 ], + [ 7.1714396, 46.3025795 ], + [ 7.1716094, 46.302687 ], + [ 7.1718773, 46.3028118 ], + [ 7.172096, 46.3028744 ], + [ 7.1723726, 46.3028811 ], + [ 7.1726249, 46.3028763 ], + [ 7.1727384, 46.3029048 ], + [ 7.1729247, 46.3029561 ], + [ 7.1731361, 46.3030245 ], + [ 7.1733712, 46.303059 ], + [ 7.1736721, 46.3030601 ], + [ 7.1739244, 46.3030721 ], + [ 7.1742002, 46.3030619 ], + [ 7.174721, 46.3030637 ], + [ 7.1752085, 46.3030766 ], + [ 7.1755501, 46.303061 ], + [ 7.1759074, 46.3031352 ], + [ 7.1763295, 46.3032494 ], + [ 7.1768812, 46.3034031 ], + [ 7.177124, 46.3035221 ], + [ 7.1773345, 46.3036129 ], + [ 7.1775702, 46.303687 ], + [ 7.1776917, 46.3037267 ], + [ 7.1778791, 46.3037273 ], + [ 7.1781064, 46.3036775 ], + [ 7.1784073, 46.3037067 ], + [ 7.1786596, 46.3036907 ], + [ 7.1787652, 46.3036629 ], + [ 7.179075, 46.3035177 ], + [ 7.1792708, 46.3034621 ], + [ 7.1795638, 46.3034293 ], + [ 7.179808, 46.3034133 ], + [ 7.1801904, 46.3033528 ], + [ 7.1806957, 46.3032025 ], + [ 7.1811271, 46.3030578 ], + [ 7.181348, 46.3028278 ], + [ 7.1818592, 46.3029815 ], + [ 7.1820872, 46.3029711 ], + [ 7.1823797, 46.3030452 ], + [ 7.1827118, 46.3031307 ], + [ 7.1829881, 46.3032104 ], + [ 7.1832968, 46.3032846 ], + [ 7.1835805, 46.3033362 ], + [ 7.1838975, 46.303371 ], + [ 7.1839785, 46.3034051 ], + [ 7.1841242, 46.3034675 ], + [ 7.1842789, 46.3035129 ], + [ 7.1844813, 46.3035925 ], + [ 7.1846514, 46.3036662 ], + [ 7.1848708, 46.303757 ], + [ 7.1851703, 46.3038762 ], + [ 7.1854222, 46.3039727 ], + [ 7.1856653999999995, 46.303996 ], + [ 7.1860232, 46.3039972 ], + [ 7.1891064, 46.3038727 ], + [ 7.1895997, 46.3040267 ], + [ 7.1896835, 46.3039719 ], + [ 7.1897593, 46.3039001 ], + [ 7.1898044, 46.3037883 ], + [ 7.1898801, 46.3037221 ], + [ 7.1899802, 46.3036565 ], + [ 7.1900163, 46.3035613 ], + [ 7.1899884, 46.3034593 ], + [ 7.1899831, 46.303386 ], + [ 7.19013, 46.3033662 ], + [ 7.1902607, 46.3033462 ], + [ 7.1903905, 46.3033487 ], + [ 7.1906275, 46.3033082 ], + [ 7.1908321, 46.3032783 ], + [ 7.1910232, 46.3031692 ], + [ 7.1911432, 46.3030137 ], + [ 7.1919381, 46.3030233 ], + [ 7.1922355, 46.302905 ], + [ 7.1925203, 46.3028879 ], + [ 7.1926897, 46.302925 ], + [ 7.1930196, 46.3028016 ], + [ 7.1933711, 46.3027351 ], + [ 7.1939138, 46.3025651 ], + [ 7.1945708, 46.3023861 ], + [ 7.1948638, 46.3023579 ], + [ 7.1950737, 46.3023845 ], + [ 7.1953224, 46.3024625 ], + [ 7.1955071, 46.302528 ], + [ 7.19569, 46.3026104 ], + [ 7.1959387, 46.3026884 ], + [ 7.1961793, 46.3027663 ], + [ 7.1963794, 46.3028321 ], + [ 7.1965569, 46.3028693 ], + [ 7.196765, 46.302941 ], + [ 7.1970291, 46.3030305 ], + [ 7.1972453, 46.3031191 ], + [ 7.1974129, 46.3031844 ], + [ 7.1976138, 46.3032333 ], + [ 7.197822, 46.3033162 ], + [ 7.1979887, 46.3033983 ], + [ 7.1982274, 46.3035268 ], + [ 7.198459, 46.3036158 ], + [ 7.1986834, 46.3036934 ], + [ 7.1988258, 46.3037861 ], + [ 7.1989924, 46.3038852 ], + [ 7.1991357, 46.3039668 ], + [ 7.1993501, 46.3040892 ], + [ 7.1996043, 46.3042124 ], + [ 7.1997124, 46.3041582 ], + [ 7.1998215, 46.3040757 ], + [ 7.1999486, 46.3039429 ], + [ 7.2000469, 46.303911 ], + [ 7.2002172, 46.3039142 ], + [ 7.2003722, 46.3039002 ], + [ 7.2005128, 46.3038465 ], + [ 7.2007237, 46.3038506 ], + [ 7.2010157, 46.3038619 ], + [ 7.2016007, 46.3038391 ], + [ 7.201679, 46.303914 ], + [ 7.2017159, 46.3040104 ], + [ 7.2017042, 46.3041003 ], + [ 7.2017537, 46.304276 ], + [ 7.2017734, 46.3044004 ], + [ 7.2018095, 46.3045081 ], + [ 7.2017995, 46.3045643 ], + [ 7.2017779, 46.3046879 ], + [ 7.2017562, 46.3048171 ], + [ 7.2016399, 46.3048881 ], + [ 7.2016849, 46.3049847 ], + [ 7.2018155, 46.3051789 ], + [ 7.2018984, 46.3053326 ], + [ 7.2019587, 46.3054522 ], + [ 7.2020605, 46.3055387 ], + [ 7.2021723, 46.3055802 ], + [ 7.2022416, 46.3056773 ], + [ 7.2023101, 46.3057914 ], + [ 7.2024191, 46.3059061 ], + [ 7.2025939, 46.3059996 ], + [ 7.2026326, 46.3060625 ], + [ 7.2026371, 46.3061526 ], + [ 7.2026416, 46.3062429 ], + [ 7.2027253, 46.3063854 ], + [ 7.2027785, 46.3064709 ], + [ 7.202901, 46.3066592 ], + [ 7.2029776, 46.3067678 ], + [ 7.2030379, 46.3068873 ], + [ 7.2030973, 46.3070293 ], + [ 7.2032136, 46.3071668 ], + [ 7.2033469, 46.3072876 ], + [ 7.2033749, 46.3073841 ], + [ 7.2034019, 46.3075198 ], + [ 7.203454, 46.307656 ], + [ 7.2035126, 46.3078037 ], + [ 7.2035954, 46.3079687 ], + [ 7.2037117, 46.3081062 ], + [ 7.2038053, 46.3082094 ], + [ 7.2038522, 46.3082555 ], + [ 7.2038585, 46.3083006 ], + [ 7.203808, 46.3083335 ], + [ 7.2036683, 46.3083703 ], + [ 7.2036503, 46.3084206 ], + [ 7.2037412, 46.3085858 ], + [ 7.2037836, 46.3087444 ], + [ 7.203779, 46.308857 ], + [ 7.2037276, 46.3089238 ], + [ 7.2036916, 46.3090075 ], + [ 7.2037284, 46.3091153 ], + [ 7.2036752, 46.3092214 ], + [ 7.2036139, 46.3093329 ], + [ 7.2036022, 46.3094116 ], + [ 7.2036219, 46.3095472 ], + [ 7.2036652, 46.3096664 ], + [ 7.2037625, 46.3098711 ], + [ 7.2038994, 46.3099132 ], + [ 7.2040995, 46.3099846 ], + [ 7.2041869, 46.310037 ], + [ 7.2042228999999995, 46.3101392 ], + [ 7.2042283, 46.3102182 ], + [ 7.2043373, 46.3103329 ], + [ 7.2044319, 46.310408 ], + [ 7.2045031999999996, 46.3104432 ], + [ 7.2045248, 46.3105169 ], + [ 7.2045932, 46.3106309 ], + [ 7.2046382, 46.3107332 ], + [ 7.2047464, 46.3108536 ], + [ 7.2048482, 46.310957 ], + [ 7.2049752, 46.3110327 ], + [ 7.2050699, 46.3111021 ], + [ 7.2051573, 46.3111544 ], + [ 7.2052934, 46.3112022 ], + [ 7.2054529, 46.3112728 ], + [ 7.2056277, 46.3113719 ], + [ 7.2058088, 46.3115163 ], + [ 7.2059576, 46.3116431 ], + [ 7.2060414, 46.3117743 ], + [ 7.206117, 46.3119335 ], + [ 7.2062251, 46.3120709 ], + [ 7.2063747, 46.3121752 ], + [ 7.206536, 46.3122177 ], + [ 7.2065811, 46.3122918 ], + [ 7.206793, 46.3122732 ], + [ 7.2070796, 46.3122167 ], + [ 7.2072562, 46.3122821 ], + [ 7.2074887, 46.3123541 ], + [ 7.2076978, 46.3124089 ], + [ 7.2078331, 46.3124734 ], + [ 7.2079863, 46.3124989 ], + [ 7.2082927, 46.3125554 ], + [ 7.2084541, 46.3125866 ], + [ 7.2087263, 46.3126876 ], + [ 7.209277, 46.3127263 ], + [ 7.2093537, 46.3128235 ], + [ 7.2094455, 46.3129775 ], + [ 7.2095852, 46.3131379 ], + [ 7.2097771999999996, 46.3132148 ], + [ 7.2100197, 46.3132307 ], + [ 7.2102784, 46.3132582 ], + [ 7.2105678, 46.3133313 ], + [ 7.2107533, 46.3133799 ], + [ 7.210902, 46.3135179 ], + [ 7.2110291, 46.313588 ], + [ 7.2112013, 46.3135518 ], + [ 7.2113456, 46.3135828 ], + [ 7.2114735, 46.3136471 ], + [ 7.2116745, 46.313696 ], + [ 7.2117701, 46.3137429 ], + [ 7.2117908, 46.3138223 ], + [ 7.2118791, 46.3138634 ], + [ 7.2120378, 46.3139397 ], + [ 7.2121928, 46.3139426 ], + [ 7.2123885, 46.3139068 ], + [ 7.2126093000000004, 46.313866 ], + [ 7.2127995, 46.3137963 ], + [ 7.2129654, 46.313698 ], + [ 7.2130366, 46.3135416 ], + [ 7.2130998, 46.3133794 ], + [ 7.2131746, 46.3133356 ], + [ 7.2132809, 46.3133207 ], + [ 7.213409, 46.3133627 ], + [ 7.2135856, 46.3134167 ], + [ 7.2137983, 46.3133925 ], + [ 7.2139119, 46.3133834 ], + [ 7.2140192, 46.3133516 ], + [ 7.2141508, 46.313309 ], + [ 7.2142554, 46.3133223 ], + [ 7.214395, 46.3132967 ], + [ 7.2144608, 46.3132755 ], + [ 7.2145276, 46.3132148 ], + [ 7.2146015, 46.3131936 ], + [ 7.2148377, 46.3131756 ], + [ 7.2150504, 46.3131457 ], + [ 7.2152875, 46.3131164 ], + [ 7.2155174, 46.3130363 ], + [ 7.2156598, 46.3129431 ], + [ 7.215814, 46.3129348 ], + [ 7.2160429, 46.3129109 ], + [ 7.2163432, 46.3128996 ], + [ 7.216702, 46.3128614 ], + [ 7.2169417, 46.3127758 ], + [ 7.2170599, 46.3126541 ], + [ 7.2172149, 46.3126456 ], + [ 7.2173862, 46.3126263 ], + [ 7.2175503, 46.3125844 ], + [ 7.217691, 46.3125025 ], + [ 7.2177856, 46.3123803 ], + [ 7.2177099, 46.3122436 ], + [ 7.2176351, 46.3120899 ], + [ 7.2178046, 46.3119072 ], + [ 7.2180526, 46.3117992 ], + [ 7.218222, 46.3118305 ], + [ 7.2183681, 46.3118333 ], + [ 7.2187251, 46.3118288 ], + [ 7.2190199, 46.3117724 ], + [ 7.2191443, 46.3117128 ], + [ 7.2192219, 46.3115902 ], + [ 7.2192263, 46.3114946 ], + [ 7.2193589, 46.3114294 ], + [ 7.220447, 46.3114218 ], + [ 7.2205994, 46.3114697 ], + [ 7.2207536, 46.3114726 ], + [ 7.2209662, 46.311454 ], + [ 7.2211799, 46.3113848 ], + [ 7.2213521, 46.3113374 ], + [ 7.221518, 46.3112447 ], + [ 7.2216289, 46.3111228 ], + [ 7.2217569, 46.3109674 ], + [ 7.2218931, 46.3108122 ], + [ 7.2220518, 46.3106912 ], + [ 7.2222267, 46.3105816 ], + [ 7.2224854, 46.3104231 ], + [ 7.2227342, 46.3102926 ], + [ 7.2229641, 46.3102237 ], + [ 7.2231868, 46.3101433 ], + [ 7.2234509, 46.3100356 ], + [ 7.2236691, 46.309865 ], + [ 7.2238774, 46.309728 ], + [ 7.2242667, 46.3097466 ], + [ 7.2245498, 46.3095716 ], + [ 7.224749, 46.3094457 ], + [ 7.2250519, 46.3091922 ], + [ 7.225279, 46.3089992 ], + [ 7.2253881, 46.3088941 ], + [ 7.2255972, 46.3087516 ], + [ 7.2258315, 46.3085756 ], + [ 7.2259685, 46.3084035 ], + [ 7.2261516, 46.3082773 ], + [ 7.2263435, 46.3081626 ], + [ 7.2265084, 46.3081037 ], + [ 7.2266742, 46.3080167 ], + [ 7.2268166, 46.3079066 ], + [ 7.2272214, 46.3077226 ], + [ 7.2276468, 46.3076461 ], + [ 7.2279866, 46.3076694 ], + [ 7.2280226, 46.3075799 ], + [ 7.2280992, 46.3074912 ], + [ 7.2282551, 46.3074659 ], + [ 7.2285237, 46.3074371 ], + [ 7.2288725, 46.3074494 ], + [ 7.2292852, 46.3074966 ], + [ 7.229644, 46.3074413 ], + [ 7.2298017, 46.307371 ], + [ 7.2300306, 46.3073246 ], + [ 7.2302181, 46.3073112 ], + [ 7.2304154, 46.307253 ], + [ 7.2305894, 46.3071547 ], + [ 7.2307408, 46.307028 ], + [ 7.2309382, 46.3069584 ], + [ 7.2312446, 46.3068177 ], + [ 7.2316356, 46.3065827 ], + [ 7.2318079, 46.3069465 ], + [ 7.2318961999999996, 46.3071681 ], + [ 7.2320306, 46.3072552 ], + [ 7.2321675, 46.3072859 ], + [ 7.2323279, 46.3073509 ], + [ 7.2323983, 46.3074086 ], + [ 7.2324731, 46.3075622 ], + [ 7.232483, 46.3077371 ], + [ 7.2326444, 46.3077513 ], + [ 7.2330003, 46.3077975 ], + [ 7.2332843, 46.3077972 ], + [ 7.2336791, 46.3078778 ], + [ 7.2339621, 46.307917 ], + [ 7.2342343, 46.3080067 ], + [ 7.2343217, 46.3080647 ], + [ 7.2344389, 46.3081683 ], + [ 7.2345651, 46.3082665 ], + [ 7.2345039, 46.3083725 ], + [ 7.2344669, 46.3084901 ], + [ 7.2345183, 46.3086264 ], + [ 7.234813, 46.3085754 ], + [ 7.2350419, 46.3085347 ], + [ 7.2352448, 46.3085329 ], + [ 7.23548, 46.3085429 ], + [ 7.2357477, 46.3085479 ], + [ 7.2359749, 46.3085466 ], + [ 7.2362903, 46.308592 ], + [ 7.2365867999999995, 46.3086877 ], + [ 7.2367609, 46.3087924 ], + [ 7.2369239, 46.3087898 ], + [ 7.2371186, 46.3087935 ], + [ 7.2373304, 46.3087805 ], + [ 7.2376477, 46.308764 ], + [ 7.2378839, 46.3087347 ], + [ 7.2380696, 46.3087662 ], + [ 7.2382795, 46.3088096 ], + [ 7.238568, 46.308894 ], + [ 7.2387456, 46.3089311 ], + [ 7.2390466, 46.3089086 ], + [ 7.2392998, 46.3088796 ], + [ 7.2395045, 46.308832699999996 ], + [ 7.2396531, 46.3087791 ], + [ 7.2397956, 46.3086578 ], + [ 7.2399947, 46.308543 ], + [ 7.2401767, 46.3084675 ], + [ 7.2403742, 46.3083924 ], + [ 7.2405292, 46.3083728 ], + [ 7.2406949, 46.3083026 ], + [ 7.2408536, 46.3081872 ], + [ 7.2417701, 46.3075958 ], + [ 7.2420602, 46.3074547 ], + [ 7.2422134, 46.3074799 ], + [ 7.2423487, 46.3075502 ], + [ 7.2425236, 46.3076324 ], + [ 7.2426768, 46.3076634 ], + [ 7.2428075, 46.3076377 ], + [ 7.2429003, 46.3075605 ], + [ 7.2429841, 46.3074832 ], + [ 7.2430705, 46.3073665 ], + [ 7.2432309, 46.3072116 ], + [ 7.2434472, 46.3070691 ], + [ 7.2436139, 46.3069596 ], + [ 7.2437536, 46.3069283 ], + [ 7.2439753, 46.3068649 ], + [ 7.2443124, 46.3067585 ], + [ 7.2447657, 46.3065866 ], + [ 7.2449315, 46.3064939 ], + [ 7.2450747, 46.306367 ], + [ 7.2461454, 46.3061952 ], + [ 7.2462518, 46.3063833 ], + [ 7.2463374, 46.3064751 ], + [ 7.246497, 46.3065513 ], + [ 7.2466908, 46.3065831 ], + [ 7.2469179, 46.306576 ], + [ 7.2471595, 46.3066313 ], + [ 7.2478166, 46.3068634 ], + [ 7.2484422, 46.3070554 ], + [ 7.2486892, 46.3071728 ], + [ 7.2487983, 46.3072875 ], + [ 7.2489164, 46.3073742 ], + [ 7.2491075, 46.3074793 ], + [ 7.2493068, 46.3075675 ], + [ 7.2496178, 46.3077255 ], + [ 7.249936, 46.3078836 ], + [ 7.2500677, 46.3080439 ], + [ 7.2501280999999995, 46.3081746 ], + [ 7.2501418, 46.308434 ], + [ 7.25004, 46.308759 ], + [ 7.2510308, 46.3091777 ], + [ 7.2512308, 46.3090405 ], + [ 7.251348, 46.3089413 ], + [ 7.2514885, 46.3088819 ], + [ 7.2516435999999995, 46.3088566 ], + [ 7.2517986, 46.3088482 ], + [ 7.2519707, 46.308812 ], + [ 7.2522014, 46.3087318 ], + [ 7.2525268, 46.3086984 ], + [ 7.2528141999999995, 46.3086304 ], + [ 7.2534111, 46.3089347 ], + [ 7.2547576, 46.3087736 ], + [ 7.255165, 46.3087418 ], + [ 7.2554246, 46.3087466 ], + [ 7.2555841, 46.3088228 ], + [ 7.2558709, 46.3089578 ], + [ 7.2562621, 46.3091342 ], + [ 7.2565903, 46.309253 ], + [ 7.2569274, 46.3091353 ], + [ 7.2572554, 46.3090568 ], + [ 7.2574761, 46.3090328 ], + [ 7.2576934, 46.3090762 ], + [ 7.2578855, 46.3091474 ], + [ 7.2581992, 46.3092265 ], + [ 7.2584877, 46.3093164 ], + [ 7.258915, 46.309392 ], + [ 7.2592142, 46.3094426 ], + [ 7.2594648, 46.3094586 ], + [ 7.2597812, 46.3094644 ], + [ 7.2599605, 46.3094565 ], + [ 7.2603581, 46.3094526 ], + [ 7.260522, 46.3094331 ], + [ 7.2607466, 46.3094993 ], + [ 7.2610368, 46.309561 ], + [ 7.2614073, 46.3096354 ], + [ 7.2618039, 46.309671 ], + [ 7.262078, 46.3097156 ], + [ 7.262206, 46.3097743 ], + [ 7.2623809, 46.309862 ], + [ 7.2625478, 46.3099496 ], + [ 7.2627651, 46.3099988 ], + [ 7.2628931, 46.3100463 ], + [ 7.2632149, 46.3101367 ], + [ 7.2635197, 46.3102213 ], + [ 7.263754, 46.3102594 ], + [ 7.2640677, 46.3103385 ], + [ 7.2642688, 46.3103817 ], + [ 7.2644924, 46.3104873 ], + [ 7.2645944, 46.3105681 ], + [ 7.2648495, 46.310691 ], + [ 7.2650497, 46.3107737 ], + [ 7.2653868, 46.3108758 ], + [ 7.2656285, 46.3109198 ], + [ 7.2658547, 46.3109576 ], + [ 7.2660153, 46.3109945 ], + [ 7.2661018, 46.3110806 ], + [ 7.2663074, 46.3112196 ], + [ 7.2665537, 46.3113538 ], + [ 7.2669584, 46.3113896 ], + [ 7.2671099, 46.3114599 ], + [ 7.2673623, 46.3114421 ], + [ 7.2674803, 46.3113371 ], + [ 7.2675577, 46.3112146 ], + [ 7.2676505, 46.3111374 ], + [ 7.2677892, 46.311123 ], + [ 7.2679352999999995, 46.3111315 ], + [ 7.2681615, 46.3111525 ], + [ 7.2684933, 46.3111755 ], + [ 7.2688025, 46.3111699 ], + [ 7.269136, 46.3111536 ], + [ 7.2694848, 46.31116 ], + [ 7.2700292, 46.3111644 ], + [ 7.2704935, 46.3111167 ], + [ 7.2707774, 46.3111218 ], + [ 7.2709063, 46.3111637 ], + [ 7.2710893, 46.3112628 ], + [ 7.2713075, 46.3112894 ], + [ 7.2715329, 46.3113387 ], + [ 7.271816, 46.3113552 ], + [ 7.272228, 46.3114134 ], + [ 7.272538, 46.311391 ], + [ 7.2731996, 46.3112848 ], + [ 7.2735042, 46.3111722 ], + [ 7.2737375, 46.3110186 ], + [ 7.2739149, 46.3108528 ], + [ 7.2740193, 46.3106744 ], + [ 7.2741625, 46.3105306 ], + [ 7.2743147, 46.3103811 ], + [ 7.2745642, 46.3102336 ], + [ 7.2747931, 46.310187 ], + [ 7.2749913, 46.3101175 ], + [ 7.2751589, 46.3099741 ], + [ 7.2753435, 46.309814 ], + [ 7.2754893, 46.3096307 ], + [ 7.2757901, 46.3094108 ], + [ 7.2760406, 46.3092238 ], + [ 7.276309, 46.3090033 ], + [ 7.2766765, 46.3087396 ], + [ 7.2767078, 46.3085598 ], + [ 7.2767131, 46.3084359 ], + [ 7.2767445, 46.3082337 ], + [ 7.2767263, 46.3080869 ], + [ 7.2767153, 46.3079571 ], + [ 7.2766963, 46.3078101 ], + [ 7.2766618, 46.3076573 ], + [ 7.2766996, 46.3075059 ], + [ 7.2768129, 46.307322 ], + [ 7.2769895, 46.3071505 ], + [ 7.2770408, 46.3070951 ], + [ 7.2770785, 46.3069605 ], + [ 7.2771261, 46.3067754 ], + [ 7.2771313, 46.3066459 ], + [ 7.277152, 46.3065223 ], + [ 7.2772563, 46.3063551 ], + [ 7.2773581, 46.3062443 ], + [ 7.277494, 46.3060834 ], + [ 7.2776769, 46.305974 ], + [ 7.2778346, 46.3058755 ], + [ 7.2779435, 46.3057986 ], + [ 7.2780218, 46.3056704 ], + [ 7.2780676, 46.3055304 ], + [ 7.278163, 46.305363 ], + [ 7.2782349, 46.3051953 ], + [ 7.2783132, 46.3050615 ], + [ 7.278423, 46.3049564 ], + [ 7.2784761, 46.3048334 ], + [ 7.2785399, 46.3046486 ], + [ 7.278692, 46.3045105 ], + [ 7.278664, 46.3043747 ], + [ 7.2786603, 46.304262 ], + [ 7.2786349, 46.3040868 ], + [ 7.2786987, 46.3039188 ], + [ 7.2787544, 46.3037339 ], + [ 7.2788579, 46.3035668 ], + [ 7.2789208, 46.3034046 ], + [ 7.2790414, 46.3032433 ], + [ 7.2791999, 46.3031278 ], + [ 7.2794007, 46.3029794 ], + [ 7.2797096, 46.3027653 ], + [ 7.2798798, 46.3025487 ], + [ 7.2800218, 46.3022412 ], + [ 7.279919, 46.3021717 ], + [ 7.2798098, 46.302057 ], + [ 7.2797169, 46.301937 ], + [ 7.279522, 46.301724899999996 ], + [ 7.2793091, 46.3015632 ], + [ 7.2791586, 46.3014589 ], + [ 7.2790178, 46.3013268 ], + [ 7.2789283, 46.3011279 ], + [ 7.2786811, 46.3007964 ], + [ 7.2779001, 46.3002072 ], + [ 7.2779549, 46.3000392 ], + [ 7.2780503, 46.2998832 ], + [ 7.2780321, 46.2997363 ], + [ 7.277894, 46.299519599999996 ], + [ 7.2778136, 46.2992983 ], + [ 7.2774915, 46.2990218 ], + [ 7.2771029, 46.2987724 ], + [ 7.2768991, 46.2985883 ], + [ 7.2767124, 46.2983764 ], + [ 7.2765717, 46.2982329 ], + [ 7.2765048, 46.2980739 ], + [ 7.2763983, 46.2978972 ], + [ 7.2763793, 46.2977446 ], + [ 7.2762809, 46.2975738 ], + [ 7.2761555, 46.2974474 ], + [ 7.2760383, 46.297327 ], + [ 7.2759048, 46.2972287 ], + [ 7.275747, 46.2970962 ], + [ 7.2756639, 46.2969481 ], + [ 7.2755565, 46.2967883 ], + [ 7.2754871, 46.2966912 ], + [ 7.2752499, 46.2965234 ], + [ 7.2749876, 46.2963664 ], + [ 7.2748982, 46.2961731 ], + [ 7.2747763, 46.295968 ], + [ 7.2746941, 46.2957862 ], + [ 7.2746047, 46.2955815 ], + [ 7.2744685, 46.2953255 ], + [ 7.274316, 46.2950577 ], + [ 7.2741617, 46.2948521 ], + [ 7.2740138, 46.294686 ], + [ 7.2738352, 46.2944741 ], + [ 7.2736305, 46.2943237 ], + [ 7.2734664, 46.294146 ], + [ 7.2733239, 46.2940701 ], + [ 7.2732437, 46.2940236 ], + [ 7.27314, 46.2939879 ], + [ 7.2729625, 46.2939676 ], + [ 7.2727606, 46.2939246 ], + [ 7.2726011, 46.293854 ], + [ 7.2724198, 46.2937153 ], + [ 7.2722855, 46.2936114 ], + [ 7.2721447999999995, 46.2934791 ], + [ 7.2719618, 46.2933856 ], + [ 7.2717301, 46.2932968 ], + [ 7.271338, 46.2931487 ], + [ 7.2709523, 46.2930344 ], + [ 7.2706964, 46.2929339 ], + [ 7.2703692, 46.2927926 ], + [ 7.269978, 46.292622 ], + [ 7.2696725, 46.292543 ], + [ 7.2693705, 46.2923796 ], + [ 7.2691324, 46.2922456 ], + [ 7.2688863, 46.2921058 ], + [ 7.2687178, 46.292052 ], + [ 7.2685177, 46.2919806 ], + [ 7.2681815, 46.2918617 ], + [ 7.2679238, 46.2918006 ], + [ 7.2676038, 46.2916876 ], + [ 7.2672775, 46.2915069 ], + [ 7.2670494, 46.2913336 ], + [ 7.2668781, 46.2911276 ], + [ 7.2666923, 46.2909042 ], + [ 7.2666192, 46.2907056 ], + [ 7.2665848, 46.2905303 ], + [ 7.2665811, 46.2904288 ], + [ 7.26658, 46.2902483 ], + [ 7.2665674, 46.2901468 ], + [ 7.2665068999999995, 46.2900274 ], + [ 7.266423, 46.2898962 ], + [ 7.2662742, 46.2897526 ], + [ 7.266157, 46.289632 ], + [ 7.2660163, 46.2894998 ], + [ 7.265908, 46.2893682 ], + [ 7.2658178, 46.2891749 ], + [ 7.2657347, 46.2890156 ], + [ 7.2655761, 46.2889168 ], + [ 7.265421, 46.2887281 ], + [ 7.2652794, 46.2886182 ], + [ 7.2651233, 46.2884633 ], + [ 7.265016, 46.2882867 ], + [ 7.2649573, 46.288122 ], + [ 7.2649635, 46.2879701 ], + [ 7.2650174, 46.2878471 ], + [ 7.2650704, 46.2877297 ], + [ 7.2652055, 46.2875801 ], + [ 7.2651775, 46.2874725 ], + [ 7.2651341, 46.2873364 ], + [ 7.2650898999999995, 46.2872174 ], + [ 7.2650051, 46.287103 ], + [ 7.2648166, 46.286953 ], + [ 7.2646507, 46.2868204 ], + [ 7.2644577, 46.2865689 ], + [ 7.2643341, 46.2864087 ], + [ 7.2642079, 46.2863163 ], + [ 7.2639861, 46.2861769 ], + [ 7.2638258, 46.286112 ], + [ 7.2637508, 46.2859697 ], + [ 7.263693, 46.2857827 ], + [ 7.2636505, 46.2856128 ], + [ 7.2636098, 46.2854092 ], + [ 7.2635673, 46.2852619 ], + [ 7.2638247, 46.284894800000004 ], + [ 7.2640299, 46.2846281 ], + [ 7.2641999, 46.2844339 ], + [ 7.2643368, 46.2842505 ], + [ 7.264398, 46.2841277 ], + [ 7.2644843, 46.2840111 ], + [ 7.2645779, 46.2839 ], + [ 7.2647706, 46.2837289 ], + [ 7.264947, 46.28358 ], + [ 7.2650407, 46.2834634 ], + [ 7.2651531, 46.2832964 ], + [ 7.265225, 46.2831174 ], + [ 7.2653149, 46.2828824 ], + [ 7.2654615, 46.2826654 ], + [ 7.2656001, 46.2824425 ], + [ 7.2657809, 46.282181 ], + [ 7.265914, 46.2818904 ], + [ 7.2659886, 46.2816382 ], + [ 7.2660966, 46.2813753 ], + [ 7.2661315, 46.2810999 ], + [ 7.2662124, 46.2808985 ], + [ 7.2663601, 46.2806364 ], + [ 7.2664482, 46.2804633 ], + [ 7.2664967, 46.2802726 ], + [ 7.2665182999999995, 46.2801209 ], + [ 7.2664668, 46.279979 ], + [ 7.2663991, 46.2798594 ], + [ 7.2662828, 46.2797164 ], + [ 7.266135, 46.279539 ], + [ 7.2659718, 46.2793612 ], + [ 7.2658725, 46.2792071 ], + [ 7.2657841, 46.2789802 ], + [ 7.26572, 46.2787423 ], + [ 7.2656279, 46.2783969 ], + [ 7.2655808, 46.2781536 ], + [ 7.2655501000000005, 46.2778882 ], + [ 7.2655373, 46.2775949 ], + [ 7.2655687, 46.2774097 ], + [ 7.265546, 46.2771612 ], + [ 7.2655702, 46.2769532 ], + [ 7.2655007, 46.2768674 ], + [ 7.2654484, 46.2767537 ], + [ 7.2653338, 46.2765825 ], + [ 7.2652842, 46.27639 ], + [ 7.2652832, 46.2761984 ], + [ 7.2652776, 46.2759278 ], + [ 7.2652711, 46.275691 ], + [ 7.2652061, 46.2754869 ], + [ 7.265115, 46.2753217 ], + [ 7.2649843, 46.2751221 ], + [ 7.2648245, 46.2746571 ], + [ 7.2647731, 46.2745039 ], + [ 7.2648036, 46.2743637 ], + [ 7.264826, 46.2741893 ], + [ 7.2648403, 46.2740431 ], + [ 7.2647898, 46.2738731 ], + [ 7.264723, 46.2737197 ], + [ 7.2646166, 46.2735262 ], + [ 7.2645443, 46.273305 ], + [ 7.2644739, 46.2730219 ], + [ 7.2644295, 46.2727055 ], + [ 7.2642977, 46.2723423 ], + [ 7.2642273, 46.272065 ], + [ 7.2641722, 46.2718046 ], + [ 7.2640971, 46.2714425 ], + [ 7.2639968, 46.2711138 ], + [ 7.2639617, 46.2709609 ], + [ 7.263921, 46.2707574 ], + [ 7.2639163, 46.2704586 ], + [ 7.263952, 46.2701775 ], + [ 7.2640376, 46.2700551 ], + [ 7.2641149, 46.2699494 ], + [ 7.2642085, 46.2698328 ], + [ 7.2642876, 46.2696877 ], + [ 7.2643379, 46.2694237 ], + [ 7.2644584, 46.2692626 ], + [ 7.2646618, 46.2690352 ], + [ 7.2648986, 46.2687804 ], + [ 7.2653286999999995, 46.2683712 ], + [ 7.2652808, 46.2681449 ], + [ 7.2652663, 46.2678798 ], + [ 7.2652931, 46.2676041 ], + [ 7.2653126, 46.2673283 ], + [ 7.2652648, 46.2670908 ], + [ 7.2653294, 46.2668947 ], + [ 7.2653941, 46.2666817 ], + [ 7.2654651, 46.2665365 ], + [ 7.2655668, 46.2664201 ], + [ 7.2656063, 46.2662461 ], + [ 7.2656116, 46.2661109 ], + [ 7.2656422, 46.2659368 ], + [ 7.2657176, 46.2656789 ], + [ 7.2657679, 46.265415 ], + [ 7.2658621, 46.2650955 ], + [ 7.2659286, 46.2648318 ], + [ 7.2660084, 46.2644612 ], + [ 7.2660381, 46.2643097 ], + [ 7.2659893, 46.2641115 ], + [ 7.2659153, 46.2639186 ], + [ 7.2658647, 46.2637711 ], + [ 7.2657907999999995, 46.2635725 ], + [ 7.2656933, 46.2633734 ], + [ 7.2655554, 46.2631568 ], + [ 7.2654354, 46.2629178 ], + [ 7.2653533, 46.262719 ], + [ 7.2652875, 46.2625374 ], + [ 7.2652702, 46.2623681 ], + [ 7.2652286, 46.2621869 ], + [ 7.2651871, 46.261989 ], + [ 7.2651392, 46.2617626 ], + [ 7.2650137, 46.261456 ], + [ 7.2649343, 46.2612008 ], + [ 7.2648548, 46.2609458 ], + [ 7.2647502, 46.2607015 ], + [ 7.264559, 46.2604219 ], + [ 7.2643436, 46.2601135 ], + [ 7.2640804, 46.2597761 ], + [ 7.2638487, 46.2594901 ], + [ 7.2638378, 46.2593546 ], + [ 7.2638206, 46.2591626 ], + [ 7.2638025, 46.2590045 ], + [ 7.2638194, 46.2587851 ], + [ 7.2638409, 46.2586389 ], + [ 7.2639128, 46.2584655 ], + [ 7.2640099, 46.2582701 ], + [ 7.2641134, 46.2581141 ], + [ 7.264197, 46.2578227 ], + [ 7.2643391, 46.256467 ], + [ 7.2643884, 46.2562538 ], + [ 7.2643263000000005, 46.2561681 ], + [ 7.2642488, 46.2560765 ], + [ 7.2641261, 46.2559053 ], + [ 7.2640414, 46.255774 ], + [ 7.2639981, 46.2556549 ], + [ 7.2639718, 46.2554965 ], + [ 7.2641626, 46.2541362 ], + [ 7.2641399, 46.2538709 ], + [ 7.2640543, 46.2537792 ], + [ 7.2639669, 46.2537268 ], + [ 7.2638237, 46.2536565 ], + [ 7.2636778, 46.2536538 ], + [ 7.2634679, 46.2536387 ], + [ 7.2633797, 46.2536033 ], + [ 7.2632932, 46.253534 ], + [ 7.2631563, 46.2535146 ], + [ 7.2630582, 46.2535297 ], + [ 7.2629123, 46.2535269 ], + [ 7.2627268, 46.2534897 ], + [ 7.2626079, 46.2534199 ], + [ 7.2624899, 46.2533275 ], + [ 7.2624376, 46.2532082 ], + [ 7.262378, 46.2530774 ], + [ 7.2623419, 46.2529753 ], + [ 7.2623328, 46.2527836 ], + [ 7.2623074, 46.2526028 ], + [ 7.2622667, 46.2524047 ], + [ 7.262255, 46.2522749 ], + [ 7.2622044, 46.2521218 ], + [ 7.2621125, 46.2519793 ], + [ 7.2620061, 46.2518025 ], + [ 7.2619142, 46.2516599 ], + [ 7.2617519, 46.251454 ], + [ 7.2616762, 46.2513117 ], + [ 7.2615681, 46.2511632 ], + [ 7.2615166, 46.2510383 ], + [ 7.2614085, 46.2508841 ], + [ 7.261276, 46.250752 ], + [ 7.2611112, 46.2506024 ], + [ 7.2609408, 46.2504133 ], + [ 7.2608003, 46.2502642 ], + [ 7.2605597, 46.2499835 ], + [ 7.2603786, 46.2498337 ], + [ 7.2602029, 46.2497797 ], + [ 7.2600481, 46.2497937 ], + [ 7.2598878, 46.2497399 ], + [ 7.2597599, 46.2496869 ], + [ 7.2596662, 46.2495894 ], + [ 7.2594797, 46.249383 ], + [ 7.2593157, 46.2492166 ], + [ 7.2592210999999995, 46.2491471 ], + [ 7.2591743, 46.2491012 ], + [ 7.258958, 46.2488267 ], + [ 7.2587489, 46.2485804 ], + [ 7.2586292, 46.2485219 ], + [ 7.2584842, 46.2484967 ], + [ 7.2583149, 46.2484766 ], + [ 7.2582113, 46.2484183 ], + [ 7.25806, 46.2483535 ], + [ 7.2578943, 46.2482208 ], + [ 7.2576412, 46.2480583 ], + [ 7.2564727, 46.2470334 ], + [ 7.255846, 46.2468865 ], + [ 7.2556001, 46.2467466 ], + [ 7.2553516, 46.2468772 ], + [ 7.255114, 46.2469348 ], + [ 7.2547692, 46.2470412 ], + [ 7.2544227, 46.2471812 ], + [ 7.2540987, 46.2473725 ], + [ 7.2539888999999995, 46.2474944 ], + [ 7.2539107, 46.2476225 ], + [ 7.2539054, 46.2477521 ], + [ 7.2539081, 46.2478987 ], + [ 7.2539164, 46.2480905 ], + [ 7.2539280999999995, 46.2482259 ], + [ 7.2538751, 46.2483207 ], + [ 7.2537356, 46.2483576 ], + [ 7.253605, 46.2483833 ], + [ 7.253506, 46.248421 ], + [ 7.2534206, 46.2485321 ], + [ 7.2533441, 46.2486264 ], + [ 7.2532181, 46.2487425 ], + [ 7.2530588, 46.2488748 ], + [ 7.2529418, 46.2489571 ], + [ 7.2528185, 46.2489943 ], + [ 7.2526384, 46.2490361 ], + [ 7.2524665, 46.2490779 ], + [ 7.2522531, 46.2491472 ], + [ 7.2520739, 46.249172 ], + [ 7.2518803, 46.2491458 ], + [ 7.2517047, 46.2490637 ], + [ 7.2515444, 46.2490044 ], + [ 7.2513364, 46.2489385 ], + [ 7.2512041, 46.2490036 ], + [ 7.249402, 46.2482148 ], + [ 7.249583, 46.2481337 ], + [ 7.2497161, 46.2480629 ], + [ 7.2498088, 46.2479745 ], + [ 7.2499843, 46.2478425 ], + [ 7.2500924, 46.2477599 ], + [ 7.250122, 46.2476365 ], + [ 7.2502092, 46.2474803 ], + [ 7.250229, 46.2473849 ], + [ 7.2502172, 46.2472832 ], + [ 7.2501713, 46.2472035 ], + [ 7.2501262, 46.2471124 ], + [ 7.2500902, 46.2469934 ], + [ 7.2500865, 46.2468807 ], + [ 7.2500738, 46.2467958 ], + [ 7.2500189, 46.2467441 ], + [ 7.2499171, 46.2466408 ], + [ 7.2497928, 46.2465032 ], + [ 7.2497414, 46.2463669 ], + [ 7.2497719, 46.2462097 ], + [ 7.2498106, 46.2460583 ], + [ 7.2497942, 46.2458551 ], + [ 7.2497356, 46.2457018 ], + [ 7.2496383, 46.2454858 ], + [ 7.2496994, 46.2451658 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "JBG0018", + "country" : "CHE", + "name" : [ + { + "text" : "Eidgenössisches Jagdbanngebiet Haut de Cry/Derborence", + "lang" : "de-CH" + }, + { + "text" : "District franc fédéral Haut de Cry/Derborence", + "lang" : "fr-CH" + }, + { + "text" : "Bandita federale di caccia Haut de Cry/Derborence", + "lang" : "it-CH" + }, + { + "text" : "Federal Game Reserve Haut de Cry/Derborence", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6347435, 47.3814471 ], + [ 7.6350563000000005, 47.3814938 ], + [ 7.6352212999999995, 47.3815128 ], + [ 7.6354503000000005, 47.3815525 ], + [ 7.6357313, 47.3815242 ], + [ 7.6358612, 47.3815251 ], + [ 7.6360325, 47.3815117 ], + [ 7.6362809, 47.3814759 ], + [ 7.6365244, 47.3814279 ], + [ 7.637035, 47.381335 ], + [ 7.637311, 47.3813538 ], + [ 7.6375256, 47.3813494 ], + [ 7.6380278, 47.3813581 ], + [ 7.6383795, 47.3814036 ], + [ 7.6387097, 47.3815476 ], + [ 7.6391477, 47.3815998 ], + [ 7.6396785, 47.3816049 ], + [ 7.6398931, 47.3815892 ], + [ 7.6402906, 47.3815921 ], + [ 7.6406486000000005, 47.38163 ], + [ 7.6407539, 47.3816309 ], + [ 7.6409701, 47.3816319 ], + [ 7.6412368, 47.381625 ], + [ 7.6416311, 47.3816011 ], + [ 7.6418666, 47.3815959 ], + [ 7.642414, 47.381574 ], + [ 7.6428049, 47.3815494 ], + [ 7.6432982, 47.3814946 ], + [ 7.6441729, 47.3814326 ], + [ 7.644404, 47.38142 ], + [ 7.6448658, 47.3813447 ], + [ 7.6456134, 47.3811841 ], + [ 7.6462278, 47.3809937 ], + [ 7.6465506, 47.3808596 ], + [ 7.6467989, 47.3807739 ], + [ 7.6470093, 47.380721199999996 ], + [ 7.6471824, 47.3806907 ], + [ 7.647407, 47.3806662 ], + [ 7.6477601, 47.3803972 ], + [ 7.6480668, 47.3804358 ], + [ 7.6482323999999995, 47.3804849 ], + [ 7.6483663, 47.3809047 ], + [ 7.6481852, 47.3810765 ], + [ 7.6483467, 47.3812482 ], + [ 7.6486411, 47.3812957 ], + [ 7.6491065, 47.3812527 ], + [ 7.6494202, 47.3813083 ], + [ 7.6497922, 47.381386 ], + [ 7.6501608, 47.3814794 ], + [ 7.6506235, 47.3813915 ], + [ 7.6510995, 47.3812487 ], + [ 7.6512017, 47.3811366 ], + [ 7.6513216, 47.3811575 ], + [ 7.6517772, 47.381258 ], + [ 7.6520835, 47.3813257 ], + [ 7.6522056, 47.3817669 ], + [ 7.652661, 47.3819711 ], + [ 7.6526604, 47.3822327 ], + [ 7.6532355, 47.3824462 ], + [ 7.6536813, 47.3826039 ], + [ 7.6543469, 47.3827602 ], + [ 7.6546714, 47.3827833 ], + [ 7.6551393, 47.3827376 ], + [ 7.6563584, 47.3827395 ], + [ 7.6569339, 47.3828114 ], + [ 7.6584684, 47.3830135 ], + [ 7.6594575, 47.3831225 ], + [ 7.6609126, 47.3832512 ], + [ 7.6610814, 47.3833668 ], + [ 7.6616408, 47.3835108 ], + [ 7.6623733, 47.3837099 ], + [ 7.6624202, 47.3836871 ], + [ 7.6619378000000005, 47.3834732 ], + [ 7.661259, 47.3831746 ], + [ 7.6613809, 47.3830957 ], + [ 7.6614264, 47.3830782 ], + [ 7.6622514, 47.3828506 ], + [ 7.6625219, 47.3831514 ], + [ 7.6625748, 47.3831374 ], + [ 7.6630874, 47.3827742 ], + [ 7.6630926, 47.3827389 ], + [ 7.6631151, 47.3825877 ], + [ 7.6631606, 47.3823066 ], + [ 7.6631921, 47.3821459 ], + [ 7.6632996, 47.3816317 ], + [ 7.6633239, 47.3814417 ], + [ 7.6635749, 47.3811123 ], + [ 7.663196, 47.3809514 ], + [ 7.6626768, 47.3809807 ], + [ 7.6624332, 47.3807791 ], + [ 7.6619873, 47.3805757 ], + [ 7.6614884, 47.3805886 ], + [ 7.6606467, 47.3805411 ], + [ 7.6600738, 47.3803705 ], + [ 7.6600967, 47.3802503 ], + [ 7.6593124, 47.3801953 ], + [ 7.6591544, 47.380425 ], + [ 7.6589960999999995, 47.3812901 ], + [ 7.6589948, 47.3813451 ], + [ 7.6596132, 47.3816917 ], + [ 7.6595847, 47.3817081 ], + [ 7.6594808, 47.381702 ], + [ 7.6594211, 47.3816931 ], + [ 7.6593739, 47.3816825 ], + [ 7.6593195, 47.3816678 ], + [ 7.6591963, 47.3816238 ], + [ 7.6591561, 47.3816147 ], + [ 7.659054, 47.3815955 ], + [ 7.6589731, 47.3815747 ], + [ 7.6588129, 47.3814722 ], + [ 7.6585906, 47.3812978 ], + [ 7.6584324, 47.3811849 ], + [ 7.6583026, 47.3811119 ], + [ 7.6581723, 47.3810485 ], + [ 7.6578424, 47.3809401 ], + [ 7.6573684, 47.3807916 ], + [ 7.6571296, 47.3807248 ], + [ 7.6569424, 47.380675600000004 ], + [ 7.6567967, 47.3806485 ], + [ 7.6566451, 47.3806319 ], + [ 7.6552051, 47.3805293 ], + [ 7.6551574, 47.380167900000004 ], + [ 7.6548973, 47.380167900000004 ], + [ 7.6541568, 47.3801756 ], + [ 7.6533923, 47.3801642 ], + [ 7.6530815, 47.3801672 ], + [ 7.6530278, 47.3801655 ], + [ 7.6529689, 47.3801586 ], + [ 7.6529039, 47.3801457 ], + [ 7.6527323, 47.3801096 ], + [ 7.6525127, 47.3800723 ], + [ 7.6523468999999995, 47.3800473 ], + [ 7.6519814, 47.3799894 ], + [ 7.6518748, 47.3799712 ], + [ 7.6517868, 47.3799552 ], + [ 7.6517136, 47.3799376 ], + [ 7.6516236, 47.3799084 ], + [ 7.6514975, 47.3798753 ], + [ 7.6513257, 47.3798326 ], + [ 7.6511852000000005, 47.3798006 ], + [ 7.6511199, 47.3797887 ], + [ 7.6509405, 47.3800955 ], + [ 7.6500905, 47.3799551 ], + [ 7.6499233, 47.3799226 ], + [ 7.6498753, 47.3798981 ], + [ 7.6498576, 47.3798737 ], + [ 7.6498162, 47.3798625 ], + [ 7.649726, 47.380044 ], + [ 7.6490758, 47.3799406 ], + [ 7.6484321, 47.3798358 ], + [ 7.647861, 47.3797661 ], + [ 7.6476068999999995, 47.3797542 ], + [ 7.6471204, 47.3799879 ], + [ 7.6471042, 47.3799814 ], + [ 7.647045, 47.3799621 ], + [ 7.6469976, 47.3799389 ], + [ 7.6469601, 47.3799151 ], + [ 7.6469185, 47.3798841 ], + [ 7.6468479, 47.3798167 ], + [ 7.6467868, 47.3797671 ], + [ 7.6467278, 47.3797399 ], + [ 7.6466712, 47.3797244 ], + [ 7.6466332, 47.3797087 ], + [ 7.6466096, 47.3796923 ], + [ 7.646597, 47.3796725 ], + [ 7.6465711, 47.3795844 ], + [ 7.6464718, 47.3795281 ], + [ 7.6464503, 47.3794864 ], + [ 7.6464316, 47.3794556 ], + [ 7.6464094, 47.3794382 ], + [ 7.6463371, 47.3794015 ], + [ 7.6463117, 47.379394 ], + [ 7.6460558, 47.3794278 ], + [ 7.6458765, 47.3793975 ], + [ 7.6457279, 47.3793399 ], + [ 7.6455849, 47.3793389 ], + [ 7.6455098, 47.3792971 ], + [ 7.6454372, 47.3792677 ], + [ 7.6453779, 47.3792193 ], + [ 7.6452883, 47.3791094 ], + [ 7.6452308, 47.3790731 ], + [ 7.6451266, 47.3790752 ], + [ 7.644916, 47.3789777 ], + [ 7.6448723, 47.3789862 ], + [ 7.6441663, 47.3790595 ], + [ 7.6437415, 47.3791093 ], + [ 7.6434297, 47.3791127 ], + [ 7.6430471, 47.3791328 ], + [ 7.6427816, 47.3791471 ], + [ 7.6423526, 47.379147 ], + [ 7.6420789, 47.3791511 ], + [ 7.6417275, 47.3791456 ], + [ 7.6416934, 47.3791366 ], + [ 7.6415729, 47.3790405 ], + [ 7.6414068, 47.3789504 ], + [ 7.6416485, 47.3793649 ], + [ 7.6417671, 47.3804724 ], + [ 7.6416259, 47.3805019 ], + [ 7.6414599, 47.3805239 ], + [ 7.6411304, 47.3805494 ], + [ 7.6403148, 47.3805908 ], + [ 7.639796, 47.380592 ], + [ 7.6393573, 47.3805819 ], + [ 7.6389323000000005, 47.3806359 ], + [ 7.6381702, 47.3806832 ], + [ 7.6375692, 47.3806963 ], + [ 7.6372236000000004, 47.380666 ], + [ 7.6367118, 47.3807026 ], + [ 7.636343, 47.3806127 ], + [ 7.6361148, 47.380648 ], + [ 7.6355862, 47.3805958 ], + [ 7.6347435, 47.3814471 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns069", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Ämmenegg - Ulmet", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Ämmenegg - Ulmet", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Ämmenegg - Ulmet", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Ämmenegg - Ulmet", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7166715, 47.3821265 ], + [ 7.7166691, 47.3826901 ], + [ 7.7166777, 47.3831772 ], + [ 7.7171511, 47.3832585 ], + [ 7.7175217, 47.3833048 ], + [ 7.7180181999999995, 47.3833268 ], + [ 7.7189767, 47.383398 ], + [ 7.7189789, 47.3833993 ], + [ 7.7193553999999995, 47.3830351 ], + [ 7.7196748, 47.3828026 ], + [ 7.7197675, 47.3826261 ], + [ 7.7198828, 47.3824042 ], + [ 7.7201554, 47.3820068 ], + [ 7.7203644, 47.3816975 ], + [ 7.7205627, 47.3814058 ], + [ 7.7204502999999995, 47.381134 ], + [ 7.7200182999999996, 47.3810753 ], + [ 7.7192947, 47.3810482 ], + [ 7.7187844, 47.3810135 ], + [ 7.7182676, 47.3809424 ], + [ 7.7179223, 47.3808957 ], + [ 7.7175541, 47.3808077 ], + [ 7.7174442, 47.3810899 ], + [ 7.717339, 47.3814941 ], + [ 7.7171792, 47.3819187 ], + [ 7.7166715, 47.3821265 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns098", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Studenweid", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Studenweid", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Studenweid", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Studenweid", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.2877522, 46.9545852 ], + [ 8.2874732, 46.9530615 ], + [ 8.2880645, 46.9528179 ], + [ 8.2871449, 46.9518252 ], + [ 8.287512, 46.9516111 ], + [ 8.2880878, 46.9490602 ], + [ 8.2883663, 46.9484806 ], + [ 8.2901077, 46.9468772 ], + [ 8.2904329, 46.9465932 ], + [ 8.291479, 46.9477819 ], + [ 8.2926824, 46.9472098 ], + [ 8.2914779, 46.9463885 ], + [ 8.2901375, 46.9435279 ], + [ 8.2899078, 46.9432903 ], + [ 8.2899604, 46.9427124 ], + [ 8.2891554, 46.9424791 ], + [ 8.2887722, 46.9429182 ], + [ 8.288505, 46.9429625 ], + [ 8.2882644, 46.9420359 ], + [ 8.2879365, 46.9420662 ], + [ 8.2878075, 46.9417155 ], + [ 8.2866944, 46.9415123 ], + [ 8.2842014, 46.9371679 ], + [ 8.2846901, 46.9368404 ], + [ 8.284295, 46.936604 ], + [ 8.2830082, 46.9344465 ], + [ 8.2805921, 46.9336339 ], + [ 8.2804499, 46.9337753 ], + [ 8.2820954, 46.9404767 ], + [ 8.2833576, 46.9449004 ], + [ 8.2830049, 46.9446925 ], + [ 8.2814708, 46.9438591 ], + [ 8.2812489, 46.9427768 ], + [ 8.2803263, 46.9429104 ], + [ 8.2801627, 46.9442907 ], + [ 8.2802558, 46.9449521 ], + [ 8.2827804, 46.9447788 ], + [ 8.2834183, 46.9450016 ], + [ 8.2837459, 46.9461228 ], + [ 8.2852018, 46.951066 ], + [ 8.2850368, 46.9510951 ], + [ 8.2863425, 46.9535035 ], + [ 8.2858015, 46.9538511 ], + [ 8.2864138, 46.9548577 ], + [ 8.2864269, 46.9548576 ], + [ 8.2877522, 46.9545852 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSMA002", + "country" : "CHE", + "name" : [ + { + "text" : "LSMA Alpnach (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSMA Alpnach (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSMA Alpnach (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSMA Alpnach (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Special Flight Office (SFO)", + "lang" : "de-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "fr-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "it-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "en-GB" + } + ], + "siteURL" : "https://skyguide.ch/services/special-flights", + "email" : "specialflight@skyguide.ch", + "phone" : "0041439316236", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.3661671, 46.0693727 ], + [ 7.3661845, 46.0696205 ], + [ 7.3662416, 46.0698119 ], + [ 7.3662341, 46.0699921 ], + [ 7.3662678, 46.0701723 ], + [ 7.3663733, 46.0703805 ], + [ 7.3664877, 46.0705774 ], + [ 7.3666264, 46.0707742 ], + [ 7.366862, 46.0709877 ], + [ 7.367041, 46.0711958 ], + [ 7.366855, 46.0713707 ], + [ 7.3666854, 46.0714048 ], + [ 7.3665318, 46.0714784 ], + [ 7.366354, 46.0715801 ], + [ 7.3662003, 46.0717437 ], + [ 7.3660555, 46.0719018 ], + [ 7.3660561, 46.0720425 ], + [ 7.3661212, 46.0722508 ], + [ 7.3662363, 46.072611 ], + [ 7.3664067, 46.0725938 ], + [ 7.366633, 46.0725538 ], + [ 7.3668115, 46.0725592 ], + [ 7.3669576, 46.0725927 ], + [ 7.367128, 46.0726655 ], + [ 7.3673306, 46.0727834 ], + [ 7.3675663, 46.0728562 ], + [ 7.3677771, 46.0729515 ], + [ 7.3679643, 46.073075 ], + [ 7.368078, 46.0732155 ], + [ 7.3681029, 46.0733564 ], + [ 7.3680704, 46.073452 ], + [ 7.3680064, 46.0735874 ], + [ 7.3678522, 46.0735933 ], + [ 7.3677552, 46.073633 ], + [ 7.3675692999999995, 46.073684 ], + [ 7.3674642, 46.0737519 ], + [ 7.3674156, 46.0738421 ], + [ 7.367384, 46.0739491 ], + [ 7.3673516, 46.074028 ], + [ 7.3672868, 46.0740957 ], + [ 7.3672391, 46.0741521 ], + [ 7.367134, 46.0742087 ], + [ 7.367012, 46.074254 ], + [ 7.3667776, 46.0743164 ], + [ 7.3665344, 46.0743732 ], + [ 7.3663404, 46.0744582 ], + [ 7.3661707, 46.0745148 ], + [ 7.366009, 46.0745996 ], + [ 7.3657981, 46.0746394 ], + [ 7.365588, 46.0746906 ], + [ 7.3653691, 46.0747416 ], + [ 7.3650935, 46.0747704 ], + [ 7.3648511, 46.0748271 ], + [ 7.3646241, 46.0748727 ], + [ 7.3643817, 46.0749069 ], + [ 7.3640327, 46.0749077 ], + [ 7.3636683, 46.0749478 ], + [ 7.3634986, 46.0749763 ], + [ 7.3633604, 46.0750047 ], + [ 7.363223, 46.0750388 ], + [ 7.3630041, 46.075028 ], + [ 7.3629394999999995, 46.075045 ], + [ 7.3628263, 46.0751072 ], + [ 7.3626566, 46.0751582 ], + [ 7.3624699, 46.0752149 ], + [ 7.3622275, 46.0752209 ], + [ 7.3619278, 46.0752667 ], + [ 7.361871, 46.0754132 ], + [ 7.3618474, 46.0755202 ], + [ 7.3618319, 46.0756385 ], + [ 7.3618648, 46.0757624 ], + [ 7.3619544, 46.0758523 ], + [ 7.3620997, 46.075914 ], + [ 7.3622298, 46.0759024 ], + [ 7.3624164, 46.0759077 ], + [ 7.3625699000000004, 46.0758736 ], + [ 7.3627162, 46.0758733 ], + [ 7.3628615, 46.0758843 ], + [ 7.3629189, 46.0759236 ], + [ 7.3629753000000004, 46.0760023 ], + [ 7.3630001, 46.0761487 ], + [ 7.3629926, 46.0763064 ], + [ 7.3629529, 46.0763967 ], + [ 7.3628963, 46.0764812 ], + [ 7.3628154, 46.0765264 ], + [ 7.3626537, 46.0766056 ], + [ 7.3625486, 46.0766678 ], + [ 7.3624515, 46.0767468 ], + [ 7.3623868, 46.0768427 ], + [ 7.3623875, 46.0769216 ], + [ 7.3624367, 46.0769946 ], + [ 7.3624931, 46.0770621 ], + [ 7.3625746, 46.0771408 ], + [ 7.3627046, 46.0771968 ], + [ 7.3627699, 46.077253 ], + [ 7.3627779, 46.0773487 ], + [ 7.362722, 46.0774784 ], + [ 7.3626652, 46.0775913 ], + [ 7.3625608, 46.0777828 ], + [ 7.3624481, 46.0780197 ], + [ 7.3623355, 46.0782338 ], + [ 7.3622391, 46.0784537 ], + [ 7.362183, 46.0786791 ], + [ 7.3621276, 46.0789834 ], + [ 7.3620802, 46.0793665 ], + [ 7.3620734, 46.0796368 ], + [ 7.3620261, 46.0799072 ], + [ 7.3619376, 46.0802228 ], + [ 7.3618343, 46.0806904 ], + [ 7.361731, 46.0811693 ], + [ 7.3631102, 46.0817468 ], + [ 7.3632894, 46.0818533 ], + [ 7.3633951, 46.0819377 ], + [ 7.3635331, 46.0820612 ], + [ 7.3637122, 46.0822411 ], + [ 7.3638825, 46.0823703 ], + [ 7.3639316, 46.0824885 ], + [ 7.3639889, 46.0825672 ], + [ 7.3640056, 46.0827305 ], + [ 7.3640547, 46.0828938 ], + [ 7.3640472, 46.0830402 ], + [ 7.3640478, 46.0832148 ], + [ 7.36413, 46.0833724 ], + [ 7.3643406, 46.0835127 ], + [ 7.3644787, 46.0835857 ], + [ 7.3646741, 46.083681 ], + [ 7.3648768, 46.083782 ], + [ 7.3651206, 46.0839054 ], + [ 7.3652667, 46.0840008 ], + [ 7.3655025, 46.0840962 ], + [ 7.3656972, 46.0841352 ], + [ 7.3659726, 46.0841853 ], + [ 7.3662158, 46.0841678 ], + [ 7.3664912, 46.0842687 ], + [ 7.3668159, 46.0843638 ], + [ 7.3669862, 46.0844536 ], + [ 7.3670928, 46.0845603 ], + [ 7.367255, 46.0847065 ], + [ 7.3673121, 46.0848415 ], + [ 7.3674583, 46.084937 ], + [ 7.3675963, 46.0849986 ], + [ 7.3677425, 46.0850941 ], + [ 7.3678813, 46.0852122 ], + [ 7.3680678, 46.0853356 ], + [ 7.3683844, 46.0854251 ], + [ 7.3686598, 46.0854978 ], + [ 7.3688957, 46.085548 ], + [ 7.3691146, 46.0855644 ], + [ 7.3694305, 46.085575 ], + [ 7.3696979, 46.0856138 ], + [ 7.3699815, 46.0856246 ], + [ 7.3703062, 46.0856859 ], + [ 7.3705332, 46.0857587 ], + [ 7.3707278, 46.085831400000004 ], + [ 7.3709959, 46.0859492 ], + [ 7.3712075, 46.0860445 ], + [ 7.371386, 46.0861061 ], + [ 7.3716129, 46.0861732 ], + [ 7.3717995, 46.0862178 ], + [ 7.3719215, 46.0862852 ], + [ 7.3720757, 46.0863694 ], + [ 7.3721815, 46.0864085 ], + [ 7.3723276, 46.0864871 ], + [ 7.3724737, 46.086605 ], + [ 7.3726279, 46.0867117 ], + [ 7.3727418, 46.0867509 ], + [ 7.3729122, 46.0868125 ], + [ 7.3731641, 46.0869584 ], + [ 7.3735453, 46.0871323 ], + [ 7.3738538, 46.0872218 ], + [ 7.3741942, 46.0871028 ], + [ 7.3744771, 46.0870008 ], + [ 7.3747681, 46.0868876 ], + [ 7.3750599, 46.0867631 ], + [ 7.3753025, 46.0866499 ], + [ 7.3755611, 46.0865479 ], + [ 7.375925, 46.0863557 ], + [ 7.3762969, 46.0861522 ], + [ 7.3763857999999995, 46.0860957 ], + [ 7.3766283999999995, 46.0859319 ], + [ 7.3769195, 46.0857454 ], + [ 7.3772268, 46.0855194 ], + [ 7.3791001, 46.0858703 ], + [ 7.3794571, 46.0859483 ], + [ 7.3798061, 46.0860039 ], + [ 7.3801463, 46.0860088 ], + [ 7.3803653, 46.0859858 ], + [ 7.3806488, 46.0859909 ], + [ 7.380892, 46.0860016 ], + [ 7.3811433, 46.0860631 ], + [ 7.3813541, 46.0861133 ], + [ 7.3816304, 46.0861634 ], + [ 7.3819139, 46.0862135 ], + [ 7.3821894, 46.086241 ], + [ 7.3824818, 46.0863023 ], + [ 7.3827573, 46.0863299 ], + [ 7.3829843, 46.0863632 ], + [ 7.3832194, 46.0863908 ], + [ 7.3834545, 46.0864073 ], + [ 7.383827, 46.0863839 ], + [ 7.3841842, 46.0863494 ], + [ 7.3846133, 46.0862808 ], + [ 7.3850343, 46.0862349 ], + [ 7.3852614, 46.0861949 ], + [ 7.3855119, 46.0861324 ], + [ 7.3857875, 46.0861093 ], + [ 7.3860226, 46.0861031 ], + [ 7.3862415, 46.0861027 ], + [ 7.3865169999999996, 46.0861246 ], + [ 7.3868249, 46.0861464 ], + [ 7.3871739, 46.0861795 ], + [ 7.3874009, 46.0862015 ], + [ 7.3876521, 46.0862235 ], + [ 7.3879357, 46.086251 ], + [ 7.3881305, 46.0862167 ], + [ 7.3883406, 46.0861826 ], + [ 7.3885596, 46.0861257 ], + [ 7.3887778, 46.0860633 ], + [ 7.3890049, 46.0860008 ], + [ 7.3891989, 46.0859103 ], + [ 7.3895140999999995, 46.0857688 ], + [ 7.3898059, 46.0856781 ], + [ 7.3900968, 46.0855872 ], + [ 7.3904209, 46.0855246 ], + [ 7.3908015, 46.0854618 ], + [ 7.391296, 46.0854382 ], + [ 7.392625, 46.0855534 ], + [ 7.3926675, 46.0859758 ], + [ 7.3926358, 46.0861111 ], + [ 7.3925961000000004, 46.086297 ], + [ 7.3926136, 46.0866293 ], + [ 7.3925503, 46.0869786 ], + [ 7.3925274, 46.0873278 ], + [ 7.3924795, 46.0874912 ], + [ 7.3924237, 46.0876322 ], + [ 7.3923347, 46.0877223 ], + [ 7.3922546, 46.0878297 ], + [ 7.3922141, 46.0879423 ], + [ 7.3922472, 46.0880268 ], + [ 7.3922802, 46.0881394 ], + [ 7.3923125, 46.0882406 ], + [ 7.3922647, 46.0883308 ], + [ 7.3922081, 46.0883535 ], + [ 7.3920376, 46.0884215 ], + [ 7.3918275, 46.0884727 ], + [ 7.3916004, 46.0885238 ], + [ 7.3914637, 46.088648 ], + [ 7.3913989, 46.088789 ], + [ 7.3913519, 46.0889862 ], + [ 7.3913445, 46.089189 ], + [ 7.3912312, 46.089347 ], + [ 7.3911187, 46.0895162 ], + [ 7.3909812, 46.089646 ], + [ 7.3908365, 46.0897702 ], + [ 7.3905771, 46.089844 ], + [ 7.390375, 46.0899177 ], + [ 7.3902375, 46.0900306 ], + [ 7.3901162, 46.0901661 ], + [ 7.3900118, 46.0902958 ], + [ 7.3899478, 46.0904818 ], + [ 7.3898831, 46.0906341 ], + [ 7.3898999, 46.0907523 ], + [ 7.389836, 46.090882 ], + [ 7.3897316, 46.0910512 ], + [ 7.3895941, 46.0912204 ], + [ 7.3895624, 46.0913725 ], + [ 7.3896197, 46.0915133 ], + [ 7.389693, 46.0916652 ], + [ 7.3897921, 46.0920254 ], + [ 7.3897847, 46.0921999 ], + [ 7.3897046, 46.0923184 ], + [ 7.3895913, 46.0924594 ], + [ 7.3895031, 46.0925948 ], + [ 7.3893656, 46.0927416 ], + [ 7.3892847, 46.0928601 ], + [ 7.3892369, 46.0929784 ], + [ 7.3892375999999995, 46.0931304 ], + [ 7.3892059, 46.0932657 ], + [ 7.3891493, 46.0933728 ], + [ 7.3891345, 46.0936094 ], + [ 7.3891351, 46.0938346 ], + [ 7.3891843, 46.0940205 ], + [ 7.38921, 46.0941781 ], + [ 7.3891621, 46.0943922 ], + [ 7.3890811, 46.0945557 ], + [ 7.3889202, 46.0947193 ], + [ 7.3887423, 46.0948268 ], + [ 7.3885806, 46.0949453 ], + [ 7.388654, 46.0950185 ], + [ 7.388751, 46.0950521 ], + [ 7.388776, 46.0951083 ], + [ 7.3887598, 46.0951647 ], + [ 7.3888009, 46.0952097 ], + [ 7.3888736, 46.0952377 ], + [ 7.3890927, 46.0952146 ], + [ 7.3892382, 46.0951298 ], + [ 7.3893595, 46.0950451 ], + [ 7.3895123, 46.0949039 ], + [ 7.3896822, 46.094774 ], + [ 7.3899004999999995, 46.0946609 ], + [ 7.3900468, 46.0946324 ], + [ 7.3902084, 46.094649 ], + [ 7.3903303, 46.0946993 ], + [ 7.3904361, 46.0948118 ], + [ 7.3905095, 46.0949355 ], + [ 7.390583, 46.0950142 ], + [ 7.3906476, 46.0950254 ], + [ 7.3907616, 46.0950307 ], + [ 7.3908828, 46.0950079 ], + [ 7.3910291, 46.0950245 ], + [ 7.3911591, 46.0950805 ], + [ 7.3912642, 46.0950803 ], + [ 7.3913612, 46.0950294 ], + [ 7.3915229, 46.0949501 ], + [ 7.3916441, 46.0949048 ], + [ 7.3917823, 46.0949326 ], + [ 7.3919608, 46.0950168 ], + [ 7.3920343, 46.0951124 ], + [ 7.3919291, 46.0952139 ], + [ 7.3917681, 46.0954227 ], + [ 7.39168, 46.0955411 ], + [ 7.3915506, 46.0956203 ], + [ 7.3914043, 46.0956375 ], + [ 7.3912588, 46.0956828 ], + [ 7.3911375, 46.0957789 ], + [ 7.3910735, 46.0959143 ], + [ 7.3909926, 46.0960383 ], + [ 7.3908552, 46.0961343 ], + [ 7.390969, 46.0962355 ], + [ 7.3913747, 46.0962345 ], + [ 7.3912946, 46.096398 ], + [ 7.3912056, 46.0965053 ], + [ 7.3912055, 46.0965785 ], + [ 7.3912224, 46.0966572 ], + [ 7.3912223, 46.0967361 ], + [ 7.3912069, 46.0968545 ], + [ 7.3912642, 46.0969106 ], + [ 7.3913288, 46.0969838 ], + [ 7.3913457, 46.0970907 ], + [ 7.3913625, 46.0972258 ], + [ 7.3913632, 46.097361 ], + [ 7.391372, 46.0975018 ], + [ 7.3912991, 46.0976315 ], + [ 7.3912271, 46.0977162 ], + [ 7.3911301, 46.0978177 ], + [ 7.3909926, 46.097925 ], + [ 7.3908551, 46.0980211 ], + [ 7.3907419, 46.0981226 ], + [ 7.3905405, 46.0982809 ], + [ 7.3903465, 46.0983714 ], + [ 7.3901517, 46.0984338 ], + [ 7.3899172, 46.0985413 ], + [ 7.3897393, 46.0986431 ], + [ 7.3896584, 46.0987559 ], + [ 7.3896429, 46.0988517 ], + [ 7.3896598000000004, 46.0989418 ], + [ 7.3896435, 46.0990601 ], + [ 7.3895715, 46.099201 ], + [ 7.3894912999999995, 46.099342 ], + [ 7.3894023, 46.099483 ], + [ 7.3892567, 46.0996128 ], + [ 7.3890715, 46.0997879 ], + [ 7.3889104, 46.1000924 ], + [ 7.3887897, 46.1003517 ], + [ 7.3886051, 46.1006732 ], + [ 7.3929966, 46.1020489 ], + [ 7.3934757, 46.1022054 ], + [ 7.3938732, 46.102351 ], + [ 7.3942142, 46.102491 ], + [ 7.3944986, 46.1026143 ], + [ 7.3947999, 46.1027994 ], + [ 7.3951335, 46.1030634 ], + [ 7.3953936, 46.1032543 ], + [ 7.3956449, 46.1033381 ], + [ 7.3956706, 46.1035184 ], + [ 7.3957277999999995, 46.1036816 ], + [ 7.3957851, 46.103794 ], + [ 7.3957851, 46.1038672 ], + [ 7.3957292, 46.1040194 ], + [ 7.3957136, 46.1042617 ], + [ 7.3956908, 46.1045828 ], + [ 7.3956046, 46.1051686 ], + [ 7.3956693, 46.105146 ], + [ 7.3957178, 46.1050783 ], + [ 7.3957737, 46.1049937 ], + [ 7.3958788, 46.1049484 ], + [ 7.3960655, 46.1049198 ], + [ 7.3962603, 46.1049025 ], + [ 7.3965028, 46.1048569 ], + [ 7.396608, 46.1047665 ], + [ 7.3967131, 46.1046536 ], + [ 7.3968183, 46.1045914 ], + [ 7.3969395, 46.1045518 ], + [ 7.397085, 46.1045177 ], + [ 7.3973041, 46.1044608 ], + [ 7.3974577, 46.1043928 ], + [ 7.3977091, 46.1043641 ], + [ 7.3978789, 46.1043187 ], + [ 7.3980164, 46.1042171 ], + [ 7.3981774, 46.1040308 ], + [ 7.3982987, 46.1039123 ], + [ 7.3984927, 46.1038611 ], + [ 7.3987684, 46.1038041 ], + [ 7.3990602, 46.1037415 ], + [ 7.3993027, 46.1036283 ], + [ 7.3994079, 46.1035097 ], + [ 7.3995285, 46.1033181 ], + [ 7.3997373, 46.1029514 ], + [ 7.399955, 46.1025511 ], + [ 7.4000836, 46.1023254 ], + [ 7.4000587, 46.1021736 ], + [ 7.4000248, 46.1020159 ], + [ 7.3999999, 46.10183 ], + [ 7.3999589, 46.1016049 ], + [ 7.3999331999999995, 46.1013459 ], + [ 7.3998833, 46.1010588 ], + [ 7.3999061, 46.1007996 ], + [ 7.3999135, 46.100625 ], + [ 7.3998885, 46.100473 ], + [ 7.3997828, 46.1003324 ], + [ 7.3996851, 46.1002256 ], + [ 7.399652, 46.1001131 ], + [ 7.3996513, 46.0999272 ], + [ 7.3996742, 46.09964 ], + [ 7.3997624, 46.0994821 ], + [ 7.3998756, 46.0993467 ], + [ 7.4000204, 46.0992055 ], + [ 7.4002628999999995, 46.0990585 ], + [ 7.4007488, 46.0987983 ], + [ 7.400837, 46.0986516 ], + [ 7.4009414, 46.0984994 ], + [ 7.4010062, 46.0983246 ], + [ 7.401054, 46.0981274 ], + [ 7.4010606, 46.0979191 ], + [ 7.4011077, 46.0975922 ], + [ 7.4010997, 46.0974965 ], + [ 7.4010909, 46.0973444 ], + [ 7.4010579, 46.0971925 ], + [ 7.4009844, 46.0970969 ], + [ 7.4008786, 46.0970295 ], + [ 7.4007485, 46.0969172 ], + [ 7.4007155000000004, 46.0968215 ], + [ 7.400764, 46.0967313 ], + [ 7.4008279, 46.0966298 ], + [ 7.4008765, 46.0965565 ], + [ 7.4009161, 46.0964606 ], + [ 7.4009324, 46.0963593 ], + [ 7.4009478, 46.0962296 ], + [ 7.4009964, 46.096145 ], + [ 7.4010926999999995, 46.0959477 ], + [ 7.4011809, 46.0957954 ], + [ 7.4013418, 46.0955697 ], + [ 7.4014301, 46.0953724 ], + [ 7.401511, 46.0952089 ], + [ 7.401583, 46.0950342 ], + [ 7.4016389, 46.094927 ], + [ 7.4017278, 46.0948423 ], + [ 7.4018006, 46.094769 ], + [ 7.4018564, 46.094645 ], + [ 7.4019123, 46.0944589 ], + [ 7.4020572, 46.0941713 ], + [ 7.4020645, 46.0940587 ], + [ 7.4020646, 46.0939235 ], + [ 7.4020882, 46.0937545 ], + [ 7.4021279, 46.0935742 ], + [ 7.4020867, 46.0934785 ], + [ 7.4019398, 46.0933268 ], + [ 7.4018421, 46.0931975 ], + [ 7.4017524, 46.0930738 ], + [ 7.4017032, 46.0929556 ], + [ 7.4016783, 46.0927867 ], + [ 7.4016203, 46.0925052 ], + [ 7.4015785, 46.0921787 ], + [ 7.4015036, 46.091841 ], + [ 7.4014617, 46.0915707 ], + [ 7.4014523, 46.0912384 ], + [ 7.4014589, 46.0909343 ], + [ 7.4014333, 46.090619 ], + [ 7.4014076, 46.0903544 ], + [ 7.4013908, 46.0901122 ], + [ 7.4014298, 46.0898137 ], + [ 7.4015409, 46.0892615 ], + [ 7.401613, 46.0890304 ], + [ 7.4016196, 46.0888501 ], + [ 7.4016108, 46.0886529 ], + [ 7.4016513, 46.0885515 ], + [ 7.4017314, 46.0884106 ], + [ 7.4017791, 46.0882865 ], + [ 7.4017542, 46.0881233 ], + [ 7.4017939, 46.0879147 ], + [ 7.4017697, 46.0878416 ], + [ 7.4017205, 46.0877178 ], + [ 7.4016713, 46.0876279 ], + [ 7.4016625, 46.0875152 ], + [ 7.4016699, 46.0873182 ], + [ 7.4016611, 46.0871491 ], + [ 7.4017008, 46.086952 ], + [ 7.4017567, 46.0868392 ], + [ 7.4018295, 46.0866981 ], + [ 7.4019338, 46.0865966 ], + [ 7.4020308, 46.086495 ], + [ 7.4021109, 46.0863258 ], + [ 7.4021918, 46.0861905 ], + [ 7.4022234000000005, 46.0860271 ], + [ 7.4022147, 46.0858637 ], + [ 7.4022543, 46.0857285 ], + [ 7.402383, 46.0854578 ], + [ 7.4025197, 46.0852097 ], + [ 7.4027695, 46.0849613 ], + [ 7.4031333, 46.0847577 ], + [ 7.4033515, 46.084684 ], + [ 7.40353, 46.0846442 ], + [ 7.4036998, 46.0845706 ], + [ 7.4037968, 46.0844971 ], + [ 7.4038372, 46.0844182 ], + [ 7.4038446, 46.0842829 ], + [ 7.4038439, 46.0841534 ], + [ 7.4039078, 46.0839955 ], + [ 7.4040048, 46.0838771 ], + [ 7.4040202, 46.0837644 ], + [ 7.4039064, 46.08359 ], + [ 7.4038322, 46.0833762 ], + [ 7.4036449, 46.0831626 ], + [ 7.4035957, 46.0830558 ], + [ 7.4036119, 46.0829768 ], + [ 7.4037008, 46.0829204 ], + [ 7.4038382, 46.0829144 ], + [ 7.4038125, 46.0826891 ], + [ 7.4037464, 46.0824134 ], + [ 7.403098, 46.0805169 ], + [ 7.4050177999999995, 46.0803434 ], + [ 7.4052529, 46.0803203 ], + [ 7.4054387, 46.0803143 ], + [ 7.4071087, 46.080299 ], + [ 7.4071079, 46.0802201 ], + [ 7.4071322, 46.0801187 ], + [ 7.4072453, 46.0800734 ], + [ 7.4071718, 46.0800116 ], + [ 7.4070903, 46.0799273 ], + [ 7.4070249, 46.0798036 ], + [ 7.4070007, 46.0797586 ], + [ 7.4069999, 46.0796966 ], + [ 7.4070808, 46.0796514 ], + [ 7.4073563, 46.0795662 ], + [ 7.4073879, 46.0794535 ], + [ 7.4074849, 46.0792674 ], + [ 7.4075973, 46.0791095 ], + [ 7.4077016, 46.0789403 ], + [ 7.4077987, 46.0788217 ], + [ 7.4078221, 46.0787428 ], + [ 7.4077575, 46.078698 ], + [ 7.4077737, 46.0786191 ], + [ 7.4078465, 46.0785794 ], + [ 7.4078788, 46.0786132 ], + [ 7.407911, 46.0786806 ], + [ 7.4079199, 46.0787313 ], + [ 7.4078714, 46.0788215 ], + [ 7.4078479, 46.0789174 ], + [ 7.4079044, 46.0789961 ], + [ 7.4080183, 46.0790296 ], + [ 7.4081233, 46.0790069 ], + [ 7.4082453, 46.0790122 ], + [ 7.4083834, 46.0791019 ], + [ 7.4084892, 46.0791805 ], + [ 7.4085788, 46.0792648 ], + [ 7.4086603, 46.0794223 ], + [ 7.4089116, 46.0794949 ], + [ 7.4087903, 46.0795797 ], + [ 7.4089211, 46.0797765 ], + [ 7.4090108, 46.0798101 ], + [ 7.4091246, 46.0798661 ], + [ 7.4092547, 46.0799446 ], + [ 7.4094008, 46.0800795 ], + [ 7.4097814, 46.0800448 ], + [ 7.4098791, 46.0801628 ], + [ 7.4099283, 46.0802528 ], + [ 7.4100099, 46.0803145 ], + [ 7.4101399, 46.0803649 ], + [ 7.4102861, 46.0804266 ], + [ 7.4104565000000004, 46.0805218 ], + [ 7.4107321, 46.0804874 ], + [ 7.4108209, 46.080521 ], + [ 7.4110156, 46.0805206 ], + [ 7.4112095, 46.0804862 ], + [ 7.4112911, 46.0805255 ], + [ 7.411308, 46.0806324 ], + [ 7.4113161, 46.080745 ], + [ 7.4113087, 46.0808464 ], + [ 7.4113984, 46.0809419 ], + [ 7.4115284, 46.0809811 ], + [ 7.4116665, 46.0810258 ], + [ 7.4117643, 46.0811157 ], + [ 7.4118531, 46.0812057 ], + [ 7.411975, 46.0812954 ], + [ 7.4120566, 46.0813121 ], + [ 7.4120897, 46.0814359 ], + [ 7.4121389, 46.0815371 ], + [ 7.4122932, 46.08161 ], + [ 7.4123424, 46.0817281 ], + [ 7.4124321, 46.0818181 ], + [ 7.412626, 46.0818063 ], + [ 7.412975, 46.0818957 ], + [ 7.413, 46.0819744 ], + [ 7.4130807, 46.0820361 ], + [ 7.4131462, 46.0821148 ], + [ 7.4131873, 46.0821767 ], + [ 7.4132285, 46.0823005 ], + [ 7.4133093, 46.0823228 ], + [ 7.4133908, 46.0823733 ], + [ 7.4134797, 46.082435 ], + [ 7.4135532, 46.0825081 ], + [ 7.4135701, 46.0826038 ], + [ 7.413587, 46.082722 ], + [ 7.4136274, 46.0827951 ], + [ 7.4137413, 46.0828737 ], + [ 7.4138713, 46.082986 ], + [ 7.4139609, 46.0830309 ], + [ 7.4140183, 46.083087 ], + [ 7.4140263, 46.0831659 ], + [ 7.4140675, 46.0832446 ], + [ 7.4140917, 46.0833234 ], + [ 7.4140036, 46.0834081 ], + [ 7.4139066, 46.0835209 ], + [ 7.41385, 46.0836112 ], + [ 7.4139154, 46.0837068 ], + [ 7.4140858, 46.0837796 ], + [ 7.4142563, 46.0837735 ], + [ 7.4141689, 46.0841793 ], + [ 7.4144995, 46.0838686 ], + [ 7.4147258, 46.0837329 ], + [ 7.4148147, 46.083637 ], + [ 7.4148059, 46.0834906 ], + [ 7.4148132, 46.083299 ], + [ 7.4148602, 46.0829948 ], + [ 7.4151923, 46.0828983 ], + [ 7.4152651, 46.0828474 ], + [ 7.4154348, 46.0827906 ], + [ 7.4156376, 46.0827564 ], + [ 7.4158719, 46.0827165 ], + [ 7.4160262, 46.0827047 ], + [ 7.4161717, 46.0826311 ], + [ 7.4164141, 46.082501 ], + [ 7.416705, 46.0823708 ], + [ 7.4169321, 46.082297 ], + [ 7.416949, 46.0824433 ], + [ 7.4170459, 46.0824881 ], + [ 7.4170548, 46.0826572 ], + [ 7.4171768, 46.0826512 ], + [ 7.4173553, 46.0827352 ], + [ 7.4174288, 46.0828139 ], + [ 7.4174942, 46.0828981 ], + [ 7.4175669, 46.0829825 ], + [ 7.4176727, 46.0830611 ], + [ 7.4177704, 46.0831397 ], + [ 7.4178358, 46.0831902 ], + [ 7.4179821, 46.0832462 ], + [ 7.4181032, 46.0832909 ], + [ 7.4182664, 46.0833806 ], + [ 7.4184611, 46.0834759 ], + [ 7.4185507, 46.0835715 ], + [ 7.4186566, 46.0836275 ], + [ 7.4187704, 46.0837398 ], + [ 7.4188997, 46.0836888 ], + [ 7.4190452, 46.0836265 ], + [ 7.4192318, 46.083581 ], + [ 7.4193854, 46.0835806 ], + [ 7.4194831, 46.0836704 ], + [ 7.4195889, 46.0838223 ], + [ 7.4192899, 46.0839525 ], + [ 7.419129, 46.0841444 ], + [ 7.4192105999999995, 46.08424 ], + [ 7.4192841, 46.0843919 ], + [ 7.4193818, 46.0845155 ], + [ 7.4195118, 46.0845828 ], + [ 7.4196653999999995, 46.0845485 ], + [ 7.4198197, 46.0844974 ], + [ 7.419949, 46.084486 ], + [ 7.4200467, 46.0845533 ], + [ 7.420201, 46.0846487 ], + [ 7.4204281, 46.0846987 ], + [ 7.4207852, 46.0847317 ], + [ 7.4208894, 46.0846131 ], + [ 7.4210834, 46.084438 ], + [ 7.4213582, 46.0842403 ], + [ 7.4214625, 46.0840823 ], + [ 7.4215506, 46.0839187 ], + [ 7.4216314, 46.0838116 ], + [ 7.4217526, 46.0837324 ], + [ 7.4219304, 46.0836475 ], + [ 7.4221817, 46.0835623 ], + [ 7.4223991, 46.0833984 ], + [ 7.4225123, 46.083263 ], + [ 7.4226165, 46.0831163 ], + [ 7.4227054, 46.0829866 ], + [ 7.4228994, 46.0828339 ], + [ 7.4229795, 46.0826085 ], + [ 7.4232842, 46.0820671 ], + [ 7.4233489, 46.0819205 ], + [ 7.4233077, 46.0818417 ], + [ 7.4232908, 46.0816952 ], + [ 7.4233304, 46.0815488 ], + [ 7.4230953, 46.0815888 ], + [ 7.4229991, 46.0816622 ], + [ 7.4228609, 46.0817189 ], + [ 7.422667, 46.0818096 ], + [ 7.422465, 46.0818777 ], + [ 7.4222388, 46.0819514 ], + [ 7.4220279, 46.081997 ], + [ 7.4218501, 46.0820875 ], + [ 7.4218251, 46.0819243 ], + [ 7.421767, 46.081733 ], + [ 7.4218074, 46.0815921 ], + [ 7.4218794, 46.0813891 ], + [ 7.4219109, 46.0812708 ], + [ 7.4219183, 46.0811637 ], + [ 7.421894, 46.081068 ], + [ 7.4218117, 46.0809275 ], + [ 7.4219086, 46.0808822 ], + [ 7.4219571, 46.0808201 ], + [ 7.4220137, 46.0807579 ], + [ 7.4220695, 46.0806114 ], + [ 7.4220938, 46.0804706 ], + [ 7.4220849, 46.0803523 ], + [ 7.4220195, 46.0802286 ], + [ 7.421946, 46.0801105 ], + [ 7.4219049, 46.080043 ], + [ 7.4219937, 46.080009 ], + [ 7.4221157, 46.0799974 ], + [ 7.4222208, 46.0799915 ], + [ 7.4222693, 46.0799351 ], + [ 7.4222854, 46.0798956 ], + [ 7.4222766, 46.0798337 ], + [ 7.4223008, 46.0797716 ], + [ 7.4224059, 46.0797376 ], + [ 7.4225682, 46.0797429 ], + [ 7.4228276, 46.0797309 ], + [ 7.4225263, 46.0794388 ], + [ 7.4223389, 46.0792816 ], + [ 7.4220627, 46.0791189 ], + [ 7.4221758, 46.0791131 ], + [ 7.4223301, 46.0790901 ], + [ 7.4224755, 46.0790673 ], + [ 7.422629, 46.0790049 ], + [ 7.4227502, 46.0789764 ], + [ 7.4229038, 46.0788634 ], + [ 7.4229846, 46.0787281 ], + [ 7.4231462, 46.0785924 ], + [ 7.4232424, 46.0784231 ], + [ 7.4233467, 46.0782089 ], + [ 7.4235721, 46.0779887 ], + [ 7.4239754, 46.0775765 ], + [ 7.4241612, 46.0774972 ], + [ 7.4243075, 46.0774405 ], + [ 7.4244529, 46.0774007 ], + [ 7.4246145, 46.0773947 ], + [ 7.4247284, 46.0773607 ], + [ 7.4248003, 46.0772815 ], + [ 7.4248407, 46.077152 ], + [ 7.4248973, 46.0771012 ], + [ 7.4249862, 46.0770671 ], + [ 7.4250993, 46.0770443 ], + [ 7.4251962, 46.0770273 ], + [ 7.4253013, 46.0769593 ], + [ 7.4254305, 46.0768688 ], + [ 7.4254879, 46.0768912 ], + [ 7.4255767, 46.0769643 ], + [ 7.4256503, 46.0769697 ], + [ 7.4257391, 46.0769301 ], + [ 7.4258272, 46.0767777 ], + [ 7.4258257, 46.0764962 ], + [ 7.425833, 46.0763553 ], + [ 7.425808, 46.0761639 ], + [ 7.4258315, 46.075978 ], + [ 7.4257661, 46.0758035 ], + [ 7.4257006, 46.0756629 ], + [ 7.4256345, 46.075466 ], + [ 7.4255448, 46.0753029 ], + [ 7.4255279, 46.0751621 ], + [ 7.4255748, 46.0749367 ], + [ 7.425566, 46.0747396 ], + [ 7.4255248, 46.0745764 ], + [ 7.4254352, 46.0744415 ], + [ 7.4254344, 46.074357 ], + [ 7.4254829, 46.0742442 ], + [ 7.4255386, 46.0741484 ], + [ 7.4256114, 46.0740073 ], + [ 7.4256502, 46.0737313 ], + [ 7.4256899, 46.0735171 ], + [ 7.4257295, 46.0733143 ], + [ 7.4257045, 46.0732074 ], + [ 7.4256229, 46.0730837 ], + [ 7.4255333, 46.0729994 ], + [ 7.4254113, 46.0729377 ], + [ 7.4252893, 46.0728761 ], + [ 7.4252562, 46.0727691 ], + [ 7.4252393, 46.0726341 ], + [ 7.4252224, 46.0724594 ], + [ 7.4251328, 46.0723245 ], + [ 7.425027, 46.0722122 ], + [ 7.4249777, 46.0720434 ], + [ 7.4250174, 46.0718518 ], + [ 7.4251693, 46.071536 ], + [ 7.4254513, 46.0711861 ], + [ 7.4256848, 46.0708532 ], + [ 7.4258852, 46.0705091 ], + [ 7.4260792, 46.0702834 ], + [ 7.4263134, 46.0701645 ], + [ 7.4264257, 46.0700347 ], + [ 7.4266116, 46.0698202 ], + [ 7.4268216, 46.0697464 ], + [ 7.4269832000000005, 46.0696615 ], + [ 7.4270800999999995, 46.069543 ], + [ 7.4271519999999995, 46.0694583 ], + [ 7.4272329, 46.0692892 ], + [ 7.4273775, 46.0691199 ], + [ 7.4275471, 46.0689561 ], + [ 7.427611, 46.0687813 ], + [ 7.4276102, 46.068618 ], + [ 7.4274955, 46.0684663 ], + [ 7.4274859, 46.0681284 ], + [ 7.427444, 46.0677567 ], + [ 7.4274667, 46.0675483 ], + [ 7.4273762, 46.0672895 ], + [ 7.4273505, 46.0668953 ], + [ 7.4276582, 46.0668888 ], + [ 7.4279336, 46.0668938 ], + [ 7.4282091, 46.066865 ], + [ 7.4285411, 46.0668302 ], + [ 7.4287995, 46.0667508 ], + [ 7.4290588, 46.0666994 ], + [ 7.4293011, 46.0665975 ], + [ 7.4295928, 46.0664727 ], + [ 7.4299482, 46.0663366 ], + [ 7.4301824, 46.0662009 ], + [ 7.4306678999999995, 46.0661039 ], + [ 7.4309675, 46.0660017 ], + [ 7.4313318, 46.0659219 ], + [ 7.4319068999999995, 46.0658697 ], + [ 7.4338422, 46.0656901 ], + [ 7.4338713, 46.0651099 ], + [ 7.4338778, 46.0647381 ], + [ 7.4338916, 46.0643214 ], + [ 7.4339215, 46.0638707 ], + [ 7.4339361, 46.0635102 ], + [ 7.4339272, 46.0632624 ], + [ 7.4339579, 46.0629638 ], + [ 7.4339571, 46.0627837 ], + [ 7.4338828, 46.0626318 ], + [ 7.433874, 46.0624684 ], + [ 7.4338813, 46.0622488 ], + [ 7.4339128, 46.0620178 ], + [ 7.43392, 46.0618375 ], + [ 7.4338781, 46.0616237 ], + [ 7.4338207, 46.0614548 ], + [ 7.4338111, 46.0612239 ], + [ 7.4338749, 46.0610154 ], + [ 7.4339064, 46.0608182 ], + [ 7.4338652, 46.0606494 ], + [ 7.4338071, 46.0604636 ], + [ 7.4337417, 46.0602611 ], + [ 7.4336997, 46.0600415 ], + [ 7.4337313, 46.0598274 ], + [ 7.4337943, 46.0595175 ], + [ 7.433825, 46.0591063 ], + [ 7.4338807, 46.0590103 ], + [ 7.4338638, 46.0588865 ], + [ 7.4337661, 46.0587291 ], + [ 7.4336845, 46.0585997 ], + [ 7.4335618, 46.0584198 ], + [ 7.4334964, 46.0582398 ], + [ 7.4334383, 46.0580147 ], + [ 7.4334132, 46.0578233 ], + [ 7.433347, 46.0575643 ], + [ 7.4332162, 46.0573057 ], + [ 7.4331097, 46.0570412 ], + [ 7.4330604, 46.0569062 ], + [ 7.4330758, 46.0568329 ], + [ 7.4331808, 46.05672 ], + [ 7.4332938, 46.0566127 ], + [ 7.4334957, 46.0565389 ], + [ 7.4337138, 46.0564088 ], + [ 7.4337857, 46.0562453 ], + [ 7.4337494, 46.0554232 ], + [ 7.4335863, 46.0552771 ], + [ 7.4334402, 46.0551198 ], + [ 7.4331955, 46.0548839 ], + [ 7.433009, 46.0547155 ], + [ 7.4329839, 46.054603 ], + [ 7.4330397, 46.0544732 ], + [ 7.4331689, 46.054287 ], + [ 7.4332246, 46.054163 ], + [ 7.4331996, 46.0540166 ], + [ 7.4331423, 46.0538535 ], + [ 7.4331415, 46.0536788 ], + [ 7.4332045, 46.0534646 ], + [ 7.4333572, 46.0531319 ], + [ 7.4334775, 46.0528557 ], + [ 7.4334759, 46.0526191 ], + [ 7.4333863000000004, 46.0524673 ], + [ 7.4332232, 46.0522819 ], + [ 7.4329955, 46.0521022 ], + [ 7.4327436, 46.0519171 ], + [ 7.4325894, 46.0518161 ], + [ 7.4324344, 46.0516531 ], + [ 7.4322801, 46.0515297 ], + [ 7.4320605, 46.0513725 ], + [ 7.4318571, 46.051221 ], + [ 7.431694, 46.051075 ], + [ 7.431547, 46.0508501 ], + [ 7.4313597, 46.0505971 ], + [ 7.4310909, 46.0502937 ], + [ 7.4308705, 46.0499845 ], + [ 7.4305774, 46.049698 ], + [ 7.4302601, 46.0493778 ], + [ 7.4301455, 46.0491473 ], + [ 7.4301294, 46.0490459 ], + [ 7.4301528, 46.048905 ], + [ 7.4302005, 46.0487529 ], + [ 7.4302401, 46.0485669 ], + [ 7.430207, 46.0484205 ], + [ 7.430052, 46.0482294 ], + [ 7.4300351, 46.0480718 ], + [ 7.4300827, 46.0479309 ], + [ 7.4301312, 46.0478125 ], + [ 7.4302112, 46.0476771 ], + [ 7.4303484, 46.0475304 ], + [ 7.4304122, 46.0474288 ], + [ 7.4304123, 46.0473105 ], + [ 7.4303469, 46.0472206 ], + [ 7.4302411, 46.0471476 ], + [ 7.4300869, 46.0470298 ], + [ 7.4299077, 46.0469176 ], + [ 7.4296881, 46.0467661 ], + [ 7.4294612, 46.0466428 ], + [ 7.4292013, 46.0465082 ], + [ 7.4289575, 46.0463343 ], + [ 7.4287217, 46.0461716 ], + [ 7.4285756, 46.0461269 ], + [ 7.4284698, 46.0460709 ], + [ 7.4283722, 46.0459416 ], + [ 7.4282341, 46.0457673 ], + [ 7.4281033, 46.0456438 ], + [ 7.4279976, 46.0455089 ], + [ 7.4278515, 46.0453797 ], + [ 7.4277692, 46.0452222 ], + [ 7.4276553, 46.0450873 ], + [ 7.4275173, 46.0450088 ], + [ 7.4273543, 46.0448403 ], + [ 7.4272316, 46.0445703 ], + [ 7.427142, 46.0444354 ], + [ 7.4271251, 46.0442439 ], + [ 7.4271235, 46.0440187 ], + [ 7.4271793, 46.0438439 ], + [ 7.4272108, 46.0436805 ], + [ 7.4272431, 46.043534 ], + [ 7.4271931, 46.0433821 ], + [ 7.4271196, 46.0432189 ], + [ 7.4270858, 46.0429881 ], + [ 7.4270446, 46.0428249 ], + [ 7.4270681, 46.0426615 ], + [ 7.4270835, 46.0425094 ], + [ 7.4270585, 46.0423236 ], + [ 7.4270173, 46.0421209 ], + [ 7.4269431, 46.0419634 ], + [ 7.4268535, 46.0418173 ], + [ 7.4267639, 46.0416429 ], + [ 7.4266897, 46.0414854 ], + [ 7.4266163, 46.0412884 ], + [ 7.4265824, 46.041097 ], + [ 7.4265655, 46.0409056 ], + [ 7.4265728, 46.0407422 ], + [ 7.4266616, 46.040635 ], + [ 7.4267981, 46.0404657 ], + [ 7.4269031, 46.0403303 ], + [ 7.4270315, 46.0401722 ], + [ 7.4271284, 46.0400143 ], + [ 7.4272245, 46.0398282 ], + [ 7.4273448, 46.0396702 ], + [ 7.4275548, 46.0394838 ], + [ 7.4277235, 46.03932 ], + [ 7.4279577, 46.0391674 ], + [ 7.4281515, 46.0390261 ], + [ 7.4283372, 46.0388623 ], + [ 7.4284898, 46.0386985 ], + [ 7.4286593, 46.038501 ], + [ 7.4289008, 46.0382075 ], + [ 7.4291987, 46.0379139 ], + [ 7.4295782, 46.0376256 ], + [ 7.4300941, 46.0371963 ], + [ 7.430304, 46.0370268 ], + [ 7.4304413, 46.0369419 ], + [ 7.4306189, 46.0368626 ], + [ 7.4307884, 46.0367946 ], + [ 7.4309176, 46.0367154 ], + [ 7.4310306, 46.0366194 ], + [ 7.4311994, 46.0364613 ], + [ 7.4314093, 46.0363311 ], + [ 7.4315788, 46.036235 ], + [ 7.4317491, 46.0361557 ], + [ 7.4319994, 46.0360874 ], + [ 7.4322174, 46.0360249 ], + [ 7.4326307, 46.0359562 ], + [ 7.4330109, 46.0358989 ], + [ 7.4335042, 46.0358244 ], + [ 7.433957, 46.0357444 ], + [ 7.4344503, 46.0355741 ], + [ 7.4351211, 46.0353808 ], + [ 7.4350396, 46.0352121 ], + [ 7.4349984, 46.0350827 ], + [ 7.4349565, 46.0348462 ], + [ 7.4350114, 46.0345194 ], + [ 7.4350833, 46.0341982 ], + [ 7.4351535, 46.0337869 ], + [ 7.435202, 46.0336347 ], + [ 7.4351923, 46.0334432 ], + [ 7.4351996, 46.0332517 ], + [ 7.4351665, 46.0330829 ], + [ 7.4351253, 46.0329197 ], + [ 7.4350349, 46.0327509 ], + [ 7.4349292, 46.0325767 ], + [ 7.4348711, 46.0323684 ], + [ 7.4348453, 46.0320869 ], + [ 7.4348203, 46.031856 ], + [ 7.4347864, 46.0316365 ], + [ 7.4347364, 46.0313212 ], + [ 7.434646, 46.0310229 ], + [ 7.4346452, 46.0308596 ], + [ 7.4346928, 46.0307187 ], + [ 7.4347405, 46.0305271 ], + [ 7.434755, 46.0302736 ], + [ 7.4347623, 46.0300764 ], + [ 7.4347373, 46.0298963 ], + [ 7.4346881, 46.0296993 ], + [ 7.4345815, 46.0294912 ], + [ 7.4344992, 46.0293112 ], + [ 7.4344096, 46.0290805 ], + [ 7.4343515, 46.0288948 ], + [ 7.434245, 46.0286923 ], + [ 7.4341151, 46.0285125 ], + [ 7.4340166, 46.0283157 ], + [ 7.4339424, 46.0280567 ], + [ 7.4338681, 46.0277922 ], + [ 7.4337778, 46.027556 ], + [ 7.4337043, 46.0273703 ], + [ 7.433614, 46.0271453 ], + [ 7.4334429, 46.0269204 ], + [ 7.4331741000000005, 46.0265325 ], + [ 7.4330595, 46.0263413 ], + [ 7.4329449, 46.0261783 ], + [ 7.4327989, 46.0260153 ], + [ 7.4325794, 46.0258301 ], + [ 7.4324414, 46.0257178 ], + [ 7.4322783, 46.0255718 ], + [ 7.4321403, 46.0254369 ], + [ 7.4320669, 46.0253245 ], + [ 7.4320338, 46.0252232 ], + [ 7.4320653, 46.0250711 ], + [ 7.4321049, 46.0248851 ], + [ 7.4321606, 46.024671 ], + [ 7.4322163, 46.0244906 ], + [ 7.4322874, 46.0242144 ], + [ 7.4323835, 46.023927 ], + [ 7.4324545, 46.0236396 ], + [ 7.4324852, 46.0232452 ], + [ 7.4325087, 46.0230142 ], + [ 7.4325563, 46.0228508 ], + [ 7.4325224, 46.0226087 ], + [ 7.4325378, 46.0223778 ], + [ 7.43252, 46.0221863 ], + [ 7.4325112, 46.0219498 ], + [ 7.4325185, 46.0217639 ], + [ 7.43255, 46.0216061 ], + [ 7.432508, 46.0213528 ], + [ 7.43245, 46.0210939 ], + [ 7.4323927, 46.0209026 ], + [ 7.4323023, 46.0207 ], + [ 7.4321635, 46.0204695 ], + [ 7.4320974, 46.0201937 ], + [ 7.4320232, 46.0199686 ], + [ 7.431982, 46.0197998 ], + [ 7.431949, 46.0196027 ], + [ 7.4319724, 46.0194618 ], + [ 7.4320031, 46.019214 ], + [ 7.4320757, 46.0190448 ], + [ 7.4321557, 46.0188757 ], + [ 7.4322759, 46.0186838 ], + [ 7.43238, 46.0184921 ], + [ 7.4325244999999995, 46.0182721 ], + [ 7.4325891, 46.0181029 ], + [ 7.4325875, 46.0178777 ], + [ 7.4324899, 46.017754 ], + [ 7.4323438, 46.0176812 ], + [ 7.4321494, 46.0176254 ], + [ 7.4319541000000005, 46.0174907 ], + [ 7.4318234, 46.0172433 ], + [ 7.4317411, 46.0169788 ], + [ 7.4317161, 46.0167254 ], + [ 7.4316984, 46.0164776 ], + [ 7.4317129, 46.0162241 ], + [ 7.4309746, 46.0158149 ], + [ 7.4306906, 46.0156467 ], + [ 7.4304792, 46.0155515 ], + [ 7.4302928, 46.0155182 ], + [ 7.4301072, 46.0154962 ], + [ 7.4298474, 46.0154461 ], + [ 7.4295883, 46.01543 ], + [ 7.4293858, 46.0154192 ], + [ 7.4291429, 46.0153297 ], + [ 7.4288185, 46.0152404 ], + [ 7.4284458, 46.0151231 ], + [ 7.4281537, 46.0150281 ], + [ 7.4278293, 46.0149501 ], + [ 7.4274815, 46.0148609 ], + [ 7.4272055, 46.0148109 ], + [ 7.4269546, 46.0147496 ], + [ 7.4266544, 46.0146434 ], + [ 7.4263946, 46.014537 ], + [ 7.4261025, 46.014397 ], + [ 7.4258516, 46.0142681 ], + [ 7.4255918, 46.0140999 ], + [ 7.425299, 46.0138978 ], + [ 7.4250803, 46.0137689 ], + [ 7.4249093, 46.0137073 ], + [ 7.4247229, 46.0136177 ], + [ 7.4244712, 46.0134663 ], + [ 7.4241711, 46.0132248 ], + [ 7.4237322, 46.0128768 ], + [ 7.4236015, 46.0127476 ], + [ 7.4233256, 46.0125962 ], + [ 7.4231069, 46.0124447 ], + [ 7.4228956, 46.0123382 ], + [ 7.4226196, 46.0122375 ], + [ 7.4221743, 46.0120697 ], + [ 7.4217442, 46.0119131 ], + [ 7.4214199, 46.0117675 ], + [ 7.4211359, 46.0116668 ], + [ 7.4207874, 46.0115832 ], + [ 7.4205042, 46.0115333 ], + [ 7.4202363, 46.0114213 ], + [ 7.41992, 46.0113151 ], + [ 7.419507, 46.0111753 ], + [ 7.4192391, 46.0110972 ], + [ 7.4190366, 46.0110301 ], + [ 7.4188825, 46.0109347 ], + [ 7.4187769, 46.0108167 ], + [ 7.4186785, 46.0106367 ], + [ 7.418597, 46.0104961 ], + [ 7.4182001, 46.0104577 ], + [ 7.4179168, 46.0104753 ], + [ 7.4176175, 46.0105098 ], + [ 7.4173269, 46.0106739 ], + [ 7.4174246, 46.0107187 ], + [ 7.4173519, 46.0107808 ], + [ 7.4171663, 46.0108489 ], + [ 7.4170291, 46.0109111 ], + [ 7.4168669, 46.0108665 ], + [ 7.4166475, 46.0107432 ], + [ 7.4164692, 46.0106253 ], + [ 7.4163305, 46.0104454 ], + [ 7.4161023, 46.0101362 ], + [ 7.4160612, 46.0100068 ], + [ 7.415891, 46.0098214 ], + [ 7.4157362, 46.0096866 ], + [ 7.415679, 46.0095459 ], + [ 7.4155564, 46.0093717 ], + [ 7.4154588, 46.0092874 ], + [ 7.4153128, 46.0092145 ], + [ 7.4151183, 46.0091756 ], + [ 7.4149159000000004, 46.0091085 ], + [ 7.4147295, 46.0090357 ], + [ 7.4144867, 46.0089406 ], + [ 7.4142673, 46.0088229 ], + [ 7.4140398, 46.0087108 ], + [ 7.41378, 46.0085368 ], + [ 7.4135937, 46.0083852 ], + [ 7.4133259, 46.0082226 ], + [ 7.4129356, 46.0079025 ], + [ 7.412692, 46.0076835 ], + [ 7.4125049, 46.0075318 ], + [ 7.4122694, 46.0072902 ], + [ 7.4120742, 46.007133 ], + [ 7.4118871, 46.0070152 ], + [ 7.4117169, 46.0068861 ], + [ 7.4116032, 46.0068019 ], + [ 7.4114403, 46.0066502 ], + [ 7.4112621, 46.0065211 ], + [ 7.4110758, 46.0064146 ], + [ 7.4109048, 46.0063024 ], + [ 7.4107426, 46.0062239 ], + [ 7.4105313, 46.0060893 ], + [ 7.4102797, 46.0059209 ], + [ 7.4100119, 46.0056906 ], + [ 7.4098417, 46.0056178 ], + [ 7.409728, 46.0055787 ], + [ 7.4096062, 46.0054945 ], + [ 7.4094683, 46.0053878 ], + [ 7.4093385, 46.0052473 ], + [ 7.4091829, 46.0050112 ], + [ 7.4090531, 46.0048087 ], + [ 7.4088975, 46.0045556 ], + [ 7.4087751, 46.0042687 ], + [ 7.4086122, 46.00401 ], + [ 7.4084083, 46.0036951 ], + [ 7.4083592, 46.00356 ], + [ 7.4082858, 46.003442 ], + [ 7.4081883, 46.0032845 ], + [ 7.4080899, 46.0031327 ], + [ 7.4079601, 46.0030091 ], + [ 7.4077892, 46.0028406 ], + [ 7.4075787, 46.0027115 ], + [ 7.4073351, 46.0025713 ], + [ 7.4071811, 46.0025097 ], + [ 7.4069786, 46.0024708 ], + [ 7.4067035, 46.002432 ], + [ 7.4062905, 46.0023654 ], + [ 7.4059339, 46.00231 ], + [ 7.4056742, 46.0022374 ], + [ 7.4053096, 46.0021368 ], + [ 7.405083, 46.0020191 ], + [ 7.4048313, 46.0019296 ], + [ 7.4046289, 46.0018231 ], + [ 7.4043692, 46.001666 ], + [ 7.4042064, 46.0014918 ], + [ 7.4040193, 46.0013177 ], + [ 7.4038323, 46.0010759 ], + [ 7.4035888, 46.0008287 ], + [ 7.4034252, 46.0005981 ], + [ 7.4032785, 46.0003563 ], + [ 7.4030996, 46.0000864 ], + [ 7.4028312, 45.9997266 ], + [ 7.4027087, 45.9996086 ], + [ 7.4025789, 45.9994794 ], + [ 7.4024329, 45.9993783 ], + [ 7.4022539, 45.9992549 ], + [ 7.4020193, 45.999109 ], + [ 7.4018564, 45.9990136 ], + [ 7.4017024, 45.9989408 ], + [ 7.4014999, 45.9988624 ], + [ 7.4013298, 45.9987727 ], + [ 7.4012402999999996, 45.9986715 ], + [ 7.4011105, 45.9985367 ], + [ 7.400996, 45.9984299 ], + [ 7.4008178000000004, 45.9982895 ], + [ 7.4005421, 45.9981043 ], + [ 7.4001526, 45.9979194 ], + [ 7.3996986, 45.9977064 ], + [ 7.3991631, 45.9974486 ], + [ 7.3991059, 45.9973417 ], + [ 7.3991383, 45.997229 ], + [ 7.3991779, 45.9971275 ], + [ 7.3992505, 45.9970654 ], + [ 7.3993231999999995, 45.9969976 ], + [ 7.3994361, 45.9969354 ], + [ 7.3995007, 45.9969071 ], + [ 7.3996056, 45.9968506 ], + [ 7.3996863, 45.996794 ], + [ 7.3998638, 45.9967204 ], + [ 7.4000333, 45.9966469 ], + [ 7.4002028, 45.9965282 ], + [ 7.4003562, 45.9963758 ], + [ 7.400428, 45.996257299999996 ], + [ 7.4004927, 45.996122 ], + [ 7.4004919, 45.9959755 ], + [ 7.400467, 45.9958179 ], + [ 7.4003285, 45.9956155 ], + [ 7.4002713, 45.9954354 ], + [ 7.400165, 45.995216 ], + [ 7.4000506, 45.9949347 ], + [ 7.3999597999999995, 45.9945463 ], + [ 7.3993412, 45.9955389 ], + [ 7.3991885, 45.9957589 ], + [ 7.3990836, 45.9958436 ], + [ 7.3989948, 45.9959002 ], + [ 7.3989141, 45.9959905 ], + [ 7.3988415, 45.9960526 ], + [ 7.3987607, 45.9961541 ], + [ 7.3986566, 45.9962558 ], + [ 7.3985275, 45.9963518 ], + [ 7.3983983, 45.9964366 ], + [ 7.3982692, 45.9965552 ], + [ 7.3980432, 45.996719 ], + [ 7.3978664, 45.9968659 ], + [ 7.3976243, 45.9970467 ], + [ 7.3975273999999995, 45.9971989 ], + [ 7.3974474, 45.9973455 ], + [ 7.3973917, 45.9974808 ], + [ 7.3973028, 45.99765 ], + [ 7.3973446, 45.9978188 ], + [ 7.3973614, 45.9980159 ], + [ 7.3974355, 45.9982354 ], + [ 7.3974691, 45.9985057 ], + [ 7.3975189, 45.9988942 ], + [ 7.3974058, 45.9989958 ], + [ 7.3972936, 45.999103 ], + [ 7.397108, 45.999233 ], + [ 7.3969546, 45.9993798 ], + [ 7.3967536, 45.9995661 ], + [ 7.3965679, 45.9997073 ], + [ 7.3964146, 45.999871 ], + [ 7.3962943, 45.9999895 ], + [ 7.3961974, 46.0000912 ], + [ 7.3961005, 46.0001984 ], + [ 7.3960278, 46.0002943 ], + [ 7.3959317, 46.0004353 ], + [ 7.3958275, 46.0006214 ], + [ 7.3956983, 46.0007963 ], + [ 7.3956425, 46.0009597 ], + [ 7.3955786, 46.0011176 ], + [ 7.3954906, 46.0013093 ], + [ 7.3954267, 46.0014671 ], + [ 7.395354, 46.0015912 ], + [ 7.395266, 46.001704 ], + [ 7.3951933, 46.0018112 ], + [ 7.3951206, 46.0019296 ], + [ 7.3950325, 46.0020876 ], + [ 7.394896, 46.0023075 ], + [ 7.3947676, 46.0025331 ], + [ 7.3946398, 46.0028487 ], + [ 7.3943498, 46.0033 ], + [ 7.3942698, 46.0034635 ], + [ 7.3941656, 46.003627 ], + [ 7.394101, 46.0037398 ], + [ 7.394021, 46.0039145 ], + [ 7.3939167999999995, 46.0041063 ], + [ 7.3938448, 46.0042698 ], + [ 7.3937237, 46.0044559 ], + [ 7.3936195, 46.0046082 ], + [ 7.3935306, 46.0047211 ], + [ 7.3934103, 46.0048509 ], + [ 7.3932569, 46.0050089 ], + [ 7.3931116, 46.0051557 ], + [ 7.3929266, 46.0053476 ], + [ 7.392749, 46.005517 ], + [ 7.3926206, 46.0056298 ], + [ 7.392443, 46.0057992 ], + [ 7.3922896, 46.0059178 ], + [ 7.3921524, 46.0060082 ], + [ 7.3920474, 46.0060705 ], + [ 7.3917892, 46.0061611 ], + [ 7.3915793, 46.0062573 ], + [ 7.3914098, 46.0063422 ], + [ 7.391208, 46.0064609 ], + [ 7.3909812, 46.0065797 ], + [ 7.3906342, 46.0067326 ], + [ 7.3902064, 46.006925 ], + [ 7.3895438, 46.0071743 ], + [ 7.3893178, 46.0073099 ], + [ 7.3891724, 46.0074342 ], + [ 7.3890117, 46.0076091 ], + [ 7.388939, 46.0077219 ], + [ 7.3888179, 46.0078292 ], + [ 7.3887056, 46.0079927 ], + [ 7.3886094, 46.0081732 ], + [ 7.3884647, 46.0084439 ], + [ 7.3883847, 46.0086299 ], + [ 7.3882885, 46.008861 ], + [ 7.3881437, 46.0091936 ], + [ 7.3879991, 46.009453 ], + [ 7.3877745, 46.0097802 ], + [ 7.387541, 46.0100961 ], + [ 7.3873075, 46.0103613 ], + [ 7.3870808, 46.0103787 ], + [ 7.3868783, 46.0103622 ], + [ 7.3866192999999996, 46.0103515 ], + [ 7.3865137, 46.0102785 ], + [ 7.3864161, 46.0102337 ], + [ 7.3862708999999995, 46.0102059 ], + [ 7.3861329, 46.0102062 ], + [ 7.3859231, 46.0102629 ], + [ 7.3857044, 46.0103028 ], + [ 7.3854615, 46.0103259 ], + [ 7.3850008, 46.0103438 ], + [ 7.3845957, 46.0103672 ], + [ 7.3842648, 46.0104243 ], + [ 7.3839243, 46.0104588 ], + [ 7.3835119, 46.0105273 ], + [ 7.3832294, 46.0106687 ], + [ 7.3830114, 46.0107818 ], + [ 7.3827289, 46.0109345 ], + [ 7.3824544, 46.0110421 ], + [ 7.3822115, 46.0111383 ], + [ 7.3819613, 46.011167 ], + [ 7.3815805, 46.0111622 ], + [ 7.3783516, 46.0109631 ], + [ 7.3746731, 46.0054929 ], + [ 7.3743092, 46.0055155 ], + [ 7.3740187, 46.005537 ], + [ 7.3736307, 46.0055544 ], + [ 7.3733644, 46.0055867 ], + [ 7.3731127, 46.0055738 ], + [ 7.3728456, 46.0055667 ], + [ 7.3726174, 46.0055366 ], + [ 7.3723657, 46.0055068 ], + [ 7.3720656, 46.005489 ], + [ 7.3707007, 46.0053304 ], + [ 7.3703191, 46.0053026 ], + [ 7.3685376, 46.004779 ], + [ 7.3681852, 46.0046438 ], + [ 7.3680619, 46.0045895 ], + [ 7.3679128, 46.0044792 ], + [ 7.3677806, 46.0044025 ], + [ 7.3676411, 46.0043372 ], + [ 7.3674685, 46.0042723 ], + [ 7.3672322, 46.0042197 ], + [ 7.3670758, 46.0041378 ], + [ 7.3669113, 46.0040559 ], + [ 7.3666323, 46.0039478 ], + [ 7.3663403, 46.0039185 ], + [ 7.3662419, 46.0038694 ], + [ 7.3661259, 46.0037925 ], + [ 7.3660202, 46.0037828 ], + [ 7.3658976, 46.0037566 ], + [ 7.365679, 46.0037376 ], + [ 7.3654523, 46.0037411 ], + [ 7.365299, 46.0037547 ], + [ 7.365274, 46.003727 ], + [ 7.3652871, 46.0036367 ], + [ 7.3652686, 46.0035695 ], + [ 7.3651864, 46.0035145 ], + [ 7.3650396, 46.0034887 ], + [ 7.3648855, 46.0034967 ], + [ 7.3645692, 46.0034791 ], + [ 7.3641408, 46.0034915 ], + [ 7.3640352, 46.0034819 ], + [ 7.3639691, 46.0034435 ], + [ 7.3639595, 46.0033987 ], + [ 7.3640063, 46.0033417 ], + [ 7.3640782, 46.0032955 ], + [ 7.3642138, 46.0032427 ], + [ 7.3643898, 46.0031723 ], + [ 7.3645415, 46.0031137 ], + [ 7.3646199, 46.0030336 ], + [ 7.3646821, 46.002937 ], + [ 7.364679, 46.0028413 ], + [ 7.3646517, 46.0027405 ], + [ 7.3645929, 46.0026738 ], + [ 7.3645261, 46.0026186 ], + [ 7.3643873, 46.0025926 ], + [ 7.3642413, 46.0025836 ], + [ 7.3641122, 46.0025913 ], + [ 7.364, 46.0026268 ], + [ 7.3638798, 46.0026512 ], + [ 7.3637499, 46.002642 ], + [ 7.3636112, 46.0026161 ], + [ 7.3634717, 46.0025619 ], + [ 7.3632653999999995, 46.0024245 ], + [ 7.3631485, 46.0023137 ], + [ 7.3629986, 46.0021922 ], + [ 7.3630278, 46.0021017 ], + [ 7.3631957, 46.0020259 ], + [ 7.363379, 46.0019216 ], + [ 7.363563, 46.0018625 ], + [ 7.3636245, 46.0017602 ], + [ 7.3636464, 46.0016754 ], + [ 7.3636029, 46.0015804 ], + [ 7.3634957, 46.0015258 ], + [ 7.3633328, 46.0015058 ], + [ 7.3631553, 46.0015255 ], + [ 7.3629132, 46.0015293 ], + [ 7.3626857, 46.0015272 ], + [ 7.3625228, 46.001496 ], + [ 7.3623511, 46.0014368 ], + [ 7.3622439, 46.0013709 ], + [ 7.3621939, 46.0013154 ], + [ 7.3621755, 46.0012594 ], + [ 7.3621651, 46.0011751 ], + [ 7.3622596, 46.0011005 ], + [ 7.3623944, 46.0010196 ], + [ 7.3625543, 46.0009326 ], + [ 7.3623414, 46.0008684 ], + [ 7.3621615, 46.0008093 ], + [ 7.3619575, 46.0007506 ], + [ 7.361727, 46.0006473 ], + [ 7.3615625, 46.0005653 ], + [ 7.3614391999999995, 46.0004885 ], + [ 7.3613642, 46.000439 ], + [ 7.3613031, 46.0002824 ], + [ 7.361242, 46.0001426 ], + [ 7.361164, 45.9999918 ], + [ 7.3611351, 45.9998459 ], + [ 7.3611563, 45.9997386 ], + [ 7.361308, 45.9996687 ], + [ 7.3614744, 45.9995648 ], + [ 7.3616890999999995, 45.9994319 ], + [ 7.3618063, 45.9993062 ], + [ 7.3616361, 45.9993033 ], + [ 7.3614901, 45.999283 ], + [ 7.3613433, 45.9992516 ], + [ 7.3612119, 45.9991917 ], + [ 7.3611692, 45.9991417 ], + [ 7.3611684, 45.9991023 ], + [ 7.3612057, 45.999006 ], + [ 7.3612898, 45.9988527 ], + [ 7.3613593, 45.9987335 ], + [ 7.361395, 45.9986034 ], + [ 7.3613904, 45.9984571 ], + [ 7.3613719, 45.9983786 ], + [ 7.3614688, 45.9983602 ], + [ 7.3615728, 45.998336 ], + [ 7.3616954, 45.9983567 ], + [ 7.3616762, 45.9982725 ], + [ 7.36169, 45.9981935 ], + [ 7.3617522, 45.9981137 ], + [ 7.3618863, 45.9980102 ], + [ 7.3620073, 45.9979803 ], + [ 7.362176, 45.9979551 ], + [ 7.3623712, 45.9979858 ], + [ 7.3627462, 45.9980531 ], + [ 7.3630881, 45.9981265 ], + [ 7.3632583, 45.9981238 ], + [ 7.3633794, 45.9981051 ], + [ 7.3636045, 45.9980677 ], + [ 7.3637739, 45.9980426 ], + [ 7.3638949, 45.9980238 ], + [ 7.3641024, 45.9979417 ], + [ 7.3642856, 45.9978488 ], + [ 7.3645004, 45.9977159 ], + [ 7.364619, 45.9976409 ], + [ 7.3646675, 45.9976345 ], + [ 7.3648288, 45.9976264 ], + [ 7.3648546, 45.9976709 ], + [ 7.3649553, 45.9977763 ], + [ 7.3651043, 45.9978922 ], + [ 7.3652527, 45.9979743 ], + [ 7.3653825, 45.9979835 ], + [ 7.3654947, 45.9979255 ], + [ 7.365565, 45.9978512 ], + [ 7.366001, 45.9975741 ], + [ 7.3661043, 45.997505 ], + [ 7.3662342, 45.9975086 ], + [ 7.3663729, 45.997557 ], + [ 7.3665123999999995, 45.9975999 ], + [ 7.3666599, 45.9976538 ], + [ 7.3667905, 45.9977081 ], + [ 7.3669124, 45.9977005 ], + [ 7.3670222, 45.9976031 ], + [ 7.3670925, 45.9975119 ], + [ 7.3675685, 45.9974594 ], + [ 7.3679086, 45.9977299 ], + [ 7.3680465, 45.9977277 ], + [ 7.3681829, 45.9977031 ], + [ 7.368249, 45.9977358 ], + [ 7.3683473, 45.9977737 ], + [ 7.368428, 45.9977668 ], + [ 7.368524, 45.9977427 ], + [ 7.3686216, 45.9977412 ], + [ 7.3687434, 45.997773 ], + [ 7.3688975, 45.9977593 ], + [ 7.3690185, 45.9977462 ], + [ 7.3691476, 45.9977442 ], + [ 7.3692548, 45.9978156 ], + [ 7.3693232, 45.9979103 ], + [ 7.3694159, 45.9980271 ], + [ 7.3695319, 45.9981265 ], + [ 7.369648, 45.9982035 ], + [ 7.369802, 45.9982011 ], + [ 7.3699069, 45.9981938 ], + [ 7.3699884, 45.9982094 ], + [ 7.3700464, 45.9982535 ], + [ 7.3700971, 45.9983316 ], + [ 7.3701559, 45.9983925 ], + [ 7.3702382, 45.9984419 ], + [ 7.3703043, 45.998469 ], + [ 7.3703784, 45.9985185 ], + [ 7.3704372, 45.9985964 ], + [ 7.3704638, 45.9986522 ], + [ 7.3704911, 45.9987475 ], + [ 7.3705111, 45.998871 ], + [ 7.3705561, 45.9990111 ], + [ 7.3706053, 45.999044 ], + [ 7.3706553, 45.9990658 ], + [ 7.3707036, 45.9990819 ], + [ 7.3708262, 45.9991025 ], + [ 7.3709392, 45.9990838 ], + [ 7.3710836, 45.9990534 ], + [ 7.3712039, 45.9990065 ], + [ 7.3713072, 45.9989654 ], + [ 7.3714678, 45.9989122 ], + [ 7.371613, 45.9988931 ], + [ 7.3717509, 45.9989078 ], + [ 7.3718574, 45.9989399 ], + [ 7.3719799, 45.998983 ], + [ 7.3721832, 45.9990135 ], + [ 7.3723196, 45.9989664 ], + [ 7.3725124, 45.9989183 ], + [ 7.3727675, 45.9987904 ], + [ 7.3730468, 45.9986621 ], + [ 7.3731743, 45.9986151 ], + [ 7.3733591, 45.9985728 ], + [ 7.3735842, 45.9985298 ], + [ 7.373807, 45.9983856 ], + [ 7.3738588, 45.9982553 ], + [ 7.3738145, 45.9981378 ], + [ 7.373705, 45.9979988 ], + [ 7.3734874, 45.9977771 ], + [ 7.3732327, 45.9976404 ], + [ 7.3733645, 45.9973828 ], + [ 7.373589, 45.9971394 ], + [ 7.3739677, 45.9968294 ], + [ 7.3743794, 45.9965527 ], + [ 7.3749356, 45.9962174 ], + [ 7.3758113, 45.9957701 ], + [ 7.3765434, 45.9953532 ], + [ 7.3767904, 45.9952424 ], + [ 7.3770163, 45.9952106 ], + [ 7.377176, 45.9951574 ], + [ 7.3773884, 45.994945799999996 ], + [ 7.3777121, 45.9946986 ], + [ 7.3780035999999996, 45.9944407 ], + [ 7.3781369, 45.9943035 ], + [ 7.3782985, 45.9940476 ], + [ 7.3784343, 45.9937359 ], + [ 7.3785468, 45.9934526 ], + [ 7.3786292, 45.9932655 ], + [ 7.3787302, 45.993111999999996 ], + [ 7.3790297, 45.9928652 ], + [ 7.3792033, 45.9927217 ], + [ 7.3793462, 45.9926294 ], + [ 7.3795447, 45.9925193 ], + [ 7.3797037, 45.992421 ], + [ 7.3797966, 45.9923013 ], + [ 7.3799824, 45.9920451 ], + [ 7.3801425, 45.9917329 ], + [ 7.3802887, 45.9914773 ], + [ 7.3804027, 45.9912503 ], + [ 7.3805166, 45.991029 ], + [ 7.3805903, 45.9907858 ], + [ 7.3806663, 45.9906326 ], + [ 7.3807592, 45.990496 ], + [ 7.3808336, 45.9902922 ], + [ 7.3808999, 45.990111 ], + [ 7.3809179, 45.989908 ], + [ 7.38096, 45.9896934 ], + [ 7.3810256, 45.9894785 ], + [ 7.3811637, 45.9892455 ], + [ 7.3813269, 45.9890178 ], + [ 7.3815498999999996, 45.9886483 ], + [ 7.3816597, 45.9885509 ], + [ 7.3816784, 45.9883817 ], + [ 7.3816633, 45.9881511 ], + [ 7.3816151, 45.9879099 ], + [ 7.3815516, 45.9877082 ], + [ 7.3814631, 45.9874732 ], + [ 7.3814173, 45.987305 ], + [ 7.3814311, 45.9872316 ], + [ 7.3815006, 45.9871123 ], + [ 7.3815185, 45.9869206 ], + [ 7.3815042, 45.9867407 ], + [ 7.3814261, 45.9865731 ], + [ 7.3813642, 45.9863939 ], + [ 7.3813015, 45.9862035 ], + [ 7.3812775, 45.9859675 ], + [ 7.3813212, 45.9858316 ], + [ 7.3814859, 45.9856658 ], + [ 7.3815281, 45.9854625 ], + [ 7.3815007999999995, 45.9853616 ], + [ 7.3816106, 45.9852417 ], + [ 7.3817874, 45.9849686 ], + [ 7.3818642, 45.9848267 ], + [ 7.3818998, 45.984691 ], + [ 7.3818621, 45.984511499999996 ], + [ 7.3818493, 45.9843765 ], + [ 7.3819253, 45.9842121 ], + [ 7.381874, 45.983864 ], + [ 7.3818686, 45.9836952 ], + [ 7.3819461, 45.9835926 ], + [ 7.3820962, 45.9834889 ], + [ 7.3821415, 45.9833812 ], + [ 7.3820933, 45.9831455 ], + [ 7.3819999, 45.9829951 ], + [ 7.3818573, 45.9828565 ], + [ 7.3817147, 45.9827012 ], + [ 7.3816294, 45.9825562 ], + [ 7.3816504, 45.9824433 ], + [ 7.3816288, 45.982286 ], + [ 7.3815992, 45.9821288 ], + [ 7.3815034, 45.9819164 ], + [ 7.3813528, 45.9817444 ], + [ 7.3811836, 45.9815275 ], + [ 7.3810749, 45.9814166 ], + [ 7.3810371, 45.9812539 ], + [ 7.3810036, 45.9809505 ], + [ 7.3809419, 45.9805405 ], + [ 7.3810647, 45.9803359 ], + [ 7.3811414, 45.9802165 ], + [ 7.3813158, 45.9800899 ], + [ 7.3814739, 45.9799804 ], + [ 7.3816797, 45.9798252 ], + [ 7.3818855, 45.9796981 ], + [ 7.3820187, 45.979544 ], + [ 7.3821842, 45.9794063 ], + [ 7.3823004, 45.9792412 ], + [ 7.3824506, 45.9791262 ], + [ 7.3826571, 45.9790103 ], + [ 7.3829516, 45.9788536 ], + [ 7.3831888, 45.9787035 ], + [ 7.3833462, 45.9785491 ], + [ 7.3834529, 45.9783503 ], + [ 7.3834789, 45.9781529 ], + [ 7.3835057, 45.9779667 ], + [ 7.3836269, 45.9777171 ], + [ 7.3838053, 45.9774778 ], + [ 7.3839676, 45.9772445 ], + [ 7.3841968, 45.977055 ], + [ 7.3844567, 45.9768426 ], + [ 7.3846617, 45.9766649 ], + [ 7.3848974, 45.9764641 ], + [ 7.3851096, 45.9762637 ], + [ 7.3852808, 45.9760526 ], + [ 7.3854366, 45.9758645 ], + [ 7.3857521, 45.9756005 ], + [ 7.3858619, 45.9754861 ], + [ 7.3858572, 45.9753399 ], + [ 7.3858452, 45.9752275 ], + [ 7.3857517999999995, 45.9750883 ], + [ 7.3856415, 45.9749267 ], + [ 7.3854877, 45.9746702 ], + [ 7.3853919, 45.9744747 ], + [ 7.3853196, 45.9742395 ], + [ 7.3852972, 45.9740259 ], + [ 7.385299, 45.9738513 ], + [ 7.3853185, 45.9736934 ], + [ 7.385363, 45.9735576 ], + [ 7.3854397, 45.9734213 ], + [ 7.3855487, 45.9732901 ], + [ 7.3857076, 45.9731975 ], + [ 7.3859061, 45.9730931 ], + [ 7.3861465, 45.973016 ], + [ 7.3864716, 45.9728195 ], + [ 7.3867257, 45.9726578 ], + [ 7.3869775, 45.9724455 ], + [ 7.3871276, 45.9723305 ], + [ 7.3872197, 45.9721715 ], + [ 7.3874337, 45.9717796 ], + [ 7.3877003, 45.9712463 ], + [ 7.387777, 45.9711212 ], + [ 7.3878287, 45.9709853 ], + [ 7.387862, 45.9707596 ], + [ 7.3879195, 45.9705222 ], + [ 7.3880084, 45.9702619 ], + [ 7.3881022, 45.9699058 ], + [ 7.3881428, 45.9696687 ], + [ 7.3881342, 45.969393 ], + [ 7.3881014, 45.9691233 ], + [ 7.3880685, 45.9688762 ], + [ 7.3879421, 45.968698 ], + [ 7.3868993, 45.9689904 ], + [ 7.3864743, 45.9691154 ], + [ 7.3859291, 45.9692648 ], + [ 7.3855372, 45.9694005 ], + [ 7.3851605, 45.9695135 ], + [ 7.3848073, 45.9696091 ], + [ 7.3843573, 45.969712 ], + [ 7.3840508, 45.969745 ], + [ 7.3836968, 45.9698013 ], + [ 7.3833178, 45.9698523 ], + [ 7.3829557999999995, 45.9698975 ], + [ 7.3826324, 45.9699082 ], + [ 7.3823018, 45.9699417 ], + [ 7.382076, 45.9699621 ], + [ 7.3817197, 45.9699622 ], + [ 7.3812577, 45.9699413 ], + [ 7.3808352, 45.9698917 ], + [ 7.3802838, 45.9698554 ], + [ 7.3799347, 45.9698046 ], + [ 7.3795292, 45.9697773 ], + [ 7.3793115, 45.969792 ], + [ 7.379093, 45.9697955 ], + [ 7.3789236, 45.9698207 ], + [ 7.3786575, 45.9698586 ], + [ 7.3783761, 45.9699082 ], + [ 7.378118, 45.9699291 ], + [ 7.3778584, 45.9699163 ], + [ 7.377623, 45.9698751 ], + [ 7.3773458, 45.9698062 ], + [ 7.3770515, 45.9697377 ], + [ 7.376767, 45.9696803 ], + [ 7.3764744, 45.9696343 ], + [ 7.3762559, 45.9696321 ], + [ 7.3759398, 45.9696258 ], + [ 7.3755496, 45.9695757 ], + [ 7.3752908, 45.9695742 ], + [ 7.3750796, 45.9695437 ], + [ 7.374754, 45.9694813 ], + [ 7.3743404, 45.9694484 ], + [ 7.3739687, 45.96946 ], + [ 7.3735743, 45.9695281 ], + [ 7.3733808, 45.9695536 ], + [ 7.373201, 45.9694889 ], + [ 7.3729069, 45.9694092 ], + [ 7.3725313, 45.9692912 ], + [ 7.3721806, 45.9692236 ], + [ 7.3718243, 45.9692067 ], + [ 7.3716219, 45.9691986 ], + [ 7.3714599, 45.9691899 ], + [ 7.3712655, 45.9692042 ], + [ 7.3708444, 45.9694305 ], + [ 7.3706612, 45.9695178 ], + [ 7.3704635, 45.9696672 ], + [ 7.3703046, 45.9697654 ], + [ 7.3701287, 45.9698245 ], + [ 7.3698884, 45.9698959 ], + [ 7.3695923, 45.9700018 ], + [ 7.3693489, 45.9699775 ], + [ 7.3692068, 45.9700924 ], + [ 7.3690398, 45.9701963 ], + [ 7.3688808, 45.9702832 ], + [ 7.3686574, 45.9703656 ], + [ 7.3684074, 45.9704145 ], + [ 7.3681912, 45.9704742 ], + [ 7.368, 45.9705617 ], + [ 7.367866, 45.970682 ], + [ 7.3676698, 45.9708652 ], + [ 7.3673953, 45.9711397 ], + [ 7.3672275, 45.9712268 ], + [ 7.3670759, 45.9712799 ], + [ 7.3668984, 45.9713052 ], + [ 7.3665905, 45.9712875 ], + [ 7.3664542, 45.9713177 ], + [ 7.3663113, 45.9714045 ], + [ 7.3661838, 45.971474 ], + [ 7.365983, 45.971511 ], + [ 7.3658121, 45.9714911 ], + [ 7.3657411, 45.9715542 ], + [ 7.3656547, 45.9716287 ], + [ 7.3655345, 45.97167 ], + [ 7.3653652, 45.9716726 ], + [ 7.3650894000000005, 45.9716545 ], + [ 7.3648379, 45.9716359 ], + [ 7.3646202, 45.9716675 ], + [ 7.3644274, 45.9717043 ], + [ 7.3641862, 45.9717643 ], + [ 7.3639128, 45.9718137 ], + [ 7.3636878, 45.9718622 ], + [ 7.363495, 45.9719047 ], + [ 7.3632677, 45.9718913 ], + [ 7.3629597, 45.9718568 ], + [ 7.362626, 45.9718113 ], + [ 7.3623817, 45.9717589 ], + [ 7.3620802, 45.9717017 ], + [ 7.3617481, 45.9716844 ], + [ 7.3613998, 45.9716561 ], + [ 7.3612773, 45.9716186 ], + [ 7.3611378, 45.9715814 ], + [ 7.3609194, 45.9715679 ], + [ 7.360621, 45.971612 ], + [ 7.3604225, 45.9717165 ], + [ 7.3602516, 45.9716966 ], + [ 7.3600645, 45.9716714 ], + [ 7.3597969, 45.9716474 ], + [ 7.3594436, 45.9717374 ], + [ 7.3591314, 45.9718436 ], + [ 7.3591337, 45.9718943 ], + [ 7.3591061, 45.9720467 ], + [ 7.3590439, 45.9721265 ], + [ 7.3590131, 45.9722001 ], + [ 7.3590178, 45.9723239 ], + [ 7.3590362, 45.9724024 ], + [ 7.3589902, 45.972482 ], + [ 7.3589836, 45.9725439 ], + [ 7.3589963, 45.9726733 ], + [ 7.3589664, 45.9727638 ], + [ 7.3589372, 45.9728599 ], + [ 7.3589572, 45.9729666 ], + [ 7.3589998, 45.9730504 ], + [ 7.3590029, 45.9731516 ], + [ 7.359039, 45.9732524 ], + [ 7.3591066, 45.9733639 ], + [ 7.3591846, 45.9735147 ], + [ 7.3591547, 45.9735883 ], + [ 7.3591335, 45.97369 ], + [ 7.3590875, 45.9737751 ], + [ 7.3590994, 45.9738876 ], + [ 7.3590862999999995, 45.9739947 ], + [ 7.3590403, 45.9740686 ], + [ 7.3589877, 45.9742101 ], + [ 7.3589439, 45.974346 ], + [ 7.3589106, 45.974566 ], + [ 7.3589159, 45.9747405 ], + [ 7.3589206, 45.9748923 ], + [ 7.3588664, 45.9749664 ], + [ 7.3587962000000005, 45.9750407 ], + [ 7.3586863, 45.9751662 ], + [ 7.3585934, 45.9752916 ], + [ 7.3585562, 45.9754047 ], + [ 7.3585078, 45.9759234 ], + [ 7.3584929, 45.9762163 ], + [ 7.3584395, 45.976312899999996 ], + [ 7.3583758, 45.9763532 ], + [ 7.3582806, 45.9763941 ], + [ 7.3580805, 45.9764648 ], + [ 7.3578416, 45.9765868 ], + [ 7.357723, 45.9766787 ], + [ 7.3576534, 45.9767867 ], + [ 7.3576412, 45.9769051 ], + [ 7.3576677, 45.9769891 ], + [ 7.3577337, 45.9770276 ], + [ 7.3578087, 45.9770826 ], + [ 7.3577875, 45.9771787 ], + [ 7.3577422, 45.977292 ], + [ 7.3576792, 45.9773492 ], + [ 7.3576098, 45.977446 ], + [ 7.3575555999999995, 45.9775313 ], + [ 7.357478, 45.9776339 ], + [ 7.3573505, 45.9777034 ], + [ 7.3572795, 45.9777552 ], + [ 7.3572495, 45.9778457 ], + [ 7.3572104, 45.9781447 ], + [ 7.3571885, 45.9782126 ], + [ 7.3571102, 45.978287 ], + [ 7.3570487, 45.9783949 ], + [ 7.3570437, 45.9784963 ], + [ 7.3570975, 45.9786475 ], + [ 7.3571506, 45.978793 ], + [ 7.3571859, 45.9788938 ], + [ 7.3571567, 45.9790068 ], + [ 7.3571276, 45.9790861 ], + [ 7.3570653, 45.9791884 ], + [ 7.3569966, 45.9793077 ], + [ 7.3569593, 45.9794096 ], + [ 7.3569697, 45.9794826 ], + [ 7.3569551, 45.9795391 ], + [ 7.3569171, 45.9796073 ], + [ 7.3568549, 45.9796927 ], + [ 7.3567854, 45.9798063 ], + [ 7.3567005, 45.9799146 ], + [ 7.3566617, 45.9799884 ], + [ 7.3566487, 45.9800674 ], + [ 7.3566356, 45.9801746 ], + [ 7.3566814, 45.9803371 ], + [ 7.3567271, 45.9804996 ], + [ 7.3567132, 45.9805956 ], + [ 7.3566672, 45.9806751 ], + [ 7.3566534, 45.9807429 ], + [ 7.3566645, 45.9808272 ], + [ 7.3566684, 45.9809565 ], + [ 7.3566849, 45.9812321 ], + [ 7.3567137, 45.9813668 ], + [ 7.3567007, 45.9814739 ], + [ 7.3566884, 45.9815867 ], + [ 7.3566665, 45.9816772 ], + [ 7.3567099, 45.9817665 ], + [ 7.3567445, 45.9818391 ], + [ 7.3567242, 45.9819577 ], + [ 7.3567257, 45.982014 ], + [ 7.3567507, 45.9820361 ], + [ 7.3568175, 45.9820857 ], + [ 7.3568191, 45.9821307 ], + [ 7.3568044, 45.9821985 ], + [ 7.3567672, 45.9822948 ], + [ 7.3567161, 45.9824701 ], + [ 7.3566175, 45.9826799 ], + [ 7.3565760000000004, 45.9828945 ], + [ 7.3565403, 45.9830583 ], + [ 7.3564723, 45.9832057 ], + [ 7.356364, 45.983365 ], + [ 7.3562419, 45.9836033 ], + [ 7.3561674, 45.9837903 ], + [ 7.3561002, 45.9839884 ], + [ 7.3560637, 45.9841128 ], + [ 7.356058, 45.9841804 ], + [ 7.3561249, 45.9842357 ], + [ 7.3561755, 45.9843193 ], + [ 7.3561295, 45.9843876 ], + [ 7.3560899, 45.9844276 ], + [ 7.3559486, 45.9845536 ], + [ 7.3558620999999995, 45.9846507 ], + [ 7.3558652, 45.9847463 ], + [ 7.3559175, 45.9848637 ], + [ 7.3558841, 45.9850726 ], + [ 7.3557961, 45.9851246 ], + [ 7.3557097, 45.9851934 ], + [ 7.3555837, 45.985308 ], + [ 7.3554593, 45.9854676 ], + [ 7.3553341, 45.985599 ], + [ 7.3551797, 45.9858378 ], + [ 7.3550883, 45.9860307 ], + [ 7.3550226, 45.9862456 ], + [ 7.3549635, 45.9864267 ], + [ 7.3549358, 45.9865735 ], + [ 7.3549808, 45.9867303 ], + [ 7.3549919, 45.9868203 ], + [ 7.354995, 45.9869103 ], + [ 7.3549724, 45.986967 ], + [ 7.3549424, 45.9870462 ], + [ 7.3549301, 45.987159 ], + [ 7.3549347, 45.9873166 ], + [ 7.3549636, 45.9874625 ], + [ 7.3550239, 45.9875685 ], + [ 7.3551084, 45.9876797 ], + [ 7.35511, 45.9877303 ], + [ 7.3550961, 45.9878038 ], + [ 7.3550589, 45.987917 ], + [ 7.3550289, 45.9879962 ], + [ 7.3550231, 45.9880695 ], + [ 7.3550408, 45.9881198 ], + [ 7.3551011, 45.9882315 ], + [ 7.3551784, 45.988371 ], + [ 7.3552387, 45.9884827 ], + [ 7.3552418, 45.9885783 ], + [ 7.3551949, 45.988641 ], + [ 7.3551238, 45.9886983 ], + [ 7.3550382, 45.9887898 ], + [ 7.3549033999999995, 45.9888876 ], + [ 7.3547855, 45.9889964 ], + [ 7.3546787, 45.9892063 ], + [ 7.3545842, 45.989281 ], + [ 7.3544824, 45.9893839 ], + [ 7.3543741, 45.9895376 ], + [ 7.3542884, 45.9896571 ], + [ 7.3541552, 45.9897887 ], + [ 7.3540856, 45.9898911 ], + [ 7.3540161, 45.990016 ], + [ 7.3539869, 45.9900953 ], + [ 7.3539497, 45.9902029 ], + [ 7.3539373999999995, 45.9903325 ], + [ 7.3539405, 45.9904225 ], + [ 7.3539281, 45.9905634 ], + [ 7.3538997, 45.9906709 ], + [ 7.3538398, 45.9908237 ], + [ 7.3537711, 45.9909487 ], + [ 7.3537353, 45.9911181 ], + [ 7.3537231, 45.9912365 ], + [ 7.3537269, 45.9913547 ], + [ 7.3537373, 45.9914389 ], + [ 7.3537323, 45.9915178 ], + [ 7.3537508, 45.991602 ], + [ 7.3537707, 45.9917143 ], + [ 7.3537746, 45.9918493 ], + [ 7.3537777, 45.9919281 ], + [ 7.3537646, 45.9920353 ], + [ 7.3537758, 45.9921308 ], + [ 7.3537861, 45.9921982 ], + [ 7.3538198999999995, 45.9922539 ], + [ 7.3538472, 45.9923548 ], + [ 7.3538745, 45.9924332 ], + [ 7.3538768, 45.9925232 ], + [ 7.3538791, 45.9925851 ], + [ 7.3539064, 45.992686 ], + [ 7.3539756, 45.9928257 ], + [ 7.354077, 45.9929705 ], + [ 7.3541535, 45.993065 ], + [ 7.3541792, 45.9931265 ], + [ 7.3541984, 45.9932219 ], + [ 7.3542418, 45.9933056 ], + [ 7.3543337, 45.9933887 ], + [ 7.3544005, 45.993472 ], + [ 7.3544117, 45.9935676 ], + [ 7.3544478, 45.9936908 ], + [ 7.3546007, 45.9939024 ], + [ 7.3545949, 45.9939868 ], + [ 7.3545746, 45.9940998 ], + [ 7.3545784, 45.9942292 ], + [ 7.3546226, 45.9943467 ], + [ 7.3546103, 45.9944651 ], + [ 7.354565, 45.9945615 ], + [ 7.3545262, 45.9946353 ], + [ 7.354464, 45.9946982 ], + [ 7.354401, 45.9947554 ], + [ 7.3543461, 45.994807 ], + [ 7.3543153, 45.994875 ], + [ 7.3543023, 45.9949597 ], + [ 7.3542481, 45.9950506 ], + [ 7.3541375, 45.9951424 ], + [ 7.3540268, 45.9952173 ], + [ 7.3539331, 45.9953314 ], + [ 7.3538685, 45.995338 ], + [ 7.3537644, 45.995379 ], + [ 7.3537545, 45.9955536 ], + [ 7.3537656, 45.995666 ], + [ 7.353738, 45.9958129 ], + [ 7.3536934, 45.9959261 ], + [ 7.3536707, 45.9959884 ], + [ 7.3537134, 45.9960497 ], + [ 7.3537407, 45.996145 ], + [ 7.3537203, 45.9962804 ], + [ 7.3536992, 45.996382 ], + [ 7.3536112, 45.9964003 ], + [ 7.3535305, 45.9964185 ], + [ 7.3533772, 45.9964321 ], + [ 7.3530925, 45.9964027 ], + [ 7.3528667, 45.9964119 ], + [ 7.3527456, 45.9964363 ], + [ 7.3526769, 45.99655 ], + [ 7.3526138, 45.9966185 ], + [ 7.352529, 45.9967437 ], + [ 7.3524675, 45.9968516 ], + [ 7.3523883, 45.9969147 ], + [ 7.3522543, 45.9970238 ], + [ 7.3521759, 45.9971038 ], + [ 7.3520975, 45.9971951 ], + [ 7.3519973, 45.9973318 ], + [ 7.3519438, 45.9974508 ], + [ 7.3518574, 45.9975366 ], + [ 7.3517548, 45.9976114 ], + [ 7.3516523, 45.9976862 ], + [ 7.3514375, 45.9978134 ], + [ 7.3513026, 45.9979055 ], + [ 7.3512162, 45.9979857 ], + [ 7.3511878, 45.99811 ], + [ 7.3511586, 45.9982061 ], + [ 7.3511036, 45.998280199999996 ], + [ 7.3510341, 45.9983713 ], + [ 7.3510034, 45.9984169 ], + [ 7.3510121999999996, 45.9984617 ], + [ 7.3510145, 45.9985236 ], + [ 7.3510014, 45.9986195 ], + [ 7.350948, 45.9987329 ], + [ 7.3509269, 45.9988177 ], + [ 7.3508477, 45.9988921 ], + [ 7.3507459, 45.9989894 ], + [ 7.3505408, 45.9991558 ], + [ 7.3505665, 45.9992117 ], + [ 7.350618, 45.9993066 ], + [ 7.350563, 45.9993638 ], + [ 7.3504847, 45.9994325 ], + [ 7.3503579, 45.9995246 ], + [ 7.3501489, 45.9995785 ], + [ 7.3501216, 45.9994664 ], + [ 7.3500178, 45.9992709 ], + [ 7.3499141, 45.9990699 ], + [ 7.3497958, 45.9988972 ], + [ 7.3496444, 45.9987251 ], + [ 7.349385, 45.9984645 ], + [ 7.3491288, 45.998294 ], + [ 7.3489474999999995, 45.998173 ], + [ 7.3487331, 45.9980525 ], + [ 7.3485348, 45.9979261 ], + [ 7.3483792, 45.9978778 ], + [ 7.3482075, 45.9978074 ], + [ 7.3479866, 45.9977488 ], + [ 7.3477826, 45.9976958 ], + [ 7.3475793, 45.9976595 ], + [ 7.3473915, 45.9976117 ], + [ 7.3471471, 45.9975762 ], + [ 7.3468478, 45.9975695 ], + [ 7.3465074, 45.9975636 ], + [ 7.3461766, 45.9975913 ], + [ 7.345724, 45.9976264 ], + [ 7.345427, 45.9977098 ], + [ 7.3404836, 45.9949494 ], + [ 7.3404064, 45.9948155 ], + [ 7.3403373, 45.9946702 ], + [ 7.3402117, 45.9945258 ], + [ 7.3400127, 45.9943826 ], + [ 7.3398725, 45.9943003 ], + [ 7.3396186, 45.9941972 ], + [ 7.3394146, 45.9941554 ], + [ 7.339171, 45.9941254 ], + [ 7.3388203, 45.9940463 ], + [ 7.3385921, 45.9940048 ], + [ 7.3384776, 45.9939503 ], + [ 7.33841, 45.9938725 ], + [ 7.3383505, 45.9937834 ], + [ 7.3383217, 45.9936263 ], + [ 7.3383229, 45.993401 ], + [ 7.3383291, 45.9931026 ], + [ 7.3383749, 45.9927416 ], + [ 7.3383396, 45.9926465 ], + [ 7.3382463, 45.9925184 ], + [ 7.3381214, 45.9924078 ], + [ 7.3379547, 45.9922527 ], + [ 7.3377631, 45.9920756 ], + [ 7.3376229, 45.9919821 ], + [ 7.3374996, 45.991922 ], + [ 7.3373094, 45.991818 ], + [ 7.3370475, 45.9917095 ], + [ 7.3367379, 45.9916524 ], + [ 7.3365024, 45.9916278 ], + [ 7.3362808, 45.9915131 ], + [ 7.3360752, 45.9914262 ], + [ 7.335781, 45.9913294 ], + [ 7.3354779, 45.9912159 ], + [ 7.3352079, 45.9911187 ], + [ 7.3349548, 45.9910438 ], + [ 7.3348542, 45.9909328 ], + [ 7.3347616, 45.9908216 ], + [ 7.3346126, 45.9907339 ], + [ 7.3344892999999995, 45.9906626 ], + [ 7.3343879, 45.9905347 ], + [ 7.3342865, 45.9903955 ], + [ 7.334136, 45.9902402 ], + [ 7.3339862, 45.9901018 ], + [ 7.3337784, 45.9899305 ], + [ 7.3334643, 45.9897102 ], + [ 7.3332235, 45.9895169 ], + [ 7.3329577, 45.9893015 ], + [ 7.3326508, 45.989081 ], + [ 7.3324431, 45.9888872 ], + [ 7.3323982, 45.988764 ], + [ 7.3323952, 45.9886515 ], + [ 7.3323994, 45.9885332 ], + [ 7.3323384, 45.9883934 ], + [ 7.3322531, 45.9882597 ], + [ 7.3320777, 45.9880766 ], + [ 7.3319425, 45.9878929 ], + [ 7.3318323, 45.9877483 ], + [ 7.331739, 45.9875977 ], + [ 7.3315908, 45.9875099 ], + [ 7.3314218, 45.9872986 ], + [ 7.3312771, 45.9870644 ], + [ 7.331125, 45.9868698 ], + [ 7.3309326, 45.9866701 ], + [ 7.3307572, 45.986487 ], + [ 7.3305994, 45.9863543 ], + [ 7.3303586, 45.986161 ], + [ 7.3301677, 45.9860007 ], + [ 7.3299503999999995, 45.9857845 ], + [ 7.3297089, 45.9855631 ], + [ 7.3295019, 45.9854142 ], + [ 7.3292158, 45.9853173 ], + [ 7.3289385, 45.9852428 ], + [ 7.3285071, 45.9851763 ], + [ 7.3281484, 45.9850917 ], + [ 7.3277155, 45.9849801 ], + [ 7.3274287, 45.9848495 ], + [ 7.3272817, 45.984559 ], + [ 7.3271362, 45.9843023 ], + [ 7.3270341, 45.984135 ], + [ 7.3268218, 45.9838174 ], + [ 7.3265861, 45.9835227 ], + [ 7.3263688, 45.9832896 ], + [ 7.3261611, 45.9831183 ], + [ 7.3258469999999996, 45.9829148 ], + [ 7.3255094, 45.9827399 ], + [ 7.3249887, 45.9826409 ], + [ 7.3247694, 45.9826049 ], + [ 7.3246526, 45.9825053 ], + [ 7.3245448, 45.9824057 ], + [ 7.3243474, 45.9823074 ], + [ 7.3240943, 45.9822324 ], + [ 7.3239541, 45.9821727 ], + [ 7.3238866, 45.9820612 ], + [ 7.3238578, 45.9819321 ], + [ 7.3238034, 45.9817415 ], + [ 7.3237175, 45.981574 ], + [ 7.3235927, 45.9814633 ], + [ 7.3234767, 45.9813807 ], + [ 7.3233462, 45.9813376 ], + [ 7.3231027, 45.9813133 ], + [ 7.3229068, 45.9812769 ], + [ 7.3227117, 45.9812404 ], + [ 7.3224198, 45.9812168 ], + [ 7.3221344, 45.9811648 ], + [ 7.3218668000000005, 45.9811408 ], + [ 7.3215426, 45.981112 ], + [ 7.321324, 45.9811266 ], + [ 7.3210967, 45.9810907 ], + [ 7.3209177, 45.9810653 ], + [ 7.3206565999999995, 45.9809848 ], + [ 7.3204035, 45.9809212 ], + [ 7.3201835, 45.9808626 ], + [ 7.3199458, 45.9807818 ], + [ 7.3197968, 45.9806603 ], + [ 7.3194497, 45.9804404 ], + [ 7.3191445, 45.9802368 ], + [ 7.3188547, 45.980033 ], + [ 7.3189229000000005, 45.9801614 ], + [ 7.3189589999999995, 45.9802734 ], + [ 7.3189393, 45.9804257 ], + [ 7.3189189, 45.9805442 ], + [ 7.3188508, 45.9806916 ], + [ 7.3187827, 45.980839 ], + [ 7.3186728, 45.9809533 ], + [ 7.3185944, 45.9810333 ], + [ 7.3184441, 45.981165 ], + [ 7.3182858, 45.9812801 ], + [ 7.3181686, 45.9813945 ], + [ 7.3180675, 45.9815368 ], + [ 7.3179283999999996, 45.9817415 ], + [ 7.3178442, 45.9819004 ], + [ 7.31776, 45.9820537 ], + [ 7.3177072, 45.9821896 ], + [ 7.3176545, 45.9823199 ], + [ 7.3175439, 45.9824116 ], + [ 7.3174428, 45.9825258 ], + [ 7.3173732, 45.9826394 ], + [ 7.3172244, 45.9828105 ], + [ 7.3170999, 45.9829701 ], + [ 7.3170575, 45.9831678 ], + [ 7.3170379, 45.9833032 ], + [ 7.3169882, 45.9835291 ], + [ 7.3169231, 45.9837946 ], + [ 7.3168177, 45.9840552 ], + [ 7.3167065000000004, 45.9843665 ], + [ 7.3166787, 45.9845302 ], + [ 7.3166994, 45.9846818 ], + [ 7.3167523, 45.9848161 ], + [ 7.3168617, 45.9849552 ], + [ 7.3169227, 45.9850893 ], + [ 7.3169522, 45.9852521 ], + [ 7.3169156, 45.9853878 ], + [ 7.3168556, 45.9855463 ], + [ 7.3167706, 45.9856715 ], + [ 7.3167678, 45.9858404 ], + [ 7.3168611, 45.9859853 ], + [ 7.3170196, 45.9861349 ], + [ 7.3172662, 45.9862493 ], + [ 7.3176778, 45.9864795 ], + [ 7.3179589, 45.9866609 ], + [ 7.3181461, 45.9869621 ], + [ 7.3180039, 45.9870768 ], + [ 7.3178683, 45.9871521 ], + [ 7.3177415, 45.9872384 ], + [ 7.3176792, 45.9873069 ], + [ 7.3175854, 45.9874153 ], + [ 7.3174836, 45.9875182 ], + [ 7.3173817, 45.9876267 ], + [ 7.3171999, 45.9877814 ], + [ 7.3170988, 45.9879181 ], + [ 7.3170615, 45.9880144 ], + [ 7.3170492, 45.9881216 ], + [ 7.3169473, 45.9882413 ], + [ 7.3170302, 45.9883132 ], + [ 7.3170839, 45.9884644 ], + [ 7.3170788, 45.9885771 ], + [ 7.3170173, 45.9886737 ], + [ 7.3169734, 45.988832 ], + [ 7.3169134, 45.9889792 ], + [ 7.3169091, 45.9891032 ], + [ 7.316896, 45.9892103 ], + [ 7.316869, 45.9893796 ], + [ 7.3167291, 45.9895563 ], + [ 7.3165084, 45.9897679 ], + [ 7.3162701, 45.9899123 ], + [ 7.3158186, 45.9902231 ], + [ 7.3156632, 45.990445 ], + [ 7.3154925, 45.9906728 ], + [ 7.3153856, 45.9908884 ], + [ 7.3152948, 45.9910755 ], + [ 7.3152598, 45.9912562 ], + [ 7.3152789, 45.9913628 ], + [ 7.3153399, 45.9914857 ], + [ 7.3154097, 45.9916704 ], + [ 7.3154319, 45.9918446 ], + [ 7.3154283, 45.9920135 ], + [ 7.3153690000000005, 45.9921721 ], + [ 7.3152679, 45.992303 ], + [ 7.3151587, 45.9924454 ], + [ 7.3150649, 45.9925651 ], + [ 7.3149711, 45.9926735 ], + [ 7.3148942, 45.9927985 ], + [ 7.3148415, 45.9929119 ], + [ 7.3147792, 45.9930086 ], + [ 7.314637, 45.9931121 ], + [ 7.3144148, 45.9932562 ], + [ 7.3147496, 45.9936169 ], + [ 7.3147277, 45.9936849 ], + [ 7.3146749, 45.9938263 ], + [ 7.3146875, 45.9939613 ], + [ 7.3147243, 45.9940958 ], + [ 7.3147684, 45.9942303 ], + [ 7.3147187, 45.9944618 ], + [ 7.3146125, 45.9946886 ], + [ 7.3144917, 45.9949662 ], + [ 7.3143936, 45.9951929 ], + [ 7.3143577, 45.9953511 ], + [ 7.3144099, 45.9954741 ], + [ 7.3144871, 45.9956025 ], + [ 7.3146141, 45.995775 ], + [ 7.3147001, 45.9959369 ], + [ 7.3147038, 45.9960663 ], + [ 7.3146687, 45.996247 ], + [ 7.314578, 45.9964455 ], + [ 7.3144475, 45.9966951 ], + [ 7.3143398, 45.9968768 ], + [ 7.3143121, 45.9970181 ], + [ 7.3143577, 45.9971806 ], + [ 7.3144187, 45.9973316 ], + [ 7.3144643, 45.9974829 ], + [ 7.3144204, 45.9976299 ], + [ 7.3143435, 45.9977663 ], + [ 7.3142181, 45.9979145 ], + [ 7.3140928, 45.9980459 ], + [ 7.3139448, 45.9982283 ], + [ 7.3137402, 45.9984341 ], + [ 7.3134873, 45.9986124 ], + [ 7.3132636, 45.9987115 ], + [ 7.3129585, 45.998795 ], + [ 7.3126857, 45.9988779 ], + [ 7.3124443, 45.9989323 ], + [ 7.3123102, 45.99903 ], + [ 7.3121606, 45.9991674 ], + [ 7.3120176, 45.9992709 ], + [ 7.3117836, 45.9992857 ], + [ 7.3114609, 45.9993188 ], + [ 7.3109848, 45.9993823 ], + [ 7.3107192, 45.9994314 ], + [ 7.3105785, 45.9995799 ], + [ 7.3104627, 45.9997843 ], + [ 7.3103976, 46.0000161 ], + [ 7.3103802, 46.0002416 ], + [ 7.3104507, 46.0004263 ], + [ 7.3104714, 46.0005779 ], + [ 7.3104605, 46.0007526 ], + [ 7.3106264, 46.0008908 ], + [ 7.3106793, 46.0010194 ], + [ 7.310799, 46.0012372 ], + [ 7.3109326, 46.0013702 ], + [ 7.3110098, 46.0014929 ], + [ 7.3110385, 46.0016557 ], + [ 7.3110357, 46.0018134 ], + [ 7.3111062, 46.0020037 ], + [ 7.3112421, 46.0022155 ], + [ 7.3113538, 46.0024221 ], + [ 7.3113421, 46.0025742 ], + [ 7.3112821, 46.0027272 ], + [ 7.3113643, 46.0027597 ], + [ 7.3114883, 46.0028422 ], + [ 7.3115912, 46.0030264 ], + [ 7.3116801, 46.0032896 ], + [ 7.3116223, 46.0035213 ], + [ 7.3116122, 46.0037129 ], + [ 7.3116731999999995, 46.0038639 ], + [ 7.3117665, 46.0040032 ], + [ 7.3119251, 46.0041359 ], + [ 7.3121167, 46.0043188 ], + [ 7.3123083, 46.0045072 ], + [ 7.3126214, 46.0051892 ], + [ 7.3127206, 46.0055367 ], + [ 7.3128312, 46.0062331 ], + [ 7.3129482, 46.006614 ], + [ 7.3130114, 46.0068157 ], + [ 7.3129676, 46.0069628 ], + [ 7.3129163, 46.0071437 ], + [ 7.3128893, 46.0073355 ], + [ 7.3128749, 46.0076397 ], + [ 7.3128273, 46.0079556 ], + [ 7.3128298, 46.0082934 ], + [ 7.312877, 46.0084896 ], + [ 7.3130436, 46.0086672 ], + [ 7.3130973, 46.0088241 ], + [ 7.3130761, 46.0089257 ], + [ 7.3129676, 46.0090794 ], + [ 7.3127799, 46.0092905 ], + [ 7.3127045, 46.0094774 ], + [ 7.3127575, 46.0096061 ], + [ 7.3128523, 46.0097904 ], + [ 7.3128663, 46.0099872 ], + [ 7.3128128, 46.0101062 ], + [ 7.3127147, 46.0103273 ], + [ 7.3125746, 46.0105264 ], + [ 7.3124412, 46.0106635 ], + [ 7.3123305, 46.0107328 ], + [ 7.3122286, 46.0108413 ], + [ 7.3121839, 46.0109658 ], + [ 7.31217, 46.0110448 ], + [ 7.3120923, 46.011153 ], + [ 7.3119985, 46.0112726 ], + [ 7.3118254, 46.0114216 ], + [ 7.3115167, 46.0116459 ], + [ 7.3112863, 46.0118126 ], + [ 7.3113297, 46.0118964 ], + [ 7.3113562, 46.0119692 ], + [ 7.3113357, 46.0120933 ], + [ 7.3112845, 46.0122686 ], + [ 7.3111540999999995, 46.0124957 ], + [ 7.3110097, 46.0128131 ], + [ 7.3108851, 46.0129727 ], + [ 7.3107428, 46.0130762 ], + [ 7.3105894, 46.0131066 ], + [ 7.3105117, 46.0132091 ], + [ 7.3104172, 46.0132894 ], + [ 7.3102345, 46.0134104 ], + [ 7.3099954, 46.013521 ], + [ 7.3097313, 46.0136319 ], + [ 7.309421, 46.0138112 ], + [ 7.3090696, 46.0139741 ], + [ 7.3088789, 46.0140897 ], + [ 7.3088665, 46.0142024 ], + [ 7.3088702, 46.0143431 ], + [ 7.3088778, 46.0145737 ], + [ 7.3088757, 46.0147708 ], + [ 7.3087672, 46.0149414 ], + [ 7.308581, 46.0152031 ], + [ 7.3084021, 46.015431 ], + [ 7.3082605, 46.0155851 ], + [ 7.3080933, 46.0156777 ], + [ 7.3079084, 46.0157143 ], + [ 7.3077176999999995, 46.0158185 ], + [ 7.3074889, 46.0160134 ], + [ 7.3069981, 46.016398 ], + [ 7.3069358, 46.0164778 ], + [ 7.3069007, 46.0166416 ], + [ 7.3068956, 46.0167542 ], + [ 7.3069001, 46.0168836 ], + [ 7.3068547, 46.0169857 ], + [ 7.3067512, 46.0170604 ], + [ 7.3066405, 46.0171465 ], + [ 7.3065297, 46.0172383 ], + [ 7.3064366, 46.0173691 ], + [ 7.3064315, 46.0174593 ], + [ 7.3064256, 46.0175438 ], + [ 7.3063553, 46.0176237 ], + [ 7.3062849, 46.0176867 ], + [ 7.3062129, 46.0177384 ], + [ 7.3060545, 46.0178422 ], + [ 7.3059042, 46.0179514 ], + [ 7.3057846, 46.0180151 ], + [ 7.3056746, 46.0181237 ], + [ 7.3055726, 46.0182266 ], + [ 7.3054641, 46.0183971 ], + [ 7.3053717, 46.0185505 ], + [ 7.305239, 46.0187158 ], + [ 7.3051209, 46.0188133 ], + [ 7.3049947, 46.0189278 ], + [ 7.3049067, 46.0189629 ], + [ 7.3047298, 46.0190219 ], + [ 7.3045949, 46.0190915 ], + [ 7.3044914, 46.0191493 ], + [ 7.304396, 46.0192239 ], + [ 7.3043425, 46.0193148 ], + [ 7.3042875, 46.0193832 ], + [ 7.304234, 46.0194741 ], + [ 7.3042032, 46.0195365 ], + [ 7.3041328, 46.0195994 ], + [ 7.304022, 46.0196912 ], + [ 7.30392, 46.0198053 ], + [ 7.3038042, 46.0199928 ], + [ 7.3037002, 46.0202871 ], + [ 7.2972761, 46.0215721 ], + [ 7.2971608, 46.0215006 ], + [ 7.2970544, 46.0214516 ], + [ 7.2968826, 46.0214147 ], + [ 7.2967381, 46.0214507 ], + [ 7.2966265, 46.02152 ], + [ 7.2965569, 46.0216111 ], + [ 7.2965033, 46.0217132 ], + [ 7.2964594, 46.0218715 ], + [ 7.2963317, 46.021941 ], + [ 7.2962194, 46.0219595 ], + [ 7.2961893, 46.0220557 ], + [ 7.2961263, 46.022096 ], + [ 7.2960036, 46.0220753 ], + [ 7.2957938, 46.0220785 ], + [ 7.2957879, 46.0221687 ], + [ 7.2956779, 46.0222604 ], + [ 7.2955707, 46.022217 ], + [ 7.29552, 46.0221446 ], + [ 7.2954048, 46.0220675 ], + [ 7.2953402, 46.0220854 ], + [ 7.2953029, 46.022176 ], + [ 7.2951612, 46.0223245 ], + [ 7.2950225, 46.0222985 ], + [ 7.294875, 46.0222331 ], + [ 7.2947428, 46.0221563 ], + [ 7.2945981, 46.0219221 ], + [ 7.2943648, 46.0219706 ], + [ 7.2941806, 46.0220466 ], + [ 7.2939994, 46.0222013 ], + [ 7.2938181, 46.0223785 ], + [ 7.2936692, 46.0225384 ], + [ 7.2935695, 46.0227088 ], + [ 7.2934521, 46.02284 ], + [ 7.2933493, 46.0229372 ], + [ 7.2932224, 46.0230292 ], + [ 7.2930647, 46.023161 ], + [ 7.2928658, 46.023271 ], + [ 7.2927154, 46.0233914 ], + [ 7.2925899, 46.0235228 ], + [ 7.2925709, 46.0236977 ], + [ 7.2923941, 46.0237397 ], + [ 7.2924227, 46.0238912 ], + [ 7.2923185, 46.0239266 ], + [ 7.2922723, 46.0239892 ], + [ 7.2921688, 46.0240527 ], + [ 7.2920492, 46.0241333 ], + [ 7.2918907, 46.0242426 ], + [ 7.2918541, 46.0243614 ], + [ 7.2918901, 46.0244847 ], + [ 7.2918527, 46.0245866 ], + [ 7.291791, 46.0246888 ], + [ 7.2917052, 46.0247858 ], + [ 7.2916839, 46.0249043 ], + [ 7.2917361, 46.0250218 ], + [ 7.2917398, 46.0251399 ], + [ 7.2917531, 46.0253086 ], + [ 7.2916922, 46.0254334 ], + [ 7.2915902, 46.0255475 ], + [ 7.2914786, 46.0256111 ], + [ 7.2914809, 46.0256674 ], + [ 7.2915617, 46.0259307 ], + [ 7.2915985, 46.0260709 ], + [ 7.2915838, 46.0261386 ], + [ 7.2915214, 46.0262071 ], + [ 7.2914583, 46.0262756 ], + [ 7.2914209, 46.0263606 ], + [ 7.2912859, 46.0264584 ], + [ 7.2913373, 46.0265477 ], + [ 7.2913902, 46.0266932 ], + [ 7.2915238, 46.0268207 ], + [ 7.2917639, 46.0269972 ], + [ 7.2913829, 46.026986 ], + [ 7.2912141, 46.0270224 ], + [ 7.2912970999999995, 46.0270999 ], + [ 7.2914219, 46.0271937 ], + [ 7.2915768, 46.0272308 ], + [ 7.2917794, 46.027239 ], + [ 7.2919974, 46.0272076 ], + [ 7.2922381, 46.0271364 ], + [ 7.2922101999999995, 46.027294499999996 ], + [ 7.2926301, 46.0272375 ], + [ 7.2924335, 46.0274262 ], + [ 7.2926096, 46.0273672 ], + [ 7.2927549, 46.0273482 ], + [ 7.2929157, 46.0273063 ], + [ 7.2931659, 46.0272744 ], + [ 7.2934243, 46.027248 ], + [ 7.2936408, 46.0271772 ], + [ 7.2938484, 46.0271009 ], + [ 7.2940715, 46.0269737 ], + [ 7.2942242, 46.0269207 ], + [ 7.2943461, 46.0269414 ], + [ 7.2946382, 46.0269595 ], + [ 7.2947351, 46.0269581 ], + [ 7.2950111, 46.0269652 ], + [ 7.2951645, 46.0269516 ], + [ 7.2953825, 46.0269258 ], + [ 7.2955843, 46.0269058 ], + [ 7.2958184, 46.0268911 ], + [ 7.2960606, 46.0268649 ], + [ 7.2963278, 46.0268609 ], + [ 7.296562, 46.0268236 ], + [ 7.2969194, 46.0268632 ], + [ 7.2971954, 46.0268928 ], + [ 7.2973429, 46.0269469 ], + [ 7.2974729, 46.0269618 ], + [ 7.2976835, 46.026953 ], + [ 7.2979338, 46.0269267 ], + [ 7.2980887, 46.0269581 ], + [ 7.2982605, 46.0270175 ], + [ 7.298425, 46.0270882 ], + [ 7.2985562999999996, 46.027165 ], + [ 7.2985366, 46.0273004 ], + [ 7.2985242, 46.02743 ], + [ 7.2984714, 46.027549 ], + [ 7.2983929, 46.0276459 ], + [ 7.2982586, 46.027738 ], + [ 7.298106, 46.0277854 ], + [ 7.2979871, 46.0278772 ], + [ 7.2980855, 46.0279095 ], + [ 7.2982645999999995, 46.0279462 ], + [ 7.298476, 46.0279768 ], + [ 7.2987278, 46.0279899 ], + [ 7.298898, 46.0280098 ], + [ 7.2990779, 46.0280465 ], + [ 7.2989099, 46.0281109 ], + [ 7.2990809, 46.0281478 ], + [ 7.2989282, 46.0282008 ], + [ 7.2990193, 46.02825 ], + [ 7.2991426, 46.0283101 ], + [ 7.2993225, 46.0283581 ], + [ 7.2994524, 46.0283898 ], + [ 7.2996558, 46.028398 ], + [ 7.2998818, 46.0283946 ], + [ 7.3000418, 46.0283303 ], + [ 7.3001291, 46.0282501 ], + [ 7.3002553, 46.0281413 ], + [ 7.3004286, 46.0282513 ], + [ 7.3006877, 46.0282473 ], + [ 7.3007956, 46.0283245 ], + [ 7.3009263, 46.0283732 ], + [ 7.3011876, 46.0284424 ], + [ 7.3016207, 46.0285766 ], + [ 7.3018674, 46.0286967 ], + [ 7.3019277, 46.0288084 ], + [ 7.3018573, 46.0288883 ], + [ 7.3016826, 46.0290091 ], + [ 7.3018544, 46.0290684 ], + [ 7.3017231, 46.0292618 ], + [ 7.3018795, 46.0293495 ], + [ 7.3014979, 46.0295861 ], + [ 7.3015178, 46.0297096 ], + [ 7.3010437, 46.0298294 ], + [ 7.3010613, 46.0298854 ], + [ 7.301195, 46.0299959 ], + [ 7.3013918, 46.030083 ], + [ 7.3015643, 46.0301705 ], + [ 7.301347, 46.0302132 ], + [ 7.3014257, 46.0304034 ], + [ 7.3012319, 46.0304176 ], + [ 7.3013399, 46.030506 ], + [ 7.3009949, 46.0306182 ], + [ 7.3012439, 46.0308002 ], + [ 7.3015332, 46.0309928 ], + [ 7.3017226, 46.0311138 ], + [ 7.3020838, 46.0312547 ], + [ 7.302442, 46.0313281 ], + [ 7.3029817, 46.0314719 ], + [ 7.3036189, 46.0316536 ], + [ 7.3040102000000005, 46.0317434 ], + [ 7.3042546999999995, 46.0317904 ], + [ 7.3044346, 46.0318383 ], + [ 7.304784, 46.0318836 ], + [ 7.3068633, 46.0315481 ], + [ 7.3089481, 46.0316459 ], + [ 7.3092983, 46.0316969 ], + [ 7.3094136, 46.0317514 ], + [ 7.3092213, 46.0318219 ], + [ 7.3090137, 46.0319095 ], + [ 7.3088228, 46.0320419 ], + [ 7.3086321, 46.0321573 ], + [ 7.3060941, 46.0341942 ], + [ 7.3059128, 46.0343546 ], + [ 7.3057382, 46.0344642 ], + [ 7.305562, 46.0345456 ], + [ 7.3052824, 46.0346625 ], + [ 7.3050013, 46.0347399 ], + [ 7.3046790999999995, 46.0348011 ], + [ 7.3042915, 46.034852 ], + [ 7.3038467, 46.0348588 ], + [ 7.3033019, 46.0348051 ], + [ 7.3029348, 46.0347262 ], + [ 7.3028644, 46.0347892 ], + [ 7.302711, 46.0348253 ], + [ 7.302595, 46.0347314 ], + [ 7.3023197, 46.0347412 ], + [ 7.3020532, 46.0347565 ], + [ 7.3018256, 46.0347487 ], + [ 7.3016546, 46.0347006 ], + [ 7.3016442999999995, 46.0346388 ], + [ 7.3017059, 46.0345366 ], + [ 7.3018916, 46.0345 ], + [ 7.3021419, 46.0344793 ], + [ 7.3023276, 46.0344596 ], + [ 7.3023269, 46.0344315 ], + [ 7.3022608, 46.03441 ], + [ 7.3021557999999995, 46.0344003 ], + [ 7.3020178, 46.0343967 ], + [ 7.3017983, 46.0343719 ], + [ 7.301603, 46.0343411 ], + [ 7.3013255, 46.0342778 ], + [ 7.301073, 46.0342253 ], + [ 7.30086, 46.0341666 ], + [ 7.3006075, 46.0341141 ], + [ 7.300435, 46.0340266 ], + [ 7.3002617, 46.033928 ], + [ 7.3001096, 46.033722 ], + [ 7.3000148, 46.0335432 ], + [ 7.2999935, 46.0333634 ], + [ 7.2999691, 46.0330936 ], + [ 7.2998736, 46.0328924 ], + [ 7.297618, 46.0333037 ], + [ 7.297687, 46.0334377 ], + [ 7.2977303, 46.033544 ], + [ 7.297701, 46.0336401 ], + [ 7.2976306, 46.03372 ], + [ 7.2975455, 46.0338395 ], + [ 7.2974509, 46.0339197 ], + [ 7.2973812, 46.0340221 ], + [ 7.2973599, 46.0341238 ], + [ 7.2972821, 46.0342431 ], + [ 7.297186, 46.0342671 ], + [ 7.2969840999999995, 46.0342927 ], + [ 7.2967257, 46.0343247 ], + [ 7.2965246, 46.0343728 ], + [ 7.2963008, 46.034455 ], + [ 7.2961342, 46.0345757 ], + [ 7.2960087, 46.0347071 ], + [ 7.2959331, 46.0348939 ], + [ 7.2958657, 46.0350807 ], + [ 7.2956455, 46.0353036 ], + [ 7.2948023, 46.0360594 ], + [ 7.2945726, 46.0362486 ], + [ 7.2942966, 46.0365004 ], + [ 7.2941404, 46.0366661 ], + [ 7.2939642, 46.0367531 ], + [ 7.2934738, 46.0368731 ], + [ 7.2930011, 46.0370491 ], + [ 7.2925035, 46.0371917 ], + [ 7.2918927, 46.0373528 ], + [ 7.2912585, 46.0375538 ], + [ 7.2909318, 46.0377388 ], + [ 7.2908548, 46.0378526 ], + [ 7.2908042, 46.0380616 ], + [ 7.2907536, 46.0382594 ], + [ 7.2906685, 46.0383845 ], + [ 7.2905738, 46.0384873 ], + [ 7.2904468, 46.0385624 ], + [ 7.2902699, 46.0386044 ], + [ 7.2900849, 46.0386523 ], + [ 7.2898515, 46.0387064 ], + [ 7.2895791, 46.0388118 ], + [ 7.2893553, 46.0388996 ], + [ 7.2891563, 46.0390264 ], + [ 7.288909, 46.0391315 ], + [ 7.2887747, 46.0392461 ], + [ 7.2886492, 46.0393943 ], + [ 7.2885398, 46.0395254 ], + [ 7.2883557, 46.0398491 ], + [ 7.2881824, 46.0400262 ], + [ 7.2880562, 46.0401463 ], + [ 7.2878792, 46.0401883 ], + [ 7.2876935, 46.0402024 ], + [ 7.2875247, 46.0402443 ], + [ 7.2873969, 46.0403082 ], + [ 7.287245, 46.040378 ], + [ 7.2871019, 46.0404533 ], + [ 7.2869477, 46.0404613 ], + [ 7.2867539, 46.0404754 ], + [ 7.2864543, 46.0404743 ], + [ 7.2861548, 46.0404788 ], + [ 7.2859852, 46.0404982 ], + [ 7.2857766999999996, 46.0405689 ], + [ 7.2856432, 46.040706 ], + [ 7.285453, 46.0408439 ], + [ 7.2853194, 46.0409867 ], + [ 7.2852078, 46.0410615 ], + [ 7.2851205, 46.0411191 ], + [ 7.2850104, 46.0412165 ], + [ 7.2849164, 46.0413304 ], + [ 7.2848474, 46.041461 ], + [ 7.2846735, 46.0416043 ], + [ 7.284526, 46.0417979 ], + [ 7.2843696, 46.0419916 ], + [ 7.2842111, 46.042101 ], + [ 7.2841083, 46.0421926 ], + [ 7.2840393, 46.0423287 ], + [ 7.2839806, 46.0425153 ], + [ 7.2838793, 46.0426688 ], + [ 7.283775, 46.0429744 ], + [ 7.2836782, 46.0432348 ], + [ 7.2835138, 46.0434343 ], + [ 7.2834132, 46.0435821 ], + [ 7.2833266, 46.0436791 ], + [ 7.2832158, 46.0437483 ], + [ 7.2830307, 46.0438074 ], + [ 7.2827745, 46.0439125 ], + [ 7.2825352, 46.0440175 ], + [ 7.2822158, 46.0441799 ], + [ 7.2818047, 46.0442422 ], + [ 7.2817834, 46.0443439 ], + [ 7.281829, 46.0445065 ], + [ 7.281884, 46.0447252 ], + [ 7.2820023, 46.0448923 ], + [ 7.2821542, 46.0451039 ], + [ 7.2822563, 46.0452656 ], + [ 7.2823261, 46.0454278 ], + [ 7.2823952, 46.0455563 ], + [ 7.2824722, 46.0457071 ], + [ 7.2825993, 46.0458797 ], + [ 7.2827417, 46.0460464 ], + [ 7.2829576, 46.0462177 ], + [ 7.2832169, 46.0464784 ], + [ 7.2833939, 46.0466953 ], + [ 7.283587, 46.0469176 ], + [ 7.283731, 46.047118 ], + [ 7.2838661, 46.0473187 ], + [ 7.2839271, 46.0474528 ], + [ 7.2840188, 46.0475416 ], + [ 7.2840849, 46.04758 ], + [ 7.2841599, 46.0476464 ], + [ 7.2842759, 46.0477403 ], + [ 7.2843758, 46.0478177 ], + [ 7.2844917, 46.0479172 ], + [ 7.284657, 46.0480217 ], + [ 7.2847826, 46.0481381 ], + [ 7.2849397, 46.0482483 ], + [ 7.2850741, 46.0484095 ], + [ 7.2852489, 46.0485589 ], + [ 7.2854317, 46.0487194 ], + [ 7.2858548, 46.0490226 ], + [ 7.2859708, 46.049111 ], + [ 7.2861852, 46.0492485 ], + [ 7.286302, 46.0493537 ], + [ 7.2864503, 46.0494471 ], + [ 7.2866140999999995, 46.049501 ], + [ 7.2867551, 46.0496058 ], + [ 7.2869284, 46.0496989 ], + [ 7.2871348, 46.0498309 ], + [ 7.2872684, 46.0499696 ], + [ 7.28748, 46.0502592 ], + [ 7.287549, 46.0503932 ], + [ 7.2876408, 46.0504876 ], + [ 7.2877099, 46.050616 ], + [ 7.2877444, 46.0506943 ], + [ 7.2877789, 46.0507725 ], + [ 7.287873, 46.0509287 ], + [ 7.2879501, 46.0510571 ], + [ 7.2880515, 46.0512019 ], + [ 7.2881308, 46.0514146 ], + [ 7.2881999, 46.05156 ], + [ 7.2882903, 46.0518569 ], + [ 7.2883733, 46.0521878 ], + [ 7.2884652, 46.0525523 ], + [ 7.2885498, 46.0529282 ], + [ 7.2886813, 46.0532583 ], + [ 7.2889024, 46.0536096 ], + [ 7.2892249, 46.0540945 ], + [ 7.2893101, 46.0542284 ], + [ 7.28928, 46.0543076 ], + [ 7.2892345, 46.0544096 ], + [ 7.2891956, 46.0544551 ], + [ 7.2891082, 46.0545242 ], + [ 7.2889797, 46.0545598 ], + [ 7.2887786, 46.054591 ], + [ 7.2885905, 46.0545487 ], + [ 7.2883702, 46.0544958 ], + [ 7.2880927, 46.0544154 ], + [ 7.2881962, 46.0546391 ], + [ 7.2882153, 46.0547345 ], + [ 7.2882183, 46.0548189 ], + [ 7.288172, 46.0549153 ], + [ 7.2880722, 46.0550913 ], + [ 7.2880348, 46.0551988 ], + [ 7.2880627, 46.055311 ], + [ 7.2880414, 46.0554239 ], + [ 7.2879636, 46.0555151 ], + [ 7.2879093, 46.0555891 ], + [ 7.2878557, 46.0556969 ], + [ 7.2877456, 46.0558054 ], + [ 7.2876046, 46.0559821 ], + [ 7.2872823, 46.0592349 ], + [ 7.2874909, 46.0594345 ], + [ 7.287789, 46.0596608 ], + [ 7.2880631, 46.0598593 ], + [ 7.2883752, 46.060001 ], + [ 7.2886059, 46.060127 ], + [ 7.2887623, 46.0602034 ], + [ 7.2888791, 46.0603199 ], + [ 7.288979, 46.0604141 ], + [ 7.2892251, 46.0605005 ], + [ 7.291084, 46.0608721 ], + [ 7.2912405, 46.0609373 ], + [ 7.291355, 46.0609807 ], + [ 7.2916304, 46.0609878 ], + [ 7.2919654, 46.0610559 ], + [ 7.292077, 46.060998 ], + [ 7.2921636, 46.0609234 ], + [ 7.2922752, 46.0608542 ], + [ 7.2924361, 46.0608124 ], + [ 7.2926858, 46.0607637 ], + [ 7.293, 46.0607251 ], + [ 7.2934282, 46.060668 ], + [ 7.2940091, 46.0605917 ], + [ 7.2942683, 46.0605822 ], + [ 7.2944726, 46.0606185 ], + [ 7.2947098, 46.0606938 ], + [ 7.2948647, 46.0607477 ], + [ 7.2950939, 46.0608117 ], + [ 7.2952739, 46.0608654 ], + [ 7.2955266, 46.0609066 ], + [ 7.295705, 46.0609264 ], + [ 7.295918, 46.0609851 ], + [ 7.2961714, 46.0610713 ], + [ 7.2963925, 46.0611299 ], + [ 7.2965894, 46.061217 ], + [ 7.2967759, 46.0612312 ], + [ 7.2970382, 46.0613173 ], + [ 7.2972673, 46.061387 ], + [ 7.2974788, 46.0614175 ], + [ 7.2977315, 46.0614531 ], + [ 7.2979753, 46.0614945 ], + [ 7.2983492, 46.0615283 ], + [ 7.2987796, 46.0615443 ], + [ 7.2992569, 46.0615258 ], + [ 7.2995509, 46.0618647 ], + [ 7.2997104, 46.0620255 ], + [ 7.2997206, 46.0621154 ], + [ 7.2997486, 46.0622333 ], + [ 7.2998354, 46.0624121 ], + [ 7.299856, 46.0625637 ], + [ 7.2998789, 46.062766 ], + [ 7.2998745, 46.0628899 ], + [ 7.299904, 46.063064 ], + [ 7.299965, 46.0632039 ], + [ 7.2999687, 46.0633388 ], + [ 7.2999482, 46.0634517 ], + [ 7.2999012, 46.0635031 ], + [ 7.2998476, 46.0636221 ], + [ 7.299811, 46.0637409 ], + [ 7.2998338, 46.0639657 ], + [ 7.299831, 46.0641346 ], + [ 7.2998708, 46.0643704 ], + [ 7.2999098, 46.0645838 ], + [ 7.2999385, 46.0647297 ], + [ 7.2999907, 46.064836 ], + [ 7.3000737, 46.0649134 ], + [ 7.3001428, 46.0650588 ], + [ 7.3001884, 46.0652213 ], + [ 7.3001518, 46.06534 ], + [ 7.3000909, 46.0654761 ], + [ 7.2999654, 46.0655962 ], + [ 7.2998368, 46.0656544 ], + [ 7.2996525, 46.0657191 ], + [ 7.2995182, 46.0658169 ], + [ 7.2993992, 46.0659143 ], + [ 7.2993052, 46.0660115 ], + [ 7.2991863, 46.0661089 ], + [ 7.2991562, 46.0661882 ], + [ 7.2991746, 46.0662554 ], + [ 7.299218, 46.0663393 ], + [ 7.2992685999999996, 46.0664229 ], + [ 7.299354, 46.0665456 ], + [ 7.2994488, 46.0667411 ], + [ 7.2995275, 46.0669144 ], + [ 7.2995312, 46.0670495 ], + [ 7.2994864, 46.0671795 ], + [ 7.2993447, 46.0673169 ], + [ 7.2991046, 46.0674162 ], + [ 7.2988233000000005, 46.0674935 ], + [ 7.2993076, 46.0679477 ], + [ 7.2992701, 46.0680497 ], + [ 7.2992651, 46.0681455 ], + [ 7.2992915, 46.0682239 ], + [ 7.2993283, 46.0683641 ], + [ 7.2993225, 46.0684318 ], + [ 7.2992623, 46.0685846 ], + [ 7.2992359, 46.0687932 ], + [ 7.2992426, 46.0690183 ], + [ 7.2992479, 46.0691872 ], + [ 7.2993112, 46.0693831 ], + [ 7.2993471, 46.0695234 ], + [ 7.2994574, 46.0696681 ], + [ 7.2994597, 46.0697356 ], + [ 7.2994803, 46.0698873 ], + [ 7.2995905, 46.0700545 ], + [ 7.2996582, 46.0701323 ], + [ 7.2997486, 46.0701703 ], + [ 7.2998874, 46.0702188 ], + [ 7.3000681, 46.0702836 ], + [ 7.3002723, 46.0703483 ], + [ 7.3003796, 46.0704028 ], + [ 7.3004384, 46.0704751 ], + [ 7.300434, 46.0706047 ], + [ 7.300357, 46.0707353 ], + [ 7.3002887, 46.0708882 ], + [ 7.3001324, 46.0710764 ], + [ 7.2998944, 46.0712545 ], + [ 7.3023141, 46.083287 ], + [ 7.3024728, 46.0831777 ], + [ 7.3025263, 46.0830924 ], + [ 7.3025725999999995, 46.082996 ], + [ 7.3025615, 46.0829005 ], + [ 7.3025644, 46.0827372 ], + [ 7.3025607, 46.0826134 ], + [ 7.3025973, 46.0824946 ], + [ 7.302634, 46.0823703 ], + [ 7.3027119, 46.0822453 ], + [ 7.3029496, 46.0818194 ], + [ 7.3034959, 46.0811244 ], + [ 7.3036377, 46.0809814 ], + [ 7.3038059, 46.0809114 ], + [ 7.3039594, 46.0808866 ], + [ 7.304121, 46.0808897 ], + [ 7.3042996, 46.0808927 ], + [ 7.3044524, 46.0808452 ], + [ 7.304539, 46.0807709 ], + [ 7.3046573, 46.0806509 ], + [ 7.3047917, 46.0805306 ], + [ 7.3049341, 46.0804158 ], + [ 7.3050935, 46.0803402 ], + [ 7.3052447, 46.0802591 ], + [ 7.3055908, 46.0801694 ], + [ 7.3060095, 46.0800618 ], + [ 7.3063239, 46.0800063 ], + [ 7.3066765, 46.0798715 ], + [ 7.3071907, 46.0797285 ], + [ 7.3074728, 46.079668 ], + [ 7.3077364, 46.0795514 ], + [ 7.3079450999999995, 46.0794638 ], + [ 7.3081271, 46.0793372 ], + [ 7.3083739, 46.0791815 ], + [ 7.3086919, 46.0789683 ], + [ 7.3091273, 46.0786408 ], + [ 7.3098664, 46.0786915 ], + [ 7.3105836, 46.0787932 ], + [ 7.3109414, 46.0788384 ], + [ 7.3111361, 46.0788467 ], + [ 7.3112815, 46.0788333 ], + [ 7.3114674, 46.0787966 ], + [ 7.3116356, 46.0787378 ], + [ 7.3118368, 46.0787009 ], + [ 7.3121712, 46.0787522 ], + [ 7.3125459, 46.078814 ], + [ 7.3130264, 46.0788911 ], + [ 7.3135788999999995, 46.0789165 ], + [ 7.3138221, 46.0789297 ], + [ 7.3140572, 46.0789148 ], + [ 7.3142987999999995, 46.078883 ], + [ 7.3145082, 46.0788347 ], + [ 7.3148218, 46.0787512 ], + [ 7.3151355, 46.078662 ], + [ 7.3154903000000004, 46.0785891 ], + [ 7.3157789, 46.0785058 ], + [ 7.3161117, 46.0785176 ], + [ 7.3164372, 46.0785576 ], + [ 7.3167546, 46.0785866 ], + [ 7.3170405, 46.0786499 ], + [ 7.3173278, 46.0787748 ], + [ 7.3175101, 46.0789016 ], + [ 7.3177255, 46.0790503 ], + [ 7.3178954, 46.0792953 ], + [ 7.3180822, 46.0795627 ], + [ 7.3182521, 46.0798303 ], + [ 7.3185309, 46.0801751 ], + [ 7.3186374, 46.0802241 ], + [ 7.3187609, 46.0802785 ], + [ 7.3188579, 46.0802769 ], + [ 7.3189614, 46.0802135 ], + [ 7.3190399, 46.0801391 ], + [ 7.3192139, 46.0800013 ], + [ 7.3195019, 46.0798562 ], + [ 7.319742, 46.0797625 ], + [ 7.3200313999999995, 46.0796792 ], + [ 7.3203597, 46.0795616 ], + [ 7.3206976, 46.0794777 ], + [ 7.3210847, 46.0793985 ], + [ 7.3212673, 46.0790129 ], + [ 7.3213582, 46.0788145 ], + [ 7.3213868, 46.0786847 ], + [ 7.3214954, 46.0785197 ], + [ 7.3216098, 46.0782816 ], + [ 7.3217654, 46.0780709 ], + [ 7.3219687, 46.0778313 ], + [ 7.3221492, 46.0776372 ], + [ 7.3222982, 46.0774773 ], + [ 7.3224472, 46.0773118 ], + [ 7.3227136, 46.0770319 ], + [ 7.3229015, 46.0768207 ], + [ 7.3230762, 46.0766941 ], + [ 7.3232444, 46.076624 ], + [ 7.3235168999999996, 46.0765298 ], + [ 7.3237812, 46.0764244 ], + [ 7.324006, 46.0763422 ], + [ 7.3241403, 46.0762444 ], + [ 7.324257, 46.0760851 ], + [ 7.3244052, 46.0758801 ], + [ 7.3245908, 46.0755902 ], + [ 7.3247999, 46.0752886 ], + [ 7.3250077000000005, 46.0751898 ], + [ 7.3252178, 46.0751584 ], + [ 7.3254998, 46.0751146 ], + [ 7.3258399, 46.0751038 ], + [ 7.3260889, 46.0750324 ], + [ 7.326451, 46.0749424 ], + [ 7.326902, 46.0748342 ], + [ 7.3275123, 46.0746447 ], + [ 7.3281079, 46.0745173 ], + [ 7.3284788, 46.074444 ], + [ 7.3287932, 46.0743885 ], + [ 7.3289628, 46.0743747 ], + [ 7.3291737, 46.0743771 ], + [ 7.3294087, 46.0743735 ], + [ 7.3297334, 46.0744079 ], + [ 7.3300266, 46.0744259 ], + [ 7.3303433, 46.0744435 ], + [ 7.330781, 46.0744593 ], + [ 7.3312931, 46.0744964 ], + [ 7.3313921, 46.0742867 ], + [ 7.3314741, 46.074066 ], + [ 7.3315738, 46.0738786 ], + [ 7.3317286, 46.073651 ], + [ 7.3318137, 46.0735202 ], + [ 7.3318091, 46.0733683 ], + [ 7.331795, 46.0731714 ], + [ 7.3317308, 46.0729248 ], + [ 7.3317005, 46.0727508 ], + [ 7.3316555, 46.0725995 ], + [ 7.3317244, 46.072469 ], + [ 7.3318264, 46.0723604 ], + [ 7.3319188, 46.0722126 ], + [ 7.3318504, 46.0720898 ], + [ 7.3317893, 46.0719445 ], + [ 7.3317443, 46.0717988 ], + [ 7.3318125, 46.0716514 ], + [ 7.3319387, 46.0715424 ], + [ 7.3320803, 46.0714052 ], + [ 7.3319412, 46.0711033 ], + [ 7.331847, 46.0709303 ], + [ 7.3317778, 46.0707907 ], + [ 7.3316925, 46.0706625 ], + [ 7.3316152, 46.070523 ], + [ 7.3316018, 46.070343 ], + [ 7.3316369, 46.0701793 ], + [ 7.3316588, 46.0701057 ], + [ 7.3317608, 46.0699972 ], + [ 7.3318886, 46.0699333 ], + [ 7.3319517, 46.0698648 ], + [ 7.3320176, 46.0696386 ], + [ 7.3320996, 46.0694235 ], + [ 7.332125, 46.0691979 ], + [ 7.3338554, 46.0682818 ], + [ 7.334704, 46.0684601 ], + [ 7.3347271, 46.0681727 ], + [ 7.334768, 46.0679187 ], + [ 7.3347531, 46.0676994 ], + [ 7.3347616, 46.0674515 ], + [ 7.3347555, 46.0672603 ], + [ 7.334751, 46.067114 ], + [ 7.3347588, 46.0668324 ], + [ 7.334735, 46.066602 ], + [ 7.334712, 46.0663772 ], + [ 7.3346786, 46.066085 ], + [ 7.3346629, 46.0658432 ], + [ 7.3346892, 46.0656401 ], + [ 7.3346331, 46.0653988 ], + [ 7.3349416, 46.0654279 ], + [ 7.3350451, 46.0653644 ], + [ 7.3351486, 46.0653009 ], + [ 7.335341, 46.0652249 ], + [ 7.3354841, 46.065155 ], + [ 7.3356295, 46.0651303 ], + [ 7.3358153, 46.0651049 ], + [ 7.3360746, 46.0651177 ], + [ 7.3362854, 46.0651146 ], + [ 7.3365865, 46.0651605 ], + [ 7.3368877999999995, 46.0651895 ], + [ 7.3371162, 46.0652311 ], + [ 7.3373109, 46.0652394 ], + [ 7.3375863, 46.0652464 ], + [ 7.3378617, 46.0652421 ], + [ 7.3381945, 46.0652371 ], + [ 7.3386242, 46.0652528 ], + [ 7.3389892, 46.0652642 ], + [ 7.3392365999999996, 46.0651252 ], + [ 7.3394347, 46.0649983 ], + [ 7.3396087, 46.0648436 ], + [ 7.3397414, 46.0646895 ], + [ 7.3398507, 46.0645472 ], + [ 7.3399196, 46.0644278 ], + [ 7.3399443, 46.064191 ], + [ 7.3399551, 46.0640108 ], + [ 7.3399997, 46.0638862 ], + [ 7.3400686, 46.0637613 ], + [ 7.3401302, 46.0636478 ], + [ 7.3402549, 46.0634826 ], + [ 7.3403796, 46.0633288 ], + [ 7.3404704, 46.0631134 ], + [ 7.3405532000000004, 46.0629094 ], + [ 7.3406036, 46.0627117 ], + [ 7.3407333, 46.0624451 ], + [ 7.3435566, 46.0625534 ], + [ 7.3438409, 46.0625659 ], + [ 7.3440436, 46.0625683 ], + [ 7.344214, 46.0625769 ], + [ 7.344399, 46.0625402 ], + [ 7.3446568, 46.0624912 ], + [ 7.3450607, 46.0624288 ], + [ 7.3453265, 46.0623851 ], + [ 7.3456519, 46.0624139 ], + [ 7.3459046, 46.0624718 ], + [ 7.3461823, 46.0625463 ], + [ 7.3464366, 46.0626269 ], + [ 7.3466416, 46.0627138 ], + [ 7.3468289, 46.0627276 ], + [ 7.3470478, 46.0627412 ], + [ 7.3473296999999995, 46.0626974 ], + [ 7.3478702, 46.0626046 ], + [ 7.3485237, 46.0625156 ], + [ 7.3489592, 46.0624413 ], + [ 7.3493058, 46.0623683 ], + [ 7.3496443, 46.0623125 ], + [ 7.3500951, 46.0622322 ], + [ 7.3504909, 46.0621698 ], + [ 7.3508779, 46.0621018 ], + [ 7.3511921000000005, 46.0620575 ], + [ 7.3515629, 46.0620011 ], + [ 7.3518845, 46.0619174 ], + [ 7.3520688, 46.0618356 ], + [ 7.3522368, 46.0617824 ], + [ 7.3524211, 46.061695 ], + [ 7.3526038, 46.0615852 ], + [ 7.3528269, 46.0614692 ], + [ 7.3530419, 46.0613477 ], + [ 7.3532562, 46.0611922 ], + [ 7.3534785, 46.0610481 ], + [ 7.3537316, 46.0608584 ], + [ 7.3539443, 46.0606693 ], + [ 7.3540924, 46.0604755 ], + [ 7.354655, 46.060677 ], + [ 7.3547607, 46.0606993 ], + [ 7.3549142, 46.0607103 ], + [ 7.3550846, 46.0606874 ], + [ 7.3552381, 46.0606815 ], + [ 7.3553034, 46.0607265 ], + [ 7.3553687, 46.0607995 ], + [ 7.3554338999999995, 46.0609402 ], + [ 7.3555879, 46.0611145 ], + [ 7.3557024, 46.0612551 ], + [ 7.3557749, 46.0613281 ], + [ 7.3558484, 46.0613393 ], + [ 7.3558888, 46.0613448 ], + [ 7.3560261, 46.061322 ], + [ 7.3562047, 46.0612879 ], + [ 7.3563581, 46.0612594 ], + [ 7.3564882, 46.0612649 ], + [ 7.3566012, 46.0612984 ], + [ 7.3566988, 46.0613489 ], + [ 7.3567399, 46.0614558 ], + [ 7.3568133, 46.0615177 ], + [ 7.3568939, 46.0615738 ], + [ 7.3570488, 46.0617087 ], + [ 7.3572028, 46.0618604 ], + [ 7.3573819, 46.0620291 ], + [ 7.3578125, 46.0624337 ], + [ 7.3579262, 46.062563 ], + [ 7.3580246, 46.0626811 ], + [ 7.3581463, 46.0628386 ], + [ 7.3582115, 46.062968 ], + [ 7.3582606, 46.0631031 ], + [ 7.3583016, 46.0632044 ], + [ 7.3583911, 46.0633225 ], + [ 7.3584886, 46.0634856 ], + [ 7.3586031, 46.0636262 ], + [ 7.3587249, 46.0637217 ], + [ 7.3587894, 46.0637498 ], + [ 7.358871, 46.0637777 ], + [ 7.3589678, 46.0638113 ], + [ 7.3590574, 46.0638788 ], + [ 7.3591307, 46.0639856 ], + [ 7.3592041, 46.0640587 ], + [ 7.3593347, 46.0642443 ], + [ 7.3594645, 46.0644017 ], + [ 7.3595943, 46.0645534 ], + [ 7.359725, 46.0646828 ], + [ 7.3598467, 46.0648065 ], + [ 7.3599686, 46.0648851 ], + [ 7.3601389, 46.0649524 ], + [ 7.3602606999999995, 46.0650422 ], + [ 7.3604552, 46.0651375 ], + [ 7.3605609, 46.0652049 ], + [ 7.3606666, 46.0653118 ], + [ 7.3607803, 46.0654017 ], + [ 7.3609433, 46.065559 ], + [ 7.3611224, 46.0657108 ], + [ 7.3612279, 46.0658626 ], + [ 7.3613424, 46.0660425 ], + [ 7.3614157, 46.0661888 ], + [ 7.3615946, 46.0664308 ], + [ 7.3617009, 46.0666671 ], + [ 7.3618146, 46.0667908 ], + [ 7.3619526, 46.0668749 ], + [ 7.3620826, 46.0669028 ], + [ 7.3621884, 46.0669533 ], + [ 7.362261, 46.0670039 ], + [ 7.3622859, 46.0670545 ], + [ 7.3623108, 46.0671896 ], + [ 7.3623107, 46.0672684 ], + [ 7.3623436, 46.0674316 ], + [ 7.3624499, 46.0676512 ], + [ 7.3624828, 46.0677863 ], + [ 7.3626699, 46.0679775 ], + [ 7.3627998, 46.0681178 ], + [ 7.3629546999999995, 46.0682358 ], + [ 7.3631331, 46.06832 ], + [ 7.3632792, 46.0683479 ], + [ 7.3635142, 46.0683868 ], + [ 7.3636677, 46.0683921 ], + [ 7.3638623, 46.0683805 ], + [ 7.3639674, 46.0683183 ], + [ 7.3640726, 46.0682224 ], + [ 7.3641534, 46.0682166 ], + [ 7.3642752, 46.068284 ], + [ 7.3644131, 46.0684358 ], + [ 7.3644953, 46.0685708 ], + [ 7.3645848, 46.0687282 ], + [ 7.3647234, 46.0689251 ], + [ 7.3649343, 46.0689303 ], + [ 7.365112, 46.0689187 ], + [ 7.3652743, 46.068969 ], + [ 7.3653961, 46.0690589 ], + [ 7.3654937, 46.069177 ], + [ 7.3655994, 46.0692669 ], + [ 7.3657294, 46.0692779 ], + [ 7.3659482, 46.0693338 ], + [ 7.3661671, 46.0693727 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "JBG0025", + "country" : "CHE", + "name" : [ + { + "text" : "Eidgenössisches Jagdbanngebiet Mauvoisin", + "lang" : "de-CH" + }, + { + "text" : "District franc fédéral Mauvoisin", + "lang" : "fr-CH" + }, + { + "text" : "Bandita federale di caccia Mauvoisin", + "lang" : "it-CH" + }, + { + "text" : "Federal Game Reserve Mauvoisin", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.2772144, 47.0250752 ], + [ 8.2645074, 47.013761 ], + [ 8.2372847, 47.0112638 ], + [ 8.1859041, 47.0379216 ], + [ 8.1772449, 47.1136052 ], + [ 8.2622519, 47.1838352 ], + [ 8.3583652, 47.1920757 ], + [ 8.4144702, 47.1620818 ], + [ 8.4073791, 47.1445602 ], + [ 8.4911349, 47.1014166 ], + [ 8.4251016, 47.0431846 ], + [ 8.3383722, 47.0304232 ], + [ 8.3092819, 47.0103174 ], + [ 8.3044324, 47.0069671 ], + [ 8.2772144, 47.0250752 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 120, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "CTR0002", + "country" : "CHE", + "name" : [ + { + "text" : "CTR EMMEN (MIL) 1", + "lang" : "de-CH" + }, + { + "text" : "CTR EMMEN (MIL) 1", + "lang" : "fr-CH" + }, + { + "text" : "CTR EMMEN (MIL) 1", + "lang" : "it-CH" + }, + { + "text" : "CTR EMMEN (MIL) 1", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only permitted from an altitude of 120 m above ground with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Skyguide Special Flight Office", + "lang" : "de-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "it-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "en-GB" + } + ], + "siteURL" : "https://skyguide.ch/services/special-flights", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.0512142, 46.2583861 ], + [ 7.0511422, 46.256031899999996 ], + [ 7.0508926, 46.2536835 ], + [ 7.0504663, 46.2513474 ], + [ 7.0498643, 46.2490299 ], + [ 7.0490883, 46.2467375 ], + [ 7.0481406, 46.2444764 ], + [ 7.0470237, 46.2422528 ], + [ 7.0457407, 46.2400727 ], + [ 7.0442952, 46.2379423 ], + [ 7.042691, 46.2358672 ], + [ 7.0409327, 46.2338532 ], + [ 7.039025, 46.2319058 ], + [ 7.0369732, 46.2300303 ], + [ 7.034783, 46.2282319 ], + [ 7.0324602, 46.2265154 ], + [ 7.0300114, 46.2248856 ], + [ 7.0274431, 46.223347 ], + [ 7.0247625, 46.2219037 ], + [ 7.0219769, 46.2205596 ], + [ 7.0190939, 46.2193185 ], + [ 7.0161214, 46.2181838 ], + [ 7.0130675, 46.2171586 ], + [ 7.0099406, 46.2162456 ], + [ 7.0067493, 46.2154473 ], + [ 7.0035022, 46.214766 ], + [ 7.0002083, 46.214203499999996 ], + [ 6.9968766, 46.2137614 ], + [ 6.9935161, 46.2134408 ], + [ 6.9901362, 46.2132426 ], + [ 6.9867459, 46.2131675 ], + [ 6.9833546, 46.2132155 ], + [ 6.9799714999999996, 46.2133865 ], + [ 6.9766059, 46.2136801 ], + [ 6.9732671, 46.2140955 ], + [ 6.969964, 46.2146315 ], + [ 6.9667059, 46.2152867 ], + [ 6.9635015, 46.2160593 ], + [ 6.9603596, 46.2169472 ], + [ 6.9572889, 46.2179479 ], + [ 6.9542977, 46.2190587 ], + [ 6.9513943, 46.2202766 ], + [ 6.9485865, 46.2215982 ], + [ 6.945882, 46.2230199 ], + [ 6.9432883, 46.2245379 ], + [ 6.9408125, 46.2261479 ], + [ 6.9384614, 46.2278457 ], + [ 6.9362413, 46.2296264 ], + [ 6.9341585, 46.2314853 ], + [ 6.9322185, 46.2334173 ], + [ 6.9304268, 46.2354171 ], + [ 6.9287882, 46.2374791 ], + [ 6.9273073, 46.2395978 ], + [ 6.9259881, 46.2417674 ], + [ 6.9248342, 46.2439819 ], + [ 6.9238489, 46.2462353 ], + [ 6.9230348, 46.2485213 ], + [ 6.9223943, 46.2508338 ], + [ 6.921929, 46.2531664 ], + [ 6.9216403, 46.2555126 ], + [ 6.921529, 46.2578661 ], + [ 6.9215955000000005, 46.2602204 ], + [ 6.9218395, 46.2625691 ], + [ 6.9222604, 46.2649057 ], + [ 6.9228571, 46.2672239 ], + [ 6.923628, 46.2695171 ], + [ 6.924571, 46.2717793 ], + [ 6.9256835, 46.2740041 ], + [ 6.9269625, 46.2761855 ], + [ 6.9284045, 46.2783175 ], + [ 6.9300055, 46.2803941 ], + [ 6.9317612, 46.2824099 ], + [ 6.9336668, 46.2843591 ], + [ 6.9357171, 46.2862364 ], + [ 6.9379064, 46.2880368 ], + [ 6.9402288, 46.2897552 ], + [ 6.9426779, 46.291387 ], + [ 6.9452469, 46.2929276 ], + [ 6.9479289, 46.2943728 ], + [ 6.9507165, 46.2957186 ], + [ 6.953602, 46.2969615 ], + [ 6.9565775, 46.2980978 ], + [ 6.9596349, 46.2991246 ], + [ 6.9627657, 46.300039 ], + [ 6.9659613, 46.3008385 ], + [ 6.9692131, 46.3015209 ], + [ 6.9725119, 46.3020843 ], + [ 6.9758489, 46.3025271 ], + [ 6.9792148, 46.3028482 ], + [ 6.9826003, 46.3030467 ], + [ 6.9859962, 46.303122 ], + [ 6.9893931, 46.303074 ], + [ 6.9927817, 46.3029026 ], + [ 6.9961527, 46.3026085 ], + [ 6.9994968, 46.3021925 ], + [ 7.0028049, 46.3016556 ], + [ 7.0060678, 46.3009993 ], + [ 7.0092766, 46.3002255 ], + [ 7.0124225, 46.2993363 ], + [ 7.0154968, 46.2983341 ], + [ 7.0184911, 46.2972217 ], + [ 7.0213972, 46.2960021 ], + [ 7.024207, 46.2946786 ], + [ 7.026913, 46.293255 ], + [ 7.0295076, 46.2917351 ], + [ 7.0319838, 46.2901231 ], + [ 7.0343347, 46.2884235 ], + [ 7.0365539, 46.2866408 ], + [ 7.0386354, 46.28478 ], + [ 7.0405734, 46.2828462 ], + [ 7.0423626, 46.2808447 ], + [ 7.0439982, 46.278781 ], + [ 7.0454757, 46.2766607 ], + [ 7.046791, 46.2744897 ], + [ 7.0479405, 46.272274 ], + [ 7.0489211, 46.2700195 ], + [ 7.0497302, 46.2677326 ], + [ 7.0503656, 46.2654194 ], + [ 7.0508254, 46.2630863 ], + [ 7.0511086, 46.2607398 ], + [ 7.0512142, 46.2583861 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSGB001", + "country" : "CHE", + "name" : [ + { + "text" : "LSGB Bex", + "lang" : "de-CH" + }, + { + "text" : "LSGB Bex", + "lang" : "fr-CH" + }, + { + "text" : "LSGB Bex", + "lang" : "it-CH" + }, + { + "text" : "LSGB Bex", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "AéroBex Aérodrome Bex Chablais", + "lang" : "de-CH" + }, + { + "text" : "AéroBex Aérodrome Bex Chablais", + "lang" : "fr-CH" + }, + { + "text" : "AéroBex Aérodrome Bex Chablais", + "lang" : "it-CH" + }, + { + "text" : "AéroBex Aérodrome Bex Chablais", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Chef d'aérodrome", + "lang" : "de-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "fr-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "it-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Philippe Manuel", + "lang" : "de-CH" + }, + { + "text" : "Philippe Manuel", + "lang" : "fr-CH" + }, + { + "text" : "Philippe Manuel", + "lang" : "it-CH" + }, + { + "text" : "Philippe Manuel", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.aerobex.ch/informations/drones.html", + "email" : "chefdeplace@aerobex.ch", + "phone" : "0041762324225", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5367938, 47.4556772 ], + [ 7.5363096, 47.4556224 ], + [ 7.5362424, 47.4556149 ], + [ 7.5362274, 47.4557286 ], + [ 7.5358214, 47.455733 ], + [ 7.5354293, 47.4557363 ], + [ 7.5354154, 47.4558478 ], + [ 7.5353769, 47.4559142 ], + [ 7.5353632, 47.4559378 ], + [ 7.5350361, 47.4559958 ], + [ 7.5345796, 47.4561034 ], + [ 7.5341684, 47.4561427 ], + [ 7.5341602, 47.4561435 ], + [ 7.5341585, 47.4561503 ], + [ 7.5341376, 47.4562598 ], + [ 7.5341315, 47.4562643 ], + [ 7.5341474, 47.4562654 ], + [ 7.5349452, 47.4563128 ], + [ 7.5357168, 47.4562254 ], + [ 7.5365732, 47.4562699 ], + [ 7.5369461, 47.4562906 ], + [ 7.5367938, 47.4556772 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns131", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Blauenweid", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Blauenweid", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Blauenweid", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Blauenweid", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.226702, 47.6043663 ], + [ 8.2265405, 47.6043505 ], + [ 8.226251, 47.6043884 ], + [ 8.2260273, 47.6044358 ], + [ 8.2257978, 47.6045399 ], + [ 8.225626, 47.6046156 ], + [ 8.2254179, 47.6047089 ], + [ 8.2252394, 47.6048279 ], + [ 8.2250751, 47.6049035 ], + [ 8.2249041, 47.6050342 ], + [ 8.2247826, 47.6051323 ], + [ 8.2247007, 47.6052163 ], + [ 8.2246483, 47.6053291 ], + [ 8.224656, 47.6053965 ], + [ 8.2246744, 47.6054593 ], + [ 8.2247696, 47.6055486 ], + [ 8.2248274, 47.6055744 ], + [ 8.2249382, 47.6055916 ], + [ 8.2250045, 47.6055841 ], + [ 8.22517, 47.6055324 ], + [ 8.225316, 47.6054561 ], + [ 8.2254214, 47.6053879 ], + [ 8.2256185, 47.605284 ], + [ 8.2258083, 47.6051919 ], + [ 8.2259626, 47.6051178 ], + [ 8.2260883, 47.6050711 ], + [ 8.2261707, 47.6050248 ], + [ 8.2266993, 47.6049104 ], + [ 8.2268952, 47.6047843 ], + [ 8.2269503, 47.6046895 ], + [ 8.2269451, 47.6045591 ], + [ 8.226859900000001, 47.6044211 ], + [ 8.226702, 47.6043663 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "WZV0019", + "country" : "CHE", + "name" : [ + { + "text" : "Wasser- und Zugvogelreservat Klingnauerstausee", + "lang" : "de-CH" + }, + { + "text" : "Réserve d'oiseaux d'eau et de migrateurs Klingnauerstausee", + "lang" : "fr-CH" + }, + { + "text" : "Riserva di uccelli acquatici e migratori Klingnauerstausee", + "lang" : "it-CH" + }, + { + "text" : "Water Bird and Migratory Bird Reserves Klingnauerstausee", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7443432, 47.4977556 ], + [ 7.7444645, 47.4980094 ], + [ 7.7447135, 47.4980701 ], + [ 7.7447867, 47.4982652 ], + [ 7.7447304, 47.4983668 ], + [ 7.7446347, 47.4985396 ], + [ 7.7444919, 47.4990222 ], + [ 7.7447351, 47.4987667 ], + [ 7.7448764, 47.4987049 ], + [ 7.7451561, 47.4986837 ], + [ 7.7454519, 47.4986646 ], + [ 7.7456052, 47.4986401 ], + [ 7.7457364, 47.4986623 ], + [ 7.7458821, 47.4986682 ], + [ 7.7461226, 47.4986479 ], + [ 7.7461247, 47.4986469 ], + [ 7.7458981, 47.4983906 ], + [ 7.7452273, 47.4978369 ], + [ 7.7447326, 47.4977499 ], + [ 7.7443432, 47.4977556 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr153", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Gmeinacher", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Gmeinacher", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Gmeinacher", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Gmeinacher", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.882519, 46.3463224 ], + [ 6.8825151, 46.3461812 ], + [ 6.8825005, 46.3460402 ], + [ 6.8824753, 46.3459 ], + [ 6.8824396, 46.3457609 ], + [ 6.8823934, 46.3456233 ], + [ 6.8823368, 46.3454876 ], + [ 6.8822700999999995, 46.345354 ], + [ 6.8821933, 46.3452231 ], + [ 6.8821068, 46.3450952 ], + [ 6.8820108, 46.3449705 ], + [ 6.8819054, 46.3448495 ], + [ 6.881791, 46.3447325 ], + [ 6.881668, 46.3446198 ], + [ 6.8815366000000004, 46.3445118 ], + [ 6.8813972, 46.3444086 ], + [ 6.8812502, 46.3443106 ], + [ 6.8810961, 46.3442181 ], + [ 6.8809351, 46.3441313 ], + [ 6.8807678, 46.3440504 ], + [ 6.8805946, 46.3439757 ], + [ 6.880416, 46.3439074 ], + [ 6.8802325, 46.3438457 ], + [ 6.8800446, 46.3437907 ], + [ 6.8798528, 46.3437426 ], + [ 6.8796576, 46.3437015 ], + [ 6.8794596, 46.3436675 ], + [ 6.8792592, 46.3436408 ], + [ 6.8790572, 46.3436214 ], + [ 6.8788539, 46.3436093 ], + [ 6.87865, 46.3436046 ], + [ 6.878446, 46.3436072 ], + [ 6.8782425, 46.3436173 ], + [ 6.8780401, 46.3436348 ], + [ 6.8778392, 46.3436595 ], + [ 6.8776405, 46.3436915 ], + [ 6.8774445, 46.3437307 ], + [ 6.8772517, 46.3437769 ], + [ 6.8770627, 46.34383 ], + [ 6.8768779, 46.3438899 ], + [ 6.8766979, 46.3439564 ], + [ 6.8765232, 46.3440294 ], + [ 6.8763543, 46.3441086 ], + [ 6.8761915, 46.3441938 ], + [ 6.8760355, 46.3442848 ], + [ 6.8758865, 46.3443813 ], + [ 6.875745, 46.3444831 ], + [ 6.8756114, 46.3445898 ], + [ 6.875486, 46.3447013 ], + [ 6.8753692, 46.3448172 ], + [ 6.8752614, 46.3449371 ], + [ 6.8751628, 46.3450608 ], + [ 6.8750736, 46.3451879 ], + [ 6.8749942, 46.345318 ], + [ 6.8749247, 46.3454508 ], + [ 6.8748653, 46.345586 ], + [ 6.8748163, 46.3457231 ], + [ 6.8747777, 46.3458619 ], + [ 6.8747495999999995, 46.3460018 ], + [ 6.8747321, 46.3461426 ], + [ 6.8747253, 46.3462838 ], + [ 6.8747292, 46.3464251 ], + [ 6.8747437, 46.346566 ], + [ 6.8747689, 46.3467062 ], + [ 6.8748046, 46.3468453 ], + [ 6.8748508, 46.3469829 ], + [ 6.8749073, 46.3471187 ], + [ 6.8749741, 46.3472522 ], + [ 6.8750508, 46.3473831 ], + [ 6.8751373000000005, 46.3475111 ], + [ 6.8752333, 46.3476357 ], + [ 6.8753387, 46.3477567 ], + [ 6.875453, 46.3478737 ], + [ 6.8755761, 46.3479864 ], + [ 6.8757075, 46.3480945 ], + [ 6.8758468, 46.3481977 ], + [ 6.8759938, 46.3482957 ], + [ 6.876148, 46.3483882 ], + [ 6.876309, 46.348475 ], + [ 6.8764763, 46.3485559 ], + [ 6.8766495, 46.3486306 ], + [ 6.8768281, 46.3486989 ], + [ 6.8770116, 46.3487606 ], + [ 6.8771995, 46.3488156 ], + [ 6.8773914, 46.3488637 ], + [ 6.8775866, 46.3489048 ], + [ 6.8777846, 46.3489388 ], + [ 6.877985, 46.3489656 ], + [ 6.878187, 46.348985 ], + [ 6.8783902999999995, 46.3489971 ], + [ 6.8785942, 46.3490018 ], + [ 6.8787982, 46.3489991 ], + [ 6.8790018, 46.348989 ], + [ 6.8792042, 46.3489716 ], + [ 6.8794051, 46.3489468 ], + [ 6.8796038, 46.3489148 ], + [ 6.8797999, 46.3488757 ], + [ 6.8799927, 46.3488295 ], + [ 6.8801817, 46.3487763 ], + [ 6.8803665, 46.3487164 ], + [ 6.8805465, 46.3486499 ], + [ 6.8807212, 46.3485769 ], + [ 6.8808902, 46.3484977 ], + [ 6.8810529, 46.3484125 ], + [ 6.881209, 46.3483215 ], + [ 6.881358, 46.348225 ], + [ 6.8814995, 46.3481232 ], + [ 6.8816331, 46.3480164 ], + [ 6.8817584, 46.347905 ], + [ 6.8818752, 46.3477891 ], + [ 6.881983, 46.3476692 ], + [ 6.8820817, 46.3475455 ], + [ 6.8821708, 46.3474184 ], + [ 6.8822502, 46.3472882 ], + [ 6.8823197, 46.3471554 ], + [ 6.882379, 46.3470202 ], + [ 6.8824281, 46.3468831 ], + [ 6.8824667, 46.3467443 ], + [ 6.8824947, 46.3466044 ], + [ 6.8825122, 46.3464636 ], + [ 6.882519, 46.3463224 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0027", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Chavalon", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Chavalon", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Chavalon", + "lang" : "it-CH" + }, + { + "text" : "Substation Chavalon", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8955114, 47.410246 ], + [ 7.8955274, 47.4104127 ], + [ 7.8955704, 47.4105699 ], + [ 7.8956686, 47.4107714 ], + [ 7.8954905, 47.4109031 ], + [ 7.8954493, 47.410913 ], + [ 7.8954492, 47.4109363 ], + [ 7.8954486, 47.4110444 ], + [ 7.8954069, 47.4111573 ], + [ 7.8953511, 47.4113302 ], + [ 7.8952646, 47.4114871 ], + [ 7.8950382, 47.4116662 ], + [ 7.8950222, 47.4117966 ], + [ 7.8948912, 47.4118806 ], + [ 7.894789, 47.4119525 ], + [ 7.8946779, 47.4121203 ], + [ 7.8946111, 47.4122454 ], + [ 7.8944617, 47.4123233 ], + [ 7.8944462, 47.4123876 ], + [ 7.8944596, 47.4124701 ], + [ 7.8945038, 47.4125844 ], + [ 7.8945592, 47.4126734 ], + [ 7.8946379, 47.4127507 ], + [ 7.8948296, 47.4128986 ], + [ 7.8949313, 47.4128345 ], + [ 7.8947766, 47.4127369 ], + [ 7.8946947, 47.4126631 ], + [ 7.8946206, 47.4125639 ], + [ 7.8945802, 47.4124691 ], + [ 7.8945723999999995, 47.4124129 ], + [ 7.8945758999999995, 47.4123395 ], + [ 7.8946927, 47.4122571 ], + [ 7.8948187, 47.4121101 ], + [ 7.8949493, 47.4120081 ], + [ 7.8950242, 47.4119041 ], + [ 7.8950379, 47.4118837 ], + [ 7.8950701, 47.4117939 ], + [ 7.8951039, 47.4116808 ], + [ 7.8951169, 47.4116637 ], + [ 7.8952991, 47.4115089 ], + [ 7.8953809, 47.4113605 ], + [ 7.8954955, 47.4110612 ], + [ 7.8954917, 47.4109361 ], + [ 7.8957072, 47.4109004 ], + [ 7.8957505, 47.4108892 ], + [ 7.8957096, 47.4107458 ], + [ 7.8956129, 47.4105574 ], + [ 7.8955776, 47.4104175 ], + [ 7.89556, 47.4102434 ], + [ 7.8955275, 47.410088 ], + [ 7.895517, 47.4099369 ], + [ 7.8953941, 47.4098765 ], + [ 7.8955114, 47.410246 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns023", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Mapprach - Hofmatt", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Mapprach - Hofmatt", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Mapprach - Hofmatt", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Mapprach - Hofmatt", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.0979973, 45.9318058 ], + [ 7.0980939, 45.9319474 ], + [ 7.0981414, 45.9320883 ], + [ 7.0981326, 45.932201 ], + [ 7.0981076, 45.9323304 ], + [ 7.0980748, 45.9324317 ], + [ 7.0980332, 45.9325104 ], + [ 7.0980166, 45.9325892 ], + [ 7.0979919, 45.9326735 ], + [ 7.0979184, 45.9328253 ], + [ 7.0978203, 45.9329263 ], + [ 7.0975845, 45.9331395 ], + [ 7.0975035, 45.933218 ], + [ 7.097479, 45.933263 ], + [ 7.0974624, 45.9333474 ], + [ 7.0974375, 45.9334599 ], + [ 7.0973473, 45.9335779 ], + [ 7.0972825, 45.9336395 ], + [ 7.0972096, 45.9336956 ], + [ 7.0971438, 45.9337742 ], + [ 7.0969986, 45.9338131 ], + [ 7.0969167, 45.9338973 ], + [ 7.0969325, 45.933948 ], + [ 7.0969973, 45.9340158 ], + [ 7.0970774, 45.934095 ], + [ 7.0971814, 45.9342137 ], + [ 7.0972212, 45.9342926 ], + [ 7.0972447, 45.9343885 ], + [ 7.0972924, 45.9344957 ], + [ 7.0973078, 45.934614 ], + [ 7.0973147, 45.9348055 ], + [ 7.0972894, 45.9349744 ], + [ 7.09724, 45.9351488 ], + [ 7.097199, 45.9352669 ], + [ 7.0971491, 45.9353794 ], + [ 7.0971402, 45.9355201 ], + [ 7.0971313, 45.935643999999996 ], + [ 7.0971228, 45.9357228 ], + [ 7.0970657, 45.9358352 ], + [ 7.0969838, 45.9359081 ], + [ 7.0968788, 45.9359585 ], + [ 7.0967407, 45.9360086 ], + [ 7.0966517, 45.936059 ], + [ 7.0965703, 45.9361882 ], + [ 7.0964802, 45.9362949 ], + [ 7.096302, 45.9363224 ], + [ 7.0963251, 45.9364858 ], + [ 7.0963814, 45.9366324 ], + [ 7.0964688, 45.9368242 ], + [ 7.0965404, 45.9369766 ], + [ 7.09662, 45.9371402 ], + [ 7.0966673, 45.9372981 ], + [ 7.0967465, 45.9375293 ], + [ 7.0967773, 45.9377435 ], + [ 7.0967839, 45.9379913 ], + [ 7.0967659, 45.9382784 ], + [ 7.0967319, 45.9385712 ], + [ 7.0966387, 45.9391678 ], + [ 7.0966216, 45.9393311 ], + [ 7.096701, 45.9395116 ], + [ 7.0967969, 45.9396415 ], + [ 7.096893, 45.9397433 ], + [ 7.0969253, 45.9398616 ], + [ 7.0968917, 45.9399404 ], + [ 7.0968509, 45.9400303 ], + [ 7.0968098, 45.9401484 ], + [ 7.0967609, 45.940244 ], + [ 7.0966304, 45.9403618 ], + [ 7.0965334, 45.9404065 ], + [ 7.0963791, 45.9404679 ], + [ 7.0962738, 45.9405576 ], + [ 7.0962403, 45.9406251 ], + [ 7.0962559, 45.9407096 ], + [ 7.0962952, 45.9408674 ], + [ 7.0963674, 45.9410536 ], + [ 7.0964705, 45.941313 ], + [ 7.0965575, 45.9415837 ], + [ 7.0966368, 45.9417811 ], + [ 7.09662, 45.9418936 ], + [ 7.0965468, 45.942006 ], + [ 7.0965047, 45.9421692 ], + [ 7.096487, 45.9424226 ], + [ 7.0965426, 45.9425523 ], + [ 7.0965978, 45.9427384 ], + [ 7.0967105, 45.9428965 ], + [ 7.0968305, 45.9430265 ], + [ 7.0969104, 45.9431338 ], + [ 7.0970233, 45.9432581 ], + [ 7.0971436, 45.9433543 ], + [ 7.0973129, 45.9434732 ], + [ 7.0974895, 45.9435865 ], + [ 7.0976427, 45.9436997 ], + [ 7.0978032, 45.9438074 ], + [ 7.0979483, 45.9439318 ], + [ 7.0980362, 45.9440504 ], + [ 7.0981156, 45.944236599999996 ], + [ 7.098228, 45.9444397 ], + [ 7.0983321, 45.9445528 ], + [ 7.0984203, 45.9446263 ], + [ 7.0985244, 45.9447224 ], + [ 7.098661, 45.9449144 ], + [ 7.0987887, 45.9451177 ], + [ 7.0990696, 45.9454341 ], + [ 7.0991734, 45.9455978 ], + [ 7.0993503, 45.94579 ], + [ 7.0994141, 45.9458972 ], + [ 7.0994458, 45.9459874 ], + [ 7.0994934, 45.9461059 ], + [ 7.0995489, 45.9462525 ], + [ 7.0996051, 45.9464161 ], + [ 7.0996605, 45.9465853 ], + [ 7.0997482, 45.9467433 ], + [ 7.0998278, 45.94689 ], + [ 7.0998672, 45.9470478 ], + [ 7.0999468, 45.9472002 ], + [ 7.1000671, 45.9474316 ], + [ 7.1001465, 45.9476177 ], + [ 7.1002104, 45.9477081 ], + [ 7.1003959, 45.9478214 ], + [ 7.1004682, 45.9478611 ], + [ 7.1005722, 45.9479854 ], + [ 7.1006523, 45.9480702 ], + [ 7.1007566, 45.9482733 ], + [ 7.1008443, 45.9484369 ], + [ 7.1009803, 45.9485896 ], + [ 7.1010693, 45.9486687 ], + [ 7.1011977, 45.9487537 ], + [ 7.1014074, 45.9488727 ], + [ 7.1016568, 45.9490764 ], + [ 7.101656, 45.9492003 ], + [ 7.1016794, 45.94933 ], + [ 7.1017435, 45.9493921 ], + [ 7.1018319, 45.9494319 ], + [ 7.1019122, 45.9494772 ], + [ 7.1020898, 45.949568 ], + [ 7.1022432, 45.949653 ], + [ 7.1023714, 45.9497662 ], + [ 7.1024834, 45.9499073 ], + [ 7.102547, 45.9500541 ], + [ 7.1026033, 45.9502063 ], + [ 7.1026265, 45.9503584 ], + [ 7.1026419, 45.9504824 ], + [ 7.102673, 45.9506627 ], + [ 7.1026965, 45.9507698 ], + [ 7.1028002, 45.9509448 ], + [ 7.1030384, 45.9515314 ], + [ 7.1033646, 45.9523662 ], + [ 7.1033798, 45.9525127 ], + [ 7.1033955, 45.9525915 ], + [ 7.1033786, 45.9527098 ], + [ 7.1033776, 45.952867499999996 ], + [ 7.1034008, 45.9530309 ], + [ 7.1034483, 45.9531718 ], + [ 7.1035122, 45.9532622 ], + [ 7.1035841, 45.9533751 ], + [ 7.1036888, 45.9535219 ], + [ 7.1037848, 45.953635 ], + [ 7.1038808, 45.9537592 ], + [ 7.1039123, 45.9538832 ], + [ 7.1039436, 45.9540241 ], + [ 7.1039508, 45.9541762 ], + [ 7.103966, 45.9543171 ], + [ 7.1039891, 45.9544917 ], + [ 7.1040286, 45.9546383 ], + [ 7.1040999, 45.9548301 ], + [ 7.1041795, 45.9549993 ], + [ 7.1043805, 45.9552197 ], + [ 7.1045003, 45.9554003 ], + [ 7.1045973, 45.9554852 ], + [ 7.1046693, 45.9555756 ], + [ 7.1048135, 45.9557226 ], + [ 7.1049185, 45.9558187 ], + [ 7.1049987, 45.9558753 ], + [ 7.1051362, 45.9559434 ], + [ 7.1052809, 45.9560002 ], + [ 7.1053934, 45.9560513 ], + [ 7.1054745, 45.9561079 ], + [ 7.1055463, 45.9562265 ], + [ 7.1055861, 45.9563224 ], + [ 7.1056097, 45.9564126 ], + [ 7.1056493, 45.956531 ], + [ 7.105689, 45.9566325 ], + [ 7.1056642, 45.9567282 ], + [ 7.1055989, 45.9568631 ], + [ 7.1056466, 45.9569703 ], + [ 7.1057185, 45.9570775 ], + [ 7.1057905, 45.9571623 ], + [ 7.1059357, 45.9572868 ], + [ 7.1060233, 45.9574504 ], + [ 7.1061194, 45.9575633 ], + [ 7.1062321, 45.9577102 ], + [ 7.106288, 45.9578005 ], + [ 7.1063198, 45.9578852 ], + [ 7.1063352, 45.9579922 ], + [ 7.1063345, 45.9581048 ], + [ 7.1063422, 45.9581781 ], + [ 7.1063899, 45.9582796 ], + [ 7.1063974, 45.9583754 ], + [ 7.1064127, 45.9585162 ], + [ 7.1065164, 45.9586912 ], + [ 7.1066207, 45.9587648 ], + [ 7.1067582, 45.9588329 ], + [ 7.1069359, 45.9588955 ], + [ 7.1070727, 45.9589467 ], + [ 7.1071929, 45.9590598 ], + [ 7.1073623, 45.9591674 ], + [ 7.1075637, 45.9593259 ], + [ 7.1079426, 45.9594568 ], + [ 7.1080392, 45.9594853 ], + [ 7.108177, 45.959497 ], + [ 7.1083381, 45.9595201 ], + [ 7.1085079, 45.9595658 ], + [ 7.1086122, 45.9596394 ], + [ 7.1087012, 45.9597299 ], + [ 7.1087652, 45.959809 ], + [ 7.1088291, 45.959899300000004 ], + [ 7.1088284999999996, 45.9600063 ], + [ 7.1088199, 45.9600964 ], + [ 7.1088192, 45.9602091 ], + [ 7.1088185, 45.9603217 ], + [ 7.1088339, 45.9604513 ], + [ 7.1088895, 45.960581 ], + [ 7.1089935, 45.9607109 ], + [ 7.1091621, 45.960965 ], + [ 7.1092423, 45.9610385 ], + [ 7.109266, 45.9611174 ], + [ 7.1092653, 45.9612301 ], + [ 7.1092565, 45.9613539 ], + [ 7.1093043, 45.9614386 ], + [ 7.1093841, 45.9615741 ], + [ 7.1094801, 45.9616983 ], + [ 7.1095448, 45.9618112 ], + [ 7.1095764, 45.961907 ], + [ 7.1095518, 45.9619858 ], + [ 7.1095263, 45.9620646 ], + [ 7.1094853, 45.962177 ], + [ 7.1094846, 45.9622953 ], + [ 7.1095405, 45.96238 ], + [ 7.1096534, 45.9625043 ], + [ 7.1098137, 45.9626682 ], + [ 7.1099428, 45.962787 ], + [ 7.1099583, 45.9628828 ], + [ 7.1099246, 45.9629953 ], + [ 7.1098514, 45.9630908 ], + [ 7.1097371, 45.9631973 ], + [ 7.1096641, 45.9632703 ], + [ 7.1096396, 45.9633378 ], + [ 7.1096389, 45.9634391 ], + [ 7.1096304, 45.9635236 ], + [ 7.1096378, 45.9636362 ], + [ 7.1096289, 45.9637601 ], + [ 7.1096201, 45.963884 ], + [ 7.1096023, 45.9640304 ], + [ 7.1096016, 45.964143 ], + [ 7.1096251, 45.9642726 ], + [ 7.1096646, 45.9644079 ], + [ 7.1097529, 45.9645942 ], + [ 7.1098246, 45.9647352 ], + [ 7.109904, 45.9649439 ], + [ 7.1099517, 45.9650567 ], + [ 7.109967, 45.9651919 ], + [ 7.1099503, 45.9652932 ], + [ 7.1099013, 45.9653832 ], + [ 7.1098353, 45.9655012 ], + [ 7.1097784, 45.9655911 ], + [ 7.1097373, 45.9657092 ], + [ 7.1097766, 45.9658839 ], + [ 7.1097439, 45.9659627 ], + [ 7.1096297, 45.9660468 ], + [ 7.1095486, 45.9661253 ], + [ 7.1094916, 45.9662152 ], + [ 7.1094901, 45.9663391 ], + [ 7.1095134, 45.9664744 ], + [ 7.1095621, 45.966559 ], + [ 7.1096259, 45.9666719 ], + [ 7.1097543, 45.9667681 ], + [ 7.1098673, 45.9668811 ], + [ 7.1099471, 45.9670167 ], + [ 7.1100673, 45.9671466 ], + [ 7.1101725, 45.9672202 ], + [ 7.1103413, 45.9672941 ], + [ 7.1105032, 45.9673228 ], + [ 7.1107455999999996, 45.9673744 ], + [ 7.1110685, 45.9674375 ], + [ 7.1113108, 45.9674947 ], + [ 7.1114796, 45.9675798 ], + [ 7.1116892, 45.967727 ], + [ 7.1118664, 45.9678853 ], + [ 7.1119864, 45.9680322 ], + [ 7.1120017, 45.9681675 ], + [ 7.1119281, 45.9683474 ], + [ 7.1118134, 45.968516 ], + [ 7.1116179, 45.968718 ], + [ 7.1114223, 45.9689369 ], + [ 7.1111133, 45.96924 ], + [ 7.111039, 45.9693862 ], + [ 7.110981, 45.969645 ], + [ 7.1110607, 45.9698086 ], + [ 7.1111655, 45.9699329 ], + [ 7.1113179, 45.970063 ], + [ 7.1115194, 45.9702102 ], + [ 7.1117201, 45.9703573 ], + [ 7.1118088, 45.9704928 ], + [ 7.1119047, 45.970634 ], + [ 7.1120808, 45.970843 ], + [ 7.1122176, 45.9710294 ], + [ 7.1122811, 45.971193 ], + [ 7.1122724999999996, 45.971283 ], + [ 7.1123117, 45.9714578 ], + [ 7.112383, 45.9716721 ], + [ 7.1124217, 45.9719538 ], + [ 7.1125012, 45.9721287 ], + [ 7.1126382, 45.9722813 ], + [ 7.1128389, 45.9724228 ], + [ 7.1130004, 45.9725248 ], + [ 7.1131528, 45.9726492 ], + [ 7.1132418, 45.972734 ], + [ 7.1132652, 45.9728581 ], + [ 7.1132566, 45.9729594 ], + [ 7.1132716, 45.9731341 ], + [ 7.1133673, 45.9733259 ], + [ 7.1134952, 45.9734953 ], + [ 7.1136324, 45.9736141 ], + [ 7.1137609, 45.9736934 ], + [ 7.1139546, 45.9738012 ], + [ 7.1141395, 45.9738976 ], + [ 7.1143005, 45.9740728 ], + [ 7.1143962, 45.9742534 ], + [ 7.1145649, 45.9744905 ], + [ 7.114661, 45.9746091 ], + [ 7.1148051, 45.9747842 ], + [ 7.1149905, 45.9749201 ], + [ 7.1151922, 45.9750334 ], + [ 7.1153532, 45.9750847 ], + [ 7.1155471, 45.9751474 ], + [ 7.1156675, 45.9752379 ], + [ 7.1157966, 45.9753623 ], + [ 7.1159007, 45.9754922 ], + [ 7.1160537, 45.9756562 ], + [ 7.1161736, 45.9758312 ], + [ 7.1163097, 45.975995 ], + [ 7.1164063, 45.9761643 ], + [ 7.1165664, 45.9763677 ], + [ 7.1167198, 45.976464 ], + [ 7.1168889, 45.9764984 ], + [ 7.1170833, 45.9764991 ], + [ 7.1172696, 45.9764941 ], + [ 7.1174709, 45.9765343 ], + [ 7.1176808, 45.9766252 ], + [ 7.1178583, 45.9767553 ], + [ 7.118092, 45.9769082 ], + [ 7.1182686, 45.9770497 ], + [ 7.1185667, 45.977231 ], + [ 7.1188568, 45.9773897 ], + [ 7.1190425, 45.9774918 ], + [ 7.1192366, 45.9775319 ], + [ 7.1193492, 45.977583 ], + [ 7.1194295, 45.9776284 ], + [ 7.1195911, 45.9777191 ], + [ 7.1197515, 45.9778548 ], + [ 7.1200011, 45.9780585 ], + [ 7.1203315, 45.9782343 ], + [ 7.1206136, 45.978393 ], + [ 7.1208557, 45.9784953 ], + [ 7.1211623, 45.9785977 ], + [ 7.1213726, 45.9786323 ], + [ 7.1217038, 45.9786673 ], + [ 7.1220108, 45.9787134 ], + [ 7.1222287, 45.9788156 ], + [ 7.1223903, 45.9789063 ], + [ 7.1225423, 45.9790983 ], + [ 7.1227602, 45.9792174 ], + [ 7.1230259, 45.9794211 ], + [ 7.1233, 45.9795686 ], + [ 7.12359, 45.9797611 ], + [ 7.1237666, 45.9798969 ], + [ 7.1240328, 45.9800218 ], + [ 7.1243151, 45.9801467 ], + [ 7.1245731, 45.980294 ], + [ 7.1246208, 45.9804181 ], + [ 7.1246601, 45.9805872 ], + [ 7.1246994, 45.980762 ], + [ 7.124755, 45.9809086 ], + [ 7.12473, 45.981055 ], + [ 7.1246325, 45.9811785 ], + [ 7.1245504, 45.981274 ], + [ 7.124445, 45.981375 ], + [ 7.124242, 45.9814757 ], + [ 7.1240469, 45.9815989 ], + [ 7.123893, 45.9817279 ], + [ 7.1238589, 45.9818967 ], + [ 7.1238092, 45.9821162 ], + [ 7.1238, 45.9823189 ], + [ 7.123799, 45.9824879 ], + [ 7.1238078, 45.9825087 ], + [ 7.1238627, 45.9826402 ], + [ 7.1239668, 45.9827701 ], + [ 7.1241119, 45.9829058 ], + [ 7.1241759, 45.9830018 ], + [ 7.1241751, 45.9831314 ], + [ 7.12415, 45.9832945 ], + [ 7.1241244, 45.9834071 ], + [ 7.1241481, 45.9834804 ], + [ 7.1241889, 45.9835538 ], + [ 7.1242449, 45.9836216 ], + [ 7.1243413, 45.9836895 ], + [ 7.1243893, 45.9837572 ], + [ 7.124429, 45.9838587 ], + [ 7.1244604, 45.984011 ], + [ 7.1244515, 45.984163 ], + [ 7.1245069, 45.9843434 ], + [ 7.1245705, 45.9844957 ], + [ 7.1247073, 45.9846933 ], + [ 7.1248761, 45.9847896 ], + [ 7.1249973, 45.9849027 ], + [ 7.1251011, 45.9850777 ], + [ 7.1251566, 45.9852525 ], + [ 7.125099, 45.9854494 ], + [ 7.1249759, 45.9856743 ], + [ 7.1247645, 45.9858312 ], + [ 7.1245363, 45.9861007 ], + [ 7.1246, 45.9862474 ], + [ 7.1248263, 45.9863045 ], + [ 7.1249964, 45.9863164 ], + [ 7.1252714, 45.9863342 ], + [ 7.1254411, 45.9864024 ], + [ 7.1255213, 45.9864872 ], + [ 7.1255288, 45.9865829 ], + [ 7.1254227, 45.9866614 ], + [ 7.125261, 45.9867397 ], + [ 7.1251304, 45.9868632 ], + [ 7.1250652, 45.9869812 ], + [ 7.1250152, 45.9871219 ], + [ 7.1250145, 45.9872344 ], + [ 7.125022, 45.987330299999996 ], + [ 7.1250052, 45.9874597 ], + [ 7.1249484, 45.9875102 ], + [ 7.1248672, 45.9876113 ], + [ 7.1248256, 45.98769 ], + [ 7.1248409, 45.9878365 ], + [ 7.1247997, 45.9879828 ], + [ 7.1247907, 45.9881517 ], + [ 7.1247897, 45.988315 ], + [ 7.1248131, 45.9884559 ], + [ 7.1248931, 45.9885801 ], + [ 7.1251108, 45.988733 ], + [ 7.1253279, 45.988852 ], + [ 7.1256434, 45.9889714 ], + [ 7.1258208, 45.9889777 ], + [ 7.1259502, 45.9890626 ], + [ 7.1260222, 45.9891586 ], + [ 7.1260298, 45.9892374 ], + [ 7.1259971, 45.9893162 ], + [ 7.1259482, 45.9894005 ], + [ 7.1258739, 45.989558 ], + [ 7.1258412, 45.989631 ], + [ 7.1258243, 45.9897774 ], + [ 7.1258319, 45.9898619 ], + [ 7.1258552, 45.9900085 ], + [ 7.1258949, 45.9901268 ], + [ 7.1259346, 45.9902396 ], + [ 7.1259097, 45.9903578 ], + [ 7.1258767, 45.990476 ], + [ 7.125851, 45.9906054 ], + [ 7.1258181, 45.9907236 ], + [ 7.1257934, 45.9908136 ], + [ 7.1257122, 45.9909034 ], + [ 7.1256303, 45.990982 ], + [ 7.125533, 45.9910717 ], + [ 7.1254591, 45.991156 ], + [ 7.1254501, 45.9913137 ], + [ 7.1255549, 45.9914774 ], + [ 7.1256103, 45.9916578 ], + [ 7.1256013, 45.9918267 ], + [ 7.125469, 45.992243 ], + [ 7.1255088, 45.9923389 ], + [ 7.125597, 45.9924405 ], + [ 7.1257263, 45.9925424 ], + [ 7.1258788, 45.9926668 ], + [ 7.1259751, 45.9927629 ], + [ 7.1260881, 45.9928872 ], + [ 7.1261596, 45.9930733 ], + [ 7.1262553, 45.9932651 ], + [ 7.1262627, 45.9933834 ], + [ 7.1262219, 45.9934678 ], + [ 7.1261971, 45.993574699999996 ], + [ 7.1261392, 45.9936927 ], + [ 7.1261062, 45.9938109 ], + [ 7.126146, 45.9939181 ], + [ 7.1262189, 45.9939916 ], + [ 7.1263798, 45.9940766 ], + [ 7.1266059, 45.9941788 ], + [ 7.1267345, 45.9942637 ], + [ 7.1267914, 45.9943202 ], + [ 7.1268553, 45.994433 ], + [ 7.1268789, 45.9945514 ], + [ 7.1269348, 45.9946418 ], + [ 7.1269828, 45.9947095 ], + [ 7.127039, 45.9947604 ], + [ 7.1270871, 45.994816900000004 ], + [ 7.127111, 45.994862 ], + [ 7.1271188, 45.9949183 ], + [ 7.1271347, 45.9949635 ], + [ 7.1271911, 45.9951157 ], + [ 7.1272551, 45.9952117 ], + [ 7.1273271, 45.995319 ], + [ 7.1273988, 45.9954656 ], + [ 7.1274224, 45.9955783 ], + [ 7.1273811, 45.9957584 ], + [ 7.1273642, 45.9958879 ], + [ 7.1272982, 45.9960003 ], + [ 7.1271686, 45.9961012 ], + [ 7.1270462, 45.9961966 ], + [ 7.1269651, 45.9962751 ], + [ 7.1269161, 45.9963763 ], + [ 7.1268914, 45.996472 ], + [ 7.1269059, 45.9966184 ], + [ 7.1269463, 45.9967425 ], + [ 7.1270667, 45.9968499 ], + [ 7.1272272, 45.9970026 ], + [ 7.1273163, 45.9970873 ], + [ 7.1273723, 45.9971664 ], + [ 7.1273553, 45.9973071 ], + [ 7.1273388, 45.9973746 ], + [ 7.1272568, 45.9974645 ], + [ 7.1270951, 45.9975315 ], + [ 7.1269646, 45.9976437 ], + [ 7.1268996, 45.9977223 ], + [ 7.1267608, 45.9978739 ], + [ 7.1265734, 45.9980647 ], + [ 7.1264676, 45.998222 ], + [ 7.1263847, 45.9984695 ], + [ 7.1263521, 45.998537 ], + [ 7.1263432, 45.9986834 ], + [ 7.1263019, 45.9988466 ], + [ 7.1263012, 45.9989649 ], + [ 7.1263005, 45.9990944 ], + [ 7.1263241, 45.9992015 ], + [ 7.1263717, 45.9993425 ], + [ 7.1264194, 45.9994665 ], + [ 7.1264511, 45.9995737 ], + [ 7.1264502, 45.9997257 ], + [ 7.126433, 45.9999059 ], + [ 7.126415, 46.0000973 ], + [ 7.1263983, 46.000193 ], + [ 7.1264217, 46.0003395 ], + [ 7.126437, 46.0004859 ], + [ 7.1264685, 46.0006212 ], + [ 7.1264836, 46.0008072 ], + [ 7.126507, 46.0009424 ], + [ 7.1265548, 46.0010608 ], + [ 7.1266265, 46.0012076 ], + [ 7.1267153, 46.0013486 ], + [ 7.126779, 46.001501 ], + [ 7.1268106, 46.0016137 ], + [ 7.1267939, 46.0017206 ], + [ 7.1267449, 46.0018218 ], + [ 7.1267113, 46.0019062 ], + [ 7.1266545, 46.0019679 ], + [ 7.1265329, 46.0020802 ], + [ 7.1264584, 46.0022545 ], + [ 7.1263444, 46.00244 ], + [ 7.1262456, 46.002648 ], + [ 7.1262468, 46.0033018 ], + [ 7.1262415, 46.0033745 ], + [ 7.1261912, 46.0035771 ], + [ 7.1260368, 46.0037568 ], + [ 7.1258817, 46.0039365 ], + [ 7.1257588, 46.0041331 ], + [ 7.1255384, 46.0044309 ], + [ 7.1253595, 46.0045485 ], + [ 7.1251573, 46.0046323 ], + [ 7.1250188, 46.0047162 ], + [ 7.1249212, 46.0048567 ], + [ 7.1248068, 46.004969 ], + [ 7.1247333, 46.0051264 ], + [ 7.1246996, 46.0052389 ], + [ 7.1247068, 46.0053854 ], + [ 7.1247384, 46.0055037 ], + [ 7.1248033, 46.0055884 ], + [ 7.1249153, 46.0057522 ], + [ 7.1250847, 46.0058936 ], + [ 7.1252532, 46.0060575 ], + [ 7.1254547, 46.006244 ], + [ 7.1256394, 46.0063911 ], + [ 7.1258249, 46.0065551 ], + [ 7.1259529, 46.0067358 ], + [ 7.1260580000000004, 46.0068488 ], + [ 7.1261864, 46.0069675 ], + [ 7.1263882, 46.0070921 ], + [ 7.1265088, 46.0071657 ], + [ 7.1267028, 46.0072453 ], + [ 7.1269775, 46.0073251 ], + [ 7.1274382, 46.0074788 ], + [ 7.1275508, 46.0075355 ], + [ 7.1276229, 46.0076428 ], + [ 7.1276384, 46.0077498 ], + [ 7.1276053, 46.0079017 ], + [ 7.1276207, 46.0080201 ], + [ 7.1276926, 46.0081442 ], + [ 7.127773, 46.0082065 ], + [ 7.127838, 46.0082573 ], + [ 7.1279104, 46.0083027 ], + [ 7.1279343, 46.0083535 ], + [ 7.1279661, 46.0084493 ], + [ 7.1280301, 46.0085453 ], + [ 7.1281024, 46.0085962 ], + [ 7.1282238, 46.0086699 ], + [ 7.1283204, 46.0087209 ], + [ 7.1283359, 46.0088279 ], + [ 7.1283349, 46.0089969 ], + [ 7.1283261, 46.009132 ], + [ 7.1283577, 46.0092504 ], + [ 7.1284135, 46.0093689 ], + [ 7.1285334, 46.0095664 ], + [ 7.1286223, 46.0096907 ], + [ 7.128686, 46.0098429 ], + [ 7.1287418, 46.0099726 ], + [ 7.1289674, 46.0101761 ], + [ 7.1291440999999995, 46.0103232 ], + [ 7.1292813, 46.0104476 ], + [ 7.1293532, 46.0105774 ], + [ 7.1293526, 46.01069 ], + [ 7.1293026, 46.010825 ], + [ 7.129221, 46.0109824 ], + [ 7.1291881, 46.0111062 ], + [ 7.1292194, 46.011264 ], + [ 7.1293074, 46.0114164 ], + [ 7.1293873, 46.0115462 ], + [ 7.129443, 46.0116872 ], + [ 7.129442, 46.0118618 ], + [ 7.1293602, 46.0120699 ], + [ 7.129335, 46.0122444 ], + [ 7.1291876, 46.0124805 ], + [ 7.1290568, 46.0126377 ], + [ 7.1289995, 46.0127726 ], + [ 7.1290066, 46.0129529 ], + [ 7.1290462, 46.0130938 ], + [ 7.1290455, 46.0132177 ], + [ 7.1290125, 46.0133415 ], + [ 7.1289383, 46.013482 ], + [ 7.1288321, 46.0136957 ], + [ 7.1287416, 46.0138644 ], + [ 7.1287652, 46.0139827 ], + [ 7.1288461, 46.0140843 ], + [ 7.1289344, 46.0141748 ], + [ 7.1289581, 46.0142537 ], + [ 7.1289496, 46.0143269 ], + [ 7.1289332, 46.0143888 ], + [ 7.1289486, 46.0145183 ], + [ 7.129029, 46.0145581 ], + [ 7.1292152, 46.0146094 ], + [ 7.1293762, 46.0146663 ], + [ 7.1294815, 46.0147398 ], + [ 7.1296018, 46.0148754 ], + [ 7.1297297, 46.0150955 ], + [ 7.1298708, 46.0158394 ], + [ 7.1298619, 46.0159803 ], + [ 7.1297644, 46.0161038 ], + [ 7.1296579, 46.0162386 ], + [ 7.1295928, 46.0163341 ], + [ 7.1296324, 46.0164751 ], + [ 7.1297525, 46.0166388 ], + [ 7.1299622, 46.0168085 ], + [ 7.1300994, 46.0169441 ], + [ 7.130244, 46.0170686 ], + [ 7.1303975, 46.0171873 ], + [ 7.1305986, 46.0172894 ], + [ 7.130833, 46.0173747 ], + [ 7.1310676, 46.0174149 ], + [ 7.1311885, 46.0174491 ], + [ 7.1312858, 46.0175171 ], + [ 7.1313339, 46.0175736 ], + [ 7.131422, 46.0176865 ], + [ 7.1315264, 46.0177882 ], + [ 7.1315831, 46.0178954 ], + [ 7.1316068, 46.01798 ], + [ 7.1316869, 46.018093 ], + [ 7.1317914, 46.0181665 ], + [ 7.131953, 46.0182629 ], + [ 7.1321381, 46.0183592 ], + [ 7.1323243, 46.0184105 ], + [ 7.1324542, 46.018411 ], + [ 7.1326077, 46.0183777 ], + [ 7.1327944, 46.0183277 ], + [ 7.1330134, 46.0182778 ], + [ 7.1342923, 46.0183272 ], + [ 7.1345432, 46.0183281 ], + [ 7.1347615, 46.0182725 ], + [ 7.1349401, 46.0182224 ], + [ 7.1351915, 46.0181388 ], + [ 7.1354429, 46.0180664 ], + [ 7.1356372, 46.0181122 ], + [ 7.1357739, 46.0181915 ], + [ 7.1359194, 46.0182877 ], + [ 7.1360319, 46.0183838 ], + [ 7.1362008, 46.0186435 ], + [ 7.1363454, 46.0187678 ], + [ 7.1364428, 46.0188076 ], + [ 7.1365718, 46.0188306 ], + [ 7.1366523, 46.018859 ], + [ 7.1367418, 46.0188762 ], + [ 7.1368388, 46.0188597 ], + [ 7.1369607, 46.0188432 ], + [ 7.1370412, 46.0188772 ], + [ 7.1371941, 46.0189623 ], + [ 7.1373641, 46.0190135 ], + [ 7.1375421, 46.0190874 ], + [ 7.1377111, 46.0191667 ], + [ 7.1379214, 46.0192238 ], + [ 7.1382202, 46.0193375 ], + [ 7.13839, 46.0194281 ], + [ 7.1386235, 46.0195303 ], + [ 7.1387689, 46.0196434 ], + [ 7.1390192, 46.0197738 ], + [ 7.1392124, 46.0198646 ], + [ 7.139447, 46.0199217 ], + [ 7.1396334, 46.0199223 ], + [ 7.1398843, 46.0199401 ], + [ 7.1401511, 46.020003 ], + [ 7.1403695, 46.02006 ], + [ 7.1405305, 46.0201338 ], + [ 7.1406277, 46.0202242 ], + [ 7.140724, 46.020309 ], + [ 7.1408205, 46.0203826 ], + [ 7.1409741, 46.0204788 ], + [ 7.1411189, 46.0205807 ], + [ 7.1412645, 46.0206601 ], + [ 7.1414666, 46.0207396 ], + [ 7.14166, 46.0207965 ], + [ 7.1418223, 46.0207915 ], + [ 7.1420007, 46.0207864 ], + [ 7.1421698, 46.020849 ], + [ 7.1423723, 46.0208665 ], + [ 7.1424851, 46.0208951 ], + [ 7.1426068, 46.0209462 ], + [ 7.1426951, 46.0210253 ], + [ 7.1428075, 46.0211327 ], + [ 7.1429044, 46.0212795 ], + [ 7.1430084, 46.0214488 ], + [ 7.1431041, 46.0216631 ], + [ 7.1432256, 46.0217311 ], + [ 7.1433627, 46.0217428 ], + [ 7.1434275, 46.0217093 ], + [ 7.143485, 46.0216644 ], + [ 7.1435015, 46.0216025 ], + [ 7.1434862, 46.0214504 ], + [ 7.1434547, 46.0212926 ], + [ 7.1434153, 46.0211291 ], + [ 7.1433759, 46.0209487 ], + [ 7.1433686, 46.0208023 ], + [ 7.1434741, 46.0206844 ], + [ 7.1435885, 46.0205833 ], + [ 7.1437583, 46.0205164 ], + [ 7.1439369, 46.0204832 ], + [ 7.1441717, 46.0204896 ], + [ 7.1443821, 46.0205353 ], + [ 7.1445926, 46.0205586 ], + [ 7.1448599, 46.0205257 ], + [ 7.1451515, 46.0204872 ], + [ 7.1453624, 46.0204372 ], + [ 7.1454273, 46.0203755 ], + [ 7.1454601, 46.0202855 ], + [ 7.1454849, 46.0201673 ], + [ 7.1454857, 46.0200265 ], + [ 7.145624, 46.0199538 ], + [ 7.1457616, 46.0198979 ], + [ 7.1459401, 46.019859 ], + [ 7.146167, 46.0198429 ], + [ 7.1463935, 46.0199 ], + [ 7.1464982, 46.0199454 ], + [ 7.1466598, 46.0200586 ], + [ 7.1468528, 46.0201775 ], + [ 7.1470227, 46.0202626 ], + [ 7.1471686, 46.0202912 ], + [ 7.1473382, 46.0202748 ], + [ 7.1476296, 46.0202533 ], + [ 7.1480594, 46.0201759 ], + [ 7.1482463, 46.0200808 ], + [ 7.1483763, 46.0199178 ], + [ 7.1486617, 46.0196822 ], + [ 7.1488153, 46.0196208 ], + [ 7.14901, 46.019582 ], + [ 7.1492045, 46.0195826 ], + [ 7.1493991, 46.0195777 ], + [ 7.149625, 46.0195896 ], + [ 7.1497949, 46.0196466 ], + [ 7.1498674, 46.0196919 ], + [ 7.1499731, 46.0196866 ], + [ 7.1500136, 46.0196585 ], + [ 7.1500623, 46.0196023 ], + [ 7.1501604, 46.0195125 ], + [ 7.1502091, 46.019462 ], + [ 7.1503063000000004, 46.0193948 ], + [ 7.1504526, 46.0193502 ], + [ 7.1506714, 46.0193284 ], + [ 7.150841, 46.0193233 ], + [ 7.1510922, 46.0192791 ], + [ 7.1512064, 46.0192006 ], + [ 7.1513682, 46.0191223 ], + [ 7.15145, 46.0190606 ], + [ 7.1515872, 46.019061 ], + [ 7.1517417, 46.0190052 ], + [ 7.1519847, 46.0189722 ], + [ 7.1521301, 46.0189614 ], + [ 7.1522196, 46.0189674 ], + [ 7.152413, 46.0190187 ], + [ 7.1526232, 46.0191151 ], + [ 7.1528335, 46.0191777 ], + [ 7.1530364, 46.0191165 ], + [ 7.1531013, 46.0190434 ], + [ 7.1531588, 46.0188521 ], + [ 7.1531846, 46.0187114 ], + [ 7.1532173, 46.0186158 ], + [ 7.1533147, 46.018509 ], + [ 7.1534775, 46.0184082 ], + [ 7.153705, 46.0182625 ], + [ 7.153908, 46.0181787 ], + [ 7.1541267, 46.0181794 ], + [ 7.1543767, 46.018214 ], + [ 7.1546929, 46.0182432 ], + [ 7.1549108, 46.0182439 ], + [ 7.1550572, 46.0181824 ], + [ 7.1551386, 46.0180475 ], + [ 7.1551561, 46.0179293 ], + [ 7.1552137, 46.0177267 ], + [ 7.155248, 46.0176462 ], + [ 7.1552954, 46.0175355 ], + [ 7.1553483, 46.0174539 ], + [ 7.1553938, 46.0173837 ], + [ 7.1555461, 46.0172674 ], + [ 7.1555575, 46.0172586 ], + [ 7.1556215, 46.0172098 ], + [ 7.1557881, 46.0171356 ], + [ 7.1560106, 46.0170365 ], + [ 7.1573161, 46.0167591 ], + [ 7.1574694, 46.0167708 ], + [ 7.1576232, 46.016839 ], + [ 7.1577039, 46.0168335 ], + [ 7.1577768, 46.0167718 ], + [ 7.1578994, 46.016637 ], + [ 7.1580708, 46.016418 ], + [ 7.1582253, 46.0161763 ], + [ 7.1582348, 46.0160636 ], + [ 7.1582353, 46.0159623 ], + [ 7.1583085, 46.0158668 ], + [ 7.1584632, 46.0157377 ], + [ 7.1585365, 46.0156197 ], + [ 7.1586752, 46.0154737 ], + [ 7.1588291, 46.015356 ], + [ 7.1590484, 46.0152384 ], + [ 7.1592351, 46.0151714 ], + [ 7.1593244, 46.0150816 ], + [ 7.1594797, 46.0148455 ], + [ 7.1596751, 46.0146603 ], + [ 7.1598541, 46.0145314 ], + [ 7.1599512, 46.0144698 ], + [ 7.1601859, 46.0145043 ], + [ 7.1604368, 46.0145107 ], + [ 7.1607765, 46.0145118 ], + [ 7.1611655, 46.0145074 ], + [ 7.1614974, 46.0144466 ], + [ 7.1617404, 46.0144192 ], + [ 7.1619593, 46.0143805 ], + [ 7.1621048, 46.0143302 ], + [ 7.1622269, 46.0142912 ], + [ 7.16243, 46.0141736 ], + [ 7.1625926, 46.014084 ], + [ 7.1627947, 46.0140284 ], + [ 7.1629971, 46.0140402 ], + [ 7.1632405, 46.0139453 ], + [ 7.1634033, 46.0138219 ], + [ 7.1634524, 46.0136757 ], + [ 7.1634531, 46.0135405 ], + [ 7.1634059, 46.0132926 ], + [ 7.1634071, 46.0130616 ], + [ 7.1633758, 46.0128701 ], + [ 7.1633768, 46.0126673 ], + [ 7.163321, 46.0125264 ], + [ 7.1632895, 46.0123685 ], + [ 7.1632417, 46.0122389 ], + [ 7.1632664, 46.0121489 ], + [ 7.1633890000000005, 46.0119915 ], + [ 7.164963, 46.011225 ], + [ 7.1651984, 46.0111131 ], + [ 7.1653368, 46.0110234 ], + [ 7.1654261, 46.0109223 ], + [ 7.1654435, 46.0108267 ], + [ 7.1654523, 46.0106802 ], + [ 7.1654611, 46.0105395 ], + [ 7.1654861, 46.0103763 ], + [ 7.165495, 46.010196 ], + [ 7.1655041, 46.0099933 ], + [ 7.165538, 46.0098358 ], + [ 7.1655629, 46.0096894 ], + [ 7.1656121, 46.0095375 ], + [ 7.1656854, 46.0093857 ], + [ 7.1657919, 46.0092283 ], + [ 7.1659548, 46.0090768 ], + [ 7.1660119, 46.008953 ], + [ 7.1661017, 46.0087393 ], + [ 7.1662649, 46.0085427 ], + [ 7.1664354, 46.0084813 ], + [ 7.1665164, 46.008414 ], + [ 7.1666308, 46.0083017 ], + [ 7.1667042, 46.0081442 ], + [ 7.1667209, 46.008026 ], + [ 7.1667135, 46.0078908 ], + [ 7.1666497, 46.0077329 ], + [ 7.1665459, 46.0075073 ], + [ 7.1665064, 46.0073495 ], + [ 7.1665233, 46.0071862 ], + [ 7.166524, 46.0070398 ], + [ 7.1665895, 46.0068485 ], + [ 7.1666234, 46.0066796 ], + [ 7.1666323, 46.0065163 ], + [ 7.1666571, 46.0063982 ], + [ 7.1666335, 46.0062741 ], + [ 7.1667243, 46.0060266 ], + [ 7.1668945, 46.0058639 ], + [ 7.167025, 46.0057347 ], + [ 7.1672526, 46.0055664 ], + [ 7.1674719, 46.005432 ], + [ 7.1676429, 46.0052804 ], + [ 7.1677967, 46.0051852 ], + [ 7.1679516, 46.0050167 ], + [ 7.1680813, 46.0048819 ], + [ 7.1682362, 46.0047247 ], + [ 7.1684473, 46.0046239 ], + [ 7.1685772, 46.0046188 ], + [ 7.1687306, 46.0045911 ], + [ 7.1688446, 46.0045576 ], + [ 7.1689659, 46.0044847 ], + [ 7.169047, 46.0044005 ], + [ 7.1690807, 46.0042767 ], + [ 7.1690811, 46.0041922 ], + [ 7.169, 46.0041131 ], + [ 7.1688957, 46.0040001 ], + [ 7.1688397, 46.0039042 ], + [ 7.1687596, 46.003797 ], + [ 7.1687278, 46.0036899 ], + [ 7.1687526, 46.003566 ], + [ 7.1688259, 46.0034198 ], + [ 7.168859, 46.0032509 ], + [ 7.1688277, 46.0030537 ], + [ 7.1687881, 46.0029128 ], + [ 7.1687322, 46.0027887 ], + [ 7.1686438, 46.0027152 ], + [ 7.1685151, 46.002636 ], + [ 7.1683936, 46.0025736 ], + [ 7.1683134, 46.0024889 ], + [ 7.1683545, 46.0023201 ], + [ 7.1684528, 46.0021796 ], + [ 7.1685825, 46.002056 ], + [ 7.1687855, 46.0019666 ], + [ 7.168972, 46.0019277 ], + [ 7.1692234, 46.0018271 ], + [ 7.1693372, 46.0016641 ], + [ 7.1694111, 46.0015517 ], + [ 7.1694762, 46.0014505 ], + [ 7.1695652, 46.0013945 ], + [ 7.1696791, 46.0013554 ], + [ 7.1697923, 46.0013163 ], + [ 7.1698661, 46.0012377 ], + [ 7.1698908, 46.0011307 ], + [ 7.169859, 46.0010293 ], + [ 7.1698515, 46.000911 ], + [ 7.1698441, 46.0007814 ], + [ 7.1698695, 46.000545 ], + [ 7.1699678, 46.0004044 ], + [ 7.1700411, 46.0002638 ], + [ 7.1701305, 46.000129 ], + [ 7.1702448, 46.000011 ], + [ 7.1703421, 45.9999043 ], + [ 7.1704645, 45.9997921 ], + [ 7.1705378, 45.9996402 ], + [ 7.1706038, 45.9995221 ], + [ 7.1707094, 45.9993591 ], + [ 7.1707669, 45.9991509 ], + [ 7.1708167, 45.9990328 ], + [ 7.1709221, 45.9989261 ], + [ 7.1710443999999995, 45.9988251 ], + [ 7.1711901, 45.9987241 ], + [ 7.1713531, 45.9985557 ], + [ 7.1714516, 45.9983757 ], + [ 7.1715249, 45.9982351 ], + [ 7.171574, 45.998083199999996 ], + [ 7.1716309, 45.9980046 ], + [ 7.1717612, 45.9979205 ], + [ 7.1719559, 45.9978478 ], + [ 7.1721747, 45.997826 ], + [ 7.1722959, 45.9977869 ], + [ 7.1724261, 45.9977254 ], + [ 7.1725151, 45.9976524 ], + [ 7.1726936, 45.9976248 ], + [ 7.1729122, 45.9976198 ], + [ 7.1731139, 45.9976148 ], + [ 7.1732761, 45.9976041 ], + [ 7.1734949, 45.9975653 ], + [ 7.1736977, 45.9975039 ], + [ 7.1738111, 45.9974198 ], + [ 7.1738681, 45.9973017 ], + [ 7.1739178, 45.9972005 ], + [ 7.17391, 45.9971442 ], + [ 7.1738128, 45.9970537 ], + [ 7.1736681, 45.9969463 ], + [ 7.1734823, 45.9968387 ], + [ 7.1733697, 45.9967708 ], + [ 7.1733055, 45.9966917 ], + [ 7.1732576, 45.9966014 ], + [ 7.1731285, 45.9964434 ], + [ 7.1730081, 45.9963078 ], + [ 7.1729603, 45.9961894 ], + [ 7.1729766999999995, 45.9961218 ], + [ 7.1730741, 45.9960208 ], + [ 7.1731882, 45.9959367 ], + [ 7.1732933, 45.9958863 ], + [ 7.1733502, 45.995802 ], + [ 7.1734243, 45.9956614 ], + [ 7.1735297, 45.9955434 ], + [ 7.1736764, 45.9953974 ], + [ 7.173847, 45.9953191 ], + [ 7.1741305, 45.995258 ], + [ 7.1745446, 45.9950284 ], + [ 7.1746741, 45.9949274 ], + [ 7.1747393, 45.9948037 ], + [ 7.1747318, 45.9946854 ], + [ 7.1747574, 45.9945446 ], + [ 7.1748387, 45.994421 ], + [ 7.1749117, 45.9943423 ], + [ 7.1750821, 45.9942866 ], + [ 7.1752205, 45.9942025 ], + [ 7.1753096, 45.9941295 ], + [ 7.1753908, 45.9940171 ], + [ 7.1754731, 45.9938428 ], + [ 7.1755222, 45.9936965 ], + [ 7.1756202, 45.9936011 ], + [ 7.1757655, 45.993579 ], + [ 7.1760083, 45.9935797 ], + [ 7.1764698, 45.9935586 ], + [ 7.1767368, 45.9935481 ], + [ 7.1769475, 45.9935263 ], + [ 7.1770204, 45.9934645 ], + [ 7.1771095, 45.9933747 ], + [ 7.1771832, 45.993313 ], + [ 7.1773287, 45.9932458 ], + [ 7.1775715, 45.9932465 ], + [ 7.1778547, 45.9932249 ], + [ 7.1780171, 45.9931859 ], + [ 7.1781794, 45.9931301 ], + [ 7.1783986, 45.9930069 ], + [ 7.1796159, 45.9923065 ], + [ 7.1798268, 45.9922114 ], + [ 7.1800451, 45.9921163 ], + [ 7.1801674, 45.9919984 ], + [ 7.1802898, 45.9918749 ], + [ 7.1804195, 45.9917344 ], + [ 7.180518, 45.9915545 ], + [ 7.1806478, 45.9913803 ], + [ 7.1807705, 45.991206 ], + [ 7.1809084, 45.9910206 ], + [ 7.1811437, 45.990903 ], + [ 7.1813871, 45.9907685 ], + [ 7.1815093, 45.9906844 ], + [ 7.1816476, 45.990606 ], + [ 7.1817611, 45.9904824 ], + [ 7.1818263, 45.9903474 ], + [ 7.1818762, 45.9901842 ], + [ 7.1819413, 45.9900774 ], + [ 7.1820384, 45.9900046 ], + [ 7.1822093, 45.9898473 ], + [ 7.182364, 45.9897239 ], + [ 7.1825108, 45.9895498 ], + [ 7.1826484, 45.9894488 ], + [ 7.1828272, 45.9893311 ], + [ 7.1830867, 45.9891967 ], + [ 7.183306, 45.9890396 ], + [ 7.1834932, 45.98886 ], + [ 7.1836468, 45.988776 ], + [ 7.1838014, 45.9886582 ], + [ 7.1839238, 45.9885346 ], + [ 7.1839486, 45.9884052 ], + [ 7.1839492, 45.9882757 ], + [ 7.1839417, 45.9881686 ], + [ 7.1840069, 45.9880111 ], + [ 7.1840891, 45.9878593 ], + [ 7.1842593, 45.987674 ], + [ 7.1844224, 45.9874717 ], + [ 7.184553, 45.98732 ], + [ 7.1847158, 45.9871571 ], + [ 7.1849423, 45.9870227 ], + [ 7.1852268, 45.9868996 ], + [ 7.1853805, 45.9867875 ], + [ 7.1855432, 45.9866753 ], + [ 7.1856407, 45.9865291 ], + [ 7.1857148, 45.9863661 ], + [ 7.1858122, 45.9862368 ], + [ 7.1859187, 45.9860513 ], + [ 7.1859763, 45.9858149 ], + [ 7.1860425, 45.985618 ], + [ 7.1861485, 45.9853705 ], + [ 7.1862311, 45.9851342 ], + [ 7.1862886, 45.9849147 ], + [ 7.1863136, 45.9847458 ], + [ 7.1863635, 45.9845827 ], + [ 7.1864606, 45.984521 ], + [ 7.1866388, 45.9845215 ], + [ 7.1868896, 45.9845279 ], + [ 7.1871568, 45.984478 ], + [ 7.1874805, 45.9844226 ], + [ 7.1876753, 45.9843275 ], + [ 7.1878783, 45.9842098 ], + [ 7.1879191, 45.9840917 ], + [ 7.1879278, 45.9839622 ], + [ 7.1879686, 45.9838609 ], + [ 7.1880417, 45.9837541 ], + [ 7.1880994, 45.9836473 ], + [ 7.1881, 45.9835178 ], + [ 7.1881413, 45.9833095 ], + [ 7.1887616, 45.9822469 ], + [ 7.1884869, 45.9821729 ], + [ 7.1883261, 45.9820823 ], + [ 7.1882128, 45.9819862 ], + [ 7.1881729, 45.9818847 ], + [ 7.1881657, 45.9817101 ], + [ 7.1882237, 45.9815526 ], + [ 7.1883131, 45.9814008 ], + [ 7.1884353, 45.981311 ], + [ 7.188613, 45.9812496 ], + [ 7.1887832, 45.9812275 ], + [ 7.1889856, 45.9812281 ], + [ 7.1893571, 45.9812912 ], + [ 7.1897856, 45.9814107 ], + [ 7.1901502, 45.9812259 ], + [ 7.1904912, 45.9810805 ], + [ 7.1907589, 45.9809066 ], + [ 7.1910262, 45.980823 ], + [ 7.1911798, 45.980739 ], + [ 7.191278, 45.9806153 ], + [ 7.1915779, 45.9804472 ], + [ 7.1917005, 45.9802561 ], + [ 7.1917659, 45.9800817 ], + [ 7.1918559, 45.9799637 ], + [ 7.19194, 45.9799044 ], + [ 7.192107, 45.9798856 ], + [ 7.1923167, 45.9798862 ], + [ 7.1925271, 45.9798981 ], + [ 7.1927699, 45.9798819 ], + [ 7.1929724, 45.9798656 ], + [ 7.1932958, 45.9798665 ], + [ 7.1935627, 45.9798561 ], + [ 7.1937412, 45.9798116 ], + [ 7.1940325, 45.9797505 ], + [ 7.1943885, 45.979667 ], + [ 7.1946234, 45.9796339 ], + [ 7.1948825, 45.9795784 ], + [ 7.1950126, 45.9795055 ], + [ 7.1952156, 45.9793766 ], + [ 7.1954348, 45.9792307 ], + [ 7.1956048, 45.9790849 ], + [ 7.1956872, 45.978871 ], + [ 7.1957123, 45.9786571 ], + [ 7.1958027, 45.9784771 ], + [ 7.1959325, 45.9782973 ], + [ 7.1961032, 45.9781739 ], + [ 7.1962166, 45.9780616 ], + [ 7.196323, 45.9778985 ], + [ 7.1964697, 45.9777187 ], + [ 7.196583, 45.977629 ], + [ 7.1968341, 45.9775677 ], + [ 7.1971172, 45.9775573 ], + [ 7.1973521, 45.977496 ], + [ 7.1975146, 45.9774064 ], + [ 7.1976201, 45.9772546 ], + [ 7.1977104, 45.977069 ], + [ 7.1977759, 45.9768496 ], + [ 7.1978499, 45.9767033 ], + [ 7.1980525, 45.9764899 ], + [ 7.1982393, 45.9763609 ], + [ 7.1985562, 45.9761703 ], + [ 7.1989771, 45.9760026 ], + [ 7.1990589, 45.9759183 ], + [ 7.1991241, 45.9757777 ], + [ 7.1991892, 45.9756315 ], + [ 7.1992476, 45.9753782 ], + [ 7.1992728, 45.9751473 ], + [ 7.1993378, 45.9750293 ], + [ 7.199452, 45.9749225 ], + [ 7.199591, 45.9746582 ], + [ 7.1997458, 45.9742926 ], + [ 7.1999331, 45.9740735 ], + [ 7.2000722, 45.973781 ], + [ 7.2001618, 45.9735841 ], + [ 7.2002841, 45.9734493 ], + [ 7.2004385, 45.9733709 ], + [ 7.2006162, 45.9733038 ], + [ 7.2008185, 45.9733212 ], + [ 7.2010207, 45.97335 ], + [ 7.2011818, 45.9733899 ], + [ 7.201368, 45.973396 ], + [ 7.2014981, 45.9733345 ], + [ 7.2016435, 45.9732729 ], + [ 7.2017737, 45.9731832 ], + [ 7.2019441, 45.9731104 ], + [ 7.202138, 45.9730434 ], + [ 7.2022763, 45.9729368 ], + [ 7.202398, 45.9727681 ], + [ 7.2025848, 45.9726335 ], + [ 7.2027071, 45.9725043 ], + [ 7.2027803, 45.972358 ], + [ 7.2028624, 45.9722118 ], + [ 7.2029837, 45.9721108 ], + [ 7.2031058, 45.9720436 ], + [ 7.2031385, 45.9719479 ], + [ 7.2031066, 45.9718577 ], + [ 7.203067, 45.9716942 ], + [ 7.2030274, 45.9715252 ], + [ 7.2030846, 45.9713564 ], + [ 7.2031581, 45.9711257 ], + [ 7.2032806, 45.9709514 ], + [ 7.2035076, 45.9708451 ], + [ 7.2037669, 45.9707388 ], + [ 7.2040422, 45.970655 ], + [ 7.2042207, 45.9705767 ], + [ 7.2043913, 45.9704758 ], + [ 7.2045372, 45.970295899999996 ], + [ 7.2047003, 45.9700486 ], + [ 7.2047984, 45.969925 ], + [ 7.2050346, 45.9695314 ], + [ 7.2050921, 45.9692894 ], + [ 7.2051089, 45.969143 ], + [ 7.2050447, 45.9690584 ], + [ 7.2050532, 45.9689682 ], + [ 7.205038, 45.968743 ], + [ 7.2050143, 45.9686246 ], + [ 7.2049828, 45.9684668 ], + [ 7.2049429, 45.9683653 ], + [ 7.2049195, 45.9681681 ], + [ 7.2049203, 45.9679936 ], + [ 7.2049783, 45.9678247 ], + [ 7.2050998, 45.9676843 ], + [ 7.2052626, 45.9675158 ], + [ 7.2053842, 45.9673584 ], + [ 7.2054179, 45.9671895 ], + [ 7.2054348, 45.967015 ], + [ 7.2053148, 45.966795 ], + [ 7.2052586, 45.966547 ], + [ 7.2051627, 45.9663665 ], + [ 7.2051631, 45.9662595 ], + [ 7.2051798, 45.96613 ], + [ 7.20527, 45.9659557 ], + [ 7.2056848, 45.965495 ], + [ 7.205766, 45.9653375 ], + [ 7.2057988, 45.9652194 ], + [ 7.2057926, 45.9649828 ], + [ 7.2057044, 45.9646672 ], + [ 7.2056824, 45.964363 ], + [ 7.2056751, 45.9641771 ], + [ 7.2056843, 45.9639181 ], + [ 7.2057335, 45.9637324 ], + [ 7.205678, 45.9635069 ], + [ 7.205558, 45.9632926 ], + [ 7.2053891, 45.9630161 ], + [ 7.2051732, 45.9626213 ], + [ 7.2049079, 45.9622544 ], + [ 7.2048361, 45.9620965 ], + [ 7.2047882, 45.9619838 ], + [ 7.2047888, 45.9618429 ], + [ 7.2048379, 45.9616798 ], + [ 7.2048629, 45.9614827 ], + [ 7.2048715, 45.9613701 ], + [ 7.2048157, 45.9612123 ], + [ 7.2047198, 45.9610261 ], + [ 7.2046479, 45.9608851 ], + [ 7.2046243, 45.9607386 ], + [ 7.2046652, 45.9605979 ], + [ 7.2047634, 45.9604518 ], + [ 7.2047805, 45.9602378 ], + [ 7.2047654, 45.95999 ], + [ 7.2047584, 45.9597421 ], + [ 7.2046948, 45.9595449 ], + [ 7.2045835, 45.9591897 ], + [ 7.2043986, 45.9588907 ], + [ 7.2042304999999995, 45.9586143 ], + [ 7.2040701, 45.958259 ], + [ 7.2039581, 45.9580503 ], + [ 7.2039183, 45.9579488 ], + [ 7.2039271, 45.9577798 ], + [ 7.2039437, 45.9576504 ], + [ 7.2039041, 45.9575038 ], + [ 7.2038401, 45.9573854 ], + [ 7.2037279, 45.9572499 ], + [ 7.2035584, 45.957103 ], + [ 7.2033816, 45.9569842 ], + [ 7.2032284, 45.9568092 ], + [ 7.2031402, 45.9567019 ], + [ 7.2031649, 45.9565725 ], + [ 7.20323, 45.9564262 ], + [ 7.2033363, 45.9562632 ], + [ 7.2033448, 45.9561563 ], + [ 7.2033052, 45.956004 ], + [ 7.2032736, 45.9558519 ], + [ 7.2032904, 45.9556999 ], + [ 7.2032265, 45.9555702 ], + [ 7.2030813, 45.9554064 ], + [ 7.2029609, 45.9552822 ], + [ 7.2028083, 45.9551579 ], + [ 7.2027846, 45.9550395 ], + [ 7.2028011, 45.9549551 ], + [ 7.2028985, 45.9547977 ], + [ 7.2029647, 45.9545838 ], + [ 7.2030062, 45.9542967 ], + [ 7.2030313, 45.9540771 ], + [ 7.2030402, 45.9538857 ], + [ 7.2030902, 45.9537 ], + [ 7.2031713, 45.9535763 ], + [ 7.2032525, 45.9534245 ], + [ 7.2033506, 45.9533065 ], + [ 7.2033593, 45.9531544 ], + [ 7.2033195, 45.9530248 ], + [ 7.2032718, 45.9528782 ], + [ 7.2032496, 45.9528017 ], + [ 7.2032162, 45.9526866 ], + [ 7.2031845, 45.9525513 ], + [ 7.2031609, 45.9524217 ], + [ 7.2032017, 45.9522979 ], + [ 7.2032588, 45.9521516 ], + [ 7.2033405, 45.952073 ], + [ 7.2034216, 45.951955 ], + [ 7.2035349, 45.9518427 ], + [ 7.203649, 45.951736 ], + [ 7.2037059, 45.9516348 ], + [ 7.2037309, 45.9514321 ], + [ 7.2037403, 45.9513139 ], + [ 7.2037971, 45.9512126 ], + [ 7.2038621, 45.9510889 ], + [ 7.2039601, 45.9509709 ], + [ 7.2040414, 45.9508134 ], + [ 7.2040824, 45.9506503 ], + [ 7.2040668, 45.950532 ], + [ 7.204035, 45.9504361 ], + [ 7.2040515, 45.9503461 ], + [ 7.2040936, 45.9501152 ], + [ 7.204159, 45.9498901 ], + [ 7.2041279, 45.9496197 ], + [ 7.2041604, 45.9495635 ], + [ 7.2042502, 45.9494849 ], + [ 7.2043874, 45.9494233 ], + [ 7.2044772, 45.949356 ], + [ 7.2045018, 45.9492435 ], + [ 7.2045427, 45.949114 ], + [ 7.2046076, 45.9490072 ], + [ 7.2046894, 45.9489117 ], + [ 7.2048268, 45.9488163 ], + [ 7.2049085, 45.9487377 ], + [ 7.2049655, 45.9486196 ], + [ 7.2049900000000004, 45.9485296 ], + [ 7.2050557, 45.9484284 ], + [ 7.2051366, 45.9483554 ], + [ 7.205153, 45.9482878 ], + [ 7.2051453, 45.9482033 ], + [ 7.2051779, 45.9481189 ], + [ 7.2052346, 45.9480403 ], + [ 7.2053486, 45.9479673 ], + [ 7.2054375, 45.9478944 ], + [ 7.2055194, 45.947782 ], + [ 7.2055522, 45.9476413 ], + [ 7.2055284, 45.9475454 ], + [ 7.2054321, 45.947449399999996 ], + [ 7.2052946, 45.9473759 ], + [ 7.2052142, 45.9473306 ], + [ 7.2051823, 45.9472516 ], + [ 7.2051827, 45.9471671 ], + [ 7.2052073, 45.9470489 ], + [ 7.2052158, 45.9469645 ], + [ 7.2052164, 45.946818 ], + [ 7.2052746, 45.9465647 ], + [ 7.2053235, 45.9464523 ], + [ 7.2053963, 45.9463736 ], + [ 7.2055184, 45.9462839 ], + [ 7.2055832, 45.9462108 ], + [ 7.2056646, 45.9460083 ], + [ 7.2057224, 45.9458676 ], + [ 7.2058599, 45.9457385 ], + [ 7.2060549, 45.9455532 ], + [ 7.2061288, 45.9454126 ], + [ 7.2060075, 45.9453334 ], + [ 7.2059356, 45.9451867 ], + [ 7.2058553, 45.9451077 ], + [ 7.2058557, 45.9450232 ], + [ 7.2058639, 45.9449725 ], + [ 7.2059287, 45.9448995 ], + [ 7.2060509, 45.9447816 ], + [ 7.206262, 45.9445963 ], + [ 7.2065539, 45.9443437 ], + [ 7.206976, 45.9439957 ], + [ 7.207041, 45.943872 ], + [ 7.2070575, 45.9437819 ], + [ 7.2070259, 45.9436185 ], + [ 7.2069541, 45.9434493 ], + [ 7.2068986, 45.9432351 ], + [ 7.2068748, 45.943145 ], + [ 7.2068916, 45.9429648 ], + [ 7.2069404, 45.9428523 ], + [ 7.2070061, 45.942768 ], + [ 7.2070474, 45.9425147 ], + [ 7.2070641, 45.9423627 ], + [ 7.2070244, 45.9422386 ], + [ 7.206904, 45.94212 ], + [ 7.2067669, 45.941962 ], + [ 7.2067032, 45.9417759 ], + [ 7.2067203, 45.9415338 ], + [ 7.2067787, 45.9412467 ], + [ 7.2068361, 45.941016 ], + [ 7.2068693, 45.940773899999996 ], + [ 7.2069267, 45.9407177 ], + [ 7.2070722, 45.9406111 ], + [ 7.2071622, 45.9404875 ], + [ 7.2072112, 45.940313 ], + [ 7.2073341, 45.9400373 ], + [ 7.2074898, 45.9395985 ], + [ 7.2074662, 45.9394632 ], + [ 7.2074345, 45.9393336 ], + [ 7.207411, 45.9391871 ], + [ 7.207444, 45.9390069 ], + [ 7.207485, 45.9388156 ], + [ 7.2075099, 45.9386523 ], + [ 7.2074542, 45.9384888 ], + [ 7.2073502, 45.9383139 ], + [ 7.207246, 45.9381785 ], + [ 7.207117, 45.9380147 ], + [ 7.2069725, 45.9378791 ], + [ 7.2068926, 45.9377156 ], + [ 7.2067318, 45.9374448 ], + [ 7.2065306, 45.9372021 ], + [ 7.2064107, 45.936982 ], + [ 7.2062992, 45.9366607 ], + [ 7.2061788, 45.9365477 ], + [ 7.2060171, 45.9364966 ], + [ 7.2058795, 45.9364511 ], + [ 7.2058396, 45.9363778 ], + [ 7.205848, 45.9362764 ], + [ 7.2058413, 45.9361525 ], + [ 7.2058178, 45.9359947 ], + [ 7.2057452, 45.9358312 ], + [ 7.205585, 45.9355998 ], + [ 7.2054656, 45.9352615 ], + [ 7.2053781, 45.9349853 ], + [ 7.205241, 45.9348216 ], + [ 7.2050966, 45.9346803 ], + [ 7.2049192, 45.9345391 ], + [ 7.2047336, 45.9343978 ], + [ 7.204557, 45.9342508 ], + [ 7.2044039, 45.9340645 ], + [ 7.2042918, 45.9339065 ], + [ 7.2041717, 45.9337203 ], + [ 7.2040348, 45.9335115 ], + [ 7.2037626, 45.9330996 ], + [ 7.2036335, 45.9329528 ], + [ 7.203473, 45.9328059 ], + [ 7.2033923, 45.9326536 ], + [ 7.2033287, 45.9324563 ], + [ 7.2033463, 45.9322987 ], + [ 7.2034436, 45.9321581 ], + [ 7.2035739, 45.9320121 ], + [ 7.2036632, 45.9318603 ], + [ 7.2036075, 45.9316799 ], + [ 7.2035276, 45.9315219 ], + [ 7.2035203, 45.931353 ], + [ 7.2034726, 45.9312064 ], + [ 7.2033514, 45.9310878 ], + [ 7.2032553, 45.9309692 ], + [ 7.2031267, 45.9308788 ], + [ 7.2029732, 45.9307939 ], + [ 7.2028609, 45.9306809 ], + [ 7.2027643, 45.9304723 ], + [ 7.2026767, 45.9302411 ], + [ 7.2026050999999995, 45.9300325 ], + [ 7.2025494, 45.9298746 ], + [ 7.2024211, 45.9297222 ], + [ 7.2022677, 45.9296148 ], + [ 7.2021874, 45.9295413 ], + [ 7.2021073, 45.9294341 ], + [ 7.2020426, 45.9293213 ], + [ 7.2020349, 45.9292424 ], + [ 7.2020845, 45.9291187 ], + [ 7.2021414, 45.9290005 ], + [ 7.2021903, 45.9288881 ], + [ 7.2021747, 45.9287584 ], + [ 7.202143, 45.9286401 ], + [ 7.2020868, 45.928578 ], + [ 7.2020793, 45.9284653 ], + [ 7.2021201, 45.9283472 ], + [ 7.2021777, 45.928246 ], + [ 7.2022265, 45.9281448 ], + [ 7.2022110999999995, 45.9279645 ], + [ 7.2021151, 45.9278177 ], + [ 7.2019295, 45.9276933 ], + [ 7.2016473, 45.9275743 ], + [ 7.2012765, 45.9274212 ], + [ 7.2009942, 45.9273302 ], + [ 7.2007116, 45.9272731 ], + [ 7.2003638, 45.9272271 ], + [ 7.2001212, 45.9272659 ], + [ 7.199822, 45.9273326 ], + [ 7.1993526, 45.9274495 ], + [ 7.1989729, 45.9275216 ], + [ 7.1987959, 45.9272847 ], + [ 7.1987319, 45.9271774 ], + [ 7.198538, 45.9271206 ], + [ 7.1983932, 45.9270526 ], + [ 7.19824, 45.926917 ], + [ 7.1980717, 45.9267081 ], + [ 7.1979676, 45.926567 ], + [ 7.1978062, 45.9264482 ], + [ 7.1976125, 45.9263238 ], + [ 7.1974841, 45.926222 ], + [ 7.1974766, 45.9260925 ], + [ 7.1975575, 45.9260195 ], + [ 7.1976313, 45.9259071 ], + [ 7.1976398, 45.9258057 ], + [ 7.1975354, 45.9257323 ], + [ 7.1974384, 45.9256137 ], + [ 7.1973583, 45.9255177 ], + [ 7.1972298, 45.925416 ], + [ 7.1971649, 45.925337 ], + [ 7.1971491, 45.9252693 ], + [ 7.1971496, 45.9251454 ], + [ 7.1970697, 45.9249987 ], + [ 7.1968852, 45.9248124 ], + [ 7.1966677, 45.9246428 ], + [ 7.1964825, 45.9244283 ], + [ 7.1963704, 45.9242815 ], + [ 7.1962664, 45.9241179 ], + [ 7.1961047, 45.9240667 ], + [ 7.1959119, 45.9239423 ], + [ 7.1957828, 45.9238124 ], + [ 7.1956546, 45.9236543 ], + [ 7.1955577, 45.9235245 ], + [ 7.1955181, 45.923361 ], + [ 7.195438, 45.9232538 ], + [ 7.1952615, 45.9231012 ], + [ 7.1951483, 45.9229995 ], + [ 7.1951246, 45.9228981 ], + [ 7.1950368, 45.9227176 ], + [ 7.194957, 45.9225541 ], + [ 7.1948612, 45.9223454 ], + [ 7.1948543, 45.9220919 ], + [ 7.1947992, 45.9218046 ], + [ 7.1947105, 45.9216297 ], + [ 7.1945822, 45.9214998 ], + [ 7.1944376, 45.9214093 ], + [ 7.1943245, 45.9213188 ], + [ 7.1942928, 45.9211836 ], + [ 7.1942532, 45.9210314 ], + [ 7.1941571, 45.9209016 ], + [ 7.1940279, 45.9208111 ], + [ 7.1937537, 45.9206807 ], + [ 7.1934956, 45.9205786 ], + [ 7.1932864, 45.9205386 ], + [ 7.1930439, 45.920538 ], + [ 7.1928658, 45.9205599 ], + [ 7.1926556, 45.9205481 ], + [ 7.1925189, 45.920497 ], + [ 7.192341, 45.920457 ], + [ 7.1921146, 45.9204676 ], + [ 7.1919043, 45.9204839 ], + [ 7.1916537, 45.9205057 ], + [ 7.1914119, 45.9205219 ], + [ 7.1912339, 45.9205158 ], + [ 7.191056, 45.9204927 ], + [ 7.190854, 45.9204471 ], + [ 7.1906048, 45.9203393 ], + [ 7.1903307, 45.9202146 ], + [ 7.1901851, 45.9201748 ], + [ 7.1900072, 45.9201349 ], + [ 7.189822, 45.9201231 ], + [ 7.1895719, 45.920021 ], + [ 7.1890799, 45.9198111 ], + [ 7.188886, 45.9197599 ], + [ 7.1887573, 45.9197145 ], + [ 7.188588, 45.9195788 ], + [ 7.1884756, 45.9194883 ], + [ 7.1882979, 45.9194203 ], + [ 7.1881047, 45.9193971 ], + [ 7.1879107, 45.9193628 ], + [ 7.1876604, 45.919317 ], + [ 7.1874263, 45.9192543 ], + [ 7.1872724, 45.9192652 ], + [ 7.187095, 45.9193097 ], + [ 7.1869731, 45.9193487 ], + [ 7.1868118, 45.919399 ], + [ 7.186674, 45.9194042 ], + [ 7.1865372, 45.9193812 ], + [ 7.1862952, 45.9192905 ], + [ 7.1861014, 45.9192054 ], + [ 7.1858837, 45.9190865 ], + [ 7.1856258, 45.9189337 ], + [ 7.185433, 45.9188092 ], + [ 7.1852554, 45.9187411 ], + [ 7.1850615, 45.9186898 ], + [ 7.1848121, 45.9186158 ], + [ 7.1846101, 45.9185646 ], + [ 7.1844081, 45.9185302 ], + [ 7.1842222, 45.9185014 ], + [ 7.1838994, 45.9184554 ], + [ 7.1836974, 45.918421 ], + [ 7.1835123, 45.9183754 ], + [ 7.1833024, 45.918296 ], + [ 7.1830761, 45.918284 ], + [ 7.1828175, 45.9182945 ], + [ 7.1825591, 45.9182712 ], + [ 7.1822122, 45.9182026 ], + [ 7.1818975, 45.918151 ], + [ 7.181647, 45.9181502 ], + [ 7.1813725999999996, 45.9180987 ], + [ 7.1811143, 45.9180304 ], + [ 7.180848, 45.9179564 ], + [ 7.1806541, 45.9179051 ], + [ 7.1804522, 45.9178538 ], + [ 7.1802995, 45.9177857 ], + [ 7.1800176, 45.9176103 ], + [ 7.1797117, 45.9173897 ], + [ 7.179494, 45.9172652 ], + [ 7.1792277, 45.9171968 ], + [ 7.1790176, 45.917168 ], + [ 7.1788487, 45.9171112 ], + [ 7.1787032, 45.91706 ], + [ 7.178461, 45.9169973 ], + [ 7.1781384, 45.9169175 ], + [ 7.1778801, 45.9168548 ], + [ 7.177646, 45.9167922 ], + [ 7.1773798, 45.9167125 ], + [ 7.1772109, 45.9166669 ], + [ 7.176985, 45.9165648 ], + [ 7.1768315, 45.9164912 ], + [ 7.1766065, 45.9163779 ], + [ 7.176421, 45.9162647 ], + [ 7.1762193, 45.9161626 ], + [ 7.1760015, 45.9160662 ], + [ 7.1758487, 45.9160151 ], + [ 7.1757274, 45.9159415 ], + [ 7.1756554, 45.9158343 ], + [ 7.1755594, 45.9156988 ], + [ 7.1754234, 45.9155182 ], + [ 7.1752944, 45.9153714 ], + [ 7.17515, 45.9152414 ], + [ 7.1749484, 45.9151394 ], + [ 7.174771, 45.9150093 ], + [ 7.1745049, 45.9149071 ], + [ 7.174352, 45.9148785 ], + [ 7.174158, 45.9148554 ], + [ 7.1740614, 45.9148382 ], + [ 7.1739642, 45.9147816 ], + [ 7.1738116, 45.9147023 ], + [ 7.1736095, 45.9146735 ], + [ 7.1734244, 45.9146391 ], + [ 7.1732382, 45.9146723 ], + [ 7.1730359, 45.9147055 ], + [ 7.1728419, 45.9146711 ], + [ 7.1727133, 45.914631299999996 ], + [ 7.1725679, 45.9145464 ], + [ 7.172407, 45.9145064 ], + [ 7.1722372, 45.9144834 ], + [ 7.1721647, 45.9144663 ], + [ 7.1721249, 45.9143704 ], + [ 7.1719797, 45.9142574 ], + [ 7.1719236, 45.9142065 ], + [ 7.1718917, 45.9141388 ], + [ 7.1717554, 45.9140145 ], + [ 7.1715617, 45.9139181 ], + [ 7.1713839, 45.9138838 ], + [ 7.1711416, 45.9138605 ], + [ 7.1709966, 45.9138544 ], + [ 7.1709154, 45.913826 ], + [ 7.1707708, 45.9137467 ], + [ 7.1706174, 45.9136674 ], + [ 7.1704082, 45.913616 ], + [ 7.1702705, 45.91361 ], + [ 7.17015, 45.9135477 ], + [ 7.1699646, 45.9134232 ], + [ 7.169828, 45.9133439 ], + [ 7.1696182, 45.9132588 ], + [ 7.1694085, 45.9131567 ], + [ 7.1692397, 45.9130887 ], + [ 7.1690217, 45.9130373 ], + [ 7.1689005, 45.9129581 ], + [ 7.1688365, 45.9128621 ], + [ 7.1686838999999996, 45.9127715 ], + [ 7.1683842, 45.9127818 ], + [ 7.1682557, 45.9127082 ], + [ 7.1680702, 45.9126119 ], + [ 7.167861, 45.9125662 ], + [ 7.167619, 45.9124697 ], + [ 7.1673209, 45.9123448 ], + [ 7.1671511, 45.9123049 ], + [ 7.1670142, 45.9122932 ], + [ 7.1668283, 45.9122814 ], + [ 7.1666584, 45.9122696 ], + [ 7.1665055, 45.9122409 ], + [ 7.1663599, 45.9122011 ], + [ 7.16615, 45.9121384 ], + [ 7.1659974, 45.9120479 ], + [ 7.1659173, 45.9119687 ], + [ 7.1658687, 45.9118672 ], + [ 7.1657243, 45.9117541 ], + [ 7.1655385, 45.9116859 ], + [ 7.1653374, 45.9116347 ], + [ 7.1651435, 45.9115946 ], + [ 7.1649818, 45.911566 ], + [ 7.1648531, 45.9115261 ], + [ 7.1647401, 45.9114188 ], + [ 7.1646843, 45.9113116 ], + [ 7.1645559, 45.9112211 ], + [ 7.1643461, 45.9111359 ], + [ 7.1641684, 45.9110678 ], + [ 7.1640722, 45.9109886 ], + [ 7.1640160999999996, 45.9109378 ], + [ 7.1638625, 45.9108753 ], + [ 7.1638308, 45.9107851 ], + [ 7.163799, 45.9107062 ], + [ 7.1637269, 45.9106158 ], + [ 7.1635903, 45.9105591 ], + [ 7.1634046, 45.9104853 ], + [ 7.1632029, 45.9104001 ], + [ 7.162977, 45.9103206 ], + [ 7.1628564, 45.9102807 ], + [ 7.1626708, 45.9101901 ], + [ 7.1622763, 45.9099973 ], + [ 7.1619462, 45.909816 ], + [ 7.1617121, 45.9097647 ], + [ 7.1615019, 45.9097696 ], + [ 7.161365, 45.9097691 ], + [ 7.1612596, 45.9097406 ], + [ 7.1611309, 45.9097065 ], + [ 7.1610013, 45.9096891 ], + [ 7.1608151, 45.9097223 ], + [ 7.1607184, 45.9097446 ], + [ 7.1604936, 45.9097579 ], + [ 7.1603229, 45.9097433 ], + [ 7.1601693, 45.9097034 ], + [ 7.1600408, 45.909641 ], + [ 7.159847, 45.9095729 ], + [ 7.1596693, 45.9095159 ], + [ 7.1594922, 45.9094929 ], + [ 7.1593305, 45.9094698 ], + [ 7.1592179, 45.9094357 ], + [ 7.1590965, 45.9093846 ], + [ 7.158976, 45.9093392 ], + [ 7.1588225, 45.9092767 ], + [ 7.1587181, 45.90922 ], + [ 7.1585001, 45.9091574 ], + [ 7.1581856, 45.9090832 ], + [ 7.1579595, 45.909043 ], + [ 7.1578058, 45.9090257 ], + [ 7.1577416, 45.9089804 ], + [ 7.1577015, 45.9089465 ], + [ 7.1576455, 45.908873 ], + [ 7.1575894, 45.9088109 ], + [ 7.1574521, 45.9087317 ], + [ 7.1571781, 45.9086181 ], + [ 7.1563815, 45.9081537 ], + [ 7.1560825, 45.9080401 ], + [ 7.1560181, 45.9080399 ], + [ 7.155881, 45.908062 ], + [ 7.1558155, 45.9081125 ], + [ 7.1557028, 45.9081177 ], + [ 7.1554686, 45.9080776 ], + [ 7.1552023, 45.9080204 ], + [ 7.1548796, 45.9079743 ], + [ 7.1546454, 45.9079397 ], + [ 7.1544597, 45.9078828 ], + [ 7.1543551, 45.90786 ], + [ 7.1542663, 45.9078935 ], + [ 7.1542009, 45.9079327 ], + [ 7.1540717, 45.9079886 ], + [ 7.1538695, 45.9079935 ], + [ 7.1536836, 45.9079648 ], + [ 7.1535308, 45.9079305 ], + [ 7.153337, 45.9078736 ], + [ 7.153265, 45.9077832 ], + [ 7.1531931, 45.9076591 ], + [ 7.1531286, 45.9075293 ], + [ 7.1530807, 45.907439 ], + [ 7.152848, 45.9072918 ], + [ 7.1524685, 45.9071555 ], + [ 7.152122, 45.9070417 ], + [ 7.1518396, 45.9069957 ], + [ 7.1516617, 45.9069726 ], + [ 7.1514765, 45.9069551 ], + [ 7.1513632, 45.906904 ], + [ 7.1511934, 45.9068866 ], + [ 7.1509762, 45.9068465 ], + [ 7.1506938, 45.9067948 ], + [ 7.1505238, 45.9067943 ], + [ 7.1503218, 45.9067767 ], + [ 7.1500633, 45.9067702 ], + [ 7.1497806, 45.9067637 ], + [ 7.1496026, 45.9067744 ], + [ 7.1493199, 45.9067847 ], + [ 7.1490855, 45.906784 ], + [ 7.148852, 45.9067719 ], + [ 7.1486497, 45.9067938 ], + [ 7.1484959, 45.9068045 ], + [ 7.1483913, 45.9067816 ], + [ 7.14823, 45.9066797 ], + [ 7.1417054, 45.9048276 ], + [ 7.1416066, 45.9047784 ], + [ 7.1328308, 45.9004101 ], + [ 7.1327183, 45.9003815 ], + [ 7.1325485, 45.9003527 ], + [ 7.1322259, 45.900301 ], + [ 7.1317817, 45.9002488 ], + [ 7.1315321, 45.9002592 ], + [ 7.13137, 45.9002868 ], + [ 7.1312483, 45.9003201 ], + [ 7.1310952, 45.9003309 ], + [ 7.1309335, 45.9003078 ], + [ 7.1307487, 45.9002452 ], + [ 7.1305387, 45.9001994 ], + [ 7.1303692, 45.9001369 ], + [ 7.1300868, 45.9001021 ], + [ 7.129893, 45.9000451 ], + [ 7.1297243, 45.8999826 ], + [ 7.1295225, 45.8999199 ], + [ 7.1293448999999995, 45.899863 ], + [ 7.1291197, 45.8998172 ], + [ 7.1289821, 45.8997998 ], + [ 7.1288045, 45.8997429 ], + [ 7.1286678, 45.8997029 ], + [ 7.1285304, 45.8996574 ], + [ 7.1283776, 45.8996231 ], + [ 7.1281596, 45.8995885 ], + [ 7.1280058, 45.8995879 ], + [ 7.1278449, 45.8995649 ], + [ 7.1276832, 45.8995306 ], + [ 7.1275546, 45.899502 ], + [ 7.1273284, 45.8994899 ], + [ 7.1271907, 45.8994894 ], + [ 7.1270459, 45.8994551 ], + [ 7.126828, 45.8994093 ], + [ 7.1266744, 45.8993749 ], + [ 7.1265053, 45.8993688 ], + [ 7.1263595, 45.8993851 ], + [ 7.1262389, 45.8993565 ], + [ 7.1261335, 45.8993393 ], + [ 7.1259323, 45.8993104 ], + [ 7.1257466, 45.8992591 ], + [ 7.1255049, 45.8991569 ], + [ 7.1252949, 45.8991223 ], + [ 7.1250776, 45.8991103 ], + [ 7.1248113, 45.89907 ], + [ 7.1246257, 45.8989905 ], + [ 7.1244723, 45.8989279 ], + [ 7.1243115, 45.8988823 ], + [ 7.1241176, 45.8988535 ], + [ 7.1239966, 45.8989037 ], + [ 7.1238668, 45.8989258 ], + [ 7.1237208, 45.8989647 ], + [ 7.1235676, 45.8990036 ], + [ 7.1233733, 45.8990423 ], + [ 7.1231951, 45.8990755 ], + [ 7.1229201, 45.8991477 ], + [ 7.1226291, 45.8992029 ], + [ 7.1223381, 45.8992639 ], + [ 7.1221195, 45.8993194 ], + [ 7.1218367, 45.8993522 ], + [ 7.121546, 45.8993512 ], + [ 7.1212794, 45.8993558 ], + [ 7.1210771, 45.8994001 ], + [ 7.1208826, 45.899467 ], + [ 7.1207372, 45.899551 ], + [ 7.1205667, 45.8996574 ], + [ 7.1204206, 45.8997132 ], + [ 7.1202835, 45.8997465 ], + [ 7.1200731, 45.8997852 ], + [ 7.1198144, 45.8998236 ], + [ 7.1193052, 45.8998669 ], + [ 7.1193201, 45.9000753 ], + [ 7.1193191, 45.9002443 ], + [ 7.1193101, 45.9004019 ], + [ 7.1192924, 45.9005427 ], + [ 7.1193329, 45.9006386 ], + [ 7.1194769, 45.9007911 ], + [ 7.1195569, 45.9008815 ], + [ 7.1195644, 45.9009886 ], + [ 7.1194992, 45.9011122 ], + [ 7.1194011, 45.9012301 ], + [ 7.1193602, 45.9013427 ], + [ 7.1193111, 45.9014777 ], + [ 7.1193264, 45.9016129 ], + [ 7.1194061, 45.9017427 ], + [ 7.119575, 45.9019235 ], + [ 7.119638, 45.9021659 ], + [ 7.1196762, 45.9025209 ], + [ 7.119578, 45.9026388 ], + [ 7.1194648, 45.9027285 ], + [ 7.1193346, 45.9028182 ], + [ 7.1191891, 45.902919 ], + [ 7.1190748, 45.9030369 ], + [ 7.1190259, 45.9031437 ], + [ 7.1190011, 45.9032506 ], + [ 7.1189432, 45.903363 ], + [ 7.1188299, 45.9034584 ], + [ 7.1186351, 45.9035816 ], + [ 7.1184968, 45.9036937 ], + [ 7.118335, 45.9038114 ], + [ 7.1181241, 45.9039402 ], + [ 7.1179857, 45.9040523 ], + [ 7.1177508, 45.9041416 ], + [ 7.1175482, 45.9042254 ], + [ 7.1173384, 45.9042922 ], + [ 7.1170877, 45.904342 ], + [ 7.1168853, 45.904375 ], + [ 7.1165287, 45.904492 ], + [ 7.116343, 45.9045758 ], + [ 7.1160344, 45.9047324 ], + [ 7.1158643, 45.9048894 ], + [ 7.1156854, 45.9050577 ], + [ 7.1154417, 45.9052652 ], + [ 7.1152383, 45.9054898 ], + [ 7.1150751, 45.9057145 ], + [ 7.1149521, 45.9059449 ], + [ 7.1148055, 45.9062147 ], + [ 7.1147396, 45.9063215 ], + [ 7.1146669, 45.9063719 ], + [ 7.1145943, 45.9063942 ], + [ 7.1144564, 45.9064106 ], + [ 7.1143032, 45.9064438 ], + [ 7.1141894, 45.9064828 ], + [ 7.1141003, 45.906567 ], + [ 7.1140347, 45.9066399 ], + [ 7.1139778, 45.9067242 ], + [ 7.1139289, 45.9068141 ], + [ 7.1138481, 45.9068702 ], + [ 7.1137504, 45.9069149 ], + [ 7.1136535, 45.9069539 ], + [ 7.1135075, 45.9069872 ], + [ 7.1132892, 45.9070033 ], + [ 7.1131279, 45.9070309 ], + [ 7.1129739, 45.9070697 ], + [ 7.1128527, 45.9071312 ], + [ 7.1127065, 45.9072096 ], + [ 7.1125763, 45.9072823 ], + [ 7.1123988, 45.9073436 ], + [ 7.1122447, 45.9073881 ], + [ 7.1120503, 45.9074381 ], + [ 7.1118568, 45.9074712 ], + [ 7.1116866, 45.9075212 ], + [ 7.1115481, 45.9076502 ], + [ 7.1114587, 45.9077794 ], + [ 7.1113766, 45.9079199 ], + [ 7.1112552, 45.9080096 ], + [ 7.111101, 45.908071 ], + [ 7.1109146, 45.9081379 ], + [ 7.1106887, 45.9081934 ], + [ 7.1104536, 45.9083164 ], + [ 7.1101689, 45.9085181 ], + [ 7.1100478, 45.9085684 ], + [ 7.1099669, 45.90863 ], + [ 7.1098608, 45.908731 ], + [ 7.1097313, 45.9088375 ], + [ 7.109609, 45.9089384 ], + [ 7.1094548, 45.9090055 ], + [ 7.1093096, 45.909038699999996 ], + [ 7.1091073, 45.9090718 ], + [ 7.1089453, 45.9090824 ], + [ 7.1088321, 45.9091608 ], + [ 7.1087501, 45.9092675 ], + [ 7.1086607, 45.9093967 ], + [ 7.1085547, 45.9096216 ], + [ 7.1084966, 45.9097735 ], + [ 7.1084715, 45.9099198 ], + [ 7.1083903, 45.9100321 ], + [ 7.1083087, 45.9100769 ], + [ 7.1081713, 45.910144 ], + [ 7.108017, 45.9102279 ], + [ 7.1079198, 45.9103233 ], + [ 7.1077896, 45.9104017 ], + [ 7.1076274, 45.9104517 ], + [ 7.1074258, 45.910496 ], + [ 7.1072394, 45.9105517 ], + [ 7.1071334, 45.9106302 ], + [ 7.1070604, 45.9107143 ], + [ 7.1069631, 45.9108266 ], + [ 7.1068246, 45.9109557 ], + [ 7.106686, 45.9110903 ], + [ 7.1065406, 45.911163 ], + [ 7.1063542, 45.9112299 ], + [ 7.1060455, 45.9115272 ], + [ 7.1058501, 45.9117349 ], + [ 7.1057194, 45.9118977 ], + [ 7.1056867, 45.9119765 ], + [ 7.1056697, 45.912134 ], + [ 7.1056611, 45.9122242 ], + [ 7.1056201, 45.9123366 ], + [ 7.1055624, 45.9124153 ], + [ 7.1055372, 45.9125841 ], + [ 7.1055367, 45.9126686 ], + [ 7.105512, 45.9127586 ], + [ 7.1054469, 45.9128654 ], + [ 7.1053812, 45.9129384 ], + [ 7.1052761, 45.9130056 ], + [ 7.1051701, 45.913084 ], + [ 7.1050245, 45.9131961 ], + [ 7.1049426, 45.9132747 ], + [ 7.1048129, 45.9134094 ], + [ 7.1047065, 45.9135498 ], + [ 7.1046332, 45.9136903 ], + [ 7.1045922, 45.9138141 ], + [ 7.1045504, 45.9139265 ], + [ 7.1045012, 45.9140728 ], + [ 7.1044761, 45.9142134 ], + [ 7.1045469, 45.9144953 ], + [ 7.1046024, 45.9146363 ], + [ 7.1046178, 45.9147546 ], + [ 7.104609, 45.9148729 ], + [ 7.1045601, 45.9149628 ], + [ 7.1044945, 45.9150246 ], + [ 7.1044215, 45.9151144 ], + [ 7.1043323, 45.9152042 ], + [ 7.1042666, 45.9152828 ], + [ 7.1042177, 45.9153783 ], + [ 7.1041688, 45.9154627 ], + [ 7.1040954, 45.9156145 ], + [ 7.1040538, 45.9157044 ], + [ 7.1039565, 45.915811 ], + [ 7.103875, 45.9159572 ], + [ 7.1038251, 45.9160865 ], + [ 7.1037922, 45.916199 ], + [ 7.1037595, 45.9162778 ], + [ 7.1036128, 45.9164124 ], + [ 7.1034498, 45.916592 ], + [ 7.1030123, 45.9168776 ], + [ 7.1028743, 45.9169221 ], + [ 7.1028094, 45.9170007 ], + [ 7.1027514, 45.91713 ], + [ 7.1027106, 45.9172144 ], + [ 7.10271, 45.9172989 ], + [ 7.1027338, 45.9173609 ], + [ 7.1027898, 45.9174287 ], + [ 7.1028466, 45.9174965 ], + [ 7.1029346, 45.9175869 ], + [ 7.1029902, 45.9177223 ], + [ 7.102949, 45.9178686 ], + [ 7.1029072, 45.9179867 ], + [ 7.1028664, 45.9180767 ], + [ 7.1027771, 45.9181777 ], + [ 7.1027444, 45.9182564 ], + [ 7.1027436999999995, 45.9183803 ], + [ 7.1027834, 45.918465 ], + [ 7.102815, 45.9185665 ], + [ 7.1027741, 45.9186677 ], + [ 7.102716, 45.9188139 ], + [ 7.1026588, 45.9189432 ], + [ 7.1025934, 45.9191063 ], + [ 7.1025272, 45.9192525 ], + [ 7.1024215, 45.9194154 ], + [ 7.1022745, 45.9196176 ], + [ 7.1020876, 45.9197465 ], + [ 7.1019178, 45.9198416 ], + [ 7.1016827, 45.9199477 ], + [ 7.1015201, 45.9200653 ], + [ 7.1012845, 45.920256 ], + [ 7.1010971, 45.9204749 ], + [ 7.1009261, 45.9206319 ], + [ 7.1007553, 45.9207665 ], + [ 7.1007465, 45.920896 ], + [ 7.1007536, 45.9210368 ], + [ 7.1007447, 45.9211719 ], + [ 7.1007037, 45.9213013 ], + [ 7.1006384, 45.9214307 ], + [ 7.100532, 45.9215654 ], + [ 7.1004345, 45.9217002 ], + [ 7.1003201, 45.9218293 ], + [ 7.1001825, 45.9219358 ], + [ 7.1000844, 45.9220368 ], + [ 7.1000353, 45.9221718 ], + [ 7.0999944, 45.9222618 ], + [ 7.0999366, 45.9223685 ], + [ 7.0998555, 45.9224527 ], + [ 7.0997252, 45.9225479 ], + [ 7.0995715, 45.9226487 ], + [ 7.0994815, 45.9227329 ], + [ 7.0993923, 45.9228396 ], + [ 7.0992697, 45.9229856 ], + [ 7.099116, 45.923092 ], + [ 7.0989291, 45.9232152 ], + [ 7.0986858999999995, 45.9233325 ], + [ 7.0984669, 45.9234387 ], + [ 7.0982884, 45.9235169 ], + [ 7.0980931, 45.9236963 ], + [ 7.0980039, 45.9237918 ], + [ 7.0979388, 45.9238929 ], + [ 7.0978404, 45.9240559 ], + [ 7.0977668, 45.9242302 ], + [ 7.0977175, 45.9243765 ], + [ 7.0976597, 45.9244776 ], + [ 7.0975379, 45.9246236 ], + [ 7.0974316, 45.9247415 ], + [ 7.0972606, 45.9249041 ], + [ 7.0971387, 45.9250782 ], + [ 7.0970002, 45.9251904 ], + [ 7.0969352, 45.9252859 ], + [ 7.0968618, 45.9254208 ], + [ 7.0967797, 45.92555 ], + [ 7.0967063, 45.9256962 ], + [ 7.0965431, 45.9258871 ], + [ 7.0963725, 45.9259877 ], + [ 7.0962831, 45.9261057 ], + [ 7.096226, 45.9262238 ], + [ 7.0961439, 45.9263473 ], + [ 7.0960462, 45.9265103 ], + [ 7.0959802, 45.9266171 ], + [ 7.0958667, 45.9267349 ], + [ 7.0957039, 45.9268695 ], + [ 7.0955824, 45.9269816 ], + [ 7.0955578, 45.9270492 ], + [ 7.0954995, 45.9272179 ], + [ 7.0954422, 45.9273641 ], + [ 7.0953278, 45.9274989 ], + [ 7.0951894, 45.9277124 ], + [ 7.0950009, 45.9281003 ], + [ 7.0949919, 45.9282522 ], + [ 7.0949994, 45.9283311 ], + [ 7.095015, 45.9284213 ], + [ 7.0950144, 45.928505799999996 ], + [ 7.0950126000000004, 45.9286747 ], + [ 7.0950115, 45.9288437 ], + [ 7.0950267, 45.9289902 ], + [ 7.0950501, 45.9291029 ], + [ 7.0951216, 45.9292721 ], + [ 7.0951531, 45.9293906 ], + [ 7.0952652, 45.9296162 ], + [ 7.095345, 45.9297518 ], + [ 7.0954008, 45.9298477 ], + [ 7.0955218, 45.9299383 ], + [ 7.0956745, 45.9300064 ], + [ 7.0958844, 45.9300635 ], + [ 7.0960048, 45.9301428 ], + [ 7.0961902, 45.9302562 ], + [ 7.0962701, 45.9303635 ], + [ 7.096382, 45.9305047 ], + [ 7.0964626, 45.9306233 ], + [ 7.0965829, 45.9307139 ], + [ 7.0966791, 45.9307874 ], + [ 7.0967924, 45.930833 ], + [ 7.0969531, 45.9309124 ], + [ 7.0971306, 45.9309919 ], + [ 7.0972669, 45.9310994 ], + [ 7.0973478, 45.931173 ], + [ 7.0974197, 45.9312802 ], + [ 7.0974835, 45.9313875 ], + [ 7.0975875, 45.9315006 ], + [ 7.0978288, 45.9316986 ], + [ 7.0979901, 45.9317949 ], + [ 7.0979973, 45.9318058 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "JBG0037", + "country" : "CHE", + "name" : [ + { + "text" : "Eidgenössisches Jagdbanngebiet Val Ferret / Combe de l'A", + "lang" : "de-CH" + }, + { + "text" : "District franc fédéral Val Ferret / Combe de l'A", + "lang" : "fr-CH" + }, + { + "text" : "Bandita federale di caccia Val Ferret / Combe de l'A", + "lang" : "it-CH" + }, + { + "text" : "Federal Game Reserve Val Ferret / Combe de l'A", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5419344, 47.457581 ], + [ 7.5420074, 47.4575758 ], + [ 7.5419742, 47.4572498 ], + [ 7.5419045, 47.4572437 ], + [ 7.5416887, 47.4572117 ], + [ 7.5413247, 47.4571641 ], + [ 7.5412463, 47.4571501 ], + [ 7.5410094999999995, 47.4571209 ], + [ 7.5406661, 47.4571071 ], + [ 7.5406121, 47.4571039 ], + [ 7.5405117, 47.457098 ], + [ 7.5398648999999995, 47.4570598 ], + [ 7.5386147999999995, 47.4570121 ], + [ 7.537778, 47.4569692 ], + [ 7.5376747, 47.4569646 ], + [ 7.5376826, 47.4569346 ], + [ 7.5378173, 47.4564276 ], + [ 7.5378166, 47.4563708 ], + [ 7.5377847, 47.4563644 ], + [ 7.537738, 47.4563533 ], + [ 7.5377285, 47.456355 ], + [ 7.5375971, 47.4563266 ], + [ 7.5369461, 47.4562906 ], + [ 7.5365732, 47.4562699 ], + [ 7.5357168, 47.4562254 ], + [ 7.5349452, 47.4563128 ], + [ 7.5341474, 47.4562654 ], + [ 7.5341315, 47.4562643 ], + [ 7.5340517, 47.456454 ], + [ 7.5340173, 47.4565329 ], + [ 7.5339567, 47.4566718 ], + [ 7.5332721, 47.45664 ], + [ 7.5331199, 47.4567485 ], + [ 7.5330845, 47.4567755 ], + [ 7.5324823, 47.4567765 ], + [ 7.5324799, 47.4567833 ], + [ 7.5322812, 47.4571465 ], + [ 7.5325264, 47.4571738 ], + [ 7.5334646, 47.457286 ], + [ 7.5349118, 47.4573849 ], + [ 7.5358231, 47.4574421 ], + [ 7.5363258, 47.4575021 ], + [ 7.5369267, 47.4575108 ], + [ 7.5372006, 47.4575379 ], + [ 7.537681, 47.4575785 ], + [ 7.538247, 47.4576516 ], + [ 7.5386775, 47.4577075 ], + [ 7.5388373, 47.4577282 ], + [ 7.5388887, 47.4576308 ], + [ 7.5389067, 47.4575966 ], + [ 7.5389227, 47.4575664 ], + [ 7.5399142999999995, 47.4576167 ], + [ 7.540457, 47.45764 ], + [ 7.540672, 47.4576503 ], + [ 7.5410498, 47.4576307 ], + [ 7.5410763, 47.4576295 ], + [ 7.5415345, 47.4576029 ], + [ 7.5419344, 47.457581 ] + ], + [ + [ 7.5376531, 47.456931 ], + [ 7.5376444, 47.4569633 ], + [ 7.5355875999999995, 47.4568725 ], + [ 7.5353699, 47.4568628 ], + [ 7.535406, 47.456769 ], + [ 7.5355517, 47.4563399 ], + [ 7.5355684, 47.4562908 ], + [ 7.5357377, 47.4562705 ], + [ 7.5358208, 47.4562747 ], + [ 7.5375816, 47.456362 ], + [ 7.5377401, 47.456396 ], + [ 7.5377885, 47.4564037 ], + [ 7.5377883, 47.4564259 ], + [ 7.5376531, 47.456931 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns174", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Blauenweid", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Blauenweid", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Blauenweid", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Blauenweid", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7373635, 47.3780369 ], + [ 7.7376214, 47.3782446 ], + [ 7.7379613, 47.3784828 ], + [ 7.7383827, 47.3782119 ], + [ 7.738633, 47.37818 ], + [ 7.7387566, 47.3781423 ], + [ 7.7388497, 47.3781008 ], + [ 7.7390463, 47.3780034 ], + [ 7.739097, 47.3779833 ], + [ 7.7391499, 47.3779456 ], + [ 7.7392365, 47.3778871 ], + [ 7.7393091, 47.3778254 ], + [ 7.7393341, 47.3778042 ], + [ 7.7393853, 47.3777344 ], + [ 7.7393894, 47.3777277 ], + [ 7.7394519, 47.377738 ], + [ 7.7395032, 47.377751 ], + [ 7.7395534999999995, 47.3777683 ], + [ 7.7396119, 47.377801 ], + [ 7.7396571, 47.3778345 ], + [ 7.7396771, 47.3778724 ], + [ 7.7396939, 47.3779099 ], + [ 7.7397404, 47.3779953 ], + [ 7.7397839, 47.3780861 ], + [ 7.7398118, 47.3781178 ], + [ 7.7398948, 47.3781768 ], + [ 7.7400196, 47.3782182 ], + [ 7.7401242, 47.3782655 ], + [ 7.7401706, 47.3782813 ], + [ 7.7402093, 47.3782769 ], + [ 7.7403759999999995, 47.3783238 ], + [ 7.7405171, 47.3783633 ], + [ 7.7406261, 47.3784077 ], + [ 7.7407471999999995, 47.378472 ], + [ 7.7409897999999995, 47.3786313 ], + [ 7.7410563, 47.3786941 ], + [ 7.7411437, 47.3788015 ], + [ 7.7412407, 47.3787585 ], + [ 7.7412683, 47.3787758 ], + [ 7.7414825, 47.3789099 ], + [ 7.7415415, 47.3789049 ], + [ 7.741595, 47.3789012 ], + [ 7.7419377, 47.3788137 ], + [ 7.7422491, 47.3787051 ], + [ 7.7421441, 47.378587 ], + [ 7.7418387, 47.3782989 ], + [ 7.7416546, 47.3780726 ], + [ 7.741494, 47.3778262 ], + [ 7.7413706, 47.3774632 ], + [ 7.7414677, 47.3772025 ], + [ 7.7414154, 47.3770541 ], + [ 7.7412135, 47.3768807 ], + [ 7.7410074, 47.376679 ], + [ 7.7407518, 47.376453 ], + [ 7.7406248, 47.3763253 ], + [ 7.7406088, 47.3762552 ], + [ 7.7403382, 47.3762491 ], + [ 7.7400413, 47.3762155 ], + [ 7.7397927, 47.3765208 ], + [ 7.7396985, 47.3768651 ], + [ 7.7393453999999995, 47.3769594 ], + [ 7.7391977, 47.3769988 ], + [ 7.7386216999999995, 47.3772057 ], + [ 7.7378998, 47.3774474 ], + [ 7.7377525, 47.3776935 ], + [ 7.7375111, 47.3778326 ], + [ 7.7373635, 47.3780369 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns111", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Blüemlisalp", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Blüemlisalp", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Blüemlisalp", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Blüemlisalp", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.814946, 47.3946472 ], + [ 7.8148378, 47.394749 ], + [ 7.8147745, 47.394804 ], + [ 7.8147179, 47.3948532 ], + [ 7.814505, 47.3950612 ], + [ 7.8145324, 47.3952453 ], + [ 7.8146767, 47.3956039 ], + [ 7.8147785, 47.3958643 ], + [ 7.8147257, 47.3960062 ], + [ 7.8143762, 47.3962591 ], + [ 7.8140598, 47.3963268 ], + [ 7.8136368, 47.3962568 ], + [ 7.8141637, 47.3968106 ], + [ 7.814219, 47.3969711 ], + [ 7.8143068, 47.3969617 ], + [ 7.8149148, 47.3968908 ], + [ 7.8150083, 47.3967344 ], + [ 7.8150866, 47.3965912 ], + [ 7.815176, 47.3964097 ], + [ 7.8152327, 47.3962602 ], + [ 7.81527, 47.3961077 ], + [ 7.8152872, 47.3959548 ], + [ 7.8152845, 47.3958003 ], + [ 7.8152612999999995, 47.3956465 ], + [ 7.8151957, 47.3954229 ], + [ 7.8151358, 47.395241 ], + [ 7.8151212, 47.3951952 ], + [ 7.8150751, 47.3950511 ], + [ 7.815023, 47.3948882 ], + [ 7.8149575, 47.3946832 ], + [ 7.814946, 47.3946472 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr134", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Oberburg", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Oberburg", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Oberburg", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Oberburg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.3253485, 47.382292 ], + [ 8.3252488, 47.3822884 ], + [ 8.325152899999999, 47.3822796 ], + [ 8.3250665, 47.3822554 ], + [ 8.3250172, 47.3822735 ], + [ 8.3249695, 47.3823373 ], + [ 8.3249231, 47.3823623 ], + [ 8.3248932, 47.3823814 ], + [ 8.324894, 47.3824059 ], + [ 8.3249757, 47.3824472 ], + [ 8.3251637, 47.3825141 ], + [ 8.3253322, 47.3825507 ], + [ 8.3254837, 47.3825532 ], + [ 8.3256006, 47.3825346 ], + [ 8.3259589, 47.3824005 ], + [ 8.3260365, 47.3823361 ], + [ 8.3260499, 47.3822772 ], + [ 8.3260466, 47.3822371 ], + [ 8.326016, 47.3822151 ], + [ 8.3259678, 47.3822043 ], + [ 8.3258746, 47.3822152 ], + [ 8.3258001, 47.3822305 ], + [ 8.3257007, 47.3822383 ], + [ 8.3254669, 47.3822772 ], + [ 8.3253485, 47.382292 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "KTAG506", + "country" : "CHE", + "name" : [ + { + "text" : "Alte Reuss", + "lang" : "de-CH" + }, + { + "text" : "Alte Reuss", + "lang" : "fr-CH" + }, + { + "text" : "Alte Reuss", + "lang" : "it-CH" + }, + { + "text" : "Alte Reuss", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "regulationExemption" : "NO", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "schedule" : [ + { + "day" : [ "ANY" ], + "startTime" : "00:00:00.00+01:00", + "endTime" : "00:00:00.00+01:00" + } + ] + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Aargau", + "lang" : "de-CH" + }, + { + "text" : "Canton d'Argovie", + "lang" : "fr-CH" + }, + { + "text" : "Canton Argovia", + "lang" : "it-CH" + }, + { + "text" : "Canton of Aargau", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Departement Bau, Verkehr und Umwelt (BVU)", + "lang" : "de-CH" + }, + { + "text" : "Département de la construction, des transports et de l'environnement (CTE)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento delle costruzioni, dei trasporti e dell'ambiente (CTA)", + "lang" : "it-CH" + }, + { + "text" : "Department of Civil Engineering,Transport and Environment (CTE)", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Sektion Gewässernutzung", + "lang" : "de-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "fr-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "it-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ag.ch/de/verwaltung/bvu/umwelt-natur-landschaft/hochwasserschutz-gewaesser/gewaessernutzung", + "email" : "alg@ag.ch", + "phone" : "0041 62 835 34 50", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.9302326, 46.95768 ], + [ 6.9301649, 46.9553258 ], + [ 6.9299174, 46.9529772 ], + [ 6.9294908, 46.9506408 ], + [ 6.9288861, 46.9483228 ], + [ 6.9281053, 46.9460297 ], + [ 6.9271503, 46.9437676 ], + [ 6.9260239, 46.9415429 ], + [ 6.9247291, 46.9393617 ], + [ 6.9232695, 46.9372297 ], + [ 6.9216492, 46.9351531 ], + [ 6.9198725, 46.9331373 ], + [ 6.9179444, 46.9311879 ], + [ 6.9158701, 46.9293103 ], + [ 6.9136554, 46.9275096 ], + [ 6.9113063, 46.9257907 ], + [ 6.9088292, 46.9241584 ], + [ 6.906231, 46.922617 ], + [ 6.9035188, 46.9211709 ], + [ 6.9006999, 46.9198239 ], + [ 6.8977822, 46.9185798 ], + [ 6.8947735, 46.9174419 ], + [ 6.8916822, 46.9164134 ], + [ 6.8885167, 46.9154971 ], + [ 6.8852857, 46.9146955 ], + [ 6.8819979, 46.9140107 ], + [ 6.8786624, 46.9134447 ], + [ 6.8752883, 46.912999 ], + [ 6.8718848, 46.9126748 ], + [ 6.8684613, 46.912473 ], + [ 6.8650271, 46.9123942 ], + [ 6.8615915, 46.9124385 ], + [ 6.8581641, 46.9126059 ], + [ 6.854754, 46.9128959 ], + [ 6.8513708, 46.9133077 ], + [ 6.8480235, 46.9138401 ], + [ 6.8447215, 46.9144918 ], + [ 6.8414736, 46.9152609 ], + [ 6.8382889, 46.9161453 ], + [ 6.8351759, 46.9171426 ], + [ 6.8321433, 46.9182502 ], + [ 6.8291993, 46.9194649 ], + [ 6.8263519, 46.9207834 ], + [ 6.8236091, 46.9222021 ], + [ 6.8209782, 46.9237172 ], + [ 6.8184664999999995, 46.9253245 ], + [ 6.8160809, 46.9270196 ], + [ 6.8138279, 46.9287979 ], + [ 6.8117137, 46.9306544 ], + [ 6.809744, 46.9325842 ], + [ 6.8079244, 46.934582 ], + [ 6.8062598, 46.9366421 ], + [ 6.8047547999999995, 46.9387592 ], + [ 6.8034134, 46.9409272 ], + [ 6.8022395, 46.9431404 ], + [ 6.8012362, 46.9453925 ], + [ 6.8004063, 46.9476776 ], + [ 6.7997522, 46.9499893 ], + [ 6.7992755, 46.9523212 ], + [ 6.7989777, 46.954667 ], + [ 6.7988596, 46.957020299999996 ], + [ 6.7989215, 46.9593745 ], + [ 6.7991634, 46.9617234 ], + [ 6.7995844, 46.9640603 ], + [ 6.8001836, 46.966379 ], + [ 6.8009593, 46.968673 ], + [ 6.8019093999999996, 46.970936 ], + [ 6.8030313, 46.9731619 ], + [ 6.804322, 46.9753446 ], + [ 6.8057777999999995, 46.977478 ], + [ 6.807395, 46.9795563 ], + [ 6.809169, 46.9815738 ], + [ 6.811095, 46.983525 ], + [ 6.8131677, 46.9854045 ], + [ 6.8153814, 46.9872071 ], + [ 6.8177301, 46.9889279 ], + [ 6.8202074, 46.9905622 ], + [ 6.8228064, 46.9921055 ], + [ 6.8255201, 46.9935535 ], + [ 6.8283409, 46.9949023 ], + [ 6.8312612, 46.9961482 ], + [ 6.8342729, 46.9972877 ], + [ 6.8373677, 46.9983178 ], + [ 6.8405373, 46.9992355 ], + [ 6.8437727, 47.0000384 ], + [ 6.8470653, 47.0007242 ], + [ 6.8504059, 47.0012911 ], + [ 6.8537853, 47.0017376 ], + [ 6.8571943, 47.0020623 ], + [ 6.8606235, 47.0022644 ], + [ 6.8640635, 47.0023434 ], + [ 6.8675048, 47.002299 ], + [ 6.870938, 47.0021313 ], + [ 6.8743536, 47.0018409 ], + [ 6.8777422999999995, 47.0014284 ], + [ 6.8810947, 47.0008951 ], + [ 6.8844016, 47.0002424 ], + [ 6.8876539999999995, 46.9994721 ], + [ 6.8908429, 46.9985863 ], + [ 6.8939595, 46.9975875 ], + [ 6.8969954, 46.9964783 ], + [ 6.8999421, 46.9952619 ], + [ 6.9027916, 46.9939416 ], + [ 6.905536, 46.9925209 ], + [ 6.9081679, 46.9910039 ], + [ 6.9106799, 46.9893947 ], + [ 6.9130652999999995, 46.9876976 ], + [ 6.9153175000000005, 46.9859174 ], + [ 6.9174302999999995, 46.984059 ], + [ 6.919398, 46.9821273 ], + [ 6.921215, 46.9801279 ], + [ 6.9228766, 46.978066 ], + [ 6.9243781, 46.9759475 ], + [ 6.9257154, 46.973778 ], + [ 6.9268849, 46.9715636 ], + [ 6.9278834, 46.9693103 ], + [ 6.9287082, 46.9670244 ], + [ 6.9293569999999995, 46.964712 ], + [ 6.9298281, 46.9623795 ], + [ 6.9301203000000005, 46.9600334 ], + [ 6.9302326, 46.95768 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSGN001", + "country" : "CHE", + "name" : [ + { + "text" : "LSGN Neuchâtel", + "lang" : "de-CH" + }, + { + "text" : "LSGN Neuchâtel", + "lang" : "fr-CH" + }, + { + "text" : "LSGN Neuchâtel", + "lang" : "it-CH" + }, + { + "text" : "LSGN Neuchâtel", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Neuchâtel Airport", + "lang" : "de-CH" + }, + { + "text" : "Neuchâtel Airport", + "lang" : "fr-CH" + }, + { + "text" : "Neuchâtel Airport", + "lang" : "it-CH" + }, + { + "text" : "Neuchâtel Airport", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Chef d'aérodrome", + "lang" : "de-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "fr-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "it-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Arsène Gigon", + "lang" : "de-CH" + }, + { + "text" : "Arsène Gigon", + "lang" : "fr-CH" + }, + { + "text" : "Arsène Gigon", + "lang" : "it-CH" + }, + { + "text" : "Arsène Gigon", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.neuchatel-airport.ch/?lang=en", + "email" : "admin@neuchatel-airport.ch", + "phone" : "0041328413155", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P01DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5463685, 47.1987406 ], + [ 7.5463628, 47.1985993 ], + [ 7.5463462, 47.1984585 ], + [ 7.5463189, 47.1983185 ], + [ 7.5462808, 47.1981796 ], + [ 7.5462322, 47.1980423 ], + [ 7.546173, 47.1979069 ], + [ 7.5461036, 47.1977738 ], + [ 7.546024, 47.1976433 ], + [ 7.5459344999999995, 47.1975159 ], + [ 7.5458353, 47.1973918 ], + [ 7.5457268, 47.1972715 ], + [ 7.5456091, 47.1971552 ], + [ 7.5454828, 47.1970432 ], + [ 7.5453479, 47.1969359 ], + [ 7.545205, 47.1968336 ], + [ 7.5450545, 47.1967365 ], + [ 7.5448967, 47.1966448 ], + [ 7.5447321, 47.196559 ], + [ 7.5445611, 47.1964791 ], + [ 7.5443842, 47.1964055 ], + [ 7.544202, 47.1963382 ], + [ 7.5440148, 47.1962776 ], + [ 7.5438232, 47.1962237 ], + [ 7.5436277, 47.1961767 ], + [ 7.5434289, 47.1961368 ], + [ 7.5432273, 47.196104 ], + [ 7.5430234, 47.1960784 ], + [ 7.5428179, 47.1960602 ], + [ 7.5426112, 47.1960493 ], + [ 7.542404, 47.1960458 ], + [ 7.5421968, 47.1960496 ], + [ 7.5419902, 47.1960609 ], + [ 7.5417848, 47.1960795 ], + [ 7.541581, 47.1961055 ], + [ 7.5413796, 47.1961386 ], + [ 7.5411809, 47.1961789 ], + [ 7.5409856, 47.1962263 ], + [ 7.5407942, 47.1962805 ], + [ 7.5406073, 47.1963415 ], + [ 7.5404252, 47.196409 ], + [ 7.5402487, 47.196483 ], + [ 7.540078, 47.1965632 ], + [ 7.5399137, 47.1966493 ], + [ 7.5397563, 47.1967412 ], + [ 7.5396061, 47.1968386 ], + [ 7.5394635999999995, 47.1969412 ], + [ 7.5393292, 47.1970487 ], + [ 7.5392033, 47.1971609 ], + [ 7.5390861000000005, 47.1972775 ], + [ 7.538978, 47.197398 ], + [ 7.5388793, 47.1975222 ], + [ 7.5387903, 47.1976498 ], + [ 7.5387113, 47.1977804 ], + [ 7.5386423, 47.1979137 ], + [ 7.5385837, 47.1980492 ], + [ 7.5385356, 47.1981866 ], + [ 7.5384981, 47.1983255 ], + [ 7.5384713, 47.1984656 ], + [ 7.5384553, 47.1986065 ], + [ 7.5384501, 47.1987477 ], + [ 7.5384557999999995, 47.1988889 ], + [ 7.5384723000000005, 47.1990297 ], + [ 7.5384997, 47.1991698 ], + [ 7.5385377, 47.1993086 ], + [ 7.5385863, 47.199446 ], + [ 7.5386454, 47.1995814 ], + [ 7.5387149, 47.1997145 ], + [ 7.5387945, 47.1998449 ], + [ 7.5388839, 47.1999724 ], + [ 7.5389831, 47.2000964 ], + [ 7.5390916, 47.2002168 ], + [ 7.5392092, 47.2003331 ], + [ 7.5393356, 47.2004451 ], + [ 7.5394705, 47.2005524 ], + [ 7.5396133, 47.2006548 ], + [ 7.5397639, 47.2007519 ], + [ 7.5399217, 47.2008435 ], + [ 7.5400863000000005, 47.2009293 ], + [ 7.5402573, 47.2010092 ], + [ 7.5404342, 47.2010829 ], + [ 7.5406165, 47.2011501 ], + [ 7.5408037, 47.2012108 ], + [ 7.5409953, 47.2012647 ], + [ 7.5411908, 47.2013116 ], + [ 7.5413896000000005, 47.2013516 ], + [ 7.5415912, 47.2013844 ], + [ 7.5417951, 47.20141 ], + [ 7.5420006, 47.2014282 ], + [ 7.5422073, 47.2014391 ], + [ 7.5424145, 47.2014426 ], + [ 7.5426217, 47.2014387 ], + [ 7.5428284, 47.2014275 ], + [ 7.5430339, 47.2014088 ], + [ 7.5432376, 47.2013829 ], + [ 7.5434391, 47.2013497 ], + [ 7.5436378, 47.2013094 ], + [ 7.5438331, 47.2012621 ], + [ 7.5440245, 47.2012079 ], + [ 7.5442115, 47.2011469 ], + [ 7.5443935, 47.2010793 ], + [ 7.5445701, 47.2010053 ], + [ 7.5447408, 47.2009251 ], + [ 7.5449051, 47.200839 ], + [ 7.5450625, 47.2007471 ], + [ 7.5452127, 47.2006497 ], + [ 7.5453551999999995, 47.2005471 ], + [ 7.5454896, 47.2004396 ], + [ 7.5456155, 47.2003274 ], + [ 7.5457327, 47.2002108 ], + [ 7.5458408, 47.2000903 ], + [ 7.5459394, 47.199966 ], + [ 7.5460284, 47.1998384 ], + [ 7.5461074, 47.1997078 ], + [ 7.5461764, 47.1995746 ], + [ 7.546235, 47.1994391 ], + [ 7.5462831, 47.1993017 ], + [ 7.5463206, 47.1991627 ], + [ 7.5463474, 47.1990226 ], + [ 7.5463633, 47.1988818 ], + [ 7.5463685, 47.1987406 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SOU0001", + "country" : "CHE", + "name" : [ + { + "text" : "Untersuchungsgefängnis Solothurn", + "lang" : "de-CH" + }, + { + "text" : "Untersuchungsgefängnis Solothurn", + "lang" : "fr-CH" + }, + { + "text" : "Untersuchungsgefängnis Solothurn", + "lang" : "it-CH" + }, + { + "text" : "Untersuchungsgefängnis Solothurn", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Justizvollzug des Kantons Solothurn", + "lang" : "de-CH" + }, + { + "text" : "Amt für Justizvollzug des Kantons Solothurn", + "lang" : "fr-CH" + }, + { + "text" : "Amt für Justizvollzug des Kantons Solothurn", + "lang" : "it-CH" + }, + { + "text" : "Amt für Justizvollzug des Kantons Solothurn", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Amtsleitung", + "lang" : "de-CH" + }, + { + "text" : "Direction de l'office", + "lang" : "fr-CH" + }, + { + "text" : "Direzione dell'ufficio", + "lang" : "it-CH" + }, + { + "text" : "Head of Division", + "lang" : "en-GB" + } + ], + "siteURL" : "https://so.ch/verwaltung/departement-des-innern/amt-fuer-justizvollzug/", + "email" : "ajuv@ddi.so.ch", + "phone" : "0041326276336", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P02DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8820812, 47.4121578 ], + [ 7.88217, 47.4124419 ], + [ 7.8822795, 47.4126395 ], + [ 7.8823851, 47.4128786 ], + [ 7.882386, 47.4131102 ], + [ 7.8823713, 47.4134698 ], + [ 7.8822528, 47.4135789 ], + [ 7.8821159, 47.4137049 ], + [ 7.8824384, 47.4136638 ], + [ 7.8824705999999995, 47.4135349 ], + [ 7.8827354, 47.4133424 ], + [ 7.8828703, 47.4132196 ], + [ 7.8827856, 47.4131734 ], + [ 7.8826292, 47.4133111 ], + [ 7.8824751, 47.4134178 ], + [ 7.8824746, 47.4133747 ], + [ 7.8824206, 47.4134244 ], + [ 7.8824076, 47.413268 ], + [ 7.8824328, 47.4130793 ], + [ 7.8824305, 47.412878 ], + [ 7.8822806, 47.4125467 ], + [ 7.8821843, 47.4123884 ], + [ 7.8821875, 47.4121144 ], + [ 7.8820812, 47.4121578 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns190", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Mapprach - Hofmatt", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Mapprach - Hofmatt", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Mapprach - Hofmatt", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Mapprach - Hofmatt", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5640884, 47.4396006 ], + [ 7.5640073999999995, 47.4396658 ], + [ 7.5639194, 47.4396606 ], + [ 7.5638971, 47.4396327 ], + [ 7.5634347, 47.4398387 ], + [ 7.5632639, 47.4398496 ], + [ 7.5632795, 47.4397701 ], + [ 7.56296, 47.4399073 ], + [ 7.5628715, 47.4399417 ], + [ 7.5624711, 47.4401025 ], + [ 7.5624037, 47.4401305 ], + [ 7.5621894, 47.4402141 ], + [ 7.5621189, 47.4402421 ], + [ 7.561764, 47.4403834 ], + [ 7.5616683, 47.4404219 ], + [ 7.5613181, 47.4405587 ], + [ 7.5610747, 47.4406556 ], + [ 7.5607422, 47.4407832 ], + [ 7.5602369, 47.4409895 ], + [ 7.5602976, 47.4410612 ], + [ 7.5603564, 47.4411297 ], + [ 7.5607133, 47.4410595 ], + [ 7.5611333, 47.4410552 ], + [ 7.5618347, 47.4410668 ], + [ 7.5621921, 47.4410221 ], + [ 7.5629766, 47.4407958 ], + [ 7.563533, 47.440611 ], + [ 7.5637159, 47.4404824 ], + [ 7.5641752, 47.4400102 ], + [ 7.5643263, 47.439723 ], + [ 7.5644262, 47.4395849 ], + [ 7.5644554, 47.4395316 ], + [ 7.564453, 47.4394336 ], + [ 7.5645286, 47.4393826 ], + [ 7.5644431, 47.4393383 ], + [ 7.5643328, 47.4394808 ], + [ 7.5640884, 47.4396006 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns112", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Chaltbrunnental - Birsmatte", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Chaltbrunnental - Birsmatte", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Chaltbrunnental - Birsmatte", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Chaltbrunnental - Birsmatte", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4279906, 47.4094011 ], + [ 7.4279851, 47.409397 ], + [ 7.4279754, 47.4093894 ], + [ 7.4279664, 47.4093813 ], + [ 7.4279582, 47.4093729 ], + [ 7.4279508, 47.4093642 ], + [ 7.4279443, 47.4093551 ], + [ 7.4279387, 47.4093457 ], + [ 7.427934, 47.4093362 ], + [ 7.4279545, 47.4092929 ], + [ 7.4276659, 47.4094038 ], + [ 7.4268776, 47.4097169 ], + [ 7.4268088, 47.4097177 ], + [ 7.4260566, 47.4097265 ], + [ 7.4257377, 47.4097303 ], + [ 7.4256455, 47.4098353 ], + [ 7.4249919, 47.4098792 ], + [ 7.4250991, 47.410162 ], + [ 7.4249319, 47.4102246 ], + [ 7.4247382, 47.4102186 ], + [ 7.4238619, 47.4100552 ], + [ 7.4225549, 47.409884 ], + [ 7.4225555, 47.4097312 ], + [ 7.4197167, 47.4098468 ], + [ 7.4197046, 47.4101055 ], + [ 7.4196679, 47.4102197 ], + [ 7.4196552, 47.4102177 ], + [ 7.4195787, 47.4102056 ], + [ 7.4187042, 47.4100669 ], + [ 7.4182733, 47.4100395 ], + [ 7.4182571, 47.4101663 ], + [ 7.4179036, 47.4101429 ], + [ 7.4175726, 47.4101325 ], + [ 7.4175071, 47.4101304 ], + [ 7.4174853, 47.4101712 ], + [ 7.4174834, 47.4102048 ], + [ 7.417558, 47.4102082 ], + [ 7.4175123, 47.4106347 ], + [ 7.4175047, 47.4107322 ], + [ 7.4176708, 47.4107521 ], + [ 7.4177876, 47.4107298 ], + [ 7.4180249, 47.4107497 ], + [ 7.4183588, 47.4108274 ], + [ 7.4184931, 47.4108841 ], + [ 7.4187164, 47.4109042 ], + [ 7.419009, 47.4109286 ], + [ 7.4192025, 47.4109262 ], + [ 7.4192503, 47.4109094 ], + [ 7.4192557, 47.4109074 ], + [ 7.4193228, 47.4108838 ], + [ 7.4194647, 47.4107871 ], + [ 7.4195518, 47.4106696 ], + [ 7.4195921, 47.4105506 ], + [ 7.419677, 47.4104845 ], + [ 7.4197092, 47.4104403 ], + [ 7.4197305, 47.4104112 ], + [ 7.4197349, 47.4103991 ], + [ 7.4197482, 47.4103251 ], + [ 7.4197842, 47.4102988 ], + [ 7.4202781, 47.4103799 ], + [ 7.4216884, 47.4103643 ], + [ 7.4223818999999995, 47.4103486 ], + [ 7.4228581, 47.4103627 ], + [ 7.423505, 47.4103944 ], + [ 7.4237741, 47.4104068 ], + [ 7.4240485, 47.4103928 ], + [ 7.4244755, 47.4103612 ], + [ 7.4246877, 47.4103331 ], + [ 7.4247051, 47.4103333 ], + [ 7.4247979, 47.4103281 ], + [ 7.4249111, 47.410335 ], + [ 7.4249644, 47.4103419 ], + [ 7.4250235, 47.4103551 ], + [ 7.4250749, 47.410373 ], + [ 7.4250704, 47.4105137 ], + [ 7.4250414, 47.4107838 ], + [ 7.4250446, 47.4108388 ], + [ 7.4250792, 47.4108896 ], + [ 7.4250937, 47.4109534 ], + [ 7.4250992, 47.4112986 ], + [ 7.425102, 47.4113323 ], + [ 7.4251027, 47.4113403 ], + [ 7.4252646, 47.4113481 ], + [ 7.4253718, 47.4113575 ], + [ 7.4255103, 47.4113567 ], + [ 7.4255638, 47.4112004 ], + [ 7.4255564, 47.411015 ], + [ 7.4255707, 47.4109716 ], + [ 7.4256721, 47.4106911 ], + [ 7.4255834, 47.4106449 ], + [ 7.4255319, 47.4105828 ], + [ 7.4255195, 47.4105328 ], + [ 7.4255448, 47.4104782 ], + [ 7.425585, 47.4104201 ], + [ 7.4256308, 47.4103745 ], + [ 7.4256419, 47.4103219 ], + [ 7.4256136, 47.410264 ], + [ 7.4256119, 47.410202 ], + [ 7.4257905, 47.41021 ], + [ 7.4258701, 47.4102137 ], + [ 7.4258706, 47.4102144 ], + [ 7.4258721, 47.4102636 ], + [ 7.4258786, 47.4103235 ], + [ 7.425884, 47.4103742 ], + [ 7.4258577, 47.4104637 ], + [ 7.4258296, 47.4105452 ], + [ 7.4257708000000004, 47.4106206 ], + [ 7.4267674, 47.4104713 ], + [ 7.426932, 47.4104714 ], + [ 7.4270842, 47.4104663 ], + [ 7.4272074, 47.4104641 ], + [ 7.4273022, 47.4104722 ], + [ 7.4273991, 47.4105117 ], + [ 7.427523, 47.4105293 ], + [ 7.4276396, 47.4105251 ], + [ 7.4277935, 47.4104937 ], + [ 7.4279096, 47.4104614 ], + [ 7.4280748, 47.4103895 ], + [ 7.4281185, 47.410447 ], + [ 7.4281516, 47.4104336 ], + [ 7.4281851, 47.4104207 ], + [ 7.4282189, 47.4104082 ], + [ 7.4282411, 47.4103987 ], + [ 7.4282637, 47.4103897 ], + [ 7.4282867, 47.4103812 ], + [ 7.4283101, 47.4103732 ], + [ 7.4283339, 47.4103657 ], + [ 7.428358, 47.4103588 ], + [ 7.4283824, 47.4103523 ], + [ 7.4284072, 47.4103464 ], + [ 7.4284322, 47.4103411 ], + [ 7.4284574, 47.4103363 ], + [ 7.4284834, 47.4103319 ], + [ 7.4285095, 47.4103282 ], + [ 7.4285359, 47.410325 ], + [ 7.4285624, 47.4103224 ], + [ 7.428589, 47.4103204 ], + [ 7.4286156, 47.410319 ], + [ 7.4286424, 47.4103182 ], + [ 7.4286691, 47.4103179 ], + [ 7.4286959, 47.4103183 ], + [ 7.428941, 47.4103296 ], + [ 7.4289636, 47.4103278 ], + [ 7.4289863, 47.4103266 ], + [ 7.4290091, 47.410326 ], + [ 7.4290319, 47.410326 ], + [ 7.4290547, 47.4103266 ], + [ 7.4290774, 47.4103278 ], + [ 7.4291461, 47.4103228 ], + [ 7.4291953, 47.4103365 ], + [ 7.429488, 47.4101826 ], + [ 7.4308392, 47.4101315 ], + [ 7.4310009, 47.4101263 ], + [ 7.4315114, 47.4100695 ], + [ 7.4315889, 47.4100608 ], + [ 7.431804, 47.4100369 ], + [ 7.4317988, 47.4100269 ], + [ 7.4317926, 47.4100179 ], + [ 7.4317855, 47.4100092 ], + [ 7.4317776, 47.4100009 ], + [ 7.4317689, 47.4099929 ], + [ 7.4317594, 47.4099854 ], + [ 7.4317492, 47.4099783 ], + [ 7.4317383, 47.4099717 ], + [ 7.4317268, 47.4099655 ], + [ 7.4317115, 47.4099581 ], + [ 7.4316958, 47.4099512 ], + [ 7.4316794999999995, 47.4099449 ], + [ 7.4316629, 47.409939 ], + [ 7.4316458, 47.4099337 ], + [ 7.4316284, 47.409929 ], + [ 7.4316107, 47.4099249 ], + [ 7.4315927, 47.4099213 ], + [ 7.4315744, 47.4099183 ], + [ 7.4310707, 47.4098413 ], + [ 7.4308391, 47.4098058 ], + [ 7.430531, 47.4097608 ], + [ 7.4305245, 47.4097595 ], + [ 7.4302495, 47.4097046 ], + [ 7.4300342, 47.4096371 ], + [ 7.4297416, 47.4095283 ], + [ 7.4296533, 47.4094954 ], + [ 7.4295463, 47.4094638 ], + [ 7.4295142, 47.4094558 ], + [ 7.4294819, 47.4094483 ], + [ 7.4294493, 47.4094413 ], + [ 7.4294164, 47.4094349 ], + [ 7.4293833, 47.409429 ], + [ 7.4293501, 47.4094236 ], + [ 7.4293166, 47.4094188 ], + [ 7.4292874, 47.4094149 ], + [ 7.4292581, 47.4094117 ], + [ 7.4292286, 47.4094091 ], + [ 7.4291991, 47.4094071 ], + [ 7.4291694, 47.4094057 ], + [ 7.4291397, 47.409405 ], + [ 7.42911, 47.4094049 ], + [ 7.4290803, 47.4094054 ], + [ 7.4290556, 47.4094056 ], + [ 7.4290309, 47.4094064 ], + [ 7.4290062, 47.4094078 ], + [ 7.4289816, 47.4094097 ], + [ 7.4289572, 47.4094123 ], + [ 7.4289329, 47.4094154 ], + [ 7.4289088, 47.4094191 ], + [ 7.4288849, 47.4094234 ], + [ 7.4288467, 47.4094315 ], + [ 7.4288083, 47.4094391 ], + [ 7.4287697, 47.4094461 ], + [ 7.4287309, 47.4094525 ], + [ 7.4286918, 47.4094584 ], + [ 7.4286526, 47.4094636 ], + [ 7.4286133, 47.4094684 ], + [ 7.428581, 47.4094718 ], + [ 7.4285487, 47.4094748 ], + [ 7.4285163, 47.4094774 ], + [ 7.4284838, 47.4094797 ], + [ 7.4284828, 47.4094952 ], + [ 7.4281722, 47.4094806 ], + [ 7.428003, 47.409422 ], + [ 7.4279906, 47.4094011 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns010", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Oltme", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Oltme", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Oltme", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Oltme", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7112734, 47.4890597 ], + [ 7.7112883, 47.4894836 ], + [ 7.7116153, 47.4895257 ], + [ 7.7120721, 47.4895913 ], + [ 7.7124778, 47.4897099 ], + [ 7.7124828, 47.4897103 ], + [ 7.7124833, 47.4897104 ], + [ 7.7125009, 47.4897119 ], + [ 7.7125176, 47.489713 ], + [ 7.7125227, 47.4897133 ], + [ 7.7125281999999995, 47.4897137 ], + [ 7.7125361, 47.4897143 ], + [ 7.7125415, 47.4897148 ], + [ 7.7125424, 47.4897148 ], + [ 7.7125497, 47.4897155 ], + [ 7.7125589, 47.4897164 ], + [ 7.7125766, 47.4897176 ], + [ 7.7125855, 47.4897182 ], + [ 7.7125909, 47.4897186 ], + [ 7.7125956, 47.489719 ], + [ 7.7125965, 47.4897191 ], + [ 7.7126141, 47.4897206 ], + [ 7.7126308, 47.4897217 ], + [ 7.7126359, 47.489722 ], + [ 7.7126413, 47.4897224 ], + [ 7.7126491, 47.4897231 ], + [ 7.7126545, 47.4897235 ], + [ 7.7126552, 47.4897236 ], + [ 7.7126626, 47.4897243 ], + [ 7.7126718, 47.4897252 ], + [ 7.7126894, 47.4897263 ], + [ 7.7126983, 47.4897269 ], + [ 7.7127037, 47.4897273 ], + [ 7.7127085, 47.4897277 ], + [ 7.7127094, 47.4897278 ], + [ 7.7127269, 47.4897294 ], + [ 7.7127436, 47.4897304 ], + [ 7.7127486, 47.4897308 ], + [ 7.712754, 47.4897312 ], + [ 7.7127621, 47.4897318 ], + [ 7.7127675, 47.4897323 ], + [ 7.7127681, 47.4897323 ], + [ 7.7127755, 47.489733 ], + [ 7.7127847, 47.4897339 ], + [ 7.7128023, 47.489735 ], + [ 7.7128112, 47.4897357 ], + [ 7.7128166, 47.4897361 ], + [ 7.7128213, 47.4897365 ], + [ 7.7128222, 47.4897365 ], + [ 7.7128399, 47.4897381 ], + [ 7.7128586, 47.4897393 ], + [ 7.7128661, 47.4897398 ], + [ 7.712872, 47.4897403 ], + [ 7.7128778, 47.4897408 ], + [ 7.712879, 47.4897409 ], + [ 7.7128821, 47.4897411 ], + [ 7.7128882, 47.4897417 ], + [ 7.7128976, 47.4897426 ], + [ 7.712914, 47.4897437 ], + [ 7.7129224, 47.4897443 ], + [ 7.7129288, 47.4897448 ], + [ 7.7129341, 47.4897452 ], + [ 7.7129349, 47.4897453 ], + [ 7.7129528, 47.4897468 ], + [ 7.7129672, 47.4897478 ], + [ 7.7129712, 47.489748 ], + [ 7.7129775, 47.4897485 ], + [ 7.7129859, 47.4897491 ], + [ 7.7129922, 47.4897496 ], + [ 7.7129937, 47.4897498 ], + [ 7.7130009, 47.4897504 ], + [ 7.7130104, 47.4897514 ], + [ 7.7130268, 47.4897524 ], + [ 7.7130354, 47.489753 ], + [ 7.7130417, 47.4897535 ], + [ 7.7130469999999995, 47.4897539 ], + [ 7.7130477, 47.489754 ], + [ 7.7130656, 47.4897556 ], + [ 7.7130801, 47.4897565 ], + [ 7.713084, 47.4897567 ], + [ 7.7130887, 47.4897571 ], + [ 7.7130904000000005, 47.4897572 ], + [ 7.7130988, 47.4897578 ], + [ 7.7131051, 47.4897584 ], + [ 7.7131066, 47.4897585 ], + [ 7.7131137, 47.4897592 ], + [ 7.7131232, 47.4897601 ], + [ 7.7131396, 47.4897611 ], + [ 7.7131483, 47.4897617 ], + [ 7.7131546, 47.4897622 ], + [ 7.7131598, 47.4897627 ], + [ 7.7131606, 47.4897627 ], + [ 7.7131786, 47.4897643 ], + [ 7.7131933, 47.4897652 ], + [ 7.7131974, 47.4897655 ], + [ 7.7132037, 47.489766 ], + [ 7.7132122, 47.4897666 ], + [ 7.7132185, 47.4897672 ], + [ 7.7132194, 47.4897672 ], + [ 7.713227, 47.489768 ], + [ 7.7132363, 47.4897689 ], + [ 7.7132523, 47.4897699 ], + [ 7.7132601, 47.4897704 ], + [ 7.7132664, 47.4897709 ], + [ 7.7132702, 47.4897712 ], + [ 7.7132839, 47.4897723 ], + [ 7.7132898, 47.4897725 ], + [ 7.7133055, 47.489773 ], + [ 7.7133102000000004, 47.4897731 ], + [ 7.7133166, 47.4897733 ], + [ 7.71332, 47.4897735 ], + [ 7.7133229, 47.4897736 ], + [ 7.7133293, 47.4897739 ], + [ 7.7133384, 47.4897744 ], + [ 7.7133447, 47.4897748 ], + [ 7.7133522, 47.4897753 ], + [ 7.7133667, 47.4897764 ], + [ 7.713403, 47.4897769 ], + [ 7.713409, 47.489777 ], + [ 7.7134156, 47.4897771 ], + [ 7.713421, 47.4897773 ], + [ 7.7134275, 47.4897775 ], + [ 7.713433, 47.4897777 ], + [ 7.7134349, 47.4897778 ], + [ 7.7134412999999995, 47.4897781 ], + [ 7.7134512, 47.4897786 ], + [ 7.7134576, 47.489779 ], + [ 7.7134655, 47.4897796 ], + [ 7.7134797, 47.4897806 ], + [ 7.7134847, 47.4897807 ], + [ 7.7134928, 47.4897808 ], + [ 7.7135247, 47.4897809 ], + [ 7.7135295, 47.4897809 ], + [ 7.71354, 47.489781 ], + [ 7.7135448, 47.4897811 ], + [ 7.7135499, 47.4897812 ], + [ 7.7135543, 47.4897813 ], + [ 7.7135595, 47.4897814 ], + [ 7.7135654, 47.4897816 ], + [ 7.7135705, 47.4897818 ], + [ 7.7135736999999995, 47.4897819 ], + [ 7.7135795, 47.4897822 ], + [ 7.7135883, 47.4897826 ], + [ 7.71359, 47.4897827 ], + [ 7.7135955, 47.4897827 ], + [ 7.7136027, 47.4897827 ], + [ 7.7136623, 47.4897826 ], + [ 7.7136644, 47.4897826 ], + [ 7.7136755, 47.4897826 ], + [ 7.7136787, 47.4897826 ], + [ 7.7136898, 47.4897827 ], + [ 7.7136952999999995, 47.4897828 ], + [ 7.7137063, 47.4897829 ], + [ 7.7137127, 47.4897831 ], + [ 7.7137181, 47.4897832 ], + [ 7.713724, 47.4897834 ], + [ 7.7137295, 47.4897836 ], + [ 7.7137325, 47.4897837 ], + [ 7.7137389, 47.489784 ], + [ 7.713748, 47.4897845 ], + [ 7.7137489, 47.4897845 ], + [ 7.7137585, 47.4897846 ], + [ 7.7137823, 47.4897846 ], + [ 7.7139136, 47.4897842 ], + [ 7.713914, 47.4897842 ], + [ 7.7139153, 47.4897842 ], + [ 7.7139318, 47.4897842 ], + [ 7.7139344, 47.4897842 ], + [ 7.7139454, 47.4897843 ], + [ 7.7139495, 47.4897843 ], + [ 7.7139603999999995, 47.4897844 ], + [ 7.7139675, 47.4897845 ], + [ 7.7139783, 47.4897848 ], + [ 7.7139866, 47.489785 ], + [ 7.713992, 47.4897853 ], + [ 7.7139947, 47.4897854 ], + [ 7.7140015, 47.4897857 ], + [ 7.714011, 47.4897862 ], + [ 7.714017, 47.4897863 ], + [ 7.7140239, 47.4897863 ], + [ 7.7140372, 47.4897863 ], + [ 7.7140451, 47.4897863 ], + [ 7.714052, 47.4897862 ], + [ 7.7140564, 47.4897861 ], + [ 7.7140609, 47.4897858 ], + [ 7.71407, 47.4897853 ], + [ 7.7140797, 47.4897848 ], + [ 7.7140826, 47.4897846 ], + [ 7.7140947, 47.4897841 ], + [ 7.7141005, 47.4897837 ], + [ 7.714105, 47.4897834 ], + [ 7.7141105, 47.4897831 ], + [ 7.7141174, 47.4897827 ], + [ 7.7141193999999995, 47.4897826 ], + [ 7.7141251, 47.4897824 ], + [ 7.7141322, 47.4897821 ], + [ 7.714138, 47.4897819 ], + [ 7.7141456999999996, 47.4897817 ], + [ 7.7141567, 47.4897816 ], + [ 7.7141645, 47.4897815 ], + [ 7.7141758, 47.4897814 ], + [ 7.7141771, 47.4897814 ], + [ 7.7141812, 47.4897814 ], + [ 7.7141869, 47.4897814 ], + [ 7.7141933, 47.4897815 ], + [ 7.7142047, 47.4897817 ], + [ 7.7142126, 47.4897819 ], + [ 7.7142183, 47.489782 ], + [ 7.7142247, 47.4897822 ], + [ 7.7142307, 47.4897825 ], + [ 7.714232, 47.4897825 ], + [ 7.7142383, 47.4897828 ], + [ 7.7142501, 47.4897834 ], + [ 7.7142565, 47.4897838 ], + [ 7.7142658, 47.4897844 ], + [ 7.71427, 47.4897838 ], + [ 7.7142741, 47.4897832 ], + [ 7.714278, 47.4897826 ], + [ 7.7142828, 47.4897816 ], + [ 7.7142853, 47.489781 ], + [ 7.7142943, 47.489779 ], + [ 7.7143029, 47.4897772 ], + [ 7.7143081, 47.489776 ], + [ 7.7143187, 47.4897737 ], + [ 7.7143226, 47.4897729 ], + [ 7.7143272, 47.489772 ], + [ 7.7143494, 47.4897676 ], + [ 7.7143522, 47.4897671 ], + [ 7.7143586, 47.4897658 ], + [ 7.7143614, 47.4897652 ], + [ 7.7143699, 47.4897635 ], + [ 7.7143738, 47.4897627 ], + [ 7.7143787, 47.4897618 ], + [ 7.7143846, 47.4897607 ], + [ 7.714397, 47.4897583 ], + [ 7.714401, 47.4897575 ], + [ 7.7144049, 47.4897568 ], + [ 7.7144081, 47.4897561 ], + [ 7.7144165000000005, 47.4897544 ], + [ 7.7144204, 47.4897536 ], + [ 7.7144249, 47.4897527 ], + [ 7.7144308, 47.4897516 ], + [ 7.7144432, 47.4897492 ], + [ 7.7144471, 47.4897485 ], + [ 7.7144511, 47.4897477 ], + [ 7.7144544, 47.489747 ], + [ 7.7144628, 47.4897453 ], + [ 7.7144667, 47.4897445 ], + [ 7.7144712, 47.4897436 ], + [ 7.7144772, 47.4897425 ], + [ 7.7144895, 47.4897401 ], + [ 7.7144935, 47.4897394 ], + [ 7.7144975, 47.4897386 ], + [ 7.7145007, 47.4897379 ], + [ 7.7145092, 47.4897362 ], + [ 7.7145132, 47.4897354 ], + [ 7.7145174999999995, 47.4897346 ], + [ 7.7145234, 47.4897334 ], + [ 7.7145358, 47.489731 ], + [ 7.7145396999999996, 47.4897303 ], + [ 7.7145437, 47.4897295 ], + [ 7.7145468, 47.4897289 ], + [ 7.7145553, 47.4897271 ], + [ 7.7145592, 47.4897263 ], + [ 7.7145637, 47.4897255 ], + [ 7.7145697, 47.4897243 ], + [ 7.714582, 47.4897219 ], + [ 7.714586, 47.4897212 ], + [ 7.7145903, 47.4897204 ], + [ 7.7145939, 47.4897196 ], + [ 7.7146029, 47.4897178 ], + [ 7.7146068, 47.489717 ], + [ 7.7146116, 47.4897161 ], + [ 7.714634, 47.4897119 ], + [ 7.7146348, 47.4897118 ], + [ 7.7146427, 47.4897104 ], + [ 7.7146531, 47.4897086 ], + [ 7.714666, 47.4897064 ], + [ 7.7146735, 47.4897051 ], + [ 7.7147001, 47.4897008 ], + [ 7.71471, 47.4896993 ], + [ 7.7147144999999995, 47.4896987 ], + [ 7.7147179, 47.4896982 ], + [ 7.7147201, 47.4896979 ], + [ 7.7147242, 47.4896973 ], + [ 7.7147310000000004, 47.4896962 ], + [ 7.7147337, 47.4896958 ], + [ 7.7147421, 47.4896944 ], + [ 7.7147526, 47.4896926 ], + [ 7.7147603, 47.4896913 ], + [ 7.7147705, 47.4896897 ], + [ 7.7147758, 47.4896888 ], + [ 7.7147797, 47.4896882 ], + [ 7.7147869, 47.489687 ], + [ 7.7147974, 47.4896854 ], + [ 7.714802, 47.4896848 ], + [ 7.7148041, 47.4896845 ], + [ 7.7148096, 47.4896837 ], + [ 7.7148153, 47.489683 ], + [ 7.7148255, 47.4896815 ], + [ 7.7148326, 47.4896805 ], + [ 7.7148342, 47.4896803 ], + [ 7.7148388, 47.4896796 ], + [ 7.714845, 47.4896788 ], + [ 7.7148496, 47.4896783 ], + [ 7.7148591, 47.4896769 ], + [ 7.7148657, 47.4896759 ], + [ 7.7148674, 47.4896757 ], + [ 7.714872, 47.4896751 ], + [ 7.7148783, 47.4896742 ], + [ 7.7148834, 47.4896736 ], + [ 7.7148935, 47.4896721 ], + [ 7.7148988, 47.4896714 ], + [ 7.7149034, 47.4896708 ], + [ 7.714908, 47.4896702 ], + [ 7.7149151, 47.4896693 ], + [ 7.7149251, 47.4896681 ], + [ 7.7149256, 47.4896681 ], + [ 7.7149297, 47.4896676 ], + [ 7.7149464, 47.4896655 ], + [ 7.7149505, 47.489665 ], + [ 7.7149552, 47.4896645 ], + [ 7.714961, 47.4896638 ], + [ 7.7149681999999995, 47.4896631 ], + [ 7.7149745, 47.4896623 ], + [ 7.714978, 47.4896619 ], + [ 7.7149909999999995, 47.4896604 ], + [ 7.7149969, 47.4896597 ], + [ 7.7150014, 47.4896593 ], + [ 7.715009, 47.4896585 ], + [ 7.7150099, 47.4896584 ], + [ 7.7150282, 47.4896568 ], + [ 7.7150361, 47.4896561 ], + [ 7.715041, 47.4896558 ], + [ 7.7150504, 47.4896551 ], + [ 7.7150552999999995, 47.4896548 ], + [ 7.7150618, 47.4896545 ], + [ 7.7150668, 47.4896542 ], + [ 7.7150681, 47.4896542 ], + [ 7.7150718, 47.489654 ], + [ 7.7150848, 47.4896535 ], + [ 7.7150868, 47.4896534 ], + [ 7.7150959, 47.4896528 ], + [ 7.7151038, 47.4896523 ], + [ 7.7151214, 47.4896513 ], + [ 7.7151274, 47.4896509 ], + [ 7.7151323, 47.4896506 ], + [ 7.7151377, 47.4896503 ], + [ 7.7151447, 47.4896499 ], + [ 7.7151464, 47.4896498 ], + [ 7.7151518, 47.4896496 ], + [ 7.7151585, 47.4896494 ], + [ 7.715164, 47.4896492 ], + [ 7.715171, 47.489649 ], + [ 7.7151819, 47.4896488 ], + [ 7.7151876, 47.4896487 ], + [ 7.7151986, 47.4896486 ], + [ 7.7152027, 47.4896485 ], + [ 7.7152509, 47.4896484 ], + [ 7.7152636999999995, 47.4896482 ], + [ 7.71527, 47.4896481 ], + [ 7.7152707, 47.4896481 ], + [ 7.715277, 47.4896478 ], + [ 7.715284, 47.4896476 ], + [ 7.7152888, 47.4896474 ], + [ 7.7153, 47.4896472 ], + [ 7.7153048, 47.4896471 ], + [ 7.7153107, 47.4896471 ], + [ 7.7153157, 47.4896471 ], + [ 7.7153205, 47.4896471 ], + [ 7.7153317, 47.4896473 ], + [ 7.7153365, 47.4896474 ], + [ 7.7153438, 47.4896476 ], + [ 7.7153492, 47.4896478 ], + [ 7.7153522, 47.4896479 ], + [ 7.7153585, 47.489648 ], + [ 7.7153891, 47.4896482 ], + [ 7.7153952, 47.4896483 ], + [ 7.7154059, 47.4896485 ], + [ 7.7154122, 47.4896486 ], + [ 7.7154175, 47.4896488 ], + [ 7.7154204, 47.4896489 ], + [ 7.7154237, 47.489649 ], + [ 7.715429, 47.4896492 ], + [ 7.7154305, 47.489649299999996 ], + [ 7.7154371, 47.4896496 ], + [ 7.7154423, 47.4896499 ], + [ 7.7154465, 47.4896501 ], + [ 7.7154515, 47.4896504 ], + [ 7.715463, 47.4896509 ], + [ 7.7154644, 47.4896509 ], + [ 7.715466, 47.489651 ], + [ 7.7154755999999995, 47.4896514 ], + [ 7.7154848, 47.4896519 ], + [ 7.7154899, 47.4896522 ], + [ 7.7154913, 47.4896523 ], + [ 7.7155134, 47.4896525 ], + [ 7.7155176, 47.4896526 ], + [ 7.7155274, 47.4896528 ], + [ 7.7155335, 47.4896529 ], + [ 7.7155383, 47.4896531 ], + [ 7.7155443, 47.4896533 ], + [ 7.7155492, 47.4896535 ], + [ 7.7155503, 47.4896535 ], + [ 7.715557, 47.4896538 ], + [ 7.7155618, 47.4896541 ], + [ 7.7155658, 47.4896543 ], + [ 7.7155708, 47.4896546 ], + [ 7.7155872, 47.4896553 ], + [ 7.7155888, 47.4896553 ], + [ 7.7155914, 47.4896555 ], + [ 7.7155963, 47.4896557 ], + [ 7.7156041, 47.4896561 ], + [ 7.7156101, 47.4896565 ], + [ 7.7156114, 47.4896565 ], + [ 7.7156316, 47.4896568 ], + [ 7.7156368, 47.4896569 ], + [ 7.7156477, 47.4896572 ], + [ 7.7156554, 47.4896575 ], + [ 7.7156608, 47.4896577 ], + [ 7.7156625, 47.4896578 ], + [ 7.7156687999999995, 47.4896581 ], + [ 7.7156741, 47.4896583 ], + [ 7.7156781, 47.4896586 ], + [ 7.7156832, 47.4896589 ], + [ 7.7157059, 47.4896598 ], + [ 7.7157158, 47.4896603 ], + [ 7.7157221, 47.4896607 ], + [ 7.7157285, 47.4896608 ], + [ 7.7157365, 47.4896608 ], + [ 7.7157515, 47.4896608 ], + [ 7.7158404, 47.4896605 ], + [ 7.7158523, 47.4896604 ], + [ 7.7158562, 47.4896603 ], + [ 7.715863, 47.4896599 ], + [ 7.7158711, 47.4896595 ], + [ 7.7158716, 47.4896595 ], + [ 7.7158768, 47.4896592 ], + [ 7.7158812999999995, 47.489659 ], + [ 7.7158865, 47.4896589 ], + [ 7.7158902, 47.4896587 ], + [ 7.7159093, 47.4896581 ], + [ 7.7159101, 47.4896581 ], + [ 7.7159213, 47.4896574 ], + [ 7.7159278, 47.4896571 ], + [ 7.7159313, 47.4896569 ], + [ 7.7159368, 47.4896567 ], + [ 7.7159445, 47.4896565 ], + [ 7.7159555, 47.4896562 ], + [ 7.7159612, 47.489656 ], + [ 7.7159859, 47.4896556 ], + [ 7.7159876, 47.4896555 ], + [ 7.7159929, 47.4896552 ], + [ 7.7160007, 47.4896547 ], + [ 7.7160056, 47.4896545 ], + [ 7.7160081, 47.4896544 ], + [ 7.7160098, 47.4896543 ], + [ 7.7160256, 47.4896536 ], + [ 7.7160298, 47.4896533 ], + [ 7.7160337, 47.4896531 ], + [ 7.7160389, 47.4896528 ], + [ 7.7160465, 47.4896523 ], + [ 7.7160516999999995, 47.4896521 ], + [ 7.716052, 47.4896521 ], + [ 7.716057, 47.4896519 ], + [ 7.7160622, 47.4896517 ], + [ 7.7160663, 47.4896515 ], + [ 7.7160839, 47.489651 ], + [ 7.7160892, 47.4896506 ], + [ 7.7160986, 47.48965 ], + [ 7.7161173, 47.489649 ], + [ 7.7161216, 47.4896487 ], + [ 7.7161261, 47.4896484 ], + [ 7.7161311999999995, 47.4896481 ], + [ 7.7161389, 47.4896477 ], + [ 7.716144, 47.4896474 ], + [ 7.7161449, 47.4896474 ], + [ 7.7161493, 47.4896472 ], + [ 7.7161545, 47.489647 ], + [ 7.7161582, 47.4896469 ], + [ 7.7161752, 47.4896463 ], + [ 7.71618, 47.4896459 ], + [ 7.7161851, 47.4896456 ], + [ 7.7161968, 47.4896448 ], + [ 7.716208, 47.489644 ], + [ 7.7162177, 47.4896433 ], + [ 7.7162339, 47.4896423 ], + [ 7.7162437, 47.4896415 ], + [ 7.7162496, 47.4896411 ], + [ 7.7162614, 47.4896403 ], + [ 7.7162673999999996, 47.4896398 ], + [ 7.7162711, 47.4896395 ], + [ 7.7162764, 47.4896391 ], + [ 7.7162842, 47.4896386 ], + [ 7.7163006, 47.4896376 ], + [ 7.7163105, 47.4896368 ], + [ 7.716317, 47.4896363 ], + [ 7.7163292, 47.4896355 ], + [ 7.7163356, 47.489635 ], + [ 7.7163395999999995, 47.4896347 ], + [ 7.7163443, 47.4896344 ], + [ 7.7163512999999995, 47.4896339 ], + [ 7.7163561, 47.4896337 ], + [ 7.7163614, 47.4896334 ], + [ 7.7163766, 47.4896326 ], + [ 7.7163855, 47.489632 ], + [ 7.7163912, 47.4896316 ], + [ 7.7164034, 47.4896308 ], + [ 7.71641, 47.4896303 ], + [ 7.7164146, 47.4896299 ], + [ 7.7164196, 47.4896296 ], + [ 7.7164269999999995, 47.4896292 ], + [ 7.716432, 47.4896289 ], + [ 7.7164364, 47.4896287 ], + [ 7.7164371, 47.4896286 ], + [ 7.7164421, 47.4896284 ], + [ 7.7164454, 47.4896283 ], + [ 7.7164588, 47.4896277 ], + [ 7.716465, 47.4896273 ], + [ 7.7164715, 47.4896268 ], + [ 7.7164838, 47.489626 ], + [ 7.7164904, 47.4896256 ], + [ 7.7164954, 47.4896252 ], + [ 7.7165005, 47.4896249 ], + [ 7.7165084, 47.4896244 ], + [ 7.7165112, 47.4896243 ], + [ 7.7165114, 47.4896227 ], + [ 7.7165128, 47.4896149 ], + [ 7.7165133, 47.4896122 ], + [ 7.7165140999999995, 47.4896082 ], + [ 7.7165164, 47.4895982 ], + [ 7.7165172, 47.4895952 ], + [ 7.7165185, 47.4895904 ], + [ 7.7165187, 47.4895897 ], + [ 7.7165199, 47.4895855 ], + [ 7.7165218, 47.4895794 ], + [ 7.7165237, 47.4895737 ], + [ 7.7165246, 47.4895711 ], + [ 7.7165254999999995, 47.4895684 ], + [ 7.7165272, 47.4895636 ], + [ 7.7165282, 47.4895609 ], + [ 7.7165294, 47.4895579 ], + [ 7.716531, 47.4895538 ], + [ 7.716533, 47.489549 ], + [ 7.716536, 47.489542 ], + [ 7.7165382000000005, 47.4895372 ], + [ 7.7165405, 47.4895324 ], + [ 7.7165425, 47.4895284 ], + [ 7.716543, 47.4895274 ], + [ 7.7165461, 47.4895212 ], + [ 7.7165497, 47.4895146 ], + [ 7.7165544, 47.4895062 ], + [ 7.7165571, 47.4895016 ], + [ 7.7165584, 47.4894995 ], + [ 7.7165609, 47.4894954 ], + [ 7.7165651, 47.4894889 ], + [ 7.7165709, 47.48948 ], + [ 7.7165759, 47.4894728 ], + [ 7.7165782, 47.4894696 ], + [ 7.7165793, 47.4894682 ], + [ 7.7165826, 47.4894637 ], + [ 7.7165853, 47.48946 ], + [ 7.7165901, 47.4894537 ], + [ 7.7165937, 47.4894491 ], + [ 7.7165957, 47.4894465 ], + [ 7.716598, 47.4894437 ], + [ 7.7166089, 47.4894305 ], + [ 7.7166114, 47.4894274 ], + [ 7.7166248, 47.4894116 ], + [ 7.7166268, 47.4894092 ], + [ 7.716629, 47.4894067 ], + [ 7.7166311, 47.4894043 ], + [ 7.7166336, 47.4894015 ], + [ 7.7166349, 47.4894 ], + [ 7.7166378, 47.4893967 ], + [ 7.7166457, 47.4893881 ], + [ 7.7166524, 47.4893811 ], + [ 7.7166529, 47.4893806 ], + [ 7.7166561, 47.4893772 ], + [ 7.7166629, 47.4893706 ], + [ 7.7166716, 47.4893623 ], + [ 7.7166764, 47.4893578 ], + [ 7.7166836, 47.4893512 ], + [ 7.7166867, 47.4893485 ], + [ 7.7166892, 47.4893462 ], + [ 7.7166925, 47.4893433 ], + [ 7.7166981, 47.489338599999996 ], + [ 7.7167114, 47.4893275 ], + [ 7.7167237, 47.4893173 ], + [ 7.7167462, 47.4892982 ], + [ 7.7167642, 47.4892829 ], + [ 7.7167654, 47.4892819 ], + [ 7.7167787, 47.4892706 ], + [ 7.7167813, 47.4892685 ], + [ 7.7167935, 47.4892584 ], + [ 7.716794, 47.489258 ], + [ 7.7168022, 47.4892509 ], + [ 7.716805, 47.4892485 ], + [ 7.7168084, 47.4892456 ], + [ 7.7168124, 47.4892423 ], + [ 7.7168219, 47.4892345 ], + [ 7.7168402, 47.4892194 ], + [ 7.7168419, 47.489218 ], + [ 7.7168453, 47.4892151 ], + [ 7.7168486, 47.4892125 ], + [ 7.7168583, 47.4892047 ], + [ 7.7168665, 47.4891981 ], + [ 7.7168693, 47.4891959 ], + [ 7.7168786, 47.4891886 ], + [ 7.7168863, 47.4891823 ], + [ 7.7168882, 47.4891808 ], + [ 7.7168971, 47.4891737 ], + [ 7.7169144, 47.4891595 ], + [ 7.7169165, 47.4891578 ], + [ 7.7169205, 47.4891546 ], + [ 7.7169248, 47.4891512 ], + [ 7.716925, 47.489151 ], + [ 7.7169393, 47.4891399 ], + [ 7.7169473, 47.4891335 ], + [ 7.7169498999999995, 47.4891315 ], + [ 7.7169664000000004, 47.4891186 ], + [ 7.716967, 47.4891182 ], + [ 7.7169685, 47.489117 ], + [ 7.7169723999999995, 47.4891139 ], + [ 7.716977, 47.4891105 ], + [ 7.716981, 47.4891075 ], + [ 7.7169849, 47.4891047 ], + [ 7.716989, 47.4891017 ], + [ 7.7169923, 47.4890993 ], + [ 7.7169965, 47.4890964 ], + [ 7.717001, 47.4890933 ], + [ 7.7170011, 47.4890932 ], + [ 7.7170096, 47.4890874 ], + [ 7.7170146, 47.4890841 ], + [ 7.7170189, 47.4890812 ], + [ 7.7170227, 47.4890787 ], + [ 7.7170271, 47.4890759 ], + [ 7.7170318, 47.4890729 ], + [ 7.7170362, 47.4890702 ], + [ 7.7170415, 47.489067 ], + [ 7.7170421000000005, 47.4890667 ], + [ 7.7170465, 47.489064 ], + [ 7.7170514, 47.4890611 ], + [ 7.7170631, 47.4890544 ], + [ 7.7170662, 47.4890526 ], + [ 7.7170708999999995, 47.48905 ], + [ 7.7170713, 47.4890497 ], + [ 7.7170863, 47.4890413 ], + [ 7.7170882, 47.4890402 ], + [ 7.7170924, 47.4890378 ], + [ 7.7170973, 47.489035200000004 ], + [ 7.7171015, 47.4890329 ], + [ 7.7171059, 47.4890306 ], + [ 7.7171067, 47.4890302 ], + [ 7.7171126999999995, 47.489027 ], + [ 7.717115, 47.4890258 ], + [ 7.7171306, 47.4890178 ], + [ 7.7171342, 47.489016 ], + [ 7.7171389999999995, 47.4890136 ], + [ 7.717145, 47.4890107 ], + [ 7.7171548, 47.4890059 ], + [ 7.7171595, 47.4890037 ], + [ 7.7171693, 47.4889991 ], + [ 7.7171726, 47.4889976 ], + [ 7.7171924, 47.4889885 ], + [ 7.717193, 47.4889882 ], + [ 7.7171937, 47.4889879 ], + [ 7.7171999, 47.4889851 ], + [ 7.7172655, 47.4889553 ], + [ 7.7174617, 47.4888659 ], + [ 7.717462, 47.4888658 ], + [ 7.7175309, 47.4888344 ], + [ 7.7175314, 47.4888342 ], + [ 7.7175604, 47.488821 ], + [ 7.7175612000000005, 47.4888207 ], + [ 7.7175635, 47.4888196 ], + [ 7.7175835, 47.4888107 ], + [ 7.7175873, 47.488809 ], + [ 7.7175972999999995, 47.4888047 ], + [ 7.7176008, 47.4888032 ], + [ 7.7176027, 47.4888023 ], + [ 7.7176111, 47.4887985 ], + [ 7.7176165999999995, 47.4887961 ], + [ 7.7176195, 47.4887948 ], + [ 7.7176198, 47.4887947 ], + [ 7.7176297, 47.4887901 ], + [ 7.7176302, 47.4887899 ], + [ 7.7176369000000005, 47.4887869 ], + [ 7.7176396, 47.4887857 ], + [ 7.7176469, 47.4887824 ], + [ 7.7176509, 47.4887807 ], + [ 7.7176558, 47.4887785 ], + [ 7.7176627, 47.4887755 ], + [ 7.7176819, 47.4887675 ], + [ 7.717686, 47.4887658 ], + [ 7.7176960999999995, 47.4887616 ], + [ 7.7177015, 47.4887595 ], + [ 7.7177017, 47.4887594 ], + [ 7.7177055, 47.4887579 ], + [ 7.7177116, 47.4887556 ], + [ 7.7177246, 47.4887507 ], + [ 7.7177277, 47.4887495 ], + [ 7.7177302, 47.4887485 ], + [ 7.7177451, 47.4887428 ], + [ 7.7177494, 47.4887412 ], + [ 7.7177527, 47.4887399 ], + [ 7.7177646, 47.4887353 ], + [ 7.7177668, 47.4887345 ], + [ 7.7177706, 47.4887331 ], + [ 7.7177745, 47.4887316 ], + [ 7.71779, 47.4887259 ], + [ 7.7178049, 47.4887202 ], + [ 7.7178084, 47.4887188 ], + [ 7.7178117, 47.4887176 ], + [ 7.7178275, 47.4887115 ], + [ 7.717832, 47.4887098 ], + [ 7.7178467, 47.4887043 ], + [ 7.717852, 47.4887021 ], + [ 7.7178648, 47.488697 ], + [ 7.717867, 47.4886962 ], + [ 7.7178691, 47.4886953 ], + [ 7.7178729, 47.4886939 ], + [ 7.7178785, 47.4886918 ], + [ 7.7178949, 47.4886856 ], + [ 7.717934, 47.4886705 ], + [ 7.717938, 47.488669 ], + [ 7.7179531, 47.4886634 ], + [ 7.7179643, 47.4886589 ], + [ 7.7179665, 47.488658 ], + [ 7.7179667, 47.4886579 ], + [ 7.7179769, 47.4886539 ], + [ 7.7179844, 47.488651 ], + [ 7.7180005, 47.488645 ], + [ 7.7180161, 47.4886389 ], + [ 7.7180203, 47.4886374 ], + [ 7.7180238, 47.488636 ], + [ 7.7180399, 47.4886298 ], + [ 7.7180458, 47.4886276 ], + [ 7.7180612, 47.4886219 ], + [ 7.7180762, 47.4886161 ], + [ 7.7180797, 47.4886148 ], + [ 7.718083, 47.4886136 ], + [ 7.7180987, 47.4886075 ], + [ 7.718103, 47.4886058 ], + [ 7.7181177, 47.4886003 ], + [ 7.7181228, 47.4885983 ], + [ 7.7181317, 47.4885947 ], + [ 7.7181347, 47.4885935 ], + [ 7.7181356, 47.4885932 ], + [ 7.7181432, 47.4885902 ], + [ 7.7181507, 47.4885873 ], + [ 7.7181638, 47.4885825 ], + [ 7.7181660999999995, 47.4885816 ], + [ 7.7181819, 47.4885758 ], + [ 7.7181851, 47.4885746 ], + [ 7.7181928, 47.4885719 ], + [ 7.7182017, 47.4885688 ], + [ 7.7182037999999995, 47.4885681 ], + [ 7.7182132, 47.4885649 ], + [ 7.7182171, 47.4885637 ], + [ 7.7182277, 47.4885603 ], + [ 7.7182381, 47.4885568 ], + [ 7.7182716, 47.4885456 ], + [ 7.7182753, 47.4885443 ], + [ 7.7182886, 47.48854 ], + [ 7.7182951, 47.4885379 ], + [ 7.7183149, 47.4885317 ], + [ 7.7183343, 47.4885255 ], + [ 7.7183379, 47.4885243 ], + [ 7.7183564, 47.4885186 ], + [ 7.7183645, 47.4885159 ], + [ 7.7183971, 47.4885049 ], + [ 7.7184007, 47.4885037 ], + [ 7.7184141, 47.4884993 ], + [ 7.7184207, 47.4884972 ], + [ 7.7184406, 47.488491 ], + [ 7.7184601, 47.4884847 ], + [ 7.7184637, 47.4884836 ], + [ 7.7184822, 47.4884778 ], + [ 7.71849, 47.4884752 ], + [ 7.7185355, 47.4884598 ], + [ 7.7185359, 47.4884597 ], + [ 7.7185397, 47.4884584 ], + [ 7.718553, 47.4884541 ], + [ 7.7185597, 47.4884519 ], + [ 7.7185796, 47.4884457 ], + [ 7.7185827, 47.4884447 ], + [ 7.7185692, 47.4884309 ], + [ 7.7185682, 47.4884299 ], + [ 7.7185575, 47.4884189 ], + [ 7.7185558, 47.4884172 ], + [ 7.7185494, 47.4884104 ], + [ 7.7185473, 47.4884082 ], + [ 7.7185431, 47.4884038 ], + [ 7.7185219, 47.4883819 ], + [ 7.7185181, 47.4883779 ], + [ 7.7185157, 47.4883753 ], + [ 7.7185113, 47.4883707 ], + [ 7.7184838, 47.4883423 ], + [ 7.7184822, 47.4883407 ], + [ 7.7184758, 47.4883339 ], + [ 7.7184738, 47.4883318 ], + [ 7.71847, 47.4883278 ], + [ 7.7184624, 47.48832 ], + [ 7.7184598, 47.4883173 ], + [ 7.7184583, 47.4883157 ], + [ 7.7184526, 47.4883099 ], + [ 7.7184501999999995, 47.4883074 ], + [ 7.7184477000000005, 47.4883048 ], + [ 7.7184445, 47.4883015 ], + [ 7.7184424, 47.4882991 ], + [ 7.7184384, 47.488295 ], + [ 7.718415, 47.488271 ], + [ 7.7184117, 47.4882676 ], + [ 7.7184053, 47.4882608 ], + [ 7.7184012, 47.4882563 ], + [ 7.7183973, 47.488252 ], + [ 7.7183941, 47.4882484 ], + [ 7.7183918, 47.4882459 ], + [ 7.7183903, 47.4882441 ], + [ 7.7183867, 47.4882398 ], + [ 7.7183831, 47.4882354 ], + [ 7.7183781, 47.4882292 ], + [ 7.7183747, 47.4882247 ], + [ 7.718371, 47.4882199 ], + [ 7.7183644000000005, 47.4882109 ], + [ 7.7183643, 47.4882107 ], + [ 7.7183612, 47.4882064 ], + [ 7.7183548, 47.4881974 ], + [ 7.7183507, 47.4881913 ], + [ 7.7183464, 47.4881848 ], + [ 7.7183442, 47.4881814 ], + [ 7.7183326, 47.488163 ], + [ 7.7183285999999995, 47.4881568 ], + [ 7.7183268, 47.4881541 ], + [ 7.7183139, 47.4881335 ], + [ 7.7183102, 47.4881279 ], + [ 7.7183088, 47.4881257 ], + [ 7.7182971, 47.4881074 ], + [ 7.718295, 47.4881041 ], + [ 7.7182864, 47.4880916 ], + [ 7.7182837, 47.4880876 ], + [ 7.7182794999999995, 47.4880811 ], + [ 7.718278, 47.4880788 ], + [ 7.7182665, 47.4880608 ], + [ 7.7182639, 47.4880569 ], + [ 7.7182615, 47.4880532 ], + [ 7.7182472, 47.4880305 ], + [ 7.7182434, 47.4880247 ], + [ 7.7182419, 47.4880225 ], + [ 7.7182302, 47.4880041 ], + [ 7.718228, 47.4880008 ], + [ 7.7182195, 47.4879883 ], + [ 7.7182168, 47.4879843 ], + [ 7.7182126, 47.4879778 ], + [ 7.718211, 47.4879754 ], + [ 7.7181993, 47.487957 ], + [ 7.7181953, 47.4879509 ], + [ 7.7181933, 47.4879478 ], + [ 7.7181838, 47.4879327 ], + [ 7.7181798, 47.4879264 ], + [ 7.7181689, 47.48791 ], + [ 7.7181604, 47.4878978 ], + [ 7.7181594, 47.4878963 ], + [ 7.7181513, 47.4878845 ], + [ 7.7181485, 47.4878806 ], + [ 7.7181462, 47.4878777 ], + [ 7.71814, 47.4878702 ], + [ 7.7181384, 47.4878683 ], + [ 7.7181368, 47.4878663 ], + [ 7.718128, 47.4878558 ], + [ 7.7181251, 47.4878523 ], + [ 7.7181231, 47.4878498 ], + [ 7.7181195, 47.4878455 ], + [ 7.7181193, 47.4878453 ], + [ 7.7181166999999995, 47.4878425 ], + [ 7.7181104, 47.4878361 ], + [ 7.7180991, 47.4878246 ], + [ 7.7180964, 47.4878219 ], + [ 7.7180900999999995, 47.4878156 ], + [ 7.718086, 47.4878117 ], + [ 7.7180808, 47.4878068 ], + [ 7.7180794, 47.4878055 ], + [ 7.718076, 47.4878022 ], + [ 7.7180731, 47.4877994 ], + [ 7.7180719, 47.4877982 ], + [ 7.7180663, 47.4877931 ], + [ 7.7180636, 47.4877907 ], + [ 7.7180484, 47.4877783 ], + [ 7.7180408, 47.4877721 ], + [ 7.7180401, 47.4877716 ], + [ 7.7180393, 47.487771 ], + [ 7.7180283, 47.4877627 ], + [ 7.7180271, 47.4877618 ], + [ 7.7180194, 47.4877559 ], + [ 7.7180146, 47.4877525 ], + [ 7.7180083, 47.4877482 ], + [ 7.7180011, 47.4877433 ], + [ 7.717989, 47.4877352 ], + [ 7.7179817, 47.4877303 ], + [ 7.7179753, 47.4877261 ], + [ 7.7179703, 47.4877229 ], + [ 7.7179702, 47.4877228 ], + [ 7.7179685, 47.4877218 ], + [ 7.7179504, 47.487711 ], + [ 7.7179502, 47.487711 ], + [ 7.7179407, 47.4877058 ], + [ 7.7179375, 47.4877041 ], + [ 7.7179329, 47.4877015 ], + [ 7.7179281, 47.4876988 ], + [ 7.7179154, 47.4876915 ], + [ 7.7179153, 47.4876914 ], + [ 7.7178983, 47.4876826 ], + [ 7.7178825, 47.4876745 ], + [ 7.7178819, 47.4876742 ], + [ 7.7178785, 47.4876724 ], + [ 7.7178742, 47.4876701 ], + [ 7.71787, 47.4876679 ], + [ 7.7178594, 47.4876621 ], + [ 7.7178495, 47.4876571 ], + [ 7.7178483, 47.4876564 ], + [ 7.7178474999999995, 47.487656 ], + [ 7.7178343, 47.4876491 ], + [ 7.7178229, 47.4876433 ], + [ 7.7178218, 47.4876428 ], + [ 7.7178182, 47.4876409 ], + [ 7.7178139, 47.4876386 ], + [ 7.7178097, 47.4876363 ], + [ 7.7177991, 47.4876306 ], + [ 7.7177989, 47.4876305 ], + [ 7.7177623, 47.4876116 ], + [ 7.7177620000000005, 47.4876115 ], + [ 7.7177583, 47.4876095 ], + [ 7.7177541, 47.4876073 ], + [ 7.7177498, 47.487605 ], + [ 7.7177436, 47.4876017 ], + [ 7.7177392000000005, 47.4875992 ], + [ 7.7177024, 47.4875803 ], + [ 7.7177021, 47.4875801 ], + [ 7.7176984, 47.4875782 ], + [ 7.7176942, 47.4875759 ], + [ 7.7176899, 47.4875736 ], + [ 7.7176793, 47.4875679 ], + [ 7.7176425, 47.4875489 ], + [ 7.7176422, 47.4875488 ], + [ 7.7176386, 47.4875469 ], + [ 7.7176343, 47.4875446 ], + [ 7.71763, 47.4875423 ], + [ 7.7176194, 47.4875366 ], + [ 7.7175827, 47.4875176 ], + [ 7.7175823999999995, 47.4875175 ], + [ 7.7175787, 47.4875155 ], + [ 7.7175744, 47.4875133 ], + [ 7.7175702, 47.487511 ], + [ 7.7175595999999995, 47.4875052 ], + [ 7.7175594, 47.4875051 ], + [ 7.7175228, 47.4874863 ], + [ 7.7175225, 47.4874861 ], + [ 7.7175188, 47.4874842 ], + [ 7.7175146, 47.4874819 ], + [ 7.7175103, 47.4874797 ], + [ 7.7174998, 47.4874739 ], + [ 7.71749, 47.4874689 ], + [ 7.7174891, 47.4874685 ], + [ 7.7174881, 47.487468 ], + [ 7.7174748, 47.487461 ], + [ 7.7174636, 47.4874553 ], + [ 7.7174626, 47.4874548 ], + [ 7.717459, 47.4874529 ], + [ 7.7174548, 47.4874506 ], + [ 7.7174505, 47.4874484 ], + [ 7.7174401, 47.4874427 ], + [ 7.7174268, 47.4874359 ], + [ 7.7174256, 47.4874353 ], + [ 7.7174246, 47.4874348 ], + [ 7.7174192999999995, 47.487432 ], + [ 7.7174054, 47.487425 ], + [ 7.7174027, 47.4874236 ], + [ 7.7174023, 47.4874234 ], + [ 7.7173975, 47.4874209 ], + [ 7.7173945, 47.4874193 ], + [ 7.7173583, 47.4874002 ], + [ 7.7173386, 47.4873901 ], + [ 7.717338, 47.4873898 ], + [ 7.7173345, 47.4873879 ], + [ 7.7172984, 47.4873689 ], + [ 7.7172788, 47.4873588 ], + [ 7.7172782, 47.4873584 ], + [ 7.7172752, 47.4873569 ], + [ 7.7172632, 47.4873506 ], + [ 7.717262, 47.48735 ], + [ 7.7172374999999995, 47.4873369 ], + [ 7.7172222, 47.487329 ], + [ 7.7172189, 47.4873273 ], + [ 7.7172153, 47.4873254 ], + [ 7.7172105, 47.4873228 ], + [ 7.7171991, 47.4873165 ], + [ 7.7171976, 47.4873157 ], + [ 7.7171871, 47.4873102 ], + [ 7.7171837, 47.4873084 ], + [ 7.7171795, 47.4873061 ], + [ 7.7171755, 47.4873039 ], + [ 7.7171647, 47.487298 ], + [ 7.7171636, 47.4872974 ], + [ 7.717153, 47.4872918 ], + [ 7.7171492, 47.4872898 ], + [ 7.7171449, 47.4872875 ], + [ 7.7171407, 47.4872851 ], + [ 7.7171253, 47.4872765 ], + [ 7.7171154, 47.4872711 ], + [ 7.7170877, 47.4872561 ], + [ 7.7170864, 47.4872554 ], + [ 7.7170745, 47.4872489 ], + [ 7.7170718, 47.4872474 ], + [ 7.717057, 47.4872392 ], + [ 7.7170568, 47.487239 ], + [ 7.7170466, 47.4872337 ], + [ 7.7170437, 47.4872321 ], + [ 7.7170395, 47.4872298 ], + [ 7.7170356, 47.4872277 ], + [ 7.7170248, 47.4872218 ], + [ 7.717024, 47.4872213 ], + [ 7.7170133, 47.4872157 ], + [ 7.7170096, 47.4872137 ], + [ 7.7170054, 47.4872114 ], + [ 7.7170005, 47.4872088 ], + [ 7.7169896, 47.4872026 ], + [ 7.7169758999999996, 47.4871952 ], + [ 7.7169153, 47.4871624 ], + [ 7.7169133, 47.4871613 ], + [ 7.7168972, 47.4871525 ], + [ 7.716894, 47.4871507 ], + [ 7.7168838, 47.487145 ], + [ 7.7168735999999996, 47.4871396 ], + [ 7.7168706, 47.487138 ], + [ 7.7168664, 47.4871358 ], + [ 7.7168627, 47.4871337 ], + [ 7.7168518, 47.4871278 ], + [ 7.7168510999999995, 47.4871274 ], + [ 7.7168404, 47.4871217 ], + [ 7.7168365, 47.4871196 ], + [ 7.7168323, 47.4871173 ], + [ 7.7168281, 47.4871151 ], + [ 7.716813, 47.4871066 ], + [ 7.7167626, 47.4870792 ], + [ 7.7167591, 47.4870773 ], + [ 7.7167444, 47.4870691 ], + [ 7.7167342, 47.4870637 ], + [ 7.7167314000000005, 47.4870622 ], + [ 7.7167272, 47.4870599 ], + [ 7.7167234, 47.4870579 ], + [ 7.7167126, 47.487052 ], + [ 7.7167118, 47.4870515 ], + [ 7.716701, 47.4870458 ], + [ 7.716697, 47.4870437 ], + [ 7.7166928, 47.4870414 ], + [ 7.7166873, 47.4870384 ], + [ 7.7166756, 47.4870318 ], + [ 7.7166649, 47.4870259 ], + [ 7.7166616, 47.487024 ], + [ 7.7166498, 47.4870174 ], + [ 7.7166457, 47.487015 ], + [ 7.7166413, 47.4870124 ], + [ 7.7166396, 47.4870114 ], + [ 7.7166361, 47.4870093 ], + [ 7.7166317, 47.4870067 ], + [ 7.7166267, 47.4870036 ], + [ 7.716618, 47.4869982 ], + [ 7.716615, 47.4869963 ], + [ 7.7165953, 47.4869836 ], + [ 7.7165946, 47.4869833 ], + [ 7.7165863, 47.4869782 ], + [ 7.7165821999999995, 47.4869757 ], + [ 7.7165753, 47.4869714 ], + [ 7.7165716, 47.486969 ], + [ 7.7165459, 47.4869526 ], + [ 7.7165448, 47.4869519 ], + [ 7.7165351, 47.486946 ], + [ 7.7165312, 47.4869436 ], + [ 7.7165268000000005, 47.4869408 ], + [ 7.7165234, 47.4869387 ], + [ 7.7165145, 47.486933 ], + [ 7.7165113, 47.4869309 ], + [ 7.7164905, 47.4869173 ], + [ 7.7164846, 47.4869135 ], + [ 7.7164809, 47.4869112 ], + [ 7.7164728, 47.4869063 ], + [ 7.7164688, 47.4869038 ], + [ 7.7164646, 47.4869012 ], + [ 7.7164611, 47.486899 ], + [ 7.7164528, 47.4868937 ], + [ 7.7164503, 47.4868921 ], + [ 7.7164279, 47.4868775 ], + [ 7.7164245000000005, 47.4868754 ], + [ 7.7164161, 47.4868703 ], + [ 7.7164103, 47.4868667 ], + [ 7.7164016, 47.4868612 ], + [ 7.7163974, 47.4868586 ], + [ 7.7163886999999995, 47.486852999999996 ], + [ 7.7163871, 47.4868519 ], + [ 7.7163673, 47.4868389 ], + [ 7.7163622, 47.4868357 ], + [ 7.716362, 47.4868356 ], + [ 7.7163531, 47.4868302 ], + [ 7.7163492, 47.4868277 ], + [ 7.7163448, 47.4868251 ], + [ 7.7163406, 47.4868224 ], + [ 7.7163126, 47.4868045 ], + [ 7.7163123, 47.4868043 ], + [ 7.7163031, 47.4867988 ], + [ 7.7162972, 47.4867951 ], + [ 7.7162885, 47.4867896 ], + [ 7.7162843, 47.4867869 ], + [ 7.7162756, 47.4867813 ], + [ 7.716274, 47.4867802 ], + [ 7.7162542, 47.4867673 ], + [ 7.7162492, 47.4867641 ], + [ 7.7162403, 47.4867587 ], + [ 7.7162367, 47.4867565 ], + [ 7.7162324, 47.4867539 ], + [ 7.7162293, 47.4867519 ], + [ 7.7162206, 47.4867465 ], + [ 7.7162191, 47.4867455 ], + [ 7.7162074, 47.486738 ], + [ 7.7162014, 47.4867343 ], + [ 7.7162003, 47.4867336 ], + [ 7.7161911, 47.4867281 ], + [ 7.7161855, 47.4867247 ], + [ 7.7161814, 47.4867221 ], + [ 7.7161774, 47.4867195 ], + [ 7.7161733, 47.486717 ], + [ 7.7161694, 47.4867144 ], + [ 7.7161653999999995, 47.4867118 ], + [ 7.7161624, 47.4867098 ], + [ 7.7161614, 47.4867091 ], + [ 7.7161575, 47.4867065 ], + [ 7.7161531, 47.4867034 ], + [ 7.7161492, 47.4867007 ], + [ 7.716144, 47.486697 ], + [ 7.7161402, 47.4866942 ], + [ 7.7161341, 47.4866897 ], + [ 7.7161304, 47.4866869 ], + [ 7.7161293, 47.486686 ], + [ 7.7161228, 47.4866809 ], + [ 7.7161193, 47.4866781 ], + [ 7.7161100000000005, 47.4866703 ], + [ 7.7161067, 47.4866674 ], + [ 7.7161059, 47.4866667 ], + [ 7.7160989, 47.4866604 ], + [ 7.7160969999999995, 47.4866586 ], + [ 7.7160928, 47.4866547 ], + [ 7.7160903, 47.4866522 ], + [ 7.7160862, 47.4866482 ], + [ 7.7160844, 47.4866463 ], + [ 7.7160819, 47.4866438 ], + [ 7.7160763, 47.4866379 ], + [ 7.7160747, 47.4866361 ], + [ 7.7160721, 47.4866333 ], + [ 7.716066, 47.4866264 ], + [ 7.7160625, 47.4866225 ], + [ 7.7160587, 47.4866181 ], + [ 7.7160584, 47.4866177 ], + [ 7.716056, 47.4866149 ], + [ 7.7160539, 47.4866123 ], + [ 7.7160503, 47.486608 ], + [ 7.7160433, 47.4865992 ], + [ 7.7160414, 47.4865968 ], + [ 7.7160399, 47.4865949 ], + [ 7.7160374, 47.4865918 ], + [ 7.7158714, 47.4866504 ], + [ 7.71588, 47.4866598 ], + [ 7.7158825, 47.4866626 ], + [ 7.7158847, 47.4866651 ], + [ 7.7158873, 47.4866681 ], + [ 7.7158885, 47.4866695 ], + [ 7.7158897, 47.486671 ], + [ 7.7158987, 47.486681 ], + [ 7.7159019, 47.4866846 ], + [ 7.7159064, 47.4866898 ], + [ 7.7159071, 47.4866906 ], + [ 7.7159116999999995, 47.4866961 ], + [ 7.7159195, 47.4867056 ], + [ 7.7159201, 47.4867064 ], + [ 7.7159275, 47.4867145 ], + [ 7.7159294, 47.4867168 ], + [ 7.7159317, 47.4867193 ], + [ 7.715934, 47.4867219 ], + [ 7.7159351, 47.4867233 ], + [ 7.7159361, 47.4867244 ], + [ 7.7159468, 47.4867362 ], + [ 7.7159491, 47.4867388 ], + [ 7.7159513, 47.4867413 ], + [ 7.715954, 47.4867444 ], + [ 7.7159549, 47.4867454 ], + [ 7.715956, 47.4867467 ], + [ 7.7159668, 47.4867586 ], + [ 7.7159692, 47.4867613 ], + [ 7.7159715, 47.4867639 ], + [ 7.715974, 47.4867668 ], + [ 7.7159751, 47.4867681 ], + [ 7.7159761, 47.4867693 ], + [ 7.715987, 47.4867813 ], + [ 7.7159894, 47.4867839 ], + [ 7.7159916, 47.4867865 ], + [ 7.715994, 47.4867892 ], + [ 7.7159952, 47.4867907 ], + [ 7.7159962, 47.4867918 ], + [ 7.7160069, 47.4868036 ], + [ 7.7160087, 47.4868056 ], + [ 7.716011, 47.4868082 ], + [ 7.7160139999999995, 47.4868117 ], + [ 7.7160143, 47.4868119 ], + [ 7.7160149, 47.4868127 ], + [ 7.7160151, 47.4868129 ], + [ 7.7160187, 47.4868166 ], + [ 7.7160356, 47.486834 ], + [ 7.7160379, 47.4868363 ], + [ 7.7160443999999995, 47.4868431 ], + [ 7.7160477, 47.4868467 ], + [ 7.7160516999999995, 47.486851 ], + [ 7.716054, 47.4868534 ], + [ 7.7160563, 47.486856 ], + [ 7.7160601, 47.4868603 ], + [ 7.7160611, 47.4868615 ], + [ 7.7160618, 47.4868622 ], + [ 7.7160656, 47.4868662 ], + [ 7.7160825, 47.4868835 ], + [ 7.7160847, 47.4868858 ], + [ 7.7160912, 47.4868926 ], + [ 7.7160944, 47.486896 ], + [ 7.7160984, 47.4869003 ], + [ 7.7161007, 47.4869028 ], + [ 7.716103, 47.4869054 ], + [ 7.7161069, 47.4869097 ], + [ 7.7161078, 47.4869108 ], + [ 7.7161085, 47.4869116 ], + [ 7.7161121999999995, 47.4869155 ], + [ 7.7161292, 47.4869328 ], + [ 7.7161314, 47.4869352 ], + [ 7.7161379, 47.4869419 ], + [ 7.7161413, 47.4869456 ], + [ 7.7161453, 47.4869499 ], + [ 7.7161477, 47.4869525 ], + [ 7.71615, 47.486955 ], + [ 7.7161538, 47.4869594 ], + [ 7.7161544, 47.4869601 ], + [ 7.7161562, 47.4869621 ], + [ 7.7161599, 47.486966 ], + [ 7.7161706, 47.486977 ], + [ 7.7161724, 47.4869789 ], + [ 7.7161788, 47.4869857 ], + [ 7.7161792, 47.4869861 ], + [ 7.7161816, 47.4869885 ], + [ 7.7161838, 47.4869905 ], + [ 7.7161979, 47.4870043 ], + [ 7.7162011, 47.4870073 ], + [ 7.7162074, 47.4870129 ], + [ 7.7162119, 47.4870171 ], + [ 7.7162201, 47.4870246 ], + [ 7.7162273, 47.4870312 ], + [ 7.7162323, 47.4870359 ], + [ 7.7162348, 47.4870383 ], + [ 7.7162397, 47.4870431 ], + [ 7.7162441, 47.4870471 ], + [ 7.7162457, 47.4870486 ], + [ 7.7162524, 47.4870549 ], + [ 7.7162583, 47.4870601 ], + [ 7.7162607, 47.4870623 ], + [ 7.7162634, 47.4870648 ], + [ 7.7162676, 47.4870686 ], + [ 7.7162745, 47.4870753 ], + [ 7.7162769, 47.4870776 ], + [ 7.7162846, 47.4870849 ], + [ 7.7162881, 47.4870883 ], + [ 7.7162962, 47.4870957 ], + [ 7.7163012, 47.4871004 ], + [ 7.7163082, 47.487107 ], + [ 7.7163102, 47.4871089 ], + [ 7.7163177, 47.4871161 ], + [ 7.7163211, 47.4871194 ], + [ 7.7163273, 47.487125 ], + [ 7.7163309, 47.4871282 ], + [ 7.7163382, 47.4871349 ], + [ 7.7163445, 47.4871405 ], + [ 7.7163471999999995, 47.4871429 ], + [ 7.7163499, 47.4871454 ], + [ 7.7163534, 47.4871486 ], + [ 7.7163578, 47.4871528 ], + [ 7.7163596, 47.4871545 ], + [ 7.7163694, 47.4871639 ], + [ 7.7163749, 47.4871684 ], + [ 7.7163798, 47.4871725 ], + [ 7.7163826, 47.4871749 ], + [ 7.7163851999999995, 47.4871772 ], + [ 7.716387, 47.4871788 ], + [ 7.716395, 47.4871859 ], + [ 7.7164046, 47.4871943 ], + [ 7.7164055, 47.487195 ], + [ 7.7164072, 47.4871966 ], + [ 7.7164131, 47.4872018 ], + [ 7.716421, 47.4872083 ], + [ 7.7164262, 47.4872127 ], + [ 7.716429, 47.4872151 ], + [ 7.7164318, 47.4872175 ], + [ 7.7164337, 47.4872192 ], + [ 7.7164417, 47.4872263 ], + [ 7.7164515, 47.4872348 ], + [ 7.7164521, 47.4872354 ], + [ 7.716454, 47.487237 ], + [ 7.7164599, 47.4872423 ], + [ 7.7164678, 47.4872488 ], + [ 7.7164729, 47.4872531 ], + [ 7.7164757, 47.4872555 ], + [ 7.7164785, 47.4872579 ], + [ 7.71648, 47.4872592 ], + [ 7.7164908, 47.4872688 ], + [ 7.7164977, 47.4872748 ], + [ 7.7164988, 47.4872757 ], + [ 7.7165006, 47.4872773 ], + [ 7.7165066, 47.4872827 ], + [ 7.7165145, 47.4872892 ], + [ 7.7165197, 47.4872935 ], + [ 7.7165224, 47.4872959 ], + [ 7.7165251, 47.4872982 ], + [ 7.7165271, 47.4873 ], + [ 7.7165349, 47.4873069 ], + [ 7.7165418, 47.4873129 ], + [ 7.7165427, 47.4873137 ], + [ 7.7165441999999995, 47.487315100000004 ], + [ 7.7165532, 47.4873231 ], + [ 7.7165603, 47.4873288 ], + [ 7.716565, 47.4873328 ], + [ 7.7165679, 47.4873352 ], + [ 7.7165711, 47.4873379 ], + [ 7.716578, 47.4873439 ], + [ 7.7165865, 47.4873508 ], + [ 7.7165908, 47.4873545 ], + [ 7.7165937, 47.4873569 ], + [ 7.7165961, 47.487359 ], + [ 7.7166018, 47.4873638 ], + [ 7.7166101, 47.4873703 ], + [ 7.7166138, 47.4873731 ], + [ 7.7166167, 47.4873754 ], + [ 7.7166212, 47.4873791 ], + [ 7.7166241, 47.4873815 ], + [ 7.716628, 47.4873847 ], + [ 7.7166344, 47.4873902 ], + [ 7.7166434, 47.4873971 ], + [ 7.716647, 47.4874 ], + [ 7.71665, 47.4874023 ], + [ 7.7166546, 47.487406 ], + [ 7.7166574, 47.4874084 ], + [ 7.7166611, 47.4874115 ], + [ 7.7166674, 47.4874167 ], + [ 7.7166675, 47.4874169 ], + [ 7.7166749, 47.4874225 ], + [ 7.7166761, 47.4874234 ], + [ 7.7166778, 47.4874247 ], + [ 7.7166808, 47.487427 ], + [ 7.7166857, 47.487431 ], + [ 7.7166995, 47.4874421 ], + [ 7.7167011, 47.4874434 ], + [ 7.7167065, 47.4874478 ], + [ 7.7167159, 47.4874552 ], + [ 7.7167207, 47.4874591 ], + [ 7.7167398, 47.4874747 ], + [ 7.7167493, 47.4874822 ], + [ 7.716754, 47.487486 ], + [ 7.7167731, 47.4875016 ], + [ 7.7167826999999996, 47.4875092 ], + [ 7.7167873, 47.4875129 ], + [ 7.7168064, 47.4875285 ], + [ 7.7168159, 47.487536 ], + [ 7.7168206999999995, 47.4875399 ], + [ 7.7168274, 47.4875454 ], + [ 7.7168320999999995, 47.4875492 ], + [ 7.7168341, 47.4875507 ], + [ 7.7168376, 47.4875536 ], + [ 7.716845, 47.4875593 ], + [ 7.7168461, 47.4875601 ], + [ 7.7168484, 47.4875618 ], + [ 7.7168544, 47.4875665 ], + [ 7.7168608, 47.4875717 ], + [ 7.7168637, 47.487574 ], + [ 7.7168677, 47.4875774 ], + [ 7.7168744, 47.487583 ], + [ 7.7168833, 47.48759 ], + [ 7.716887, 47.4875928 ], + [ 7.7168899, 47.4875952 ], + [ 7.7168945, 47.4875988 ], + [ 7.7168973, 47.4876012 ], + [ 7.716901, 47.4876043 ], + [ 7.7169072, 47.4876096 ], + [ 7.7169073, 47.4876097 ], + [ 7.7169148, 47.4876154 ], + [ 7.7169159, 47.4876162 ], + [ 7.7169176, 47.4876175 ], + [ 7.7169206, 47.4876198 ], + [ 7.7169255, 47.4876237 ], + [ 7.7169392, 47.4876348 ], + [ 7.7169408, 47.487636 ], + [ 7.7169460999999995, 47.4876404 ], + [ 7.7169554, 47.4876477 ], + [ 7.7169599, 47.4876513 ], + [ 7.7169794, 47.4876672 ], + [ 7.7169861, 47.4876725 ], + [ 7.7169882, 47.4876741 ], + [ 7.7169910999999995, 47.4876765 ], + [ 7.7169954, 47.4876799 ], + [ 7.7169982, 47.4876823 ], + [ 7.7170019, 47.4876853 ], + [ 7.7170094, 47.4876918 ], + [ 7.7170124, 47.4876944 ], + [ 7.7170152, 47.4876968 ], + [ 7.7170155, 47.4876971 ], + [ 7.7170205, 47.4877015 ], + [ 7.7170231, 47.4877039 ], + [ 7.7170296, 47.48771 ], + [ 7.7170339, 47.4877142 ], + [ 7.7170378, 47.487718 ], + [ 7.7170385, 47.4877187 ], + [ 7.7170409, 47.4877212 ], + [ 7.7170457, 47.4877262 ], + [ 7.7170466, 47.4877272 ], + [ 7.7170515, 47.4877321 ], + [ 7.7170559, 47.4877367 ], + [ 7.7170583, 47.4877392 ], + [ 7.7170638, 47.4877452 ], + [ 7.7170715, 47.4877538 ], + [ 7.7170737, 47.4877563 ], + [ 7.7170775, 47.4877606 ], + [ 7.7170787, 47.487762 ], + [ 7.7170805, 47.4877642 ], + [ 7.7170827, 47.4877668 ], + [ 7.717089, 47.4877745 ], + [ 7.7170924, 47.487779 ], + [ 7.7170967, 47.4877846 ], + [ 7.7170998, 47.487789 ], + [ 7.7171017, 47.4877916 ], + [ 7.7171094, 47.4878034 ], + [ 7.7171098, 47.487804 ], + [ 7.7171114, 47.4878066 ], + [ 7.7171158, 47.4878142 ], + [ 7.7171218, 47.4878248 ], + [ 7.7171262, 47.4878331 ], + [ 7.7171275999999995, 47.4878358 ], + [ 7.7171291, 47.4878388 ], + [ 7.7171301, 47.4878409 ], + [ 7.7171313999999995, 47.4878434 ], + [ 7.7171330000000005, 47.4878465 ], + [ 7.7171354, 47.4878514 ], + [ 7.7171377, 47.4878562 ], + [ 7.7171389999999995, 47.4878588 ], + [ 7.7171397, 47.48786 ], + [ 7.7171425, 47.4878658 ], + [ 7.7171438, 47.4878685 ], + [ 7.7171452, 47.4878717 ], + [ 7.7171468999999995, 47.4878753 ], + [ 7.7171487, 47.4878793 ], + [ 7.7171535, 47.4878902 ], + [ 7.7171544999999995, 47.4878929 ], + [ 7.7171547, 47.4878932 ], + [ 7.7171579, 47.4879018 ], + [ 7.7171598, 47.4879072 ], + [ 7.7171609, 47.4879104 ], + [ 7.7171617999999995, 47.4879133 ], + [ 7.7171636, 47.4879188 ], + [ 7.7171642, 47.487921 ], + [ 7.7171651, 47.4879241 ], + [ 7.7171671, 47.4879316 ], + [ 7.7171701, 47.4879441 ], + [ 7.7171710000000004, 47.4879478 ], + [ 7.7171717, 47.487951 ], + [ 7.7171725, 47.487955 ], + [ 7.7171729, 47.4879567 ], + [ 7.7171753, 47.4879694 ], + [ 7.7171765, 47.4879764 ], + [ 7.7171769999999995, 47.4879798 ], + [ 7.717178, 47.4879882 ], + [ 7.7171784, 47.4879916 ], + [ 7.7171784, 47.4879919 ], + [ 7.717179, 47.4879984 ], + [ 7.7171792, 47.4880018 ], + [ 7.7171795, 47.4880076 ], + [ 7.7171796, 47.4880111 ], + [ 7.7171797, 47.4880164 ], + [ 7.7171797, 47.4880199 ], + [ 7.7171797, 47.4880255 ], + [ 7.7171796, 47.4880289 ], + [ 7.7171796, 47.4880298 ], + [ 7.7171794, 47.4880347 ], + [ 7.7171792, 47.4880381 ], + [ 7.7171787, 47.4880444 ], + [ 7.7171786, 47.4880451 ], + [ 7.7171783, 47.4880485 ], + [ 7.7171773, 47.488057 ], + [ 7.7171768, 47.4880603 ], + [ 7.7171756, 47.4880681 ], + [ 7.7171731999999995, 47.4880807 ], + [ 7.7171731, 47.4880813 ], + [ 7.7171718, 47.4880878 ], + [ 7.7171710000000004, 47.4880909 ], + [ 7.7171698, 47.4880962 ], + [ 7.7171676, 47.4881047 ], + [ 7.717167, 47.4881072 ], + [ 7.7171662, 47.48811 ], + [ 7.7171655, 47.4881126 ], + [ 7.7171629, 47.4881218 ], + [ 7.7171627, 47.4881225 ], + [ 7.7171617999999995, 47.4881255 ], + [ 7.7171608, 47.4881286 ], + [ 7.7171576, 47.4881382 ], + [ 7.7171565, 47.4881412 ], + [ 7.7171548, 47.4881459 ], + [ 7.7171518, 47.4881532 ], + [ 7.7171505, 47.4881561 ], + [ 7.717149, 47.4881595 ], + [ 7.7171453, 47.4881676 ], + [ 7.7171424, 47.4881737 ], + [ 7.7171422, 47.4881741 ], + [ 7.7171409, 47.4881767 ], + [ 7.7171357, 47.4881866 ], + [ 7.7171341, 47.4881894 ], + [ 7.7171316, 47.4881937 ], + [ 7.7171289, 47.4881984 ], + [ 7.7171282, 47.4881994 ], + [ 7.7171271, 47.4882013 ], + [ 7.7171265, 47.4882023 ], + [ 7.7171243, 47.4882059 ], + [ 7.7171222, 47.4882092 ], + [ 7.7171204, 47.4882123 ], + [ 7.7171201, 47.4882128 ], + [ 7.7171156, 47.4882198 ], + [ 7.717114, 47.4882223 ], + [ 7.7171077, 47.4882314 ], + [ 7.7171053, 47.4882347 ], + [ 7.7171033, 47.4882374 ], + [ 7.7170959, 47.4882468 ], + [ 7.7170938, 47.4882494 ], + [ 7.7170914, 47.4882523 ], + [ 7.7170895, 47.4882545 ], + [ 7.717088, 47.4882563 ], + [ 7.7170814, 47.4882637 ], + [ 7.717079, 47.4882662 ], + [ 7.7170738, 47.4882716 ], + [ 7.717073, 47.4882725 ], + [ 7.7170705, 47.488275 ], + [ 7.7170669, 47.4882786 ], + [ 7.7170651, 47.4882804 ], + [ 7.7170583, 47.4882869 ], + [ 7.7170556, 47.4882893 ], + [ 7.7170518, 47.4882927 ], + [ 7.7170486, 47.4882956 ], + [ 7.7170458, 47.488298 ], + [ 7.7170411, 47.4883019 ], + [ 7.7170383000000005, 47.4883043 ], + [ 7.717036, 47.4883062 ], + [ 7.7170312, 47.4883102 ], + [ 7.7170246, 47.4883156 ], + [ 7.7170214, 47.4883183 ], + [ 7.7170106, 47.488327 ], + [ 7.7170073, 47.4883296 ], + [ 7.7170042, 47.4883321 ], + [ 7.7170022, 47.4883336 ], + [ 7.7169991, 47.4883361 ], + [ 7.7169958, 47.4883385 ], + [ 7.7169917, 47.4883416 ], + [ 7.7169884, 47.488344 ], + [ 7.7169842, 47.4883471 ], + [ 7.7169774, 47.4883519 ], + [ 7.7169737, 47.4883545 ], + [ 7.7169668, 47.4883593 ], + [ 7.7169643, 47.4883611 ], + [ 7.7169573, 47.4883659 ], + [ 7.7169551, 47.4883674 ], + [ 7.716948, 47.4883721 ], + [ 7.7169452, 47.488374 ], + [ 7.7169381, 47.4883787 ], + [ 7.7169334, 47.4883817 ], + [ 7.7169263, 47.4883862 ], + [ 7.7169209, 47.4883896 ], + [ 7.7169173, 47.4883918 ], + [ 7.7169134, 47.4883942 ], + [ 7.7169104, 47.488396 ], + [ 7.7169023, 47.4884007 ], + [ 7.71689, 47.4884081 ], + [ 7.7168864, 47.4884102 ], + [ 7.7168808, 47.4884135 ], + [ 7.7168794, 47.4884143 ], + [ 7.7168677, 47.4884217 ], + [ 7.7168629, 47.4884246 ], + [ 7.7168561, 47.4884288 ], + [ 7.7168536, 47.4884303 ], + [ 7.7168475999999995, 47.4884338 ], + [ 7.7168262, 47.4884462 ], + [ 7.7168257, 47.4884464 ], + [ 7.7168144, 47.4884535 ], + [ 7.71681, 47.4884562 ], + [ 7.7168032, 47.4884604 ], + [ 7.7168007, 47.4884619 ], + [ 7.7167948, 47.4884653 ], + [ 7.7167735, 47.4884776 ], + [ 7.7167732, 47.4884778 ], + [ 7.7167618000000004, 47.488485 ], + [ 7.7167573, 47.4884878 ], + [ 7.7167505, 47.4884919 ], + [ 7.7167478, 47.4884935 ], + [ 7.7167419, 47.488497 ], + [ 7.7167256, 47.4885064 ], + [ 7.7167239, 47.4885073 ], + [ 7.7167177, 47.4885108 ], + [ 7.7167095, 47.4885158 ], + [ 7.7167084, 47.4885165 ], + [ 7.7167072, 47.4885172 ], + [ 7.7167037, 47.4885193 ], + [ 7.7166999, 47.4885215 ], + [ 7.7166964, 47.4885235 ], + [ 7.7166905, 47.4885269 ], + [ 7.716687, 47.4885288 ], + [ 7.7166808, 47.4885322 ], + [ 7.7166707, 47.4885376 ], + [ 7.7166596, 47.4885439 ], + [ 7.7166536, 47.4885472 ], + [ 7.7166501, 47.4885491 ], + [ 7.7166458, 47.4885514 ], + [ 7.7166366, 47.4885562 ], + [ 7.7166262, 47.4885621 ], + [ 7.7166205, 47.4885652 ], + [ 7.716617, 47.4885671 ], + [ 7.7166128, 47.4885694 ], + [ 7.7166037, 47.4885741 ], + [ 7.7165932999999995, 47.48858 ], + [ 7.7165876, 47.4885832 ], + [ 7.7165841, 47.4885851 ], + [ 7.7165799, 47.4885874 ], + [ 7.7165709, 47.4885921 ], + [ 7.7165606, 47.4885979 ], + [ 7.7165549, 47.4886011 ], + [ 7.7165514, 47.488603 ], + [ 7.7165475, 47.4886051 ], + [ 7.7165385, 47.4886099 ], + [ 7.716528, 47.4886158 ], + [ 7.7165218, 47.4886193 ], + [ 7.7165183, 47.4886212 ], + [ 7.7165134, 47.4886238 ], + [ 7.7164999, 47.4886309 ], + [ 7.716495, 47.4886335 ], + [ 7.7164917, 47.4886353 ], + [ 7.7164881, 47.4886372 ], + [ 7.7164864, 47.4886381 ], + [ 7.7164813, 47.4886408 ], + [ 7.7164777, 47.4886426 ], + [ 7.7164669, 47.4886478 ], + [ 7.7164632, 47.4886496 ], + [ 7.716458, 47.488652 ], + [ 7.7164518, 47.4886548 ], + [ 7.7164492, 47.4886559 ], + [ 7.7164451, 47.4886577 ], + [ 7.7164351, 47.488662 ], + [ 7.7164294, 47.4886644 ], + [ 7.716423, 47.488667 ], + [ 7.7164184, 47.4886689 ], + [ 7.7164146, 47.4886704 ], + [ 7.7164131, 47.488671 ], + [ 7.7164069, 47.4886733 ], + [ 7.716403, 47.4886748 ], + [ 7.7163905, 47.4886796 ], + [ 7.7163854, 47.4886816 ], + [ 7.7163816, 47.488683 ], + [ 7.7163743, 47.4886857 ], + [ 7.7163611, 47.4886903 ], + [ 7.7163552, 47.4886924 ], + [ 7.716352, 47.4886935 ], + [ 7.7163465, 47.4886954 ], + [ 7.7163424, 47.4886968 ], + [ 7.7163402, 47.4886976 ], + [ 7.7163349, 47.4886995 ], + [ 7.7163242, 47.4887037 ], + [ 7.7163183, 47.4887059 ], + [ 7.7163159, 47.4887068 ], + [ 7.7163049, 47.488711 ], + [ 7.7163007, 47.4887127 ], + [ 7.7162969, 47.4887141 ], + [ 7.7162891, 47.4887169 ], + [ 7.716276, 47.4887216 ], + [ 7.7162691, 47.488724 ], + [ 7.7162656, 47.4887252 ], + [ 7.71626, 47.4887272 ], + [ 7.7162544, 47.4887291 ], + [ 7.7162518, 47.48873 ], + [ 7.7162468, 47.4887318 ], + [ 7.7162428, 47.4887331 ], + [ 7.7162407, 47.4887339 ], + [ 7.7162356, 47.4887357 ], + [ 7.7162251, 47.4887398 ], + [ 7.7162189, 47.4887421 ], + [ 7.7162166, 47.488743 ], + [ 7.7162057, 47.4887472 ], + [ 7.7162015, 47.4887488 ], + [ 7.7161977, 47.4887502 ], + [ 7.7161901, 47.488753 ], + [ 7.716177, 47.4887577 ], + [ 7.7161707, 47.4887599 ], + [ 7.7161676, 47.488761 ], + [ 7.7161621, 47.4887629 ], + [ 7.7161575, 47.4887645 ], + [ 7.7161552, 47.4887653 ], + [ 7.7161497, 47.4887673 ], + [ 7.7161390999999995, 47.4887714 ], + [ 7.7161329, 47.4887738 ], + [ 7.7161305, 47.4887747 ], + [ 7.7161196, 47.4887789 ], + [ 7.7161154, 47.4887805 ], + [ 7.7161116, 47.4887819 ], + [ 7.7161037, 47.4887848 ], + [ 7.7160906, 47.4887895 ], + [ 7.7160837, 47.4887919 ], + [ 7.7160803, 47.4887931 ], + [ 7.7160746, 47.4887951 ], + [ 7.7160691, 47.488797 ], + [ 7.7160664, 47.4887979 ], + [ 7.7160614, 47.4887996 ], + [ 7.7160573, 47.4888011 ], + [ 7.7160553, 47.4888017 ], + [ 7.7160502, 47.4888036 ], + [ 7.7160397, 47.4888077 ], + [ 7.7160336, 47.48881 ], + [ 7.7160312, 47.4888109 ], + [ 7.7160202, 47.4888151 ], + [ 7.7160162, 47.4888167 ], + [ 7.7160124, 47.4888181 ], + [ 7.7160049, 47.4888209 ], + [ 7.7159918, 47.4888256 ], + [ 7.7159857, 47.4888277 ], + [ 7.7159826, 47.4888288 ], + [ 7.7159772, 47.4888307 ], + [ 7.7159727, 47.4888323 ], + [ 7.7159704, 47.488833 ], + [ 7.7159649, 47.488835 ], + [ 7.715954, 47.4888393 ], + [ 7.715947, 47.4888419 ], + [ 7.7159442, 47.488843 ], + [ 7.7159392, 47.4888449 ], + [ 7.7159356, 47.4888462 ], + [ 7.7159291, 47.4888487 ], + [ 7.7159226, 47.4888511 ], + [ 7.7159188, 47.4888524 ], + [ 7.7159099, 47.4888555 ], + [ 7.7159084, 47.488856 ], + [ 7.7159056, 47.488857 ], + [ 7.7159006, 47.4888586 ], + [ 7.715894, 47.4888607 ], + [ 7.7158861, 47.4888632 ], + [ 7.7158821, 47.4888644 ], + [ 7.7158728, 47.4888672 ], + [ 7.7158679, 47.4888685 ], + [ 7.7158641, 47.4888696 ], + [ 7.7158584999999995, 47.4888711 ], + [ 7.7158572, 47.4888714 ], + [ 7.7158555, 47.4888719 ], + [ 7.7158534, 47.4888725 ], + [ 7.7158529, 47.4888726 ], + [ 7.7158392, 47.4888765 ], + [ 7.7158249, 47.4888803 ], + [ 7.7158206, 47.4888814 ], + [ 7.7158061, 47.4888855 ], + [ 7.7157925, 47.4888891 ], + [ 7.7157883, 47.4888902 ], + [ 7.7157738, 47.4888943 ], + [ 7.7157734, 47.4888944 ], + [ 7.7157603, 47.488898 ], + [ 7.715756, 47.4888991 ], + [ 7.7157415, 47.4889032 ], + [ 7.7157403, 47.4889036 ], + [ 7.7157273, 47.4889071 ], + [ 7.7157227, 47.4889082 ], + [ 7.7157215, 47.4889086 ], + [ 7.7157209, 47.4889088 ], + [ 7.715719, 47.4889093 ], + [ 7.7157094, 47.488912 ], + [ 7.7157054, 47.4889131 ], + [ 7.7157013, 47.488914199999996 ], + [ 7.7156875, 47.4889177 ], + [ 7.7156836, 47.4889187 ], + [ 7.715679, 47.4889198 ], + [ 7.7156759, 47.4889205 ], + [ 7.7156704, 47.4889217 ], + [ 7.7156645, 47.4889231 ], + [ 7.715663, 47.4889235 ], + [ 7.7156495, 47.4889264 ], + [ 7.7156456, 47.4889272 ], + [ 7.7156374, 47.4889289 ], + [ 7.7156253, 47.4889312 ], + [ 7.7156223, 47.4889317 ], + [ 7.7156122, 47.4889336 ], + [ 7.7156119, 47.4889337 ], + [ 7.7156024, 47.4889353 ], + [ 7.7155933, 47.4889368 ], + [ 7.7155815, 47.4889389 ], + [ 7.7155748, 47.4889401 ], + [ 7.7155663, 47.4889415 ], + [ 7.7155556, 47.4889434 ], + [ 7.7155508, 47.4889442 ], + [ 7.7155428, 47.4889456 ], + [ 7.7155325, 47.4889474 ], + [ 7.7155290999999995, 47.4889481 ], + [ 7.7155207, 47.4889496 ], + [ 7.7155159, 47.4889505 ], + [ 7.715512, 47.4889512 ], + [ 7.7155001, 47.4889533 ], + [ 7.7154956, 47.488954 ], + [ 7.7154839, 47.4889558 ], + [ 7.7154793999999995, 47.4889564 ], + [ 7.7154776, 47.4889567 ], + [ 7.7154753, 47.488957 ], + [ 7.7154618, 47.4889588 ], + [ 7.7154559, 47.4889595 ], + [ 7.7154392, 47.4889616 ], + [ 7.7154314, 47.4889625 ], + [ 7.7154267999999995, 47.488963 ], + [ 7.7154191999999995, 47.4889638 ], + [ 7.715407, 47.4889649 ], + [ 7.7154045, 47.4889652 ], + [ 7.7153984, 47.4889658 ], + [ 7.7153972, 47.4889659 ], + [ 7.7153922, 47.4889663 ], + [ 7.7153848, 47.4889669 ], + [ 7.7153731, 47.4889678 ], + [ 7.7153666, 47.4889685 ], + [ 7.7153639, 47.4889687 ], + [ 7.7153621, 47.4889689 ], + [ 7.7153562, 47.4889694 ], + [ 7.715346, 47.4889704 ], + [ 7.7153408, 47.4889709 ], + [ 7.7153341, 47.4889715 ], + [ 7.7153231, 47.4889727 ], + [ 7.7153175, 47.4889732 ], + [ 7.7153163, 47.4889733 ], + [ 7.7153092, 47.488974 ], + [ 7.7153024, 47.4889746 ], + [ 7.7152989, 47.488975 ], + [ 7.7152975, 47.4889751 ], + [ 7.7152925, 47.4889755 ], + [ 7.7152855, 47.4889761 ], + [ 7.7152735, 47.488977 ], + [ 7.7152665, 47.4889777 ], + [ 7.7152644, 47.4889779 ], + [ 7.7152608, 47.4889782 ], + [ 7.7152542, 47.4889788 ], + [ 7.7152479, 47.4889794 ], + [ 7.7152458, 47.4889796 ], + [ 7.7152438, 47.4889797 ], + [ 7.7152388, 47.4889802 ], + [ 7.7152324, 47.4889807 ], + [ 7.7152211, 47.4889816 ], + [ 7.7152149, 47.4889822 ], + [ 7.7152114, 47.4889825 ], + [ 7.7152103, 47.4889826 ], + [ 7.7152044, 47.4889832 ], + [ 7.7151941, 47.4889842 ], + [ 7.7151889, 47.4889847 ], + [ 7.7151822, 47.4889853 ], + [ 7.7151712, 47.4889865 ], + [ 7.7151648999999995, 47.4889871 ], + [ 7.7151643, 47.4889871 ], + [ 7.7151572, 47.4889878 ], + [ 7.7151503, 47.4889885 ], + [ 7.7151464, 47.4889888 ], + [ 7.7151457, 47.4889889 ], + [ 7.7151406, 47.4889894 ], + [ 7.7151333, 47.48899 ], + [ 7.715122, 47.4889908 ], + [ 7.7151119, 47.4889918 ], + [ 7.7151057, 47.4889923 ], + [ 7.7150978, 47.4889929 ], + [ 7.7150899, 47.4889936 ], + [ 7.7150828, 47.4889942 ], + [ 7.7150777999999995, 47.4889946 ], + [ 7.7150687, 47.4889952 ], + [ 7.7150637, 47.4889954 ], + [ 7.7150574, 47.4889958 ], + [ 7.7150523, 47.488996 ], + [ 7.715048, 47.4889962 ], + [ 7.715035, 47.4889967 ], + [ 7.7150296, 47.4889971 ], + [ 7.7150224, 47.4889976 ], + [ 7.7150107, 47.4889984 ], + [ 7.7150047, 47.4889988 ], + [ 7.7149998, 47.4889992 ], + [ 7.7149947999999995, 47.4889995 ], + [ 7.7149868, 47.489 ], + [ 7.7149818, 47.4890003 ], + [ 7.7149778, 47.4890005 ], + [ 7.7149763, 47.4890005 ], + [ 7.7149713, 47.4890007 ], + [ 7.7149674, 47.4890009 ], + [ 7.7149539, 47.4890014 ], + [ 7.714948, 47.4890018 ], + [ 7.714938, 47.4890025 ], + [ 7.71492, 47.4890034 ], + [ 7.714916, 47.4890037 ], + [ 7.7149118, 47.489004 ], + [ 7.7149069, 47.4890043 ], + [ 7.7148994, 47.4890048 ], + [ 7.7148944, 47.489005 ], + [ 7.7148916, 47.4890052 ], + [ 7.7148893, 47.4890053 ], + [ 7.7148842, 47.4890055 ], + [ 7.7148813, 47.4890056 ], + [ 7.7148692, 47.4890061 ], + [ 7.7148651, 47.4890064 ], + [ 7.7148579, 47.4890069 ], + [ 7.7148443, 47.4890078 ], + [ 7.7148391, 47.4890082 ], + [ 7.7148342, 47.4890085 ], + [ 7.7148292, 47.4890089 ], + [ 7.7148213, 47.4890093 ], + [ 7.7148163, 47.4890096 ], + [ 7.714812, 47.4890098 ], + [ 7.7148111, 47.4890099 ], + [ 7.7148061, 47.4890101 ], + [ 7.7148027, 47.4890102 ], + [ 7.7147897, 47.4890107 ], + [ 7.7147839, 47.4890112 ], + [ 7.7147772, 47.4890116 ], + [ 7.7147652, 47.4890124 ], + [ 7.714759, 47.4890129 ], + [ 7.7147542, 47.4890132 ], + [ 7.7147493, 47.4890136 ], + [ 7.7147418, 47.489014 ], + [ 7.7147368, 47.4890143 ], + [ 7.7147324, 47.4890145 ], + [ 7.7147314, 47.4890146 ], + [ 7.7147264, 47.4890148 ], + [ 7.7147231, 47.4890149 ], + [ 7.7147101, 47.4890154 ], + [ 7.7147043, 47.4890159 ], + [ 7.7146976, 47.4890163 ], + [ 7.7146856, 47.4890171 ], + [ 7.7146794, 47.4890176 ], + [ 7.7146748, 47.4890179 ], + [ 7.7146698, 47.4890182 ], + [ 7.7146621, 47.4890187 ], + [ 7.7146571, 47.489019 ], + [ 7.7146528, 47.4890192 ], + [ 7.7146519, 47.4890192 ], + [ 7.7146469, 47.4890195 ], + [ 7.7146435, 47.4890196 ], + [ 7.7146306, 47.4890201 ], + [ 7.7146248, 47.4890206 ], + [ 7.714618, 47.489021 ], + [ 7.714606, 47.4890218 ], + [ 7.7145998, 47.4890223 ], + [ 7.714595, 47.4890226 ], + [ 7.7145901, 47.4890229 ], + [ 7.7145824, 47.4890234 ], + [ 7.7145774, 47.4890237 ], + [ 7.7145732, 47.4890239 ], + [ 7.7145721, 47.4890239 ], + [ 7.7145671, 47.4890242 ], + [ 7.7145634, 47.4890243 ], + [ 7.7145497, 47.4890248 ], + [ 7.7145448, 47.4890252 ], + [ 7.7145394, 47.4890255 ], + [ 7.7145325, 47.489026 ], + [ 7.7145148, 47.4890269 ], + [ 7.7145131, 47.489027 ], + [ 7.7145069, 47.4890275 ], + [ 7.7145019, 47.4890278 ], + [ 7.7144948, 47.4890282 ], + [ 7.7144898, 47.4890285 ], + [ 7.714487, 47.4890286 ], + [ 7.714485, 47.4890287 ], + [ 7.71448, 47.4890289 ], + [ 7.7144771, 47.489029 ], + [ 7.7144646, 47.4890295 ], + [ 7.7144588, 47.4890299 ], + [ 7.7144522, 47.4890304 ], + [ 7.7144403, 47.4890312 ], + [ 7.7144341, 47.4890316 ], + [ 7.7144294, 47.489032 ], + [ 7.7144245, 47.4890323 ], + [ 7.7144168, 47.4890328 ], + [ 7.7144118, 47.4890331 ], + [ 7.7144074, 47.4890333 ], + [ 7.7144065, 47.4890333 ], + [ 7.7144015, 47.4890335 ], + [ 7.7143981, 47.4890337 ], + [ 7.7143852, 47.4890342 ], + [ 7.7143793, 47.4890346 ], + [ 7.7143727, 47.4890351 ], + [ 7.7143608, 47.4890359 ], + [ 7.7143545, 47.4890363 ], + [ 7.7143499, 47.4890367 ], + [ 7.7143449, 47.489037 ], + [ 7.7143374, 47.4890375 ], + [ 7.7143324, 47.4890377 ], + [ 7.7143277999999995, 47.489038 ], + [ 7.7143273, 47.489038 ], + [ 7.7143222, 47.4890382 ], + [ 7.7143191, 47.4890384 ], + [ 7.7143063, 47.4890389 ], + [ 7.7143006, 47.4890393 ], + [ 7.7142935, 47.4890398 ], + [ 7.7142808, 47.4890406 ], + [ 7.714274, 47.4890411 ], + [ 7.7142678, 47.4890416 ], + [ 7.7142625, 47.4890419 ], + [ 7.7142531, 47.4890424 ], + [ 7.7142477, 47.4890427 ], + [ 7.7142475, 47.4890427 ], + [ 7.7142405, 47.489043 ], + [ 7.714235, 47.4890432 ], + [ 7.7142295, 47.4890433 ], + [ 7.7142241, 47.4890435 ], + [ 7.71422, 47.4890436 ], + [ 7.7142145, 47.4890437 ], + [ 7.7142104, 47.4890437 ], + [ 7.7141994, 47.4890438 ], + [ 7.7141956, 47.4890439 ], + [ 7.7141791, 47.4890439 ], + [ 7.7141776, 47.489044 ], + [ 7.714177, 47.489044 ], + [ 7.7141036, 47.4890441 ], + [ 7.7138582, 47.4890446 ], + [ 7.7138579, 47.4890446 ], + [ 7.7137842, 47.4890448 ], + [ 7.7137681, 47.4890448 ], + [ 7.7137592999999995, 47.4890449 ], + [ 7.7137511, 47.489045 ], + [ 7.7137488, 47.489045 ], + [ 7.7137475, 47.4890451 ], + [ 7.7137375, 47.4890456 ], + [ 7.7137321, 47.4890459 ], + [ 7.7137285, 47.489046 ], + [ 7.7137231, 47.4890463 ], + [ 7.7137174, 47.4890465 ], + [ 7.713712, 47.4890466 ], + [ 7.7137075, 47.4890468 ], + [ 7.713702, 47.4890469 ], + [ 7.7136986, 47.489047 ], + [ 7.7136931, 47.4890471 ], + [ 7.7136895, 47.4890471 ], + [ 7.7136785, 47.4890472 ], + [ 7.7136755, 47.4890473 ], + [ 7.7136645, 47.4890473 ], + [ 7.713663, 47.4890473 ], + [ 7.7136258, 47.4890475 ], + [ 7.7136181, 47.4890475 ], + [ 7.7136115, 47.4890476 ], + [ 7.7136113, 47.4890476 ], + [ 7.7136015, 47.4890482 ], + [ 7.713596, 47.4890485 ], + [ 7.7135925, 47.4890486 ], + [ 7.7135871, 47.4890488 ], + [ 7.7135814, 47.4890491 ], + [ 7.7135759, 47.4890492 ], + [ 7.7135715, 47.4890493 ], + [ 7.713566, 47.4890495 ], + [ 7.7135614, 47.4890496 ], + [ 7.7135503, 47.4890497 ], + [ 7.7135457, 47.4890498 ], + [ 7.7135289, 47.4890499 ], + [ 7.7135264, 47.4890499 ], + [ 7.7135096, 47.48905 ], + [ 7.7135089, 47.48905 ], + [ 7.7135086, 47.48905 ], + [ 7.7133569, 47.4890503 ], + [ 7.7133018, 47.489050399999996 ], + [ 7.7132867, 47.4890505 ], + [ 7.713274, 47.4890506 ], + [ 7.7132692, 47.4890507 ], + [ 7.7132591999999995, 47.4890513 ], + [ 7.7132544, 47.4890515 ], + [ 7.7132506, 47.4890517 ], + [ 7.7132452, 47.4890519 ], + [ 7.7132396, 47.4890521 ], + [ 7.7132341, 47.4890522 ], + [ 7.7132299, 47.4890524 ], + [ 7.7132244, 47.4890525 ], + [ 7.7132201, 47.4890526 ], + [ 7.7132091, 47.4890527 ], + [ 7.7132054, 47.4890528 ], + [ 7.7131742, 47.4890531 ], + [ 7.7131682999999995, 47.4890532 ], + [ 7.713166, 47.4890533 ], + [ 7.7131562, 47.4890538 ], + [ 7.7131514, 47.489054 ], + [ 7.7131473, 47.4890542 ], + [ 7.7131416999999995, 47.4890544 ], + [ 7.7131361, 47.4890546 ], + [ 7.7131305, 47.4890548 ], + [ 7.7131262, 47.4890549 ], + [ 7.7131205, 47.4890551 ], + [ 7.7131173, 47.4890551 ], + [ 7.7131115999999995, 47.4890552 ], + [ 7.7131082, 47.4890553 ], + [ 7.7130969, 47.4890554 ], + [ 7.713094, 47.4890554 ], + [ 7.7130826, 47.4890555 ], + [ 7.7130807, 47.4890555 ], + [ 7.7130636, 47.4890556 ], + [ 7.713063, 47.4890556 ], + [ 7.7130627, 47.4890556 ], + [ 7.7129829999999995, 47.4890557 ], + [ 7.7123671, 47.4890572 ], + [ 7.7123669, 47.4890572 ], + [ 7.7122796000000005, 47.4890573 ], + [ 7.7122588, 47.4890574 ], + [ 7.712246, 47.4890575 ], + [ 7.7122411, 47.4890576 ], + [ 7.7122306, 47.4890582 ], + [ 7.7122257, 47.4890585 ], + [ 7.7122218, 47.4890586 ], + [ 7.7122161, 47.4890589 ], + [ 7.7122104, 47.4890591 ], + [ 7.7122047, 47.4890592 ], + [ 7.7122005, 47.4890593 ], + [ 7.7121948, 47.4890595 ], + [ 7.7121903, 47.4890596 ], + [ 7.712179, 47.4890597 ], + [ 7.7121745, 47.4890598 ], + [ 7.712158, 47.4890599 ], + [ 7.7121555, 47.4890599 ], + [ 7.7121395, 47.48906 ], + [ 7.7121388, 47.48906 ], + [ 7.7121384, 47.48906 ], + [ 7.7120247, 47.4890602 ], + [ 7.712012, 47.4890602 ], + [ 7.7120017, 47.4890604 ], + [ 7.712, 47.4890604 ], + [ 7.7119921, 47.4890609 ], + [ 7.7119842, 47.4890613 ], + [ 7.7119822, 47.4890614 ], + [ 7.711977, 47.4890616 ], + [ 7.7119709, 47.4890618 ], + [ 7.7119657, 47.489062 ], + [ 7.7119609, 47.4890621 ], + [ 7.7119557, 47.4890623 ], + [ 7.7119507, 47.4890624 ], + [ 7.7119402, 47.4890626 ], + [ 7.7119355, 47.4890626 ], + [ 7.7119196, 47.4890627 ], + [ 7.7119169, 47.4890628 ], + [ 7.7118903, 47.4890628 ], + [ 7.7118896, 47.4890629 ], + [ 7.7118892, 47.4890629 ], + [ 7.7118573, 47.4890629 ], + [ 7.7118553, 47.4890629 ], + [ 7.7118433, 47.4890629 ], + [ 7.7118394, 47.4890629 ], + [ 7.711836, 47.4890629 ], + [ 7.7118255, 47.4890628 ], + [ 7.7118199, 47.4890627 ], + [ 7.7118094, 47.4890625 ], + [ 7.7118028, 47.4890624 ], + [ 7.7117976, 47.4890622 ], + [ 7.7117915, 47.489062 ], + [ 7.7117863, 47.4890618 ], + [ 7.7117843, 47.4890618 ], + [ 7.7117764, 47.4890614 ], + [ 7.7117683, 47.4890609 ], + [ 7.7117673, 47.4890609 ], + [ 7.7117603, 47.4890609 ], + [ 7.7117526, 47.4890608 ], + [ 7.7117381, 47.4890608 ], + [ 7.7116339, 47.4890612 ], + [ 7.7116334, 47.4890612 ], + [ 7.7116321, 47.4890612 ], + [ 7.7116164, 47.4890612 ], + [ 7.7116127, 47.4890612 ], + [ 7.7115971, 47.4890611 ], + [ 7.7115906, 47.489061 ], + [ 7.7115802, 47.4890608 ], + [ 7.7115737, 47.4890607 ], + [ 7.7115685, 47.4890605 ], + [ 7.7115624, 47.4890603 ], + [ 7.7115573, 47.4890601 ], + [ 7.7115554, 47.48906 ], + [ 7.7115473, 47.4890597 ], + [ 7.7115393999999995, 47.4890592 ], + [ 7.7115388, 47.4890592 ], + [ 7.7115324, 47.4890591 ], + [ 7.7115203, 47.4890591 ], + [ 7.7115061, 47.4890591 ], + [ 7.7114393, 47.4890593 ], + [ 7.711439, 47.4890593 ], + [ 7.7112734, 47.4890597 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr149", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Munzachberg", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Munzachberg", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Munzachberg", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Munzachberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7637447, 47.3737187 ], + [ 7.7638850999999995, 47.3729767 ], + [ 7.764328, 47.3725791 ], + [ 7.7646095, 47.3723799 ], + [ 7.7649121999999995, 47.3722084 ], + [ 7.7652275, 47.3720636 ], + [ 7.7653593, 47.3719671 ], + [ 7.7655462, 47.3718286 ], + [ 7.7659211, 47.3716267 ], + [ 7.765423, 47.3708697 ], + [ 7.7662116, 47.3706616 ], + [ 7.7662700000000005, 47.3706461 ], + [ 7.7661142, 47.3704802 ], + [ 7.7659761, 47.3700749 ], + [ 7.7654271999999995, 47.3696666 ], + [ 7.7653054, 47.3693562 ], + [ 7.7651275, 47.3689159 ], + [ 7.7658005, 47.36879 ], + [ 7.7662267, 47.3683543 ], + [ 7.7658539, 47.3681402 ], + [ 7.7656677, 47.3679051 ], + [ 7.7651144, 47.3680115 ], + [ 7.7646545, 47.3680966 ], + [ 7.7641383, 47.368193 ], + [ 7.7637059, 47.3682742 ], + [ 7.7632826, 47.3681523 ], + [ 7.7629275, 47.3681927 ], + [ 7.7626335, 47.3681775 ], + [ 7.7621732, 47.368072 ], + [ 7.7619555, 47.3680147 ], + [ 7.7617484, 47.3679976 ], + [ 7.7614491999999995, 47.3679328 ], + [ 7.7610892, 47.3678913 ], + [ 7.7609457, 47.3677666 ], + [ 7.7605305, 47.3676921 ], + [ 7.7600701999999995, 47.3676485 ], + [ 7.7597698, 47.3677521 ], + [ 7.7593492, 47.3678923 ], + [ 7.7590012999999995, 47.3680105 ], + [ 7.758705, 47.3681175 ], + [ 7.7583183, 47.3682538 ], + [ 7.7579993, 47.3683627 ], + [ 7.7577743, 47.368443 ], + [ 7.7579053, 47.3685763 ], + [ 7.7574969, 47.3688833 ], + [ 7.7572145, 47.3691065 ], + [ 7.7570403, 47.3692432 ], + [ 7.7576600000000004, 47.3694291 ], + [ 7.7572344, 47.3700211 ], + [ 7.756952, 47.3706294 ], + [ 7.756821, 47.3709731 ], + [ 7.7567394, 47.3713467 ], + [ 7.7566762, 47.3716365 ], + [ 7.7565459, 47.3716456 ], + [ 7.7564946, 47.3718696 ], + [ 7.7563706, 47.3720717 ], + [ 7.7564611, 47.372432 ], + [ 7.7565787, 47.3728765 ], + [ 7.7567984, 47.3732466 ], + [ 7.756659, 47.37346 ], + [ 7.756807, 47.3737953 ], + [ 7.7569111, 47.374038 ], + [ 7.7570647, 47.3742303 ], + [ 7.7570797, 47.3745531 ], + [ 7.7571706, 47.3748625 ], + [ 7.7569775, 47.3751981 ], + [ 7.7570135, 47.3755433 ], + [ 7.7576389, 47.3755674 ], + [ 7.7578713, 47.3755762 ], + [ 7.7586261, 47.3757195 ], + [ 7.7595668, 47.3757674 ], + [ 7.7606006, 47.3757145 ], + [ 7.7609715999999995, 47.3755009 ], + [ 7.7615691, 47.3754005 ], + [ 7.7621905, 47.3752462 ], + [ 7.7627483999999995, 47.3749481 ], + [ 7.7631755, 47.3748146 ], + [ 7.7639456, 47.3745708 ], + [ 7.7638625999999995, 47.3741765 ], + [ 7.7637447, 47.3737187 ] + ], + [ + [ 7.7618767, 47.372386 ], + [ 7.761851, 47.372397 ], + [ 7.7618392, 47.3723851 ], + [ 7.7618227, 47.3723694 ], + [ 7.7618056, 47.3723541 ], + [ 7.7617879, 47.3723391 ], + [ 7.7617695, 47.3723245 ], + [ 7.7617505, 47.3723103 ], + [ 7.7617309, 47.3722964 ], + [ 7.7617161, 47.3722855 ], + [ 7.7617015, 47.3722746 ], + [ 7.761687, 47.3722635 ], + [ 7.7616727, 47.3722524 ], + [ 7.7616610999999995, 47.37224 ], + [ 7.7616503, 47.3722272 ], + [ 7.7616404, 47.3722141 ], + [ 7.7616314, 47.3722008 ], + [ 7.7616232, 47.3721872 ], + [ 7.7616159, 47.3721733 ], + [ 7.7616096, 47.3721592 ], + [ 7.7616041, 47.372145 ], + [ 7.7615996, 47.3721306 ], + [ 7.761596, 47.3721161 ], + [ 7.7615934, 47.3721015 ], + [ 7.7615917, 47.3720868 ], + [ 7.7615862, 47.372053 ], + [ 7.7615815, 47.372019 ], + [ 7.7615777, 47.3719851 ], + [ 7.7615747, 47.371951 ], + [ 7.7615726, 47.371917 ], + [ 7.7615712, 47.3718829 ], + [ 7.7615708, 47.3718488 ], + [ 7.7615711, 47.3718148 ], + [ 7.7615725, 47.3717884 ], + [ 7.7615746, 47.371762 ], + [ 7.7615774, 47.3717357 ], + [ 7.7615809, 47.3717094 ], + [ 7.7615851, 47.3716831 ], + [ 7.76159, 47.3716569 ], + [ 7.7616277, 47.3714036 ], + [ 7.761629, 47.3713975 ], + [ 7.7616303, 47.3713914 ], + [ 7.7616314, 47.3713853 ], + [ 7.7616325, 47.3713791 ], + [ 7.7616352, 47.3713607 ], + [ 7.7616372, 47.3713422 ], + [ 7.7616384, 47.3713237 ], + [ 7.761639, 47.3713052 ], + [ 7.7616387, 47.3712867 ], + [ 7.7616378, 47.3712681 ], + [ 7.7616361, 47.3712496 ], + [ 7.761634, 47.3712362 ], + [ 7.7615832000000005, 47.371301 ], + [ 7.7614975, 47.3713674 ], + [ 7.7614921, 47.371371 ], + [ 7.7614875, 47.3713749 ], + [ 7.7613103, 47.371546 ], + [ 7.7613057, 47.37155 ], + [ 7.7613005, 47.3715536 ], + [ 7.7612948, 47.371557 ], + [ 7.7612886, 47.3715598 ], + [ 7.761282, 47.3715623 ], + [ 7.7612751, 47.3715643 ], + [ 7.7612679, 47.3715658 ], + [ 7.7612606, 47.3715668 ], + [ 7.7611782, 47.3715751 ], + [ 7.7610224, 47.3715643 ], + [ 7.7606475, 47.3714095 ], + [ 7.7604815, 47.371415999999996 ], + [ 7.7594892, 47.371348 ], + [ 7.7590785, 47.3712621 ], + [ 7.7589329, 47.3712212 ], + [ 7.7588126, 47.3713187 ], + [ 7.758655, 47.371367 ], + [ 7.7585768999999996, 47.3713572 ], + [ 7.7584140999999995, 47.3713907 ], + [ 7.7582572, 47.3714339 ], + [ 7.7582082, 47.3714486 ], + [ 7.7580324, 47.3714222 ], + [ 7.7579911, 47.3714114 ], + [ 7.7579495, 47.371401 ], + [ 7.7579077, 47.371391 ], + [ 7.7578657, 47.3713814 ], + [ 7.7578236, 47.3713722 ], + [ 7.7578023, 47.3713674 ], + [ 7.7577814, 47.3713621 ], + [ 7.7577607, 47.3713563 ], + [ 7.7577404, 47.37135 ], + [ 7.7577204, 47.3713432 ], + [ 7.7577008, 47.3713359 ], + [ 7.7576816, 47.3713282 ], + [ 7.7576628, 47.37132 ], + [ 7.7576444, 47.3713113 ], + [ 7.7575702, 47.3712749 ], + [ 7.7576263999999995, 47.3712314 ], + [ 7.7576529, 47.3712037 ], + [ 7.7577589, 47.3709844 ], + [ 7.7577728, 47.3709668 ], + [ 7.7577874, 47.3709495 ], + [ 7.7578025, 47.3709324 ], + [ 7.7578183, 47.3709155 ], + [ 7.7578347, 47.3708989 ], + [ 7.7578473, 47.3708867 ], + [ 7.7578603, 47.3708747 ], + [ 7.7578736, 47.3708628 ], + [ 7.7578872, 47.370851 ], + [ 7.7578996, 47.3708401 ], + [ 7.7579115, 47.3708288 ], + [ 7.7579228, 47.3708173 ], + [ 7.7579334, 47.3708055 ], + [ 7.7579435, 47.3707934 ], + [ 7.7579493, 47.3707855 ], + [ 7.7579544, 47.3707773 ], + [ 7.7579587, 47.3707689 ], + [ 7.7579623, 47.3707604 ], + [ 7.757965, 47.3707517 ], + [ 7.7579668999999996, 47.370743 ], + [ 7.757968, 47.3707341 ], + [ 7.7579742, 47.3706508 ], + [ 7.7579761, 47.3706313 ], + [ 7.7579789, 47.3706118 ], + [ 7.7579827, 47.3705924 ], + [ 7.7579873, 47.3705731 ], + [ 7.7579929, 47.3705539 ], + [ 7.7579994, 47.3705348 ], + [ 7.7580067, 47.3705159 ], + [ 7.7580149, 47.3704972 ], + [ 7.758024, 47.3704786 ], + [ 7.758034, 47.3704603 ], + [ 7.7580448, 47.3704422 ], + [ 7.7580565, 47.3704243 ], + [ 7.7580732999999995, 47.3704002 ], + [ 7.7580909, 47.3703765 ], + [ 7.7581092, 47.370353 ], + [ 7.7581282, 47.3703297 ], + [ 7.7581479, 47.3703067 ], + [ 7.7581683, 47.370284 ], + [ 7.7581895, 47.3702617 ], + [ 7.7582113, 47.3702396 ], + [ 7.7582338, 47.3702178 ], + [ 7.7582608, 47.3701926 ], + [ 7.7582885, 47.3701677 ], + [ 7.7583166, 47.3701432 ], + [ 7.7583454, 47.3701189 ], + [ 7.7583677, 47.3701006 ], + [ 7.7583907, 47.3700828 ], + [ 7.7584143, 47.3700653 ], + [ 7.7584385000000005, 47.3700482 ], + [ 7.7584633, 47.3700315 ], + [ 7.7584886, 47.3700152 ], + [ 7.7585145, 47.3699993 ], + [ 7.7585409, 47.3699838 ], + [ 7.7585589, 47.3699731 ], + [ 7.7585763, 47.3699621 ], + [ 7.7585931, 47.3699506 ], + [ 7.7586093, 47.3699387 ], + [ 7.7586249, 47.3699265 ], + [ 7.7586399, 47.3699139 ], + [ 7.7586543, 47.369901 ], + [ 7.758668, 47.3698877 ], + [ 7.7586809, 47.3698741 ], + [ 7.7586932, 47.3698603 ], + [ 7.7587048, 47.3698461 ], + [ 7.7587225, 47.369823 ], + [ 7.7587395, 47.3697996 ], + [ 7.7587557, 47.3697759 ], + [ 7.7587712, 47.369752 ], + [ 7.7587859, 47.3697279 ], + [ 7.7587998, 47.3697036 ], + [ 7.7588129, 47.3696791 ], + [ 7.7588252, 47.3696544 ], + [ 7.7588831, 47.3695342 ], + [ 7.759036, 47.3693761 ], + [ 7.7591139, 47.3693272 ], + [ 7.75912, 47.3693238 ], + [ 7.7591265, 47.3693208 ], + [ 7.7591334, 47.3693182 ], + [ 7.7591407, 47.3693161 ], + [ 7.7591483, 47.3693145 ], + [ 7.759156, 47.3693135 ], + [ 7.7591639, 47.3693129 ], + [ 7.7591718, 47.3693129 ], + [ 7.7591797, 47.3693134 ], + [ 7.7591874, 47.3693145 ], + [ 7.7592491, 47.3693251 ], + [ 7.7592552, 47.3693264 ], + [ 7.759261, 47.3693283 ], + [ 7.7592665, 47.3693306 ], + [ 7.7592714, 47.3693334 ], + [ 7.7592758, 47.3693366 ], + [ 7.7592796, 47.3693402 ], + [ 7.7592827, 47.369344 ], + [ 7.759285, 47.3693481 ], + [ 7.7593212, 47.3694257 ], + [ 7.7594504, 47.3694597 ], + [ 7.7596012, 47.3694806 ], + [ 7.7596373, 47.3694944 ], + [ 7.7596568, 47.3694844 ], + [ 7.7596757, 47.369474 ], + [ 7.7596939, 47.369463 ], + [ 7.7597114, 47.3694515 ], + [ 7.7597282, 47.3694395 ], + [ 7.7597442, 47.3694271 ], + [ 7.7597594999999995, 47.3694142 ], + [ 7.759774, 47.3694009 ], + [ 7.7597877, 47.3693872 ], + [ 7.7598005, 47.3693732 ], + [ 7.7598125, 47.3693587 ], + [ 7.7598234999999995, 47.369344 ], + [ 7.7598337, 47.369329 ], + [ 7.7598429, 47.3693137 ], + [ 7.7598513, 47.3692981 ], + [ 7.7598586, 47.3692824 ], + [ 7.759865, 47.3692664 ], + [ 7.7598704, 47.3692503 ], + [ 7.7598748, 47.369234 ], + [ 7.7598783000000005, 47.3692176 ], + [ 7.7600553, 47.3690728 ], + [ 7.760047, 47.3690046 ], + [ 7.7600837, 47.3689717 ], + [ 7.7601723, 47.3690552 ], + [ 7.760297, 47.3690576 ], + [ 7.760537, 47.3690739 ], + [ 7.7607401, 47.3690979 ], + [ 7.7611358, 47.3691641 ], + [ 7.7613765, 47.3691968 ], + [ 7.7617683, 47.3692237 ], + [ 7.7619758999999995, 47.36929 ], + [ 7.7621851, 47.369331 ], + [ 7.7623447, 47.3693229 ], + [ 7.7624727, 47.3692705 ], + [ 7.7625929, 47.3692934 ], + [ 7.7630719, 47.3694466 ], + [ 7.7632692, 47.3694849 ], + [ 7.763297, 47.3695005 ], + [ 7.763575, 47.3696549 ], + [ 7.7639621, 47.3697465 ], + [ 7.7641331000000005, 47.3698349 ], + [ 7.7641632, 47.3698499 ], + [ 7.7640597, 47.3700398 ], + [ 7.7640541, 47.3700525 ], + [ 7.7640479, 47.370065 ], + [ 7.7640408999999995, 47.3700773 ], + [ 7.7640331, 47.3700894 ], + [ 7.7640247, 47.3701012 ], + [ 7.7640156000000005, 47.3701129 ], + [ 7.7637797, 47.3704024 ], + [ 7.76321, 47.3708054 ], + [ 7.7627889, 47.3711059 ], + [ 7.7626298, 47.3712195 ], + [ 7.7625668999999995, 47.3712674 ], + [ 7.7625553, 47.3712768 ], + [ 7.7625442, 47.3712864 ], + [ 7.7625339, 47.3712964 ], + [ 7.7625242, 47.3713067 ], + [ 7.7625152, 47.3713173 ], + [ 7.7625069, 47.3713281 ], + [ 7.7624994, 47.3713392 ], + [ 7.7624926, 47.3713505 ], + [ 7.7624865, 47.371362 ], + [ 7.7624812, 47.3713737 ], + [ 7.7624768, 47.3713855 ], + [ 7.7623165, 47.3718519 ], + [ 7.7623058, 47.3718789 ], + [ 7.7622958, 47.3719061 ], + [ 7.7622867, 47.3719334 ], + [ 7.7622784, 47.3719609 ], + [ 7.762271, 47.3719884 ], + [ 7.7622645, 47.3720161 ], + [ 7.7622602, 47.3720354 ], + [ 7.7622561, 47.3720546 ], + [ 7.7622523999999995, 47.3720739 ], + [ 7.7622489, 47.3720933 ], + [ 7.7622449, 47.3721169 ], + [ 7.7622414, 47.3721406 ], + [ 7.7622382, 47.3721644 ], + [ 7.7622355, 47.3721881 ], + [ 7.7622333, 47.3722 ], + [ 7.7622313, 47.372212 ], + [ 7.7622297, 47.3722239 ], + [ 7.7622283, 47.3722359 ], + [ 7.7622273, 47.3722468 ], + [ 7.7622265, 47.3722577 ], + [ 7.7622259, 47.3722686 ], + [ 7.7622255, 47.3722795 ], + [ 7.7622267, 47.3723219 ], + [ 7.7621915999999995, 47.3723229 ], + [ 7.7621326, 47.3723309 ], + [ 7.7620838, 47.3723309 ], + [ 7.7618767, 47.372386 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns350", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Holznacht", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Holznacht", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Holznacht", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Holznacht", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6362271, 47.5166712 ], + [ 7.6363029000000004, 47.5166304 ], + [ 7.6364365, 47.5165583 ], + [ 7.6364889, 47.51653 ], + [ 7.6367656, 47.5163754 ], + [ 7.6371324, 47.5161661 ], + [ 7.637371, 47.5159746 ], + [ 7.6375604, 47.5158521 ], + [ 7.6377934, 47.5158595 ], + [ 7.6382588, 47.515485 ], + [ 7.6384051, 47.5153423 ], + [ 7.638389, 47.5153319 ], + [ 7.6384173, 47.5153118 ], + [ 7.6384287, 47.5153192 ], + [ 7.6384661, 47.5152828 ], + [ 7.6385114, 47.5152385 ], + [ 7.6385752, 47.5151763 ], + [ 7.6385936, 47.5151457 ], + [ 7.6385849, 47.5150361 ], + [ 7.6385762, 47.5149265 ], + [ 7.6385718, 47.5149156 ], + [ 7.6385594999999995, 47.5148946 ], + [ 7.6385442, 47.5148745 ], + [ 7.6385257, 47.5148557 ], + [ 7.6385045, 47.5148383 ], + [ 7.6384807, 47.5148224 ], + [ 7.6384676, 47.5148154 ], + [ 7.6384546, 47.5148084 ], + [ 7.6384264, 47.5147962 ], + [ 7.6383966, 47.5147861 ], + [ 7.6383654, 47.5147783 ], + [ 7.6383331, 47.5147726 ], + [ 7.6383166, 47.5147709 ], + [ 7.6383, 47.5147693 ], + [ 7.6382042, 47.514762 ], + [ 7.6380848, 47.514745 ], + [ 7.6379688, 47.5147199 ], + [ 7.637913, 47.5147032 ], + [ 7.6378572, 47.5146865 ], + [ 7.6377516, 47.5146455 ], + [ 7.6376526, 47.5145972 ], + [ 7.6375619, 47.5145421 ], + [ 7.63748, 47.5144809 ], + [ 7.6374725, 47.514472 ], + [ 7.6374679, 47.5144653 ], + [ 7.6373025, 47.514453 ], + [ 7.6371437, 47.5144964 ], + [ 7.6361482, 47.5156375 ], + [ 7.6360141, 47.5157912 ], + [ 7.6357603, 47.5159496 ], + [ 7.635464, 47.5161009 ], + [ 7.6351783, 47.5162594 ], + [ 7.6348926, 47.5164108 ], + [ 7.6350729, 47.5164176 ], + [ 7.6351894, 47.5164031 ], + [ 7.6353377, 47.5163669 ], + [ 7.6354649, 47.5163667 ], + [ 7.6355712, 47.516424 ], + [ 7.6356456999999995, 47.5164957 ], + [ 7.6362451, 47.5166825 ], + [ 7.6362271, 47.5166712 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr072", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Rothalle", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Rothalle", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Rothalle", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Rothalle", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.2061936, 46.2448747 ], + [ 6.2061509, 46.2449175 ], + [ 6.2061032, 46.2448946 ], + [ 6.2054973, 46.2444846 ], + [ 6.2040906, 46.2440939 ], + [ 6.2025755, 46.2441056 ], + [ 6.2025025, 46.2441272 ], + [ 6.2015455, 46.2439842 ], + [ 6.2000526, 46.2441733 ], + [ 6.1994714, 46.2444336 ], + [ 6.1984215, 46.2443535 ], + [ 6.1978864, 46.2444607 ], + [ 6.1977613, 46.2444589 ], + [ 6.1965798, 46.2447114 ], + [ 6.1965116, 46.2447348 ], + [ 6.1964955, 46.2447403 ], + [ 6.196429, 46.2447631 ], + [ 6.1960382, 46.2449695 ], + [ 6.1955099, 46.2452103 ], + [ 6.1953981, 46.2453075 ], + [ 6.1952471, 46.2453872 ], + [ 6.1950748, 46.2455885 ], + [ 6.1947468, 46.2458735 ], + [ 6.194604, 46.2461383 ], + [ 6.1944885, 46.2462733 ], + [ 6.1944589, 46.2464075 ], + [ 6.1943182, 46.2466684 ], + [ 6.1942888, 46.247152 ], + [ 6.1940305, 46.2478376 ], + [ 6.1941019, 46.248681 ], + [ 6.1941832, 46.2488252 ], + [ 6.1942056, 46.2490932 ], + [ 6.194648, 46.24988 ], + [ 6.1946999, 46.2499416 ], + [ 6.1947501, 46.2500011 ], + [ 6.1947756, 46.2500315 ], + [ 6.1957825, 46.2508193 ], + [ 6.1971474, 46.2512798 ], + [ 6.1986624, 46.251343 ], + [ 6.1988497, 46.2512981 ], + [ 6.1996192, 46.2512676 ], + [ 6.1996517, 46.2512588 ], + [ 6.1996399, 46.2512968 ], + [ 6.199051, 46.2518877 ], + [ 6.1987314, 46.2529171 ], + [ 6.1990039, 46.253953 ], + [ 6.1998272, 46.2548376 ], + [ 6.200378, 46.2551018 ], + [ 6.2010552, 46.2558295 ], + [ 6.2023039, 46.2564282 ], + [ 6.2025193, 46.2564604 ], + [ 6.202524, 46.2564627 ], + [ 6.2025319, 46.2564638 ], + [ 6.2017903, 46.2571925 ], + [ 6.2017872, 46.2571974 ], + [ 6.2017821, 46.2572053 ], + [ 6.2017624, 46.2572363 ], + [ 6.2017479, 46.2572591 ], + [ 6.2017128, 46.2572941 ], + [ 6.2013894, 46.2583225 ], + [ 6.2016576, 46.259358399999996 ], + [ 6.2017718, 46.2595601 ], + [ 6.201884, 46.2598759 ], + [ 6.2019349, 46.2599661 ], + [ 6.2020154, 46.2601085 ], + [ 6.2020159, 46.2601095 ], + [ 6.2020193, 46.2601155 ], + [ 6.2020778, 46.2602191 ], + [ 6.2025446, 46.2607246 ], + [ 6.2028944, 46.2611039 ], + [ 6.2028951, 46.2611043 ], + [ 6.2028956, 46.2611048 ], + [ 6.2036413, 46.2614655 ], + [ 6.2041383, 46.2617061 ], + [ 6.2041389, 46.2617062 ], + [ 6.2041394, 46.2617064 ], + [ 6.2041756, 46.261712 ], + [ 6.2042058, 46.2617264 ], + [ 6.2054165, 46.2619072 ], + [ 6.2052793, 46.2619246 ], + [ 6.2040039, 46.2624957 ], + [ 6.2031406, 46.2633619 ], + [ 6.202821, 46.2643913 ], + [ 6.2030937, 46.2654271 ], + [ 6.2039172, 46.2663117 ], + [ 6.2051661, 46.2669105 ], + [ 6.2066504, 46.2671321 ], + [ 6.208144, 46.2669429 ], + [ 6.2094195, 46.2663718 ], + [ 6.2102827, 46.2655055 ], + [ 6.2106022, 46.2644761 ], + [ 6.2103294, 46.2634403 ], + [ 6.2095058, 46.2625557 ], + [ 6.2082569, 46.261957 ], + [ 6.2070456, 46.2617762 ], + [ 6.2071647, 46.2617613 ], + [ 6.2073988, 46.2616977 ], + [ 6.2075013, 46.2616584 ], + [ 6.2075973, 46.2616438 ], + [ 6.2076433, 46.2616314 ], + [ 6.2076602, 46.2616239 ], + [ 6.2076846, 46.2616202 ], + [ 6.2077959, 46.26159 ], + [ 6.2078795, 46.2615579 ], + [ 6.207881, 46.2615575 ], + [ 6.2078947, 46.261552 ], + [ 6.2086992, 46.261243 ], + [ 6.2087367, 46.2612177 ], + [ 6.2089389, 46.2611374 ], + [ 6.2097575, 46.2605109 ], + [ 6.2102564, 46.2597394 ], + [ 6.2103244, 46.2592999 ], + [ 6.2104949, 46.2587546 ], + [ 6.2102254, 46.2577195 ], + [ 6.2101904, 46.2576578 ], + [ 6.2101467, 46.2575808 ], + [ 6.2101416, 46.2575718 ], + [ 6.2101351, 46.2575604 ], + [ 6.2100847, 46.2574714 ], + [ 6.2100552, 46.2574193 ], + [ 6.2094379, 46.2566907 ], + [ 6.208526, 46.2561303 ], + [ 6.207409, 46.255793 ], + [ 6.2069386, 46.2557615 ], + [ 6.2076397, 46.2550579 ], + [ 6.2077096, 46.2548327 ], + [ 6.2077123, 46.2548298 ], + [ 6.2080318, 46.2538005 ], + [ 6.2077591, 46.2527646 ], + [ 6.2071547, 46.2521152 ], + [ 6.2069385, 46.251294 ], + [ 6.2073025, 46.2509287 ], + [ 6.207622, 46.2498993 ], + [ 6.2074761, 46.249345 ], + [ 6.2075068, 46.249312 ], + [ 6.2088394, 46.2495111 ], + [ 6.2103325, 46.2493219 ], + [ 6.2116076, 46.2487507 ], + [ 6.2118968, 46.2484603 ], + [ 6.2125679, 46.248956 ], + [ 6.2136361, 46.249363 ], + [ 6.2142668, 46.249446 ], + [ 6.214281, 46.24945 ], + [ 6.2142962, 46.2494499 ], + [ 6.2148335, 46.2495207 ], + [ 6.2157364, 46.2494406 ], + [ 6.2157972, 46.2494403 ], + [ 6.2158215, 46.2494331 ], + [ 6.2160424, 46.2494135 ], + [ 6.2171442, 46.2490521 ], + [ 6.2171948, 46.2490281 ], + [ 6.2172873, 46.2489845 ], + [ 6.2173184, 46.2489698 ], + [ 6.2173185, 46.2489697 ], + [ 6.2173319, 46.2489634 ], + [ 6.2174905, 46.2488885 ], + [ 6.2179833, 46.2485668 ], + [ 6.2183776, 46.2483094 ], + [ 6.2187121, 46.2478859 ], + [ 6.218963, 46.2475683 ], + [ 6.2190988, 46.2470701 ], + [ 6.2191893, 46.246738 ], + [ 6.2191441, 46.246493 ], + [ 6.2194814, 46.2463004 ], + [ 6.2201362, 46.2455884 ], + [ 6.2204418, 46.2447709 ], + [ 6.2203682, 46.2439279 ], + [ 6.2199227, 46.243142 ], + [ 6.2199209, 46.2431399 ], + [ 6.2199208, 46.2431398 ], + [ 6.2199016, 46.2431172 ], + [ 6.2198423, 46.2430473 ], + [ 6.2198091, 46.2429893 ], + [ 6.2197679, 46.2429411 ], + [ 6.219714, 46.2428959 ], + [ 6.2197098, 46.242891 ], + [ 6.2196855, 46.2428722 ], + [ 6.2189912, 46.2422911 ], + [ 6.2188715, 46.2422386 ], + [ 6.2187007, 46.2421056 ], + [ 6.2184021, 46.2420055 ], + [ 6.2175013, 46.2416091 ], + [ 6.2163193, 46.2413995 ], + [ 6.215102, 46.2414543 ], + [ 6.213969, 46.2417679 ], + [ 6.2138951, 46.2417985 ], + [ 6.2127697, 46.2425015 ], + [ 6.2121166, 46.2434496 ], + [ 6.2120347, 46.2444988 ], + [ 6.2121110999999996, 46.2446496 ], + [ 6.212, 46.244761 ], + [ 6.2117206, 46.2449441 ], + [ 6.2117123, 46.2449546 ], + [ 6.2116937, 46.2449346 ], + [ 6.2104452, 46.244336 ], + [ 6.2089615, 46.2441144 ], + [ 6.2074686, 46.2443036 ], + [ 6.2061936, 46.2448747 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-2", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5920163, 46.7914444 ], + [ 7.5922398, 46.7911811 ], + [ 7.5926269, 46.790709 ], + [ 7.592817, 46.7904732 ], + [ 7.5931995, 46.7900016 ], + [ 7.5935491, 46.7895059 ], + [ 7.5937221, 46.7892634 ], + [ 7.5940641, 46.7887788 ], + [ 7.5943919, 46.7882877 ], + [ 7.5948646, 46.7875221 ], + [ 7.5951583, 46.7870282 ], + [ 7.5953067, 46.7867668 ], + [ 7.5955966, 46.7862888 ], + [ 7.5948277, 46.786172 ], + [ 7.5941352, 46.7860702 ], + [ 7.5934331, 46.7859641 ], + [ 7.592656, 46.7858481 ], + [ 7.5921175, 46.7857675 ], + [ 7.5916773, 46.785938 ], + [ 7.5904872, 46.7857467 ], + [ 7.5904346, 46.7857498 ], + [ 7.5903935, 46.7857523 ], + [ 7.588897, 46.7858426 ], + [ 7.5874045, 46.7858006 ], + [ 7.5873666, 46.7857996 ], + [ 7.5874152, 46.7859356 ], + [ 7.5874401, 46.7860699 ], + [ 7.5874547, 46.7862791 ], + [ 7.5874354, 46.7864074 ], + [ 7.587401, 46.786518 ], + [ 7.5873586, 46.7866925 ], + [ 7.5873405, 46.7867827 ], + [ 7.5871079, 46.7871467 ], + [ 7.587042, 46.7872171 ], + [ 7.5869734, 46.7873236 ], + [ 7.5868391, 46.7874287 ], + [ 7.5867541, 46.7874672 ], + [ 7.5865796, 46.7875244 ], + [ 7.5861852, 46.7876849 ], + [ 7.5860757, 46.7877135 ], + [ 7.5858459, 46.7877545 ], + [ 7.5857334, 46.7877846 ], + [ 7.5856801, 46.7877969 ], + [ 7.5855765, 46.7878207 ], + [ 7.5850923, 46.7879223 ], + [ 7.5849353, 46.7879427 ], + [ 7.5849273, 46.7879549 ], + [ 7.5849262, 46.7879963 ], + [ 7.5848618, 46.7880228 ], + [ 7.584825, 46.7880451 ], + [ 7.5847937, 46.7880702 ], + [ 7.5847715, 46.7881001 ], + [ 7.584757, 46.7881357 ], + [ 7.5846662, 46.7883914 ], + [ 7.5850248, 46.7887326 ], + [ 7.5847622, 46.7889301 ], + [ 7.5843626, 46.7893689 ], + [ 7.5843746, 46.7893228 ], + [ 7.5843015, 46.7893617 ], + [ 7.5841326, 46.7899806 ], + [ 7.5840056, 46.7904459 ], + [ 7.5839975, 46.790501 ], + [ 7.5839967, 46.7905577 ], + [ 7.5840312, 46.7908427 ], + [ 7.5840299, 46.7908959 ], + [ 7.5840198, 46.790949499999996 ], + [ 7.5838947999999995, 46.7914194 ], + [ 7.5838843, 46.7914505 ], + [ 7.583866, 46.7914794 ], + [ 7.5838417, 46.7915047 ], + [ 7.5838136, 46.7915233 ], + [ 7.5837676, 46.791542 ], + [ 7.5837437, 46.7916318 ], + [ 7.5838211, 46.7916235 ], + [ 7.5838876, 46.7916077 ], + [ 7.5839109, 46.7915942 ], + [ 7.5839403, 46.7915771 ], + [ 7.5839739999999995, 46.7915337 ], + [ 7.5840481, 46.7912495 ], + [ 7.5851516, 46.7914279 ], + [ 7.5864261, 46.7916351 ], + [ 7.5875734999999995, 46.7918217 ], + [ 7.588849, 46.7920295 ], + [ 7.5899761, 46.7922131 ], + [ 7.5911076, 46.7923986 ], + [ 7.5911951, 46.7923229 ], + [ 7.591641, 46.7918805 ], + [ 7.5918446, 46.7916466 ], + [ 7.5920163, 46.7914444 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VBS_16", + "country" : "CHE", + "name" : [ + { + "text" : "VBS_16 Uttigen", + "lang" : "de-CH" + }, + { + "text" : "VBS_16 Uttigen", + "lang" : "fr-CH" + }, + { + "text" : "VBS_16 Uttigen", + "lang" : "it-CH" + }, + { + "text" : "VBS_16 Uttigen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "regulationExemption" : "YES", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Eidgenössisches Departement für Verteidigung, Bevölkerungsschutz und Sport (VBS)", + "lang" : "de-CH" + }, + { + "text" : "Département fédéral de la défense, de la protection de la population et des sports (DDPS)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento federale della difesa, della protezione della popolazione e dello sport (DDPS)", + "lang" : "it-CH" + }, + { + "text" : "Federal Department of Defence, Civil Protection and Sport (DDPS)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Lageverfolgungszentrum der Armee LVZ A", + "lang" : "de-CH" + }, + { + "text" : "Centre de suivi de la situation de l’armée, CSS A", + "lang" : "fr-CH" + }, + { + "text" : "Centro di monitoraggio della situazione dell’esercito, Centro mon sit Es", + "lang" : "it-CH" + }, + { + "text" : "Joint Operation Center, JOC", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vtg.admin.ch/en/joint-operations-command", + "email" : "lvz.op@vtg.admin.ch", + "phone" : "+41 58 464 96 43", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.299099, 46.4695939 ], + [ 7.3042104, 46.3904434 ], + [ 7.3035431, 46.3901594 ], + [ 7.3005552, 46.3890322 ], + [ 7.2974864, 46.3880146 ], + [ 7.2943449, 46.3871095 ], + [ 7.2911394, 46.3863193 ], + [ 7.2878785, 46.3856462 ], + [ 7.2845713, 46.385092 ], + [ 7.2812268, 46.3846582 ], + [ 7.2778541, 46.3843461 ], + [ 7.2744624, 46.3841564 ], + [ 7.2722921, 46.3841139 ], + [ 7.270177, 46.3841514 ], + [ 7.2631565, 46.3845006 ], + [ 7.2620496, 46.3845244 ], + [ 7.260892, 46.384628 ], + [ 7.2575448, 46.3850518 ], + [ 7.2542342, 46.3855961 ], + [ 7.2509692, 46.3862595 ], + [ 7.2487322, 46.3868035 ], + [ 7.2470276, 46.3873529 ], + [ 7.2379165, 46.3903956 ], + [ 7.2344766, 46.391836 ], + [ 7.2328259, 46.3926166 ], + [ 7.2303585, 46.3939193 ], + [ 7.2274952, 46.3957739 ], + [ 7.2253659, 46.3969805 ], + [ 7.2250513, 46.3971859 ], + [ 7.2227017, 46.3988895 ], + [ 7.220484, 46.4006758 ], + [ 7.2184042999999996, 46.40254 ], + [ 7.2164684, 46.4044768 ], + [ 7.2146815, 46.4064811 ], + [ 7.2139588, 46.4073954 ], + [ 7.2120937, 46.4099572 ], + [ 7.2094706, 46.4151694 ], + [ 7.2132305, 46.4491806 ], + [ 7.2163377, 46.4531448 ], + [ 7.2197107, 46.4558501 ], + [ 7.2225641, 46.4583744 ], + [ 7.2293132, 46.4634246 ], + [ 7.2329507, 46.4654104 ], + [ 7.2364184, 46.4671856 ], + [ 7.2382527, 46.4679668 ], + [ 7.2389076, 46.468214 ], + [ 7.2425705, 46.4692057 ], + [ 7.2445797, 46.4701908 ], + [ 7.2474614, 46.4710213 ], + [ 7.2506713, 46.4718127 ], + [ 7.2527674, 46.4722455 ], + [ 7.2566191, 46.4728274 ], + [ 7.262556, 46.4736576 ], + [ 7.2633779, 46.4737336 ], + [ 7.2743242, 46.4735742 ], + [ 7.2813568, 46.4730445 ], + [ 7.286306, 46.4725116 ], + [ 7.2915174, 46.4712591 ], + [ 7.2963165, 46.4704653 ], + [ 7.2972708, 46.4701935 ], + [ 7.299099, 46.4695939 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSEA001", + "country" : "CHE", + "name" : [ + { + "text" : "LSEA Gstaad-Grund", + "lang" : "de-CH" + }, + { + "text" : "LSEA Gstaad-Grund", + "lang" : "fr-CH" + }, + { + "text" : "LSEA Gstaad-Grund", + "lang" : "it-CH" + }, + { + "text" : "LSEA Gstaad-Grund", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "startDateTime" : "2024-12-01T00:00:00+01:00", + "endDateTime" : "2025-04-30T00:00:00+02:00" + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swiss Helicopter Basis Gsteigwiler", + "lang" : "de-CH" + }, + { + "text" : "Swiss Helicopter Basis Gsteigwiler", + "lang" : "fr-CH" + }, + { + "text" : "Swiss Helicopter Basis Gsteigwiler", + "lang" : "it-CH" + }, + { + "text" : "Swiss Helicopter Basis Gsteigwiler", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Marc Schallenberg", + "lang" : "de-CH" + }, + { + "text" : "Marc Schallenberg", + "lang" : "fr-CH" + }, + { + "text" : "Marc Schallenberg", + "lang" : "it-CH" + }, + { + "text" : "Marc Schallenberg", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swisshelicopter.ch/en/about-us/helicopter-bases/gstaad-grund", + "email" : "gstaad@swisshelicopter.ch", + "phone" : "0041337551321 / 0041338289000", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.3272079, 47.3811538 ], + [ 8.3272051, 47.381185 ], + [ 8.3271572, 47.3812086 ], + [ 8.3270888, 47.381214 ], + [ 8.32706, 47.3811876 ], + [ 8.3270048, 47.381229 ], + [ 8.326994, 47.3812887 ], + [ 8.3269601, 47.3813148 ], + [ 8.3268754, 47.3813383 ], + [ 8.3267624, 47.3814063 ], + [ 8.3266367, 47.3815333 ], + [ 8.3265494, 47.381649 ], + [ 8.3265044, 47.3817787 ], + [ 8.3265387, 47.3818227 ], + [ 8.3265901, 47.3818387 ], + [ 8.3266392, 47.3818749 ], + [ 8.3266905, 47.3818887 ], + [ 8.3267692, 47.3818649 ], + [ 8.3268335, 47.3818138 ], + [ 8.3270374, 47.3815358 ], + [ 8.327145, 47.3814339 ], + [ 8.3272488, 47.3813533 ], + [ 8.327282199999999, 47.3813176 ], + [ 8.3273034, 47.3812322 ], + [ 8.3273613, 47.3811663 ], + [ 8.3274565, 47.3810976 ], + [ 8.3275181, 47.3810571 ], + [ 8.3275589, 47.3809735 ], + [ 8.3276216, 47.3808236 ], + [ 8.3276713, 47.3806909 ], + [ 8.3277394, 47.3805685 ], + [ 8.3278049, 47.3804133 ], + [ 8.3278098, 47.3803324 ], + [ 8.3277916, 47.3802776 ], + [ 8.3277296, 47.3802565 ], + [ 8.3276412, 47.380256 ], + [ 8.3276094, 47.3802027 ], + [ 8.3276014, 47.3801461 ], + [ 8.3275395, 47.3801387 ], + [ 8.3274638, 47.3801641 ], + [ 8.327454, 47.3802224 ], + [ 8.327484, 47.3803099 ], + [ 8.327476, 47.380393 ], + [ 8.327406, 47.3805481 ], + [ 8.3273437, 47.3806967 ], + [ 8.3273429, 47.3807294 ], + [ 8.3273629, 47.3807617 ], + [ 8.3273564, 47.3808001 ], + [ 8.3273059, 47.3808357 ], + [ 8.3272004, 47.380944 ], + [ 8.3271574, 47.3810213 ], + [ 8.3271554, 47.381076 ], + [ 8.3271702, 47.3811289 ], + [ 8.3272079, 47.3811538 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "KTAG505", + "country" : "CHE", + "name" : [ + { + "text" : "Alte Reuss", + "lang" : "de-CH" + }, + { + "text" : "Alte Reuss", + "lang" : "fr-CH" + }, + { + "text" : "Alte Reuss", + "lang" : "it-CH" + }, + { + "text" : "Alte Reuss", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "regulationExemption" : "NO", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "schedule" : [ + { + "day" : [ "ANY" ], + "startTime" : "00:00:00.00+01:00", + "endTime" : "00:00:00.00+01:00" + } + ] + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Aargau", + "lang" : "de-CH" + }, + { + "text" : "Canton d'Argovie", + "lang" : "fr-CH" + }, + { + "text" : "Canton Argovia", + "lang" : "it-CH" + }, + { + "text" : "Canton of Aargau", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Departement Bau, Verkehr und Umwelt (BVU)", + "lang" : "de-CH" + }, + { + "text" : "Département de la construction, des transports et de l'environnement (CTE)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento delle costruzioni, dei trasporti e dell'ambiente (CTA)", + "lang" : "it-CH" + }, + { + "text" : "Department of Civil Engineering,Transport and Environment (CTE)", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Sektion Gewässernutzung", + "lang" : "de-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "fr-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "it-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ag.ch/de/verwaltung/bvu/umwelt-natur-landschaft/hochwasserschutz-gewaesser/gewaessernutzung", + "email" : "alg@ag.ch", + "phone" : "0041 62 835 34 50", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7102803, 47.4463177 ], + [ 7.7103745, 47.4463432 ], + [ 7.7107229, 47.4463332 ], + [ 7.7110522, 47.4462387 ], + [ 7.7111418, 47.4461755 ], + [ 7.7109932, 47.4460256 ], + [ 7.7109318, 47.4459703 ], + [ 7.7108084, 47.44586 ], + [ 7.7103133, 47.4454951 ], + [ 7.7101154, 47.4453363 ], + [ 7.7099107, 47.4451673 ], + [ 7.709862, 47.4449367 ], + [ 7.7098211, 47.4447048 ], + [ 7.7100209, 47.4446849 ], + [ 7.7101815, 47.4446181 ], + [ 7.7104523, 47.4445394 ], + [ 7.7106786, 47.4444737 ], + [ 7.7108661, 47.4443282 ], + [ 7.7111389, 47.4441933 ], + [ 7.7111428, 47.4440008 ], + [ 7.7109044, 47.4440076 ], + [ 7.710801, 47.4440157 ], + [ 7.7106892, 47.4440266 ], + [ 7.7106083, 47.4440385 ], + [ 7.7105043, 47.4440441 ], + [ 7.7104435, 47.444044 ], + [ 7.7103764, 47.4440383 ], + [ 7.7103009, 47.4440255 ], + [ 7.7102455, 47.4440189 ], + [ 7.7101922, 47.4440166 ], + [ 7.7101752999999995, 47.444016 ], + [ 7.7101382, 47.4440257 ], + [ 7.7100959, 47.4440384 ], + [ 7.7100124999999995, 47.4440676 ], + [ 7.7099816, 47.4440766 ], + [ 7.7098997, 47.4441045 ], + [ 7.7097898, 47.4441441 ], + [ 7.7097309, 47.4441665 ], + [ 7.7096671, 47.444189 ], + [ 7.7096271, 47.4442025 ], + [ 7.7095934, 47.4442161 ], + [ 7.7095205, 47.4442489 ], + [ 7.7094605, 47.4442756 ], + [ 7.7094241, 47.4442932 ], + [ 7.7093765, 47.4443173 ], + [ 7.7093489, 47.4443325 ], + [ 7.7092988, 47.4443608 ], + [ 7.70921, 47.4444088 ], + [ 7.7091652, 47.4444269 ], + [ 7.7091365, 47.4444405 ], + [ 7.7091035, 47.4444588 ], + [ 7.7090528, 47.4444807 ], + [ 7.7090498, 47.4444815 ], + [ 7.7090472, 47.4444827 ], + [ 7.7090449, 47.4444842 ], + [ 7.7090431, 47.444486 ], + [ 7.7090421, 47.4444876 ], + [ 7.7090414, 47.4444892 ], + [ 7.7090411, 47.4444909 ], + [ 7.7090413, 47.4444927 ], + [ 7.7090414, 47.4445065 ], + [ 7.7090623, 47.4445188 ], + [ 7.7090927, 47.4445814 ], + [ 7.7092027, 47.4448083 ], + [ 7.7092483, 47.4452377 ], + [ 7.7092678, 47.4454281 ], + [ 7.7092925, 47.445472 ], + [ 7.7093772, 47.4456233 ], + [ 7.7096875, 47.4458225 ], + [ 7.7099103, 47.4459236 ], + [ 7.7101469, 47.4460917 ], + [ 7.7102803, 47.4463177 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns357", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Riedbach", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Riedbach", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Riedbach", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Riedbach", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4347222, 46.2780555 ], + [ 7.4672222, 46.2333333 ], + [ 7.3973924, 46.2011874 ], + [ 7.2391013, 46.1722385 ], + [ 7.2328631, 46.1714641 ], + [ 7.2265266, 46.1714041 ], + [ 7.2202603, 46.1720602 ], + [ 7.2142307, 46.1734149 ], + [ 7.2085978, 46.1754323 ], + [ 7.2035115, 46.1780588 ], + [ 7.199107, 46.1812245 ], + [ 7.1955015, 46.1848454 ], + [ 7.192791, 46.1888252 ], + [ 7.1910478, 46.193058 ], + [ 7.1903184, 46.1974314 ], + [ 7.1906225, 46.2018289 ], + [ 7.1919523, 46.2061335 ], + [ 7.1942725, 46.2102308 ], + [ 7.1975217, 46.2140116 ], + [ 7.2016135, 46.2173753 ], + [ 7.2064391, 46.2202322 ], + [ 7.2118701, 46.2225064 ], + [ 7.2177618, 46.2241373 ], + [ 7.3474372, 46.2516699 ], + [ 7.4347222, 46.2780555 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 120, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "CTR0013", + "country" : "CHE", + "name" : [ + { + "text" : "CTR SION", + "lang" : "de-CH" + }, + { + "text" : "CTR SION", + "lang" : "fr-CH" + }, + { + "text" : "CTR SION", + "lang" : "it-CH" + }, + { + "text" : "CTR SION", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only permitted from an altitude of 120 m above ground with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Skyguide Special Flight Office", + "lang" : "de-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "it-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "en-GB" + } + ], + "siteURL" : "https://skyguide.ch/services/special-flights", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7198233, 47.4733975 ], + [ 7.7196736999999995, 47.4735192 ], + [ 7.7193760000000005, 47.4737615 ], + [ 7.7193748, 47.4737625 ], + [ 7.7196972, 47.4740078 ], + [ 7.7199063, 47.474074 ], + [ 7.7199063, 47.4740748 ], + [ 7.7199061, 47.4740777 ], + [ 7.7199058, 47.4740814 ], + [ 7.7199057, 47.4740821 ], + [ 7.7199054, 47.4740851 ], + [ 7.7199048, 47.474089 ], + [ 7.7199043, 47.4740924 ], + [ 7.7199036, 47.474096 ], + [ 7.7199028, 47.4740997 ], + [ 7.7199019, 47.4741033 ], + [ 7.7199013999999995, 47.4741047 ], + [ 7.7199009, 47.4741061 ], + [ 7.7199003, 47.4741075 ], + [ 7.7198996, 47.4741088 ], + [ 7.7198988, 47.4741102 ], + [ 7.719898, 47.4741115 ], + [ 7.7198971, 47.4741128 ], + [ 7.7198962, 47.474114 ], + [ 7.7198951000000005, 47.4741153 ], + [ 7.7198941, 47.4741165 ], + [ 7.7198929, 47.4741177 ], + [ 7.7198917, 47.4741189 ], + [ 7.7198975, 47.4741216 ], + [ 7.7199131, 47.4741289 ], + [ 7.7199109, 47.4741311 ], + [ 7.7199042, 47.4741376 ], + [ 7.7199089, 47.4741393 ], + [ 7.7199325, 47.474148 ], + [ 7.7200239, 47.4741817 ], + [ 7.7200928, 47.4742035 ], + [ 7.720103, 47.4742107 ], + [ 7.7201132, 47.4742179 ], + [ 7.7201235, 47.474223 ], + [ 7.7201321, 47.4742307 ], + [ 7.7201417, 47.4742307 ], + [ 7.7201467, 47.4742306 ], + [ 7.72016, 47.4742363 ], + [ 7.7202061, 47.4742812 ], + [ 7.7202912999999995, 47.4743703 ], + [ 7.720343, 47.4744173 ], + [ 7.7204295, 47.4744594 ], + [ 7.7204452, 47.4744891 ], + [ 7.7204983, 47.4745205 ], + [ 7.7205423, 47.4745421 ], + [ 7.7205879, 47.4745592 ], + [ 7.7206613, 47.4745704 ], + [ 7.7206667, 47.4745723 ], + [ 7.7206722, 47.4745742 ], + [ 7.7207278, 47.474607 ], + [ 7.7207358, 47.47461 ], + [ 7.7207747, 47.47463 ], + [ 7.7207864, 47.4746415 ], + [ 7.7208277, 47.4746658 ], + [ 7.7208844, 47.4747255 ], + [ 7.7209441, 47.4747799 ], + [ 7.7210066, 47.4748083 ], + [ 7.7210349, 47.4748117 ], + [ 7.7211012, 47.4748116 ], + [ 7.7211193, 47.4748116 ], + [ 7.7211648, 47.4748059 ], + [ 7.7211663, 47.4748057 ], + [ 7.7212882, 47.4747969 ], + [ 7.7216065, 47.4747883 ], + [ 7.7219137, 47.4748054 ], + [ 7.7221419000000004, 47.4748048 ], + [ 7.7222472, 47.4748105 ], + [ 7.7223258999999995, 47.4747687 ], + [ 7.7223863, 47.4746205 ], + [ 7.722448, 47.4746253 ], + [ 7.7225789, 47.474646 ], + [ 7.7227023, 47.4746749 ], + [ 7.7227718, 47.4746874 ], + [ 7.7228259, 47.4746996 ], + [ 7.7228351, 47.4747017 ], + [ 7.7228443, 47.4747038 ], + [ 7.7228788, 47.4747115 ], + [ 7.7229089, 47.4747262 ], + [ 7.7229388, 47.4747407 ], + [ 7.7229558, 47.474749 ], + [ 7.7229837, 47.474773 ], + [ 7.7229905, 47.4747788 ], + [ 7.7229973, 47.4747847 ], + [ 7.7229984, 47.4747856 ], + [ 7.7229986, 47.4747884 ], + [ 7.7230056, 47.4748092 ], + [ 7.7230215, 47.4747859 ], + [ 7.7230694, 47.4747153 ], + [ 7.7231911, 47.4747759 ], + [ 7.7234493, 47.474885 ], + [ 7.723457, 47.4748866 ], + [ 7.7234648, 47.4748881 ], + [ 7.7236361, 47.4748469 ], + [ 7.7237319, 47.4749697 ], + [ 7.7239706, 47.47509 ], + [ 7.7240179, 47.4750056 ], + [ 7.724023, 47.4749964 ], + [ 7.7241696, 47.4747348 ], + [ 7.7241710999999995, 47.4747321 ], + [ 7.7241792, 47.4747174 ], + [ 7.7241873, 47.4747026 ], + [ 7.724021, 47.4746576 ], + [ 7.7236525, 47.4745521 ], + [ 7.723433, 47.4744888 ], + [ 7.723216, 47.4744216 ], + [ 7.7230016, 47.4743507 ], + [ 7.7228175, 47.4742893 ], + [ 7.7226313, 47.4742308 ], + [ 7.7224431, 47.4741754 ], + [ 7.722156, 47.4740825 ], + [ 7.7218047, 47.473965 ], + [ 7.7214573, 47.4738422 ], + [ 7.721114, 47.4737144 ], + [ 7.7209885, 47.4736629 ], + [ 7.7208663, 47.4736078 ], + [ 7.7207476, 47.4735493 ], + [ 7.7206797, 47.473514 ], + [ 7.7206114, 47.4734791 ], + [ 7.7205425, 47.4734446 ], + [ 7.7202561, 47.4732967 ], + [ 7.7202058000000005, 47.4732709 ], + [ 7.7200668, 47.4731994 ], + [ 7.7198575, 47.4733697 ], + [ 7.7198233, 47.4733975 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr148", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Gstöck", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Gstöck", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Gstöck", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Gstöck", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.0330772, 46.1571482 ], + [ 6.0330918, 46.1571504 ], + [ 6.033295, 46.1579336 ], + [ 6.0336465, 46.1583138 ], + [ 6.0334092, 46.1590718 ], + [ 6.0336781, 46.160108 ], + [ 6.0344972, 46.1609939 ], + [ 6.0357419, 46.1615945 ], + [ 6.0358836, 46.1616159 ], + [ 6.0362926, 46.1620582 ], + [ 6.0375373, 46.1626587 ], + [ 6.0390181, 46.1628826 ], + [ 6.0405094, 46.1626956 ], + [ 6.0417842, 46.1621263 ], + [ 6.0426484, 46.1612614 ], + [ 6.0429705, 46.1602325 ], + [ 6.0427014, 46.1591962 ], + [ 6.0418821, 46.1583104 ], + [ 6.0412541, 46.1580075 ], + [ 6.0411905, 46.1577623 ], + [ 6.040747, 46.1572828 ], + [ 6.0408505, 46.1569522 ], + [ 6.040809, 46.1567923 ], + [ 6.0414684, 46.1564979 ], + [ 6.0423325, 46.1556329 ], + [ 6.0426545, 46.154604 ], + [ 6.0423854, 46.1535678 ], + [ 6.0415663, 46.152682 ], + [ 6.0403217, 46.1520814 ], + [ 6.0388413, 46.1518576 ], + [ 6.0373502, 46.1520445 ], + [ 6.0365744, 46.152391 ], + [ 6.0361775, 46.1521995 ], + [ 6.034697, 46.1519756 ], + [ 6.033206, 46.1521625 ], + [ 6.0321931, 46.1526148 ], + [ 6.0316205, 46.1523384 ], + [ 6.0301401, 46.1521145 ], + [ 6.0299534, 46.1521379 ], + [ 6.0301015, 46.151713 ], + [ 6.0300086, 46.1508709 ], + [ 6.0295457, 46.15009 ], + [ 6.0295445, 46.1500887 ], + [ 6.0294984, 46.1500361 ], + [ 6.0294975, 46.1500351 ], + [ 6.02871, 46.1493916 ], + [ 6.0276748, 46.1489488 ], + [ 6.0264934, 46.1487502 ], + [ 6.0252815, 46.1488152 ], + [ 6.0241578, 46.1491374 ], + [ 6.0239984, 46.1492051 ], + [ 6.0228891, 46.1499145 ], + [ 6.0222521, 46.1508641 ], + [ 6.0221834, 46.1519108 ], + [ 6.0226935, 46.1528967 ], + [ 6.0227416, 46.1529523 ], + [ 6.023526, 46.1536018 ], + [ 6.0245618, 46.1540501 ], + [ 6.0257466, 46.1542528 ], + [ 6.0263578, 46.1542212 ], + [ 6.0261877, 46.1547641 ], + [ 6.0264564, 46.1558004 ], + [ 6.0272754, 46.1566863 ], + [ 6.0285199, 46.157287 ], + [ 6.0300005, 46.1575109 ], + [ 6.0314917, 46.1573241 ], + [ 6.0325046, 46.1568718 ], + [ 6.0330772, 46.1571482 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-9", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.4383595, 46.8534141 ], + [ 8.4372361, 46.8531293 ], + [ 8.4367074, 46.8529832 ], + [ 8.4364794, 46.8524222 ], + [ 8.4357925, 46.8518756 ], + [ 8.4354065, 46.851769 ], + [ 8.4349676, 46.8517766 ], + [ 8.4342687, 46.8515678 ], + [ 8.4330635, 46.8510928 ], + [ 8.4328631, 46.850833 ], + [ 8.4325269, 46.850724 ], + [ 8.4322079, 46.8507701 ], + [ 8.4311867, 46.8506371 ], + [ 8.430977, 46.850569 ], + [ 8.4306378, 46.8505581 ], + [ 8.4304611, 46.8504169 ], + [ 8.4299983, 46.850226 ], + [ 8.4276257, 46.8506062 ], + [ 8.4272473, 46.8507825 ], + [ 8.4265806, 46.8512742 ], + [ 8.4254172, 46.851381 ], + [ 8.4251478, 46.8513631 ], + [ 8.4237522, 46.8516095 ], + [ 8.4234194, 46.8515073 ], + [ 8.4230208, 46.8516425 ], + [ 8.4225488, 46.851698 ], + [ 8.4222332, 46.851783 ], + [ 8.4218907, 46.8517698 ], + [ 8.4212327, 46.851878 ], + [ 8.420827, 46.8518558 ], + [ 8.420189, 46.8519823 ], + [ 8.4200632, 46.8521468 ], + [ 8.4194932, 46.8522321 ], + [ 8.4160622, 46.8514257 ], + [ 8.4153465, 46.8509963 ], + [ 8.4137403, 46.8505997 ], + [ 8.4126756, 46.8511196 ], + [ 8.411613299999999, 46.8517735 ], + [ 8.4105731, 46.8523015 ], + [ 8.4096446, 46.8529291 ], + [ 8.4083883, 46.8536599 ], + [ 8.4072305, 46.8544401 ], + [ 8.4062422, 46.8551435 ], + [ 8.4062224, 46.8551517 ], + [ 8.4061498, 46.8552071 ], + [ 8.4060289, 46.8552673 ], + [ 8.4060085, 46.8552978 ], + [ 8.4059231, 46.8553475 ], + [ 8.4058209, 46.8553946 ], + [ 8.4057152, 46.8554762 ], + [ 8.4055671, 46.8555467 ], + [ 8.4054294, 46.855607 ], + [ 8.4052348, 46.8556577 ], + [ 8.4051389, 46.8557062 ], + [ 8.4050199, 46.8557519 ], + [ 8.4049287, 46.8558291 ], + [ 8.4049138, 46.8559317 ], + [ 8.4049426, 46.8560136 ], + [ 8.4050255, 46.8560663 ], + [ 8.4051529, 46.856133 ], + [ 8.4052744, 46.8562229 ], + [ 8.4053115, 46.8563005 ], + [ 8.4053297, 46.8563739 ], + [ 8.4053332, 46.8564561 ], + [ 8.4053184, 46.8565659 ], + [ 8.4053174, 46.856625 ], + [ 8.4053168, 46.856713 ], + [ 8.4052912, 46.8568056 ], + [ 8.4051856, 46.8569002 ], + [ 8.4051174, 46.8569672 ], + [ 8.4050301, 46.8570242 ], + [ 8.4049198, 46.8570871 ], + [ 8.404872, 46.8571193 ], + [ 8.4048056, 46.8571674 ], + [ 8.4047308, 46.8572214 ], + [ 8.4046369, 46.8572583 ], + [ 8.4045993, 46.8572774 ], + [ 8.4044596, 46.8573435 ], + [ 8.4043683, 46.8574077 ], + [ 8.4042985, 46.857505 ], + [ 8.4042366, 46.8575675 ], + [ 8.404139, 46.8576405 ], + [ 8.4040625, 46.8577118 ], + [ 8.4039792, 46.8577884 ], + [ 8.4039521, 46.8578486 ], + [ 8.4038789, 46.8579042 ], + [ 8.4038842, 46.8579561 ], + [ 8.403764, 46.8580355 ], + [ 8.4037381, 46.8580825 ], + [ 8.4037653, 46.8581067 ], + [ 8.4038283, 46.8581449 ], + [ 8.4038825, 46.8581923 ], + [ 8.4039283, 46.8582621 ], + [ 8.4038905, 46.8583062 ], + [ 8.4037929, 46.8583713 ], + [ 8.4037492, 46.8584166 ], + [ 8.4036955, 46.8584889 ], + [ 8.4036493, 46.8585413 ], + [ 8.4035712, 46.8585671 ], + [ 8.4035273, 46.8586016 ], + [ 8.4034624, 46.8586345 ], + [ 8.4033476, 46.8586553 ], + [ 8.4032694, 46.8586757 ], + [ 8.4032523, 46.8587441 ], + [ 8.4032348, 46.8588277 ], + [ 8.4031132, 46.8588449 ], + [ 8.4030478, 46.8589779 ], + [ 8.4029828, 46.8591283 ], + [ 8.4029137, 46.8592392 ], + [ 8.40282, 46.8593074 ], + [ 8.4025764, 46.8594187 ], + [ 8.4025066, 46.8594218 ], + [ 8.4024533, 46.8594456 ], + [ 8.4023245, 46.8594516 ], + [ 8.4023233, 46.8594885 ], + [ 8.4023421, 46.8595387 ], + [ 8.4022781, 46.859565 ], + [ 8.4021712, 46.8595954 ], + [ 8.4021957, 46.8596616 ], + [ 8.4020831, 46.859676 ], + [ 8.4021007, 46.8597582 ], + [ 8.4020795, 46.859778 ], + [ 8.4019094, 46.8598939 ], + [ 8.4018497, 46.8599807 ], + [ 8.4016209, 46.8600423 ], + [ 8.4015636, 46.860087 ], + [ 8.4013556, 46.8600179 ], + [ 8.4011707, 46.8600108 ], + [ 8.4009604, 46.8599896 ], + [ 8.4008854, 46.8600247 ], + [ 8.4009047, 46.8601657 ], + [ 8.4009644, 46.8602171 ], + [ 8.4009538, 46.8603266 ], + [ 8.4009847, 46.8604127 ], + [ 8.4010413, 46.8605217 ], + [ 8.4008699, 46.8605635 ], + [ 8.4008204, 46.8606129 ], + [ 8.4004993, 46.8607423 ], + [ 8.4004897, 46.8609094 ], + [ 8.4003377, 46.8610979 ], + [ 8.4001398, 46.8613012 ], + [ 8.4001583, 46.8613932 ], + [ 8.4001002, 46.8614311 ], + [ 8.4000942, 46.8615694 ], + [ 8.4000528, 46.8615986 ], + [ 8.4000531, 46.8616187 ], + [ 8.399995, 46.8616538 ], + [ 8.3999365, 46.8619077 ], + [ 8.3999102, 46.8620808 ], + [ 8.3998071, 46.8621853 ], + [ 8.3998209, 46.8622486 ], + [ 8.3989776, 46.8639472 ], + [ 8.3989705, 46.8639744 ], + [ 8.3986165, 46.8646752 ], + [ 8.3985981, 46.8647118 ], + [ 8.3984709, 46.864894 ], + [ 8.3984336, 46.8649474 ], + [ 8.3983084, 46.865127 ], + [ 8.3982157, 46.8652598 ], + [ 8.3974478, 46.8663602 ], + [ 8.3972574, 46.8666331 ], + [ 8.3972355, 46.8666636 ], + [ 8.3972506, 46.8667051 ], + [ 8.3972259, 46.8667408 ], + [ 8.3972389, 46.8667858 ], + [ 8.397259, 46.8668128 ], + [ 8.3972185, 46.8668516 ], + [ 8.397225, 46.8668989 ], + [ 8.3972307, 46.8669453 ], + [ 8.3972625, 46.8669835 ], + [ 8.3971861, 46.8670389 ], + [ 8.3971941, 46.8670609 ], + [ 8.3971445, 46.8671208 ], + [ 8.3971198, 46.8671532 ], + [ 8.3970801, 46.8672133 ], + [ 8.3970417, 46.8672594 ], + [ 8.3970395, 46.8673029 ], + [ 8.3970255, 46.867375 ], + [ 8.3969728, 46.8673957 ], + [ 8.3969413, 46.8674403 ], + [ 8.3969713, 46.8674763 ], + [ 8.3969351, 46.8675288 ], + [ 8.3969469, 46.8675655 ], + [ 8.3969089, 46.8676099 ], + [ 8.3968705, 46.867637 ], + [ 8.3968462, 46.8676464 ], + [ 8.3968367, 46.8676896 ], + [ 8.3968124, 46.8677198 ], + [ 8.396776299999999, 46.8677622 ], + [ 8.3967091, 46.8678202 ], + [ 8.396641, 46.8678839 ], + [ 8.3966197, 46.867913 ], + [ 8.396579299999999, 46.867973 ], + [ 8.3965653, 46.8680111 ], + [ 8.396556499999999, 46.8680667 ], + [ 8.3965491, 46.8681217 ], + [ 8.3965433, 46.868171 ], + [ 8.396561, 46.8682404 ], + [ 8.3965484, 46.868271 ], + [ 8.3965322, 46.8683125 ], + [ 8.396542, 46.8683471 ], + [ 8.3965253, 46.8683959 ], + [ 8.3965022, 46.8684322 ], + [ 8.3965002, 46.8684849 ], + [ 8.3964634, 46.8685332 ], + [ 8.3964685, 46.8686158 ], + [ 8.3964782, 46.8686444 ], + [ 8.3964776, 46.8686566 ], + [ 8.3964697, 46.8687244 ], + [ 8.3964474, 46.868777 ], + [ 8.396463, 46.8688308 ], + [ 8.3964391, 46.8688786 ], + [ 8.3964316, 46.86898 ], + [ 8.3963748, 46.8690779 ], + [ 8.3963412, 46.8691591 ], + [ 8.3962766, 46.8692607 ], + [ 8.3962243, 46.8693328 ], + [ 8.3962092, 46.8693713 ], + [ 8.3961447, 46.8694379 ], + [ 8.3961218, 46.8695663 ], + [ 8.3961283, 46.8696725 ], + [ 8.395058, 46.8707845 ], + [ 8.3949778, 46.8708679 ], + [ 8.394986, 46.870894 ], + [ 8.3953272, 46.870943 ], + [ 8.3959039, 46.8710368 ], + [ 8.3959378, 46.8710472 ], + [ 8.396047, 46.8710473 ], + [ 8.396155, 46.8710552 ], + [ 8.396172, 46.8710533 ], + [ 8.3962994, 46.8710825 ], + [ 8.3963585, 46.8710878 ], + [ 8.3965595, 46.8711313 ], + [ 8.3966441, 46.8711516 ], + [ 8.3967374, 46.8711568 ], + [ 8.3968909, 46.8711917 ], + [ 8.3969009, 46.8712165 ], + [ 8.3972857, 46.8712875 ], + [ 8.39755, 46.87133 ], + [ 8.3977339, 46.8713361 ], + [ 8.3978378, 46.871362 ], + [ 8.3979407, 46.8713715 ], + [ 8.3980845, 46.8714004 ], + [ 8.3982248, 46.8714334 ], + [ 8.3983543, 46.8714693 ], + [ 8.398508, 46.8715051 ], + [ 8.3986942, 46.8715519 ], + [ 8.3995777, 46.8718521 ], + [ 8.3996527, 46.8718874 ], + [ 8.3997466, 46.8719198 ], + [ 8.3999534, 46.8720151 ], + [ 8.400097, 46.8720452 ], + [ 8.4008053, 46.872326 ], + [ 8.4008661, 46.8723413 ], + [ 8.4009941, 46.8723325 ], + [ 8.4011213, 46.8723223 ], + [ 8.4012335, 46.8723297 ], + [ 8.4013958, 46.8723419 ], + [ 8.4014205, 46.8723119 ], + [ 8.4022538, 46.8723762 ], + [ 8.4023398, 46.8723521 ], + [ 8.4024031, 46.8723445 ], + [ 8.4025005, 46.8723452 ], + [ 8.4026532, 46.8723632 ], + [ 8.4027099, 46.8723088 ], + [ 8.4027575, 46.8723121 ], + [ 8.4027843, 46.8723139 ], + [ 8.4028472, 46.8723257 ], + [ 8.40292, 46.872321 ], + [ 8.4029274, 46.8723 ], + [ 8.402982, 46.8722793 ], + [ 8.4030378, 46.8722286 ], + [ 8.4031319, 46.8722511 ], + [ 8.403119, 46.8723005 ], + [ 8.4031077, 46.8723612 ], + [ 8.4031828, 46.8723517 ], + [ 8.4032286, 46.8723337 ], + [ 8.4033329, 46.8723852 ], + [ 8.4034304, 46.8724043 ], + [ 8.4034864, 46.872416 ], + [ 8.4035825, 46.872421 ], + [ 8.4036675, 46.8724242 ], + [ 8.4037314, 46.8724391 ], + [ 8.4037812, 46.8724472 ], + [ 8.4038312, 46.8724673 ], + [ 8.403846099999999, 46.8724982 ], + [ 8.4038881, 46.8725233 ], + [ 8.4039363, 46.8725304 ], + [ 8.4040238, 46.8725219 ], + [ 8.4040537, 46.8725308 ], + [ 8.4041023, 46.8725376 ], + [ 8.4041206, 46.8725491 ], + [ 8.4040788, 46.8726056 ], + [ 8.40407, 46.8726243 ], + [ 8.4040828, 46.8726412 ], + [ 8.4041313, 46.8726974 ], + [ 8.4041801, 46.8727134 ], + [ 8.4042634, 46.8727434 ], + [ 8.4043174, 46.8727617 ], + [ 8.4043988, 46.8727719 ], + [ 8.4043996, 46.8727794 ], + [ 8.4043615, 46.8727967 ], + [ 8.4042921, 46.8728126 ], + [ 8.4042767, 46.8728269 ], + [ 8.4042963, 46.8728492 ], + [ 8.4043758, 46.8728432 ], + [ 8.4044197, 46.8728439 ], + [ 8.4045138, 46.8728374 ], + [ 8.404556, 46.8728392 ], + [ 8.4045783, 46.8728402 ], + [ 8.4046259, 46.8728572 ], + [ 8.4046915, 46.8728843 ], + [ 8.4047765, 46.8729093 ], + [ 8.4048507, 46.8729309 ], + [ 8.4048291, 46.87296 ], + [ 8.4047781, 46.8729623 ], + [ 8.4047758, 46.8729753 ], + [ 8.4047909, 46.8730019 ], + [ 8.4048168, 46.8730271 ], + [ 8.404835, 46.8730771 ], + [ 8.4048412, 46.8731223 ], + [ 8.4049058, 46.8731533 ], + [ 8.4049637, 46.8731674 ], + [ 8.4050095, 46.8731643 ], + [ 8.4050734, 46.8731767 ], + [ 8.4051005, 46.8731784 ], + [ 8.4051821, 46.8732165 ], + [ 8.4051703, 46.8732443 ], + [ 8.4051752, 46.8732532 ], + [ 8.4052464, 46.8732808 ], + [ 8.4052968, 46.8733008 ], + [ 8.4053631, 46.8733129 ], + [ 8.4054408, 46.8733172 ], + [ 8.4055113, 46.8733239 ], + [ 8.4055779, 46.8733304 ], + [ 8.4056478, 46.8733367 ], + [ 8.4058535, 46.8733557 ], + [ 8.4058666, 46.8733551 ], + [ 8.4058939, 46.8733439 ], + [ 8.4059626, 46.8733259 ], + [ 8.4060011, 46.8733226 ], + [ 8.4060581, 46.8733142 ], + [ 8.4061335, 46.8732984 ], + [ 8.4061993, 46.8733046 ], + [ 8.4062336, 46.8733011 ], + [ 8.4063088, 46.8732803 ], + [ 8.4063927, 46.8732845 ], + [ 8.4064821, 46.873288 ], + [ 8.4065536, 46.873289 ], + [ 8.4066042, 46.8732693 ], + [ 8.4066688, 46.8732637 ], + [ 8.4067342, 46.8732519 ], + [ 8.4067708, 46.8732393 ], + [ 8.4068331, 46.8732307 ], + [ 8.4068692, 46.8732287 ], + [ 8.4069172, 46.873226 ], + [ 8.4069625, 46.8732164 ], + [ 8.4070219, 46.8732078 ], + [ 8.4071073, 46.8731724 ], + [ 8.4072007, 46.8731468 ], + [ 8.4072701, 46.8731305 ], + [ 8.4086772, 46.8741956 ], + [ 8.4087862, 46.8742781 ], + [ 8.4089842, 46.8744119 ], + [ 8.4091557, 46.874521 ], + [ 8.4092646, 46.8745946 ], + [ 8.4093314, 46.8746931 ], + [ 8.409366, 46.8748209 ], + [ 8.4094393, 46.8749171 ], + [ 8.4095355, 46.8750154 ], + [ 8.4096683, 46.8751563 ], + [ 8.4096987, 46.875228 ], + [ 8.4097071, 46.8753492 ], + [ 8.4097247, 46.8754345 ], + [ 8.4098267, 46.8754856 ], + [ 8.4100172, 46.8755542 ], + [ 8.4101453, 46.8755985 ], + [ 8.4101928, 46.8757173 ], + [ 8.4102098, 46.8757621 ], + [ 8.4103225, 46.875871599999996 ], + [ 8.4103539, 46.8760062 ], + [ 8.410379, 46.8761566 ], + [ 8.4104104, 46.8762867 ], + [ 8.4104567, 46.8763246 ], + [ 8.4105914, 46.8763733 ], + [ 8.4107029, 46.876402 ], + [ 8.4107692, 46.8764712 ], + [ 8.4108002, 46.8765788 ], + [ 8.4110478, 46.8765731 ], + [ 8.4111218, 46.8764609 ], + [ 8.4111196, 46.8763386 ], + [ 8.4110721, 46.8761761 ], + [ 8.4110821, 46.8759322 ], + [ 8.411109100000001, 46.8757593 ], + [ 8.4111074, 46.8756613 ], + [ 8.4111074, 46.8756608 ], + [ 8.4111708, 46.8756536 ], + [ 8.4113566, 46.8756371 ], + [ 8.4114977, 46.875616 ], + [ 8.4115067, 46.8756144 ], + [ 8.4115155, 46.8756123 ], + [ 8.411524, 46.8756096 ], + [ 8.411532, 46.8756065 ], + [ 8.4115397, 46.8756029 ], + [ 8.4115468, 46.8755988 ], + [ 8.4115534, 46.8755943 ], + [ 8.4115593, 46.8755894 ], + [ 8.4115646, 46.8755841 ], + [ 8.4115692, 46.8755786 ], + [ 8.411573, 46.8755728 ], + [ 8.4115761, 46.8755667 ], + [ 8.4115784, 46.8755605 ], + [ 8.4115798, 46.8755542 ], + [ 8.4115804, 46.8755479 ], + [ 8.4115802, 46.8755415 ], + [ 8.4115791, 46.8755352 ], + [ 8.4115773, 46.8755289 ], + [ 8.4115746, 46.8755228 ], + [ 8.4115711, 46.8755169 ], + [ 8.4115669, 46.8755112 ], + [ 8.4115619, 46.8755059 ], + [ 8.4115563, 46.8755008 ], + [ 8.41155, 46.8754961 ], + [ 8.4114555, 46.8754396 ], + [ 8.4114365, 46.8754254 ], + [ 8.4114067, 46.8753986 ], + [ 8.4114161, 46.8753716 ], + [ 8.4114516, 46.8753399 ], + [ 8.4115133, 46.8753149 ], + [ 8.4116728, 46.8752781 ], + [ 8.4125648, 46.8750621 ], + [ 8.4126048, 46.875046 ], + [ 8.4126681, 46.8750175 ], + [ 8.4127072, 46.8749905 ], + [ 8.4127517, 46.8749598 ], + [ 8.4127711, 46.874938 ], + [ 8.4128055, 46.8749316 ], + [ 8.4128187, 46.8749036 ], + [ 8.4128374, 46.8748843 ], + [ 8.4129134, 46.8748666 ], + [ 8.4129705, 46.8748571 ], + [ 8.4130735, 46.8748214 ], + [ 8.4131951, 46.874787 ], + [ 8.4132179, 46.8747737 ], + [ 8.4132619, 46.8747761 ], + [ 8.413295, 46.8747722 ], + [ 8.4133646, 46.8747556 ], + [ 8.413436, 46.8747452 ], + [ 8.4135085, 46.8747347 ], + [ 8.4135725, 46.8747116 ], + [ 8.4136112, 46.8747102 ], + [ 8.4137078, 46.8747154 ], + [ 8.413808, 46.8747288 ], + [ 8.4138681, 46.874736 ], + [ 8.4139023, 46.8747371 ], + [ 8.413964, 46.8747437 ], + [ 8.4139946, 46.874746 ], + [ 8.4140213, 46.8747345 ], + [ 8.4140422, 46.8747232 ], + [ 8.414069, 46.8747233 ], + [ 8.4141056, 46.8747244 ], + [ 8.4141488, 46.8747138 ], + [ 8.4141751, 46.8746917 ], + [ 8.4142001, 46.8746872 ], + [ 8.4142262, 46.8746917 ], + [ 8.4142486, 46.8746993 ], + [ 8.4142979, 46.8746895 ], + [ 8.4143558, 46.874687 ], + [ 8.4143973, 46.874692 ], + [ 8.4144542, 46.8746825 ], + [ 8.4144841, 46.8746634 ], + [ 8.414533, 46.8746501 ], + [ 8.4146115, 46.8746334 ], + [ 8.4146507, 46.874636 ], + [ 8.4146888, 46.8746185 ], + [ 8.4147215, 46.8746169 ], + [ 8.4147457, 46.874625 ], + [ 8.4147989, 46.874614 ], + [ 8.4148613, 46.8746109 ], + [ 8.4149108, 46.8746035 ], + [ 8.4149855, 46.874588 ], + [ 8.415024, 46.8745691 ], + [ 8.4150823, 46.8745588 ], + [ 8.4152181, 46.8745509 ], + [ 8.4153041, 46.8745466 ], + [ 8.4153863, 46.8745357 ], + [ 8.4154764, 46.8745238 ], + [ 8.4155237, 46.8745314 ], + [ 8.4155479, 46.8745299 ], + [ 8.4155736, 46.8745037 ], + [ 8.4156954, 46.8745 ], + [ 8.4157725, 46.8745091 ], + [ 8.4158352, 46.874497 ], + [ 8.4159371, 46.8744632 ], + [ 8.4160231, 46.8744271 ], + [ 8.4160873, 46.8743993 ], + [ 8.4162801, 46.874379 ], + [ 8.4163562, 46.8743609 ], + [ 8.4164258, 46.8743616 ], + [ 8.4165163, 46.8743549 ], + [ 8.4166093, 46.8743262 ], + [ 8.4167036, 46.8743091 ], + [ 8.4167669, 46.8742497 ], + [ 8.4167984, 46.8742471 ], + [ 8.4168708, 46.8742023 ], + [ 8.4169853, 46.8741085 ], + [ 8.4170422, 46.874038 ], + [ 8.4171, 46.8739649 ], + [ 8.4171428, 46.8739203 ], + [ 8.417199, 46.873864 ], + [ 8.4172132, 46.8738331 ], + [ 8.4172495, 46.8738016 ], + [ 8.4173714, 46.8737579 ], + [ 8.4173932, 46.8737444 ], + [ 8.4174144, 46.8737248 ], + [ 8.4174653, 46.8737096 ], + [ 8.417496, 46.8736924 ], + [ 8.4175315, 46.8736806 ], + [ 8.4175599, 46.8736522 ], + [ 8.4176307, 46.8736257 ], + [ 8.4176686, 46.8735997 ], + [ 8.4177148, 46.873584 ], + [ 8.4178268, 46.873496 ], + [ 8.4178496, 46.8734853 ], + [ 8.4178863, 46.8734473 ], + [ 8.4179092, 46.8734114 ], + [ 8.4179458, 46.873387 ], + [ 8.4179717, 46.8733734 ], + [ 8.4180242, 46.8732218 ], + [ 8.4180495, 46.873188999999996 ], + [ 8.4180893, 46.8731589 ], + [ 8.4181409, 46.8731325 ], + [ 8.4182015, 46.8731023 ], + [ 8.4182495, 46.8730705 ], + [ 8.418371, 46.8730221 ], + [ 8.4184388, 46.8729887 ], + [ 8.4185007, 46.8729509 ], + [ 8.4185382, 46.8728781 ], + [ 8.418551, 46.8728438 ], + [ 8.4185462, 46.8728259 ], + [ 8.418587, 46.8727782 ], + [ 8.4186855, 46.8726786 ], + [ 8.418689, 46.8726563 ], + [ 8.4187076, 46.8726143 ], + [ 8.4187083, 46.8725899 ], + [ 8.4187311, 46.8725729 ], + [ 8.4187429, 46.872544 ], + [ 8.4187689, 46.8725309 ], + [ 8.4188102, 46.8724653 ], + [ 8.418816, 46.8724469 ], + [ 8.418858, 46.8724166 ], + [ 8.418882, 46.8723912 ], + [ 8.4188994, 46.8723596 ], + [ 8.4189499, 46.8723034 ], + [ 8.4189736, 46.8722869 ], + [ 8.419008, 46.8722759 ], + [ 8.4191409, 46.8722771 ], + [ 8.4192434, 46.8722599 ], + [ 8.4192994, 46.8722174 ], + [ 8.41935, 46.8721748 ], + [ 8.4193813, 46.8721284 ], + [ 8.4193945, 46.8721018 ], + [ 8.4194229, 46.8720661 ], + [ 8.4194522, 46.8720526 ], + [ 8.4193705, 46.8719777 ], + [ 8.4192567, 46.8718701 ], + [ 8.419123, 46.8718027 ], + [ 8.4189995, 46.8717408 ], + [ 8.4189041, 46.8716827 ], + [ 8.4188233, 46.8716357 ], + [ 8.4187926, 46.8716047 ], + [ 8.4187694, 46.8715258 ], + [ 8.4187729, 46.8714415 ], + [ 8.4187795, 46.8713848 ], + [ 8.418734, 46.8713122 ], + [ 8.4186719, 46.8712224 ], + [ 8.4186952, 46.8712093 ], + [ 8.4186987, 46.8712102 ], + [ 8.4187865, 46.8712343 ], + [ 8.41885, 46.8712469 ], + [ 8.4189131, 46.8712485 ], + [ 8.4189349, 46.8712251 ], + [ 8.4189408, 46.8711858 ], + [ 8.419011, 46.8711313 ], + [ 8.4190849, 46.8710772 ], + [ 8.4191438, 46.8710876 ], + [ 8.4192184, 46.8710942 ], + [ 8.4194029, 46.8710857 ], + [ 8.4195753, 46.8710805 ], + [ 8.4197438, 46.8710677 ], + [ 8.4198737, 46.871062 ], + [ 8.4199234, 46.871045 ], + [ 8.4199251, 46.8710307 ], + [ 8.4198812, 46.8710032 ], + [ 8.4199668, 46.8709922 ], + [ 8.4201012, 46.8709598 ], + [ 8.4201739, 46.8709394 ], + [ 8.4202364, 46.8709354 ], + [ 8.420346200000001, 46.870921 ], + [ 8.4204976, 46.870904 ], + [ 8.4206198, 46.8708831 ], + [ 8.4206357, 46.8708805 ], + [ 8.4206611, 46.8708741 ], + [ 8.420675899999999, 46.8708658 ], + [ 8.4207104, 46.8708509 ], + [ 8.4207864, 46.87079 ], + [ 8.4207816, 46.8707732 ], + [ 8.4207932, 46.8707561 ], + [ 8.4208485, 46.8707223 ], + [ 8.4208076, 46.8706766 ], + [ 8.4207963, 46.8706393 ], + [ 8.4207614, 46.8706187 ], + [ 8.4207189, 46.8706175 ], + [ 8.4206621, 46.8705681 ], + [ 8.4207112, 46.8705219 ], + [ 8.4206418, 46.8705193 ], + [ 8.4206133, 46.8705298 ], + [ 8.4206044, 46.8705341 ], + [ 8.4205804, 46.8705588 ], + [ 8.420543200000001, 46.8705866 ], + [ 8.4204824, 46.8706161 ], + [ 8.4203925, 46.8706588 ], + [ 8.420391, 46.870657 ], + [ 8.4204399, 46.8706139 ], + [ 8.4203309, 46.870536 ], + [ 8.4204244, 46.8705166 ], + [ 8.420469, 46.8704786 ], + [ 8.4205141, 46.8704565 ], + [ 8.4205363, 46.8704071 ], + [ 8.4205269, 46.8703803 ], + [ 8.4205513, 46.8703449 ], + [ 8.4205842, 46.870304 ], + [ 8.4206361, 46.8702871 ], + [ 8.4206725, 46.8702542 ], + [ 8.4206774, 46.8702385 ], + [ 8.4206202, 46.8702467 ], + [ 8.4206037, 46.8701966 ], + [ 8.4206427, 46.8701307 ], + [ 8.4206849, 46.8701139 ], + [ 8.4207384, 46.8700909 ], + [ 8.4207259, 46.8700647 ], + [ 8.4207962, 46.8700114 ], + [ 8.4208201, 46.8699667 ], + [ 8.42087, 46.8699613 ], + [ 8.4208867, 46.8699442 ], + [ 8.4208248, 46.8698272 ], + [ 8.420828, 46.8698047 ], + [ 8.4209004, 46.8697391 ], + [ 8.420931, 46.8697238 ], + [ 8.4209509, 46.8697208 ], + [ 8.420997, 46.8697099 ], + [ 8.4210102, 46.8696831 ], + [ 8.4210645, 46.8696565 ], + [ 8.4212023, 46.8695278 ], + [ 8.421278, 46.8694829 ], + [ 8.4213425, 46.8694346 ], + [ 8.4213864, 46.8694005 ], + [ 8.4214476, 46.8693543 ], + [ 8.4215246, 46.869314 ], + [ 8.4216024, 46.8692699 ], + [ 8.4216414, 46.8692543 ], + [ 8.4216406, 46.8692522 ], + [ 8.4217048, 46.8692344 ], + [ 8.421769, 46.8692272 ], + [ 8.4218023, 46.8692014 ], + [ 8.4218036, 46.8692033 ], + [ 8.4218264, 46.8691952 ], + [ 8.4219113, 46.8691637 ], + [ 8.4220535, 46.8691143 ], + [ 8.4222054, 46.8690665 ], + [ 8.4223366, 46.8690338 ], + [ 8.4224672, 46.8689919 ], + [ 8.4225048, 46.8689717 ], + [ 8.4225211, 46.8689459 ], + [ 8.4226007, 46.8689335 ], + [ 8.4226067, 46.8689069 ], + [ 8.4226641, 46.8688973 ], + [ 8.4227238, 46.8689021 ], + [ 8.4228035, 46.8688509 ], + [ 8.4227894, 46.8688265 ], + [ 8.4228023, 46.8687928 ], + [ 8.4228473, 46.8687577 ], + [ 8.4228586, 46.8687393 ], + [ 8.4228897, 46.8686998 ], + [ 8.4228986, 46.868678 ], + [ 8.4228966, 46.8686514 ], + [ 8.422924, 46.8686316 ], + [ 8.4229447, 46.8686367 ], + [ 8.4230012, 46.8686253 ], + [ 8.4230415, 46.8685878 ], + [ 8.4230536, 46.8685392 ], + [ 8.4230382, 46.8684782 ], + [ 8.4230857, 46.8684699 ], + [ 8.4231704, 46.868481 ], + [ 8.4232176, 46.868512 ], + [ 8.4232121, 46.8685865 ], + [ 8.4232381, 46.8686046 ], + [ 8.4232629, 46.8686127 ], + [ 8.4232936, 46.8685853 ], + [ 8.4233458, 46.8685744 ], + [ 8.423421, 46.8685875 ], + [ 8.4235792, 46.8685985 ], + [ 8.4236897, 46.8686035 ], + [ 8.423762, 46.8686202 ], + [ 8.4238909, 46.8686274 ], + [ 8.4239306, 46.8686437 ], + [ 8.4240014, 46.8686779 ], + [ 8.4240368, 46.8686888 ], + [ 8.4240814, 46.8686895 ], + [ 8.4241374, 46.8686895 ], + [ 8.4242066, 46.8686992 ], + [ 8.424241, 46.8687006 ], + [ 8.4242834, 46.8687121 ], + [ 8.4243163, 46.8687274 ], + [ 8.4243585, 46.8687442 ], + [ 8.4244154, 46.8687336 ], + [ 8.4244563, 46.8687251 ], + [ 8.4245271, 46.868696 ], + [ 8.4245586, 46.868679 ], + [ 8.4246095, 46.8686523 ], + [ 8.4246473, 46.8686392 ], + [ 8.4247046, 46.8686275 ], + [ 8.4248795, 46.8686122 ], + [ 8.4254956, 46.8682828 ], + [ 8.4259618, 46.8679549 ], + [ 8.4260125, 46.8678555 ], + [ 8.4268009, 46.867219 ], + [ 8.4269038, 46.8671102 ], + [ 8.4271251, 46.8670183 ], + [ 8.4279616, 46.8668581 ], + [ 8.4286528, 46.8665092 ], + [ 8.4294301, 46.8661168 ], + [ 8.429950999999999, 46.8659144 ], + [ 8.4308782, 46.8656904 ], + [ 8.4312444, 46.8656333 ], + [ 8.431572599999999, 46.8656484 ], + [ 8.4321277, 46.8658775 ], + [ 8.4328971, 46.8663477 ], + [ 8.4332286, 46.8665427 ], + [ 8.4339464, 46.8670583 ], + [ 8.4339496, 46.8672292 ], + [ 8.433734, 46.8676269 ], + [ 8.4336983, 46.8678251 ], + [ 8.4337383, 46.8678607 ], + [ 8.4340142, 46.8678853 ], + [ 8.4344329, 46.8678277 ], + [ 8.4348142, 46.8678784 ], + [ 8.4350526, 46.8680023 ], + [ 8.4352281, 46.8682706 ], + [ 8.4354786, 46.8683404 ], + [ 8.4361086, 46.8683619 ], + [ 8.4369123, 46.8685528 ], + [ 8.4373503, 46.8688279 ], + [ 8.4373511, 46.8688729 ], + [ 8.4376481, 46.8691473 ], + [ 8.4376731, 46.8691981 ], + [ 8.4376865, 46.8692396 ], + [ 8.437717899999999, 46.8692621 ], + [ 8.4377303, 46.8693006 ], + [ 8.4377677, 46.8693388 ], + [ 8.4378975, 46.8693628 ], + [ 8.4379184, 46.8693599 ], + [ 8.4379461, 46.8693457 ], + [ 8.4379958, 46.8693539 ], + [ 8.438079, 46.8693332 ], + [ 8.4381518, 46.8693423 ], + [ 8.4382687, 46.8693795 ], + [ 8.4384014, 46.8694376 ], + [ 8.4384141, 46.8694599 ], + [ 8.4384809, 46.8694975 ], + [ 8.4385377, 46.8695442 ], + [ 8.4385841, 46.8695977 ], + [ 8.4386428, 46.8696204 ], + [ 8.438747, 46.8696402 ], + [ 8.4388054, 46.8696308 ], + [ 8.4388649, 46.8696367 ], + [ 8.4388831, 46.8696284 ], + [ 8.4389556, 46.8696185 ], + [ 8.439057, 46.8696128 ], + [ 8.4390765, 46.8696321 ], + [ 8.4391322, 46.8696759 ], + [ 8.4391441, 46.8696755 ], + [ 8.439207, 46.8696795 ], + [ 8.4392685, 46.8697103 ], + [ 8.4393421, 46.8697175 ], + [ 8.439419000000001, 46.8697208 ], + [ 8.4394653, 46.8697634 ], + [ 8.4395006, 46.8697539 ], + [ 8.4395332, 46.8697557 ], + [ 8.4395737, 46.8697635 ], + [ 8.439620099999999, 46.869762 ], + [ 8.439654, 46.8697431 ], + [ 8.4397218, 46.8697331 ], + [ 8.4397442, 46.8697169 ], + [ 8.4397861, 46.8697172 ], + [ 8.4398177, 46.8697251 ], + [ 8.4398821, 46.8697098 ], + [ 8.4399123, 46.8696884 ], + [ 8.4398936, 46.8696723 ], + [ 8.4399118, 46.8696441 ], + [ 8.4399666, 46.8696307 ], + [ 8.4400515, 46.869601 ], + [ 8.4401274, 46.869573 ], + [ 8.4401783, 46.8695469 ], + [ 8.4402438, 46.8694957 ], + [ 8.4403402, 46.8694397 ], + [ 8.4404787, 46.8694339 ], + [ 8.4404944, 46.8694333 ], + [ 8.4405201, 46.8694044 ], + [ 8.4406698, 46.8693328 ], + [ 8.4406766, 46.8692955 ], + [ 8.4406989, 46.8692735 ], + [ 8.4408024, 46.8692522 ], + [ 8.4409062, 46.8692118 ], + [ 8.4410338, 46.8691279 ], + [ 8.4410644, 46.8690906 ], + [ 8.441091, 46.8690366 ], + [ 8.4411224, 46.8690232 ], + [ 8.4411241, 46.8690105 ], + [ 8.4412043, 46.8690073 ], + [ 8.4412328, 46.8690105 ], + [ 8.441271, 46.8689911 ], + [ 8.441321, 46.8689596 ], + [ 8.4413116, 46.8688936 ], + [ 8.4413335, 46.8688876 ], + [ 8.4413355, 46.8688634 ], + [ 8.4413621, 46.8687927 ], + [ 8.4413972, 46.8687845 ], + [ 8.4414142, 46.8687584 ], + [ 8.4414547, 46.8687227 ], + [ 8.4415186, 46.8686702 ], + [ 8.4415534, 46.8686563 ], + [ 8.4415567, 46.8686336 ], + [ 8.4415567, 46.8686077 ], + [ 8.4415594, 46.8685782 ], + [ 8.4416477, 46.8685205 ], + [ 8.4416776, 46.8684771 ], + [ 8.4417022, 46.868472 ], + [ 8.4417678, 46.8684262 ], + [ 8.4418585, 46.8684025 ], + [ 8.4419073, 46.8683601 ], + [ 8.4419302, 46.868322 ], + [ 8.4419311, 46.8682857 ], + [ 8.4419155, 46.8682648 ], + [ 8.4419387, 46.8682497 ], + [ 8.4419337, 46.8682361 ], + [ 8.4419006, 46.8682215 ], + [ 8.4418931, 46.8681843 ], + [ 8.4418659, 46.8681749 ], + [ 8.4418733, 46.8681303 ], + [ 8.4418829, 46.8681136 ], + [ 8.4419238, 46.8680941 ], + [ 8.4419593, 46.868091 ], + [ 8.4419899, 46.8680857 ], + [ 8.4420338, 46.8680593 ], + [ 8.4421783, 46.8680368 ], + [ 8.442243, 46.8680246 ], + [ 8.4422508, 46.868023 ], + [ 8.4423081, 46.8680049 ], + [ 8.4423451, 46.8680014 ], + [ 8.4423972, 46.8679848 ], + [ 8.4424041, 46.8679656 ], + [ 8.4424789, 46.8679331 ], + [ 8.4425927, 46.8679279 ], + [ 8.4425893, 46.8679023 ], + [ 8.4426861, 46.8678641 ], + [ 8.4426947, 46.8678241 ], + [ 8.4427127, 46.8677891 ], + [ 8.4427071, 46.8677427 ], + [ 8.4427082, 46.867705 ], + [ 8.4455651, 46.8676947 ], + [ 8.4455733, 46.8687457 ], + [ 8.4455727, 46.8687984 ], + [ 8.4456084, 46.8688097 ], + [ 8.4456376, 46.8688188 ], + [ 8.4456655, 46.8688156 ], + [ 8.4456795, 46.8688001 ], + [ 8.4457149, 46.8688005 ], + [ 8.4457206, 46.8688366 ], + [ 8.4457734, 46.8688436 ], + [ 8.4458117, 46.8688439 ], + [ 8.4458658, 46.8688424 ], + [ 8.445887, 46.868862 ], + [ 8.4459774, 46.8688929 ], + [ 8.4460382, 46.8688964 ], + [ 8.4461465, 46.8688549 ], + [ 8.4461676, 46.8688699 ], + [ 8.4462816, 46.868874 ], + [ 8.4463465, 46.8688788 ], + [ 8.4464177, 46.8688683 ], + [ 8.4464995, 46.8688619 ], + [ 8.446582, 46.8688929 ], + [ 8.4466272, 46.8689293 ], + [ 8.4466648, 46.8689363 ], + [ 8.446723800000001, 46.8689691 ], + [ 8.4467779, 46.8689925 ], + [ 8.4468414, 46.8690169 ], + [ 8.4468566, 46.8690444 ], + [ 8.4468675, 46.8690497 ], + [ 8.4469066, 46.869061 ], + [ 8.4469408, 46.869056 ], + [ 8.4469439, 46.8690496 ], + [ 8.4469923, 46.8690554 ], + [ 8.4470929, 46.8690873 ], + [ 8.4471421, 46.8690982 ], + [ 8.4471684, 46.8691167 ], + [ 8.4472025, 46.8691246 ], + [ 8.4472274, 46.8691417 ], + [ 8.4473053, 46.8691519 ], + [ 8.447367, 46.8691444 ], + [ 8.4474324, 46.8691255 ], + [ 8.4474355, 46.8691102 ], + [ 8.4474735, 46.8690756 ], + [ 8.447525, 46.8690589 ], + [ 8.447526, 46.8690464 ], + [ 8.447602, 46.8690258 ], + [ 8.4476627, 46.8690289 ], + [ 8.4476899, 46.8690118 ], + [ 8.4477746, 46.8690098 ], + [ 8.4477982, 46.869025 ], + [ 8.4478121, 46.869017 ], + [ 8.4478698, 46.8690103 ], + [ 8.4478883, 46.8690207 ], + [ 8.4479689, 46.8690012 ], + [ 8.448051, 46.8689903 ], + [ 8.4481017, 46.8689936 ], + [ 8.448172, 46.8690042 ], + [ 8.4481915, 46.8690187 ], + [ 8.4482911, 46.8690267 ], + [ 8.448389, 46.869047 ], + [ 8.44845, 46.8690383 ], + [ 8.4484851, 46.869015 ], + [ 8.4485272, 46.8689659 ], + [ 8.4485508, 46.8689576 ], + [ 8.4485963, 46.8689279 ], + [ 8.4486686, 46.8688987 ], + [ 8.4487036, 46.8688907 ], + [ 8.4487631, 46.8688812 ], + [ 8.4488054, 46.8688825 ], + [ 8.4488205, 46.8688721 ], + [ 8.4488948, 46.8688514 ], + [ 8.4489132, 46.8688265 ], + [ 8.448918, 46.8688013 ], + [ 8.4490108, 46.8687867 ], + [ 8.4490601, 46.868791 ], + [ 8.4491525, 46.8687629 ], + [ 8.4492011, 46.8687699 ], + [ 8.4493373, 46.868788 ], + [ 8.4493736, 46.8688095 ], + [ 8.4493808, 46.8688431 ], + [ 8.449388, 46.8688683 ], + [ 8.4494337, 46.8689055 ], + [ 8.4494867, 46.8689364 ], + [ 8.449557, 46.868955 ], + [ 8.4496034, 46.8689862 ], + [ 8.4496455, 46.8689902 ], + [ 8.4496747, 46.8690187 ], + [ 8.4497193, 46.869065 ], + [ 8.4497758, 46.8690947 ], + [ 8.4498576, 46.869086 ], + [ 8.4499509, 46.8691035 ], + [ 8.450033, 46.8691982 ], + [ 8.4500812, 46.8692743 ], + [ 8.4501227, 46.8693095 ], + [ 8.4501928, 46.8693398 ], + [ 8.4502435, 46.8693448 ], + [ 8.4502776, 46.8693699 ], + [ 8.4503205, 46.8693692 ], + [ 8.4503617, 46.8694065 ], + [ 8.4503962, 46.8694355 ], + [ 8.4504285, 46.8694994 ], + [ 8.450440799999999, 46.8695186 ], + [ 8.4505128, 46.8695291 ], + [ 8.4505334, 46.8695409 ], + [ 8.4505708, 46.8695469 ], + [ 8.4506406, 46.8695732 ], + [ 8.4506471, 46.8695936 ], + [ 8.4507015, 46.8696229 ], + [ 8.4507431, 46.8696276 ], + [ 8.4507884, 46.8696474 ], + [ 8.450814, 46.8696478 ], + [ 8.4508888, 46.8696722 ], + [ 8.4509354, 46.8696758 ], + [ 8.4509728, 46.8696667 ], + [ 8.4510649, 46.8696385 ], + [ 8.4511978, 46.8696496 ], + [ 8.4514034, 46.869653 ], + [ 8.4515088, 46.8696584 ], + [ 8.4516635, 46.8697019 ], + [ 8.4517896, 46.8697106 ], + [ 8.4520388, 46.8697109 ], + [ 8.4520985, 46.8697352 ], + [ 8.4521496, 46.8697374 ], + [ 8.4522258, 46.8697378 ], + [ 8.4522386, 46.8697991 ], + [ 8.4522895, 46.8698592 ], + [ 8.4523166, 46.8698637 ], + [ 8.4523664, 46.8699268 ], + [ 8.4524274, 46.8699963 ], + [ 8.4525509, 46.8700337 ], + [ 8.4525952, 46.8700721 ], + [ 8.4526105, 46.8700756 ], + [ 8.4526338, 46.8701062 ], + [ 8.4527054, 46.8701237 ], + [ 8.4527305, 46.8701704 ], + [ 8.4527836, 46.8702365 ], + [ 8.4528297, 46.8702823 ], + [ 8.4528908, 46.870337 ], + [ 8.4529861, 46.8703998 ], + [ 8.4530618, 46.8704261 ], + [ 8.4531354, 46.870449 ], + [ 8.4532338, 46.8704716 ], + [ 8.4533205, 46.8704889 ], + [ 8.4534141, 46.8705214 ], + [ 8.4535458, 46.8705569 ], + [ 8.4537201, 46.8706005 ], + [ 8.4537598, 46.8706123 ], + [ 8.4538347, 46.8706344 ], + [ 8.4539191, 46.8706548 ], + [ 8.4540293, 46.8706756 ], + [ 8.4541067, 46.8706872 ], + [ 8.4541798, 46.8707012 ], + [ 8.4542702, 46.8707249 ], + [ 8.4544196, 46.8707544 ], + [ 8.4545369, 46.8707762 ], + [ 8.4546739, 46.8708053 ], + [ 8.4547403, 46.8708143 ], + [ 8.454815, 46.8708226 ], + [ 8.455006, 46.8708493 ], + [ 8.4551905, 46.8708832 ], + [ 8.4553174, 46.8709112 ], + [ 8.4554364, 46.8709324 ], + [ 8.4555177, 46.8709407 ], + [ 8.4556803, 46.8709516 ], + [ 8.4558434, 46.8709616 ], + [ 8.4560092, 46.8709708 ], + [ 8.4562135, 46.8709778 ], + [ 8.4563405, 46.8709783 ], + [ 8.4564745, 46.8709781 ], + [ 8.4565388, 46.8709782 ], + [ 8.4565853, 46.8709817 ], + [ 8.4566332, 46.8710028 ], + [ 8.4567748, 46.871059 ], + [ 8.4569572, 46.8711292 ], + [ 8.45709, 46.8711903 ], + [ 8.4572349, 46.8712463 ], + [ 8.4573297, 46.8712819 ], + [ 8.4574269, 46.8713096 ], + [ 8.4574959, 46.8713299 ], + [ 8.4575643, 46.8713532 ], + [ 8.4575913, 46.8713664 ], + [ 8.4576662, 46.871426 ], + [ 8.4577459, 46.8714744 ], + [ 8.4578376, 46.8715127 ], + [ 8.4579108, 46.8715313 ], + [ 8.4579759, 46.8715351 ], + [ 8.4580287, 46.8715316 ], + [ 8.458077, 46.8715413 ], + [ 8.4581306, 46.8715655 ], + [ 8.4582513, 46.8716131 ], + [ 8.458345, 46.8716475 ], + [ 8.4584615, 46.8716964 ], + [ 8.4586052, 46.8717468 ], + [ 8.4586587, 46.8717717 ], + [ 8.4587117, 46.8717797 ], + [ 8.458767, 46.8717862 ], + [ 8.4588342, 46.8718132 ], + [ 8.4588953, 46.871834 ], + [ 8.4589529, 46.871847700000004 ], + [ 8.4591049, 46.8718538 ], + [ 8.4592177, 46.871855 ], + [ 8.4592776, 46.87186 ], + [ 8.4593391, 46.8718609 ], + [ 8.4593852, 46.8718462 ], + [ 8.4594309, 46.8718364 ], + [ 8.4595487, 46.8718281 ], + [ 8.4596544, 46.8718199 ], + [ 8.4597219, 46.8718131 ], + [ 8.4597677, 46.8718168 ], + [ 8.459816, 46.8718236 ], + [ 8.4598735, 46.8718173 ], + [ 8.4599524, 46.8717907 ], + [ 8.4600801, 46.8717497 ], + [ 8.4601851, 46.8717278 ], + [ 8.4602979, 46.8717344 ], + [ 8.4603967, 46.8717602 ], + [ 8.4604752, 46.8717931 ], + [ 8.4605661, 46.8718315 ], + [ 8.4606397, 46.8718412 ], + [ 8.4607136, 46.8718331 ], + [ 8.4607895, 46.8718184 ], + [ 8.4608278, 46.871826 ], + [ 8.4608671, 46.8718406 ], + [ 8.4609102, 46.8718485 ], + [ 8.4609604, 46.8718442 ], + [ 8.4610419, 46.8718432 ], + [ 8.4611783, 46.8718445 ], + [ 8.4612647, 46.8718539 ], + [ 8.4613145, 46.8718517 ], + [ 8.4613208, 46.8718499 ], + [ 8.4613912, 46.8718335 ], + [ 8.4614927, 46.8717943 ], + [ 8.4615573, 46.8717873 ], + [ 8.4616761, 46.8717911 ], + [ 8.4618157, 46.8717803 ], + [ 8.462194, 46.8717639 ], + [ 8.4623266, 46.8717411 ], + [ 8.4624541, 46.8717151 ], + [ 8.462581, 46.8716927 ], + [ 8.4626319, 46.8716925 ], + [ 8.4627285, 46.8716871 ], + [ 8.4628591, 46.87168 ], + [ 8.4629023, 46.8716637 ], + [ 8.4629547, 46.8716268 ], + [ 8.4630519, 46.8715911 ], + [ 8.4632644, 46.8715286 ], + [ 8.4633725, 46.8714928 ], + [ 8.463511, 46.8714299 ], + [ 8.4635579, 46.8714019 ], + [ 8.4636346, 46.8713634 ], + [ 8.4637975, 46.8713169 ], + [ 8.4638874, 46.8712983 ], + [ 8.4640516, 46.8712762 ], + [ 8.4641889, 46.8712701 ], + [ 8.4643142, 46.8712746 ], + [ 8.4643463, 46.8712631 ], + [ 8.4643979, 46.8712242 ], + [ 8.4645069, 46.8711431 ], + [ 8.4646215, 46.8710737 ], + [ 8.4647182, 46.8710221 ], + [ 8.4648062, 46.8709848 ], + [ 8.4648966, 46.8709218 ], + [ 8.465009, 46.8708495 ], + [ 8.4650638, 46.8708225 ], + [ 8.4650979, 46.8708001 ], + [ 8.4650992, 46.8707726 ], + [ 8.4651027, 46.87074 ], + [ 8.465142, 46.8706823 ], + [ 8.4652376, 46.8706187 ], + [ 8.4653047, 46.870585 ], + [ 8.4653604, 46.8705693 ], + [ 8.465401, 46.8705486 ], + [ 8.4654346, 46.8704854 ], + [ 8.4654866, 46.8704545 ], + [ 8.465558099999999, 46.8704168 ], + [ 8.4656411, 46.8703588 ], + [ 8.465748, 46.8702733 ], + [ 8.465841, 46.8701877 ], + [ 8.465911, 46.8701103 ], + [ 8.465962, 46.8700661 ], + [ 8.4659754, 46.870014 ], + [ 8.4659929, 46.8699703 ], + [ 8.4660145, 46.8699485 ], + [ 8.4660687, 46.8698849 ], + [ 8.4661011, 46.8698311 ], + [ 8.4661468, 46.8697815 ], + [ 8.466187, 46.8697537 ], + [ 8.4662283, 46.8697199 ], + [ 8.4662535, 46.8696812 ], + [ 8.4662489, 46.8696485 ], + [ 8.4662534, 46.869619900000004 ], + [ 8.4662901, 46.8695977 ], + [ 8.4663375, 46.8696292 ], + [ 8.4663932, 46.8696815 ], + [ 8.4664182, 46.8697276 ], + [ 8.4664066, 46.869755 ], + [ 8.4664209, 46.869791 ], + [ 8.466462, 46.869857 ], + [ 8.4664869, 46.8698818 ], + [ 8.4665245, 46.8698974 ], + [ 8.466543099999999, 46.8699215 ], + [ 8.4665414, 46.8699611 ], + [ 8.4665613, 46.8699976 ], + [ 8.4665755, 46.870029099999996 ], + [ 8.4665894, 46.8700922 ], + [ 8.4665912, 46.8701625 ], + [ 8.4665895, 46.87024 ], + [ 8.4666038, 46.8703031 ], + [ 8.4666384, 46.8703641 ], + [ 8.4666776, 46.8704076 ], + [ 8.466691, 46.8704273 ], + [ 8.466681, 46.870461399999996 ], + [ 8.4666876, 46.8705145 ], + [ 8.4667129, 46.8705557 ], + [ 8.466746, 46.8705933 ], + [ 8.4667752, 46.870638 ], + [ 8.4667624, 46.8706722 ], + [ 8.4667293, 46.8706946 ], + [ 8.4667, 46.8707305 ], + [ 8.4666916, 46.870794 ], + [ 8.4667009, 46.870867 ], + [ 8.4667348, 46.8709997 ], + [ 8.4667552, 46.8710343 ], + [ 8.4667662, 46.8710635 ], + [ 8.4667634, 46.871098 ], + [ 8.4667577, 46.871143000000004 ], + [ 8.4667509, 46.8712243 ], + [ 8.4667587, 46.8713065 ], + [ 8.4667613, 46.8713876 ], + [ 8.466762, 46.8713874 ], + [ 8.466823399999999, 46.8713778 ], + [ 8.4668578, 46.8713603 ], + [ 8.4668925, 46.8713265 ], + [ 8.4669133, 46.8713181 ], + [ 8.4669861, 46.8712921 ], + [ 8.4670376, 46.871284 ], + [ 8.4670857, 46.8712652 ], + [ 8.4671303, 46.8712651 ], + [ 8.4671509, 46.8712448 ], + [ 8.467187299999999, 46.8712446 ], + [ 8.4672373, 46.8712364 ], + [ 8.4672591, 46.871229 ], + [ 8.4672796, 46.8712005 ], + [ 8.4673001, 46.8711867 ], + [ 8.4673042, 46.8711629 ], + [ 8.467331399999999, 46.8711474 ], + [ 8.4673521, 46.8711479 ], + [ 8.4673657, 46.8712122 ], + [ 8.467391, 46.8712179 ], + [ 8.4674075, 46.8711868 ], + [ 8.4674325, 46.871162 ], + [ 8.4674607, 46.8711469 ], + [ 8.4675023, 46.87115 ], + [ 8.4675241, 46.8711402 ], + [ 8.4675489, 46.8711166 ], + [ 8.4676292, 46.8710887 ], + [ 8.4677474, 46.8710638 ], + [ 8.4677843, 46.871046 ], + [ 8.4678453, 46.8710283 ], + [ 8.4678922, 46.870991 ], + [ 8.4679198, 46.8709611 ], + [ 8.4679868, 46.8709274 ], + [ 8.468063, 46.8709028 ], + [ 8.4681344, 46.8708865 ], + [ 8.4681705, 46.8708675 ], + [ 8.4682688, 46.8707874 ], + [ 8.4683487, 46.8707561 ], + [ 8.4684317, 46.8707213 ], + [ 8.4684824, 46.8707002 ], + [ 8.4685578, 46.8706829 ], + [ 8.4685977, 46.8706831 ], + [ 8.4686896, 46.8706474 ], + [ 8.468757, 46.8706205 ], + [ 8.4688256, 46.8706197 ], + [ 8.4688597, 46.8706053 ], + [ 8.4688925, 46.870606 ], + [ 8.4689916, 46.8706097 ], + [ 8.4690131, 46.870623 ], + [ 8.4691022, 46.8706225 ], + [ 8.4691213, 46.8706175 ], + [ 8.4691902, 46.8706349 ], + [ 8.4692437, 46.8706556 ], + [ 8.4693464, 46.8706752 ], + [ 8.4694263, 46.8706794 ], + [ 8.4695552, 46.8706677 ], + [ 8.4696591, 46.870656 ], + [ 8.4697839, 46.8706458 ], + [ 8.469869899999999, 46.8706337 ], + [ 8.4699501, 46.8706387 ], + [ 8.4700414, 46.8706437 ], + [ 8.4701354, 46.8706311 ], + [ 8.4701878, 46.8706195 ], + [ 8.4701341, 46.8700199 ], + [ 8.4701272, 46.8697802 ], + [ 8.4702132, 46.8692189 ], + [ 8.4706472, 46.8689325 ], + [ 8.471035, 46.8685639 ], + [ 8.4713466, 46.8681265 ], + [ 8.4713612, 46.8678777 ], + [ 8.4712694, 46.8676057 ], + [ 8.4711189, 46.8674318 ], + [ 8.4708624, 46.8671844 ], + [ 8.4706061, 46.8665581 ], + [ 8.4705169, 46.86643 ], + [ 8.4704544, 46.8662045 ], + [ 8.4703424, 46.8660778 ], + [ 8.470254, 46.865799 ], + [ 8.4701022, 46.865558899999996 ], + [ 8.4694936, 46.8648721 ], + [ 8.469286, 46.8644902 ], + [ 8.4692405, 46.8642709 ], + [ 8.4691516, 46.864104 ], + [ 8.4692158, 46.8638987 ], + [ 8.4692236, 46.8636841 ], + [ 8.4690883, 46.8634623 ], + [ 8.4691326, 46.8632661 ], + [ 8.4690442, 46.862985 ], + [ 8.4691313, 46.8628665 ], + [ 8.4691771, 46.8623758 ], + [ 8.4692448, 46.8621477 ], + [ 8.4693187, 46.8620087 ], + [ 8.4688906, 46.8617928 ], + [ 8.4687483, 46.8616645 ], + [ 8.4685698, 46.8614448 ], + [ 8.4684737, 46.8613691 ], + [ 8.4684112, 46.8612251 ], + [ 8.468073799999999, 46.8608588 ], + [ 8.4679053, 46.8606414 ], + [ 8.4681237, 46.8602129 ], + [ 8.4685447, 46.859842 ], + [ 8.4686491, 46.8596095 ], + [ 8.4690726, 46.859403 ], + [ 8.4691668, 46.8591932 ], + [ 8.4689278, 46.8584482 ], + [ 8.4690763, 46.8580263 ], + [ 8.4702388, 46.8570687 ], + [ 8.4707433, 46.8565133 ], + [ 8.4708878, 46.8563332 ], + [ 8.4709321, 46.8561279 ], + [ 8.4709333, 46.8558927 ], + [ 8.4708712, 46.8556825 ], + [ 8.4706671, 46.8552641 ], + [ 8.4708438, 46.8548489 ], + [ 8.4708506, 46.8548438 ], + [ 8.4717, 46.8546874 ], + [ 8.471944, 46.8547122 ], + [ 8.4724968, 46.8548151 ], + [ 8.4738434, 46.8546051 ], + [ 8.4743933, 46.8545551 ], + [ 8.4750247, 46.8546573 ], + [ 8.4754448, 46.8546805 ], + [ 8.4759727, 46.8548556 ], + [ 8.4763467, 46.8552121 ], + [ 8.4766879, 46.8559017 ], + [ 8.4777521, 46.8566837 ], + [ 8.4780423, 46.856771 ], + [ 8.4783092, 46.8570115 ], + [ 8.4788351, 46.8570787 ], + [ 8.4793372, 46.8572721 ], + [ 8.4799928, 46.8572661 ], + [ 8.4805362, 46.8568833 ], + [ 8.4808312, 46.8565387 ], + [ 8.4812202, 46.8563103 ], + [ 8.4816307, 46.8558387 ], + [ 8.4826438, 46.8553347 ], + [ 8.483978, 46.8551606 ], + [ 8.4849999, 46.8551062 ], + [ 8.4855453, 46.8548313 ], + [ 8.486489, 46.85413 ], + [ 8.4871646, 46.8538089 ], + [ 8.4878808, 46.8535504 ], + [ 8.4887694, 46.8533893 ], + [ 8.4897111, 46.8532637 ], + [ 8.4905604, 46.853103 ], + [ 8.4930462, 46.8528102 ], + [ 8.4940692, 46.8528187 ], + [ 8.4951216, 46.8529889 ], + [ 8.496112, 46.8533396 ], + [ 8.4978512, 46.8537553 ], + [ 8.498429699999999, 46.8531652 ], + [ 8.4985154, 46.8521928 ], + [ 8.4993543, 46.8515103 ], + [ 8.5003934, 46.8510058 ], + [ 8.5020947, 46.8495056 ], + [ 8.5024977, 46.8479994 ], + [ 8.5027834, 46.8478618 ], + [ 8.503208, 46.847453 ], + [ 8.5038165, 46.8470605 ], + [ 8.5042456, 46.8468766 ], + [ 8.505343, 46.8460117 ], + [ 8.5070365, 46.8454561 ], + [ 8.5054518, 46.8448861 ], + [ 8.5056002, 46.8444349 ], + [ 8.5056329, 46.8441017 ], + [ 8.5057555, 46.8436687 ], + [ 8.5056452, 46.8433999 ], + [ 8.5058949, 46.8427678 ], + [ 8.5054698, 46.8424839 ], + [ 8.5052267, 46.8421263 ], + [ 8.504893599999999, 46.8418595 ], + [ 8.5048213, 46.8415183 ], + [ 8.5039976, 46.8409682 ], + [ 8.5025007, 46.8401905 ], + [ 8.5014161, 46.8397058 ], + [ 8.5010452, 46.8395113 ], + [ 8.4999239, 46.8391619 ], + [ 8.4983496, 46.8391045 ], + [ 8.498083, 46.8388821 ], + [ 8.4976588, 46.8386431 ], + [ 8.4970261, 46.8384691 ], + [ 8.4969321, 46.838353 ], + [ 8.4964986, 46.838312 ], + [ 8.4961015, 46.8381178 ], + [ 8.4957733, 46.8380938 ], + [ 8.4953517, 46.8379898 ], + [ 8.4949585, 46.8379934 ], + [ 8.4943637, 46.837747 ], + [ 8.4938627, 46.8375987 ], + [ 8.4930468, 46.8374443 ], + [ 8.4919921, 46.8371391 ], + [ 8.4912651, 46.836831 ], + [ 8.4908255, 46.8364752 ], + [ 8.4906233, 46.8361891 ], + [ 8.4901995, 46.8359681 ], + [ 8.4903279, 46.835831999999996 ], + [ 8.488844199999999, 46.8357107 ], + [ 8.4884801, 46.8351923 ], + [ 8.4883347, 46.8344559 ], + [ 8.488031, 46.8343417 ], + [ 8.4877233, 46.833355 ], + [ 8.4873887, 46.8329982 ], + [ 8.486217, 46.8320643 ], + [ 8.4862664, 46.8312362 ], + [ 8.486196, 46.8309849 ], + [ 8.4856915, 46.8299819 ], + [ 8.4856202, 46.8296857 ], + [ 8.485282, 46.829149 ], + [ 8.4844748, 46.8280769 ], + [ 8.4835029, 46.8273031 ], + [ 8.4833632, 46.8268545 ], + [ 8.483523, 46.8263133 ], + [ 8.4833448, 46.8259101 ], + [ 8.4836567, 46.8250975 ], + [ 8.483751999999999, 46.8246019 ], + [ 8.4837677, 46.8240619 ], + [ 8.4834291, 46.8234983 ], + [ 8.4836227, 46.8233435 ], + [ 8.4837712, 46.8222176 ], + [ 8.4837646, 46.8218758 ], + [ 8.4834891, 46.8211856 ], + [ 8.4835489, 46.8208882 ], + [ 8.4833668, 46.8202871 ], + [ 8.4836607, 46.8198976 ], + [ 8.4833917, 46.8195402 ], + [ 8.4832507, 46.8190287 ], + [ 8.482416, 46.8185595 ], + [ 8.4816155, 46.8178291 ], + [ 8.4810871, 46.817609 ], + [ 8.4812496, 46.8172027 ], + [ 8.4812688, 46.8168426 ], + [ 8.4812357, 46.8164831 ], + [ 8.4810322, 46.8161251 ], + [ 8.4804942, 46.815410299999996 ], + [ 8.4803557, 46.8150247 ], + [ 8.480047, 46.8146497 ], + [ 8.4796884, 46.814401 ], + [ 8.4787238, 46.813987 ], + [ 8.4781278, 46.8137397 ], + [ 8.4778704, 46.813690199999996 ], + [ 8.4775267, 46.8136998 ], + [ 8.4771269, 46.8137391 ], + [ 8.4766361, 46.8137696 ], + [ 8.4764763, 46.8138475 ], + [ 8.4763164, 46.8139253 ], + [ 8.476084, 46.8140165 ], + [ 8.4758681, 46.8141184 ], + [ 8.4756917, 46.814191 ], + [ 8.475408999999999, 46.8142667 ], + [ 8.4751342, 46.8143307 ], + [ 8.474833, 46.8143786 ], + [ 8.4744929, 46.8144559 ], + [ 8.4742162, 46.814503 ], + [ 8.4738259, 46.8145647 ], + [ 8.4735245, 46.8146069 ], + [ 8.4733046, 46.81463 ], + [ 8.4731515, 46.8146737 ], + [ 8.4729915, 46.8147458 ], + [ 8.472825, 46.8148578 ], + [ 8.4726743, 46.8149466 ], + [ 8.4724405, 46.8150096 ], + [ 8.4722362, 46.8150321 ], + [ 8.471992, 46.8150672 ], + [ 8.471779, 46.8150675 ], + [ 8.4714505, 46.8150596 ], + [ 8.4711783, 46.8150447 ], + [ 8.470929, 46.8149894 ], + [ 8.470612, 46.8148965 ], + [ 8.4703557, 46.8148585 ], + [ 8.4700343, 46.8148392 ], + [ 8.469759700000001, 46.8149146 ], + [ 8.4695356, 46.8150167 ], + [ 8.4693196, 46.8151132 ], + [ 8.4689808, 46.8152128 ], + [ 8.4686908, 46.8151644 ], + [ 8.4685084, 46.8151355 ], + [ 8.4682977, 46.8150399 ], + [ 8.4680694, 46.8149219 ], + [ 8.4678494, 46.8148094 ], + [ 8.4676809, 46.814735 ], + [ 8.4674083, 46.8146974 ], + [ 8.4671861, 46.8146866 ], + [ 8.4669641, 46.8146816 ], + [ 8.4667281, 46.8147163 ], + [ 8.4665245, 46.8147332 ], + [ 8.4663717, 46.8147939 ], + [ 8.4661614, 46.8148506 ], + [ 8.465861, 46.8148984 ], + [ 8.4656413, 46.8149327 ], + [ 8.465406399999999, 46.8149843 ], + [ 8.4652198, 46.8150346 ], + [ 8.4648985, 46.8151508 ], + [ 8.4645119, 46.8152745 ], + [ 8.464207, 46.8153958 ], + [ 8.4638602, 46.815507 ], + [ 8.4636034, 46.8156101 ], + [ 8.4633521, 46.8156621 ], + [ 8.4632131, 46.8156717 ], + [ 8.4630386, 46.8156257 ], + [ 8.4628621, 46.8155628 ], + [ 8.4626852, 46.8154773 ], + [ 8.46245, 46.8153823 ], + [ 8.4621751, 46.8153108 ], + [ 8.4620089, 46.8152703 ], + [ 8.4618636, 46.815167 ], + [ 8.4617054, 46.8149851 ], + [ 8.4615667, 46.8147122 ], + [ 8.461461, 46.8144499 ], + [ 8.4613786, 46.814294 ], + [ 8.4612745, 46.8142066 ], + [ 8.4610905, 46.8141327 ], + [ 8.460681, 46.8140028 ], + [ 8.460185, 46.813802 ], + [ 8.4599557, 46.8136729 ], + [ 8.4597425, 46.813532 ], + [ 8.4595107, 46.8134875 ], + [ 8.4592316, 46.8134952 ], + [ 8.459083, 46.8134767 ], + [ 8.4589823, 46.8134343 ], + [ 8.4588382, 46.8133481 ], + [ 8.4585981, 46.8131684 ], + [ 8.4583336, 46.8130007 ], + [ 8.458056, 46.8128729 ], + [ 8.4576712, 46.812748 ], + [ 8.4572304, 46.8126473 ], + [ 8.4570478, 46.8126072 ], + [ 8.4569447, 46.8125253 ], + [ 8.4568448, 46.812353 ], + [ 8.4567231, 46.8122378 ], + [ 8.4565972, 46.8123372 ], + [ 8.4563938, 46.8123655 ], + [ 8.4560245, 46.81237 ], + [ 8.4556945, 46.8123284 ], + [ 8.455323, 46.8122991 ], + [ 8.4550189, 46.8122849 ], + [ 8.4547232, 46.8122818 ], + [ 8.4545418, 46.8122641 ], + [ 8.4544002, 46.8122229 ], + [ 8.4543065, 46.8121633 ], + [ 8.4543064, 46.8120279 ], + [ 8.4542406, 46.8118829 ], + [ 8.4541306, 46.8118239 ], + [ 8.4539279, 46.8117166 ], + [ 8.4536332, 46.8115892 ], + [ 8.4532984, 46.8114686 ], + [ 8.45323, 46.8114468 ], + [ 8.4531918, 46.8114607 ], + [ 8.4529868, 46.8115338 ], + [ 8.4528394, 46.8115788 ], + [ 8.4526747, 46.8116182 ], + [ 8.4525189, 46.8116069 ], + [ 8.4522726, 46.8115731 ], + [ 8.4521907, 46.8115282 ], + [ 8.4521249, 46.8114718 ], + [ 8.4518705, 46.8113987 ], + [ 8.4516901, 46.8113424 ], + [ 8.4514765, 46.8112638 ], + [ 8.4513698, 46.8112074 ], + [ 8.451213599999999, 46.8111792 ], + [ 8.4510493, 46.8111512 ], + [ 8.4509014, 46.8111229 ], + [ 8.4507625, 46.8110949 ], + [ 8.4505812, 46.8110386 ], + [ 8.4503517, 46.8110273 ], + [ 8.4501133, 46.8109767 ], + [ 8.4499168, 46.8109373 ], + [ 8.4496701, 46.8109261 ], + [ 8.4496372, 46.8108753 ], + [ 8.4496371, 46.8107798 ], + [ 8.4496288, 46.8106897 ], + [ 8.4496459, 46.8105941 ], + [ 8.449662, 46.8105378 ], + [ 8.4495963, 46.8103972 ], + [ 8.4495144, 46.8103071 ], + [ 8.4494485, 46.8102453 ], + [ 8.4493825, 46.8101327 ], + [ 8.4493169, 46.8100427 ], + [ 8.4492187, 46.8099134 ], + [ 8.4491199, 46.8098008 ], + [ 8.4489558, 46.8096939 ], + [ 8.448791, 46.8095532 ], + [ 8.4486439, 46.80948 ], + [ 8.4485858, 46.8094408 ], + [ 8.4484714, 46.8093676 ], + [ 8.4482819, 46.8092606 ], + [ 8.4480853, 46.8091707 ], + [ 8.4479535, 46.8090862 ], + [ 8.4477974, 46.8090131 ], + [ 8.4476827, 46.808968 ], + [ 8.4475759, 46.8089046 ], + [ 8.4474525, 46.808965 ], + [ 8.4473437, 46.8090583 ], + [ 8.4471852, 46.8091643 ], + [ 8.4469832, 46.8092264 ], + [ 8.4467587, 46.8093059 ], + [ 8.4465195, 46.809431000000004 ], + [ 8.4463864, 46.809542 ], + [ 8.4462618, 46.809664 ], + [ 8.446111, 46.8097471 ], + [ 8.445971, 46.8098809 ], + [ 8.4459446, 46.8100001 ], + [ 8.4458769, 46.8101035 ], + [ 8.4456352, 46.8101837 ], + [ 8.4453373, 46.8102822 ], + [ 8.4449327, 46.8102368 ], + [ 8.4447, 46.8101867 ], + [ 8.4445379, 46.8102308 ], + [ 8.4444586, 46.8104136 ], + [ 8.4442818, 46.8103338 ], + [ 8.4440342, 46.810318 ], + [ 8.4439778, 46.8101897 ], + [ 8.4440279, 46.8100642 ], + [ 8.4441468, 46.8099875 ], + [ 8.4442903, 46.8099102 ], + [ 8.4444384, 46.8097706 ], + [ 8.4445201, 46.8096272 ], + [ 8.4444125, 46.8096132 ], + [ 8.4442719, 46.8095833 ], + [ 8.4440092, 46.8095905 ], + [ 8.4437799, 46.8095911 ], + [ 8.443871, 46.80947 ], + [ 8.4439325, 46.8093893 ], + [ 8.443958, 46.8092588 ], + [ 8.4436951, 46.8092604 ], + [ 8.4434825, 46.8092775 ], + [ 8.4432625, 46.8092949 ], + [ 8.4430935, 46.8093616 ], + [ 8.4428865, 46.8094633 ], + [ 8.4426038, 46.8095388 ], + [ 8.4420757, 46.8096324 ], + [ 8.4417743, 46.8096745 ], + [ 8.4416177, 46.8096675 ], + [ 8.4415896, 46.8096062 ], + [ 8.4416255, 46.809514899999996 ], + [ 8.4416779, 46.8094231 ], + [ 8.4416377, 46.8092888 ], + [ 8.4415815, 46.8091718 ], + [ 8.4415196, 46.8092356 ], + [ 8.4413995, 46.8092952 ], + [ 8.4412253, 46.809396 ], + [ 8.4409906, 46.8094589 ], + [ 8.4409205, 46.8093874 ], + [ 8.4408406, 46.8092712 ], + [ 8.4407233, 46.8090881 ], + [ 8.4406551, 46.8088979 ], + [ 8.4406335, 46.8086615 ], + [ 8.4405821, 46.808629 ], + [ 8.4404824, 46.8085979 ], + [ 8.4404542, 46.808531 ], + [ 8.4404459, 46.8083957 ], + [ 8.440408099999999, 46.8081652 ], + [ 8.4403677, 46.8080195 ], + [ 8.4402541, 46.8078985 ], + [ 8.4401032, 46.8078461 ], + [ 8.4398227, 46.8078201 ], + [ 8.4395435, 46.8078221 ], + [ 8.4392429, 46.8078642 ], + [ 8.4345301, 46.8099863 ], + [ 8.4343397, 46.8100988 ], + [ 8.4341344, 46.8102455 ], + [ 8.4340654, 46.8103208 ], + [ 8.433871, 46.8105237 ], + [ 8.4335649, 46.8107579 ], + [ 8.4331356, 46.8111479 ], + [ 8.4328615, 46.8113812 ], + [ 8.4325559, 46.811638 ], + [ 8.432369, 46.8118069 ], + [ 8.4320447, 46.8120302 ], + [ 8.4318707, 46.8121422 ], + [ 8.4316721, 46.812255 ], + [ 8.4314761, 46.8124184 ], + [ 8.4313106, 46.8125471 ], + [ 8.4312102, 46.8126515 ], + [ 8.4310842, 46.8127508 ], + [ 8.4308321, 46.8129328 ], + [ 8.4304828, 46.8131343 ], + [ 8.4301244, 46.8133304 ], + [ 8.429711, 46.8135618 ], + [ 8.4293026, 46.8138892 ], + [ 8.4290363, 46.8141053 ], + [ 8.4288467, 46.8143927 ], + [ 8.4286337, 46.8148333 ], + [ 8.428468, 46.8150862 ], + [ 8.4283727, 46.8152921 ], + [ 8.4283555, 46.8155635 ], + [ 8.4283013, 46.8159093 ], + [ 8.4282774, 46.8162149 ], + [ 8.4282356, 46.8163458 ], + [ 8.4280968, 46.8165021 ], + [ 8.4277979, 46.8167304 ], + [ 8.4274458, 46.8170448 ], + [ 8.4272041, 46.817266 ], + [ 8.426923, 46.817522 ], + [ 8.4267046, 46.8177144 ], + [ 8.4266408, 46.8178967 ], + [ 8.4266246, 46.818044 ], + [ 8.4265794, 46.8182597 ], + [ 8.4265015, 46.8184763 ], + [ 8.4263733, 46.8186774 ], + [ 8.4262114, 46.8188682 ], + [ 8.4264381, 46.8189466 ], + [ 8.4262741, 46.8193857 ], + [ 8.4261115, 46.8198531 ], + [ 8.425957, 46.8203147 ], + [ 8.4258221, 46.8206852 ], + [ 8.4253668, 46.8216347 ], + [ 8.4252363, 46.8219319 ], + [ 8.4251727, 46.8221256 ], + [ 8.4251274, 46.8223357 ], + [ 8.4252074, 46.8225876 ], + [ 8.4253259, 46.8227988 ], + [ 8.4254513, 46.8229817 ], + [ 8.4257371, 46.8232449 ], + [ 8.4259946, 46.823441 ], + [ 8.4262981, 46.8237263 ], + [ 8.4266142, 46.8239492 ], + [ 8.4268298, 46.8241351 ], + [ 8.427138, 46.8243694 ], + [ 8.4273955, 46.8245657 ], + [ 8.4276423, 46.8247114 ], + [ 8.4278636, 46.824852 ], + [ 8.4280347, 46.8249772 ], + [ 8.4281426, 46.8251437 ], + [ 8.4281956, 46.8253567 ], + [ 8.4282323, 46.8255702 ], + [ 8.4283414, 46.8257536 ], + [ 8.4284796, 46.8258739 ], + [ 8.428624899999999, 46.8259829 ], + [ 8.4288218, 46.8261299 ], + [ 8.4289824, 46.8263569 ], + [ 8.4290963, 46.8266248 ], + [ 8.429789, 46.8291406 ], + [ 8.430170799999999, 46.8293672 ], + [ 8.4303521, 46.8293793 ], + [ 8.4304843, 46.8293982 ], + [ 8.4305029, 46.8294315 ], + [ 8.4304176, 46.8295129 ], + [ 8.4302962, 46.8295501 ], + [ 8.4301617, 46.8296328 ], + [ 8.430223, 46.8297102 ], + [ 8.4303925, 46.8297958 ], + [ 8.4307416, 46.8300235 ], + [ 8.430929, 46.8301481 ], + [ 8.4310553, 46.8302011 ], + [ 8.4313022, 46.830216899999996 ], + [ 8.4316797, 46.8302066 ], + [ 8.4316903, 46.8302458 ], + [ 8.4317045, 46.8303528 ], + [ 8.4317494, 46.8304305 ], + [ 8.4318148, 46.8304231 ], + [ 8.4318943, 46.8303813 ], + [ 8.4320298, 46.8303099 ], + [ 8.4321794, 46.8303396 ], + [ 8.432322, 46.8303866 ], + [ 8.4325996, 46.8305089 ], + [ 8.4328034, 46.830633 ], + [ 8.4329847, 46.8307806 ], + [ 8.4332575, 46.8309594 ], + [ 8.4335129, 46.8311218 ], + [ 8.433679, 46.8311568 ], + [ 8.433774, 46.8312444 ], + [ 8.4338397, 46.8313838 ], + [ 8.4335323, 46.8314656 ], + [ 8.4331936, 46.8315765 ], + [ 8.4329237, 46.8317363 ], + [ 8.4330408, 46.8317783 ], + [ 8.433194199999999, 46.8318756 ], + [ 8.4333709, 46.8319498 ], + [ 8.4334833, 46.8320484 ], + [ 8.4335809, 46.8321868 ], + [ 8.4336547, 46.8323259 ], + [ 8.4337227, 46.8325047 ], + [ 8.4338707, 46.8326644 ], + [ 8.4339725, 46.832718 ], + [ 8.4341806, 46.8327632 ], + [ 8.4344322, 46.832858 ], + [ 8.4347074, 46.8329408 ], + [ 8.4349671, 46.8330296 ], + [ 8.4351393, 46.8331716 ], + [ 8.4351383, 46.8332959 ], + [ 8.4351198, 46.8334036 ], + [ 8.4351673, 46.8336677 ], + [ 8.4351689, 46.8338426 ], + [ 8.4351951, 46.8340169 ], + [ 8.4352783, 46.8341726 ], + [ 8.4354413, 46.8343038 ], + [ 8.4356381, 46.8344452 ], + [ 8.4357411, 46.8345213 ], + [ 8.4357528, 46.8345774 ], + [ 8.4357412, 46.8346624 ], + [ 8.4356806, 46.8347488 ], + [ 8.4355849, 46.8348022 ], + [ 8.4355079, 46.8348947 ], + [ 8.435472, 46.8349916 ], + [ 8.4354792, 46.83511 ], + [ 8.4355085, 46.8351882 ], + [ 8.4355368, 46.8352608 ], + [ 8.435551, 46.835362 ], + [ 8.4355479, 46.835458 ], + [ 8.4355235, 46.8355999 ], + [ 8.4354722, 46.8357086 ], + [ 8.4354621, 46.8358273 ], + [ 8.435490099999999, 46.8358774 ], + [ 8.4355432, 46.835955 ], + [ 8.4355901, 46.8360554 ], + [ 8.4355963, 46.836168 ], + [ 8.4355988, 46.8363486 ], + [ 8.4355814, 46.8364733 ], + [ 8.4356203, 46.8365795 ], + [ 8.4357399, 46.8366666 ], + [ 8.4358431, 46.836754 ], + [ 8.4359613, 46.836813 ], + [ 8.4360982, 46.8369052 ], + [ 8.4361427, 46.8369604 ], + [ 8.4362309, 46.8370765 ], + [ 8.436272, 46.8372165 ], + [ 8.4362861, 46.8373178 ], + [ 8.4363416, 46.8374348 ], + [ 8.4364433, 46.8374885 ], + [ 8.4365196, 46.8375371 ], + [ 8.4367045, 46.8376111 ], + [ 8.4368965, 46.837668 ], + [ 8.4371128, 46.8377129 ], + [ 8.4372052, 46.8377499 ], + [ 8.4372661, 46.8378046 ], + [ 8.437285, 46.837854899999996 ], + [ 8.4373062, 46.8379334 ], + [ 8.4373274, 46.8380174 ], + [ 8.4373885, 46.8380892 ], + [ 8.4374658, 46.8381492 ], + [ 8.4375666, 46.8381916 ], + [ 8.4377021, 46.8382557 ], + [ 8.4378509, 46.8382798 ], + [ 8.4380685, 46.8383528 ], + [ 8.4380884, 46.8384088 ], + [ 8.4381237, 46.838453 ], + [ 8.4381462, 46.8385653 ], + [ 8.4381595, 46.8387964 ], + [ 8.4381319, 46.8390286 ], + [ 8.4380356, 46.8392231 ], + [ 8.4379575, 46.8394342 ], + [ 8.4379231, 46.8397005 ], + [ 8.4378735, 46.839984 ], + [ 8.4378693, 46.8401987 ], + [ 8.437865, 46.8404077 ], + [ 8.437922499999999, 46.8405472 ], + [ 8.4380761, 46.840656 ], + [ 8.4381641, 46.8407608 ], + [ 8.4382588, 46.8408316 ], + [ 8.4383128, 46.8409148 ], + [ 8.4383167, 46.8409938 ], + [ 8.4383213, 46.8410669 ], + [ 8.4382971, 46.8412201 ], + [ 8.4382592, 46.8414244 ], + [ 8.438214, 46.8416401 ], + [ 8.4382143, 46.8417869 ], + [ 8.4382101, 46.8420016 ], + [ 8.4381996, 46.8420978 ], + [ 8.4381614, 46.842161 ], + [ 8.4380856, 46.8422703 ], + [ 8.4379827, 46.8423351 ], + [ 8.4378566, 46.842429 ], + [ 8.4377236, 46.8425456 ], + [ 8.4376069, 46.8426616 ], + [ 8.4375323, 46.8427879 ], + [ 8.437549, 46.8429398 ], + [ 8.4375738, 46.8430803 ], + [ 8.4376456, 46.8431968 ], + [ 8.4377031, 46.8433364 ], + [ 8.4377596, 46.8434703 ], + [ 8.4377599, 46.8436171 ], + [ 8.4377262, 46.8437422 ], + [ 8.4376682, 46.8438849 ], + [ 8.4376265, 46.844157 ], + [ 8.437543, 46.8444247 ], + [ 8.4375294, 46.844617 ], + [ 8.4375847, 46.8447284 ], + [ 8.4376387, 46.8448117 ], + [ 8.4377251, 46.844877 ], + [ 8.4377873, 46.8449599 ], + [ 8.4378343, 46.8450659 ], + [ 8.4378475, 46.8451559 ], + [ 8.437856, 46.8453081 ], + [ 8.4378669, 46.8454941 ], + [ 8.4378277, 46.8456814 ], + [ 8.4378126, 46.84584 ], + [ 8.4377969, 46.8460041 ], + [ 8.4377503, 46.8461916 ], + [ 8.4377248, 46.8463165 ], + [ 8.4377171, 46.8464749 ], + [ 8.4377293, 46.846689 ], + [ 8.4377417, 46.84705 ], + [ 8.4383595, 46.8534141 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "JBG0017", + "country" : "CHE", + "name" : [ + { + "text" : "Eidgenössisches Jagdbanngebiet Hahnen", + "lang" : "de-CH" + }, + { + "text" : "District franc fédéral Hahnen", + "lang" : "fr-CH" + }, + { + "text" : "Bandita federale di caccia Hahnen", + "lang" : "it-CH" + }, + { + "text" : "Federal Game Reserve Hahnen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.2276665, 47.2732765 ], + [ 8.2275936, 47.2738728 ], + [ 8.2270577, 47.2758193 ], + [ 8.2263279, 47.2778433 ], + [ 8.2261143, 47.2787318 ], + [ 8.2259146, 47.2794604 ], + [ 8.2253411, 47.2806543 ], + [ 8.2246323, 47.2819979 ], + [ 8.2260823, 47.2825317 ], + [ 8.2261345, 47.2825492 ], + [ 8.2261474, 47.2825325 ], + [ 8.226199, 47.2824738 ], + [ 8.2262438, 47.2824236 ], + [ 8.2262524, 47.2824082 ], + [ 8.2262855, 47.2823495 ], + [ 8.2263574, 47.282241 ], + [ 8.2265088, 47.2820219 ], + [ 8.2266124, 47.2818347 ], + [ 8.2267297, 47.2816405 ], + [ 8.2267741, 47.2815175 ], + [ 8.2268161, 47.2814127 ], + [ 8.2268232, 47.281341 ], + [ 8.226808, 47.2812781 ], + [ 8.2267609, 47.2811805 ], + [ 8.2267536, 47.2811231 ], + [ 8.2267817, 47.2810523 ], + [ 8.226859, 47.280935 ], + [ 8.2269632, 47.2807647 ], + [ 8.2271381, 47.2804671 ], + [ 8.2271849, 47.2802965 ], + [ 8.2271869, 47.2802892 ], + [ 8.2272178, 47.2801034 ], + [ 8.2272304, 47.2800021 ], + [ 8.2272593, 47.2798829 ], + [ 8.2272737, 47.2798173 ], + [ 8.227325, 47.2797386 ], + [ 8.2273881, 47.2796112 ], + [ 8.227454, 47.2794908 ], + [ 8.2275081, 47.2794131 ], + [ 8.2275751, 47.2793958 ], + [ 8.2275826, 47.2793933 ], + [ 8.2276736, 47.2793625 ], + [ 8.2277209, 47.2792928 ], + [ 8.2277445, 47.2791934 ], + [ 8.2277439, 47.2791408 ], + [ 8.2277663, 47.2790229 ], + [ 8.2277737, 47.2789838 ], + [ 8.2278226, 47.2788089 ], + [ 8.2278287, 47.2786942 ], + [ 8.2278328, 47.2786173 ], + [ 8.2278215, 47.2784711 ], + [ 8.2278168, 47.2784089 ], + [ 8.2278518, 47.2782261 ], + [ 8.227946, 47.2780559 ], + [ 8.2279841, 47.2779048 ], + [ 8.228005, 47.2778064 ], + [ 8.2280062, 47.2776635 ], + [ 8.2280118, 47.2775503 ], + [ 8.2280602, 47.2774657 ], + [ 8.2281119, 47.2774217 ], + [ 8.2281287, 47.2773274 ], + [ 8.2281194, 47.277298 ], + [ 8.2281045, 47.2772511 ], + [ 8.2281257, 47.2771825 ], + [ 8.2281925, 47.2771345 ], + [ 8.2282411, 47.2770608 ], + [ 8.2283185, 47.2769869 ], + [ 8.2283782, 47.276924 ], + [ 8.228478, 47.2768907 ], + [ 8.2285278, 47.2768512 ], + [ 8.2285447, 47.2768378 ], + [ 8.2285465, 47.2768151 ], + [ 8.2285495, 47.2767772 ], + [ 8.2285033, 47.2767527 ], + [ 8.228457, 47.2767281 ], + [ 8.2284166, 47.2766707 ], + [ 8.2284014, 47.2765438 ], + [ 8.2283771, 47.2764605 ], + [ 8.228405, 47.276377 ], + [ 8.2284922, 47.276318 ], + [ 8.2285533, 47.2762531 ], + [ 8.228591, 47.2761959 ], + [ 8.2285992, 47.2761834 ], + [ 8.2285984, 47.2761774 ], + [ 8.2285931, 47.2761348 ], + [ 8.2285434, 47.2761033 ], + [ 8.2285277, 47.2760488 ], + [ 8.2285698, 47.2760119 ], + [ 8.2286287, 47.2759391 ], + [ 8.2286375, 47.2759281 ], + [ 8.2286367, 47.2758537 ], + [ 8.2285925, 47.2758096 ], + [ 8.2285784, 47.2757954 ], + [ 8.2285785, 47.2757608 ], + [ 8.2285786, 47.2756892 ], + [ 8.2285716, 47.275677 ], + [ 8.2285408, 47.2756229 ], + [ 8.2285533, 47.2755127 ], + [ 8.2285563, 47.2754154 ], + [ 8.2285115, 47.2753373 ], + [ 8.2284, 47.2753012 ], + [ 8.2283349, 47.2752479 ], + [ 8.2282737, 47.2751817 ], + [ 8.2282259, 47.2750818 ], + [ 8.2282051, 47.274938 ], + [ 8.2281942, 47.2748159 ], + [ 8.2282016, 47.2747405 ], + [ 8.2281788, 47.2746662 ], + [ 8.2281823, 47.2746165 ], + [ 8.2281636, 47.2745392 ], + [ 8.2281624, 47.2744241 ], + [ 8.2281297, 47.274328 ], + [ 8.2281271, 47.2742168 ], + [ 8.2281134, 47.2740968 ], + [ 8.2281057, 47.2740155 ], + [ 8.2281529, 47.2739457 ], + [ 8.2281368, 47.2738565 ], + [ 8.2280753, 47.2737576 ], + [ 8.2280257, 47.2736442 ], + [ 8.227945, 47.2735181 ], + [ 8.2278729, 47.27345 ], + [ 8.2277792, 47.2734148 ], + [ 8.2276963, 47.2733726 ], + [ 8.2276767, 47.273331 ], + [ 8.2276665, 47.2732765 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "KTAG103", + "country" : "CHE", + "name" : [ + { + "text" : "Hallwilersee, Erlenhölzli", + "lang" : "de-CH" + }, + { + "text" : "Hallwilersee, Erlenhölzli", + "lang" : "fr-CH" + }, + { + "text" : "Hallwilersee, Erlenhölzli", + "lang" : "it-CH" + }, + { + "text" : "Hallwilersee, Erlenhölzli", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "regulationExemption" : "NO", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "schedule" : [ + { + "day" : [ "ANY" ], + "startTime" : "00:00:00.00+01:00", + "endTime" : "00:00:00.00+01:00" + } + ] + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Aargau", + "lang" : "de-CH" + }, + { + "text" : "Canton d'Argovie", + "lang" : "fr-CH" + }, + { + "text" : "Canton Argovia", + "lang" : "it-CH" + }, + { + "text" : "Canton of Aargau", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Departement Bau, Verkehr und Umwelt (BVU)", + "lang" : "de-CH" + }, + { + "text" : "Département de la construction, des transports et de l'environnement (CTE)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento delle costruzioni, dei trasporti e dell'ambiente (CTA)", + "lang" : "it-CH" + }, + { + "text" : "Department of Civil Engineering,Transport and Environment (CTE)", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Sektion Gewässernutzung", + "lang" : "de-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "fr-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "it-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ag.ch/de/verwaltung/bvu/umwelt-natur-landschaft/hochwasserschutz-gewaesser/gewaessernutzung", + "email" : "alg@ag.ch", + "phone" : "0041 62 835 34 50", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 5.9803882999999995, 46.1670229 ], + [ 5.9805945, 46.1680296 ], + [ 5.9812188, 46.1682649 ], + [ 5.9825731, 46.1684003 ], + [ 5.983911, 46.1682011 ], + [ 5.9850664, 46.1676919 ], + [ 5.9858959, 46.1669359 ], + [ 5.9862967, 46.166027 ], + [ 5.9863997, 46.1654343 ], + [ 5.9866245, 46.1650335 ], + [ 5.9868847, 46.164188 ], + [ 5.986972, 46.1629703 ], + [ 5.9869286, 46.1624122 ], + [ 5.9866328, 46.16112 ], + [ 5.9864887, 46.1598879 ], + [ 5.9861643, 46.1590068 ], + [ 5.9858668999999995, 46.158697599999996 ], + [ 5.9857858, 46.1580678 ], + [ 5.9851395, 46.1571694 ], + [ 5.984065, 46.1564974 ], + [ 5.9827115, 46.156145 ], + [ 5.9823563, 46.1561024 ], + [ 5.9811055, 46.1560941 ], + [ 5.9799158, 46.1563626 ], + [ 5.9789106, 46.1568801 ], + [ 5.9781943, 46.1575927 ], + [ 5.9774228, 46.1587083 ], + [ 5.9756671, 46.1598588 ], + [ 5.9756409, 46.1598677 ], + [ 5.9755317, 46.1599475 ], + [ 5.9752965, 46.1601017 ], + [ 5.9753087, 46.1601107 ], + [ 5.9753003, 46.1601168 ], + [ 5.9757832, 46.1609201 ], + [ 5.9764016, 46.1619487 ], + [ 5.976404, 46.1619527 ], + [ 5.9764064, 46.1619567 ], + [ 5.9764089, 46.1619607 ], + [ 5.9764113, 46.1619647 ], + [ 5.9764137999999996, 46.1619687 ], + [ 5.9764162, 46.1619727 ], + [ 5.9764187, 46.1619767 ], + [ 5.9764212, 46.1619807 ], + [ 5.9764236, 46.1619846 ], + [ 5.9764261, 46.1619886 ], + [ 5.9764286, 46.1619926 ], + [ 5.9764312, 46.1619966 ], + [ 5.9764337, 46.1620005 ], + [ 5.9764362, 46.1620045 ], + [ 5.9764388, 46.1620085 ], + [ 5.9764413, 46.1620124 ], + [ 5.9764439, 46.1620164 ], + [ 5.9764464, 46.1620204 ], + [ 5.976449, 46.1620243 ], + [ 5.9764516, 46.1620283 ], + [ 5.9764542, 46.1620322 ], + [ 5.9764568, 46.1620362 ], + [ 5.9764593999999995, 46.1620401 ], + [ 5.976462, 46.1620441 ], + [ 5.9764647, 46.162048 ], + [ 5.9764672999999995, 46.1620519 ], + [ 5.97647, 46.1620559 ], + [ 5.9764726, 46.1620598 ], + [ 5.9764753, 46.1620637 ], + [ 5.976478, 46.1620676 ], + [ 5.9764807, 46.1620715 ], + [ 5.9764833, 46.1620755 ], + [ 5.9764861, 46.1620794 ], + [ 5.9764888, 46.1620833 ], + [ 5.9764915, 46.1620872 ], + [ 5.9764942, 46.1620911 ], + [ 5.976497, 46.162095 ], + [ 5.9764997, 46.1620989 ], + [ 5.9765025, 46.1621028 ], + [ 5.9765052, 46.1621067 ], + [ 5.976508, 46.1621106 ], + [ 5.9765108, 46.1621145 ], + [ 5.9765136, 46.1621183 ], + [ 5.9765163999999995, 46.1621222 ], + [ 5.9765192, 46.1621261 ], + [ 5.976522, 46.16213 ], + [ 5.9765249, 46.1621338 ], + [ 5.9765277, 46.1621377 ], + [ 5.9765306, 46.1621416 ], + [ 5.9765334, 46.1621454 ], + [ 5.9765363, 46.1621493 ], + [ 5.9765391999999995, 46.1621531 ], + [ 5.9765421, 46.162157 ], + [ 5.9765449, 46.1621609 ], + [ 5.9765478, 46.1621647 ], + [ 5.9765508, 46.1621685 ], + [ 5.9765537, 46.1621724 ], + [ 5.9765566, 46.1621762 ], + [ 5.9765595, 46.16218 ], + [ 5.9765625, 46.1621839 ], + [ 5.9765654999999995, 46.1621877 ], + [ 5.9765684, 46.1621915 ], + [ 5.9765714, 46.1621953 ], + [ 5.9765744, 46.1621991 ], + [ 5.9765774, 46.162203 ], + [ 5.9765804, 46.1622068 ], + [ 5.9765834, 46.1622106 ], + [ 5.9765864, 46.1622144 ], + [ 5.9765894, 46.1622182 ], + [ 5.9765925, 46.162222 ], + [ 5.9765955, 46.1622258 ], + [ 5.9765986, 46.1622295 ], + [ 5.9766016, 46.1622333 ], + [ 5.9766047, 46.1622371 ], + [ 5.9766078, 46.1622409 ], + [ 5.9766108, 46.1622447 ], + [ 5.9766139, 46.1622484 ], + [ 5.9766171, 46.1622522 ], + [ 5.9766202, 46.162256 ], + [ 5.9766233, 46.1622597 ], + [ 5.9766264, 46.1622635 ], + [ 5.9766296, 46.1622672 ], + [ 5.9766327, 46.162271 ], + [ 5.9766359, 46.1622747 ], + [ 5.976639, 46.1622785 ], + [ 5.9766422, 46.1622822 ], + [ 5.9766454, 46.1622859 ], + [ 5.9766486, 46.1622897 ], + [ 5.9766518, 46.1622934 ], + [ 5.976655, 46.1622971 ], + [ 5.9766582, 46.1623009 ], + [ 5.9766614, 46.1623046 ], + [ 5.9766647, 46.1623083 ], + [ 5.9766679, 46.162312 ], + [ 5.9766712, 46.1623157 ], + [ 5.9766744, 46.1623194 ], + [ 5.9797648, 46.1658203 ], + [ 5.9797683, 46.1658244 ], + [ 5.9797719, 46.1658284 ], + [ 5.9797755, 46.1658325 ], + [ 5.979779, 46.1658365 ], + [ 5.9797825, 46.1658406 ], + [ 5.9797861, 46.1658447 ], + [ 5.9797896, 46.1658487 ], + [ 5.9797931, 46.1658528 ], + [ 5.9797966, 46.1658569 ], + [ 5.9798001, 46.165861 ], + [ 5.9798036, 46.1658651 ], + [ 5.979807, 46.1658692 ], + [ 5.9798105, 46.1658733 ], + [ 5.9798139, 46.1658774 ], + [ 5.9798174, 46.1658815 ], + [ 5.9798208, 46.1658856 ], + [ 5.9798241999999995, 46.1658897 ], + [ 5.9798276999999995, 46.1658938 ], + [ 5.9798311, 46.1658979 ], + [ 5.9798345, 46.165902 ], + [ 5.9798379, 46.1659061 ], + [ 5.9798413, 46.1659103 ], + [ 5.9798446, 46.1659144 ], + [ 5.979848, 46.1659185 ], + [ 5.9798514, 46.1659227 ], + [ 5.9798547, 46.1659268 ], + [ 5.979858, 46.165931 ], + [ 5.9798614, 46.1659351 ], + [ 5.9798647, 46.1659393 ], + [ 5.979868, 46.1659434 ], + [ 5.9798713, 46.1659476 ], + [ 5.9798746, 46.1659517 ], + [ 5.9798779, 46.1659559 ], + [ 5.9798812, 46.1659601 ], + [ 5.9798843999999995, 46.1659642 ], + [ 5.9798877, 46.1659684 ], + [ 5.9798909, 46.1659726 ], + [ 5.9798942, 46.1659768 ], + [ 5.9798974, 46.165981 ], + [ 5.9799006, 46.1659852 ], + [ 5.9799038, 46.1659894 ], + [ 5.979907, 46.1659935 ], + [ 5.9799102, 46.1659977 ], + [ 5.9799134, 46.166002 ], + [ 5.9799166, 46.1660062 ], + [ 5.9799198, 46.1660104 ], + [ 5.9799229, 46.1660146 ], + [ 5.9799261, 46.1660188 ], + [ 5.9799292, 46.166023 ], + [ 5.9799323, 46.1660272 ], + [ 5.9799354, 46.1660315 ], + [ 5.9799385, 46.1660357 ], + [ 5.9799416999999995, 46.1660399 ], + [ 5.9799447, 46.1660442 ], + [ 5.9799478, 46.1660484 ], + [ 5.9799509, 46.1660526 ], + [ 5.979954, 46.1660569 ], + [ 5.979957, 46.1660611 ], + [ 5.9799601, 46.1660654 ], + [ 5.9799631, 46.1660696 ], + [ 5.9799661, 46.1660739 ], + [ 5.9799692, 46.1660782 ], + [ 5.9799722, 46.1660824 ], + [ 5.9799752, 46.1660867 ], + [ 5.9799782, 46.166091 ], + [ 5.9799811, 46.1660952 ], + [ 5.9799841, 46.1660995 ], + [ 5.9799871, 46.1661038 ], + [ 5.97999, 46.1661081 ], + [ 5.979993, 46.1661124 ], + [ 5.9799959, 46.1661167 ], + [ 5.9799988, 46.166121 ], + [ 5.9800017, 46.1661253 ], + [ 5.9800047, 46.1661295 ], + [ 5.9800076, 46.1661338 ], + [ 5.9800105, 46.1661382 ], + [ 5.9800132999999995, 46.1661425 ], + [ 5.9800162, 46.1661468 ], + [ 5.9800191, 46.1661511 ], + [ 5.9800219, 46.1661554 ], + [ 5.9800248, 46.1661597 ], + [ 5.9800276, 46.166164 ], + [ 5.9800304, 46.1661684 ], + [ 5.9800332, 46.1661727 ], + [ 5.980036, 46.166177 ], + [ 5.9800388, 46.1661814 ], + [ 5.9800416, 46.1661857 ], + [ 5.9800444, 46.16619 ], + [ 5.9800471, 46.1661944 ], + [ 5.9800499, 46.1661987 ], + [ 5.9800527, 46.1662031 ], + [ 5.9800553999999995, 46.1662074 ], + [ 5.9800581, 46.1662118 ], + [ 5.9800608, 46.1662161 ], + [ 5.9800636, 46.1662205 ], + [ 5.9800661999999996, 46.1662249 ], + [ 5.9800689, 46.1662292 ], + [ 5.9800716, 46.1662336 ], + [ 5.9800743, 46.166238 ], + [ 5.980077, 46.1662424 ], + [ 5.9800796, 46.1662467 ], + [ 5.9800822, 46.1662511 ], + [ 5.9800849, 46.1662555 ], + [ 5.9800875, 46.1662599 ], + [ 5.9800901, 46.1662643 ], + [ 5.9800927, 46.1662687 ], + [ 5.9800953, 46.1662731 ], + [ 5.9800979, 46.1662774 ], + [ 5.9801005, 46.1662818 ], + [ 5.9801031, 46.1662863 ], + [ 5.9801056, 46.1662907 ], + [ 5.9801082, 46.1662951 ], + [ 5.9801107, 46.1662995 ], + [ 5.9801132, 46.1663039 ], + [ 5.9801158, 46.1663083 ], + [ 5.9801183, 46.1663127 ], + [ 5.9801208, 46.1663171 ], + [ 5.9801231999999995, 46.1663216 ], + [ 5.9801257, 46.166326 ], + [ 5.9801282, 46.1663304 ], + [ 5.9801307, 46.1663349 ], + [ 5.9801331, 46.1663393 ], + [ 5.9801356, 46.1663437 ], + [ 5.980138, 46.1663482 ], + [ 5.9801404, 46.1663526 ], + [ 5.9801428, 46.166357 ], + [ 5.9801452, 46.1663615 ], + [ 5.9801476000000005, 46.1663659 ], + [ 5.98015, 46.1663704 ], + [ 5.9801524, 46.1663748 ], + [ 5.9801548, 46.1663793 ], + [ 5.9801571, 46.1663838 ], + [ 5.9801595, 46.1663882 ], + [ 5.9801618, 46.1663927 ], + [ 5.9801641, 46.1663971 ], + [ 5.9801664, 46.1664016 ], + [ 5.9801687, 46.1664061 ], + [ 5.980171, 46.1664106 ], + [ 5.9801733, 46.166415 ], + [ 5.9801756, 46.1664195 ], + [ 5.9801779, 46.166424 ], + [ 5.9801801, 46.1664285 ], + [ 5.9801824, 46.166433 ], + [ 5.9801846, 46.1664375 ], + [ 5.9801869, 46.1664419 ], + [ 5.9801891, 46.1664464 ], + [ 5.9801912999999995, 46.1664509 ], + [ 5.9801935, 46.1664554 ], + [ 5.9801957, 46.1664599 ], + [ 5.9801979, 46.1664644 ], + [ 5.9802, 46.1664689 ], + [ 5.9802022, 46.1664734 ], + [ 5.9802043, 46.1664779 ], + [ 5.9802064999999995, 46.1664825 ], + [ 5.9802086, 46.166487 ], + [ 5.9802107, 46.1664915 ], + [ 5.9802128, 46.166496 ], + [ 5.9802149, 46.1665005 ], + [ 5.980217, 46.166505 ], + [ 5.9802191, 46.1665096 ], + [ 5.9802212, 46.1665141 ], + [ 5.9802233, 46.1665186 ], + [ 5.9802253, 46.1665232 ], + [ 5.9802274, 46.1665277 ], + [ 5.9802294, 46.1665322 ], + [ 5.9802314, 46.1665368 ], + [ 5.9802333999999995, 46.1665413 ], + [ 5.9802354, 46.1665458 ], + [ 5.9802374, 46.1665504 ], + [ 5.9802394, 46.1665549 ], + [ 5.9802414, 46.1665595 ], + [ 5.9802433, 46.166564 ], + [ 5.9802453, 46.1665686 ], + [ 5.9802472, 46.1665731 ], + [ 5.9802492, 46.1665777 ], + [ 5.9802511, 46.1665822 ], + [ 5.980253, 46.1665868 ], + [ 5.9802549, 46.1665914 ], + [ 5.9802568, 46.1665959 ], + [ 5.9802587, 46.1666005 ], + [ 5.9802606, 46.1666051 ], + [ 5.9802624, 46.1666096 ], + [ 5.9802643, 46.1666142 ], + [ 5.9802661, 46.1666188 ], + [ 5.980268, 46.1666233 ], + [ 5.9802698, 46.1666279 ], + [ 5.9802716, 46.1666325 ], + [ 5.9802734, 46.1666371 ], + [ 5.9802751999999995, 46.1666417 ], + [ 5.980277, 46.1666463 ], + [ 5.9802788, 46.1666508 ], + [ 5.9802806, 46.1666554 ], + [ 5.9802823, 46.16666 ], + [ 5.9802841, 46.1666646 ], + [ 5.9802858, 46.1666692 ], + [ 5.9802875, 46.1666738 ], + [ 5.9802892, 46.1666784 ], + [ 5.9802909, 46.166683 ], + [ 5.9802926, 46.1666876 ], + [ 5.9802943, 46.1666922 ], + [ 5.980296, 46.1666968 ], + [ 5.9802976999999995, 46.1667014 ], + [ 5.9802993, 46.166706 ], + [ 5.980301, 46.1667106 ], + [ 5.9803026, 46.1667152 ], + [ 5.9803042, 46.1667199 ], + [ 5.9803058, 46.1667245 ], + [ 5.9803074, 46.1667291 ], + [ 5.980309, 46.1667337 ], + [ 5.9803106, 46.1667383 ], + [ 5.9803122, 46.1667429 ], + [ 5.9803138, 46.1667476 ], + [ 5.9803153, 46.1667522 ], + [ 5.9803169, 46.1667568 ], + [ 5.9803184, 46.1667614 ], + [ 5.9803199, 46.1667661 ], + [ 5.9803215, 46.1667707 ], + [ 5.980323, 46.1667753 ], + [ 5.9803245, 46.16678 ], + [ 5.9803259, 46.1667846 ], + [ 5.9803274, 46.1667893 ], + [ 5.9803289, 46.1667939 ], + [ 5.9803303, 46.1667985 ], + [ 5.9803318, 46.1668032 ], + [ 5.9803332, 46.1668078 ], + [ 5.9803346, 46.1668125 ], + [ 5.9803361, 46.1668171 ], + [ 5.9803375, 46.1668218 ], + [ 5.9803389, 46.1668264 ], + [ 5.9803402, 46.1668311 ], + [ 5.9803416, 46.1668357 ], + [ 5.9803429999999995, 46.1668404 ], + [ 5.9803443, 46.166845 ], + [ 5.9803457, 46.1668497 ], + [ 5.980347, 46.1668543 ], + [ 5.9803483, 46.166859 ], + [ 5.9803497, 46.1668637 ], + [ 5.980351, 46.1668683 ], + [ 5.9803523, 46.166873 ], + [ 5.9803535, 46.1668777 ], + [ 5.9803548, 46.1668823 ], + [ 5.9803561, 46.166887 ], + [ 5.9803573, 46.1668917 ], + [ 5.9803586, 46.1668963 ], + [ 5.9803598000000004, 46.166901 ], + [ 5.980361, 46.1669057 ], + [ 5.9803622, 46.1669103 ], + [ 5.9803634, 46.166915 ], + [ 5.9803646, 46.1669197 ], + [ 5.9803657999999995, 46.1669244 ], + [ 5.980367, 46.1669291 ], + [ 5.9803681, 46.1669337 ], + [ 5.9803692999999996, 46.1669384 ], + [ 5.9803704, 46.1669431 ], + [ 5.9803716, 46.1669478 ], + [ 5.9803727, 46.1669525 ], + [ 5.9803738, 46.1669572 ], + [ 5.9803749, 46.1669618 ], + [ 5.980376, 46.1669665 ], + [ 5.9803771, 46.1669712 ], + [ 5.9803781, 46.1669759 ], + [ 5.9803792, 46.1669806 ], + [ 5.9803803, 46.1669853 ], + [ 5.9803813, 46.16699 ], + [ 5.9803823, 46.1669947 ], + [ 5.9803833, 46.1669994 ], + [ 5.9803844, 46.1670041 ], + [ 5.9803854, 46.1670088 ], + [ 5.9803863, 46.1670135 ], + [ 5.9803873, 46.1670182 ], + [ 5.9803882999999995, 46.1670229 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-20", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.519902, 47.5388269 ], + [ 7.5198632, 47.5386826 ], + [ 7.5198497, 47.538632 ], + [ 7.5198202, 47.5385219 ], + [ 7.5197738, 47.5383415 ], + [ 7.5197294, 47.5381683 ], + [ 7.5197099, 47.5380924 ], + [ 7.5196651, 47.5380108 ], + [ 7.5196272, 47.5379417 ], + [ 7.5195796999999995, 47.5378549 ], + [ 7.5195321, 47.5377681 ], + [ 7.5194857, 47.5376834 ], + [ 7.5194259, 47.5375575 ], + [ 7.5193408999999996, 47.5373789 ], + [ 7.5193051, 47.5373037 ], + [ 7.5192193, 47.537092200000004 ], + [ 7.5191994, 47.5370431 ], + [ 7.5191508, 47.5369233 ], + [ 7.519131, 47.5368745 ], + [ 7.5191194, 47.5368452 ], + [ 7.5190825, 47.5367525 ], + [ 7.5189996, 47.5365445 ], + [ 7.5197081, 47.5363444 ], + [ 7.5198868, 47.536291 ], + [ 7.5200133000000005, 47.5364879 ], + [ 7.5206178999999995, 47.536316 ], + [ 7.5205152, 47.5361248 ], + [ 7.5208823, 47.5360331 ], + [ 7.5212174, 47.5359216 ], + [ 7.521756, 47.5357434 ], + [ 7.5218035, 47.5357277 ], + [ 7.5219153, 47.5358742 ], + [ 7.5224405, 47.5359775 ], + [ 7.5225365, 47.5359926 ], + [ 7.5229522, 47.5360578 ], + [ 7.5235134, 47.5361431 ], + [ 7.523725, 47.5361602 ], + [ 7.5235302, 47.5356015 ], + [ 7.523426, 47.5354279 ], + [ 7.5232474, 47.53524 ], + [ 7.5229876, 47.5350557 ], + [ 7.522951, 47.5350352 ], + [ 7.5226143, 47.5353032 ], + [ 7.5224858, 47.5352289 ], + [ 7.5222812, 47.5351105 ], + [ 7.5220617, 47.5349836 ], + [ 7.5217846, 47.5347923 ], + [ 7.5216331, 47.534681 ], + [ 7.5214541, 47.5345573 ], + [ 7.521363, 47.5344939 ], + [ 7.5212497, 47.534423 ], + [ 7.5212306, 47.5344143 ], + [ 7.5210722, 47.5343352 ], + [ 7.5209018, 47.5342588 ], + [ 7.5208953, 47.5342621 ], + [ 7.5208197, 47.5343035 ], + [ 7.5207093, 47.5341682 ], + [ 7.5206568, 47.534105 ], + [ 7.5193596, 47.5347231 ], + [ 7.5182139, 47.534253 ], + [ 7.5177311, 47.5340549 ], + [ 7.5157988, 47.5329516 ], + [ 7.5157862, 47.5329383 ], + [ 7.5157655, 47.5329484 ], + [ 7.5152886, 47.5331804 ], + [ 7.5147405, 47.5335048 ], + [ 7.5141686, 47.5338413 ], + [ 7.5136093, 47.5341713 ], + [ 7.512952, 47.5346312 ], + [ 7.5131128, 47.5350246 ], + [ 7.5130402, 47.5354077 ], + [ 7.5133988, 47.5357591 ], + [ 7.5134198, 47.5357813 ], + [ 7.5137331, 47.536111 ], + [ 7.5140517, 47.5363302 ], + [ 7.5141873, 47.5365443 ], + [ 7.514203, 47.5365691 ], + [ 7.5142853, 47.5367421 ], + [ 7.5144057, 47.5369484 ], + [ 7.5145951, 47.5372988 ], + [ 7.5145546, 47.5376573 ], + [ 7.5146459, 47.5378511 ], + [ 7.5148793, 47.5379954 ], + [ 7.5149851, 47.5382857 ], + [ 7.5150473, 47.5385828 ], + [ 7.5150535, 47.5386127 ], + [ 7.5150576000000004, 47.5386322 ], + [ 7.5155727, 47.5390588 ], + [ 7.5158803, 47.5393084 ], + [ 7.5161587, 47.5396008 ], + [ 7.5164603, 47.539906 ], + [ 7.5167929, 47.5402359 ], + [ 7.5168154, 47.5402582 ], + [ 7.5171234, 47.5405926 ], + [ 7.5174139, 47.541146499999996 ], + [ 7.5177504, 47.5415406 ], + [ 7.5182129, 47.5421455 ], + [ 7.5185462, 47.542441 ], + [ 7.5189392, 47.5426897 ], + [ 7.5202723, 47.5432147 ], + [ 7.5202594, 47.5430545 ], + [ 7.5208039, 47.5431301 ], + [ 7.5213143, 47.543176 ], + [ 7.5216769, 47.5429591 ], + [ 7.522177, 47.543626 ], + [ 7.5224596, 47.5438016 ], + [ 7.5227096, 47.5439662 ], + [ 7.5228071, 47.5440305 ], + [ 7.5231387, 47.5437754 ], + [ 7.523459, 47.543548799999996 ], + [ 7.5230819, 47.5432236 ], + [ 7.5228287, 47.5429573 ], + [ 7.5224999, 47.5425893 ], + [ 7.5222978, 47.5423237 ], + [ 7.5221285, 47.5420629 ], + [ 7.5220379, 47.5418496 ], + [ 7.5221521, 47.5416078 ], + [ 7.5222012, 47.5416224 ], + [ 7.5227749, 47.5413446 ], + [ 7.5229349, 47.5416233 ], + [ 7.5234157, 47.5424473 ], + [ 7.5238322, 47.5422072 ], + [ 7.5238626, 47.5421897 ], + [ 7.5240871, 47.5424048 ], + [ 7.5246325, 47.542158 ], + [ 7.5251041, 47.5419446 ], + [ 7.5256549, 47.5416955 ], + [ 7.5249122, 47.540962 ], + [ 7.5248812, 47.5409251 ], + [ 7.5246007, 47.5405913 ], + [ 7.5245505999999995, 47.5405044 ], + [ 7.5242169, 47.5399252 ], + [ 7.5242088, 47.539911000000004 ], + [ 7.524097, 47.5397358 ], + [ 7.5240805, 47.5397101 ], + [ 7.5242037, 47.5396862 ], + [ 7.523386, 47.538324 ], + [ 7.5233413, 47.5383305 ], + [ 7.5232437, 47.5383425 ], + [ 7.5232119, 47.538347 ], + [ 7.5238053, 47.539302 ], + [ 7.5238739, 47.5394125 ], + [ 7.5237818, 47.539381 ], + [ 7.5236887, 47.5393492 ], + [ 7.5236402, 47.5393325 ], + [ 7.5234384, 47.5390322 ], + [ 7.5232978, 47.5387572 ], + [ 7.5231039, 47.5383623 ], + [ 7.5218581, 47.5384238 ], + [ 7.5217982, 47.5384329 ], + [ 7.5212082, 47.5386368 ], + [ 7.5206504, 47.5386799 ], + [ 7.519902, 47.5388269 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns072", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Allschwilerwald", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Allschwilerwald", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Allschwilerwald", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Allschwilerwald", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8598748, 47.4334836 ], + [ 7.8600168, 47.4337752 ], + [ 7.860361, 47.4338284 ], + [ 7.86069, 47.433784 ], + [ 7.863703, 47.4324895 ], + [ 7.8638459, 47.4324241 ], + [ 7.8640283, 47.4323111 ], + [ 7.8640318, 47.4322618 ], + [ 7.8640414, 47.4322128 ], + [ 7.8640568, 47.4321645 ], + [ 7.864078, 47.4321173 ], + [ 7.8641149, 47.4320565 ], + [ 7.8641373, 47.4320271 ], + [ 7.8641749999999995, 47.4319848 ], + [ 7.8642176, 47.4319448 ], + [ 7.864265, 47.4319073 ], + [ 7.8644928, 47.4317413 ], + [ 7.8645144, 47.4317241 ], + [ 7.8645339, 47.4317057 ], + [ 7.8646196, 47.4320004 ], + [ 7.8662442, 47.4317076 ], + [ 7.8663004999999995, 47.4315958 ], + [ 7.8663671, 47.4314867 ], + [ 7.8664439999999995, 47.4313806 ], + [ 7.8665906, 47.4311933 ], + [ 7.8666424, 47.4311334 ], + [ 7.8667017, 47.4310767 ], + [ 7.8667678, 47.4310237 ], + [ 7.8668404, 47.4309748 ], + [ 7.8675722, 47.4305222 ], + [ 7.8676103, 47.4304978 ], + [ 7.8676469, 47.4304723 ], + [ 7.867682, 47.4304458 ], + [ 7.8678761, 47.4302935 ], + [ 7.8679673, 47.4302163 ], + [ 7.86805, 47.4301348 ], + [ 7.8681237, 47.4300494 ], + [ 7.8683264, 47.4297932 ], + [ 7.8683773, 47.4297348 ], + [ 7.8684349000000005, 47.4296793 ], + [ 7.8684989, 47.4296272 ], + [ 7.8685689, 47.4295787 ], + [ 7.8686571999999995, 47.4295224 ], + [ 7.8686596, 47.4295207 ], + [ 7.8686618, 47.4295189 ], + [ 7.8686637, 47.4295169 ], + [ 7.8686654, 47.4295149 ], + [ 7.8687197, 47.4294456 ], + [ 7.8687463, 47.4294464 ], + [ 7.8691225, 47.4294444 ], + [ 7.8692258, 47.4294449 ], + [ 7.8693288, 47.4294512 ], + [ 7.8694306, 47.4294633 ], + [ 7.8695305, 47.4294812 ], + [ 7.8696279, 47.4295046 ], + [ 7.8696681, 47.4295161 ], + [ 7.8697077, 47.4295286 ], + [ 7.8697466, 47.429542 ], + [ 7.8697769, 47.4295533 ], + [ 7.8698067, 47.4295651 ], + [ 7.8698361, 47.4295776 ], + [ 7.869942, 47.4296238 ], + [ 7.8700485, 47.4296702 ], + [ 7.8700588, 47.4296747 ], + [ 7.8701558, 47.4297128 ], + [ 7.8702577, 47.4297446 ], + [ 7.8703635, 47.4297697 ], + [ 7.8704723, 47.4297879 ], + [ 7.8705831, 47.4297992 ], + [ 7.871235, 47.4298425 ], + [ 7.8712807, 47.4296789 ], + [ 7.8712995, 47.4295724 ], + [ 7.8712563, 47.4294311 ], + [ 7.8712262, 47.4293553 ], + [ 7.8711722, 47.4292994 ], + [ 7.8713451, 47.429134 ], + [ 7.8715853, 47.4289402 ], + [ 7.8714319, 47.4288934 ], + [ 7.8712477, 47.4288511 ], + [ 7.8708536, 47.42878 ], + [ 7.8705049, 47.428731 ], + [ 7.8697563, 47.4285671 ], + [ 7.8692649, 47.4284369 ], + [ 7.8689103, 47.4283795 ], + [ 7.868476, 47.4283695 ], + [ 7.8680448, 47.4283923 ], + [ 7.8676167, 47.4284524 ], + [ 7.8672757, 47.4285327 ], + [ 7.8668911, 47.428652 ], + [ 7.866487, 47.428828 ], + [ 7.8662153, 47.4289643 ], + [ 7.8658841, 47.429169 ], + [ 7.865576, 47.4293921 ], + [ 7.8650836, 47.4297874 ], + [ 7.8649952, 47.4298553 ], + [ 7.8649869, 47.42985 ], + [ 7.8649101, 47.429905 ], + [ 7.8645033, 47.4301961 ], + [ 7.8642088, 47.4304188 ], + [ 7.8640236, 47.4305026 ], + [ 7.8636625, 47.4305739 ], + [ 7.8634927, 47.4306463 ], + [ 7.862838, 47.4310308 ], + [ 7.8623731, 47.4313073 ], + [ 7.8619807999999995, 47.431496 ], + [ 7.8617283, 47.4315931 ], + [ 7.8613626, 47.4317338 ], + [ 7.8606756, 47.4319969 ], + [ 7.8603623, 47.4321373 ], + [ 7.8600902999999995, 47.4322672 ], + [ 7.859864, 47.4324371 ], + [ 7.8597045, 47.4327965 ], + [ 7.8597228999999995, 47.4330585 ], + [ 7.859837, 47.4333543 ], + [ 7.8598748, 47.4334836 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns282", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Chrindel", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Chrindel", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Chrindel", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Chrindel", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.0398041, 46.7765485 ], + [ 7.1180834, 46.7727305 ], + [ 7.1134044, 46.7310404 ], + [ 7.0353229, 46.7347185 ], + [ 7.0398041, 46.7765485 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSGE001", + "country" : "CHE", + "name" : [ + { + "text" : "LSGE Ecuvillens", + "lang" : "de-CH" + }, + { + "text" : "LSGE Ecuvillens", + "lang" : "fr-CH" + }, + { + "text" : "LSGE Ecuvillens", + "lang" : "it-CH" + }, + { + "text" : "LSGE Ecuvillens", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Aérodrome Régional Fribourg Ecuvillens SA", + "lang" : "de-CH" + }, + { + "text" : "Aérodrome Régional Fribourg Ecuvillens SA", + "lang" : "fr-CH" + }, + { + "text" : "Aérodrome Régional Fribourg Ecuvillens SA", + "lang" : "it-CH" + }, + { + "text" : "Aérodrome Régional Fribourg Ecuvillens SA", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Chef d'aérodrome", + "lang" : "de-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "fr-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "it-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.aerodrome-ecuvillens.ch/index.php?page=./drones/drones_LSGE.htm", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8259955, 47.4737183 ], + [ 7.8263068, 47.4744853 ], + [ 7.8272641, 47.4747305 ], + [ 7.8267942, 47.474421 ], + [ 7.8264584, 47.4742173 ], + [ 7.8259955, 47.4737183 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr106", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Bischofstein", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Bischofstein", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Bischofstein", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Bischofstein", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.9920065, 46.1253465 ], + [ 8.9920223, 46.1253744 ], + [ 8.9920048, 46.1254086 ], + [ 8.9919718, 46.125432 ], + [ 8.9919183, 46.1254394 ], + [ 8.9918868, 46.12544 ], + [ 8.9918567, 46.1254282 ], + [ 8.9918453, 46.1254396 ], + [ 8.9911691, 46.1261142 ], + [ 8.9915609, 46.1261863 ], + [ 8.9909437, 46.126841 ], + [ 8.990719, 46.1269282 ], + [ 8.990599, 46.1269747 ], + [ 8.9906082, 46.1270555 ], + [ 8.9905862, 46.1271328 ], + [ 8.9905289, 46.1272276 ], + [ 8.9904909, 46.1273136 ], + [ 8.990492, 46.127347 ], + [ 8.9905318, 46.1273942 ], + [ 8.9905827, 46.127422 ], + [ 8.990654, 46.1274238 ], + [ 8.9907564, 46.1274244 ], + [ 8.9908143, 46.1274435 ], + [ 8.990845, 46.1274865 ], + [ 8.9908631, 46.1275384 ], + [ 8.9908758, 46.1276246 ], + [ 8.9909012, 46.1276727 ], + [ 8.9909501, 46.1277227 ], + [ 8.9910151, 46.127761 ], + [ 8.99116, 46.1278284 ], + [ 8.9912647, 46.1278682 ], + [ 8.9914093, 46.1278999 ], + [ 8.9916646, 46.1279471 ], + [ 8.9917611, 46.1279709 ], + [ 8.9918872, 46.1280242 ], + [ 8.9919884, 46.1281005 ], + [ 8.9921506, 46.1282435 ], + [ 8.9921839, 46.1283058 ], + [ 8.992191, 46.1283706 ], + [ 8.992099, 46.1284489 ], + [ 8.9919615, 46.1284989 ], + [ 8.9917397, 46.1285537 ], + [ 8.991673, 46.1285501 ], + [ 8.9916282, 46.1285342 ], + [ 8.9915822, 46.1285112 ], + [ 8.9914805, 46.1284189 ], + [ 8.9914647, 46.1283941 ], + [ 8.9914846, 46.1283683 ], + [ 8.9916221, 46.1282961 ], + [ 8.9916407, 46.1282658 ], + [ 8.9916208, 46.1282384 ], + [ 8.991515, 46.1281901 ], + [ 8.9913991, 46.1281655 ], + [ 8.9913247, 46.1281776 ], + [ 8.9912613, 46.1281966 ], + [ 8.9909383, 46.1283618 ], + [ 8.9907865, 46.1284081 ], + [ 8.9906069, 46.1284816 ], + [ 8.9904997, 46.1285656 ], + [ 8.9904628, 46.1286093 ], + [ 8.9904701, 46.1286555 ], + [ 8.9905421, 46.1287328 ], + [ 8.9905736, 46.128792 ], + [ 8.9904717, 46.1287789 ], + [ 8.9902973, 46.1287633 ], + [ 8.9902305, 46.1287846 ], + [ 8.9902012, 46.1288289 ], + [ 8.9902334, 46.1288685 ], + [ 8.9902897, 46.1288918 ], + [ 8.9903535, 46.1288966 ], + [ 8.9904872, 46.1288986 ], + [ 8.9905809, 46.1289121 ], + [ 8.9906338, 46.1289207 ], + [ 8.990703, 46.1289382 ], + [ 8.9907665, 46.1289615 ], + [ 8.9908226, 46.1289901 ], + [ 8.9908752, 46.1290235 ], + [ 8.9909245, 46.1290618 ], + [ 8.990963, 46.1291043 ], + [ 8.9909823, 46.129155 ], + [ 8.9909803, 46.1292022 ], + [ 8.9909428, 46.1292428 ], + [ 8.9908841, 46.1292729 ], + [ 8.9908537, 46.1292839 ], + [ 8.9906981, 46.1293287 ], + [ 8.9906891, 46.1293713 ], + [ 8.9907373, 46.129451 ], + [ 8.9908482, 46.1295001 ], + [ 8.990753999999999, 46.1296878 ], + [ 8.9908161, 46.1297178 ], + [ 8.9908603, 46.1298118 ], + [ 8.9908018, 46.1300046 ], + [ 8.9905926, 46.1300465 ], + [ 8.9904348, 46.1300772 ], + [ 8.9903157, 46.1301386 ], + [ 8.989988, 46.1298563 ], + [ 8.9899158, 46.1298074 ], + [ 8.9898352, 46.1297661 ], + [ 8.9897469, 46.1297319 ], + [ 8.9896536, 46.1297045 ], + [ 8.9893292, 46.1296266 ], + [ 8.9892917, 46.1296165 ], + [ 8.9892546, 46.1296066 ], + [ 8.9892614, 46.1295866 ], + [ 8.9892178, 46.1295276 ], + [ 8.9892186, 46.129496 ], + [ 8.9892378, 46.1294659 ], + [ 8.9890806, 46.1294616 ], + [ 8.9889739, 46.1294682 ], + [ 8.9887923, 46.1294805 ], + [ 8.9887045, 46.1294864 ], + [ 8.9887241, 46.1294899 ], + [ 8.9887821, 46.1294943 ], + [ 8.9888467, 46.1295052 ], + [ 8.9888674, 46.1295086 ], + [ 8.9889384, 46.1295283 ], + [ 8.9889286, 46.1295454 ], + [ 8.9890843, 46.1296095 ], + [ 8.989086799999999, 46.1296064 ], + [ 8.9891487, 46.1296199 ], + [ 8.9892111, 46.1296316 ], + [ 8.9892398, 46.129638 ], + [ 8.9892789, 46.1296502 ], + [ 8.9895679, 46.129729 ], + [ 8.9896522, 46.1297555 ], + [ 8.9897321, 46.1297859 ], + [ 8.9898101, 46.1298217 ], + [ 8.9898838, 46.129861 ], + [ 8.9899534, 46.1299036 ], + [ 8.9898627, 46.130024 ], + [ 8.9897976, 46.1301106 ], + [ 8.9894136, 46.1299541 ], + [ 8.9891472, 46.1301727 ], + [ 8.9890123, 46.1302836 ], + [ 8.9889667, 46.1302643 ], + [ 8.9888838, 46.1302528 ], + [ 8.9888082, 46.1302424 ], + [ 8.9887132, 46.1302011 ], + [ 8.9885855, 46.1301501 ], + [ 8.988579099999999, 46.1301479 ], + [ 8.988545, 46.1301364 ], + [ 8.9885127, 46.130125 ], + [ 8.9884044, 46.1300908 ], + [ 8.988294, 46.130056 ], + [ 8.9882824, 46.1300523 ], + [ 8.9880227, 46.1299693 ], + [ 8.9880203, 46.129973 ], + [ 8.9878624, 46.1299223 ], + [ 8.9877367, 46.1298804 ], + [ 8.9876628, 46.1299387 ], + [ 8.9877355, 46.1299614 ], + [ 8.9878111, 46.1299851 ], + [ 8.9880019, 46.130041 ], + [ 8.988134, 46.1300714 ], + [ 8.9882789, 46.1301192 ], + [ 8.9884066, 46.1301585 ], + [ 8.9884883, 46.1301851 ], + [ 8.9885072, 46.1301918 ], + [ 8.9885711, 46.1302143 ], + [ 8.9886283, 46.1302368 ], + [ 8.9886595, 46.1302491 ], + [ 8.988715, 46.1302734 ], + [ 8.9887453, 46.1302867 ], + [ 8.9888019, 46.1303134 ], + [ 8.9888577, 46.1303415 ], + [ 8.9889114, 46.1303706 ], + [ 8.9889644, 46.130401 ], + [ 8.9890157, 46.1304323 ], + [ 8.9890656, 46.130465 ], + [ 8.9891142, 46.1304985 ], + [ 8.989161, 46.1305333 ], + [ 8.9892065, 46.1305689 ], + [ 8.9892501, 46.1306055 ], + [ 8.989291399999999, 46.1306422 ], + [ 8.9893303, 46.1306789 ], + [ 8.9893694, 46.1307181 ], + [ 8.98938, 46.1307288 ], + [ 8.9893469, 46.1307614 ], + [ 8.9893851, 46.1308011 ], + [ 8.9894174, 46.1308398 ], + [ 8.989447, 46.1308847 ], + [ 8.9895517, 46.1310589 ], + [ 8.9896458, 46.131102 ], + [ 8.9898007, 46.1313551 ], + [ 8.9898414, 46.1314205 ], + [ 8.9898863, 46.1314853 ], + [ 8.9899355, 46.1315485 ], + [ 8.989988499999999, 46.1316102 ], + [ 8.9900457, 46.13167 ], + [ 8.9901041, 46.1317287 ], + [ 8.9901738, 46.1317888 ], + [ 8.9902434, 46.1318423 ], + [ 8.9903162, 46.1318943 ], + [ 8.9903663, 46.1319267 ], + [ 8.9904165, 46.1319584 ], + [ 8.9905076, 46.1320815 ], + [ 8.9906448, 46.13221 ], + [ 8.9908734, 46.1323886 ], + [ 8.9911977, 46.1326024 ], + [ 8.9915772, 46.1328129 ], + [ 8.9919187, 46.1329312 ], + [ 8.9920824, 46.1330181 ], + [ 8.9921079, 46.1330739 ], + [ 8.9922588, 46.1330633 ], + [ 8.9923628, 46.1330903 ], + [ 8.9924909, 46.1331495 ], + [ 8.9926275, 46.1331809 ], + [ 8.992765, 46.1332397 ], + [ 8.9928675, 46.133259699999996 ], + [ 8.9929402, 46.1332648 ], + [ 8.9929203, 46.133195 ], + [ 8.9930967, 46.1332265 ], + [ 8.9931997, 46.133245 ], + [ 8.9937495, 46.1334858 ], + [ 8.993502, 46.133829 ], + [ 8.993443, 46.133959 ], + [ 8.9935273, 46.1340066 ], + [ 8.9937839, 46.1341517 ], + [ 8.9939488, 46.1341815 ], + [ 8.9941173, 46.1342623 ], + [ 8.9942608, 46.1343641 ], + [ 8.9944294, 46.1345871 ], + [ 8.9945853, 46.1346988 ], + [ 8.9945966, 46.1347703 ], + [ 8.9949039, 46.1349173 ], + [ 8.995176, 46.135011 ], + [ 8.9952538, 46.1350607 ], + [ 8.9953763, 46.1351861 ], + [ 8.9955215, 46.1352443 ], + [ 8.995627, 46.1353624 ], + [ 8.9956282, 46.135414 ], + [ 8.9956711, 46.1355292 ], + [ 8.9957861, 46.1356517 ], + [ 8.9958389, 46.1357427 ], + [ 8.9961219, 46.1359379 ], + [ 8.9963486, 46.1359951 ], + [ 8.9963135, 46.1361168 ], + [ 8.9963911, 46.136355 ], + [ 8.9965123, 46.1364896 ], + [ 8.9965944, 46.136649 ], + [ 8.9966837, 46.1367458 ], + [ 8.9967591, 46.1367885 ], + [ 8.9968386, 46.1368963 ], + [ 8.9969144, 46.1369941 ], + [ 8.9963226, 46.1372278 ], + [ 8.9962407, 46.1375944 ], + [ 8.9960164, 46.1379815 ], + [ 8.9958033, 46.1381978 ], + [ 8.9956304, 46.1380115 ], + [ 8.9955314, 46.138104 ], + [ 8.9953994, 46.1382049 ], + [ 8.9952026, 46.1381351 ], + [ 8.9949558, 46.1381413 ], + [ 8.994803, 46.1380744 ], + [ 8.9947744, 46.1381381 ], + [ 8.9944858, 46.1381399 ], + [ 8.9941243, 46.1381565 ], + [ 8.9940141, 46.1380496 ], + [ 8.9939716, 46.1380505 ], + [ 8.9937904, 46.1380796 ], + [ 8.9934195, 46.1382084 ], + [ 8.9936844, 46.1382701 ], + [ 8.9938763, 46.1383757 ], + [ 8.9936715, 46.1390169 ], + [ 8.9937614, 46.1388985 ], + [ 8.9938287, 46.1388624 ], + [ 8.9940057, 46.1388636 ], + [ 8.9938996, 46.1389583 ], + [ 8.9938677, 46.1389397 ], + [ 8.993715, 46.1390467 ], + [ 8.9936551, 46.1390861 ], + [ 8.9936258, 46.13921 ], + [ 8.9936013, 46.1392275 ], + [ 8.9935845, 46.1392995 ], + [ 8.9936216, 46.1394695 ], + [ 8.9936216, 46.1395429 ], + [ 8.9935864, 46.1397445 ], + [ 8.9936185, 46.139811 ], + [ 8.993815399999999, 46.1399961 ], + [ 8.9938549, 46.1400578 ], + [ 8.9938672, 46.1401199 ], + [ 8.9938286, 46.1403131 ], + [ 8.9938477, 46.1404555 ], + [ 8.9938329, 46.1405181 ], + [ 8.993777399999999, 46.1405723 ], + [ 8.9936851, 46.1406319 ], + [ 8.9935227, 46.1406941 ], + [ 8.9934479, 46.1407318 ], + [ 8.9933854, 46.1407926 ], + [ 8.9933449, 46.1408802 ], + [ 8.9933472, 46.1410108 ], + [ 8.993381, 46.1411629 ], + [ 8.9933819, 46.1412143 ], + [ 8.993360000000001, 46.1412405 ], + [ 8.9932078, 46.1413159 ], + [ 8.993003, 46.1414357 ], + [ 8.9929516, 46.1414822 ], + [ 8.9928718, 46.1415305 ], + [ 8.9926934, 46.1416084 ], + [ 8.9922442, 46.1417252 ], + [ 8.9922816, 46.141747 ], + [ 8.9932949, 46.1423006 ], + [ 8.9933536, 46.1423329 ], + [ 8.9941027, 46.1427432 ], + [ 8.9950508, 46.1431713 ], + [ 8.9952176, 46.1433516 ], + [ 8.9977536, 46.1443927 ], + [ 8.9987301, 46.1448855 ], + [ 9.0008999, 46.1455956 ], + [ 9.0017978, 46.1458932 ], + [ 9.0025242, 46.1460063 ], + [ 9.0044486, 46.1464107 ], + [ 9.0060716, 46.1471283 ], + [ 9.0084333, 46.1477757 ], + [ 9.0094168, 46.1477807 ], + [ 9.0115485, 46.1479753 ], + [ 9.0127224, 46.1462942 ], + [ 9.0166593, 46.1457608 ], + [ 9.0173059, 46.1457853 ], + [ 9.0183233, 46.1449149 ], + [ 9.0217141, 46.1440018 ], + [ 9.0227371, 46.1435386 ], + [ 9.0234734, 46.1433954 ], + [ 9.0238181, 46.1434772 ], + [ 9.0243761, 46.1434843 ], + [ 9.0245829, 46.1437106 ], + [ 9.0249178, 46.1439255 ], + [ 9.0252543, 46.1445066 ], + [ 9.0254301, 46.1452022 ], + [ 9.0269927, 46.1454109 ], + [ 9.0279677, 46.145421 ], + [ 9.0285204, 46.1457875 ], + [ 9.0308503, 46.146218 ], + [ 9.0316403, 46.1470074 ], + [ 9.0325241, 46.1469217 ], + [ 9.0332407, 46.1445189 ], + [ 9.0334115, 46.1437796 ], + [ 9.0335203, 46.1432944 ], + [ 9.0335651, 46.1425972 ], + [ 9.0340043, 46.1421144 ], + [ 9.0342676, 46.141994 ], + [ 9.0345471, 46.1417999 ], + [ 9.0349468, 46.140939 ], + [ 9.0350601, 46.1411435 ], + [ 9.035259, 46.1412474 ], + [ 9.0362804, 46.1415823 ], + [ 9.0373711, 46.1418078 ], + [ 9.0376619, 46.141951 ], + [ 9.0378306, 46.1422392 ], + [ 9.0380451, 46.1424851 ], + [ 9.0381367, 46.1429607 ], + [ 9.0385814, 46.1433109 ], + [ 9.0388226, 46.1433379 ], + [ 9.0391435, 46.1434908 ], + [ 9.0392967, 46.1439619 ], + [ 9.039985099999999, 46.1441335 ], + [ 9.0404515, 46.1441641 ], + [ 9.0407273, 46.1441364 ], + [ 9.0414944, 46.144007 ], + [ 9.0420808, 46.1439381 ], + [ 9.0431915, 46.1436811 ], + [ 9.0434837, 46.1436695 ], + [ 9.0436427, 46.1435965 ], + [ 9.043799, 46.1435567 ], + [ 9.0450089, 46.1431031 ], + [ 9.0476511, 46.1419489 ], + [ 9.0479721, 46.1416655 ], + [ 9.0496701, 46.1410609 ], + [ 9.0505492, 46.1404975 ], + [ 9.0509505, 46.1401491 ], + [ 9.0509636, 46.1396455 ], + [ 9.0510883, 46.139523 ], + [ 9.0510021, 46.1391748 ], + [ 9.0509689, 46.1383134 ], + [ 9.0508873, 46.1379978 ], + [ 9.0507048, 46.137619 ], + [ 9.0505206, 46.1373683 ], + [ 9.0505149, 46.1369645 ], + [ 9.0505406, 46.1366991 ], + [ 9.0506383, 46.1363325 ], + [ 9.0506093, 46.1360854 ], + [ 9.050449, 46.1356975 ], + [ 9.0503882, 46.1353318 ], + [ 9.050942, 46.1349466 ], + [ 9.0511188, 46.1347346 ], + [ 9.0519122, 46.1343104 ], + [ 9.0522776, 46.1340082 ], + [ 9.0523398, 46.1339814 ], + [ 9.0524032, 46.1339561 ], + [ 9.0524678, 46.1339323 ], + [ 9.0525335, 46.13391 ], + [ 9.0526003, 46.1338892 ], + [ 9.052668, 46.1338701 ], + [ 9.0527366, 46.1338525 ], + [ 9.0528131, 46.133835 ], + [ 9.0528904, 46.1338195 ], + [ 9.0529686, 46.133806 ], + [ 9.0530473, 46.1337946 ], + [ 9.0531267, 46.1337851 ], + [ 9.0532065, 46.1337777 ], + [ 9.0532866, 46.1337724 ], + [ 9.0542585, 46.1334717 ], + [ 9.0547141, 46.1334197 ], + [ 9.0547721, 46.1334061 ], + [ 9.0548292, 46.1333908 ], + [ 9.0548853, 46.1333738 ], + [ 9.0549403, 46.1333551 ], + [ 9.054994, 46.1333348 ], + [ 9.0550464, 46.1333128 ], + [ 9.0550974, 46.1332894 ], + [ 9.0551617, 46.1332564 ], + [ 9.0552231, 46.133221 ], + [ 9.0552816, 46.1331833 ], + [ 9.0553369, 46.1331433 ], + [ 9.0553889, 46.1331012 ], + [ 9.0554373, 46.1330571 ], + [ 9.0554821, 46.1330112 ], + [ 9.0555144, 46.132982 ], + [ 9.0555474, 46.1329532 ], + [ 9.0555809, 46.1329247 ], + [ 9.0556151, 46.1328966 ], + [ 9.0556498, 46.1328688 ], + [ 9.0556852, 46.1328413 ], + [ 9.055721, 46.1328142 ], + [ 9.0557585, 46.1327868 ], + [ 9.0557965, 46.1327598 ], + [ 9.0558351, 46.1327331 ], + [ 9.0558743, 46.1327069 ], + [ 9.055914, 46.1326811 ], + [ 9.0559543, 46.1326557 ], + [ 9.0559951, 46.1326307 ], + [ 9.0559813, 46.1325973 ], + [ 9.0559706, 46.1325635 ], + [ 9.0559631, 46.1325292 ], + [ 9.0559589, 46.1324946 ], + [ 9.0559579, 46.1324599 ], + [ 9.0559601, 46.1324253 ], + [ 9.0559656, 46.1323908 ], + [ 9.0559743, 46.1323567 ], + [ 9.0559862, 46.132323 ], + [ 9.0560012, 46.1322899 ], + [ 9.056019299999999, 46.1322576 ], + [ 9.0560404, 46.1322262 ], + [ 9.0560644, 46.1321958 ], + [ 9.0560912, 46.1321665 ], + [ 9.0561206, 46.1321386 ], + [ 9.0561526, 46.132112 ], + [ 9.056187, 46.132087 ], + [ 9.0562237, 46.1320635 ], + [ 9.0562625, 46.1320418 ], + [ 9.0563033, 46.1320218 ], + [ 9.0563458, 46.1320038 ], + [ 9.0563899, 46.1319877 ], + [ 9.0564355, 46.1319737 ], + [ 9.0564823, 46.1319617 ], + [ 9.0565301, 46.1319519 ], + [ 9.0565787, 46.1319442 ], + [ 9.0577105, 46.1318039 ], + [ 9.0588935, 46.1317973 ], + [ 9.0591053, 46.1318342 ], + [ 9.0594158, 46.1319727 ], + [ 9.0598172, 46.1321042 ], + [ 9.059924, 46.1323147 ], + [ 9.0603001, 46.1323648 ], + [ 9.0607317, 46.1324987 ], + [ 9.0609401, 46.1325906 ], + [ 9.0611823, 46.1328024 ], + [ 9.0613273, 46.1329372 ], + [ 9.0615617, 46.133033 ], + [ 9.0620458, 46.1335609 ], + [ 9.0621863, 46.1335732 ], + [ 9.0625933, 46.1336866 ], + [ 9.0626853, 46.1337672 ], + [ 9.0630645, 46.1338666 ], + [ 9.0634037, 46.1340728 ], + [ 9.0635525, 46.1341308 ], + [ 9.0637232, 46.1341868 ], + [ 9.0638034, 46.134284 ], + [ 9.0639314, 46.1347085 ], + [ 9.0640322, 46.1348131 ], + [ 9.064186, 46.134885 ], + [ 9.0650766, 46.134853 ], + [ 9.0652773, 46.1348288 ], + [ 9.065572, 46.1348396 ], + [ 9.0667119, 46.1347594 ], + [ 9.0670768, 46.1347071 ], + [ 9.067421, 46.134696 ], + [ 9.0676683, 46.1347289 ], + [ 9.0676074, 46.1343849 ], + [ 9.0679237, 46.13384 ], + [ 9.0682547, 46.1334149 ], + [ 9.068816, 46.132566 ], + [ 9.0689969, 46.1323422 ], + [ 9.0690962, 46.132098 ], + [ 9.0696483, 46.1316263 ], + [ 9.0710765, 46.1311513 ], + [ 9.0715748, 46.1307657 ], + [ 9.0715286, 46.1294839 ], + [ 9.071901, 46.1287974 ], + [ 9.0718233, 46.128444 ], + [ 9.0723139, 46.1278897 ], + [ 9.0724155, 46.1275827 ], + [ 9.0734011, 46.1270453 ], + [ 9.0744953, 46.1262975 ], + [ 9.0751918, 46.1257987 ], + [ 9.0756064, 46.1251981 ], + [ 9.0760106, 46.1248671 ], + [ 9.0759955, 46.1245659 ], + [ 9.0775402, 46.1236714 ], + [ 9.078321, 46.1233342 ], + [ 9.0783402, 46.1225062 ], + [ 9.0784222, 46.1218911 ], + [ 9.0786886, 46.1212409 ], + [ 9.0786846, 46.1212368 ], + [ 9.0783709, 46.1210686 ], + [ 9.0780453, 46.1210058 ], + [ 9.0773094, 46.1203725 ], + [ 9.0770215, 46.1201816 ], + [ 9.0768314, 46.1201203 ], + [ 9.0764218, 46.1201159 ], + [ 9.0761297, 46.1202082 ], + [ 9.0760487, 46.120335 ], + [ 9.076056, 46.1201626 ], + [ 9.0758376, 46.1199161 ], + [ 9.075561, 46.1197466 ], + [ 9.0754703, 46.119843 ], + [ 9.0753881, 46.1198251 ], + [ 9.0752515, 46.1197378 ], + [ 9.0749653, 46.1194784 ], + [ 9.0747783, 46.1193799 ], + [ 9.0746518, 46.1192652 ], + [ 9.0742804, 46.1190828 ], + [ 9.0742045, 46.1189599 ], + [ 9.0738678, 46.1187321 ], + [ 9.0735503, 46.118703 ], + [ 9.0733874, 46.1187859 ], + [ 9.0729821, 46.1184348 ], + [ 9.0729041, 46.1183259 ], + [ 9.0726887, 46.1182317 ], + [ 9.072505, 46.1181017 ], + [ 9.0724213, 46.1179595 ], + [ 9.0711652, 46.1185055 ], + [ 9.070323, 46.119057 ], + [ 9.0687881, 46.1191468 ], + [ 9.067591, 46.1186957 ], + [ 9.0602741, 46.1170152 ], + [ 9.0546719, 46.1142556 ], + [ 9.0523547, 46.1134371 ], + [ 9.0496119, 46.1170928 ], + [ 9.0493323, 46.1174655 ], + [ 9.0479732, 46.116776 ], + [ 9.0477316, 46.1167474 ], + [ 9.047455, 46.1166784 ], + [ 9.0474013, 46.1166444 ], + [ 9.0472001, 46.1166779 ], + [ 9.0469098, 46.1167003 ], + [ 9.0466233, 46.1167103 ], + [ 9.0465534, 46.1167204 ], + [ 9.0464353, 46.11626 ], + [ 9.0425407, 46.1167529 ], + [ 9.0385655, 46.1168445 ], + [ 9.0385752, 46.118338 ], + [ 9.0362305, 46.1191563 ], + [ 9.0339195, 46.1183947 ], + [ 9.0338482, 46.1182658 ], + [ 9.0337521, 46.1173258 ], + [ 9.0331362, 46.1157405 ], + [ 9.0286117, 46.1157585 ], + [ 9.0259007, 46.116708 ], + [ 9.0251946, 46.1165578 ], + [ 9.0246145, 46.1161525 ], + [ 9.0232723, 46.1153451 ], + [ 9.0184404, 46.1151532 ], + [ 9.0149639, 46.114475 ], + [ 9.0115976, 46.1155131 ], + [ 9.0107928, 46.1174653 ], + [ 9.0083359, 46.1188711 ], + [ 9.0080305, 46.1183616 ], + [ 9.0063831, 46.1158371 ], + [ 9.0063085, 46.1148481 ], + [ 9.0059755, 46.1150005 ], + [ 9.0059566, 46.1150275 ], + [ 9.0057819, 46.1152769 ], + [ 9.0055408, 46.1154926 ], + [ 9.0053529, 46.116165 ], + [ 9.0052461, 46.1163103 ], + [ 9.0051958, 46.116569 ], + [ 9.0051353, 46.1166386 ], + [ 9.0051174, 46.1168619 ], + [ 9.0048735, 46.117467 ], + [ 9.0048576, 46.1176931 ], + [ 9.004759, 46.1178428 ], + [ 9.0046115, 46.1181475 ], + [ 9.0043619, 46.1184604 ], + [ 9.0041497, 46.118681 ], + [ 9.0039264, 46.1188624 ], + [ 9.003994, 46.1192912 ], + [ 9.0040404, 46.119579 ], + [ 9.0039985, 46.1197139 ], + [ 9.0040524, 46.120149 ], + [ 9.003944, 46.1203108 ], + [ 9.0038917, 46.1204454 ], + [ 9.0037232, 46.1205413 ], + [ 9.0036061, 46.1207469 ], + [ 9.0036066, 46.1208536 ], + [ 9.0035319, 46.1210045 ], + [ 9.0033962, 46.1215761 ], + [ 9.0032194, 46.1217959 ], + [ 9.0032721, 46.1219569 ], + [ 9.0031761, 46.1222163 ], + [ 9.0031126, 46.1223118 ], + [ 9.0029787, 46.1223679 ], + [ 9.0029562, 46.1224785 ], + [ 9.0028065, 46.1225718 ], + [ 9.0027915, 46.1227086 ], + [ 9.0027322, 46.1228027 ], + [ 9.0021533, 46.1232317 ], + [ 9.0020891, 46.1234095 ], + [ 9.0018301, 46.1234439 ], + [ 9.0017592, 46.1235133 ], + [ 9.0014796, 46.1236346 ], + [ 9.001385, 46.1237901 ], + [ 9.001174, 46.1239746 ], + [ 9.0011831, 46.1240714 ], + [ 9.0006265, 46.1245787 ], + [ 9.0003696, 46.1246766 ], + [ 9.0000281, 46.1247218 ], + [ 8.9996817, 46.1247294 ], + [ 8.9993765, 46.1247789 ], + [ 8.9990343, 46.1249402 ], + [ 8.9988779, 46.125061 ], + [ 8.9988655, 46.1250632 ], + [ 8.9988567, 46.1250799 ], + [ 8.9988446, 46.1250925 ], + [ 8.9988262, 46.1251016 ], + [ 8.9988045, 46.1251124 ], + [ 8.9987909, 46.1251214 ], + [ 8.9987721, 46.1251466 ], + [ 8.9987504, 46.1251665 ], + [ 8.9987251, 46.12518 ], + [ 8.9987135, 46.1251948 ], + [ 8.9986895, 46.1252157 ], + [ 8.9986685, 46.1252376 ], + [ 8.9986578, 46.125246 ], + [ 8.9986392, 46.1252585 ], + [ 8.9986136, 46.1252775 ], + [ 8.9985744, 46.125308 ], + [ 8.9985516, 46.1253211 ], + [ 8.9985264, 46.1253341 ], + [ 8.9984959, 46.1253468 ], + [ 8.9984536, 46.1253682 ], + [ 8.9984404, 46.1253782 ], + [ 8.998407, 46.1253925 ], + [ 8.9983248, 46.1254274 ], + [ 8.9982996, 46.1254362 ], + [ 8.998276, 46.125441 ], + [ 8.9982229, 46.1254489 ], + [ 8.9981817, 46.1254621 ], + [ 8.9981363, 46.125487 ], + [ 8.9980849, 46.1255129 ], + [ 8.9980457, 46.1255296 ], + [ 8.9979945, 46.125553 ], + [ 8.9979508, 46.1255737 ], + [ 8.9979069, 46.1255983 ], + [ 8.9978783, 46.1256189 ], + [ 8.9978418, 46.1256539 ], + [ 8.9978216, 46.1256852 ], + [ 8.9978067, 46.1257067 ], + [ 8.9977902, 46.1257207 ], + [ 8.9977647, 46.1257321 ], + [ 8.9977334, 46.1257452 ], + [ 8.9977033, 46.1257657 ], + [ 8.9976597, 46.1257887 ], + [ 8.9976299, 46.1258051 ], + [ 8.9975879, 46.1258266 ], + [ 8.9975674, 46.1258346 ], + [ 8.9974932, 46.1258579 ], + [ 8.9974498, 46.1258666 ], + [ 8.9974288, 46.1258685 ], + [ 8.9973887, 46.12588 ], + [ 8.9973639, 46.1258879 ], + [ 8.9973162, 46.1258973 ], + [ 8.9972503, 46.1259145 ], + [ 8.9972091, 46.1259257 ], + [ 8.9971693, 46.1259317 ], + [ 8.9971116, 46.1259359 ], + [ 8.9970381, 46.125933 ], + [ 8.9969597, 46.1259352 ], + [ 8.996882, 46.1259474 ], + [ 8.9968428, 46.125961 ], + [ 8.9968047, 46.1259673 ], + [ 8.9967564, 46.1259686 ], + [ 8.9967274, 46.1259744 ], + [ 8.9966836, 46.1259792 ], + [ 8.9966545, 46.125983 ], + [ 8.996607, 46.1259852 ], + [ 8.9965693, 46.1259883 ], + [ 8.9965392, 46.1259947 ], + [ 8.9964985, 46.1260186 ], + [ 8.9964542, 46.1260434 ], + [ 8.9964241, 46.1260687 ], + [ 8.9963774, 46.1261037 ], + [ 8.9963555, 46.1261293 ], + [ 8.9963138, 46.1261783 ], + [ 8.9962733, 46.1262093 ], + [ 8.9962172, 46.1262412 ], + [ 8.9961975, 46.1262537 ], + [ 8.9961215, 46.1262869 ], + [ 8.9960489, 46.1263196 ], + [ 8.995982399999999, 46.1263472 ], + [ 8.995965, 46.1263664 ], + [ 8.9959499, 46.1263783 ], + [ 8.9959302, 46.1263887 ], + [ 8.9959087, 46.1264005 ], + [ 8.9958962, 46.1264162 ], + [ 8.9958943, 46.1264431 ], + [ 8.9958865, 46.1264648 ], + [ 8.9958769, 46.1264803 ], + [ 8.9958521, 46.1264961 ], + [ 8.9958381, 46.1265246 ], + [ 8.9958165, 46.1265416 ], + [ 8.9956165, 46.1266992 ], + [ 8.9944241, 46.1262711 ], + [ 8.99211, 46.1250177 ], + [ 8.9920541, 46.1250538 ], + [ 8.9917999, 46.1252181 ], + [ 8.9919748, 46.1253196 ], + [ 8.9920065, 46.1253465 ] + ], + [ + [ 8.9920737, 46.1297179 ], + [ 8.9921198, 46.1297343 ], + [ 8.9923871, 46.1301376 ], + [ 8.9921807, 46.1301825 ], + [ 8.9917039, 46.1302862 ], + [ 8.9915249, 46.13007 ], + [ 8.9913808, 46.1298168 ], + [ 8.991594599999999, 46.129758 ], + [ 8.9920737, 46.1297179 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VBS_9", + "country" : "CHE", + "name" : [ + { + "text" : "VBS_9 Isone", + "lang" : "de-CH" + }, + { + "text" : "VBS_9 Isone", + "lang" : "fr-CH" + }, + { + "text" : "VBS_9 Isone", + "lang" : "it-CH" + }, + { + "text" : "VBS_9 Isone", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "regulationExemption" : "YES", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Eidgenössisches Departement für Verteidigung, Bevölkerungsschutz und Sport (VBS)", + "lang" : "de-CH" + }, + { + "text" : "Département fédéral de la défense, de la protection de la population et des sports (DDPS)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento federale della difesa, della protezione della popolazione e dello sport (DDPS)", + "lang" : "it-CH" + }, + { + "text" : "Federal Department of Defence, Civil Protection and Sport (DDPS)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Lageverfolgungszentrum der Armee LVZ A", + "lang" : "de-CH" + }, + { + "text" : "Centre de suivi de la situation de l’armée, CSS A", + "lang" : "fr-CH" + }, + { + "text" : "Centro di monitoraggio della situazione dell’esercito, Centro mon sit Es", + "lang" : "it-CH" + }, + { + "text" : "Joint Operation Center, JOC", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vtg.admin.ch/en/joint-operations-command", + "email" : "lvz.op@vtg.admin.ch", + "phone" : "+41 58 464 96 43", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8338637, 47.3953434 ], + [ 7.8339887, 47.3954315 ], + [ 7.8345886, 47.3954065 ], + [ 7.8346559, 47.3954035 ], + [ 7.834647, 47.3949219 ], + [ 7.8343163, 47.3949011 ], + [ 7.8342717, 47.395018 ], + [ 7.8340449, 47.3950195 ], + [ 7.8340213, 47.3950974 ], + [ 7.8339454, 47.3951549 ], + [ 7.833893, 47.3952293 ], + [ 7.8338637, 47.3953434 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr130", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Dietisbergerweid", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Dietisbergerweid", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Dietisbergerweid", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Dietisbergerweid", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.1101089, 47.406675 ], + [ 8.1101017, 47.4065338 ], + [ 8.1100836, 47.4063931 ], + [ 8.1100547, 47.4062532 ], + [ 8.110015, 47.4061145 ], + [ 8.1099647, 47.4059775 ], + [ 8.1099039, 47.4058424 ], + [ 8.1098327, 47.4057096 ], + [ 8.1097515, 47.4055796 ], + [ 8.1096603, 47.4054526 ], + [ 8.1095594, 47.405329 ], + [ 8.1094492, 47.4052092 ], + [ 8.1093299, 47.4050935 ], + [ 8.1092018, 47.4049821 ], + [ 8.1090653, 47.4048755 ], + [ 8.1089208, 47.4047739 ], + [ 8.1087687, 47.4046775 ], + [ 8.1086093, 47.4045867 ], + [ 8.1084432, 47.4045017 ], + [ 8.1082707, 47.4044226 ], + [ 8.1080923, 47.4043499 ], + [ 8.1079086, 47.4042835 ], + [ 8.1077201, 47.4042238 ], + [ 8.1075272, 47.4041708 ], + [ 8.1073304, 47.4041248 ], + [ 8.1071304, 47.4040859 ], + [ 8.1069277, 47.4040541 ], + [ 8.1067228, 47.4040295 ], + [ 8.1065163, 47.4040122 ], + [ 8.1063087, 47.4040024 ], + [ 8.1061007, 47.4039999 ], + [ 8.1058927, 47.4040048 ], + [ 8.1056854, 47.404017 ], + [ 8.1054794, 47.4040367 ], + [ 8.1052751, 47.4040636 ], + [ 8.1050732, 47.4040977 ], + [ 8.1048742, 47.404139 ], + [ 8.1046787, 47.4041873 ], + [ 8.1044871, 47.4042424 ], + [ 8.1043001, 47.4043043 ], + [ 8.1041181, 47.4043728 ], + [ 8.1039416, 47.4044476 ], + [ 8.1037711, 47.4045286 ], + [ 8.1036071, 47.4046156 ], + [ 8.1034501, 47.4047082 ], + [ 8.1033003, 47.4048063 ], + [ 8.1031584, 47.4049096 ], + [ 8.1030246, 47.4050178 ], + [ 8.1028993, 47.4051306 ], + [ 8.1027829, 47.4052477 ], + [ 8.1026757, 47.4053688 ], + [ 8.102578, 47.4054935 ], + [ 8.10249, 47.4056215 ], + [ 8.102412, 47.4057524 ], + [ 8.1023442, 47.405886 ], + [ 8.1022868, 47.4060218 ], + [ 8.1022399, 47.4061594 ], + [ 8.1022037, 47.4062985 ], + [ 8.1021783, 47.4064387 ], + [ 8.1021637, 47.4065796 ], + [ 8.10216, 47.4067209 ], + [ 8.1021672, 47.4068621 ], + [ 8.1021853, 47.4070028 ], + [ 8.1022142, 47.4071427 ], + [ 8.1022539, 47.4072814 ], + [ 8.1023042, 47.4074184 ], + [ 8.1023649, 47.4075535 ], + [ 8.1024361, 47.4076863 ], + [ 8.1025173, 47.4078164 ], + [ 8.1026085, 47.4079433 ], + [ 8.1027093, 47.4080669 ], + [ 8.1028196, 47.4081867 ], + [ 8.1029389, 47.4083025 ], + [ 8.1030669, 47.4084138 ], + [ 8.1032034, 47.4085204 ], + [ 8.1033479, 47.4086221 ], + [ 8.1035001, 47.4087184 ], + [ 8.1036594, 47.4088093 ], + [ 8.1038256, 47.4088943 ], + [ 8.1039981, 47.4089733 ], + [ 8.1041764, 47.4090461 ], + [ 8.1043601, 47.4091125 ], + [ 8.1045487, 47.4091722 ], + [ 8.1047416, 47.4092252 ], + [ 8.1049384, 47.4092712 ], + [ 8.1051384, 47.4093102 ], + [ 8.1053411, 47.409342 ], + [ 8.1055461, 47.4093665 ], + [ 8.1057526, 47.4093838 ], + [ 8.1059602, 47.4093937 ], + [ 8.1061683, 47.4093962 ], + [ 8.1063762, 47.4093913 ], + [ 8.1065835, 47.409379 ], + [ 8.1067896, 47.4093594 ], + [ 8.1069939, 47.4093324 ], + [ 8.1071958, 47.4092983 ], + [ 8.1073948, 47.409257 ], + [ 8.1075904, 47.4092087 ], + [ 8.107782, 47.4091536 ], + [ 8.107969, 47.4090917 ], + [ 8.108151, 47.4090232 ], + [ 8.1083275, 47.4089484 ], + [ 8.108498, 47.4088674 ], + [ 8.108662, 47.4087804 ], + [ 8.1088191, 47.4086877 ], + [ 8.1089688, 47.4085896 ], + [ 8.1091107, 47.4084863 ], + [ 8.1092445, 47.4083781 ], + [ 8.1093698, 47.4082653 ], + [ 8.1094862, 47.4081482 ], + [ 8.1095934, 47.4080272 ], + [ 8.1096911, 47.4079025 ], + [ 8.1097791, 47.4077744 ], + [ 8.1098571, 47.4076435 ], + [ 8.1099249, 47.4075099 ], + [ 8.1099823, 47.4073741 ], + [ 8.1100291, 47.4072365 ], + [ 8.1100653, 47.4070974 ], + [ 8.1100907, 47.4069572 ], + [ 8.1101052, 47.4068163 ], + [ 8.1101089, 47.406675 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0102", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Rupperswil", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Rupperswil", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Rupperswil", + "lang" : "it-CH" + }, + { + "text" : "Substation Rupperswil", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.7990649, 47.0878107 ], + [ 6.8000971, 47.0868548 ], + [ 6.7974745, 47.0855556 ], + [ 6.7975586, 47.0854671 ], + [ 6.7969916, 47.0851931 ], + [ 6.7971196, 47.0850625 ], + [ 6.7965333999999995, 47.0847444 ], + [ 6.7963412, 47.0846264 ], + [ 6.7939948999999995, 47.0834861 ], + [ 6.7938297, 47.0836407 ], + [ 6.7929552, 47.0832058 ], + [ 6.7928382, 47.0832951 ], + [ 6.7867280999999995, 47.0803289 ], + [ 6.786267, 47.0812106 ], + [ 6.7929680999999995, 47.0844311 ], + [ 6.7923689, 47.0849783 ], + [ 6.7945434, 47.0860592 ], + [ 6.7948564000000005, 47.0857659 ], + [ 6.7990649, 47.0878107 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSGC002", + "country" : "CHE", + "name" : [ + { + "text" : "LSGC Aéroport les Eplatures (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSGC Aéroport les Eplatures (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSGC Aéroport les Eplatures (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSGC Aéroport les Eplatures (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "LSGC Aéroport les Eplatures", + "lang" : "de-CH" + }, + { + "text" : "LSGC Aéroport les Eplatures", + "lang" : "fr-CH" + }, + { + "text" : "LSGC Aéroport les Eplatures", + "lang" : "it-CH" + }, + { + "text" : "LSGC Aéroport les Eplatures", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Chef d'aérodrome", + "lang" : "de-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "fr-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "it-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Emanuele Tocalli", + "lang" : "de-CH" + }, + { + "text" : "Emanuele Tocalli", + "lang" : "fr-CH" + }, + { + "text" : "Emanuele Tocalli", + "lang" : "it-CH" + }, + { + "text" : "Emanuele Tocalli", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.skyguide.ch/services/special-flights", + "email" : "info@leseplaturesairport.ch", + "phone" : "0041329259797", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4999456, 47.4287036 ], + [ 7.4999952, 47.4287018 ], + [ 7.5001049, 47.4286976 ], + [ 7.5000777, 47.4287963 ], + [ 7.5000742, 47.428809 ], + [ 7.5003335, 47.4288244 ], + [ 7.5005254, 47.4288247 ], + [ 7.5007404, 47.4288076 ], + [ 7.5008966, 47.428801 ], + [ 7.5009928, 47.428866 ], + [ 7.5012256, 47.4288673 ], + [ 7.5014208, 47.4288622 ], + [ 7.5015873, 47.4288249 ], + [ 7.5017326, 47.4287894 ], + [ 7.5017990999999995, 47.428792 ], + [ 7.5018945, 47.4286503 ], + [ 7.5019499, 47.4285632 ], + [ 7.5019497, 47.4284987 ], + [ 7.5019113, 47.4284112 ], + [ 7.5020807, 47.4283699 ], + [ 7.5022436, 47.4285116 ], + [ 7.5023469, 47.4285212 ], + [ 7.5026011, 47.4285209 ], + [ 7.5029588, 47.4284973 ], + [ 7.5030493, 47.4284964 ], + [ 7.5030502, 47.4284922 ], + [ 7.5030802, 47.4284962 ], + [ 7.5032309, 47.4284948 ], + [ 7.5033705, 47.4285091 ], + [ 7.50341, 47.4285401 ], + [ 7.5034457, 47.4285449 ], + [ 7.5035374, 47.4285571 ], + [ 7.5037608, 47.4285868 ], + [ 7.503771, 47.4286947 ], + [ 7.5039201, 47.4287498 ], + [ 7.5040479, 47.428797 ], + [ 7.5042632000000005, 47.4288764 ], + [ 7.5043437, 47.4289061 ], + [ 7.5044369, 47.4289406 ], + [ 7.5045002, 47.4289639 ], + [ 7.504492, 47.4290486 ], + [ 7.5045752, 47.4290406 ], + [ 7.5045605, 47.4289231 ], + [ 7.5046493, 47.4288789 ], + [ 7.5046515, 47.4288255 ], + [ 7.504632, 47.4287645 ], + [ 7.5046303, 47.4287338 ], + [ 7.5047923, 47.4286871 ], + [ 7.5049611, 47.4286367 ], + [ 7.5051703, 47.4285903 ], + [ 7.5053476, 47.4285454 ], + [ 7.5054775, 47.4284467 ], + [ 7.5056261, 47.4283563 ], + [ 7.5057613, 47.4282355 ], + [ 7.5058055, 47.4281768 ], + [ 7.5058462, 47.4281112 ], + [ 7.5058786, 47.4280471 ], + [ 7.5059048, 47.4279584 ], + [ 7.5059542, 47.4278758 ], + [ 7.5060439, 47.4277965 ], + [ 7.5061916, 47.4277266 ], + [ 7.5063786, 47.4276635 ], + [ 7.50662, 47.4275751 ], + [ 7.5068911, 47.4274965 ], + [ 7.5071414, 47.427446 ], + [ 7.5073619, 47.4274476 ], + [ 7.5075465999999995, 47.4274776 ], + [ 7.5078302, 47.4275385 ], + [ 7.5080304, 47.4275877 ], + [ 7.5081009, 47.4276178 ], + [ 7.5082504, 47.4277423 ], + [ 7.5082913, 47.4278032 ], + [ 7.5082853, 47.4278421 ], + [ 7.5083006, 47.4278424 ], + [ 7.5082788, 47.4279966 ], + [ 7.5082238, 47.4281977 ], + [ 7.5081799, 47.4284289 ], + [ 7.508163, 47.4285042 ], + [ 7.508161, 47.428521 ], + [ 7.508153, 47.4286218 ], + [ 7.5081533, 47.4287992 ], + [ 7.5081525, 47.4289699 ], + [ 7.5081662, 47.4293202 ], + [ 7.5082276, 47.4293464 ], + [ 7.5077787, 47.429481 ], + [ 7.5076086, 47.4295394 ], + [ 7.5073915, 47.42961 ], + [ 7.5071572, 47.429708 ], + [ 7.5069443, 47.4298308 ], + [ 7.5068012, 47.4299719 ], + [ 7.5066631, 47.4300849 ], + [ 7.5065378, 47.4301852 ], + [ 7.5063905, 47.4303186 ], + [ 7.5062177, 47.4304162 ], + [ 7.506048, 47.4305127 ], + [ 7.5058768, 47.4306383 ], + [ 7.5057168, 47.4307609 ], + [ 7.5055404, 47.4308909 ], + [ 7.5054254, 47.4310268 ], + [ 7.5053296, 47.4311812 ], + [ 7.5052519, 47.4313827 ], + [ 7.5052221, 47.4314857 ], + [ 7.5051915000000005, 47.4315914 ], + [ 7.5051421, 47.4317292 ], + [ 7.505077, 47.4318373 ], + [ 7.5050329, 47.4318431 ], + [ 7.5047397, 47.4327549 ], + [ 7.5041071, 47.4330684 ], + [ 7.5031566, 47.4334139 ], + [ 7.502704, 47.433516 ], + [ 7.5021211, 47.4338062 ], + [ 7.5020537, 47.4341491 ], + [ 7.5023185, 47.434775 ], + [ 7.5031462, 47.4345255 ], + [ 7.5034966, 47.43442 ], + [ 7.5039377, 47.4342803 ], + [ 7.5043253, 47.4341575 ], + [ 7.5044863, 47.4341047 ], + [ 7.5047317, 47.4342882 ], + [ 7.5050357, 47.4341106 ], + [ 7.5053090000000005, 47.4339527 ], + [ 7.5053473, 47.4339278 ], + [ 7.5055438, 47.4337483 ], + [ 7.5057742, 47.4335266 ], + [ 7.5059731, 47.4333363 ], + [ 7.5059845, 47.4333232 ], + [ 7.5061194, 47.4330934 ], + [ 7.5064008, 47.4326254 ], + [ 7.5065234, 47.4324237 ], + [ 7.5067339, 47.4324983 ], + [ 7.5068303, 47.432309 ], + [ 7.5071718, 47.431622 ], + [ 7.5072524, 47.4314601 ], + [ 7.5073257, 47.4313767 ], + [ 7.5074802, 47.431201 ], + [ 7.5079623, 47.4306536 ], + [ 7.5084064, 47.4303991 ], + [ 7.5087774, 47.4301846 ], + [ 7.5090251, 47.4302998 ], + [ 7.5093498, 47.4301358 ], + [ 7.5094727, 47.430073 ], + [ 7.5096201, 47.429867 ], + [ 7.5097308, 47.4298631 ], + [ 7.5097385, 47.4298149 ], + [ 7.5095504, 47.4291572 ], + [ 7.5093624, 47.4284987 ], + [ 7.5092162, 47.4279888 ], + [ 7.5091589, 47.427786 ], + [ 7.5091476, 47.4277418 ], + [ 7.5091368, 47.4276975 ], + [ 7.5091265, 47.4276531 ], + [ 7.5091167, 47.4276087 ], + [ 7.5091075, 47.4275641 ], + [ 7.5090987, 47.4275195 ], + [ 7.5090905, 47.4274749 ], + [ 7.5090828, 47.4274302 ], + [ 7.5090757, 47.4273855 ], + [ 7.5090692, 47.4273408 ], + [ 7.5090632, 47.4272961 ], + [ 7.5090577, 47.4272513 ], + [ 7.5090527, 47.4272065 ], + [ 7.5090482, 47.4271617 ], + [ 7.5090441, 47.4271169 ], + [ 7.5090407, 47.4270721 ], + [ 7.5090365, 47.4270226 ], + [ 7.5090331, 47.4269731 ], + [ 7.5090303, 47.4269235 ], + [ 7.5090281999999995, 47.426874 ], + [ 7.5090268, 47.4268243 ], + [ 7.5090261, 47.4267746 ], + [ 7.509026, 47.426724899999996 ], + [ 7.5090266, 47.4266752 ], + [ 7.5090109, 47.426646 ], + [ 7.5090053999999995, 47.4266379 ], + [ 7.5090007, 47.4266295 ], + [ 7.5089967, 47.426621 ], + [ 7.5089934, 47.4266123 ], + [ 7.5089909, 47.4266034 ], + [ 7.5089892, 47.4265945 ], + [ 7.5089883, 47.4265855 ], + [ 7.5089881, 47.4265765 ], + [ 7.5089976, 47.4264686 ], + [ 7.5088814, 47.4264557 ], + [ 7.5089644, 47.4268329 ], + [ 7.5088189, 47.4268123 ], + [ 7.5082375, 47.426411 ], + [ 7.50796, 47.4262561 ], + [ 7.5076253, 47.4261356 ], + [ 7.507601, 47.4260635 ], + [ 7.5075303, 47.4261209 ], + [ 7.5073386, 47.4260771 ], + [ 7.5067522, 47.4263092 ], + [ 7.5063314, 47.426645 ], + [ 7.5060013, 47.426958 ], + [ 7.5057979, 47.4271186 ], + [ 7.505673, 47.4271903 ], + [ 7.5055398, 47.4272733 ], + [ 7.5050215, 47.4275283 ], + [ 7.5045483, 47.4277043 ], + [ 7.5045079999999995, 47.4277042 ], + [ 7.5044922, 47.4277085 ], + [ 7.5044134, 47.4277244 ], + [ 7.5043531, 47.427734 ], + [ 7.5043149, 47.4277386 ], + [ 7.5042834, 47.4277417 ], + [ 7.50425, 47.4277443 ], + [ 7.5041566, 47.4277504 ], + [ 7.5039431, 47.4277732 ], + [ 7.5034958, 47.4277703 ], + [ 7.5031843, 47.4277709 ], + [ 7.5027854, 47.4278139 ], + [ 7.501948, 47.4279223 ], + [ 7.5017885, 47.4279725 ], + [ 7.501548, 47.4280042 ], + [ 7.5013725, 47.42805 ], + [ 7.5010239, 47.42816 ], + [ 7.5009386, 47.4281795 ], + [ 7.5009796, 47.4282537 ], + [ 7.5012378, 47.4281959 ], + [ 7.5012778, 47.4282979 ], + [ 7.5016777999999995, 47.428281 ], + [ 7.5017081999999995, 47.4284754 ], + [ 7.5016785, 47.4284822 ], + [ 7.5016796, 47.4285055 ], + [ 7.501643, 47.4285062 ], + [ 7.5016352, 47.428699 ], + [ 7.5016267, 47.4287446 ], + [ 7.5015077, 47.4288051 ], + [ 7.5013781999999996, 47.4288207 ], + [ 7.5013472, 47.4288244 ], + [ 7.5011694, 47.4288183 ], + [ 7.5010405, 47.4287544 ], + [ 7.5009825, 47.4286703 ], + [ 7.5009504, 47.4286313 ], + [ 7.5008714, 47.4286192 ], + [ 7.5006687, 47.428622 ], + [ 7.5007161, 47.4284675 ], + [ 7.5006395999999995, 47.4284305 ], + [ 7.5004918, 47.4284135 ], + [ 7.5003923, 47.4284648 ], + [ 7.500216, 47.4285079 ], + [ 7.5001989, 47.4285411 ], + [ 7.5001467, 47.4285286 ], + [ 7.5000891, 47.4286118 ], + [ 7.5000672999999995, 47.4286577 ], + [ 7.4999458, 47.4286611 ], + [ 7.4999389, 47.4287039 ], + [ 7.4999456, 47.4287036 ] + ], + [ + [ 7.5066876, 47.4266081 ], + [ 7.5066607, 47.4266144 ], + [ 7.5066233, 47.4266283 ], + [ 7.5066469, 47.4266064 ], + [ 7.5067072, 47.4265453 ], + [ 7.5067487, 47.4265076 ], + [ 7.5067904, 47.4264696 ], + [ 7.506886, 47.4264022 ], + [ 7.5070204, 47.4264012 ], + [ 7.5071593, 47.4264987 ], + [ 7.5073375, 47.4266239 ], + [ 7.5072366, 47.4267407 ], + [ 7.5071578, 47.4266861 ], + [ 7.5069975, 47.4265666 ], + [ 7.506935, 47.4265663 ], + [ 7.5068612, 47.4266168 ], + [ 7.5068539, 47.4266724 ], + [ 7.5069438, 47.4266699 ], + [ 7.5069689, 47.4266864 ], + [ 7.5070008, 47.4267142 ], + [ 7.5070124, 47.4267309 ], + [ 7.5070974, 47.4268429 ], + [ 7.5070964, 47.426916 ], + [ 7.5073360000000005, 47.4272042 ], + [ 7.5071235, 47.427278 ], + [ 7.5068704, 47.4269645 ], + [ 7.5066979, 47.4267814 ], + [ 7.5068269, 47.426717 ], + [ 7.5067547999999995, 47.4266384 ], + [ 7.5067122, 47.4266116 ], + [ 7.5066876, 47.4266081 ] + ], + [ + [ 7.5081543, 47.4275011 ], + [ 7.508245, 47.4274407 ], + [ 7.5081007, 47.4273913 ], + [ 7.5078999, 47.4274598 ], + [ 7.5077706, 47.4274037 ], + [ 7.507535, 47.4273513 ], + [ 7.5075803, 47.4271988 ], + [ 7.5080313, 47.4272944 ], + [ 7.5080913, 47.427246 ], + [ 7.5081989, 47.4271762 ], + [ 7.5083302, 47.4270985 ], + [ 7.5083461, 47.4271184 ], + [ 7.5083366, 47.4272079 ], + [ 7.5083145, 47.4272978 ], + [ 7.5083748, 47.4273701 ], + [ 7.50853, 47.4275299 ], + [ 7.5085799, 47.4275812 ], + [ 7.5085331, 47.4276257 ], + [ 7.508462, 47.4276225 ], + [ 7.5084154, 47.4276204 ], + [ 7.5083816, 47.4276203 ], + [ 7.5083456, 47.4276071 ], + [ 7.5081543, 47.4275011 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns298", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Dittinger Weide und Dittinger Wald", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Dittinger Weide und Dittinger Wald", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Dittinger Weide und Dittinger Wald", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Dittinger Weide und Dittinger Wald", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.921348, 47.410689 ], + [ 7.9211375, 47.4106923 ], + [ 7.9208827, 47.4107443 ], + [ 7.9207029, 47.410796 ], + [ 7.9204032, 47.4108686 ], + [ 7.9200364, 47.4108574 ], + [ 7.9200188, 47.4108595 ], + [ 7.9200014, 47.4108621 ], + [ 7.9199841, 47.4108651 ], + [ 7.9199671, 47.4108686 ], + [ 7.9199502, 47.410872499999996 ], + [ 7.9199336, 47.4108769 ], + [ 7.9199173, 47.4108817 ], + [ 7.9199013, 47.410887 ], + [ 7.9198854999999995, 47.4108926 ], + [ 7.9198702, 47.4108987 ], + [ 7.9197132, 47.410955799999996 ], + [ 7.9195184, 47.4110395 ], + [ 7.9194471, 47.4110748 ], + [ 7.9193506, 47.4111601 ], + [ 7.9193362, 47.4111693 ], + [ 7.9193213, 47.4111781 ], + [ 7.919306, 47.4111866 ], + [ 7.9192902, 47.4111947 ], + [ 7.9192741, 47.4112024 ], + [ 7.9192575, 47.4112097 ], + [ 7.919245, 47.4112153 ], + [ 7.919232, 47.4112203 ], + [ 7.9192184999999995, 47.4112248 ], + [ 7.9192047, 47.4112287 ], + [ 7.9191905, 47.411232 ], + [ 7.9191761, 47.4112347 ], + [ 7.9191614, 47.4112368 ], + [ 7.9191465999999995, 47.4112383 ], + [ 7.9191329, 47.411239 ], + [ 7.9191192, 47.4112393 ], + [ 7.9191055, 47.411239 ], + [ 7.9190919, 47.4112382 ], + [ 7.9190783, 47.4112368 ], + [ 7.9190649, 47.411235 ], + [ 7.9190517, 47.4112326 ], + [ 7.9190386, 47.4112297 ], + [ 7.919019, 47.4112248 ], + [ 7.9189997, 47.4112195 ], + [ 7.9189807, 47.4112137 ], + [ 7.918962, 47.4112074 ], + [ 7.9189436, 47.4112007 ], + [ 7.9189257, 47.4111935 ], + [ 7.9189097, 47.4111866 ], + [ 7.918894, 47.4111793 ], + [ 7.9188787, 47.4111716 ], + [ 7.9188638000000005, 47.4111637 ], + [ 7.9188493, 47.4111553 ], + [ 7.9188352, 47.4111467 ], + [ 7.9187169, 47.4110593 ], + [ 7.9185912, 47.4109688 ], + [ 7.9184679, 47.4108988 ], + [ 7.9183162, 47.4108272 ], + [ 7.9178949, 47.4108587 ], + [ 7.9178207, 47.4109609 ], + [ 7.9177929, 47.4112057 ], + [ 7.9177496, 47.4113996 ], + [ 7.9176753, 47.4114917 ], + [ 7.9173812, 47.4115965 ], + [ 7.9173938, 47.4116456 ], + [ 7.9174397, 47.4117428 ], + [ 7.9175111, 47.4118561 ], + [ 7.9175913, 47.4119205 ], + [ 7.9176759, 47.4119724 ], + [ 7.9177495, 47.4119781 ], + [ 7.9178465, 47.4119792 ], + [ 7.917902, 47.4119687 ], + [ 7.9180243, 47.411994 ], + [ 7.9180562, 47.4121132 ], + [ 7.9180673, 47.412197 ], + [ 7.9183795, 47.4121764 ], + [ 7.9184586, 47.4123202 ], + [ 7.918585, 47.4125553 ], + [ 7.918789, 47.412769 ], + [ 7.9188601, 47.4131767 ], + [ 7.9191144, 47.4132319 ], + [ 7.9195452, 47.413311 ], + [ 7.9199964, 47.4133619 ], + [ 7.9204004999999995, 47.4133602 ], + [ 7.9205295, 47.4133034 ], + [ 7.9205912, 47.4132539 ], + [ 7.9206624, 47.4130989 ], + [ 7.9207637, 47.4128417 ], + [ 7.920793, 47.4126482 ], + [ 7.9208428, 47.4124264 ], + [ 7.9209233, 47.4121588 ], + [ 7.9210499, 47.4118417 ], + [ 7.9211199, 47.4115601 ], + [ 7.9211988, 47.4111166 ], + [ 7.9213352, 47.4107362 ], + [ 7.921348, 47.410689 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr048", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Wanne", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Wanne", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Wanne", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Wanne", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7826359, 47.3985718 ], + [ 7.7827478, 47.3984482 ], + [ 7.7828832, 47.3983151 ], + [ 7.7830741, 47.3981247 ], + [ 7.7834927, 47.398153 ], + [ 7.7835365, 47.3982729 ], + [ 7.7837589, 47.3984037 ], + [ 7.7839533, 47.3985212 ], + [ 7.7841086, 47.3986272 ], + [ 7.7842024, 47.398747 ], + [ 7.7844363, 47.3986157 ], + [ 7.7846563, 47.3985315 ], + [ 7.7849985, 47.3985397 ], + [ 7.7852993, 47.3985553 ], + [ 7.7854502, 47.3986063 ], + [ 7.7855498, 47.398603 ], + [ 7.7860405, 47.3984058 ], + [ 7.7868667, 47.3984481 ], + [ 7.7868914, 47.3982314 ], + [ 7.7869184, 47.397982 ], + [ 7.7870528, 47.3978134 ], + [ 7.7872015999999995, 47.3977051 ], + [ 7.7874745999999995, 47.3976893 ], + [ 7.7877845, 47.3977133 ], + [ 7.7879276, 47.3968152 ], + [ 7.7876128, 47.396716 ], + [ 7.7874834, 47.3966023 ], + [ 7.7873485, 47.3964769 ], + [ 7.7875115, 47.3962065 ], + [ 7.7877958, 47.3958963 ], + [ 7.7882297, 47.3956376 ], + [ 7.7887339, 47.3956027 ], + [ 7.7890987, 47.3955724 ], + [ 7.7888159, 47.3955066 ], + [ 7.7883037, 47.3954437 ], + [ 7.7880619, 47.3951987 ], + [ 7.7875156, 47.3952394 ], + [ 7.7869516, 47.3953427 ], + [ 7.7865013, 47.3954754 ], + [ 7.7861827, 47.3956076 ], + [ 7.7859207, 47.3956644 ], + [ 7.7858878, 47.3957337 ], + [ 7.785816, 47.3959048 ], + [ 7.7857759, 47.3960358 ], + [ 7.7854776999999995, 47.3960418 ], + [ 7.7852003, 47.3960557 ], + [ 7.7847767999999995, 47.3960829 ], + [ 7.7842146, 47.396132 ], + [ 7.7840104, 47.3961364 ], + [ 7.783663, 47.3963912 ], + [ 7.7834541999999995, 47.3965456 ], + [ 7.7831825, 47.396694 ], + [ 7.7822496, 47.3968139 ], + [ 7.7817719, 47.3969558 ], + [ 7.7813853, 47.3970938 ], + [ 7.7809633, 47.3971238 ], + [ 7.7804974, 47.3971575 ], + [ 7.7806543999999995, 47.3974324 ], + [ 7.7808653, 47.3976396 ], + [ 7.781228, 47.3978958 ], + [ 7.7814837, 47.3980558 ], + [ 7.7817273, 47.3982214 ], + [ 7.7818894, 47.3983288 ], + [ 7.7820222999999995, 47.3984385 ], + [ 7.7821239, 47.3986091 ], + [ 7.7822097, 47.3986701 ], + [ 7.7823326999999995, 47.398756 ], + [ 7.782355, 47.3987716 ], + [ 7.7826359, 47.3985718 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns341", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Roter Herd", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Roter Herd", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Roter Herd", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Roter Herd", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8249068, 46.304099 ], + [ 7.8250521, 46.3046338 ], + [ 7.8301424, 46.304555 ], + [ 7.8301717, 46.3050209 ], + [ 7.8326584, 46.3049753 ], + [ 7.8326383, 46.3045238 ], + [ 7.8387189, 46.3044303 ], + [ 7.838698, 46.3038906 ], + [ 7.8249068, 46.304099 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSTA002", + "country" : "CHE", + "name" : [ + { + "text" : "LSTA Raron (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSTA Raron (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSTA Raron (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSTA Raron (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Flugplatz Raron", + "lang" : "de-CH" + }, + { + "text" : "Flugplatz Raron", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatz Raron", + "lang" : "it-CH" + }, + { + "text" : "Flugplatz Raron", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Lisa Best", + "lang" : "de-CH" + }, + { + "text" : "Lisa Best", + "lang" : "fr-CH" + }, + { + "text" : "Lisa Best", + "lang" : "it-CH" + }, + { + "text" : "Lisa Best", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.fgo.ch", + "email" : "info@fgo.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4462315, 46.5517693 ], + [ 7.4461419, 46.5494153 ], + [ 7.4458738, 46.5470678 ], + [ 7.4454281, 46.5447332 ], + [ 7.4448059, 46.5424179 ], + [ 7.4440091, 46.5401282 ], + [ 7.4430397, 46.5378705 ], + [ 7.4419006, 46.5356508 ], + [ 7.4405947, 46.5334753 ], + [ 7.4391258, 46.5313499 ], + [ 7.4374978, 46.5292805 ], + [ 7.4357153, 46.5272727 ], + [ 7.4337831, 46.525332 ], + [ 7.4317065, 46.5234637 ], + [ 7.4294913, 46.5216729 ], + [ 7.4271435, 46.5199646 ], + [ 7.4246695, 46.5183434 ], + [ 7.4220761, 46.5168137 ], + [ 7.4193705, 46.5153797 ], + [ 7.4165600000000005, 46.5140454 ], + [ 7.4136524, 46.5128145 ], + [ 7.4106555, 46.5116901 ], + [ 7.4075776, 46.5106756 ], + [ 7.4044272, 46.5097735 ], + [ 7.4012128, 46.5089864 ], + [ 7.3979432, 46.5083165 ], + [ 7.3946273, 46.5077655 ], + [ 7.3912744, 46.507335 ], + [ 7.3878934, 46.5070261 ], + [ 7.3844937, 46.5068398 ], + [ 7.3810845, 46.5067764 ], + [ 7.3776752, 46.5068363 ], + [ 7.3742751, 46.5070191 ], + [ 7.3708934, 46.5073245 ], + [ 7.3675395, 46.5077515 ], + [ 7.3642225, 46.5082991 ], + [ 7.3609515, 46.5089657 ], + [ 7.3577353, 46.5097494 ], + [ 7.354583, 46.5106483 ], + [ 7.3515029, 46.5116597 ], + [ 7.3485036, 46.5127809 ], + [ 7.3455933, 46.5140089 ], + [ 7.3427799, 46.5153403 ], + [ 7.3400712, 46.5167714 ], + [ 7.3374745, 46.5182984 ], + [ 7.3349971, 46.5199171 ], + [ 7.3326456, 46.521623 ], + [ 7.3304264, 46.5234115 ], + [ 7.3283458, 46.5252776 ], + [ 7.3264094, 46.5272164 ], + [ 7.3246226, 46.5292223 ], + [ 7.3229901, 46.5312901 ], + [ 7.3215166, 46.533414 ], + [ 7.3202061, 46.5355881 ], + [ 7.3190621, 46.5378066 ], + [ 7.3180879, 46.5400634 ], + [ 7.3172861, 46.5423522 ], + [ 7.3166589, 46.5446669 ], + [ 7.3162081, 46.547001 ], + [ 7.315935, 46.5493482 ], + [ 7.3158402, 46.5517021 ], + [ 7.3159241999999995, 46.5540562 ], + [ 7.3161867, 46.556404 ], + [ 7.3166269, 46.5587391 ], + [ 7.3172438, 46.5610551 ], + [ 7.3180356, 46.5633456 ], + [ 7.3190001, 46.5656045 ], + [ 7.3201349, 46.5678254 ], + [ 7.3214367, 46.5700022 ], + [ 7.3229021, 46.5721291 ], + [ 7.3245269, 46.5742002 ], + [ 7.3263069, 46.5762098 ], + [ 7.3282371, 46.5781523 ], + [ 7.3303121, 46.5800225 ], + [ 7.3325265, 46.5818152 ], + [ 7.334874, 46.5835254 ], + [ 7.3373483, 46.5851486 ], + [ 7.3399425, 46.5866802 ], + [ 7.3426496, 46.588116 ], + [ 7.3454621, 46.5894521 ], + [ 7.3483723, 46.5906849 ], + [ 7.3513722999999995, 46.5918108 ], + [ 7.3544537, 46.5928269 ], + [ 7.3576082, 46.5937304 ], + [ 7.3608270000000005, 46.5945187 ], + [ 7.3641013, 46.5951897 ], + [ 7.3674222, 46.5957416 ], + [ 7.3707805, 46.5961728 ], + [ 7.374167, 46.5964821 ], + [ 7.3775723, 46.5966688 ], + [ 7.3809871, 46.5967322 ], + [ 7.3844021, 46.5966723 ], + [ 7.3878078, 46.5964891 ], + [ 7.391195, 46.5961833 ], + [ 7.3945542, 46.5957555 ], + [ 7.3978762, 46.5952071 ], + [ 7.401152, 46.5945395 ], + [ 7.4043726, 46.5937545 ], + [ 7.407529, 46.5928543 ], + [ 7.4106126, 46.5918414 ], + [ 7.413615, 46.5907185 ], + [ 7.4165279, 46.5894887 ], + [ 7.4193432999999995, 46.5881555 ], + [ 7.4220535, 46.5867225 ], + [ 7.424651, 46.5851936 ], + [ 7.4271288, 46.583573 ], + [ 7.4294801, 46.5818651 ], + [ 7.4316983, 46.5800747 ], + [ 7.4337774, 46.5782067 ], + [ 7.4357118, 46.5762661 ], + [ 7.4374961, 46.5742584 ], + [ 7.4391255, 46.572189 ], + [ 7.4405954, 46.5700636 ], + [ 7.441902, 46.5678881 ], + [ 7.4430415, 46.5656684 ], + [ 7.444011, 46.5634105 ], + [ 7.4448077999999995, 46.5611208 ], + [ 7.4454296, 46.5588054 ], + [ 7.4458749, 46.5564708 ], + [ 7.4461425, 46.5541232 ], + [ 7.4462315, 46.5517693 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSTZ001", + "country" : "CHE", + "name" : [ + { + "text" : "LSTZ Zweisimmen", + "lang" : "de-CH" + }, + { + "text" : "LSTZ Zweisimmen", + "lang" : "fr-CH" + }, + { + "text" : "LSTZ Zweisimmen", + "lang" : "it-CH" + }, + { + "text" : "LSTZ Zweisimmen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Flugplatzgenosenschaft Zweisimmen FGZ", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzgenosenschaft Zweisimmen FGZ", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzgenosenschaft Zweisimmen FGZ", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzgenosenschaft Zweisimmen FGZ", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Roland Ginggen", + "lang" : "de-CH" + }, + { + "text" : "Roland Ginggen", + "lang" : "fr-CH" + }, + { + "text" : "Roland Ginggen", + "lang" : "it-CH" + }, + { + "text" : "Roland Ginggen", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.zweisimmen.aero/modellflug-und-drohnen/", + "email" : "info@zweisimmen.aero", + "phone" : "0041337222577", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7239103, 47.4460774 ], + [ 7.723904, 47.4460738 ], + [ 7.7238317, 47.4460221 ], + [ 7.7237887, 47.4460032 ], + [ 7.7237385, 47.4459869 ], + [ 7.7236941, 47.4459781 ], + [ 7.7236568, 47.4459758 ], + [ 7.7236144, 47.445978 ], + [ 7.723579, 47.4459832 ], + [ 7.7235555, 47.4459898 ], + [ 7.723532, 47.4460024 ], + [ 7.7235051, 47.4460227 ], + [ 7.7234877, 47.446042 ], + [ 7.7234764, 47.4460642 ], + [ 7.7234674, 47.4460987 ], + [ 7.7234663, 47.446135 ], + [ 7.723472, 47.4461673 ], + [ 7.7234832, 47.4461942 ], + [ 7.7234917, 47.4462115 ], + [ 7.7234925, 47.4462137 ], + [ 7.7235062, 47.4462395 ], + [ 7.723528, 47.4462826 ], + [ 7.7235634, 47.4463545 ], + [ 7.7245526, 47.4470054 ], + [ 7.7247565, 47.4472349 ], + [ 7.7248125, 47.4473014 ], + [ 7.7248686, 47.4473486 ], + [ 7.7249492, 47.4473927 ], + [ 7.7250892, 47.4474318 ], + [ 7.725224, 47.4474846 ], + [ 7.725834, 47.4479296 ], + [ 7.7260533, 47.4481167 ], + [ 7.7264648000000005, 47.448566 ], + [ 7.7265629, 47.4487098 ], + [ 7.7272885, 47.4484105 ], + [ 7.7273534999999995, 47.4483838 ], + [ 7.727481, 47.4483311 ], + [ 7.7275539, 47.4483021 ], + [ 7.7271579, 47.4479762 ], + [ 7.7267259, 47.4476022 ], + [ 7.7264078, 47.4473494 ], + [ 7.726029, 47.4470646 ], + [ 7.7259804, 47.4470173 ], + [ 7.7259753, 47.4470197 ], + [ 7.7259557999999995, 47.4470271 ], + [ 7.7259355, 47.4470334 ], + [ 7.7259145, 47.4470385 ], + [ 7.7259033, 47.4470405 ], + [ 7.7258929, 47.4470423 ], + [ 7.7258693, 47.4470446 ], + [ 7.7258454, 47.4470456 ], + [ 7.7258215, 47.4470453 ], + [ 7.7257978, 47.4470437 ], + [ 7.7257743, 47.4470408 ], + [ 7.7257468, 47.4470356 ], + [ 7.7257202, 47.4470287 ], + [ 7.7256947, 47.4470201 ], + [ 7.7256706, 47.4470098 ], + [ 7.7256439, 47.4469992 ], + [ 7.725626, 47.446991 ], + [ 7.7255382, 47.4469452 ], + [ 7.7252491, 47.4467988 ], + [ 7.7250913, 47.4467172 ], + [ 7.7249327, 47.4466333 ], + [ 7.7247129, 47.4465128 ], + [ 7.7246941, 47.4465035 ], + [ 7.7245982, 47.4464614 ], + [ 7.7245912, 47.4464583 ], + [ 7.7245715, 47.4464479 ], + [ 7.724355, 47.4463129 ], + [ 7.7243427, 47.4463051 ], + [ 7.7242145, 47.4462238 ], + [ 7.7242072, 47.4462199 ], + [ 7.7241677, 47.4462026 ], + [ 7.724117, 47.4461803 ], + [ 7.7240991999999995, 47.4461774 ], + [ 7.7239103, 47.4460774 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns359", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Bloond", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Bloond", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Bloond", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Bloond", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7676395, 47.4256292 ], + [ 7.7675964, 47.4258684 ], + [ 7.7676126, 47.4259017 ], + [ 7.7676277, 47.4259353 ], + [ 7.7676416, 47.4259691 ], + [ 7.7676543, 47.4260032 ], + [ 7.7676658, 47.4260374 ], + [ 7.7676762, 47.4260718 ], + [ 7.7677183, 47.4262205 ], + [ 7.7677221, 47.4262343 ], + [ 7.7677256, 47.4262482 ], + [ 7.7677332, 47.4262758 ], + [ 7.7677425, 47.4263031 ], + [ 7.7677533, 47.4263302 ], + [ 7.7677658, 47.4263569 ], + [ 7.7677798, 47.4263833 ], + [ 7.7677952999999995, 47.4264093 ], + [ 7.7678082, 47.4264306 ], + [ 7.7678202, 47.4264521 ], + [ 7.7678312, 47.4264738 ], + [ 7.7678414, 47.4264957 ], + [ 7.7678506, 47.4265178 ], + [ 7.7678589, 47.4265401 ], + [ 7.7679082, 47.4266671 ], + [ 7.7679808999999995, 47.4268472 ], + [ 7.7679879, 47.4268638 ], + [ 7.7681179, 47.4268481 ], + [ 7.7679976, 47.4265535 ], + [ 7.7678453, 47.4261896 ], + [ 7.7676395, 47.4256292 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr118", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Gugen", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Gugen", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Gugen", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Gugen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7536194, 47.417392 ], + [ 7.7536564, 47.4172997 ], + [ 7.7536607, 47.417289 ], + [ 7.7536685, 47.4172918 ], + [ 7.7536763, 47.4172946 ], + [ 7.753684, 47.4172974 ], + [ 7.7537098, 47.4173072 ], + [ 7.7537359, 47.4173165 ], + [ 7.7537624, 47.4173254 ], + [ 7.7537891, 47.4173339 ], + [ 7.7538099, 47.4173406 ], + [ 7.7538306, 47.4173474 ], + [ 7.7538512, 47.4173544 ], + [ 7.7538716, 47.4173616 ], + [ 7.7538882000000005, 47.4173679 ], + [ 7.7539046, 47.4173745 ], + [ 7.7539207, 47.4173814 ], + [ 7.7539364, 47.4173887 ], + [ 7.7539518, 47.4173964 ], + [ 7.7539671, 47.4174047 ], + [ 7.7539826, 47.4174128 ], + [ 7.7539982, 47.4174209 ], + [ 7.7540139, 47.4174288 ], + [ 7.7540344999999995, 47.4174383 ], + [ 7.7540555, 47.4174474 ], + [ 7.7540769, 47.4174561 ], + [ 7.7540986, 47.4174644 ], + [ 7.7541207, 47.4174722 ], + [ 7.7541431, 47.4174796 ], + [ 7.7541511, 47.4174824 ], + [ 7.754159, 47.4174852 ], + [ 7.7541668999999995, 47.417488 ], + [ 7.7541747999999995, 47.4174909 ], + [ 7.7541993, 47.4175004 ], + [ 7.7542235999999995, 47.4175101 ], + [ 7.7542382, 47.417516 ], + [ 7.7542386, 47.4175163 ], + [ 7.7542913, 47.417539 ], + [ 7.7543075, 47.417547 ], + [ 7.7543099, 47.4175482 ], + [ 7.7543122, 47.4175494 ], + [ 7.7543162, 47.4175515 ], + [ 7.7543283, 47.4175579 ], + [ 7.7543405, 47.4175648 ], + [ 7.7543463, 47.417568 ], + [ 7.7543637, 47.4175786 ], + [ 7.7543806, 47.4175895 ], + [ 7.7544004, 47.4176027 ], + [ 7.7544196, 47.4176163 ], + [ 7.7544381, 47.4176303 ], + [ 7.754456, 47.4176447 ], + [ 7.7544733, 47.4176595 ], + [ 7.7544904, 47.4176743 ], + [ 7.7545081, 47.4176888 ], + [ 7.7545649999999995, 47.4177301 ], + [ 7.7545822, 47.4177418 ], + [ 7.7545999, 47.4177531 ], + [ 7.7546183, 47.4177639 ], + [ 7.7546372, 47.4177742 ], + [ 7.7546447, 47.4177783 ], + [ 7.7546492, 47.4177803 ], + [ 7.7546567, 47.4177841 ], + [ 7.7546767, 47.4177935 ], + [ 7.7546972, 47.4178023 ], + [ 7.7547931, 47.4178427 ], + [ 7.7548107, 47.4178491 ], + [ 7.7548287, 47.417855 ], + [ 7.754847, 47.4178604 ], + [ 7.7548657, 47.4178652 ], + [ 7.7548752, 47.4178673 ], + [ 7.7548847, 47.4178695 ], + [ 7.7549024, 47.4178729 ], + [ 7.7553578, 47.4177764 ], + [ 7.7556928, 47.4177054 ], + [ 7.7557541, 47.4176924 ], + [ 7.7564769, 47.4176165 ], + [ 7.7568953, 47.417577 ], + [ 7.7574175, 47.41753 ], + [ 7.7574435, 47.4175277 ], + [ 7.7574342, 47.417512 ], + [ 7.7571872, 47.417253 ], + [ 7.7568935, 47.4169781 ], + [ 7.7564164, 47.4166123 ], + [ 7.7562183000000005, 47.4164345 ], + [ 7.7561812, 47.4163798 ], + [ 7.7561789999999995, 47.4163765 ], + [ 7.756136, 47.416313 ], + [ 7.7560737, 47.4161638 ], + [ 7.7560357, 47.4159491 ], + [ 7.7560619, 47.4157152 ], + [ 7.7561675999999995, 47.4154723 ], + [ 7.7561723, 47.4154615 ], + [ 7.7561966, 47.4154059 ], + [ 7.7562111, 47.4153745 ], + [ 7.7561067, 47.415355 ], + [ 7.7559929, 47.4153338 ], + [ 7.7558689, 47.415311 ], + [ 7.7557829, 47.4153635 ], + [ 7.7556787, 47.4154427 ], + [ 7.7556154, 47.4155204 ], + [ 7.7555458999999995, 47.4156158 ], + [ 7.7554725, 47.4157021 ], + [ 7.7553877, 47.4157915 ], + [ 7.7552643, 47.4158882 ], + [ 7.7552167999999995, 47.415932 ], + [ 7.7551326, 47.415997 ], + [ 7.755052, 47.4160546 ], + [ 7.7549451, 47.4161227 ], + [ 7.7548489, 47.4161795 ], + [ 7.7547519, 47.4162265 ], + [ 7.754643, 47.4162676 ], + [ 7.7545377, 47.4162979 ], + [ 7.754418, 47.416322 ], + [ 7.7543385, 47.4163333 ], + [ 7.7542476, 47.4163433 ], + [ 7.7541729, 47.4163495 ], + [ 7.7540909, 47.4163526 ], + [ 7.7539593, 47.4163512 ], + [ 7.7538599, 47.4163454 ], + [ 7.7537257, 47.4163375 ], + [ 7.7535822, 47.4163366 ], + [ 7.7533332999999995, 47.4163422 ], + [ 7.7533328, 47.4163482 ], + [ 7.753335, 47.4163917 ], + [ 7.7533408, 47.41651 ], + [ 7.7533774, 47.4167812 ], + [ 7.7533504, 47.4169526 ], + [ 7.7532768999999995, 47.4171954 ], + [ 7.7532096, 47.4173276 ], + [ 7.7532248, 47.4173299 ], + [ 7.7534856, 47.4173697 ], + [ 7.7535027, 47.4173722 ], + [ 7.7536194, 47.417392 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns016", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Zwischenflüe-Brunnenstig", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Zwischenflüe-Brunnenstig", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Zwischenflüe-Brunnenstig", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Zwischenflüe-Brunnenstig", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7460155, 47.3708807 ], + [ 7.7463936, 47.3708464 ], + [ 7.7466178, 47.3708458 ], + [ 7.7469394, 47.3707307 ], + [ 7.7471834, 47.3705111 ], + [ 7.7472665, 47.3703443 ], + [ 7.7472446999999995, 47.3702158 ], + [ 7.747167, 47.3701113 ], + [ 7.747008, 47.3699729 ], + [ 7.7469981, 47.3699642 ], + [ 7.7469353, 47.3699445 ], + [ 7.7468927999999995, 47.3699312 ], + [ 7.7464159, 47.3699041 ], + [ 7.7462968, 47.3698566 ], + [ 7.746061, 47.3697773 ], + [ 7.7456271999999995, 47.3696385 ], + [ 7.745404, 47.3695706 ], + [ 7.7452773, 47.3694567 ], + [ 7.7449200000000005, 47.3694548 ], + [ 7.7446257, 47.369447 ], + [ 7.7441753, 47.3693368 ], + [ 7.7439732, 47.3692831 ], + [ 7.7436993, 47.3691667 ], + [ 7.7435475, 47.3690758 ], + [ 7.7434208, 47.3689818 ], + [ 7.7432483, 47.368821 ], + [ 7.743219, 47.3686656 ], + [ 7.742896, 47.3686741 ], + [ 7.7426426, 47.3690671 ], + [ 7.7422626, 47.3691517 ], + [ 7.7420846, 47.369202 ], + [ 7.7414480999999995, 47.3685064 ], + [ 7.7413003, 47.3683878 ], + [ 7.7412132, 47.368331 ], + [ 7.7410823, 47.3682456 ], + [ 7.7409059, 47.3680176 ], + [ 7.7407859, 47.3678656 ], + [ 7.7407012, 47.3677469 ], + [ 7.7406781, 47.3677239 ], + [ 7.7406254, 47.3676722 ], + [ 7.7406009000000005, 47.3676457 ], + [ 7.74058, 47.3676178 ], + [ 7.740563, 47.3675887 ], + [ 7.7405618, 47.3675864 ], + [ 7.7405607, 47.3675841 ], + [ 7.7405597, 47.3675817 ], + [ 7.7405557, 47.3675716 ], + [ 7.7405527, 47.3675613 ], + [ 7.7405506, 47.3675509 ], + [ 7.7405494, 47.3675358 ], + [ 7.7405501999999995, 47.3675208 ], + [ 7.7405529, 47.3675058 ], + [ 7.7405577, 47.3674911 ], + [ 7.7405901, 47.3674113 ], + [ 7.7411472, 47.3673688 ], + [ 7.7418927, 47.3673122 ], + [ 7.7428985, 47.3672356 ], + [ 7.7430634, 47.3672231 ], + [ 7.7430975, 47.3671406 ], + [ 7.7431366, 47.3670856 ], + [ 7.7431825, 47.367033 ], + [ 7.7432349, 47.3669833 ], + [ 7.7432934, 47.3669369 ], + [ 7.7433575, 47.366894 ], + [ 7.7434268, 47.366855 ], + [ 7.7434669, 47.3668296 ], + [ 7.7435039, 47.366802 ], + [ 7.7435374, 47.3667725 ], + [ 7.7435673, 47.3667412 ], + [ 7.7435933, 47.3667084 ], + [ 7.7436153, 47.3666742 ], + [ 7.7437638, 47.3667606 ], + [ 7.7436212, 47.3668885 ], + [ 7.7437622, 47.3669521 ], + [ 7.7438166, 47.3671658 ], + [ 7.7438715, 47.3671616 ], + [ 7.7439373, 47.3670128 ], + [ 7.7440408, 47.3669319 ], + [ 7.7441012, 47.3668027 ], + [ 7.7440959, 47.3667457 ], + [ 7.7441804, 47.3667352 ], + [ 7.744193, 47.3666291 ], + [ 7.744166, 47.3665615 ], + [ 7.7441976, 47.3665445 ], + [ 7.7444653, 47.36653 ], + [ 7.7445454, 47.3665591 ], + [ 7.7446353, 47.366514 ], + [ 7.7446483, 47.3664824 ], + [ 7.7445601, 47.3664419 ], + [ 7.7446394, 47.3663733 ], + [ 7.7445892, 47.3663104 ], + [ 7.7446447, 47.3662457 ], + [ 7.7446584, 47.3661781 ], + [ 7.7445661, 47.3660984 ], + [ 7.7444007, 47.3660878 ], + [ 7.7444402, 47.3660461 ], + [ 7.7444469, 47.3660158 ], + [ 7.7444508, 47.36596 ], + [ 7.744347, 47.3659222 ], + [ 7.7442945, 47.3657783 ], + [ 7.7440782, 47.3656827 ], + [ 7.7442901, 47.3655228 ], + [ 7.7445268, 47.3653653 ], + [ 7.7445325, 47.3652826 ], + [ 7.7446568, 47.3651742 ], + [ 7.7446325, 47.3650592 ], + [ 7.7448029, 47.3649461 ], + [ 7.7448522, 47.3649549 ], + [ 7.7449514, 47.3649726 ], + [ 7.7450575, 47.3649534 ], + [ 7.7451111, 47.3648915 ], + [ 7.7452371, 47.3649501 ], + [ 7.7455863, 47.3648005 ], + [ 7.7457273, 47.364846299999996 ], + [ 7.7460256, 47.3648704 ], + [ 7.7462792, 47.3649115 ], + [ 7.7464406, 47.3648585 ], + [ 7.7466045, 47.3648574 ], + [ 7.7468356, 47.3649257 ], + [ 7.747147, 47.3649082 ], + [ 7.7474027, 47.3648073 ], + [ 7.7474153999999995, 47.3647842 ], + [ 7.7476893, 47.3646771 ], + [ 7.7477796, 47.3646821 ], + [ 7.7478184, 47.3646265 ], + [ 7.7479464, 47.3645787 ], + [ 7.7483148, 47.36472 ], + [ 7.7485392, 47.3646464 ], + [ 7.7485922, 47.3646291 ], + [ 7.7487818, 47.3645963 ], + [ 7.7489481, 47.3646362 ], + [ 7.749146, 47.3648573 ], + [ 7.749316, 47.3648712 ], + [ 7.7494506, 47.3649095 ], + [ 7.7496066, 47.3648542 ], + [ 7.7496211, 47.3646331 ], + [ 7.7497074, 47.3645757 ], + [ 7.7498389, 47.3646214 ], + [ 7.74989, 47.3645653 ], + [ 7.749924, 47.3645069 ], + [ 7.750086, 47.3644588 ], + [ 7.7501973, 47.3642839 ], + [ 7.7502146, 47.3642235 ], + [ 7.7503356, 47.3640383 ], + [ 7.7504554, 47.3640479 ], + [ 7.7504939, 47.3641147 ], + [ 7.7506391, 47.3640641 ], + [ 7.75064, 47.3640199 ], + [ 7.7510258, 47.3640083 ], + [ 7.751289, 47.36404 ], + [ 7.7513225, 47.3640965 ], + [ 7.7514307, 47.3640539 ], + [ 7.7519263, 47.3640381 ], + [ 7.7519474, 47.3640422 ], + [ 7.7520076, 47.3640442 ], + [ 7.7523298, 47.3640528 ], + [ 7.7528763, 47.3640656 ], + [ 7.7531844, 47.3640457 ], + [ 7.7534361, 47.3639641 ], + [ 7.7535073, 47.3638777 ], + [ 7.7535891, 47.3637781 ], + [ 7.7536018, 47.3635543 ], + [ 7.7534883, 47.3633024 ], + [ 7.7533469, 47.3631432 ], + [ 7.7521239, 47.3625695 ], + [ 7.7524122, 47.3621911 ], + [ 7.7525518, 47.3620058 ], + [ 7.752657, 47.3618722 ], + [ 7.7527187, 47.3618065 ], + [ 7.7527004999999996, 47.3617256 ], + [ 7.7525908, 47.3617043 ], + [ 7.7523542, 47.3617031 ], + [ 7.7522267, 47.361683 ], + [ 7.7521863, 47.3616318 ], + [ 7.752078, 47.3616259 ], + [ 7.7520275, 47.3617075 ], + [ 7.7519802, 47.3616775 ], + [ 7.7519618, 47.3616649 ], + [ 7.751763, 47.3617397 ], + [ 7.7517965, 47.3617947 ], + [ 7.7517825, 47.3618134 ], + [ 7.7515195, 47.3618154 ], + [ 7.7513328999999995, 47.3616053 ], + [ 7.7508242, 47.3615096 ], + [ 7.7504369, 47.3611804 ], + [ 7.7503554999999995, 47.3611464 ], + [ 7.7503031, 47.3611126 ], + [ 7.7503025999999995, 47.3610814 ], + [ 7.7502324, 47.3610503 ], + [ 7.7501698999999995, 47.3610347 ], + [ 7.7500716, 47.3610377 ], + [ 7.7498805, 47.3610302 ], + [ 7.7497108, 47.3610208 ], + [ 7.7496243, 47.3609326 ], + [ 7.7492884, 47.3608363 ], + [ 7.749092, 47.3608262 ], + [ 7.749126, 47.3608605 ], + [ 7.7493455, 47.3610276 ], + [ 7.7494824, 47.3611822 ], + [ 7.7495709, 47.3612795 ], + [ 7.7496314, 47.3613461 ], + [ 7.7510156, 47.3624913 ], + [ 7.7511109, 47.3625701 ], + [ 7.7521056, 47.3630707 ], + [ 7.7525024, 47.3632647 ], + [ 7.7524771, 47.363294 ], + [ 7.7523415, 47.3634575 ], + [ 7.7521234, 47.3637308 ], + [ 7.7519552, 47.3639388 ], + [ 7.7518804, 47.3638668 ], + [ 7.7514754, 47.3638349 ], + [ 7.7504957999999995, 47.3637694 ], + [ 7.7497506, 47.3637889 ], + [ 7.7492255, 47.3639086 ], + [ 7.7488141, 47.363788 ], + [ 7.7485304, 47.3638729 ], + [ 7.7480557999999995, 47.3639906 ], + [ 7.7476831, 47.364037 ], + [ 7.7470073, 47.3641227 ], + [ 7.7465774, 47.3641077 ], + [ 7.7461272999999995, 47.3640147 ], + [ 7.74568, 47.3641507 ], + [ 7.7453914, 47.3642649 ], + [ 7.7451718, 47.364363 ], + [ 7.7448387, 47.3645249 ], + [ 7.7440742, 47.3647489 ], + [ 7.7436534, 47.3648972 ], + [ 7.7431675, 47.3651375 ], + [ 7.7430572, 47.3652197 ], + [ 7.7427834, 47.3651233 ], + [ 7.7425957, 47.3650882 ], + [ 7.7424935999999995, 47.365203 ], + [ 7.7423167, 47.365392 ], + [ 7.7422598, 47.3654586 ], + [ 7.7418888, 47.3655889 ], + [ 7.7414375, 47.36562 ], + [ 7.740577, 47.3657882 ], + [ 7.7399011, 47.3659792 ], + [ 7.7397872, 47.3660114 ], + [ 7.739223, 47.3662084 ], + [ 7.738888, 47.3664172 ], + [ 7.7381262, 47.3666468 ], + [ 7.737656, 47.3668552 ], + [ 7.73777, 47.3670339 ], + [ 7.7380388, 47.3671458 ], + [ 7.7382796, 47.36729 ], + [ 7.7386955, 47.3674452 ], + [ 7.7387193, 47.3675542 ], + [ 7.7387598, 47.3677676 ], + [ 7.7389737, 47.3680991 ], + [ 7.7391382, 47.3683171 ], + [ 7.7390847, 47.3685503 ], + [ 7.7391782, 47.3691001 ], + [ 7.7392272, 47.3693404 ], + [ 7.7391731, 47.3695668 ], + [ 7.7392014, 47.3698025 ], + [ 7.7390477, 47.3700275 ], + [ 7.73885, 47.3702251 ], + [ 7.7392620999999995, 47.3703669 ], + [ 7.7395738, 47.3704956 ], + [ 7.7398720999999995, 47.3706188 ], + [ 7.7401112, 47.3707155 ], + [ 7.7402004, 47.3707472 ], + [ 7.7403178, 47.3707764 ], + [ 7.7404098, 47.3707911 ], + [ 7.7404281, 47.3707935 ], + [ 7.740515, 47.3708046 ], + [ 7.7406134, 47.3708136 ], + [ 7.7408084, 47.3708226 ], + [ 7.7412919, 47.3708519 ], + [ 7.741718, 47.3708789 ], + [ 7.7421641, 47.37064 ], + [ 7.7424388, 47.3704794 ], + [ 7.7427014, 47.3703586 ], + [ 7.7430704, 47.3702908 ], + [ 7.7432792, 47.370266 ], + [ 7.7435211, 47.3706325 ], + [ 7.7437899, 47.3706311 ], + [ 7.7449566999999995, 47.3706314 ], + [ 7.7449861, 47.3707254 ], + [ 7.7451673, 47.3708068 ], + [ 7.7454479, 47.3708679 ], + [ 7.7457354, 47.37091 ], + [ 7.7460155, 47.3708807 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns339", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Bilsteinflue - Nünbrunnen", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Bilsteinflue - Nünbrunnen", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Bilsteinflue - Nünbrunnen", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Bilsteinflue - Nünbrunnen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5821252, 47.5180518 ], + [ 7.5821917, 47.5180161 ], + [ 7.5822587, 47.5179808 ], + [ 7.5823260999999995, 47.5179459 ], + [ 7.5823939, 47.5179114 ], + [ 7.5824622, 47.5178772 ], + [ 7.5825309, 47.5178435 ], + [ 7.582711, 47.5177441 ], + [ 7.5826171, 47.5176688 ], + [ 7.5825849, 47.5175931 ], + [ 7.5825913, 47.517469 ], + [ 7.5825786, 47.5173091 ], + [ 7.5825412, 47.517151 ], + [ 7.5824796, 47.5169965 ], + [ 7.5823946, 47.5168471 ], + [ 7.582287, 47.5167046 ], + [ 7.5822761, 47.5166898 ], + [ 7.5822371, 47.516627 ], + [ 7.5822081, 47.5165618 ], + [ 7.5821894, 47.5164949 ], + [ 7.5821814, 47.5164268 ], + [ 7.5823412, 47.5162888 ], + [ 7.5824106, 47.5162511 ], + [ 7.5826833, 47.5160624 ], + [ 7.5830531, 47.5159853 ], + [ 7.5832657, 47.5159016 ], + [ 7.5833549, 47.5158778 ], + [ 7.5834928999999995, 47.5158333 ], + [ 7.5836949, 47.5157857 ], + [ 7.5840135, 47.515657 ], + [ 7.5841438, 47.5155625 ], + [ 7.5842452, 47.5154586 ], + [ 7.584271, 47.5153791 ], + [ 7.5842634, 47.5153362 ], + [ 7.5841482, 47.5153093 ], + [ 7.5840653, 47.5153197 ], + [ 7.584039, 47.515322 ], + [ 7.584039, 47.5153224 ], + [ 7.5839502, 47.5153347 ], + [ 7.5837904, 47.5153997 ], + [ 7.5836497, 47.5154569 ], + [ 7.5831209, 47.5155115 ], + [ 7.5830068, 47.5155117 ], + [ 7.582894, 47.5154942 ], + [ 7.5828109, 47.515468 ], + [ 7.5823842, 47.5152799 ], + [ 7.5823537, 47.5152556 ], + [ 7.5815527, 47.5148544 ], + [ 7.5815124, 47.5148309 ], + [ 7.5808773, 47.5150027 ], + [ 7.5809408, 47.515102 ], + [ 7.5810383, 47.5152143 ], + [ 7.5811538, 47.5153175 ], + [ 7.5812885, 47.5154115 ], + [ 7.5816107, 47.5156135 ], + [ 7.5817284, 47.5157195 ], + [ 7.5817884, 47.5157845 ], + [ 7.5818328, 47.5158319 ], + [ 7.5819, 47.515958 ], + [ 7.581895, 47.516093 ], + [ 7.5818638, 47.5163518 ], + [ 7.5817971, 47.5165739 ], + [ 7.5817761, 47.5166764 ], + [ 7.5817815, 47.5167799 ], + [ 7.5818061, 47.516927 ], + [ 7.5818083, 47.5170534 ], + [ 7.5817659, 47.5171791 ], + [ 7.5816842, 47.5172942 ], + [ 7.5815646, 47.517393 ], + [ 7.5814432, 47.517475 ], + [ 7.5810838, 47.5177194 ], + [ 7.5810133, 47.5177664 ], + [ 7.5806811, 47.518006 ], + [ 7.5805522, 47.5181069 ], + [ 7.5805454, 47.5181128 ], + [ 7.5804363, 47.5182131 ], + [ 7.580332, 47.5183167 ], + [ 7.5799123, 47.5186606 ], + [ 7.5797862, 47.5187545 ], + [ 7.5797526, 47.5187746 ], + [ 7.5796465, 47.51884 ], + [ 7.5794407, 47.5189535 ], + [ 7.5792124, 47.5190896 ], + [ 7.5790009, 47.5192365 ], + [ 7.5784989, 47.5196 ], + [ 7.5780731, 47.5199487 ], + [ 7.5780525, 47.5199646 ], + [ 7.5780272, 47.520065 ], + [ 7.5775165, 47.5203259 ], + [ 7.577308, 47.5204526 ], + [ 7.5772382, 47.5204951 ], + [ 7.5770347000000005, 47.5206055 ], + [ 7.5769743, 47.5206382 ], + [ 7.5766604, 47.5208664 ], + [ 7.5764761, 47.5210004 ], + [ 7.5758806, 47.5212402 ], + [ 7.5757693, 47.5212851 ], + [ 7.5753955, 47.521447 ], + [ 7.5753821, 47.5214528 ], + [ 7.5753687, 47.5214586 ], + [ 7.5754168, 47.5215162 ], + [ 7.575501, 47.5216073 ], + [ 7.5753341, 47.5217089 ], + [ 7.5753366, 47.5218183 ], + [ 7.5753871, 47.5218926 ], + [ 7.5754071, 47.5218959 ], + [ 7.5754434, 47.5219142 ], + [ 7.5754202, 47.5219588 ], + [ 7.5754988, 47.5219228 ], + [ 7.5755769, 47.5218863 ], + [ 7.5756547, 47.5218495 ], + [ 7.575732, 47.5218122 ], + [ 7.5758088, 47.5217745 ], + [ 7.5758852999999995, 47.5217364 ], + [ 7.575952, 47.5217026 ], + [ 7.5760184, 47.5216684 ], + [ 7.5760844, 47.5216339 ], + [ 7.5761500999999996, 47.5215992 ], + [ 7.5762154, 47.5215641 ], + [ 7.5762874, 47.5215242 ], + [ 7.576359, 47.521484 ], + [ 7.5764302, 47.5214435 ], + [ 7.5765011, 47.5214027 ], + [ 7.5765587, 47.521369 ], + [ 7.5766161, 47.5213352 ], + [ 7.5766732, 47.5213011 ], + [ 7.5767301, 47.5212668 ], + [ 7.5771002, 47.5210464 ], + [ 7.5773539, 47.5208947 ], + [ 7.5775766, 47.5207606 ], + [ 7.5780656, 47.5204692 ], + [ 7.5784148, 47.5202603 ], + [ 7.5789527, 47.5199364 ], + [ 7.5793931, 47.5196701 ], + [ 7.5803986, 47.5190698 ], + [ 7.5807221, 47.5188782 ], + [ 7.5817342, 47.5182737 ], + [ 7.5817982, 47.5182357 ], + [ 7.5818627, 47.5181982 ], + [ 7.5819276, 47.518161 ], + [ 7.581993, 47.5181242 ], + [ 7.5820589, 47.5180878 ], + [ 7.5821252, 47.5180518 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns136", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Känelgraben - Bammertsgraben", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Känelgraben - Bammertsgraben", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Känelgraben - Bammertsgraben", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Känelgraben - Bammertsgraben", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8255649, 47.4195336 ], + [ 7.8260698, 47.4195335 ], + [ 7.8263193, 47.4196007 ], + [ 7.8264368, 47.4195296 ], + [ 7.8263579, 47.4194363 ], + [ 7.8261769, 47.4193792 ], + [ 7.8260673, 47.4193292 ], + [ 7.8259706, 47.4191715 ], + [ 7.8256896, 47.4185454 ], + [ 7.8255064999999995, 47.4181392 ], + [ 7.8253686, 47.41792 ], + [ 7.8251196, 47.4175978 ], + [ 7.8250114, 47.417426 ], + [ 7.8249072, 47.4174283 ], + [ 7.8251318, 47.4181713 ], + [ 7.8252747, 47.4188339 ], + [ 7.8253356, 47.419008 ], + [ 7.8254066, 47.4191871 ], + [ 7.8255649, 47.4195336 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns116", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Chilpen-Schmetterlingskorridor", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Chilpen-Schmetterlingskorridor", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Chilpen-Schmetterlingskorridor", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Chilpen-Schmetterlingskorridor", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.627183, 47.4922832 ], + [ 7.6271035, 47.4921132 ], + [ 7.6270006, 47.4919414 ], + [ 7.6268057, 47.4916678 ], + [ 7.6267244, 47.4916037 ], + [ 7.6265216, 47.4917367 ], + [ 7.6262396, 47.4918615 ], + [ 7.6256469, 47.4920714 ], + [ 7.6253525, 47.4921536 ], + [ 7.6251021, 47.492215 ], + [ 7.6250813, 47.492184 ], + [ 7.6250183, 47.4921993 ], + [ 7.6250681, 47.4921529 ], + [ 7.6251984, 47.4920553 ], + [ 7.6252234, 47.4920396 ], + [ 7.6252981, 47.4920024 ], + [ 7.6253747, 47.4919658 ], + [ 7.6254265, 47.4919461 ], + [ 7.6254809, 47.4919298 ], + [ 7.6256525, 47.491833 ], + [ 7.6256687, 47.4918204 ], + [ 7.6257223, 47.491779 ], + [ 7.6257946, 47.4917474 ], + [ 7.6259345, 47.4916681 ], + [ 7.6259586, 47.491633 ], + [ 7.625956, 47.4916257 ], + [ 7.6260065, 47.4916191 ], + [ 7.6261130999999995, 47.4915641 ], + [ 7.6261931, 47.4915277 ], + [ 7.6262216, 47.4915047 ], + [ 7.6263123, 47.4914645 ], + [ 7.6265097, 47.4913833 ], + [ 7.6265275, 47.4913778 ], + [ 7.6266313, 47.4913252 ], + [ 7.6269165999999995, 47.4912144 ], + [ 7.6270061, 47.4911729 ], + [ 7.627126, 47.4911343 ], + [ 7.6271296, 47.4911317 ], + [ 7.62716, 47.4910988 ], + [ 7.6272968, 47.491009 ], + [ 7.6273075, 47.490964 ], + [ 7.6273409, 47.4909006 ], + [ 7.6273976, 47.490868 ], + [ 7.6274463, 47.4908574 ], + [ 7.6275528999999995, 47.4908264 ], + [ 7.6275762, 47.490823 ], + [ 7.6275524, 47.4908044 ], + [ 7.6275184, 47.4907898 ], + [ 7.6273564, 47.490764 ], + [ 7.6269274, 47.4907445 ], + [ 7.6268471, 47.4907563 ], + [ 7.6259308, 47.4909397 ], + [ 7.6251549, 47.4910965 ], + [ 7.6242858, 47.4912706 ], + [ 7.6242288, 47.4912966 ], + [ 7.624206, 47.4913384 ], + [ 7.6242018, 47.4915373 ], + [ 7.6241904, 47.4916279 ], + [ 7.6241679, 47.491721 ], + [ 7.6241357, 47.4918115 ], + [ 7.6240898999999995, 47.491901 ], + [ 7.6240388, 47.4919862 ], + [ 7.6239767, 47.4920698 ], + [ 7.623904, 47.49215 ], + [ 7.6238275, 47.4922256 ], + [ 7.6237439, 47.4922996 ], + [ 7.6235137, 47.4924818 ], + [ 7.6235024, 47.4925161 ], + [ 7.6235424, 47.4925396 ], + [ 7.623654, 47.4925566 ], + [ 7.6239775, 47.4926011 ], + [ 7.6240668, 47.4926723 ], + [ 7.6240979, 47.4926881 ], + [ 7.6241243, 47.4927167 ], + [ 7.6243464, 47.4928639 ], + [ 7.6245139, 47.4930142 ], + [ 7.6245731, 47.4930819 ], + [ 7.6247333, 47.4933563 ], + [ 7.6248336, 47.4934701 ], + [ 7.6247862, 47.493487 ], + [ 7.6247449, 47.493512 ], + [ 7.6246842, 47.4935726 ], + [ 7.6244061, 47.4938724 ], + [ 7.624473, 47.4938989 ], + [ 7.6250102, 47.4941113 ], + [ 7.6255419, 47.494321 ], + [ 7.6255649, 47.4943301 ], + [ 7.6262687, 47.494608 ], + [ 7.6263631, 47.4946454 ], + [ 7.6264126999999995, 47.4943915 ], + [ 7.6265307, 47.4941313 ], + [ 7.6266836, 47.4938867 ], + [ 7.6271614, 47.4933494 ], + [ 7.6271957, 47.4933138 ], + [ 7.6266145, 47.4928267 ], + [ 7.6265399, 47.4927642 ], + [ 7.6265063, 47.492736 ], + [ 7.6265397, 47.4927201 ], + [ 7.6268683, 47.4925859 ], + [ 7.627105, 47.4925195 ], + [ 7.6272499, 47.4925025 ], + [ 7.627183, 47.4922832 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns062", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Ermitage - Chilchholz", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Ermitage - Chilchholz", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Ermitage - Chilchholz", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Ermitage - Chilchholz", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7416454, 47.4253992 ], + [ 7.7418056, 47.4256334 ], + [ 7.7422084, 47.4259212 ], + [ 7.7425594, 47.4261807 ], + [ 7.7427997, 47.426377 ], + [ 7.7432278, 47.4267155 ], + [ 7.7436975, 47.4270353 ], + [ 7.7441426, 47.42725 ], + [ 7.7446355, 47.4274894 ], + [ 7.7450974, 47.4277101 ], + [ 7.745588, 47.4281708 ], + [ 7.7461024, 47.4286514 ], + [ 7.7463422, 47.428871 ], + [ 7.7463496, 47.4288823 ], + [ 7.7463844, 47.4288566 ], + [ 7.7465699, 47.4287203 ], + [ 7.7467371, 47.4285735 ], + [ 7.7466718, 47.4282884 ], + [ 7.7467065, 47.4280834 ], + [ 7.7470006, 47.4274276 ], + [ 7.7467847, 47.4274847 ], + [ 7.7465738, 47.4274026 ], + [ 7.7463301, 47.4270447 ], + [ 7.7458523, 47.4268416 ], + [ 7.7453956, 47.4264265 ], + [ 7.7451445, 47.4262116 ], + [ 7.7448638, 47.4259475 ], + [ 7.7449422, 47.425687 ], + [ 7.745035, 47.4252946 ], + [ 7.7451077999999995, 47.4250594 ], + [ 7.745132, 47.4249723 ], + [ 7.745034, 47.4249325 ], + [ 7.7449924, 47.424881 ], + [ 7.7449763, 47.4247966 ], + [ 7.7449531, 47.424673 ], + [ 7.7446233, 47.4248341 ], + [ 7.7443143, 47.4250026 ], + [ 7.7440335000000005, 47.425154 ], + [ 7.7438713, 47.4252431 ], + [ 7.7437585, 47.4252822 ], + [ 7.7434839, 47.4253156 ], + [ 7.7432801, 47.4253231 ], + [ 7.7430121, 47.4253167 ], + [ 7.7428531, 47.4253197 ], + [ 7.7425585, 47.4253226 ], + [ 7.7421223, 47.4253694 ], + [ 7.7416454, 47.4253992 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns212", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Tannenboden - Allmet", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Tannenboden - Allmet", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Tannenboden - Allmet", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Tannenboden - Allmet", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.8083746, 47.0881522 ], + [ 6.8084296, 47.0883079 ], + [ 6.808538, 47.088468 ], + [ 6.80869, 47.0886106 ], + [ 6.8088747, 47.0887521 ], + [ 6.8089295, 47.0887941 ], + [ 6.8089949, 47.0888442 ], + [ 6.8091846, 47.0889637 ], + [ 6.8094048, 47.0890556 ], + [ 6.8096471, 47.0891164 ], + [ 6.809902, 47.0891438 ], + [ 6.8101599, 47.0891367 ], + [ 6.8104108, 47.0890953 ], + [ 6.810645, 47.0890214 ], + [ 6.8108537, 47.0889177 ], + [ 6.8109649, 47.0888501 ], + [ 6.8113295, 47.0886284 ], + [ 6.8115047, 47.0884988 ], + [ 6.8116394, 47.0883483 ], + [ 6.8117285, 47.0881828 ], + [ 6.8117687, 47.0880085 ], + [ 6.8117582, 47.0878323 ], + [ 6.8116977, 47.0876609 ], + [ 6.8115893, 47.0875008 ], + [ 6.8114373, 47.0873582 ], + [ 6.8111326, 47.0871246 ], + [ 6.8109428, 47.0870051 ], + [ 6.8107226, 47.0869131 ], + [ 6.8105865, 47.086879 ], + [ 6.8105727, 47.0868584 ], + [ 6.8104213, 47.0867156 ], + [ 6.8095046, 47.0860087 ], + [ 6.8093153, 47.0858888 ], + [ 6.8090954, 47.0857964 ], + [ 6.8088533, 47.0857351 ], + [ 6.8085983, 47.0857072 ], + [ 6.8083403, 47.0857139 ], + [ 6.8080891, 47.0857548 ], + [ 6.8078544999999995, 47.0858284 ], + [ 6.8076454, 47.0859319 ], + [ 6.8074099, 47.0860744 ], + [ 6.8072344000000005, 47.0862037 ], + [ 6.8070992, 47.0863539 ], + [ 6.8070094999999995, 47.0865193 ], + [ 6.8069688, 47.0866934 ], + [ 6.8069786, 47.0868696 ], + [ 6.8070385, 47.0870412 ], + [ 6.8071463, 47.0872014 ], + [ 6.8072978, 47.0873442 ], + [ 6.8074755, 47.0874812 ], + [ 6.8078537, 47.0877729 ], + [ 6.8082146, 47.088051 ], + [ 6.8083746, 47.0881522 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "NE02", + "country" : "CHE", + "name" : [ + { + "text" : "SISPOL", + "lang" : "de-CH" + }, + { + "text" : "SISPOL", + "lang" : "fr-CH" + }, + { + "text" : "SISPOL", + "lang" : "it-CH" + }, + { + "text" : "SISPOL", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "regulationExemption" : "YES", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Police Neuchâteloise", + "lang" : "de-CH" + }, + { + "text" : "Police Neuchâteloise", + "lang" : "fr-CH" + }, + { + "text" : "Police Neuchâteloise", + "lang" : "it-CH" + }, + { + "text" : "Police Neuchâteloise", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "PN - Rens et opérations", + "lang" : "de-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "fr-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "it-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "PN - Rens et opérations", + "lang" : "de-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "fr-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "it-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ne.ch/autorites/DESC/PONE/Pages/Drones.aspx", + "email" : "Police.Neuchateloise@ne.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5540288, 47.4926252 ], + [ 7.5540856, 47.4926127 ], + [ 7.554098, 47.4926085 ], + [ 7.5541303, 47.4925977 ], + [ 7.5540155, 47.4925123 ], + [ 7.5538188, 47.4924841 ], + [ 7.5535254, 47.4923776 ], + [ 7.5533884, 47.4923433 ], + [ 7.5531751, 47.4922901 ], + [ 7.5530201, 47.4922517 ], + [ 7.5528485, 47.4922144 ], + [ 7.5528623, 47.4923203 ], + [ 7.5528647, 47.4923401 ], + [ 7.5528856, 47.4923392 ], + [ 7.5528971, 47.4924334 ], + [ 7.5529177, 47.4924393 ], + [ 7.5529386, 47.4924447 ], + [ 7.5529599, 47.4924496 ], + [ 7.5529813, 47.4924539 ], + [ 7.553003, 47.4924578 ], + [ 7.5530249, 47.4924611 ], + [ 7.5530469, 47.4924639 ], + [ 7.553069, 47.4924661 ], + [ 7.553107, 47.4924687 ], + [ 7.5531085000000004, 47.4924087 ], + [ 7.5532384, 47.4924402 ], + [ 7.5532593, 47.4924783 ], + [ 7.5532663, 47.4924791 ], + [ 7.5532733, 47.4924793 ], + [ 7.5532804, 47.4924789 ], + [ 7.5532873, 47.4924779 ], + [ 7.5532939, 47.4924762 ], + [ 7.5533002, 47.4924739 ], + [ 7.5533059, 47.4924711 ], + [ 7.5533111, 47.4924678 ], + [ 7.5533155, 47.4924641 ], + [ 7.5533192, 47.49246 ], + [ 7.5534236, 47.4924748 ], + [ 7.5534911000000005, 47.4924839 ], + [ 7.5535519, 47.4924942 ], + [ 7.5536549, 47.4925223 ], + [ 7.5537721, 47.4925678 ], + [ 7.5538423, 47.4926032 ], + [ 7.5538576, 47.4926102 ], + [ 7.5538738, 47.4926163 ], + [ 7.5538906, 47.4926214 ], + [ 7.553908, 47.4926255 ], + [ 7.5539259, 47.4926285 ], + [ 7.5539441, 47.4926305 ], + [ 7.5539625, 47.4926315 ], + [ 7.553981, 47.4926313 ], + [ 7.5540237, 47.4926262 ], + [ 7.5540288, 47.4926252 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns140", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Marbach", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Marbach", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Marbach", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Marbach", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7720836, 47.3527944 ], + [ 7.772183, 47.3528731 ], + [ 7.7722586, 47.3529497 ], + [ 7.7723186, 47.3530301 ], + [ 7.7723987, 47.3531866 ], + [ 7.772445, 47.3531781 ], + [ 7.7727099, 47.3535678 ], + [ 7.7727996, 47.3537161 ], + [ 7.7729342, 47.3536949 ], + [ 7.7734603, 47.3540347 ], + [ 7.7741691, 47.3545835 ], + [ 7.7746592, 47.3548642 ], + [ 7.7748595, 47.3549526 ], + [ 7.7750099, 47.3550715 ], + [ 7.7751887, 47.3552141 ], + [ 7.7752248, 47.3551726 ], + [ 7.7756962, 47.3554654 ], + [ 7.7761858, 47.3557447 ], + [ 7.7767387, 47.3559521 ], + [ 7.7770315, 47.3560352 ], + [ 7.7774354, 47.3561538 ], + [ 7.7777841, 47.3563377 ], + [ 7.7783225, 47.3565873 ], + [ 7.7788514, 47.3568687 ], + [ 7.7789702, 47.3567817 ], + [ 7.7795371, 47.3570845 ], + [ 7.7801973, 47.3572787 ], + [ 7.7806519, 47.3574312 ], + [ 7.7811153, 47.3575317 ], + [ 7.7814449, 47.3576303 ], + [ 7.7817174, 47.3577962 ], + [ 7.7821257, 47.3579022 ], + [ 7.7827638, 47.3573013 ], + [ 7.7833868, 47.3575039 ], + [ 7.7840431, 47.3576947 ], + [ 7.7847693, 47.3578759 ], + [ 7.7853945, 47.3580076 ], + [ 7.7860342, 47.3582074 ], + [ 7.7866024, 47.358385 ], + [ 7.7872901, 47.3586403 ], + [ 7.78796, 47.3588464 ], + [ 7.7885862, 47.3590499 ], + [ 7.7893118999999995, 47.3592701 ], + [ 7.7899831, 47.3594596 ], + [ 7.7907339, 47.3596131 ], + [ 7.7917662, 47.359891 ], + [ 7.7920576, 47.3599287 ], + [ 7.792643, 47.3600537 ], + [ 7.7931047, 47.3600387 ], + [ 7.793734, 47.3602945 ], + [ 7.7941037, 47.3603563 ], + [ 7.7945333, 47.3604275 ], + [ 7.7954182, 47.3605829 ], + [ 7.7962891, 47.3607234 ], + [ 7.7971231, 47.3608456 ], + [ 7.7982132, 47.3610026 ], + [ 7.7990901, 47.3611732 ], + [ 7.7992777, 47.3612276 ], + [ 7.799804, 47.3614088 ], + [ 7.800206, 47.3616799 ], + [ 7.8002186, 47.3616847 ], + [ 7.8002632, 47.3616122 ], + [ 7.8004976, 47.3612311 ], + [ 7.8003678, 47.360658 ], + [ 7.8001705999999995, 47.3605162 ], + [ 7.799924, 47.3603415 ], + [ 7.7990564, 47.3598207 ], + [ 7.7988973999999995, 47.3592364 ], + [ 7.7972596, 47.3589776 ], + [ 7.7965157, 47.3588623 ], + [ 7.795418, 47.3587485 ], + [ 7.7948885, 47.358688 ], + [ 7.7940721, 47.3585934 ], + [ 7.7934496, 47.3585187 ], + [ 7.7926834, 47.3582926 ], + [ 7.7920509, 47.3581026 ], + [ 7.7916179, 47.3579332 ], + [ 7.7910876, 47.3577234 ], + [ 7.7903872, 47.3574031 ], + [ 7.7896385, 47.356968 ], + [ 7.7893222, 47.3568086 ], + [ 7.7889636, 47.356588 ], + [ 7.7886248, 47.3563867 ], + [ 7.7884181, 47.3562707 ], + [ 7.7876617, 47.3558453 ], + [ 7.7875108, 47.3558428 ], + [ 7.7872571, 47.355802 ], + [ 7.7865193, 47.3556247 ], + [ 7.7860706, 47.3554836 ], + [ 7.7858464, 47.3554346 ], + [ 7.7854281, 47.3553755 ], + [ 7.7852008, 47.3553546 ], + [ 7.784957, 47.3553 ], + [ 7.784561, 47.3552145 ], + [ 7.7841550999999995, 47.3551323 ], + [ 7.7838538, 47.3550487 ], + [ 7.7835904, 47.3549999 ], + [ 7.7835097, 47.3549878 ], + [ 7.7830451, 47.3549199 ], + [ 7.782743, 47.3548577 ], + [ 7.7822769, 47.3547084 ], + [ 7.7816764, 47.3545632 ], + [ 7.7811711, 47.3544704 ], + [ 7.7809652, 47.3544259 ], + [ 7.7807179, 47.3543558 ], + [ 7.7803138, 47.3542909 ], + [ 7.7796671, 47.3541104 ], + [ 7.7787821, 47.353955 ], + [ 7.778289, 47.3538587 ], + [ 7.778001, 47.3537954 ], + [ 7.7774876, 47.3536902 ], + [ 7.7769128, 47.3535978 ], + [ 7.7764992, 47.3534647 ], + [ 7.7757208, 47.3533008 ], + [ 7.7755178, 47.353252499999996 ], + [ 7.7750627, 47.3531629 ], + [ 7.7746395, 47.3531106 ], + [ 7.7738706, 47.3529962 ], + [ 7.7733337, 47.3529166 ], + [ 7.7728783, 47.352821 ], + [ 7.7724548, 47.3527027 ], + [ 7.7723444, 47.3526521 ], + [ 7.7723218, 47.3526689 ], + [ 7.7722532, 47.3527199 ], + [ 7.7721908, 47.3527158 ], + [ 7.7720836, 47.3527944 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns054", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Dürstelberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Dürstelberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Dürstelberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Dürstelberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5013632999999995, 47.3898957 ], + [ 7.5017748, 47.3898264 ], + [ 7.5020336, 47.3897487 ], + [ 7.5022401, 47.3897515 ], + [ 7.5024313, 47.3895911 ], + [ 7.502622, 47.3895868 ], + [ 7.5027175, 47.389518699999996 ], + [ 7.5026955, 47.3894943 ], + [ 7.5026917, 47.3894901 ], + [ 7.5026455, 47.3894386 ], + [ 7.5025145, 47.3893993 ], + [ 7.502127, 47.3894465 ], + [ 7.5019121, 47.3894303 ], + [ 7.5018903, 47.389539 ], + [ 7.5015815, 47.3895489 ], + [ 7.5011307, 47.3895377 ], + [ 7.50112, 47.3895854 ], + [ 7.5012975, 47.3897153 ], + [ 7.5012831, 47.389807 ], + [ 7.5011351, 47.3898921 ], + [ 7.5013632999999995, 47.3898957 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns274", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Stürmen - Eggfels - Bännli", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Stürmen - Eggfels - Bännli", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Stürmen - Eggfels - Bännli", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Stürmen - Eggfels - Bännli", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.5745928, 46.5462781 ], + [ 6.5745897, 46.5461368 ], + [ 6.5745758, 46.5459958 ], + [ 6.5745514, 46.5458556 ], + [ 6.5745163, 46.5457164 ], + [ 6.5744707, 46.5455786 ], + [ 6.5744147, 46.5454427 ], + [ 6.5743484, 46.545309 ], + [ 6.5742722, 46.5451779 ], + [ 6.5741861, 46.5450497 ], + [ 6.5740904, 46.5449248 ], + [ 6.5739853, 46.5448035 ], + [ 6.5738712, 46.5446862 ], + [ 6.5737483, 46.5445732 ], + [ 6.5736171, 46.5444648 ], + [ 6.5734778, 46.5443612 ], + [ 6.5733308, 46.5442628 ], + [ 6.5731766, 46.5441699 ], + [ 6.5730155, 46.5440826 ], + [ 6.5728481, 46.5440013 ], + [ 6.5726747, 46.5439262 ], + [ 6.5724958, 46.5438574 ], + [ 6.572312, 46.5437952 ], + [ 6.5721237, 46.5437397 ], + [ 6.5719314, 46.543691 ], + [ 6.5717357, 46.5436494 ], + [ 6.5715372, 46.5436149 ], + [ 6.5713363000000005, 46.5435876 ], + [ 6.5711336, 46.5435676 ], + [ 6.5709295999999995, 46.543555 ], + [ 6.5707249999999995, 46.5435497 ], + [ 6.5705202, 46.5435519 ], + [ 6.5703159, 46.5435614 ], + [ 6.5701127, 46.5435783 ], + [ 6.5699109, 46.5436025 ], + [ 6.5697113, 46.5436339 ], + [ 6.5695143, 46.5436725 ], + [ 6.5693206, 46.5437182 ], + [ 6.5691305, 46.5437708 ], + [ 6.5689447, 46.5438303 ], + [ 6.5687637, 46.5438963 ], + [ 6.5685879, 46.5439688 ], + [ 6.5684179, 46.5440475 ], + [ 6.5682541, 46.5441322 ], + [ 6.5680969000000005, 46.5442228 ], + [ 6.5679468, 46.5443189 ], + [ 6.5678042, 46.5444203 ], + [ 6.5676695, 46.5445267 ], + [ 6.5675431, 46.5446378 ], + [ 6.5674252, 46.5447534 ], + [ 6.5673163, 46.544873 ], + [ 6.5672166, 46.5449964 ], + [ 6.5671264, 46.5451233 ], + [ 6.5670459, 46.5452532 ], + [ 6.5669754000000005, 46.5453858 ], + [ 6.5669151, 46.5455209 ], + [ 6.5668651, 46.5456579 ], + [ 6.5668255, 46.5457965 ], + [ 6.5667965, 46.5459363 ], + [ 6.5667782, 46.5460771 ], + [ 6.5667705, 46.5462183 ], + [ 6.5667736, 46.5463595 ], + [ 6.5667874, 46.5465005 ], + [ 6.5668119, 46.5466408 ], + [ 6.566847, 46.54678 ], + [ 6.5668925, 46.5469177 ], + [ 6.5669485, 46.5470536 ], + [ 6.5670147, 46.5471873 ], + [ 6.567091, 46.5473184 ], + [ 6.5671771, 46.5474466 ], + [ 6.5672728, 46.5475715 ], + [ 6.5673778, 46.5476928 ], + [ 6.5674919, 46.5478101 ], + [ 6.5676148, 46.5479232 ], + [ 6.567746, 46.5480316 ], + [ 6.5678853, 46.5481352 ], + [ 6.5680323, 46.5482336 ], + [ 6.5681864999999995, 46.5483265 ], + [ 6.5683476, 46.5484138 ], + [ 6.5685151, 46.5484951 ], + [ 6.5686885, 46.5485702 ], + [ 6.5688673, 46.548639 ], + [ 6.5690512, 46.5487013 ], + [ 6.5692395, 46.5487568 ], + [ 6.5694318, 46.5488054 ], + [ 6.5696275, 46.5488471 ], + [ 6.569826, 46.5488816 ], + [ 6.570027, 46.5489088 ], + [ 6.5702297, 46.5489288 ], + [ 6.5704337, 46.5489415 ], + [ 6.5706383, 46.5489467 ], + [ 6.5708431, 46.5489446 ], + [ 6.5710474, 46.5489351 ], + [ 6.5712507, 46.5489182 ], + [ 6.5714524999999995, 46.548894 ], + [ 6.5716521, 46.5488625 ], + [ 6.5718491, 46.5488239 ], + [ 6.5720429, 46.5487782 ], + [ 6.5722328999999995, 46.5487256 ], + [ 6.5724187, 46.5486662 ], + [ 6.5725997, 46.5486002 ], + [ 6.5727755, 46.5485277 ], + [ 6.5729456, 46.5484489 ], + [ 6.5731094, 46.5483642 ], + [ 6.5732666, 46.5482736 ], + [ 6.5734167, 46.5481775 ], + [ 6.5735592, 46.5480761 ], + [ 6.573694, 46.5479697 ], + [ 6.5738204, 46.5478585 ], + [ 6.5739383, 46.547743 ], + [ 6.5740472, 46.5476233 ], + [ 6.5741469, 46.5474999 ], + [ 6.5742370999999995, 46.5473731 ], + [ 6.5743175, 46.5472432 ], + [ 6.574388, 46.5471105 ], + [ 6.5744483, 46.5469755 ], + [ 6.5744983, 46.5468385 ], + [ 6.5745379, 46.5466998 ], + [ 6.5745667999999995, 46.54656 ], + [ 6.5745851, 46.5464193 ], + [ 6.5745928, 46.5462781 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0007", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Banlieue Ouest", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Banlieue Ouest", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Banlieue Ouest", + "lang" : "it-CH" + }, + { + "text" : "Substation Banlieue Ouest", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8627677, 47.5004791 ], + [ 7.8624826, 47.5005516 ], + [ 7.862677, 47.500795 ], + [ 7.8627551, 47.5008841 ], + [ 7.8630515, 47.5007989 ], + [ 7.8629798, 47.5007241 ], + [ 7.8629548, 47.5006992 ], + [ 7.8629304, 47.5006741 ], + [ 7.8629066, 47.5006487 ], + [ 7.8628834, 47.5006231 ], + [ 7.8628608, 47.5005972 ], + [ 7.8628389, 47.5005711 ], + [ 7.8628176, 47.5005447 ], + [ 7.8627969, 47.5005181 ], + [ 7.8627894, 47.5005084 ], + [ 7.8627821, 47.5004987 ], + [ 7.8627748, 47.5004889 ], + [ 7.8627677, 47.5004791 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns267", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Uf Eck", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Uf Eck", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Uf Eck", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Uf Eck", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.1515319, 46.1989676 ], + [ 8.1515406, 46.1988677 ], + [ 8.1517821, 46.1986305 ], + [ 8.1520161, 46.1979164 ], + [ 8.1522346, 46.1974943 ], + [ 8.1521306, 46.1971289 ], + [ 8.1515767, 46.196571 ], + [ 8.151343, 46.1961254 ], + [ 8.152281200000001, 46.1957515 ], + [ 8.1526204, 46.1946926 ], + [ 8.1525273, 46.1946257 ], + [ 8.1523784, 46.1945294 ], + [ 8.1522225, 46.1944386 ], + [ 8.15206, 46.1943536 ], + [ 8.1518913, 46.1942746 ], + [ 8.1517169, 46.1942019 ], + [ 8.1515372, 46.1941356 ], + [ 8.1513528, 46.1940759 ], + [ 8.1511641, 46.1940231 ], + [ 8.1509717, 46.1939771 ], + [ 8.1507761, 46.1939382 ], + [ 8.1505779, 46.1939065 ], + [ 8.1503775, 46.193882 ], + [ 8.1501756, 46.1938648 ], + [ 8.1499726, 46.193855 ], + [ 8.1497692, 46.1938526 ], + [ 8.1495659, 46.1938576 ], + [ 8.1493632, 46.1938699 ], + [ 8.1491617, 46.1938896 ], + [ 8.148962, 46.1939166 ], + [ 8.1487646, 46.1939509 ], + [ 8.1485701, 46.1939922 ], + [ 8.148379, 46.1940406 ], + [ 8.1481917, 46.1940958 ], + [ 8.1480089, 46.1941578 ], + [ 8.147831, 46.1942263 ], + [ 8.1476585, 46.1943012 ], + [ 8.1474918, 46.1943823 ], + [ 8.1473316, 46.1944693 ], + [ 8.147178, 46.1945621 ], + [ 8.1470317, 46.1946602 ], + [ 8.146893, 46.1947636 ], + [ 8.1467623, 46.1948719 ], + [ 8.1466399, 46.1949847 ], + [ 8.1465262, 46.1951019 ], + [ 8.1464214, 46.195223 ], + [ 8.146326, 46.1953478 ], + [ 8.14624, 46.1954758 ], + [ 8.1461639, 46.1956069 ], + [ 8.1460977, 46.1957404 ], + [ 8.1460417, 46.1958763 ], + [ 8.145996, 46.1960139 ], + [ 8.1459607, 46.1961531 ], + [ 8.145936, 46.1962933 ], + [ 8.1459218, 46.1964343 ], + [ 8.1459183, 46.1965755 ], + [ 8.1459255, 46.1967167 ], + [ 8.1459433, 46.1968575 ], + [ 8.1459716, 46.1969974 ], + [ 8.1460105, 46.1971361 ], + [ 8.1460598, 46.1972732 ], + [ 8.1461193, 46.1974083 ], + [ 8.146189, 46.197541 ], + [ 8.1462685, 46.197671 ], + [ 8.1463578, 46.197798 ], + [ 8.1464565, 46.1979216 ], + [ 8.1465644, 46.1980414 ], + [ 8.1466811, 46.1981571 ], + [ 8.1468064, 46.1982684 ], + [ 8.14694, 46.198375 ], + [ 8.1470813, 46.1984766 ], + [ 8.1472302, 46.1985729 ], + [ 8.1473861, 46.1986637 ], + [ 8.1475486, 46.1987487 ], + [ 8.1477173, 46.1988277 ], + [ 8.1478918, 46.1989004 ], + [ 8.1480715, 46.1989667 ], + [ 8.1482559, 46.1990264 ], + [ 8.1484446, 46.1990792 ], + [ 8.148637, 46.1991252 ], + [ 8.1488326, 46.1991641 ], + [ 8.1490308, 46.1991958 ], + [ 8.1492312, 46.1992203 ], + [ 8.1494332, 46.1992375 ], + [ 8.1496362, 46.1992473 ], + [ 8.1498396, 46.1992497 ], + [ 8.1500429, 46.1992447 ], + [ 8.1502456, 46.1992324 ], + [ 8.1504471, 46.1992127 ], + [ 8.1506468, 46.1991857 ], + [ 8.1508442, 46.1991514 ], + [ 8.1510388, 46.1991101 ], + [ 8.15123, 46.1990617 ], + [ 8.1514172, 46.1990065 ], + [ 8.1515319, 46.1989676 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0045", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Gondo", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Gondo", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Gondo", + "lang" : "it-CH" + }, + { + "text" : "Substation Gondo", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4937237, 47.436506 ], + [ 7.493742, 47.4365673 ], + [ 7.4943147, 47.436479 ], + [ 7.4947175, 47.4364336 ], + [ 7.4951127, 47.4364104 ], + [ 7.4954092, 47.4363437 ], + [ 7.4956813, 47.4362352 ], + [ 7.4959123, 47.4361347 ], + [ 7.4961888, 47.4361055 ], + [ 7.4964218, 47.4359842 ], + [ 7.4964044, 47.4359584 ], + [ 7.4963248, 47.4359936 ], + [ 7.4962011, 47.4360723 ], + [ 7.4956579, 47.4361356 ], + [ 7.4955787, 47.4362489 ], + [ 7.4955111, 47.4362588 ], + [ 7.4953385, 47.4362937 ], + [ 7.4950047, 47.436340799999996 ], + [ 7.4947891, 47.4363644 ], + [ 7.4944549, 47.4364132 ], + [ 7.4937237, 47.436506 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns301", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Dittinger Weide und Dittinger Wald", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Dittinger Weide und Dittinger Wald", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Dittinger Weide und Dittinger Wald", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Dittinger Weide und Dittinger Wald", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8257403, 47.4185349 ], + [ 7.8260206, 47.4191595 ], + [ 7.8261186, 47.4192994 ], + [ 7.8262019, 47.419347 ], + [ 7.8265005, 47.4194417 ], + [ 7.8265263, 47.4195356 ], + [ 7.8263431, 47.4197596 ], + [ 7.8262906, 47.4197636 ], + [ 7.8261764, 47.4196286 ], + [ 7.825962, 47.4195697 ], + [ 7.8255617, 47.4195687 ], + [ 7.8258276, 47.4197669 ], + [ 7.8256361, 47.4199229 ], + [ 7.82551, 47.4200382 ], + [ 7.8253413, 47.4201134 ], + [ 7.8251724, 47.4201772 ], + [ 7.8248934, 47.4202126 ], + [ 7.8246903, 47.4202248 ], + [ 7.8246073, 47.4208553 ], + [ 7.824466, 47.4209667 ], + [ 7.8241895, 47.4212014 ], + [ 7.8240845, 47.4215464 ], + [ 7.8240852, 47.4218597 ], + [ 7.8242221, 47.422114 ], + [ 7.8244869, 47.4222663 ], + [ 7.8247718, 47.422347 ], + [ 7.8250553, 47.4223858 ], + [ 7.8253413, 47.4224104 ], + [ 7.8262425, 47.4229614 ], + [ 7.8271701, 47.423084 ], + [ 7.8277295, 47.4232497 ], + [ 7.8274359, 47.4229794 ], + [ 7.8273475, 47.4228257 ], + [ 7.8272312, 47.4225283 ], + [ 7.8272022, 47.4224018 ], + [ 7.8272004, 47.4222705 ], + [ 7.8272374, 47.4221407 ], + [ 7.8273414, 47.4219615 ], + [ 7.8275315, 47.4216873 ], + [ 7.8275949, 47.4214936 ], + [ 7.8275782, 47.421293 ], + [ 7.8275207, 47.4209946 ], + [ 7.8275285, 47.4208623 ], + [ 7.8275576000000004, 47.4207285 ], + [ 7.8275825999999995, 47.4204889 ], + [ 7.8276187, 47.4200317 ], + [ 7.8276412, 47.4194853 ], + [ 7.8276528, 47.4191455 ], + [ 7.8275616, 47.4191066 ], + [ 7.8273711, 47.419067 ], + [ 7.827303, 47.4189203 ], + [ 7.8272705, 47.4186773 ], + [ 7.8273082, 47.4184 ], + [ 7.8257403, 47.4185349 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns115", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Chilpen-Schmetterlingskorridor", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Chilpen-Schmetterlingskorridor", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Chilpen-Schmetterlingskorridor", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Chilpen-Schmetterlingskorridor", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7044472, 47.4229285 ], + [ 7.70464, 47.4227931 ], + [ 7.7047162, 47.4226073 ], + [ 7.7048067, 47.4224596 ], + [ 7.7048553, 47.4223643 ], + [ 7.7047979, 47.4222624 ], + [ 7.7046019, 47.4222987 ], + [ 7.7044559, 47.4220472 ], + [ 7.7041833, 47.4221895 ], + [ 7.7039033, 47.4223192 ], + [ 7.7036845, 47.4224352 ], + [ 7.7034681, 47.4225432 ], + [ 7.7032606999999995, 47.4226463 ], + [ 7.7030704, 47.4227209 ], + [ 7.7033109, 47.4228347 ], + [ 7.70349, 47.4229171 ], + [ 7.7034711, 47.4232109 ], + [ 7.7038701, 47.4230956 ], + [ 7.7044472, 47.4229285 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns354", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Dielenberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Dielenberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Dielenberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Dielenberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.6415648, 47.1704252 ], + [ 8.6415562, 47.170284 ], + [ 8.6415368, 47.1701434 ], + [ 8.6415066, 47.1700036 ], + [ 8.6414657, 47.1698651 ], + [ 8.6414143, 47.1697283 ], + [ 8.6413524, 47.1695934 ], + [ 8.6412803, 47.169461 ], + [ 8.6411981, 47.1693313 ], + [ 8.6411061, 47.1692048 ], + [ 8.6410044, 47.1690817 ], + [ 8.6408935, 47.1689624 ], + [ 8.6407736, 47.1688472 ], + [ 8.6406449, 47.1687364 ], + [ 8.640508, 47.1686304 ], + [ 8.6403631, 47.1685294 ], + [ 8.6402107, 47.1684338 ], + [ 8.6400511, 47.1683437 ], + [ 8.6398849, 47.1682594 ], + [ 8.6397124, 47.1681812 ], + [ 8.6395341, 47.1681092 ], + [ 8.6393506, 47.1680437 ], + [ 8.6391623, 47.1679849 ], + [ 8.6389697, 47.1679328 ], + [ 8.6387734, 47.1678877 ], + [ 8.6385739, 47.1678496 ], + [ 8.6383717, 47.1678188 ], + [ 8.6381675, 47.1677951 ], + [ 8.6379617, 47.1677789 ], + [ 8.637755, 47.1677699 ], + [ 8.6375479, 47.1677684 ], + [ 8.6373409, 47.1677742 ], + [ 8.6371346, 47.1677875 ], + [ 8.6369297, 47.167808 ], + [ 8.6367266, 47.1678359 ], + [ 8.6365259, 47.167871 ], + [ 8.6363282, 47.1679132 ], + [ 8.636134, 47.1679624 ], + [ 8.635943900000001, 47.1680184 ], + [ 8.635758299999999, 47.1680812 ], + [ 8.6355778, 47.1681505 ], + [ 8.6354028, 47.1682261 ], + [ 8.6352339, 47.1683079 ], + [ 8.6350715, 47.1683956 ], + [ 8.6349161, 47.168489 ], + [ 8.634768, 47.1685878 ], + [ 8.6346277, 47.1686917 ], + [ 8.6344956, 47.1688005 ], + [ 8.634371999999999, 47.1689139 ], + [ 8.6342573, 47.1690315 ], + [ 8.6341517, 47.1691531 ], + [ 8.6340557, 47.1692783 ], + [ 8.6339693, 47.1694067 ], + [ 8.633893, 47.169538 ], + [ 8.6338268, 47.1696719 ], + [ 8.633771, 47.1698079 ], + [ 8.6337257, 47.1699458 ], + [ 8.6336911, 47.1700851 ], + [ 8.6336672, 47.1702254 ], + [ 8.633654, 47.1703664 ], + [ 8.633651799999999, 47.1705077 ], + [ 8.6336603, 47.1706488 ], + [ 8.6336797, 47.1707895 ], + [ 8.6337099, 47.1709292 ], + [ 8.6337508, 47.1710677 ], + [ 8.6338022, 47.1712046 ], + [ 8.633863999999999, 47.1713394 ], + [ 8.6339362, 47.1714718 ], + [ 8.6340183, 47.1716015 ], + [ 8.6341104, 47.1717281 ], + [ 8.634212, 47.1718512 ], + [ 8.6343229, 47.1719705 ], + [ 8.6344428, 47.1720857 ], + [ 8.6345714, 47.1721965 ], + [ 8.6347084, 47.1723025 ], + [ 8.6348532, 47.1724035 ], + [ 8.6350057, 47.1724991 ], + [ 8.6351652, 47.1725892 ], + [ 8.6353315, 47.1726735 ], + [ 8.635504, 47.1727517 ], + [ 8.6356823, 47.1728237 ], + [ 8.6358658, 47.1728892 ], + [ 8.6360542, 47.1729481 ], + [ 8.6362468, 47.1730002 ], + [ 8.6364431, 47.1730453 ], + [ 8.6366426, 47.1730833 ], + [ 8.6368448, 47.1731142 ], + [ 8.637049, 47.1731378 ], + [ 8.637254800000001, 47.1731541 ], + [ 8.6374616, 47.173163 ], + [ 8.6376687, 47.1731646 ], + [ 8.6378757, 47.1731587 ], + [ 8.638082, 47.1731455 ], + [ 8.6382869, 47.1731249 ], + [ 8.6384901, 47.173097 ], + [ 8.6386907, 47.173062 ], + [ 8.6388885, 47.1730198 ], + [ 8.6390827, 47.1729706 ], + [ 8.6392728, 47.1729145 ], + [ 8.6394584, 47.1728518 ], + [ 8.639639, 47.1727825 ], + [ 8.6398139, 47.1727068 ], + [ 8.6399828, 47.172625 ], + [ 8.6401453, 47.1725373 ], + [ 8.6403007, 47.1724439 ], + [ 8.6404488, 47.1723451 ], + [ 8.6405891, 47.1722412 ], + [ 8.6407212, 47.1721324 ], + [ 8.6408448, 47.172019 ], + [ 8.6409595, 47.1719013 ], + [ 8.641065, 47.1717798 ], + [ 8.6411611, 47.1716546 ], + [ 8.6412474, 47.1715262 ], + [ 8.6413237, 47.1713948 ], + [ 8.6413899, 47.171261 ], + [ 8.6414457, 47.1711249 ], + [ 8.6414909, 47.170987 ], + [ 8.6415256, 47.1708478 ], + [ 8.6415495, 47.1707074 ], + [ 8.6415625, 47.1705664 ], + [ 8.6415648, 47.1704252 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BOS0001", + "country" : "CHE", + "name" : [ + { + "text" : "JVA Bostadel", + "lang" : "de-CH" + }, + { + "text" : "JVA Bostadel", + "lang" : "fr-CH" + }, + { + "text" : "JVA Bostadel", + "lang" : "it-CH" + }, + { + "text" : "JVA Bostadel", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "JVA Bostadel", + "lang" : "de-CH" + }, + { + "text" : "JVA Bostadel", + "lang" : "fr-CH" + }, + { + "text" : "JVA Bostadel", + "lang" : "it-CH" + }, + { + "text" : "JVA Bostadel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "DirektionJVA Bostadel", + "lang" : "de-CH" + }, + { + "text" : "DirektionJVA Bostadel", + "lang" : "fr-CH" + }, + { + "text" : "DirektionJVA Bostadel", + "lang" : "it-CH" + }, + { + "text" : "DirektionJVA Bostadel", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Administration", + "lang" : "de-CH" + }, + { + "text" : "Administration", + "lang" : "fr-CH" + }, + { + "text" : "Administration", + "lang" : "it-CH" + }, + { + "text" : "Administration", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.zg.ch/behoerden/weitere-organisationen/justizvollzugsanstalt-bostadel/strafanstalt-bostadel", + "email" : "administration@bostadel.ch", + "phone" : "0041417571919", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6957229, 47.5006967 ], + [ 7.6957674, 47.500828 ], + [ 7.6956912, 47.5008492 ], + [ 7.6956947, 47.5008612 ], + [ 7.6957062, 47.5009008 ], + [ 7.6957595, 47.5009262 ], + [ 7.695768, 47.5009358 ], + [ 7.6958443, 47.5010226 ], + [ 7.6959384, 47.5010563 ], + [ 7.6961811, 47.5011711 ], + [ 7.6962542, 47.5011489 ], + [ 7.6962756, 47.5011424 ], + [ 7.696571, 47.5010282 ], + [ 7.696575, 47.5010265 ], + [ 7.6965654, 47.5009845 ], + [ 7.6963489, 47.5008195 ], + [ 7.6962201, 47.5007527 ], + [ 7.6960531, 47.5006564 ], + [ 7.6958509, 47.5005274 ], + [ 7.6957237, 47.5005544 ], + [ 7.6957343, 47.5006298 ], + [ 7.6957229, 47.5006967 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr105", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Asp", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Asp", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Asp", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Asp", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.3573666, 47.0112793 ], + [ 8.379624, 47.0185848 ], + [ 8.3827141, 47.0195324 ], + [ 8.3858716, 47.0203699 ], + [ 8.389088, 47.021095 ], + [ 8.3923548, 47.0217059 ], + [ 8.3956633, 47.0222008 ], + [ 8.3990047, 47.0225785 ], + [ 8.4023702, 47.022838 ], + [ 8.4057508, 47.0229786 ], + [ 8.4091374, 47.0229998 ], + [ 8.4125212, 47.0229017 ], + [ 8.4158931, 47.0226846 ], + [ 8.4192441, 47.0223489 ], + [ 8.4225654, 47.0218956 ], + [ 8.425848, 47.0213258 ], + [ 8.4290834, 47.0206412 ], + [ 8.4322628, 47.0198435 ], + [ 8.4353778, 47.0189349 ], + [ 8.4384203, 47.0179177 ], + [ 8.441382, 47.0167946 ], + [ 8.4442551, 47.0155687 ], + [ 8.447032, 47.0142432 ], + [ 8.4497052, 47.0128216 ], + [ 8.4522679, 47.0113077 ], + [ 8.454713, 47.0097056 ], + [ 8.4570342, 47.0080194 ], + [ 8.4592252, 47.0062537 ], + [ 8.4612803, 47.0044131 ], + [ 8.463194, 47.0025026 ], + [ 8.4649613, 47.0005272 ], + [ 8.4665775, 46.9984921 ], + [ 8.4680383, 46.9964028 ], + [ 8.4693399, 46.9942648 ], + [ 8.4704787, 46.9920838 ], + [ 8.4714519, 46.9898655 ], + [ 8.4722568, 46.9876159 ], + [ 8.4728914, 46.9853409 ], + [ 8.4733539, 46.9830466 ], + [ 8.4736432, 46.980739 ], + [ 8.4737585, 46.9784243 ], + [ 8.4736996, 46.9761086 ], + [ 8.4734666, 46.973798 ], + [ 8.4730602, 46.9714987 ], + [ 8.4724814, 46.9692168 ], + [ 8.4717318, 46.9669583 ], + [ 8.4708135, 46.9647292 ], + [ 8.4697288, 46.9625354 ], + [ 8.4684807, 46.9603827 ], + [ 8.4670725, 46.9582769 ], + [ 8.4655079, 46.9562234 ], + [ 8.4637912, 46.9542278 ], + [ 8.4619269, 46.9522953 ], + [ 8.4599198, 46.9504311 ], + [ 8.4577754, 46.9486401 ], + [ 8.4554994, 46.9469269 ], + [ 8.4530978, 46.9452963 ], + [ 8.4505768, 46.9437524 ], + [ 8.4479434, 46.9422994 ], + [ 8.4452043, 46.940941 ], + [ 8.442367, 46.939681 ], + [ 8.4394388, 46.9385226 ], + [ 8.4364275, 46.937469 ], + [ 8.414196, 46.9301744 ], + [ 8.4110585, 46.9292128 ], + [ 8.4078518, 46.9283649 ], + [ 8.4045849, 46.927633 ], + [ 8.4012667, 46.9270191 ], + [ 8.3979061, 46.926525 ], + [ 8.3945125, 46.9261519 ], + [ 8.391095, 46.9259009 ], + [ 8.3876631, 46.9257727 ], + [ 8.3842261, 46.9257676 ], + [ 8.3807934, 46.9258857 ], + [ 8.3773744, 46.9261266 ], + [ 8.3739784, 46.9264896 ], + [ 8.3706148, 46.9269738 ], + [ 8.3672927, 46.9275778 ], + [ 8.3640212, 46.9283 ], + [ 8.3608093, 46.9291384 ], + [ 8.3576657, 46.9300908 ], + [ 8.3545991, 46.9311545 ], + [ 8.3516178, 46.9323265 ], + [ 8.34873, 46.9336038 ], + [ 8.3459436, 46.9349828 ], + [ 8.3432662, 46.9364597 ], + [ 8.3407053, 46.938030499999996 ], + [ 8.3382676, 46.9396909 ], + [ 8.3359601, 46.9414364 ], + [ 8.3337889, 46.9432622 ], + [ 8.3317601, 46.9451632 ], + [ 8.3298793, 46.9471343 ], + [ 8.3281515, 46.9491701 ], + [ 8.3265815, 46.951265 ], + [ 8.3251736, 46.9534133 ], + [ 8.3239318, 46.955609 ], + [ 8.3228594, 46.9578463 ], + [ 8.3219595, 46.9601189 ], + [ 8.3212344, 46.9624206 ], + [ 8.3206862, 46.9647452 ], + [ 8.3203164, 46.9670862 ], + [ 8.3201261, 46.9694372 ], + [ 8.3201158, 46.9717919 ], + [ 8.3202855, 46.9741437 ], + [ 8.3206349, 46.9764861 ], + [ 8.3211629, 46.9788129 ], + [ 8.3218682, 46.9811175 ], + [ 8.3227488, 46.9833938 ], + [ 8.3238024, 46.9856353 ], + [ 8.325026, 46.987836 ], + [ 8.3264164, 46.9899899 ], + [ 8.3279698, 46.992091 ], + [ 8.3296818, 46.9941336 ], + [ 8.3315479, 46.996112 ], + [ 8.3335629, 46.9980209 ], + [ 8.3357213, 46.9998549 ], + [ 8.3380172, 47.0016092 ], + [ 8.3404443, 47.0032787 ], + [ 8.3429959, 47.004859 ], + [ 8.3456651, 47.0063458 ], + [ 8.3484446, 47.0077349 ], + [ 8.3513266, 47.0090225 ], + [ 8.3543033, 47.010205 ], + [ 8.3573666, 47.0112793 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZC001", + "country" : "CHE", + "name" : [ + { + "text" : "LSZC Buochs", + "lang" : "de-CH" + }, + { + "text" : "LSZC Buochs", + "lang" : "fr-CH" + }, + { + "text" : "LSZC Buochs", + "lang" : "it-CH" + }, + { + "text" : "LSZC Buochs", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Airport Buochs AG / Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Airport Buochs AG / Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Airport Buochs AG / Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Airport Buochs AG / Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Skyguide Special Office", + "lang" : "de-CH" + }, + { + "text" : "Skyguide Special Office", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide Special Office", + "lang" : "it-CH" + }, + { + "text" : "Skyguide Special Office", + "lang" : "en-GB" + } + ], + "siteURL" : "https://skyguide.ch/services/special-flights", + "email" : "info@airportbuochs.ch", + "phone" : "0041416220611", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.2455048, 47.1364662 ], + [ 7.2454999, 47.1363249 ], + [ 7.2454842, 47.1361841 ], + [ 7.2454577, 47.136044 ], + [ 7.2454205, 47.135905 ], + [ 7.2453726, 47.1357675 ], + [ 7.2453143, 47.135632 ], + [ 7.2452457, 47.1354987 ], + [ 7.2451669, 47.135368 ], + [ 7.2450783, 47.1352404 ], + [ 7.2449799, 47.135116 ], + [ 7.2448722, 47.1349954 ], + [ 7.2447553, 47.1348788 ], + [ 7.2446297, 47.1347665 ], + [ 7.2444957, 47.1346588 ], + [ 7.2443535, 47.1345561 ], + [ 7.2442037, 47.1344586 ], + [ 7.2440466, 47.1343666 ], + [ 7.2438827, 47.1342803 ], + [ 7.2437124, 47.1342 ], + [ 7.2435361, 47.1341259 ], + [ 7.2433544, 47.1340581 ], + [ 7.2431678, 47.133997 ], + [ 7.2429767, 47.1339426 ], + [ 7.2427817, 47.1338951 ], + [ 7.2425834, 47.1338546 ], + [ 7.2423822, 47.1338213 ], + [ 7.2421788, 47.1337952 ], + [ 7.2419736, 47.1337764 ], + [ 7.2417672, 47.133765 ], + [ 7.2415603, 47.1337609 ], + [ 7.2413533, 47.1337643 ], + [ 7.2411469, 47.133775 ], + [ 7.2409416, 47.1337931 ], + [ 7.2407379, 47.1338185 ], + [ 7.2405365, 47.1338511 ], + [ 7.2403378, 47.1338909 ], + [ 7.2401425, 47.1339377 ], + [ 7.2399511, 47.1339914 ], + [ 7.239764, 47.1340519 ], + [ 7.2395818, 47.134119 ], + [ 7.239405, 47.1341925 ], + [ 7.2392341, 47.1342722 ], + [ 7.2390695, 47.1343579 ], + [ 7.2389117, 47.1344494 ], + [ 7.2387612, 47.1345464 ], + [ 7.2386183, 47.1346486 ], + [ 7.2384834, 47.1347558 ], + [ 7.238357, 47.1348677 ], + [ 7.2382393, 47.1349839 ], + [ 7.2381306, 47.1351041 ], + [ 7.2380314, 47.1352281 ], + [ 7.2379418, 47.1353555 ], + [ 7.237862, 47.1354858 ], + [ 7.2377924, 47.1356189 ], + [ 7.2377331, 47.1357542 ], + [ 7.2376843, 47.1358915 ], + [ 7.237646, 47.1360304 ], + [ 7.2376185, 47.1361704 ], + [ 7.2376017, 47.1363112 ], + [ 7.2375957, 47.1364524 ], + [ 7.2376006, 47.1365937 ], + [ 7.2376163, 47.1367345 ], + [ 7.2376428, 47.1368746 ], + [ 7.23768, 47.1370136 ], + [ 7.2377278, 47.1371511 ], + [ 7.2377861, 47.1372866 ], + [ 7.2378547, 47.1374199 ], + [ 7.2379335, 47.1375506 ], + [ 7.2380221, 47.1376783 ], + [ 7.2381204, 47.1378026 ], + [ 7.2382282, 47.1379232 ], + [ 7.238345, 47.1380399 ], + [ 7.2384706, 47.1381522 ], + [ 7.2386047, 47.1382598 ], + [ 7.2387468, 47.1383626 ], + [ 7.2388966, 47.1384601 ], + [ 7.2390537, 47.1385521 ], + [ 7.2392177, 47.1386384 ], + [ 7.239388, 47.1387187 ], + [ 7.2395642, 47.1387928 ], + [ 7.239746, 47.1388605 ], + [ 7.2399326, 47.1389217 ], + [ 7.2401237, 47.1389761 ], + [ 7.2403186999999996, 47.1390236 ], + [ 7.240517, 47.1390641 ], + [ 7.2407183, 47.1390974 ], + [ 7.2409217, 47.1391235 ], + [ 7.2411269, 47.1391423 ], + [ 7.2413333, 47.1391537 ], + [ 7.2415403, 47.1391578 ], + [ 7.2417473, 47.1391545 ], + [ 7.2419537, 47.1391437 ], + [ 7.2421591, 47.1391256 ], + [ 7.2423627, 47.1391003 ], + [ 7.2425642, 47.1390676 ], + [ 7.2427628, 47.1390278 ], + [ 7.2429582, 47.138981 ], + [ 7.2431497, 47.1389273 ], + [ 7.2433368, 47.1388668 ], + [ 7.243519, 47.1387997 ], + [ 7.2436958, 47.1387262 ], + [ 7.2438667, 47.1386465 ], + [ 7.2440313, 47.1385607 ], + [ 7.2441891, 47.1384693 ], + [ 7.2443396, 47.1383723 ], + [ 7.2444825, 47.13827 ], + [ 7.2446174, 47.1381628 ], + [ 7.2447438, 47.138051 ], + [ 7.2448615, 47.1379347 ], + [ 7.2449701, 47.1378145 ], + [ 7.2450694, 47.1376905 ], + [ 7.245159, 47.1375631 ], + [ 7.2452387, 47.1374328 ], + [ 7.2453083, 47.1372997 ], + [ 7.2453676, 47.1371643 ], + [ 7.2454164, 47.1370271 ], + [ 7.2454546, 47.1368882 ], + [ 7.2454822, 47.1367482 ], + [ 7.2454989, 47.1366074 ], + [ 7.2455048, 47.1364662 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BIE0001", + "country" : "CHE", + "name" : [ + { + "text" : "Regionalgefängnis Biel", + "lang" : "de-CH" + }, + { + "text" : "Regionalgefängnis Biel", + "lang" : "fr-CH" + }, + { + "text" : "Regionalgefängnis Biel", + "lang" : "it-CH" + }, + { + "text" : "Regionalgefängnis Biel", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Regionalgefängnis Biel", + "lang" : "de-CH" + }, + { + "text" : "Prison regional bienne", + "lang" : "fr-CH" + }, + { + "text" : "Prigione regionale di biel", + "lang" : "it-CH" + }, + { + "text" : "Prison biel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Geschäftsleitung Regionalgefängnis Biel", + "lang" : "de-CH" + }, + { + "text" : "Direction prison regional", + "lang" : "fr-CH" + }, + { + "text" : "Gestione del carcere regionale di Biel", + "lang" : "it-CH" + }, + { + "text" : "Management Regional Prison Biel", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Yan Seckler", + "lang" : "de-CH" + }, + { + "text" : "Yan Seckler", + "lang" : "fr-CH" + }, + { + "text" : "Yan Seckler", + "lang" : "it-CH" + }, + { + "text" : "Yan Seckler", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ajv.sid.be.ch/de/start/themen/haft/regionalgefaengnis-biel.html", + "email" : "regionalgefaengnis-biel@be.ch", + "phone" : "0041316357111", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8830418, 47.4577886 ], + [ 7.883024, 47.4575728 ], + [ 7.8829956, 47.4573502 ], + [ 7.8829595, 47.4571521 ], + [ 7.882967, 47.4569968 ], + [ 7.882988, 47.4569328 ], + [ 7.8830362, 47.4567862 ], + [ 7.8830438, 47.4566459 ], + [ 7.8830484, 47.4565613 ], + [ 7.8830293, 47.4564102 ], + [ 7.8830213, 47.4563476 ], + [ 7.8828996, 47.4561863 ], + [ 7.8827937, 47.4560459 ], + [ 7.8827175, 47.4558682 ], + [ 7.8824487, 47.4558734 ], + [ 7.8824087, 47.4555328 ], + [ 7.8824673, 47.4553752 ], + [ 7.8823051, 47.4553219 ], + [ 7.8822563, 47.4553335 ], + [ 7.8820341, 47.4553466 ], + [ 7.8820242, 47.455243 ], + [ 7.8819587, 47.4554473 ], + [ 7.8817872, 47.4554636 ], + [ 7.8817082, 47.455664 ], + [ 7.8815097, 47.4556819 ], + [ 7.8812761, 47.455651 ], + [ 7.8812947, 47.4558213 ], + [ 7.8813196, 47.4559129 ], + [ 7.8812784, 47.4559275 ], + [ 7.881224, 47.4559467 ], + [ 7.8811888, 47.4559592 ], + [ 7.8812109, 47.4559811 ], + [ 7.8813759, 47.456144 ], + [ 7.8815656, 47.4562684 ], + [ 7.8815796, 47.4562776 ], + [ 7.8817038, 47.4563784 ], + [ 7.8817293, 47.4564337 ], + [ 7.8817705, 47.4565229 ], + [ 7.8818102, 47.45669 ], + [ 7.8818163, 47.4567159 ], + [ 7.8817813999999995, 47.4568372 ], + [ 7.8817297, 47.4570167 ], + [ 7.88172, 47.4570506 ], + [ 7.8816835, 47.4570468 ], + [ 7.8816779, 47.457045 ], + [ 7.8814498, 47.4569757 ], + [ 7.881369, 47.4569508 ], + [ 7.8812987, 47.4568419 ], + [ 7.8811417, 47.4568392 ], + [ 7.8810493, 47.456825 ], + [ 7.8809384, 47.4568084 ], + [ 7.880865, 47.4568307 ], + [ 7.8808073, 47.4567971 ], + [ 7.8808085, 47.4567548 ], + [ 7.8807869, 47.4567175 ], + [ 7.8807483, 47.4566605 ], + [ 7.8807092999999995, 47.4566425 ], + [ 7.8806388, 47.4566339 ], + [ 7.8805716, 47.4566458 ], + [ 7.8805243, 47.4566908 ], + [ 7.8804721, 47.4567545 ], + [ 7.8804182, 47.456838 ], + [ 7.8804099, 47.456919 ], + [ 7.8804144, 47.4569851 ], + [ 7.8804205, 47.457057 ], + [ 7.8804237, 47.4571054 ], + [ 7.88042, 47.457166 ], + [ 7.8804122, 47.4572193 ], + [ 7.8804032, 47.4572571 ], + [ 7.8803873, 47.4572968 ], + [ 7.8803672, 47.4573319 ], + [ 7.8803484, 47.4573606 ], + [ 7.880339, 47.4573736 ], + [ 7.8803296, 47.4573865 ], + [ 7.8803203, 47.4574025 ], + [ 7.8803182, 47.4574071 ], + [ 7.8803171, 47.4574118 ], + [ 7.8803171, 47.4574165 ], + [ 7.880318, 47.4574213 ], + [ 7.88032, 47.4574258 ], + [ 7.8803228999999995, 47.4574302 ], + [ 7.8803266999999995, 47.4574342 ], + [ 7.8803314, 47.4574378 ], + [ 7.8803368, 47.4574409 ], + [ 7.8803427, 47.4574434 ], + [ 7.8803272, 47.4574676 ], + [ 7.8803216, 47.4574656 ], + [ 7.8802553, 47.4575136 ], + [ 7.8810201, 47.4579052 ], + [ 7.8812384, 47.458017 ], + [ 7.8815827, 47.4581934 ], + [ 7.882227, 47.4584197 ], + [ 7.8822320999999995, 47.4584215 ], + [ 7.8822706, 47.458435 ], + [ 7.8828174, 47.4586271 ], + [ 7.8830029, 47.4580325 ], + [ 7.8830115, 47.4579789 ], + [ 7.8830418, 47.4577886 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr053", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Langrüti", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Langrüti", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Langrüti", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Langrüti", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 5.9912566, 46.1785445 ], + [ 5.9912569, 46.1785451 ], + [ 5.9915146, 46.1787226 ], + [ 5.9926001, 46.1791026 ], + [ 5.9933979, 46.1791878 ], + [ 5.993447, 46.1793776 ], + [ 5.9942658, 46.1802637 ], + [ 5.9955105, 46.1808647 ], + [ 5.9969915, 46.1810891 ], + [ 5.9984835, 46.1809027 ], + [ 5.9997592, 46.1803339 ], + [ 5.9997996, 46.1802935 ], + [ 6.0004746, 46.1799925 ], + [ 6.0007648, 46.1797025 ], + [ 6.0016281, 46.1801193 ], + [ 6.0031092, 46.1803436 ], + [ 6.0046011, 46.1801571 ], + [ 6.0058767, 46.1795882 ], + [ 6.0067417, 46.1787235 ], + [ 6.0070646, 46.1776947 ], + [ 6.0067961, 46.1766584 ], + [ 6.0059771, 46.1757723 ], + [ 6.0047325, 46.1751714 ], + [ 6.0032515, 46.1749471 ], + [ 6.0017597, 46.1751336 ], + [ 6.0004842, 46.1757024 ], + [ 6.000194, 46.1759925 ], + [ 5.9993308, 46.1755757 ], + [ 5.9988585, 46.1755041 ], + [ 5.9986103, 46.1747962 ], + [ 5.9982340999999995, 46.1742335 ], + [ 5.9975552, 46.1735323 ], + [ 5.9965974, 46.1730113 ], + [ 5.9965672, 46.1730036 ], + [ 5.9967793, 46.1726032 ], + [ 5.9968255, 46.1717581 ], + [ 5.996493, 46.1709445 ], + [ 5.9959731, 46.1704067 ], + [ 5.9964303999999995, 46.1703495 ], + [ 5.9971893, 46.171171 ], + [ 5.9984339, 46.171772 ], + [ 5.9985242, 46.1717857 ], + [ 5.9992145, 46.1725328 ], + [ 6.0004591, 46.1731338 ], + [ 6.0019399, 46.1733581 ], + [ 6.0034317, 46.1731716 ], + [ 6.0047071, 46.1726028 ], + [ 6.0055721, 46.1717381 ], + [ 6.0058949, 46.1707093 ], + [ 6.0058376, 46.170488 ], + [ 6.0059903, 46.1700013 ], + [ 6.0058969, 46.1696407 ], + [ 6.0061173, 46.1695424 ], + [ 6.0063884, 46.1695085 ], + [ 6.0076637, 46.1689396 ], + [ 6.0085285, 46.1680749 ], + [ 6.0088513, 46.1670461 ], + [ 6.0085828, 46.1660098 ], + [ 6.007764, 46.1651238 ], + [ 6.0072378, 46.1648697 ], + [ 6.0080003, 46.1644557 ], + [ 6.008018, 46.1644432 ], + [ 6.0086343, 46.163873 ], + [ 6.0090141, 46.1632104 ], + [ 6.0090172, 46.1632018 ], + [ 6.0090201, 46.1631938 ], + [ 6.009137, 46.1624948 ], + [ 6.00899, 46.1617986 ], + [ 6.0089832, 46.1617821 ], + [ 6.0085811, 46.1611347 ], + [ 6.0079513, 46.1605818 ], + [ 6.0079336, 46.1605699 ], + [ 6.0071198, 46.1601495 ], + [ 6.0061771, 46.1598898 ], + [ 6.0061532, 46.1598856 ], + [ 6.0051476, 46.1598043 ], + [ 6.0041459, 46.1599064 ], + [ 6.0041222, 46.159911 ], + [ 6.0031902, 46.1601905 ], + [ 6.0023942, 46.1606283 ], + [ 6.002377, 46.1606406 ], + [ 6.0017725, 46.1612054 ], + [ 6.0013988, 46.1618596 ], + [ 6.0013928, 46.1618762 ], + [ 6.0012752, 46.1625724 ], + [ 6.0014196, 46.1632661 ], + [ 6.0014261, 46.1632824 ], + [ 6.0018252, 46.1639297 ], + [ 6.0024516, 46.1644832 ], + [ 6.0024694, 46.1644953 ], + [ 6.0025802, 46.1645528 ], + [ 6.0015214, 46.1646852 ], + [ 6.0002461, 46.165254 ], + [ 5.9993811, 46.1661186 ], + [ 5.9991962999999995, 46.1667076 ], + [ 5.9991315, 46.1667157 ], + [ 5.9983725, 46.1658942 ], + [ 5.9971282, 46.1652932 ], + [ 5.9956475, 46.1650688 ], + [ 5.9944835, 46.1652142 ], + [ 5.9944709, 46.1652006 ], + [ 5.9932266, 46.1645996 ], + [ 5.991746, 46.1643751 ], + [ 5.9902545, 46.1645614 ], + [ 5.9889791, 46.1651301 ], + [ 5.9881139, 46.1659947 ], + [ 5.9877908, 46.1670234 ], + [ 5.9878722, 46.1673382 ], + [ 5.9878341, 46.1674596 ], + [ 5.9881022, 46.168496 ], + [ 5.9889206999999995, 46.1693822 ], + [ 5.9901011, 46.1699524 ], + [ 5.9900009, 46.1700167 ], + [ 5.9899081, 46.1700984 ], + [ 5.9898147999999996, 46.1701585 ], + [ 5.9898018, 46.170164 ], + [ 5.9897624, 46.1701894 ], + [ 5.9890109, 46.1708538 ], + [ 5.9886562, 46.1715254 ], + [ 5.9886578, 46.171528 ], + [ 5.98866, 46.1715316 ], + [ 5.9886623, 46.1715353 ], + [ 5.9886645, 46.171539 ], + [ 5.9886667, 46.1715427 ], + [ 5.988669, 46.1715464 ], + [ 5.9886712, 46.1715501 ], + [ 5.9886734, 46.1715538 ], + [ 5.9886756, 46.1715576 ], + [ 5.9886777, 46.1715613 ], + [ 5.9886799, 46.171565 ], + [ 5.9886821, 46.1715687 ], + [ 5.9886842, 46.1715724 ], + [ 5.9886864, 46.1715761 ], + [ 5.9886885, 46.1715799 ], + [ 5.9886906, 46.1715836 ], + [ 5.9886927, 46.1715873 ], + [ 5.9886948, 46.1715911 ], + [ 5.9886969, 46.1715948 ], + [ 5.988699, 46.1715985 ], + [ 5.9887011, 46.1716023 ], + [ 5.9887032, 46.171606 ], + [ 5.9887052, 46.1716098 ], + [ 5.9887073, 46.1716135 ], + [ 5.9887093, 46.1716173 ], + [ 5.9887113, 46.171621 ], + [ 5.9887134, 46.1716248 ], + [ 5.9887154, 46.1716285 ], + [ 5.9887174, 46.1716323 ], + [ 5.9887194, 46.171636 ], + [ 5.9887213, 46.1716398 ], + [ 5.9887233, 46.1716436 ], + [ 5.9887253, 46.1716474 ], + [ 5.9887272, 46.1716511 ], + [ 5.9887292, 46.1716549 ], + [ 5.9887311, 46.1716587 ], + [ 5.988733, 46.1716625 ], + [ 5.9887349, 46.1716662 ], + [ 5.9887368, 46.17167 ], + [ 5.9887387, 46.1716738 ], + [ 5.9887406, 46.1716776 ], + [ 5.9887425, 46.1716814 ], + [ 5.9887443, 46.1716852 ], + [ 5.9887462, 46.171689 ], + [ 5.988748, 46.1716928 ], + [ 5.9887499, 46.1716966 ], + [ 5.9887517, 46.1717004 ], + [ 5.9887535, 46.1717042 ], + [ 5.9887553, 46.171708 ], + [ 5.9887571, 46.1717118 ], + [ 5.9887589, 46.1717156 ], + [ 5.9887607, 46.1717194 ], + [ 5.9887624, 46.1717233 ], + [ 5.9887642, 46.1717271 ], + [ 5.9887659, 46.1717309 ], + [ 5.9887677, 46.1717347 ], + [ 5.9887694, 46.1717385 ], + [ 5.9887711, 46.1717424 ], + [ 5.9887728, 46.1717462 ], + [ 5.9887745, 46.17175 ], + [ 5.9887762, 46.1717539 ], + [ 5.9887779, 46.1717577 ], + [ 5.9887796, 46.1717615 ], + [ 5.9887812, 46.1717654 ], + [ 5.9887829, 46.1717692 ], + [ 5.9887844999999995, 46.1717731 ], + [ 5.9887861000000004, 46.1717769 ], + [ 5.9887877, 46.1717808 ], + [ 5.9887894, 46.1717846 ], + [ 5.988791, 46.1717885 ], + [ 5.9887925, 46.1717923 ], + [ 5.9887941, 46.1717962 ], + [ 5.9887957, 46.1718 ], + [ 5.9887972, 46.1718039 ], + [ 5.9887988, 46.1718078 ], + [ 5.9888003, 46.1718116 ], + [ 5.9888019, 46.1718155 ], + [ 5.9888034, 46.1718193 ], + [ 5.9888049, 46.1718232 ], + [ 5.9888064, 46.1718271 ], + [ 5.9888079, 46.171831 ], + [ 5.9888094, 46.1718348 ], + [ 5.9888107999999995, 46.1718387 ], + [ 5.9888123, 46.1718426 ], + [ 5.9888138, 46.1718465 ], + [ 5.9888152, 46.1718504 ], + [ 5.9888166, 46.1718542 ], + [ 5.988818, 46.1718581 ], + [ 5.9888195, 46.171862 ], + [ 5.9888208, 46.1718659 ], + [ 5.9888221999999995, 46.1718698 ], + [ 5.9888236, 46.1718737 ], + [ 5.988825, 46.1718776 ], + [ 5.9888264, 46.1718815 ], + [ 5.9888277, 46.1718854 ], + [ 5.988829, 46.1718893 ], + [ 5.9888304, 46.1718932 ], + [ 5.9888317, 46.1718971 ], + [ 5.988833, 46.171901 ], + [ 5.9888343, 46.1719049 ], + [ 5.9888356, 46.1719088 ], + [ 5.9888369, 46.1719127 ], + [ 5.9888381, 46.1719166 ], + [ 5.9888394, 46.1719205 ], + [ 5.9888406, 46.1719244 ], + [ 5.9888419, 46.1719284 ], + [ 5.9888431, 46.1719323 ], + [ 5.9888443, 46.1719362 ], + [ 5.9888455, 46.1719401 ], + [ 5.9888467, 46.171944 ], + [ 5.9888479, 46.171948 ], + [ 5.9888490999999995, 46.1719519 ], + [ 5.9888503, 46.1719558 ], + [ 5.9888515, 46.1719597 ], + [ 5.9888525999999995, 46.1719637 ], + [ 5.9888537, 46.1719676 ], + [ 5.9888549, 46.1719715 ], + [ 5.988856, 46.1719755 ], + [ 5.9888571, 46.1719794 ], + [ 5.9888582, 46.1719833 ], + [ 5.9888593, 46.1719873 ], + [ 5.9888604, 46.1719912 ], + [ 5.9888614, 46.1719952 ], + [ 5.9888625, 46.1719991 ], + [ 5.9888635, 46.172003 ], + [ 5.9888646, 46.172007 ], + [ 5.9888656, 46.1720109 ], + [ 5.9888666, 46.1720149 ], + [ 5.9888676, 46.1720188 ], + [ 5.9888686, 46.1720228 ], + [ 5.9888696, 46.1720267 ], + [ 5.9888706, 46.1720307 ], + [ 5.9888715, 46.1720346 ], + [ 5.9888725, 46.1720386 ], + [ 5.9888734, 46.1720425 ], + [ 5.9888744, 46.1720465 ], + [ 5.9888753, 46.1720504 ], + [ 5.9888762, 46.1720544 ], + [ 5.9888771, 46.1720584 ], + [ 5.988878, 46.1720623 ], + [ 5.9888789, 46.1720663 ], + [ 5.9888798, 46.1720702 ], + [ 5.9888807, 46.1720742 ], + [ 5.9888815, 46.1720782 ], + [ 5.9888824, 46.1720821 ], + [ 5.9888832, 46.1720861 ], + [ 5.988884, 46.1720901 ], + [ 5.9888848, 46.172094 ], + [ 5.9888856, 46.172098 ], + [ 5.9888864, 46.172102 ], + [ 5.9888872, 46.1721059 ], + [ 5.988888, 46.1721099 ], + [ 5.9888888, 46.1721139 ], + [ 5.9888895, 46.1721179 ], + [ 5.9888902999999996, 46.1721218 ], + [ 5.988891, 46.1721258 ], + [ 5.9888917, 46.1721298 ], + [ 5.9888924, 46.1721338 ], + [ 5.9888931, 46.1721378 ], + [ 5.9888938, 46.1721417 ], + [ 5.9888945, 46.1721457 ], + [ 5.9888952, 46.1721497 ], + [ 5.9888958, 46.1721537 ], + [ 5.9888965, 46.1721577 ], + [ 5.9888971, 46.1721617 ], + [ 5.9888978, 46.1721656 ], + [ 5.9888984, 46.1721696 ], + [ 5.988899, 46.1721736 ], + [ 5.9888996, 46.1721776 ], + [ 5.9889002, 46.1721816 ], + [ 5.9889008, 46.1721856 ], + [ 5.9889013, 46.1721896 ], + [ 5.9889019, 46.1721936 ], + [ 5.9890517, 46.1732729 ], + [ 5.9890525, 46.1732782 ], + [ 5.9890533, 46.1732836 ], + [ 5.989054, 46.1732889 ], + [ 5.9890548, 46.1732943 ], + [ 5.9890556, 46.1732996 ], + [ 5.9890564, 46.173305 ], + [ 5.9890571999999995, 46.1733103 ], + [ 5.989058, 46.1733157 ], + [ 5.9890589, 46.173321 ], + [ 5.9890597, 46.1733264 ], + [ 5.9890606, 46.1733317 ], + [ 5.9890614, 46.1733371 ], + [ 5.9890623, 46.1733424 ], + [ 5.9890632, 46.1733477 ], + [ 5.9890641, 46.1733531 ], + [ 5.989065, 46.1733584 ], + [ 5.9890659, 46.1733638 ], + [ 5.9890668, 46.1733691 ], + [ 5.9890677, 46.1733745 ], + [ 5.9890687, 46.1733798 ], + [ 5.9890696, 46.1733851 ], + [ 5.9890706, 46.1733905 ], + [ 5.9890716, 46.1733958 ], + [ 5.9890725, 46.1734011 ], + [ 5.9890735, 46.1734065 ], + [ 5.9890745, 46.1734118 ], + [ 5.9890756, 46.1734171 ], + [ 5.9890766, 46.1734225 ], + [ 5.9890776, 46.1734278 ], + [ 5.9890787, 46.1734331 ], + [ 5.9890797, 46.1734384 ], + [ 5.9890808, 46.1734438 ], + [ 5.9890819, 46.1734491 ], + [ 5.989083, 46.1734544 ], + [ 5.9890840999999995, 46.1734597 ], + [ 5.9890852, 46.1734651 ], + [ 5.9890863, 46.1734704 ], + [ 5.9890874, 46.1734757 ], + [ 5.9890885, 46.173481 ], + [ 5.9890897, 46.1734863 ], + [ 5.9890908, 46.1734917 ], + [ 5.989092, 46.173497 ], + [ 5.9890932, 46.1735023 ], + [ 5.9890944, 46.1735076 ], + [ 5.9890956, 46.1735129 ], + [ 5.9890968, 46.1735182 ], + [ 5.989098, 46.1735235 ], + [ 5.9890992, 46.1735289 ], + [ 5.9891001, 46.1735324 ], + [ 5.9895004, 46.1739465 ], + [ 5.9894049, 46.1740571 ], + [ 5.9893511, 46.1742194 ], + [ 5.989352, 46.1742212 ], + [ 5.9893546, 46.1742263 ], + [ 5.9899757, 46.175454 ], + [ 5.9899777, 46.175458 ], + [ 5.9899797, 46.175462 ], + [ 5.9899816999999995, 46.1754659 ], + [ 5.9899838, 46.1754699 ], + [ 5.9899859, 46.1754739 ], + [ 5.9899879, 46.1754778 ], + [ 5.98999, 46.1754818 ], + [ 5.9899921, 46.1754857 ], + [ 5.9899942, 46.1754897 ], + [ 5.9899963, 46.1754936 ], + [ 5.9899984, 46.1754976 ], + [ 5.9900005, 46.1755015 ], + [ 5.9900026, 46.1755055 ], + [ 5.9900047999999995, 46.1755094 ], + [ 5.990007, 46.1755133 ], + [ 5.9900091, 46.1755173 ], + [ 5.9900113, 46.1755212 ], + [ 5.9900135, 46.1755251 ], + [ 5.9900157, 46.175529 ], + [ 5.9900179, 46.175533 ], + [ 5.9900201, 46.1755369 ], + [ 5.9900223, 46.1755408 ], + [ 5.9900245, 46.1755447 ], + [ 5.9900268, 46.1755486 ], + [ 5.990029, 46.1755526 ], + [ 5.9900313, 46.1755565 ], + [ 5.9900336, 46.1755604 ], + [ 5.9900358, 46.1755643 ], + [ 5.9900381, 46.1755682 ], + [ 5.9900404, 46.1755721 ], + [ 5.9900427, 46.175576 ], + [ 5.990045, 46.1755798 ], + [ 5.9900474, 46.1755837 ], + [ 5.9900497, 46.1755876 ], + [ 5.990052, 46.1755915 ], + [ 5.9900544, 46.1755954 ], + [ 5.9900568, 46.1755993 ], + [ 5.9900591, 46.1756031 ], + [ 5.9900614999999995, 46.175607 ], + [ 5.9900639, 46.1756109 ], + [ 5.9900663, 46.1756147 ], + [ 5.9900687, 46.1756186 ], + [ 5.9900712, 46.1756225 ], + [ 5.9900736, 46.1756263 ], + [ 5.990076, 46.1756302 ], + [ 5.9900785, 46.175634 ], + [ 5.9900809, 46.1756379 ], + [ 5.9900834, 46.1756417 ], + [ 5.9900859, 46.1756456 ], + [ 5.9900884, 46.1756494 ], + [ 5.9900909, 46.1756532 ], + [ 5.9900934, 46.1756571 ], + [ 5.9900959, 46.1756609 ], + [ 5.9900984, 46.1756647 ], + [ 5.990101, 46.1756686 ], + [ 5.9901035, 46.1756724 ], + [ 5.9901061, 46.1756762 ], + [ 5.9901086, 46.17568 ], + [ 5.9901112, 46.1756838 ], + [ 5.9901138, 46.1756876 ], + [ 5.9901164, 46.1756914 ], + [ 5.990119, 46.1756952 ], + [ 5.9901216, 46.1756991 ], + [ 5.9901242, 46.1757028 ], + [ 5.9901268, 46.1757066 ], + [ 5.9901295, 46.1757104 ], + [ 5.9901321, 46.1757142 ], + [ 5.9901348, 46.175718 ], + [ 5.9901374, 46.1757218 ], + [ 5.9901401, 46.1757256 ], + [ 5.9901428, 46.1757293 ], + [ 5.9901455, 46.1757331 ], + [ 5.9901482, 46.1757369 ], + [ 5.9901509, 46.1757407 ], + [ 5.9901536, 46.1757444 ], + [ 5.9901563, 46.1757482 ], + [ 5.9901591, 46.1757519 ], + [ 5.9901618, 46.1757557 ], + [ 5.9901646, 46.1757594 ], + [ 5.9901672999999995, 46.1757632 ], + [ 5.9901701, 46.1757669 ], + [ 5.9901729, 46.1757707 ], + [ 5.9901757, 46.1757744 ], + [ 5.9901785, 46.1757781 ], + [ 5.9901813, 46.1757819 ], + [ 5.9901841, 46.1757856 ], + [ 5.990187, 46.1757893 ], + [ 5.9901898, 46.175793 ], + [ 5.9901927, 46.1757968 ], + [ 5.9901955000000005, 46.1758005 ], + [ 5.9901984, 46.1758042 ], + [ 5.9902013, 46.1758079 ], + [ 5.9902041, 46.1758116 ], + [ 5.990207, 46.1758153 ], + [ 5.9902099, 46.175819 ], + [ 5.9902128999999995, 46.1758227 ], + [ 5.9902158, 46.1758264 ], + [ 5.9902187, 46.1758301 ], + [ 5.9902216, 46.1758337 ], + [ 5.9902246, 46.1758374 ], + [ 5.9902276, 46.1758411 ], + [ 5.9902305, 46.1758448 ], + [ 5.9902335, 46.1758484 ], + [ 5.9902365, 46.1758521 ], + [ 5.9902394999999995, 46.1758558 ], + [ 5.9902425, 46.1758594 ], + [ 5.9902455, 46.1758631 ], + [ 5.9902485, 46.1758667 ], + [ 5.9902515, 46.1758704 ], + [ 5.9902546, 46.175874 ], + [ 5.9902576, 46.1758777 ], + [ 5.9902607, 46.1758813 ], + [ 5.9902637, 46.1758849 ], + [ 5.9902668, 46.1758886 ], + [ 5.9902698999999995, 46.1758922 ], + [ 5.990273, 46.1758958 ], + [ 5.9902761, 46.1758994 ], + [ 5.9902792, 46.175903 ], + [ 5.9902823, 46.1759066 ], + [ 5.9902854, 46.1759103 ], + [ 5.9902885999999995, 46.1759139 ], + [ 5.9902917, 46.1759175 ], + [ 5.9902949, 46.1759211 ], + [ 5.990298, 46.1759246 ], + [ 5.9903012, 46.1759282 ], + [ 5.9903044, 46.1759318 ], + [ 5.9903075999999995, 46.1759354 ], + [ 5.9903108, 46.175939 ], + [ 5.990314, 46.1759425 ], + [ 5.9903172, 46.1759461 ], + [ 5.9903204, 46.1759497 ], + [ 5.9903236, 46.1759532 ], + [ 5.9903269, 46.1759568 ], + [ 5.9903300999999995, 46.1759604 ], + [ 5.9903334, 46.1759639 ], + [ 5.9903367, 46.1759675 ], + [ 5.9903399, 46.175971 ], + [ 5.9903432, 46.1759745 ], + [ 5.9903465, 46.1759781 ], + [ 5.9903498, 46.1759816 ], + [ 5.9903531, 46.1759851 ], + [ 5.9903565, 46.1759887 ], + [ 5.9903598, 46.1759922 ], + [ 5.9903631, 46.1759957 ], + [ 5.9903665, 46.1759992 ], + [ 5.9903698, 46.1760027 ], + [ 5.9903732, 46.1760062 ], + [ 5.9903766, 46.1760097 ], + [ 5.9903799, 46.1760132 ], + [ 5.9903832999999995, 46.1760167 ], + [ 5.9903867, 46.1760202 ], + [ 5.9903901, 46.1760237 ], + [ 5.9903935, 46.1760272 ], + [ 5.990397, 46.1760306 ], + [ 5.9904004, 46.1760341 ], + [ 5.9904038, 46.1760376 ], + [ 5.9904073, 46.176041 ], + [ 5.9904107, 46.1760445 ], + [ 5.9904142, 46.1760479 ], + [ 5.9904177, 46.1760514 ], + [ 5.9904211, 46.1760548 ], + [ 5.9904246, 46.1760583 ], + [ 5.9904281, 46.1760617 ], + [ 5.9904316, 46.1760652 ], + [ 5.9904352, 46.1760686 ], + [ 5.9904387, 46.176072 ], + [ 5.9904422, 46.1760754 ], + [ 5.9904458, 46.1760789 ], + [ 5.9904493, 46.1760823 ], + [ 5.9904529, 46.1760857 ], + [ 5.9904564, 46.1760891 ], + [ 5.990460000000001, 46.1760925 ], + [ 5.9904636, 46.1760959 ], + [ 5.9904672, 46.1760993 ], + [ 5.9904708, 46.1761027 ], + [ 5.9904744, 46.1761061 ], + [ 5.9904779999999995, 46.1761094 ], + [ 5.9904816, 46.1761128 ], + [ 5.9904852, 46.1761162 ], + [ 5.9904889, 46.1761195 ], + [ 5.9904925, 46.1761229 ], + [ 5.9904962, 46.1761263 ], + [ 5.9904999, 46.1761296 ], + [ 5.9905035, 46.176133 ], + [ 5.9905072, 46.1761363 ], + [ 5.9905109, 46.1761397 ], + [ 5.9905146, 46.176143 ], + [ 5.9905183, 46.1761463 ], + [ 5.990522, 46.1761497 ], + [ 5.9905257, 46.176153 ], + [ 5.9905295, 46.1761563 ], + [ 5.9905332, 46.1761596 ], + [ 5.990537, 46.1761629 ], + [ 5.9905407, 46.1761662 ], + [ 5.9905445, 46.1761695 ], + [ 5.9905482, 46.1761728 ], + [ 5.990552, 46.1761761 ], + [ 5.9905558, 46.1761794 ], + [ 5.9905596, 46.1761827 ], + [ 5.9905634, 46.176186 ], + [ 5.9905672, 46.1761892 ], + [ 5.990571, 46.1761925 ], + [ 5.9905749, 46.1761958 ], + [ 5.9905787, 46.176199 ], + [ 5.9905825, 46.1762023 ], + [ 5.9905864, 46.1762055 ], + [ 5.9905903, 46.1762088 ], + [ 5.9905941, 46.176212 ], + [ 5.990598, 46.1762153 ], + [ 5.9906019, 46.1762185 ], + [ 5.9906058, 46.1762217 ], + [ 5.9906097, 46.176225 ], + [ 5.9906136, 46.1762282 ], + [ 5.9906175, 46.1762314 ], + [ 5.9906214, 46.1762346 ], + [ 5.9906253, 46.1762378 ], + [ 5.9906293, 46.176241 ], + [ 5.9906331999999995, 46.1762442 ], + [ 5.9906372, 46.1762474 ], + [ 5.9906410999999995, 46.1762506 ], + [ 5.9906451, 46.1762538 ], + [ 5.9906491, 46.1762569 ], + [ 5.9906531, 46.1762601 ], + [ 5.9906571, 46.1762633 ], + [ 5.9906611, 46.1762665 ], + [ 5.9906651, 46.1762696 ], + [ 5.9906691, 46.1762728 ], + [ 5.9906731, 46.1762759 ], + [ 5.9906771, 46.1762791 ], + [ 5.9906812, 46.1762822 ], + [ 5.9906852, 46.1762853 ], + [ 5.9906893, 46.1762885 ], + [ 5.9906933, 46.1762916 ], + [ 5.9906974, 46.1762947 ], + [ 5.9907015, 46.1762978 ], + [ 5.9907056, 46.1763009 ], + [ 5.9907097, 46.176304 ], + [ 5.9907138, 46.1763071 ], + [ 5.9907179, 46.1763102 ], + [ 5.990722, 46.1763133 ], + [ 5.9907261, 46.1763164 ], + [ 5.9907302, 46.1763195 ], + [ 5.9907344, 46.1763226 ], + [ 5.9907385, 46.1763257 ], + [ 5.9907427, 46.1763287 ], + [ 5.9907468, 46.1763318 ], + [ 5.9907509999999995, 46.1763348 ], + [ 5.9907552, 46.1763379 ], + [ 5.9907594, 46.1763409 ], + [ 5.9907636, 46.176344 ], + [ 5.9907678, 46.176347 ], + [ 5.990772, 46.1763501 ], + [ 5.9907762, 46.1763531 ], + [ 5.9907804, 46.1763561 ], + [ 5.9907846, 46.1763591 ], + [ 5.9907889, 46.1763621 ], + [ 5.9907931, 46.1763651 ], + [ 5.9907974, 46.1763681 ], + [ 5.9908016, 46.1763711 ], + [ 5.9908059, 46.1763741 ], + [ 5.9908101, 46.1763771 ], + [ 5.9908144, 46.1763801 ], + [ 5.9908187, 46.1763831 ], + [ 5.990823, 46.1763861 ], + [ 5.9908273, 46.176389 ], + [ 5.9908316, 46.176392 ], + [ 5.9908359, 46.1763949 ], + [ 5.9908402, 46.1763979 ], + [ 5.9908446, 46.1764008 ], + [ 5.9908489, 46.1764038 ], + [ 5.9908532999999995, 46.1764067 ], + [ 5.9908576, 46.1764097 ], + [ 5.990862, 46.1764126 ], + [ 5.9908663, 46.1764155 ], + [ 5.9908707, 46.1764184 ], + [ 5.9908751, 46.1764213 ], + [ 5.9908795, 46.1764242 ], + [ 5.9908839, 46.1764271 ], + [ 5.9908883, 46.17643 ], + [ 5.9908927, 46.1764329 ], + [ 5.9908971, 46.1764358 ], + [ 5.9909015, 46.1764387 ], + [ 5.990906, 46.1764416 ], + [ 5.9909104, 46.1764444 ], + [ 5.9909148, 46.1764473 ], + [ 5.9909193, 46.1764501 ], + [ 5.9909237, 46.176453 ], + [ 5.9909282, 46.1764558 ], + [ 5.9909327, 46.1764587 ], + [ 5.9909372, 46.1764615 ], + [ 5.9909416, 46.1764644 ], + [ 5.9909461, 46.1764672 ], + [ 5.9909506, 46.17647 ], + [ 5.9909551, 46.1764728 ], + [ 5.9909597, 46.1764756 ], + [ 5.9909642, 46.1764784 ], + [ 5.9909687, 46.1764812 ], + [ 5.9909732, 46.176484 ], + [ 5.9909778, 46.1764868 ], + [ 5.9909823, 46.1764896 ], + [ 5.9909869, 46.1764924 ], + [ 5.9909914, 46.1764952 ], + [ 5.990996, 46.1764979 ], + [ 5.9910006, 46.1765007 ], + [ 5.9910052, 46.1765035 ], + [ 5.9910098, 46.1765062 ], + [ 5.9910143, 46.1765089 ], + [ 5.9910189, 46.1765117 ], + [ 5.9910236, 46.1765144 ], + [ 5.9910282, 46.1765172 ], + [ 5.9910328, 46.1765199 ], + [ 5.9910374, 46.1765226 ], + [ 5.991042, 46.1765253 ], + [ 5.9910467, 46.176528 ], + [ 5.9910513, 46.1765307 ], + [ 5.991056, 46.1765334 ], + [ 5.9910607, 46.1765361 ], + [ 5.9910653, 46.1765388 ], + [ 5.991070000000001, 46.1765415 ], + [ 5.9910747, 46.1765442 ], + [ 5.9910794, 46.1765468 ], + [ 5.9910841, 46.1765495 ], + [ 5.9910888, 46.1765521 ], + [ 5.9910935, 46.1765548 ], + [ 5.9910982, 46.1765574 ], + [ 5.9911029, 46.1765601 ], + [ 5.9911076, 46.1765627 ], + [ 5.9911124000000004, 46.1765653 ], + [ 5.9911171, 46.176568 ], + [ 5.9911219, 46.1765706 ], + [ 5.9911266, 46.1765732 ], + [ 5.9911314, 46.1765758 ], + [ 5.9911361, 46.1765784 ], + [ 5.9911408999999995, 46.176581 ], + [ 5.9911457, 46.1765836 ], + [ 5.9911505, 46.1765862 ], + [ 5.9911553, 46.1765888 ], + [ 5.9911601, 46.1765913 ], + [ 5.9911649, 46.1765939 ], + [ 5.9911697, 46.1765965 ], + [ 5.9911745, 46.176599 ], + [ 5.9911793, 46.1766016 ], + [ 5.9911841, 46.1766041 ], + [ 5.991189, 46.1766067 ], + [ 5.9911938, 46.1766092 ], + [ 5.9911987, 46.1766117 ], + [ 5.9912035, 46.1766143 ], + [ 5.9912084, 46.1766168 ], + [ 5.9912132, 46.1766193 ], + [ 5.9912181, 46.1766218 ], + [ 5.991223, 46.1766243 ], + [ 5.9912279, 46.1766268 ], + [ 5.9912328, 46.1766293 ], + [ 5.9912377, 46.1766318 ], + [ 5.9912426, 46.1766342 ], + [ 5.9912475, 46.1766367 ], + [ 5.9912524, 46.1766392 ], + [ 5.9912573, 46.1766416 ], + [ 5.9912621999999995, 46.1766441 ], + [ 5.9912672, 46.1766465 ], + [ 5.9912721, 46.176649 ], + [ 5.991277, 46.1766514 ], + [ 5.991282, 46.1766538 ], + [ 5.991287, 46.1766563 ], + [ 5.9912919, 46.1766587 ], + [ 5.9912969, 46.1766611 ], + [ 5.9913019, 46.1766635 ], + [ 5.9913068, 46.1766659 ], + [ 5.9913118, 46.1766683 ], + [ 5.9913168, 46.1766707 ], + [ 5.9913218, 46.1766731 ], + [ 5.9913267999999995, 46.1766754 ], + [ 5.9913318, 46.1766778 ], + [ 5.9913368, 46.1766802 ], + [ 5.9913419, 46.1766825 ], + [ 5.9913469, 46.1766849 ], + [ 5.9913519, 46.1766872 ], + [ 5.991357, 46.1766896 ], + [ 5.991362, 46.1766919 ], + [ 5.9913671, 46.1766942 ], + [ 5.9913720999999995, 46.1766966 ], + [ 5.9913772, 46.1766989 ], + [ 5.9913822, 46.1767012 ], + [ 5.9913872999999995, 46.1767035 ], + [ 5.9913924, 46.1767058 ], + [ 5.9913975, 46.1767081 ], + [ 5.9914026, 46.1767104 ], + [ 5.9914076, 46.1767127 ], + [ 5.9914128, 46.1767149 ], + [ 5.9914179, 46.1767172 ], + [ 5.991423, 46.1767195 ], + [ 5.9914281, 46.1767217 ], + [ 5.9914331999999995, 46.176724 ], + [ 5.9914383, 46.1767262 ], + [ 5.9914435, 46.1767285 ], + [ 5.9914486, 46.1767307 ], + [ 5.9914538, 46.1767329 ], + [ 5.9914589, 46.1767351 ], + [ 5.9914641, 46.1767374 ], + [ 5.9914692, 46.1767396 ], + [ 5.9914743999999995, 46.1767418 ], + [ 5.9914796, 46.176744 ], + [ 5.9914847, 46.1767462 ], + [ 5.9914898999999995, 46.1767483 ], + [ 5.9914951, 46.1767505 ], + [ 5.9915003, 46.1767527 ], + [ 5.9915055, 46.1767549 ], + [ 5.9915107, 46.176757 ], + [ 5.9915159, 46.1767592 ], + [ 5.9915211, 46.1767613 ], + [ 5.9915263, 46.1767635 ], + [ 5.9915316, 46.1767656 ], + [ 5.9915368, 46.1767677 ], + [ 5.991542, 46.1767699 ], + [ 5.9915473, 46.176772 ], + [ 5.9915525, 46.1767741 ], + [ 5.9915578, 46.1767762 ], + [ 5.991563, 46.1767783 ], + [ 5.9915683, 46.1767804 ], + [ 5.9915736, 46.1767825 ], + [ 5.9915788, 46.1767845 ], + [ 5.9915841, 46.1767866 ], + [ 5.9915894, 46.1767887 ], + [ 5.9915947, 46.1767907 ], + [ 5.9916, 46.1767928 ], + [ 5.9916053, 46.1767948 ], + [ 5.9916105, 46.1767969 ], + [ 5.9916159, 46.1767989 ], + [ 5.9916212, 46.1768009 ], + [ 5.9916265, 46.176803 ], + [ 5.9916318, 46.176805 ], + [ 5.9916371, 46.176807 ], + [ 5.9916425, 46.176809 ], + [ 5.9916478, 46.176811 ], + [ 5.9916531, 46.176813 ], + [ 5.9916585, 46.176815 ], + [ 5.9916637999999995, 46.176817 ], + [ 5.9916692, 46.1768189 ], + [ 5.9916746, 46.1768209 ], + [ 5.9916799, 46.1768229 ], + [ 5.9916853, 46.1768248 ], + [ 5.9916906999999995, 46.1768268 ], + [ 5.9916961, 46.1768287 ], + [ 5.9917014, 46.1768306 ], + [ 5.9917068, 46.1768326 ], + [ 5.9917122, 46.1768345 ], + [ 5.9917176, 46.1768364 ], + [ 5.991723, 46.1768383 ], + [ 5.9917283999999995, 46.1768402 ], + [ 5.9917338, 46.1768421 ], + [ 5.9914204, 46.1771617 ], + [ 5.9914609, 46.1771819 ], + [ 5.9914511, 46.1772057 ], + [ 5.9914229, 46.1772396 ], + [ 5.9913626, 46.1772781 ], + [ 5.9913365, 46.1772923 ], + [ 5.9913205, 46.1773003 ], + [ 5.9912643, 46.1773128 ], + [ 5.991236, 46.1773226 ], + [ 5.9912173, 46.1773244 ], + [ 5.9911255, 46.1773048 ], + [ 5.9908885, 46.1773127 ], + [ 5.990818, 46.1773281 ], + [ 5.9907767, 46.1773446 ], + [ 5.9904317, 46.177533 ], + [ 5.990431, 46.1775334 ], + [ 5.9904302, 46.1775339 ], + [ 5.9904295, 46.1775343 ], + [ 5.9904288999999995, 46.1775348 ], + [ 5.9904282, 46.1775353 ], + [ 5.9904275, 46.1775357 ], + [ 5.9904268, 46.1775362 ], + [ 5.9904262, 46.1775367 ], + [ 5.9904255, 46.1775371 ], + [ 5.9904249, 46.1775376 ], + [ 5.9904242, 46.1775381 ], + [ 5.9904236, 46.1775386 ], + [ 5.990423, 46.1775391 ], + [ 5.9904223, 46.1775396 ], + [ 5.9904217, 46.1775401 ], + [ 5.9904211, 46.1775406 ], + [ 5.9904205, 46.1775411 ], + [ 5.9904199, 46.1775417 ], + [ 5.9904194, 46.1775422 ], + [ 5.9904188, 46.1775427 ], + [ 5.9904182, 46.1775433 ], + [ 5.9904177, 46.1775438 ], + [ 5.9904171, 46.1775443 ], + [ 5.9904166, 46.1775449 ], + [ 5.990416, 46.1775454 ], + [ 5.9904155, 46.177546 ], + [ 5.990415, 46.1775465 ], + [ 5.9904145, 46.1775471 ], + [ 5.9904139999999995, 46.1775477 ], + [ 5.9904135, 46.1775482 ], + [ 5.990413, 46.1775488 ], + [ 5.9904126, 46.1775494 ], + [ 5.9904121, 46.1775499 ], + [ 5.9904116, 46.1775505 ], + [ 5.9904112, 46.1775511 ], + [ 5.9904108, 46.1775517 ], + [ 5.9904103, 46.1775523 ], + [ 5.9904098999999995, 46.1775529 ], + [ 5.9904095, 46.1775535 ], + [ 5.9904091, 46.1775541 ], + [ 5.9904087, 46.1775547 ], + [ 5.9904083, 46.1775553 ], + [ 5.9904079, 46.1775559 ], + [ 5.9904076, 46.1775565 ], + [ 5.9904072, 46.1775571 ], + [ 5.9904069, 46.1775577 ], + [ 5.9904067, 46.1775583 ], + [ 5.9904063999999995, 46.1775588 ], + [ 5.9904060999999995, 46.1775594 ], + [ 5.9904059, 46.17756 ], + [ 5.9904057, 46.1775606 ], + [ 5.9904054, 46.1775611 ], + [ 5.9904052, 46.1775617 ], + [ 5.990405, 46.1775623 ], + [ 5.9904048, 46.1775629 ], + [ 5.9904046, 46.1775635 ], + [ 5.9904045, 46.1775641 ], + [ 5.9904043, 46.1775647 ], + [ 5.9904041, 46.1775653 ], + [ 5.990404, 46.177565799999996 ], + [ 5.9904039000000004, 46.1775664 ], + [ 5.9904037, 46.177567 ], + [ 5.9904036, 46.1775676 ], + [ 5.9904035, 46.1775682 ], + [ 5.9904034, 46.1775688 ], + [ 5.9904033, 46.1775694 ], + [ 5.9904032, 46.17757 ], + [ 5.9904032, 46.1775706 ], + [ 5.9904031, 46.1775712 ], + [ 5.9904031, 46.1775718 ], + [ 5.990403, 46.1775724 ], + [ 5.990403, 46.177573 ], + [ 5.990403, 46.1775736 ], + [ 5.990403, 46.1775742 ], + [ 5.990403, 46.1775748 ], + [ 5.990403, 46.1775754 ], + [ 5.990403, 46.177576 ], + [ 5.990403, 46.1775766 ], + [ 5.9904031, 46.1775772 ], + [ 5.9904031, 46.1775778 ], + [ 5.9904032, 46.1775784 ], + [ 5.9904033, 46.177579 ], + [ 5.9904033, 46.1775797 ], + [ 5.9904034, 46.1775802 ], + [ 5.9904035, 46.1775808 ], + [ 5.9904036, 46.1775814 ], + [ 5.9904038, 46.177582 ], + [ 5.9904039000000004, 46.1775826 ], + [ 5.990404, 46.1775832 ], + [ 5.9904042, 46.1775838 ], + [ 5.9904043, 46.1775844 ], + [ 5.9904045, 46.177585 ], + [ 5.9904047, 46.1775856 ], + [ 5.9904048, 46.1775862 ], + [ 5.9904051, 46.1775868 ], + [ 5.9904052, 46.1775873 ], + [ 5.9904053, 46.1775878 ], + [ 5.9904055, 46.1775884 ], + [ 5.9904056, 46.1775889 ], + [ 5.9904058, 46.1775895 ], + [ 5.990406, 46.17759 ], + [ 5.9904062, 46.1775905 ], + [ 5.9904063999999995, 46.1775911 ], + [ 5.9904066, 46.1775916 ], + [ 5.9904068, 46.1775921 ], + [ 5.990407, 46.1775926 ], + [ 5.9904073, 46.1775932 ], + [ 5.9904075, 46.1775937 ], + [ 5.9904078, 46.1775942 ], + [ 5.9904081, 46.1775947 ], + [ 5.9904083, 46.1775952 ], + [ 5.9904086, 46.1775958 ], + [ 5.9904089, 46.1775963 ], + [ 5.9904092, 46.1775968 ], + [ 5.9904095, 46.1775973 ], + [ 5.9904098999999995, 46.1775978 ], + [ 5.9904101999999995, 46.1775983 ], + [ 5.9904105, 46.1775988 ], + [ 5.9904109, 46.1775993 ], + [ 5.9904112, 46.1775998 ], + [ 5.9904116, 46.1776002 ], + [ 5.990412, 46.1776007 ], + [ 5.9904123, 46.1776012 ], + [ 5.9904127, 46.1776017 ], + [ 5.9904131, 46.1776022 ], + [ 5.9904135, 46.1776026 ], + [ 5.9904139999999995, 46.1776031 ], + [ 5.9904144, 46.1776036 ], + [ 5.9904148, 46.177604 ], + [ 5.9904153, 46.1776045 ], + [ 5.9904157, 46.1776049 ], + [ 5.9904162, 46.1776054 ], + [ 5.9904166, 46.1776058 ], + [ 5.9904171, 46.1776063 ], + [ 5.9904176, 46.1776067 ], + [ 5.9904181, 46.1776071 ], + [ 5.9904186, 46.1776076 ], + [ 5.9904191, 46.177608 ], + [ 5.9904196, 46.1776084 ], + [ 5.9904201, 46.1776088 ], + [ 5.9904206, 46.1776092 ], + [ 5.9904212, 46.1776096 ], + [ 5.9904217, 46.17761 ], + [ 5.9904223, 46.1776104 ], + [ 5.9904228, 46.1776108 ], + [ 5.9904234, 46.1776112 ], + [ 5.990424, 46.1776116 ], + [ 5.9904245, 46.177612 ], + [ 5.9904250999999995, 46.1776123 ], + [ 5.9904257, 46.1776127 ], + [ 5.9905818, 46.1777114 ], + [ 5.9906077, 46.1777437 ], + [ 5.9906267, 46.1777589 ], + [ 5.9906649, 46.1777816 ], + [ 5.9907335, 46.1778603 ], + [ 5.9909223, 46.1779584 ], + [ 5.990975, 46.1780137 ], + [ 5.9909806, 46.1780533 ], + [ 5.9910007, 46.1781003 ], + [ 5.9910296, 46.1781596 ], + [ 5.9910495, 46.1781848 ], + [ 5.9910548, 46.1781999 ], + [ 5.9911064, 46.1782789 ], + [ 5.9911587, 46.1783331 ], + [ 5.9911649, 46.1783625 ], + [ 5.9911791, 46.1783953 ], + [ 5.9911927, 46.1784628 ], + [ 5.9912154, 46.1785071 ], + [ 5.9912566, 46.1785445 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-3", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4502521999999995, 47.1424692 ], + [ 7.4398058, 47.1392633 ], + [ 7.4366229, 47.1383538 ], + [ 7.4333748, 47.1375592 ], + [ 7.4300702, 47.1368815 ], + [ 7.4267182, 47.1363227 ], + [ 7.423328, 47.1358842 ], + [ 7.4199089, 47.1355674 ], + [ 7.4164702, 47.1353729 ], + [ 7.4130213, 47.1353015 ], + [ 7.4095717, 47.1353532 ], + [ 7.4061307, 47.1355279 ], + [ 7.4027078, 47.1358252 ], + [ 7.3993124, 47.1362442 ], + [ 7.3959536, 47.1367838 ], + [ 7.3926408, 47.1374425 ], + [ 7.389383, 47.1382185 ], + [ 7.386189, 47.1391097 ], + [ 7.3830677, 47.1401137 ], + [ 7.3800275, 47.1412277 ], + [ 7.3770768, 47.1424486 ], + [ 7.3742237, 47.1437732 ], + [ 7.3714759, 47.1451977 ], + [ 7.368841, 47.1467184 ], + [ 7.3663262, 47.148331 ], + [ 7.3639384, 47.1500311 ], + [ 7.3616842, 47.1518141 ], + [ 7.3595697, 47.1536751 ], + [ 7.3576007, 47.155609 ], + [ 7.3557827, 47.1576106 ], + [ 7.3541206, 47.1596742 ], + [ 7.352619, 47.1617943 ], + [ 7.351282, 47.1639652 ], + [ 7.3501134, 47.1661807 ], + [ 7.3491162, 47.1684349 ], + [ 7.3482934, 47.1707216 ], + [ 7.3476471, 47.1730346 ], + [ 7.3471792, 47.1753674 ], + [ 7.3468909, 47.1777137 ], + [ 7.3467831, 47.1800671 ], + [ 7.3468561, 47.1824212 ], + [ 7.3471097, 47.1847694 ], + [ 7.3475432, 47.1871053 ], + [ 7.3481556, 47.1894225 ], + [ 7.348945, 47.1917147 ], + [ 7.3499095, 47.1939756 ], + [ 7.3510463, 47.196199 ], + [ 7.3523523, 47.1983788 ], + [ 7.3538241, 47.200509 ], + [ 7.3554575, 47.2025837 ], + [ 7.3572482, 47.2045973 ], + [ 7.3591912, 47.2065442 ], + [ 7.3612812, 47.2084192 ], + [ 7.3635124, 47.210217 ], + [ 7.3658788, 47.2119327 ], + [ 7.3683739, 47.2135615 ], + [ 7.3709909, 47.2150992 ], + [ 7.3737224999999995, 47.2165413 ], + [ 7.3765613, 47.217884 ], + [ 7.3794995, 47.2191236 ], + [ 7.382529, 47.2202566 ], + [ 7.3856415, 47.2212799 ], + [ 7.3961007, 47.2244907 ], + [ 7.399288, 47.2254012 ], + [ 7.402541, 47.2261968 ], + [ 7.4058508, 47.2268753 ], + [ 7.4092082, 47.2274347 ], + [ 7.4126041, 47.2278736 ], + [ 7.4160291, 47.2281907 ], + [ 7.4194738000000005, 47.2283851 ], + [ 7.4229287, 47.2284564 ], + [ 7.4263843, 47.2284043 ], + [ 7.4298312, 47.2282289 ], + [ 7.4332599, 47.2279308 ], + [ 7.4366609, 47.2275108 ], + [ 7.4400249, 47.2269701 ], + [ 7.4433427, 47.22631 ], + [ 7.4466051, 47.2255325 ], + [ 7.4498032, 47.2246396 ], + [ 7.4529282, 47.2236338 ], + [ 7.4559716, 47.2225179 ], + [ 7.4589248999999995, 47.221295 ], + [ 7.4617801, 47.2199684 ], + [ 7.4645293, 47.2185417 ], + [ 7.467165, 47.2170189 ], + [ 7.46968, 47.2154041 ], + [ 7.4720673, 47.2137018 ], + [ 7.4743205, 47.2119166 ], + [ 7.4764333, 47.2100536 ], + [ 7.4783999, 47.2081176 ], + [ 7.4802151, 47.2061142 ], + [ 7.4818738, 47.2040488 ], + [ 7.4833714, 47.2019269 ], + [ 7.484704, 47.1997546 ], + [ 7.4858678, 47.1975377 ], + [ 7.4868597, 47.1952823 ], + [ 7.487677, 47.1929947 ], + [ 7.4883175, 47.1906809 ], + [ 7.4887794, 47.1883475 ], + [ 7.4890615, 47.1860009 ], + [ 7.4891631, 47.1836473 ], + [ 7.4890837999999995, 47.1812934 ], + [ 7.488824, 47.1789455 ], + [ 7.4883843, 47.1766102 ], + [ 7.487766, 47.1742937 ], + [ 7.4869709, 47.1720024 ], + [ 7.486001, 47.1697426 ], + [ 7.4848592, 47.1675206 ], + [ 7.4835485, 47.1653423 ], + [ 7.4820725, 47.1632138 ], + [ 7.4804354, 47.1611408 ], + [ 7.4786415, 47.1591291 ], + [ 7.4766959, 47.1571842 ], + [ 7.4746039, 47.1553113 ], + [ 7.4723711999999995, 47.1535156 ], + [ 7.470004, 47.1518021 ], + [ 7.4675086, 47.1501754 ], + [ 7.4648921, 47.1486399 ], + [ 7.4621615, 47.1471999 ], + [ 7.4593243, 47.1458593 ], + [ 7.4563883, 47.1446218 ], + [ 7.4533615, 47.1434907 ], + [ 7.4502521999999995, 47.1424692 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZG001", + "country" : "CHE", + "name" : [ + { + "text" : "LSZG Grenchen", + "lang" : "de-CH" + }, + { + "text" : "LSZG Grenchen", + "lang" : "fr-CH" + }, + { + "text" : "LSZG Grenchen", + "lang" : "it-CH" + }, + { + "text" : "LSZG Grenchen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Special Flight Office (SFO)", + "lang" : "de-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "fr-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "it-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "en-GB" + } + ], + "siteURL" : "https://skyguide.ch/services/special-flights", + "email" : "specialflight@skyguide.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.3840603, 47.4123644 ], + [ 7.3830346, 47.4124565 ], + [ 7.3826048, 47.4124953 ], + [ 7.3821604, 47.4125354 ], + [ 7.3817924, 47.4125706 ], + [ 7.3794777, 47.4127818 ], + [ 7.3787486, 47.4129624 ], + [ 7.3784639, 47.4130336 ], + [ 7.3780274, 47.4131443 ], + [ 7.3778765, 47.4132149 ], + [ 7.377445, 47.4134168 ], + [ 7.3759516, 47.4141036 ], + [ 7.3759601, 47.4141026 ], + [ 7.3765913, 47.4140274 ], + [ 7.3773269, 47.4140794 ], + [ 7.3775977, 47.414073 ], + [ 7.3778517, 47.414011 ], + [ 7.3778755, 47.4140096 ], + [ 7.3784316, 47.4139776 ], + [ 7.3785897, 47.4139469 ], + [ 7.3791281, 47.413842700000004 ], + [ 7.3795676, 47.4137766 ], + [ 7.3802332, 47.4137136 ], + [ 7.3806934, 47.4134958 ], + [ 7.3807349, 47.4134869 ], + [ 7.3810599, 47.4134171 ], + [ 7.3815337, 47.4133136 ], + [ 7.3816829, 47.4133044 ], + [ 7.3818016, 47.413297 ], + [ 7.3822672, 47.4133055 ], + [ 7.3825859, 47.4133335 ], + [ 7.3825883, 47.4133338 ], + [ 7.3830712, 47.4133775 ], + [ 7.3836186999999995, 47.4134257 ], + [ 7.3836198, 47.4134258 ], + [ 7.3843617, 47.4135011 ], + [ 7.3844542, 47.4135058 ], + [ 7.3849952, 47.4135328 ], + [ 7.3856121, 47.4136197 ], + [ 7.3856228999999995, 47.4136615 ], + [ 7.385676, 47.4138668 ], + [ 7.3864347, 47.4138105 ], + [ 7.386907, 47.4137994 ], + [ 7.3872579, 47.4138692 ], + [ 7.3876043, 47.4140505 ], + [ 7.3880431, 47.4140103 ], + [ 7.3882759, 47.413956 ], + [ 7.3884225, 47.4138984 ], + [ 7.388439, 47.4138943 ], + [ 7.3884904, 47.4138816 ], + [ 7.3890241, 47.4137498 ], + [ 7.3894952, 47.4136466 ], + [ 7.3898839, 47.4136121 ], + [ 7.3901718, 47.4135583 ], + [ 7.3905922, 47.4135199 ], + [ 7.390909, 47.4134778 ], + [ 7.3912209, 47.4134953 ], + [ 7.3915786, 47.4134941 ], + [ 7.3919285, 47.4133349 ], + [ 7.3924035, 47.4133091 ], + [ 7.3926223, 47.4132582 ], + [ 7.3928578, 47.4132201 ], + [ 7.3933497, 47.4131181 ], + [ 7.3935313, 47.4130804 ], + [ 7.3938279, 47.4130399 ], + [ 7.3941013, 47.413183599999996 ], + [ 7.3941872, 47.4132074 ], + [ 7.3945129, 47.4131767 ], + [ 7.3950183, 47.413129 ], + [ 7.3950622, 47.4131249 ], + [ 7.3952516, 47.4129673 ], + [ 7.3952619, 47.4129588 ], + [ 7.3958501, 47.4129694 ], + [ 7.3958778, 47.4129699 ], + [ 7.3959819, 47.4128588 ], + [ 7.3963778, 47.4128753 ], + [ 7.3966805, 47.4128073 ], + [ 7.3968126, 47.4128394 ], + [ 7.3969526, 47.4128734 ], + [ 7.3977098, 47.4127118 ], + [ 7.398236, 47.4125597 ], + [ 7.3984783, 47.4125094 ], + [ 7.3985092, 47.4125028 ], + [ 7.3985742, 47.4124891 ], + [ 7.3985944, 47.4124848 ], + [ 7.3985836, 47.4124665 ], + [ 7.3985001, 47.4122463 ], + [ 7.3983772, 47.4120777 ], + [ 7.3982729, 47.4118884 ], + [ 7.3981723, 47.4116652 ], + [ 7.3980953, 47.4114257 ], + [ 7.3980902, 47.4114098 ], + [ 7.3979756, 47.4112454 ], + [ 7.3977558, 47.4113153 ], + [ 7.3974384, 47.4113903 ], + [ 7.3968618, 47.4115374 ], + [ 7.3965608, 47.4115921 ], + [ 7.3963121, 47.4116407 ], + [ 7.3955583, 47.4117749 ], + [ 7.3951439, 47.4118317 ], + [ 7.3947491, 47.4118733 ], + [ 7.3943229, 47.4118851 ], + [ 7.3941323, 47.4119076 ], + [ 7.3940367, 47.4119403 ], + [ 7.3936382, 47.4119953 ], + [ 7.3932385, 47.4120168 ], + [ 7.3928246, 47.4120353 ], + [ 7.39243, 47.4120398 ], + [ 7.3922726, 47.4120317 ], + [ 7.3922366, 47.4119732 ], + [ 7.392203, 47.4119186 ], + [ 7.3921368, 47.4119338 ], + [ 7.3919669, 47.4119728 ], + [ 7.3912833, 47.41215 ], + [ 7.3912541, 47.4121575 ], + [ 7.3911335, 47.4121888 ], + [ 7.39111, 47.4121949 ], + [ 7.3911035, 47.4121841 ], + [ 7.3910968, 47.4121727 ], + [ 7.3910882, 47.4121582 ], + [ 7.3909329, 47.4122265 ], + [ 7.3906267, 47.4123515 ], + [ 7.3903478, 47.4124542 ], + [ 7.3902751, 47.4124745 ], + [ 7.3901435, 47.4125112 ], + [ 7.3898783, 47.412562199999996 ], + [ 7.3896415, 47.4125886 ], + [ 7.3889074, 47.4125801 ], + [ 7.3889055, 47.4125803 ], + [ 7.3889036, 47.4125806 ], + [ 7.3887272, 47.4126089 ], + [ 7.3886486, 47.4126089 ], + [ 7.3886461, 47.4126089 ], + [ 7.388469, 47.4126181 ], + [ 7.3884475, 47.4126192 ], + [ 7.3884451, 47.4126194 ], + [ 7.3884426, 47.4126197 ], + [ 7.3884402, 47.4126202 ], + [ 7.3884378, 47.4126207 ], + [ 7.3884356, 47.4126214 ], + [ 7.3884313, 47.4126228 ], + [ 7.388392, 47.4126358 ], + [ 7.3883164, 47.4126607 ], + [ 7.388315, 47.4126612 ], + [ 7.3883136, 47.4126618 ], + [ 7.3880692, 47.4127632 ], + [ 7.3880674, 47.4127641 ], + [ 7.3880656, 47.412765 ], + [ 7.3879044, 47.4128536 ], + [ 7.3876643, 47.4129711 ], + [ 7.3874496, 47.4130674 ], + [ 7.3872531, 47.413134 ], + [ 7.3871329, 47.4131539 ], + [ 7.3871234, 47.4131554 ], + [ 7.3869688, 47.4131534 ], + [ 7.3867876, 47.4131291 ], + [ 7.3866795, 47.4131041 ], + [ 7.3866462, 47.4130963 ], + [ 7.3866453, 47.4130962 ], + [ 7.3864285, 47.4130504 ], + [ 7.386426, 47.41305 ], + [ 7.3864235, 47.4130497 ], + [ 7.386421, 47.4130495 ], + [ 7.3863689, 47.413047 ], + [ 7.3862469, 47.4130411 ], + [ 7.3862448, 47.4130411 ], + [ 7.3862426, 47.4130411 ], + [ 7.3862404, 47.4130412 ], + [ 7.3860837, 47.4130546 ], + [ 7.3860281, 47.4130594 ], + [ 7.3858692, 47.4130433 ], + [ 7.385697, 47.4130151 ], + [ 7.3856337, 47.4129942 ], + [ 7.3855109, 47.4129538 ], + [ 7.3855103, 47.4129537 ], + [ 7.3853061, 47.4128894 ], + [ 7.3850613, 47.4128088 ], + [ 7.3849069, 47.4127509 ], + [ 7.3848682, 47.4127364 ], + [ 7.3848681, 47.4127363 ], + [ 7.3847444, 47.4126907 ], + [ 7.3840603, 47.4123644 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr014", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Chlummen", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Chlummen", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Chlummen", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Chlummen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4182848, 46.9715656 ], + [ 7.4184937, 46.97091 ], + [ 7.4184329, 46.9709219 ], + [ 7.4183549, 46.9709219 ], + [ 7.4180067, 46.970886 ], + [ 7.4176584, 46.9708383 ], + [ 7.4172749, 46.9708263 ], + [ 7.4171353, 46.9707905 ], + [ 7.4170483, 46.9707309 ], + [ 7.416944, 46.970707 ], + [ 7.4167, 46.970707 ], + [ 7.416282, 46.9706949 ], + [ 7.4158121999999995, 46.9706472 ], + [ 7.4154985, 46.9705636 ], + [ 7.4151331, 46.9705159 ], + [ 7.4148719, 46.9704563 ], + [ 7.4144366999999995, 46.970337 ], + [ 7.4140885, 46.9702295 ], + [ 7.4136352, 46.9701222 ], + [ 7.4133568, 46.9700149 ], + [ 7.413287, 46.9699314 ], + [ 7.4132526, 46.9698718 ], + [ 7.4130956999999995, 46.9698717 ], + [ 7.4129914, 46.9697763 ], + [ 7.4128001, 46.9697167 ], + [ 7.4126605, 46.969669 ], + [ 7.4124692, 46.9695974 ], + [ 7.4123994, 46.9695617 ], + [ 7.4121555, 46.9694185 ], + [ 7.4117376, 46.9692992 ], + [ 7.411529, 46.9692038 ], + [ 7.4114246999999995, 46.9691561 ], + [ 7.4112153, 46.9691203 ], + [ 7.4110585, 46.9690606 ], + [ 7.4109714, 46.9690248 ], + [ 7.4107801, 46.9690128 ], + [ 7.4106233, 46.9689175 ], + [ 7.4104665, 46.968834 ], + [ 7.4102924, 46.9688101 ], + [ 7.410101, 46.9687504 ], + [ 7.4099614, 46.9687147 ], + [ 7.4097529, 46.9686431 ], + [ 7.4092651, 46.9685357 ], + [ 7.4090229, 46.9684758 ], + [ 7.4087083, 46.9684401 ], + [ 7.4084119, 46.9684044 ], + [ 7.4082903, 46.9684281 ], + [ 7.4080989, 46.9684519 ], + [ 7.4078551, 46.9684042 ], + [ 7.4076456, 46.9683564 ], + [ 7.407263, 46.9683086 ], + [ 7.4068622, 46.9682966 ], + [ 7.4064795, 46.9682845 ], + [ 7.406183, 46.9682487 ], + [ 7.4058521, 46.9682129 ], + [ 7.4053125, 46.9682365 ], + [ 7.4048074, 46.968284 ], + [ 7.4045806, 46.9683555 ], + [ 7.4044065, 46.9684389 ], + [ 7.4042151, 46.9684388 ], + [ 7.4037971, 46.9684387 ], + [ 7.4033963, 46.9684625 ], + [ 7.403048, 46.9685339 ], + [ 7.4026998, 46.9685695 ], + [ 7.4023688, 46.9686409 ], + [ 7.4020032, 46.9687004 ], + [ 7.4015851999999995, 46.9687003 ], + [ 7.401237, 46.9686882 ], + [ 7.4009758, 46.9686762 ], + [ 7.4007147, 46.9686761 ], + [ 7.400419, 46.9686642 ], + [ 7.4001225999999996, 46.9686163 ], + [ 7.3998615, 46.9685328 ], + [ 7.3994961, 46.9684492 ], + [ 7.3994632, 46.9684418 ], + [ 7.3993392, 46.9684015 ], + [ 7.3988868, 46.9682702 ], + [ 7.3983818, 46.968115 ], + [ 7.3980337, 46.9679718 ], + [ 7.3980157, 46.9679599 ], + [ 7.3975805, 46.9677929 ], + [ 7.3973367, 46.9676855 ], + [ 7.3970584, 46.9675185 ], + [ 7.3967974, 46.9673515 ], + [ 7.3964969, 46.9671798 ], + [ 7.3962754, 46.9669579 ], + [ 7.3961539, 46.9668268 ], + [ 7.3959799, 46.9667432 ], + [ 7.3957534, 46.9665763 ], + [ 7.3955966, 46.9664808 ], + [ 7.395301, 46.9663734 ], + [ 7.3950917, 46.9662899 ], + [ 7.3950596, 46.9662837 ], + [ 7.3950399, 46.9663018 ], + [ 7.3945866, 46.966254 ], + [ 7.394204, 46.9661823 ], + [ 7.3937507, 46.9661463 ], + [ 7.3928974, 46.9661459 ], + [ 7.3925146999999996, 46.9661339 ], + [ 7.391783, 46.9661693 ], + [ 7.3914175, 46.9661692 ], + [ 7.3910865, 46.9661929 ], + [ 7.3906513, 46.9662165 ], + [ 7.390303, 46.9662164 ], + [ 7.3899549, 46.9661805 ], + [ 7.3896584, 46.9661445 ], + [ 7.389293, 46.966120599999996 ], + [ 7.3889621, 46.9660966 ], + [ 7.3883182, 46.9660606 ], + [ 7.3877262, 46.9660245 ], + [ 7.3870117, 46.9659885 ], + [ 7.3869206, 46.9659727 ], + [ 7.3869206, 46.9659881 ], + [ 7.386707, 46.9659772 ], + [ 7.3866988, 46.9659644 ], + [ 7.3866463, 46.9659644 ], + [ 7.3863326, 46.9659523 ], + [ 7.3860714, 46.9659522 ], + [ 7.3856715, 46.9659639 ], + [ 7.385375, 46.9659877 ], + [ 7.3850966, 46.9660233 ], + [ 7.3847656, 46.9659874 ], + [ 7.3842959, 46.9659276 ], + [ 7.3838951999999995, 46.9658678 ], + [ 7.3837039, 46.9658677 ], + [ 7.3835471, 46.9658198 ], + [ 7.382938, 46.9655573 ], + [ 7.3825029, 46.9653783 ], + [ 7.3819628, 46.9651038 ], + [ 7.3817543, 46.9650321 ], + [ 7.381563, 46.9650202 ], + [ 7.3814234, 46.9649724 ], + [ 7.381284, 46.9648055 ], + [ 7.3811971, 46.9646863 ], + [ 7.3809018, 46.9643523 ], + [ 7.3806238, 46.9640303 ], + [ 7.3803622, 46.9636725 ], + [ 7.3801712, 46.9633505 ], + [ 7.379963, 46.9629689 ], + [ 7.379859, 46.9627066 ], + [ 7.3797544, 46.9623014 ], + [ 7.3797546, 46.9621224 ], + [ 7.3797548, 46.961908 ], + [ 7.3796163, 46.9616217 ], + [ 7.3793727, 46.9613832 ], + [ 7.3790593, 46.9611804 ], + [ 7.3789469, 46.9610714 ], + [ 7.3789108, 46.9610507 ], + [ 7.3786202, 46.9609387 ], + [ 7.3784759, 46.9607521 ], + [ 7.3782036, 46.9604162 ], + [ 7.3780044, 46.9601674 ], + [ 7.3778953, 46.9600679 ], + [ 7.3774956, 46.959906 ], + [ 7.37726, 46.9598065 ], + [ 7.3767149, 46.9596819 ], + [ 7.3764062, 46.9596319 ], + [ 7.3761887, 46.9595572 ], + [ 7.3759892, 46.9595322 ], + [ 7.3757708, 46.9595072 ], + [ 7.3755352, 46.9594698 ], + [ 7.374972, 46.9594074 ], + [ 7.3743364, 46.9593945 ], + [ 7.3739003, 46.9594191 ], + [ 7.3736105, 46.9594438 ], + [ 7.3733377, 46.9595307 ], + [ 7.3728112, 46.9596796 ], + [ 7.3724834999999995, 46.9597541 ], + [ 7.3722478, 46.9597663 ], + [ 7.3719208, 46.9599154 ], + [ 7.3714484, 46.9600642 ], + [ 7.3710302, 46.9602505 ], + [ 7.3707393, 46.9604244 ], + [ 7.3703942, 46.9605982 ], + [ 7.3701583, 46.960797 ], + [ 7.3700489, 46.960909 ], + [ 7.3700481, 46.9609275 ], + [ 7.369766, 46.961243 ], + [ 7.369756, 46.9613887 ], + [ 7.3696671, 46.9615577 ], + [ 7.3695017, 46.9617762 ], + [ 7.3692123, 46.9620424 ], + [ 7.3691555, 46.9621439 ], + [ 7.3691218, 46.9621726 ], + [ 7.3690304, 46.9623692 ], + [ 7.3689745, 46.96247 ], + [ 7.3688478, 46.9626115 ], + [ 7.368684, 46.962947 ], + [ 7.368502, 46.9632951 ], + [ 7.3682109, 46.9636306 ], + [ 7.3678114, 46.9639039 ], + [ 7.3674291, 46.9642269 ], + [ 7.3671389, 46.9644754 ], + [ 7.366764, 46.9647566 ], + [ 7.3666818, 46.9648616 ], + [ 7.3664236, 46.9651205 ], + [ 7.3663577, 46.9652733 ], + [ 7.3660552, 46.9654244 ], + [ 7.3659731, 46.965436 ], + [ 7.3657257, 46.965622 ], + [ 7.3655835, 46.9656444 ], + [ 7.3655565, 46.9656389 ], + [ 7.3651572, 46.9657299 ], + [ 7.3648483, 46.9658416 ], + [ 7.3646486, 46.9659533 ], + [ 7.3645032, 46.9659533 ], + [ 7.3641583, 46.9659405 ], + [ 7.3637223, 46.9658658 ], + [ 7.3633774, 46.965853 ], + [ 7.3631229, 46.9658156 ], + [ 7.3627963, 46.9656661 ], + [ 7.3625239, 46.9654671 ], + [ 7.3621973, 46.9652804 ], + [ 7.3617804, 46.9651184 ], + [ 7.3611992, 46.9649688 ], + [ 7.3605637, 46.9648192 ], + [ 7.3598191, 46.964682 ], + [ 7.3590563, 46.9645945 ], + [ 7.3590927, 46.9650171 ], + [ 7.3590365, 46.9652448 ], + [ 7.3590357, 46.9657527 ], + [ 7.3589908, 46.9666618 ], + [ 7.3593127, 46.9666774 ], + [ 7.3594612999999995, 46.9667225 ], + [ 7.3595443, 46.9667209 ], + [ 7.3597618, 46.9667707 ], + [ 7.360252, 46.966858 ], + [ 7.3608332, 46.9669828 ], + [ 7.3612141, 46.9670949 ], + [ 7.3617223, 46.9672196 ], + [ 7.3622305, 46.9673816 ], + [ 7.3626302, 46.9674937 ], + [ 7.3629209, 46.9675437 ], + [ 7.3632296, 46.9676185 ], + [ 7.3637198, 46.9677058 ], + [ 7.3641007, 46.9677558 ], + [ 7.3645729, 46.9678306 ], + [ 7.3650632, 46.9678434 ], + [ 7.3653908999999995, 46.9678311 ], + [ 7.365772, 46.9677692 ], + [ 7.3660628, 46.9677571 ], + [ 7.3664258, 46.9677573 ], + [ 7.3668619, 46.9677078 ], + [ 7.3675337, 46.9676957 ], + [ 7.3681152, 46.9676712 ], + [ 7.3687871, 46.9676344 ], + [ 7.3694591, 46.9674732 ], + [ 7.3698592, 46.967349 ], + [ 7.3704951, 46.9671754 ], + [ 7.3706948, 46.9670637 ], + [ 7.3711313, 46.9666909 ], + [ 7.371277, 46.9664673 ], + [ 7.3714045, 46.9662932 ], + [ 7.3716042, 46.9661317 ], + [ 7.3715867, 46.9657463 ], + [ 7.3715691, 46.9653733 ], + [ 7.3714964, 46.9650127 ], + [ 7.371431, 46.9647995 ], + [ 7.3713945, 46.9643949 ], + [ 7.3713774, 46.9643563 ], + [ 7.3712788, 46.9643221 ], + [ 7.3712789, 46.9642483 ], + [ 7.3713455, 46.9642142 ], + [ 7.371339, 46.9641467 ], + [ 7.3712752, 46.9639607 ], + [ 7.371226, 46.9639184 ], + [ 7.3710258, 46.9637815 ], + [ 7.3708445, 46.9636571 ], + [ 7.3707543, 46.9634829 ], + [ 7.3706995, 46.9633461 ], + [ 7.3706818, 46.9630229 ], + [ 7.3706821, 46.9627991 ], + [ 7.3708098, 46.9624883 ], + [ 7.3709737, 46.962103 ], + [ 7.3711916, 46.9618669 ], + [ 7.3713922, 46.9616681 ], + [ 7.3716101, 46.9614692 ], + [ 7.371846, 46.9612954 ], + [ 7.3720465, 46.9611711 ], + [ 7.3722643, 46.961047 ], + [ 7.372519, 46.9609228 ], + [ 7.3729733, 46.9607365 ], + [ 7.3734087, 46.9606373 ], + [ 7.3737725, 46.9605754 ], + [ 7.3741897, 46.9605258 ], + [ 7.3745165, 46.9605011 ], + [ 7.3748984, 46.9605014 ], + [ 7.3752974, 46.9605265 ], + [ 7.37557, 46.9605764 ], + [ 7.3758787, 46.9606512 ], + [ 7.3761693, 46.9607509 ], + [ 7.3764598, 46.9608504 ], + [ 7.3768046, 46.9609624 ], + [ 7.377059, 46.9611118 ], + [ 7.3772945, 46.9612736 ], + [ 7.3774577, 46.9613981 ], + [ 7.377639, 46.9615349 ], + [ 7.3777481, 46.9616469 ], + [ 7.3778933, 46.9618086 ], + [ 7.3780384, 46.9619952 ], + [ 7.3781467, 46.962132 ], + [ 7.3782737, 46.9623434 ], + [ 7.3783533, 46.9624441 ], + [ 7.3784311, 46.9626225 ], + [ 7.3785349, 46.9630158 ], + [ 7.3786217, 46.9632424 ], + [ 7.378674, 46.9634808 ], + [ 7.3789519, 46.9638983 ], + [ 7.379178, 46.9643871 ], + [ 7.379369, 46.9647686 ], + [ 7.3795428, 46.9650072 ], + [ 7.3796821999999995, 46.9651861 ], + [ 7.3799077, 46.9654604 ], + [ 7.3803255, 46.9657349 ], + [ 7.3804649, 46.9658422 ], + [ 7.3807432, 46.9659973 ], + [ 7.381161, 46.9661883 ], + [ 7.3814918, 46.9663076 ], + [ 7.3815329, 46.966306 ], + [ 7.3816306, 46.9663554 ], + [ 7.3819968, 46.966439 ], + [ 7.3823276, 46.9665345 ], + [ 7.382693, 46.9665943 ], + [ 7.3829714, 46.9666422 ], + [ 7.3833195, 46.9666661 ], + [ 7.3836677, 46.9667139 ], + [ 7.3840159, 46.966738 ], + [ 7.3843468, 46.966762 ], + [ 7.384713, 46.9668218 ], + [ 7.3849216, 46.9668457 ], + [ 7.3850784, 46.9668696 ], + [ 7.3855834, 46.9669771 ], + [ 7.3858273, 46.9670607 ], + [ 7.3862442999999995, 46.9671683 ], + [ 7.3864537, 46.967204100000004 ], + [ 7.3867494, 46.9672042 ], + [ 7.3871157, 46.9671925 ], + [ 7.3876027, 46.9671689 ], + [ 7.3882301, 46.9671692 ], + [ 7.3890136, 46.9671576 ], + [ 7.3898842, 46.9671341 ], + [ 7.3905108, 46.9671344 ], + [ 7.3911555, 46.9671227 ], + [ 7.3916951, 46.9671588 ], + [ 7.3921656, 46.9672186 ], + [ 7.3925663, 46.9672544 ], + [ 7.392949, 46.9673142 ], + [ 7.3933841, 46.9674335 ], + [ 7.3938366, 46.9675411 ], + [ 7.3942898, 46.9677081 ], + [ 7.3946724, 46.9678275 ], + [ 7.3949688, 46.967935 ], + [ 7.3950344999999995, 46.9679575 ], + [ 7.3951354, 46.9680047 ], + [ 7.3954877, 46.9681066 ], + [ 7.3957282, 46.9682245 ], + [ 7.3958029, 46.9682356 ], + [ 7.3958218, 46.9682452 ], + [ 7.3961699, 46.9684122 ], + [ 7.3966051, 46.9685793 ], + [ 7.3968136, 46.9686509 ], + [ 7.3973539, 46.9688538 ], + [ 7.3976494, 46.968985 ], + [ 7.3978407, 46.9690565 ], + [ 7.3980328, 46.969152 ], + [ 7.3983457, 46.9692356 ], + [ 7.3986421, 46.9693549 ], + [ 7.398973, 46.9693789 ], + [ 7.3991471, 46.9694027 ], + [ 7.3994953, 46.9694624 ], + [ 7.3996341, 46.9695221 ], + [ 7.3999477, 46.9696533 ], + [ 7.4001916, 46.9696773 ], + [ 7.4005924, 46.9696774 ], + [ 7.4008355, 46.9696656 ], + [ 7.4013587, 46.9696538 ], + [ 7.4016716, 46.969642 ], + [ 7.402038, 46.9695825 ], + [ 7.4023164, 46.9694992 ], + [ 7.4026475, 46.969392 ], + [ 7.4033958, 46.969273 ], + [ 7.4037621, 46.9691778 ], + [ 7.4040751, 46.9691302 ], + [ 7.4046155, 46.969035 ], + [ 7.4051026, 46.9689875 ], + [ 7.4055206, 46.9689638 ], + [ 7.4058171, 46.96894 ], + [ 7.4062352, 46.9689281 ], + [ 7.4068963, 46.9689642 ], + [ 7.4073668999999995, 46.9690119 ], + [ 7.4078547, 46.9690956 ], + [ 7.4085511, 46.9691792 ], + [ 7.4090898, 46.9692819 ], + [ 7.4096128, 46.969406 ], + [ 7.4099438, 46.9695015 ], + [ 7.4101877, 46.9695611 ], + [ 7.4107453, 46.9696685 ], + [ 7.4112495, 46.9698594 ], + [ 7.4114933, 46.9699905 ], + [ 7.4117372, 46.9700621 ], + [ 7.4119285, 46.9700622 ], + [ 7.4119811, 46.9701576 ], + [ 7.4120681, 46.970253 ], + [ 7.4121723, 46.9703365 ], + [ 7.4123645, 46.97042 ], + [ 7.4125033, 46.9704318 ], + [ 7.4127127, 46.9705154 ], + [ 7.4130781, 46.9706227 ], + [ 7.4133918, 46.9707659 ], + [ 7.4139141, 46.9708256 ], + [ 7.4143321, 46.9709091 ], + [ 7.4146278, 46.9709807 ], + [ 7.4148889, 46.9710761 ], + [ 7.4150457, 46.9711357 ], + [ 7.4151853, 46.9711955 ], + [ 7.4153069, 46.9712073 ], + [ 7.4156025, 46.9712552 ], + [ 7.4158645, 46.9712909 ], + [ 7.4161076, 46.9713149 ], + [ 7.4162645, 46.9713386 ], + [ 7.4164739, 46.9713626 ], + [ 7.4167351, 46.9714342 ], + [ 7.4168918999999995, 46.9714699 ], + [ 7.4170307, 46.9714819 ], + [ 7.4171703, 46.9715295 ], + [ 7.4173091, 46.9715535 ], + [ 7.417484, 46.9715774 ], + [ 7.4177272, 46.9715774 ], + [ 7.4180064, 46.9715775 ], + [ 7.4182848, 46.9715656 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "WZV0037", + "country" : "CHE", + "name" : [ + { + "text" : "Wasser- und Zugvogelreservat Wohlensee", + "lang" : "de-CH" + }, + { + "text" : "Réserve d'oiseaux d'eau et de migrateurs Wohlensee", + "lang" : "fr-CH" + }, + { + "text" : "Riserva di uccelli acquatici e migratori Wohlensee", + "lang" : "it-CH" + }, + { + "text" : "Water Bird and Migratory Bird Reserves Wohlensee", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6199773, 47.232715 ], + [ 7.6199714, 47.2325738 ], + [ 7.6199546, 47.232433 ], + [ 7.6199271, 47.232293 ], + [ 7.6198888, 47.2321541 ], + [ 7.6198399, 47.2320168 ], + [ 7.6197806, 47.2318815 ], + [ 7.6197109, 47.2317484 ], + [ 7.6196311, 47.231618 ], + [ 7.6195414, 47.2314906 ], + [ 7.619442, 47.2313666 ], + [ 7.6193332, 47.2312464 ], + [ 7.6192153000000005, 47.2311301 ], + [ 7.6190887, 47.2310182 ], + [ 7.6189537, 47.230911 ], + [ 7.6188106, 47.2308088 ], + [ 7.6186598, 47.2307118 ], + [ 7.6185018, 47.2306203 ], + [ 7.6183369, 47.2305345 ], + [ 7.6181658, 47.2304548 ], + [ 7.6179887, 47.2303812 ], + [ 7.6178062, 47.2303141 ], + [ 7.6176188, 47.2302536 ], + [ 7.617427, 47.2301998 ], + [ 7.6172313, 47.2301529 ], + [ 7.6170324, 47.2301131 ], + [ 7.6168306, 47.2300805 ], + [ 7.6166266, 47.230055 ], + [ 7.6164209, 47.2300369 ], + [ 7.6162141, 47.2300261 ], + [ 7.6160068, 47.2300228 ], + [ 7.6157994, 47.2300268 ], + [ 7.6155927, 47.2300382 ], + [ 7.6153872, 47.2300569 ], + [ 7.6151833, 47.230083 ], + [ 7.6149818, 47.2301163 ], + [ 7.6147831, 47.2301567 ], + [ 7.6145876999999995, 47.2302042 ], + [ 7.6143963, 47.2302585 ], + [ 7.6142093, 47.2303196 ], + [ 7.6140272, 47.2303873 ], + [ 7.6138506, 47.2304614 ], + [ 7.6136800000000004, 47.2305417 ], + [ 7.6135157, 47.2306279 ], + [ 7.6133583, 47.2307199 ], + [ 7.6132082, 47.2308174 ], + [ 7.6130658, 47.23092 ], + [ 7.6129314, 47.2310277 ], + [ 7.6128055, 47.2311399 ], + [ 7.6126884, 47.2312565 ], + [ 7.6125804, 47.2313772 ], + [ 7.6124819, 47.2315015 ], + [ 7.612393, 47.2316291 ], + [ 7.6123141, 47.2317597 ], + [ 7.6122453, 47.231893 ], + [ 7.6121868, 47.2320285 ], + [ 7.6121388, 47.232166 ], + [ 7.6121015, 47.232305 ], + [ 7.6120749, 47.2324451 ], + [ 7.612059, 47.2325859 ], + [ 7.6120541, 47.2327271 ], + [ 7.6120599, 47.2328684 ], + [ 7.6120767, 47.2330092 ], + [ 7.6121042, 47.2331492 ], + [ 7.6121425, 47.233288 ], + [ 7.6121913, 47.2334253 ], + [ 7.6122507, 47.2335607 ], + [ 7.6123203, 47.2336938 ], + [ 7.6124001, 47.2338242 ], + [ 7.6124898, 47.2339515 ], + [ 7.6125892, 47.2340755 ], + [ 7.612698, 47.2341958 ], + [ 7.6128158, 47.2343121 ], + [ 7.6129424, 47.234424 ], + [ 7.6130775, 47.2345312 ], + [ 7.6132206, 47.2346334 ], + [ 7.6133714, 47.2347305 ], + [ 7.6135294, 47.234822 ], + [ 7.6136942, 47.2349077 ], + [ 7.6138654, 47.2349875 ], + [ 7.6140425, 47.235061 ], + [ 7.614225, 47.2351282 ], + [ 7.6144124, 47.2351887 ], + [ 7.6146042, 47.2352425 ], + [ 7.6147998999999995, 47.2352893 ], + [ 7.6149989, 47.2353291 ], + [ 7.6152007, 47.2353618 ], + [ 7.6154047, 47.2353873 ], + [ 7.6156104, 47.2354054 ], + [ 7.6158172, 47.2354161 ], + [ 7.6160246, 47.2354195 ], + [ 7.6162319, 47.2354155 ], + [ 7.6164387, 47.2354041 ], + [ 7.6166442, 47.2353854 ], + [ 7.6168481, 47.2353593 ], + [ 7.6170497, 47.235326 ], + [ 7.6172484, 47.2352856 ], + [ 7.6174438, 47.2352381 ], + [ 7.6176352, 47.2351838 ], + [ 7.6178222, 47.2351226 ], + [ 7.6180043, 47.235055 ], + [ 7.6181809, 47.2349809 ], + [ 7.6183516000000004, 47.2349006 ], + [ 7.6185158, 47.2348143 ], + [ 7.6186732, 47.2347223 ], + [ 7.6188234, 47.2346249 ], + [ 7.6189658, 47.2345222 ], + [ 7.6191001, 47.2344145 ], + [ 7.619226, 47.2343023 ], + [ 7.6193431, 47.2341856 ], + [ 7.6194511, 47.234065 ], + [ 7.6195496, 47.2339407 ], + [ 7.6196385, 47.2338131 ], + [ 7.6197174, 47.2336824 ], + [ 7.6197862, 47.2335491 ], + [ 7.6198447, 47.2334136 ], + [ 7.6198926, 47.2332762 ], + [ 7.6199299, 47.2331372 ], + [ 7.6199565, 47.2329971 ], + [ 7.6199723, 47.2328562 ], + [ 7.6199773, 47.232715 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0038", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Flumenthal", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Flumenthal", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Flumenthal", + "lang" : "it-CH" + }, + { + "text" : "Substation Flumenthal", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7357151, 47.5064242 ], + [ 7.7357778, 47.506408 ], + [ 7.7359561, 47.5064155 ], + [ 7.7361783, 47.5064249 ], + [ 7.7365564, 47.5064409 ], + [ 7.7366277, 47.5064439 ], + [ 7.7368753, 47.5064242 ], + [ 7.7372333, 47.5063956 ], + [ 7.7373087, 47.5063889 ], + [ 7.7375275, 47.5063694 ], + [ 7.7381898, 47.5063532 ], + [ 7.7382485, 47.5063681 ], + [ 7.7383291, 47.5062756 ], + [ 7.7382627, 47.506297 ], + [ 7.7375259, 47.5063231 ], + [ 7.7372087, 47.5063563 ], + [ 7.7366131, 47.5063987 ], + [ 7.7365372, 47.506395499999996 ], + [ 7.7358058, 47.5063647 ], + [ 7.7357913, 47.5063584 ], + [ 7.7357457, 47.5063388 ], + [ 7.7357151, 47.5064242 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns165", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Rüschgraben", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Rüschgraben", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Rüschgraben", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Rüschgraben", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6597804, 47.4011435 ], + [ 7.660028, 47.40112 ], + [ 7.6605231, 47.4010732 ], + [ 7.6612731, 47.4010022 ], + [ 7.6615186, 47.4009764 ], + [ 7.661896, 47.4009384 ], + [ 7.6622819, 47.4008914 ], + [ 7.662611, 47.4008416 ], + [ 7.6629553, 47.4007611 ], + [ 7.6633602, 47.4006472 ], + [ 7.6636614, 47.400564 ], + [ 7.6641116, 47.4004221 ], + [ 7.6645955, 47.4002385 ], + [ 7.6648785, 47.4001289 ], + [ 7.6651083, 47.4000029 ], + [ 7.6653203, 47.3996383 ], + [ 7.6655959, 47.3991643 ], + [ 7.6656959, 47.3989922 ], + [ 7.6655801, 47.3989528 ], + [ 7.6651416999999995, 47.3988038 ], + [ 7.6648124, 47.398689 ], + [ 7.6644917, 47.398679 ], + [ 7.6639715, 47.3987403 ], + [ 7.6633759999999995, 47.3989337 ], + [ 7.6632247, 47.3990017 ], + [ 7.6629788, 47.3990745 ], + [ 7.6621898, 47.399244 ], + [ 7.6619757, 47.3992853 ], + [ 7.6617272, 47.3993622 ], + [ 7.6609362999999995, 47.3995895 ], + [ 7.6608331, 47.3996392 ], + [ 7.6608593, 47.3996637 ], + [ 7.6607218, 47.3997472 ], + [ 7.6605449, 47.3998577 ], + [ 7.6604477, 47.3999283 ], + [ 7.6604214, 47.399949 ], + [ 7.6602239, 47.4001083 ], + [ 7.6601023, 47.4002067 ], + [ 7.6600762, 47.4002312 ], + [ 7.6600536, 47.4002573 ], + [ 7.6600347, 47.4002847 ], + [ 7.6600195, 47.4003132 ], + [ 7.6600028, 47.4003605 ], + [ 7.6599967, 47.4003796 ], + [ 7.6599022, 47.4003612 ], + [ 7.659806, 47.4005927 ], + [ 7.6597127, 47.4009186 ], + [ 7.6597604, 47.4011114 ], + [ 7.6597804, 47.4011435 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns255", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Balsberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Balsberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Balsberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Balsberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4336067, 47.4097509 ], + [ 7.4337705, 47.4097438 ], + [ 7.4339683, 47.4097538 ], + [ 7.4340187, 47.4097567 ], + [ 7.4342631, 47.4097484 ], + [ 7.4346023, 47.4097023 ], + [ 7.434952, 47.4096255 ], + [ 7.4354101, 47.4095559 ], + [ 7.4356007, 47.4095426 ], + [ 7.436038, 47.4094774 ], + [ 7.4364596, 47.4094156 ], + [ 7.436682, 47.409379 ], + [ 7.4369083, 47.4093466 ], + [ 7.4370695, 47.4093516 ], + [ 7.4372856, 47.4093222 ], + [ 7.4374784, 47.4092746 ], + [ 7.437768, 47.409267 ], + [ 7.4380073, 47.4092527 ], + [ 7.4382717, 47.4092111 ], + [ 7.438421, 47.409145 ], + [ 7.4385085, 47.4090965 ], + [ 7.4386497, 47.409087 ], + [ 7.4387734, 47.4090712 ], + [ 7.4388973, 47.4090258 ], + [ 7.4389859, 47.4089693 ], + [ 7.4391139, 47.4089632 ], + [ 7.4393934999999995, 47.4089745 ], + [ 7.439617, 47.4089782 ], + [ 7.4398944, 47.4089692 ], + [ 7.4401876, 47.4089456 ], + [ 7.4404923, 47.408896 ], + [ 7.440741, 47.4088559 ], + [ 7.4409889, 47.4088102 ], + [ 7.4412542, 47.4087366 ], + [ 7.4414725, 47.4087079 ], + [ 7.441653, 47.4087228 ], + [ 7.4418296, 47.4086428 ], + [ 7.441983, 47.4085738 ], + [ 7.4422701, 47.4085903 ], + [ 7.4423016, 47.4085934 ], + [ 7.4423513, 47.4085981 ], + [ 7.4426234000000004, 47.4086254 ], + [ 7.4428336, 47.4086105 ], + [ 7.4432751, 47.4086219 ], + [ 7.4435946, 47.4086609 ], + [ 7.4438455, 47.4086501 ], + [ 7.4440191, 47.4086007 ], + [ 7.4442978, 47.4085395 ], + [ 7.4446742, 47.4084541 ], + [ 7.4446768, 47.4083765 ], + [ 7.4447456, 47.4083444 ], + [ 7.4450166, 47.4082585 ], + [ 7.4453921, 47.4082368 ], + [ 7.4458186, 47.4081716 ], + [ 7.4461078, 47.4081257 ], + [ 7.446405, 47.4081196 ], + [ 7.446823, 47.408129 ], + [ 7.4472417, 47.4080948 ], + [ 7.4476977, 47.4080676 ], + [ 7.4482344, 47.4080459 ], + [ 7.4486532, 47.4080184 ], + [ 7.4487268, 47.4080365 ], + [ 7.4501772, 47.4078045 ], + [ 7.4508366, 47.4077414 ], + [ 7.4512056, 47.4077082 ], + [ 7.4516802, 47.4076769 ], + [ 7.4521982, 47.4076211 ], + [ 7.4527252, 47.4075363 ], + [ 7.4532656, 47.4074389 ], + [ 7.4538492, 47.4072941 ], + [ 7.4542608999999995, 47.4071401 ], + [ 7.4546557, 47.4069612 ], + [ 7.4552506, 47.4066915 ], + [ 7.4558438, 47.4063842 ], + [ 7.4558122000000004, 47.4058829 ], + [ 7.4559058, 47.4058625 ], + [ 7.4560194, 47.4058443 ], + [ 7.4564479, 47.4057482 ], + [ 7.4565583, 47.4057229 ], + [ 7.4566792, 47.4057003 ], + [ 7.4568069999999995, 47.4056873 ], + [ 7.4569298, 47.4056959 ], + [ 7.4570449, 47.4057071 ], + [ 7.4571248, 47.4057046 ], + [ 7.4571806, 47.4056575 ], + [ 7.4572232, 47.4056001 ], + [ 7.4572272, 47.4055798 ], + [ 7.4572172, 47.4055483 ], + [ 7.457165, 47.4055144 ], + [ 7.4569364, 47.4053725 ], + [ 7.4567241, 47.4052421 ], + [ 7.4565291, 47.4051418 ], + [ 7.4565012, 47.4051338 ], + [ 7.4564443, 47.4051174 ], + [ 7.456366, 47.4051138 ], + [ 7.4561691, 47.405164 ], + [ 7.4559231, 47.4052245 ], + [ 7.4556859, 47.4052823 ], + [ 7.4553782, 47.4053376 ], + [ 7.4550947, 47.405384 ], + [ 7.454831, 47.4054157 ], + [ 7.4545528, 47.4054233 ], + [ 7.4543269, 47.40541 ], + [ 7.4540891, 47.4053792 ], + [ 7.4537991, 47.4053326 ], + [ 7.45351, 47.4052773 ], + [ 7.453276, 47.4052281 ], + [ 7.4531783, 47.4051985 ], + [ 7.453033, 47.4051527 ], + [ 7.4527898, 47.405073 ], + [ 7.4525392, 47.4049932 ], + [ 7.4523866, 47.4049574 ], + [ 7.4521238, 47.404899 ], + [ 7.4519898, 47.4048806 ], + [ 7.4518649, 47.4048463 ], + [ 7.4517488, 47.4048016 ], + [ 7.4516233, 47.4047737 ], + [ 7.4515004, 47.4047396 ], + [ 7.4513216, 47.4046899 ], + [ 7.4511735, 47.404653 ], + [ 7.4511723, 47.4046426 ], + [ 7.4509227, 47.404583099999996 ], + [ 7.4504718, 47.4044812 ], + [ 7.4501664, 47.4044188 ], + [ 7.4498904, 47.4043389 ], + [ 7.4495993, 47.4042487 ], + [ 7.4492858, 47.4041202 ], + [ 7.4490494, 47.4040122 ], + [ 7.4488101, 47.4038895 ], + [ 7.4486399, 47.4037557 ], + [ 7.4485432, 47.4036567 ], + [ 7.4484764, 47.4035736 ], + [ 7.4482458, 47.4035125 ], + [ 7.4480599, 47.4034349 ], + [ 7.4479799, 47.4034292 ], + [ 7.4478453, 47.4033584 ], + [ 7.4477409, 47.4032972 ], + [ 7.4475938, 47.4032372 ], + [ 7.4474535, 47.4031463 ], + [ 7.4470454, 47.4030143 ], + [ 7.4467943, 47.4032583 ], + [ 7.4467228, 47.403215 ], + [ 7.4467025, 47.4032025 ], + [ 7.4468388, 47.4030658 ], + [ 7.4468799, 47.4029855 ], + [ 7.4469695, 47.4028118 ], + [ 7.4471042, 47.4027046 ], + [ 7.4472866, 47.4026603 ], + [ 7.4474165, 47.4026762 ], + [ 7.4475625, 47.402729 ], + [ 7.4479053, 47.4026393 ], + [ 7.4481953, 47.4025542 ], + [ 7.4482135, 47.4025488 ], + [ 7.448222, 47.4025118 ], + [ 7.4482827, 47.4024011 ], + [ 7.4483912, 47.4022372 ], + [ 7.4484947, 47.4020716 ], + [ 7.4485922, 47.4019059 ], + [ 7.4486191, 47.4017466 ], + [ 7.4486026, 47.401581 ], + [ 7.4485609, 47.4014627 ], + [ 7.448467, 47.4013496 ], + [ 7.4483339, 47.4012406 ], + [ 7.4481664, 47.4011618 ], + [ 7.4479158, 47.4010841 ], + [ 7.4477147, 47.4010727 ], + [ 7.4474884, 47.4010767 ], + [ 7.4471578, 47.4011213 ], + [ 7.4469055, 47.4011807 ], + [ 7.4466809, 47.4012658 ], + [ 7.4464235, 47.4013709 ], + [ 7.4456984, 47.4017862 ], + [ 7.445378, 47.401965 ], + [ 7.4451542, 47.4020781 ], + [ 7.4447989, 47.4022796 ], + [ 7.4446553, 47.4023654 ], + [ 7.4444378, 47.4024791 ], + [ 7.4442268, 47.4025691 ], + [ 7.4441801, 47.4025834 ], + [ 7.4439919, 47.4026396 ], + [ 7.4437469, 47.4026745 ], + [ 7.443498, 47.4026919 ], + [ 7.4433723, 47.4026822 ], + [ 7.44337, 47.4027698 ], + [ 7.4433282, 47.4028557 ], + [ 7.4433071, 47.4028986 ], + [ 7.4432893, 47.4029343 ], + [ 7.4430886, 47.4029853 ], + [ 7.4429649, 47.4029753 ], + [ 7.4424311, 47.403567699999996 ], + [ 7.4420679, 47.403563 ], + [ 7.4419749, 47.4036684 ], + [ 7.4418635, 47.4037894 ], + [ 7.4417485, 47.4039239 ], + [ 7.4416902, 47.4040006 ], + [ 7.441638, 47.4040528 ], + [ 7.4415343, 47.4041422 ], + [ 7.4414949, 47.4041877 ], + [ 7.4415287, 47.4043757 ], + [ 7.4418173, 47.4047362 ], + [ 7.4418845, 47.4048252 ], + [ 7.4419061, 47.4048531 ], + [ 7.4420074, 47.4049274 ], + [ 7.4420036, 47.4049299 ], + [ 7.4421219, 47.4050257 ], + [ 7.4421353, 47.4050375 ], + [ 7.4422056, 47.4050994 ], + [ 7.4422499, 47.4051383 ], + [ 7.4420988, 47.4052555 ], + [ 7.441807, 47.4054607 ], + [ 7.441755, 47.4054956 ], + [ 7.4415881, 47.405624 ], + [ 7.4414099, 47.4057526 ], + [ 7.4412345, 47.405866 ], + [ 7.4411224, 47.4059386 ], + [ 7.4409939, 47.4060183 ], + [ 7.4409106, 47.4060756 ], + [ 7.4408735, 47.4061034 ], + [ 7.4408214, 47.4061425 ], + [ 7.4407708, 47.4061884 ], + [ 7.4406601, 47.4063222 ], + [ 7.4405895, 47.4064101 ], + [ 7.4405096, 47.4065043 ], + [ 7.4404333, 47.4065858 ], + [ 7.4405389, 47.4066831 ], + [ 7.4406143, 47.4067684 ], + [ 7.4407195, 47.4068876 ], + [ 7.4403186, 47.4069612 ], + [ 7.4401367, 47.4069916 ], + [ 7.4400895, 47.4070115 ], + [ 7.439923, 47.4071064 ], + [ 7.4398691, 47.4071378 ], + [ 7.4396958, 47.4071699 ], + [ 7.4395727, 47.4071927 ], + [ 7.4395637, 47.4071955 ], + [ 7.4394569, 47.4072617 ], + [ 7.4390222, 47.4074817 ], + [ 7.4388478, 47.4075924 ], + [ 7.4387908, 47.4076179 ], + [ 7.4386165, 47.4076807 ], + [ 7.4386014, 47.4076905 ], + [ 7.4385231, 47.4077237 ], + [ 7.4384879, 47.4077415 ], + [ 7.4384384, 47.407772 ], + [ 7.4384604, 47.4077957 ], + [ 7.4385099, 47.4078426 ], + [ 7.4384117, 47.4078621 ], + [ 7.4383061, 47.4078769 ], + [ 7.4381084, 47.4078757 ], + [ 7.437979, 47.4078765 ], + [ 7.4378269, 47.4078679 ], + [ 7.4376444, 47.407869 ], + [ 7.4375285, 47.4078739 ], + [ 7.437385, 47.4078986 ], + [ 7.4371175, 47.4079633 ], + [ 7.4369713, 47.407989 ], + [ 7.4366883, 47.4080407 ], + [ 7.4363863, 47.4080994 ], + [ 7.4361152, 47.4081424 ], + [ 7.4358969, 47.408184 ], + [ 7.4356825, 47.4082211 ], + [ 7.4354867, 47.4082657 ], + [ 7.4353021, 47.4083163 ], + [ 7.4351263, 47.4083757 ], + [ 7.4350284, 47.4084056 ], + [ 7.4349307, 47.4084236 ], + [ 7.4346316, 47.4084596 ], + [ 7.4343644, 47.4084946 ], + [ 7.4339732, 47.4085473 ], + [ 7.433631, 47.4085978 ], + [ 7.4333044, 47.408639 ], + [ 7.4330237, 47.408675 ], + [ 7.432944, 47.4087009 ], + [ 7.4328575, 47.4087197 ], + [ 7.4328112, 47.4087286 ], + [ 7.4327532, 47.4087321 ], + [ 7.432738, 47.4087214 ], + [ 7.4323366, 47.4088121 ], + [ 7.432305, 47.4088192 ], + [ 7.4320617, 47.4087989 ], + [ 7.4319577, 47.4087903 ], + [ 7.4319384, 47.4089456 ], + [ 7.4319251, 47.4090591 ], + [ 7.4319278, 47.4091533 ], + [ 7.4319293, 47.4092949 ], + [ 7.4319492, 47.4094242 ], + [ 7.4320343, 47.4095927 ], + [ 7.4321186, 47.409636 ], + [ 7.4321827, 47.409687 ], + [ 7.4321893, 47.4097423 ], + [ 7.4321804, 47.4098027 ], + [ 7.4321428, 47.4099084 ], + [ 7.4321138, 47.4100072 ], + [ 7.4321147, 47.4100737 ], + [ 7.4321477, 47.4101717 ], + [ 7.432183, 47.4102549 ], + [ 7.432237, 47.4103316 ], + [ 7.4323044, 47.4105044 ], + [ 7.432412, 47.4104194 ], + [ 7.4324854, 47.4103452 ], + [ 7.4325521, 47.4102735 ], + [ 7.4325842, 47.4102039 ], + [ 7.4326481, 47.410106 ], + [ 7.4327726, 47.4100073 ], + [ 7.43293, 47.409943 ], + [ 7.4330926999999996, 47.4098972 ], + [ 7.4332299, 47.4098444 ], + [ 7.4333864, 47.4097887 ], + [ 7.4336067, 47.4097509 ] + ], + [ + [ 7.444255, 47.4035076 ], + [ 7.4442438, 47.4034982 ], + [ 7.4442332, 47.4034885 ], + [ 7.4442232, 47.4034786 ], + [ 7.444214, 47.4034683 ], + [ 7.4442053999999995, 47.4034578 ], + [ 7.4441974, 47.4034471 ], + [ 7.4441901999999995, 47.4034361 ], + [ 7.4441836, 47.4034249 ], + [ 7.4441778, 47.4034136 ], + [ 7.444074, 47.4031961 ], + [ 7.4443265, 47.4029297 ], + [ 7.4445513, 47.4026917 ], + [ 7.4445773, 47.4026959 ], + [ 7.4446031999999995, 47.4027007 ], + [ 7.4446288, 47.402706 ], + [ 7.4446542, 47.4027118 ], + [ 7.4446793, 47.4027181 ], + [ 7.4447042, 47.4027249 ], + [ 7.4447287, 47.4027322 ], + [ 7.4447529, 47.40274 ], + [ 7.4447768, 47.4027483 ], + [ 7.4448017, 47.4027576 ], + [ 7.4448261, 47.4027673 ], + [ 7.4448501, 47.4027776 ], + [ 7.4448736, 47.4027884 ], + [ 7.4448965, 47.4027997 ], + [ 7.444919, 47.4028115 ], + [ 7.4449409, 47.4028237 ], + [ 7.4449496, 47.4028287 ], + [ 7.4449583, 47.4028337 ], + [ 7.4449667999999996, 47.4028387 ], + [ 7.4449753, 47.4028439 ], + [ 7.4454723, 47.4031504 ], + [ 7.4454798, 47.4031554 ], + [ 7.4454866, 47.4031607 ], + [ 7.4454928, 47.4031664 ], + [ 7.4457116, 47.4033011 ], + [ 7.4457212, 47.4033051 ], + [ 7.4457303, 47.4033096 ], + [ 7.4457389, 47.4033146 ], + [ 7.445747, 47.40332 ], + [ 7.4458262, 47.4033639 ], + [ 7.4458439, 47.4033733 ], + [ 7.4458622, 47.4033822 ], + [ 7.4458811, 47.4033906 ], + [ 7.4459004, 47.4033984 ], + [ 7.4459202, 47.4034057 ], + [ 7.4459405, 47.4034124 ], + [ 7.4459611, 47.4034185 ], + [ 7.4459821999999996, 47.4034239 ], + [ 7.4460035, 47.4034288 ], + [ 7.4460252, 47.4034331 ], + [ 7.446047, 47.4034367 ], + [ 7.4460687, 47.4034396 ], + [ 7.4460905, 47.4034419 ], + [ 7.4461123, 47.4034436 ], + [ 7.4461343, 47.4034446 ], + [ 7.4461564, 47.403445 ], + [ 7.4461784, 47.4034449 ], + [ 7.4462004, 47.403444 ], + [ 7.4462224, 47.4034426 ], + [ 7.4462442, 47.4034405 ], + [ 7.4462659, 47.4034379 ], + [ 7.4462874, 47.4034346 ], + [ 7.4463686, 47.4034893 ], + [ 7.4451183, 47.4043375 ], + [ 7.4445759, 47.4040329 ], + [ 7.4447645, 47.4038925 ], + [ 7.4448139, 47.4038558 ], + [ 7.444666, 47.4037607 ], + [ 7.4446564, 47.4037566 ], + [ 7.4446472, 47.4037521 ], + [ 7.4446385, 47.4037471 ], + [ 7.444292, 47.4035336 ], + [ 7.4442791, 47.4035253 ], + [ 7.4442668, 47.4035166 ], + [ 7.444255, 47.4035076 ] + ], + [ + [ 7.4410519, 47.4060639 ], + [ 7.4411172, 47.40611 ], + [ 7.4415338, 47.4064045 ], + [ 7.4418015, 47.4065937 ], + [ 7.4418157, 47.4066059 ], + [ 7.4416112, 47.4066678 ], + [ 7.4415618, 47.4066843 ], + [ 7.4414077, 47.4067183 ], + [ 7.4413402, 47.4067366 ], + [ 7.441143, 47.4065785 ], + [ 7.4409494, 47.4064234 ], + [ 7.4407839, 47.4062975 ], + [ 7.4407429, 47.4062663 ], + [ 7.4409491, 47.4061309 ], + [ 7.4410519, 47.4060639 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns024", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Meistelberg - Bohlberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Meistelberg - Bohlberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Meistelberg - Bohlberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Meistelberg - Bohlberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.0429835, 46.1874753 ], + [ 6.0429789, 46.1875167 ], + [ 6.0415663, 46.1876937 ], + [ 6.0402909, 46.188263 ], + [ 6.0394262, 46.189128 ], + [ 6.0391039, 46.1901569 ], + [ 6.0392859, 46.1908573 ], + [ 6.0392688, 46.1909119 ], + [ 6.039538, 46.1919481 ], + [ 6.0403577, 46.1928339 ], + [ 6.0404167, 46.1928624 ], + [ 6.0404623, 46.1929116 ], + [ 6.0405283, 46.1929434 ], + [ 6.0406746, 46.1935065 ], + [ 6.0414943, 46.1943923 ], + [ 6.0427399, 46.1949929 ], + [ 6.0442215, 46.1952166 ], + [ 6.0457137, 46.1950296 ], + [ 6.0469892, 46.1944603 ], + [ 6.0478539, 46.1935953 ], + [ 6.0481395, 46.1926828 ], + [ 6.0484318, 46.1923904 ], + [ 6.0486908, 46.1915628 ], + [ 6.049523, 46.1913102 ], + [ 6.0518636, 46.1902535 ], + [ 6.0528579, 46.1896067 ], + [ 6.0534697, 46.1887614 ], + [ 6.0536237, 46.1878213 ], + [ 6.0533011, 46.1869021 ], + [ 6.0525415, 46.1861167 ], + [ 6.0516429, 46.1854701 ], + [ 6.0506108, 46.1849395 ], + [ 6.0493861, 46.1846716 ], + [ 6.0493841, 46.1846716 ], + [ 6.0494369, 46.1843255 ], + [ 6.0490089, 46.1833168 ], + [ 6.0480583, 46.1824983 ], + [ 6.0467295, 46.1819943 ], + [ 6.0466629, 46.1819798 ], + [ 6.0454582, 46.1818564 ], + [ 6.0442577, 46.1819982 ], + [ 6.0431793, 46.182391 ], + [ 6.0423289, 46.1829965 ], + [ 6.0417901, 46.183755 ], + [ 6.0417772, 46.1837839 ], + [ 6.0416188, 46.1848305 ], + [ 6.0420487, 46.1858395 ], + [ 6.0430016, 46.1866577 ], + [ 6.0434508, 46.1868274 ], + [ 6.0429835, 46.1874753 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-16", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.1668842999999995, 46.7998484 ], + [ 7.1676598, 46.7996422 ], + [ 7.1677676, 46.7997021 ], + [ 7.168178, 46.7996589 ], + [ 7.1684534, 46.7994312 ], + [ 7.1685651, 46.799342 ], + [ 7.1689875, 46.7988282 ], + [ 7.1693503, 46.7982422 ], + [ 7.1694879, 46.7977174 ], + [ 7.1694888, 46.797532 ], + [ 7.1695044, 46.7974188 ], + [ 7.1694914, 46.7970275 ], + [ 7.1692819, 46.7969344 ], + [ 7.1691479, 46.7967693 ], + [ 7.1688952, 46.7963362 ], + [ 7.1682828, 46.7958714 ], + [ 7.1679086, 46.7957573 ], + [ 7.1678045, 46.7955923 ], + [ 7.167745, 46.7954892 ], + [ 7.1683321, 46.7950272 ], + [ 7.1688294, 46.7945136 ], + [ 7.1690102, 46.7943287 ], + [ 7.1693554, 46.7942678 ], + [ 7.1693425, 46.7938559 ], + [ 7.1694041, 46.7935265 ], + [ 7.1694798, 46.7933723 ], + [ 7.1692709, 46.7931864 ], + [ 7.1691966, 46.7930421 ], + [ 7.1691353, 46.7926259 ], + [ 7.1690042, 46.792568 ], + [ 7.1691262, 46.7921461 ], + [ 7.1692763, 46.7921053 ], + [ 7.1693675, 46.7918584 ], + [ 7.1697281, 46.7917048 ], + [ 7.169804, 46.7915197 ], + [ 7.1698204, 46.7912314 ], + [ 7.1697612, 46.7910768 ], + [ 7.1695253, 46.7909447 ], + [ 7.1694124, 46.7909295 ], + [ 7.1694116, 46.7909291 ], + [ 7.1694083, 46.790929 ], + [ 7.1687575, 46.7909509 ], + [ 7.1685626, 46.7909504 ], + [ 7.1683687, 46.7907543 ], + [ 7.1682342, 46.7906613 ], + [ 7.1681141, 46.7907022 ], + [ 7.1679936, 46.7908152 ], + [ 7.1677082, 46.7909278 ], + [ 7.1673781, 46.7909785 ], + [ 7.1672727, 46.7910709 ], + [ 7.1671226, 46.791122 ], + [ 7.1669277, 46.7911215 ], + [ 7.1667482, 46.791049 ], + [ 7.1666291, 46.790884 ], + [ 7.1665398, 46.7907602 ], + [ 7.1665254, 46.7906366 ], + [ 7.166511, 46.7905233 ], + [ 7.1664515, 46.7904305 ], + [ 7.1663318, 46.7903787 ], + [ 7.1661075, 46.790275199999996 ], + [ 7.166093, 46.7901825 ], + [ 7.1661833, 46.7901107 ], + [ 7.1662771, 46.7900019 ], + [ 7.166421, 46.7898658 ], + [ 7.1664552, 46.7896892 ], + [ 7.1663961, 46.7895958 ], + [ 7.1662311, 46.7895445 ], + [ 7.1658863, 46.7895539 ], + [ 7.1656314, 46.7895636 ], + [ 7.1654665, 46.7895529 ], + [ 7.1653531, 46.7895784 ], + [ 7.1651209, 46.7897168 ], + [ 7.1649561, 46.7896958 ], + [ 7.1647915, 46.7896336 ], + [ 7.1645973, 46.7894993 ], + [ 7.164448, 46.7893754 ], + [ 7.1644188, 46.7892312 ], + [ 7.1644792, 46.7891489 ], + [ 7.1647944, 46.7890673 ], + [ 7.1651697, 46.788955 ], + [ 7.1653504, 46.7887907 ], + [ 7.1653063, 46.7886258 ], + [ 7.1662865, 46.7874646 ], + [ 7.1659727, 46.7872785 ], + [ 7.1662733, 46.7871042 ], + [ 7.1664384, 46.7870737 ], + [ 7.166469, 46.7869502 ], + [ 7.1663948, 46.7867853 ], + [ 7.1661397000000004, 46.7868465 ], + [ 7.1654346, 46.786958 ], + [ 7.1649546, 46.7870289 ], + [ 7.1648949, 46.7869773 ], + [ 7.1652202, 46.7862871 ], + [ 7.1651558, 46.7857629 ], + [ 7.1641433, 46.7844116 ], + [ 7.1629776, 46.7837292 ], + [ 7.161825, 46.7834071 ], + [ 7.161361, 46.7832618 ], + [ 7.1609716, 46.7832094 ], + [ 7.160612, 46.7831776 ], + [ 7.1600569, 46.783258599999996 ], + [ 7.159847, 46.7832684 ], + [ 7.1593816, 46.7834217 ], + [ 7.1589168, 46.7834412 ], + [ 7.1586616, 46.7835126 ], + [ 7.158511, 46.7836564 ], + [ 7.158061, 46.7837068 ], + [ 7.1574755, 46.7838804 ], + [ 7.1574432, 46.7843436 ], + [ 7.1571719, 46.784621 ], + [ 7.1568117, 46.7847025 ], + [ 7.156584, 46.7852476 ], + [ 7.156404, 46.7852781 ], + [ 7.155697, 46.7857499 ], + [ 7.1555155, 46.7860687 ], + [ 7.1551985, 46.7864901 ], + [ 7.1551653, 46.7871078 ], + [ 7.1547579, 46.7876113 ], + [ 7.1557132, 46.7883715 ], + [ 7.1556463, 46.788518 ], + [ 7.1554545, 46.7888078 ], + [ 7.1551253, 46.7891191 ], + [ 7.1549118, 46.7895179 ], + [ 7.1548979, 46.7901711 ], + [ 7.1547813, 46.7902289 ], + [ 7.1545808, 46.7901703 ], + [ 7.1542776, 46.789538 ], + [ 7.1540468, 46.7892035 ], + [ 7.1538796, 46.7888402 ], + [ 7.1539131, 46.7884991 ], + [ 7.1541795, 46.7880715 ], + [ 7.15417, 46.7878609 ], + [ 7.1539386, 46.7876644 ], + [ 7.1534217, 46.7874816 ], + [ 7.1526297, 46.7873562 ], + [ 7.1521011, 46.7873911 ], + [ 7.1515621, 46.7873898 ], + [ 7.1510013, 46.7875045 ], + [ 7.1504514, 46.7875902 ], + [ 7.1498689, 46.7878065 ], + [ 7.1489785, 46.7883196 ], + [ 7.1486701, 46.7886672 ], + [ 7.1482664, 46.7890654 ], + [ 7.1482551, 46.7892033 ], + [ 7.1477873, 46.7897175 ], + [ 7.1475208, 46.7901378 ], + [ 7.1474568, 46.790261 ], + [ 7.1469702, 46.7903324 ], + [ 7.1467059, 46.7903462 ], + [ 7.1464209, 46.7902656 ], + [ 7.1461638, 46.7900973 ], + [ 7.1460806, 46.7899529 ], + [ 7.1459977, 46.7897508 ], + [ 7.1460214, 46.7892606 ], + [ 7.1458739, 46.789305 ], + [ 7.1448588, 46.7890894 ], + [ 7.1445886, 46.7890486 ], + [ 7.144481, 46.7893895 ], + [ 7.1443522999999995, 46.7897231 ], + [ 7.1443185, 46.7901222 ], + [ 7.1443384, 46.7903473 ], + [ 7.1446119, 46.7905876 ], + [ 7.1450762, 46.7907122 ], + [ 7.1457831, 46.790939 ], + [ 7.1462898, 46.7910565 ], + [ 7.146806, 46.7913772 ], + [ 7.1471971, 46.791371 ], + [ 7.1476839, 46.7912633 ], + [ 7.1479914, 46.7910827 ], + [ 7.1484158, 46.7907789 ], + [ 7.1489563, 46.7905044 ], + [ 7.1492746, 46.790273 ], + [ 7.1499119, 46.7900349 ], + [ 7.1503022, 46.7898183 ], + [ 7.1505855, 46.789705 ], + [ 7.1510219, 46.7896169 ], + [ 7.1513715, 46.7894726 ], + [ 7.1517422, 46.789333 ], + [ 7.1521415, 46.7892619 ], + [ 7.152351, 46.7893489 ], + [ 7.1523502, 46.7894932 ], + [ 7.1521608, 46.7895936 ], + [ 7.1518448, 46.7897803 ], + [ 7.151886, 46.79012 ], + [ 7.1519791, 46.7904904 ], + [ 7.152157, 46.7908247 ], + [ 7.152799, 46.7913345 ], + [ 7.1531783, 46.7915532 ], + [ 7.1533468, 46.7916771 ], + [ 7.1537065, 46.7916054 ], + [ 7.1540337, 46.7917006 ], + [ 7.1543719, 46.7917014 ], + [ 7.1547218, 46.7914918 ], + [ 7.1554731, 46.7913267 ], + [ 7.1558438, 46.791168 ], + [ 7.1560783, 46.7907911 ], + [ 7.1562189, 46.790189 ], + [ 7.1563898, 46.789841 ], + [ 7.1563056, 46.7897754 ], + [ 7.1566357, 46.7892971 ], + [ 7.1566516, 46.7891271 ], + [ 7.1576502, 46.7899213 ], + [ 7.1578764, 46.7899478 ], + [ 7.1584596, 46.7901953 ], + [ 7.1587044, 46.7902607 ], + [ 7.1587992, 46.7901573 ], + [ 7.1588376, 46.7900279 ], + [ 7.1587505, 46.7899035 ], + [ 7.1580065, 46.7896777 ], + [ 7.1576532, 46.7893385 ], + [ 7.1575793, 46.7890405 ], + [ 7.1575995, 46.7887459 ], + [ 7.1579288, 46.7883895 ], + [ 7.1583948, 46.788123 ], + [ 7.1586591, 46.7880718 ], + [ 7.1593378, 46.7880735 ], + [ 7.159658, 46.788139 ], + [ 7.1597684, 46.7881373 ], + [ 7.1598192, 46.7880983 ], + [ 7.1597687, 46.7880634 ], + [ 7.1596549, 46.7880457 ], + [ 7.1594019, 46.7880234 ], + [ 7.1590874, 46.7879714 ], + [ 7.1589025, 46.7879439 ], + [ 7.1586748, 46.7879173 ], + [ 7.1583775, 46.7879122 ], + [ 7.1582385, 46.7878684 ], + [ 7.1582026, 46.7878176 ], + [ 7.1582419999999995, 46.7877473 ], + [ 7.1582618, 46.7877003 ], + [ 7.1584185, 46.7876202 ], + [ 7.1585897, 46.7875569 ], + [ 7.1587855, 46.7874735 ], + [ 7.1589178, 46.7873866 ], + [ 7.1588252, 46.7873629 ], + [ 7.1587518, 46.7873728 ], + [ 7.1577975, 46.7865081 ], + [ 7.1578445, 46.7864546 ], + [ 7.1584391, 46.7859189 ], + [ 7.158832, 46.785557 ], + [ 7.159079, 46.7853772 ], + [ 7.1591502, 46.7853254 ], + [ 7.1593121, 46.7852905 ], + [ 7.1596157, 46.785225 ], + [ 7.160123, 46.785219 ], + [ 7.1606402, 46.7853219 ], + [ 7.1609248, 46.785475 ], + [ 7.1611993, 46.7856872 ], + [ 7.1613246, 46.7858172 ], + [ 7.1614819, 46.7860571 ], + [ 7.1615541, 46.7864057 ], + [ 7.1616998, 46.7868489 ], + [ 7.1618873, 46.7873865 ], + [ 7.1621769, 46.7882658 ], + [ 7.1622363, 46.788682 ], + [ 7.1621998, 46.788856 ], + [ 7.1622111, 46.7889609 ], + [ 7.1622572, 46.7891718 ], + [ 7.1622564, 46.7893258 ], + [ 7.1621622, 46.7894342 ], + [ 7.1620078, 46.789487199999996 ], + [ 7.1616889, 46.7895432 ], + [ 7.1615353, 46.7895914 ], + [ 7.1607059, 46.7897217 ], + [ 7.1611543, 46.7913309 ], + [ 7.1614213, 46.7919936 ], + [ 7.1615411, 46.7920351 ], + [ 7.1617961, 46.7920048 ], + [ 7.1620509, 46.7920055 ], + [ 7.1621855, 46.7920676 ], + [ 7.16235, 46.7921504 ], + [ 7.1623648, 46.7921916 ], + [ 7.1623494, 46.7922739 ], + [ 7.1622137, 46.7924177 ], + [ 7.1619523, 46.7929341 ], + [ 7.161129, 46.7934447 ], + [ 7.1610976, 46.7937123 ], + [ 7.1610518, 46.7938667 ], + [ 7.1609011, 46.7940208 ], + [ 7.1606913, 46.7940099 ], + [ 7.1607651, 46.7942264 ], + [ 7.1606149, 46.7942878 ], + [ 7.1604502, 46.7942359 ], + [ 7.1602111, 46.7940911 ], + [ 7.1602235, 46.7945957 ], + [ 7.1602073, 46.7948119 ], + [ 7.1602024, 46.7957591 ], + [ 7.1602466, 46.7959034 ], + [ 7.1603057, 46.7960683 ], + [ 7.1605887, 46.7964294 ], + [ 7.161007, 46.796729 ], + [ 7.1612256, 46.7968287 ], + [ 7.16151, 46.7970254 ], + [ 7.1617526, 46.7971131 ], + [ 7.161953, 46.7972007 ], + [ 7.1621747, 46.7972593 ], + [ 7.1624387, 46.797289 ], + [ 7.1627343, 46.7973695 ], + [ 7.1630297, 46.7974719 ], + [ 7.1633573, 46.7974872 ], + [ 7.1637371, 46.797626 ], + [ 7.1638103, 46.7977641 ], + [ 7.1638146, 46.797804 ], + [ 7.1638204, 46.7978585 ], + [ 7.1638822, 46.7978719 ], + [ 7.1642352, 46.7980673 ], + [ 7.1644952, 46.7979868 ], + [ 7.1646014, 46.7979952 ], + [ 7.1647545, 46.7980604 ], + [ 7.1648132, 46.7981254 ], + [ 7.1648599, 46.7982065 ], + [ 7.1649006, 46.7982125 ], + [ 7.165143, 46.7982477 ], + [ 7.1653552, 46.7982888 ], + [ 7.165579, 46.7983623 ], + [ 7.1657435, 46.7985004 ], + [ 7.1658102, 46.7985735 ], + [ 7.1658844, 46.7986548 ], + [ 7.165925, 46.7987682 ], + [ 7.1659309, 46.7987846 ], + [ 7.1659445, 46.7988014 ], + [ 7.1659895, 46.7988576 ], + [ 7.1660477, 46.7990477 ], + [ 7.1663197, 46.7993063 ], + [ 7.1666581, 46.7999037 ], + [ 7.1668842999999995, 46.7998484 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "WZV0020", + "country" : "CHE", + "name" : [ + { + "text" : "Wasser- und Zugvogelreservat Lac de Pérolles", + "lang" : "de-CH" + }, + { + "text" : "Réserve d'oiseaux d'eau et de migrateurs Lac de Pérolles", + "lang" : "fr-CH" + }, + { + "text" : "Riserva di uccelli acquatici e migratori Lac de Pérolles", + "lang" : "it-CH" + }, + { + "text" : "Water Bird and Migratory Bird Reserves Lac de Pérolles", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.9418095, 46.9976378 ], + [ 6.9418316, 46.9977209 ], + [ 6.9419263, 46.9978849 ], + [ 6.942066, 46.9980332 ], + [ 6.9422453, 46.99816 ], + [ 6.9424573, 46.9982604 ], + [ 6.9425472, 46.998287 ], + [ 6.9425877, 46.9983062 ], + [ 6.9428251, 46.9983767 ], + [ 6.9430782, 46.998414 ], + [ 6.9432587, 46.9984281 ], + [ 6.9435228, 46.9984305 ], + [ 6.9437822, 46.9983967 ], + [ 6.9440265, 46.9983281 ], + [ 6.9440867, 46.9983005 ], + [ 6.9442317, 46.9982541 ], + [ 6.9444395, 46.9981495 ], + [ 6.9446135, 46.9980191 ], + [ 6.9447469, 46.9978679 ], + [ 6.9448346, 46.9977019 ], + [ 6.9448732, 46.9975273 ], + [ 6.9448612, 46.997351 ], + [ 6.9448577, 46.9973344 ], + [ 6.9448549, 46.9973221 ], + [ 6.9448511, 46.9973056 ], + [ 6.9448481, 46.9972934 ], + [ 6.9448439, 46.9972769 ], + [ 6.9448388, 46.997258 ], + [ 6.9448282, 46.9972213 ], + [ 6.94482, 46.9971948 ], + [ 6.9448079, 46.9971582 ], + [ 6.9447985, 46.9971319 ], + [ 6.9447847, 46.9970956 ], + [ 6.9447731, 46.997067 ], + [ 6.9447543, 46.9970233 ], + [ 6.94474, 46.9969923 ], + [ 6.9447189, 46.9969491 ], + [ 6.944703, 46.9969184 ], + [ 6.9446796, 46.9968758 ], + [ 6.9446631, 46.9968474 ], + [ 6.9446399, 46.996809 ], + [ 6.9446221999999995, 46.9967812 ], + [ 6.9445971, 46.9967435 ], + [ 6.9445781, 46.9967161 ], + [ 6.9445511, 46.9966789 ], + [ 6.9445315, 46.996653 ], + [ 6.9445056, 46.9966201 ], + [ 6.9444864, 46.9965964 ], + [ 6.9444590999999996, 46.9965641 ], + [ 6.9444388, 46.9965409 ], + [ 6.944432, 46.9965333 ], + [ 6.9444463, 46.9963922 ], + [ 6.9444387, 46.9963515 ], + [ 6.9444416, 46.9963215 ], + [ 6.9444087, 46.9961471 ], + [ 6.9443268, 46.9959804 ], + [ 6.9441991, 46.9958278 ], + [ 6.9440304, 46.9956952 ], + [ 6.9438272, 46.9955875 ], + [ 6.9433018, 46.9953615 ], + [ 6.943071, 46.9952827 ], + [ 6.9428221, 46.9952362 ], + [ 6.9425647999999995, 46.9952239 ], + [ 6.942309, 46.9952461 ], + [ 6.9420644, 46.9953022 ], + [ 6.9418405, 46.9953898 ], + [ 6.9417492, 46.9954441 ], + [ 6.9415387, 46.9954915 ], + [ 6.9413154, 46.9955775 ], + [ 6.9411208, 46.9956915 ], + [ 6.9409621999999995, 46.9958291 ], + [ 6.9408693, 46.9959534 ], + [ 6.9408487999999995, 46.9959731 ], + [ 6.9407426999999995, 46.9961343 ], + [ 6.9406848, 46.9963066 ], + [ 6.9406772, 46.9964834 ], + [ 6.9406804, 46.9965142 ], + [ 6.9406593999999995, 46.9966816 ], + [ 6.9406872, 46.9968551 ], + [ 6.9407634, 46.9970217 ], + [ 6.9408852, 46.997175 ], + [ 6.941048, 46.9973094 ], + [ 6.9412457, 46.9974198 ], + [ 6.9414708, 46.9975019 ], + [ 6.9416876, 46.9975471 ], + [ 6.9416942, 46.9975539 ], + [ 6.9418095, 46.9976378 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "NE09", + "country" : "CHE", + "name" : [ + { + "text" : "Hôpital Pourtalès", + "lang" : "de-CH" + }, + { + "text" : "Hôpital Pourtalès", + "lang" : "fr-CH" + }, + { + "text" : "Hôpital Pourtalès", + "lang" : "it-CH" + }, + { + "text" : "Hôpital Pourtalès", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "regulationExemption" : "YES", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Police Neuchâteloise", + "lang" : "de-CH" + }, + { + "text" : "Police Neuchâteloise", + "lang" : "fr-CH" + }, + { + "text" : "Police Neuchâteloise", + "lang" : "it-CH" + }, + { + "text" : "Police Neuchâteloise", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "PN - Rens et opérations", + "lang" : "de-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "fr-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "it-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "PN - Rens et opérations", + "lang" : "de-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "fr-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "it-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ne.ch/autorites/DESC/PONE/Pages/Drones.aspx", + "email" : "Police.Neuchateloise@ne.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.517563299999999, 46.8839413 ], + [ 8.5177735, 46.8840772 ], + [ 8.5178648, 46.8842122 ], + [ 8.5178993, 46.8843367 ], + [ 8.5179935, 46.8844944 ], + [ 8.5180677, 46.8846366 ], + [ 8.5181351, 46.8848106 ], + [ 8.5181307, 46.8849993 ], + [ 8.5181554, 46.885123899999996 ], + [ 8.5181845, 46.8853506 ], + [ 8.5181934, 46.8855095 ], + [ 8.5182119, 46.8856955 ], + [ 8.5182473, 46.8859063 ], + [ 8.5182746, 46.8860014 ], + [ 8.5182995, 46.8861373 ], + [ 8.5183188, 46.8863597 ], + [ 8.5183196, 46.8864846 ], + [ 8.5182818, 46.8866032 ], + [ 8.5182568, 46.8867058 ], + [ 8.5182688, 46.8868941 ], + [ 8.51827, 46.887035 ], + [ 8.5182454, 46.8871603 ], + [ 8.51824, 46.8872966 ], + [ 8.5182486, 46.8874396 ], + [ 8.5182586, 46.8875729 ], + [ 8.5182598, 46.8875917 ], + [ 8.5182526, 46.8877621 ], + [ 8.5182702, 46.8879051 ], + [ 8.5183975, 46.8880783 ], + [ 8.5184989, 46.8882245 ], + [ 8.5185654, 46.8883099 ], + [ 8.5186828, 46.8884378 ], + [ 8.5188319, 46.8885154 ], + [ 8.5189546, 46.8885819 ], + [ 8.5190647, 46.8886713 ], + [ 8.5190573, 46.8888758 ], + [ 8.5190192, 46.8889786 ], + [ 8.518987, 46.8890925 ], + [ 8.5189565, 46.8892474 ], + [ 8.5189903, 46.8893765 ], + [ 8.5190578, 46.8894733 ], + [ 8.5190813, 46.8895411 ], + [ 8.5190924, 46.8896432 ], + [ 8.5191105, 46.889727 ], + [ 8.5191353, 46.8898584 ], + [ 8.5191783, 46.8899192 ], + [ 8.5192189, 46.8900208 ], + [ 8.5192862, 46.8901062 ], + [ 8.5193368, 46.8902123 ], + [ 8.5193229, 46.8903784 ], + [ 8.5193499, 46.8904576 ], + [ 8.5193737, 46.8905413 ], + [ 8.5194243, 46.8906496 ], + [ 8.5194688, 46.8907852 ], + [ 8.5195203, 46.8909368 ], + [ 8.5195446, 46.8910456 ], + [ 8.5195898, 46.8912153 ], + [ 8.5196322, 46.8914464 ], + [ 8.5196343, 46.8916349 ], + [ 8.5196197, 46.8918056 ], + [ 8.5196045, 46.8919466 ], + [ 8.5195576, 46.8921403 ], + [ 8.5194439, 46.892319 ], + [ 8.5192591, 46.8925531 ], + [ 8.5191193, 46.8927776 ], + [ 8.5191035, 46.8928506 ], + [ 8.5190557, 46.8929603 ], + [ 8.5190339, 46.8930628 ], + [ 8.5190079, 46.893154 ], + [ 8.5190196, 46.8932901 ], + [ 8.5191043, 46.8934639 ], + [ 8.5191714, 46.8935765 ], + [ 8.519245399999999, 46.8936665 ], + [ 8.5193384, 46.8937674 ], + [ 8.5194618, 46.893868 ], + [ 8.5195623, 46.8939689 ], + [ 8.5195563, 46.8939985 ], + [ 8.5195808, 46.8941117 ], + [ 8.5196905, 46.8942283 ], + [ 8.5197811, 46.8943249 ], + [ 8.519858, 46.8944374 ], + [ 8.5199823, 46.8945834 ], + [ 8.5200652, 46.8946278 ], + [ 8.5200762, 46.894723 ], + [ 8.5200933, 46.8948022 ], + [ 8.520101499999999, 46.8948817 ], + [ 8.5201123, 46.8950133 ], + [ 8.5201371, 46.8951037 ], + [ 8.5201382, 46.8951992 ], + [ 8.5201661, 46.8953646 ], + [ 8.5202067, 46.8954254 ], + [ 8.5202736, 46.8955268 ], + [ 8.5203243, 46.8956011 ], + [ 8.5204177, 46.8957179 ], + [ 8.5205017, 46.895819 ], + [ 8.5206014, 46.8958813 ], + [ 8.5207012, 46.8959481 ], + [ 8.5208078, 46.8960307 ], + [ 8.5208904, 46.8960592 ], + [ 8.5209508, 46.8960811 ], + [ 8.5210241, 46.8961369 ], + [ 8.5211073, 46.8961971 ], + [ 8.5211246, 46.8962831 ], + [ 8.521076, 46.8963519 ], + [ 8.5210039, 46.8963984 ], + [ 8.5209086, 46.8964297 ], + [ 8.5208955, 46.8964339 ], + [ 8.520823, 46.8964576 ], + [ 8.5207243, 46.8964861 ], + [ 8.5205595, 46.8965293 ], + [ 8.520486, 46.8965449 ], + [ 8.5203463, 46.8966162 ], + [ 8.5202703, 46.8966695 ], + [ 8.5202213, 46.8967201 ], + [ 8.5202227, 46.8967881 ], + [ 8.5202827, 46.8968396 ], + [ 8.5203227, 46.8968663 ], + [ 8.5204056, 46.8969107 ], + [ 8.5204552, 46.8969327 ], + [ 8.5205483, 46.8969496 ], + [ 8.5206704, 46.8969866 ], + [ 8.5207865, 46.8970078 ], + [ 8.5209184, 46.89704 ], + [ 8.521085, 46.8971287 ], + [ 8.5211949, 46.8972068 ], + [ 8.5212617, 46.8973081 ], + [ 8.5213028, 46.8973939 ], + [ 8.5213702, 46.8975224 ], + [ 8.5214041, 46.8976196 ], + [ 8.5214223, 46.8977489 ], + [ 8.5214566, 46.8979029 ], + [ 8.521475, 46.8980436 ], + [ 8.5214862, 46.8981524 ], + [ 8.5215207, 46.8982769 ], + [ 8.5215557, 46.898424 ], + [ 8.5216127, 46.8984846 ], + [ 8.521696, 46.8985471 ], + [ 8.5217723, 46.8985915 ], + [ 8.5218565, 46.898738 ], + [ 8.5218813, 46.8989126 ], + [ 8.5219263, 46.8990666 ], + [ 8.5219609, 46.8992365 ], + [ 8.5219958, 46.8993836 ], + [ 8.5220141, 46.8995197 ], + [ 8.5220557, 46.8996713 ], + [ 8.5220899, 46.8997799 ], + [ 8.5221074, 46.899875 ], + [ 8.5221255, 46.9000406 ], + [ 8.5221772, 46.9002036 ], + [ 8.522211, 46.9002939 ], + [ 8.5222452, 46.9004025 ], + [ 8.5222798, 46.9004929 ], + [ 8.5223304, 46.9005989 ], + [ 8.522381, 46.9007074 ], + [ 8.5224152, 46.9007796 ], + [ 8.522465799999999, 46.900847 ], + [ 8.5225253, 46.9009098 ], + [ 8.5225928, 46.9010044 ], + [ 8.5226601, 46.9011239 ], + [ 8.5227107, 46.9012367 ], + [ 8.5227849, 46.9013766 ], + [ 8.5228296, 46.9014782 ], + [ 8.5228803, 46.9016321 ], + [ 8.5229225, 46.9018133 ], + [ 8.5229669, 46.9019829 ], + [ 8.5229909, 46.9020326 ], + [ 8.5230752, 46.902186 ], + [ 8.5231101, 46.9023264 ], + [ 8.5231442, 46.902435 ], + [ 8.5232118, 46.9025294 ], + [ 8.5232782, 46.9025695 ], + [ 8.5233128, 46.9026985 ], + [ 8.5233972, 46.9028564 ], + [ 8.5234578, 46.9030145 ], + [ 8.5234942, 46.9031083 ], + [ 8.5235411, 46.9031187 ], + [ 8.5237638, 46.9031346 ], + [ 8.5239285, 46.9031676 ], + [ 8.5240355, 46.9032234 ], + [ 8.5240612, 46.9032795 ], + [ 8.5240861, 46.9033356 ], + [ 8.5241123, 46.9034538 ], + [ 8.5241214, 46.9036225 ], + [ 8.524181, 46.9038079 ], + [ 8.5243719, 46.9039589 ], + [ 8.5245871, 46.904138 ], + [ 8.5248274, 46.9042944 ], + [ 8.5251168, 46.90449 ], + [ 8.5253661, 46.9047253 ], + [ 8.5256396, 46.9049434 ], + [ 8.5258964, 46.9051899 ], + [ 8.5260295, 46.9053636 ], + [ 8.5261545, 46.9055376 ], + [ 8.5263298, 46.9057674 ], + [ 8.5264621, 46.9058625 ], + [ 8.5266685, 46.9059235 ], + [ 8.5269074, 46.9059729 ], + [ 8.5271632, 46.906045 ], + [ 8.527452, 46.9062125 ], + [ 8.527709, 46.9063406 ], + [ 8.5278161, 46.9064471 ], + [ 8.5278995, 46.9065535 ], + [ 8.527884, 46.906638 ], + [ 8.5278364, 46.9067564 ], + [ 8.5277305, 46.9068751 ], + [ 8.5275996, 46.9070163 ], + [ 8.527577, 46.9071571 ], + [ 8.5277187, 46.9073873 ], + [ 8.5278932, 46.9076171 ], + [ 8.5281029, 46.907965 ], + [ 8.5283345, 46.9081779 ], + [ 8.5285419, 46.9082949 ], + [ 8.5287807, 46.9083783 ], + [ 8.5290123, 46.9084673 ], + [ 8.529235, 46.9085281 ], + [ 8.5295155, 46.9086449 ], + [ 8.5296978, 46.9087735 ], + [ 8.529806, 46.9089306 ], + [ 8.52993, 46.9089751 ], + [ 8.5301198, 46.9090305 ], + [ 8.5303998, 46.9090799 ], + [ 8.5307628, 46.9091794 ], + [ 8.5311258, 46.9093183 ], + [ 8.5314567, 46.9094913 ], + [ 8.5317617, 46.9096418 ], + [ 8.5321675, 46.90991 ], + [ 8.5326891, 46.9102621 ], + [ 8.5329197, 46.9103061 ], + [ 8.533183, 46.9102992 ], + [ 8.5334705, 46.910236 ], + [ 8.5338318, 46.9101724 ], + [ 8.5342178, 46.910148 ], + [ 8.5346054, 46.9102475 ], + [ 8.5348118, 46.9103479 ], + [ 8.5349691, 46.9104203 ], + [ 8.5352333, 46.9104979 ], + [ 8.5354552, 46.9105587 ], + [ 8.535646, 46.9106591 ], + [ 8.535827, 46.9107258 ], + [ 8.5360406, 46.9106966 ], + [ 8.5362627, 46.9106449 ], + [ 8.536442, 46.9105484 ], + [ 8.5366232, 46.9105025 ], + [ 8.5368778, 46.9105126 ], + [ 8.5376622, 46.9108353 ], + [ 8.5379265, 46.9109634 ], + [ 8.5380669, 46.9110079 ], + [ 8.5382567, 46.9110182 ], + [ 8.538494, 46.9109496 ], + [ 8.5387569, 46.9109258 ], + [ 8.5389136, 46.9109251 ], + [ 8.5390456, 46.9109582 ], + [ 8.5391369, 46.9110534 ], + [ 8.5393106, 46.9111989 ], + [ 8.5394759, 46.9112994 ], + [ 8.5396411, 46.9113099 ], + [ 8.5398138, 46.9112922 ], + [ 8.5400433, 46.9112405 ], + [ 8.5403149, 46.9112392 ], + [ 8.540488, 46.9112778 ], + [ 8.5405866, 46.9112885 ], + [ 8.5406771, 46.91126 ], + [ 8.5408741, 46.9112253 ], + [ 8.5410547, 46.9111851 ], + [ 8.5412608, 46.9112347 ], + [ 8.5415247, 46.9113404 ], + [ 8.5420035, 46.9115632 ], + [ 8.5422518, 46.911669 ], + [ 8.5424083, 46.9116963 ], + [ 8.5425646, 46.9117182 ], + [ 8.5426891, 46.911785 ], + [ 8.5427965, 46.9118634 ], + [ 8.5429702, 46.912008900000004 ], + [ 8.5431774, 46.9121091 ], + [ 8.5434081, 46.9121981 ], + [ 8.5438038, 46.9122862 ], + [ 8.5441995, 46.9123405 ], + [ 8.5447261, 46.9123718 ], + [ 8.5450303, 46.9123986 ], + [ 8.5452936, 46.9123973 ], + [ 8.5455564, 46.9123679 ], + [ 8.5458687, 46.9123158 ], + [ 8.5461653, 46.9123312 ], + [ 8.54651, 46.9122565 ], + [ 8.5468056, 46.9122269 ], + [ 8.5471339, 46.9121915 ], + [ 8.5473562, 46.9122298 ], + [ 8.5476206, 46.9122793 ], + [ 8.5478429, 46.912357 ], + [ 8.5480088, 46.9124462 ], + [ 8.548248, 46.9125857 ], + [ 8.5484793, 46.9126578 ], + [ 8.5487924, 46.9126844 ], + [ 8.5491293, 46.9127053 ], + [ 8.5495166, 46.912709 ], + [ 8.5497952, 46.9126515 ], + [ 8.5501648, 46.9125877 ], + [ 8.5505593, 46.9125409 ], + [ 8.5509863, 46.9125163 ], + [ 8.5513156, 46.9125316 ], + [ 8.5516201, 46.9125358 ], + [ 8.5518257, 46.9125572 ], + [ 8.5520065, 46.9125338 ], + [ 8.5521872, 46.9124654 ], + [ 8.552441, 46.9123574 ], + [ 8.5527108, 46.9121928 ], + [ 8.5530458, 46.9120056 ], + [ 8.5533402, 46.9118409 ], + [ 8.5535454, 46.9117668 ], + [ 8.5538403, 46.9116641 ], + [ 8.5540697, 46.9116066 ], + [ 8.5542013, 46.9115836 ], + [ 8.5544145, 46.9114981 ], + [ 8.5546604, 46.9114069 ], + [ 8.5548977, 46.9112989 ], + [ 8.5551193, 46.911264 ], + [ 8.5554483, 46.9113018 ], + [ 8.5558439, 46.9113842 ], + [ 8.5562569, 46.9115173 ], + [ 8.5564791, 46.9115499 ], + [ 8.5565361, 46.9115272 ], + [ 8.5566831, 46.9114196 ], + [ 8.5568881, 46.9113341 ], + [ 8.5572156, 46.91122 ], + [ 8.5575524, 46.9111228 ], + [ 8.5579622, 46.9110194 ], + [ 8.5583654, 46.9110006 ], + [ 8.5587597, 46.9109424 ], + [ 8.559104, 46.9108507 ], + [ 8.5594074, 46.9107648 ], + [ 8.5597349, 46.9106113 ], + [ 8.5599799, 46.9104807 ], + [ 8.5603565, 46.9102819 ], + [ 8.5606756, 46.9101227 ], + [ 8.5610193, 46.910003 ], + [ 8.5613396, 46.9099 ], + [ 8.5615445, 46.9098484 ], + [ 8.561733199999999, 46.9098475 ], + [ 8.5619468, 46.9098239 ], + [ 8.5620705, 46.909812 ], + [ 8.562226, 46.909755 ], + [ 8.5622829, 46.9096535 ], + [ 8.5622819, 46.9095634 ], + [ 8.5621158, 46.9094292 ], + [ 8.5619584, 46.9093568 ], + [ 8.5618917, 46.9092671 ], + [ 8.5617924, 46.9091495 ], + [ 8.5616502, 46.908942 ], + [ 8.5614755, 46.9087064 ], + [ 8.5613326, 46.9084259 ], + [ 8.5613394, 46.9082795 ], + [ 8.5612884, 46.9081166 ], + [ 8.5611538, 46.9078415 ], + [ 8.5609945, 46.9075609 ], + [ 8.5609018, 46.9073251 ], + [ 8.5608108, 46.9072467 ], + [ 8.5605037, 46.90704 ], + [ 8.5600162, 46.9067555 ], + [ 8.5597513, 46.9066047 ], + [ 8.5596094, 46.906448 ], + [ 8.5595751, 46.9062963 ], + [ 8.5596067, 46.906161 ], + [ 8.5596382, 46.9060201 ], + [ 8.5596125, 46.9058909 ], + [ 8.5595119, 46.905745 ], + [ 8.5592808, 46.9055998 ], + [ 8.5591467, 46.9053868 ], + [ 8.5590876, 46.9052295 ], + [ 8.5590521, 46.9049821 ], + [ 8.5590826, 46.9047512 ], + [ 8.5591541, 46.9045201 ], + [ 8.5591853, 46.9043287 ], + [ 8.5592162, 46.9041541 ], + [ 8.5591896, 46.9039798 ], + [ 8.5590888, 46.9037102 ], + [ 8.5589793, 46.9035362 ], + [ 8.5588368, 46.9032332 ], + [ 8.5587121, 46.9030763 ], + [ 8.5585055, 46.9030041 ], + [ 8.5585538, 46.9029194 ], + [ 8.5586439, 46.902874 ], + [ 8.5587666, 46.9028171 ], + [ 8.5588726, 46.902749 ], + [ 8.5589298, 46.9026588 ], + [ 8.5590671, 46.902393599999996 ], + [ 8.5591698, 46.9020105 ], + [ 8.5592198, 46.9016957 ], + [ 8.5590394, 46.9016975 ], + [ 8.5587236, 46.9017006 ], + [ 8.5585427, 46.9016407 ], + [ 8.5584283, 46.9015801 ], + [ 8.5582494, 46.9014591 ], + [ 8.5581059, 46.9013446 ], + [ 8.5578618, 46.9011246 ], + [ 8.5577404, 46.9009693 ], + [ 8.5576144, 46.9007854 ], + [ 8.5574031, 46.9005653 ], + [ 8.5572972, 46.9002481 ], + [ 8.5571097, 46.8999102 ], + [ 8.5570272, 46.8996506 ], + [ 8.5569886, 46.8994946 ], + [ 8.5569612, 46.899278699999996 ], + [ 8.5568638, 46.8988938 ], + [ 8.5567207, 46.8985246 ], + [ 8.5566013, 46.8981862 ], + [ 8.556550099999999, 46.8978934 ], + [ 8.5565456, 46.8976772 ], + [ 8.5565192, 46.8975077 ], + [ 8.5565179, 46.897446 ], + [ 8.5565166, 46.8973843 ], + [ 8.5565039, 46.8973278 ], + [ 8.556474399999999, 46.8972894 ], + [ 8.5563783, 46.8971614 ], + [ 8.5562171, 46.8970629 ], + [ 8.5560359, 46.8969875 ], + [ 8.5558551, 46.8969738 ], + [ 8.5557191, 46.8969004 ], + [ 8.5556264, 46.8968217 ], + [ 8.5555275, 46.8967185 ], + [ 8.5554209, 46.8965617 ], + [ 8.5553062, 46.8964888 ], + [ 8.5551917, 46.8963899 ], + [ 8.5550337, 46.8962449 ], + [ 8.5549412, 46.8960944 ], + [ 8.5548918, 46.8959675 ], + [ 8.5548089, 46.8958491 ], + [ 8.5547267, 46.8957195 ], + [ 8.5546868, 46.8956167 ], + [ 8.5545994, 46.8954759 ], + [ 8.5545693, 46.8954084 ], + [ 8.5545452, 46.895354 ], + [ 8.554515, 46.8952818 ], + [ 8.5544667, 46.8952049 ], + [ 8.5544218, 46.8950989 ], + [ 8.5542239, 46.8950493 ], + [ 8.5541152, 46.8950279 ], + [ 8.5540112, 46.8949541 ], + [ 8.5538735, 46.8948011 ], + [ 8.5537419, 46.8947061 ], + [ 8.5536513, 46.8946457 ], + [ 8.5535775, 46.8944918 ], + [ 8.5535569, 46.894405 ], + [ 8.5535478, 46.8943257 ], + [ 8.5535698, 46.8942791 ], + [ 8.553658800000001, 46.8942165 ], + [ 8.5537309, 46.8941761 ], + [ 8.5538822, 46.8941526 ], + [ 8.5540539, 46.8941246 ], + [ 8.5542866, 46.8941177 ], + [ 8.5544671, 46.894116 ], + [ 8.5546926, 46.8941138 ], + [ 8.5548459, 46.8940725 ], + [ 8.5549042, 46.8941166 ], + [ 8.5551525, 46.8943017 ], + [ 8.55537, 46.8944269 ], + [ 8.5554992, 46.8945675 ], + [ 8.5557587, 46.8947782 ], + [ 8.5559481, 46.8949304 ], + [ 8.5562249, 46.8951086 ], + [ 8.5563384, 46.8952839 ], + [ 8.5564384, 46.8955153 ], + [ 8.5566827, 46.8957046 ], + [ 8.5568922, 46.8958793 ], + [ 8.5571272, 46.8960184 ], + [ 8.557336, 46.8961223 ], + [ 8.5575448, 46.8962617 ], + [ 8.5575597, 46.8962659 ], + [ 8.557565199999999, 46.8962169 ], + [ 8.557686, 46.8960307 ], + [ 8.5578657, 46.8958723 ], + [ 8.5580367, 46.895697 ], + [ 8.5581422, 46.8955614 ], + [ 8.5581703, 46.8954567 ], + [ 8.5583124, 46.8954662 ], + [ 8.558508, 46.8954834 ], + [ 8.5586391, 46.8955139 ], + [ 8.5587795, 46.8955634 ], + [ 8.5589006, 46.8955878 ], + [ 8.5589658, 46.8956061 ], + [ 8.5591056, 46.8956238 ], + [ 8.5591988, 46.8956485 ], + [ 8.5593296, 46.8956662 ], + [ 8.5594784, 46.8956839 ], + [ 8.5596087, 46.8957145 ], + [ 8.5597113, 46.8957198 ], + [ 8.5598604, 46.8957501 ], + [ 8.5600096, 46.8957869 ], + [ 8.5600749, 46.8958117 ], + [ 8.5601971, 46.8958487 ], + [ 8.5602809, 46.8958925 ], + [ 8.5603475, 46.8959428 ], + [ 8.5603816, 46.8959637 ], + [ 8.560422299999999, 46.8959867 ], + [ 8.5605452, 46.8960611 ], + [ 8.5606412, 46.8961005 ], + [ 8.5607129, 46.8961175 ], + [ 8.5607695, 46.896155 ], + [ 8.5608359, 46.8961926 ], + [ 8.5609104, 46.8962238 ], + [ 8.5609651, 46.8962551 ], + [ 8.5610396, 46.8962863 ], + [ 8.561130200000001, 46.8963038 ], + [ 8.5612269, 46.8963365 ], + [ 8.5612659, 46.8963603 ], + [ 8.561332, 46.8963851 ], + [ 8.56138, 46.8964022 ], + [ 8.5614514, 46.8964064 ], + [ 8.5615442, 46.8964089 ], + [ 8.5616106, 46.8964078 ], + [ 8.5616757, 46.8963817 ], + [ 8.5617213, 46.8963686 ], + [ 8.5617854, 46.8963361 ], + [ 8.5618407, 46.8963101 ], + [ 8.5618964, 46.8963095 ], + [ 8.5619153, 46.8963094 ], + [ 8.5619522, 46.896309 ], + [ 8.5620081, 46.8963148 ], + [ 8.5620917, 46.8963139 ], + [ 8.5621476, 46.8963199 ], + [ 8.5621755, 46.8963196 ], + [ 8.5622223, 46.8963191 ], + [ 8.5622865, 46.8962929 ], + [ 8.562369499999999, 46.8962603 ], + [ 8.5624701, 46.8962085 ], + [ 8.562572, 46.8961755 ], + [ 8.5626917, 46.8961361 ], + [ 8.5627656, 46.8960973 ], + [ 8.5628764, 46.8960643 ], + [ 8.5630048, 46.8960058 ], + [ 8.5630784, 46.8959541 ], + [ 8.5631425, 46.8959217 ], + [ 8.5632348, 46.8959017 ], + [ 8.5632989, 46.8958691 ], + [ 8.5633538, 46.8958305 ], + [ 8.5634367, 46.8957915 ], + [ 8.5634919, 46.8957655 ], + [ 8.5635383, 46.8957459 ], + [ 8.5636121, 46.8957452 ], + [ 8.5637233, 46.8957313 ], + [ 8.5638438, 46.8957238 ], + [ 8.5639374, 46.8957292 ], + [ 8.564021, 46.8957284 ], + [ 8.5640767, 46.8957215 ], + [ 8.5641412, 46.8957081 ], + [ 8.5642246, 46.8956946 ], + [ 8.5643637, 46.8956804 ], + [ 8.5644092, 46.8956609 ], + [ 8.5644646, 46.8956413 ], + [ 8.5645479, 46.8956214 ], + [ 8.5645938, 46.8955827 ], + [ 8.5645731, 46.8954938 ], + [ 8.5645351, 46.8954433 ], + [ 8.5644783, 46.8953928 ], + [ 8.5644398, 46.895355 ], + [ 8.5644212, 46.8953297 ], + [ 8.5643831, 46.8952729 ], + [ 8.5643636, 46.8952412 ], + [ 8.5642983, 46.8951824 ], + [ 8.564213, 46.8951409 ], + [ 8.5641184, 46.8950908 ], + [ 8.5639966, 46.8950283 ], + [ 8.5639307, 46.8949781 ], + [ 8.5638459, 46.8949216 ], + [ 8.5637242, 46.8948719 ], + [ 8.563526, 46.8947274 ], + [ 8.5634502, 46.8946327 ], + [ 8.5633648, 46.894550699999996 ], + [ 8.5633355, 46.894481 ], + [ 8.5632964, 46.8944177 ], + [ 8.5632772, 46.8943606 ], + [ 8.5632663, 46.8943098 ], + [ 8.5632558, 46.8942399 ], + [ 8.563255, 46.894201699999996 ], + [ 8.5632455, 46.8941763 ], + [ 8.5632255, 46.8941256 ], + [ 8.563216, 46.8941001 ], + [ 8.5631873, 46.8940623 ], + [ 8.563131, 46.8940374 ], + [ 8.5630941, 46.8940378 ], + [ 8.5630387, 46.8940573 ], + [ 8.5629555, 46.8940772 ], + [ 8.5628911, 46.894097 ], + [ 8.5628168, 46.8941105 ], + [ 8.562752, 46.8941112 ], + [ 8.5626773, 46.8941119 ], + [ 8.5626124, 46.8941061 ], + [ 8.5625375, 46.8940942 ], + [ 8.562444, 46.8940505 ], + [ 8.5623967, 46.8940255 ], + [ 8.5623222, 46.8939944 ], + [ 8.5622744, 46.8939439 ], + [ 8.5622087, 46.8939 ], + [ 8.562180099999999, 46.8938684 ], + [ 8.5621237, 46.8938372 ], + [ 8.5620952, 46.8938056 ], + [ 8.5620665, 46.8937678 ], + [ 8.5620191, 46.8937363 ], + [ 8.5619915, 46.8937111 ], + [ 8.5619435, 46.8936543 ], + [ 8.5618498, 46.8936043 ], + [ 8.5618114, 46.8935729 ], + [ 8.5617737, 46.893535 ], + [ 8.5617265, 46.8935101 ], + [ 8.5616799, 46.8934786 ], + [ 8.5616234, 46.8934474 ], + [ 8.561567, 46.893416 ], + [ 8.5615297, 46.8933974 ], + [ 8.561547000000001, 46.893359 ], + [ 8.561565, 46.8933206 ], + [ 8.561564, 46.8932698 ], + [ 8.5615346, 46.8932 ], + [ 8.561533, 46.8931236 ], + [ 8.5615042, 46.8930793 ], + [ 8.5614751, 46.8930222 ], + [ 8.5614369, 46.892958899999996 ], + [ 8.5613805, 46.8929277 ], + [ 8.5613145, 46.8929081 ], + [ 8.5612386, 46.8928896 ], + [ 8.5612008, 46.892883499999996 ], + [ 8.5611722, 46.8928516 ], + [ 8.5611618, 46.8928259 ], + [ 8.561105, 46.892775 ], + [ 8.5610476, 46.8927369 ], + [ 8.5610278, 46.892692 ], + [ 8.5609987, 46.8926342 ], + [ 8.5609407, 46.8925639 ], + [ 8.5609101, 46.8924741 ], + [ 8.5608809, 46.8924099 ], + [ 8.5608701, 46.8923264 ], + [ 8.560859, 46.8922684 ], + [ 8.5608491, 46.8922234 ], + [ 8.560848, 46.892172 ], + [ 8.5608371, 46.8921205 ], + [ 8.5608077, 46.8920499 ], + [ 8.5607781, 46.8920051 ], + [ 8.56074, 46.8919475 ], + [ 8.560709899999999, 46.8918833 ], + [ 8.5607184, 46.8918189 ], + [ 8.5607364, 46.8917736 ], + [ 8.5607543, 46.8917283 ], + [ 8.5607535, 46.8916896 ], + [ 8.5607339, 46.8916576 ], + [ 8.5606762, 46.8916003 ], + [ 8.5606479, 46.8915812 ], + [ 8.5606379, 46.8915748 ], + [ 8.5606095, 46.8915494 ], + [ 8.560579, 46.8915024 ], + [ 8.5605226, 46.8914342 ], + [ 8.5604673, 46.8913805 ], + [ 8.5604459, 46.8912971 ], + [ 8.5604187, 46.8912479 ], + [ 8.5603936, 46.8911885 ], + [ 8.5603593, 46.8911546 ], + [ 8.5603179, 46.8911347 ], + [ 8.5602614, 46.8911018 ], + [ 8.5602139, 46.8910636 ], + [ 8.5601812, 46.8910333 ], + [ 8.5601526, 46.8909944 ], + [ 8.5601385, 46.8909514 ], + [ 8.5601507, 46.8909068 ], + [ 8.560172, 46.8908643 ], + [ 8.5602088, 46.890819 ], + [ 8.5602649, 46.890799 ], + [ 8.5604002, 46.8907941 ], + [ 8.5605274, 46.8908004 ], + [ 8.5605842, 46.8908088 ], + [ 8.5606518, 46.8908246 ], + [ 8.5606836, 46.890816 ], + [ 8.5606715, 46.8907889 ], + [ 8.5606596, 46.8907256 ], + [ 8.5606704, 46.8906539 ], + [ 8.5607408, 46.8905707 ], + [ 8.5608412, 46.89051 ], + [ 8.5609354, 46.8905026 ], + [ 8.561001, 46.890502 ], + [ 8.561077, 46.8905269 ], + [ 8.5611993, 46.8905709 ], + [ 8.5613132, 46.8906084 ], + [ 8.5613981, 46.8906268 ], + [ 8.561455, 46.8906392 ], + [ 8.5615859, 46.890625 ], + [ 8.5616512, 46.8906115 ], + [ 8.5617261, 46.8905849 ], + [ 8.5618008, 46.8905456 ], + [ 8.561846599999999, 46.8905001 ], + [ 8.5619019, 46.8904415 ], + [ 8.5619476, 46.8903895 ], + [ 8.5619926, 46.8903054 ], + [ 8.5620294, 46.8902599 ], + [ 8.562047100000001, 46.890208200000004 ], + [ 8.5620731, 46.8901178 ], + [ 8.5620822, 46.8900791 ], + [ 8.5620812, 46.890034 ], + [ 8.5620804, 46.8899953 ], + [ 8.5620694, 46.8899374 ], + [ 8.562068, 46.889873 ], + [ 8.5620854, 46.889802 ], + [ 8.5621392, 46.8896661 ], + [ 8.562286, 46.8895102 ], + [ 8.5623214, 46.8894002 ], + [ 8.5623193, 46.8892972 ], + [ 8.5623174, 46.8892071 ], + [ 8.5623342, 46.8891102 ], + [ 8.5623608, 46.8890069 ], + [ 8.562377099999999, 46.888923 ], + [ 8.5624115, 46.8888431 ], + [ 8.562472, 46.888833 ], + [ 8.5626445, 46.8888096 ], + [ 8.5627344, 46.8887923 ], + [ 8.562826, 46.8888594 ], + [ 8.5629579, 46.8889319 ], + [ 8.5630898, 46.888965 ], + [ 8.5632541, 46.8889754 ], + [ 8.5634106, 46.8889691 ], + [ 8.5635741, 46.888867 ], + [ 8.5637203, 46.8887593 ], + [ 8.5640856, 46.8890501 ], + [ 8.5642165, 46.8890325 ], + [ 8.5643002, 46.8891166 ], + [ 8.5643813, 46.8890711 ], + [ 8.5644484, 46.889144 ], + [ 8.5645461, 46.8891097 ], + [ 8.5646046, 46.8891601 ], + [ 8.5647031, 46.8891259 ], + [ 8.5647937, 46.8891816 ], + [ 8.5649408, 46.889119 ], + [ 8.5650081, 46.8891975 ], + [ 8.565155, 46.889162999999996 ], + [ 8.5652307, 46.8893314 ], + [ 8.565321, 46.8892972 ], + [ 8.5653955, 46.8893699 ], + [ 8.5655757, 46.8892397 ], + [ 8.5656334, 46.8892956 ], + [ 8.565732, 46.8892615 ], + [ 8.5658393, 46.8893341 ], + [ 8.5659371, 46.8892661 ], + [ 8.5660532, 46.8893273 ], + [ 8.5661923, 46.8892704 ], + [ 8.5662428, 46.8893714 ], + [ 8.5664146, 46.8893144 ], + [ 8.5665225, 46.8894151 ], + [ 8.5666615, 46.8893131 ], + [ 8.5668383, 46.8896893 ], + [ 8.5668937, 46.8895146 ], + [ 8.566908399999999, 46.8893569 ], + [ 8.5669958, 46.8890639 ], + [ 8.5670182, 46.8888443 ], + [ 8.5670493, 46.888681 ], + [ 8.5670477, 46.8885291 ], + [ 8.567037599999999, 46.8883209 ], + [ 8.5670432, 46.8880789 ], + [ 8.5670579, 46.8878819 ], + [ 8.5670873, 46.8876004 ], + [ 8.5671427, 46.8873864 ], + [ 8.5672066, 46.8871891 ], + [ 8.5672621, 46.88702 ], + [ 8.5673102, 46.8868904 ], + [ 8.5673345, 46.8867945 ], + [ 8.5673657, 46.8866819 ], + [ 8.5673891, 46.8865861 ], + [ 8.5674381, 46.8865352 ], + [ 8.5675118, 46.8864899 ], + [ 8.5676017, 46.8863993 ], + [ 8.5676746, 46.8863145 ], + [ 8.5677882, 46.8862184 ], + [ 8.5679187, 46.8861052 ], + [ 8.568057, 46.8859751 ], + [ 8.5681545, 46.8858508 ], + [ 8.5682442, 46.8857884 ], + [ 8.5683428, 46.8857204 ], + [ 8.5685301, 46.8856182 ], + [ 8.5687183, 46.8855216 ], + [ 8.5688901, 46.8854251 ], + [ 8.5690286, 46.88534 ], + [ 8.5692251, 46.8852095 ], + [ 8.5693801, 46.8850906 ], + [ 8.5695266, 46.8849606 ], + [ 8.5696074, 46.8848645 ], + [ 8.5696968, 46.8847064 ], + [ 8.5697528, 46.8845655 ], + [ 8.5698415, 46.8844526 ], + [ 8.5699956, 46.8842548 ], + [ 8.5700459, 46.8841866 ], + [ 8.5784036, 46.8840915 ], + [ 8.5783674, 46.8837401 ], + [ 8.5782742, 46.8834816 ], + [ 8.5781561, 46.8832516 ], + [ 8.5780396, 46.8830553 ], + [ 8.577897, 46.8828253 ], + [ 8.577829, 46.8826343 ], + [ 8.5777937, 46.8823982 ], + [ 8.577758, 46.8821057 ], + [ 8.5777713, 46.8818468 ], + [ 8.5777576, 46.881312199999996 ], + [ 8.5777468, 46.8810761 ], + [ 8.5777533, 46.8808791 ], + [ 8.5777996, 46.8805862 ], + [ 8.5778377, 46.8802935 ], + [ 8.5778822, 46.8798824 ], + [ 8.5778403, 46.8797589 ], + [ 8.5777157, 46.8796469 ], + [ 8.5775163, 46.8794454 ], + [ 8.5772174, 46.8791543 ], + [ 8.5769435, 46.8788798 ], + [ 8.5764778, 46.8784209 ], + [ 8.5761791, 46.8781354 ], + [ 8.5757725, 46.8777547 ], + [ 8.5756393, 46.8775811 ], + [ 8.5753132, 46.8770876 ], + [ 8.5753846, 46.8768565 ], + [ 8.5754979, 46.8766702 ], + [ 8.5756437, 46.876433 ], + [ 8.5757478, 46.8761963 ], + [ 8.5757219, 46.8760557 ], + [ 8.5756131, 46.8759156 ], + [ 8.5753962, 46.875624 ], + [ 8.5749904, 46.8753165 ], + [ 8.5746339, 46.8749751 ], + [ 8.574309, 46.8745773 ], + [ 8.5740436, 46.8743142 ], + [ 8.573827, 46.8741126 ], + [ 8.5737362, 46.8740061 ], + [ 8.5736771, 46.8739277 ], + [ 8.5730693, 46.8723215 ], + [ 8.5729044, 46.8723166 ], + [ 8.5727148, 46.8722669 ], + [ 8.5725171, 46.8721836 ], + [ 8.5722363, 46.8720499 ], + [ 8.572095000000001, 46.8718761 ], + [ 8.5719283, 46.8717081 ], + [ 8.5717779, 46.8715007 ], + [ 8.5714748, 46.8715473 ], + [ 8.5712446, 46.8715597 ], + [ 8.570965900000001, 46.8716004 ], + [ 8.570687, 46.8716694 ], + [ 8.5703426, 46.8717442 ], + [ 8.5699739, 46.8718362 ], + [ 8.5697356, 46.871888 ], + [ 8.5695391, 46.8719002 ], + [ 8.5693744, 46.8719066 ], + [ 8.5689792, 46.8718242 ], + [ 8.5684775, 46.8717873 ], + [ 8.5681732, 46.8717438 ], + [ 8.568008, 46.8716884 ], + [ 8.5675768, 46.871336 ], + [ 8.5673116, 46.8710841 ], + [ 8.5670135, 46.8708662 ], + [ 8.5667234, 46.8706763 ], + [ 8.5664428, 46.8705482 ], + [ 8.5661459, 46.8704259 ], + [ 8.5658491, 46.8703486 ], + [ 8.565593400000001, 46.8702711 ], + [ 8.5653125, 46.8701318 ], + [ 8.564759, 46.8698532 ], + [ 8.564123, 46.8695075 ], + [ 8.5632804, 46.8690446 ], + [ 8.5630486, 46.8688994 ], + [ 8.5628248, 46.8687036 ], + [ 8.5626906, 46.8684791 ], + [ 8.5625164, 46.8683449 ], + [ 8.5622431, 46.8681325 ], + [ 8.5619531, 46.867869400000004 ], + [ 8.561588799999999, 46.867618 ], + [ 8.561168, 46.8674513 ], + [ 8.5607552, 46.8672733 ], + [ 8.5604747, 46.8671452 ], + [ 8.560178, 46.8670341 ], + [ 8.5599547, 46.8669002 ], + [ 8.5597801, 46.8667435 ], + [ 8.5596962, 46.8665695 ], + [ 8.5597115, 46.86644 ], + [ 8.5597834, 46.8662707 ], + [ 8.559807, 46.8661075 ], + [ 8.5597142, 46.8658604 ], + [ 8.5596126, 46.8655908 ], + [ 8.5595038, 46.8654056 ], + [ 8.5592718, 46.8652436 ], + [ 8.5590159, 46.865121 ], + [ 8.5587273, 46.8649986 ], + [ 8.5585449, 46.8648251 ], + [ 8.5584109, 46.8646063 ], + [ 8.5582932, 46.8643086 ], + [ 8.5582157, 46.8640108 ], + [ 8.5580987, 46.8637863 ], + [ 8.5579901, 46.8636461 ], + [ 8.557989599999999, 46.8635448 ], + [ 8.5581782, 46.8635102 ], + [ 8.5583338, 46.8634644 ], + [ 8.5584723, 46.8633793 ], + [ 8.5585865, 46.8632775 ], + [ 8.5586581, 46.8630914 ], + [ 8.5587138, 46.8628548 ], + [ 8.5587446, 46.8626802 ], + [ 8.558891299999999, 46.8625614 ], + [ 8.5590137, 46.8624538 ], + [ 8.559078, 46.8623522 ], + [ 8.5591183, 46.8622395 ], + [ 8.5590595, 46.8621329 ], + [ 8.5589678, 46.8620207 ], + [ 8.5587784, 46.8619373 ], + [ 8.5586623, 46.8618365 ], + [ 8.5586207, 46.8617637 ], + [ 8.5586025, 46.8616399 ], + [ 8.5585601, 46.8614938 ], + [ 8.5585579, 46.8613082 ], + [ 8.558605, 46.8610884 ], + [ 8.5585945, 46.8608635 ], + [ 8.5585766, 46.8606722 ], + [ 8.5584344, 46.8604535 ], + [ 8.5582604, 46.8603249 ], + [ 8.5579799, 46.8601969 ], + [ 8.5577076, 46.8600743 ], + [ 8.5575008, 46.8599403 ], + [ 8.5573601, 46.8598398 ], + [ 8.5572439, 46.8597277 ], + [ 8.5570605, 46.8595037 ], + [ 8.5568531, 46.8592626 ], + [ 8.5566532, 46.8589935 ], + [ 8.5564612, 46.8587075 ], + [ 8.5563186, 46.858393 ], + [ 8.5561591, 46.8580506 ], + [ 8.5560669, 46.857916 ], + [ 8.5558765, 46.8577819 ], + [ 8.5557444, 46.8576981 ], + [ 8.5555951, 46.8575356 ], + [ 8.5555679, 46.8573276 ], + [ 8.5555503, 46.8571533 ], + [ 8.5552358, 46.8569691 ], + [ 8.5550615, 46.8568237 ], + [ 8.554920599999999, 46.8566274 ], + [ 8.5548126, 46.8565209 ], + [ 8.5546455, 46.8562854 ], + [ 8.5544708, 46.8560444 ], + [ 8.5542306, 46.8558429 ], + [ 8.5540146, 46.855624399999996 ], + [ 8.5538232, 46.8554059 ], + [ 8.5536978, 46.8552096 ], + [ 8.5535153, 46.8549854 ], + [ 8.5533322, 46.8547332 ], + [ 8.5532057, 46.8544412 ], + [ 8.5531532, 46.85416 ], + [ 8.5531589, 46.8538449 ], + [ 8.5533041, 46.8536134 ], + [ 8.5534415, 46.8533989 ], + [ 8.5536532, 46.8531728 ], + [ 8.5538652, 46.853003 ], + [ 8.5540197, 46.8528671 ], + [ 8.5544978, 46.8522064 ], + [ 8.5540108, 46.8519613 ], + [ 8.553556799999999, 46.8517665 ], + [ 8.5532595, 46.851616 ], + [ 8.5529456, 46.85146 ], + [ 8.552442, 46.8512036 ], + [ 8.552037200000001, 46.8509691 ], + [ 8.5515416, 46.8507409 ], + [ 8.5513677, 46.8506123 ], + [ 8.5512601, 46.8505228 ], + [ 8.5512261, 46.8504216 ], + [ 8.5512008, 46.8503091 ], + [ 8.5511994, 46.850163 ], + [ 8.5512471, 46.8500107 ], + [ 8.5513689, 46.8499201 ], + [ 8.5515161, 46.8498238 ], + [ 8.5515731, 46.8498066 ], + [ 8.5516464, 46.8497443 ], + [ 8.5517773, 46.8496143 ], + [ 8.551995699999999, 46.849315 ], + [ 8.5521571, 46.8490385 ], + [ 8.5521641, 46.8488584 ], + [ 8.5520236, 46.8488028 ], + [ 8.551859199999999, 46.8487811 ], + [ 8.5517109, 46.8487424 ], + [ 8.5515866, 46.8486755 ], + [ 8.551454, 46.8485636 ], + [ 8.5513473, 46.8485191 ], + [ 8.5511986, 46.8484972 ], + [ 8.5510673, 46.8484528 ], + [ 8.55096, 46.8484141 ], + [ 8.5507621, 46.848353 ], + [ 8.5505558, 46.8482866 ], + [ 8.5503579, 46.8481862 ], + [ 8.5502005, 46.8480688 ], + [ 8.5500267, 46.8479064 ], + [ 8.5498201, 46.8477836 ], + [ 8.549482, 46.8476784 ], + [ 8.5492179, 46.8475896 ], + [ 8.5489291, 46.8474559 ], + [ 8.5487307, 46.847333 ], + [ 8.548547899999999, 46.8471313 ], + [ 8.5482662, 46.8468626 ], + [ 8.5479846, 46.8465994 ], + [ 8.5476613, 46.8463422 ], + [ 8.5472462, 46.8459222 ], + [ 8.5470388, 46.8457205 ], + [ 8.5469223, 46.8455129 ], + [ 8.5466653, 46.845289 ], + [ 8.5464084, 46.8451102 ], + [ 8.5461693, 46.8449594 ], + [ 8.5458478, 46.8448653 ], + [ 8.5455679, 46.8448441 ], + [ 8.5453216, 46.8448227 ], + [ 8.5450587, 46.8447903 ], + [ 8.5448442, 46.8447181 ], + [ 8.5446622, 46.8445952 ], + [ 8.5445461, 46.8444494 ], + [ 8.5444123, 46.8442812 ], + [ 8.5443124, 46.8441242 ], + [ 8.5441798, 46.8440123 ], + [ 8.5440397, 46.8439341 ], + [ 8.5438254, 46.8438733 ], + [ 8.5436195, 46.8438236 ], + [ 8.5434058, 46.8437908 ], + [ 8.5431745, 46.8437019 ], + [ 8.5429268, 46.843568 ], + [ 8.542671, 46.8434005 ], + [ 8.5424144, 46.843199 ], + [ 8.5420827, 46.8428855 ], + [ 8.5418328, 46.842566 ], + [ 8.5415332, 46.8421847 ], + [ 8.541209, 46.8417586 ], + [ 8.5410422, 46.8415343 ], + [ 8.5409097, 46.841428 ], + [ 8.5405482, 46.8413791 ], + [ 8.5401775, 46.8413246 ], + [ 8.5397999, 46.8412925 ], + [ 8.5394623, 46.8412097 ], + [ 8.5389196, 46.8411561 ], + [ 8.5380892, 46.8410643 ], + [ 8.537677500000001, 46.8409649 ], + [ 8.5372668, 46.840995 ], + [ 8.5366017, 46.8410094 ], + [ 8.536183, 46.8410113 ], + [ 8.5358124, 46.8409568 ], + [ 8.535449700000001, 46.8408121 ], + [ 8.5350204, 46.8405722 ], + [ 8.5348299, 46.840393 ], + [ 8.5347715, 46.8403427 ], + [ 8.5345832, 46.8403886 ], + [ 8.5343797, 46.8405358 ], + [ 8.5342582, 46.8407277 ], + [ 8.5341617, 46.8409364 ], + [ 8.5339905, 46.841061 ], + [ 8.5336299, 46.8411809 ], + [ 8.5330969, 46.8412395 ], + [ 8.5326699, 46.8412359 ], + [ 8.5325952, 46.8411912 ], + [ 8.532512, 46.8410848 ], + [ 8.5323381, 46.8409168 ], + [ 8.5321808, 46.8408387 ], + [ 8.5318598, 46.840767 ], + [ 8.5313839, 46.8407749 ], + [ 8.530875, 46.840811 ], + [ 8.5303422, 46.8409654 ], + [ 8.5299411, 46.8410686 ], + [ 8.5298769, 46.8412151 ], + [ 8.5297473, 46.8414071 ], + [ 8.5295681, 46.8416218 ], + [ 8.5293728, 46.841814 ], + [ 8.5291938, 46.8419949 ], + [ 8.5288835, 46.8421708 ], + [ 8.5285235, 46.8423187 ], + [ 8.5281719, 46.8424386 ], + [ 8.5277696, 46.8425192 ], + [ 8.527426, 46.8426276 ], + [ 8.5270816, 46.8426574 ], + [ 8.526901, 46.8427202 ], + [ 8.5266149, 46.8428396 ], + [ 8.5263454, 46.8430041 ], + [ 8.5259448, 46.8432141 ], + [ 8.5257, 46.8433446 ], + [ 8.5253725, 46.8435206 ], + [ 8.5250621, 46.8436909 ], + [ 8.5247768, 46.8439285 ], + [ 8.5245087, 46.8441661 ], + [ 8.5243131, 46.8443807 ], + [ 8.524053, 46.8446521 ], + [ 8.5237279, 46.8450249 ], + [ 8.5234351, 46.8453414 ], + [ 8.5232238, 46.8455506 ], + [ 8.5230849, 46.8456525 ], + [ 8.5229465, 46.8457376 ], + [ 8.5225369, 46.8459083 ], + [ 8.5218582, 46.8462265 ], + [ 8.5215313, 46.8463911 ], + [ 8.5212449, 46.8464938 ], + [ 8.5209989, 46.846568 ], + [ 8.5207452, 46.8466255 ], + [ 8.5204577, 46.8466718 ], + [ 8.5200312, 46.846775 ], + [ 8.5196626, 46.8468273 ], + [ 8.5193749, 46.846823 ], + [ 8.5191525, 46.8467678 ], + [ 8.5189792, 46.8467066 ], + [ 8.5187409, 46.8466346 ], + [ 8.5185183, 46.8465681 ], + [ 8.5182304, 46.846513 ], + [ 8.5179169, 46.8464076 ], + [ 8.5176697, 46.8463412 ], + [ 8.5174633, 46.846224 ], + [ 8.5173311, 46.8461683 ], + [ 8.5170765, 46.8461413 ], + [ 8.5168296, 46.8461311 ], + [ 8.5166988, 46.846188 ], + [ 8.5166012, 46.8462673 ], + [ 8.5164876, 46.8464028 ], + [ 8.5163897, 46.8464651 ], + [ 8.516144, 46.8465562 ], + [ 8.5158329, 46.8466533 ], + [ 8.5154892, 46.8468406 ], + [ 8.5151465, 46.8470391 ], + [ 8.5148609, 46.8472654 ], + [ 8.5146175, 46.8475478 ], + [ 8.5143255, 46.8480275 ], + [ 8.5143358, 46.8482188 ], + [ 8.5143791, 46.8484156 ], + [ 8.5144543, 46.8486122 ], + [ 8.5144976, 46.8488089 ], + [ 8.5145145, 46.8489157 ], + [ 8.5146223, 46.8489772 ], + [ 8.5147866, 46.8489989 ], + [ 8.5149186, 46.8490433 ], + [ 8.5149691, 46.8491501 ], + [ 8.5150106, 46.8492173 ], + [ 8.5151595, 46.8492843 ], + [ 8.515225, 46.8493234 ], + [ 8.5152913, 46.8493624 ], + [ 8.5154239, 46.8494743 ], + [ 8.5156139, 46.8496311 ], + [ 8.515796, 46.8497653 ], + [ 8.5158797, 46.8498944 ], + [ 8.5160771, 46.8499666 ], + [ 8.5163171, 46.8500837 ], + [ 8.5167039, 46.8501664 ], + [ 8.5168366, 46.8502839 ], + [ 8.5171896, 46.8503161 ], + [ 8.5172977, 46.8504338 ], + [ 8.5174804, 46.8506356 ], + [ 8.5177128, 46.8509045 ], + [ 8.517714, 46.8510059 ], + [ 8.5176738, 46.8510848 ], + [ 8.5175017, 46.8512095 ], + [ 8.5177015, 46.8514842 ], + [ 8.5178019, 46.8516695 ], + [ 8.517894, 46.8518492 ], + [ 8.5178951, 46.8519449 ], + [ 8.5178886, 46.852108 ], + [ 8.517824, 46.8521984 ], + [ 8.5177262, 46.8523058 ], + [ 8.5175137, 46.8524586 ], + [ 8.5173009, 46.8525552 ], + [ 8.5170065, 46.8526692 ], + [ 8.5168184, 46.8527713 ], + [ 8.5167287, 46.8528786 ], + [ 8.516674, 46.8530926 ], + [ 8.516678, 46.8535372 ], + [ 8.5166136, 46.8536781 ], + [ 8.5165155, 46.8537743 ], + [ 8.5163685, 46.853881799999996 ], + [ 8.5162465, 46.8540118 ], + [ 8.5161336, 46.8542262 ], + [ 8.5161013, 46.8542882 ], + [ 8.5159627, 46.8544071 ], + [ 8.5158403, 46.8544357 ], + [ 8.5156922, 46.8544476 ], + [ 8.5155447, 46.8544482 ], + [ 8.5154463, 46.8544881 ], + [ 8.5153891, 46.854539 ], + [ 8.5153486, 46.8546011 ], + [ 8.5152512, 46.8546915 ], + [ 8.5151692, 46.8547707 ], + [ 8.5150299, 46.8548163 ], + [ 8.5148087, 46.8548624 ], + [ 8.5145295, 46.8548749 ], + [ 8.5143495, 46.854932 ], + [ 8.5141779, 46.8550397 ], + [ 8.5140552, 46.8551359 ], + [ 8.5139576, 46.8551701 ], + [ 8.5138342, 46.8551876 ], + [ 8.5135635, 46.855222499999996 ], + [ 8.5131693, 46.8552637 ], + [ 8.5128742, 46.8553438 ], + [ 8.5125465, 46.8554746 ], + [ 8.5123684, 46.8557061 ], + [ 8.5122715, 46.8558642 ], + [ 8.5122322, 46.856112 ], + [ 8.5118153, 46.8562939 ], + [ 8.5116098, 46.8563061 ], + [ 8.5112935, 46.8567182 ], + [ 8.5111971, 46.8569831 ], + [ 8.510915, 46.8567256 ], + [ 8.5106583, 46.8565129 ], + [ 8.5104181, 46.8563057 ], + [ 8.5100792, 46.8560822 ], + [ 8.5097656, 46.8558922 ], + [ 8.5094607, 46.8557698 ], + [ 8.509082, 46.8556815 ], + [ 8.5086865, 46.8556214 ], + [ 8.5086714, 46.8557283 ], + [ 8.5086804, 46.8558521 ], + [ 8.5087569, 46.8561106 ], + [ 8.5086921, 46.8561896 ], + [ 8.5086271, 46.8563024 ], + [ 8.5086533, 46.8564655 ], + [ 8.5086891, 46.8567411 ], + [ 8.5087326, 46.8570335 ], + [ 8.5087347, 46.8572192 ], + [ 8.5086957, 46.8574838 ], + [ 8.5085591, 46.8577883 ], + [ 8.5084375, 46.8580195 ], + [ 8.508276500000001, 46.8583355 ], + [ 8.5081717, 46.858589 ], + [ 8.5081174, 46.8589494 ], + [ 8.5080951, 46.8591465 ], + [ 8.5080724, 46.859366 ], + [ 8.5080578, 46.8595799 ], + [ 8.5080518, 46.8598556 ], + [ 8.5080462, 46.8601088 ], + [ 8.5080165, 46.8604298 ], + [ 8.507986, 46.8606718 ], + [ 8.5079707, 46.860807 ], + [ 8.5080135, 46.8609812 ], + [ 8.508056, 46.8611837 ], + [ 8.5081235, 46.8614027 ], + [ 8.5081663, 46.861577 ], + [ 8.5082509, 46.8617905 ], + [ 8.508285, 46.8619816 ], + [ 8.5083196, 46.8621559 ], + [ 8.508338, 46.8623809 ], + [ 8.5083486, 46.8626228 ], + [ 8.5083188, 46.8628986 ], + [ 8.5082721, 46.8631858 ], + [ 8.5082173, 46.8634843 ], + [ 8.5081286, 46.863721 ], + [ 8.5080738, 46.8639745 ], + [ 8.5080251, 46.8649482 ], + [ 8.5080706, 46.8654263 ], + [ 8.5080888, 46.8656401 ], + [ 8.5081559, 46.8657973 ], + [ 8.5082397, 46.8659714 ], + [ 8.5083393, 46.8660778 ], + [ 8.508455099999999, 46.8661279 ], + [ 8.508636, 46.8661553 ], + [ 8.508883, 46.8661654 ], + [ 8.5092942, 46.8661917 ], + [ 8.5096401, 46.866314 ], + [ 8.5098553, 46.8664987 ], + [ 8.5099804, 46.8666444 ], + [ 8.5100225, 46.866785 ], + [ 8.5100896, 46.8669422 ], + [ 8.5100755, 46.8671842 ], + [ 8.5100861, 46.867426 ], + [ 8.5101211, 46.8676623 ], + [ 8.5101644, 46.8678984 ], + [ 8.5101253, 46.8681181 ], + [ 8.5100933, 46.8682419 ], + [ 8.5101033, 46.8683713 ], + [ 8.5101693, 46.8684779 ], + [ 8.5102771, 46.8685788 ], + [ 8.5102123, 46.8686579 ], + [ 8.5101719, 46.8687312 ], + [ 8.5101654, 46.868854999999996 ], + [ 8.5101581, 46.8689845 ], + [ 8.5102085, 46.8690855 ], + [ 8.5102251, 46.8691811 ], + [ 8.5101358, 46.8692658 ], + [ 8.5100464, 46.8693844 ], + [ 8.5100561, 46.8695026 ], + [ 8.5101722, 46.869654 ], + [ 8.51024, 46.8698844 ], + [ 8.5103245, 46.8700979 ], + [ 8.5103436, 46.8703566 ], + [ 8.5102876, 46.8705875 ], + [ 8.5101911, 46.8707681 ], + [ 8.510102, 46.8709034 ], + [ 8.5100783, 46.871033 ], + [ 8.510096, 46.8711397 ], + [ 8.5100797, 46.8712242 ], + [ 8.5100233, 46.8712752 ], + [ 8.5098593, 46.8713153 ], + [ 8.5096786, 46.871378 ], + [ 8.5095809, 46.8714572 ], + [ 8.5094833, 46.8715758 ], + [ 8.5094357, 46.8717393 ], + [ 8.5094376, 46.8719193 ], + [ 8.5095297, 46.8721383 ], + [ 8.5095886, 46.8722562 ], + [ 8.5097054, 46.8724414 ], + [ 8.5098716, 46.872632 ], + [ 8.5100861, 46.8727829 ], + [ 8.5102599, 46.8729059 ], + [ 8.510409, 46.8730234 ], + [ 8.5105248, 46.8731129 ], + [ 8.5105919, 46.8732307 ], + [ 8.5106338, 46.8733601 ], + [ 8.5106432, 46.8734613 ], + [ 8.510669, 46.8735625 ], + [ 8.5107518, 46.8736859 ], + [ 8.5108352, 46.873798 ], + [ 8.5109519, 46.8739326 ], + [ 8.511034800000001, 46.8740222 ], + [ 8.5110768, 46.874151499999996 ], + [ 8.5110784, 46.8742752 ], + [ 8.5110952, 46.8743764 ], + [ 8.5111618, 46.8744718 ], + [ 8.5112371, 46.8745446 ], + [ 8.5113194, 46.8746006 ], + [ 8.5113939, 46.874679 ], + [ 8.5114612, 46.874763 ], + [ 8.511544, 46.8748471 ], + [ 8.5116347, 46.8749142 ], + [ 8.5117591, 46.8749812 ], + [ 8.5119478, 46.875031 ], + [ 8.5121539, 46.8750863 ], + [ 8.5123515, 46.8751249 ], + [ 8.512614899999999, 46.8751799 ], + [ 8.5128708, 46.8752633 ], + [ 8.5130605, 46.8753637 ], + [ 8.513168199999999, 46.8754588 ], + [ 8.5132846, 46.8755821 ], + [ 8.5134178, 46.8757221 ], + [ 8.5135664, 46.8758115 ], + [ 8.5137074, 46.8759741 ], + [ 8.5137911, 46.876103 ], + [ 8.5138086, 46.8762381 ], + [ 8.5138105, 46.8764181 ], + [ 8.5138277, 46.8765418 ], + [ 8.5139111, 46.8766484 ], + [ 8.5140187, 46.8767436 ], + [ 8.5141019, 46.8768444 ], + [ 8.5141692, 46.8769679 ], + [ 8.5142524, 46.8771138 ], + [ 8.5143852, 46.8772314 ], + [ 8.5145093, 46.8773321 ], + [ 8.5145924, 46.8774275 ], + [ 8.5146265, 46.8775343 ], + [ 8.5147099, 46.8776857 ], + [ 8.514842699999999, 46.8778034 ], + [ 8.5150738, 46.8779204 ], + [ 8.5154949, 46.8781098 ], + [ 8.515726, 46.8782664 ], + [ 8.5158668, 46.8783783 ], + [ 8.5160154, 46.8783889 ], + [ 8.5163113, 46.8783819 ], + [ 8.5166319, 46.8784199 ], + [ 8.5168628, 46.8785257 ], + [ 8.5170376, 46.8786993 ], + [ 8.517089, 46.8789299 ], + [ 8.5170171, 46.8791496 ], + [ 8.5168624, 46.8793698 ], + [ 8.5166591, 46.8795339 ], + [ 8.5164546, 46.8796812 ], + [ 8.5162682, 46.8799126 ], + [ 8.5160893, 46.8801104 ], + [ 8.5158766, 46.8802182 ], + [ 8.5156053, 46.8802251 ], + [ 8.5153089, 46.8802039 ], + [ 8.5151781, 46.8802664 ], + [ 8.5150972, 46.8804468 ], + [ 8.5151241, 46.8806436 ], + [ 8.5152415, 46.8808964 ], + [ 8.5153263, 46.8811604 ], + [ 8.5153696, 46.8814359 ], + [ 8.5153727, 46.8817173 ], + [ 8.5154156, 46.8819759 ], + [ 8.5153936, 46.8821842 ], + [ 8.5154194, 46.8823697 ], + [ 8.5155036, 46.8826002 ], + [ 8.5157109, 46.8827568 ], + [ 8.5159507, 46.8828963 ], + [ 8.5161571, 46.883008 ], + [ 8.5163234, 46.8831647 ], + [ 8.5164481, 46.8833274 ], + [ 8.5166795, 46.8834613 ], + [ 8.517034, 46.8835948 ], + [ 8.517290299999999, 46.8837399 ], + [ 8.517563299999999, 46.8839413 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "JBG0036", + "country" : "CHE", + "name" : [ + { + "text" : "Eidgenössisches Jagdbanngebiet Urirotstock", + "lang" : "de-CH" + }, + { + "text" : "District franc fédéral Urirotstock", + "lang" : "fr-CH" + }, + { + "text" : "Bandita federale di caccia Urirotstock", + "lang" : "it-CH" + }, + { + "text" : "Federal Game Reserve Urirotstock", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5322612, 47.5294022 ], + [ 7.5322368, 47.529375 ], + [ 7.532222, 47.5293766 ], + [ 7.532187, 47.5293906 ], + [ 7.5317984, 47.5295211 ], + [ 7.5312298, 47.5296967 ], + [ 7.5307755, 47.5298127 ], + [ 7.5303766, 47.529945 ], + [ 7.5303363999999995, 47.5299583 ], + [ 7.5297627, 47.5306834 ], + [ 7.5282476, 47.531612 ], + [ 7.5305801, 47.5325059 ], + [ 7.5311985, 47.5331403 ], + [ 7.5315306, 47.5333249 ], + [ 7.5316147, 47.5334116 ], + [ 7.5325056, 47.5329804 ], + [ 7.5328887, 47.5328117 ], + [ 7.533255, 47.5326523 ], + [ 7.5338629, 47.5323755 ], + [ 7.5343108, 47.5321686 ], + [ 7.5344037, 47.5322764 ], + [ 7.5345618, 47.5324598 ], + [ 7.5346346, 47.5325443 ], + [ 7.5346706, 47.5325861 ], + [ 7.5347307, 47.5326559 ], + [ 7.534836, 47.5327783 ], + [ 7.5348382, 47.5327808 ], + [ 7.5349072, 47.5328772 ], + [ 7.5349964, 47.5330018 ], + [ 7.5350333, 47.5330532 ], + [ 7.535085, 47.5331254 ], + [ 7.5351454, 47.5331027 ], + [ 7.5357772, 47.5328909 ], + [ 7.5363121, 47.532756 ], + [ 7.5370667000000005, 47.53251 ], + [ 7.53714, 47.5326243 ], + [ 7.5371648, 47.532663 ], + [ 7.5372256, 47.5327578 ], + [ 7.5372864, 47.5328528 ], + [ 7.5375233999999995, 47.533224 ], + [ 7.5375725, 47.5333007 ], + [ 7.5376055, 47.5333522 ], + [ 7.5376314, 47.5334134 ], + [ 7.5376777, 47.5335228 ], + [ 7.5377198, 47.5336223 ], + [ 7.5377381, 47.5336657 ], + [ 7.5377718, 47.5337453 ], + [ 7.5377762, 47.5337556 ], + [ 7.5378381, 47.5339273 ], + [ 7.5378529, 47.5339683 ], + [ 7.5378948, 47.5339838 ], + [ 7.5383445, 47.5341497 ], + [ 7.5384009, 47.5341705 ], + [ 7.5387622, 47.5343064 ], + [ 7.5388988999999995, 47.5343578 ], + [ 7.5391739, 47.5344564 ], + [ 7.5394635999999995, 47.5345604 ], + [ 7.5395847, 47.5346005 ], + [ 7.5393267, 47.5349292 ], + [ 7.5391598, 47.5348632 ], + [ 7.5389258, 47.5347736 ], + [ 7.5385721, 47.5346383 ], + [ 7.5385114, 47.5346161 ], + [ 7.5380972, 47.5344649 ], + [ 7.5379672, 47.5344175 ], + [ 7.5375543, 47.5342532 ], + [ 7.5375142, 47.5342372 ], + [ 7.5370273999999995, 47.5346268 ], + [ 7.5366256, 47.5349463 ], + [ 7.5365299, 47.5349351 ], + [ 7.5361142999999995, 47.5352238 ], + [ 7.5358795, 47.5354526 ], + [ 7.535643, 47.5358142 ], + [ 7.5355215, 47.5360565 ], + [ 7.5355077, 47.5360856 ], + [ 7.5355224, 47.5360967 ], + [ 7.5360389, 47.5364694 ], + [ 7.5365314, 47.53681 ], + [ 7.5374068, 47.537334 ], + [ 7.5377937, 47.537669 ], + [ 7.5382439, 47.5383387 ], + [ 7.5385108, 47.5387475 ], + [ 7.5387018, 47.5389203 ], + [ 7.5395568, 47.5394093 ], + [ 7.5395928, 47.5394299 ], + [ 7.5397586, 47.5395246 ], + [ 7.5400507999999995, 47.5392056 ], + [ 7.540396, 47.5388019 ], + [ 7.540803, 47.5383155 ], + [ 7.5408269, 47.5382887 ], + [ 7.5411063, 47.5384079 ], + [ 7.5414192, 47.5385336 ], + [ 7.5416662, 47.5381472 ], + [ 7.5418465999999995, 47.5378637 ], + [ 7.5418637, 47.5378378 ], + [ 7.542023, 47.5375436 ], + [ 7.5422081, 47.5372418 ], + [ 7.5422141, 47.5372403 ], + [ 7.5425874, 47.5371676 ], + [ 7.5428321, 47.5371896 ], + [ 7.5429193, 47.5371976 ], + [ 7.5429993, 47.5372048 ], + [ 7.5429981, 47.5370444 ], + [ 7.543334, 47.5368241 ], + [ 7.5436066, 47.5365671 ], + [ 7.5436635, 47.5364514 ], + [ 7.5436658, 47.5362169 ], + [ 7.5437180999999995, 47.5362169 ], + [ 7.5438388, 47.536218 ], + [ 7.5436028, 47.5357517 ], + [ 7.5432802, 47.5352457 ], + [ 7.5432353, 47.5352588 ], + [ 7.5430428, 47.5349694 ], + [ 7.5428525, 47.5346934 ], + [ 7.5426228, 47.5343585 ], + [ 7.5423318, 47.5339531 ], + [ 7.5423301, 47.5339506 ], + [ 7.542088, 47.5335343 ], + [ 7.5419569, 47.5332652 ], + [ 7.5418126, 47.5328924 ], + [ 7.541105, 47.5327286 ], + [ 7.5405809999999995, 47.5326084 ], + [ 7.5399513, 47.5324611 ], + [ 7.5398855000000005, 47.532586 ], + [ 7.5397984000000005, 47.5325689 ], + [ 7.5394124, 47.5324934 ], + [ 7.53933, 47.5324781 ], + [ 7.5391454, 47.5324432 ], + [ 7.5389228, 47.5324014 ], + [ 7.5388843, 47.5323943 ], + [ 7.5390581, 47.5318571 ], + [ 7.5382964999999995, 47.5316451 ], + [ 7.5377627, 47.5314956 ], + [ 7.5372873, 47.5313845 ], + [ 7.5367161, 47.5312806 ], + [ 7.5363259, 47.5311663 ], + [ 7.53596, 47.5309698 ], + [ 7.535635, 47.5307773 ], + [ 7.5350522, 47.531213 ], + [ 7.5348016, 47.5313793 ], + [ 7.5345048, 47.5315232 ], + [ 7.5343941999999995, 47.531407 ], + [ 7.5343349, 47.5313447 ], + [ 7.5342418, 47.5312467 ], + [ 7.5342362, 47.5312409 ], + [ 7.5341381, 47.5311377 ], + [ 7.5339066, 47.5308942 ], + [ 7.5338577, 47.5308428 ], + [ 7.533784, 47.5307667 ], + [ 7.5337512, 47.530731 ], + [ 7.5337111, 47.5307517 ], + [ 7.5337134, 47.5307542 ], + [ 7.5336746, 47.530778 ], + [ 7.5323356, 47.5293396 ], + [ 7.5322612, 47.5294022 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns262", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Allschwilerwald", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Allschwilerwald", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Allschwilerwald", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Allschwilerwald", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6935683, 47.4147325 ], + [ 7.6935561, 47.4147476 ], + [ 7.693526, 47.414769 ], + [ 7.6934986, 47.4148034 ], + [ 7.6934586, 47.4148323 ], + [ 7.693416, 47.4148575 ], + [ 7.6933847, 47.4148689 ], + [ 7.6933539, 47.414875 ], + [ 7.693334, 47.4148788 ], + [ 7.6932922999999995, 47.4148794 ], + [ 7.6933021, 47.4148828 ], + [ 7.6932756, 47.4148975 ], + [ 7.6931691, 47.4150129 ], + [ 7.6931017, 47.4151786 ], + [ 7.6930944, 47.4152604 ], + [ 7.6930928, 47.4152921 ], + [ 7.6930905, 47.4153249 ], + [ 7.6930874, 47.4153577 ], + [ 7.6930836, 47.4153905 ], + [ 7.6930778, 47.4153945 ], + [ 7.6941997, 47.4155063 ], + [ 7.6944282, 47.4155292 ], + [ 7.6944295, 47.4155294 ], + [ 7.6944794, 47.4155373 ], + [ 7.6947242, 47.4155763 ], + [ 7.694977, 47.4156614 ], + [ 7.6951879, 47.4157704 ], + [ 7.6953918, 47.415889 ], + [ 7.6955186, 47.4160077 ], + [ 7.6955658, 47.4161067 ], + [ 7.6955753, 47.4161265 ], + [ 7.6956036, 47.4161883 ], + [ 7.695703, 47.4161791 ], + [ 7.6958139, 47.4161688 ], + [ 7.6958909, 47.4161496 ], + [ 7.6959236, 47.416148 ], + [ 7.6959891, 47.4161446 ], + [ 7.6961576, 47.4161966 ], + [ 7.6962561, 47.416263 ], + [ 7.6963547, 47.4163485 ], + [ 7.6964681, 47.4158323 ], + [ 7.6964423, 47.4158153 ], + [ 7.6964404, 47.4158141 ], + [ 7.6964122, 47.4157964 ], + [ 7.6963834, 47.415779 ], + [ 7.6963539999999995, 47.4157621 ], + [ 7.6963364, 47.415752499999996 ], + [ 7.6963184, 47.4157433 ], + [ 7.6963, 47.4157345 ], + [ 7.6962813, 47.415726 ], + [ 7.6962523, 47.4157136 ], + [ 7.6962229, 47.4157016 ], + [ 7.6961933, 47.4156899 ], + [ 7.6961633, 47.4156786 ], + [ 7.696133, 47.4156677 ], + [ 7.6961143, 47.4156614 ], + [ 7.6960953, 47.4156555 ], + [ 7.696076, 47.4156499 ], + [ 7.6960565, 47.4156448 ], + [ 7.6960368, 47.41564 ], + [ 7.6960169, 47.4156357 ], + [ 7.6959798, 47.4156281 ], + [ 7.6959428, 47.4156204 ], + [ 7.6959058, 47.4156126 ], + [ 7.6958687999999995, 47.4156048 ], + [ 7.6958312, 47.415597 ], + [ 7.6957934, 47.4155897 ], + [ 7.6957554, 47.4155829 ], + [ 7.6957173, 47.4155765 ], + [ 7.6956919, 47.4155721 ], + [ 7.6956667, 47.4155673 ], + [ 7.6956416999999995, 47.415562 ], + [ 7.6956169, 47.4155563 ], + [ 7.6955924, 47.4155501 ], + [ 7.6955681, 47.4155434 ], + [ 7.6955441, 47.4155363 ], + [ 7.6955203999999995, 47.4155288 ], + [ 7.6953853, 47.415496 ], + [ 7.6952496, 47.4155105 ], + [ 7.6950465, 47.4154559 ], + [ 7.6948423, 47.4153428 ], + [ 7.6946668, 47.4153004 ], + [ 7.6946315, 47.4152576 ], + [ 7.694603, 47.4151673 ], + [ 7.6946375, 47.4150482 ], + [ 7.694616, 47.4149483 ], + [ 7.6945664, 47.4148389 ], + [ 7.6944678, 47.414744 ], + [ 7.6942779, 47.4146302 ], + [ 7.6941304, 47.4145781 ], + [ 7.6940251, 47.4145498 ], + [ 7.6938634, 47.4144669 ], + [ 7.6938527, 47.4144732 ], + [ 7.6938421, 47.4144781 ], + [ 7.6937839, 47.4145016 ], + [ 7.6937643, 47.4145407 ], + [ 7.6937375, 47.4145716 ], + [ 7.6937022, 47.4145941 ], + [ 7.6936618, 47.4146293 ], + [ 7.6935886, 47.4147075 ], + [ 7.6935683, 47.4147325 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns351", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Oberthalrain", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Oberthalrain", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Oberthalrain", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Oberthalrain", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.9035353, 47.5727265 ], + [ 7.9035234, 47.5724747 ], + [ 7.903492, 47.5722237 ], + [ 7.9034412, 47.5719741 ], + [ 7.9033712, 47.5717267 ], + [ 7.9032822, 47.5714821 ], + [ 7.9031744, 47.571241 ], + [ 7.903048, 47.5710041 ], + [ 7.9029036, 47.5707719 ], + [ 7.9027413, 47.5705452 ], + [ 7.9025618, 47.5703245 ], + [ 7.9023654, 47.5701105 ], + [ 7.9021528, 47.5699038 ], + [ 7.9019245, 47.5697048 ], + [ 7.901681, 47.5695142 ], + [ 7.9014232, 47.5693325 ], + [ 7.9011517, 47.5691602 ], + [ 7.9008673, 47.5689977 ], + [ 7.9005707, 47.5688456 ], + [ 7.9002627, 47.5687041 ], + [ 7.8999442, 47.5685737 ], + [ 7.899616, 47.5684549 ], + [ 7.8992791, 47.5683477 ], + [ 7.8989344, 47.5682527 ], + [ 7.8985828, 47.56817 ], + [ 7.8982253, 47.5680999 ], + [ 7.8978629, 47.5680425 ], + [ 7.8974965, 47.567998 ], + [ 7.8971272, 47.5679666 ], + [ 7.896756, 47.5679483 ], + [ 7.8963839, 47.5679432 ], + [ 7.8960118999999995, 47.5679513 ], + [ 7.8956409999999995, 47.5679725 ], + [ 7.8952722, 47.5680068 ], + [ 7.8949067, 47.5680542 ], + [ 7.8945452, 47.5681144 ], + [ 7.894189, 47.5681873 ], + [ 7.8938388, 47.5682728 ], + [ 7.8934958, 47.5683705 ], + [ 7.8931608, 47.5684803 ], + [ 7.8928347, 47.5686018 ], + [ 7.8925184, 47.5687346 ], + [ 7.8922129, 47.5688785 ], + [ 7.8919189, 47.569033 ], + [ 7.8916373, 47.5691977 ], + [ 7.8913688, 47.5693722 ], + [ 7.8911141, 47.5695559 ], + [ 7.890874, 47.5697484 ], + [ 7.8906491, 47.5699491 ], + [ 7.89044, 47.5701575 ], + [ 7.8902474, 47.5703731 ], + [ 7.8900717, 47.5705951 ], + [ 7.8899133, 47.5708231 ], + [ 7.8897729, 47.5710564 ], + [ 7.8896505999999995, 47.5712943 ], + [ 7.889547, 47.5715363 ], + [ 7.8894621, 47.5717816 ], + [ 7.8893964, 47.5720295 ], + [ 7.8893499, 47.5722794 ], + [ 7.8893229, 47.5725307 ], + [ 7.8893153, 47.5727825 ], + [ 7.8893271, 47.5730343 ], + [ 7.8893585, 47.5732853 ], + [ 7.8894092, 47.5735349 ], + [ 7.8894791, 47.5737823 ], + [ 7.8895681, 47.5740269 ], + [ 7.8896759, 47.574268000000004 ], + [ 7.8898021, 47.574505 ], + [ 7.8899466, 47.5747372 ], + [ 7.8901088, 47.5749639 ], + [ 7.8902883, 47.5751846 ], + [ 7.8904846, 47.5753986 ], + [ 7.8906972, 47.5756054 ], + [ 7.8909255, 47.5758044 ], + [ 7.8911689, 47.575995 ], + [ 7.8914267, 47.5761767 ], + [ 7.8916982, 47.576349 ], + [ 7.8919827, 47.5765115 ], + [ 7.8922793, 47.5766637 ], + [ 7.8925874, 47.5768052 ], + [ 7.8929059, 47.5769356 ], + [ 7.8932341, 47.5770545 ], + [ 7.893571, 47.5771616 ], + [ 7.8939158, 47.5772567 ], + [ 7.8942674, 47.5773394 ], + [ 7.894625, 47.5774095 ], + [ 7.8949874, 47.5774669 ], + [ 7.8953539, 47.5775114 ], + [ 7.8957232, 47.5775428 ], + [ 7.8960945, 47.5775611 ], + [ 7.8964666999999995, 47.5775663 ], + [ 7.8968388, 47.5775582 ], + [ 7.8972098, 47.577537 ], + [ 7.8975786, 47.5775026 ], + [ 7.8979441999999995, 47.5774553 ], + [ 7.8983057, 47.577395 ], + [ 7.898662, 47.5773221 ], + [ 7.8990122, 47.5772366 ], + [ 7.8993553, 47.5771388 ], + [ 7.8996904, 47.577029 ], + [ 7.9000164999999996, 47.5769076 ], + [ 7.9003328, 47.5767747 ], + [ 7.9006383, 47.5766308 ], + [ 7.9009323, 47.5764763 ], + [ 7.9012139999999995, 47.5763115 ], + [ 7.9014825, 47.5761371 ], + [ 7.9017371, 47.5759533 ], + [ 7.9019772, 47.5757608 ], + [ 7.9022021, 47.57556 ], + [ 7.9024111999999995, 47.5753516 ], + [ 7.9026038, 47.575136 ], + [ 7.9027795, 47.574914 ], + [ 7.9029377, 47.574686 ], + [ 7.9030781999999995, 47.5744527 ], + [ 7.9032003, 47.5742147 ], + [ 7.903304, 47.5739728 ], + [ 7.9033887, 47.5737275 ], + [ 7.9034544, 47.5734795 ], + [ 7.9035008, 47.5732296 ], + [ 7.9035278, 47.5729783 ], + [ 7.9035353, 47.5727265 ] + ] + ], + "layer" : { + "upper" : 2000, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "EVA0002", + "country" : "CHE", + "name" : [ + { + "text" : "Messstation Wallbach", + "lang" : "de-CH" + }, + { + "text" : "Messstation Wallbach", + "lang" : "fr-CH" + }, + { + "text" : "Messstation Wallbach", + "lang" : "it-CH" + }, + { + "text" : "Messstation Wallbach", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Transitgas AG", + "lang" : "de-CH" + }, + { + "text" : "Transitgas AG", + "lang" : "fr-CH" + }, + { + "text" : "Transitgas AG", + "lang" : "it-CH" + }, + { + "text" : "Transitgas AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Technik", + "lang" : "de-CH" + }, + { + "text" : "Technik", + "lang" : "fr-CH" + }, + { + "text" : "Technik", + "lang" : "it-CH" + }, + { + "text" : "Technik", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.transitgas.ch/en/contact/", + "email" : "info@transitgas.ch", + "phone" : "0041414926010", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.151763, 46.172483 ], + [ 6.1517656, 46.1726677 ], + [ 6.1506777, 46.1731549 ], + [ 6.149815, 46.1740207 ], + [ 6.1494949, 46.1750499 ], + [ 6.1497661, 46.1760859 ], + [ 6.1505874, 46.1769709 ], + [ 6.1518337, 46.1775702 ], + [ 6.1533153, 46.1777926 ], + [ 6.1548066, 46.1776041 ], + [ 6.1560806, 46.1770335 ], + [ 6.1569432, 46.1761677 ], + [ 6.1571643, 46.1754567 ], + [ 6.1577929, 46.175272 ], + [ 6.1578894, 46.1752265 ], + [ 6.1589472, 46.174483 ], + [ 6.159519, 46.1735161 ], + [ 6.1595189, 46.1724707 ], + [ 6.158947, 46.171503799999996 ], + [ 6.1589183, 46.1714737 ], + [ 6.1587082, 46.1713261 ], + [ 6.1581018, 46.1708539 ], + [ 6.1579491, 46.1707929 ], + [ 6.1578591, 46.1707297 ], + [ 6.1576003, 46.1706535 ], + [ 6.1570275, 46.1704247 ], + [ 6.1566317, 46.1703685 ], + [ 6.1564721, 46.1703215 ], + [ 6.1562917, 46.1703202 ], + [ 6.1558133999999995, 46.1702523 ], + [ 6.1550991, 46.1703116 ], + [ 6.1549659, 46.1703106 ], + [ 6.1549040999999995, 46.1703277 ], + [ 6.154583, 46.1703544 ], + [ 6.1534614, 46.1707205 ], + [ 6.1533888, 46.1707549 ], + [ 6.1523287, 46.1715067 ], + [ 6.151763, 46.172483 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-34", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.1194323, 46.295016 ], + [ 6.1208254, 46.2951341 ], + [ 6.1242144, 46.295297 ], + [ 6.1276111, 46.2953367 ], + [ 6.1310061, 46.295253 ], + [ 6.1343901, 46.2950462 ], + [ 6.1377538, 46.2947168 ], + [ 6.141088, 46.2942657 ], + [ 6.1443835, 46.2936942 ], + [ 6.1476312, 46.2930038 ], + [ 6.1508223, 46.2921964 ], + [ 6.1539479, 46.2912743 ], + [ 6.1569996, 46.29024 ], + [ 6.1599688, 46.2890963 ], + [ 6.1628475, 46.2878463 ], + [ 6.1656277, 46.2864936 ], + [ 6.1683019, 46.2850418 ], + [ 6.1708627, 46.2834949 ], + [ 6.173303, 46.2818571 ], + [ 6.1756162, 46.280133 ], + [ 6.177796, 46.2783272 ], + [ 6.1798363, 46.2764448 ], + [ 6.1817316, 46.2744909 ], + [ 6.1834768, 46.2724709 ], + [ 6.1850669, 46.2703902 ], + [ 6.1864977, 46.2682547 ], + [ 6.1877653, 46.2660702 ], + [ 6.1888662, 46.2638426 ], + [ 6.1897975, 46.2615782 ], + [ 6.1905565, 46.259283 ], + [ 6.1911412, 46.2569634 ], + [ 6.1915501, 46.2546258 ], + [ 6.1917821, 46.2522765 ], + [ 6.1918364, 46.249922 ], + [ 6.1917131, 46.2475688 ], + [ 6.1914124, 46.2452233 ], + [ 6.1909353, 46.2428919 ], + [ 6.190283, 46.240581 ], + [ 6.1894574, 46.238297 ], + [ 6.1884606, 46.2360461 ], + [ 6.1872956, 46.2338344 ], + [ 6.1859655, 46.2316681 ], + [ 6.1844739, 46.2295531 ], + [ 6.182825, 46.227495 ], + [ 6.1810233, 46.2254997 ], + [ 6.1790738, 46.2235725 ], + [ 6.1769817, 46.2217188 ], + [ 6.1747529, 46.2199435 ], + [ 6.1723934, 46.2182516 ], + [ 6.1393444, 46.1957471 ], + [ 6.1368627, 46.1941425 ], + [ 6.1342637, 46.1926302 ], + [ 6.1315543, 46.1912143 ], + [ 6.1287422, 46.1898988 ], + [ 6.1258348, 46.1886872 ], + [ 6.1228403, 46.1875829 ], + [ 6.1197668, 46.1865889 ], + [ 6.1166227, 46.1857079 ], + [ 6.1134166, 46.1849423 ], + [ 6.1101573, 46.1842941 ], + [ 6.1068537, 46.1837653 ], + [ 6.1035149, 46.1833572 ], + [ 6.1001499, 46.1830709 ], + [ 6.0967679, 46.1829072 ], + [ 6.0933783, 46.1828666 ], + [ 6.0899902, 46.1829491 ], + [ 6.086613, 46.1831546 ], + [ 6.0832559, 46.1834825 ], + [ 6.079928, 46.1839319 ], + [ 6.0766385, 46.1845015 ], + [ 6.0733963, 46.1851899 ], + [ 6.0702104, 46.1859951 ], + [ 6.0670894, 46.1869148 ], + [ 6.0640418, 46.1879467 ], + [ 6.0610761, 46.1890879 ], + [ 6.0582003, 46.1903353 ], + [ 6.0554223, 46.1916853 ], + [ 6.0527497, 46.1931345 ], + [ 6.0501898, 46.1946787 ], + [ 6.0477497, 46.1963138 ], + [ 6.045436, 46.1980353 ], + [ 6.043255, 46.1998385 ], + [ 6.0412129, 46.2017185 ], + [ 6.039315, 46.20367 ], + [ 6.0375668, 46.2056878 ], + [ 6.0359729, 46.2077664 ], + [ 6.0345378, 46.2099 ], + [ 6.0332653, 46.2120828 ], + [ 6.0321591, 46.2143088 ], + [ 6.0312221, 46.2165719 ], + [ 6.0304569, 46.218866 ], + [ 6.0298658, 46.2211848 ], + [ 6.0294502, 46.2235218 ], + [ 6.0292114, 46.2258708 ], + [ 6.02915, 46.2282252 ], + [ 6.0292662, 46.2305786 ], + [ 6.0295598, 46.2329245 ], + [ 6.03003, 46.2352566 ], + [ 6.030405, 46.2365998 ], + [ 6.0322383, 46.2375954 ], + [ 6.0336528, 46.2385514 ], + [ 6.0388915, 46.2351721 ], + [ 6.0421279, 46.233309 ], + [ 6.0461113, 46.2313935 ], + [ 6.046147, 46.2314222 ], + [ 6.0462191, 46.2314958 ], + [ 6.0463245, 46.2316406 ], + [ 6.0465269, 46.2319315 ], + [ 6.0472802, 46.2330956 ], + [ 6.0474518, 46.2334037 ], + [ 6.047666, 46.2332938 ], + [ 6.0479287, 46.2331719 ], + [ 6.0480063, 46.2331499 ], + [ 6.0480296, 46.2331599 ], + [ 6.0482131, 46.2333114 ], + [ 6.0484784, 46.2334811 ], + [ 6.0490088, 46.2338817 ], + [ 6.0495062, 46.234289 ], + [ 6.0495621, 46.2343822 ], + [ 6.0496731, 46.2345281 ], + [ 6.049662, 46.2345461 ], + [ 6.0499857, 46.2348651 ], + [ 6.0502982, 46.2351392 ], + [ 6.0505964, 46.2355373 ], + [ 6.0507172, 46.2357205 ], + [ 6.0508327, 46.2358635 ], + [ 6.0510762, 46.2364666 ], + [ 6.0511618, 46.2365725 ], + [ 6.0512473, 46.2367278 ], + [ 6.0513331, 46.2369085 ], + [ 6.0515039999999996, 46.2371682 ], + [ 6.0515763, 46.2372859 ], + [ 6.0517014, 46.2374709 ], + [ 6.0517194, 46.2375501 ], + [ 6.0518702, 46.2377365 ], + [ 6.0520151, 46.2378901 ], + [ 6.0521554, 46.2380967 ], + [ 6.0520902, 46.2382323 ], + [ 6.0527063, 46.2388075 ], + [ 6.0534633, 46.2395353 ], + [ 6.0534495, 46.2395413 ], + [ 6.054526, 46.2405109 ], + [ 6.0546363, 46.2404882 ], + [ 6.0558876, 46.2416581 ], + [ 6.0564093, 46.2419009 ], + [ 6.0571247, 46.2421743 ], + [ 6.0577615, 46.2426261 ], + [ 6.0580414, 46.2428496 ], + [ 6.0582099, 46.2430367 ], + [ 6.0586824, 46.2436021 ], + [ 6.0590773, 46.2439353 ], + [ 6.0601074, 46.2448406 ], + [ 6.0604109, 46.2450089 ], + [ 6.0609013, 46.2450792 ], + [ 6.0614217, 46.2450861 ], + [ 6.0622245, 46.2454136 ], + [ 6.0633459, 46.2458015 ], + [ 6.0636433, 46.2454185 ], + [ 6.0636699, 46.2453703 ], + [ 6.0637606, 46.2452682 ], + [ 6.0637511, 46.2452516 ], + [ 6.0637844, 46.2452287 ], + [ 6.0638216, 46.2451589 ], + [ 6.0638742, 46.2451107 ], + [ 6.0638658, 46.2450892 ], + [ 6.0639033, 46.2450545 ], + [ 6.0639338, 46.2450323 ], + [ 6.0640205, 46.2449075 ], + [ 6.0640665, 46.244823 ], + [ 6.0640692, 46.2448013 ], + [ 6.0640982, 46.2447852 ], + [ 6.0641327, 46.2447243 ], + [ 6.0641443, 46.2446553 ], + [ 6.0642072, 46.2446488 ], + [ 6.0643073, 46.2445843 ], + [ 6.0643463, 46.2445853 ], + [ 6.0643553, 46.2445363 ], + [ 6.0644155, 46.244512 ], + [ 6.0644259, 46.2444836 ], + [ 6.0644792, 46.2444626 ], + [ 6.0645274, 46.2444038 ], + [ 6.0645674, 46.2443248 ], + [ 6.0646372, 46.244289 ], + [ 6.0647406, 46.2442598 ], + [ 6.0647891, 46.2441977 ], + [ 6.0648265, 46.2441852 ], + [ 6.0648681, 46.2441311 ], + [ 6.0649321, 46.2440957 ], + [ 6.0649519, 46.2440512 ], + [ 6.0649727, 46.2440523 ], + [ 6.0650015, 46.2440235 ], + [ 6.0650067, 46.2439784 ], + [ 6.0650749, 46.2439501 ], + [ 6.0651447, 46.2438847 ], + [ 6.0651785, 46.2438375 ], + [ 6.0652108, 46.2437996 ], + [ 6.0652008, 46.2437776 ], + [ 6.0653274, 46.2436616 ], + [ 6.0653233, 46.2436374 ], + [ 6.0653907, 46.2435952 ], + [ 6.0653677, 46.2435562 ], + [ 6.0654365, 46.2435237 ], + [ 6.065428, 46.2435045 ], + [ 6.065483, 46.2434189 ], + [ 6.0655561, 46.243376 ], + [ 6.0656342, 46.2433674 ], + [ 6.0656957, 46.2432425 ], + [ 6.0657233, 46.2432289 ], + [ 6.065728, 46.2432035 ], + [ 6.0658415, 46.2431566 ], + [ 6.0658657, 46.2431175 ], + [ 6.0659084, 46.2430991 ], + [ 6.0658686, 46.2430751 ], + [ 6.0658704, 46.2430562 ], + [ 6.0658322, 46.2430352 ], + [ 6.0658139, 46.2430069 ], + [ 6.0658668, 46.2429623 ], + [ 6.0659041, 46.24295 ], + [ 6.0659388, 46.2429102 ], + [ 6.0660038, 46.242883 ], + [ 6.0660301, 46.2428302 ], + [ 6.0661013, 46.2428074 ], + [ 6.0661636, 46.242831699999996 ], + [ 6.0661959, 46.2427762 ], + [ 6.066243, 46.2427887 ], + [ 6.0662557, 46.242743 ], + [ 6.0663007, 46.2427197 ], + [ 6.0663188, 46.2426707 ], + [ 6.066347, 46.2426383 ], + [ 6.0664106, 46.2426039 ], + [ 6.0664222, 46.2425717 ], + [ 6.0664655, 46.2425563 ], + [ 6.0665156, 46.2425595 ], + [ 6.0665196, 46.2425353 ], + [ 6.0665037, 46.2425106 ], + [ 6.0665169, 46.2424879 ], + [ 6.0665651, 46.2424928 ], + [ 6.0665715, 46.2424506 ], + [ 6.0666284, 46.2423886 ], + [ 6.0666615, 46.2423689 ], + [ 6.0666603, 46.2423396 ], + [ 6.0666745, 46.2423278 ], + [ 6.066696, 46.242279 ], + [ 6.0667318, 46.2422686 ], + [ 6.0667679, 46.2422707 ], + [ 6.0667799, 46.2422421 ], + [ 6.0668011, 46.2422163 ], + [ 6.0668449, 46.2421812 ], + [ 6.0668766, 46.242186 ], + [ 6.066906, 46.2421274 ], + [ 6.0669322, 46.2421283 ], + [ 6.0669304, 46.2420919 ], + [ 6.0669558, 46.2420794 ], + [ 6.0670111, 46.2420176 ], + [ 6.0670686, 46.2419979 ], + [ 6.0670708, 46.2419666 ], + [ 6.0670926, 46.2419385 ], + [ 6.0671599, 46.2419158 ], + [ 6.0671689, 46.2419019 ], + [ 6.0671612, 46.2418644 ], + [ 6.067198, 46.2418596 ], + [ 6.0672163, 46.2418343 ], + [ 6.0672476, 46.2418271 ], + [ 6.0672755, 46.2418078 ], + [ 6.0672862, 46.241782 ], + [ 6.0676184, 46.2418802 ], + [ 6.0681971, 46.2419742 ], + [ 6.0695519, 46.2411669 ], + [ 6.0702184, 46.2416878 ], + [ 6.0708998, 46.2413098 ], + [ 6.0713826, 46.2416815 ], + [ 6.0718096, 46.2421922 ], + [ 6.0730249, 46.2413491 ], + [ 6.0734816, 46.2419468 ], + [ 6.0737633, 46.2422862 ], + [ 6.0728169, 46.2431134 ], + [ 6.0735362, 46.2437118 ], + [ 6.073869, 46.2437232 ], + [ 6.0748673, 46.2435626 ], + [ 6.0751722, 46.2437953 ], + [ 6.0755552, 46.24359 ], + [ 6.077155, 46.2446706 ], + [ 6.0778291, 46.2442293 ], + [ 6.0783916, 46.2445905 ], + [ 6.0785078, 46.2446623 ], + [ 6.0787631, 46.2448944 ], + [ 6.0789671, 46.2450367 ], + [ 6.0791897, 46.2451601 ], + [ 6.079402, 46.2453038 ], + [ 6.0795252, 46.2454037 ], + [ 6.0807437, 46.2455991 ], + [ 6.0819587, 46.245799 ], + [ 6.0825169, 46.2453925 ], + [ 6.0825741, 46.2454306 ], + [ 6.0827952, 46.2455994 ], + [ 6.0828164, 46.2456266 ], + [ 6.0828344, 46.2456642 ], + [ 6.0828503, 46.2457475 ], + [ 6.0828659, 46.2457947 ], + [ 6.0828875, 46.2458343 ], + [ 6.0829304, 46.2458954 ], + [ 6.082991, 46.2459674 ], + [ 6.0831082, 46.2460817 ], + [ 6.083163, 46.2461416 ], + [ 6.0833444, 46.246323 ], + [ 6.0834455, 46.2464193 ], + [ 6.083612, 46.2465657 ], + [ 6.083652, 46.2465944 ], + [ 6.0836891, 46.2466271 ], + [ 6.0838484, 46.2467277 ], + [ 6.0838963, 46.2467513 ], + [ 6.0840612, 46.2468503 ], + [ 6.0841533, 46.2468979 ], + [ 6.0843393, 46.247006 ], + [ 6.084392, 46.247022 ], + [ 6.0844081, 46.2470154 ], + [ 6.0855304, 46.2462011 ], + [ 6.0856184, 46.2461144 ], + [ 6.0856314, 46.2460814 ], + [ 6.0855401, 46.2459637 ], + [ 6.0880561, 46.2471256 ], + [ 6.0881535, 46.2462973 ], + [ 6.0885125, 46.2458806 ], + [ 6.0906864, 46.2451252 ], + [ 6.0923284, 46.2438178 ], + [ 6.092386, 46.2436966 ], + [ 6.0933298, 46.2429003 ], + [ 6.0935385, 46.2430443 ], + [ 6.0950282, 46.24194 ], + [ 6.0954361, 46.2416261 ], + [ 6.0970018, 46.2405119 ], + [ 6.0990618, 46.2390648 ], + [ 6.1014504, 46.2376466 ], + [ 6.1018122, 46.237879 ], + [ 6.1054739, 46.2402307 ], + [ 6.1068531, 46.2411708 ], + [ 6.1088274, 46.2398703 ], + [ 6.1207862, 46.2480154 ], + [ 6.1202939, 46.248503 ], + [ 6.1209109999999995, 46.2488307 ], + [ 6.1235784, 46.2506481 ], + [ 6.1244681, 46.2512542 ], + [ 6.1238428, 46.2518371 ], + [ 6.1244574, 46.2525925 ], + [ 6.1242787, 46.25264 ], + [ 6.1240898, 46.2526655 ], + [ 6.1240684, 46.2526436 ], + [ 6.1239958, 46.252611 ], + [ 6.123916, 46.2526081 ], + [ 6.123808, 46.2526778 ], + [ 6.1236425, 46.2526939 ], + [ 6.123459, 46.2527183 ], + [ 6.1234377, 46.2528245 ], + [ 6.123343, 46.2529061 ], + [ 6.1231569, 46.252902399999996 ], + [ 6.1230792, 46.2529192 ], + [ 6.1230379, 46.2529916 ], + [ 6.1230822, 46.2530888 ], + [ 6.1230468, 46.2531334 ], + [ 6.122585, 46.2532727 ], + [ 6.1223108, 46.2533881 ], + [ 6.1222386, 46.2534134 ], + [ 6.1221538, 46.2533991 ], + [ 6.1221088, 46.2534099 ], + [ 6.1219975, 46.2534763 ], + [ 6.1219844, 46.2535007 ], + [ 6.1218126999999996, 46.2536022 ], + [ 6.1217533, 46.2535974 ], + [ 6.1213781, 46.2538946 ], + [ 6.1212885, 46.2538912 ], + [ 6.1212032, 46.2539695 ], + [ 6.1211332, 46.2541331 ], + [ 6.1210803, 46.2541502 ], + [ 6.1210416, 46.2542805 ], + [ 6.1210162, 46.2542909 ], + [ 6.1209503, 46.2543992 ], + [ 6.1208879, 46.254436 ], + [ 6.1208295, 46.2545556 ], + [ 6.1209032, 46.2549074 ], + [ 6.1208203, 46.2549268 ], + [ 6.1208302, 46.2549668 ], + [ 6.121041, 46.2551323 ], + [ 6.1211005, 46.2552253 ], + [ 6.1212331, 46.2553535 ], + [ 6.1213407, 46.255498 ], + [ 6.1215318, 46.2557281 ], + [ 6.1216084, 46.2557957 ], + [ 6.1219204, 46.2560436 ], + [ 6.1221232, 46.2560807 ], + [ 6.1221388, 46.2561087 ], + [ 6.1221761, 46.2561177 ], + [ 6.1222552, 46.2561191 ], + [ 6.1225016, 46.2561997 ], + [ 6.1226441, 46.2563724 ], + [ 6.1227526, 46.2564043 ], + [ 6.1227548, 46.2564516 ], + [ 6.1224929, 46.2566794 ], + [ 6.1223365, 46.2568466 ], + [ 6.122304, 46.2569325 ], + [ 6.1221788, 46.2570331 ], + [ 6.1219872, 46.2572356 ], + [ 6.121996, 46.2572662 ], + [ 6.1218599, 46.257334 ], + [ 6.1217704, 46.2574561 ], + [ 6.1215894, 46.2576339 ], + [ 6.121514, 46.2577022 ], + [ 6.1215556, 46.2577217 ], + [ 6.1217464, 46.2578519 ], + [ 6.122044, 46.2580083 ], + [ 6.1221636, 46.258031 ], + [ 6.122535, 46.2581781 ], + [ 6.1197471, 46.260839 ], + [ 6.1193068, 46.2612592 ], + [ 6.1200569, 46.2616569 ], + [ 6.1180828, 46.2634483 ], + [ 6.1200791, 46.2646468 ], + [ 6.119982, 46.2648305 ], + [ 6.1197197, 46.264932 ], + [ 6.1196599, 46.2649522 ], + [ 6.1190796, 46.2651776 ], + [ 6.1187778, 46.26531 ], + [ 6.1181524, 46.2655438 ], + [ 6.1180525, 46.2655956 ], + [ 6.1176968, 46.2657366 ], + [ 6.1173169, 46.2658815 ], + [ 6.1171881, 46.2659156 ], + [ 6.1166257, 46.2661207 ], + [ 6.1164283, 46.2661866 ], + [ 6.116353, 46.266196 ], + [ 6.1162758, 46.266242 ], + [ 6.1162109, 46.2662853 ], + [ 6.1154257, 46.2659423 ], + [ 6.1134746, 46.2677003 ], + [ 6.1116545, 46.269039 ], + [ 6.1118954, 46.2691688 ], + [ 6.1098993, 46.2705746 ], + [ 6.1100458, 46.2706501 ], + [ 6.1105033, 46.2709016 ], + [ 6.1116099, 46.2715691 ], + [ 6.1123789, 46.2719922 ], + [ 6.1127763, 46.2721593 ], + [ 6.1128308, 46.272164 ], + [ 6.1128426, 46.2722605 ], + [ 6.1132598, 46.2723684 ], + [ 6.1135142, 46.2725525 ], + [ 6.1116593, 46.2733073 ], + [ 6.1117961, 46.2735014 ], + [ 6.1111706, 46.2737133 ], + [ 6.111132, 46.2740122 ], + [ 6.1102425, 46.2741817 ], + [ 6.1102827, 46.27435 ], + [ 6.1101773, 46.2743813 ], + [ 6.1100527, 46.2744618 ], + [ 6.109908, 46.2745105 ], + [ 6.1097508, 46.2745481 ], + [ 6.109644, 46.2745975 ], + [ 6.1095548, 46.2746578 ], + [ 6.1095042, 46.2746666 ], + [ 6.1091206, 46.2747582 ], + [ 6.1090154, 46.2747677 ], + [ 6.1089766, 46.2747672 ], + [ 6.1088583, 46.2747785 ], + [ 6.1088383, 46.2747769 ], + [ 6.1087973, 46.2747426 ], + [ 6.1086457, 46.2747687 ], + [ 6.1085915, 46.2747309 ], + [ 6.108534, 46.274742 ], + [ 6.1084997, 46.2748177 ], + [ 6.1084098000000004, 46.2748343 ], + [ 6.1083707, 46.2749267 ], + [ 6.1082097, 46.2749635 ], + [ 6.1082377, 46.275066699999996 ], + [ 6.1081306, 46.2750965 ], + [ 6.1080821, 46.2751468 ], + [ 6.1080206, 46.275229 ], + [ 6.1079174, 46.2753379 ], + [ 6.1079222, 46.2753845 ], + [ 6.1078721, 46.2754282 ], + [ 6.107906, 46.2754855 ], + [ 6.1078551, 46.2755154 ], + [ 6.1078715, 46.2755814 ], + [ 6.1078168, 46.2755856 ], + [ 6.1077815, 46.2756529 ], + [ 6.1077876, 46.2757186 ], + [ 6.1077234, 46.2757777 ], + [ 6.1077047, 46.2758715 ], + [ 6.1076516, 46.275874 ], + [ 6.1076553, 46.2759452 ], + [ 6.107638, 46.2760345 ], + [ 6.1075612, 46.2760648 ], + [ 6.1075597, 46.2761406 ], + [ 6.1074976, 46.2762084 ], + [ 6.1074422, 46.2762167 ], + [ 6.1074463, 46.2762608 ], + [ 6.1073211, 46.2764021 ], + [ 6.1072811, 46.2763681 ], + [ 6.1072335, 46.2763784 ], + [ 6.1071678, 46.2764713 ], + [ 6.1071544, 46.2765376 ], + [ 6.1070458, 46.2766052 ], + [ 6.1070004, 46.2765982 ], + [ 6.1069696, 46.2766498 ], + [ 6.1068834, 46.2766906 ], + [ 6.1067323, 46.2767176 ], + [ 6.1067001, 46.2767508 ], + [ 6.1066253, 46.2767823 ], + [ 6.1065269, 46.27675 ], + [ 6.1063778, 46.276785 ], + [ 6.1062388, 46.2767237 ], + [ 6.1061585, 46.2767439 ], + [ 6.1060925, 46.2768418 ], + [ 6.106044, 46.2768482 ], + [ 6.1059885, 46.2768872 ], + [ 6.1058833, 46.2768746 ], + [ 6.1058306, 46.2768568 ], + [ 6.1057787, 46.2768997 ], + [ 6.105739, 46.2768658 ], + [ 6.1057079, 46.2768869 ], + [ 6.1056718, 46.2768747 ], + [ 6.105678, 46.2769345 ], + [ 6.1056211, 46.2770084 ], + [ 6.105651, 46.2770332 ], + [ 6.1056803, 46.2770403 ], + [ 6.1056566, 46.2771093 ], + [ 6.1056116, 46.2771161 ], + [ 6.1056321, 46.2772302 ], + [ 6.105559, 46.277304 ], + [ 6.1055413, 46.2773629 ], + [ 6.1054629, 46.277423 ], + [ 6.1053705, 46.2774596 ], + [ 6.1053503, 46.2775465 ], + [ 6.1052422, 46.2775881 ], + [ 6.105256, 46.2776476 ], + [ 6.1051711, 46.2777373 ], + [ 6.105157, 46.277788 ], + [ 6.105109, 46.2778341 ], + [ 6.1049946, 46.2779564 ], + [ 6.1050122, 46.2780088 ], + [ 6.1049214, 46.2780909 ], + [ 6.1048128, 46.2782344 ], + [ 6.1046281, 46.2783009 ], + [ 6.1041768, 46.2784194 ], + [ 6.1038095, 46.2785315 ], + [ 6.103464, 46.2786028 ], + [ 6.1033863, 46.2786472 ], + [ 6.1033577, 46.2786416 ], + [ 6.1032654, 46.2786655 ], + [ 6.1033649, 46.2788028 ], + [ 6.1037635, 46.279285 ], + [ 6.1039946, 46.2795815 ], + [ 6.1040356, 46.2796489 ], + [ 6.1040918, 46.2796945 ], + [ 6.1041584, 46.2798129 ], + [ 6.1041681, 46.2798479 ], + [ 6.1042044, 46.2798846 ], + [ 6.1042147, 46.2799251 ], + [ 6.1042454, 46.2799653 ], + [ 6.1042713, 46.2800301 ], + [ 6.1043422, 46.2801561 ], + [ 6.1044266, 46.2803242 ], + [ 6.1045177, 46.2805643 ], + [ 6.1045838, 46.2809539 ], + [ 6.1046391, 46.2811286 ], + [ 6.104663, 46.2813539 ], + [ 6.104713, 46.281554 ], + [ 6.1047206, 46.2817057 ], + [ 6.104709, 46.2819768 ], + [ 6.1046905, 46.2820917 ], + [ 6.1047955, 46.2823802 ], + [ 6.1048869, 46.2826045 ], + [ 6.1049769, 46.2827794 ], + [ 6.105084, 46.282961 ], + [ 6.1043704, 46.2835339 ], + [ 6.1046859, 46.2838472 ], + [ 6.1044257, 46.2842052 ], + [ 6.1044122, 46.28419 ], + [ 6.1036053, 46.2845408 ], + [ 6.1023904, 46.2849203 ], + [ 6.1023898, 46.2849398 ], + [ 6.1027779, 46.2850773 ], + [ 6.1031119, 46.2852996 ], + [ 6.1034992, 46.2855807 ], + [ 6.1038766, 46.2861488 ], + [ 6.1044152, 46.2865693 ], + [ 6.1045597, 46.2869407 ], + [ 6.1045403, 46.2869764 ], + [ 6.1060808, 46.2877665 ], + [ 6.1073653, 46.2886965 ], + [ 6.108873, 46.289345 ], + [ 6.1097753, 46.2901312 ], + [ 6.1116177, 46.291499 ], + [ 6.1122654, 46.2925588 ], + [ 6.1130502, 46.2932908 ], + [ 6.1127411, 46.2935255 ], + [ 6.1132572, 46.2941274 ], + [ 6.1139322, 46.2943443 ], + [ 6.1139602, 46.2944169 ], + [ 6.1141077, 46.2944405 ], + [ 6.1145287, 46.2944918 ], + [ 6.1145487, 46.2944819 ], + [ 6.1145864, 46.2944988 ], + [ 6.1149673, 46.2945452 ], + [ 6.1150345, 46.2945306 ], + [ 6.1151963, 46.294474 ], + [ 6.1153084, 46.2944301 ], + [ 6.1154201, 46.2943545 ], + [ 6.1154518, 46.2943712 ], + [ 6.1155717, 46.2943307 ], + [ 6.1156476, 46.294311 ], + [ 6.115681, 46.2942698 ], + [ 6.1157716, 46.2942607 ], + [ 6.1158582, 46.294244 ], + [ 6.1159442, 46.2942104 ], + [ 6.115968, 46.2942178 ], + [ 6.1160335, 46.2941867 ], + [ 6.1160721, 46.2941441 ], + [ 6.1161312, 46.2941377 ], + [ 6.1161896, 46.2941053 ], + [ 6.1162292, 46.2940946 ], + [ 6.1162836, 46.2940399 ], + [ 6.1163176, 46.2940133 ], + [ 6.1163915, 46.2940323 ], + [ 6.1164738, 46.2940085 ], + [ 6.1165626, 46.2940152 ], + [ 6.1166359, 46.2940014 ], + [ 6.1167001, 46.2940285 ], + [ 6.1167411, 46.2940716 ], + [ 6.1167758, 46.2940918 ], + [ 6.116813, 46.2941426 ], + [ 6.1168786, 46.2941478 ], + [ 6.1169108, 46.2941946 ], + [ 6.1169127, 46.2942369 ], + [ 6.1170106, 46.294251 ], + [ 6.1170305, 46.2942774 ], + [ 6.1170765, 46.2942814 ], + [ 6.117206, 46.2943408 ], + [ 6.1172686, 46.2943759 ], + [ 6.1173098, 46.2943635 ], + [ 6.1173583, 46.2944054 ], + [ 6.11747, 46.294435 ], + [ 6.1175268, 46.2944586 ], + [ 6.1175816, 46.2944512 ], + [ 6.1176548, 46.2944841 ], + [ 6.1177074, 46.2944889 ], + [ 6.1178397, 46.2945439 ], + [ 6.1179238, 46.2945377 ], + [ 6.1180075, 46.294562 ], + [ 6.118044, 46.2945906 ], + [ 6.1181123, 46.2945667 ], + [ 6.1181605, 46.2945911 ], + [ 6.1182094, 46.2945825 ], + [ 6.1183005, 46.2945522 ], + [ 6.1183779, 46.2945547 ], + [ 6.1184577, 46.2945483 ], + [ 6.1185126, 46.2945277 ], + [ 6.1185582, 46.2945314 ], + [ 6.1186369, 46.2944903 ], + [ 6.118703, 46.2944806 ], + [ 6.1187519, 46.2944299 ], + [ 6.1188278, 46.294437 ], + [ 6.1189012, 46.2944256 ], + [ 6.1189319, 46.2944753 ], + [ 6.1190212, 46.2944515 ], + [ 6.1191131, 46.2944515 ], + [ 6.1191489, 46.2944108 ], + [ 6.1191882, 46.294402 ], + [ 6.1192222, 46.2944167 ], + [ 6.1192641, 46.2944116 ], + [ 6.119274, 46.2943792 ], + [ 6.1193008, 46.2943632 ], + [ 6.1193253, 46.294365 ], + [ 6.119344, 46.2943813 ], + [ 6.1193865, 46.2943838 ], + [ 6.1194339, 46.2943566 ], + [ 6.119484, 46.2943348 ], + [ 6.1196371, 46.2943172 ], + [ 6.1196747, 46.2943976 ], + [ 6.1197295, 46.2945461 ], + [ 6.1197318, 46.2946496 ], + [ 6.119779, 46.2947313 ], + [ 6.11978, 46.2948163 ], + [ 6.1197498, 46.2948851 ], + [ 6.1196078, 46.2949818 ], + [ 6.119464, 46.2950075 ], + [ 6.1194323, 46.295016 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSGG001", + "country" : "CHE", + "name" : [ + { + "text" : "LSGG Genève", + "lang" : "de-CH" + }, + { + "text" : "LSGG Genève", + "lang" : "fr-CH" + }, + { + "text" : "LSGG Genève", + "lang" : "it-CH" + }, + { + "text" : "LSGG Genève", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Skyguide Special Flight Office", + "lang" : "de-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "it-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.skyguide.ch/services/special-flights", + "email" : "specialflight@skyguide.ch", + "phone" : "0041439316236", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.8335801, 47.6719146 ], + [ 8.8334909, 47.6719382 ], + [ 8.833229, 47.6720116 ], + [ 8.8328556, 47.6720881 ], + [ 8.8325207, 47.6721702 ], + [ 8.8322423, 47.6722826 ], + [ 8.8319419, 47.6724425 ], + [ 8.8317268, 47.6726205 ], + [ 8.8314066, 47.6728484 ], + [ 8.8312223, 47.673026 ], + [ 8.8309977, 47.673222 ], + [ 8.8306878, 47.6734616 ], + [ 8.8304383, 47.6736625 ], + [ 8.8302198, 47.6737694 ], + [ 8.8298892, 47.6739856 ], + [ 8.8295072, 47.6741459 ], + [ 8.8290795, 47.6742454 ], + [ 8.8286394, 47.674319 ], + [ 8.8282092, 47.6743851 ], + [ 8.8276973, 47.6744464 ], + [ 8.8272406, 47.6744572 ], + [ 8.8269001, 47.6745169 ], + [ 8.8268267, 47.6745116 ], + [ 8.8264019, 47.6745625 ], + [ 8.8260801, 47.6746076 ], + [ 8.8257201, 47.6747174 ], + [ 8.8255554, 47.6747553 ], + [ 8.8252168, 47.6748257 ], + [ 8.8249624, 47.674898999999996 ], + [ 8.8246695, 47.6750301 ], + [ 8.8243933, 47.6751605 ], + [ 8.8239058, 47.675266 ], + [ 8.8234356, 47.6753327 ], + [ 8.8229906, 47.6754111 ], + [ 8.8226511, 47.6755084 ], + [ 8.8223315, 47.6755727 ], + [ 8.821942, 47.6756374 ], + [ 8.8215435, 47.6756765 ], + [ 8.8211599, 47.67578 ], + [ 8.8207066, 47.6759203 ], + [ 8.8203635, 47.6760413 ], + [ 8.8200282, 47.6761729 ], + [ 8.819742699999999, 47.6763031 ], + [ 8.819367, 47.6764515 ], + [ 8.8189053, 47.6766532 ], + [ 8.8185847, 47.6767731 ], + [ 8.8182606, 47.676956 ], + [ 8.8178663, 47.6770596 ], + [ 8.8174195, 47.6771332 ], + [ 8.8170713, 47.677186 ], + [ 8.8163732, 47.6772291 ], + [ 8.8156081, 47.6772536 ], + [ 8.8152575, 47.6772173 ], + [ 8.8146568, 47.6770328 ], + [ 8.8144161, 47.67687 ], + [ 8.8141291, 47.6767152 ], + [ 8.813597, 47.6765138 ], + [ 8.8131103, 47.676327 ], + [ 8.8128988, 47.6762595 ], + [ 8.8125322, 47.6762459 ], + [ 8.8120538, 47.6762234 ], + [ 8.8119355, 47.6761855 ], + [ 8.8116523, 47.6762102 ], + [ 8.8112502, 47.6761449 ], + [ 8.8109066, 47.676086 ], + [ 8.8105215, 47.6760338 ], + [ 8.8101022, 47.6760101 ], + [ 8.8096257, 47.6759924 ], + [ 8.8090511, 47.6759829 ], + [ 8.808636, 47.6759923 ], + [ 8.8082132, 47.6760917 ], + [ 8.8078619, 47.6761858 ], + [ 8.8074374, 47.6763465 ], + [ 8.807176, 47.6764421 ], + [ 8.8068128, 47.6765293 ], + [ 8.8063111, 47.6766988 ], + [ 8.8056349, 47.6769459 ], + [ 8.8048005, 47.6771267 ], + [ 8.8041606, 47.6773284 ], + [ 8.8036101, 47.6774473 ], + [ 8.8031611, 47.6774644 ], + [ 8.8027424, 47.6774333 ], + [ 8.8024243, 47.6773958 ], + [ 8.8020508, 47.6772759 ], + [ 8.801668, 47.67715 ], + [ 8.8014365, 47.6769801 ], + [ 8.8011096, 47.6767968 ], + [ 8.8007306, 47.6765575 ], + [ 8.8003131, 47.6762484 ], + [ 8.8000099, 47.6760415 ], + [ 8.7996823, 47.6758286 ], + [ 8.7994931, 47.6757203 ], + [ 8.7993218, 47.6756304 ], + [ 8.7987579, 47.676202 ], + [ 8.7982387, 47.6767278 ], + [ 8.7990917, 47.6771127 ], + [ 8.799038, 47.6776828 ], + [ 8.7999904, 47.6780441 ], + [ 8.8000025, 47.6781598 ], + [ 8.8001212, 47.6783104 ], + [ 8.8002439, 47.6784197 ], + [ 8.8004373, 47.6784939 ], + [ 8.8005911, 47.6785514 ], + [ 8.80085, 47.678748 ], + [ 8.8011443, 47.6789272 ], + [ 8.8012678, 47.6790705 ], + [ 8.8013812, 47.6793382 ], + [ 8.8014068, 47.6796229 ], + [ 8.8013871, 47.6798941 ], + [ 8.801335, 47.6800366 ], + [ 8.8012564, 47.6804432 ], + [ 8.801189, 47.6811916 ], + [ 8.8013804, 47.681254 ], + [ 8.8015517, 47.6813133 ], + [ 8.8018949, 47.6813208 ], + [ 8.8022936, 47.6812891 ], + [ 8.8027095, 47.6812752 ], + [ 8.8031087, 47.681259 ], + [ 8.8034985, 47.681268 ], + [ 8.8037845, 47.6812888 ], + [ 8.8041365, 47.6813476 ], + [ 8.8045181, 47.6814249 ], + [ 8.8046246, 47.681422 ], + [ 8.8048695, 47.6813308 ], + [ 8.805586, 47.6811298 ], + [ 8.8059473, 47.6810323 ], + [ 8.8062263, 47.6809399 ], + [ 8.8066223, 47.6810611 ], + [ 8.8074001, 47.6812678 ], + [ 8.8076597, 47.681262 ], + [ 8.8076847, 47.680778 ], + [ 8.8086672, 47.6800125 ], + [ 8.809242, 47.6798348 ], + [ 8.8130495, 47.679769 ], + [ 8.8127956, 47.6790626 ], + [ 8.813049, 47.6791062 ], + [ 8.8135384, 47.6791058 ], + [ 8.8138811, 47.6790936 ], + [ 8.814312900000001, 47.6790536 ], + [ 8.8146117, 47.6790203 ], + [ 8.8150321, 47.6789585 ], + [ 8.8154868, 47.6788696 ], + [ 8.8158345, 47.6788276 ], + [ 8.8160342, 47.6788227 ], + [ 8.8163736, 47.678815 ], + [ 8.8167671, 47.6788058 ], + [ 8.8171644, 47.6787516 ], + [ 8.817443, 47.6786772 ], + [ 8.8178575, 47.6786113 ], + [ 8.8183249, 47.6785338 ], + [ 8.8187164, 47.6784797 ], + [ 8.8189986, 47.6784457 ], + [ 8.8193589, 47.6783469 ], + [ 8.8197373, 47.678237 ], + [ 8.8200888, 47.678117 ], + [ 8.8203672, 47.6780362 ], + [ 8.8207079, 47.6779838 ], + [ 8.8211123, 47.6779463 ], + [ 8.8217698, 47.6778792 ], + [ 8.8222063, 47.6778245 ], + [ 8.82257, 47.67776 ], + [ 8.8229814, 47.6776714 ], + [ 8.8231715, 47.6775881 ], + [ 8.8236698, 47.6774481 ], + [ 8.826368, 47.6768953 ], + [ 8.8278043, 47.6768169 ], + [ 8.8283998, 47.6764157 ], + [ 8.8293712, 47.6755613 ], + [ 8.8301652, 47.6754304 ], + [ 8.8303772, 47.6753281 ], + [ 8.8306588, 47.6753059 ], + [ 8.8309907, 47.6752648 ], + [ 8.8312029, 47.6752029 ], + [ 8.831457, 47.6750849 ], + [ 8.8317149, 47.6749216 ], + [ 8.8320971, 47.6747669 ], + [ 8.8324494, 47.6746168 ], + [ 8.8328755, 47.6744894 ], + [ 8.8333248, 47.6743553 ], + [ 8.833760999999999, 47.6742323 ], + [ 8.8338337, 47.6742125 ], + [ 8.8339217, 47.6742961 ], + [ 8.8347237, 47.673996700000004 ], + [ 8.8349951, 47.6739046 ], + [ 8.8350001, 47.673904 ], + [ 8.835409, 47.6738501 ], + [ 8.8359643, 47.6738255 ], + [ 8.8362, 47.6736742 ], + [ 8.8416175, 47.6707089 ], + [ 8.8415398, 47.6706359 ], + [ 8.8415046, 47.6704683 ], + [ 8.8415153, 47.670182 ], + [ 8.8415532, 47.6699496 ], + [ 8.8416247, 47.6697231 ], + [ 8.8417407, 47.6695811 ], + [ 8.8419558, 47.6693736 ], + [ 8.8419759, 47.6693166 ], + [ 8.8420317, 47.6690955 ], + [ 8.84206, 47.6688138 ], + [ 8.842049, 47.6686177 ], + [ 8.842015, 47.6684661 ], + [ 8.8419889, 47.6682975 ], + [ 8.8419802, 47.6681247 ], + [ 8.8420327, 47.6680046 ], + [ 8.8420759, 47.6678754 ], + [ 8.8421083, 47.6677167 ], + [ 8.8422948, 47.6674696 ], + [ 8.8424703, 47.6673084 ], + [ 8.842816599999999, 47.6670597 ], + [ 8.8430409, 47.6668861 ], + [ 8.8432563, 47.6667232 ], + [ 8.8433896, 47.66654 ], + [ 8.843552, 47.6663267 ], + [ 8.8437211, 47.6661726 ], + [ 8.8441304, 47.6660434 ], + [ 8.8445483, 47.6659548 ], + [ 8.8450091, 47.6658492 ], + [ 8.8453161, 47.6657862 ], + [ 8.8455142, 47.6657523 ], + [ 8.8453661, 47.6656616 ], + [ 8.8452079, 47.6655005 ], + [ 8.8450706, 47.6652522 ], + [ 8.8454046, 47.6651366 ], + [ 8.8452797, 47.664791 ], + [ 8.8456305, 47.6646813 ], + [ 8.8459946, 47.6646347 ], + [ 8.8464238, 47.6646582 ], + [ 8.8468357, 47.6645922 ], + [ 8.8474103, 47.6644214 ], + [ 8.8477866, 47.6642999 ], + [ 8.8482684, 47.6641422 ], + [ 8.8488411, 47.6639309 ], + [ 8.8491773, 47.6638062 ], + [ 8.8496704, 47.6636636 ], + [ 8.8500306, 47.6635657 ], + [ 8.8501908, 47.6634271 ], + [ 8.8503233, 47.6633066 ], + [ 8.8505318, 47.663261 ], + [ 8.8507979, 47.663255 ], + [ 8.851219799999999, 47.6632229 ], + [ 8.8514775, 47.6631829 ], + [ 8.8517425, 47.6631319 ], + [ 8.852152199999999, 47.6630165 ], + [ 8.8527459, 47.6629058 ], + [ 8.8530788, 47.6627848 ], + [ 8.8534015, 47.6626828 ], + [ 8.8537952, 47.662561 ], + [ 8.8540781, 47.6624353 ], + [ 8.8543801, 47.6622779 ], + [ 8.8546123, 47.6621536 ], + [ 8.8548566, 47.6620461 ], + [ 8.8551575, 47.6618771 ], + [ 8.855412, 47.661657 ], + [ 8.855709300000001, 47.6614476 ], + [ 8.8558607, 47.6612873 ], + [ 8.8561047, 47.6610451 ], + [ 8.8562699, 47.6608766 ], + [ 8.8564348, 47.660693 ], + [ 8.8566319, 47.6604703 ], + [ 8.8563644, 47.6603018 ], + [ 8.8564497, 47.6601639 ], + [ 8.8567375, 47.6599391 ], + [ 8.8581006, 47.6591354 ], + [ 8.8583829, 47.6592371 ], + [ 8.8592255, 47.6587602 ], + [ 8.8592816, 47.6586802 ], + [ 8.8595752, 47.6585482 ], + [ 8.859585, 47.6585436 ], + [ 8.8597873, 47.6584528 ], + [ 8.8601326, 47.6583896 ], + [ 8.8605145, 47.658359 ], + [ 8.860886, 47.6583713 ], + [ 8.8612755, 47.6584368 ], + [ 8.8615401, 47.6584996 ], + [ 8.8618532, 47.6585073 ], + [ 8.8622088, 47.6585162 ], + [ 8.8632454, 47.6585417 ], + [ 8.8633797, 47.658585 ], + [ 8.863711200000001, 47.658536 ], + [ 8.8639085, 47.6584436 ], + [ 8.8641203, 47.6584289 ], + [ 8.864494, 47.6584027 ], + [ 8.8651595, 47.6583653 ], + [ 8.865637, 47.6583594 ], + [ 8.8663573, 47.6582856 ], + [ 8.8664336, 47.6582777 ], + [ 8.8667473, 47.6582134 ], + [ 8.867228, 47.658115 ], + [ 8.8673115, 47.6580636 ], + [ 8.8675113, 47.6579412 ], + [ 8.8676472, 47.657858 ], + [ 8.8677418, 47.6577562 ], + [ 8.8693379, 47.6581008 ], + [ 8.8695472, 47.657965 ], + [ 8.8698801, 47.6578108 ], + [ 8.870232, 47.6576858 ], + [ 8.8705617, 47.6576323 ], + [ 8.8712556, 47.6576884 ], + [ 8.8716477, 47.6576675 ], + [ 8.8722285, 47.6576044 ], + [ 8.8726051, 47.6574983 ], + [ 8.8728519, 47.657425 ], + [ 8.8733187, 47.6573014 ], + [ 8.8736883, 47.657187 ], + [ 8.8740598, 47.6571385 ], + [ 8.8744734, 47.6570783 ], + [ 8.8749237, 47.6570837 ], + [ 8.8751659, 47.6570844 ], + [ 8.8754468, 47.6570722 ], + [ 8.8754008, 47.6549488 ], + [ 8.8755598, 47.6549728 ], + [ 8.8757204, 47.6549909 ], + [ 8.8758822, 47.6550029 ], + [ 8.8760447, 47.6550088 ], + [ 8.8783067, 47.6550483 ], + [ 8.8785164, 47.6550492 ], + [ 8.8787259, 47.6550445 ], + [ 8.878935, 47.6550342 ], + [ 8.8791434, 47.6550183 ], + [ 8.8793506, 47.654997 ], + [ 8.8795565, 47.6549701 ], + [ 8.879760600000001, 47.6549378 ], + [ 8.8805255, 47.6547869 ], + [ 8.8809168, 47.6547045 ], + [ 8.8813049, 47.6546154 ], + [ 8.881689399999999, 47.6545196 ], + [ 8.8820702, 47.6544171 ], + [ 8.8824469, 47.654308 ], + [ 8.8828194, 47.6541925 ], + [ 8.8831873, 47.6540706 ], + [ 8.8835505, 47.6539423 ], + [ 8.8845612, 47.653574 ], + [ 8.8847925, 47.6534856 ], + [ 8.8850184, 47.6533911 ], + [ 8.8852385, 47.6532906 ], + [ 8.8854525, 47.6531842 ], + [ 8.885660099999999, 47.6530721 ], + [ 8.8858608, 47.6529546 ], + [ 8.8860545, 47.6528317 ], + [ 8.8862407, 47.6527037 ], + [ 8.8892107, 47.6505786 ], + [ 8.8894652, 47.6504011 ], + [ 8.8897261, 47.6502278 ], + [ 8.8899934, 47.6500591 ], + [ 8.8902668, 47.6498949 ], + [ 8.8905461, 47.6497354 ], + [ 8.8908314, 47.6495806 ], + [ 8.8911289, 47.6494273 ], + [ 8.8914322, 47.6492792 ], + [ 8.891741, 47.6491364 ], + [ 8.8920551, 47.6489989 ], + [ 8.8923742, 47.648867 ], + [ 8.8926983, 47.6487406 ], + [ 8.8935025, 47.6484392 ], + [ 8.8936718, 47.6483847 ], + [ 8.8938446, 47.6483352 ], + [ 8.8940204, 47.6482909 ], + [ 8.894199, 47.648252 ], + [ 8.8943799, 47.6482183 ], + [ 8.8945628, 47.6481901 ], + [ 8.8947473, 47.6481674 ], + [ 8.8949332, 47.6481501 ], + [ 8.8950647, 47.6481418 ], + [ 8.8948542, 47.644262499999996 ], + [ 8.8946932, 47.6436118 ], + [ 8.8947288, 47.6434539 ], + [ 8.8933654, 47.6433965 ], + [ 8.8927184, 47.6434342 ], + [ 8.8921143, 47.6434895 ], + [ 8.8915542, 47.6436036 ], + [ 8.8786168, 47.6464022 ], + [ 8.8783956, 47.6464372 ], + [ 8.8782195, 47.6465698 ], + [ 8.8778802, 47.6467863 ], + [ 8.8775916, 47.6469734 ], + [ 8.8772737, 47.6471547 ], + [ 8.8771045, 47.6472367 ], + [ 8.8766322, 47.647428 ], + [ 8.8760091, 47.6476452 ], + [ 8.8754579, 47.6477824 ], + [ 8.8750137, 47.6478779 ], + [ 8.874273, 47.6480535 ], + [ 8.8735255, 47.6482221 ], + [ 8.8726532, 47.6484226 ], + [ 8.8717844, 47.6485674 ], + [ 8.8712143, 47.6486211 ], + [ 8.8703783, 47.6487467 ], + [ 8.8700568, 47.6487945 ], + [ 8.8694383, 47.6489371 ], + [ 8.8689782, 47.6490608 ], + [ 8.868399, 47.649272 ], + [ 8.8678972, 47.6494193 ], + [ 8.8674663, 47.6495758 ], + [ 8.8670493, 47.6497547 ], + [ 8.8667433, 47.6499462 ], + [ 8.8663632, 47.6501353 ], + [ 8.8609171, 47.6541057 ], + [ 8.8611439, 47.6542176 ], + [ 8.8615638, 47.6544247 ], + [ 8.8623119, 47.6547368 ], + [ 8.8628833, 47.6549752 ], + [ 8.8623187, 47.6552699 ], + [ 8.8618315, 47.655718 ], + [ 8.861264, 47.65624 ], + [ 8.8611495, 47.6563457 ], + [ 8.8608903, 47.6565492 ], + [ 8.8606018, 47.6567751 ], + [ 8.8600392, 47.6571418 ], + [ 8.8597324, 47.6572743 ], + [ 8.859289, 47.6574658 ], + [ 8.8587905, 47.6577418 ], + [ 8.8583866, 47.657914 ], + [ 8.8578718, 47.6580796 ], + [ 8.8574021, 47.6581922 ], + [ 8.8569736, 47.6583144 ], + [ 8.8567723, 47.6583798 ], + [ 8.8566743, 47.6583262 ], + [ 8.8564415, 47.6583318 ], + [ 8.856291, 47.6584318 ], + [ 8.8560818, 47.6585718 ], + [ 8.8556664, 47.6589071 ], + [ 8.8553053, 47.6591904 ], + [ 8.8547802, 47.6594683 ], + [ 8.8544224, 47.6596273 ], + [ 8.8539221, 47.6597733 ], + [ 8.853433, 47.6600289 ], + [ 8.852943, 47.6602201 ], + [ 8.8523024, 47.6603817 ], + [ 8.8518141, 47.6604202 ], + [ 8.8512823, 47.66045 ], + [ 8.8508982, 47.6604303 ], + [ 8.8507718, 47.6604329 ], + [ 8.8506184, 47.6606731 ], + [ 8.8500561, 47.6607761 ], + [ 8.8497116, 47.6608694 ], + [ 8.8493377, 47.6610474 ], + [ 8.8490424, 47.6612382 ], + [ 8.8487362, 47.6614595 ], + [ 8.8485059, 47.6616854 ], + [ 8.8482988, 47.6618752 ], + [ 8.8479838, 47.6620462 ], + [ 8.847672, 47.6621211 ], + [ 8.847346, 47.6621285 ], + [ 8.8471775, 47.6621145 ], + [ 8.8470416, 47.6620729 ], + [ 8.8469622, 47.6621196 ], + [ 8.8467302, 47.6621596 ], + [ 8.8464905, 47.6621597 ], + [ 8.8459223, 47.6621334 ], + [ 8.8454949, 47.6621161 ], + [ 8.8451732, 47.6621577 ], + [ 8.8448473, 47.6621698 ], + [ 8.8444423, 47.6622123 ], + [ 8.8441704, 47.6622822 ], + [ 8.8437054, 47.6624166 ], + [ 8.8433969, 47.6625811 ], + [ 8.8430816, 47.6628028 ], + [ 8.8428907, 47.6629805 ], + [ 8.8426963, 47.6630863 ], + [ 8.842634499999999, 47.6631725 ], + [ 8.842488, 47.6633603 ], + [ 8.8422573, 47.6632875 ], + [ 8.8420212, 47.6632364 ], + [ 8.8418035, 47.6632149 ], + [ 8.8416202, 47.6632413 ], + [ 8.8414527, 47.6633242 ], + [ 8.8413547, 47.6633651 ], + [ 8.8410768, 47.6634612 ], + [ 8.8409529, 47.6635273 ], + [ 8.8408747, 47.6636236 ], + [ 8.8408317, 47.6637556 ], + [ 8.8407726, 47.6639138 ], + [ 8.8405986, 47.6640688 ], + [ 8.8403521, 47.6642497 ], + [ 8.840198000000001, 47.6643704 ], + [ 8.8399776, 47.664596 ], + [ 8.8398071, 47.6648519 ], + [ 8.8396779, 47.6650637 ], + [ 8.8395231, 47.6652814 ], + [ 8.8393362, 47.665515 ], + [ 8.8392402, 47.6656294 ], + [ 8.8390925, 47.6658353 ], + [ 8.838967, 47.6661266 ], + [ 8.8388297, 47.6663478 ], + [ 8.8387376, 47.6665142 ], + [ 8.8385569, 47.6668556 ], + [ 8.8383116, 47.6671473 ], + [ 8.8381389, 47.6674777 ], + [ 8.8379724, 47.6677917 ], + [ 8.8377267, 47.668196 ], + [ 8.8374802, 47.6685678 ], + [ 8.8372357, 47.6688881 ], + [ 8.8369385, 47.6692326 ], + [ 8.8367046, 47.6695466 ], + [ 8.8364632, 47.6698283 ], + [ 8.836186099999999, 47.670117 ], + [ 8.8359309, 47.6703474 ], + [ 8.8357092, 47.6705885 ], + [ 8.8354534, 47.6707678 ], + [ 8.8351072, 47.6709898 ], + [ 8.834859, 47.6712041 ], + [ 8.8345948, 47.6713791 ], + [ 8.834276599999999, 47.67156 ], + [ 8.8339966, 47.6717354 ], + [ 8.8337223, 47.671877 ], + [ 8.8335801, 47.6719146 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "WZV0034", + "country" : "CHE", + "name" : [ + { + "text" : "Wasser- und Zugvogelreservat Stein am Rhein", + "lang" : "de-CH" + }, + { + "text" : "Réserve d'oiseaux d'eau et de migrateurs Stein am Rhein", + "lang" : "fr-CH" + }, + { + "text" : "Riserva di uccelli acquatici e migratori Stein am Rhein", + "lang" : "it-CH" + }, + { + "text" : "Water Bird and Migratory Bird Reserves Stein am Rhein", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.1597548, 46.9699585 ], + [ 7.1526737, 46.959773 ], + [ 7.137617, 46.958552 ], + [ 7.124499, 46.9660518 ], + [ 7.1169803, 46.9800982 ], + [ 7.1169984, 46.9801012 ], + [ 7.1170303, 46.9801065 ], + [ 7.1170394, 46.980108 ], + [ 7.1199897, 46.9805843 ], + [ 7.1238288, 46.9812083 ], + [ 7.1276707, 46.9818322 ], + [ 7.1315171, 46.9824542 ], + [ 7.134719, 46.9829752 ], + [ 7.135358, 46.9830792 ], + [ 7.1379263, 46.9834976 ], + [ 7.1380799, 46.9835225 ], + [ 7.1381281, 46.9835304 ], + [ 7.1465194, 46.9848929 ], + [ 7.1496142, 46.9793876 ], + [ 7.1597548, 46.9699585 ] + ] + ], + "layer" : { + "upper" : 300, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "FR002", + "country" : "CHE", + "name" : [ + { + "text" : "Etablissement pénitentiaire \"Bellechasse\"", + "lang" : "de-CH" + }, + { + "text" : "Etablissement pénitentiaire \"Bellechasse\"", + "lang" : "fr-CH" + }, + { + "text" : "Etablissement pénitentiaire \"Bellechasse\"", + "lang" : "it-CH" + }, + { + "text" : "Etablissement pénitentiaire \"Bellechasse\"", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Freiburger Strafanstalt (FRSA)", + "lang" : "de-CH" + }, + { + "text" : "Etablissement de détention fribourgeois (EDFR)", + "lang" : "fr-CH" + }, + { + "text" : "Etablissement de détention fribourgeois (EDFR)", + "lang" : "it-CH" + }, + { + "text" : "Etablissement de détention fribourgeois (EDFR)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Direktor", + "lang" : "de-CH" + }, + { + "text" : "Directeur", + "lang" : "fr-CH" + }, + { + "text" : "Directeur", + "lang" : "it-CH" + }, + { + "text" : "Directeur", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Guido Sturny", + "lang" : "de-CH" + }, + { + "text" : "Guido Sturny", + "lang" : "fr-CH" + }, + { + "text" : "Guido Sturny", + "lang" : "it-CH" + }, + { + "text" : "Guido Sturny", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.fr.ch/police-et-securite/criminalite-ordre-public-et-circulation/drones-legislation-et-demandes-de-derogation", + "email" : "edfr-eb_Bellechasse@fr.ch", + "phone" : "0041263041010", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7470505, 47.5164905 ], + [ 7.7470319, 47.5164871 ], + [ 7.7469786, 47.5165006 ], + [ 7.7469543, 47.516504 ], + [ 7.7469247, 47.5165049 ], + [ 7.7468808, 47.5165029 ], + [ 7.7468436, 47.5164964 ], + [ 7.746844, 47.5164953 ], + [ 7.7467638, 47.5164823 ], + [ 7.7467212, 47.5164754 ], + [ 7.7466475, 47.5164635 ], + [ 7.7466471, 47.5164646 ], + [ 7.7466314, 47.5164607 ], + [ 7.7466199, 47.5164521 ], + [ 7.7465971, 47.5164427 ], + [ 7.7465749, 47.5164364 ], + [ 7.7465554, 47.5164316 ], + [ 7.7465345, 47.5164274 ], + [ 7.7465156, 47.5164191 ], + [ 7.7464918, 47.5164127 ], + [ 7.7463141, 47.516519 ], + [ 7.7463007, 47.51658 ], + [ 7.7463003, 47.5165815 ], + [ 7.7462932, 47.5166138 ], + [ 7.7461237, 47.517383 ], + [ 7.7460535, 47.5179923 ], + [ 7.7460486, 47.518034 ], + [ 7.7460472, 47.5180462 ], + [ 7.7460372, 47.5181329 ], + [ 7.7460457, 47.518172 ], + [ 7.7461164, 47.5184975 ], + [ 7.7461234999999995, 47.5184975 ], + [ 7.746217, 47.5184973 ], + [ 7.7463628, 47.5184969 ], + [ 7.7464317, 47.5184968 ], + [ 7.7464375, 47.5185011 ], + [ 7.7466967, 47.5186904 ], + [ 7.7467497, 47.5187291 ], + [ 7.7468077, 47.5187714 ], + [ 7.7468677, 47.5188351 ], + [ 7.7476519, 47.5187135 ], + [ 7.7476576, 47.518724 ], + [ 7.7476624, 47.5187348 ], + [ 7.7476662, 47.5187457 ], + [ 7.7476663, 47.5187462 ], + [ 7.747669, 47.5187567 ], + [ 7.7476708, 47.5187678 ], + [ 7.7476716, 47.518779 ], + [ 7.7476714, 47.5187902 ], + [ 7.7476702, 47.5188014 ], + [ 7.7476695, 47.5188052 ], + [ 7.747667, 47.518816 ], + [ 7.7476648, 47.5188235 ], + [ 7.7476607, 47.5188344 ], + [ 7.7476391, 47.5188844 ], + [ 7.7476353, 47.5188932 ], + [ 7.7476286, 47.5189097 ], + [ 7.7476228, 47.5189263 ], + [ 7.7476194, 47.5189374 ], + [ 7.7476098, 47.5189842 ], + [ 7.7476057, 47.5190524 ], + [ 7.7476050999999995, 47.519061 ], + [ 7.747616, 47.5191517 ], + [ 7.7476319, 47.519232 ], + [ 7.7476424999999995, 47.5192878 ], + [ 7.7476386, 47.5193268 ], + [ 7.7476375, 47.5193339 ], + [ 7.7476341, 47.51935 ], + [ 7.74763, 47.519366 ], + [ 7.747625, 47.5193819 ], + [ 7.7476067, 47.5194354 ], + [ 7.7473289, 47.5202505 ], + [ 7.7473234, 47.5202682 ], + [ 7.7473187, 47.5202859 ], + [ 7.747315, 47.5203038 ], + [ 7.7473121, 47.5203217 ], + [ 7.7473102, 47.5203397 ], + [ 7.7473092, 47.5203577 ], + [ 7.7473091, 47.5203757 ], + [ 7.7473099, 47.5203938 ], + [ 7.7473116, 47.5204118 ], + [ 7.7473142, 47.5204297 ], + [ 7.7473178, 47.5204476 ], + [ 7.7473222, 47.5204654 ], + [ 7.7473276, 47.520483 ], + [ 7.7473338, 47.5205006 ], + [ 7.747341, 47.520518 ], + [ 7.7474174, 47.5206928 ], + [ 7.7474941, 47.520868 ], + [ 7.7475476, 47.5209903 ], + [ 7.7475526, 47.5210027 ], + [ 7.7475568, 47.5210152 ], + [ 7.7475602, 47.5210278 ], + [ 7.7475628, 47.5210405 ], + [ 7.7475646, 47.5210533 ], + [ 7.7475657, 47.5210661 ], + [ 7.7475659, 47.5210789 ], + [ 7.7475653, 47.5210917 ], + [ 7.7475639, 47.5211045 ], + [ 7.7475615, 47.5211187 ], + [ 7.7475582, 47.5211328 ], + [ 7.7475541, 47.5211467 ], + [ 7.7475491, 47.5211606 ], + [ 7.7475433, 47.5211743 ], + [ 7.7475366, 47.5211878 ], + [ 7.7475292, 47.5212012 ], + [ 7.7475209, 47.5212143 ], + [ 7.7475121, 47.5212284 ], + [ 7.7475041000000004, 47.5212426 ], + [ 7.7474971, 47.5212571 ], + [ 7.7474909, 47.5212718 ], + [ 7.7474856, 47.5212866 ], + [ 7.7474812, 47.5213016 ], + [ 7.7474778, 47.5213167 ], + [ 7.7474752, 47.5213319 ], + [ 7.7474736, 47.5213471 ], + [ 7.747473, 47.5213624 ], + [ 7.7474733, 47.5213776 ], + [ 7.7474745, 47.5213929 ], + [ 7.7474766, 47.5214081 ], + [ 7.7474796999999995, 47.5214232 ], + [ 7.7475002, 47.5215701 ], + [ 7.7475002, 47.5215763 ], + [ 7.7475008, 47.5215873 ], + [ 7.7475022, 47.5215984 ], + [ 7.7475042, 47.5216094 ], + [ 7.7475426, 47.5217858 ], + [ 7.7475455, 47.521797 ], + [ 7.7475493, 47.5218081 ], + [ 7.747554, 47.521819 ], + [ 7.7475594999999995, 47.5218297 ], + [ 7.7475659, 47.5218403 ], + [ 7.7475663, 47.5218407 ], + [ 7.7475732, 47.5218505 ], + [ 7.7475812, 47.5218605 ], + [ 7.74759, 47.5218702 ], + [ 7.7475996, 47.5218795 ], + [ 7.74761, 47.5218885 ], + [ 7.7476123999999995, 47.5218904 ], + [ 7.747621, 47.5218971 ], + [ 7.7476327, 47.5219052 ], + [ 7.7476564, 47.5219205 ], + [ 7.7476807, 47.5219353 ], + [ 7.7477056, 47.5219497 ], + [ 7.747731, 47.5219636 ], + [ 7.747757, 47.5219771 ], + [ 7.7477834, 47.5219901 ], + [ 7.7478104, 47.5220026 ], + [ 7.7478379, 47.5220146 ], + [ 7.7480967, 47.5221245 ], + [ 7.748302, 47.5222117 ], + [ 7.7483163, 47.5222174 ], + [ 7.7483311, 47.5222226 ], + [ 7.7483462, 47.5222272 ], + [ 7.7483617, 47.5222313 ], + [ 7.7483775, 47.5222347 ], + [ 7.7483935, 47.5222376 ], + [ 7.7484098, 47.5222399 ], + [ 7.7484262, 47.5222415 ], + [ 7.7484428, 47.5222426 ], + [ 7.7484594, 47.522243 ], + [ 7.748476, 47.5222429 ], + [ 7.7484798999999995, 47.5222427 ], + [ 7.7487696, 47.5220054 ], + [ 7.7488806, 47.5218712 ], + [ 7.7490676, 47.5216793 ], + [ 7.7494089, 47.5213679 ], + [ 7.7497285, 47.5211891 ], + [ 7.7501055, 47.5209631 ], + [ 7.7502426, 47.5208415 ], + [ 7.7503206, 47.520694 ], + [ 7.7503693, 47.5204477 ], + [ 7.750485, 47.520242 ], + [ 7.7506779, 47.5199647 ], + [ 7.7508892, 47.5196702 ], + [ 7.7511247999999995, 47.5192874 ], + [ 7.7512749, 47.5191272 ], + [ 7.7513386, 47.5189546 ], + [ 7.7513346, 47.5188416 ], + [ 7.7512649, 47.5187319 ], + [ 7.7512877, 47.5187237 ], + [ 7.7513213, 47.5187125 ], + [ 7.7513553, 47.5187018 ], + [ 7.7513897, 47.5186918 ], + [ 7.7514245, 47.5186824 ], + [ 7.7514597, 47.5186736 ], + [ 7.7514804, 47.5186689 ], + [ 7.7514952, 47.5186655 ], + [ 7.7515309, 47.518658 ], + [ 7.7516924, 47.5186258 ], + [ 7.7517157, 47.5186208 ], + [ 7.7517385999999995, 47.5186153 ], + [ 7.7517613, 47.5186093 ], + [ 7.7517837, 47.5186027 ], + [ 7.7518056, 47.5185955 ], + [ 7.7518272, 47.5185879 ], + [ 7.7518484, 47.5185797 ], + [ 7.7518691, 47.518571 ], + [ 7.7518894, 47.5185619 ], + [ 7.7519092, 47.5185522 ], + [ 7.7519284, 47.5185421 ], + [ 7.7519472, 47.5185315 ], + [ 7.7519653, 47.5185205 ], + [ 7.7519829, 47.5185091 ], + [ 7.7519998, 47.5184972 ], + [ 7.7524449, 47.5181742 ], + [ 7.7524758, 47.5181518 ], + [ 7.7524893, 47.5181424 ], + [ 7.7525033, 47.5181335 ], + [ 7.752518, 47.518125 ], + [ 7.7525332, 47.518117 ], + [ 7.7525489, 47.5181094 ], + [ 7.7525652, 47.5181024 ], + [ 7.7525818, 47.5180958 ], + [ 7.7525857, 47.5180945 ], + [ 7.7525989, 47.5180898 ], + [ 7.7526164, 47.5180842 ], + [ 7.7526342, 47.5180793 ], + [ 7.7525973, 47.5180605 ], + [ 7.752587, 47.5180552 ], + [ 7.7525801, 47.5180517 ], + [ 7.7520123, 47.5176833 ], + [ 7.7515613, 47.5171812 ], + [ 7.7513814, 47.5170341 ], + [ 7.7513793, 47.5170324 ], + [ 7.7510257, 47.5168802 ], + [ 7.7508925, 47.5167869 ], + [ 7.7502708, 47.5165631 ], + [ 7.7500781, 47.5164975 ], + [ 7.7499772, 47.5164632 ], + [ 7.7498835, 47.5164336 ], + [ 7.7495507, 47.5163611 ], + [ 7.7492361, 47.5163266 ], + [ 7.7491924999999995, 47.5163246 ], + [ 7.7491613, 47.5163238 ], + [ 7.7491301, 47.5163235 ], + [ 7.7490989, 47.5163237 ], + [ 7.748899, 47.5163265 ], + [ 7.7484206, 47.5163333 ], + [ 7.7484307, 47.5163517 ], + [ 7.7484311, 47.516352499999996 ], + [ 7.7482941, 47.5164347 ], + [ 7.7482245, 47.516436 ], + [ 7.748161, 47.516444 ], + [ 7.7480951000000005, 47.5164505 ], + [ 7.7480253999999995, 47.5164531 ], + [ 7.7479408, 47.5164645 ], + [ 7.7478711, 47.5164716 ], + [ 7.7478186, 47.5164768 ], + [ 7.7477669, 47.5164761 ], + [ 7.7477316, 47.5164688 ], + [ 7.7477026, 47.5164678 ], + [ 7.7476709, 47.5164727 ], + [ 7.7476423, 47.516478 ], + [ 7.7476111, 47.5164893 ], + [ 7.7475868, 47.5164989 ], + [ 7.7475539, 47.516499 ], + [ 7.747521, 47.5164969 ], + [ 7.7474842, 47.5164981 ], + [ 7.7474426, 47.5164972 ], + [ 7.7474150999999996, 47.5164958 ], + [ 7.7474113, 47.5164956 ], + [ 7.7473588, 47.5164974 ], + [ 7.7473235, 47.5164895 ], + [ 7.7472819, 47.5164817 ], + [ 7.7472396, 47.5164786 ], + [ 7.7472019, 47.5164792 ], + [ 7.747162, 47.5164846 ], + [ 7.7471359, 47.516488 ], + [ 7.7471322, 47.5164884 ], + [ 7.7470947, 47.5164949 ], + [ 7.7470602, 47.5164923 ], + [ 7.7470505, 47.5164905 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns030", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Ramschberg - Zettel", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Ramschberg - Zettel", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Ramschberg - Zettel", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Ramschberg - Zettel", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8573705, 47.4419383 ], + [ 7.857749, 47.4421313 ], + [ 7.8577181, 47.4423751 ], + [ 7.8577096, 47.442402799999996 ], + [ 7.8580968, 47.4424697 ], + [ 7.8583192, 47.4425024 ], + [ 7.8583841, 47.4425119 ], + [ 7.8586922999999995, 47.4425344 ], + [ 7.8594048, 47.4426531 ], + [ 7.8596916, 47.4427121 ], + [ 7.8598007, 47.4427344 ], + [ 7.8602988, 47.4428057 ], + [ 7.8606204, 47.4427604 ], + [ 7.860533, 47.442631 ], + [ 7.8609357, 47.4425235 ], + [ 7.861121, 47.4426981 ], + [ 7.8613853, 47.4426971 ], + [ 7.861586, 47.442682 ], + [ 7.8617022, 47.4426673 ], + [ 7.8618393, 47.4426309 ], + [ 7.8620288, 47.442537 ], + [ 7.8622076, 47.4424288 ], + [ 7.8624288, 47.4423204 ], + [ 7.8622908, 47.4421866 ], + [ 7.8620874, 47.4419617 ], + [ 7.8619447000000005, 47.4417571 ], + [ 7.8617822, 47.4416072 ], + [ 7.8617108, 47.4414981 ], + [ 7.8617101, 47.4414092 ], + [ 7.8617194, 47.4413202 ], + [ 7.8616979, 47.4411425 ], + [ 7.8616466, 47.4410264 ], + [ 7.8615171, 47.4409113 ], + [ 7.8613223, 47.4408156 ], + [ 7.8610698, 47.4407482 ], + [ 7.8607568, 47.4406809 ], + [ 7.8604838, 47.4405793 ], + [ 7.86017, 47.4404095 ], + [ 7.8598866, 47.4402601 ], + [ 7.8596535, 47.4401037 ], + [ 7.8594606, 47.4399266 ], + [ 7.8593385, 47.4397834 ], + [ 7.8592569999999995, 47.4396674 ], + [ 7.8591457, 47.43962 ], + [ 7.8590044, 47.4395931 ], + [ 7.8588534, 47.4396142 ], + [ 7.8586423, 47.439697 ], + [ 7.8585121000000004, 47.4398001 ], + [ 7.8584624, 47.4398891 ], + [ 7.8584326, 47.4400405 ], + [ 7.8584993, 47.440284 ], + [ 7.8585374, 47.4404398 ], + [ 7.8585701, 47.4405848 ], + [ 7.8586025, 47.4406977 ], + [ 7.8586491, 47.4408213 ], + [ 7.8586846, 47.4408652 ], + [ 7.8588062999999995, 47.4409504 ], + [ 7.8588503, 47.4409848 ], + [ 7.8589052, 47.4410286 ], + [ 7.8589734, 47.4411145 ], + [ 7.8589352, 47.4411784 ], + [ 7.8588159, 47.4412579 ], + [ 7.8585315, 47.4413808 ], + [ 7.8583205, 47.4414318 ], + [ 7.8580561, 47.4414184 ], + [ 7.8578594, 47.4414187 ], + [ 7.8576540999999995, 47.4414222 ], + [ 7.8573427, 47.4414142 ], + [ 7.8571349999999995, 47.4413904 ], + [ 7.8569769, 47.4413604 ], + [ 7.856808, 47.4413082 ], + [ 7.8569192999999995, 47.4415933 ], + [ 7.8570668, 47.4417703 ], + [ 7.8573705, 47.4419383 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr036", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Anstaltsmatte", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Anstaltsmatte", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Anstaltsmatte", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Anstaltsmatte", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.6292396, 46.9267306 ], + [ 6.6294888, 46.9267787 ], + [ 6.629747, 46.9267924 ], + [ 6.630004, 46.9267711 ], + [ 6.6302499, 46.9267157 ], + [ 6.6304752, 46.9266283 ], + [ 6.6305222, 46.9266004 ], + [ 6.6305291, 46.9265978 ], + [ 6.6307033, 46.9264953 ], + [ 6.6308588, 46.9264359 ], + [ 6.6310559, 46.9263208 ], + [ 6.6312162, 46.9261814 ], + [ 6.6312966, 46.9260951 ], + [ 6.6312968, 46.926095 ], + [ 6.631311, 46.9260799 ], + [ 6.631312, 46.9260785 ], + [ 6.6313181, 46.9260749 ], + [ 6.6314777, 46.925936899999996 ], + [ 6.63157, 46.9258387 ], + [ 6.631688, 46.9256808 ], + [ 6.6317584, 46.9255102 ], + [ 6.6317787, 46.9253334 ], + [ 6.6317479, 46.9251574 ], + [ 6.6316673, 46.9249888 ], + [ 6.6315401, 46.9248344 ], + [ 6.6313711, 46.9247001 ], + [ 6.6311669, 46.9245912 ], + [ 6.6310977, 46.9245613 ], + [ 6.6309995, 46.9245274 ], + [ 6.6309127, 46.9244803 ], + [ 6.6308443, 46.9244501 ], + [ 6.6306151, 46.9243695 ], + [ 6.6303672, 46.9243212 ], + [ 6.6301103999999995, 46.9243069 ], + [ 6.6298544, 46.9243273 ], + [ 6.6296092, 46.9243815 ], + [ 6.6293841, 46.9244675 ], + [ 6.6293122, 46.9245095 ], + [ 6.6292473, 46.9245343 ], + [ 6.6290515, 46.9246487 ], + [ 6.6288919, 46.924787 ], + [ 6.6288298999999995, 46.9248531 ], + [ 6.6288064, 46.9248783 ], + [ 6.6288009, 46.9248842 ], + [ 6.6287705, 46.9249166 ], + [ 6.6287523, 46.924936 ], + [ 6.6287503999999995, 46.924938 ], + [ 6.628672, 46.9250217 ], + [ 6.628637, 46.9250592 ], + [ 6.6285199, 46.9252164 ], + [ 6.6284821, 46.925308 ], + [ 6.6284672, 46.9253239 ], + [ 6.6284547, 46.9253373 ], + [ 6.6283377, 46.9254942 ], + [ 6.6282675, 46.9256637 ], + [ 6.6282469, 46.9258394 ], + [ 6.6282767, 46.9260144 ], + [ 6.6283558, 46.9261821 ], + [ 6.628481, 46.926336 ], + [ 6.6286477, 46.9264703 ], + [ 6.6288494, 46.9265797 ], + [ 6.6289112, 46.9266069 ], + [ 6.628931, 46.9266156 ], + [ 6.6290091, 46.92665 ], + [ 6.6292396, 46.9267306 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "NE11", + "country" : "CHE", + "name" : [ + { + "text" : "Hôpital Couvet", + "lang" : "de-CH" + }, + { + "text" : "Hôpital Couvet", + "lang" : "fr-CH" + }, + { + "text" : "Hôpital Couvet", + "lang" : "it-CH" + }, + { + "text" : "Hôpital Couvet", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "regulationExemption" : "YES", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Police Neuchâteloise", + "lang" : "de-CH" + }, + { + "text" : "Police Neuchâteloise", + "lang" : "fr-CH" + }, + { + "text" : "Police Neuchâteloise", + "lang" : "it-CH" + }, + { + "text" : "Police Neuchâteloise", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "PN - Rens et opérations", + "lang" : "de-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "fr-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "it-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "PN - Rens et opérations", + "lang" : "de-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "fr-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "it-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ne.ch/autorites/DESC/PONE/Pages/Drones.aspx", + "email" : "Police.Neuchateloise@ne.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4275208, 47.4127225 ], + [ 7.4272956, 47.4126821 ], + [ 7.4268479, 47.4125152 ], + [ 7.4262116, 47.4124618 ], + [ 7.4258827, 47.4124342 ], + [ 7.4257704, 47.4123979 ], + [ 7.4250624, 47.4121689 ], + [ 7.4246924, 47.4119317 ], + [ 7.4245631, 47.4117314 ], + [ 7.4244828, 47.4118304 ], + [ 7.4243094, 47.4120441 ], + [ 7.4242281, 47.4120395 ], + [ 7.4241204, 47.4120335 ], + [ 7.4238875, 47.4120247 ], + [ 7.4236598, 47.4120247 ], + [ 7.4234217, 47.4120387 ], + [ 7.4231681, 47.4121072 ], + [ 7.4230361, 47.4121423 ], + [ 7.4226659999999995, 47.4122546 ], + [ 7.4225094, 47.412327 ], + [ 7.4231013, 47.4128467 ], + [ 7.4230766, 47.4128787 ], + [ 7.4233156, 47.4130655 ], + [ 7.4243412, 47.41326 ], + [ 7.4245729, 47.413312 ], + [ 7.4252784, 47.413281 ], + [ 7.4257225, 47.4133975 ], + [ 7.4262805, 47.4136065 ], + [ 7.4266865, 47.4138039 ], + [ 7.4267354, 47.4138236 ], + [ 7.4268984, 47.4138892 ], + [ 7.4271959, 47.4141809 ], + [ 7.4274888, 47.4144845 ], + [ 7.4284729, 47.4143585 ], + [ 7.4286385, 47.4143551 ], + [ 7.4288001, 47.4143517 ], + [ 7.4287957, 47.4143045 ], + [ 7.4286034, 47.4143211 ], + [ 7.428208, 47.414347 ], + [ 7.4280526, 47.4143458 ], + [ 7.4279791, 47.4141867 ], + [ 7.4279016, 47.4140468 ], + [ 7.4278382, 47.4139847 ], + [ 7.4278495, 47.4138425 ], + [ 7.4278499, 47.4136672 ], + [ 7.4278578, 47.4134915 ], + [ 7.4278494, 47.4133892 ], + [ 7.4278308, 47.4133267 ], + [ 7.4278658, 47.4132449 ], + [ 7.427801, 47.4131808 ], + [ 7.4277129, 47.4131217 ], + [ 7.4275238, 47.4130405 ], + [ 7.4275101, 47.413037 ], + [ 7.4275208, 47.4127225 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns003", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Oltme", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Oltme", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Oltme", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Oltme", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.2083205, 47.2744106 ], + [ 8.208331, 47.2743947 ], + [ 8.2082875, 47.2744391 ], + [ 8.208186, 47.2745412 ], + [ 8.2080823, 47.2746345 ], + [ 8.2079962, 47.2747108 ], + [ 8.2079296, 47.2747531 ], + [ 8.2078757, 47.2748005 ], + [ 8.2077747, 47.2748927 ], + [ 8.2077165, 47.2749356 ], + [ 8.2076611, 47.2749899 ], + [ 8.2076048, 47.2750669 ], + [ 8.2075576, 47.2751438 ], + [ 8.2075144, 47.2752178 ], + [ 8.2074693, 47.2752676 ], + [ 8.2073912, 47.2752962 ], + [ 8.2073635, 47.2753261 ], + [ 8.2073161, 47.2753916 ], + [ 8.2072929, 47.275441 ], + [ 8.2072713, 47.2754852 ], + [ 8.2072272, 47.2755506 ], + [ 8.2071508, 47.2756315 ], + [ 8.2070834, 47.2757068 ], + [ 8.2069985, 47.2758288 ], + [ 8.2069569, 47.2758748 ], + [ 8.2069211, 47.2759145 ], + [ 8.2068825, 47.2759743 ], + [ 8.2068611, 47.2760557 ], + [ 8.206856, 47.2761127 ], + [ 8.2068563, 47.2761334 ], + [ 8.2068433, 47.276147 ], + [ 8.2068021, 47.2761383 ], + [ 8.2067308, 47.2761514 ], + [ 8.2067043, 47.2761453 ], + [ 8.2066408, 47.2761493 ], + [ 8.206601299999999, 47.2761613 ], + [ 8.2065728, 47.276202 ], + [ 8.2065879, 47.2762424 ], + [ 8.2066215, 47.2762764 ], + [ 8.2066284, 47.2762953 ], + [ 8.2066655, 47.2763022 ], + [ 8.2066686, 47.2763328 ], + [ 8.2066528, 47.2763384 ], + [ 8.2066374, 47.2763756 ], + [ 8.2066021, 47.2764306 ], + [ 8.2065726, 47.2764911 ], + [ 8.2065353, 47.2765589 ], + [ 8.2065149, 47.2766346 ], + [ 8.2065278, 47.2766853 ], + [ 8.2065318, 47.2767383 ], + [ 8.2065122, 47.2767916 ], + [ 8.2064782, 47.2768529 ], + [ 8.2063932, 47.2769628 ], + [ 8.2063416, 47.2770509 ], + [ 8.206323, 47.2770888 ], + [ 8.2062873, 47.2772024 ], + [ 8.2062727, 47.2772894 ], + [ 8.2062757, 47.2773578 ], + [ 8.2063006, 47.2774759 ], + [ 8.206325, 47.277553 ], + [ 8.2063181, 47.2776287 ], + [ 8.2062908, 47.2776948 ], + [ 8.2062289, 47.277762 ], + [ 8.2061805, 47.2778436 ], + [ 8.2061547, 47.277937 ], + [ 8.2061437, 47.2780457 ], + [ 8.2061333, 47.278119 ], + [ 8.2061337, 47.2781512 ], + [ 8.2061268, 47.2782341 ], + [ 8.2060945, 47.2783502 ], + [ 8.2060797, 47.2784009 ], + [ 8.2060601, 47.2784678 ], + [ 8.2060362, 47.2785331 ], + [ 8.2060178, 47.278588 ], + [ 8.2060022, 47.2786943 ], + [ 8.2059836, 47.2788296 ], + [ 8.2059653, 47.278898 ], + [ 8.2059314, 47.2789691 ], + [ 8.2058929, 47.279024 ], + [ 8.2058511, 47.2790975 ], + [ 8.2058463, 47.2791586 ], + [ 8.2058289, 47.2792062 ], + [ 8.2058173, 47.2792666 ], + [ 8.2058074, 47.2793809 ], + [ 8.205806, 47.2794518 ], + [ 8.2058306, 47.2795466 ], + [ 8.2058564, 47.2796446 ], + [ 8.2059044, 47.2797256 ], + [ 8.2059738, 47.2798128 ], + [ 8.2060463, 47.2798808 ], + [ 8.2061013, 47.2799451 ], + [ 8.2061292, 47.2799777 ], + [ 8.2061738, 47.2799167 ], + [ 8.2067343, 47.2787878 ], + [ 8.2069171, 47.2781695 ], + [ 8.2071831, 47.2773562 ], + [ 8.2077255, 47.2760203 ], + [ 8.2083205, 47.2744106 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "KTAG102", + "country" : "CHE", + "name" : [ + { + "text" : "Hallwilersee, Beinwil-Ägelmoos", + "lang" : "de-CH" + }, + { + "text" : "Hallwilersee, Beinwil-Ägelmoos", + "lang" : "fr-CH" + }, + { + "text" : "Hallwilersee, Beinwil-Ägelmoos", + "lang" : "it-CH" + }, + { + "text" : "Hallwilersee, Beinwil-Ägelmoos", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "regulationExemption" : "NO", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "schedule" : [ + { + "day" : [ "ANY" ], + "startTime" : "00:00:00.00+01:00", + "endTime" : "00:00:00.00+01:00" + } + ] + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Aargau", + "lang" : "de-CH" + }, + { + "text" : "Canton d'Argovie", + "lang" : "fr-CH" + }, + { + "text" : "Canton Argovia", + "lang" : "it-CH" + }, + { + "text" : "Canton of Aargau", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Departement Bau, Verkehr und Umwelt (BVU)", + "lang" : "de-CH" + }, + { + "text" : "Département de la construction, des transports et de l'environnement (CTE)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento delle costruzioni, dei trasporti e dell'ambiente (CTA)", + "lang" : "it-CH" + }, + { + "text" : "Department of Civil Engineering,Transport and Environment (CTE)", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Sektion Gewässernutzung", + "lang" : "de-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "fr-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "it-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ag.ch/de/verwaltung/bvu/umwelt-natur-landschaft/hochwasserschutz-gewaesser/gewaessernutzung", + "email" : "alg@ag.ch", + "phone" : "0041 62 835 34 50", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8362365, 47.3751274 ], + [ 7.8362412, 47.3751786 ], + [ 7.8367633, 47.3753857 ], + [ 7.8369621, 47.375412 ], + [ 7.83705, 47.3754103 ], + [ 7.8373348, 47.3755455 ], + [ 7.8376657, 47.3756734 ], + [ 7.8381251, 47.375878 ], + [ 7.8383216000000004, 47.3759859 ], + [ 7.8386224, 47.3762208 ], + [ 7.8387487, 47.3763227 ], + [ 7.8389605, 47.3764606 ], + [ 7.8392019, 47.3765791 ], + [ 7.8394489, 47.3766943 ], + [ 7.8397869, 47.3768879 ], + [ 7.8399778, 47.3770047 ], + [ 7.8401609, 47.3771518 ], + [ 7.8403857, 47.3772903 ], + [ 7.8407315, 47.3775144 ], + [ 7.8408478, 47.3776189 ], + [ 7.8409057, 47.3775585 ], + [ 7.8408653, 47.3775164 ], + [ 7.8408095, 47.3774784 ], + [ 7.8406924, 47.3774023 ], + [ 7.8404279, 47.3772324 ], + [ 7.8402385, 47.3771165 ], + [ 7.8400961, 47.377011 ], + [ 7.839879, 47.376864 ], + [ 7.8397941, 47.3768143 ], + [ 7.8394802, 47.3766355 ], + [ 7.8393567, 47.3765732 ], + [ 7.8392086, 47.3765073 ], + [ 7.8391055, 47.376456 ], + [ 7.8388596, 47.3763103 ], + [ 7.8387415, 47.3762283 ], + [ 7.8385591, 47.3760843 ], + [ 7.8384957, 47.3760289 ], + [ 7.8383778, 47.3759465 ], + [ 7.8382547, 47.3758717 ], + [ 7.8381829, 47.3758338 ], + [ 7.8379829999999995, 47.3757496 ], + [ 7.8375813, 47.3755752 ], + [ 7.8374220999999995, 47.3755128 ], + [ 7.8372732, 47.3754393 ], + [ 7.8372588, 47.3754312 ], + [ 7.8371206, 47.3753721 ], + [ 7.8370636, 47.3753515 ], + [ 7.8369859, 47.3753278 ], + [ 7.8369771, 47.3753257 ], + [ 7.8369681, 47.3753242 ], + [ 7.8369588, 47.3753233 ], + [ 7.8369496, 47.3753231 ], + [ 7.8369403, 47.3753236 ], + [ 7.836931, 47.3753247 ], + [ 7.8369222, 47.3753264 ], + [ 7.8369135, 47.3753288 ], + [ 7.8369053, 47.3753318 ], + [ 7.8369009, 47.3753337 ], + [ 7.836874, 47.375315 ], + [ 7.8364971, 47.3751826 ], + [ 7.836295, 47.3751045 ], + [ 7.8362365, 47.3751274 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns048", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Hecken-Komplex Schmutzberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Hecken-Komplex Schmutzberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Hecken-Komplex Schmutzberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Hecken-Komplex Schmutzberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.3187509, 46.9068648 ], + [ 8.3186225, 46.9045117 ], + [ 8.3183146, 46.9021665 ], + [ 8.317828, 46.8998356 ], + [ 8.3171642, 46.8975253 ], + [ 8.316324999999999, 46.895242 ], + [ 8.3153126, 46.8929918 ], + [ 8.31413, 46.8907811 ], + [ 8.3127803, 46.8886159 ], + [ 8.3112673, 46.886502 ], + [ 8.3095951, 46.8844452 ], + [ 8.3077683, 46.8824513 ], + [ 8.305792, 46.8805256 ], + [ 8.3036715, 46.8786734 ], + [ 8.3014127, 46.8768999 ], + [ 8.2990218, 46.8752097 ], + [ 8.2965054, 46.8736077 ], + [ 8.2938702, 46.872098 ], + [ 8.2911237, 46.870685 ], + [ 8.2882731, 46.8693724 ], + [ 8.2853265, 46.8681638 ], + [ 8.2822918, 46.8670626 ], + [ 8.2791773, 46.8660718 ], + [ 8.2759916, 46.865194 ], + [ 8.2727434, 46.8644316 ], + [ 8.2694416, 46.8637868 ], + [ 8.2660951, 46.8632614 ], + [ 8.2627132, 46.8628566 ], + [ 8.2593051, 46.8625738 ], + [ 8.25588, 46.8624135 ], + [ 8.2524475, 46.8623763 ], + [ 8.2490168, 46.8624623 ], + [ 8.2455974, 46.8626712 ], + [ 8.2421985, 46.8630025 ], + [ 8.2388296, 46.8634553 ], + [ 8.2354997, 46.8640282 ], + [ 8.232218, 46.8647198 ], + [ 8.2289935, 46.8655282 ], + [ 8.2258351, 46.8664511 ], + [ 8.2227512, 46.867486 ], + [ 8.2197504, 46.8686302 ], + [ 8.2168409, 46.8698804 ], + [ 8.2140307, 46.8712332 ], + [ 8.2113274, 46.872685 ], + [ 8.2087384, 46.8742318 ], + [ 8.2062709, 46.8758693 ], + [ 8.2039316, 46.8775931 ], + [ 8.201727, 46.8793984 ], + [ 8.1996629, 46.8812803 ], + [ 8.1977453, 46.8832337 ], + [ 8.1959792, 46.8852532 ], + [ 8.1943695, 46.8873333 ], + [ 8.1929208, 46.8894682 ], + [ 8.1916369, 46.8916522 ], + [ 8.1905214, 46.8938793 ], + [ 8.1895773, 46.8961433 ], + [ 8.1888074, 46.8984381 ], + [ 8.1882136, 46.9007573 ], + [ 8.1877978, 46.9030947 ], + [ 8.1875609, 46.9054438 ], + [ 8.1875037, 46.9077981 ], + [ 8.1876264, 46.9101513 ], + [ 8.1879287, 46.9124968 ], + [ 8.1884097, 46.914828299999996 ], + [ 8.1890682, 46.917139399999996 ], + [ 8.1899024, 46.9194236 ], + [ 8.1909099, 46.9216748 ], + [ 8.1920882, 46.9238868 ], + [ 8.1934339, 46.9260535 ], + [ 8.1949434, 46.9281689 ], + [ 8.1966126, 46.9302273 ], + [ 8.1984368, 46.932223 ], + [ 8.2004112, 46.9341505 ], + [ 8.2025303, 46.9360046 ], + [ 8.2047883, 46.9377801 ], + [ 8.207179, 46.9394722 ], + [ 8.2096959, 46.9410762 ], + [ 8.2123321, 46.9425878 ], + [ 8.2150802, 46.9440027 ], + [ 8.2179329, 46.9453171 ], + [ 8.2208823, 46.9465274 ], + [ 8.2239202, 46.9476302 ], + [ 8.2270384, 46.9486226 ], + [ 8.230228199999999, 46.9495017 ], + [ 8.233481, 46.9502653 ], + [ 8.2367878, 46.9509111 ], + [ 8.2401394, 46.9514374 ], + [ 8.2435267, 46.9518428 ], + [ 8.2469404, 46.9521261 ], + [ 8.2503711, 46.9522866 ], + [ 8.2538094, 46.9523239 ], + [ 8.2572458, 46.9522377 ], + [ 8.2606709, 46.9520285 ], + [ 8.2640753, 46.9516966 ], + [ 8.2674496, 46.9512432 ], + [ 8.2707845, 46.9506693 ], + [ 8.2740709, 46.9499766 ], + [ 8.2772998, 46.949167 ], + [ 8.2804623, 46.9482426 ], + [ 8.2835497, 46.9472062 ], + [ 8.2865535, 46.9460604 ], + [ 8.2894655, 46.9448084 ], + [ 8.2922777, 46.9434537 ], + [ 8.2949824, 46.942 ], + [ 8.2975721, 46.9404513 ], + [ 8.3000398, 46.9388118 ], + [ 8.3023787, 46.9370861 ], + [ 8.3045823, 46.9352789 ], + [ 8.3066447, 46.9333951 ], + [ 8.3085602, 46.9314399 ], + [ 8.3103236, 46.9294187 ], + [ 8.31193, 46.927337 ], + [ 8.313375, 46.9252005 ], + [ 8.3146548, 46.9230152 ], + [ 8.3157658, 46.9207869 ], + [ 8.3167049, 46.9185219 ], + [ 8.3174697, 46.9162263 ], + [ 8.318058, 46.9139064 ], + [ 8.3184683, 46.9115685 ], + [ 8.3186995, 46.9092192 ], + [ 8.3187509, 46.9068648 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSPG001", + "country" : "CHE", + "name" : [ + { + "text" : "LSPG Kägiswil", + "lang" : "de-CH" + }, + { + "text" : "LSPG Kägiswil", + "lang" : "fr-CH" + }, + { + "text" : "LSPG Kägiswil", + "lang" : "it-CH" + }, + { + "text" : "LSPG Kägiswil", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Flugplatzgenossenschaft Obwalden", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzgenossenschaft Obwalden", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzgenossenschaft Obwalden", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzgenossenschaft Obwalden", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Jost Vogler", + "lang" : "de-CH" + }, + { + "text" : "Jost Vogler", + "lang" : "fr-CH" + }, + { + "text" : "Jost Vogler", + "lang" : "it-CH" + }, + { + "text" : "Jost Vogler", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.airportlspg.ch/index.php/fuer-piloten/drohnen", + "email" : "lspg@bluewin.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.0874404, 46.6281256 ], + [ 7.1017721, 46.6248587 ], + [ 7.1021073, 46.6046375 ], + [ 7.1227459, 46.6107419 ], + [ 7.128005, 46.6042076 ], + [ 7.1169934, 46.5947495 ], + [ 7.1025695, 46.5640235 ], + [ 7.0834748, 46.5641452 ], + [ 7.0639171, 46.570838 ], + [ 7.0607392, 46.6068861 ], + [ 7.0666917, 46.6224463 ], + [ 7.0874404, 46.6281256 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSGT001", + "country" : "CHE", + "name" : [ + { + "text" : "LSGT Gruyères", + "lang" : "de-CH" + }, + { + "text" : "LSGT Gruyères", + "lang" : "fr-CH" + }, + { + "text" : "LSGT Gruyères", + "lang" : "it-CH" + }, + { + "text" : "LSGT Gruyères", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Aérodrome de la Gruyère", + "lang" : "de-CH" + }, + { + "text" : "Aérodrome de la Gruyère", + "lang" : "fr-CH" + }, + { + "text" : "Aérodrome de la Gruyère", + "lang" : "it-CH" + }, + { + "text" : "Aérodrome de la Gruyère", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Bureau C", + "lang" : "de-CH" + }, + { + "text" : "Bureau C", + "lang" : "fr-CH" + }, + { + "text" : "Bureau C", + "lang" : "it-CH" + }, + { + "text" : "Bureau C", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.aerodrome-gruyere.ch/annonce-de-vol-de-drone/", + "email" : "bureau@aerodrome-gruyere.ch", + "phone" : "0041269210040", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.530551299999999, 47.6918678 ], + [ 8.5306957, 47.6919073 ], + [ 8.5319866, 47.6922911 ], + [ 8.5327885, 47.6910772 ], + [ 8.532464, 47.6910692 ], + [ 8.532024700000001, 47.6910535 ], + [ 8.5311016, 47.6910792 ], + [ 8.5310111, 47.6910669 ], + [ 8.5309523, 47.6910584 ], + [ 8.5309443, 47.6910549 ], + [ 8.5309372, 47.6910531 ], + [ 8.5308993, 47.6910437 ], + [ 8.5308651, 47.6910347 ], + [ 8.5303393, 47.6909039 ], + [ 8.529746, 47.6907314 ], + [ 8.5293218, 47.6905711 ], + [ 8.5291185, 47.690461 ], + [ 8.5288577, 47.6903306 ], + [ 8.5285926, 47.6902386 ], + [ 8.528303, 47.6901744 ], + [ 8.5283344, 47.6901086 ], + [ 8.528467299999999, 47.689848 ], + [ 8.5280496, 47.6897643 ], + [ 8.5274539, 47.6896802 ], + [ 8.5274359, 47.6896812 ], + [ 8.5274292, 47.6896803 ], + [ 8.5273783, 47.6896438 ], + [ 8.526838099999999, 47.6895376 ], + [ 8.5263087, 47.689429 ], + [ 8.5262141, 47.689649 ], + [ 8.5259875, 47.6895952 ], + [ 8.5249211, 47.6893563 ], + [ 8.524147, 47.6891928 ], + [ 8.5235326, 47.6890624 ], + [ 8.5234569, 47.6890439 ], + [ 8.5234566, 47.6890446 ], + [ 8.5234043, 47.6890323 ], + [ 8.5223469, 47.6887933 ], + [ 8.5219621, 47.6895076 ], + [ 8.530551299999999, 47.6918678 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSPF002", + "country" : "CHE", + "name" : [ + { + "text" : "LSPF Schaffhausen (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSPF Schaffhausen (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSPF Schaffhausen (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSPF Schaffhausen (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Segelfluggruppe Schaffhausen", + "lang" : "de-CH" + }, + { + "text" : "Segelfluggruppe Schaffhausen", + "lang" : "fr-CH" + }, + { + "text" : "Segelfluggruppe Schaffhausen", + "lang" : "it-CH" + }, + { + "text" : "Segelfluggruppe Schaffhausen", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "siteURL" : "https://schmerlat.ch/", + "email" : "flugplatzchef@schmerlat.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8456454, 47.4456121 ], + [ 7.8452818, 47.445813 ], + [ 7.8451106, 47.4455512 ], + [ 7.8448021, 47.4455055 ], + [ 7.8444977, 47.4455361 ], + [ 7.8444576999999995, 47.4454646 ], + [ 7.8443355, 47.4452445 ], + [ 7.8445496, 47.4449408 ], + [ 7.8441539, 47.4446811 ], + [ 7.8439083, 47.4448832 ], + [ 7.8434924, 47.4450269 ], + [ 7.8432002, 47.4451716 ], + [ 7.8428852, 47.4453327 ], + [ 7.8424962, 47.4456035 ], + [ 7.8421068, 47.4458746 ], + [ 7.8417188, 47.4459428 ], + [ 7.8416388, 47.4461598 ], + [ 7.8418968, 47.4463001 ], + [ 7.8423064, 47.446547 ], + [ 7.8424475000000005, 47.4466252 ], + [ 7.8430053, 47.4470276 ], + [ 7.8432855, 47.4470991 ], + [ 7.8433367, 47.4471079 ], + [ 7.8435331999999995, 47.447142 ], + [ 7.8435195, 47.4471607 ], + [ 7.8435, 47.4471873 ], + [ 7.8433452, 47.4473351 ], + [ 7.8435589, 47.4476565 ], + [ 7.8437715, 47.4479527 ], + [ 7.8439782000000005, 47.4481543 ], + [ 7.8441081, 47.4484919 ], + [ 7.8442191, 47.4488047 ], + [ 7.8445004, 47.4487705 ], + [ 7.8452271, 47.4486787 ], + [ 7.8452421, 47.4486558 ], + [ 7.8453216, 47.4485347 ], + [ 7.8463807, 47.4479434 ], + [ 7.8470965, 47.4475337 ], + [ 7.8481348, 47.4469736 ], + [ 7.8480132, 47.4467337 ], + [ 7.8478189, 47.446407 ], + [ 7.8478269, 47.4462332 ], + [ 7.8480076, 47.4459232 ], + [ 7.8482181, 47.4457631 ], + [ 7.8482214, 47.4457648 ], + [ 7.8484423, 47.4455994 ], + [ 7.8487031, 47.4454372 ], + [ 7.849143, 47.445181 ], + [ 7.84957, 47.4451707 ], + [ 7.8498005, 47.4452023 ], + [ 7.8501074, 47.4452444 ], + [ 7.850212, 47.4452587 ], + [ 7.8503841, 47.4452548 ], + [ 7.8508909, 47.4452434 ], + [ 7.8514944, 47.4451535 ], + [ 7.8516775, 47.4451316 ], + [ 7.851954, 47.4450815 ], + [ 7.8520601, 47.4450623 ], + [ 7.8521852, 47.4450603 ], + [ 7.8523028, 47.4450585 ], + [ 7.8526089, 47.4450538 ], + [ 7.8527965, 47.4449613 ], + [ 7.8529951, 47.444836 ], + [ 7.8531989, 47.4447088 ], + [ 7.853121, 47.444637 ], + [ 7.8529237, 47.4441492 ], + [ 7.8527474999999995, 47.4436968 ], + [ 7.8520627, 47.4434502 ], + [ 7.8513522, 47.4431211 ], + [ 7.8505643, 47.4427448 ], + [ 7.849916, 47.4424529 ], + [ 7.8490718, 47.4420608 ], + [ 7.84863, 47.4419711 ], + [ 7.8484873, 47.4420873 ], + [ 7.8490263, 47.4421584 ], + [ 7.8490246, 47.442162 ], + [ 7.8488927, 47.4424049 ], + [ 7.8487031, 47.4427101 ], + [ 7.8479320999999995, 47.4429047 ], + [ 7.8477847, 47.4429949 ], + [ 7.8476268000000005, 47.443094 ], + [ 7.8473095, 47.4432945 ], + [ 7.8472711, 47.443283 ], + [ 7.8471371, 47.4434627 ], + [ 7.8467279, 47.4438089 ], + [ 7.8463773, 47.4441399 ], + [ 7.846135, 47.4444143 ], + [ 7.8459055, 47.4446687 ], + [ 7.8460195, 47.4447092 ], + [ 7.8459065, 47.445106 ], + [ 7.8458301, 47.445347 ], + [ 7.8456454, 47.4456121 ] + ], + [ + [ 7.8452818, 47.445813 ], + [ 7.8454977, 47.4459511 ], + [ 7.8454663, 47.4460353 ], + [ 7.8454072, 47.4461935 ], + [ 7.8454762, 47.4462696 ], + [ 7.8456094, 47.4464163 ], + [ 7.8457421, 47.4466124 ], + [ 7.8457965, 47.4466939 ], + [ 7.8454652, 47.4473254 ], + [ 7.8453671, 47.4473029 ], + [ 7.8452412, 47.4472741 ], + [ 7.844931, 47.4472045 ], + [ 7.8449197, 47.4472019 ], + [ 7.8449439, 47.4468861 ], + [ 7.8449304, 47.4468601 ], + [ 7.844904, 47.4468089 ], + [ 7.8448176, 47.4466373 ], + [ 7.8445449, 47.4465503 ], + [ 7.8441916, 47.4464799 ], + [ 7.8440971, 47.4464542 ], + [ 7.8439049, 47.446331 ], + [ 7.8439032, 47.4463299 ], + [ 7.8441149, 47.4462058 ], + [ 7.8442353, 47.4461643 ], + [ 7.8446447, 47.4460231 ], + [ 7.8446995, 47.446005 ], + [ 7.8452818, 47.445813 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns065", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Rebhalde - Rehhag", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Rebhalde - Rehhag", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Rebhalde - Rehhag", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Rebhalde - Rehhag", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.9835988, 46.3336692 ], + [ 8.9835895, 46.3335281 ], + [ 8.9835695, 46.3333875 ], + [ 8.9835389, 46.3332478 ], + [ 8.9834977, 46.3331094 ], + [ 8.9834462, 46.3329727 ], + [ 8.9833845, 46.3328381 ], + [ 8.9833126, 46.3327058 ], + [ 8.9832309, 46.3325764 ], + [ 8.9831394, 46.3324501 ], + [ 8.9830386, 46.3323273 ], + [ 8.9829286, 46.3322083 ], + [ 8.9828098, 46.3320934 ], + [ 8.9826825, 46.3319831 ], + [ 8.982547, 46.3318775 ], + [ 8.9824037, 46.3317769 ], + [ 8.982253, 46.3316817 ], + [ 8.9820953, 46.3315921 ], + [ 8.9819311, 46.3315083 ], + [ 8.9817608, 46.3314306 ], + [ 8.9815848, 46.3313591 ], + [ 8.9814037, 46.3312941 ], + [ 8.9812179, 46.3312358 ], + [ 8.981028, 46.3311844 ], + [ 8.980834399999999, 46.3311398 ], + [ 8.980637699999999, 46.3311024 ], + [ 8.9804385, 46.3310721 ], + [ 8.9802373, 46.3310491 ], + [ 8.9800346, 46.3310334 ], + [ 8.979831, 46.3310251 ], + [ 8.979627, 46.3310241 ], + [ 8.9794232, 46.3310306 ], + [ 8.9792203, 46.3310445 ], + [ 8.9790186, 46.3310656 ], + [ 8.978818799999999, 46.3310941 ], + [ 8.9786215, 46.3311298 ], + [ 8.9784271, 46.3311726 ], + [ 8.9782362, 46.3312223 ], + [ 8.9780493, 46.331279 ], + [ 8.977867, 46.3313423 ], + [ 8.977689699999999, 46.3314121 ], + [ 8.9775179, 46.3314883 ], + [ 8.9773521, 46.3315706 ], + [ 8.9771928, 46.3316588 ], + [ 8.9770403, 46.3317526 ], + [ 8.9768951, 46.3318519 ], + [ 8.9767576, 46.3319562 ], + [ 8.9766282, 46.3320655 ], + [ 8.9765073, 46.3321792 ], + [ 8.9763951, 46.3322972 ], + [ 8.9762919, 46.3324191 ], + [ 8.9761981, 46.3325446 ], + [ 8.9761139, 46.3326732 ], + [ 8.9760396, 46.3328048 ], + [ 8.9759753, 46.3329389 ], + [ 8.9759212, 46.3330751 ], + [ 8.9758775, 46.3332131 ], + [ 8.9758442, 46.3333525 ], + [ 8.9758216, 46.3334929 ], + [ 8.9758096, 46.333634 ], + [ 8.9758082, 46.3337753 ], + [ 8.9758176, 46.3339164 ], + [ 8.9758375, 46.334057 ], + [ 8.9758681, 46.3341967 ], + [ 8.9759092, 46.3343351 ], + [ 8.9759607, 46.3344718 ], + [ 8.9760225, 46.3346065 ], + [ 8.9760943, 46.3347387 ], + [ 8.976176, 46.3348681 ], + [ 8.9762675, 46.3349944 ], + [ 8.9763683, 46.3351173 ], + [ 8.9764782, 46.3352363 ], + [ 8.9765971, 46.3353511 ], + [ 8.9767244, 46.3354615 ], + [ 8.976859900000001, 46.3355671 ], + [ 8.9770032, 46.3356677 ], + [ 8.9771538, 46.3357629 ], + [ 8.9773115, 46.3358525 ], + [ 8.9774757, 46.3359363 ], + [ 8.9776461, 46.336014 ], + [ 8.9778221, 46.3360855 ], + [ 8.9780032, 46.3361505 ], + [ 8.978189, 46.3362088 ], + [ 8.978379, 46.3362603 ], + [ 8.9785725, 46.3363048 ], + [ 8.9787692, 46.3363423 ], + [ 8.9789685, 46.3363725 ], + [ 8.9791697, 46.3363956 ], + [ 8.979372399999999, 46.3364113 ], + [ 8.9795761, 46.3364196 ], + [ 8.9797801, 46.3364205 ], + [ 8.9799838, 46.336414 ], + [ 8.9801868, 46.3364002 ], + [ 8.9803885, 46.336379 ], + [ 8.9805883, 46.3363505 ], + [ 8.9807857, 46.3363148 ], + [ 8.9809801, 46.336272 ], + [ 8.981171, 46.3362223 ], + [ 8.9813579, 46.3361657 ], + [ 8.9815402, 46.3361023 ], + [ 8.9817175, 46.3360325 ], + [ 8.9818893, 46.3359563 ], + [ 8.9820551, 46.335874 ], + [ 8.9822145, 46.3357858 ], + [ 8.9823669, 46.3356919 ], + [ 8.9825121, 46.3355927 ], + [ 8.9826496, 46.3354883 ], + [ 8.982779, 46.3353791 ], + [ 8.9829, 46.3352653 ], + [ 8.9830122, 46.3351473 ], + [ 8.9831153, 46.3350254 ], + [ 8.9832091, 46.3349 ], + [ 8.9832932, 46.3347713 ], + [ 8.9833676, 46.3346397 ], + [ 8.9834319, 46.3345056 ], + [ 8.9834859, 46.3343694 ], + [ 8.9835296, 46.3342314 ], + [ 8.983562899999999, 46.334092 ], + [ 8.9835855, 46.3339516 ], + [ 8.9835975, 46.3338105 ], + [ 8.9835988, 46.3336692 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0014", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Biasca", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Biasca", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Biasca", + "lang" : "it-CH" + }, + { + "text" : "Substation Biasca", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8235748, 47.5090313 ], + [ 7.8239089, 47.5090474 ], + [ 7.8243243, 47.509032 ], + [ 7.8249371, 47.5089664 ], + [ 7.8251105, 47.5088757 ], + [ 7.8250997, 47.5088683 ], + [ 7.8250893999999995, 47.5088606 ], + [ 7.8250798, 47.5088525 ], + [ 7.8250709, 47.508844 ], + [ 7.8250626, 47.5088352 ], + [ 7.8250551, 47.5088262 ], + [ 7.8250484, 47.5088168 ], + [ 7.8250424, 47.5088072 ], + [ 7.8250372, 47.5087975 ], + [ 7.8250328, 47.5087875 ], + [ 7.8250292, 47.5087774 ], + [ 7.8250265, 47.5087671 ], + [ 7.8248444, 47.5087114 ], + [ 7.8244916, 47.5086028 ], + [ 7.8240955, 47.50848 ], + [ 7.8239305, 47.5086568 ], + [ 7.8235748, 47.5090313 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns120", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Alter Weg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Alter Weg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Alter Weg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Alter Weg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6489238, 47.3885975 ], + [ 7.6489336, 47.3885541 ], + [ 7.6489361, 47.3885447 ], + [ 7.6489395, 47.3885355 ], + [ 7.6489436, 47.3885264 ], + [ 7.6489486, 47.3885175 ], + [ 7.6489544, 47.3885089 ], + [ 7.648961, 47.3885005 ], + [ 7.6489683, 47.3884924 ], + [ 7.6489763, 47.3884846 ], + [ 7.6489851, 47.3884772 ], + [ 7.6489945, 47.3884702 ], + [ 7.6490045, 47.3884636 ], + [ 7.6490152, 47.3884574 ], + [ 7.6490264, 47.3884518 ], + [ 7.6490381, 47.3884467 ], + [ 7.6490502, 47.3884421 ], + [ 7.6490627, 47.388438 ], + [ 7.6490756, 47.3884344 ], + [ 7.6490888, 47.3884314 ], + [ 7.6491022, 47.388429 ], + [ 7.6491159, 47.3884271 ], + [ 7.6491296, 47.3884258 ], + [ 7.6491435, 47.3884251 ], + [ 7.6491574, 47.3884249 ], + [ 7.6491713, 47.3884254 ], + [ 7.6496631, 47.3884535 ], + [ 7.6500537, 47.3884455 ], + [ 7.6506501, 47.3885207 ], + [ 7.6508959999999995, 47.3885714 ], + [ 7.6512575, 47.3886233 ], + [ 7.6521229, 47.3887227 ], + [ 7.6524506, 47.3887133 ], + [ 7.6525655, 47.388736 ], + [ 7.6526474, 47.3887631 ], + [ 7.6527075, 47.3887522 ], + [ 7.6526865, 47.388776 ], + [ 7.6527336, 47.388791499999996 ], + [ 7.6526060000000005, 47.3889303 ], + [ 7.6524686, 47.3890139 ], + [ 7.6522621, 47.3890944 ], + [ 7.6520219, 47.3891453 ], + [ 7.6515325, 47.3893049 ], + [ 7.6512053, 47.3893591 ], + [ 7.6511883, 47.3893629 ], + [ 7.6511716, 47.3893673 ], + [ 7.6511552, 47.3893722 ], + [ 7.6511393, 47.3893778 ], + [ 7.6511238, 47.3893838 ], + [ 7.6511087, 47.3893904 ], + [ 7.6510942, 47.3893975 ], + [ 7.6510802, 47.3894051 ], + [ 7.6510668, 47.3894131 ], + [ 7.651054, 47.3894217 ], + [ 7.6510419, 47.3894306 ], + [ 7.6510305, 47.38944 ], + [ 7.6510198, 47.3894497 ], + [ 7.6510098, 47.3894598 ], + [ 7.6510006, 47.3894702 ], + [ 7.6506875999999995, 47.3898022 ], + [ 7.6506491, 47.3900409 ], + [ 7.6506765, 47.3901153 ], + [ 7.6508669000000005, 47.3903385 ], + [ 7.6510589, 47.3905133 ], + [ 7.6512484, 47.3908175 ], + [ 7.6512796, 47.3909507 ], + [ 7.6512262, 47.3911019 ], + [ 7.6516919, 47.3913062 ], + [ 7.6520444, 47.3913138 ], + [ 7.6526119999999995, 47.391113 ], + [ 7.6532532, 47.3912409 ], + [ 7.6536992999999995, 47.3914107 ], + [ 7.6539339, 47.3914327 ], + [ 7.6545048, 47.3913613 ], + [ 7.654654, 47.3913467 ], + [ 7.6548545, 47.3913047 ], + [ 7.654993, 47.3912844 ], + [ 7.6551323, 47.3912133 ], + [ 7.6551591, 47.3909981 ], + [ 7.6550532, 47.3908339 ], + [ 7.6549918, 47.3905276 ], + [ 7.6549613999999995, 47.3904329 ], + [ 7.6549164, 47.3902902 ], + [ 7.6548382, 47.3901568 ], + [ 7.6546983, 47.3900281 ], + [ 7.6545626, 47.3899296 ], + [ 7.6544653, 47.389907 ], + [ 7.6544217, 47.3898969 ], + [ 7.6545884, 47.3895485 ], + [ 7.6545921, 47.3895361 ], + [ 7.6545969, 47.3895238 ], + [ 7.6546026, 47.3895118 ], + [ 7.6547117, 47.3892707 ], + [ 7.6547643, 47.3891299 ], + [ 7.6554961, 47.3885747 ], + [ 7.6559273999999995, 47.3886269 ], + [ 7.655929, 47.3886269 ], + [ 7.6562503, 47.3891895 ], + [ 7.6563726, 47.3893383 ], + [ 7.6586823, 47.3887448 ], + [ 7.659366, 47.3885684 ], + [ 7.660047, 47.3884032 ], + [ 7.6611561, 47.3880748 ], + [ 7.6614848, 47.3879767 ], + [ 7.6616476, 47.3882586 ], + [ 7.661789, 47.3885035 ], + [ 7.6625909, 47.3891018 ], + [ 7.6626665, 47.3890527 ], + [ 7.6630409, 47.3887691 ], + [ 7.6630683, 47.388533699999996 ], + [ 7.6635485, 47.3883085 ], + [ 7.6633846, 47.3882038 ], + [ 7.6635466, 47.3879386 ], + [ 7.6638496, 47.3877632 ], + [ 7.6640494, 47.3875524 ], + [ 7.664236, 47.3875414 ], + [ 7.6644065, 47.387245 ], + [ 7.6641162, 47.3872927 ], + [ 7.6642057999999995, 47.3869936 ], + [ 7.6631872, 47.3862643 ], + [ 7.6632989, 47.3861844 ], + [ 7.6640309, 47.3857266 ], + [ 7.663797, 47.3852345 ], + [ 7.6624289, 47.3858236 ], + [ 7.6620566, 47.3859649 ], + [ 7.6617695999999995, 47.3860638 ], + [ 7.6614945, 47.3861305 ], + [ 7.6612367, 47.386173 ], + [ 7.6607192, 47.3861745 ], + [ 7.6603005, 47.3861416 ], + [ 7.6598912, 47.386097 ], + [ 7.6598543, 47.3859508 ], + [ 7.6597941, 47.3858421 ], + [ 7.6598021, 47.3857721 ], + [ 7.6597716, 47.3856601 ], + [ 7.6596887, 47.3855113 ], + [ 7.6596402999999995, 47.3854358 ], + [ 7.6595286, 47.3852961 ], + [ 7.6593591, 47.385093499999996 ], + [ 7.6592429, 47.3849593 ], + [ 7.6592372, 47.3849507 ], + [ 7.6592305, 47.3849424 ], + [ 7.6592229, 47.3849345 ], + [ 7.6592142, 47.3849271 ], + [ 7.6592047, 47.3849201 ], + [ 7.6591945, 47.3849138 ], + [ 7.6591834, 47.384908 ], + [ 7.6591717, 47.3849029 ], + [ 7.6591594, 47.3848984 ], + [ 7.6591439999999995, 47.3848946 ], + [ 7.6590131, 47.3848647 ], + [ 7.6589535, 47.3848514 ], + [ 7.6589149, 47.384843 ], + [ 7.6588861999999995, 47.3848378 ], + [ 7.6588647, 47.3848334 ], + [ 7.6588509, 47.3848352 ], + [ 7.6588369, 47.3848364 ], + [ 7.6588228, 47.384837 ], + [ 7.6588088, 47.384837 ], + [ 7.6587947, 47.3848363 ], + [ 7.6587807, 47.384835 ], + [ 7.6585654, 47.3848163 ], + [ 7.6583605, 47.3847925 ], + [ 7.6582101, 47.3847621 ], + [ 7.658164, 47.3847526 ], + [ 7.6581176, 47.3847438 ], + [ 7.658071, 47.3847355 ], + [ 7.6580241000000004, 47.3847279 ], + [ 7.6579768999999995, 47.384721 ], + [ 7.6579296, 47.3847148 ], + [ 7.6578821, 47.3847091 ], + [ 7.6578345, 47.3847042 ], + [ 7.6577867, 47.3846999 ], + [ 7.6577388, 47.3846962 ], + [ 7.6576908, 47.3846933 ], + [ 7.6576427, 47.384691 ], + [ 7.6575945999999995, 47.3846893 ], + [ 7.6575464, 47.3846884 ], + [ 7.6574982, 47.3846881 ], + [ 7.65745, 47.3846884 ], + [ 7.6574018, 47.3846895 ], + [ 7.6573537, 47.3846912 ], + [ 7.656905, 47.3847126 ], + [ 7.6567105, 47.3847492 ], + [ 7.6561896, 47.3847546 ], + [ 7.6559276, 47.3847374 ], + [ 7.6557318, 47.3847843 ], + [ 7.6555071, 47.3848847 ], + [ 7.6553117, 47.3850881 ], + [ 7.6552416999999995, 47.3852098 ], + [ 7.6550953, 47.3858749 ], + [ 7.6548685, 47.3862443 ], + [ 7.6546101, 47.3866075 ], + [ 7.6545584, 47.3868209 ], + [ 7.6545184, 47.3868196 ], + [ 7.6540477, 47.3867037 ], + [ 7.6540194, 47.3869589 ], + [ 7.6540327, 47.3871276 ], + [ 7.6540499, 47.3875788 ], + [ 7.6536094, 47.3876413 ], + [ 7.6534514, 47.3875022 ], + [ 7.6530482, 47.3874725 ], + [ 7.6528538, 47.387103 ], + [ 7.6528960999999995, 47.3869309 ], + [ 7.6518342, 47.3871014 ], + [ 7.6514119, 47.3871476 ], + [ 7.650695, 47.3872049 ], + [ 7.6496911, 47.38735 ], + [ 7.6496731, 47.3875065 ], + [ 7.6496689, 47.3875432 ], + [ 7.6496629, 47.3875954 ], + [ 7.6489635, 47.3875599 ], + [ 7.6483329, 47.3877703 ], + [ 7.64786, 47.3878417 ], + [ 7.648762, 47.3885645 ], + [ 7.6489238, 47.3885975 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns247", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Ramstein - Aleten", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Ramstein - Aleten", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Ramstein - Aleten", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Ramstein - Aleten", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.2174132, 46.3403941 ], + [ 9.2174033, 46.340253 ], + [ 9.2173827, 46.3401124 ], + [ 9.2173515, 46.3399728 ], + [ 9.2173097, 46.3398345 ], + [ 9.2172576, 46.3396979 ], + [ 9.2171953, 46.3395634 ], + [ 9.2171228, 46.3394313 ], + [ 9.2170405, 46.339302 ], + [ 9.2169486, 46.3391759 ], + [ 9.2168472, 46.3390533 ], + [ 9.2167367, 46.3389345 ], + [ 9.2166174, 46.3388199 ], + [ 9.2164895, 46.3387098 ], + [ 9.2163536, 46.3386045 ], + [ 9.2162098, 46.3385042 ], + [ 9.2160587, 46.3384093 ], + [ 9.2159007, 46.33832 ], + [ 9.215736, 46.3382366 ], + [ 9.2155654, 46.3381592 ], + [ 9.2153891, 46.3380881 ], + [ 9.2152076, 46.3380236 ], + [ 9.2150216, 46.3379656 ], + [ 9.2148314, 46.3379145 ], + [ 9.2146376, 46.3378704 ], + [ 9.2144408, 46.3378333 ], + [ 9.2142414, 46.3378035 ], + [ 9.21404, 46.3377809 ], + [ 9.2138372, 46.3377656 ], + [ 9.2136336, 46.3377577 ], + [ 9.2134296, 46.3377572 ], + [ 9.2132258, 46.3377641 ], + [ 9.2130229, 46.3377784 ], + [ 9.2128213, 46.3378 ], + [ 9.2126216, 46.3378289 ], + [ 9.2124244, 46.3378649 ], + [ 9.2122302, 46.3379081 ], + [ 9.2120395, 46.3379583 ], + [ 9.2118528, 46.3380153 ], + [ 9.211670699999999, 46.338079 ], + [ 9.2114937, 46.3381492 ], + [ 9.2113222, 46.3382257 ], + [ 9.2111567, 46.3383084 ], + [ 9.2109978, 46.3383969 ], + [ 9.2108457, 46.338491 ], + [ 9.2107009, 46.3385906 ], + [ 9.2105639, 46.3386952 ], + [ 9.2104349, 46.3388047 ], + [ 9.2103144, 46.3389187 ], + [ 9.2102027, 46.339036899999996 ], + [ 9.2101001, 46.339159 ], + [ 9.2100068, 46.3392847 ], + [ 9.2099232, 46.3394136 ], + [ 9.2098494, 46.3395453 ], + [ 9.2097857, 46.3396795 ], + [ 9.2097321, 46.3398158 ], + [ 9.209689, 46.3399539 ], + [ 9.2096564, 46.3400934 ], + [ 9.2096343, 46.3402339 ], + [ 9.2096229, 46.3403749 ], + [ 9.2096222, 46.3405162 ], + [ 9.2096321, 46.3406573 ], + [ 9.2096527, 46.3407979 ], + [ 9.2096839, 46.3409375 ], + [ 9.2097256, 46.3410758 ], + [ 9.2097777, 46.3412124 ], + [ 9.20984, 46.341347 ], + [ 9.2099124, 46.341479 ], + [ 9.2099947, 46.3416083 ], + [ 9.2100867, 46.3417344 ], + [ 9.2101881, 46.341857 ], + [ 9.2102986, 46.3419758 ], + [ 9.2104179, 46.3420904 ], + [ 9.2105457, 46.3422005 ], + [ 9.2106817, 46.3423059 ], + [ 9.2108254, 46.3424061 ], + [ 9.2109765, 46.342501 ], + [ 9.2111346, 46.3425904 ], + [ 9.2112992, 46.3426738 ], + [ 9.2114699, 46.3427512 ], + [ 9.2116462, 46.3428223 ], + [ 9.2118277, 46.3428869 ], + [ 9.2120137, 46.3429448 ], + [ 9.2122039, 46.3429959 ], + [ 9.2123977, 46.34304 ], + [ 9.2125946, 46.3430771 ], + [ 9.212794, 46.343107 ], + [ 9.2129954, 46.3431296 ], + [ 9.2131982, 46.3431448 ], + [ 9.2134019, 46.3431527 ], + [ 9.2136059, 46.3431532 ], + [ 9.2138096, 46.3431463 ], + [ 9.2140126, 46.3431321 ], + [ 9.2142142, 46.3431105 ], + [ 9.2144139, 46.3430816 ], + [ 9.2146112, 46.3430455 ], + [ 9.2148054, 46.3430023 ], + [ 9.2149961, 46.3429521 ], + [ 9.2151828, 46.3428951 ], + [ 9.2153649, 46.3428314 ], + [ 9.2155419, 46.3427612 ], + [ 9.2157134, 46.3426847 ], + [ 9.2158789, 46.342602 ], + [ 9.2160379, 46.3425135 ], + [ 9.2161899, 46.3424193 ], + [ 9.2163347, 46.3423198 ], + [ 9.2164717, 46.3422151 ], + [ 9.2166007, 46.3421056 ], + [ 9.2167212, 46.3419916 ], + [ 9.2168329, 46.3418734 ], + [ 9.2169355, 46.3417513 ], + [ 9.2170288, 46.3416256 ], + [ 9.2171124, 46.3414968 ], + [ 9.2171862, 46.341365 ], + [ 9.2172499, 46.3412308 ], + [ 9.2173034, 46.3410945 ], + [ 9.2173465, 46.3409564 ], + [ 9.2173791, 46.3408169 ], + [ 9.2174011, 46.3406765 ], + [ 9.2174125, 46.3405354 ], + [ 9.2174132, 46.3403941 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0112", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Soazza", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Soazza", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Soazza", + "lang" : "it-CH" + }, + { + "text" : "Substation Soazza", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8790227999999995, 47.4998089 ], + [ 7.8793006, 47.4997783 ], + [ 7.8795622, 47.4997547 ], + [ 7.8799025, 47.4997346 ], + [ 7.8799849, 47.4997267 ], + [ 7.8800671, 47.4997183 ], + [ 7.8801492, 47.4997093 ], + [ 7.8802312, 47.4996997 ], + [ 7.880313, 47.499689599999996 ], + [ 7.8803946, 47.4996789 ], + [ 7.880476, 47.4996677 ], + [ 7.8805572999999995, 47.4996559 ], + [ 7.8809783, 47.4995954 ], + [ 7.8810239, 47.4995884 ], + [ 7.8810697, 47.4995819 ], + [ 7.8811157, 47.499576 ], + [ 7.8811618, 47.4995707 ], + [ 7.8812081, 47.4995658 ], + [ 7.8812543999999995, 47.4995616 ], + [ 7.8813009, 47.4995578 ], + [ 7.8813475, 47.4995546 ], + [ 7.8813942, 47.4995522 ], + [ 7.881441, 47.4995504 ], + [ 7.8814878, 47.4995491 ], + [ 7.8815347, 47.4995483 ], + [ 7.8815815, 47.4995481 ], + [ 7.8816284, 47.4995485 ], + [ 7.8816752, 47.4995494 ], + [ 7.8817221, 47.4995508 ], + [ 7.8830595, 47.4996498 ], + [ 7.8833009, 47.4996635 ], + [ 7.8833274, 47.4996116 ], + [ 7.8831823, 47.499457 ], + [ 7.8815182, 47.4992808 ], + [ 7.8800155, 47.499382 ], + [ 7.8798638, 47.4993797 ], + [ 7.8793341, 47.4994962 ], + [ 7.8788727, 47.4996473 ], + [ 7.8788829, 47.4996626 ], + [ 7.8788925, 47.499678 ], + [ 7.8789015, 47.4996936 ], + [ 7.8789099, 47.4997093 ], + [ 7.8789176, 47.4997252 ], + [ 7.8789247, 47.4997413 ], + [ 7.8789601, 47.4997847 ], + [ 7.8790227999999995, 47.4998089 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns296", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Allmetgraben", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Allmetgraben", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Allmetgraben", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Allmetgraben", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5046737, 47.4317421 ], + [ 7.504886, 47.4317984 ], + [ 7.5048886, 47.4317946 ], + [ 7.5049371, 47.431768 ], + [ 7.5049496, 47.4317397 ], + [ 7.5048937, 47.4316737 ], + [ 7.5048203, 47.4316283 ], + [ 7.5047951, 47.4316181 ], + [ 7.5048266, 47.4315692 ], + [ 7.5048509, 47.4315275 ], + [ 7.5048658, 47.4314902 ], + [ 7.5048724, 47.431472 ], + [ 7.5049036000000005, 47.4313589 ], + [ 7.5049383, 47.431234 ], + [ 7.5049817999999995, 47.4310727 ], + [ 7.5050267, 47.4309008 ], + [ 7.5050574, 47.4307384 ], + [ 7.5050826, 47.4305464 ], + [ 7.5051192, 47.4303787 ], + [ 7.5051718, 47.4302565 ], + [ 7.5052133, 47.4301502 ], + [ 7.5052199, 47.4301209 ], + [ 7.5052406, 47.4300287 ], + [ 7.5052649, 47.4298718 ], + [ 7.5052861, 47.4296918 ], + [ 7.505317, 47.4295522 ], + [ 7.5051796, 47.4295372 ], + [ 7.5051447, 47.4295094 ], + [ 7.5050462, 47.4294936 ], + [ 7.5050327, 47.4294936 ], + [ 7.5049722, 47.4305711 ], + [ 7.504967, 47.4305863 ], + [ 7.5048407, 47.431086 ], + [ 7.5046737, 47.4317421 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns299", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Dittinger Weide und Dittinger Wald", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Dittinger Weide und Dittinger Wald", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Dittinger Weide und Dittinger Wald", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Dittinger Weide und Dittinger Wald", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5725017999999995, 47.503387000000004 ], + [ 7.5723996, 47.5034369 ], + [ 7.5723289000000005, 47.503456 ], + [ 7.5723895, 47.5038621 ], + [ 7.5724499, 47.5042583 ], + [ 7.5724833, 47.5044792 ], + [ 7.571889, 47.5047386 ], + [ 7.5712573, 47.5050137 ], + [ 7.571241, 47.5052216 ], + [ 7.5713795, 47.5052341 ], + [ 7.5717418, 47.5052688 ], + [ 7.5730215, 47.5053996 ], + [ 7.5740646, 47.5054958 ], + [ 7.5742397, 47.505508 ], + [ 7.5742369, 47.5052253 ], + [ 7.5742224, 47.5042983 ], + [ 7.5754186, 47.5044262 ], + [ 7.5754259, 47.5048853 ], + [ 7.5754361, 47.5053096 ], + [ 7.5754422, 47.5055513 ], + [ 7.5754486, 47.5056454 ], + [ 7.5754832, 47.5061305 ], + [ 7.5753854, 47.5068365 ], + [ 7.5753767, 47.5068995 ], + [ 7.5753592, 47.5068983 ], + [ 7.5744171, 47.5068348 ], + [ 7.5735019999999995, 47.506771 ], + [ 7.5734007, 47.5067643 ], + [ 7.5724972, 47.5067046 ], + [ 7.5724069, 47.5066986 ], + [ 7.5721913, 47.5066843 ], + [ 7.571445, 47.506630799999996 ], + [ 7.571282, 47.5066188 ], + [ 7.5712614, 47.507317 ], + [ 7.5712447, 47.507868 ], + [ 7.5712486, 47.5081171 ], + [ 7.5713468, 47.5087082 ], + [ 7.5713818, 47.5089027 ], + [ 7.5714478, 47.5092698 ], + [ 7.5711822, 47.509304 ], + [ 7.5711911, 47.5093415 ], + [ 7.5712011, 47.5093843 ], + [ 7.5713401000000005, 47.5099754 ], + [ 7.5714998, 47.5106533 ], + [ 7.5715019, 47.5106623 ], + [ 7.571668, 47.5113699 ], + [ 7.5717976, 47.5119282 ], + [ 7.571808, 47.5119729 ], + [ 7.5719051, 47.5119272 ], + [ 7.5723772, 47.5117045 ], + [ 7.5725525000000005, 47.5116384 ], + [ 7.5727118, 47.5115986 ], + [ 7.5727408, 47.5116495 ], + [ 7.5727825, 47.5116714 ], + [ 7.5727993, 47.511783199999996 ], + [ 7.5728137, 47.511894 ], + [ 7.5728261, 47.5120069 ], + [ 7.5728515, 47.5122236 ], + [ 7.5728971, 47.512216 ], + [ 7.5731458, 47.5121714 ], + [ 7.5737138999999996, 47.5120674 ], + [ 7.5744793, 47.5119311 ], + [ 7.5745191, 47.5119233 ], + [ 7.5742362, 47.5113889 ], + [ 7.5742597, 47.5113527 ], + [ 7.5742315, 47.5113033 ], + [ 7.5744150999999995, 47.5112578 ], + [ 7.5751467, 47.511049 ], + [ 7.5758965, 47.5108362 ], + [ 7.5761499, 47.5107642 ], + [ 7.5762713999999995, 47.5107305 ], + [ 7.5763762, 47.5107521 ], + [ 7.5763752, 47.5107188 ], + [ 7.5764644, 47.5104231 ], + [ 7.5765381, 47.510179 ], + [ 7.5765549, 47.5101226 ], + [ 7.5766484, 47.509808 ], + [ 7.5766607, 47.5097658 ], + [ 7.5766913, 47.5097655 ], + [ 7.5773313, 47.50976 ], + [ 7.5779403, 47.5097543 ], + [ 7.5784079, 47.5097503 ], + [ 7.5790255, 47.5097451 ], + [ 7.5790575, 47.5102593 ], + [ 7.5790827, 47.5106725 ], + [ 7.5791905, 47.5106492 ], + [ 7.5799768, 47.510366 ], + [ 7.5807531, 47.5100853 ], + [ 7.581651, 47.5097572 ], + [ 7.5819919, 47.5096707 ], + [ 7.5826168, 47.5095378 ], + [ 7.5833106, 47.5094077 ], + [ 7.5832983, 47.5093451 ], + [ 7.5832077, 47.5088824 ], + [ 7.5831286, 47.5084738 ], + [ 7.5830828, 47.5082345 ], + [ 7.5822931, 47.5081457 ], + [ 7.581493, 47.5080558 ], + [ 7.5815653, 47.5078344 ], + [ 7.5814537, 47.5078383 ], + [ 7.5808143, 47.507835 ], + [ 7.580323, 47.5077438 ], + [ 7.5798527, 47.5076329 ], + [ 7.5794802, 47.5075293 ], + [ 7.5791364, 47.507411 ], + [ 7.578788, 47.5070519 ], + [ 7.5787531999999995, 47.5069725 ], + [ 7.5785064, 47.5064198 ], + [ 7.5781844, 47.5053278 ], + [ 7.5781423, 47.5048625 ], + [ 7.5781183, 47.5043229 ], + [ 7.5780717, 47.504102 ], + [ 7.5754795999999995, 47.5041217 ], + [ 7.5755007, 47.5038544 ], + [ 7.5755339, 47.5036743 ], + [ 7.5755479, 47.5035982 ], + [ 7.5756513, 47.5031894 ], + [ 7.5756657, 47.5031388 ], + [ 7.5756122999999995, 47.503137100000004 ], + [ 7.5748042, 47.503113 ], + [ 7.5742154, 47.5032697 ], + [ 7.5737237, 47.503399 ], + [ 7.573154, 47.5033414 ], + [ 7.5727909, 47.5031604 ], + [ 7.5726505, 47.5032872 ], + [ 7.5726364, 47.5032998 ], + [ 7.5726216, 47.5033121 ], + [ 7.5726062, 47.503324 ], + [ 7.5725902, 47.5033355 ], + [ 7.5725736, 47.5033466 ], + [ 7.5725565, 47.5033573 ], + [ 7.5725388, 47.5033677 ], + [ 7.5725204999999995, 47.5033776 ], + [ 7.5725017999999995, 47.503387000000004 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns147", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Bruederholzhof", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Bruederholzhof", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Bruederholzhof", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Bruederholzhof", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.779338, 47.3768148 ], + [ 7.7790531, 47.3768099 ], + [ 7.7789753, 47.3768127 ], + [ 7.7790815, 47.3782005 ], + [ 7.7790861, 47.3782607 ], + [ 7.7791243, 47.3787596 ], + [ 7.7791255, 47.3787755 ], + [ 7.779127, 47.3787948 ], + [ 7.779128, 47.3788079 ], + [ 7.7791471, 47.3790579 ], + [ 7.7791471, 47.3790583 ], + [ 7.7792797, 47.3790826 ], + [ 7.7794887, 47.3790933 ], + [ 7.7797524, 47.3791128 ], + [ 7.7800785999999995, 47.3791315 ], + [ 7.7802086, 47.3791389 ], + [ 7.7802311, 47.3790152 ], + [ 7.7802728, 47.3788333 ], + [ 7.7805111, 47.3788484 ], + [ 7.781054, 47.3788359 ], + [ 7.7811999, 47.3788237 ], + [ 7.7817423, 47.3787809 ], + [ 7.7823173, 47.3789309 ], + [ 7.7829124, 47.3789169 ], + [ 7.7835194, 47.3788457 ], + [ 7.7835474, 47.3788478 ], + [ 7.7840312, 47.3788241 ], + [ 7.7841221, 47.3788172 ], + [ 7.7845062, 47.3786967 ], + [ 7.7847978, 47.3786782 ], + [ 7.7850751, 47.3786653 ], + [ 7.785462, 47.3787464 ], + [ 7.7857943, 47.3787821 ], + [ 7.7861514, 47.3787411 ], + [ 7.786461, 47.3787178 ], + [ 7.7865965, 47.3787166 ], + [ 7.786958, 47.3787039 ], + [ 7.787675, 47.3787275 ], + [ 7.7880527, 47.3788231 ], + [ 7.7886141, 47.3787081 ], + [ 7.7893124, 47.3786405 ], + [ 7.7895627, 47.3789685 ], + [ 7.7897586, 47.3791035 ], + [ 7.7900568, 47.379091 ], + [ 7.7903859, 47.3791101 ], + [ 7.790556, 47.3792034 ], + [ 7.7909097, 47.379311 ], + [ 7.7908363, 47.3789478 ], + [ 7.7905337, 47.3785365 ], + [ 7.7904478, 47.378173 ], + [ 7.7904358, 47.3781223 ], + [ 7.7903553, 47.3777926 ], + [ 7.7901758, 47.3771626 ], + [ 7.789909, 47.3773034 ], + [ 7.7897013, 47.3774129 ], + [ 7.7893742, 47.3774332 ], + [ 7.7890525, 47.3773962 ], + [ 7.7889304, 47.3773821 ], + [ 7.7888152, 47.3773426 ], + [ 7.7886947, 47.3773012 ], + [ 7.7886844, 47.377301 ], + [ 7.7881067999999996, 47.377289 ], + [ 7.7876777, 47.377216 ], + [ 7.7875606, 47.3772415 ], + [ 7.7873681999999995, 47.3772836 ], + [ 7.7870352, 47.3770858 ], + [ 7.7870197999999995, 47.3770811 ], + [ 7.7868718, 47.3770481 ], + [ 7.786766, 47.3770246 ], + [ 7.7863708, 47.3770117 ], + [ 7.786264, 47.3770083 ], + [ 7.785991, 47.3768703 ], + [ 7.7856439, 47.3767789 ], + [ 7.7849955, 47.3767595 ], + [ 7.7847551, 47.3767332 ], + [ 7.7845196, 47.3767636 ], + [ 7.784324, 47.3767888 ], + [ 7.7841783, 47.3767851 ], + [ 7.7841007, 47.3767831 ], + [ 7.7838975999999995, 47.376782 ], + [ 7.7828113, 47.3767672 ], + [ 7.7825051, 47.3769276 ], + [ 7.7824871, 47.3769371 ], + [ 7.7817217, 47.3769245 ], + [ 7.7813377, 47.3768391 ], + [ 7.7802318, 47.3768765 ], + [ 7.7800273, 47.3768571 ], + [ 7.7796343, 47.3768198 ], + [ 7.779338, 47.3768148 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr017", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Lauchflue", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Lauchflue", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Lauchflue", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Lauchflue", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.9432596, 46.4064755 ], + [ 6.9432556, 46.4063342 ], + [ 6.9432408, 46.4061933 ], + [ 6.9432154, 46.4060531 ], + [ 6.9431795, 46.405914 ], + [ 6.9431331, 46.4057764 ], + [ 6.9430762999999995, 46.4056407 ], + [ 6.9430093, 46.4055073 ], + [ 6.9429324, 46.4053764 ], + [ 6.9428456, 46.4052485 ], + [ 6.9427493, 46.4051239 ], + [ 6.9426437, 46.405003 ], + [ 6.9425291, 46.404886 ], + [ 6.9424057999999995, 46.4047734 ], + [ 6.9422741, 46.4046654 ], + [ 6.9421345, 46.4045623 ], + [ 6.9419872, 46.4044644 ], + [ 6.9418328, 46.4043719 ], + [ 6.9416715, 46.4042852 ], + [ 6.9415039, 46.4042044 ], + [ 6.9413305, 46.4041298 ], + [ 6.9411515999999995, 46.4040616 ], + [ 6.9409678, 46.404 ], + [ 6.9407796, 46.4039451 ], + [ 6.9405876, 46.4038971 ], + [ 6.9403921, 46.4038561 ], + [ 6.9401938, 46.4038223 ], + [ 6.9399933, 46.4037956 ], + [ 6.9397909, 46.4037763 ], + [ 6.9395874, 46.4037643 ], + [ 6.9393833, 46.4037597 ], + [ 6.9391791, 46.4037625 ], + [ 6.9389754, 46.4037727 ], + [ 6.9387728, 46.4037902 ], + [ 6.9385717, 46.4038151 ], + [ 6.9383728, 46.4038472 ], + [ 6.9381766, 46.4038865 ], + [ 6.9379837, 46.4039328 ], + [ 6.9377945, 46.403986 ], + [ 6.9376096, 46.404046 ], + [ 6.9374295, 46.4041126 ], + [ 6.9372546, 46.4041857 ], + [ 6.9370856, 46.404265 ], + [ 6.9369228, 46.4043502 ], + [ 6.9367666, 46.4044413 ], + [ 6.9366176, 46.4045379 ], + [ 6.936476, 46.4046398 ], + [ 6.9363424, 46.4047466 ], + [ 6.936217, 46.4048581 ], + [ 6.9361003, 46.4049741 ], + [ 6.9359924, 46.4050941 ], + [ 6.9358938, 46.4052178 ], + [ 6.9358047, 46.4053449 ], + [ 6.9357253, 46.4054751 ], + [ 6.9356559, 46.405608 ], + [ 6.9355967, 46.4057432 ], + [ 6.9355477, 46.4058804 ], + [ 6.9355092, 46.4060191 ], + [ 6.9354812, 46.406159099999996 ], + [ 6.9354639, 46.4062998 ], + [ 6.9354572, 46.4064411 ], + [ 6.9354613, 46.4065823 ], + [ 6.9354759999999995, 46.4067232 ], + [ 6.9355013, 46.4068634 ], + [ 6.9355373, 46.4070025 ], + [ 6.9355837, 46.4071401 ], + [ 6.9356404, 46.4072758 ], + [ 6.9357074, 46.4074093 ], + [ 6.9357843, 46.4075402 ], + [ 6.9358711, 46.4076681 ], + [ 6.9359674, 46.4077927 ], + [ 6.936073, 46.4079136 ], + [ 6.9361876, 46.4080306 ], + [ 6.9363109, 46.4081432 ], + [ 6.9364425, 46.4082512 ], + [ 6.9365822, 46.4083544 ], + [ 6.9367294, 46.4084523 ], + [ 6.9368839, 46.4085447 ], + [ 6.9370451, 46.4086314 ], + [ 6.9372127, 46.4087122 ], + [ 6.9373862, 46.4087868 ], + [ 6.9375651, 46.408855 ], + [ 6.9377489, 46.4089167 ], + [ 6.9379371, 46.4089716 ], + [ 6.9381292, 46.4090196 ], + [ 6.9383246, 46.4090606 ], + [ 6.9385229, 46.4090944 ], + [ 6.9387235, 46.4091211 ], + [ 6.9389259, 46.4091404 ], + [ 6.9391294, 46.409152399999996 ], + [ 6.9393335, 46.409157 ], + [ 6.9395377, 46.4091542 ], + [ 6.9397415, 46.409144 ], + [ 6.9399441, 46.4091264 ], + [ 6.9401452, 46.4091016 ], + [ 6.9403441, 46.4090695 ], + [ 6.9405403, 46.4090302 ], + [ 6.9407333, 46.4089839 ], + [ 6.9409225, 46.4089307 ], + [ 6.9411074, 46.4088706 ], + [ 6.9412875, 46.408804 ], + [ 6.9414624, 46.408731 ], + [ 6.9416314, 46.4086517 ], + [ 6.9417943, 46.4085664 ], + [ 6.9419504, 46.4084753 ], + [ 6.9420995, 46.4083787 ], + [ 6.942241, 46.4082768 ], + [ 6.9423746, 46.40817 ], + [ 6.9425, 46.4080584 ], + [ 6.9426168, 46.4079425 ], + [ 6.9427246, 46.4078225 ], + [ 6.9428232, 46.4076988 ], + [ 6.9429123, 46.4075716 ], + [ 6.9429916, 46.4074415 ], + [ 6.943061, 46.4073086 ], + [ 6.9431203, 46.4071734 ], + [ 6.9431692, 46.4070362 ], + [ 6.9432077, 46.4068974 ], + [ 6.9432357, 46.4067575 ], + [ 6.943253, 46.4066167 ], + [ 6.9432596, 46.4064755 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0125", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Veytaux", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Veytaux", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Veytaux", + "lang" : "it-CH" + }, + { + "text" : "Substation Veytaux", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7443432, 47.4977556 ], + [ 7.7447326, 47.4977499 ], + [ 7.7452273, 47.4978369 ], + [ 7.7458981, 47.4983906 ], + [ 7.7461247, 47.4986469 ], + [ 7.7463902000000004, 47.4985145 ], + [ 7.7467081, 47.4983582 ], + [ 7.746907, 47.498262 ], + [ 7.7472875, 47.4981796 ], + [ 7.7476945, 47.4981633 ], + [ 7.7479612, 47.4980743 ], + [ 7.7480014, 47.4980812 ], + [ 7.748229, 47.4983098 ], + [ 7.7483233, 47.4983144 ], + [ 7.7484949, 47.4982678 ], + [ 7.7486956, 47.4982244 ], + [ 7.7485807, 47.4979807 ], + [ 7.7483522, 47.497721 ], + [ 7.7481179000000004, 47.4974782 ], + [ 7.747829, 47.497326 ], + [ 7.7473104, 47.4973039 ], + [ 7.7466248, 47.4972517 ], + [ 7.7465835, 47.4972729 ], + [ 7.7465583, 47.4972858 ], + [ 7.7464615, 47.497285 ], + [ 7.7464044, 47.4972845 ], + [ 7.7457336, 47.4973366 ], + [ 7.7452716, 47.4974073 ], + [ 7.7448531, 47.497451 ], + [ 7.7443511, 47.4975636 ], + [ 7.7442646, 47.4976812 ], + [ 7.7442612, 47.4977513 ], + [ 7.7442611, 47.4977521 ], + [ 7.7443409, 47.4977509 ], + [ 7.7443432, 47.4977556 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr152", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Gmeinacher", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Gmeinacher", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Gmeinacher", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Gmeinacher", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7732857, 47.4559431 ], + [ 7.7734415, 47.4557125 ], + [ 7.7737362, 47.4554467 ], + [ 7.7739585, 47.4552807 ], + [ 7.7735847, 47.4547305 ], + [ 7.7736501, 47.4546904 ], + [ 7.7738312, 47.4544963 ], + [ 7.7743753, 47.4542755 ], + [ 7.7747314, 47.4541329 ], + [ 7.7752536, 47.4536517 ], + [ 7.7755018, 47.4534957 ], + [ 7.7753657, 47.4532768 ], + [ 7.7750567, 47.4533919 ], + [ 7.7746866, 47.4534432 ], + [ 7.774431, 47.4534942 ], + [ 7.7741954, 47.453504 ], + [ 7.7739187, 47.4534226 ], + [ 7.7736774, 47.4533565 ], + [ 7.7737006, 47.4535481 ], + [ 7.7736719, 47.4536989 ], + [ 7.7735886, 47.4539135 ], + [ 7.7734908, 47.4539855 ], + [ 7.772926, 47.4542441 ], + [ 7.772577, 47.4542487 ], + [ 7.7722761, 47.4542085 ], + [ 7.7722702, 47.4543977 ], + [ 7.7722666, 47.4544243 ], + [ 7.7722613, 47.4544507 ], + [ 7.7722544, 47.454477 ], + [ 7.7722458, 47.4545031 ], + [ 7.7722356, 47.4545289 ], + [ 7.7722238, 47.4545543 ], + [ 7.7722105, 47.4545794 ], + [ 7.7721955, 47.4546041 ], + [ 7.772166, 47.4546509 ], + [ 7.7721346, 47.454697 ], + [ 7.7721014, 47.4547426 ], + [ 7.7720665, 47.4547876 ], + [ 7.772023, 47.4548409 ], + [ 7.7719778, 47.4548935 ], + [ 7.7719309, 47.4549453 ], + [ 7.7718822, 47.4549965 ], + [ 7.7718513, 47.4550283 ], + [ 7.7718212, 47.4550604 ], + [ 7.7717919, 47.4550929 ], + [ 7.7717636, 47.4551258 ], + [ 7.7717361, 47.455159 ], + [ 7.7717095, 47.4551925 ], + [ 7.7716589, 47.4552565 ], + [ 7.7716097, 47.4553209 ], + [ 7.771562, 47.4553858 ], + [ 7.7715157999999995, 47.4554512 ], + [ 7.771486, 47.4555021 ], + [ 7.7714578, 47.4555533 ], + [ 7.7714311, 47.4556049 ], + [ 7.7714058999999995, 47.4556569 ], + [ 7.7732857, 47.4559431 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr062", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Althof", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Althof", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Althof", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Althof", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8787193, 47.4470349 ], + [ 7.8787271, 47.4472157 ], + [ 7.8788495, 47.4471421 ], + [ 7.8790243, 47.4470397 ], + [ 7.8792173, 47.4469235 ], + [ 7.879328, 47.4468856 ], + [ 7.8794611, 47.4468155 ], + [ 7.8795658, 47.4467473 ], + [ 7.879754, 47.4466146 ], + [ 7.880046, 47.4464897 ], + [ 7.8802344, 47.4464074 ], + [ 7.8806876, 47.4461711 ], + [ 7.8807827, 47.4460994 ], + [ 7.8808999, 47.4460147 ], + [ 7.8811042, 47.4458447 ], + [ 7.8812025, 47.4457672 ], + [ 7.8812805, 47.4457191 ], + [ 7.8816007, 47.4455164 ], + [ 7.8816734, 47.4454456 ], + [ 7.8818281, 47.4452252 ], + [ 7.8819439, 47.4450284 ], + [ 7.8820353, 47.4449234 ], + [ 7.88211, 47.4448531 ], + [ 7.8821786, 47.4448006 ], + [ 7.8821683, 47.4447761 ], + [ 7.8820969, 47.444516 ], + [ 7.8820204, 47.4442838 ], + [ 7.8819661, 47.4440446 ], + [ 7.8821859, 47.4435515 ], + [ 7.8823224, 47.4432143 ], + [ 7.8820748, 47.4431928 ], + [ 7.88174, 47.4431627 ], + [ 7.8818081, 47.4428497 ], + [ 7.8815254, 47.4428211 ], + [ 7.8810948, 47.4427493 ], + [ 7.881091, 47.4427484 ], + [ 7.8810207, 47.4427326 ], + [ 7.8810104, 47.4427302 ], + [ 7.8809091, 47.4429269 ], + [ 7.8808271, 47.4430584 ], + [ 7.8807019, 47.4432072 ], + [ 7.8805626, 47.4433477 ], + [ 7.8804261, 47.4434776 ], + [ 7.8803090000000005, 47.4436106 ], + [ 7.8802166, 47.4437436 ], + [ 7.8801091, 47.4439052 ], + [ 7.8799928, 47.4440804 ], + [ 7.8798427, 47.4443127 ], + [ 7.8797431, 47.4444402 ], + [ 7.8795794, 47.4446571 ], + [ 7.8794585, 47.4447913 ], + [ 7.8792884999999995, 47.4449378 ], + [ 7.8791308, 47.4450527 ], + [ 7.8788515, 47.4452317 ], + [ 7.8786143, 47.4453814 ], + [ 7.8783347, 47.4455473 ], + [ 7.8780048, 47.445749 ], + [ 7.8778827, 47.4458329 ], + [ 7.8777773, 47.445923 ], + [ 7.8777925, 47.4459319 ], + [ 7.8779023, 47.4459958 ], + [ 7.8781563, 47.4461469 ], + [ 7.8783992, 47.44629 ], + [ 7.8786698, 47.4464214 ], + [ 7.8789102, 47.4465393 ], + [ 7.8788405, 47.446698 ], + [ 7.8787193, 47.4470349 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns084", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Scheidegg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Scheidegg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Scheidegg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Scheidegg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.1401855, 46.4807981 ], + [ 7.1402007, 46.4807981 ], + [ 7.1403295, 46.4807981 ], + [ 7.1405699, 46.480793 ], + [ 7.1408244, 46.4807764 ], + [ 7.1410768000000004, 46.4807483 ], + [ 7.141326, 46.4807088 ], + [ 7.1415709, 46.4806582 ], + [ 7.1418105, 46.4805966 ], + [ 7.1420437, 46.4805244 ], + [ 7.1422696, 46.4804417 ], + [ 7.1424872, 46.480349 ], + [ 7.1426956, 46.4802467 ], + [ 7.1428938, 46.4801352 ], + [ 7.1430811, 46.4800149 ], + [ 7.1432565, 46.4798865 ], + [ 7.1434194, 46.4797504 ], + [ 7.1435691, 46.4796073 ], + [ 7.1437049, 46.4794577 ], + [ 7.1438263, 46.4793022 ], + [ 7.1439327, 46.4791416 ], + [ 7.1440236, 46.4789766 ], + [ 7.1440988, 46.4788078 ], + [ 7.1441577, 46.478636 ], + [ 7.1442003, 46.4784618 ], + [ 7.1442263, 46.4782862 ], + [ 7.1442357, 46.4781097 ], + [ 7.1442357, 46.4781074 ], + [ 7.1442361, 46.4780135 ], + [ 7.1442287, 46.4778393 ], + [ 7.1442046, 46.4776634 ], + [ 7.1441639, 46.4774891 ], + [ 7.1441068, 46.477317 ], + [ 7.1440335, 46.4771478 ], + [ 7.1439444, 46.4769823 ], + [ 7.1438397, 46.4768211 ], + [ 7.1437201, 46.4766651 ], + [ 7.1435859, 46.4765148 ], + [ 7.1434378, 46.4763708 ], + [ 7.1432764, 46.4762339 ], + [ 7.1431024, 46.4761046 ], + [ 7.1429165, 46.4759833 ], + [ 7.1427195, 46.4758708 ], + [ 7.1425123, 46.4757674 ], + [ 7.1422957, 46.4756736 ], + [ 7.1420707, 46.4755897 ], + [ 7.1418383, 46.4755162 ], + [ 7.1415994, 46.4754534 ], + [ 7.1413551, 46.4754015 ], + [ 7.1411064, 46.4753607 ], + [ 7.1408543, 46.4753313 ], + [ 7.1406, 46.4753133 ], + [ 7.1403446, 46.4753069 ], + [ 7.1402402, 46.4753076 ], + [ 7.1401113, 46.4753096 ], + [ 7.1399602, 46.475314 ], + [ 7.1397057, 46.4753307 ], + [ 7.1394534, 46.4753588 ], + [ 7.1392042, 46.4753982 ], + [ 7.1389593, 46.4754488 ], + [ 7.1387198, 46.4755104 ], + [ 7.1384865, 46.4755827 ], + [ 7.1382606, 46.4756653 ], + [ 7.138043, 46.475758 ], + [ 7.1378347, 46.4758603 ], + [ 7.1376365, 46.4759718 ], + [ 7.1374492, 46.476092 ], + [ 7.1372738, 46.4762204 ], + [ 7.1371109, 46.4763565 ], + [ 7.1369612, 46.4764997 ], + [ 7.1368253, 46.4766493 ], + [ 7.136704, 46.4768047 ], + [ 7.1365976, 46.4769653 ], + [ 7.1365066, 46.4771303 ], + [ 7.1364314, 46.4772991 ], + [ 7.1363724, 46.4774709 ], + [ 7.1363298, 46.4776451 ], + [ 7.1363038, 46.4778207 ], + [ 7.1362944, 46.4779972 ], + [ 7.1362944, 46.4779995 ], + [ 7.136294, 46.4780913 ], + [ 7.1363014, 46.4782656 ], + [ 7.1363255, 46.4784414 ], + [ 7.1363661, 46.4786158 ], + [ 7.1364232, 46.4787879 ], + [ 7.1364965, 46.4789571 ], + [ 7.1365856, 46.4791226 ], + [ 7.1366902, 46.4792837 ], + [ 7.1368098, 46.4794398 ], + [ 7.136944, 46.4795901 ], + [ 7.1370921, 46.4797341 ], + [ 7.1372535, 46.479871 ], + [ 7.1374275, 46.4800004 ], + [ 7.1376134, 46.4801216 ], + [ 7.1378104, 46.4802342 ], + [ 7.1380177, 46.4803376 ], + [ 7.1382342, 46.4804314 ], + [ 7.1384592, 46.4805152 ], + [ 7.1386917, 46.4805887 ], + [ 7.1389306, 46.4806516 ], + [ 7.1391749, 46.4807035 ], + [ 7.1394237, 46.4807443 ], + [ 7.1396757, 46.4807737 ], + [ 7.13993, 46.4807917 ], + [ 7.1401855, 46.4807981 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00030", + "country" : "CHE", + "name" : [ + { + "text" : "Hôpital régional Hôpital du Pays d'Enhaut - Châteaux-d'Oex", + "lang" : "de-CH" + }, + { + "text" : "Hôpital régional Hôpital du Pays d'Enhaut - Châteaux-d'Oex", + "lang" : "fr-CH" + }, + { + "text" : "Hôpital régional Hôpital du Pays d'Enhaut - Châteaux-d'Oex", + "lang" : "it-CH" + }, + { + "text" : "Hôpital régional Hôpital du Pays d'Enhaut - Châteaux-d'Oex", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kantonspolizei Waadt", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale vaudoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Vaud", + "lang" : "it-CH" + }, + { + "text" : "Vaud Cantonal Police", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.pcv@vd.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8075569, 47.1828137 ], + [ 7.8074503, 47.1804603 ], + [ 7.8071632, 47.1781139 ], + [ 7.8066964, 47.1757809 ], + [ 7.8060513, 47.1734678 ], + [ 7.8052296, 47.1711809 ], + [ 7.8042335, 47.1689265 ], + [ 7.8030659, 47.1667106 ], + [ 7.80173, 47.1645395 ], + [ 7.8002294, 47.162419 ], + [ 7.7985683, 47.160355 ], + [ 7.7967512, 47.158353 ], + [ 7.7947831, 47.1564186 ], + [ 7.7926694, 47.1545571 ], + [ 7.7904160000000005, 47.1527736 ], + [ 7.788029, 47.1510729 ], + [ 7.7855149, 47.1494597 ], + [ 7.7828806, 47.1479384 ], + [ 7.7801335, 47.1465132 ], + [ 7.7772808, 47.145188 ], + [ 7.7743306, 47.1439663 ], + [ 7.7712908, 47.1428516 ], + [ 7.7681699, 47.1418469 ], + [ 7.7649761999999996, 47.140955 ], + [ 7.7617186, 47.1401781 ], + [ 7.7584059, 47.139518699999996 ], + [ 7.7550473, 47.1389783 ], + [ 7.7516519, 47.1385584 ], + [ 7.748229, 47.1382603 ], + [ 7.7447879, 47.1380848 ], + [ 7.7413381, 47.1380323 ], + [ 7.737889, 47.1381029 ], + [ 7.7344501, 47.1382965 ], + [ 7.7310306, 47.1386126 ], + [ 7.7276401, 47.1390502 ], + [ 7.7242876, 47.1396083 ], + [ 7.7209825, 47.1402851 ], + [ 7.7177337, 47.141079 ], + [ 7.7145502, 47.1419877 ], + [ 7.7114407, 47.1430088 ], + [ 7.7084136, 47.1441394 ], + [ 7.7054772, 47.1453765 ], + [ 7.7026395999999995, 47.1467167 ], + [ 7.6999086, 47.1481563 ], + [ 7.6972916, 47.1496914 ], + [ 7.6947957, 47.1513177 ], + [ 7.692428, 47.1530309 ], + [ 7.6901947, 47.1548263 ], + [ 7.6881021, 47.1566988 ], + [ 7.6861559, 47.1586435 ], + [ 7.6843615, 47.1606549 ], + [ 7.6827237, 47.1627276 ], + [ 7.6812471, 47.1648559 ], + [ 7.6799357, 47.167034 ], + [ 7.6787931, 47.1692559 ], + [ 7.6778226, 47.1715155 ], + [ 7.6770267, 47.1738067 ], + [ 7.6764077, 47.1761231 ], + [ 7.6759673, 47.1784584 ], + [ 7.6757068, 47.1808062 ], + [ 7.6756268, 47.1831602 ], + [ 7.6757275, 47.1855137 ], + [ 7.6760089, 47.1878604 ], + [ 7.6764700999999995, 47.1901939 ], + [ 7.6771098, 47.1925077 ], + [ 7.6779264, 47.1947955 ], + [ 7.6789176, 47.197051 ], + [ 7.6800806999999995, 47.1992681 ], + [ 7.6814125, 47.2014406 ], + [ 7.6829095, 47.2035626 ], + [ 7.6845675, 47.2056283 ], + [ 7.686382, 47.207632 ], + [ 7.6883481, 47.2095682 ], + [ 7.6904602, 47.2114317 ], + [ 7.6927128, 47.2132171 ], + [ 7.6950996, 47.2149198 ], + [ 7.697614, 47.2165349 ], + [ 7.7002492, 47.2180581 ], + [ 7.702998, 47.2194852 ], + [ 7.7058527, 47.2208123 ], + [ 7.7088056, 47.2220357 ], + [ 7.7118486, 47.223152 ], + [ 7.7149733, 47.2241582 ], + [ 7.7181711, 47.2250515 ], + [ 7.7214332, 47.2258296 ], + [ 7.7247508, 47.2264901 ], + [ 7.7281146, 47.2270314 ], + [ 7.7315154, 47.2274519 ], + [ 7.7349439, 47.2277505 ], + [ 7.7383907, 47.2279263 ], + [ 7.7418463, 47.2279789 ], + [ 7.7453012, 47.2279082 ], + [ 7.7487459, 47.2277142 ], + [ 7.752171, 47.2273977 ], + [ 7.755567, 47.2269593 ], + [ 7.7589246, 47.2264004 ], + [ 7.7622345, 47.2257224 ], + [ 7.7654878, 47.2249273 ], + [ 7.7686754, 47.2240172 ], + [ 7.7717884999999995, 47.2229946 ], + [ 7.7748188, 47.2218623 ], + [ 7.7777577, 47.2206234 ], + [ 7.7805973999999996, 47.2192814 ], + [ 7.7833299, 47.2178399 ], + [ 7.7859478, 47.2163029 ], + [ 7.7884438, 47.2146746 ], + [ 7.7908112, 47.2129595 ], + [ 7.7930435, 47.2111622 ], + [ 7.7951346, 47.2092878 ], + [ 7.7970787, 47.2073413 ], + [ 7.7988704, 47.2053282 ], + [ 7.800505, 47.2032538 ], + [ 7.801978, 47.201124 ], + [ 7.8032851999999995, 47.1989445 ], + [ 7.8044232000000004, 47.1967214 ], + [ 7.8053889, 47.1944608 ], + [ 7.8061795, 47.1921687 ], + [ 7.8067931, 47.1898516 ], + [ 7.8072279, 47.1875158 ], + [ 7.8074826999999996, 47.1851677 ], + [ 7.8075569, 47.1828137 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSPL001", + "country" : "CHE", + "name" : [ + { + "text" : "LSPL Langenthal", + "lang" : "de-CH" + }, + { + "text" : "LSPL Langenthal", + "lang" : "fr-CH" + }, + { + "text" : "LSPL Langenthal", + "lang" : "it-CH" + }, + { + "text" : "LSPL Langenthal", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Flugplatz Langenthal", + "lang" : "de-CH" + }, + { + "text" : "Flugplatz Langenthal", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatz Langenthal", + "lang" : "it-CH" + }, + { + "text" : "Flugplatz Langenthal", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Pauk Zeltner", + "lang" : "de-CH" + }, + { + "text" : "Pauk Zeltner", + "lang" : "fr-CH" + }, + { + "text" : "Pauk Zeltner", + "lang" : "it-CH" + }, + { + "text" : "Pauk Zeltner", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.lspl.ch/", + "email" : "info@lspl.ch", + "phone" : "0041629225072", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.5094493, 47.4496989 ], + [ 8.5089457, 47.450333 ], + [ 8.5084505, 47.4509565 ], + [ 8.5092471, 47.45093 ], + [ 8.5093363, 47.4509523 ], + [ 8.5096046, 47.4512074 ], + [ 8.5099242, 47.4513435 ], + [ 8.5104559, 47.4508545 ], + [ 8.5112061, 47.4501647 ], + [ 8.511508599999999, 47.4499751 ], + [ 8.5115411, 47.4499548 ], + [ 8.5117205, 47.4500049 ], + [ 8.5120916, 47.4501203 ], + [ 8.5126401, 47.4502483 ], + [ 8.5134859, 47.4504076 ], + [ 8.5132336, 47.4502103 ], + [ 8.5132153, 47.4501963 ], + [ 8.5131967, 47.4501823 ], + [ 8.5131779, 47.4501686 ], + [ 8.5131588, 47.4501549 ], + [ 8.5131396, 47.4501415 ], + [ 8.5131201, 47.4501281 ], + [ 8.5131004, 47.4501149 ], + [ 8.5130805, 47.4501019 ], + [ 8.5130604, 47.4500891 ], + [ 8.5130401, 47.4500764 ], + [ 8.5130195, 47.4500639 ], + [ 8.5129988, 47.4500515 ], + [ 8.5129779, 47.4500393 ], + [ 8.5129567, 47.4500272 ], + [ 8.5122147, 47.4496083 ], + [ 8.5120971, 47.4494694 ], + [ 8.5120516, 47.4495014 ], + [ 8.5120284, 47.4494974 ], + [ 8.5120049, 47.4494941 ], + [ 8.5119812, 47.4494915 ], + [ 8.5119574, 47.4494897 ], + [ 8.5119335, 47.4494885 ], + [ 8.5119095, 47.4494881 ], + [ 8.5118856, 47.4494885 ], + [ 8.5118569, 47.4494898 ], + [ 8.5118284, 47.4494922 ], + [ 8.5118002, 47.4494957 ], + [ 8.5117723, 47.4495001 ], + [ 8.5117447, 47.4495056 ], + [ 8.5117176, 47.449512 ], + [ 8.5116911, 47.4495195 ], + [ 8.511669, 47.4495262 ], + [ 8.5116475, 47.4495336 ], + [ 8.5116265, 47.4495417 ], + [ 8.5116061, 47.4495505 ], + [ 8.5115864, 47.44956 ], + [ 8.5115674, 47.4495702 ], + [ 8.5115491, 47.4495809 ], + [ 8.5106608, 47.4493169 ], + [ 8.510470399999999, 47.4492402 ], + [ 8.5102857, 47.4492406 ], + [ 8.5101715, 47.4490436 ], + [ 8.5097847, 47.4491466 ], + [ 8.5094399, 47.4490153 ], + [ 8.5089971, 47.4495485 ], + [ 8.5094493, 47.4496989 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VBS_26", + "country" : "CHE", + "name" : [ + { + "text" : "VBS_26 Rümlang", + "lang" : "de-CH" + }, + { + "text" : "VBS_26 Rümlang", + "lang" : "fr-CH" + }, + { + "text" : "VBS_26 Rümlang", + "lang" : "it-CH" + }, + { + "text" : "VBS_26 Rümlang", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "regulationExemption" : "YES", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Eidgenössisches Departement für Verteidigung, Bevölkerungsschutz und Sport (VBS)", + "lang" : "de-CH" + }, + { + "text" : "Département fédéral de la défense, de la protection de la population et des sports (DDPS)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento federale della difesa, della protezione della popolazione e dello sport (DDPS)", + "lang" : "it-CH" + }, + { + "text" : "Federal Department of Defence, Civil Protection and Sport (DDPS)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Lageverfolgungszentrum der Armee LVZ A", + "lang" : "de-CH" + }, + { + "text" : "Centre de suivi de la situation de l’armée, CSS A", + "lang" : "fr-CH" + }, + { + "text" : "Centro di monitoraggio della situazione dell’esercito, Centro mon sit Es", + "lang" : "it-CH" + }, + { + "text" : "Joint Operation Center, JOC", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vtg.admin.ch/en/joint-operations-command", + "email" : "lvz.op@vtg.admin.ch", + "phone" : "+41 58 464 96 43", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.5407858, 46.7345768 ], + [ 6.5407912, 46.7347533 ], + [ 6.5408135, 46.7349293 ], + [ 6.5408524, 46.7351038 ], + [ 6.5409079, 46.7352763 ], + [ 6.5409796, 46.7354458 ], + [ 6.5410673, 46.7356118 ], + [ 6.5411706, 46.7357735 ], + [ 6.5412891, 46.7359302 ], + [ 6.5414221999999995, 46.7360812 ], + [ 6.5415695, 46.7362259 ], + [ 6.5417301, 46.7363637 ], + [ 6.5419035, 46.7364939 ], + [ 6.542089, 46.7366161 ], + [ 6.5422857, 46.7367297 ], + [ 6.5424927, 46.7368342 ], + [ 6.5427093, 46.7369292 ], + [ 6.5429344, 46.7370142 ], + [ 6.5431671, 46.7370889 ], + [ 6.5434065, 46.737153 ], + [ 6.5436514, 46.7372062 ], + [ 6.5439009, 46.7372483 ], + [ 6.5441538, 46.737279 ], + [ 6.5444091, 46.7372983 ], + [ 6.5444873999999995, 46.7373007 ], + [ 6.5448066, 46.7378377 ], + [ 6.5448333, 46.7378816 ], + [ 6.5449287, 46.7380343 ], + [ 6.5449955, 46.7381355 ], + [ 6.545114, 46.7382922 ], + [ 6.5451307, 46.7383124 ], + [ 6.5452136, 46.7384117 ], + [ 6.54533, 46.7385426 ], + [ 6.5454773, 46.7386873 ], + [ 6.545597, 46.7387917 ], + [ 6.5457071, 46.7388829 ], + [ 6.545748, 46.7389163 ], + [ 6.5459215, 46.7390466 ], + [ 6.5461069, 46.7391687 ], + [ 6.5461404, 46.7391892 ], + [ 6.5462772000000005, 46.7392716 ], + [ 6.5464405, 46.7393648 ], + [ 6.54656, 46.7394269 ], + [ 6.5457497, 46.7403038 ], + [ 6.5456862000000005, 46.7403749 ], + [ 6.5455625, 46.7405297 ], + [ 6.5454538, 46.7406897 ], + [ 6.5453606, 46.7408543 ], + [ 6.5452832, 46.7410227 ], + [ 6.5452221, 46.7411942 ], + [ 6.5451773, 46.7413681 ], + [ 6.5451768999999995, 46.74137 ], + [ 6.5451619999999995, 46.741442 ], + [ 6.5451343, 46.7416156 ], + [ 6.545123, 46.7417921 ], + [ 6.5451284, 46.7419686 ], + [ 6.5451507, 46.7421445 ], + [ 6.5451897, 46.7423191 ], + [ 6.5452451, 46.7424915 ], + [ 6.5453168999999995, 46.7426611 ], + [ 6.5454046, 46.7428271 ], + [ 6.545508, 46.7429887 ], + [ 6.5455485, 46.7430452 ], + [ 6.5455961, 46.7431096 ], + [ 6.5456741, 46.7432098 ], + [ 6.5458073, 46.7433609 ], + [ 6.5459545, 46.7435056 ], + [ 6.5461152, 46.7436433 ], + [ 6.5462886000000005, 46.7437736 ], + [ 6.5464741, 46.7438958 ], + [ 6.5466708, 46.7440093 ], + [ 6.5468779, 46.7441138 ], + [ 6.5468855, 46.7441174 ], + [ 6.5479575, 46.7446195 ], + [ 6.5479598, 46.7446205 ], + [ 6.5491453, 46.7451749 ], + [ 6.5503494, 46.7457383 ], + [ 6.5503528, 46.7457399 ], + [ 6.5515965, 46.7463204 ], + [ 6.5527964, 46.7468805 ], + [ 6.5527983, 46.7468814 ], + [ 6.5539933999999995, 46.7474386 ], + [ 6.555071, 46.7479428 ], + [ 6.5551157, 46.7479638 ], + [ 6.5551238, 46.7479676 ], + [ 6.5552964, 46.7480481 ], + [ 6.5553013, 46.7480504 ], + [ 6.5563857, 46.7485544 ], + [ 6.557466, 46.749058 ], + [ 6.5585418, 46.7495617 ], + [ 6.5585479, 46.7495645 ], + [ 6.5596328, 46.7500704 ], + [ 6.5596345, 46.7500712 ], + [ 6.5607145, 46.7505742 ], + [ 6.5617409, 46.751054 ], + [ 6.5628551999999996, 46.7515756 ], + [ 6.5628579, 46.7515769 ], + [ 6.5639829, 46.7521025 ], + [ 6.5641893, 46.7521926 ], + [ 6.5644145, 46.7522776 ], + [ 6.5646473, 46.7523523 ], + [ 6.5648868, 46.7524163 ], + [ 6.5651318, 46.7524695 ], + [ 6.5653813, 46.7525115 ], + [ 6.5656344, 46.7525422 ], + [ 6.5658898, 46.7525615 ], + [ 6.5661464, 46.752569199999996 ], + [ 6.5664033, 46.7525654 ], + [ 6.5666592999999995, 46.75255 ], + [ 6.5669132, 46.7525232 ], + [ 6.5671641, 46.752485 ], + [ 6.5674108, 46.7524357 ], + [ 6.5676521999999995, 46.7523753 ], + [ 6.5678874, 46.7523042 ], + [ 6.5679631, 46.7522786 ], + [ 6.5687364, 46.7520095 ], + [ 6.5687367, 46.7520095 ], + [ 6.5710708, 46.7511973 ], + [ 6.5710719, 46.7511969 ], + [ 6.5740694, 46.750153 ], + [ 6.5741205, 46.7501357 ], + [ 6.5742953, 46.7500763 ], + [ 6.5743452, 46.7500598 ], + [ 6.5744171, 46.7500354 ], + [ 6.5766846999999995, 46.7492453 ], + [ 6.5790164, 46.7484354 ], + [ 6.5790267, 46.7484318 ], + [ 6.5809536, 46.7477576 ], + [ 6.5810982, 46.7477043 ], + [ 6.5813178, 46.7476127 ], + [ 6.5815282, 46.7475114 ], + [ 6.5817286, 46.7474009 ], + [ 6.581918, 46.7472816 ], + [ 6.5820957, 46.747154 ], + [ 6.5822608, 46.7470188 ], + [ 6.5824128, 46.7468764 ], + [ 6.5825508, 46.7467274 ], + [ 6.5826744, 46.7465726 ], + [ 6.5827829, 46.7464126 ], + [ 6.5828761, 46.746248 ], + [ 6.5829533, 46.7460796 ], + [ 6.5830144, 46.745908 ], + [ 6.583059, 46.7457341 ], + [ 6.583087, 46.7455586 ], + [ 6.5830982, 46.7453821 ], + [ 6.5830926, 46.7452056 ], + [ 6.5830702, 46.7450297 ], + [ 6.5830311, 46.7448551 ], + [ 6.5829755, 46.7446827 ], + [ 6.5829036, 46.7445132 ], + [ 6.5828158, 46.7443472 ], + [ 6.5827123, 46.7441856 ], + [ 6.5825937, 46.744029 ], + [ 6.5824604, 46.743878 ], + [ 6.5823131, 46.7437333 ], + [ 6.5821523, 46.7435956 ], + [ 6.5819788, 46.7434654 ], + [ 6.5817932, 46.7433433 ], + [ 6.5815964000000005, 46.7432298 ], + [ 6.5814102, 46.7431353 ], + [ 6.5806117, 46.7427545 ], + [ 6.5805937, 46.7427459 ], + [ 6.5795152, 46.7422377 ], + [ 6.5784373, 46.7417294 ], + [ 6.5784348, 46.7417282 ], + [ 6.5773553, 46.7412199 ], + [ 6.5773538, 46.7412192 ], + [ 6.5773463, 46.7412157 ], + [ 6.5762721, 46.7407129 ], + [ 6.5751747, 46.7401971 ], + [ 6.5751734, 46.7401965 ], + [ 6.574434, 46.7398492 ], + [ 6.5732808, 46.7392951 ], + [ 6.573253, 46.7392819 ], + [ 6.5721128, 46.738744 ], + [ 6.5721087, 46.7387421 ], + [ 6.5721003, 46.7387381 ], + [ 6.5709583, 46.7382039 ], + [ 6.5698125, 46.737662 ], + [ 6.5698045, 46.7376582 ], + [ 6.569803, 46.7376575 ], + [ 6.5686718, 46.7371258 ], + [ 6.5675353, 46.7365889 ], + [ 6.5668177, 46.7362486 ], + [ 6.5653595, 46.7355513 ], + [ 6.5653351, 46.7355397 ], + [ 6.5653321, 46.7355383 ], + [ 6.5645166, 46.7351553 ], + [ 6.5635929, 46.7347192 ], + [ 6.5626829, 46.7342679 ], + [ 6.5626038, 46.7342297 ], + [ 6.562558, 46.7342084 ], + [ 6.5618525, 46.7338863 ], + [ 6.5618445, 46.7338827 ], + [ 6.5613428, 46.7336549 ], + [ 6.5612619, 46.7336191 ], + [ 6.5606943, 46.7333748 ], + [ 6.5606258, 46.733346 ], + [ 6.560111, 46.7331344 ], + [ 6.5600975, 46.7331289 ], + [ 6.5600279, 46.7331012 ], + [ 6.559414, 46.7328627 ], + [ 6.5587238, 46.7325635 ], + [ 6.5587181, 46.732561 ], + [ 6.5580843, 46.7322873 ], + [ 6.5575545, 46.7320363 ], + [ 6.5568921, 46.7316923 ], + [ 6.5568916999999995, 46.7316921 ], + [ 6.5568526, 46.7316713 ], + [ 6.5567017, 46.7315921 ], + [ 6.5557867, 46.7311026 ], + [ 6.5557682, 46.7310927 ], + [ 6.5548338, 46.7305991 ], + [ 6.5548175, 46.7305905 ], + [ 6.5538795, 46.7301002 ], + [ 6.5538401, 46.7300799 ], + [ 6.5537212, 46.7300193 ], + [ 6.5536666, 46.7299904 ], + [ 6.5535841999999995, 46.7299476 ], + [ 6.5534983, 46.7299028 ], + [ 6.553496, 46.7299016 ], + [ 6.5529404, 46.7296119 ], + [ 6.5524021999999995, 46.729331 ], + [ 6.5523964, 46.729328 ], + [ 6.5523483, 46.729303 ], + [ 6.5521984, 46.7292287 ], + [ 6.5519818, 46.7291338 ], + [ 6.5517567, 46.7290488 ], + [ 6.551524, 46.7289741 ], + [ 6.5512847, 46.72891 ], + [ 6.5510398, 46.7288568 ], + [ 6.5507904, 46.7288148 ], + [ 6.5505375, 46.7287841 ], + [ 6.5502822, 46.7287648 ], + [ 6.5500256, 46.728757 ], + [ 6.5497688, 46.7287607 ], + [ 6.549513, 46.7287761 ], + [ 6.5492592, 46.7288028 ], + [ 6.5490084, 46.728841 ], + [ 6.5487618, 46.7288903 ], + [ 6.5485468000000004, 46.7289435 ], + [ 6.5485163, 46.7289517 ], + [ 6.5485046, 46.7289549 ], + [ 6.5484742, 46.7289631 ], + [ 6.5484623, 46.7289664 ], + [ 6.5484319, 46.7289748 ], + [ 6.5484291, 46.7289755 ], + [ 6.5484203, 46.728978 ], + [ 6.5483899, 46.7289864 ], + [ 6.5483775, 46.7289899 ], + [ 6.5483472, 46.7289984 ], + [ 6.5483367, 46.7290013 ], + [ 6.5483065, 46.7290099 ], + [ 6.5482948, 46.7290132 ], + [ 6.5482645999999995, 46.7290218 ], + [ 6.5482536, 46.729025 ], + [ 6.5482234, 46.7290337 ], + [ 6.548211, 46.7290372 ], + [ 6.5481809, 46.729046 ], + [ 6.5481693, 46.7290494 ], + [ 6.5481392, 46.7290582 ], + [ 6.5481288, 46.7290612 ], + [ 6.5480987, 46.7290701 ], + [ 6.5480859, 46.7290739 ], + [ 6.5480558, 46.7290829 ], + [ 6.5480462, 46.7290858 ], + [ 6.5480162, 46.7290948 ], + [ 6.548004, 46.7290985 ], + [ 6.547974, 46.7291076 ], + [ 6.5479612, 46.7291115 ], + [ 6.5479313, 46.7291207 ], + [ 6.5479217, 46.7291236 ], + [ 6.5478918, 46.7291328 ], + [ 6.5478797, 46.7291366 ], + [ 6.5478498, 46.7291459 ], + [ 6.5478383000000004, 46.7291495 ], + [ 6.5478086, 46.7291588 ], + [ 6.5477977, 46.7291622 ], + [ 6.547768, 46.7291716 ], + [ 6.5477571, 46.7291751 ], + [ 6.5477275, 46.729184599999996 ], + [ 6.547716, 46.7291882 ], + [ 6.5476864, 46.7291978 ], + [ 6.5476743, 46.7292017 ], + [ 6.5476447, 46.7292113 ], + [ 6.5476333, 46.729214999999996 ], + [ 6.5476037, 46.7292247 ], + [ 6.5475947, 46.7292276 ], + [ 6.5475936, 46.729228 ], + [ 6.5475641, 46.7292377 ], + [ 6.5475521, 46.7292417 ], + [ 6.5475226, 46.7292515 ], + [ 6.5475119, 46.7292551 ], + [ 6.5474825, 46.7292649 ], + [ 6.5474699, 46.7292692 ], + [ 6.5474405, 46.7292791 ], + [ 6.5474304, 46.7292825 ], + [ 6.5474011, 46.7292925 ], + [ 6.5473904, 46.7292962 ], + [ 6.5473611, 46.7293062 ], + [ 6.5473486, 46.7293105 ], + [ 6.5473194, 46.7293207 ], + [ 6.54731, 46.7293239 ], + [ 6.5472808, 46.7293341 ], + [ 6.5472676, 46.7293387 ], + [ 6.5472385, 46.729349 ], + [ 6.5472291, 46.7293523 ], + [ 6.5472, 46.7293626 ], + [ 6.5471882, 46.7293668 ], + [ 6.5471592, 46.7293772 ], + [ 6.5471485, 46.729381 ], + [ 6.5471195, 46.7293914 ], + [ 6.5471078, 46.7293956 ], + [ 6.5470787999999995, 46.7294062 ], + [ 6.5470689, 46.7294098 ], + [ 6.54704, 46.7294203 ], + [ 6.5470276, 46.7294249 ], + [ 6.5469988, 46.7294355 ], + [ 6.5469895000000005, 46.7294389 ], + [ 6.5469607, 46.7294496 ], + [ 6.5469477, 46.7294545 ], + [ 6.5469189, 46.7294652 ], + [ 6.546909, 46.7294689 ], + [ 6.5468803, 46.7294798 ], + [ 6.5468687, 46.7294841 ], + [ 6.5468401, 46.729495 ], + [ 6.5468302, 46.7294988 ], + [ 6.5468016, 46.7295097 ], + [ 6.5467905, 46.729514 ], + [ 6.546762, 46.729525 ], + [ 6.5467569, 46.7295269 ], + [ 6.5467503, 46.7295295 ], + [ 6.5467218, 46.7295406 ], + [ 6.5467115, 46.7295446 ], + [ 6.546683, 46.7295557 ], + [ 6.5466732, 46.7295596 ], + [ 6.5466448, 46.7295707 ], + [ 6.5466327, 46.7295755 ], + [ 6.5466043, 46.7295868 ], + [ 6.5465938, 46.729591 ], + [ 6.5465656, 46.7296023 ], + [ 6.5465553, 46.7296064 ], + [ 6.5465271, 46.7296178 ], + [ 6.5465155, 46.7296224 ], + [ 6.5464873, 46.7296339 ], + [ 6.5464771, 46.729638 ], + [ 6.546449, 46.7296495 ], + [ 6.5464374, 46.7296543 ], + [ 6.5464093, 46.7296658 ], + [ 6.5463996, 46.729669799999996 ], + [ 6.5463716, 46.7296815 ], + [ 6.5463608, 46.7296859 ], + [ 6.5463328, 46.7296976 ], + [ 6.5463213, 46.7297025 ], + [ 6.5462934, 46.7297142 ], + [ 6.5462834, 46.7297184 ], + [ 6.5462555, 46.7297303 ], + [ 6.5462451, 46.7297346 ], + [ 6.5462173, 46.7297465 ], + [ 6.5462059, 46.7297514 ], + [ 6.5461781, 46.7297633 ], + [ 6.5461682, 46.7297676 ], + [ 6.5461404, 46.7297796 ], + [ 6.5461302, 46.7297841 ], + [ 6.5461025, 46.7297961 ], + [ 6.5460919, 46.7298008 ], + [ 6.5460643, 46.7298129 ], + [ 6.5460536000000005, 46.7298176 ], + [ 6.5460261, 46.7298298 ], + [ 6.5460159, 46.7298343 ], + [ 6.5459884, 46.7298465 ], + [ 6.5459773, 46.7298515 ], + [ 6.5459771, 46.7298516 ], + [ 6.5459496, 46.7298639 ], + [ 6.5459398, 46.7298683 ], + [ 6.5459124, 46.7298806 ], + [ 6.5459015, 46.7298856 ], + [ 6.5458742, 46.729898 ], + [ 6.5458655, 46.7299019 ], + [ 6.5458383, 46.7299144 ], + [ 6.545826, 46.72992 ], + [ 6.5457988, 46.7299326 ], + [ 6.5457897, 46.7299368 ], + [ 6.5457626, 46.7299493 ], + [ 6.5457511, 46.7299547 ], + [ 6.545724, 46.7299673 ], + [ 6.5457139, 46.7299721 ], + [ 6.5456869, 46.7299848 ], + [ 6.5456776, 46.7299892 ], + [ 6.5456506, 46.7300019 ], + [ 6.5456395, 46.7300072 ], + [ 6.5456126, 46.73002 ], + [ 6.5456033, 46.7300245 ], + [ 6.5455765, 46.7300374 ], + [ 6.5455647, 46.730043 ], + [ 6.5455379, 46.730056 ], + [ 6.5455293999999995, 46.7300601 ], + [ 6.5455027, 46.7300731 ], + [ 6.5454909, 46.7300788 ], + [ 6.5454643, 46.7300919 ], + [ 6.5454551, 46.7300964 ], + [ 6.5454285, 46.7301095 ], + [ 6.5454186, 46.7301144 ], + [ 6.545392, 46.7301276 ], + [ 6.5453811, 46.730133 ], + [ 6.5453546, 46.7301463 ], + [ 6.5453455, 46.7301509 ], + [ 6.5453191, 46.7301641 ], + [ 6.5453082, 46.730169599999996 ], + [ 6.5452818, 46.730183 ], + [ 6.545272, 46.730188 ], + [ 6.5452457, 46.7302014 ], + [ 6.5452358, 46.7302064 ], + [ 6.5452096, 46.7302199 ], + [ 6.5452033, 46.7302231 ], + [ 6.5451988, 46.7302254 ], + [ 6.5451727, 46.7302389 ], + [ 6.5451637, 46.7302436 ], + [ 6.5451376, 46.7302572 ], + [ 6.5451271, 46.7302626 ], + [ 6.5451011, 46.7302763 ], + [ 6.5450911, 46.7302815 ], + [ 6.5450652, 46.7302952 ], + [ 6.5450554, 46.7303003 ], + [ 6.5450296, 46.730314 ], + [ 6.5450208, 46.7303187 ], + [ 6.544995, 46.7303324 ], + [ 6.5449834, 46.7303387 ], + [ 6.5449577, 46.7303525 ], + [ 6.544949, 46.7303572 ], + [ 6.5449233, 46.7303711 ], + [ 6.5449137, 46.7303763 ], + [ 6.5448881, 46.7303902 ], + [ 6.5448775, 46.730396 ], + [ 6.544852, 46.73041 ], + [ 6.5448433, 46.7304148 ], + [ 6.5448178, 46.7304288 ], + [ 6.5448073, 46.7304346 ], + [ 6.5447819, 46.7304487 ], + [ 6.5447724, 46.7304541 ], + [ 6.544747, 46.7304682 ], + [ 6.5447375, 46.7304736 ], + [ 6.5447122, 46.7304878 ], + [ 6.5447027, 46.7304931 ], + [ 6.5446775, 46.7305074 ], + [ 6.5446672, 46.7305132 ], + [ 6.5446421, 46.7305276 ], + [ 6.5446334, 46.7305325 ], + [ 6.5446083, 46.7305469 ], + [ 6.5445972, 46.7305533 ], + [ 6.5445722, 46.7305677 ], + [ 6.5445637, 46.7305726 ], + [ 6.5445388, 46.7305871 ], + [ 6.5445294, 46.7305926 ], + [ 6.5445045, 46.7306071 ], + [ 6.5444952, 46.7306126 ], + [ 6.5444704, 46.7306272 ], + [ 6.5444678, 46.7306287 ], + [ 6.544461, 46.7306327 ], + [ 6.5444363, 46.7306474 ], + [ 6.5444262, 46.7306534 ], + [ 6.5444015, 46.7306681 ], + [ 6.5443923, 46.7306736 ], + [ 6.5443677000000005, 46.7306884 ], + [ 6.5443584, 46.7306939 ], + [ 6.5443339, 46.7307088 ], + [ 6.5443247, 46.7307143 ], + [ 6.5443003, 46.7307291 ], + [ 6.544291, 46.7307348 ], + [ 6.5442666, 46.7307497 ], + [ 6.5442567, 46.7307558 ], + [ 6.5442324, 46.7307707 ], + [ 6.5442241, 46.7307759 ], + [ 6.5441998, 46.7307909 ], + [ 6.544189, 46.7307976 ], + [ 6.5441648, 46.7308127 ], + [ 6.5441575, 46.7308173 ], + [ 6.5441333, 46.7308324 ], + [ 6.5441226, 46.7308391 ], + [ 6.5440986, 46.7308543 ], + [ 6.5440904, 46.7308595 ], + [ 6.5440664, 46.7308747 ], + [ 6.5440566, 46.730881 ], + [ 6.5440327, 46.7308963 ], + [ 6.5440237, 46.730902 ], + [ 6.5439999, 46.7309174 ], + [ 6.543991, 46.7309231 ], + [ 6.5439672, 46.7309385 ], + [ 6.5439583, 46.7309443 ], + [ 6.5439346, 46.7309597 ], + [ 6.5439249, 46.7309661 ], + [ 6.5439013, 46.7309816 ], + [ 6.5438924, 46.7309874 ], + [ 6.5438689, 46.7310029 ], + [ 6.5438601, 46.7310088 ], + [ 6.5438366, 46.7310244 ], + [ 6.5438278, 46.7310302 ], + [ 6.5438043, 46.7310459 ], + [ 6.5437964, 46.7310512 ], + [ 6.5437956, 46.7310517 ], + [ 6.5437722, 46.7310674 ], + [ 6.5437635, 46.7310733 ], + [ 6.5437402, 46.7310891 ], + [ 6.5437308, 46.7310955 ], + [ 6.5437075, 46.7311113 ], + [ 6.5436989, 46.7311173 ], + [ 6.5436757, 46.7311331 ], + [ 6.5436671, 46.7311391 ], + [ 6.5436440000000005, 46.731155 ], + [ 6.5436354, 46.7311609 ], + [ 6.5436124, 46.7311769 ], + [ 6.543603, 46.7311834 ], + [ 6.5435801, 46.7311994 ], + [ 6.5435715, 46.7312055 ], + [ 6.5435487, 46.7312215 ], + [ 6.5435402, 46.7312275 ], + [ 6.5435174, 46.7312436 ], + [ 6.5435089, 46.7312497 ], + [ 6.5434862, 46.7312658 ], + [ 6.5434785, 46.7312713 ], + [ 6.5434559, 46.7312875 ], + [ 6.5434459, 46.7312947 ], + [ 6.5434233, 46.731311 ], + [ 6.5434149999999995, 46.7313171 ], + [ 6.5433924999999995, 46.7313334 ], + [ 6.5433848, 46.731339 ], + [ 6.5433624, 46.7313553 ], + [ 6.5433533, 46.731362 ], + [ 6.543331, 46.7313784 ], + [ 6.5433219000000005, 46.7313851 ], + [ 6.5432996, 46.7314016 ], + [ 6.5432913, 46.7314078 ], + [ 6.5432691, 46.7314243 ], + [ 6.5432616, 46.7314299 ], + [ 6.5432395, 46.7314464 ], + [ 6.5432304, 46.7314532 ], + [ 6.5432084, 46.7314698 ], + [ 6.543201, 46.7314755 ], + [ 6.543179, 46.7314921 ], + [ 6.5431693, 46.7314995 ], + [ 6.5431475, 46.7315162 ], + [ 6.5431438, 46.731519 ], + [ 6.5431401000000005, 46.7315219 ], + [ 6.5431183, 46.7315386 ], + [ 6.5431101, 46.7315449 ], + [ 6.5430884, 46.7315617 ], + [ 6.5430796, 46.7315685 ], + [ 6.5430579, 46.7315854 ], + [ 6.5430497, 46.7315918 ], + [ 6.5430282, 46.7316087 ], + [ 6.5430202, 46.7316149 ], + [ 6.5429987, 46.7316319 ], + [ 6.5429907, 46.7316382 ], + [ 6.5429693, 46.7316552 ], + [ 6.5429613, 46.7316616 ], + [ 6.5429399, 46.7316786 ], + [ 6.5429312, 46.7316857 ], + [ 6.5429099, 46.7317027 ], + [ 6.5429027, 46.7317085 ], + [ 6.5428816, 46.7317257 ], + [ 6.5428729, 46.7317327 ], + [ 6.5428518, 46.7317499 ], + [ 6.5428439, 46.7317563 ], + [ 6.5428229, 46.7317735 ], + [ 6.5428144, 46.7317805 ], + [ 6.5427934, 46.7317978 ], + [ 6.5427862, 46.7318038 ], + [ 6.5427654, 46.7318211 ], + [ 6.5427576, 46.7318276 ], + [ 6.5427368, 46.7318449 ], + [ 6.5427263, 46.7318537 ], + [ 6.5426833, 46.73189 ], + [ 6.5426737, 46.7318981 ], + [ 6.5426514000000005, 46.731917 ], + [ 6.5426429, 46.7319243 ], + [ 6.5426207, 46.7319432 ], + [ 6.5426144, 46.7319487 ], + [ 6.5425923, 46.7319677 ], + [ 6.5425839, 46.7319749 ], + [ 6.542562, 46.7319939 ], + [ 6.5425548, 46.7320002 ], + [ 6.5425329, 46.7320192 ], + [ 6.5425274, 46.732024 ], + [ 6.5425246, 46.7320265 ], + [ 6.5425028, 46.7320456 ], + [ 6.5424964, 46.7320512 ], + [ 6.5424746, 46.7320704 ], + [ 6.5424671, 46.732077 ], + [ 6.5424455, 46.7320963 ], + [ 6.5424379, 46.7321031 ], + [ 6.5424163, 46.7321223 ], + [ 6.5424092, 46.7321287 ], + [ 6.5423878, 46.732148 ], + [ 6.5423797, 46.7321553 ], + [ 6.5423583, 46.7321746 ], + [ 6.5423507, 46.7321815 ], + [ 6.5423295, 46.7322009 ], + [ 6.5423232, 46.7322066 ], + [ 6.542302, 46.7322261 ], + [ 6.5422947, 46.7322328 ], + [ 6.5422735, 46.7322522 ], + [ 6.5422659, 46.7322593 ], + [ 6.5422449, 46.7322789 ], + [ 6.5422359, 46.7322872 ], + [ 6.5422152, 46.7323066 ], + [ 6.5422077, 46.7323136 ], + [ 6.5421871, 46.732333 ], + [ 6.5421804, 46.7323394 ], + [ 6.5421599, 46.7323589 ], + [ 6.542153, 46.7323654 ], + [ 6.5421326, 46.7323849 ], + [ 6.5421252, 46.732392 ], + [ 6.5421048, 46.7324115 ], + [ 6.5420987, 46.7324175 ], + [ 6.5420784, 46.7324371 ], + [ 6.5420711, 46.7324441 ], + [ 6.5420509, 46.7324638 ], + [ 6.5420437, 46.7324709 ], + [ 6.5420236, 46.7324906 ], + [ 6.5420169999999995, 46.732497 ], + [ 6.541997, 46.7325167 ], + [ 6.5419903, 46.7325234 ], + [ 6.5419704, 46.7325431 ], + [ 6.5419637, 46.7325498 ], + [ 6.5419438, 46.7325696 ], + [ 6.5419383, 46.7325751 ], + [ 6.5419267, 46.7325868 ], + [ 6.5419069, 46.732607 ], + [ 6.5419006, 46.7326134 ], + [ 6.5418807999999995, 46.7326336 ], + [ 6.5418736, 46.732641 ], + [ 6.5418538999999996, 46.7326612 ], + [ 6.5418477, 46.7326677 ], + [ 6.5418281, 46.732688 ], + [ 6.541821, 46.7326954 ], + [ 6.5418015, 46.7327157 ], + [ 6.5417946, 46.7327229 ], + [ 6.5417752, 46.7327432 ], + [ 6.5417684, 46.7327504 ], + [ 6.5417491, 46.7327708 ], + [ 6.5417434, 46.7327769 ], + [ 6.5417242, 46.7327973 ], + [ 6.5417165, 46.7328055 ], + [ 6.5416974, 46.732826 ], + [ 6.5416913, 46.7328325 ], + [ 6.5416723, 46.732853 ], + [ 6.5416665, 46.7328593 ], + [ 6.541626, 46.7329033 ], + [ 6.5416209, 46.7329088 ], + [ 6.5415994, 46.7329322 ], + [ 6.541593, 46.7329392 ], + [ 6.5415716, 46.7329627 ], + [ 6.5415662, 46.7329687 ], + [ 6.5415449, 46.7329922 ], + [ 6.5415389, 46.7329989 ], + [ 6.5415178, 46.7330224 ], + [ 6.541512, 46.7330288 ], + [ 6.5414909, 46.7330524 ], + [ 6.5414852, 46.7330588 ], + [ 6.5414642, 46.7330825 ], + [ 6.5414583, 46.7330892 ], + [ 6.5414373999999995, 46.7331128 ], + [ 6.5414321, 46.7331189 ], + [ 6.5414113, 46.7331426 ], + [ 6.5414057, 46.733149 ], + [ 6.5413849, 46.7331728 ], + [ 6.5413791, 46.7331795 ], + [ 6.5413585, 46.7332033 ], + [ 6.5413546, 46.7332079 ], + [ 6.5413527, 46.7332101 ], + [ 6.5413322, 46.7332339 ], + [ 6.5412104, 46.7333865 ], + [ 6.5411017000000005, 46.7335465 ], + [ 6.5410085, 46.733711 ], + [ 6.5409312, 46.7338794 ], + [ 6.54087, 46.7340509 ], + [ 6.5408252000000005, 46.7342248 ], + [ 6.5407971, 46.7344004 ], + [ 6.5407858, 46.7345768 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00034", + "country" : "CHE", + "name" : [ + { + "text" : "Établissements de la plaine de l'Orbe (EPO)", + "lang" : "de-CH" + }, + { + "text" : "Établissements de la plaine de l'Orbe (EPO)", + "lang" : "fr-CH" + }, + { + "text" : "Établissements de la plaine de l'Orbe (EPO)", + "lang" : "it-CH" + }, + { + "text" : "Établissements de la plaine de l'Orbe (EPO)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kantonspolizei Waadt", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale vaudoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Vaud", + "lang" : "it-CH" + }, + { + "text" : "Vaud Cantonal Police", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.pcv@vd.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.9185555999999995, 46.7149155 ], + [ 6.9186872, 46.7142976 ], + [ 6.9187334, 46.7142874 ], + [ 6.9187466, 46.7142517 ], + [ 6.9187192, 46.7142258 ], + [ 6.9187619, 46.7139292 ], + [ 6.9188228, 46.7137686 ], + [ 6.9189229, 46.7136193 ], + [ 6.9197851, 46.7127216 ], + [ 6.9198261, 46.7126435 ], + [ 6.9198436, 46.7125788 ], + [ 6.9199005, 46.7125626 ], + [ 6.9199023, 46.7125385 ], + [ 6.9199048, 46.7125148 ], + [ 6.9197463, 46.7124966 ], + [ 6.9196069, 46.7124014 ], + [ 6.9195599, 46.7123298 ], + [ 6.9195817, 46.7122505 ], + [ 6.9193888999999995, 46.7121841 ], + [ 6.9194389, 46.7121155 ], + [ 6.9195113, 46.711985 ], + [ 6.9195865, 46.7118495 ], + [ 6.9196615, 46.7116772 ], + [ 6.9197027, 46.7115004 ], + [ 6.9197207, 46.7112767 ], + [ 6.9197105, 46.7109751 ], + [ 6.9196976, 46.710747 ], + [ 6.9189295, 46.7102169 ], + [ 6.9181143, 46.7096549 ], + [ 6.9172989, 46.7090922 ], + [ 6.9164449, 46.7085718 ], + [ 6.9158781, 46.7082273 ], + [ 6.9152183, 46.7077149 ], + [ 6.9150084, 46.7075503 ], + [ 6.9149915, 46.707365 ], + [ 6.9146802, 46.7071255 ], + [ 6.9147178, 46.7071042 ], + [ 6.9149736, 46.7069761 ], + [ 6.9152129, 46.7068873 ], + [ 6.9154758, 46.7068099 ], + [ 6.9159852, 46.7066991 ], + [ 6.9162443, 46.7066354 ], + [ 6.9163916, 46.706594 ], + [ 6.9164217, 46.706582 ], + [ 6.9165411, 46.7065358 ], + [ 6.9168399, 46.7063815 ], + [ 6.9169865999999995, 46.7062906 ], + [ 6.9170894, 46.7062269 ], + [ 6.9173232, 46.7060547 ], + [ 6.9175396, 46.705864 ], + [ 6.9176202, 46.7057697 ], + [ 6.9180078, 46.7054841 ], + [ 6.9182812, 46.7053132 ], + [ 6.9184738, 46.7052102 ], + [ 6.9186359, 46.7051339 ], + [ 6.9188047, 46.705064899999996 ], + [ 6.9189772, 46.7050017 ], + [ 6.9191308, 46.7049505 ], + [ 6.9193919, 46.704875 ], + [ 6.9196245, 46.7048119 ], + [ 6.9197502, 46.7047806 ], + [ 6.9199467, 46.7047449 ], + [ 6.9201476, 46.7047301 ], + [ 6.920342, 46.7047373 ], + [ 6.9203624, 46.7047597 ], + [ 6.9203685, 46.7046642 ], + [ 6.9201463, 46.7046581 ], + [ 6.9199273, 46.7046708 ], + [ 6.9197147, 46.7047125 ], + [ 6.9195864, 46.7047463 ], + [ 6.9193574, 46.7048098 ], + [ 6.9191198, 46.7048797 ], + [ 6.9189374, 46.7049369 ], + [ 6.9187551, 46.7050008 ], + [ 6.9185754, 46.7050742 ], + [ 6.9184152999999995, 46.7051482 ], + [ 6.918223, 46.7052513 ], + [ 6.9179358, 46.7054329 ], + [ 6.9175348, 46.7057154 ], + [ 6.9174204, 46.7057919 ], + [ 6.9171765, 46.7059604 ], + [ 6.9169502, 46.7061494 ], + [ 6.9168271, 46.7062515 ], + [ 6.916693, 46.7063631 ], + [ 6.9164762, 46.7064745 ], + [ 6.9163407, 46.7065285 ], + [ 6.9162056, 46.7065685 ], + [ 6.9159499, 46.7066321 ], + [ 6.9154415, 46.7067448 ], + [ 6.9151685, 46.7068205 ], + [ 6.914915, 46.7069147 ], + [ 6.9146488, 46.707052 ], + [ 6.9141642999999995, 46.7073425 ], + [ 6.9138224, 46.7075492 ], + [ 6.913746, 46.7075661 ], + [ 6.913672, 46.7075396 ], + [ 6.9136038, 46.7075791 ], + [ 6.9136881, 46.707648 ], + [ 6.9136725, 46.7076585 ], + [ 6.9137205, 46.707701 ], + [ 6.9134442, 46.707866 ], + [ 6.9132458, 46.7079844 ], + [ 6.9131832, 46.7080473 ], + [ 6.9138344, 46.7085562 ], + [ 6.9138893, 46.7085955 ], + [ 6.9145126, 46.7090424 ], + [ 6.9149692, 46.7095057 ], + [ 6.9155802, 46.710129 ], + [ 6.9162866, 46.7107563 ], + [ 6.9169077, 46.7113085 ], + [ 6.9165911, 46.7115239 ], + [ 6.916081, 46.7118637 ], + [ 6.9159625, 46.7119128 ], + [ 6.9154683, 46.7121752 ], + [ 6.9162412, 46.7128413 ], + [ 6.9167743, 46.7132049 ], + [ 6.9171743, 46.7130241 ], + [ 6.9177209, 46.712768 ], + [ 6.9174033, 46.7124484 ], + [ 6.9181588, 46.7120926 ], + [ 6.9185047, 46.7124437 ], + [ 6.9185867, 46.7125467 ], + [ 6.9188441, 46.7128697 ], + [ 6.9189519, 46.7130048 ], + [ 6.9187444, 46.7132215 ], + [ 6.9184577, 46.7134756 ], + [ 6.918094, 46.7137914 ], + [ 6.9179619, 46.7139522 ], + [ 6.9178808, 46.7141112 ], + [ 6.9178308, 46.7142885 ], + [ 6.9178249, 46.7144707 ], + [ 6.9178664, 46.7146496 ], + [ 6.9179454, 46.7148229 ], + [ 6.9181192, 46.7151806 ], + [ 6.9181902, 46.715322 ], + [ 6.918296, 46.7155488 ], + [ 6.9183111, 46.7155456 ], + [ 6.9184956, 46.715933 ], + [ 6.9186796, 46.7163201 ], + [ 6.9187791, 46.7165345 ], + [ 6.9188183, 46.7166765 ], + [ 6.9188252, 46.716836 ], + [ 6.918795, 46.7169704 ], + [ 6.9187558, 46.7170968 ], + [ 6.918686, 46.7172364 ], + [ 6.9185568, 46.7174311 ], + [ 6.9186285, 46.7174532 ], + [ 6.9187742, 46.7174653 ], + [ 6.9188276, 46.717317 ], + [ 6.9189823, 46.7169702 ], + [ 6.919026, 46.7168301 ], + [ 6.9190252, 46.7166327 ], + [ 6.9189666, 46.7164239 ], + [ 6.9188658, 46.7161863 ], + [ 6.9188642, 46.716113 ], + [ 6.9190263, 46.7158209 ], + [ 6.9186673, 46.7157776 ], + [ 6.9185525, 46.7154776 ], + [ 6.9185123, 46.715151 ], + [ 6.9185555999999995, 46.7149155 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VBS_19", + "country" : "CHE", + "name" : [ + { + "text" : "VBS_19 Romont", + "lang" : "de-CH" + }, + { + "text" : "VBS_19 Romont", + "lang" : "fr-CH" + }, + { + "text" : "VBS_19 Romont", + "lang" : "it-CH" + }, + { + "text" : "VBS_19 Romont", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "regulationExemption" : "YES", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Eidgenössisches Departement für Verteidigung, Bevölkerungsschutz und Sport (VBS)", + "lang" : "de-CH" + }, + { + "text" : "Département fédéral de la défense, de la protection de la population et des sports (DDPS)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento federale della difesa, della protezione della popolazione e dello sport (DDPS)", + "lang" : "it-CH" + }, + { + "text" : "Federal Department of Defence, Civil Protection and Sport (DDPS)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Lageverfolgungszentrum der Armee LVZ A", + "lang" : "de-CH" + }, + { + "text" : "Centre de suivi de la situation de l’armée, CSS A", + "lang" : "fr-CH" + }, + { + "text" : "Centro di monitoraggio della situazione dell’esercito, Centro mon sit Es", + "lang" : "it-CH" + }, + { + "text" : "Joint Operation Center, JOC", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vtg.admin.ch/en/joint-operations-command", + "email" : "lvz.op@vtg.admin.ch", + "phone" : "+41 58 464 96 43", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.1222136, 46.1673025 ], + [ 8.1222065, 46.1671613 ], + [ 8.1221888, 46.1670205 ], + [ 8.1221605, 46.1668806 ], + [ 8.1221217, 46.1667419 ], + [ 8.1220725, 46.1666048 ], + [ 8.122013, 46.1664697 ], + [ 8.1219435, 46.1663369 ], + [ 8.121864, 46.1662069 ], + [ 8.1217749, 46.1660799 ], + [ 8.1216763, 46.1659563 ], + [ 8.1215686, 46.1658365 ], + [ 8.1214519, 46.1657208 ], + [ 8.1213268, 46.1656094 ], + [ 8.1211933, 46.1655028 ], + [ 8.1210521, 46.1654012 ], + [ 8.1209034, 46.1653048 ], + [ 8.1207476, 46.165214 ], + [ 8.1205852, 46.1651289 ], + [ 8.1204167, 46.1650499 ], + [ 8.1202424, 46.1649772 ], + [ 8.1200628, 46.1649108 ], + [ 8.1198786, 46.1648511 ], + [ 8.11969, 46.1647982 ], + [ 8.1194978, 46.1647522 ], + [ 8.1193023, 46.1647132 ], + [ 8.1191042, 46.1646814 ], + [ 8.1189039, 46.1646569 ], + [ 8.1187021, 46.1646397 ], + [ 8.1184993, 46.1646298 ], + [ 8.118296, 46.1646273 ], + [ 8.1180927, 46.1646322 ], + [ 8.1178902, 46.1646445 ], + [ 8.1176888, 46.1646642 ], + [ 8.1174892, 46.1646911 ], + [ 8.1172919, 46.1647253 ], + [ 8.1170974, 46.1647666 ], + [ 8.1169064, 46.1648149 ], + [ 8.1167192, 46.1648701 ], + [ 8.1165364, 46.164932 ], + [ 8.1163585, 46.1650005 ], + [ 8.1161861, 46.1650754 ], + [ 8.1160195, 46.1651564 ], + [ 8.1158593, 46.1652434 ], + [ 8.1157058, 46.1653361 ], + [ 8.1155595, 46.1654342 ], + [ 8.1154208, 46.1655375 ], + [ 8.1152901, 46.1656457 ], + [ 8.1151677, 46.1657586 ], + [ 8.115054, 46.1658757 ], + [ 8.1149492, 46.1659968 ], + [ 8.1148537, 46.1661215 ], + [ 8.1147678, 46.1662496 ], + [ 8.1146916, 46.1663806 ], + [ 8.1146253, 46.1665141 ], + [ 8.1145693, 46.1666499 ], + [ 8.1145235, 46.1667876 ], + [ 8.1144882, 46.1669268 ], + [ 8.1144634, 46.167067 ], + [ 8.1144492, 46.1672079 ], + [ 8.1144456, 46.1673492 ], + [ 8.1144527, 46.1674904 ], + [ 8.1144704, 46.1676311 ], + [ 8.1144986, 46.167771 ], + [ 8.1145374, 46.1679097 ], + [ 8.1145866, 46.1680468 ], + [ 8.114646, 46.168182 ], + [ 8.1147156, 46.1683147 ], + [ 8.114795, 46.1684448 ], + [ 8.1148841, 46.1685718 ], + [ 8.1149827, 46.1686954 ], + [ 8.1150904, 46.1688152 ], + [ 8.115207, 46.1689309 ], + [ 8.1153322, 46.1690423 ], + [ 8.1154656, 46.1691489 ], + [ 8.1156069, 46.1692506 ], + [ 8.1157556, 46.1693469 ], + [ 8.1159113, 46.1694378 ], + [ 8.1160737, 46.1695228 ], + [ 8.1162423, 46.1696018 ], + [ 8.1164166, 46.1696746 ], + [ 8.1165962, 46.1697409 ], + [ 8.1167805, 46.1698007 ], + [ 8.116969, 46.1698536 ], + [ 8.1171613, 46.1698996 ], + [ 8.1173568, 46.1699386 ], + [ 8.1175549, 46.1699703 ], + [ 8.1177552, 46.1699949 ], + [ 8.117957, 46.1700121 ], + [ 8.1181599, 46.170022 ], + [ 8.1183632, 46.1700245 ], + [ 8.1185664, 46.1700195 ], + [ 8.118769, 46.1700072 ], + [ 8.1189704, 46.1699876 ], + [ 8.11917, 46.1699606 ], + [ 8.1193674, 46.1699265 ], + [ 8.1195618, 46.1698852 ], + [ 8.1197529, 46.1698368 ], + [ 8.1199401, 46.1697816 ], + [ 8.1201229, 46.1697197 ], + [ 8.1203008, 46.1696512 ], + [ 8.1204732, 46.1695764 ], + [ 8.1206398, 46.1694953 ], + [ 8.1208001, 46.1694083 ], + [ 8.1209536, 46.1693156 ], + [ 8.1210999, 46.1692175 ], + [ 8.1212385, 46.1691142 ], + [ 8.1213693, 46.169006 ], + [ 8.1214917, 46.1688931 ], + [ 8.1216054, 46.168776 ], + [ 8.1217101, 46.1686549 ], + [ 8.1218056, 46.1685301 ], + [ 8.1218915, 46.1684021 ], + [ 8.1219677, 46.1682711 ], + [ 8.1220339, 46.1681375 ], + [ 8.12209, 46.1680017 ], + [ 8.1221357, 46.167864 ], + [ 8.122171, 46.1677249 ], + [ 8.1221958, 46.1675847 ], + [ 8.12221, 46.1674437 ], + [ 8.1222136, 46.1673025 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0109", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Serra", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Serra", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Serra", + "lang" : "it-CH" + }, + { + "text" : "Substation Serra", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.1437861, 46.4682904 ], + [ 7.1429439, 46.46803 ], + [ 7.1420555, 46.4673953 ], + [ 7.1412481, 46.4665017 ], + [ 7.1406391, 46.4654989 ], + [ 7.1397724, 46.4647346 ], + [ 7.1386008, 46.4628523 ], + [ 7.1384143, 46.4617418 ], + [ 7.1366857, 46.4596268 ], + [ 7.1358522, 46.4594752 ], + [ 7.1354984, 46.4605853 ], + [ 7.1348721, 46.4603866 ], + [ 7.1345567, 46.4595203 ], + [ 7.134012, 46.4589405 ], + [ 7.133673, 46.4594982 ], + [ 7.1332491, 46.4596544 ], + [ 7.133111, 46.4596613 ], + [ 7.1329418, 46.459891999999996 ], + [ 7.133476, 46.4604998 ], + [ 7.1356964, 46.4614845 ], + [ 7.1361705, 46.4612132 ], + [ 7.1367515, 46.4620657 ], + [ 7.1377192, 46.46268 ], + [ 7.1391982, 46.4652306 ], + [ 7.139956, 46.4661448 ], + [ 7.1405345, 46.4672357 ], + [ 7.1415385, 46.4681433 ], + [ 7.1430181, 46.4684935 ], + [ 7.1437861, 46.4682904 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00006", + "country" : "CHE", + "name" : [ + { + "text" : "Bois de Marmottex", + "lang" : "de-CH" + }, + { + "text" : "Bois de Marmottex", + "lang" : "fr-CH" + }, + { + "text" : "Bois de Marmottex", + "lang" : "it-CH" + }, + { + "text" : "Bois de Marmottex", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "startDateTime" : "2025-01-01T00:00:00+01:00", + "endDateTime" : "2025-06-30T00:00:00+02:00" + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Generaldirektion für Umwelt", + "lang" : "de-CH" + }, + { + "text" : "Direction générale de l'environnement", + "lang" : "fr-CH" + }, + { + "text" : "Direzione generale dell'Ambiente", + "lang" : "it-CH" + }, + { + "text" : "Environment Department", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.dge@vd.ch", + "phone" : "0041213164422", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.7202029, 46.9337984 ], + [ 6.7203951, 46.9333272 ], + [ 6.7208611, 46.9327374 ], + [ 6.721163, 46.9323473 ], + [ 6.7215538, 46.9320147 ], + [ 6.7218659, 46.9317374 ], + [ 6.7222881999999995, 46.9315448 ], + [ 6.7223723, 46.9315057 ], + [ 6.7224668, 46.9314705 ], + [ 6.7228699, 46.9313067 ], + [ 6.7234495, 46.9311831 ], + [ 6.7236351, 46.9311338 ], + [ 6.7237033, 46.9311142 ], + [ 6.720874, 46.9258231 ], + [ 6.720218, 46.9239171 ], + [ 6.7202079, 46.9238867 ], + [ 6.7191644, 46.9206865 ], + [ 6.7189285, 46.9209706 ], + [ 6.7188803, 46.9213733 ], + [ 6.7184952, 46.9218111 ], + [ 6.7183188, 46.9221263 ], + [ 6.7180267, 46.9225303 ], + [ 6.7180641, 46.9226974 ], + [ 6.7178016, 46.9237815 ], + [ 6.7178194, 46.9244516 ], + [ 6.7176922, 46.9246337 ], + [ 6.7175425, 46.9248006 ], + [ 6.7171909, 46.9251218 ], + [ 6.7172259, 46.9251546 ], + [ 6.7171543, 46.9252712 ], + [ 6.7171221, 46.9253458 ], + [ 6.7170774, 46.925429 ], + [ 6.7170361, 46.925515 ], + [ 6.7169189, 46.9256766 ], + [ 6.7168675, 46.9257687 ], + [ 6.7167409, 46.9259629 ], + [ 6.7166236, 46.9261023 ], + [ 6.7164861, 46.9262432 ], + [ 6.716424, 46.9263123 ], + [ 6.7163496, 46.9263773 ], + [ 6.7162971, 46.9264259 ], + [ 6.7162279, 46.9264939 ], + [ 6.7158972, 46.9267317 ], + [ 6.7158558, 46.9267642 ], + [ 6.7157125, 46.9268923 ], + [ 6.7156103, 46.9269963 ], + [ 6.7155272, 46.9270723 ], + [ 6.7154276, 46.9271593 ], + [ 6.7153607, 46.9272336 ], + [ 6.7151529, 46.9274253 ], + [ 6.7150619, 46.9275205 ], + [ 6.7148658999999995, 46.9277526 ], + [ 6.7148077, 46.9278107 ], + [ 6.7147439, 46.9278634 ], + [ 6.7146912, 46.9278965 ], + [ 6.7145406, 46.9279678 ], + [ 6.7143086, 46.9280425 ], + [ 6.7139691, 46.9281264 ], + [ 6.7137077, 46.9281688 ], + [ 6.7135431, 46.9282099 ], + [ 6.7134612, 46.9282385 ], + [ 6.7131577, 46.9283869 ], + [ 6.7124802, 46.9288464 ], + [ 6.7123975, 46.9290582 ], + [ 6.7122265, 46.9296455 ], + [ 6.7119902, 46.9299452 ], + [ 6.71206, 46.9309062 ], + [ 6.7125019, 46.9314114 ], + [ 6.7129749, 46.9318657 ], + [ 6.7134473, 46.932361 ], + [ 6.7137149, 46.9328405 ], + [ 6.7139036, 46.9330889 ], + [ 6.7133019, 46.9340875 ], + [ 6.7156215, 46.9347901 ], + [ 6.7208288, 46.9360884 ], + [ 6.7208787999999995, 46.9352989 ], + [ 6.7206679, 46.9349352 ], + [ 6.720579, 46.9347683 ], + [ 6.720396, 46.9348076 ], + [ 6.7203875, 46.934723 ], + [ 6.7203525, 46.9342956 ], + [ 6.7202029, 46.9337984 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00044", + "country" : "CHE", + "name" : [ + { + "text" : "Provence : haut plateau du Creux du Van", + "lang" : "de-CH" + }, + { + "text" : "Provence : haut plateau du Creux du Van", + "lang" : "fr-CH" + }, + { + "text" : "Provence : haut plateau du Creux du Van", + "lang" : "it-CH" + }, + { + "text" : "Provence : haut plateau du Creux du Van", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Generaldirektion für Umwelt", + "lang" : "de-CH" + }, + { + "text" : "Direction générale de l'environnement", + "lang" : "fr-CH" + }, + { + "text" : "Direzione generale dell'Ambiente", + "lang" : "it-CH" + }, + { + "text" : "Environment Department", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.dge@vd.ch", + "phone" : "0041213164422", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.1776268, 46.8223936 ], + [ 8.1776194, 46.822252399999996 ], + [ 8.1776014, 46.8221117 ], + [ 8.1775726, 46.8219718 ], + [ 8.1775332, 46.8218331 ], + [ 8.1774832, 46.8216961 ], + [ 8.1774229, 46.821561 ], + [ 8.1773524, 46.8214282 ], + [ 8.1772718, 46.8212982 ], + [ 8.1771815, 46.8211713 ], + [ 8.1770816, 46.8210478 ], + [ 8.1769724, 46.820928 ], + [ 8.1768542, 46.8208123 ], + [ 8.1767274, 46.8207011 ], + [ 8.1765923, 46.8205945 ], + [ 8.1764492, 46.8204929 ], + [ 8.1762986, 46.8203966 ], + [ 8.1761408, 46.8203059 ], + [ 8.1759764, 46.8202209 ], + [ 8.1758057, 46.820142 ], + [ 8.1756292, 46.8200693 ], + [ 8.1754474, 46.8200031 ], + [ 8.1752608, 46.8199435 ], + [ 8.1750699, 46.8198906 ], + [ 8.1748753, 46.8198447 ], + [ 8.1746774, 46.8198059 ], + [ 8.1744768, 46.8197742 ], + [ 8.1742741, 46.8197497 ], + [ 8.1740698, 46.8197326 ], + [ 8.1738645, 46.8197228 ], + [ 8.1736587, 46.8197205 ], + [ 8.173453, 46.8197255 ], + [ 8.173248, 46.8197379 ], + [ 8.1730442, 46.8197576 ], + [ 8.1728422, 46.8197847 ], + [ 8.1726425, 46.8198189 ], + [ 8.1724457, 46.8198603 ], + [ 8.1722524, 46.8199087 ], + [ 8.172063, 46.819964 ], + [ 8.1718781, 46.820026 ], + [ 8.1716981, 46.8200946 ], + [ 8.1715236, 46.8201695 ], + [ 8.1713551, 46.8202506 ], + [ 8.171193, 46.8203377 ], + [ 8.1710377, 46.8204305 ], + [ 8.1708898, 46.8205287 ], + [ 8.1707495, 46.820632 ], + [ 8.1706173, 46.8207403 ], + [ 8.1704935, 46.8208532 ], + [ 8.1703785, 46.8209704 ], + [ 8.1702726, 46.8210915 ], + [ 8.1701761, 46.8212163 ], + [ 8.1700892, 46.8213444 ], + [ 8.1700123, 46.8214754 ], + [ 8.1699454, 46.821609 ], + [ 8.1698887, 46.8217449 ], + [ 8.1698426, 46.8218825 ], + [ 8.1698069, 46.8220217 ], + [ 8.169782, 46.8221619 ], + [ 8.1697677, 46.8223029 ], + [ 8.1697643, 46.8224441 ], + [ 8.1697716, 46.8225853 ], + [ 8.1697896, 46.8227261 ], + [ 8.1698184, 46.822866 ], + [ 8.1698578, 46.8230046 ], + [ 8.1699077, 46.8231417 ], + [ 8.169968, 46.8232768 ], + [ 8.1700385, 46.8234095 ], + [ 8.170119, 46.8235395 ], + [ 8.1702094, 46.8236665 ], + [ 8.1703093, 46.82379 ], + [ 8.1704185, 46.8239098 ], + [ 8.1705366, 46.8240255 ], + [ 8.1706634, 46.8241368 ], + [ 8.1707986, 46.8242433 ], + [ 8.1709416, 46.8243449 ], + [ 8.1710923, 46.8244412 ], + [ 8.17125, 46.8245319 ], + [ 8.1714145, 46.8246169 ], + [ 8.171585199999999, 46.8246958 ], + [ 8.1717617, 46.8247685 ], + [ 8.1719435, 46.8248348 ], + [ 8.1721301, 46.8248944 ], + [ 8.172321, 46.8249472 ], + [ 8.1725156, 46.8249932 ], + [ 8.1727135, 46.825032 ], + [ 8.1729141, 46.8250637 ], + [ 8.1731169, 46.8250882 ], + [ 8.1733212, 46.8251053 ], + [ 8.1735265, 46.8251151 ], + [ 8.1737323, 46.8251174 ], + [ 8.173938, 46.8251124 ], + [ 8.1741431, 46.8251 ], + [ 8.1743469, 46.8250803 ], + [ 8.1745489, 46.8250532 ], + [ 8.1747486, 46.8250189 ], + [ 8.1749454, 46.8249775 ], + [ 8.1751388, 46.8249291 ], + [ 8.1753282, 46.8248738 ], + [ 8.1755131, 46.8248118 ], + [ 8.1756931, 46.8247433 ], + [ 8.1758676, 46.8246683 ], + [ 8.1760361, 46.8245872 ], + [ 8.1761982, 46.8245001 ], + [ 8.1763535, 46.8244074 ], + [ 8.1765014, 46.8243092 ], + [ 8.1766417, 46.8242058 ], + [ 8.1767739, 46.8240975 ], + [ 8.1768977, 46.8239846 ], + [ 8.1770127, 46.8238674 ], + [ 8.1771186, 46.8237463 ], + [ 8.1772151, 46.8236215 ], + [ 8.1773019, 46.8234934 ], + [ 8.1773789, 46.8233623 ], + [ 8.1774458, 46.8232287 ], + [ 8.1775024, 46.8230929 ], + [ 8.1775485, 46.8229552 ], + [ 8.1775842, 46.8228161 ], + [ 8.1776091, 46.8226758 ], + [ 8.1776233, 46.8225349 ], + [ 8.1776268, 46.8223936 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0044", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Giswil", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Giswil", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Giswil", + "lang" : "it-CH" + }, + { + "text" : "Substation Giswil", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.0031003, 46.3576608 ], + [ 7.0033361, 46.3577382 ], + [ 7.0044518, 46.3577901 ], + [ 7.0048505, 46.3576513 ], + [ 7.0050833, 46.3574588 ], + [ 7.0054873, 46.3572994 ], + [ 7.006103, 46.3573197 ], + [ 7.006243, 46.3572024 ], + [ 7.0070906, 46.3569708 ], + [ 7.0077469, 46.3569518 ], + [ 7.0083299, 46.3571645 ], + [ 7.0087689, 46.3573416 ], + [ 7.0090416, 46.3575306 ], + [ 7.0095103, 46.3570835 ], + [ 7.0102355, 46.3565582 ], + [ 7.010733, 46.3560761 ], + [ 7.0108158, 46.3556321 ], + [ 7.010255, 46.3547438 ], + [ 7.0102281, 46.3547006 ], + [ 7.010078, 46.3544625 ], + [ 7.0083878, 46.3526587 ], + [ 7.0079817, 46.3525897 ], + [ 7.0071671, 46.3525866 ], + [ 7.0056348, 46.352828099999996 ], + [ 7.0048392, 46.3535429 ], + [ 7.0034841, 46.3562967 ], + [ 7.003482, 46.3563993 ], + [ 7.0031442, 46.3575251 ], + [ 7.0031003, 46.3576608 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00020", + "country" : "CHE", + "name" : [ + { + "text" : "La Riondaz", + "lang" : "de-CH" + }, + { + "text" : "La Riondaz", + "lang" : "fr-CH" + }, + { + "text" : "La Riondaz", + "lang" : "it-CH" + }, + { + "text" : "La Riondaz", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "startDateTime" : "2024-11-15T00:00:00+01:00", + "endDateTime" : "2025-04-15T00:00:00+02:00" + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Generaldirektion für Umwelt", + "lang" : "de-CH" + }, + { + "text" : "Direction générale de l'environnement", + "lang" : "fr-CH" + }, + { + "text" : "Direzione generale dell'Ambiente", + "lang" : "it-CH" + }, + { + "text" : "Environment Department", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.dge@vd.ch", + "phone" : "0041213164422", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.4037303, 46.9719075 ], + [ 8.4037004, 46.9718875 ], + [ 8.4035419, 46.9717814 ], + [ 8.4028172, 46.9712972 ], + [ 8.4027845, 46.9712727 ], + [ 8.4026531, 46.9711741 ], + [ 8.4018994, 46.9716926 ], + [ 8.4001296, 46.9709893 ], + [ 8.3998796, 46.9710369 ], + [ 8.3993937, 46.9711293 ], + [ 8.3991608, 46.9714792 ], + [ 8.3991542, 46.9714892 ], + [ 8.4008764, 46.972177 ], + [ 8.4020429, 46.972642 ], + [ 8.4029379, 46.9729989 ], + [ 8.4023461, 46.9738185 ], + [ 8.4060016, 46.9750179 ], + [ 8.4050541, 46.9763007 ], + [ 8.397532, 46.9738323 ], + [ 8.3975242, 46.9738297 ], + [ 8.3831359, 46.9691066 ], + [ 8.382282, 46.9703227 ], + [ 8.3846382, 46.9710963 ], + [ 8.384516, 46.9712544 ], + [ 8.3842794, 46.9715608 ], + [ 8.3842296, 46.9716323 ], + [ 8.3840892, 46.9719002 ], + [ 8.3854963, 46.9723631 ], + [ 8.3858291, 46.9718853 ], + [ 8.3920422, 46.9739258 ], + [ 8.3918881, 46.9741458 ], + [ 8.3834688, 46.9751842 ], + [ 8.3833871, 46.9751943 ], + [ 8.3834508, 46.975305 ], + [ 8.3835092, 46.9753881 ], + [ 8.3835835, 46.97549 ], + [ 8.383628, 46.9754845 ], + [ 8.3926286, 46.9743743 ], + [ 8.3916264, 46.976225 ], + [ 8.3912712, 46.9768809 ], + [ 8.3909375, 46.9774972 ], + [ 8.3907349, 46.977662 ], + [ 8.3905488, 46.9778135 ], + [ 8.3903886, 46.9779438 ], + [ 8.3904649, 46.9779878 ], + [ 8.3904577, 46.9779936 ], + [ 8.3916305, 46.9786687 ], + [ 8.391717, 46.9785029 ], + [ 8.3922687, 46.978635 ], + [ 8.3929094, 46.9787331 ], + [ 8.3930848, 46.9785377 ], + [ 8.3932115, 46.9784401 ], + [ 8.3935752, 46.978261 ], + [ 8.3938994, 46.9781417 ], + [ 8.3941529, 46.9780829 ], + [ 8.3943774, 46.9780526 ], + [ 8.4024392, 46.9773129 ], + [ 8.4024783, 46.9773331 ], + [ 8.4025211, 46.9773602 ], + [ 8.4025471, 46.9773803 ], + [ 8.4026034, 46.9774091 ], + [ 8.4026797, 46.9774337 ], + [ 8.4026936, 46.9774362 ], + [ 8.4026943, 46.9774363 ], + [ 8.4027149, 46.9774414 ], + [ 8.4027168, 46.9774419 ], + [ 8.4027187, 46.9774423 ], + [ 8.4027205, 46.9774428 ], + [ 8.4027446, 46.9774484 ], + [ 8.402769, 46.9774535 ], + [ 8.4027935, 46.9774581 ], + [ 8.4028181, 46.9774624 ], + [ 8.4028428, 46.9774665 ], + [ 8.4028676, 46.9774704 ], + [ 8.4028927, 46.9774739 ], + [ 8.4029181, 46.9774766 ], + [ 8.4029435, 46.9774785 ], + [ 8.402969, 46.9774807 ], + [ 8.4029942, 46.977484 ], + [ 8.403019, 46.9774885 ], + [ 8.4030448, 46.9774944 ], + [ 8.4030702, 46.9775011 ], + [ 8.403095, 46.9775088 ], + [ 8.4031195, 46.9775168 ], + [ 8.4031441, 46.9775249 ], + [ 8.4031685, 46.977533 ], + [ 8.4031967, 46.9775424 ], + [ 8.4032246, 46.9775519 ], + [ 8.4032525, 46.9775617 ], + [ 8.4032802, 46.9775717 ], + [ 8.4033075, 46.9775821 ], + [ 8.4033346, 46.9775929 ], + [ 8.4033665, 46.9776063 ], + [ 8.403398, 46.9776204 ], + [ 8.4034288, 46.9776351 ], + [ 8.4034596, 46.9776498 ], + [ 8.4034909, 46.977664 ], + [ 8.4035227, 46.9776777 ], + [ 8.4035954, 46.9777075 ], + [ 8.403669, 46.9777364 ], + [ 8.4037434, 46.9777644 ], + [ 8.4038973, 46.9778151 ], + [ 8.4039272, 46.977825 ], + [ 8.4039583, 46.9778352 ], + [ 8.4039848, 46.977844 ], + [ 8.4043119, 46.9779467 ], + [ 8.4044034, 46.9779841 ], + [ 8.4044964, 46.9780198 ], + [ 8.4045908, 46.9780536 ], + [ 8.4046492, 46.9780734 ], + [ 8.4047081, 46.9780923 ], + [ 8.4047675, 46.9781105 ], + [ 8.4048271, 46.9781285 ], + [ 8.4048862, 46.9781471 ], + [ 8.4049449, 46.9781664 ], + [ 8.4050236, 46.978193 ], + [ 8.4051019, 46.9782202 ], + [ 8.4051797, 46.978248 ], + [ 8.4052576, 46.9782756 ], + [ 8.4053361, 46.9783024 ], + [ 8.4054153, 46.9783283 ], + [ 8.4055359, 46.9783664 ], + [ 8.405657099999999, 46.9784034 ], + [ 8.405779, 46.9784394 ], + [ 8.405901, 46.9784753 ], + [ 8.4060223, 46.9785123 ], + [ 8.4061427, 46.9785506 ], + [ 8.4062001, 46.9785697 ], + [ 8.4062568, 46.9785899 ], + [ 8.4063128, 46.9786111 ], + [ 8.4063686, 46.9786324 ], + [ 8.4064249, 46.9786531 ], + [ 8.4064817, 46.9786731 ], + [ 8.4065222, 46.9786869 ], + [ 8.406563, 46.9787003 ], + [ 8.406604, 46.9787135 ], + [ 8.4066451, 46.9787264 ], + [ 8.4066862, 46.9787393 ], + [ 8.4067274, 46.9787521 ], + [ 8.4067614, 46.9787626 ], + [ 8.4067955, 46.9787728 ], + [ 8.4068297, 46.9787829 ], + [ 8.406864, 46.9787929 ], + [ 8.4068983, 46.9788029 ], + [ 8.4069276, 46.9788115 ], + [ 8.4069084, 46.9788385 ], + [ 8.406868, 46.9788941 ], + [ 8.406946, 46.9789206 ], + [ 8.4069873, 46.9788612 ], + [ 8.4070062, 46.978834 ], + [ 8.4070226, 46.9788386 ], + [ 8.4070451, 46.9788451 ], + [ 8.4070674, 46.9788518 ], + [ 8.4070846, 46.978857 ], + [ 8.4071018, 46.9788622 ], + [ 8.407119, 46.9788675 ], + [ 8.407136, 46.9788729 ], + [ 8.407153, 46.9788785 ], + [ 8.4071698, 46.9788843 ], + [ 8.4071962, 46.9788937 ], + [ 8.4072224, 46.9789033 ], + [ 8.4072485, 46.978913 ], + [ 8.4072745, 46.9789229 ], + [ 8.4073005, 46.9789329 ], + [ 8.4073265, 46.9789428 ], + [ 8.4073982, 46.9789706 ], + [ 8.4074696, 46.9789986 ], + [ 8.4075409, 46.979027 ], + [ 8.407612199999999, 46.9790552 ], + [ 8.407684, 46.9790829 ], + [ 8.4077562, 46.97911 ], + [ 8.4077783, 46.979118 ], + [ 8.4078007, 46.9791255 ], + [ 8.4078233, 46.9791327 ], + [ 8.4078461, 46.9791396 ], + [ 8.407869, 46.9791464 ], + [ 8.407892, 46.9791531 ], + [ 8.4079241, 46.979162099999996 ], + [ 8.4079566, 46.9791708 ], + [ 8.4079893, 46.979179 ], + [ 8.4080219, 46.9791873 ], + [ 8.4080543, 46.9791961 ], + [ 8.4080863, 46.9792055 ], + [ 8.4081138, 46.9792141 ], + [ 8.4081409, 46.9792231 ], + [ 8.4081678, 46.9792326 ], + [ 8.4081945, 46.9792422 ], + [ 8.4082213, 46.9792517 ], + [ 8.4082482, 46.9792612 ], + [ 8.4083099, 46.9792829 ], + [ 8.4083716, 46.9793048 ], + [ 8.4084331, 46.9793268 ], + [ 8.4084947, 46.9793487 ], + [ 8.4085564, 46.9793704 ], + [ 8.4086184, 46.9793918 ], + [ 8.4086744, 46.9794109 ], + [ 8.4087305, 46.9794298 ], + [ 8.4087869, 46.9794484 ], + [ 8.4088432, 46.9794669 ], + [ 8.4088996, 46.9794855 ], + [ 8.4089559, 46.9795042 ], + [ 8.4090291, 46.9795286 ], + [ 8.4091022, 46.9795532 ], + [ 8.4091753, 46.9795779 ], + [ 8.4092484, 46.9796024 ], + [ 8.4093219, 46.9796265 ], + [ 8.4093957, 46.9796502 ], + [ 8.4094238, 46.9796588 ], + [ 8.4094522, 46.979667 ], + [ 8.4094809, 46.9796747 ], + [ 8.4095096, 46.9796823 ], + [ 8.4095383, 46.9796901 ], + [ 8.4095668, 46.979698 ], + [ 8.4096114, 46.9797104 ], + [ 8.4096561, 46.979722699999996 ], + [ 8.4097009, 46.9797347 ], + [ 8.4097456, 46.979747 ], + [ 8.4097898, 46.9797599 ], + [ 8.4098337, 46.9797735 ], + [ 8.4098776, 46.979788 ], + [ 8.4099211, 46.979803 ], + [ 8.4099642, 46.9798186 ], + [ 8.410007, 46.9798345 ], + [ 8.41005, 46.9798503 ], + [ 8.4100929, 46.979866 ], + [ 8.4101296, 46.9798794 ], + [ 8.4101662, 46.979893 ], + [ 8.4102027, 46.9799067 ], + [ 8.4102391, 46.9799204 ], + [ 8.4102756, 46.979934 ], + [ 8.4103121, 46.9799476 ], + [ 8.4103333, 46.9799555 ], + [ 8.4103544, 46.9799636 ], + [ 8.4103754, 46.9799717 ], + [ 8.4103965, 46.9799797 ], + [ 8.4104179, 46.9799874 ], + [ 8.4104396, 46.9799946 ], + [ 8.4104734, 46.9800053 ], + [ 8.411571, 46.9784391 ], + [ 8.4094336, 46.9777394 ], + [ 8.4096574, 46.9774189 ], + [ 8.4100986, 46.9775639 ], + [ 8.4104188, 46.9770972 ], + [ 8.4099828, 46.9769532 ], + [ 8.4101944, 46.9766503 ], + [ 8.4105576, 46.9761304 ], + [ 8.4107483, 46.9758574 ], + [ 8.4106777, 46.9758227 ], + [ 8.4104077, 46.9756762 ], + [ 8.4100437, 46.9754728 ], + [ 8.4095248, 46.9751569 ], + [ 8.4088926, 46.9747569 ], + [ 8.4084677, 46.9745338 ], + [ 8.4083849, 46.9744695 ], + [ 8.407278699999999, 46.973883 ], + [ 8.4072344, 46.9739204 ], + [ 8.4069241, 46.9737559 ], + [ 8.406202799999999, 46.973373 ], + [ 8.4053062, 46.9728357 ], + [ 8.4051064, 46.9727198 ], + [ 8.4038714, 46.972002 ], + [ 8.4037303, 46.9719075 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZC002", + "country" : "CHE", + "name" : [ + { + "text" : "LSZC Buochs (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSZC Buochs (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSZC Buochs (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSZC Buochs (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Airport Buochs AG / Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Airport Buochs AG / Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Airport Buochs AG / Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Airport Buochs AG / Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Skyguide Special Office", + "lang" : "de-CH" + }, + { + "text" : "Skyguide Special Office", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide Special Office", + "lang" : "it-CH" + }, + { + "text" : "Skyguide Special Office", + "lang" : "en-GB" + } + ], + "siteURL" : "https://skyguide.ch/services/special-flights", + "email" : "info@airportbuochs.ch", + "phone" : "0041416220611", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7135637, 47.4133799 ], + [ 7.7133016, 47.4133496 ], + [ 7.7130138, 47.4133552 ], + [ 7.7129005, 47.4135048 ], + [ 7.7128318, 47.4136878 ], + [ 7.7128021, 47.4139598 ], + [ 7.7127889, 47.414208 ], + [ 7.7129945, 47.414413 ], + [ 7.7132674, 47.4142921 ], + [ 7.7135001, 47.4141886 ], + [ 7.7135544, 47.4141643 ], + [ 7.7135913, 47.4139376 ], + [ 7.7136349, 47.4136632 ], + [ 7.7135637, 47.4133799 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns243", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Chastelenfluh", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Chastelenfluh", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Chastelenfluh", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Chastelenfluh", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.114018, 47.573131599999996 ], + [ 9.1138527, 47.57078 ], + [ 9.1135058, 47.5684375 ], + [ 9.1129782, 47.5661105 ], + [ 9.1122715, 47.5638053 ], + [ 9.1113876, 47.5615283 ], + [ 9.1103289, 47.5592858 ], + [ 9.1090984, 47.5570838 ], + [ 9.1076994, 47.5549284 ], + [ 9.1061358, 47.5528255 ], + [ 9.1044119, 47.5507808 ], + [ 9.1025324, 47.5488 ], + [ 9.1005026, 47.5468885 ], + [ 9.0983279, 47.5450515 ], + [ 9.0960144, 47.543294 ], + [ 9.0935683, 47.5416208 ], + [ 9.0909964, 47.5400366 ], + [ 9.0883058, 47.5385456 ], + [ 9.0855037, 47.537152 ], + [ 9.0825979, 47.5358595 ], + [ 9.0795964, 47.5346716 ], + [ 9.0765073, 47.5335917 ], + [ 9.0733391, 47.5326227 ], + [ 9.0701004, 47.5317672 ], + [ 9.0668002, 47.5310276 ], + [ 9.0634474, 47.5304059 ], + [ 9.0600513, 47.5299038 ], + [ 9.0566211, 47.5295226 ], + [ 9.0531661, 47.5292635 ], + [ 9.0496959, 47.5291271 ], + [ 9.0462199, 47.5291137 ], + [ 9.0427476, 47.5292235 ], + [ 9.0392885, 47.5294561 ], + [ 9.0358522, 47.5298109 ], + [ 9.0324478, 47.530287 ], + [ 9.0290849, 47.5308829 ], + [ 9.0257725, 47.5315971 ], + [ 9.0225198, 47.5324277 ], + [ 9.0193356, 47.5333723 ], + [ 9.0162286, 47.5344285 ], + [ 9.0132074, 47.5355932 ], + [ 9.0102802, 47.5368633 ], + [ 9.007455, 47.5382353 ], + [ 9.0047396, 47.5397056 ], + [ 9.0021414, 47.54127 ], + [ 8.9996675, 47.5429242 ], + [ 8.9973247, 47.5446638 ], + [ 8.9951194, 47.5464841 ], + [ 8.9930577, 47.5483799 ], + [ 8.9911452, 47.5503461 ], + [ 8.9893872, 47.5523774 ], + [ 8.9877885, 47.5544682 ], + [ 8.9863535, 47.5566127 ], + [ 8.9850862, 47.5588051 ], + [ 8.98399, 47.5610394 ], + [ 8.983068, 47.5633095 ], + [ 8.9823227, 47.5656091 ], + [ 8.9817562, 47.5679319 ], + [ 8.9813701, 47.5702716 ], + [ 8.9811654, 47.5726218 ], + [ 8.9811427, 47.574976 ], + [ 8.9813021, 47.5773278 ], + [ 8.9816433, 47.5796707 ], + [ 8.9821652, 47.5819983 ], + [ 8.9828665, 47.5843043 ], + [ 8.9837453, 47.5865822 ], + [ 8.9847992, 47.5888259 ], + [ 8.9860253, 47.5910292 ], + [ 8.9874203, 47.593186 ], + [ 8.9889803, 47.5952905 ], + [ 8.9907012, 47.5973368 ], + [ 8.9925782, 47.5993194 ], + [ 8.9946062, 47.6012328 ], + [ 8.9967796, 47.6030717 ], + [ 8.9990925, 47.6048312 ], + [ 9.0015385, 47.6065063 ], + [ 9.0041109, 47.6080925 ], + [ 9.0068027, 47.6095854 ], + [ 9.0096065, 47.6109809 ], + [ 9.0125146, 47.6122752 ], + [ 9.0155191, 47.6134647 ], + [ 9.0186116, 47.6145462 ], + [ 9.0217837, 47.6155166 ], + [ 9.0250267, 47.6163735 ], + [ 9.0283316, 47.6171142 ], + [ 9.0316894, 47.6177369 ], + [ 9.035091, 47.6182399 ], + [ 9.0385268, 47.6186217 ], + [ 9.0419875, 47.6188812 ], + [ 9.0454636, 47.6190179 ], + [ 9.0489454, 47.6190312 ], + [ 9.0524236, 47.6189213 ], + [ 9.0558884, 47.6186883 ], + [ 9.0593305, 47.6183329 ], + [ 9.0627402, 47.6178561 ], + [ 9.0661083, 47.6172592 ], + [ 9.0694255, 47.6165438 ], + [ 9.0726826, 47.615712 ], + [ 9.0758708, 47.6147659 ], + [ 9.0789813, 47.6137082 ], + [ 9.0820055, 47.6125418 ], + [ 9.0849352, 47.611269899999996 ], + [ 9.0877622, 47.609896 ], + [ 9.0904789, 47.6084239 ], + [ 9.0930778, 47.6068575 ], + [ 9.0955518, 47.6052013 ], + [ 9.0978941, 47.6034597 ], + [ 9.1000982, 47.6016376 ], + [ 9.1021581, 47.5997399 ], + [ 9.1040683, 47.5977719 ], + [ 9.1058234, 47.5957389 ], + [ 9.1074187, 47.5936465 ], + [ 9.1088498, 47.5915005 ], + [ 9.1101128, 47.5893068 ], + [ 9.1112042, 47.5870713 ], + [ 9.1121211, 47.5848003 ], + [ 9.1128611, 47.5824999 ], + [ 9.113422, 47.5801764 ], + [ 9.1138024, 47.5778363 ], + [ 9.1140012, 47.5754859 ], + [ 9.114018, 47.573131599999996 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSPA001", + "country" : "CHE", + "name" : [ + { + "text" : "LSPA Amlikon", + "lang" : "de-CH" + }, + { + "text" : "LSPA Amlikon", + "lang" : "fr-CH" + }, + { + "text" : "LSPA Amlikon", + "lang" : "it-CH" + }, + { + "text" : "LSPA Amlikon", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Segelfluggruppe Cumulus", + "lang" : "de-CH" + }, + { + "text" : "Segelfluggruppe Cumulus", + "lang" : "fr-CH" + }, + { + "text" : "Segelfluggruppe Cumulus", + "lang" : "it-CH" + }, + { + "text" : "Segelfluggruppe Cumulus", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Fabian Grunder", + "lang" : "de-CH" + }, + { + "text" : "Fabian Grunder", + "lang" : "fr-CH" + }, + { + "text" : "Fabian Grunder", + "lang" : "it-CH" + }, + { + "text" : "Fabian Grunder", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.cumulus-segelflug.ch/flugplatz/drohnen/", + "email" : "info@cumulus-segelflug.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P02DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.5497893, 47.4400841 ], + [ 8.5495559, 47.4399214 ], + [ 8.5496151, 47.439801 ], + [ 8.5507865, 47.4386353 ], + [ 8.5516043, 47.4389031 ], + [ 8.5516424, 47.4388403 ], + [ 8.5521817, 47.4382378 ], + [ 8.5508762, 47.43739 ], + [ 8.550645, 47.4376419 ], + [ 8.549692199999999, 47.4373212 ], + [ 8.5488376, 47.4369861 ], + [ 8.5477441, 47.4377946 ], + [ 8.5470652, 47.4383182 ], + [ 8.5470136, 47.4383677 ], + [ 8.5461159, 47.4391119 ], + [ 8.5457548, 47.4394408 ], + [ 8.5462827, 47.4396348 ], + [ 8.546509499999999, 47.4397144 ], + [ 8.5473734, 47.440183 ], + [ 8.547714599999999, 47.4398454 ], + [ 8.5481596, 47.440073 ], + [ 8.5485777, 47.440274 ], + [ 8.5495598, 47.4407371 ], + [ 8.5497567, 47.4404098 ], + [ 8.5497893, 47.4400841 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZH004", + "country" : "CHE", + "name" : [ + { + "text" : "LSZH Zürich (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSZH Zürich (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSZH Zürich (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSZH Zürich (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Flughafen Zürich AG / Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Flughafen Zürich AG / Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Flughafen Zürich AG / Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Flughafen Zürich AG / Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Skyguide Special Flight Office", + "lang" : "de-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "it-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.skyguide.ch/services/special-flights", + "email" : "drones@zurich-airport.com", + "phone" : "0041438162211", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.0332295, 46.1997303 ], + [ 6.0342617, 46.1993857 ], + [ 6.0338465, 46.1998008 ], + [ 6.0335241, 46.2008297 ], + [ 6.0337932, 46.2018659 ], + [ 6.034613, 46.2027518 ], + [ 6.0358586, 46.2033524 ], + [ 6.0373405, 46.2035762 ], + [ 6.0388329, 46.2033893 ], + [ 6.0401087, 46.20282 ], + [ 6.0405602, 46.2023686 ], + [ 6.0406196, 46.2024311 ], + [ 6.0406214, 46.2024355 ], + [ 6.0406758, 46.2024902 ], + [ 6.0412769, 46.2031224 ], + [ 6.0413347, 46.2031528 ], + [ 6.0413467, 46.2031648 ], + [ 6.041876, 46.2034365 ], + [ 6.0420264, 46.2035153 ], + [ 6.0420092, 46.2035328 ], + [ 6.0422277, 46.2036366 ], + [ 6.0423089, 46.2036634 ], + [ 6.0423288, 46.2036738 ], + [ 6.0423585, 46.2036844 ], + [ 6.0423587, 46.2036842 ], + [ 6.0423733, 46.2036917 ], + [ 6.0424149, 46.2037064 ], + [ 6.0425111, 46.2037299 ], + [ 6.0433279, 46.2039989 ], + [ 6.0445356, 46.204107 ], + [ 6.0457321, 46.2039504 ], + [ 6.0468002, 46.2035443 ], + [ 6.0476348, 46.2029288 ], + [ 6.047726, 46.2028359 ], + [ 6.047729, 46.2028328 ], + [ 6.0477553, 46.2028059 ], + [ 6.0482736, 46.2020396 ], + [ 6.0484245, 46.2011995 ], + [ 6.0481931, 46.2003683 ], + [ 6.0476023, 46.1996278 ], + [ 6.0471135, 46.1993117 ], + [ 6.0467548, 46.1990194 ], + [ 6.046753, 46.1990184 ], + [ 6.0466982, 46.1989876 ], + [ 6.0466941, 46.1989853 ], + [ 6.0455946, 46.1985515 ], + [ 6.0443528, 46.1983858 ], + [ 6.0431001, 46.1985057 ], + [ 6.0419691, 46.1988985 ], + [ 6.0410796, 46.1995226 ], + [ 6.0410207, 46.1995802 ], + [ 6.0409961, 46.1996046 ], + [ 6.0409817, 46.199619 ], + [ 6.0408941, 46.1997468 ], + [ 6.0402068, 46.1990041 ], + [ 6.0389612, 46.1984036 ], + [ 6.0374795, 46.1981797 ], + [ 6.0361001, 46.1983525 ], + [ 6.0362476, 46.1982476 ], + [ 6.036715, 46.1975867 ], + [ 6.0374545, 46.1972391 ], + [ 6.0383989, 46.1966108 ], + [ 6.0389896, 46.1958005 ], + [ 6.0391597, 46.1949 ], + [ 6.03889, 46.1940112 ], + [ 6.038211, 46.193235 ], + [ 6.0362463, 46.1916633 ], + [ 6.0353067, 46.1911165 ], + [ 6.0341687, 46.1908001 ], + [ 6.0329453, 46.1907457 ], + [ 6.0317584, 46.1909587 ], + [ 6.0313063, 46.1910956 ], + [ 6.0312821, 46.1910934 ], + [ 6.0298156, 46.1911562 ], + [ 6.0284876, 46.1915926 ], + [ 6.0274877, 46.1923402 ], + [ 6.026959, 46.1932922 ], + [ 6.0267685, 46.1940278 ], + [ 6.0267384, 46.1948473 ], + [ 6.0269313, 46.1958963 ], + [ 6.027063, 46.1966708 ], + [ 6.0273727, 46.1974529 ], + [ 6.0280031, 46.1981357 ], + [ 6.0286917, 46.1986799 ], + [ 6.0295055, 46.1991668 ], + [ 6.029786, 46.1992571 ], + [ 6.0297827, 46.1992612 ], + [ 6.0303598, 46.1994826 ], + [ 6.0317602, 46.1997987 ], + [ 6.0332295, 46.1997303 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-8", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.6154311, 46.5821793 ], + [ 9.6154201, 46.5820383 ], + [ 9.6153984, 46.5818978 ], + [ 9.615366, 46.5817583 ], + [ 9.6153231, 46.5816201 ], + [ 9.6152697, 46.5814837 ], + [ 9.6152061, 46.5813494 ], + [ 9.6151324, 46.5812176 ], + [ 9.6150487, 46.5810886 ], + [ 9.6149554, 46.5809628 ], + [ 9.6148527, 46.5808406 ], + [ 9.6147408, 46.5807222 ], + [ 9.6146201, 46.580608 ], + [ 9.6144909, 46.5804983 ], + [ 9.6143536, 46.5803935 ], + [ 9.6142085, 46.5802938 ], + [ 9.614056, 46.5801994 ], + [ 9.6138965, 46.5801106 ], + [ 9.6137306, 46.5800278 ], + [ 9.6135586, 46.579951 ], + [ 9.613381, 46.5798805 ], + [ 9.6131983, 46.5798166 ], + [ 9.6130109, 46.5797593 ], + [ 9.6128195, 46.5797089 ], + [ 9.6126246, 46.5796654 ], + [ 9.6124266, 46.5796291 ], + [ 9.6122261, 46.5795999 ], + [ 9.6120236, 46.579578 ], + [ 9.6118198, 46.5795635 ], + [ 9.6116152, 46.5795563 ], + [ 9.6114103, 46.5795565 ], + [ 9.6112057, 46.5795641 ], + [ 9.6110019, 46.5795791 ], + [ 9.6107996, 46.5796014 ], + [ 9.6105993, 46.579631 ], + [ 9.6104014, 46.5796678 ], + [ 9.6102066, 46.5797116 ], + [ 9.6100155, 46.5797625 ], + [ 9.6098284, 46.5798201 ], + [ 9.609646, 46.5798845 ], + [ 9.6094687, 46.5799553 ], + [ 9.609297, 46.5800324 ], + [ 9.6091314, 46.5801156 ], + [ 9.6089724, 46.5802047 ], + [ 9.6088203, 46.5802994 ], + [ 9.6086756, 46.5803994 ], + [ 9.6085387, 46.5805046 ], + [ 9.60841, 46.5806145 ], + [ 9.6082898, 46.5807289 ], + [ 9.6081785, 46.5808475 ], + [ 9.6080763, 46.58097 ], + [ 9.6079835, 46.581096 ], + [ 9.6079005, 46.5812251 ], + [ 9.6078273, 46.5813571 ], + [ 9.6077643, 46.5814916 ], + [ 9.6077115, 46.5816281 ], + [ 9.6076692, 46.5817663 ], + [ 9.6076375, 46.5819059 ], + [ 9.6076164, 46.5820464 ], + [ 9.6076059, 46.5821875 ], + [ 9.6076062, 46.5823288 ], + [ 9.6076173, 46.5824699 ], + [ 9.607639, 46.5826104 ], + [ 9.6076713, 46.5827499 ], + [ 9.6077142, 46.5828881 ], + [ 9.6077676, 46.5830245 ], + [ 9.6078312, 46.5831588 ], + [ 9.6079049, 46.5832906 ], + [ 9.6079885, 46.5834196 ], + [ 9.6080818, 46.5835454 ], + [ 9.6081845, 46.5836677 ], + [ 9.6082964, 46.583786 ], + [ 9.6084171, 46.5839002 ], + [ 9.6085463, 46.5840099 ], + [ 9.608683599999999, 46.5841147 ], + [ 9.6088287, 46.5842145 ], + [ 9.6089812, 46.5843089 ], + [ 9.6091407, 46.5843976 ], + [ 9.6093066, 46.5844805 ], + [ 9.6094786, 46.5845573 ], + [ 9.6096563, 46.5846277 ], + [ 9.609839000000001, 46.5846917 ], + [ 9.6100263, 46.584749 ], + [ 9.6102177, 46.5847994 ], + [ 9.6104127, 46.5848429 ], + [ 9.6106107, 46.5848792 ], + [ 9.6108112, 46.5849084 ], + [ 9.6110137, 46.5849303 ], + [ 9.6112175, 46.5849448 ], + [ 9.6114222, 46.584952 ], + [ 9.6116271, 46.5849518 ], + [ 9.6118317, 46.5849442 ], + [ 9.6120355, 46.5849292 ], + [ 9.612237799999999, 46.5849069 ], + [ 9.6124382, 46.5848773 ], + [ 9.6126361, 46.5848405 ], + [ 9.6128309, 46.5847967 ], + [ 9.6130221, 46.5847458 ], + [ 9.6132091, 46.5846882 ], + [ 9.6133916, 46.5846238 ], + [ 9.6135689, 46.584553 ], + [ 9.6137406, 46.5844759 ], + [ 9.6139062, 46.5843926 ], + [ 9.6140652, 46.5843036 ], + [ 9.6142173, 46.5842088 ], + [ 9.614362, 46.5841088 ], + [ 9.6144988, 46.5840036 ], + [ 9.6146276, 46.5838937 ], + [ 9.6147477, 46.5837793 ], + [ 9.6148591, 46.5836607 ], + [ 9.6149613, 46.5835382 ], + [ 9.615054, 46.5834122 ], + [ 9.6151371, 46.583283 ], + [ 9.6152102, 46.5831511 ], + [ 9.6152732, 46.5830166 ], + [ 9.6153259, 46.5828801 ], + [ 9.6153682, 46.5827419 ], + [ 9.6154, 46.5826023 ], + [ 9.6154211, 46.5824617 ], + [ 9.6154315, 46.5823206 ], + [ 9.6154311, 46.5821793 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0120", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Tinzen", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Tinzen", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Tinzen", + "lang" : "it-CH" + }, + { + "text" : "Substation Tinzen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.850687, 47.4415627 ], + [ 7.850754, 47.4413137 ], + [ 7.8510959, 47.4409046 ], + [ 7.8512051, 47.4406349 ], + [ 7.851207, 47.4405202 ], + [ 7.8507339, 47.4404007 ], + [ 7.8505939, 47.4403348 ], + [ 7.8504117, 47.4405868 ], + [ 7.8502244, 47.4408497 ], + [ 7.850047, 47.4410956 ], + [ 7.8497091999999995, 47.4410083 ], + [ 7.8493877, 47.4412622 ], + [ 7.8490632, 47.4415163 ], + [ 7.8488933, 47.4417566 ], + [ 7.84863, 47.4419711 ], + [ 7.8490718, 47.4420608 ], + [ 7.8493276, 47.4417547 ], + [ 7.8496087, 47.4414973 ], + [ 7.8498466, 47.441449 ], + [ 7.8503771, 47.4414901 ], + [ 7.850687, 47.4415627 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns066", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Rebhalde - Rehhag", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Rebhalde - Rehhag", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Rebhalde - Rehhag", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Rebhalde - Rehhag", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.378749, 46.2227792 ], + [ 7.3787439, 46.222638 ], + [ 7.3787281, 46.2224971 ], + [ 7.3787017, 46.222357 ], + [ 7.3786647, 46.2222181 ], + [ 7.3786173, 46.2220807 ], + [ 7.3785597, 46.2219452 ], + [ 7.3784919, 46.221812 ], + [ 7.3784141, 46.2216814 ], + [ 7.3783266, 46.2215538 ], + [ 7.3782297, 46.2214296 ], + [ 7.3781234, 46.2213091 ], + [ 7.3780083, 46.2211926 ], + [ 7.3778845, 46.2210804 ], + [ 7.3777524, 46.2209729 ], + [ 7.3776124, 46.2208703 ], + [ 7.3774649, 46.220773 ], + [ 7.3773102, 46.2206812 ], + [ 7.3771488, 46.2205951 ], + [ 7.3769812, 46.2205149 ], + [ 7.3768077, 46.220441 ], + [ 7.3766289, 46.2203735 ], + [ 7.3764452, 46.2203126 ], + [ 7.3762571999999995, 46.2202584 ], + [ 7.3760654, 46.2202111 ], + [ 7.3758703, 46.2201709 ], + [ 7.3756724, 46.2201378 ], + [ 7.3754723, 46.2201119 ], + [ 7.3752705, 46.2200934 ], + [ 7.3750676, 46.2200822 ], + [ 7.3748642, 46.2200784 ], + [ 7.3746607, 46.220082 ], + [ 7.3744577, 46.2200929 ], + [ 7.3742559, 46.2201112 ], + [ 7.3740556999999995, 46.2201369 ], + [ 7.3738578, 46.2201697 ], + [ 7.3736626, 46.2202098 ], + [ 7.3734706, 46.2202568 ], + [ 7.3732825, 46.2203108 ], + [ 7.3730987, 46.2203715 ], + [ 7.3729198, 46.2204388 ], + [ 7.3727461, 46.2205125 ], + [ 7.3725783, 46.2205924 ], + [ 7.3724167, 46.2206784 ], + [ 7.3722618, 46.22077 ], + [ 7.372114, 46.2208672 ], + [ 7.3719738, 46.2209696 ], + [ 7.3718414, 46.2210769 ], + [ 7.3717174, 46.221189 ], + [ 7.371602, 46.2213053 ], + [ 7.3714954, 46.2214257 ], + [ 7.3713982, 46.2215498 ], + [ 7.3713104, 46.2216773 ], + [ 7.3712323, 46.2218078 ], + [ 7.3711642, 46.2219409 ], + [ 7.3711062, 46.2220764 ], + [ 7.3710585, 46.2222137 ], + [ 7.3710213, 46.2223526 ], + [ 7.3709945, 46.2224927 ], + [ 7.3709784, 46.2226335 ], + [ 7.3709729, 46.2227748 ], + [ 7.370978, 46.222916 ], + [ 7.3709938, 46.2230569 ], + [ 7.3710202, 46.2231969 ], + [ 7.3710571, 46.2233359 ], + [ 7.3711045, 46.2234733 ], + [ 7.3711621, 46.2236088 ], + [ 7.3712299, 46.223742 ], + [ 7.3713076, 46.2238726 ], + [ 7.3713951, 46.2240002 ], + [ 7.3714921, 46.2241244 ], + [ 7.3715983, 46.2242449 ], + [ 7.3717134, 46.2243614 ], + [ 7.3718372, 46.2244736 ], + [ 7.3719693, 46.2245811 ], + [ 7.3721093, 46.2246837 ], + [ 7.3722568, 46.224781 ], + [ 7.3724115, 46.2248729 ], + [ 7.3725729, 46.224959 ], + [ 7.3727406, 46.2250391 ], + [ 7.372914, 46.225113 ], + [ 7.3730929, 46.2251806 ], + [ 7.3732765, 46.2252415 ], + [ 7.3734645, 46.2252957 ], + [ 7.3736564, 46.2253429 ], + [ 7.3738515, 46.2253832 ], + [ 7.3740494, 46.2254163 ], + [ 7.3742495, 46.2254422 ], + [ 7.3744513, 46.2254607 ], + [ 7.3746542, 46.2254719 ], + [ 7.3748577, 46.2254757 ], + [ 7.3750612, 46.2254721 ], + [ 7.3752642, 46.2254612 ], + [ 7.375466, 46.2254429 ], + [ 7.3756662, 46.2254172 ], + [ 7.3758642, 46.2253843 ], + [ 7.3760594, 46.2253443 ], + [ 7.3762514, 46.2252973 ], + [ 7.3764395, 46.2252433 ], + [ 7.3766233, 46.2251826 ], + [ 7.3768023, 46.2251153 ], + [ 7.376976, 46.2250415 ], + [ 7.3771438, 46.2249616 ], + [ 7.3773054, 46.2248757 ], + [ 7.3774603, 46.224784 ], + [ 7.3776081, 46.2246868 ], + [ 7.3777483, 46.2245844 ], + [ 7.3778806, 46.2244771 ], + [ 7.3780047, 46.2243651 ], + [ 7.3781201, 46.2242487 ], + [ 7.3782266, 46.2241283 ], + [ 7.3783239, 46.2240042 ], + [ 7.3784117, 46.2238767 ], + [ 7.3784897, 46.2237462 ], + [ 7.3785578, 46.223613 ], + [ 7.3786158, 46.2234776 ], + [ 7.3786634, 46.2233403 ], + [ 7.3787007, 46.2232013 ], + [ 7.3787274, 46.2230613 ], + [ 7.3787436, 46.2229204 ], + [ 7.378749, 46.2227792 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0025", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Chandoline", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Chandoline", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Chandoline", + "lang" : "it-CH" + }, + { + "text" : "Substation Chandoline", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.1139599, 46.6966657 ], + [ 8.0888166, 46.6986557 ], + [ 8.0854277, 46.6989855 ], + [ 8.0820686, 46.6994368 ], + [ 8.0787483, 46.7000083 ], + [ 8.075476, 46.7006985 ], + [ 8.0722606, 46.7015055 ], + [ 8.0691109, 46.7024271 ], + [ 8.0660354, 46.7034607 ], + [ 8.0630427, 46.7046036 ], + [ 8.060141, 46.7058526 ], + [ 8.057338, 46.7072043 ], + [ 8.0546416, 46.7086549 ], + [ 8.0520592, 46.7102006 ], + [ 8.0495977, 46.7118371 ], + [ 8.0472639, 46.7135599 ], + [ 8.0450643, 46.7153643 ], + [ 8.0430049, 46.7172454 ], + [ 8.0410912, 46.719198 ], + [ 8.0393287, 46.7212168 ], + [ 8.0377221, 46.7232962 ], + [ 8.0362758, 46.7254306 ], + [ 8.0349938, 46.7276141 ], + [ 8.0338796, 46.7298407 ], + [ 8.0329364, 46.7321044 ], + [ 8.0321667, 46.7343989 ], + [ 8.0315727, 46.7367179 ], + [ 8.0311559, 46.7390551 ], + [ 8.0309176, 46.7414042 ], + [ 8.0308585, 46.7437585 ], + [ 8.0309787, 46.7461118 ], + [ 8.0312779, 46.7484576 ], + [ 8.0317553, 46.7507893 ], + [ 8.0324097, 46.7531007 ], + [ 8.0332392, 46.7553854 ], + [ 8.0342417, 46.757637 ], + [ 8.0354144, 46.7598496 ], + [ 8.036754, 46.7620169 ], + [ 8.038257, 46.764133 ], + [ 8.0399192, 46.7661922 ], + [ 8.0417361, 46.7681887 ], + [ 8.0437027, 46.7701171 ], + [ 8.0458136, 46.7719721 ], + [ 8.0480631, 46.7737487 ], + [ 8.050445, 46.7754418 ], + [ 8.0529527, 46.777047 ], + [ 8.0555795, 46.7785597 ], + [ 8.058318, 46.7799758 ], + [ 8.0611608, 46.7812915 ], + [ 8.0641001, 46.782503 ], + [ 8.0671278, 46.7836072 ], + [ 8.0702355, 46.7846009 ], + [ 8.0734149, 46.7854815 ], + [ 8.076657, 46.7862464 ], + [ 8.0799531, 46.7868937 ], + [ 8.083294, 46.7874214 ], + [ 8.086670699999999, 46.7878283 ], + [ 8.0900737, 46.7881131 ], + [ 8.0934938, 46.7882751 ], + [ 8.0969216, 46.7883138 ], + [ 8.1003476, 46.7882292 ], + [ 8.1037625, 46.7880214 ], + [ 8.128947, 46.7860281 ], + [ 8.132341, 46.785697 ], + [ 8.1357051, 46.7852442 ], + [ 8.13903, 46.784671 ], + [ 8.1423066, 46.783979 ], + [ 8.145525899999999, 46.78317 ], + [ 8.1486791, 46.7822463 ], + [ 8.1517574, 46.7812105 ], + [ 8.1547525, 46.7800653 ], + [ 8.1576561, 46.7788139 ], + [ 8.1604602, 46.7774598 ], + [ 8.1631572, 46.7760066 ], + [ 8.1657396, 46.7744584 ], + [ 8.1682005, 46.7728195 ], + [ 8.1705329, 46.7710942 ], + [ 8.1727306, 46.7692874 ], + [ 8.1747875, 46.767404 ], + [ 8.176698, 46.7654491 ], + [ 8.1784568, 46.7634282 ], + [ 8.1800592, 46.7613469 ], + [ 8.1815008, 46.7592107 ], + [ 8.1827776, 46.7570255 ], + [ 8.1838861, 46.7547975 ], + [ 8.1848234, 46.7525326 ], + [ 8.1855869, 46.7502371 ], + [ 8.1861744, 46.7479172 ], + [ 8.1865845, 46.7455794 ], + [ 8.1868161, 46.7432301 ], + [ 8.1868684, 46.7408756 ], + [ 8.1867414, 46.7385225 ], + [ 8.1864355, 46.7361772 ], + [ 8.1859515, 46.7338461 ], + [ 8.1852907, 46.7315356 ], + [ 8.1844551, 46.729252 ], + [ 8.1834469, 46.7270016 ], + [ 8.1822689, 46.7247906 ], + [ 8.1809244, 46.722625 ], + [ 8.1794169, 46.7205108 ], + [ 8.1777508, 46.7184536 ], + [ 8.1759306, 46.7164593 ], + [ 8.1739612, 46.7145331 ], + [ 8.1718481, 46.7126805 ], + [ 8.1695971, 46.7109064 ], + [ 8.1672143, 46.7092157 ], + [ 8.1647063, 46.707613 ], + [ 8.16208, 46.7061028 ], + [ 8.1593424, 46.7046892 ], + [ 8.1565013, 46.703376 ], + [ 8.1535643, 46.7021668 ], + [ 8.1505394, 46.7010649 ], + [ 8.1474349, 46.7000733 ], + [ 8.1442595, 46.6991948 ], + [ 8.1410216, 46.6984318 ], + [ 8.1377302, 46.6977863 ], + [ 8.1343942, 46.6972601 ], + [ 8.1310229, 46.6968547 ], + [ 8.1276254, 46.6965711 ], + [ 8.124211, 46.6964101 ], + [ 8.120789, 46.6963722 ], + [ 8.1173689, 46.6964574 ], + [ 8.1139599, 46.6966657 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSMM-01", + "country" : "CHE", + "name" : [ + { + "text" : "LSMM Meiringen", + "lang" : "de-CH" + }, + { + "text" : "LSMM Meiringen", + "lang" : "fr-CH" + }, + { + "text" : "LSMM Meiringen", + "lang" : "it-CH" + }, + { + "text" : "LSMM Meiringen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Special Flight Office (SFO)", + "lang" : "de-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "fr-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "it-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "en-GB" + } + ], + "siteURL" : "https://skyguide.ch/services/special-flights", + "email" : "specialflight@skyguide.ch", + "phone" : "0041439316236", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 5.9662517, 46.1392252 ], + [ 5.9658548, 46.1399095 ], + [ 5.9661209, 46.1402467 ], + [ 5.9670065999999995, 46.1408257 ], + [ 5.9670955, 46.1408677 ], + [ 5.9684892, 46.1412787 ], + [ 5.9700031, 46.1412878 ], + [ 5.9701497, 46.1412466 ], + [ 5.9702363, 46.1418797 ], + [ 5.9709022, 46.142753 ], + [ 5.9709129999999995, 46.1428526 ], + [ 5.9714441, 46.1436895 ], + [ 5.9716585, 46.1438476 ], + [ 5.971709, 46.1439284 ], + [ 5.9726372, 46.1446084 ], + [ 5.9738441, 46.1450267 ], + [ 5.975184, 46.1451328 ], + [ 5.9759268, 46.1451012 ], + [ 5.9766856, 46.1452511 ], + [ 5.9774977, 46.1453187 ], + [ 5.9788362, 46.1457953 ], + [ 5.9798541, 46.1460409 ], + [ 5.9809299, 46.1460826 ], + [ 5.9819807, 46.1459172 ], + [ 5.9820975, 46.1458864 ], + [ 5.9822501, 46.1458812 ], + [ 5.9822494, 46.1458877 ], + [ 5.9825403, 46.1467127 ], + [ 5.9825536, 46.1467346 ], + [ 5.9834014, 46.147606 ], + [ 5.9846642, 46.1481859 ], + [ 5.98615, 46.1483861 ], + [ 5.9864265, 46.148347 ], + [ 5.9876643, 46.1482964 ], + [ 5.9890266, 46.1478376 ], + [ 5.990033, 46.1470516 ], + [ 5.9905304, 46.1460579 ], + [ 5.9905381, 46.1460196 ], + [ 5.9904506, 46.1449685 ], + [ 5.9897911, 46.1440205 ], + [ 5.9892205, 46.1436672 ], + [ 5.9891657, 46.1436951 ], + [ 5.9891290999999995, 46.1437474 ], + [ 5.9889794, 46.1438392 ], + [ 5.9889322, 46.1438419 ], + [ 5.9888638, 46.1438249 ], + [ 5.9888015, 46.1437812 ], + [ 5.9887407, 46.1436268 ], + [ 5.9886669, 46.1434852 ], + [ 5.988635, 46.1433805 ], + [ 5.9885839999999995, 46.1433048 ], + [ 5.9885757, 46.1432998 ], + [ 5.9884571, 46.1432711 ], + [ 5.9883941, 46.1432719 ], + [ 5.9882532, 46.1432943 ], + [ 5.9881174999999995, 46.1433278 ], + [ 5.9880005, 46.1433233 ], + [ 5.9878992, 46.1432878 ], + [ 5.9878397, 46.1431818 ], + [ 5.9877731999999995, 46.1431056 ], + [ 5.9872294, 46.142974 ], + [ 5.9871652, 46.1429678 ], + [ 5.9864289, 46.1429973 ], + [ 5.9864157, 46.1429955 ], + [ 5.9864223, 46.1429147 ], + [ 5.9863878, 46.1429094 ], + [ 5.9862643, 46.1428301 ], + [ 5.9861602, 46.1428059 ], + [ 5.9859534, 46.1428716 ], + [ 5.9857523, 46.1430684 ], + [ 5.9856099, 46.1432989 ], + [ 5.9855377999999995, 46.143368 ], + [ 5.9854807999999995, 46.1434095 ], + [ 5.9854472, 46.1434057 ], + [ 5.9852045, 46.143391 ], + [ 5.9850703, 46.1433341 ], + [ 5.9849236, 46.1433596 ], + [ 5.9846796, 46.1432831 ], + [ 5.9840304, 46.1432022 ], + [ 5.983845, 46.1431579 ], + [ 5.9837046, 46.1430757 ], + [ 5.9835442, 46.1430112 ], + [ 5.9835033, 46.1429889 ], + [ 5.9834923, 46.1429267 ], + [ 5.983392, 46.1428069 ], + [ 5.9833293, 46.1427204 ], + [ 5.9832154, 46.142607 ], + [ 5.9831216, 46.1425438 ], + [ 5.9830125, 46.1425173 ], + [ 5.9829227, 46.1424723 ], + [ 5.9827615, 46.1424072 ], + [ 5.9824458, 46.1422907 ], + [ 5.9823366, 46.1415446 ], + [ 5.9829267999999995, 46.1413182 ], + [ 5.9828675, 46.1410117 ], + [ 5.9826057, 46.1404044 ], + [ 5.9822005, 46.1386924 ], + [ 5.9819289, 46.1374076 ], + [ 5.9807109, 46.1365025 ], + [ 5.9796989, 46.1366838 ], + [ 5.9795756, 46.1366482 ], + [ 5.9783401, 46.1365855 ], + [ 5.9782997, 46.1365926 ], + [ 5.9781036, 46.1365382 ], + [ 5.9771794, 46.1364482 ], + [ 5.9751427, 46.1364218 ], + [ 5.9738931, 46.1365484 ], + [ 5.9736716, 46.1366269 ], + [ 5.9736709, 46.1366008 ], + [ 5.9736653, 46.1365897 ], + [ 5.9736613, 46.1365212 ], + [ 5.9732377, 46.135728 ], + [ 5.9724816, 46.1350649 ], + [ 5.9724573, 46.1350493 ], + [ 5.9711835, 46.134507 ], + [ 5.9697096, 46.1343392 ], + [ 5.9682536, 46.1345707 ], + [ 5.9670311, 46.1351672 ], + [ 5.9669383, 46.1352344 ], + [ 5.9661227, 46.1361209 ], + [ 5.9660076, 46.1365694 ], + [ 5.9658806, 46.1368934 ], + [ 5.9658923999999995, 46.137018 ], + [ 5.9658568, 46.1371568 ], + [ 5.965859, 46.1371635 ], + [ 5.9658563000000004, 46.1371735 ], + [ 5.965874, 46.1372348 ], + [ 5.9658368, 46.1372894 ], + [ 5.9661668, 46.1377488 ], + [ 5.9661691, 46.1377521 ], + [ 5.9661714, 46.1377553 ], + [ 5.9661737, 46.1377585 ], + [ 5.966176, 46.1377617 ], + [ 5.9661782, 46.137765 ], + [ 5.9661805, 46.1377682 ], + [ 5.9661827, 46.1377714 ], + [ 5.966185, 46.1377746 ], + [ 5.9661872, 46.1377779 ], + [ 5.9661894, 46.1377811 ], + [ 5.9661916, 46.1377844 ], + [ 5.9661938, 46.1377876 ], + [ 5.966196, 46.1377909 ], + [ 5.9661982, 46.1377941 ], + [ 5.9662004, 46.1377974 ], + [ 5.9662025, 46.1378007 ], + [ 5.9662047, 46.1378039 ], + [ 5.9662068, 46.1378072 ], + [ 5.966209, 46.1378104 ], + [ 5.9662111, 46.1378137 ], + [ 5.9662132, 46.137817 ], + [ 5.9662153, 46.1378203 ], + [ 5.9662174, 46.1378236 ], + [ 5.9662195, 46.1378268 ], + [ 5.9662216, 46.1378301 ], + [ 5.9662237, 46.1378334 ], + [ 5.9662257, 46.1378367 ], + [ 5.9662278, 46.13784 ], + [ 5.9662298, 46.1378433 ], + [ 5.9662318, 46.1378466 ], + [ 5.9662339, 46.1378499 ], + [ 5.9662359, 46.1378532 ], + [ 5.9662379, 46.1378565 ], + [ 5.9662399, 46.1378598 ], + [ 5.9662419, 46.1378632 ], + [ 5.9662438, 46.1378665 ], + [ 5.9662458, 46.1378698 ], + [ 5.9662478, 46.1378731 ], + [ 5.9662497, 46.1378765 ], + [ 5.9662516, 46.1378798 ], + [ 5.9662536, 46.1378831 ], + [ 5.9662555, 46.1378864 ], + [ 5.9662574, 46.1378898 ], + [ 5.9662593, 46.1378931 ], + [ 5.9662612, 46.1378965 ], + [ 5.966263, 46.1378998 ], + [ 5.9662649, 46.1379032 ], + [ 5.9662668, 46.1379065 ], + [ 5.9662686, 46.1379099 ], + [ 5.9662705, 46.1379132 ], + [ 5.9662723, 46.1379166 ], + [ 5.9662741, 46.1379199 ], + [ 5.9662759, 46.1379233 ], + [ 5.9662777, 46.1379267 ], + [ 5.9662795, 46.13793 ], + [ 5.9662813, 46.1379334 ], + [ 5.9662831, 46.1379368 ], + [ 5.9662849, 46.1379402 ], + [ 5.9662866, 46.1379435 ], + [ 5.9662883, 46.1379469 ], + [ 5.9662901, 46.1379503 ], + [ 5.9662918, 46.1379537 ], + [ 5.9662935, 46.1379571 ], + [ 5.9662952, 46.1379604 ], + [ 5.9662969, 46.1379638 ], + [ 5.9662986, 46.1379672 ], + [ 5.9663003, 46.1379706 ], + [ 5.9663018999999995, 46.137974 ], + [ 5.9663036, 46.1379774 ], + [ 5.9663052, 46.1379808 ], + [ 5.9663069, 46.1379842 ], + [ 5.9663085, 46.1379877 ], + [ 5.9663101, 46.1379911 ], + [ 5.9663117, 46.1379945 ], + [ 5.9663132999999995, 46.1379979 ], + [ 5.9663149, 46.1380013 ], + [ 5.9663165, 46.1380047 ], + [ 5.9663181, 46.1380081 ], + [ 5.9663196, 46.1380116 ], + [ 5.9663212, 46.138015 ], + [ 5.9663227, 46.1380184 ], + [ 5.9663242, 46.1380219 ], + [ 5.9663258, 46.1380253 ], + [ 5.9663273, 46.1380287 ], + [ 5.9663288, 46.1380322 ], + [ 5.9663302, 46.1380356 ], + [ 5.9663317, 46.138039 ], + [ 5.9663332, 46.1380425 ], + [ 5.9663347, 46.1380459 ], + [ 5.9663360999999995, 46.1380494 ], + [ 5.9663375, 46.1380528 ], + [ 5.966339, 46.1380563 ], + [ 5.9663404, 46.1380597 ], + [ 5.9663418, 46.1380632 ], + [ 5.9663432, 46.1380666 ], + [ 5.9663446, 46.1380701 ], + [ 5.966346, 46.1380736 ], + [ 5.9663474, 46.138077 ], + [ 5.9663487, 46.1380805 ], + [ 5.9663501, 46.1380839 ], + [ 5.9663514, 46.1380874 ], + [ 5.9663527, 46.1380909 ], + [ 5.9663541, 46.1380944 ], + [ 5.9663554, 46.1380978 ], + [ 5.9663567, 46.1381013 ], + [ 5.966358, 46.1381048 ], + [ 5.9663592, 46.1381083 ], + [ 5.9663605, 46.1381117 ], + [ 5.9663618, 46.1381152 ], + [ 5.966363, 46.1381187 ], + [ 5.9663643, 46.1381222 ], + [ 5.9663655, 46.1381257 ], + [ 5.9663667, 46.1381292 ], + [ 5.9663679, 46.1381327 ], + [ 5.9663691, 46.1381362 ], + [ 5.9663702999999995, 46.1381396 ], + [ 5.9663715, 46.1381431 ], + [ 5.9663727, 46.1381466 ], + [ 5.9663737999999995, 46.1381501 ], + [ 5.966375, 46.1381536 ], + [ 5.9663761, 46.1381571 ], + [ 5.9663772, 46.1381606 ], + [ 5.9663784, 46.1381642 ], + [ 5.9663795, 46.1381677 ], + [ 5.9663806, 46.1381712 ], + [ 5.9663817, 46.1381747 ], + [ 5.9663827, 46.1381782 ], + [ 5.9663838, 46.1381817 ], + [ 5.9663848999999995, 46.1381852 ], + [ 5.9663859, 46.1381887 ], + [ 5.966387, 46.1381923 ], + [ 5.966388, 46.1381958 ], + [ 5.9663889999999995, 46.1381993 ], + [ 5.9663900000000005, 46.1382028 ], + [ 5.966391, 46.1382063 ], + [ 5.966392, 46.1382099 ], + [ 5.966393, 46.1382134 ], + [ 5.966394, 46.1382169 ], + [ 5.9663949, 46.1382204 ], + [ 5.9663959, 46.138224 ], + [ 5.9663968, 46.1382275 ], + [ 5.9663977, 46.138231 ], + [ 5.9663986, 46.1382346 ], + [ 5.9663996, 46.1382381 ], + [ 5.9664005, 46.1382416 ], + [ 5.9664013, 46.1382452 ], + [ 5.9664022, 46.1382487 ], + [ 5.9664031, 46.1382523 ], + [ 5.9664038999999995, 46.1382558 ], + [ 5.9664048, 46.1382593 ], + [ 5.9664056, 46.1382629 ], + [ 5.9664065, 46.1382664 ], + [ 5.9664073, 46.13827 ], + [ 5.9664081, 46.1382735 ], + [ 5.9664089, 46.1382771 ], + [ 5.9664097, 46.1382806 ], + [ 5.9664104, 46.1382842 ], + [ 5.9664112, 46.1382877 ], + [ 5.966412, 46.1382913 ], + [ 5.9664127, 46.1382948 ], + [ 5.9664134, 46.1382984 ], + [ 5.9664142, 46.1383019 ], + [ 5.9664149, 46.1383055 ], + [ 5.9664155999999995, 46.1383091 ], + [ 5.9664163, 46.1383126 ], + [ 5.966417, 46.1383162 ], + [ 5.9664176, 46.1383197 ], + [ 5.9664183, 46.1383233 ], + [ 5.9664189, 46.1383269 ], + [ 5.9664196, 46.1383304 ], + [ 5.9664202, 46.138334 ], + [ 5.9664208, 46.1383375 ], + [ 5.9664215, 46.1383411 ], + [ 5.9664221, 46.1383447 ], + [ 5.9664226, 46.1383482 ], + [ 5.9664231999999995, 46.1383518 ], + [ 5.9664238, 46.1383554 ], + [ 5.9664244, 46.1383589 ], + [ 5.9664249, 46.1383625 ], + [ 5.9664255, 46.1383661 ], + [ 5.966426, 46.1383697 ], + [ 5.9664265, 46.1383732 ], + [ 5.9664269999999995, 46.1383768 ], + [ 5.9664275, 46.1383804 ], + [ 5.966428, 46.138384 ], + [ 5.9664285, 46.1383875 ], + [ 5.966429, 46.1383911 ], + [ 5.9664294, 46.1383947 ], + [ 5.9664299, 46.1383983 ], + [ 5.9664303, 46.1384018 ], + [ 5.9664307, 46.1384054 ], + [ 5.9664311, 46.138409 ], + [ 5.9664315, 46.1384126 ], + [ 5.9664319, 46.1384162 ], + [ 5.9664323, 46.1384197 ], + [ 5.9664327, 46.1384233 ], + [ 5.9664331, 46.1384269 ], + [ 5.9664334, 46.1384305 ], + [ 5.9664338, 46.1384341 ], + [ 5.9664341, 46.1384377 ], + [ 5.9664344, 46.1384412 ], + [ 5.9664348, 46.1384448 ], + [ 5.9664351, 46.1384484 ], + [ 5.9664353, 46.138452 ], + [ 5.9664356, 46.1384556 ], + [ 5.9664359, 46.1384592 ], + [ 5.9664362, 46.1384627 ], + [ 5.9664364, 46.1384663 ], + [ 5.9664367, 46.1384699 ], + [ 5.9664369, 46.1384735 ], + [ 5.9664371, 46.1384771 ], + [ 5.9664373, 46.1384807 ], + [ 5.9664375, 46.1384843 ], + [ 5.9664377, 46.1384879 ], + [ 5.9664379, 46.1384914 ], + [ 5.9664380999999995, 46.138495 ], + [ 5.9664382, 46.1384986 ], + [ 5.9664383999999995, 46.1385022 ], + [ 5.9664385, 46.1385058 ], + [ 5.9664386, 46.1385094 ], + [ 5.9664388, 46.138513 ], + [ 5.9664389, 46.1385166 ], + [ 5.966439, 46.1385202 ], + [ 5.9664391, 46.1385238 ], + [ 5.9664391, 46.1385274 ], + [ 5.9664392, 46.1385309 ], + [ 5.9664393, 46.1385345 ], + [ 5.9664393, 46.1385381 ], + [ 5.9664393, 46.1385417 ], + [ 5.9664394, 46.1385453 ], + [ 5.9664394, 46.1385489 ], + [ 5.9664394, 46.1385525 ], + [ 5.9664394, 46.1385561 ], + [ 5.9664394, 46.1385597 ], + [ 5.9664393, 46.1385633 ], + [ 5.9664393, 46.1385669 ], + [ 5.9664393, 46.1385704 ], + [ 5.9664392, 46.138574 ], + [ 5.9664391, 46.1385776 ], + [ 5.9664391, 46.1385812 ], + [ 5.966439, 46.1385848 ], + [ 5.9664389, 46.1385884 ], + [ 5.9664388, 46.138592 ], + [ 5.9664386, 46.1385956 ], + [ 5.9664385, 46.1385992 ], + [ 5.9664383999999995, 46.1386027 ], + [ 5.9664382, 46.1386063 ], + [ 5.9664380999999995, 46.1386099 ], + [ 5.9664379, 46.1386135 ], + [ 5.9664377, 46.1386171 ], + [ 5.9664375, 46.1386207 ], + [ 5.9664373, 46.1386243 ], + [ 5.9664371, 46.1386279 ], + [ 5.9664369, 46.1386315 ], + [ 5.9664367, 46.138635 ], + [ 5.9664364, 46.1386386 ], + [ 5.9664362, 46.1386422 ], + [ 5.9664359, 46.1386458 ], + [ 5.9664356, 46.1386494 ], + [ 5.9664353, 46.138653 ], + [ 5.9664351, 46.1386566 ], + [ 5.9664348, 46.1386601 ], + [ 5.9664344, 46.1386637 ], + [ 5.9664341, 46.1386673 ], + [ 5.9664338, 46.1386709 ], + [ 5.9664334, 46.1386745 ], + [ 5.9664331, 46.1386781 ], + [ 5.9664327, 46.1386816 ], + [ 5.9664323, 46.1386852 ], + [ 5.966432, 46.1386888 ], + [ 5.9664316, 46.1386924 ], + [ 5.9664311, 46.138696 ], + [ 5.9664307, 46.1386995 ], + [ 5.9664303, 46.1387031 ], + [ 5.9664299, 46.1387067 ], + [ 5.9664294, 46.1387103 ], + [ 5.966429, 46.1387139 ], + [ 5.9664285, 46.1387174 ], + [ 5.966428, 46.138721 ], + [ 5.9664275, 46.1387246 ], + [ 5.9664269999999995, 46.1387282 ], + [ 5.9664265, 46.1387317 ], + [ 5.966426, 46.1387353 ], + [ 5.9664255, 46.1387389 ], + [ 5.9664249, 46.1387424 ], + [ 5.9664244, 46.138746 ], + [ 5.9664238, 46.1387496 ], + [ 5.9664231999999995, 46.1387532 ], + [ 5.9664227, 46.1387567 ], + [ 5.9664221, 46.1387603 ], + [ 5.9664215, 46.1387639 ], + [ 5.9664209, 46.1387674 ], + [ 5.9664202, 46.138771 ], + [ 5.9664196, 46.1387746 ], + [ 5.966419, 46.1387781 ], + [ 5.9664183, 46.1387817 ], + [ 5.9664177, 46.1387852 ], + [ 5.966417, 46.1387888 ], + [ 5.9664163, 46.1387924 ], + [ 5.9664155999999995, 46.1387959 ], + [ 5.9664149, 46.1387995 ], + [ 5.9664142, 46.138803 ], + [ 5.9664135, 46.1388066 ], + [ 5.9664127, 46.1388101 ], + [ 5.966412, 46.1388137 ], + [ 5.9664112, 46.1388173 ], + [ 5.9664105, 46.1388208 ], + [ 5.9664097, 46.1388243 ], + [ 5.9664089, 46.1388279 ], + [ 5.9664081, 46.1388314 ], + [ 5.9664073, 46.138835 ], + [ 5.9664065, 46.1388385 ], + [ 5.9664057, 46.1388421 ], + [ 5.9664048, 46.1388456 ], + [ 5.966404, 46.1388492 ], + [ 5.9664031, 46.1388527 ], + [ 5.9664022, 46.1388563 ], + [ 5.9664014, 46.1388598 ], + [ 5.9664005, 46.1388633 ], + [ 5.9663996, 46.1388669 ], + [ 5.9663987, 46.1388704 ], + [ 5.9663978, 46.1388739 ], + [ 5.9663968, 46.1388775 ], + [ 5.9663959, 46.138881 ], + [ 5.9663949, 46.1388845 ], + [ 5.966394, 46.1388881 ], + [ 5.966393, 46.1388916 ], + [ 5.966392, 46.1388951 ], + [ 5.966391, 46.1388986 ], + [ 5.9663901, 46.1389022 ], + [ 5.9663889999999995, 46.1389057 ], + [ 5.966388, 46.1389092 ], + [ 5.966387, 46.1389127 ], + [ 5.966386, 46.1389162 ], + [ 5.9663848999999995, 46.1389198 ], + [ 5.9663838, 46.1389233 ], + [ 5.9663828, 46.1389268 ], + [ 5.9663817, 46.1389303 ], + [ 5.9663806, 46.1389338 ], + [ 5.9663795, 46.1389373 ], + [ 5.9663784, 46.1389408 ], + [ 5.9663772999999996, 46.1389443 ], + [ 5.9663762, 46.1389478 ], + [ 5.966375, 46.1389513 ], + [ 5.9663739, 46.1389548 ], + [ 5.9663727, 46.1389583 ], + [ 5.9663715, 46.1389618 ], + [ 5.9663702999999995, 46.1389653 ], + [ 5.9663692, 46.1389688 ], + [ 5.966368, 46.1389723 ], + [ 5.9663667, 46.1389758 ], + [ 5.9663655, 46.1389793 ], + [ 5.9663643, 46.1389828 ], + [ 5.9663631, 46.1389863 ], + [ 5.9663618, 46.1389897 ], + [ 5.9663605, 46.1389932 ], + [ 5.9663593, 46.1389967 ], + [ 5.966358, 46.1390002 ], + [ 5.9663567, 46.1390037 ], + [ 5.9663554, 46.1390071 ], + [ 5.9663541, 46.1390106 ], + [ 5.9663528, 46.1390141 ], + [ 5.9663514, 46.1390176 ], + [ 5.9663501, 46.139021 ], + [ 5.9663487, 46.1390245 ], + [ 5.9663474, 46.139028 ], + [ 5.966346, 46.1390314 ], + [ 5.9663446, 46.1390349 ], + [ 5.9663432, 46.1390383 ], + [ 5.9663418, 46.1390418 ], + [ 5.9663404, 46.1390453 ], + [ 5.966339, 46.1390487 ], + [ 5.9663376, 46.1390522 ], + [ 5.9663362, 46.1390556 ], + [ 5.9663347, 46.1390591 ], + [ 5.9663333, 46.1390625 ], + [ 5.9663318, 46.1390659 ], + [ 5.9663303, 46.1390694 ], + [ 5.9663288, 46.1390728 ], + [ 5.9663273, 46.1390762 ], + [ 5.9663258, 46.1390797 ], + [ 5.9663243, 46.1390831 ], + [ 5.9663228, 46.1390866 ], + [ 5.9663212, 46.13909 ], + [ 5.9663197, 46.1390934 ], + [ 5.9663181, 46.1390968 ], + [ 5.9663165, 46.1391002 ], + [ 5.966315, 46.1391037 ], + [ 5.9663134, 46.1391071 ], + [ 5.9663118, 46.1391105 ], + [ 5.9663102, 46.1391139 ], + [ 5.9663086, 46.1391173 ], + [ 5.9663069, 46.1391207 ], + [ 5.9663053, 46.1391241 ], + [ 5.9663037, 46.1391275 ], + [ 5.966302, 46.1391309 ], + [ 5.9663003, 46.1391343 ], + [ 5.9662987, 46.1391377 ], + [ 5.966297, 46.1391411 ], + [ 5.9662953, 46.1391445 ], + [ 5.9662936, 46.1391479 ], + [ 5.9662919, 46.1391513 ], + [ 5.9662901, 46.1391547 ], + [ 5.9662884, 46.1391581 ], + [ 5.9662866, 46.1391614 ], + [ 5.9662849, 46.1391648 ], + [ 5.9662831, 46.1391682 ], + [ 5.9662814, 46.1391716 ], + [ 5.9662796, 46.1391749 ], + [ 5.9662778, 46.1391783 ], + [ 5.966276, 46.1391817 ], + [ 5.9662742, 46.139185 ], + [ 5.9662724, 46.1391884 ], + [ 5.9662705, 46.1391918 ], + [ 5.9662687, 46.1391951 ], + [ 5.9662668, 46.1391985 ], + [ 5.966265, 46.1392018 ], + [ 5.9662631, 46.1392052 ], + [ 5.9662612, 46.1392085 ], + [ 5.9662593, 46.1392119 ], + [ 5.9662574, 46.1392152 ], + [ 5.9662555, 46.1392185 ], + [ 5.9662536, 46.1392219 ], + [ 5.9662517, 46.1392252 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-6", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.4947061999999995, 46.8160666 ], + [ 6.4944491, 46.8160702 ], + [ 6.4941928, 46.8160854 ], + [ 6.4939385, 46.8161121 ], + [ 6.4936873, 46.8161501 ], + [ 6.4934403, 46.8161993 ], + [ 6.4931984, 46.8162595 ], + [ 6.4929629, 46.8163305 ], + [ 6.4927346, 46.8164118 ], + [ 6.4925145, 46.8165033 ], + [ 6.4923036, 46.8166044 ], + [ 6.4921028, 46.8167148 ], + [ 6.4919129, 46.8168339 ], + [ 6.4917348, 46.8169613 ], + [ 6.4915692, 46.8170965 ], + [ 6.4914169, 46.8172388 ], + [ 6.4912784, 46.8173876 ], + [ 6.4911544, 46.8175423 ], + [ 6.4910454, 46.8177023 ], + [ 6.4910361, 46.8177174 ], + [ 6.49098, 46.8178088 ], + [ 6.4908958, 46.8179582 ], + [ 6.4908182, 46.8181265 ], + [ 6.4907567, 46.818298 ], + [ 6.4907118, 46.8184719 ], + [ 6.4906835, 46.8186474 ], + [ 6.4906719, 46.8188238 ], + [ 6.4906772, 46.8190003 ], + [ 6.4906993, 46.8191763 ], + [ 6.4907382, 46.8193509 ], + [ 6.4907936, 46.8195233 ], + [ 6.4908653, 46.8196929 ], + [ 6.490953, 46.8198589 ], + [ 6.4910563, 46.8200206 ], + [ 6.4911748, 46.8201774 ], + [ 6.491308, 46.8203285 ], + [ 6.4914553, 46.8204732 ], + [ 6.4916161, 46.8206111 ], + [ 6.4917897, 46.8207414 ], + [ 6.4919753, 46.8208637 ], + [ 6.4921721, 46.8209774 ], + [ 6.4923794, 46.8210819 ], + [ 6.4925962, 46.821177 ], + [ 6.4928216, 46.8212621 ], + [ 6.4930547, 46.8213369 ], + [ 6.4930597, 46.8213384 ], + [ 6.4931928, 46.8213774 ], + [ 6.4934275, 46.8214401 ], + [ 6.4936727, 46.8214934 ], + [ 6.4939225, 46.8215356 ], + [ 6.4941758, 46.8215665 ], + [ 6.4944315, 46.8215859 ], + [ 6.4946885, 46.8215938 ], + [ 6.4949457, 46.8215901 ], + [ 6.4952021, 46.821575 ], + [ 6.4954564, 46.8215483 ], + [ 6.4957076, 46.8215103 ], + [ 6.4959547, 46.821461 ], + [ 6.4961965, 46.8214008 ], + [ 6.4964321, 46.8213299 ], + [ 6.4966604, 46.8212485 ], + [ 6.4968805, 46.8211571 ], + [ 6.4970914, 46.821056 ], + [ 6.4972922, 46.8209456 ], + [ 6.4974821, 46.8208264 ], + [ 6.4976602, 46.820699 ], + [ 6.4978257, 46.8205638 ], + [ 6.4979781, 46.8204215 ], + [ 6.4981165, 46.8202727 ], + [ 6.4982405, 46.820118 ], + [ 6.4983403, 46.8199727 ], + [ 6.4983985, 46.8198809 ], + [ 6.4984078, 46.8198661 ], + [ 6.4985013, 46.8197016 ], + [ 6.4985789, 46.8195333 ], + [ 6.4986403, 46.8193618 ], + [ 6.4986853, 46.8191879 ], + [ 6.4987136, 46.8190124 ], + [ 6.4987251, 46.818836 ], + [ 6.4987197, 46.8186594 ], + [ 6.4986976, 46.8184835 ], + [ 6.4986587, 46.8183089 ], + [ 6.4986033, 46.8181365 ], + [ 6.4985316, 46.8179669 ], + [ 6.4984439, 46.8178009 ], + [ 6.4983406, 46.8176391 ], + [ 6.498222, 46.8174824 ], + [ 6.4980888, 46.8173313 ], + [ 6.4979415, 46.8171866 ], + [ 6.4977807, 46.8170487 ], + [ 6.4976071, 46.8169184 ], + [ 6.4974215, 46.8167962 ], + [ 6.4972246, 46.8166825 ], + [ 6.4970174, 46.8165779 ], + [ 6.4968006, 46.8164829 ], + [ 6.4965752, 46.8163978 ], + [ 6.4963422, 46.8163229 ], + [ 6.4962997, 46.8163107 ], + [ 6.4961644, 46.8162721 ], + [ 6.4959672, 46.8162202 ], + [ 6.495722, 46.816167 ], + [ 6.4954722, 46.8161248 ], + [ 6.4952189, 46.8160939 ], + [ 6.4949632, 46.8160745 ], + [ 6.4947061999999995, 46.8160666 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00036", + "country" : "CHE", + "name" : [ + { + "text" : "Hôpital régional RSBJ Ste-Croix", + "lang" : "de-CH" + }, + { + "text" : "Hôpital régional RSBJ Ste-Croix", + "lang" : "fr-CH" + }, + { + "text" : "Hôpital régional RSBJ Ste-Croix", + "lang" : "it-CH" + }, + { + "text" : "Hôpital régional RSBJ Ste-Croix", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kantonspolizei Waadt", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale vaudoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Vaud", + "lang" : "it-CH" + }, + { + "text" : "Vaud Cantonal Police", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.pcv@vd.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.2106537, 46.3673683 ], + [ 7.2106801, 46.3673667 ], + [ 7.2109114, 46.3673344 ], + [ 7.2111367, 46.3672728 ], + [ 7.2111774, 46.3672518 ], + [ 7.2111985, 46.3672336 ], + [ 7.2112058, 46.3672215 ], + [ 7.21121, 46.3671748 ], + [ 7.2111458, 46.3670118 ], + [ 7.2110256, 46.366838 ], + [ 7.210528, 46.3662162 ], + [ 7.2105163, 46.3662 ], + [ 7.210275, 46.36581 ], + [ 7.2102621, 46.3657821 ], + [ 7.2101414, 46.3654364 ], + [ 7.2101338, 46.3654004 ], + [ 7.2101220999999995, 46.3650784 ], + [ 7.2101725, 46.364859 ], + [ 7.210179, 46.364841 ], + [ 7.2099963, 46.3644205 ], + [ 7.208991, 46.3639948 ], + [ 7.2075705, 46.3637643 ], + [ 7.2069381, 46.3633546 ], + [ 7.2039226, 46.3629697 ], + [ 7.2007308, 46.3627813 ], + [ 7.1952919, 46.3624449 ], + [ 7.1945702, 46.3637135 ], + [ 7.1940175, 46.3643843 ], + [ 7.194589, 46.3644332 ], + [ 7.1965198, 46.3653388 ], + [ 7.1966829, 46.365483 ], + [ 7.1967585, 46.3657252 ], + [ 7.1970429, 46.3657636 ], + [ 7.1971513, 46.365923 ], + [ 7.197535, 46.3658555 ], + [ 7.1976434, 46.3660068 ], + [ 7.1978942, 46.3660074 ], + [ 7.1980585, 46.3661741 ], + [ 7.1986255, 46.3663724 ], + [ 7.198767, 46.3666911 ], + [ 7.1989958, 46.3666835 ], + [ 7.1994298, 46.3669705 ], + [ 7.1999574, 46.3669716 ], + [ 7.2007767, 46.3668276 ], + [ 7.201319, 46.366737 ], + [ 7.2035804, 46.3660652 ], + [ 7.2046423, 46.3657076 ], + [ 7.2047801, 46.3656935 ], + [ 7.2070177, 46.3657071 ], + [ 7.2091447, 46.3666821 ], + [ 7.2104107, 46.3672073 ], + [ 7.2106537, 46.3673683 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00012", + "country" : "CHE", + "name" : [ + { + "text" : "La Palette", + "lang" : "de-CH" + }, + { + "text" : "La Palette", + "lang" : "fr-CH" + }, + { + "text" : "La Palette", + "lang" : "it-CH" + }, + { + "text" : "La Palette", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "startDateTime" : "2024-11-15T00:00:00+01:00", + "endDateTime" : "2025-04-15T00:00:00+02:00" + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Generaldirektion für Umwelt", + "lang" : "de-CH" + }, + { + "text" : "Direction générale de l'environnement", + "lang" : "fr-CH" + }, + { + "text" : "Direzione generale dell'Ambiente", + "lang" : "it-CH" + }, + { + "text" : "Environment Department", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.dge@vd.ch", + "phone" : "0041213164422", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.1854249, 46.3752941 ], + [ 7.1854289, 46.3752904 ], + [ 7.1854442, 46.3752788 ], + [ 7.1854607999999995, 46.3752681 ], + [ 7.1854787, 46.3752585 ], + [ 7.1854978, 46.37525 ], + [ 7.1855178, 46.3752427 ], + [ 7.1855387, 46.3752366 ], + [ 7.1863519, 46.3750282 ], + [ 7.1863584, 46.3750266 ], + [ 7.1863649, 46.3750252 ], + [ 7.1863716, 46.3750238 ], + [ 7.1868489, 46.3749307 ], + [ 7.1868543, 46.3749296 ], + [ 7.1868598, 46.3749287 ], + [ 7.1868653, 46.3749278 ], + [ 7.1871929, 46.3748796 ], + [ 7.1872014, 46.3748785 ], + [ 7.1872099, 46.3748775 ], + [ 7.1872184, 46.3748768 ], + [ 7.1877387, 46.3748369 ], + [ 7.1877506, 46.3748361 ], + [ 7.1877625, 46.3748358 ], + [ 7.1877744, 46.3748358 ], + [ 7.1882506, 46.3748449 ], + [ 7.1882688, 46.3748457 ], + [ 7.188287, 46.3748473 ], + [ 7.1883049, 46.3748499 ], + [ 7.1886307, 46.3749047 ], + [ 7.1886515, 46.3749088 ], + [ 7.1886718, 46.3749142 ], + [ 7.1886913, 46.3749207 ], + [ 7.1889739, 46.3750246 ], + [ 7.1889888, 46.3750305 ], + [ 7.1890032, 46.3750372 ], + [ 7.1890169, 46.3750445 ], + [ 7.1894294, 46.3752791 ], + [ 7.1894362, 46.3752831 ], + [ 7.1894428, 46.3752873 ], + [ 7.1894492, 46.3752916 ], + [ 7.1900533, 46.3757142 ], + [ 7.1900583, 46.3757177 ], + [ 7.1900631, 46.3757214 ], + [ 7.1900678, 46.3757251 ], + [ 7.1911541, 46.3766223 ], + [ 7.191447, 46.3768362 ], + [ 7.1915568, 46.3768936 ], + [ 7.1915118, 46.3755632 ], + [ 7.1914465, 46.375071 ], + [ 7.1912185, 46.3734881 ], + [ 7.1908014, 46.3720515 ], + [ 7.1896634, 46.3708076 ], + [ 7.1882998, 46.3694939 ], + [ 7.1868265, 46.3691398 ], + [ 7.1817131, 46.3690824 ], + [ 7.1785351, 46.3697471 ], + [ 7.1762832, 46.3705047 ], + [ 7.1739247, 46.3704686 ], + [ 7.1729983, 46.3701642 ], + [ 7.1721342, 46.3698674 ], + [ 7.1711656, 46.3698 ], + [ 7.1707076, 46.3697881 ], + [ 7.1703034, 46.3697989 ], + [ 7.1699673, 46.3698314 ], + [ 7.1696621, 46.3698967 ], + [ 7.1694921, 46.3699688 ], + [ 7.1694378, 46.3700079 ], + [ 7.1694035, 46.3700462 ], + [ 7.1693584, 46.3701499 ], + [ 7.1693479, 46.3702775 ], + [ 7.1694213, 46.3708713 ], + [ 7.1694215, 46.370873 ], + [ 7.1694217, 46.3708748 ], + [ 7.1694219, 46.3708765 ], + [ 7.1694767, 46.3715536 ], + [ 7.1695552, 46.3718672 ], + [ 7.1696251, 46.3720018 ], + [ 7.1696818, 46.3720765 ], + [ 7.1698492, 46.37222 ], + [ 7.1699539, 46.3722811 ], + [ 7.1701528, 46.3723702 ], + [ 7.1712806, 46.3728078 ], + [ 7.1720343, 46.3730181 ], + [ 7.1720443, 46.3730211 ], + [ 7.1720542, 46.3730244 ], + [ 7.1720639, 46.3730279 ], + [ 7.1723195, 46.3731268 ], + [ 7.1723367, 46.3731341 ], + [ 7.1723531, 46.3731422 ], + [ 7.1723685, 46.3731513 ], + [ 7.1725139, 46.3732436 ], + [ 7.1725278, 46.3732531 ], + [ 7.1725406, 46.3732633 ], + [ 7.1725522999999995, 46.3732742 ], + [ 7.1726693, 46.3733919 ], + [ 7.1726803, 46.373404 ], + [ 7.1726899, 46.3734167 ], + [ 7.1726981, 46.3734298 ], + [ 7.1727867, 46.3735908 ], + [ 7.1727918, 46.373601 ], + [ 7.172796, 46.3736114 ], + [ 7.1727993, 46.373622 ], + [ 7.1728406, 46.3737759 ], + [ 7.1728429, 46.3737861 ], + [ 7.1728443, 46.3737964 ], + [ 7.1728449, 46.3738067 ], + [ 7.1728505, 46.3741594 ], + [ 7.1728503, 46.3741684 ], + [ 7.1728495, 46.3741773 ], + [ 7.172848, 46.3741862 ], + [ 7.1727758, 46.3745454 ], + [ 7.1727744, 46.3745516 ], + [ 7.1727727, 46.3745578 ], + [ 7.1727706, 46.374564 ], + [ 7.1727616, 46.3745893 ], + [ 7.1770157, 46.3740921 ], + [ 7.1782266, 46.3744457 ], + [ 7.17846, 46.3745641 ], + [ 7.1785568, 46.3746235 ], + [ 7.1785653, 46.3746261 ], + [ 7.1785866, 46.3746343 ], + [ 7.1786066, 46.3746439 ], + [ 7.1787295, 46.3747086 ], + [ 7.1787464, 46.3747183 ], + [ 7.178762, 46.3747289 ], + [ 7.1787762, 46.3747404 ], + [ 7.1787891, 46.3747527 ], + [ 7.1788004, 46.3747657 ], + [ 7.1788997, 46.3748918 ], + [ 7.178909, 46.3749047 ], + [ 7.1789167, 46.374918 ], + [ 7.1789228, 46.3749318 ], + [ 7.1789247, 46.3749376 ], + [ 7.1789577, 46.3749746 ], + [ 7.1791021, 46.3752779 ], + [ 7.1792273, 46.3755302 ], + [ 7.1801525, 46.3771965 ], + [ 7.1845502, 46.3751006 ], + [ 7.1854249, 46.3752941 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00015", + "country" : "CHE", + "name" : [ + { + "text" : "La Chaux", + "lang" : "de-CH" + }, + { + "text" : "La Chaux", + "lang" : "fr-CH" + }, + { + "text" : "La Chaux", + "lang" : "it-CH" + }, + { + "text" : "La Chaux", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "startDateTime" : "2024-11-15T00:00:00+01:00", + "endDateTime" : "2025-04-15T00:00:00+02:00" + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Generaldirektion für Umwelt", + "lang" : "de-CH" + }, + { + "text" : "Direction générale de l'environnement", + "lang" : "fr-CH" + }, + { + "text" : "Direzione generale dell'Ambiente", + "lang" : "it-CH" + }, + { + "text" : "Environment Department", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.dge@vd.ch", + "phone" : "0041213164422", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.8591938, 47.4398371 ], + [ 8.8403335, 47.4002105 ], + [ 8.8023122, 47.3202338 ], + [ 8.7799335, 47.2731049 ], + [ 8.6058108, 47.2873519 ], + [ 8.5430472, 47.3668102 ], + [ 8.5408185, 47.3969707 ], + [ 8.6994191, 47.474106 ], + [ 8.8591938, 47.4398371 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 120, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "CTR0004", + "country" : "CHE", + "name" : [ + { + "text" : "CTR DUEBENDORF", + "lang" : "de-CH" + }, + { + "text" : "CTR DUEBENDORF", + "lang" : "fr-CH" + }, + { + "text" : "CTR DUEBENDORF", + "lang" : "it-CH" + }, + { + "text" : "CTR DUEBENDORF", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only permitted from an altitude of 120 m above ground with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Skyguide Special Flight Office", + "lang" : "de-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "it-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "en-GB" + } + ], + "siteURL" : "https://skyguide.ch/services/special-flights", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5481833, 47.5247473 ], + [ 7.5483145, 47.5248631 ], + [ 7.549008, 47.52547 ], + [ 7.5490619, 47.5254744 ], + [ 7.5496832, 47.5251126 ], + [ 7.5499206, 47.5249676 ], + [ 7.5501651, 47.5248106 ], + [ 7.5505297, 47.5245657 ], + [ 7.5496205, 47.5238767 ], + [ 7.5481833, 47.5247473 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns082", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Ziegelei Oberwil", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Ziegelei Oberwil", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Ziegelei Oberwil", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Ziegelei Oberwil", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.1297227, 46.7667194 ], + [ 7.1297181, 46.7665782 ], + [ 7.1297028000000005, 46.7664373 ], + [ 7.1296767, 46.7662971 ], + [ 7.1296401, 46.7661581 ], + [ 7.1295929, 46.7660206 ], + [ 7.1295352, 46.765885 ], + [ 7.1294674, 46.7657516 ], + [ 7.1293894, 46.7656209 ], + [ 7.1293017, 46.7654931 ], + [ 7.1292043, 46.7653687 ], + [ 7.1290975, 46.7652479 ], + [ 7.1289817, 46.7651312 ], + [ 7.1288572, 46.7650188 ], + [ 7.1287243, 46.764911 ], + [ 7.1285834, 46.7648081 ], + [ 7.1284348, 46.7647104 ], + [ 7.128279, 46.7646182 ], + [ 7.1281164, 46.7645318 ], + [ 7.1279474, 46.7644513 ], + [ 7.1277725, 46.764377 ], + [ 7.1275922, 46.7643091 ], + [ 7.127407, 46.7642478 ], + [ 7.1272174, 46.7641932 ], + [ 7.1270238, 46.7641455 ], + [ 7.1268269, 46.7641048 ], + [ 7.1266272, 46.7640713 ], + [ 7.1264252, 46.764045 ], + [ 7.1262215, 46.764026 ], + [ 7.1260166, 46.7640143 ], + [ 7.1258111, 46.7640101 ], + [ 7.1256055, 46.7640132 ], + [ 7.1254005, 46.7640237 ], + [ 7.1251965, 46.7640416 ], + [ 7.1249942, 46.7640668 ], + [ 7.1247941, 46.7640992 ], + [ 7.1245967, 46.7641388 ], + [ 7.1244027, 46.7641854 ], + [ 7.1242124, 46.764239 ], + [ 7.1240265, 46.7642993 ], + [ 7.1238454, 46.7643662 ], + [ 7.1236696, 46.7644395 ], + [ 7.1234997, 46.7645191 ], + [ 7.1233361, 46.7646047 ], + [ 7.1231792, 46.764696 ], + [ 7.1230295, 46.7647928 ], + [ 7.1228874, 46.7648949 ], + [ 7.1227532, 46.765002 ], + [ 7.1226274, 46.7651137 ], + [ 7.1225103, 46.7652298 ], + [ 7.1224021, 46.76535 ], + [ 7.1223033, 46.7654739 ], + [ 7.122214, 46.7656011 ], + [ 7.1221346, 46.7657315 ], + [ 7.1220651, 46.7658644 ], + [ 7.122006, 46.7659997 ], + [ 7.1219572, 46.766137 ], + [ 7.1219189, 46.7662758 ], + [ 7.1218912, 46.7664158 ], + [ 7.1218742, 46.7665566 ], + [ 7.121868, 46.7666978 ], + [ 7.1218726, 46.7668391 ], + [ 7.1218879, 46.76698 ], + [ 7.1219139, 46.7671201 ], + [ 7.1219505, 46.7672591 ], + [ 7.1219977, 46.7673966 ], + [ 7.1220553, 46.7675323 ], + [ 7.1221232, 46.7676656 ], + [ 7.1222011, 46.7677964 ], + [ 7.1222889, 46.7679242 ], + [ 7.1223862, 46.7680486 ], + [ 7.122493, 46.7681694 ], + [ 7.1226087, 46.7682861 ], + [ 7.1227332, 46.7683985 ], + [ 7.1228662, 46.7685063 ], + [ 7.1230071, 46.7686092 ], + [ 7.1231557, 46.7687069 ], + [ 7.1233115, 46.7687991 ], + [ 7.1234741, 46.7688855 ], + [ 7.1236431, 46.768966 ], + [ 7.123818, 46.7690403 ], + [ 7.1239983, 46.7691082 ], + [ 7.1241835, 46.7691696 ], + [ 7.1243732, 46.7692242 ], + [ 7.1245667, 46.7692719 ], + [ 7.1247636, 46.7693125 ], + [ 7.1249634, 46.7693461 ], + [ 7.1251654, 46.7693724 ], + [ 7.1253692, 46.7693914 ], + [ 7.1255741, 46.769403 ], + [ 7.1257795999999995, 46.7694073 ], + [ 7.1259852, 46.7694042 ], + [ 7.1261902, 46.7693936 ], + [ 7.1263942, 46.7693758 ], + [ 7.1265965, 46.7693506 ], + [ 7.1267967, 46.7693181 ], + [ 7.126994, 46.7692785 ], + [ 7.1271881, 46.7692319 ], + [ 7.1273784, 46.7691784 ], + [ 7.1275644, 46.7691181 ], + [ 7.1277455, 46.7690511 ], + [ 7.1279212, 46.7689778 ], + [ 7.1280911, 46.7688982 ], + [ 7.1282548, 46.7688127 ], + [ 7.1284116, 46.7687213 ], + [ 7.1285614, 46.7686245 ], + [ 7.1287035, 46.7685224 ], + [ 7.1288376, 46.7684153 ], + [ 7.1289635, 46.7683036 ], + [ 7.1290806, 46.7681875 ], + [ 7.1291887, 46.7680673 ], + [ 7.1292875, 46.7679434 ], + [ 7.1293768, 46.7678161 ], + [ 7.1294562, 46.7676858 ], + [ 7.1295256, 46.7675528 ], + [ 7.1295848, 46.7674175 ], + [ 7.1296336, 46.7672803 ], + [ 7.1296719, 46.7671414 ], + [ 7.1296995, 46.7670014 ], + [ 7.1297165, 46.7668606 ], + [ 7.1297227, 46.7667194 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0053", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Hauterive", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Hauterive", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Hauterive", + "lang" : "it-CH" + }, + { + "text" : "Substation Hauterive", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.1886977, 47.0702175 ], + [ 7.1896559, 47.0696022 ], + [ 7.1903284, 47.0691919 ], + [ 7.1906138, 47.0690382 ], + [ 7.1907154, 47.0689641 ], + [ 7.1905145, 47.0687978 ], + [ 7.1903309, 47.0686487 ], + [ 7.1901138, 47.0684596 ], + [ 7.1898887, 47.0681903 ], + [ 7.1897299, 47.0680183 ], + [ 7.1896559, 47.0678352 ], + [ 7.1896069, 47.0675779 ], + [ 7.1895741, 47.0673661 ], + [ 7.1894576, 47.0671257 ], + [ 7.1892327, 47.0668335 ], + [ 7.1890497, 47.066553 ], + [ 7.1888164, 47.066295 ], + [ 7.1886495, 47.0661003 ], + [ 7.1884907, 47.0659227 ], + [ 7.1883827, 47.0657909 ], + [ 7.188199, 47.0656647 ], + [ 7.1880152, 47.0655613 ], + [ 7.1878315, 47.065418 ], + [ 7.1876226, 47.0652401 ], + [ 7.1873975, 47.0649823 ], + [ 7.1871551, 47.0647531 ], + [ 7.1868797, 47.0645179 ], + [ 7.1864289, 47.0641624 ], + [ 7.1860115, 47.0638756 ], + [ 7.1856604, 47.0636574 ], + [ 7.1851919, 47.0633875 ], + [ 7.1848498, 47.0631808 ], + [ 7.1844073999999996, 47.0627853 ], + [ 7.1839975, 47.0624699 ], + [ 7.1837465, 47.0624749 ], + [ 7.1835527, 47.0625888 ], + [ 7.1833931, 47.0627485 ], + [ 7.1832164, 47.0628739 ], + [ 7.1830485, 47.0628964 ], + [ 7.1827317, 47.0625697 ], + [ 7.1824569, 47.062226 ], + [ 7.1821738, 47.0617164 ], + [ 7.1819328, 47.0613671 ], + [ 7.1817238, 47.0612007 ], + [ 7.1814817, 47.0610858 ], + [ 7.1812304, 47.0609937 ], + [ 7.1806516, 47.0610724 ], + [ 7.1798716, 47.0612591 ], + [ 7.1796031, 47.0613213 ], + [ 7.1791673, 47.0612803 ], + [ 7.1787321, 47.0612622 ], + [ 7.1786674, 47.0607073 ], + [ 7.1786695, 47.0602785 ], + [ 7.1786639, 47.0597239 ], + [ 7.1784786, 47.059935 ], + [ 7.1776594, 47.0594069 ], + [ 7.1774512, 47.0592462 ], + [ 7.1784176, 47.0586082 ], + [ 7.1782841, 47.0584878 ], + [ 7.1778078, 47.0581436 ], + [ 7.1774822, 47.0579597 ], + [ 7.1769895, 47.0575984 ], + [ 7.1764714, 47.0572197 ], + [ 7.1759625, 47.0568182 ], + [ 7.175628, 47.0565887 ], + [ 7.1752031, 47.0561816 ], + [ 7.1749444, 47.0559237 ], + [ 7.1747108, 47.0557515 ], + [ 7.1745356, 47.0555795 ], + [ 7.1742765, 47.0554188 ], + [ 7.1737752, 47.055143 ], + [ 7.1730729, 47.0547639 ], + [ 7.1724206, 47.0544421 ], + [ 7.1717773, 47.0541089 ], + [ 7.1711587, 47.0537813 ], + [ 7.1706928, 47.0535202 ], + [ 7.1698327, 47.0540983 ], + [ 7.1694289, 47.054406 ], + [ 7.1681913999999995, 47.0556038 ], + [ 7.1672146, 47.0566534 ], + [ 7.1664308, 47.0574234 ], + [ 7.1660855, 47.0578685 ], + [ 7.1658482, 47.0582625 ], + [ 7.1657962, 47.0586168 ], + [ 7.1659374, 47.0589945 ], + [ 7.1665789, 47.059671 ], + [ 7.1676213, 47.0608114 ], + [ 7.1686628, 47.0619463 ], + [ 7.1694294, 47.0628059 ], + [ 7.1700044, 47.0634821 ], + [ 7.1703297, 47.0639117 ], + [ 7.1704288, 47.0641693 ], + [ 7.1705772, 47.0645986 ], + [ 7.1707838, 47.0652222 ], + [ 7.1708999, 47.065537 ], + [ 7.1712994, 47.0661041 ], + [ 7.1718575, 47.0667231 ], + [ 7.1725587, 47.0673367 ], + [ 7.1731604, 47.0678013 ], + [ 7.1737784, 47.0682832 ], + [ 7.1743035, 47.0687362 ], + [ 7.1747459, 47.0691261 ], + [ 7.1753313, 47.0695507 ], + [ 7.1760836, 47.0698442 ], + [ 7.1765608, 47.0700283 ], + [ 7.1773565, 47.0701903 ], + [ 7.1779264, 47.0702661 ], + [ 7.1785131, 47.0702676 ], + [ 7.1791247, 47.0702175 ], + [ 7.1795447, 47.07015 ], + [ 7.1799975, 47.0700824 ], + [ 7.1807104, 47.070027 ], + [ 7.1810618, 47.0700106 ], + [ 7.1815568, 47.0700918 ], + [ 7.1819996, 47.0702473 ], + [ 7.1822927, 47.0703853 ], + [ 7.1828271, 47.0708096 ], + [ 7.1837121, 47.0715894 ], + [ 7.1847142999999996, 47.0724609 ], + [ 7.1855454, 47.0721142 ], + [ 7.1869658, 47.0712312 ], + [ 7.1880837, 47.0706048 ], + [ 7.1886977, 47.0702175 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "WZV0014", + "country" : "CHE", + "name" : [ + { + "text" : "Wasser- und Zugvogelreservat Hagneckdelta und St. Petersinsel", + "lang" : "de-CH" + }, + { + "text" : "Réserve d'oiseaux d'eau et de migrateurs Hagneckdelta und St. Petersinsel", + "lang" : "fr-CH" + }, + { + "text" : "Riserva di uccelli acquatici e migratori Hagneckdelta und St. Petersinsel", + "lang" : "it-CH" + }, + { + "text" : "Water Bird and Migratory Bird Reserves Hagneckdelta und St. Petersinsel", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.9784289, 46.2663 ], + [ 6.9784248, 46.2661587 ], + [ 6.97841, 46.2660178 ], + [ 6.9783846, 46.2658776 ], + [ 6.9783486, 46.2657386 ], + [ 6.9783023, 46.265601 ], + [ 6.9782455, 46.2654653 ], + [ 6.9781787, 46.2653318 ], + [ 6.9781018, 46.265201 ], + [ 6.9780152, 46.2650731 ], + [ 6.9779191, 46.2649485 ], + [ 6.9778136, 46.2648276 ], + [ 6.9776992, 46.2647107 ], + [ 6.9775762, 46.2645981 ], + [ 6.9774448, 46.2644902 ], + [ 6.9773055, 46.2643871 ], + [ 6.9771585, 46.2642893 ], + [ 6.9770044, 46.2641969 ], + [ 6.9768435, 46.2641102 ], + [ 6.9766763, 46.2640295 ], + [ 6.9765033, 46.2639549 ], + [ 6.9763248, 46.2638868 ], + [ 6.9761415, 46.2638252 ], + [ 6.9759537, 46.2637704 ], + [ 6.9757621, 46.2637224 ], + [ 6.9755671, 46.2636815 ], + [ 6.9753693, 46.2636477 ], + [ 6.9751692, 46.2636211 ], + [ 6.9749675, 46.2636019 ], + [ 6.9747645, 46.2635899 ], + [ 6.9745609, 46.2635854 ], + [ 6.9743572, 46.2635883 ], + [ 6.974154, 46.2635985 ], + [ 6.9739519, 46.2636161 ], + [ 6.9737514, 46.2636411 ], + [ 6.973553, 46.2636732 ], + [ 6.9733574, 46.2637125 ], + [ 6.9731649, 46.2637589 ], + [ 6.9729763, 46.2638122 ], + [ 6.9727919, 46.2638723 ], + [ 6.9726123, 46.2639389 ], + [ 6.972438, 46.264012 ], + [ 6.9722694, 46.2640914 ], + [ 6.972107, 46.2641767 ], + [ 6.9719514, 46.2642678 ], + [ 6.9718027, 46.2643645 ], + [ 6.9716616, 46.2644664 ], + [ 6.9715284, 46.2645733 ], + [ 6.9714034, 46.2646848 ], + [ 6.9712871, 46.2648008 ], + [ 6.9711796, 46.2649208 ], + [ 6.9710813, 46.2650446 ], + [ 6.9709924999999995, 46.2651717 ], + [ 6.9709134, 46.2653019 ], + [ 6.9708442999999995, 46.2654348 ], + [ 6.9707852, 46.2655701 ], + [ 6.9707365, 46.2657072 ], + [ 6.9706982, 46.265846 ], + [ 6.9706703999999995, 46.265986 ], + [ 6.9706532, 46.2661268 ], + [ 6.9706466, 46.266268 ], + [ 6.9706508, 46.2664092 ], + [ 6.9706655, 46.2665501 ], + [ 6.9706909, 46.2666903 ], + [ 6.9707268, 46.2668294 ], + [ 6.9707732, 46.266967 ], + [ 6.9708299, 46.2671027 ], + [ 6.9708968, 46.2672361 ], + [ 6.9709736, 46.267367 ], + [ 6.9710602, 46.2674949 ], + [ 6.9711563, 46.2676195 ], + [ 6.9712617, 46.2677404 ], + [ 6.9713761, 46.2678573 ], + [ 6.9714992, 46.2679699 ], + [ 6.9716306, 46.2680779 ], + [ 6.9717699, 46.2681809 ], + [ 6.9719169, 46.2682788 ], + [ 6.972071, 46.2683712 ], + [ 6.9722319, 46.2684579 ], + [ 6.9723991, 46.2685386 ], + [ 6.9725721, 46.2686131 ], + [ 6.9727505999999995, 46.2686813 ], + [ 6.972934, 46.2687429 ], + [ 6.9731217, 46.2687977 ], + [ 6.9733133, 46.2688456 ], + [ 6.9735083, 46.2688866 ], + [ 6.9737061, 46.2689204 ], + [ 6.9739062, 46.268947 ], + [ 6.9741081, 46.2689662 ], + [ 6.9743110999999995, 46.2689781 ], + [ 6.9745147, 46.2689827 ], + [ 6.9747184, 46.2689798 ], + [ 6.9749216, 46.2689696 ], + [ 6.9751237, 46.268952 ], + [ 6.9753243, 46.268927 ], + [ 6.9755226, 46.2688949 ], + [ 6.9757183, 46.2688555 ], + [ 6.9759107, 46.2688092 ], + [ 6.9760994, 46.2687559 ], + [ 6.9762838, 46.2686958 ], + [ 6.9764634, 46.2686291 ], + [ 6.9766378, 46.268556 ], + [ 6.9768064, 46.2684767 ], + [ 6.9769687, 46.2683913 ], + [ 6.9771244, 46.2683002 ], + [ 6.977273, 46.2682036 ], + [ 6.9774141, 46.2681016 ], + [ 6.9775473, 46.2679948 ], + [ 6.9776723, 46.2678832 ], + [ 6.9777887, 46.2677672 ], + [ 6.9778961, 46.2676472 ], + [ 6.9779944, 46.2675234 ], + [ 6.9780832, 46.2673962 ], + [ 6.9781623, 46.267266 ], + [ 6.9782314, 46.2671331 ], + [ 6.9782904, 46.2669979 ], + [ 6.9783390999999995, 46.2668607 ], + [ 6.9783774, 46.2667219 ], + [ 6.9784052, 46.266582 ], + [ 6.9784223999999995, 46.2664412 ], + [ 6.9784289, 46.2663 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0114", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk St.Triphon", + "lang" : "de-CH" + }, + { + "text" : "Sous-station St.Triphon", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione St.Triphon", + "lang" : "it-CH" + }, + { + "text" : "Substation St.Triphon", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.3108778, 47.4712501 ], + [ 8.31087, 47.4711089 ], + [ 8.3108514, 47.4709682 ], + [ 8.3108219, 47.4708284 ], + [ 8.3107816, 47.4706898 ], + [ 8.3107308, 47.4705528 ], + [ 8.3106694, 47.4704178 ], + [ 8.3105976, 47.4702852 ], + [ 8.3105158, 47.4701553 ], + [ 8.310424, 47.4700285 ], + [ 8.3103226, 47.4699051 ], + [ 8.3102118, 47.4697855 ], + [ 8.3100919, 47.4696699 ], + [ 8.3099632, 47.4695588 ], + [ 8.3098262, 47.4694524 ], + [ 8.3096811, 47.4693511 ], + [ 8.3095284, 47.469255 ], + [ 8.3093685, 47.4691644 ], + [ 8.3092018, 47.4690797 ], + [ 8.3090288, 47.469001 ], + [ 8.30885, 47.4689285 ], + [ 8.3086658, 47.4688625 ], + [ 8.3084768, 47.4688031 ], + [ 8.3082835, 47.4687505 ], + [ 8.3080863, 47.4687048 ], + [ 8.3078859, 47.4686662 ], + [ 8.3076828, 47.4686347 ], + [ 8.3074776, 47.4686105 ], + [ 8.3072707, 47.4685936 ], + [ 8.3070629, 47.4685841 ], + [ 8.3068546, 47.468582 ], + [ 8.3066464, 47.4685872 ], + [ 8.3064389, 47.4685999 ], + [ 8.3062327, 47.4686199 ], + [ 8.3060283, 47.4686471 ], + [ 8.3058263, 47.4686816 ], + [ 8.3056272, 47.4687233 ], + [ 8.3054316, 47.4687719 ], + [ 8.30524, 47.4688274 ], + [ 8.305053, 47.4688896 ], + [ 8.304871, 47.4689584 ], + [ 8.3046946, 47.4690335 ], + [ 8.3045242, 47.4691148 ], + [ 8.3043603, 47.469202 ], + [ 8.3042034, 47.4692949 ], + [ 8.3040539, 47.4693933 ], + [ 8.3039122, 47.4694968 ], + [ 8.3037786, 47.4696053 ], + [ 8.3036536, 47.4697183 ], + [ 8.3035375, 47.4698356 ], + [ 8.3034306, 47.4699568 ], + [ 8.3033333, 47.4700817 ], + [ 8.3032456, 47.4702099 ], + [ 8.303168, 47.470341 ], + [ 8.3031007, 47.4704746 ], + [ 8.3030437, 47.4706105 ], + [ 8.3029973, 47.4707482 ], + [ 8.3029616, 47.4708874 ], + [ 8.3029367, 47.4710276 ], + [ 8.3029226, 47.4711686 ], + [ 8.3029195, 47.4713098 ], + [ 8.3029272, 47.471451 ], + [ 8.3029458, 47.4715917 ], + [ 8.3029753, 47.4717315 ], + [ 8.3030155, 47.4718701 ], + [ 8.3030664, 47.4720071 ], + [ 8.3031278, 47.4721421 ], + [ 8.3031995, 47.4722747 ], + [ 8.3032813, 47.4724046 ], + [ 8.3033731, 47.4725315 ], + [ 8.3034745, 47.4726549 ], + [ 8.3035853, 47.4727745 ], + [ 8.3037052, 47.47289 ], + [ 8.3038338, 47.4730011 ], + [ 8.3039709, 47.4731075 ], + [ 8.304116, 47.4732089 ], + [ 8.3042687, 47.473305 ], + [ 8.3044286, 47.4733956 ], + [ 8.3045953, 47.4734803 ], + [ 8.3047683, 47.473559 ], + [ 8.3049471, 47.4736315 ], + [ 8.3051313, 47.4736975 ], + [ 8.3053203, 47.4737569 ], + [ 8.3055137, 47.4738095 ], + [ 8.3057108, 47.4738552 ], + [ 8.3059112, 47.4738938 ], + [ 8.3061143, 47.4739253 ], + [ 8.3063196, 47.4739495 ], + [ 8.3065265, 47.4739664 ], + [ 8.3067343, 47.4739759 ], + [ 8.3069427, 47.4739781 ], + [ 8.3071509, 47.4739728 ], + [ 8.3073584, 47.4739601 ], + [ 8.3075646, 47.4739402 ], + [ 8.3077691, 47.4739129 ], + [ 8.3079711, 47.4738784 ], + [ 8.3081702, 47.4738368 ], + [ 8.3083658, 47.4737881 ], + [ 8.3085574, 47.4737326 ], + [ 8.3087444, 47.4736704 ], + [ 8.3089264, 47.4736016 ], + [ 8.3091029, 47.4735265 ], + [ 8.3092732, 47.4734452 ], + [ 8.3094371, 47.4733579 ], + [ 8.309594, 47.473265 ], + [ 8.309743600000001, 47.4731667 ], + [ 8.3098853, 47.4730631 ], + [ 8.3100188, 47.4729547 ], + [ 8.3101438, 47.4728417 ], + [ 8.3102599, 47.4727244 ], + [ 8.3103668, 47.4726031 ], + [ 8.3104642, 47.4724782 ], + [ 8.3105518, 47.4723501 ], + [ 8.3106293, 47.472219 ], + [ 8.3106967, 47.4720853 ], + [ 8.3107536, 47.4719494 ], + [ 8.3108, 47.4718117 ], + [ 8.3108357, 47.4716725 ], + [ 8.3108606, 47.4715323 ], + [ 8.3108746, 47.4713913 ], + [ 8.3108778, 47.4712501 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BAD0001", + "country" : "CHE", + "name" : [ + { + "text" : "Bezirksgefängnis Baden", + "lang" : "de-CH" + }, + { + "text" : "Bezirksgefängnis Baden", + "lang" : "fr-CH" + }, + { + "text" : "Bezirksgefängnis Baden", + "lang" : "it-CH" + }, + { + "text" : "Bezirksgefängnis Baden", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Bezirksgefängnis Baden", + "lang" : "de-CH" + }, + { + "text" : "Bezirksgefängnis Baden", + "lang" : "fr-CH" + }, + { + "text" : "Bezirksgefängnis Baden", + "lang" : "it-CH" + }, + { + "text" : "Bezirksgefängnis Baden", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Gefängnisleitung", + "lang" : "de-CH" + }, + { + "text" : "Gefängnisleitung", + "lang" : "fr-CH" + }, + { + "text" : "Gefängnisleitung", + "lang" : "it-CH" + }, + { + "text" : "Gefängnisleitung", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ag.ch/de/verwaltung/dvi/strafverfolgung-strafvollzug/strafvollzug/bezirksgefaengnisse", + "email" : "justizvollzug@ag.ch", + "phone" : "0041562001263", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7329987, 47.4537335 ], + [ 7.7330708, 47.4541086 ], + [ 7.7331109, 47.4544741 ], + [ 7.7331518, 47.4549095 ], + [ 7.7331599, 47.4551566 ], + [ 7.7331275999999995, 47.4553828 ], + [ 7.7331395, 47.4554921 ], + [ 7.7331826, 47.4559001 ], + [ 7.7333617, 47.4563371 ], + [ 7.7336817, 47.4564083 ], + [ 7.7337266, 47.4558297 ], + [ 7.7337926, 47.4552779 ], + [ 7.7337164, 47.4549282 ], + [ 7.7336488, 47.4546878 ], + [ 7.7336138, 47.454563 ], + [ 7.7335743, 47.4545098 ], + [ 7.7335267, 47.4543441 ], + [ 7.733575, 47.4540533 ], + [ 7.7337335, 47.4537342 ], + [ 7.7337299, 47.4537342 ], + [ 7.7330381, 47.4537335 ], + [ 7.7329987, 47.4537335 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns360", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Chaiberain", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Chaiberain", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Chaiberain", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Chaiberain", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.8646727, 47.2036006 ], + [ 8.864526399999999, 47.203956 ], + [ 8.8639803, 47.2038224 ], + [ 8.8635993, 47.2046314 ], + [ 8.8709135, 47.2056075 ], + [ 8.8710501, 47.2050408 ], + [ 8.8655225, 47.2042828 ], + [ 8.8657155, 47.203845 ], + [ 8.8660256, 47.2031007 ], + [ 8.8644918, 47.2028058 ], + [ 8.8642251, 47.2034964 ], + [ 8.8646727, 47.2036006 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSPV002", + "country" : "CHE", + "name" : [ + { + "text" : "LSPV Wangen-Lachen (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSPV Wangen-Lachen (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSPV Wangen-Lachen (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSPV Wangen-Lachen (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "ASFG Ausserschwyzer Fluggemeinschaft Wangen", + "lang" : "de-CH" + }, + { + "text" : "ASFG Ausserschwyzer Fluggemeinschaft Wangen", + "lang" : "fr-CH" + }, + { + "text" : "ASFG Ausserschwyzer Fluggemeinschaft Wangen", + "lang" : "it-CH" + }, + { + "text" : "ASFG Ausserschwyzer Fluggemeinschaft Wangen", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.flugplatzwangen.ch/flugplatz/drohnenbewilligung/", + "email" : "drohnen@flugplatzwangen.ch", + "phone" : "0041554404217", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7589872, 47.4577835 ], + [ 7.7590568, 47.4579665 ], + [ 7.7590702, 47.4579652 ], + [ 7.7591127, 47.4579586 ], + [ 7.7591542, 47.4579494 ], + [ 7.7592099, 47.4579374 ], + [ 7.7592668, 47.4579286 ], + [ 7.7593246, 47.457923 ], + [ 7.7593829, 47.4579207 ], + [ 7.7594413, 47.4579216 ], + [ 7.7594994, 47.4579259 ], + [ 7.7596348, 47.4579397 ], + [ 7.7596943, 47.4579402 ], + [ 7.7597714, 47.4579352 ], + [ 7.7598208, 47.457933 ], + [ 7.7598824, 47.4579355 ], + [ 7.7600039, 47.457959 ], + [ 7.7601196, 47.4580016 ], + [ 7.7601797999999995, 47.4580169 ], + [ 7.7603073, 47.4580368 ], + [ 7.7604027, 47.4580397 ], + [ 7.7605067, 47.458029 ], + [ 7.7606112, 47.4580103 ], + [ 7.7607335, 47.4579849 ], + [ 7.7608217, 47.4579784 ], + [ 7.7608995, 47.4579827 ], + [ 7.7609004, 47.4579828 ], + [ 7.7609013000000004, 47.4579827 ], + [ 7.7609974, 47.4579732 ], + [ 7.7610733, 47.4580151 ], + [ 7.7611564, 47.4580703 ], + [ 7.7612188, 47.4581212 ], + [ 7.7612955, 47.4582104 ], + [ 7.7613728, 47.4582892 ], + [ 7.7614591, 47.4583635 ], + [ 7.7615537, 47.4584331 ], + [ 7.761656, 47.4584974 ], + [ 7.7620221, 47.4587042 ], + [ 7.7620422, 47.4587173 ], + [ 7.7620605, 47.4587315 ], + [ 7.7620771, 47.4587467 ], + [ 7.7620917, 47.4587628 ], + [ 7.7621042, 47.4587797 ], + [ 7.7621147, 47.4587972 ], + [ 7.7621229, 47.4588153 ], + [ 7.7621289, 47.4588338 ], + [ 7.7621325, 47.4588525 ], + [ 7.7621338, 47.4588714 ], + [ 7.7621355, 47.4590269 ], + [ 7.7621402, 47.4590971 ], + [ 7.7619896, 47.4591171 ], + [ 7.7618402, 47.4591411 ], + [ 7.7614792, 47.4591969 ], + [ 7.7614475, 47.4592016 ], + [ 7.7614166, 47.4592082 ], + [ 7.7613867, 47.4592166 ], + [ 7.7613579999999995, 47.4592268 ], + [ 7.7613308, 47.4592388 ], + [ 7.7613054, 47.4592524 ], + [ 7.7612818, 47.4592674 ], + [ 7.7612604, 47.4592839 ], + [ 7.7612412, 47.4593016 ], + [ 7.7612245, 47.4593204 ], + [ 7.7612189, 47.459328 ], + [ 7.7612143, 47.459336 ], + [ 7.7612107, 47.4593441 ], + [ 7.7612082000000004, 47.4593525 ], + [ 7.7612067, 47.4593609 ], + [ 7.7612017, 47.4593821 ], + [ 7.7611941, 47.4594029 ], + [ 7.7611839, 47.4594231 ], + [ 7.76117, 47.4594513 ], + [ 7.7611532, 47.4594913 ], + [ 7.7611315, 47.459561 ], + [ 7.7611191, 47.4596317 ], + [ 7.7611161, 47.4597029 ], + [ 7.7611223, 47.4597741 ], + [ 7.761137, 47.4598194 ], + [ 7.7611574999999995, 47.4598636 ], + [ 7.7611836, 47.4599065 ], + [ 7.7612151, 47.4599476 ], + [ 7.7613942, 47.4601719 ], + [ 7.7615599, 47.4604009 ], + [ 7.761712, 47.4606341 ], + [ 7.7617641, 47.4607043 ], + [ 7.7618254, 47.4607709 ], + [ 7.7618686, 47.4608094 ], + [ 7.7630277, 47.4602627 ], + [ 7.763078, 47.4603747 ], + [ 7.7633344, 47.4604383 ], + [ 7.7633946, 47.4603619 ], + [ 7.7635006, 47.4602518 ], + [ 7.7636229, 47.4601497 ], + [ 7.7637602999999995, 47.4600569 ], + [ 7.7639113, 47.4599743 ], + [ 7.7640742, 47.4599029 ], + [ 7.7642471, 47.4598434 ], + [ 7.7644283, 47.4597966 ], + [ 7.7644774, 47.4597208 ], + [ 7.7646475, 47.4596812 ], + [ 7.7646188, 47.4596437 ], + [ 7.7644168, 47.4593462 ], + [ 7.7643619, 47.4592665 ], + [ 7.764319, 47.4592128 ], + [ 7.7642746, 47.4591728 ], + [ 7.7642326, 47.4591429 ], + [ 7.7641867, 47.4591158 ], + [ 7.7641372, 47.4590916 ], + [ 7.7641119, 47.4590793 ], + [ 7.7640884, 47.4590654 ], + [ 7.7640668, 47.4590501 ], + [ 7.7640474, 47.4590335 ], + [ 7.7640303, 47.4590158 ], + [ 7.7640157, 47.4589972 ], + [ 7.7640036, 47.4589776 ], + [ 7.7639942, 47.4589575 ], + [ 7.7639542, 47.4588793 ], + [ 7.7639396, 47.4588373 ], + [ 7.7639097, 47.4587386 ], + [ 7.7638926, 47.4586604 ], + [ 7.7638788, 47.4586149 ], + [ 7.7638487, 47.4585612 ], + [ 7.763831, 47.4585327 ], + [ 7.7638082, 47.4584983 ], + [ 7.7637795, 47.4584674 ], + [ 7.7636522, 47.4583818 ], + [ 7.7635457, 47.4583076 ], + [ 7.7634957, 47.4582818 ], + [ 7.7634316, 47.4582549 ], + [ 7.7633101, 47.45821 ], + [ 7.7632698, 47.4581987 ], + [ 7.7631699, 47.4581789 ], + [ 7.7629691, 47.4581386 ], + [ 7.7628468, 47.4581106 ], + [ 7.7626737, 47.458067 ], + [ 7.7625846, 47.4580401 ], + [ 7.7623847999999995, 47.4579669 ], + [ 7.7623421, 47.4579491 ], + [ 7.7622902, 47.4579271 ], + [ 7.7622391, 47.4579042 ], + [ 7.7621888, 47.4578805 ], + [ 7.7621768, 47.4578739 ], + [ 7.762164, 47.457868 ], + [ 7.7621505, 47.4578629 ], + [ 7.7621364, 47.4578586 ], + [ 7.7621218, 47.4578551 ], + [ 7.7621068, 47.4578525 ], + [ 7.7620916, 47.4578508 ], + [ 7.7620762, 47.45785 ], + [ 7.7620607, 47.45785 ], + [ 7.7620453, 47.457851 ], + [ 7.7620301, 47.4578529 ], + [ 7.7620152000000004, 47.4578557 ], + [ 7.7620007, 47.4578593 ], + [ 7.7619867, 47.4578638 ], + [ 7.7619733, 47.4578691 ], + [ 7.7619606, 47.4578751 ], + [ 7.7619488, 47.4578819 ], + [ 7.7619378999999995, 47.4578893 ], + [ 7.7619297, 47.4579043 ], + [ 7.7619249, 47.4579422 ], + [ 7.7619295, 47.4579591 ], + [ 7.7619413999999995, 47.4579748 ], + [ 7.7619071, 47.4579924 ], + [ 7.7618152, 47.4579101 ], + [ 7.7610019999999995, 47.4571997 ], + [ 7.7602303, 47.4567832 ], + [ 7.7601853, 47.4567618 ], + [ 7.7598593000000005, 47.4562983 ], + [ 7.7595856, 47.456176 ], + [ 7.7593464, 47.4559803 ], + [ 7.7578073, 47.4566181 ], + [ 7.7588276, 47.4571282 ], + [ 7.758901, 47.457122 ], + [ 7.7589872, 47.4577835 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns313", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Landschachen - Huppergruben", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Landschachen - Huppergruben", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Landschachen - Huppergruben", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Landschachen - Huppergruben", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5419444, 47.2180555 ], + [ 7.547433, 47.2166752 ], + [ 7.5525589, 47.2147537 ], + [ 7.5572082, 47.2123342 ], + [ 7.5612776, 47.2094706 ], + [ 7.5646768, 47.2062265 ], + [ 7.5673302, 47.202674 ], + [ 7.569179, 47.1988922 ], + [ 7.5701824, 47.1949651 ], + [ 7.5703181, 47.1909799 ], + [ 7.5695834, 47.1870253 ], + [ 7.3898583, 47.1338524 ], + [ 7.3498741, 47.1311088 ], + [ 7.3445517, 47.1332984 ], + [ 7.3398050999999995, 47.1360362 ], + [ 7.3357545, 47.139253 ], + [ 7.3325024, 47.1428673 ], + [ 7.3301313, 47.1467878 ], + [ 7.3287015, 47.1509152 ], + [ 7.3282492, 47.1551451 ], + [ 7.3287862, 47.1593703 ], + [ 7.3302992, 47.163484 ], + [ 7.33275, 47.1673818 ], + [ 7.3855455, 47.1875591 ], + [ 7.5419444, 47.2180555 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 120, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "CTR0007", + "country" : "CHE", + "name" : [ + { + "text" : "CTR GRENCHEN", + "lang" : "de-CH" + }, + { + "text" : "CTR GRENCHEN", + "lang" : "fr-CH" + }, + { + "text" : "CTR GRENCHEN", + "lang" : "it-CH" + }, + { + "text" : "CTR GRENCHEN", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only permitted from an altitude of 120 m above ground with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Skyguide Special Flight Office", + "lang" : "de-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "it-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "en-GB" + } + ], + "siteURL" : "https://skyguide.ch/services/special-flights", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.4795884, 47.4328789 ], + [ 8.4795621, 47.4325655 ], + [ 8.4794956, 47.4322549 ], + [ 8.4793895, 47.4319494 ], + [ 8.4792446, 47.4316514 ], + [ 8.479062, 47.431363 ], + [ 8.478843, 47.4310866 ], + [ 8.4785893, 47.4308241 ], + [ 8.4783029, 47.4305777 ], + [ 8.4779859, 47.4303491 ], + [ 8.4776408, 47.4301401 ], + [ 8.4772702, 47.4299524 ], + [ 8.4768768, 47.4297873 ], + [ 8.4764638, 47.4296461 ], + [ 8.4760342, 47.4295298 ], + [ 8.4755913, 47.4294394 ], + [ 8.4751385, 47.4293755 ], + [ 8.4746792, 47.4293387 ], + [ 8.4742169, 47.4293291 ], + [ 8.4737551, 47.4293469 ], + [ 8.4732974, 47.429392 ], + [ 8.4728472, 47.429464 ], + [ 8.472408, 47.4295623 ], + [ 8.4719831, 47.4296862 ], + [ 8.4715757, 47.4298348 ], + [ 8.4711889, 47.4300069 ], + [ 8.4708257, 47.4302012 ], + [ 8.4704888, 47.4304163 ], + [ 8.4701809, 47.4306505 ], + [ 8.4699041, 47.4309019 ], + [ 8.4696608, 47.4311688 ], + [ 8.4694526, 47.4314491 ], + [ 8.4692813, 47.4317406 ], + [ 8.469148, 47.4320412 ], + [ 8.4690538, 47.4323485 ], + [ 8.4689995, 47.4326602 ], + [ 8.4689854, 47.4329739 ], + [ 8.4690116, 47.4332872 ], + [ 8.469078, 47.4335978 ], + [ 8.4691841, 47.4339033 ], + [ 8.4693289, 47.4342014 ], + [ 8.4695115, 47.4344898 ], + [ 8.4697305, 47.4347662 ], + [ 8.4699841, 47.4350287 ], + [ 8.4702705, 47.4352751 ], + [ 8.4705875, 47.4355037 ], + [ 8.4709326, 47.4357127 ], + [ 8.4713033, 47.4359005 ], + [ 8.4716966, 47.4360656 ], + [ 8.4721097, 47.4362069 ], + [ 8.4725393, 47.4363231 ], + [ 8.4729823, 47.4364136 ], + [ 8.4734352, 47.4364774 ], + [ 8.4738946, 47.4365143 ], + [ 8.4743569, 47.4365238 ], + [ 8.4748187, 47.436506 ], + [ 8.4752765, 47.4364609 ], + [ 8.4757267, 47.436389 ], + [ 8.476166, 47.4362906 ], + [ 8.476590999999999, 47.4361667 ], + [ 8.4769984, 47.4360181 ], + [ 8.4773852, 47.435846 ], + [ 8.4777484, 47.4356516 ], + [ 8.4780853, 47.4354365 ], + [ 8.4783933, 47.4352024 ], + [ 8.47867, 47.4349508 ], + [ 8.4789133, 47.4346839 ], + [ 8.4791214, 47.4344036 ], + [ 8.4792927, 47.4341121 ], + [ 8.479426, 47.4338115 ], + [ 8.4795201, 47.4335043 ], + [ 8.4795743, 47.4331926 ], + [ 8.4795884, 47.4328789 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "POE0001", + "country" : "CHE", + "name" : [ + { + "text" : "Justizvollzugsanstalt Pöschwies", + "lang" : "de-CH" + }, + { + "text" : "Justizvollzugsanstalt Pöschwies", + "lang" : "fr-CH" + }, + { + "text" : "Justizvollzugsanstalt Pöschwies", + "lang" : "it-CH" + }, + { + "text" : "Justizvollzugsanstalt Pöschwies", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "de-CH" + }, + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "fr-CH" + }, + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "it-CH" + }, + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "de-CH" + }, + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "fr-CH" + }, + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "it-CH" + }, + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Reno Berner", + "lang" : "de-CH" + }, + { + "text" : "Reno Berner", + "lang" : "fr-CH" + }, + { + "text" : "Reno Berner", + "lang" : "it-CH" + }, + { + "text" : "Reno Berner", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.zh.ch/de/direktion-der-justiz-und-des-innern/justizvollzug-wiedereingliederung.html", + "email" : "sicherheit-juwe@ji.zh.ch", + "phone" : "0041432583400", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT12H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.3066516, 47.3977371 ], + [ 9.3066412, 47.397596 ], + [ 9.3066199, 47.3974555 ], + [ 9.3065879, 47.3973159 ], + [ 9.3065451, 47.3971776 ], + [ 9.3064917, 47.3970411 ], + [ 9.3064279, 47.3969067 ], + [ 9.3063538, 47.3967747 ], + [ 9.3062696, 47.3966455 ], + [ 9.3061756, 47.3965194 ], + [ 9.306072, 47.3963969 ], + [ 9.3059591, 47.3962783 ], + [ 9.3058372, 47.3961638 ], + [ 9.3057067, 47.3960538 ], + [ 9.3055679, 47.3959486 ], + [ 9.3054211, 47.3958485 ], + [ 9.3052668, 47.3957537 ], + [ 9.3051055, 47.3956645 ], + [ 9.3049375, 47.3955812 ], + [ 9.3047633, 47.395504 ], + [ 9.304583300000001, 47.3954331 ], + [ 9.3043982, 47.3953687 ], + [ 9.304208299999999, 47.3953109 ], + [ 9.3040143, 47.3952599 ], + [ 9.3038166, 47.395216 ], + [ 9.3036158, 47.3951791 ], + [ 9.3034124, 47.3951494 ], + [ 9.303207, 47.3951269 ], + [ 9.3030002, 47.3951118 ], + [ 9.3027924, 47.3951041 ], + [ 9.3025844, 47.3951038 ], + [ 9.3023766, 47.3951108 ], + [ 9.3021696, 47.3951252 ], + [ 9.3019641, 47.395147 ], + [ 9.3017605, 47.395176 ], + [ 9.3015594, 47.3952123 ], + [ 9.3013614, 47.3952556 ], + [ 9.301167, 47.3953059 ], + [ 9.3009767, 47.395363 ], + [ 9.3007912, 47.3954269 ], + [ 9.3006107, 47.3954972 ], + [ 9.300436, 47.3955738 ], + [ 9.3002674, 47.3956566 ], + [ 9.3001054, 47.3957452 ], + [ 9.2999504, 47.3958395 ], + [ 9.299803, 47.3959391 ], + [ 9.2996634, 47.3960439 ], + [ 9.299532, 47.3961535 ], + [ 9.2994094, 47.3962675 ], + [ 9.2992956, 47.3963858 ], + [ 9.2991911, 47.396508 ], + [ 9.2990962, 47.3966337 ], + [ 9.2990112, 47.3967626 ], + [ 9.2989361, 47.3968944 ], + [ 9.2988713, 47.3970286 ], + [ 9.298817, 47.397165 ], + [ 9.2987732, 47.3973031 ], + [ 9.2987402, 47.3974425 ], + [ 9.2987179, 47.397583 ], + [ 9.2987065, 47.397724 ], + [ 9.298706, 47.3978653 ], + [ 9.2987164, 47.3980064 ], + [ 9.2987376, 47.3981469 ], + [ 9.2987697, 47.3982865 ], + [ 9.2988124, 47.3984247 ], + [ 9.2988658, 47.3985613 ], + [ 9.2989296, 47.3986957 ], + [ 9.2990037, 47.3988277 ], + [ 9.2990878, 47.3989569 ], + [ 9.2991818, 47.399083 ], + [ 9.2992854, 47.3992055 ], + [ 9.2993983, 47.3993241 ], + [ 9.2995202, 47.3994386 ], + [ 9.2996507, 47.3995486 ], + [ 9.2997895, 47.3996538 ], + [ 9.2999363, 47.399754 ], + [ 9.3000906, 47.3998487 ], + [ 9.3002519, 47.3999379 ], + [ 9.3004199, 47.4000212 ], + [ 9.3005942, 47.4000985 ], + [ 9.3007741, 47.4001694 ], + [ 9.3009592, 47.4002338 ], + [ 9.3011491, 47.4002916 ], + [ 9.3013432, 47.4003425 ], + [ 9.3015409, 47.4003865 ], + [ 9.301741700000001, 47.4004234 ], + [ 9.3019451, 47.4004531 ], + [ 9.3021506, 47.4004756 ], + [ 9.3023574, 47.4004907 ], + [ 9.3025652, 47.4004984 ], + [ 9.3027732, 47.4004987 ], + [ 9.302981, 47.4004917 ], + [ 9.303188, 47.4004773 ], + [ 9.3033936, 47.4004555 ], + [ 9.3035972, 47.4004265 ], + [ 9.3037983, 47.4003902 ], + [ 9.3039963, 47.4003469 ], + [ 9.3041907, 47.4002966 ], + [ 9.304381, 47.4002395 ], + [ 9.3045666, 47.4001756 ], + [ 9.304747, 47.4001053 ], + [ 9.3049218, 47.4000286 ], + [ 9.3050904, 47.3999459 ], + [ 9.3052524, 47.3998572 ], + [ 9.3054074, 47.399763 ], + [ 9.3055548, 47.3996633 ], + [ 9.3056944, 47.3995585 ], + [ 9.3058257, 47.399449 ], + [ 9.3059484, 47.3993349 ], + [ 9.3060622, 47.3992166 ], + [ 9.3061666, 47.3990944 ], + [ 9.3062615, 47.3989687 ], + [ 9.3063466, 47.3988398 ], + [ 9.3064216, 47.398708 ], + [ 9.3064864, 47.3985738 ], + [ 9.3065407, 47.3984374 ], + [ 9.3065844, 47.3982993 ], + [ 9.3066175, 47.3981598 ], + [ 9.3066397, 47.3980194 ], + [ 9.3066511, 47.3978783 ], + [ 9.3066516, 47.3977371 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0130", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Winkeln", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Winkeln", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Winkeln", + "lang" : "it-CH" + }, + { + "text" : "Substation Winkeln", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8181316, 47.4844394 ], + [ 7.8178999000000005, 47.4846425 ], + [ 7.818035, 47.4847729 ], + [ 7.8182656999999995, 47.4848664 ], + [ 7.8183902, 47.4850068 ], + [ 7.8184443, 47.4853044 ], + [ 7.8184839, 47.4854974 ], + [ 7.8183738, 47.4854996 ], + [ 7.8183699, 47.4855399 ], + [ 7.8185310999999995, 47.4856983 ], + [ 7.8183534, 47.4858284 ], + [ 7.8185123999999995, 47.4859805 ], + [ 7.8186644, 47.4860226 ], + [ 7.8187849, 47.4859913 ], + [ 7.8189208, 47.4857449 ], + [ 7.8191713, 47.4855392 ], + [ 7.8192813999999995, 47.4855795 ], + [ 7.8190858, 47.4858847 ], + [ 7.8192666, 47.4859431 ], + [ 7.8196585, 47.4858032 ], + [ 7.8201801, 47.4854033 ], + [ 7.8202312, 47.4853941 ], + [ 7.8203305, 47.4856466 ], + [ 7.8203389, 47.4856667 ], + [ 7.8203481, 47.4856867 ], + [ 7.8203581, 47.4857065 ], + [ 7.8203689, 47.4857261 ], + [ 7.8203805, 47.4857455 ], + [ 7.8203928, 47.4857647 ], + [ 7.8204059, 47.4857836 ], + [ 7.8204197, 47.4858023 ], + [ 7.8204343, 47.4858207 ], + [ 7.8204498000000005, 47.4858388 ], + [ 7.8204661, 47.4858566 ], + [ 7.820483, 47.4858741 ], + [ 7.8205006, 47.4858913 ], + [ 7.820519, 47.4859081 ], + [ 7.8205379, 47.4859246 ], + [ 7.8205575, 47.4859408 ], + [ 7.8205778, 47.4859565 ], + [ 7.8205987, 47.4859719 ], + [ 7.8206959, 47.4858389 ], + [ 7.8206038, 47.4856043 ], + [ 7.8204361, 47.4854362 ], + [ 7.8207699, 47.4852039 ], + [ 7.820631, 47.4851137 ], + [ 7.8206154, 47.485104 ], + [ 7.8205992, 47.4850948 ], + [ 7.8205824, 47.485086 ], + [ 7.8205652, 47.4850776 ], + [ 7.8205475, 47.4850698 ], + [ 7.8205293000000005, 47.4850624 ], + [ 7.8205108, 47.4850555 ], + [ 7.8204918, 47.4850491 ], + [ 7.8204725, 47.4850433 ], + [ 7.8204528, 47.4850379 ], + [ 7.8204328, 47.4850331 ], + [ 7.8204126, 47.4850289 ], + [ 7.8203922, 47.4850252 ], + [ 7.8203716, 47.4850221 ], + [ 7.8203508, 47.4850195 ], + [ 7.8203299, 47.4850176 ], + [ 7.820309, 47.4850161 ], + [ 7.8202879, 47.4850153 ], + [ 7.8202668, 47.485015 ], + [ 7.8202457, 47.4850153 ], + [ 7.8202247, 47.4850161 ], + [ 7.8202037, 47.4850175 ], + [ 7.8201827999999995, 47.4850195 ], + [ 7.820162, 47.485022 ], + [ 7.8201414, 47.4850251 ], + [ 7.820121, 47.4850288 ], + [ 7.8200174, 47.4850487 ], + [ 7.8199968, 47.4850522 ], + [ 7.8199761, 47.4850552 ], + [ 7.8199551, 47.4850576 ], + [ 7.8199341, 47.4850595 ], + [ 7.8199129, 47.4850607 ], + [ 7.8198917, 47.4850615 ], + [ 7.8198705, 47.4850616 ], + [ 7.8198492, 47.4850611 ], + [ 7.8198281, 47.4850601 ], + [ 7.819807, 47.4850585 ], + [ 7.819786, 47.4850564 ], + [ 7.8197651, 47.4850536 ], + [ 7.8197444, 47.4850503 ], + [ 7.8197298, 47.4850475 ], + [ 7.8197153, 47.4850441 ], + [ 7.8197012, 47.4850401 ], + [ 7.8196875, 47.4850356 ], + [ 7.8196741, 47.4850306 ], + [ 7.8196613, 47.485025 ], + [ 7.8196489, 47.485019 ], + [ 7.819637, 47.4850125 ], + [ 7.8196257, 47.4850055 ], + [ 7.819615, 47.4849981 ], + [ 7.819605, 47.4849903 ], + [ 7.8195955999999995, 47.4849822 ], + [ 7.8195869, 47.484973600000004 ], + [ 7.819579, 47.4849648 ], + [ 7.8195719, 47.4849556 ], + [ 7.8195387, 47.4849095 ], + [ 7.8195322, 47.4849011 ], + [ 7.8195248, 47.4848931 ], + [ 7.8195167, 47.4848854 ], + [ 7.8195078, 47.4848781 ], + [ 7.8194983, 47.4848713 ], + [ 7.819488, 47.4848649 ], + [ 7.8194772, 47.4848589 ], + [ 7.8194658, 47.4848535 ], + [ 7.8194538, 47.4848486 ], + [ 7.8194414, 47.4848443 ], + [ 7.8194286, 47.4848406 ], + [ 7.8194155, 47.4848374 ], + [ 7.8194021, 47.4848349 ], + [ 7.8193884, 47.484833 ], + [ 7.8193746, 47.4848317 ], + [ 7.8193607, 47.4848311 ], + [ 7.8193447, 47.4848311 ], + [ 7.8193287, 47.4848317 ], + [ 7.8193128, 47.4848328 ], + [ 7.819297, 47.4848345 ], + [ 7.8192813, 47.4848368 ], + [ 7.8192658999999995, 47.4848396 ], + [ 7.8192506, 47.4848429 ], + [ 7.8192357, 47.4848468 ], + [ 7.819221, 47.4848511 ], + [ 7.8192044, 47.4848569 ], + [ 7.8191291, 47.4848321 ], + [ 7.8181316, 47.4844394 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns241", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Bottenmatt", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Bottenmatt", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Bottenmatt", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Bottenmatt", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7288106, 47.3819806 ], + [ 7.7299036, 47.3821217 ], + [ 7.7307375, 47.3821443 ], + [ 7.7314924, 47.3821393 ], + [ 7.7316296, 47.3820965 ], + [ 7.7317302, 47.3821407 ], + [ 7.7317651, 47.3821365 ], + [ 7.7317993, 47.3821302 ], + [ 7.7318326, 47.3821219 ], + [ 7.7318646, 47.3821115 ], + [ 7.7318952, 47.3820993 ], + [ 7.7319241, 47.3820853 ], + [ 7.7319509, 47.3820696 ], + [ 7.7319757, 47.3820523 ], + [ 7.731998, 47.3820336 ], + [ 7.7320893, 47.3819653 ], + [ 7.732184, 47.3819308 ], + [ 7.7322419, 47.3820406 ], + [ 7.7321267, 47.3820898 ], + [ 7.7319881, 47.3822541 ], + [ 7.7319109, 47.3824232 ], + [ 7.7319989, 47.3825775 ], + [ 7.7320078, 47.3825758 ], + [ 7.732755, 47.382432 ], + [ 7.7333102, 47.3825249 ], + [ 7.733678, 47.382427 ], + [ 7.7341393, 47.3822465 ], + [ 7.7343434, 47.3820758 ], + [ 7.7343899, 47.3819314 ], + [ 7.7353619, 47.3818481 ], + [ 7.7357104, 47.3816021 ], + [ 7.736008, 47.3815784 ], + [ 7.7366176, 47.3815462 ], + [ 7.7372723, 47.3815162 ], + [ 7.7373185, 47.3813687 ], + [ 7.7374047, 47.3812644 ], + [ 7.7377153, 47.3810811 ], + [ 7.7374111, 47.3808835 ], + [ 7.7372676, 47.3808346 ], + [ 7.7373047, 47.3811106 ], + [ 7.7365786, 47.3812331 ], + [ 7.7356831, 47.38125 ], + [ 7.7351484, 47.3812743 ], + [ 7.7344217, 47.3814087 ], + [ 7.7334378, 47.3816464 ], + [ 7.7330803, 47.3814614 ], + [ 7.7333288, 47.3812372 ], + [ 7.7334963, 47.3809305 ], + [ 7.7338611, 47.3808507 ], + [ 7.7343448, 47.3807335 ], + [ 7.7350081, 47.3805884 ], + [ 7.7353328999999995, 47.3806433 ], + [ 7.7354115, 47.3806572 ], + [ 7.7363154, 47.3807461 ], + [ 7.7369424, 47.3807664 ], + [ 7.7368342, 47.3807075 ], + [ 7.7367897, 47.3806832 ], + [ 7.7368913, 47.3806395 ], + [ 7.7369102, 47.3806317 ], + [ 7.7369296, 47.3806245 ], + [ 7.7369494, 47.3806178 ], + [ 7.7369696, 47.3806118 ], + [ 7.7369901, 47.3806063 ], + [ 7.737011, 47.3806015 ], + [ 7.7370322, 47.3805972 ], + [ 7.7370536, 47.3805935 ], + [ 7.7370752, 47.3805905 ], + [ 7.737097, 47.3805881 ], + [ 7.737119, 47.3805864 ], + [ 7.737152, 47.3805845 ], + [ 7.7371852, 47.3805833 ], + [ 7.7372184, 47.3805826 ], + [ 7.7372516000000005, 47.3805826 ], + [ 7.7372847, 47.3805832 ], + [ 7.7373179, 47.3805844 ], + [ 7.7373321, 47.3805851 ], + [ 7.7373303, 47.3805714 ], + [ 7.737328, 47.3805484 ], + [ 7.7373188, 47.3804518 ], + [ 7.7372969, 47.3804307 ], + [ 7.737199, 47.3804735 ], + [ 7.7371315, 47.3804439 ], + [ 7.7371678, 47.3804042 ], + [ 7.7371656, 47.3803673 ], + [ 7.7372108, 47.3803402 ], + [ 7.737295, 47.3803018 ], + [ 7.737287, 47.3802706 ], + [ 7.7372398, 47.3802764 ], + [ 7.7371661, 47.3803045 ], + [ 7.7371183, 47.38033 ], + [ 7.7370365, 47.3803887 ], + [ 7.7369553, 47.3804156 ], + [ 7.7368465, 47.3804554 ], + [ 7.7366503, 47.380471299999996 ], + [ 7.7364266, 47.3805074 ], + [ 7.7363219, 47.380495 ], + [ 7.736172, 47.3804722 ], + [ 7.73595, 47.3804548 ], + [ 7.7357886, 47.3804358 ], + [ 7.7357273, 47.3804221 ], + [ 7.7356233, 47.3803874 ], + [ 7.7354942, 47.3804086 ], + [ 7.7354473, 47.3803421 ], + [ 7.7354558, 47.380339 ], + [ 7.7355095, 47.380281 ], + [ 7.7356062, 47.38028 ], + [ 7.7358128, 47.3802088 ], + [ 7.7358788, 47.3800143 ], + [ 7.7358709999999995, 47.3799998 ], + [ 7.7358481, 47.3799848 ], + [ 7.7318331, 47.378555 ], + [ 7.7315197, 47.3785055 ], + [ 7.7311892, 47.3786117 ], + [ 7.7311675, 47.3786185 ], + [ 7.7311467, 47.3786264 ], + [ 7.731127, 47.3786356 ], + [ 7.7311084999999995, 47.3786458 ], + [ 7.7310914, 47.3786571 ], + [ 7.7310757, 47.3786693 ], + [ 7.7310615, 47.3786823 ], + [ 7.7310491, 47.3786962 ], + [ 7.7310384, 47.3787107 ], + [ 7.7310296, 47.3787257 ], + [ 7.7310227, 47.3787412 ], + [ 7.7310177, 47.3787571 ], + [ 7.7310147, 47.3787732 ], + [ 7.7310137, 47.3787893 ], + [ 7.7309826, 47.3791374 ], + [ 7.7309813, 47.3791531 ], + [ 7.730978, 47.3791687 ], + [ 7.7309729, 47.3791841 ], + [ 7.7309659, 47.3791991 ], + [ 7.730957, 47.3792136 ], + [ 7.7309463, 47.3792276 ], + [ 7.7309339999999995, 47.379241 ], + [ 7.73092, 47.3792535 ], + [ 7.7309046, 47.3792653 ], + [ 7.7308877, 47.3792761 ], + [ 7.7308696, 47.3792859 ], + [ 7.7308503, 47.3792946 ], + [ 7.73083, 47.3793022 ], + [ 7.7308088, 47.3793086 ], + [ 7.7306587, 47.3793466 ], + [ 7.7306462, 47.3793488 ], + [ 7.730634, 47.3793517 ], + [ 7.7306223, 47.3793554 ], + [ 7.7306111, 47.3793597 ], + [ 7.7306004999999995, 47.3793648 ], + [ 7.7305906, 47.3793704 ], + [ 7.7305814999999996, 47.3793766 ], + [ 7.7305732, 47.3793833 ], + [ 7.7305658, 47.3793905 ], + [ 7.7305594, 47.3793981 ], + [ 7.730554, 47.3794061 ], + [ 7.7305497, 47.3794144 ], + [ 7.7305465, 47.3794229 ], + [ 7.7305444, 47.3794315 ], + [ 7.7305434, 47.3794403 ], + [ 7.7305436, 47.379449 ], + [ 7.7305448, 47.3794634 ], + [ 7.7305442, 47.3794778 ], + [ 7.7305416000000005, 47.3794921 ], + [ 7.7305372, 47.3795062 ], + [ 7.730531, 47.37952 ], + [ 7.7305231, 47.3795333 ], + [ 7.7305133, 47.3795461 ], + [ 7.7305019999999995, 47.3795583 ], + [ 7.7304892, 47.3795697 ], + [ 7.7304748, 47.3795804 ], + [ 7.7304592, 47.3795901 ], + [ 7.7304423, 47.3795988 ], + [ 7.7304244, 47.3796065 ], + [ 7.7304055, 47.3796131 ], + [ 7.7303859, 47.3796185 ], + [ 7.7303656, 47.3796227 ], + [ 7.730278, 47.3796396 ], + [ 7.7302638, 47.3796425 ], + [ 7.7302501, 47.3796463 ], + [ 7.7302368999999995, 47.3796509 ], + [ 7.7302244, 47.3796562 ], + [ 7.7302126, 47.3796622 ], + [ 7.7302016, 47.379669 ], + [ 7.7301915, 47.3796763 ], + [ 7.7301825, 47.3796843 ], + [ 7.7301745, 47.3796927 ], + [ 7.7301676, 47.3797016 ], + [ 7.7301619, 47.3797109 ], + [ 7.7301573999999995, 47.3797204 ], + [ 7.7301541, 47.3797302 ], + [ 7.7301208, 47.3798174 ], + [ 7.7300802, 47.3799031 ], + [ 7.7300322999999995, 47.379987 ], + [ 7.7300036, 47.3800303 ], + [ 7.7299694, 47.3800716 ], + [ 7.72993, 47.3801108 ], + [ 7.7298857, 47.3801474 ], + [ 7.7298368, 47.3801812 ], + [ 7.7297837, 47.3802121 ], + [ 7.7297269, 47.3802396 ], + [ 7.7297011, 47.3802508 ], + [ 7.7296768, 47.3802634 ], + [ 7.7296542, 47.3802773 ], + [ 7.7296334, 47.3802925 ], + [ 7.7296145, 47.3803088 ], + [ 7.7295976, 47.3803262 ], + [ 7.729583, 47.3803444 ], + [ 7.7295707, 47.3803634 ], + [ 7.7295608, 47.380383 ], + [ 7.7295533, 47.3804031 ], + [ 7.7295457, 47.3804278 ], + [ 7.729535, 47.3804518 ], + [ 7.7295210999999995, 47.3804751 ], + [ 7.7295041, 47.3804975 ], + [ 7.7294843, 47.3805187 ], + [ 7.7294618, 47.3805386 ], + [ 7.7294366, 47.3805571 ], + [ 7.7294092, 47.380574 ], + [ 7.7293992, 47.3805815 ], + [ 7.7293901, 47.3805896 ], + [ 7.729382, 47.3805982 ], + [ 7.7293751, 47.3806071 ], + [ 7.7293692, 47.3806165 ], + [ 7.7293646, 47.3806262 ], + [ 7.7293611, 47.3806361 ], + [ 7.7293589, 47.3806461 ], + [ 7.7293579, 47.3806562 ], + [ 7.7293483, 47.3809144 ], + [ 7.7293464, 47.3809264 ], + [ 7.7293431, 47.3809382 ], + [ 7.7293382, 47.3809498 ], + [ 7.7293318, 47.380961 ], + [ 7.729324, 47.3809718 ], + [ 7.7293148, 47.3809821 ], + [ 7.7293044, 47.3809919 ], + [ 7.7292033, 47.3810661 ], + [ 7.7291858, 47.3810797 ], + [ 7.7291674, 47.3810927 ], + [ 7.7291481, 47.3811051 ], + [ 7.7290219, 47.3811821 ], + [ 7.7290039, 47.3811958 ], + [ 7.7289877, 47.3812105 ], + [ 7.7289733, 47.381226 ], + [ 7.7289609, 47.3812423 ], + [ 7.7289505, 47.3812592 ], + [ 7.7289123, 47.381315 ], + [ 7.7288626, 47.3813682 ], + [ 7.7288095, 47.3814199 ], + [ 7.7287532, 47.38147 ], + [ 7.7286623, 47.3815515 ], + [ 7.7285017, 47.381716 ], + [ 7.7284483, 47.381771 ], + [ 7.7284011, 47.3818286 ], + [ 7.7283603, 47.3818883 ], + [ 7.7283559, 47.3818966 ], + [ 7.7283478, 47.3819134 ], + [ 7.7288106, 47.3819806 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns284", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Esel", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Esel", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Esel", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Esel", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.2438335, 47.1117746 ], + [ 8.2616031, 47.1275016 ], + [ 8.2637812, 47.1293276 ], + [ 8.2660965, 47.1310733 ], + [ 8.2685427, 47.1327338 ], + [ 8.2711129, 47.1343047 ], + [ 8.2738003, 47.1357815 ], + [ 8.2765974, 47.1371602 ], + [ 8.2794966, 47.1384371 ], + [ 8.2824899, 47.1396086 ], + [ 8.285569, 47.1406716 ], + [ 8.2887256, 47.141623 ], + [ 8.2919509, 47.1424604 ], + [ 8.2952361, 47.1431813 ], + [ 8.2985722, 47.1437838 ], + [ 8.30195, 47.1442663 ], + [ 8.3053603, 47.1446274 ], + [ 8.3087936, 47.1448661 ], + [ 8.3122405, 47.1449818 ], + [ 8.3156916, 47.1449742 ], + [ 8.3191373, 47.1448433 ], + [ 8.3225683, 47.1445893 ], + [ 8.325975, 47.1442132 ], + [ 8.3293482, 47.1437158 ], + [ 8.3326785, 47.1430985 ], + [ 8.3359568, 47.1423631 ], + [ 8.3391741, 47.1415115 ], + [ 8.3423215, 47.1405461 ], + [ 8.3453905, 47.1394695 ], + [ 8.3483726, 47.1382848 ], + [ 8.3512595, 47.1369951 ], + [ 8.3540435, 47.135604 ], + [ 8.3567168, 47.1341153 ], + [ 8.3592721, 47.1325332 ], + [ 8.3617024, 47.1308619 ], + [ 8.3640011, 47.129106 ], + [ 8.3661618, 47.1272704 ], + [ 8.3681786, 47.1253601 ], + [ 8.3700461, 47.1233804 ], + [ 8.371759, 47.1213366 ], + [ 8.3733128, 47.1192344 ], + [ 8.3747031, 47.1170795 ], + [ 8.3759263, 47.114878 ], + [ 8.3769788, 47.1126357 ], + [ 8.377858, 47.1103589 ], + [ 8.3785613, 47.1080538 ], + [ 8.379087, 47.1057267 ], + [ 8.3794335, 47.103384 ], + [ 8.3795999, 47.1010322 ], + [ 8.3795858, 47.0986776 ], + [ 8.3793913, 47.0963268 ], + [ 8.379017, 47.0939861 ], + [ 8.3784638, 47.091662 ], + [ 8.3777333, 47.0893609 ], + [ 8.3768275, 47.087089 ], + [ 8.3757491, 47.0848526 ], + [ 8.3745008, 47.0826578 ], + [ 8.3730861, 47.0805106 ], + [ 8.3715091, 47.0784169 ], + [ 8.3697739, 47.0763825 ], + [ 8.3678853, 47.0744128 ], + [ 8.3658486, 47.0725133 ], + [ 8.3480667, 47.0568022 ], + [ 8.3458887, 47.0549778 ], + [ 8.3435741, 47.0532337 ], + [ 8.3411293, 47.0515747 ], + [ 8.3385609, 47.0500054 ], + [ 8.335876, 47.0485301 ], + [ 8.333082, 47.0471528 ], + [ 8.3301865, 47.0458772 ], + [ 8.3271974, 47.0447069 ], + [ 8.324123, 47.0436451 ], + [ 8.3209715, 47.0426946 ], + [ 8.3177518, 47.041858 ], + [ 8.3144725, 47.0411377 ], + [ 8.3111426, 47.0405356 ], + [ 8.3077712, 47.0400534 ], + [ 8.304367599999999, 47.0396924 ], + [ 8.3009411, 47.0394535 ], + [ 8.297501, 47.0393375 ], + [ 8.2940567, 47.0393445 ], + [ 8.2906176, 47.0394748 ], + [ 8.2871933, 47.0397277 ], + [ 8.2837929, 47.0401028 ], + [ 8.280425900000001, 47.0405988 ], + [ 8.2771013, 47.0412146 ], + [ 8.2738284, 47.0419484 ], + [ 8.270616, 47.0427981 ], + [ 8.267473, 47.0437616 ], + [ 8.264408, 47.0448361 ], + [ 8.2614293, 47.0460187 ], + [ 8.258545, 47.0473061 ], + [ 8.2557632, 47.0486949 ], + [ 8.2530914, 47.0501813 ], + [ 8.2505368, 47.0517611 ], + [ 8.2481067, 47.0534301 ], + [ 8.2458074, 47.0551836 ], + [ 8.2436455, 47.057017 ], + [ 8.2416268, 47.0589252 ], + [ 8.2397569, 47.0609029 ], + [ 8.2380408, 47.0629447 ], + [ 8.2364834, 47.0650451 ], + [ 8.2350888, 47.0671983 ], + [ 8.233861, 47.0693984 ], + [ 8.2328033, 47.0716393 ], + [ 8.2319186, 47.073915 ], + [ 8.2312094, 47.0762193 ], + [ 8.2306776, 47.0785457 ], + [ 8.2303248, 47.0808879 ], + [ 8.2301519, 47.0832395 ], + [ 8.2301594, 47.0855941 ], + [ 8.2303473, 47.0879452 ], + [ 8.2307151, 47.0902864 ], + [ 8.2312618, 47.0926112 ], + [ 8.2319861, 47.0949132 ], + [ 8.2328858, 47.0971863 ], + [ 8.2339586, 47.099424 ], + [ 8.2352015, 47.1016203 ], + [ 8.2366111, 47.1037692 ], + [ 8.2381837, 47.1058647 ], + [ 8.2399148, 47.1079012 ], + [ 8.2417998, 47.1098729 ], + [ 8.2438335, 47.1117746 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSME-01", + "country" : "CHE", + "name" : [ + { + "text" : "LSME Emmen", + "lang" : "de-CH" + }, + { + "text" : "LSME Emmen", + "lang" : "fr-CH" + }, + { + "text" : "LSME Emmen", + "lang" : "it-CH" + }, + { + "text" : "LSME Emmen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Special Flight Office (SFO)", + "lang" : "de-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "fr-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "it-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "en-GB" + } + ], + "siteURL" : "https://skyguide.ch/services/special-flights", + "email" : "specialflight@skyguide.ch", + "phone" : "0041439316236", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.074042, 46.1881336 ], + [ 8.074035, 46.1879924 ], + [ 8.0740174, 46.1878516 ], + [ 8.0739893, 46.1877117 ], + [ 8.0739506, 46.187573 ], + [ 8.0739015, 46.1874359 ], + [ 8.0738421, 46.1873007 ], + [ 8.0737727, 46.1871679 ], + [ 8.0736933, 46.1870378 ], + [ 8.0736043, 46.1869108 ], + [ 8.0735057, 46.1867872 ], + [ 8.0733981, 46.1866673 ], + [ 8.0732815, 46.1865515 ], + [ 8.0731564, 46.1864402 ], + [ 8.073023, 46.1863335 ], + [ 8.0728818, 46.1862318 ], + [ 8.0727331, 46.1861353 ], + [ 8.0725774, 46.1860445 ], + [ 8.072415, 46.1859594 ], + [ 8.0722464, 46.1858803 ], + [ 8.0720721, 46.1858074 ], + [ 8.0718926, 46.185741 ], + [ 8.0717083, 46.1856812 ], + [ 8.0715197, 46.1856282 ], + [ 8.0713274, 46.1855821 ], + [ 8.0711319, 46.1855431 ], + [ 8.0709338, 46.1855112 ], + [ 8.0707334, 46.1854866 ], + [ 8.0705316, 46.1854693 ], + [ 8.0703287, 46.1854593 ], + [ 8.0701253, 46.1854567 ], + [ 8.069922, 46.1854616 ], + [ 8.0697193, 46.1854738 ], + [ 8.0695179, 46.1854934 ], + [ 8.0693181, 46.1855202 ], + [ 8.0691207, 46.1855543 ], + [ 8.0689262, 46.1855955 ], + [ 8.068735, 46.1856438 ], + [ 8.0685477, 46.1856989 ], + [ 8.0683648, 46.1857607 ], + [ 8.0681868, 46.1858291 ], + [ 8.0680142, 46.1859039 ], + [ 8.0678475, 46.1859849 ], + [ 8.0676871, 46.1860718 ], + [ 8.0675335, 46.1861644 ], + [ 8.0673871, 46.1862625 ], + [ 8.0672482, 46.1863657 ], + [ 8.0671173, 46.1864739 ], + [ 8.0669948, 46.1865867 ], + [ 8.0668809, 46.1867037 ], + [ 8.066776, 46.1868248 ], + [ 8.0666804, 46.1869495 ], + [ 8.0665943, 46.1870775 ], + [ 8.066518, 46.1872085 ], + [ 8.0664516, 46.187342 ], + [ 8.0663954, 46.1874778 ], + [ 8.0663495, 46.1876154 ], + [ 8.066314, 46.1877546 ], + [ 8.0662891, 46.1878948 ], + [ 8.0662747, 46.1880357 ], + [ 8.066271, 46.188177 ], + [ 8.066278, 46.1883182 ], + [ 8.0662955, 46.1884589 ], + [ 8.0663237, 46.1885989 ], + [ 8.0663624, 46.1887376 ], + [ 8.0664115, 46.1888747 ], + [ 8.0664708, 46.1890098 ], + [ 8.0665402, 46.1891426 ], + [ 8.0666196, 46.1892727 ], + [ 8.0667086, 46.1893998 ], + [ 8.0668071, 46.1895234 ], + [ 8.0669148, 46.1896433 ], + [ 8.0670314, 46.189759 ], + [ 8.0671565, 46.1898704 ], + [ 8.0672899, 46.1899771 ], + [ 8.0674311, 46.1900788 ], + [ 8.0675797, 46.1901753 ], + [ 8.0677355, 46.1902662 ], + [ 8.0678979, 46.1903513 ], + [ 8.0680664, 46.1904304 ], + [ 8.0682408, 46.1905032 ], + [ 8.0684203, 46.1905696 ], + [ 8.0686046, 46.1906294 ], + [ 8.0687932, 46.1906825 ], + [ 8.0689855, 46.1907285 ], + [ 8.069181, 46.1907676 ], + [ 8.0693792, 46.1907995 ], + [ 8.0695795, 46.1908241 ], + [ 8.0697814, 46.1908414 ], + [ 8.0699844, 46.1908514 ], + [ 8.0701878, 46.1908539 ], + [ 8.0703911, 46.1908491 ], + [ 8.0705938, 46.1908369 ], + [ 8.0707952, 46.1908173 ], + [ 8.070995, 46.1907904 ], + [ 8.0711924, 46.1907564 ], + [ 8.071387, 46.1907151 ], + [ 8.0715782, 46.1906669 ], + [ 8.0717655, 46.1906118 ], + [ 8.0719484, 46.1905499 ], + [ 8.0721264, 46.1904815 ], + [ 8.072299, 46.1904067 ], + [ 8.0724657, 46.1903258 ], + [ 8.0726261, 46.1902388 ], + [ 8.0727797, 46.1901462 ], + [ 8.0729262, 46.1900481 ], + [ 8.073065, 46.1899449 ], + [ 8.0731959, 46.1898367 ], + [ 8.0733184, 46.1897239 ], + [ 8.0734323, 46.1896068 ], + [ 8.0735372, 46.1894858 ], + [ 8.0736328, 46.1893611 ], + [ 8.0737189, 46.1892331 ], + [ 8.0737952, 46.1891021 ], + [ 8.0738616, 46.1889685 ], + [ 8.0739178, 46.1888328 ], + [ 8.0739636, 46.1886951 ], + [ 8.0739991, 46.188556 ], + [ 8.074024, 46.1884158 ], + [ 8.0740383, 46.1882748 ], + [ 8.074042, 46.1881336 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0041", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Gabi", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Gabi", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Gabi", + "lang" : "it-CH" + }, + { + "text" : "Substation Gabi", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.2549593, 47.2992671 ], + [ 8.2674988, 47.3063737 ], + [ 8.2806505, 47.3101463 ], + [ 8.2956266, 47.3121049 ], + [ 8.3073917, 47.3117471 ], + [ 8.3039992, 47.2982801 ], + [ 8.3039482, 47.2951322 ], + [ 8.3210867, 47.292124 ], + [ 8.3253743, 47.2875936 ], + [ 8.3214489, 47.2820467 ], + [ 8.3419047, 47.2253987 ], + [ 8.3274255, 47.2202041 ], + [ 8.3127278, 47.217618 ], + [ 8.2974162, 47.2178231 ], + [ 8.2549593, 47.2992671 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZU001", + "country" : "CHE", + "name" : [ + { + "text" : "LSZU Buttwil", + "lang" : "de-CH" + }, + { + "text" : "LSZU Buttwil", + "lang" : "fr-CH" + }, + { + "text" : "LSZU Buttwil", + "lang" : "it-CH" + }, + { + "text" : "LSZU Buttwil", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Buttwil Airport AG", + "lang" : "de-CH" + }, + { + "text" : "Buttwil Airport AG", + "lang" : "fr-CH" + }, + { + "text" : "Buttwil Airport AG", + "lang" : "it-CH" + }, + { + "text" : "Buttwil Airport AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Patrik Eichenberger", + "lang" : "de-CH" + }, + { + "text" : "Patrik Eichenberger", + "lang" : "fr-CH" + }, + { + "text" : "Patrik Eichenberger", + "lang" : "it-CH" + }, + { + "text" : "Patrik Eichenberger", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.flugschule-eichenberger.ch/uas.html", + "email" : "patrik@flugschule-eichenberger.ch", + "phone" : "0041566755050", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P02DT12H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.9456454, 47.4169396 ], + [ 7.9449335, 47.4169873 ], + [ 7.9444514999999996, 47.4170457 ], + [ 7.944023, 47.4172099 ], + [ 7.9437337, 47.4173519 ], + [ 7.9434032, 47.4175961 ], + [ 7.9433997, 47.4175994 ], + [ 7.943382, 47.4176133 ], + [ 7.9433615, 47.4176308 ], + [ 7.9433416, 47.4176487 ], + [ 7.9433224, 47.417667 ], + [ 7.9433038, 47.4176856 ], + [ 7.9432981, 47.4176939 ], + [ 7.9432916, 47.417699 ], + [ 7.943286, 47.4177044 ], + [ 7.9432856, 47.4177048 ], + [ 7.9432852, 47.4177052 ], + [ 7.9432849, 47.4177056 ], + [ 7.9431683, 47.4178799 ], + [ 7.9439204, 47.4181303 ], + [ 7.945165, 47.4185484 ], + [ 7.9458997, 47.4188116 ], + [ 7.9469726, 47.4191952 ], + [ 7.9469978999999995, 47.4191718 ], + [ 7.9472892, 47.418876 ], + [ 7.9476427, 47.4185168 ], + [ 7.9476748, 47.4184938 ], + [ 7.9478943, 47.4186272 ], + [ 7.9479062, 47.4186335 ], + [ 7.9479187, 47.4186393 ], + [ 7.9479316, 47.4186446 ], + [ 7.9479448999999995, 47.4186494 ], + [ 7.9479586, 47.4186537 ], + [ 7.9479726, 47.4186575 ], + [ 7.9479869999999995, 47.4186607 ], + [ 7.9480015999999996, 47.4186633 ], + [ 7.9480163, 47.4186654 ], + [ 7.9480313, 47.4186669 ], + [ 7.9480463, 47.4186678 ], + [ 7.9480614, 47.4186681 ], + [ 7.9480765, 47.4186679 ], + [ 7.9482805, 47.4186497 ], + [ 7.9484839, 47.4186446 ], + [ 7.9489045, 47.4187145 ], + [ 7.9492167, 47.4187851 ], + [ 7.9494691, 47.4188226 ], + [ 7.949713, 47.4188279 ], + [ 7.9499828, 47.418786 ], + [ 7.9502223999999995, 47.4187452 ], + [ 7.9504393, 47.4187196 ], + [ 7.9506675, 47.4187231 ], + [ 7.9509887, 47.4187783 ], + [ 7.9515606, 47.4189301 ], + [ 7.951585, 47.4189352 ], + [ 7.9516096, 47.4189397 ], + [ 7.9516344, 47.4189437 ], + [ 7.9516594, 47.4189472 ], + [ 7.9516845, 47.4189501 ], + [ 7.9517098, 47.4189525 ], + [ 7.9517351, 47.4189543 ], + [ 7.9517605, 47.4189556 ], + [ 7.951786, 47.4189563 ], + [ 7.9518115, 47.4189565 ], + [ 7.9518366, 47.4189558 ], + [ 7.9518616, 47.4189547 ], + [ 7.9518865, 47.4189529 ], + [ 7.9519114, 47.4189507 ], + [ 7.9519361, 47.4189479 ], + [ 7.9519607, 47.4189446 ], + [ 7.9519851, 47.4189408 ], + [ 7.9520094, 47.4189364 ], + [ 7.9520333999999995, 47.4189316 ], + [ 7.9520572, 47.4189262 ], + [ 7.952183, 47.4188901 ], + [ 7.952292, 47.4188331 ], + [ 7.952362, 47.4187122 ], + [ 7.9523839, 47.4185212 ], + [ 7.9523415, 47.4184552 ], + [ 7.9520853, 47.4184044 ], + [ 7.9518181, 47.418314 ], + [ 7.9515733, 47.4182006 ], + [ 7.9513128, 47.4181038 ], + [ 7.9510364, 47.4180386 ], + [ 7.9507426, 47.4179987 ], + [ 7.9504451, 47.4179878 ], + [ 7.9501354, 47.4180153 ], + [ 7.9498413, 47.4180639 ], + [ 7.9495816, 47.4180897 ], + [ 7.949312, 47.4180761 ], + [ 7.9490589, 47.4180294 ], + [ 7.9488235, 47.4179532 ], + [ 7.9485934, 47.4178563 ], + [ 7.9483639, 47.4177767 ], + [ 7.9482049, 47.4177355 ], + [ 7.9471736, 47.4175747 ], + [ 7.9468767, 47.4175037 ], + [ 7.9466068, 47.4174146 ], + [ 7.9463496, 47.4172768 ], + [ 7.9461198, 47.4170785 ], + [ 7.9461079, 47.4170667 ], + [ 7.9460953, 47.4170553 ], + [ 7.946082, 47.4170442 ], + [ 7.9460681, 47.4170334 ], + [ 7.9460536, 47.4170231 ], + [ 7.9460385, 47.4170131 ], + [ 7.9460229, 47.4170036 ], + [ 7.9460067, 47.4169945 ], + [ 7.9459899, 47.4169858 ], + [ 7.9459727, 47.4169776 ], + [ 7.945955, 47.4169699 ], + [ 7.9459368999999995, 47.4169626 ], + [ 7.9459184, 47.4169559 ], + [ 7.9458982, 47.4169512 ], + [ 7.9458778, 47.4169471 ], + [ 7.9458571, 47.4169435 ], + [ 7.9458362, 47.4169405 ], + [ 7.9458152, 47.4169381 ], + [ 7.9457941, 47.4169363 ], + [ 7.9457728, 47.416935 ], + [ 7.9457515, 47.4169343 ], + [ 7.9457302, 47.4169342 ], + [ 7.9457089, 47.4169347 ], + [ 7.9456877, 47.4169358 ], + [ 7.9456665, 47.4169374 ], + [ 7.9456454, 47.4169396 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns169", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Schafmatt", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Schafmatt", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Schafmatt", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Schafmatt", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.0783902, 46.7539996 ], + [ 7.0774576, 46.7540992 ], + [ 7.0756401, 46.7544092 ], + [ 7.0734232, 46.7545712 ], + [ 7.0703738, 46.7547287 ], + [ 7.070106, 46.7548412 ], + [ 7.0701713999999996, 46.7559946 ], + [ 7.0814234, 46.7552901 ], + [ 7.0813885, 46.7546279 ], + [ 7.0812964, 46.7544999 ], + [ 7.0784552, 46.754652 ], + [ 7.0783902, 46.7539996 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSGE002", + "country" : "CHE", + "name" : [ + { + "text" : "LSGE Ecuvillens (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSGE Ecuvillens (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSGE Ecuvillens (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSGE Ecuvillens (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Aérodrome Régional Fribourg Ecuvillens SA", + "lang" : "de-CH" + }, + { + "text" : "Aérodrome Régional Fribourg Ecuvillens SA", + "lang" : "fr-CH" + }, + { + "text" : "Aérodrome Régional Fribourg Ecuvillens SA", + "lang" : "it-CH" + }, + { + "text" : "Aérodrome Régional Fribourg Ecuvillens SA", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Chef d'aérodrome", + "lang" : "de-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "fr-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "it-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.aerodrome-ecuvillens.ch/index.php?page=./drones/drones_LSGE.htm", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.2119578, 46.8075512 ], + [ 7.2080871, 46.8093973 ], + [ 7.207016, 46.8128126 ], + [ 7.2078843, 46.813656 ], + [ 7.2143951, 46.8138732 ], + [ 7.2145902, 46.8113735 ], + [ 7.2151635, 46.8076768 ], + [ 7.2119578, 46.8075512 ] + ] + ], + "layer" : { + "upper" : 300, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "FR008", + "country" : "CHE", + "name" : [ + { + "text" : "HFR Tavel", + "lang" : "de-CH" + }, + { + "text" : "HFR Tavel", + "lang" : "fr-CH" + }, + { + "text" : "HFR Tavel", + "lang" : "it-CH" + }, + { + "text" : "HFR Tavel", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Freiburger Spital (HFR)", + "lang" : "de-CH" + }, + { + "text" : "Hôpital fribourgeois (HFR)", + "lang" : "fr-CH" + }, + { + "text" : "Hôpital fribourgeois (HFR)", + "lang" : "it-CH" + }, + { + "text" : "Hôpital fribourgeois (HFR)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Die Generaldirektion", + "lang" : "de-CH" + }, + { + "text" : "La direction générale", + "lang" : "fr-CH" + }, + { + "text" : "La direction générale", + "lang" : "it-CH" + }, + { + "text" : "La direction générale", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Sébastien Ruffieux, secrétaire général", + "lang" : "de-CH" + }, + { + "text" : "Sébastien Ruffieux, secrétaire général", + "lang" : "fr-CH" + }, + { + "text" : "Sébastien Ruffieux, secrétaire général", + "lang" : "it-CH" + }, + { + "text" : "Sébastien Ruffieux, secrétaire général", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.fr.ch/police-et-securite/criminalite-ordre-public-et-circulation/drones-legislation-et-demandes-de-derogation", + "email" : "sg@h-fr.ch", + "phone" : "0041263060110", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8691993, 47.5056319 ], + [ 7.869188, 47.5054043 ], + [ 7.8691791, 47.5052241 ], + [ 7.8696863, 47.5052023 ], + [ 7.8702449, 47.5051365 ], + [ 7.8702361, 47.5050657 ], + [ 7.8705992, 47.50505 ], + [ 7.8709643, 47.505005 ], + [ 7.8711844, 47.5050445 ], + [ 7.8714882, 47.504992 ], + [ 7.8713163999999995, 47.5043771 ], + [ 7.8713406, 47.504379 ], + [ 7.8713649, 47.5043804 ], + [ 7.8713892, 47.5043812 ], + [ 7.8714136, 47.5043814 ], + [ 7.8714379999999995, 47.5043811 ], + [ 7.8714623, 47.5043803 ], + [ 7.8714866, 47.5043789 ], + [ 7.8715108, 47.504377 ], + [ 7.8715349, 47.5043745 ], + [ 7.8715588, 47.5043715 ], + [ 7.8715826, 47.5043679 ], + [ 7.8716062, 47.5043638 ], + [ 7.8716295, 47.5043591 ], + [ 7.8716526, 47.5043539 ], + [ 7.8716755, 47.5043482 ], + [ 7.871698, 47.504342 ], + [ 7.8717203, 47.5043352 ], + [ 7.8717421, 47.504328 ], + [ 7.8717637, 47.5043203 ], + [ 7.8717848, 47.5043121 ], + [ 7.8718055, 47.5043034 ], + [ 7.8718257, 47.5042943 ], + [ 7.872024, 47.504202 ], + [ 7.8721844999999995, 47.5041578 ], + [ 7.8724114, 47.5041207 ], + [ 7.87256, 47.504091 ], + [ 7.873016, 47.50399 ], + [ 7.8732691, 47.5039339 ], + [ 7.8732529, 47.5038997 ], + [ 7.8732745, 47.5038961 ], + [ 7.8732959000000005, 47.503892 ], + [ 7.873317, 47.5038872 ], + [ 7.8733377, 47.5038818 ], + [ 7.8733581, 47.5038759 ], + [ 7.8733782, 47.5038694 ], + [ 7.8733978, 47.5038623 ], + [ 7.8734169, 47.5038547 ], + [ 7.8734341, 47.5038458 ], + [ 7.8734507, 47.5038365 ], + [ 7.8734667, 47.5038268 ], + [ 7.8734821, 47.5038166 ], + [ 7.8734969, 47.5038059 ], + [ 7.8735111, 47.5037949 ], + [ 7.8735246, 47.5037835 ], + [ 7.8735374, 47.5037718 ], + [ 7.873553, 47.5037571 ], + [ 7.8728145, 47.5033687 ], + [ 7.8728058, 47.5033778 ], + [ 7.8727965, 47.5033865 ], + [ 7.8727865, 47.5033949 ], + [ 7.8727759, 47.503403 ], + [ 7.8727647, 47.5034106 ], + [ 7.8727529, 47.5034179 ], + [ 7.8727405, 47.5034247 ], + [ 7.8727277, 47.5034311 ], + [ 7.8727143, 47.503437 ], + [ 7.8727006, 47.5034424 ], + [ 7.8726864, 47.5034473 ], + [ 7.8718816, 47.5036902 ], + [ 7.8718498, 47.5037 ], + [ 7.8718177, 47.5037093 ], + [ 7.8717852, 47.5037182 ], + [ 7.8717524999999995, 47.5037264 ], + [ 7.8717194, 47.5037342 ], + [ 7.8716861, 47.5037414 ], + [ 7.8716526, 47.5037481 ], + [ 7.8716188, 47.5037542 ], + [ 7.8715848, 47.5037598 ], + [ 7.8715506, 47.5037648 ], + [ 7.8715163, 47.5037693 ], + [ 7.8714818, 47.5037732 ], + [ 7.8714471, 47.5037766 ], + [ 7.8714124, 47.5037794 ], + [ 7.8710836, 47.5037971 ], + [ 7.8707484, 47.5038101 ], + [ 7.8698616999999995, 47.5038134 ], + [ 7.8697032, 47.5038165 ], + [ 7.8692583, 47.5038412 ], + [ 7.8689234, 47.5038566 ], + [ 7.8683331, 47.5039323 ], + [ 7.8684535, 47.504393 ], + [ 7.8684588, 47.5044132 ], + [ 7.8686612, 47.504371 ], + [ 7.8686833, 47.5043664 ], + [ 7.8692317, 47.5043665 ], + [ 7.8694959, 47.5043417 ], + [ 7.8697168, 47.5043377 ], + [ 7.8699426, 47.5043847 ], + [ 7.8702242, 47.5043931 ], + [ 7.8704039, 47.5043694 ], + [ 7.8704051, 47.504386 ], + [ 7.8704118, 47.5044217 ], + [ 7.870198, 47.5044577 ], + [ 7.8701585, 47.5044605 ], + [ 7.8699382, 47.5044577 ], + [ 7.8691526, 47.5045181 ], + [ 7.8689769, 47.5045377 ], + [ 7.8684988, 47.5045991 ], + [ 7.8683203, 47.5046228 ], + [ 7.868097, 47.5046648 ], + [ 7.8678037, 47.5047045 ], + [ 7.8671571, 47.5047724 ], + [ 7.867192, 47.5048466 ], + [ 7.8666903, 47.5050272 ], + [ 7.8665833, 47.5051013 ], + [ 7.8665807, 47.505133 ], + [ 7.8664994, 47.5052057 ], + [ 7.8664041000000005, 47.5052814 ], + [ 7.8663841, 47.5053053 ], + [ 7.8663711, 47.505347 ], + [ 7.8663821, 47.5053915 ], + [ 7.8664373, 47.5054907 ], + [ 7.8664869, 47.5055663 ], + [ 7.8664973, 47.5055819 ], + [ 7.8666953, 47.5055317 ], + [ 7.866762, 47.5055148 ], + [ 7.8667783, 47.5056572 ], + [ 7.8667817, 47.5056877 ], + [ 7.8668162, 47.5057886 ], + [ 7.8667262000000004, 47.5058141 ], + [ 7.8667354, 47.5058699 ], + [ 7.8667122, 47.5059216 ], + [ 7.8668131, 47.5059641 ], + [ 7.8671223, 47.5059975 ], + [ 7.8674301, 47.505753 ], + [ 7.8691993, 47.5056319 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns295", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Rugen", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Rugen", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Rugen", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Rugen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.9123055, 46.98978 ], + [ 6.9126491, 46.9898114 ], + [ 6.9127098, 46.989816 ], + [ 6.9127172, 46.9898164 ], + [ 6.9128313, 46.9898198 ], + [ 6.9128386, 46.9898198 ], + [ 6.9129527, 46.9898164 ], + [ 6.91296, 46.989815899999996 ], + [ 6.9130731999999995, 46.9898057 ], + [ 6.9130804999999995, 46.9898048 ], + [ 6.9131920000000004, 46.989788 ], + [ 6.9131991, 46.9897867 ], + [ 6.913308, 46.9897632 ], + [ 6.9133149, 46.9897615 ], + [ 6.9134205, 46.9897317 ], + [ 6.9134271, 46.9897296 ], + [ 6.9135285, 46.9896936 ], + [ 6.9135349, 46.9896911 ], + [ 6.9136313, 46.9896492 ], + [ 6.9136372999999995, 46.9896463 ], + [ 6.9137281, 46.9895989 ], + [ 6.9137337, 46.9895957 ], + [ 6.9138181, 46.9895431 ], + [ 6.9138234, 46.9895395 ], + [ 6.9139008, 46.9894821 ], + [ 6.9139055, 46.9894782 ], + [ 6.9139753, 46.9894164 ], + [ 6.9139796, 46.9894123 ], + [ 6.9140413, 46.989346499999996 ], + [ 6.914045, 46.9893422 ], + [ 6.9140981, 46.989273 ], + [ 6.9141013000000004, 46.9892685 ], + [ 6.9141454, 46.9891964 ], + [ 6.914148, 46.9891917 ], + [ 6.9141829, 46.9891173 ], + [ 6.9141848, 46.9891124 ], + [ 6.9142101, 46.9890362 ], + [ 6.9142114, 46.9890313 ], + [ 6.9142269, 46.9889539 ], + [ 6.9142276, 46.9889489 ], + [ 6.9142333, 46.9888715 ], + [ 6.9142333, 46.9888667 ], + [ 6.9142294, 46.988791 ], + [ 6.9142289, 46.9887861 ], + [ 6.9142157, 46.9887109 ], + [ 6.9142146, 46.9887061 ], + [ 6.9141922000000005, 46.9886319 ], + [ 6.9141904, 46.9886272 ], + [ 6.914159, 46.9885545 ], + [ 6.9141566999999995, 46.9885499 ], + [ 6.9141165, 46.9884793 ], + [ 6.9141136, 46.9884749 ], + [ 6.9140648, 46.9884069 ], + [ 6.9140614, 46.9884026 ], + [ 6.9140044, 46.9883376 ], + [ 6.9140005, 46.9883336 ], + [ 6.9139358, 46.9882721 ], + [ 6.9139313, 46.9882683 ], + [ 6.9138593, 46.9882108 ], + [ 6.9138544, 46.9882072 ], + [ 6.9137755, 46.9881541 ], + [ 6.9137702, 46.9881508 ], + [ 6.9136851, 46.9881024 ], + [ 6.9136793999999995, 46.9880995 ], + [ 6.9135886, 46.9880561 ], + [ 6.9135826, 46.9880535 ], + [ 6.9134868, 46.9880155 ], + [ 6.9134805, 46.9880133 ], + [ 6.9134307, 46.9879963 ], + [ 6.9131592, 46.9879088 ], + [ 6.9131322, 46.9879003 ], + [ 6.9131284, 46.9878992 ], + [ 6.913023, 46.9878708 ], + [ 6.9130191, 46.9878699 ], + [ 6.9129105, 46.9878478 ], + [ 6.9129065, 46.9878472 ], + [ 6.912896, 46.9878457 ], + [ 6.912795, 46.9878242 ], + [ 6.9127908, 46.987823399999996 ], + [ 6.9126738, 46.9878063 ], + [ 6.9126695, 46.9878058 ], + [ 6.9126206, 46.9878009 ], + [ 6.9123225999999995, 46.9877748 ], + [ 6.9122616, 46.9877705 ], + [ 6.9122542, 46.9877701 ], + [ 6.9121405, 46.9877671 ], + [ 6.9121331999999995, 46.9877672 ], + [ 6.9120194999999995, 46.987771 ], + [ 6.9120121999999995, 46.9877715 ], + [ 6.9118994, 46.987782 ], + [ 6.9118922, 46.9877829 ], + [ 6.9117812, 46.9878001 ], + [ 6.9117741, 46.9878014 ], + [ 6.9116657, 46.9878251 ], + [ 6.9116588, 46.9878268 ], + [ 6.9115538, 46.9878569 ], + [ 6.9115472, 46.987859 ], + [ 6.9114463, 46.9878951 ], + [ 6.91144, 46.9878976 ], + [ 6.9113441, 46.9879396 ], + [ 6.9113381, 46.9879425 ], + [ 6.9112479, 46.9879899 ], + [ 6.9112422, 46.9879932 ], + [ 6.9111584, 46.9880458 ], + [ 6.9111532, 46.9880494 ], + [ 6.9110762999999995, 46.9881068 ], + [ 6.9110715, 46.9881106 ], + [ 6.9110022, 46.9881723 ], + [ 6.9109979, 46.9881764 ], + [ 6.9109366, 46.9882421 ], + [ 6.9109329, 46.9882464 ], + [ 6.9108801, 46.9883154 ], + [ 6.910877, 46.9883199 ], + [ 6.9108332, 46.9883918 ], + [ 6.9108306, 46.9883965 ], + [ 6.9107959999999995, 46.9884707 ], + [ 6.9107941, 46.9884756 ], + [ 6.910769, 46.9885515 ], + [ 6.9107677, 46.9885565 ], + [ 6.9107522, 46.9886336 ], + [ 6.9107515, 46.9886386 ], + [ 6.9107459, 46.9887178 ], + [ 6.9107459, 46.9887231 ], + [ 6.9107506999999995, 46.9888041 ], + [ 6.9107514, 46.9888093 ], + [ 6.9107668, 46.9888896 ], + [ 6.9107681, 46.9888948 ], + [ 6.9107941, 46.9889739 ], + [ 6.9107961, 46.9889789 ], + [ 6.9108324, 46.9890561 ], + [ 6.910835, 46.989061 ], + [ 6.9108813, 46.9891356 ], + [ 6.9108846, 46.9891403 ], + [ 6.9109405, 46.9892118 ], + [ 6.9109444, 46.9892163 ], + [ 6.9110094, 46.989284 ], + [ 6.9110139, 46.9892882 ], + [ 6.9110876, 46.9893517 ], + [ 6.9110927, 46.9893556 ], + [ 6.9111744, 46.9894143 ], + [ 6.9111799, 46.9894179 ], + [ 6.9112691, 46.9894713 ], + [ 6.911275, 46.9894746 ], + [ 6.9113708, 46.9895222 ], + [ 6.9113772, 46.9895251 ], + [ 6.9114789, 46.9895667 ], + [ 6.9114856, 46.9895692 ], + [ 6.9115511, 46.9895917 ], + [ 6.9118396, 46.9896841 ], + [ 6.9118526, 46.9896882 ], + [ 6.9118659000000005, 46.9896923 ], + [ 6.9119158, 46.989707 ], + [ 6.9119293, 46.9897108 ], + [ 6.9119801, 46.9897241 ], + [ 6.9119939, 46.9897274 ], + [ 6.9120587, 46.9897421 ], + [ 6.912111, 46.9897525 ], + [ 6.9121251, 46.989755099999996 ], + [ 6.9121921, 46.9897661 ], + [ 6.9123055, 46.98978 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "NE01", + "country" : "CHE", + "name" : [ + { + "text" : "Bâtiment administratif des Poudrières BAP", + "lang" : "de-CH" + }, + { + "text" : "Bâtiment administratif des Poudrières BAP", + "lang" : "fr-CH" + }, + { + "text" : "Bâtiment administratif des Poudrières BAP", + "lang" : "it-CH" + }, + { + "text" : "Bâtiment administratif des Poudrières BAP", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "regulationExemption" : "YES", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Police Neuchâteloise", + "lang" : "de-CH" + }, + { + "text" : "Police Neuchâteloise", + "lang" : "fr-CH" + }, + { + "text" : "Police Neuchâteloise", + "lang" : "it-CH" + }, + { + "text" : "Police Neuchâteloise", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "PN - Rens et opérations", + "lang" : "de-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "fr-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "it-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "PN - Rens et opérations", + "lang" : "de-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "fr-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "it-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ne.ch/autorites/DESC/PONE/Pages/Drones.aspx", + "email" : "Police.Neuchateloise@ne.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.1817454, 46.2281964 ], + [ 6.1825266, 46.2290969 ], + [ 6.1825659, 46.2291269 ], + [ 6.1837688, 46.2297471 ], + [ 6.1852202, 46.2300056 ], + [ 6.1867047, 46.2298639 ], + [ 6.1880017, 46.2293433 ], + [ 6.1880626, 46.2293063 ], + [ 6.1888516, 46.228647 ], + [ 6.1893028, 46.2278493 ], + [ 6.189371, 46.2269936 ], + [ 6.1890491, 46.2261662 ], + [ 6.1883697, 46.2254506 ], + [ 6.1883289, 46.2254197 ], + [ 6.1871062, 46.2247977 ], + [ 6.1856337, 46.2245474 ], + [ 6.1841353, 46.224707 ], + [ 6.1828386, 46.2252521 ], + [ 6.1827792, 46.2252899 ], + [ 6.1818821, 46.2261367 ], + [ 6.1815191, 46.2271571 ], + [ 6.1817454, 46.2281964 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-48", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.1370737, 46.2952267 ], + [ 6.1371833, 46.2952266 ], + [ 6.1376079, 46.2955431 ], + [ 6.1386725, 46.2959535 ], + [ 6.139868, 46.2961157 ], + [ 6.1410773, 46.2960138 ], + [ 6.142182, 46.2956579 ], + [ 6.1423138999999995, 46.2955964 ], + [ 6.1432058, 46.2950213 ], + [ 6.1437976, 46.2942832 ], + [ 6.1440314, 46.2934546 ], + [ 6.1438843, 46.2926164 ], + [ 6.1433708, 46.2918507 ], + [ 6.143137, 46.2916098 ], + [ 6.1423068, 46.2909914 ], + [ 6.1412416, 46.2905812 ], + [ 6.1401388, 46.290432 ], + [ 6.1393417, 46.2900401 ], + [ 6.1378955, 46.2898024 ], + [ 6.1378848, 46.2898021 ], + [ 6.1368327, 46.289872 ], + [ 6.1358464, 46.2901354 ], + [ 6.1349988, 46.290573 ], + [ 6.1349375, 46.2906147 ], + [ 6.1343084, 46.2911734 ], + [ 6.1339108, 46.2918264 ], + [ 6.1337721, 46.2925287 ], + [ 6.1337721, 46.292536 ], + [ 6.1339006, 46.2932354 ], + [ 6.1342861, 46.2938878 ], + [ 6.1349022, 46.2944488 ], + [ 6.1349221, 46.2944627 ], + [ 6.1359102, 46.2949634 ], + [ 6.1370737, 46.2952267 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-35", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.2849264, 46.6689221 ], + [ 7.2859325, 46.6684782 ], + [ 7.2808646, 46.6632404 ], + [ 7.2797344, 46.6636616 ], + [ 7.2849264, 46.6689221 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSWS002", + "country" : "CHE", + "name" : [ + { + "text" : "LSWS Lac Noir (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSWS Lac Noir (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSWS Lac Noir (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSWS Lac Noir (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "startDateTime" : "2024-11-01T00:00:00+01:00", + "endDateTime" : "2025-04-01T00:00:00+02:00" + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Aérodrome Régional Fribourg Ecuvillens SA", + "lang" : "de-CH" + }, + { + "text" : "Aérodrome Régional Fribourg Ecuvillens SA", + "lang" : "fr-CH" + }, + { + "text" : "Aérodrome Régional Fribourg Ecuvillens SA", + "lang" : "it-CH" + }, + { + "text" : "Aérodrome Régional Fribourg Ecuvillens SA", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Chef d'aérodrome", + "lang" : "de-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "fr-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "it-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.aerodrome-ecuvillens.ch/index.php?page=./drones/drones_LSGE.htm", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7631569, 47.4135455 ], + [ 7.7630595, 47.4132726 ], + [ 7.7626513, 47.412237 ], + [ 7.7626484, 47.412234 ], + [ 7.7626405, 47.4122256 ], + [ 7.7626309, 47.4122143 ], + [ 7.7626219, 47.4122028 ], + [ 7.7626138000000005, 47.4121909 ], + [ 7.7626074, 47.4121805 ], + [ 7.7626015, 47.4121698 ], + [ 7.7625963, 47.412159 ], + [ 7.762525, 47.4122031 ], + [ 7.7624327, 47.4121673 ], + [ 7.7621258, 47.4120656 ], + [ 7.7619407, 47.4120094 ], + [ 7.7618233, 47.4119378 ], + [ 7.7616803999999995, 47.4118207 ], + [ 7.7616848, 47.4117328 ], + [ 7.7617781, 47.4116828 ], + [ 7.7618597, 47.4116258 ], + [ 7.7618862, 47.4115665 ], + [ 7.7618887999999995, 47.4115055 ], + [ 7.7618878, 47.411456 ], + [ 7.7618799, 47.4114104 ], + [ 7.7618831, 47.411363 ], + [ 7.7617896, 47.4113441 ], + [ 7.7616102, 47.4113139 ], + [ 7.7615327, 47.411322 ], + [ 7.7612841, 47.411379 ], + [ 7.76113, 47.4114405 ], + [ 7.7611099, 47.4114523 ], + [ 7.7609907, 47.4115217 ], + [ 7.7609516, 47.4115441 ], + [ 7.760982, 47.4116439 ], + [ 7.7610201, 47.4117426 ], + [ 7.7610658, 47.4118397 ], + [ 7.7610890999999995, 47.41188 ], + [ 7.7611172, 47.4119189 ], + [ 7.7611498, 47.4119562 ], + [ 7.7613843, 47.412201 ], + [ 7.7614135, 47.4122302 ], + [ 7.7614443, 47.4122586 ], + [ 7.7614768, 47.4122861 ], + [ 7.761892, 47.4126248 ], + [ 7.7621414, 47.4128038 ], + [ 7.762117, 47.412819 ], + [ 7.7620686, 47.4128716 ], + [ 7.7618948, 47.4129476 ], + [ 7.7617061, 47.413032 ], + [ 7.7615652, 47.4129018 ], + [ 7.7614703, 47.4129559 ], + [ 7.7614472, 47.4129424 ], + [ 7.7614105, 47.4129779 ], + [ 7.7614019, 47.4129862 ], + [ 7.7616935, 47.4133075 ], + [ 7.7619556, 47.4136139 ], + [ 7.7621835, 47.4138149 ], + [ 7.7622132, 47.4137902 ], + [ 7.7622475, 47.4137617 ], + [ 7.762301, 47.4138041 ], + [ 7.7624132, 47.4137694 ], + [ 7.7627633, 47.4136518 ], + [ 7.7631442, 47.4135489 ], + [ 7.7631569, 47.4135455 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr081", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Bachmatte", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Bachmatte", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Bachmatte", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Bachmatte", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7555366, 47.4113885 ], + [ 7.7554537, 47.4114375 ], + [ 7.7554329, 47.4114468 ], + [ 7.7554084, 47.4114556 ], + [ 7.7550215, 47.4115774 ], + [ 7.7549879, 47.4115893 ], + [ 7.7549556, 47.4116026 ], + [ 7.7549201, 47.4116197 ], + [ 7.7548951, 47.4116335 ], + [ 7.7548789, 47.4116017 ], + [ 7.7548733, 47.4115908 ], + [ 7.7548037999999995, 47.4114547 ], + [ 7.7547969, 47.4114412 ], + [ 7.7547556, 47.4113603 ], + [ 7.7547051, 47.4112557 ], + [ 7.7545779, 47.4111858 ], + [ 7.7544311, 47.4111051 ], + [ 7.7541404, 47.410979 ], + [ 7.7539435999999995, 47.4108941 ], + [ 7.7538135, 47.4108379 ], + [ 7.7535288, 47.4110233 ], + [ 7.7533141, 47.4111631 ], + [ 7.7532996, 47.4112064 ], + [ 7.7532099, 47.4114739 ], + [ 7.7531669, 47.4116115 ], + [ 7.7532194, 47.411822 ], + [ 7.7532446, 47.4119233 ], + [ 7.7533265, 47.4119784 ], + [ 7.7535533, 47.4121305 ], + [ 7.7536732, 47.4121334 ], + [ 7.7538075, 47.412478899999996 ], + [ 7.7538128, 47.4124926 ], + [ 7.753818, 47.4125061 ], + [ 7.7535389, 47.4128585 ], + [ 7.7535065, 47.4132576 ], + [ 7.7531329, 47.4132143 ], + [ 7.7531147, 47.4132122 ], + [ 7.7530792, 47.4132425 ], + [ 7.7530447, 47.4133492 ], + [ 7.7530555, 47.4133857 ], + [ 7.7530281, 47.4134356 ], + [ 7.7530284, 47.413484 ], + [ 7.7529997999999996, 47.4135254 ], + [ 7.7529118, 47.4135846 ], + [ 7.7528981, 47.4136197 ], + [ 7.7528217999999995, 47.4136964 ], + [ 7.7527697, 47.4137162 ], + [ 7.7527396, 47.4137538 ], + [ 7.7526165, 47.4138341 ], + [ 7.7525282, 47.4138687 ], + [ 7.7523732, 47.413966 ], + [ 7.7523351, 47.4139991 ], + [ 7.7523254999999995, 47.4140019 ], + [ 7.7523054, 47.4140216 ], + [ 7.752126, 47.4141323 ], + [ 7.7520654, 47.4141591 ], + [ 7.7520335, 47.4141781 ], + [ 7.7520027, 47.414181 ], + [ 7.7518356, 47.4142362 ], + [ 7.7517294, 47.4142578 ], + [ 7.7517487, 47.4142797 ], + [ 7.7519443, 47.4144717 ], + [ 7.7519776, 47.4145017 ], + [ 7.7519612, 47.4145162 ], + [ 7.7519476, 47.4145307 ], + [ 7.7519358, 47.414546 ], + [ 7.7519259, 47.4145618 ], + [ 7.7519122, 47.4145949 ], + [ 7.7519068, 47.4146291 ], + [ 7.7519027, 47.4146706 ], + [ 7.7518934, 47.4147117 ], + [ 7.7518788, 47.4147522 ], + [ 7.7518592, 47.4147916 ], + [ 7.7518346000000005, 47.4148298 ], + [ 7.7518053, 47.4148663 ], + [ 7.7517714, 47.414901 ], + [ 7.7517332, 47.4149336 ], + [ 7.751691, 47.4149639 ], + [ 7.7516452000000005, 47.4149915 ], + [ 7.751596, 47.4150164 ], + [ 7.7515473, 47.4150365 ], + [ 7.7514959999999995, 47.4150532 ], + [ 7.7514424, 47.4150664 ], + [ 7.7514167, 47.4150714 ], + [ 7.7513676, 47.4150785 ], + [ 7.7513178, 47.4150826 ], + [ 7.7512676, 47.4150837 ], + [ 7.7512175, 47.4150819 ], + [ 7.7511678, 47.4150771 ], + [ 7.7509498, 47.4150494 ], + [ 7.7508637, 47.4150408 ], + [ 7.7507769, 47.4150368 ], + [ 7.7507274, 47.4150371 ], + [ 7.7508183, 47.4152662 ], + [ 7.7509332, 47.4155559 ], + [ 7.7510367, 47.415828 ], + [ 7.7510409, 47.4160641 ], + [ 7.7510235, 47.4163683 ], + [ 7.7510181, 47.4164053 ], + [ 7.7509898, 47.4165512 ], + [ 7.7514351, 47.4166235 ], + [ 7.7518427, 47.4167461 ], + [ 7.7522405, 47.4168963 ], + [ 7.7526132, 47.4170716 ], + [ 7.7531265, 47.417314 ], + [ 7.7532096, 47.4173276 ], + [ 7.7532768999999995, 47.4171954 ], + [ 7.7533504, 47.4169526 ], + [ 7.7533774, 47.4167812 ], + [ 7.7533408, 47.41651 ], + [ 7.753335, 47.4163917 ], + [ 7.7533328, 47.4163482 ], + [ 7.7533496, 47.4161455 ], + [ 7.7533719, 47.4161433 ], + [ 7.7534434, 47.4159553 ], + [ 7.7542096, 47.4151459 ], + [ 7.7541796, 47.4136325 ], + [ 7.7547645, 47.41353 ], + [ 7.754775, 47.4135249 ], + [ 7.7547797, 47.4135233 ], + [ 7.7547846, 47.413522 ], + [ 7.7547896, 47.4135211 ], + [ 7.7547948, 47.4135205 ], + [ 7.7548001, 47.4135203 ], + [ 7.7548053, 47.4135205 ], + [ 7.7548105, 47.413521 ], + [ 7.7560897, 47.4129404 ], + [ 7.7560216, 47.4127234 ], + [ 7.7559876, 47.4125472 ], + [ 7.7560256, 47.4123499 ], + [ 7.7561198000000005, 47.4122199 ], + [ 7.75615, 47.4121245 ], + [ 7.7561, 47.4119403 ], + [ 7.7560262, 47.4118236 ], + [ 7.7558898, 47.4116601 ], + [ 7.755723, 47.4115218 ], + [ 7.7555366, 47.4113885 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns014", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Zwischenflüe", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Zwischenflüe", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Zwischenflüe", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Zwischenflüe", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.8067007, 47.1313528 ], + [ 6.808518, 47.1311983 ], + [ 6.8118596, 47.130794 ], + [ 6.8151662, 47.1302728 ], + [ 6.8184289, 47.129636 ], + [ 6.8216393, 47.1288854 ], + [ 6.8247887, 47.1280229 ], + [ 6.8278687, 47.1270507 ], + [ 6.8308712, 47.1259716 ], + [ 6.8337882, 47.1247884 ], + [ 6.8366119, 47.1235041 ], + [ 6.8393349, 47.1221223 ], + [ 6.8419498999999995, 47.1206465 ], + [ 6.8444500999999995, 47.1190808 ], + [ 6.8468286, 47.1174293 ], + [ 6.8490793, 47.1156963 ], + [ 6.8511962, 47.1138865 ], + [ 6.8531737, 47.1120046 ], + [ 6.8550065, 47.1100557 ], + [ 6.8566898, 47.108045 ], + [ 6.8582192, 47.1059777 ], + [ 6.8595904999999995, 47.1038594 ], + [ 6.8608002, 47.1016957 ], + [ 6.8618451, 47.0994924 ], + [ 6.8627224, 47.0972552 ], + [ 6.8634299, 47.0949902 ], + [ 6.8639656, 47.0927032 ], + [ 6.8643281, 47.0904005 ], + [ 6.8645166, 47.0880881 ], + [ 6.8645306, 47.0857721 ], + [ 6.86437, 47.0834587 ], + [ 6.8640352, 47.081154 ], + [ 6.8635273, 47.0788641 ], + [ 6.8628475, 47.0765951 ], + [ 6.8619977, 47.0743531 ], + [ 6.8609802, 47.0721438 ], + [ 6.8597977, 47.0699733 ], + [ 6.8584532, 47.0678473 ], + [ 6.8569505, 47.0657713 ], + [ 6.8552935, 47.0637509 ], + [ 6.8534866, 47.0617914 ], + [ 6.8515346, 47.0598981 ], + [ 6.8494428, 47.0580759 ], + [ 6.8472166, 47.0563297 ], + [ 6.8448619, 47.054664 ], + [ 6.842385, 47.0530834 ], + [ 6.8397925, 47.0515919 ], + [ 6.8370913, 47.0501936 ], + [ 6.8261587, 47.0448299 ], + [ 6.8233089, 47.0435073 ], + [ 6.8203618, 47.0422884 ], + [ 6.8173256, 47.0411765 ], + [ 6.8142085, 47.0401746 ], + [ 6.8110192, 47.0392856 ], + [ 6.8077662, 47.0385118 ], + [ 6.8044585, 47.0378553 ], + [ 6.8011052, 47.037318 ], + [ 6.7977153999999995, 47.0369013 ], + [ 6.7942984, 47.0366064 ], + [ 6.7908635, 47.036434 ], + [ 6.7874202, 47.0363847 ], + [ 6.7839778, 47.0364585 ], + [ 6.7805457, 47.0366553 ], + [ 6.7771334, 47.0369745 ], + [ 6.7737501, 47.0374153 ], + [ 6.7704052, 47.0379765 ], + [ 6.7671076, 47.0386564 ], + [ 6.7638666, 47.0394533 ], + [ 6.7606909, 47.040365 ], + [ 6.7575893, 47.041389 ], + [ 6.7545702, 47.0425224 ], + [ 6.7516418, 47.0437623 ], + [ 6.7488123, 47.0451051 ], + [ 6.7460892999999995, 47.0465473 ], + [ 6.7434803, 47.0480848 ], + [ 6.7409924, 47.0497135 ], + [ 6.7386326, 47.0514289 ], + [ 6.7364071, 47.0532263 ], + [ 6.7343222, 47.0551009 ], + [ 6.7323836, 47.0570474 ], + [ 6.7305965, 47.0590605 ], + [ 6.7289659, 47.0611348 ], + [ 6.7274964, 47.0632645 ], + [ 6.7261918, 47.0654438 ], + [ 6.7250558, 47.0676668 ], + [ 6.7240915999999995, 47.0699274 ], + [ 6.7233018, 47.0722194 ], + [ 6.7226886, 47.0745364 ], + [ 6.7222536999999996, 47.0768722 ], + [ 6.7219982, 47.0792203 ], + [ 6.7219231, 47.0815743 ], + [ 6.7220284, 47.0839278 ], + [ 6.7223138, 47.0862744 ], + [ 6.7227788, 47.0886074 ], + [ 6.723093, 47.0897379 ], + [ 6.7233487, 47.0898467 ], + [ 6.7235952999999995, 47.0899052 ], + [ 6.7237571, 47.0900056 ], + [ 6.7240819, 47.0903272 ], + [ 6.7241316, 47.0904898 ], + [ 6.7241515, 47.090845 ], + [ 6.7242816, 47.0910222 ], + [ 6.7246744, 47.0913272 ], + [ 6.7251613, 47.0916215 ], + [ 6.7256941999999995, 47.0918804 ], + [ 6.7258744, 47.0919394 ], + [ 6.7261752999999995, 47.0919898 ], + [ 6.7265172, 47.0919871 ], + [ 6.7266476, 47.091949 ], + [ 6.7270343, 47.0916934 ], + [ 6.7275873, 47.0912638 ], + [ 6.7277517, 47.0912101 ], + [ 6.7278801, 47.0911354 ], + [ 6.72795, 47.091019 ], + [ 6.7289343, 47.0905445 ], + [ 6.7291229999999995, 47.0903453 ], + [ 6.7295815, 47.0900182 ], + [ 6.7302033, 47.0898053 ], + [ 6.7307895, 47.0896467 ], + [ 6.7311896, 47.0895783 ], + [ 6.7314256, 47.0895143 ], + [ 6.7319919, 47.0894654 ], + [ 6.7333974, 47.0896563 ], + [ 6.7337315, 47.0896701 ], + [ 6.7345511, 47.0896559 ], + [ 6.7351778, 47.0896054 ], + [ 6.7354669, 47.0896987 ], + [ 6.7356131, 47.0897458 ], + [ 6.736058, 47.0899359 ], + [ 6.736188, 47.0899914 ], + [ 6.7368483, 47.0901795 ], + [ 6.7373408999999995, 47.090244 ], + [ 6.7377724, 47.0903345 ], + [ 6.738435, 47.0904019 ], + [ 6.7386323, 47.0904102 ], + [ 6.7389968, 47.090355 ], + [ 6.7392461, 47.0903762 ], + [ 6.7400295, 47.0905274 ], + [ 6.7403169, 47.0906205 ], + [ 6.740576, 47.0906278 ], + [ 6.7415702, 47.0909269 ], + [ 6.741763, 47.0910481 ], + [ 6.741887, 47.0911644 ], + [ 6.7419984, 47.0913545 ], + [ 6.7421717999999995, 47.091552 ], + [ 6.7423873, 47.0916425 ], + [ 6.7429518, 47.0919456 ], + [ 6.7435352, 47.0921443 ], + [ 6.744065, 47.0923776 ], + [ 6.7443946, 47.092561 ], + [ 6.7445667, 47.0926845 ], + [ 6.7446993, 47.0930063 ], + [ 6.7447867, 47.0933946 ], + [ 6.7448787, 47.0936443 ], + [ 6.7449211, 47.093963 ], + [ 6.7450555, 47.0944001 ], + [ 6.7451457, 47.0949925 ], + [ 6.7452654, 47.0953562 ], + [ 6.7454849, 47.0957981 ], + [ 6.745888, 47.0964905 ], + [ 6.7464478, 47.0970106 ], + [ 6.7465953, 47.0972693 ], + [ 6.7467035, 47.0975596 ], + [ 6.746729, 47.0978158 ], + [ 6.7466817, 47.0980998 ], + [ 6.7463201, 47.0986587 ], + [ 6.7463248, 47.0988055 ], + [ 6.7465214, 47.0992942 ], + [ 6.746538, 47.0994086 ], + [ 6.7465083, 47.099529 ], + [ 6.7464125, 47.0996677 ], + [ 6.7461107, 47.0998415 ], + [ 6.7457171, 47.1001523 ], + [ 6.7455657, 47.1004311 ], + [ 6.7451904, 47.100801 ], + [ 6.7449359, 47.1011082 ], + [ 6.7448518, 47.1011764 ], + [ 6.7447117, 47.1012769 ], + [ 6.7445989, 47.1013576 ], + [ 6.7444775, 47.1014767 ], + [ 6.7441613, 47.1017306 ], + [ 6.7439516, 47.1020132 ], + [ 6.7433111, 47.1025857 ], + [ 6.7429179, 47.1029372 ], + [ 6.742045, 47.1035323 ], + [ 6.7418555, 47.1037432 ], + [ 6.741786, 47.1037838 ], + [ 6.7414621, 47.1042091 ], + [ 6.7413618, 47.1045614 ], + [ 6.7413748, 47.1046217 ], + [ 6.7411245, 47.1050706 ], + [ 6.7410168, 47.1052635 ], + [ 6.7406865, 47.1057158 ], + [ 6.7406279, 47.1059852 ], + [ 6.7399856, 47.1080175 ], + [ 6.7399783, 47.10825 ], + [ 6.7400352, 47.1087549 ], + [ 6.7401209, 47.1090488 ], + [ 6.7403994, 47.1094728 ], + [ 6.7405433, 47.1096227 ], + [ 6.7408985999999995, 47.1096604 ], + [ 6.7415087, 47.1098421 ], + [ 6.7421531, 47.1098934 ], + [ 6.7422965999999995, 47.1099665 ], + [ 6.7424241, 47.1099535 ], + [ 6.7429419, 47.1098057 ], + [ 6.7430914, 47.1096975 ], + [ 6.7438856, 47.1095983 ], + [ 6.744396, 47.1095706 ], + [ 6.7447634999999995, 47.1095142 ], + [ 6.744898, 47.1095376 ], + [ 6.7450396999999995, 47.1096273 ], + [ 6.7456619, 47.1096852 ], + [ 6.7459648, 47.1097503 ], + [ 6.7463261, 47.109791799999996 ], + [ 6.7468437, 47.1099901 ], + [ 6.7474867, 47.1103853 ], + [ 6.7478818, 47.1108187 ], + [ 6.7482717999999995, 47.1111139 ], + [ 6.7483541, 47.1112176 ], + [ 6.7486713, 47.1113863 ], + [ 6.7489242, 47.1114785 ], + [ 6.7492169, 47.1116545 ], + [ 6.7498096, 47.112247 ], + [ 6.750044, 47.1124273 ], + [ 6.7500964, 47.1125476 ], + [ 6.7509881, 47.1135264 ], + [ 6.7511281, 47.1137884 ], + [ 6.7512343, 47.1139166 ], + [ 6.7513103, 47.1139555 ], + [ 6.7514914, 47.1142014 ], + [ 6.7516733, 47.1143547 ], + [ 6.7520636, 47.1145929 ], + [ 6.7523874, 47.1147678 ], + [ 6.7530875, 47.1149715 ], + [ 6.7541384, 47.1151548 ], + [ 6.7543683, 47.1152983 ], + [ 6.7545459999999995, 47.1154659 ], + [ 6.7548401, 47.1156816 ], + [ 6.7552521, 47.1160759 ], + [ 6.7556592, 47.1162652 ], + [ 6.7557298, 47.1163468 ], + [ 6.756047, 47.1165897 ], + [ 6.7562464, 47.1167887 ], + [ 6.7562671, 47.1168639 ], + [ 6.7565002, 47.1170067 ], + [ 6.756905, 47.1170847 ], + [ 6.7577466, 47.1173726 ], + [ 6.7580653, 47.1174346 ], + [ 6.7584757, 47.1176273 ], + [ 6.7585655, 47.11771 ], + [ 6.7591521, 47.1180089 ], + [ 6.7595, 47.1183067 ], + [ 6.7598413, 47.1184784 ], + [ 6.7601923, 47.1186123 ], + [ 6.7609645, 47.1187657 ], + [ 6.7613663, 47.1189034 ], + [ 6.7622177, 47.1193018 ], + [ 6.7628492, 47.1195517 ], + [ 6.7636738, 47.1199935 ], + [ 6.7639485, 47.1200665 ], + [ 6.7647133, 47.120384 ], + [ 6.7657738, 47.1207214 ], + [ 6.7660812, 47.1207659 ], + [ 6.7674482, 47.1210672 ], + [ 6.7682124, 47.1211058 ], + [ 6.7685005, 47.1211397 ], + [ 6.7687267, 47.1211917 ], + [ 6.7691173, 47.1212316 ], + [ 6.7697841, 47.1212647 ], + [ 6.7705908, 47.1214134 ], + [ 6.7717273, 47.1214759 ], + [ 6.7721031, 47.1214474 ], + [ 6.772536, 47.1214614 ], + [ 6.7727143, 47.1214425 ], + [ 6.7733222, 47.1213104 ], + [ 6.7735087, 47.1211938 ], + [ 6.7739785, 47.1211377 ], + [ 6.7744593, 47.1211103 ], + [ 6.7746844, 47.1211201 ], + [ 6.7754741, 47.1212546 ], + [ 6.7759695, 47.1213636 ], + [ 6.7763659, 47.1215223 ], + [ 6.7768388, 47.1217473 ], + [ 6.7772279, 47.1219925 ], + [ 6.7774224, 47.1221623 ], + [ 6.7774437, 47.1221897 ], + [ 6.7776589, 47.1224645 ], + [ 6.7782285, 47.1230832 ], + [ 6.77883, 47.123527 ], + [ 6.7791604, 47.1237011 ], + [ 6.7793727, 47.123771 ], + [ 6.7798334, 47.1238661 ], + [ 6.7809275, 47.1239973 ], + [ 6.7813712, 47.1240789 ], + [ 6.7823467, 47.1242043 ], + [ 6.7831972, 47.1243599 ], + [ 6.7839241999999995, 47.1246036 ], + [ 6.7854996, 47.1250479 ], + [ 6.7860625, 47.1252411 ], + [ 6.7868317, 47.1254358 ], + [ 6.7873938, 47.1256764 ], + [ 6.7881304, 47.12583 ], + [ 6.7895262, 47.126185 ], + [ 6.7911475, 47.126672 ], + [ 6.791715, 47.1267829 ], + [ 6.7921642, 47.1269581 ], + [ 6.7923428999999995, 47.1270482 ], + [ 6.7924954, 47.1271249 ], + [ 6.7926952, 47.127169 ], + [ 6.7934199, 47.1273989 ], + [ 6.7938929, 47.1276418 ], + [ 6.7942804, 47.1277295 ], + [ 6.7950616, 47.1281818 ], + [ 6.7955643, 47.128563 ], + [ 6.7958129, 47.128684 ], + [ 6.7961752, 47.1287954 ], + [ 6.7965477, 47.1290359 ], + [ 6.7968938, 47.1291451 ], + [ 6.7974461, 47.1292152 ], + [ 6.7980601, 47.1291995 ], + [ 6.7984881999999995, 47.1290798 ], + [ 6.7987438000000004, 47.128981 ], + [ 6.7990493999999995, 47.1289292 ], + [ 6.8002863, 47.1290142 ], + [ 6.8003587, 47.1290287 ], + [ 6.8005392, 47.1291768 ], + [ 6.8006155, 47.1291947 ], + [ 6.8019316, 47.1293921 ], + [ 6.8022519, 47.1295514 ], + [ 6.802746, 47.1296439 ], + [ 6.8031062, 47.129768 ], + [ 6.8035248, 47.1299614 ], + [ 6.8042358, 47.1301727 ], + [ 6.8048136, 47.130289 ], + [ 6.8052695, 47.1304315 ], + [ 6.8057251, 47.1306412 ], + [ 6.8060456, 47.130712 ], + [ 6.8062945, 47.1308748 ], + [ 6.8065769, 47.1311525 ], + [ 6.8066642, 47.1312701 ], + [ 6.8067007, 47.1313528 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSGC001", + "country" : "CHE", + "name" : [ + { + "text" : "LSGC Aéroport les Eplatures", + "lang" : "de-CH" + }, + { + "text" : "LSGC Aéroport les Eplatures", + "lang" : "fr-CH" + }, + { + "text" : "LSGC Aéroport les Eplatures", + "lang" : "it-CH" + }, + { + "text" : "LSGC Aéroport les Eplatures", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "LSGC Aéroport les Eplatures", + "lang" : "de-CH" + }, + { + "text" : "LSGC Aéroport les Eplatures", + "lang" : "fr-CH" + }, + { + "text" : "LSGC Aéroport les Eplatures", + "lang" : "it-CH" + }, + { + "text" : "LSGC Aéroport les Eplatures", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Chef d'aérodrome", + "lang" : "de-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "fr-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "it-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Emanuele Tocalli", + "lang" : "de-CH" + }, + { + "text" : "Emanuele Tocalli", + "lang" : "fr-CH" + }, + { + "text" : "Emanuele Tocalli", + "lang" : "it-CH" + }, + { + "text" : "Emanuele Tocalli", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.skyguide.ch/services/special-flights", + "email" : "info@leseplaturesairport.ch", + "phone" : "0041329259797", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7178053, 47.380113 ], + [ 7.7189074, 47.3804026 ], + [ 7.719049, 47.3804412 ], + [ 7.7192668, 47.3804922 ], + [ 7.7195248, 47.3805441 ], + [ 7.7197835, 47.3805802 ], + [ 7.7201284, 47.3806057 ], + [ 7.7205164, 47.3806232 ], + [ 7.7208357, 47.3806416 ], + [ 7.7212404, 47.3799622 ], + [ 7.7200369, 47.3796035 ], + [ 7.7197226, 47.3795364 ], + [ 7.7195728, 47.3795003 ], + [ 7.7193888, 47.3794303 ], + [ 7.7192988, 47.3793878 ], + [ 7.7191497, 47.3792984 ], + [ 7.7190361, 47.3792014 ], + [ 7.7190174, 47.3791414 ], + [ 7.7190189, 47.3790343 ], + [ 7.719016, 47.3789754 ], + [ 7.7190094, 47.3789254 ], + [ 7.718996, 47.3788805 ], + [ 7.7189725, 47.3788303 ], + [ 7.718929, 47.3787541 ], + [ 7.7188168, 47.378613 ], + [ 7.7187474, 47.3785068 ], + [ 7.7186918, 47.3784134 ], + [ 7.7186372, 47.3783138 ], + [ 7.7184604, 47.3782642 ], + [ 7.7182679, 47.3784898 ], + [ 7.7180895, 47.378755 ], + [ 7.7180859, 47.3787598 ], + [ 7.7180817, 47.3787643 ], + [ 7.7180768, 47.3787686 ], + [ 7.7180715, 47.3787726 ], + [ 7.7180656, 47.3787762 ], + [ 7.7180593, 47.3787795 ], + [ 7.7180526, 47.3787824 ], + [ 7.7180455, 47.3787849 ], + [ 7.7180326, 47.3787892 ], + [ 7.7180199, 47.378794 ], + [ 7.7180077, 47.3787992 ], + [ 7.7179958, 47.3788048 ], + [ 7.7179844, 47.3788108 ], + [ 7.7179735, 47.3788172 ], + [ 7.717963, 47.378824 ], + [ 7.7179531, 47.3788312 ], + [ 7.7176967, 47.379026 ], + [ 7.7174731, 47.3792053 ], + [ 7.7174647, 47.3792117 ], + [ 7.7174559, 47.3792177 ], + [ 7.7174466, 47.3792234 ], + [ 7.7174369, 47.3792288 ], + [ 7.7174268, 47.3792338 ], + [ 7.7174163, 47.3792385 ], + [ 7.7174054, 47.3792428 ], + [ 7.717321, 47.379274 ], + [ 7.7173108, 47.3792781 ], + [ 7.717301, 47.3792828 ], + [ 7.7172918, 47.3792879 ], + [ 7.7172830999999995, 47.3792935 ], + [ 7.7172751, 47.3792995 ], + [ 7.7172677, 47.3793058 ], + [ 7.717261, 47.3793126 ], + [ 7.7172552, 47.3793196 ], + [ 7.71725, 47.3793269 ], + [ 7.717244, 47.3793358 ], + [ 7.7172373, 47.3793443 ], + [ 7.7172298, 47.3793527 ], + [ 7.7172217, 47.3793607 ], + [ 7.7172129, 47.3793684 ], + [ 7.7172035, 47.3793758 ], + [ 7.7171936, 47.3793828 ], + [ 7.7171854, 47.3793841 ], + [ 7.717172, 47.3793956 ], + [ 7.7171026, 47.3794323 ], + [ 7.7170971999999995, 47.3794355 ], + [ 7.7170922, 47.379439 ], + [ 7.7170878, 47.3794428 ], + [ 7.717084, 47.379447 ], + [ 7.7170808, 47.3794513 ], + [ 7.7170781999999996, 47.379455899999996 ], + [ 7.7170764, 47.3794606 ], + [ 7.7169718, 47.3797833 ], + [ 7.7169346999999995, 47.3798441 ], + [ 7.7173052, 47.3799526 ], + [ 7.7173597, 47.3799726 ], + [ 7.7175258, 47.3799855 ], + [ 7.7178053, 47.380113 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns244", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Örlenberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Örlenberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Örlenberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Örlenberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7429946, 46.6134846 ], + [ 7.742892, 46.6111309 ], + [ 7.7426107, 46.6087841 ], + [ 7.7421517, 46.6064507 ], + [ 7.7415161, 46.604137 ], + [ 7.7407056999999995, 46.6018495 ], + [ 7.7397229, 46.5995943 ], + [ 7.7385703, 46.5973776 ], + [ 7.737251, 46.5952055 ], + [ 7.7357686999999995, 46.593084 ], + [ 7.7341276, 46.5910188 ], + [ 7.7323319999999995, 46.5890157 ], + [ 7.7303869, 46.58708 ], + [ 7.7282978, 46.5852172 ], + [ 7.7260702, 46.5834322 ], + [ 7.7237103, 46.5817301 ], + [ 7.7212246, 46.5801153 ], + [ 7.7186199, 46.5785924 ], + [ 7.7159034, 46.5771656 ], + [ 7.7130824, 46.5758386 ], + [ 7.7101647, 46.5746152 ], + [ 7.7071582, 46.5734988 ], + [ 7.7040713, 46.5724922 ], + [ 7.7009123, 46.5715984 ], + [ 7.6976899, 46.5708197 ], + [ 7.694413, 46.5701583 ], + [ 7.6910903, 46.569616 ], + [ 7.6877312, 46.5691943 ], + [ 7.6843447, 46.5688942 ], + [ 7.6809401, 46.5687168 ], + [ 7.6775267, 46.5686623 ], + [ 7.6741138, 46.5687311 ], + [ 7.6707108, 46.5689228 ], + [ 7.667327, 46.569237 ], + [ 7.6639716, 46.5696728 ], + [ 7.6606538, 46.570229 ], + [ 7.6573827, 46.5709041 ], + [ 7.6541672, 46.5716962 ], + [ 7.6510162, 46.5726033 ], + [ 7.6479382000000005, 46.5736227 ], + [ 7.6449416, 46.5747518 ], + [ 7.6420347, 46.5759873 ], + [ 7.6392255, 46.5773261 ], + [ 7.6365215, 46.5787643 ], + [ 7.6339302, 46.580298 ], + [ 7.6314588, 46.5819232 ], + [ 7.6291139999999995, 46.5836352 ], + [ 7.6269021, 46.5854294 ], + [ 7.6248294, 46.587301 ], + [ 7.6229014, 46.5892447 ], + [ 7.6211234999999995, 46.5912554 ], + [ 7.6195006, 46.5933274 ], + [ 7.618037, 46.5954551 ], + [ 7.6167369, 46.5976326 ], + [ 7.6156038, 46.5998541 ], + [ 7.6146408999999995, 46.6021134 ], + [ 7.6138507, 46.6044043 ], + [ 7.6132355, 46.6067205 ], + [ 7.612797, 46.6090558 ], + [ 7.6125364, 46.6114037 ], + [ 7.6124545, 46.6137578 ], + [ 7.6125515, 46.616111599999996 ], + [ 7.6128272, 46.6184587 ], + [ 7.6132807, 46.6207926 ], + [ 7.613911, 46.623107 ], + [ 7.6147162999999995, 46.6253955 ], + [ 7.6156944, 46.6276518 ], + [ 7.6168427, 46.6298697 ], + [ 7.6181579, 46.6320431 ], + [ 7.6196366, 46.6341662 ], + [ 7.6212747, 46.636233 ], + [ 7.6230678, 46.6382379 ], + [ 7.6250108, 46.6401753 ], + [ 7.6270985, 46.6420401 ], + [ 7.6293253, 46.643827 ], + [ 7.6316849, 46.6455311 ], + [ 7.6341709, 46.6471478 ], + [ 7.6367765, 46.6486726 ], + [ 7.6394946, 46.6501013 ], + [ 7.6423176, 46.6514301 ], + [ 7.645238, 46.6526552 ], + [ 7.6482475, 46.6537733 ], + [ 7.6513381, 46.6547814 ], + [ 7.6545011, 46.6556766 ], + [ 7.6577279, 46.6564565 ], + [ 7.6610097, 46.6571189 ], + [ 7.6643374, 46.6576621 ], + [ 7.6677018, 46.6580846 ], + [ 7.6710939, 46.6583851 ], + [ 7.6745041, 46.6585628 ], + [ 7.6779232, 46.6586174 ], + [ 7.6813417, 46.6585485 ], + [ 7.6847503, 46.6583565 ], + [ 7.6881395999999995, 46.6580418 ], + [ 7.6915002999999995, 46.6576053 ], + [ 7.6948231, 46.6570482 ], + [ 7.698099, 46.656372 ], + [ 7.7013189, 46.6555786 ], + [ 7.7044739, 46.6546702 ], + [ 7.7075555, 46.6536492 ], + [ 7.7105551, 46.6525185 ], + [ 7.7134646, 46.6512812 ], + [ 7.7162758, 46.6499406 ], + [ 7.7189812, 46.6485005 ], + [ 7.7215733, 46.6469648 ], + [ 7.724045, 46.6453378 ], + [ 7.7263895, 46.6436238 ], + [ 7.7286003999999995, 46.6418276 ], + [ 7.7306717, 46.6399542 ], + [ 7.7325976, 46.6380086 ], + [ 7.7343729, 46.6359963 ], + [ 7.7359927, 46.6339226 ], + [ 7.7374526, 46.6317934 ], + [ 7.7387487, 46.6296145 ], + [ 7.7398774, 46.6273918 ], + [ 7.7408355, 46.6251315 ], + [ 7.7416206, 46.6228397 ], + [ 7.7422305, 46.6205227 ], + [ 7.7426635, 46.6181869 ], + [ 7.7429184, 46.6158388 ], + [ 7.7429946, 46.6134846 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSGR001", + "country" : "CHE", + "name" : [ + { + "text" : "LSGR Reichenbach", + "lang" : "de-CH" + }, + { + "text" : "LSGR Reichenbach", + "lang" : "fr-CH" + }, + { + "text" : "LSGR Reichenbach", + "lang" : "it-CH" + }, + { + "text" : "LSGR Reichenbach", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Flugplatzgenossenschaft Reichenbach", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzgenossenschaft Reichenbach", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzgenossenschaft Reichenbach", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzgenossenschaft Reichenbach", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Roland Lüscher", + "lang" : "de-CH" + }, + { + "text" : "Roland Lüscher", + "lang" : "fr-CH" + }, + { + "text" : "Roland Lüscher", + "lang" : "it-CH" + }, + { + "text" : "Roland Lüscher", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.flugplatz-reichenbach.ch/?page_id=173", + "email" : "flugplatzleiter@flugplatz-reichenbach.ch", + "phone" : "0041796421761", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.7282618, 47.1567927 ], + [ 8.7282529, 47.156651600000004 ], + [ 8.7282333, 47.156511 ], + [ 8.7282029, 47.1563712 ], + [ 8.7281618, 47.1562327 ], + [ 8.7281102, 47.1560959 ], + [ 8.7280481, 47.1559612 ], + [ 8.7279757, 47.1558288 ], + [ 8.7278933, 47.1556992 ], + [ 8.7278011, 47.1555727 ], + [ 8.7276993, 47.1554496 ], + [ 8.7275882, 47.1553304 ], + [ 8.7274681, 47.1552153 ], + [ 8.7273394, 47.1551047 ], + [ 8.7272023, 47.1549988 ], + [ 8.7270573, 47.1548979 ], + [ 8.7269047, 47.1548024 ], + [ 8.7267451, 47.1547124 ], + [ 8.7265787, 47.1546282 ], + [ 8.7264061, 47.1545501 ], + [ 8.7262278, 47.1544783 ], + [ 8.7260442, 47.1544129 ], + [ 8.7258558, 47.1543542 ], + [ 8.7256632, 47.1543023 ], + [ 8.7254669, 47.1542573 ], + [ 8.7252674, 47.1542194 ], + [ 8.7250652, 47.1541887 ], + [ 8.724861, 47.1541653 ], + [ 8.7246552, 47.1541491 ], + [ 8.7244485, 47.1541403 ], + [ 8.7242414, 47.154139 ], + [ 8.7240345, 47.154145 ], + [ 8.7238284, 47.1541584 ], + [ 8.7236235, 47.1541791 ], + [ 8.7234205, 47.1542071 ], + [ 8.72322, 47.1542423 ], + [ 8.7230224, 47.1542847 ], + [ 8.7228283, 47.154334 ], + [ 8.7226383, 47.1543902 ], + [ 8.7224529, 47.1544531 ], + [ 8.7222725, 47.1545225 ], + [ 8.722097699999999, 47.1545983 ], + [ 8.721929, 47.1546802 ], + [ 8.7217667, 47.154768 ], + [ 8.7216115, 47.1548615 ], + [ 8.7214636, 47.1549604 ], + [ 8.7213235, 47.1550645 ], + [ 8.7211916, 47.1551734 ], + [ 8.7210682, 47.1552869 ], + [ 8.720953699999999, 47.1554046 ], + [ 8.7208484, 47.1555262 ], + [ 8.7207526, 47.1556515 ], + [ 8.7206665, 47.1557799 ], + [ 8.7205904, 47.1559113 ], + [ 8.7205244, 47.1560452 ], + [ 8.7204689, 47.1561813 ], + [ 8.7204238, 47.1563192 ], + [ 8.7203894, 47.1564585 ], + [ 8.7203657, 47.1565989 ], + [ 8.7203529, 47.1567399 ], + [ 8.7203508, 47.1568811 ], + [ 8.7203596, 47.1570223 ], + [ 8.7203792, 47.1571629 ], + [ 8.7204096, 47.1573027 ], + [ 8.7204507, 47.1574411 ], + [ 8.7205023, 47.157578 ], + [ 8.7205644, 47.1577127 ], + [ 8.7206367, 47.1578451 ], + [ 8.7207191, 47.1579747 ], + [ 8.7208113, 47.1581012 ], + [ 8.7209131, 47.1582243 ], + [ 8.7210242, 47.1583435 ], + [ 8.7211443, 47.1584586 ], + [ 8.721273, 47.1585693 ], + [ 8.7214101, 47.1586752 ], + [ 8.7215551, 47.158776 ], + [ 8.7217076, 47.1588716 ], + [ 8.7218673, 47.1589616 ], + [ 8.7220337, 47.1590457 ], + [ 8.7222063, 47.1591238 ], + [ 8.7223846, 47.1591957 ], + [ 8.7225682, 47.1592611 ], + [ 8.7227566, 47.1593198 ], + [ 8.7229492, 47.1593717 ], + [ 8.7231456, 47.1594167 ], + [ 8.7233451, 47.1594546 ], + [ 8.7235473, 47.1594853 ], + [ 8.7237515, 47.1595088 ], + [ 8.7239573, 47.1595249 ], + [ 8.724164, 47.1595337 ], + [ 8.724371099999999, 47.1595351 ], + [ 8.7245781, 47.1595291 ], + [ 8.7247842, 47.1595157 ], + [ 8.7249891, 47.1594949 ], + [ 8.7251921, 47.1594669 ], + [ 8.7253927, 47.1594317 ], + [ 8.7255903, 47.1593894 ], + [ 8.7257844, 47.15934 ], + [ 8.7259744, 47.1592838 ], + [ 8.7261599, 47.1592209 ], + [ 8.7263402, 47.1591515 ], + [ 8.726515, 47.1590757 ], + [ 8.7266838, 47.1589938 ], + [ 8.726846, 47.1589059 ], + [ 8.7270013, 47.1588124 ], + [ 8.7271492, 47.1587135 ], + [ 8.7272893, 47.1586095 ], + [ 8.7274212, 47.158500599999996 ], + [ 8.7275445, 47.1583871 ], + [ 8.727659, 47.1582694 ], + [ 8.7277643, 47.1581477 ], + [ 8.727860100000001, 47.1580225 ], + [ 8.7279462, 47.157894 ], + [ 8.7280223, 47.1577626 ], + [ 8.7280882, 47.1576286 ], + [ 8.7281438, 47.1574926 ], + [ 8.7281888, 47.1573547 ], + [ 8.7282232, 47.1572153 ], + [ 8.7282469, 47.157075 ], + [ 8.7282597, 47.156934 ], + [ 8.7282618, 47.1567927 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BIB0001", + "country" : "CHE", + "name" : [ + { + "text" : "Kantonsgefängnis Schwyz", + "lang" : "de-CH" + }, + { + "text" : "Kantonsgefängnis Schwyz", + "lang" : "fr-CH" + }, + { + "text" : "Kantonsgefängnis Schwyz", + "lang" : "it-CH" + }, + { + "text" : "Kantonsgefängnis Schwyz", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Justizvollzug Kanton Schwyz", + "lang" : "de-CH" + }, + { + "text" : "Amt für Justizvollzug Kanton Schwyz", + "lang" : "fr-CH" + }, + { + "text" : "Amt für Justizvollzug Kanton Schwyz", + "lang" : "it-CH" + }, + { + "text" : "Amt für Justizvollzug Kanton Schwyz", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Amtsvorsteher/-in", + "lang" : "de-CH" + }, + { + "text" : "Amtsvorsteher/-in", + "lang" : "fr-CH" + }, + { + "text" : "Amtsvorsteher/-in", + "lang" : "it-CH" + }, + { + "text" : "Amtsvorsteher/-in", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Liliane Kistler", + "lang" : "de-CH" + }, + { + "text" : "Liliane Kistler", + "lang" : "fr-CH" + }, + { + "text" : "Liliane Kistler", + "lang" : "it-CH" + }, + { + "text" : "Liliane Kistler", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.sz.ch/ajv", + "email" : "ajv@sz.ch", + "phone" : "0041418195640", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.5580036, 46.756135 ], + [ 6.5580005, 46.7559937 ], + [ 6.5579867, 46.7558528 ], + [ 6.5579622, 46.7557125 ], + [ 6.557927, 46.7555733 ], + [ 6.5578812, 46.7554355 ], + [ 6.5578251, 46.7552996 ], + [ 6.5577586, 46.7551659 ], + [ 6.5576821, 46.7550348 ], + [ 6.5575957, 46.7549066 ], + [ 6.5574996, 46.7547817 ], + [ 6.5573942, 46.7546604 ], + [ 6.5572797, 46.7545431 ], + [ 6.5571564, 46.75443 ], + [ 6.5570246999999995, 46.7543216 ], + [ 6.5568848, 46.754218 ], + [ 6.5567373, 46.7541196 ], + [ 6.5565825, 46.7540266 ], + [ 6.5564209, 46.7539394 ], + [ 6.5562528, 46.753858 ], + [ 6.5560787, 46.7537829 ], + [ 6.5558992, 46.7537141 ], + [ 6.5557147, 46.7536518 ], + [ 6.5555257000000005, 46.7535963 ], + [ 6.5553327, 46.7535476 ], + [ 6.5551362, 46.753506 ], + [ 6.5549368999999995, 46.7534714 ], + [ 6.5547352, 46.7534441 ], + [ 6.5545318, 46.7534241 ], + [ 6.554327, 46.7534114 ], + [ 6.5541216, 46.7534061 ], + [ 6.5539161, 46.7534082 ], + [ 6.553711, 46.7534177 ], + [ 6.5535069, 46.7534346 ], + [ 6.5533043, 46.7534588 ], + [ 6.5531039, 46.7534902 ], + [ 6.5529062, 46.7535288 ], + [ 6.5527117, 46.7535744 ], + [ 6.5525209, 46.753627 ], + [ 6.5523343, 46.7536864 ], + [ 6.5521526, 46.7537524 ], + [ 6.5519761, 46.7538248 ], + [ 6.5518054, 46.7539035 ], + [ 6.5516409, 46.7539883 ], + [ 6.5514831000000004, 46.7540788 ], + [ 6.5513324, 46.7541749 ], + [ 6.5511892, 46.7542763 ], + [ 6.5510539, 46.7543827 ], + [ 6.5509269, 46.7544938 ], + [ 6.5508086, 46.7546093 ], + [ 6.5506992, 46.7547289 ], + [ 6.5505991, 46.7548523 ], + [ 6.5505085, 46.7549791 ], + [ 6.5504277, 46.755109 ], + [ 6.5503569, 46.7552417 ], + [ 6.5502962, 46.7553767 ], + [ 6.550246, 46.7555137 ], + [ 6.5502062, 46.7556523 ], + [ 6.5501771, 46.7557921 ], + [ 6.5501586, 46.7559328 ], + [ 6.5501509, 46.756074 ], + [ 6.550154, 46.7562153 ], + [ 6.5501678, 46.7563563 ], + [ 6.5501923, 46.7564965 ], + [ 6.5502275, 46.7566357 ], + [ 6.5502732, 46.7567735 ], + [ 6.5503293, 46.7569094 ], + [ 6.5503958, 46.7570431 ], + [ 6.5504723, 46.7571742 ], + [ 6.5505587, 46.7573024 ], + [ 6.5506547, 46.7574274 ], + [ 6.5507601, 46.7575487 ], + [ 6.5508746, 46.757666 ], + [ 6.5509979, 46.757779 ], + [ 6.5511297, 46.7578875 ], + [ 6.5512695, 46.7579911 ], + [ 6.551417, 46.7580895 ], + [ 6.5515718, 46.7581825 ], + [ 6.5517334, 46.7582697 ], + [ 6.5519015, 46.7583511 ], + [ 6.5520756, 46.758426299999996 ], + [ 6.5522551, 46.7584951 ], + [ 6.5524397, 46.7585573 ], + [ 6.5526287, 46.7586129 ], + [ 6.5528217, 46.7586615 ], + [ 6.5530182, 46.7587032 ], + [ 6.5532175, 46.7587377 ], + [ 6.5534192000000004, 46.758765 ], + [ 6.5536227, 46.7587851 ], + [ 6.5538275, 46.7587977 ], + [ 6.5540329, 46.758803 ], + [ 6.5542385, 46.7588009 ], + [ 6.5544436, 46.7587914 ], + [ 6.5546477, 46.7587746 ], + [ 6.5548502, 46.7587504 ], + [ 6.5550507, 46.758719 ], + [ 6.5552484, 46.7586804 ], + [ 6.555443, 46.7586347 ], + [ 6.5556338, 46.7585821 ], + [ 6.5558203, 46.7585227 ], + [ 6.5560021, 46.758456699999996 ], + [ 6.5561786, 46.7583843 ], + [ 6.5563493, 46.7583056 ], + [ 6.5565138, 46.7582208 ], + [ 6.5566716, 46.7581303 ], + [ 6.5568223, 46.7580342 ], + [ 6.5569655000000004, 46.7579328 ], + [ 6.5571008, 46.7578264 ], + [ 6.5572277, 46.7577153 ], + [ 6.5573461, 46.7575998 ], + [ 6.5574555, 46.7574802 ], + [ 6.5575556, 46.7573568 ], + [ 6.5576462, 46.7572299 ], + [ 6.557727, 46.7571 ], + [ 6.5577978, 46.7569674 ], + [ 6.5578584, 46.7568324 ], + [ 6.5579086, 46.7566954 ], + [ 6.5579483, 46.7565567 ], + [ 6.5579775, 46.7564169 ], + [ 6.5579959, 46.7562762 ], + [ 6.5580036, 46.756135 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0070", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Mathod", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Mathod", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Mathod", + "lang" : "it-CH" + }, + { + "text" : "Substation Mathod", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.9440707, 47.4430772 ], + [ 7.9439069, 47.4431006 ], + [ 7.9438615, 47.4431457 ], + [ 7.9435967, 47.4432057 ], + [ 7.9434675, 47.4431832 ], + [ 7.9432558, 47.4432296 ], + [ 7.9442166, 47.44323 ], + [ 7.9440707, 47.4430772 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns154", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Riedmatt", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Riedmatt", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Riedmatt", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Riedmatt", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6767432, 47.520174 ], + [ 7.6767371, 47.5200328 ], + [ 7.6767201, 47.519892 ], + [ 7.6766923, 47.519752 ], + [ 7.6766536, 47.5196132 ], + [ 7.6766044, 47.519476 ], + [ 7.6765445, 47.5193406 ], + [ 7.6764743, 47.5192076 ], + [ 7.6763939, 47.5190773 ], + [ 7.6763036, 47.51895 ], + [ 7.6762036, 47.518826 ], + [ 7.6760941, 47.5187058 ], + [ 7.6759754000000004, 47.5185896 ], + [ 7.675848, 47.5184778 ], + [ 7.6757121, 47.5183707 ], + [ 7.6755681, 47.5182685 ], + [ 7.6754164, 47.5181716 ], + [ 7.6752574, 47.5180802 ], + [ 7.6750916, 47.5179945 ], + [ 7.6749194, 47.5179149 ], + [ 7.6747413, 47.5178414 ], + [ 7.6745578, 47.5177744 ], + [ 7.6743693, 47.5177139 ], + [ 7.6741764, 47.5176603 ], + [ 7.6739796, 47.5176135 ], + [ 7.6737795, 47.5175738 ], + [ 7.6735766, 47.5175413 ], + [ 7.6733715, 47.5175159 ], + [ 7.6731647, 47.5174979 ], + [ 7.6729568, 47.5174872 ], + [ 7.6727483, 47.517484 ], + [ 7.6725399, 47.5174881 ], + [ 7.672332, 47.5174996 ], + [ 7.6721254, 47.5175184 ], + [ 7.6719205, 47.5175446 ], + [ 7.6717179, 47.517578 ], + [ 7.6715181, 47.5176185 ], + [ 7.6713218, 47.517666 ], + [ 7.6711293, 47.5177205 ], + [ 7.6709414, 47.5177817 ], + [ 7.6707585, 47.5178494 ], + [ 7.670581, 47.5179236 ], + [ 7.6704095, 47.518004 ], + [ 7.6702444, 47.5180903 ], + [ 7.6700863, 47.5181823 ], + [ 7.6699354, 47.5182799 ], + [ 7.6697923, 47.5183826 ], + [ 7.6696574, 47.5184903 ], + [ 7.6695309, 47.5186026 ], + [ 7.6694133, 47.5187193 ], + [ 7.6693049, 47.5188399 ], + [ 7.6692059, 47.5189643 ], + [ 7.6691167, 47.5190919 ], + [ 7.6690375, 47.5192226 ], + [ 7.6689684, 47.5193559 ], + [ 7.6689098, 47.5194915 ], + [ 7.6688617, 47.5196289 ], + [ 7.6688243, 47.5197679 ], + [ 7.6687977, 47.519908 ], + [ 7.6687819, 47.5200488 ], + [ 7.6687771, 47.5201901 ], + [ 7.6687832, 47.5203313 ], + [ 7.6688001, 47.520472 ], + [ 7.6688279999999995, 47.520612 ], + [ 7.6688666, 47.5207509 ], + [ 7.6689158, 47.5208881 ], + [ 7.6689756, 47.5210234 ], + [ 7.6690458, 47.521156500000004 ], + [ 7.6691262, 47.5212868 ], + [ 7.6692165, 47.5214141 ], + [ 7.6693166, 47.5215381 ], + [ 7.669426, 47.5216583 ], + [ 7.6695447, 47.5217745 ], + [ 7.6696721, 47.5218863 ], + [ 7.669808, 47.5219934 ], + [ 7.669952, 47.5220956 ], + [ 7.6701037, 47.5221925 ], + [ 7.6702626, 47.522284 ], + [ 7.6704285, 47.5223696 ], + [ 7.6706007, 47.5224493 ], + [ 7.6707788, 47.5225228 ], + [ 7.6709624, 47.5225898 ], + [ 7.6711507999999995, 47.5226502 ], + [ 7.6713436999999995, 47.5227039 ], + [ 7.6715405, 47.5227507 ], + [ 7.6717406, 47.5227904 ], + [ 7.6719436, 47.5228229 ], + [ 7.6721487, 47.5228483 ], + [ 7.6723555999999995, 47.5228663 ], + [ 7.6725635, 47.522877 ], + [ 7.672772, 47.5228802 ], + [ 7.6729804, 47.5228761 ], + [ 7.6731883, 47.5228646 ], + [ 7.673395, 47.5228458 ], + [ 7.6735999, 47.5228196 ], + [ 7.6738025, 47.5227862 ], + [ 7.6740023, 47.5227457 ], + [ 7.6741987, 47.5226981 ], + [ 7.6743911, 47.5226437 ], + [ 7.674579, 47.5225825 ], + [ 7.674762, 47.5225147 ], + [ 7.6749395, 47.5224406 ], + [ 7.675111, 47.5223602 ], + [ 7.6752761, 47.5222739 ], + [ 7.6754342, 47.5221818 ], + [ 7.6755851, 47.5220843 ], + [ 7.6757281, 47.5219815 ], + [ 7.6758631, 47.5218738 ], + [ 7.6759896, 47.5217615 ], + [ 7.6761071, 47.5216448 ], + [ 7.6762156, 47.5215242 ], + [ 7.6763145, 47.5213998 ], + [ 7.6764037, 47.5212721 ], + [ 7.6764829, 47.5211415 ], + [ 7.676552, 47.5210082 ], + [ 7.6766106, 47.5208726 ], + [ 7.6766586, 47.5207352 ], + [ 7.676696, 47.5205962 ], + [ 7.6767226, 47.5204561 ], + [ 7.6767384, 47.5203152 ], + [ 7.6767432, 47.520174 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0059", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Lachmatt", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Lachmatt", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Lachmatt", + "lang" : "it-CH" + }, + { + "text" : "Substation Lachmatt", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7754968, 47.4976113 ], + [ 7.7752982, 47.4976472 ], + [ 7.7751224, 47.4976881 ], + [ 7.7749647, 47.4977436 ], + [ 7.7749493, 47.4977591 ], + [ 7.774877, 47.497832 ], + [ 7.7748445, 47.4978502 ], + [ 7.7748251, 47.4979221 ], + [ 7.7747797, 47.4980707 ], + [ 7.774775, 47.4981264 ], + [ 7.7747749, 47.4981821 ], + [ 7.7747796000000005, 47.4982395 ], + [ 7.7747891, 47.4982964 ], + [ 7.7748017, 47.4983528 ], + [ 7.7748181, 47.4984088 ], + [ 7.7748214, 47.4984179 ], + [ 7.7748383, 47.4984643 ], + [ 7.7748626, 47.498519 ], + [ 7.7749516, 47.4986677 ], + [ 7.7749721, 47.4987056 ], + [ 7.7750582, 47.4989424 ], + [ 7.7750825, 47.4990273 ], + [ 7.7751914, 47.4990763 ], + [ 7.7756176, 47.4992682 ], + [ 7.7763632, 47.4996223 ], + [ 7.7769684, 47.4996595 ], + [ 7.7771063, 47.4996229 ], + [ 7.7772488, 47.4995927 ], + [ 7.7774125, 47.4995945 ], + [ 7.7775622, 47.4996173 ], + [ 7.7776669, 47.4996434 ], + [ 7.777776, 47.4996684 ], + [ 7.7778603, 47.4997152 ], + [ 7.777952, 47.4997557 ], + [ 7.7780314, 47.4997433 ], + [ 7.7781042, 47.4996863 ], + [ 7.7782152, 47.4996383 ], + [ 7.7781473, 47.4992826 ], + [ 7.7781126, 47.4992827 ], + [ 7.7780986, 47.4992826 ], + [ 7.7780845, 47.4992825 ], + [ 7.7780705999999995, 47.4992821 ], + [ 7.7780521, 47.4992814 ], + [ 7.7780377, 47.4992811 ], + [ 7.7780233, 47.4992809 ], + [ 7.7780088, 47.4992808 ], + [ 7.7779942, 47.4992808 ], + [ 7.7779362, 47.499281 ], + [ 7.7779222, 47.499281 ], + [ 7.7779088, 47.4992809 ], + [ 7.7778963, 47.4992806 ], + [ 7.7778845, 47.4992801 ], + [ 7.7778521, 47.4992786 ], + [ 7.7778367, 47.4992778 ], + [ 7.7778254, 47.4992773 ], + [ 7.7778083, 47.499277 ], + [ 7.7777968, 47.4992769 ], + [ 7.7777388, 47.4992771 ], + [ 7.7777272, 47.499277 ], + [ 7.7777157, 47.4992769 ], + [ 7.7777043, 47.4992765 ], + [ 7.7776889, 47.4992757 ], + [ 7.7776729, 47.4992752 ], + [ 7.7776569, 47.4992749 ], + [ 7.7776461999999995, 47.4992746 ], + [ 7.7776257, 47.4992737 ], + [ 7.7776147, 47.4992733 ], + [ 7.7776036, 47.4992732 ], + [ 7.7775758, 47.499273 ], + [ 7.7775647, 47.4992728 ], + [ 7.7775537, 47.4992725 ], + [ 7.7775429, 47.4992719 ], + [ 7.7775213999999995, 47.4992701 ], + [ 7.777506, 47.4992693 ], + [ 7.7774904, 47.4992687 ], + [ 7.777475, 47.499268 ], + [ 7.7774571, 47.4992665 ], + [ 7.7774434, 47.499265199999996 ], + [ 7.7774283, 47.4992639 ], + [ 7.777402, 47.4992613 ], + [ 7.7773819, 47.4992594 ], + [ 7.7773620999999995, 47.4992569 ], + [ 7.7773482, 47.4992552 ], + [ 7.7773289, 47.4992525 ], + [ 7.7773152, 47.4992505 ], + [ 7.7773022, 47.4992482 ], + [ 7.7772901999999995, 47.4992461 ], + [ 7.7772679, 47.499242 ], + [ 7.7772559, 47.4992395 ], + [ 7.7772445, 47.4992372 ], + [ 7.7772341, 47.499235 ], + [ 7.7772071, 47.4992284 ], + [ 7.7771893, 47.4992237 ], + [ 7.7771739, 47.4992196 ], + [ 7.7771603, 47.4992156 ], + [ 7.7771374, 47.4992083 ], + [ 7.7771241, 47.4992039 ], + [ 7.7771109, 47.4991994 ], + [ 7.7770976, 47.4991948 ], + [ 7.7770845, 47.49919 ], + [ 7.7770696, 47.4991837 ], + [ 7.7770542, 47.4991772 ], + [ 7.7770443, 47.4991727 ], + [ 7.7770334, 47.4991675 ], + [ 7.7770245, 47.4991634 ], + [ 7.7770076, 47.4991549 ], + [ 7.7769874, 47.4991441 ], + [ 7.7769708, 47.4991351 ], + [ 7.7769577, 47.499128 ], + [ 7.7769403, 47.499118 ], + [ 7.7769308, 47.4991128 ], + [ 7.7769178, 47.4991055 ], + [ 7.7769063, 47.4990987 ], + [ 7.7768949, 47.4990917 ], + [ 7.7768834, 47.499085 ], + [ 7.7768713, 47.4990785 ], + [ 7.77686, 47.4990719 ], + [ 7.7768414, 47.4990603 ], + [ 7.7768301, 47.4990537 ], + [ 7.7768180000000005, 47.4990472 ], + [ 7.7768064, 47.4990404 ], + [ 7.7767951, 47.4990335 ], + [ 7.7767608, 47.4990138 ], + [ 7.7767417, 47.4990022 ], + [ 7.7767302, 47.4989955 ], + [ 7.7767181, 47.498989 ], + [ 7.7767031, 47.4989801 ], + [ 7.7766882, 47.4989708 ], + [ 7.7766769, 47.4989642 ], + [ 7.7766648, 47.4989577 ], + [ 7.7766532999999995, 47.498951 ], + [ 7.7766418, 47.498944 ], + [ 7.7766303, 47.4989374 ], + [ 7.7766182, 47.4989309 ], + [ 7.7766032, 47.4989219 ], + [ 7.7765847, 47.49891 ], + [ 7.7765737999999995, 47.4989033 ], + [ 7.7765645, 47.4988979 ], + [ 7.7765507, 47.4988898 ], + [ 7.7765408, 47.498884 ], + [ 7.7765291, 47.4988767 ], + [ 7.7765214, 47.4988717 ], + [ 7.7765099, 47.4988641 ], + [ 7.7764985, 47.4988565 ], + [ 7.7764909, 47.4988513 ], + [ 7.7764834, 47.4988462 ], + [ 7.7764761, 47.4988409 ], + [ 7.7764657, 47.4988329 ], + [ 7.7764533, 47.4988224 ], + [ 7.7764417, 47.498813 ], + [ 7.7764294, 47.4988024 ], + [ 7.776418, 47.4987929 ], + [ 7.7764053, 47.4987815 ], + [ 7.7763979, 47.4987745 ], + [ 7.7763896, 47.4987665 ], + [ 7.7763818, 47.4987592 ], + [ 7.7763759, 47.4987531 ], + [ 7.7763685, 47.4987457 ], + [ 7.7763585, 47.4987345 ], + [ 7.7763484, 47.4987233 ], + [ 7.776341, 47.4987145 ], + [ 7.7763321, 47.498703 ], + [ 7.7763254, 47.498694 ], + [ 7.7763187, 47.498685 ], + [ 7.776312, 47.498676 ], + [ 7.7763053, 47.4986671 ], + [ 7.7762986, 47.4986581 ], + [ 7.7762919, 47.4986491 ], + [ 7.7762855, 47.4986401 ], + [ 7.7762794, 47.4986309 ], + [ 7.776275, 47.4986232 ], + [ 7.776266, 47.4986085 ], + [ 7.7762619, 47.4986006 ], + [ 7.7762548, 47.4985873 ], + [ 7.776248, 47.4985751 ], + [ 7.7762393, 47.4985591 ], + [ 7.7762344, 47.4985482 ], + [ 7.7762282, 47.4985333 ], + [ 7.7762245, 47.4985246 ], + [ 7.7762211, 47.4985154 ], + [ 7.7762176, 47.498507 ], + [ 7.7762146, 47.4984987 ], + [ 7.7762118000000005, 47.4984905 ], + [ 7.7762083, 47.4984806 ], + [ 7.7762048, 47.4984681 ], + [ 7.7762017, 47.4984581 ], + [ 7.7761986, 47.4984446 ], + [ 7.7761949999999995, 47.4984311 ], + [ 7.7761919, 47.4984143 ], + [ 7.7761887, 47.4984018 ], + [ 7.7761867, 47.4983918 ], + [ 7.7761854, 47.4983817 ], + [ 7.7761835, 47.4983717 ], + [ 7.7761811, 47.4983626 ], + [ 7.7761797999999995, 47.4983529 ], + [ 7.7761786, 47.4983397 ], + [ 7.7761773, 47.49833 ], + [ 7.776175, 47.4983208 ], + [ 7.7761733, 47.498311 ], + [ 7.7761718, 47.4982924 ], + [ 7.776171, 47.4982848 ], + [ 7.7761698, 47.4982773 ], + [ 7.7761675, 47.4982671 ], + [ 7.7761664, 47.4982595 ], + [ 7.7761657, 47.4982517 ], + [ 7.7761653, 47.49824 ], + [ 7.7761651, 47.4982282 ], + [ 7.7761648, 47.4981729 ], + [ 7.7761644, 47.4981137 ], + [ 7.7761644, 47.4981058 ], + [ 7.7761645, 47.4980979 ], + [ 7.7761648, 47.4980901 ], + [ 7.7761654, 47.4980824 ], + [ 7.7761667, 47.4980749 ], + [ 7.7761688, 47.4980655 ], + [ 7.7761701, 47.4980548 ], + [ 7.7761713, 47.4980405 ], + [ 7.7761727, 47.4980298 ], + [ 7.776175, 47.4980196 ], + [ 7.7761779, 47.4979985 ], + [ 7.7761815, 47.4979814 ], + [ 7.7761846, 47.4979655 ], + [ 7.7761879, 47.4979522 ], + [ 7.7761905, 47.4979394 ], + [ 7.7761947, 47.497923 ], + [ 7.7761971, 47.4979136 ], + [ 7.7762011, 47.4979004 ], + [ 7.7762037, 47.4978911 ], + [ 7.7762099, 47.4978726 ], + [ 7.7762127, 47.4978651 ], + [ 7.7762171, 47.4978542 ], + [ 7.7762202, 47.4978473 ], + [ 7.7762277, 47.4978308 ], + [ 7.7762334, 47.497818 ], + [ 7.7762398, 47.4978044 ], + [ 7.7762463, 47.4977909 ], + [ 7.776253, 47.4977775 ], + [ 7.7762601, 47.4977641 ], + [ 7.776267, 47.497752 ], + [ 7.7762752, 47.4977367 ], + [ 7.77628, 47.4977282 ], + [ 7.7762874, 47.4977162 ], + [ 7.7762931, 47.4977056 ], + [ 7.7763, 47.4976922 ], + [ 7.7763124, 47.4976695 ], + [ 7.7763174, 47.4976648 ], + [ 7.7763232, 47.4976595 ], + [ 7.7763241, 47.4976488 ], + [ 7.7763297, 47.4976373 ], + [ 7.776334, 47.4976274 ], + [ 7.7763371, 47.4976195 ], + [ 7.7763399, 47.4976115 ], + [ 7.7763425, 47.4976021 ], + [ 7.775597, 47.49761 ], + [ 7.7754968, 47.4976113 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr144", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Dumberg", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Dumberg", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Dumberg", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Dumberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.7706853, 47.5103866 ], + [ 8.769665, 47.5111017 ], + [ 8.7695471, 47.51122 ], + [ 8.7695162, 47.5113634 ], + [ 8.7698076, 47.5121822 ], + [ 8.7698766, 47.5125007 ], + [ 8.769848, 47.5126306 ], + [ 8.7698146, 47.512729 ], + [ 8.770648, 47.5136657 ], + [ 8.7700287, 47.5139094 ], + [ 8.7716696, 47.5157533 ], + [ 8.7717753, 47.515996799999996 ], + [ 8.7708312, 47.5163675 ], + [ 8.7716803, 47.5173975 ], + [ 8.7718308, 47.5173634 ], + [ 8.7723974, 47.5181421 ], + [ 8.7741229, 47.5185396 ], + [ 8.7706853, 47.5103866 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSPH002", + "country" : "CHE", + "name" : [ + { + "text" : "LSPH Winterthur (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSPH Winterthur (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSPH Winterthur (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSPH Winterthur (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Segelfluggruppe Winterthur", + "lang" : "de-CH" + }, + { + "text" : "Segelfluggruppe Winterthur", + "lang" : "fr-CH" + }, + { + "text" : "Segelfluggruppe Winterthur", + "lang" : "it-CH" + }, + { + "text" : "Segelfluggruppe Winterthur", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Christian Spaltenstein", + "lang" : "de-CH" + }, + { + "text" : "Christian Spaltenstein", + "lang" : "fr-CH" + }, + { + "text" : "Christian Spaltenstein", + "lang" : "it-CH" + }, + { + "text" : "Christian Spaltenstein", + "lang" : "en-GB" + } + ], + "siteURL" : "https://sgw.ch/drohnen-operationen/vereinbarung-fur-drohnen-operationen/", + "email" : "flugplatzchef@sgw.ch", + "phone" : "0041523372393", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5004677, 47.5151632 ], + [ 7.5005102, 47.5151691 ], + [ 7.500987, 47.5152346 ], + [ 7.5011885, 47.5152599 ], + [ 7.5013141, 47.5153049 ], + [ 7.5014306, 47.5153779 ], + [ 7.5014585, 47.5153958 ], + [ 7.5016043, 47.5154265 ], + [ 7.5020432, 47.5154412 ], + [ 7.5022836999999996, 47.5149117 ], + [ 7.5007641, 47.5149228 ], + [ 7.5004677, 47.5151632 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns033", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Holzmatt", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Holzmatt", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Holzmatt", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Holzmatt", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.1762718, 47.4704467 ], + [ 8.2114836, 47.4621265 ], + [ 8.2783221, 47.4579232 ], + [ 8.2877352, 47.458654 ], + [ 8.2895598, 47.4529641 ], + [ 8.293079, 47.4463185 ], + [ 8.2911708, 47.4352643 ], + [ 8.2844302, 47.4281931 ], + [ 8.2692035, 47.4268543 ], + [ 8.256685300000001, 47.4268435 ], + [ 8.2535472, 47.4262911 ], + [ 8.2208949, 47.4140491 ], + [ 8.20558, 47.4010845 ], + [ 8.203365699999999, 47.4014996 ], + [ 8.1923858, 47.4054769 ], + [ 8.1826402, 47.4108064 ], + [ 8.182401, 47.4109678 ], + [ 8.1738436, 47.4178946 ], + [ 8.1675322, 47.4258197 ], + [ 8.1636439, 47.4344389 ], + [ 8.1623885, 47.4433963 ], + [ 8.1637702, 47.452372 ], + [ 8.1677776, 47.4609665 ], + [ 8.1742381, 47.4688657 ], + [ 8.1762718, 47.4704467 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZF001", + "country" : "CHE", + "name" : [ + { + "text" : "LSZF Birrfeld", + "lang" : "de-CH" + }, + { + "text" : "LSZF Birrfeld", + "lang" : "fr-CH" + }, + { + "text" : "LSZF Birrfeld", + "lang" : "it-CH" + }, + { + "text" : "LSZF Birrfeld", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Flugplatz Birrfeld", + "lang" : "de-CH" + }, + { + "text" : "Flugplatz Birrfeld", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatz Birrfeld", + "lang" : "it-CH" + }, + { + "text" : "Flugplatz Birrfeld", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Carlo Ferrari", + "lang" : "de-CH" + }, + { + "text" : "Carlo Ferrari", + "lang" : "fr-CH" + }, + { + "text" : "Carlo Ferrari", + "lang" : "it-CH" + }, + { + "text" : "Carlo Ferrari", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.birrfeld.ch/home/drohnen/", + "email" : "info@birrfeld.ch", + "phone" : "0041564644040", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.86702, 47.4963823 ], + [ 7.8671353, 47.496284 ], + [ 7.8672534, 47.4962724 ], + [ 7.8673479, 47.4961572 ], + [ 7.8674581, 47.4958955 ], + [ 7.8677052, 47.4957495 ], + [ 7.8676551, 47.4957221 ], + [ 7.867596, 47.4957063 ], + [ 7.8675938, 47.4956745 ], + [ 7.8676712, 47.4956688 ], + [ 7.8678086, 47.4956585 ], + [ 7.8679535, 47.4956196 ], + [ 7.868548, 47.4952034 ], + [ 7.8682946, 47.495231 ], + [ 7.8677459, 47.4952671 ], + [ 7.8678027, 47.4949763 ], + [ 7.8682199, 47.4944707 ], + [ 7.8682065, 47.4944624 ], + [ 7.8681937, 47.4944538 ], + [ 7.8681813, 47.4944448 ], + [ 7.8681694, 47.4944356 ], + [ 7.8681581, 47.494426 ], + [ 7.8681474, 47.4944161 ], + [ 7.8681372, 47.494406 ], + [ 7.8681276, 47.4943956 ], + [ 7.8681176, 47.4943838 ], + [ 7.8681084, 47.4943718 ], + [ 7.8680999, 47.4943596 ], + [ 7.8680921999999995, 47.4943471 ], + [ 7.8680853, 47.4943344 ], + [ 7.8680792, 47.4943215 ], + [ 7.8680739, 47.4943084 ], + [ 7.8680695, 47.4942952 ], + [ 7.8680658999999995, 47.4942819 ], + [ 7.8680632, 47.4942684 ], + [ 7.8680643, 47.4942549 ], + [ 7.8680661, 47.4942415 ], + [ 7.8680687, 47.4942281 ], + [ 7.8680721, 47.4942147 ], + [ 7.8680762, 47.4942015 ], + [ 7.8680810999999995, 47.4941884 ], + [ 7.8680867, 47.4941754 ], + [ 7.8680931, 47.4941626 ], + [ 7.8681002, 47.49415 ], + [ 7.8681079, 47.4941375 ], + [ 7.8681165, 47.4941253 ], + [ 7.8681257, 47.4941132 ], + [ 7.8681356000000005, 47.4941015 ], + [ 7.8681461, 47.4940899 ], + [ 7.8681573, 47.4940787 ], + [ 7.8681691, 47.4940678 ], + [ 7.8681816, 47.4940572 ], + [ 7.8681946, 47.4940469 ], + [ 7.8682082, 47.494037 ], + [ 7.8682224, 47.4940274 ], + [ 7.8684318, 47.4938949 ], + [ 7.8684462, 47.4938852 ], + [ 7.8684613, 47.4938759 ], + [ 7.868477, 47.4938671 ], + [ 7.8684932, 47.4938587 ], + [ 7.8685099, 47.4938508 ], + [ 7.868527, 47.4938433 ], + [ 7.8685447, 47.4938364 ], + [ 7.8685628, 47.49383 ], + [ 7.8685811999999995, 47.4938242 ], + [ 7.8686, 47.4938188 ], + [ 7.8686191, 47.493814 ], + [ 7.8686385, 47.4938098 ], + [ 7.8686582, 47.4938061 ], + [ 7.868678, 47.493803 ], + [ 7.868698, 47.4938005 ], + [ 7.8687181, 47.4937985 ], + [ 7.8687383, 47.4937972 ], + [ 7.8687586, 47.4937964 ], + [ 7.868779, 47.4937962 ], + [ 7.8687993, 47.4937966 ], + [ 7.8688196, 47.4937975 ], + [ 7.8688398, 47.4937991 ], + [ 7.8688599, 47.4938012 ], + [ 7.8688798, 47.493804 ], + [ 7.8688996, 47.4938073 ], + [ 7.8689191, 47.4938111 ], + [ 7.8697031, 47.4927967 ], + [ 7.869631, 47.4927416 ], + [ 7.8688828, 47.4926087 ], + [ 7.8680153, 47.4925876 ], + [ 7.8663481, 47.4938506 ], + [ 7.8663115999999995, 47.494401 ], + [ 7.8662733, 47.494432 ], + [ 7.8662561, 47.4944747 ], + [ 7.8662566, 47.4945269 ], + [ 7.8662431, 47.4945863 ], + [ 7.8662049, 47.4946315 ], + [ 7.8656939, 47.495089 ], + [ 7.865976, 47.4965237 ], + [ 7.86702, 47.4963823 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns088", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Farnsberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Farnsberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Farnsberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Farnsberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7732857, 47.4559431 ], + [ 7.7714058999999995, 47.4556569 ], + [ 7.7713517, 47.4557598 ], + [ 7.7712809, 47.4558965 ], + [ 7.7712065, 47.4560969 ], + [ 7.7711338, 47.4564224 ], + [ 7.7711336, 47.456529 ], + [ 7.7711763, 47.4568768 ], + [ 7.7712516, 47.4575671 ], + [ 7.7712726, 47.4577853 ], + [ 7.7712891, 47.4579571 ], + [ 7.7713032, 47.4580822 ], + [ 7.771314, 47.4581783 ], + [ 7.7713354, 47.4583693 ], + [ 7.7713453999999995, 47.4586592 ], + [ 7.7713456999999995, 47.4588012 ], + [ 7.7713458, 47.458806 ], + [ 7.7719993, 47.4587944 ], + [ 7.7721418, 47.4582859 ], + [ 7.772207, 47.4580533 ], + [ 7.7723212, 47.4576228 ], + [ 7.7723514, 47.45754 ], + [ 7.7723594, 47.4574885 ], + [ 7.7723821, 47.4574679 ], + [ 7.772425, 47.4573677 ], + [ 7.7724928, 47.4572034 ], + [ 7.7725846, 47.457017 ], + [ 7.7726613, 47.4568448 ], + [ 7.7726636, 47.456816 ], + [ 7.7726859, 47.4567955 ], + [ 7.7727044, 47.4567642 ], + [ 7.7727213, 47.4567395 ], + [ 7.7727442, 47.4567094 ], + [ 7.7727596, 47.456691 ], + [ 7.7729001, 47.4565332 ], + [ 7.7729241, 47.456509 ], + [ 7.7729593999999995, 47.4564765 ], + [ 7.7729697, 47.4564648 ], + [ 7.7729782, 47.4564534 ], + [ 7.7732268, 47.4560419 ], + [ 7.7732857, 47.4559431 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr147", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Buechholde", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Buechholde", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Buechholde", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Buechholde", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.0241161, 46.3412551 ], + [ 7.0238718, 46.3411939 ], + [ 7.0236708, 46.3415788 ], + [ 7.0239151, 46.34164 ], + [ 7.0244647, 46.3417777 ], + [ 7.0246658, 46.3413928 ], + [ 7.0241161, 46.3412551 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSEY002", + "country" : "CHE", + "name" : [ + { + "text" : "LSEY Leysin (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSEY Leysin (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSEY Leysin (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSEY Leysin (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Héliport Leysin", + "lang" : "de-CH" + }, + { + "text" : "Héliport Leysin", + "lang" : "fr-CH" + }, + { + "text" : "Héliport Leysin", + "lang" : "it-CH" + }, + { + "text" : "Héliport Leysin", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Chef d'aérodrome", + "lang" : "de-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "fr-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "it-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Silvano Meli", + "lang" : "de-CH" + }, + { + "text" : "Silvano Meli", + "lang" : "fr-CH" + }, + { + "text" : "Silvano Meli", + "lang" : "it-CH" + }, + { + "text" : "Silvano Meli", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.air-glaciers.ch/leysin", + "email" : "leysin@air-glaciers.ch", + "phone" : "0041244943434", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P01DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.1409894, 46.3287347 ], + [ 7.1409829, 46.3287605 ], + [ 7.1411068, 46.3287329 ], + [ 7.141324, 46.328716299999996 ], + [ 7.1415247, 46.3287207 ], + [ 7.1416949, 46.3287535 ], + [ 7.1418129, 46.3287919 ], + [ 7.1419335, 46.3288474 ], + [ 7.1420842, 46.328943 ], + [ 7.1421827, 46.3290289 ], + [ 7.1422755, 46.3291472 ], + [ 7.142379, 46.3293246 ], + [ 7.1425149, 46.3295986 ], + [ 7.1426127, 46.3298107 ], + [ 7.1426371, 46.3298558 ], + [ 7.1427161, 46.3300014 ], + [ 7.1428171, 46.3303266 ], + [ 7.1428376, 46.3303978 ], + [ 7.1428728, 46.3304912 ], + [ 7.1429247, 46.3305618 ], + [ 7.1430504, 46.3306992 ], + [ 7.1432005, 46.3308919 ], + [ 7.1432712, 46.3310311 ], + [ 7.1432927, 46.3311206 ], + [ 7.1432892, 46.3312653 ], + [ 7.1432935, 46.3314786 ], + [ 7.1433066, 46.3315948 ], + [ 7.143361, 46.3317111 ], + [ 7.143462, 46.3318389 ], + [ 7.1435659, 46.3319268 ], + [ 7.143722, 46.3320338 ], + [ 7.1438151, 46.3321159 ], + [ 7.1438434, 46.3321615 ], + [ 7.1438695, 46.3322037 ], + [ 7.1438909, 46.3323161 ], + [ 7.1439173, 46.3325123 ], + [ 7.1439468, 46.332659 ], + [ 7.1439765, 46.3327637 ], + [ 7.1439953, 46.3327934 ], + [ 7.1440201, 46.3328324 ], + [ 7.1440885, 46.3328897 ], + [ 7.1441429, 46.3329135 ], + [ 7.1441634, 46.3329224 ], + [ 7.1441982, 46.3329376 ], + [ 7.1442289, 46.3329427 ], + [ 7.1442396, 46.3329444 ], + [ 7.1443629, 46.3329647 ], + [ 7.1446542, 46.3329864 ], + [ 7.1448163, 46.3330116 ], + [ 7.1449342, 46.3330557 ], + [ 7.1450384, 46.333115 ], + [ 7.1451396, 46.3331971 ], + [ 7.1451968, 46.3332963 ], + [ 7.1452181, 46.3334182 ], + [ 7.1452064, 46.3335591 ], + [ 7.1451728, 46.3336675 ], + [ 7.1450896, 46.3338044 ], + [ 7.1450231, 46.333907 ], + [ 7.1450007, 46.3339793 ], + [ 7.1450058, 46.3340555 ], + [ 7.1450329, 46.3341165 ], + [ 7.1450889, 46.3341647 ], + [ 7.145115, 46.3341872 ], + [ 7.1452412, 46.3342294 ], + [ 7.1453786, 46.3342507 ], + [ 7.1455599, 46.3342588 ], + [ 7.1457825, 46.3342708 ], + [ 7.1459446, 46.3342884 ], + [ 7.1462, 46.3343309 ], + [ 7.1463675, 46.3343713 ], + [ 7.1464964, 46.3344231 ], + [ 7.1466444, 46.334511 ], + [ 7.1468826, 46.3346849 ], + [ 7.1470442, 46.3348015 ], + [ 7.1471564, 46.3348989 ], + [ 7.1472384, 46.3349886 ], + [ 7.1473312, 46.3351069 ], + [ 7.1474214, 46.3351985 ], + [ 7.1475556, 46.3352922 ], + [ 7.1476734, 46.3353724 ], + [ 7.1477691, 46.335466 ], + [ 7.1478482, 46.3355785 ], + [ 7.1479247, 46.3356701 ], + [ 7.1480204, 46.3357656 ], + [ 7.1481654, 46.3358859 ], + [ 7.1483022, 46.3360195 ], + [ 7.1484497, 46.3361875 ], + [ 7.1485481, 46.3362867 ], + [ 7.1486468, 46.3363479 ], + [ 7.1487565, 46.3363882 ], + [ 7.1490119, 46.3364498 ], + [ 7.1491299, 46.3364863 ], + [ 7.1492148, 46.3365417 ], + [ 7.1493705, 46.336723 ], + [ 7.1495453, 46.3369462 ], + [ 7.1496981, 46.3371465 ], + [ 7.1497883, 46.3372515 ], + [ 7.1499225, 46.3373489 ], + [ 7.1500651, 46.3374198 ], + [ 7.1502324, 46.3374887 ], + [ 7.150353, 46.3375519 ], + [ 7.1503628, 46.337562 ], + [ 7.150346, 46.3374354 ], + [ 7.1517412, 46.3373634 ], + [ 7.1517893, 46.3373671 ], + [ 7.1522279, 46.3374339 ], + [ 7.152511, 46.3374319 ], + [ 7.1529352, 46.3375364 ], + [ 7.1532151, 46.3376487 ], + [ 7.1533904, 46.3376716 ], + [ 7.1542501, 46.3379319 ], + [ 7.1544386, 46.3378847 ], + [ 7.1552813, 46.3379363 ], + [ 7.1562312, 46.3378362 ], + [ 7.1562572, 46.3378335 ], + [ 7.1564389, 46.3378691 ], + [ 7.1564632, 46.3374391 ], + [ 7.156516, 46.3365181 ], + [ 7.1558603, 46.3364985 ], + [ 7.1553576, 46.3362597 ], + [ 7.1548614, 46.3360237 ], + [ 7.1547876, 46.3359857 ], + [ 7.1539923, 46.3355717 ], + [ 7.1541098, 46.3354596 ], + [ 7.1542547, 46.3353196 ], + [ 7.1543983, 46.3351823 ], + [ 7.1544493, 46.3351159 ], + [ 7.1544908, 46.3351295 ], + [ 7.1545026, 46.3351133 ], + [ 7.1545272, 46.335126 ], + [ 7.1545363, 46.3351098 ], + [ 7.1545547, 46.3350838 ], + [ 7.1545913, 46.3350308 ], + [ 7.1546646, 46.3349275 ], + [ 7.1546672000000004, 46.3349239 ], + [ 7.1547458, 46.3347901 ], + [ 7.1547975, 46.3345923 ], + [ 7.1547664, 46.3345833 ], + [ 7.1548281, 46.3344575 ], + [ 7.1548542, 46.3344288 ], + [ 7.1549521, 46.3343273 ], + [ 7.1549574, 46.3343211 ], + [ 7.1549292, 46.3339917 ], + [ 7.1557358, 46.3339704 ], + [ 7.1559086, 46.3339654 ], + [ 7.1559203, 46.3339628 ], + [ 7.1561205, 46.3339111 ], + [ 7.1563767, 46.3338461 ], + [ 7.1565614, 46.3337988 ], + [ 7.1563893, 46.3331831 ], + [ 7.1562517, 46.3326763 ], + [ 7.1561981, 46.3322363 ], + [ 7.1561931, 46.3321922 ], + [ 7.1559729, 46.3318363 ], + [ 7.1555933, 46.3316734 ], + [ 7.1554831, 46.3313898 ], + [ 7.1554297, 46.3311594 ], + [ 7.1552658, 46.3309736 ], + [ 7.1553537, 46.3307976 ], + [ 7.1554816, 46.330686299999996 ], + [ 7.1554925, 46.3303355 ], + [ 7.1553284, 46.3301732 ], + [ 7.1555558, 46.3294028 ], + [ 7.1554506, 46.3291669 ], + [ 7.1562056, 46.3283106 ], + [ 7.1561194, 46.328161 ], + [ 7.1558834000000004, 46.3281011 ], + [ 7.1556517, 46.3279512 ], + [ 7.1551747, 46.3277808 ], + [ 7.1547281, 46.3275162 ], + [ 7.1545328, 46.3273672 ], + [ 7.1543781, 46.3271635 ], + [ 7.1543203, 46.3270357 ], + [ 7.1541546, 46.3269408 ], + [ 7.1537357, 46.3268309 ], + [ 7.1535024, 46.3267628 ], + [ 7.1534159, 46.3266547 ], + [ 7.1533673, 46.3265124 ], + [ 7.1535158, 46.3261889 ], + [ 7.1536818, 46.3259726 ], + [ 7.1539959, 46.3257512 ], + [ 7.15424, 46.3255215 ], + [ 7.1544389, 46.3249678 ], + [ 7.1544599, 46.3246908 ], + [ 7.1542659, 46.3242918 ], + [ 7.1538089, 46.3240343 ], + [ 7.1533312, 46.3240124 ], + [ 7.1527269, 46.3241125 ], + [ 7.1511333, 46.3249127 ], + [ 7.1508969, 46.325182 ], + [ 7.1505941, 46.3252217 ], + [ 7.1503401, 46.3253703 ], + [ 7.1501639, 46.3255381 ], + [ 7.1500458, 46.3257744 ], + [ 7.1496648, 46.3258814 ], + [ 7.1493528, 46.325948 ], + [ 7.1491168, 46.3261237 ], + [ 7.1490769, 46.3262991 ], + [ 7.149009, 46.3263664 ], + [ 7.1488528, 46.3264334 ], + [ 7.148675, 46.3266633 ], + [ 7.1486597, 46.3271013 ], + [ 7.1485539, 46.3272027 ], + [ 7.1484822, 46.3272619 ], + [ 7.1484209, 46.3273076 ], + [ 7.1483766, 46.3273327 ], + [ 7.1482193, 46.3273772 ], + [ 7.1481295, 46.327413 ], + [ 7.1480891, 46.3274363 ], + [ 7.1478637, 46.3275823 ], + [ 7.1477958, 46.327646 ], + [ 7.147784, 46.3276667 ], + [ 7.1477178, 46.3276584 ], + [ 7.1477205999999995, 46.3273948 ], + [ 7.1477156, 46.3273508 ], + [ 7.1477004, 46.3272859 ], + [ 7.1476264, 46.3270321 ], + [ 7.1476422, 46.3269997 ], + [ 7.147671, 46.3269521 ], + [ 7.1478552, 46.3267412 ], + [ 7.1478631, 46.326725 ], + [ 7.1478632, 46.326698 ], + [ 7.147831, 46.3266647 ], + [ 7.1477896, 46.3266241 ], + [ 7.1477806, 46.3266025 ], + [ 7.1477821, 46.3265665 ], + [ 7.1477941, 46.3265072 ], + [ 7.1478167, 46.3264263 ], + [ 7.147822, 46.3264065 ], + [ 7.1478208, 46.326375 ], + [ 7.1478148, 46.3262931 ], + [ 7.1478149, 46.3262769 ], + [ 7.1478152, 46.3262167 ], + [ 7.1478076, 46.3261843 ], + [ 7.1477857, 46.3261482 ], + [ 7.1477123, 46.3260356 ], + [ 7.1477073, 46.3260032 ], + [ 7.1477205, 46.3259582 ], + [ 7.1477415, 46.3259115 ], + [ 7.1477765, 46.3256849 ], + [ 7.147804, 46.3256427 ], + [ 7.1479047, 46.3255107 ], + [ 7.1479493, 46.3254218 ], + [ 7.1479927, 46.325322 ], + [ 7.148031, 46.3252025 ], + [ 7.1480337, 46.3251818 ], + [ 7.1480094, 46.3251125 ], + [ 7.1479226, 46.3250808 ], + [ 7.1469882, 46.3247365 ], + [ 7.1468574, 46.3249125 ], + [ 7.1463286, 46.3247438 ], + [ 7.1458301, 46.3252022 ], + [ 7.1454994, 46.325599 ], + [ 7.1452273, 46.3254975 ], + [ 7.1449729, 46.3257145 ], + [ 7.1444827, 46.3260794 ], + [ 7.1440919, 46.3258184 ], + [ 7.1440815, 46.3258211 ], + [ 7.1440724, 46.3258246 ], + [ 7.144062, 46.3258282 ], + [ 7.1440529, 46.3258309 ], + [ 7.1440425, 46.3258335 ], + [ 7.1440334, 46.3258371 ], + [ 7.144023, 46.3258398 ], + [ 7.1440126, 46.3258425 ], + [ 7.1440035, 46.3258451 ], + [ 7.1439931, 46.3258478 ], + [ 7.1439827, 46.3258505 ], + [ 7.1439723, 46.3258532 ], + [ 7.1439619, 46.3258558 ], + [ 7.1439528, 46.3258576 ], + [ 7.1439424, 46.3258603 ], + [ 7.143932, 46.3258629 ], + [ 7.1439216, 46.3258647 ], + [ 7.1439112, 46.3258665 ], + [ 7.1439008, 46.3258692 ], + [ 7.1438904, 46.3258709 ], + [ 7.14388, 46.3258727 ], + [ 7.1438696, 46.3258745 ], + [ 7.1438592, 46.3258762 ], + [ 7.1438488, 46.325878 ], + [ 7.1438384, 46.3258798 ], + [ 7.143828, 46.3258816 ], + [ 7.1438163, 46.3258833 ], + [ 7.1438059, 46.3258842 ], + [ 7.1437433, 46.3259263 ], + [ 7.1428128, 46.3265437 ], + [ 7.1399377, 46.3272872 ], + [ 7.139186, 46.3272628 ], + [ 7.1384639, 46.3272761 ], + [ 7.1380068, 46.3272812 ], + [ 7.1369669, 46.3272416 ], + [ 7.1369017, 46.3273017 ], + [ 7.1369114, 46.3274258 ], + [ 7.1368488, 46.3274607 ], + [ 7.1368509, 46.3275561 ], + [ 7.1368542999999995, 46.3276524 ], + [ 7.1371739, 46.3280778 ], + [ 7.1371817, 46.3280814 ], + [ 7.1371895, 46.3280851 ], + [ 7.137196, 46.3280878 ], + [ 7.1372037, 46.3280914 ], + [ 7.1372115, 46.328095 ], + [ 7.1372193, 46.3280977 ], + [ 7.137227, 46.3281004 ], + [ 7.1372348, 46.3281041 ], + [ 7.1372426, 46.3281068 ], + [ 7.1372504, 46.3281095 ], + [ 7.1372594, 46.3281131 ], + [ 7.1372672, 46.3281158 ], + [ 7.137275, 46.3281186 ], + [ 7.1372828, 46.3281213 ], + [ 7.1372906, 46.3281231 ], + [ 7.1372996, 46.3281258 ], + [ 7.1373074, 46.3281285 ], + [ 7.1373152, 46.3281313 ], + [ 7.1373243, 46.3281331 ], + [ 7.137332, 46.3281358 ], + [ 7.1373411, 46.3281376 ], + [ 7.1373489, 46.3281395 ], + [ 7.137358, 46.3281422 ], + [ 7.1373657999999995, 46.328144 ], + [ 7.1373748, 46.3281458 ], + [ 7.1373839, 46.3281476 ], + [ 7.1373917, 46.3281495 ], + [ 7.1374008, 46.3281513 ], + [ 7.1374086, 46.3281531 ], + [ 7.1374176, 46.328154 ], + [ 7.1374267, 46.3281559 ], + [ 7.1374358, 46.3281568 ], + [ 7.1374436, 46.3281586 ], + [ 7.1374527, 46.3281595 ], + [ 7.1374617, 46.3281613 ], + [ 7.1374708, 46.3281623 ], + [ 7.1374786, 46.3281632 ], + [ 7.1374877, 46.3281641 ], + [ 7.1374968, 46.328165 ], + [ 7.1375059, 46.328166 ], + [ 7.137515, 46.3281669 ], + [ 7.137524, 46.3281678 ], + [ 7.1375551999999995, 46.3281706 ], + [ 7.1375876, 46.3281743 ], + [ 7.1376201, 46.328178 ], + [ 7.1376525, 46.3281807 ], + [ 7.1376837, 46.3281844 ], + [ 7.1377161, 46.3281872 ], + [ 7.1377486, 46.32819 ], + [ 7.137781, 46.3281937 ], + [ 7.1378122, 46.3281965 ], + [ 7.1378446, 46.3281992 ], + [ 7.1378771, 46.328202 ], + [ 7.1379095, 46.3282048 ], + [ 7.137942, 46.3282076 ], + [ 7.1379744, 46.3282095 ], + [ 7.1380056, 46.3282123 ], + [ 7.1380172, 46.3282132 ], + [ 7.1380289, 46.328215 ], + [ 7.1380406, 46.328216 ], + [ 7.1380523, 46.3282178 ], + [ 7.138064, 46.3282187 ], + [ 7.1380742999999995, 46.3282206 ], + [ 7.138086, 46.3282224 ], + [ 7.1380977, 46.3282242 ], + [ 7.1381094, 46.3282251 ], + [ 7.138121, 46.328227 ], + [ 7.1381314, 46.3282288 ], + [ 7.1381431, 46.3282315 ], + [ 7.1381548, 46.3282334 ], + [ 7.1381651999999995, 46.3282352 ], + [ 7.1381768, 46.3282379 ], + [ 7.1381885, 46.3282397 ], + [ 7.1381989, 46.3282425 ], + [ 7.1382106, 46.3282443 ], + [ 7.1382209, 46.328247 ], + [ 7.1382326, 46.3282498 ], + [ 7.138243, 46.3282516 ], + [ 7.1382546, 46.3282543 ], + [ 7.138265, 46.328257 ], + [ 7.1382767, 46.3282598 ], + [ 7.1382871, 46.3282634 ], + [ 7.1382974, 46.3282661 ], + [ 7.1383091, 46.3282689 ], + [ 7.1383195, 46.3282716 ], + [ 7.1383298, 46.3282752 ], + [ 7.1383415, 46.3282779 ], + [ 7.1383519, 46.3282816 ], + [ 7.1383623, 46.3282852 ], + [ 7.1383726, 46.3282879 ], + [ 7.138383, 46.3282915 ], + [ 7.1383973, 46.328297 ], + [ 7.1384115, 46.3283024 ], + [ 7.1384258, 46.3283069 ], + [ 7.13844, 46.3283124 ], + [ 7.1384543, 46.3283169 ], + [ 7.1384698, 46.3283224 ], + [ 7.1384841, 46.3283269 ], + [ 7.1384984, 46.3283314 ], + [ 7.1385126, 46.3283369 ], + [ 7.1385269, 46.3283414 ], + [ 7.1385424, 46.3283459 ], + [ 7.1385567, 46.3283505 ], + [ 7.1385709, 46.328355 ], + [ 7.1385865, 46.3283595 ], + [ 7.1386008, 46.3283632 ], + [ 7.1386163, 46.3283677 ], + [ 7.1386306, 46.3283723 ], + [ 7.1386461, 46.3283759 ], + [ 7.1386604, 46.3283804 ], + [ 7.138676, 46.3283841 ], + [ 7.1386902, 46.3283877 ], + [ 7.1387058, 46.3283922 ], + [ 7.1387213, 46.3283959 ], + [ 7.1390754, 46.328476 ], + [ 7.1390884, 46.3284787 ], + [ 7.1391014, 46.3284815 ], + [ 7.139113, 46.3284842 ], + [ 7.139126, 46.3284869 ], + [ 7.139139, 46.3284888 ], + [ 7.1391519, 46.3284915 ], + [ 7.1391636, 46.3284942 ], + [ 7.1391766, 46.3284961 ], + [ 7.1391896, 46.3284988 ], + [ 7.1392025, 46.3285006 ], + [ 7.1392155, 46.3285025 ], + [ 7.1392285, 46.3285052 ], + [ 7.1392415, 46.328507 ], + [ 7.1392531, 46.3285088 ], + [ 7.1392661, 46.3285107 ], + [ 7.1392790999999995, 46.3285125 ], + [ 7.1392921, 46.3285143 ], + [ 7.139305, 46.3285153 ], + [ 7.139318, 46.3285171 ], + [ 7.139331, 46.3285189 ], + [ 7.139344, 46.3285199 ], + [ 7.1393569, 46.3285217 ], + [ 7.1393699, 46.3285227 ], + [ 7.1393829, 46.3285236 ], + [ 7.1393959, 46.3285254 ], + [ 7.1394089, 46.3285264 ], + [ 7.1394231, 46.3285273 ], + [ 7.1394361, 46.3285282 ], + [ 7.1394491, 46.3285292 ], + [ 7.1394621, 46.3285292 ], + [ 7.1394751, 46.3285301 ], + [ 7.139488, 46.3285311 ], + [ 7.139501, 46.3285311 ], + [ 7.139514, 46.328532 ], + [ 7.139527, 46.3285321 ], + [ 7.1395413, 46.3285321 ], + [ 7.1395543, 46.328533 ], + [ 7.1395608, 46.3285331 ], + [ 7.1395685, 46.3285331 ], + [ 7.1395763, 46.328534 ], + [ 7.1395828, 46.3285349 ], + [ 7.1395906, 46.3285349 ], + [ 7.1395984, 46.3285359 ], + [ 7.1396049, 46.3285368 ], + [ 7.1396127, 46.3285377 ], + [ 7.1396192, 46.3285386 ], + [ 7.1396269, 46.3285395 ], + [ 7.1396347, 46.3285404 ], + [ 7.1396412, 46.3285423 ], + [ 7.139649, 46.3285432 ], + [ 7.1396555, 46.3285441 ], + [ 7.1396633, 46.3285459 ], + [ 7.1396698, 46.3285468 ], + [ 7.1396762, 46.3285487 ], + [ 7.139684, 46.3285505 ], + [ 7.1396905, 46.3285523 ], + [ 7.1396983, 46.3285532 ], + [ 7.1397048, 46.328555 ], + [ 7.1397113, 46.3285568 ], + [ 7.139719, 46.3285587 ], + [ 7.1397255, 46.3285614 ], + [ 7.139732, 46.3285632 ], + [ 7.1397385, 46.328565 ], + [ 7.139745, 46.3285677 ], + [ 7.1397527, 46.3285695 ], + [ 7.1397592, 46.3285723 ], + [ 7.1397657, 46.3285741 ], + [ 7.1397722, 46.3285768 ], + [ 7.1397787, 46.3285786 ], + [ 7.1397851, 46.3285813 ], + [ 7.1397916, 46.328584 ], + [ 7.1397968, 46.3285868 ], + [ 7.1398033, 46.3285895 ], + [ 7.1398098, 46.3285922 ], + [ 7.1398162, 46.3285949 ], + [ 7.1398214, 46.3285985 ], + [ 7.1398279, 46.3286012 ], + [ 7.1398344, 46.3286039 ], + [ 7.1398395, 46.3286076 ], + [ 7.139846, 46.3286103 ], + [ 7.1398512, 46.3286139 ], + [ 7.1398577, 46.3286166 ], + [ 7.1398628, 46.3286202 ], + [ 7.139868, 46.3286229 ], + [ 7.1398745, 46.3286265 ], + [ 7.1398797, 46.3286302 ], + [ 7.1398848, 46.3286338 ], + [ 7.13989, 46.3286374 ], + [ 7.1398952, 46.328641 ], + [ 7.1399004, 46.3286446 ], + [ 7.1399055, 46.3286482 ], + [ 7.1401643, 46.3288288 ], + [ 7.1401681, 46.3288315 ], + [ 7.140172, 46.3288342 ], + [ 7.1401772, 46.328836 ], + [ 7.1401811, 46.3288387 ], + [ 7.1401863, 46.3288415 ], + [ 7.1401901, 46.3288442 ], + [ 7.1401953, 46.328846 ], + [ 7.1401992, 46.3288487 ], + [ 7.1402044, 46.3288505 ], + [ 7.1402096, 46.3288523 ], + [ 7.1402148, 46.328855 ], + [ 7.1402186, 46.3288568 ], + [ 7.1402238, 46.3288587 ], + [ 7.140229, 46.3288605 ], + [ 7.1402342, 46.3288623 ], + [ 7.1402394, 46.3288641 ], + [ 7.1402446, 46.3288659 ], + [ 7.1402497, 46.3288677 ], + [ 7.1402549, 46.3288695 ], + [ 7.1402601, 46.3288704 ], + [ 7.1402653, 46.3288723 ], + [ 7.1402705, 46.3288741 ], + [ 7.1402757, 46.328875 ], + [ 7.1402822, 46.3288759 ], + [ 7.1402874, 46.3288777 ], + [ 7.1402925, 46.3288786 ], + [ 7.1402977, 46.3288795 ], + [ 7.1403042, 46.3288805 ], + [ 7.1403094, 46.3288814 ], + [ 7.1403146, 46.3288823 ], + [ 7.1403211, 46.3288832 ], + [ 7.1403263, 46.3288841 ], + [ 7.1403315, 46.328885 ], + [ 7.140338, 46.328885 ], + [ 7.1403431, 46.328886 ], + [ 7.1403483, 46.328886 ], + [ 7.1403548, 46.3288869 ], + [ 7.14036, 46.3288869 ], + [ 7.1403665, 46.3288869 ], + [ 7.1403717, 46.3288869 ], + [ 7.1403769, 46.3288869 ], + [ 7.1409894, 46.3287347 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00017", + "country" : "CHE", + "name" : [ + { + "text" : "La Jorasse", + "lang" : "de-CH" + }, + { + "text" : "La Jorasse", + "lang" : "fr-CH" + }, + { + "text" : "La Jorasse", + "lang" : "it-CH" + }, + { + "text" : "La Jorasse", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "startDateTime" : "2024-11-15T00:00:00+01:00", + "endDateTime" : "2025-04-15T00:00:00+02:00" + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Generaldirektion für Umwelt", + "lang" : "de-CH" + }, + { + "text" : "Direction générale de l'environnement", + "lang" : "fr-CH" + }, + { + "text" : "Direzione generale dell'Ambiente", + "lang" : "it-CH" + }, + { + "text" : "Environment Department", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.dge@vd.ch", + "phone" : "0041213164422", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.361469, 47.2437358 ], + [ 9.3613926, 47.2438541 ], + [ 9.3611717, 47.2439558 ], + [ 9.3609476, 47.2439704 ], + [ 9.3607002, 47.2440726 ], + [ 9.3603185, 47.2441113 ], + [ 9.3598679, 47.244073 ], + [ 9.3595725, 47.2441265 ], + [ 9.3592912, 47.244204 ], + [ 9.3586081, 47.2443126 ], + [ 9.3583291, 47.2442687 ], + [ 9.3580766, 47.2442648 ], + [ 9.3571432, 47.2443595 ], + [ 9.3568413, 47.2442683 ], + [ 9.3563751, 47.2443102 ], + [ 9.355506, 47.2443922 ], + [ 9.3552266, 47.2443375 ], + [ 9.3546597, 47.2441867 ], + [ 9.3541635, 47.2442409 ], + [ 9.3538016, 47.2442055 ], + [ 9.353432, 47.2442162 ], + [ 9.3527713, 47.2443261 ], + [ 9.3523749, 47.2442956 ], + [ 9.3520874, 47.2443033 ], + [ 9.3518716, 47.2443627 ], + [ 9.3512788, 47.2443014 ], + [ 9.3510021, 47.2443609 ], + [ 9.3507554, 47.2445171 ], + [ 9.350308, 47.2445695 ], + [ 9.3500844, 47.2446722 ], + [ 9.3496378, 47.244819 ], + [ 9.3491324, 47.2449453 ], + [ 9.3486409, 47.2451685 ], + [ 9.3484345, 47.2454931 ], + [ 9.3477928, 47.2457637 ], + [ 9.3476646, 47.2459845 ], + [ 9.3471197, 47.2461159 ], + [ 9.3468152, 47.2462109 ], + [ 9.3458555, 47.2464562 ], + [ 9.3449476, 47.2470804 ], + [ 9.3444256, 47.2474111 ], + [ 9.3436882, 47.2477427 ], + [ 9.3435353, 47.2479 ], + [ 9.3432691, 47.2484019 ], + [ 9.3431396, 47.248787 ], + [ 9.3430942, 47.2490635 ], + [ 9.3431656, 47.2491968 ], + [ 9.3432725, 47.2493953 ], + [ 9.34243, 47.2498824 ], + [ 9.342003, 47.2503213 ], + [ 9.3420889, 47.2505088 ], + [ 9.342135, 47.250688 ], + [ 9.3420019, 47.2510321 ], + [ 9.3417077, 47.2513069 ], + [ 9.3415734, 47.251615 ], + [ 9.341306, 47.2518983 ], + [ 9.3412985, 47.2520604 ], + [ 9.3362458, 47.2595421 ], + [ 9.3361009, 47.2597398 ], + [ 9.3360434, 47.2599836 ], + [ 9.3357305, 47.2604746 ], + [ 9.3352191, 47.2609599 ], + [ 9.3349406, 47.2613064 ], + [ 9.3348049, 47.2615785 ], + [ 9.334734, 47.261813599999996 ], + [ 9.3347188, 47.2621288 ], + [ 9.3346443, 47.2622649 ], + [ 9.3342831, 47.2625138 ], + [ 9.3341319, 47.2627232 ], + [ 9.3339183, 47.2632216 ], + [ 9.33391, 47.2635456 ], + [ 9.3339344, 47.2638601 ], + [ 9.3335996, 47.2642975 ], + [ 9.3332097, 47.2650417 ], + [ 9.3331384, 47.2652678 ], + [ 9.3332975, 47.265652 ], + [ 9.3333947, 47.2657854 ], + [ 9.3334322, 47.2659107 ], + [ 9.3333742, 47.2661366 ], + [ 9.3333806, 47.2665054 ], + [ 9.3333619, 47.2667216 ], + [ 9.3331405, 47.2673731 ], + [ 9.3330527, 47.2678436 ], + [ 9.332777, 47.2697866 ], + [ 9.3327636, 47.2698822 ], + [ 9.3327535, 47.2699548 ], + [ 9.3314385, 47.2718212 ], + [ 9.3291098, 47.2751259 ], + [ 9.3288029, 47.2755614 ], + [ 9.3263835, 47.2789944 ], + [ 9.3250434, 47.2808958 ], + [ 9.3247676, 47.2812869 ], + [ 9.3236265, 47.2829059 ], + [ 9.3232591, 47.2830641 ], + [ 9.3222238, 47.2835451 ], + [ 9.3217149, 47.2838416 ], + [ 9.3217316, 47.2839154 ], + [ 9.3216485, 47.2840129 ], + [ 9.3215985, 47.2842166 ], + [ 9.3215237, 47.2842928 ], + [ 9.3213543, 47.2843092 ], + [ 9.3208448, 47.2842841 ], + [ 9.3203903, 47.2845928 ], + [ 9.320044, 47.2848138 ], + [ 9.3200091, 47.2848377 ], + [ 9.3196466, 47.285086 ], + [ 9.319619, 47.2851527 ], + [ 9.3193917, 47.2853683 ], + [ 9.3192177, 47.2855853 ], + [ 9.3190033, 47.2856612 ], + [ 9.31885, 47.2857738 ], + [ 9.3188854, 47.2858728 ], + [ 9.318871, 47.2859947 ], + [ 9.3188343, 47.2862256 ], + [ 9.318747, 47.2863365 ], + [ 9.3187887, 47.2863694 ], + [ 9.3187363, 47.2864773 ], + [ 9.3187099, 47.2865317 ], + [ 9.318652, 47.2867146 ], + [ 9.3187008, 47.2868339 ], + [ 9.3188984, 47.286922 ], + [ 9.3188597, 47.2870078 ], + [ 9.3188994, 47.2871109 ], + [ 9.3188314, 47.2872 ], + [ 9.3184924, 47.2874963 ], + [ 9.3183342, 47.2878574 ], + [ 9.3183136, 47.2879678 ], + [ 9.3184056, 47.2880583 ], + [ 9.3185747, 47.2881754 ], + [ 9.3186026, 47.2882552 ], + [ 9.3185316, 47.2883306 ], + [ 9.3183303, 47.2884734 ], + [ 9.3181759, 47.2885862 ], + [ 9.3178628, 47.2887212 ], + [ 9.3179755, 47.2887624 ], + [ 9.3177801, 47.2889079 ], + [ 9.3178277, 47.2889877 ], + [ 9.3177681, 47.2890564 ], + [ 9.3176078, 47.2890869 ], + [ 9.3173704, 47.2892186 ], + [ 9.3170216, 47.2892133 ], + [ 9.3165532, 47.2891589 ], + [ 9.3165603, 47.2892163 ], + [ 9.3165205, 47.2893141 ], + [ 9.3164051, 47.289392 ], + [ 9.3160589, 47.2892717 ], + [ 9.3159314, 47.2891877 ], + [ 9.315822, 47.2891732 ], + [ 9.3157067, 47.2892764 ], + [ 9.3154592, 47.2893057 ], + [ 9.315354899999999, 47.2894635 ], + [ 9.3151732, 47.2895094 ], + [ 9.3149553, 47.2897374 ], + [ 9.3147955, 47.2897532 ], + [ 9.3147087, 47.2899446 ], + [ 9.3145377, 47.2899872 ], + [ 9.3144509, 47.2902265 ], + [ 9.314376, 47.2903794 ], + [ 9.314406, 47.2905888 ], + [ 9.3144331, 47.2907873 ], + [ 9.3144643, 47.2909038 ], + [ 9.314413, 47.2909787 ], + [ 9.3142019, 47.290992 ], + [ 9.3139644, 47.2910691 ], + [ 9.3137877, 47.2911853 ], + [ 9.3135586, 47.2914467 ], + [ 9.313559, 47.2916144 ], + [ 9.313542, 47.2917358 ], + [ 9.3134954, 47.2918818 ], + [ 9.3133953, 47.2922864 ], + [ 9.3135008, 47.2923061 ], + [ 9.313421, 47.2927192 ], + [ 9.3136796, 47.292759 ], + [ 9.313672799999999, 47.292861 ], + [ 9.3135999, 47.2929431 ], + [ 9.3135013, 47.2930346 ], + [ 9.3133565, 47.2931326 ], + [ 9.3132204, 47.2932374 ], + [ 9.3129852, 47.2935319 ], + [ 9.3127925, 47.2936399 ], + [ 9.3126402, 47.2939468 ], + [ 9.3127046, 47.2941284 ], + [ 9.3128682, 47.2942591 ], + [ 9.3127811, 47.2943443 ], + [ 9.312793, 47.2944574 ], + [ 9.3129528, 47.2944668 ], + [ 9.3128641, 47.2945151 ], + [ 9.3129047, 47.2945846 ], + [ 9.3128003, 47.2948654 ], + [ 9.3129659, 47.2950364 ], + [ 9.312987, 47.2951059 ], + [ 9.312922, 47.2953183 ], + [ 9.3131345, 47.295398 ], + [ 9.3131843, 47.2954805 ], + [ 9.3131266, 47.2957219 ], + [ 9.3131267, 47.2959663 ], + [ 9.3130404, 47.2961147 ], + [ 9.3133991, 47.296596 ], + [ 9.3138058, 47.2968614 ], + [ 9.3140804, 47.2971827 ], + [ 9.3142058, 47.2974518 ], + [ 9.314271, 47.29753 ], + [ 9.3144694, 47.2976868 ], + [ 9.3146553, 47.2978067 ], + [ 9.3146875, 47.2978939 ], + [ 9.3145753, 47.2980447 ], + [ 9.314584, 47.2982094 ], + [ 9.3146928, 47.2983674 ], + [ 9.3146699, 47.2986588 ], + [ 9.3147147, 47.2987073 ], + [ 9.3147183, 47.2989252 ], + [ 9.3149061, 47.2990895 ], + [ 9.3150601, 47.2993216 ], + [ 9.3152371, 47.2995809 ], + [ 9.3155178, 47.2998062 ], + [ 9.3156765, 47.3000464 ], + [ 9.3158343, 47.3001928 ], + [ 9.3158215, 47.3004043 ], + [ 9.3158772, 47.3004627 ], + [ 9.3160188, 47.3008283 ], + [ 9.3159666, 47.3010916 ], + [ 9.3160687, 47.3012573 ], + [ 9.3161352, 47.3012765 ], + [ 9.3164141, 47.3012775 ], + [ 9.3164947, 47.3013736 ], + [ 9.3167254, 47.301551 ], + [ 9.3169798, 47.3016858 ], + [ 9.3171101, 47.3017431 ], + [ 9.3177306, 47.3021132 ], + [ 9.3183549, 47.3021214 ], + [ 9.3187933, 47.3022435 ], + [ 9.3188262, 47.302409 ], + [ 9.3188863, 47.3025741 ], + [ 9.3192117, 47.3025688 ], + [ 9.3195971, 47.3027286 ], + [ 9.3196869, 47.3029671 ], + [ 9.3199123, 47.3032033 ], + [ 9.3201589, 47.3032731 ], + [ 9.3204301, 47.3032687 ], + [ 9.3206225, 47.3033394 ], + [ 9.320906, 47.3036854 ], + [ 9.3211101, 47.304088 ], + [ 9.3214117, 47.3041754 ], + [ 9.3216325, 47.3042825 ], + [ 9.3217752, 47.3044832 ], + [ 9.3221078, 47.3046808 ], + [ 9.3222088, 47.3047626 ], + [ 9.3226572, 47.3048748 ], + [ 9.3229, 47.3048339 ], + [ 9.3234204, 47.304973 ], + [ 9.3238052, 47.3051144 ], + [ 9.3242655, 47.3050884 ], + [ 9.3245478, 47.3053975 ], + [ 9.3246977, 47.3058011 ], + [ 9.3249734, 47.3059257 ], + [ 9.3254912, 47.3059911 ], + [ 9.3258199, 47.306078 ], + [ 9.3262041, 47.3062009 ], + [ 9.3263978, 47.3063084 ], + [ 9.3276595, 47.3066938 ], + [ 9.3280463, 47.3068904 ], + [ 9.3285501, 47.3073251 ], + [ 9.3289428, 47.3076877 ], + [ 9.3290882, 47.3079622 ], + [ 9.3293421, 47.3082348 ], + [ 9.3293493, 47.3084377 ], + [ 9.329576, 47.3087108 ], + [ 9.3297175, 47.3088746 ], + [ 9.3302174, 47.3091986 ], + [ 9.3304951, 47.3093786 ], + [ 9.3308244, 47.3094839 ], + [ 9.3308561, 47.3096125 ], + [ 9.3306702, 47.3097263 ], + [ 9.3303223, 47.3098612 ], + [ 9.330334, 47.3101932 ], + [ 9.3305886, 47.3104843 ], + [ 9.3309418, 47.310497 ], + [ 9.331242, 47.3105474 ], + [ 9.3312215, 47.3107323 ], + [ 9.3311473, 47.3109365 ], + [ 9.3311545, 47.3111394 ], + [ 9.3314593, 47.3113189 ], + [ 9.3318217, 47.3115898 ], + [ 9.3319089, 47.3117545 ], + [ 9.3317871, 47.312144 ], + [ 9.3317905, 47.3122868 ], + [ 9.3318362, 47.3123908 ], + [ 9.3319395, 47.3125415 ], + [ 9.3322408, 47.312746 ], + [ 9.3324957, 47.3128275 ], + [ 9.3327987, 47.3130796 ], + [ 9.333131, 47.3133694 ], + [ 9.3342729, 47.3130997 ], + [ 9.3346405, 47.3130623 ], + [ 9.335313, 47.3125181 ], + [ 9.3361203, 47.3118774 ], + [ 9.3368006, 47.3115526 ], + [ 9.3375785, 47.311383 ], + [ 9.338261, 47.3111208 ], + [ 9.3388973, 47.3108594 ], + [ 9.3395337, 47.310598 ], + [ 9.340076700000001, 47.3103067 ], + [ 9.3406681, 47.3100774 ], + [ 9.3417159, 47.3097151 ], + [ 9.3422229, 47.3097067 ], + [ 9.3429592, 47.3096632 ], + [ 9.3436427, 47.3094323 ], + [ 9.3442768, 47.3091082 ], + [ 9.3450907, 47.3086556 ], + [ 9.3457697, 47.3082993 ], + [ 9.3464083, 47.3081006 ], + [ 9.3477493, 47.3082039 ], + [ 9.3488006, 47.3079511 ], + [ 9.3494174, 47.3075838 ], + [ 9.3501151, 47.3071295 ], + [ 9.3505809, 47.3066504 ], + [ 9.3508804, 47.3062169 ], + [ 9.3511229, 47.3058268 ], + [ 9.3516579, 47.3053161 ], + [ 9.3523751, 47.3047396 ], + [ 9.3521255, 47.3042105 ], + [ 9.3527606, 47.3039177 ], + [ 9.3534833, 47.303497899999996 ], + [ 9.3536103, 47.3031821 ], + [ 9.3533608, 47.3026531 ], + [ 9.3530697, 47.3022501 ], + [ 9.3539509, 47.3023923 ], + [ 9.3545533, 47.3024764 ], + [ 9.3552356, 47.3022141 ], + [ 9.3556908, 47.3020497 ], + [ 9.3560134, 47.3020444 ], + [ 9.356436, 47.3022569 ], + [ 9.3566687, 47.3023158 ], + [ 9.3569773, 47.3016432 ], + [ 9.3575339, 47.3018324 ], + [ 9.3587755, 47.3021896 ], + [ 9.3595263, 47.3023993 ], + [ 9.3600712, 47.3025801 ], + [ 9.3616258, 47.3030036 ], + [ 9.3615888, 47.3031837 ], + [ 9.3617743, 47.3032402 ], + [ 9.3622722, 47.3033918 ], + [ 9.3623926, 47.303245 ], + [ 9.3627413, 47.3033048 ], + [ 9.3634397, 47.3035271 ], + [ 9.3645227, 47.3037384 ], + [ 9.3659142, 47.3041434 ], + [ 9.3666114, 47.3042568 ], + [ 9.367293, 47.3043777 ], + [ 9.3678202, 47.3043266 ], + [ 9.3680934, 47.304089 ], + [ 9.368676, 47.3042178 ], + [ 9.3696166, 47.3043307 ], + [ 9.3700911, 47.3044308 ], + [ 9.3704051, 47.3044831 ], + [ 9.3707528, 47.3045132 ], + [ 9.3711406, 47.3046309 ], + [ 9.3716971, 47.3045856 ], + [ 9.372424, 47.3047507 ], + [ 9.3727876, 47.3048149 ], + [ 9.3728124, 47.3048193 ], + [ 9.3729776, 47.3048485 ], + [ 9.3739536, 47.305020999999996 ], + [ 9.3743769, 47.3050958 ], + [ 9.3749357, 47.3051125 ], + [ 9.3750584, 47.305052 ], + [ 9.3752357, 47.3049645 ], + [ 9.3752567, 47.3049541 ], + [ 9.375824, 47.3050238 ], + [ 9.3763993, 47.3049844 ], + [ 9.3769369, 47.3050204 ], + [ 9.3773022, 47.3050448 ], + [ 9.3780541, 47.3052209 ], + [ 9.3784694, 47.3052406 ], + [ 9.3787668, 47.3052565 ], + [ 9.3792456, 47.3053177 ], + [ 9.3794477, 47.3053436 ], + [ 9.3794905, 47.305349 ], + [ 9.3804753, 47.3054496 ], + [ 9.3805194, 47.3054541 ], + [ 9.3810099, 47.3054669 ], + [ 9.3812108, 47.3054754 ], + [ 9.3812416, 47.3053774 ], + [ 9.3812765, 47.3052662 ], + [ 9.3813772, 47.3049457 ], + [ 9.3813959, 47.3048861 ], + [ 9.381392, 47.3048408 ], + [ 9.3813902, 47.3048199 ], + [ 9.3813647, 47.3045278 ], + [ 9.3813705, 47.3042703 ], + [ 9.3813751, 47.3041976 ], + [ 9.3813766, 47.3041979 ], + [ 9.3814233, 47.3042042 ], + [ 9.3815736, 47.3042239 ], + [ 9.3816909, 47.3042371 ], + [ 9.3817496, 47.3042437 ], + [ 9.3818075, 47.304253 ], + [ 9.3818728, 47.3042663 ], + [ 9.3819369, 47.3042822 ], + [ 9.3820653, 47.3043137 ], + [ 9.3821872, 47.3043406 ], + [ 9.3823107, 47.3043641 ], + [ 9.3824159, 47.3043774 ], + [ 9.3825219, 47.3043874 ], + [ 9.3826192, 47.3043931 ], + [ 9.382668, 47.3043959 ], + [ 9.382716, 47.3044021 ], + [ 9.3827801, 47.3044141 ], + [ 9.3828429, 47.3044287 ], + [ 9.3829364, 47.3044528 ], + [ 9.3829671, 47.3044607 ], + [ 9.3830329, 47.3044777 ], + [ 9.383140000000001, 47.3045056 ], + [ 9.3832257, 47.3045293 ], + [ 9.38331, 47.3045553 ], + [ 9.3834305, 47.3045961 ], + [ 9.3835488, 47.3046398 ], + [ 9.3836647, 47.3046864 ], + [ 9.3836945, 47.304699 ], + [ 9.3839041, 47.304775 ], + [ 9.3842759, 47.3048948 ], + [ 9.384371699999999, 47.3049263 ], + [ 9.3844625, 47.3049535 ], + [ 9.384554, 47.3049795 ], + [ 9.3846507, 47.3050065 ], + [ 9.3847487, 47.3050315 ], + [ 9.3847738, 47.3050371 ], + [ 9.3848312, 47.3050479 ], + [ 9.3849145, 47.3050626 ], + [ 9.3849939, 47.3050777 ], + [ 9.3850738, 47.3050918 ], + [ 9.3851654, 47.3051056 ], + [ 9.3852579, 47.3051167 ], + [ 9.385374, 47.3051247 ], + [ 9.3854903, 47.3051319 ], + [ 9.385584099999999, 47.3051397 ], + [ 9.3856772, 47.3051509 ], + [ 9.3857241, 47.305159 ], + [ 9.3857702, 47.3051689 ], + [ 9.3858626, 47.3051886 ], + [ 9.3859436, 47.305204 ], + [ 9.3860256, 47.3052168 ], + [ 9.3860898, 47.3052233 ], + [ 9.3861223, 47.3052249 ], + [ 9.3861549, 47.305224 ], + [ 9.3861703, 47.3052221 ], + [ 9.3861851, 47.3052184 ], + [ 9.3861942, 47.3052149 ], + [ 9.3862024, 47.3052104 ], + [ 9.3862093, 47.305205 ], + [ 9.3862162, 47.3051976 ], + [ 9.3862216, 47.3051897 ], + [ 9.3862254, 47.3051814 ], + [ 9.3863923, 47.3053181 ], + [ 9.3867072, 47.3054106 ], + [ 9.3869117, 47.3054475 ], + [ 9.3870509, 47.3054601 ], + [ 9.3871431, 47.3054792 ], + [ 9.387261, 47.3055095 ], + [ 9.3874798, 47.305568 ], + [ 9.3876187, 47.3056174 ], + [ 9.3877416, 47.3056925 ], + [ 9.3878447, 47.3057806 ], + [ 9.3879792, 47.3058474 ], + [ 9.3881165, 47.305898 ], + [ 9.3883817, 47.3059691 ], + [ 9.388569799999999, 47.3060137 ], + [ 9.3886143, 47.3060239 ], + [ 9.3886581, 47.3060355 ], + [ 9.3887214, 47.3060578 ], + [ 9.3887838, 47.3060811 ], + [ 9.3888606, 47.3061085 ], + [ 9.3888682, 47.3061112 ], + [ 9.3889376, 47.3061357 ], + [ 9.3889698, 47.3061471 ], + [ 9.3890023, 47.3061581 ], + [ 9.3890437, 47.3061703 ], + [ 9.3890843, 47.3061838 ], + [ 9.3890969, 47.3061896 ], + [ 9.3891084, 47.3061962 ], + [ 9.3891303, 47.3062105 ], + [ 9.389166, 47.3062362 ], + [ 9.3892013, 47.3062622 ], + [ 9.3892271, 47.3062806 ], + [ 9.3892545, 47.3062979 ], + [ 9.3892771, 47.3063085 ], + [ 9.3893016, 47.306317 ], + [ 9.3893465, 47.3063287 ], + [ 9.3893924, 47.3063387 ], + [ 9.3894594, 47.3063512 ], + [ 9.3895268, 47.3063628 ], + [ 9.3896162, 47.3063773 ], + [ 9.3897492, 47.3064199 ], + [ 9.3899839, 47.3065017 ], + [ 9.3901285, 47.3065348 ], + [ 9.3903283, 47.3065881 ], + [ 9.3904378, 47.3066142 ], + [ 9.3905557, 47.3066427 ], + [ 9.3906378, 47.3066517 ], + [ 9.3906949, 47.3066533 ], + [ 9.3909181, 47.3066525 ], + [ 9.3912354, 47.306657 ], + [ 9.3913893, 47.3066532 ], + [ 9.3914672, 47.3066702 ], + [ 9.3915861, 47.3067001 ], + [ 9.3916683, 47.3067225 ], + [ 9.3917252, 47.3067429 ], + [ 9.3918472, 47.3067763 ], + [ 9.3919329, 47.3067908 ], + [ 9.3919835, 47.3067929 ], + [ 9.392098, 47.3068399 ], + [ 9.3922289, 47.3069013 ], + [ 9.3924027, 47.306998 ], + [ 9.3925289, 47.3070769 ], + [ 9.3925857, 47.307093 ], + [ 9.3926717, 47.3071647 ], + [ 9.3927592, 47.3071765 ], + [ 9.3928217, 47.3071704 ], + [ 9.3928418, 47.307229 ], + [ 9.3928927, 47.3072312 ], + [ 9.3929357, 47.3072203 ], + [ 9.3929522, 47.3072637 ], + [ 9.3929601, 47.307316900000004 ], + [ 9.3929588, 47.307336 ], + [ 9.392987, 47.307362 ], + [ 9.393162, 47.3074693 ], + [ 9.3932485, 47.307513900000004 ], + [ 9.3933076, 47.3075501 ], + [ 9.3933369, 47.3075619 ], + [ 9.3934418, 47.307635 ], + [ 9.3934904, 47.3076584 ], + [ 9.3935422, 47.3076887 ], + [ 9.3935887, 47.3077236 ], + [ 9.3936543, 47.3077458 ], + [ 9.3937187, 47.3077696 ], + [ 9.3937389, 47.3077926 ], + [ 9.3937814, 47.3078053 ], + [ 9.3938749, 47.3078278 ], + [ 9.3939682, 47.3078294 ], + [ 9.3940628, 47.3078323 ], + [ 9.3941235, 47.307846 ], + [ 9.3941417, 47.3078549 ], + [ 9.3941003, 47.3078921 ], + [ 9.3940339, 47.3079148 ], + [ 9.3940081, 47.3079487 ], + [ 9.3939601, 47.3080128 ], + [ 9.3939874, 47.3080333 ], + [ 9.3939731, 47.308062 ], + [ 9.3939591, 47.3080769 ], + [ 9.3942616, 47.3085441 ], + [ 9.3949865, 47.3088876 ], + [ 9.395147099999999, 47.3089637 ], + [ 9.3952757, 47.3089787 ], + [ 9.3956307, 47.3090798 ], + [ 9.3957016, 47.3091103 ], + [ 9.395768499999999, 47.3091474 ], + [ 9.395926, 47.3093139 ], + [ 9.3959816, 47.3093588 ], + [ 9.3960497, 47.3094142 ], + [ 9.3961349, 47.3094738 ], + [ 9.396271, 47.3095161 ], + [ 9.3964747, 47.3095785 ], + [ 9.3966131, 47.3096063 ], + [ 9.3968732, 47.3096522 ], + [ 9.3971336, 47.3097014 ], + [ 9.3973878, 47.3097763 ], + [ 9.3976044, 47.3098598 ], + [ 9.397784, 47.309929 ], + [ 9.397952, 47.3099812 ], + [ 9.3981063, 47.3100351 ], + [ 9.3983221, 47.3101114 ], + [ 9.3984554, 47.3101582 ], + [ 9.3989186, 47.3102648 ], + [ 9.398974, 47.310291 ], + [ 9.3990489, 47.3103061 ], + [ 9.3991422, 47.3103287 ], + [ 9.3992648, 47.3103486 ], + [ 9.3993515, 47.3104012 ], + [ 9.3993737, 47.3104033 ], + [ 9.3994624, 47.3104708 ], + [ 9.3995043, 47.3104957 ], + [ 9.3995509, 47.3105123 ], + [ 9.3996501, 47.31058 ], + [ 9.3997955, 47.3106684 ], + [ 9.3998759, 47.3107175 ], + [ 9.4001567, 47.3108502 ], + [ 9.4006212, 47.3110077 ], + [ 9.4006887, 47.311013 ], + [ 9.4007006, 47.3110119 ], + [ 9.4007823, 47.3109853 ], + [ 9.4008919, 47.3109646 ], + [ 9.4010217, 47.31095 ], + [ 9.4011374, 47.3109707 ], + [ 9.4012218, 47.3109869 ], + [ 9.4012969, 47.3109879 ], + [ 9.4013279, 47.3110116 ], + [ 9.401329, 47.311031 ], + [ 9.4014051, 47.3109981 ], + [ 9.4014654, 47.310982 ], + [ 9.4015018, 47.3110072 ], + [ 9.401586, 47.3110495 ], + [ 9.4016653, 47.3110871 ], + [ 9.4017772, 47.3111003 ], + [ 9.4018943, 47.3111297 ], + [ 9.4020139, 47.3111785 ], + [ 9.4021399, 47.3112195 ], + [ 9.4023522, 47.3112502 ], + [ 9.4028182, 47.3112868 ], + [ 9.4031768, 47.3112869 ], + [ 9.4033737, 47.3113657 ], + [ 9.4034186, 47.3113719 ], + [ 9.4036763, 47.311407 ], + [ 9.4037359, 47.3114104 ], + [ 9.4038691, 47.3114845 ], + [ 9.4044931, 47.3116295 ], + [ 9.4048725, 47.3115522 ], + [ 9.404949, 47.3115191 ], + [ 9.4050874, 47.3115232 ], + [ 9.4050821, 47.3115159 ], + [ 9.4051209, 47.311516 ], + [ 9.4052546, 47.3115794 ], + [ 9.4055115, 47.3116869 ], + [ 9.4058662, 47.311745 ], + [ 9.4062811, 47.3117809 ], + [ 9.4066521, 47.3118299 ], + [ 9.4069497, 47.3118767 ], + [ 9.4070689, 47.3118692 ], + [ 9.4072462, 47.311875 ], + [ 9.4074261, 47.3118915 ], + [ 9.4074428, 47.3118964 ], + [ 9.4074857, 47.311909 ], + [ 9.4075646, 47.3119408 ], + [ 9.4076796, 47.3119729 ], + [ 9.4077938, 47.3119896 ], + [ 9.4078639, 47.3119864 ], + [ 9.4079584, 47.3120057 ], + [ 9.4081372, 47.312075899999996 ], + [ 9.4082288, 47.3120958 ], + [ 9.4083534, 47.3121093 ], + [ 9.408562, 47.3121433 ], + [ 9.4087002, 47.3121515 ], + [ 9.4088752, 47.3121717 ], + [ 9.4090469, 47.3122035 ], + [ 9.4091758, 47.3122189 ], + [ 9.409329, 47.31224 ], + [ 9.4093819, 47.3122551 ], + [ 9.4095535, 47.3123098 ], + [ 9.4097715, 47.3123657 ], + [ 9.4099116, 47.3124009 ], + [ 9.4100717, 47.312432 ], + [ 9.410322, 47.31247 ], + [ 9.4104083, 47.3124866 ], + [ 9.410575099999999, 47.312518 ], + [ 9.4107809, 47.3125634 ], + [ 9.4110175, 47.3126462 ], + [ 9.4112121, 47.3126871 ], + [ 9.4113391, 47.3127118 ], + [ 9.4114591, 47.3127293 ], + [ 9.4116038, 47.3127531 ], + [ 9.4118205, 47.3127837 ], + [ 9.4119375, 47.3127964 ], + [ 9.4120241, 47.3128222 ], + [ 9.4120781, 47.3128513 ], + [ 9.4121057, 47.3128882 ], + [ 9.4121386, 47.3129397 ], + [ 9.4121689, 47.312975 ], + [ 9.4122377, 47.3129897 ], + [ 9.4123486, 47.312978 ], + [ 9.4126028, 47.312932 ], + [ 9.4127421, 47.312897 ], + [ 9.4128126, 47.3128626 ], + [ 9.412848199999999, 47.312821 ], + [ 9.4128661, 47.3127521 ], + [ 9.412854, 47.3126827 ], + [ 9.4128684, 47.3126386 ], + [ 9.4129136, 47.3125895 ], + [ 9.4129758, 47.312531 ], + [ 9.4129984, 47.3125123 ], + [ 9.413029, 47.3124869 ], + [ 9.4130451, 47.3124306 ], + [ 9.4130546, 47.3123946 ], + [ 9.4131432, 47.3124047 ], + [ 9.4132304, 47.3124195 ], + [ 9.4133157, 47.3124388 ], + [ 9.4133985, 47.3124626 ], + [ 9.4134596, 47.3124802 ], + [ 9.413724, 47.3125561 ], + [ 9.413962, 47.312633 ], + [ 9.4142142, 47.3127129 ], + [ 9.414377, 47.3127606 ], + [ 9.4145301, 47.312822 ], + [ 9.4146046, 47.3128479 ], + [ 9.4147853, 47.312893 ], + [ 9.414968, 47.3129345 ], + [ 9.4151004, 47.3129658 ], + [ 9.4152539, 47.3130014 ], + [ 9.4152849, 47.3130062 ], + [ 9.4153167, 47.3130077 ], + [ 9.4153342, 47.3130076 ], + [ 9.4153515, 47.3130092 ], + [ 9.4153682, 47.3130126 ], + [ 9.4153841, 47.3130176 ], + [ 9.4153987, 47.3130241 ], + [ 9.4154724, 47.3130599 ], + [ 9.415518, 47.3130918 ], + [ 9.4155585, 47.3131267 ], + [ 9.4155934, 47.3131643 ], + [ 9.4156224, 47.3132042 ], + [ 9.4156381, 47.3132206 ], + [ 9.4156574, 47.3132352 ], + [ 9.4156798, 47.3132476 ], + [ 9.4157046, 47.3132574 ], + [ 9.4158251, 47.3132833 ], + [ 9.4158784, 47.3132885 ], + [ 9.4159321, 47.3132898 ], + [ 9.4160695, 47.313291 ], + [ 9.4162655, 47.3133126 ], + [ 9.4165246, 47.3133612 ], + [ 9.416727, 47.3133928 ], + [ 9.4169006, 47.3134189 ], + [ 9.4170078, 47.313435 ], + [ 9.4171138, 47.3134544 ], + [ 9.4172184, 47.3134772 ], + [ 9.417307, 47.3135061 ], + [ 9.4173287, 47.3135163 ], + [ 9.4173525, 47.313524 ], + [ 9.4173779, 47.313529 ], + [ 9.4174041, 47.3135311 ], + [ 9.4174305, 47.3135304 ], + [ 9.4174563, 47.3135268 ], + [ 9.417481, 47.3135205 ], + [ 9.4175039, 47.3135115 ], + [ 9.4175193, 47.3135028 ], + [ 9.4175366, 47.313496 ], + [ 9.4175553, 47.3134912 ], + [ 9.417575, 47.3134887 ], + [ 9.417595, 47.3134885 ], + [ 9.4176148, 47.3134906 ], + [ 9.4176337, 47.3134949 ], + [ 9.4176513, 47.3135013 ], + [ 9.4177244, 47.3135232 ], + [ 9.417801, 47.3135386 ], + [ 9.4178798, 47.3135473 ], + [ 9.4179596, 47.3135491 ], + [ 9.4180391, 47.3135441 ], + [ 9.4181333, 47.3135453 ], + [ 9.4182273, 47.3135504 ], + [ 9.4183206, 47.3135595 ], + [ 9.4183485, 47.3135641 ], + [ 9.418377, 47.3135662 ], + [ 9.4184057, 47.3135658 ], + [ 9.4184324, 47.3135661 ], + [ 9.4184587, 47.3135693 ], + [ 9.4184839, 47.3135751 ], + [ 9.4187515, 47.3136073 ], + [ 9.4190185, 47.3136279 ], + [ 9.4192246, 47.313667 ], + [ 9.4193583, 47.3136833 ], + [ 9.4192875, 47.3137325 ], + [ 9.4191546, 47.3138341 ], + [ 9.41905, 47.3138712 ], + [ 9.4189758, 47.3139029 ], + [ 9.4189957, 47.313933 ], + [ 9.419027, 47.3139608 ], + [ 9.41908, 47.3139797 ], + [ 9.4191783, 47.3140509 ], + [ 9.4193276, 47.3141536 ], + [ 9.419385, 47.3141873 ], + [ 9.4195396, 47.3142189 ], + [ 9.4195397, 47.3142183 ], + [ 9.419886, 47.3142381 ], + [ 9.4199047, 47.3142417 ], + [ 9.4199988, 47.3142599 ], + [ 9.4200892, 47.3142817 ], + [ 9.4201103, 47.3142868 ], + [ 9.4202252, 47.314284 ], + [ 9.4204057, 47.3142525 ], + [ 9.4206866, 47.3142809 ], + [ 9.4208587, 47.3143149 ], + [ 9.4210489, 47.3143393 ], + [ 9.4212014, 47.3143761 ], + [ 9.4213843, 47.314372 ], + [ 9.4214741, 47.3144155 ], + [ 9.4215147, 47.3144206 ], + [ 9.4217973, 47.3144561 ], + [ 9.4222165, 47.3145655 ], + [ 9.4226283, 47.3146806 ], + [ 9.4230631, 47.3146626 ], + [ 9.4232561, 47.3145385 ], + [ 9.4232852, 47.3144942 ], + [ 9.4232838, 47.3143983 ], + [ 9.4232932, 47.3143671 ], + [ 9.4233841, 47.3141681 ], + [ 9.4234279, 47.314027 ], + [ 9.4234668, 47.3139486 ], + [ 9.4234765, 47.3138577 ], + [ 9.4235603, 47.3137587 ], + [ 9.4236865, 47.3136039 ], + [ 9.4237671, 47.3135316 ], + [ 9.4238936, 47.3134023 ], + [ 9.4238969, 47.3133519 ], + [ 9.4239053, 47.3132257 ], + [ 9.423907, 47.3131109 ], + [ 9.4239075, 47.313074 ], + [ 9.4239315, 47.3130178 ], + [ 9.4240684, 47.3128627 ], + [ 9.4240886, 47.3127983 ], + [ 9.4240913, 47.3127898 ], + [ 9.4240833, 47.3127314 ], + [ 9.4240898, 47.3127293 ], + [ 9.4241024, 47.3127252 ], + [ 9.4241472, 47.312711 ], + [ 9.4241995, 47.3126094 ], + [ 9.4242075, 47.3125939 ], + [ 9.4242082, 47.312586 ], + [ 9.4242082, 47.3125856 ], + [ 9.4242416, 47.3122172 ], + [ 9.4242471, 47.3121561 ], + [ 9.4243372, 47.3120032 ], + [ 9.4243577, 47.311977 ], + [ 9.424384, 47.3119441 ], + [ 9.4243911, 47.311931799999996 ], + [ 9.4243951, 47.3119189 ], + [ 9.4243957, 47.3119058 ], + [ 9.4243958, 47.3118998 ], + [ 9.4243972, 47.3118939 ], + [ 9.4243998, 47.3118882 ], + [ 9.4244036, 47.3118827 ], + [ 9.4244051, 47.3118805 ], + [ 9.424406, 47.3118781 ], + [ 9.4244064, 47.3118757 ], + [ 9.4244061, 47.3118732 ], + [ 9.4244053, 47.3118708 ], + [ 9.4244038, 47.3118666 ], + [ 9.4244033, 47.3118623 ], + [ 9.4244037, 47.311858 ], + [ 9.4244051, 47.3118538 ], + [ 9.4244074, 47.3118498 ], + [ 9.4244105, 47.311846 ], + [ 9.4244134, 47.3118425 ], + [ 9.4244155, 47.3118388 ], + [ 9.4244179, 47.3118307 ], + [ 9.4244183, 47.3118225 ], + [ 9.4244168, 47.3118144 ], + [ 9.4244068, 47.3117824 ], + [ 9.4244027, 47.3117731 ], + [ 9.4243964, 47.3117645 ], + [ 9.424388, 47.3117567 ], + [ 9.4243778, 47.3117499 ], + [ 9.4243661, 47.3117444 ], + [ 9.424359, 47.3117411 ], + [ 9.4243528, 47.3117372 ], + [ 9.4243477, 47.3117325 ], + [ 9.4243262, 47.3117116 ], + [ 9.4243024, 47.311692 ], + [ 9.4242928, 47.3116835 ], + [ 9.4242852, 47.3116742 ], + [ 9.4242795, 47.3116643 ], + [ 9.424276, 47.3116539 ], + [ 9.4242748, 47.3116433 ], + [ 9.4242729, 47.311621 ], + [ 9.4242679, 47.3115988 ], + [ 9.424266, 47.3115877 ], + [ 9.4242669, 47.3115765 ], + [ 9.4242706, 47.3115656 ], + [ 9.4242771, 47.3115552 ], + [ 9.424286, 47.3115458 ], + [ 9.4242955, 47.3115359 ], + [ 9.4243024, 47.311525 ], + [ 9.4243064, 47.3115135 ], + [ 9.4243076, 47.3115017 ], + [ 9.4243087, 47.3114904 ], + [ 9.4243125, 47.3114793 ], + [ 9.424319, 47.3114688 ], + [ 9.4243205, 47.3114664 ], + [ 9.4243215, 47.311464 ], + [ 9.4243244, 47.311446 ], + [ 9.4243232, 47.3114279 ], + [ 9.4243184, 47.3114112 ], + [ 9.42431, 47.3113952 ], + [ 9.424298199999999, 47.3113802 ], + [ 9.4242691, 47.3113518 ], + [ 9.4242363, 47.3113253 ], + [ 9.4242273, 47.3113194 ], + [ 9.4242175, 47.3113143 ], + [ 9.4241791, 47.3112947 ], + [ 9.4241708, 47.3112907 ], + [ 9.424161699999999, 47.3112874 ], + [ 9.4241521, 47.3112851 ], + [ 9.4241374, 47.3112816 ], + [ 9.4241234, 47.311277 ], + [ 9.4241104, 47.3112712 ], + [ 9.4240337, 47.3112327 ], + [ 9.4240085, 47.3112135 ], + [ 9.4239607, 47.3111775 ], + [ 9.4239101, 47.3111434 ], + [ 9.4238931, 47.3111336 ], + [ 9.4238883, 47.3111307 ], + [ 9.4238842, 47.3111272 ], + [ 9.4238809, 47.3111234 ], + [ 9.4238786, 47.3111193 ], + [ 9.4238755, 47.3111141 ], + [ 9.4238713, 47.3111093 ], + [ 9.4238659, 47.311105 ], + [ 9.4238595, 47.3111014 ], + [ 9.4238524, 47.3110986 ], + [ 9.4238495, 47.3110975 ], + [ 9.4238469, 47.3110961 ], + [ 9.4238446, 47.3110944 ], + [ 9.4238427, 47.3110925 ], + [ 9.4238412, 47.3110905 ], + [ 9.4238402, 47.3110883 ], + [ 9.4238397, 47.311086 ], + [ 9.4238394, 47.3110664 ], + [ 9.4238406, 47.3110606 ], + [ 9.423843, 47.3110549 ], + [ 9.4238467, 47.3110496 ], + [ 9.4238483, 47.3110472 ], + [ 9.4238493, 47.3110445 ], + [ 9.4238496, 47.3110418 ], + [ 9.4238492, 47.3110392 ], + [ 9.4238403, 47.3110111 ], + [ 9.4238288, 47.3109834 ], + [ 9.4238268, 47.3109801 ], + [ 9.4238241, 47.310977 ], + [ 9.4238208, 47.3109742 ], + [ 9.4238169, 47.3109718 ], + [ 9.4238125, 47.3109698 ], + [ 9.4238061, 47.3109668 ], + [ 9.4238003, 47.3109633 ], + [ 9.4237954, 47.3109591 ], + [ 9.4237914, 47.3109546 ], + [ 9.4237885, 47.3109496 ], + [ 9.4238181, 47.3109345 ], + [ 9.4237972, 47.3109155 ], + [ 9.4237831, 47.3108937 ], + [ 9.4237681, 47.3108705 ], + [ 9.4237548, 47.3108324 ], + [ 9.4237003, 47.3107788 ], + [ 9.4237036, 47.3107259 ], + [ 9.4236651, 47.3106459 ], + [ 9.4236101, 47.3105982 ], + [ 9.4237134, 47.3105919 ], + [ 9.4238638, 47.3105732 ], + [ 9.4238702, 47.3105653 ], + [ 9.4238782, 47.3105582 ], + [ 9.4238875, 47.3105519 ], + [ 9.4238981, 47.3105465 ], + [ 9.4239096, 47.3105422 ], + [ 9.4239234, 47.3105387 ], + [ 9.4239379, 47.3105368 ], + [ 9.4239526, 47.3105363 ], + [ 9.4239672, 47.3105375 ], + [ 9.4240397, 47.3105654 ], + [ 9.4241129, 47.3105682 ], + [ 9.4241711, 47.3105725 ], + [ 9.4242883, 47.3105184 ], + [ 9.4243143, 47.3105017 ], + [ 9.424335, 47.3104888 ], + [ 9.4249273, 47.3104138 ], + [ 9.4250189, 47.3104258 ], + [ 9.4251772, 47.3104897 ], + [ 9.4252966, 47.3104802 ], + [ 9.4256724, 47.3105211 ], + [ 9.4257545, 47.3105812 ], + [ 9.4258324, 47.310578 ], + [ 9.4258991, 47.3105641 ], + [ 9.425995, 47.3106161 ], + [ 9.4260489, 47.3106062 ], + [ 9.4261683, 47.3105384 ], + [ 9.4263172, 47.3105015 ], + [ 9.4264, 47.3104925 ], + [ 9.4266825, 47.3103792 ], + [ 9.4266602, 47.3103151 ], + [ 9.4268192, 47.3102198 ], + [ 9.4268583, 47.3101491 ], + [ 9.4268978, 47.3100666 ], + [ 9.4269364, 47.3099535 ], + [ 9.426991, 47.3099374 ], + [ 9.4270408, 47.3098799 ], + [ 9.4271127, 47.3098745 ], + [ 9.4271189, 47.3098329 ], + [ 9.4271727, 47.3098148 ], + [ 9.4272268, 47.3098168 ], + [ 9.4279649, 47.3095088 ], + [ 9.4282955, 47.3094114 ], + [ 9.4285671, 47.3093275 ], + [ 9.4288231, 47.3093511 ], + [ 9.4290696, 47.3093544 ], + [ 9.428988499999999, 47.3091087 ], + [ 9.4288685, 47.3088035 ], + [ 9.4287101, 47.3086566 ], + [ 9.4283138, 47.3084989 ], + [ 9.4279985, 47.3084403 ], + [ 9.4275952, 47.3084244 ], + [ 9.4276804, 47.3083202 ], + [ 9.4277078, 47.3082026 ], + [ 9.4276839, 47.3081573 ], + [ 9.4276035, 47.3081167 ], + [ 9.4276638, 47.308089 ], + [ 9.4277659, 47.3080421 ], + [ 9.4280685, 47.3079842 ], + [ 9.4282943, 47.3079552 ], + [ 9.4284738, 47.3079652 ], + [ 9.4286692, 47.3080221 ], + [ 9.4287683, 47.3079853 ], + [ 9.4292447, 47.3075157 ], + [ 9.4292379, 47.3074599 ], + [ 9.4293065, 47.3073101 ], + [ 9.4295928, 47.3069405 ], + [ 9.4296856, 47.3067303 ], + [ 9.4298341, 47.3066145 ], + [ 9.4300658, 47.3064841 ], + [ 9.4302633, 47.3063427 ], + [ 9.4301894, 47.3061716 ], + [ 9.4300613, 47.3059094 ], + [ 9.4297722, 47.3054087 ], + [ 9.4293779, 47.3047192 ], + [ 9.4295242, 47.3047089 ], + [ 9.4297201, 47.304697 ], + [ 9.4298508, 47.3046919 ], + [ 9.429996299999999, 47.3046943 ], + [ 9.4301069, 47.3047057 ], + [ 9.4302091, 47.3047267 ], + [ 9.4302793, 47.3047459 ], + [ 9.4303524, 47.304777 ], + [ 9.4304183, 47.3048099 ], + [ 9.4305754, 47.3048109 ], + [ 9.4308945, 47.3041063 ], + [ 9.4310252, 47.3035946 ], + [ 9.4311745, 47.3030099 ], + [ 9.4314499, 47.3023648 ], + [ 9.4318155, 47.3022255 ], + [ 9.4320159, 47.3019247 ], + [ 9.432232, 47.3015363 ], + [ 9.4327264, 47.3013901 ], + [ 9.4330954, 47.3011675 ], + [ 9.4337364, 47.300803 ], + [ 9.4342209, 47.3004609 ], + [ 9.434724, 47.3002936 ], + [ 9.4353662, 47.3001935 ], + [ 9.4354806, 47.30073 ], + [ 9.4357485, 47.3007718 ], + [ 9.4359774, 47.300531 ], + [ 9.4360733, 47.3004882 ], + [ 9.4363899, 47.3003993 ], + [ 9.4366331, 47.3004002 ], + [ 9.4368419, 47.3005573 ], + [ 9.4371701, 47.3009767 ], + [ 9.4378411, 47.3017689 ], + [ 9.4378947, 47.3018616 ], + [ 9.4379009, 47.3018698 ], + [ 9.437909, 47.3018773 ], + [ 9.4379188, 47.3018837 ], + [ 9.43793, 47.301889 ], + [ 9.4379423, 47.3018929 ], + [ 9.4379554, 47.3018954 ], + [ 9.437969, 47.3018964 ], + [ 9.4382857, 47.301888 ], + [ 9.4385911, 47.3018796 ], + [ 9.4386063, 47.3018789 ], + [ 9.4386215, 47.3018799 ], + [ 9.4386363, 47.3018824 ], + [ 9.4386545, 47.3018881 ], + [ 9.4386738, 47.3018917 ], + [ 9.4386937, 47.3018929 ], + [ 9.4388083, 47.3018998 ], + [ 9.4389221, 47.3019113 ], + [ 9.4390347, 47.3019275 ], + [ 9.4391301, 47.301943 ], + [ 9.4392268, 47.3019546 ], + [ 9.4393005, 47.3019654 ], + [ 9.439372, 47.3019816 ], + [ 9.4394337, 47.3019942 ], + [ 9.439497, 47.3020025 ], + [ 9.4395612, 47.3020064 ], + [ 9.4396208, 47.3020092 ], + [ 9.4396798, 47.3020153 ], + [ 9.4397458, 47.3020201 ], + [ 9.4398122, 47.3020192 ], + [ 9.4401771, 47.3020244 ], + [ 9.4403707, 47.3020517 ], + [ 9.4403735, 47.3020497 ], + [ 9.4404633, 47.3020016 ], + [ 9.4405603, 47.3019593 ], + [ 9.4406647, 47.3019257 ], + [ 9.440774, 47.3019021 ], + [ 9.440888, 47.3018914 ], + [ 9.4410322, 47.3018939 ], + [ 9.4411731, 47.3019097 ], + [ 9.4413679, 47.3019457 ], + [ 9.4423117, 47.3021393 ], + [ 9.4425487, 47.3021811 ], + [ 9.4427018, 47.3022014 ], + [ 9.4428548, 47.3022127 ], + [ 9.4430124, 47.3022164 ], + [ 9.4431674, 47.3022123 ], + [ 9.4433217, 47.3021974 ], + [ 9.4434737, 47.3021713 ], + [ 9.443688, 47.3021205 ], + [ 9.4443535, 47.3019491 ], + [ 9.4445549, 47.3018972 ], + [ 9.445129, 47.3017484 ], + [ 9.4453642, 47.3016832 ], + [ 9.4455961, 47.3016134 ], + [ 9.4463067, 47.3013893 ], + [ 9.4466193, 47.3012887 ], + [ 9.446648, 47.3012781 ], + [ 9.4467795, 47.3012299 ], + [ 9.4468572, 47.3011957 ], + [ 9.4469267, 47.301155 ], + [ 9.4469858, 47.3011067 ], + [ 9.4470331, 47.3010539 ], + [ 9.4470668, 47.3009964 ], + [ 9.4470845, 47.3009344 ], + [ 9.4470936, 47.3008701 ], + [ 9.4471181, 47.3006178 ], + [ 9.4471399, 47.3004624 ], + [ 9.4471736, 47.3003538 ], + [ 9.447252, 47.3002233 ], + [ 9.4473561, 47.3000667 ], + [ 9.447494, 47.2998598 ], + [ 9.4475621, 47.2997645 ], + [ 9.4476404, 47.2996721 ], + [ 9.4477189, 47.299593 ], + [ 9.4478132, 47.2995142 ], + [ 9.4479404, 47.2994205 ], + [ 9.4480632, 47.2993407 ], + [ 9.448205399999999, 47.2992553 ], + [ 9.4489222, 47.2988245 ], + [ 9.449059, 47.2987338 ], + [ 9.4491845, 47.2986363 ], + [ 9.4492895, 47.2985282 ], + [ 9.4493841, 47.2983847 ], + [ 9.4494279, 47.298278 ], + [ 9.4495584, 47.297915 ], + [ 9.4495869, 47.297842 ], + [ 9.4496276, 47.2977714 ], + [ 9.4496897, 47.2977076 ], + [ 9.4497668, 47.297653 ], + [ 9.4498564, 47.2976073 ], + [ 9.4499575, 47.2975683 ], + [ 9.4501085, 47.2975169 ], + [ 9.450254, 47.2974626 ], + [ 9.4503923, 47.2974043 ], + [ 9.4505257, 47.297343 ], + [ 9.4506541, 47.2972772 ], + [ 9.4506815, 47.2972608 ], + [ 9.4507746, 47.2972053 ], + [ 9.4509803, 47.2970669 ], + [ 9.4510898, 47.2970058 ], + [ 9.4511867, 47.296969 ], + [ 9.4512932, 47.2969477 ], + [ 9.4514036, 47.2969445 ], + [ 9.451691, 47.2969481 ], + [ 9.4518529, 47.2969417 ], + [ 9.4519349, 47.2969218 ], + [ 9.4520105, 47.2968919 ], + [ 9.4520817, 47.2968559 ], + [ 9.45218, 47.2967961 ], + [ 9.452338, 47.2966804 ], + [ 9.4524559, 47.2965889 ], + [ 9.4525835, 47.2965174 ], + [ 9.452658, 47.2964906 ], + [ 9.4526822, 47.2964819 ], + [ 9.4527271, 47.2964719 ], + [ 9.4527567, 47.2964652 ], + [ 9.452836, 47.2964577 ], + [ 9.4530905, 47.2964461 ], + [ 9.4530898, 47.2964433 ], + [ 9.4532593, 47.2964362 ], + [ 9.4534202, 47.2964294 ], + [ 9.4534207, 47.2964319 ], + [ 9.4539032, 47.296411 ], + [ 9.454053, 47.2964057 ], + [ 9.4541667, 47.2964152 ], + [ 9.4542749, 47.2964424 ], + [ 9.4543706, 47.2964848 ], + [ 9.454406, 47.2965047 ], + [ 9.4544101, 47.296507 ], + [ 9.4544198, 47.2965124 ], + [ 9.4544572, 47.2965333 ], + [ 9.4544964, 47.2965552 ], + [ 9.4545046, 47.2965599 ], + [ 9.4545087, 47.2965622 ], + [ 9.4545571, 47.2965892 ], + [ 9.4547067, 47.296674 ], + [ 9.4547734, 47.2967118 ], + [ 9.4548436, 47.2967666 ], + [ 9.4548889, 47.2968342 ], + [ 9.4549039, 47.2969078 ], + [ 9.4548868, 47.2969797 ], + [ 9.4548379, 47.2970493 ], + [ 9.4546145, 47.2972624 ], + [ 9.4544574, 47.2974122 ], + [ 9.4544324, 47.2974641 ], + [ 9.454434299999999, 47.2975221 ], + [ 9.4544785, 47.2975636 ], + [ 9.4545472, 47.2975872 ], + [ 9.4546271, 47.2975857 ], + [ 9.4547025, 47.2975601 ], + [ 9.4548162, 47.2975119 ], + [ 9.4548346, 47.2974944 ], + [ 9.4552609, 47.2973128 ], + [ 9.4552636, 47.2973221 ], + [ 9.4555301, 47.2972089 ], + [ 9.4555222, 47.2972002 ], + [ 9.4555647, 47.2971842 ], + [ 9.4556323, 47.2971622 ], + [ 9.4556511, 47.2971563 ], + [ 9.4556689, 47.297149 ], + [ 9.4556852, 47.2971403 ], + [ 9.4557056, 47.2971259 ], + [ 9.4557223, 47.2971094 ], + [ 9.4557423, 47.2971125 ], + [ 9.4557934, 47.2970554 ], + [ 9.4559034, 47.2970782 ], + [ 9.4558781, 47.2971052 ], + [ 9.4558569, 47.2971337 ], + [ 9.45584, 47.2971636 ], + [ 9.4557296, 47.2974064 ], + [ 9.4556645, 47.2975471 ], + [ 9.4556687, 47.2975729 ], + [ 9.4556493, 47.297615 ], + [ 9.4556241, 47.2976348 ], + [ 9.4556012, 47.2976849 ], + [ 9.4554461, 47.2980214 ], + [ 9.455404099999999, 47.2981113 ], + [ 9.4554148, 47.2981446 ], + [ 9.455403, 47.2981703 ], + [ 9.4553724, 47.2981883 ], + [ 9.4552948, 47.2983601 ], + [ 9.4552707, 47.2984124 ], + [ 9.456201, 47.2985371 ], + [ 9.4564118, 47.2985138 ], + [ 9.4566638, 47.2985618 ], + [ 9.456980399999999, 47.2987919 ], + [ 9.4571471, 47.2988741 ], + [ 9.4574102, 47.2989611 ], + [ 9.4575957, 47.2990299 ], + [ 9.4578869, 47.2990968 ], + [ 9.4581483, 47.299138 ], + [ 9.4583502, 47.2991345 ], + [ 9.4585216, 47.2990857 ], + [ 9.45874, 47.2990098 ], + [ 9.458950399999999, 47.2989734 ], + [ 9.4592196, 47.2989687 ], + [ 9.4595273, 47.2989633 ], + [ 9.4597872, 47.2989653 ], + [ 9.4601031, 47.2989205 ], + [ 9.4602192, 47.2989157 ], + [ 9.4603787, 47.2989505 ], + [ 9.4605842, 47.2990878 ], + [ 9.4606571, 47.2991366 ], + [ 9.4608833, 47.2991948 ], + [ 9.460947, 47.2992087 ], + [ 9.4610764, 47.2992111 ], + [ 9.4612583, 47.2991882 ], + [ 9.4616306, 47.2991097 ], + [ 9.4618775, 47.2990203 ], + [ 9.4622663, 47.2991247 ], + [ 9.4626381, 47.2990331 ], + [ 9.4629547, 47.2990079 ], + [ 9.463166, 47.2989977 ], + [ 9.4633616, 47.2990793 ], + [ 9.46357, 47.2992459 ], + [ 9.463767, 47.2993668 ], + [ 9.4639421, 47.2994161 ], + [ 9.4642227, 47.299457 ], + [ 9.4646326, 47.2996069 ], + [ 9.4648691, 47.2997533 ], + [ 9.465115, 47.299893 ], + [ 9.4651678, 47.3000164 ], + [ 9.4652342, 47.3002444 ], + [ 9.4653057, 47.3003544 ], + [ 9.4652993, 47.3004396 ], + [ 9.46536, 47.3005171 ], + [ 9.4655763, 47.3006377 ], + [ 9.4657016, 47.300642 ], + [ 9.4658597, 47.3007505 ], + [ 9.4664803, 47.3006861 ], + [ 9.4667019, 47.3006626 ], + [ 9.4669227, 47.300576 ], + [ 9.4673172, 47.300498 ], + [ 9.4674193, 47.3004446 ], + [ 9.4677152, 47.3002407 ], + [ 9.4679419, 47.3002522 ], + [ 9.4680565, 47.3002363 ], + [ 9.4681547, 47.3002479 ], + [ 9.4682886, 47.3002932 ], + [ 9.4685022, 47.3002585 ], + [ 9.4687171, 47.3002376 ], + [ 9.4689119, 47.3002516 ], + [ 9.4692966, 47.3002064 ], + [ 9.469669, 47.3001961 ], + [ 9.4698866, 47.3002167 ], + [ 9.4700194, 47.3002491 ], + [ 9.4705508, 47.3003772 ], + [ 9.4707475, 47.3004512 ], + [ 9.4708982, 47.3005585 ], + [ 9.47115, 47.3006492 ], + [ 9.471289, 47.3006995 ], + [ 9.4717001, 47.3008177 ], + [ 9.4717786, 47.3008185 ], + [ 9.4721641, 47.3008189 ], + [ 9.4724808, 47.3008345 ], + [ 9.4726406, 47.300864 ], + [ 9.4727691, 47.3008082 ], + [ 9.4730633, 47.3007474 ], + [ 9.4733405, 47.3007585 ], + [ 9.4734073, 47.3006608 ], + [ 9.4735076, 47.3006616 ], + [ 9.473700000000001, 47.3006633 ], + [ 9.4738936, 47.3006201 ], + [ 9.4740239, 47.3005717 ], + [ 9.4741857, 47.300581 ], + [ 9.4743558, 47.3006253 ], + [ 9.4745962, 47.3007074 ], + [ 9.474781, 47.3006855 ], + [ 9.4748849, 47.3007078 ], + [ 9.4753217, 47.3006846 ], + [ 9.4754275, 47.3007468 ], + [ 9.475537899999999, 47.3008496 ], + [ 9.475748, 47.3008401 ], + [ 9.4759302, 47.3008436 ], + [ 9.4760687, 47.3008902 ], + [ 9.4764088, 47.3009254 ], + [ 9.4766665, 47.3010441 ], + [ 9.4767887, 47.3011186 ], + [ 9.4768588, 47.3011549 ], + [ 9.4769513, 47.3011726 ], + [ 9.4770462, 47.3012422 ], + [ 9.4771126, 47.3012925 ], + [ 9.477393, 47.301326 ], + [ 9.4774878, 47.301376 ], + [ 9.4776189, 47.3014811 ], + [ 9.4776511, 47.3015505 ], + [ 9.4777295, 47.3016325 ], + [ 9.4777363, 47.3017133 ], + [ 9.4778619, 47.3017941 ], + [ 9.477909, 47.3018079 ], + [ 9.4779749, 47.3018272 ], + [ 9.4780949, 47.3019368 ], + [ 9.4783315, 47.3020079 ], + [ 9.4784771, 47.3019779 ], + [ 9.4786484, 47.3019185 ], + [ 9.4789939, 47.3019583 ], + [ 9.4791401, 47.3019119 ], + [ 9.479263, 47.3020028 ], + [ 9.4793772, 47.3020113 ], + [ 9.4795771, 47.302083 ], + [ 9.4796902, 47.3020931 ], + [ 9.4797925, 47.3021021 ], + [ 9.4799769, 47.302108 ], + [ 9.4800664, 47.3021078 ], + [ 9.480144899999999, 47.3021076 ], + [ 9.4803134, 47.3020193 ], + [ 9.4804866, 47.3020384 ], + [ 9.4806081, 47.3020235 ], + [ 9.4807749, 47.3021602 ], + [ 9.4809248, 47.3021505 ], + [ 9.4812534, 47.3021027 ], + [ 9.4813377, 47.3020656 ], + [ 9.4815744, 47.3019615 ], + [ 9.4818426, 47.3019243 ], + [ 9.4819227, 47.3018928 ], + [ 9.481962, 47.3018452 ], + [ 9.4820247, 47.3017425 ], + [ 9.4820954, 47.3017372 ], + [ 9.4821711, 47.3018128 ], + [ 9.4822569, 47.3019007 ], + [ 9.4824869, 47.3019662 ], + [ 9.4825006, 47.3018951 ], + [ 9.4825464, 47.3018097 ], + [ 9.4824681, 47.30167 ], + [ 9.4826727, 47.3016305 ], + [ 9.4828993, 47.3015436 ], + [ 9.4829223, 47.3014885 ], + [ 9.4831415, 47.3013915 ], + [ 9.4832535, 47.3013424 ], + [ 9.4834992, 47.3013227 ], + [ 9.4837164, 47.3012897 ], + [ 9.4837577, 47.3011849 ], + [ 9.4837926, 47.301177 ], + [ 9.4838583, 47.3011622 ], + [ 9.484051, 47.3011923 ], + [ 9.4843189, 47.3009629 ], + [ 9.4843942, 47.3009555 ], + [ 9.4846814, 47.3010461 ], + [ 9.4847828, 47.3010666 ], + [ 9.4849154, 47.3009996 ], + [ 9.4851187, 47.3010733 ], + [ 9.4851983, 47.3011014 ], + [ 9.4853196, 47.3010553 ], + [ 9.485341, 47.3010501 ], + [ 9.4854364, 47.3010645 ], + [ 9.485476, 47.3010705 ], + [ 9.4856057, 47.3011124 ], + [ 9.4858792, 47.3010701 ], + [ 9.485996, 47.3011322 ], + [ 9.4861909, 47.301321 ], + [ 9.4864109, 47.3013365 ], + [ 9.4866249, 47.3014779 ], + [ 9.4868343, 47.3015005 ], + [ 9.4869804, 47.3014817 ], + [ 9.4871818, 47.3015345 ], + [ 9.4872519, 47.3016211 ], + [ 9.4872694, 47.3016428 ], + [ 9.4876127, 47.3017287 ], + [ 9.4878342, 47.3017459 ], + [ 9.4882393, 47.3018306 ], + [ 9.4884407, 47.3018662 ], + [ 9.4887201, 47.3018223 ], + [ 9.4888698, 47.3017975 ], + [ 9.489019, 47.3017327 ], + [ 9.4896375, 47.3014639 ], + [ 9.4900088, 47.3014194 ], + [ 9.4900334, 47.3013287 ], + [ 9.4900413, 47.3012996 ], + [ 9.4901288, 47.3012259 ], + [ 9.4902784, 47.3010997 ], + [ 9.490331, 47.3010555 ], + [ 9.4906904, 47.3007653 ], + [ 9.4906045, 47.300638 ], + [ 9.4905085, 47.3004958 ], + [ 9.490454100000001, 47.3004525 ], + [ 9.4901901, 47.3002425 ], + [ 9.4903451, 47.2999808 ], + [ 9.4905775, 47.2998258 ], + [ 9.4903946, 47.2995386 ], + [ 9.490548, 47.2995003 ], + [ 9.4903292, 47.2990584 ], + [ 9.4899759, 47.298577 ], + [ 9.4898977, 47.2980925 ], + [ 9.4895176, 47.2978572 ], + [ 9.4896063, 47.2977201 ], + [ 9.4892804, 47.2963447 ], + [ 9.4893349, 47.294701 ], + [ 9.4883205, 47.2932881 ], + [ 9.488214, 47.2930963 ], + [ 9.4880151, 47.292738 ], + [ 9.4875398, 47.2918821 ], + [ 9.4868449, 47.2907137 ], + [ 9.4867157, 47.2897038 ], + [ 9.4878032, 47.2891204 ], + [ 9.4877643, 47.2882873 ], + [ 9.4870228, 47.2872308 ], + [ 9.4864792, 47.2861591 ], + [ 9.4863298, 47.2859166 ], + [ 9.4857551, 47.284984 ], + [ 9.485174, 47.284041 ], + [ 9.4850717, 47.283875 ], + [ 9.4849932, 47.2837478 ], + [ 9.4849778, 47.2837364 ], + [ 9.4847605, 47.2835792 ], + [ 9.4839852, 47.2830181 ], + [ 9.4833363, 47.2826699 ], + [ 9.4830688, 47.2825737 ], + [ 9.482793, 47.2825082 ], + [ 9.482389, 47.2824756 ], + [ 9.4820966, 47.2823523 ], + [ 9.4815674, 47.2820588 ], + [ 9.4809923, 47.2816895 ], + [ 9.4807931, 47.2814972 ], + [ 9.480714, 47.2811199 ], + [ 9.480523999999999, 47.2806938 ], + [ 9.4802607, 47.2805677 ], + [ 9.4802026, 47.2804552 ], + [ 9.4802139, 47.2801337 ], + [ 9.4798461, 47.2796475 ], + [ 9.4798627, 47.2793794 ], + [ 9.4798106, 47.2791575 ], + [ 9.479671, 47.2790186 ], + [ 9.4786832, 47.2785584 ], + [ 9.4786155, 47.2784567 ], + [ 9.4786276, 47.2782466 ], + [ 9.4785898, 47.2781358 ], + [ 9.4785812, 47.2781266 ], + [ 9.4784217, 47.2779546 ], + [ 9.4781779, 47.2778111 ], + [ 9.4780568, 47.277629 ], + [ 9.4779166, 47.2775629 ], + [ 9.4776114, 47.2774805 ], + [ 9.4773685, 47.2773627 ], + [ 9.4772791, 47.2772783 ], + [ 9.4769785, 47.2769947 ], + [ 9.4766074, 47.276772 ], + [ 9.4765253, 47.2766888 ], + [ 9.4764835, 47.2761219 ], + [ 9.4763982, 47.2759898 ], + [ 9.4760862, 47.2757524 ], + [ 9.475958, 47.2755896 ], + [ 9.4759801, 47.2753614 ], + [ 9.4759498, 47.2751194 ], + [ 9.4760351, 47.2749248 ], + [ 9.4760352, 47.2748002 ], + [ 9.4758812, 47.2746005 ], + [ 9.4752798, 47.2740598 ], + [ 9.4749265, 47.2738184 ], + [ 9.4744481, 47.273559 ], + [ 9.4741719, 47.2730998 ], + [ 9.4736881, 47.2725088 ], + [ 9.4737181, 47.2723781 ], + [ 9.473865, 47.2722845 ], + [ 9.473524, 47.2720444 ], + [ 9.4731366, 47.2718675 ], + [ 9.4729042, 47.2716598 ], + [ 9.4729456, 47.2712106 ], + [ 9.4725932, 47.2711825 ], + [ 9.4723013, 47.2710787 ], + [ 9.4719492, 47.2709851 ], + [ 9.4716494, 47.2708289 ], + [ 9.4712194, 47.270554 ], + [ 9.4709711, 47.2703545 ], + [ 9.4708415, 47.2702929 ], + [ 9.4704736, 47.2701844 ], + [ 9.4703882, 47.270022 ], + [ 9.4703023, 47.2699266 ], + [ 9.4699869, 47.2696963 ], + [ 9.4699649, 47.2696803 ], + [ 9.4697181, 47.2695345 ], + [ 9.4693031, 47.2693347 ], + [ 9.4683671, 47.2690482 ], + [ 9.4681905, 47.2689648 ], + [ 9.4680847, 47.2688773 ], + [ 9.4676446, 47.2685133 ], + [ 9.4670442, 47.268527399999996 ], + [ 9.4665509, 47.2682433 ], + [ 9.466488, 47.2681252 ], + [ 9.466463, 47.2679046 ], + [ 9.4663816, 47.267691 ], + [ 9.4660882, 47.2672907 ], + [ 9.4656801, 47.266941 ], + [ 9.4650031, 47.2666823 ], + [ 9.4648814, 47.2666003 ], + [ 9.4647972, 47.2665072 ], + [ 9.464674, 47.266301 ], + [ 9.4645767, 47.266197 ], + [ 9.4643046, 47.2659753 ], + [ 9.4643459, 47.2658371 ], + [ 9.4634658, 47.2654464 ], + [ 9.4625254, 47.2651132 ], + [ 9.4620698, 47.2648717 ], + [ 9.4618838, 47.264711 ], + [ 9.4617295, 47.2645235 ], + [ 9.4613659, 47.2641791 ], + [ 9.461246, 47.2640994 ], + [ 9.4608191, 47.2638921 ], + [ 9.4601536, 47.2637123 ], + [ 9.459697, 47.2634823 ], + [ 9.459632299999999, 47.2634497 ], + [ 9.4594428, 47.2633891 ], + [ 9.4587785, 47.2632443 ], + [ 9.458286, 47.2631914 ], + [ 9.4581445, 47.2631938 ], + [ 9.4580362, 47.2632348 ], + [ 9.4577323, 47.26346 ], + [ 9.4578344, 47.263132 ], + [ 9.45779, 47.2630219 ], + [ 9.457635, 47.262854 ], + [ 9.4573269, 47.2626325 ], + [ 9.4569629, 47.2623324 ], + [ 9.4565596, 47.2621456 ], + [ 9.4560922, 47.2619403 ], + [ 9.4557203, 47.2617769 ], + [ 9.4553135, 47.2616313 ], + [ 9.454930000000001, 47.2614646 ], + [ 9.4546984, 47.2613394 ], + [ 9.4541772, 47.2610048 ], + [ 9.4540725, 47.2609354 ], + [ 9.4536654, 47.2607184 ], + [ 9.453570299999999, 47.260689 ], + [ 9.4532843, 47.2605618 ], + [ 9.4528905, 47.2604924 ], + [ 9.4527557, 47.260529 ], + [ 9.4524031, 47.2603364 ], + [ 9.4522698, 47.2602972 ], + [ 9.4520163, 47.2603035 ], + [ 9.4518451, 47.260164 ], + [ 9.4517007, 47.260112 ], + [ 9.4511117, 47.2600285 ], + [ 9.4502597, 47.2589604 ], + [ 9.4501938, 47.2586873 ], + [ 9.4500518, 47.2584184 ], + [ 9.449648, 47.2581123 ], + [ 9.4494077, 47.2579741 ], + [ 9.4491033, 47.257753 ], + [ 9.4485474, 47.2574324 ], + [ 9.4474328, 47.2566416 ], + [ 9.4474739, 47.2564807 ], + [ 9.4474918, 47.2562644 ], + [ 9.4472559, 47.2558773 ], + [ 9.4471687, 47.2558026 ], + [ 9.4468653, 47.2557713 ], + [ 9.4465221, 47.2557703 ], + [ 9.4462657, 47.255758900000004 ], + [ 9.4459418, 47.2557756 ], + [ 9.4451326, 47.2551485 ], + [ 9.4450791, 47.2550543 ], + [ 9.444992599999999, 47.2548397 ], + [ 9.4449103, 47.2547617 ], + [ 9.4446513, 47.2546332 ], + [ 9.4443592, 47.2545769 ], + [ 9.4442249, 47.2545296 ], + [ 9.4435429, 47.2541289 ], + [ 9.4434006, 47.2540795 ], + [ 9.4431162, 47.254017 ], + [ 9.442845, 47.2539252 ], + [ 9.442489, 47.2537111 ], + [ 9.4424248, 47.2536286 ], + [ 9.4423975, 47.2535253 ], + [ 9.4421355, 47.2534751 ], + [ 9.4421011, 47.253358 ], + [ 9.4419938, 47.2532816 ], + [ 9.4410802, 47.2531659 ], + [ 9.4407146, 47.2531528 ], + [ 9.4404645, 47.2531237 ], + [ 9.4399798, 47.2529441 ], + [ 9.4397927, 47.2529647 ], + [ 9.4396629, 47.2529125 ], + [ 9.4390539, 47.2523107 ], + [ 9.4384163, 47.2518177 ], + [ 9.4382521, 47.2516907 ], + [ 9.4381599, 47.2515829 ], + [ 9.4378057, 47.2510606 ], + [ 9.4378009, 47.2507254 ], + [ 9.4374766, 47.2508178 ], + [ 9.4371233, 47.2508809 ], + [ 9.4368855, 47.2509799 ], + [ 9.436706, 47.2509794 ], + [ 9.4350869, 47.2508333 ], + [ 9.4346328, 47.2507853 ], + [ 9.4344798, 47.2507947 ], + [ 9.4343434, 47.2507775 ], + [ 9.4341811, 47.2507125 ], + [ 9.4332476, 47.2504523 ], + [ 9.4329941, 47.2503585 ], + [ 9.4328219, 47.2502559 ], + [ 9.4324871, 47.2500939 ], + [ 9.4321467, 47.2498971 ], + [ 9.4318485, 47.2498774 ], + [ 9.4314366, 47.2497003 ], + [ 9.4309974, 47.2496384 ], + [ 9.4309121, 47.2495766 ], + [ 9.4308475, 47.2494453 ], + [ 9.4305441, 47.2493991 ], + [ 9.4303967, 47.2493488 ], + [ 9.4301761, 47.2493094 ], + [ 9.4299524, 47.2492469 ], + [ 9.4298302, 47.2492128 ], + [ 9.4295805, 47.2490828 ], + [ 9.4295206, 47.2490021 ], + [ 9.4294808, 47.2488867 ], + [ 9.4291141, 47.2487099 ], + [ 9.4289995, 47.248637 ], + [ 9.428822, 47.2484674 ], + [ 9.4283762, 47.2484041 ], + [ 9.4282256, 47.2483551 ], + [ 9.4277458, 47.2479347 ], + [ 9.4273942, 47.2477224 ], + [ 9.4271524, 47.2475238 ], + [ 9.4269991, 47.247632 ], + [ 9.4268153, 47.2476404 ], + [ 9.4266563, 47.2476135 ], + [ 9.4265343, 47.24757 ], + [ 9.4263834, 47.2472646 ], + [ 9.4262366, 47.2471066 ], + [ 9.4247467, 47.2472715 ], + [ 9.4189207, 47.2476135 ], + [ 9.4173535, 47.2470834 ], + [ 9.416696, 47.2467995 ], + [ 9.4159439, 47.2466293 ], + [ 9.4155305, 47.2466526 ], + [ 9.4148057, 47.2465307 ], + [ 9.4141838, 47.2457436 ], + [ 9.4123182, 47.2451343 ], + [ 9.411317, 47.2447246 ], + [ 9.4103555, 47.2442172 ], + [ 9.4099221, 47.2439419 ], + [ 9.4094053, 47.2435241 ], + [ 9.4086369, 47.2427749 ], + [ 9.4074385, 47.2417442 ], + [ 9.4071135, 47.2415404 ], + [ 9.4064161, 47.2410333 ], + [ 9.406354, 47.2408938 ], + [ 9.4056943, 47.2402047 ], + [ 9.4051579, 47.2395988 ], + [ 9.4050604, 47.2392168 ], + [ 9.4048165, 47.2390474 ], + [ 9.404406999999999, 47.238735 ], + [ 9.4041762, 47.2386399 ], + [ 9.4038868, 47.2382694 ], + [ 9.4033378, 47.2380863 ], + [ 9.4028026, 47.2379011 ], + [ 9.4024412, 47.2376864 ], + [ 9.4019305, 47.2375574 ], + [ 9.3998072, 47.2374389 ], + [ 9.3988851, 47.2373682 ], + [ 9.3975155, 47.2373527 ], + [ 9.3962067, 47.2373535 ], + [ 9.3935423, 47.2368166 ], + [ 9.3921131, 47.236679 ], + [ 9.3911039, 47.236428 ], + [ 9.3896656, 47.2361131 ], + [ 9.3890867, 47.2357433 ], + [ 9.3886367, 47.2355377 ], + [ 9.3879825, 47.2354304 ], + [ 9.3869954, 47.2350895 ], + [ 9.3861919, 47.2348988 ], + [ 9.3849963, 47.234606 ], + [ 9.3841762, 47.2345775 ], + [ 9.3820149, 47.2339932 ], + [ 9.3784463, 47.236121 ], + [ 9.3765658, 47.2365413 ], + [ 9.3755896, 47.236762 ], + [ 9.3749271, 47.237071 ], + [ 9.3738396, 47.2384136 ], + [ 9.3733765, 47.2386482 ], + [ 9.3730864, 47.2387727 ], + [ 9.3724838, 47.2391697 ], + [ 9.3720434, 47.2393372 ], + [ 9.371868599999999, 47.2395675 ], + [ 9.371556, 47.2395605 ], + [ 9.3712454, 47.2396296 ], + [ 9.3703102, 47.2401824 ], + [ 9.3701938, 47.2403598 ], + [ 9.3697432, 47.240577 ], + [ 9.3694269, 47.2406714 ], + [ 9.3686772, 47.2408756 ], + [ 9.3683151, 47.2409086 ], + [ 9.3677572, 47.2408235 ], + [ 9.3677345, 47.2410371 ], + [ 9.3673928, 47.2413425 ], + [ 9.3664265, 47.2418409 ], + [ 9.3659834, 47.2419725 ], + [ 9.3657589, 47.242014 ], + [ 9.3656054, 47.2425186 ], + [ 9.3654408, 47.24257 ], + [ 9.3653577, 47.2428305 ], + [ 9.3650352, 47.2430482 ], + [ 9.3648875, 47.2433098 ], + [ 9.3638782, 47.243597 ], + [ 9.3633731, 47.2435969 ], + [ 9.3630739, 47.2435426 ], + [ 9.3630188, 47.2434805 ], + [ 9.3625619, 47.2437086 ], + [ 9.362169399999999, 47.2437421 ], + [ 9.361469, 47.2437358 ] + ] + ], + "layer" : { + "upper" : 300, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "AI00001", + "country" : "CHE", + "name" : [ + { + "text" : "Alpstein", + "lang" : "de-CH" + }, + { + "text" : "Alpstein", + "lang" : "fr-CH" + }, + { + "text" : "Alpstein", + "lang" : "it-CH" + }, + { + "text" : "Alpstein", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Appenzell Innerrhoden", + "lang" : "de-CH" + }, + { + "text" : "Kanton Appenzell Innerrhoden", + "lang" : "fr-CH" + }, + { + "text" : "Kanton Appenzell Innerrhoden", + "lang" : "it-CH" + }, + { + "text" : "Kanton Appenzell Innerrhoden", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Bau- und Umweltdepartement", + "lang" : "de-CH" + }, + { + "text" : "Bau- und Umweltdepartement", + "lang" : "fr-CH" + }, + { + "text" : "Bau- und Umweltdepartement", + "lang" : "it-CH" + }, + { + "text" : "Bau- und Umweltdepartement", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Departementssekretariat Bau und Umwelt", + "lang" : "de-CH" + }, + { + "text" : "Departementssekretariat Bau und Umwelt", + "lang" : "fr-CH" + }, + { + "text" : "Departementssekretariat Bau und Umwelt", + "lang" : "it-CH" + }, + { + "text" : "Departementssekretariat Bau und Umwelt", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ai.ch/themen/natur-und-umwelt/jagd/gesuch-zur-ausnahmebewilligung-von-drohnenfluegen-im-alpstein", + "email" : "info@bud.ai.ch", + "phone" : "+41 71 788 93 41", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8098872, 47.4273664 ], + [ 7.8105603, 47.4275463 ], + [ 7.810636, 47.4274038 ], + [ 7.8108735, 47.4270188 ], + [ 7.8111602, 47.4267065 ], + [ 7.8114948, 47.426261 ], + [ 7.8116832, 47.4259284 ], + [ 7.8119364000000004, 47.4254806 ], + [ 7.8122796999999995, 47.4251128 ], + [ 7.8124965, 47.424862 ], + [ 7.8127987, 47.4244266 ], + [ 7.8129764, 47.4242326 ], + [ 7.8134045, 47.4237919 ], + [ 7.8139577, 47.4231698 ], + [ 7.8140091, 47.423086 ], + [ 7.8142023, 47.4227841 ], + [ 7.8143598, 47.4225952 ], + [ 7.8143955, 47.4224796 ], + [ 7.8143782999999996, 47.4223465 ], + [ 7.8143115, 47.4222362 ], + [ 7.8142878, 47.4222021 ], + [ 7.814278, 47.4221878 ], + [ 7.8141682, 47.4220308 ], + [ 7.8141573, 47.4220137 ], + [ 7.8141473999999995, 47.4219963 ], + [ 7.8141384, 47.4219787 ], + [ 7.8141309, 47.4219666 ], + [ 7.8141217, 47.421955 ], + [ 7.814111, 47.4219441 ], + [ 7.8139592, 47.4206195 ], + [ 7.8139228, 47.4205947 ], + [ 7.8139134, 47.4205109 ], + [ 7.8139412, 47.4204552 ], + [ 7.8134064, 47.4200702 ], + [ 7.8129763, 47.419846 ], + [ 7.8128276, 47.4197358 ], + [ 7.8127782, 47.4198052 ], + [ 7.812537, 47.4201721 ], + [ 7.8123649, 47.4203677 ], + [ 7.8121453, 47.420617 ], + [ 7.8121595, 47.420649 ], + [ 7.8121728, 47.4206811 ], + [ 7.8121852, 47.4207134 ], + [ 7.8121968, 47.4207459 ], + [ 7.8122074, 47.4207785 ], + [ 7.8122172, 47.4208112 ], + [ 7.8122261, 47.420844 ], + [ 7.812234, 47.4208769 ], + [ 7.8122411, 47.42091 ], + [ 7.8122473, 47.4209431 ], + [ 7.8122526, 47.4209763 ], + [ 7.8122568999999995, 47.4210095 ], + [ 7.8122599, 47.4210334 ], + [ 7.8122627, 47.4210573 ], + [ 7.8122652, 47.4210812 ], + [ 7.8122674, 47.4211052 ], + [ 7.8122708, 47.4211472 ], + [ 7.8122734, 47.4211893 ], + [ 7.8122752, 47.4212315 ], + [ 7.8122763, 47.4212736 ], + [ 7.8122766, 47.4213157 ], + [ 7.8122761, 47.4213579 ], + [ 7.8122749, 47.4214 ], + [ 7.8122729, 47.4214421 ], + [ 7.8122701, 47.4214842 ], + [ 7.8122665, 47.4215374 ], + [ 7.8122619, 47.4215904 ], + [ 7.8122342, 47.4218023 ], + [ 7.812225, 47.4218552 ], + [ 7.8122149, 47.4219079 ], + [ 7.8122038, 47.4219606 ], + [ 7.8121348, 47.4222223 ], + [ 7.8121183, 47.4222743 ], + [ 7.8121008, 47.4223262 ], + [ 7.8120825, 47.4223779 ], + [ 7.8120002, 47.4225831 ], + [ 7.8119774, 47.422634 ], + [ 7.8119537, 47.4226847 ], + [ 7.8119306, 47.4227324 ], + [ 7.8119067, 47.42278 ], + [ 7.811882, 47.4228273 ], + [ 7.8118565, 47.4228745 ], + [ 7.8118303000000004, 47.4229214 ], + [ 7.8118032, 47.4229682 ], + [ 7.8117754999999995, 47.4230147 ], + [ 7.8117469, 47.4230611 ], + [ 7.8117176, 47.4231072 ], + [ 7.8116875, 47.4231531 ], + [ 7.8116567, 47.4231988 ], + [ 7.8116252, 47.4232442 ], + [ 7.8115685, 47.4233237 ], + [ 7.8115112, 47.4234031 ], + [ 7.8114533999999995, 47.4234823 ], + [ 7.811395, 47.4235613 ], + [ 7.811336, 47.42364 ], + [ 7.8112960000000005, 47.4236937 ], + [ 7.8112566999999995, 47.4237476 ], + [ 7.8112183, 47.4238018 ], + [ 7.8111805, 47.4238562 ], + [ 7.8111436, 47.4239109 ], + [ 7.8111074, 47.4239658 ], + [ 7.811072, 47.4240209 ], + [ 7.8110374, 47.4240763 ], + [ 7.8110036, 47.4241319 ], + [ 7.8109705, 47.4241877 ], + [ 7.8109001, 47.4243832 ], + [ 7.8108219, 47.4246258 ], + [ 7.8106915, 47.4248589 ], + [ 7.8106005, 47.4250359 ], + [ 7.8105108, 47.4252451 ], + [ 7.8104807, 47.4253347 ], + [ 7.8103845, 47.4257208 ], + [ 7.8103679, 47.4258286 ], + [ 7.8103342, 47.425982 ], + [ 7.810218, 47.4263776 ], + [ 7.8101664, 47.4266056 ], + [ 7.8101443, 47.4266768 ], + [ 7.8101214, 47.426748 ], + [ 7.8100977, 47.426819 ], + [ 7.8100733, 47.4268899 ], + [ 7.8100480999999995, 47.4269607 ], + [ 7.8100222, 47.4270314 ], + [ 7.8099955, 47.4271019 ], + [ 7.8099679, 47.4271723 ], + [ 7.8099397, 47.4272425 ], + [ 7.8098872, 47.4273664 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns060", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Rutenrain", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Rutenrain", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Rutenrain", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Rutenrain", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.8334832, 47.1145056 ], + [ 6.8335447, 47.1145012 ], + [ 6.8337961, 47.1144471 ], + [ 6.8340267, 47.11436 ], + [ 6.8342273, 47.1142433 ], + [ 6.8343374, 47.114165 ], + [ 6.8344966, 47.1140269 ], + [ 6.8346135, 47.1138703 ], + [ 6.8346836, 47.1137011 ], + [ 6.8346862999999995, 47.1136776 ], + [ 6.8347116, 47.1136438 ], + [ 6.834782, 47.1134736 ], + [ 6.8348022, 47.1132973 ], + [ 6.8347715, 47.1131217 ], + [ 6.8347663, 47.1131109 ], + [ 6.8347648, 47.1131022 ], + [ 6.8346856, 47.112935 ], + [ 6.8345603, 47.1127816 ], + [ 6.8343937, 47.1126477 ], + [ 6.8343507, 47.1126193 ], + [ 6.834147, 47.1125091 ], + [ 6.8341405, 47.1125068 ], + [ 6.8341205, 47.1124939 ], + [ 6.8341134, 47.1124901 ], + [ 6.8341014, 47.1124813 ], + [ 6.8340873, 47.112472 ], + [ 6.8340845, 47.1124687 ], + [ 6.8339163, 47.1123343 ], + [ 6.8338735, 47.1123062 ], + [ 6.8336706, 47.1121971 ], + [ 6.8335916999999995, 47.1121697 ], + [ 6.8335132, 47.1121287 ], + [ 6.833391, 47.1120876 ], + [ 6.8333487, 47.1120649 ], + [ 6.8331201, 47.1119854 ], + [ 6.8328732, 47.1119377 ], + [ 6.8326175, 47.1119235 ], + [ 6.8326095, 47.1119241 ], + [ 6.8325543, 47.1118992 ], + [ 6.8325414, 47.1118939 ], + [ 6.8325054, 47.1118804 ], + [ 6.8324087, 47.1118165 ], + [ 6.8322064000000005, 47.1117069 ], + [ 6.8319767, 47.1116263 ], + [ 6.8317284, 47.1115779 ], + [ 6.831471, 47.1115634 ], + [ 6.8312145, 47.1115835 ], + [ 6.8309686, 47.1116374 ], + [ 6.8307428, 47.111723 ], + [ 6.8305459, 47.1118371 ], + [ 6.8303401, 47.1119821 ], + [ 6.8303334, 47.1119868 ], + [ 6.830322, 47.1119946 ], + [ 6.830278, 47.1120113 ], + [ 6.830081, 47.1121255 ], + [ 6.830078, 47.1121275 ], + [ 6.8299175, 47.1122656 ], + [ 6.8297996, 47.1124224 ], + [ 6.8297287, 47.1125919 ], + [ 6.8297075, 47.1127676 ], + [ 6.829737, 47.1129427 ], + [ 6.8297569, 47.112985 ], + [ 6.8297452, 47.1130129 ], + [ 6.8297243, 47.1131884 ], + [ 6.8297539, 47.1133632 ], + [ 6.8298327, 47.1135308 ], + [ 6.8299579, 47.1136847 ], + [ 6.8301245, 47.113819 ], + [ 6.8303031, 47.1139372 ], + [ 6.8305073, 47.1140478 ], + [ 6.8305394, 47.114062 ], + [ 6.8305976, 47.1140823 ], + [ 6.8306426, 47.1141373 ], + [ 6.8308103, 47.1142715 ], + [ 6.8308162, 47.1142754 ], + [ 6.8308391, 47.1142905 ], + [ 6.8308554, 47.1143012 ], + [ 6.8309449, 47.1143599 ], + [ 6.8309548, 47.1143665 ], + [ 6.831157, 47.1144754 ], + [ 6.831202, 47.1144911 ], + [ 6.8312255, 47.1145066 ], + [ 6.8313998, 47.1146005 ], + [ 6.8314641, 47.1146426 ], + [ 6.8316671, 47.1147517 ], + [ 6.8318974, 47.1148316 ], + [ 6.8321462, 47.1148794 ], + [ 6.8324038, 47.1148931 ], + [ 6.8326603, 47.1148721 ], + [ 6.8329059999999995, 47.1148175 ], + [ 6.8331313, 47.1147311 ], + [ 6.8333276, 47.1146164 ], + [ 6.8334832, 47.1145056 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "NE10", + "country" : "CHE", + "name" : [ + { + "text" : "Hôpital Chaux-de-Fonds", + "lang" : "de-CH" + }, + { + "text" : "Hôpital Chaux-de-Fonds", + "lang" : "fr-CH" + }, + { + "text" : "Hôpital Chaux-de-Fonds", + "lang" : "it-CH" + }, + { + "text" : "Hôpital Chaux-de-Fonds", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "regulationExemption" : "YES", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Police Neuchâteloise", + "lang" : "de-CH" + }, + { + "text" : "Police Neuchâteloise", + "lang" : "fr-CH" + }, + { + "text" : "Police Neuchâteloise", + "lang" : "it-CH" + }, + { + "text" : "Police Neuchâteloise", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "PN - Rens et opérations", + "lang" : "de-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "fr-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "it-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "PN - Rens et opérations", + "lang" : "de-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "fr-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "it-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ne.ch/autorites/DESC/PONE/Pages/Drones.aspx", + "email" : "Police.Neuchateloise@ne.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.8587022, 46.869163 ], + [ 6.8840627, 46.8845547 ], + [ 6.8866936, 46.8860683 ], + [ 6.8894366, 46.8874854 ], + [ 6.8922840999999995, 46.888802 ], + [ 6.8952283, 46.8900146 ], + [ 6.8982613, 46.8911198 ], + [ 6.9013745, 46.8921145 ], + [ 6.9045596, 46.8929962 ], + [ 6.9078076, 46.8937622 ], + [ 6.9111098, 46.8944106 ], + [ 6.9144571, 46.8949395 ], + [ 6.9178402, 46.8953475 ], + [ 6.9212498, 46.8956335 ], + [ 6.9246767, 46.8957967 ], + [ 6.9281113, 46.8958366 ], + [ 6.9315442, 46.8957531 ], + [ 6.9349661, 46.8955465 ], + [ 6.9383674, 46.8952173 ], + [ 6.9417389, 46.8947665 ], + [ 6.9450713, 46.8941952 ], + [ 6.9483554, 46.893505 ], + [ 6.9515822, 46.8926979 ], + [ 6.9547429, 46.891776 ], + [ 6.9578287, 46.8907419 ], + [ 6.9608313, 46.8895984 ], + [ 6.9637423, 46.8883487 ], + [ 6.9665537, 46.8869962 ], + [ 6.969258, 46.8855446 ], + [ 6.9718475, 46.8839979 ], + [ 6.9743153, 46.8823603 ], + [ 6.9766546, 46.8806364 ], + [ 6.9788589, 46.8788308 ], + [ 6.9809223, 46.8769486 ], + [ 6.982839, 46.8749949 ], + [ 6.9846038, 46.872975 ], + [ 6.986212, 46.8708945 ], + [ 6.987659, 46.8687592 ], + [ 6.988941, 46.8665748 ], + [ 6.9900545, 46.8643474 ], + [ 6.9909964, 46.8620831 ], + [ 6.9917642, 46.859788 ], + [ 6.9923557, 46.8574686 ], + [ 6.9927695, 46.855131 ], + [ 6.9930043, 46.8527818 ], + [ 6.9930595, 46.8504275 ], + [ 6.9929351, 46.8480743 ], + [ 6.9926313, 46.8457288 ], + [ 6.9921491, 46.8433975 ], + [ 6.9914898, 46.8410867 ], + [ 6.9906553, 46.8388027 ], + [ 6.9896477, 46.8365518 ], + [ 6.9884699, 46.8343401 ], + [ 6.9871251999999995, 46.8321738 ], + [ 6.9856172999999995, 46.8300587 ], + [ 6.9839502, 46.8280007 ], + [ 6.9821286, 46.8260053 ], + [ 6.9801576, 46.8240781 ], + [ 6.9780424, 46.8222242 ], + [ 6.9757888999999995, 46.8204489 ], + [ 6.9734033, 46.8187569 ], + [ 6.9708921, 46.817152899999996 ], + [ 6.9455385, 46.8017803 ], + [ 6.9429101, 46.800268 ], + [ 6.9401702, 46.7988523 ], + [ 6.9373263, 46.7975368 ], + [ 6.9343861, 46.7963253 ], + [ 6.9313578, 46.7952211 ], + [ 6.9282496, 46.7942271 ], + [ 6.92507, 46.7933461 ], + [ 6.9218277, 46.7925805 ], + [ 6.9185316, 46.7919324 ], + [ 6.9151907999999995, 46.7914036 ], + [ 6.9118142, 46.7909955 ], + [ 6.9084112, 46.7907092 ], + [ 6.9049911, 46.7905456 ], + [ 6.9015633, 46.790505 ], + [ 6.898137, 46.7905876 ], + [ 6.8947217, 46.7907931 ], + [ 6.8913267, 46.791121 ], + [ 6.8879613, 46.7915704 ], + [ 6.8846346, 46.79214 ], + [ 6.8813559, 46.7928283 ], + [ 6.878134, 46.7936335 ], + [ 6.8749778, 46.7945533 ], + [ 6.8718958, 46.7955852 ], + [ 6.8688966, 46.7967263 ], + [ 6.8659884, 46.7979736 ], + [ 6.863179, 46.7993237 ], + [ 6.8604763, 46.8007728 ], + [ 6.8578875, 46.802317 ], + [ 6.8554199, 46.8039521 ], + [ 6.8530801, 46.8056736 ], + [ 6.8508745, 46.8074767 ], + [ 6.8488093, 46.8093566 ], + [ 6.84689, 46.8113081 ], + [ 6.845122, 46.8133258 ], + [ 6.8435102, 46.8154043 ], + [ 6.8420588, 46.8175379 ], + [ 6.840772, 46.8197206 ], + [ 6.8396533, 46.8219466 ], + [ 6.8387057, 46.8242097 ], + [ 6.8379319, 46.8265037 ], + [ 6.8373341, 46.8288224 ], + [ 6.8369138, 46.8311593 ], + [ 6.8366723, 46.8335082 ], + [ 6.8366102, 46.8358625 ], + [ 6.8367278, 46.8382158 ], + [ 6.8370247, 46.8405617 ], + [ 6.8375001, 46.8428937 ], + [ 6.8381528, 46.8452054 ], + [ 6.8389811, 46.8474905 ], + [ 6.8399825, 46.8497427 ], + [ 6.8411545, 46.8519559 ], + [ 6.8424938, 46.854124 ], + [ 6.8439968, 46.8562409 ], + [ 6.8456594, 46.858301 ], + [ 6.847477, 46.8602985 ], + [ 6.8494446, 46.862228 ], + [ 6.851557, 46.8640842 ], + [ 6.8538082, 46.865862 ], + [ 6.8561921, 46.8675565 ], + [ 6.8587022, 46.869163 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSMP001", + "country" : "CHE", + "name" : [ + { + "text" : "LSMP Payerne Ziv", + "lang" : "de-CH" + }, + { + "text" : "LSMP Payerne Ziv", + "lang" : "fr-CH" + }, + { + "text" : "LSMP Payerne Ziv", + "lang" : "it-CH" + }, + { + "text" : "LSMP Payerne Ziv", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Skyguide Special Flight Office", + "lang" : "de-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "it-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.skyguide.ch/services/special-flights", + "email" : "specialflight@skyguide.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6080397, 47.5035184 ], + [ 7.6096465, 47.5029756 ], + [ 7.6096219, 47.5029179 ], + [ 7.6096009, 47.5028595 ], + [ 7.6095838, 47.5028005 ], + [ 7.6094259, 47.5023644 ], + [ 7.6092878, 47.5019786 ], + [ 7.6091207, 47.5015165 ], + [ 7.6090235, 47.501216 ], + [ 7.6090165, 47.5011935 ], + [ 7.609012, 47.5011836 ], + [ 7.6090062, 47.501174 ], + [ 7.6089993, 47.5011647 ], + [ 7.6089913, 47.5011559 ], + [ 7.6089896, 47.5011536 ], + [ 7.6089876, 47.5011513 ], + [ 7.6089853, 47.5011493 ], + [ 7.6089828, 47.5011473 ], + [ 7.6089801, 47.5011455 ], + [ 7.6089772, 47.5011438 ], + [ 7.608974, 47.5011423 ], + [ 7.6089703, 47.5011409 ], + [ 7.6089664, 47.5011397 ], + [ 7.6089624, 47.5011387 ], + [ 7.6089583, 47.501138 ], + [ 7.608954, 47.5011376 ], + [ 7.6089497999999995, 47.5011374 ], + [ 7.6089455, 47.5011375 ], + [ 7.608914, 47.5011359 ], + [ 7.6088825, 47.5011358 ], + [ 7.608851, 47.5011371 ], + [ 7.6087396, 47.501145 ], + [ 7.6085443999999995, 47.5011605 ], + [ 7.6083501, 47.5011815 ], + [ 7.608279, 47.5011891 ], + [ 7.6082153, 47.5011956 ], + [ 7.6081513, 47.5012011 ], + [ 7.6080872, 47.5012056 ], + [ 7.6079124, 47.5012215 ], + [ 7.6077755, 47.5012376 ], + [ 7.6076942, 47.5012487 ], + [ 7.6075903, 47.50126 ], + [ 7.6073989, 47.5012813 ], + [ 7.607301, 47.501295 ], + [ 7.6072790999999995, 47.5012978 ], + [ 7.6072576, 47.5013017 ], + [ 7.6071421, 47.5013212 ], + [ 7.6071734, 47.5013919 ], + [ 7.6072007, 47.5014633 ], + [ 7.6072241, 47.5015354 ], + [ 7.6072755, 47.501704 ], + [ 7.6073248, 47.5018661 ], + [ 7.6074025, 47.5021224 ], + [ 7.6075286, 47.5025302 ], + [ 7.6076612, 47.5029654 ], + [ 7.6076694, 47.5029967 ], + [ 7.6076738, 47.5030283 ], + [ 7.6076745, 47.5030601 ], + [ 7.6076705, 47.5030861 ], + [ 7.6076682, 47.5030991 ], + [ 7.6076669, 47.5031029 ], + [ 7.6076652, 47.5031066 ], + [ 7.607663, 47.5031102 ], + [ 7.6076604, 47.5031136 ], + [ 7.6076573, 47.5031169 ], + [ 7.6076538, 47.5031199 ], + [ 7.6076499, 47.5031228 ], + [ 7.6076457, 47.5031254 ], + [ 7.6076384, 47.5031285 ], + [ 7.6076407, 47.5031325 ], + [ 7.6076513, 47.5031318 ], + [ 7.6076619, 47.5031317 ], + [ 7.6076725, 47.5031321 ], + [ 7.607683, 47.5031331 ], + [ 7.6076933, 47.5031347 ], + [ 7.6077034999999995, 47.5031368 ], + [ 7.6077133, 47.5031394 ], + [ 7.6077229, 47.5031425 ], + [ 7.607732, 47.5031462 ], + [ 7.607741, 47.5031504 ], + [ 7.6077495, 47.5031552 ], + [ 7.6077574, 47.5031604 ], + [ 7.6077647, 47.503166 ], + [ 7.6077712, 47.503172 ], + [ 7.6077770000000005, 47.5031783 ], + [ 7.6077821, 47.503185 ], + [ 7.6080397, 47.5035184 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns150", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Reinacherheide", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Reinacherheide", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Reinacherheide", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Reinacherheide", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.1287648, 46.2739456 ], + [ 6.1288046, 46.2742861 ], + [ 6.1292731, 46.2750654 ], + [ 6.1293143, 46.2751117 ], + [ 6.1293359, 46.2751279 ], + [ 6.129359, 46.2751538 ], + [ 6.1301538, 46.275794 ], + [ 6.1303183, 46.2758633 ], + [ 6.1303396, 46.2758792 ], + [ 6.1304094, 46.2759016 ], + [ 6.131195, 46.2762324 ], + [ 6.1316945, 46.276314 ], + [ 6.1317089, 46.2763187 ], + [ 6.131726, 46.2763192 ], + [ 6.1323808, 46.2764262 ], + [ 6.1335948, 46.2763562 ], + [ 6.1346678, 46.2760441 ], + [ 6.1349845, 46.275964 ], + [ 6.1351077, 46.275912 ], + [ 6.1362263, 46.2752004 ], + [ 6.1368671, 46.2742462 ], + [ 6.1369327, 46.2731946 ], + [ 6.1364132, 46.2722055 ], + [ 6.1363453, 46.2721279 ], + [ 6.1355584, 46.2714836 ], + [ 6.1345229, 46.2710394 ], + [ 6.1333401, 46.2708388 ], + [ 6.1321259, 46.2709015 ], + [ 6.1318766, 46.2709723 ], + [ 6.1317868, 46.2709773 ], + [ 6.1306622, 46.2713024 ], + [ 6.1305455, 46.2713522 ], + [ 6.1299336, 46.2717164 ], + [ 6.1297424, 46.2709866 ], + [ 6.1289201, 46.2701014 ], + [ 6.1276719, 46.2695018 ], + [ 6.1273087, 46.2694473 ], + [ 6.1272319, 46.2693648 ], + [ 6.1281796, 46.2689413 ], + [ 6.1290442, 46.2680757 ], + [ 6.1293652, 46.2670466 ], + [ 6.129094, 46.2660105 ], + [ 6.1282717, 46.2651254 ], + [ 6.1270236, 46.2645258 ], + [ 6.1255397, 46.2643031 ], + [ 6.1240459, 46.2644912 ], + [ 6.1227696, 46.2650614 ], + [ 6.121905, 46.265927 ], + [ 6.1215838, 46.2669561 ], + [ 6.1218549, 46.2679921 ], + [ 6.1222505, 46.2684181 ], + [ 6.1209864, 46.2682283 ], + [ 6.1194925, 46.2684163 ], + [ 6.1194874, 46.2684186 ], + [ 6.1191925, 46.2684557 ], + [ 6.117916, 46.2690259 ], + [ 6.1170513, 46.2698914 ], + [ 6.1167300000000004, 46.2709205 ], + [ 6.1170011, 46.2719566 ], + [ 6.1178233, 46.2728419 ], + [ 6.1185381, 46.2731853 ], + [ 6.1185969, 46.2732854 ], + [ 6.119386, 46.2739326 ], + [ 6.1195336, 46.2740207 ], + [ 6.1205708, 46.2744656 ], + [ 6.1207381, 46.2744939 ], + [ 6.1217798, 46.2746774 ], + [ 6.1230082, 46.2746187 ], + [ 6.1231005, 46.2745927 ], + [ 6.1232803, 46.274679 ], + [ 6.1247644, 46.2749018 ], + [ 6.1262585, 46.2747137 ], + [ 6.1264556, 46.2746257 ], + [ 6.1275516, 46.2744877 ], + [ 6.1287648, 46.2739456 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-12", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6174239, 47.0647551 ], + [ 7.617418, 47.0646139 ], + [ 7.6174013, 47.064473 ], + [ 7.6173739, 47.064333 ], + [ 7.6173357, 47.0641942 ], + [ 7.617287, 47.0640569 ], + [ 7.6172278, 47.0639215 ], + [ 7.6171584, 47.0637884 ], + [ 7.6170788, 47.063658 ], + [ 7.6169894, 47.0635306 ], + [ 7.6168903, 47.0634066 ], + [ 7.6167819, 47.0632863 ], + [ 7.6166644, 47.0631701 ], + [ 7.6165382, 47.0630582 ], + [ 7.6164035, 47.062951 ], + [ 7.6162609, 47.0628487 ], + [ 7.6161106, 47.0627517 ], + [ 7.615953, 47.0626602 ], + [ 7.6157886999999995, 47.0625744 ], + [ 7.6156181, 47.0624947 ], + [ 7.6154416, 47.0624211 ], + [ 7.6152596, 47.062354 ], + [ 7.6150728, 47.0622935 ], + [ 7.6148817, 47.0622397 ], + [ 7.6146866, 47.0621928 ], + [ 7.6144882, 47.062153 ], + [ 7.6142871, 47.0621203 ], + [ 7.6140837, 47.0620949 ], + [ 7.6138787, 47.0620768 ], + [ 7.6136725, 47.062066 ], + [ 7.6134659, 47.0620626 ], + [ 7.6132592, 47.0620666 ], + [ 7.6130531, 47.062078 ], + [ 7.6128482, 47.0620968 ], + [ 7.612645, 47.0621228 ], + [ 7.6124441, 47.0621561 ], + [ 7.612246, 47.0621966 ], + [ 7.6120512, 47.062244 ], + [ 7.6118604, 47.0622984 ], + [ 7.611674, 47.0623595 ], + [ 7.6114925, 47.0624272 ], + [ 7.6113165, 47.0625012 ], + [ 7.6111463, 47.0625815 ], + [ 7.6109826, 47.0626678 ], + [ 7.6108257, 47.0627598 ], + [ 7.610676, 47.0628572 ], + [ 7.610534, 47.0629599 ], + [ 7.6104001, 47.0630676 ], + [ 7.6102746, 47.0631798 ], + [ 7.6101578, 47.0632964 ], + [ 7.6100502, 47.0634171 ], + [ 7.6099519, 47.0635414 ], + [ 7.6098633, 47.063669 ], + [ 7.6097846, 47.0637997 ], + [ 7.609716, 47.0639329 ], + [ 7.6096578, 47.0640685 ], + [ 7.6096099, 47.0642059 ], + [ 7.6095727, 47.0643449 ], + [ 7.6095462, 47.064485 ], + [ 7.6095304, 47.0646259 ], + [ 7.6095254, 47.0647671 ], + [ 7.6095313, 47.0649083 ], + [ 7.6095479, 47.0650492 ], + [ 7.6095754, 47.0651892 ], + [ 7.6096135, 47.0653281 ], + [ 7.6096622, 47.0654654 ], + [ 7.6097214, 47.0656007 ], + [ 7.6097908, 47.0657338 ], + [ 7.6098704, 47.0658642 ], + [ 7.6099598, 47.0659916 ], + [ 7.6100588, 47.0661156 ], + [ 7.6101673, 47.0662359 ], + [ 7.6102847, 47.0663522 ], + [ 7.610411, 47.0664641 ], + [ 7.6105456, 47.0665713 ], + [ 7.6106882, 47.0666736 ], + [ 7.6108385, 47.0667706 ], + [ 7.6109960999999995, 47.0668621 ], + [ 7.6111604, 47.0669479 ], + [ 7.611331, 47.0670276 ], + [ 7.6115075999999995, 47.0671012 ], + [ 7.6116895, 47.0671683 ], + [ 7.6118763, 47.0672289 ], + [ 7.6120675, 47.0672826 ], + [ 7.6122626, 47.0673295 ], + [ 7.612461, 47.0673693 ], + [ 7.6126621, 47.067402 ], + [ 7.6128655, 47.0674274 ], + [ 7.6130706, 47.0674456 ], + [ 7.6132767999999995, 47.0674563 ], + [ 7.6134835, 47.0674597 ], + [ 7.6136901, 47.0674557 ], + [ 7.6138962, 47.0674443 ], + [ 7.6141012, 47.0674255 ], + [ 7.6143044, 47.0673995 ], + [ 7.6145053, 47.0673662 ], + [ 7.6147035, 47.0673258 ], + [ 7.6148982, 47.0672783 ], + [ 7.6150891, 47.067224 ], + [ 7.6152755, 47.0671628 ], + [ 7.615457, 47.0670951 ], + [ 7.615633, 47.0670211 ], + [ 7.6158032, 47.0669408 ], + [ 7.6159669, 47.0668545 ], + [ 7.6161239, 47.0667625 ], + [ 7.6162735, 47.066665 ], + [ 7.6164155000000004, 47.0665623 ], + [ 7.6165494, 47.0664547 ], + [ 7.6166749, 47.0663424 ], + [ 7.6167917, 47.0662258 ], + [ 7.6168993, 47.0661052 ], + [ 7.6169975, 47.0659809 ], + [ 7.6170861, 47.0658532 ], + [ 7.6171648, 47.0657226 ], + [ 7.6172334, 47.0655893 ], + [ 7.6172917, 47.0654537 ], + [ 7.6173395, 47.0653163 ], + [ 7.6173767, 47.0651773 ], + [ 7.6174032, 47.0650372 ], + [ 7.6174189, 47.0648963 ], + [ 7.6174239, 47.0647551 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BGD0001", + "country" : "CHE", + "name" : [ + { + "text" : "Regionalgefängnis Burgdorf", + "lang" : "de-CH" + }, + { + "text" : "Regionalgefängnis Burgdorf", + "lang" : "fr-CH" + }, + { + "text" : "Regionalgefängnis Burgdorf", + "lang" : "it-CH" + }, + { + "text" : "Regionalgefängnis Burgdorf", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Justizvollzug des Kantons Bern, Regionalgefängnis Burgdorf", + "lang" : "de-CH" + }, + { + "text" : "Office de l'exécution judiciaire, Prison régionale de Berthoud", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio delle correzioni, Carcere regionale di Burgdorf", + "lang" : "it-CH" + }, + { + "text" : "Department of Corrections, Prison regional of Burgdorf", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Chef Sicherheit", + "lang" : "de-CH" + }, + { + "text" : "Chef sécurité", + "lang" : "fr-CH" + }, + { + "text" : "Capo sicurezza", + "lang" : "it-CH" + }, + { + "text" : "Chief Security", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ajv.sid.be.ch/de/start/themen/haft/kontakt.html", + "email" : "regionalgefaengnis-burgdorf@be.ch", + "phone" : "0041316357211", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P02DT12H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7463689, 47.4289118 ], + [ 7.7465549, 47.4291972 ], + [ 7.7467398, 47.429483 ], + [ 7.7469452, 47.4297958 ], + [ 7.7473188, 47.4305057 ], + [ 7.7476997, 47.4312264 ], + [ 7.7479185, 47.4320804 ], + [ 7.7484003, 47.4328665 ], + [ 7.7489897, 47.4334663 ], + [ 7.74958, 47.433957 ], + [ 7.7498362, 47.4343497 ], + [ 7.7501304, 47.4348033 ], + [ 7.7504101, 47.4352322 ], + [ 7.7504508, 47.4353127 ], + [ 7.7504299, 47.4353546 ], + [ 7.7504141, 47.4353974 ], + [ 7.7504036, 47.435441 ], + [ 7.7503983, 47.435485 ], + [ 7.7504001, 47.4356901 ], + [ 7.7503972999999995, 47.4358038 ], + [ 7.7504769, 47.4358503 ], + [ 7.7508481, 47.4363201 ], + [ 7.7510583, 47.4365695 ], + [ 7.7511576, 47.4367484 ], + [ 7.7502313, 47.4374001 ], + [ 7.7507487, 47.4376379 ], + [ 7.7512427, 47.4378442 ], + [ 7.7516507, 47.438082 ], + [ 7.7521119, 47.4383177 ], + [ 7.7527601, 47.4386734 ], + [ 7.753359, 47.4390038 ], + [ 7.7543348, 47.4387069 ], + [ 7.7543346, 47.4387047 ], + [ 7.7543346, 47.4387025 ], + [ 7.754335, 47.4387003 ], + [ 7.7543356, 47.4386981 ], + [ 7.7543365, 47.4386959 ], + [ 7.7543375999999995, 47.4386939 ], + [ 7.754339, 47.4386919 ], + [ 7.7543406, 47.4386899 ], + [ 7.7543519, 47.4386786 ], + [ 7.7543618, 47.4386667 ], + [ 7.7543703, 47.4386543 ], + [ 7.7543775, 47.4386415 ], + [ 7.7543931, 47.4386116 ], + [ 7.7543942, 47.4386085 ], + [ 7.7543949, 47.4386053 ], + [ 7.7543952, 47.4386021 ], + [ 7.754395, 47.4385989 ], + [ 7.7543945, 47.4385957 ], + [ 7.7543936, 47.4385925 ], + [ 7.7543923, 47.4385894 ], + [ 7.7543904999999995, 47.4385856 ], + [ 7.7543891, 47.4385816 ], + [ 7.7543883000000005, 47.4385775 ], + [ 7.7543879, 47.4385735 ], + [ 7.7543881, 47.4385694 ], + [ 7.7543889, 47.4385653 ], + [ 7.7543901, 47.4385614 ], + [ 7.7543919, 47.4385575 ], + [ 7.7543941, 47.4385537 ], + [ 7.7543968, 47.43855 ], + [ 7.7544, 47.4385466 ], + [ 7.7544036, 47.4385433 ], + [ 7.7544077, 47.4385403 ], + [ 7.754412, 47.4385375 ], + [ 7.7544167999999996, 47.438535 ], + [ 7.7544286, 47.4385304 ], + [ 7.7544408, 47.4385261 ], + [ 7.7544532, 47.4385222 ], + [ 7.7544623999999995, 47.4385179 ], + [ 7.7544711, 47.4385131 ], + [ 7.7544791, 47.4385077 ], + [ 7.7544863, 47.4385019 ], + [ 7.7544927999999995, 47.4384957 ], + [ 7.7544984, 47.4384891 ], + [ 7.7545032, 47.4384822 ], + [ 7.754507, 47.4384751 ], + [ 7.7545099, 47.4384677 ], + [ 7.7545227, 47.4384421 ], + [ 7.754538, 47.4384171 ], + [ 7.7545556, 47.4383929 ], + [ 7.7545783, 47.4383678 ], + [ 7.7546017, 47.4383431 ], + [ 7.754626, 47.4383188 ], + [ 7.7546558999999995, 47.438288299999996 ], + [ 7.754683, 47.4382566 ], + [ 7.7547073, 47.4382239 ], + [ 7.75472, 47.4382036 ], + [ 7.7547303, 47.4381827 ], + [ 7.754738, 47.4381613 ], + [ 7.7547433, 47.4381396 ], + [ 7.7547474, 47.4381173 ], + [ 7.7547489, 47.4380949 ], + [ 7.7547477, 47.4380724 ], + [ 7.7547438, 47.4380501 ], + [ 7.7546754, 47.4378306 ], + [ 7.7546536, 47.4377594 ], + [ 7.7546326, 47.437688 ], + [ 7.7546122, 47.4376166 ], + [ 7.7545944, 47.4375599 ], + [ 7.7545769, 47.4375031 ], + [ 7.7545596, 47.4374464 ], + [ 7.7545358, 47.4373859 ], + [ 7.7545054, 47.4373269 ], + [ 7.7544684, 47.4372695 ], + [ 7.7544336, 47.4372264 ], + [ 7.7543939, 47.4371852 ], + [ 7.7530089, 47.4359306 ], + [ 7.7527348, 47.4359986 ], + [ 7.7524424, 47.4360718 ], + [ 7.7525955, 47.4362978 ], + [ 7.7525559, 47.4363102 ], + [ 7.7532876, 47.4368599 ], + [ 7.7529015999999995, 47.4370313 ], + [ 7.7524996, 47.437174 ], + [ 7.7522451, 47.436903 ], + [ 7.7519794, 47.4365753 ], + [ 7.7517975, 47.4363465 ], + [ 7.7520869, 47.4362665 ], + [ 7.7523746, 47.4361862 ], + [ 7.7524566, 47.4361633 ], + [ 7.7524023, 47.4360832 ], + [ 7.7521611, 47.4356941 ], + [ 7.7520914, 47.4357146 ], + [ 7.7518693, 47.4357801 ], + [ 7.7514654, 47.4358961 ], + [ 7.7513032, 47.4356644 ], + [ 7.7511510999999995, 47.435444 ], + [ 7.7515287, 47.4353404 ], + [ 7.7518007, 47.4352639 ], + [ 7.75187, 47.4352444 ], + [ 7.7517009, 47.4349963 ], + [ 7.7517398, 47.4349829 ], + [ 7.7522686, 47.4348299 ], + [ 7.7528985, 47.4348618 ], + [ 7.7529471999999995, 47.4348118 ], + [ 7.7529958, 47.4347718 ], + [ 7.7530544, 47.4347385 ], + [ 7.7530967, 47.4347018 ], + [ 7.7531512, 47.4346084 ], + [ 7.7532122, 47.4344778 ], + [ 7.7532664, 47.4343424 ], + [ 7.7533069, 47.4342259 ], + [ 7.75332, 47.434128 ], + [ 7.7533104, 47.4340474 ], + [ 7.7532793, 47.4339491 ], + [ 7.7532469, 47.4338725 ], + [ 7.7532067, 47.4338131 ], + [ 7.753153, 47.4337365 ], + [ 7.7530822, 47.4336659 ], + [ 7.7533885, 47.4324796 ], + [ 7.7537261, 47.432326 ], + [ 7.7537093, 47.4322709 ], + [ 7.7536938, 47.4322156 ], + [ 7.7536796, 47.4321602 ], + [ 7.7536618, 47.4320936 ], + [ 7.7536462, 47.4320267 ], + [ 7.7536328999999995, 47.4319596 ], + [ 7.7536286, 47.43194 ], + [ 7.7536249999999995, 47.4319203 ], + [ 7.7536223, 47.4319006 ], + [ 7.7536178, 47.4318888 ], + [ 7.7536119, 47.4318774 ], + [ 7.7536046, 47.4318664 ], + [ 7.7535959, 47.4318558 ], + [ 7.7535859, 47.4318458 ], + [ 7.7535651, 47.4318243 ], + [ 7.7530281, 47.4317957 ], + [ 7.7525416, 47.4316872 ], + [ 7.7518342, 47.4317588 ], + [ 7.7516374, 47.4317702 ], + [ 7.7515396, 47.4317752 ], + [ 7.7516896, 47.432172 ], + [ 7.7516449, 47.4321802 ], + [ 7.7511913, 47.4322956 ], + [ 7.7506595, 47.4324297 ], + [ 7.7504866, 47.4321028 ], + [ 7.7503084, 47.4317158 ], + [ 7.7503059, 47.4317088 ], + [ 7.7501867, 47.4313813 ], + [ 7.749941, 47.4313895 ], + [ 7.7496938, 47.4313989 ], + [ 7.7496501, 47.4314006 ], + [ 7.7495926, 47.431403 ], + [ 7.749591, 47.431215 ], + [ 7.7491702, 47.4312294 ], + [ 7.7488718, 47.4312373 ], + [ 7.7486412, 47.4309787 ], + [ 7.7484747, 47.4306723 ], + [ 7.7484654, 47.4305796 ], + [ 7.7484456999999995, 47.4303304 ], + [ 7.7485829, 47.4300379 ], + [ 7.7485959, 47.4299171 ], + [ 7.7486286, 47.4296655 ], + [ 7.7486792, 47.4292588 ], + [ 7.7485949, 47.4288893 ], + [ 7.7485147, 47.4287134 ], + [ 7.7483183, 47.4283524 ], + [ 7.7481134, 47.4280782 ], + [ 7.7479584, 47.4278335 ], + [ 7.7478735, 47.4276565 ], + [ 7.7476987, 47.4272925 ], + [ 7.7476427, 47.4271758 ], + [ 7.7475695, 47.4270252 ], + [ 7.7474512, 47.4267774 ], + [ 7.7474451, 47.4267615 ], + [ 7.7474317, 47.4267263 ], + [ 7.7473537, 47.4268643 ], + [ 7.7472465, 47.4270163 ], + [ 7.7470464, 47.4274351 ], + [ 7.7467514, 47.4280939 ], + [ 7.7467179, 47.4282873 ], + [ 7.7467934, 47.4286146 ], + [ 7.7466035, 47.4287415 ], + [ 7.7464215, 47.4288736 ], + [ 7.7463689, 47.4289118 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns086", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Stälzer - Pfiferatten", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Stälzer - Pfiferatten", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Stälzer - Pfiferatten", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Stälzer - Pfiferatten", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.4772379, 47.0699432 ], + [ 9.4843024, 47.072157 ], + [ 9.494397, 47.0812446 ], + [ 9.5030123, 47.0928775 ], + [ 9.5206318, 47.0851809 ], + [ 9.5058144, 47.0767205 ], + [ 9.4846228, 47.0667524 ], + [ 9.4848185, 47.0615301 ], + [ 9.4867987, 47.051327 ], + [ 9.4984771, 47.0434695 ], + [ 9.4773138, 47.0338597 ], + [ 9.4602805, 47.0358708 ], + [ 9.4501835, 47.0438765 ], + [ 9.4513373, 47.0535741 ], + [ 9.4606496, 47.059619 ], + [ 9.4615783, 47.0632918 ], + [ 9.4336827, 47.0673792 ], + [ 9.4360355, 47.0775059 ], + [ 9.4454412, 47.0859798 ], + [ 9.4608923, 47.0904776 ], + [ 9.4657492, 47.0760853 ], + [ 9.4772379, 47.0699432 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSXB001", + "country" : "LIE", + "name" : [ + { + "text" : "LSXB Balzers", + "lang" : "de-CH" + }, + { + "text" : "LSXB Balzers", + "lang" : "fr-CH" + }, + { + "text" : "LSXB Balzers", + "lang" : "it-CH" + }, + { + "text" : "LSXB Balzers", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 27, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Heliport Balzers", + "lang" : "de-CH" + }, + { + "text" : "Heliport Balzers", + "lang" : "fr-CH" + }, + { + "text" : "Heliport Balzers", + "lang" : "it-CH" + }, + { + "text" : "Heliport Balzers", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleiter", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleiter", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleiter", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleiter", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Renzo Aldovini", + "lang" : "de-CH" + }, + { + "text" : "Renzo Aldovini", + "lang" : "fr-CH" + }, + { + "text" : "Renzo Aldovini", + "lang" : "it-CH" + }, + { + "text" : "Renzo Aldovini", + "lang" : "en-GB" + } + ], + "siteURL" : "https://lsxb.li/drohnenfluege/", + "email" : "info@lsxb.li", + "phone" : "004233800303", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P01DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.557002, 47.4885065 ], + [ 9.5580296, 47.4883797 ], + [ 9.5587979, 47.4883063 ], + [ 9.5597534, 47.4880683 ], + [ 9.5663373, 47.4869452 ], + [ 9.5666992, 47.4870681 ], + [ 9.5669093, 47.4868771 ], + [ 9.5682462, 47.4866851 ], + [ 9.5691192, 47.4865098 ], + [ 9.570259, 47.4862369 ], + [ 9.570678000000001, 47.4861923 ], + [ 9.5712238, 47.4860023 ], + [ 9.5715802, 47.4858859 ], + [ 9.5712808, 47.4849405 ], + [ 9.5748226, 47.484526 ], + [ 9.5745153, 47.4826909 ], + [ 9.5706924, 47.4831105 ], + [ 9.5702726, 47.4819756 ], + [ 9.5656781, 47.483013 ], + [ 9.5606065, 47.4838043 ], + [ 9.5580373, 47.4839782 ], + [ 9.5569654, 47.4840932 ], + [ 9.5517931, 47.4847267 ], + [ 9.5497511, 47.4851769 ], + [ 9.5487586, 47.4857888 ], + [ 9.5485883, 47.4859107 ], + [ 9.5440821, 47.486314 ], + [ 9.5444948, 47.4874167 ], + [ 9.5497739, 47.486922 ], + [ 9.5501613, 47.4872514 ], + [ 9.5511128, 47.4883164 ], + [ 9.5512667, 47.4891485 ], + [ 9.5539189, 47.4889183 ], + [ 9.553921, 47.4894365 ], + [ 9.5551742, 47.4893407 ], + [ 9.5551118, 47.4888065 ], + [ 9.5555405, 47.4887717 ], + [ 9.5564695, 47.488635 ], + [ 9.557002, 47.4885065 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZR002", + "country" : "CHE", + "name" : [ + { + "text" : "LSZR St.Gallen (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSZR St.Gallen (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSZR St.Gallen (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSZR St.Gallen (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Special Flight Office (SFO)", + "lang" : "de-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "fr-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "it-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "en-GB" + } + ], + "siteURL" : "https://skyguide.ch/services/special-flights", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.0682972, 47.0825345 ], + [ 9.0678702, 47.0812748 ], + [ 9.0675156, 47.0802286 ], + [ 9.0670904, 47.0789741 ], + [ 9.0670832, 47.0789494 ], + [ 9.0670783, 47.0789248 ], + [ 9.0670756, 47.0789001 ], + [ 9.0670752, 47.0788752 ], + [ 9.067077, 47.0788504 ], + [ 9.067081, 47.0788258 ], + [ 9.0670872, 47.0788013 ], + [ 9.0670956, 47.0787771 ], + [ 9.0671062, 47.0787534 ], + [ 9.0671189, 47.0787301 ], + [ 9.0671336, 47.0787074 ], + [ 9.0671504, 47.0786854 ], + [ 9.067169, 47.0786641 ], + [ 9.0671896, 47.0786436 ], + [ 9.0672161, 47.0786193 ], + [ 9.0672361, 47.0786054 ], + [ 9.0672618, 47.0785879 ], + [ 9.067289, 47.0785714 ], + [ 9.0673177, 47.0785562 ], + [ 9.0673477, 47.0785421 ], + [ 9.0673788, 47.0785294 ], + [ 9.0674111, 47.0785179 ], + [ 9.0674443, 47.0785079 ], + [ 9.0674784, 47.0784992 ], + [ 9.0675132, 47.078492 ], + [ 9.0675253, 47.0784898 ], + [ 9.0675486, 47.0784863 ], + [ 9.0683426, 47.0783648 ], + [ 9.0683799, 47.0783642 ], + [ 9.0684195, 47.0783728 ], + [ 9.0684576, 47.0783946 ], + [ 9.0684103, 47.0783545 ], + [ 9.0682036, 47.0782058 ], + [ 9.0681329, 47.0781594 ], + [ 9.0680973, 47.0781847 ], + [ 9.067984299999999, 47.0781193 ], + [ 9.0678658, 47.0780585 ], + [ 9.0677422, 47.0780027 ], + [ 9.067614, 47.077952 ], + [ 9.0674816, 47.0779066 ], + [ 9.0673454, 47.0778667 ], + [ 9.0672061, 47.0778323 ], + [ 9.0670656, 47.077804 ], + [ 9.0667419, 47.0777496 ], + [ 9.0662074, 47.0776648 ], + [ 9.0661588, 47.0776583 ], + [ 9.066111, 47.0776497 ], + [ 9.0660639, 47.0776393 ], + [ 9.0660179, 47.0776269 ], + [ 9.065973, 47.0776127 ], + [ 9.0659295, 47.0775967 ], + [ 9.0658874, 47.0775789 ], + [ 9.065847, 47.0775594 ], + [ 9.0658084, 47.0775382 ], + [ 9.0657717, 47.0775156 ], + [ 9.0657371, 47.0774914 ], + [ 9.0657047, 47.0774659 ], + [ 9.0656745, 47.0774391 ], + [ 9.0656468, 47.0774111 ], + [ 9.0656216, 47.0773821 ], + [ 9.065599, 47.0773521 ], + [ 9.0655512, 47.0772834 ], + [ 9.0652062, 47.0766107 ], + [ 9.0650206, 47.0766372 ], + [ 9.0646373, 47.0766982 ], + [ 9.0626941, 47.0709719 ], + [ 9.061668, 47.0711345 ], + [ 9.0621712, 47.0726173 ], + [ 9.0619752, 47.0726484 ], + [ 9.0622737, 47.0735245 ], + [ 9.06158, 47.0736301 ], + [ 9.0616827, 47.0739413 ], + [ 9.0617241, 47.074069 ], + [ 9.0626176, 47.0739329 ], + [ 9.0673792, 47.0879604 ], + [ 9.0684055, 47.0877978 ], + [ 9.0667152, 47.0828194 ], + [ 9.0673683, 47.0827154 ], + [ 9.0677819, 47.0826159 ], + [ 9.0682972, 47.0825345 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZM002", + "country" : "CHE", + "name" : [ + { + "text" : "LSZM Mollis (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSZM Mollis (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSZM Mollis (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSZM Mollis (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Mollis Airport AG", + "lang" : "de-CH" + }, + { + "text" : "Mollis Airport AG", + "lang" : "fr-CH" + }, + { + "text" : "Mollis Airport AG", + "lang" : "it-CH" + }, + { + "text" : "Mollis Airport AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Stefan Oswald", + "lang" : "de-CH" + }, + { + "text" : "Stefan Oswald", + "lang" : "fr-CH" + }, + { + "text" : "Stefan Oswald", + "lang" : "it-CH" + }, + { + "text" : "Stefan Oswald", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.mollisairport.ch", + "email" : "flugbetrieb@mollisairport.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P20DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6498073, 47.5343373 ], + [ 7.6498013, 47.5341961 ], + [ 7.6497844, 47.5340553 ], + [ 7.6497566, 47.5339153 ], + [ 7.649718, 47.5337765 ], + [ 7.6496688, 47.5336392 ], + [ 7.649609, 47.5335039 ], + [ 7.6495388, 47.5333709 ], + [ 7.6494585, 47.5332405 ], + [ 7.6493682, 47.5331132 ], + [ 7.6492682, 47.5329892 ], + [ 7.6491587, 47.532869 ], + [ 7.6490401, 47.5327528 ], + [ 7.6489127, 47.5326409 ], + [ 7.6487768, 47.5325338 ], + [ 7.6486328, 47.5324316 ], + [ 7.6484811, 47.5323346 ], + [ 7.6483222, 47.5322431 ], + [ 7.6481563999999995, 47.5321574 ], + [ 7.6479841, 47.5320777 ], + [ 7.647806, 47.5320042 ], + [ 7.6476223999999995, 47.5319372 ], + [ 7.6474339, 47.5318767 ], + [ 7.647241, 47.531823 ], + [ 7.6470442, 47.5317762 ], + [ 7.6468441, 47.5317364 ], + [ 7.6466411999999995, 47.5317038 ], + [ 7.646436, 47.5316784 ], + [ 7.6462291, 47.5316604 ], + [ 7.6460211000000005, 47.5316497 ], + [ 7.6458126, 47.5316463 ], + [ 7.6456041, 47.5316504 ], + [ 7.6453962, 47.5316619 ], + [ 7.6451895, 47.5316807 ], + [ 7.6449845, 47.5317068 ], + [ 7.6447818, 47.5317401 ], + [ 7.644582, 47.5317806 ], + [ 7.6443856, 47.5318281 ], + [ 7.6441931, 47.5318825 ], + [ 7.6440051, 47.5319436 ], + [ 7.643822, 47.5320114 ], + [ 7.6436445, 47.5320855 ], + [ 7.6434729, 47.5321658 ], + [ 7.6433077, 47.5322521 ], + [ 7.6431495, 47.5323441 ], + [ 7.6429986, 47.5324416 ], + [ 7.6428554, 47.5325443 ], + [ 7.6427203, 47.532652 ], + [ 7.6425938, 47.5327643 ], + [ 7.6424761, 47.5328809 ], + [ 7.6423676, 47.5330015 ], + [ 7.6422685, 47.5331259 ], + [ 7.6421792, 47.5332535 ], + [ 7.6420999, 47.5333842 ], + [ 7.6420308, 47.5335174 ], + [ 7.641972, 47.533653 ], + [ 7.6419239, 47.5337904 ], + [ 7.6418864, 47.5339294 ], + [ 7.6418596999999995, 47.5340695 ], + [ 7.6418439, 47.5342103 ], + [ 7.641839, 47.5343515 ], + [ 7.641845, 47.5344927 ], + [ 7.6418619, 47.5346335 ], + [ 7.6418896, 47.5347735 ], + [ 7.6419282, 47.5349124 ], + [ 7.6419774, 47.5350496 ], + [ 7.6420371, 47.535185 ], + [ 7.6421073, 47.535318 ], + [ 7.6421876, 47.5354484 ], + [ 7.6422779, 47.5355757 ], + [ 7.6423779, 47.5356997 ], + [ 7.6424874, 47.5358199 ], + [ 7.642606, 47.5359361 ], + [ 7.6427334, 47.536048 ], + [ 7.6428693, 47.5361552 ], + [ 7.6430132, 47.5362574 ], + [ 7.6431649, 47.5363543 ], + [ 7.6433239, 47.5364458 ], + [ 7.6434897, 47.5365315 ], + [ 7.6436619, 47.5366112 ], + [ 7.6438401, 47.5366847 ], + [ 7.6440236, 47.5367518 ], + [ 7.6442122, 47.5368123 ], + [ 7.6444051, 47.536866 ], + [ 7.6446019, 47.5369128 ], + [ 7.6448021, 47.5369525 ], + [ 7.645005, 47.5369852 ], + [ 7.6452102, 47.5370105 ], + [ 7.6454170999999995, 47.5370286 ], + [ 7.6456251, 47.5370393 ], + [ 7.6458337, 47.5370426 ], + [ 7.6460422, 47.5370386 ], + [ 7.6462501, 47.5370271 ], + [ 7.6464568, 47.5370083 ], + [ 7.6466618, 47.5369822 ], + [ 7.6468644999999995, 47.5369489 ], + [ 7.6470644, 47.5369084 ], + [ 7.6472608, 47.5368609 ], + [ 7.6474533000000005, 47.5368065 ], + [ 7.6476413999999995, 47.5367453 ], + [ 7.6478244, 47.5366776 ], + [ 7.648002, 47.5366035 ], + [ 7.6481736, 47.5365231 ], + [ 7.6483387, 47.5364368 ], + [ 7.648497, 47.5363448 ], + [ 7.6486479, 47.5362473 ], + [ 7.6487911, 47.5361446 ], + [ 7.6489261, 47.5360369 ], + [ 7.6490527, 47.5359246 ], + [ 7.6491704, 47.535808 ], + [ 7.6492789, 47.5356873 ], + [ 7.6493779, 47.535563 ], + [ 7.6494672, 47.5354354 ], + [ 7.6495465, 47.5353047 ], + [ 7.6496156, 47.5351714 ], + [ 7.6496743, 47.5350359 ], + [ 7.6497225, 47.5348984 ], + [ 7.6497599, 47.5347595 ], + [ 7.6497866, 47.5346194 ], + [ 7.6498024000000004, 47.5344785 ], + [ 7.6498073, 47.5343373 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "MUZ0001", + "country" : "CHE", + "name" : [ + { + "text" : "Gefängnis Muttenz", + "lang" : "de-CH" + }, + { + "text" : "Gefängnis Muttenz", + "lang" : "fr-CH" + }, + { + "text" : "Gefängnis Muttenz", + "lang" : "it-CH" + }, + { + "text" : "Gefängnis Muttenz", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Justizvollzug Basel-Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Amt für Justizvollzug Basel-Landschaft", + "lang" : "fr-CH" + }, + { + "text" : "Amt für Justizvollzug Basel-Landschaft", + "lang" : "it-CH" + }, + { + "text" : "Amt für Justizvollzug Basel-Landschaft", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Amtsleitung", + "lang" : "de-CH" + }, + { + "text" : "Amtsleitung", + "lang" : "fr-CH" + }, + { + "text" : "Amtsleitung", + "lang" : "it-CH" + }, + { + "text" : "Amtsleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Nicolas Pozar", + "lang" : "de-CH" + }, + { + "text" : "Nicolas Pozar", + "lang" : "fr-CH" + }, + { + "text" : "Nicolas Pozar", + "lang" : "it-CH" + }, + { + "text" : "Nicolas Pozar", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/sicherheitsdirektion/bv-sid/justizvollzug", + "email" : "kanzlei.ajv@bl.ch", + "phone" : "0041615529045", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P21DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.9100511000000004, 47.2354446 ], + [ 7.9103847, 47.2352183 ], + [ 7.9098026, 47.2348911 ], + [ 7.909573, 47.2350966 ], + [ 7.9097292, 47.2351825 ], + [ 7.9097033, 47.2352536 ], + [ 7.9100511000000004, 47.2354446 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSXP002", + "country" : "CHE", + "name" : [ + { + "text" : "LSXP Pfaffnau (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSXP Pfaffnau (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSXP Pfaffnau (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSXP Pfaffnau (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swiss Helicopter AG", + "lang" : "de-CH" + }, + { + "text" : "Swiss Helicopter AG", + "lang" : "fr-CH" + }, + { + "text" : "Swiss Helicopter AG", + "lang" : "it-CH" + }, + { + "text" : "Swiss Helicopter AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Basis Pfaffnau", + "lang" : "de-CH" + }, + { + "text" : "Basis Pfaffnau", + "lang" : "fr-CH" + }, + { + "text" : "Basis Pfaffnau", + "lang" : "it-CH" + }, + { + "text" : "Basis Pfaffnau", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Markus Lerch", + "lang" : "de-CH" + }, + { + "text" : "Markus Lerch", + "lang" : "fr-CH" + }, + { + "text" : "Markus Lerch", + "lang" : "it-CH" + }, + { + "text" : "Markus Lerch", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swisshelicopter.ch/en/about-us/helicopter-bases/pfaffnau", + "email" : "pfaffnau@swisshelicopter.ch", + "phone" : "0041627540101", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P00DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.9468207, 47.4451903 ], + [ 7.9468853, 47.4450869 ], + [ 7.9469467, 47.444809 ], + [ 7.9470735, 47.4444403 ], + [ 7.9471618, 47.4443083 ], + [ 7.9471408, 47.4442373 ], + [ 7.9470646, 47.4442254 ], + [ 7.9469254, 47.4444627 ], + [ 7.9468211, 47.4447923 ], + [ 7.9468207, 47.4451903 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns153", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Riedmatt", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Riedmatt", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Riedmatt", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Riedmatt", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.1444825, 46.8297653 ], + [ 7.1488587, 46.8310649 ], + [ 7.1494354, 46.8308429 ], + [ 7.1498453, 46.8308626 ], + [ 7.1504381, 46.8308974 ], + [ 7.1507505, 46.8310272 ], + [ 7.1514671, 46.8309895 ], + [ 7.1518346, 46.8308075 ], + [ 7.1520261, 46.8309586 ], + [ 7.152414, 46.8309087 ], + [ 7.1528263, 46.8308401 ], + [ 7.1540726, 46.829420999999996 ], + [ 7.1541938, 46.8284404 ], + [ 7.1536179, 46.827924 ], + [ 7.1538412, 46.8266627 ], + [ 7.153336, 46.8260751 ], + [ 7.1524955, 46.8255851 ], + [ 7.1519267, 46.8249091 ], + [ 7.1518806, 46.8247073 ], + [ 7.1517245, 46.8247086 ], + [ 7.1514633, 46.8248768 ], + [ 7.1508365, 46.8247687 ], + [ 7.1495428, 46.8238683 ], + [ 7.1471602, 46.8263357 ], + [ 7.146134, 46.8274406 ], + [ 7.1456333, 46.8278827 ], + [ 7.1450435, 46.8282259 ], + [ 7.1452843999999995, 46.8285146 ], + [ 7.1448629, 46.8290127 ], + [ 7.1444825, 46.8297653 ] + ] + ], + "layer" : { + "upper" : 300, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "FR004", + "country" : "CHE", + "name" : [ + { + "text" : "CIG Centre", + "lang" : "de-CH" + }, + { + "text" : "CIG Centre", + "lang" : "fr-CH" + }, + { + "text" : "CIG Centre", + "lang" : "it-CH" + }, + { + "text" : "CIG Centre", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kantonspolizei (Pol)", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale (Pol)", + "lang" : "fr-CH" + }, + { + "text" : "Police cantonale (Pol)", + "lang" : "it-CH" + }, + { + "text" : "Police cantonale (Pol)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Kommandant", + "lang" : "de-CH" + }, + { + "text" : "Commandant", + "lang" : "fr-CH" + }, + { + "text" : "Commandant", + "lang" : "it-CH" + }, + { + "text" : "Commandant", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.fr.ch/police-et-securite/criminalite-ordre-public-et-circulation/drones-legislation-et-demandes-de-derogation", + "email" : "CEA@fr.ch", + "phone" : "0041263470117", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.9412094, 47.4429824 ], + [ 7.9412082, 47.4429841 ], + [ 7.9412073, 47.4429859 ], + [ 7.9412065, 47.4429878 ], + [ 7.9412061, 47.4429897 ], + [ 7.9412058, 47.4429916 ], + [ 7.9412059, 47.4429935 ], + [ 7.9412061, 47.4429954 ], + [ 7.9412066, 47.4429973 ], + [ 7.9412074, 47.4429991 ], + [ 7.9412084, 47.4430009 ], + [ 7.9412096, 47.4430026 ], + [ 7.941211, 47.4430043 ], + [ 7.9412126, 47.4430059 ], + [ 7.9412145, 47.4430073 ], + [ 7.9412165, 47.4430086 ], + [ 7.9412187, 47.4430099 ], + [ 7.941221, 47.4430109 ], + [ 7.9412234999999995, 47.4430119 ], + [ 7.9417552, 47.4430918 ], + [ 7.9429691, 47.4432139 ], + [ 7.9432558, 47.4432296 ], + [ 7.9434675, 47.4431832 ], + [ 7.9435967, 47.4432057 ], + [ 7.9438615, 47.4431457 ], + [ 7.9439069, 47.4431006 ], + [ 7.9440707, 47.4430772 ], + [ 7.9442166, 47.44323 ], + [ 7.944224, 47.4432612 ], + [ 7.9441478, 47.4433305 ], + [ 7.9440068, 47.4434699 ], + [ 7.9440649, 47.4436393 ], + [ 7.9437442, 47.4438526 ], + [ 7.9436528, 47.4440525 ], + [ 7.9436151, 47.444219 ], + [ 7.9434982, 47.4444472 ], + [ 7.943475, 47.4445578 ], + [ 7.9432327, 47.4446641 ], + [ 7.943274, 47.4446964 ], + [ 7.9433781, 47.4446838 ], + [ 7.9434963, 47.4446357 ], + [ 7.9435598, 47.4445715 ], + [ 7.9436754, 47.4443434 ], + [ 7.9438306, 47.4439711 ], + [ 7.9438803, 47.4438885 ], + [ 7.9439717, 47.44382 ], + [ 7.9441744, 47.4437218 ], + [ 7.9443417, 47.443585 ], + [ 7.9443777, 47.4436049 ], + [ 7.9453156, 47.4438671 ], + [ 7.9453301, 47.4440269 ], + [ 7.945481, 47.4442526 ], + [ 7.9456786, 47.4446651 ], + [ 7.945496, 47.4453724 ], + [ 7.945499, 47.4456566 ], + [ 7.9454555, 47.4461016 ], + [ 7.9451144, 47.446371 ], + [ 7.9450272, 47.4463757 ], + [ 7.9447627, 47.4465553 ], + [ 7.9447859, 47.4466211 ], + [ 7.9454871, 47.4462306 ], + [ 7.9456153, 47.446134 ], + [ 7.9457192, 47.4460305 ], + [ 7.9457626, 47.4459506 ], + [ 7.9457702, 47.4458667 ], + [ 7.9457398, 47.4457391 ], + [ 7.9457344, 47.4456433 ], + [ 7.9457951, 47.4455374 ], + [ 7.9456611, 47.445453 ], + [ 7.9457333, 47.4451797 ], + [ 7.9457511, 47.4446751 ], + [ 7.9457877, 47.4445863 ], + [ 7.9456646, 47.4443615 ], + [ 7.9453964, 47.4440155 ], + [ 7.9453983, 47.4438914 ], + [ 7.9456261999999995, 47.4434366 ], + [ 7.9458271, 47.4433118 ], + [ 7.9460464, 47.4432336 ], + [ 7.9464166, 47.4431015 ], + [ 7.9455081, 47.4426762 ], + [ 7.9447034, 47.4424286 ], + [ 7.9443745, 47.4424445 ], + [ 7.9440119, 47.4424095 ], + [ 7.9436951, 47.4422642 ], + [ 7.9436257999999995, 47.4423929 ], + [ 7.9440131, 47.4426165 ], + [ 7.9440398, 47.4427458 ], + [ 7.9434803, 47.4429306 ], + [ 7.9431649, 47.4429622 ], + [ 7.9424152, 47.4429194 ], + [ 7.9420911, 47.4428631 ], + [ 7.941828, 47.4427329 ], + [ 7.9412142, 47.4429777 ], + [ 7.9412123999999995, 47.4429792 ], + [ 7.9412108, 47.4429807 ], + [ 7.9412094, 47.4429824 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns152", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Riedmatt", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Riedmatt", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Riedmatt", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Riedmatt", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.7420656, 47.4961045 ], + [ 8.7420566, 47.4959634 ], + [ 8.7420368, 47.4958228 ], + [ 8.7420062, 47.495683 ], + [ 8.7419648, 47.4955446 ], + [ 8.7419128, 47.4954078 ], + [ 8.7418503, 47.495273 ], + [ 8.7417775, 47.4951407 ], + [ 8.7416945, 47.4950111 ], + [ 8.7416017, 47.4948846 ], + [ 8.7414992, 47.4947616 ], + [ 8.7413874, 47.4946424 ], + [ 8.7412665, 47.4945273 ], + [ 8.7411369, 47.4944167 ], + [ 8.7409989, 47.4943108 ], + [ 8.7408529, 47.49421 ], + [ 8.7406994, 47.4941145 ], + [ 8.7405387, 47.4940245 ], + [ 8.7403712, 47.4939404 ], + [ 8.7401975, 47.4938623 ], + [ 8.7400181, 47.4937906 ], + [ 8.7398333, 47.4937252 ], + [ 8.7396437, 47.4936665 ], + [ 8.7394498, 47.4936146 ], + [ 8.7392522, 47.4935697 ], + [ 8.7390515, 47.4935318 ], + [ 8.738848, 47.4935011 ], + [ 8.7386425, 47.4934777 ], + [ 8.7384354, 47.4934616 ], + [ 8.7382274, 47.4934528 ], + [ 8.738019, 47.4934515 ], + [ 8.7378108, 47.4934575 ], + [ 8.7376033, 47.4934709 ], + [ 8.737397099999999, 47.4934917 ], + [ 8.7371928, 47.4935197 ], + [ 8.736991, 47.493555 ], + [ 8.7367922, 47.4935973 ], + [ 8.7365969, 47.4936467 ], + [ 8.7364057, 47.4937029 ], + [ 8.7362191, 47.4937658 ], + [ 8.7360376, 47.4938353 ], + [ 8.7358617, 47.493911 ], + [ 8.735691899999999, 47.493993 ], + [ 8.7355287, 47.4940808 ], + [ 8.7353725, 47.4941743 ], + [ 8.7352237, 47.4942732 ], + [ 8.7350827, 47.4943773 ], + [ 8.73495, 47.4944862 ], + [ 8.7348259, 47.4945997 ], + [ 8.7347107, 47.4947174 ], + [ 8.7346047, 47.494839 ], + [ 8.7345083, 47.4949643 ], + [ 8.7344217, 47.4950928 ], + [ 8.7343451, 47.4952241 ], + [ 8.7342788, 47.4953581 ], + [ 8.7342229, 47.4954941 ], + [ 8.7341776, 47.495632 ], + [ 8.734143, 47.4957713 ], + [ 8.7341192, 47.4959117 ], + [ 8.7341063, 47.4960526 ], + [ 8.7341043, 47.4961939 ], + [ 8.7341132, 47.496335 ], + [ 8.734133, 47.4964756 ], + [ 8.7341636, 47.4966154 ], + [ 8.7342049, 47.4967538 ], + [ 8.7342569, 47.4968906 ], + [ 8.7343194, 47.4970254 ], + [ 8.7343922, 47.4971577 ], + [ 8.7344752, 47.497287299999996 ], + [ 8.734568, 47.4974138 ], + [ 8.7346705, 47.4975368 ], + [ 8.734782299999999, 47.497656 ], + [ 8.7349032, 47.4977711 ], + [ 8.735032799999999, 47.4978817 ], + [ 8.7351707, 47.4979876 ], + [ 8.7353167, 47.4980885 ], + [ 8.7354703, 47.498184 ], + [ 8.735631, 47.4982739 ], + [ 8.7357984, 47.4983581 ], + [ 8.7359721, 47.4984361 ], + [ 8.7361516, 47.4985079 ], + [ 8.7363364, 47.4985733 ], + [ 8.736526, 47.498632 ], + [ 8.7367199, 47.4986839 ], + [ 8.7369175, 47.4987288 ], + [ 8.7371183, 47.4987667 ], + [ 8.7373218, 47.4987974 ], + [ 8.7375273, 47.4988208 ], + [ 8.7377344, 47.4988369 ], + [ 8.7379424, 47.4988457 ], + [ 8.7381508, 47.498847 ], + [ 8.7383591, 47.498841 ], + [ 8.7385666, 47.4988276 ], + [ 8.7387728, 47.4988068 ], + [ 8.7389771, 47.4987788 ], + [ 8.7391789, 47.4987436 ], + [ 8.7393778, 47.4987012 ], + [ 8.7395731, 47.4986518 ], + [ 8.7397643, 47.4985956 ], + [ 8.7399509, 47.4985327 ], + [ 8.7401324, 47.4984632 ], + [ 8.7403083, 47.4983875 ], + [ 8.7404781, 47.4983055 ], + [ 8.7406414, 47.4982177 ], + [ 8.7407976, 47.4981242 ], + [ 8.7409464, 47.4980252 ], + [ 8.7410873, 47.4979212 ], + [ 8.74122, 47.4978123 ], + [ 8.7413442, 47.4976988 ], + [ 8.7414594, 47.497581 ], + [ 8.7415653, 47.4974594 ], + [ 8.7416617, 47.4973342 ], + [ 8.7417483, 47.4972057 ], + [ 8.7418248, 47.4970743 ], + [ 8.7418912, 47.4969404 ], + [ 8.741947, 47.4968043 ], + [ 8.7419923, 47.4966664 ], + [ 8.742026899999999, 47.4965271 ], + [ 8.7420507, 47.4963867 ], + [ 8.7420636, 47.4962458 ], + [ 8.7420656, 47.4961045 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "HGW0001", + "country" : "CHE", + "name" : [ + { + "text" : "Halbgefangenschaft Winterthur", + "lang" : "de-CH" + }, + { + "text" : "Halbgefangenschaft Winterthur", + "lang" : "fr-CH" + }, + { + "text" : "Halbgefangenschaft Winterthur", + "lang" : "it-CH" + }, + { + "text" : "Halbgefangenschaft Winterthur", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "de-CH" + }, + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "fr-CH" + }, + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "it-CH" + }, + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "de-CH" + }, + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "fr-CH" + }, + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "it-CH" + }, + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Reno Berner", + "lang" : "de-CH" + }, + { + "text" : "Reno Berner", + "lang" : "fr-CH" + }, + { + "text" : "Reno Berner", + "lang" : "it-CH" + }, + { + "text" : "Reno Berner", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.zh.ch/de/direktion-der-justiz-und-des-innern/justizvollzug-wiedereingliederung.html", + "email" : "sicherheit-juwe@ji.zh.ch", + "phone" : "0041432583400", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT12H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7498539, 47.3877876 ], + [ 7.7500915, 47.3877903 ], + [ 7.7503153000000005, 47.3877948 ], + [ 7.7505535, 47.3877984 ], + [ 7.7506803, 47.3881261 ], + [ 7.750694, 47.3884479 ], + [ 7.7507041, 47.3884882 ], + [ 7.7510033, 47.3885812 ], + [ 7.7513196, 47.3886891 ], + [ 7.7516312, 47.3888232 ], + [ 7.7514606, 47.3889673 ], + [ 7.7512183, 47.3891762 ], + [ 7.751603, 47.3894737 ], + [ 7.7518081, 47.3894866 ], + [ 7.7521185, 47.3895071 ], + [ 7.7525313, 47.3895211 ], + [ 7.7527075, 47.3895274 ], + [ 7.7529656, 47.3895367 ], + [ 7.7530909, 47.3895314 ], + [ 7.7533611, 47.3895231 ], + [ 7.7534896, 47.389518699999996 ], + [ 7.7537427, 47.3894943 ], + [ 7.7539901, 47.3894735 ], + [ 7.7544681, 47.3893516 ], + [ 7.7549624999999995, 47.3891669 ], + [ 7.7551691, 47.3889774 ], + [ 7.7552974, 47.3888605 ], + [ 7.7554869, 47.3886825 ], + [ 7.7556131, 47.3884742 ], + [ 7.7557373, 47.3882965 ], + [ 7.7557686, 47.3882555 ], + [ 7.7558836, 47.3881119 ], + [ 7.7559608, 47.388013 ], + [ 7.7561165, 47.3877651 ], + [ 7.7562552, 47.3875609 ], + [ 7.7559529, 47.3874179 ], + [ 7.7558638, 47.3872797 ], + [ 7.7557054, 47.3870561 ], + [ 7.7555406, 47.3868508 ], + [ 7.7552191, 47.3864571 ], + [ 7.7554237, 47.386198 ], + [ 7.755952, 47.386199 ], + [ 7.7562529, 47.3862011 ], + [ 7.7601473, 47.3851636 ], + [ 7.7618215, 47.3847745 ], + [ 7.7618766, 47.3847597 ], + [ 7.7619701, 47.3847295 ], + [ 7.7620343, 47.3847145 ], + [ 7.7621466, 47.3846662 ], + [ 7.7622477, 47.3846289 ], + [ 7.7623203, 47.3846068 ], + [ 7.7623978000000005, 47.3845909 ], + [ 7.7624919, 47.3845479 ], + [ 7.7626636, 47.384489 ], + [ 7.7629679, 47.3844054 ], + [ 7.7630656, 47.3843928 ], + [ 7.7631103, 47.3843841 ], + [ 7.7631745, 47.3843611 ], + [ 7.7632276000000005, 47.3843524 ], + [ 7.7632667, 47.3843532 ], + [ 7.7633296, 47.3843445 ], + [ 7.7634314, 47.3843052 ], + [ 7.7634677, 47.3842975 ], + [ 7.7635236, 47.3842841 ], + [ 7.7636324, 47.3842495 ], + [ 7.7641902, 47.3841259 ], + [ 7.7642464, 47.3841193 ], + [ 7.7642999, 47.3841009 ], + [ 7.7644449, 47.3840578 ], + [ 7.7656654, 47.3835716 ], + [ 7.7657028, 47.3835569 ], + [ 7.7657751, 47.3835349 ], + [ 7.7658728, 47.3835081 ], + [ 7.7660384, 47.383457 ], + [ 7.7667961, 47.3832508 ], + [ 7.7672421, 47.3831224 ], + [ 7.7674243, 47.3830546 ], + [ 7.7676282, 47.3829727 ], + [ 7.7679861, 47.382829 ], + [ 7.7684833, 47.3825672 ], + [ 7.7689764, 47.3823847 ], + [ 7.7692092, 47.3824607 ], + [ 7.7696397, 47.382134 ], + [ 7.7697543, 47.3820915 ], + [ 7.770045, 47.3819839 ], + [ 7.7705543, 47.3813316 ], + [ 7.7699852, 47.3813633 ], + [ 7.7693147, 47.381446 ], + [ 7.7686606, 47.3815759 ], + [ 7.7667029, 47.382018 ], + [ 7.7662559, 47.3821444 ], + [ 7.7656822, 47.3823501 ], + [ 7.7651430999999995, 47.3825954 ], + [ 7.7646448, 47.3828778 ], + [ 7.7643576, 47.3830058 ], + [ 7.7640756, 47.3832122 ], + [ 7.7640375, 47.3832678 ], + [ 7.7635777, 47.3834355 ], + [ 7.7634045, 47.3833969 ], + [ 7.7633536, 47.3833924 ], + [ 7.7632761, 47.3834044 ], + [ 7.7624385, 47.3836532 ], + [ 7.7619728, 47.38375 ], + [ 7.7615433, 47.3838087 ], + [ 7.7611278, 47.3838845 ], + [ 7.7609677, 47.3839326 ], + [ 7.760782, 47.3839879 ], + [ 7.7597596, 47.3843655 ], + [ 7.7596996, 47.3843984 ], + [ 7.7596705, 47.3844647 ], + [ 7.7588882, 47.384658 ], + [ 7.7588239, 47.3845862 ], + [ 7.7585999, 47.3846802 ], + [ 7.7582984, 47.384764 ], + [ 7.7579355, 47.3848207 ], + [ 7.7578546, 47.3848399 ], + [ 7.7577726, 47.3848738 ], + [ 7.7576852, 47.3849129 ], + [ 7.7576248, 47.3849409 ], + [ 7.7575880999999995, 47.3849479 ], + [ 7.7575487, 47.3849619 ], + [ 7.7575123999999995, 47.3849837 ], + [ 7.757405, 47.3850276 ], + [ 7.7573531, 47.3850598 ], + [ 7.7573035, 47.3850919 ], + [ 7.7572015, 47.385157 ], + [ 7.7571241, 47.3852038 ], + [ 7.7562586, 47.3854298 ], + [ 7.7558199, 47.3855018 ], + [ 7.755812, 47.3854297 ], + [ 7.755497, 47.3854188 ], + [ 7.7547743, 47.3855034 ], + [ 7.7543451, 47.385528 ], + [ 7.7540978, 47.3855627 ], + [ 7.7537769999999995, 47.3856683 ], + [ 7.7526262, 47.3859028 ], + [ 7.752269, 47.3859419 ], + [ 7.7513729, 47.3860172 ], + [ 7.7507049, 47.3861571 ], + [ 7.7502763, 47.386274 ], + [ 7.7502693, 47.3862759 ], + [ 7.7498292, 47.3867141 ], + [ 7.7498496, 47.386896899999996 ], + [ 7.7498646, 47.3870314 ], + [ 7.7498809, 47.387178 ], + [ 7.7499028, 47.3873794 ], + [ 7.7499164, 47.3875044 ], + [ 7.7499295, 47.3876239 ], + [ 7.7498539, 47.3877876 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns205", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Edlisberg - Meiersberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Edlisberg - Meiersberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Edlisberg - Meiersberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Edlisberg - Meiersberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.9073258, 47.4814729 ], + [ 7.9065609, 47.4815574 ], + [ 7.9065735, 47.4815896 ], + [ 7.9073473, 47.4815041 ], + [ 7.9080008, 47.481431 ], + [ 7.9080738, 47.4814425 ], + [ 7.9084739, 47.4813935 ], + [ 7.9089167, 47.4813394 ], + [ 7.9090897, 47.4813701 ], + [ 7.9090863, 47.4812934 ], + [ 7.9090516, 47.4812447 ], + [ 7.9090399, 47.4812865 ], + [ 7.9089082, 47.4813052 ], + [ 7.908732, 47.4812632 ], + [ 7.9087194, 47.4813309 ], + [ 7.9085025, 47.4813574 ], + [ 7.9082804, 47.4813855 ], + [ 7.9081885, 47.4813969 ], + [ 7.9081752, 47.481341 ], + [ 7.9081285999999995, 47.4813439 ], + [ 7.9081203, 47.4813839 ], + [ 7.9079894, 47.4813985 ], + [ 7.9073258, 47.4814729 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns280", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Z'Allenggraben", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Z'Allenggraben", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Z'Allenggraben", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Z'Allenggraben", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4757762, 47.4069758 ], + [ 7.4759578, 47.4069645 ], + [ 7.4761948, 47.4069658 ], + [ 7.4763636, 47.4069688 ], + [ 7.4765473, 47.4070174 ], + [ 7.4766952, 47.407055 ], + [ 7.4768009, 47.4070838 ], + [ 7.4768996, 47.4071034 ], + [ 7.4770168, 47.407079 ], + [ 7.4771266, 47.4070237 ], + [ 7.4771653, 47.4069842 ], + [ 7.477235, 47.4068116 ], + [ 7.4772377, 47.4067056 ], + [ 7.4771904, 47.4065908 ], + [ 7.4770553, 47.406443 ], + [ 7.4768237, 47.4062768 ], + [ 7.4766028, 47.406147 ], + [ 7.4763795, 47.4060503 ], + [ 7.4763445, 47.4060351 ], + [ 7.4763109, 47.4060206 ], + [ 7.4759756, 47.405933 ], + [ 7.4756143999999995, 47.4058674 ], + [ 7.4753479, 47.4058318 ], + [ 7.4747806, 47.4057505 ], + [ 7.474273, 47.4056821 ], + [ 7.4737492, 47.4056115 ], + [ 7.4732191, 47.4055329 ], + [ 7.4728204, 47.4054691 ], + [ 7.472783, 47.4054649 ], + [ 7.4727101, 47.4054468 ], + [ 7.4723575, 47.4055227 ], + [ 7.4717621, 47.4056313 ], + [ 7.4711231, 47.4057991 ], + [ 7.4706584, 47.4059176 ], + [ 7.4701646, 47.4060261 ], + [ 7.4698742, 47.406115 ], + [ 7.469424, 47.4062433 ], + [ 7.4686543, 47.4064308 ], + [ 7.4677394, 47.4065888 ], + [ 7.4666211, 47.4067567 ], + [ 7.4662458, 47.406795 ], + [ 7.4672466, 47.4078402 ], + [ 7.4690824, 47.4087844 ], + [ 7.4695289, 47.4084261 ], + [ 7.4697862, 47.4082544 ], + [ 7.4700025, 47.4081305 ], + [ 7.4704149, 47.4079869 ], + [ 7.4707484, 47.4078831 ], + [ 7.4714072, 47.4077018 ], + [ 7.4718202, 47.4076149 ], + [ 7.4721512, 47.4075413 ], + [ 7.4726403999999995, 47.4074341 ], + [ 7.4731758, 47.4073377 ], + [ 7.473553, 47.4072685 ], + [ 7.4737173, 47.4072454 ], + [ 7.4740788, 47.4071992 ], + [ 7.474589, 47.4071263 ], + [ 7.475104, 47.4070579 ], + [ 7.4755022, 47.4070071 ], + [ 7.4757762, 47.4069758 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr019", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Gmür", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Gmür", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Gmür", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Gmür", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8813822, 47.4233833 ], + [ 7.881384, 47.4233624 ], + [ 7.8811117, 47.4233702 ], + [ 7.8808264999999995, 47.4233743 ], + [ 7.8806772, 47.4234278 ], + [ 7.8805926, 47.4233577 ], + [ 7.8807837, 47.4233045 ], + [ 7.8808394, 47.4232599 ], + [ 7.8810232, 47.4232104 ], + [ 7.8811412999999995, 47.4231758 ], + [ 7.8812009, 47.4230868 ], + [ 7.8811733, 47.422953 ], + [ 7.8811239, 47.4229482 ], + [ 7.881102, 47.4230865 ], + [ 7.8808876, 47.4231122 ], + [ 7.8806529, 47.4231566 ], + [ 7.8804663, 47.4232201 ], + [ 7.8802974, 47.4232945 ], + [ 7.8801587, 47.4233846 ], + [ 7.8800471, 47.4234766 ], + [ 7.8799334, 47.4235073 ], + [ 7.8797429, 47.4235558 ], + [ 7.8795474, 47.4236241 ], + [ 7.879376, 47.4236952 ], + [ 7.8792518, 47.4237624 ], + [ 7.8790728, 47.4238781 ], + [ 7.8790548, 47.4238719 ], + [ 7.878996, 47.4238304 ], + [ 7.8787744, 47.4236395 ], + [ 7.8788789, 47.4235496 ], + [ 7.8787774, 47.4235022 ], + [ 7.8786373, 47.4234356 ], + [ 7.8786197, 47.4234272 ], + [ 7.8785127, 47.4235483 ], + [ 7.8784647, 47.4236548 ], + [ 7.8784463, 47.423801 ], + [ 7.8784278, 47.423934 ], + [ 7.8783598999999995, 47.424014 ], + [ 7.8782041, 47.4241143 ], + [ 7.8780293, 47.424281 ], + [ 7.8779518, 47.4243877 ], + [ 7.8778745, 47.4245142 ], + [ 7.8777676, 47.4246076 ], + [ 7.877592, 47.4246814 ], + [ 7.8774263, 47.4247751 ], + [ 7.8772017, 47.424849 ], + [ 7.8769477, 47.4249164 ], + [ 7.8767814, 47.4249436 ], + [ 7.8764191, 47.4249383 ], + [ 7.8763017, 47.4249521 ], + [ 7.8762042, 47.424999 ], + [ 7.8759898, 47.4251127 ], + [ 7.8757949, 47.4252264 ], + [ 7.8755907, 47.4254066 ], + [ 7.8752897, 47.4257068 ], + [ 7.875193, 47.42586 ], + [ 7.8753114, 47.4259658 ], + [ 7.8755278, 47.4260846 ], + [ 7.8757634, 47.4261635 ], + [ 7.8760386, 47.4262887 ], + [ 7.8763722, 47.4263738 ], + [ 7.8768526, 47.4264517 ], + [ 7.8772345999999995, 47.4264569 ], + [ 7.8776263, 47.4264687 ], + [ 7.8779295, 47.4264211 ], + [ 7.8781303, 47.4263485 ], + [ 7.8785627, 47.4261923 ], + [ 7.8792864, 47.4259308 ], + [ 7.8793343, 47.4258044 ], + [ 7.8794505, 47.4256511 ], + [ 7.8795768, 47.425531 ], + [ 7.8796545, 47.4254443 ], + [ 7.8797321, 47.4253577 ], + [ 7.8798192, 47.4252377 ], + [ 7.8799352, 47.4250579 ], + [ 7.8800219, 47.4248914 ], + [ 7.8800997, 47.424818 ], + [ 7.8803526, 47.4246177 ], + [ 7.880771, 47.4243105 ], + [ 7.8809363999999995, 47.4241769 ], + [ 7.8811022, 47.4241098 ], + [ 7.8812981, 47.4241091 ], + [ 7.8814686, 47.4240674 ], + [ 7.8813822, 47.4233833 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr032", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Stierengraben", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Stierengraben", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Stierengraben", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Stierengraben", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.1360555, 46.2841049 ], + [ 6.1360809, 46.2840996 ], + [ 6.1361892, 46.2841224 ], + [ 6.1374071, 46.2841058 ], + [ 6.1385579, 46.2838291 ], + [ 6.1386057, 46.2838114 ], + [ 6.1397794, 46.2831435 ], + [ 6.1404952, 46.282215 ], + [ 6.1406442, 46.2811673 ], + [ 6.1402035999999995, 46.2801598 ], + [ 6.1401597, 46.2801028 ], + [ 6.1394248, 46.2794294 ], + [ 6.1384257, 46.2789464 ], + [ 6.1372602, 46.2787012 ], + [ 6.1368103, 46.2787073 ], + [ 6.1357859, 46.2785306 ], + [ 6.1355255, 46.2785445 ], + [ 6.1354141, 46.2785297 ], + [ 6.1351722, 46.2785634 ], + [ 6.1345456, 46.278597 ], + [ 6.1341914, 46.2787003 ], + [ 6.1339415, 46.2787351 ], + [ 6.1339307, 46.2787401 ], + [ 6.1339113, 46.2787458 ], + [ 6.1339129, 46.2787483 ], + [ 6.1337175, 46.2788384 ], + [ 6.1333988999999995, 46.278931299999996 ], + [ 6.1330282, 46.2791563 ], + [ 6.1326908, 46.2793119 ], + [ 6.1325726, 46.2794328 ], + [ 6.1324628, 46.2794994 ], + [ 6.1321735, 46.2798412 ], + [ 6.1318481, 46.280174099999996 ], + [ 6.1318264, 46.2802097 ], + [ 6.1317801, 46.2802853 ], + [ 6.1314854, 46.2811058 ], + [ 6.1315714, 46.2819492 ], + [ 6.1320296, 46.2827328 ], + [ 6.132815, 46.2833797 ], + [ 6.1333238, 46.283599 ], + [ 6.1333462, 46.2836139 ], + [ 6.1334008, 46.2836322 ], + [ 6.1338507, 46.2838262 ], + [ 6.133862, 46.2838295 ], + [ 6.1338621, 46.2838295 ], + [ 6.1339331, 46.2838503 ], + [ 6.1341388, 46.2838797 ], + [ 6.1344436, 46.2839819 ], + [ 6.1344779, 46.2839891 ], + [ 6.1344781, 46.2839891 ], + [ 6.1344803, 46.2839896 ], + [ 6.1344815, 46.2839898 ], + [ 6.134487, 46.283991 ], + [ 6.1345066, 46.2839951 ], + [ 6.1345083, 46.2839954 ], + [ 6.1345098, 46.2839957 ], + [ 6.1345446, 46.284003 ], + [ 6.1354111, 46.2840615 ], + [ 6.1354163, 46.2840622 ], + [ 6.1354182, 46.284062 ], + [ 6.1360555, 46.2841049 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-38", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8962456, 47.4418655 ], + [ 7.8963304999999995, 47.4418594 ], + [ 7.8966554, 47.4418963 ], + [ 7.8969772, 47.4419144 ], + [ 7.8973199, 47.4419423 ], + [ 7.8976463, 47.4419245 ], + [ 7.8979576, 47.4419472 ], + [ 7.8981770000000004, 47.4419342 ], + [ 7.8987229, 47.4420076 ], + [ 7.8989815, 47.441974 ], + [ 7.8991812, 47.442027 ], + [ 7.8994495, 47.4420684 ], + [ 7.899781, 47.4420754 ], + [ 7.9002574, 47.4421578 ], + [ 7.900668, 47.4421637 ], + [ 7.9009713, 47.4422412 ], + [ 7.9013238999999995, 47.4422762 ], + [ 7.9016756, 47.4423456 ], + [ 7.9020798, 47.4424507 ], + [ 7.9023083, 47.442535 ], + [ 7.9024857, 47.4425605 ], + [ 7.9027213, 47.4426842 ], + [ 7.9032745, 47.4429543 ], + [ 7.9035491, 47.4430932 ], + [ 7.9037817, 47.4432276 ], + [ 7.9040558999999995, 47.443246 ], + [ 7.9043041, 47.4432626 ], + [ 7.9044411, 47.4433459 ], + [ 7.904665, 47.443315 ], + [ 7.9045945, 47.4432013 ], + [ 7.9043648, 47.4432334 ], + [ 7.9037124, 47.4430166 ], + [ 7.9035599, 47.4428346 ], + [ 7.9035185, 47.442818 ], + [ 7.9032888, 47.4427239 ], + [ 7.9030603, 47.442579 ], + [ 7.9027921, 47.4423435 ], + [ 7.9026091, 47.4422993 ], + [ 7.902061, 47.442166 ], + [ 7.9020245, 47.4421537 ], + [ 7.9015617, 47.4419926 ], + [ 7.9010899, 47.4418293 ], + [ 7.9010602, 47.4417393 ], + [ 7.9005301, 47.4416833 ], + [ 7.8998653, 47.4416905 ], + [ 7.8996040999999995, 47.4415586 ], + [ 7.8989374, 47.4414129 ], + [ 7.8988479, 47.4412582 ], + [ 7.8975297, 47.4413545 ], + [ 7.8973385, 47.4412729 ], + [ 7.8973337, 47.4412511 ], + [ 7.8967944, 47.4413375 ], + [ 7.8965676, 47.4413777 ], + [ 7.8965374, 47.441383 ], + [ 7.8963158, 47.4414679 ], + [ 7.8962843, 47.4416623 ], + [ 7.8962509, 47.4418378 ], + [ 7.8962456, 47.4418655 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns052", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Eital - Summerholden", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Eital - Summerholden", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Eital - Summerholden", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Eital - Summerholden", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.2359646, 47.5560172 ], + [ 8.235957, 47.555876 ], + [ 8.2359385, 47.5557353 ], + [ 8.2359092, 47.5555955 ], + [ 8.2358691, 47.5554568 ], + [ 8.2358183, 47.5553198 ], + [ 8.235757, 47.5551848 ], + [ 8.2356854, 47.5550521 ], + [ 8.2356036, 47.5549222 ], + [ 8.2355118, 47.5547953 ], + [ 8.2354104, 47.5546719 ], + [ 8.2352996, 47.5545522 ], + [ 8.2351796, 47.5544366 ], + [ 8.2350509, 47.5543254 ], + [ 8.2349138, 47.5542189 ], + [ 8.2347687, 47.5541174 ], + [ 8.2346158, 47.5540212 ], + [ 8.2344558, 47.5539306 ], + [ 8.234289, 47.5538457 ], + [ 8.2341158, 47.5537669 ], + [ 8.2339368, 47.5536943 ], + [ 8.2337525, 47.5536282 ], + [ 8.2335632, 47.5535687 ], + [ 8.2333696, 47.5535159 ], + [ 8.2331723, 47.5534701 ], + [ 8.2329716, 47.5534314 ], + [ 8.2327682, 47.5533998 ], + [ 8.2325627, 47.5533755 ], + [ 8.2323556, 47.5533585 ], + [ 8.2321474, 47.5533488 ], + [ 8.2319388, 47.5533465 ], + [ 8.2317302, 47.5533517 ], + [ 8.2315224, 47.5533642 ], + [ 8.2313158, 47.553384 ], + [ 8.231111, 47.5534112 ], + [ 8.2309086, 47.5534455 ], + [ 8.2307092, 47.553487 ], + [ 8.2305132, 47.5535355 ], + [ 8.2303212, 47.5535909 ], + [ 8.2301338, 47.553653 ], + [ 8.2299515, 47.5537216 ], + [ 8.2297747, 47.5537966 ], + [ 8.2296039, 47.5538778 ], + [ 8.2294396, 47.5539649 ], + [ 8.2292824, 47.5540577 ], + [ 8.2291324, 47.554156 ], + [ 8.2289903, 47.5542594 ], + [ 8.2288564, 47.5543678 ], + [ 8.2287311, 47.5544807 ], + [ 8.2286146, 47.5545979 ], + [ 8.2285074, 47.5547191 ], + [ 8.2284097, 47.5548439 ], + [ 8.2283217, 47.554972 ], + [ 8.2282438, 47.555103 ], + [ 8.2281762, 47.5552367 ], + [ 8.2281189, 47.5553725 ], + [ 8.2280722, 47.5555102 ], + [ 8.2280363, 47.5556493 ], + [ 8.2280111, 47.5557895 ], + [ 8.2279968, 47.5559305 ], + [ 8.2279935, 47.5560717 ], + [ 8.228001, 47.5562129 ], + [ 8.2280195, 47.5563536 ], + [ 8.2280488, 47.5564934 ], + [ 8.2280889, 47.5566321 ], + [ 8.2281397, 47.5567691 ], + [ 8.2282009, 47.5569041 ], + [ 8.2282726, 47.5570368 ], + [ 8.2283544, 47.5571667 ], + [ 8.2284461, 47.5572936 ], + [ 8.2285475, 47.5574171 ], + [ 8.2286583, 47.5575368 ], + [ 8.2287782, 47.5576524 ], + [ 8.2289069, 47.5577635 ], + [ 8.2290441, 47.55787 ], + [ 8.2291892, 47.5579715 ], + [ 8.229342, 47.5580677 ], + [ 8.2295021, 47.558158399999996 ], + [ 8.2296689, 47.5582432 ], + [ 8.229842, 47.5583221 ], + [ 8.2300211, 47.5583946 ], + [ 8.2302054, 47.5584608 ], + [ 8.2303947, 47.5585203 ], + [ 8.2305883, 47.558573 ], + [ 8.2307857, 47.5586189 ], + [ 8.2309864, 47.5586576 ], + [ 8.2311898, 47.5586892 ], + [ 8.2313953, 47.5587135 ], + [ 8.2316025, 47.5587306 ], + [ 8.2318107, 47.5587402 ], + [ 8.2320193, 47.5587425 ], + [ 8.2322279, 47.5587374 ], + [ 8.2324357, 47.5587249 ], + [ 8.2326423, 47.558705 ], + [ 8.2328471, 47.5586779 ], + [ 8.2330495, 47.5586435 ], + [ 8.233249, 47.558602 ], + [ 8.233445, 47.5585535 ], + [ 8.233637, 47.5584981 ], + [ 8.2338244, 47.558436 ], + [ 8.2340068, 47.5583674 ], + [ 8.2341836, 47.5582923 ], + [ 8.2343544, 47.5582112 ], + [ 8.2345186, 47.558124 ], + [ 8.2346759, 47.5580312 ], + [ 8.2348258, 47.5579329 ], + [ 8.2349679, 47.5578295 ], + [ 8.2351018, 47.5577212 ], + [ 8.2352272, 47.5576082 ], + [ 8.2353436, 47.557491 ], + [ 8.2354509, 47.557369800000004 ], + [ 8.2355486, 47.557245 ], + [ 8.2356365, 47.5571169 ], + [ 8.235714399999999, 47.5569859 ], + [ 8.235782, 47.5568522 ], + [ 8.2358393, 47.5567164 ], + [ 8.2358859, 47.5565787 ], + [ 8.2359219, 47.5564396 ], + [ 8.235947, 47.5562993 ], + [ 8.2359612, 47.5561584 ], + [ 8.2359646, 47.5560172 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0013", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Beznau", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Beznau", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Beznau", + "lang" : "it-CH" + }, + { + "text" : "Substation Beznau", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6302974, 47.492979 ], + [ 7.6302071, 47.4927945 ], + [ 7.6302015999999995, 47.4927414 ], + [ 7.630117, 47.4927742 ], + [ 7.6300647, 47.4927786 ], + [ 7.6298431, 47.4928034 ], + [ 7.6293336, 47.4927992 ], + [ 7.6288277, 47.4927536 ], + [ 7.628591, 47.4927364 ], + [ 7.628319, 47.4928397 ], + [ 7.6281674, 47.492796 ], + [ 7.6280263, 47.4926907 ], + [ 7.6278496, 47.492579 ], + [ 7.6277929, 47.4926397 ], + [ 7.6275425, 47.4929212 ], + [ 7.6272881, 47.4932085 ], + [ 7.6271957, 47.4933138 ], + [ 7.6271614, 47.4933494 ], + [ 7.6266836, 47.4938867 ], + [ 7.6265307, 47.4941313 ], + [ 7.6264126999999995, 47.4943915 ], + [ 7.6263631, 47.4946454 ], + [ 7.6263377, 47.4947749 ], + [ 7.6263261, 47.4948343 ], + [ 7.6263091, 47.4949208 ], + [ 7.6262988, 47.4949734 ], + [ 7.6262922, 47.4950071 ], + [ 7.6262611, 47.4951659 ], + [ 7.6262606, 47.4951806 ], + [ 7.6262598, 47.4952048 ], + [ 7.6262441, 47.4956832 ], + [ 7.6262528, 47.4957717 ], + [ 7.6262737, 47.4958616 ], + [ 7.6264006, 47.4962566 ], + [ 7.6264344, 47.496446399999996 ], + [ 7.6264427, 47.4965372 ], + [ 7.626429, 47.4966457 ], + [ 7.6264243, 47.4967466 ], + [ 7.6264309, 47.4968012 ], + [ 7.62645, 47.4968525 ], + [ 7.6265947, 47.4971115 ], + [ 7.6268671999999995, 47.4976375 ], + [ 7.6268961, 47.4977239 ], + [ 7.6269355999999995, 47.497864 ], + [ 7.6269646, 47.4979252 ], + [ 7.6269638, 47.4979738 ], + [ 7.6269808999999995, 47.4980412 ], + [ 7.626983, 47.4980495 ], + [ 7.62701, 47.4981563 ], + [ 7.6270894, 47.498649 ], + [ 7.6272843, 47.4986734 ], + [ 7.627528, 47.4987062 ], + [ 7.6277342, 47.4987361 ], + [ 7.6279397, 47.4987685 ], + [ 7.6280649, 47.4987895 ], + [ 7.6281738, 47.4988072 ], + [ 7.6282861, 47.4987823 ], + [ 7.6283608, 47.4988117 ], + [ 7.6283961, 47.4987904 ], + [ 7.6285943, 47.4987467 ], + [ 7.6286234, 47.4987735 ], + [ 7.6291459, 47.4992667 ], + [ 7.6294524, 47.499283 ], + [ 7.6296173, 47.4993173 ], + [ 7.6296586, 47.4993258 ], + [ 7.6296118, 47.4993686 ], + [ 7.6293115, 47.4996561 ], + [ 7.6291163, 47.499856199999996 ], + [ 7.6291622, 47.4999167 ], + [ 7.62933, 47.4998679 ], + [ 7.6295708, 47.4999942 ], + [ 7.6295648, 47.5000908 ], + [ 7.6295755, 47.5001798 ], + [ 7.6294831, 47.5002768 ], + [ 7.6297895, 47.5003632 ], + [ 7.6297195, 47.5005069 ], + [ 7.6297356, 47.5005105 ], + [ 7.6297683, 47.5005179 ], + [ 7.6296811, 47.5006944 ], + [ 7.6295795, 47.5009085 ], + [ 7.6295117999999995, 47.5010602 ], + [ 7.6294755, 47.5011378 ], + [ 7.6294415, 47.5011993 ], + [ 7.6294126, 47.5012432 ], + [ 7.6293744, 47.5012938 ], + [ 7.6293328, 47.5013434 ], + [ 7.6292501, 47.5014308 ], + [ 7.6291196, 47.5015501 ], + [ 7.6290522, 47.501625 ], + [ 7.6289817, 47.5017175 ], + [ 7.6289049, 47.5018003 ], + [ 7.6288519, 47.501842 ], + [ 7.6288812, 47.5018672 ], + [ 7.6286311, 47.5021012 ], + [ 7.6286898, 47.5022165 ], + [ 7.6294772, 47.5020262 ], + [ 7.6303899, 47.5018054 ], + [ 7.6310059, 47.501689 ], + [ 7.6315546, 47.5015847 ], + [ 7.631974, 47.5018273 ], + [ 7.6321806, 47.5016284 ], + [ 7.6325973, 47.5012357 ], + [ 7.6331696, 47.5009876 ], + [ 7.6333328, 47.5009439 ], + [ 7.6334754, 47.5008809 ], + [ 7.6336344, 47.5008996 ], + [ 7.6340343, 47.5008615 ], + [ 7.6351214, 47.5007857 ], + [ 7.6355123, 47.5007253 ], + [ 7.6363475, 47.5006604 ], + [ 7.6368862, 47.5007133 ], + [ 7.6371766999999995, 47.5007651 ], + [ 7.6375199, 47.5008407 ], + [ 7.6378317, 47.5009292 ], + [ 7.6381159, 47.5010359 ], + [ 7.6384007, 47.5011691 ], + [ 7.6386655999999995, 47.5011856 ], + [ 7.6391637, 47.5011536 ], + [ 7.6394252, 47.5012282 ], + [ 7.6396458, 47.5013137 ], + [ 7.6397585, 47.501385 ], + [ 7.6401864, 47.5017127 ], + [ 7.6403626, 47.5018669 ], + [ 7.6404854, 47.5020492 ], + [ 7.6406843, 47.5024435 ], + [ 7.6407008, 47.5024761 ], + [ 7.6407274, 47.5024603 ], + [ 7.6415641999999995, 47.5019652 ], + [ 7.6421648, 47.5016016 ], + [ 7.6422035, 47.5015782 ], + [ 7.642214, 47.5015302 ], + [ 7.6422388, 47.5014168 ], + [ 7.6423448, 47.5012794 ], + [ 7.6425621, 47.5011459 ], + [ 7.6427033, 47.501019 ], + [ 7.6428016, 47.5008902 ], + [ 7.6428662, 47.5006662 ], + [ 7.6427001, 47.5001471 ], + [ 7.6424541999999995, 47.4996846 ], + [ 7.6423536, 47.4995533 ], + [ 7.642198, 47.499431 ], + [ 7.6420383, 47.4993685 ], + [ 7.6414957999999995, 47.4992305 ], + [ 7.6408264, 47.4989978 ], + [ 7.6401392999999995, 47.4987275 ], + [ 7.6397345, 47.4984686 ], + [ 7.6394783, 47.4983578 ], + [ 7.6385278, 47.4980218 ], + [ 7.6383493, 47.4979901 ], + [ 7.6379033, 47.4979617 ], + [ 7.63756, 47.4979532 ], + [ 7.63736, 47.497952 ], + [ 7.6369578, 47.4980142 ], + [ 7.6364611, 47.4979675 ], + [ 7.6358969, 47.497897 ], + [ 7.6352996, 47.4977714 ], + [ 7.6351065, 47.4976669 ], + [ 7.6347358, 47.4973106 ], + [ 7.6344951, 47.4970095 ], + [ 7.6342928, 47.4968492 ], + [ 7.6340806, 47.4967158 ], + [ 7.633765, 47.4965464 ], + [ 7.6335206, 47.4964746 ], + [ 7.6329603, 47.4963714 ], + [ 7.6325734, 47.4963447 ], + [ 7.6320368, 47.4963437 ], + [ 7.6318841, 47.4963268 ], + [ 7.6312416, 47.4961146 ], + [ 7.6310581, 47.4960359 ], + [ 7.6309258, 47.4959252 ], + [ 7.6308298, 47.4957793 ], + [ 7.6307181, 47.4954596 ], + [ 7.6307325, 47.495120299999996 ], + [ 7.6306488, 47.4946968 ], + [ 7.6306264, 47.4943879 ], + [ 7.6306433, 47.494081 ], + [ 7.6306321, 47.494004 ], + [ 7.6306202, 47.4939213 ], + [ 7.6305596, 47.4937405 ], + [ 7.6305233999999995, 47.493593 ], + [ 7.63046, 47.4934134 ], + [ 7.6303312, 47.493048 ], + [ 7.6302974, 47.492979 ] + ], + [ + [ 7.6289866, 47.4966913 ], + [ 7.6289837, 47.4966914 ], + [ 7.6289809, 47.4966909 ], + [ 7.6289784, 47.4966899 ], + [ 7.6289764, 47.4966885 ], + [ 7.6289751, 47.4966868 ], + [ 7.6289735, 47.4966846 ], + [ 7.6289714, 47.4966825 ], + [ 7.6289689, 47.4966807 ], + [ 7.628966, 47.4966791 ], + [ 7.6289629, 47.4966778 ], + [ 7.6289602, 47.4966772 ], + [ 7.6289579, 47.4966761 ], + [ 7.6289561, 47.4966747 ], + [ 7.6289549, 47.4966729 ], + [ 7.6289544, 47.4966711 ], + [ 7.6289546, 47.4966692 ], + [ 7.6289556, 47.4966674 ], + [ 7.6289563000000005, 47.4966662 ], + [ 7.6289568, 47.496665 ], + [ 7.6289572, 47.4966637 ], + [ 7.6289574, 47.4966624 ], + [ 7.6289571, 47.4966606 ], + [ 7.6289576, 47.4966588 ], + [ 7.6289589, 47.4966572 ], + [ 7.6289609, 47.4966559 ], + [ 7.6289633, 47.496655 ], + [ 7.628966, 47.4966547 ], + [ 7.6289687, 47.4966549 ], + [ 7.6289705, 47.4966558 ], + [ 7.6289727, 47.4966563 ], + [ 7.628975, 47.4966562 ], + [ 7.6289771, 47.4966557 ], + [ 7.6289789, 47.4966547 ], + [ 7.6289802, 47.4966534 ], + [ 7.6289808, 47.4966519 ], + [ 7.6289809, 47.4966495 ], + [ 7.6289807, 47.4966471 ], + [ 7.6289802, 47.4966447 ], + [ 7.6289795, 47.4966424 ], + [ 7.6289784, 47.4966407 ], + [ 7.6289779, 47.4966389 ], + [ 7.6289779, 47.4966371 ], + [ 7.6289786, 47.4966353 ], + [ 7.6289792, 47.4966331 ], + [ 7.6289791000000005, 47.4966309 ], + [ 7.6289782, 47.4966288 ], + [ 7.6289768, 47.4966269 ], + [ 7.6289767, 47.4966252 ], + [ 7.6289772, 47.4966237 ], + [ 7.6289781, 47.4966222 ], + [ 7.6289795, 47.4966209 ], + [ 7.6289797, 47.4966182 ], + [ 7.6289797, 47.4966156 ], + [ 7.6289795, 47.496612999999996 ], + [ 7.6289791000000005, 47.49661 ], + [ 7.6289786, 47.4966085 ], + [ 7.6289782, 47.496607 ], + [ 7.628978, 47.4966055 ], + [ 7.6289779, 47.496604 ], + [ 7.6289782, 47.4966024 ], + [ 7.6289793, 47.4966009 ], + [ 7.628981, 47.4965998 ], + [ 7.6289832, 47.496599 ], + [ 7.6289856, 47.4965988 ], + [ 7.628988, 47.4965991 ], + [ 7.6289901, 47.4965999 ], + [ 7.6289918, 47.496601 ], + [ 7.6290009, 47.4966035 ], + [ 7.6290102, 47.4966058 ], + [ 7.6290195, 47.4966079 ], + [ 7.6290288, 47.49661 ], + [ 7.6290349, 47.4966106 ], + [ 7.6290407, 47.4966116 ], + [ 7.6290465, 47.496612999999996 ], + [ 7.629052, 47.4966148 ], + [ 7.6290595, 47.4966157 ], + [ 7.6290672, 47.4966162 ], + [ 7.6290748, 47.4966162 ], + [ 7.6290825, 47.4966159 ], + [ 7.62909, 47.4966151 ], + [ 7.6290975, 47.496614 ], + [ 7.6291002, 47.4966135 ], + [ 7.6291029, 47.4966132 ], + [ 7.6291057, 47.4966131 ], + [ 7.6291084, 47.4966132 ], + [ 7.6291174, 47.4966139 ], + [ 7.6291264, 47.4966143 ], + [ 7.6291354, 47.4966143 ], + [ 7.6291443999999995, 47.4966139 ], + [ 7.6291534, 47.4966131 ], + [ 7.6291583, 47.4966123 ], + [ 7.6291633, 47.496612 ], + [ 7.6291683, 47.4966121 ], + [ 7.6291733, 47.4966127 ], + [ 7.6291781, 47.4966138 ], + [ 7.6291826, 47.4966153 ], + [ 7.6291855, 47.4966182 ], + [ 7.629189, 47.4966209 ], + [ 7.629193, 47.4966231 ], + [ 7.6291974, 47.496625 ], + [ 7.6292021, 47.4966264 ], + [ 7.6292071, 47.4966273 ], + [ 7.6292098, 47.496628 ], + [ 7.6292123, 47.4966289 ], + [ 7.6292147, 47.49663 ], + [ 7.6292169, 47.4966312 ], + [ 7.6292166, 47.4966338 ], + [ 7.6292157, 47.4966362 ], + [ 7.6292142, 47.4966385 ], + [ 7.629212, 47.4966406 ], + [ 7.6292073, 47.4966454 ], + [ 7.6292033, 47.4966505 ], + [ 7.6291999, 47.4966559 ], + [ 7.6291972, 47.4966614 ], + [ 7.6291955, 47.4966666 ], + [ 7.6291931, 47.4966718 ], + [ 7.6291902, 47.4966768 ], + [ 7.6291868, 47.4966816 ], + [ 7.6291828, 47.4966863 ], + [ 7.6291812, 47.4966881 ], + [ 7.6291799000000005, 47.49669 ], + [ 7.6291789, 47.496692 ], + [ 7.6291782, 47.4966941 ], + [ 7.629178, 47.496696 ], + [ 7.6291776, 47.4966979 ], + [ 7.6291771, 47.4966998 ], + [ 7.6291756, 47.4967043 ], + [ 7.6291735, 47.4967087 ], + [ 7.6291708, 47.4967129 ], + [ 7.6291677, 47.496717 ], + [ 7.6291662, 47.4967191 ], + [ 7.6291649, 47.4967213 ], + [ 7.6291637, 47.4967235 ], + [ 7.6291626, 47.4967258 ], + [ 7.629161, 47.4967322 ], + [ 7.6291587, 47.4967385 ], + [ 7.6291556, 47.4967447 ], + [ 7.6291519, 47.4967507 ], + [ 7.6291475, 47.4967565 ], + [ 7.6291448, 47.4967599 ], + [ 7.6291418, 47.4967632 ], + [ 7.6291386, 47.4967664 ], + [ 7.6291351, 47.4967694 ], + [ 7.6291346, 47.4967699 ], + [ 7.6291341, 47.4967704 ], + [ 7.6291336, 47.4967708 ], + [ 7.6291321, 47.4967724 ], + [ 7.6291308, 47.4967739 ], + [ 7.6291295, 47.4967756 ], + [ 7.6291285, 47.4967773 ], + [ 7.6291262, 47.4967799 ], + [ 7.6291235, 47.4967824 ], + [ 7.6291204, 47.4967846 ], + [ 7.6291169, 47.4967865 ], + [ 7.629113, 47.4967881 ], + [ 7.6291087, 47.4967894 ], + [ 7.6291048, 47.4967912 ], + [ 7.6291015, 47.4967934 ], + [ 7.6290987999999995, 47.4967961 ], + [ 7.6290969, 47.496799 ], + [ 7.6290958, 47.496802 ], + [ 7.6290955, 47.4968052 ], + [ 7.6290961, 47.4968084 ], + [ 7.6290959, 47.4968107 ], + [ 7.6290953, 47.496813 ], + [ 7.6290942, 47.4968152 ], + [ 7.6290927, 47.4968173 ], + [ 7.6290894, 47.4968195 ], + [ 7.6290857, 47.4968213 ], + [ 7.6290816, 47.4968227 ], + [ 7.6290772, 47.4968237 ], + [ 7.6290727, 47.4968243 ], + [ 7.6290610999999995, 47.4968262 ], + [ 7.6290496999999995, 47.4968285 ], + [ 7.6290385, 47.4968313 ], + [ 7.6290275, 47.4968346 ], + [ 7.6290169, 47.4968383 ], + [ 7.6290097, 47.4968423 ], + [ 7.6290022, 47.496846 ], + [ 7.6289942, 47.4968492 ], + [ 7.6289858, 47.496852 ], + [ 7.6289772, 47.4968544 ], + [ 7.6289683, 47.4968564 ], + [ 7.6289593, 47.4968578 ], + [ 7.6289526, 47.4968585 ], + [ 7.6289459, 47.4968595 ], + [ 7.6289394, 47.4968608 ], + [ 7.628933, 47.4968624 ], + [ 7.6289315, 47.4968624 ], + [ 7.6289301, 47.4968619 ], + [ 7.6289291, 47.4968611 ], + [ 7.6289288, 47.4968601 ], + [ 7.6289276, 47.4968522 ], + [ 7.6289256, 47.4968443 ], + [ 7.6289229, 47.4968366 ], + [ 7.6289195, 47.496829 ], + [ 7.6289154, 47.4968216 ], + [ 7.6289128999999996, 47.4968181 ], + [ 7.628911, 47.4968144 ], + [ 7.6289095, 47.4968106 ], + [ 7.6289085, 47.4968068 ], + [ 7.6289081, 47.4968029 ], + [ 7.6289071, 47.4967997 ], + [ 7.628906, 47.4967966 ], + [ 7.6289046, 47.4967936 ], + [ 7.6289032, 47.4967905 ], + [ 7.6289024, 47.4967889 ], + [ 7.6289011, 47.4967827 ], + [ 7.6289013, 47.4967802 ], + [ 7.6289017999999995, 47.4967778 ], + [ 7.6289028, 47.4967755 ], + [ 7.6289041, 47.4967733 ], + [ 7.6289069, 47.4967684 ], + [ 7.6289103, 47.4967638 ], + [ 7.6289143, 47.4967595 ], + [ 7.6289189, 47.4967553 ], + [ 7.628924, 47.4967515 ], + [ 7.6289256, 47.4967505 ], + [ 7.6289273, 47.4967495 ], + [ 7.628929, 47.4967485 ], + [ 7.6289409, 47.4967418 ], + [ 7.628943, 47.4967407 ], + [ 7.628945, 47.4967396 ], + [ 7.6289470999999995, 47.4967386 ], + [ 7.6289502, 47.4967359 ], + [ 7.6289529, 47.4967331 ], + [ 7.6289551, 47.49673 ], + [ 7.6289568, 47.4967268 ], + [ 7.6289578, 47.4967231 ], + [ 7.6289596, 47.4967195 ], + [ 7.628962, 47.4967161 ], + [ 7.6289652, 47.496713 ], + [ 7.6289689, 47.4967102 ], + [ 7.6289732, 47.4967077 ], + [ 7.628978, 47.4967057 ], + [ 7.6289831, 47.4967042 ], + [ 7.6289974, 47.4966996 ], + [ 7.6289955, 47.4966971 ], + [ 7.628993, 47.4966948 ], + [ 7.62899, 47.4966929 ], + [ 7.6289866, 47.4966913 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns235", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Ermitage - Chilchholz", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Ermitage - Chilchholz", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Ermitage - Chilchholz", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Ermitage - Chilchholz", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8105197, 47.4082562 ], + [ 7.810755, 47.4083437 ], + [ 7.8111437, 47.408176 ], + [ 7.8108595, 47.407933 ], + [ 7.810763, 47.4078504 ], + [ 7.8106846999999995, 47.4077834 ], + [ 7.8106421, 47.407747 ], + [ 7.810594, 47.4077003 ], + [ 7.810563, 47.4076615 ], + [ 7.8105378, 47.4076208 ], + [ 7.8105146, 47.4075679 ], + [ 7.8101196999999996, 47.4076275 ], + [ 7.8101565, 47.4078551 ], + [ 7.8102578, 47.407967 ], + [ 7.8104169, 47.4081426 ], + [ 7.8105197, 47.4082562 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr126", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Stiller", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Stiller", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Stiller", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Stiller", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.1666372, 46.2953281 ], + [ 6.1664175, 46.2953558 ], + [ 6.1670367, 46.295079 ], + [ 6.167901, 46.2942131 ], + [ 6.1681902, 46.2932841 ], + [ 6.1685614, 46.2929123 ], + [ 6.168597, 46.292922 ], + [ 6.1686691, 46.2929251 ], + [ 6.1686695, 46.2929252 ], + [ 6.169891, 46.2929809 ], + [ 6.1699973, 46.2929741 ], + [ 6.1708807, 46.2928177 ], + [ 6.1712279, 46.2927591 ], + [ 6.1722694, 46.2923114 ], + [ 6.1730584, 46.2916615 ], + [ 6.1735169, 46.2908738 ], + [ 6.1735443, 46.2905932 ], + [ 6.1740454, 46.2899635 ], + [ 6.1742746, 46.2891303 ], + [ 6.1742771, 46.2890745 ], + [ 6.1740279, 46.2880383 ], + [ 6.1735567, 46.2875137 ], + [ 6.1735312, 46.287476 ], + [ 6.1735062, 46.2874575 ], + [ 6.1733583, 46.2872928 ], + [ 6.1734745, 46.2870666 ], + [ 6.173508, 46.2862205 ], + [ 6.1735036, 46.2861973 ], + [ 6.1731413, 46.285451 ], + [ 6.1731027, 46.2853559 ], + [ 6.1730875, 46.2853401 ], + [ 6.1730233, 46.2852078 ], + [ 6.1727445, 46.2849848 ], + [ 6.1724224, 46.2846511 ], + [ 6.1721256, 46.2844896 ], + [ 6.1720372, 46.2844188 ], + [ 6.1719206, 46.284378 ], + [ 6.1714601, 46.2841274 ], + [ 6.170311, 46.2838367 ], + [ 6.1699296, 46.2838276 ], + [ 6.1698852, 46.2838066 ], + [ 6.1696631, 46.2837744 ], + [ 6.1700825, 46.2833542 ], + [ 6.1704029, 46.2823249 ], + [ 6.1701852, 46.2814961 ], + [ 6.1707684, 46.2809162 ], + [ 6.1709027, 46.2807037 ], + [ 6.1709499, 46.2806569 ], + [ 6.1709792, 46.2806106 ], + [ 6.1710502, 46.2804237 ], + [ 6.1711132, 46.2803471 ], + [ 6.1712021, 46.2801672 ], + [ 6.1716711, 46.2796971 ], + [ 6.1719914, 46.2786678 ], + [ 6.1719196, 46.2783944 ], + [ 6.1719503, 46.2783636 ], + [ 6.1729426, 46.2779198 ], + [ 6.1738065, 46.2770539 ], + [ 6.1741268, 46.2760246 ], + [ 6.1739741, 46.2754434 ], + [ 6.1740262, 46.2753932 ], + [ 6.1743958, 46.2745399 ], + [ 6.1743445, 46.2736496 ], + [ 6.173878, 46.2728195 ], + [ 6.1730471, 46.2721399 ], + [ 6.1730197, 46.2721238 ], + [ 6.1725236, 46.2718765 ], + [ 6.1724944, 46.2718643 ], + [ 6.1723198, 46.271791 ], + [ 6.1722984, 46.2717819 ], + [ 6.1721055, 46.2717334 ], + [ 6.1720692, 46.2717106 ], + [ 6.1720239, 46.2716901 ], + [ 6.1706192, 46.2712989 ], + [ 6.1691055, 46.271309 ], + [ 6.1677118, 46.2717189 ], + [ 6.1666491, 46.2724664 ], + [ 6.1666387, 46.2724773 ], + [ 6.1661672, 46.2722149 ], + [ 6.1647097, 46.2719202 ], + [ 6.1632004, 46.2720346 ], + [ 6.1618692, 46.2725408 ], + [ 6.1618627, 46.2725446 ], + [ 6.1618626, 46.2725447 ], + [ 6.1617763, 46.2725949 ], + [ 6.1612893, 46.2729832 ], + [ 6.1604282, 46.27257 ], + [ 6.158944, 46.2723477 ], + [ 6.1574501, 46.2725363 ], + [ 6.1561739, 46.2731069 ], + [ 6.1553097, 46.2739727 ], + [ 6.1549891, 46.2750019 ], + [ 6.1552609, 46.2760379 ], + [ 6.1560838, 46.2769229 ], + [ 6.1565975, 46.2771694 ], + [ 6.1565654, 46.2772905 ], + [ 6.1566308, 46.2775028 ], + [ 6.1566246, 46.2775695 ], + [ 6.1567906, 46.2780217 ], + [ 6.1568059, 46.2780712 ], + [ 6.1566921, 46.2783996 ], + [ 6.1566225, 46.2785288 ], + [ 6.1566171, 46.2786161 ], + [ 6.1564851, 46.2789971 ], + [ 6.1565701, 46.2793733 ], + [ 6.1564123, 46.2798799 ], + [ 6.1566842, 46.2809159 ], + [ 6.1575072, 46.2818008 ], + [ 6.1586312, 46.2823402 ], + [ 6.1586682, 46.2824809 ], + [ 6.1583491, 46.2824331 ], + [ 6.1568549, 46.2826216 ], + [ 6.1555785, 46.2831922 ], + [ 6.1547141, 46.284058 ], + [ 6.1543935, 46.2850873 ], + [ 6.1546653, 46.2861232 ], + [ 6.1547329, 46.2861959 ], + [ 6.1546089, 46.2863201 ], + [ 6.1542882, 46.2873493 ], + [ 6.15456, 46.2883853 ], + [ 6.1553831, 46.2892703 ], + [ 6.1566321, 46.2898695 ], + [ 6.1581168, 46.2900918 ], + [ 6.1588018, 46.2900054 ], + [ 6.1589037, 46.2903938 ], + [ 6.1592879, 46.2908069 ], + [ 6.1592075, 46.2908875 ], + [ 6.1588868, 46.2919167 ], + [ 6.1591207, 46.2928075 ], + [ 6.1585272, 46.2930309 ], + [ 6.1575739, 46.2938432 ], + [ 6.1573923, 46.2942612 ], + [ 6.1563235, 46.2937484 ], + [ 6.1548387, 46.2935261 ], + [ 6.1533442, 46.2937146 ], + [ 6.1520674, 46.2942851 ], + [ 6.1512029, 46.2951509 ], + [ 6.150882, 46.2961802 ], + [ 6.1509877, 46.2965829 ], + [ 6.1504845, 46.2973297 ], + [ 6.1503353, 46.298168 ], + [ 6.1505673, 46.2989971 ], + [ 6.1511578, 46.299736 ], + [ 6.1512197, 46.2997909 ], + [ 6.1518393, 46.3001916 ], + [ 6.1533809999999995, 46.2991589 ], + [ 6.1554433, 46.2986959 ], + [ 6.1573507, 46.2982631 ], + [ 6.1592196, 46.2978126 ], + [ 6.1587927, 46.2973537 ], + [ 6.1594611, 46.2976474 ], + [ 6.1596953, 46.2976889 ], + [ 6.1626661, 46.2966744 ], + [ 6.165304, 46.2957651 ], + [ 6.1666372, 46.2953281 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-1", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.9201138, 46.1393669 ], + [ 8.9201188, 46.1392969 ], + [ 8.9200308, 46.1394593 ], + [ 8.9200068, 46.1398914 ], + [ 8.9198624, 46.1399155 ], + [ 8.9197427, 46.1396231 ], + [ 8.919884, 46.1393322 ], + [ 8.9199284, 46.1392159 ], + [ 8.9199926, 46.1391554 ], + [ 8.9201188, 46.1392969 ], + [ 8.9201728, 46.1393017 ], + [ 8.921167, 46.1393926 ], + [ 8.9213777, 46.1388163 ], + [ 8.9215665, 46.138748 ], + [ 8.9219207, 46.1386623 ], + [ 8.9219507, 46.1386223 ], + [ 8.9215206, 46.1385056 ], + [ 8.9215222, 46.1384912 ], + [ 8.9215274, 46.138442 ], + [ 8.9215419, 46.1382592 ], + [ 8.9215644, 46.1381972 ], + [ 8.9216842, 46.1380156 ], + [ 8.9217886, 46.137789 ], + [ 8.9218172, 46.1376892 ], + [ 8.9218485, 46.1376318 ], + [ 8.9219077, 46.1375298 ], + [ 8.9222202, 46.1372647 ], + [ 8.9216884, 46.1366936 ], + [ 8.9211908, 46.1366676 ], + [ 8.9208911, 46.1366708 ], + [ 8.9205095, 46.1366745 ], + [ 8.9202597, 46.1366761 ], + [ 8.9200659, 46.1366778 ], + [ 8.9200249, 46.1366203 ], + [ 8.9198599, 46.1366448 ], + [ 8.9197118, 46.1366199 ], + [ 8.919558, 46.1365951 ], + [ 8.9196105, 46.136438 ], + [ 8.9196641, 46.1363383 ], + [ 8.9193817, 46.1363301 ], + [ 8.9192971, 46.1362504 ], + [ 8.9190052, 46.1359755 ], + [ 8.9187867, 46.1357759 ], + [ 8.9187372, 46.1357306 ], + [ 8.9187182, 46.1357133 ], + [ 8.9188777, 46.135434 ], + [ 8.9189442, 46.1353714 ], + [ 8.9189502, 46.1353584 ], + [ 8.9189071, 46.1353582 ], + [ 8.9182713, 46.1353564 ], + [ 8.9182724, 46.1350593 ], + [ 8.9142053, 46.1350514 ], + [ 8.9141859, 46.1350514 ], + [ 8.9142294, 46.135252 ], + [ 8.9143364, 46.1353668 ], + [ 8.9143581, 46.1357306 ], + [ 8.9144036, 46.135879 ], + [ 8.9141765, 46.1361554 ], + [ 8.9139893, 46.1362308 ], + [ 8.9139756, 46.1362363 ], + [ 8.9139259, 46.136283 ], + [ 8.9137299, 46.1363987 ], + [ 8.9135795, 46.1364495 ], + [ 8.9136007, 46.1364821 ], + [ 8.9139299, 46.1369898 ], + [ 8.9136376, 46.1370667 ], + [ 8.9135396, 46.137103 ], + [ 8.9134953, 46.1371274 ], + [ 8.9134771, 46.1371412 ], + [ 8.9134581, 46.1371592 ], + [ 8.9134358, 46.1372006 ], + [ 8.9134006, 46.1373217 ], + [ 8.913394199999999, 46.1373323 ], + [ 8.9133874, 46.1373428 ], + [ 8.9133802, 46.1373531 ], + [ 8.9133725, 46.1373633 ], + [ 8.9133644, 46.1373733 ], + [ 8.913355899999999, 46.1373832 ], + [ 8.913347, 46.1373929 ], + [ 8.9133383, 46.1374018 ], + [ 8.9133292, 46.1374106 ], + [ 8.9133197, 46.1374192 ], + [ 8.91331, 46.1374277 ], + [ 8.9132999, 46.1374359 ], + [ 8.9132895, 46.137444 ], + [ 8.9132788, 46.1374518 ], + [ 8.9132703, 46.1374591 ], + [ 8.9132615, 46.1374662 ], + [ 8.9132522, 46.137473 ], + [ 8.913242499999999, 46.1374795 ], + [ 8.9132325, 46.1374858 ], + [ 8.9132221, 46.1374918 ], + [ 8.9132113, 46.1374974 ], + [ 8.9131931, 46.137506 ], + [ 8.913174099999999, 46.1375137 ], + [ 8.9131545, 46.1375206 ], + [ 8.9131342, 46.1375265 ], + [ 8.9131134, 46.1375315 ], + [ 8.9130921, 46.1375354 ], + [ 8.9130705, 46.1375385 ], + [ 8.9128093, 46.1375607 ], + [ 8.9127316, 46.1375571 ], + [ 8.912689, 46.1375518 ], + [ 8.9125985, 46.1375368 ], + [ 8.912581, 46.1375354 ], + [ 8.9119697, 46.1374589 ], + [ 8.9117748, 46.1375032 ], + [ 8.9115416, 46.1379557 ], + [ 8.9115944, 46.1380094 ], + [ 8.9117955, 46.1382138 ], + [ 8.911787499999999, 46.1382196 ], + [ 8.9117792, 46.1382252 ], + [ 8.9117705, 46.1382305 ], + [ 8.9117615, 46.1382355 ], + [ 8.9117522, 46.1382403 ], + [ 8.9117427, 46.1382448 ], + [ 8.9117328, 46.138249 ], + [ 8.9117271, 46.1382512 ], + [ 8.9117214, 46.1382534 ], + [ 8.9117156, 46.1382554 ], + [ 8.9117097, 46.1382573 ], + [ 8.9117037, 46.1382591 ], + [ 8.9116977, 46.1382609 ], + [ 8.9116916, 46.1382625 ], + [ 8.9116853, 46.1382642 ], + [ 8.9116788, 46.1382658 ], + [ 8.9116723, 46.1382672 ], + [ 8.9116657, 46.1382684 ], + [ 8.9116591, 46.1382694 ], + [ 8.9116524, 46.1382703 ], + [ 8.9116456, 46.138271 ], + [ 8.9116388, 46.1382715 ], + [ 8.9116321, 46.1382719 ], + [ 8.9116253, 46.138272 ], + [ 8.9116185, 46.138272 ], + [ 8.9116117, 46.1382718 ], + [ 8.9116049, 46.1382714 ], + [ 8.911598099999999, 46.1382709 ], + [ 8.9115145, 46.1382678 ], + [ 8.9115002, 46.1382688 ], + [ 8.9114859, 46.1382702 ], + [ 8.9114717, 46.138272 ], + [ 8.9114577, 46.1382742 ], + [ 8.9114438, 46.1382768 ], + [ 8.9114301, 46.1382798 ], + [ 8.9114165, 46.1382833 ], + [ 8.9112099, 46.1383403 ], + [ 8.9112007, 46.1383427 ], + [ 8.9111913, 46.1383449 ], + [ 8.9111819, 46.138347 ], + [ 8.9111724, 46.1383489 ], + [ 8.9111628, 46.1383506 ], + [ 8.9111532, 46.1383521 ], + [ 8.9111435, 46.1383534 ], + [ 8.9111338, 46.1383546 ], + [ 8.9111242, 46.1383556 ], + [ 8.9111145, 46.1383564 ], + [ 8.9111047, 46.138357 ], + [ 8.911095, 46.1383574 ], + [ 8.9110852, 46.1383577 ], + [ 8.9110754, 46.1383578 ], + [ 8.9110655, 46.1383582 ], + [ 8.9110556, 46.1383584 ], + [ 8.9110457, 46.1383585 ], + [ 8.9110358, 46.1383583 ], + [ 8.9110259, 46.138358 ], + [ 8.9110161, 46.1383575 ], + [ 8.9110062, 46.1383568 ], + [ 8.9109981, 46.1383561 ], + [ 8.91099, 46.1383553 ], + [ 8.9109819, 46.1383543 ], + [ 8.9109738, 46.1383532 ], + [ 8.9109658, 46.138352 ], + [ 8.9109578, 46.1383507 ], + [ 8.9109499, 46.1383493 ], + [ 8.9106399, 46.1383084 ], + [ 8.9104937, 46.1382874 ], + [ 8.910435, 46.1382852 ], + [ 8.910378, 46.1382868 ], + [ 8.9103217, 46.1382961 ], + [ 8.9102682, 46.1383115 ], + [ 8.9099639, 46.1384141 ], + [ 8.909957, 46.1384159 ], + [ 8.90995, 46.1384177 ], + [ 8.909943, 46.1384194 ], + [ 8.9099359, 46.138421 ], + [ 8.9099288, 46.1384225 ], + [ 8.9099216, 46.1384239 ], + [ 8.9099144, 46.1384252 ], + [ 8.9099071, 46.1384265 ], + [ 8.9098996, 46.1384277 ], + [ 8.9098922, 46.1384287 ], + [ 8.9098848, 46.1384297 ], + [ 8.9098773, 46.1384306 ], + [ 8.9098698, 46.1384315 ], + [ 8.9098622, 46.1384322 ], + [ 8.909855, 46.138433 ], + [ 8.9098478, 46.1384337 ], + [ 8.9098406, 46.1384342 ], + [ 8.9098333, 46.1384347 ], + [ 8.909826, 46.138435 ], + [ 8.9098187, 46.1384352 ], + [ 8.9098114, 46.1384353 ], + [ 8.909804, 46.1384353 ], + [ 8.9097966, 46.1384351 ], + [ 8.9097892, 46.1384348 ], + [ 8.9097818, 46.1384344 ], + [ 8.9097744, 46.1384339 ], + [ 8.909767, 46.1384333 ], + [ 8.9097597, 46.1384325 ], + [ 8.9097524, 46.1384315 ], + [ 8.9097451, 46.1384304 ], + [ 8.9097379, 46.1384293 ], + [ 8.9097306, 46.1384282 ], + [ 8.9097234, 46.138427 ], + [ 8.9097162, 46.1384257 ], + [ 8.909709, 46.1384244 ], + [ 8.9097053, 46.1384237 ], + [ 8.9097017, 46.138423 ], + [ 8.909698, 46.1384223 ], + [ 8.9096944, 46.1384216 ], + [ 8.9096907, 46.1384209 ], + [ 8.9096871, 46.1384202 ], + [ 8.9096835, 46.1384194 ], + [ 8.9095219, 46.1383868 ], + [ 8.909514099999999, 46.138385 ], + [ 8.9095063, 46.1383834 ], + [ 8.9094984, 46.138382 ], + [ 8.9094904, 46.1383807 ], + [ 8.9094823, 46.1383797 ], + [ 8.9094742, 46.1383789 ], + [ 8.9094661, 46.1383783 ], + [ 8.9094579, 46.1383779 ], + [ 8.9094497, 46.1383777 ], + [ 8.9094415, 46.1383777 ], + [ 8.9094333, 46.1383779 ], + [ 8.9094251, 46.1383783 ], + [ 8.9094169, 46.1383789 ], + [ 8.9094088, 46.1383798 ], + [ 8.9090931, 46.1384632 ], + [ 8.9090877, 46.1384649 ], + [ 8.9090822, 46.1384665 ], + [ 8.9090767, 46.138468 ], + [ 8.9090711, 46.1384693 ], + [ 8.9090654, 46.1384706 ], + [ 8.9090597, 46.1384718 ], + [ 8.909054, 46.1384728 ], + [ 8.9090483, 46.1384737 ], + [ 8.9090426, 46.1384745 ], + [ 8.909036799999999, 46.1384752 ], + [ 8.909031, 46.1384758 ], + [ 8.9090252, 46.1384763 ], + [ 8.9090194, 46.1384766 ], + [ 8.9090136, 46.1384769 ], + [ 8.908973, 46.1385681 ], + [ 8.9088869, 46.1387899 ], + [ 8.9088275, 46.1389411 ], + [ 8.9088255, 46.1389461 ], + [ 8.9088237, 46.138951 ], + [ 8.908822, 46.138956 ], + [ 8.9088205, 46.1389611 ], + [ 8.9088191, 46.1389661 ], + [ 8.9088179, 46.1389712 ], + [ 8.9088169, 46.1389763 ], + [ 8.908816, 46.1389814 ], + [ 8.9088152, 46.1389866 ], + [ 8.9088147, 46.1389918 ], + [ 8.9088143, 46.138997 ], + [ 8.9088141, 46.1390022 ], + [ 8.908814, 46.1390074 ], + [ 8.9088141, 46.1390126 ], + [ 8.9088178, 46.1390484 ], + [ 8.908821, 46.1390833 ], + [ 8.9088304, 46.1391869 ], + [ 8.9088397, 46.1392308 ], + [ 8.9088588, 46.1392732 ], + [ 8.9088824, 46.1392969 ], + [ 8.9083824, 46.1395252 ], + [ 8.9084275, 46.1395713 ], + [ 8.9077252, 46.1399113 ], + [ 8.9082138, 46.1399456 ], + [ 8.9083415, 46.1399546 ], + [ 8.9083317, 46.1400417 ], + [ 8.9082462, 46.1407985 ], + [ 8.9082469, 46.1408271 ], + [ 8.9086018, 46.1408439 ], + [ 8.9089498, 46.1408152 ], + [ 8.9091665, 46.1407691 ], + [ 8.9093073, 46.1407392 ], + [ 8.9095786, 46.1407035 ], + [ 8.9099669, 46.1408163 ], + [ 8.9103303, 46.1409579 ], + [ 8.9104412, 46.1410707 ], + [ 8.910427, 46.1413066 ], + [ 8.9104507, 46.1414205 ], + [ 8.9105612, 46.1415191 ], + [ 8.9103108, 46.1423293 ], + [ 8.9089704, 46.1421526 ], + [ 8.9089859, 46.1426707 ], + [ 8.9090904, 46.1428426 ], + [ 8.9094161, 46.1429529 ], + [ 8.9099339, 46.1430426 ], + [ 8.9110767, 46.1432407 ], + [ 8.911237, 46.1425365 ], + [ 8.9135135, 46.1428569 ], + [ 8.9145041, 46.1427998 ], + [ 8.9150004, 46.1428411 ], + [ 8.9152717, 46.1428738 ], + [ 8.9156084, 46.1429024 ], + [ 8.9156118, 46.1429065 ], + [ 8.9165682, 46.1428104 ], + [ 8.9165086, 46.1428123 ], + [ 8.916470799999999, 46.1428082 ], + [ 8.9164354, 46.1428014 ], + [ 8.9164089, 46.1427943 ], + [ 8.9163181, 46.1427592 ], + [ 8.916278, 46.1427499 ], + [ 8.9162423, 46.1427477 ], + [ 8.9162033, 46.142751 ], + [ 8.9160255, 46.1428131 ], + [ 8.9156017, 46.14284 ], + [ 8.9152857, 46.14282 ], + [ 8.9145199, 46.1427165 ], + [ 8.913659299999999, 46.1427196 ], + [ 8.9135851, 46.1427217 ], + [ 8.912423, 46.1425963 ], + [ 8.9124806, 46.142353 ], + [ 8.9129586, 46.1423631 ], + [ 8.9136774, 46.1421879 ], + [ 8.9142303, 46.1421387 ], + [ 8.9147984, 46.1422573 ], + [ 8.916178, 46.1419806 ], + [ 8.9162456, 46.1421571 ], + [ 8.9163344, 46.1421389 ], + [ 8.9164407, 46.1421168 ], + [ 8.9163757, 46.1419245 ], + [ 8.9167423, 46.1419206 ], + [ 8.9171695, 46.141918 ], + [ 8.9176066, 46.1419103 ], + [ 8.9182525, 46.1418307 ], + [ 8.9182875, 46.1418246 ], + [ 8.9189428, 46.1416914 ], + [ 8.919802, 46.1417585 ], + [ 8.9198378, 46.1416397 ], + [ 8.9198692, 46.1415512 ], + [ 8.9192359, 46.1414401 ], + [ 8.9188454, 46.1413098 ], + [ 8.9184368, 46.141196 ], + [ 8.9182365, 46.1411313 ], + [ 8.9182864, 46.1410092 ], + [ 8.9183911, 46.140663 ], + [ 8.9183935, 46.1405744 ], + [ 8.9185729, 46.1402161 ], + [ 8.918342299999999, 46.1401041 ], + [ 8.9186623, 46.1400489 ], + [ 8.9187321, 46.140045 ], + [ 8.9189693, 46.1399994 ], + [ 8.9189948, 46.1399977 ], + [ 8.9190941, 46.1399825 ], + [ 8.9191228, 46.1399739 ], + [ 8.9191494, 46.1399635 ], + [ 8.9191929, 46.1399234 ], + [ 8.9198668, 46.1406003 ], + [ 8.9207022, 46.1403207 ], + [ 8.9203569, 46.1399085 ], + [ 8.9202713, 46.1397864 ], + [ 8.920209, 46.1398187 ], + [ 8.9201485, 46.1396958 ], + [ 8.9201138, 46.1393669 ] + ], + [ + [ 8.9186532, 46.1400164 ], + [ 8.9182351, 46.1400866 ], + [ 8.9180518, 46.1399713 ], + [ 8.9179976, 46.1399377 ], + [ 8.9182189, 46.139744 ], + [ 8.9183834, 46.1395084 ], + [ 8.918603300000001, 46.139654 ], + [ 8.9186186, 46.13964 ], + [ 8.9187998, 46.1394746 ], + [ 8.9188679, 46.1395078 ], + [ 8.9188786, 46.1395139 ], + [ 8.9189322, 46.1395499 ], + [ 8.9189803, 46.139589 ], + [ 8.9190586, 46.1396737 ], + [ 8.9191074, 46.1397248 ], + [ 8.9191324, 46.1397572 ], + [ 8.9191539, 46.1397901 ], + [ 8.9191664, 46.1398258 ], + [ 8.9191678, 46.1398632 ], + [ 8.9191533, 46.1398983 ], + [ 8.9191206, 46.1399268 ], + [ 8.9190734, 46.1399438 ], + [ 8.9190326, 46.1399509 ], + [ 8.91868, 46.140013 ], + [ 8.9186532, 46.1400164 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VBS_8-0", + "country" : "CHE", + "name" : [ + { + "text" : "VBS_8 Monte Ceneri 1", + "lang" : "de-CH" + }, + { + "text" : "VBS_8 Monte Ceneri 1", + "lang" : "fr-CH" + }, + { + "text" : "VBS_8 Monte Ceneri 1", + "lang" : "it-CH" + }, + { + "text" : "VBS_8 Monte Ceneri 1", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "regulationExemption" : "YES", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Eidgenössisches Departement für Verteidigung, Bevölkerungsschutz und Sport (VBS)", + "lang" : "de-CH" + }, + { + "text" : "Département fédéral de la défense, de la protection de la population et des sports (DDPS)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento federale della difesa, della protezione della popolazione e dello sport (DDPS)", + "lang" : "it-CH" + }, + { + "text" : "Federal Department of Defence, Civil Protection and Sport (DDPS)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Lageverfolgungszentrum der Armee LVZ A", + "lang" : "de-CH" + }, + { + "text" : "Centre de suivi de la situation de l’armée, CSS A", + "lang" : "fr-CH" + }, + { + "text" : "Centro di monitoraggio della situazione dell’esercito, Centro mon sit Es", + "lang" : "it-CH" + }, + { + "text" : "Joint Operation Center, JOC", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vtg.admin.ch/en/joint-operations-command", + "email" : "lvz.op@vtg.admin.ch", + "phone" : "+41 58 464 96 43", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.7446149, 46.8093143 ], + [ 6.7621313, 46.8138542 ], + [ 6.7796502, 46.8183915 ], + [ 6.780684, 46.8177423 ], + [ 6.7807318, 46.8177016 ], + [ 6.7806022, 46.8175839 ], + [ 6.7806035, 46.817476 ], + [ 6.7808011, 46.8173871 ], + [ 6.7810263, 46.8171879 ], + [ 6.7810776, 46.8170757 ], + [ 6.7810572, 46.8169407 ], + [ 6.7809289, 46.8167195 ], + [ 6.7808397, 46.8165796 ], + [ 6.7808196, 46.8164112 ], + [ 6.7808454, 46.8162468 ], + [ 6.7809957, 46.8160749 ], + [ 6.7813423, 46.8158528 ], + [ 6.7816343, 46.8156864 ], + [ 6.7818654, 46.8155348 ], + [ 6.7820749, 46.8154091 ], + [ 6.7823132, 46.8156103 ], + [ 6.782538, 46.8158445 ], + [ 6.7826971, 46.8158273 ], + [ 6.7827215, 46.8158226 ], + [ 6.7828465, 46.8157985 ], + [ 6.7828796, 46.8157013 ], + [ 6.7829048, 46.8155869 ], + [ 6.7828798, 46.815421 ], + [ 6.7828129, 46.8152666 ], + [ 6.7827125, 46.8151065 ], + [ 6.782604, 46.8150037 ], + [ 6.7824288, 46.8148608 ], + [ 6.7821121, 46.8146494 ], + [ 6.7815788, 46.8143297 ], + [ 6.7802785, 46.8135987 ], + [ 6.7800367999999995, 46.8134731 ], + [ 6.7797114, 46.8133647 ], + [ 6.7794697, 46.8133078 ], + [ 6.7792618000000004, 46.8132394 ], + [ 6.778936, 46.8130967 ], + [ 6.7785191000000005, 46.8128396 ], + [ 6.7779941, 46.8124453 ], + [ 6.7777774, 46.8122912 ], + [ 6.7774939, 46.8121713 ], + [ 6.7772521999999995, 46.81212 ], + [ 6.7767192, 46.8120461 ], + [ 6.7762939, 46.8120065 ], + [ 6.7761937, 46.8120351 ], + [ 6.7755948, 46.8125905 ], + [ 6.7753836, 46.8127989 ], + [ 6.7740159, 46.8122412 ], + [ 6.7738516, 46.8121714 ], + [ 6.7732992, 46.8120001 ], + [ 6.7727942, 46.811591 ], + [ 6.7724692, 46.8113293 ], + [ 6.7717456, 46.810752 ], + [ 6.7712718, 46.8103685 ], + [ 6.7705355, 46.8097746 ], + [ 6.7704884, 46.8097388 ], + [ 6.7698739, 46.8092572 ], + [ 6.7695396, 46.8089954 ], + [ 6.7690804, 46.8086336 ], + [ 6.7684075, 46.8081011 ], + [ 6.768382, 46.8080823 ], + [ 6.7703291, 46.8067852 ], + [ 6.7707147, 46.8065053 ], + [ 6.7710161, 46.8064867 ], + [ 6.7709094, 46.8064199 ], + [ 6.770869, 46.8063944 ], + [ 6.7700230999999995, 46.8058596 ], + [ 6.7697131, 46.8056628 ], + [ 6.7697059, 46.8056582 ], + [ 6.7695449, 46.805556 ], + [ 6.7694595, 46.8055018 ], + [ 6.7692319, 46.8053608 ], + [ 6.7688468, 46.8051222 ], + [ 6.7682471, 46.8047676 ], + [ 6.767567, 46.8043794 ], + [ 6.7672539, 46.8042022 ], + [ 6.7670525, 46.8040883 ], + [ 6.7669905, 46.8040532 ], + [ 6.7668181, 46.8039557 ], + [ 6.7660105999999995, 46.8034971 ], + [ 6.7656311, 46.8032863 ], + [ 6.7651053999999995, 46.8029803 ], + [ 6.7646653, 46.8026897 ], + [ 6.7646259, 46.8026558 ], + [ 6.7645768, 46.8026136 ], + [ 6.7644545, 46.8025062 ], + [ 6.7642181, 46.8023003 ], + [ 6.7641694999999995, 46.8022579 ], + [ 6.7640394, 46.8021446 ], + [ 6.7635171, 46.801664099999996 ], + [ 6.7631768999999995, 46.8013566 ], + [ 6.7628221, 46.8010988 ], + [ 6.7628103, 46.8010902 ], + [ 6.7626396, 46.8009662 ], + [ 6.7622146, 46.800704 ], + [ 6.7617586, 46.8004592 ], + [ 6.7612898, 46.8002304 ], + [ 6.7608044, 46.7999934 ], + [ 6.7601394, 46.7996682 ], + [ 6.7596077, 46.7994081 ], + [ 6.759513, 46.7993583 ], + [ 6.7592085, 46.7991979 ], + [ 6.7592068, 46.799197 ], + [ 6.7590417, 46.7991101 ], + [ 6.7587981, 46.7989818 ], + [ 6.7586417999999995, 46.7989046 ], + [ 6.7584223, 46.7987962 ], + [ 6.7578054, 46.7985085 ], + [ 6.7577098, 46.7986249 ], + [ 6.7572644, 46.7991672 ], + [ 6.757247, 46.7991891 ], + [ 6.7572238, 46.7992182 ], + [ 6.7571981999999995, 46.7992487 ], + [ 6.7571656, 46.7992875 ], + [ 6.7571658, 46.7993768 ], + [ 6.7571663, 46.7995977 ], + [ 6.7570644, 46.7995994 ], + [ 6.7564717, 46.7996045 ], + [ 6.7558538, 46.7996126 ], + [ 6.7552744, 46.7996357 ], + [ 6.7552695, 46.7996361 ], + [ 6.754641, 46.7996879 ], + [ 6.7539794, 46.7997664 ], + [ 6.7531541, 46.7998999 ], + [ 6.7523134, 46.8000554 ], + [ 6.7515564, 46.8002129 ], + [ 6.7514033, 46.8002469 ], + [ 6.7513268, 46.8002639 ], + [ 6.7511434, 46.8003047 ], + [ 6.7510781, 46.8003217 ], + [ 6.7510791, 46.8003234 ], + [ 6.7498377, 46.8006587 ], + [ 6.7494826, 46.8007546 ], + [ 6.7487835, 46.8009648 ], + [ 6.7483383, 46.8010987 ], + [ 6.7475021, 46.8013505 ], + [ 6.7475018, 46.8013506 ], + [ 6.7474505, 46.8013661 ], + [ 6.7470949000000005, 46.8014734 ], + [ 6.7464474, 46.8016689 ], + [ 6.7454248, 46.8019766 ], + [ 6.7453705, 46.8019679 ], + [ 6.7453044, 46.8019574 ], + [ 6.7452954, 46.8019603 ], + [ 6.7451984, 46.8019911 ], + [ 6.7450641000000005, 46.8020338 ], + [ 6.7450499, 46.8020383 ], + [ 6.7450232, 46.8020467 ], + [ 6.7449774, 46.8020612 ], + [ 6.7448037, 46.8021159 ], + [ 6.7446202, 46.8021739 ], + [ 6.7445727, 46.802189 ], + [ 6.7445078, 46.8022095 ], + [ 6.7443580999999995, 46.8022568 ], + [ 6.7442721, 46.802284 ], + [ 6.7436823, 46.8024701 ], + [ 6.7436793999999995, 46.802471 ], + [ 6.7434638, 46.8025391 ], + [ 6.7433926, 46.8025616 ], + [ 6.7421391, 46.8029747 ], + [ 6.7415111, 46.803165 ], + [ 6.7413059, 46.8032271 ], + [ 6.7412239, 46.8032403 ], + [ 6.7411038, 46.8032595 ], + [ 6.7411357, 46.803295 ], + [ 6.7413471, 46.8035296 ], + [ 6.7414243, 46.8036156 ], + [ 6.7416609, 46.803879 ], + [ 6.741702, 46.8039247 ], + [ 6.7417067, 46.80393 ], + [ 6.7416751999999995, 46.8039436 ], + [ 6.7415576999999995, 46.8039945 ], + [ 6.7410641, 46.8045052 ], + [ 6.7409114, 46.8045157 ], + [ 6.7408052, 46.8045531 ], + [ 6.7406581, 46.8046003 ], + [ 6.7406071, 46.8046166 ], + [ 6.7405498999999995, 46.8046534 ], + [ 6.7404869, 46.8046938 ], + [ 6.7404612, 46.8047104 ], + [ 6.7402975, 46.8046956 ], + [ 6.7401634, 46.8046097 ], + [ 6.7401511, 46.8046018 ], + [ 6.7401401, 46.8045948 ], + [ 6.7401181999999995, 46.8045808 ], + [ 6.7399736, 46.8045607 ], + [ 6.7399227, 46.8047425 ], + [ 6.7399055, 46.8049959 ], + [ 6.7399945, 46.8052178 ], + [ 6.7400742000000005, 46.8053797 ], + [ 6.7401014, 46.8054347 ], + [ 6.7401032, 46.8054964 ], + [ 6.7401049, 46.8055547 ], + [ 6.7401056, 46.8055798 ], + [ 6.7401219, 46.8056722 ], + [ 6.7401371999999995, 46.8057592 ], + [ 6.740157, 46.8058724 ], + [ 6.7401727000000005, 46.8059854 ], + [ 6.7401834, 46.8060634 ], + [ 6.7400491, 46.8060857 ], + [ 6.7399365, 46.8060925 ], + [ 6.7397915, 46.8061014 ], + [ 6.7394145, 46.80611 ], + [ 6.7393111, 46.8061905 ], + [ 6.7392537, 46.8062176 ], + [ 6.7392216, 46.8062215 ], + [ 6.7392309, 46.8062511 ], + [ 6.7390723999999995, 46.8062867 ], + [ 6.7390723, 46.8062866 ], + [ 6.7389289, 46.8063201 ], + [ 6.7387243, 46.8065712 ], + [ 6.737889, 46.8076146 ], + [ 6.741872, 46.8086042 ], + [ 6.7446149, 46.8093143 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "WZV0038", + "country" : "CHE", + "name" : [ + { + "text" : "Wasser- und Zugvogelreservat Yvonand jusqu'à Cheyres", + "lang" : "de-CH" + }, + { + "text" : "Réserve d'oiseaux d'eau et de migrateurs Yvonand jusqu'à Cheyres", + "lang" : "fr-CH" + }, + { + "text" : "Riserva di uccelli acquatici e migratori Yvonand jusqu'à Cheyres", + "lang" : "it-CH" + }, + { + "text" : "Water Bird and Migratory Bird Reserves Yvonand jusqu'à Cheyres", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.865364, 46.9605407 ], + [ 6.866348, 46.959933 ], + [ 6.8665281, 46.9600472 ], + [ 6.8666816, 46.9599464 ], + [ 6.8665121, 46.9598268 ], + [ 6.8670264, 46.9595262 ], + [ 6.867686, 46.9598911 ], + [ 6.8679393, 46.9596756 ], + [ 6.8680804, 46.9597492 ], + [ 6.8687895999999995, 46.9591581 ], + [ 6.8679235, 46.958686900000004 ], + [ 6.8678953, 46.9585042 ], + [ 6.8623127, 46.9554527 ], + [ 6.8626044, 46.955205 ], + [ 6.8618965, 46.9548191 ], + [ 6.8614867, 46.9551715 ], + [ 6.860963, 46.9548837 ], + [ 6.8605839, 46.9551966 ], + [ 6.8604794, 46.9551421 ], + [ 6.8596467, 46.9558467 ], + [ 6.8623935, 46.9573458 ], + [ 6.8627495, 46.9572289 ], + [ 6.8655355, 46.9587586 ], + [ 6.8645478, 46.9594571 ], + [ 6.8643237, 46.9597726 ], + [ 6.865364, 46.9605407 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSGN002", + "country" : "CHE", + "name" : [ + { + "text" : "LSGN Neuchâtel (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSGN Neuchâtel (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSGN Neuchâtel (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSGN Neuchâtel (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Neuchâtel Airport", + "lang" : "de-CH" + }, + { + "text" : "Neuchâtel Airport", + "lang" : "fr-CH" + }, + { + "text" : "Neuchâtel Airport", + "lang" : "it-CH" + }, + { + "text" : "Neuchâtel Airport", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Chef d'aérodrome", + "lang" : "de-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "fr-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "it-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Arsène Gigon", + "lang" : "de-CH" + }, + { + "text" : "Arsène Gigon", + "lang" : "fr-CH" + }, + { + "text" : "Arsène Gigon", + "lang" : "it-CH" + }, + { + "text" : "Arsène Gigon", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.neuchatel-airport.ch/?lang=en", + "email" : "admin@neuchatel-airport.ch", + "phone" : "0041328413155", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P01DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5227096, 47.5439662 ], + [ 7.5224209, 47.5441609 ], + [ 7.5223754, 47.5441916 ], + [ 7.5223986, 47.5442145 ], + [ 7.5224922, 47.544307 ], + [ 7.5225335, 47.5443409 ], + [ 7.5225901, 47.5443908 ], + [ 7.5226329, 47.5444297 ], + [ 7.5226581, 47.5444541 ], + [ 7.5226775, 47.5444791 ], + [ 7.5226942, 47.5445094 ], + [ 7.5227022, 47.5445439 ], + [ 7.5227044, 47.5445745 ], + [ 7.5227031, 47.5445947 ], + [ 7.5227041, 47.5446224 ], + [ 7.5227104, 47.5446729 ], + [ 7.5226765, 47.5446944 ], + [ 7.5226876, 47.5447894 ], + [ 7.5227021, 47.5448007 ], + [ 7.5232735, 47.544335 ], + [ 7.5231654, 47.5442643 ], + [ 7.523132, 47.5442425 ], + [ 7.523104, 47.5442242 ], + [ 7.5229543, 47.5441265 ], + [ 7.5228071, 47.5440305 ], + [ 7.5227096, 47.5439662 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns074", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Allschwilerwald", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Allschwilerwald", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Allschwilerwald", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Allschwilerwald", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6613176, 47.5131998 ], + [ 7.6612418, 47.5132047 ], + [ 7.6610777, 47.5132234 ], + [ 7.6610937, 47.5132506 ], + [ 7.6613232, 47.5136386 ], + [ 7.661337, 47.5136619 ], + [ 7.6615078, 47.5136545 ], + [ 7.6615893, 47.5136594 ], + [ 7.6624583, 47.5137116 ], + [ 7.6626934, 47.5137272 ], + [ 7.6632404, 47.5137806 ], + [ 7.6635537, 47.5137863 ], + [ 7.6638149, 47.5137585 ], + [ 7.6643171, 47.5136825 ], + [ 7.6641464, 47.5132469 ], + [ 7.6649081, 47.5130894 ], + [ 7.6659816, 47.5129487 ], + [ 7.6660341, 47.5129453 ], + [ 7.6661241, 47.5129403 ], + [ 7.6662198, 47.5129324 ], + [ 7.6662942, 47.5129245 ], + [ 7.6663826, 47.5129176 ], + [ 7.6664755, 47.5129107 ], + [ 7.666564, 47.5129037 ], + [ 7.6666512, 47.5128957 ], + [ 7.6667368, 47.5128887 ], + [ 7.6668183, 47.5128799 ], + [ 7.6668924, 47.5128672 ], + [ 7.6669488, 47.5128555 ], + [ 7.6670131999999995, 47.5128341 ], + [ 7.6670601, 47.5128136 ], + [ 7.6671086, 47.5127845 ], + [ 7.6671741, 47.5127467 ], + [ 7.6672268, 47.5127194 ], + [ 7.6672823999999995, 47.5126825 ], + [ 7.6673423, 47.5126505 ], + [ 7.6673964, 47.5126156 ], + [ 7.6674207, 47.5126039 ], + [ 7.667524, 47.512569 ], + [ 7.6677281, 47.5125222 ], + [ 7.667875, 47.512486 ], + [ 7.6680563, 47.512445 ], + [ 7.668259, 47.5124069 ], + [ 7.6684361, 47.5123794 ], + [ 7.6685102, 47.5123658 ], + [ 7.6686502, 47.5123422 ], + [ 7.6687851, 47.5123303 ], + [ 7.6688837, 47.5123244 ], + [ 7.6689279, 47.512321299999996 ], + [ 7.6689851, 47.5123096 ], + [ 7.6690599, 47.5122968 ], + [ 7.6690547, 47.5122866 ], + [ 7.6688075, 47.5117982 ], + [ 7.6684456, 47.5118011 ], + [ 7.6683409000000005, 47.5117605 ], + [ 7.6682555, 47.5117851 ], + [ 7.668163, 47.5117901 ], + [ 7.6681567, 47.5117629 ], + [ 7.668339, 47.511657 ], + [ 7.6683008, 47.5116228 ], + [ 7.6682357, 47.5116053 ], + [ 7.6677903, 47.51158 ], + [ 7.667668, 47.5115904 ], + [ 7.6675514, 47.5116214 ], + [ 7.6668427999999995, 47.5118773 ], + [ 7.6666698, 47.5119291 ], + [ 7.6664826999999995, 47.511961 ], + [ 7.6663058, 47.5119686 ], + [ 7.6654101, 47.5119695 ], + [ 7.6652261, 47.5119887 ], + [ 7.6650352, 47.5120261 ], + [ 7.6644666, 47.5122053 ], + [ 7.6644197, 47.5122148 ], + [ 7.6644303, 47.5122469 ], + [ 7.6645944, 47.512745 ], + [ 7.6646044, 47.5127753 ], + [ 7.664004, 47.5129192 ], + [ 7.6638646999999995, 47.5129618 ], + [ 7.6638265, 47.5129816 ], + [ 7.6638175, 47.5129543 ], + [ 7.6635452, 47.5121342 ], + [ 7.6635352, 47.5121042 ], + [ 7.663408, 47.5120793 ], + [ 7.6632016, 47.5120479 ], + [ 7.6629670999999995, 47.5120212 ], + [ 7.662959, 47.5120208 ], + [ 7.662969, 47.5120511 ], + [ 7.6631543, 47.5126076 ], + [ 7.6634239, 47.5134175 ], + [ 7.6634304, 47.5134372 ], + [ 7.6633878, 47.513459 ], + [ 7.663174, 47.5135419 ], + [ 7.6632092, 47.5135153 ], + [ 7.6632062, 47.5134803 ], + [ 7.6631693, 47.5134541 ], + [ 7.6630198, 47.5133944 ], + [ 7.6629138999999995, 47.5133399 ], + [ 7.662817, 47.5132784 ], + [ 7.6626909, 47.5132291 ], + [ 7.6625512, 47.5132025 ], + [ 7.6624048, 47.5131893 ], + [ 7.6614371, 47.513192 ], + [ 7.6613176, 47.5131998 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns318", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Zinggibrunn", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Zinggibrunn", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Zinggibrunn", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Zinggibrunn", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.061342, 46.8320236 ], + [ 7.06123, 46.8319485 ], + [ 7.0611405, 46.8318829 ], + [ 7.0609919, 46.8318123 ], + [ 7.0608044, 46.8319115 ], + [ 7.060576, 46.8319959 ], + [ 7.0604433, 46.8320278 ], + [ 7.0603982, 46.8321216 ], + [ 7.0601846, 46.8320739 ], + [ 7.0600773, 46.8320875 ], + [ 7.0598425, 46.8320935 ], + [ 7.0598379, 46.8322883 ], + [ 7.0597813, 46.8324126 ], + [ 7.0597841, 46.8324557 ], + [ 7.0597849, 46.8324591 ], + [ 7.0597442, 46.8326571 ], + [ 7.0597533, 46.8328306 ], + [ 7.0596739, 46.8327881 ], + [ 7.0596411, 46.8327706 ], + [ 7.059649, 46.8327815 ], + [ 7.0596459, 46.832801 ], + [ 7.0596392, 46.8328069 ], + [ 7.0596271, 46.8328117 ], + [ 7.059618, 46.8328163 ], + [ 7.0596105, 46.8328271 ], + [ 7.0596053, 46.832852 ], + [ 7.0596112, 46.832868 ], + [ 7.0596056, 46.8328807 ], + [ 7.05961, 46.8328896 ], + [ 7.0596112, 46.8328982 ], + [ 7.0596116, 46.8329112 ], + [ 7.0596157, 46.8329175 ], + [ 7.0596413, 46.8329252 ], + [ 7.0596605, 46.8329315 ], + [ 7.0596762, 46.832947 ], + [ 7.0596835, 46.8329564 ], + [ 7.0597151, 46.8329742 ], + [ 7.0597302, 46.8329917 ], + [ 7.0597319, 46.8330203 ], + [ 7.0597338, 46.8330343 ], + [ 7.0597292, 46.8330416 ], + [ 7.0597228, 46.833046 ], + [ 7.059716, 46.833052 ], + [ 7.0597076, 46.8330946 ], + [ 7.0597046, 46.8331189 ], + [ 7.0597066, 46.8331443 ], + [ 7.0597058, 46.8331573 ], + [ 7.059719, 46.833168 ], + [ 7.059716, 46.8331737 ], + [ 7.0597068, 46.8331765 ], + [ 7.0596946, 46.8331869 ], + [ 7.0596603, 46.8332111 ], + [ 7.0596675, 46.8332277 ], + [ 7.05965, 46.8332895 ], + [ 7.0596425, 46.8333192 ], + [ 7.0596392, 46.8333459 ], + [ 7.0596216, 46.8333639 ], + [ 7.0596231, 46.8333735 ], + [ 7.0596234, 46.8333957 ], + [ 7.0596262, 46.8334082 ], + [ 7.0596327, 46.8334245 ], + [ 7.0596316, 46.8334343 ], + [ 7.0596383, 46.8334508 ], + [ 7.0596325, 46.8334593 ], + [ 7.0596358, 46.8334812 ], + [ 7.0596449, 46.8334979 ], + [ 7.0596511, 46.8335119 ], + [ 7.0596532, 46.8335283 ], + [ 7.0596475, 46.8335545 ], + [ 7.0596531, 46.8335686 ], + [ 7.0596579, 46.8335745 ], + [ 7.0596705, 46.8335812 ], + [ 7.0596871, 46.8335933 ], + [ 7.0597338, 46.8336428 ], + [ 7.0597498, 46.8336488 ], + [ 7.0597703, 46.8336471 ], + [ 7.0597933, 46.8336445 ], + [ 7.0598145, 46.8336438 ], + [ 7.0598475, 46.8336465 ], + [ 7.0598665, 46.8336509 ], + [ 7.0599025, 46.833667 ], + [ 7.0599534, 46.8336977 ], + [ 7.0599682, 46.8337029 ], + [ 7.0600023, 46.8336966 ], + [ 7.0600298, 46.8336907 ], + [ 7.0600472, 46.8336903 ], + [ 7.0600864, 46.8336945 ], + [ 7.0601078, 46.8336973 ], + [ 7.0601289, 46.8337018 ], + [ 7.0601842, 46.8336724 ], + [ 7.0603712, 46.833573200000004 ], + [ 7.060654, 46.83342 ], + [ 7.0607044, 46.8333929 ], + [ 7.0607654, 46.8333164 ], + [ 7.0609815, 46.8333338 ], + [ 7.0609862, 46.833334 ], + [ 7.0609909, 46.833334 ], + [ 7.0609956, 46.8333338 ], + [ 7.0610003, 46.8333334 ], + [ 7.0610049, 46.8333328 ], + [ 7.0610094, 46.833332 ], + [ 7.0610139, 46.8333309 ], + [ 7.0610182, 46.8333297 ], + [ 7.0610224, 46.8333283 ], + [ 7.0610265, 46.8333267 ], + [ 7.0610304, 46.8333249 ], + [ 7.0610342, 46.833323 ], + [ 7.0610377, 46.8333209 ], + [ 7.0610411, 46.8333186 ], + [ 7.0610442, 46.8333162 ], + [ 7.0610471, 46.8333137 ], + [ 7.0610497, 46.833311 ], + [ 7.0614137, 46.8329205 ], + [ 7.0614209, 46.8329127 ], + [ 7.0614274, 46.8329046 ], + [ 7.061433, 46.8328962 ], + [ 7.0614379, 46.8328876 ], + [ 7.0614419, 46.8328788 ], + [ 7.061445, 46.8328698 ], + [ 7.0614473, 46.8328607 ], + [ 7.0614487, 46.8328515 ], + [ 7.0614492, 46.8328423 ], + [ 7.0614488, 46.8328331 ], + [ 7.0614475, 46.8328239 ], + [ 7.0614453, 46.8328148 ], + [ 7.0614423, 46.8328058 ], + [ 7.0614384, 46.8327969 ], + [ 7.0614336, 46.8327883 ], + [ 7.061428, 46.8327799 ], + [ 7.0614217, 46.8327717 ], + [ 7.0613842, 46.832731 ], + [ 7.0614577, 46.8326615 ], + [ 7.0618119, 46.8323294 ], + [ 7.0620401, 46.8320943 ], + [ 7.0615199, 46.8318916 ], + [ 7.0615075, 46.8319021 ], + [ 7.061495, 46.8319124 ], + [ 7.0614824, 46.8319227 ], + [ 7.0614695, 46.8319329 ], + [ 7.0614566, 46.831943 ], + [ 7.0614435, 46.831953 ], + [ 7.0614302, 46.8319629 ], + [ 7.0614087, 46.8319785 ], + [ 7.0613868, 46.8319938 ], + [ 7.0613646, 46.8320088 ], + [ 7.061342, 46.8320236 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VBS_1-1", + "country" : "CHE", + "name" : [ + { + "text" : "VBS_15 Grolley", + "lang" : "de-CH" + }, + { + "text" : "VBS_15 Grolley", + "lang" : "fr-CH" + }, + { + "text" : "VBS_15 Grolley", + "lang" : "it-CH" + }, + { + "text" : "VBS_15 Grolley", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "regulationExemption" : "YES", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Eidgenössisches Departement für Verteidigung, Bevölkerungsschutz und Sport (VBS)", + "lang" : "de-CH" + }, + { + "text" : "Département fédéral de la défense, de la protection de la population et des sports (DDPS)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento federale della difesa, della protezione della popolazione e dello sport (DDPS)", + "lang" : "it-CH" + }, + { + "text" : "Federal Department of Defence, Civil Protection and Sport (DDPS)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Lageverfolgungszentrum der Armee LVZ A", + "lang" : "de-CH" + }, + { + "text" : "Centre de suivi de la situation de l’armée, CSS A", + "lang" : "fr-CH" + }, + { + "text" : "Centro di monitoraggio della situazione dell’esercito, Centro mon sit Es", + "lang" : "it-CH" + }, + { + "text" : "Joint Operation Center, JOC", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vtg.admin.ch/en/joint-operations-command", + "email" : "lvz.op@vtg.admin.ch", + "phone" : "+41 58 464 96 43", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.1009477, 46.3264873 ], + [ 7.1002105, 46.3253876 ], + [ 7.0995801, 46.3244493 ], + [ 7.0987325, 46.3239934 ], + [ 7.097355, 46.3233388 ], + [ 7.0962691, 46.3225925 ], + [ 7.095693, 46.3217011 ], + [ 7.0911449, 46.3210637 ], + [ 7.0899018, 46.3231595 ], + [ 7.0904221, 46.3244349 ], + [ 7.0915873, 46.3243656 ], + [ 7.093148, 46.3245719 ], + [ 7.093801, 46.3258117 ], + [ 7.0944966, 46.3266936 ], + [ 7.0959182, 46.3265396 ], + [ 7.0960324, 46.3265427 ], + [ 7.0980805, 46.3271084 ], + [ 7.0995148, 46.3267961 ], + [ 7.1009477, 46.3264873 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00060", + "country" : "CHE", + "name" : [ + { + "text" : "Secteur Perche", + "lang" : "de-CH" + }, + { + "text" : "Secteur Perche", + "lang" : "fr-CH" + }, + { + "text" : "Secteur Perche", + "lang" : "it-CH" + }, + { + "text" : "Secteur Perche", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "startDateTime" : "2024-11-15T00:00:00+01:00", + "endDateTime" : "2025-05-31T00:00:00+02:00" + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Generaldirektion für Umwelt", + "lang" : "de-CH" + }, + { + "text" : "Direction générale de l'environnement", + "lang" : "fr-CH" + }, + { + "text" : "Direzione generale dell'Ambiente", + "lang" : "it-CH" + }, + { + "text" : "Environment Department", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.dge@vd.ch", + "phone" : "0041213164422", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8828142, 47.4586302 ], + [ 7.8831886, 47.4587631 ], + [ 7.8832917, 47.4586602 ], + [ 7.8833849, 47.4581722 ], + [ 7.8834457, 47.457844 ], + [ 7.883463, 47.4574757 ], + [ 7.8834817, 47.457163 ], + [ 7.8835163999999995, 47.4566963 ], + [ 7.8839113, 47.456695 ], + [ 7.8840647, 47.4566934 ], + [ 7.8842821999999995, 47.4570976 ], + [ 7.8844904, 47.4574247 ], + [ 7.8847507, 47.457172 ], + [ 7.8851046, 47.4559769 ], + [ 7.8856119, 47.4553404 ], + [ 7.8861038, 47.4547255 ], + [ 7.8864374999999995, 47.4540921 ], + [ 7.8867362, 47.453481 ], + [ 7.8875627999999995, 47.4529316 ], + [ 7.8884519, 47.4523472 ], + [ 7.8887896, 47.4520393 ], + [ 7.8890008, 47.4516805 ], + [ 7.8892567, 47.45119 ], + [ 7.8895378, 47.4509181 ], + [ 7.8900267, 47.4505333 ], + [ 7.8905255, 47.4499404 ], + [ 7.8905711, 47.4499423 ], + [ 7.8907104, 47.4497602 ], + [ 7.8908018, 47.4496765 ], + [ 7.8914094, 47.4492402 ], + [ 7.8917314, 47.44904 ], + [ 7.8918907, 47.4489171 ], + [ 7.8922457, 47.4485834 ], + [ 7.8922494, 47.4485816 ], + [ 7.8922757, 47.4485697 ], + [ 7.8923105, 47.4484695 ], + [ 7.8924, 47.4477949 ], + [ 7.8926328, 47.4475004 ], + [ 7.8933587, 47.4470119 ], + [ 7.893563, 47.4469788 ], + [ 7.8938199000000004, 47.4469811 ], + [ 7.8939269, 47.4469855 ], + [ 7.8940076999999995, 47.4469803 ], + [ 7.8941218, 47.4469686 ], + [ 7.8941623, 47.4469503 ], + [ 7.8942198, 47.4468968 ], + [ 7.8943043, 47.4468958 ], + [ 7.8947917, 47.4467128 ], + [ 7.8949726, 47.4466338 ], + [ 7.8950207, 47.44661 ], + [ 7.8956188, 47.446251 ], + [ 7.8959715, 47.4460361 ], + [ 7.8960911, 47.445964 ], + [ 7.8961587, 47.4459246 ], + [ 7.8962666, 47.4458651 ], + [ 7.8962875, 47.4458581 ], + [ 7.8964396, 47.4458066 ], + [ 7.8965717, 47.445773 ], + [ 7.8966049, 47.4457653 ], + [ 7.8967857, 47.4457274 ], + [ 7.8968869, 47.445703 ], + [ 7.896897, 47.4457 ], + [ 7.8969213, 47.4456927 ], + [ 7.8969895999999995, 47.4456722 ], + [ 7.8970545, 47.4456388 ], + [ 7.8971386, 47.4455983 ], + [ 7.8972375, 47.4455614 ], + [ 7.897685, 47.4454118 ], + [ 7.8977768, 47.4453623 ], + [ 7.8978519, 47.4453164 ], + [ 7.8979043, 47.4452734 ], + [ 7.8982091, 47.4450098 ], + [ 7.8983004999999995, 47.4449389 ], + [ 7.898386, 47.4448733 ], + [ 7.8984849, 47.4448055 ], + [ 7.8985663, 47.444756 ], + [ 7.8987164, 47.4446902 ], + [ 7.8988442, 47.444652 ], + [ 7.8989137, 47.444638 ], + [ 7.8992895999999995, 47.4445751 ], + [ 7.8994479, 47.4445553 ], + [ 7.8998044, 47.4445301 ], + [ 7.9000179, 47.4445211 ], + [ 7.9005142, 47.4445431 ], + [ 7.9007751, 47.4445629 ], + [ 7.9013636, 47.4446599 ], + [ 7.9018353999999995, 47.4447076 ], + [ 7.901892, 47.4447116 ], + [ 7.9019514, 47.4447198 ], + [ 7.9022223, 47.4447233 ], + [ 7.9024954, 47.4447432 ], + [ 7.9029592, 47.4448205 ], + [ 7.9031061, 47.4448265 ], + [ 7.9032319, 47.4448113 ], + [ 7.9033902, 47.4447767 ], + [ 7.9035332, 47.4447431 ], + [ 7.9037003, 47.4446915 ], + [ 7.9039159, 47.4446238 ], + [ 7.9041215, 47.4445622 ], + [ 7.9042862, 47.4445412 ], + [ 7.9043513999999995, 47.4445173 ], + [ 7.9044267999999995, 47.4445155 ], + [ 7.9044993, 47.4445353 ], + [ 7.9043475999999995, 47.4444193 ], + [ 7.9045594, 47.4443181 ], + [ 7.9048328, 47.4442936 ], + [ 7.9045455, 47.4440537 ], + [ 7.9046029, 47.4439431 ], + [ 7.9046312, 47.4438731 ], + [ 7.9045863, 47.4438502 ], + [ 7.9045247, 47.4438338 ], + [ 7.9043659, 47.4438252 ], + [ 7.904239, 47.4438472 ], + [ 7.9037562, 47.4440052 ], + [ 7.9033318, 47.4440621 ], + [ 7.9029828, 47.4440528 ], + [ 7.9019511, 47.4438694 ], + [ 7.9016129, 47.4437817 ], + [ 7.9014811, 47.4437474 ], + [ 7.9010549999999995, 47.4436991 ], + [ 7.9003032, 47.4436362 ], + [ 7.8998095, 47.4436313 ], + [ 7.8993801, 47.4436528 ], + [ 7.898898, 47.4437113 ], + [ 7.8982339, 47.4438168 ], + [ 7.8975953, 47.44396 ], + [ 7.8970909, 47.444034 ], + [ 7.8963936, 47.444089 ], + [ 7.8963863, 47.4440937 ], + [ 7.8957076, 47.4442392 ], + [ 7.8952191, 47.444401 ], + [ 7.8946552, 47.4446099 ], + [ 7.8941859999999995, 47.4448788 ], + [ 7.8935601, 47.4451956 ], + [ 7.8932371, 47.4453409 ], + [ 7.8933167, 47.4454782 ], + [ 7.8925574, 47.4457184 ], + [ 7.892732, 47.4460166 ], + [ 7.8922983, 47.4460951 ], + [ 7.8918591, 47.4462371 ], + [ 7.8915106999999995, 47.4463814 ], + [ 7.891103, 47.4466067 ], + [ 7.8904554000000005, 47.4470569 ], + [ 7.890257, 47.4469833 ], + [ 7.8899647, 47.4471972 ], + [ 7.8898781, 47.4471435 ], + [ 7.8894839, 47.4475448 ], + [ 7.8894261, 47.4476334 ], + [ 7.8893913, 47.4476869 ], + [ 7.8893884, 47.4476897 ], + [ 7.8896048, 47.4478353 ], + [ 7.8896256, 47.4477255 ], + [ 7.8898976, 47.4478534 ], + [ 7.8901287, 47.4480331 ], + [ 7.8901268, 47.448244 ], + [ 7.8900904, 47.4484973 ], + [ 7.8900418, 47.4486237 ], + [ 7.8898128, 47.4485578 ], + [ 7.8894364, 47.4484493 ], + [ 7.8889954, 47.448779 ], + [ 7.8888519, 47.4488767 ], + [ 7.8886552, 47.449011 ], + [ 7.8885876, 47.4492687 ], + [ 7.8882788999999995, 47.4494743 ], + [ 7.8879173, 47.449676 ], + [ 7.8878526, 47.4497174 ], + [ 7.8876108, 47.449864 ], + [ 7.8871931, 47.4503702 ], + [ 7.8871613, 47.4504456 ], + [ 7.8870296, 47.4507541 ], + [ 7.8869666, 47.4511352 ], + [ 7.8868466999999995, 47.451333 ], + [ 7.8866291, 47.4515442 ], + [ 7.8863328, 47.4517369 ], + [ 7.8859446, 47.4518926 ], + [ 7.886101, 47.4520158 ], + [ 7.8862783, 47.4521559 ], + [ 7.8861519, 47.4523436 ], + [ 7.8859329, 47.4525749 ], + [ 7.8856602, 47.4528784 ], + [ 7.8855175, 47.4530551 ], + [ 7.8854723, 47.453204 ], + [ 7.8854444, 47.4533742 ], + [ 7.8854476, 47.4535428 ], + [ 7.8854958, 47.4537299 ], + [ 7.8855397, 47.4539722 ], + [ 7.8855961, 47.4543 ], + [ 7.8855427, 47.4545201 ], + [ 7.8853782, 47.4546973 ], + [ 7.885105, 47.4548175 ], + [ 7.8848999, 47.4548702 ], + [ 7.8845136, 47.4550626 ], + [ 7.884171, 47.455214 ], + [ 7.8840146, 47.4554518 ], + [ 7.8839347, 47.4556602 ], + [ 7.8838669, 47.4558514 ], + [ 7.8833946, 47.4558487 ], + [ 7.8832002, 47.455854 ], + [ 7.8829721, 47.4558602 ], + [ 7.8827549, 47.4558667 ], + [ 7.8827145, 47.4558679 ], + [ 7.8827871, 47.4560428 ], + [ 7.8830187, 47.4563459 ], + [ 7.8830458, 47.4565607 ], + [ 7.883035, 47.4567861 ], + [ 7.8829612000000004, 47.4569943 ], + [ 7.8829574000000004, 47.4571515 ], + [ 7.8829945, 47.4573501 ], + [ 7.8830222, 47.4575723 ], + [ 7.8830395, 47.4577861 ], + [ 7.8830013999999995, 47.458032 ], + [ 7.8828165, 47.4586266 ], + [ 7.8828142, 47.4586302 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns204", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Eital - Summerholden", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Eital - Summerholden", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Eital - Summerholden", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Eital - Summerholden", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8180249, 46.0291618 ], + [ 7.8179201, 46.0268082 ], + [ 7.8176386, 46.0244617 ], + [ 7.8171813, 46.0221286 ], + [ 7.8165493, 46.0198154 ], + [ 7.8157445, 46.0175284 ], + [ 7.8147690999999995, 46.0152738 ], + [ 7.8136257, 46.013058 ], + [ 7.8123176, 46.0108868 ], + [ 7.8108482, 46.0087663 ], + [ 7.8092217999999995, 46.0067022 ], + [ 7.8074427, 46.0047003 ], + [ 7.8055157, 46.002766 ], + [ 7.8034464, 46.0009045 ], + [ 7.8012401, 45.999121099999996 ], + [ 7.7989032, 45.9974205 ], + [ 7.7964418, 45.9958074 ], + [ 7.7938629, 45.9942863 ], + [ 7.7911734, 45.9928612 ], + [ 7.7883808, 45.9915362 ], + [ 7.7854925999999995, 45.9903147 ], + [ 7.7825167, 45.9892003 ], + [ 7.7794614, 45.9881958 ], + [ 7.7763349999999996, 45.9873041 ], + [ 7.773146, 45.9865275 ], + [ 7.7699031, 45.9858683 ], + [ 7.7666153, 45.9853282 ], + [ 7.7632915, 45.9849087 ], + [ 7.7599407, 45.984611 ], + [ 7.7565723, 45.9844358 ], + [ 7.7531953, 45.9843836 ], + [ 7.7498190000000005, 45.9844546 ], + [ 7.7464527, 45.9846486 ], + [ 7.7431055, 45.984965 ], + [ 7.7397866, 45.9854031 ], + [ 7.736505, 45.9859615 ], + [ 7.7332698, 45.9866388 ], + [ 7.7300898, 45.9874331 ], + [ 7.7269737, 45.9883422 ], + [ 7.72393, 45.9893637 ], + [ 7.7209671, 45.9904947 ], + [ 7.718093, 45.9917322 ], + [ 7.7153156, 45.9930728 ], + [ 7.7126426, 45.9945128 ], + [ 7.7100812, 45.9960483 ], + [ 7.7076384000000004, 45.997675 ], + [ 7.7053211, 45.9993886 ], + [ 7.7031354, 46.0011843 ], + [ 7.7010874, 46.0030572 ], + [ 7.6991828, 46.0050022 ], + [ 7.6974267, 46.007014 ], + [ 7.695824, 46.0090871 ], + [ 7.6943791, 46.0112157 ], + [ 7.6930959, 46.0133941 ], + [ 7.691978, 46.0156163 ], + [ 7.6910286, 46.0178762 ], + [ 7.69025, 46.0201676 ], + [ 7.6896447, 46.0224843 ], + [ 7.6892142, 46.0248199 ], + [ 7.6889597, 46.0271679 ], + [ 7.6888819, 46.029522 ], + [ 7.6889812, 46.0318758 ], + [ 7.6892572, 46.0342226 ], + [ 7.6897091, 46.0365562 ], + [ 7.6903359, 46.0388702 ], + [ 7.6911358, 46.0411581 ], + [ 7.6921066, 46.0434137 ], + [ 7.6932456, 46.0456308 ], + [ 7.6945499, 46.0478034 ], + [ 7.6960157, 46.0499254 ], + [ 7.6976392, 46.0519911 ], + [ 7.6994158, 46.0539948 ], + [ 7.7013408, 46.0559309 ], + [ 7.7034088, 46.0577943 ], + [ 7.7056142, 46.0595796 ], + [ 7.7079509, 46.0612822 ], + [ 7.7104126, 46.0628972 ], + [ 7.7129924, 46.0644203 ], + [ 7.7156834, 46.0658472 ], + [ 7.7184781000000005, 46.067174 ], + [ 7.7213688, 46.0683972 ], + [ 7.7243477, 46.0695133 ], + [ 7.7274066, 46.0705193 ], + [ 7.730537, 46.0714124 ], + [ 7.7337304, 46.0721901 ], + [ 7.7369779, 46.0728504 ], + [ 7.7402707, 46.0733913 ], + [ 7.7435998, 46.0738115 ], + [ 7.7469559, 46.0741098 ], + [ 7.7503298, 46.0742853 ], + [ 7.7537123999999995, 46.0743375 ], + [ 7.7570942, 46.0742664 ], + [ 7.7604661, 46.0740721 ], + [ 7.7638186000000005, 46.0737551 ], + [ 7.7671427, 46.0733164 ], + [ 7.7704292, 46.0727571 ], + [ 7.773669, 46.0720787 ], + [ 7.7768533, 46.0712832 ], + [ 7.7799733, 46.0703727 ], + [ 7.7830205, 46.0693497 ], + [ 7.7859864, 46.068217 ], + [ 7.788863, 46.0669777 ], + [ 7.7916422999999995, 46.0656353 ], + [ 7.7943168, 46.0641934 ], + [ 7.796879, 46.062656 ], + [ 7.799322, 46.0610273 ], + [ 7.801639, 46.0593118 ], + [ 7.8038238, 46.0575142 ], + [ 7.8058703, 46.0556394 ], + [ 7.8077729, 46.0536926 ], + [ 7.8095264, 46.051679 ], + [ 7.811126, 46.0496044 ], + [ 7.8125674, 46.0474742 ], + [ 7.8138466, 46.0452945 ], + [ 7.8149601, 46.043071 ], + [ 7.8159049, 46.0408101 ], + [ 7.8166784, 46.0385178 ], + [ 7.8172786, 46.0362004 ], + [ 7.8177037, 46.0338644 ], + [ 7.8179527, 46.0315161 ], + [ 7.8180249, 46.0291618 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSEZ001", + "country" : "CHE", + "name" : [ + { + "text" : "LSEZ Zermatt", + "lang" : "de-CH" + }, + { + "text" : "LSEZ Zermatt", + "lang" : "fr-CH" + }, + { + "text" : "LSEZ Zermatt", + "lang" : "it-CH" + }, + { + "text" : "LSEZ Zermatt", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Air Zermatt AG", + "lang" : "de-CH" + }, + { + "text" : "Air Zermatt AG", + "lang" : "fr-CH" + }, + { + "text" : "Air Zermatt AG", + "lang" : "it-CH" + }, + { + "text" : "Air Zermatt AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.air-zermatt.ch/en/air-zermatt/contact", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.0713938, 46.162768 ], + [ 6.0711241, 46.1617319 ], + [ 6.0703044, 46.1608463 ], + [ 6.0690593, 46.1602461 ], + [ 6.0675785, 46.1600226 ], + [ 6.0660874, 46.1602099 ], + [ 6.0648129, 46.1607795 ], + [ 6.063949, 46.1616446 ], + [ 6.0636273, 46.1626736 ], + [ 6.0638969, 46.1637098 ], + [ 6.0647166, 46.1645954 ], + [ 6.0659617, 46.1651956 ], + [ 6.0674426, 46.1654191 ], + [ 6.0689339, 46.1652318 ], + [ 6.0702084, 46.1646622 ], + [ 6.0710722, 46.163797 ], + [ 6.0713938, 46.162768 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-53", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.0541978, 47.5500574 ], + [ 8.0541883, 47.5498692 ], + [ 8.0541643, 47.5496815 ], + [ 8.0541259, 47.549495 ], + [ 8.054073, 47.5493101 ], + [ 8.054006, 47.5491273 ], + [ 8.0539249, 47.5489471 ], + [ 8.05383, 47.5487701 ], + [ 8.0537215, 47.5485967 ], + [ 8.0535998, 47.5484273 ], + [ 8.0534651, 47.5482625 ], + [ 8.0533179, 47.5481027 ], + [ 8.0531586, 47.5479483 ], + [ 8.0529875, 47.5477998 ], + [ 8.0528052, 47.5476575 ], + [ 8.0526121, 47.5475219 ], + [ 8.0524088, 47.5473933 ], + [ 8.0521959, 47.5472722 ], + [ 8.0519739, 47.5471587 ], + [ 8.0517434, 47.5470532 ], + [ 8.0515051, 47.5469561 ], + [ 8.0512596, 47.5468675 ], + [ 8.0510076, 47.5467877 ], + [ 8.0507498, 47.546717 ], + [ 8.0504868, 47.5466555 ], + [ 8.0502195, 47.5466034 ], + [ 8.0499485, 47.5465609 ], + [ 8.0496746, 47.546528 ], + [ 8.0493985, 47.5465049 ], + [ 8.0491211, 47.5464916 ], + [ 8.0488429, 47.5464881 ], + [ 8.0485649, 47.5464945 ], + [ 8.0482878, 47.5465107 ], + [ 8.0480123, 47.5465368 ], + [ 8.0477392, 47.5465725 ], + [ 8.0474692, 47.5466179 ], + [ 8.0472031, 47.5466728 ], + [ 8.0469416, 47.546737 ], + [ 8.0466854, 47.5468105 ], + [ 8.0464353, 47.5468929 ], + [ 8.0461918, 47.546984 ], + [ 8.0459558, 47.5470837 ], + [ 8.0457278, 47.5471915 ], + [ 8.0455084, 47.5473073 ], + [ 8.0452982, 47.5474308 ], + [ 8.0450979, 47.5475615 ], + [ 8.044908, 47.5476991 ], + [ 8.044729, 47.5478432 ], + [ 8.0445614, 47.5479935 ], + [ 8.0444056, 47.5481496 ], + [ 8.044262, 47.5483109 ], + [ 8.0441312, 47.5484771 ], + [ 8.0440134, 47.5486477 ], + [ 8.0439089, 47.5488223 ], + [ 8.0438181, 47.5490003 ], + [ 8.0437411, 47.5491813 ], + [ 8.0436783, 47.5493648 ], + [ 8.0436297, 47.5495502 ], + [ 8.0435955, 47.5497371 ], + [ 8.0435758, 47.549925 ], + [ 8.0435707, 47.5501133 ], + [ 8.0435801, 47.5503016 ], + [ 8.043604, 47.5504892 ], + [ 8.0436425, 47.5506757 ], + [ 8.0436953, 47.5508607 ], + [ 8.0437623, 47.5510435 ], + [ 8.0438434, 47.5512236 ], + [ 8.0439383, 47.5514007 ], + [ 8.0440467, 47.5515741 ], + [ 8.0441684, 47.5517435 ], + [ 8.044303, 47.5519083 ], + [ 8.0444502, 47.5520681 ], + [ 8.0446096, 47.5522225 ], + [ 8.0447806, 47.552371 ], + [ 8.0449629, 47.5525133 ], + [ 8.045156, 47.5526489 ], + [ 8.0453593, 47.5527775 ], + [ 8.0455722, 47.5528987 ], + [ 8.0457942, 47.5530122 ], + [ 8.0460247, 47.5531177 ], + [ 8.0462631, 47.5532149 ], + [ 8.0465086, 47.5533035 ], + [ 8.0467606, 47.5533832 ], + [ 8.0470185, 47.5534539 ], + [ 8.0472814, 47.5535154 ], + [ 8.0475488, 47.5535675 ], + [ 8.0478198, 47.5536101 ], + [ 8.0480937, 47.553643 ], + [ 8.0483699, 47.5536661 ], + [ 8.0486474, 47.5536794 ], + [ 8.0489255, 47.5536829 ], + [ 8.0492036, 47.5536765 ], + [ 8.0494808, 47.5536602 ], + [ 8.0497563, 47.5536342 ], + [ 8.0500295, 47.5535984 ], + [ 8.0502995, 47.553553 ], + [ 8.0505656, 47.5534982 ], + [ 8.0508271, 47.5534339 ], + [ 8.0510833, 47.5533605 ], + [ 8.0513335, 47.5532781 ], + [ 8.0515769, 47.5531869 ], + [ 8.051813, 47.5530872 ], + [ 8.0520411, 47.5529794 ], + [ 8.0522604, 47.5528635 ], + [ 8.0524706, 47.5527401 ], + [ 8.0526709, 47.5526094 ], + [ 8.0528608, 47.5524718 ], + [ 8.0530398, 47.5523276 ], + [ 8.0532075, 47.5521773 ], + [ 8.0533632, 47.5520212 ], + [ 8.0535067, 47.5518599 ], + [ 8.0536376, 47.5516937 ], + [ 8.0537554, 47.551523 ], + [ 8.0538598, 47.5513485 ], + [ 8.0539506, 47.5511704 ], + [ 8.0540275, 47.5509894 ], + [ 8.0540904, 47.550806 ], + [ 8.0541389, 47.5506205 ], + [ 8.0541731, 47.5504336 ], + [ 8.0541927, 47.5502457 ], + [ 8.0541978, 47.5500574 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0060", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Laufenburg", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Laufenburg", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Laufenburg", + "lang" : "it-CH" + }, + { + "text" : "Substation Laufenburg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8627465999999995, 47.4826621 ], + [ 7.8625492999999995, 47.4828818 ], + [ 7.8623719, 47.4831173 ], + [ 7.8622333, 47.4834052 ], + [ 7.8619924999999995, 47.4835274 ], + [ 7.8613205, 47.4836699 ], + [ 7.8606902, 47.4838286 ], + [ 7.8602270999999995, 47.4839443 ], + [ 7.8598251, 47.4841023 ], + [ 7.8596524, 47.4842314 ], + [ 7.8594529, 47.4843561 ], + [ 7.8595871, 47.4846231 ], + [ 7.8595101, 47.484846 ], + [ 7.8593468, 47.4850729 ], + [ 7.8592197, 47.4851501 ], + [ 7.8588992, 47.485325 ], + [ 7.8590166, 47.4855669 ], + [ 7.8590097, 47.4858274 ], + [ 7.8589459999999995, 47.4861431 ], + [ 7.8589513, 47.486303 ], + [ 7.8587899, 47.4865563 ], + [ 7.8587216, 47.4868282 ], + [ 7.8588463, 47.4870553 ], + [ 7.8591524, 47.4874052 ], + [ 7.8595718, 47.4878234 ], + [ 7.8598627, 47.4880376 ], + [ 7.8601892, 47.4882094 ], + [ 7.8604672, 47.4882298 ], + [ 7.8607823, 47.4883719 ], + [ 7.8611282, 47.4884776 ], + [ 7.8615108, 47.4885272 ], + [ 7.8623085, 47.4885435 ], + [ 7.8628978, 47.4885555 ], + [ 7.8631892, 47.488618 ], + [ 7.8634933, 47.4887671 ], + [ 7.8636236, 47.4888694 ], + [ 7.8638163, 47.4888583 ], + [ 7.8642339, 47.4888341 ], + [ 7.8656793, 47.4886122 ], + [ 7.8652816, 47.4879479 ], + [ 7.8648817, 47.4872821 ], + [ 7.864441, 47.4865185 ], + [ 7.8644407, 47.4865181 ], + [ 7.8644358, 47.4865122 ], + [ 7.8638776, 47.4858391 ], + [ 7.8633615, 47.4852149 ], + [ 7.8633606, 47.4852137 ], + [ 7.8633388, 47.4850455 ], + [ 7.8633313, 47.4850053 ], + [ 7.8631872, 47.4842344 ], + [ 7.8631813, 47.4842031 ], + [ 7.8628222999999995, 47.4827464 ], + [ 7.8628222999999995, 47.4827462 ], + [ 7.8627465999999995, 47.4826621 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr012", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Farnsberg", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Farnsberg", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Farnsberg", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Farnsberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5992563, 47.4547204 ], + [ 7.5994837, 47.4552279 ], + [ 7.5999982, 47.4563766 ], + [ 7.6001542, 47.4565818 ], + [ 7.6004123, 47.456636 ], + [ 7.6007193, 47.4568015 ], + [ 7.6008854, 47.4571112 ], + [ 7.6012024, 47.4572088 ], + [ 7.6016183999999996, 47.4575447 ], + [ 7.6020078, 47.4578738 ], + [ 7.6021626, 47.4580593 ], + [ 7.6025523, 47.4580738 ], + [ 7.6027924, 47.4582423 ], + [ 7.603128, 47.4584426 ], + [ 7.603116, 47.4585543 ], + [ 7.6034851, 47.4587792 ], + [ 7.6035734, 47.4590198 ], + [ 7.6039823, 47.4592272 ], + [ 7.604344, 47.4593626 ], + [ 7.6044295, 47.4594315 ], + [ 7.6045359999999995, 47.4595172 ], + [ 7.6046236, 47.459586 ], + [ 7.6046863, 47.4596353 ], + [ 7.6047183, 47.4597789 ], + [ 7.6044623, 47.4600055 ], + [ 7.6041134, 47.4605101 ], + [ 7.6039074, 47.4608785 ], + [ 7.6030199, 47.4615734 ], + [ 7.602708, 47.4616058 ], + [ 7.6024658, 47.4618136 ], + [ 7.6027653, 47.4621482 ], + [ 7.6029884, 47.4623976 ], + [ 7.6030344, 47.4623631 ], + [ 7.6030713, 47.4623346 ], + [ 7.6031163, 47.4623073 ], + [ 7.6031791, 47.462269 ], + [ 7.603232, 47.4622361 ], + [ 7.603277, 47.4622098 ], + [ 7.6033317, 47.4621781 ], + [ 7.6033752, 47.4621627 ], + [ 7.6034234, 47.4621397 ], + [ 7.6034911, 47.4621145 ], + [ 7.6035569, 47.4620948 ], + [ 7.6036439, 47.462076 ], + [ 7.6037243, 47.4620541 ], + [ 7.6038663, 47.4619118 ], + [ 7.6041329, 47.4616539 ], + [ 7.60419, 47.461607 ], + [ 7.6042667999999995, 47.4615738 ], + [ 7.6043597, 47.4615287 ], + [ 7.6044277000000005, 47.461476 ], + [ 7.6044783, 47.4614391 ], + [ 7.6045405, 47.4614073 ], + [ 7.6046425, 47.4613719 ], + [ 7.6047385, 47.4613394 ], + [ 7.6048294, 47.4613151 ], + [ 7.6050406, 47.4612408 ], + [ 7.6051943, 47.4611456 ], + [ 7.6052843, 47.4610833 ], + [ 7.6054013, 47.4610251 ], + [ 7.6056541, 47.4608828 ], + [ 7.6057182, 47.4608364 ], + [ 7.605938, 47.4606587 ], + [ 7.6059895, 47.4606126 ], + [ 7.6062136, 47.4603574 ], + [ 7.6062507, 47.4603028 ], + [ 7.6062803, 47.4602586 ], + [ 7.6063216, 47.4601961 ], + [ 7.6063621999999995, 47.4601334 ], + [ 7.6063846999999996, 47.4600996 ], + [ 7.6064029, 47.4600698 ], + [ 7.6064232, 47.460025 ], + [ 7.6064516, 47.4599655 ], + [ 7.6064631, 47.4599319 ], + [ 7.6064758, 47.4598941 ], + [ 7.6064804, 47.4598662 ], + [ 7.6064818, 47.4598157 ], + [ 7.6064783, 47.4597788 ], + [ 7.6064727, 47.4597557 ], + [ 7.6064568999999995, 47.4597133 ], + [ 7.6064429, 47.4596792 ], + [ 7.6064285, 47.4596465 ], + [ 7.6063925, 47.4595768 ], + [ 7.6063568, 47.4595049 ], + [ 7.6063191, 47.4594343 ], + [ 7.6063064, 47.4594004 ], + [ 7.6062907, 47.4593697 ], + [ 7.6062798, 47.4593417 ], + [ 7.6062572, 47.4592917 ], + [ 7.606238, 47.4592667 ], + [ 7.6062114, 47.4592286 ], + [ 7.6061822, 47.4591748 ], + [ 7.6061697, 47.4591365 ], + [ 7.6061616, 47.4590974 ], + [ 7.6061623, 47.4590464 ], + [ 7.6061673, 47.4590008 ], + [ 7.6061701, 47.458963 ], + [ 7.6061707, 47.4589335 ], + [ 7.6061647, 47.4589057 ], + [ 7.6061494, 47.458875 ], + [ 7.6061355, 47.4588472 ], + [ 7.6061189, 47.4588194 ], + [ 7.6061046999999995, 47.4587975 ], + [ 7.6060915, 47.4587735 ], + [ 7.6060732, 47.4587467 ], + [ 7.6060567, 47.4587203 ], + [ 7.6060242, 47.458671 ], + [ 7.605983, 47.4586099 ], + [ 7.6059235, 47.4585394 ], + [ 7.6058599000000005, 47.4584856 ], + [ 7.6058308, 47.4584633 ], + [ 7.6057372, 47.4583877 ], + [ 7.6056174, 47.4582893 ], + [ 7.6054919, 47.4581849 ], + [ 7.6054008, 47.4581081 ], + [ 7.6051282, 47.4578953 ], + [ 7.6047147, 47.4575727 ], + [ 7.6046407, 47.4575183 ], + [ 7.6045418, 47.4574537 ], + [ 7.604473, 47.4574114 ], + [ 7.6044363, 47.4573885 ], + [ 7.6042918, 47.4573104 ], + [ 7.604076, 47.4572076 ], + [ 7.604014, 47.4571814 ], + [ 7.6039397, 47.4571477 ], + [ 7.6039183, 47.4571377 ], + [ 7.6038753, 47.457115 ], + [ 7.6038349, 47.4570916 ], + [ 7.6027097999999995, 47.4564502 ], + [ 7.6025679, 47.4563665 ], + [ 7.6024939, 47.4563094 ], + [ 7.602194, 47.4561424 ], + [ 7.6019859, 47.4560193 ], + [ 7.6017779999999995, 47.4558945 ], + [ 7.6015847999999995, 47.4557916 ], + [ 7.6013677, 47.4556824 ], + [ 7.6011463, 47.4555661 ], + [ 7.6008387, 47.4554092 ], + [ 7.6007502, 47.4553711 ], + [ 7.6002767, 47.4551653 ], + [ 7.5998799, 47.4549925 ], + [ 7.5994968, 47.4548327 ], + [ 7.5993179, 47.4547592 ], + [ 7.5992563, 47.4547204 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns090", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Duggingen, Muggenberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Duggingen, Muggenberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Duggingen, Muggenberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Duggingen, Muggenberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.9137835, 46.0118545 ], + [ 8.9140137, 46.0119172 ], + [ 8.9147314, 46.0116693 ], + [ 8.9147854, 46.0115624 ], + [ 8.914692, 46.0109267 ], + [ 8.9140881, 46.0097002 ], + [ 8.9140408, 46.0093823 ], + [ 8.912803199999999, 46.0065842 ], + [ 8.9128373, 46.0064119 ], + [ 8.9118667, 46.0043211 ], + [ 8.9102178, 46.000912 ], + [ 8.908715, 45.9978393 ], + [ 8.9084412, 45.9978825 ], + [ 8.9083167, 45.9976709 ], + [ 8.9057707, 45.997903 ], + [ 8.9072049, 46.0007823 ], + [ 8.9063665, 46.000957 ], + [ 8.9065028, 46.001226 ], + [ 8.9051875, 46.0014753 ], + [ 8.9048929, 46.0013712 ], + [ 8.9047585, 46.0015088 ], + [ 8.905005899999999, 46.001636 ], + [ 8.9056456, 46.0031032 ], + [ 8.9065425, 46.0048154 ], + [ 8.9071052, 46.0058139 ], + [ 8.9090576, 46.0052927 ], + [ 8.9099702, 46.0060509 ], + [ 8.9103303, 46.0066697 ], + [ 8.9107167, 46.007594 ], + [ 8.9109359, 46.0079628 ], + [ 8.911153, 46.0082118 ], + [ 8.9122899, 46.0094313 ], + [ 8.9127338, 46.010328 ], + [ 8.9127176, 46.0104478 ], + [ 8.9128524, 46.0105126 ], + [ 8.9130563, 46.0109877 ], + [ 8.9133901, 46.0113945 ], + [ 8.9137835, 46.0118545 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZA002", + "country" : "CHE", + "name" : [ + { + "text" : "LSZA Lugano (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSZA Lugano (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSZA Lugano (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSZA Lugano (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Lugano Airport / Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Lugano Airport / Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Lugano Airport / Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Lugano Airport / Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Skyguide Special Flight Office", + "lang" : "de-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "it-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "en-GB" + } + ], + "siteURL" : "https://skyguide.ch/services/special-flights", + "email" : "info@luganoairport.ch", + "phone" : "0041916101111", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.132366, 46.4168326 ], + [ 9.1323744, 46.4168516 ], + [ 9.1324654, 46.4171081 ], + [ 9.1324288, 46.41807 ], + [ 9.1324695, 46.4184634 ], + [ 9.1325865, 46.4187706 ], + [ 9.1328475, 46.4191867 ], + [ 9.1330335, 46.4194396 ], + [ 9.1332442, 46.4198324 ], + [ 9.1333339, 46.4199965 ], + [ 9.133581, 46.4203562 ], + [ 9.1336012, 46.4205865 ], + [ 9.133521, 46.4207523 ], + [ 9.1333477, 46.4210357 ], + [ 9.1332691, 46.4213542 ], + [ 9.1332681, 46.4216878 ], + [ 9.1331821, 46.4219536 ], + [ 9.1334371, 46.4220189 ], + [ 9.1337807, 46.422087 ], + [ 9.1340112, 46.4221243 ], + [ 9.1341298, 46.4221469 ], + [ 9.134243, 46.4222021 ], + [ 9.1341149, 46.4222407 ], + [ 9.1340036, 46.4222708 ], + [ 9.1338943, 46.4223375 ], + [ 9.1337818, 46.4225102 ], + [ 9.133682, 46.4226988 ], + [ 9.1335436, 46.4227986 ], + [ 9.1332404, 46.4230635 ], + [ 9.1328478, 46.4234843 ], + [ 9.1323739, 46.4239592 ], + [ 9.1318877, 46.424406 ], + [ 9.1315062, 46.4247941 ], + [ 9.1313372, 46.4250325 ], + [ 9.1311933, 46.4253195 ], + [ 9.1310222, 46.4254928 ], + [ 9.1310396, 46.4256839 ], + [ 9.1310549, 46.4259928 ], + [ 9.1309666, 46.4263684 ], + [ 9.1309795, 46.4266002 ], + [ 9.1311598, 46.4267236 ], + [ 9.1313098, 46.4268388 ], + [ 9.1313552, 46.4269371 ], + [ 9.1316413, 46.4268281 ], + [ 9.1321415, 46.4267251 ], + [ 9.1324322, 46.4266346 ], + [ 9.1328007, 46.4264535 ], + [ 9.133119, 46.4263872 ], + [ 9.1333272, 46.4263349 ], + [ 9.1335351, 46.4261685 ], + [ 9.1338197, 46.4260103 ], + [ 9.1342522, 46.4258776 ], + [ 9.1345307, 46.4258088 ], + [ 9.1346284, 46.4258135 ], + [ 9.1348803, 46.4258835 ], + [ 9.1355658, 46.4258825 ], + [ 9.135846, 46.4258721 ], + [ 9.1359736, 46.4258179 ], + [ 9.1361828, 46.425667 ], + [ 9.1365047, 46.4254281 ], + [ 9.1366503, 46.4253766 ], + [ 9.1368022, 46.425396 ], + [ 9.1370784, 46.4255427 ], + [ 9.1372735, 46.4256722 ], + [ 9.13745, 46.4257496 ], + [ 9.1376689, 46.4257802 ], + [ 9.1378259, 46.4258086 ], + [ 9.1380432, 46.4259163 ], + [ 9.1383597, 46.4260778 ], + [ 9.1386572, 46.4261749 ], + [ 9.1391009, 46.4262668 ], + [ 9.1394519, 46.426284 ], + [ 9.1396823, 46.4262914 ], + [ 9.1399064, 46.4263584 ], + [ 9.1400806, 46.4264136 ], + [ 9.1402815, 46.4264937 ], + [ 9.1405002, 46.4266456 ], + [ 9.1406607, 46.4267589 ], + [ 9.1408916, 46.4268096 ], + [ 9.1410871, 46.4268716 ], + [ 9.1412208, 46.42696 ], + [ 9.1413398, 46.4270991 ], + [ 9.1414372, 46.427195 ], + [ 9.1416353, 46.4273654 ], + [ 9.1419191, 46.4275706 ], + [ 9.1421483, 46.4277225 ], + [ 9.1423581, 46.4279289 ], + [ 9.1424628, 46.4281043 ], + [ 9.1425793, 46.4283157 ], + [ 9.142661, 46.4284084 ], + [ 9.1427722, 46.428479 ], + [ 9.1429938, 46.4285406 ], + [ 9.1433258, 46.4286259 ], + [ 9.1435513, 46.4286586 ], + [ 9.1438756, 46.4286754 ], + [ 9.1441377, 46.4287112 ], + [ 9.1443432, 46.4287551 ], + [ 9.1444346, 46.4288403 ], + [ 9.1446154, 46.4289531 ], + [ 9.1447845, 46.4290012 ], + [ 9.1449357, 46.4289989 ], + [ 9.1451328, 46.4289563 ], + [ 9.1452732, 46.4289216 ], + [ 9.1455285, 46.4289178 ], + [ 9.1456951, 46.4288901 ], + [ 9.1458861, 46.4288329 ], + [ 9.1460647, 46.428693 ], + [ 9.1461675, 46.4286264 ], + [ 9.1463596, 46.4286055 ], + [ 9.1466194, 46.4285654 ], + [ 9.1468804, 46.4285398 ], + [ 9.1472043, 46.4285458 ], + [ 9.1473798, 46.428489 ], + [ 9.1474943, 46.4284836 ], + [ 9.147663, 46.4285209 ], + [ 9.1478592, 46.4286045 ], + [ 9.1480585, 46.4286305 ], + [ 9.1482922, 46.4285872 ], + [ 9.1487153, 46.4286975 ], + [ 9.1492953, 46.4287285 ], + [ 9.1498973, 46.4286562 ], + [ 9.150313, 46.4284777 ], + [ 9.1507134, 46.428334 ], + [ 9.1511511, 46.4283099 ], + [ 9.1517367, 46.4282606 ], + [ 9.1522411, 46.4282413 ], + [ 9.1529531, 46.4282531 ], + [ 9.15357, 46.4281632 ], + [ 9.1540132, 46.4280588 ], + [ 9.1544646, 46.4279314 ], + [ 9.1550111, 46.4276994 ], + [ 9.1555753, 46.427512899999996 ], + [ 9.1560176, 46.4273798 ], + [ 9.1565598, 46.4272453 ], + [ 9.1573995, 46.4271289 ], + [ 9.1579038, 46.4268745 ], + [ 9.1585555, 46.4265777 ], + [ 9.1593028, 46.4263941 ], + [ 9.1600909, 46.4262155 ], + [ 9.1607376, 46.4260162 ], + [ 9.1613382, 46.4259036 ], + [ 9.1620463, 46.425818 ], + [ 9.1626956, 46.425676 ], + [ 9.1632304, 46.4253581 ], + [ 9.1629451, 46.4249785 ], + [ 9.162671, 46.4246963 ], + [ 9.1623812, 46.4244314 ], + [ 9.1619805, 46.4240537 ], + [ 9.1618137, 46.4237697 ], + [ 9.1617631, 46.423484 ], + [ 9.1616845, 46.4231068 ], + [ 9.1615736, 46.4227648 ], + [ 9.1613019, 46.4225569 ], + [ 9.1612264, 46.4222543 ], + [ 9.1611971, 46.4218707 ], + [ 9.1611259, 46.4214706 ], + [ 9.1610478, 46.4211108 ], + [ 9.1611225, 46.4206224 ], + [ 9.1608725, 46.4200475 ], + [ 9.1608127, 46.4197503 ], + [ 9.1606041, 46.4191747 ], + [ 9.1601545, 46.4188436 ], + [ 9.1599899, 46.4186284 ], + [ 9.1596482, 46.4182898 ], + [ 9.1591757, 46.418005 ], + [ 9.158665, 46.4178238 ], + [ 9.1580504, 46.4177246 ], + [ 9.1570698, 46.4175966 ], + [ 9.1566225, 46.4175692 ], + [ 9.1560422, 46.4175267 ], + [ 9.1556693, 46.4175096 ], + [ 9.1556921, 46.4175021 ], + [ 9.1561682, 46.4173471 ], + [ 9.1570434, 46.4170467 ], + [ 9.1580834, 46.4167381 ], + [ 9.1589529, 46.4165182 ], + [ 9.1601186, 46.4162535 ], + [ 9.1612077, 46.4159038 ], + [ 9.162012, 46.4157308 ], + [ 9.1623464, 46.4158401 ], + [ 9.1625898, 46.415951 ], + [ 9.1629402, 46.4160257 ], + [ 9.1631453, 46.4159823 ], + [ 9.1632678, 46.415946 ], + [ 9.1634557, 46.4158743 ], + [ 9.1637427, 46.4157952 ], + [ 9.1641556, 46.4157659 ], + [ 9.1643966, 46.4158021 ], + [ 9.1648698, 46.415852 ], + [ 9.1652619, 46.4159605 ], + [ 9.1655203, 46.4160309 ], + [ 9.1657865, 46.4160669 ], + [ 9.1662016, 46.4161292 ], + [ 9.1668394, 46.4161421 ], + [ 9.1670816, 46.4162128 ], + [ 9.1673423, 46.4163577 ], + [ 9.1676782, 46.4165129 ], + [ 9.1681453, 46.4166259 ], + [ 9.168518, 46.4166373 ], + [ 9.1691144, 46.4166737 ], + [ 9.1694673, 46.4165993 ], + [ 9.1696808, 46.4167909 ], + [ 9.1698508, 46.41692 ], + [ 9.1700727, 46.4171457 ], + [ 9.1704132, 46.4174212 ], + [ 9.1706956, 46.4177091 ], + [ 9.1710195, 46.4179963 ], + [ 9.1715568, 46.4182458 ], + [ 9.171914, 46.4183032 ], + [ 9.1722128, 46.4183156 ], + [ 9.1729523, 46.4184301 ], + [ 9.1735063, 46.4184385 ], + [ 9.1740085, 46.4183502 ], + [ 9.1743946, 46.4182697 ], + [ 9.1748386, 46.4181939 ], + [ 9.1752084, 46.4181135 ], + [ 9.1754069, 46.4181161 ], + [ 9.1758461, 46.4181436 ], + [ 9.1763879, 46.4182784 ], + [ 9.1768419, 46.4184889 ], + [ 9.1771201, 46.4186451 ], + [ 9.1774612, 46.4187085 ], + [ 9.1780197, 46.4188543 ], + [ 9.1783242, 46.4190444 ], + [ 9.1785479, 46.4192988 ], + [ 9.1787474, 46.419588 ], + [ 9.1791972, 46.419919 ], + [ 9.1797208, 46.4200196 ], + [ 9.180275, 46.4200051 ], + [ 9.1806015, 46.4201203 ], + [ 9.1808792, 46.4202593 ], + [ 9.1813098, 46.4205275 ], + [ 9.1816919, 46.4208252 ], + [ 9.1819139, 46.4210281 ], + [ 9.1821908, 46.421167 ], + [ 9.1823893, 46.4213988 ], + [ 9.1825408, 46.4217346 ], + [ 9.1826285, 46.4221344 ], + [ 9.1827549, 46.4224477 ], + [ 9.1830531, 46.4227181 ], + [ 9.1837665, 46.4227756 ], + [ 9.1844685, 46.4227301 ], + [ 9.1849728, 46.4227335 ], + [ 9.1852488, 46.4228209 ], + [ 9.1854869, 46.4230177 ], + [ 9.1857488, 46.4231684 ], + [ 9.1861271, 46.4233515 ], + [ 9.1864327, 46.4235658 ], + [ 9.1865506, 46.4236485 ], + [ 9.1867656, 46.4239087 ], + [ 9.1868143, 46.4241315 ], + [ 9.1868802, 46.4243598 ], + [ 9.1870796, 46.4246431 ], + [ 9.1873811, 46.424988 ], + [ 9.1877145, 46.4253151 ], + [ 9.1879456, 46.4255465 ], + [ 9.1881447, 46.4258184 ], + [ 9.1882187, 46.4260466 ], + [ 9.1884571, 46.4262492 ], + [ 9.1887263, 46.4263766 ], + [ 9.1892627, 46.4265916 ], + [ 9.1897151, 46.4267736 ], + [ 9.1899867, 46.4269757 ], + [ 9.1902344, 46.4271895 ], + [ 9.1904151, 46.4274216 ], + [ 9.1907758, 46.4275592 ], + [ 9.191245, 46.4277352 ], + [ 9.1917381, 46.4278934 ], + [ 9.1923747, 46.4281126 ], + [ 9.1927501, 46.428227 ], + [ 9.1930775, 46.4283651 ], + [ 9.1936138, 46.4285514 ], + [ 9.1939712, 46.4286145 ], + [ 9.1943063, 46.4287409 ], + [ 9.1945023, 46.4289155 ], + [ 9.1947635, 46.4290431 ], + [ 9.1951226, 46.4291578 ], + [ 9.195331, 46.4291889 ], + [ 9.1957793, 46.4292448 ], + [ 9.1959518, 46.4294484 ], + [ 9.1962102, 46.4296654 ], + [ 9.1965202, 46.4297694 ], + [ 9.1967933, 46.4298634 ], + [ 9.1969433, 46.4298766 ], + [ 9.1970391, 46.4298442 ], + [ 9.1970134, 46.4297307 ], + [ 9.1971508, 46.4295784 ], + [ 9.1973924, 46.4294297 ], + [ 9.1975771, 46.4293544 ], + [ 9.1976658, 46.4293065 ], + [ 9.1979343, 46.429059 ], + [ 9.198013, 46.4289284 ], + [ 9.197896, 46.4287801 ], + [ 9.1980349, 46.4287003 ], + [ 9.198206, 46.4286614 ], + [ 9.1985495, 46.4283922 ], + [ 9.1985686, 46.4283039 ], + [ 9.1985113, 46.4281443 ], + [ 9.1985386, 46.4280559 ], + [ 9.1989283, 46.4280861 ], + [ 9.1991378, 46.4280777 ], + [ 9.1992487, 46.4280345 ], + [ 9.1994403, 46.4279487 ], + [ 9.199797, 46.4278655 ], + [ 9.1999285, 46.4277548 ], + [ 9.2001519, 46.4274977 ], + [ 9.2003491, 46.4273342 ], + [ 9.2005399, 46.4272226 ], + [ 9.200663, 46.4271068 ], + [ 9.2006827, 46.4270133 ], + [ 9.2006209, 46.4269625 ], + [ 9.2005597, 46.4269065 ], + [ 9.2005281, 46.4268605 ], + [ 9.2005867, 46.426813 ], + [ 9.2006617, 46.4268169 ], + [ 9.2007587, 46.4268258 ], + [ 9.2008483, 46.4268037 ], + [ 9.200898, 46.4267304 ], + [ 9.2009038, 46.4266838 ], + [ 9.2009082, 46.4265957 ], + [ 9.2009827, 46.4265843 ], + [ 9.2010432, 46.4265936 ], + [ 9.2011416, 46.426618 ], + [ 9.2012762, 46.4266315 ], + [ 9.2013496, 46.4265889 ], + [ 9.2013323, 46.4265063 ], + [ 9.2014046, 46.4264276 ], + [ 9.2015625, 46.4264562 ], + [ 9.2017414, 46.4264328 ], + [ 9.2021786, 46.4262965 ], + [ 9.2025933, 46.4261451 ], + [ 9.202939, 46.425969 ], + [ 9.203188, 46.4257994 ], + [ 9.203393, 46.4256514 ], + [ 9.2036058, 46.4255186 ], + [ 9.2039262, 46.425493 ], + [ 9.2044274, 46.4254748 ], + [ 9.2047063, 46.4255223 ], + [ 9.2050641, 46.4254959 ], + [ 9.205438, 46.4254642 ], + [ 9.2055558, 46.4254107 ], + [ 9.2055973, 46.4253118 ], + [ 9.2056476, 46.4252332 ], + [ 9.2057506, 46.4252007 ], + [ 9.2058725, 46.4252453 ], + [ 9.2059416, 46.4253219 ], + [ 9.2060354, 46.4254291 ], + [ 9.2061752, 46.425577 ], + [ 9.2063751, 46.4257448 ], + [ 9.2065782, 46.4257881 ], + [ 9.2066888, 46.4257399 ], + [ 9.2067376, 46.4256148 ], + [ 9.2068966, 46.4254519 ], + [ 9.2071907, 46.425292 ], + [ 9.2075316, 46.4251729 ], + [ 9.208021, 46.425041 ], + [ 9.2084837, 46.4249925 ], + [ 9.2089105, 46.4250117 ], + [ 9.2090963, 46.4249467 ], + [ 9.2092968, 46.4249125 ], + [ 9.2096219, 46.4250057 ], + [ 9.2099058, 46.4249806 ], + [ 9.2101577, 46.4249249 ], + [ 9.2102976, 46.4248503 ], + [ 9.2104375, 46.4247756 ], + [ 9.2105408, 46.4247274 ], + [ 9.2106154, 46.4247211 ], + [ 9.2106393, 46.424757 ], + [ 9.210612, 46.4248402 ], + [ 9.2105625, 46.4249444 ], + [ 9.2105219, 46.4250694 ], + [ 9.2104323, 46.4252171 ], + [ 9.2104417, 46.4255038 ], + [ 9.2110359, 46.4252881 ], + [ 9.2116239, 46.4250524 ], + [ 9.212405, 46.4248033 ], + [ 9.212772, 46.4246431 ], + [ 9.2130514, 46.4245358 ], + [ 9.2132882, 46.4244909 ], + [ 9.2135862, 46.4244965 ], + [ 9.2138092, 46.4244828 ], + [ 9.214118, 46.4243647 ], + [ 9.2144563, 46.4242358 ], + [ 9.2146779, 46.4241809 ], + [ 9.2149454, 46.4241664 ], + [ 9.2151677, 46.424132 ], + [ 9.2154177, 46.4240354 ], + [ 9.2155919, 46.4238988 ], + [ 9.2156917, 46.4237634 ], + [ 9.2158666, 46.4236474 ], + [ 9.2160428, 46.4235725 ], + [ 9.2162941, 46.4235171 ], + [ 9.216563, 46.4235438 ], + [ 9.2168022, 46.4235709 ], + [ 9.2170254, 46.4235674 ], + [ 9.2172023, 46.4235131 ], + [ 9.2174523, 46.4234165 ], + [ 9.2176874, 46.4233202 ], + [ 9.2178923, 46.423214 ], + [ 9.2181122, 46.4231075 ], + [ 9.2183179, 46.4230219 ], + [ 9.218555, 46.4229873 ], + [ 9.2187772, 46.4229529 ], + [ 9.2189842, 46.4229085 ], + [ 9.2191885, 46.4227817 ], + [ 9.2194209, 46.422603 ], + [ 9.2196661, 46.4223623 ], + [ 9.2198532, 46.4221637 ], + [ 9.2200828, 46.4219026 ], + [ 9.2203281, 46.4216619 ], + [ 9.2206443, 46.4213171 ], + [ 9.2207441, 46.4211817 ], + [ 9.2208611, 46.4211181 ], + [ 9.2210516, 46.4210224 ], + [ 9.2214043, 46.420883 ], + [ 9.2216249, 46.4207971 ], + [ 9.2218298, 46.4206909 ], + [ 9.2219587, 46.4205345 ], + [ 9.2219847, 46.4204208 ], + [ 9.2220845, 46.4202853 ], + [ 9.2222333, 46.420283 ], + [ 9.2224735, 46.420341 ], + [ 9.222668, 46.4203688 ], + [ 9.2228313, 46.420356 ], + [ 9.2229477, 46.4202717 ], + [ 9.2231936, 46.4200516 ], + [ 9.2233941, 46.4198116 ], + [ 9.2235656, 46.4195927 ], + [ 9.2237824, 46.4193936 ], + [ 9.2240286, 46.4191838 ], + [ 9.224289, 46.4189531 ], + [ 9.2245647, 46.4187325 ], + [ 9.2247689, 46.4186058 ], + [ 9.2250202, 46.4185503 ], + [ 9.2253906, 46.418493 ], + [ 9.2252384, 46.4183924 ], + [ 9.2251883, 46.4182284 ], + [ 9.2252874, 46.4180724 ], + [ 9.2252982, 46.4179487 ], + [ 9.2253111, 46.4178867 ], + [ 9.2253811, 46.4177517 ], + [ 9.2254183, 46.4175246 ], + [ 9.2254128, 46.4173599 ], + [ 9.2254071, 46.4171849 ], + [ 9.2253851, 46.416969 ], + [ 9.2253326, 46.416733 ], + [ 9.2251906, 46.4164881 ], + [ 9.2251118, 46.4163555 ], + [ 9.2250461, 46.4161712 ], + [ 9.225129, 46.4159742 ], + [ 9.2253408, 46.4157518 ], + [ 9.2253775, 46.4156078 ], + [ 9.2255527, 46.4154216 ], + [ 9.2257259, 46.4151268 ], + [ 9.2257736, 46.4147979 ], + [ 9.2258691, 46.4140179 ], + [ 9.2258486, 46.4136685 ], + [ 9.2258768, 46.4135133 ], + [ 9.2260248, 46.4134901 ], + [ 9.226104, 46.4136472 ], + [ 9.2260955, 46.4138823 ], + [ 9.2260958, 46.4141116 ], + [ 9.2262636, 46.4144414 ], + [ 9.2264091, 46.414588 ], + [ 9.2265535, 46.4146774 ], + [ 9.2266931, 46.4146694 ], + [ 9.2267565, 46.4145709 ], + [ 9.2267336, 46.4143936 ], + [ 9.2266025, 46.4141894 ], + [ 9.226477, 46.4139106 ], + [ 9.2266965, 46.4135402 ], + [ 9.226845, 46.4132234 ], + [ 9.2269758, 46.4130847 ], + [ 9.2271081, 46.4127816 ], + [ 9.227181, 46.4124776 ], + [ 9.2271237, 46.4122436 ], + [ 9.2270945, 46.4121237 ], + [ 9.2270807, 46.4119519 ], + [ 9.2272179, 46.4115957 ], + [ 9.2271783, 46.4114344 ], + [ 9.2272637, 46.4112611 ], + [ 9.2272899, 46.4110714 ], + [ 9.227281, 46.4110547 ], + [ 9.2274736, 46.411146 ], + [ 9.2275567, 46.4113709 ], + [ 9.2276309, 46.4115991 ], + [ 9.2277238, 46.4116548 ], + [ 9.2278165, 46.4114814 ], + [ 9.2278035, 46.4108396 ], + [ 9.227538, 46.4105802 ], + [ 9.2275399, 46.4103911 ], + [ 9.2275491, 46.4101788 ], + [ 9.2275525, 46.4100354 ], + [ 9.2276083, 46.4099772 ], + [ 9.2277586, 46.4100207 ], + [ 9.2277985, 46.410220699999996 ], + [ 9.2277688, 46.410307 ], + [ 9.2277476, 46.4104279 ], + [ 9.2279291, 46.4106542 ], + [ 9.2281482, 46.4107652 ], + [ 9.2284647, 46.4108461 ], + [ 9.2287307, 46.4108761 ], + [ 9.2290136, 46.4109231 ], + [ 9.2290601, 46.4108306 ], + [ 9.2289735, 46.4107174 ], + [ 9.2285402, 46.4106212 ], + [ 9.2283956, 46.4102568 ], + [ 9.2284647, 46.4101067 ], + [ 9.2284673, 46.4096938 ], + [ 9.2284749, 46.4094301 ], + [ 9.2284924, 46.4092234 ], + [ 9.2286222, 46.4089175 ], + [ 9.2288592, 46.408587 ], + [ 9.2290312, 46.4083033 ], + [ 9.2291882, 46.4080601 ], + [ 9.2293201, 46.4077942 ], + [ 9.2294922, 46.4075162 ], + [ 9.2297222, 46.4072201 ], + [ 9.2298323, 46.407058 ], + [ 9.2299002, 46.4068734 ], + [ 9.2298998, 46.4066154 ], + [ 9.2297916, 46.4063421 ], + [ 9.2296874, 46.406189 ], + [ 9.2295063, 46.4059742 ], + [ 9.2293479, 46.4057073 ], + [ 9.2291975, 46.4054118 ], + [ 9.2289939, 46.405031 ], + [ 9.2287248, 46.4046628 ], + [ 9.2285936, 46.4044299 ], + [ 9.2285552, 46.4042759 ], + [ 9.2286244, 46.4041314 ], + [ 9.2286664, 46.4039014 ], + [ 9.2286105, 46.4037361 ], + [ 9.2284808, 46.4035491 ], + [ 9.2283239, 46.4033281 ], + [ 9.2282433, 46.4031518 ], + [ 9.228101, 46.402856 ], + [ 9.2280851, 46.4026213 ], + [ 9.2280373, 46.4024272 ], + [ 9.2280126, 46.4021983 ], + [ 9.2280147, 46.4020149 ], + [ 9.2280766, 46.4018934 ], + [ 9.2281409, 46.4018466 ], + [ 9.2282512, 46.4019136 ], + [ 9.2282812, 46.4020851 ], + [ 9.228303, 46.402228 ], + [ 9.228311, 46.4024686 ], + [ 9.2283324, 46.4026001 ], + [ 9.2284326, 46.4028793 ], + [ 9.2284612, 46.4029821 ], + [ 9.2285148, 46.4031014 ], + [ 9.2285869, 46.4032665 ], + [ 9.2287041, 46.403322 ], + [ 9.2288222, 46.4031538 ], + [ 9.2288178, 46.403022 ], + [ 9.2287868, 46.4028449 ], + [ 9.2287497, 46.4027078 ], + [ 9.2287315, 46.4024274 ], + [ 9.2287166, 46.4022212 ], + [ 9.2287589, 46.4020257 ], + [ 9.2288422, 46.4017893 ], + [ 9.2287789, 46.401647 ], + [ 9.2285605, 46.4015302 ], + [ 9.2282606, 46.4014606 ], + [ 9.2280819, 46.4013145 ], + [ 9.2281721, 46.40129 ], + [ 9.2283972, 46.401361 ], + [ 9.2286728, 46.4014367 ], + [ 9.2287992, 46.4014977 ], + [ 9.2289403, 46.4015126 ], + [ 9.2289364, 46.4013923 ], + [ 9.2288762, 46.4013416 ], + [ 9.2286244, 46.4012254 ], + [ 9.2284736, 46.4011648 ], + [ 9.2282523, 46.4009849 ], + [ 9.2281563, 46.4008376 ], + [ 9.2280495, 46.4008508 ], + [ 9.2278733, 46.4007848 ], + [ 9.2275485, 46.4007213 ], + [ 9.2273227, 46.4006276 ], + [ 9.227269100000001, 46.400531 ], + [ 9.2272502, 46.400451 ], + [ 9.2273279, 46.4003179 ], + [ 9.227415, 46.4001962 ], + [ 9.2275869, 46.4001361 ], + [ 9.228016, 46.4001062 ], + [ 9.2287535, 46.3999667 ], + [ 9.2291877, 46.3999436 ], + [ 9.22953, 46.3999951 ], + [ 9.2298124, 46.4000313 ], + [ 9.2300234, 46.4000198 ], + [ 9.2302799, 46.3999588 ], + [ 9.2305591, 46.3998731 ], + [ 9.2307404, 46.3996752 ], + [ 9.2308721, 46.3993807 ], + [ 9.230873, 46.3990638 ], + [ 9.2307379, 46.3988871 ], + [ 9.2304655, 46.3988101 ], + [ 9.2302302, 46.3987977 ], + [ 9.2300303, 46.3988008 ], + [ 9.2298995, 46.3987541 ], + [ 9.2298616, 46.3986653 ], + [ 9.2296284, 46.3987178 ], + [ 9.2292207, 46.3988011 ], + [ 9.2287839, 46.398891 ], + [ 9.2281064, 46.3989293 ], + [ 9.2274688, 46.3989946 ], + [ 9.2271064, 46.398899 ], + [ 9.2264304, 46.3986147 ], + [ 9.2256381, 46.3984244 ], + [ 9.2252012, 46.3984867 ], + [ 9.2246158, 46.3985327 ], + [ 9.2242627, 46.3986712 ], + [ 9.2224626, 46.3994742 ], + [ 9.2218558, 46.3998566 ], + [ 9.221612499999999, 46.3999485 ], + [ 9.2214314, 46.4001264 ], + [ 9.2213633, 46.4004777 ], + [ 9.2209985, 46.4007323 ], + [ 9.2207491, 46.4008376 ], + [ 9.2203895, 46.4008525 ], + [ 9.2200799, 46.400756 ], + [ 9.2198076, 46.4006578 ], + [ 9.2195497, 46.4006276 ], + [ 9.2193498, 46.4005792 ], + [ 9.2190476, 46.4005372 ], + [ 9.2186235, 46.4006175 ], + [ 9.2179732, 46.4006922 ], + [ 9.2174537, 46.4006912 ], + [ 9.2171688, 46.4009261 ], + [ 9.2167708, 46.4009876 ], + [ 9.2163484, 46.4010956 ], + [ 9.2161302, 46.4009608 ], + [ 9.215229, 46.4010947 ], + [ 9.2145531, 46.4012067 ], + [ 9.214281100000001, 46.4014414 ], + [ 9.2141439, 46.4017199 ], + [ 9.2138841, 46.4019267 ], + [ 9.2134463, 46.4019888 ], + [ 9.2130318, 46.4021189 ], + [ 9.2125499, 46.4022701 ], + [ 9.211937, 46.4022706 ], + [ 9.2115802, 46.4023498 ], + [ 9.211261, 46.4023825 ], + [ 9.2108663, 46.4025178 ], + [ 9.2102731, 46.4027251 ], + [ 9.2093357, 46.4029702 ], + [ 9.2088982, 46.4030414 ], + [ 9.2085153, 46.4031396 ], + [ 9.2076397, 46.4032639 ], + [ 9.2074793, 46.4032295 ], + [ 9.2070572, 46.4029503 ], + [ 9.2068543, 46.4028614 ], + [ 9.2065541, 46.4026541 ], + [ 9.2061518, 46.402559 ], + [ 9.2059592, 46.4025109 ], + [ 9.2057535, 46.4024092 ], + [ 9.205526, 46.4023365 ], + [ 9.2052435, 46.4022741 ], + [ 9.205100999999999, 46.4022667 ], + [ 9.20442, 46.4021246 ], + [ 9.2039854, 46.4020583 ], + [ 9.2037017, 46.4020849 ], + [ 9.2034234, 46.4021528 ], + [ 9.2029386, 46.4022431 ], + [ 9.2025025, 46.4022563 ], + [ 9.201808, 46.4022479 ], + [ 9.2016578, 46.4023044 ], + [ 9.2014023, 46.4023465 ], + [ 9.2012055, 46.4023941 ], + [ 9.2009314, 46.4024397 ], + [ 9.2003909, 46.4024926 ], + [ 9.1999325, 46.4025443 ], + [ 9.1996305, 46.4025839 ], + [ 9.1992807, 46.4026515 ], + [ 9.1988418, 46.4027282 ], + [ 9.1984919, 46.4027177 ], + [ 9.1982867, 46.4026319 ], + [ 9.1980912, 46.4025427 ], + [ 9.1979478, 46.4025353 ], + [ 9.1976043, 46.4024198 ], + [ 9.1971971, 46.4023466 ], + [ 9.1966092, 46.4022157 ], + [ 9.1958507, 46.4020907 ], + [ 9.1944669, 46.4019594 ], + [ 9.194104, 46.4018219 ], + [ 9.1938652, 46.4017021 ], + [ 9.193129, 46.4013339 ], + [ 9.1927668, 46.4011938 ], + [ 9.1923753, 46.4010541 ], + [ 9.1920967, 46.4009365 ], + [ 9.1919215, 46.4008205 ], + [ 9.1914545, 46.4006074 ], + [ 9.1911952, 46.400459 ], + [ 9.1909992, 46.4003028 ], + [ 9.1908375, 46.4000054 ], + [ 9.1905567, 46.3999927 ], + [ 9.1902417, 46.3999804 ], + [ 9.1900013, 46.3999613 ], + [ 9.1896103, 46.3998874 ], + [ 9.1892443, 46.3998302 ], + [ 9.1888948, 46.3997554 ], + [ 9.1887609, 46.3997117 ], + [ 9.1883833, 46.3995458 ], + [ 9.1881671, 46.3994976 ], + [ 9.1879173, 46.3994386 ], + [ 9.1875925, 46.399375 ], + [ 9.1873907, 46.3992922 ], + [ 9.1871574, 46.3992156 ], + [ 9.1870511, 46.3992746 ], + [ 9.1868718, 46.3993347 ], + [ 9.1866797, 46.3992749 ], + [ 9.1865589, 46.3993857 ], + [ 9.1864896, 46.3992778 ], + [ 9.1862672, 46.3993158 ], + [ 9.1861486, 46.3992144 ], + [ 9.186018, 46.3992738 ], + [ 9.1858746, 46.3991901 ], + [ 9.185728, 46.3992555 ], + [ 9.1854275, 46.3991628 ], + [ 9.1850753, 46.3992831 ], + [ 9.1847695, 46.3992764 ], + [ 9.1844917, 46.399384 ], + [ 9.1841427, 46.3995788 ], + [ 9.1839828, 46.3997361 ], + [ 9.1838058, 46.3998707 ], + [ 9.1835181, 46.3999212 ], + [ 9.1828514, 46.3997656 ], + [ 9.1825745, 46.3996495 ], + [ 9.1823533, 46.3994697 ], + [ 9.1819941, 46.3993435 ], + [ 9.1817384, 46.399382 ], + [ 9.1813944, 46.3994791 ], + [ 9.1811019, 46.3996328 ], + [ 9.1808006, 46.3997694 ], + [ 9.1805822, 46.3999046 ], + [ 9.1803037, 46.3999894 ], + [ 9.180065, 46.4000983 ], + [ 9.1798118, 46.4001874 ], + [ 9.1795361, 46.4000587 ], + [ 9.1791383, 46.3999489 ], + [ 9.1788535, 46.3999636 ], + [ 9.1786389, 46.4000384 ], + [ 9.1785192, 46.4000096 ], + [ 9.1783255, 46.4000258 ], + [ 9.177999, 46.3999853 ], + [ 9.1777368, 46.3998688 ], + [ 9.1775483, 46.3997188 ], + [ 9.1774492, 46.3996975 ], + [ 9.1773307, 46.3998295 ], + [ 9.1770055, 46.4000315 ], + [ 9.176889599999999, 46.4005217 ], + [ 9.176684, 46.4010068 ], + [ 9.1758212, 46.4019089 ], + [ 9.175392, 46.4022155 ], + [ 9.1752064, 46.4024093 ], + [ 9.1751347, 46.4024819 ], + [ 9.1748888, 46.4024926 ], + [ 9.1745035, 46.4024677 ], + [ 9.1743652, 46.4024664 ], + [ 9.1742631, 46.4025022 ], + [ 9.1741711, 46.4025479 ], + [ 9.1740364, 46.4025056 ], + [ 9.1739603, 46.402438599999996 ], + [ 9.1737628, 46.4024144 ], + [ 9.1736426, 46.402365 ], + [ 9.1736103, 46.4022701 ], + [ 9.1735161, 46.4020976 ], + [ 9.1733699, 46.4019976 ], + [ 9.1731835, 46.4018641 ], + [ 9.1729134, 46.4017558 ], + [ 9.1726645, 46.4016744 ], + [ 9.1725425, 46.4015466 ], + [ 9.1725239, 46.4014208 ], + [ 9.1725061, 46.4013222 ], + [ 9.1724541, 46.4012481 ], + [ 9.1722851, 46.4011995 ], + [ 9.1720783, 46.4012129 ], + [ 9.1719526, 46.4012762 ], + [ 9.1717257, 46.4012729 ], + [ 9.171475, 46.4011335 ], + [ 9.1712019, 46.4010831 ], + [ 9.1707885, 46.4010963 ], + [ 9.1704573, 46.4010605 ], + [ 9.1698745, 46.4008581 ], + [ 9.1691546, 46.4005349 ], + [ 9.1688747, 46.4004267 ], + [ 9.1681716, 46.3999943 ], + [ 9.1677933, 46.3998842 ], + [ 9.1672704, 46.3996979 ], + [ 9.1666631, 46.3995163 ], + [ 9.1662644, 46.3993757 ], + [ 9.1658174, 46.3992269 ], + [ 9.1655968, 46.3991404 ], + [ 9.1653598, 46.399127 ], + [ 9.1650866, 46.3991497 ], + [ 9.1648261, 46.3990616 ], + [ 9.1644973, 46.3989456 ], + [ 9.1642213, 46.3989065 ], + [ 9.1639924, 46.3986623 ], + [ 9.1637979, 46.3985529 ], + [ 9.1635642, 46.3985392 ], + [ 9.1631632, 46.3986317 ], + [ 9.1627428, 46.3987821 ], + [ 9.162586, 46.3988364 ], + [ 9.1621834, 46.39888 ], + [ 9.1616346, 46.3988998 ], + [ 9.161429, 46.3988512 ], + [ 9.1609848, 46.3986361 ], + [ 9.16085, 46.3985863 ], + [ 9.1607785, 46.3985643 ], + [ 9.1607935, 46.3985237 ], + [ 9.1608425, 46.3984797 ], + [ 9.1605827, 46.3984376 ], + [ 9.1602509, 46.3984829 ], + [ 9.1598757, 46.3985981 ], + [ 9.1595243, 46.3986669 ], + [ 9.1591551, 46.3987128 ], + [ 9.1588132, 46.3988506 ], + [ 9.1584454, 46.3989427 ], + [ 9.1581793, 46.3989322 ], + [ 9.1579966, 46.3988342 ], + [ 9.157734, 46.3988352 ], + [ 9.157483299999999, 46.3987987 ], + [ 9.1572456, 46.3986583 ], + [ 9.157089299999999, 46.3985742 ], + [ 9.1567249, 46.3985164 ], + [ 9.1560545, 46.398394 ], + [ 9.155359, 46.3984017 ], + [ 9.1546892, 46.3984031 ], + [ 9.1541567, 46.3982989 ], + [ 9.1534554, 46.3981222 ], + [ 9.1531307, 46.3981099 ], + [ 9.1528164, 46.3981981 ], + [ 9.1523403, 46.3984099 ], + [ 9.1520192, 46.3985388 ], + [ 9.1518552, 46.3986218 ], + [ 9.1519891, 46.3987697 ], + [ 9.1517809, 46.3988939 ], + [ 9.1515651, 46.398779 ], + [ 9.1514459, 46.3988413 ], + [ 9.151003, 46.39892 ], + [ 9.1505523, 46.3989095 ], + [ 9.1503765, 46.3990044 ], + [ 9.1498501, 46.3993495 ], + [ 9.1495131, 46.3996168 ], + [ 9.1493317, 46.3996656 ], + [ 9.1491157, 46.3996977 ], + [ 9.1489334, 46.3998474 ], + [ 9.148747, 46.3998876 ], + [ 9.1484647, 46.3999092 ], + [ 9.1480842, 46.3998803 ], + [ 9.1478548, 46.3998492 ], + [ 9.1476121, 46.3998328 ], + [ 9.1475119, 46.3998285 ], + [ 9.1474059, 46.3998935 ], + [ 9.1474045, 46.3999771 ], + [ 9.1474375, 46.4000976 ], + [ 9.1474328, 46.4002072 ], + [ 9.1473214, 46.400255 ], + [ 9.1471051, 46.4002525 ], + [ 9.1468034, 46.4001994 ], + [ 9.1463994, 46.4000701 ], + [ 9.1459088, 46.4000803 ], + [ 9.1456491, 46.4001735 ], + [ 9.1453917, 46.4002062 ], + [ 9.1451165, 46.4003229 ], + [ 9.1449506, 46.4003455 ], + [ 9.1445627, 46.4003398 ], + [ 9.1439869, 46.4003303 ], + [ 9.1436447, 46.400331 ], + [ 9.1433393, 46.4002355 ], + [ 9.1424526, 46.400267 ], + [ 9.1421324, 46.4003218 ], + [ 9.1416906, 46.4004878 ], + [ 9.141327, 46.4004296 ], + [ 9.14095, 46.4003579 ], + [ 9.1405047, 46.4004146 ], + [ 9.1402921, 46.4003495 ], + [ 9.1400756, 46.4003664 ], + [ 9.1397302, 46.4004444 ], + [ 9.1388763, 46.4004845 ], + [ 9.1383349, 46.4004062 ], + [ 9.1379581, 46.4003671 ], + [ 9.1378108, 46.4004153 ], + [ 9.137607, 46.4004987 ], + [ 9.1374275, 46.4005818 ], + [ 9.1371106, 46.4007415 ], + [ 9.1367922, 46.4008781 ], + [ 9.1365629, 46.4009275 ], + [ 9.1363503, 46.4010168 ], + [ 9.1360567, 46.4011418 ], + [ 9.135796, 46.4012547 ], + [ 9.1354939, 46.4013683 ], + [ 9.1352328, 46.4014927 ], + [ 9.1349573, 46.4016516 ], + [ 9.1347214, 46.4017756 ], + [ 9.134373, 46.4019931 ], + [ 9.1340884, 46.4021466 ], + [ 9.1338194, 46.4022539 ], + [ 9.1335321, 46.4023214 ], + [ 9.1332783, 46.4023941 ], + [ 9.1331164, 46.402517 ], + [ 9.1330411, 46.4027359 ], + [ 9.1330288, 46.4028622 ], + [ 9.1330213, 46.4031432 ], + [ 9.1330052, 46.403407 ], + [ 9.1328539, 46.4035871 ], + [ 9.1326686, 46.4037447 ], + [ 9.1324332, 46.4038859 ], + [ 9.1321726, 46.4039989 ], + [ 9.1318364, 46.4040899 ], + [ 9.1319115, 46.4043582 ], + [ 9.131916499999999, 46.4045186 ], + [ 9.1318875, 46.4046566 ], + [ 9.1318844, 46.4048172 ], + [ 9.1319357, 46.4051087 ], + [ 9.1319941, 46.4053886 ], + [ 9.1319989, 46.4055433 ], + [ 9.1320255, 46.4058466 ], + [ 9.1320929, 46.4061323 ], + [ 9.132201, 46.4064172 ], + [ 9.1322141, 46.4069127 ], + [ 9.1322795, 46.407134 ], + [ 9.1325775, 46.4083428 ], + [ 9.1325245, 46.4087276 ], + [ 9.1326249, 46.4091563 ], + [ 9.1328868, 46.4094487 ], + [ 9.1330341, 46.4096598 ], + [ 9.1327495, 46.4103331 ], + [ 9.1326279, 46.4108131 ], + [ 9.1326507, 46.4112305 ], + [ 9.1328084, 46.4115918 ], + [ 9.1329202, 46.4120482 ], + [ 9.1330643, 46.4123154 ], + [ 9.1331925, 46.4126706 ], + [ 9.1331091, 46.413123 ], + [ 9.1327712, 46.413835399999996 ], + [ 9.1324914, 46.4142235 ], + [ 9.1323981, 46.4146695 ], + [ 9.1322471, 46.4148334 ], + [ 9.1320335, 46.4151532 ], + [ 9.1320387, 46.4154239 ], + [ 9.1321406, 46.4157719 ], + [ 9.1321726, 46.4159892 ], + [ 9.1321521, 46.4161385 ], + [ 9.1321695, 46.4164076 ], + [ 9.1322756, 46.4166296 ], + [ 9.132366, 46.4168326 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "JBG0034", + "country" : "CHE", + "name" : [ + { + "text" : "Eidgenössisches Jagdbanngebiet Trescolmen", + "lang" : "de-CH" + }, + { + "text" : "District franc fédéral Trescolmen", + "lang" : "fr-CH" + }, + { + "text" : "Bandita federale di caccia Trescolmen", + "lang" : "it-CH" + }, + { + "text" : "Federal Game Reserve Trescolmen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.2319605, 46.4438716 ], + [ 6.2322536, 46.4438105 ], + [ 6.232357, 46.4437889 ], + [ 6.2332804, 46.4435343 ], + [ 6.2334282, 46.4434911 ], + [ 6.2335358, 46.4434595 ], + [ 6.2340866, 46.4432982 ], + [ 6.2343121, 46.4432163 ], + [ 6.2344657, 46.4431605 ], + [ 6.2344688999999995, 46.4431593 ], + [ 6.2346, 46.4431117 ], + [ 6.234744, 46.4430593 ], + [ 6.2353089, 46.442835 ], + [ 6.2354258, 46.4427679 ], + [ 6.2356896, 46.4426164 ], + [ 6.2357003, 46.4426104 ], + [ 6.2361925, 46.4423321 ], + [ 6.2362865, 46.4422693 ], + [ 6.2365903, 46.4420656 ], + [ 6.2366808, 46.4420133 ], + [ 6.2370852, 46.441779 ], + [ 6.2372009, 46.441712 ], + [ 6.2374184, 46.441586 ], + [ 6.2375593, 46.4415043 ], + [ 6.2375861, 46.4414891 ], + [ 6.2376618, 46.4414419 ], + [ 6.2379038, 46.4412955 ], + [ 6.2380932, 46.441181 ], + [ 6.2385896, 46.4409022 ], + [ 6.2386612, 46.4408406 ], + [ 6.2388205, 46.4407038 ], + [ 6.2388281, 46.4406973 ], + [ 6.238888, 46.4406191 ], + [ 6.2389223, 46.4405744 ], + [ 6.2389249, 46.4405711 ], + [ 6.2390503, 46.4404076 ], + [ 6.2390507, 46.440407 ], + [ 6.2391334, 46.4402992 ], + [ 6.239174, 46.4402289 ], + [ 6.2392075, 46.4401706 ], + [ 6.2392326, 46.4401271 ], + [ 6.239236, 46.4401212 ], + [ 6.2393453, 46.4399317 ], + [ 6.2393495, 46.4399244 ], + [ 6.2394454, 46.4397581 ], + [ 6.2394851, 46.4395984 ], + [ 6.2395224, 46.4394488 ], + [ 6.2396412, 46.4389712 ], + [ 6.2396443, 46.4389687 ], + [ 6.2397214, 46.4389051 ], + [ 6.2399311, 46.4387318 ], + [ 6.2402158, 46.4384966 ], + [ 6.2403509, 46.4382744 ], + [ 6.2403527, 46.4382714 ], + [ 6.2403895, 46.4380796 ], + [ 6.240422, 46.4379097 ], + [ 6.2404779, 46.4376175 ], + [ 6.2404887, 46.4375936 ], + [ 6.2404913, 46.4375879 ], + [ 6.2405123, 46.4375416 ], + [ 6.2405534, 46.437451 ], + [ 6.2407821, 46.437138 ], + [ 6.241083, 46.4368902 ], + [ 6.2410855, 46.4368882 ], + [ 6.2411693, 46.4368192 ], + [ 6.2415197, 46.4365295 ], + [ 6.2417792, 46.4361333 ], + [ 6.241779, 46.4361313 ], + [ 6.2417528, 46.4358377 ], + [ 6.2417401, 46.4356952 ], + [ 6.2417007, 46.4352747 ], + [ 6.2413945, 46.4347545 ], + [ 6.2412036, 46.4343909 ], + [ 6.2411154, 46.4341964 ], + [ 6.2412246, 46.4338756 ], + [ 6.2412257, 46.4338732 ], + [ 6.2414198, 46.4334822 ], + [ 6.2415293, 46.4332616 ], + [ 6.2415776, 46.4331451 ], + [ 6.2415785, 46.4331422 ], + [ 6.2415948, 46.4330887 ], + [ 6.2415964, 46.4330874 ], + [ 6.241604, 46.4330816 ], + [ 6.241778, 46.4328214 ], + [ 6.24178, 46.4328185 ], + [ 6.2418645999999995, 46.4327595 ], + [ 6.2421956, 46.4325286 ], + [ 6.2422033, 46.4325233 ], + [ 6.2423506, 46.4324004 ], + [ 6.2425329, 46.4322483 ], + [ 6.242772, 46.4319227 ], + [ 6.242788, 46.4317955 ], + [ 6.2428222, 46.4315233 ], + [ 6.2427993, 46.4315151 ], + [ 6.2428013, 46.4313679 ], + [ 6.2429066, 46.4311184 ], + [ 6.2429446, 46.4310626 ], + [ 6.2430281, 46.43094 ], + [ 6.2429751, 46.4309162 ], + [ 6.242069, 46.4302674 ], + [ 6.2420554, 46.4302432 ], + [ 6.242022, 46.4302203 ], + [ 6.2418114, 46.4301317 ], + [ 6.2415462, 46.4300201 ], + [ 6.2414149, 46.4299648 ], + [ 6.2408784, 46.4297032 ], + [ 6.2408597, 46.4296941 ], + [ 6.2406979, 46.4296152 ], + [ 6.2402542, 46.4294421 ], + [ 6.2402441, 46.4294393 ], + [ 6.2395148, 46.4292947 ], + [ 6.2394607, 46.4292836 ], + [ 6.2388657, 46.4291611 ], + [ 6.2387974, 46.4291467 ], + [ 6.2388409, 46.4288495 ], + [ 6.2387075, 46.4286576 ], + [ 6.238707, 46.4286577 ], + [ 6.238707, 46.4286576 ], + [ 6.2377528, 46.4288379 ], + [ 6.2377909, 46.4289808 ], + [ 6.2377923, 46.4289844 ], + [ 6.2377991, 46.4290096 ], + [ 6.2378423, 46.4291721 ], + [ 6.2378508, 46.4294103 ], + [ 6.2378503, 46.4294099 ], + [ 6.2377621, 46.429354 ], + [ 6.237362, 46.4291004 ], + [ 6.2370728, 46.4288754 ], + [ 6.2370642, 46.4288687 ], + [ 6.2362637, 46.428327 ], + [ 6.2357622, 46.4279694 ], + [ 6.2354116, 46.4276325 ], + [ 6.2352488, 46.427526 ], + [ 6.235379, 46.4273175 ], + [ 6.2355078, 46.4272762 ], + [ 6.2358245, 46.4271781 ], + [ 6.2367179, 46.4267979 ], + [ 6.2367158, 46.4267952 ], + [ 6.2367247, 46.4267915 ], + [ 6.2365186, 46.4265329 ], + [ 6.2362403, 46.426311 ], + [ 6.2360367, 46.4261487 ], + [ 6.2359871, 46.4261034 ], + [ 6.2359509, 46.4260437 ], + [ 6.2357745, 46.4257551 ], + [ 6.2357686, 46.4257454 ], + [ 6.2357573, 46.4257509 ], + [ 6.2356659, 46.4257959 ], + [ 6.2355564, 46.4258355 ], + [ 6.2354657, 46.4258441 ], + [ 6.2353578, 46.4258543 ], + [ 6.2353309, 46.4258568 ], + [ 6.2352665, 46.4258511 ], + [ 6.2349408, 46.425822 ], + [ 6.234724, 46.4258391 ], + [ 6.2343023, 46.4258722 ], + [ 6.2342179, 46.4258842 ], + [ 6.2341151, 46.4258989 ], + [ 6.2340569, 46.4259072 ], + [ 6.2339083, 46.4259382 ], + [ 6.233777, 46.425983 ], + [ 6.2335813, 46.4260582 ], + [ 6.2335313, 46.4260774 ], + [ 6.2334267, 46.4261176 ], + [ 6.2333077, 46.42615 ], + [ 6.2333017, 46.4261516 ], + [ 6.2332118, 46.4261707 ], + [ 6.2331897, 46.4261753 ], + [ 6.2330738, 46.4261955 ], + [ 6.2327948, 46.4262366 ], + [ 6.2327069, 46.4262495 ], + [ 6.2327069999999996, 46.4262542 ], + [ 6.2326952, 46.4262559 ], + [ 6.2326967, 46.4262753 ], + [ 6.2326968, 46.426276 ], + [ 6.2322375, 46.4263407 ], + [ 6.2317765, 46.4263961 ], + [ 6.2313801, 46.4264455 ], + [ 6.2312218999999995, 46.4266782 ], + [ 6.2315632, 46.4268107 ], + [ 6.2314135, 46.4270855 ], + [ 6.2314237, 46.4270896 ], + [ 6.2314276, 46.4270912 ], + [ 6.2315157, 46.4271267 ], + [ 6.2317092, 46.4272047 ], + [ 6.2318022, 46.4272422 ], + [ 6.2318933, 46.4272789 ], + [ 6.2318937, 46.427279 ], + [ 6.232412, 46.4274879 ], + [ 6.2326363, 46.4275783 ], + [ 6.2326281, 46.4275877 ], + [ 6.2324872, 46.4277491 ], + [ 6.2331268, 46.4281193 ], + [ 6.2334165, 46.4282871 ], + [ 6.2334261, 46.4282926 ], + [ 6.2330504, 46.4284808 ], + [ 6.2328895, 46.4286581 ], + [ 6.2328858, 46.4286622 ], + [ 6.2328831, 46.4286651 ], + [ 6.2328241, 46.4287411 ], + [ 6.2327823, 46.428795 ], + [ 6.2327281, 46.428865 ], + [ 6.2324926, 46.4291686 ], + [ 6.2320912, 46.4296861 ], + [ 6.2320881, 46.4296902 ], + [ 6.231944, 46.4298759 ], + [ 6.2317415, 46.429831 ], + [ 6.2317401, 46.4298307 ], + [ 6.2315361, 46.4297854 ], + [ 6.2308699, 46.4296376 ], + [ 6.2303943, 46.4295332 ], + [ 6.2303488, 46.4295228 ], + [ 6.2303062, 46.4295132 ], + [ 6.228821, 46.4291869 ], + [ 6.2286634, 46.4291523 ], + [ 6.2286633, 46.4291527 ], + [ 6.2286618, 46.4291559 ], + [ 6.2286528, 46.4291773 ], + [ 6.2286441, 46.4291979 ], + [ 6.2286014, 46.4292513 ], + [ 6.2284989, 46.4293794 ], + [ 6.2284539, 46.4294356 ], + [ 6.2284393, 46.4294501 ], + [ 6.2280729, 46.4298138 ], + [ 6.2277964, 46.430131 ], + [ 6.2277302, 46.4302095 ], + [ 6.227728, 46.4302121 ], + [ 6.2276431, 46.4303128 ], + [ 6.2276128, 46.4303506 ], + [ 6.2276026, 46.4303632 ], + [ 6.2273135, 46.430706 ], + [ 6.2272827, 46.4307425 ], + [ 6.2271212, 46.430918 ], + [ 6.2270789, 46.4309639 ], + [ 6.2269404, 46.4311105 ], + [ 6.2263978, 46.4316643 ], + [ 6.2263451, 46.4317517 ], + [ 6.2262671, 46.4318811 ], + [ 6.2262534, 46.4320784 ], + [ 6.2262684, 46.4321403 ], + [ 6.2262686, 46.4321411 ], + [ 6.2263461, 46.432308 ], + [ 6.2263462, 46.4323081 ], + [ 6.2264907, 46.4325399 ], + [ 6.2268674, 46.4331439 ], + [ 6.2269113, 46.4332144 ], + [ 6.2269047, 46.4332534 ], + [ 6.2270181000000004, 46.4334555 ], + [ 6.2270882, 46.43375 ], + [ 6.2270975, 46.4338866 ], + [ 6.2271402, 46.4345103 ], + [ 6.2271402, 46.4345104 ], + [ 6.2270781, 46.43464 ], + [ 6.2270736, 46.4346442 ], + [ 6.2270685, 46.4346483 ], + [ 6.2269461, 46.4347596 ], + [ 6.2269446, 46.434761 ], + [ 6.2266062, 46.4350502 ], + [ 6.2261358, 46.4354431 ], + [ 6.2258443, 46.4356447 ], + [ 6.2258302, 46.4356558 ], + [ 6.2257677, 46.435699 ], + [ 6.225767, 46.4356995 ], + [ 6.2257427, 46.4357163 ], + [ 6.2257425, 46.4357164 ], + [ 6.2257367, 46.4357205 ], + [ 6.2255531, 46.435772 ], + [ 6.2254669, 46.4357863 ], + [ 6.2254652, 46.4357866 ], + [ 6.2254329, 46.435792 ], + [ 6.2253166, 46.4358142 ], + [ 6.2252515, 46.4358237 ], + [ 6.2252337, 46.4358162 ], + [ 6.2252241, 46.4357776 ], + [ 6.2251828, 46.4357738 ], + [ 6.2251715, 46.4357723 ], + [ 6.2251189, 46.4357676 ], + [ 6.2250259, 46.4357366 ], + [ 6.2249709, 46.4357139 ], + [ 6.2249702, 46.4357136 ], + [ 6.224791, 46.4356396 ], + [ 6.2247766, 46.4356278 ], + [ 6.2247678, 46.4356207 ], + [ 6.2247672, 46.4356202 ], + [ 6.2247531, 46.4356087 ], + [ 6.224654, 46.43557 ], + [ 6.2246497, 46.4355683 ], + [ 6.2244876, 46.4355051 ], + [ 6.2244851, 46.4355045 ], + [ 6.2243199, 46.4354685 ], + [ 6.2241223, 46.4354646 ], + [ 6.2240388, 46.4354788 ], + [ 6.2240366, 46.4354792 ], + [ 6.2238337, 46.4355138 ], + [ 6.2236158, 46.4355509 ], + [ 6.2236151, 46.435551 ], + [ 6.2235541, 46.4355614 ], + [ 6.2232769, 46.4356125 ], + [ 6.2232758, 46.4356127 ], + [ 6.22325, 46.4356174 ], + [ 6.2230612, 46.4356533 ], + [ 6.2229329, 46.4356979 ], + [ 6.2229322, 46.4356981 ], + [ 6.2226943, 46.4357809 ], + [ 6.2226939, 46.435781 ], + [ 6.2226853, 46.435784 ], + [ 6.2226665, 46.4357912 ], + [ 6.222709, 46.4358107 ], + [ 6.2227097, 46.435811 ], + [ 6.2227107, 46.4358129 ], + [ 6.2227844, 46.43587 ], + [ 6.2230099, 46.4360443 ], + [ 6.223163, 46.4361879 ], + [ 6.2233202, 46.436295 ], + [ 6.2233474, 46.4364232 ], + [ 6.2232758, 46.4365445 ], + [ 6.2231749, 46.4366326 ], + [ 6.2228619, 46.4366757 ], + [ 6.2228615, 46.4366758 ], + [ 6.2228614, 46.4366757 ], + [ 6.2226481, 46.4366954 ], + [ 6.2225912, 46.4366916 ], + [ 6.2225301, 46.4366874 ], + [ 6.2222831, 46.4366707 ], + [ 6.2221579, 46.4368393 ], + [ 6.2221272, 46.4368805 ], + [ 6.2221268, 46.4368809 ], + [ 6.2221201, 46.4368866 ], + [ 6.2222133, 46.4369154 ], + [ 6.2222149, 46.4369159 ], + [ 6.2224121, 46.436977 ], + [ 6.2225002, 46.4370006 ], + [ 6.2228449, 46.4370905 ], + [ 6.2228452, 46.4370905 ], + [ 6.2229228, 46.4371108 ], + [ 6.2231508, 46.4371471 ], + [ 6.2231599, 46.4371486 ], + [ 6.2231815, 46.437152 ], + [ 6.2231817, 46.4371522 ], + [ 6.2231821, 46.4371523 ], + [ 6.2231264, 46.4372055 ], + [ 6.22291, 46.4374122 ], + [ 6.222864, 46.4374556 ], + [ 6.2228347, 46.4374833 ], + [ 6.2231922, 46.4376506 ], + [ 6.2231238, 46.4379789 ], + [ 6.2231012, 46.4380871 ], + [ 6.2230607, 46.4382816 ], + [ 6.2230331, 46.438414 ], + [ 6.223033, 46.4384144 ], + [ 6.2230308, 46.4384159 ], + [ 6.2224074, 46.4384347 ], + [ 6.2223801, 46.4384577 ], + [ 6.2223429, 46.4385498 ], + [ 6.2222248, 46.4388417 ], + [ 6.2222432, 46.439001 ], + [ 6.2222433, 46.4390017 ], + [ 6.2222574, 46.4390664 ], + [ 6.22226, 46.4390677 ], + [ 6.2223537, 46.4391143 ], + [ 6.2223539, 46.4391165 ], + [ 6.2223572, 46.4391465 ], + [ 6.2222963, 46.439219 ], + [ 6.2222113, 46.4392356 ], + [ 6.2221307, 46.4392436 ], + [ 6.2220579, 46.4392808 ], + [ 6.2219718, 46.4393443 ], + [ 6.2219236, 46.439414 ], + [ 6.2219311, 46.4394609 ], + [ 6.2219898, 46.4395143 ], + [ 6.2220339, 46.4395382 ], + [ 6.2220668, 46.439556 ], + [ 6.2220421, 46.4396062 ], + [ 6.2220199, 46.4396382 ], + [ 6.2219885, 46.4396727 ], + [ 6.2219329, 46.4397293 ], + [ 6.2218895, 46.439778 ], + [ 6.2218268, 46.4398729 ], + [ 6.2218256, 46.4398743 ], + [ 6.2217886, 46.4399107 ], + [ 6.2217792, 46.4399199 ], + [ 6.2217163, 46.4400195 ], + [ 6.2217077, 46.4400381 ], + [ 6.2217661, 46.4400702 ], + [ 6.2217676, 46.4400711 ], + [ 6.2217947, 46.4400859 ], + [ 6.2217998, 46.4401125 ], + [ 6.2217905, 46.4401272 ], + [ 6.2217896, 46.4401287 ], + [ 6.2217558, 46.4401515 ], + [ 6.2217249, 46.4401634 ], + [ 6.2216639, 46.4401737 ], + [ 6.2216369, 46.440176 ], + [ 6.2216231, 46.4401772 ], + [ 6.221646, 46.4401945 ], + [ 6.2217951, 46.4403174 ], + [ 6.2218052, 46.4403256 ], + [ 6.2222909, 46.4406732 ], + [ 6.2223611, 46.4407234 ], + [ 6.2223617, 46.4407238 ], + [ 6.2224984, 46.4408216 ], + [ 6.2226638, 46.4409296 ], + [ 6.2227494, 46.4409795 ], + [ 6.2228152, 46.4410178 ], + [ 6.2228168, 46.4410187 ], + [ 6.2228181, 46.4410192 ], + [ 6.2229098, 46.4410548 ], + [ 6.2229529, 46.4410715 ], + [ 6.2232597, 46.4411658 ], + [ 6.2233903999999995, 46.4411757 ], + [ 6.2238077, 46.4412071 ], + [ 6.2246826, 46.4412498 ], + [ 6.2251655, 46.4413309 ], + [ 6.2252333, 46.441341800000004 ], + [ 6.2252541, 46.4413452 ], + [ 6.2256467, 46.4414085 ], + [ 6.2259503, 46.4414713 ], + [ 6.2265866, 46.4415879 ], + [ 6.2266629, 46.4416106 ], + [ 6.2267436, 46.4416347 ], + [ 6.2269114, 46.4416847 ], + [ 6.2271549, 46.4417574 ], + [ 6.2273294, 46.4418163 ], + [ 6.2276201, 46.4419145 ], + [ 6.2281096, 46.4421552 ], + [ 6.2281428, 46.4421697 ], + [ 6.2290642, 46.442573 ], + [ 6.2295242, 46.4427929 ], + [ 6.2297281, 46.4428905 ], + [ 6.2298618, 46.4429553 ], + [ 6.2302939, 46.4431648 ], + [ 6.2303851, 46.443209 ], + [ 6.2304551, 46.4432462 ], + [ 6.2305797, 46.4433125 ], + [ 6.2306148, 46.4433311 ], + [ 6.2311283, 46.443702 ], + [ 6.2311471, 46.4437029 ], + [ 6.2311476, 46.4437029 ], + [ 6.2312034, 46.4437056 ], + [ 6.2312035, 46.4437056 ], + [ 6.231204, 46.4437056 ], + [ 6.2313539, 46.4436737 ], + [ 6.2315832, 46.44364 ], + [ 6.2315952, 46.4436408 ], + [ 6.2316472, 46.4436737 ], + [ 6.2319599, 46.4438715 ], + [ 6.2319603, 46.4438715 ], + [ 6.2319605, 46.4438716 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00045", + "country" : "CHE", + "name" : [ + { + "text" : "Genolier : Bois de Chênes", + "lang" : "de-CH" + }, + { + "text" : "Genolier : Bois de Chênes", + "lang" : "fr-CH" + }, + { + "text" : "Genolier : Bois de Chênes", + "lang" : "it-CH" + }, + { + "text" : "Genolier : Bois de Chênes", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Generaldirektion für Umwelt", + "lang" : "de-CH" + }, + { + "text" : "Direction générale de l'environnement", + "lang" : "fr-CH" + }, + { + "text" : "Direzione generale dell'Ambiente", + "lang" : "it-CH" + }, + { + "text" : "Environment Department", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.dge@vd.ch", + "phone" : "0041213164422", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.0691953, 46.3365395 ], + [ 7.068781, 46.3359616 ], + [ 7.0682081, 46.3350367 ], + [ 7.0675895, 46.3343348 ], + [ 7.0664853, 46.3334388 ], + [ 7.0664414, 46.334152 ], + [ 7.0661729, 46.3365611 ], + [ 7.0658156, 46.3384625 ], + [ 7.0654861, 46.3399205 ], + [ 7.0653115, 46.3405595 ], + [ 7.0694256, 46.3423821 ], + [ 7.0697689, 46.3423248 ], + [ 7.0705467, 46.3421618 ], + [ 7.0721596, 46.341639 ], + [ 7.0734679, 46.3411997 ], + [ 7.074387, 46.3406953 ], + [ 7.0747782, 46.3402837 ], + [ 7.0748727, 46.339935 ], + [ 7.0743946, 46.3395691 ], + [ 7.0731157, 46.3391206 ], + [ 7.072269, 46.3389118 ], + [ 7.0704656, 46.3382403 ], + [ 7.069577, 46.3375078 ], + [ 7.0692378, 46.3369679 ], + [ 7.0691953, 46.3365395 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00056", + "country" : "CHE", + "name" : [ + { + "text" : "Petit Chamossaire", + "lang" : "de-CH" + }, + { + "text" : "Petit Chamossaire", + "lang" : "fr-CH" + }, + { + "text" : "Petit Chamossaire", + "lang" : "it-CH" + }, + { + "text" : "Petit Chamossaire", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "startDateTime" : "2024-11-15T00:00:00+01:00", + "endDateTime" : "2025-04-15T00:00:00+02:00" + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Generaldirektion für Umwelt", + "lang" : "de-CH" + }, + { + "text" : "Direction générale de l'environnement", + "lang" : "fr-CH" + }, + { + "text" : "Direzione generale dell'Ambiente", + "lang" : "it-CH" + }, + { + "text" : "Environment Department", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.dge@vd.ch", + "phone" : "0041213164422", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.515102, 47.5052618 ], + [ 7.5152524, 47.5053384 ], + [ 7.5153651, 47.5054039 ], + [ 7.5154312, 47.5054577 ], + [ 7.5155457, 47.5055506 ], + [ 7.5155604, 47.505543 ], + [ 7.5154452, 47.5054497 ], + [ 7.5153801, 47.5053964 ], + [ 7.5151744, 47.5052762 ], + [ 7.5151346, 47.505256 ], + [ 7.515102, 47.5052618 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns032", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Mühleteich", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Mühleteich", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Mühleteich", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Mühleteich", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 10.0375116, 46.3866735 ], + [ 10.0373095, 46.3866769 ], + [ 10.0370755, 46.386662 ], + [ 10.0368608, 46.3866435 ], + [ 10.036557, 46.3867009 ], + [ 10.0361833, 46.3867061 ], + [ 10.0359678, 46.3867715 ], + [ 10.0357645, 46.3867863 ], + [ 10.0354926, 46.3866949 ], + [ 10.0352732, 46.3866965 ], + [ 10.035038, 46.3867592 ], + [ 10.0349071, 46.3868598 ], + [ 10.0348221, 46.3870198 ], + [ 10.0346269, 46.3873069 ], + [ 10.0345295, 46.3874975 ], + [ 10.034516, 46.3876224 ], + [ 10.0344565, 46.3877045 ], + [ 10.0343036, 46.3877551 ], + [ 10.0341712, 46.387943 ], + [ 10.0340691, 46.3881372 ], + [ 10.0338457, 46.38826 ], + [ 10.0337136, 46.3883371 ], + [ 10.033727, 46.388616 ], + [ 10.0337308, 46.3886966 ], + [ 10.033728, 46.3887404 ], + [ 10.0337212, 46.3888012 ], + [ 10.0336041, 46.3887836 ], + [ 10.0334629, 46.3887902 ], + [ 10.0332071, 46.3888298 ], + [ 10.0328045, 46.3888423 ], + [ 10.0324009, 46.3888515 ], + [ 10.0321267, 46.388915 ], + [ 10.0319116, 46.3889907 ], + [ 10.0317527, 46.3890663 ], + [ 10.0317186, 46.3892392 ], + [ 10.0317537, 46.3894622 ], + [ 10.0317546, 46.389686 ], + [ 10.0318545, 46.390074 ], + [ 10.0319827, 46.3903583 ], + [ 10.032197, 46.3907269 ], + [ 10.0323826, 46.3910042 ], + [ 10.032594, 46.3912925 ], + [ 10.0327883, 46.3915811 ], + [ 10.0329327, 46.391865 ], + [ 10.0329675, 46.3920823 ], + [ 10.0329899, 46.3924147 ], + [ 10.0330301, 46.3925745 ], + [ 10.0331211, 46.392762 ], + [ 10.0332824, 46.3930397 ], + [ 10.0333824, 46.3932615 ], + [ 10.0334262, 46.3934959 ], + [ 10.0334293, 46.3937654 ], + [ 10.033286499999999, 46.3940954 ], + [ 10.0332165, 46.3941944 ], + [ 10.0331727, 46.3943158 ], + [ 10.0332867, 46.3944741 ], + [ 10.0334585, 46.394614 ], + [ 10.0336042, 46.3947373 ], + [ 10.0338679, 46.395099 ], + [ 10.0340208, 46.3953713 ], + [ 10.0341054, 46.3956105 ], + [ 10.0341698, 46.3959535 ], + [ 10.0341068, 46.3962015 ], + [ 10.0339754, 46.3964279 ], + [ 10.0337963, 46.3966784 ], + [ 10.0335776, 46.3967805 ], + [ 10.0334019, 46.396916 ], + [ 10.0332307, 46.3971778 ], + [ 10.0331493, 46.3973975 ], + [ 10.0331071, 46.3975705 ], + [ 10.0330299, 46.3978761 ], + [ 10.0329097, 46.3979647 ], + [ 10.0325635, 46.3981726 ], + [ 10.0322655, 46.3983681 ], + [ 10.0316754, 46.3986786 ], + [ 10.0311727, 46.3989127 ], + [ 10.0307385, 46.3992028 ], + [ 10.0305948, 46.3993092 ], + [ 10.0304747, 46.3993977 ], + [ 10.030283, 46.3995565 ], + [ 10.0302495, 46.399740800000004 ], + [ 10.030338799999999, 46.4000775 ], + [ 10.03048, 46.4002926 ], + [ 10.0306282, 46.4004502 ], + [ 10.0306868, 46.4006728 ], + [ 10.0306138, 46.4008809 ], + [ 10.030491, 46.4011014 ], + [ 10.030363, 46.4011959 ], + [ 10.0300969, 46.401362 ], + [ 10.0297241, 46.4015418 ], + [ 10.0292793, 46.4017632 ], + [ 10.0287769, 46.402003 ], + [ 10.0283722, 46.4022123 ], + [ 10.0279474, 46.4025308 ], + [ 10.0275642, 46.4028485 ], + [ 10.0272968, 46.4031581 ], + [ 10.0269856, 46.4036064 ], + [ 10.0268611, 46.4037925 ], + [ 10.0266251, 46.4040785 ], + [ 10.0262767, 46.4044299 ], + [ 10.0260791, 46.4046348 ], + [ 10.0259054, 46.4048277 ], + [ 10.0258266, 46.4049154 ], + [ 10.0256111, 46.4051034 ], + [ 10.0253236, 46.4053332 ], + [ 10.0251396, 46.4054804 ], + [ 10.0249384, 46.4056107 ], + [ 10.0245377, 46.4059059 ], + [ 10.0241635, 46.406057 ], + [ 10.0238779, 46.4061375 ], + [ 10.0237344, 46.4062666 ], + [ 10.0236153, 46.406378 ], + [ 10.0234401, 46.4065424 ], + [ 10.0229744, 46.406856 ], + [ 10.0228223, 46.4069738 ], + [ 10.0225838, 46.4071911 ], + [ 10.0224335, 46.407348999999996 ], + [ 10.0222573, 46.4074903 ], + [ 10.022201, 46.4075201 ], + [ 10.0221371, 46.4075788 ], + [ 10.0219893, 46.4077885 ], + [ 10.0218978, 46.4079682 ], + [ 10.0217584, 46.4082006 ], + [ 10.0216394, 46.4083984 ], + [ 10.0215711, 46.4085701 ], + [ 10.0216796, 46.4087145 ], + [ 10.0219535, 46.4087611 ], + [ 10.0223565, 46.4090277 ], + [ 10.0224634, 46.4091369 ], + [ 10.0224519, 46.4092545 ], + [ 10.0222627, 46.4095523 ], + [ 10.0222337, 46.4096587 ], + [ 10.0223134, 46.4097274 ], + [ 10.0226734, 46.4099774 ], + [ 10.0228907, 46.4100839 ], + [ 10.0231646, 46.4101306 ], + [ 10.0233022, 46.4101685 ], + [ 10.0233327, 46.4102793 ], + [ 10.0232739, 46.4104627 ], + [ 10.0233315, 46.4106141 ], + [ 10.0242945, 46.4105813 ], + [ 10.0247834, 46.4106 ], + [ 10.0254285, 46.410604 ], + [ 10.0262229, 46.4106162 ], + [ 10.0267556, 46.4106857 ], + [ 10.027306, 46.4107834 ], + [ 10.0277061, 46.4108497 ], + [ 10.0279737, 46.4109189 ], + [ 10.0281064, 46.4109219 ], + [ 10.028464, 46.4105932 ], + [ 10.0289565, 46.4103134 ], + [ 10.0295359, 46.4099457 ], + [ 10.0300108, 46.4096376 ], + [ 10.0303449, 46.4095159 ], + [ 10.0309744, 46.4091587 ], + [ 10.0313437, 46.4089044 ], + [ 10.0315731, 46.4088037 ], + [ 10.0321197, 46.4088217 ], + [ 10.0324656, 46.4087947 ], + [ 10.0326675, 46.4087482 ], + [ 10.0329717, 46.4086457 ], + [ 10.0332625, 46.4086048 ], + [ 10.0342271, 46.4088269 ], + [ 10.0344336, 46.4088756 ], + [ 10.0346599, 46.4090001 ], + [ 10.0351003, 46.4090931 ], + [ 10.035394, 46.4091283 ], + [ 10.0356273, 46.409161 ], + [ 10.0358788, 46.4092317 ], + [ 10.0362977, 46.4092335 ], + [ 10.0365245, 46.4092321 ], + [ 10.0366937, 46.4091977 ], + [ 10.0368359, 46.4091792 ], + [ 10.0372358, 46.4092425 ], + [ 10.037384, 46.4092277 ], + [ 10.0377163, 46.4091362 ], + [ 10.037873, 46.409064 ], + [ 10.0381126, 46.4088868 ], + [ 10.0384015, 46.4087046 ], + [ 10.0386071, 46.4086161 ], + [ 10.0388434, 46.4086069 ], + [ 10.0392293, 46.4084798 ], + [ 10.0393898, 46.4083846 ], + [ 10.0395111, 46.4083703 ], + [ 10.0397033, 46.4083583 ], + [ 10.0400489, 46.4082053 ], + [ 10.041869, 46.4076296 ], + [ 10.0420916, 46.4075558 ], + [ 10.0422412, 46.4074532 ], + [ 10.042381, 46.4073852 ], + [ 10.0424423, 46.4072884 ], + [ 10.0424604, 46.4072078 ], + [ 10.0425008, 46.4071191 ], + [ 10.0425978, 46.4070712 ], + [ 10.0427238, 46.407053 ], + [ 10.0428274, 46.4070277 ], + [ 10.0429181, 46.4069685 ], + [ 10.0429419, 46.4068878 ], + [ 10.0429571, 46.4067463 ], + [ 10.0430549, 46.4067173 ], + [ 10.0431875, 46.4067182 ], + [ 10.0433021, 46.4067002 ], + [ 10.0434414, 46.4066207 ], + [ 10.0437004, 46.4066109 ], + [ 10.0438006, 46.4065133 ], + [ 10.0439237, 46.4064342 ], + [ 10.0440233, 46.4064433 ], + [ 10.0441914, 46.4064891 ], + [ 10.0443135, 46.4065091 ], + [ 10.0445158, 46.4064701 ], + [ 10.044731, 46.4064805 ], + [ 10.0448616, 46.4064394 ], + [ 10.044936, 46.4063805 ], + [ 10.0450449, 46.4062444 ], + [ 10.0452635, 46.4062222 ], + [ 10.0459076, 46.4062074 ], + [ 10.0460731, 46.4061805 ], + [ 10.0461604, 46.4061359 ], + [ 10.0461703, 46.4060372 ], + [ 10.0462823, 46.4058968 ], + [ 10.0464202, 46.4058051 ], + [ 10.0465935, 46.4057749 ], + [ 10.0467425, 46.4058109 ], + [ 10.0468895, 46.4058075 ], + [ 10.0470186, 46.4057356 ], + [ 10.047144, 46.4056703 ], + [ 10.0472577, 46.4056677 ], + [ 10.047356, 46.4057343 ], + [ 10.0474585, 46.4058009 ], + [ 10.0475471, 46.4058678 ], + [ 10.0476606, 46.4059636 ], + [ 10.0479294, 46.4061248 ], + [ 10.048208, 46.4062004 ], + [ 10.0485019, 46.4061904 ], + [ 10.0488957, 46.4061944 ], + [ 10.0491803, 46.4060928 ], + [ 10.0500632, 46.4057149 ], + [ 10.0502586, 46.4056348 ], + [ 10.0506791, 46.4055006 ], + [ 10.0510844, 46.4053566 ], + [ 10.0513217, 46.4052181 ], + [ 10.0514924, 46.4051821 ], + [ 10.0517712, 46.4051459 ], + [ 10.0521292, 46.4051484 ], + [ 10.0524477, 46.405194 ], + [ 10.0529758, 46.4052343 ], + [ 10.0534568, 46.4052415 ], + [ 10.0537556, 46.4052656 ], + [ 10.0542826, 46.405283 ], + [ 10.0545221, 46.4053267 ], + [ 10.0548498, 46.4053416 ], + [ 10.055201, 46.40534 ], + [ 10.0553691, 46.4053682 ], + [ 10.0554263, 46.4054074 ], + [ 10.055486, 46.4054316 ], + [ 10.0555265, 46.4054286 ], + [ 10.0555872, 46.4054058 ], + [ 10.0556804, 46.4053653 ], + [ 10.0558526, 46.4052929 ], + [ 10.055993, 46.4052534 ], + [ 10.0561432, 46.4052308 ], + [ 10.0563434, 46.4052348 ], + [ 10.0564777, 46.4052038 ], + [ 10.0566249, 46.4052539 ], + [ 10.0567121, 46.4052582 ], + [ 10.056813, 46.4052431 ], + [ 10.0569422, 46.4051719 ], + [ 10.0570861, 46.4051558 ], + [ 10.0572014, 46.4051168 ], + [ 10.0572606, 46.4050643 ], + [ 10.0572812, 46.4049848 ], + [ 10.0573102, 46.4049457 ], + [ 10.0573874, 46.4048778 ], + [ 10.0575314, 46.4048617 ], + [ 10.0577724, 46.4048668 ], + [ 10.0578671, 46.4049094 ], + [ 10.0579863, 46.4049515 ], + [ 10.0581488, 46.4049989 ], + [ 10.058355, 46.404992 ], + [ 10.0585488, 46.4049129 ], + [ 10.0587906, 46.4048177 ], + [ 10.0589592, 46.4047552 ], + [ 10.0591453, 46.4047353 ], + [ 10.059282, 46.4047047 ], + [ 10.059356, 46.4046542 ], + [ 10.0594182, 46.4045434 ], + [ 10.0595276, 46.4044178 ], + [ 10.0597095, 46.4043119 ], + [ 10.0598569, 46.4042656 ], + [ 10.0600816, 46.4041862 ], + [ 10.0602416, 46.4041141 ], + [ 10.0604398, 46.4040098 ], + [ 10.0605845, 46.4039577 ], + [ 10.0608868, 46.4039527 ], + [ 10.0611106, 46.4039728 ], + [ 10.0613012, 46.4039958 ], + [ 10.0614276, 46.403987 ], + [ 10.0615462, 46.4039843 ], + [ 10.0617409, 46.4040423 ], + [ 10.0619012, 46.4040604 ], + [ 10.0625762, 46.403203 ], + [ 10.0659022, 46.4019942 ], + [ 10.065963, 46.4018198 ], + [ 10.0664412, 46.4004466 ], + [ 10.0670061, 46.4000726 ], + [ 10.0670001, 46.3997473 ], + [ 10.067014, 46.3989759 ], + [ 10.0669992, 46.3984528 ], + [ 10.0667291, 46.3977445 ], + [ 10.066758, 46.3972841 ], + [ 10.0667682, 46.3970574 ], + [ 10.0665841, 46.3968495 ], + [ 10.0663292, 46.3966572 ], + [ 10.0662318, 46.3963412 ], + [ 10.066105, 46.39604 ], + [ 10.0659477, 46.3957464 ], + [ 10.065982, 46.395399 ], + [ 10.0661952, 46.3951676 ], + [ 10.0663147, 46.3948819 ], + [ 10.0663082, 46.3945283 ], + [ 10.0662195, 46.3941907 ], + [ 10.0662222, 46.3940279 ], + [ 10.066273, 46.3938355 ], + [ 10.0664233, 46.3936659 ], + [ 10.0664471, 46.3936534 ], + [ 10.0665482, 46.3936928 ], + [ 10.0667314, 46.393664 ], + [ 10.0670676, 46.3935555 ], + [ 10.0674215, 46.3934588 ], + [ 10.0676232, 46.3933092 ], + [ 10.0677767, 46.3932394 ], + [ 10.0679107, 46.3931527 ], + [ 10.0679921, 46.3930033 ], + [ 10.0679527, 46.3928446 ], + [ 10.0678385, 46.3926849 ], + [ 10.0677382, 46.3925276 ], + [ 10.06768, 46.3924184 ], + [ 10.0677074, 46.3923293 ], + [ 10.0677847, 46.3921629 ], + [ 10.0679094, 46.3919511 ], + [ 10.0680326, 46.3916411 ], + [ 10.0682637, 46.3912082 ], + [ 10.0683372, 46.391032 ], + [ 10.0684131, 46.3908362 ], + [ 10.0685838, 46.390702 ], + [ 10.0687857, 46.3906236 ], + [ 10.0690495, 46.3905635 ], + [ 10.0692894, 46.3904645 ], + [ 10.0695206, 46.3903878 ], + [ 10.0697396, 46.3902255 ], + [ 10.0701363, 46.3900566 ], + [ 10.0702317, 46.3899783 ], + [ 10.0703788, 46.3897757 ], + [ 10.0704961, 46.389714 ], + [ 10.0705859, 46.3896554 ], + [ 10.0706691, 46.389543 ], + [ 10.0708672, 46.3894548 ], + [ 10.0712848, 46.3892142 ], + [ 10.0716681, 46.3889866 ], + [ 10.0719896, 46.3888095 ], + [ 10.0721968, 46.3886745 ], + [ 10.0721941, 46.3885518 ], + [ 10.0720995, 46.3884285 ], + [ 10.0721687, 46.3882452 ], + [ 10.0721745, 46.3879968 ], + [ 10.0719336, 46.3877911 ], + [ 10.0719099, 46.3876712 ], + [ 10.0718303, 46.3871033 ], + [ 10.0717372, 46.3868757 ], + [ 10.0716521, 46.3866307 ], + [ 10.071597, 46.3863164 ], + [ 10.071465, 46.3861413 ], + [ 10.0713878, 46.3858904 ], + [ 10.0714457, 46.3857114 ], + [ 10.0713385, 46.3854458 ], + [ 10.0713576, 46.3853194 ], + [ 10.0713691, 46.3851711 ], + [ 10.0713433, 46.3850239 ], + [ 10.0714431, 46.3848869 ], + [ 10.0714804, 46.3847511 ], + [ 10.0714002, 46.3846399 ], + [ 10.0711739, 46.3845148 ], + [ 10.0711411, 46.384359 ], + [ 10.0710404, 46.3842265 ], + [ 10.0709948, 46.384058 ], + [ 10.0708003, 46.3839365 ], + [ 10.0706816, 46.3838174 ], + [ 10.0707706, 46.3835761 ], + [ 10.0707973, 46.3834886 ], + [ 10.0706714, 46.3833568 ], + [ 10.0704905, 46.3832479 ], + [ 10.0702306, 46.3832018 ], + [ 10.0700844, 46.3831703 ], + [ 10.069867, 46.3830971 ], + [ 10.0696814, 46.3830231 ], + [ 10.0695806, 46.3828907 ], + [ 10.0695275, 46.3827162 ], + [ 10.0694721, 46.3825975 ], + [ 10.0693616, 46.3825131 ], + [ 10.0690901, 46.3823629 ], + [ 10.0690554, 46.382168 ], + [ 10.0690709, 46.3819676 ], + [ 10.069154, 46.3818526 ], + [ 10.0693186, 46.3817619 ], + [ 10.0693583, 46.381674 ], + [ 10.0694476, 46.3815718 ], + [ 10.069858, 46.3812175 ], + [ 10.0698942, 46.3811919 ], + [ 10.0699451, 46.3811353 ], + [ 10.0701052, 46.3810172 ], + [ 10.0701293, 46.3809267 ], + [ 10.0702304, 46.3808489 ], + [ 10.0704102, 46.3807694 ], + [ 10.0704139, 46.3806783 ], + [ 10.0703117, 46.3805143 ], + [ 10.0701538, 46.380427 ], + [ 10.0699753, 46.3804 ], + [ 10.0696805, 46.3803548 ], + [ 10.0695451, 46.3802774 ], + [ 10.0694815, 46.3801229 ], + [ 10.0695144, 46.3799454 ], + [ 10.0696647, 46.3797105 ], + [ 10.0696766, 46.3795699 ], + [ 10.0695428, 46.3793756 ], + [ 10.0692681, 46.3792077 ], + [ 10.068316, 46.3787827 ], + [ 10.0680548, 46.3786588 ], + [ 10.0673252, 46.3781768 ], + [ 10.0672525, 46.3779185 ], + [ 10.0670439, 46.3776374 ], + [ 10.066948, 46.3775201 ], + [ 10.0667116, 46.3771357 ], + [ 10.0665382, 46.376963 ], + [ 10.066221, 46.376622 ], + [ 10.0660401, 46.3764442 ], + [ 10.065947, 46.3762333 ], + [ 10.0658585, 46.3759494 ], + [ 10.065796, 46.3757481 ], + [ 10.0657874, 46.3755715 ], + [ 10.0658366, 46.3755296 ], + [ 10.0659311, 46.375433 ], + [ 10.0660152, 46.3753063 ], + [ 10.0660193, 46.375088 ], + [ 10.0659959, 46.3749065 ], + [ 10.0658479, 46.3747535 ], + [ 10.0657715, 46.3746368 ], + [ 10.0657723, 46.3744855 ], + [ 10.0656376, 46.3741871 ], + [ 10.0656311, 46.3740521 ], + [ 10.0656966, 46.3738426 ], + [ 10.0657427, 46.373722 ], + [ 10.0657812, 46.373274 ], + [ 10.0657644, 46.3730768 ], + [ 10.0657044, 46.3726103 ], + [ 10.0655675, 46.3722652 ], + [ 10.0653278, 46.3718133 ], + [ 10.065127, 46.3715425 ], + [ 10.065092, 46.3712884 ], + [ 10.0651499, 46.3709739 ], + [ 10.0652848, 46.3707557 ], + [ 10.0654869, 46.370665 ], + [ 10.0655733, 46.3705866 ], + [ 10.065721, 46.3703632 ], + [ 10.0657959, 46.3701991 ], + [ 10.0658888, 46.3699675 ], + [ 10.0660643, 46.3697484 ], + [ 10.0663076, 46.3695038 ], + [ 10.066645, 46.3693383 ], + [ 10.0668672, 46.369228 ], + [ 10.0670348, 46.3691142 ], + [ 10.0671927, 46.3689528 ], + [ 10.0673578, 46.3686526 ], + [ 10.0674703, 46.3684254 ], + [ 10.0675331, 46.368295 ], + [ 10.0677669, 46.3681223 ], + [ 10.0678138, 46.3679491 ], + [ 10.0678413, 46.3676619 ], + [ 10.0679563, 46.3674679 ], + [ 10.0682486, 46.3672461 ], + [ 10.0688341, 46.3666495 ], + [ 10.0691109, 46.3663755 ], + [ 10.0692665, 46.3661664 ], + [ 10.069389, 46.3658433 ], + [ 10.0695776, 46.3656095 ], + [ 10.069702, 46.3653247 ], + [ 10.0698479, 46.3650488 ], + [ 10.0698529, 46.3648672 ], + [ 10.0696886, 46.3644792 ], + [ 10.0696163, 46.364261 ], + [ 10.0695362, 46.3638996 ], + [ 10.0696878, 46.3634565 ], + [ 10.0698709, 46.3628262 ], + [ 10.069999, 46.3624839 ], + [ 10.0700162, 46.3622684 ], + [ 10.0699569, 46.3620357 ], + [ 10.0700385, 46.3617567 ], + [ 10.0699381, 46.3613629 ], + [ 10.069901, 46.3610824 ], + [ 10.0699307, 46.3608237 ], + [ 10.0699432, 46.360478 ], + [ 10.0698969, 46.360092 ], + [ 10.0698524, 46.359878 ], + [ 10.0697647, 46.3596459 ], + [ 10.069303, 46.3592218 ], + [ 10.0689358, 46.3589053 ], + [ 10.0687743, 46.3587084 ], + [ 10.0687478, 46.3583122 ], + [ 10.0685858, 46.3578191 ], + [ 10.0683546, 46.3576093 ], + [ 10.0682016, 46.3574361 ], + [ 10.0681233, 46.3570939 ], + [ 10.068372, 46.356677 ], + [ 10.0685562, 46.3564864 ], + [ 10.0686638, 46.3562928 ], + [ 10.0686561, 46.3561353 ], + [ 10.0684702, 46.3558529 ], + [ 10.0682816, 46.3556661 ], + [ 10.0681594, 46.3554252 ], + [ 10.0680903, 46.3552738 ], + [ 10.0679075, 46.3550726 ], + [ 10.0676586, 46.3549159 ], + [ 10.0674475, 46.354701 ], + [ 10.0670235, 46.3541995 ], + [ 10.066825, 46.3539604 ], + [ 10.0666768, 46.3537345 ], + [ 10.0661565, 46.3528386 ], + [ 10.0658401, 46.3522772 ], + [ 10.0656194, 46.3517961 ], + [ 10.0654991, 46.3513254 ], + [ 10.0654207, 46.3508634 ], + [ 10.0654474, 46.3505439 ], + [ 10.0654776, 46.3503113 ], + [ 10.0655165, 46.3502427 ], + [ 10.0653898, 46.3502263 ], + [ 10.0638245, 46.3498953 ], + [ 10.0624898, 46.3502837 ], + [ 10.0607593, 46.3482654 ], + [ 10.0595908, 46.3466105 ], + [ 10.0594405, 46.3467451 ], + [ 10.0593106, 46.3468972 ], + [ 10.0591349, 46.3470458 ], + [ 10.0588342, 46.3471613 ], + [ 10.0585619, 46.3473257 ], + [ 10.0583746, 46.3475017 ], + [ 10.0582598, 46.3476986 ], + [ 10.05818, 46.347931 ], + [ 10.0580661, 46.348146 ], + [ 10.0578574, 46.3484174 ], + [ 10.0577326, 46.3485422 ], + [ 10.0575546, 46.3486413 ], + [ 10.0574616, 46.3488693 ], + [ 10.0574387, 46.3490687 ], + [ 10.0573399, 46.3491929 ], + [ 10.0572047, 46.3492367 ], + [ 10.05706, 46.3491994 ], + [ 10.0569429, 46.3492157 ], + [ 10.0568962, 46.3493252 ], + [ 10.0568978, 46.3494923 ], + [ 10.0569095, 46.349736 ], + [ 10.0569473, 46.3499791 ], + [ 10.0569631, 46.3501731 ], + [ 10.0570476, 46.3503067 ], + [ 10.0570677, 46.3504554 ], + [ 10.0570918, 46.3506672 ], + [ 10.0570668, 46.3508395 ], + [ 10.056929, 46.3510821 ], + [ 10.0566531, 46.351459 ], + [ 10.0565306, 46.3516155 ], + [ 10.0563126, 46.3517108 ], + [ 10.0559717, 46.3518 ], + [ 10.0556178, 46.3519076 ], + [ 10.0554569, 46.351976 ], + [ 10.0551816, 46.3521799 ], + [ 10.0551169, 46.3523886 ], + [ 10.0550293, 46.3526108 ], + [ 10.054843, 46.3527219 ], + [ 10.0545766, 46.3528252 ], + [ 10.0544362, 46.3529127 ], + [ 10.0542842, 46.3529615 ], + [ 10.0540697, 46.3529793 ], + [ 10.0535483, 46.3530334 ], + [ 10.0529867, 46.3532148 ], + [ 10.0526552, 46.3534167 ], + [ 10.0522975, 46.3536646 ], + [ 10.0518588, 46.3538689 ], + [ 10.0517342, 46.3539981 ], + [ 10.0513362, 46.3541853 ], + [ 10.0510954, 46.3545341 ], + [ 10.0508841, 46.3549048 ], + [ 10.0507145, 46.3550609 ], + [ 10.0504113, 46.3552784 ], + [ 10.0501755, 46.3555266 ], + [ 10.0499207, 46.3558725 ], + [ 10.0497654, 46.3560379 ], + [ 10.0494515, 46.3562361 ], + [ 10.0490106, 46.3564956 ], + [ 10.0485618, 46.3568947 ], + [ 10.0483391, 46.3571805 ], + [ 10.0481259, 46.3574952 ], + [ 10.0480169, 46.3575943 ], + [ 10.0478365, 46.3577124 ], + [ 10.047786200000001, 46.3577984 ], + [ 10.0478101, 46.3578563 ], + [ 10.0478983, 46.3579332 ], + [ 10.0481382, 46.3581061 ], + [ 10.0484026, 46.3583339 ], + [ 10.0484798, 46.3584344 ], + [ 10.048471, 46.3586072 ], + [ 10.0485293, 46.3586877 ], + [ 10.0485961, 46.3587593 ], + [ 10.0487278, 46.3588614 ], + [ 10.0487715, 46.3589774 ], + [ 10.0488018, 46.3591667 ], + [ 10.0488451, 46.359274 ], + [ 10.0489637, 46.3593735 ], + [ 10.0491187, 46.359522 ], + [ 10.0492081, 46.3596244 ], + [ 10.0492374, 46.3597946 ], + [ 10.049325, 46.3598916 ], + [ 10.0494268, 46.3600332 ], + [ 10.0493867, 46.360094 ], + [ 10.0492765, 46.3601505 ], + [ 10.0491682, 46.3602309 ], + [ 10.0490099, 46.3602856 ], + [ 10.0489762, 46.3604116 ], + [ 10.0485592, 46.3606957 ], + [ 10.0480342, 46.3609647 ], + [ 10.047552, 46.3612789 ], + [ 10.0469469, 46.3618078 ], + [ 10.0462891, 46.3624583 ], + [ 10.0455078, 46.3631114 ], + [ 10.0450916, 46.3634299 ], + [ 10.044546799999999, 46.3639977 ], + [ 10.0441085, 46.3643797 ], + [ 10.0438837, 46.3645221 ], + [ 10.0435562, 46.3647928 ], + [ 10.0432133, 46.3650639 ], + [ 10.0429093, 46.3652997 ], + [ 10.0427292, 46.3655272 ], + [ 10.0427189, 46.3658717 ], + [ 10.0428015, 46.3662371 ], + [ 10.042921, 46.36651 ], + [ 10.0430492, 46.3667943 ], + [ 10.0430679, 46.3672357 ], + [ 10.042962, 46.3674502 ], + [ 10.0427211, 46.3677995 ], + [ 10.0425797, 46.3679688 ], + [ 10.0425957, 46.3683358 ], + [ 10.0427884, 46.3687793 ], + [ 10.042934, 46.369086 ], + [ 10.0429275, 46.3694936 ], + [ 10.0431381, 46.3699713 ], + [ 10.043291, 46.3702434 ], + [ 10.0434791, 46.3705724 ], + [ 10.0435645, 46.3708288 ], + [ 10.0436213, 46.3711833 ], + [ 10.0436402, 46.3714239 ], + [ 10.0436252, 46.3716538 ], + [ 10.0434879, 46.3719091 ], + [ 10.0434865, 46.3722534 ], + [ 10.043461, 46.3724318 ], + [ 10.0434549, 46.3726786 ], + [ 10.0433487, 46.3728875 ], + [ 10.0432512, 46.3731247 ], + [ 10.0432523, 46.3732843 ], + [ 10.0431264, 46.3734715 ], + [ 10.0430532, 46.3737594 ], + [ 10.0430325, 46.3739554 ], + [ 10.0430574, 46.3744729 ], + [ 10.0430857, 46.3747419 ], + [ 10.0430091, 46.3749075 ], + [ 10.0428409, 46.3750593 ], + [ 10.0426306, 46.3751329 ], + [ 10.04241, 46.375159 ], + [ 10.0421957, 46.3751482 ], + [ 10.0421884, 46.3753016 ], + [ 10.0422382, 46.3755436 ], + [ 10.0423631, 46.3759265 ], + [ 10.0424194, 46.3761527 ], + [ 10.042391, 46.3763382 ], + [ 10.0422219, 46.3766435 ], + [ 10.0422275, 46.3767597 ], + [ 10.0421673, 46.376946 ], + [ 10.0420529, 46.3772552 ], + [ 10.0420822, 46.3775611 ], + [ 10.041964, 46.3779603 ], + [ 10.0419572, 46.3781243 ], + [ 10.0419019, 46.3782577 ], + [ 10.0417399, 46.3785416 ], + [ 10.0416146, 46.378793 ], + [ 10.0416245, 46.3789989 ], + [ 10.041693, 46.3793091 ], + [ 10.0417132, 46.3795783 ], + [ 10.041573, 46.3801471 ], + [ 10.0414957, 46.380297 ], + [ 10.0414302, 46.3803047 ], + [ 10.0413728, 46.3803109 ], + [ 10.0413625, 46.3803495 ], + [ 10.0413463, 46.3804199 ], + [ 10.0413207, 46.3805288 ], + [ 10.0413118, 46.3807009 ], + [ 10.0413017, 46.3808962 ], + [ 10.0412644, 46.3811188 ], + [ 10.0412141, 46.3812217 ], + [ 10.0409863, 46.3815053 ], + [ 10.0409838, 46.3816404 ], + [ 10.0410296, 46.3817478 ], + [ 10.0410871, 46.3818448 ], + [ 10.0411563, 46.3820333 ], + [ 10.0411739, 46.3820962 ], + [ 10.0411523, 46.3821868 ], + [ 10.041112, 46.3822627 ], + [ 10.0409839, 46.3824057 ], + [ 10.0408512, 46.3825022 ], + [ 10.0408091, 46.3827782 ], + [ 10.0408035, 46.3830169 ], + [ 10.0407939, 46.3831037 ], + [ 10.0407679, 46.3832244 ], + [ 10.0407112, 46.3834991 ], + [ 10.0406387, 46.3836491 ], + [ 10.0405485, 46.3839197 ], + [ 10.0405511, 46.384128 ], + [ 10.0405877, 46.3842974 ], + [ 10.0405884, 46.3843973 ], + [ 10.040526, 46.3846038 ], + [ 10.0405026, 46.3846761 ], + [ 10.0404172, 46.3848098 ], + [ 10.0402692, 46.3850282 ], + [ 10.0401647, 46.3851716 ], + [ 10.0400584, 46.3852951 ], + [ 10.0399203, 46.3853487 ], + [ 10.0397032, 46.3853806 ], + [ 10.0395114, 46.385449 ], + [ 10.0394683, 46.3855508 ], + [ 10.039428, 46.3856258 ], + [ 10.0392798, 46.3856897 ], + [ 10.0390659, 46.3857888 ], + [ 10.0387771, 46.3859536 ], + [ 10.0385944, 46.3859914 ], + [ 10.038371, 46.3860975 ], + [ 10.0382387, 46.3861678 ], + [ 10.0382149, 46.3861818 ], + [ 10.0380512, 46.3863268 ], + [ 10.0380164, 46.3863983 ], + [ 10.037944, 46.3866187 ], + [ 10.0378732, 46.3866674 ], + [ 10.0375116, 46.3866735 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "JBG0008", + "country" : "CHE", + "name" : [ + { + "text" : "Eidgenössisches Jagdbanngebiet Campasc", + "lang" : "de-CH" + }, + { + "text" : "District franc fédéral Campasc", + "lang" : "fr-CH" + }, + { + "text" : "Bandita federale di caccia Campasc", + "lang" : "it-CH" + }, + { + "text" : "Federal Game Reserve Campasc", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.0344796, 47.3934778 ], + [ 7.0237673, 47.3908494 ], + [ 7.0234972, 47.3913566 ], + [ 7.0241463, 47.3915118 ], + [ 7.0242237, 47.391781 ], + [ 7.0282002, 47.3927648 ], + [ 7.0281914, 47.3933818 ], + [ 7.0324539, 47.3944132 ], + [ 7.0326761, 47.3946245 ], + [ 7.0327931, 47.3945727 ], + [ 7.0334209, 47.394047 ], + [ 7.034119, 47.3942141 ], + [ 7.0344796, 47.3934778 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZQ002", + "country" : "CHE", + "name" : [ + { + "text" : "LSZQ Bressaucourt (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSZQ Bressaucourt (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSZQ Bressaucourt (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSZQ Bressaucourt (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Aérodrome du Jura", + "lang" : "de-CH" + }, + { + "text" : "Aérodrome du Jura", + "lang" : "fr-CH" + }, + { + "text" : "Aérodrome du Jura", + "lang" : "it-CH" + }, + { + "text" : "Aérodrome du Jura", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Chef d'aérodrome", + "lang" : "de-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "fr-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "it-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Serge Crelier", + "lang" : "de-CH" + }, + { + "text" : "Serge Crelier", + "lang" : "fr-CH" + }, + { + "text" : "Serge Crelier", + "lang" : "it-CH" + }, + { + "text" : "Serge Crelier", + "lang" : "en-GB" + } + ], + "siteURL" : "https://aerojura.ch/contact", + "email" : "info@aerojura.ch", + "phone" : "0041324666073", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.9506246, 47.3176382 ], + [ 7.9506178, 47.317497 ], + [ 7.9506001, 47.3173563 ], + [ 7.9505717, 47.3172164 ], + [ 7.9505325, 47.3170776 ], + [ 7.9504827, 47.3169405 ], + [ 7.9504224, 47.3168053 ], + [ 7.9503518, 47.3166724 ], + [ 7.950271, 47.3165423 ], + [ 7.9501804, 47.3164152 ], + [ 7.9500801, 47.3162915 ], + [ 7.9499704, 47.3161715 ], + [ 7.9498516, 47.3160556 ], + [ 7.9497241, 47.3159441 ], + [ 7.9495881, 47.3158373 ], + [ 7.9494442, 47.3157354 ], + [ 7.9492925, 47.3156389 ], + [ 7.9491337, 47.3155478 ], + [ 7.9489681, 47.3154625 ], + [ 7.9487961, 47.3153833 ], + [ 7.9486183, 47.3153102 ], + [ 7.9484351, 47.3152436 ], + [ 7.9482471, 47.3151837 ], + [ 7.9480546, 47.3151304 ], + [ 7.9478584, 47.3150842 ], + [ 7.9476588, 47.3150449 ], + [ 7.9474564999999995, 47.3150128 ], + [ 7.947252, 47.314988 ], + [ 7.9470459, 47.3149704 ], + [ 7.9468387, 47.3149603 ], + [ 7.9466311, 47.3149575 ], + [ 7.9464234, 47.3149621 ], + [ 7.9462165, 47.3149741 ], + [ 7.9460107, 47.3149934 ], + [ 7.9458067, 47.3150201 ], + [ 7.945605, 47.3150539 ], + [ 7.9454062, 47.3150949 ], + [ 7.9452109, 47.315143 ], + [ 7.9450195, 47.3151979 ], + [ 7.9448326, 47.3152595 ], + [ 7.9446507, 47.3153277 ], + [ 7.9444742, 47.3154023 ], + [ 7.9443038, 47.315483 ], + [ 7.9441398, 47.3155698 ], + [ 7.9439827, 47.3156622 ], + [ 7.943833, 47.3157601 ], + [ 7.943691, 47.3158632 ], + [ 7.9435571, 47.3159712 ], + [ 7.9434317, 47.3160838 ], + [ 7.9433150999999995, 47.3162008 ], + [ 7.9432077, 47.3163217 ], + [ 7.9431098, 47.3164463 ], + [ 7.9430215, 47.3165742 ], + [ 7.9429433, 47.316705 ], + [ 7.9428752, 47.3168385 ], + [ 7.9428175, 47.3169742 ], + [ 7.9427703, 47.3171118 ], + [ 7.9427337, 47.3172508 ], + [ 7.9427079, 47.317391 ], + [ 7.942693, 47.3175319 ], + [ 7.9426889, 47.3176731 ], + [ 7.9426956, 47.3178143 ], + [ 7.9427133, 47.3179551 ], + [ 7.9427417, 47.318095 ], + [ 7.9427809, 47.3182338 ], + [ 7.9428307, 47.3183709 ], + [ 7.9428909, 47.3185061 ], + [ 7.9429615, 47.318639 ], + [ 7.9430423, 47.3187691 ], + [ 7.9431329, 47.3188962 ], + [ 7.9432332, 47.31902 ], + [ 7.9433429, 47.3191399 ], + [ 7.9434616, 47.3192558 ], + [ 7.9435892, 47.3193674 ], + [ 7.9437251, 47.3194742 ], + [ 7.9438691, 47.319576 ], + [ 7.9440207, 47.3196726 ], + [ 7.9441795, 47.3197637 ], + [ 7.9443451, 47.3198489 ], + [ 7.9445171, 47.3199282 ], + [ 7.9446949, 47.3200012 ], + [ 7.9448781, 47.3200678 ], + [ 7.9450662, 47.3201278 ], + [ 7.9452587, 47.3201811 ], + [ 7.9454549, 47.3202273 ], + [ 7.9456545, 47.3202666 ], + [ 7.9458568, 47.3202987 ], + [ 7.9460613, 47.3203235 ], + [ 7.9462675, 47.3203411 ], + [ 7.9464747, 47.3203512 ], + [ 7.9466824, 47.320354 ], + [ 7.94689, 47.3203494 ], + [ 7.947097, 47.3203374 ], + [ 7.9473028, 47.3203181 ], + [ 7.9475068, 47.3202914 ], + [ 7.9477085, 47.3202576 ], + [ 7.9479073, 47.3202166 ], + [ 7.9481027, 47.3201685 ], + [ 7.9482941, 47.3201136 ], + [ 7.948481, 47.320052 ], + [ 7.9486629, 47.3199838 ], + [ 7.9488394, 47.3199092 ], + [ 7.9490098, 47.3198284 ], + [ 7.9491738, 47.3197417 ], + [ 7.9493309, 47.3196492 ], + [ 7.9494807, 47.3195513 ], + [ 7.9496227, 47.3194482 ], + [ 7.9497566, 47.3193402 ], + [ 7.9498819, 47.3192276 ], + [ 7.9499984999999995, 47.3191107 ], + [ 7.9501059, 47.3189897 ], + [ 7.9502038, 47.3188651 ], + [ 7.950292, 47.3187372 ], + [ 7.9503703, 47.3186064 ], + [ 7.9504383, 47.3184729 ], + [ 7.9504961, 47.3183372 ], + [ 7.9505432, 47.3181996 ], + [ 7.9505798, 47.3180606 ], + [ 7.9506055, 47.3179204 ], + [ 7.9506205, 47.3177795 ], + [ 7.9506246, 47.3176382 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0081", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Oftringen", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Oftringen", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Oftringen", + "lang" : "it-CH" + }, + { + "text" : "Substation Oftringen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6352559, 47.4908515 ], + [ 7.6350863, 47.4907584 ], + [ 7.6349037, 47.490663 ], + [ 7.6348635, 47.4906579 ], + [ 7.6348516, 47.4906597 ], + [ 7.6347842, 47.4906482 ], + [ 7.634768, 47.4906435 ], + [ 7.6346812, 47.4906284 ], + [ 7.6345927, 47.4906003 ], + [ 7.6344173, 47.4905883 ], + [ 7.6342623, 47.4905866 ], + [ 7.6342251, 47.4905879 ], + [ 7.634104, 47.4905949 ], + [ 7.6340268, 47.4906112 ], + [ 7.6339918, 47.4906315 ], + [ 7.6338864, 47.4906718 ], + [ 7.6337186, 47.4907424 ], + [ 7.6336246, 47.4908098 ], + [ 7.6335302, 47.4908762 ], + [ 7.6334576, 47.4909259 ], + [ 7.6334254999999995, 47.4909454 ], + [ 7.6333172000000005, 47.4910113 ], + [ 7.6333075, 47.4910171 ], + [ 7.6332822, 47.4910332 ], + [ 7.6332921, 47.4910425 ], + [ 7.6333282, 47.4910311 ], + [ 7.6333335, 47.4910278 ], + [ 7.6334745, 47.4909399 ], + [ 7.63355, 47.4908865 ], + [ 7.6336422, 47.4908191 ], + [ 7.6337373, 47.4907535 ], + [ 7.6339051, 47.4906804 ], + [ 7.6340404, 47.4906301 ], + [ 7.6341126, 47.4906176 ], + [ 7.6342685, 47.4906097 ], + [ 7.6343568, 47.4906107 ], + [ 7.6344359, 47.4906077 ], + [ 7.6345246, 47.4906124 ], + [ 7.6345705, 47.4906228 ], + [ 7.6346144, 47.490621 ], + [ 7.6347841, 47.4906638 ], + [ 7.6348026, 47.4906669 ], + [ 7.634869, 47.4906789 ], + [ 7.6348856, 47.4906891 ], + [ 7.6352655, 47.4908843 ], + [ 7.6354289, 47.4909309 ], + [ 7.6356122, 47.4909882 ], + [ 7.6358675, 47.4910514 ], + [ 7.6359941, 47.4910652 ], + [ 7.6362494, 47.4911161 ], + [ 7.6365055, 47.4911641 ], + [ 7.6366377, 47.4911814 ], + [ 7.6366978, 47.4911816 ], + [ 7.6368409, 47.4911758 ], + [ 7.6369508, 47.4912144 ], + [ 7.6370001, 47.4912379 ], + [ 7.6371586, 47.4913048 ], + [ 7.6372564, 47.4913495 ], + [ 7.6373045, 47.4913773 ], + [ 7.6373481, 47.4914277 ], + [ 7.6373997, 47.4914603 ], + [ 7.6374543, 47.4914899 ], + [ 7.6375281, 47.4914979 ], + [ 7.6376691999999995, 47.4914872 ], + [ 7.6377602, 47.4915378 ], + [ 7.6378362, 47.4915836 ], + [ 7.6379015, 47.4916103 ], + [ 7.6379925, 47.4916331 ], + [ 7.6381043, 47.4916519 ], + [ 7.6382631, 47.4916552 ], + [ 7.6381027, 47.4916649 ], + [ 7.6374977, 47.4916828 ], + [ 7.6371964, 47.4916816 ], + [ 7.6369196, 47.4916945 ], + [ 7.636691, 47.4917278 ], + [ 7.6367989, 47.4921256 ], + [ 7.6364346, 47.492491 ], + [ 7.6365965, 47.4930149 ], + [ 7.6365666, 47.4932068 ], + [ 7.6368863000000005, 47.493537 ], + [ 7.6374047, 47.4936925 ], + [ 7.638103, 47.4936955 ], + [ 7.638616, 47.4939495 ], + [ 7.6385872, 47.4941155 ], + [ 7.6389157, 47.4942506 ], + [ 7.6400582, 47.4944341 ], + [ 7.6399203, 47.4946455 ], + [ 7.6396739, 47.4950327 ], + [ 7.6396332000000005, 47.4950966 ], + [ 7.6396436, 47.4950995 ], + [ 7.6397401, 47.4951271 ], + [ 7.6398521, 47.4948313 ], + [ 7.6398741999999995, 47.4948054 ], + [ 7.6399211000000005, 47.4947151 ], + [ 7.6401848, 47.4946732 ], + [ 7.6404051, 47.4945173 ], + [ 7.6409591, 47.4946503 ], + [ 7.6411807, 47.4945207 ], + [ 7.6415163, 47.4947444 ], + [ 7.6420133, 47.49502 ], + [ 7.6425477, 47.4953808 ], + [ 7.6430494, 47.4950046 ], + [ 7.6431256, 47.4950974 ], + [ 7.6436369, 47.4956132 ], + [ 7.6439555, 47.4954991 ], + [ 7.6444349, 47.4959877 ], + [ 7.6449762, 47.4965365 ], + [ 7.6454143, 47.4965857 ], + [ 7.6460095, 47.4964996 ], + [ 7.6468526, 47.4969005 ], + [ 7.6470334, 47.4969865 ], + [ 7.6470948, 47.4969824 ], + [ 7.6472321999999995, 47.4969973 ], + [ 7.6474779999999996, 47.4970446 ], + [ 7.6476106999999995, 47.4970462 ], + [ 7.6477175, 47.4970338 ], + [ 7.6478136, 47.4970044 ], + [ 7.6478926, 47.4969575 ], + [ 7.6479517999999995, 47.4968972 ], + [ 7.6479875, 47.4968294 ], + [ 7.6480683, 47.496606 ], + [ 7.6481561, 47.4963822 ], + [ 7.6482365, 47.4962057 ], + [ 7.6483067, 47.4960436 ], + [ 7.6483523, 47.4958885 ], + [ 7.6483649, 47.4957265 ], + [ 7.6483655, 47.495447 ], + [ 7.6483882, 47.4952559 ], + [ 7.6484851, 47.494798 ], + [ 7.6485517, 47.494685 ], + [ 7.6486368, 47.4946169 ], + [ 7.6487448, 47.4945665 ], + [ 7.6488717, 47.4945375 ], + [ 7.6486208, 47.4944112 ], + [ 7.6486756, 47.4943619 ], + [ 7.6473212, 47.4937897 ], + [ 7.6472803, 47.4938344 ], + [ 7.646126, 47.4933386 ], + [ 7.6456382, 47.4931288 ], + [ 7.6456324, 47.4930746 ], + [ 7.645626, 47.4930203 ], + [ 7.646143, 47.4932367 ], + [ 7.6473635, 47.493745 ], + [ 7.6487302, 47.4943149 ], + [ 7.6491427, 47.4945407 ], + [ 7.6493529, 47.4945526 ], + [ 7.6495947, 47.4945605 ], + [ 7.6489265, 47.494144 ], + [ 7.6475109, 47.4935876 ], + [ 7.6461703, 47.4930602 ], + [ 7.6456064999999995, 47.4928373 ], + [ 7.6455944, 47.4927391 ], + [ 7.6461844, 47.4929742 ], + [ 7.6467766, 47.4932104 ], + [ 7.6475772, 47.4935183 ], + [ 7.6490138, 47.4940679 ], + [ 7.6497584, 47.4945628 ], + [ 7.6502637, 47.4945652 ], + [ 7.6504324, 47.4945403 ], + [ 7.6506316, 47.4945029 ], + [ 7.6505842, 47.4944419 ], + [ 7.6504872, 47.4943173 ], + [ 7.6504446, 47.4942626 ], + [ 7.6504124000000004, 47.4942211 ], + [ 7.6503813, 47.4941812 ], + [ 7.6502798, 47.4940507 ], + [ 7.6502765, 47.4940465 ], + [ 7.6502194, 47.493973 ], + [ 7.6501806, 47.4939232 ], + [ 7.6501727, 47.493913 ], + [ 7.6498929, 47.4935531 ], + [ 7.6496875, 47.4932889 ], + [ 7.6494917000000004, 47.493037 ], + [ 7.6494817, 47.4930242 ], + [ 7.6493244, 47.4927989 ], + [ 7.6491357, 47.4925286 ], + [ 7.64906, 47.4924203 ], + [ 7.6489023, 47.4921931 ], + [ 7.6486532, 47.4918344 ], + [ 7.6487991, 47.4918344 ], + [ 7.6488661, 47.4918344 ], + [ 7.6489366, 47.4918344 ], + [ 7.6492821, 47.4918344 ], + [ 7.64943, 47.4918344 ], + [ 7.6498885, 47.4918344 ], + [ 7.6500271, 47.4914553 ], + [ 7.6501903, 47.4910151 ], + [ 7.6507379, 47.4909563 ], + [ 7.6514012000000005, 47.4908857 ], + [ 7.6515585999999995, 47.4908485 ], + [ 7.6516834, 47.4908556 ], + [ 7.6519858, 47.490662 ], + [ 7.652153, 47.490555 ], + [ 7.6526914999999995, 47.4904956 ], + [ 7.6531275, 47.4906259 ], + [ 7.6533562, 47.4908137 ], + [ 7.6536028, 47.4909778 ], + [ 7.653812, 47.490872 ], + [ 7.654599, 47.4904741 ], + [ 7.6551206, 47.4903012 ], + [ 7.6553965, 47.4902097 ], + [ 7.6553805, 47.490193 ], + [ 7.6552219, 47.4900266 ], + [ 7.6551746, 47.4899909 ], + [ 7.6551054, 47.4899389 ], + [ 7.655066, 47.4899092 ], + [ 7.6549147, 47.4898729 ], + [ 7.6547517, 47.4898338 ], + [ 7.6545108, 47.4897491 ], + [ 7.6544901, 47.489739 ], + [ 7.654247, 47.4896196 ], + [ 7.6541703, 47.489582 ], + [ 7.6540911, 47.4895333 ], + [ 7.6539467, 47.4894447 ], + [ 7.6539309, 47.489435 ], + [ 7.65381, 47.4893497 ], + [ 7.6537082, 47.4892779 ], + [ 7.6536936, 47.48927 ], + [ 7.653444, 47.4891356 ], + [ 7.6533399, 47.4890888 ], + [ 7.6532358, 47.489042 ], + [ 7.6530523, 47.4889595 ], + [ 7.6530363999999995, 47.4889523 ], + [ 7.6529454999999995, 47.4889198 ], + [ 7.6528366, 47.4888809 ], + [ 7.6524733, 47.488751 ], + [ 7.6524451, 47.4887409 ], + [ 7.6515152, 47.4885551 ], + [ 7.6505798, 47.4883677 ], + [ 7.6505206, 47.4882651 ], + [ 7.6512826, 47.4881861 ], + [ 7.6532282, 47.4879799 ], + [ 7.6537294, 47.4878724 ], + [ 7.6542279, 47.4877655 ], + [ 7.6543946, 47.4877298 ], + [ 7.6547969, 47.4876432 ], + [ 7.6550391, 47.4875911 ], + [ 7.6554725999999995, 47.4874978 ], + [ 7.6559327, 47.4873988 ], + [ 7.6555059, 47.4872027 ], + [ 7.6546829, 47.4868312 ], + [ 7.6546071, 47.486797 ], + [ 7.6536731, 47.4863733 ], + [ 7.6528421, 47.4861504 ], + [ 7.6528212, 47.4861448 ], + [ 7.6516504, 47.4858832 ], + [ 7.6511388, 47.4857593 ], + [ 7.65099, 47.4857233 ], + [ 7.6502856999999995, 47.4853882 ], + [ 7.6496934, 47.4852115 ], + [ 7.6495298, 47.4851845 ], + [ 7.6484541, 47.4850067 ], + [ 7.6472877, 47.4848118 ], + [ 7.6463247, 47.4851246 ], + [ 7.6457244, 47.4852396 ], + [ 7.6444294, 47.485642 ], + [ 7.6439797, 47.4851425 ], + [ 7.6434277999999996, 47.484526 ], + [ 7.6430994, 47.4841587 ], + [ 7.6421510999999995, 47.4832833 ], + [ 7.6417268, 47.4830872 ], + [ 7.6412354, 47.4828598 ], + [ 7.6412510000000005, 47.4836228 ], + [ 7.6412485, 47.4837727 ], + [ 7.6412438, 47.4844846 ], + [ 7.6412458, 47.4845127 ], + [ 7.6412514, 47.4845406 ], + [ 7.6412605, 47.4845681 ], + [ 7.6412779, 47.484602 ], + [ 7.6412995, 47.4846348 ], + [ 7.6413253, 47.4846662 ], + [ 7.6413551, 47.484696 ], + [ 7.6413885, 47.4847239 ], + [ 7.6414254, 47.4847498 ], + [ 7.6414655, 47.4847733 ], + [ 7.6415600999999995, 47.484823 ], + [ 7.6416576, 47.48487 ], + [ 7.6417578, 47.4849144 ], + [ 7.6417828, 47.4849271 ], + [ 7.6418042, 47.4849425 ], + [ 7.6418213999999995, 47.4849602 ], + [ 7.6418322, 47.4849731 ], + [ 7.6418412, 47.4849865 ], + [ 7.6418484, 47.4850005 ], + [ 7.6418537, 47.4850148 ], + [ 7.6418571, 47.4850295 ], + [ 7.6418585, 47.4850442 ], + [ 7.641858, 47.485059 ], + [ 7.6418555, 47.4850737 ], + [ 7.641851, 47.4850882 ], + [ 7.6418446, 47.4851023 ], + [ 7.6418364, 47.485116 ], + [ 7.6418263, 47.4851291 ], + [ 7.6418146, 47.4851416 ], + [ 7.6417962, 47.4851546 ], + [ 7.6417762, 47.4851664 ], + [ 7.6417547, 47.4851769 ], + [ 7.6417319, 47.4851861 ], + [ 7.6417079, 47.4851938 ], + [ 7.6416830000000004, 47.4852 ], + [ 7.6416574, 47.4852047 ], + [ 7.6416312, 47.4852077 ], + [ 7.6416048, 47.4852091 ], + [ 7.6409576999999995, 47.485258 ], + [ 7.6409271, 47.4852609 ], + [ 7.6408966, 47.4852645 ], + [ 7.6408663, 47.4852688 ], + [ 7.6408496, 47.485272 ], + [ 7.6408335, 47.4852761 ], + [ 7.6408179, 47.4852812 ], + [ 7.6408032, 47.4852873 ], + [ 7.6407893, 47.4852943 ], + [ 7.6407764, 47.4853021 ], + [ 7.6407004, 47.4853616 ], + [ 7.6406331, 47.4854256 ], + [ 7.6405749, 47.4854937 ], + [ 7.6405614, 47.4855159 ], + [ 7.6405509, 47.4855388 ], + [ 7.6405434, 47.4855623 ], + [ 7.6405391, 47.4855862 ], + [ 7.6405379, 47.485610199999996 ], + [ 7.6405399, 47.4856342 ], + [ 7.6405451, 47.485658 ], + [ 7.6405509, 47.4856799 ], + [ 7.6405595, 47.4857015 ], + [ 7.6405707, 47.4857225 ], + [ 7.6405843, 47.4857428 ], + [ 7.6406005, 47.4857622 ], + [ 7.6406189, 47.4857807 ], + [ 7.6406396, 47.485798 ], + [ 7.6406623, 47.4858142 ], + [ 7.6406869, 47.4858289 ], + [ 7.6407133, 47.4858423 ], + [ 7.6407403, 47.4858543 ], + [ 7.6407687, 47.4858647 ], + [ 7.6407983, 47.4858734 ], + [ 7.6408289, 47.4858804 ], + [ 7.6408603, 47.4858856 ], + [ 7.6408922, 47.485889 ], + [ 7.6409365000000005, 47.4858936 ], + [ 7.6409812, 47.4858969 ], + [ 7.6410259, 47.4858987 ], + [ 7.6410985, 47.4859022 ], + [ 7.6411711, 47.4859037 ], + [ 7.6412438, 47.485903 ], + [ 7.6415174, 47.4859059 ], + [ 7.641535, 47.4859374 ], + [ 7.6415375999999995, 47.485968 ], + [ 7.6413489, 47.4860123 ], + [ 7.6413265, 47.4860197 ], + [ 7.6413051, 47.4860285 ], + [ 7.6412849, 47.4860384 ], + [ 7.641266, 47.4860495 ], + [ 7.6412486, 47.4860616 ], + [ 7.6412327, 47.4860747 ], + [ 7.6412186, 47.4860886 ], + [ 7.6412063, 47.4861033 ], + [ 7.6411959, 47.4861187 ], + [ 7.6411874, 47.4861346 ], + [ 7.641181, 47.486151 ], + [ 7.6411747, 47.4861711 ], + [ 7.6411713, 47.4861915 ], + [ 7.6411708, 47.4862121 ], + [ 7.6411508999999995, 47.4866351 ], + [ 7.6411468, 47.4866551 ], + [ 7.6411402, 47.4866749 ], + [ 7.6411311, 47.4866942 ], + [ 7.6411196, 47.4867129 ], + [ 7.6411058, 47.4867308 ], + [ 7.6410898, 47.4867479 ], + [ 7.6410716, 47.486764 ], + [ 7.6410515, 47.486779 ], + [ 7.6410295999999995, 47.4867927 ], + [ 7.641006, 47.4868051 ], + [ 7.6409809, 47.4868161 ], + [ 7.6409545, 47.4868256 ], + [ 7.6409298, 47.4868327 ], + [ 7.6409043, 47.4868383 ], + [ 7.6408783, 47.4868425 ], + [ 7.6408518, 47.4868451 ], + [ 7.6408249999999995, 47.4868462 ], + [ 7.6407982, 47.4868458 ], + [ 7.6407716, 47.4868439 ], + [ 7.6407453, 47.4868404 ], + [ 7.6407195, 47.4868355 ], + [ 7.6399989, 47.486641 ], + [ 7.6399009, 47.4866128 ], + [ 7.6398288, 47.4865873 ], + [ 7.6397594, 47.4865584 ], + [ 7.6396931, 47.4865264 ], + [ 7.6396107, 47.4864794 ], + [ 7.6395301, 47.4864285 ], + [ 7.6394546, 47.4863741 ], + [ 7.6393847, 47.4863164 ], + [ 7.6393205, 47.4862492 ], + [ 7.639264, 47.4861788 ], + [ 7.6392156, 47.4861058 ], + [ 7.639186, 47.4860533 ], + [ 7.6391513, 47.4860023 ], + [ 7.6391118, 47.485953 ], + [ 7.6390554, 47.4858778 ], + [ 7.6390068, 47.4858002 ], + [ 7.6389662, 47.4857205 ], + [ 7.6388931, 47.4855218 ], + [ 7.6387132, 47.4850514 ], + [ 7.6387013, 47.4850066 ], + [ 7.6386946, 47.4849614 ], + [ 7.6386932, 47.4849159 ], + [ 7.6386794, 47.4845034 ], + [ 7.6386734, 47.4844349 ], + [ 7.6386626, 47.4843667 ], + [ 7.6386468, 47.4842989 ], + [ 7.6386379, 47.4842579 ], + [ 7.6386341, 47.4842166 ], + [ 7.6386354, 47.4841753 ], + [ 7.6386418, 47.4841342 ], + [ 7.6386533, 47.4840935 ], + [ 7.6387336, 47.4839511 ], + [ 7.6387406, 47.4839363 ], + [ 7.6387474, 47.4839216 ], + [ 7.6387542, 47.4839068 ], + [ 7.6387582, 47.4838974 ], + [ 7.638761, 47.4838878 ], + [ 7.638763, 47.4838684 ], + [ 7.6387623, 47.4838586 ], + [ 7.6387608, 47.4838376 ], + [ 7.6387568, 47.4838167 ], + [ 7.6387504, 47.4837962 ], + [ 7.6387398, 47.4837542 ], + [ 7.6387097, 47.4836602 ], + [ 7.6386913, 47.4835738 ], + [ 7.6386813, 47.4834874 ], + [ 7.6386614, 47.4833659 ], + [ 7.6382511, 47.4834772 ], + [ 7.6374108, 47.4837038 ], + [ 7.6367939, 47.4838694 ], + [ 7.636186, 47.4840335 ], + [ 7.6345635, 47.4842188 ], + [ 7.6333262, 47.4843594 ], + [ 7.6326073999999995, 47.4844417 ], + [ 7.6328165, 47.484904 ], + [ 7.6330096, 47.4851537 ], + [ 7.6331837, 47.4856296 ], + [ 7.6332493, 47.4859426 ], + [ 7.633227, 47.4862377 ], + [ 7.632923, 47.486256 ], + [ 7.632819, 47.4859867 ], + [ 7.6327012, 47.4857089 ], + [ 7.6324539, 47.4854308 ], + [ 7.6320362, 47.4851223 ], + [ 7.6316088, 47.484825 ], + [ 7.6311165, 47.4847282 ], + [ 7.6302657, 47.4844794 ], + [ 7.6301613, 47.4844527 ], + [ 7.6296501, 47.4843223 ], + [ 7.6291532, 47.4844448 ], + [ 7.628246, 47.4846683 ], + [ 7.6281476999999995, 47.4846925 ], + [ 7.6281455000000005, 47.4848057 ], + [ 7.6281112, 47.4848968 ], + [ 7.6280091, 47.4850301 ], + [ 7.6279886999999995, 47.4850567 ], + [ 7.627851, 47.4852725 ], + [ 7.6279664, 47.4854734 ], + [ 7.6280449, 47.485610199999996 ], + [ 7.6280717, 47.4857657 ], + [ 7.6281437, 47.4861835 ], + [ 7.6281671, 47.4862768 ], + [ 7.6282664, 47.4866736 ], + [ 7.6282809, 47.4867318 ], + [ 7.6283985, 47.4869612 ], + [ 7.628577, 47.4873092 ], + [ 7.6285647, 47.4873375 ], + [ 7.6283575, 47.4878109 ], + [ 7.6282356, 47.4879689 ], + [ 7.6282867, 47.4879797 ], + [ 7.6284845, 47.4880472 ], + [ 7.628534, 47.4880655 ], + [ 7.6284902, 47.4882092 ], + [ 7.6284849, 47.4885413 ], + [ 7.6283833, 47.4887917 ], + [ 7.6279926, 47.4887314 ], + [ 7.6279416, 47.4887823 ], + [ 7.6279124, 47.4888124 ], + [ 7.6277883, 47.4889232 ], + [ 7.6276439, 47.4890218 ], + [ 7.6276119, 47.4890328 ], + [ 7.6276893999999995, 47.4891483 ], + [ 7.6275775, 47.4891887 ], + [ 7.6275661, 47.4892922 ], + [ 7.6275169, 47.489375 ], + [ 7.6274253, 47.4895293 ], + [ 7.6274309, 47.4896211 ], + [ 7.6274419, 47.4898105 ], + [ 7.6274344, 47.4900542 ], + [ 7.6271049, 47.4903711 ], + [ 7.6269593, 47.4906945 ], + [ 7.6269507999999995, 47.4907134 ], + [ 7.6273572, 47.4907342 ], + [ 7.6274916, 47.4907526 ], + [ 7.6275089, 47.4907198 ], + [ 7.6275729, 47.4905982 ], + [ 7.6276530000000005, 47.4904398 ], + [ 7.6279718, 47.4899497 ], + [ 7.6282043, 47.4897626 ], + [ 7.6284273, 47.4895851 ], + [ 7.6287859000000005, 47.4893005 ], + [ 7.6287631000000005, 47.489362 ], + [ 7.6292196, 47.4894036 ], + [ 7.629115, 47.4897042 ], + [ 7.6290178, 47.4899833 ], + [ 7.6289158, 47.4902762 ], + [ 7.6288936, 47.4903399 ], + [ 7.6289483, 47.4903312 ], + [ 7.6293397, 47.490288 ], + [ 7.6296628, 47.4902524 ], + [ 7.6297322, 47.490251 ], + [ 7.6297601, 47.4900786 ], + [ 7.6298788, 47.4893436 ], + [ 7.6299513, 47.4888744 ], + [ 7.6299731, 47.4887336 ], + [ 7.6302647, 47.4885919 ], + [ 7.6304297, 47.4885118 ], + [ 7.6304795, 47.4884876 ], + [ 7.6305693, 47.4884424 ], + [ 7.6306753, 47.4883921 ], + [ 7.6307612, 47.4883505 ], + [ 7.6307925, 47.4883144 ], + [ 7.6308018, 47.4883031 ], + [ 7.6310434, 47.4884884 ], + [ 7.6315463, 47.4888734 ], + [ 7.6319879, 47.4892118 ], + [ 7.632081, 47.4892832 ], + [ 7.6321082, 47.4892539 ], + [ 7.6321123, 47.4891166 ], + [ 7.6316605, 47.4888037 ], + [ 7.63109, 47.4884089 ], + [ 7.6308512, 47.4882429 ], + [ 7.6310161, 47.488042 ], + [ 7.6311979999999995, 47.4877185 ], + [ 7.6312583, 47.4875482 ], + [ 7.6312511, 47.487411 ], + [ 7.6312918, 47.4873418 ], + [ 7.6314817, 47.4871719 ], + [ 7.6316106, 47.4868606 ], + [ 7.6317471999999995, 47.4866802 ], + [ 7.6317858, 47.4866291 ], + [ 7.6318249, 47.4865776 ], + [ 7.6321615, 47.4866697 ], + [ 7.632765, 47.4868349 ], + [ 7.6332633, 47.486871 ], + [ 7.6332930999999995, 47.4867345 ], + [ 7.6333248000000005, 47.4865892 ], + [ 7.6333579, 47.486437 ], + [ 7.6338361, 47.4865671 ], + [ 7.6339477, 47.4865898 ], + [ 7.6342318, 47.486645 ], + [ 7.6344902, 47.4867241 ], + [ 7.6347852, 47.4868128 ], + [ 7.6346447, 47.4869731 ], + [ 7.6345949, 47.4871736 ], + [ 7.6347347, 47.4872453 ], + [ 7.6346814, 47.4873887 ], + [ 7.6349272, 47.4878911 ], + [ 7.6352606, 47.4879208 ], + [ 7.6351681, 47.4883715 ], + [ 7.6352058, 47.4883807 ], + [ 7.6350727, 47.48858 ], + [ 7.6348933, 47.4887607 ], + [ 7.6345296, 47.4890711 ], + [ 7.6343989, 47.4892981 ], + [ 7.6342634, 47.4896026 ], + [ 7.634285, 47.4897077 ], + [ 7.6344082, 47.4899388 ], + [ 7.6344966, 47.4901495 ], + [ 7.6345282, 47.4904133 ], + [ 7.63457, 47.4904727 ], + [ 7.6346854, 47.4904743 ], + [ 7.6352223, 47.4906364 ], + [ 7.6353999, 47.4906565 ], + [ 7.6357105, 47.490644 ], + [ 7.636003, 47.4906208 ], + [ 7.6363988, 47.4906543 ], + [ 7.6368334, 47.4907229 ], + [ 7.6369568999999995, 47.4907154 ], + [ 7.6372113, 47.4906135 ], + [ 7.6374059, 47.4905769 ], + [ 7.6379245000000004, 47.4906031 ], + [ 7.6380961, 47.4905839 ], + [ 7.6391852, 47.4903546 ], + [ 7.6394094, 47.4903223 ], + [ 7.6397814, 47.4902401 ], + [ 7.6401620999999995, 47.4901168 ], + [ 7.6410164, 47.4897912 ], + [ 7.6413826, 47.4896807 ], + [ 7.6417057, 47.4895996 ], + [ 7.6421551999999995, 47.4894441 ], + [ 7.6423901, 47.4893317 ], + [ 7.6427731, 47.4890771 ], + [ 7.6430834, 47.4889568 ], + [ 7.6433974, 47.4888693 ], + [ 7.6435902, 47.4887813 ], + [ 7.6436784, 47.4887304 ], + [ 7.6439863, 47.4885764 ], + [ 7.6442374, 47.4884805 ], + [ 7.6442569, 47.4885042 ], + [ 7.6442955999999995, 47.4887004 ], + [ 7.6444301, 47.4893051 ], + [ 7.6444648, 47.4894613 ], + [ 7.6445212, 47.4896381 ], + [ 7.6445626, 47.4896956 ], + [ 7.6447735, 47.4899886 ], + [ 7.6451091, 47.490537 ], + [ 7.6452495, 47.490762 ], + [ 7.645264, 47.4907873 ], + [ 7.6452452, 47.4907869 ], + [ 7.645059, 47.4907483 ], + [ 7.6450306999999995, 47.4907464 ], + [ 7.64497, 47.4907391 ], + [ 7.6448259, 47.4907182 ], + [ 7.6448063, 47.4907181 ], + [ 7.6447408, 47.4906939 ], + [ 7.6447123, 47.4906668 ], + [ 7.6446936999999995, 47.490662 ], + [ 7.6446754, 47.4906548 ], + [ 7.6446415, 47.490655 ], + [ 7.6445957, 47.4906243 ], + [ 7.6445536, 47.4905822 ], + [ 7.6445436, 47.4905816 ], + [ 7.6444995, 47.4905902 ], + [ 7.6444393999999996, 47.4906515 ], + [ 7.6443975, 47.4906192 ], + [ 7.6443718, 47.490611 ], + [ 7.6443104, 47.4906094 ], + [ 7.6442721, 47.4906202 ], + [ 7.6442307, 47.4906524 ], + [ 7.6441142, 47.4906416 ], + [ 7.6440025, 47.4906416 ], + [ 7.6439159, 47.490679 ], + [ 7.6438538, 47.4906684 ], + [ 7.6437034, 47.4906838 ], + [ 7.6436511, 47.4906747 ], + [ 7.6436288, 47.4906845 ], + [ 7.6435602, 47.4907403 ], + [ 7.6434938, 47.4907554 ], + [ 7.6434462, 47.4907846 ], + [ 7.6434429999999995, 47.4907379 ], + [ 7.6434268, 47.490501 ], + [ 7.6434001, 47.4902671 ], + [ 7.6432511, 47.4903469 ], + [ 7.6426258, 47.4904868 ], + [ 7.6425752, 47.4904981 ], + [ 7.6425754, 47.4905565 ], + [ 7.6425622, 47.4906076 ], + [ 7.6425503, 47.4906535 ], + [ 7.6425007, 47.4906858 ], + [ 7.6423559, 47.490738 ], + [ 7.6422945, 47.490736 ], + [ 7.6421937, 47.4907481 ], + [ 7.6421719, 47.4907534 ], + [ 7.6420505, 47.4907866 ], + [ 7.6420462, 47.4907763 ], + [ 7.6420125, 47.4907501 ], + [ 7.6419457, 47.4907428 ], + [ 7.6419524, 47.4907637 ], + [ 7.6419415, 47.4907837 ], + [ 7.6419663, 47.4908221 ], + [ 7.6419378, 47.4908522 ], + [ 7.6419027, 47.4908479 ], + [ 7.6418365, 47.4908104 ], + [ 7.6418187, 47.4908047 ], + [ 7.6417263, 47.4908174 ], + [ 7.6416942, 47.4908126 ], + [ 7.6416566, 47.4908162 ], + [ 7.6414539999999995, 47.4908799 ], + [ 7.6414124, 47.4908997 ], + [ 7.6413573, 47.4909236 ], + [ 7.6412732, 47.4909093 ], + [ 7.6411424, 47.4909332 ], + [ 7.6411196, 47.4909442 ], + [ 7.6410969, 47.4909574 ], + [ 7.6410115, 47.491028299999996 ], + [ 7.6409587, 47.4910792 ], + [ 7.6408926, 47.4911386 ], + [ 7.6408614, 47.4911931 ], + [ 7.6408426, 47.4912646 ], + [ 7.640814, 47.4912796 ], + [ 7.6407842, 47.4912435 ], + [ 7.6407498, 47.4912333 ], + [ 7.6407295, 47.4912385 ], + [ 7.6405907, 47.4913036 ], + [ 7.6404461, 47.4912797 ], + [ 7.6403747, 47.4912918 ], + [ 7.6402932, 47.4913227 ], + [ 7.6401829, 47.4913719 ], + [ 7.6399749, 47.4914383 ], + [ 7.6399527, 47.4914494 ], + [ 7.639887, 47.4914645 ], + [ 7.6397672, 47.4915001 ], + [ 7.6397566, 47.4915028 ], + [ 7.639679, 47.4915111 ], + [ 7.6395917, 47.4915193 ], + [ 7.6394606, 47.4915363 ], + [ 7.6393469, 47.4915486 ], + [ 7.639314, 47.4915566 ], + [ 7.6392632, 47.4915591 ], + [ 7.6392261999999995, 47.4915571 ], + [ 7.6390531, 47.4915687 ], + [ 7.6388544, 47.4915875 ], + [ 7.6387232, 47.4916153 ], + [ 7.6386722, 47.4916208 ], + [ 7.6385506, 47.4916298 ], + [ 7.6384469, 47.4916299 ], + [ 7.638327, 47.4916249 ], + [ 7.6382416, 47.4916269 ], + [ 7.638101, 47.4916298 ], + [ 7.6379984, 47.4916125 ], + [ 7.637911, 47.4915939 ], + [ 7.6378425, 47.4915661 ], + [ 7.6377667, 47.4915177 ], + [ 7.6376745, 47.4914636 ], + [ 7.6375354, 47.4914759 ], + [ 7.6374718999999995, 47.4914654 ], + [ 7.6374201, 47.4914373 ], + [ 7.6373733, 47.4914089 ], + [ 7.6372898, 47.4913536 ], + [ 7.6372498, 47.4913292 ], + [ 7.6371794, 47.4912787 ], + [ 7.6369687, 47.4911913 ], + [ 7.636855, 47.4911514 ], + [ 7.6366469, 47.4911537 ], + [ 7.6365162, 47.4911376 ], + [ 7.6362612, 47.4910857 ], + [ 7.6358763, 47.4910172 ], + [ 7.6356234, 47.4909633 ], + [ 7.635501, 47.4909233 ], + [ 7.6352559, 47.4908515 ] + ], + [ + [ 7.6364744, 47.4902519 ], + [ 7.6364526, 47.4904204 ], + [ 7.6360582, 47.4903723 ], + [ 7.6360167, 47.4902394 ], + [ 7.6360529, 47.4901788 ], + [ 7.6362103, 47.4900993 ], + [ 7.6364777, 47.4901205 ], + [ 7.6364744, 47.4902519 ] + ], + [ + [ 7.6510918, 47.4906671 ], + [ 7.6511143, 47.4907588 ], + [ 7.6510146, 47.4907715 ], + [ 7.65099, 47.4906784 ], + [ 7.6510918, 47.4906671 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns063", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Ermitage - Chilchholz", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Ermitage - Chilchholz", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Ermitage - Chilchholz", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Ermitage - Chilchholz", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.4710825, 46.7048663 ], + [ 9.4710718, 46.7047252 ], + [ 9.4710504, 46.7045847 ], + [ 9.4710184, 46.7044452 ], + [ 9.4709757, 46.704307 ], + [ 9.4709226, 46.7041705 ], + [ 9.4708592, 46.7040361 ], + [ 9.4707856, 46.7039042 ], + [ 9.4707022, 46.7037751 ], + [ 9.470609, 46.7036492 ], + [ 9.4705063, 46.7035268 ], + [ 9.4703945, 46.7034083 ], + [ 9.4702739, 46.703294 ], + [ 9.4701447, 46.7031842 ], + [ 9.4700073, 46.7030791 ], + [ 9.4698621, 46.7029792 ], + [ 9.4697095, 46.7028846 ], + [ 9.46955, 46.7027957 ], + [ 9.4693839, 46.7027126 ], + [ 9.4692117, 46.7026356 ], + [ 9.4690338, 46.7025649 ], + [ 9.4688509, 46.7025008 ], + [ 9.4686633, 46.7024433 ], + [ 9.4684716, 46.7023926 ], + [ 9.4682763, 46.7023489 ], + [ 9.4680779, 46.7023123 ], + [ 9.4678771, 46.7022829 ], + [ 9.4676742, 46.7022607 ], + [ 9.46747, 46.7022459 ], + [ 9.4672649, 46.7022385 ], + [ 9.4670596, 46.7022384 ], + [ 9.4668545, 46.7022458 ], + [ 9.4666502, 46.7022605 ], + [ 9.4664474, 46.7022825 ], + [ 9.4662465, 46.7023119 ], + [ 9.4660481, 46.7023484 ], + [ 9.4658528, 46.702392 ], + [ 9.465661, 46.7024426 ], + [ 9.4654734, 46.7025 ], + [ 9.4652904, 46.7025641 ], + [ 9.4651125, 46.7026347 ], + [ 9.4649402, 46.7027116 ], + [ 9.464774, 46.7027946 ], + [ 9.4646144, 46.7028835 ], + [ 9.4644617, 46.702978 ], + [ 9.4643164, 46.7030779 ], + [ 9.4641789, 46.7031828 ], + [ 9.4640496, 46.7032926 ], + [ 9.463928899999999, 46.7034069 ], + [ 9.463817, 46.7035253 ], + [ 9.4637142, 46.7036477 ], + [ 9.4636209, 46.7037735 ], + [ 9.4635373, 46.7039026 ], + [ 9.4634636, 46.7040345 ], + [ 9.4634001, 46.7041688 ], + [ 9.4633469, 46.7043053 ], + [ 9.4633041, 46.7044435 ], + [ 9.4632719, 46.704583 ], + [ 9.4632503, 46.7047235 ], + [ 9.4632395, 46.7048646 ], + [ 9.463239399999999, 46.7050059 ], + [ 9.4632501, 46.705147 ], + [ 9.4632715, 46.7052875 ], + [ 9.4633035, 46.705427 ], + [ 9.4633462, 46.7055652 ], + [ 9.4633993, 46.7057017 ], + [ 9.463462700000001, 46.7058361 ], + [ 9.4635362, 46.705968 ], + [ 9.4636197, 46.7060971 ], + [ 9.4637128, 46.706223 ], + [ 9.4638155, 46.706345400000004 ], + [ 9.4639273, 46.7064639 ], + [ 9.4640479, 46.7065783 ], + [ 9.4641771, 46.7066881 ], + [ 9.4643145, 46.7067931 ], + [ 9.4644597, 46.7068931 ], + [ 9.4646122, 46.7069876 ], + [ 9.4647718, 46.7070766 ], + [ 9.4649379, 46.7071597 ], + [ 9.4651101, 46.7072367 ], + [ 9.465288, 46.7073074 ], + [ 9.4654709, 46.7073715 ], + [ 9.4656585, 46.7074291 ], + [ 9.4658503, 46.7074797 ], + [ 9.4660456, 46.7075234 ], + [ 9.4662439, 46.70756 ], + [ 9.4664448, 46.7075895 ], + [ 9.4666477, 46.7076116 ], + [ 9.4668519, 46.7076264 ], + [ 9.467057, 46.7076339 ], + [ 9.4672624, 46.7076339 ], + [ 9.4674675, 46.7076266 ], + [ 9.4676718, 46.7076118 ], + [ 9.4678747, 46.7075898 ], + [ 9.4680756, 46.7075604 ], + [ 9.468274, 46.7075239 ], + [ 9.4684693, 46.7074803 ], + [ 9.4686611, 46.7074297 ], + [ 9.4688488, 46.7073723 ], + [ 9.4690318, 46.7073082 ], + [ 9.4692097, 46.7072376 ], + [ 9.469382, 46.7071607 ], + [ 9.4695482, 46.7070776 ], + [ 9.4697078, 46.7069888 ], + [ 9.4698605, 46.7068943 ], + [ 9.4700058, 46.7067944 ], + [ 9.4701432, 46.7066894 ], + [ 9.4702725, 46.7065796 ], + [ 9.4703933, 46.7064654 ], + [ 9.4705052, 46.7063469 ], + [ 9.4706079, 46.7062246 ], + [ 9.4707012, 46.7060987 ], + [ 9.4707848, 46.7059696 ], + [ 9.4708585, 46.705837700000004 ], + [ 9.470922, 46.7057034 ], + [ 9.4709752, 46.7055669 ], + [ 9.471018, 46.7054287 ], + [ 9.4710502, 46.7052892 ], + [ 9.4710717, 46.7051487 ], + [ 9.4710825, 46.7050076 ], + [ 9.4710825, 46.7048663 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0111", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Sils", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Sils", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Sils", + "lang" : "it-CH" + }, + { + "text" : "Substation Sils", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.1795186, 47.4775076 ], + [ 8.1795111, 47.4773664 ], + [ 8.1794928, 47.4772257 ], + [ 8.1794637, 47.4770858 ], + [ 8.1794238, 47.4769472 ], + [ 8.1793732, 47.4768101 ], + [ 8.1793122, 47.4766751 ], + [ 8.1792408, 47.4765424 ], + [ 8.1791592, 47.4764124 ], + [ 8.1790678, 47.4762854 ], + [ 8.1789666, 47.4761619 ], + [ 8.1788561, 47.4760422 ], + [ 8.1787364, 47.4759265 ], + [ 8.1786081, 47.4758153 ], + [ 8.1784712, 47.4757087 ], + [ 8.1783264, 47.4756072 ], + [ 8.1781739, 47.4755109 ], + [ 8.1780142, 47.4754202 ], + [ 8.1778478, 47.4753353 ], + [ 8.1776749, 47.4752564 ], + [ 8.1774963, 47.4751837 ], + [ 8.1773122, 47.4751174 ], + [ 8.1771233, 47.4750578 ], + [ 8.1769301, 47.475005 ], + [ 8.1767331, 47.4749591 ], + [ 8.1765328, 47.4749203 ], + [ 8.1763297, 47.4748886 ], + [ 8.1761245, 47.4748641 ], + [ 8.1759177, 47.474847 ], + [ 8.1757098, 47.4748373 ], + [ 8.1755015, 47.4748349 ], + [ 8.1752933, 47.4748399 ], + [ 8.1750857, 47.4748523 ], + [ 8.1748794, 47.4748721 ], + [ 8.1746749, 47.4748991 ], + [ 8.1744728, 47.4749334 ], + [ 8.1742736, 47.4749748 ], + [ 8.1740779, 47.4750232 ], + [ 8.1738861, 47.4750784 ], + [ 8.1736989, 47.4751404 ], + [ 8.1735168, 47.475209 ], + [ 8.1733401, 47.4752839 ], + [ 8.1731695, 47.475365 ], + [ 8.1730054, 47.4754521 ], + [ 8.1728483, 47.4755448 ], + [ 8.1726985, 47.475643 ], + [ 8.1725565, 47.4757464 ], + [ 8.1724227, 47.4758547 ], + [ 8.1722974, 47.4759675 ], + [ 8.172181, 47.4760847 ], + [ 8.1720738, 47.4762058 ], + [ 8.1719761, 47.4763306 ], + [ 8.1718881, 47.4764586 ], + [ 8.1718102, 47.4765896 ], + [ 8.1717425, 47.4767232 ], + [ 8.1716852, 47.476859 ], + [ 8.1716384, 47.4769967 ], + [ 8.1716024, 47.4771358 ], + [ 8.1715771, 47.4772761 ], + [ 8.1715627, 47.477417 ], + [ 8.1715592, 47.4775582 ], + [ 8.1715666, 47.4776994 ], + [ 8.1715849, 47.4778401 ], + [ 8.171614, 47.47798 ], + [ 8.1716539, 47.4781186 ], + [ 8.1717044, 47.4782557 ], + [ 8.1717654, 47.4783907 ], + [ 8.1718368, 47.4785234 ], + [ 8.1719184, 47.4786534 ], + [ 8.1720098, 47.4787804 ], + [ 8.1721109, 47.4789039 ], + [ 8.1722215, 47.4790236 ], + [ 8.1723411, 47.4791393 ], + [ 8.1724695, 47.4792506 ], + [ 8.1726063, 47.4793571 ], + [ 8.1727511, 47.4794587 ], + [ 8.1729036, 47.4795549 ], + [ 8.1730633, 47.4796457 ], + [ 8.1732298, 47.4797306 ], + [ 8.1734026, 47.4798095 ], + [ 8.1735813, 47.4798822 ], + [ 8.1737653, 47.4799484 ], + [ 8.1739542, 47.4800081 ], + [ 8.1741475, 47.4800609 ], + [ 8.1743445, 47.4801068 ], + [ 8.1745449, 47.4801456 ], + [ 8.1747479, 47.4801773 ], + [ 8.1749532, 47.4802018 ], + [ 8.17516, 47.4802189 ], + [ 8.1753679, 47.4802287 ], + [ 8.1755762, 47.480231 ], + [ 8.1757845, 47.480226 ], + [ 8.175992, 47.4802136 ], + [ 8.1761984, 47.4801939 ], + [ 8.1764029, 47.4801668 ], + [ 8.176605, 47.4801325 ], + [ 8.1768042, 47.4800911 ], + [ 8.177, 47.4800427 ], + [ 8.1771918, 47.4799875 ], + [ 8.177379, 47.4799254 ], + [ 8.1775612, 47.4798569 ], + [ 8.1777378, 47.4797819 ], + [ 8.1779084, 47.4797008 ], + [ 8.1780725, 47.4796138 ], + [ 8.1782297, 47.479521 ], + [ 8.1783794, 47.4794228 ], + [ 8.1785214, 47.4793195 ], + [ 8.1786553, 47.4792112 ], + [ 8.1787806, 47.4790983 ], + [ 8.1788969, 47.4789811 ], + [ 8.1790041, 47.47886 ], + [ 8.1791018, 47.4787352 ], + [ 8.1791898, 47.4786072 ], + [ 8.1792677, 47.4784762 ], + [ 8.1793354, 47.4783426 ], + [ 8.1793927, 47.4782067 ], + [ 8.1794394, 47.4780691 ], + [ 8.1794754, 47.4779299 ], + [ 8.1795007, 47.4777897 ], + [ 8.1795151, 47.4776488 ], + [ 8.1795186, 47.4775076 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0097", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Riniken Süd", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Riniken Süd", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Riniken Süd", + "lang" : "it-CH" + }, + { + "text" : "Substation Riniken Süd", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7702649, 47.496913 ], + [ 7.7704975, 47.4968019 ], + [ 7.7714087, 47.4963671 ], + [ 7.7714904, 47.4961896 ], + [ 7.7715665, 47.4960983 ], + [ 7.7724661, 47.4953957 ], + [ 7.773632, 47.495088 ], + [ 7.773633, 47.4950878 ], + [ 7.7736388, 47.4950728 ], + [ 7.7736538, 47.4950374 ], + [ 7.7736697, 47.4950021 ], + [ 7.7736865, 47.4949671 ], + [ 7.7737041, 47.4949322 ], + [ 7.7737227, 47.4948976 ], + [ 7.7737422, 47.4948631 ], + [ 7.7737625, 47.4948289 ], + [ 7.7737837, 47.494795 ], + [ 7.7738057, 47.4947613 ], + [ 7.773817, 47.4947452 ], + [ 7.7738291, 47.4947293 ], + [ 7.773842, 47.4947137 ], + [ 7.7738557, 47.4946985 ], + [ 7.7738701, 47.4946835 ], + [ 7.7738852, 47.4946689 ], + [ 7.7739011, 47.4946547 ], + [ 7.7739177, 47.4946408 ], + [ 7.7739293, 47.4946319 ], + [ 7.7739417, 47.4946234 ], + [ 7.7739547, 47.4946154 ], + [ 7.7739683, 47.4946079 ], + [ 7.7739825, 47.4946008 ], + [ 7.7739972, 47.4945943 ], + [ 7.7740124, 47.4945884 ], + [ 7.7740281, 47.494583 ], + [ 7.7740442, 47.4945781 ], + [ 7.7740606, 47.4945739 ], + [ 7.7740773, 47.4945703 ], + [ 7.7740943, 47.4945673 ], + [ 7.7741178, 47.4945639 ], + [ 7.7741413, 47.494561 ], + [ 7.774165, 47.4945587 ], + [ 7.7741889, 47.494557 ], + [ 7.7742123, 47.4945559 ], + [ 7.7742128, 47.4945559 ], + [ 7.7741033, 47.4939393 ], + [ 7.7740751, 47.493944 ], + [ 7.7739641, 47.4939624 ], + [ 7.7738679, 47.4939755 ], + [ 7.7738042, 47.4939842 ], + [ 7.7734373, 47.494029 ], + [ 7.773384, 47.4940371 ], + [ 7.7733821, 47.4940375 ], + [ 7.7733319, 47.4940481 ], + [ 7.7732897, 47.4940597 ], + [ 7.7732738, 47.4940646 ], + [ 7.7732325, 47.4940788 ], + [ 7.773186, 47.4940982 ], + [ 7.7731823, 47.4941001 ], + [ 7.773142, 47.4941202 ], + [ 7.7730016, 47.4941966 ], + [ 7.7729486, 47.494228 ], + [ 7.7728997, 47.4942623 ], + [ 7.7728553, 47.4942993 ], + [ 7.7728155, 47.4943387 ], + [ 7.7727808, 47.4943801 ], + [ 7.7727012, 47.4944852 ], + [ 7.7727011, 47.4944853 ], + [ 7.7726593, 47.4945162 ], + [ 7.7726379, 47.4945268 ], + [ 7.7726178, 47.4945385 ], + [ 7.7725992999999995, 47.4945514 ], + [ 7.7725824, 47.4945652 ], + [ 7.7722414, 47.4948696 ], + [ 7.7721194, 47.4949798 ], + [ 7.7719993, 47.4950911 ], + [ 7.7718813, 47.4952033 ], + [ 7.7717452, 47.4953288 ], + [ 7.7716015, 47.4954505 ], + [ 7.7714507, 47.495568 ], + [ 7.7710281, 47.495884 ], + [ 7.7709565, 47.4959403 ], + [ 7.7708891, 47.4959989 ], + [ 7.7708259, 47.4960596 ], + [ 7.770722, 47.4961756 ], + [ 7.7707052999999995, 47.4961986 ], + [ 7.7707047, 47.4961994 ], + [ 7.7703136, 47.4961978 ], + [ 7.770314, 47.4962002 ], + [ 7.7703147999999995, 47.4962062 ], + [ 7.770315, 47.4962108 ], + [ 7.7703155, 47.4962217 ], + [ 7.7703154, 47.4962372 ], + [ 7.7703145, 47.4962527 ], + [ 7.7703126000000005, 47.4962681 ], + [ 7.7703107, 47.4962789 ], + [ 7.7703099, 47.4962835 ], + [ 7.7703064, 47.4962988 ], + [ 7.7703019, 47.4963141 ], + [ 7.7702966, 47.4963291 ], + [ 7.7702086, 47.4965602 ], + [ 7.7702028, 47.4965767 ], + [ 7.7701977, 47.4965934 ], + [ 7.7701934999999995, 47.4966101 ], + [ 7.7701901, 47.4966269 ], + [ 7.7701876, 47.4966438 ], + [ 7.7701858999999995, 47.4966608 ], + [ 7.7701856, 47.496665899999996 ], + [ 7.770185, 47.4966777 ], + [ 7.7701849, 47.4966947 ], + [ 7.7701858, 47.4967117 ], + [ 7.7701874, 47.4967286 ], + [ 7.7701899, 47.4967455 ], + [ 7.7701932, 47.4967623 ], + [ 7.7701972999999995, 47.4967791 ], + [ 7.7702024, 47.4967959 ], + [ 7.7702083, 47.4968126 ], + [ 7.770215, 47.4968291 ], + [ 7.7702227, 47.4968455 ], + [ 7.7702312, 47.4968617 ], + [ 7.7702405, 47.4968776 ], + [ 7.7702507, 47.4968934 ], + [ 7.7702617, 47.4969088 ], + [ 7.7702649, 47.496913 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns122", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Eileten - Dumberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Eileten - Dumberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Eileten - Dumberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Eileten - Dumberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.9333098, 47.191864699999996 ], + [ 8.9251893, 47.1920545 ], + [ 8.9165062, 47.1918514 ], + [ 8.9127186, 47.1917358 ], + [ 8.9097056, 47.1917137 ], + [ 8.9085655, 47.1922455 ], + [ 8.9053914, 47.1932081 ], + [ 8.9043912, 47.1931916 ], + [ 8.8986453, 47.1934986 ], + [ 8.8973631, 47.1939107 ], + [ 8.8959535, 47.1954579 ], + [ 8.8919827, 47.1960119 ], + [ 8.8859866, 47.1968431 ], + [ 8.8827227, 47.19719 ], + [ 8.8824645, 47.195448 ], + [ 8.8828297, 47.1943099 ], + [ 8.8826043, 47.1918297 ], + [ 8.8707431, 47.1887528 ], + [ 8.8691538, 47.1914984 ], + [ 8.8687634, 47.1936804 ], + [ 8.8596499, 47.1977628 ], + [ 8.8581156, 47.198389 ], + [ 8.8532594, 47.1981789 ], + [ 8.849436, 47.1958418 ], + [ 8.8480463, 47.194442 ], + [ 8.8470714, 47.1937567 ], + [ 8.8452401, 47.1931269 ], + [ 8.843513699999999, 47.1927206 ], + [ 8.8417957, 47.1926292 ], + [ 8.8395693, 47.193286 ], + [ 8.8371449, 47.1939452 ], + [ 8.8346316, 47.1949878 ], + [ 8.8329964, 47.1955474 ], + [ 8.8318831, 47.1958757 ], + [ 8.8311209, 47.19575 ], + [ 8.8298639, 47.1956303 ], + [ 8.8282047, 47.195268 ], + [ 8.8264443, 47.1948169 ], + [ 8.8253616, 47.1950549 ], + [ 8.8236326, 47.1958179 ], + [ 8.8226946, 47.1965488 ], + [ 8.8209481, 47.1966373 ], + [ 8.820613, 47.1964389 ], + [ 8.8194215, 47.1962958 ], + [ 8.8176536, 47.1968343 ], + [ 8.8170043, 47.1985288 ], + [ 8.8164974, 47.2006265 ], + [ 8.8156432, 47.2007716 ], + [ 8.8129543, 47.2014335 ], + [ 8.8109882, 47.2019742 ], + [ 8.8093821, 47.2023982 ], + [ 8.8076603, 47.2021713 ], + [ 8.8061781, 47.2022788 ], + [ 8.8041551, 47.20318 ], + [ 8.8029105, 47.2041955 ], + [ 8.7998116, 47.2056131 ], + [ 8.799177, 47.2076537 ], + [ 8.800101699999999, 47.209747899999996 ], + [ 8.8047149, 47.2115284 ], + [ 8.8072263, 47.2135789 ], + [ 8.8096187, 47.2154846 ], + [ 8.8117802, 47.217393 ], + [ 8.8142331, 47.219073 ], + [ 8.8179934, 47.2202424 ], + [ 8.8210683, 47.2204305 ], + [ 8.8231982, 47.2198201 ], + [ 8.828070499999999, 47.2167702 ], + [ 8.831874299999999, 47.2158022 ], + [ 8.8340104, 47.215439 ], + [ 8.8377721, 47.2153933 ], + [ 8.8403123, 47.2153399 ], + [ 8.8417975, 47.2147034 ], + [ 8.8465866, 47.2135654 ], + [ 8.8497156, 47.2145616 ], + [ 8.8526056, 47.2165053 ], + [ 8.8537068, 47.218201 ], + [ 8.8568397, 47.219332 ], + [ 8.8581717, 47.2197654 ], + [ 8.860017299999999, 47.2196526 ], + [ 8.8640613, 47.2178034 ], + [ 8.8714193, 47.2164526 ], + [ 8.8785129, 47.2151047 ], + [ 8.8831556, 47.2159012 ], + [ 8.888744299999999, 47.2174952 ], + [ 8.8952475, 47.2187176 ], + [ 8.8993189, 47.2203303 ], + [ 8.9051896, 47.2207392 ], + [ 8.9117322, 47.2221626 ], + [ 8.9184277, 47.2231338 ], + [ 8.922784, 47.2242697 ], + [ 8.927481, 47.2245914 ], + [ 8.9324831, 47.2244907 ], + [ 8.9348362, 47.2184461 ], + [ 8.936589099999999, 47.2045488 ], + [ 8.935159, 47.1959039 ], + [ 8.9333098, 47.191864699999996 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSPW001", + "country" : "CHE", + "name" : [ + { + "text" : "LSPW Wangen Seaplanebase", + "lang" : "de-CH" + }, + { + "text" : "LSPW Wangen Seaplanebase", + "lang" : "fr-CH" + }, + { + "text" : "LSPW Wangen Seaplanebase", + "lang" : "it-CH" + }, + { + "text" : "LSPW Wangen Seaplanebase", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Wangen Seaplanebase", + "lang" : "de-CH" + }, + { + "text" : "Wangen Seaplanebase", + "lang" : "fr-CH" + }, + { + "text" : "Wangen Seaplanebase", + "lang" : "it-CH" + }, + { + "text" : "Wangen Seaplanebase", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.flugplatzwangen.ch/flugplatz/drohnenbewilligung/", + "email" : "drohnen@flugplatzwangen.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6472165, 47.4970351 ], + [ 7.6477862, 47.4973091 ], + [ 7.6480674, 47.4978835 ], + [ 7.6481009, 47.4980724 ], + [ 7.6474456, 47.4986914 ], + [ 7.6468234, 47.4989406 ], + [ 7.6460757, 47.4987178 ], + [ 7.6457342, 47.4984007 ], + [ 7.6455675, 47.4981853 ], + [ 7.6456228, 47.497875 ], + [ 7.6454699, 47.4977644 ], + [ 7.6453004, 47.4976758 ], + [ 7.644976, 47.4974543 ], + [ 7.6448126, 47.4972833 ], + [ 7.6445761999999995, 47.4969822 ], + [ 7.6441607, 47.4965945 ], + [ 7.6441203, 47.4965614 ], + [ 7.6440765, 47.4965305 ], + [ 7.644028, 47.4965031 ], + [ 7.6439759, 47.4964788 ], + [ 7.6439212, 47.4964574 ], + [ 7.6438637, 47.4964391 ], + [ 7.6437452, 47.496409 ], + [ 7.6436161, 47.4963763 ], + [ 7.6435275, 47.4963491 ], + [ 7.6434412, 47.4963186 ], + [ 7.6433568, 47.4962862 ], + [ 7.6432732, 47.4962521 ], + [ 7.6430963, 47.4961768 ], + [ 7.6429873, 47.4961394 ], + [ 7.6429203, 47.4961079 ], + [ 7.6428573, 47.4960732 ], + [ 7.6427965, 47.4960361 ], + [ 7.6426008, 47.4959075 ], + [ 7.6425067, 47.4958473 ], + [ 7.6424111, 47.4957882 ], + [ 7.6423129, 47.4957312 ], + [ 7.6422487, 47.4956988 ], + [ 7.6421813, 47.4956694 ], + [ 7.6421106, 47.4956433 ], + [ 7.6420376, 47.4956211 ], + [ 7.6419383, 47.495594 ], + [ 7.6418364, 47.495571 ], + [ 7.6417328, 47.4955522 ], + [ 7.6414539, 47.4955059 ], + [ 7.641087, 47.4954468 ], + [ 7.6406565, 47.495378 ], + [ 7.6403908, 47.4953316 ], + [ 7.6402391, 47.4953029 ], + [ 7.6400888, 47.4952709 ], + [ 7.6399408, 47.4952349 ], + [ 7.6397766, 47.4951895 ], + [ 7.6396142000000005, 47.4951414 ], + [ 7.6386984, 47.4948618 ], + [ 7.6383998, 47.4947641 ], + [ 7.6381736, 47.4946884 ], + [ 7.6380624, 47.4946626 ], + [ 7.6372213, 47.494332 ], + [ 7.6369152, 47.4942146 ], + [ 7.6367604, 47.4941595 ], + [ 7.6367128, 47.4941464 ], + [ 7.6364856, 47.4940403 ], + [ 7.6362641, 47.4939012 ], + [ 7.6357261, 47.4935242 ], + [ 7.635476, 47.4933212 ], + [ 7.6352731, 47.4932125 ], + [ 7.6351738000000005, 47.4932905 ], + [ 7.6348684, 47.4935305 ], + [ 7.6346644, 47.4936909 ], + [ 7.6341497, 47.4940862 ], + [ 7.6336778, 47.4944492 ], + [ 7.6336321, 47.4944824 ], + [ 7.6334469, 47.4943743 ], + [ 7.6330055, 47.494028 ], + [ 7.6327947, 47.4937414 ], + [ 7.6325393, 47.4933909 ], + [ 7.6323109, 47.49308 ], + [ 7.6320775, 47.4927622 ], + [ 7.6316177, 47.4921391 ], + [ 7.6316024, 47.4921184 ], + [ 7.6314975, 47.4921085 ], + [ 7.6313402, 47.4921131 ], + [ 7.6312296, 47.4921582 ], + [ 7.6310444, 47.4922931 ], + [ 7.6309118, 47.4925211 ], + [ 7.6306893, 47.492904 ], + [ 7.6303136, 47.4929759 ], + [ 7.6302974, 47.492979 ], + [ 7.6303312, 47.493048 ], + [ 7.63046, 47.4934134 ], + [ 7.6307439, 47.4933812 ], + [ 7.6307799, 47.4935229 ], + [ 7.6307597, 47.4935252 ], + [ 7.6308233, 47.4939832 ], + [ 7.6306823999999995, 47.4939986 ], + [ 7.6306433, 47.494081 ], + [ 7.6306264, 47.4943879 ], + [ 7.6306488, 47.4946968 ], + [ 7.6307325, 47.495120299999996 ], + [ 7.6307181, 47.4954596 ], + [ 7.6308298, 47.4957793 ], + [ 7.6309258, 47.4959252 ], + [ 7.6310581, 47.4960359 ], + [ 7.6312416, 47.4961146 ], + [ 7.6318841, 47.4963268 ], + [ 7.6320368, 47.4963437 ], + [ 7.6325734, 47.4963447 ], + [ 7.6329603, 47.4963714 ], + [ 7.6335206, 47.4964746 ], + [ 7.633765, 47.4965464 ], + [ 7.6340806, 47.4967158 ], + [ 7.6342928, 47.4968492 ], + [ 7.6344951, 47.4970095 ], + [ 7.6347358, 47.4973106 ], + [ 7.6351065, 47.4976669 ], + [ 7.6352996, 47.4977714 ], + [ 7.6358969, 47.497897 ], + [ 7.6364611, 47.4979675 ], + [ 7.6369578, 47.4980142 ], + [ 7.63736, 47.497952 ], + [ 7.63756, 47.4979532 ], + [ 7.6379033, 47.4979617 ], + [ 7.6383493, 47.4979901 ], + [ 7.6385278, 47.4980218 ], + [ 7.6394783, 47.4983578 ], + [ 7.6397345, 47.4984686 ], + [ 7.6401392999999995, 47.4987275 ], + [ 7.6408264, 47.4989978 ], + [ 7.6414957999999995, 47.4992305 ], + [ 7.6420383, 47.4993685 ], + [ 7.642198, 47.499431 ], + [ 7.6423536, 47.4995533 ], + [ 7.6424541999999995, 47.4996846 ], + [ 7.6427001, 47.5001471 ], + [ 7.6428662, 47.5006662 ], + [ 7.6428016, 47.5008902 ], + [ 7.6427033, 47.501019 ], + [ 7.6425621, 47.5011459 ], + [ 7.6423448, 47.5012794 ], + [ 7.6422388, 47.5014168 ], + [ 7.642214, 47.5015302 ], + [ 7.6422035, 47.5015782 ], + [ 7.6425212, 47.5013858 ], + [ 7.6429583999999995, 47.5012212 ], + [ 7.6434444, 47.5010364 ], + [ 7.6445452, 47.5006369 ], + [ 7.6453935, 47.500275 ], + [ 7.6462430999999995, 47.4998379 ], + [ 7.6466935, 47.4995886 ], + [ 7.6472444, 47.4992925 ], + [ 7.6481317, 47.4988365 ], + [ 7.6485695, 47.4978176 ], + [ 7.6489684, 47.4968652 ], + [ 7.6496072999999996, 47.4960343 ], + [ 7.6498797, 47.4956182 ], + [ 7.6499623, 47.4950893 ], + [ 7.6496394, 47.4949258 ], + [ 7.649503, 47.4948565 ], + [ 7.6489386, 47.4945709 ], + [ 7.6488805, 47.4945762 ], + [ 7.64877, 47.4946021 ], + [ 7.6486762, 47.4946458 ], + [ 7.648603, 47.494705 ], + [ 7.6485424, 47.4948038 ], + [ 7.6484464, 47.495261 ], + [ 7.6484234, 47.4954503 ], + [ 7.6484243, 47.4957277 ], + [ 7.6484096, 47.4958952 ], + [ 7.6483618, 47.4960561 ], + [ 7.6482911, 47.4962175 ], + [ 7.6482121, 47.4963921 ], + [ 7.6481259, 47.4966134 ], + [ 7.6480438, 47.4968381 ], + [ 7.6480029, 47.4969153 ], + [ 7.6479356, 47.4969829 ], + [ 7.6478432, 47.4970375 ], + [ 7.6477335, 47.4970719 ], + [ 7.6476146, 47.4970881 ], + [ 7.6474639, 47.4970823 ], + [ 7.6472165, 47.4970351 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns232", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Ermitage - Chilchholz", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Ermitage - Chilchholz", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Ermitage - Chilchholz", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Ermitage - Chilchholz", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5245612, 47.5369088 ], + [ 7.5249829, 47.5368462 ], + [ 7.5250275, 47.5368404 ], + [ 7.5248599, 47.53633 ], + [ 7.5248184, 47.5363086 ], + [ 7.5243837, 47.536394 ], + [ 7.5239616, 47.5364772 ], + [ 7.5239253999999995, 47.5365332 ], + [ 7.5240742, 47.5369173 ], + [ 7.524094, 47.5369765 ], + [ 7.5241135, 47.5369731 ], + [ 7.5245612, 47.5369088 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns233", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Allschwilerwald", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Allschwilerwald", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Allschwilerwald", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Allschwilerwald", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5584132, 46.7636937 ], + [ 7.5893546, 46.7809285 ], + [ 7.6376596, 46.7414548 ], + [ 7.6079016, 46.7238715 ], + [ 7.5584132, 46.7636937 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZW001", + "country" : "CHE", + "name" : [ + { + "text" : "LSZW Thun", + "lang" : "de-CH" + }, + { + "text" : "LSZW Thun", + "lang" : "fr-CH" + }, + { + "text" : "LSZW Thun", + "lang" : "it-CH" + }, + { + "text" : "LSZW Thun", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Thun Airfield", + "lang" : "de-CH" + }, + { + "text" : "Thun Airfield", + "lang" : "fr-CH" + }, + { + "text" : "Thun Airfield", + "lang" : "it-CH" + }, + { + "text" : "Thun Airfield", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "André Schneeberger", + "lang" : "de-CH" + }, + { + "text" : "André Schneeberger", + "lang" : "fr-CH" + }, + { + "text" : "André Schneeberger", + "lang" : "it-CH" + }, + { + "text" : "André Schneeberger", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.thun-airfield.ch", + "email" : "flugplatzleitung@thun-airfield.ch", + "phone" : "0041332224214", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P02DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7323622, 46.2730607 ], + [ 7.7324268, 46.2730196 ], + [ 7.7325327, 46.2729635 ], + [ 7.7327191, 46.272947 ], + [ 7.7328983000000004, 46.2729529 ], + [ 7.7331093, 46.2729871 ], + [ 7.7333122, 46.2730213 ], + [ 7.7335225, 46.2730837 ], + [ 7.7336687, 46.2731347 ], + [ 7.7338305, 46.2732082 ], + [ 7.7340657, 46.273372 ], + [ 7.7342682, 46.2734963 ], + [ 7.7344781, 46.2736319 ], + [ 7.7346646, 46.273773 ], + [ 7.7348507, 46.2738579 ], + [ 7.7350051, 46.2739145 ], + [ 7.7352723999999995, 46.2740164 ], + [ 7.7355967, 46.2740283 ], + [ 7.7354835, 46.2739323 ], + [ 7.7354036, 46.2738421 ], + [ 7.7353309, 46.2737406 ], + [ 7.7352181, 46.2735825 ], + [ 7.7351215, 46.2734078 ], + [ 7.735073, 46.2732782 ], + [ 7.7350331, 46.2731092 ], + [ 7.7350671, 46.2729458 ], + [ 7.7351167, 46.2728164 ], + [ 7.7351659999999995, 46.2726475 ], + [ 7.7352397, 46.2724843 ], + [ 7.7352978, 46.2722704 ], + [ 7.7353722, 46.2721016 ], + [ 7.7354701, 46.2719159 ], + [ 7.7355688, 46.2717134 ], + [ 7.735675, 46.2715671 ], + [ 7.7357738, 46.2714039 ], + [ 7.73584, 46.2712068 ], + [ 7.7358974, 46.2710155 ], + [ 7.7359556, 46.2708411 ], + [ 7.7360211, 46.2706553 ], + [ 7.7361281, 46.2705034 ], + [ 7.7362343, 46.2703516 ], + [ 7.7363653, 46.270149 ], + [ 7.7365043, 46.2699128 ], + [ 7.7365867999999995, 46.2697383 ], + [ 7.736661, 46.2695075 ], + [ 7.7367513, 46.2692711 ], + [ 7.7369316, 46.2690349 ], + [ 7.7370464, 46.2688156 ], + [ 7.7370714, 46.2686578 ], + [ 7.7370806, 46.2685452 ], + [ 7.7370488, 46.2683704 ], + [ 7.7370668, 46.2681002 ], + [ 7.7371322, 46.2679088 ], + [ 7.7372066, 46.2677287 ], + [ 7.7373533, 46.2675657 ], + [ 7.7374764, 46.2673912 ], + [ 7.7376317, 46.2671888 ], + [ 7.7377714, 46.2669357 ], + [ 7.7378781, 46.2667387 ], + [ 7.7379437, 46.2665642 ], + [ 7.7380587, 46.2664067 ], + [ 7.7382789, 46.2661987 ], + [ 7.7384506, 46.2660245 ], + [ 7.7386471, 46.2656306 ], + [ 7.738754, 46.2654617 ], + [ 7.7388278, 46.2653211 ], + [ 7.7389254, 46.2652425 ], + [ 7.7391209, 46.2651245 ], + [ 7.7392522, 46.2649559 ], + [ 7.739342, 46.2647814 ], + [ 7.7394406, 46.2645844 ], + [ 7.7395233999999995, 46.2643087 ], + [ 7.7395815, 46.2641117 ], + [ 7.739607, 46.263892 ], + [ 7.7396726000000005, 46.2637345 ], + [ 7.7397386, 46.2634981 ], + [ 7.7398292, 46.2633293 ], + [ 7.7398786, 46.263166 ], + [ 7.7398308, 46.2630196 ], + [ 7.7397579, 46.2628898 ], + [ 7.7396207, 46.2626982 ], + [ 7.7395002999999996, 46.2624838 ], + [ 7.7394117, 46.2622922 ], + [ 7.7393395, 46.2621344 ], + [ 7.7393323, 46.2620103 ], + [ 7.7393569, 46.2619034 ], + [ 7.739447, 46.2617797 ], + [ 7.7394559, 46.2616277 ], + [ 7.739441, 46.2614305 ], + [ 7.7394178, 46.2611883 ], + [ 7.739492, 46.26098 ], + [ 7.7395495, 46.2608225 ], + [ 7.7397373, 46.2606425 ], + [ 7.739901, 46.2604796 ], + [ 7.7401213, 46.2602941 ], + [ 7.7403002999999995, 46.2601368 ], + [ 7.7404308, 46.259985 ], + [ 7.740627, 46.2598558 ], + [ 7.7408304999999995, 46.2597153 ], + [ 7.7410585, 46.2595976 ], + [ 7.7413194, 46.2594403 ], + [ 7.7415068, 46.2593169 ], + [ 7.7417352, 46.2591427 ], + [ 7.7419628, 46.258974 ], + [ 7.7422157, 46.258817 ], + [ 7.7424522, 46.2586484 ], + [ 7.7427698, 46.2584857 ], + [ 7.743055, 46.258306 ], + [ 7.7433962, 46.2581601 ], + [ 7.7436407, 46.2579748 ], + [ 7.7438784, 46.2577105 ], + [ 7.7441555, 46.2574069 ], + [ 7.7443432, 46.2572101 ], + [ 7.7445721, 46.2569853 ], + [ 7.7447921, 46.2567491 ], + [ 7.7451102, 46.2565244 ], + [ 7.7454201, 46.2562997 ], + [ 7.7456727999999995, 46.2561144 ], + [ 7.7459497, 46.2559177 ], + [ 7.7461867, 46.2556929 ], + [ 7.7463583, 46.2555073 ], + [ 7.7462854, 46.2553832 ], + [ 7.7462371, 46.2552987 ], + [ 7.7462699, 46.2552142 ], + [ 7.7463356, 46.2550848 ], + [ 7.7463608, 46.2549611 ], + [ 7.7463529, 46.2548427 ], + [ 7.7463538, 46.2547245 ], + [ 7.7464525, 46.2545443 ], + [ 7.7466413, 46.2541054 ], + [ 7.7468627, 46.2535764 ], + [ 7.7470113, 46.2531937 ], + [ 7.7471837, 46.2528618 ], + [ 7.7473633, 46.2526649 ], + [ 7.7475344, 46.2525413 ], + [ 7.7476237999999995, 46.2524514 ], + [ 7.7476975, 46.2522994 ], + [ 7.7477883, 46.2521475 ], + [ 7.7478622999999995, 46.2519224 ], + [ 7.7479197, 46.2517423 ], + [ 7.747986, 46.2515735 ], + [ 7.7480429, 46.2514609 ], + [ 7.7481331, 46.2513597 ], + [ 7.7482145, 46.2512866 ], + [ 7.7483201, 46.2511911 ], + [ 7.7484513, 46.2510392 ], + [ 7.7485817, 46.2508817 ], + [ 7.7486967, 46.2507243 ], + [ 7.7488022, 46.250595 ], + [ 7.7489246, 46.2504657 ], + [ 7.7490881, 46.2502857 ], + [ 7.7491538, 46.2501507 ], + [ 7.7492684, 46.2499256 ], + [ 7.7492859, 46.2497285 ], + [ 7.7493273, 46.2496103 ], + [ 7.7493845, 46.2495485 ], + [ 7.7494983, 46.2494585 ], + [ 7.7495959, 46.24938 ], + [ 7.7497021, 46.2492504 ], + [ 7.7498009, 46.249093 ], + [ 7.7499319, 46.2488962 ], + [ 7.7500137, 46.2487498 ], + [ 7.7501446, 46.248553 ], + [ 7.7502344999999995, 46.248401 ], + [ 7.7503002, 46.2482716 ], + [ 7.750366, 46.2481421 ], + [ 7.7504473, 46.2480522 ], + [ 7.7505125, 46.2479792 ], + [ 7.7505453, 46.247906 ], + [ 7.7505298, 46.2477426 ], + [ 7.7505552, 46.247523 ], + [ 7.7505889, 46.2473091 ], + [ 7.7506141, 46.2471908 ], + [ 7.750639, 46.2470051 ], + [ 7.7506723, 46.2468756 ], + [ 7.7507137, 46.2467518 ], + [ 7.7507795, 46.2466392 ], + [ 7.7508769, 46.2465211 ], + [ 7.7508941, 46.2464141 ], + [ 7.750895, 46.2462846 ], + [ 7.7509363, 46.2461439 ], + [ 7.7509771, 46.2460482 ], + [ 7.7509774, 46.2459637 ], + [ 7.7509127, 46.2458509 ], + [ 7.7508246, 46.2457438 ], + [ 7.7507113, 46.2456252 ], + [ 7.7505658, 46.2455519 ], + [ 7.7504282, 46.2454502 ], + [ 7.7502902, 46.2453993 ], + [ 7.7501604, 46.2453765 ], + [ 7.7500307, 46.245365 ], + [ 7.7498765, 46.2453252 ], + [ 7.7497229, 46.2452574 ], + [ 7.7496179, 46.2451728 ], + [ 7.7494885, 46.2450654 ], + [ 7.7493832, 46.244947 ], + [ 7.7492374, 46.2448116 ], + [ 7.7490918, 46.2447211 ], + [ 7.7489138, 46.2446307 ], + [ 7.7487439, 46.2445235 ], + [ 7.7486151, 46.2443992 ], + [ 7.7485585, 46.244281 ], + [ 7.7485425, 46.2441683 ], + [ 7.7485029999999995, 46.2440554 ], + [ 7.7484633, 46.2439146 ], + [ 7.7484315, 46.24374 ], + [ 7.7483835, 46.243571 ], + [ 7.7482945999999995, 46.2434638 ], + [ 7.7481894, 46.2433622 ], + [ 7.7480769, 46.2432324 ], + [ 7.7479635, 46.2431083 ], + [ 7.7478426, 46.2429392 ], + [ 7.7477298999999995, 46.2427869 ], + [ 7.7475599, 46.2426627 ], + [ 7.7473576, 46.2425665 ], + [ 7.747228, 46.2424424 ], + [ 7.7471803, 46.2423128 ], + [ 7.7471729, 46.2421608 ], + [ 7.7471412, 46.2419917 ], + [ 7.747093, 46.2419295 ], + [ 7.7469715, 46.2417942 ], + [ 7.7468509999999995, 46.2416814 ], + [ 7.7467543, 46.2415009 ], + [ 7.7467144, 46.2413262 ], + [ 7.7466422999999995, 46.2411854 ], + [ 7.7465534, 46.2410782 ], + [ 7.7464644, 46.2409654 ], + [ 7.7463516, 46.2407906 ], + [ 7.7462553, 46.2406778 ], + [ 7.7461502, 46.240565 ], + [ 7.7460695, 46.2404803 ], + [ 7.7458833, 46.2403786 ], + [ 7.7457215, 46.2402713 ], + [ 7.7456407, 46.2401641 ], + [ 7.745544, 46.2399837 ], + [ 7.7454154, 46.2397413 ], + [ 7.7453192, 46.2394877 ], + [ 7.7452232, 46.2392791 ], + [ 7.7451184, 46.2390874 ], + [ 7.7450068, 46.2388282 ], + [ 7.7448692, 46.2385801 ], + [ 7.7447652, 46.2383884 ], + [ 7.7446762, 46.238253 ], + [ 7.7444985, 46.2380725 ], + [ 7.7443861, 46.2379653 ], + [ 7.7442884, 46.2378862 ], + [ 7.744216, 46.2378354 ], + [ 7.7440619, 46.2378013 ], + [ 7.7438915999999995, 46.2377841 ], + [ 7.7437213, 46.2377557 ], + [ 7.7435266, 46.2377158 ], + [ 7.7433482, 46.2376817 ], + [ 7.7432102, 46.2376364 ], + [ 7.7429993, 46.2375853 ], + [ 7.7427809, 46.2375173 ], + [ 7.7425131, 46.2374323 ], + [ 7.7421893, 46.2373529 ], + [ 7.7420026, 46.2372849 ], + [ 7.7417031, 46.2371998 ], + [ 7.7414597, 46.2371375 ], + [ 7.741111, 46.2370805 ], + [ 7.7407294, 46.2370798 ], + [ 7.7404129, 46.2371355 ], + [ 7.740343, 46.2365215 ], + [ 7.7402791, 46.2362398 ], + [ 7.7402804, 46.2360426 ], + [ 7.740265, 46.2358905 ], + [ 7.7402495, 46.2357385 ], + [ 7.7402099, 46.2356032 ], + [ 7.7401458, 46.2354341 ], + [ 7.7400647, 46.2352819 ], + [ 7.7399682, 46.2351296 ], + [ 7.7399044, 46.2350056 ], + [ 7.7398646, 46.2348478 ], + [ 7.7398573, 46.2346957 ], + [ 7.7398498, 46.2345268 ], + [ 7.7398913, 46.2343973 ], + [ 7.7399731, 46.2342623 ], + [ 7.7400382, 46.234161 ], + [ 7.7400796, 46.2340259 ], + [ 7.7401054, 46.2338571 ], + [ 7.7401299, 46.2337501 ], + [ 7.740114, 46.2336655 ], + [ 7.7401147, 46.2334909 ], + [ 7.7401075, 46.2333614 ], + [ 7.7401649, 46.2332039 ], + [ 7.7402467999999995, 46.2330575 ], + [ 7.740353, 46.2329282 ], + [ 7.7404762, 46.2327876 ], + [ 7.740606, 46.2326752 ], + [ 7.7407123, 46.2325572 ], + [ 7.7408187, 46.2324672 ], + [ 7.7409403999999995, 46.2323605 ], + [ 7.7410306, 46.2322649 ], + [ 7.7411612, 46.2321469 ], + [ 7.7413079, 46.2320063 ], + [ 7.7414622, 46.2319221 ], + [ 7.7416091, 46.2318267 ], + [ 7.7418046, 46.2317256 ], + [ 7.7420238, 46.2316641 ], + [ 7.7422673, 46.2316083 ], + [ 7.7425925, 46.2315244 ], + [ 7.7429419, 46.2314237 ], + [ 7.7433238, 46.2313399 ], + [ 7.7436652, 46.2312505 ], + [ 7.744039, 46.2311554 ], + [ 7.7442672, 46.231105 ], + [ 7.7444946, 46.2310718 ], + [ 7.7447376, 46.231061 ], + [ 7.7449894, 46.2310277 ], + [ 7.7452331, 46.2310168 ], + [ 7.7454607, 46.2310003 ], + [ 7.7456389, 46.2310007 ], + [ 7.7458664, 46.2309673 ], + [ 7.7459966, 46.2309281 ], + [ 7.7461431, 46.2309058 ], + [ 7.746297, 46.2308893 ], + [ 7.7465408, 46.2308784 ], + [ 7.7467838, 46.2308733 ], + [ 7.7470113, 46.2308568 ], + [ 7.7472469, 46.2308347 ], + [ 7.7474495, 46.230835 ], + [ 7.7476286, 46.2308523 ], + [ 7.7478717, 46.2308583 ], + [ 7.7480993, 46.2308588 ], + [ 7.7483747, 46.230848 ], + [ 7.7485374, 46.2308202 ], + [ 7.7486834, 46.230843 ], + [ 7.7488617, 46.2308546 ], + [ 7.7490569, 46.2308549 ], + [ 7.7492271, 46.2308608 ], + [ 7.7494061, 46.2308499 ], + [ 7.7495681, 46.2308502 ], + [ 7.7498031, 46.2308618 ], + [ 7.7502009, 46.2308626 ], + [ 7.7505748, 46.2307957 ], + [ 7.7507126, 46.2308185 ], + [ 7.7508423, 46.2308356 ], + [ 7.7509726, 46.2308077 ], + [ 7.7510704, 46.2307684 ], + [ 7.7511676, 46.2307686 ], + [ 7.7513546, 46.2307465 ], + [ 7.7514921, 46.2307016 ], + [ 7.7516142, 46.2306567 ], + [ 7.7517531, 46.2305895 ], + [ 7.7519073, 46.2304939 ], + [ 7.7520299, 46.2303984 ], + [ 7.7522085, 46.2303256 ], + [ 7.7524851, 46.230236 ], + [ 7.7527771, 46.2301689 ], + [ 7.7532489, 46.2300796 ], + [ 7.7537448, 46.2299566 ], + [ 7.7542896, 46.2297379 ], + [ 7.754452, 46.2296649 ], + [ 7.7545415, 46.229592 ], + [ 7.7546154, 46.229485 ], + [ 7.7546649, 46.2293556 ], + [ 7.7547386, 46.2292149 ], + [ 7.7548851, 46.2290518 ], + [ 7.7550235, 46.2289 ], + [ 7.7552196, 46.2287708 ], + [ 7.7553905, 46.2286191 ], + [ 7.7555783, 46.2284673 ], + [ 7.7556838, 46.2283492 ], + [ 7.7557333, 46.2282366 ], + [ 7.7557504, 46.2281015 ], + [ 7.7557836, 46.2279664 ], + [ 7.7559306, 46.2277583 ], + [ 7.7561019, 46.2275333 ], + [ 7.7562655, 46.2272633 ], + [ 7.7564293, 46.2270157 ], + [ 7.7566254, 46.2267401 ], + [ 7.7568379, 46.2263744 ], + [ 7.7570593, 46.2260087 ], + [ 7.7567345, 46.2260082 ], + [ 7.7565555, 46.2260134 ], + [ 7.7563045, 46.2260299 ], + [ 7.7558901, 46.2260911 ], + [ 7.7554195, 46.2261072 ], + [ 7.7551434, 46.2261292 ], + [ 7.754745, 46.2261567 ], + [ 7.7543886, 46.2261561 ], + [ 7.753909, 46.2261552 ], + [ 7.7534228, 46.2261318 ], + [ 7.7529195, 46.2260746 ], + [ 7.7524492, 46.2260062 ], + [ 7.7521005, 46.2259323 ], + [ 7.751809, 46.2258135 ], + [ 7.7514363, 46.2256664 ], + [ 7.7510557, 46.2255474 ], + [ 7.7508534000000004, 46.2254457 ], + [ 7.7507155, 46.225406 ], + [ 7.7505535, 46.2254227 ], + [ 7.7501397, 46.2254332 ], + [ 7.7498878, 46.2254383 ], + [ 7.749652, 46.2254378 ], + [ 7.7494815, 46.2255108 ], + [ 7.7493675, 46.22555 ], + [ 7.749246, 46.2255497 ], + [ 7.7490921, 46.2255382 ], + [ 7.7489137, 46.225521 ], + [ 7.7487349, 46.2255489 ], + [ 7.7486694, 46.2255769 ], + [ 7.7486124, 46.2256557 ], + [ 7.7485308, 46.2256949 ], + [ 7.7483844, 46.2257398 ], + [ 7.7482463, 46.225807 ], + [ 7.7481, 46.22588 ], + [ 7.7479454, 46.225891 ], + [ 7.7478812999999995, 46.225874 ], + [ 7.7478324, 46.2258233 ], + [ 7.7478086, 46.2257612 ], + [ 7.7477604, 46.2256992 ], + [ 7.7476386, 46.2256482 ], + [ 7.7473391, 46.2255463 ], + [ 7.7471444, 46.2254896 ], + [ 7.7469577, 46.2254217 ], + [ 7.7466827, 46.2253592 ], + [ 7.746463, 46.2253363 ], + [ 7.746366, 46.2253642 ], + [ 7.7462275, 46.2253752 ], + [ 7.7459844, 46.2253579 ], + [ 7.745676, 46.2253912 ], + [ 7.7452701, 46.2253792 ], + [ 7.7449371, 46.225372899999996 ], + [ 7.7448319, 46.2254008 ], + [ 7.7446368, 46.2254118 ], + [ 7.744507, 46.2253778 ], + [ 7.7443287, 46.2253774 ], + [ 7.7441911, 46.2253941 ], + [ 7.7440202, 46.2253937 ], + [ 7.7437366, 46.2253819 ], + [ 7.743469, 46.2253363 ], + [ 7.7432413, 46.225319 ], + [ 7.7431443, 46.2253583 ], + [ 7.7430059, 46.2253749 ], + [ 7.7427465, 46.2253406 ], + [ 7.7423487, 46.2253342 ], + [ 7.7420805999999995, 46.2253394 ], + [ 7.7418941, 46.2253052 ], + [ 7.741708, 46.2251978 ], + [ 7.7416274, 46.2251245 ], + [ 7.7415062, 46.2250341 ], + [ 7.7413682, 46.2249888 ], + [ 7.7412794, 46.2249042 ], + [ 7.7411913, 46.2247914 ], + [ 7.7411431, 46.2245772 ], + [ 7.7411364, 46.2243857 ], + [ 7.7411208, 46.2242111 ], + [ 7.7410817, 46.2240196 ], + [ 7.7409851, 46.2238392 ], + [ 7.7409043, 46.223732 ], + [ 7.7409046, 46.2236363 ], + [ 7.7409137, 46.2235293 ], + [ 7.7408572, 46.2234221 ], + [ 7.7407528, 46.2233037 ], + [ 7.7406471, 46.2232303 ], + [ 7.7405259, 46.2231399 ], + [ 7.740372, 46.2231396 ], + [ 7.7402417, 46.2231619 ], + [ 7.740096, 46.2231729 ], + [ 7.7399899, 46.2231839 ], + [ 7.7399092, 46.2232232 ], + [ 7.7397953, 46.2232793 ], + [ 7.7396649, 46.2232904 ], + [ 7.7395267, 46.223352 ], + [ 7.7393885000000004, 46.2234082 ], + [ 7.7392427, 46.2234134 ], + [ 7.7390806, 46.223385 ], + [ 7.7389665, 46.2234073 ], + [ 7.7388282, 46.2234577 ], + [ 7.7386737, 46.2234967 ], + [ 7.7384794, 46.2235134 ], + [ 7.7382436, 46.223496 ], + [ 7.7378789, 46.2234559 ], + [ 7.7374408, 46.2233424 ], + [ 7.7372707, 46.2233364 ], + [ 7.7370843, 46.2233304 ], + [ 7.736881, 46.2233301 ], + [ 7.7366702, 46.2233014 ], + [ 7.7365, 46.2232843 ], + [ 7.7362725, 46.223295 ], + [ 7.7360531, 46.2233284 ], + [ 7.7358749, 46.2233168 ], + [ 7.7357613, 46.2232828 ], + [ 7.7356321, 46.2232151 ], + [ 7.7355023, 46.223181 ], + [ 7.7353323, 46.2231919 ], + [ 7.7351453, 46.2232141 ], + [ 7.7349912, 46.2231912 ], + [ 7.7348696, 46.2231684 ], + [ 7.73474, 46.2231626 ], + [ 7.7346665, 46.2232018 ], + [ 7.7345768, 46.2232466 ], + [ 7.7344878, 46.2232692 ], + [ 7.7343494, 46.2232912 ], + [ 7.7342686, 46.2233193 ], + [ 7.7341708, 46.2233698 ], + [ 7.7339839999999995, 46.2234202 ], + [ 7.7337888, 46.223431 ], + [ 7.7335539, 46.2234193 ], + [ 7.7333506, 46.2234302 ], + [ 7.7330507, 46.2234014 ], + [ 7.73275, 46.223367 ], + [ 7.7323528, 46.2233155 ], + [ 7.7319799, 46.2232529 ], + [ 7.7316400000000005, 46.2231677 ], + [ 7.7313879, 46.223139 ], + [ 7.7310551, 46.2231609 ], + [ 7.7307883, 46.2230984 ], + [ 7.7305772, 46.2230079 ], + [ 7.730367, 46.2229343 ], + [ 7.7301394, 46.2229338 ], + [ 7.7299693, 46.2229391 ], + [ 7.7297421, 46.2228655 ], + [ 7.7295314, 46.2228482 ], + [ 7.7293364, 46.2228872 ], + [ 7.7291009, 46.2229318 ], + [ 7.7290197, 46.2228978 ], + [ 7.7289392, 46.2228244 ], + [ 7.7288504, 46.2227454 ], + [ 7.7286556, 46.2226661 ], + [ 7.7284616, 46.2225869 ], + [ 7.728308, 46.2224964 ], + [ 7.7280246, 46.2223608 ], + [ 7.7279032, 46.2223717 ], + [ 7.7277812, 46.2224335 ], + [ 7.7275856, 46.2225119 ], + [ 7.7274715, 46.2225342 ], + [ 7.7272696, 46.2224944 ], + [ 7.727091, 46.2224321 ], + [ 7.7269694, 46.222398 ], + [ 7.7268236, 46.2224035 ], + [ 7.7266852, 46.2224369 ], + [ 7.7265475, 46.2224366 ], + [ 7.7263286, 46.2223967 ], + [ 7.7261496, 46.2223851 ], + [ 7.726052, 46.2224638 ], + [ 7.7260272, 46.2225369 ], + [ 7.7260268, 46.2226101 ], + [ 7.7259942, 46.2227227 ], + [ 7.7259694, 46.2227903 ], + [ 7.7258873, 46.2228746 ], + [ 7.7257571, 46.222925 ], + [ 7.7255547, 46.2229415 ], + [ 7.7254243, 46.2229412 ], + [ 7.7252217, 46.2229295 ], + [ 7.7250758, 46.222918 ], + [ 7.7249536, 46.2229401 ], + [ 7.7247101, 46.2229905 ], + [ 7.7245319, 46.2229957 ], + [ 7.724369, 46.2229898 ], + [ 7.7241666, 46.2230006 ], + [ 7.7240935, 46.2229609 ], + [ 7.7238098, 46.2229155 ], + [ 7.7236638, 46.2228813 ], + [ 7.7234611, 46.2228415 ], + [ 7.7232341, 46.2228128 ], + [ 7.7230556, 46.2227618 ], + [ 7.7229103, 46.2226883 ], + [ 7.7227648, 46.2226034 ], + [ 7.7225784, 46.2225693 ], + [ 7.7224488000000004, 46.222569 ], + [ 7.7222373, 46.2225686 ], + [ 7.7220348, 46.2225682 ], + [ 7.7218964, 46.2225847 ], + [ 7.7217337, 46.2226069 ], + [ 7.7216367, 46.2226349 ], + [ 7.7215065, 46.2226741 ], + [ 7.7213519, 46.2227132 ], + [ 7.7211818999999995, 46.2227241 ], + [ 7.7210434, 46.2227181 ], + [ 7.7208403, 46.2227628 ], + [ 7.7206621, 46.2227737 ], + [ 7.7204873, 46.222789 ], + [ 7.7204103, 46.2227958 ], + [ 7.7200295, 46.2227611 ], + [ 7.719964, 46.2227948 ], + [ 7.7197772, 46.222845 ], + [ 7.7196632, 46.2229011 ], + [ 7.7194521, 46.2229457 ], + [ 7.7193304, 46.2229173 ], + [ 7.7191846, 46.2229114 ], + [ 7.7190461, 46.2229279 ], + [ 7.718916, 46.2229783 ], + [ 7.7188020999999996, 46.2230345 ], + [ 7.7186643, 46.2230285 ], + [ 7.7185097, 46.2230394 ], + [ 7.7183801, 46.2230505 ], + [ 7.7181365, 46.2230781 ], + [ 7.7179009, 46.223117 ], + [ 7.7177707, 46.2231506 ], + [ 7.7176325, 46.2232123 ], + [ 7.717478, 46.223257 ], + [ 7.7173397, 46.2232848 ], + [ 7.7171123, 46.223335 ], + [ 7.7168525, 46.2233852 ], + [ 7.7166252, 46.2234466 ], + [ 7.7164458, 46.2235307 ], + [ 7.7158041, 46.223642 ], + [ 7.7157232, 46.22367 ], + [ 7.7155768, 46.2237147 ], + [ 7.715398, 46.2237538 ], + [ 7.7152354, 46.2237929 ], + [ 7.7150891, 46.2238658 ], + [ 7.7149016, 46.2239498 ], + [ 7.7147224, 46.2240679 ], + [ 7.7145923, 46.2241351 ], + [ 7.71434, 46.2242191 ], + [ 7.714031, 46.2242972 ], + [ 7.7137308, 46.2243698 ], + [ 7.7134138, 46.2244705 ], + [ 7.7131864, 46.2245151 ], + [ 7.7129583, 46.2245766 ], + [ 7.7127384, 46.2246718 ], + [ 7.712584, 46.2247447 ], + [ 7.7124782, 46.2247895 ], + [ 7.71234, 46.2248682 ], + [ 7.7122336, 46.224958 ], + [ 7.7121441, 46.2250479 ], + [ 7.7120627, 46.2251378 ], + [ 7.71194, 46.2252277 ], + [ 7.7118668, 46.2253176 ], + [ 7.7117935, 46.2254019 ], + [ 7.7116952, 46.2255031 ], + [ 7.7115407, 46.2255479 ], + [ 7.7113542, 46.2255138 ], + [ 7.7113303, 46.2254347 ], + [ 7.7112982, 46.2253334 ], + [ 7.7112182, 46.2252148 ], + [ 7.7112105, 46.2251248 ], + [ 7.7112109, 46.2250515 ], + [ 7.7112679, 46.2249446 ], + [ 7.7113258, 46.2248546 ], + [ 7.7113179, 46.224742 ], + [ 7.711327, 46.2246125 ], + [ 7.7112948, 46.2244998 ], + [ 7.711239, 46.2243475 ], + [ 7.7112239, 46.2242461 ], + [ 7.7112243, 46.224156 ], + [ 7.7112577, 46.2240378 ], + [ 7.7112661, 46.2239476 ], + [ 7.7112098, 46.2238631 ], + [ 7.7111616, 46.2237785 ], + [ 7.7112187, 46.2236942 ], + [ 7.711284, 46.223638 ], + [ 7.7113412, 46.2235649 ], + [ 7.7114063999999996, 46.2234806 ], + [ 7.7114074, 46.2233622 ], + [ 7.7113752, 46.2232384 ], + [ 7.7113762, 46.2231144 ], + [ 7.7113689, 46.222951 ], + [ 7.7113698, 46.222799 ], + [ 7.7113626, 46.2226526 ], + [ 7.7113312, 46.2225398 ], + [ 7.7112585, 46.2224101 ], + [ 7.7111947, 46.2222861 ], + [ 7.7111381, 46.2221451 ], + [ 7.7110338, 46.2220154 ], + [ 7.7109045, 46.2219081 ], + [ 7.7107347, 46.2218232 ], + [ 7.7106135, 46.221716 ], + [ 7.7104523, 46.221541 ], + [ 7.710323, 46.2214394 ], + [ 7.7102829, 46.2213547 ], + [ 7.7102433, 46.2212195 ], + [ 7.7102118, 46.2210617 ], + [ 7.7101305, 46.2210053 ], + [ 7.7100579, 46.2209038 ], + [ 7.7099531, 46.2208359 ], + [ 7.7099298, 46.2207176 ], + [ 7.7098814, 46.220605 ], + [ 7.7098011, 46.2204132 ], + [ 7.7097458, 46.2202103 ], + [ 7.7097141, 46.2200187 ], + [ 7.7096907, 46.2198666 ], + [ 7.7096847, 46.2196301 ], + [ 7.7097265, 46.2194105 ], + [ 7.709719, 46.2192078 ], + [ 7.7097198, 46.2190444 ], + [ 7.7097046, 46.2189092 ], + [ 7.7096818, 46.2187345 ], + [ 7.7096333, 46.2185823 ], + [ 7.7095214, 46.2183907 ], + [ 7.7094088, 46.2182158 ], + [ 7.7092886, 46.2179847 ], + [ 7.7091348, 46.2178491 ], + [ 7.7089335, 46.2175896 ], + [ 7.7088452, 46.217426 ], + [ 7.7088052, 46.2173697 ], + [ 7.7087977, 46.2171669 ], + [ 7.7087667, 46.2169528 ], + [ 7.7087192, 46.21684 ], + [ 7.7086627, 46.2167161 ], + [ 7.7085422, 46.2165863 ], + [ 7.7084446, 46.2165128 ], + [ 7.7083642999999995, 46.2164787 ], + [ 7.708267, 46.2164505 ], + [ 7.7081454, 46.2164277 ], + [ 7.7079831, 46.2163653 ], + [ 7.7078135, 46.2163086 ], + [ 7.7076756, 46.2162689 ], + [ 7.7075789, 46.2161955 ], + [ 7.7074894, 46.2161165 ], + [ 7.7074413, 46.2160432 ], + [ 7.707361, 46.2158684 ], + [ 7.7073215, 46.2157331 ], + [ 7.7072739, 46.2156091 ], + [ 7.7072176, 46.2155188 ], + [ 7.7071532, 46.2154286 ], + [ 7.7071049, 46.2153327 ], + [ 7.7070647999999995, 46.2152594 ], + [ 7.7070734, 46.2151863 ], + [ 7.7070986999999995, 46.2150624 ], + [ 7.7070988, 46.2149272 ], + [ 7.7070587, 46.214837 ], + [ 7.7069619, 46.214758 ], + [ 7.706865, 46.2146563 ], + [ 7.7068249, 46.2145661 ], + [ 7.7067935, 46.2144422 ], + [ 7.7067382, 46.2142449 ], + [ 7.7067061, 46.2141435 ], + [ 7.7067066, 46.2140646 ], + [ 7.706601, 46.2140137 ], + [ 7.7065287, 46.2139685 ], + [ 7.7063907, 46.2139119 ], + [ 7.706286, 46.213861 ], + [ 7.7062297, 46.213782 ], + [ 7.7061645, 46.213703 ], + [ 7.7061252, 46.2136071 ], + [ 7.7060768, 46.2134887 ], + [ 7.7060292, 46.2133647 ], + [ 7.7060218, 46.2131732 ], + [ 7.7059659, 46.2130154 ], + [ 7.7058285, 46.2129024 ], + [ 7.7057972, 46.2127898 ], + [ 7.7057573999999995, 46.2126095 ], + [ 7.7056686, 46.2125078 ], + [ 7.7055319, 46.212378 ], + [ 7.7054263, 46.2123215 ], + [ 7.7053944, 46.2122425 ], + [ 7.7053543, 46.212158 ], + [ 7.7052655, 46.2120676 ], + [ 7.7051445, 46.2119884 ], + [ 7.7050962, 46.2118927 ], + [ 7.7050643, 46.2118138 ], + [ 7.7050978, 46.2117125 ], + [ 7.7051546, 46.211583 ], + [ 7.7052701, 46.2113637 ], + [ 7.7052705, 46.2112791 ], + [ 7.7051571, 46.211262 ], + [ 7.705076, 46.2112393 ], + [ 7.7049387, 46.2111602 ], + [ 7.7047684, 46.2111034 ], + [ 7.7046635, 46.2110243 ], + [ 7.704599, 46.2109116 ], + [ 7.7045995, 46.2108496 ], + [ 7.7046004, 46.2107088 ], + [ 7.7045932, 46.2105567 ], + [ 7.7045771, 46.2104271 ], + [ 7.7044884, 46.2103369 ], + [ 7.7043831, 46.2103254 ], + [ 7.7041888, 46.2103305 ], + [ 7.7039862, 46.210302 ], + [ 7.7038726, 46.2102623 ], + [ 7.7037509, 46.2102113 ], + [ 7.7035731, 46.2101208 ], + [ 7.7034924, 46.2100248 ], + [ 7.7033796, 46.2099739 ], + [ 7.7032255, 46.2099229 ], + [ 7.7029985, 46.2098774 ], + [ 7.7027715, 46.2098149 ], + [ 7.7026343, 46.2097582 ], + [ 7.7025364, 46.2097748 ], + [ 7.7024878999999995, 46.2097974 ], + [ 7.7024387999999995, 46.209848 ], + [ 7.7024141, 46.2099324 ], + [ 7.7023651, 46.2100167 ], + [ 7.7023158, 46.2100393 ], + [ 7.7021788, 46.2100051 ], + [ 7.7020815, 46.2099711 ], + [ 7.7019272999999995, 46.2099031 ], + [ 7.7018381, 46.2098917 ], + [ 7.7018134, 46.2099648 ], + [ 7.7017887, 46.2100492 ], + [ 7.7018128, 46.2101732 ], + [ 7.7018443, 46.2103197 ], + [ 7.7019001, 46.2104775 ], + [ 7.7019478, 46.2106297 ], + [ 7.702028, 46.2107876 ], + [ 7.7020514, 46.210934 ], + [ 7.7020829, 46.2110862 ], + [ 7.7020571, 46.2112832 ], + [ 7.7020562, 46.2114297 ], + [ 7.7020878, 46.211593 ], + [ 7.7021038, 46.211717 ], + [ 7.7022002, 46.2118862 ], + [ 7.7023039, 46.2120723 ], + [ 7.7024415, 46.2122134 ], + [ 7.7026824, 46.2126251 ], + [ 7.7024723, 46.2125401 ], + [ 7.702318, 46.2124553 ], + [ 7.702083, 46.2124266 ], + [ 7.7022525, 46.2126522 ], + [ 7.7022182, 46.2129226 ], + [ 7.7017641, 46.2128033 ], + [ 7.7017383, 46.2131523 ], + [ 7.7017283, 46.2134396 ], + [ 7.7016548, 46.213462 ], + [ 7.7015327, 46.2135124 ], + [ 7.7013701999999995, 46.2135684 ], + [ 7.7012644, 46.2136357 ], + [ 7.7012155, 46.2137257 ], + [ 7.701174, 46.2138552 ], + [ 7.7011413, 46.2139621 ], + [ 7.7011158, 46.2140521 ], + [ 7.7010913, 46.2141647 ], + [ 7.7010984, 46.2143055 ], + [ 7.701138, 46.2144521 ], + [ 7.7010885, 46.214604 ], + [ 7.700975, 46.2145643 ], + [ 7.7008697, 46.2145754 ], + [ 7.700845, 46.214643 ], + [ 7.7008121, 46.2147216 ], + [ 7.7007144, 46.2147834 ], + [ 7.7005924, 46.214845 ], + [ 7.7008182, 46.2149751 ], + [ 7.7007356, 46.2153128 ], + [ 7.7006196, 46.2156111 ], + [ 7.7004658, 46.2156163 ], + [ 7.7003198, 46.2155822 ], + [ 7.7001821, 46.2155819 ], + [ 7.7000195, 46.2156153 ], + [ 7.6998894, 46.2156657 ], + [ 7.6997917000000005, 46.2157387 ], + [ 7.699621, 46.2157833 ], + [ 7.6994017, 46.2158167 ], + [ 7.6993466, 46.2158165 ], + [ 7.699264, 46.2158164 ], + [ 7.6990116, 46.2158777 ], + [ 7.6987276, 46.2159334 ], + [ 7.6983943, 46.2160341 ], + [ 7.698101, 46.2161797 ], + [ 7.697703, 46.2162915 ], + [ 7.6975814, 46.2162519 ], + [ 7.6974928, 46.2161897 ], + [ 7.6974034, 46.2161388 ], + [ 7.6972662, 46.2160596 ], + [ 7.6971775000000004, 46.2159694 ], + [ 7.6971211, 46.2158735 ], + [ 7.6970244, 46.2157944 ], + [ 7.696927, 46.2157491 ], + [ 7.6968297, 46.2157321 ], + [ 7.6968058, 46.2156531 ], + [ 7.6968225, 46.2155743 ], + [ 7.6968309999999995, 46.2154956 ], + [ 7.6966694, 46.2154049 ], + [ 7.6964996, 46.2153089 ], + [ 7.6963137, 46.215224 ], + [ 7.6961514, 46.2151504 ], + [ 7.696006, 46.2150712 ], + [ 7.6958849, 46.2149808 ], + [ 7.6957557, 46.2148792 ], + [ 7.6956588, 46.2147719 ], + [ 7.6954967, 46.2147604 ], + [ 7.6952877, 46.2144163 ], + [ 7.6949876, 46.2144888 ], + [ 7.6947757, 46.2145559 ], + [ 7.6943944, 46.2146 ], + [ 7.694094, 46.214605 ], + [ 7.6939069, 46.2146158 ], + [ 7.6938103, 46.2145761 ], + [ 7.6936724, 46.2145196 ], + [ 7.6934939, 46.2144629 ], + [ 7.6933, 46.2143948 ], + [ 7.6931379, 46.2143663 ], + [ 7.6929272, 46.2143377 ], + [ 7.6926752, 46.2143258 ], + [ 7.6923917, 46.2143082 ], + [ 7.6922289, 46.2143191 ], + [ 7.6921323, 46.2142627 ], + [ 7.6920436, 46.2141836 ], + [ 7.6919468, 46.2140877 ], + [ 7.6917849, 46.2139408 ], + [ 7.6916969, 46.2138335 ], + [ 7.691559, 46.2137882 ], + [ 7.6913564, 46.2137483 ], + [ 7.6912185, 46.2137141 ], + [ 7.6909998, 46.2137024 ], + [ 7.690708, 46.2136679 ], + [ 7.6903913, 46.2136672 ], + [ 7.6901235, 46.2137172 ], + [ 7.6896849, 46.2137895 ], + [ 7.6893515, 46.2138563 ], + [ 7.6890022, 46.2139794 ], + [ 7.6885143, 46.2141021 ], + [ 7.6883112, 46.2141355 ], + [ 7.6881487, 46.2142027 ], + [ 7.6879854, 46.2142754 ], + [ 7.6878152, 46.214247 ], + [ 7.6876207999999995, 46.2142465 ], + [ 7.6875149, 46.2142912 ], + [ 7.6873768, 46.2143643 ], + [ 7.687271, 46.2144259 ], + [ 7.6871244, 46.2144424 ], + [ 7.6868734, 46.2144475 ], + [ 7.6867431, 46.2144753 ], + [ 7.6865724, 46.2145087 ], + [ 7.6863935, 46.2145278 ], + [ 7.6862639999999995, 46.2145587 ], + [ 7.6861093, 46.2145583 ], + [ 7.6859797, 46.2145524 ], + [ 7.6858502, 46.2145691 ], + [ 7.6857524, 46.2146195 ], + [ 7.6856539, 46.2146981 ], + [ 7.6854997, 46.2147878 ], + [ 7.6853121, 46.2148606 ], + [ 7.685215, 46.2148941 ], + [ 7.6850282, 46.2149557 ], + [ 7.6848569, 46.2150454 ], + [ 7.6847593, 46.2151354 ], + [ 7.6846608, 46.2152026 ], + [ 7.684514, 46.2153262 ], + [ 7.6842538000000005, 46.2154665 ], + [ 7.6839686, 46.2156291 ], + [ 7.6837004, 46.2157805 ], + [ 7.6835696, 46.215859 ], + [ 7.6834146, 46.2159769 ], + [ 7.6832191, 46.216089 ], + [ 7.6831047, 46.216224 ], + [ 7.6829829, 46.2163307 ], + [ 7.6828522, 46.2164599 ], + [ 7.6826643, 46.2166397 ], + [ 7.6825255, 46.2167521 ], + [ 7.6824198, 46.2168306 ], + [ 7.6822329, 46.2168752 ], + [ 7.6820452, 46.216931 ], + [ 7.6818995, 46.2169532 ], + [ 7.6817448, 46.2169585 ], + [ 7.6815748, 46.2169863 ], + [ 7.6814116, 46.2170591 ], + [ 7.6812573, 46.2171543 ], + [ 7.6811677, 46.2172162 ], + [ 7.6811259, 46.2173062 ], + [ 7.6810439, 46.2174468 ], + [ 7.6809382, 46.2175366 ], + [ 7.6808485, 46.2175758 ], + [ 7.6807346, 46.2176431 ], + [ 7.6805802, 46.217716 ], + [ 7.6804255999999995, 46.2177438 ], + [ 7.6802548999999996, 46.2177828 ], + [ 7.6801814, 46.2178333 ], + [ 7.680075, 46.2179456 ], + [ 7.6799687, 46.2180749 ], + [ 7.6798462, 46.2182154 ], + [ 7.6797889999999995, 46.2182941 ], + [ 7.6797967, 46.2183786 ], + [ 7.6797963, 46.21848 ], + [ 7.6797959, 46.2185589 ], + [ 7.679763, 46.2186376 ], + [ 7.679697, 46.2187276 ], + [ 7.6795671, 46.2188287 ], + [ 7.6794693, 46.2188847 ], + [ 7.6793789, 46.2189577 ], + [ 7.6792077, 46.2190701 ], + [ 7.67911, 46.2191373 ], + [ 7.6789879, 46.2192046 ], + [ 7.6788822, 46.2192945 ], + [ 7.6788243, 46.2193901 ], + [ 7.6787671, 46.2194574 ], + [ 7.678718, 46.2195193 ], + [ 7.6786615, 46.2195586 ], + [ 7.6786043, 46.2196317 ], + [ 7.6785788, 46.2197218 ], + [ 7.6785216, 46.2197948 ], + [ 7.678457, 46.2198341 ], + [ 7.6783186, 46.2198675 ], + [ 7.6781884, 46.2199123 ], + [ 7.6780501, 46.2199739 ], + [ 7.6779276, 46.2201088 ], + [ 7.6778126, 46.2202999 ], + [ 7.6777555, 46.22039 ], + [ 7.677617, 46.2203953 ], + [ 7.6775278, 46.2203725 ], + [ 7.6773501, 46.2203101 ], + [ 7.6772922999999995, 46.2204226 ], + [ 7.6771875, 46.2203548 ], + [ 7.6770734, 46.2203769 ], + [ 7.6768871, 46.2203766 ], + [ 7.6765703, 46.2203533 ], + [ 7.6762536, 46.2203694 ], + [ 7.6763264, 46.220516 ], + [ 7.6764393, 46.2205951 ], + [ 7.6765928, 46.2206969 ], + [ 7.676414, 46.2207414 ], + [ 7.6763329, 46.2207131 ], + [ 7.6762112, 46.2206621 ], + [ 7.6761064, 46.2206055 ], + [ 7.6759847, 46.2205658 ], + [ 7.6758795, 46.2205825 ], + [ 7.6758462, 46.2207401 ], + [ 7.6756996, 46.2207454 ], + [ 7.6755700000000004, 46.2207563 ], + [ 7.6754235, 46.2207672 ], + [ 7.6753096, 46.2208458 ], + [ 7.6752525, 46.2209358 ], + [ 7.6751547, 46.2209806 ], + [ 7.6750406, 46.2210141 ], + [ 7.6749185, 46.22107 ], + [ 7.674764, 46.2211204 ], + [ 7.6745366, 46.2211705 ], + [ 7.6744064, 46.2212097 ], + [ 7.6742761999999995, 46.2212599 ], + [ 7.6741136999999995, 46.2213497 ], + [ 7.6738693, 46.2213998 ], + [ 7.6737391, 46.2214446 ], + [ 7.6736172, 46.2215343 ], + [ 7.673487, 46.221596 ], + [ 7.6733244, 46.2216294 ], + [ 7.6731454, 46.2216515 ], + [ 7.6729996, 46.2216455 ], + [ 7.6728289, 46.221690100000004 ], + [ 7.6727723, 46.2217069 ], + [ 7.6726415, 46.2218135 ], + [ 7.6724622, 46.2219314 ], + [ 7.6723402, 46.2220099 ], + [ 7.6722992, 46.222083 ], + [ 7.6722663, 46.2221562 ], + [ 7.672224, 46.2223081 ], + [ 7.6721582999999995, 46.2224656 ], + [ 7.6720600999999995, 46.2226063 ], + [ 7.6719213, 46.2227411 ], + [ 7.6717831, 46.2228082 ], + [ 7.6716279, 46.2228868 ], + [ 7.6714248, 46.2229482 ], + [ 7.6713596, 46.2230325 ], + [ 7.6713105, 46.2231056 ], + [ 7.6712769, 46.2232125 ], + [ 7.6712192, 46.2233476 ], + [ 7.6711702, 46.2234601 ], + [ 7.6710801, 46.2236063 ], + [ 7.6710221, 46.2236851 ], + [ 7.6709326, 46.2237693 ], + [ 7.6708104, 46.2238027 ], + [ 7.6706072, 46.2238361 ], + [ 7.6703885, 46.2238355 ], + [ 7.6701933, 46.2238406 ], + [ 7.6699663000000005, 46.2238062 ], + [ 7.6698535, 46.2237497 ], + [ 7.6697722, 46.2236875 ], + [ 7.6697081, 46.2236535 ], + [ 7.669554, 46.2236137 ], + [ 7.6694487, 46.2236134 ], + [ 7.6692785, 46.2235904 ], + [ 7.6691649, 46.2235676 ], + [ 7.6690757, 46.2235336 ], + [ 7.668954, 46.2234938 ], + [ 7.6688241999999995, 46.2234485 ], + [ 7.6686709, 46.2233975 ], + [ 7.668525, 46.2233745 ], + [ 7.6683946, 46.2233741 ], + [ 7.6682489, 46.2234188 ], + [ 7.6681267, 46.2234411 ], + [ 7.6680046, 46.2234802 ], + [ 7.6679148, 46.2235195 ], + [ 7.667842, 46.2235417 ], + [ 7.6677522, 46.2235641 ], + [ 7.6676145, 46.2235863 ], + [ 7.6675335, 46.223586 ], + [ 7.6674443, 46.2235576 ], + [ 7.6673794, 46.2235236 ], + [ 7.6672827, 46.2234727 ], + [ 7.6671771, 46.2233992 ], + [ 7.6670887, 46.2233595 ], + [ 7.666886, 46.2233252 ], + [ 7.6667152, 46.2233587 ], + [ 7.6665769, 46.2234033 ], + [ 7.6664224, 46.2234593 ], + [ 7.6663245, 46.2234984 ], + [ 7.6661706, 46.2234812 ], + [ 7.6660165, 46.2234412 ], + [ 7.6658787, 46.2234296 ], + [ 7.665716, 46.2234519 ], + [ 7.6655211, 46.2235301 ], + [ 7.6654394, 46.2235581 ], + [ 7.6653584, 46.2235523 ], + [ 7.665261, 46.2235238 ], + [ 7.6651477, 46.2235461 ], + [ 7.664993, 46.2235512 ], + [ 7.6648717, 46.2235848 ], + [ 7.6647413, 46.2235901 ], + [ 7.6645793, 46.2235953 ], + [ 7.6644496, 46.2235668 ], + [ 7.6643197, 46.2235101 ], + [ 7.6642224, 46.2234931 ], + [ 7.6641409, 46.223549 ], + [ 7.6640682, 46.2236052 ], + [ 7.663946, 46.2236443 ], + [ 7.6638238, 46.2236609 ], + [ 7.6636537, 46.2236774 ], + [ 7.6634098999999996, 46.2236824 ], + [ 7.6631911, 46.2236537 ], + [ 7.6629722000000005, 46.2236024 ], + [ 7.6628261, 46.2235457 ], + [ 7.6626815, 46.2234326 ], + [ 7.6626084, 46.223393 ], + [ 7.662535, 46.2234604 ], + [ 7.6624367, 46.2235898 ], + [ 7.6623317, 46.2234655 ], + [ 7.6621308, 46.2232566 ], + [ 7.6620642, 46.223425399999996 ], + [ 7.6619107, 46.2233291 ], + [ 7.6617578, 46.2231712 ], + [ 7.6616146, 46.2228046 ], + [ 7.6613777, 46.222928 ], + [ 7.6614093, 46.2231196 ], + [ 7.6614089, 46.2232153 ], + [ 7.6613996, 46.2233166 ], + [ 7.6613743, 46.2234687 ], + [ 7.6613488, 46.2235925 ], + [ 7.6613316000000005, 46.2237445 ], + [ 7.6612902, 46.223919 ], + [ 7.6612326, 46.2240935 ], + [ 7.6612147, 46.2242737 ], + [ 7.6611403, 46.2244819 ], + [ 7.6611151, 46.2246676 ], + [ 7.6610805, 46.224921 ], + [ 7.6610553, 46.2250956 ], + [ 7.6610049, 46.2252645 ], + [ 7.6609718, 46.2254727 ], + [ 7.6609458, 46.2256529 ], + [ 7.6609031, 46.2259231 ], + [ 7.6608936, 46.226171 ], + [ 7.6608846, 46.2263399 ], + [ 7.660843, 46.2264694 ], + [ 7.6607769999999995, 46.2265873 ], + [ 7.6607118, 46.2266717 ], + [ 7.6606871, 46.2267674 ], + [ 7.6606866, 46.2268463 ], + [ 7.6606860999999995, 46.2269251 ], + [ 7.660685, 46.227049 ], + [ 7.6606838, 46.2271616 ], + [ 7.6606746999999995, 46.2273081 ], + [ 7.6606986, 46.2274264 ], + [ 7.6607301, 46.2275786 ], + [ 7.6607125, 46.2278377 ], + [ 7.6606221, 46.2279106 ], + [ 7.6605573, 46.2279273 ], + [ 7.6604351, 46.2279496 ], + [ 7.6603217, 46.2279662 ], + [ 7.6601267, 46.228022 ], + [ 7.6599965, 46.2280724 ], + [ 7.6598737, 46.2281565 ], + [ 7.6597679, 46.2282351 ], + [ 7.6596621, 46.2283305 ], + [ 7.6595638, 46.2284429 ], + [ 7.6594492, 46.2285609 ], + [ 7.6593753, 46.2287297 ], + [ 7.6593008000000005, 46.2289266 ], + [ 7.6592673, 46.2290618 ], + [ 7.6592257, 46.2291743 ], + [ 7.6591354, 46.2292979 ], + [ 7.6590784, 46.2294217 ], + [ 7.6590045, 46.2295679 ], + [ 7.6589135, 46.2297254 ], + [ 7.6588153, 46.2298717 ], + [ 7.6587007, 46.2299839 ], + [ 7.6585862, 46.2301189 ], + [ 7.6585049, 46.2302368 ], + [ 7.6584226, 46.2303268 ], + [ 7.6582595, 46.2304784 ], + [ 7.6580559, 46.2306074 ], + [ 7.6578509, 46.2308041 ], + [ 7.6576468, 46.2310176 ], + [ 7.6574264, 46.2312254 ], + [ 7.6572382999999995, 46.2313769 ], + [ 7.6571562, 46.2315231 ], + [ 7.6571072000000004, 46.2316301 ], + [ 7.6570737, 46.2317651 ], + [ 7.657024, 46.2319001 ], + [ 7.6569663, 46.2320464 ], + [ 7.6569085, 46.2321815 ], + [ 7.6568583, 46.2323785 ], + [ 7.6568152, 46.2327558 ], + [ 7.6567974, 46.2329585 ], + [ 7.6567883, 46.2331049 ], + [ 7.6567879, 46.2332119 ], + [ 7.6568355, 46.2333697 ], + [ 7.6568594, 46.2334768 ], + [ 7.656915, 46.2335896 ], + [ 7.656922, 46.2337361 ], + [ 7.656913, 46.2338937 ], + [ 7.6568957, 46.2340345 ], + [ 7.6568618, 46.2342766 ], + [ 7.6568452, 46.2343668 ], + [ 7.6568035, 46.2344679 ], + [ 7.6567383, 46.2345917 ], + [ 7.6566641, 46.2346703 ], + [ 7.656623, 46.2347322 ], + [ 7.656566, 46.234856 ], + [ 7.6565081, 46.2349628 ], + [ 7.6564672, 46.2350641 ], + [ 7.6564173, 46.2351597 ], + [ 7.6563438999999995, 46.2352214 ], + [ 7.6562217, 46.2352774 ], + [ 7.6561164999999995, 46.2352997 ], + [ 7.6559782, 46.2353613 ], + [ 7.6558391, 46.2354286 ], + [ 7.6556685, 46.2355126 ], + [ 7.6555538, 46.2355967 ], + [ 7.6554075, 46.2356921 ], + [ 7.6553333, 46.2357877 ], + [ 7.6552924, 46.2358946 ], + [ 7.6552752, 46.2360353 ], + [ 7.6552829, 46.2361367 ], + [ 7.6553223, 46.2362719 ], + [ 7.6553462, 46.2363623 ], + [ 7.6554024, 46.2364468 ], + [ 7.6554417, 46.2365596 ], + [ 7.6554656, 46.2366554 ], + [ 7.6554488, 46.2367116 ], + [ 7.6554078, 46.236796 ], + [ 7.6553505, 46.2368466 ], + [ 7.6552852, 46.2369309 ], + [ 7.655236, 46.236987 ], + [ 7.6552194, 46.2370884 ], + [ 7.655219, 46.2371785 ], + [ 7.655226, 46.2373193 ], + [ 7.6552655, 46.2374659 ], + [ 7.6552481, 46.2375841 ], + [ 7.6552228, 46.2377305 ], + [ 7.6551812, 46.2378599 ], + [ 7.6551314999999995, 46.2380006 ], + [ 7.6550739, 46.2381863 ], + [ 7.6549838, 46.2383495 ], + [ 7.6548362, 46.238518 ], + [ 7.6546569, 46.2386583 ], + [ 7.6545097, 46.238748 ], + [ 7.6543708, 46.2388491 ], + [ 7.6541192, 46.2389385 ], + [ 7.6536878999999995, 46.2390894 ], + [ 7.6538245, 46.239208 ], + [ 7.6539618, 46.2393042 ], + [ 7.6540674, 46.2393776 ], + [ 7.6542614, 46.2394571 ], + [ 7.6545122, 46.2395761 ], + [ 7.6547551, 46.239723 ], + [ 7.6549816, 46.2398363 ], + [ 7.6551594, 46.2399213 ], + [ 7.6553374, 46.2400513 ], + [ 7.6554908, 46.2401362 ], + [ 7.655612, 46.2402379 ], + [ 7.6556926, 46.2403226 ], + [ 7.6557562, 46.240441 ], + [ 7.6558532, 46.2405709 ], + [ 7.6558845, 46.2407061 ], + [ 7.6559329, 46.2408413 ], + [ 7.6559642, 46.240971 ], + [ 7.6559712, 46.2410949 ], + [ 7.6559708, 46.2412076 ], + [ 7.6559535, 46.2413371 ], + [ 7.6559281, 46.2414778 ], + [ 7.6559028, 46.2416186 ], + [ 7.6558606000000005, 46.2418212 ], + [ 7.6558672, 46.2420465 ], + [ 7.6559154, 46.2421536 ], + [ 7.6559306, 46.2422888 ], + [ 7.6559787, 46.2423791 ], + [ 7.6560431, 46.242475 ], + [ 7.6560752, 46.2425877 ], + [ 7.656147, 46.2427119 ], + [ 7.6562035, 46.2428416 ], + [ 7.6562835, 46.2429882 ], + [ 7.6563716, 46.2431517 ], + [ 7.6565483, 46.2433662 ], + [ 7.6566852, 46.2435356 ], + [ 7.6567989, 46.2436034 ], + [ 7.6569037, 46.2436601 ], + [ 7.6571308, 46.2437226 ], + [ 7.6573417, 46.2437739 ], + [ 7.6573822, 46.2437795 ], + [ 7.6575607, 46.2438251 ], + [ 7.6577629, 46.243927 ], + [ 7.657997, 46.2440966 ], + [ 7.6581344, 46.2442095 ], + [ 7.6583765, 46.2443566 ], + [ 7.6585708, 46.2445093 ], + [ 7.6587562, 46.2446618 ], + [ 7.6589016999999995, 46.2447917 ], + [ 7.659031, 46.2448935 ], + [ 7.6591596, 46.2450233 ], + [ 7.6592647, 46.2451588 ], + [ 7.6593851, 46.2452717 ], + [ 7.6596036, 46.2454075 ], + [ 7.659806, 46.2455544 ], + [ 7.6600638, 46.2457634 ], + [ 7.6604116, 46.2460065 ], + [ 7.6606457, 46.2461705 ], + [ 7.6608887, 46.2463457 ], + [ 7.6611958, 46.2465211 ], + [ 7.6614387, 46.2466625 ], + [ 7.6617699, 46.2468155 ], + [ 7.6621182, 46.2469515 ], + [ 7.6624177, 46.2470762 ], + [ 7.6627659, 46.2472066 ], + [ 7.6630737, 46.2473538 ], + [ 7.6633414, 46.2474109 ], + [ 7.6635605, 46.2474847 ], + [ 7.6638033, 46.247597999999996 ], + [ 7.6641022, 46.2477621 ], + [ 7.6644425, 46.2479262 ], + [ 7.6647657, 46.2480848 ], + [ 7.6650649, 46.2483107 ], + [ 7.6651854, 46.2484576 ], + [ 7.6652249999999995, 46.2486097 ], + [ 7.6651917, 46.2487899 ], + [ 7.6651501, 46.2489362 ], + [ 7.6650922999999995, 46.24906 ], + [ 7.6649861, 46.2492344 ], + [ 7.6648546, 46.2493973 ], + [ 7.6646829, 46.2496052 ], + [ 7.6645514, 46.2497683 ], + [ 7.6644047, 46.2499425 ], + [ 7.6642733, 46.250128 ], + [ 7.6641501, 46.2503079 ], + [ 7.6639869, 46.2504314 ], + [ 7.6637826, 46.2506168 ], + [ 7.6635454, 46.2508809 ], + [ 7.6633493, 46.2510775 ], + [ 7.6632093999999995, 46.2513531 ], + [ 7.6631348, 46.2515501 ], + [ 7.6631572, 46.2518599 ], + [ 7.6631158, 46.2520457 ], + [ 7.6633422, 46.2521137 ], + [ 7.6635851, 46.2522327 ], + [ 7.6637225, 46.2523401 ], + [ 7.6638599, 46.2524474 ], + [ 7.6639817, 46.2525154 ], + [ 7.6643787, 46.2526572 ], + [ 7.6644991000000005, 46.2527814 ], + [ 7.6646286, 46.2529282 ], + [ 7.6647166, 46.2530411 ], + [ 7.664919, 46.2531711 ], + [ 7.6651206, 46.2533181 ], + [ 7.6653064, 46.2535608 ], + [ 7.6657658, 46.254097 ], + [ 7.6660875, 46.2544808 ], + [ 7.6662584, 46.2544361 ], + [ 7.6664213, 46.254431 ], + [ 7.6666239, 46.2544371 ], + [ 7.6667531, 46.2545049 ], + [ 7.6668338, 46.2546178 ], + [ 7.6668576, 46.2547024 ], + [ 7.666906, 46.2548207 ], + [ 7.666946, 46.2548941 ], + [ 7.6670259, 46.2550126 ], + [ 7.6672115, 46.2552046 ], + [ 7.6674133, 46.255391 ], + [ 7.6676639, 46.2556224 ], + [ 7.6680024, 46.2559219 ], + [ 7.6685117, 46.2563737 ], + [ 7.6685674, 46.2565089 ], + [ 7.6686075, 46.2565992 ], + [ 7.6686146, 46.2567513 ], + [ 7.6686129, 46.256926 ], + [ 7.6685963, 46.2570273 ], + [ 7.6685636, 46.2571342 ], + [ 7.6685137999999995, 46.2572523 ], + [ 7.668456, 46.257393 ], + [ 7.6683738, 46.2574998 ], + [ 7.6682762, 46.2576122 ], + [ 7.6681777, 46.2577078 ], + [ 7.6680301, 46.2578876 ], + [ 7.6678421, 46.2580842 ], + [ 7.6677026999999995, 46.2582698 ], + [ 7.6676295, 46.258399 ], + [ 7.6675386, 46.2585848 ], + [ 7.6674891, 46.2587479 ], + [ 7.6674874, 46.2589283 ], + [ 7.6674865, 46.2590971 ], + [ 7.6674775, 46.2592774 ], + [ 7.667484, 46.2594632 ], + [ 7.6675316, 46.2595928 ], + [ 7.6675955, 46.2597677 ], + [ 7.6676021, 46.2599817 ], + [ 7.6676009, 46.2602746 ], + [ 7.6675491000000005, 46.2606856 ], + [ 7.667799, 46.2609228 ], + [ 7.6679047, 46.261002 ], + [ 7.6680984, 46.2611882 ], + [ 7.6682595, 46.2613182 ], + [ 7.668445, 46.261482 ], + [ 7.6685664, 46.2616344 ], + [ 7.6687188, 46.2618263 ], + [ 7.6689689, 46.2621142 ], + [ 7.669267, 46.2624416 ], + [ 7.6696059, 46.2628479 ], + [ 7.6696779, 46.2630002 ], + [ 7.6697342, 46.2630792 ], + [ 7.6698796, 46.2631528 ], + [ 7.6699934, 46.2632151 ], + [ 7.6701551, 46.2633055 ], + [ 7.6703649, 46.2634582 ], + [ 7.6704536, 46.2635485 ], + [ 7.6706562, 46.2637236 ], + [ 7.6709546, 46.2639328 ], + [ 7.6711977000000005, 46.2641023 ], + [ 7.6714562, 46.2642494 ], + [ 7.6717241, 46.2643515 ], + [ 7.6719992999999995, 46.2644422 ], + [ 7.6722672, 46.2645274 ], + [ 7.6726079, 46.2645846 ], + [ 7.6728108, 46.2646189 ], + [ 7.6731353, 46.2646817 ], + [ 7.6734678, 46.264705 ], + [ 7.6740832999999995, 46.2649375 ], + [ 7.6743106, 46.265011200000004 ], + [ 7.6744643, 46.2651356 ], + [ 7.6746018, 46.2652316 ], + [ 7.6747548, 46.2653728 ], + [ 7.6749892, 46.265593 ], + [ 7.6751018, 46.2657566 ], + [ 7.6752218, 46.2659541 ], + [ 7.6752857, 46.2661063 ], + [ 7.6753503, 46.2662359 ], + [ 7.6755115, 46.2663884 ], + [ 7.6756652, 46.2664847 ], + [ 7.6758995, 46.2666766 ], + [ 7.6761338, 46.2668575 ], + [ 7.6763119, 46.2669931 ], + [ 7.6764657, 46.2671174 ], + [ 7.6766675, 46.2672868 ], + [ 7.6767725, 46.267394 ], + [ 7.6769744, 46.2675805 ], + [ 7.6772406, 46.2678177 ], + [ 7.6775638, 46.2681226 ], + [ 7.6779187, 46.2684446 ], + [ 7.6782339, 46.2687776 ], + [ 7.678484, 46.2690542 ], + [ 7.6787738, 46.2693309 ], + [ 7.6787486, 46.2694941 ], + [ 7.6788709, 46.2694494 ], + [ 7.6789931, 46.2694046 ], + [ 7.6791634, 46.2694163 ], + [ 7.679375, 46.2694112 ], + [ 7.679602, 46.2694117 ], + [ 7.679822, 46.2692996 ], + [ 7.6797959, 46.2696319 ], + [ 7.6799509, 46.2694802 ], + [ 7.6801623, 46.2694411 ], + [ 7.6805278, 46.2694083 ], + [ 7.6804216, 46.2695883 ], + [ 7.6805594, 46.2695774 ], + [ 7.6808277, 46.2695611 ], + [ 7.6810391, 46.2695221 ], + [ 7.6812262, 46.269472 ], + [ 7.6814624, 46.2693599 ], + [ 7.6816987999999995, 46.2692871 ], + [ 7.6819831, 46.2692203 ], + [ 7.6821627, 46.2691418 ], + [ 7.6823497, 46.2690747 ], + [ 7.682546, 46.2689231 ], + [ 7.6827249, 46.2688504 ], + [ 7.6829774, 46.2687553 ], + [ 7.6834579, 46.2685254 ], + [ 7.6841087, 46.2683018 ], + [ 7.6842154, 46.2682287 ], + [ 7.6843049, 46.2681163 ], + [ 7.6843620999999995, 46.2680376 ], + [ 7.6844443, 46.2679195 ], + [ 7.684559, 46.2678297 ], + [ 7.6847378, 46.2677512 ], + [ 7.6848605, 46.2676277 ], + [ 7.6849913, 46.2675097 ], + [ 7.685163, 46.2673017 ], + [ 7.6852531, 46.2671386 ], + [ 7.6853267, 46.2670937 ], + [ 7.685474, 46.2670403 ], + [ 7.6854812, 46.2670377 ], + [ 7.6856446, 46.266948 ], + [ 7.6857261, 46.2668581 ], + [ 7.6857752, 46.2667793 ], + [ 7.6858086, 46.2666329 ], + [ 7.6858583, 46.2665148 ], + [ 7.6859487, 46.2664249 ], + [ 7.6860868, 46.2663183 ], + [ 7.6862993, 46.2661667 ], + [ 7.6864873, 46.2659643 ], + [ 7.6866673, 46.2657845 ], + [ 7.6867654, 46.2656101 ], + [ 7.6869209, 46.2654077 ], + [ 7.6870604, 46.2652391 ], + [ 7.6871587, 46.2650985 ], + [ 7.6871678, 46.2649747 ], + [ 7.6870788999999995, 46.2648505 ], + [ 7.686942, 46.2646981 ], + [ 7.6874206, 46.2647556 ], + [ 7.6877040999999995, 46.2648858 ], + [ 7.6879387999999995, 46.2649765 ], + [ 7.6881006, 46.2650782 ], + [ 7.6882306, 46.2651517 ], + [ 7.6883598, 46.265214 ], + [ 7.6885628, 46.265282 ], + [ 7.6889598, 46.2653956 ], + [ 7.6892513000000005, 46.265509 ], + [ 7.6898194, 46.2656342 ], + [ 7.690403, 46.2657933 ], + [ 7.6909303, 46.2658733 ], + [ 7.6915227, 46.2660043 ], + [ 7.6920251, 46.2661292 ], + [ 7.6925282, 46.2662093 ], + [ 7.6927236, 46.2662154 ], + [ 7.6929511999999995, 46.2661878 ], + [ 7.6931619, 46.2661713 ], + [ 7.693414, 46.2661607 ], + [ 7.6935926, 46.2662005 ], + [ 7.6937712, 46.2662517 ], + [ 7.6939572, 46.2663422 ], + [ 7.6941109, 46.2664439 ], + [ 7.6942802, 46.2665851 ], + [ 7.6944015, 46.2666811 ], + [ 7.6945147, 46.2667997 ], + [ 7.6946767, 46.2669465 ], + [ 7.694846, 46.2670877 ], + [ 7.6950404, 46.2672233 ], + [ 7.6951779, 46.2673307 ], + [ 7.6954047, 46.2674438 ], + [ 7.6955501, 46.2675117 ], + [ 7.6956793, 46.2675739 ], + [ 7.6958176, 46.2676644 ], + [ 7.6959062, 46.2677322 ], + [ 7.6960193, 46.267817 ], + [ 7.6961568, 46.2679073 ], + [ 7.6963266, 46.2679979 ], + [ 7.6964405, 46.2680601 ], + [ 7.6966183, 46.2681168 ], + [ 7.6967731, 46.2681172 ], + [ 7.6968868, 46.2681456 ], + [ 7.6970896, 46.2681855 ], + [ 7.6972838, 46.2682704 ], + [ 7.6975915, 46.2683668 ], + [ 7.6979319, 46.2685027 ], + [ 7.6981991, 46.268616 ], + [ 7.6984502, 46.2687236 ], + [ 7.6987419, 46.2688707 ], + [ 7.6990018, 46.2689614 ], + [ 7.6992609, 46.2690577 ], + [ 7.6995042, 46.2690808 ], + [ 7.6997477, 46.2691432 ], + [ 7.7001377, 46.2691442 ], + [ 7.7004215, 46.2691505 ], + [ 7.7006574, 46.2691565 ], + [ 7.7008521, 46.2691795 ], + [ 7.7010306, 46.2692138 ], + [ 7.7011605, 46.2692535 ], + [ 7.7014034, 46.2693555 ], + [ 7.7016056, 46.2694178 ], + [ 7.7017679999999995, 46.2694633 ], + [ 7.7020034, 46.2695201 ], + [ 7.7026288, 46.2695835 ], + [ 7.7026776, 46.2694653 ], + [ 7.7027356000000005, 46.2693753 ], + [ 7.7028008, 46.269291 ], + [ 7.7029068, 46.2692461 ], + [ 7.7030283, 46.2692183 ], + [ 7.703143, 46.2691284 ], + [ 7.7032656, 46.2689935 ], + [ 7.7034286, 46.2688474 ], + [ 7.7035844, 46.2686957 ], + [ 7.7037634, 46.2685102 ], + [ 7.7039192, 46.268364 ], + [ 7.7041959, 46.2682576 ], + [ 7.7044565, 46.2681625 ], + [ 7.7046516, 46.2680897 ], + [ 7.7048958, 46.2679776 ], + [ 7.7051482, 46.2678599 ], + [ 7.7054093, 46.2676972 ], + [ 7.7056379, 46.2675344 ], + [ 7.7058257999999995, 46.267332 ], + [ 7.7059241, 46.2672026 ], + [ 7.7059818, 46.2670732 ], + [ 7.7059745, 46.2669042 ], + [ 7.705959, 46.2667183 ], + [ 7.7059926, 46.2666114 ], + [ 7.7060902, 46.2665159 ], + [ 7.7062697, 46.2664261 ], + [ 7.7064248, 46.2663195 ], + [ 7.7065307, 46.2662465 ], + [ 7.7066202, 46.2661509 ], + [ 7.7066780999999995, 46.2660496 ], + [ 7.7067602, 46.2659316 ], + [ 7.7069221, 46.2658925 ], + [ 7.7070367, 46.2657858 ], + [ 7.7071108, 46.2656901 ], + [ 7.7072576999999995, 46.265544 ], + [ 7.7075099, 46.265398 ], + [ 7.7077542, 46.2652972 ], + [ 7.7079412, 46.2652471 ], + [ 7.7081366, 46.2652417 ], + [ 7.7082912, 46.2652027 ], + [ 7.7083727, 46.2651297 ], + [ 7.7084543, 46.2650622 ], + [ 7.7084789, 46.2649553 ], + [ 7.7085203, 46.2648145 ], + [ 7.7085456, 46.2646795 ], + [ 7.7085875999999995, 46.2644936 ], + [ 7.7086533, 46.2643305 ], + [ 7.7087356, 46.2642461 ], + [ 7.7088251, 46.2641675 ], + [ 7.7089634, 46.2640889 ], + [ 7.7090936, 46.2640217 ], + [ 7.7092482, 46.2639769 ], + [ 7.7094190000000005, 46.2639379 ], + [ 7.709525, 46.2638931 ], + [ 7.7096308, 46.2638144 ], + [ 7.7097049, 46.2637244 ], + [ 7.7097945, 46.2636459 ], + [ 7.7098516, 46.2635615 ], + [ 7.7098755, 46.2636234 ], + [ 7.7098914, 46.2637192 ], + [ 7.7098586000000005, 46.263815 ], + [ 7.7097771, 46.2638823 ], + [ 7.7096792, 46.2639385 ], + [ 7.7096221, 46.2640227 ], + [ 7.709646, 46.2640961 ], + [ 7.7097102, 46.2641243 ], + [ 7.7096208, 46.2642481 ], + [ 7.709118, 46.2655087 ], + [ 7.7091908, 46.2654862 ], + [ 7.7092968, 46.2654358 ], + [ 7.7093708, 46.2653232 ], + [ 7.7094766, 46.2652391 ], + [ 7.7096146999999995, 46.2651493 ], + [ 7.7098025, 46.2650934 ], + [ 7.7099813, 46.2650204 ], + [ 7.7101278, 46.2649702 ], + [ 7.7101856, 46.2648633 ], + [ 7.7102919, 46.264717 ], + [ 7.7103813, 46.2646046 ], + [ 7.7105205, 46.2645486 ], + [ 7.7106586, 46.2644475 ], + [ 7.710798, 46.2642788 ], + [ 7.7109118, 46.2641833 ], + [ 7.7110908, 46.2641555 ], + [ 7.7112694, 46.2641954 ], + [ 7.7114317, 46.2642408 ], + [ 7.7115043, 46.264331 ], + [ 7.711519, 46.2645113 ], + [ 7.711527, 46.2646409 ], + [ 7.7115826, 46.2647536 ], + [ 7.7114285, 46.2647251 ], + [ 7.7114606, 46.2648322 ], + [ 7.7114109, 46.2649448 ], + [ 7.7112962, 46.2651811 ], + [ 7.7111899, 46.2653216 ], + [ 7.7110997, 46.2654341 ], + [ 7.7109771, 46.2655747 ], + [ 7.7108864, 46.2657547 ], + [ 7.7107966, 46.265946 ], + [ 7.7107222, 46.2661429 ], + [ 7.7107868, 46.2662501 ], + [ 7.7109161, 46.2663348 ], + [ 7.7110773, 46.2664705 ], + [ 7.7111986, 46.2665889 ], + [ 7.7111333, 46.2666451 ], + [ 7.7110356, 46.2667406 ], + [ 7.7108966, 46.2668305 ], + [ 7.7107179, 46.266909 ], + [ 7.7105871, 46.2670269 ], + [ 7.7105694, 46.2672128 ], + [ 7.7105523, 46.2673648 ], + [ 7.7105839, 46.267517 ], + [ 7.7106318, 46.267686 ], + [ 7.7106635, 46.2678663 ], + [ 7.7105977, 46.2680183 ], + [ 7.7105968, 46.2681591 ], + [ 7.7106202, 46.2682943 ], + [ 7.7105062, 46.2683617 ], + [ 7.7104004, 46.2684347 ], + [ 7.7102938, 46.268519 ], + [ 7.7102368, 46.2686258 ], + [ 7.7102682, 46.2687554 ], + [ 7.7102916, 46.2688907 ], + [ 7.7103238, 46.2690202 ], + [ 7.7103142, 46.2692117 ], + [ 7.7102891, 46.269375 ], + [ 7.7102639, 46.2695158 ], + [ 7.710125, 46.2696394 ], + [ 7.710116, 46.2697688 ], + [ 7.7101474, 46.2698986 ], + [ 7.7102035, 46.2700845 ], + [ 7.71026, 46.2702029 ], + [ 7.710292, 46.2702818 ], + [ 7.7102667, 46.2704113 ], + [ 7.7102014, 46.27049 ], + [ 7.7101516, 46.2705801 ], + [ 7.7099971, 46.2706586 ], + [ 7.7098669, 46.2707146 ], + [ 7.709874, 46.2708328 ], + [ 7.7098333, 46.270968 ], + [ 7.7096126, 46.2710969 ], + [ 7.7094009, 46.2712486 ], + [ 7.7091643, 46.2714453 ], + [ 7.7087649, 46.2716584 ], + [ 7.7087553, 46.2718498 ], + [ 7.7087623, 46.2721202 ], + [ 7.7087771, 46.2723174 ], + [ 7.7087276, 46.272475 ], + [ 7.70871, 46.2727003 ], + [ 7.708693, 46.2728636 ], + [ 7.7086349, 46.2730831 ], + [ 7.7085853, 46.2732294 ], + [ 7.7085270999999995, 46.2734264 ], + [ 7.7085014, 46.2736292 ], + [ 7.7085401000000005, 46.2739165 ], + [ 7.708572, 46.2741306 ], + [ 7.7086516, 46.2743223 ], + [ 7.7087886, 46.2744803 ], + [ 7.7091206, 46.2747401 ], + [ 7.7092575, 46.2748756 ], + [ 7.7093383, 46.2749771 ], + [ 7.7093461, 46.2750841 ], + [ 7.7093126, 46.2751854 ], + [ 7.7091981, 46.2753148 ], + [ 7.7091165, 46.2753822 ], + [ 7.7090108, 46.2754777 ], + [ 7.7088557, 46.2755956 ], + [ 7.7087978, 46.2757025 ], + [ 7.7087489, 46.2758039 ], + [ 7.7086181, 46.2759162 ], + [ 7.7085197, 46.2760174 ], + [ 7.7083649, 46.2761973 ], + [ 7.7083067, 46.2764112 ], + [ 7.7082976, 46.276535 ], + [ 7.7083539, 46.2766084 ], + [ 7.7084186, 46.2767268 ], + [ 7.7085144, 46.2769297 ], + [ 7.7086116, 46.2770708 ], + [ 7.708716, 46.2771837 ], + [ 7.7088616, 46.2772967 ], + [ 7.7089747, 46.2773701 ], + [ 7.7089905, 46.2774546 ], + [ 7.7089739999999995, 46.2775504 ], + [ 7.7089567, 46.2776573 ], + [ 7.7089079, 46.277798 ], + [ 7.7088576, 46.2779443 ], + [ 7.7088902, 46.2779951 ], + [ 7.7089715, 46.2780347 ], + [ 7.7091087, 46.2780688 ], + [ 7.709336, 46.27812 ], + [ 7.7096114, 46.2782219 ], + [ 7.7097084, 46.2783348 ], + [ 7.7097162, 46.2784194 ], + [ 7.7095773, 46.278543 ], + [ 7.7095763999999996, 46.2786837 ], + [ 7.7096079, 46.2788359 ], + [ 7.7095908, 46.278971 ], + [ 7.7094354, 46.2791905 ], + [ 7.709296, 46.2793703 ], + [ 7.7092304, 46.2795448 ], + [ 7.7091728, 46.2797136 ], + [ 7.7091793, 46.279877 ], + [ 7.709219, 46.2800348 ], + [ 7.7092751, 46.280232 ], + [ 7.7094514, 46.2806267 ], + [ 7.709581, 46.2807678 ], + [ 7.7097343, 46.2809314 ], + [ 7.7098956, 46.2810781 ], + [ 7.7100819, 46.2811969 ], + [ 7.7102843, 46.2812987 ], + [ 7.7104792, 46.2813555 ], + [ 7.7107059, 46.2814573 ], + [ 7.7108922, 46.2815649 ], + [ 7.7109648, 46.2816663 ], + [ 7.7109718, 46.2817733 ], + [ 7.7109872, 46.2819311 ], + [ 7.7110519, 46.2820439 ], + [ 7.7111567, 46.2821005 ], + [ 7.7113998, 46.2822136 ], + [ 7.7116592, 46.2823718 ], + [ 7.7118458, 46.2823891 ], + [ 7.712122, 46.2824742 ], + [ 7.7122108, 46.2825645 ], + [ 7.7122421, 46.282666 ], + [ 7.712323, 46.2827845 ], + [ 7.7125093, 46.2829087 ], + [ 7.7129066, 46.2830505 ], + [ 7.7132306, 46.2831469 ], + [ 7.7134093, 46.2832091 ], + [ 7.7135549, 46.283294 ], + [ 7.7137005, 46.2833787 ], + [ 7.7138298, 46.2834579 ], + [ 7.713943, 46.2835483 ], + [ 7.7141699, 46.2836783 ], + [ 7.7143804, 46.2837745 ], + [ 7.7146486, 46.2838877 ], + [ 7.7148591, 46.2839727 ], + [ 7.7149884, 46.2840462 ], + [ 7.7151421, 46.2841309 ], + [ 7.715337, 46.2841821 ], + [ 7.7156372, 46.2842277 ], + [ 7.7160193, 46.2842511 ], + [ 7.7164494999999995, 46.2843195 ], + [ 7.7165796, 46.2842298 ], + [ 7.7166694, 46.2841849 ], + [ 7.716751, 46.2841343 ], + [ 7.7169056, 46.284084 ], + [ 7.7170841, 46.2840845 ], + [ 7.717328, 46.2840567 ], + [ 7.7175152, 46.2840232 ], + [ 7.7176781, 46.2840124 ], + [ 7.7178571, 46.2839733 ], + [ 7.7180604, 46.2839175 ], + [ 7.7182474, 46.2838502 ], + [ 7.7184102, 46.2838168 ], + [ 7.7185163, 46.2837888 ], + [ 7.7186462, 46.2838117 ], + [ 7.7188326, 46.2838063 ], + [ 7.7189549, 46.2837728 ], + [ 7.7191171, 46.2837676 ], + [ 7.7192875, 46.2837905 ], + [ 7.7195153, 46.2837797 ], + [ 7.7198323, 46.283769 ], + [ 7.7200033, 46.2837525 ], + [ 7.720133, 46.2837359 ], + [ 7.7202876, 46.2836799 ], + [ 7.7204754, 46.2836071 ], + [ 7.7207597, 46.2835401 ], + [ 7.7208737, 46.283484 ], + [ 7.7209389999999996, 46.2834109 ], + [ 7.721005, 46.2833096 ], + [ 7.721087, 46.283169 ], + [ 7.7212008, 46.2830679 ], + [ 7.7212906, 46.2830173 ], + [ 7.7214943, 46.2829051 ], + [ 7.7216982, 46.2828041 ], + [ 7.7218937, 46.2826581 ], + [ 7.7222861, 46.2823378 ], + [ 7.7226852, 46.2820458 ], + [ 7.7232163, 46.2815682 ], + [ 7.7233382, 46.2814782 ], + [ 7.7233715, 46.2813319 ], + [ 7.7234624, 46.2811744 ], + [ 7.7235444, 46.2810506 ], + [ 7.7236501, 46.2809551 ], + [ 7.7238215, 46.280848399999996 ], + [ 7.7240491, 46.2808038 ], + [ 7.7242687, 46.2807705 ], + [ 7.7244309, 46.2807652 ], + [ 7.7246506, 46.2807544 ], + [ 7.7248783, 46.2807323 ], + [ 7.7251545, 46.2806709 ], + [ 7.7252924, 46.2806881 ], + [ 7.7254548, 46.2807334 ], + [ 7.7256097, 46.2807281 ], + [ 7.7257069, 46.2807001 ], + [ 7.7258371, 46.2806384 ], + [ 7.7259348, 46.2805654 ], + [ 7.7260088, 46.2804417 ], + [ 7.7260988, 46.2802898 ], + [ 7.7261646, 46.2801603 ], + [ 7.7263364, 46.2799861 ], + [ 7.7264832, 46.2798399 ], + [ 7.7266058, 46.2797107 ], + [ 7.7267697, 46.2795757 ], + [ 7.7269981, 46.2793791 ], + [ 7.7272675, 46.2791037 ], + [ 7.7274636999999995, 46.2789351 ], + [ 7.7276673, 46.2788116 ], + [ 7.7278222, 46.2786598 ], + [ 7.7279691, 46.2785249 ], + [ 7.7281651, 46.2783338 ], + [ 7.7284356, 46.277957 ], + [ 7.7285089, 46.2778613 ], + [ 7.7286314, 46.2777265 ], + [ 7.7287621, 46.2776084 ], + [ 7.7288198999999995, 46.2774903 ], + [ 7.7289019, 46.277355299999996 ], + [ 7.7290005, 46.277158299999996 ], + [ 7.7290824, 46.2770007 ], + [ 7.7292461, 46.2768209 ], + [ 7.7293929, 46.2766916 ], + [ 7.7294669, 46.2765678 ], + [ 7.7295488, 46.2764272 ], + [ 7.7296145, 46.2762752 ], + [ 7.7297208, 46.2761347 ], + [ 7.7298434, 46.276011 ], + [ 7.7299741, 46.2758873 ], + [ 7.7301373, 46.2757862 ], + [ 7.7303492, 46.275674 ], + [ 7.730561, 46.2755618 ], + [ 7.730732, 46.2754044 ], + [ 7.7308795, 46.2752357 ], + [ 7.7310101, 46.2750895 ], + [ 7.7311407, 46.274949 ], + [ 7.7312388, 46.2747915 ], + [ 7.7313375, 46.2746114 ], + [ 7.7313957, 46.2744257 ], + [ 7.7314943, 46.2742005 ], + [ 7.7315842, 46.2740374 ], + [ 7.7317234, 46.2738349 ], + [ 7.7320751, 46.2733512 ], + [ 7.7322063, 46.2731825 ], + [ 7.732321, 46.273087 ], + [ 7.7323622, 46.2730607 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "JBG0035", + "country" : "CHE", + "name" : [ + { + "text" : "Eidgenössisches Jagdbanngebiet Turtmanntal", + "lang" : "de-CH" + }, + { + "text" : "District franc fédéral Turtmanntal", + "lang" : "fr-CH" + }, + { + "text" : "Bandita federale di caccia Turtmanntal", + "lang" : "it-CH" + }, + { + "text" : "Federal Game Reserve Turtmanntal", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6881736, 47.37278 ], + [ 7.6876882, 47.3727995 ], + [ 7.6876787, 47.372932 ], + [ 7.6879424, 47.3729792 ], + [ 7.6885319, 47.3730458 ], + [ 7.6892648999999995, 47.3731292 ], + [ 7.6897432, 47.3731896 ], + [ 7.6904739, 47.3732786 ], + [ 7.6910668, 47.3733453 ], + [ 7.6917339, 47.3734028 ], + [ 7.6923816, 47.3734549 ], + [ 7.6926609, 47.3734846 ], + [ 7.6931728, 47.3735249 ], + [ 7.693511, 47.3735665 ], + [ 7.6937137, 47.3735927 ], + [ 7.6939159, 47.3736407 ], + [ 7.6940847, 47.3737042 ], + [ 7.694279, 47.3737962 ], + [ 7.6944508, 47.3738963 ], + [ 7.6946598, 47.3740232 ], + [ 7.6948699, 47.3741411 ], + [ 7.6950078, 47.3741781 ], + [ 7.6950538, 47.374222 ], + [ 7.6950927, 47.3742468 ], + [ 7.6951326, 47.3742709 ], + [ 7.6951736, 47.3742942 ], + [ 7.6954358, 47.3743866 ], + [ 7.6956672, 47.3744746 ], + [ 7.6959057, 47.3745595 ], + [ 7.6961218, 47.3746353 ], + [ 7.6963650999999995, 47.3747205 ], + [ 7.6966019, 47.3747894 ], + [ 7.6968063, 47.3748328 ], + [ 7.6970713, 47.3748379 ], + [ 7.6972816, 47.3748406 ], + [ 7.6974002, 47.3748329 ], + [ 7.6974432, 47.3748333 ], + [ 7.6975238, 47.3748344 ], + [ 7.6974737, 47.3750343 ], + [ 7.6974349, 47.3751892 ], + [ 7.6973755, 47.3754703 ], + [ 7.6973115, 47.3757141 ], + [ 7.6972532000000005, 47.3760332 ], + [ 7.6972218, 47.3762056 ], + [ 7.6972021, 47.3765254 ], + [ 7.6972213, 47.376745 ], + [ 7.6972695, 47.3769917 ], + [ 7.6973281, 47.3771716 ], + [ 7.6974364, 47.3773907 ], + [ 7.697562, 47.3776039 ], + [ 7.6976765, 47.3778122 ], + [ 7.6977381, 47.3779798 ], + [ 7.6978043, 47.3782317 ], + [ 7.6978054, 47.3782373 ], + [ 7.6978071, 47.3782461 ], + [ 7.6978471, 47.3784513 ], + [ 7.6978997, 47.3787688 ], + [ 7.697918, 47.3790949 ], + [ 7.6979028, 47.3793532 ], + [ 7.6978813, 47.3795452 ], + [ 7.6978645, 47.3797542 ], + [ 7.6978293, 47.3799802 ], + [ 7.6977765, 47.3802144 ], + [ 7.6977465, 47.3804374 ], + [ 7.6977458, 47.3805898 ], + [ 7.6977608, 47.3807217 ], + [ 7.6978075, 47.3809179 ], + [ 7.6978601, 47.3810496 ], + [ 7.6978648, 47.3810618 ], + [ 7.6979717, 47.3813269 ], + [ 7.6980392, 47.3815026 ], + [ 7.6980906000000004, 47.3817517 ], + [ 7.6981003999999995, 47.3819473 ], + [ 7.6980819, 47.3821102 ], + [ 7.6980395, 47.3823079 ], + [ 7.6979838, 47.3825038 ], + [ 7.6979246, 47.3827018 ], + [ 7.6978694999999995, 47.3828922 ], + [ 7.6978394, 47.3830302 ], + [ 7.6979039, 47.3830278 ], + [ 7.6980068, 47.3830535 ], + [ 7.6981225, 47.3830519 ], + [ 7.6984265, 47.3830467 ], + [ 7.6986316, 47.3831051 ], + [ 7.6985953, 47.3832061 ], + [ 7.6985353, 47.3832795 ], + [ 7.6983062, 47.383556 ], + [ 7.6981906, 47.3836837 ], + [ 7.6981695, 47.3837204 ], + [ 7.6981531, 47.3837582 ], + [ 7.6981415, 47.3837968 ], + [ 7.6981351, 47.3838324 ], + [ 7.6981328, 47.3838683 ], + [ 7.6981345999999995, 47.3839041 ], + [ 7.6981405, 47.3839398 ], + [ 7.6981622, 47.3839987 ], + [ 7.6981879, 47.3840568 ], + [ 7.6982175, 47.384114 ], + [ 7.6982520999999995, 47.3841821 ], + [ 7.6982774, 47.3842522 ], + [ 7.6982929, 47.3843235 ], + [ 7.6983037, 47.3843925 ], + [ 7.6983069, 47.3844619 ], + [ 7.6983026, 47.3845312 ], + [ 7.6982676, 47.3850471 ], + [ 7.6982336, 47.3853978 ], + [ 7.6981821, 47.3855958 ], + [ 7.6981651, 47.3856887 ], + [ 7.6980981, 47.3857152 ], + [ 7.6980395, 47.3861385 ], + [ 7.697999, 47.386407 ], + [ 7.6977195, 47.3871391 ], + [ 7.697554, 47.3874294 ], + [ 7.6975142, 47.3875693 ], + [ 7.6975403, 47.3877334 ], + [ 7.6976607, 47.3879968 ], + [ 7.6978593, 47.3882415 ], + [ 7.6979284, 47.3883688 ], + [ 7.698021, 47.3886964 ], + [ 7.6981183, 47.3886803 ], + [ 7.6981603, 47.388674 ], + [ 7.6982755, 47.3886568 ], + [ 7.6982541, 47.3885359 ], + [ 7.6981933, 47.3884121 ], + [ 7.6982274, 47.3883337 ], + [ 7.6981421, 47.3881499 ], + [ 7.6980483, 47.387949 ], + [ 7.6979683, 47.3877533 ], + [ 7.6978463, 47.3875294 ], + [ 7.6979106999999996, 47.387384 ], + [ 7.6979892, 47.3872543 ], + [ 7.6981513, 47.3871276 ], + [ 7.6982766, 47.3870674 ], + [ 7.6984343, 47.3869912 ], + [ 7.6985177, 47.3869216 ], + [ 7.6985824, 47.3868581 ], + [ 7.6985699, 47.3868067 ], + [ 7.6985597, 47.3867181 ], + [ 7.698452, 47.3867004 ], + [ 7.698396, 47.3866912 ], + [ 7.6983765, 47.3866595 ], + [ 7.6983391, 47.3866113 ], + [ 7.6982646, 47.3864114 ], + [ 7.6982568, 47.3863146 ], + [ 7.6982608, 47.3861985 ], + [ 7.6983149, 47.3861221 ], + [ 7.698353, 47.3860335 ], + [ 7.69835, 47.3859638 ], + [ 7.6983727, 47.3859504 ], + [ 7.698347, 47.3859272 ], + [ 7.6984785, 47.385848 ], + [ 7.6984898, 47.3858393 ], + [ 7.6984928, 47.3858255 ], + [ 7.698551, 47.3856513 ], + [ 7.6986273, 47.3854661 ], + [ 7.6987489, 47.3850517 ], + [ 7.6988059, 47.384631 ], + [ 7.6988095, 47.3845651 ], + [ 7.6988002, 47.3843641 ], + [ 7.6987601, 47.3841648 ], + [ 7.6986894, 47.3839695 ], + [ 7.6986837999999995, 47.3839536 ], + [ 7.6986704, 47.3839014 ], + [ 7.6986652, 47.3838486 ], + [ 7.6986681, 47.3837957 ], + [ 7.6986792, 47.3837432 ], + [ 7.6986982, 47.3836919 ], + [ 7.6987251, 47.3836421 ], + [ 7.6987594, 47.3835946 ], + [ 7.6988009, 47.3835498 ], + [ 7.698849, 47.3835082 ], + [ 7.6989028, 47.3834701 ], + [ 7.6989276, 47.3834539 ], + [ 7.6989662, 47.3834233 ], + [ 7.6990001, 47.3833899 ], + [ 7.6990285, 47.3833544 ], + [ 7.6990514999999995, 47.3833171 ], + [ 7.6990684, 47.3832783 ], + [ 7.6990793, 47.3832385 ], + [ 7.6991081, 47.3830737 ], + [ 7.6991154, 47.3828647 ], + [ 7.6990907, 47.3826562 ], + [ 7.6989665, 47.3824422 ], + [ 7.6989436, 47.3823066 ], + [ 7.6989222, 47.3822057 ], + [ 7.6988416, 47.3819778 ], + [ 7.6987616, 47.3817779 ], + [ 7.6986823, 47.3815219 ], + [ 7.6986466, 47.3813162 ], + [ 7.6986394, 47.3812226 ], + [ 7.6986376, 47.3810634 ], + [ 7.6986677, 47.380984 ], + [ 7.698701, 47.3809216 ], + [ 7.6987228, 47.3809059 ], + [ 7.6987851, 47.3808728 ], + [ 7.6988584, 47.3809749 ], + [ 7.6989614, 47.3810681 ], + [ 7.6991175, 47.3811504 ], + [ 7.6992644, 47.3812076 ], + [ 7.6995272, 47.3812992 ], + [ 7.6997474, 47.381362 ], + [ 7.699944, 47.3814102 ], + [ 7.7001878999999995, 47.3814729 ], + [ 7.7004734, 47.3815555 ], + [ 7.7006185, 47.3816136 ], + [ 7.7008019999999995, 47.3817073 ], + [ 7.7009587, 47.3818008 ], + [ 7.7011476, 47.3818913 ], + [ 7.701277, 47.3819398 ], + [ 7.7013847, 47.3819705 ], + [ 7.7015557, 47.3820064 ], + [ 7.7017572, 47.3820391 ], + [ 7.7019411, 47.3820487 ], + [ 7.702132, 47.3820562 ], + [ 7.7023206, 47.3820682 ], + [ 7.7026658, 47.3821244 ], + [ 7.7029463, 47.3822067 ], + [ 7.703262, 47.3823063 ], + [ 7.703421, 47.382345 ], + [ 7.7038608, 47.3824446 ], + [ 7.7040615, 47.3824716 ], + [ 7.7042247, 47.382468 ], + [ 7.7043929, 47.3824353 ], + [ 7.7045911, 47.3823738 ], + [ 7.7047740000000005, 47.382165 ], + [ 7.7047563, 47.3820099 ], + [ 7.7047295, 47.3818787 ], + [ 7.7046605, 47.381686 ], + [ 7.7045697, 47.3815406 ], + [ 7.7044628, 47.3814119 ], + [ 7.7043554, 47.3812804 ], + [ 7.704335, 47.3812719 ], + [ 7.704279, 47.3812429 ], + [ 7.7042212, 47.3812157 ], + [ 7.7041616, 47.3811902 ], + [ 7.7041217, 47.3811746 ], + [ 7.704081, 47.3811596 ], + [ 7.7040398, 47.3811455 ], + [ 7.7037544, 47.3810393 ], + [ 7.7036895, 47.3810141 ], + [ 7.7036282, 47.380985 ], + [ 7.7035709, 47.3809523 ], + [ 7.7035181, 47.3809163 ], + [ 7.7034465999999995, 47.3808837 ], + [ 7.7032047, 47.3808189 ], + [ 7.7029208, 47.3807364 ], + [ 7.7026858, 47.3806696 ], + [ 7.7024255, 47.3805713 ], + [ 7.7022232, 47.3804802 ], + [ 7.702125, 47.3804231 ], + [ 7.7019625, 47.3803225 ], + [ 7.7017143, 47.3801711 ], + [ 7.7014278, 47.3800009 ], + [ 7.7010721, 47.3797862 ], + [ 7.7009038, 47.3797032 ], + [ 7.7005866, 47.3794949 ], + [ 7.7002371, 47.3793164 ], + [ 7.6999231, 47.3792168 ], + [ 7.6997467, 47.3791852 ], + [ 7.6994441, 47.3791702 ], + [ 7.6991847, 47.3791931 ], + [ 7.6989859, 47.3792143 ], + [ 7.6989099, 47.3792212 ], + [ 7.6988430999999995, 47.3792273 ], + [ 7.6988383, 47.3792128 ], + [ 7.6988326, 47.3791834 ], + [ 7.6988309, 47.3791538 ], + [ 7.6988277, 47.3791199 ], + [ 7.6988198, 47.3790864 ], + [ 7.6988073, 47.3790535 ], + [ 7.6988145, 47.3789071 ], + [ 7.6988129, 47.3787938 ], + [ 7.6988161, 47.378601 ], + [ 7.6988167, 47.378416 ], + [ 7.6987898, 47.3782073 ], + [ 7.6986931, 47.3778765 ], + [ 7.6986218, 47.3776469 ], + [ 7.6985766, 47.3775628 ], + [ 7.6984587, 47.3773732 ], + [ 7.6983755, 47.3772675 ], + [ 7.6981583, 47.3770282 ], + [ 7.6980734, 47.3769039 ], + [ 7.6980731, 47.3768255 ], + [ 7.6980846, 47.3767307 ], + [ 7.69817, 47.3767659 ], + [ 7.698314, 47.3768185 ], + [ 7.6984851, 47.3768701 ], + [ 7.698844, 47.3769414 ], + [ 7.6991516, 47.3770037 ], + [ 7.6995109, 47.3770705 ], + [ 7.6998834, 47.3771559 ], + [ 7.7000744, 47.3771938 ], + [ 7.7001772, 47.3772075 ], + [ 7.7004598, 47.3772529 ], + [ 7.7008723, 47.3773569 ], + [ 7.7012554, 47.3774384 ], + [ 7.7013356, 47.3774589 ], + [ 7.7015568, 47.377497 ], + [ 7.7016683, 47.3775066 ], + [ 7.701815, 47.377502 ], + [ 7.7019479, 47.3774835 ], + [ 7.7020247, 47.3774567 ], + [ 7.7020682, 47.377425 ], + [ 7.7020929, 47.3773824 ], + [ 7.7020715, 47.3773444 ], + [ 7.7020253, 47.3773053 ], + [ 7.7019421999999995, 47.3772757 ], + [ 7.7018092, 47.3772129 ], + [ 7.7017191, 47.3771709 ], + [ 7.7016301, 47.377128 ], + [ 7.7015421, 47.377083999999996 ], + [ 7.7015266, 47.3770783 ], + [ 7.7015106, 47.3770732 ], + [ 7.7014892, 47.3770676 ], + [ 7.7014449, 47.3770598 ], + [ 7.7013998, 47.3770546 ], + [ 7.7013541, 47.377052 ], + [ 7.7013084, 47.3770521 ], + [ 7.7012095, 47.3770571 ], + [ 7.7011837, 47.3770571 ], + [ 7.7011579, 47.3770556 ], + [ 7.7011325, 47.3770524 ], + [ 7.7011075, 47.3770477 ], + [ 7.7010833, 47.3770415 ], + [ 7.7010601, 47.3770338 ], + [ 7.7006771, 47.3768779 ], + [ 7.7005859, 47.3768138 ], + [ 7.7005590999999995, 47.3767945 ], + [ 7.7005301, 47.3767767 ], + [ 7.7004992, 47.3767605 ], + [ 7.7004666, 47.3767459 ], + [ 7.7004486, 47.3767389 ], + [ 7.7004351, 47.3767341 ], + [ 7.7001316, 47.3766293 ], + [ 7.7000697, 47.3766144 ], + [ 7.700007, 47.3766009 ], + [ 7.6999437, 47.3765887 ], + [ 7.6998464, 47.3765668 ], + [ 7.6997494, 47.3765443 ], + [ 7.6996528, 47.3765211 ], + [ 7.6993756, 47.3764417 ], + [ 7.6993191, 47.3764256 ], + [ 7.6992481999999995, 47.3764018 ], + [ 7.6991807, 47.376374 ], + [ 7.6991172, 47.3763421 ], + [ 7.699058, 47.3763066 ], + [ 7.6989553, 47.3762205 ], + [ 7.6988826, 47.3761558 ], + [ 7.6988181, 47.3760872 ], + [ 7.6987621, 47.3760152 ], + [ 7.6987366999999995, 47.3759672 ], + [ 7.6987165, 47.3759181 ], + [ 7.6987014, 47.3758681 ], + [ 7.698687, 47.375809 ], + [ 7.6986795, 47.3757492 ], + [ 7.6986788, 47.3756892 ], + [ 7.6986812, 47.3756539 ], + [ 7.6986873, 47.3756187 ], + [ 7.6986973, 47.375584 ], + [ 7.6987552, 47.3754832 ], + [ 7.6987606, 47.3754742 ], + [ 7.6987649000000005, 47.3754649 ], + [ 7.698768, 47.3754553 ], + [ 7.6987698, 47.3754457 ], + [ 7.6987702, 47.375442 ], + [ 7.6987703, 47.3754323 ], + [ 7.6987692, 47.3754227 ], + [ 7.6987668, 47.3754131 ], + [ 7.6987632999999995, 47.3754037 ], + [ 7.6987586, 47.3753946 ], + [ 7.6987351, 47.3753645 ], + [ 7.698709, 47.3753355 ], + [ 7.6986805, 47.3753075 ], + [ 7.6985917, 47.3752316 ], + [ 7.6984553, 47.3750984 ], + [ 7.6982912, 47.3749344 ], + [ 7.6982403999999995, 47.3748803 ], + [ 7.6981934, 47.3748247 ], + [ 7.6981503, 47.3747677 ], + [ 7.6981236, 47.3747293 ], + [ 7.6981003999999995, 47.3746898 ], + [ 7.6980808, 47.3746494 ], + [ 7.6980558, 47.3745993 ], + [ 7.6980342, 47.3745484 ], + [ 7.6982159, 47.3744757 ], + [ 7.6984121, 47.3743595 ], + [ 7.6985192, 47.3742497 ], + [ 7.6986295, 47.3741453 ], + [ 7.6987615, 47.3740506 ], + [ 7.6988603, 47.3739843 ], + [ 7.6987166, 47.3738803 ], + [ 7.6987742, 47.3734956 ], + [ 7.6997137, 47.3734665 ], + [ 7.7001761, 47.3733758 ], + [ 7.7005524, 47.3734996 ], + [ 7.7004301, 47.3738191 ], + [ 7.7005733, 47.3740161 ], + [ 7.7013524, 47.3737216 ], + [ 7.7015376, 47.3739673 ], + [ 7.7016405, 47.3743872 ], + [ 7.7018559, 47.3745248 ], + [ 7.7018628, 47.374514 ], + [ 7.7019738, 47.3744682 ], + [ 7.701985, 47.3744604 ], + [ 7.701997, 47.3744532 ], + [ 7.70201, 47.3744467 ], + [ 7.7020237, 47.374441 ], + [ 7.702038, 47.3744361 ], + [ 7.7020529, 47.3744321 ], + [ 7.7020661, 47.3744293 ], + [ 7.7020839, 47.3744266 ], + [ 7.7020999, 47.3744252 ], + [ 7.7021159, 47.3744247 ], + [ 7.7021318999999995, 47.3744251 ], + [ 7.7021479, 47.3744264 ], + [ 7.7022345, 47.374438 ], + [ 7.7023204, 47.3744519 ], + [ 7.7024053, 47.3744681 ], + [ 7.7025309, 47.3744904 ], + [ 7.702657, 47.3745114 ], + [ 7.7027835, 47.3745311 ], + [ 7.7028227000000005, 47.3745383 ], + [ 7.7028607000000004, 47.3745479 ], + [ 7.7028972, 47.3745598 ], + [ 7.7029321, 47.3745739 ], + [ 7.7029649, 47.3745901 ], + [ 7.7029954, 47.3746083 ], + [ 7.7030233, 47.3746282 ], + [ 7.7031306, 47.3747153 ], + [ 7.7033394, 47.3748964 ], + [ 7.7036186, 47.3751436 ], + [ 7.7038467, 47.375347 ], + [ 7.7039171, 47.3754044 ], + [ 7.7039947, 47.3754573 ], + [ 7.7040612, 47.3755359 ], + [ 7.7042665, 47.3756943 ], + [ 7.7043516, 47.3757562 ], + [ 7.7044352, 47.3758191 ], + [ 7.7045173, 47.3758829 ], + [ 7.7045517, 47.3759066 ], + [ 7.7045876, 47.3759292 ], + [ 7.7045728, 47.3759528 ], + [ 7.7046436, 47.3759919 ], + [ 7.7047194, 47.3760265 ], + [ 7.7047996, 47.3760562 ], + [ 7.704822, 47.376093 ], + [ 7.7056056, 47.3763182 ], + [ 7.7059381, 47.3764335 ], + [ 7.7065402, 47.3765705 ], + [ 7.7070071, 47.3766569 ], + [ 7.7074919, 47.3767396 ], + [ 7.7075631, 47.3772966 ], + [ 7.707567, 47.3773329 ], + [ 7.7074464, 47.3773412 ], + [ 7.7073484, 47.3773479 ], + [ 7.7072503, 47.3773534 ], + [ 7.707152, 47.3773575 ], + [ 7.7071149, 47.3773581 ], + [ 7.7070778, 47.3773575 ], + [ 7.7070408, 47.3773557 ], + [ 7.7069582, 47.3773505 ], + [ 7.7068755, 47.3773462 ], + [ 7.7067927, 47.3773426 ], + [ 7.7067702, 47.3773423 ], + [ 7.7067476, 47.3773431 ], + [ 7.7067252, 47.3773451 ], + [ 7.7066285, 47.3773559 ], + [ 7.7065315, 47.3773658 ], + [ 7.7064344, 47.3773748 ], + [ 7.7064065, 47.3773781 ], + [ 7.7063792, 47.3773829 ], + [ 7.7063524999999995, 47.3773891 ], + [ 7.7062734, 47.3774119 ], + [ 7.7061962, 47.3774373 ], + [ 7.7061208, 47.3774652 ], + [ 7.7060812, 47.3774794 ], + [ 7.7060399, 47.3774914 ], + [ 7.7059974, 47.3775011 ], + [ 7.7059539, 47.3775085 ], + [ 7.7059096, 47.3775136 ], + [ 7.7057915999999995, 47.3775237 ], + [ 7.7057467, 47.3775264 ], + [ 7.7057017, 47.3775271 ], + [ 7.7056567, 47.3775255 ], + [ 7.7055281, 47.3775225 ], + [ 7.7053996, 47.3775281 ], + [ 7.7052727, 47.3775425 ], + [ 7.705252, 47.377545 ], + [ 7.7052311, 47.3775463 ], + [ 7.7052101, 47.3775464 ], + [ 7.7051891999999995, 47.3775454 ], + [ 7.7051684, 47.3775432 ], + [ 7.7045194, 47.3774553 ], + [ 7.7044504, 47.377447599999996 ], + [ 7.7043809, 47.3774434 ], + [ 7.704311, 47.3774426 ], + [ 7.7039171, 47.3774474 ], + [ 7.7038025, 47.3774479 ], + [ 7.7036879, 47.3774465 ], + [ 7.7035734, 47.3774431 ], + [ 7.7035407, 47.3774565 ], + [ 7.7032843, 47.377482 ], + [ 7.703096, 47.3775801 ], + [ 7.7029099, 47.3776953 ], + [ 7.7028871, 47.3777379 ], + [ 7.7028598, 47.3779528 ], + [ 7.7028498, 47.3780328 ], + [ 7.7028709, 47.3781334 ], + [ 7.7028929, 47.378187 ], + [ 7.7029151, 47.3782405 ], + [ 7.7029376, 47.378294 ], + [ 7.7029505, 47.3783246 ], + [ 7.702982, 47.3784065 ], + [ 7.7030102, 47.3784851 ], + [ 7.7030367, 47.378564 ], + [ 7.7030497, 47.3786032 ], + [ 7.7031033, 47.3786568 ], + [ 7.7033285, 47.3788444 ], + [ 7.703591, 47.3790565 ], + [ 7.703855, 47.3792551 ], + [ 7.704179, 47.3794552 ], + [ 7.7045009, 47.3796249 ], + [ 7.7047967, 47.3797596 ], + [ 7.7050672, 47.3798846 ], + [ 7.7053978, 47.3800066 ], + [ 7.7057500999999995, 47.3801227 ], + [ 7.7058623, 47.3795685 ], + [ 7.7059716, 47.3790771 ], + [ 7.7072227, 47.37912 ], + [ 7.7077445, 47.3790672 ], + [ 7.7085874, 47.3787881 ], + [ 7.7090331, 47.3787832 ], + [ 7.7100132, 47.3789953 ], + [ 7.7112359999999995, 47.3788509 ], + [ 7.7116606, 47.3788188 ], + [ 7.7122488, 47.378841 ], + [ 7.7132194, 47.378853 ], + [ 7.7138666, 47.3782344 ], + [ 7.7141818, 47.3777269 ], + [ 7.714249, 47.3776631 ], + [ 7.7150769, 47.3775471 ], + [ 7.715635, 47.3774974 ], + [ 7.7160937, 47.3773961 ], + [ 7.7164428, 47.3772696 ], + [ 7.7167918, 47.377115 ], + [ 7.7171613, 47.3769604 ], + [ 7.7174898, 47.3768268 ], + [ 7.7177461, 47.3766925 ], + [ 7.7175244, 47.3766231 ], + [ 7.7169215, 47.3765032 ], + [ 7.7161092, 47.3764199 ], + [ 7.7154469, 47.3762985 ], + [ 7.714535, 47.3757701 ], + [ 7.7144837, 47.3757745 ], + [ 7.714417, 47.3757816 ], + [ 7.7143364, 47.3757919 ], + [ 7.7142537, 47.3758078 ], + [ 7.7141769, 47.3758282 ], + [ 7.7139775, 47.375888 ], + [ 7.7136738, 47.3760036 ], + [ 7.7133639, 47.3761189 ], + [ 7.7128544, 47.3763438 ], + [ 7.7125302, 47.3764897 ], + [ 7.7112223, 47.3760369 ], + [ 7.7110216, 47.3759016 ], + [ 7.7111296, 47.3755943 ], + [ 7.7111906, 47.3751687 ], + [ 7.7104308, 47.3752717 ], + [ 7.7098455999999995, 47.3750313 ], + [ 7.7102631, 47.3742983 ], + [ 7.7102445, 47.3726219 ], + [ 7.709802, 47.3723274 ], + [ 7.7095196, 47.3721911 ], + [ 7.7091677, 47.3721324 ], + [ 7.7090876, 47.3718598 ], + [ 7.7090326000000005, 47.3715098 ], + [ 7.7085538, 47.3715979 ], + [ 7.7080405, 47.3716388 ], + [ 7.7075583, 47.3717209 ], + [ 7.7066392, 47.3717678 ], + [ 7.706104, 47.3718865 ], + [ 7.7052856, 47.3719511 ], + [ 7.7047381999999995, 47.3720543 ], + [ 7.7040194, 47.3721417 ], + [ 7.7029267, 47.3723459 ], + [ 7.7019571, 47.3724496 ], + [ 7.7011647, 47.3723895 ], + [ 7.7003643, 47.3723039 ], + [ 7.6998376, 47.3722596 ], + [ 7.6989227, 47.3721787 ], + [ 7.6964529, 47.3719624 ], + [ 7.6942547999999995, 47.3717719 ], + [ 7.6920085, 47.3715718 ], + [ 7.6905122, 47.3714408 ], + [ 7.6886398, 47.3712759 ], + [ 7.6890347, 47.3713454 ], + [ 7.6900696, 47.3714835 ], + [ 7.6908369, 47.3715901 ], + [ 7.6920306, 47.3717088 ], + [ 7.6921029, 47.3722307 ], + [ 7.6921844, 47.3728013 ], + [ 7.692255, 47.3732358 ], + [ 7.6918388, 47.3732038 ], + [ 7.6914482, 47.3732007 ], + [ 7.6907094, 47.3731262 ], + [ 7.6897293, 47.3730247 ], + [ 7.6892598, 47.3728999 ], + [ 7.6885837, 47.372804 ], + [ 7.6881736, 47.37278 ] + ], + [ + [ 7.698751, 47.372547 ], + [ 7.698933, 47.3726969 ], + [ 7.6987509, 47.3728506 ], + [ 7.6984685, 47.3728169 ], + [ 7.6985272, 47.3725994 ], + [ 7.698751, 47.372547 ] + ], + [ + [ 7.7006559, 47.3725887 ], + [ 7.7006803999999995, 47.3727358 ], + [ 7.7003651, 47.3727528 ], + [ 7.7003758, 47.3726094 ], + [ 7.7006559, 47.3725887 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns092", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Wasserfallen", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Wasserfallen", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Wasserfallen", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Wasserfallen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7641383, 47.368193 ], + [ 7.7646545, 47.3680966 ], + [ 7.7651144, 47.3680115 ], + [ 7.7656677, 47.3679051 ], + [ 7.7662685, 47.3675211 ], + [ 7.7664698, 47.3673925 ], + [ 7.7669584, 47.3672314 ], + [ 7.7675435, 47.3669148 ], + [ 7.767929, 47.3663688 ], + [ 7.768397, 47.3659132 ], + [ 7.7679453, 47.3655132 ], + [ 7.7675703, 47.3651319 ], + [ 7.7669882, 47.3647224 ], + [ 7.7666918, 47.3644192 ], + [ 7.7666652, 47.3643657 ], + [ 7.7666276, 47.3642077 ], + [ 7.766434, 47.3639096 ], + [ 7.7663706, 47.3636563 ], + [ 7.7662835, 47.3634708 ], + [ 7.7662915, 47.3634511 ], + [ 7.7662227, 47.3631065 ], + [ 7.7662865, 47.3630681 ], + [ 7.7664241, 47.3630317 ], + [ 7.7665278, 47.3630622 ], + [ 7.7666062, 47.3630734 ], + [ 7.7666612, 47.3631823 ], + [ 7.7667564, 47.3633194 ], + [ 7.7669502999999995, 47.3633742 ], + [ 7.7671814, 47.3633948 ], + [ 7.7674076, 47.3633469 ], + [ 7.7676245, 47.3632714 ], + [ 7.7677664, 47.3632991 ], + [ 7.7679194, 47.3632298 ], + [ 7.7680612, 47.3632321 ], + [ 7.7681366, 47.363179099999996 ], + [ 7.7679968, 47.3630164 ], + [ 7.7681346, 47.3629118 ], + [ 7.7681823, 47.3628009 ], + [ 7.7683298, 47.3627729 ], + [ 7.768471, 47.3627291 ], + [ 7.7689346, 47.362763 ], + [ 7.769109, 47.3627359 ], + [ 7.7693426, 47.3626455 ], + [ 7.7695279, 47.3624396 ], + [ 7.7695857, 47.362285 ], + [ 7.7695966, 47.3622325 ], + [ 7.769503, 47.3620149 ], + [ 7.7694176, 47.3619563 ], + [ 7.7692393, 47.3619419 ], + [ 7.7691999, 47.3618536 ], + [ 7.7694101, 47.3616203 ], + [ 7.7694707, 47.3615635 ], + [ 7.7697456, 47.3615778 ], + [ 7.7699342, 47.3615632 ], + [ 7.7700255, 47.3615649 ], + [ 7.7701213, 47.3615656 ], + [ 7.770336, 47.3615401 ], + [ 7.7703731, 47.3614994 ], + [ 7.7703417, 47.3614121 ], + [ 7.7702756, 47.3613956 ], + [ 7.7702524, 47.3613602 ], + [ 7.7701883, 47.3614074 ], + [ 7.7701041, 47.3613774 ], + [ 7.7700175, 47.3613668 ], + [ 7.7700952, 47.3613095 ], + [ 7.7700248, 47.3611956 ], + [ 7.7701189, 47.3611919 ], + [ 7.7703428, 47.3611342 ], + [ 7.7704534, 47.36103 ], + [ 7.7704982, 47.3609047 ], + [ 7.7707508, 47.3607986 ], + [ 7.7715266, 47.360625 ], + [ 7.7717218, 47.3606677 ], + [ 7.7718782, 47.360761 ], + [ 7.7719909, 47.3608113 ], + [ 7.7720885, 47.3610354 ], + [ 7.7723235, 47.361147 ], + [ 7.7723599, 47.3612308 ], + [ 7.7725116, 47.3613638 ], + [ 7.7726607, 47.3613253 ], + [ 7.7726594, 47.3612054 ], + [ 7.7726126, 47.3610272 ], + [ 7.7725273999999995, 47.3609179 ], + [ 7.7725463, 47.36088 ], + [ 7.7724937, 47.3608165 ], + [ 7.7725326, 47.360733 ], + [ 7.7726288, 47.3606549 ], + [ 7.7726646, 47.3606117 ], + [ 7.7726621, 47.3606023 ], + [ 7.7726704, 47.3605534 ], + [ 7.7727365, 47.3604458 ], + [ 7.772791, 47.3603158 ], + [ 7.7727737, 47.3602454 ], + [ 7.7727453, 47.360182 ], + [ 7.7727246999999995, 47.3601283 ], + [ 7.7726342, 47.3601287 ], + [ 7.7725744, 47.3601106 ], + [ 7.7724249, 47.3599998 ], + [ 7.7722669, 47.3598337 ], + [ 7.7721808, 47.3596618 ], + [ 7.7715393, 47.3594931 ], + [ 7.7708895, 47.3593424 ], + [ 7.7703107, 47.359492 ], + [ 7.7697258, 47.3596562 ], + [ 7.7691749, 47.3596654 ], + [ 7.7686344, 47.3596794 ], + [ 7.7685287, 47.3597077 ], + [ 7.7684258, 47.3597114 ], + [ 7.7681869, 47.3597391 ], + [ 7.7675708, 47.359858 ], + [ 7.7672827, 47.3599273 ], + [ 7.767075, 47.3599684 ], + [ 7.7663682, 47.3601335 ], + [ 7.7658939, 47.3602339 ], + [ 7.7656919, 47.3602876 ], + [ 7.7654943, 47.3603498 ], + [ 7.7652877, 47.3604176 ], + [ 7.765091, 47.3604894 ], + [ 7.764873, 47.3605733 ], + [ 7.7645123, 47.360723899999996 ], + [ 7.7642615, 47.3608245 ], + [ 7.7642071999999995, 47.3608486 ], + [ 7.7641561, 47.3608757 ], + [ 7.7641086999999995, 47.3609057 ], + [ 7.7640653, 47.3609384 ], + [ 7.7640262, 47.3609736 ], + [ 7.7639918, 47.3610109 ], + [ 7.763853, 47.3612027 ], + [ 7.7638381, 47.3612212 ], + [ 7.7638207999999995, 47.3612386 ], + [ 7.7638012, 47.3612549 ], + [ 7.7637796, 47.3612699 ], + [ 7.763756, 47.3612835 ], + [ 7.7637307, 47.3612955 ], + [ 7.7637038, 47.361306 ], + [ 7.7636757, 47.3613147 ], + [ 7.7635457, 47.3613393 ], + [ 7.7631867, 47.3613557 ], + [ 7.7629403, 47.3613844 ], + [ 7.7626909, 47.3613965 ], + [ 7.762441, 47.361392 ], + [ 7.7623215, 47.3613851 ], + [ 7.7622774, 47.3613839 ], + [ 7.7622333, 47.3613854 ], + [ 7.7621897, 47.3613897 ], + [ 7.7621468, 47.3613967 ], + [ 7.762105, 47.3614063 ], + [ 7.7620646, 47.3614184 ], + [ 7.7620261, 47.361433 ], + [ 7.7618487, 47.3615157 ], + [ 7.7616836, 47.3616094 ], + [ 7.7615321999999995, 47.3617132 ], + [ 7.7615025, 47.3617363 ], + [ 7.7614554, 47.3617728 ], + [ 7.7614158, 47.361874 ], + [ 7.7613364, 47.3621971 ], + [ 7.7612732, 47.3623052 ], + [ 7.7611853, 47.3624649 ], + [ 7.7610772, 47.362628 ], + [ 7.7609461, 47.3627912 ], + [ 7.760793, 47.3629479 ], + [ 7.7606024, 47.3631271 ], + [ 7.7604776, 47.3632552 ], + [ 7.7603984, 47.3635676 ], + [ 7.7603446, 47.3635445 ], + [ 7.7603245, 47.3635861 ], + [ 7.7602873, 47.363643 ], + [ 7.7602468, 47.3637127 ], + [ 7.7602252, 47.3637754 ], + [ 7.7601815, 47.3638455 ], + [ 7.7601526, 47.363887 ], + [ 7.7600972, 47.363948 ], + [ 7.7600521, 47.3639939 ], + [ 7.7599949, 47.3640392 ], + [ 7.7599535, 47.364061 ], + [ 7.7586391, 47.3645136 ], + [ 7.7580347, 47.3645036 ], + [ 7.7571236, 47.3644347 ], + [ 7.7566808, 47.3643129 ], + [ 7.7566066, 47.3644841 ], + [ 7.7569078000000005, 47.364659 ], + [ 7.7572583999999996, 47.3647199 ], + [ 7.7578892, 47.3647657 ], + [ 7.7584069, 47.3647729 ], + [ 7.7585526, 47.365034 ], + [ 7.7589034, 47.3652943 ], + [ 7.7595164, 47.3656069 ], + [ 7.759504, 47.3656757 ], + [ 7.7593278, 47.3659163 ], + [ 7.7598712, 47.366164 ], + [ 7.759993, 47.3663136 ], + [ 7.7600163, 47.3664879 ], + [ 7.7600339, 47.3666194 ], + [ 7.7600178, 47.3667069 ], + [ 7.7600033, 47.366717 ], + [ 7.759934, 47.3667197 ], + [ 7.7594656, 47.3666121 ], + [ 7.759146, 47.366591 ], + [ 7.7590656, 47.366579 ], + [ 7.7589023, 47.3665488 ], + [ 7.7588418, 47.3665688 ], + [ 7.7586708, 47.3665526 ], + [ 7.7583359, 47.3665679 ], + [ 7.7581142, 47.3665506 ], + [ 7.7580932, 47.3665485 ], + [ 7.7579928, 47.3665395 ], + [ 7.7577012, 47.3664843 ], + [ 7.7575701, 47.3663207 ], + [ 7.7574393, 47.3661509 ], + [ 7.7573170000000005, 47.3660569 ], + [ 7.7570425, 47.366112 ], + [ 7.7567736, 47.3661402 ], + [ 7.7567686, 47.366331 ], + [ 7.7569171, 47.3663938 ], + [ 7.7570864, 47.366413 ], + [ 7.7571344, 47.3665129 ], + [ 7.7572568, 47.3665801 ], + [ 7.7573053, 47.366717 ], + [ 7.7571436, 47.3667714 ], + [ 7.756633, 47.3668417 ], + [ 7.7561639, 47.3669398 ], + [ 7.7561429, 47.3670392 ], + [ 7.7562548, 47.3671072 ], + [ 7.7561612, 47.3671818 ], + [ 7.7562827, 47.3671859 ], + [ 7.7564028, 47.3671846 ], + [ 7.7566407, 47.3671763 ], + [ 7.7567638, 47.3671769 ], + [ 7.7568809, 47.3671878 ], + [ 7.7569883, 47.3672059 ], + [ 7.7571011, 47.3672301 ], + [ 7.7573001999999995, 47.3672795 ], + [ 7.7573567, 47.3672997 ], + [ 7.7573981, 47.3673215 ], + [ 7.7574817, 47.3673804 ], + [ 7.7575533, 47.3674287 ], + [ 7.7578463, 47.3676007 ], + [ 7.7580526, 47.367722 ], + [ 7.7581559, 47.3677669 ], + [ 7.7581868, 47.3677733 ], + [ 7.7582572, 47.3677969 ], + [ 7.7586088, 47.3680258 ], + [ 7.7590012999999995, 47.3680105 ], + [ 7.7593492, 47.3678923 ], + [ 7.7597698, 47.3677521 ], + [ 7.7600701999999995, 47.3676485 ], + [ 7.7605305, 47.3676921 ], + [ 7.7609457, 47.3677666 ], + [ 7.7610892, 47.3678913 ], + [ 7.7614491999999995, 47.3679328 ], + [ 7.7617484, 47.3679976 ], + [ 7.7619555, 47.3680147 ], + [ 7.7621732, 47.368072 ], + [ 7.7626335, 47.3681775 ], + [ 7.7629275, 47.3681927 ], + [ 7.7632826, 47.3681523 ], + [ 7.7637059, 47.3682742 ], + [ 7.7641383, 47.368193 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns242", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Schöntalfluh - Spittelweid", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Schöntalfluh - Spittelweid", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Schöntalfluh - Spittelweid", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Schöntalfluh - Spittelweid", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7572776999999995, 47.4360178 ], + [ 7.7575318, 47.4362049 ], + [ 7.7576391000000005, 47.4364683 ], + [ 7.7575622, 47.436604 ], + [ 7.7575592, 47.43675 ], + [ 7.7575798, 47.4369438 ], + [ 7.7575887, 47.4370868 ], + [ 7.757647, 47.4373287 ], + [ 7.7576966, 47.4375046 ], + [ 7.7577383, 47.437686 ], + [ 7.7577798, 47.437851 ], + [ 7.758107, 47.4383177 ], + [ 7.7583269999999995, 47.438504 ], + [ 7.7585958, 47.4387014 ], + [ 7.7587586, 47.4388054 ], + [ 7.7590105, 47.4388983 ], + [ 7.7591564, 47.4388924 ], + [ 7.7593019, 47.4388369 ], + [ 7.7594967, 47.4388475 ], + [ 7.7597563, 47.4388687 ], + [ 7.7597898, 47.4390447 ], + [ 7.7600978, 47.4390273 ], + [ 7.7603568, 47.4389771 ], + [ 7.7605265, 47.4389395 ], + [ 7.7604769000000005, 47.4386101 ], + [ 7.7606973, 47.4386011 ], + [ 7.7607946, 47.4385953 ], + [ 7.7608918, 47.4385881 ], + [ 7.7609888, 47.4385797 ], + [ 7.761072, 47.4385712 ], + [ 7.7611548, 47.4385608 ], + [ 7.7612369999999995, 47.4385485 ], + [ 7.7612929, 47.4385391 ], + [ 7.7613487, 47.4385295 ], + [ 7.7614045, 47.4385196 ], + [ 7.7614841, 47.4385036 ], + [ 7.7615628, 47.4384856 ], + [ 7.7616405, 47.4384658 ], + [ 7.7617215999999996, 47.4384458 ], + [ 7.7618023, 47.4384251 ], + [ 7.7618827, 47.4384038 ], + [ 7.7619976, 47.4383757 ], + [ 7.7621120999999995, 47.4383468 ], + [ 7.7622262, 47.438317 ], + [ 7.7624531999999995, 47.4382575 ], + [ 7.7625291, 47.4382373 ], + [ 7.7626045, 47.4382163 ], + [ 7.7626794, 47.4381945 ], + [ 7.7627137, 47.4381845 ], + [ 7.7627478, 47.4381743 ], + [ 7.7627818, 47.4381639 ], + [ 7.7628165, 47.4381501 ], + [ 7.7628495, 47.4381345 ], + [ 7.7628806, 47.4381172 ], + [ 7.7629095, 47.4380982 ], + [ 7.7629283000000004, 47.438084 ], + [ 7.7629453, 47.4380687 ], + [ 7.7629605, 47.4380526 ], + [ 7.7629737, 47.4380358 ], + [ 7.7629848, 47.4380183 ], + [ 7.7630022, 47.4379855 ], + [ 7.7630194, 47.4379526 ], + [ 7.7630302, 47.4379336 ], + [ 7.7630415, 47.4379148 ], + [ 7.7630532, 47.437896 ], + [ 7.7630564, 47.4378916 ], + [ 7.7630602, 47.4378874 ], + [ 7.7630644, 47.4378833 ], + [ 7.7630692, 47.4378796 ], + [ 7.7630744, 47.4378762 ], + [ 7.7630801, 47.437873 ], + [ 7.7630861, 47.4378703 ], + [ 7.7630913, 47.4378681 ], + [ 7.7630968, 47.4378662 ], + [ 7.7631025000000005, 47.4378646 ], + [ 7.7631084, 47.4378634 ], + [ 7.7631144, 47.4378626 ], + [ 7.7631205, 47.4378621 ], + [ 7.7631266, 47.4378619 ], + [ 7.7631328, 47.4378621 ], + [ 7.7631388999999995, 47.4378627 ], + [ 7.7631449, 47.4378636 ], + [ 7.7634387, 47.4378611 ], + [ 7.7635152, 47.4376005 ], + [ 7.7635694, 47.4374271 ], + [ 7.7630970999999995, 47.4373454 ], + [ 7.7623266, 47.4373036 ], + [ 7.7621758, 47.4375524 ], + [ 7.7620807, 47.4377076 ], + [ 7.7620325, 47.4377862 ], + [ 7.7614019, 47.4379191 ], + [ 7.7613139, 47.4379517 ], + [ 7.7609156, 47.4380994 ], + [ 7.7604117, 47.4381543 ], + [ 7.7602854, 47.4377075 ], + [ 7.7602001, 47.437159 ], + [ 7.7601808, 47.4369733 ], + [ 7.7601606, 47.4367813 ], + [ 7.7598469, 47.4362897 ], + [ 7.7599418, 47.4358941 ], + [ 7.7598834, 47.4358147 ], + [ 7.7597099, 47.4355789 ], + [ 7.7596758, 47.4355326 ], + [ 7.7595185, 47.4352316 ], + [ 7.759415, 47.4349447 ], + [ 7.7590025, 47.4347343 ], + [ 7.7588597, 47.4346665 ], + [ 7.7587146, 47.4346147 ], + [ 7.7583814, 47.4343504 ], + [ 7.7581621, 47.4343549 ], + [ 7.7581345, 47.4343073 ], + [ 7.7580243, 47.4341154 ], + [ 7.7578808, 47.4337805 ], + [ 7.7577484, 47.4334669 ], + [ 7.7576158, 47.4331482 ], + [ 7.7574632999999995, 47.4327694 ], + [ 7.7573720999999995, 47.4324282 ], + [ 7.7573564, 47.432349 ], + [ 7.7571594, 47.4323846 ], + [ 7.7569559, 47.432406 ], + [ 7.7568454, 47.4324172 ], + [ 7.756792, 47.4324248 ], + [ 7.7566874, 47.4324397 ], + [ 7.7560842999999995, 47.4325202 ], + [ 7.7561016, 47.4328341 ], + [ 7.756184, 47.4332163 ], + [ 7.7563001, 47.4335747 ], + [ 7.7564317, 47.4339439 ], + [ 7.7567356, 47.4338895 ], + [ 7.7567942, 47.4343408 ], + [ 7.7569195, 47.434743 ], + [ 7.757076, 47.4350037 ], + [ 7.7573091, 47.435351 ], + [ 7.7569992, 47.4354464 ], + [ 7.7570638, 47.4356032 ], + [ 7.757204, 47.4359189 ], + [ 7.7572776999999995, 47.4360178 ] + ], + [ + [ 7.7574774, 47.4357001 ], + [ 7.7574625, 47.4356464 ], + [ 7.7574533, 47.4355922 ], + [ 7.757408, 47.4354101 ], + [ 7.7575032, 47.4354179 ], + [ 7.7576695, 47.4354229 ], + [ 7.7577235, 47.4354275 ], + [ 7.7577673, 47.4354833 ], + [ 7.7580302, 47.4357222 ], + [ 7.758118, 47.4358501 ], + [ 7.7581928, 47.43591 ], + [ 7.7575538, 47.4359157 ], + [ 7.7575335, 47.4358617 ], + [ 7.7575149, 47.4358075 ], + [ 7.7574978, 47.435753 ], + [ 7.7574774, 47.4357001 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns291", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Stälzer - Pfiferatten", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Stälzer - Pfiferatten", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Stälzer - Pfiferatten", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Stälzer - Pfiferatten", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.9749909, 47.5457536 ], + [ 7.974984, 47.5456124 ], + [ 7.9749662, 47.5454717 ], + [ 7.9749375, 47.5453318 ], + [ 7.9748981, 47.545193 ], + [ 7.974848, 47.5450559 ], + [ 7.9747874, 47.5449207 ], + [ 7.9747164, 47.5447879 ], + [ 7.9746353, 47.5446578 ], + [ 7.9745442, 47.5445307 ], + [ 7.9744434, 47.544407 ], + [ 7.9743332, 47.5442871 ], + [ 7.9742138, 47.5441712 ], + [ 7.9740857, 47.5440597 ], + [ 7.9739491, 47.543953 ], + [ 7.9738045, 47.5438512 ], + [ 7.9736522, 47.5437546 ], + [ 7.9734926, 47.5436636 ], + [ 7.9733263, 47.5435784 ], + [ 7.9731535000000004, 47.5434992 ], + [ 7.9729749, 47.5434262 ], + [ 7.9727909, 47.5433596 ], + [ 7.972602, 47.5432997 ], + [ 7.9724087, 47.5432465 ], + [ 7.9722116, 47.5432003 ], + [ 7.9720112, 47.5431611 ], + [ 7.971808, 47.543129 ], + [ 7.9716026, 47.5431042 ], + [ 7.9713956, 47.5430867 ], + [ 7.9711875, 47.5430766 ], + [ 7.970979, 47.5430739 ], + [ 7.9707704, 47.5430785 ], + [ 7.9705626, 47.5430906 ], + [ 7.9703558999999995, 47.54311 ], + [ 7.9701511, 47.5431366 ], + [ 7.9699486, 47.5431705 ], + [ 7.9697489, 47.5432116 ], + [ 7.9695528, 47.5432596 ], + [ 7.9693606, 47.5433146 ], + [ 7.9691729, 47.5433762 ], + [ 7.9689902, 47.5434445 ], + [ 7.9688131, 47.5435191 ], + [ 7.9686419, 47.5435999 ], + [ 7.9684773, 47.5436866 ], + [ 7.9683196, 47.5437791 ], + [ 7.9681692, 47.543877 ], + [ 7.9680266, 47.5439801 ], + [ 7.9678922, 47.5440882 ], + [ 7.9677663, 47.5442008 ], + [ 7.9676493, 47.5443178 ], + [ 7.9675415, 47.5444387 ], + [ 7.9674432, 47.5445633 ], + [ 7.9673547, 47.5446912 ], + [ 7.9672761, 47.5448221 ], + [ 7.9672078, 47.5449555 ], + [ 7.9671499, 47.5450912 ], + [ 7.9671026, 47.5452288 ], + [ 7.9670659, 47.5453679 ], + [ 7.9670401, 47.545508 ], + [ 7.9670251, 47.5456489 ], + [ 7.9670211, 47.5457902 ], + [ 7.9670279, 47.5459314 ], + [ 7.9670457, 47.5460721 ], + [ 7.9670743, 47.546212 ], + [ 7.9671137, 47.5463507 ], + [ 7.9671638, 47.5464879 ], + [ 7.9672244, 47.546623 ], + [ 7.9672954, 47.5467559 ], + [ 7.9673765, 47.546886 ], + [ 7.9674676, 47.5470131 ], + [ 7.9675684, 47.5471368 ], + [ 7.9676786, 47.5472567 ], + [ 7.9677979, 47.5473726 ], + [ 7.967926, 47.5474841 ], + [ 7.9680626, 47.5475909 ], + [ 7.9682072, 47.5476927 ], + [ 7.9683595, 47.5477892 ], + [ 7.9685191, 47.5478802 ], + [ 7.9686855, 47.5479655 ], + [ 7.9688582, 47.5480447 ], + [ 7.9690368, 47.5481177 ], + [ 7.9692209, 47.5481842 ], + [ 7.9694098, 47.5482442 ], + [ 7.9696031, 47.5482974 ], + [ 7.9698002, 47.5483436 ], + [ 7.9700006, 47.5483828 ], + [ 7.9702038, 47.5484148 ], + [ 7.9704092, 47.5484397 ], + [ 7.9706163, 47.5484571 ], + [ 7.9708244, 47.5484673 ], + [ 7.971033, 47.54847 ], + [ 7.9712415, 47.5484654 ], + [ 7.9714494, 47.5484533 ], + [ 7.971656, 47.5484339 ], + [ 7.9718609, 47.5484072 ], + [ 7.9720635, 47.5483733 ], + [ 7.9722631, 47.5483323 ], + [ 7.9724593, 47.5482842 ], + [ 7.9726515, 47.5482293 ], + [ 7.9728392, 47.5481676 ], + [ 7.9730219, 47.5480994 ], + [ 7.973199, 47.5480248 ], + [ 7.9733702, 47.547944 ], + [ 7.9735347999999995, 47.5478572 ], + [ 7.9736925, 47.5477647 ], + [ 7.9738429, 47.5476668 ], + [ 7.9739854999999995, 47.5475637 ], + [ 7.9741199, 47.5474556 ], + [ 7.9742458, 47.547343 ], + [ 7.9743628, 47.547226 ], + [ 7.9744706, 47.5471051 ], + [ 7.9745688999999995, 47.5469805 ], + [ 7.9746574, 47.5468526 ], + [ 7.9747359, 47.5467217 ], + [ 7.9748042, 47.5465882 ], + [ 7.9748621, 47.5464525 ], + [ 7.9749094, 47.546315 ], + [ 7.9749461, 47.5461759 ], + [ 7.9749719, 47.5460357 ], + [ 7.9749868, 47.5458948 ], + [ 7.9749909, 47.5457536 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0077", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Münchwilen", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Münchwilen", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Münchwilen", + "lang" : "it-CH" + }, + { + "text" : "Substation Münchwilen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.442916, 47.3965722 ], + [ 7.4430129, 47.3965169 ], + [ 7.4430829, 47.3964289 ], + [ 7.4431353, 47.396367 ], + [ 7.4431441, 47.3963421 ], + [ 7.4430811, 47.396303 ], + [ 7.4430888, 47.3962381 ], + [ 7.4430896, 47.396168 ], + [ 7.4431326, 47.3960946 ], + [ 7.4432007, 47.3960631 ], + [ 7.4432101, 47.3959998 ], + [ 7.4431739, 47.3959136 ], + [ 7.443147, 47.3958477 ], + [ 7.4430875, 47.3957945 ], + [ 7.4430957, 47.3957649 ], + [ 7.4430805, 47.3957134 ], + [ 7.4430202, 47.3956829 ], + [ 7.4429575, 47.3956484 ], + [ 7.442856, 47.395631 ], + [ 7.4427781, 47.3955984 ], + [ 7.4427322, 47.3955296 ], + [ 7.4427234, 47.395483 ], + [ 7.4428313, 47.3954201 ], + [ 7.442794, 47.3953371 ], + [ 7.4427724, 47.3953019 ], + [ 7.4427562, 47.3952111 ], + [ 7.442755, 47.3951545 ], + [ 7.4426798, 47.3951225 ], + [ 7.4426257, 47.395111 ], + [ 7.4424626, 47.3949552 ], + [ 7.4424684, 47.3948784 ], + [ 7.4424121, 47.3948324 ], + [ 7.4424349, 47.3948035 ], + [ 7.4424727, 47.3947247 ], + [ 7.4423446, 47.3946864 ], + [ 7.4422385, 47.3946705 ], + [ 7.4422127, 47.3947254 ], + [ 7.4421172, 47.3949418 ], + [ 7.4420234, 47.3951608 ], + [ 7.4419725, 47.3952372 ], + [ 7.4418675, 47.3953148 ], + [ 7.4417798, 47.3953875 ], + [ 7.4416128, 47.3955463 ], + [ 7.4416038, 47.395555 ], + [ 7.4415265999999995, 47.3955125 ], + [ 7.4414552, 47.39548 ], + [ 7.441426, 47.3954889 ], + [ 7.4413958000000004, 47.3954957 ], + [ 7.4413648, 47.3955003 ], + [ 7.4413332, 47.3955027 ], + [ 7.4413014, 47.3955027 ], + [ 7.4412696, 47.3955007 ], + [ 7.4412385, 47.3954963 ], + [ 7.4412081, 47.3954897 ], + [ 7.441179, 47.395481 ], + [ 7.4411555, 47.3954721 ], + [ 7.4402951999999996, 47.3951907 ], + [ 7.4402493, 47.3951688 ], + [ 7.4402069, 47.3951437 ], + [ 7.4401686, 47.3951158 ], + [ 7.4401351, 47.3950853 ], + [ 7.4401061, 47.3950526 ], + [ 7.4400824, 47.395018 ], + [ 7.4400641, 47.3949819 ], + [ 7.4400515, 47.3949448 ], + [ 7.440071, 47.3949456 ], + [ 7.4400753, 47.3949247 ], + [ 7.4400783, 47.394884 ], + [ 7.440087, 47.3948492 ], + [ 7.4401017, 47.3948065 ], + [ 7.4401236, 47.3947767 ], + [ 7.4401689, 47.3947172 ], + [ 7.4402063, 47.3946239 ], + [ 7.4402485, 47.3945192 ], + [ 7.4403535, 47.3942147 ], + [ 7.4403816, 47.3940576 ], + [ 7.4403535, 47.3938958 ], + [ 7.4402553, 47.3936864 ], + [ 7.4401923, 47.3935531 ], + [ 7.4400858, 47.3934103 ], + [ 7.4400956, 47.3924358 ], + [ 7.440044, 47.3920413 ], + [ 7.4398892, 47.3917169 ], + [ 7.439773, 47.391489 ], + [ 7.4395022, 47.3911646 ], + [ 7.4391038, 47.3908344 ], + [ 7.4389812, 47.3907495 ], + [ 7.4389735, 47.3907509 ], + [ 7.4384083, 47.3904014 ], + [ 7.4378179, 47.390339 ], + [ 7.4377144, 47.3902832 ], + [ 7.4377052, 47.3899651 ], + [ 7.4374504, 47.3897337 ], + [ 7.4372889, 47.3898006 ], + [ 7.4368675, 47.3895818 ], + [ 7.4361451, 47.389419 ], + [ 7.4354026, 47.3892391 ], + [ 7.4347357, 47.3890556 ], + [ 7.4347264, 47.3890532 ], + [ 7.4343497, 47.3887924 ], + [ 7.4339338, 47.3887565 ], + [ 7.4339267, 47.388756 ], + [ 7.4333064, 47.3885998 ], + [ 7.4329409, 47.3884839 ], + [ 7.4329259, 47.3884854 ], + [ 7.4323898, 47.3885367 ], + [ 7.4318486, 47.3885387 ], + [ 7.4318149, 47.3885386 ], + [ 7.4312254, 47.3885701 ], + [ 7.4305811, 47.3885729 ], + [ 7.4299368999999995, 47.3885762 ], + [ 7.4287807, 47.3884505 ], + [ 7.4284229, 47.3879004 ], + [ 7.4283439, 47.3877804 ], + [ 7.4283401, 47.3877779 ], + [ 7.4285487, 47.3877344 ], + [ 7.4285515, 47.3877338 ], + [ 7.429682, 47.3874757 ], + [ 7.4297175, 47.3874378 ], + [ 7.4298227, 47.3873411 ], + [ 7.4301251, 47.3870346 ], + [ 7.4295881999999995, 47.3870766 ], + [ 7.4292013, 47.3871074 ], + [ 7.4279128, 47.387227 ], + [ 7.4267116, 47.3867461 ], + [ 7.4266056, 47.3866067 ], + [ 7.4265798, 47.3865727 ], + [ 7.4266100999999995, 47.3865646 ], + [ 7.4267936, 47.3865152 ], + [ 7.426941, 47.3864696 ], + [ 7.426717, 47.3862181 ], + [ 7.4263328, 47.3862714 ], + [ 7.4264877, 47.3864515 ], + [ 7.4256063, 47.3865752 ], + [ 7.4255837, 47.3865685 ], + [ 7.4253675999999995, 47.3865053 ], + [ 7.4252755, 47.3864115 ], + [ 7.4250602, 47.3861925 ], + [ 7.4244557, 47.3859749 ], + [ 7.4238602, 47.3856553 ], + [ 7.4235219, 47.3856111 ], + [ 7.4232852, 47.385599 ], + [ 7.4230637, 47.385552 ], + [ 7.4230545, 47.3855537 ], + [ 7.4230184, 47.3855115 ], + [ 7.4229588, 47.3852544 ], + [ 7.4227925, 47.3851213 ], + [ 7.4230396, 47.3849476 ], + [ 7.4230472, 47.3849424 ], + [ 7.4232921, 47.3848393 ], + [ 7.4232963, 47.3848326 ], + [ 7.4235501, 47.384526 ], + [ 7.4224798, 47.3846815 ], + [ 7.4216994, 47.3844597 ], + [ 7.4206444, 47.3856213 ], + [ 7.4206377, 47.3856339 ], + [ 7.4208716, 47.3856385 ], + [ 7.4210566, 47.3857185 ], + [ 7.4211557, 47.3858464 ], + [ 7.4206275, 47.3862289 ], + [ 7.4202388, 47.3865042 ], + [ 7.4198131, 47.3868101 ], + [ 7.4196465, 47.3872032 ], + [ 7.4195119, 47.3875081 ], + [ 7.4192039, 47.3879342 ], + [ 7.41897, 47.3882654 ], + [ 7.4184032, 47.3882881 ], + [ 7.4180314, 47.3882514 ], + [ 7.4171063, 47.3882981 ], + [ 7.4166371, 47.3883117 ], + [ 7.4159625, 47.3883378 ], + [ 7.4151924, 47.3892585 ], + [ 7.4151858, 47.3892668 ], + [ 7.4150525, 47.3894315 ], + [ 7.4148603, 47.3895061 ], + [ 7.4146854, 47.3895461 ], + [ 7.4144214, 47.3893964 ], + [ 7.4142496, 47.3894867 ], + [ 7.4141068, 47.3894224 ], + [ 7.4135905, 47.3894404 ], + [ 7.4136911, 47.3905901 ], + [ 7.4138211, 47.3905875 ], + [ 7.4147428, 47.3906883 ], + [ 7.4154952, 47.3906454 ], + [ 7.4161837, 47.3908614 ], + [ 7.4166605, 47.3907104 ], + [ 7.4169996, 47.390732 ], + [ 7.4172866, 47.3907972 ], + [ 7.4173691999999996, 47.39086 ], + [ 7.4173868, 47.3908556 ], + [ 7.4174443, 47.3908115 ], + [ 7.4175271, 47.3907677 ], + [ 7.4175907, 47.3907525 ], + [ 7.417565, 47.3907706 ], + [ 7.4175568, 47.3907748 ], + [ 7.4177168, 47.3907839 ], + [ 7.4178741, 47.3907932 ], + [ 7.4179831, 47.3907996 ], + [ 7.4183267, 47.3908159 ], + [ 7.418715, 47.3908185 ], + [ 7.4189396, 47.3908233 ], + [ 7.4193067, 47.3908154 ], + [ 7.4193118, 47.3908153 ], + [ 7.4194292, 47.3907962 ], + [ 7.4195543, 47.3907757 ], + [ 7.4197089, 47.3907036 ], + [ 7.4198439, 47.3905932 ], + [ 7.419894, 47.3905381 ], + [ 7.4199241, 47.390505 ], + [ 7.4200664, 47.3902785 ], + [ 7.4203059, 47.3899697 ], + [ 7.4205909, 47.3897121 ], + [ 7.4207216, 47.3895554 ], + [ 7.4209803, 47.3892774 ], + [ 7.4212489, 47.3890303 ], + [ 7.4213304, 47.3889627 ], + [ 7.4215542, 47.3887769 ], + [ 7.4223467, 47.3898573 ], + [ 7.4224119, 47.389846 ], + [ 7.422505, 47.3898316 ], + [ 7.4226431, 47.3898125 ], + [ 7.4228529, 47.3897878 ], + [ 7.4229222, 47.3896267 ], + [ 7.4229242, 47.3895293 ], + [ 7.4228992, 47.3894012 ], + [ 7.4228844, 47.389237 ], + [ 7.42291, 47.3891709 ], + [ 7.4229054, 47.3891635 ], + [ 7.4229880999999995, 47.3888046 ], + [ 7.4231611, 47.3883776 ], + [ 7.423364, 47.3878725 ], + [ 7.4234847, 47.3876736 ], + [ 7.4241376, 47.3877742 ], + [ 7.4240751, 47.387877 ], + [ 7.4239717, 47.3880265 ], + [ 7.4238591, 47.3881885 ], + [ 7.4237841, 47.3883624 ], + [ 7.4237183, 47.3885412 ], + [ 7.4236629, 47.3886931 ], + [ 7.4236347, 47.3888306 ], + [ 7.4236296, 47.3889742 ], + [ 7.4236196, 47.3891063 ], + [ 7.4236267, 47.3892466 ], + [ 7.4236311, 47.3893409 ], + [ 7.423613, 47.389483 ], + [ 7.4235921, 47.3896196 ], + [ 7.4235589, 47.3897759 ], + [ 7.423552, 47.3899186 ], + [ 7.4235806, 47.3900744 ], + [ 7.4236246, 47.3902165 ], + [ 7.4237526, 47.3904675 ], + [ 7.423863, 47.3906242 ], + [ 7.4238943, 47.3906765 ], + [ 7.4239418, 47.3907562 ], + [ 7.4239869, 47.3908142 ], + [ 7.4240114, 47.3908545 ], + [ 7.4240505, 47.3909463 ], + [ 7.424055, 47.3909586 ], + [ 7.4240783, 47.3909675 ], + [ 7.4242339, 47.3910247 ], + [ 7.4245061, 47.3911296 ], + [ 7.4246842, 47.3911971 ], + [ 7.4250144, 47.3911696 ], + [ 7.4251093, 47.3911614 ], + [ 7.425182, 47.3911551 ], + [ 7.4252734, 47.3911471 ], + [ 7.4254172, 47.391134 ], + [ 7.4254274, 47.3911331 ], + [ 7.4259473, 47.3902703 ], + [ 7.4261938, 47.3902264 ], + [ 7.4264601, 47.3898988 ], + [ 7.4266397, 47.3898453 ], + [ 7.4267573, 47.3898175 ], + [ 7.4269949, 47.3897874 ], + [ 7.4272313, 47.3897634 ], + [ 7.42741, 47.3897358 ], + [ 7.4275513, 47.389715699999996 ], + [ 7.4277087, 47.3897049 ], + [ 7.4278672, 47.3897028 ], + [ 7.4280252, 47.3897062 ], + [ 7.4281371, 47.3897184 ], + [ 7.4282447, 47.3897297 ], + [ 7.4283051, 47.3897039 ], + [ 7.4283693, 47.3897018 ], + [ 7.4284332, 47.3897225 ], + [ 7.4284897, 47.3897412 ], + [ 7.4286757, 47.3896894 ], + [ 7.428844, 47.3896489 ], + [ 7.4289742, 47.3896341 ], + [ 7.4293109, 47.3896342 ], + [ 7.4294141, 47.3896231 ], + [ 7.4297833, 47.3896232 ], + [ 7.4299462, 47.3896084 ], + [ 7.430196, 47.3895679 ], + [ 7.4304784, 47.3895237 ], + [ 7.4306576, 47.3894942 ], + [ 7.4308259, 47.3894757 ], + [ 7.4309617, 47.3894831 ], + [ 7.431119, 47.3895126 ], + [ 7.4312385, 47.3895532 ], + [ 7.4313579, 47.3895975 ], + [ 7.4314394, 47.3896307 ], + [ 7.4315589, 47.3896122 ], + [ 7.4317489, 47.3895754 ], + [ 7.431977, 47.3895238 ], + [ 7.4321725, 47.3894795 ], + [ 7.432295, 47.3894893 ], + [ 7.4323284, 47.3894887 ], + [ 7.4326227, 47.3902026 ], + [ 7.4327322, 47.3905691 ], + [ 7.4329372, 47.391281 ], + [ 7.4331295, 47.3914063 ], + [ 7.4338747, 47.3918873 ], + [ 7.4340158, 47.3920471 ], + [ 7.4340319, 47.3920652 ], + [ 7.4344716, 47.3925596 ], + [ 7.4345649, 47.3926645 ], + [ 7.4354382, 47.3932676 ], + [ 7.4360455, 47.3936857 ], + [ 7.4360994, 47.3937257 ], + [ 7.4361868, 47.3938041 ], + [ 7.4363, 47.3940339 ], + [ 7.436454, 47.3944717 ], + [ 7.4364685, 47.3945013 ], + [ 7.4364694, 47.3944903 ], + [ 7.4365161, 47.3944813 ], + [ 7.4365754, 47.3945899 ], + [ 7.4366638, 47.3946881 ], + [ 7.4368112, 47.3947844 ], + [ 7.4369152, 47.3948966 ], + [ 7.4371119, 47.3953034 ], + [ 7.4371459, 47.3953542 ], + [ 7.4371939, 47.3954044 ], + [ 7.4373461, 47.3955255 ], + [ 7.4373173, 47.395542 ], + [ 7.4373777, 47.3955907 ], + [ 7.4374113, 47.3956178 ], + [ 7.4374446, 47.395645 ], + [ 7.4374777, 47.3956724 ], + [ 7.4375105, 47.3956999 ], + [ 7.437543, 47.3957276 ], + [ 7.4375752, 47.3957553 ], + [ 7.4376071, 47.3957832 ], + [ 7.4376388, 47.3958113 ], + [ 7.4377137, 47.3958583 ], + [ 7.4377385, 47.3958772 ], + [ 7.4377628, 47.3958964 ], + [ 7.4377867, 47.395916 ], + [ 7.43781, 47.3959357 ], + [ 7.4378329, 47.3959558 ], + [ 7.4378551999999996, 47.3959761 ], + [ 7.4378769, 47.3959966 ], + [ 7.4378981, 47.3960174 ], + [ 7.4379188, 47.3960384 ], + [ 7.4379389, 47.3960596 ], + [ 7.4379585, 47.3960811 ], + [ 7.4379775, 47.3961028 ], + [ 7.4379962, 47.3961246 ], + [ 7.4380143, 47.3961467 ], + [ 7.4380319, 47.3961691 ], + [ 7.4380486999999995, 47.3961916 ], + [ 7.438065, 47.3962144 ], + [ 7.4380806, 47.3962374 ], + [ 7.4380956, 47.3962606 ], + [ 7.4381099, 47.396284 ], + [ 7.4381236, 47.3963075 ], + [ 7.4381366, 47.3963313 ], + [ 7.438149, 47.3963552 ], + [ 7.4381606, 47.3963792 ], + [ 7.4382380999999995, 47.3964919 ], + [ 7.4382737, 47.3964792 ], + [ 7.4383618, 47.396597 ], + [ 7.4384388, 47.3966773 ], + [ 7.4384966, 47.3967575 ], + [ 7.4385469, 47.3968257 ], + [ 7.4385895, 47.3968871 ], + [ 7.4386597, 47.3969672 ], + [ 7.4387176, 47.3970423 ], + [ 7.4387578, 47.3970985 ], + [ 7.4388155, 47.3971685 ], + [ 7.4388808, 47.3972332 ], + [ 7.4389587, 47.39731 ], + [ 7.4390616, 47.3973884 ], + [ 7.4391471, 47.3974652 ], + [ 7.4392424, 47.3975435 ], + [ 7.4392977, 47.3975981 ], + [ 7.4393579, 47.3976501 ], + [ 7.4394157, 47.3977064 ], + [ 7.439461, 47.3977525 ], + [ 7.4395438, 47.3978071 ], + [ 7.4396166, 47.3978599 ], + [ 7.4396618, 47.397877 ], + [ 7.4397335, 47.3979238 ], + [ 7.4398062, 47.3979596 ], + [ 7.4399017, 47.3980074 ], + [ 7.4399971, 47.3980483 ], + [ 7.4401151, 47.3980994 ], + [ 7.4401955, 47.3981336 ], + [ 7.4403161, 47.3981847 ], + [ 7.4404164999999995, 47.3982257 ], + [ 7.4404969, 47.3982649 ], + [ 7.4405871999999995, 47.3983161 ], + [ 7.4406802, 47.3983689 ], + [ 7.4407706, 47.3984303 ], + [ 7.4408484999999995, 47.3984798 ], + [ 7.4409289, 47.3985343 ], + [ 7.4410067, 47.398594 ], + [ 7.4410456, 47.3986195 ], + [ 7.4410883, 47.3986383 ], + [ 7.4411461, 47.3986452 ], + [ 7.4411862, 47.3986434 ], + [ 7.4412289, 47.3986264 ], + [ 7.4412649, 47.3986063 ], + [ 7.4412717, 47.3986025 ], + [ 7.4413843, 47.398579 ], + [ 7.4414259, 47.3985653 ], + [ 7.4414481, 47.3985508 ], + [ 7.4414802, 47.3985262 ], + [ 7.4414961, 47.3984966 ], + [ 7.441516, 47.3984469 ], + [ 7.4414874, 47.3983489 ], + [ 7.4414338, 47.3982858 ], + [ 7.4413396, 47.3981889 ], + [ 7.4413637, 47.398148 ], + [ 7.4414182, 47.3980384 ], + [ 7.4413691, 47.3979433 ], + [ 7.4413571, 47.3978883 ], + [ 7.441395, 47.3978393 ], + [ 7.4414655, 47.3977625 ], + [ 7.4415183, 47.3976998 ], + [ 7.4415903, 47.3976377 ], + [ 7.4416417, 47.3976118 ], + [ 7.4416873, 47.3976052 ], + [ 7.4417722, 47.3974189 ], + [ 7.4420213, 47.3971087 ], + [ 7.4421623, 47.3970229 ], + [ 7.4423367, 47.3969711 ], + [ 7.4423712, 47.3969065 ], + [ 7.4424212, 47.3968647 ], + [ 7.4424593, 47.3967988 ], + [ 7.4426273, 47.3967099 ], + [ 7.4427551, 47.3966217 ], + [ 7.4428212, 47.3965715 ], + [ 7.442916, 47.3965722 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns312", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Löffelberg - Baanholz", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Löffelberg - Baanholz", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Löffelberg - Baanholz", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Löffelberg - Baanholz", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6958471, 47.4196128 ], + [ 7.695855, 47.4196297 ], + [ 7.6958637, 47.4196465 ], + [ 7.6958685, 47.4196551 ], + [ 7.695873, 47.4196631 ], + [ 7.6958831, 47.4196795 ], + [ 7.6958938, 47.4196957 ], + [ 7.6959031, 47.4197096 ], + [ 7.6959117, 47.4197237 ], + [ 7.6959198, 47.4197379 ], + [ 7.6959272, 47.4197523 ], + [ 7.6959341, 47.4197668 ], + [ 7.6959403, 47.4197815 ], + [ 7.6959464, 47.4197958 ], + [ 7.6959532, 47.41981 ], + [ 7.6959608, 47.419824 ], + [ 7.695969, 47.4198379 ], + [ 7.6959719, 47.4198424 ], + [ 7.6960979, 47.4198187 ], + [ 7.6962727, 47.4196946 ], + [ 7.6963984, 47.4196039 ], + [ 7.696517, 47.4194704 ], + [ 7.6965796, 47.419356 ], + [ 7.6966703, 47.4192606 ], + [ 7.6968381, 47.4191603 ], + [ 7.6970127999999995, 47.4190457 ], + [ 7.6970896, 47.4189741 ], + [ 7.6970597, 47.4185886 ], + [ 7.6970726, 47.4183554 ], + [ 7.6968411, 47.4183416 ], + [ 7.6966518, 47.4183421 ], + [ 7.6964905, 47.4183424 ], + [ 7.6963642, 47.4183237 ], + [ 7.6962408, 47.4183114 ], + [ 7.6962268, 47.418321 ], + [ 7.6961813, 47.4183416 ], + [ 7.6961675, 47.4183482 ], + [ 7.6961534, 47.4183544 ], + [ 7.6961388, 47.4183601 ], + [ 7.6961239, 47.4183654 ], + [ 7.6961086, 47.4183702 ], + [ 7.6959225, 47.4184348 ], + [ 7.6958341, 47.4184651 ], + [ 7.6958215, 47.4184706 ], + [ 7.6958094, 47.4184765 ], + [ 7.6957978, 47.4184829 ], + [ 7.6957866, 47.4184897 ], + [ 7.6957765, 47.4184964 ], + [ 7.6957669, 47.4185035 ], + [ 7.6957578, 47.4185109 ], + [ 7.6957492, 47.4185186 ], + [ 7.6957469, 47.418521 ], + [ 7.6957412, 47.4185266 ], + [ 7.6957338, 47.4185348 ], + [ 7.6957234, 47.4185475 ], + [ 7.6957134, 47.4185604 ], + [ 7.6957041, 47.4185735 ], + [ 7.6956953, 47.4185867 ], + [ 7.6956866, 47.4186009 ], + [ 7.6956786, 47.4186153 ], + [ 7.6956755999999995, 47.4186213 ], + [ 7.6956716, 47.4186584 ], + [ 7.695651, 47.4187393 ], + [ 7.6956584, 47.418825 ], + [ 7.6956662, 47.4189868 ], + [ 7.6956843, 47.4191134 ], + [ 7.6956886, 47.4191346 ], + [ 7.6956933, 47.4191569 ], + [ 7.6957236, 47.4192579 ], + [ 7.6957255, 47.4192654 ], + [ 7.6957328, 47.4192932 ], + [ 7.695776, 47.4194114 ], + [ 7.6957854, 47.4194332 ], + [ 7.6957943, 47.419455 ], + [ 7.6958024, 47.419477 ], + [ 7.6958099, 47.4194991 ], + [ 7.6958167, 47.4195213 ], + [ 7.6958229, 47.4195436 ], + [ 7.6958278, 47.4195611 ], + [ 7.6958305, 47.4195691 ], + [ 7.6958335, 47.4195784 ], + [ 7.6958400000000005, 47.4195957 ], + [ 7.6958471, 47.4196128 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns031", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Oberthalrain", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Oberthalrain", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Oberthalrain", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Oberthalrain", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6956658000000004, 47.4548162 ], + [ 7.6956945, 47.454823 ], + [ 7.6957235, 47.4548401 ], + [ 7.695786, 47.4549107 ], + [ 7.6958712, 47.4549738 ], + [ 7.6959329, 47.4550222 ], + [ 7.6960027, 47.4550471 ], + [ 7.6960695999999995, 47.4550479 ], + [ 7.696089, 47.4550404 ], + [ 7.6961006, 47.455023 ], + [ 7.6961438, 47.4550052 ], + [ 7.696199, 47.4550163 ], + [ 7.6962393, 47.4550218 ], + [ 7.6962999, 47.4550158 ], + [ 7.696356, 47.4550828 ], + [ 7.6964214, 47.455126 ], + [ 7.6964473, 47.4551493 ], + [ 7.6964984, 47.4551691 ], + [ 7.6965946, 47.4552512 ], + [ 7.6966215, 47.4552893 ], + [ 7.6966665, 47.4553026 ], + [ 7.6967416, 47.4552925 ], + [ 7.696809, 47.4552742 ], + [ 7.696887, 47.4552635 ], + [ 7.6969736, 47.4552671 ], + [ 7.697062, 47.4552537 ], + [ 7.6970468, 47.455243 ], + [ 7.6966021, 47.4549295 ], + [ 7.6964729, 47.4548385 ], + [ 7.6962204, 47.4546591 ], + [ 7.6956461, 47.4547565 ], + [ 7.6956598, 47.4547979 ], + [ 7.6956658000000004, 47.4548162 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns293", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Stegmatten", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Stegmatten", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Stegmatten", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Stegmatten", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4815354, 47.4002784 ], + [ 7.4803902, 47.4000761 ], + [ 7.4805297, 47.4003886 ], + [ 7.4807521, 47.400561 ], + [ 7.4808475, 47.4007657 ], + [ 7.4809698000000004, 47.4009756 ], + [ 7.4810496, 47.4009982 ], + [ 7.4811426, 47.4010246 ], + [ 7.4813115, 47.4010515 ], + [ 7.48153, 47.401105 ], + [ 7.481827, 47.401174 ], + [ 7.4820839, 47.4012441 ], + [ 7.482374, 47.4013603 ], + [ 7.4826005, 47.4014546 ], + [ 7.4828754, 47.4015645 ], + [ 7.4832181, 47.4017054 ], + [ 7.4834792, 47.40183 ], + [ 7.4837373, 47.4019488 ], + [ 7.4841368, 47.4021082 ], + [ 7.4845863999999995, 47.4022836 ], + [ 7.4847485, 47.4023462 ], + [ 7.4848926, 47.4024019 ], + [ 7.4851179, 47.4024866 ], + [ 7.4852041, 47.402519 ], + [ 7.4852633, 47.4025407 ], + [ 7.4854821, 47.402621 ], + [ 7.4857314, 47.4027124 ], + [ 7.4862273, 47.402884 ], + [ 7.4867612, 47.4030746 ], + [ 7.4870981, 47.403205 ], + [ 7.4874484, 47.4033544 ], + [ 7.4886593, 47.4023576 ], + [ 7.4888307, 47.4021763 ], + [ 7.4898489999999995, 47.4013873 ], + [ 7.4904837, 47.4008491 ], + [ 7.4905508, 47.4007664 ], + [ 7.4907967, 47.4004923 ], + [ 7.4910083, 47.4001812 ], + [ 7.4910834, 47.4000372 ], + [ 7.491167, 47.3999049 ], + [ 7.4915237999999995, 47.3996936 ], + [ 7.492103, 47.3993598 ], + [ 7.4923362000000004, 47.3992853 ], + [ 7.4918237, 47.3991728 ], + [ 7.4915868, 47.3990865 ], + [ 7.4910846, 47.3989301 ], + [ 7.490355, 47.3987873 ], + [ 7.4892363, 47.3987327 ], + [ 7.488053, 47.3988213 ], + [ 7.4873073, 47.3988987 ], + [ 7.4860362, 47.3989948 ], + [ 7.4858311, 47.3990274 ], + [ 7.4857218, 47.399111 ], + [ 7.4856123, 47.399204 ], + [ 7.4855858, 47.399258 ], + [ 7.4855329, 47.399321 ], + [ 7.4854468, 47.3993948 ], + [ 7.4853383000000004, 47.3994668 ], + [ 7.4851754, 47.3995415 ], + [ 7.4847781, 47.3996991 ], + [ 7.4843544, 47.3998584 ], + [ 7.4841756, 47.3999484 ], + [ 7.4840869, 47.4000114 ], + [ 7.4839448, 47.4000588 ], + [ 7.4836515, 47.4000749 ], + [ 7.4826057, 47.4000245 ], + [ 7.4815354, 47.4002784 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr007", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Im Buchloch", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Im Buchloch", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Im Buchloch", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Im Buchloch", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4466466, 47.4030115 ], + [ 7.4467075, 47.4029948 ], + [ 7.4467555, 47.4030162 ], + [ 7.4467888, 47.4030311 ], + [ 7.4468029, 47.4030375 ], + [ 7.4468105, 47.4030408 ], + [ 7.4468115, 47.4030398 ], + [ 7.4468154, 47.4030368 ], + [ 7.4468233999999995, 47.4030305 ], + [ 7.4468801, 47.4029859 ], + [ 7.4468874, 47.4029716 ], + [ 7.4471216, 47.4027904 ], + [ 7.4471374, 47.4027772 ], + [ 7.4471547, 47.4027648 ], + [ 7.4471734, 47.4027535 ], + [ 7.4471935, 47.4027432 ], + [ 7.4472147, 47.402734 ], + [ 7.4472369, 47.4027261 ], + [ 7.44726, 47.4027194 ], + [ 7.4472839, 47.402714 ], + [ 7.4473076, 47.40271 ], + [ 7.4473317, 47.4027073 ], + [ 7.447356, 47.4027059 ], + [ 7.4473804, 47.4027058 ], + [ 7.4474048, 47.4027071 ], + [ 7.4474289, 47.4027096 ], + [ 7.4474527, 47.4027134 ], + [ 7.447476, 47.4027185 ], + [ 7.4475564, 47.4027268 ], + [ 7.4476408, 47.4027356 ], + [ 7.4477477, 47.402679 ], + [ 7.4478335, 47.4026336 ], + [ 7.4478672, 47.4026157 ], + [ 7.4478922, 47.4026019 ], + [ 7.4480319999999995, 47.4025243 ], + [ 7.4482702, 47.4024178 ], + [ 7.4483912, 47.4022372 ], + [ 7.4485922, 47.4019059 ], + [ 7.4486191, 47.4017466 ], + [ 7.4486136, 47.401678 ], + [ 7.4485905, 47.4016358 ], + [ 7.448505, 47.401454 ], + [ 7.44843, 47.4013582 ], + [ 7.4483411, 47.4012945 ], + [ 7.4482282, 47.4012391 ], + [ 7.4481012, 47.4011894 ], + [ 7.4479755, 47.4011252 ], + [ 7.4476554, 47.4011101 ], + [ 7.4473214, 47.4011071 ], + [ 7.4471578, 47.4011213 ], + [ 7.4469055, 47.4011807 ], + [ 7.4466809, 47.4012658 ], + [ 7.4465031, 47.4013384 ], + [ 7.4464235, 47.4013709 ], + [ 7.4459701, 47.4016306 ], + [ 7.4456984, 47.4017862 ], + [ 7.445378, 47.401965 ], + [ 7.4451131, 47.4020992 ], + [ 7.4450129, 47.40215 ], + [ 7.4447989, 47.4022796 ], + [ 7.4447441, 47.4024004 ], + [ 7.4447103, 47.4024748 ], + [ 7.4446918, 47.4025216 ], + [ 7.4447523, 47.402638 ], + [ 7.4449274, 47.4027078 ], + [ 7.4451731, 47.4027495 ], + [ 7.4453434, 47.4027565 ], + [ 7.4454982, 47.4028673 ], + [ 7.445625, 47.4030424 ], + [ 7.4457462, 47.4031623 ], + [ 7.4458202, 47.4031705 ], + [ 7.4461746, 47.4032102 ], + [ 7.4463786, 47.4031635 ], + [ 7.4465618, 47.4030348 ], + [ 7.4466466, 47.4030115 ] + ], + [ + [ 7.4459467, 47.4023551 ], + [ 7.4459908, 47.4023071 ], + [ 7.4461467, 47.402195 ], + [ 7.4464718, 47.4020189 ], + [ 7.446604, 47.4019528 ], + [ 7.4467739, 47.4018677 ], + [ 7.4469338, 47.4018105 ], + [ 7.4469432, 47.401808 ], + [ 7.4471834999999995, 47.4017439 ], + [ 7.4472661, 47.4017279 ], + [ 7.4472913, 47.4017603 ], + [ 7.4473821000000004, 47.4018767 ], + [ 7.4474105, 47.4019132 ], + [ 7.4474389, 47.4019496 ], + [ 7.4474444, 47.4019566 ], + [ 7.4471408, 47.4021232 ], + [ 7.4466875, 47.4023473 ], + [ 7.4463269, 47.4025024 ], + [ 7.4462507, 47.4025352 ], + [ 7.4461482, 47.4025904 ], + [ 7.4458284, 47.4027629 ], + [ 7.4458397, 47.4028379 ], + [ 7.4458091, 47.4028741 ], + [ 7.4457596, 47.4028331 ], + [ 7.4457438, 47.40282 ], + [ 7.4457325, 47.402813 ], + [ 7.4456879, 47.4027851 ], + [ 7.4456582000000004, 47.4027664 ], + [ 7.4456057, 47.402699 ], + [ 7.445714, 47.4026168 ], + [ 7.4457082, 47.4025877 ], + [ 7.4457506, 47.402548 ], + [ 7.4457843, 47.4025166 ], + [ 7.4458835, 47.4024238 ], + [ 7.4459467, 47.4023551 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr055", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Stefansmatten", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Stefansmatten", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Stefansmatten", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Stefansmatten", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.9790219, 46.3171674 ], + [ 7.9801025, 46.3164648 ], + [ 7.9792945, 46.316011 ], + [ 7.9784573, 46.3165834 ], + [ 7.9787164, 46.3169146 ], + [ 7.9790219, 46.3171674 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BRI0001", + "country" : "CHE", + "name" : [ + { + "text" : "Gefängnis Brig", + "lang" : "de-CH" + }, + { + "text" : "Gefängnis Brig", + "lang" : "fr-CH" + }, + { + "text" : "Gefängnis Brig", + "lang" : "it-CH" + }, + { + "text" : "Gefängnis Brig", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Dienststelle für Straf-und Massnahmenvollzug", + "lang" : "de-CH" + }, + { + "text" : "Service de l'application des peines et mesures", + "lang" : "fr-CH" + }, + { + "text" : "Dienststelle für Straf-und Massnahmenvollzug", + "lang" : "it-CH" + }, + { + "text" : "Dienststelle für Straf-und Massnahmenvollzug", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Dienststelle für Straf-und Massnahmenvollzug", + "lang" : "de-CH" + }, + { + "text" : "Service de l'application des peines et mesures", + "lang" : "fr-CH" + }, + { + "text" : "Dienststelle für Straf-und Massnahmenvollzug", + "lang" : "it-CH" + }, + { + "text" : "Dienststelle für Straf-und Massnahmenvollzug", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.polizeiwallis.ch/", + "email" : "SAPEM-DIRECTION@admin.vs.ch", + "phone" : "0041276065166", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.3733433999999995, 47.4199889 ], + [ 7.373521, 47.4201501 ], + [ 7.373397, 47.4204977 ], + [ 7.3735254, 47.4206309 ], + [ 7.3735963, 47.4207348 ], + [ 7.3738437, 47.4207881 ], + [ 7.3740696, 47.4207036 ], + [ 7.3742235, 47.4206438 ], + [ 7.3742261, 47.4206427 ], + [ 7.3742287, 47.4206416 ], + [ 7.3742312, 47.4206405 ], + [ 7.3742338, 47.4206394 ], + [ 7.3742364, 47.4206384 ], + [ 7.3742389, 47.4206372 ], + [ 7.3742415, 47.4206361 ], + [ 7.374244, 47.420635 ], + [ 7.3742465, 47.4206339 ], + [ 7.3742491, 47.4206328 ], + [ 7.3742516, 47.4206316 ], + [ 7.3742541, 47.4206305 ], + [ 7.3742566, 47.4206294 ], + [ 7.3742592, 47.4206282 ], + [ 7.3742617, 47.4206271 ], + [ 7.3742642, 47.4206259 ], + [ 7.3742667, 47.4206248 ], + [ 7.3742692, 47.4206236 ], + [ 7.3742716, 47.4206224 ], + [ 7.3742741, 47.4206212 ], + [ 7.3742766, 47.4206201 ], + [ 7.3742791, 47.4206189 ], + [ 7.3742815, 47.4206177 ], + [ 7.374284, 47.4206165 ], + [ 7.3742864, 47.4206153 ], + [ 7.3742889, 47.4206141 ], + [ 7.3742913, 47.4206128 ], + [ 7.3742938, 47.4206116 ], + [ 7.3742962, 47.4206104 ], + [ 7.3742986, 47.4206092 ], + [ 7.374301, 47.4206079 ], + [ 7.3743034, 47.4206067 ], + [ 7.3743058, 47.4206054 ], + [ 7.3743082, 47.4206042 ], + [ 7.3743106, 47.4206029 ], + [ 7.374313, 47.4206017 ], + [ 7.3743154, 47.4206004 ], + [ 7.3743178, 47.4205991 ], + [ 7.3743202, 47.4205978 ], + [ 7.3743225, 47.4205966 ], + [ 7.3743248999999995, 47.4205953 ], + [ 7.3743272, 47.420594 ], + [ 7.3743296, 47.4205927 ], + [ 7.3743319, 47.4205914 ], + [ 7.3743342, 47.4205901 ], + [ 7.3743365, 47.4205888 ], + [ 7.3743389, 47.4205875 ], + [ 7.3743412, 47.4205862 ], + [ 7.3743435, 47.4205848 ], + [ 7.3743458, 47.4205835 ], + [ 7.3743481, 47.4205822 ], + [ 7.3743503, 47.4205808 ], + [ 7.3743526, 47.4205795 ], + [ 7.3743549, 47.4205781 ], + [ 7.3743572, 47.4205768 ], + [ 7.3743594, 47.4205754 ], + [ 7.3743617, 47.4205741 ], + [ 7.3743639, 47.4205727 ], + [ 7.3743662, 47.4205713 ], + [ 7.3743684, 47.4205699 ], + [ 7.3743707, 47.4205686 ], + [ 7.3743729, 47.4205672 ], + [ 7.3743751, 47.4205658 ], + [ 7.3743773, 47.4205644 ], + [ 7.3743795, 47.420563 ], + [ 7.3743817, 47.4205616 ], + [ 7.3743839, 47.4205601 ], + [ 7.3743861, 47.4205587 ], + [ 7.3744572999999995, 47.4205023 ], + [ 7.3744942, 47.4204555 ], + [ 7.3745481, 47.4202878 ], + [ 7.3745738, 47.420077 ], + [ 7.3741517, 47.4199519 ], + [ 7.3738783, 47.419811 ], + [ 7.3735399, 47.4196577 ], + [ 7.3736013, 47.419513 ], + [ 7.3734566, 47.4194646 ], + [ 7.3729859, 47.4193499 ], + [ 7.3727257999999996, 47.4192956 ], + [ 7.3725591, 47.4194172 ], + [ 7.3723709, 47.4194234 ], + [ 7.3719102, 47.4194263 ], + [ 7.3716072, 47.4193691 ], + [ 7.3711322, 47.4192717 ], + [ 7.3707101, 47.4192654 ], + [ 7.3703954, 47.4193341 ], + [ 7.3702328999999995, 47.4194518 ], + [ 7.3701023, 47.4196103 ], + [ 7.3699261, 47.419923 ], + [ 7.3699117, 47.4199484 ], + [ 7.3698425, 47.4200713 ], + [ 7.3696699, 47.4201221 ], + [ 7.3697392, 47.420671 ], + [ 7.3701466, 47.4206656 ], + [ 7.3705967, 47.4206697 ], + [ 7.3710504, 47.4206276 ], + [ 7.3719136, 47.420589 ], + [ 7.3722033, 47.4205431 ], + [ 7.3723694, 47.4205504 ], + [ 7.372864, 47.4205724 ], + [ 7.3733433999999995, 47.4199889 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr054", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Undere Ritzigrund", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Undere Ritzigrund", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Undere Ritzigrund", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Undere Ritzigrund", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8342022, 47.4890158 ], + [ 7.8339671, 47.4890208 ], + [ 7.8338791, 47.4890223 ], + [ 7.8336392, 47.489042 ], + [ 7.8334039, 47.4890787 ], + [ 7.8332907, 47.4891026 ], + [ 7.8332344, 47.4891176 ], + [ 7.8331808, 47.4891365 ], + [ 7.8331303, 47.489159 ], + [ 7.8330836999999995, 47.4891849 ], + [ 7.8330411, 47.4892141 ], + [ 7.8330034, 47.4892461 ], + [ 7.8329709, 47.4892806 ], + [ 7.8329438, 47.4893172 ], + [ 7.8329225000000005, 47.4893555 ], + [ 7.8329073000000005, 47.4893951 ], + [ 7.8329004, 47.4894222 ], + [ 7.8328836, 47.4895089 ], + [ 7.8328723, 47.4895661 ], + [ 7.8328587, 47.4896343 ], + [ 7.8328162, 47.4897133 ], + [ 7.8325724, 47.4899763 ], + [ 7.8322255, 47.4903086 ], + [ 7.8319753, 47.490559 ], + [ 7.8317008999999995, 47.4908461 ], + [ 7.831609, 47.4909419 ], + [ 7.8316484, 47.4909182 ], + [ 7.8319574, 47.4908042 ], + [ 7.8320748, 47.4907606 ], + [ 7.8322338, 47.4907631 ], + [ 7.8323545, 47.4907753 ], + [ 7.8324701, 47.4908061 ], + [ 7.8325664, 47.4908422 ], + [ 7.8330823, 47.4910763 ], + [ 7.8333624, 47.4911059 ], + [ 7.8336809, 47.4913289 ], + [ 7.8337767, 47.4913738 ], + [ 7.8339207, 47.4912602 ], + [ 7.8340682, 47.4911435 ], + [ 7.8341711, 47.4910776 ], + [ 7.8342023, 47.4910554 ], + [ 7.8342298, 47.4910311 ], + [ 7.8342535, 47.4910051 ], + [ 7.8342729, 47.4909775 ], + [ 7.8342767, 47.4909712 ], + [ 7.8348967, 47.4912618 ], + [ 7.8349429, 47.491281 ], + [ 7.8354079, 47.491492 ], + [ 7.8354462, 47.49151 ], + [ 7.8353368, 47.4915864 ], + [ 7.835156, 47.4916857 ], + [ 7.834987, 47.4917965 ], + [ 7.8348518, 47.4918962 ], + [ 7.8348002999999995, 47.4919302 ], + [ 7.8347439, 47.4919603 ], + [ 7.8346831, 47.4919863 ], + [ 7.8346518, 47.4919974 ], + [ 7.8342683, 47.4921246 ], + [ 7.8342491, 47.4921319 ], + [ 7.8342313, 47.4921404 ], + [ 7.8342148, 47.4921501 ], + [ 7.8341999, 47.492161 ], + [ 7.8341867, 47.4921728 ], + [ 7.8341826, 47.4921771 ], + [ 7.8341313, 47.4922392 ], + [ 7.8340899, 47.4923047 ], + [ 7.8340586, 47.4923728 ], + [ 7.8340575, 47.4923761 ], + [ 7.8340285, 47.4924364 ], + [ 7.8340446, 47.492504 ], + [ 7.8340451, 47.4925718 ], + [ 7.8340742, 47.4926491 ], + [ 7.8341031999999995, 47.4927006 ], + [ 7.8341656, 47.4927778 ], + [ 7.8342328, 47.4928486 ], + [ 7.8343095, 47.4929193 ], + [ 7.8343576, 47.4929869 ], + [ 7.8344057, 47.4930577 ], + [ 7.8344732, 47.4931704 ], + [ 7.8345357, 47.4932605 ], + [ 7.8346079, 47.4933667 ], + [ 7.8346657, 47.4934504 ], + [ 7.8346933, 47.4934934 ], + [ 7.8347179, 47.4935275 ], + [ 7.8347424, 47.4935616 ], + [ 7.8349648, 47.4937049 ], + [ 7.8351932, 47.493809 ], + [ 7.8352468, 47.4938302 ], + [ 7.8354925, 47.4939141 ], + [ 7.8355498, 47.4939306 ], + [ 7.8356258, 47.4939486 ], + [ 7.8357042, 47.4939611 ], + [ 7.8357212, 47.4939631 ], + [ 7.8358495999999995, 47.4939768 ], + [ 7.8359882, 47.4939971 ], + [ 7.8361227, 47.4940272 ], + [ 7.836252, 47.4940667 ], + [ 7.8363508, 47.4941047 ], + [ 7.8367494, 47.4942736 ], + [ 7.8369451, 47.4943605 ], + [ 7.8371014, 47.4944399 ], + [ 7.8372385, 47.4944293 ], + [ 7.8373764, 47.4944251 ], + [ 7.8375144, 47.4944273 ], + [ 7.8376519, 47.4944359 ], + [ 7.8377881, 47.4944509 ], + [ 7.8379226, 47.4944722 ], + [ 7.8380545, 47.4944997 ], + [ 7.8381834, 47.4945332 ], + [ 7.8383085, 47.4945727 ], + [ 7.8386658, 47.4943163 ], + [ 7.8392579, 47.4940853 ], + [ 7.8394746, 47.4939916 ], + [ 7.8397824, 47.4936906 ], + [ 7.8401633, 47.4933479 ], + [ 7.8408479, 47.4932172 ], + [ 7.8408483, 47.4932228 ], + [ 7.8408523, 47.493223 ], + [ 7.8408779, 47.493224 ], + [ 7.8410467, 47.4932307 ], + [ 7.8410485, 47.4932307 ], + [ 7.8410751, 47.4932296 ], + [ 7.8410842, 47.4932819 ], + [ 7.8410904, 47.4933177 ], + [ 7.8410923, 47.4933288 ], + [ 7.8411048, 47.4934005 ], + [ 7.8412901999999995, 47.4934237 ], + [ 7.841362, 47.4934326 ], + [ 7.8415398, 47.4934549 ], + [ 7.8417552, 47.4934314 ], + [ 7.841891, 47.4934165 ], + [ 7.8419444, 47.4934107 ], + [ 7.8419338, 47.4933836 ], + [ 7.8419053, 47.4933313 ], + [ 7.8418313, 47.4932135 ], + [ 7.8418227, 47.4931979 ], + [ 7.8418051, 47.4931662 ], + [ 7.8417847, 47.4931175 ], + [ 7.8417705, 47.4930679 ], + [ 7.8417624, 47.4930177 ], + [ 7.8417604999999995, 47.4929671 ], + [ 7.8417621, 47.4929489 ], + [ 7.8417648, 47.4929167 ], + [ 7.8417685, 47.4928901 ], + [ 7.8417783, 47.4928242 ], + [ 7.8417951, 47.4927111 ], + [ 7.841791, 47.4926525 ], + [ 7.8417904, 47.4926445 ], + [ 7.8417346, 47.4925683 ], + [ 7.8416772, 47.4925102 ], + [ 7.8416149, 47.4924472 ], + [ 7.8415301, 47.4923374 ], + [ 7.8413845, 47.4922201 ], + [ 7.8413452, 47.4921884 ], + [ 7.8412316, 47.4920959 ], + [ 7.8411956, 47.4920642 ], + [ 7.8411639, 47.4920304 ], + [ 7.8411366000000005, 47.4919949 ], + [ 7.8411139, 47.491958 ], + [ 7.8410468, 47.4918311 ], + [ 7.8409142, 47.4915456 ], + [ 7.8408904, 47.4914998 ], + [ 7.8408622, 47.4914552 ], + [ 7.8408296, 47.491412 ], + [ 7.8407346, 47.4912843 ], + [ 7.8404021, 47.4911163 ], + [ 7.8400831, 47.4910303 ], + [ 7.8399342, 47.4910047 ], + [ 7.8397567, 47.4909492 ], + [ 7.8396526, 47.4908767 ], + [ 7.8395796, 47.4908435 ], + [ 7.8394448, 47.4907316 ], + [ 7.8392364, 47.4905433 ], + [ 7.8391859, 47.49036 ], + [ 7.8392001, 47.4901251 ], + [ 7.8393847999999995, 47.489637 ], + [ 7.8396687, 47.489009 ], + [ 7.8397883, 47.4887071 ], + [ 7.8397673999999995, 47.4885395 ], + [ 7.8396334, 47.4882846 ], + [ 7.8395237, 47.4881862 ], + [ 7.8390613, 47.4882851 ], + [ 7.8371501, 47.4885178 ], + [ 7.8360251, 47.488692 ], + [ 7.8356902999999996, 47.488798 ], + [ 7.8353528, 47.4889243 ], + [ 7.8352646, 47.4889532 ], + [ 7.8351724, 47.4889757 ], + [ 7.8350774, 47.4889916 ], + [ 7.8349803, 47.4890005 ], + [ 7.8349204, 47.4890027 ], + [ 7.8342022, 47.4890158 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr095", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Wid", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Wid", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Wid", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Wid", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8410957, 47.468056 ], + [ 7.8411258, 47.4679825 ], + [ 7.8411724, 47.4678689 ], + [ 7.8411915, 47.4678223 ], + [ 7.8412043, 47.4677912 ], + [ 7.841195, 47.4677813 ], + [ 7.8408574, 47.4676321 ], + [ 7.8405919, 47.4675354 ], + [ 7.8403069, 47.467443 ], + [ 7.8397013, 47.4674147 ], + [ 7.8396334, 47.4675909 ], + [ 7.8395984, 47.4676818 ], + [ 7.8395936, 47.4676944 ], + [ 7.8392794, 47.4680005 ], + [ 7.8392668, 47.4680113 ], + [ 7.8391894, 47.4680769 ], + [ 7.8391921, 47.4681198 ], + [ 7.839197, 47.4681969 ], + [ 7.8392705, 47.4683785 ], + [ 7.8391932, 47.4684919 ], + [ 7.8391993, 47.4685847 ], + [ 7.8392012, 47.468614 ], + [ 7.8392019, 47.4686247 ], + [ 7.8392393, 47.4686168 ], + [ 7.8392416, 47.4686227 ], + [ 7.8392472, 47.4686374 ], + [ 7.8392452, 47.4686455 ], + [ 7.8392405, 47.4686639 ], + [ 7.8392359, 47.4686822 ], + [ 7.8392343, 47.4686885 ], + [ 7.8390922, 47.4686959 ], + [ 7.839091, 47.468696 ], + [ 7.8390767, 47.4686967 ], + [ 7.8387454, 47.46877 ], + [ 7.8386517, 47.4688422 ], + [ 7.8386484, 47.4688616 ], + [ 7.8385275, 47.4695678 ], + [ 7.8385979, 47.4697496 ], + [ 7.838677, 47.469834 ], + [ 7.8387867, 47.4698627 ], + [ 7.8389111, 47.4698739 ], + [ 7.8390272, 47.4698639 ], + [ 7.8391873, 47.4698501 ], + [ 7.8392915, 47.4697792 ], + [ 7.8392945, 47.4696811 ], + [ 7.8392983, 47.4695542 ], + [ 7.839323, 47.469539 ], + [ 7.8393301, 47.4694633 ], + [ 7.8393089, 47.4693709 ], + [ 7.8393326, 47.4692687 ], + [ 7.8399162, 47.4691728 ], + [ 7.8399654, 47.4691176 ], + [ 7.8401451, 47.4691027 ], + [ 7.8402638, 47.4690929 ], + [ 7.8405059, 47.4690728 ], + [ 7.8405622, 47.4690449 ], + [ 7.84073, 47.4689477 ], + [ 7.8407496, 47.4689 ], + [ 7.8407644, 47.4688639 ], + [ 7.8408203, 47.4687276 ], + [ 7.8408321, 47.4686987 ], + [ 7.8408937, 47.4685486 ], + [ 7.8408958, 47.4685434 ], + [ 7.8410957, 47.468056 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr071", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Chriesmatt", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Chriesmatt", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Chriesmatt", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Chriesmatt", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7301952, 47.3958983 ], + [ 7.7302342, 47.3959244 ], + [ 7.7304022, 47.3960597 ], + [ 7.7305122, 47.3961676 ], + [ 7.7305437, 47.3961985 ], + [ 7.7305547, 47.3962093 ], + [ 7.7306632, 47.3963233 ], + [ 7.7307568, 47.3964933 ], + [ 7.7307397, 47.3965014 ], + [ 7.7308219, 47.3966828 ], + [ 7.7309322, 47.3967498 ], + [ 7.7310331, 47.3967955 ], + [ 7.7314225, 47.3969718 ], + [ 7.7317827999999995, 47.3971463 ], + [ 7.7323104, 47.3974048 ], + [ 7.73241, 47.3974588 ], + [ 7.7327395, 47.3976322 ], + [ 7.733409, 47.397951 ], + [ 7.7334172, 47.3979549 ], + [ 7.7335335, 47.3978375 ], + [ 7.7337561, 47.3976129 ], + [ 7.7342032, 47.3973347 ], + [ 7.7344167, 47.3972562 ], + [ 7.7346687, 47.3972304 ], + [ 7.7350284, 47.3967634 ], + [ 7.7350471, 47.3967391 ], + [ 7.7351849999999995, 47.3964238 ], + [ 7.7352521, 47.3964091 ], + [ 7.7353188, 47.3963554 ], + [ 7.7353698, 47.396300600000004 ], + [ 7.7355838, 47.3962156 ], + [ 7.7356031, 47.3960939 ], + [ 7.7356205, 47.3959835 ], + [ 7.7357043, 47.3958711 ], + [ 7.7358066, 47.3957405 ], + [ 7.7358832, 47.3956793 ], + [ 7.7360293, 47.3955498 ], + [ 7.7360839, 47.3954681 ], + [ 7.7361594, 47.3953781 ], + [ 7.7361168, 47.3950761 ], + [ 7.736091, 47.3949845 ], + [ 7.7360685, 47.3949048 ], + [ 7.7360688, 47.394822 ], + [ 7.7360221, 47.3947271 ], + [ 7.7359981, 47.3946447 ], + [ 7.7359348, 47.3945356 ], + [ 7.7362374, 47.3944713 ], + [ 7.7363169, 47.3944404 ], + [ 7.7364293, 47.3943853 ], + [ 7.7364703, 47.3943743 ], + [ 7.7364695, 47.3943734 ], + [ 7.736944, 47.3940375 ], + [ 7.7371362, 47.3939015 ], + [ 7.7371405, 47.3938973 ], + [ 7.7371572, 47.3938815 ], + [ 7.7371187, 47.393855 ], + [ 7.7370788, 47.3938294 ], + [ 7.7370376, 47.3938047 ], + [ 7.7369953, 47.393781 ], + [ 7.7369517, 47.3937584 ], + [ 7.7369071, 47.3937367 ], + [ 7.7368614, 47.3937161 ], + [ 7.7368146, 47.3936966 ], + [ 7.7367669, 47.3936782 ], + [ 7.7367183, 47.393661 ], + [ 7.7367016, 47.3936558 ], + [ 7.7363675, 47.3935925 ], + [ 7.7363544, 47.3935941 ], + [ 7.7359843, 47.3935023 ], + [ 7.735877, 47.393469 ], + [ 7.7358404, 47.3934513 ], + [ 7.7358158, 47.3934394 ], + [ 7.7356277, 47.3933935 ], + [ 7.7356161, 47.3933896 ], + [ 7.7355865, 47.3934015 ], + [ 7.7354574, 47.3933748 ], + [ 7.7354415, 47.3933745 ], + [ 7.7353837, 47.3933732 ], + [ 7.735388, 47.3933625 ], + [ 7.7352951999999995, 47.3933305 ], + [ 7.7351522, 47.3932879 ], + [ 7.7351412, 47.3932847 ], + [ 7.7351075, 47.3932785 ], + [ 7.7351083, 47.3932593 ], + [ 7.7351138, 47.3932345 ], + [ 7.7349803, 47.3932098 ], + [ 7.7347937, 47.3931878 ], + [ 7.734439, 47.393186299999996 ], + [ 7.7342683, 47.3932008 ], + [ 7.7338365, 47.3932396 ], + [ 7.7335858, 47.3932616 ], + [ 7.7330516, 47.3933418 ], + [ 7.7328877, 47.393363 ], + [ 7.7319893, 47.3934787 ], + [ 7.7310303000000005, 47.3935988 ], + [ 7.7308689, 47.3939064 ], + [ 7.7307266, 47.3941588 ], + [ 7.7306127, 47.3943822 ], + [ 7.7305029, 47.3949144 ], + [ 7.7304679, 47.3950841 ], + [ 7.7304077, 47.3952638 ], + [ 7.7302979, 47.3955915 ], + [ 7.7302143999999995, 47.395841 ], + [ 7.7301952, 47.3958983 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr018", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Fuchsloch", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Fuchsloch", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Fuchsloch", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Fuchsloch", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4347711, 47.3979221 ], + [ 7.4355477, 47.3978036 ], + [ 7.4362545, 47.3976915 ], + [ 7.4371469, 47.3976637 ], + [ 7.4365697, 47.3970746 ], + [ 7.4362681, 47.3963669 ], + [ 7.4360102999999995, 47.3963463 ], + [ 7.4355934, 47.3964245 ], + [ 7.435045, 47.3965275 ], + [ 7.4350004, 47.3967039 ], + [ 7.4344412, 47.3969303 ], + [ 7.4344278, 47.3969535 ], + [ 7.4344101, 47.3969775 ], + [ 7.4343731, 47.3970072 ], + [ 7.4343256, 47.3970386 ], + [ 7.4342238, 47.3970854 ], + [ 7.4340842, 47.3971708 ], + [ 7.4340678, 47.3971979 ], + [ 7.4340417, 47.3972165 ], + [ 7.4340046, 47.3972298 ], + [ 7.4339718, 47.3972355 ], + [ 7.433944, 47.3972367 ], + [ 7.4339137, 47.3972264 ], + [ 7.4338624, 47.3972247 ], + [ 7.4338128, 47.3972344 ], + [ 7.4337127, 47.3972726 ], + [ 7.4336, 47.3972966 ], + [ 7.4335638, 47.397292 ], + [ 7.4334999, 47.3972966 ], + [ 7.433351, 47.3973034 ], + [ 7.4333013, 47.3973063 ], + [ 7.4332241, 47.3973204 ], + [ 7.4332358, 47.3973535 ], + [ 7.4332253, 47.3973969 ], + [ 7.4332047, 47.39744 ], + [ 7.4331702, 47.3974943 ], + [ 7.4331281, 47.397546 ], + [ 7.4330857, 47.3975874 ], + [ 7.4330524, 47.3976276 ], + [ 7.4330066, 47.3976636 ], + [ 7.4329422, 47.3977053 ], + [ 7.4329023, 47.3977476 ], + [ 7.4328253, 47.3978035 ], + [ 7.4327445, 47.3978441 ], + [ 7.4326436, 47.39789 ], + [ 7.432557, 47.3978258 ], + [ 7.4323261, 47.3979494 ], + [ 7.432256, 47.3979021 ], + [ 7.4321137, 47.3979945 ], + [ 7.4315529, 47.39828 ], + [ 7.4311659, 47.3984628 ], + [ 7.4311042, 47.3984056 ], + [ 7.4310482, 47.3984018 ], + [ 7.4308799, 47.3984323 ], + [ 7.4307563, 47.3984783 ], + [ 7.4305378, 47.3985084 ], + [ 7.4304425, 47.3985122 ], + [ 7.4303696, 47.3984665 ], + [ 7.4302631, 47.3983827 ], + [ 7.4302174, 47.3983393 ], + [ 7.4298812, 47.3985001 ], + [ 7.4291867, 47.3988225 ], + [ 7.4290423, 47.3988896 ], + [ 7.4290129, 47.3989032 ], + [ 7.4289487, 47.3989563 ], + [ 7.4289148, 47.3989794 ], + [ 7.4288827, 47.3990012 ], + [ 7.4288215, 47.3990391 ], + [ 7.4287461, 47.399079 ], + [ 7.4286918, 47.3991076 ], + [ 7.42864, 47.3991306 ], + [ 7.4285684, 47.3991552 ], + [ 7.4284778, 47.3991869 ], + [ 7.4283831, 47.3992182 ], + [ 7.4282955, 47.3992473 ], + [ 7.428183, 47.3992835 ], + [ 7.4281009000000005, 47.3993094 ], + [ 7.4280155, 47.3993419 ], + [ 7.4279096, 47.399387 ], + [ 7.4277307, 47.3994634 ], + [ 7.427581, 47.3995275 ], + [ 7.4274772, 47.399574 ], + [ 7.4274961, 47.3995837 ], + [ 7.4272358, 47.3996736 ], + [ 7.4268954, 47.3997998 ], + [ 7.4268177, 47.3998291 ], + [ 7.4267554, 47.3998527 ], + [ 7.4264535, 47.39998 ], + [ 7.4262806999999995, 47.4000458 ], + [ 7.4261959, 47.4000658 ], + [ 7.4261192, 47.400075 ], + [ 7.4259489, 47.4001103 ], + [ 7.4258116, 47.4001676 ], + [ 7.4257905, 47.4001792 ], + [ 7.42577, 47.4001913 ], + [ 7.42575, 47.4002038 ], + [ 7.4257307, 47.4002167 ], + [ 7.425712, 47.4002301 ], + [ 7.425694, 47.4002438 ], + [ 7.4256766, 47.400258 ], + [ 7.4256599, 47.4002725 ], + [ 7.4256439, 47.4002874 ], + [ 7.4256259, 47.4003044 ], + [ 7.4256152, 47.4003135 ], + [ 7.4256053, 47.4003231 ], + [ 7.4255962, 47.4003329 ], + [ 7.4255878, 47.4003431 ], + [ 7.4255803, 47.4003536 ], + [ 7.4255736, 47.4003644 ], + [ 7.4255677, 47.4003753 ], + [ 7.4255627, 47.4003865 ], + [ 7.4255586, 47.4003978 ], + [ 7.4255553, 47.4004092 ], + [ 7.425553, 47.4004208 ], + [ 7.4255516, 47.4004324 ], + [ 7.4255511, 47.4004441 ], + [ 7.4255515, 47.4004558 ], + [ 7.4255528, 47.4004674 ], + [ 7.425555, 47.400479 ], + [ 7.4256423, 47.4008715 ], + [ 7.4256434, 47.4008975 ], + [ 7.4256473, 47.4009916 ], + [ 7.4256202, 47.4011127 ], + [ 7.4257233, 47.4012386 ], + [ 7.426351, 47.4011964 ], + [ 7.426472, 47.4011969 ], + [ 7.4265672, 47.4011933 ], + [ 7.4272114, 47.4012526 ], + [ 7.4273418, 47.4012618 ], + [ 7.4274293, 47.4012393 ], + [ 7.4281115, 47.4012246 ], + [ 7.4284236, 47.4012173 ], + [ 7.428434, 47.4007565 ], + [ 7.4286526, 47.4007365 ], + [ 7.4290322, 47.4006862 ], + [ 7.4294582, 47.4005983 ], + [ 7.4299132, 47.4004414 ], + [ 7.4302798, 47.4002899 ], + [ 7.4306342, 47.400064 ], + [ 7.4309398, 47.3997623 ], + [ 7.4313287, 47.3995234 ], + [ 7.4317639, 47.3991777 ], + [ 7.4323287, 47.3988823 ], + [ 7.4326621, 47.3987314 ], + [ 7.4329862, 47.3986183 ], + [ 7.4331806, 47.3985428 ], + [ 7.4331991, 47.3985051 ], + [ 7.433185, 47.3984141 ], + [ 7.4347711, 47.3979221 ] + ], + [ + [ 7.4257565, 47.4003342 ], + [ 7.4260452, 47.4003531 ], + [ 7.4260232, 47.4004873 ], + [ 7.4257463999999995, 47.4004714 ], + [ 7.4257565, 47.4003342 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns007", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Chestel", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Chestel", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Chestel", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Chestel", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.6717797, 46.7701564 ], + [ 8.6717711, 46.7700152 ], + [ 8.6717517, 46.7698745 ], + [ 8.671721699999999, 46.7697348 ], + [ 8.671681, 46.7695963 ], + [ 8.6716299, 46.7694594 ], + [ 8.6715684, 46.7693246 ], + [ 8.6714967, 46.7691922 ], + [ 8.6714151, 46.7690625 ], + [ 8.671323600000001, 46.768936 ], + [ 8.6712227, 46.7688129 ], + [ 8.6711125, 46.7686936 ], + [ 8.6709934, 46.7685784 ], + [ 8.6708657, 46.7684677 ], + [ 8.6707297, 46.7683617 ], + [ 8.6705858, 46.7682608 ], + [ 8.6704345, 46.7681652 ], + [ 8.6702761, 46.7680751 ], + [ 8.670111, 46.7679909 ], + [ 8.6699397, 46.7679127 ], + [ 8.6697627, 46.7678408 ], + [ 8.6695805, 46.7677753 ], + [ 8.6693936, 46.7677165 ], + [ 8.6692024, 46.7676645 ], + [ 8.6690075, 46.7676194 ], + [ 8.6688095, 46.7675814 ], + [ 8.6686088, 46.7675506 ], + [ 8.6684061, 46.767527 ], + [ 8.6682018, 46.7675108 ], + [ 8.6679966, 46.7675019 ], + [ 8.667791, 46.7675004 ], + [ 8.6675856, 46.7675063 ], + [ 8.6673809, 46.7675196 ], + [ 8.6671775, 46.7675402 ], + [ 8.6669759, 46.7675682 ], + [ 8.6667767, 46.7676033 ], + [ 8.6665805, 46.7676455 ], + [ 8.6663878, 46.7676948 ], + [ 8.6661991, 46.7677509 ], + [ 8.6660149, 46.7678137 ], + [ 8.6658358, 46.767883 ], + [ 8.6656622, 46.7679587 ], + [ 8.6654946, 46.7680406 ], + [ 8.6653334, 46.7681283 ], + [ 8.6651792, 46.7682217 ], + [ 8.6650322, 46.7683206 ], + [ 8.6648931, 46.7684246 ], + [ 8.664762, 46.7685334 ], + [ 8.6646394, 46.7686468 ], + [ 8.6645256, 46.7687645 ], + [ 8.6644209, 46.7688861 ], + [ 8.6643256, 46.7690113 ], + [ 8.66424, 46.7691398 ], + [ 8.6641643, 46.7692711 ], + [ 8.6640987, 46.769405 ], + [ 8.6640434, 46.7695411 ], + [ 8.6639985, 46.769679 ], + [ 8.6639642, 46.7698183 ], + [ 8.6639405, 46.7699586 ], + [ 8.6639276, 46.7700996 ], + [ 8.6639254, 46.7702409 ], + [ 8.663934, 46.7703821 ], + [ 8.6639533, 46.7705227 ], + [ 8.6639834, 46.7706625 ], + [ 8.664024, 46.770801 ], + [ 8.6640751, 46.7709378 ], + [ 8.664136599999999, 46.7710727 ], + [ 8.6642082, 46.7712051 ], + [ 8.6642899, 46.7713348 ], + [ 8.6643813, 46.7714613 ], + [ 8.6644822, 46.7715844 ], + [ 8.6645924, 46.7717037 ], + [ 8.6647115, 46.7718189 ], + [ 8.6648392, 46.7719296 ], + [ 8.6649752, 46.7720356 ], + [ 8.6651191, 46.7721365 ], + [ 8.6652704, 46.7722322 ], + [ 8.6654288, 46.7723223 ], + [ 8.6655939, 46.7724065 ], + [ 8.6657652, 46.7724847 ], + [ 8.6659422, 46.7725566 ], + [ 8.6661244, 46.7726221 ], + [ 8.6663114, 46.7726809 ], + [ 8.6665026, 46.7727329 ], + [ 8.6666975, 46.772778 ], + [ 8.6668955, 46.772816 ], + [ 8.6670962, 46.772846799999996 ], + [ 8.667299, 46.7728704 ], + [ 8.6675032, 46.7728866 ], + [ 8.6677084, 46.7728955 ], + [ 8.6679141, 46.772897 ], + [ 8.6681195, 46.7728911 ], + [ 8.6683243, 46.7728778 ], + [ 8.6685277, 46.7728572 ], + [ 8.6687293, 46.7728292 ], + [ 8.6689284, 46.7727941 ], + [ 8.6691247, 46.7727519 ], + [ 8.6693174, 46.7727026 ], + [ 8.6695061, 46.7726465 ], + [ 8.6696903, 46.7725837 ], + [ 8.6698695, 46.7725143 ], + [ 8.670043100000001, 46.7724386 ], + [ 8.6702107, 46.7723568 ], + [ 8.6703719, 46.772269 ], + [ 8.6705261, 46.7721756 ], + [ 8.670673, 46.7720768 ], + [ 8.6708122, 46.7719728 ], + [ 8.6709433, 46.7718639 ], + [ 8.6710659, 46.7717505 ], + [ 8.6711797, 46.7716328 ], + [ 8.6712844, 46.7715112 ], + [ 8.6713796, 46.771386 ], + [ 8.6714652, 46.7712575 ], + [ 8.6715409, 46.7711262 ], + [ 8.6716065, 46.7709923 ], + [ 8.6716618, 46.7708562 ], + [ 8.6717067, 46.7707183 ], + [ 8.671741, 46.770579 ], + [ 8.6717646, 46.7704386 ], + [ 8.6717775, 46.7702976 ], + [ 8.6717797, 46.7701564 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0089", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Plattischachen", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Plattischachen", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Plattischachen", + "lang" : "it-CH" + }, + { + "text" : "Substation Plattischachen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5701354, 47.4390485 ], + [ 7.5674792, 47.4397355 ], + [ 7.5647835, 47.4410344 ], + [ 7.5640234, 47.4413268 ], + [ 7.5638702, 47.4414311 ], + [ 7.562808, 47.4416485 ], + [ 7.5616989, 47.4420021 ], + [ 7.5614749, 47.4421305 ], + [ 7.5608733, 47.4424115 ], + [ 7.5609327, 47.4425557 ], + [ 7.5602751999999995, 47.4425739 ], + [ 7.5602461, 47.4425859 ], + [ 7.5599536, 47.4426962 ], + [ 7.5599468, 47.4426967 ], + [ 7.5598304, 47.4427557 ], + [ 7.5596514, 47.442897 ], + [ 7.5595154, 47.4430626 ], + [ 7.559398, 47.4431805 ], + [ 7.5593792, 47.4434077 ], + [ 7.5593462, 47.4437217 ], + [ 7.5595647, 47.4439162 ], + [ 7.5597027, 47.4440406 ], + [ 7.5597259, 47.4441691 ], + [ 7.5598411, 47.4443559 ], + [ 7.5599621, 47.444527 ], + [ 7.5603295, 47.4445812 ], + [ 7.5605247, 47.4446082 ], + [ 7.5606166, 47.4446237 ], + [ 7.560668, 47.4445458 ], + [ 7.560398, 47.4444331 ], + [ 7.5601969, 47.444301 ], + [ 7.560408, 47.4437557 ], + [ 7.5605681, 47.4434791 ], + [ 7.5606653999999995, 47.4433592 ], + [ 7.5607572, 47.4433903 ], + [ 7.560683, 47.4435344 ], + [ 7.560689, 47.4436785 ], + [ 7.5609703, 47.4436821 ], + [ 7.561554, 47.4438136 ], + [ 7.562006, 47.4435982 ], + [ 7.5624933, 47.4434031 ], + [ 7.5638036, 47.4429267 ], + [ 7.5641954, 47.4427984 ], + [ 7.5648933, 47.4426169 ], + [ 7.5656888, 47.4422656 ], + [ 7.5658464, 47.4421633 ], + [ 7.5660397, 47.4420171 ], + [ 7.566312, 47.4419048 ], + [ 7.5666635, 47.4418606 ], + [ 7.5668785, 47.4417679 ], + [ 7.5676601, 47.4416405 ], + [ 7.5676672, 47.4416403 ], + [ 7.5693351, 47.4412205 ], + [ 7.5718143, 47.4405105 ], + [ 7.5714676, 47.4402036 ], + [ 7.5701354, 47.4390485 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr020", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Cholholz", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Cholholz", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Cholholz", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Cholholz", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.2224876, 47.4264687 ], + [ 8.2224801, 47.4263276 ], + [ 8.2224617, 47.4261869 ], + [ 8.2224325, 47.426047 ], + [ 8.2223925, 47.4259084 ], + [ 8.2223419, 47.4257713 ], + [ 8.2222808, 47.4256363 ], + [ 8.2222093, 47.4255036 ], + [ 8.222127799999999, 47.4253737 ], + [ 8.2220363, 47.4252468 ], + [ 8.2219351, 47.4251233 ], + [ 8.2218246, 47.4250036 ], + [ 8.221705, 47.424888 ], + [ 8.2215766, 47.4247768 ], + [ 8.2214399, 47.4246703 ], + [ 8.2212951, 47.4245688 ], + [ 8.2211427, 47.4244726 ], + [ 8.2209831, 47.4243819 ], + [ 8.2208167, 47.424297 ], + [ 8.220644, 47.4242182 ], + [ 8.2204654, 47.4241456 ], + [ 8.2202815, 47.4240794 ], + [ 8.2200927, 47.4240199 ], + [ 8.2198996, 47.4239671 ], + [ 8.2197027, 47.4239213 ], + [ 8.2195026, 47.4238825 ], + [ 8.2192997, 47.4238509 ], + [ 8.2190947, 47.4238265 ], + [ 8.2188881, 47.4238095 ], + [ 8.2186804, 47.4237998 ], + [ 8.2184723, 47.4237975 ], + [ 8.2182643, 47.4238026 ], + [ 8.2180569, 47.4238151 ], + [ 8.2178508, 47.4238349 ], + [ 8.2176465, 47.4238621 ], + [ 8.2174446, 47.4238964 ], + [ 8.2172457, 47.4239379 ], + [ 8.2170502, 47.4239863 ], + [ 8.2168586, 47.4240417 ], + [ 8.2166717, 47.4241038 ], + [ 8.2164897, 47.4241724 ], + [ 8.2163133, 47.4242474 ], + [ 8.216143, 47.4243285 ], + [ 8.2159791, 47.4244156 ], + [ 8.2158222, 47.4245085 ], + [ 8.2156726, 47.4246067 ], + [ 8.2155308, 47.4247101 ], + [ 8.2153972, 47.4248184 ], + [ 8.2152721, 47.4249314 ], + [ 8.2151559, 47.4250486 ], + [ 8.2150489, 47.4251697 ], + [ 8.2149514, 47.4252945 ], + [ 8.2148637, 47.4254226 ], + [ 8.2147859, 47.4255537 ], + [ 8.2147184, 47.4256873 ], + [ 8.2146612, 47.4258231 ], + [ 8.2146146, 47.4259608 ], + [ 8.2145787, 47.4261 ], + [ 8.2145536, 47.4262402 ], + [ 8.2145393, 47.4263811 ], + [ 8.2145359, 47.4265224 ], + [ 8.2145434, 47.4266635 ], + [ 8.2145618, 47.4268042 ], + [ 8.214591, 47.4269441 ], + [ 8.214631, 47.4270828 ], + [ 8.2146816, 47.4272198 ], + [ 8.2147427, 47.4273548 ], + [ 8.2148141, 47.4274875 ], + [ 8.2148956, 47.4276175 ], + [ 8.2149871, 47.4277444 ], + [ 8.2150882, 47.4278678 ], + [ 8.2151988, 47.4279876 ], + [ 8.2153184, 47.4281032 ], + [ 8.2154467, 47.4282144 ], + [ 8.2155835, 47.4283209 ], + [ 8.2157283, 47.4284224 ], + [ 8.2158807, 47.4285186 ], + [ 8.2160403, 47.4286093 ], + [ 8.2162067, 47.4286942 ], + [ 8.2163794, 47.428773 ], + [ 8.216558, 47.4288456 ], + [ 8.2167419, 47.4289118 ], + [ 8.2169307, 47.4289714 ], + [ 8.2171238, 47.4290241 ], + [ 8.2173207, 47.4290699 ], + [ 8.2175208, 47.4291087 ], + [ 8.2177237, 47.4291403 ], + [ 8.2179288, 47.4291647 ], + [ 8.2181354, 47.4291817 ], + [ 8.2183431, 47.4291914 ], + [ 8.2185513, 47.4291937 ], + [ 8.2187593, 47.4291886 ], + [ 8.2189667, 47.4291761 ], + [ 8.2191728, 47.4291563 ], + [ 8.219377099999999, 47.4291292 ], + [ 8.219579, 47.4290948 ], + [ 8.219778, 47.4290534 ], + [ 8.2199735, 47.4290049 ], + [ 8.2201651, 47.4289495 ], + [ 8.220352, 47.4288875 ], + [ 8.220534, 47.4288188 ], + [ 8.2207104, 47.4287438 ], + [ 8.2208808, 47.4286627 ], + [ 8.2210447, 47.4285755 ], + [ 8.2212016, 47.4284827 ], + [ 8.2213512, 47.4283845 ], + [ 8.2214929, 47.428281 ], + [ 8.2216265, 47.4281727 ], + [ 8.2217516, 47.4280598 ], + [ 8.2218678, 47.4279426 ], + [ 8.2219748, 47.4278214 ], + [ 8.2220723, 47.4276966 ], + [ 8.22216, 47.4275685 ], + [ 8.2222378, 47.4274374 ], + [ 8.2223053, 47.4273038 ], + [ 8.2223624, 47.427168 ], + [ 8.222409, 47.4270303 ], + [ 8.2224449, 47.4268912 ], + [ 8.22247, 47.4267509 ], + [ 8.2224843, 47.42661 ], + [ 8.2224876, 47.4264687 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0016", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Birr", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Birr", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Birr", + "lang" : "it-CH" + }, + { + "text" : "Substation Birr", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.2088402, 46.5327413 ], + [ 7.2088351, 46.5327089 ], + [ 7.2086860999999995, 46.5325098 ], + [ 7.2084111, 46.532189 ], + [ 7.2080709, 46.5318914 ], + [ 7.2077589, 46.5316893 ], + [ 7.2075297, 46.5316492 ], + [ 7.207316, 46.5316308 ], + [ 7.2071977, 46.5315604 ], + [ 7.206995, 46.5314071 ], + [ 7.2068407, 46.5312295 ], + [ 7.2066626, 46.5311095 ], + [ 7.2064611, 46.5309958 ], + [ 7.2062372, 46.5309215 ], + [ 7.2060448, 46.5308186 ], + [ 7.2059007, 46.5306861 ], + [ 7.2056292, 46.5304606 ], + [ 7.2051852, 46.5300477 ], + [ 7.2048957, 46.5297826 ], + [ 7.2048156, 46.5296331 ], + [ 7.2048108, 46.5295198 ], + [ 7.2048297, 46.5293786 ], + [ 7.204872, 46.5292428 ], + [ 7.2048661, 46.5291079 ], + [ 7.2048005, 46.5289009 ], + [ 7.204718, 46.5287001 ], + [ 7.2045703, 46.5284947 ], + [ 7.2043935, 46.5283738 ], + [ 7.2041516, 46.5282725 ], + [ 7.2039211, 46.5282145 ], + [ 7.2035589, 46.5281777 ], + [ 7.2032318, 46.5281788 ], + [ 7.2031316, 46.5281355 ], + [ 7.2029796, 46.5280263 ], + [ 7.2027365, 46.52789 ], + [ 7.2025428, 46.5277699 ], + [ 7.2023166, 46.5276345 ], + [ 7.2021646, 46.5275244 ], + [ 7.2020126, 46.5274099 ], + [ 7.201883, 46.5272378 ], + [ 7.2018174, 46.5270478 ], + [ 7.2017989, 46.5268229 ], + [ 7.2018401, 46.5266413 ], + [ 7.2018149, 46.5264388 ], + [ 7.2017728, 46.5262265 ], + [ 7.2016498, 46.526031 ], + [ 7.2014931, 46.525804 ], + [ 7.2014342, 46.5255736 ], + [ 7.2013662, 46.5253278 ], + [ 7.2012053, 46.5251791 ], + [ 7.2010521, 46.5250411 ], + [ 7.2008439, 46.5249669 ], + [ 7.2006672, 46.524846 ], + [ 7.2003801, 46.5246331 ], + [ 7.2000737, 46.5243635 ], + [ 7.1996448, 46.5241017 ], + [ 7.1992461, 46.523777 ], + [ 7.1989253, 46.5235308 ], + [ 7.1987022, 46.5232928 ], + [ 7.1984647, 46.5230836 ], + [ 7.1982989, 46.522862 ], + [ 7.1981622, 46.5225324 ], + [ 7.1979772, 46.5222208 ], + [ 7.1977988, 46.5218921 ], + [ 7.1975331, 46.521582 ], + [ 7.1972189, 46.5213187 ], + [ 7.1967472, 46.5210073 ], + [ 7.1964814, 46.5207081 ], + [ 7.1962595, 46.5204935 ], + [ 7.1959496, 46.5201618 ], + [ 7.1957132999999995, 46.5199697 ], + [ 7.1953351, 46.5197296 ], + [ 7.1950425, 46.5196004 ], + [ 7.1947072, 46.5194044 ], + [ 7.1945191, 46.5192169 ], + [ 7.1942702, 46.5189294 ], + [ 7.1941225, 46.5187294 ], + [ 7.1938952, 46.5185706 ], + [ 7.1935948, 46.5184251 ], + [ 7.1930031, 46.5181612 ], + [ 7.1924686, 46.5179189 ], + [ 7.1921086, 46.5177175 ], + [ 7.1913477, 46.5171365 ], + [ 7.1907736, 46.516726 ], + [ 7.190375, 46.5164013 ], + [ 7.1900767, 46.5160921 ], + [ 7.1898344, 46.5157983 ], + [ 7.1897079999999995, 46.5155254 ], + [ 7.1895369, 46.5153316 ], + [ 7.1892734, 46.515117 ], + [ 7.1890539, 46.5149591 ], + [ 7.1863823, 46.5130874 ], + [ 7.185583, 46.5123831 ], + [ 7.1853412, 46.5122638 ], + [ 7.1851091, 46.512015 ], + [ 7.1847703, 46.5117345 ], + [ 7.1843562, 46.5114277 ], + [ 7.1839793, 46.5112101 ], + [ 7.1835518, 46.5109599 ], + [ 7.1830906, 46.5106818 ], + [ 7.1825629, 46.5104116 ], + [ 7.1821535, 46.5101939 ], + [ 7.1818902, 46.5099576 ], + [ 7.1816052, 46.5096026 ], + [ 7.1813504, 46.509208 ], + [ 7.1762479, 46.5095435 ], + [ 7.1762146, 46.5097017 ], + [ 7.1761517, 46.5097709 ], + [ 7.1760449, 46.5097724 ], + [ 7.175946, 46.5097353 ], + [ 7.1758369, 46.5096649 ], + [ 7.1756917, 46.5095323 ], + [ 7.1755206, 46.5093439 ], + [ 7.175273, 46.5090959 ], + [ 7.1750658, 46.5088301 ], + [ 7.1749472, 46.5085734 ], + [ 7.1748267, 46.5084346 ], + [ 7.1747188, 46.5083804 ], + [ 7.1746411, 46.5082921 ], + [ 7.1745779, 46.5081471 ], + [ 7.1744339, 46.5080199 ], + [ 7.1743337, 46.5079945 ], + [ 7.1741877, 46.5080139 ], + [ 7.1740597, 46.5080784 ], + [ 7.1739914, 46.5082042 ], + [ 7.1739399, 46.5083345 ], + [ 7.1738681, 46.5083757 ], + [ 7.1737558, 46.5084231 ], + [ 7.1736526, 46.5084813 ], + [ 7.1735335, 46.5085845 ], + [ 7.1734225, 46.5086382 ], + [ 7.1733392, 46.5086173 ], + [ 7.1732873999999995, 46.5085561 ], + [ 7.1732773, 46.508494 ], + [ 7.1732804, 46.5083932 ], + [ 7.1732993, 46.5082574 ], + [ 7.1732946, 46.5081558 ], + [ 7.1732056, 46.5079774 ], + [ 7.1731436, 46.507855 ], + [ 7.1731197, 46.5076867 ], + [ 7.1731048, 46.5075346 ], + [ 7.1732058, 46.5073918 ], + [ 7.1733055, 46.5072607 ], + [ 7.1732785, 46.5071878 ], + [ 7.1732043, 46.5071777 ], + [ 7.1730728, 46.5071639 ], + [ 7.1729974, 46.5071143 ], + [ 7.1729613, 46.5070368 ], + [ 7.172897, 46.5068694 ], + [ 7.1728068, 46.5066793 ], + [ 7.1726906, 46.506456 ], + [ 7.1725407, 46.5062001 ], + [ 7.1724427, 46.5060047 ], + [ 7.1723313, 46.5058722 ], + [ 7.1722343, 46.5057218 ], + [ 7.1721801, 46.5056218 ], + [ 7.172152, 46.5055156 ], + [ 7.1721384, 46.5053698 ], + [ 7.1721651, 46.5052394 ], + [ 7.1721658999999995, 46.5050757 ], + [ 7.1721522, 46.5049407 ], + [ 7.1721137, 46.5048237 ], + [ 7.171981, 46.5047757 ], + [ 7.1718441, 46.5048069 ], + [ 7.1717329, 46.504893 ], + [ 7.1716151, 46.5050141 ], + [ 7.1715119, 46.5050724 ], + [ 7.1713423, 46.5051097 ], + [ 7.1710297, 46.5050991 ], + [ 7.1709335, 46.5053148 ], + [ 7.1705758, 46.5057394 ], + [ 7.170108, 46.5062727 ], + [ 7.1699297, 46.5065016 ], + [ 7.1698692, 46.5066211 ], + [ 7.1698347, 46.5067452 ], + [ 7.1697753, 46.5068872 ], + [ 7.1696901, 46.5069904 ], + [ 7.1695263, 46.5071798 ], + [ 7.1693782, 46.5073576 ], + [ 7.1693358, 46.5075104 ], + [ 7.1692842, 46.5076632 ], + [ 7.1692575, 46.507799 ], + [ 7.1691802, 46.5078852 ], + [ 7.1690207, 46.5079783 ], + [ 7.1690163, 46.50808 ], + [ 7.1691054, 46.5082466 ], + [ 7.1692112, 46.5084421 ], + [ 7.1693847, 46.5086692 ], + [ 7.1695334, 46.5088917 ], + [ 7.1694874, 46.5089663 ], + [ 7.1694729, 46.5090166 ], + [ 7.1694462, 46.5091299 ], + [ 7.1694486, 46.5091803 ], + [ 7.1693362, 46.5092448 ], + [ 7.1692137, 46.5092643 ], + [ 7.1690924, 46.5092775 ], + [ 7.1689892, 46.5093366 ], + [ 7.168697, 46.5094097 ], + [ 7.1684712, 46.5094766 ], + [ 7.1682364, 46.5095318 ], + [ 7.167968, 46.5095429 ], + [ 7.1674665, 46.5095084 ], + [ 7.167098, 46.5094652 ], + [ 7.1670058, 46.5094164 ], + [ 7.1669437, 46.5093218 ], + [ 7.166848, 46.5091768 ], + [ 7.1666141, 46.5090521 ], + [ 7.1663915, 46.5090119 ], + [ 7.1660712, 46.5089788 ], + [ 7.1656452999999996, 46.5089535 ], + [ 7.1652375, 46.5089561 ], + [ 7.1648464, 46.5089866 ], + [ 7.1646587, 46.5090078 ], + [ 7.1645126, 46.5090443 ], + [ 7.1643846, 46.5091142 ], + [ 7.1642849, 46.5092515 ], + [ 7.1642176, 46.5094052 ], + [ 7.1641516, 46.5095814 ], + [ 7.1640451, 46.5097745 ], + [ 7.1639815, 46.5099849 ], + [ 7.1638603, 46.5102292 ], + [ 7.163746, 46.510417 ], + [ 7.1636081, 46.5106451 ], + [ 7.1634599, 46.5108229 ], + [ 7.1633524, 46.5109549 ], + [ 7.1631415, 46.5111783 ], + [ 7.1629124, 46.5113856 ], + [ 7.1626508, 46.5115828 ], + [ 7.1623881, 46.5117459 ], + [ 7.1621364, 46.5117795 ], + [ 7.1619228, 46.5117664 ], + [ 7.1618228, 46.5117068 ], + [ 7.161727, 46.5115959 ], + [ 7.1616741, 46.5114959 ], + [ 7.1616797, 46.5114167 ], + [ 7.1617233, 46.5113026 ], + [ 7.161849, 46.511177 ], + [ 7.1619982, 46.5110442 ], + [ 7.162115, 46.5108844 ], + [ 7.1622136, 46.5107128 ], + [ 7.1623122, 46.5105304 ], + [ 7.1623692, 46.5103435 ], + [ 7.1624769, 46.5101728 ], + [ 7.1625935, 46.5100516 ], + [ 7.1626957, 46.5099484 ], + [ 7.1627775, 46.5097444 ], + [ 7.1627929, 46.5095358 ], + [ 7.1627185, 46.5093116 ], + [ 7.1625292, 46.5091186 ], + [ 7.1623468, 46.5088627 ], + [ 7.1621173, 46.5086535 ], + [ 7.1618473, 46.508456699999996 ], + [ 7.161584, 46.5082249 ], + [ 7.1613699, 46.5077961 ], + [ 7.1612291, 46.5075619 ], + [ 7.1610478, 46.5073465 ], + [ 7.1608184, 46.5071201 ], + [ 7.1605382, 46.5068891 ], + [ 7.1602569, 46.5066078 ], + [ 7.1599429, 46.5063605 ], + [ 7.1596169, 46.5061582 ], + [ 7.1592535, 46.5058955 ], + [ 7.1589701, 46.505777 ], + [ 7.1587127, 46.505675600000004 ], + [ 7.158445, 46.5055454 ], + [ 7.1581269, 46.5053386 ], + [ 7.1579478, 46.5051898 ], + [ 7.1578275, 46.5050347 ], + [ 7.1577384, 46.5048735 ], + [ 7.1576415, 46.504723 ], + [ 7.1574842, 46.5046525 ], + [ 7.1572401, 46.5044944 ], + [ 7.1568611, 46.5042317 ], + [ 7.1565586, 46.5040241 ], + [ 7.156238, 46.5037993 ], + [ 7.1558389, 46.5036444 ], + [ 7.1554209, 46.5036137 ], + [ 7.1553176, 46.5036827 ], + [ 7.1552076, 46.5037814 ], + [ 7.1550537, 46.5038287 ], + [ 7.1548987, 46.5038211 ], + [ 7.1547986, 46.5037777 ], + [ 7.1546593, 46.503753 ], + [ 7.1545109, 46.5037446 ], + [ 7.1543962, 46.5037407 ], + [ 7.1542558, 46.5036936 ], + [ 7.1541199, 46.5037697 ], + [ 7.1539851, 46.5038845 ], + [ 7.1538226, 46.5040739 ], + [ 7.1535857, 46.5042757 ], + [ 7.1534151, 46.5044983 ], + [ 7.153322, 46.5046133 ], + [ 7.1532717, 46.5047724 ], + [ 7.153228, 46.5049081 ], + [ 7.1530843, 46.5049725 ], + [ 7.152973, 46.5050766 ], + [ 7.1523923, 46.5052568 ], + [ 7.1521341, 46.5053074 ], + [ 7.151769, 46.5053713 ], + [ 7.1514106, 46.5054009 ], + [ 7.1511082, 46.5054299 ], + [ 7.1507969, 46.5054021 ], + [ 7.1504621, 46.5053976 ], + [ 7.1502238, 46.5053799 ], + [ 7.1500193, 46.5053785 ], + [ 7.1498564, 46.5053925 ], + [ 7.1497194, 46.5054236 ], + [ 7.1494586, 46.5054625 ], + [ 7.1491654, 46.5054852 ], + [ 7.1488407, 46.5055311 ], + [ 7.1485407, 46.5055996 ], + [ 7.1482149, 46.5056177 ], + [ 7.1478149, 46.5056256 ], + [ 7.1472779, 46.5056809 ], + [ 7.1470035, 46.5055912 ], + [ 7.1468305, 46.5055323 ], + [ 7.1465898, 46.5054759 ], + [ 7.146319, 46.5054302 ], + [ 7.1460561, 46.5053908 ], + [ 7.1457109, 46.5053746 ], + [ 7.1453267, 46.5053548 ], + [ 7.1449919, 46.5053611 ], + [ 7.1446142, 46.5053295 ], + [ 7.1441388, 46.5053049 ], + [ 7.1439457, 46.5053602 ], + [ 7.1438581, 46.5054121 ], + [ 7.1438109, 46.5054696 ], + [ 7.1437583, 46.5055549 ], + [ 7.1437617, 46.5056502 ], + [ 7.1437259, 46.5057752 ], + [ 7.1436834, 46.5059226 ], + [ 7.1436138, 46.5060196 ], + [ 7.1435532, 46.5061337 ], + [ 7.1433895, 46.506306 ], + [ 7.1432311, 46.5064333 ], + [ 7.1430457, 46.5065102 ], + [ 7.1428639, 46.5066428 ], + [ 7.1426537, 46.5067151 ], + [ 7.1424291, 46.506809 ], + [ 7.1422203, 46.5068813 ], + [ 7.141954, 46.5069769 ], + [ 7.1417190999999995, 46.507032 ], + [ 7.141508, 46.5070477 ], + [ 7.1412563, 46.507092 ], + [ 7.1409877999999996, 46.5071201 ], + [ 7.1408, 46.507152 ], + [ 7.1405484, 46.5071738 ], + [ 7.1403866, 46.5072111 ], + [ 7.1402484, 46.507236 ], + [ 7.1400956, 46.5073012 ], + [ 7.1399192, 46.5073889 ], + [ 7.1396869, 46.5074729 ], + [ 7.1394532, 46.5075568 ], + [ 7.1393397, 46.5075808 ], + [ 7.1391846, 46.5075903 ], + [ 7.1389106, 46.507668699999996 ], + [ 7.1386195, 46.5077588 ], + [ 7.1382825, 46.5079117 ], + [ 7.138068, 46.5080686 ], + [ 7.1377489, 46.5080471 ], + [ 7.1374623, 46.5080409 ], + [ 7.1373747, 46.5080937 ], + [ 7.1371658, 46.5081768 ], + [ 7.136958, 46.5082878 ], + [ 7.1367919, 46.5084151 ], + [ 7.136639, 46.5084912 ], + [ 7.1364705, 46.5085627 ], + [ 7.1363153, 46.508601 ], + [ 7.1362605, 46.5086098 ], + [ 7.1364233, 46.5100199 ], + [ 7.1370823, 46.5131044 ], + [ 7.1436757, 46.5221121 ], + [ 7.1450117, 46.5268626 ], + [ 7.1470388, 46.5274894 ], + [ 7.1483539, 46.5284625 ], + [ 7.1483838, 46.5284752 ], + [ 7.1489453, 46.5285162 ], + [ 7.1497258, 46.5283158 ], + [ 7.1507881, 46.5278201 ], + [ 7.1511765, 46.5278121 ], + [ 7.1518464999999996, 46.5275793 ], + [ 7.1519709, 46.527536 ], + [ 7.1519713, 46.5275359 ], + [ 7.1519757, 46.5275344 ], + [ 7.1528526, 46.5273315 ], + [ 7.1536634, 46.5273012 ], + [ 7.1541529, 46.5274032 ], + [ 7.1546202, 46.5272802 ], + [ 7.1549677, 46.5273629 ], + [ 7.1562234, 46.5274128 ], + [ 7.1569136, 46.5269934 ], + [ 7.1569157, 46.5269932 ], + [ 7.1569181, 46.5269918 ], + [ 7.1576256, 46.5269298 ], + [ 7.1578139, 46.5268146 ], + [ 7.157816, 46.5268146 ], + [ 7.1578184, 46.5268132 ], + [ 7.1583436, 46.5268145 ], + [ 7.1585738, 46.5269113 ], + [ 7.1589322, 46.5269194 ], + [ 7.1592982, 46.5272001 ], + [ 7.1596489, 46.5271793 ], + [ 7.1606048, 46.5275883 ], + [ 7.1612166, 46.5277337 ], + [ 7.161797, 46.5281579 ], + [ 7.1627133, 46.5284022 ], + [ 7.1629237, 46.5285466 ], + [ 7.163462, 46.528545199999996 ], + [ 7.1639017, 46.52897 ], + [ 7.1643097000000004, 46.5292175 ], + [ 7.1645503, 46.5295779 ], + [ 7.1653701, 46.5298506 ], + [ 7.1661465, 46.5304453 ], + [ 7.1666495, 46.5307281 ], + [ 7.1671024, 46.5308632 ], + [ 7.1670938, 46.5310116 ], + [ 7.1683805, 46.5314825 ], + [ 7.1686986, 46.5317396 ], + [ 7.1698513, 46.5321588 ], + [ 7.1700601, 46.5321215 ], + [ 7.1702709, 46.5321814 ], + [ 7.170543, 46.5322585 ], + [ 7.1707026, 46.5323929 ], + [ 7.1707292, 46.5325459 ], + [ 7.171188, 46.5328187 ], + [ 7.1712867, 46.5328864 ], + [ 7.1714752, 46.5329903 ], + [ 7.1715351, 46.5330138 ], + [ 7.1716041, 46.5330329 ], + [ 7.1720293999999996, 46.5332129 ], + [ 7.1720971, 46.5332373 ], + [ 7.1721999, 46.5332627 ], + [ 7.172308, 46.5332765 ], + [ 7.1724006, 46.5332794 ], + [ 7.1725466, 46.5332708 ], + [ 7.172643, 46.5332773 ], + [ 7.1727446, 46.5332982 ], + [ 7.1728448, 46.5333335 ], + [ 7.1737104, 46.533842 ], + [ 7.1737832, 46.5338917 ], + [ 7.1738702, 46.5339431 ], + [ 7.174025, 46.53402 ], + [ 7.1742045, 46.5340879 ], + [ 7.1746982, 46.5344218 ], + [ 7.17507, 46.5346377 ], + [ 7.1751361, 46.5347044 ], + [ 7.1752127, 46.5347676 ], + [ 7.1753219, 46.5348416 ], + [ 7.1754428, 46.5349066 ], + [ 7.1755479, 46.535004 ], + [ 7.17567, 46.5350916 ], + [ 7.1757506, 46.5351385 ], + [ 7.1758364, 46.5351801 ], + [ 7.1759262, 46.5352181 ], + [ 7.1760485, 46.5352616 ], + [ 7.17612, 46.535295 ], + [ 7.1761733, 46.5353275 ], + [ 7.17622, 46.5353645 ], + [ 7.1762654, 46.5354096 ], + [ 7.1763017, 46.5354574 ], + [ 7.1763705, 46.5355115 ], + [ 7.1764485, 46.5355513 ], + [ 7.1765045, 46.5355712 ], + [ 7.1765709, 46.5355857 ], + [ 7.1766385, 46.535621 ], + [ 7.1766788, 46.5356517 ], + [ 7.1767138, 46.5356895 ], + [ 7.1767332, 46.5357201 ], + [ 7.1767641, 46.5357904 ], + [ 7.1768056, 46.5358471 ], + [ 7.1768588, 46.5358976 ], + [ 7.1769224, 46.5359428 ], + [ 7.1769718, 46.5359681 ], + [ 7.1770239, 46.5359889 ], + [ 7.1773115, 46.5360822 ], + [ 7.1775131, 46.5361825 ], + [ 7.1776832, 46.5363232 ], + [ 7.1779146, 46.5364506 ], + [ 7.1782051, 46.536481 ], + [ 7.1784664, 46.5366246 ], + [ 7.1785861, 46.5366851 ], + [ 7.1787526, 46.5367584 ], + [ 7.1789257, 46.5368218 ], + [ 7.1790984, 46.5369508 ], + [ 7.1792882, 46.5370682 ], + [ 7.1796329, 46.5372174 ], + [ 7.1803813, 46.5377355 ], + [ 7.1808167, 46.5380063 ], + [ 7.1809988, 46.5380787 ], + [ 7.1813402, 46.5381074 ], + [ 7.181434, 46.5381229 ], + [ 7.181516, 46.5381419 ], + [ 7.1815876, 46.5381646 ], + [ 7.1816631, 46.5381935 ], + [ 7.1817268, 46.5382234 ], + [ 7.1817879, 46.5382577 ], + [ 7.1818621, 46.5382894 ], + [ 7.1819311, 46.5383138 ], + [ 7.1820131, 46.5383365 ], + [ 7.1820978, 46.5383529 ], + [ 7.1821733, 46.5383629 ], + [ 7.1822515, 46.5383685 ], + [ 7.1823388, 46.5383696 ], + [ 7.1873276, 46.542588 ], + [ 7.1906519, 46.5448785 ], + [ 7.1921774, 46.5465568 ], + [ 7.1934173, 46.5461373 ], + [ 7.1966985, 46.5441869 ], + [ 7.2008084, 46.541693 ], + [ 7.2009031, 46.5409106 ], + [ 7.2010701, 46.5400015 ], + [ 7.2036849, 46.5370753 ], + [ 7.2076487, 46.5329068 ], + [ 7.2076508, 46.532908 ], + [ 7.2076534, 46.5329053 ], + [ 7.2082099, 46.5332123 ], + [ 7.2088402, 46.5327413 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00057", + "country" : "CHE", + "name" : [ + { + "text" : "Les Bimis-Ciernes Picat", + "lang" : "de-CH" + }, + { + "text" : "Les Bimis-Ciernes Picat", + "lang" : "fr-CH" + }, + { + "text" : "Les Bimis-Ciernes Picat", + "lang" : "it-CH" + }, + { + "text" : "Les Bimis-Ciernes Picat", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "startDateTime" : "2024-11-15T00:00:00+01:00", + "endDateTime" : "2025-04-15T00:00:00+02:00" + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Generaldirektion für Umwelt", + "lang" : "de-CH" + }, + { + "text" : "Direction générale de l'environnement", + "lang" : "fr-CH" + }, + { + "text" : "Direzione generale dell'Ambiente", + "lang" : "it-CH" + }, + { + "text" : "Environment Department", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.dge@vd.ch", + "phone" : "0041213164422", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5644183, 47.4511518 ], + [ 7.5651668, 47.451516 ], + [ 7.5666231, 47.4520381 ], + [ 7.5687117, 47.4528855 ], + [ 7.5693251, 47.4531704 ], + [ 7.5694946, 47.4529588 ], + [ 7.5702248999999995, 47.4521871 ], + [ 7.5710682, 47.4523815 ], + [ 7.5717662, 47.4525743 ], + [ 7.5726357, 47.4527062 ], + [ 7.57372, 47.452272 ], + [ 7.5748669, 47.4517582 ], + [ 7.5757245, 47.4505884 ], + [ 7.5777899, 47.4503467 ], + [ 7.5779977, 47.450325 ], + [ 7.577857, 47.4500316 ], + [ 7.5778524, 47.4497411 ], + [ 7.5778143, 47.4493299 ], + [ 7.5778245, 47.4490646 ], + [ 7.5778028, 47.4487918 ], + [ 7.5778923, 47.4483114 ], + [ 7.5781429, 47.4480703 ], + [ 7.5784368, 47.4479179 ], + [ 7.5785255, 47.4474364 ], + [ 7.5785742, 47.4470812 ], + [ 7.5783456000000005, 47.4468459 ], + [ 7.5783275, 47.4468044 ], + [ 7.5782385, 47.4465631 ], + [ 7.5779911, 47.4463162 ], + [ 7.5777965, 47.4461761 ], + [ 7.5777657, 47.4460527 ], + [ 7.5777299, 47.4459309 ], + [ 7.5776295000000005, 47.4456918 ], + [ 7.5775293, 47.4454438 ], + [ 7.5774308999999995, 47.4451901 ], + [ 7.5773693, 47.4450232 ], + [ 7.5777377, 47.4447946 ], + [ 7.5777294, 47.4447901 ], + [ 7.5777155, 47.4447988 ], + [ 7.577592, 47.444701 ], + [ 7.577259, 47.4446391 ], + [ 7.5770866, 47.4445653 ], + [ 7.576891, 47.4443748 ], + [ 7.576707, 47.444227 ], + [ 7.5765462, 47.4441766 ], + [ 7.5763452000000004, 47.4441379 ], + [ 7.5760811, 47.4441071 ], + [ 7.5757712, 47.4441113 ], + [ 7.5757816, 47.4441168 ], + [ 7.5756882, 47.4441893 ], + [ 7.5754304999999995, 47.4444349 ], + [ 7.5752603, 47.4445342 ], + [ 7.5751038, 47.4451634 ], + [ 7.5755342, 47.4457001 ], + [ 7.5753337, 47.4458571 ], + [ 7.5753943, 47.4459865 ], + [ 7.5753342, 47.4460547 ], + [ 7.5750234, 47.4462663 ], + [ 7.5742707, 47.4465261 ], + [ 7.5737286, 47.4466289 ], + [ 7.5737892, 47.4467583 ], + [ 7.5734079, 47.446895 ], + [ 7.5728456, 47.4469842 ], + [ 7.5725209, 47.447372 ], + [ 7.5717582, 47.447625 ], + [ 7.5716782, 47.4477818 ], + [ 7.5712168, 47.4480548 ], + [ 7.5708884, 47.448135 ], + [ 7.5704362, 47.448047 ], + [ 7.570145, 47.4480882 ], + [ 7.5699042, 47.448177 ], + [ 7.5699044, 47.4482588 ], + [ 7.5697538, 47.4483067 ], + [ 7.5695231, 47.4484296 ], + [ 7.5693826, 47.4484638 ], + [ 7.568941, 47.4486346 ], + [ 7.5682884999999995, 47.4487716 ], + [ 7.568118, 47.4488944 ], + [ 7.567787, 47.4490788 ], + [ 7.5678331, 47.4491731 ], + [ 7.5667995, 47.4495627 ], + [ 7.5664784, 47.4497061 ], + [ 7.5665187, 47.4497537 ], + [ 7.566318, 47.4498562 ], + [ 7.5663987, 47.4499855 ], + [ 7.565967, 47.4501018 ], + [ 7.5659071, 47.4502314 ], + [ 7.5655361, 47.4505384 ], + [ 7.5653854, 47.4505181 ], + [ 7.5653455, 47.4506408 ], + [ 7.5651549, 47.4507364 ], + [ 7.5647231999999995, 47.4508254 ], + [ 7.5646331, 47.4509482 ], + [ 7.5644524, 47.4510097 ], + [ 7.5644186, 47.4511478 ], + [ 7.5644183, 47.4511518 ] + ], + [ + [ 7.5744063, 47.4473818 ], + [ 7.5746334, 47.4487363 ], + [ 7.5718695, 47.4495421 ], + [ 7.5696601, 47.4504948 ], + [ 7.5690498999999996, 47.4502354 ], + [ 7.5679416, 47.4497735 ], + [ 7.5699364, 47.4488392 ], + [ 7.5727139999999995, 47.4478823 ], + [ 7.5744063, 47.4473818 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr001", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Eggflue", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Eggflue", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Eggflue", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Eggflue", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 5.9888183999999995, 46.2076398 ], + [ 5.9884799, 46.2079778 ], + [ 5.9883027, 46.2080568 ], + [ 5.9874369, 46.2089213 ], + [ 5.9871134999999995, 46.2099501 ], + [ 5.9873818, 46.2109864 ], + [ 5.9882009, 46.2118726 ], + [ 5.9894463, 46.2124737 ], + [ 5.9909282, 46.2126982 ], + [ 5.992421, 46.2125119 ], + [ 5.9936975, 46.2119431 ], + [ 5.9940359999999995, 46.2116051 ], + [ 5.9942132, 46.2115262 ], + [ 5.9950789, 46.2106616 ], + [ 5.9954022, 46.2096328 ], + [ 5.9951337, 46.2085964 ], + [ 5.9943145, 46.2077103 ], + [ 5.9930692, 46.2071093 ], + [ 5.9915875, 46.2068848 ], + [ 5.9900948, 46.2070711 ], + [ 5.9888183999999995, 46.2076398 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-41", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.5816166, 47.2381244 ], + [ 8.5814758, 47.2357719 ], + [ 8.581154399999999, 47.2334275 ], + [ 8.5806534, 47.2310979 ], + [ 8.5799741, 47.2287893 ], + [ 8.5791184, 47.2265081 ], + [ 8.5780887, 47.2242604 ], + [ 8.5768879, 47.2220526 ], + [ 8.5755192, 47.2198906 ], + [ 8.5739864, 47.2177804 ], + [ 8.5722937, 47.2157276 ], + [ 8.5704458, 47.213738 ], + [ 8.5684478, 47.211817 ], + [ 8.5663051, 47.2099698 ], + [ 8.5640236, 47.2082016 ], + [ 8.5616096, 47.2065171 ], + [ 8.5590696, 47.2049209 ], + [ 8.5564108, 47.2034174 ], + [ 8.5536402, 47.2020108 ], + [ 8.5507656, 47.2007048 ], + [ 8.5477948, 47.1995031 ], + [ 8.5447359, 47.198409 ], + [ 8.5415972, 47.1974253 ], + [ 8.5383875, 47.1965549 ], + [ 8.5351154, 47.1958001 ], + [ 8.5317899, 47.1951629 ], + [ 8.5284202, 47.1946451 ], + [ 8.5250153, 47.1942482 ], + [ 8.5215847, 47.1939732 ], + [ 8.5181377, 47.1938208 ], + [ 8.514683699999999, 47.1937915 ], + [ 8.5112322, 47.1938853 ], + [ 8.5077926, 47.1941021 ], + [ 8.5043743, 47.1944411 ], + [ 8.5009867, 47.1949016 ], + [ 8.497639, 47.1954821 ], + [ 8.4943404, 47.1961812 ], + [ 8.4910999, 47.1969969 ], + [ 8.4879263, 47.197927 ], + [ 8.4848285, 47.1989689 ], + [ 8.4818147, 47.2001199 ], + [ 8.4788933, 47.2013766 ], + [ 8.4760723, 47.2027358 ], + [ 8.4733593, 47.2041937 ], + [ 8.4707619, 47.2057463 ], + [ 8.4682871, 47.2073894 ], + [ 8.4659418, 47.2091184 ], + [ 8.4637323, 47.2109286 ], + [ 8.4616647, 47.2128151 ], + [ 8.4597448, 47.2147728 ], + [ 8.4579776, 47.2167962 ], + [ 8.4563682, 47.2188798 ], + [ 8.4549209, 47.2210179 ], + [ 8.4536398, 47.2232046 ], + [ 8.4525283, 47.2254341 ], + [ 8.4515895, 47.2277001 ], + [ 8.450826, 47.2299965 ], + [ 8.45024, 47.2323169 ], + [ 8.449833, 47.234655 ], + [ 8.4496062, 47.2370045 ], + [ 8.4495602, 47.2393588 ], + [ 8.4496952, 47.2417115 ], + [ 8.4500109, 47.2440562 ], + [ 8.4505063, 47.2463864 ], + [ 8.4511802, 47.2486957 ], + [ 8.4520308, 47.2509779 ], + [ 8.4530557, 47.2532266 ], + [ 8.4542521, 47.2554357 ], + [ 8.4556168, 47.2575992 ], + [ 8.4571461, 47.259711 ], + [ 8.4588357, 47.2617654 ], + [ 8.4606811, 47.2637567 ], + [ 8.4626772, 47.2656796 ], + [ 8.4648185, 47.2675287 ], + [ 8.4670993, 47.2692989 ], + [ 8.4695131, 47.2709853 ], + [ 8.4720535, 47.2725835 ], + [ 8.4747135, 47.2740888 ], + [ 8.4774857, 47.2754973 ], + [ 8.4803625, 47.2768051 ], + [ 8.4833361, 47.2780085 ], + [ 8.4863984, 47.2791043 ], + [ 8.4895408, 47.2800894 ], + [ 8.4927547, 47.2809612 ], + [ 8.4960314, 47.2817172 ], + [ 8.4993619, 47.2823554 ], + [ 8.5027369, 47.282874 ], + [ 8.5061473, 47.2832716 ], + [ 8.5095835, 47.2835471 ], + [ 8.5130363, 47.2836997 ], + [ 8.5164961, 47.283729 ], + [ 8.5199534, 47.283635 ], + [ 8.5233988, 47.2834179 ], + [ 8.5268226, 47.2830783 ], + [ 8.5302156, 47.2826171 ], + [ 8.5335684, 47.2820357 ], + [ 8.5368718, 47.2813355 ], + [ 8.5401168, 47.2805185 ], + [ 8.5432943, 47.279587 ], + [ 8.5463957, 47.2785435 ], + [ 8.5494125, 47.2773909 ], + [ 8.5523364, 47.2761323 ], + [ 8.5551594, 47.2747713 ], + [ 8.5578737, 47.2733115 ], + [ 8.5604718, 47.271757 ], + [ 8.5629467, 47.270112 ], + [ 8.5652916, 47.268381 ], + [ 8.5675, 47.2665689 ], + [ 8.569566, 47.2646805 ], + [ 8.5714837, 47.262721 ], + [ 8.5732481, 47.2606959 ], + [ 8.5748542, 47.2586107 ], + [ 8.5762977, 47.2564711 ], + [ 8.5775746, 47.254283 ], + [ 8.5786815, 47.2520524 ], + [ 8.5796153, 47.2497854 ], + [ 8.5803735, 47.2474881 ], + [ 8.5809541, 47.2451671 ], + [ 8.5813554, 47.2428285 ], + [ 8.5815764, 47.2404788 ], + [ 8.5816166, 47.2381244 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZN001", + "country" : "CHE", + "name" : [ + { + "text" : "LSZN Hausen am Albis", + "lang" : "de-CH" + }, + { + "text" : "LSZN Hausen am Albis", + "lang" : "fr-CH" + }, + { + "text" : "LSZN Hausen am Albis", + "lang" : "it-CH" + }, + { + "text" : "LSZN Hausen am Albis", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Flugplatzgenossenschaft Hausen Oberamt", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzgenossenschaft Hausen Oberamt", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzgenossenschaft Hausen Oberamt", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzgenossenschaft Hausen Oberamt", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Michael Ras", + "lang" : "de-CH" + }, + { + "text" : "Michael Ras", + "lang" : "fr-CH" + }, + { + "text" : "Michael Ras", + "lang" : "it-CH" + }, + { + "text" : "Michael Ras", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.fgho.ch/de/kontakt", + "email" : "office@fgho.ch", + "phone" : "0041794574479", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P02DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5626947, 47.430502 ], + [ 7.5626090999999995, 47.4307351 ], + [ 7.5634135, 47.4313603 ], + [ 7.5656206, 47.4303704 ], + [ 7.5655675, 47.4301325 ], + [ 7.5654618, 47.4299541 ], + [ 7.5651278, 47.4295975 ], + [ 7.5646358, 47.4291221 ], + [ 7.5641793, 47.4288846 ], + [ 7.5640208, 47.4285873 ], + [ 7.5639682, 47.4285755 ], + [ 7.5636168999999995, 47.4291996 ], + [ 7.5635338999999995, 47.4294083 ], + [ 7.5632932, 47.4296406 ], + [ 7.562965, 47.4298721 ], + [ 7.5627732, 47.4300459 ], + [ 7.5627073, 47.4302169 ], + [ 7.5626947, 47.430502 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr068", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Im Schäll", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Im Schäll", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Im Schäll", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Im Schäll", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7850744, 47.4545153 ], + [ 7.7850654, 47.4545411 ], + [ 7.7850827, 47.4546556 ], + [ 7.7850917, 47.4547706 ], + [ 7.7850923, 47.4548857 ], + [ 7.7850845, 47.4550008 ], + [ 7.7845127, 47.4558458 ], + [ 7.7841251, 47.4563289 ], + [ 7.7835609, 47.4569811 ], + [ 7.7833227, 47.4572348 ], + [ 7.7826687, 47.4577307 ], + [ 7.7816273, 47.4587518 ], + [ 7.7815233, 47.4591557 ], + [ 7.7812774000000005, 47.4595901 ], + [ 7.7811739, 47.4600663 ], + [ 7.7811693, 47.460741 ], + [ 7.7811877, 47.4608251 ], + [ 7.7816938, 47.4609142 ], + [ 7.7820867, 47.4609233 ], + [ 7.7824123, 47.4609593 ], + [ 7.7824217, 47.4611697 ], + [ 7.782446, 47.4611933 ], + [ 7.7829371, 47.4612307 ], + [ 7.7829677, 47.4612332 ], + [ 7.783284, 47.4612587 ], + [ 7.7839591, 47.4613135 ], + [ 7.7839096, 47.4611625 ], + [ 7.7838388, 47.4608576 ], + [ 7.7837987, 47.4606055 ], + [ 7.7837615, 47.4602543 ], + [ 7.7838343, 47.4599652 ], + [ 7.7839071, 47.4596761 ], + [ 7.7840043, 47.4594363 ], + [ 7.7841097999999995, 47.4591762 ], + [ 7.7841152000000005, 47.4591632 ], + [ 7.7842898, 47.4587555 ], + [ 7.7844645, 47.4583478 ], + [ 7.7846257, 47.4579918 ], + [ 7.7849257, 47.4571178 ], + [ 7.7852163999999995, 47.4560823 ], + [ 7.7854513999999995, 47.4553337 ], + [ 7.7854828, 47.4552128 ], + [ 7.7855051, 47.455091 ], + [ 7.7855184, 47.4549685 ], + [ 7.7855224, 47.4548458 ], + [ 7.7855173, 47.454723 ], + [ 7.785503, 47.4546006 ], + [ 7.7854796, 47.4544788 ], + [ 7.7854554, 47.454458 ], + [ 7.7854263, 47.4544403 ], + [ 7.7853931, 47.4544263 ], + [ 7.7853569, 47.4544163 ], + [ 7.7853186999999995, 47.4544107 ], + [ 7.7852797, 47.4544096 ], + [ 7.7852409, 47.4544131 ], + [ 7.7852036, 47.4544211 ], + [ 7.7851689, 47.4544332 ], + [ 7.7851377, 47.4544493 ], + [ 7.7851111, 47.4544687 ], + [ 7.7850898, 47.4544909 ], + [ 7.7850744, 47.4545153 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr025", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Tal", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Tal", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Tal", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Tal", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.2528176, 46.1857142 ], + [ 7.2528128, 46.185573 ], + [ 7.2527973, 46.1854321 ], + [ 7.2527713, 46.185292 ], + [ 7.2527346999999995, 46.185153 ], + [ 7.2526877, 46.1850155 ], + [ 7.2526303, 46.18488 ], + [ 7.2525629, 46.1847467 ], + [ 7.2524855, 46.184616 ], + [ 7.2523984, 46.1844883 ], + [ 7.2523017, 46.184364 ], + [ 7.2521959, 46.1842434 ], + [ 7.2520811, 46.1841267 ], + [ 7.2519576, 46.1840145 ], + [ 7.2518259, 46.1839068 ], + [ 7.2516862, 46.1838041 ], + [ 7.251539, 46.1837066 ], + [ 7.2513846, 46.1836146 ], + [ 7.2512236, 46.1835283 ], + [ 7.2510562, 46.183448 ], + [ 7.250883, 46.1833739 ], + [ 7.2507045, 46.1833062 ], + [ 7.2505211, 46.183245 ], + [ 7.2503334, 46.1831906 ], + [ 7.2501418, 46.1831432 ], + [ 7.2499469, 46.1831027 ], + [ 7.2497492, 46.1830694 ], + [ 7.2495493, 46.1830433 ], + [ 7.2493477, 46.1830245 ], + [ 7.249145, 46.1830131 ], + [ 7.2489417, 46.1830091 ], + [ 7.2487383, 46.1830124 ], + [ 7.2485355, 46.1830231 ], + [ 7.2483338, 46.1830412 ], + [ 7.2481337, 46.1830667 ], + [ 7.2479358, 46.1830993 ], + [ 7.2477406, 46.1831391 ], + [ 7.2475487, 46.1831859 ], + [ 7.2473606, 46.1832397 ], + [ 7.2471768, 46.1833002 ], + [ 7.2469978, 46.1833673 ], + [ 7.2468240999999995, 46.1834408 ], + [ 7.2466561, 46.1835206 ], + [ 7.2464945, 46.1836063 ], + [ 7.2463395, 46.1836978 ], + [ 7.2461916, 46.1837948 ], + [ 7.2460512, 46.183897 ], + [ 7.2459187, 46.1840043 ], + [ 7.2457945, 46.1841161 ], + [ 7.2456789, 46.1842324 ], + [ 7.2455721, 46.1843527 ], + [ 7.2454746, 46.184476599999996 ], + [ 7.2453866, 46.184604 ], + [ 7.2453083, 46.1847344 ], + [ 7.2452399, 46.1848675 ], + [ 7.2451817, 46.1850028 ], + [ 7.2451337, 46.1851401 ], + [ 7.2450961, 46.185279 ], + [ 7.2450691, 46.185419 ], + [ 7.2450526, 46.1855599 ], + [ 7.2450468, 46.1857011 ], + [ 7.2450516, 46.1858423 ], + [ 7.2450671, 46.1859832 ], + [ 7.2450931, 46.1861233 ], + [ 7.2451297, 46.1862623 ], + [ 7.2451767, 46.1863998 ], + [ 7.245234, 46.1865353 ], + [ 7.2453014, 46.1866686 ], + [ 7.2453788, 46.1867993 ], + [ 7.2454659, 46.186927 ], + [ 7.2455625, 46.1870513 ], + [ 7.2456684, 46.187172 ], + [ 7.2457832, 46.1872886 ], + [ 7.2459066, 46.1874009 ], + [ 7.2460384, 46.1875086 ], + [ 7.246178, 46.1876113 ], + [ 7.2463252, 46.1877088 ], + [ 7.2464796, 46.1878008 ], + [ 7.2466407, 46.1878871 ], + [ 7.246808, 46.1879674 ], + [ 7.2469812, 46.1880415 ], + [ 7.2471598, 46.1881093 ], + [ 7.2473431999999995, 46.1881704 ], + [ 7.2475309, 46.1882248 ], + [ 7.2477225, 46.1882723 ], + [ 7.2479174, 46.1883127 ], + [ 7.2481151, 46.188346 ], + [ 7.248315, 46.1883721 ], + [ 7.2485167, 46.1883909 ], + [ 7.2487194, 46.1884023 ], + [ 7.2489228, 46.1884064 ], + [ 7.2491261, 46.188403 ], + [ 7.249329, 46.1883923 ], + [ 7.2495307, 46.1883742 ], + [ 7.2497308, 46.1883488 ], + [ 7.2499288, 46.1883161 ], + [ 7.2501239, 46.1882763 ], + [ 7.2503159, 46.1882295 ], + [ 7.250504, 46.1881757 ], + [ 7.2506878, 46.1881152 ], + [ 7.2508668, 46.1880481 ], + [ 7.2510405, 46.1879746 ], + [ 7.2512085, 46.1878948 ], + [ 7.2513701, 46.1878091 ], + [ 7.2515251, 46.1877176 ], + [ 7.251673, 46.1876206 ], + [ 7.2518134, 46.1875183 ], + [ 7.2519459, 46.1874111 ], + [ 7.2520701, 46.1872992 ], + [ 7.2521858, 46.187183 ], + [ 7.2522925, 46.1870627 ], + [ 7.2523899, 46.1869387 ], + [ 7.252478, 46.1868113 ], + [ 7.2525563, 46.1866809 ], + [ 7.2526246, 46.1865478 ], + [ 7.2526829, 46.1864125 ], + [ 7.2527308, 46.1862752 ], + [ 7.2527684, 46.1861363 ], + [ 7.2527954, 46.1859963 ], + [ 7.2528118, 46.1858554 ], + [ 7.2528176, 46.1857142 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0024", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Chamoson", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Chamoson", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Chamoson", + "lang" : "it-CH" + }, + { + "text" : "Substation Chamoson", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.1792962, 47.3762132 ], + [ 8.1792888, 47.376072 ], + [ 8.1792705, 47.3759313 ], + [ 8.1792415, 47.3757914 ], + [ 8.1792016, 47.3756528 ], + [ 8.1791512, 47.3755157 ], + [ 8.1790902, 47.3753807 ], + [ 8.179019, 47.375248 ], + [ 8.1789376, 47.375118 ], + [ 8.1788463, 47.374991 ], + [ 8.1787453, 47.3748675 ], + [ 8.178635, 47.3747478 ], + [ 8.1785156, 47.3746321 ], + [ 8.1783874, 47.3745209 ], + [ 8.1782509, 47.3744143 ], + [ 8.1781063, 47.3743128 ], + [ 8.177954100000001, 47.3742165 ], + [ 8.1777948, 47.3741258 ], + [ 8.1776286, 47.3740408 ], + [ 8.1774561, 47.3739619 ], + [ 8.1772778, 47.3738892 ], + [ 8.1770941, 47.373823 ], + [ 8.1769056, 47.3737634 ], + [ 8.1767127, 47.3737106 ], + [ 8.176516, 47.3736647 ], + [ 8.1763161, 47.3736258 ], + [ 8.1761134, 47.3735941 ], + [ 8.1759086, 47.3735697 ], + [ 8.1757022, 47.3735526 ], + [ 8.1754947, 47.3735428 ], + [ 8.1752868, 47.3735405 ], + [ 8.175079, 47.3735455 ], + [ 8.1748718, 47.3735579 ], + [ 8.1746659, 47.3735776 ], + [ 8.1744618, 47.3736047 ], + [ 8.1742601, 47.373639 ], + [ 8.1740613, 47.3736803 ], + [ 8.1738659, 47.3737287 ], + [ 8.1736745, 47.373784 ], + [ 8.1734877, 47.373846 ], + [ 8.1733058, 47.3739146 ], + [ 8.1731296, 47.3739895 ], + [ 8.1729593, 47.3740706 ], + [ 8.1727955, 47.3741577 ], + [ 8.1726386, 47.3742504 ], + [ 8.1724891, 47.3743486 ], + [ 8.1723474, 47.374452 ], + [ 8.1722138, 47.3745603 ], + [ 8.1720888, 47.3746731 ], + [ 8.1719726, 47.3747903 ], + [ 8.1718656, 47.3749114 ], + [ 8.1717681, 47.3750362 ], + [ 8.1716803, 47.3751643 ], + [ 8.1716025, 47.3752953 ], + [ 8.1715349, 47.3754289 ], + [ 8.1714777, 47.3755647 ], + [ 8.1714311, 47.3757024 ], + [ 8.1713951, 47.3758415 ], + [ 8.1713699, 47.3759817 ], + [ 8.1713555, 47.3761227 ], + [ 8.171352, 47.3762639 ], + [ 8.1713594, 47.3764051 ], + [ 8.1713776, 47.3765458 ], + [ 8.1714067, 47.3766857 ], + [ 8.1714465, 47.3768243 ], + [ 8.1714969, 47.3769614 ], + [ 8.1715579, 47.3770964 ], + [ 8.1716291, 47.3772292 ], + [ 8.1717105, 47.3773592 ], + [ 8.1718018, 47.3774861 ], + [ 8.1719027, 47.3776096 ], + [ 8.172013, 47.3777294 ], + [ 8.1721324, 47.377845 ], + [ 8.1722606, 47.3779563 ], + [ 8.1723971, 47.3780628 ], + [ 8.1725417, 47.3781644 ], + [ 8.1726939, 47.3782607 ], + [ 8.1728533, 47.3783514 ], + [ 8.1730194, 47.3784364 ], + [ 8.1731919, 47.3785153 ], + [ 8.1733703, 47.378588 ], + [ 8.173554, 47.3786542 ], + [ 8.1737425, 47.3787138 ], + [ 8.1739354, 47.3787666 ], + [ 8.1741321, 47.3788126 ], + [ 8.174332, 47.3788514 ], + [ 8.1745347, 47.3788831 ], + [ 8.1747395, 47.3789075 ], + [ 8.174946, 47.3789247 ], + [ 8.1751535, 47.3789344 ], + [ 8.1753614, 47.3789368 ], + [ 8.1755693, 47.3789318 ], + [ 8.1757764, 47.3789194 ], + [ 8.1759824, 47.3788996 ], + [ 8.1761865, 47.3788726 ], + [ 8.1763883, 47.3788383 ], + [ 8.1765871, 47.3787969 ], + [ 8.1767825, 47.3787485 ], + [ 8.1769739, 47.3786932 ], + [ 8.1771608, 47.3786312 ], + [ 8.1773426, 47.3785626 ], + [ 8.1775189, 47.3784877 ], + [ 8.1776892, 47.3784066 ], + [ 8.1778529, 47.3783195 ], + [ 8.1780098, 47.3782268 ], + [ 8.1781593, 47.3781286 ], + [ 8.178301, 47.3780252 ], + [ 8.1784346, 47.3779169 ], + [ 8.1785597, 47.377804 ], + [ 8.1786758, 47.3776868 ], + [ 8.1787828, 47.3775657 ], + [ 8.1788803, 47.3774409 ], + [ 8.1789681, 47.3773129 ], + [ 8.1790458, 47.3771818 ], + [ 8.1791134, 47.3770482 ], + [ 8.1791706, 47.3769124 ], + [ 8.1792172, 47.3767747 ], + [ 8.1792532, 47.3766356 ], + [ 8.1792784, 47.3764954 ], + [ 8.1792927, 47.3763545 ], + [ 8.1792962, 47.3762132 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LZG0001", + "country" : "CHE", + "name" : [ + { + "text" : "Justizvollzugsanstalt Lenzburg Zentralgefängnis", + "lang" : "de-CH" + }, + { + "text" : "Justizvollzugsanstalt Lenzburg Zentralgefängnis", + "lang" : "fr-CH" + }, + { + "text" : "Justizvollzugsanstalt Lenzburg Zentralgefängnis", + "lang" : "it-CH" + }, + { + "text" : "Justizvollzugsanstalt Lenzburg Zentralgefängnis", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Justizvollzugsanstalt Lenzburg", + "lang" : "de-CH" + }, + { + "text" : "Justizvollzugsanstalt Lenzburg", + "lang" : "fr-CH" + }, + { + "text" : "Justizvollzugsanstalt Lenzburg", + "lang" : "it-CH" + }, + { + "text" : "Justizvollzugsanstalt Lenzburg", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Direktion", + "lang" : "de-CH" + }, + { + "text" : "Direktion", + "lang" : "fr-CH" + }, + { + "text" : "Direktion", + "lang" : "it-CH" + }, + { + "text" : "Direktion", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ag.ch/de/verwaltung/dvi/strafverfolgung-strafvollzug/strafvollzug/justizvollzugsanstalt-lenzburg", + "email" : "direktion.jva@ag.ch", + "phone" : "0041628887766", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7769537, 47.4375458 ], + [ 7.7769128, 47.4375578 ], + [ 7.7768884, 47.4375424 ], + [ 7.7768635, 47.4375274 ], + [ 7.776838, 47.4375129 ], + [ 7.776812, 47.4374988 ], + [ 7.7767854, 47.4374853 ], + [ 7.7767583, 47.4374722 ], + [ 7.7767307, 47.4374596 ], + [ 7.7767026, 47.4374474 ], + [ 7.7766741, 47.4374358 ], + [ 7.7766451, 47.4374248 ], + [ 7.7766137, 47.4374137 ], + [ 7.7765818, 47.4374031 ], + [ 7.7765496, 47.4373932 ], + [ 7.7765169, 47.4373838 ], + [ 7.7764839, 47.4373751 ], + [ 7.7764506, 47.4373669 ], + [ 7.776417, 47.4373594 ], + [ 7.7763831, 47.4373524 ], + [ 7.7763489, 47.4373461 ], + [ 7.7763145, 47.4373404 ], + [ 7.7762799, 47.4373353 ], + [ 7.7762451, 47.4373309 ], + [ 7.7762101, 47.437327 ], + [ 7.7761792, 47.4373267 ], + [ 7.7761484, 47.4373257 ], + [ 7.7761176, 47.4373241 ], + [ 7.7760868, 47.4373219 ], + [ 7.7760562, 47.4373191 ], + [ 7.7760258, 47.4373157 ], + [ 7.7759954, 47.4373117 ], + [ 7.7759653, 47.437307 ], + [ 7.7759354, 47.4373018 ], + [ 7.7759057, 47.437296 ], + [ 7.7758763, 47.4372897 ], + [ 7.775833, 47.4372797 ], + [ 7.7757901, 47.4372692 ], + [ 7.7757476, 47.4372581 ], + [ 7.7757054, 47.4372463 ], + [ 7.7756635, 47.437234 ], + [ 7.7756221, 47.4372211 ], + [ 7.775581, 47.4372076 ], + [ 7.7755404, 47.4371935 ], + [ 7.7755002, 47.4371788 ], + [ 7.7754605, 47.4371636 ], + [ 7.7754213, 47.4371478 ], + [ 7.7753825, 47.4371315 ], + [ 7.7753455, 47.4371144 ], + [ 7.7753089, 47.4370969 ], + [ 7.775273, 47.4370787 ], + [ 7.7752376, 47.4370601 ], + [ 7.7752028, 47.437041 ], + [ 7.7751686, 47.4370214 ], + [ 7.775135, 47.4370012 ], + [ 7.7751021, 47.4369807 ], + [ 7.7750698, 47.4369596 ], + [ 7.7750381, 47.4369381 ], + [ 7.7750072, 47.4369161 ], + [ 7.7749769, 47.4368937 ], + [ 7.7749473, 47.4368709 ], + [ 7.7749185, 47.4368477 ], + [ 7.7748904, 47.436824 ], + [ 7.774863, 47.4367999 ], + [ 7.7748364, 47.4367755 ], + [ 7.7748105, 47.4367507 ], + [ 7.7747554, 47.4367 ], + [ 7.7747379, 47.4366865 ], + [ 7.7747197, 47.4366734 ], + [ 7.7747009, 47.4366608 ], + [ 7.7746815, 47.4366486 ], + [ 7.7746616, 47.4366368 ], + [ 7.774641, 47.4366255 ], + [ 7.7746199, 47.4366146 ], + [ 7.7745983, 47.4366042 ], + [ 7.7745762, 47.4365943 ], + [ 7.7745536, 47.436585 ], + [ 7.7745306, 47.4365761 ], + [ 7.7745071, 47.4365678 ], + [ 7.7744833, 47.43656 ], + [ 7.7744616, 47.436554 ], + [ 7.7744396, 47.4365487 ], + [ 7.7744173, 47.4365439 ], + [ 7.7743947, 47.4365399 ], + [ 7.7743719, 47.4365364 ], + [ 7.7743489, 47.4365337 ], + [ 7.7743257, 47.4365315 ], + [ 7.7743025, 47.4365301 ], + [ 7.7742791, 47.4365293 ], + [ 7.7742558, 47.4365292 ], + [ 7.7742324, 47.4365297 ], + [ 7.7742091, 47.4365309 ], + [ 7.7741859, 47.4365327 ], + [ 7.7741628, 47.4365353 ], + [ 7.7741399, 47.4365384 ], + [ 7.7741172, 47.4365423 ], + [ 7.7740948, 47.4365467 ], + [ 7.7740727, 47.4365518 ], + [ 7.7740509, 47.4365576 ], + [ 7.7740294, 47.4365639 ], + [ 7.7740084, 47.4365709 ], + [ 7.7739879, 47.4365784 ], + [ 7.7739665, 47.4365894 ], + [ 7.7739456, 47.4366007 ], + [ 7.773925, 47.4366125 ], + [ 7.7739049, 47.4366245 ], + [ 7.7738853, 47.4366369 ], + [ 7.7738662, 47.4366496 ], + [ 7.7738475, 47.4366627 ], + [ 7.7737931, 47.4367032 ], + [ 7.7737661, 47.4367277 ], + [ 7.7737399, 47.4367524 ], + [ 7.7737143, 47.4367775 ], + [ 7.7736895, 47.4368029 ], + [ 7.7736653, 47.4368287 ], + [ 7.7736419, 47.4368547 ], + [ 7.7736192, 47.436881 ], + [ 7.7735972, 47.4369076 ], + [ 7.773576, 47.4369345 ], + [ 7.7735555, 47.4369617 ], + [ 7.7735357, 47.4369891 ], + [ 7.7735168, 47.4370168 ], + [ 7.7754367, 47.4386306 ], + [ 7.7760794, 47.4390451 ], + [ 7.7763091, 47.4393062 ], + [ 7.776511, 47.4393532 ], + [ 7.7765805, 47.4393858 ], + [ 7.7784334, 47.440255 ], + [ 7.7787928, 47.4401797 ], + [ 7.7788205, 47.4401544 ], + [ 7.7788432, 47.4401122 ], + [ 7.7788944, 47.4397881 ], + [ 7.7788867, 47.4397152 ], + [ 7.7788749, 47.4396651 ], + [ 7.7788391, 47.4395371 ], + [ 7.7791492, 47.4391551 ], + [ 7.7792512, 47.4386551 ], + [ 7.7792584, 47.4384052 ], + [ 7.7791604, 47.4381735 ], + [ 7.7787904999999995, 47.4379068 ], + [ 7.7781925, 47.4376409 ], + [ 7.7777448, 47.4375648 ], + [ 7.7769537, 47.4375458 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns342", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Amerika", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Amerika", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Amerika", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Amerika", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.9438858, 47.4416218 ], + [ 7.9435737, 47.4416969 ], + [ 7.9434381, 47.441811799999996 ], + [ 7.9435028, 47.4419301 ], + [ 7.943624, 47.4419384 ], + [ 7.9437268, 47.4417817 ], + [ 7.9439741, 47.4417054 ], + [ 7.9438858, 47.4416218 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns155", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Riedmatt", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Riedmatt", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Riedmatt", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Riedmatt", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8622949, 47.381958 ], + [ 7.8621896, 47.3820133 ], + [ 7.8623069999999995, 47.3821589 ], + [ 7.8623469, 47.3821793 ], + [ 7.8623506, 47.3822517 ], + [ 7.8625103, 47.3822655 ], + [ 7.8626678, 47.3826521 ], + [ 7.862818, 47.3826372 ], + [ 7.8629611, 47.3825641 ], + [ 7.8629731, 47.3825836 ], + [ 7.8630191, 47.3825717 ], + [ 7.8630408, 47.3825899 ], + [ 7.8632587, 47.382482 ], + [ 7.863461, 47.382401 ], + [ 7.8636593999999995, 47.382287 ], + [ 7.8637246, 47.3822631 ], + [ 7.8638216, 47.3822776 ], + [ 7.8640161, 47.3822924 ], + [ 7.8642148, 47.3823062 ], + [ 7.864429, 47.3823126 ], + [ 7.864733, 47.3822773 ], + [ 7.8649654, 47.3822372 ], + [ 7.8652178, 47.3822176 ], + [ 7.8655346, 47.38217 ], + [ 7.865878, 47.3821349 ], + [ 7.8661353, 47.3821326 ], + [ 7.8661105, 47.3820011 ], + [ 7.8666763, 47.3819302 ], + [ 7.8667687, 47.3821321 ], + [ 7.8669644, 47.3821298 ], + [ 7.8671438, 47.3821186 ], + [ 7.8673318, 47.3820885 ], + [ 7.8674024, 47.3820776 ], + [ 7.867608, 47.3820459 ], + [ 7.8678406, 47.3820156 ], + [ 7.8679368, 47.3819699 ], + [ 7.8681414, 47.3818278 ], + [ 7.8681609, 47.3818152 ], + [ 7.8687842, 47.3814147 ], + [ 7.8688036, 47.3814012 ], + [ 7.8688226, 47.3813728 ], + [ 7.8687886, 47.381358 ], + [ 7.8687277, 47.3813351 ], + [ 7.868718, 47.3813314 ], + [ 7.8685385, 47.3814846 ], + [ 7.8684444, 47.3815539 ], + [ 7.8684363, 47.3815658 ], + [ 7.8683817, 47.3816023 ], + [ 7.868381, 47.3816058 ], + [ 7.8682757, 47.38168 ], + [ 7.8682277, 47.3817279 ], + [ 7.8681438, 47.3817998 ], + [ 7.8680584, 47.381848 ], + [ 7.8680179, 47.3818677 ], + [ 7.8679794, 47.3818847 ], + [ 7.8679681, 47.3818819 ], + [ 7.8679518999999996, 47.3818726 ], + [ 7.8679451, 47.3818663 ], + [ 7.8679368, 47.3818499 ], + [ 7.8679421, 47.3818297 ], + [ 7.8679533, 47.3818087 ], + [ 7.8679702, 47.3817861 ], + [ 7.8680071, 47.3817565 ], + [ 7.8680445, 47.3817296 ], + [ 7.8680579, 47.3817164 ], + [ 7.8680748, 47.3816999 ], + [ 7.8681141, 47.3816598 ], + [ 7.8681497, 47.381626 ], + [ 7.8681671, 47.3815979 ], + [ 7.8681894, 47.3815761 ], + [ 7.8682127, 47.3815578 ], + [ 7.8682423, 47.3815364 ], + [ 7.8682684, 47.3815209 ], + [ 7.8682899, 47.381508 ], + [ 7.8684261, 47.3814224 ], + [ 7.8685011, 47.3813451 ], + [ 7.8685144, 47.3812914 ], + [ 7.8682973, 47.381347 ], + [ 7.868281, 47.3813514 ], + [ 7.8682829, 47.3813675 ], + [ 7.8681373, 47.3813897 ], + [ 7.868136, 47.38139 ], + [ 7.8680684, 47.3814079 ], + [ 7.8678676, 47.3814626 ], + [ 7.8675706, 47.3815434 ], + [ 7.8669109, 47.3816196 ], + [ 7.8662219, 47.3816702 ], + [ 7.8654753, 47.3817047 ], + [ 7.8651456, 47.3817317 ], + [ 7.8649033, 47.3817516 ], + [ 7.864249, 47.3818034 ], + [ 7.8640027, 47.3818389 ], + [ 7.8638559, 47.3818603 ], + [ 7.8634761, 47.3819164 ], + [ 7.8631312, 47.3819743 ], + [ 7.863068, 47.3819852 ], + [ 7.8630662000000004, 47.3819852 ], + [ 7.8630648, 47.3819855 ], + [ 7.8626569, 47.3819868 ], + [ 7.8625864, 47.3819696 ], + [ 7.8622949, 47.381958 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr079", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Hauensteinholz", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Hauensteinholz", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Hauensteinholz", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Hauensteinholz", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7521631, 47.3758034 ], + [ 7.751738, 47.3760159 ], + [ 7.7514442, 47.3762641 ], + [ 7.7498316, 47.3770702 ], + [ 7.7502801, 47.3771937 ], + [ 7.7501218, 47.3772534 ], + [ 7.7500072, 47.3778982 ], + [ 7.7507342999999995, 47.3779204 ], + [ 7.7509613, 47.3772204 ], + [ 7.7514456, 47.3773501 ], + [ 7.7518302, 47.3773667 ], + [ 7.7521529000000005, 47.3775019 ], + [ 7.7526228, 47.3776062 ], + [ 7.7528285, 47.3778247 ], + [ 7.7531392, 47.3779059 ], + [ 7.753373, 47.3780905 ], + [ 7.7536381, 47.378137100000004 ], + [ 7.7542373, 47.3784469 ], + [ 7.7545711, 47.3785571 ], + [ 7.7545418, 47.3786535 ], + [ 7.7545562, 47.3786534 ], + [ 7.7545793, 47.3786536 ], + [ 7.7546024, 47.3786544 ], + [ 7.7546254999999995, 47.3786558 ], + [ 7.7546722, 47.3786607 ], + [ 7.7547181, 47.3786682 ], + [ 7.754763, 47.3786782 ], + [ 7.7547905, 47.3786846 ], + [ 7.7548185, 47.3786898 ], + [ 7.754847, 47.3786939 ], + [ 7.7549026, 47.3787026 ], + [ 7.7549568, 47.378715 ], + [ 7.7550088, 47.3787309 ], + [ 7.7550584, 47.3787502 ], + [ 7.7551325, 47.3787839 ], + [ 7.7552043, 47.3788199 ], + [ 7.7552737, 47.3788581 ], + [ 7.7553364, 47.3788912 ], + [ 7.7554031, 47.3789206 ], + [ 7.7554732, 47.3789461 ], + [ 7.7555461999999995, 47.3789674 ], + [ 7.7556216, 47.3789845 ], + [ 7.7556988, 47.3789972 ], + [ 7.7557773999999995, 47.3790054 ], + [ 7.7558567, 47.379009 ], + [ 7.7559362, 47.3790081 ], + [ 7.7561786999999995, 47.3790015 ], + [ 7.7561543, 47.3789868 ], + [ 7.7562816, 47.3782068 ], + [ 7.7557072, 47.3772496 ], + [ 7.7555094, 47.3763209 ], + [ 7.7543429, 47.3749344 ], + [ 7.7521631, 47.3758034 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns080", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Chapfflüeli", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Chapfflüeli", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Chapfflüeli", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Chapfflüeli", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.8845025, 47.5765565 ], + [ 8.8845854, 47.5767274 ], + [ 8.8846603, 47.5769137 ], + [ 8.8847194, 47.5770923 ], + [ 8.8847662, 47.5772724 ], + [ 8.8848164, 47.5776417 ], + [ 8.8848296, 47.5780133 ], + [ 8.8847977, 47.5783962 ], + [ 8.8846807, 47.5786355 ], + [ 8.8846513, 47.5787279 ], + [ 8.8846128, 47.5787543 ], + [ 8.8845546, 47.5790686 ], + [ 8.8847512, 47.5790867 ], + [ 8.8851969, 47.5791285 ], + [ 8.8854706, 47.5789535 ], + [ 8.8863766, 47.5783428 ], + [ 8.8869015, 47.5779984 ], + [ 8.8871956, 47.5778086 ], + [ 8.8882671, 47.5770873 ], + [ 8.8891294, 47.5765261 ], + [ 8.8894196, 47.5763388 ], + [ 8.8895625, 47.5762446 ], + [ 8.889797399999999, 47.5760854 ], + [ 8.8900831, 47.575897 ], + [ 8.8902691, 47.5757684 ], + [ 8.8904033, 47.5756686 ], + [ 8.8904829, 47.5756086 ], + [ 8.8906209, 47.57548 ], + [ 8.8907348, 47.5753692 ], + [ 8.8908386, 47.5752539 ], + [ 8.8909446, 47.5751396 ], + [ 8.8910655, 47.5750035 ], + [ 8.8911409, 47.5748977 ], + [ 8.8912531, 47.5747342 ], + [ 8.8914872, 47.5743131 ], + [ 8.8915448, 47.574207 ], + [ 8.8915215, 47.5742012 ], + [ 8.8916661, 47.5739288 ], + [ 8.8920222, 47.5732919 ], + [ 8.8922834, 47.5727942 ], + [ 8.8924868, 47.5724361 ], + [ 8.8925124, 47.5723911 ], + [ 8.8929923, 47.5715098 ], + [ 8.893092, 47.5713339 ], + [ 8.8931877, 47.5711649 ], + [ 8.8934478, 47.5706736 ], + [ 8.8937686, 47.5701108 ], + [ 8.8940515, 47.5695839 ], + [ 8.8942672, 47.5691773 ], + [ 8.8944462, 47.568817 ], + [ 8.8945887, 47.5685179 ], + [ 8.8946841, 47.5682895 ], + [ 8.8947443, 47.568114 ], + [ 8.894631, 47.5681145 ], + [ 8.8933024, 47.5681215 ], + [ 8.8920107, 47.5681282 ], + [ 8.8919179, 47.5681327 ], + [ 8.8918268, 47.568145799999996 ], + [ 8.8917407, 47.5681696 ], + [ 8.8914557, 47.5680828 ], + [ 8.8915172, 47.5678357 ], + [ 8.8915377, 47.5676713 ], + [ 8.8915497, 47.567563 ], + [ 8.8915641, 47.5673179 ], + [ 8.8915554, 47.5670737 ], + [ 8.891528, 47.5667453 ], + [ 8.8914653, 47.566303 ], + [ 8.8914377, 47.5662242 ], + [ 8.8914167, 47.5662134 ], + [ 8.8912206, 47.5662083 ], + [ 8.8905973, 47.5661506 ], + [ 8.8902961, 47.5661162 ], + [ 8.8899257, 47.5660863 ], + [ 8.8899398, 47.5659962 ], + [ 8.8884419, 47.5658862 ], + [ 8.887822, 47.5658406 ], + [ 8.8876066, 47.5658248 ], + [ 8.8865827, 47.5657594 ], + [ 8.8867368, 47.5658584 ], + [ 8.886145299999999, 47.5658379 ], + [ 8.8860037, 47.5658435 ], + [ 8.8857615, 47.5658913 ], + [ 8.8852992, 47.5660029 ], + [ 8.8850249, 47.5660785 ], + [ 8.8849865, 47.5660897 ], + [ 8.8849485, 47.5661015 ], + [ 8.8849109, 47.5661138 ], + [ 8.8848738, 47.5661268 ], + [ 8.8848372, 47.5661404 ], + [ 8.884801, 47.5661545 ], + [ 8.8847653, 47.5661693 ], + [ 8.8847317, 47.5661839 ], + [ 8.8846985, 47.566199 ], + [ 8.8846659, 47.5662146 ], + [ 8.8846338, 47.5662307 ], + [ 8.8846022, 47.5662473 ], + [ 8.8845712, 47.5662644 ], + [ 8.8845407, 47.5662819 ], + [ 8.8845095, 47.5663025 ], + [ 8.8844792, 47.5663239 ], + [ 8.88445, 47.5663458 ], + [ 8.8844219, 47.5663684 ], + [ 8.884394799999999, 47.5663916 ], + [ 8.8843688, 47.5664154 ], + [ 8.884344, 47.5664397 ], + [ 8.8843211, 47.5664636 ], + [ 8.8842994, 47.566488 ], + [ 8.8842788, 47.5665128 ], + [ 8.8842593, 47.5665381 ], + [ 8.8842409, 47.5665637 ], + [ 8.884223800000001, 47.5665897 ], + [ 8.8842078, 47.5666161 ], + [ 8.8841092, 47.5668023 ], + [ 8.8839744, 47.5671043 ], + [ 8.8836239, 47.5678975 ], + [ 8.8836123, 47.5679247 ], + [ 8.8836013, 47.5679519 ], + [ 8.8835909, 47.5679793 ], + [ 8.8835813, 47.5680067 ], + [ 8.8835723, 47.5680343 ], + [ 8.883564, 47.568062 ], + [ 8.8835563, 47.5680898 ], + [ 8.8835494, 47.5681176 ], + [ 8.8835431, 47.5681455 ], + [ 8.8835375, 47.5681735 ], + [ 8.8835326, 47.5682015 ], + [ 8.8835284, 47.5682296 ], + [ 8.8835249, 47.5682578 ], + [ 8.883522, 47.5682859 ], + [ 8.8835216, 47.5683131 ], + [ 8.8835223, 47.5683402 ], + [ 8.8835241, 47.5683673 ], + [ 8.883527, 47.5683944 ], + [ 8.883531, 47.5684214 ], + [ 8.8835361, 47.5684483 ], + [ 8.8835423, 47.5684751 ], + [ 8.8835517, 47.5685093 ], + [ 8.883563, 47.5685433 ], + [ 8.8835759, 47.5685769 ], + [ 8.8835906, 47.5686102 ], + [ 8.8836071, 47.5686432 ], + [ 8.8836252, 47.5686757 ], + [ 8.883645, 47.5687078 ], + [ 8.8836615, 47.5687309 ], + [ 8.8836787, 47.5687538 ], + [ 8.8836963, 47.5687766 ], + [ 8.8837145, 47.5687991 ], + [ 8.8837332, 47.5688214 ], + [ 8.8837525, 47.5688436 ], + [ 8.8837722, 47.5688655 ], + [ 8.8837925, 47.5688872 ], + [ 8.8838133, 47.5689087 ], + [ 8.8838346, 47.56893 ], + [ 8.883856399999999, 47.5689511 ], + [ 8.8838786, 47.5689719 ], + [ 8.8839014, 47.5689925 ], + [ 8.8839247, 47.5690128 ], + [ 8.884091699999999, 47.5691571 ], + [ 8.8841181, 47.5691784 ], + [ 8.884144, 47.5692 ], + [ 8.8841692, 47.5692219 ], + [ 8.8841938, 47.5692442 ], + [ 8.8842178, 47.5692667 ], + [ 8.8842412, 47.5692896 ], + [ 8.8842639, 47.5693127 ], + [ 8.8842813, 47.5693311 ], + [ 8.8842982, 47.5693497 ], + [ 8.8843148, 47.5693684 ], + [ 8.884331, 47.5693873 ], + [ 8.8843467, 47.5694063 ], + [ 8.884362, 47.5694255 ], + [ 8.884377, 47.5694449 ], + [ 8.8843893, 47.569462 ], + [ 8.8844009, 47.5694793 ], + [ 8.884412, 47.5694969 ], + [ 8.8844223, 47.5695146 ], + [ 8.8844321, 47.5695324 ], + [ 8.8844411, 47.5695505 ], + [ 8.8844495, 47.5695686 ], + [ 8.8844589, 47.5695912 ], + [ 8.8844673, 47.569614 ], + [ 8.8844747, 47.569637 ], + [ 8.8844809, 47.5696601 ], + [ 8.8844862, 47.5696833 ], + [ 8.8844904, 47.5697066 ], + [ 8.8844935, 47.56973 ], + [ 8.8844966, 47.5697549 ], + [ 8.884500899999999, 47.5697676 ], + [ 8.8845049, 47.5697804 ], + [ 8.8845088, 47.5697933 ], + [ 8.8845123, 47.5698061 ], + [ 8.8845157, 47.569819 ], + [ 8.8845187, 47.5698319 ], + [ 8.8845215, 47.5698449 ], + [ 8.884523399999999, 47.569857 ], + [ 8.8845258, 47.569869 ], + [ 8.8845286, 47.569881 ], + [ 8.884532, 47.5698929 ], + [ 8.8845358, 47.5699048 ], + [ 8.8845402, 47.5699166 ], + [ 8.884545, 47.5699283 ], + [ 8.8845489, 47.5699356 ], + [ 8.884553499999999, 47.5699428 ], + [ 8.8845587, 47.5699497 ], + [ 8.8845646, 47.5699565 ], + [ 8.8845711, 47.5699629 ], + [ 8.8845781, 47.5699691 ], + [ 8.8845856, 47.569975 ], + [ 8.8845937, 47.5699806 ], + [ 8.8846023, 47.5699858 ], + [ 8.884614599999999, 47.5699929 ], + [ 8.8846267, 47.5700002 ], + [ 8.8846386, 47.5700075 ], + [ 8.8846504, 47.570015 ], + [ 8.8846621, 47.5700225 ], + [ 8.8846736, 47.5700302 ], + [ 8.884685, 47.5700379 ], + [ 8.8846869, 47.5700397 ], + [ 8.8846886, 47.5700416 ], + [ 8.8846901, 47.5700436 ], + [ 8.8846914, 47.5700456 ], + [ 8.8846925, 47.5700477 ], + [ 8.8846934, 47.5700498 ], + [ 8.884694, 47.570052 ], + [ 8.8846944, 47.5700541 ], + [ 8.8846946, 47.5700563 ], + [ 8.8846945, 47.5700586 ], + [ 8.8846942, 47.5700608 ], + [ 8.8846937, 47.570062899999996 ], + [ 8.884693, 47.5700651 ], + [ 8.8846924, 47.5700688 ], + [ 8.8846916, 47.5700724 ], + [ 8.8846905, 47.5700761 ], + [ 8.884689, 47.5700796 ], + [ 8.8846873, 47.5700832 ], + [ 8.8846853, 47.5700866 ], + [ 8.8846829, 47.57009 ], + [ 8.8847405, 47.5701192 ], + [ 8.8846337, 47.5702329 ], + [ 8.8846317, 47.5702322 ], + [ 8.884629799999999, 47.5702315 ], + [ 8.8846279, 47.5702308 ], + [ 8.8846259, 47.5702302 ], + [ 8.884624, 47.570229499999996 ], + [ 8.884622, 47.5702289 ], + [ 8.8846201, 47.5702282 ], + [ 8.8845666, 47.5702145 ], + [ 8.8845574, 47.5702158 ], + [ 8.884548, 47.5702167 ], + [ 8.8845385, 47.5702171 ], + [ 8.884529, 47.5702171 ], + [ 8.8845196, 47.5702166 ], + [ 8.8845102, 47.5702158 ], + [ 8.884500899999999, 47.5702145 ], + [ 8.8844918, 47.5702127 ], + [ 8.8844828, 47.5702106 ], + [ 8.8844764, 47.5702104 ], + [ 8.88447, 47.5702105 ], + [ 8.8844636, 47.5702109 ], + [ 8.8844573, 47.5702116 ], + [ 8.884451, 47.5702125 ], + [ 8.8844449, 47.5702138 ], + [ 8.8844389, 47.5702153 ], + [ 8.884433, 47.570217 ], + [ 8.8844273, 47.570219 ], + [ 8.8844219, 47.5702213 ], + [ 8.8844166, 47.5702238 ], + [ 8.8844036, 47.5702325 ], + [ 8.8843905, 47.570241 ], + [ 8.8843772, 47.5702495 ], + [ 8.8843638, 47.5702579 ], + [ 8.8843503, 47.5702662 ], + [ 8.8843367, 47.5702745 ], + [ 8.884323, 47.5702826 ], + [ 8.8842612, 47.5703216 ], + [ 8.8842341, 47.57034 ], + [ 8.8842056, 47.5703574 ], + [ 8.8841757, 47.5703737 ], + [ 8.884144599999999, 47.5703889 ], + [ 8.8841123, 47.570403 ], + [ 8.8840789, 47.5704158 ], + [ 8.8840446, 47.5704275 ], + [ 8.8840357, 47.5704314 ], + [ 8.8840267, 47.5704353 ], + [ 8.8840178, 47.5704391 ], + [ 8.8840089, 47.570443 ], + [ 8.8839999, 47.5704468 ], + [ 8.8839909, 47.5704506 ], + [ 8.8839818, 47.5704543 ], + [ 8.8825743, 47.5709891 ], + [ 8.8822636, 47.5711115 ], + [ 8.88185, 47.571283 ], + [ 8.8817256, 47.5713623 ], + [ 8.8816687, 47.5714706 ], + [ 8.8816902, 47.5715848 ], + [ 8.8820241, 47.5721865 ], + [ 8.8822854, 47.572696 ], + [ 8.883038299999999, 47.5740417 ], + [ 8.88353, 47.5749221 ], + [ 8.8837783, 47.5753647 ], + [ 8.8839889, 47.5756357 ], + [ 8.884318799999999, 47.5762128 ], + [ 8.8845025, 47.5765565 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VBS_27", + "country" : "CHE", + "name" : [ + { + "text" : "VBS_27 Frauenfeld", + "lang" : "de-CH" + }, + { + "text" : "VBS_27 Frauenfeld", + "lang" : "fr-CH" + }, + { + "text" : "VBS_27 Frauenfeld", + "lang" : "it-CH" + }, + { + "text" : "VBS_27 Frauenfeld", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "regulationExemption" : "YES", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Eidgenössisches Departement für Verteidigung, Bevölkerungsschutz und Sport (VBS)", + "lang" : "de-CH" + }, + { + "text" : "Département fédéral de la défense, de la protection de la population et des sports (DDPS)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento federale della difesa, della protezione della popolazione e dello sport (DDPS)", + "lang" : "it-CH" + }, + { + "text" : "Federal Department of Defence, Civil Protection and Sport (DDPS)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Lageverfolgungszentrum der Armee LVZ A", + "lang" : "de-CH" + }, + { + "text" : "Centre de suivi de la situation de l’armée, CSS A", + "lang" : "fr-CH" + }, + { + "text" : "Centro di monitoraggio della situazione dell’esercito, Centro mon sit Es", + "lang" : "it-CH" + }, + { + "text" : "Joint Operation Center, JOC", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vtg.admin.ch/en/joint-operations-command", + "email" : "lvz.op@vtg.admin.ch", + "phone" : "+41 58 464 96 43", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8632686, 47.4367229 ], + [ 7.8633374, 47.4367233 ], + [ 7.863365, 47.4367093 ], + [ 7.863435, 47.4366681 ], + [ 7.8635201, 47.4366169 ], + [ 7.8636139, 47.4365589 ], + [ 7.8636995, 47.4365147 ], + [ 7.8637554, 47.4364914 ], + [ 7.863825, 47.4364633 ], + [ 7.8638823, 47.4364421 ], + [ 7.8639352, 47.4364338 ], + [ 7.8639935, 47.4364312 ], + [ 7.8640531, 47.4364345 ], + [ 7.8641173, 47.4364446 ], + [ 7.8642042, 47.4364614 ], + [ 7.8642643, 47.4364797 ], + [ 7.8643319, 47.4365044 ], + [ 7.864385, 47.4365337 ], + [ 7.8644278, 47.4365632 ], + [ 7.8644665, 47.4365954 ], + [ 7.8645395, 47.4366745 ], + [ 7.8645964, 47.4367562 ], + [ 7.8646467, 47.4368402 ], + [ 7.8646955, 47.436918 ], + [ 7.8647326, 47.4369736 ], + [ 7.8647553, 47.4370227 ], + [ 7.8647642, 47.437062 ], + [ 7.8647679, 47.4370865 ], + [ 7.8647864, 47.4371748 ], + [ 7.8648205, 47.4372739 ], + [ 7.8648492999999995, 47.4373504 ], + [ 7.8648837, 47.4374154 ], + [ 7.8649363999999995, 47.4374896 ], + [ 7.8649731, 47.4375349 ], + [ 7.8650497999999995, 47.4376028 ], + [ 7.8651054, 47.4376434 ], + [ 7.8651795, 47.4376782 ], + [ 7.8652511, 47.4377078 ], + [ 7.8653534, 47.4377382 ], + [ 7.8654876, 47.4377689 ], + [ 7.8656384, 47.4377998 ], + [ 7.8658523, 47.4378439 ], + [ 7.8659791, 47.437874 ], + [ 7.8661085, 47.4379101 ], + [ 7.86633, 47.4379774 ], + [ 7.866379, 47.4379882 ], + [ 7.8664281, 47.4379939 ], + [ 7.8664755, 47.4379955 ], + [ 7.8665275999999995, 47.4379906 ], + [ 7.8665782, 47.4379813 ], + [ 7.8666286, 47.4379636 ], + [ 7.8666549, 47.4379499 ], + [ 7.8666848, 47.4379158 ], + [ 7.8667044, 47.4378818 ], + [ 7.8667149, 47.4378463 ], + [ 7.8667119, 47.4378083 ], + [ 7.8667026, 47.4377881 ], + [ 7.8666805, 47.4377635 ], + [ 7.8667043, 47.4377362 ], + [ 7.8666229, 47.4376306 ], + [ 7.8665945, 47.4376033 ], + [ 7.8665151, 47.4375346 ], + [ 7.8663951, 47.4374434 ], + [ 7.8663139, 47.4373783 ], + [ 7.8662362, 47.4373083 ], + [ 7.8661513, 47.4372158 ], + [ 7.8660594, 47.4371246 ], + [ 7.866008, 47.4370653 ], + [ 7.8660077, 47.4370308 ], + [ 7.8660263, 47.4369307 ], + [ 7.8660491, 47.4367177 ], + [ 7.8660432, 47.4366464 ], + [ 7.8660198, 47.4365762 ], + [ 7.8660143, 47.4365464 ], + [ 7.8659856, 47.4364502 ], + [ 7.8659798, 47.4363895 ], + [ 7.8659828, 47.4363229 ], + [ 7.8659977, 47.4362158 ], + [ 7.8659884, 47.4361563 ], + [ 7.8659242, 47.4358091 ], + [ 7.8659045, 47.4357437 ], + [ 7.8658866, 47.435695 ], + [ 7.8658687, 47.4356641 ], + [ 7.8655521, 47.4353298 ], + [ 7.8652054, 47.4349574 ], + [ 7.865101, 47.4348341 ], + [ 7.8650692, 47.4348008 ], + [ 7.8649758, 47.4347394 ], + [ 7.8648045, 47.4346031 ], + [ 7.8647727, 47.434577 ], + [ 7.8647355, 47.434526 ], + [ 7.8646876, 47.4344524 ], + [ 7.8646309, 47.4343764 ], + [ 7.86453, 47.4342602 ], + [ 7.8644752, 47.4341986 ], + [ 7.8644185, 47.4341453 ], + [ 7.8643446, 47.4341003 ], + [ 7.8643022, 47.4340585 ], + [ 7.8642234, 47.4340996 ], + [ 7.8640348, 47.4340763 ], + [ 7.8640235, 47.4340771 ], + [ 7.8632642, 47.4341275 ], + [ 7.8632519, 47.4341283 ], + [ 7.8627819, 47.4342177 ], + [ 7.8621145, 47.4343348 ], + [ 7.861625, 47.4343581 ], + [ 7.8611421, 47.4343803 ], + [ 7.860472, 47.4344695 ], + [ 7.8604245, 47.4344731 ], + [ 7.8600182, 47.4345683 ], + [ 7.8597283000000004, 47.4346244 ], + [ 7.8591673, 47.4346758 ], + [ 7.8591618, 47.4346754 ], + [ 7.8583606, 47.4346185 ], + [ 7.8583575, 47.4346508 ], + [ 7.8582379, 47.434644 ], + [ 7.8581931, 47.4346555 ], + [ 7.8577767, 47.4347798 ], + [ 7.8574884, 47.4348808 ], + [ 7.8570267, 47.4350946 ], + [ 7.8565589, 47.435316 ], + [ 7.8562715999999995, 47.4354711 ], + [ 7.8560189, 47.4356822 ], + [ 7.8558994, 47.435893 ], + [ 7.8558369, 47.43597 ], + [ 7.8558409000000005, 47.435975 ], + [ 7.8558905, 47.4361582 ], + [ 7.8558952, 47.4362755 ], + [ 7.8558686, 47.4363729 ], + [ 7.8557388, 47.4364432 ], + [ 7.8557933, 47.4367883 ], + [ 7.8558202, 47.4370664 ], + [ 7.8559532, 47.4374026 ], + [ 7.8559926, 47.4376505 ], + [ 7.8559974, 47.4376811 ], + [ 7.8560115, 47.4377696 ], + [ 7.8559439, 47.4378106 ], + [ 7.8560694, 47.4380267 ], + [ 7.8562225, 47.4383164 ], + [ 7.8558647, 47.4382381 ], + [ 7.8555205, 47.4380733 ], + [ 7.855276, 47.4379583 ], + [ 7.8551686, 47.4379171 ], + [ 7.8551303, 47.4379025 ], + [ 7.8551054, 47.4378929 ], + [ 7.8547088, 47.4381341 ], + [ 7.8543277, 47.4384495 ], + [ 7.8542965, 47.4384686 ], + [ 7.8542925, 47.4384663 ], + [ 7.8539925, 47.4386502 ], + [ 7.8536739, 47.4388991 ], + [ 7.8533867, 47.4392474 ], + [ 7.8531517, 47.4395081 ], + [ 7.8531208, 47.4395426 ], + [ 7.8529909, 47.4396801 ], + [ 7.852855, 47.439896 ], + [ 7.8526751, 47.4400652 ], + [ 7.8526262, 47.4402271 ], + [ 7.8525029, 47.4404044 ], + [ 7.8522187, 47.4407462 ], + [ 7.8521839, 47.4409261 ], + [ 7.8521982, 47.4411773 ], + [ 7.8522366, 47.4414621 ], + [ 7.8519825, 47.4417583 ], + [ 7.851679, 47.4417147 ], + [ 7.8512546, 47.4416501 ], + [ 7.850687, 47.4415627 ], + [ 7.8503771, 47.4414901 ], + [ 7.8498466, 47.441449 ], + [ 7.8496087, 47.4414973 ], + [ 7.8493276, 47.4417547 ], + [ 7.8490718, 47.4420608 ], + [ 7.849916, 47.4424529 ], + [ 7.8505643, 47.4427448 ], + [ 7.8513522, 47.4431211 ], + [ 7.8520627, 47.4434502 ], + [ 7.8527474999999995, 47.4436968 ], + [ 7.8535781, 47.4440178 ], + [ 7.8534865, 47.4438762 ], + [ 7.8533848, 47.4437179 ], + [ 7.853299, 47.443584 ], + [ 7.8532366, 47.4434831 ], + [ 7.8532296, 47.443469 ], + [ 7.8532236, 47.4434548 ], + [ 7.8532185, 47.4434404 ], + [ 7.8532143, 47.4434258 ], + [ 7.8532112, 47.4434111 ], + [ 7.853209, 47.4433964 ], + [ 7.8532079, 47.4433816 ], + [ 7.8532077000000005, 47.4433668 ], + [ 7.8532084, 47.4433519 ], + [ 7.8532086, 47.4433516 ], + [ 7.8532104, 47.4433372 ], + [ 7.8532132, 47.4433225 ], + [ 7.853217, 47.4433079 ], + [ 7.8532218, 47.4432934 ], + [ 7.8532276, 47.4432791 ], + [ 7.8532343000000004, 47.443265 ], + [ 7.853242, 47.4432511 ], + [ 7.8532506, 47.4432375 ], + [ 7.8532601, 47.4432241 ], + [ 7.8532705, 47.4432111 ], + [ 7.8532817, 47.4431984 ], + [ 7.8532938, 47.443186 ], + [ 7.8533068, 47.4431741 ], + [ 7.8533205, 47.4431625 ], + [ 7.8533349, 47.4431514 ], + [ 7.8533501, 47.4431408 ], + [ 7.853366, 47.4431306 ], + [ 7.8533826, 47.4431209 ], + [ 7.8533998, 47.4431118 ], + [ 7.8534176, 47.4431032 ], + [ 7.8534575, 47.4430788 ], + [ 7.8535166, 47.4430528 ], + [ 7.8535846, 47.4430237 ], + [ 7.853673, 47.4429981 ], + [ 7.8537531, 47.4429766 ], + [ 7.8538638, 47.4429491 ], + [ 7.8540872, 47.4428922 ], + [ 7.8543692, 47.4428268 ], + [ 7.8547087, 47.4427558 ], + [ 7.8549053, 47.4427033 ], + [ 7.8549596, 47.44268 ], + [ 7.8549902, 47.4426655 ], + [ 7.8550315, 47.4426432 ], + [ 7.8550754, 47.4426144 ], + [ 7.8551022, 47.4425977 ], + [ 7.855137, 47.4426255 ], + [ 7.8553207, 47.442731 ], + [ 7.8558177, 47.4428968 ], + [ 7.8560181, 47.4430116 ], + [ 7.8561244, 47.4426867 ], + [ 7.8562141, 47.4423683 ], + [ 7.856219, 47.4423699 ], + [ 7.8563523, 47.4423559 ], + [ 7.8564922, 47.44235 ], + [ 7.8567667, 47.4423315 ], + [ 7.8569097, 47.4420699 ], + [ 7.8570671999999995, 47.4417716 ], + [ 7.857374, 47.4419394 ], + [ 7.8577523, 47.4421324 ], + [ 7.8577211, 47.4423763 ], + [ 7.8577161, 47.4423761 ], + [ 7.8577079, 47.4424016 ], + [ 7.8577128, 47.4424035 ], + [ 7.8581, 47.4424716 ], + [ 7.8583888, 47.4425139 ], + [ 7.8586960999999995, 47.4425363 ], + [ 7.8594103, 47.4426556 ], + [ 7.8596956, 47.4427137 ], + [ 7.8597985, 47.4427345 ], + [ 7.8598699, 47.4422798 ], + [ 7.8598669, 47.442277 ], + [ 7.8600521, 47.4422458 ], + [ 7.8592534, 47.4413777 ], + [ 7.858917, 47.4411975 ], + [ 7.8589169, 47.4411961 ], + [ 7.8589174, 47.4411958 ], + [ 7.8589426, 47.4411737 ], + [ 7.858948, 47.4411677 ], + [ 7.8589535999999995, 47.4411554 ], + [ 7.8589589, 47.4411376 ], + [ 7.8589591, 47.4411271 ], + [ 7.8589556, 47.4411028 ], + [ 7.8589515, 47.441084 ], + [ 7.8589442, 47.4410711 ], + [ 7.8589268, 47.4410489 ], + [ 7.8589006999999995, 47.4410218 ], + [ 7.8588645, 47.4409905 ], + [ 7.8588265, 47.440961 ], + [ 7.8587621, 47.4409186 ], + [ 7.8587615, 47.4409181 ], + [ 7.8587384, 47.4409045 ], + [ 7.858716, 47.4408899 ], + [ 7.8587011, 47.4408789 ], + [ 7.8586851, 47.4408638 ], + [ 7.8586545999999995, 47.44083 ], + [ 7.8586449, 47.4408089 ], + [ 7.8586046, 47.4406981 ], + [ 7.8585778, 47.4406151 ], + [ 7.858559, 47.4405371 ], + [ 7.8585372, 47.4404382 ], + [ 7.8584947, 47.4402598 ], + [ 7.8584433, 47.4400723 ], + [ 7.8584105, 47.4399631 ], + [ 7.8583755, 47.4398368 ], + [ 7.8583422, 47.4397267 ], + [ 7.8583139, 47.4396349 ], + [ 7.8582765, 47.4395015 ], + [ 7.8582611, 47.4394487 ], + [ 7.8582485, 47.4394002 ], + [ 7.8582461, 47.4393679 ], + [ 7.8582443, 47.4393364 ], + [ 7.858245, 47.4393062 ], + [ 7.8582453999999995, 47.4393046 ], + [ 7.8582511, 47.4392833 ], + [ 7.8582577, 47.4392649 ], + [ 7.8582657, 47.4392425 ], + [ 7.8582832, 47.4392131 ], + [ 7.8583023, 47.4391888 ], + [ 7.8583295, 47.43917 ], + [ 7.858383, 47.4391409 ], + [ 7.8584731, 47.4391057 ], + [ 7.858511, 47.4390923 ], + [ 7.8585522, 47.4390754 ], + [ 7.8585823999999995, 47.4390629 ], + [ 7.8586121, 47.439046 ], + [ 7.8586477, 47.4390223 ], + [ 7.8586773, 47.4390009 ], + [ 7.8587345, 47.438956 ], + [ 7.8587901, 47.4389139 ], + [ 7.8588414, 47.4388836 ], + [ 7.8589088, 47.4388583 ], + [ 7.8590101, 47.4388307 ], + [ 7.8590625, 47.4388245 ], + [ 7.8591206, 47.4388226 ], + [ 7.8591599, 47.4388243 ], + [ 7.8592077, 47.4388325 ], + [ 7.8592528999999995, 47.4388417 ], + [ 7.8596076, 47.4389478 ], + [ 7.8596195, 47.4389515 ], + [ 7.8596316999999996, 47.4389546 ], + [ 7.8596442, 47.4389572 ], + [ 7.859657, 47.4389593 ], + [ 7.8596699, 47.4389608 ], + [ 7.8596829, 47.4389617 ], + [ 7.859696, 47.4389621 ], + [ 7.8597091, 47.4389619 ], + [ 7.8597222, 47.4389611 ], + [ 7.8597351, 47.4389597 ], + [ 7.8597479, 47.4389578 ], + [ 7.8597605, 47.4389553 ], + [ 7.8597728, 47.4389522 ], + [ 7.8597848, 47.4389486 ], + [ 7.8597962, 47.4389446 ], + [ 7.8598072, 47.4389401 ], + [ 7.8598178, 47.4389351 ], + [ 7.8598278, 47.4389297 ], + [ 7.8598374, 47.4389238 ], + [ 7.8598463, 47.4389176 ], + [ 7.8598547, 47.4389109 ], + [ 7.8598624, 47.438904 ], + [ 7.8598695, 47.4388967 ], + [ 7.8598759, 47.4388891 ], + [ 7.8598815, 47.4388812 ], + [ 7.8598864, 47.4388732 ], + [ 7.8598943, 47.4388609 ], + [ 7.8599014, 47.4388484 ], + [ 7.8599076, 47.4388356 ], + [ 7.859913, 47.4388227 ], + [ 7.8599176, 47.4388097 ], + [ 7.8599213, 47.4387965 ], + [ 7.8599241, 47.4387832 ], + [ 7.859926, 47.4387699 ], + [ 7.859927, 47.4387565 ], + [ 7.8599217, 47.4387225 ], + [ 7.8599073, 47.4386797 ], + [ 7.8598907, 47.4386402 ], + [ 7.8598597, 47.4386001 ], + [ 7.8598276, 47.4385671 ], + [ 7.8597941, 47.4385385 ], + [ 7.8597278, 47.4384958 ], + [ 7.8596189, 47.4384258 ], + [ 7.8595033, 47.4383499 ], + [ 7.8594337, 47.4383041 ], + [ 7.8593906, 47.4382748 ], + [ 7.8593415, 47.4382396 ], + [ 7.8592934, 47.438204 ], + [ 7.8592606, 47.438175 ], + [ 7.8592321, 47.4381394 ], + [ 7.8592058, 47.4381052 ], + [ 7.8591822, 47.4380722 ], + [ 7.8591552, 47.4380236 ], + [ 7.8591332, 47.4379787 ], + [ 7.8591247, 47.4379612 ], + [ 7.8591112, 47.4379259 ], + [ 7.8590991, 47.4378868 ], + [ 7.8590927, 47.437867 ], + [ 7.8590812, 47.4378159 ], + [ 7.8590748, 47.4377855 ], + [ 7.8590691, 47.4377322 ], + [ 7.8590669, 47.4376938 ], + [ 7.8590732, 47.4376587 ], + [ 7.8590894, 47.4375951 ], + [ 7.8591102, 47.4375343 ], + [ 7.8591286, 47.4374901 ], + [ 7.8591464, 47.4374604 ], + [ 7.8591739, 47.4374212 ], + [ 7.8592106, 47.4373864 ], + [ 7.8592443, 47.4373609 ], + [ 7.8592859, 47.4373344 ], + [ 7.8593109, 47.437323 ], + [ 7.8593267, 47.4373161 ], + [ 7.859516, 47.4372453 ], + [ 7.859674, 47.4371875 ], + [ 7.8598973999999995, 47.4371051 ], + [ 7.8600711, 47.4370506 ], + [ 7.8601890999999995, 47.4370127 ], + [ 7.8603221, 47.4369843 ], + [ 7.860733, 47.4369434 ], + [ 7.8609732999999995, 47.4369181 ], + [ 7.8611185, 47.4368998 ], + [ 7.8612269999999995, 47.4368841 ], + [ 7.8613285, 47.4368658 ], + [ 7.8615208, 47.4368292 ], + [ 7.86163, 47.4368081 ], + [ 7.8618542, 47.4367644 ], + [ 7.8620079, 47.436734799999996 ], + [ 7.8621922, 47.4366972 ], + [ 7.8623141, 47.4366798 ], + [ 7.8624091, 47.4366669 ], + [ 7.8624697, 47.4366584 ], + [ 7.8625352, 47.4366604 ], + [ 7.8626055, 47.4366612 ], + [ 7.8626645, 47.4366643 ], + [ 7.8627154, 47.4366685 ], + [ 7.8628335, 47.4366845 ], + [ 7.8629055, 47.4366941 ], + [ 7.8629921, 47.4367053 ], + [ 7.8630366, 47.4367112 ], + [ 7.86306, 47.4367122 ], + [ 7.8631025, 47.4367148 ], + [ 7.8631427, 47.4367172 ], + [ 7.8632128, 47.4367204 ], + [ 7.8632686, 47.4367229 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns026", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Mutti - Schöffleten", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Mutti - Schöffleten", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Mutti - Schöffleten", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Mutti - Schöffleten", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.2613544, 47.5093957 ], + [ 9.2612041, 47.5098137 ], + [ 9.2620599, 47.5099504 ], + [ 9.2621241, 47.5097704 ], + [ 9.2621849, 47.5097613 ], + [ 9.2629055, 47.509866 ], + [ 9.2631328, 47.5099128 ], + [ 9.2631615, 47.5099763 ], + [ 9.263159, 47.5100573 ], + [ 9.2631363, 47.5101323 ], + [ 9.2631022, 47.5101823 ], + [ 9.2630508, 47.5102317 ], + [ 9.2629936, 47.5102668 ], + [ 9.2629254, 47.5102921 ], + [ 9.2628793, 47.5103037 ], + [ 9.2626756, 47.510288 ], + [ 9.2618496, 47.510167 ], + [ 9.2616789, 47.5106878 ], + [ 9.2639386, 47.5114169 ], + [ 9.2639585, 47.5114535 ], + [ 9.2640918, 47.5112768 ], + [ 9.2643929, 47.5110355 ], + [ 9.2661209, 47.5097766 ], + [ 9.2664426, 47.509517 ], + [ 9.2667962, 47.5092208 ], + [ 9.2594749, 47.5081343 ], + [ 9.2581573, 47.5087011 ], + [ 9.2595468, 47.5089941 ], + [ 9.2602368, 47.5090975 ], + [ 9.2603771, 47.5091619 ], + [ 9.2603908, 47.5091734 ], + [ 9.2604129, 47.5091973 ], + [ 9.2604336, 47.509222199999996 ], + [ 9.260446, 47.5092355 ], + [ 9.260461, 47.5092469 ], + [ 9.2604692, 47.5092513 ], + [ 9.2604759, 47.5092548 ], + [ 9.260488, 47.5092591 ], + [ 9.2605001, 47.5092625 ], + [ 9.2605188, 47.5092658 ], + [ 9.2613544, 47.5093957 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZV002", + "country" : "CHE", + "name" : [ + { + "text" : "LSZV Sitterdorf (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSZV Sitterdorf (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSZV Sitterdorf (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSZV Sitterdorf (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Flugplatz Sitterdorf", + "lang" : "de-CH" + }, + { + "text" : "Flugplatz Sitterdorf", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatz Sitterdorf", + "lang" : "it-CH" + }, + { + "text" : "Flugplatz Sitterdorf", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Willi Hefel", + "lang" : "de-CH" + }, + { + "text" : "Willi Hefel", + "lang" : "fr-CH" + }, + { + "text" : "Willi Hefel", + "lang" : "it-CH" + }, + { + "text" : "Willi Hefel", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.erlebnisflugplatz.ch/deu/drohnen_42639.shtml", + "email" : "info@erlebnisflugplatz.ch", + "phone" : "0041714223031", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P02DT12H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8087208, 47.4380797 ], + [ 7.808925, 47.438215 ], + [ 7.8090997, 47.4378787 ], + [ 7.8091875, 47.4376245 ], + [ 7.8092203, 47.4372434 ], + [ 7.8092467, 47.4368518 ], + [ 7.8092828, 47.4356409 ], + [ 7.8092856, 47.4354999 ], + [ 7.8092693, 47.4350193 ], + [ 7.8091702, 47.4346574 ], + [ 7.8090242, 47.4344603 ], + [ 7.8089729, 47.433969 ], + [ 7.8089923, 47.4338572 ], + [ 7.8091137, 47.4336921 ], + [ 7.809163, 47.4335969 ], + [ 7.8092251, 47.4335393 ], + [ 7.8092473, 47.4334594 ], + [ 7.8092600999999995, 47.433342 ], + [ 7.8092517, 47.4332876 ], + [ 7.8092216, 47.4331922 ], + [ 7.8090879, 47.4329815 ], + [ 7.8090504, 47.432884 ], + [ 7.8090322, 47.4328245 ], + [ 7.8090053, 47.4327072 ], + [ 7.8089986, 47.4326398 ], + [ 7.8090012, 47.4324896 ], + [ 7.8089968, 47.4323762 ], + [ 7.8089711, 47.4322779 ], + [ 7.8089462, 47.4322124 ], + [ 7.8089136, 47.4320871 ], + [ 7.808893, 47.4319328 ], + [ 7.8088937, 47.4318173 ], + [ 7.8089061, 47.4317088 ], + [ 7.808911, 47.4316138 ], + [ 7.808911, 47.4315502 ], + [ 7.8088972, 47.4315116 ], + [ 7.8088845, 47.431475 ], + [ 7.8088467, 47.4313821 ], + [ 7.8087862999999995, 47.4312759 ], + [ 7.8087613000000005, 47.4312372 ], + [ 7.8087138, 47.4311723 ], + [ 7.8087124, 47.4312497 ], + [ 7.8087097, 47.4312494 ], + [ 7.808712, 47.4314579 ], + [ 7.8087378, 47.4322309 ], + [ 7.8088604, 47.4343335 ], + [ 7.8088789, 47.4347978 ], + [ 7.8089233, 47.4349128 ], + [ 7.8088741, 47.4364782 ], + [ 7.8088562, 47.4367748 ], + [ 7.8088027, 47.4373793 ], + [ 7.808711, 47.4380732 ], + [ 7.8087208, 47.4380797 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr140", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Tenniken Diegterbach", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Tenniken Diegterbach", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Tenniken Diegterbach", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Tenniken Diegterbach", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7617597, 47.445097 ], + [ 7.7617206, 47.4449696 ], + [ 7.7620356, 47.4451414 ], + [ 7.7626472, 47.4453538 ], + [ 7.7626716, 47.4453296 ], + [ 7.7628786, 47.4451271 ], + [ 7.7632533, 47.4449267 ], + [ 7.7634223, 47.444989 ], + [ 7.7637512, 47.4451285 ], + [ 7.7639494, 47.4451992 ], + [ 7.7641894, 47.4452487 ], + [ 7.7647354, 47.4454268 ], + [ 7.7652657, 47.4454899 ], + [ 7.7654505, 47.4455378 ], + [ 7.7658903, 47.4455504 ], + [ 7.766385, 47.4454695 ], + [ 7.7663539, 47.44588 ], + [ 7.7664466999999995, 47.445915 ], + [ 7.7670766, 47.4454927 ], + [ 7.7667406, 47.4452601 ], + [ 7.7670347, 47.4451118 ], + [ 7.7669538, 47.4449742 ], + [ 7.7668902, 47.4447539 ], + [ 7.7665232, 47.4445881 ], + [ 7.7662602, 47.4445724 ], + [ 7.7658380000000005, 47.4448443 ], + [ 7.7654057, 47.4449647 ], + [ 7.7647768, 47.4449834 ], + [ 7.7644466, 47.4449932 ], + [ 7.7643654, 47.4449832 ], + [ 7.7640198, 47.4449409 ], + [ 7.7634424, 47.4446312 ], + [ 7.7631888, 47.4443982 ], + [ 7.7630331, 47.4442317 ], + [ 7.7628549, 47.4440188 ], + [ 7.7626912, 47.4437863 ], + [ 7.7626622, 47.4437946 ], + [ 7.7622981, 47.4438933 ], + [ 7.7618236, 47.4440192 ], + [ 7.7613216, 47.4436963 ], + [ 7.7612502, 47.4436864 ], + [ 7.7610909, 47.4434237 ], + [ 7.7608847999999995, 47.4431417 ], + [ 7.7608214, 47.4431638 ], + [ 7.760726, 47.4431581 ], + [ 7.7605234, 47.4431461 ], + [ 7.7603837, 47.443195 ], + [ 7.7602569, 47.4432585 ], + [ 7.7601466, 47.443334899999996 ], + [ 7.7600556, 47.4434222 ], + [ 7.759986, 47.4435184 ], + [ 7.7599583, 47.4435755 ], + [ 7.7599369, 47.4436338 ], + [ 7.7599239, 47.4436933 ], + [ 7.7599187, 47.4437533 ], + [ 7.7599156, 47.4439526 ], + [ 7.7599057, 47.4443229 ], + [ 7.7598807, 47.4444583 ], + [ 7.759895, 47.4445705 ], + [ 7.7598674, 47.4447088 ], + [ 7.759909, 47.4447238 ], + [ 7.7600698, 47.4447814 ], + [ 7.7602549, 47.4448607 ], + [ 7.7603788, 47.4449799 ], + [ 7.7605239, 47.4453237 ], + [ 7.7606611999999995, 47.4455134 ], + [ 7.7609386, 47.4460078 ], + [ 7.7605284, 47.4462227 ], + [ 7.7608722, 47.4466052 ], + [ 7.7611133, 47.4468932 ], + [ 7.7613379, 47.4471615 ], + [ 7.7615093, 47.4473815 ], + [ 7.7616517, 47.4476006 ], + [ 7.7618238, 47.447913 ], + [ 7.7620975, 47.4485053 ], + [ 7.7623784, 47.4486755 ], + [ 7.7626028, 47.4488233 ], + [ 7.7628228, 47.4489759 ], + [ 7.7630593999999995, 47.44909 ], + [ 7.7630449, 47.4489533 ], + [ 7.7630132, 47.4487139 ], + [ 7.7629949, 47.4485659 ], + [ 7.7628863, 47.4484069 ], + [ 7.7627808, 47.4482482 ], + [ 7.7627269, 47.4480846 ], + [ 7.7626659, 47.4479057 ], + [ 7.7626428, 47.4478383 ], + [ 7.7626101, 47.4476946 ], + [ 7.7625297, 47.4473412 ], + [ 7.7624908999999995, 47.4471698 ], + [ 7.7623484, 47.4468051 ], + [ 7.76233, 47.4467578 ], + [ 7.7622589, 47.4465757 ], + [ 7.7621249, 47.4463662 ], + [ 7.7618761, 47.445916 ], + [ 7.7618039, 47.4457863 ], + [ 7.7616008, 47.4454169 ], + [ 7.7616748, 47.4453721 ], + [ 7.7616943, 47.4453603 ], + [ 7.7616598, 47.4453413 ], + [ 7.7616872, 47.4453158 ], + [ 7.7617597, 47.445097 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns343", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Eggwald - Looch", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Eggwald - Looch", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Eggwald - Looch", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Eggwald - Looch", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.4850488, 46.9484127 ], + [ 9.485038, 46.9482716 ], + [ 9.4850165, 46.9481311 ], + [ 9.4849842, 46.9479915 ], + [ 9.4849413, 46.9478533 ], + [ 9.484888, 46.9477168 ], + [ 9.4848242, 46.9475825 ], + [ 9.4847503, 46.9474506 ], + [ 9.4846664, 46.9473215 ], + [ 9.4845728, 46.9471956 ], + [ 9.4844697, 46.9470733 ], + [ 9.4843573, 46.9469548 ], + [ 9.4842361, 46.9468405 ], + [ 9.4841063, 46.9467307 ], + [ 9.4839682, 46.9466257 ], + [ 9.4838224, 46.9465257 ], + [ 9.4836691, 46.9464312 ], + [ 9.4835088, 46.9463423 ], + [ 9.4833419, 46.9462592 ], + [ 9.4831689, 46.9461823 ], + [ 9.4829902, 46.9461116 ], + [ 9.4828064, 46.9460474 ], + [ 9.482618, 46.94599 ], + [ 9.4824254, 46.9459393 ], + [ 9.4822292, 46.9458956 ], + [ 9.4820299, 46.9458591 ], + [ 9.4818281, 46.9458297 ], + [ 9.4816244, 46.9458075 ], + [ 9.4814192, 46.9457928 ], + [ 9.4812132, 46.9457853 ], + [ 9.4810069, 46.9457853 ], + [ 9.4808009, 46.9457927 ], + [ 9.4805957, 46.9458074 ], + [ 9.480392, 46.9458295 ], + [ 9.4801902, 46.9458589 ], + [ 9.4799909, 46.9458954 ], + [ 9.4797947, 46.9459391 ], + [ 9.4796021, 46.9459897 ], + [ 9.4794136, 46.9460471 ], + [ 9.4792298, 46.9461112 ], + [ 9.4790511, 46.9461819 ], + [ 9.478878, 46.9462588 ], + [ 9.4787111, 46.9463418 ], + [ 9.4785508, 46.9464307 ], + [ 9.4783974, 46.946525199999996 ], + [ 9.4782515, 46.9466251 ], + [ 9.4781135, 46.946730099999996 ], + [ 9.4779836, 46.9468398 ], + [ 9.4778623, 46.9469541 ], + [ 9.4777499, 46.9470726 ], + [ 9.4776467, 46.9471949 ], + [ 9.477553, 46.9473208 ], + [ 9.4774691, 46.9474499 ], + [ 9.4773951, 46.9475818 ], + [ 9.4773313, 46.9477161 ], + [ 9.4772779, 46.9478526 ], + [ 9.477235, 46.9479907 ], + [ 9.4772026, 46.9481303 ], + [ 9.477181, 46.9482708 ], + [ 9.4771702, 46.948411899999996 ], + [ 9.4771702, 46.9485532 ], + [ 9.4771809, 46.9486942 ], + [ 9.4772024, 46.9488348 ], + [ 9.4772347, 46.9489743 ], + [ 9.4772775, 46.9491125 ], + [ 9.4773309, 46.949249 ], + [ 9.4773946, 46.9493833 ], + [ 9.4774685, 46.9495152 ], + [ 9.4775524, 46.9496443 ], + [ 9.477646, 46.9497702 ], + [ 9.4777491, 46.9498926 ], + [ 9.4778615, 46.9500111 ], + [ 9.4779827, 46.9501254 ], + [ 9.4781125, 46.9502352 ], + [ 9.478250599999999, 46.9503402 ], + [ 9.4783964, 46.9504401 ], + [ 9.4785497, 46.9505347 ], + [ 9.47871, 46.9506236 ], + [ 9.4788769, 46.9507067 ], + [ 9.4790499, 46.9507836 ], + [ 9.4792286, 46.9508543 ], + [ 9.4794124, 46.9509185 ], + [ 9.4796009, 46.950976 ], + [ 9.4797935, 46.9510266 ], + [ 9.4799897, 46.9510703 ], + [ 9.480189, 46.9511069 ], + [ 9.4803908, 46.9511363 ], + [ 9.4805945, 46.9511584 ], + [ 9.4807997, 46.9511732 ], + [ 9.4810058, 46.9511806 ], + [ 9.4812121, 46.9511806 ], + [ 9.481418099999999, 46.9511732 ], + [ 9.4816233, 46.9511585 ], + [ 9.4818271, 46.9511364 ], + [ 9.4820289, 46.951107 ], + [ 9.4822282, 46.9510705 ], + [ 9.4824244, 46.9510269 ], + [ 9.482617, 46.9509762 ], + [ 9.4828055, 46.9509188 ], + [ 9.4829894, 46.9508547 ], + [ 9.4831681, 46.9507841 ], + [ 9.4833411, 46.9507071 ], + [ 9.4835081, 46.9506241 ], + [ 9.483668399999999, 46.9505352 ], + [ 9.4838217, 46.9504407 ], + [ 9.4839676, 46.9503408 ], + [ 9.4841057, 46.9502358 ], + [ 9.4842356, 46.950126 ], + [ 9.4843568, 46.9500117 ], + [ 9.4844692, 46.9498932 ], + [ 9.4845724, 46.9497709 ], + [ 9.4846661, 46.949645 ], + [ 9.48475, 46.949516 ], + [ 9.484824, 46.9493841 ], + [ 9.4848878, 46.9492497 ], + [ 9.4849412, 46.9491133 ], + [ 9.4849841, 46.9489751 ], + [ 9.4850164, 46.9488355 ], + [ 9.485038, 46.948695 ], + [ 9.4850488, 46.9485539 ], + [ 9.4850488, 46.9484127 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0069", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Mapragg", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Mapragg", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Mapragg", + "lang" : "it-CH" + }, + { + "text" : "Substation Mapragg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.746073, 46.9398155 ], + [ 6.7470083, 46.9396465 ], + [ 6.7471229, 46.939183 ], + [ 6.7479177, 46.9384864 ], + [ 6.7487447, 46.9377505 ], + [ 6.7487527, 46.9377528 ], + [ 6.7489427, 46.9378063 ], + [ 6.7495947, 46.9373477 ], + [ 6.7502336, 46.9374135 ], + [ 6.7500302, 46.937579 ], + [ 6.7499348, 46.9376645 ], + [ 6.7505191, 46.9380141 ], + [ 6.7507946, 46.9380828 ], + [ 6.7518961, 46.9382981 ], + [ 6.7522771, 46.9387089 ], + [ 6.7523095, 46.9383324 ], + [ 6.7523123, 46.9383175 ], + [ 6.7521659, 46.938246 ], + [ 6.7522841, 46.9381691 ], + [ 6.7520583, 46.9378026 ], + [ 6.752167, 46.937517 ], + [ 6.7533369, 46.937525 ], + [ 6.7541215999999995, 46.9374075 ], + [ 6.754109, 46.9373904 ], + [ 6.7537943, 46.936966 ], + [ 6.7544304, 46.9368534 ], + [ 6.7547539, 46.9367335 ], + [ 6.7554118, 46.9364944 ], + [ 6.7556755, 46.9364164 ], + [ 6.7559453, 46.9363445 ], + [ 6.7564976, 46.936134 ], + [ 6.7566836, 46.9359165 ], + [ 6.7560785, 46.9354704 ], + [ 6.7554493, 46.9350151 ], + [ 6.7548853, 46.9346023 ], + [ 6.7542188, 46.9341175 ], + [ 6.7543519, 46.9340475 ], + [ 6.7544745, 46.9339772 ], + [ 6.7546591, 46.9338569 ], + [ 6.7551441, 46.9338548 ], + [ 6.7553866, 46.9337241 ], + [ 6.7555359, 46.9336454 ], + [ 6.7563987999999995, 46.9329108 ], + [ 6.7572156, 46.9322115 ], + [ 6.7583514000000005, 46.9311857 ], + [ 6.7578437000000005, 46.9307926 ], + [ 6.757524, 46.9306745 ], + [ 6.7570324, 46.9305234 ], + [ 6.7554388, 46.9302902 ], + [ 6.7550672, 46.93017 ], + [ 6.7537562, 46.9302155 ], + [ 6.7532043, 46.930203 ], + [ 6.7532711, 46.9298222 ], + [ 6.7531045, 46.9291435 ], + [ 6.7521059, 46.9292756 ], + [ 6.7512365, 46.9292338 ], + [ 6.750357, 46.9289507 ], + [ 6.7501327, 46.9287757 ], + [ 6.7492324, 46.9280733 ], + [ 6.7491997999999995, 46.9277271 ], + [ 6.7491329, 46.9270165 ], + [ 6.7490901, 46.9265012 ], + [ 6.7492775, 46.925767 ], + [ 6.7493476999999995, 46.925101 ], + [ 6.7492073, 46.9250049 ], + [ 6.7491907, 46.9250226 ], + [ 6.7476942, 46.9266139 ], + [ 6.7475635, 46.9265558 ], + [ 6.7474349, 46.9264991 ], + [ 6.7471794, 46.9263874 ], + [ 6.7470935, 46.9263491 ], + [ 6.7469159, 46.9262644 ], + [ 6.7466477, 46.9261762 ], + [ 6.7464028, 46.9260595 ], + [ 6.7461503, 46.9259432 ], + [ 6.7459033999999996, 46.9258182 ], + [ 6.745825, 46.925770299999996 ], + [ 6.7457504, 46.9257199 ], + [ 6.7456694, 46.9256858 ], + [ 6.7454721, 46.9255146 ], + [ 6.7451576, 46.9253369 ], + [ 6.7451238, 46.9253171 ], + [ 6.7450303, 46.9251646 ], + [ 6.7448215, 46.925035 ], + [ 6.7446443, 46.9248493 ], + [ 6.7445807, 46.9247826 ], + [ 6.7445699, 46.9247542 ], + [ 6.7444738, 46.924692 ], + [ 6.7443655, 46.924599 ], + [ 6.7441688, 46.9242998 ], + [ 6.7439674, 46.9241149 ], + [ 6.7439065, 46.9238511 ], + [ 6.743579, 46.9240896 ], + [ 6.7434102, 46.9242838 ], + [ 6.7434006, 46.9243233 ], + [ 6.7428118999999995, 46.9244957 ], + [ 6.7425343, 46.9245986 ], + [ 6.7424181999999995, 46.9243993 ], + [ 6.7423452, 46.9243143 ], + [ 6.7422672, 46.924225 ], + [ 6.7420928, 46.9241245 ], + [ 6.7419227, 46.9240515 ], + [ 6.7417654, 46.9239656 ], + [ 6.7416019, 46.9238845 ], + [ 6.7413035, 46.9238464 ], + [ 6.7409544, 46.9236965 ], + [ 6.7404720000000005, 46.9236941 ], + [ 6.7403962, 46.9235749 ], + [ 6.740295, 46.9234886 ], + [ 6.7398401, 46.9231047 ], + [ 6.7398275, 46.9230906 ], + [ 6.7393136, 46.922754 ], + [ 6.7391928, 46.9227107 ], + [ 6.7391302, 46.9226888 ], + [ 6.7389361, 46.9226352 ], + [ 6.7384961, 46.9227208 ], + [ 6.7381618, 46.9227951 ], + [ 6.7378991, 46.9227657 ], + [ 6.7377518, 46.9227492 ], + [ 6.7377043, 46.9227304 ], + [ 6.7373352, 46.9225848 ], + [ 6.7372452, 46.9225493 ], + [ 6.7370830999999995, 46.922456 ], + [ 6.7373235000000005, 46.9223327 ], + [ 6.7371881, 46.9221589 ], + [ 6.7370613, 46.9219963 ], + [ 6.7369204, 46.9219539 ], + [ 6.7370315, 46.9218355 ], + [ 6.7369386, 46.9217547 ], + [ 6.7368217999999995, 46.9216448 ], + [ 6.7370779, 46.9215343 ], + [ 6.7368808, 46.9213345 ], + [ 6.7368102, 46.9212773 ], + [ 6.7366469, 46.9211833 ], + [ 6.7365132, 46.921121 ], + [ 6.7364971, 46.9211131 ], + [ 6.7361547, 46.9209469 ], + [ 6.7354432, 46.920653 ], + [ 6.734849, 46.9202882 ], + [ 6.7345531, 46.9201212 ], + [ 6.7344529, 46.9200647 ], + [ 6.7344353, 46.9200444 ], + [ 6.7342535, 46.9198347 ], + [ 6.7340824999999995, 46.9196375 ], + [ 6.7339144, 46.919525 ], + [ 6.7338834, 46.9194942 ], + [ 6.7337292, 46.9193412 ], + [ 6.7336813, 46.9192936 ], + [ 6.7335802000000005, 46.9191933 ], + [ 6.7333491, 46.918964 ], + [ 6.7331611, 46.9186768 ], + [ 6.733028, 46.9184833 ], + [ 6.7329256, 46.9184116 ], + [ 6.7328373, 46.9183527 ], + [ 6.7325487, 46.9181605 ], + [ 6.7321949, 46.9179491 ], + [ 6.7320333, 46.9178586 ], + [ 6.7317928, 46.9176838 ], + [ 6.7316897, 46.9176088 ], + [ 6.7311653, 46.9174885 ], + [ 6.7308837, 46.9173467 ], + [ 6.7306324, 46.9172168 ], + [ 6.7304147, 46.9171067 ], + [ 6.7299163, 46.9168061 ], + [ 6.729718, 46.9165785 ], + [ 6.7296852, 46.9165409 ], + [ 6.7286319, 46.9164803 ], + [ 6.7284879, 46.9164263 ], + [ 6.7282366, 46.9163205 ], + [ 6.7281732, 46.9162762 ], + [ 6.7278637, 46.9160598 ], + [ 6.7275021, 46.9158497 ], + [ 6.7273223, 46.9157502 ], + [ 6.7271597, 46.9156408 ], + [ 6.7269392, 46.9154151 ], + [ 6.7266969, 46.9152025 ], + [ 6.7264175999999996, 46.9150196 ], + [ 6.726226, 46.9148686 ], + [ 6.7258317, 46.9145839 ], + [ 6.7256817, 46.914485 ], + [ 6.7253462, 46.9147065 ], + [ 6.7251888, 46.9145842 ], + [ 6.7251505, 46.9145527 ], + [ 6.7250175, 46.9144471 ], + [ 6.7249555, 46.9143978 ], + [ 6.7248714, 46.9143446 ], + [ 6.7248324, 46.914320000000004 ], + [ 6.7247421, 46.9142391 ], + [ 6.7244564, 46.9140522 ], + [ 6.7240135, 46.9138159 ], + [ 6.7239816999999995, 46.9137964 ], + [ 6.7237864, 46.913686 ], + [ 6.7237728, 46.9136435 ], + [ 6.723759, 46.9136005 ], + [ 6.723719, 46.9134755 ], + [ 6.7237589, 46.913366 ], + [ 6.7238154, 46.9132106 ], + [ 6.7238313, 46.9131669 ], + [ 6.723777, 46.9130205 ], + [ 6.7236979, 46.9128071 ], + [ 6.7237823, 46.9124992 ], + [ 6.7235309999999995, 46.9122116 ], + [ 6.7234045, 46.9120668 ], + [ 6.7232821, 46.9119267 ], + [ 6.7227321, 46.9114604 ], + [ 6.7224954, 46.9111742 ], + [ 6.7223647, 46.9110152 ], + [ 6.7222523, 46.9109125 ], + [ 6.72198, 46.9106692 ], + [ 6.7218202, 46.9103707 ], + [ 6.722081, 46.9102515 ], + [ 6.7222539, 46.9101486 ], + [ 6.7221060999999995, 46.9099942 ], + [ 6.7220694, 46.9099354 ], + [ 6.7220295, 46.9098957 ], + [ 6.721988, 46.9098593 ], + [ 6.721934, 46.9098062 ], + [ 6.7218149, 46.909689 ], + [ 6.7216642, 46.9096162 ], + [ 6.7215956, 46.9095687 ], + [ 6.7213342, 46.9097564 ], + [ 6.7212349, 46.9097977 ], + [ 6.7210344, 46.9095895 ], + [ 6.7209433, 46.9096239 ], + [ 6.7206207, 46.9097564 ], + [ 6.7205763, 46.9097747 ], + [ 6.7205842, 46.9097225 ], + [ 6.7205556, 46.909619 ], + [ 6.7205091, 46.9094509 ], + [ 6.7204689, 46.9093055 ], + [ 6.7204332, 46.9091764 ], + [ 6.7204165, 46.9091168 ], + [ 6.7203921, 46.9090301 ], + [ 6.7203564, 46.9089216 ], + [ 6.7202924, 46.9087276 ], + [ 6.7202742, 46.908665 ], + [ 6.7202657, 46.9086354 ], + [ 6.7202454, 46.9085656 ], + [ 6.7202291, 46.9085097 ], + [ 6.720219, 46.908475 ], + [ 6.7201826, 46.9083496 ], + [ 6.7201353, 46.908179 ], + [ 6.7200576, 46.9078991 ], + [ 6.7200412, 46.9078397 ], + [ 6.7200874, 46.9078266 ], + [ 6.7200461, 46.9076931 ], + [ 6.7200349, 46.907605 ], + [ 6.7200344, 46.9075674 ], + [ 6.7200307, 46.9074551 ], + [ 6.7200219, 46.9073892 ], + [ 6.7200054, 46.9072647 ], + [ 6.7200035, 46.90723 ], + [ 6.7199544, 46.9070821 ], + [ 6.7199302, 46.9070123 ], + [ 6.7198453, 46.9067672 ], + [ 6.7197929, 46.9066613 ], + [ 6.7197768, 46.906621 ], + [ 6.7197663, 46.906595 ], + [ 6.7196976, 46.9064237 ], + [ 6.719453, 46.9060658 ], + [ 6.7193168, 46.9058696 ], + [ 6.7191674, 46.9056948 ], + [ 6.717757, 46.905908 ], + [ 6.7167011, 46.9060767 ], + [ 6.7167878, 46.9065261 ], + [ 6.7169086, 46.907153 ], + [ 6.7170054, 46.9076549 ], + [ 6.7170929, 46.9081083 ], + [ 6.7172008, 46.9086678 ], + [ 6.7172444, 46.9088937 ], + [ 6.7172754999999995, 46.9090549 ], + [ 6.7172781, 46.9090699 ], + [ 6.7173703, 46.9095872 ], + [ 6.717385, 46.9096695 ], + [ 6.7174186, 46.9098582 ], + [ 6.7174496999999995, 46.9100332 ], + [ 6.7174742, 46.9101706 ], + [ 6.7175347, 46.9105101 ], + [ 6.7176387, 46.9110938 ], + [ 6.7176516, 46.9111663 ], + [ 6.7176768, 46.9113079 ], + [ 6.7176838, 46.9113472 ], + [ 6.7177150999999995, 46.911523 ], + [ 6.7177451999999995, 46.9116914 ], + [ 6.7177439, 46.9117176 ], + [ 6.7175372, 46.9158644 ], + [ 6.7185623, 46.9188287 ], + [ 6.7190156, 46.9202318 ], + [ 6.7193263, 46.9211939 ], + [ 6.720872, 46.925823 ], + [ 6.7211592, 46.9263595 ], + [ 6.7226406, 46.9291277 ], + [ 6.7235202, 46.9307688 ], + [ 6.7236154, 46.9309464 ], + [ 6.7237086, 46.9311203 ], + [ 6.7238530999999995, 46.9310816 ], + [ 6.7245165, 46.9309562 ], + [ 6.7246024, 46.9309578 ], + [ 6.724693, 46.9309855 ], + [ 6.7247815, 46.9310004 ], + [ 6.7249055, 46.9309741 ], + [ 6.7250723, 46.9309711 ], + [ 6.7251635, 46.9309573 ], + [ 6.7252484, 46.9309762 ], + [ 6.7254116, 46.9309108 ], + [ 6.7260019, 46.9307838 ], + [ 6.7260816, 46.930937 ], + [ 6.7259576, 46.931 ], + [ 6.7259148, 46.9310387 ], + [ 6.7259129, 46.9310986 ], + [ 6.7259658, 46.9311485 ], + [ 6.7260672, 46.9311571 ], + [ 6.7261844, 46.9311345 ], + [ 6.7272998, 46.9313186 ], + [ 6.7285205999999995, 46.9318147 ], + [ 6.7285979000000005, 46.9318515 ], + [ 6.7290089, 46.9317278 ], + [ 6.729111, 46.93177 ], + [ 6.7292027999999995, 46.9317114 ], + [ 6.7293307, 46.9316531 ], + [ 6.7295071, 46.9315961 ], + [ 6.7296773, 46.9321206 ], + [ 6.7296395, 46.9321878 ], + [ 6.7297003, 46.9323576 ], + [ 6.7297755, 46.9324232 ], + [ 6.729902, 46.9324531 ], + [ 6.7301374, 46.9323787 ], + [ 6.7302015, 46.9323094 ], + [ 6.7305217, 46.9322238 ], + [ 6.7307161, 46.9325174 ], + [ 6.7314376, 46.9326142 ], + [ 6.7318207, 46.9328105 ], + [ 6.7319159, 46.9328593 ], + [ 6.7343544, 46.9337602 ], + [ 6.7369797, 46.9353353 ], + [ 6.7373014, 46.9355283 ], + [ 6.7374529, 46.9356655 ], + [ 6.7379492, 46.9356723 ], + [ 6.738026, 46.9359229 ], + [ 6.7384153, 46.9359138 ], + [ 6.7386162, 46.9360399 ], + [ 6.7392636, 46.9363244 ], + [ 6.740332, 46.9364969 ], + [ 6.7406969, 46.9368823 ], + [ 6.7431279, 46.9371002 ], + [ 6.7434104999999995, 46.9371622 ], + [ 6.7436653, 46.9378246 ], + [ 6.7446169, 46.9387555 ], + [ 6.7447504, 46.9390533 ], + [ 6.746073, 46.9398155 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "NAT2", + "country" : "CHE", + "name" : [ + { + "text" : "Roche devant", + "lang" : "de-CH" + }, + { + "text" : "Roche devant", + "lang" : "fr-CH" + }, + { + "text" : "Roche devant", + "lang" : "it-CH" + }, + { + "text" : "Roche devant", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "regulationExemption" : "NO", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Section nature", + "lang" : "de-CH" + }, + { + "text" : "Section nature", + "lang" : "fr-CH" + }, + { + "text" : "Section nature", + "lang" : "it-CH" + }, + { + "text" : "Section nature", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Service de la faune, des forêts et de la nature", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, des forêts et de la nature", + "lang" : "fr-CH" + }, + { + "text" : "Service de la faune, des forêts et de la nature", + "lang" : "it-CH" + }, + { + "text" : "Service de la faune, des forêts et de la nature", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Chef de la section nature", + "lang" : "de-CH" + }, + { + "text" : "Chef de la section nature", + "lang" : "fr-CH" + }, + { + "text" : "Chef de la section nature", + "lang" : "it-CH" + }, + { + "text" : "Chef de la section nature", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ne.ch/autorites/DDTE/SFFN/nature/Pages/accueil.aspx", + "email" : "sffn@ne.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.7096815, 47.4808783 ], + [ 8.7096727, 47.4807372 ], + [ 8.709653, 47.4805966 ], + [ 8.7096224, 47.4804569 ], + [ 8.7095811, 47.4803184 ], + [ 8.7095292, 47.4801816 ], + [ 8.7094668, 47.4800468 ], + [ 8.7093941, 47.4799144 ], + [ 8.7093112, 47.4797848 ], + [ 8.7092185, 47.4796583 ], + [ 8.7091161, 47.4795353 ], + [ 8.7090044, 47.479416 ], + [ 8.7088836, 47.4793009 ], + [ 8.7087541, 47.4791903 ], + [ 8.7086162, 47.4790844 ], + [ 8.7084703, 47.4789835 ], + [ 8.7083169, 47.4788879 ], + [ 8.7081563, 47.4787979 ], + [ 8.707989, 47.4787138 ], + [ 8.7078153, 47.4786356 ], + [ 8.7076359, 47.4785638 ], + [ 8.7074512, 47.4784984 ], + [ 8.7072618, 47.4784397 ], + [ 8.707068, 47.4783877 ], + [ 8.7068705, 47.4783427 ], + [ 8.7066698, 47.4783048 ], + [ 8.7064664, 47.478274 ], + [ 8.7062609, 47.4782505 ], + [ 8.7060539, 47.4782344 ], + [ 8.705846, 47.4782256 ], + [ 8.7056376, 47.4782241 ], + [ 8.7054294, 47.4782301 ], + [ 8.705222, 47.4782435 ], + [ 8.7050159, 47.4782642 ], + [ 8.7048117, 47.4782922 ], + [ 8.7046099, 47.4783273 ], + [ 8.7044111, 47.4783696 ], + [ 8.7042158, 47.4784189 ], + [ 8.7040246, 47.4784751 ], + [ 8.703838, 47.478538 ], + [ 8.7036565, 47.4786074 ], + [ 8.7034806, 47.4786831 ], + [ 8.7033108, 47.478765 ], + [ 8.7031476, 47.4788528 ], + [ 8.7029914, 47.4789462 ], + [ 8.7028426, 47.4790451 ], + [ 8.7027016, 47.4791491 ], + [ 8.7025688, 47.479258 ], + [ 8.7024447, 47.4793714 ], + [ 8.7023294, 47.4794891 ], + [ 8.7022234, 47.4796107 ], + [ 8.702127, 47.479736 ], + [ 8.7020403, 47.4798644 ], + [ 8.7019637, 47.4799958 ], + [ 8.7018973, 47.4801297 ], + [ 8.7018413, 47.4802658 ], + [ 8.7017959, 47.4804036 ], + [ 8.7017613, 47.4805429 ], + [ 8.7017374, 47.4806832 ], + [ 8.7017244, 47.4808242 ], + [ 8.7017223, 47.4809655 ], + [ 8.7017311, 47.4811066 ], + [ 8.7017508, 47.4812473 ], + [ 8.7017813, 47.481387 ], + [ 8.7018226, 47.4815255 ], + [ 8.7018745, 47.481662299999996 ], + [ 8.7019369, 47.481797 ], + [ 8.7020096, 47.4819294 ], + [ 8.7020924, 47.482059 ], + [ 8.7021851, 47.4821855 ], + [ 8.7022875, 47.4823086 ], + [ 8.7023992, 47.482427799999996 ], + [ 8.70252, 47.4825429 ], + [ 8.7026495, 47.4826536 ], + [ 8.7027874, 47.4827595 ], + [ 8.7029332, 47.4828604 ], + [ 8.7030867, 47.482956 ], + [ 8.7032473, 47.483046 ], + [ 8.7034146, 47.4831302 ], + [ 8.7035883, 47.4832083 ], + [ 8.7037677, 47.4832801 ], + [ 8.7039524, 47.4833455 ], + [ 8.7041419, 47.4834043 ], + [ 8.7043357, 47.4834562 ], + [ 8.7045332, 47.4835012 ], + [ 8.7047339, 47.4835392 ], + [ 8.7049373, 47.4835699 ], + [ 8.7051428, 47.4835934 ], + [ 8.7053498, 47.4836096 ], + [ 8.7055578, 47.4836184 ], + [ 8.7057662, 47.4836198 ], + [ 8.7059744, 47.4836138 ], + [ 8.7061818, 47.4836005 ], + [ 8.706388, 47.4835798 ], + [ 8.7065922, 47.4835518 ], + [ 8.706794, 47.4835166 ], + [ 8.7069928, 47.4834743 ], + [ 8.7071881, 47.483425 ], + [ 8.7073793, 47.4833688 ], + [ 8.7075659, 47.483306 ], + [ 8.7077474, 47.4832366 ], + [ 8.7079233, 47.4831608 ], + [ 8.7080931, 47.4830789 ], + [ 8.7082564, 47.4829911 ], + [ 8.708412599999999, 47.4828977 ], + [ 8.7085614, 47.4827988 ], + [ 8.7087024, 47.4826948 ], + [ 8.7088352, 47.4825859 ], + [ 8.7089593, 47.4824724 ], + [ 8.7090746, 47.4823547 ], + [ 8.7091806, 47.4822331 ], + [ 8.709277, 47.4821079 ], + [ 8.7093637, 47.4819794 ], + [ 8.7094403, 47.4818481 ], + [ 8.7095066, 47.4817142 ], + [ 8.7095626, 47.4815781 ], + [ 8.7096079, 47.4814402 ], + [ 8.7096426, 47.4813009 ], + [ 8.7096664, 47.4811606 ], + [ 8.7096794, 47.4810196 ], + [ 8.7096815, 47.4808783 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0121", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Töss", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Töss", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Töss", + "lang" : "it-CH" + }, + { + "text" : "Substation Töss", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.5574353, 47.4432282 ], + [ 8.5574269, 47.4430871 ], + [ 8.5574076, 47.4429464 ], + [ 8.5573775, 47.4428067 ], + [ 8.5573366, 47.4426681 ], + [ 8.5572851, 47.4425313 ], + [ 8.5572232, 47.4423964 ], + [ 8.5571509, 47.4422639 ], + [ 8.5570684, 47.4421342 ], + [ 8.5569761, 47.4420076 ], + [ 8.5568742, 47.4418844 ], + [ 8.5567629, 47.441765 ], + [ 8.5566425, 47.4416498 ], + [ 8.5565134, 47.4415389 ], + [ 8.556375899999999, 47.4414328 ], + [ 8.5562304, 47.4413318 ], + [ 8.5560774, 47.441236 ], + [ 8.5559171, 47.4411458 ], + [ 8.5557502, 47.4410614 ], + [ 8.5555769, 47.440983 ], + [ 8.5553978, 47.440911 ], + [ 8.5552135, 47.4408453 ], + [ 8.5550243, 47.4407863 ], + [ 8.5548308, 47.4407341 ], + [ 8.5546335, 47.4406889 ], + [ 8.5544331, 47.4406507 ], + [ 8.5542299, 47.4406197 ], + [ 8.5540247, 47.4405959 ], + [ 8.5538179, 47.4405795 ], + [ 8.5536101, 47.4405704 ], + [ 8.5534019, 47.4405687 ], + [ 8.5531939, 47.4405744 ], + [ 8.5529865, 47.4405875 ], + [ 8.5527805, 47.4406079 ], + [ 8.5525763, 47.4406356 ], + [ 8.5523746, 47.4406706 ], + [ 8.5521758, 47.4407126 ], + [ 8.551980499999999, 47.4407616 ], + [ 8.5517893, 47.4408176 ], + [ 8.5516027, 47.4408802 ], + [ 8.5514211, 47.4409493 ], + [ 8.5512452, 47.4410249 ], + [ 8.5510753, 47.4411065 ], + [ 8.5509119, 47.4411941 ], + [ 8.5507555, 47.4412873 ], + [ 8.5506065, 47.441386 ], + [ 8.550465299999999, 47.4414899 ], + [ 8.5503324, 47.4415986 ], + [ 8.550208, 47.4417119 ], + [ 8.5500925, 47.4418294 ], + [ 8.5499862, 47.4419509 ], + [ 8.5498894, 47.442076 ], + [ 8.5498025, 47.4422043 ], + [ 8.5497255, 47.4423356 ], + [ 8.5496588, 47.4424694 ], + [ 8.5496025, 47.4426054 ], + [ 8.5495568, 47.4427432 ], + [ 8.5495217, 47.4428825 ], + [ 8.5494975, 47.4430228 ], + [ 8.5494841, 47.4431637 ], + [ 8.5494816, 47.443305 ], + [ 8.54949, 47.4434461 ], + [ 8.5495093, 47.4435868 ], + [ 8.5495394, 47.4437266 ], + [ 8.5495802, 47.4438651 ], + [ 8.549631699999999, 47.444002 ], + [ 8.5496936, 47.4441368 ], + [ 8.5497659, 47.4442693 ], + [ 8.5498483, 47.4443991 ], + [ 8.5499406, 47.4445257 ], + [ 8.5500426, 47.4446489 ], + [ 8.5501539, 47.4447682 ], + [ 8.5502742, 47.4448835 ], + [ 8.5504033, 47.4449944 ], + [ 8.5505408, 47.4451005 ], + [ 8.5506863, 47.4452015 ], + [ 8.5508393, 47.4452973 ], + [ 8.5509996, 47.4453875 ], + [ 8.5511666, 47.4454719 ], + [ 8.5513398, 47.4455503 ], + [ 8.5515189, 47.4456224 ], + [ 8.5517033, 47.445688 ], + [ 8.5518925, 47.445747 ], + [ 8.552086, 47.4457992 ], + [ 8.5522833, 47.4458445 ], + [ 8.5524837, 47.4458827 ], + [ 8.5526869, 47.4459137 ], + [ 8.5528922, 47.4459374 ], + [ 8.553099, 47.4459539 ], + [ 8.5533068, 47.445963 ], + [ 8.553515, 47.4459647 ], + [ 8.5537231, 47.445959 ], + [ 8.5539304, 47.4459459 ], + [ 8.5541365, 47.4459254 ], + [ 8.5543406, 47.4458977 ], + [ 8.5545424, 47.4458628 ], + [ 8.5547412, 47.4458207 ], + [ 8.5549365, 47.4457717 ], + [ 8.5551277, 47.4457158 ], + [ 8.5553144, 47.4456532 ], + [ 8.555496, 47.445584 ], + [ 8.5556719, 47.4455085 ], + [ 8.5558418, 47.4454268 ], + [ 8.5560052, 47.4453392 ], + [ 8.5561616, 47.445246 ], + [ 8.5563106, 47.4451473 ], + [ 8.5564518, 47.4450434 ], + [ 8.5565847, 47.4449347 ], + [ 8.556709099999999, 47.4448214 ], + [ 8.5568246, 47.4447039 ], + [ 8.5569309, 47.4445824 ], + [ 8.5570276, 47.4444573 ], + [ 8.5571146, 47.4443289 ], + [ 8.5571915, 47.4441977 ], + [ 8.5572582, 47.4440638 ], + [ 8.5573145, 47.4439278 ], + [ 8.5573602, 47.44379 ], + [ 8.5573952, 47.4436508 ], + [ 8.5574195, 47.4435105 ], + [ 8.5574328, 47.4433695 ], + [ 8.5574353, 47.4432282 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "AHK0001", + "country" : "CHE", + "name" : [ + { + "text" : "Zentrum für ausländerrechtliche Administrativhaft", + "lang" : "de-CH" + }, + { + "text" : "Zentrum für ausländerrechtliche Administrativhaft", + "lang" : "fr-CH" + }, + { + "text" : "Zentrum für ausländerrechtliche Administrativhaft", + "lang" : "it-CH" + }, + { + "text" : "Zentrum für ausländerrechtliche Administrativhaft", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "de-CH" + }, + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "fr-CH" + }, + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "it-CH" + }, + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "de-CH" + }, + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "fr-CH" + }, + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "it-CH" + }, + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Reno Berner", + "lang" : "de-CH" + }, + { + "text" : "Reno Berner", + "lang" : "fr-CH" + }, + { + "text" : "Reno Berner", + "lang" : "it-CH" + }, + { + "text" : "Reno Berner", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.zh.ch/de/direktion-der-justiz-und-des-innern/justizvollzug-wiedereingliederung.html", + "email" : "sicherheit-juwe@ji.zh.ch", + "phone" : "0041432583400", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT12H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.0469485, 46.7514374 ], + [ 9.0469389, 46.7512963 ], + [ 9.0469186, 46.7511557 ], + [ 9.0468876, 46.751016 ], + [ 9.046846, 46.7508777 ], + [ 9.0467939, 46.750741 ], + [ 9.0467315, 46.7506064 ], + [ 9.0466589, 46.7504742 ], + [ 9.0465764, 46.7503448 ], + [ 9.0464841, 46.7502185 ], + [ 9.0463824, 46.7500958 ], + [ 9.0462714, 46.7499769 ], + [ 9.0461515, 46.7498621 ], + [ 9.0460231, 46.7497518 ], + [ 9.0458864, 46.7496463 ], + [ 9.0457419, 46.7495458 ], + [ 9.0455899, 46.7494507 ], + [ 9.0454309, 46.7493611 ], + [ 9.0452653, 46.7492774 ], + [ 9.0450936, 46.7491998 ], + [ 9.0449162, 46.7491285 ], + [ 9.0447336, 46.7490636 ], + [ 9.0445463, 46.7490054 ], + [ 9.0443548, 46.748954 ], + [ 9.0441597, 46.7489096 ], + [ 9.0439615, 46.7488722 ], + [ 9.0437607, 46.7488421 ], + [ 9.0435578, 46.7488192 ], + [ 9.0433535, 46.7488036 ], + [ 9.0431483, 46.7487954 ], + [ 9.0429428, 46.7487946 ], + [ 9.0427375, 46.7488012 ], + [ 9.0425329, 46.7488151 ], + [ 9.0423298, 46.7488364 ], + [ 9.0421284, 46.748865 ], + [ 9.0419296, 46.7489008 ], + [ 9.0417338, 46.7489437 ], + [ 9.0415415, 46.7489936 ], + [ 9.0413532, 46.7490503 ], + [ 9.0411695, 46.7491137 ], + [ 9.0409909, 46.7491836 ], + [ 9.0408179, 46.7492599 ], + [ 9.0406509, 46.7493423 ], + [ 9.0404904, 46.7494306 ], + [ 9.0403369, 46.7495245 ], + [ 9.0401907, 46.7496238 ], + [ 9.0400523, 46.7497283 ], + [ 9.039922, 46.7498376 ], + [ 9.0398003, 46.7499514 ], + [ 9.0396873, 46.7500694 ], + [ 9.0395835, 46.7501914 ], + [ 9.0394891, 46.7503169 ], + [ 9.0394044, 46.7504456 ], + [ 9.0393297, 46.7505772 ], + [ 9.039265, 46.7507113 ], + [ 9.0392107, 46.7508476 ], + [ 9.0391668, 46.7509856 ], + [ 9.0391335, 46.751125 ], + [ 9.0391108, 46.7512655 ], + [ 9.0390988, 46.7514065 ], + [ 9.0390977, 46.7515478 ], + [ 9.0391072, 46.7516889 ], + [ 9.0391275, 46.7518295 ], + [ 9.0391585, 46.7519692 ], + [ 9.0392001, 46.7521075 ], + [ 9.0392521, 46.7522442 ], + [ 9.0393145, 46.7523788 ], + [ 9.0393871, 46.752511 ], + [ 9.0394696, 46.7526404 ], + [ 9.0395619, 46.7527667 ], + [ 9.0396636, 46.7528894 ], + [ 9.0397746, 46.7530084 ], + [ 9.0398944, 46.7531232 ], + [ 9.0400229, 46.7532335 ], + [ 9.0401596, 46.753339 ], + [ 9.0403041, 46.7534395 ], + [ 9.040456, 46.7535346 ], + [ 9.040615, 46.7536242 ], + [ 9.0407806, 46.7537079 ], + [ 9.0409524, 46.7537855 ], + [ 9.0411298, 46.7538568 ], + [ 9.0413124, 46.7539217 ], + [ 9.0414997, 46.7539799 ], + [ 9.0416912, 46.7540313 ], + [ 9.0418864, 46.7540757 ], + [ 9.0420846, 46.7541131 ], + [ 9.0422854, 46.7541432 ], + [ 9.0424883, 46.7541662 ], + [ 9.0426926, 46.7541817 ], + [ 9.0428978, 46.7541899 ], + [ 9.0431034, 46.7541907 ], + [ 9.0433087, 46.7541841 ], + [ 9.0435133, 46.7541702 ], + [ 9.0437165, 46.7541489 ], + [ 9.0439178, 46.7541203 ], + [ 9.0441167, 46.7540845 ], + [ 9.0443125, 46.7540416 ], + [ 9.0445048, 46.7539917 ], + [ 9.0446931, 46.753935 ], + [ 9.0448768, 46.7538716 ], + [ 9.0450554, 46.7538017 ], + [ 9.0452285, 46.7537254 ], + [ 9.0453954, 46.753643 ], + [ 9.0455559, 46.7535547 ], + [ 9.0457095, 46.7534608 ], + [ 9.0458556, 46.7533614 ], + [ 9.0459941, 46.753257 ], + [ 9.0461243, 46.7531477 ], + [ 9.0462461, 46.7530339 ], + [ 9.046359, 46.7529158 ], + [ 9.0464628, 46.7527939 ], + [ 9.0465572, 46.7526683 ], + [ 9.0466419, 46.7525396 ], + [ 9.0467166, 46.752408 ], + [ 9.0467812, 46.7522739 ], + [ 9.0468356, 46.7521376 ], + [ 9.0468795, 46.7519996 ], + [ 9.0469128, 46.7518602 ], + [ 9.0469354, 46.7517197 ], + [ 9.0469473, 46.7515787 ], + [ 9.0469485, 46.7514374 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0117", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Tavanasa", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Tavanasa", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Tavanasa", + "lang" : "it-CH" + }, + { + "text" : "Substation Tavanasa", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7918587, 47.4841056 ], + [ 7.7926576, 47.4846848 ], + [ 7.7929009, 47.4845711 ], + [ 7.7930597, 47.4844035 ], + [ 7.7927795, 47.4833511 ], + [ 7.7926316, 47.4836633 ], + [ 7.7925906, 47.4837123 ], + [ 7.7925424, 47.4837582 ], + [ 7.7924874, 47.4838004 ], + [ 7.7924264, 47.4838387 ], + [ 7.7923598, 47.4838724 ], + [ 7.7922885, 47.4839013 ], + [ 7.7922132, 47.4839252 ], + [ 7.7919077, 47.4839752 ], + [ 7.7918587, 47.4841056 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr066", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Schward", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Schward", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Schward", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Schward", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.2825988, 46.376031 ], + [ 6.2680776, 46.3683825 ], + [ 6.2529699, 46.3604208 ], + [ 6.2414321, 46.3436679 ], + [ 6.2323218, 46.3304352 ], + [ 6.2235693, 46.3177229 ], + [ 6.219551, 46.3118844 ], + [ 6.2415153, 46.3043691 ], + [ 6.2419226, 46.3041936 ], + [ 6.2423986, 46.3037687 ], + [ 6.2425139, 46.3036915 ], + [ 6.2427524, 46.3035552 ], + [ 6.2431762, 46.3033841 ], + [ 6.2432458, 46.3033632 ], + [ 6.2432828, 46.3033618 ], + [ 6.2434806, 46.303379 ], + [ 6.2435941, 46.3034171 ], + [ 6.2436393, 46.3034384 ], + [ 6.2437484, 46.303521 ], + [ 6.2439422, 46.3036931 ], + [ 6.2440198, 46.3037707 ], + [ 6.2441065, 46.3038423 ], + [ 6.2442244, 46.3039317 ], + [ 6.244342, 46.3039946 ], + [ 6.2444379, 46.3040266 ], + [ 6.244585, 46.3040511 ], + [ 6.2446455, 46.3040518 ], + [ 6.2447006, 46.3040408 ], + [ 6.2448135, 46.3039569 ], + [ 6.2448419, 46.3039152 ], + [ 6.244908, 46.30378 ], + [ 6.2450572, 46.3033431 ], + [ 6.2450826, 46.3032536 ], + [ 6.2451499, 46.3031443 ], + [ 6.2452876, 46.3030263 ], + [ 6.2454046, 46.3029771 ], + [ 6.2455762, 46.302918 ], + [ 6.2456893, 46.3028854 ], + [ 6.2457446, 46.3028621 ], + [ 6.2458383, 46.3028295 ], + [ 6.2461656, 46.3027324 ], + [ 6.246374, 46.3026816 ], + [ 6.2465348, 46.3026483 ], + [ 6.2466163, 46.3026364 ], + [ 6.2467381, 46.3026361 ], + [ 6.2469052, 46.3026821 ], + [ 6.2471089, 46.3027335 ], + [ 6.2472317, 46.3027538 ], + [ 6.247339, 46.3027583 ], + [ 6.2474875, 46.3027397 ], + [ 6.2475467, 46.3027209 ], + [ 6.2476783, 46.3026689 ], + [ 6.2477021, 46.3026258 ], + [ 6.2477738, 46.3025137 ], + [ 6.247802, 46.3023412 ], + [ 6.2478461, 46.3022075 ], + [ 6.2479476, 46.3020683 ], + [ 6.2480211, 46.3019827 ], + [ 6.2480496, 46.3019596 ], + [ 6.2481225, 46.3019249 ], + [ 6.2482102, 46.3019133 ], + [ 6.2483068, 46.301908 ], + [ 6.2483986, 46.3019187 ], + [ 6.2484902, 46.3019353 ], + [ 6.2485783, 46.3019448 ], + [ 6.2486968, 46.3019895 ], + [ 6.2488161, 46.3020086 ], + [ 6.2488926, 46.3020272 ], + [ 6.248965, 46.3019666 ], + [ 6.2490239, 46.3018972 ], + [ 6.2490359, 46.3018224 ], + [ 6.2490113, 46.3017223 ], + [ 6.2489877, 46.3016558 ], + [ 6.2488645, 46.3015355 ], + [ 6.2486645, 46.3013518 ], + [ 6.2486257, 46.3013098 ], + [ 6.2485294, 46.3011676 ], + [ 6.2484613, 46.3010093 ], + [ 6.2483083, 46.3007785 ], + [ 6.2482203, 46.3007252 ], + [ 6.2480776, 46.3006874 ], + [ 6.2479238, 46.300681 ], + [ 6.2478553, 46.3006889 ], + [ 6.2477734, 46.3007315 ], + [ 6.2476706, 46.3007548 ], + [ 6.2475964, 46.300738 ], + [ 6.2474563, 46.3007241 ], + [ 6.2472647, 46.3006851 ], + [ 6.2472297, 46.300653 ], + [ 6.2472192, 46.3005937 ], + [ 6.2472235, 46.3003537 ], + [ 6.2471844, 46.3002664 ], + [ 6.2470178, 46.3000891 ], + [ 6.2469732, 46.3000151 ], + [ 6.2470041, 46.2999543 ], + [ 6.2474353, 46.2998391 ], + [ 6.2475586, 46.2998676 ], + [ 6.2477735, 46.3000231 ], + [ 6.2478957, 46.3000311 ], + [ 6.2479644, 46.2999893 ], + [ 6.2480254, 46.2998879 ], + [ 6.2480423, 46.2998423 ], + [ 6.2481395, 46.299749 ], + [ 6.2481854, 46.2996473 ], + [ 6.248197, 46.2995443 ], + [ 6.2483066, 46.2994299 ], + [ 6.2484476, 46.2993827 ], + [ 6.2486032, 46.2992732 ], + [ 6.2486545, 46.2992256 ], + [ 6.2487169, 46.2991197 ], + [ 6.2487857, 46.29906 ], + [ 6.2488046, 46.2990241 ], + [ 6.2487875, 46.2989985 ], + [ 6.2488814, 46.2989738 ], + [ 6.2489284, 46.2989678 ], + [ 6.2489478, 46.2990179 ], + [ 6.2489437, 46.2990592 ], + [ 6.2490863, 46.2990586 ], + [ 6.2491698, 46.2990143 ], + [ 6.2493085, 46.2989001 ], + [ 6.2493326, 46.298758 ], + [ 6.2492234, 46.2986663 ], + [ 6.2491346, 46.2986177 ], + [ 6.2487772, 46.2985256 ], + [ 6.2485329, 46.2983774 ], + [ 6.2484004, 46.2982898 ], + [ 6.2482758, 46.298192 ], + [ 6.2480839, 46.2980549 ], + [ 6.2479885, 46.298008 ], + [ 6.247972, 46.2979445 ], + [ 6.2479886, 46.29789 ], + [ 6.2480684, 46.2978185 ], + [ 6.2481523, 46.2977975 ], + [ 6.2483785, 46.2977489 ], + [ 6.2485702, 46.2977229 ], + [ 6.2486729, 46.297692 ], + [ 6.2487603, 46.2976496 ], + [ 6.2489497, 46.2974856 ], + [ 6.2489654, 46.2974511 ], + [ 6.2489451, 46.2973995 ], + [ 6.2487884, 46.297316 ], + [ 6.2486738, 46.2972346 ], + [ 6.2483768, 46.2971309 ], + [ 6.2481189, 46.2970533 ], + [ 6.2480591, 46.2970229 ], + [ 6.2480447, 46.2970014 ], + [ 6.2480509, 46.2969573 ], + [ 6.2480983, 46.296928 ], + [ 6.2481655, 46.296879 ], + [ 6.2482567, 46.2967903 ], + [ 6.2483078, 46.2967083 ], + [ 6.2483064, 46.2966566 ], + [ 6.2482508, 46.296583 ], + [ 6.2482453, 46.2965393 ], + [ 6.2482638999999995, 46.2965162 ], + [ 6.2483145, 46.2964822 ], + [ 6.2484125, 46.2964685 ], + [ 6.2487411, 46.2964818 ], + [ 6.248779, 46.2964768 ], + [ 6.2491096, 46.2964896 ], + [ 6.2493077, 46.2964804 ], + [ 6.2494068, 46.2964663 ], + [ 6.2495808, 46.2964494 ], + [ 6.2496723, 46.296456 ], + [ 6.249806, 46.2964764 ], + [ 6.2499054, 46.2965063 ], + [ 6.2499799, 46.2965324 ], + [ 6.2500468, 46.2965382 ], + [ 6.2500816, 46.2965081 ], + [ 6.2501581, 46.2964247 ], + [ 6.2501565, 46.296405 ], + [ 6.2501346, 46.296332 ], + [ 6.2500793, 46.2962575 ], + [ 6.2500113, 46.2961174 ], + [ 6.2499687999999995, 46.2960647 ], + [ 6.2498662, 46.2959692 ], + [ 6.2497059, 46.2958537 ], + [ 6.2495839, 46.2957414 ], + [ 6.249547, 46.2956569 ], + [ 6.2495374, 46.2955915 ], + [ 6.2495588, 46.2955374 ], + [ 6.2495955, 46.2954639 ], + [ 6.2496095, 46.2953883 ], + [ 6.2496294, 46.2953723 ], + [ 6.2497641999999995, 46.2952993 ], + [ 6.2497929, 46.2952658 ], + [ 6.2497975, 46.2952348 ], + [ 6.249773, 46.2951962 ], + [ 6.2497113, 46.2951645 ], + [ 6.2495311, 46.2951729 ], + [ 6.2493847, 46.2952263 ], + [ 6.249116, 46.2952893 ], + [ 6.2489621, 46.295245800000004 ], + [ 6.2487858, 46.2951467 ], + [ 6.2486898, 46.2950801 ], + [ 6.2486062, 46.2950136 ], + [ 6.248533, 46.2949184 ], + [ 6.2485216, 46.2947841 ], + [ 6.2485149, 46.2946188 ], + [ 6.2485087, 46.2945649 ], + [ 6.2485304, 46.294413 ], + [ 6.2485785, 46.2942537 ], + [ 6.2486491, 46.2941181 ], + [ 6.2488104, 46.2939401 ], + [ 6.2489733, 46.2937873 ], + [ 6.2491202, 46.2936929 ], + [ 6.2491698, 46.2936566 ], + [ 6.2492326, 46.2935929 ], + [ 6.2493445, 46.2934317 ], + [ 6.2493782, 46.2934043 ], + [ 6.2494309, 46.2933876 ], + [ 6.2495594, 46.293389 ], + [ 6.2496194, 46.2933948 ], + [ 6.2496827, 46.2934111 ], + [ 6.249881, 46.2935533 ], + [ 6.2501523, 46.2936288 ], + [ 6.2502041, 46.2936538 ], + [ 6.2502771, 46.2936715 ], + [ 6.2503283, 46.2936713 ], + [ 6.2503869, 46.2936619 ], + [ 6.2504571, 46.2936271 ], + [ 6.250489, 46.2936064 ], + [ 6.2505698, 46.2935915 ], + [ 6.2506631, 46.2936182 ], + [ 6.2507038, 46.293606 ], + [ 6.2507375, 46.293588 ], + [ 6.2508436, 46.2934809 ], + [ 6.2508749, 46.2934436 ], + [ 6.2508993, 46.2933929 ], + [ 6.2509031, 46.2933168 ], + [ 6.2509121, 46.2933016 ], + [ 6.2509359, 46.2932854 ], + [ 6.2509784, 46.2932644 ], + [ 6.2510681, 46.2932821 ], + [ 6.2511654, 46.2932741 ], + [ 6.2512489, 46.2932296 ], + [ 6.2512742, 46.2931999 ], + [ 6.251281, 46.2931615 ], + [ 6.251277, 46.2931197 ], + [ 6.2512524, 46.293006 ], + [ 6.2512218, 46.2929644 ], + [ 6.2511392, 46.2928724 ], + [ 6.2510945, 46.292836199999996 ], + [ 6.2509697, 46.2927133 ], + [ 6.2509163, 46.2926248 ], + [ 6.250893, 46.2926054 ], + [ 6.2508573, 46.2925955 ], + [ 6.2507190999999995, 46.292568 ], + [ 6.2506192, 46.2924903 ], + [ 6.2504797, 46.2922882 ], + [ 6.2504468, 46.2921755 ], + [ 6.2504206, 46.2921451 ], + [ 6.250391, 46.2921342 ], + [ 6.2503456, 46.2921035 ], + [ 6.2503261, 46.2920719 ], + [ 6.2503234, 46.2920529 ], + [ 6.2503712, 46.2919158 ], + [ 6.2503955, 46.2918935 ], + [ 6.2504838, 46.2918427 ], + [ 6.2506096, 46.291797 ], + [ 6.2507007, 46.2918025 ], + [ 6.2508973, 46.2918665 ], + [ 6.2510122, 46.2918677 ], + [ 6.2511318, 46.2918519 ], + [ 6.2512346, 46.2918525 ], + [ 6.2513069, 46.2918264 ], + [ 6.2513818, 46.2917842 ], + [ 6.2514288, 46.2917406 ], + [ 6.2514703, 46.2916712 ], + [ 6.2515061, 46.2916511 ], + [ 6.2515838, 46.2916519 ], + [ 6.2516648, 46.2916792 ], + [ 6.2517236, 46.2917259 ], + [ 6.251762, 46.2918326 ], + [ 6.2517808, 46.2918746 ], + [ 6.251836, 46.2919209 ], + [ 6.2519174, 46.291905 ], + [ 6.2520307, 46.2918734 ], + [ 6.2520838, 46.2918721 ], + [ 6.2521546, 46.2918626 ], + [ 6.2522773, 46.2918073 ], + [ 6.2523292, 46.2917475 ], + [ 6.2523266, 46.2917142 ], + [ 6.2523173, 46.2917005 ], + [ 6.2522975, 46.291676 ], + [ 6.2522747, 46.2916674 ], + [ 6.2522387, 46.2916654 ], + [ 6.2521545, 46.2916283 ], + [ 6.2521172, 46.2915994 ], + [ 6.2521101, 46.2915728 ], + [ 6.2521131, 46.2915556 ], + [ 6.2521965999999995, 46.2914776 ], + [ 6.2523919, 46.2913398 ], + [ 6.2524062, 46.2913011 ], + [ 6.2524192, 46.2911439 ], + [ 6.2524308, 46.2910959 ], + [ 6.2524643, 46.29105 ], + [ 6.2524824, 46.291011 ], + [ 6.2524813, 46.290967 ], + [ 6.2524314, 46.2908525 ], + [ 6.2524716, 46.2908245 ], + [ 6.252689, 46.2907799 ], + [ 6.2528271, 46.2907309 ], + [ 6.2529438, 46.290666 ], + [ 6.2529876, 46.290592 ], + [ 6.2530017, 46.2905031 ], + [ 6.2529686, 46.2904261 ], + [ 6.2527665, 46.2902755 ], + [ 6.2527248, 46.2902303 ], + [ 6.2525636, 46.2900876 ], + [ 6.2524283, 46.2900239 ], + [ 6.2522726, 46.289979 ], + [ 6.2521054, 46.2899051 ], + [ 6.2519926, 46.2898301 ], + [ 6.2519367, 46.2897726 ], + [ 6.2518943, 46.2897189 ], + [ 6.2518303, 46.2895719 ], + [ 6.2516932, 46.2892137 ], + [ 6.2516509, 46.2891382 ], + [ 6.2516517, 46.2890794 ], + [ 6.2516707, 46.2889713 ], + [ 6.2517566, 46.2888268 ], + [ 6.2517553, 46.2887047 ], + [ 6.2516532, 46.2884269 ], + [ 6.2516035, 46.288322 ], + [ 6.2516069, 46.2882692 ], + [ 6.2515469, 46.2881504 ], + [ 6.251468, 46.2880665 ], + [ 6.2512143, 46.2880008 ], + [ 6.2509084, 46.2879572 ], + [ 6.2506303, 46.2878672 ], + [ 6.2503746, 46.2877704 ], + [ 6.2501931, 46.2876936 ], + [ 6.2500501, 46.2876697 ], + [ 6.2498999, 46.2876736 ], + [ 6.2496993, 46.2877719 ], + [ 6.2495814, 46.2877924 ], + [ 6.2491653, 46.2877335 ], + [ 6.2489245, 46.2876538 ], + [ 6.2487777, 46.2875664 ], + [ 6.2486964, 46.2874923 ], + [ 6.2486728, 46.2874651 ], + [ 6.2486696, 46.2874264 ], + [ 6.2487638, 46.2873231 ], + [ 6.2489327, 46.2872312 ], + [ 6.2489735, 46.2871992 ], + [ 6.2490373, 46.2870551 ], + [ 6.2490384, 46.2869359 ], + [ 6.249012, 46.2869 ], + [ 6.2490032, 46.286811 ], + [ 6.2490806, 46.2867401 ], + [ 6.2491043, 46.2867048 ], + [ 6.2490558, 46.2866749 ], + [ 6.2490084, 46.2866264 ], + [ 6.2488879, 46.2864674 ], + [ 6.2486714, 46.2864654 ], + [ 6.2484209, 46.2864449 ], + [ 6.2482287, 46.2865253 ], + [ 6.2480985, 46.2865854 ], + [ 6.2479964, 46.286586 ], + [ 6.2478711, 46.2865371 ], + [ 6.2478366, 46.2864431 ], + [ 6.2478624, 46.2863194 ], + [ 6.2478841, 46.2862767 ], + [ 6.2478898, 46.2862029 ], + [ 6.2478855, 46.286183 ], + [ 6.2478723, 46.2861524 ], + [ 6.2478525, 46.2861351 ], + [ 6.2477673, 46.2861205 ], + [ 6.2475115, 46.2861554 ], + [ 6.2473405, 46.2861579 ], + [ 6.2470991, 46.2861856 ], + [ 6.2470611, 46.2861711 ], + [ 6.2470077, 46.2861203 ], + [ 6.247041, 46.2860306 ], + [ 6.2470742, 46.2859234 ], + [ 6.247067, 46.2858743 ], + [ 6.2469806, 46.28566 ], + [ 6.2468702, 46.2855423 ], + [ 6.2467197, 46.2854358 ], + [ 6.2465041, 46.2853324 ], + [ 6.2462418, 46.2852592 ], + [ 6.2458919, 46.2852169 ], + [ 6.2457284, 46.2852126 ], + [ 6.2452138999999995, 46.2851706 ], + [ 6.2450595, 46.2851716 ], + [ 6.2449315, 46.2851869 ], + [ 6.2446924, 46.285237 ], + [ 6.2445205999999995, 46.2852868 ], + [ 6.2443553, 46.2852857 ], + [ 6.2441552, 46.2852639 ], + [ 6.244071, 46.2852629 ], + [ 6.2439776, 46.2852605 ], + [ 6.2438168, 46.2852844 ], + [ 6.2436872, 46.2853537 ], + [ 6.2435904, 46.2854282 ], + [ 6.2435084, 46.2854562 ], + [ 6.2434534, 46.2854615 ], + [ 6.2432535, 46.2854473 ], + [ 6.2431109, 46.2854222 ], + [ 6.2429612, 46.2853682 ], + [ 6.2427911, 46.2852492 ], + [ 6.2427422, 46.2851942 ], + [ 6.2426403, 46.2851033 ], + [ 6.2425391, 46.2850574 ], + [ 6.242512, 46.2850519 ], + [ 6.2424309, 46.2850639 ], + [ 6.2423267, 46.2850618 ], + [ 6.2422395999999996, 46.2850506 ], + [ 6.242152, 46.2850269 ], + [ 6.2420657, 46.2850236 ], + [ 6.2418519, 46.2850379 ], + [ 6.2417637, 46.285035 ], + [ 6.2417322, 46.2850164 ], + [ 6.2416922, 46.2849458 ], + [ 6.2416668, 46.2847532 ], + [ 6.2416617, 46.2846146 ], + [ 6.2416763, 46.2845012 ], + [ 6.2417387, 46.284285 ], + [ 6.241784, 46.2841873 ], + [ 6.2418337, 46.2841486 ], + [ 6.2419255, 46.2841216 ], + [ 6.241973, 46.2840819 ], + [ 6.2419733, 46.2840544 ], + [ 6.2419361, 46.2839602 ], + [ 6.2418492, 46.283861 ], + [ 6.2417412, 46.2837616 ], + [ 6.2416318, 46.2836862 ], + [ 6.2415116, 46.2836467 ], + [ 6.2412779, 46.2836554 ], + [ 6.2412026, 46.283618 ], + [ 6.2409656, 46.2834817 ], + [ 6.240931, 46.2834518 ], + [ 6.2408643, 46.2834072 ], + [ 6.240808, 46.2832721 ], + [ 6.2406745, 46.2831429 ], + [ 6.2403693, 46.2829346 ], + [ 6.2401863, 46.2828231 ], + [ 6.2400299, 46.2827958 ], + [ 6.239882, 46.2827495 ], + [ 6.2398036, 46.2827036 ], + [ 6.2397479, 46.2826202 ], + [ 6.2397421, 46.2825539 ], + [ 6.2397577, 46.2824912 ], + [ 6.2398008, 46.2824054 ], + [ 6.2398917, 46.2821458 ], + [ 6.2398948, 46.2820771 ], + [ 6.2397437, 46.2819669 ], + [ 6.2395994, 46.2818989 ], + [ 6.239363, 46.2818261 ], + [ 6.2391763, 46.2817798 ], + [ 6.239107, 46.2818015 ], + [ 6.2389846, 46.281884 ], + [ 6.2388499, 46.2819373 ], + [ 6.2386815, 46.2819911 ], + [ 6.2383445, 46.282061 ], + [ 6.2381518, 46.2821408 ], + [ 6.2380513, 46.2821369 ], + [ 6.2380016, 46.2821255 ], + [ 6.2379158, 46.2820461 ], + [ 6.2378674, 46.2819685 ], + [ 6.2378556, 46.2819079 ], + [ 6.2378294, 46.2818169 ], + [ 6.2378291, 46.2817739 ], + [ 6.2378898, 46.2817246 ], + [ 6.2380045, 46.2816858 ], + [ 6.2381117, 46.2816771 ], + [ 6.2382117, 46.2816912 ], + [ 6.2382861, 46.2817086 ], + [ 6.2383535, 46.2816731 ], + [ 6.2383728, 46.2816494 ], + [ 6.2383453, 46.2815687 ], + [ 6.2382752, 46.2814473 ], + [ 6.2382651, 46.2813429 ], + [ 6.2382769, 46.2813107 ], + [ 6.2383238, 46.2812764 ], + [ 6.2383854, 46.2812372 ], + [ 6.2384158, 46.2811946 ], + [ 6.2384146, 46.2811467 ], + [ 6.238382, 46.281107 ], + [ 6.2383325, 46.281081 ], + [ 6.2382509, 46.2810729 ], + [ 6.2381997, 46.2810586 ], + [ 6.2381671, 46.2810305 ], + [ 6.2381287, 46.2809205 ], + [ 6.2380942, 46.2808636 ], + [ 6.2380661, 46.2808058 ], + [ 6.2380757, 46.2807679 ], + [ 6.2380934, 46.2807537 ], + [ 6.2381829, 46.2807355 ], + [ 6.2382068, 46.2807376 ], + [ 6.2382754, 46.2807639 ], + [ 6.2383453, 46.2808172 ], + [ 6.2383908, 46.2808422 ], + [ 6.2385441, 46.2808556 ], + [ 6.2385656, 46.2808331 ], + [ 6.2385747, 46.2807427 ], + [ 6.238551, 46.2806819 ], + [ 6.2385074, 46.2806209 ], + [ 6.2384824, 46.2806053 ], + [ 6.2382857, 46.2805373 ], + [ 6.2382761, 46.2805047 ], + [ 6.2382799, 46.2804829 ], + [ 6.2383246, 46.2804486 ], + [ 6.2384449, 46.2804149 ], + [ 6.2385418, 46.2803801 ], + [ 6.23865, 46.2803233 ], + [ 6.2387737, 46.2802945 ], + [ 6.2388542, 46.2802632 ], + [ 6.2388545, 46.2802183 ], + [ 6.2387086, 46.2801477 ], + [ 6.2386145, 46.280088 ], + [ 6.2385514, 46.2800258 ], + [ 6.2385206, 46.2799654 ], + [ 6.2385533, 46.2799032 ], + [ 6.2386361, 46.2798642 ], + [ 6.238732, 46.2798547 ], + [ 6.2387985, 46.2798533 ], + [ 6.2388307, 46.2798183 ], + [ 6.2389927, 46.2795734 ], + [ 6.2390145, 46.2795256 ], + [ 6.2390265, 46.2794666 ], + [ 6.2390182, 46.2793897 ], + [ 6.238958, 46.2793581 ], + [ 6.2385816, 46.279236 ], + [ 6.2385262, 46.2791933 ], + [ 6.2385334, 46.2791445 ], + [ 6.238615, 46.2790315 ], + [ 6.2386931, 46.2788514 ], + [ 6.2386842, 46.2788052 ], + [ 6.2385241, 46.2786825 ], + [ 6.2384898, 46.2785638 ], + [ 6.2384599, 46.2784049 ], + [ 6.2384563, 46.2782494 ], + [ 6.2383594, 46.2781181 ], + [ 6.2383817, 46.2780594 ], + [ 6.2382673, 46.2779596 ], + [ 6.2380951, 46.2779303 ], + [ 6.2378784, 46.2778788 ], + [ 6.2377474, 46.2778373 ], + [ 6.2376568, 46.2777946 ], + [ 6.2376019, 46.2777485 ], + [ 6.237582, 46.2777163 ], + [ 6.237565, 46.2776635 ], + [ 6.237583, 46.2775536 ], + [ 6.237643, 46.2774858 ], + [ 6.2378335, 46.2773498 ], + [ 6.2379065, 46.2772855 ], + [ 6.2379486, 46.2772198 ], + [ 6.2379898, 46.2771421 ], + [ 6.2380178, 46.2770588 ], + [ 6.2380249, 46.2769493 ], + [ 6.2380271, 46.2767315 ], + [ 6.2380238, 46.2766204 ], + [ 6.2380293, 46.2763658 ], + [ 6.2380434, 46.276256 ], + [ 6.2380702, 46.2761578 ], + [ 6.2381081, 46.2760487 ], + [ 6.2381616, 46.2759424 ], + [ 6.2382848, 46.2757645 ], + [ 6.2385006, 46.2755322 ], + [ 6.2389829, 46.2750312 ], + [ 6.2390898, 46.274930499999996 ], + [ 6.2391718, 46.2748726 ], + [ 6.2392643, 46.274814 ], + [ 6.2394096, 46.2747413 ], + [ 6.239552, 46.2746832 ], + [ 6.2397314, 46.2746152 ], + [ 6.2398408, 46.2745604 ], + [ 6.2398935, 46.274528 ], + [ 6.2399424, 46.2744919 ], + [ 6.2399867, 46.2744527 ], + [ 6.2401854, 46.2742523 ], + [ 6.240296, 46.274151 ], + [ 6.2403838, 46.2740749 ], + [ 6.2405048, 46.2739832 ], + [ 6.240729, 46.2738306 ], + [ 6.2408376, 46.2737632 ], + [ 6.2415386999999996, 46.2733436 ], + [ 6.2419023, 46.2731303 ], + [ 6.2419678, 46.2730962 ], + [ 6.2420339, 46.2730672 ], + [ 6.2422156, 46.2729963 ], + [ 6.242356, 46.2729507 ], + [ 6.2424858, 46.2729174 ], + [ 6.2426009, 46.2728944 ], + [ 6.2427085, 46.2728784 ], + [ 6.2427132, 46.2728629 ], + [ 6.2428713, 46.2728527 ], + [ 6.2452676, 46.269271 ], + [ 6.2497176, 46.2626344 ], + [ 6.2497375, 46.2626045 ], + [ 6.2497398, 46.2625962 ], + [ 6.2497346, 46.2625916 ], + [ 6.2497339, 46.2625819 ], + [ 6.2497492, 46.2625168 ], + [ 6.2498468, 46.2622075 ], + [ 6.0838111, 46.1504672 ], + [ 6.0816406, 46.1500658 ], + [ 6.0749146, 46.1488423 ], + [ 6.0743408, 46.1490877 ], + [ 6.0723392, 46.1499437 ], + [ 6.0672512, 46.1504807 ], + [ 6.0606681, 46.1511792 ], + [ 6.0522631, 46.1513428 ], + [ 6.0485217, 46.1471171 ], + [ 6.0475548, 46.1441279 ], + [ 6.0470394, 46.1425723 ], + [ 6.0472934, 46.1424336 ], + [ 6.0474416, 46.1423331 ], + [ 6.0476143, 46.1422011 ], + [ 6.0468988, 46.141756 ], + [ 6.0450784, 46.1399673 ], + [ 6.0450175, 46.1400009 ], + [ 6.0449129, 46.1400858 ], + [ 6.0428242, 46.141238799999996 ], + [ 6.0424782, 46.1414111 ], + [ 6.042469, 46.1413886 ], + [ 6.0421567, 46.1409418 ], + [ 6.0420416, 46.1408031 ], + [ 6.0413213, 46.1401875 ], + [ 6.0411564, 46.1400524 ], + [ 6.0410413, 46.1399789 ], + [ 6.0409055, 46.1399216 ], + [ 6.0407418, 46.139887 ], + [ 6.0405147, 46.1398695 ], + [ 6.0400762, 46.1398468 ], + [ 6.0398683, 46.1398263 ], + [ 6.0396714, 46.1397881 ], + [ 6.0394879, 46.1397264 ], + [ 6.0392973, 46.1396394 ], + [ 6.0390763, 46.1394803 ], + [ 6.0387598, 46.1392246 ], + [ 6.0382911, 46.138871 ], + [ 6.0379744, 46.1386271 ], + [ 6.037436, 46.1382416 ], + [ 6.0371676, 46.1380585 ], + [ 6.0370124, 46.1379232 ], + [ 6.0368376, 46.1377335 ], + [ 6.0364593, 46.1372305 ], + [ 6.0362856, 46.1369838 ], + [ 6.0361924, 46.1368266 ], + [ 6.036106, 46.1366235 ], + [ 6.0359764, 46.1360753 ], + [ 6.0358864, 46.136082 ], + [ 6.0355968, 46.1351286 ], + [ 6.0354663, 46.1348211 ], + [ 6.0354617, 46.1346399 ], + [ 6.0354252, 46.1344589 ], + [ 6.0353938, 46.1343331 ], + [ 6.0353322, 46.1343915 ], + [ 6.0350707, 46.1345996 ], + [ 6.0349381, 46.1347242 ], + [ 6.0348577, 46.1348682 ], + [ 6.0348226, 46.135165 ], + [ 6.0347574999999996, 46.135354 ], + [ 6.0346722, 46.1355159 ], + [ 6.0346553, 46.1355809 ], + [ 6.0345596, 46.135727 ], + [ 6.0343566, 46.1358941 ], + [ 6.0342839, 46.1360452 ], + [ 6.0342817, 46.1361585 ], + [ 6.0344329, 46.1363158 ], + [ 6.0345565, 46.1365331 ], + [ 6.0346281, 46.1366814 ], + [ 6.0345928, 46.1367518 ], + [ 6.034423, 46.1368536 ], + [ 6.0343395, 46.1368775 ], + [ 6.0342806, 46.1368335 ], + [ 6.0341651, 46.1367688 ], + [ 6.0340134, 46.1367394 ], + [ 6.0338094, 46.1366004 ], + [ 6.0336681, 46.1365301 ], + [ 6.033522, 46.1365303 ], + [ 6.0334834, 46.1365417 ], + [ 6.0334316, 46.1366181 ], + [ 6.0335349, 46.136733 ], + [ 6.0335946, 46.1367854 ], + [ 6.0336771, 46.1369723 ], + [ 6.0336475, 46.1370994 ], + [ 6.0335588, 46.1371839 ], + [ 6.0334513, 46.1372198 ], + [ 6.0334136, 46.1372555 ], + [ 6.033405, 46.1372844 ], + [ 6.0334151, 46.1373044 ], + [ 6.0334078, 46.1374153 ], + [ 6.0334407, 46.1375396 ], + [ 6.0335433, 46.1376631 ], + [ 6.0336669, 46.1378611 ], + [ 6.0336748, 46.1379278 ], + [ 6.0336355, 46.1379733 ], + [ 6.0334806, 46.1379916 ], + [ 6.0333862, 46.1379825 ], + [ 6.0332171, 46.1378621 ], + [ 6.0330845, 46.1377737 ], + [ 6.032908, 46.1377063 ], + [ 6.0327465, 46.1377228 ], + [ 6.0325581, 46.1378117 ], + [ 6.032531, 46.1378361 ], + [ 6.0324771, 46.1379171 ], + [ 6.0325442, 46.1380153 ], + [ 6.032621, 46.1380652 ], + [ 6.0328507, 46.1383017 ], + [ 6.0330262, 46.138587 ], + [ 6.0330297999999996, 46.1386673 ], + [ 6.0330094, 46.1387081 ], + [ 6.0329773, 46.1387342 ], + [ 6.0327483, 46.1387701 ], + [ 6.032627, 46.1387126 ], + [ 6.0325359, 46.1386228 ], + [ 6.0322511, 46.1385064 ], + [ 6.0319897, 46.1383859 ], + [ 6.0318758, 46.1383078 ], + [ 6.0318649, 46.1382849 ], + [ 6.031754, 46.1381887 ], + [ 6.0316004, 46.1380467 ], + [ 6.0315146, 46.1379839 ], + [ 6.031486, 46.1379741 ], + [ 6.0314511, 46.1379838 ], + [ 6.0314035, 46.1380271 ], + [ 6.0314046, 46.1380668 ], + [ 6.0314559, 46.1381036 ], + [ 6.0314819, 46.1382167 ], + [ 6.0316172, 46.1384552 ], + [ 6.0316568, 46.1385692 ], + [ 6.031673, 46.1386674 ], + [ 6.0316685, 46.1386859 ], + [ 6.0316302, 46.1387635 ], + [ 6.0315774, 46.1388481 ], + [ 6.0315547, 46.1388943 ], + [ 6.0315387, 46.1389661 ], + [ 6.0315695, 46.1390758 ], + [ 6.0316187, 46.1391116 ], + [ 6.0316972, 46.1392161 ], + [ 6.0317027, 46.1392861 ], + [ 6.0316553, 46.139396 ], + [ 6.031586, 46.1394449 ], + [ 6.031491, 46.1394745 ], + [ 6.0312303, 46.1394757 ], + [ 6.0309103, 46.1394497 ], + [ 6.030805, 46.1394051 ], + [ 6.0307356, 46.1393337 ], + [ 6.0307279, 46.1392537 ], + [ 6.0306381, 46.1391366 ], + [ 6.0305151, 46.1390736 ], + [ 6.0304778, 46.1390692 ], + [ 6.0303257, 46.1390832 ], + [ 6.0300561, 46.1391156 ], + [ 6.0299206, 46.1391575 ], + [ 6.0298546, 46.139213 ], + [ 6.0298812, 46.1393509 ], + [ 6.0299467, 46.1394497 ], + [ 6.0299504, 46.139512 ], + [ 6.0299068, 46.1395663 ], + [ 6.0298335, 46.1396137 ], + [ 6.0296527, 46.1396139 ], + [ 6.0294069, 46.1395003 ], + [ 6.0293161, 46.1393984 ], + [ 6.0292907, 46.1393774 ], + [ 6.0292077, 46.1393555 ], + [ 6.0290367, 46.1393766 ], + [ 6.0288999, 46.1394985 ], + [ 6.0288573, 46.1395973 ], + [ 6.028811, 46.1396574 ], + [ 6.0287636, 46.1396917 ], + [ 6.0287009, 46.1397113 ], + [ 6.0286262, 46.1397592 ], + [ 6.0285508, 46.1397864 ], + [ 6.0284689, 46.1397665 ], + [ 6.0283806, 46.1397028 ], + [ 6.0282758, 46.1397079 ], + [ 6.0282263, 46.1397355 ], + [ 6.0282713, 46.1399336 ], + [ 6.028308, 46.1401235 ], + [ 6.028341, 46.1401552 ], + [ 6.0284035, 46.140166 ], + [ 6.0284903, 46.140208 ], + [ 6.0285215, 46.1403146 ], + [ 6.0285044, 46.1403728 ], + [ 6.0284521, 46.1404374 ], + [ 6.0282974, 46.1404451 ], + [ 6.0280306, 46.1403845 ], + [ 6.0279595, 46.1402729 ], + [ 6.0278773, 46.1402034 ], + [ 6.0276953, 46.1401372 ], + [ 6.027512, 46.1400988 ], + [ 6.0274335, 46.1400636 ], + [ 6.0272929, 46.1400327 ], + [ 6.0271843, 46.1400385 ], + [ 6.0268572, 46.1400832 ], + [ 6.0267158, 46.1400805 ], + [ 6.0265938, 46.1400933 ], + [ 6.0264379, 46.1400838 ], + [ 6.0262355, 46.1401075 ], + [ 6.026185, 46.1401212 ], + [ 6.0259472, 46.140258 ], + [ 6.0258546, 46.1403017 ], + [ 6.0257533, 46.1403267 ], + [ 6.0255664, 46.1403373 ], + [ 6.0253122, 46.1404009 ], + [ 6.0252466, 46.1404107 ], + [ 6.0250435, 46.1404081 ], + [ 6.0249917, 46.1403971 ], + [ 6.024738, 46.1404044 ], + [ 6.024531, 46.1403995 ], + [ 6.0243578, 46.1403771 ], + [ 6.0240822, 46.1403687 ], + [ 6.0239589, 46.1403708 ], + [ 6.0239025, 46.1403817 ], + [ 6.0238241, 46.1404289 ], + [ 6.0237622, 46.1405506 ], + [ 6.0236711, 46.1406512 ], + [ 6.0236547, 46.1406825 ], + [ 6.0236302, 46.140718 ], + [ 6.0235791, 46.1407618 ], + [ 6.0235223, 46.1408346 ], + [ 6.023427, 46.1409026 ], + [ 6.0233712, 46.1409668 ], + [ 6.0232887999999996, 46.1410298 ], + [ 6.0232311, 46.1410553 ], + [ 6.0232081, 46.1410867 ], + [ 6.0231564, 46.1411715 ], + [ 6.0230937, 46.1412292 ], + [ 6.0230148, 46.1413129 ], + [ 6.0229244, 46.1413889 ], + [ 6.0228612, 46.1414174 ], + [ 6.0227244, 46.1415651 ], + [ 6.0226556, 46.1416055 ], + [ 6.0225259, 46.1416574 ], + [ 6.0224339, 46.1416787 ], + [ 6.022336, 46.1416754 ], + [ 6.0222074, 46.1416597 ], + [ 6.0219179, 46.1416084 ], + [ 6.0218112, 46.141594 ], + [ 6.0217312, 46.1415715 ], + [ 6.0216508, 46.1415357 ], + [ 6.0216075, 46.1415196 ], + [ 6.0215722, 46.1414851 ], + [ 6.0215411, 46.1414319 ], + [ 6.0214874, 46.1412969 ], + [ 6.0214583, 46.1412382 ], + [ 6.021373, 46.1411388 ], + [ 6.02133, 46.1411187 ], + [ 6.0212853, 46.1411094 ], + [ 6.0212274, 46.1411096 ], + [ 6.0211695, 46.1411295 ], + [ 6.0210818, 46.1411876 ], + [ 6.0210293, 46.1412271 ], + [ 6.0209477, 46.1412755 ], + [ 6.0208865, 46.1413458 ], + [ 6.0208318, 46.1413947 ], + [ 6.0207557, 46.1414522 ], + [ 6.0207073, 46.141478 ], + [ 6.020669, 46.1414938 ], + [ 6.0206226, 46.1415398 ], + [ 6.0205701, 46.1416055 ], + [ 6.0205521, 46.1416355 ], + [ 6.0205266, 46.1416917 ], + [ 6.0205085, 46.141786 ], + [ 6.0204843, 46.1418173 ], + [ 6.0204327, 46.1418609 ], + [ 6.0202919, 46.1419911 ], + [ 6.0202548, 46.1420154 ], + [ 6.0201534, 46.1420616 ], + [ 6.0200534, 46.1420891 ], + [ 6.0199985, 46.1420956 ], + [ 6.0199602, 46.1420981 ], + [ 6.0197868, 46.1420888 ], + [ 6.0197196, 46.1420799 ], + [ 6.0196423, 46.1420641 ], + [ 6.0195681, 46.1420402 ], + [ 6.0195219, 46.1420215 ], + [ 6.0194631, 46.1419911 ], + [ 6.0192864, 46.1419565 ], + [ 6.0192445, 46.1419508 ], + [ 6.0192152, 46.1419611 ], + [ 6.0191883, 46.1419768 ], + [ 6.0192652, 46.1420893 ], + [ 6.0192306, 46.1420946 ], + [ 6.0190336, 46.1421074 ], + [ 6.0188576, 46.1421414 ], + [ 6.0186331, 46.1421925 ], + [ 6.0184953, 46.1421871 ], + [ 6.0183719, 46.1422224 ], + [ 6.0183204, 46.142262 ], + [ 6.0183009, 46.1423439 ], + [ 6.0182617, 46.1423879 ], + [ 6.0181632, 46.1423995 ], + [ 6.0180875, 46.1424647 ], + [ 6.0180434, 46.1424912 ], + [ 6.0179119, 46.1425488 ], + [ 6.017781, 46.1426142 ], + [ 6.0176753, 46.142673 ], + [ 6.0174706, 46.1427436 ], + [ 6.0171787, 46.1428385 ], + [ 6.0170682, 46.1428425 ], + [ 6.0169378, 46.1428176 ], + [ 6.0166267, 46.1427728 ], + [ 6.0164812, 46.1427825 ], + [ 6.0162516, 46.1427823 ], + [ 6.0158901, 46.1427569 ], + [ 6.0155321, 46.1427847 ], + [ 6.0154045, 46.142813 ], + [ 6.0153278, 46.1428671 ], + [ 6.015297, 46.1429258 ], + [ 6.0152196, 46.1429883 ], + [ 6.0151061, 46.143057 ], + [ 6.0150126, 46.1430756 ], + [ 6.0149322, 46.1430753 ], + [ 6.0147617, 46.143021 ], + [ 6.0146891, 46.1429168 ], + [ 6.0146762, 46.1428347 ], + [ 6.0145419, 46.1426556 ], + [ 6.0144576, 46.142456 ], + [ 6.0143277, 46.142364 ], + [ 6.014248, 46.1423461 ], + [ 6.0141738, 46.1423604 ], + [ 6.0139416, 46.1424413 ], + [ 6.013769, 46.1425386 ], + [ 6.0136252, 46.1425337 ], + [ 6.0135172, 46.1424459 ], + [ 6.0133295, 46.1422048 ], + [ 6.0132451, 46.1421539 ], + [ 6.013081, 46.1420997 ], + [ 6.0129837, 46.1421165 ], + [ 6.0128963, 46.1421151 ], + [ 6.0128111, 46.142125 ], + [ 6.0127399, 46.1421432 ], + [ 6.0127324, 46.1421599 ], + [ 6.0126891, 46.142191 ], + [ 6.0126584, 46.1422009 ], + [ 6.0125741, 46.1422024 ], + [ 6.0124608, 46.1421839 ], + [ 6.0123798, 46.1421449 ], + [ 6.0123646, 46.1421471 ], + [ 6.0123256, 46.1421362 ], + [ 6.0122906, 46.1421209 ], + [ 6.0122625, 46.1421267 ], + [ 6.012194, 46.142119 ], + [ 6.0121078, 46.1421183 ], + [ 6.0120254, 46.142125 ], + [ 6.0119572, 46.142133 ], + [ 6.0119063, 46.1421451 ], + [ 6.0117375, 46.1421688 ], + [ 6.0116595, 46.1421745 ], + [ 6.0116223, 46.1421721 ], + [ 6.011518, 46.1421736 ], + [ 6.0114272, 46.1421684 ], + [ 6.0114086, 46.1421638 ], + [ 6.0112976, 46.1421495 ], + [ 6.0111548, 46.142111 ], + [ 6.0110393, 46.1420315 ], + [ 6.0110063, 46.1419839 ], + [ 6.0109495, 46.1419353 ], + [ 6.0109144, 46.1419286 ], + [ 6.0108564, 46.1419467 ], + [ 6.0107865, 46.1419862 ], + [ 6.0107325, 46.1420654 ], + [ 6.0107235, 46.1421164 ], + [ 6.0106986, 46.1421571 ], + [ 6.0106759, 46.1421613 ], + [ 6.010639, 46.1421896 ], + [ 6.0105773, 46.1422242 ], + [ 6.0105149, 46.1422471 ], + [ 6.0104949, 46.1422482 ], + [ 6.0104751, 46.1422406 ], + [ 6.0104162, 46.1422289 ], + [ 6.0103632, 46.1422279 ], + [ 6.0102654, 46.1422195 ], + [ 6.0102509, 46.1422131 ], + [ 6.0101707, 46.1421959 ], + [ 6.0101243, 46.142213 ], + [ 6.0100218, 46.1421844 ], + [ 6.0099186, 46.1421613 ], + [ 6.0098722, 46.1421583 ], + [ 6.0098402, 46.1421507 ], + [ 6.0097304, 46.1421029 ], + [ 6.0097079, 46.1421086 ], + [ 6.0096033, 46.1420923 ], + [ 6.0095635, 46.1421102 ], + [ 6.0095159, 46.1421529 ], + [ 6.0094581, 46.1422635 ], + [ 6.0095068, 46.1422855 ], + [ 6.0095161, 46.1423113 ], + [ 6.0095134, 46.1423532 ], + [ 6.0095237, 46.1424303 ], + [ 6.0094868, 46.1424686 ], + [ 6.0093943, 46.1425262 ], + [ 6.0092662, 46.1425911 ], + [ 6.0092134, 46.1426272 ], + [ 6.0091483, 46.1426415 ], + [ 6.0090432, 46.1426497 ], + [ 6.0090166, 46.1426586 ], + [ 6.0090028, 46.142669 ], + [ 6.0089291, 46.1426936 ], + [ 6.0088813, 46.1427198 ], + [ 6.0087842, 46.1427609 ], + [ 6.008674, 46.1427907 ], + [ 6.0086462, 46.142801 ], + [ 6.008571, 46.1428117 ], + [ 6.0085476, 46.142819 ], + [ 6.0084423, 46.1428123 ], + [ 6.0082659, 46.1427851 ], + [ 6.0080499, 46.1426939 ], + [ 6.0079451, 46.1426721 ], + [ 6.007692, 46.1425951 ], + [ 6.007542, 46.1425249 ], + [ 6.0074446, 46.1424718 ], + [ 6.0073561, 46.1423909 ], + [ 6.0073103, 46.1423612 ], + [ 6.0072192, 46.1423229 ], + [ 6.0071448, 46.1422772 ], + [ 6.0070619, 46.1422365 ], + [ 6.0067874, 46.1421453 ], + [ 6.0067412, 46.1421322 ], + [ 6.0065727, 46.1421022 ], + [ 6.0065219, 46.1420963 ], + [ 6.0065008, 46.1421068 ], + [ 6.0064454, 46.1421111 ], + [ 6.0061616, 46.1421237 ], + [ 6.0060263, 46.1421606 ], + [ 6.0059846, 46.1421806 ], + [ 6.0059901, 46.1422138 ], + [ 6.0060049, 46.1422594 ], + [ 6.0059827, 46.1422773 ], + [ 6.0059615, 46.1423028 ], + [ 6.0059299, 46.1423194 ], + [ 6.0059, 46.1423157 ], + [ 6.0058067, 46.1423323 ], + [ 6.005709, 46.1423411 ], + [ 6.0056397, 46.1423208 ], + [ 6.0055639, 46.142325 ], + [ 6.0054726, 46.1423064 ], + [ 6.0052883, 46.1422903 ], + [ 6.0052867, 46.1422817 ], + [ 6.0052481, 46.1422778 ], + [ 6.0052393, 46.142269 ], + [ 6.0051873, 46.1422673 ], + [ 6.0051922, 46.1422752 ], + [ 6.0051637, 46.1422748 ], + [ 6.005155, 46.1422677 ], + [ 6.0050525, 46.1422431 ], + [ 6.0049385, 46.1421975 ], + [ 6.0045537, 46.1419921 ], + [ 6.004351, 46.1419257 ], + [ 6.0041107, 46.1419304 ], + [ 6.0039825, 46.1419513 ], + [ 6.0039583, 46.1419745 ], + [ 6.0038684, 46.1420055 ], + [ 6.0037543, 46.1420151 ], + [ 6.0036768, 46.1419865 ], + [ 6.0035825, 46.1419311 ], + [ 6.0032672, 46.1417808 ], + [ 6.0032292, 46.1417766 ], + [ 6.0031535, 46.1417925 ], + [ 6.0031077, 46.1418146 ], + [ 6.0031007, 46.1418489 ], + [ 6.0030528, 46.1418739 ], + [ 6.0029852, 46.1419254 ], + [ 6.0029331, 46.1419505 ], + [ 6.0028754, 46.141961 ], + [ 6.0028202, 46.141986 ], + [ 6.0028105, 46.1420074 ], + [ 6.0027486, 46.1420548 ], + [ 6.002745, 46.1420754 ], + [ 6.002679, 46.1421246 ], + [ 6.0025677, 46.1421812 ], + [ 6.0024139, 46.1422123 ], + [ 6.0023697, 46.1422158 ], + [ 6.0020966, 46.1422841 ], + [ 6.0019778, 46.1422943 ], + [ 6.0019522, 46.1423019 ], + [ 6.0017967, 46.1422848 ], + [ 6.0017204, 46.1422682 ], + [ 6.0016985, 46.1422701 ], + [ 6.0016936, 46.1422472 ], + [ 6.001555, 46.1422076 ], + [ 6.0014558, 46.1421865 ], + [ 6.0013742, 46.1421646 ], + [ 6.001305, 46.1421631 ], + [ 6.0012812, 46.1421702 ], + [ 6.0012531, 46.1421858 ], + [ 6.0012254, 46.142194 ], + [ 6.0012137, 46.1421923 ], + [ 6.0011095, 46.1422822 ], + [ 6.0011052, 46.1422922 ], + [ 6.0010212, 46.1423533 ], + [ 6.0009461, 46.1424512 ], + [ 6.000891, 46.1425514 ], + [ 6.0007881, 46.1426386 ], + [ 6.0007533, 46.1426574 ], + [ 6.0006907, 46.1426743 ], + [ 6.0006145, 46.1426707 ], + [ 6.0005944, 46.1426562 ], + [ 6.000577, 46.1426332 ], + [ 6.0005306, 46.1426006 ], + [ 6.0005393, 46.1425941 ], + [ 6.0005517, 46.1425917 ], + [ 6.0005261, 46.1425381 ], + [ 6.0005029, 46.1425418 ], + [ 6.0004965, 46.1425582 ], + [ 6.0004075, 46.1425542 ], + [ 6.0003998, 46.1425476 ], + [ 6.0003662, 46.1425599 ], + [ 6.0002804, 46.1425783 ], + [ 6.0002757, 46.1425913 ], + [ 6.000268, 46.1425979 ], + [ 6.0002149, 46.142622 ], + [ 6.0002047, 46.1426283 ], + [ 6.0002021, 46.1426397 ], + [ 6.00012, 46.1426877 ], + [ 5.9999879, 46.1428665 ], + [ 6.0000122, 46.1429775 ], + [ 5.9999926, 46.1430118 ], + [ 5.9999929, 46.1430464 ], + [ 5.9999310999999995, 46.1431172 ], + [ 5.9998985, 46.1431265 ], + [ 5.9998709, 46.1431447 ], + [ 5.9998563, 46.1431463 ], + [ 5.999834, 46.1431324 ], + [ 5.9998001, 46.143128 ], + [ 5.9996686, 46.143093 ], + [ 5.9996317, 46.1430934 ], + [ 5.9996105, 46.1430904 ], + [ 5.9995994, 46.143077 ], + [ 5.9996019, 46.1430664 ], + [ 5.9996187, 46.1430604 ], + [ 5.9995469, 46.1430107 ], + [ 5.9994942, 46.1429458 ], + [ 5.9992104, 46.1428952 ], + [ 5.9991942, 46.1429091 ], + [ 5.9991885, 46.1429276 ], + [ 5.9991081, 46.1429286 ], + [ 5.999041, 46.1429184 ], + [ 5.9989543, 46.1429104 ], + [ 5.9989425, 46.1429028 ], + [ 5.998685, 46.1428569 ], + [ 5.9986816, 46.1428794 ], + [ 5.9986719, 46.1428857 ], + [ 5.9986713, 46.1429111 ], + [ 5.9986119, 46.1429463 ], + [ 5.998561, 46.1429605 ], + [ 5.998554, 46.1429547 ], + [ 5.998461, 46.1430076 ], + [ 5.9984492, 46.1430034 ], + [ 5.9982636, 46.1430268 ], + [ 5.9981214, 46.1430374 ], + [ 5.9980633999999995, 46.1430233 ], + [ 5.9980354, 46.1430054 ], + [ 5.9980387, 46.1429828 ], + [ 5.9979224, 46.1429604 ], + [ 5.9979036, 46.1429503 ], + [ 5.9978254, 46.1429398 ], + [ 5.9976775, 46.1428915 ], + [ 5.9975863, 46.1428574 ], + [ 5.9975148, 46.142819 ], + [ 5.9974505, 46.142799 ], + [ 5.9973657, 46.1427844 ], + [ 5.9972946, 46.1428103 ], + [ 5.9971442, 46.1428475 ], + [ 5.9970701, 46.1428711 ], + [ 5.9969392, 46.14296 ], + [ 5.9969339, 46.1429857 ], + [ 5.9968848, 46.1430812 ], + [ 5.9969114999999995, 46.1431349 ], + [ 5.9968953, 46.1431944 ], + [ 5.9969212, 46.1432675 ], + [ 5.9968415, 46.1433452 ], + [ 5.9967384, 46.143552 ], + [ 5.99672, 46.1436064 ], + [ 5.9966591, 46.1436668 ], + [ 5.996593, 46.1437009 ], + [ 5.9964034, 46.143778 ], + [ 5.9962652, 46.1438001 ], + [ 5.9961331, 46.1438024 ], + [ 5.996091, 46.1437822 ], + [ 5.9960672, 46.1437913 ], + [ 5.9958585, 46.143831 ], + [ 5.9957768, 46.1438634 ], + [ 5.9957756, 46.1438931 ], + [ 5.9957068, 46.1439265 ], + [ 5.9957, 46.1439212 ], + [ 5.9956086, 46.1439561 ], + [ 5.9955986, 46.1439748 ], + [ 5.9955473, 46.143967 ], + [ 5.9952977, 46.144027 ], + [ 5.9950229, 46.1440351 ], + [ 5.9949462, 46.1440204 ], + [ 5.9948441, 46.1439658 ], + [ 5.9948063, 46.1438916 ], + [ 5.9948222, 46.1438367 ], + [ 5.9948063, 46.1437639 ], + [ 5.9948246, 46.1437354 ], + [ 5.9948108, 46.1436947 ], + [ 5.994817, 46.1436465 ], + [ 5.9947826, 46.1436023 ], + [ 5.9947542, 46.1435905 ], + [ 5.9947096, 46.1435986 ], + [ 5.9946213, 46.1436411 ], + [ 5.9945618, 46.1437059 ], + [ 5.9945185, 46.1437449 ], + [ 5.9944778, 46.1438259 ], + [ 5.9942627, 46.1440373 ], + [ 5.9942554999999995, 46.1440596 ], + [ 5.9941997, 46.144136 ], + [ 5.9941932, 46.1441338 ], + [ 5.9941505, 46.1442198 ], + [ 5.9941313, 46.1442331 ], + [ 5.9941192, 46.1442994 ], + [ 5.9941218, 46.1443633 ], + [ 5.9941493, 46.1444069 ], + [ 5.9941972, 46.144433 ], + [ 5.9942236, 46.1444791 ], + [ 5.9942012, 46.1444882 ], + [ 5.9941955, 46.1445402 ], + [ 5.994169, 46.1445482 ], + [ 5.9941475, 46.1445634 ], + [ 5.9941013, 46.1445694 ], + [ 5.994072, 46.1445633 ], + [ 5.9940088, 46.1445334 ], + [ 5.9939463, 46.1444807 ], + [ 5.9937856, 46.1444449 ], + [ 5.9937864, 46.1444377 ], + [ 5.9937723, 46.1444309 ], + [ 5.9937673, 46.1444339 ], + [ 5.9936792, 46.1443883 ], + [ 5.9936611, 46.1443763 ], + [ 5.9936383, 46.1443698 ], + [ 5.9936297, 46.144356 ], + [ 5.9933477, 46.1442102 ], + [ 5.9933149, 46.1441999 ], + [ 5.9932156, 46.1441389 ], + [ 5.9930022, 46.144049 ], + [ 5.9928292, 46.144009 ], + [ 5.9926049, 46.1439629 ], + [ 5.9921951, 46.1439166 ], + [ 5.9921279, 46.1439136 ], + [ 5.9917622999999995, 46.1438089 ], + [ 5.9911331, 46.1435781 ], + [ 5.9908838, 46.1434926 ], + [ 5.9905525, 46.1433528 ], + [ 5.9903499, 46.1433033 ], + [ 5.9901735, 46.1433697 ], + [ 5.9900208, 46.143445 ], + [ 5.9899272, 46.1434452 ], + [ 5.9896231, 46.1435105 ], + [ 5.9892655999999995, 46.1436442 ], + [ 5.9891657, 46.1436951 ], + [ 5.9891290999999995, 46.1437474 ], + [ 5.9889794, 46.1438392 ], + [ 5.9889322, 46.1438419 ], + [ 5.9888638, 46.1438249 ], + [ 5.9888015, 46.1437812 ], + [ 5.9887407, 46.1436268 ], + [ 5.9886669, 46.1434852 ], + [ 5.988635, 46.1433805 ], + [ 5.9885839999999995, 46.1433048 ], + [ 5.9885408, 46.1432788 ], + [ 5.9885022, 46.1432705 ], + [ 5.9883941, 46.1432719 ], + [ 5.9882532, 46.1432943 ], + [ 5.9881174999999995, 46.1433278 ], + [ 5.9880005, 46.1433233 ], + [ 5.9878992, 46.1432878 ], + [ 5.9878397, 46.1431818 ], + [ 5.9877122, 46.1430358 ], + [ 5.9876348, 46.1429811 ], + [ 5.9875867, 46.14296 ], + [ 5.9874431, 46.1428575 ], + [ 5.987085, 46.1425905 ], + [ 5.9869898, 46.1425676 ], + [ 5.9868995, 46.1425861 ], + [ 5.9868706, 46.1426054 ], + [ 5.9867104, 46.1427439 ], + [ 5.9866731, 46.1428155 ], + [ 5.9865489, 46.1429343 ], + [ 5.9863878, 46.1429094 ], + [ 5.9862643, 46.1428301 ], + [ 5.9861602, 46.1428059 ], + [ 5.9859534, 46.1428716 ], + [ 5.9857523, 46.1430684 ], + [ 5.9856099, 46.1432989 ], + [ 5.9855377999999995, 46.143368 ], + [ 5.9854807999999995, 46.1434095 ], + [ 5.9852045, 46.143391 ], + [ 5.9850703, 46.1433341 ], + [ 5.9849236, 46.1433596 ], + [ 5.9846796, 46.1432831 ], + [ 5.9840304, 46.1432022 ], + [ 5.983845, 46.1431579 ], + [ 5.9837046, 46.1430757 ], + [ 5.9835442, 46.1430112 ], + [ 5.9835033, 46.1429889 ], + [ 5.9834923, 46.1429267 ], + [ 5.983392, 46.1428069 ], + [ 5.9833293, 46.1427205 ], + [ 5.9832155, 46.142607 ], + [ 5.9831216, 46.1425438 ], + [ 5.9830125, 46.1425173 ], + [ 5.9829227, 46.1424723 ], + [ 5.9827615, 46.1424072 ], + [ 5.9824458, 46.1422907 ], + [ 5.9823366, 46.1415446 ], + [ 5.9829267999999995, 46.1413182 ], + [ 5.9828675, 46.1410117 ], + [ 5.9826057, 46.1404044 ], + [ 5.9822005, 46.1386924 ], + [ 5.9819289, 46.1374076 ], + [ 5.9806544, 46.1364605 ], + [ 5.9798726, 46.1359846 ], + [ 5.9790813, 46.1355412 ], + [ 5.9775075, 46.133618 ], + [ 5.9771799, 46.1334036 ], + [ 5.9767116, 46.1331553 ], + [ 5.9754042, 46.1326692 ], + [ 5.9741466, 46.1323585 ], + [ 5.9734487, 46.1320346 ], + [ 5.9729658, 46.1316227 ], + [ 5.9729352, 46.1316299 ], + [ 5.9729133, 46.1316556 ], + [ 5.9728871, 46.1316774 ], + [ 5.9728236, 46.1316962 ], + [ 5.9727262, 46.1317412 ], + [ 5.972661, 46.1317818 ], + [ 5.9725936, 46.1318033 ], + [ 5.9725734, 46.131827 ], + [ 5.9725932, 46.1318539 ], + [ 5.9726251999999995, 46.1318708 ], + [ 5.9726246, 46.1318882 ], + [ 5.9726085, 46.1319009 ], + [ 5.9725478, 46.1319177 ], + [ 5.972511, 46.1319176 ], + [ 5.9724294, 46.1319558 ], + [ 5.9723914, 46.1319705 ], + [ 5.9723649, 46.1319765 ], + [ 5.9723436, 46.1319704 ], + [ 5.9722972, 46.1319668 ], + [ 5.9722223, 46.1320011 ], + [ 5.9721773, 46.1320276 ], + [ 5.97209, 46.1320654 ], + [ 5.9720571, 46.1320662 ], + [ 5.972009, 46.1320783 ], + [ 5.9719535, 46.1320783 ], + [ 5.971845, 46.1321029 ], + [ 5.9717902, 46.1321221 ], + [ 5.9717497, 46.1321259 ], + [ 5.9717066, 46.1321349 ], + [ 5.9716667999999995, 46.1321379 ], + [ 5.971555, 46.1321385 ], + [ 5.9715077, 46.1321219 ], + [ 5.971482, 46.1321047 ], + [ 5.9714246, 46.1321304 ], + [ 5.9714044, 46.1321319 ], + [ 5.9713457, 46.1321107 ], + [ 5.9712564, 46.1321045 ], + [ 5.9711479, 46.1320905 ], + [ 5.9710537, 46.1320695 ], + [ 5.971016, 46.1320709 ], + [ 5.9709169, 46.1320556 ], + [ 5.9708564, 46.1320627 ], + [ 5.9708241, 46.1320629 ], + [ 5.9707237, 46.1320501 ], + [ 5.9706881, 46.1320227 ], + [ 5.9706639, 46.1320211 ], + [ 5.9706129, 46.13203 ], + [ 5.9705588, 46.1320153 ], + [ 5.9705324, 46.1319949 ], + [ 5.9704014, 46.1319824 ], + [ 5.9703607, 46.1319926 ], + [ 5.9702950999999995, 46.1320019 ], + [ 5.9702027, 46.132 ], + [ 5.9701537, 46.131995 ], + [ 5.9701135, 46.1319965 ], + [ 5.9700654, 46.1320278 ], + [ 5.9700114, 46.132029 ], + [ 5.9699759, 46.1320249 ], + [ 5.969934, 46.1320469 ], + [ 5.9698796, 46.1320696 ], + [ 5.9698491, 46.1320727 ], + [ 5.9697767, 46.132071 ], + [ 5.9696944, 46.1320472 ], + [ 5.9696089, 46.1320356 ], + [ 5.969548, 46.1320216 ], + [ 5.9695014, 46.1320355 ], + [ 5.9694759, 46.1320383 ], + [ 5.9694571, 46.1320038 ], + [ 5.9693477999999995, 46.131889 ], + [ 5.969313, 46.1316748 ], + [ 5.9692634, 46.1316303 ], + [ 5.9692606999999995, 46.1315706 ], + [ 5.9691534, 46.1315008 ], + [ 5.9692017, 46.1314411 ], + [ 5.9688947, 46.1313365 ], + [ 5.9688764, 46.1312812 ], + [ 5.9686077, 46.1312 ], + [ 5.9683548, 46.1311448 ], + [ 5.9682318, 46.1311542 ], + [ 5.9679884, 46.1310906 ], + [ 5.9678778, 46.1311107 ], + [ 5.9676616, 46.13104 ], + [ 5.9675039, 46.1309342 ], + [ 5.9673212, 46.1307009 ], + [ 5.9672123, 46.1306699 ], + [ 5.9670856, 46.1305275 ], + [ 5.9666973, 46.1303439 ], + [ 5.9667259, 46.1302864 ], + [ 5.9665687, 46.1302471 ], + [ 5.9665124, 46.130195 ], + [ 5.9662385, 46.1301459 ], + [ 5.9662188, 46.1301183 ], + [ 5.9659619, 46.1300638 ], + [ 5.9659298, 46.130024 ], + [ 5.9657859, 46.1300594 ], + [ 5.9657026, 46.1300302 ], + [ 5.9656332, 46.1300895 ], + [ 5.9654188, 46.1299936 ], + [ 5.9654499, 46.1298905 ], + [ 5.9652905, 46.129804 ], + [ 5.9652954, 46.1297719 ], + [ 5.9652004, 46.1296847 ], + [ 5.9647771, 46.130193 ], + [ 5.9642297, 46.1302831 ], + [ 5.9627476, 46.1305182 ], + [ 5.9611053, 46.1308028 ], + [ 5.9611468, 46.1307247 ], + [ 5.9610861, 46.1306099 ], + [ 5.9609508, 46.1305629 ], + [ 5.9606362, 46.1303465 ], + [ 5.9605687, 46.13025 ], + [ 5.9598864, 46.1298316 ], + [ 5.958791, 46.1293978 ], + [ 5.957382, 46.1285503 ], + [ 5.9573313, 46.1285755 ], + [ 5.9568463, 46.1287567 ], + [ 5.9564458, 46.1318025 ], + [ 5.955902, 46.1323556 ], + [ 5.9571236, 46.133275 ], + [ 5.9575125, 46.1335439 ], + [ 5.9579329, 46.133789 ], + [ 5.9583816, 46.1340085 ], + [ 5.9588554, 46.1342007 ], + [ 5.9622437999999995, 46.1354441 ], + [ 5.9624198, 46.1355048 ], + [ 5.9626000999999995, 46.1355593 ], + [ 5.962784, 46.1356073 ], + [ 5.9631361, 46.1356922 ], + [ 5.9634661, 46.1357819 ], + [ 5.9637849, 46.1358893 ], + [ 5.9640907, 46.1360137 ], + [ 5.9643816, 46.1361544 ], + [ 5.9649243, 46.1364393 ], + [ 5.9651078, 46.1365452 ], + [ 5.9652766, 46.1366624 ], + [ 5.965429, 46.1367899 ], + [ 5.965564, 46.1369266 ], + [ 5.9656803, 46.1370714 ], + [ 5.9661668, 46.1377488 ], + [ 5.9662562999999995, 46.1378878 ], + [ 5.9663284999999995, 46.1380315 ], + [ 5.966383, 46.1381789 ], + [ 5.9664193, 46.138329 ], + [ 5.9664373, 46.1384807 ], + [ 5.9664368, 46.1386329 ], + [ 5.9664178, 46.1387845 ], + [ 5.9663804, 46.1389345 ], + [ 5.9663249, 46.1390817 ], + [ 5.9662517, 46.1392252 ], + [ 5.9658385, 46.1399377 ], + [ 5.9657312, 46.1401096 ], + [ 5.9656112, 46.1402774 ], + [ 5.9654788, 46.1404407 ], + [ 5.9648102, 46.1412169 ], + [ 5.9647322, 46.1413117 ], + [ 5.9646599, 46.1414086 ], + [ 5.9645931999999995, 46.1415074 ], + [ 5.9644746, 46.1417159 ], + [ 5.9643813, 46.1419304 ], + [ 5.964314, 46.1421496 ], + [ 5.9641006999999995, 46.1430189 ], + [ 5.9640465, 46.1433117 ], + [ 5.9640271, 46.1436065 ], + [ 5.9640424, 46.1439014 ], + [ 5.9640925, 46.1441945 ], + [ 5.964177, 46.1444837 ], + [ 5.9642953, 46.1447672 ], + [ 5.964745, 46.1456998 ], + [ 5.9649573, 46.1460816 ], + [ 5.9652188, 46.1464484 ], + [ 5.9655271, 46.1467972 ], + [ 5.9658798, 46.1471251 ], + [ 5.9665059, 46.1476548 ], + [ 5.9666101, 46.1477515 ], + [ 5.9667014, 46.1478543 ], + [ 5.9667791, 46.1479624 ], + [ 5.9668426, 46.1480749 ], + [ 5.9668914, 46.1481908 ], + [ 5.9672997, 46.149352 ], + [ 5.967341, 46.1494558 ], + [ 5.967391, 46.1495576 ], + [ 5.9674498, 46.1496572 ], + [ 5.968781, 46.1517332 ], + [ 5.9689049, 46.151909 ], + [ 5.9690469, 46.1520781 ], + [ 5.9692062, 46.1522397 ], + [ 5.9718624, 46.1547345 ], + [ 5.9725527, 46.1554395 ], + [ 5.9731608, 46.1561802 ], + [ 5.9736829, 46.1569519 ], + [ 5.9745552, 46.1583856 ], + [ 5.9745936, 46.158457 ], + [ 5.9746231, 46.1585304 ], + [ 5.9746436, 46.1586052 ], + [ 5.974655, 46.158681 ], + [ 5.9746562, 46.1589153 ], + [ 5.9746673, 46.1589903 ], + [ 5.9746874, 46.1590645 ], + [ 5.9747163, 46.1591371 ], + [ 5.9747539, 46.1592079 ], + [ 5.9757832, 46.1609201 ], + [ 5.9764016, 46.1619487 ], + [ 5.9764833, 46.1620755 ], + [ 5.9765744, 46.1621991 ], + [ 5.9766744, 46.1623194 ], + [ 5.9797648, 46.1658203 ], + [ 5.9799454, 46.166045 ], + [ 5.9800989, 46.1662792 ], + [ 5.9802245, 46.1665213 ], + [ 5.9803212, 46.1667698 ], + [ 5.9803882999999995, 46.1670229 ], + [ 5.9809825, 46.1699244 ], + [ 5.9810031, 46.1700862 ], + [ 5.9810026, 46.1702486 ], + [ 5.9809811, 46.1704103 ], + [ 5.9809149, 46.1707239 ], + [ 5.9808969, 46.170851 ], + [ 5.9808962999999995, 46.1709786 ], + [ 5.980913, 46.1711057 ], + [ 5.9809469, 46.1712312 ], + [ 5.9809978, 46.1713539 ], + [ 5.9818222, 46.1730388 ], + [ 5.9818728, 46.1731292 ], + [ 5.9819343, 46.1732162 ], + [ 5.9820065, 46.1732991 ], + [ 5.9820887, 46.1733775 ], + [ 5.9821802, 46.1734507 ], + [ 5.9822805, 46.1735181 ], + [ 5.9823889, 46.1735792 ], + [ 5.9825043, 46.1736336 ], + [ 5.9826261, 46.173681 ], + [ 5.9827533, 46.1737208 ], + [ 5.982885, 46.1737529 ], + [ 5.9830202, 46.173777 ], + [ 5.9831579, 46.1737929 ], + [ 5.983297, 46.1738006 ], + [ 5.9834365, 46.1737998 ], + [ 5.9835755, 46.1737908 ], + [ 5.9837128, 46.1737734 ], + [ 5.9838474, 46.1737479 ], + [ 5.9839784, 46.1737144 ], + [ 5.9841047, 46.1736732 ], + [ 5.9842255, 46.1736246 ], + [ 5.9845065, 46.1735 ], + [ 5.9847709, 46.1733717 ], + [ 5.9850191, 46.1732286 ], + [ 5.9852494, 46.1730717 ], + [ 5.9854601, 46.172902 ], + [ 5.9856498, 46.1727208 ], + [ 5.9858173, 46.1725293 ], + [ 5.9859613, 46.1723287 ], + [ 5.9860808, 46.1721206 ], + [ 5.9861751, 46.1719063 ], + [ 5.9862435, 46.1716873 ], + [ 5.9863833, 46.1711281 ], + [ 5.9864016, 46.1710701 ], + [ 5.9864272, 46.1710135 ], + [ 5.9864598, 46.1709586 ], + [ 5.9864993, 46.170906 ], + [ 5.9865452, 46.170856 ], + [ 5.9865973, 46.170809 ], + [ 5.9866551, 46.1707653 ], + [ 5.9867183, 46.1707253 ], + [ 5.9867862, 46.1706894 ], + [ 5.9868584, 46.1706577 ], + [ 5.9869344, 46.1706306 ], + [ 5.9870135, 46.1706082 ], + [ 5.9870951, 46.1705907 ], + [ 5.9871786, 46.1705783 ], + [ 5.9872634, 46.170571 ], + [ 5.9873487, 46.1705689 ], + [ 5.987434, 46.170572 ], + [ 5.9875186, 46.1705804 ], + [ 5.9876018, 46.1705938 ], + [ 5.9876829, 46.1706123 ], + [ 5.9877614, 46.1706357 ], + [ 5.9878367, 46.1706638 ], + [ 5.9879081, 46.1706963 ], + [ 5.9879751, 46.1707331 ], + [ 5.9880372, 46.1707738 ], + [ 5.9880939, 46.1708182 ], + [ 5.9881448, 46.1708659 ], + [ 5.9881893999999996, 46.1709164 ], + [ 5.9885109, 46.1713191 ], + [ 5.9886299, 46.1714839 ], + [ 5.9887292, 46.1716549 ], + [ 5.9888079, 46.171831 ], + [ 5.9888656, 46.1720109 ], + [ 5.9889019, 46.1721936 ], + [ 5.9890517, 46.1732729 ], + [ 5.9891157, 46.173596 ], + [ 5.9892168, 46.1739145 ], + [ 5.9893546, 46.1742263 ], + [ 5.9899757, 46.175454 ], + [ 5.9900884, 46.1756494 ], + [ 5.9902246, 46.1758374 ], + [ 5.9903832999999995, 46.1760167 ], + [ 5.9905634, 46.176186 ], + [ 5.9907636, 46.176344 ], + [ 5.9909823, 46.1764896 ], + [ 5.9912181, 46.1766218 ], + [ 5.9914692, 46.1767396 ], + [ 5.9917334, 46.1768419 ], + [ 5.9914205, 46.1771617 ], + [ 5.9914609, 46.1771819 ], + [ 5.9914511, 46.1772057 ], + [ 5.9914229, 46.1772395 ], + [ 5.9913626, 46.1772781 ], + [ 5.9913205, 46.1773003 ], + [ 5.9912643, 46.1773128 ], + [ 5.991236, 46.1773226 ], + [ 5.9912173, 46.1773244 ], + [ 5.9911255, 46.1773048 ], + [ 5.9908885, 46.1773127 ], + [ 5.990818, 46.1773281 ], + [ 5.9907767, 46.1773446 ], + [ 5.9904317, 46.177533 ], + [ 5.990415, 46.1775465 ], + [ 5.9904054, 46.1775612 ], + [ 5.9904032, 46.1775783 ], + [ 5.9904097, 46.1775976 ], + [ 5.9904257, 46.1776127 ], + [ 5.9905818, 46.1777114 ], + [ 5.9906077, 46.1777437 ], + [ 5.9906267, 46.1777589 ], + [ 5.9906649, 46.1777816 ], + [ 5.9907335, 46.1778603 ], + [ 5.9909222, 46.1779584 ], + [ 5.990975, 46.1780137 ], + [ 5.9909806, 46.1780533 ], + [ 5.9910296, 46.1781596 ], + [ 5.9910495, 46.1781848 ], + [ 5.9910548, 46.1781999 ], + [ 5.9911064, 46.1782789 ], + [ 5.9911587, 46.1783331 ], + [ 5.9911649, 46.1783625 ], + [ 5.9911791, 46.1783953 ], + [ 5.9911927, 46.1784628 ], + [ 5.9912154, 46.1785071 ], + [ 5.9912566, 46.1785445 ], + [ 5.9912689, 46.1785803 ], + [ 5.9913071, 46.1786199 ], + [ 5.9913267, 46.1786554 ], + [ 5.9913184, 46.1787552 ], + [ 5.9913022, 46.17877 ], + [ 5.9912852, 46.1788242 ], + [ 5.9912602, 46.1788627 ], + [ 5.9912514, 46.178891 ], + [ 5.9912647, 46.1789389 ], + [ 5.9912799, 46.1789499 ], + [ 5.9913232, 46.1789553 ], + [ 5.9914334, 46.1789306 ], + [ 5.9914738, 46.1789394 ], + [ 5.9915147, 46.1790293 ], + [ 5.9915455, 46.179056 ], + [ 5.9915713, 46.1790671 ], + [ 5.9916037, 46.1790753 ], + [ 5.9916211, 46.179086 ], + [ 5.9916462, 46.1790908 ], + [ 5.9917095, 46.1790904 ], + [ 5.9917748, 46.1790721 ], + [ 5.9917917, 46.1790631 ], + [ 5.9918567, 46.179046 ], + [ 5.9919082, 46.179066 ], + [ 5.9919283, 46.1790836 ], + [ 5.9919449, 46.1791287 ], + [ 5.9919388, 46.1791419 ], + [ 5.9919614, 46.1791997 ], + [ 5.9919932, 46.1792142 ], + [ 5.9920443, 46.1792165 ], + [ 5.9921319, 46.1791911 ], + [ 5.9921512, 46.1791715 ], + [ 5.9921425, 46.1790849 ], + [ 5.9921849, 46.1790538 ], + [ 5.9922181, 46.1790429 ], + [ 5.9922507, 46.1790514 ], + [ 5.9922682, 46.1790633 ], + [ 5.9922802, 46.1790945 ], + [ 5.9923261, 46.1791815 ], + [ 5.9923646, 46.1792282 ], + [ 5.9924188, 46.1792585 ], + [ 5.9924317, 46.1792741 ], + [ 5.9924859, 46.1793085 ], + [ 5.9925758, 46.1793573 ], + [ 5.9926253, 46.1794048 ], + [ 5.9926651, 46.1794541 ], + [ 5.9927255, 46.1794768 ], + [ 5.9927464, 46.179493 ], + [ 5.9927554999999995, 46.1795177 ], + [ 5.992773, 46.1795356 ], + [ 5.9928104, 46.1796139 ], + [ 5.9928481, 46.1796394 ], + [ 5.9928808, 46.1796463 ], + [ 5.9929252, 46.1797058 ], + [ 5.9929413, 46.1797454 ], + [ 5.9930299, 46.1797859 ], + [ 5.9930764, 46.1798245 ], + [ 5.9930934, 46.1798479 ], + [ 5.9930944, 46.1798607 ], + [ 5.9931072, 46.1798718 ], + [ 5.9931185, 46.1798755 ], + [ 5.9931341, 46.1799009 ], + [ 5.9931342999999995, 46.1799226 ], + [ 5.9931753, 46.1800151 ], + [ 5.9933, 46.1801483 ], + [ 5.9933609, 46.18016 ], + [ 5.9933957, 46.1801979 ], + [ 5.9933995, 46.180249 ], + [ 5.9934203, 46.1802734 ], + [ 5.9934283, 46.180296 ], + [ 5.9934754, 46.1803287 ], + [ 5.9935203, 46.1803804 ], + [ 5.9935431999999995, 46.1804542 ], + [ 5.9935676, 46.1804813 ], + [ 5.9936103, 46.1804955 ], + [ 5.9936335, 46.1805097 ], + [ 5.9936454999999995, 46.1805431 ], + [ 5.9936795, 46.1805616 ], + [ 5.9937254, 46.180574 ], + [ 5.9937941, 46.180587 ], + [ 5.9938336, 46.1805871 ], + [ 5.9938642, 46.1805808 ], + [ 5.9938816, 46.180595 ], + [ 5.9939238, 46.180656 ], + [ 5.9939306, 46.1806853 ], + [ 5.9939246, 46.1806991 ], + [ 5.9939443, 46.1807385 ], + [ 5.9939883, 46.1807638 ], + [ 5.9939982, 46.1808071 ], + [ 5.9940088, 46.1808341 ], + [ 5.994076, 46.180881 ], + [ 5.9941534, 46.180884 ], + [ 5.9941803, 46.1809088 ], + [ 5.9941926, 46.1809306 ], + [ 5.9942106, 46.1809499 ], + [ 5.9942326, 46.181003 ], + [ 5.9942668999999995, 46.1810562 ], + [ 5.9943689, 46.1811092 ], + [ 5.9944533, 46.1811712 ], + [ 5.9944546, 46.1811993 ], + [ 5.9944954, 46.181243 ], + [ 5.9945241, 46.1812519 ], + [ 5.9945628, 46.1812841 ], + [ 5.9946107, 46.1813055 ], + [ 5.9946261, 46.181316699999996 ], + [ 5.994626, 46.1813385 ], + [ 5.9946477, 46.1813567 ], + [ 5.9946863, 46.1813976 ], + [ 5.9946886, 46.1814122 ], + [ 5.9946995, 46.1814232 ], + [ 5.9947038, 46.1814553 ], + [ 5.9947155, 46.1814857 ], + [ 5.9947107, 46.1815119 ], + [ 5.9947216999999995, 46.1815245 ], + [ 5.9947146, 46.1815797 ], + [ 5.9947074, 46.1816039 ], + [ 5.9947221, 46.1816255 ], + [ 5.9947209, 46.1816385 ], + [ 5.9947469, 46.1816679 ], + [ 5.9947672999999995, 46.1816833 ], + [ 5.9947823, 46.1817092 ], + [ 5.9948353, 46.1817747 ], + [ 5.9949051, 46.181807 ], + [ 5.9949119, 46.1818394 ], + [ 5.9948649, 46.1818874 ], + [ 5.9948602, 46.1819283 ], + [ 5.9948753, 46.1819508 ], + [ 5.9948763, 46.1819634 ], + [ 5.9948882999999995, 46.181987 ], + [ 5.9948822, 46.181999 ], + [ 5.9948815, 46.1820138 ], + [ 5.9948958, 46.1820323 ], + [ 5.994895, 46.182077 ], + [ 5.9948685, 46.1821007 ], + [ 5.9948558, 46.1821315 ], + [ 5.994878, 46.1821509 ], + [ 5.9948811, 46.182199 ], + [ 5.9948704, 46.1822188 ], + [ 5.9948774, 46.1822609 ], + [ 5.9948692999999995, 46.1822879 ], + [ 5.9948595000000005, 46.1822972 ], + [ 5.9948663, 46.1823306 ], + [ 5.994882, 46.1823629 ], + [ 5.9948969, 46.1823791 ], + [ 5.9948822, 46.1824205 ], + [ 5.9948871, 46.1824423 ], + [ 5.9948765, 46.1824852 ], + [ 5.994872, 46.1825242 ], + [ 5.9948851, 46.1825549 ], + [ 5.994882, 46.1825692 ], + [ 5.994889, 46.182606 ], + [ 5.994924, 46.1826456 ], + [ 5.9949058, 46.1826794 ], + [ 5.9949265, 46.1827036 ], + [ 5.9949422, 46.1827687 ], + [ 5.9949601999999995, 46.1827826 ], + [ 5.9949962, 46.182834 ], + [ 5.9949917, 46.1828787 ], + [ 5.9949426, 46.182915 ], + [ 5.9949202, 46.1829396 ], + [ 5.9949127, 46.1829549 ], + [ 5.9949221, 46.1829686 ], + [ 5.9949266, 46.182987 ], + [ 5.9949352, 46.1829922 ], + [ 5.9949522, 46.183012 ], + [ 5.9949451, 46.1830184 ], + [ 5.994937, 46.1830347 ], + [ 5.9949137, 46.1830584 ], + [ 5.9948951, 46.1830696 ], + [ 5.9948662, 46.1830783 ], + [ 5.9948178, 46.1830881 ], + [ 5.9947921, 46.1831043 ], + [ 5.9947372, 46.1831111 ], + [ 5.9947201, 46.1831215 ], + [ 5.9947075, 46.1831534 ], + [ 5.9946932, 46.1831555 ], + [ 5.9946718, 46.1831828 ], + [ 5.994632, 46.1832143 ], + [ 5.9945939, 46.1832822 ], + [ 5.9945623999999995, 46.1832933 ], + [ 5.9945382, 46.1833105 ], + [ 5.9945301, 46.1833231 ], + [ 5.9944679999999995, 46.1833591 ], + [ 5.9944595, 46.1833831 ], + [ 5.9943698, 46.1834296 ], + [ 5.9943393, 46.183464 ], + [ 5.9942624, 46.1834977 ], + [ 5.9941759, 46.1835485 ], + [ 5.9941309, 46.1835647 ], + [ 5.9940898, 46.1835911 ], + [ 5.9940728, 46.1835925 ], + [ 5.9940363, 46.1836028 ], + [ 5.9940116, 46.1836234 ], + [ 5.9939143, 46.1836765 ], + [ 5.993867, 46.1836782 ], + [ 5.9938576, 46.1836917 ], + [ 5.9938588, 46.1837169 ], + [ 5.9937973, 46.1837434 ], + [ 5.993748, 46.1837803 ], + [ 5.993748, 46.1838083 ], + [ 5.9937423, 46.1838237 ], + [ 5.9936792, 46.1838544 ], + [ 5.9936041, 46.1839283 ], + [ 5.9934882, 46.1839772 ], + [ 5.9933823, 46.1840434 ], + [ 5.9932969, 46.1842032 ], + [ 5.993302, 46.1842957 ], + [ 5.9932813, 46.1843216 ], + [ 5.9932788, 46.1843623 ], + [ 5.9932576, 46.1844213 ], + [ 5.9932392, 46.1845063 ], + [ 5.9932158, 46.1845295 ], + [ 5.9931193, 46.1846602 ], + [ 5.9929806, 46.1848037 ], + [ 5.9929313, 46.1848971 ], + [ 5.9929012, 46.1849221 ], + [ 5.9928698, 46.18498 ], + [ 5.9928501, 46.1850575 ], + [ 5.9928141, 46.1850974 ], + [ 5.9927638, 46.1851386 ], + [ 5.9927436, 46.1851635 ], + [ 5.9927531, 46.1852003 ], + [ 5.9927419, 46.1852421 ], + [ 5.9927535, 46.1852925 ], + [ 5.9927442, 46.1853188 ], + [ 5.9927033, 46.185386 ], + [ 5.992697, 46.1854077 ], + [ 5.9926413, 46.1854712 ], + [ 5.9924679, 46.1855736 ], + [ 5.9922229, 46.1865474 ], + [ 5.9914363, 46.1870844 ], + [ 5.9902981, 46.1878037 ], + [ 5.9896848, 46.1878435 ], + [ 5.989616, 46.1878395 ], + [ 5.9895344, 46.1878119 ], + [ 5.9894595, 46.1878017 ], + [ 5.9894034, 46.187759 ], + [ 5.9893569, 46.1877491 ], + [ 5.9893152, 46.187719799999996 ], + [ 5.9891775, 46.187696 ], + [ 5.9890622, 46.1876522 ], + [ 5.9889989, 46.187682 ], + [ 5.9889018, 46.1876636 ], + [ 5.9888473, 46.1876741 ], + [ 5.9888297999999995, 46.1876664 ], + [ 5.9888029, 46.1876646 ], + [ 5.9887821, 46.1876765 ], + [ 5.9887549, 46.1876727 ], + [ 5.9886526, 46.1877049 ], + [ 5.9886392, 46.187696 ], + [ 5.9886182, 46.187727 ], + [ 5.988553, 46.1877378 ], + [ 5.9885028, 46.1877327 ], + [ 5.9884575, 46.1877736 ], + [ 5.9883208, 46.1878217 ], + [ 5.9879232, 46.1879437 ], + [ 5.9849267, 46.1886662 ], + [ 5.9849089, 46.1886589 ], + [ 5.9848827, 46.1886656 ], + [ 5.9847717, 46.1886758 ], + [ 5.9847171, 46.1886718 ], + [ 5.984596, 46.1886941 ], + [ 5.9845613, 46.1887156 ], + [ 5.9844592, 46.1887551 ], + [ 5.9842819, 46.1887809 ], + [ 5.9842040999999995, 46.1888171 ], + [ 5.9840631, 46.1888475 ], + [ 5.9838127, 46.1888712 ], + [ 5.9836726, 46.1889334 ], + [ 5.9836333, 46.1889945 ], + [ 5.9835872, 46.1890162 ], + [ 5.9832808, 46.1892734 ], + [ 5.9819604, 46.1900239 ], + [ 5.9828166, 46.1907706 ], + [ 5.9773122999999995, 46.1924581 ], + [ 5.9759123, 46.1928831 ], + [ 5.9718689, 46.1941813 ], + [ 5.9706178, 46.1946187 ], + [ 5.9673691, 46.195747 ], + [ 5.9637276, 46.1970065 ], + [ 5.9637378, 46.1970399 ], + [ 5.9637613, 46.1970448 ], + [ 5.9638328, 46.1970873 ], + [ 5.9638035, 46.1971035 ], + [ 5.9637554, 46.1971574 ], + [ 5.9637584, 46.1972046 ], + [ 5.9638435, 46.1972771 ], + [ 5.9638743, 46.1972992 ], + [ 5.9639592, 46.1973335 ], + [ 5.9639673, 46.1973523 ], + [ 5.9639605, 46.197363 ], + [ 5.9638648, 46.1973942 ], + [ 5.9638531, 46.1974274 ], + [ 5.9639069, 46.1974533 ], + [ 5.9639281, 46.1974706 ], + [ 5.9639403, 46.1974894 ], + [ 5.9639669, 46.1975041 ], + [ 5.96403, 46.1975262 ], + [ 5.9640568, 46.1975478 ], + [ 5.9640743, 46.197566 ], + [ 5.9640845, 46.1975823 ], + [ 5.9641032, 46.1976379 ], + [ 5.9640768, 46.1976567 ], + [ 5.9640594, 46.1976785 ], + [ 5.9640554, 46.1976925 ], + [ 5.9640668, 46.1977195 ], + [ 5.9640826, 46.1977229 ], + [ 5.9640945, 46.1977216 ], + [ 5.964163, 46.1977003 ], + [ 5.9641646, 46.1976887 ], + [ 5.9641788, 46.1976737 ], + [ 5.9642264, 46.1976849 ], + [ 5.9642598, 46.1977445 ], + [ 5.9642519, 46.1977876 ], + [ 5.9642586, 46.1978156 ], + [ 5.9642838, 46.1978425 ], + [ 5.9643145, 46.197851 ], + [ 5.9643552, 46.1978751 ], + [ 5.9644193, 46.1979233 ], + [ 5.964458, 46.1979612 ], + [ 5.9644665, 46.197996 ], + [ 5.9644569, 46.1980455 ], + [ 5.9644686, 46.1980615 ], + [ 5.9644812, 46.1981035 ], + [ 5.9644835, 46.1981178 ], + [ 5.9644787, 46.1981326 ], + [ 5.9645113, 46.1981859 ], + [ 5.9645700999999995, 46.1982105 ], + [ 5.9646305, 46.1982187 ], + [ 5.9646484, 46.1982357 ], + [ 5.9646506, 46.1982823 ], + [ 5.9646305, 46.1983109 ], + [ 5.9645963, 46.1983309 ], + [ 5.9645897, 46.198344 ], + [ 5.9645953, 46.1983892 ], + [ 5.9646253, 46.1983932 ], + [ 5.9646559, 46.198412 ], + [ 5.9646611, 46.1984737 ], + [ 5.9646512, 46.1985039 ], + [ 5.9646402, 46.1985231 ], + [ 5.9646506, 46.1985761 ], + [ 5.9646674, 46.1986017 ], + [ 5.9646696, 46.1987108 ], + [ 5.9646566, 46.1987911 ], + [ 5.9646788, 46.1988232 ], + [ 5.9647454, 46.1988685 ], + [ 5.9648637, 46.1989687 ], + [ 5.9649394000000004, 46.1989932 ], + [ 5.9649736, 46.1989863 ], + [ 5.9649999, 46.1989945 ], + [ 5.9650967, 46.1990064 ], + [ 5.9651568, 46.1989949 ], + [ 5.9651891, 46.1990062 ], + [ 5.9652385, 46.1990319 ], + [ 5.9652818, 46.1991116 ], + [ 5.965408, 46.1992946 ], + [ 5.9654443, 46.1993261 ], + [ 5.9654647, 46.1993611 ], + [ 5.9655448, 46.1994617 ], + [ 5.9656353, 46.1995323 ], + [ 5.9657376, 46.1995673 ], + [ 5.9659153, 46.1996435 ], + [ 5.9660485, 46.1996871 ], + [ 5.9660914, 46.1996929 ], + [ 5.9662324, 46.199638 ], + [ 5.9662444, 46.1996269 ], + [ 5.9662762, 46.1996293 ], + [ 5.9663009, 46.1996448 ], + [ 5.966354, 46.1996902 ], + [ 5.9663937, 46.199713 ], + [ 5.9664604, 46.1997592 ], + [ 5.9664836, 46.1997794 ], + [ 5.9665862, 46.1998181 ], + [ 5.9666341, 46.1998402 ], + [ 5.9666771999999995, 46.1998773 ], + [ 5.9666989, 46.1999151 ], + [ 5.9667033, 46.1999415 ], + [ 5.9667445, 46.1999841 ], + [ 5.966781, 46.2000033 ], + [ 5.9668551, 46.1999997 ], + [ 5.9668725, 46.1999932 ], + [ 5.9669366, 46.1999405 ], + [ 5.9669641, 46.1999241 ], + [ 5.9670274, 46.1998782 ], + [ 5.9671427, 46.199887 ], + [ 5.9672667, 46.1999432 ], + [ 5.9673332, 46.2000377 ], + [ 5.9674096, 46.2001001 ], + [ 5.9674911999999996, 46.2001312 ], + [ 5.9675545, 46.2001789 ], + [ 5.9675443999999995, 46.2002355 ], + [ 5.9675286, 46.2002542 ], + [ 5.9675556, 46.2002724 ], + [ 5.9675927, 46.2002821 ], + [ 5.9677502, 46.200235 ], + [ 5.9677633, 46.2002046 ], + [ 5.9677467, 46.2001343 ], + [ 5.9677787, 46.2001081 ], + [ 5.967822, 46.2000935 ], + [ 5.9678942, 46.2001159 ], + [ 5.9679465, 46.2001487 ], + [ 5.9679866, 46.2002083 ], + [ 5.9680175, 46.2002365 ], + [ 5.9680494, 46.2002443 ], + [ 5.9681223, 46.2002464 ], + [ 5.9681285, 46.2002026 ], + [ 5.9681169, 46.2001603 ], + [ 5.9681318999999995, 46.2000228 ], + [ 5.9681799, 46.2000159 ], + [ 5.9682122, 46.2000175 ], + [ 5.9682451, 46.200038 ], + [ 5.9683108, 46.2001167 ], + [ 5.9683483, 46.2001415 ], + [ 5.9684428, 46.2001867 ], + [ 5.9685289, 46.2002175 ], + [ 5.9686224, 46.2002668 ], + [ 5.968657, 46.2003079 ], + [ 5.9686957, 46.2003666 ], + [ 5.9687176, 46.2004371 ], + [ 5.9687241, 46.2005104 ], + [ 5.9687324, 46.2005405 ], + [ 5.9687261, 46.200607 ], + [ 5.9687503, 46.2006319 ], + [ 5.9687851, 46.2006368 ], + [ 5.9690065, 46.2005564 ], + [ 5.9690476, 46.2005216 ], + [ 5.9691044, 46.2005139 ], + [ 5.9691595, 46.2005332 ], + [ 5.9691939, 46.2005835 ], + [ 5.9691773, 46.2007112 ], + [ 5.9691839, 46.2007601 ], + [ 5.9692108, 46.2008046 ], + [ 5.9692573, 46.2009059 ], + [ 5.9692723999999995, 46.2009515 ], + [ 5.9692827, 46.2009982 ], + [ 5.9692748, 46.2010724 ], + [ 5.9692525, 46.2011258 ], + [ 5.9692351, 46.2011922 ], + [ 5.9692461, 46.2012191 ], + [ 5.9692969, 46.2012321 ], + [ 5.9693469, 46.2012259 ], + [ 5.9693781, 46.2012093 ], + [ 5.9694739, 46.2011812 ], + [ 5.9695333999999995, 46.201156 ], + [ 5.969575, 46.2011014 ], + [ 5.9696812, 46.2010705 ], + [ 5.9697098, 46.2010348 ], + [ 5.9697652, 46.201041 ], + [ 5.9698344, 46.2011559 ], + [ 5.9699525, 46.2012026 ], + [ 5.9700286, 46.201221 ], + [ 5.9701251, 46.201283 ], + [ 5.9701958, 46.2013525 ], + [ 5.9702253, 46.2013773 ], + [ 5.9702953999999995, 46.2014258 ], + [ 5.970321, 46.2014501 ], + [ 5.9703634999999995, 46.201469 ], + [ 5.970395, 46.2014764 ], + [ 5.9704515, 46.2014645 ], + [ 5.970467, 46.2014702 ], + [ 5.9704822, 46.2015116 ], + [ 5.9704552, 46.201625 ], + [ 5.9704783, 46.2016887 ], + [ 5.970518, 46.201726 ], + [ 5.9705896, 46.2017085 ], + [ 5.9706154, 46.2016743 ], + [ 5.9708193, 46.201591 ], + [ 5.9708427, 46.2015641 ], + [ 5.9708875, 46.2015407 ], + [ 5.9709606, 46.2015403 ], + [ 5.9710168, 46.2015648 ], + [ 5.971039, 46.2016169 ], + [ 5.9710772, 46.2016444 ], + [ 5.9711203, 46.2016501 ], + [ 5.9711822, 46.2016414 ], + [ 5.9713549, 46.2015702 ], + [ 5.9714271, 46.2015909 ], + [ 5.9715278, 46.2015903 ], + [ 5.9715708, 46.2016112 ], + [ 5.9716552, 46.2016731 ], + [ 5.9717082999999995, 46.2017023 ], + [ 5.971766, 46.2017689 ], + [ 5.9719701, 46.2019659 ], + [ 5.9720404, 46.2020858 ], + [ 5.9720916, 46.2021316 ], + [ 5.972107, 46.2021552 ], + [ 5.97215, 46.2021821 ], + [ 5.9722029, 46.2021828 ], + [ 5.9722301, 46.2021634 ], + [ 5.9722401, 46.2021621 ], + [ 5.9722791, 46.2021655 ], + [ 5.9723071999999995, 46.2021614 ], + [ 5.9723203, 46.2021303 ], + [ 5.9723652, 46.202117 ], + [ 5.9724183, 46.2021256 ], + [ 5.9724626999999995, 46.2021274 ], + [ 5.9726224, 46.202159 ], + [ 5.9726835, 46.2021736 ], + [ 5.9727383, 46.2021949 ], + [ 5.972728, 46.2022409 ], + [ 5.972718, 46.2022512 ], + [ 5.9726834, 46.2022703 ], + [ 5.972641, 46.2022601 ], + [ 5.972604, 46.2022646 ], + [ 5.9725705, 46.2022849 ], + [ 5.9725605999999996, 46.2023112 ], + [ 5.9725544, 46.2023538 ], + [ 5.9725317, 46.2023803 ], + [ 5.9725421999999995, 46.2024022 ], + [ 5.9725968, 46.2024162 ], + [ 5.972651, 46.2024233 ], + [ 5.9727795, 46.2024125 ], + [ 5.9728058, 46.2024131 ], + [ 5.9728737, 46.2024198 ], + [ 5.9730032, 46.2024393 ], + [ 5.9730887, 46.2024589 ], + [ 5.9732520000000005, 46.2024914 ], + [ 5.9732644, 46.2024915 ], + [ 5.9733932, 46.2025336 ], + [ 5.9734299, 46.2025752 ], + [ 5.9734437, 46.2026281 ], + [ 5.9733996, 46.2026861 ], + [ 5.973397, 46.2027096 ], + [ 5.9734308, 46.2027357 ], + [ 5.9734853, 46.20275 ], + [ 5.9735182, 46.2027778 ], + [ 5.9734437, 46.2028163 ], + [ 5.9733903999999995, 46.2028345 ], + [ 5.973278, 46.2028608 ], + [ 5.9732529, 46.2029313 ], + [ 5.9732074, 46.202973 ], + [ 5.9731552, 46.2029907 ], + [ 5.9731026, 46.2030219 ], + [ 5.9730527, 46.2030877 ], + [ 5.9730359, 46.2031724 ], + [ 5.9729928, 46.2032316 ], + [ 5.9729186, 46.2032552 ], + [ 5.9728858, 46.2032896 ], + [ 5.9728311, 46.2033278 ], + [ 5.9727823, 46.2033398 ], + [ 5.9727757, 46.2033557 ], + [ 5.9727813, 46.2033723 ], + [ 5.9728131, 46.2034013 ], + [ 5.9728364, 46.2034129 ], + [ 5.9728747, 46.2034437 ], + [ 5.9728823, 46.2034627 ], + [ 5.972876, 46.203484 ], + [ 5.9728476, 46.2035014 ], + [ 5.972835, 46.2035206 ], + [ 5.9728316, 46.2036002 ], + [ 5.9728088, 46.2036172 ], + [ 5.9726951, 46.2036508 ], + [ 5.9726627, 46.2036568 ], + [ 5.9726194, 46.2036814 ], + [ 5.9725793, 46.2036963 ], + [ 5.9725522, 46.2037152 ], + [ 5.9724974, 46.2037411 ], + [ 5.9723777, 46.2037656 ], + [ 5.9723439, 46.2037889 ], + [ 5.9721767, 46.203851 ], + [ 5.972082, 46.2038567 ], + [ 5.9720227, 46.2038792 ], + [ 5.9719472, 46.2039342 ], + [ 5.9719207, 46.2039664 ], + [ 5.9719103, 46.2039961 ], + [ 5.9718883, 46.2040158 ], + [ 5.9717609, 46.2040817 ], + [ 5.9717101, 46.2041296 ], + [ 5.9716313, 46.204175 ], + [ 5.9715931, 46.2041883 ], + [ 5.9715239, 46.2042541 ], + [ 5.9714107, 46.2042789 ], + [ 5.9713560999999995, 46.2043257 ], + [ 5.9712092, 46.2043327 ], + [ 5.9711167, 46.204298 ], + [ 5.9709269, 46.2043303 ], + [ 5.9708448, 46.2043652 ], + [ 5.9707455, 46.2043834 ], + [ 5.970751, 46.2044066 ], + [ 5.9707503, 46.2044304 ], + [ 5.970732, 46.2044493 ], + [ 5.9707125, 46.2044561 ], + [ 5.9706835, 46.2044553 ], + [ 5.9706553, 46.204461 ], + [ 5.9706491, 46.2045054 ], + [ 5.9706604, 46.2045508 ], + [ 5.9706765, 46.2045919 ], + [ 5.9707471, 46.2046693 ], + [ 5.9707639, 46.2047018 ], + [ 5.970732, 46.2047486 ], + [ 5.9707224, 46.2047815 ], + [ 5.9707253, 46.2048108 ], + [ 5.9708176, 46.2048774 ], + [ 5.9708246, 46.2049047 ], + [ 5.9708184, 46.2049234 ], + [ 5.9707796, 46.2049523 ], + [ 5.9707027, 46.2049745 ], + [ 5.9706329, 46.2050021 ], + [ 5.970588, 46.2050297 ], + [ 5.9705657, 46.2050523 ], + [ 5.9705272, 46.2050784 ], + [ 5.9704975, 46.2050918 ], + [ 5.9704708, 46.2051109 ], + [ 5.970434, 46.2051222 ], + [ 5.9703531, 46.2051668 ], + [ 5.9702619, 46.2052028 ], + [ 5.97022, 46.2052238 ], + [ 5.9701871, 46.2052629 ], + [ 5.9701863, 46.2053023 ], + [ 5.97016, 46.2053707 ], + [ 5.970145, 46.2053956 ], + [ 5.9700985, 46.2055102 ], + [ 5.9700903, 46.2055378 ], + [ 5.9700898, 46.2055772 ], + [ 5.9700385, 46.2056767 ], + [ 5.9699582, 46.2057671 ], + [ 5.9699173, 46.2058488 ], + [ 5.9698147, 46.2058926 ], + [ 5.969791, 46.2059422 ], + [ 5.969774, 46.2059692 ], + [ 5.9697603, 46.2060136 ], + [ 5.9697467, 46.2060426 ], + [ 5.9697254, 46.206076 ], + [ 5.9696725, 46.2060989 ], + [ 5.9696566, 46.2061262 ], + [ 5.9696329, 46.2061423 ], + [ 5.9695933, 46.2062025 ], + [ 5.9695909, 46.2062308 ], + [ 5.969554, 46.206314 ], + [ 5.9694997999999995, 46.2063425 ], + [ 5.9694266, 46.2063597 ], + [ 5.9694153, 46.206390999999996 ], + [ 5.9694281, 46.2064496 ], + [ 5.9694123999999995, 46.2064654 ], + [ 5.9693977, 46.2064876 ], + [ 5.9693908, 46.2065119 ], + [ 5.9693769, 46.2065352 ], + [ 5.9693393, 46.2065699 ], + [ 5.9693145, 46.2065879 ], + [ 5.9692725, 46.2066092 ], + [ 5.9692544, 46.2066268 ], + [ 5.9692548, 46.2066719 ], + [ 5.969263, 46.2066912 ], + [ 5.9695386, 46.206966 ], + [ 5.9699745, 46.2078093 ], + [ 5.9703174, 46.2084318 ], + [ 5.9710099, 46.2099288 ], + [ 5.9716422, 46.2113129 ], + [ 5.9733579, 46.2137156 ], + [ 5.9746754, 46.2150265 ], + [ 5.9785062, 46.2169383 ], + [ 5.9791723, 46.2172519 ], + [ 5.9792322, 46.2172358 ], + [ 5.9793252, 46.2172359 ], + [ 5.9793599, 46.2172417 ], + [ 5.9794829, 46.2172304 ], + [ 5.9795765, 46.2171488 ], + [ 5.9797978, 46.217099 ], + [ 5.9799818, 46.2170135 ], + [ 5.9800981, 46.2169805 ], + [ 5.9802026999999995, 46.2170031 ], + [ 5.9802335, 46.2170713 ], + [ 5.980249, 46.2171577 ], + [ 5.9803074, 46.2172099 ], + [ 5.9803637, 46.2172062 ], + [ 5.9804673, 46.2172121 ], + [ 5.9805227, 46.2172359 ], + [ 5.9805858, 46.2172296 ], + [ 5.9806884, 46.2171618 ], + [ 5.9808677, 46.2171864 ], + [ 5.9809006, 46.2172038 ], + [ 5.9810479999999995, 46.2172388 ], + [ 5.9810838, 46.2172401 ], + [ 5.9811573, 46.2172286 ], + [ 5.9812560999999995, 46.2171961 ], + [ 5.9813219, 46.2171513 ], + [ 5.9814809, 46.2170973 ], + [ 5.9815275, 46.2171001 ], + [ 5.9816467, 46.2170458 ], + [ 5.981695, 46.2170419 ], + [ 5.981755, 46.217031 ], + [ 5.9818516, 46.2170337 ], + [ 5.9819154999999995, 46.217022 ], + [ 5.9820946, 46.2170121 ], + [ 5.982171, 46.2169839 ], + [ 5.9822246, 46.216996 ], + [ 5.9823338, 46.2169726 ], + [ 5.9823794, 46.21695 ], + [ 5.9824417, 46.216911 ], + [ 5.9825365999999995, 46.2169049 ], + [ 5.9826741, 46.2169282 ], + [ 5.9828235, 46.2168767 ], + [ 5.982906, 46.2168611 ], + [ 5.9829982, 46.2168568 ], + [ 5.9831536, 46.2168698 ], + [ 5.983404, 46.2169049 ], + [ 5.9835396, 46.2169015 ], + [ 5.9836227, 46.2169149 ], + [ 5.9837074, 46.2169903 ], + [ 5.9837809, 46.2170973 ], + [ 5.9838036, 46.2171113 ], + [ 5.9838629999999995, 46.2171084 ], + [ 5.98393, 46.2170959 ], + [ 5.9839686, 46.2171047 ], + [ 5.9839953, 46.2171199 ], + [ 5.9840260999999995, 46.2171952 ], + [ 5.9840518, 46.2172193 ], + [ 5.9841176, 46.2172192 ], + [ 5.9841359, 46.2172064 ], + [ 5.9841816, 46.2171897 ], + [ 5.9842176, 46.2171494 ], + [ 5.9842715, 46.2171313 ], + [ 5.9843386, 46.2170889 ], + [ 5.9843369, 46.2170313 ], + [ 5.9843208, 46.2169654 ], + [ 5.9843551, 46.2169192 ], + [ 5.9844903, 46.2168547 ], + [ 5.9845739, 46.216873 ], + [ 5.9846449, 46.2169849 ], + [ 5.9846338, 46.2170633 ], + [ 5.9846526, 46.2171044 ], + [ 5.9847171, 46.2171295 ], + [ 5.9847786, 46.2171304 ], + [ 5.9848269, 46.2170894 ], + [ 5.9849089, 46.2169882 ], + [ 5.9849785, 46.2169551 ], + [ 5.985087, 46.2169492 ], + [ 5.9851376, 46.2169606 ], + [ 5.9851878, 46.2169447 ], + [ 5.9852469, 46.2169367 ], + [ 5.9853109, 46.2169186 ], + [ 5.985478, 46.2169 ], + [ 5.9855584, 46.2169012 ], + [ 5.9856443, 46.2168462 ], + [ 5.985734, 46.2167632 ], + [ 5.9858088, 46.2167596 ], + [ 5.9859398, 46.2167902 ], + [ 5.9860515, 46.216841 ], + [ 5.9861312, 46.2168435 ], + [ 5.9862076, 46.2168109 ], + [ 5.9862902, 46.2167921 ], + [ 5.9864297, 46.2167851 ], + [ 5.9866364, 46.2167881 ], + [ 5.9867642, 46.216738 ], + [ 5.9868656, 46.2166648 ], + [ 5.9870004, 46.2166823 ], + [ 5.9871308, 46.216727 ], + [ 5.9873981, 46.2167416 ], + [ 5.9874548999999995, 46.2167235 ], + [ 5.9875342, 46.2167119 ], + [ 5.9876423, 46.216665 ], + [ 5.9876979, 46.216589 ], + [ 5.9877269, 46.2165281 ], + [ 5.9877736, 46.2164867 ], + [ 5.9878537, 46.2164537 ], + [ 5.9879065, 46.2164724 ], + [ 5.9880551, 46.2164547 ], + [ 5.9881388, 46.2164152 ], + [ 5.9881963, 46.2164049 ], + [ 5.9882549, 46.2163738 ], + [ 5.9883795, 46.2162613 ], + [ 5.988475, 46.216205 ], + [ 5.9885814, 46.2161744 ], + [ 5.9886296, 46.2161445 ], + [ 5.9888109, 46.2160862 ], + [ 5.9888995, 46.216072 ], + [ 5.9889395, 46.2160762 ], + [ 5.9889875, 46.2160741 ], + [ 5.9890639, 46.2160892 ], + [ 5.9891395, 46.216117 ], + [ 5.9892282, 46.2161317 ], + [ 5.9893631, 46.2161634 ], + [ 5.9895405, 46.2161683 ], + [ 5.9896477, 46.2161958 ], + [ 5.989703, 46.2161997 ], + [ 5.9897361, 46.2161848 ], + [ 5.9898763, 46.2160368 ], + [ 5.9899088, 46.2159867 ], + [ 5.9899927, 46.215928 ], + [ 5.9900476, 46.215899 ], + [ 5.9901029, 46.2158967 ], + [ 5.9901386, 46.2159087 ], + [ 5.9901883, 46.2159386 ], + [ 5.9902356999999995, 46.2159532 ], + [ 5.990296, 46.2159556 ], + [ 5.9903555, 46.2159368 ], + [ 5.9905112, 46.215854 ], + [ 5.990539, 46.2158179 ], + [ 5.9906017, 46.2157876 ], + [ 5.9907025, 46.215758 ], + [ 5.9908142, 46.2157674 ], + [ 5.9908938, 46.2157982 ], + [ 5.9910271, 46.2158334 ], + [ 5.9911598999999995, 46.2158289 ], + [ 5.9912036, 46.2158202 ], + [ 5.9912482, 46.2157936 ], + [ 5.9912791, 46.2157484 ], + [ 5.9912875, 46.2157026 ], + [ 5.9913136, 46.2156368 ], + [ 5.9913335, 46.2156146 ], + [ 5.991422, 46.2154828 ], + [ 5.9914784999999995, 46.2154617 ], + [ 5.9915258, 46.2154521 ], + [ 5.9916192, 46.215463 ], + [ 5.9917234, 46.2154903 ], + [ 5.9917827, 46.21551 ], + [ 5.9918567, 46.2155284 ], + [ 5.9918933, 46.2155325 ], + [ 5.9919454, 46.2155338 ], + [ 5.9920493, 46.2155002 ], + [ 5.9921312, 46.2154505 ], + [ 5.9921657, 46.2154221 ], + [ 5.9922367, 46.2153768 ], + [ 5.9923986, 46.2152886 ], + [ 5.9924162, 46.2152839 ], + [ 5.9924766, 46.2152459 ], + [ 5.9925059, 46.2152343 ], + [ 5.9926209, 46.215224 ], + [ 5.9926354, 46.2152303 ], + [ 5.9927123, 46.2152274 ], + [ 5.9927752, 46.2152213 ], + [ 5.9929988, 46.2156046 ], + [ 5.9932726, 46.2162826 ], + [ 5.99334, 46.2166935 ], + [ 5.9936539, 46.2173135 ], + [ 5.9935514, 46.2178984 ], + [ 5.9934277, 46.2181846 ], + [ 5.9929065999999995, 46.2190356 ], + [ 5.9915939, 46.2198115 ], + [ 5.9914112, 46.2200066 ], + [ 5.9912677, 46.2202628 ], + [ 5.9910801, 46.2208103 ], + [ 5.9908983, 46.2211293 ], + [ 5.9906588, 46.2214268 ], + [ 5.9901875, 46.221719 ], + [ 5.9928517, 46.2229537 ], + [ 5.9929159, 46.222962 ], + [ 5.9929448999999995, 46.2229605 ], + [ 5.9929726, 46.2229539 ], + [ 5.9929912, 46.222941 ], + [ 5.9930679, 46.2229081 ], + [ 5.9931157, 46.2228939 ], + [ 5.9931677, 46.2228893 ], + [ 5.9932247, 46.2228655 ], + [ 5.9932937, 46.2228116 ], + [ 5.993335, 46.2228017 ], + [ 5.9933657, 46.2227797 ], + [ 5.9933957, 46.2227755 ], + [ 5.9934098, 46.2227615 ], + [ 5.9934218999999995, 46.2227116 ], + [ 5.993473, 46.2226908 ], + [ 5.9935322, 46.2226837 ], + [ 5.9936202, 46.2226834 ], + [ 5.9937097, 46.2226698 ], + [ 5.9937639, 46.2226428 ], + [ 5.9938986, 46.2225948 ], + [ 5.9939951, 46.2225729 ], + [ 5.9940505, 46.2225175 ], + [ 5.9940659, 46.2225083 ], + [ 5.9941189999999995, 46.222486 ], + [ 5.9941789, 46.2224776 ], + [ 5.9942785, 46.2224296 ], + [ 5.9943195, 46.2224256 ], + [ 5.9943618, 46.2224257 ], + [ 5.994607, 46.2224357 ], + [ 5.9946946, 46.2224471 ], + [ 5.9948426999999995, 46.2225189 ], + [ 5.9949281, 46.2225054 ], + [ 5.9950214, 46.222517 ], + [ 5.9950444, 46.2225231 ], + [ 5.9951169, 46.2225654 ], + [ 5.9951812, 46.2225909 ], + [ 5.9952684, 46.2225942 ], + [ 5.9955096, 46.2225469 ], + [ 5.9957952, 46.2224728 ], + [ 5.9961227, 46.2223553 ], + [ 5.9963725, 46.2223534 ], + [ 5.9965532, 46.2223084 ], + [ 5.9967724, 46.2222905 ], + [ 5.9968486, 46.2223149 ], + [ 5.9970293, 46.2223406 ], + [ 5.9972843, 46.2222987 ], + [ 5.9973743, 46.2222998 ], + [ 5.9974796999999995, 46.2222665 ], + [ 5.9975688, 46.2222682 ], + [ 5.9976685, 46.2222291 ], + [ 5.9977708, 46.2222042 ], + [ 5.9978117, 46.2221663 ], + [ 5.997847, 46.2221512 ], + [ 5.9978911, 46.2221425 ], + [ 5.9979482, 46.2221427 ], + [ 5.9980179, 46.2221376 ], + [ 5.9980689, 46.2221079 ], + [ 5.9981329, 46.2220835 ], + [ 5.9983454, 46.2219824 ], + [ 5.9984825, 46.2219264 ], + [ 5.998518, 46.2219022 ], + [ 5.9986124, 46.2218474 ], + [ 5.9986856, 46.2217477 ], + [ 5.9987682, 46.2216805 ], + [ 5.9988198, 46.2216587 ], + [ 5.9988604, 46.2216336 ], + [ 5.9989801, 46.2216296 ], + [ 5.9990994, 46.221618 ], + [ 5.9991483, 46.2215925 ], + [ 5.9991631, 46.2215545 ], + [ 5.9992147, 46.2214892 ], + [ 5.9992324, 46.2214552 ], + [ 5.9992536, 46.2214298 ], + [ 5.9993528, 46.2213575 ], + [ 5.9994248, 46.2212624 ], + [ 5.9994807, 46.2211958 ], + [ 5.9995037, 46.2211212 ], + [ 5.9995027, 46.2210921 ], + [ 5.9995743, 46.2210954 ], + [ 6.0000253, 46.2200551 ], + [ 6.0000357, 46.220031 ], + [ 6.0001703, 46.2200702 ], + [ 6.000294, 46.2201251 ], + [ 6.0003737, 46.2201404 ], + [ 6.0006538, 46.2202338 ], + [ 6.0011114, 46.2203933 ], + [ 6.0013279, 46.2204274 ], + [ 6.0015392, 46.2205001 ], + [ 6.0016575, 46.2205923 ], + [ 6.0017956, 46.220721 ], + [ 6.0020139, 46.2211222 ], + [ 6.0021435, 46.2212857 ], + [ 6.0023161, 46.2215284 ], + [ 6.0025262, 46.2217746 ], + [ 6.0025687, 46.2219072 ], + [ 6.0026095, 46.2219706 ], + [ 6.00275, 46.2221247 ], + [ 6.0027811, 46.2221441 ], + [ 6.0028532, 46.2222231 ], + [ 6.0029068, 46.2223109 ], + [ 6.0030583, 46.2224204 ], + [ 6.0031216, 46.2224874 ], + [ 6.0031937, 46.2225293 ], + [ 6.0032124, 46.2225607 ], + [ 6.0035148, 46.2227755 ], + [ 6.003644, 46.2228217 ], + [ 6.0037771, 46.2229047 ], + [ 6.0040387, 46.2230297 ], + [ 6.0040688, 46.2230292 ], + [ 6.0042382, 46.2231332 ], + [ 6.0043126, 46.2231752 ], + [ 6.0044138, 46.2232514 ], + [ 6.004606, 46.2233499 ], + [ 6.0047535, 46.2233958 ], + [ 6.0048735, 46.2234468 ], + [ 6.0050996, 46.2234975 ], + [ 6.0052303, 46.2235388 ], + [ 6.0053405, 46.2235602 ], + [ 6.0054621, 46.2236098 ], + [ 6.0055524, 46.2236285 ], + [ 6.0056521, 46.2236396 ], + [ 6.0057434, 46.223684 ], + [ 6.0058041, 46.2237035 ], + [ 6.0058301, 46.2237068 ], + [ 6.0058619, 46.2236992 ], + [ 6.0059429, 46.2237165 ], + [ 6.0060343, 46.2237219 ], + [ 6.0060984, 46.2237165 ], + [ 6.006124, 46.2237311 ], + [ 6.0062112, 46.2237307 ], + [ 6.0062568, 46.2237428 ], + [ 6.0064305, 46.2237486 ], + [ 6.0065597, 46.2237723 ], + [ 6.0066389, 46.2238049 ], + [ 6.0068684, 46.2238369 ], + [ 6.0069121, 46.2238536 ], + [ 6.0070111, 46.2238493 ], + [ 6.0070433, 46.2238301 ], + [ 6.0071079, 46.2238381 ], + [ 6.0071567, 46.223872 ], + [ 6.0071889, 46.2238809 ], + [ 6.0072403, 46.2239357 ], + [ 6.0072433, 46.2239664 ], + [ 6.0072098, 46.2239776 ], + [ 6.007136, 46.224239 ], + [ 6.0070461, 46.2243727 ], + [ 6.0070148, 46.2244496 ], + [ 6.0070021, 46.2244969 ], + [ 6.0070016, 46.2245879 ], + [ 6.007029, 46.2246469 ], + [ 6.0070377, 46.2249968 ], + [ 6.0070238, 46.2250334 ], + [ 6.0069929, 46.2253687 ], + [ 6.006975, 46.2253884 ], + [ 6.0069701, 46.2255491 ], + [ 6.0069495, 46.2255989 ], + [ 6.0068879, 46.2256934 ], + [ 6.0066912, 46.2259159 ], + [ 6.0066266, 46.2260206 ], + [ 6.0065939, 46.2261904 ], + [ 6.0065717, 46.226232 ], + [ 6.0065806, 46.2263522 ], + [ 6.0065594, 46.2264691 ], + [ 6.006571, 46.226541 ], + [ 6.006618, 46.2266148 ], + [ 6.0067215, 46.2266743 ], + [ 6.0067787, 46.2266884 ], + [ 6.0069037, 46.2266698 ], + [ 6.0071479, 46.2265727 ], + [ 6.0071778, 46.226554 ], + [ 6.0073358, 46.2265181 ], + [ 6.0074307, 46.2264736 ], + [ 6.007524, 46.2264566 ], + [ 6.0077427, 46.2263951 ], + [ 6.0079042, 46.2263871 ], + [ 6.008061, 46.2264017 ], + [ 6.0082051, 46.2264357 ], + [ 6.0082861, 46.2264692 ], + [ 6.0084642, 46.2265711 ], + [ 6.0085738, 46.2266257 ], + [ 6.0086045, 46.2266481 ], + [ 6.0086883, 46.2266765 ], + [ 6.008839, 46.226753 ], + [ 6.009044, 46.2268269 ], + [ 6.009136, 46.2268888 ], + [ 6.0092089, 46.2269211 ], + [ 6.009402, 46.2270334 ], + [ 6.0094846, 46.2270984 ], + [ 6.0096573, 46.2272172 ], + [ 6.0097473, 46.2272702 ], + [ 6.0099267, 46.2274204 ], + [ 6.0099803, 46.2274782 ], + [ 6.0100563, 46.2275937 ], + [ 6.0101139, 46.227705 ], + [ 6.0102123, 46.2278191 ], + [ 6.0102574, 46.2278813 ], + [ 6.0102671, 46.2279369 ], + [ 6.010256, 46.2279904 ], + [ 6.010206, 46.2280739 ], + [ 6.0100525, 46.2281762 ], + [ 6.0099318, 46.2282724 ], + [ 6.0098103, 46.2283993 ], + [ 6.0096882, 46.2285014 ], + [ 6.0096078, 46.2285562 ], + [ 6.0095625, 46.22861 ], + [ 6.0095073, 46.2287259 ], + [ 6.0094882, 46.2288525 ], + [ 6.0095612, 46.2289952 ], + [ 6.0096926, 46.2290447 ], + [ 6.009805, 46.2290458 ], + [ 6.0099359, 46.2290248 ], + [ 6.0100272, 46.2290055 ], + [ 6.0100513, 46.2289912 ], + [ 6.0101136, 46.2289757 ], + [ 6.010144, 46.2289732 ], + [ 6.0102218, 46.2289343 ], + [ 6.0103099, 46.2289197 ], + [ 6.0103569, 46.2289039 ], + [ 6.0104188, 46.22887 ], + [ 6.0105796, 46.2288041 ], + [ 6.0108366, 46.228723 ], + [ 6.0108709, 46.2287046 ], + [ 6.0111441, 46.2286181 ], + [ 6.0113708, 46.2285852 ], + [ 6.0115559, 46.2285482 ], + [ 6.011777, 46.2285161 ], + [ 6.0118563, 46.2285176 ], + [ 6.0119183, 46.2285265 ], + [ 6.0120744, 46.2285133 ], + [ 6.0121302, 46.228493 ], + [ 6.0122301, 46.2284896 ], + [ 6.0122792, 46.2284806 ], + [ 6.0124915, 46.2285452 ], + [ 6.0125269, 46.228569 ], + [ 6.0125963, 46.2285898 ], + [ 6.0127852, 46.2286868 ], + [ 6.0128175, 46.2286889 ], + [ 6.0128478, 46.22871 ], + [ 6.0129186, 46.2287369 ], + [ 6.0129462, 46.2287365 ], + [ 6.013061, 46.2288404 ], + [ 6.0130955, 46.2288614 ], + [ 6.0132265, 46.2289712 ], + [ 6.013341, 46.2290533 ], + [ 6.0133888, 46.2291234 ], + [ 6.0134207, 46.2292322 ], + [ 6.0134071, 46.2294135 ], + [ 6.0133658, 46.2295348 ], + [ 6.0132981, 46.2296702 ], + [ 6.0132054, 46.2297953 ], + [ 6.0129503, 46.2299638 ], + [ 6.0127634, 46.2300584 ], + [ 6.0126207, 46.2301649 ], + [ 6.0125882, 46.2302085 ], + [ 6.0125516, 46.2303013 ], + [ 6.012649, 46.2306066 ], + [ 6.0127528, 46.2308049 ], + [ 6.0128385, 46.2309382 ], + [ 6.0129564, 46.2310491 ], + [ 6.0130929, 46.2311014 ], + [ 6.0131811, 46.231119 ], + [ 6.0133439, 46.231079 ], + [ 6.0135415, 46.2309937 ], + [ 6.0135856, 46.2309583 ], + [ 6.0137586, 46.2308523 ], + [ 6.0139233, 46.2307704 ], + [ 6.0140198, 46.2307294 ], + [ 6.0141265, 46.2307027 ], + [ 6.0147598, 46.2305027 ], + [ 6.014851, 46.2304681 ], + [ 6.0148835, 46.2304651 ], + [ 6.0149277, 46.2304671 ], + [ 6.0150509, 46.2304321 ], + [ 6.0151097, 46.2304227 ], + [ 6.0151603, 46.2304263 ], + [ 6.0152613, 46.2304427 ], + [ 6.0153675, 46.2304806 ], + [ 6.0154842, 46.2305507 ], + [ 6.0155684, 46.2306467 ], + [ 6.0156281, 46.2307354 ], + [ 6.0159036, 46.2310819 ], + [ 6.0159138, 46.2311115 ], + [ 6.0159383, 46.2311254 ], + [ 6.0159831, 46.2311772 ], + [ 6.015977, 46.2311909 ], + [ 6.0161417, 46.2313783 ], + [ 6.0161992, 46.2315273 ], + [ 6.0162092, 46.2315854 ], + [ 6.0162426, 46.2316421 ], + [ 6.0162563, 46.2316938 ], + [ 6.0162816, 46.2317545 ], + [ 6.0163956, 46.2319506 ], + [ 6.0164342, 46.2319842 ], + [ 6.0174177, 46.2315767 ], + [ 6.017431, 46.2315989 ], + [ 6.0175009, 46.2315845 ], + [ 6.017552, 46.2315673 ], + [ 6.0175773, 46.2315615 ], + [ 6.0176013, 46.2315655 ], + [ 6.0176139, 46.2315708 ], + [ 6.0176239, 46.2315892 ], + [ 6.0176293, 46.2316182 ], + [ 6.0176369, 46.2316201 ], + [ 6.0176824, 46.2316139 ], + [ 6.0177846, 46.2315796 ], + [ 6.018032, 46.2315701 ], + [ 6.0180815, 46.2316257 ], + [ 6.0181627, 46.2316331 ], + [ 6.0182641, 46.2316553 ], + [ 6.0184522, 46.2315714 ], + [ 6.0184837, 46.2315723 ], + [ 6.0184851, 46.2316556 ], + [ 6.0186756, 46.2316268 ], + [ 6.0188149, 46.2316337 ], + [ 6.0188353, 46.2316539 ], + [ 6.0187609, 46.2316969 ], + [ 6.0188292, 46.2317774 ], + [ 6.0189384, 46.2318119 ], + [ 6.0191858, 46.231804 ], + [ 6.0193734, 46.2318049 ], + [ 6.0193998, 46.2318266 ], + [ 6.0193673, 46.2318761 ], + [ 6.0194273, 46.2318822 ], + [ 6.0195263, 46.231767 ], + [ 6.0195961, 46.23175 ], + [ 6.0196485, 46.2317921 ], + [ 6.0197612, 46.231857 ], + [ 6.0198298, 46.2318188 ], + [ 6.019908, 46.2318333 ], + [ 6.0199528, 46.2318947 ], + [ 6.0200077, 46.2320443 ], + [ 6.0199841, 46.2321065 ], + [ 6.0199233, 46.2321566 ], + [ 6.0199702, 46.2321923 ], + [ 6.020103, 46.2321905 ], + [ 6.0201888, 46.2322397 ], + [ 6.0202407000000004, 46.2322465 ], + [ 6.0203819, 46.2321527 ], + [ 6.0206401, 46.2321791 ], + [ 6.0206577, 46.2322646 ], + [ 6.0207924, 46.2322984 ], + [ 6.0209396, 46.23229 ], + [ 6.0210089, 46.2323606 ], + [ 6.0210633, 46.2323638 ], + [ 6.0211728, 46.2323059 ], + [ 6.0214005, 46.2323071 ], + [ 6.0214313, 46.232321 ], + [ 6.0214028, 46.2324634 ], + [ 6.0214519, 46.2325343 ], + [ 6.0214568, 46.2326113 ], + [ 6.021559, 46.2326234 ], + [ 6.0216639, 46.2326242 ], + [ 6.0216831, 46.2326154 ], + [ 6.0217093, 46.2325922 ], + [ 6.0217896, 46.232551 ], + [ 6.0217984, 46.2325336 ], + [ 6.0218045, 46.2324949 ], + [ 6.021858, 46.2324691 ], + [ 6.0218717, 46.2324211 ], + [ 6.0218874, 46.232418 ], + [ 6.0219019, 46.232421 ], + [ 6.0219266, 46.2324463 ], + [ 6.0219498, 46.232486 ], + [ 6.0219768, 46.2324955 ], + [ 6.0220348, 46.2324859 ], + [ 6.022071, 46.2324724 ], + [ 6.0221275, 46.23248 ], + [ 6.0222003, 46.2324566 ], + [ 6.0222143, 46.2324588 ], + [ 6.02228, 46.2325894 ], + [ 6.0223446, 46.232639 ], + [ 6.0224103, 46.2326415 ], + [ 6.0224778, 46.2326141 ], + [ 6.0225775, 46.2325962 ], + [ 6.0226021, 46.2325955 ], + [ 6.022805, 46.2326462 ], + [ 6.022944, 46.2326733 ], + [ 6.0231118, 46.2326815 ], + [ 6.0231281, 46.2327014 ], + [ 6.023145, 46.2327631 ], + [ 6.0231687, 46.2328108 ], + [ 6.0231882, 46.2328375 ], + [ 6.0232001, 46.2328777 ], + [ 6.0232337, 46.2329118 ], + [ 6.0232967, 46.2329459 ], + [ 6.0233589, 46.2329865 ], + [ 6.0234105, 46.2329919 ], + [ 6.0234214, 46.2330001 ], + [ 6.0234258, 46.2330371 ], + [ 6.0234388, 46.2330551 ], + [ 6.023558, 46.2330867 ], + [ 6.0236541, 46.2331254 ], + [ 6.0237198, 46.2331377 ], + [ 6.0238097, 46.2331222 ], + [ 6.0238894, 46.2331188 ], + [ 6.0239379, 46.2331255 ], + [ 6.0239642, 46.233122 ], + [ 6.0239813, 46.2330996 ], + [ 6.0240161, 46.2330914 ], + [ 6.0240541, 46.2330901 ], + [ 6.0241098, 46.2330971 ], + [ 6.0241755, 46.2330925 ], + [ 6.0242625, 46.2330566 ], + [ 6.0242948, 46.2330548 ], + [ 6.0244402, 46.2331099 ], + [ 6.0245443, 46.2331388 ], + [ 6.024612, 46.2331473 ], + [ 6.0246939, 46.2331218 ], + [ 6.0247543, 46.2330807 ], + [ 6.0248354, 46.2330798 ], + [ 6.0249009, 46.2330889 ], + [ 6.0249219, 46.2330945 ], + [ 6.0249663, 46.2331211 ], + [ 6.0250709, 46.233219 ], + [ 6.0253986, 46.2332002 ], + [ 6.0254959, 46.2332255 ], + [ 6.0255244, 46.2332625 ], + [ 6.0255671, 46.2332995 ], + [ 6.025625, 46.2333806 ], + [ 6.0256499, 46.2333892 ], + [ 6.0257142, 46.2334751 ], + [ 6.0257405, 46.2335491 ], + [ 6.0257298, 46.2336848 ], + [ 6.0258184, 46.2339004 ], + [ 6.0258276, 46.2339854 ], + [ 6.0258751, 46.234085 ], + [ 6.0259696, 46.2341472 ], + [ 6.0260842, 46.2341831 ], + [ 6.0261921, 46.2342372 ], + [ 6.0263371, 46.2343385 ], + [ 6.0264385, 46.2343526 ], + [ 6.0266433, 46.2343066 ], + [ 6.0268372, 46.2342426 ], + [ 6.0269094, 46.234258 ], + [ 6.0269722, 46.2342779 ], + [ 6.0276074, 46.2347409 ], + [ 6.0286891, 46.2352351 ], + [ 6.0293611, 46.2357188 ], + [ 6.0301344, 46.2364528 ], + [ 6.0322383, 46.2375954 ], + [ 6.0336528, 46.2385514 ], + [ 6.0388915, 46.2351721 ], + [ 6.0421279, 46.233309 ], + [ 6.0461113, 46.2313935 ], + [ 6.046147, 46.2314222 ], + [ 6.0462191, 46.2314958 ], + [ 6.0463245, 46.2316406 ], + [ 6.0465269, 46.2319315 ], + [ 6.0472802, 46.2330956 ], + [ 6.0474518, 46.2334037 ], + [ 6.047666, 46.2332938 ], + [ 6.0479287, 46.2331719 ], + [ 6.0480063, 46.2331499 ], + [ 6.0480296, 46.2331599 ], + [ 6.0482131, 46.2333114 ], + [ 6.0484784, 46.2334811 ], + [ 6.0490088, 46.2338817 ], + [ 6.0495062, 46.234289 ], + [ 6.0495621, 46.2343822 ], + [ 6.0496731, 46.2345281 ], + [ 6.049662, 46.2345461 ], + [ 6.0499857, 46.2348651 ], + [ 6.0502982, 46.2351392 ], + [ 6.0505964, 46.2355373 ], + [ 6.0507172, 46.2357205 ], + [ 6.0508327, 46.2358635 ], + [ 6.0510762, 46.2364666 ], + [ 6.0511618, 46.2365725 ], + [ 6.0512473, 46.2367278 ], + [ 6.0513331, 46.2369085 ], + [ 6.0515039999999996, 46.2371682 ], + [ 6.0515763, 46.2372859 ], + [ 6.0517014, 46.2374709 ], + [ 6.0517194, 46.2375501 ], + [ 6.0518702, 46.2377365 ], + [ 6.0520151, 46.2378901 ], + [ 6.0521554, 46.2380967 ], + [ 6.0520902, 46.2382323 ], + [ 6.0527063, 46.2388075 ], + [ 6.0534633, 46.2395353 ], + [ 6.0534495, 46.2395413 ], + [ 6.054526, 46.2405109 ], + [ 6.0546363, 46.2404882 ], + [ 6.0558876, 46.2416581 ], + [ 6.0564093, 46.2419009 ], + [ 6.0571247, 46.2421743 ], + [ 6.0577615, 46.2426261 ], + [ 6.0580414, 46.2428496 ], + [ 6.0582099, 46.2430367 ], + [ 6.0586824, 46.2436021 ], + [ 6.0590773, 46.2439353 ], + [ 6.0601074, 46.2448406 ], + [ 6.0604109, 46.2450089 ], + [ 6.0609013, 46.2450792 ], + [ 6.0614217, 46.2450861 ], + [ 6.0622245, 46.2454136 ], + [ 6.0633459, 46.2458015 ], + [ 6.0636433, 46.2454185 ], + [ 6.0636699, 46.2453703 ], + [ 6.0637606, 46.2452682 ], + [ 6.0637511, 46.2452516 ], + [ 6.0637844, 46.2452287 ], + [ 6.0638216, 46.2451589 ], + [ 6.0638742, 46.2451107 ], + [ 6.0638658, 46.2450892 ], + [ 6.0639033, 46.2450545 ], + [ 6.0639338, 46.2450323 ], + [ 6.0640205, 46.2449075 ], + [ 6.0640665, 46.244823 ], + [ 6.0640692, 46.2448013 ], + [ 6.0640982, 46.2447852 ], + [ 6.0641327, 46.2447243 ], + [ 6.0641443, 46.2446553 ], + [ 6.0642072, 46.2446488 ], + [ 6.0643073, 46.2445843 ], + [ 6.0643463, 46.2445853 ], + [ 6.0643553, 46.2445363 ], + [ 6.0644155, 46.244512 ], + [ 6.0644259, 46.2444836 ], + [ 6.0644792, 46.2444626 ], + [ 6.0645274, 46.2444038 ], + [ 6.0645674, 46.2443248 ], + [ 6.0646372, 46.244289 ], + [ 6.0647406, 46.2442598 ], + [ 6.0647891, 46.2441977 ], + [ 6.0648265, 46.2441852 ], + [ 6.0648681, 46.2441311 ], + [ 6.0649321, 46.2440957 ], + [ 6.0649519, 46.2440512 ], + [ 6.0649727, 46.2440523 ], + [ 6.0650015, 46.2440235 ], + [ 6.0650067, 46.2439784 ], + [ 6.0650749, 46.2439501 ], + [ 6.0651447, 46.2438847 ], + [ 6.0651785, 46.2438375 ], + [ 6.0652108, 46.2437996 ], + [ 6.0652008, 46.2437776 ], + [ 6.0653274, 46.2436616 ], + [ 6.0653233, 46.2436374 ], + [ 6.0653907, 46.2435952 ], + [ 6.0653677, 46.2435562 ], + [ 6.0654365, 46.2435237 ], + [ 6.065428, 46.2435045 ], + [ 6.065483, 46.2434189 ], + [ 6.0655561, 46.243376 ], + [ 6.0656342, 46.2433674 ], + [ 6.0656957, 46.2432425 ], + [ 6.0657233, 46.2432289 ], + [ 6.065728, 46.2432035 ], + [ 6.0658415, 46.2431566 ], + [ 6.0658657, 46.2431175 ], + [ 6.0659084, 46.2430991 ], + [ 6.0658686, 46.2430751 ], + [ 6.0658704, 46.2430562 ], + [ 6.0658322, 46.2430352 ], + [ 6.0658139, 46.2430069 ], + [ 6.0658668, 46.2429623 ], + [ 6.0659041, 46.24295 ], + [ 6.0659388, 46.2429102 ], + [ 6.0660038, 46.242883 ], + [ 6.0660301, 46.2428302 ], + [ 6.0661013, 46.2428074 ], + [ 6.0661636, 46.242831699999996 ], + [ 6.0661959, 46.2427762 ], + [ 6.066243, 46.2427887 ], + [ 6.0662557, 46.242743 ], + [ 6.0663007, 46.2427197 ], + [ 6.0663188, 46.2426707 ], + [ 6.066347, 46.2426383 ], + [ 6.0664106, 46.2426039 ], + [ 6.0664222, 46.2425717 ], + [ 6.0664655, 46.2425563 ], + [ 6.0665156, 46.2425595 ], + [ 6.0665196, 46.2425353 ], + [ 6.0665037, 46.2425106 ], + [ 6.0665169, 46.2424879 ], + [ 6.0665651, 46.2424928 ], + [ 6.0665715, 46.2424506 ], + [ 6.0666284, 46.2423886 ], + [ 6.0666615, 46.2423689 ], + [ 6.0666603, 46.2423396 ], + [ 6.0666745, 46.2423278 ], + [ 6.066696, 46.242279 ], + [ 6.0667318, 46.2422686 ], + [ 6.0667679, 46.2422707 ], + [ 6.0667799, 46.2422421 ], + [ 6.0668011, 46.2422163 ], + [ 6.0668449, 46.2421812 ], + [ 6.0668766, 46.242186 ], + [ 6.066906, 46.2421274 ], + [ 6.0669322, 46.2421283 ], + [ 6.0669304, 46.2420919 ], + [ 6.0669558, 46.2420794 ], + [ 6.0670111, 46.2420176 ], + [ 6.0670686, 46.2419979 ], + [ 6.0670708, 46.2419666 ], + [ 6.0670926, 46.2419385 ], + [ 6.0671599, 46.2419158 ], + [ 6.0671689, 46.2419019 ], + [ 6.0671612, 46.2418644 ], + [ 6.067198, 46.2418596 ], + [ 6.0672163, 46.2418343 ], + [ 6.0672476, 46.2418271 ], + [ 6.0672755, 46.2418078 ], + [ 6.0672862, 46.241782 ], + [ 6.0676184, 46.2418802 ], + [ 6.0681971, 46.2419742 ], + [ 6.0695519, 46.2411669 ], + [ 6.0702184, 46.2416878 ], + [ 6.0708998, 46.2413098 ], + [ 6.0713826, 46.2416815 ], + [ 6.0718096, 46.2421922 ], + [ 6.0730249, 46.2413491 ], + [ 6.0734816, 46.2419468 ], + [ 6.0737633, 46.2422862 ], + [ 6.0728169, 46.2431134 ], + [ 6.0735362, 46.2437118 ], + [ 6.073869, 46.2437232 ], + [ 6.0748673, 46.2435626 ], + [ 6.0751722, 46.2437953 ], + [ 6.0755552, 46.24359 ], + [ 6.077155, 46.2446706 ], + [ 6.0778291, 46.2442293 ], + [ 6.0783916, 46.2445905 ], + [ 6.0785078, 46.2446623 ], + [ 6.0787631, 46.2448944 ], + [ 6.0789671, 46.2450367 ], + [ 6.0791897, 46.2451601 ], + [ 6.079402, 46.2453038 ], + [ 6.0795252, 46.2454037 ], + [ 6.0807437, 46.2455991 ], + [ 6.0819587, 46.245799 ], + [ 6.0825169, 46.2453925 ], + [ 6.0825741, 46.2454306 ], + [ 6.0827952, 46.2455994 ], + [ 6.0828164, 46.2456266 ], + [ 6.0828344, 46.2456642 ], + [ 6.0828503, 46.2457475 ], + [ 6.0828659, 46.2457947 ], + [ 6.0828875, 46.2458343 ], + [ 6.0829304, 46.2458954 ], + [ 6.082991, 46.2459674 ], + [ 6.0831082, 46.2460817 ], + [ 6.083163, 46.2461416 ], + [ 6.0833444, 46.246323 ], + [ 6.0834455, 46.2464193 ], + [ 6.083612, 46.2465657 ], + [ 6.083652, 46.2465944 ], + [ 6.0836891, 46.2466271 ], + [ 6.0838484, 46.2467277 ], + [ 6.0838963, 46.2467513 ], + [ 6.0840612, 46.2468503 ], + [ 6.0841533, 46.2468979 ], + [ 6.0843393, 46.247006 ], + [ 6.084392, 46.247022 ], + [ 6.0844081, 46.2470154 ], + [ 6.0855304, 46.2462011 ], + [ 6.0856184, 46.2461144 ], + [ 6.0856314, 46.2460814 ], + [ 6.0855401, 46.2459637 ], + [ 6.0880561, 46.2471256 ], + [ 6.0881535, 46.2462973 ], + [ 6.0885125, 46.2458806 ], + [ 6.0906864, 46.2451252 ], + [ 6.0923284, 46.2438178 ], + [ 6.092386, 46.2436966 ], + [ 6.0933298, 46.2429003 ], + [ 6.0935385, 46.2430443 ], + [ 6.0950282, 46.24194 ], + [ 6.0954361, 46.2416261 ], + [ 6.0970018, 46.2405119 ], + [ 6.0990618, 46.2390648 ], + [ 6.1014504, 46.2376466 ], + [ 6.1018122, 46.237879 ], + [ 6.1054739, 46.2402307 ], + [ 6.1068531, 46.2411708 ], + [ 6.1088274, 46.2398703 ], + [ 6.1207862, 46.2480154 ], + [ 6.1202939, 46.248503 ], + [ 6.1209109999999995, 46.2488307 ], + [ 6.1235784, 46.2506481 ], + [ 6.1244681, 46.2512542 ], + [ 6.1238428, 46.2518371 ], + [ 6.1244574, 46.2525925 ], + [ 6.1242787, 46.25264 ], + [ 6.1240898, 46.2526655 ], + [ 6.1240684, 46.2526436 ], + [ 6.1239958, 46.252611 ], + [ 6.123916, 46.2526081 ], + [ 6.123808, 46.2526778 ], + [ 6.1236425, 46.2526939 ], + [ 6.123459, 46.2527183 ], + [ 6.1234377, 46.2528245 ], + [ 6.123343, 46.2529061 ], + [ 6.1231569, 46.252902399999996 ], + [ 6.1230792, 46.2529192 ], + [ 6.1230379, 46.2529916 ], + [ 6.1230822, 46.2530888 ], + [ 6.1230468, 46.2531334 ], + [ 6.122585, 46.2532727 ], + [ 6.1223108, 46.2533881 ], + [ 6.1222386, 46.2534134 ], + [ 6.1221538, 46.2533991 ], + [ 6.1221088, 46.2534099 ], + [ 6.1219975, 46.2534763 ], + [ 6.1219844, 46.2535007 ], + [ 6.1218126999999996, 46.2536022 ], + [ 6.1217533, 46.2535974 ], + [ 6.1213781, 46.2538946 ], + [ 6.1212885, 46.2538912 ], + [ 6.1212032, 46.2539695 ], + [ 6.1211332, 46.2541331 ], + [ 6.1210803, 46.2541502 ], + [ 6.1210416, 46.2542805 ], + [ 6.1210162, 46.2542909 ], + [ 6.1209503, 46.2543992 ], + [ 6.1208879, 46.254436 ], + [ 6.1208295, 46.2545556 ], + [ 6.1209032, 46.2549074 ], + [ 6.1208203, 46.2549268 ], + [ 6.1208302, 46.2549668 ], + [ 6.121041, 46.2551323 ], + [ 6.1211005, 46.2552253 ], + [ 6.1212331, 46.2553535 ], + [ 6.1213407, 46.255498 ], + [ 6.1215318, 46.2557281 ], + [ 6.1216084, 46.2557957 ], + [ 6.1219204, 46.2560436 ], + [ 6.1221232, 46.2560807 ], + [ 6.1221388, 46.2561087 ], + [ 6.1221761, 46.2561177 ], + [ 6.1222552, 46.2561191 ], + [ 6.1225016, 46.2561997 ], + [ 6.1226441, 46.2563724 ], + [ 6.1227526, 46.2564043 ], + [ 6.1227548, 46.2564516 ], + [ 6.1224929, 46.2566794 ], + [ 6.1223365, 46.2568466 ], + [ 6.122304, 46.2569325 ], + [ 6.1221788, 46.2570331 ], + [ 6.1219872, 46.2572356 ], + [ 6.121996, 46.2572662 ], + [ 6.1218599, 46.257334 ], + [ 6.1217704, 46.2574561 ], + [ 6.1215894, 46.2576339 ], + [ 6.121514, 46.2577022 ], + [ 6.1215556, 46.2577217 ], + [ 6.1217464, 46.2578519 ], + [ 6.122044, 46.2580083 ], + [ 6.1221636, 46.258031 ], + [ 6.122535, 46.2581781 ], + [ 6.1197471, 46.260839 ], + [ 6.1193068, 46.2612592 ], + [ 6.1200569, 46.2616569 ], + [ 6.1180828, 46.2634483 ], + [ 6.1200791, 46.2646468 ], + [ 6.119982, 46.2648305 ], + [ 6.1197197, 46.264932 ], + [ 6.1196599, 46.2649522 ], + [ 6.1190796, 46.2651776 ], + [ 6.1187778, 46.26531 ], + [ 6.1181524, 46.2655438 ], + [ 6.1180525, 46.2655956 ], + [ 6.1176968, 46.2657366 ], + [ 6.1173169, 46.2658815 ], + [ 6.1171881, 46.2659156 ], + [ 6.1166257, 46.2661207 ], + [ 6.1164283, 46.2661866 ], + [ 6.116353, 46.266196 ], + [ 6.1162758, 46.266242 ], + [ 6.1162109, 46.2662853 ], + [ 6.1154257, 46.2659423 ], + [ 6.1134746, 46.2677003 ], + [ 6.1116545, 46.269039 ], + [ 6.1118954, 46.2691688 ], + [ 6.1098993, 46.2705746 ], + [ 6.1100458, 46.2706501 ], + [ 6.1105033, 46.2709016 ], + [ 6.1116099, 46.2715691 ], + [ 6.1123789, 46.2719922 ], + [ 6.1127763, 46.2721593 ], + [ 6.1128308, 46.272164 ], + [ 6.1128426, 46.2722605 ], + [ 6.1132598, 46.2723684 ], + [ 6.1135142, 46.2725525 ], + [ 6.1116593, 46.2733073 ], + [ 6.1117961, 46.2735014 ], + [ 6.1111706, 46.2737133 ], + [ 6.111132, 46.2740122 ], + [ 6.1102425, 46.2741817 ], + [ 6.1102827, 46.27435 ], + [ 6.1101773, 46.2743813 ], + [ 6.1100527, 46.2744618 ], + [ 6.109908, 46.2745105 ], + [ 6.1097508, 46.2745481 ], + [ 6.109644, 46.2745975 ], + [ 6.1095548, 46.2746578 ], + [ 6.1095042, 46.2746666 ], + [ 6.1091206, 46.2747582 ], + [ 6.1090154, 46.2747677 ], + [ 6.1089766, 46.2747672 ], + [ 6.1088583, 46.2747785 ], + [ 6.1088383, 46.2747769 ], + [ 6.1087973, 46.2747426 ], + [ 6.1086457, 46.2747687 ], + [ 6.1085915, 46.2747309 ], + [ 6.108534, 46.274742 ], + [ 6.1084997, 46.2748177 ], + [ 6.1084098000000004, 46.2748343 ], + [ 6.1083707, 46.2749267 ], + [ 6.1082097, 46.2749635 ], + [ 6.1082377, 46.275066699999996 ], + [ 6.1081306, 46.2750965 ], + [ 6.1080821, 46.2751468 ], + [ 6.1080206, 46.275229 ], + [ 6.1079174, 46.2753379 ], + [ 6.1079222, 46.2753845 ], + [ 6.1078721, 46.2754282 ], + [ 6.107906, 46.2754855 ], + [ 6.1078551, 46.2755154 ], + [ 6.1078715, 46.2755814 ], + [ 6.1078168, 46.2755856 ], + [ 6.1077815, 46.2756529 ], + [ 6.1077876, 46.2757186 ], + [ 6.1077234, 46.2757777 ], + [ 6.1077047, 46.2758715 ], + [ 6.1076516, 46.275874 ], + [ 6.1076553, 46.2759452 ], + [ 6.107638, 46.2760345 ], + [ 6.1075612, 46.2760648 ], + [ 6.1075597, 46.2761406 ], + [ 6.1074976, 46.2762084 ], + [ 6.1074422, 46.2762167 ], + [ 6.1074463, 46.2762608 ], + [ 6.1073211, 46.2764021 ], + [ 6.1072811, 46.2763681 ], + [ 6.1072335, 46.2763784 ], + [ 6.1071678, 46.2764713 ], + [ 6.1071544, 46.2765376 ], + [ 6.1070458, 46.2766052 ], + [ 6.1070004, 46.2765982 ], + [ 6.1069696, 46.2766498 ], + [ 6.1068834, 46.2766906 ], + [ 6.1067323, 46.2767176 ], + [ 6.1067001, 46.2767508 ], + [ 6.1066253, 46.2767823 ], + [ 6.1065269, 46.27675 ], + [ 6.1063778, 46.276785 ], + [ 6.1062388, 46.2767237 ], + [ 6.1061585, 46.2767439 ], + [ 6.1060925, 46.2768418 ], + [ 6.106044, 46.2768482 ], + [ 6.1059885, 46.2768872 ], + [ 6.1058833, 46.2768746 ], + [ 6.1058306, 46.2768568 ], + [ 6.1057787, 46.2768997 ], + [ 6.105739, 46.2768658 ], + [ 6.1057079, 46.2768869 ], + [ 6.1056718, 46.2768747 ], + [ 6.105678, 46.2769345 ], + [ 6.1056211, 46.2770084 ], + [ 6.105651, 46.2770332 ], + [ 6.1056803, 46.2770403 ], + [ 6.1056566, 46.2771093 ], + [ 6.1056116, 46.2771161 ], + [ 6.1056321, 46.2772302 ], + [ 6.105559, 46.277304 ], + [ 6.1055413, 46.2773629 ], + [ 6.1054629, 46.277423 ], + [ 6.1053705, 46.2774596 ], + [ 6.1053503, 46.2775465 ], + [ 6.1052422, 46.2775881 ], + [ 6.105256, 46.2776476 ], + [ 6.1051711, 46.2777373 ], + [ 6.105157, 46.277788 ], + [ 6.105109, 46.2778341 ], + [ 6.1049946, 46.2779564 ], + [ 6.1050122, 46.2780088 ], + [ 6.1049214, 46.2780909 ], + [ 6.1048128, 46.2782344 ], + [ 6.1046281, 46.2783009 ], + [ 6.1041768, 46.2784194 ], + [ 6.1038095, 46.2785315 ], + [ 6.103464, 46.2786028 ], + [ 6.1033863, 46.2786472 ], + [ 6.1033577, 46.2786416 ], + [ 6.1032654, 46.2786655 ], + [ 6.1033649, 46.2788028 ], + [ 6.1037635, 46.279285 ], + [ 6.1039946, 46.2795815 ], + [ 6.1040356, 46.2796489 ], + [ 6.1040918, 46.2796945 ], + [ 6.1041584, 46.2798129 ], + [ 6.1041681, 46.2798479 ], + [ 6.1042044, 46.2798846 ], + [ 6.1042147, 46.2799251 ], + [ 6.1042454, 46.2799653 ], + [ 6.1042713, 46.2800301 ], + [ 6.1043422, 46.2801561 ], + [ 6.1044266, 46.2803242 ], + [ 6.1045177, 46.2805643 ], + [ 6.1045838, 46.2809539 ], + [ 6.1046391, 46.2811286 ], + [ 6.104663, 46.2813539 ], + [ 6.104713, 46.281554 ], + [ 6.1047206, 46.2817057 ], + [ 6.104709, 46.2819768 ], + [ 6.1046905, 46.2820917 ], + [ 6.1047955, 46.2823802 ], + [ 6.1048869, 46.2826045 ], + [ 6.1049769, 46.2827794 ], + [ 6.105084, 46.282961 ], + [ 6.1043704, 46.2835339 ], + [ 6.1046859, 46.2838472 ], + [ 6.1044257, 46.2842052 ], + [ 6.1044122, 46.28419 ], + [ 6.1036053, 46.2845408 ], + [ 6.1023904, 46.2849203 ], + [ 6.1023898, 46.2849398 ], + [ 6.1027779, 46.2850773 ], + [ 6.1031119, 46.2852996 ], + [ 6.1034992, 46.2855807 ], + [ 6.1038766, 46.2861488 ], + [ 6.1044152, 46.2865693 ], + [ 6.1045597, 46.2869407 ], + [ 6.1045403, 46.2869764 ], + [ 6.1060808, 46.2877665 ], + [ 6.1073653, 46.2886965 ], + [ 6.108873, 46.289345 ], + [ 6.1097753, 46.2901312 ], + [ 6.1116177, 46.291499 ], + [ 6.1122654, 46.2925588 ], + [ 6.1130502, 46.2932908 ], + [ 6.1127411, 46.2935255 ], + [ 6.1132572, 46.2941274 ], + [ 6.1139322, 46.2943443 ], + [ 6.1140755, 46.294716 ], + [ 6.1145487, 46.2944819 ], + [ 6.1146469, 46.2945259 ], + [ 6.1147735, 46.2945874 ], + [ 6.1150345, 46.2945306 ], + [ 6.1151963, 46.294474 ], + [ 6.1153084, 46.2944301 ], + [ 6.1154201, 46.2943545 ], + [ 6.1154518, 46.2943712 ], + [ 6.1155717, 46.2943307 ], + [ 6.1156476, 46.294311 ], + [ 6.115681, 46.2942698 ], + [ 6.1157716, 46.2942607 ], + [ 6.1158582, 46.294244 ], + [ 6.1159442, 46.2942104 ], + [ 6.115968, 46.2942178 ], + [ 6.1160335, 46.2941867 ], + [ 6.1160721, 46.2941441 ], + [ 6.1161312, 46.2941377 ], + [ 6.1161896, 46.2941053 ], + [ 6.1162292, 46.2940946 ], + [ 6.1162836, 46.2940399 ], + [ 6.1163176, 46.2940133 ], + [ 6.1163915, 46.2940323 ], + [ 6.1164738, 46.2940085 ], + [ 6.1165626, 46.2940152 ], + [ 6.1166359, 46.2940014 ], + [ 6.1167001, 46.2940285 ], + [ 6.1167411, 46.2940716 ], + [ 6.1167758, 46.2940918 ], + [ 6.116813, 46.2941426 ], + [ 6.1168786, 46.2941478 ], + [ 6.1169108, 46.2941946 ], + [ 6.1169127, 46.2942369 ], + [ 6.1170106, 46.294251 ], + [ 6.1170305, 46.2942774 ], + [ 6.1170765, 46.2942814 ], + [ 6.117206, 46.2943408 ], + [ 6.1172686, 46.2943759 ], + [ 6.1173098, 46.2943635 ], + [ 6.1173583, 46.2944054 ], + [ 6.11747, 46.294435 ], + [ 6.1175268, 46.2944586 ], + [ 6.1175816, 46.2944512 ], + [ 6.1176548, 46.2944841 ], + [ 6.1177074, 46.2944889 ], + [ 6.1178397, 46.2945439 ], + [ 6.1179238, 46.2945377 ], + [ 6.1180075, 46.294562 ], + [ 6.118044, 46.2945906 ], + [ 6.1181123, 46.2945667 ], + [ 6.1181605, 46.2945911 ], + [ 6.1182094, 46.2945825 ], + [ 6.1183005, 46.2945522 ], + [ 6.1183779, 46.2945547 ], + [ 6.1184577, 46.2945483 ], + [ 6.1185126, 46.2945277 ], + [ 6.1185582, 46.2945314 ], + [ 6.1186369, 46.2944903 ], + [ 6.118703, 46.2944806 ], + [ 6.1187519, 46.2944299 ], + [ 6.1188278, 46.294437 ], + [ 6.1189012, 46.2944256 ], + [ 6.1189319, 46.2944753 ], + [ 6.1190212, 46.2944515 ], + [ 6.1191131, 46.2944515 ], + [ 6.1191489, 46.2944108 ], + [ 6.1191882, 46.294402 ], + [ 6.1192222, 46.2944167 ], + [ 6.1192641, 46.2944116 ], + [ 6.119274, 46.2943792 ], + [ 6.1193008, 46.2943632 ], + [ 6.1193253, 46.294365 ], + [ 6.119344, 46.2943813 ], + [ 6.1193865, 46.2943838 ], + [ 6.1194339, 46.2943566 ], + [ 6.119484, 46.2943348 ], + [ 6.1196371, 46.2943172 ], + [ 6.1196747, 46.2943976 ], + [ 6.1197295, 46.2945461 ], + [ 6.1197318, 46.2946496 ], + [ 6.119779, 46.2947313 ], + [ 6.11978, 46.2948163 ], + [ 6.1197498, 46.2948851 ], + [ 6.1196078, 46.2949818 ], + [ 6.119464, 46.2950075 ], + [ 6.1192588, 46.2950625 ], + [ 6.1191869, 46.2951044 ], + [ 6.1190818, 46.2951405 ], + [ 6.1189592, 46.2951994 ], + [ 6.1188552, 46.2952959 ], + [ 6.1187926, 46.2953822 ], + [ 6.1186747, 46.2955949 ], + [ 6.1186679999999996, 46.2956669 ], + [ 6.1186561, 46.2957024 ], + [ 6.1185968, 46.2957797 ], + [ 6.1185612, 46.2959086 ], + [ 6.118598, 46.2959544 ], + [ 6.1186706, 46.2960083 ], + [ 6.1187082, 46.2960683 ], + [ 6.1187763, 46.2961253 ], + [ 6.1189205, 46.2962062 ], + [ 6.1191043, 46.2962833 ], + [ 6.1192727, 46.2963196 ], + [ 6.1193961, 46.2963586 ], + [ 6.119526, 46.2963703 ], + [ 6.1198657, 46.2964258 ], + [ 6.1199116, 46.2964256 ], + [ 6.1200633, 46.2964661 ], + [ 6.1201701, 46.2965266 ], + [ 6.1202699, 46.2965765 ], + [ 6.1203754, 46.2966459 ], + [ 6.1205095, 46.2967285 ], + [ 6.1207365, 46.2969109 ], + [ 6.1208702, 46.2970077 ], + [ 6.1208771, 46.2970727 ], + [ 6.1208661, 46.2971357 ], + [ 6.1206577, 46.2972977 ], + [ 6.1205179, 46.297397 ], + [ 6.1204774, 46.2974428 ], + [ 6.1204118, 46.2975171 ], + [ 6.1203242, 46.2975887 ], + [ 6.1201477, 46.2976637 ], + [ 6.1199277, 46.2978802 ], + [ 6.1199773, 46.298047 ], + [ 6.1200072, 46.2981326 ], + [ 6.1201658, 46.2982057 ], + [ 6.1202851, 46.2982783 ], + [ 6.1203989, 46.298353 ], + [ 6.1208205, 46.2985433 ], + [ 6.1209292, 46.2985854 ], + [ 6.1210651, 46.298611 ], + [ 6.1213487, 46.2987755 ], + [ 6.1215468, 46.2989234 ], + [ 6.1217038, 46.2989911 ], + [ 6.1217512, 46.2990372 ], + [ 6.1217918, 46.2991127 ], + [ 6.121784, 46.2994695 ], + [ 6.1217693, 46.2995636 ], + [ 6.1217901, 46.2996642 ], + [ 6.1217311, 46.2999014 ], + [ 6.1216381, 46.300072 ], + [ 6.1215415, 46.3002857 ], + [ 6.1214606, 46.3004124 ], + [ 6.1213986, 46.3005709 ], + [ 6.1213512, 46.3007587 ], + [ 6.1212952, 46.3008331 ], + [ 6.1212557, 46.3008542 ], + [ 6.1211064, 46.3008672 ], + [ 6.1209991, 46.3008391 ], + [ 6.1208676, 46.3008264 ], + [ 6.1207105, 46.3008312 ], + [ 6.1205086, 46.3008118 ], + [ 6.1202356, 46.3008127 ], + [ 6.1201555, 46.3008677 ], + [ 6.1199723, 46.300979 ], + [ 6.1198637, 46.3011217 ], + [ 6.1198407, 46.3011658 ], + [ 6.1196546, 46.3013353 ], + [ 6.1195252, 46.3014067 ], + [ 6.1193387, 46.3016156 ], + [ 6.1191147, 46.3018533 ], + [ 6.119059, 46.3020122 ], + [ 6.1190179, 46.3022607 ], + [ 6.1189772, 46.3024021 ], + [ 6.1189563, 46.3024595 ], + [ 6.1188485, 46.3026443 ], + [ 6.1187702999999996, 46.3028039 ], + [ 6.1187945, 46.3029534 ], + [ 6.11887, 46.3031242 ], + [ 6.1189705, 46.3032284 ], + [ 6.1191812, 46.3033765 ], + [ 6.1192969, 46.3034334 ], + [ 6.1197086, 46.3035702 ], + [ 6.1198831, 46.3036213 ], + [ 6.1199514, 46.3036281 ], + [ 6.1200198, 46.3036864 ], + [ 6.120037, 46.3037332 ], + [ 6.1200083, 46.3038418 ], + [ 6.1199573, 46.3038865 ], + [ 6.1199191, 46.3038991 ], + [ 6.1198027, 46.303911 ], + [ 6.1196962, 46.3038938 ], + [ 6.1196146, 46.3039462 ], + [ 6.1195437, 46.3040312 ], + [ 6.1195597, 46.3041893 ], + [ 6.1197315, 46.3043888 ], + [ 6.1198372, 46.3044945 ], + [ 6.1199504, 46.3045729 ], + [ 6.1201086, 46.3046358 ], + [ 6.1202487, 46.3047718 ], + [ 6.1202767, 46.3048357 ], + [ 6.1202919, 46.3049541 ], + [ 6.1202674, 46.3051174 ], + [ 6.120258, 46.3051553 ], + [ 6.1201903, 46.3051982 ], + [ 6.1199742, 46.305286100000004 ], + [ 6.1198671, 46.3052957 ], + [ 6.1196418, 46.3052688 ], + [ 6.1195236, 46.3053503 ], + [ 6.1194698, 46.3054677 ], + [ 6.1194437, 46.3055842 ], + [ 6.1194787, 46.3056796 ], + [ 6.1195128, 46.3057337 ], + [ 6.1196883, 46.3058797 ], + [ 6.1199215, 46.3060374 ], + [ 6.1201071, 46.3060441 ], + [ 6.120282, 46.3060089 ], + [ 6.1204041, 46.3059772 ], + [ 6.1204661, 46.3060086 ], + [ 6.1205413, 46.3060336 ], + [ 6.1205757, 46.3060601 ], + [ 6.1206285, 46.3061487 ], + [ 6.1206141, 46.3061828 ], + [ 6.1206618, 46.3062732 ], + [ 6.12067, 46.3064047 ], + [ 6.1206488, 46.3064665 ], + [ 6.1206509, 46.3066466 ], + [ 6.1206946, 46.3067003 ], + [ 6.1207608, 46.3067699 ], + [ 6.1207662, 46.3068139 ], + [ 6.1206174, 46.3070029 ], + [ 6.1205474, 46.3070996 ], + [ 6.1205686, 46.3071877 ], + [ 6.1205945, 46.3072729 ], + [ 6.1205886, 46.3073747 ], + [ 6.1205057, 46.307462 ], + [ 6.1204443, 46.3074892 ], + [ 6.1203185, 46.3075235 ], + [ 6.1201666, 46.3075547 ], + [ 6.1200295, 46.3075754 ], + [ 6.1197198, 46.3076352 ], + [ 6.1194332, 46.3076676 ], + [ 6.119298, 46.3077228 ], + [ 6.1192101, 46.3077641 ], + [ 6.1191907, 46.3078458 ], + [ 6.1192589, 46.3079663 ], + [ 6.1193401, 46.3080544 ], + [ 6.1194299, 46.3081604 ], + [ 6.119532, 46.3082646 ], + [ 6.1197366, 46.308306 ], + [ 6.1198404, 46.3083782 ], + [ 6.1198722, 46.3084213 ], + [ 6.1199036, 46.3085292 ], + [ 6.1199156, 46.3086326 ], + [ 6.1198919, 46.3087366 ], + [ 6.1198836, 46.3088508 ], + [ 6.1198953, 46.3089858 ], + [ 6.1199069, 46.309072 ], + [ 6.1198662, 46.309211 ], + [ 6.1198375, 46.3092814 ], + [ 6.1197728, 46.3093255 ], + [ 6.1197267, 46.3094278 ], + [ 6.1197274, 46.3094864 ], + [ 6.1197231, 46.3095367 ], + [ 6.1198743, 46.3096035 ], + [ 6.1200593, 46.3095954 ], + [ 6.12019, 46.3096277 ], + [ 6.120222, 46.3096605 ], + [ 6.1201995, 46.3097248 ], + [ 6.1200945, 46.3098208 ], + [ 6.1200287, 46.3098436 ], + [ 6.1198757, 46.3098855 ], + [ 6.1199006, 46.3099753 ], + [ 6.1199083, 46.3101154 ], + [ 6.1198786, 46.3102126 ], + [ 6.1197813, 46.3103131 ], + [ 6.1196927, 46.3103391 ], + [ 6.1195768, 46.3103781 ], + [ 6.1195457, 46.31042 ], + [ 6.1195444, 46.3104902 ], + [ 6.1197285, 46.3105443 ], + [ 6.1198237, 46.3105831 ], + [ 6.1198835, 46.3106295 ], + [ 6.1200412, 46.3108188 ], + [ 6.120083, 46.3110729 ], + [ 6.1200535, 46.31132 ], + [ 6.1200104, 46.3114172 ], + [ 6.1199957, 46.3115575 ], + [ 6.1200574, 46.3116459 ], + [ 6.1200905, 46.3117331 ], + [ 6.1201137, 46.3118231 ], + [ 6.12033, 46.3120437 ], + [ 6.1203427, 46.3121527 ], + [ 6.1202865, 46.3122098 ], + [ 6.1202084, 46.3122399 ], + [ 6.1200836, 46.3122654 ], + [ 6.119965, 46.3123064 ], + [ 6.1198907, 46.3123398 ], + [ 6.1198201, 46.3124051 ], + [ 6.1197934, 46.3124874 ], + [ 6.1198245, 46.3125641 ], + [ 6.1199986, 46.3127646 ], + [ 6.1201355, 46.3128821 ], + [ 6.1202988, 46.3129404 ], + [ 6.1204361, 46.3130086 ], + [ 6.1204757, 46.3130692 ], + [ 6.1204702, 46.3131235 ], + [ 6.1203895, 46.3131866 ], + [ 6.1203574, 46.3132955 ], + [ 6.1204831, 46.3133266 ], + [ 6.1207541, 46.3133262 ], + [ 6.1209216, 46.3132134 ], + [ 6.1210378, 46.3131437 ], + [ 6.1211723, 46.3131668 ], + [ 6.1212733, 46.3132106 ], + [ 6.1214362, 46.3132924 ], + [ 6.1215321, 46.3133589 ], + [ 6.1216092, 46.3134179 ], + [ 6.1217065, 46.3135025 ], + [ 6.1217135, 46.3135415 ], + [ 6.1220091, 46.3137544 ], + [ 6.1220084, 46.3138209 ], + [ 6.1221168, 46.3139784 ], + [ 6.1222303, 46.3140377 ], + [ 6.1224305, 46.3141184 ], + [ 6.1225855, 46.3141586 ], + [ 6.1227376, 46.3142104 ], + [ 6.1228649, 46.3142737 ], + [ 6.1229023, 46.3143105 ], + [ 6.1228578, 46.3144085 ], + [ 6.1227594, 46.314582 ], + [ 6.1227315, 46.3146626 ], + [ 6.1227432, 46.3147103 ], + [ 6.1227745, 46.3147529 ], + [ 6.1228554, 46.3147991 ], + [ 6.1233402, 46.3150402 ], + [ 6.1235344, 46.3151267 ], + [ 6.1237051, 46.3152076 ], + [ 6.12398, 46.3153928 ], + [ 6.1241111, 46.3155265 ], + [ 6.1241893, 46.3156387 ], + [ 6.1242574, 46.3157282 ], + [ 6.1242891, 46.3157959 ], + [ 6.1242897, 46.3158227 ], + [ 6.1243146, 46.3159199 ], + [ 6.1242806, 46.315988 ], + [ 6.1241878, 46.3160782 ], + [ 6.124232, 46.3162237 ], + [ 6.1242298, 46.3163094 ], + [ 6.1241441, 46.316355 ], + [ 6.12411, 46.3165078 ], + [ 6.1242335, 46.3167075 ], + [ 6.1242903, 46.3168226 ], + [ 6.1243336, 46.3169831 ], + [ 6.1242392, 46.3171582 ], + [ 6.1242293, 46.3172303 ], + [ 6.1243391, 46.3172784 ], + [ 6.1245253, 46.3173091 ], + [ 6.124709, 46.3173448 ], + [ 6.1249383, 46.3173723 ], + [ 6.1250457, 46.3173889 ], + [ 6.1252411, 46.3173912 ], + [ 6.125356, 46.317342 ], + [ 6.1254574, 46.3173186 ], + [ 6.1256028, 46.3173208 ], + [ 6.1257434, 46.3173578 ], + [ 6.1257895, 46.3174699 ], + [ 6.1257982, 46.3174895 ], + [ 6.1257822, 46.3175856 ], + [ 6.1258325, 46.3176621 ], + [ 6.1259518, 46.3177136 ], + [ 6.1260597, 46.3177238 ], + [ 6.1261239, 46.3177502 ], + [ 6.1261393, 46.3178005 ], + [ 6.1260978, 46.3179909 ], + [ 6.1260322, 46.3181058 ], + [ 6.1257779, 46.3182369 ], + [ 6.1256823, 46.3183126 ], + [ 6.125638, 46.3184636 ], + [ 6.1255917, 46.3185854 ], + [ 6.1254227, 46.3187105 ], + [ 6.1254104, 46.3187771 ], + [ 6.1254426, 46.3188804 ], + [ 6.1253933, 46.3189141 ], + [ 6.1980947, 46.367723 ], + [ 6.2045058, 46.3715476 ], + [ 6.2115165, 46.3748302 ], + [ 6.2190311, 46.3775267 ], + [ 6.2269478, 46.3796006 ], + [ 6.2351594, 46.3810239 ], + [ 6.2435545, 46.3817771 ], + [ 6.2520192, 46.3818501 ], + [ 6.2604388, 46.381242 ], + [ 6.2686992, 46.3799608 ], + [ 6.2766882, 46.3780241 ], + [ 6.2825988, 46.376031 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 120, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "CTR0006", + "country" : "CHE", + "name" : [ + { + "text" : "CTR GENEVA", + "lang" : "de-CH" + }, + { + "text" : "CTR GENEVA", + "lang" : "fr-CH" + }, + { + "text" : "CTR GENEVA", + "lang" : "it-CH" + }, + { + "text" : "CTR GENEVA", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only permitted from an altitude of 120 m above ground with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Skyguide Special Flight Office", + "lang" : "de-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "it-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "en-GB" + } + ], + "siteURL" : "https://skyguide.ch/services/special-flights", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.0331253, 47.0284629 ], + [ 7.0328766, 47.0283991 ], + [ 7.0326091, 47.0283709 ], + [ 7.0310762, 47.0283185 ], + [ 7.0310535, 47.0282998 ], + [ 7.0308605, 47.0281915 ], + [ 7.030641, 47.0281101 ], + [ 7.0304029, 47.0280585 ], + [ 7.0300286, 47.0280034 ], + [ 7.0297824, 47.0279835 ], + [ 7.0295352, 47.0279955 ], + [ 7.0292956, 47.028039 ], + [ 7.0290723, 47.0281125 ], + [ 7.028873, 47.0282134 ], + [ 7.028705, 47.028338 ], + [ 7.0285741, 47.0284819 ], + [ 7.0284851, 47.0286401 ], + [ 7.0284645, 47.0286904 ], + [ 7.0283987, 47.0287975 ], + [ 7.0282475, 47.028981 ], + [ 7.0281401, 47.0291497 ], + [ 7.0280851, 47.0293298 ], + [ 7.028084, 47.0293372 ], + [ 7.0280795, 47.029374 ], + [ 7.0280789, 47.0293814 ], + [ 7.0280766, 47.0294184 ], + [ 7.0280764, 47.0294258 ], + [ 7.0280764, 47.0294628 ], + [ 7.0280766, 47.0294701 ], + [ 7.0280768, 47.0294768 ], + [ 7.0280793, 47.0295373 ], + [ 7.028082, 47.0295756 ], + [ 7.0280827, 47.0295825 ], + [ 7.0280642, 47.0296087 ], + [ 7.0280569, 47.0296188 ], + [ 7.0280371, 47.0296472 ], + [ 7.0280275, 47.0296617 ], + [ 7.0280092, 47.0296906 ], + [ 7.0280004, 47.0297052 ], + [ 7.0279836, 47.0297345 ], + [ 7.0279755, 47.0297494 ], + [ 7.02796, 47.0297796 ], + [ 7.0279527, 47.0297945 ], + [ 7.0279392, 47.0298241 ], + [ 7.0279327, 47.0298392 ], + [ 7.0279206, 47.0298691 ], + [ 7.0279149, 47.0298843 ], + [ 7.0279044, 47.0299145 ], + [ 7.0278994, 47.0299298 ], + [ 7.0278787, 47.0300118 ], + [ 7.0278775, 47.0300185 ], + [ 7.0278721, 47.0300538 ], + [ 7.0278713, 47.0300605 ], + [ 7.0278679, 47.0300959 ], + [ 7.0278674, 47.0301027 ], + [ 7.0278661, 47.0301381 ], + [ 7.027866, 47.0301449 ], + [ 7.0278668, 47.0301827 ], + [ 7.0278672, 47.0301894 ], + [ 7.0278701, 47.0302251 ], + [ 7.0278708, 47.0302318 ], + [ 7.0278758, 47.0302673 ], + [ 7.0278769, 47.030274 ], + [ 7.0278838, 47.0303087 ], + [ 7.0278874, 47.0303243 ], + [ 7.0278921, 47.0303438 ], + [ 7.0278944, 47.0303527 ], + [ 7.0279, 47.0303727 ], + [ 7.0279026, 47.0303815 ], + [ 7.0279088, 47.0304014 ], + [ 7.0279117, 47.0304102 ], + [ 7.0279185, 47.0304299 ], + [ 7.0279217, 47.0304386 ], + [ 7.027929, 47.0304577 ], + [ 7.0279324, 47.0304664 ], + [ 7.0279403, 47.0304853 ], + [ 7.027944, 47.0304939 ], + [ 7.0279525, 47.0305127 ], + [ 7.0279565, 47.0305213 ], + [ 7.0279821, 47.0305709 ], + [ 7.0279868, 47.0305793 ], + [ 7.0280113, 47.0306198 ], + [ 7.0280166, 47.030628 ], + [ 7.028044, 47.0306676 ], + [ 7.0280499, 47.0306756 ], + [ 7.0280801, 47.0307143 ], + [ 7.0280865, 47.0307221 ], + [ 7.0281197, 47.03076 ], + [ 7.0281267, 47.0307676 ], + [ 7.0281618, 47.0308036 ], + [ 7.0281693, 47.0308109 ], + [ 7.0282068, 47.0308457 ], + [ 7.0282149, 47.0308528 ], + [ 7.0282548, 47.0308863 ], + [ 7.0282633, 47.0308931 ], + [ 7.0284309, 47.0310051 ], + [ 7.0286248, 47.0310949 ], + [ 7.0286698, 47.031112 ], + [ 7.0287207, 47.0311303 ], + [ 7.0290393, 47.031239 ], + [ 7.029253, 47.0312965 ], + [ 7.0294263, 47.0313206 ], + [ 7.0333938, 47.0313798 ], + [ 7.0335285, 47.0313351 ], + [ 7.0337386, 47.0312249 ], + [ 7.0338989, 47.0310987 ], + [ 7.0338763, 47.0310666 ], + [ 7.0336859, 47.0307387 ], + [ 7.0334846, 47.0303369 ], + [ 7.0332889, 47.0297834 ], + [ 7.0331877, 47.029324 ], + [ 7.0331428, 47.0289108 ], + [ 7.0331253, 47.0284629 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "NE14", + "country" : "CHE", + "name" : [ + { + "text" : "GROUPE E SA", + "lang" : "de-CH" + }, + { + "text" : "GROUPE E SA", + "lang" : "fr-CH" + }, + { + "text" : "GROUPE E SA", + "lang" : "it-CH" + }, + { + "text" : "GROUPE E SA", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "regulationExemption" : "YES", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Police Neuchâteloise", + "lang" : "de-CH" + }, + { + "text" : "Police Neuchâteloise", + "lang" : "fr-CH" + }, + { + "text" : "Police Neuchâteloise", + "lang" : "it-CH" + }, + { + "text" : "Police Neuchâteloise", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "PN - Rens et opérations", + "lang" : "de-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "fr-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "it-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "PN - Rens et opérations", + "lang" : "de-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "fr-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "it-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ne.ch/autorites/DESC/PONE/Pages/Drones.aspx", + "email" : "Police.Neuchateloise@ne.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4276384, 46.9470163 ], + [ 7.427633, 46.9468751 ], + [ 7.4276169, 46.9467343 ], + [ 7.42759, 46.9465942 ], + [ 7.4275524, 46.9464553 ], + [ 7.4275043, 46.9463179 ], + [ 7.4274457, 46.9461824 ], + [ 7.4273769, 46.9460492 ], + [ 7.427298, 46.9459187 ], + [ 7.4272092, 46.9457912 ], + [ 7.4271108, 46.945667 ], + [ 7.427003, 46.9455465 ], + [ 7.4268862, 46.9454301 ], + [ 7.4267606, 46.945318 ], + [ 7.4266267, 46.9452105 ], + [ 7.4264847, 46.945108 ], + [ 7.4263351, 46.9450108 ], + [ 7.4261782, 46.944919 ], + [ 7.4260146, 46.944833 ], + [ 7.4258446, 46.9447529 ], + [ 7.4256687, 46.9446791 ], + [ 7.4254875, 46.9446117 ], + [ 7.4253013, 46.9445508 ], + [ 7.4251107, 46.9444967 ], + [ 7.4249162, 46.9444495 ], + [ 7.4247185, 46.9444094 ], + [ 7.4245179, 46.9443764 ], + [ 7.424315, 46.9443506 ], + [ 7.4241105, 46.9443321 ], + [ 7.4239049, 46.944321 ], + [ 7.4236987, 46.9443173 ], + [ 7.4234924, 46.944321 ], + [ 7.4232868, 46.944332 ], + [ 7.4230822, 46.9443504 ], + [ 7.4228794, 46.9443762 ], + [ 7.4226788, 46.9444091 ], + [ 7.422481, 46.9444492 ], + [ 7.4222865, 46.9444963 ], + [ 7.4220959, 46.9445504 ], + [ 7.4219097, 46.9446112 ], + [ 7.4217284, 46.9446785 ], + [ 7.4215524, 46.9447523 ], + [ 7.4213824, 46.9448323 ], + [ 7.4212187, 46.9449183 ], + [ 7.4210618, 46.94501 ], + [ 7.4209121, 46.9451073 ], + [ 7.4207701, 46.9452097 ], + [ 7.4206361, 46.9453171 ], + [ 7.4205105, 46.9454292 ], + [ 7.4203936, 46.9455456 ], + [ 7.4202857, 46.9456661 ], + [ 7.4201873, 46.9457902 ], + [ 7.4200984, 46.9459177 ], + [ 7.4200194, 46.9460482 ], + [ 7.4199505, 46.9461814 ], + [ 7.4198918, 46.9463168 ], + [ 7.4198436, 46.9464542 ], + [ 7.419806, 46.9465931 ], + [ 7.419779, 46.9467332 ], + [ 7.4197628, 46.946874 ], + [ 7.4197573, 46.9470152 ], + [ 7.4197627, 46.9471565 ], + [ 7.4197788, 46.9472973 ], + [ 7.4198057, 46.9474374 ], + [ 7.4198432, 46.9475763 ], + [ 7.4198913, 46.9477137 ], + [ 7.4199499, 46.9478492 ], + [ 7.4200187, 46.9479824 ], + [ 7.4200976, 46.9481129 ], + [ 7.4201864, 46.9482404 ], + [ 7.4202848, 46.9483646 ], + [ 7.4203925, 46.9484851 ], + [ 7.4205093, 46.9486015 ], + [ 7.4206349, 46.9487136 ], + [ 7.4207688, 46.9488211 ], + [ 7.4209108, 46.9489236 ], + [ 7.4210604, 46.9490209 ], + [ 7.4212173, 46.9491127 ], + [ 7.4213809, 46.9491987 ], + [ 7.4215509, 46.9492787 ], + [ 7.4217268, 46.9493526 ], + [ 7.4219081, 46.94942 ], + [ 7.4220943, 46.9494809 ], + [ 7.4222849, 46.949535 ], + [ 7.4224793, 46.9495822 ], + [ 7.4226771, 46.9496223 ], + [ 7.4228777, 46.9496553 ], + [ 7.4230806, 46.9496811 ], + [ 7.4232851, 46.9496996 ], + [ 7.4234908, 46.9497107 ], + [ 7.4236971, 46.9497144 ], + [ 7.4239033, 46.9497107 ], + [ 7.424109, 46.9496997 ], + [ 7.4243135, 46.9496813 ], + [ 7.4245164, 46.9496555 ], + [ 7.424717, 46.9496226 ], + [ 7.4249148, 46.9495825 ], + [ 7.4251093, 46.9495354 ], + [ 7.4253, 46.9494813 ], + [ 7.4254862, 46.9494205 ], + [ 7.4256675, 46.9493531 ], + [ 7.4258435, 46.9492793 ], + [ 7.4260135, 46.9491993 ], + [ 7.4261772, 46.9491133 ], + [ 7.4263341, 46.9490216 ], + [ 7.4264838, 46.9489244 ], + [ 7.4266258, 46.9488219 ], + [ 7.4267598, 46.9487145 ], + [ 7.4268854, 46.9486024 ], + [ 7.4270023, 46.948486 ], + [ 7.4271101999999996, 46.9483656 ], + [ 7.4272086, 46.9482414 ], + [ 7.4272975, 46.9481139 ], + [ 7.4273764, 46.9479834 ], + [ 7.4274453, 46.9478502 ], + [ 7.427504, 46.9477148 ], + [ 7.4275522, 46.9475774 ], + [ 7.4275898, 46.9474385 ], + [ 7.4276167, 46.9472984 ], + [ 7.427633, 46.9471576 ], + [ 7.4276384, 46.9470163 ] + ] + ], + "layer" : { + "upper" : 300, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BEW0001", + "country" : "CHE", + "name" : [ + { + "text" : "BEWA Inselspital", + "lang" : "de-CH" + }, + { + "text" : "BEWA Inselspital", + "lang" : "fr-CH" + }, + { + "text" : "BEWA Inselspital", + "lang" : "it-CH" + }, + { + "text" : "BEWA Inselspital", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Bewachungsstation Inselspital", + "lang" : "de-CH" + }, + { + "text" : "Bewachungsstation Inselspital", + "lang" : "fr-CH" + }, + { + "text" : "Bewachungstation Inselspital", + "lang" : "it-CH" + }, + { + "text" : "Bewachungsstation Inselspital", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachbereich Sicherheit", + "lang" : "de-CH" + }, + { + "text" : "Fachbereich Sicherheit", + "lang" : "fr-CH" + }, + { + "text" : "Fachbereich Sicherheit", + "lang" : "it-CH" + }, + { + "text" : "Fachbereich Sicherheit", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ajv.sid.be.ch/de/start/themen/haft/bewachungsstation.html", + "email" : "bewa.admin@be.ch", + "phone" : "0041316323504", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8855125, 47.4153606 ], + [ 7.885529, 47.4153183 ], + [ 7.8855349, 47.4153 ], + [ 7.8855647, 47.4152264 ], + [ 7.8856201, 47.4151336 ], + [ 7.8856845, 47.4150425 ], + [ 7.8857842, 47.4149688 ], + [ 7.8860541, 47.4148731 ], + [ 7.8860773, 47.4148638 ], + [ 7.8863633, 47.4147489 ], + [ 7.886368, 47.4147477 ], + [ 7.8866546, 47.4145089 ], + [ 7.8866602, 47.4145049 ], + [ 7.8866542, 47.4145012 ], + [ 7.8865692, 47.4144496 ], + [ 7.8865153, 47.4144174 ], + [ 7.8864168, 47.4143704 ], + [ 7.8860393, 47.4147056 ], + [ 7.8856257, 47.4149504 ], + [ 7.8855577, 47.415005 ], + [ 7.8854949, 47.4150761 ], + [ 7.8854372999999995, 47.4151723 ], + [ 7.8854051, 47.4152675 ], + [ 7.8854298, 47.415353 ], + [ 7.8855125, 47.4153606 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns178", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Mapprach - Hofmatt", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Mapprach - Hofmatt", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Mapprach - Hofmatt", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Mapprach - Hofmatt", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.0671376, 46.2162087 ], + [ 6.0671358, 46.2160674 ], + [ 6.0671234, 46.2159264 ], + [ 6.0671004, 46.2157861 ], + [ 6.0670668, 46.2156467 ], + [ 6.0670227, 46.2155088 ], + [ 6.0669684, 46.2153726 ], + [ 6.0669038, 46.2152387 ], + [ 6.0668292, 46.2151072 ], + [ 6.0667448, 46.2149786 ], + [ 6.0666508, 46.2148533 ], + [ 6.0665476, 46.2147316 ], + [ 6.0664352, 46.2146137 ], + [ 6.0663142, 46.2145002 ], + [ 6.0661847, 46.2143911 ], + [ 6.0660472, 46.214287 ], + [ 6.0659021, 46.2141879 ], + [ 6.0657497, 46.2140943 ], + [ 6.0655904, 46.2140064 ], + [ 6.0654247, 46.2139243 ], + [ 6.0652531, 46.2138484 ], + [ 6.0650759, 46.2137788 ], + [ 6.0648938, 46.2137158 ], + [ 6.0647072, 46.2136594 ], + [ 6.0645166, 46.2136099 ], + [ 6.0643225, 46.2135674 ], + [ 6.0641254, 46.213532 ], + [ 6.063926, 46.2135038 ], + [ 6.0637247, 46.2134829 ], + [ 6.0635221, 46.2134694 ], + [ 6.0633188, 46.2134632 ], + [ 6.0631153, 46.2134644 ], + [ 6.0629122, 46.213473 ], + [ 6.06271, 46.213489 ], + [ 6.0625092, 46.2135123 ], + [ 6.0623105, 46.2135429 ], + [ 6.0621144, 46.2135806 ], + [ 6.0619214, 46.2136254 ], + [ 6.061732, 46.2136772 ], + [ 6.0615468, 46.2137357 ], + [ 6.0613663, 46.213801 ], + [ 6.0611909, 46.2138727 ], + [ 6.0610212, 46.2139506 ], + [ 6.0608576, 46.2140346 ], + [ 6.0607005, 46.2141245 ], + [ 6.0605505, 46.2142199 ], + [ 6.0604078, 46.2143207 ], + [ 6.0602729, 46.2144265 ], + [ 6.0601462, 46.214537 ], + [ 6.060028, 46.214652 ], + [ 6.0599186, 46.2147712 ], + [ 6.0598184, 46.2148941 ], + [ 6.0597275, 46.2150205 ], + [ 6.0596464, 46.2151501 ], + [ 6.059575, 46.2152824 ], + [ 6.0595138, 46.2154172 ], + [ 6.0594628, 46.2155539 ], + [ 6.0594222, 46.2156924 ], + [ 6.0593921, 46.2158321 ], + [ 6.0593726, 46.2159727 ], + [ 6.0593637, 46.2161139 ], + [ 6.0593654, 46.2162552 ], + [ 6.0593778, 46.2163962 ], + [ 6.0594008, 46.2165366 ], + [ 6.0594344, 46.2166759 ], + [ 6.0594784, 46.2168138 ], + [ 6.0595328, 46.21695 ], + [ 6.0595973, 46.217084 ], + [ 6.0596719, 46.2172154 ], + [ 6.0597563, 46.217344 ], + [ 6.0598503, 46.2174693 ], + [ 6.0599535, 46.2175911 ], + [ 6.0600659, 46.2177089 ], + [ 6.0601869, 46.2178225 ], + [ 6.0603163, 46.2179315 ], + [ 6.0604538, 46.2180357 ], + [ 6.060599, 46.2181347 ], + [ 6.0607514, 46.2182284 ], + [ 6.0609107, 46.2183163 ], + [ 6.0610764, 46.2183984 ], + [ 6.061248, 46.2184743 ], + [ 6.0614252, 46.2185439 ], + [ 6.0616073, 46.218607 ], + [ 6.061794, 46.2186633 ], + [ 6.0619846, 46.2187128 ], + [ 6.0621787, 46.2187553 ], + [ 6.0623758, 46.2187907 ], + [ 6.0625752, 46.2188189 ], + [ 6.0627765, 46.2188398 ], + [ 6.0629791, 46.2188534 ], + [ 6.0631825, 46.2188595 ], + [ 6.063386, 46.2188583 ], + [ 6.0635891, 46.2188497 ], + [ 6.0637914, 46.2188337 ], + [ 6.0639921, 46.2188104 ], + [ 6.0641908, 46.2187799 ], + [ 6.064387, 46.2187421 ], + [ 6.06458, 46.2186973 ], + [ 6.0647694, 46.2186455 ], + [ 6.0649546, 46.218587 ], + [ 6.0651351, 46.2185217 ], + [ 6.0653105, 46.21845 ], + [ 6.0654802, 46.2183721 ], + [ 6.0656439, 46.2182881 ], + [ 6.0658009, 46.2181982 ], + [ 6.065951, 46.2181028 ], + [ 6.0660937, 46.218002 ], + [ 6.0662285, 46.2178962 ], + [ 6.0663553, 46.2177856 ], + [ 6.0664735, 46.2176706 ], + [ 6.0665828, 46.2175515 ], + [ 6.0666831, 46.2174285 ], + [ 6.0667739, 46.2173021 ], + [ 6.066855, 46.2171725 ], + [ 6.0669263, 46.2170402 ], + [ 6.0669875, 46.2169055 ], + [ 6.0670385, 46.2167687 ], + [ 6.0670791, 46.2166302 ], + [ 6.0671092, 46.2164905 ], + [ 6.0671287, 46.2163499 ], + [ 6.0671376, 46.2162087 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE28", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7899048, 46.3098175 ], + [ 7.7898007, 46.3074638 ], + [ 7.789519, 46.3051172 ], + [ 7.7890605, 46.3027839 ], + [ 7.7884265, 46.3004705 ], + [ 7.7876187, 46.2981833 ], + [ 7.7866394, 46.2959284 ], + [ 7.7854913, 46.2937122 ], + [ 7.7841775, 46.2915407 ], + [ 7.7827017, 46.2894198 ], + [ 7.7810679, 46.2873553 ], + [ 7.7792806, 46.2853529 ], + [ 7.7773448, 46.283418 ], + [ 7.7752657, 46.281556 ], + [ 7.773049, 46.279772 ], + [ 7.7707008, 46.2780707 ], + [ 7.7682276, 46.276457 ], + [ 7.7656362, 46.2749352 ], + [ 7.7629335, 46.2735095 ], + [ 7.7601272, 46.2721837 ], + [ 7.7572247, 46.2709615 ], + [ 7.7542341, 46.2698462 ], + [ 7.7511635, 46.268841 ], + [ 7.7480214, 46.2679485 ], + [ 7.7448163, 46.2671711 ], + [ 7.7415571, 46.2665111 ], + [ 7.7382526, 46.2659701 ], + [ 7.7349118, 46.2655498 ], + [ 7.7315439, 46.2652512 ], + [ 7.7281582, 46.2650751 ], + [ 7.7247638, 46.2650221 ], + [ 7.72137, 46.2650922 ], + [ 7.7179862, 46.2652854 ], + [ 7.7146216, 46.265601 ], + [ 7.7112853, 46.2660382 ], + [ 7.7079866, 46.2665958 ], + [ 7.7047343, 46.2672722 ], + [ 7.7015375, 46.2680657 ], + [ 7.6984048, 46.2689741 ], + [ 7.6953449, 46.2699948 ], + [ 7.692366, 46.2711251 ], + [ 7.6894765, 46.2723619 ], + [ 7.686684, 46.2737018 ], + [ 7.6839964, 46.2751412 ], + [ 7.681421, 46.276676 ], + [ 7.6789648, 46.2783022 ], + [ 7.6766346, 46.2800152 ], + [ 7.6744366, 46.2818104 ], + [ 7.6723771, 46.2836828 ], + [ 7.6704616, 46.2856274 ], + [ 7.6686954, 46.2876388 ], + [ 7.6670833, 46.2897115 ], + [ 7.6656298, 46.2918398 ], + [ 7.6643389, 46.2940179 ], + [ 7.6632141, 46.2962398 ], + [ 7.6622585, 46.2984995 ], + [ 7.6614747, 46.3007908 ], + [ 7.660865, 46.3031074 ], + [ 7.660431, 46.3054428 ], + [ 7.660174, 46.3077909 ], + [ 7.6600946, 46.310145 ], + [ 7.6601931, 46.3124988 ], + [ 7.6604693, 46.3148458 ], + [ 7.6609223, 46.3171795 ], + [ 7.6615511, 46.3194937 ], + [ 7.6623539, 46.3217818 ], + [ 7.6633285, 46.3240377 ], + [ 7.6644723, 46.3262552 ], + [ 7.6657820999999995, 46.3284281 ], + [ 7.6672544, 46.3305505 ], + [ 7.6688852, 46.3326167 ], + [ 7.6706699, 46.3346208 ], + [ 7.6726038, 46.3365575 ], + [ 7.6746815, 46.3384214 ], + [ 7.6768973, 46.3402074 ], + [ 7.6792452, 46.3419105 ], + [ 7.6817188, 46.3435262 ], + [ 7.6843112, 46.34505 ], + [ 7.6870153, 46.3464776 ], + [ 7.6898237, 46.3478052 ], + [ 7.6927288, 46.3490291 ], + [ 7.6957225000000005, 46.350146 ], + [ 7.6987966, 46.3511527 ], + [ 7.7019427, 46.3520466 ], + [ 7.7051522, 46.3528252 ], + [ 7.7084162, 46.3534863 ], + [ 7.7117258, 46.3540281 ], + [ 7.7150718, 46.3544491 ], + [ 7.7184451, 46.3547482 ], + [ 7.7218364, 46.3549246 ], + [ 7.7252364, 46.3549777 ], + [ 7.7286358, 46.3549074 ], + [ 7.7320250999999995, 46.354714 ], + [ 7.7353952, 46.3543979 ], + [ 7.7387367, 46.3539599 ], + [ 7.7420405, 46.3534015 ], + [ 7.7452974, 46.3527239 ], + [ 7.7484986, 46.3519292 ], + [ 7.7516352, 46.3510194 ], + [ 7.7546986, 46.3499972 ], + [ 7.7576805, 46.3488652 ], + [ 7.7605726, 46.3476267 ], + [ 7.763367, 46.3462849 ], + [ 7.766056, 46.3448437 ], + [ 7.7686323, 46.3433069 ], + [ 7.7710887, 46.3416788 ], + [ 7.7734187, 46.3399639 ], + [ 7.7756156, 46.3381668 ], + [ 7.7776737, 46.3362924 ], + [ 7.7795871, 46.3343461 ], + [ 7.7813507, 46.3323329 ], + [ 7.7829597, 46.3302586 ], + [ 7.7844097, 46.3281288 ], + [ 7.7856966, 46.3259493 ], + [ 7.786817, 46.3237262 ], + [ 7.7877679, 46.3214654 ], + [ 7.7885466, 46.3191733 ], + [ 7.789151, 46.316856 ], + [ 7.7895796, 46.3145201 ], + [ 7.7898311, 46.3121717 ], + [ 7.7899048, 46.3098175 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSEG001", + "country" : "CHE", + "name" : [ + { + "text" : "LSEG Gampel", + "lang" : "de-CH" + }, + { + "text" : "LSEG Gampel", + "lang" : "fr-CH" + }, + { + "text" : "LSEG Gampel", + "lang" : "it-CH" + }, + { + "text" : "LSEG Gampel", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Air Zermatt AG", + "lang" : "de-CH" + }, + { + "text" : "Air Zermatt AG", + "lang" : "fr-CH" + }, + { + "text" : "Air Zermatt AG", + "lang" : "it-CH" + }, + { + "text" : "Air Zermatt AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.air-zermatt.ch/en/air-zermatt/contact", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7498539, 47.3877876 ], + [ 7.7497892, 47.3878134 ], + [ 7.7497682999999995, 47.3879675 ], + [ 7.7497613, 47.38799 ], + [ 7.7499055, 47.388129 ], + [ 7.7499801999999995, 47.388479 ], + [ 7.7499829, 47.3885243 ], + [ 7.7499888, 47.3886243 ], + [ 7.7499643, 47.388704 ], + [ 7.7499797, 47.3887033 ], + [ 7.7502559, 47.3886917 ], + [ 7.750498, 47.3886815 ], + [ 7.7505030999999995, 47.3886813 ], + [ 7.750539, 47.3885573 ], + [ 7.750694, 47.3884479 ], + [ 7.7506803, 47.3881261 ], + [ 7.7505535, 47.3877984 ], + [ 7.7503153000000005, 47.3877948 ], + [ 7.7500915, 47.3877903 ], + [ 7.7498539, 47.3877876 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns206", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Edlisberg - Meiersberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Edlisberg - Meiersberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Edlisberg - Meiersberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Edlisberg - Meiersberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8580303, 47.4752223 ], + [ 7.8577247, 47.4747736 ], + [ 7.8575303, 47.4744916 ], + [ 7.8573701, 47.4742846 ], + [ 7.8573428, 47.4742517 ], + [ 7.8571656999999995, 47.4740387 ], + [ 7.8574925, 47.4738382 ], + [ 7.8573591, 47.4735141 ], + [ 7.8572172, 47.4731685 ], + [ 7.857087, 47.4729052 ], + [ 7.8568591, 47.4729117 ], + [ 7.8565188, 47.4729438 ], + [ 7.856166, 47.4730191 ], + [ 7.8559751, 47.4728078 ], + [ 7.85577, 47.4726416 ], + [ 7.8556481, 47.4724385 ], + [ 7.855634, 47.4724152 ], + [ 7.8555307, 47.4722524 ], + [ 7.855493, 47.4721931 ], + [ 7.8553748, 47.472007 ], + [ 7.8551049, 47.471637 ], + [ 7.8550162, 47.4715155 ], + [ 7.8549016, 47.4713256 ], + [ 7.8549468000000005, 47.4710222 ], + [ 7.854802, 47.4709812 ], + [ 7.854606, 47.4711657 ], + [ 7.8545309, 47.4713274 ], + [ 7.8545697, 47.4715392 ], + [ 7.8546391, 47.4717226 ], + [ 7.8548232, 47.4719647 ], + [ 7.8550067, 47.4723472 ], + [ 7.8550388, 47.4723941 ], + [ 7.855138, 47.4725389 ], + [ 7.8551621, 47.4725741 ], + [ 7.8554082, 47.4727298 ], + [ 7.8555694, 47.4729009 ], + [ 7.8557187, 47.4731455 ], + [ 7.8557711, 47.473325 ], + [ 7.8559083, 47.4734599 ], + [ 7.8560292, 47.4736274 ], + [ 7.8562515, 47.4737822 ], + [ 7.8564945999999996, 47.473963 ], + [ 7.8568285, 47.4741979 ], + [ 7.8570471, 47.474457 ], + [ 7.8571624, 47.4747013 ], + [ 7.8573251, 47.4749422 ], + [ 7.8572594, 47.4751046 ], + [ 7.8572032, 47.4752492 ], + [ 7.8572251, 47.475367 ], + [ 7.8573345, 47.4753483 ], + [ 7.8574380999999995, 47.475225 ], + [ 7.8575303, 47.4751602 ], + [ 7.8576697, 47.4751998 ], + [ 7.8578033, 47.4753423 ], + [ 7.8580444, 47.4755504 ], + [ 7.8582065, 47.4755498 ], + [ 7.8582488999999995, 47.4754731 ], + [ 7.8580303, 47.4752223 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr076", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Lörenhöldeli", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Lörenhöldeli", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Lörenhöldeli", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Lörenhöldeli", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.6084616, 47.6370688 ], + [ 8.608589, 47.6369648 ], + [ 8.6087138, 47.6368515 ], + [ 8.6088296, 47.6367339 ], + [ 8.6089361, 47.6366124 ], + [ 8.6090331, 47.6364872 ], + [ 8.6091202, 47.6363589 ], + [ 8.6091973, 47.6362276 ], + [ 8.6092641, 47.6360937 ], + [ 8.609320499999999, 47.6359577 ], + [ 8.6093662, 47.6358199 ], + [ 8.6094012, 47.6356806 ], + [ 8.6094254, 47.6355403 ], + [ 8.6094387, 47.6353994 ], + [ 8.609441, 47.6352581 ], + [ 8.6094324, 47.635117 ], + [ 8.6094129, 47.6349764 ], + [ 8.6093826, 47.6348366 ], + [ 8.6093414, 47.6346981 ], + [ 8.6092896, 47.6345613 ], + [ 8.6092273, 47.634426500000004 ], + [ 8.6091546, 47.634294 ], + [ 8.6090718, 47.6341643 ], + [ 8.608979, 47.6340378 ], + [ 8.6088765, 47.6339147 ], + [ 8.6087647, 47.6337953 ], + [ 8.6086438, 47.6336801 ], + [ 8.6085141, 47.6335694 ], + [ 8.608376, 47.6334633 ], + [ 8.6082299, 47.6333623 ], + [ 8.6080762, 47.6332667 ], + [ 8.6079153, 47.6331765 ], + [ 8.607747700000001, 47.6330922 ], + [ 8.6075737, 47.633014 ], + [ 8.6073939, 47.632942 ], + [ 8.6072088, 47.6328764 ], + [ 8.6070189, 47.6328175 ], + [ 8.6068246, 47.6327654 ], + [ 8.6066266, 47.6327203 ], + [ 8.6064254, 47.6326822 ], + [ 8.6062215, 47.6326512 ], + [ 8.6060155, 47.6326276 ], + [ 8.6058079, 47.6326112 ], + [ 8.6055994, 47.6326022 ], + [ 8.6053904, 47.6326006 ], + [ 8.6051816, 47.6326064 ], + [ 8.6049736, 47.6326196 ], + [ 8.6047668, 47.6326401 ], + [ 8.6045619, 47.6326679 ], + [ 8.6043595, 47.6327029 ], + [ 8.60416, 47.6327451 ], + [ 8.6039641, 47.6327942 ], + [ 8.6037723, 47.6328502 ], + [ 8.603585, 47.6329129 ], + [ 8.6034029, 47.6329821 ], + [ 8.6032263, 47.6330577 ], + [ 8.6030559, 47.6331394 ], + [ 8.602892, 47.6332271 ], + [ 8.6027351, 47.6333204 ], + [ 8.6025857, 47.6334191 ], + [ 8.6024441, 47.633523 ], + [ 8.6023108, 47.6336318 ], + [ 8.602186, 47.6337451 ], + [ 8.6020702, 47.6338627 ], + [ 8.6019637, 47.6339842 ], + [ 8.6018667, 47.6341093 ], + [ 8.6017796, 47.6342377 ], + [ 8.6017025, 47.634369 ], + [ 8.6016356, 47.6345028 ], + [ 8.6015793, 47.6346389 ], + [ 8.6015335, 47.6347767 ], + [ 8.6014985, 47.6349159 ], + [ 8.6014743, 47.6350562 ], + [ 8.6014609, 47.6351972 ], + [ 8.6014586, 47.6353384 ], + [ 8.6014672, 47.6354796 ], + [ 8.6014866, 47.6356202 ], + [ 8.601517, 47.63576 ], + [ 8.6015581, 47.6358984 ], + [ 8.6016099, 47.6360353 ], + [ 8.6016722, 47.6361701 ], + [ 8.6017449, 47.6363026 ], + [ 8.6018277, 47.6364322 ], + [ 8.6019205, 47.6365588 ], + [ 8.6020229, 47.6366819 ], + [ 8.6021347, 47.6368013 ], + [ 8.6022556, 47.6369165 ], + [ 8.6023853, 47.6370272 ], + [ 8.602523399999999, 47.6371333 ], + [ 8.6026695, 47.6372343 ], + [ 8.6028232, 47.63733 ], + [ 8.6029841, 47.6374201 ], + [ 8.6031518, 47.6375044 ], + [ 8.6033257, 47.6375827 ], + [ 8.6035055, 47.6376547 ], + [ 8.6036907, 47.6377202 ], + [ 8.6038806, 47.6377791 ], + [ 8.6040749, 47.6378313 ], + [ 8.6042729, 47.6378764 ], + [ 8.6044032, 47.6379011 ], + [ 8.6046654, 47.6377463 ], + [ 8.6050165, 47.6375742 ], + [ 8.6053891, 47.6374242 ], + [ 8.6057803, 47.6372977 ], + [ 8.6061868, 47.6371956 ], + [ 8.6066054, 47.6371188 ], + [ 8.6070324, 47.6370678 ], + [ 8.6074646, 47.6370432 ], + [ 8.6078983, 47.6370451 ], + [ 8.6084616, 47.6370688 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "RHE0001", + "country" : "CHE", + "name" : [ + { + "text" : "Vollzugseinrichtung / Psychiatrische Forensik Rheinau", + "lang" : "de-CH" + }, + { + "text" : "Vollzugseinrichtung / Psychiatrische Forensik Rheinau", + "lang" : "fr-CH" + }, + { + "text" : "Vollzugseinrichtung / Psychiatrische Forensik Rheinau", + "lang" : "it-CH" + }, + { + "text" : "Vollzugseinrichtung / Psychiatrische Forensik Rheinau", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Psychiatrische Universitätsklinik, Klinik für Stationäre Forensische Therapie, Alleestrasse 59, 8462 Rheinau", + "lang" : "de-CH" + }, + { + "text" : "Psychiatrische Universitätsklinik, Klinik für Stationäre Forensische Therapie, Alleestrasse 59, 8462 Rheinau", + "lang" : "fr-CH" + }, + { + "text" : "Psychiatrische Universitätsklinik, Klinik für Stationäre Forensische Therapie, Alleestrasse 59, 8462 Rheinau", + "lang" : "it-CH" + }, + { + "text" : "Psychiatrische Universitätsklinik, Klinik für Stationäre Forensische Therapie, Alleestrasse 59, 8462 Rheinau", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Sicherheitsstation, Leiter/in Sicherheitszentrale", + "lang" : "de-CH" + }, + { + "text" : "Sicherheitsstation, Leiter/in Sicherheitszentrale", + "lang" : "fr-CH" + }, + { + "text" : "Sicherheitsstation, Leiter/in Sicherheitszentrale", + "lang" : "it-CH" + }, + { + "text" : "Sicherheitsstation, Leiter/in Sicherheitszentrale", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Herbert Hofer / Michel Zollinger", + "lang" : "de-CH" + }, + { + "text" : "Herbert Hofer / Michel Zollinger", + "lang" : "fr-CH" + }, + { + "text" : "Herbert Hofer / Michel Zollinger", + "lang" : "it-CH" + }, + { + "text" : "Herbert Hofer / Michel Zollinger", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.pukzh.ch/unsere-angebote/forensische-psychiatrie/", + "email" : "station59az@pukzh.ch", + "phone" : "0041583842111", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT12H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5216769, 47.5429591 ], + [ 7.5216188, 47.5432331 ], + [ 7.5215539, 47.5435098 ], + [ 7.5215455, 47.5435404 ], + [ 7.5215442, 47.5435449 ], + [ 7.5215872, 47.5435723 ], + [ 7.5216022, 47.5435817 ], + [ 7.5216262, 47.5435951 ], + [ 7.5216553, 47.5436257 ], + [ 7.5216764, 47.5436441 ], + [ 7.5216978999999995, 47.5436565 ], + [ 7.5217076, 47.543662 ], + [ 7.5217299, 47.5436793 ], + [ 7.5217773, 47.5437253 ], + [ 7.5218084, 47.5437488 ], + [ 7.5218291, 47.5437607 ], + [ 7.5218727, 47.5437824 ], + [ 7.5218935, 47.5437971 ], + [ 7.5219609, 47.543851599999996 ], + [ 7.5220397, 47.5439213 ], + [ 7.5221175, 47.5440019 ], + [ 7.5221381, 47.5440184 ], + [ 7.5221693, 47.5440332 ], + [ 7.5221917, 47.5440475 ], + [ 7.5222238, 47.5440722 ], + [ 7.5222827, 47.5441219 ], + [ 7.5223347, 47.544159 ], + [ 7.5223694, 47.5441857 ], + [ 7.5223754, 47.5441916 ], + [ 7.5224209, 47.5441609 ], + [ 7.5227096, 47.5439662 ], + [ 7.5224596, 47.5438016 ], + [ 7.522177, 47.543626 ], + [ 7.5216769, 47.5429591 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns263", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Allschwilerwald", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Allschwilerwald", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Allschwilerwald", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Allschwilerwald", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8413056999999995, 47.3776691 ], + [ 7.8413289, 47.3776905 ], + [ 7.8416707, 47.377788699999996 ], + [ 7.8417633, 47.3778138 ], + [ 7.8419446, 47.3778615 ], + [ 7.8419799, 47.3778978 ], + [ 7.8423444, 47.377981 ], + [ 7.842394, 47.3779747 ], + [ 7.842415, 47.3779473 ], + [ 7.8424042, 47.3779128 ], + [ 7.8421813, 47.3778474 ], + [ 7.8418649, 47.3777551 ], + [ 7.841651, 47.3777039 ], + [ 7.8414177, 47.3776544 ], + [ 7.8413351, 47.377646 ], + [ 7.8413056999999995, 47.3776691 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns049", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Hecken-Komplex Schmutzberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Hecken-Komplex Schmutzberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Hecken-Komplex Schmutzberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Hecken-Komplex Schmutzberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6598797, 46.6810138 ], + [ 7.6598737, 46.6808725 ], + [ 7.6598571, 46.6807317 ], + [ 7.6598296999999995, 46.6805917 ], + [ 7.6597916999999995, 46.6804528 ], + [ 7.6597432, 46.6803156 ], + [ 7.6596844, 46.6801802 ], + [ 7.6596153000000005, 46.6800472 ], + [ 7.6595362, 46.6799168 ], + [ 7.6594473, 46.6797894 ], + [ 7.6593489, 46.6796655 ], + [ 7.6592411, 46.6795452 ], + [ 7.6591244, 46.679429 ], + [ 7.658999, 46.6793171 ], + [ 7.6588652, 46.67921 ], + [ 7.6587235, 46.6791078 ], + [ 7.6585742, 46.6790108 ], + [ 7.6584177, 46.6789193 ], + [ 7.6582545, 46.6788336 ], + [ 7.658085, 46.6787539 ], + [ 7.6579097, 46.6786804 ], + [ 7.657729, 46.6786134 ], + [ 7.6575435, 46.6785529 ], + [ 7.6573536, 46.6784992 ], + [ 7.6571599, 46.6784524 ], + [ 7.6569629, 46.6784127 ], + [ 7.6567632, 46.6783801 ], + [ 7.6565613, 46.6783547 ], + [ 7.6563577, 46.6783366 ], + [ 7.656153, 46.6783259 ], + [ 7.6559478, 46.6783226 ], + [ 7.6557426, 46.6783267 ], + [ 7.655538, 46.6783382 ], + [ 7.6553345, 46.678357 ], + [ 7.6551328, 46.6783832 ], + [ 7.6549333, 46.6784165 ], + [ 7.6547367, 46.678457 ], + [ 7.6545434, 46.6785045 ], + [ 7.6543539, 46.678559 ], + [ 7.6541689, 46.6786201 ], + [ 7.6539888, 46.6786879 ], + [ 7.653814, 46.678762 ], + [ 7.6536452, 46.6788424 ], + [ 7.6534826, 46.6789287 ], + [ 7.6533269, 46.6790208 ], + [ 7.6531784, 46.6791183 ], + [ 7.6530375, 46.679221 ], + [ 7.6529046, 46.6793287 ], + [ 7.6527801, 46.679441 ], + [ 7.6526643, 46.6795577 ], + [ 7.6525575, 46.6796784 ], + [ 7.65246, 46.6798027 ], + [ 7.6523722, 46.6799304 ], + [ 7.6522941, 46.6800611 ], + [ 7.6522261, 46.6801944 ], + [ 7.6521683, 46.6803299 ], + [ 7.652121, 46.6804674 ], + [ 7.6520841, 46.6806064 ], + [ 7.6520579, 46.6807465 ], + [ 7.6520423, 46.6808874 ], + [ 7.6520375, 46.6810287 ], + [ 7.6520434, 46.6811699 ], + [ 7.6520601, 46.6813107 ], + [ 7.6520874, 46.6814507 ], + [ 7.6521254, 46.6815896 ], + [ 7.6521738, 46.6817269 ], + [ 7.6522327, 46.6818622 ], + [ 7.6523017, 46.6819953 ], + [ 7.6523807999999995, 46.6821257 ], + [ 7.6524697, 46.682253 ], + [ 7.6525681, 46.682377 ], + [ 7.6526759, 46.6824973 ], + [ 7.6527926, 46.6826135 ], + [ 7.652918, 46.6827253 ], + [ 7.6530518, 46.6828325 ], + [ 7.6531935, 46.6829347 ], + [ 7.6533428, 46.6830317 ], + [ 7.6534993, 46.6831232 ], + [ 7.6536625, 46.6832089 ], + [ 7.6538319999999995, 46.6832886 ], + [ 7.6540073, 46.6833621 ], + [ 7.6541879999999995, 46.6834292 ], + [ 7.6543735, 46.6834896 ], + [ 7.6545634, 46.6835433 ], + [ 7.6547571, 46.6835901 ], + [ 7.6549541, 46.6836299 ], + [ 7.6551539, 46.6836625 ], + [ 7.6553559, 46.6836879 ], + [ 7.6555595, 46.6837059 ], + [ 7.6557642, 46.6837166 ], + [ 7.6559694, 46.6837199 ], + [ 7.6561746, 46.6837158 ], + [ 7.6563792, 46.6837044 ], + [ 7.6565826999999995, 46.6836855 ], + [ 7.6567845, 46.6836594 ], + [ 7.6569839, 46.683626 ], + [ 7.6571806, 46.6835855 ], + [ 7.6573739, 46.683538 ], + [ 7.6575634, 46.6834836 ], + [ 7.6577484, 46.6834224 ], + [ 7.6579286, 46.6833546 ], + [ 7.6581033, 46.6832805 ], + [ 7.6582722, 46.6832001 ], + [ 7.6584347, 46.6831138 ], + [ 7.6585905, 46.6830217 ], + [ 7.658739, 46.6829242 ], + [ 7.6588799, 46.6828214 ], + [ 7.6590128, 46.6827138 ], + [ 7.6591373, 46.6826014 ], + [ 7.6592531, 46.6824848 ], + [ 7.6593599, 46.6823641 ], + [ 7.6594573, 46.6822397 ], + [ 7.6595452, 46.6821121 ], + [ 7.6596232, 46.6819814 ], + [ 7.6596912, 46.6818481 ], + [ 7.6597489, 46.6817125 ], + [ 7.6597963, 46.681575 ], + [ 7.6598331, 46.681436 ], + [ 7.6598594, 46.6812959 ], + [ 7.6598749, 46.681155 ], + [ 7.6598797, 46.6810138 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0129", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Wimmis", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Wimmis", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Wimmis", + "lang" : "it-CH" + }, + { + "text" : "Substation Wimmis", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4507646, 47.435177 ], + [ 7.4508982, 47.4352606 ], + [ 7.4511232, 47.4356377 ], + [ 7.4511263, 47.435657 ], + [ 7.4515668, 47.4356559 ], + [ 7.4520365, 47.4356547 ], + [ 7.4521709, 47.4356576 ], + [ 7.4521896, 47.4356085 ], + [ 7.4522266, 47.435511 ], + [ 7.4522354, 47.435488 ], + [ 7.4522631, 47.4353966 ], + [ 7.4522813, 47.4353165 ], + [ 7.452286, 47.4352956 ], + [ 7.4523159, 47.4351635 ], + [ 7.452358, 47.4348494 ], + [ 7.452356, 47.4348315 ], + [ 7.4523369, 47.434728 ], + [ 7.4523343, 47.4346358 ], + [ 7.4523263, 47.4345638 ], + [ 7.4522957, 47.434478 ], + [ 7.4523131, 47.434261 ], + [ 7.4523275, 47.4341503 ], + [ 7.4523529, 47.4340406 ], + [ 7.4523890999999995, 47.4339322 ], + [ 7.4525379, 47.4335478 ], + [ 7.4525611, 47.4334973 ], + [ 7.4525908, 47.4334485 ], + [ 7.4526269, 47.4334017 ], + [ 7.452669, 47.4333574 ], + [ 7.4527169, 47.4333157 ], + [ 7.4527701, 47.4332772 ], + [ 7.4528282, 47.4332421 ], + [ 7.4528907, 47.4332106 ], + [ 7.4529572, 47.4331831 ], + [ 7.4534553, 47.4329973 ], + [ 7.4535045, 47.4329806 ], + [ 7.4535555, 47.4329666 ], + [ 7.453608, 47.4329554 ], + [ 7.4538777, 47.4329057 ], + [ 7.4539005, 47.4329007 ], + [ 7.4539225, 47.4328944 ], + [ 7.4539436, 47.4328868 ], + [ 7.4539636, 47.4328778 ], + [ 7.4539668, 47.4328761 ], + [ 7.4540015, 47.4328789 ], + [ 7.4543337, 47.4329052 ], + [ 7.4546827, 47.4329327 ], + [ 7.4552598, 47.4329783 ], + [ 7.4556296, 47.4330082 ], + [ 7.4555539, 47.4327938 ], + [ 7.4555332, 47.4326654 ], + [ 7.4555436, 47.4325634 ], + [ 7.4556261, 47.4324813 ], + [ 7.4558166, 47.432362 ], + [ 7.4559644, 47.4322655 ], + [ 7.4561498, 47.4321058 ], + [ 7.4562831, 47.4319056 ], + [ 7.4564546, 47.4316943 ], + [ 7.4566825, 47.4314996 ], + [ 7.4568945, 47.4313154 ], + [ 7.4571987, 47.4310774 ], + [ 7.4574381, 47.4309056 ], + [ 7.4575488, 47.4307543 ], + [ 7.4576231, 47.4305458 ], + [ 7.4577955, 47.4303424 ], + [ 7.4580242, 47.430095 ], + [ 7.4582495, 47.4298746 ], + [ 7.4582356, 47.429809 ], + [ 7.4581516, 47.4297922 ], + [ 7.4580667, 47.4297772 ], + [ 7.4579812, 47.429764 ], + [ 7.4579506, 47.4297605 ], + [ 7.4579196, 47.4297589 ], + [ 7.4578885, 47.4297591 ], + [ 7.4578575, 47.4297612 ], + [ 7.4578412, 47.4297401 ], + [ 7.4580269999999995, 47.4296747 ], + [ 7.4581861, 47.4296452 ], + [ 7.4584356, 47.4296019 ], + [ 7.4586656, 47.4295525 ], + [ 7.4588830999999995, 47.4294656 ], + [ 7.4592988, 47.4295925 ], + [ 7.4596446, 47.4297275 ], + [ 7.4599078, 47.4294794 ], + [ 7.4600952, 47.4292531 ], + [ 7.4603272, 47.4290293 ], + [ 7.4605488, 47.4291304 ], + [ 7.4607244, 47.4292657 ], + [ 7.4609848, 47.4294163 ], + [ 7.4611807, 47.4295255 ], + [ 7.4612624, 47.4295697 ], + [ 7.4616023, 47.4296967 ], + [ 7.4620163, 47.4298303 ], + [ 7.4620102, 47.4298521 ], + [ 7.4620049999999996, 47.4302467 ], + [ 7.4620264, 47.4304266 ], + [ 7.4620918, 47.430647 ], + [ 7.4621088, 47.4307594 ], + [ 7.4621389, 47.4307775 ], + [ 7.4628721, 47.4312434 ], + [ 7.4628771, 47.431238 ], + [ 7.4632703, 47.4309926 ], + [ 7.4635326, 47.4307103 ], + [ 7.4637634, 47.4305637 ], + [ 7.463913, 47.4304687 ], + [ 7.4639462, 47.4304342 ], + [ 7.4640821, 47.4302931 ], + [ 7.4642181, 47.4301519 ], + [ 7.4643125, 47.430054 ], + [ 7.4643219, 47.4300471 ], + [ 7.4644453, 47.4299566 ], + [ 7.4645662, 47.429868 ], + [ 7.4646884, 47.429778400000004 ], + [ 7.4647459, 47.4297363 ], + [ 7.4648428, 47.4296418 ], + [ 7.4654035, 47.4290953 ], + [ 7.4654713, 47.4290292 ], + [ 7.4655261, 47.4289758 ], + [ 7.4655669, 47.428936 ], + [ 7.465018, 47.4285902 ], + [ 7.4650955, 47.4285426 ], + [ 7.4651681, 47.428497899999996 ], + [ 7.465177, 47.4284925 ], + [ 7.4652656, 47.4284319 ], + [ 7.4653597, 47.4283717 ], + [ 7.4654641, 47.428305 ], + [ 7.4655391, 47.4282571 ], + [ 7.4656262, 47.4282014 ], + [ 7.4657077, 47.4281493 ], + [ 7.4657697, 47.4281097 ], + [ 7.4658043, 47.4280875 ], + [ 7.4658338, 47.4280687 ], + [ 7.4658754, 47.4280421 ], + [ 7.4658849, 47.4280348 ], + [ 7.4661371, 47.427841 ], + [ 7.4662615, 47.4277454 ], + [ 7.4664442, 47.427605 ], + [ 7.4665729, 47.4275061 ], + [ 7.4668132, 47.4273215 ], + [ 7.4668286, 47.4273097 ], + [ 7.4668822, 47.4272713 ], + [ 7.4669305, 47.4272367 ], + [ 7.4670161, 47.4271754 ], + [ 7.4671102, 47.4271129 ], + [ 7.4671136, 47.4271104 ], + [ 7.4672487, 47.4270114 ], + [ 7.4673636, 47.4269273 ], + [ 7.4674127, 47.4268913 ], + [ 7.4675495, 47.426718 ], + [ 7.4676241, 47.4266233 ], + [ 7.4673775, 47.4265607 ], + [ 7.4676188, 47.4262421 ], + [ 7.4675376, 47.4262103 ], + [ 7.4667373, 47.427208 ], + [ 7.4661273, 47.4276865 ], + [ 7.4659906, 47.4277151 ], + [ 7.4653434, 47.4278675 ], + [ 7.4652608, 47.4278583 ], + [ 7.4651314, 47.4278941 ], + [ 7.4649447, 47.4279659 ], + [ 7.4647544, 47.4280262 ], + [ 7.4645654, 47.4280698 ], + [ 7.4645638, 47.4280766 ], + [ 7.4645175, 47.4281885 ], + [ 7.4644919, 47.4282605 ], + [ 7.4644828, 47.4282977 ], + [ 7.4644832, 47.4283342 ], + [ 7.4645037, 47.4283682 ], + [ 7.4645302000000004, 47.4284011 ], + [ 7.4645586, 47.4284342 ], + [ 7.4645909, 47.4284657 ], + [ 7.4646303, 47.4284937 ], + [ 7.4646658, 47.4285178 ], + [ 7.4646444, 47.4285221 ], + [ 7.4632781, 47.4277846 ], + [ 7.4632627, 47.4277896 ], + [ 7.4631464, 47.4278199 ], + [ 7.4631093, 47.4278279 ], + [ 7.4630909, 47.4278276 ], + [ 7.4629984, 47.4278177 ], + [ 7.4629469, 47.4278168 ], + [ 7.4629279, 47.4278184 ], + [ 7.4628763, 47.4278207 ], + [ 7.4628238, 47.4278255 ], + [ 7.4627723, 47.4278334 ], + [ 7.4627215, 47.427843 ], + [ 7.4626678, 47.4278504 ], + [ 7.4626191, 47.4278618 ], + [ 7.4625157, 47.4278852 ], + [ 7.4624599, 47.4278885 ], + [ 7.4624065, 47.4278871 ], + [ 7.4623483, 47.4278883 ], + [ 7.4623467, 47.4278885 ], + [ 7.4613833, 47.429251 ], + [ 7.4608995, 47.4290826 ], + [ 7.4601733, 47.42883 ], + [ 7.4601718, 47.4288299 ], + [ 7.4596788, 47.428808599999996 ], + [ 7.4576906, 47.4291873 ], + [ 7.4575265, 47.4292689 ], + [ 7.4572593, 47.4294016 ], + [ 7.4563724, 47.4285371 ], + [ 7.4558578, 47.4285425 ], + [ 7.4557966, 47.4285432 ], + [ 7.4551293, 47.4285492 ], + [ 7.4550954, 47.428595 ], + [ 7.4549895, 47.4291024 ], + [ 7.4545234, 47.4293781 ], + [ 7.4537582, 47.4298328 ], + [ 7.4535706, 47.4299295 ], + [ 7.4528662, 47.4307885 ], + [ 7.4525647, 47.4309154 ], + [ 7.4523867, 47.431029 ], + [ 7.4523534, 47.4310779 ], + [ 7.4532606, 47.4311912 ], + [ 7.4541497, 47.4313035 ], + [ 7.4541006, 47.4315026 ], + [ 7.4540507, 47.4317049 ], + [ 7.4539998, 47.4319112 ], + [ 7.4539683, 47.432039 ], + [ 7.4539609, 47.4320979 ], + [ 7.4529705, 47.4319345 ], + [ 7.4520221, 47.4318807 ], + [ 7.4520151, 47.4319085 ], + [ 7.4520451, 47.4324941 ], + [ 7.4518617, 47.4328006 ], + [ 7.4516594, 47.4329897 ], + [ 7.4515084, 47.4331308 ], + [ 7.4511568, 47.4337286 ], + [ 7.4511024, 47.4344073 ], + [ 7.4511728, 47.4346339 ], + [ 7.4509857, 47.4348844 ], + [ 7.4507646, 47.435177 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns329", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Brunnhollen", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Brunnhollen", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Brunnhollen", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Brunnhollen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8833475, 47.4120056 ], + [ 7.8833801, 47.4122249 ], + [ 7.8833867, 47.4123975 ], + [ 7.883405, 47.4124727 ], + [ 7.8834701, 47.4124581 ], + [ 7.8834731, 47.4124801 ], + [ 7.8835085, 47.4125526 ], + [ 7.8835117, 47.4127857 ], + [ 7.8835212, 47.4128325 ], + [ 7.8835553, 47.4129128 ], + [ 7.8836167, 47.4129663 ], + [ 7.8836797, 47.4130743 ], + [ 7.8837237, 47.4131721 ], + [ 7.883748, 47.4132577 ], + [ 7.8837715, 47.4133381 ], + [ 7.8838065, 47.4134452 ], + [ 7.8838374, 47.4134855 ], + [ 7.8838849, 47.4135761 ], + [ 7.8839527, 47.4136453 ], + [ 7.8839898, 47.4137161 ], + [ 7.8840524, 47.4137776 ], + [ 7.8841262, 47.413807 ], + [ 7.8842362999999995, 47.4138145 ], + [ 7.8843964, 47.4138175 ], + [ 7.8845058, 47.413834 ], + [ 7.8847757, 47.4138621 ], + [ 7.8848904, 47.4138654 ], + [ 7.8848969, 47.4138426 ], + [ 7.8850184, 47.4138528 ], + [ 7.8851803, 47.4138719 ], + [ 7.8854046, 47.4138921 ], + [ 7.8855699, 47.4139033 ], + [ 7.8857519, 47.4138985 ], + [ 7.8859811, 47.4138721 ], + [ 7.886168, 47.4138344 ], + [ 7.8864362, 47.4137447 ], + [ 7.8866268, 47.4137224 ], + [ 7.8868929, 47.4137029 ], + [ 7.8872359, 47.413684 ], + [ 7.8876241, 47.4136589 ], + [ 7.8878885, 47.4136395 ], + [ 7.8881239, 47.4135997 ], + [ 7.8884373, 47.4135202 ], + [ 7.8887718, 47.4134072 ], + [ 7.8890047, 47.413325 ], + [ 7.8894258, 47.4131849 ], + [ 7.8896981, 47.4130633 ], + [ 7.8899854, 47.4129336 ], + [ 7.8901401, 47.4128654 ], + [ 7.8903296, 47.4127805 ], + [ 7.890555, 47.4126975 ], + [ 7.8907632, 47.4126213 ], + [ 7.8908162, 47.4126071 ], + [ 7.8908702, 47.4125944 ], + [ 7.8909249, 47.4125835 ], + [ 7.8911338, 47.4125432 ], + [ 7.8909327, 47.4124703 ], + [ 7.8904701, 47.4126267 ], + [ 7.890083, 47.4127848 ], + [ 7.8897062, 47.4129612 ], + [ 7.8893059, 47.4131332 ], + [ 7.8887581, 47.413311 ], + [ 7.8883305, 47.4134592 ], + [ 7.8881204, 47.4135091 ], + [ 7.8879369, 47.4135451 ], + [ 7.8877329, 47.4135685 ], + [ 7.8874718, 47.4135811 ], + [ 7.887169, 47.4136077 ], + [ 7.8868762, 47.4136229 ], + [ 7.8865297, 47.4136453 ], + [ 7.8863007, 47.4136713 ], + [ 7.8863152, 47.4137125 ], + [ 7.8859942, 47.4137902 ], + [ 7.8858105, 47.4138098 ], + [ 7.8856588, 47.4138213 ], + [ 7.8854582, 47.4138101 ], + [ 7.8852761000000005, 47.4137979 ], + [ 7.8850973, 47.4137764 ], + [ 7.8850464, 47.4137714 ], + [ 7.8850502, 47.4136621 ], + [ 7.8850886, 47.4135847 ], + [ 7.8850867000000004, 47.4134353 ], + [ 7.8850572, 47.4134274 ], + [ 7.8850314, 47.4133607 ], + [ 7.8849677, 47.4133111 ], + [ 7.8849306, 47.4132119 ], + [ 7.8849358, 47.4130951 ], + [ 7.8849364, 47.4130526 ], + [ 7.8850736, 47.4130531 ], + [ 7.8854437, 47.4130397 ], + [ 7.8857668, 47.4130301 ], + [ 7.886118, 47.4130008 ], + [ 7.8863768, 47.4129572 ], + [ 7.8865172999999995, 47.4129401 ], + [ 7.8865556, 47.4129282 ], + [ 7.88659, 47.4128935 ], + [ 7.8865941, 47.4128453 ], + [ 7.8865977, 47.4126893 ], + [ 7.8865894999999995, 47.4125323 ], + [ 7.8865556, 47.4123479 ], + [ 7.8864991, 47.412119 ], + [ 7.8863475, 47.4116639 ], + [ 7.8862114, 47.4113106 ], + [ 7.8864371, 47.4112881 ], + [ 7.8866279, 47.4112715 ], + [ 7.8868786, 47.4112419 ], + [ 7.8870121, 47.4112144 ], + [ 7.8871067, 47.4111746 ], + [ 7.8872077, 47.4111095 ], + [ 7.8872713999999995, 47.4110275 ], + [ 7.8873279, 47.4109285 ], + [ 7.887326, 47.4108276 ], + [ 7.8872037, 47.410832 ], + [ 7.8872032999999995, 47.4108962 ], + [ 7.8871778, 47.4109618 ], + [ 7.8871372, 47.4110241 ], + [ 7.8870646, 47.411082 ], + [ 7.8869667, 47.4111299 ], + [ 7.8868284, 47.4111609 ], + [ 7.886479, 47.4112005 ], + [ 7.8861898, 47.4112317 ], + [ 7.8860509, 47.4112443 ], + [ 7.8861497, 47.4114866 ], + [ 7.8862771, 47.4118239 ], + [ 7.8863795, 47.4121671 ], + [ 7.8864362, 47.4124063 ], + [ 7.8864772, 47.4126984 ], + [ 7.8864734, 47.4128429 ], + [ 7.8863367, 47.4128728 ], + [ 7.8861112, 47.4129067 ], + [ 7.8858352, 47.4129332 ], + [ 7.8854936, 47.4129453 ], + [ 7.8851004, 47.4129658 ], + [ 7.8849373, 47.4129845 ], + [ 7.8848058, 47.4129458 ], + [ 7.884699, 47.4128985 ], + [ 7.8845568, 47.4128101 ], + [ 7.8842929999999996, 47.4126318 ], + [ 7.8840461, 47.4125285 ], + [ 7.8838349999999995, 47.4124431 ], + [ 7.883572, 47.4123642 ], + [ 7.883521, 47.4123252 ], + [ 7.8835169, 47.4122933 ], + [ 7.8835002, 47.4121173 ], + [ 7.8834721, 47.4119575 ], + [ 7.8834609, 47.4118101 ], + [ 7.8834781, 47.4116602 ], + [ 7.8834959, 47.411548 ], + [ 7.8835287, 47.4114207 ], + [ 7.8835776, 47.411267 ], + [ 7.8836323, 47.411151 ], + [ 7.8834862999999995, 47.4111307 ], + [ 7.8834452, 47.4112489 ], + [ 7.8834026, 47.4113877 ], + [ 7.8833699, 47.4115057 ], + [ 7.8833353, 47.4117119 ], + [ 7.8833298, 47.4118606 ], + [ 7.8833475, 47.4120056 ] + ], + [ + [ 7.8846733, 47.4137568 ], + [ 7.8843977, 47.4137664 ], + [ 7.8843071, 47.4137573 ], + [ 7.8841825, 47.4137404 ], + [ 7.8841375, 47.4137171 ], + [ 7.884119, 47.41369 ], + [ 7.8841000999999995, 47.4136664 ], + [ 7.8840667, 47.4135995 ], + [ 7.8840242, 47.4134591 ], + [ 7.8839909, 47.4134063 ], + [ 7.8839717, 47.4133147 ], + [ 7.8839418, 47.4132698 ], + [ 7.8838918, 47.4132087 ], + [ 7.8838607, 47.4131425 ], + [ 7.8838065, 47.4130378 ], + [ 7.8837779, 47.4129414 ], + [ 7.8837341, 47.412829 ], + [ 7.8836979, 47.4127573 ], + [ 7.8836034, 47.4125508 ], + [ 7.8835804, 47.4124512 ], + [ 7.8837625, 47.4125102 ], + [ 7.8839924, 47.4126081 ], + [ 7.8844003, 47.4128837 ], + [ 7.8847372, 47.4130974 ], + [ 7.8847274, 47.4132011 ], + [ 7.8847058, 47.4132655 ], + [ 7.8846938, 47.4133011 ], + [ 7.8846018, 47.4133667 ], + [ 7.884558, 47.4133936 ], + [ 7.8845877, 47.4135211 ], + [ 7.8846187, 47.4136539 ], + [ 7.8846733, 47.4137568 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns362", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Mapprach - Hofmatt", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Mapprach - Hofmatt", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Mapprach - Hofmatt", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Mapprach - Hofmatt", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4845605, 47.4572164 ], + [ 7.4845314, 47.4572158 ], + [ 7.4846362, 47.4573126 ], + [ 7.4846669, 47.457341 ], + [ 7.4847283000000004, 47.4573977 ], + [ 7.4848966, 47.4574414 ], + [ 7.4852333, 47.4575286 ], + [ 7.4856644, 47.4576043 ], + [ 7.4860257, 47.4577175 ], + [ 7.4862183, 47.4577668 ], + [ 7.4867364, 47.4578997 ], + [ 7.4872073, 47.4579842 ], + [ 7.4872491, 47.4579917 ], + [ 7.4873861999999995, 47.4580163 ], + [ 7.4876781999999995, 47.4580686 ], + [ 7.4883134, 47.4582104 ], + [ 7.4891893, 47.4583655 ], + [ 7.4899495, 47.4584937 ], + [ 7.4906331999999995, 47.4586599 ], + [ 7.4906801, 47.4586688 ], + [ 7.4916443, 47.4588503 ], + [ 7.492362, 47.4589765 ], + [ 7.4924222, 47.4589818 ], + [ 7.4929217, 47.4590254 ], + [ 7.4932352, 47.4590528 ], + [ 7.4937815, 47.4590866 ], + [ 7.4939453, 47.4590968 ], + [ 7.4939971, 47.4591063 ], + [ 7.4940748, 47.4591207 ], + [ 7.4950518, 47.459300999999996 ], + [ 7.495581, 47.4593435 ], + [ 7.4956626, 47.45935 ], + [ 7.496306, 47.4594017 ], + [ 7.4963507, 47.4594053 ], + [ 7.4963661, 47.4594117 ], + [ 7.4964424, 47.4594434 ], + [ 7.4969616, 47.4596592 ], + [ 7.4973016, 47.4596678 ], + [ 7.497302, 47.4596678 ], + [ 7.498216, 47.459691 ], + [ 7.4986719, 47.4596411 ], + [ 7.4990618, 47.4595984 ], + [ 7.499373, 47.4595643 ], + [ 7.5009497, 47.4593894 ], + [ 7.5010102, 47.4593827 ], + [ 7.498075, 47.4584146 ], + [ 7.4980388, 47.4584026 ], + [ 7.497828, 47.4584005 ], + [ 7.4976924, 47.4583986 ], + [ 7.4974766, 47.45839 ], + [ 7.4972926, 47.4583759 ], + [ 7.4970663, 47.4583498 ], + [ 7.4968013, 47.4583111 ], + [ 7.4965787, 47.4582738 ], + [ 7.4965643, 47.4582711 ], + [ 7.4963978000000004, 47.4582409 ], + [ 7.4962494, 47.4582113 ], + [ 7.4961144, 47.4581797 ], + [ 7.4959671, 47.458141499999996 ], + [ 7.4958386, 47.4581046 ], + [ 7.4957015, 47.4580657 ], + [ 7.4954562, 47.4579982 ], + [ 7.4952707, 47.457944 ], + [ 7.4950788, 47.4578851 ], + [ 7.4949447, 47.4578449 ], + [ 7.4947931, 47.4578049 ], + [ 7.4946354, 47.4577665 ], + [ 7.4944723, 47.4577267 ], + [ 7.4942532, 47.4576719 ], + [ 7.4939681, 47.4576079 ], + [ 7.4937885, 47.457569 ], + [ 7.4935407, 47.457525 ], + [ 7.4934073, 47.4574902 ], + [ 7.4933417, 47.4574688 ], + [ 7.4932678, 47.4574395 ], + [ 7.4932098, 47.4574163 ], + [ 7.4931212, 47.4573865 ], + [ 7.4930028, 47.4573923 ], + [ 7.4928821, 47.4573995 ], + [ 7.491912, 47.4574556 ], + [ 7.491438, 47.4574887 ], + [ 7.4909682, 47.4574405 ], + [ 7.4909128, 47.4574349 ], + [ 7.4908672, 47.4574302 ], + [ 7.4896576, 47.4573612 ], + [ 7.488654, 47.4573698 ], + [ 7.4885376, 47.4573708 ], + [ 7.4882501999999995, 47.457357 ], + [ 7.4878786, 47.457339 ], + [ 7.4874651, 47.4573191 ], + [ 7.4870575, 47.4572943 ], + [ 7.4864173, 47.4572555 ], + [ 7.4860561, 47.4572479 ], + [ 7.4859824, 47.4572463 ], + [ 7.4845605, 47.4572164 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns019", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Radme, Hanslifels und Chällengraben", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Radme, Hanslifels und Chällengraben", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Radme, Hanslifels und Chällengraben", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Radme, Hanslifels und Chällengraben", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.0685161, 46.3336767 ], + [ 7.0685174, 46.333683 ], + [ 7.0690694, 46.3346221 ], + [ 7.0697531, 46.3352946 ], + [ 7.0707116, 46.3356719 ], + [ 7.0718312, 46.3360408 ], + [ 7.072676, 46.3363449 ], + [ 7.0739801, 46.3365074 ], + [ 7.0762229, 46.3365308 ], + [ 7.0771864, 46.3363594 ], + [ 7.0779579, 46.3361631 ], + [ 7.0779773, 46.3353931 ], + [ 7.077956, 46.3347004 ], + [ 7.0779409, 46.334237 ], + [ 7.0762963, 46.332944499999996 ], + [ 7.0760999, 46.3327837 ], + [ 7.0740822, 46.3331155 ], + [ 7.0722696, 46.3342125 ], + [ 7.0685161, 46.3336767 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00009", + "country" : "CHE", + "name" : [ + { + "text" : "Petit Chamossaire", + "lang" : "de-CH" + }, + { + "text" : "Petit Chamossaire", + "lang" : "fr-CH" + }, + { + "text" : "Petit Chamossaire", + "lang" : "it-CH" + }, + { + "text" : "Petit Chamossaire", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "startDateTime" : "2024-11-15T00:00:00+01:00", + "endDateTime" : "2025-04-15T00:00:00+02:00" + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Generaldirektion für Umwelt", + "lang" : "de-CH" + }, + { + "text" : "Direction générale de l'environnement", + "lang" : "fr-CH" + }, + { + "text" : "Direzione generale dell'Ambiente", + "lang" : "it-CH" + }, + { + "text" : "Environment Department", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.dge@vd.ch", + "phone" : "0041213164422", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.9309374, 45.9799364 ], + [ 8.9309283, 45.9797953 ], + [ 8.9309086, 45.9796547 ], + [ 8.9308783, 45.979515 ], + [ 8.9308376, 45.9793766 ], + [ 8.9307865, 45.9792398 ], + [ 8.9307253, 45.9791052 ], + [ 8.930654, 45.9789729 ], + [ 8.9305729, 45.9788434 ], + [ 8.9304822, 45.9787171 ], + [ 8.9303821, 45.9785942 ], + [ 8.930273, 45.9784752 ], + [ 8.9301551, 45.9783603 ], + [ 8.9300287, 45.9782499 ], + [ 8.9298941, 45.9781442 ], + [ 8.9297519, 45.9780436 ], + [ 8.929602299999999, 45.9779483 ], + [ 8.9294457, 45.9778586 ], + [ 8.9292826, 45.9777747 ], + [ 8.9291135, 45.9776969 ], + [ 8.9289387, 45.9776254 ], + [ 8.9287588, 45.9775604 ], + [ 8.9285743, 45.977502 ], + [ 8.9283856, 45.9774504 ], + [ 8.9281933, 45.9774058 ], + [ 8.927998, 45.9773682 ], + [ 8.9278001, 45.9773379 ], + [ 8.9276002, 45.9773148 ], + [ 8.9273988, 45.977299 ], + [ 8.9271965, 45.9772906 ], + [ 8.9269939, 45.9772895 ], + [ 8.926791399999999, 45.9772959 ], + [ 8.9265898, 45.9773097 ], + [ 8.9263894, 45.9773308 ], + [ 8.9261909, 45.9773592 ], + [ 8.9259948, 45.9773947 ], + [ 8.9258016, 45.9774374 ], + [ 8.9256119, 45.9774871 ], + [ 8.9254262, 45.9775436 ], + [ 8.925245, 45.9776069 ], + [ 8.9250687, 45.9776766 ], + [ 8.924898, 45.977752699999996 ], + [ 8.9247332, 45.9778349 ], + [ 8.9245748, 45.977923 ], + [ 8.9244232, 45.9780168 ], + [ 8.9242789, 45.978116 ], + [ 8.9241422, 45.9782203 ], + [ 8.9240135, 45.9783294 ], + [ 8.9238932, 45.9784431 ], + [ 8.9237816, 45.9785611 ], + [ 8.923679, 45.9786829 ], + [ 8.9235857, 45.9788083 ], + [ 8.923502, 45.978937 ], + [ 8.923428, 45.9790685 ], + [ 8.923364, 45.9792026 ], + [ 8.9233101, 45.9793388 ], + [ 8.9232665, 45.9794767 ], + [ 8.9232334, 45.9796161 ], + [ 8.9232107, 45.9797565 ], + [ 8.9231986, 45.9798975 ], + [ 8.9231972, 45.9800388 ], + [ 8.9232063, 45.98018 ], + [ 8.923226, 45.9803206 ], + [ 8.9232563, 45.9804603 ], + [ 8.923297, 45.9805987 ], + [ 8.923348, 45.9807354 ], + [ 8.9234092, 45.9808701 ], + [ 8.9234805, 45.9810024 ], + [ 8.9235616, 45.9811319 ], + [ 8.9236523, 45.9812582 ], + [ 8.9237523, 45.9813811 ], + [ 8.9238615, 45.9815001 ], + [ 8.9239794, 45.981615 ], + [ 8.9241058, 45.9817254 ], + [ 8.9242403, 45.9818311 ], + [ 8.9243825, 45.9819317 ], + [ 8.9245322, 45.982027 ], + [ 8.9246887, 45.9821167 ], + [ 8.9248518, 45.9822006 ], + [ 8.925021, 45.9822784 ], + [ 8.925195800000001, 45.9823499 ], + [ 8.9253757, 45.982415 ], + [ 8.9255602, 45.9824734 ], + [ 8.9257489, 45.982525 ], + [ 8.9259412, 45.9825696 ], + [ 8.9261365, 45.9826072 ], + [ 8.9263345, 45.9826375 ], + [ 8.9265344, 45.9826606 ], + [ 8.9267358, 45.9826764 ], + [ 8.9269381, 45.9826848 ], + [ 8.9271408, 45.9826858 ], + [ 8.9273432, 45.9826795 ], + [ 8.927544900000001, 45.9826657 ], + [ 8.9277453, 45.9826446 ], + [ 8.9279438, 45.9826162 ], + [ 8.92814, 45.9825807 ], + [ 8.9283332, 45.982538 ], + [ 8.9285229, 45.9824883 ], + [ 8.9287086, 45.9824317 ], + [ 8.9288898, 45.9823685 ], + [ 8.9290661, 45.9822987 ], + [ 8.9292368, 45.9822226 ], + [ 8.9294016, 45.9821404 ], + [ 8.92956, 45.9820523 ], + [ 8.9297116, 45.9819585 ], + [ 8.9298559, 45.981859299999996 ], + [ 8.9299926, 45.981755 ], + [ 8.9301213, 45.9816459 ], + [ 8.9302416, 45.9815322 ], + [ 8.9303532, 45.9814142 ], + [ 8.9304558, 45.9812924 ], + [ 8.930549, 45.981167 ], + [ 8.9306328, 45.9810383 ], + [ 8.9307068, 45.9809068 ], + [ 8.9307708, 45.9807727 ], + [ 8.9308246, 45.9806365 ], + [ 8.930868199999999, 45.9804985 ], + [ 8.9309013, 45.9803591 ], + [ 8.9309239, 45.9802187 ], + [ 8.930935999999999, 45.9800777 ], + [ 8.9309374, 45.9799364 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0087", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Pian Scairolo", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Pian Scairolo", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Pian Scairolo", + "lang" : "it-CH" + }, + { + "text" : "Substation Pian Scairolo", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.03772, 47.0793388 ], + [ 9.0375756, 47.0789942 ], + [ 9.0374456, 47.0788581 ], + [ 9.0373387, 47.0788348 ], + [ 9.0372487, 47.0787442 ], + [ 9.0371841, 47.0786479 ], + [ 9.0371034, 47.0785065 ], + [ 9.0369328, 47.07828 ], + [ 9.0367616, 47.0781156 ], + [ 9.0366315, 47.0779738 ], + [ 9.0364519, 47.0778318 ], + [ 9.0362798, 47.077718 ], + [ 9.0360922, 47.0776098 ], + [ 9.0358627, 47.0775069 ], + [ 9.0356909, 47.0774043 ], + [ 9.0355601, 47.0772683 ], + [ 9.0354881, 47.0771157 ], + [ 9.0354815, 47.076924 ], + [ 9.0354828, 47.0767719 ], + [ 9.0354858, 47.0765409 ], + [ 9.0354376, 47.0763604 ], + [ 9.0353582, 47.0761007 ], + [ 9.0351799, 47.0758628 ], + [ 9.035082, 47.075727 ], + [ 9.0349358, 47.0755965 ], + [ 9.0348289, 47.0755168 ], + [ 9.0347888, 47.0754152 ], + [ 9.0347335, 47.0752459 ], + [ 9.0347101, 47.0750654 ], + [ 9.0346296, 47.0749071 ], + [ 9.0345074, 47.0747823 ], + [ 9.0342696, 47.0746737 ], + [ 9.0340324, 47.0745595 ], + [ 9.0338113, 47.0744848 ], + [ 9.0336965, 47.0744164 ], + [ 9.0336075, 47.0743032 ], + [ 9.0334933, 47.0741728 ], + [ 9.0332723, 47.0740193 ], + [ 9.0330845, 47.0738772 ], + [ 9.0328388, 47.0737516 ], + [ 9.0326753, 47.0736774 ], + [ 9.032586, 47.073581 ], + [ 9.03248, 47.0734788 ], + [ 9.0323422, 47.0732977 ], + [ 9.0322204, 47.0731335 ], + [ 9.0320897, 47.0729748 ], + [ 9.0319267, 47.072833 ], + [ 9.0317302, 47.0727303 ], + [ 9.0314924, 47.0726217 ], + [ 9.0311647, 47.072535 ], + [ 9.030704, 47.0724587 ], + [ 9.0303764, 47.072372 ], + [ 9.0298998, 47.072262 ], + [ 9.0295638, 47.0721414 ], + [ 9.0292369, 47.0719421 ], + [ 9.0289343, 47.0717316 ], + [ 9.0287304, 47.0715725 ], + [ 9.028436, 47.0713847 ], + [ 9.028306, 47.0712203 ], + [ 9.028193, 47.0709887 ], + [ 9.0280717, 47.0707569 ], + [ 9.0280077, 47.0705705 ], + [ 9.0279854, 47.0704013 ], + [ 9.0279466, 47.0701756 ], + [ 9.02794, 47.0699783 ], + [ 9.027984, 47.069742 ], + [ 9.0280359, 47.0694944 ], + [ 9.0280623, 47.0692749 ], + [ 9.028123, 47.0690442 ], + [ 9.0281085, 47.0688357 ], + [ 9.0280937, 47.0686666 ], + [ 9.0280053, 47.0684632 ], + [ 9.027875, 47.0682877 ], + [ 9.0277212, 47.0680669 ], + [ 9.0274522, 47.0677947 ], + [ 9.0272401, 47.0676355 ], + [ 9.0271589, 47.0675336 ], + [ 9.02712, 47.0673587 ], + [ 9.0269987, 47.0671269 ], + [ 9.0268784, 47.0668443 ], + [ 9.0267896, 47.066624 ], + [ 9.0266122, 47.0663298 ], + [ 9.0264908, 47.0660924 ], + [ 9.0264604, 47.0659007 ], + [ 9.0263953, 47.0657875 ], + [ 9.0262812, 47.0657135 ], + [ 9.0261337, 47.0656225 ], + [ 9.0258888, 47.0654406 ], + [ 9.0256598, 47.0653208 ], + [ 9.0255032, 47.0653141 ], + [ 9.0253305, 47.0652903 ], + [ 9.0250923, 47.0652776 ], + [ 9.0247718, 47.065236 ], + [ 9.0243362, 47.0651711 ], + [ 9.0237202, 47.0650713 ], + [ 9.0222174, 47.0647909 ], + [ 9.0218072, 47.0646925 ], + [ 9.0214788, 47.0646058 ], + [ 9.0213072, 47.0644806 ], + [ 9.0212097, 47.0643842 ], + [ 9.0210783, 47.0643101 ], + [ 9.0206771, 47.0641835 ], + [ 9.0202415, 47.0640622 ], + [ 9.0198476, 47.0639864 ], + [ 9.019371, 47.0638988 ], + [ 9.0189114, 47.0638281 ], + [ 9.0184761, 47.0637464 ], + [ 9.0181312, 47.0636877 ], + [ 9.0177951, 47.0635896 ], + [ 9.0174418, 47.0634972 ], + [ 9.016949199999999, 47.0634262 ], + [ 9.0164155, 47.063327 ], + [ 9.0157748, 47.0631988 ], + [ 9.0152081, 47.0630935 ], + [ 9.0146502, 47.0629546 ], + [ 9.0141907, 47.0628332 ], + [ 9.0138784, 47.0627353 ], + [ 9.0135836, 47.0626432 ], + [ 9.0130659, 47.0625834 ], + [ 9.0126139, 47.0625183 ], + [ 9.0123097, 47.0624713 ], + [ 9.0120721, 47.0624246 ], + [ 9.0117933, 47.0623439 ], + [ 9.011556, 47.0621958 ], + [ 9.0113434, 47.0620703 ], + [ 9.0111799, 47.0619678 ], + [ 9.0110327, 47.061888 ], + [ 9.0108278, 47.0618021 ], + [ 9.0100648, 47.0615998 ], + [ 9.0096302, 47.0614279 ], + [ 9.0093189, 47.0613356 ], + [ 9.0090475, 47.0613112 ], + [ 9.0087845, 47.0612645 ], + [ 9.0085058, 47.0612174 ], + [ 9.0082016, 47.0611704 ], + [ 9.0078732, 47.0610836 ], + [ 9.0074957, 47.0609796 ], + [ 9.0071598, 47.0608872 ], + [ 9.0068801, 47.0608346 ], + [ 9.0066093, 47.0608328 ], + [ 9.0063786, 47.0608481 ], + [ 9.0061647, 47.0608523 ], + [ 9.0059341, 47.0608452 ], + [ 9.0057455, 47.0608101 ], + [ 9.0055157, 47.0607466 ], + [ 9.0052775, 47.0607055 ], + [ 9.0050644, 47.0606195 ], + [ 9.0048509, 47.0605787 ], + [ 9.0046203, 47.0605997 ], + [ 9.0043888, 47.0606769 ], + [ 9.0041576, 47.0607599 ], + [ 9.0039933, 47.06077 ], + [ 9.0037627, 47.0607629 ], + [ 9.0033765, 47.0607545 ], + [ 9.0029892, 47.0607915 ], + [ 9.0025937, 47.0608001 ], + [ 9.0022812, 47.0608374 ], + [ 9.0019112, 47.0607897 ], + [ 9.0015989, 47.0607481 ], + [ 9.0012298, 47.0606442 ], + [ 9.0009348, 47.0605465 ], + [ 9.0005569, 47.0604538 ], + [ 9.0003518, 47.0603903 ], + [ 8.9999902, 47.0603767 ], + [ 8.9992907, 47.0603775 ], + [ 8.9985015, 47.060344 ], + [ 8.9981227, 47.0603358 ], + [ 8.9978594, 47.0603621 ], + [ 8.9977109, 47.0603781 ], + [ 8.997596, 47.0603604 ], + [ 8.9964379, 47.0601496 ], + [ 8.995921, 47.0600616 ], + [ 8.9956006, 47.06002 ], + [ 8.995337, 47.0600125 ], + [ 8.9951472, 47.0600506 ], + [ 8.9948597, 47.0600374 ], + [ 8.994638, 47.0599965 ], + [ 8.9944252, 47.0598936 ], + [ 8.9940567, 47.0597276 ], + [ 8.9938104, 47.059664 ], + [ 8.9935232, 47.0596057 ], + [ 8.9931779, 47.0595582 ], + [ 8.9929478, 47.0595398 ], + [ 8.9926852, 47.0595098 ], + [ 8.9924877, 47.0595084 ], + [ 8.9922988, 47.0594903 ], + [ 8.99211, 47.0594495 ], + [ 8.9918641, 47.0593689 ], + [ 8.9917, 47.059272 ], + [ 8.9914714, 47.0591353 ], + [ 8.9912173, 47.0590546 ], + [ 8.9910528, 47.0590309 ], + [ 8.9908972, 47.0590243 ], + [ 8.9906338, 47.0590223 ], + [ 8.9903041, 47.0590314 ], + [ 8.9900241, 47.0590802 ], + [ 8.989768, 47.0591573 ], + [ 8.9894465, 47.0592508 ], + [ 8.9892066, 47.0593506 ], + [ 8.9889921, 47.0593885 ], + [ 8.9888277, 47.0593931 ], + [ 8.9885645, 47.0593968 ], + [ 8.988284, 47.059457 ], + [ 8.9879454, 47.0595279 ], + [ 8.9876484, 47.059616 ], + [ 8.9873186, 47.0596757 ], + [ 8.9870463, 47.0597357 ], + [ 8.9867419, 47.0597674 ], + [ 8.9863615, 47.0599 ], + [ 8.9860561, 47.0600388 ], + [ 8.9857249, 47.0602224 ], + [ 8.985401, 47.0604344 ], + [ 8.9849461, 47.0606678 ], + [ 8.9845818, 47.0608737 ], + [ 8.9844252, 47.0608953 ], + [ 8.9842277, 47.0608938 ], + [ 8.9839732, 47.0608582 ], + [ 8.9837757, 47.060885 ], + [ 8.9835117, 47.060917 ], + [ 8.9832399, 47.0609659 ], + [ 8.9830165, 47.0610375 ], + [ 8.982744499999999, 47.0611089 ], + [ 8.9825381, 47.0611412 ], + [ 8.9823656, 47.0611513 ], + [ 8.9821597, 47.0611161 ], + [ 8.9819628, 47.0610809 ], + [ 8.9817164, 47.0610679 ], + [ 8.9814198, 47.061111 ], + [ 8.9811641, 47.0611486 ], + [ 8.9808759, 47.0611692 ], + [ 8.9806873, 47.0611341 ], + [ 8.9804651, 47.0611043 ], + [ 8.9803344, 47.0610526 ], + [ 8.980005, 47.0610166 ], + [ 8.9795863, 47.0609911 ], + [ 8.979117, 47.0609822 ], + [ 8.978894799999999, 47.0610088 ], + [ 8.9787561, 47.0609064 ], + [ 8.9785836, 47.060832 ], + [ 8.9783953, 47.0607518 ], + [ 8.9782153, 47.0606998 ], + [ 8.9778783, 47.0606862 ], + [ 8.977697299999999, 47.0606849 ], + [ 8.9774919, 47.0606665 ], + [ 8.9772856, 47.0606482 ], + [ 8.9771213, 47.0606302 ], + [ 8.9769573, 47.0605896 ], + [ 8.9766133, 47.0605026 ], + [ 8.9764081, 47.0604054 ], + [ 8.9762111, 47.0603646 ], + [ 8.9760137, 47.0603407 ], + [ 8.9758657, 47.0603453 ], + [ 8.974522799999999, 47.060488 ], + [ 8.9739302, 47.0605402 ], + [ 8.9736999, 47.0605441 ], + [ 8.9734451, 47.0604974 ], + [ 8.9730998, 47.0604498 ], + [ 8.9727547, 47.0604079 ], + [ 8.97241, 47.060383 ], + [ 8.9719323, 47.0603965 ], + [ 8.9715454, 47.0603881 ], + [ 8.9714312, 47.0603366 ], + [ 8.9711933, 47.0602504 ], + [ 8.9710954, 47.0602216 ], + [ 8.9709802, 47.0602208 ], + [ 8.9708237, 47.0601859 ], + [ 8.9705363, 47.0601782 ], + [ 8.9703707, 47.0602278 ], + [ 8.9701485, 47.0602544 ], + [ 8.9699844, 47.0602137 ], + [ 8.9698438, 47.0602465 ], + [ 8.9697042, 47.060285 ], + [ 8.9694571, 47.0602776 ], + [ 8.9691773, 47.0602756 ], + [ 8.9688978, 47.0602567 ], + [ 8.9685439, 47.0602542 ], + [ 8.9683215, 47.0602471 ], + [ 8.9680914, 47.0602566 ], + [ 8.967983199999999, 47.0603292 ], + [ 8.9678676, 47.0604297 ], + [ 8.967751, 47.0604965 ], + [ 8.967603, 47.0605011 ], + [ 8.9674957, 47.0605173 ], + [ 8.9673559, 47.0605501 ], + [ 8.9671661, 47.0605882 ], + [ 8.9669681, 47.060598 ], + [ 8.9667541, 47.0606248 ], + [ 8.9664665, 47.0606114 ], + [ 8.9662445, 47.0606154 ], + [ 8.9659969, 47.0606475 ], + [ 8.9658575, 47.0606353 ], + [ 8.9656899, 47.0608481 ], + [ 8.9656319, 47.0608929 ], + [ 8.9655409, 47.0609316 ], + [ 8.9654338, 47.0609871 ], + [ 8.9653421, 47.0610598 ], + [ 8.9652591, 47.0611493 ], + [ 8.9651433, 47.0612161 ], + [ 8.9650185, 47.0613111 ], + [ 8.964959799999999, 47.0613894 ], + [ 8.9648388, 47.0619352 ], + [ 8.9644073, 47.0622138 ], + [ 8.9645964, 47.0622096 ], + [ 8.9646624, 47.0622156 ], + [ 8.9647439, 47.0622726 ], + [ 8.9648337, 47.0623352 ], + [ 8.9649408, 47.0623415 ], + [ 8.9650146, 47.062359 ], + [ 8.9650801, 47.0623764 ], + [ 8.9651452, 47.0624389 ], + [ 8.9652273, 47.0624901 ], + [ 8.965359, 47.0624629 ], + [ 8.965606, 47.0624647 ], + [ 8.9657615, 47.0625221 ], + [ 8.9658264, 47.0625788 ], + [ 8.9659079, 47.0626639 ], + [ 8.9659975, 47.0627209 ], + [ 8.9660718, 47.0627271 ], + [ 8.9661712, 47.062694 ], + [ 8.9663607, 47.0626447 ], + [ 8.9665758, 47.0625392 ], + [ 8.9667987, 47.0624787 ], + [ 8.9670379, 47.062441 ], + [ 8.9672922, 47.062471 ], + [ 8.9674724, 47.0625568 ], + [ 8.9676444, 47.0626144 ], + [ 8.9679168, 47.0625881 ], + [ 8.968188, 47.0625731 ], + [ 8.968435, 47.0625524 ], + [ 8.9685989, 47.0626154 ], + [ 8.9687546, 47.0626786 ], + [ 8.9689352, 47.0627474 ], + [ 8.9691816, 47.0627886 ], + [ 8.9692793, 47.0628682 ], + [ 8.969311, 47.0629416 ], + [ 8.9694166, 47.0630946 ], + [ 8.9697425, 47.063356 ], + [ 8.9699796, 47.0635324 ], + [ 8.9701994, 47.0636804 ], + [ 8.9703714, 47.0638225 ], + [ 8.9705585, 47.0639478 ], + [ 8.9706557, 47.0640949 ], + [ 8.9707776, 47.0642142 ], + [ 8.9713115, 47.0642968 ], + [ 8.9714264, 47.0643427 ], + [ 8.9716315, 47.0644061 ], + [ 8.9717705, 47.0644634 ], + [ 8.9720907, 47.0645502 ], + [ 8.9723041, 47.0645911 ], + [ 8.9725502, 47.0646492 ], + [ 8.972764, 47.0647015 ], + [ 8.9730015, 47.0647482 ], + [ 8.9731661, 47.0647775 ], + [ 8.9734451, 47.0648076 ], + [ 8.9737159, 47.0648941 ], + [ 8.9739537, 47.0649802 ], + [ 8.9741253, 47.0650829 ], + [ 8.9742148, 47.0651905 ], + [ 8.9742796, 47.065298 ], + [ 8.9744271, 47.0653611 ], + [ 8.9746806, 47.0654474 ], + [ 8.9748194, 47.0655836 ], + [ 8.9749078, 47.0657364 ], + [ 8.9750207, 47.0659456 ], + [ 8.9751495, 47.066217 ], + [ 8.9752446, 47.0664938 ], + [ 8.9753094, 47.0666294 ], + [ 8.9754494, 47.0666303 ], + [ 8.9755718, 47.0667101 ], + [ 8.9756865, 47.0667786 ], + [ 8.9757594, 47.0668524 ], + [ 8.9757832, 47.0669088 ], + [ 8.9757909, 47.0669765 ], + [ 8.9757901, 47.067061 ], + [ 8.9758137, 47.0671401 ], + [ 8.9758779, 47.0672532 ], + [ 8.9759176, 47.0673774 ], + [ 8.9759578, 47.0674848 ], + [ 8.9759402, 47.0675917 ], + [ 8.9758723, 47.067749 ], + [ 8.9758464, 47.0678784 ], + [ 8.9758699, 47.06798 ], + [ 8.9758846, 47.0681492 ], + [ 8.9759069, 47.0683239 ], + [ 8.9759379, 47.0685158 ], + [ 8.9760353, 47.0686685 ], + [ 8.9762145, 47.0688331 ], + [ 8.9763697, 47.0689356 ], + [ 8.9764915, 47.069021 ], + [ 8.9765723, 47.0691681 ], + [ 8.976612, 47.0692924 ], + [ 8.9766611, 47.0693379 ], + [ 8.9768085, 47.0694008 ], + [ 8.9770221, 47.0694417 ], + [ 8.9772186, 47.069522 ], + [ 8.977275, 47.0695956 ], + [ 8.977324, 47.0696974 ], + [ 8.9773799, 47.0698386 ], + [ 8.9774029, 47.0699796 ], + [ 8.977483, 47.0701606 ], + [ 8.9775883, 47.0703302 ], + [ 8.9777092, 47.0705001 ], + [ 8.977886999999999, 47.0707887 ], + [ 8.9780321, 47.0710828 ], + [ 8.9783581, 47.0713724 ], + [ 8.9785714, 47.071464 ], + [ 8.9788007, 47.0715107 ], + [ 8.9790302, 47.0715913 ], + [ 8.9793257, 47.0717059 ], + [ 8.979555, 47.071809 ], + [ 8.9797189, 47.0718158 ], + [ 8.9799494, 47.0718175 ], + [ 8.9801389, 47.0718243 ], + [ 8.9803187, 47.0719214 ], + [ 8.9805315, 47.0720524 ], + [ 8.9808749, 47.0722296 ], + [ 8.9811208, 47.0723383 ], + [ 8.9811937, 47.0724121 ], + [ 8.9811925, 47.0725416 ], + [ 8.9811743, 47.0727105 ], + [ 8.9812223, 47.0728348 ], + [ 8.9813364, 47.0729371 ], + [ 8.9815072, 47.073096 ], + [ 8.9818094, 47.0733291 ], + [ 8.9820373, 47.0735279 ], + [ 8.9822172, 47.0736306 ], + [ 8.9824797, 47.0736832 ], + [ 8.9828501, 47.073742 ], + [ 8.9833427, 47.0738131 ], + [ 8.9839109, 47.0737945 ], + [ 8.9840268, 47.0737333 ], + [ 8.9841923, 47.0736781 ], + [ 8.9843313, 47.0737017 ], + [ 8.9844547, 47.0737306 ], + [ 8.9845611, 47.0737933 ], + [ 8.9846755, 47.0738786 ], + [ 8.9847645, 47.0739694 ], + [ 8.9848048, 47.0740542 ], + [ 8.9848362, 47.0742009 ], + [ 8.9848594, 47.0743475 ], + [ 8.9848914, 47.0744605 ], + [ 8.9849882, 47.0745908 ], + [ 8.9851517, 47.0746933 ], + [ 8.9854621, 47.0748983 ], + [ 8.9857242, 47.0749958 ], + [ 8.9860439, 47.0751221 ], + [ 8.9865115, 47.0752661 ], + [ 8.9866916, 47.0753463 ], + [ 8.9869624, 47.0754609 ], + [ 8.9871912, 47.0756033 ], + [ 8.987313499999999, 47.0757055 ], + [ 8.9873377, 47.0757734 ], + [ 8.9873037, 47.0758237 ], + [ 8.9872122, 47.0759303 ], + [ 8.9871779, 47.076054 ], + [ 8.9872258, 47.0761444 ], + [ 8.987389499999999, 47.0762865 ], + [ 8.9876261, 47.076412 ], + [ 8.9878313, 47.0764753 ], + [ 8.9882267, 47.0764894 ], + [ 8.9884161, 47.0764906 ], + [ 8.9885718, 47.0765537 ], + [ 8.9886532, 47.0766332 ], + [ 8.9887748, 47.0767411 ], + [ 8.98884, 47.0768598 ], + [ 8.9889611, 47.0770353 ], + [ 8.9890831, 47.0771826 ], + [ 8.9892949, 47.0773362 ], + [ 8.9894676, 47.0774163 ], + [ 8.9895575, 47.0774508 ], + [ 8.989639, 47.0775358 ], + [ 8.9897773, 47.0776495 ], + [ 8.9898994, 47.0777461 ], + [ 8.9900552, 47.0778374 ], + [ 8.9901859, 47.0779171 ], + [ 8.9902918, 47.0780193 ], + [ 8.9903979, 47.0781327 ], + [ 8.9904297, 47.0782343 ], + [ 8.99051, 47.0783927 ], + [ 8.9906894, 47.0785629 ], + [ 8.990901, 47.0787333 ], + [ 8.9910394, 47.0788809 ], + [ 8.9911696, 47.0790283 ], + [ 8.9912173, 47.0791694 ], + [ 8.991274, 47.079305 ], + [ 8.9914042, 47.0793961 ], + [ 8.9915275, 47.0794477 ], + [ 8.9916836, 47.0794655 ], + [ 8.9918889, 47.0795064 ], + [ 8.9921184, 47.0795587 ], + [ 8.9923154, 47.0795939 ], + [ 8.9924637, 47.0796287 ], + [ 8.992578, 47.0797084 ], + [ 8.9927243, 47.0798446 ], + [ 8.9930592, 47.0800948 ], + [ 8.9930986, 47.0802303 ], + [ 8.9931389, 47.0803432 ], + [ 8.9931789, 47.080445 ], + [ 8.9932518, 47.0805187 ], + [ 8.993342, 47.0805644 ], + [ 8.9934731, 47.0806273 ], + [ 8.9935878, 47.0806956 ], + [ 8.9936776, 47.0807808 ], + [ 8.993726, 47.0808319 ], + [ 8.9937582, 47.080894 ], + [ 8.9937828, 47.0809448 ], + [ 8.9937902, 47.0810295 ], + [ 8.9937967, 47.0811422 ], + [ 8.9938779, 47.081216 ], + [ 8.9940094, 47.0812957 ], + [ 8.994181, 47.0813645 ], + [ 8.9943205, 47.081405 ], + [ 8.9944275, 47.0814058 ], + [ 8.9945184, 47.0813612 ], + [ 8.9945685, 47.0813278 ], + [ 8.9947014, 47.0812554 ], + [ 8.9948662, 47.0812058 ], + [ 8.9949823, 47.0811503 ], + [ 8.9951309, 47.0811062 ], + [ 8.9952392, 47.080983 ], + [ 8.9953143, 47.0808766 ], + [ 8.9953886, 47.0808263 ], + [ 8.9954459, 47.0808436 ], + [ 8.9954953, 47.0808721 ], + [ 8.9956171, 47.0810137 ], + [ 8.9958047, 47.0812066 ], + [ 8.9959262, 47.0813652 ], + [ 8.9960078, 47.0814277 ], + [ 8.9961307, 47.0814906 ], + [ 8.9962782, 47.0815254 ], + [ 8.9964256, 47.0816109 ], + [ 8.9966138, 47.0817136 ], + [ 8.9967776, 47.0818273 ], + [ 8.9968998, 47.0819241 ], + [ 8.9969971, 47.082043 ], + [ 8.9970527, 47.0822012 ], + [ 8.9971161, 47.0824552 ], + [ 8.997252, 47.0827997 ], + [ 8.9972677, 47.0829125 ], + [ 8.9972422, 47.0829969 ], + [ 8.9972166, 47.0830812 ], + [ 8.99724, 47.0831772 ], + [ 8.9972716, 47.0833013 ], + [ 8.9973519, 47.0834596 ], + [ 8.9974418, 47.0835505 ], + [ 8.9975398, 47.0836075 ], + [ 8.9976954, 47.0836648 ], + [ 8.9978351, 47.083739 ], + [ 8.9979579, 47.0838018 ], + [ 8.9980389, 47.0838981 ], + [ 8.9981864, 47.0839612 ], + [ 8.9984074, 47.0840584 ], + [ 8.9986702, 47.0841505 ], + [ 8.9987692, 47.0841286 ], + [ 8.998925, 47.0841352 ], + [ 8.9991712, 47.0842496 ], + [ 8.9991122, 47.084345 ], + [ 8.99998, 47.0847453 ], + [ 9.0003734, 47.0849114 ], + [ 9.0005539, 47.0849746 ], + [ 9.000784, 47.0850437 ], + [ 9.0011043, 47.0851022 ], + [ 9.0012932, 47.0851712 ], + [ 9.0014899, 47.0852288 ], + [ 9.001613, 47.0852691 ], + [ 9.0017187, 47.0853655 ], + [ 9.0018004, 47.0854562 ], + [ 9.0019634, 47.0855701 ], + [ 9.0022094, 47.0857069 ], + [ 9.0024709, 47.0858383 ], + [ 9.0028805, 47.0860214 ], + [ 9.0033484, 47.0861993 ], + [ 9.003889, 47.0863888 ], + [ 9.0044718, 47.0865562 ], + [ 9.004997, 47.086723 ], + [ 9.0053331, 47.0868437 ], + [ 9.0055461, 47.0869184 ], + [ 9.0058257, 47.0869653 ], + [ 9.0060391, 47.0870287 ], + [ 9.006285, 47.0871037 ], + [ 9.0066878, 47.0871964 ], + [ 9.0074434, 47.0873312 ], + [ 9.0082163, 47.0874096 ], + [ 9.0081766, 47.0872911 ], + [ 9.0082766, 47.0871903 ], + [ 9.0083266, 47.0871005 ], + [ 9.0083701, 47.0869543 ], + [ 9.0084531, 47.0868365 ], + [ 9.0084872, 47.0867354 ], + [ 9.0084799, 47.0866564 ], + [ 9.0084478, 47.0865434 ], + [ 9.008433, 47.0864306 ], + [ 9.0084585, 47.0863463 ], + [ 9.0085497, 47.0862568 ], + [ 9.0086585, 47.0861505 ], + [ 9.0087417, 47.0860384 ], + [ 9.0088, 47.0859486 ], + [ 9.0088349, 47.0858193 ], + [ 9.0086644, 47.0855364 ], + [ 9.0085598, 47.0853667 ], + [ 9.0084783, 47.0852534 ], + [ 9.0085536, 47.0851526 ], + [ 9.008596, 47.085057 ], + [ 9.0087281, 47.0849846 ], + [ 9.0089099, 47.0849239 ], + [ 9.0090667, 47.0848799 ], + [ 9.0092565, 47.0848698 ], + [ 9.0094616, 47.0848995 ], + [ 9.0096506, 47.0849739 ], + [ 9.0099293, 47.0850716 ], + [ 9.010077, 47.085112 ], + [ 9.0102003, 47.0851354 ], + [ 9.0104964, 47.0851542 ], + [ 9.0107761, 47.0852013 ], + [ 9.0110804, 47.0852202 ], + [ 9.0113348, 47.0852783 ], + [ 9.0116551, 47.0853648 ], + [ 9.012032, 47.0854689 ], + [ 9.0123778, 47.0855275 ], + [ 9.0125581, 47.0855287 ], + [ 9.0127391, 47.0855524 ], + [ 9.0129621, 47.0855483 ], + [ 9.0131511, 47.0855664 ], + [ 9.0133898, 47.0855624 ], + [ 9.0135618, 47.0855917 ], + [ 9.0137758, 47.0856439 ], + [ 9.0140711, 47.0857472 ], + [ 9.0145297, 47.0859193 ], + [ 9.0148338, 47.0860116 ], + [ 9.0150966, 47.086047 ], + [ 9.0153188, 47.0860711 ], + [ 9.0154834, 47.0860722 ], + [ 9.0155908, 47.0860279 ], + [ 9.0156914, 47.0858932 ], + [ 9.0155353, 47.0858471 ], + [ 9.015512, 47.0857287 ], + [ 9.0154805, 47.0855538 ], + [ 9.0155075, 47.0853793 ], + [ 9.0155666, 47.0852333 ], + [ 9.0156418, 47.0851323 ], + [ 9.0157826, 47.0850488 ], + [ 9.0159889, 47.0849543 ], + [ 9.0162125, 47.08486 ], + [ 9.0167237, 47.0847733 ], + [ 9.0179926, 47.0846465 ], + [ 9.0183381, 47.0846375 ], + [ 9.0186263, 47.0846394 ], + [ 9.0187497, 47.0846628 ], + [ 9.0188485, 47.0846916 ], + [ 9.0189954, 47.0847602 ], + [ 9.0190936, 47.084851 ], + [ 9.0192489, 47.0849816 ], + [ 9.0195674, 47.0851472 ], + [ 9.0198463, 47.0852785 ], + [ 9.0200757, 47.0854096 ], + [ 9.0240145, 47.0850356 ], + [ 9.0259384, 47.0852569 ], + [ 9.0262342, 47.0852645 ], + [ 9.0264069, 47.08526 ], + [ 9.0265148, 47.0852325 ], + [ 9.0265972, 47.0851823 ], + [ 9.0267054, 47.0851098 ], + [ 9.0267793, 47.0850764 ], + [ 9.026887, 47.0850433 ], + [ 9.0270029, 47.0850102 ], + [ 9.0270183, 47.0850837 ], + [ 9.027001, 47.0851398 ], + [ 9.0270001, 47.0852187 ], + [ 9.0269834, 47.0852693 ], + [ 9.0269912, 47.0853369 ], + [ 9.0270403, 47.0853542 ], + [ 9.0270894, 47.0853433 ], + [ 9.0271643, 47.0852874 ], + [ 9.0283184, 47.0843428 ], + [ 9.0284921, 47.0842312 ], + [ 9.0286409, 47.0841702 ], + [ 9.0288229, 47.0841433 ], + [ 9.0290371, 47.0841222 ], + [ 9.0292512, 47.0840953 ], + [ 9.0296215, 47.084064 ], + [ 9.0315755, 47.08375 ], + [ 9.0317816, 47.083757 ], + [ 9.0319704, 47.0837694 ], + [ 9.0321182, 47.0838098 ], + [ 9.0322582, 47.0838389 ], + [ 9.0323817, 47.0838397 ], + [ 9.0324882, 47.0838516 ], + [ 9.0326125, 47.0838243 ], + [ 9.0327281, 47.08378 ], + [ 9.0328853, 47.0836683 ], + [ 9.0331092, 47.0835571 ], + [ 9.0332993, 47.0834175 ], + [ 9.033689, 47.0831778 ], + [ 9.0339459, 47.083016 ], + [ 9.0341201, 47.082865 ], + [ 9.0340797, 47.0827803 ], + [ 9.034073, 47.0826675 ], + [ 9.0340909, 47.0825212 ], + [ 9.0341577, 47.0824145 ], + [ 9.0341996, 47.0823303 ], + [ 9.0342747, 47.082252 ], + [ 9.0344151, 47.0821852 ], + [ 9.0345147, 47.0821013 ], + [ 9.0345736, 47.0819778 ], + [ 9.0346903, 47.0818884 ], + [ 9.0348562, 47.0817374 ], + [ 9.0349478, 47.0816083 ], + [ 9.03504, 47.0814963 ], + [ 9.0350988, 47.0813445 ], + [ 9.0351422, 47.0811701 ], + [ 9.0351759, 47.0810576 ], + [ 9.0352676, 47.0809849 ], + [ 9.0353418, 47.0809066 ], + [ 9.035392, 47.0808224 ], + [ 9.0354841, 47.0806822 ], + [ 9.0356579, 47.0805762 ], + [ 9.0358322, 47.0804591 ], + [ 9.0360147, 47.0802856 ], + [ 9.0363467, 47.0800736 ], + [ 9.0366124, 47.0798724 ], + [ 9.0369758, 47.0796946 ], + [ 9.0370673, 47.0795882 ], + [ 9.0371341, 47.0795096 ], + [ 9.0372172, 47.0794538 ], + [ 9.0374234, 47.0794102 ], + [ 9.03772, 47.0793388 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "JBG0029", + "country" : "CHE", + "name" : [ + { + "text" : "Eidgenössisches Jagdbanngebiet Rauti-Tros", + "lang" : "de-CH" + }, + { + "text" : "District franc fédéral Rauti-Tros", + "lang" : "fr-CH" + }, + { + "text" : "Bandita federale di caccia Rauti-Tros", + "lang" : "it-CH" + }, + { + "text" : "Federal Game Reserve Rauti-Tros", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.2490146, 46.8889955 ], + [ 8.2490858, 46.8890599 ], + [ 8.2491632, 46.889121 ], + [ 8.249246, 46.8891787 ], + [ 8.2493336, 46.8892329 ], + [ 8.2494269, 46.8892824 ], + [ 8.2495309, 46.8893366 ], + [ 8.2496362, 46.8893903 ], + [ 8.2497428, 46.8894424 ], + [ 8.2498568, 46.8894947 ], + [ 8.250168, 46.8896306 ], + [ 8.2502673, 46.8896753 ], + [ 8.2503632, 46.8897224 ], + [ 8.2504561, 46.8897726 ], + [ 8.2505454, 46.8898251 ], + [ 8.2506313, 46.8898808 ], + [ 8.2506369, 46.8898848 ], + [ 8.2506429, 46.8898886 ], + [ 8.2506491, 46.8898922 ], + [ 8.2506555, 46.8898956 ], + [ 8.2506621, 46.8898988 ], + [ 8.250669, 46.8899018 ], + [ 8.250676, 46.8899046 ], + [ 8.2506827, 46.889907 ], + [ 8.2506896, 46.8899092 ], + [ 8.2506967, 46.8899112 ], + [ 8.2507038, 46.889913 ], + [ 8.250711, 46.8899146 ], + [ 8.2507184, 46.8899159 ], + [ 8.2507258, 46.8899171 ], + [ 8.2511964, 46.8892592 ], + [ 8.2512834, 46.8891116 ], + [ 8.2504504, 46.8887535 ], + [ 8.2497286, 46.8883087 ], + [ 8.2496709, 46.8882733 ], + [ 8.2491449, 46.887794 ], + [ 8.2488289, 46.8875006 ], + [ 8.2487268, 46.8874057 ], + [ 8.2483665, 46.8870774 ], + [ 8.2475166, 46.8875334 ], + [ 8.2478293, 46.8878383 ], + [ 8.2479283, 46.8879348 ], + [ 8.2479689, 46.8879744 ], + [ 8.2484689, 46.8884629 ], + [ 8.2489333, 46.888916 ], + [ 8.2490146, 46.8889955 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VBS_10", + "country" : "CHE", + "name" : [ + { + "text" : "VBS_10 Sarnen", + "lang" : "de-CH" + }, + { + "text" : "VBS_10 Sarnen", + "lang" : "fr-CH" + }, + { + "text" : "VBS_10 Sarnen", + "lang" : "it-CH" + }, + { + "text" : "VBS_10 Sarnen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "regulationExemption" : "YES", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Eidgenössisches Departement für Verteidigung, Bevölkerungsschutz und Sport (VBS)", + "lang" : "de-CH" + }, + { + "text" : "Département fédéral de la défense, de la protection de la population et des sports (DDPS)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento federale della difesa, della protezione della popolazione e dello sport (DDPS)", + "lang" : "it-CH" + }, + { + "text" : "Federal Department of Defence, Civil Protection and Sport (DDPS)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Lageverfolgungszentrum der Armee LVZ A", + "lang" : "de-CH" + }, + { + "text" : "Centre de suivi de la situation de l’armée, CSS A", + "lang" : "fr-CH" + }, + { + "text" : "Centro di monitoraggio della situazione dell’esercito, Centro mon sit Es", + "lang" : "it-CH" + }, + { + "text" : "Joint Operation Center, JOC", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vtg.admin.ch/en/joint-operations-command", + "email" : "lvz.op@vtg.admin.ch", + "phone" : "+41 58 464 96 43", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8088948, 47.4406207 ], + [ 7.8089056, 47.4406561 ], + [ 7.808917, 47.4406914 ], + [ 7.808929, 47.4407266 ], + [ 7.8089414999999995, 47.4407617 ], + [ 7.8089547, 47.4407967 ], + [ 7.8089578, 47.4408043 ], + [ 7.8095664, 47.4409766 ], + [ 7.8095803, 47.4410072 ], + [ 7.8097361, 47.4410519 ], + [ 7.8096964, 47.4408742 ], + [ 7.8094965, 47.4408168 ], + [ 7.8094832, 47.4407859 ], + [ 7.8088948, 47.4406207 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns305", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Zelgli", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Zelgli", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Zelgli", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Zelgli", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.4378359, 46.5302335 ], + [ 9.4378253, 46.5300924 ], + [ 9.4378041, 46.5299518 ], + [ 9.4377722, 46.5298123 ], + [ 9.4377298, 46.5296741 ], + [ 9.4376769, 46.5295376 ], + [ 9.4376138, 46.5294032 ], + [ 9.4375406, 46.5292712 ], + [ 9.4374575, 46.5291421 ], + [ 9.4373646, 46.5290162 ], + [ 9.4372624, 46.5288938 ], + [ 9.437151, 46.5287752 ], + [ 9.4370308, 46.5286609 ], + [ 9.4369021, 46.528551 ], + [ 9.4367652, 46.5284459 ], + [ 9.4366206, 46.528346 ], + [ 9.4364686, 46.5282514 ], + [ 9.4363096, 46.5281624 ], + [ 9.4361441, 46.5280792 ], + [ 9.4359725, 46.5280022 ], + [ 9.4357952, 46.5279315 ], + [ 9.4356129, 46.5278672 ], + [ 9.435426, 46.5278097 ], + [ 9.4352349, 46.5277589 ], + [ 9.4350403, 46.5277152 ], + [ 9.4348426, 46.5276785 ], + [ 9.4346424, 46.527649 ], + [ 9.4344402, 46.5276268 ], + [ 9.4342367, 46.527612 ], + [ 9.4340322, 46.5276045 ], + [ 9.4338275, 46.5276044 ], + [ 9.4336231, 46.5276116 ], + [ 9.4334195, 46.5276263 ], + [ 9.4332173, 46.5276483 ], + [ 9.433017, 46.5276776 ], + [ 9.4328193, 46.527714 ], + [ 9.4326245, 46.5277576 ], + [ 9.4324334, 46.5278081 ], + [ 9.4322463, 46.5278655 ], + [ 9.4320638, 46.5279295 ], + [ 9.4318865, 46.5280001 ], + [ 9.4317147, 46.528077 ], + [ 9.431549, 46.5281599 ], + [ 9.4313898, 46.5282487 ], + [ 9.4312376, 46.5283432 ], + [ 9.4310927, 46.528443 ], + [ 9.4309556, 46.5285479 ], + [ 9.4308267, 46.5286577 ], + [ 9.4307062, 46.5287719 ], + [ 9.4305946, 46.5288903 ], + [ 9.4304921, 46.5290126 ], + [ 9.430399, 46.5291385 ], + [ 9.4303156, 46.5292675 ], + [ 9.4302421, 46.5293994 ], + [ 9.4301787, 46.5295337 ], + [ 9.4301255, 46.5296702 ], + [ 9.4300828, 46.5298083 ], + [ 9.4300506, 46.5299479 ], + [ 9.4300291, 46.5300884 ], + [ 9.4300182, 46.5302294 ], + [ 9.430018, 46.5303707 ], + [ 9.4300286, 46.5305118 ], + [ 9.4300498, 46.5306524 ], + [ 9.4300817, 46.5307919 ], + [ 9.4301241, 46.5309301 ], + [ 9.4301769, 46.5310666 ], + [ 9.43024, 46.5312011 ], + [ 9.4303132, 46.531333 ], + [ 9.4303964, 46.5314621 ], + [ 9.4304892, 46.531588 ], + [ 9.4305914, 46.5317105 ], + [ 9.4307027, 46.531829 ], + [ 9.4308229, 46.5319434 ], + [ 9.4309517, 46.5320533 ], + [ 9.4310885, 46.5321583 ], + [ 9.4312332, 46.5322583 ], + [ 9.4313852, 46.5323529 ], + [ 9.4315442, 46.5324419 ], + [ 9.4317097, 46.5325251 ], + [ 9.4318813, 46.5326021 ], + [ 9.4320586, 46.5326728 ], + [ 9.4322409, 46.5327371 ], + [ 9.4324279, 46.5327946 ], + [ 9.4326189, 46.5328454 ], + [ 9.4328136, 46.5328891 ], + [ 9.4330113, 46.5329258 ], + [ 9.4332115, 46.5329553 ], + [ 9.4334137, 46.5329775 ], + [ 9.4336173, 46.5329924 ], + [ 9.4338217, 46.5329999 ], + [ 9.4340264, 46.533 ], + [ 9.4342309, 46.5329927 ], + [ 9.4344345, 46.532978 ], + [ 9.4346367, 46.532956 ], + [ 9.434837, 46.5329267 ], + [ 9.4350348, 46.5328903 ], + [ 9.4352295, 46.5328467 ], + [ 9.4354207, 46.5327962 ], + [ 9.4356078, 46.5327388 ], + [ 9.4357903, 46.5326748 ], + [ 9.435967699999999, 46.5326042 ], + [ 9.4361394, 46.5325273 ], + [ 9.4363052, 46.5324444 ], + [ 9.4364643, 46.5323555 ], + [ 9.4366166, 46.5322611 ], + [ 9.4367614, 46.5321612 ], + [ 9.4368985, 46.5320563 ], + [ 9.4370275, 46.5319466 ], + [ 9.4371479, 46.5318323 ], + [ 9.4372595, 46.5317139 ], + [ 9.437362, 46.5315916 ], + [ 9.4374551, 46.5314657 ], + [ 9.4375385, 46.5313367 ], + [ 9.437612, 46.5312048 ], + [ 9.4376754, 46.5310705 ], + [ 9.4377285, 46.5309341 ], + [ 9.4377712, 46.5307959 ], + [ 9.4378034, 46.5306563 ], + [ 9.4378249, 46.5305158 ], + [ 9.4378358, 46.5303748 ], + [ 9.4378359, 46.5302335 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0033", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Ferrera", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Ferrera", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Ferrera", + "lang" : "it-CH" + }, + { + "text" : "Substation Ferrera", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.6432468, 46.771587 ], + [ 6.6432525, 46.7717636 ], + [ 6.6432582, 46.7718223 ], + [ 6.6432595, 46.7718332 ], + [ 6.6432763999999995, 46.7719504 ], + [ 6.6433157, 46.7721249 ], + [ 6.6433715, 46.7722973 ], + [ 6.6433755, 46.7723079 ], + [ 6.6434476, 46.7724774 ], + [ 6.6435357, 46.7726433 ], + [ 6.643603, 46.7727514 ], + [ 6.6436096, 46.7727614 ], + [ 6.643646, 46.7728149 ], + [ 6.6437648, 46.7729714 ], + [ 6.6438983, 46.7731223 ], + [ 6.643946, 46.7731714 ], + [ 6.6439551, 46.7731804 ], + [ 6.6440549, 46.773276 ], + [ 6.644216, 46.7734136 ], + [ 6.6443897, 46.7735437 ], + [ 6.6444009, 46.773551499999996 ], + [ 6.6445867, 46.7736736 ], + [ 6.6447837, 46.773787 ], + [ 6.644921, 46.7738576 ], + [ 6.644934, 46.773864 ], + [ 6.6450040999999995, 46.7738977 ], + [ 6.645221, 46.7739924 ], + [ 6.6454464, 46.7740772 ], + [ 6.6455233, 46.7741032 ], + [ 6.6455377, 46.774108 ], + [ 6.6456938999999995, 46.7741565 ], + [ 6.6459335, 46.7742204 ], + [ 6.6461787, 46.7742733 ], + [ 6.6461941, 46.7742763 ], + [ 6.6464438, 46.7743181 ], + [ 6.646697, 46.7743486 ], + [ 6.6468671, 46.7743626 ], + [ 6.646883, 46.7743637 ], + [ 6.6469684, 46.7743688 ], + [ 6.6472252, 46.7743764 ], + [ 6.6474820999999995, 46.7743724 ], + [ 6.6475676, 46.7743685 ], + [ 6.6475835, 46.7743676 ], + [ 6.6477541, 46.774356 ], + [ 6.6480081, 46.774329 ], + [ 6.6482589999999995, 46.7742906 ], + [ 6.6482744, 46.7742879 ], + [ 6.6485211, 46.7742383 ], + [ 6.6487625999999995, 46.7741778 ], + [ 6.6489202, 46.7741314 ], + [ 6.6489347, 46.7741269 ], + [ 6.6490123, 46.774102 ], + [ 6.6492401999999995, 46.7740203 ], + [ 6.6494598, 46.7739286 ], + [ 6.6495309, 46.7738959 ], + [ 6.6495441, 46.7738897 ], + [ 6.6496834, 46.773821 ], + [ 6.6498837, 46.7737103 ], + [ 6.6500731, 46.7735909 ], + [ 6.6500845, 46.7735832 ], + [ 6.6502621, 46.7734556 ], + [ 6.6504271, 46.7733202 ], + [ 6.6505298, 46.773226 ], + [ 6.6505391, 46.7732171 ], + [ 6.6505882, 46.7731688 ], + [ 6.6507261, 46.7730198 ], + [ 6.6508496, 46.7728649 ], + [ 6.6508875, 46.7728119 ], + [ 6.6508944, 46.772802 ], + [ 6.6509649, 46.7726949 ], + [ 6.6510578, 46.7725302 ], + [ 6.6511349, 46.7723618 ], + [ 6.6511392, 46.7723512 ], + [ 6.6512001, 46.7721797 ], + [ 6.6512445, 46.7720057 ], + [ 6.6512649, 46.7718888 ], + [ 6.6512664, 46.7718779 ], + [ 6.6512738, 46.7718192 ], + [ 6.6512848, 46.7716428 ], + [ 6.651279, 46.7714663 ], + [ 6.6512733, 46.7714076 ], + [ 6.6512721, 46.7713966 ], + [ 6.6512551, 46.7712794 ], + [ 6.6512158, 46.7711049 ], + [ 6.65116, 46.7709326 ], + [ 6.651156, 46.7709219 ], + [ 6.6510839, 46.7707524 ], + [ 6.6509958000000005, 46.7705865 ], + [ 6.6509284, 46.7704785 ], + [ 6.6509218, 46.7704685 ], + [ 6.6508855, 46.770415 ], + [ 6.6507666, 46.7702584 ], + [ 6.6506331, 46.7701075 ], + [ 6.6505852999999995, 46.7700585 ], + [ 6.6505763, 46.7700495 ], + [ 6.6504764, 46.7699539 ], + [ 6.6503154, 46.7698163 ], + [ 6.6501415999999995, 46.7696862 ], + [ 6.6501304, 46.7696783 ], + [ 6.6499445999999995, 46.7695563 ], + [ 6.6497475999999995, 46.7694429 ], + [ 6.6496103, 46.7693723 ], + [ 6.6495974, 46.7693659 ], + [ 6.6495272, 46.7693323 ], + [ 6.6493104, 46.7692375 ], + [ 6.649085, 46.7691527 ], + [ 6.6490081, 46.7691267 ], + [ 6.6489937, 46.769122 ], + [ 6.6488375, 46.7690735 ], + [ 6.6485979, 46.7690096 ], + [ 6.6483527, 46.7689566 ], + [ 6.6483374, 46.7689537 ], + [ 6.6480877, 46.7689118 ], + [ 6.6478345999999995, 46.7688813 ], + [ 6.6476644, 46.7688673 ], + [ 6.6476485, 46.7688663 ], + [ 6.6475632000000004, 46.7688612 ], + [ 6.6473064, 46.7688536 ], + [ 6.6470495, 46.7688576 ], + [ 6.646964, 46.7688615 ], + [ 6.6469481, 46.7688624 ], + [ 6.6467775, 46.768874 ], + [ 6.6465235, 46.768901 ], + [ 6.6462727, 46.7689393 ], + [ 6.6462572, 46.7689421 ], + [ 6.6460105, 46.7689916 ], + [ 6.6457691, 46.7690522 ], + [ 6.6456115, 46.7690985 ], + [ 6.645597, 46.769103 ], + [ 6.6455193999999995, 46.7691279 ], + [ 6.6452915, 46.769209599999996 ], + [ 6.6450719, 46.7693013 ], + [ 6.6450008, 46.769334 ], + [ 6.6449876, 46.7693402 ], + [ 6.6448483, 46.7694089 ], + [ 6.644648, 46.7695196 ], + [ 6.6444586999999995, 46.769639 ], + [ 6.6444472999999995, 46.7696466 ], + [ 6.6442697, 46.7697743 ], + [ 6.6441046, 46.7699097 ], + [ 6.644002, 46.7700038 ], + [ 6.6439927, 46.7700127 ], + [ 6.6439435, 46.7700611 ], + [ 6.6438056, 46.7702101 ], + [ 6.6436822, 46.770365 ], + [ 6.6436442, 46.7704179 ], + [ 6.6436373, 46.7704278 ], + [ 6.6435668, 46.770535 ], + [ 6.6434738, 46.7706996 ], + [ 6.6433967, 46.7708681 ], + [ 6.6433924, 46.7708786 ], + [ 6.6433316, 46.7710502 ], + [ 6.6432871, 46.7712241 ], + [ 6.6432667, 46.771341 ], + [ 6.6432652, 46.7713519 ], + [ 6.6432578, 46.7714106 ], + [ 6.6432468, 46.771587 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00023", + "country" : "CHE", + "name" : [ + { + "text" : "Hôpital régional eHnv - site d'Yverdon", + "lang" : "de-CH" + }, + { + "text" : "Hôpital régional eHnv - site d'Yverdon", + "lang" : "fr-CH" + }, + { + "text" : "Hôpital régional eHnv - site d'Yverdon", + "lang" : "it-CH" + }, + { + "text" : "Hôpital régional eHnv - site d'Yverdon", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kantonspolizei Waadt", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale vaudoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Vaud", + "lang" : "it-CH" + }, + { + "text" : "Vaud Cantonal Police", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.pcv@vd.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.9869734, 46.3134408 ], + [ 6.9803183, 46.3328449 ], + [ 6.9976548, 46.3728551 ], + [ 7.0376131, 46.3823596 ], + [ 7.0730778, 46.3662875 ], + [ 7.0718868, 46.3502713 ], + [ 7.0155473, 46.3117524 ], + [ 6.9869734, 46.3134408 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSEY001", + "country" : "CHE", + "name" : [ + { + "text" : "LSEY Leysin", + "lang" : "de-CH" + }, + { + "text" : "LSEY Leysin", + "lang" : "fr-CH" + }, + { + "text" : "LSEY Leysin", + "lang" : "it-CH" + }, + { + "text" : "LSEY Leysin", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Héliport Leysin", + "lang" : "de-CH" + }, + { + "text" : "Héliport Leysin", + "lang" : "fr-CH" + }, + { + "text" : "Héliport Leysin", + "lang" : "it-CH" + }, + { + "text" : "Héliport Leysin", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Chef d'aérodrome", + "lang" : "de-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "fr-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "it-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Silvano Meli", + "lang" : "de-CH" + }, + { + "text" : "Silvano Meli", + "lang" : "fr-CH" + }, + { + "text" : "Silvano Meli", + "lang" : "it-CH" + }, + { + "text" : "Silvano Meli", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.air-glaciers.ch/leysin", + "email" : "leysin@air-glaciers.ch", + "phone" : "0041244943434", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P01DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.1566402, 46.9495571 ], + [ 7.1566355999999995, 46.9494158 ], + [ 7.1566201, 46.9492749 ], + [ 7.1565939, 46.9491348 ], + [ 7.1565571, 46.9489958 ], + [ 7.1565096, 46.9488583 ], + [ 7.1564517, 46.9487227 ], + [ 7.1563836, 46.9485894 ], + [ 7.1563053, 46.9484586 ], + [ 7.1562172, 46.9483309 ], + [ 7.1561194, 46.9482065 ], + [ 7.1560122, 46.9480858 ], + [ 7.155896, 46.9479691 ], + [ 7.155771, 46.9478567 ], + [ 7.1556376, 46.9477489 ], + [ 7.1554961, 46.9476461 ], + [ 7.155347, 46.947548499999996 ], + [ 7.1551906, 46.9474563 ], + [ 7.1550274, 46.9473699 ], + [ 7.1548578, 46.9472894 ], + [ 7.1546823, 46.9472152 ], + [ 7.1545013, 46.9471473 ], + [ 7.1543154, 46.947086 ], + [ 7.1541251, 46.9470315 ], + [ 7.1539309, 46.9469839 ], + [ 7.1537333, 46.9469432 ], + [ 7.1535329, 46.9469098 ], + [ 7.1533302, 46.9468835 ], + [ 7.1531258, 46.9468645 ], + [ 7.1529201, 46.946853 ], + [ 7.1527139, 46.9468487 ], + [ 7.1525077, 46.9468519 ], + [ 7.152302, 46.9468625 ], + [ 7.1520973, 46.9468804 ], + [ 7.1518943, 46.9469057 ], + [ 7.1516936, 46.9469381 ], + [ 7.1514955, 46.9469778 ], + [ 7.1513008, 46.9470244 ], + [ 7.1511099, 46.947078 ], + [ 7.1509234, 46.9471384 ], + [ 7.1507417, 46.9472053 ], + [ 7.1505654, 46.9472787 ], + [ 7.150395, 46.9473583 ], + [ 7.1502309, 46.9474439 ], + [ 7.1500735, 46.9475352 ], + [ 7.1499233, 46.9476321 ], + [ 7.1497808, 46.9477342 ], + [ 7.1496462, 46.9478413 ], + [ 7.14952, 46.9479531 ], + [ 7.1494025, 46.9480692 ], + [ 7.1492941, 46.9481894 ], + [ 7.149195, 46.9483133 ], + [ 7.1491054, 46.9484406 ], + [ 7.1490258, 46.9485709 ], + [ 7.1489562, 46.9487039 ], + [ 7.1488969, 46.9488392 ], + [ 7.148848, 46.9489765 ], + [ 7.1488096, 46.9491153 ], + [ 7.1487819, 46.9492553 ], + [ 7.148765, 46.9493961 ], + [ 7.1487588, 46.9495373 ], + [ 7.1487635, 46.9496786 ], + [ 7.1487789, 46.9498195 ], + [ 7.148805, 46.9499596 ], + [ 7.1488419, 46.9500986 ], + [ 7.1488893000000004, 46.9502361 ], + [ 7.1489472, 46.9503717 ], + [ 7.1490153, 46.9505051 ], + [ 7.1490936, 46.9506358 ], + [ 7.1491817, 46.9507635 ], + [ 7.1492795, 46.9508879 ], + [ 7.1493866, 46.9510087 ], + [ 7.1495029, 46.9511254 ], + [ 7.1496278, 46.9512378 ], + [ 7.1497613, 46.9513456 ], + [ 7.1499027, 46.9514484 ], + [ 7.1500519, 46.951546 ], + [ 7.1502083, 46.9516382 ], + [ 7.1503715, 46.9517246 ], + [ 7.1505411, 46.951805 ], + [ 7.1507166, 46.9518793 ], + [ 7.1508976, 46.9519472 ], + [ 7.1510834, 46.9520085 ], + [ 7.1512738, 46.952063 ], + [ 7.151468, 46.9521107 ], + [ 7.1516656, 46.9521513 ], + [ 7.151866, 46.9521848 ], + [ 7.1520688, 46.952211 ], + [ 7.1522732, 46.95223 ], + [ 7.1524789, 46.9522416 ], + [ 7.1526851, 46.9522458 ], + [ 7.1528914, 46.9522426 ], + [ 7.1530971, 46.9522321 ], + [ 7.1533018, 46.9522141 ], + [ 7.1535048, 46.9521889 ], + [ 7.1537056, 46.9521564 ], + [ 7.1539036, 46.9521168 ], + [ 7.1540983, 46.9520701 ], + [ 7.1542892, 46.9520165 ], + [ 7.1544758, 46.9519561 ], + [ 7.1546575, 46.9518892 ], + [ 7.1548338, 46.9518158 ], + [ 7.1550042, 46.9517362 ], + [ 7.1551684, 46.9516506 ], + [ 7.1553257, 46.9515592 ], + [ 7.1554759, 46.9514624 ], + [ 7.1556185, 46.9513602 ], + [ 7.155753, 46.9512531 ], + [ 7.1558792, 46.9511414 ], + [ 7.1559967, 46.9510252 ], + [ 7.1561050999999996, 46.950905 ], + [ 7.1562042, 46.9507811 ], + [ 7.1562937, 46.9506538 ], + [ 7.1563734, 46.9505235 ], + [ 7.1564429, 46.9503905 ], + [ 7.1565023, 46.9502552 ], + [ 7.1565511, 46.9501179 ], + [ 7.1565895, 46.9499791 ], + [ 7.1566171, 46.9498391 ], + [ 7.1566341, 46.9496983 ], + [ 7.1566402, 46.9495571 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0042", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Galmiz", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Galmiz", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Galmiz", + "lang" : "it-CH" + }, + { + "text" : "Substation Galmiz", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.9356005, 47.4975842 ], + [ 8.935591, 47.4974431 ], + [ 8.9355707, 47.4973025 ], + [ 8.9355396, 47.4971629 ], + [ 8.935497699999999, 47.4970245 ], + [ 8.9354452, 47.4968878 ], + [ 8.9353822, 47.4967531 ], + [ 8.9353089, 47.4966209 ], + [ 8.9352254, 47.4964914 ], + [ 8.9351321, 47.4963651 ], + [ 8.9350292, 47.4962423 ], + [ 8.9349169, 47.4961233 ], + [ 8.9347956, 47.4960084 ], + [ 8.9346656, 47.495898 ], + [ 8.9345272, 47.4957924 ], + [ 8.9343809, 47.4956918 ], + [ 8.934227, 47.4955965 ], + [ 8.934066, 47.4955068 ], + [ 8.9338982, 47.495423 ], + [ 8.9337242, 47.4953452 ], + [ 8.9335445, 47.4952737 ], + [ 8.9333594, 47.4952087 ], + [ 8.9331696, 47.4951503 ], + [ 8.9329756, 47.4950987 ], + [ 8.9327778, 47.4950541 ], + [ 8.9325769, 47.4950166 ], + [ 8.9323733, 47.4949862 ], + [ 8.9321677, 47.4949631 ], + [ 8.9319606, 47.4949474 ], + [ 8.9317525, 47.494939 ], + [ 8.9315441, 47.494938 ], + [ 8.9313359, 47.4949443 ], + [ 8.9311284, 47.4949581 ], + [ 8.9309223, 47.4949792 ], + [ 8.9307181, 47.4950076 ], + [ 8.9305164, 47.4950432 ], + [ 8.9303178, 47.4950859 ], + [ 8.9301226, 47.4951355 ], + [ 8.9299316, 47.4951921 ], + [ 8.9297452, 47.4952553 ], + [ 8.929564, 47.495325 ], + [ 8.9293884, 47.4954011 ], + [ 8.9292189, 47.4954833 ], + [ 8.929056, 47.4955714 ], + [ 8.9289001, 47.4956652 ], + [ 8.9287516, 47.4957644 ], + [ 8.928611, 47.4958687 ], + [ 8.9284787, 47.4959778 ], + [ 8.928355, 47.4960915 ], + [ 8.9282402, 47.4962094 ], + [ 8.9281347, 47.4963312 ], + [ 8.9280387, 47.4964566 ], + [ 8.9279526, 47.4965852 ], + [ 8.9278765, 47.4967168 ], + [ 8.9278107, 47.4968508 ], + [ 8.9277553, 47.496987 ], + [ 8.9277105, 47.4971249 ], + [ 8.9276764, 47.4972643 ], + [ 8.9276531, 47.4974046 ], + [ 8.9276407, 47.4975457 ], + [ 8.9276392, 47.4976869 ], + [ 8.9276486, 47.497828 ], + [ 8.9276689, 47.4979686 ], + [ 8.9277, 47.4981083 ], + [ 8.927741900000001, 47.4982467 ], + [ 8.9277944, 47.4983834 ], + [ 8.9278574, 47.498518 ], + [ 8.9279307, 47.4986503 ], + [ 8.9280141, 47.4987797 ], + [ 8.9281074, 47.4989061 ], + [ 8.9282103, 47.4990289 ], + [ 8.9283226, 47.4991479 ], + [ 8.9284439, 47.4992628 ], + [ 8.9285739, 47.4993732 ], + [ 8.9287122, 47.4994789 ], + [ 8.9288586, 47.4995795 ], + [ 8.9290125, 47.4996747 ], + [ 8.9291735, 47.4997644 ], + [ 8.9293413, 47.4998483 ], + [ 8.9295153, 47.499926 ], + [ 8.929695, 47.4999976 ], + [ 8.9298801, 47.5000626 ], + [ 8.9300699, 47.500121 ], + [ 8.930264, 47.5001725 ], + [ 8.9304617, 47.5002171 ], + [ 8.9306627, 47.5002547 ], + [ 8.9308663, 47.500285 ], + [ 8.9310719, 47.5003081 ], + [ 8.9312791, 47.5003239 ], + [ 8.9314871, 47.5003323 ], + [ 8.9316956, 47.5003333 ], + [ 8.9319038, 47.5003269 ], + [ 8.9321113, 47.5003132 ], + [ 8.9323174, 47.5002921 ], + [ 8.9325216, 47.5002637 ], + [ 8.9327233, 47.5002281 ], + [ 8.932922, 47.5001854 ], + [ 8.9331172, 47.5001357 ], + [ 8.933308199999999, 47.5000792 ], + [ 8.9334946, 47.500016 ], + [ 8.9336759, 47.4999462 ], + [ 8.9338515, 47.4998701 ], + [ 8.934021, 47.4997879 ], + [ 8.9341839, 47.4996998 ], + [ 8.9343398, 47.499606 ], + [ 8.9344882, 47.4995068 ], + [ 8.9346288, 47.4994025 ], + [ 8.9347611, 47.4992934 ], + [ 8.9348849, 47.4991797 ], + [ 8.9349996, 47.4990618 ], + [ 8.9351051, 47.49894 ], + [ 8.9352011, 47.4988146 ], + [ 8.9352872, 47.4986859 ], + [ 8.9353633, 47.4985544 ], + [ 8.9354291, 47.4984204 ], + [ 8.9354845, 47.4982842 ], + [ 8.9355293, 47.4981462 ], + [ 8.9355634, 47.4980069 ], + [ 8.9355866, 47.4978665 ], + [ 8.935599, 47.4977255 ], + [ 8.9356005, 47.4975842 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0131", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Wittenwil", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Wittenwil", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Wittenwil", + "lang" : "it-CH" + }, + { + "text" : "Substation Wittenwil", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8499047, 47.5295015 ], + [ 7.8500677, 47.5296514 ], + [ 7.8505053, 47.5301331 ], + [ 7.8508694, 47.5305353 ], + [ 7.8510051, 47.5305829 ], + [ 7.8512755, 47.5306659 ], + [ 7.8515249, 47.5307767 ], + [ 7.8522501, 47.5302537 ], + [ 7.8524231, 47.5300055 ], + [ 7.8522834, 47.5299345 ], + [ 7.8521776, 47.5298284 ], + [ 7.8520392, 47.5298317 ], + [ 7.8520135, 47.5298322 ], + [ 7.8519877000000005, 47.5298321 ], + [ 7.851962, 47.5298315 ], + [ 7.8519363, 47.5298302 ], + [ 7.8519108, 47.5298284 ], + [ 7.8518853, 47.5298259 ], + [ 7.8518599, 47.5298229 ], + [ 7.8518346999999995, 47.5298193 ], + [ 7.8518094, 47.5298152 ], + [ 7.8517844, 47.5298104 ], + [ 7.8517596, 47.5298051 ], + [ 7.8517351, 47.5297992 ], + [ 7.8517109, 47.5297927 ], + [ 7.851687, 47.5297857 ], + [ 7.8516635, 47.5297782 ], + [ 7.8516404, 47.5297701 ], + [ 7.8516148999999995, 47.52976 ], + [ 7.8515897, 47.5297495 ], + [ 7.8515649, 47.5297387 ], + [ 7.8515404, 47.5297274 ], + [ 7.8515163999999995, 47.5297158 ], + [ 7.8514927, 47.5297038 ], + [ 7.8514695, 47.5296914 ], + [ 7.8514467, 47.5296787 ], + [ 7.8514244, 47.5296656 ], + [ 7.8514025, 47.5296522 ], + [ 7.8513811, 47.5296385 ], + [ 7.8513602, 47.5296244 ], + [ 7.8513398, 47.52961 ], + [ 7.8513198, 47.5295953 ], + [ 7.8509531, 47.5292981 ], + [ 7.8509269, 47.5292767 ], + [ 7.8509014, 47.529255 ], + [ 7.8508765, 47.5292329 ], + [ 7.8508523, 47.5292105 ], + [ 7.8508287, 47.5291878 ], + [ 7.8508058, 47.5291648 ], + [ 7.8507836, 47.5291414 ], + [ 7.8507621, 47.5291178 ], + [ 7.850553, 47.5288823 ], + [ 7.8505378, 47.5288658 ], + [ 7.850522, 47.5288495 ], + [ 7.8505054, 47.5288336 ], + [ 7.8504882, 47.528818 ], + [ 7.8504704, 47.5288027 ], + [ 7.8504518999999995, 47.5287877 ], + [ 7.8504328, 47.5287732 ], + [ 7.850413, 47.528759 ], + [ 7.8503927000000004, 47.5287452 ], + [ 7.8503718, 47.5287318 ], + [ 7.8503504, 47.5287188 ], + [ 7.8503284, 47.5287062 ], + [ 7.8501988, 47.5286387 ], + [ 7.8501308, 47.5285706 ], + [ 7.8501094, 47.5284942 ], + [ 7.8500187, 47.5284603 ], + [ 7.8499618, 47.5284546 ], + [ 7.849905, 47.5284484 ], + [ 7.8498483, 47.5284416 ], + [ 7.8497918, 47.5284342 ], + [ 7.8497354, 47.5284263 ], + [ 7.8496793, 47.5284178 ], + [ 7.8496233, 47.5284088 ], + [ 7.8495675, 47.5283993 ], + [ 7.8495118999999995, 47.5283892 ], + [ 7.8490714, 47.5283058 ], + [ 7.8489424, 47.5283158 ], + [ 7.8486251, 47.5282188 ], + [ 7.8484055, 47.5281615 ], + [ 7.8482392, 47.5281299 ], + [ 7.8478465, 47.5280102 ], + [ 7.8475882, 47.5279529 ], + [ 7.8468373, 47.5278454 ], + [ 7.8467734, 47.5279378 ], + [ 7.8472385, 47.528021 ], + [ 7.8474817, 47.528101 ], + [ 7.8475215, 47.5281145 ], + [ 7.8475608, 47.5281284 ], + [ 7.8475997, 47.5281429 ], + [ 7.8476382000000005, 47.5281579 ], + [ 7.8476763, 47.5281734 ], + [ 7.8477139, 47.5281894 ], + [ 7.847751, 47.5282059 ], + [ 7.8477877, 47.5282229 ], + [ 7.8478238000000005, 47.5282403 ], + [ 7.8486253, 47.5286363 ], + [ 7.8486538, 47.5286501 ], + [ 7.8486827, 47.5286635 ], + [ 7.848712, 47.5286766 ], + [ 7.8487416, 47.5286894 ], + [ 7.8487716, 47.5287017 ], + [ 7.8488019, 47.5287137 ], + [ 7.8490851, 47.5288243 ], + [ 7.8491159, 47.5288366 ], + [ 7.8491462, 47.5288495 ], + [ 7.849176, 47.5288628 ], + [ 7.8492052999999995, 47.5288767 ], + [ 7.849234, 47.5288912 ], + [ 7.8492622, 47.5289061 ], + [ 7.8492898, 47.5289215 ], + [ 7.8493169, 47.5289373 ], + [ 7.8493432, 47.5289537 ], + [ 7.849369, 47.5289705 ], + [ 7.8493941, 47.5289877 ], + [ 7.8494186, 47.5290054 ], + [ 7.8494423, 47.5290235 ], + [ 7.8494654, 47.529042 ], + [ 7.8494919, 47.5290644 ], + [ 7.8495177, 47.5290872 ], + [ 7.8495429, 47.5291102 ], + [ 7.8495674, 47.5291337 ], + [ 7.8495912, 47.5291574 ], + [ 7.8496143, 47.5291815 ], + [ 7.8496367, 47.5292058 ], + [ 7.8496584, 47.5292305 ], + [ 7.8496794, 47.5292554 ], + [ 7.8496996, 47.5292806 ], + [ 7.8497226, 47.5293093 ], + [ 7.8497463, 47.5293377 ], + [ 7.8497708, 47.5293658 ], + [ 7.8497961, 47.5293936 ], + [ 7.8498222, 47.5294211 ], + [ 7.849849, 47.5294483 ], + [ 7.8498765, 47.5294751 ], + [ 7.8499047, 47.5295015 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns251", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Sonnenberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Sonnenberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Sonnenberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Sonnenberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4772701, 47.4166329 ], + [ 7.4773146, 47.4165888 ], + [ 7.4777156, 47.416197 ], + [ 7.477784, 47.4161063 ], + [ 7.4781349, 47.4158703 ], + [ 7.4782398, 47.4157651 ], + [ 7.4785476, 47.4155899 ], + [ 7.4789372, 47.4154193 ], + [ 7.4790965, 47.4153264 ], + [ 7.4790577, 47.4152941 ], + [ 7.4790034, 47.415249 ], + [ 7.4787352, 47.4150258 ], + [ 7.4783118, 47.4146785 ], + [ 7.4777831, 47.414242 ], + [ 7.4774474, 47.4139648 ], + [ 7.4773203, 47.4138615 ], + [ 7.4772013, 47.4139167 ], + [ 7.4765704, 47.4141882 ], + [ 7.4761709, 47.4144096 ], + [ 7.4755506, 47.4146739 ], + [ 7.4751404, 47.4147669 ], + [ 7.4747561, 47.4148305 ], + [ 7.4747513, 47.4148312 ], + [ 7.4746883, 47.4149098 ], + [ 7.474762, 47.4150526 ], + [ 7.4748357, 47.415231 ], + [ 7.4748044, 47.4155023 ], + [ 7.4748043, 47.4155029 ], + [ 7.474794, 47.4156879 ], + [ 7.4746994, 47.415895 ], + [ 7.4744156, 47.4161235 ], + [ 7.4741002, 47.4163521 ], + [ 7.4737533, 47.4166235 ], + [ 7.4735641, 47.4168163 ], + [ 7.473396, 47.4170249 ], + [ 7.4731326, 47.4170604 ], + [ 7.4729903, 47.4171528 ], + [ 7.4728351, 47.4172188 ], + [ 7.4727964, 47.4173506 ], + [ 7.4727771, 47.4175924 ], + [ 7.4726996, 47.4177243 ], + [ 7.4726997, 47.4178781 ], + [ 7.4726415, 47.4179397 ], + [ 7.4726674, 47.41801 ], + [ 7.4725996, 47.4181527 ], + [ 7.4727242, 47.4182292 ], + [ 7.4731893, 47.4182319 ], + [ 7.4733436, 47.4181938 ], + [ 7.4734137, 47.41817 ], + [ 7.4735118, 47.41807 ], + [ 7.4737501, 47.4178653 ], + [ 7.4739673, 47.4176701 ], + [ 7.4741004, 47.417513 ], + [ 7.4741845, 47.417413 ], + [ 7.4742927, 47.4173876 ], + [ 7.474602, 47.4175098 ], + [ 7.4753391, 47.417823 ], + [ 7.4758906, 47.4180693 ], + [ 7.4760683, 47.4181486 ], + [ 7.4761291, 47.4181757 ], + [ 7.4761585, 47.4181889 ], + [ 7.4762271, 47.4181158 ], + [ 7.4763172, 47.4180421 ], + [ 7.4763336, 47.4179842 ], + [ 7.4764028, 47.4179309 ], + [ 7.4765109, 47.4178756 ], + [ 7.4766156, 47.4177996 ], + [ 7.4766774, 47.4177325 ], + [ 7.4767713, 47.4176156 ], + [ 7.4769001, 47.4174493 ], + [ 7.4769156, 47.4173334 ], + [ 7.4769129, 47.4173153 ], + [ 7.4769516, 47.4170829 ], + [ 7.4770206, 47.4169031 ], + [ 7.4770798, 47.4168213 ], + [ 7.4771092, 47.4167922 ], + [ 7.4770586, 47.4167723 ], + [ 7.4769027999999995, 47.4167109 ], + [ 7.4763538, 47.4164948 ], + [ 7.4761222, 47.4163757 ], + [ 7.4757605, 47.4162125 ], + [ 7.4754834, 47.4160916 ], + [ 7.4749422, 47.4158553 ], + [ 7.4749776, 47.4157069 ], + [ 7.4749812, 47.4156919 ], + [ 7.4750049, 47.4156482 ], + [ 7.4755899, 47.4159034 ], + [ 7.4759139, 47.4160447 ], + [ 7.4762977, 47.4162168 ], + [ 7.476567, 47.4163447 ], + [ 7.4770769999999995, 47.4165537 ], + [ 7.4772332, 47.4166178 ], + [ 7.4772701, 47.4166329 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns104", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Bärelöcher", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Bärelöcher", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Bärelöcher", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Bärelöcher", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8802672, 47.418066 ], + [ 7.8803002, 47.4180808 ], + [ 7.8803162, 47.4180795 ], + [ 7.8803412, 47.418077 ], + [ 7.8803648, 47.4180606 ], + [ 7.8803554, 47.4179167 ], + [ 7.8803538, 47.4177845 ], + [ 7.8803797, 47.4176663 ], + [ 7.880424, 47.4175121 ], + [ 7.8803786, 47.4174635 ], + [ 7.8803778, 47.4173761 ], + [ 7.8804646, 47.4172101 ], + [ 7.8805011, 47.4170715 ], + [ 7.8805761, 47.416888900000004 ], + [ 7.880532, 47.4168362 ], + [ 7.8805127, 47.4167569 ], + [ 7.880551, 47.4166298 ], + [ 7.8806177, 47.4164812 ], + [ 7.8806867, 47.4163531 ], + [ 7.8807100000000005, 47.4162929 ], + [ 7.8807095, 47.4162057 ], + [ 7.880694, 47.4160737 ], + [ 7.8806432, 47.4161141 ], + [ 7.8803335, 47.4167698 ], + [ 7.8803245, 47.4169381 ], + [ 7.8803000999999995, 47.4171539 ], + [ 7.880275, 47.4172663 ], + [ 7.8802159, 47.4174209 ], + [ 7.880275, 47.4174971 ], + [ 7.8802702, 47.4176814 ], + [ 7.8802713, 47.4178476 ], + [ 7.8802631, 47.4180118 ], + [ 7.8802672, 47.418066 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns187", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Mapprach - Hofmatt", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Mapprach - Hofmatt", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Mapprach - Hofmatt", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Mapprach - Hofmatt", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5692008, 47.0019003 ], + [ 7.569195, 47.0017591 ], + [ 7.5691785, 47.0016182 ], + [ 7.5691512, 47.0014782 ], + [ 7.5691132, 47.0013393 ], + [ 7.5690647, 47.001202 ], + [ 7.5690057, 47.0010666 ], + [ 7.5689364, 47.0009335 ], + [ 7.5688571, 47.0008031 ], + [ 7.5687679, 47.0006756 ], + [ 7.568669, 47.0005516 ], + [ 7.5685608, 47.0004313 ], + [ 7.5684436, 47.000315 ], + [ 7.5683176, 47.000203 ], + [ 7.5681832, 47.0000957 ], + [ 7.5680408, 46.9999934 ], + [ 7.5678908, 46.9998963 ], + [ 7.5677336, 46.9998048 ], + [ 7.5675695, 46.9997189 ], + [ 7.5673991, 46.9996391 ], + [ 7.5672229, 46.9995655 ], + [ 7.5670413, 46.9994983 ], + [ 7.5668547, 46.9994377 ], + [ 7.5666638, 46.9993838 ], + [ 7.566469, 46.9993369 ], + [ 7.5662709, 46.999297 ], + [ 7.5660701, 46.9992642 ], + [ 7.565867, 46.9992387 ], + [ 7.5656622, 46.9992205 ], + [ 7.5654563, 46.9992096 ], + [ 7.5652498, 46.9992062 ], + [ 7.5650434, 46.9992101 ], + [ 7.5648376, 46.9992214 ], + [ 7.5646329, 46.9992401 ], + [ 7.5644299, 46.999266 ], + [ 7.5642292, 46.9992992 ], + [ 7.5640313, 46.9993396 ], + [ 7.5638366999999995, 46.9993869 ], + [ 7.5636461, 46.9994412 ], + [ 7.5634598, 46.9995022 ], + [ 7.5632785, 46.9995699 ], + [ 7.5631026, 46.9996439 ], + [ 7.5629326, 46.9997241 ], + [ 7.5627689, 46.9998103 ], + [ 7.5626121, 46.9999022 ], + [ 7.5624626, 46.9999996 ], + [ 7.5623206, 47.0001022 ], + [ 7.5621868, 47.0002098 ], + [ 7.5620613, 47.000322 ], + [ 7.5619446, 47.0004386 ], + [ 7.561837, 47.0005592 ], + [ 7.5617387, 47.0006834 ], + [ 7.5616501, 47.000811 ], + [ 7.5615714, 47.0009417 ], + [ 7.5615027999999995, 47.0010749 ], + [ 7.5614444, 47.0012104 ], + [ 7.5613965, 47.0013479 ], + [ 7.5613592, 47.0014868 ], + [ 7.5613326, 47.0016269 ], + [ 7.5613167, 47.0017678 ], + [ 7.5613116, 47.001909 ], + [ 7.5613173, 47.0020502 ], + [ 7.5613339, 47.0021911 ], + [ 7.5613611, 47.0023311 ], + [ 7.5613991, 47.00247 ], + [ 7.5614476, 47.0026073 ], + [ 7.5615065999999995, 47.0027427 ], + [ 7.5615758, 47.0028758 ], + [ 7.5616552, 47.0030063 ], + [ 7.5617444, 47.0031337 ], + [ 7.5618432, 47.0032577 ], + [ 7.5619514, 47.0033781 ], + [ 7.5620686, 47.0034944 ], + [ 7.5621946, 47.0036063 ], + [ 7.562329, 47.0037136 ], + [ 7.5624714, 47.003816 ], + [ 7.5626214, 47.003913 ], + [ 7.5627786, 47.0040046 ], + [ 7.5629427, 47.0040905 ], + [ 7.5631131, 47.0041703 ], + [ 7.5632893, 47.0042439 ], + [ 7.563471, 47.0043111 ], + [ 7.5636575, 47.0043717 ], + [ 7.5638485, 47.0044256 ], + [ 7.5640433, 47.0044726 ], + [ 7.5642414, 47.0045125 ], + [ 7.5644423, 47.0045452 ], + [ 7.5646454, 47.0045707 ], + [ 7.5648502, 47.004589 ], + [ 7.5650561, 47.0045998 ], + [ 7.5652626, 47.0046033 ], + [ 7.565469, 47.0045994 ], + [ 7.5656749, 47.004588 ], + [ 7.5658796, 47.0045694 ], + [ 7.5660826, 47.0045434 ], + [ 7.5662833, 47.0045102 ], + [ 7.5664812999999995, 47.0044699 ], + [ 7.5666758, 47.0044225 ], + [ 7.5668665, 47.0043682 ], + [ 7.5670528, 47.0043072 ], + [ 7.5672341, 47.0042396 ], + [ 7.56741, 47.0041655 ], + [ 7.56758, 47.0040853 ], + [ 7.5677437, 47.0039991 ], + [ 7.5679005, 47.0039072 ], + [ 7.56805, 47.0038098 ], + [ 7.568192, 47.0037071 ], + [ 7.5683258, 47.0035996 ], + [ 7.5684512999999995, 47.0034873 ], + [ 7.568568, 47.0033707 ], + [ 7.5686756, 47.0032502 ], + [ 7.5687738, 47.0031259 ], + [ 7.5688624, 47.0029983 ], + [ 7.5689411, 47.0028677 ], + [ 7.5690098, 47.0027344 ], + [ 7.5690681, 47.0025989 ], + [ 7.569116, 47.0024614 ], + [ 7.5691532, 47.0023225 ], + [ 7.5691799, 47.0021824 ], + [ 7.5691957, 47.0020415 ], + [ 7.5692008, 47.0019003 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "THO0001", + "country" : "CHE", + "name" : [ + { + "text" : "Justizvollzugsanstalt Thorberg", + "lang" : "de-CH" + }, + { + "text" : "Justizvollzugsanstalt Thorberg", + "lang" : "fr-CH" + }, + { + "text" : "Justizvollzugsanstalt Thorberg", + "lang" : "it-CH" + }, + { + "text" : "Justizvollzugsanstalt Thorberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Justizvollzugsanstalt Thorberg", + "lang" : "de-CH" + }, + { + "text" : "Établissement pénitentiaire de Thorberg", + "lang" : "fr-CH" + }, + { + "text" : "Prigione di Thorberg", + "lang" : "it-CH" + }, + { + "text" : "Thorberg Prison", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Leitung SIKO", + "lang" : "de-CH" + }, + { + "text" : "Chef du SIKO", + "lang" : "fr-CH" + }, + { + "text" : "Capo SIKO", + "lang" : "it-CH" + }, + { + "text" : "SIKO Head", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Simon Peier", + "lang" : "de-CH" + }, + { + "text" : "Simon Peier", + "lang" : "fr-CH" + }, + { + "text" : "Simon Peier", + "lang" : "it-CH" + }, + { + "text" : "Simon Peier", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ajv.sid.be.ch/de/start/themen/erwachsenen--und-jugendvollzug/justizvollzugsanstalt-thorberg.html", + "email" : "jva.thorberg@be.ch", + "phone" : "0041316356411", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4834071, 47.3891948 ], + [ 7.4832669, 47.3891734 ], + [ 7.4831695, 47.3891638 ], + [ 7.482294, 47.3893725 ], + [ 7.4820698, 47.3894059 ], + [ 7.4819297, 47.3895107 ], + [ 7.4816256, 47.3898043 ], + [ 7.4815044, 47.3899205 ], + [ 7.4814137, 47.3900267 ], + [ 7.481292, 47.3901786 ], + [ 7.4812318, 47.3902818 ], + [ 7.4812175, 47.3903688 ], + [ 7.4812359, 47.3904505 ], + [ 7.4820012, 47.3902559 ], + [ 7.4822246, 47.3902007 ], + [ 7.4825333, 47.3901116 ], + [ 7.4826871, 47.3900673 ], + [ 7.4830935, 47.390029 ], + [ 7.483444, 47.3901146 ], + [ 7.4843974, 47.3903284 ], + [ 7.4849511, 47.3903567 ], + [ 7.4853926, 47.390328 ], + [ 7.4860373, 47.390204 ], + [ 7.4865113, 47.3900074 ], + [ 7.486628, 47.3899519 ], + [ 7.4867163, 47.3898561 ], + [ 7.4869247, 47.3895805 ], + [ 7.4871052, 47.3894138 ], + [ 7.4873309, 47.3892563 ], + [ 7.4875517, 47.3891632 ], + [ 7.4879244, 47.3891029 ], + [ 7.4883063, 47.3890537 ], + [ 7.4886598, 47.3889921 ], + [ 7.4887776, 47.3889775 ], + [ 7.4888778, 47.3889614 ], + [ 7.4889106, 47.3889531 ], + [ 7.4889424, 47.388943 ], + [ 7.4889729, 47.3889312 ], + [ 7.4890013, 47.3889181 ], + [ 7.489028, 47.3889035 ], + [ 7.4890529, 47.3888874 ], + [ 7.4890683, 47.3888742 ], + [ 7.489082, 47.3888602 ], + [ 7.4890937, 47.3888454 ], + [ 7.4891035, 47.3888299 ], + [ 7.4891112, 47.3888139 ], + [ 7.4891168, 47.3887975 ], + [ 7.4891203, 47.3887808 ], + [ 7.4891202, 47.3887583 ], + [ 7.4891173, 47.3887358 ], + [ 7.4891118, 47.3887136 ], + [ 7.4891024999999996, 47.3886895 ], + [ 7.4890901, 47.388666 ], + [ 7.4890745, 47.3886434 ], + [ 7.489056, 47.3886219 ], + [ 7.4889707, 47.3885537 ], + [ 7.4889348, 47.388525 ], + [ 7.4888533, 47.3884628 ], + [ 7.4888426, 47.3884475 ], + [ 7.4888335, 47.3884318 ], + [ 7.4888261, 47.3884157 ], + [ 7.4888144, 47.3883657 ], + [ 7.4888395, 47.3883206 ], + [ 7.4889108, 47.3882562 ], + [ 7.488985, 47.3882072 ], + [ 7.4890754, 47.3881627 ], + [ 7.4893512, 47.388044 ], + [ 7.4894899, 47.3879822 ], + [ 7.4895911, 47.387925 ], + [ 7.4896095, 47.3879152 ], + [ 7.4896265, 47.3879043 ], + [ 7.4896421, 47.3878925 ], + [ 7.4896561, 47.3878798 ], + [ 7.4896685, 47.3878663 ], + [ 7.4896779, 47.3878538 ], + [ 7.4896859, 47.3878408 ], + [ 7.4896924, 47.3878275 ], + [ 7.4897021, 47.3878122 ], + [ 7.4897096, 47.3877964 ], + [ 7.4897149, 47.3877801 ], + [ 7.4897177, 47.3877636 ], + [ 7.489718, 47.3877501 ], + [ 7.4897167, 47.3877367 ], + [ 7.4897138, 47.3877233 ], + [ 7.4896179, 47.3877697 ], + [ 7.4894796, 47.3878125 ], + [ 7.4893683, 47.3878202 ], + [ 7.4887593, 47.3879285 ], + [ 7.4879, 47.3881904 ], + [ 7.4874844, 47.3882583 ], + [ 7.487458, 47.3882623 ], + [ 7.4873534, 47.3882666 ], + [ 7.4869698, 47.3882821 ], + [ 7.4861631, 47.3883553 ], + [ 7.4858067, 47.3885241 ], + [ 7.4853817, 47.3887475 ], + [ 7.4848408, 47.3888747 ], + [ 7.4847464, 47.3888833 ], + [ 7.4847446, 47.388896 ], + [ 7.4846594, 47.3889049 ], + [ 7.4845958, 47.3889265 ], + [ 7.4844922, 47.3889935 ], + [ 7.4843775, 47.3890589 ], + [ 7.4841562, 47.3890989 ], + [ 7.4839573, 47.3891431 ], + [ 7.4836495, 47.3891783 ], + [ 7.4834534999999995, 47.3891964 ], + [ 7.4834071, 47.3891948 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns335", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Mittler Stürmen", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Mittler Stürmen", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Mittler Stürmen", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Mittler Stürmen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.9805673, 46.047029 ], + [ 8.980558, 46.0468879 ], + [ 8.9805381, 46.0467473 ], + [ 8.9805077, 46.0466076 ], + [ 8.9804668, 46.0464692 ], + [ 8.9804156, 46.0463325 ], + [ 8.9803541, 46.0461978 ], + [ 8.9802826, 46.0460656 ], + [ 8.9802013, 46.0459362 ], + [ 8.9801104, 46.0458099 ], + [ 8.9800101, 46.0456871 ], + [ 8.9799007, 46.0455681 ], + [ 8.9797825, 46.0454532 ], + [ 8.9796558, 46.0453428 ], + [ 8.9795211, 46.0452372 ], + [ 8.9793785, 46.0451367 ], + [ 8.9792286, 46.0450414 ], + [ 8.9790718, 46.0449518 ], + [ 8.9789084, 46.044868 ], + [ 8.978739, 46.0447903 ], + [ 8.9785639, 46.0447189 ], + [ 8.9783838, 46.0446539 ], + [ 8.978199, 46.0445956 ], + [ 8.97801, 46.0445441 ], + [ 8.9778175, 46.0444995 ], + [ 8.9776218, 46.0444621 ], + [ 8.9774237, 46.0444318 ], + [ 8.9772235, 46.0444088 ], + [ 8.9770219, 46.0443931 ], + [ 8.9768193, 46.0443848 ], + [ 8.9766164, 46.0443838 ], + [ 8.9764137, 46.0443903 ], + [ 8.9762118, 46.0444041 ], + [ 8.9760112, 46.0444253 ], + [ 8.9758125, 46.0444538 ], + [ 8.9756162, 46.0444895 ], + [ 8.9754228, 46.0445322 ], + [ 8.9752329, 46.044582 ], + [ 8.9750471, 46.0446386 ], + [ 8.9748657, 46.0447019 ], + [ 8.9746893, 46.0447717 ], + [ 8.974518400000001, 46.0448479 ], + [ 8.9743535, 46.0449302 ], + [ 8.974195, 46.0450184 ], + [ 8.9740433, 46.0451122 ], + [ 8.9738989, 46.0452115 ], + [ 8.9737622, 46.0453158 ], + [ 8.9736335, 46.045425 ], + [ 8.9735131, 46.0455388 ], + [ 8.9734015, 46.0456567 ], + [ 8.9732989, 46.0457786 ], + [ 8.9732056, 46.0459041 ], + [ 8.9731218, 46.0460328 ], + [ 8.9730479, 46.0461643 ], + [ 8.9729839, 46.0462984 ], + [ 8.9729301, 46.0464346 ], + [ 8.9728866, 46.0465726 ], + [ 8.9728536, 46.046712 ], + [ 8.972831, 46.0468524 ], + [ 8.9728191, 46.0469935 ], + [ 8.9728177, 46.0471348 ], + [ 8.972827, 46.0472759 ], + [ 8.9728469, 46.0474165 ], + [ 8.9728773, 46.0475562 ], + [ 8.9729182, 46.0476946 ], + [ 8.9729694, 46.0478313 ], + [ 8.9730309, 46.0479659 ], + [ 8.9731023, 46.0480982 ], + [ 8.9731836, 46.0482276 ], + [ 8.9732745, 46.0483539 ], + [ 8.9733748, 46.0484767 ], + [ 8.9734842, 46.0485957 ], + [ 8.9736024, 46.0487106 ], + [ 8.9737291, 46.048821 ], + [ 8.9738638, 46.0489266 ], + [ 8.9740064, 46.0490272 ], + [ 8.9741563, 46.0491224 ], + [ 8.9743131, 46.049212 ], + [ 8.9744765, 46.0492958 ], + [ 8.9746459, 46.0493736 ], + [ 8.974821, 46.049445 ], + [ 8.9750012, 46.04951 ], + [ 8.975186, 46.0495683 ], + [ 8.9753749, 46.0496198 ], + [ 8.9755675, 46.0496643 ], + [ 8.9757631, 46.0497018 ], + [ 8.9759613, 46.0497321 ], + [ 8.9761615, 46.0497551 ], + [ 8.9763632, 46.0497708 ], + [ 8.9765658, 46.0497791 ], + [ 8.9767687, 46.0497801 ], + [ 8.9769714, 46.0497736 ], + [ 8.9771733, 46.0497597 ], + [ 8.9773739, 46.0497386 ], + [ 8.9775727, 46.0497101 ], + [ 8.977769, 46.0496744 ], + [ 8.9779624, 46.0496317 ], + [ 8.9781523, 46.0495819 ], + [ 8.9783382, 46.0495253 ], + [ 8.9785196, 46.049462 ], + [ 8.9786959, 46.0493921 ], + [ 8.9788668, 46.0493159 ], + [ 8.9790318, 46.0492337 ], + [ 8.979190299999999, 46.0491455 ], + [ 8.979341999999999, 46.0490516 ], + [ 8.9794864, 46.0489524 ], + [ 8.9796231, 46.048848 ], + [ 8.9797518, 46.0487388 ], + [ 8.979872199999999, 46.048625 ], + [ 8.9799838, 46.048507 ], + [ 8.9800864, 46.0483852 ], + [ 8.9801796, 46.0482597 ], + [ 8.9802634, 46.048131 ], + [ 8.9803373, 46.0479994 ], + [ 8.9804013, 46.0478654 ], + [ 8.9804551, 46.0477291 ], + [ 8.9804985, 46.0475911 ], + [ 8.980531599999999, 46.0474517 ], + [ 8.980554099999999, 46.0473113 ], + [ 8.980566, 46.0471703 ], + [ 8.9805673, 46.047029 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "STA0001", + "country" : "CHE", + "name" : [ + { + "text" : "Carcere Penale La Stampa e Carcere Giudiziario La Farera", + "lang" : "de-CH" + }, + { + "text" : "Carcere Penale La Stampa e Carcere Giudiziario La Farera", + "lang" : "fr-CH" + }, + { + "text" : "Carcere Penale La Stampa e Carcere Giudiziario La Farera", + "lang" : "it-CH" + }, + { + "text" : "Carcere Penale La Stampa e Carcere Giudiziario La Farera", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Strutture Carcerarie Cantonali, Casella Postale, 6901 Lugano", + "lang" : "de-CH" + }, + { + "text" : "Strutture Carcerarie Cantonali, Casella Postale, 6901 Lugano", + "lang" : "fr-CH" + }, + { + "text" : "Strutture Carcerarie Cantonali, Casella Postale, 6901 Lugano", + "lang" : "it-CH" + }, + { + "text" : "Strutture Carcerarie Cantonali, Casella Postale, 6901 Lugano", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Direzione delle Strutture Carcerarie / Staff di direzione", + "lang" : "de-CH" + }, + { + "text" : "Direzione delle Strutture Carcerarie / Staff di direzione", + "lang" : "fr-CH" + }, + { + "text" : "Direzione delle Strutture Carcerarie / Staff di direzione", + "lang" : "it-CH" + }, + { + "text" : "Direzione delle Strutture Carcerarie / Staff di direzione", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.ti.ch/carcere", + "email" : "di-penitenziario.cantonale@ti.ch", + "phone" : "0041918150011", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 10.1475, 46.2333478 ], + [ 10.1467355, 46.2319182 ], + [ 10.1459512, 46.2304825 ], + [ 10.1440152, 46.2297546 ], + [ 10.1439031, 46.2297512 ], + [ 10.1436995, 46.2297524 ], + [ 10.1434963, 46.2297609 ], + [ 10.143294, 46.2297769 ], + [ 10.1430932, 46.2298001 ], + [ 10.1428944, 46.2298307 ], + [ 10.1426982, 46.2298684 ], + [ 10.1425051, 46.2299131 ], + [ 10.1423157, 46.2299649 ], + [ 10.1421304, 46.2300234 ], + [ 10.1419498, 46.2300886 ], + [ 10.1417743, 46.2301602 ], + [ 10.1416045, 46.2302382 ], + [ 10.1414408, 46.2303221 ], + [ 10.1412836, 46.230412 ], + [ 10.1411335, 46.2305074 ], + [ 10.1409907, 46.2306081 ], + [ 10.1408557, 46.2307139 ], + [ 10.1407289, 46.2308244 ], + [ 10.1406106, 46.2309394 ], + [ 10.1405011, 46.2310585 ], + [ 10.1404008, 46.2311815 ], + [ 10.1403099, 46.2313079 ], + [ 10.1402286, 46.2314374 ], + [ 10.1401572, 46.2315697 ], + [ 10.1400959, 46.2317045 ], + [ 10.1400448, 46.2318412 ], + [ 10.1400042, 46.2319797 ], + [ 10.139974, 46.2321194 ], + [ 10.1399544, 46.23226 ], + [ 10.1399454, 46.2324012 ], + [ 10.1399471, 46.2325425 ], + [ 10.1399594, 46.2326835 ], + [ 10.1399824, 46.2328239 ], + [ 10.1400159, 46.2329632 ], + [ 10.1400599, 46.2331012 ], + [ 10.1401142, 46.2332374 ], + [ 10.1401787, 46.2333714 ], + [ 10.1402532, 46.2335028 ], + [ 10.1403376, 46.2336314 ], + [ 10.1404315, 46.2337568 ], + [ 10.1405347, 46.2338786 ], + [ 10.140647, 46.2339964 ], + [ 10.1407681, 46.23411 ], + [ 10.1408975, 46.2342191 ], + [ 10.141035, 46.2343233 ], + [ 10.1411801, 46.2344224 ], + [ 10.1413326, 46.234516 ], + [ 10.1414918, 46.234604 ], + [ 10.1416575, 46.2346861 ], + [ 10.1418292, 46.2347621 ], + [ 10.1420064, 46.2348317 ], + [ 10.1421886, 46.2348948 ], + [ 10.1423752, 46.2349512 ], + [ 10.1425659, 46.2350008 ], + [ 10.1427601, 46.2350433 ], + [ 10.1429572, 46.2350787 ], + [ 10.1431567, 46.235107 ], + [ 10.143358, 46.2351279 ], + [ 10.1435607, 46.2351415 ], + [ 10.1437641, 46.2351477 ], + [ 10.1439677, 46.2351466 ], + [ 10.1441709, 46.235138 ], + [ 10.1443732, 46.2351221 ], + [ 10.144574, 46.2350988 ], + [ 10.1447728, 46.2350683 ], + [ 10.1449691, 46.2350306 ], + [ 10.1451622, 46.2349858 ], + [ 10.1453516, 46.2349341 ], + [ 10.1455369, 46.2348755 ], + [ 10.1457176, 46.2348103 ], + [ 10.145893, 46.2347387 ], + [ 10.1460629, 46.2346607 ], + [ 10.1462266, 46.2345767 ], + [ 10.1463837, 46.2344869 ], + [ 10.1465339, 46.2343915 ], + [ 10.1466767, 46.2342908 ], + [ 10.1468116, 46.234185 ], + [ 10.1469384, 46.2340744 ], + [ 10.1470567, 46.2339595 ], + [ 10.1471662, 46.2338403 ], + [ 10.1472665, 46.2337174 ], + [ 10.1473574, 46.233591 ], + [ 10.1474387, 46.2334614 ], + [ 10.1475, 46.2333478 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0021", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Campocologno", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Campocologno", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Campocologno", + "lang" : "it-CH" + }, + { + "text" : "Substation Campocologno", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.5432612, 46.9774663 ], + [ 9.5432502, 46.9773252 ], + [ 9.5432285, 46.9771847 ], + [ 9.5431961, 46.9770452 ], + [ 9.5431531, 46.976907 ], + [ 9.5430995, 46.9767706 ], + [ 9.5430356, 46.9766362 ], + [ 9.5429615, 46.9765044 ], + [ 9.5428774, 46.9763753 ], + [ 9.5427836, 46.9762495 ], + [ 9.5426803, 46.9761272 ], + [ 9.5425677, 46.9760088 ], + [ 9.5424463, 46.9758945 ], + [ 9.5423163, 46.9757848 ], + [ 9.5421781, 46.9756798 ], + [ 9.542032, 46.97558 ], + [ 9.5418786, 46.9754855 ], + [ 9.5417181, 46.9753967 ], + [ 9.541551, 46.9753137 ], + [ 9.5413778, 46.9752369 ], + [ 9.541199, 46.9751663 ], + [ 9.541015, 46.9751022 ], + [ 9.5408264, 46.9750448 ], + [ 9.5406337, 46.9749943 ], + [ 9.5404373, 46.9749507 ], + [ 9.5402379, 46.9749142 ], + [ 9.540036, 46.974885 ], + [ 9.5398321, 46.9748629 ], + [ 9.5396268, 46.9748483 ], + [ 9.5394207, 46.9748409 ], + [ 9.5392143, 46.974841 ], + [ 9.5390081, 46.9748485 ], + [ 9.5388029, 46.9748634 ], + [ 9.538599, 46.9748855 ], + [ 9.5383971, 46.974915 ], + [ 9.5381978, 46.9749516 ], + [ 9.5380015, 46.9749954 ], + [ 9.5378089, 46.9750461 ], + [ 9.5376204, 46.9751036 ], + [ 9.5374365, 46.9751678 ], + [ 9.5372578, 46.9752385 ], + [ 9.5370847, 46.9753156 ], + [ 9.5369178, 46.9753987 ], + [ 9.5367575, 46.9754876 ], + [ 9.5366042, 46.9755822 ], + [ 9.5364583, 46.9756822 ], + [ 9.5363203, 46.9757872 ], + [ 9.5361905, 46.9758971 ], + [ 9.5360692, 46.9760114 ], + [ 9.5359569, 46.9761299 ], + [ 9.5358538, 46.9762523 ], + [ 9.5357602, 46.9763783 ], + [ 9.5356763, 46.9765074 ], + [ 9.5356025, 46.9766393 ], + [ 9.5355388, 46.9767737 ], + [ 9.5354855, 46.9769101 ], + [ 9.5354427, 46.9770484 ], + [ 9.5354105, 46.9771879 ], + [ 9.535389, 46.9773284 ], + [ 9.5353783, 46.9774695 ], + [ 9.535378399999999, 46.9776108 ], + [ 9.5353894, 46.9777519 ], + [ 9.535411, 46.9778924 ], + [ 9.5354434, 46.9780319 ], + [ 9.5354865, 46.9781701 ], + [ 9.53554, 46.9783065 ], + [ 9.5356039, 46.9784409 ], + [ 9.535678, 46.9785727 ], + [ 9.5357621, 46.9787018 ], + [ 9.5358559, 46.9788276 ], + [ 9.5359592, 46.9789499 ], + [ 9.5360717, 46.9790684 ], + [ 9.5361931, 46.9791826 ], + [ 9.5363231, 46.9792924 ], + [ 9.5364614, 46.9793973 ], + [ 9.5366074, 46.9794971 ], + [ 9.5367609, 46.9795916 ], + [ 9.5369214, 46.9796805 ], + [ 9.5370884, 46.9797634 ], + [ 9.5372616, 46.9798403 ], + [ 9.5374405, 46.9799109 ], + [ 9.5376245, 46.9799749 ], + [ 9.5378131, 46.9800323 ], + [ 9.5380059, 46.9800829 ], + [ 9.5382022, 46.9801265 ], + [ 9.5384016, 46.980163 ], + [ 9.5386036, 46.9801922 ], + [ 9.5388075, 46.9802143 ], + [ 9.5390128, 46.980229 ], + [ 9.539219, 46.9802363 ], + [ 9.5394254, 46.9802362 ], + [ 9.5396315, 46.9802287 ], + [ 9.5398368, 46.9802138 ], + [ 9.5400407, 46.9801917 ], + [ 9.5402426, 46.9801622 ], + [ 9.5404419, 46.9801256 ], + [ 9.5406382, 46.9800818 ], + [ 9.5408309, 46.9800311 ], + [ 9.5410194, 46.9799736 ], + [ 9.5412033, 46.9799093 ], + [ 9.541382, 46.9798386 ], + [ 9.5415551, 46.9797616 ], + [ 9.541722, 46.9796785 ], + [ 9.5418823, 46.9795895 ], + [ 9.5420357, 46.9794949 ], + [ 9.5421815, 46.9793949 ], + [ 9.5423196, 46.9792899 ], + [ 9.5424494, 46.97918 ], + [ 9.5425706, 46.9790657 ], + [ 9.542682899999999, 46.9789472 ], + [ 9.542786, 46.9788248 ], + [ 9.5428796, 46.9786988 ], + [ 9.5429634, 46.9785697 ], + [ 9.5430373, 46.9784378 ], + [ 9.543101, 46.9783034 ], + [ 9.5431543, 46.9781669 ], + [ 9.543197, 46.9780287 ], + [ 9.5432292, 46.9778892 ], + [ 9.5432506, 46.9777487 ], + [ 9.5432613, 46.9776076 ], + [ 9.5432612, 46.9774663 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0105", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Sarelli", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Sarelli", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Sarelli", + "lang" : "it-CH" + }, + { + "text" : "Substation Sarelli", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.9783336, 47.220016 ], + [ 8.9783241, 47.2198749 ], + [ 8.9783037, 47.2197343 ], + [ 8.9782727, 47.2195946 ], + [ 8.9782309, 47.2194563 ], + [ 8.9781785, 47.2193196 ], + [ 8.9781157, 47.2191849 ], + [ 8.9780427, 47.2190527 ], + [ 8.9779596, 47.2189233 ], + [ 8.9778667, 47.218797 ], + [ 8.9777642, 47.2186742 ], + [ 8.9776524, 47.2185552 ], + [ 8.9775316, 47.2184404 ], + [ 8.9774022, 47.21833 ], + [ 8.9772645, 47.2182244 ], + [ 8.9771188, 47.2181238 ], + [ 8.9769656, 47.2180286 ], + [ 8.9768054, 47.217939 ], + [ 8.9766384, 47.2178552 ], + [ 8.9764653, 47.2177775 ], + [ 8.9762864, 47.217706 ], + [ 8.9761023, 47.2176411 ], + [ 8.9759134, 47.2175828 ], + [ 8.9757203, 47.2175313 ], + [ 8.9755235, 47.2174867 ], + [ 8.9753236, 47.2174493 ], + [ 8.975121099999999, 47.217419 ], + [ 8.974916499999999, 47.217396 ], + [ 8.9747105, 47.2173803 ], + [ 8.9745035, 47.217372 ], + [ 8.9742961, 47.217371 ], + [ 8.974089, 47.2173775 ], + [ 8.9738826, 47.2173913 ], + [ 8.9736776, 47.2174125 ], + [ 8.9734745, 47.217441 ], + [ 8.9732739, 47.2174766 ], + [ 8.9730763, 47.2175194 ], + [ 8.9728822, 47.2175691 ], + [ 8.9726923, 47.2176257 ], + [ 8.972506899999999, 47.217689 ], + [ 8.9723266, 47.2177589 ], + [ 8.972152, 47.217835 ], + [ 8.9719834, 47.2179173 ], + [ 8.9718214, 47.2180055 ], + [ 8.9716664, 47.2180993 ], + [ 8.9715188, 47.2181985 ], + [ 8.9713791, 47.2183029 ], + [ 8.9712475, 47.2184121 ], + [ 8.9711245, 47.2185258 ], + [ 8.9710104, 47.2186438 ], + [ 8.9709056, 47.2187657 ], + [ 8.9708102, 47.2188911 ], + [ 8.9707246, 47.2190198 ], + [ 8.970649, 47.2191513 ], + [ 8.9705836, 47.2192854 ], + [ 8.9705286, 47.2194216 ], + [ 8.9704842, 47.2195596 ], + [ 8.9704504, 47.219699 ], + [ 8.9704273, 47.2198394 ], + [ 8.9704151, 47.2199804 ], + [ 8.9704137, 47.2201217 ], + [ 8.970423199999999, 47.2202628 ], + [ 8.9704435, 47.2204034 ], + [ 8.9704746, 47.220543 ], + [ 8.9705163, 47.2206814 ], + [ 8.9705687, 47.2208181 ], + [ 8.9706314, 47.2209528 ], + [ 8.9707045, 47.221085 ], + [ 8.9707875, 47.2212144 ], + [ 8.9708804, 47.2213407 ], + [ 8.9709829, 47.2214635 ], + [ 8.9710947, 47.2215825 ], + [ 8.9712155, 47.2216974 ], + [ 8.9713449, 47.2218077 ], + [ 8.9714826, 47.2219133 ], + [ 8.9716283, 47.2220139 ], + [ 8.9717815, 47.2221091 ], + [ 8.9719417, 47.2221988 ], + [ 8.9721087, 47.2222826 ], + [ 8.9722818, 47.2223603 ], + [ 8.9724607, 47.2224317 ], + [ 8.9726449, 47.2224967 ], + [ 8.9728337, 47.222555 ], + [ 8.9730268, 47.2226065 ], + [ 8.9732236, 47.2226511 ], + [ 8.9734236, 47.2226885 ], + [ 8.9736261, 47.2227188 ], + [ 8.9738307, 47.2227418 ], + [ 8.9740368, 47.2227575 ], + [ 8.9742438, 47.2227658 ], + [ 8.9744512, 47.2227668 ], + [ 8.9746583, 47.2227603 ], + [ 8.9748647, 47.2227465 ], + [ 8.9750697, 47.2227253 ], + [ 8.975272799999999, 47.2226968 ], + [ 8.9754735, 47.2226612 ], + [ 8.9756711, 47.2226184 ], + [ 8.9758652, 47.2225686 ], + [ 8.9760552, 47.222512 ], + [ 8.9762406, 47.2224487 ], + [ 8.9764208, 47.2223789 ], + [ 8.9765955, 47.2223027 ], + [ 8.976764, 47.2222205 ], + [ 8.976926, 47.2221323 ], + [ 8.9770811, 47.2220384 ], + [ 8.9772286, 47.2219392 ], + [ 8.9773684, 47.2218348 ], + [ 8.9775, 47.2217256 ], + [ 8.9776229, 47.2216119 ], + [ 8.977737, 47.2214939 ], + [ 8.9778419, 47.221372 ], + [ 8.9779372, 47.2212466 ], + [ 8.9780228, 47.2211179 ], + [ 8.9780984, 47.2209864 ], + [ 8.9781638, 47.2208523 ], + [ 8.9782187, 47.2207161 ], + [ 8.9782632, 47.2205781 ], + [ 8.978297, 47.2204387 ], + [ 8.97832, 47.2202983 ], + [ 8.9783322, 47.2201573 ], + [ 8.9783336, 47.220016 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0050", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Grynau", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Grynau", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Grynau", + "lang" : "it-CH" + }, + { + "text" : "Substation Grynau", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.3092819, 47.0103174 ], + [ 8.3408747, 46.9296069 ], + [ 8.2731088, 46.8835044 ], + [ 8.2417288, 46.8898908 ], + [ 8.2236741, 46.9232191 ], + [ 8.2520044, 46.9707077 ], + [ 8.3044324, 47.0069671 ], + [ 8.3092819, 47.0103174 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 120, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "CTR0001", + "country" : "CHE", + "name" : [ + { + "text" : "CTR ALPNACH (MIL)", + "lang" : "de-CH" + }, + { + "text" : "CTR ALPNACH (MIL)", + "lang" : "fr-CH" + }, + { + "text" : "CTR ALPNACH (MIL)", + "lang" : "it-CH" + }, + { + "text" : "CTR ALPNACH (MIL)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only permitted from an altitude of 120 m above ground with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Skyguide Special Flight Office", + "lang" : "de-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "it-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "en-GB" + } + ], + "siteURL" : "https://skyguide.ch/services/special-flights", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.8357437, 46.9496071 ], + [ 6.8357988, 46.9496013 ], + [ 6.8358008, 46.9496011 ], + [ 6.8358034, 46.9496008 ], + [ 6.8360529, 46.9495566 ], + [ 6.8362849, 46.9494799 ], + [ 6.8364906, 46.9493736 ], + [ 6.8366621, 46.9492419 ], + [ 6.8367927, 46.9490898 ], + [ 6.8368775, 46.9489232 ], + [ 6.8369131, 46.9487485 ], + [ 6.8368982, 46.9485724 ], + [ 6.8368659, 46.9484315 ], + [ 6.8368008, 46.9482602 ], + [ 6.8366881, 46.948101 ], + [ 6.8365319, 46.9479599 ], + [ 6.8363385, 46.9478426 ], + [ 6.8361153, 46.9477534 ], + [ 6.8360702, 46.9477428 ], + [ 6.8360388, 46.9477309 ], + [ 6.8360306, 46.9477285 ], + [ 6.835797, 46.9476772 ], + [ 6.8355536, 46.9476565 ], + [ 6.8353089, 46.9476672 ], + [ 6.8352734, 46.9476711 ], + [ 6.8352307, 46.9476789 ], + [ 6.8352251, 46.9476796 ], + [ 6.8351951, 46.9476828 ], + [ 6.8351432, 46.9476883 ], + [ 6.8348858, 46.9477345 ], + [ 6.8346474, 46.9478153 ], + [ 6.8344376, 46.9479273 ], + [ 6.834265, 46.9480659 ], + [ 6.8341368, 46.9482256 ], + [ 6.8340582, 46.9483996 ], + [ 6.8340323, 46.9485809 ], + [ 6.8340604, 46.9487621 ], + [ 6.834101, 46.9488944 ], + [ 6.834175, 46.949057 ], + [ 6.8342924, 46.9492072 ], + [ 6.8344491, 46.9493395 ], + [ 6.8346393, 46.9494492 ], + [ 6.8348564, 46.9495324 ], + [ 6.8350924, 46.9495861 ], + [ 6.835339, 46.9496083 ], + [ 6.8353814, 46.9496066 ], + [ 6.8354862, 46.9496168 ], + [ 6.8357437, 46.9496071 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "NE08", + "country" : "CHE", + "name" : [ + { + "text" : "Tribunal régional Boudry", + "lang" : "de-CH" + }, + { + "text" : "Tribunal régional Boudry", + "lang" : "fr-CH" + }, + { + "text" : "Tribunal régional Boudry", + "lang" : "it-CH" + }, + { + "text" : "Tribunal régional Boudry", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "regulationExemption" : "YES", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Police Neuchâteloise", + "lang" : "de-CH" + }, + { + "text" : "Police Neuchâteloise", + "lang" : "fr-CH" + }, + { + "text" : "Police Neuchâteloise", + "lang" : "it-CH" + }, + { + "text" : "Police Neuchâteloise", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "PN - Rens et opérations", + "lang" : "de-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "fr-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "it-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "PN - Rens et opérations", + "lang" : "de-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "fr-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "it-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ne.ch/autorites/DESC/PONE/Pages/Drones.aspx", + "email" : "Police.Neuchateloise@ne.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7218158, 47.4386353 ], + [ 7.7219853, 47.4383886 ], + [ 7.7224618, 47.4377327 ], + [ 7.722744, 47.4373456 ], + [ 7.7227497, 47.4373378 ], + [ 7.7224388, 47.4372952 ], + [ 7.7216636, 47.4371672 ], + [ 7.7210103, 47.4370227 ], + [ 7.7204159, 47.4368519 ], + [ 7.7199138, 47.43664 ], + [ 7.7199088, 47.4366467 ], + [ 7.7198159, 47.4367701 ], + [ 7.7203692, 47.4370741 ], + [ 7.7202043, 47.4374433 ], + [ 7.7200928, 47.4376966 ], + [ 7.7200196, 47.4378491 ], + [ 7.7200166, 47.4381271 ], + [ 7.7200257, 47.4381736 ], + [ 7.7200752, 47.4383385 ], + [ 7.7203171, 47.4386296 ], + [ 7.7205771, 47.4387835 ], + [ 7.7208501, 47.4390276 ], + [ 7.7210533, 47.4392813 ], + [ 7.7211078, 47.439343 ], + [ 7.72152, 47.4389297 ], + [ 7.7218158, 47.4386353 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns356", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Öschberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Öschberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Öschberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Öschberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6251666, 47.520345 ], + [ 7.6247784, 47.5205064 ], + [ 7.6246861, 47.5205499 ], + [ 7.6244597, 47.5206674 ], + [ 7.6243757, 47.5207092 ], + [ 7.624269, 47.5207679 ], + [ 7.624265, 47.5207988 ], + [ 7.6242577, 47.5208798 ], + [ 7.6239761999999995, 47.5212103 ], + [ 7.6238589999999995, 47.5213713 ], + [ 7.6238019, 47.5215273 ], + [ 7.6237749, 47.5216922 ], + [ 7.6237064, 47.5218487 ], + [ 7.6236083, 47.5220061 ], + [ 7.6234941, 47.5221577 ], + [ 7.6232567, 47.522433 ], + [ 7.6235613, 47.5224596 ], + [ 7.6235638, 47.5224602 ], + [ 7.6235674, 47.5224609 ], + [ 7.6235675, 47.522461 ], + [ 7.623766, 47.5225011 ], + [ 7.6239145, 47.5225153 ], + [ 7.6240847, 47.5225539 ], + [ 7.6241506999999995, 47.5225689 ], + [ 7.6242450999999996, 47.5226013 ], + [ 7.624338, 47.5226677 ], + [ 7.6243979, 47.5227199 ], + [ 7.6244157, 47.522783 ], + [ 7.6244325, 47.5228696 ], + [ 7.6244878, 47.5230389 ], + [ 7.6245362, 47.5231869 ], + [ 7.6245758, 47.5232792 ], + [ 7.6245944, 47.5233412 ], + [ 7.6246054999999995, 47.5233783 ], + [ 7.624635, 47.5234083 ], + [ 7.6246594, 47.5234393 ], + [ 7.6246914, 47.5234799 ], + [ 7.6247664, 47.5235178 ], + [ 7.6247941, 47.5235746 ], + [ 7.6248269, 47.523631 ], + [ 7.6248882, 47.5236605 ], + [ 7.6248943, 47.5236646 ], + [ 7.6249511, 47.5237036 ], + [ 7.6249327000000005, 47.5238262 ], + [ 7.6248951, 47.5239023 ], + [ 7.6249998, 47.5242511 ], + [ 7.6253464, 47.5242122 ], + [ 7.6256538, 47.5241902 ], + [ 7.6258447, 47.524197 ], + [ 7.6261206, 47.5242469 ], + [ 7.6263962, 47.5242321 ], + [ 7.6267248, 47.5241884 ], + [ 7.6270955, 47.5240801 ], + [ 7.6276674, 47.5238852 ], + [ 7.6279316, 47.5236334 ], + [ 7.6276025, 47.5235334 ], + [ 7.6274115, 47.5234834 ], + [ 7.6271036, 47.523369 ], + [ 7.626923, 47.5232759 ], + [ 7.6267423, 47.5231398 ], + [ 7.6266252, 47.523025 ], + [ 7.6266037, 47.5229317 ], + [ 7.6266458, 47.5228383 ], + [ 7.6268993, 47.5225721 ], + [ 7.6271846, 47.5222772 ], + [ 7.6268499, 47.5220977 ], + [ 7.6264461, 47.5217975 ], + [ 7.6259558, 47.5214613 ], + [ 7.6257241, 47.5211442 ], + [ 7.6252273, 47.520479 ], + [ 7.6252168000000005, 47.5204627 ], + [ 7.6252092000000005, 47.5204451 ], + [ 7.6251666, 47.520345 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr038", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Rütihardhof", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Rütihardhof", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Rütihardhof", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Rütihardhof", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4305377, 47.4097226 ], + [ 7.4306758, 47.4097498 ], + [ 7.4308519, 47.4097805 ], + [ 7.4311139, 47.409822 ], + [ 7.4316189, 47.4098953 ], + [ 7.4316392, 47.4098992 ], + [ 7.4316593, 47.4099037 ], + [ 7.4316791, 47.4099086 ], + [ 7.4316986, 47.4099141 ], + [ 7.4317178, 47.40992 ], + [ 7.4317551, 47.4099334 ], + [ 7.4317732, 47.4099408 ], + [ 7.4317868, 47.4099475 ], + [ 7.4318121999999995, 47.4099623 ], + [ 7.4318239, 47.4099705 ], + [ 7.4318451, 47.4099881 ], + [ 7.4318546, 47.4099975 ], + [ 7.431871, 47.4100173 ], + [ 7.4318779, 47.4100277 ], + [ 7.4321138, 47.4100072 ], + [ 7.4321428, 47.4099084 ], + [ 7.4321804, 47.4098027 ], + [ 7.4321893, 47.4097423 ], + [ 7.4321827, 47.409687 ], + [ 7.4321186, 47.409636 ], + [ 7.4320343, 47.4095927 ], + [ 7.4319492, 47.4094242 ], + [ 7.4319293, 47.4092949 ], + [ 7.4319278, 47.4091533 ], + [ 7.4319251, 47.4090591 ], + [ 7.4319384, 47.4089456 ], + [ 7.4319577, 47.4087903 ], + [ 7.4315202, 47.4087488 ], + [ 7.4312875, 47.4087294 ], + [ 7.4308271999999995, 47.4086927 ], + [ 7.4305776, 47.4086748 ], + [ 7.4300306, 47.4086337 ], + [ 7.4297334, 47.4086111 ], + [ 7.4294381, 47.4085887 ], + [ 7.4292988, 47.408578 ], + [ 7.4292689, 47.4086708 ], + [ 7.4292328, 47.4087835 ], + [ 7.4291566, 47.4088601 ], + [ 7.4291465, 47.4088701 ], + [ 7.4290913, 47.4089256 ], + [ 7.4289731, 47.4090981 ], + [ 7.4287179, 47.4092358 ], + [ 7.4285402, 47.4093675 ], + [ 7.4284871, 47.4094265 ], + [ 7.4284858, 47.4094468 ], + [ 7.4285095, 47.4094453 ], + [ 7.4285331, 47.4094435 ], + [ 7.4285566, 47.4094414 ], + [ 7.4285801, 47.4094391 ], + [ 7.4286143, 47.4094353 ], + [ 7.4286482, 47.4094309 ], + [ 7.4286821, 47.409426 ], + [ 7.4287157, 47.4094205 ], + [ 7.4287491, 47.4094145 ], + [ 7.4287823, 47.409408 ], + [ 7.4288153, 47.4094009 ], + [ 7.4288389, 47.4093957 ], + [ 7.4288628, 47.409391 ], + [ 7.4288868, 47.4093867 ], + [ 7.428911, 47.409383 ], + [ 7.4289354, 47.4093797 ], + [ 7.4289599, 47.409377 ], + [ 7.4289845, 47.4093747 ], + [ 7.4290092, 47.409373 ], + [ 7.4290339, 47.4093717 ], + [ 7.4290634, 47.4093704 ], + [ 7.4290929, 47.4093696 ], + [ 7.4291224, 47.4093694 ], + [ 7.4291519, 47.4093699 ], + [ 7.4291813, 47.4093709 ], + [ 7.4292107, 47.4093724 ], + [ 7.4292401, 47.4093746 ], + [ 7.4292693, 47.4093773 ], + [ 7.4292984, 47.4093807 ], + [ 7.4293274, 47.4093846 ], + [ 7.4293619, 47.4093894 ], + [ 7.4293962, 47.4093949 ], + [ 7.4294303, 47.4094009 ], + [ 7.4294641, 47.4094074 ], + [ 7.4294978, 47.4094145 ], + [ 7.4295311, 47.4094222 ], + [ 7.4295642, 47.4094304 ], + [ 7.429597, 47.4094392 ], + [ 7.4300342, 47.4096034 ], + [ 7.4302495, 47.4096709 ], + [ 7.4305264, 47.4097206 ], + [ 7.4305377, 47.4097226 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns002", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Oltme", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Oltme", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Oltme", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Oltme", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.6321068, 46.7733125 ], + [ 6.637645, 46.7695165 ], + [ 6.6465903, 46.7633836 ], + [ 6.6395011, 46.7559125 ], + [ 6.6319358, 46.75415 ], + [ 6.6061863, 46.7476226 ], + [ 6.5872028, 46.7397908 ], + [ 6.5853482, 46.7412163 ], + [ 6.5706515, 46.7518555 ], + [ 6.5613064, 46.7550674 ], + [ 6.6176293, 46.7782018 ], + [ 6.6273116, 46.7787209 ], + [ 6.6321068, 46.7733125 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSGY001", + "country" : "CHE", + "name" : [ + { + "text" : "LSGY Yverdon-les-Bains", + "lang" : "de-CH" + }, + { + "text" : "LSGY Yverdon-les-Bains", + "lang" : "fr-CH" + }, + { + "text" : "LSGY Yverdon-les-Bains", + "lang" : "it-CH" + }, + { + "text" : "LSGY Yverdon-les-Bains", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Air-Club Yverdon /Aérodrome Yverdon-les Bains", + "lang" : "de-CH" + }, + { + "text" : "Air-Club Yverdon /Aérodrome Yverdon-les Bains", + "lang" : "fr-CH" + }, + { + "text" : "Air-Club Yverdon /Aérodrome Yverdon-les Bains", + "lang" : "it-CH" + }, + { + "text" : "Air-Club Yverdon /Aérodrome Yverdon-les Bains", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Chef d'aérodrome", + "lang" : "de-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "fr-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "it-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "en-GB" + } + ], + "siteURL" : "https://airport.lsgy.ch/vol-de-drone-ballons-ou-lanternes", + "email" : "admin@air-club-yverdon.ch", + "phone" : "0041244252724", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P02DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.512927, 47.4254981 ], + [ 7.5113844, 47.4257892 ], + [ 7.5116151, 47.4264961 ], + [ 7.5117619, 47.4268523 ], + [ 7.5120465, 47.4272784 ], + [ 7.5123438, 47.4276053 ], + [ 7.5127315, 47.4279379 ], + [ 7.5134722, 47.4283638 ], + [ 7.5142128, 47.428667 ], + [ 7.5147552, 47.4288535 ], + [ 7.514961, 47.4283044 ], + [ 7.5150121, 47.4278722 ], + [ 7.5152529, 47.427802 ], + [ 7.5153818, 47.4276559 ], + [ 7.5144605, 47.4273294 ], + [ 7.5139952999999995, 47.426991 ], + [ 7.5137366, 47.4266291 ], + [ 7.513672, 47.4265357 ], + [ 7.5133008, 47.4257125 ], + [ 7.5131632, 47.4257593 ], + [ 7.512927, 47.4254981 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr033", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Schleifehalde", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Schleifehalde", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Schleifehalde", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Schleifehalde", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.5694307, 46.7337317 ], + [ 6.568534, 46.7324927 ], + [ 6.568268, 46.732124999999996 ], + [ 6.568248, 46.7320975 ], + [ 6.5682442, 46.7320989 ], + [ 6.5682176, 46.7320697 ], + [ 6.5683684, 46.7320334 ], + [ 6.5686998, 46.7320009 ], + [ 6.5687763, 46.7319934 ], + [ 6.5698674, 46.731879 ], + [ 6.5704503, 46.7317818 ], + [ 6.570742, 46.7317475 ], + [ 6.5708836, 46.7317417 ], + [ 6.570943, 46.7317402 ], + [ 6.5710071, 46.7317387 ], + [ 6.5712194, 46.7317335 ], + [ 6.5713507, 46.731730400000004 ], + [ 6.5714505, 46.7316731 ], + [ 6.5721181, 46.7311472 ], + [ 6.5717943, 46.7307873 ], + [ 6.5716373, 46.7305358 ], + [ 6.571472, 46.7301872 ], + [ 6.5712321, 46.7297472 ], + [ 6.5709743, 46.7294042 ], + [ 6.570751, 46.7290042 ], + [ 6.5705605, 46.7286956 ], + [ 6.5704118000000005, 46.7284385 ], + [ 6.5702956, 46.7281355 ], + [ 6.5702133, 46.727867 ], + [ 6.5701148, 46.7275869 ], + [ 6.5700403, 46.7273355 ], + [ 6.5699502, 46.7269926 ], + [ 6.5698599, 46.7266612 ], + [ 6.5698357, 46.7263868 ], + [ 6.5697944, 46.7261067 ], + [ 6.5697707, 46.7258039 ], + [ 6.5697379, 46.7255525 ], + [ 6.5697025, 46.7252397 ], + [ 6.5697065, 46.7250383 ], + [ 6.5697492, 46.7248038 ], + [ 6.5698413, 46.7244666 ], + [ 6.5699009, 46.7241637 ], + [ 6.5699766, 46.7238836 ], + [ 6.570069, 46.723575 ], + [ 6.5701450999999995, 46.7232664 ], + [ 6.5704047, 46.7227348 ], + [ 6.5705729999999996, 46.7223862 ], + [ 6.5708487, 46.721969 ], + [ 6.5711827, 46.721586 ], + [ 6.5714925, 46.7211859 ], + [ 6.5717266, 46.7208602 ], + [ 6.5720523, 46.7204372 ], + [ 6.5721947, 46.7202772 ], + [ 6.57232, 46.7201057 ], + [ 6.5720143, 46.7195457 ], + [ 6.5717738, 46.7191 ], + [ 6.571575, 46.7186999 ], + [ 6.5714759, 46.7185056 ], + [ 6.5713768, 46.7182656 ], + [ 6.571245, 46.7179742 ], + [ 6.5711535, 46.7177628 ], + [ 6.5710547, 46.7174999 ], + [ 6.5709803, 46.7172999 ], + [ 6.5708568, 46.7169456 ], + [ 6.5705846, 46.7162883 ], + [ 6.5705073, 46.7160205 ], + [ 6.5704915, 46.7159656 ], + [ 6.5704443999999995, 46.7158026 ], + [ 6.5703748, 46.7156128 ], + [ 6.5703648999999995, 46.715586 ], + [ 6.570361, 46.7155875 ], + [ 6.5703047, 46.7156101 ], + [ 6.5703037, 46.7156072 ], + [ 6.5702382, 46.7155967 ], + [ 6.5701713, 46.715639 ], + [ 6.570158, 46.715641 ], + [ 6.5701545, 46.7156309 ], + [ 6.570138, 46.7156128 ], + [ 6.5700901, 46.7154588 ], + [ 6.5700079, 46.7152581 ], + [ 6.569863, 46.7149027 ], + [ 6.569748, 46.7146186 ], + [ 6.5696271, 46.7143188 ], + [ 6.569522, 46.7140642 ], + [ 6.569487, 46.7139589 ], + [ 6.5694832, 46.7139511 ], + [ 6.5694721, 46.7139281 ], + [ 6.5694539, 46.7138905 ], + [ 6.569397, 46.713756 ], + [ 6.5693608, 46.7136842 ], + [ 6.5693247, 46.7136318 ], + [ 6.5692909, 46.7135949 ], + [ 6.5692517, 46.7135613 ], + [ 6.5692091, 46.7135304 ], + [ 6.5691631, 46.7135028 ], + [ 6.5691153, 46.7134776 ], + [ 6.5690656, 46.7134547 ], + [ 6.5690142, 46.7134342 ], + [ 6.5689372, 46.7134091 ], + [ 6.5687387, 46.7133455 ], + [ 6.5686592, 46.7133115 ], + [ 6.5686049, 46.7132818 ], + [ 6.5685558, 46.7132485 ], + [ 6.5685118, 46.7132121 ], + [ 6.5684733, 46.7131732 ], + [ 6.56844, 46.7131324 ], + [ 6.5684123, 46.7130901 ], + [ 6.5683255, 46.7129443 ], + [ 6.5681557999999995, 46.712661 ], + [ 6.5681226, 46.7126125 ], + [ 6.5680502, 46.7125116 ], + [ 6.5680168, 46.7124615 ], + [ 6.5679639, 46.712382 ], + [ 6.5679418, 46.7123479 ], + [ 6.5679242, 46.7123184 ], + [ 6.5679016, 46.7122993 ], + [ 6.5678742, 46.7122881 ], + [ 6.567838, 46.712285 ], + [ 6.5673219, 46.7124549 ], + [ 6.566237, 46.7128118 ], + [ 6.5658245, 46.7129476 ], + [ 6.5657953, 46.7129173 ], + [ 6.5656238, 46.712557 ], + [ 6.5655946, 46.7124955 ], + [ 6.5654091, 46.7121058 ], + [ 6.5652906, 46.7118567 ], + [ 6.5651288, 46.7115166 ], + [ 6.5651278, 46.7115145 ], + [ 6.5650708, 46.7114168 ], + [ 6.5647451, 46.7115027 ], + [ 6.5647433, 46.7115031 ], + [ 6.5643233, 46.7116138 ], + [ 6.5631144, 46.7119626 ], + [ 6.5616651, 46.7123627 ], + [ 6.5613313, 46.712477 ], + [ 6.5610402, 46.7125856 ], + [ 6.5608731, 46.7126598 ], + [ 6.560756, 46.7127227 ], + [ 6.5606397, 46.7127857 ], + [ 6.560406, 46.7129285 ], + [ 6.5602221, 46.7130256 ], + [ 6.5600474, 46.713117 ], + [ 6.5598635, 46.7132657 ], + [ 6.5597056, 46.7133743 ], + [ 6.5594879, 46.71354 ], + [ 6.5571349, 46.7151573 ], + [ 6.5555911, 46.7163347 ], + [ 6.5549039, 46.7168105 ], + [ 6.55377, 46.7176625 ], + [ 6.5530419, 46.7181867 ], + [ 6.5527719, 46.7183499 ], + [ 6.5524935, 46.7185299 ], + [ 6.5521979, 46.7187042 ], + [ 6.5519875, 46.7188222 ], + [ 6.5525004, 46.7195955 ], + [ 6.5534124, 46.7209704 ], + [ 6.5535352, 46.7211555 ], + [ 6.5545598, 46.7227853 ], + [ 6.5554914, 46.72446 ], + [ 6.5564894, 46.7260273 ], + [ 6.557499, 46.7276904 ], + [ 6.5588325, 46.7298049 ], + [ 6.558973, 46.7300621 ], + [ 6.5586067, 46.7301078 ], + [ 6.555366, 46.7305707 ], + [ 6.5545403, 46.7306881 ], + [ 6.561729, 46.7344992 ], + [ 6.5619945, 46.7349417 ], + [ 6.562487, 46.7357443 ], + [ 6.5626262, 46.7356686 ], + [ 6.5635291, 46.7351618 ], + [ 6.5637362, 46.7350455 ], + [ 6.5650799, 46.7341825 ], + [ 6.5658639999999995, 46.7336418 ], + [ 6.5659301, 46.7335962 ], + [ 6.5659671, 46.7335706 ], + [ 6.5661542, 46.7334416 ], + [ 6.566142, 46.7334831 ], + [ 6.5661666, 46.7335136 ], + [ 6.5663479, 46.7337378 ], + [ 6.5676363, 46.735331 ], + [ 6.5671611, 46.7358402 ], + [ 6.5671127, 46.7358931 ], + [ 6.5670859, 46.735920899999996 ], + [ 6.5666785, 46.7363574 ], + [ 6.5658199, 46.7372773 ], + [ 6.5645827, 46.7384671 ], + [ 6.5645269, 46.7385282 ], + [ 6.5644389, 46.7386245 ], + [ 6.5608268, 46.7425798 ], + [ 6.5607695, 46.7427044 ], + [ 6.5599495999999995, 46.7434611 ], + [ 6.5591306, 46.7442193 ], + [ 6.5583079, 46.7449812 ], + [ 6.5575036, 46.7457265 ], + [ 6.5573596, 46.7458577 ], + [ 6.5567648, 46.7464077 ], + [ 6.5558601, 46.747236 ], + [ 6.5550559, 46.7479885 ], + [ 6.554235, 46.7487479 ], + [ 6.5534596, 46.7494646 ], + [ 6.5534562, 46.7495315 ], + [ 6.5552774, 46.7507367 ], + [ 6.5570574, 46.7519152 ], + [ 6.5580117, 46.7525073 ], + [ 6.5582298, 46.7526426 ], + [ 6.5605629, 46.7518281 ], + [ 6.5631571, 46.7509277 ], + [ 6.5651425, 46.750235 ], + [ 6.5661135, 46.7498973 ], + [ 6.5661902, 46.7498707 ], + [ 6.5669634, 46.7496017 ], + [ 6.5692976, 46.7487896 ], + [ 6.5723105, 46.7477404 ], + [ 6.5723802, 46.7477166 ], + [ 6.5725743, 46.7476507 ], + [ 6.5726420999999995, 46.7476283 ], + [ 6.5749118, 46.7468375 ], + [ 6.5772458, 46.7460268 ], + [ 6.5781451, 46.7457121 ], + [ 6.5791658, 46.745355 ], + [ 6.5798907, 46.7451052 ], + [ 6.5807165, 46.7448146 ], + [ 6.5814687, 46.7442848 ], + [ 6.5817689, 46.7440685 ], + [ 6.5818418, 46.7440159 ], + [ 6.581814, 46.7440063 ], + [ 6.58147, 46.7438886 ], + [ 6.5808047, 46.7436457 ], + [ 6.580591, 46.7435676 ], + [ 6.5794367000000005, 46.7431594 ], + [ 6.5784451, 46.7425241 ], + [ 6.5775326, 46.741973 ], + [ 6.5773158, 46.741842 ], + [ 6.5771004, 46.7417129 ], + [ 6.5769617, 46.7416298 ], + [ 6.5766046, 46.7414037 ], + [ 6.5758689, 46.7409576 ], + [ 6.5753068, 46.7406125 ], + [ 6.5752656, 46.7405872 ], + [ 6.5750406, 46.740449 ], + [ 6.5742607, 46.7399539 ], + [ 6.5740113000000004, 46.7397936 ], + [ 6.5738845999999995, 46.7397058 ], + [ 6.5735864, 46.7394554 ], + [ 6.5733674, 46.7391557 ], + [ 6.5730976, 46.7387867 ], + [ 6.5718898, 46.737123 ], + [ 6.5706865, 46.7354666 ], + [ 6.5694307, 46.7337317 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "WZV0025", + "country" : "CHE", + "name" : [ + { + "text" : "Wasser- und Zugvogelreservat Plaine de l’Orbe – Chavornay", + "lang" : "de-CH" + }, + { + "text" : "Réserve d'oiseaux d'eau et de migrateurs Plaine de l’Orbe – Chavornay", + "lang" : "fr-CH" + }, + { + "text" : "Riserva di uccelli acquatici e migratori Plaine de l’Orbe – Chavornay", + "lang" : "it-CH" + }, + { + "text" : "Water Bird and Migratory Bird Reserves Plaine de l’Orbe – Chavornay", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4102022, 47.1816843 ], + [ 7.4092, 47.1832176 ], + [ 7.4114415, 47.1832956 ], + [ 7.4126131, 47.1833363 ], + [ 7.4138479, 47.1833582 ], + [ 7.4140115, 47.18336 ], + [ 7.4137567, 47.1837323 ], + [ 7.4162659, 47.1842473 ], + [ 7.4169973, 47.1830503 ], + [ 7.4191014, 47.1834914 ], + [ 7.4195779, 47.1827242 ], + [ 7.4233125, 47.1838545 ], + [ 7.4238615, 47.1834984 ], + [ 7.4238958, 47.1833797 ], + [ 7.4239301, 47.1832502 ], + [ 7.4215253, 47.182577 ], + [ 7.4219318, 47.1819754 ], + [ 7.4227881, 47.181881 ], + [ 7.4205297, 47.1811962 ], + [ 7.420634, 47.181019 ], + [ 7.417848, 47.1801605 ], + [ 7.4177781, 47.1802576 ], + [ 7.4149487, 47.1793369 ], + [ 7.4152629, 47.1788656 ], + [ 7.4126487, 47.1780294 ], + [ 7.4122737, 47.1785933 ], + [ 7.4121326, 47.1785483 ], + [ 7.41152, 47.179471 ], + [ 7.4106218, 47.1791587 ], + [ 7.4096782, 47.1797098 ], + [ 7.4111489, 47.1802499 ], + [ 7.4102022, 47.1816843 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZG002", + "country" : "CHE", + "name" : [ + { + "text" : "LSZG Grenchen (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSZG Grenchen (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSZG Grenchen (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSZG Grenchen (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Special Flight Office (SFO)", + "lang" : "de-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "fr-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "it-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "en-GB" + } + ], + "siteURL" : "https://skyguide.ch/services/special-flights", + "email" : "specialflight@skyguide.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.9390097, 46.6841125 ], + [ 7.9408804, 46.6789297 ], + [ 7.9418546, 46.6754028 ], + [ 7.8868406, 46.6595193 ], + [ 7.8203271, 46.6461366 ], + [ 7.8200391, 46.646404 ], + [ 7.8147996, 46.6537099 ], + [ 7.8115375, 46.6615425 ], + [ 7.8103586, 46.6696502 ], + [ 7.8113017, 46.6777726 ], + [ 7.8143373, 46.6856484 ], + [ 7.8150794, 46.6867363 ], + [ 7.8483272, 46.6936 ], + [ 7.8854976, 46.7144204 ], + [ 7.8865873, 46.7148261 ], + [ 7.8904929, 46.714487 ], + [ 7.9017917, 46.7120383 ], + [ 7.9122719, 46.7082403 ], + [ 7.9215961, 46.7032153 ], + [ 7.9294643, 46.6971251 ], + [ 7.9356238999999995, 46.6901659 ], + [ 7.9390097, 46.6841125 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSXI001", + "country" : "CHE", + "name" : [ + { + "text" : "LSXI Interlaken", + "lang" : "de-CH" + }, + { + "text" : "LSXI Interlaken", + "lang" : "fr-CH" + }, + { + "text" : "LSXI Interlaken", + "lang" : "it-CH" + }, + { + "text" : "LSXI Interlaken", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "REGA", + "lang" : "de-CH" + }, + { + "text" : "REGA", + "lang" : "fr-CH" + }, + { + "text" : "REGA", + "lang" : "it-CH" + }, + { + "text" : "REGA", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Leitung Einsatzbasis Wilderswil", + "lang" : "de-CH" + }, + { + "text" : "Leitung Einsatzbasis Wilderswil", + "lang" : "fr-CH" + }, + { + "text" : "Leitung Einsatzbasis Wilderswil", + "lang" : "it-CH" + }, + { + "text" : "Leitung Einsatzbasis Wilderswil", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.rega.ch/en/our-missions/locations-and-infrastructure/rega-10-wilderswil-base/lsxi-interlaken-authorization-for-drone-pilot", + "email" : "ebbo@rega.ch", + "phone" : "0041338289030", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P01DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7468775999999995, 47.4535122 ], + [ 7.7465012, 47.4536535 ], + [ 7.7461933, 47.4536139 ], + [ 7.7459092, 47.4537761 ], + [ 7.7458805, 47.4540901 ], + [ 7.7458328, 47.4543232 ], + [ 7.7456032, 47.4546494 ], + [ 7.7451038, 47.4551885 ], + [ 7.7449148, 47.455309 ], + [ 7.7450859, 47.4554575 ], + [ 7.7451241, 47.4554354 ], + [ 7.7451616, 47.4554129 ], + [ 7.7451984, 47.4553898 ], + [ 7.7452346, 47.4553663 ], + [ 7.7452701, 47.4553423 ], + [ 7.745305, 47.4553179 ], + [ 7.7453391, 47.455293 ], + [ 7.7453725, 47.4552677 ], + [ 7.7454052, 47.4552419 ], + [ 7.7454371, 47.4552157 ], + [ 7.7454683, 47.4551891 ], + [ 7.7454987, 47.455162 ], + [ 7.7455283999999995, 47.4551346 ], + [ 7.7455572, 47.4551068 ], + [ 7.7455853, 47.4550787 ], + [ 7.7456125, 47.4550501 ], + [ 7.7456389, 47.4550213 ], + [ 7.7456645, 47.454992 ], + [ 7.7456893, 47.4549625 ], + [ 7.7465601, 47.4538996 ], + [ 7.7468775999999995, 47.4535122 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns123", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Grüngen", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Grüngen", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Grüngen", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Grüngen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.3496241, 47.3878495 ], + [ 9.3496835, 47.3877839 ], + [ 9.3498601, 47.3878522 ], + [ 9.3498069, 47.3879179 ], + [ 9.3497949, 47.387933 ], + [ 9.3498262, 47.3879473 ], + [ 9.3498571, 47.3879619 ], + [ 9.3498876, 47.3879769 ], + [ 9.3499177, 47.3879923 ], + [ 9.3499474, 47.3880081 ], + [ 9.3499767, 47.3880242 ], + [ 9.3500055, 47.3880407 ], + [ 9.3502058, 47.3881573 ], + [ 9.350235, 47.3881741 ], + [ 9.3502646, 47.3881905 ], + [ 9.3502947, 47.3882066 ], + [ 9.3503251, 47.3882224 ], + [ 9.3503559, 47.3882378 ], + [ 9.3503874, 47.3882523 ], + [ 9.3504193, 47.3882664 ], + [ 9.3504518, 47.3882799 ], + [ 9.350484699999999, 47.3882929 ], + [ 9.350518, 47.3883054 ], + [ 9.3505518, 47.3883174 ], + [ 9.350586, 47.3883288 ], + [ 9.3506205, 47.3883397 ], + [ 9.3508197, 47.3883559 ], + [ 9.3509053, 47.3883857 ], + [ 9.350906, 47.3883451 ], + [ 9.3510115, 47.3880339 ], + [ 9.351408, 47.3880721 ], + [ 9.3525523, 47.3881824 ], + [ 9.3527101, 47.3881514 ], + [ 9.3531294, 47.388102 ], + [ 9.3534811, 47.3879818 ], + [ 9.3537254, 47.3879051 ], + [ 9.3541336, 47.3877983 ], + [ 9.3544692, 47.3877105 ], + [ 9.3546738, 47.3876561 ], + [ 9.35477, 47.3877844 ], + [ 9.3548585, 47.3877539 ], + [ 9.3548592, 47.3876461 ], + [ 9.3548963, 47.3876092 ], + [ 9.3554789, 47.3874498 ], + [ 9.3558336, 47.3874672 ], + [ 9.3560184, 47.3874785 ], + [ 9.35618, 47.3875363 ], + [ 9.3562321, 47.3876195 ], + [ 9.356160299999999, 47.3878116 ], + [ 9.3572301, 47.3880408 ], + [ 9.3572911, 47.3880556 ], + [ 9.3595168, 47.388528 ], + [ 9.3597912, 47.3885669 ], + [ 9.3600634, 47.3885623 ], + [ 9.3606756, 47.3884972 ], + [ 9.3607415, 47.3884777 ], + [ 9.3611481, 47.3883754 ], + [ 9.3611809, 47.3883534 ], + [ 9.3614275, 47.388302 ], + [ 9.3617431, 47.3882632 ], + [ 9.3620221, 47.3882667 ], + [ 9.3620489, 47.3882805 ], + [ 9.3623132, 47.3882438 ], + [ 9.3623346, 47.3882236 ], + [ 9.3625735, 47.3881706 ], + [ 9.3628351, 47.3881428 ], + [ 9.3630925, 47.3881386 ], + [ 9.3631247, 47.3881402 ], + [ 9.3631568, 47.3881423 ], + [ 9.3631888, 47.3881451 ], + [ 9.3632207, 47.3881483 ], + [ 9.3632524, 47.3881522 ], + [ 9.363284, 47.3881566 ], + [ 9.3632993, 47.388159 ], + [ 9.3633145, 47.3881615 ], + [ 9.3633297, 47.3881641 ], + [ 9.3633448, 47.3881669 ], + [ 9.3633547, 47.3880933 ], + [ 9.3633638, 47.3880243 ], + [ 9.3631073, 47.3879757 ], + [ 9.3627567, 47.3879391 ], + [ 9.3626306, 47.387979 ], + [ 9.3625223, 47.3879879 ], + [ 9.3623044, 47.3880765 ], + [ 9.3621379, 47.3880794 ], + [ 9.3620017, 47.3881448 ], + [ 9.3619081, 47.3881449 ], + [ 9.3617381, 47.3881056 ], + [ 9.3615006, 47.3881968 ], + [ 9.3613989, 47.3881893 ], + [ 9.3612237, 47.3882017 ], + [ 9.3611068, 47.388249 ], + [ 9.360942, 47.3882384 ], + [ 9.3607469, 47.3883218 ], + [ 9.360668, 47.3883486 ], + [ 9.3606307, 47.3883681 ], + [ 9.3605479, 47.3883295 ], + [ 9.3603427, 47.3883728 ], + [ 9.3601529, 47.3883153 ], + [ 9.3600802, 47.3883212 ], + [ 9.3599597, 47.3883622 ], + [ 9.3597692, 47.3883662 ], + [ 9.3597056, 47.3883452 ], + [ 9.3597174, 47.3883195 ], + [ 9.3597628, 47.3882247 ], + [ 9.3598132, 47.3881298 ], + [ 9.359956, 47.3881474 ], + [ 9.3600817, 47.3881666 ], + [ 9.360261, 47.3881695 ], + [ 9.3603679, 47.3881631 ], + [ 9.3604752, 47.388161 ], + [ 9.360702, 47.3880903 ], + [ 9.3606288, 47.3879119 ], + [ 9.3605828, 47.3877831 ], + [ 9.3605097, 47.3875765 ], + [ 9.3602839, 47.3875638 ], + [ 9.359887, 47.38751 ], + [ 9.3595106, 47.3874807 ], + [ 9.3590277, 47.3874426 ], + [ 9.3585892, 47.3874319 ], + [ 9.3581968, 47.3874182 ], + [ 9.3578859, 47.3874241 ], + [ 9.3574873, 47.3874548 ], + [ 9.3572461, 47.3874424 ], + [ 9.3572314, 47.387338 ], + [ 9.3572318, 47.3872054 ], + [ 9.3572586, 47.3869937 ], + [ 9.357354, 47.3869073 ], + [ 9.357482, 47.3867965 ], + [ 9.3576203, 47.3866936 ], + [ 9.3577985, 47.3865895 ], + [ 9.3580351, 47.3864085 ], + [ 9.3581985, 47.3862405 ], + [ 9.3583258, 47.3861149 ], + [ 9.3583945, 47.3860052 ], + [ 9.358451, 47.385915 ], + [ 9.3584915, 47.3858504 ], + [ 9.3582196, 47.3857776 ], + [ 9.3582404, 47.3857204 ], + [ 9.3582739, 47.3856246 ], + [ 9.3583144, 47.3855098 ], + [ 9.358358, 47.3854002 ], + [ 9.3584105, 47.3852678 ], + [ 9.358487, 47.385053 ], + [ 9.3584982, 47.3850216 ], + [ 9.3584222, 47.3850055 ], + [ 9.3578204, 47.3848876 ], + [ 9.3576316, 47.3848298 ], + [ 9.35753, 47.3847672 ], + [ 9.3574921, 47.3846219 ], + [ 9.3573181, 47.3845152 ], + [ 9.3573019, 47.3843452 ], + [ 9.3572475, 47.38418 ], + [ 9.3572787, 47.3840979 ], + [ 9.3572103, 47.3839842 ], + [ 9.3571381, 47.3838281 ], + [ 9.3569759, 47.3837414 ], + [ 9.3567445, 47.3835955 ], + [ 9.3566611, 47.3834623 ], + [ 9.3565473, 47.3833838 ], + [ 9.3564593, 47.3833676 ], + [ 9.3563452, 47.3833885 ], + [ 9.3562017, 47.3834538 ], + [ 9.3560432, 47.3835034 ], + [ 9.3558434, 47.3835237 ], + [ 9.3557346, 47.3835226 ], + [ 9.355447999999999, 47.3836533 ], + [ 9.3552564, 47.3838213 ], + [ 9.3550775, 47.3839951 ], + [ 9.354955499999999, 47.3839846 ], + [ 9.3549233, 47.384032 ], + [ 9.3548092, 47.3841241 ], + [ 9.3546614, 47.3842119 ], + [ 9.3545214, 47.3842294 ], + [ 9.3544608, 47.38419 ], + [ 9.3543916, 47.3841666 ], + [ 9.3543164, 47.3841668 ], + [ 9.3541261, 47.3840891 ], + [ 9.3538705, 47.3840307 ], + [ 9.3537096, 47.3840211 ], + [ 9.3535444, 47.3839528 ], + [ 9.3533692, 47.3839054 ], + [ 9.3530492, 47.3838014 ], + [ 9.352913, 47.3837728 ], + [ 9.352728, 47.383706 ], + [ 9.3524316, 47.3836395 ], + [ 9.3520973, 47.3835205 ], + [ 9.3519071, 47.3834811 ], + [ 9.3517131, 47.3834173 ], + [ 9.3513216, 47.3833011 ], + [ 9.3507374, 47.3831562 ], + [ 9.3502139, 47.3831073 ], + [ 9.3499704, 47.3831403 ], + [ 9.3492147, 47.3834923 ], + [ 9.3489494, 47.383798 ], + [ 9.3486, 47.3839442 ], + [ 9.3484459, 47.3840791 ], + [ 9.3482843, 47.3843281 ], + [ 9.348279, 47.3844309 ], + [ 9.3483297, 47.384682 ], + [ 9.3483165, 47.3847482 ], + [ 9.3481979, 47.3849246 ], + [ 9.3480437, 47.385046 ], + [ 9.3479608, 47.3851642 ], + [ 9.3479599, 47.3852428 ], + [ 9.347932, 47.3853417 ], + [ 9.3477398, 47.3855389 ], + [ 9.3477681, 47.3857437 ], + [ 9.3476424, 47.3861218 ], + [ 9.3476149, 47.386238 ], + [ 9.3476242, 47.3863344 ], + [ 9.3477065, 47.3865079 ], + [ 9.3477455, 47.3867492 ], + [ 9.3477521, 47.3870279 ], + [ 9.3477249, 47.3870814 ], + [ 9.3477632, 47.3871458 ], + [ 9.3477946, 47.3872521 ], + [ 9.3478616, 47.3873022 ], + [ 9.3479384, 47.3873327 ], + [ 9.3479785, 47.3873918 ], + [ 9.3480998, 47.3875158 ], + [ 9.3481386, 47.3876068 ], + [ 9.3481557, 47.3876897 ], + [ 9.3481569, 47.387721 ], + [ 9.349028, 47.3877288 ], + [ 9.3491478, 47.387741 ], + [ 9.3492098, 47.3877421 ], + [ 9.3492093, 47.3877566 ], + [ 9.3495287, 47.3878191 ], + [ 9.3496241, 47.3878495 ] + ], + [ + [ 9.3563425, 47.3867571 ], + [ 9.3565244, 47.3868294 ], + [ 9.3564502, 47.3869137 ], + [ 9.3562654, 47.3868414 ], + [ 9.3563425, 47.3867571 ] + ], + [ + [ 9.3498089, 47.3868692 ], + [ 9.3499533, 47.3870037 ], + [ 9.3498763, 47.3870481 ], + [ 9.3498768, 47.387077 ], + [ 9.3498383, 47.3871521 ], + [ 9.3497248, 47.3870896 ], + [ 9.3496016, 47.3869673 ], + [ 9.3498089, 47.3868692 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "AR-0001", + "country" : "CHE", + "name" : [ + { + "text" : "Strafanstalt Gmünden", + "lang" : "de-CH" + }, + { + "text" : "Pénitencier Gmünden", + "lang" : "fr-CH" + }, + { + "text" : "Penitenziario Gmünden", + "lang" : "it-CH" + }, + { + "text" : "Penitentiary Gmünden", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "regulationExemption" : "NO", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Departement Bau und Volkswirtschaft", + "lang" : "de-CH" + }, + { + "text" : "Département d'économie", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di economia", + "lang" : "it-CH" + }, + { + "text" : "Economics department", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Tiefbauamt - Mobilität und Support", + "lang" : "de-CH" + }, + { + "text" : "Bureau de génie civil", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio di ingegneria civile", + "lang" : "it-CH" + }, + { + "text" : "Civil engineering office", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ar.ch/verwaltung/departement-bau-und-volkswirtschaft/tiefbauamt/abteilung-mobilitaet-support/", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8139576, 47.4413276 ], + [ 7.813966, 47.4414298 ], + [ 7.8140947, 47.4416446 ], + [ 7.8141408, 47.4417474 ], + [ 7.8141546, 47.4418546 ], + [ 7.8141513, 47.442032 ], + [ 7.8141934, 47.4421702 ], + [ 7.8142773, 47.4423006 ], + [ 7.8143813, 47.4424269 ], + [ 7.8145377, 47.4425564 ], + [ 7.8150617, 47.4424721 ], + [ 7.815838, 47.4423474 ], + [ 7.8172979, 47.4424458 ], + [ 7.8173584, 47.4424499 ], + [ 7.8186985, 47.4425402 ], + [ 7.8185187, 47.4420475 ], + [ 7.818424, 47.4416904 ], + [ 7.8184091, 47.4414697 ], + [ 7.8180654, 47.4414884 ], + [ 7.818164, 47.4412268 ], + [ 7.8185461, 47.4411946 ], + [ 7.8190661, 47.4411165 ], + [ 7.8194636, 47.4410182 ], + [ 7.8198604, 47.4408991 ], + [ 7.8202688, 47.4407295 ], + [ 7.8210521, 47.4404647 ], + [ 7.8214211, 47.4405562 ], + [ 7.8214956, 47.4403664 ], + [ 7.8215506, 47.4401292 ], + [ 7.8216231, 47.4397683 ], + [ 7.8215894, 47.4395105 ], + [ 7.8214243, 47.4395135 ], + [ 7.8211262999999995, 47.4395431 ], + [ 7.8208339, 47.4395934 ], + [ 7.819275, 47.4399321 ], + [ 7.8190319, 47.4399759 ], + [ 7.8187817, 47.4399976 ], + [ 7.8185308, 47.4400037 ], + [ 7.8183974, 47.4400207 ], + [ 7.8180326, 47.4400068 ], + [ 7.8179016, 47.4399785 ], + [ 7.8177607, 47.4399816 ], + [ 7.8176569, 47.4399955 ], + [ 7.8176018, 47.4399622 ], + [ 7.8175814, 47.4398908 ], + [ 7.8176338, 47.4398613 ], + [ 7.8173424, 47.4395831 ], + [ 7.8172689, 47.4395938 ], + [ 7.8172059, 47.4395081 ], + [ 7.8171752, 47.4394661 ], + [ 7.8171113, 47.4394567 ], + [ 7.8170944, 47.439384 ], + [ 7.8170082, 47.4393412 ], + [ 7.8164660999999995, 47.4392526 ], + [ 7.8158784, 47.439128 ], + [ 7.8158615000000005, 47.4390924 ], + [ 7.8157905, 47.4389436 ], + [ 7.8153926, 47.4387731 ], + [ 7.8151896, 47.4388057 ], + [ 7.8151405, 47.438888 ], + [ 7.8150697000000005, 47.4389906 ], + [ 7.8151384, 47.4390493 ], + [ 7.8150675, 47.4391626 ], + [ 7.8149728, 47.439281 ], + [ 7.8148964, 47.4394226 ], + [ 7.814805, 47.439495 ], + [ 7.8146637, 47.4395677 ], + [ 7.8146312, 47.4397351 ], + [ 7.8146049, 47.4400547 ], + [ 7.814654, 47.4402163 ], + [ 7.8146599, 47.4402568 ], + [ 7.8148034, 47.4404086 ], + [ 7.8146491000000005, 47.4406174 ], + [ 7.8144833, 47.4406564 ], + [ 7.8143205, 47.4408507 ], + [ 7.8142077, 47.4409752 ], + [ 7.813966, 47.4410783 ], + [ 7.8139576, 47.4413276 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns216", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Tenniker Fluh - Sangeten", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Tenniker Fluh - Sangeten", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Tenniker Fluh - Sangeten", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Tenniker Fluh - Sangeten", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8113325, 47.4961524 ], + [ 7.8108705, 47.4960947 ], + [ 7.8103584999999995, 47.4961604 ], + [ 7.8103828, 47.4962296 ], + [ 7.810403, 47.4962815 ], + [ 7.8106035, 47.4964239 ], + [ 7.8110669, 47.4968539 ], + [ 7.8111751, 47.4968192 ], + [ 7.8111618, 47.4968057 ], + [ 7.8111493, 47.4967918 ], + [ 7.8111377, 47.4967777 ], + [ 7.8111268, 47.4967632 ], + [ 7.8111166999999995, 47.4967485 ], + [ 7.8111075, 47.4967335 ], + [ 7.8110991, 47.4967183 ], + [ 7.8110916, 47.4967029 ], + [ 7.8110849, 47.4966873 ], + [ 7.8110791, 47.4966716 ], + [ 7.8110742, 47.4966557 ], + [ 7.8110702, 47.4966397 ], + [ 7.8110671, 47.4966236 ], + [ 7.8110649, 47.4966074 ], + [ 7.8110636, 47.4965912 ], + [ 7.8110633, 47.496575 ], + [ 7.8110638, 47.4965588 ], + [ 7.8110653, 47.4965426 ], + [ 7.8110677, 47.4965264 ], + [ 7.811071, 47.4965103 ], + [ 7.8110751, 47.4964943 ], + [ 7.8110802, 47.4964785 ], + [ 7.8110862, 47.4964627 ], + [ 7.811093, 47.4964472 ], + [ 7.8111007, 47.4964318 ], + [ 7.8111093, 47.4964167 ], + [ 7.8111186, 47.4964017 ], + [ 7.8111289, 47.496387 ], + [ 7.8111399, 47.4963726 ], + [ 7.8111518, 47.4963585 ], + [ 7.8113325, 47.4961524 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns290", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Uf der Höchi", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Uf der Höchi", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Uf der Höchi", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Uf der Höchi", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.336399, 47.4403374 ], + [ 7.3364299, 47.4401879 ], + [ 7.3363322, 47.4401766 ], + [ 7.3360968, 47.4400421 ], + [ 7.3358051, 47.4400711 ], + [ 7.335623, 47.4399765 ], + [ 7.3351888, 47.4399783 ], + [ 7.3347628, 47.4400802 ], + [ 7.3339276, 47.4400974 ], + [ 7.3333181, 47.439935 ], + [ 7.3328142, 47.4400515 ], + [ 7.3309056, 47.4398518 ], + [ 7.3298986, 47.439716 ], + [ 7.3293949, 47.4397604 ], + [ 7.3287336, 47.4390852 ], + [ 7.329081, 47.4376916 ], + [ 7.3290866, 47.4376691 ], + [ 7.3288136, 47.4375705 ], + [ 7.3285754, 47.4375214 ], + [ 7.3285815, 47.4376091 ], + [ 7.3285817, 47.4376097 ], + [ 7.3285818, 47.4376103 ], + [ 7.3285819, 47.4376109 ], + [ 7.3285821, 47.4376115 ], + [ 7.3285822, 47.4376121 ], + [ 7.3285823, 47.4376127 ], + [ 7.3285824, 47.4376134 ], + [ 7.3285824999999996, 47.437614 ], + [ 7.3285826, 47.4376146 ], + [ 7.3285826, 47.4376152 ], + [ 7.3285827, 47.4376158 ], + [ 7.3285827, 47.4376164 ], + [ 7.3285828, 47.4376171 ], + [ 7.3285828, 47.4376177 ], + [ 7.3285828, 47.4376183 ], + [ 7.3285828, 47.4376189 ], + [ 7.3285828, 47.4376195 ], + [ 7.3285828, 47.4376202 ], + [ 7.3285828, 47.4376208 ], + [ 7.3285828, 47.4376214 ], + [ 7.3285827, 47.437622 ], + [ 7.3285827, 47.4376226 ], + [ 7.3285826, 47.4376232 ], + [ 7.3285826, 47.4376239 ], + [ 7.3285824999999996, 47.4376245 ], + [ 7.3285824, 47.4376251 ], + [ 7.3285823, 47.4376257 ], + [ 7.3285822, 47.4376263 ], + [ 7.3285821, 47.4376269 ], + [ 7.3285819, 47.4376276 ], + [ 7.3285818, 47.4376282 ], + [ 7.3285817, 47.4376288 ], + [ 7.3285815, 47.4376294 ], + [ 7.3285813, 47.43763 ], + [ 7.3285812, 47.4376306 ], + [ 7.328581, 47.4376312 ], + [ 7.3285808, 47.4376318 ], + [ 7.3285806000000004, 47.4376324 ], + [ 7.3285804, 47.437633 ], + [ 7.3285801, 47.4376336 ], + [ 7.3285799, 47.4376342 ], + [ 7.3285796, 47.4376348 ], + [ 7.3285794, 47.4376354 ], + [ 7.3285791, 47.437636 ], + [ 7.3285788, 47.4376366 ], + [ 7.3285786, 47.4376372 ], + [ 7.3285783, 47.4376378 ], + [ 7.328578, 47.4376384 ], + [ 7.3285777, 47.4376389 ], + [ 7.3285773, 47.4376395 ], + [ 7.328577, 47.4376401 ], + [ 7.3285767, 47.4376407 ], + [ 7.3285763, 47.4376413 ], + [ 7.328576, 47.4376418 ], + [ 7.3285756, 47.4376424 ], + [ 7.3285752, 47.437643 ], + [ 7.3285749, 47.4376435 ], + [ 7.3285745, 47.4376441 ], + [ 7.3285741, 47.4376446 ], + [ 7.3285736, 47.4376452 ], + [ 7.3285732, 47.4376457 ], + [ 7.3285728, 47.4376463 ], + [ 7.3285724, 47.4376468 ], + [ 7.3285719, 47.4376474 ], + [ 7.3285715, 47.4376479 ], + [ 7.328571, 47.4376484 ], + [ 7.3285705, 47.437649 ], + [ 7.32857, 47.4376495 ], + [ 7.3285696, 47.43765 ], + [ 7.3285691, 47.4376505 ], + [ 7.3285686, 47.4376511 ], + [ 7.328568, 47.4376516 ], + [ 7.3285675, 47.4376521 ], + [ 7.328567, 47.4376526 ], + [ 7.3285664, 47.4376531 ], + [ 7.3285659, 47.4376536 ], + [ 7.3285653, 47.4376541 ], + [ 7.3285648, 47.4376546 ], + [ 7.3285642, 47.4376551 ], + [ 7.3285636, 47.4376556 ], + [ 7.328563, 47.4376561 ], + [ 7.3285624, 47.4376565 ], + [ 7.3285618, 47.437657 ], + [ 7.3285612, 47.4376575 ], + [ 7.3285606, 47.4376579 ], + [ 7.3285599, 47.4376584 ], + [ 7.3285593, 47.4376588 ], + [ 7.3285587, 47.4376593 ], + [ 7.328558, 47.4376597 ], + [ 7.3285574, 47.4376602 ], + [ 7.3285567, 47.4376606 ], + [ 7.328556, 47.437661 ], + [ 7.3285554, 47.4376615 ], + [ 7.3285547, 47.4376619 ], + [ 7.3285540000000005, 47.4376623 ], + [ 7.3285533, 47.4376627 ], + [ 7.3285526, 47.4376631 ], + [ 7.3285519, 47.4376635 ], + [ 7.3285511, 47.4376639 ], + [ 7.3285504, 47.4376643 ], + [ 7.3285497, 47.4376647 ], + [ 7.328549, 47.437665 ], + [ 7.3285482, 47.4376654 ], + [ 7.3285475, 47.4376658 ], + [ 7.3285467, 47.4376661 ], + [ 7.328546, 47.4376665 ], + [ 7.3285452, 47.4376668 ], + [ 7.3285444, 47.4376672 ], + [ 7.3285437, 47.4376675 ], + [ 7.3285429, 47.4376678 ], + [ 7.3285421, 47.4376682 ], + [ 7.3285413, 47.4376685 ], + [ 7.3285405, 47.4376688 ], + [ 7.3285397, 47.4376691 ], + [ 7.3285389, 47.4376694 ], + [ 7.3285381, 47.4376697 ], + [ 7.3285373, 47.43767 ], + [ 7.3285364, 47.4376703 ], + [ 7.3285356, 47.4376706 ], + [ 7.3285348, 47.4376708 ], + [ 7.3285339, 47.4376711 ], + [ 7.3285331, 47.4376714 ], + [ 7.3285323, 47.4376716 ], + [ 7.3285314, 47.4376719 ], + [ 7.3285306, 47.4376721 ], + [ 7.3285297, 47.4376723 ], + [ 7.3285289, 47.4376726 ], + [ 7.328528, 47.4376728 ], + [ 7.3285271, 47.437673 ], + [ 7.3285263, 47.4376732 ], + [ 7.3285254, 47.4376734 ], + [ 7.3285245, 47.4376736 ], + [ 7.3285236, 47.4376738 ], + [ 7.3285228, 47.437674 ], + [ 7.3285219, 47.4376741 ], + [ 7.328521, 47.4376743 ], + [ 7.3285201, 47.4376745 ], + [ 7.3285193, 47.4376746 ], + [ 7.3285185, 47.4376747 ], + [ 7.3285176, 47.4376748 ], + [ 7.3285168, 47.4376748 ], + [ 7.328516, 47.4376749 ], + [ 7.3285151, 47.437675 ], + [ 7.3285143, 47.437675 ], + [ 7.3285135, 47.4376751 ], + [ 7.3285127, 47.4376751 ], + [ 7.3285118, 47.4376752 ], + [ 7.328511, 47.4376752 ], + [ 7.3285102, 47.4376752 ], + [ 7.3285093, 47.4376753 ], + [ 7.3285085, 47.4376753 ], + [ 7.3285076, 47.4376753 ], + [ 7.3285067999999995, 47.4376753 ], + [ 7.328506, 47.4376753 ], + [ 7.3285051, 47.4376752 ], + [ 7.3285043, 47.4376752 ], + [ 7.3285035, 47.4376752 ], + [ 7.3285026, 47.4376752 ], + [ 7.3285018, 47.4376751 ], + [ 7.328501, 47.4376751 ], + [ 7.3285001, 47.437675 ], + [ 7.3284993, 47.437675 ], + [ 7.3284985, 47.4376749 ], + [ 7.3284977, 47.4376748 ], + [ 7.3284968, 47.4376747 ], + [ 7.328496, 47.4376746 ], + [ 7.3284952, 47.4376746 ], + [ 7.3284944, 47.4376745 ], + [ 7.3284935, 47.4376743 ], + [ 7.3284927, 47.4376742 ], + [ 7.3284919, 47.4376741 ], + [ 7.3284911, 47.437674 ], + [ 7.3284903, 47.4376738 ], + [ 7.3284895, 47.4376737 ], + [ 7.3284887, 47.4376736 ], + [ 7.3284879, 47.4376734 ], + [ 7.3284871, 47.4376733 ], + [ 7.3284863, 47.4376731 ], + [ 7.3284855, 47.4376729 ], + [ 7.3284847, 47.4376727 ], + [ 7.3284839, 47.4376725 ], + [ 7.3284831, 47.4376724 ], + [ 7.3284823, 47.4376722 ], + [ 7.3284815, 47.4376719 ], + [ 7.3284808, 47.4376717 ], + [ 7.32848, 47.4376715 ], + [ 7.3284792, 47.4376713 ], + [ 7.3284785, 47.4376711 ], + [ 7.3284777, 47.4376708 ], + [ 7.3284769, 47.4376706 ], + [ 7.3284762, 47.4376704 ], + [ 7.3284754, 47.4376701 ], + [ 7.3284747, 47.4376698 ], + [ 7.328474, 47.4376696 ], + [ 7.3284732, 47.4376693 ], + [ 7.3284725, 47.437669 ], + [ 7.3284718, 47.4376687 ], + [ 7.3284711, 47.4376685 ], + [ 7.3284703, 47.4376682 ], + [ 7.3284696, 47.4376679 ], + [ 7.3284689, 47.4376676 ], + [ 7.3284682, 47.4376673 ], + [ 7.3284675, 47.437666899999996 ], + [ 7.3284669000000005, 47.4376666 ], + [ 7.3284662, 47.4376663 ], + [ 7.3284655, 47.4376659 ], + [ 7.3283667999999995, 47.4375866 ], + [ 7.3282708, 47.4375141 ], + [ 7.3281083, 47.4374965 ], + [ 7.3283488, 47.4377809 ], + [ 7.3283501, 47.4377832 ], + [ 7.3283514, 47.4377856 ], + [ 7.3283527, 47.437788 ], + [ 7.328354, 47.4377904 ], + [ 7.3283553, 47.4377928 ], + [ 7.3283565, 47.4377951 ], + [ 7.3283578, 47.4377975 ], + [ 7.3283591, 47.4377999 ], + [ 7.3283603, 47.4378023 ], + [ 7.3283615, 47.4378047 ], + [ 7.3283628, 47.4378071 ], + [ 7.328364, 47.4378095 ], + [ 7.3283652, 47.4378119 ], + [ 7.3283664, 47.4378143 ], + [ 7.3283676, 47.4378167 ], + [ 7.3283688, 47.4378192 ], + [ 7.3283699, 47.4378216 ], + [ 7.3283711, 47.437824 ], + [ 7.3283722000000004, 47.4378264 ], + [ 7.3283734, 47.4378288 ], + [ 7.3283745, 47.4378312 ], + [ 7.3283756, 47.4378337 ], + [ 7.3283768, 47.4378361 ], + [ 7.3283779, 47.4378385 ], + [ 7.328379, 47.4378409 ], + [ 7.32838, 47.4378434 ], + [ 7.3283811, 47.4378458 ], + [ 7.3283822, 47.4378482 ], + [ 7.3283832, 47.4378506 ], + [ 7.3283843, 47.4378531 ], + [ 7.3283853, 47.4378555 ], + [ 7.3283863, 47.4378579 ], + [ 7.3283873, 47.4378603 ], + [ 7.3283883, 47.4378627 ], + [ 7.3283892999999996, 47.4378651 ], + [ 7.3283903, 47.4378675 ], + [ 7.3283912, 47.43787 ], + [ 7.3283922, 47.4378724 ], + [ 7.3283932, 47.4378748 ], + [ 7.3283941, 47.4378772 ], + [ 7.328395, 47.4378797 ], + [ 7.328396, 47.4378821 ], + [ 7.3283968999999995, 47.4378845 ], + [ 7.3283978, 47.437887 ], + [ 7.3283987, 47.4378894 ], + [ 7.3283996, 47.4378918 ], + [ 7.3284004, 47.437894299999996 ], + [ 7.3284013, 47.4378967 ], + [ 7.3284021, 47.4378992 ], + [ 7.328403, 47.437901600000004 ], + [ 7.3284038, 47.437904 ], + [ 7.3284047, 47.4379065 ], + [ 7.3284055, 47.4379089 ], + [ 7.3284063, 47.4379114 ], + [ 7.3284071, 47.4379138 ], + [ 7.3284079, 47.4379163 ], + [ 7.3284087, 47.4379187 ], + [ 7.328409, 47.4379199 ], + [ 7.3284093, 47.437921 ], + [ 7.3284095, 47.4379222 ], + [ 7.3284098, 47.4379233 ], + [ 7.3284101, 47.4379245 ], + [ 7.3284104, 47.4379256 ], + [ 7.3284106, 47.4379268 ], + [ 7.3284108, 47.437928 ], + [ 7.3284111, 47.4379291 ], + [ 7.3284113, 47.4379303 ], + [ 7.3284115, 47.4379314 ], + [ 7.3284117, 47.4379326 ], + [ 7.3284119, 47.4379338 ], + [ 7.3284120999999995, 47.4379349 ], + [ 7.3284122, 47.4379361 ], + [ 7.3284124, 47.4379373 ], + [ 7.3284125, 47.4379384 ], + [ 7.3284127, 47.4379396 ], + [ 7.3284128, 47.4379407 ], + [ 7.3284129, 47.4379419 ], + [ 7.328413, 47.4379431 ], + [ 7.3284131, 47.4379442 ], + [ 7.3284132, 47.4379454 ], + [ 7.3284133, 47.4379466 ], + [ 7.3284134, 47.4379477 ], + [ 7.3284134, 47.4379489 ], + [ 7.3284135, 47.4379501 ], + [ 7.3284135, 47.4379512 ], + [ 7.3284135, 47.4379524 ], + [ 7.3284135, 47.4379536 ], + [ 7.3284136, 47.4379547 ], + [ 7.3284135, 47.4379559 ], + [ 7.3284135, 47.4379571 ], + [ 7.3284135, 47.4379583 ], + [ 7.3284135, 47.4379594 ], + [ 7.3284134, 47.4379606 ], + [ 7.3284134, 47.4379618 ], + [ 7.3284133, 47.4379629 ], + [ 7.3284133, 47.4379641 ], + [ 7.3284132, 47.4379652 ], + [ 7.3284131, 47.4379664 ], + [ 7.328413, 47.4379676 ], + [ 7.3284129, 47.4379687 ], + [ 7.3284128, 47.4379699 ], + [ 7.3284126, 47.437971 ], + [ 7.3284125, 47.4379722 ], + [ 7.3284124, 47.4379733 ], + [ 7.3284122, 47.4379745 ], + [ 7.328412, 47.4379757 ], + [ 7.3284118, 47.4379768 ], + [ 7.3284117, 47.437978 ], + [ 7.3284115, 47.4379791 ], + [ 7.3284113, 47.4379803 ], + [ 7.328411, 47.4379814 ], + [ 7.3284108, 47.4379826 ], + [ 7.3284106, 47.4379837 ], + [ 7.3284103, 47.4379849 ], + [ 7.3284101, 47.437986 ], + [ 7.3284098, 47.4379872 ], + [ 7.3284095, 47.4379883 ], + [ 7.3284093, 47.4379895 ], + [ 7.328409, 47.4379906 ], + [ 7.3284087, 47.4379918 ], + [ 7.3284084, 47.4379929 ], + [ 7.328408, 47.437994 ], + [ 7.3284077, 47.4379952 ], + [ 7.3284074, 47.4379963 ], + [ 7.328407, 47.4379975 ], + [ 7.3284066, 47.4379986 ], + [ 7.3284063, 47.4379997 ], + [ 7.3284059, 47.4380009 ], + [ 7.3284055, 47.438002 ], + [ 7.3284051, 47.4380031 ], + [ 7.3284047, 47.4380042 ], + [ 7.3284043, 47.4380054 ], + [ 7.3284038, 47.4380065 ], + [ 7.3284034, 47.4380076 ], + [ 7.328403, 47.4380087 ], + [ 7.3284021, 47.4380109 ], + [ 7.3284012, 47.4380131 ], + [ 7.3284003, 47.4380152 ], + [ 7.3283994, 47.4380174 ], + [ 7.3283985, 47.4380195 ], + [ 7.3283976, 47.4380217 ], + [ 7.3283967, 47.4380238 ], + [ 7.3283958, 47.438026 ], + [ 7.3283948, 47.4380281 ], + [ 7.3283939, 47.4380302 ], + [ 7.3283929, 47.4380324 ], + [ 7.3283919, 47.4380345 ], + [ 7.328391, 47.4380367 ], + [ 7.32839, 47.4380388 ], + [ 7.328389, 47.4380409 ], + [ 7.328388, 47.4380431 ], + [ 7.3283869, 47.4380452 ], + [ 7.3283859, 47.4380473 ], + [ 7.3283849, 47.4380494 ], + [ 7.3283838, 47.4380516 ], + [ 7.3283828, 47.4380537 ], + [ 7.3283816999999996, 47.4380558 ], + [ 7.3283806, 47.4380579 ], + [ 7.3283796, 47.43806 ], + [ 7.3283785, 47.4380622 ], + [ 7.3283774, 47.4380643 ], + [ 7.3283762, 47.4380664 ], + [ 7.3283751, 47.4380685 ], + [ 7.328374, 47.4380706 ], + [ 7.3283728, 47.4380727 ], + [ 7.3283717, 47.4380748 ], + [ 7.3283705, 47.4380769 ], + [ 7.3283694, 47.438079 ], + [ 7.3283681, 47.4380813 ], + [ 7.3283667999999995, 47.4380835 ], + [ 7.3283655, 47.4380858 ], + [ 7.3283642, 47.4380881 ], + [ 7.3283629, 47.4380904 ], + [ 7.3283616, 47.4380926 ], + [ 7.3283603, 47.4380949 ], + [ 7.3283589, 47.4380971 ], + [ 7.3283576, 47.4380994 ], + [ 7.3283562, 47.4381017 ], + [ 7.3283549, 47.4381039 ], + [ 7.3283535, 47.4381062 ], + [ 7.3283521, 47.4381084 ], + [ 7.3283507, 47.4381107 ], + [ 7.3283493, 47.4381129 ], + [ 7.3283479, 47.4381151 ], + [ 7.3283465, 47.4381174 ], + [ 7.3283451, 47.4381196 ], + [ 7.3283436, 47.4381219 ], + [ 7.3283422, 47.4381241 ], + [ 7.3283408, 47.4381263 ], + [ 7.3283393, 47.4381285 ], + [ 7.3283378, 47.4381308 ], + [ 7.3283363, 47.4381331 ], + [ 7.3283348, 47.4381354 ], + [ 7.3283332, 47.4381377 ], + [ 7.3283317, 47.43814 ], + [ 7.3283301, 47.4381423 ], + [ 7.3283285, 47.4381446 ], + [ 7.3283269, 47.4381469 ], + [ 7.3283253, 47.4381491 ], + [ 7.3283237, 47.4381514 ], + [ 7.3283221, 47.4381537 ], + [ 7.3283205, 47.438156 ], + [ 7.3283189, 47.4381583 ], + [ 7.3283172, 47.4381605 ], + [ 7.3283156, 47.4381628 ], + [ 7.3283139, 47.4381651 ], + [ 7.3283123, 47.4381673 ], + [ 7.3283106, 47.4381696 ], + [ 7.3283089, 47.4381718 ], + [ 7.3283072, 47.4381741 ], + [ 7.3283055, 47.4381763 ], + [ 7.3283038, 47.4381786 ], + [ 7.3283021, 47.4381808 ], + [ 7.3283004, 47.4381831 ], + [ 7.3282986, 47.4381853 ], + [ 7.3282964, 47.438188 ], + [ 7.3282942, 47.4381907 ], + [ 7.328292, 47.4381934 ], + [ 7.3282897, 47.4381961 ], + [ 7.3282875, 47.4381988 ], + [ 7.3282852, 47.4382015 ], + [ 7.328283, 47.4382041 ], + [ 7.3282807, 47.4382068 ], + [ 7.3282784, 47.4382095 ], + [ 7.3282761, 47.4382122 ], + [ 7.3282738, 47.4382148 ], + [ 7.3282715, 47.4382175 ], + [ 7.3282692, 47.4382202 ], + [ 7.3282669, 47.4382228 ], + [ 7.3282646, 47.4382255 ], + [ 7.3282622, 47.4382281 ], + [ 7.3282599, 47.4382308 ], + [ 7.3282575, 47.4382334 ], + [ 7.3282552, 47.438236 ], + [ 7.3282528, 47.4382387 ], + [ 7.3282504, 47.4382414 ], + [ 7.328248, 47.4382441 ], + [ 7.3282454999999995, 47.4382467 ], + [ 7.3282431, 47.4382494 ], + [ 7.3282406, 47.4382521 ], + [ 7.3282382, 47.4382547 ], + [ 7.3282357, 47.4382574 ], + [ 7.3282332, 47.4382601 ], + [ 7.3282307, 47.4382627 ], + [ 7.3282282, 47.4382654 ], + [ 7.3282257, 47.438268 ], + [ 7.3282232, 47.4382707 ], + [ 7.3282207, 47.4382733 ], + [ 7.3282181, 47.438276 ], + [ 7.3282156, 47.4382786 ], + [ 7.3282131, 47.4382813 ], + [ 7.3282105, 47.4382839 ], + [ 7.3282079, 47.4382865 ], + [ 7.3281641, 47.4383328 ], + [ 7.3281624, 47.4383346 ], + [ 7.3281607, 47.4383364 ], + [ 7.3281591, 47.4383381 ], + [ 7.3281575, 47.4383399 ], + [ 7.3281558, 47.4383417 ], + [ 7.3281542, 47.4383435 ], + [ 7.3281526, 47.4383453 ], + [ 7.328151, 47.4383472 ], + [ 7.3281494, 47.438349 ], + [ 7.3281478, 47.4383508 ], + [ 7.3281462, 47.4383526 ], + [ 7.3281446, 47.4383544 ], + [ 7.328143, 47.4383562 ], + [ 7.3281415, 47.4383581 ], + [ 7.3281399, 47.4383599 ], + [ 7.3281384, 47.4383617 ], + [ 7.3281369, 47.4383636 ], + [ 7.3281353, 47.4383654 ], + [ 7.3281338, 47.4383672 ], + [ 7.3281323, 47.4383691 ], + [ 7.3281308, 47.438371 ], + [ 7.3281292, 47.4383729 ], + [ 7.3281277, 47.4383748 ], + [ 7.3281261, 47.4383767 ], + [ 7.3281246, 47.4383786 ], + [ 7.3281231, 47.4383806 ], + [ 7.3281216, 47.4383825 ], + [ 7.3281201, 47.4383844 ], + [ 7.3281186, 47.4383864 ], + [ 7.3281172, 47.4383883 ], + [ 7.3281157, 47.4383902 ], + [ 7.3281143, 47.4383922 ], + [ 7.3281127999999995, 47.4383941 ], + [ 7.3281114, 47.4383961 ], + [ 7.3281099, 47.438398 ], + [ 7.3281085, 47.4384 ], + [ 7.3281071, 47.4384019 ], + [ 7.3281057, 47.4384039 ], + [ 7.3281043, 47.4384058 ], + [ 7.3281029, 47.4384078 ], + [ 7.3281015, 47.4384098 ], + [ 7.3280999, 47.4384118 ], + [ 7.3280983, 47.4384139 ], + [ 7.3280967, 47.4384159 ], + [ 7.3280951, 47.438418 ], + [ 7.3280935, 47.4384201 ], + [ 7.3280919, 47.4384221 ], + [ 7.3280903, 47.4384242 ], + [ 7.3280887, 47.4384263 ], + [ 7.3280871, 47.4384284 ], + [ 7.3280856, 47.4384305 ], + [ 7.328084, 47.4384325 ], + [ 7.3280825, 47.4384346 ], + [ 7.328081, 47.4384367 ], + [ 7.3280795, 47.4384388 ], + [ 7.3280779, 47.4384409 ], + [ 7.3280764, 47.438443 ], + [ 7.3280749, 47.4384451 ], + [ 7.3280734, 47.4384472 ], + [ 7.328072, 47.4384493 ], + [ 7.3280705, 47.4384515 ], + [ 7.328069, 47.4384536 ], + [ 7.3280676, 47.4384557 ], + [ 7.3280662, 47.4384578 ], + [ 7.3280648, 47.4384599 ], + [ 7.3280633, 47.438462 ], + [ 7.3280619, 47.4384641 ], + [ 7.3280605, 47.4384662 ], + [ 7.3280591, 47.4384683 ], + [ 7.3280577000000005, 47.4384705 ], + [ 7.3280564, 47.4384726 ], + [ 7.328055, 47.4384747 ], + [ 7.3280536, 47.4384769 ], + [ 7.3280522999999995, 47.438479 ], + [ 7.328051, 47.4384811 ], + [ 7.3280496, 47.4384833 ], + [ 7.3280483, 47.4384854 ], + [ 7.328047, 47.4384875 ], + [ 7.3280457, 47.4384897 ], + [ 7.3280444, 47.4384918 ], + [ 7.3280423, 47.4384961 ], + [ 7.3280402, 47.4385003 ], + [ 7.3280381, 47.4385045 ], + [ 7.328036, 47.4385087 ], + [ 7.328034, 47.4385129 ], + [ 7.3280319, 47.4385172 ], + [ 7.3280298, 47.4385214 ], + [ 7.3280278, 47.4385256 ], + [ 7.3280256999999995, 47.4385299 ], + [ 7.3280237, 47.4385341 ], + [ 7.3280217, 47.4385383 ], + [ 7.3280197, 47.4385426 ], + [ 7.3280177, 47.4385468 ], + [ 7.3280157, 47.4385511 ], + [ 7.3280138, 47.4385552 ], + [ 7.3280118, 47.4385594 ], + [ 7.3280099, 47.4385636 ], + [ 7.328008, 47.4385677 ], + [ 7.328006, 47.4385719 ], + [ 7.3280041, 47.4385761 ], + [ 7.3280022, 47.4385803 ], + [ 7.3280003, 47.4385845 ], + [ 7.3279985, 47.4385886 ], + [ 7.3279966, 47.4385928 ], + [ 7.3279947, 47.438597 ], + [ 7.3279929, 47.4386012 ], + [ 7.327991, 47.4386054 ], + [ 7.3279892, 47.4386096 ], + [ 7.3279873, 47.4386138 ], + [ 7.3279864, 47.4386158 ], + [ 7.3279855, 47.4386179 ], + [ 7.3279845, 47.4386199 ], + [ 7.3279836, 47.438622 ], + [ 7.3279827, 47.4386241 ], + [ 7.3279818, 47.4386261 ], + [ 7.3279809, 47.4386282 ], + [ 7.32798, 47.4386302 ], + [ 7.3279792, 47.4386323 ], + [ 7.3279783, 47.4386344 ], + [ 7.3279774, 47.4386364 ], + [ 7.3279766, 47.4386385 ], + [ 7.3279757, 47.4386406 ], + [ 7.3279749, 47.4386426 ], + [ 7.3279741, 47.4386447 ], + [ 7.3279733, 47.4386468 ], + [ 7.3279725, 47.4386489 ], + [ 7.3279717, 47.4386509 ], + [ 7.3279709, 47.4386531 ], + [ 7.3279701, 47.4386552 ], + [ 7.3279693, 47.4386573 ], + [ 7.3279686, 47.4386594 ], + [ 7.3279678, 47.4386615 ], + [ 7.3279671, 47.4386636 ], + [ 7.3279663, 47.4386657 ], + [ 7.3279656, 47.4386679 ], + [ 7.3279649, 47.43867 ], + [ 7.3279642, 47.4386721 ], + [ 7.3279635, 47.4386742 ], + [ 7.3279628, 47.4386764 ], + [ 7.3279621, 47.4386785 ], + [ 7.3279613999999995, 47.4386806 ], + [ 7.3279608, 47.4386828 ], + [ 7.3279601, 47.4386849 ], + [ 7.3279595, 47.438687 ], + [ 7.3279588, 47.4386892 ], + [ 7.3279582, 47.4386913 ], + [ 7.3279575999999995, 47.4386934 ], + [ 7.3279571, 47.4386951 ], + [ 7.3279566, 47.4386967 ], + [ 7.3279561, 47.4386983 ], + [ 7.3279557, 47.4387 ], + [ 7.3279552, 47.4387016 ], + [ 7.3279547, 47.4387032 ], + [ 7.3279543, 47.4387049 ], + [ 7.3279539, 47.4387065 ], + [ 7.3279534, 47.4387082 ], + [ 7.327953, 47.4387098 ], + [ 7.3279526, 47.4387114 ], + [ 7.3279522, 47.4387131 ], + [ 7.3279518, 47.4387147 ], + [ 7.3279515, 47.4387164 ], + [ 7.3279511, 47.438718 ], + [ 7.3279507, 47.4387197 ], + [ 7.3279504, 47.4387213 ], + [ 7.32795, 47.438723 ], + [ 7.3279497, 47.4387246 ], + [ 7.3279494, 47.4387262 ], + [ 7.3279491, 47.4387279 ], + [ 7.3279488, 47.4387296 ], + [ 7.3279485, 47.4387312 ], + [ 7.3279482, 47.4387329 ], + [ 7.3279479, 47.4387345 ], + [ 7.3279477, 47.4387362 ], + [ 7.3279474, 47.4387378 ], + [ 7.3279471, 47.4387395 ], + [ 7.3279469, 47.4387412 ], + [ 7.3279467, 47.4387429 ], + [ 7.3279465, 47.4387446 ], + [ 7.3279463, 47.4387463 ], + [ 7.3279461, 47.438748 ], + [ 7.3279459, 47.4387497 ], + [ 7.3279457, 47.4387514 ], + [ 7.3279455, 47.4387531 ], + [ 7.3279454, 47.4387548 ], + [ 7.3279452, 47.4387565 ], + [ 7.3279451, 47.4387582 ], + [ 7.3279449, 47.4387599 ], + [ 7.3279448, 47.4387616 ], + [ 7.3279447, 47.4387633 ], + [ 7.3279446, 47.438765 ], + [ 7.3279445, 47.4387667 ], + [ 7.3279445, 47.4387684 ], + [ 7.3279444, 47.4387701 ], + [ 7.3279443, 47.4387718 ], + [ 7.3279443, 47.4387735 ], + [ 7.3279443, 47.4387752 ], + [ 7.3279442, 47.4387769 ], + [ 7.3279442, 47.4387786 ], + [ 7.3279442, 47.4387803 ], + [ 7.3279442, 47.438782 ], + [ 7.3279442, 47.4387837 ], + [ 7.3279471, 47.4388378 ], + [ 7.3279482, 47.4388652 ], + [ 7.3279483, 47.4388666 ], + [ 7.3279484, 47.438868 ], + [ 7.3279485, 47.4388695 ], + [ 7.3279486, 47.4388709 ], + [ 7.3279487, 47.4388723 ], + [ 7.3279488, 47.4388738 ], + [ 7.3279489, 47.4388752 ], + [ 7.3279491, 47.4388767 ], + [ 7.3279492, 47.4388781 ], + [ 7.3279494, 47.4388795 ], + [ 7.3279496, 47.438881 ], + [ 7.3279497, 47.4388824 ], + [ 7.3279499, 47.4388838 ], + [ 7.3279501, 47.4388853 ], + [ 7.3279503, 47.4388867 ], + [ 7.3279506, 47.4388881 ], + [ 7.3279508, 47.4388896 ], + [ 7.327951, 47.438891 ], + [ 7.3279513, 47.4388924 ], + [ 7.3279515, 47.4388938 ], + [ 7.3279518, 47.4388953 ], + [ 7.3279521, 47.4388967 ], + [ 7.3279524, 47.4388981 ], + [ 7.3279527, 47.4388996 ], + [ 7.327953, 47.438901 ], + [ 7.3279533, 47.4389024 ], + [ 7.3279536, 47.4389038 ], + [ 7.327954, 47.4389052 ], + [ 7.3279543, 47.4389066 ], + [ 7.3279547, 47.438908 ], + [ 7.327955, 47.4389094 ], + [ 7.3279554000000005, 47.4389108 ], + [ 7.3279558, 47.4389122 ], + [ 7.3279562, 47.4389135 ], + [ 7.3279566, 47.4389149 ], + [ 7.327957, 47.4389163 ], + [ 7.3279574, 47.4389177 ], + [ 7.3279578, 47.4389191 ], + [ 7.3279582, 47.4389204 ], + [ 7.3279587, 47.4389218 ], + [ 7.3279592000000005, 47.4389232 ], + [ 7.3279596, 47.4389245 ], + [ 7.3279601, 47.4389259 ], + [ 7.3279606, 47.4389273 ], + [ 7.3279611, 47.4389287 ], + [ 7.3279616, 47.43893 ], + [ 7.3279621, 47.4389314 ], + [ 7.3279626, 47.4389327 ], + [ 7.3279631, 47.4389341 ], + [ 7.3279637, 47.4389355 ], + [ 7.3279642, 47.4389368 ], + [ 7.3279647, 47.4389382 ], + [ 7.3279769, 47.4389747 ], + [ 7.3280142, 47.4390855 ], + [ 7.3280432, 47.4391563 ], + [ 7.3280538, 47.4391733 ], + [ 7.328177, 47.4393522 ], + [ 7.328023, 47.4397208 ], + [ 7.3282345, 47.4400047 ], + [ 7.3283122, 47.4400739 ], + [ 7.3280513, 47.4402228 ], + [ 7.327927, 47.440292 ], + [ 7.3287143, 47.4408903 ], + [ 7.3286664, 47.4409241 ], + [ 7.3287543, 47.4409142 ], + [ 7.3288673, 47.4409282 ], + [ 7.3289670000000005, 47.4409453 ], + [ 7.3290075, 47.4409522 ], + [ 7.3292363, 47.4410509 ], + [ 7.3293061, 47.441081 ], + [ 7.3294546, 47.4411727 ], + [ 7.3294587, 47.4411752 ], + [ 7.3296762, 47.4413092 ], + [ 7.329724, 47.4413703 ], + [ 7.3298308, 47.4416302 ], + [ 7.3298399, 47.4416339 ], + [ 7.3298734, 47.4416473 ], + [ 7.3301477, 47.4417091 ], + [ 7.3303469, 47.4417501 ], + [ 7.3303571, 47.4417522 ], + [ 7.3304365, 47.4417422 ], + [ 7.3306162, 47.4416016 ], + [ 7.3307164, 47.4415518 ], + [ 7.3307877999999995, 47.4415163 ], + [ 7.3310166, 47.4414024 ], + [ 7.3312426, 47.4412884 ], + [ 7.3314376, 47.4412403 ], + [ 7.3315947, 47.4412301 ], + [ 7.3317082, 47.4412871 ], + [ 7.3319012, 47.4413161 ], + [ 7.3320624, 47.4413033 ], + [ 7.3322742, 47.4412394 ], + [ 7.3323481, 47.4412172 ], + [ 7.3324705, 47.4411406 ], + [ 7.3325724, 47.4410405 ], + [ 7.3326007, 47.4410381 ], + [ 7.3328729, 47.4410156 ], + [ 7.3329456, 47.4410378 ], + [ 7.3331292999999995, 47.4410351 ], + [ 7.333289, 47.4410446 ], + [ 7.3334202, 47.4410386 ], + [ 7.3335033, 47.4410363 ], + [ 7.3336493, 47.4410195 ], + [ 7.3338393, 47.4409913 ], + [ 7.3341914, 47.4409645 ], + [ 7.3342817, 47.4409581 ], + [ 7.334308, 47.4409047 ], + [ 7.3343061, 47.440891 ], + [ 7.3343514, 47.4408425 ], + [ 7.3343792, 47.4408318 ], + [ 7.3344346, 47.4408237 ], + [ 7.3344546, 47.4408457 ], + [ 7.3344865, 47.4408706 ], + [ 7.3346540000000005, 47.4408494 ], + [ 7.3348258, 47.4408249 ], + [ 7.3349687, 47.4408022 ], + [ 7.3351711, 47.4407839 ], + [ 7.3353539, 47.4407594 ], + [ 7.335514, 47.4406319 ], + [ 7.3357494, 47.4405294 ], + [ 7.3359664, 47.4404333 ], + [ 7.3366261999999995, 47.4405394 ], + [ 7.3367048, 47.4404215 ], + [ 7.336399, 47.4403374 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr085", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Neumühli", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Neumühli", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Neumühli", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Neumühli", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7896373, 47.4415502 ], + [ 7.7896415, 47.4414017 ], + [ 7.7893432, 47.4413752 ], + [ 7.7889623, 47.441417 ], + [ 7.7889195, 47.4414297 ], + [ 7.7886931, 47.4414637 ], + [ 7.7886211, 47.4415782 ], + [ 7.7888769, 47.4416863 ], + [ 7.788953, 47.4417185 ], + [ 7.7889095, 47.4419246 ], + [ 7.7894881, 47.4421517 ], + [ 7.7898177, 47.4423073 ], + [ 7.7903342, 47.4425407 ], + [ 7.7905073, 47.4426434 ], + [ 7.7892579, 47.4429646 ], + [ 7.7892532, 47.4429616 ], + [ 7.7891268, 47.4429191 ], + [ 7.7889382, 47.4428947 ], + [ 7.7887246999999995, 47.4428672 ], + [ 7.7886629, 47.4428544 ], + [ 7.7886556, 47.442853 ], + [ 7.7884312, 47.4428067 ], + [ 7.7886182999999996, 47.4433152 ], + [ 7.7887771, 47.4436696 ], + [ 7.7888786, 47.443896 ], + [ 7.7888872, 47.4439152 ], + [ 7.7884602, 47.4440364 ], + [ 7.7884391, 47.4440424 ], + [ 7.7885083, 47.4441386 ], + [ 7.788526, 47.4441631 ], + [ 7.7886573, 47.4443456 ], + [ 7.7886668, 47.4443625 ], + [ 7.7887439, 47.4445001 ], + [ 7.7890771999999995, 47.4450953 ], + [ 7.7892426, 47.4454245 ], + [ 7.7893137, 47.4455547 ], + [ 7.7893414, 47.4455867 ], + [ 7.7893681, 47.4456178 ], + [ 7.7894369999999995, 47.4455961 ], + [ 7.7895664, 47.4455553 ], + [ 7.789617, 47.4455392 ], + [ 7.7897164, 47.4455077 ], + [ 7.7898598, 47.4454621 ], + [ 7.7901948999999995, 47.4453504 ], + [ 7.790214, 47.445344 ], + [ 7.7903632, 47.4453218 ], + [ 7.7903842999999995, 47.4453403 ], + [ 7.7904633, 47.4454098 ], + [ 7.790515, 47.4454341 ], + [ 7.7905717, 47.4454379 ], + [ 7.7908208, 47.4453527 ], + [ 7.7908914, 47.4453285 ], + [ 7.7909169, 47.4452988 ], + [ 7.7909388, 47.4452734 ], + [ 7.7909415, 47.445259 ], + [ 7.7910562, 47.4445559 ], + [ 7.7914249, 47.4445941 ], + [ 7.791503, 47.4446026 ], + [ 7.7915683, 47.444608 ], + [ 7.791568, 47.4446439 ], + [ 7.7915863, 47.4446411 ], + [ 7.791639, 47.444629 ], + [ 7.7916763, 47.4446205 ], + [ 7.7916936, 47.4446141 ], + [ 7.791711, 47.444608 ], + [ 7.7917186, 47.4446048 ], + [ 7.7917254, 47.444601 ], + [ 7.7917314, 47.4445966 ], + [ 7.7917364, 47.4445917 ], + [ 7.7917514, 47.4445747 ], + [ 7.7917667999999995, 47.4445579 ], + [ 7.7917827, 47.4445414 ], + [ 7.7917991, 47.4445251 ], + [ 7.7918312, 47.444495 ], + [ 7.7918649, 47.4444657 ], + [ 7.7918777, 47.4444562 ], + [ 7.792234, 47.444177 ], + [ 7.7922566, 47.4441593 ], + [ 7.792499, 47.443951 ], + [ 7.7925164, 47.4439376 ], + [ 7.7925812, 47.4438873 ], + [ 7.7926055, 47.4438711 ], + [ 7.7926305, 47.4438554 ], + [ 7.7926563, 47.4438402 ], + [ 7.7926828, 47.4438257 ], + [ 7.7927099, 47.4438117 ], + [ 7.7927378, 47.4437983 ], + [ 7.7927487, 47.4437939 ], + [ 7.7927603, 47.4437903 ], + [ 7.7927722, 47.4437874 ], + [ 7.7927846, 47.4437853 ], + [ 7.7927972, 47.4437841 ], + [ 7.7928099, 47.4437836 ], + [ 7.7928396, 47.4437842 ], + [ 7.7928692, 47.4437856 ], + [ 7.7928988, 47.443788 ], + [ 7.7929281, 47.4437913 ], + [ 7.7929572, 47.4437954 ], + [ 7.792986, 47.4438004 ], + [ 7.7930095999999995, 47.4438075 ], + [ 7.7930122, 47.4438017 ], + [ 7.7932909, 47.4436406 ], + [ 7.7934888, 47.4435262 ], + [ 7.7934955, 47.4435245 ], + [ 7.7935689, 47.4435059 ], + [ 7.7935281, 47.4434978 ], + [ 7.7934996, 47.4434921 ], + [ 7.7935759000000004, 47.4432521 ], + [ 7.7937028999999995, 47.4432266 ], + [ 7.7937864, 47.4431794 ], + [ 7.7937995, 47.4430302 ], + [ 7.7936299, 47.4430917 ], + [ 7.7935182, 47.4430183 ], + [ 7.7933266, 47.4427784 ], + [ 7.7931351, 47.4425384 ], + [ 7.7930630999999995, 47.4424189 ], + [ 7.7930231, 47.4422934 ], + [ 7.7930165, 47.4422095 ], + [ 7.792964, 47.442214 ], + [ 7.7928947, 47.4421366 ], + [ 7.7928664, 47.4419858 ], + [ 7.7928949, 47.4419267 ], + [ 7.7926545, 47.4416947 ], + [ 7.7925346, 47.4415372 ], + [ 7.792558, 47.4414441 ], + [ 7.792712, 47.4414991 ], + [ 7.7927237, 47.4415033 ], + [ 7.7927472, 47.4414747 ], + [ 7.7928508, 47.4413486 ], + [ 7.7929689, 47.4412047 ], + [ 7.7930265, 47.4411346 ], + [ 7.7928059, 47.4409946 ], + [ 7.7925114, 47.4408893 ], + [ 7.7925091, 47.4408885 ], + [ 7.7924957, 47.4408837 ], + [ 7.7924915, 47.4408813 ], + [ 7.7922087, 47.4407238 ], + [ 7.7921171000000005, 47.4406727 ], + [ 7.7918481, 47.4404614 ], + [ 7.791825, 47.4404456 ], + [ 7.7916089, 47.4402979 ], + [ 7.7915631, 47.4403005 ], + [ 7.7914156, 47.4403091 ], + [ 7.7914102, 47.4403094 ], + [ 7.7914027, 47.4403183 ], + [ 7.7912854, 47.4404583 ], + [ 7.7912994, 47.4407287 ], + [ 7.7912909, 47.4407419 ], + [ 7.7912438, 47.4408153 ], + [ 7.7913906, 47.4407905 ], + [ 7.7916009, 47.4407551 ], + [ 7.7916993, 47.4409415 ], + [ 7.7918178000000005, 47.4412395 ], + [ 7.7919436, 47.4412958 ], + [ 7.7918696, 47.4414359 ], + [ 7.7916317, 47.4416104 ], + [ 7.7911259, 47.4417635 ], + [ 7.7904627, 47.4417093 ], + [ 7.7901294, 47.4416382 ], + [ 7.7898671, 47.441598 ], + [ 7.7897836, 47.4416158 ], + [ 7.7897602, 47.4415654 ], + [ 7.7896373, 47.4415502 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr117", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Menschegrund", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Menschegrund", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Menschegrund", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Menschegrund", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7926576, 47.4846848 ], + [ 7.7918587, 47.4841056 ], + [ 7.7917745, 47.4840632 ], + [ 7.7917713, 47.4840635 ], + [ 7.7917682, 47.4840637 ], + [ 7.7913673, 47.4840927 ], + [ 7.7913160999999995, 47.4840964 ], + [ 7.7911876, 47.4841057 ], + [ 7.7906165, 47.4841647 ], + [ 7.7903331, 47.4842344 ], + [ 7.7902566, 47.4842532 ], + [ 7.7902302, 47.4842597 ], + [ 7.790162, 47.4842764 ], + [ 7.7899541, 47.4843559 ], + [ 7.7894863999999995, 47.4845347 ], + [ 7.7889418, 47.4847167 ], + [ 7.7884109, 47.4848282 ], + [ 7.7880709, 47.4848996 ], + [ 7.7880274, 47.4849087 ], + [ 7.7878204, 47.4849497 ], + [ 7.7876557, 47.4849823 ], + [ 7.7876552, 47.4849824 ], + [ 7.7876454, 47.4850454 ], + [ 7.7874365999999995, 47.485066 ], + [ 7.7872966, 47.4851082 ], + [ 7.7872213, 47.4851442 ], + [ 7.7868575, 47.4853177 ], + [ 7.7863150999999995, 47.4855757 ], + [ 7.7862451, 47.485609 ], + [ 7.7862626, 47.4856399 ], + [ 7.7864017, 47.4858863 ], + [ 7.78665, 47.4860483 ], + [ 7.7866715, 47.4860623 ], + [ 7.786583, 47.4862649 ], + [ 7.7864772, 47.4865073 ], + [ 7.7862639, 47.4865613 ], + [ 7.7862313, 47.4865695 ], + [ 7.7862333, 47.4866228 ], + [ 7.7862337, 47.4866334 ], + [ 7.7862352999999995, 47.486676 ], + [ 7.7861185, 47.4866821 ], + [ 7.7856733, 47.4867052 ], + [ 7.7855933, 47.4869837 ], + [ 7.7855834, 47.4870182 ], + [ 7.7855565, 47.4871121 ], + [ 7.7855482, 47.4871691 ], + [ 7.7855471, 47.4871768 ], + [ 7.7855474000000005, 47.4872055 ], + [ 7.7855477, 47.4872315 ], + [ 7.7855481, 47.4872735 ], + [ 7.7855491, 47.4873142 ], + [ 7.7858377999999995, 47.4873263 ], + [ 7.7860333, 47.4874037 ], + [ 7.7862145, 47.4875963 ], + [ 7.7864801, 47.4877073 ], + [ 7.7870896, 47.4876512 ], + [ 7.7873697, 47.4876775 ], + [ 7.7878357, 47.4878455 ], + [ 7.7881312, 47.4879293 ], + [ 7.7883412, 47.4879422 ], + [ 7.7886255, 47.4878431 ], + [ 7.7884094, 47.4876676 ], + [ 7.7883726, 47.4874034 ], + [ 7.7884657, 47.4871185 ], + [ 7.7888161, 47.4866832 ], + [ 7.788855, 47.4862669 ], + [ 7.7889972, 47.4858435 ], + [ 7.7892365, 47.4857479 ], + [ 7.7895491, 47.4856566 ], + [ 7.7897891, 47.4854853 ], + [ 7.7902122, 47.485135 ], + [ 7.7905643, 47.4849713 ], + [ 7.7910364, 47.4848117 ], + [ 7.7915955, 47.4846971 ], + [ 7.7924021, 47.4847217 ], + [ 7.7926576, 47.4846848 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr031", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Schward", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Schward", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Schward", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Schward", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.4731764, 47.4084254 ], + [ 9.4731015, 47.4086943 ], + [ 9.47306, 47.4086887 ], + [ 9.4729591, 47.4090797 ], + [ 9.4733034, 47.4091272 ], + [ 9.473347799999999, 47.4089545 ], + [ 9.473506, 47.4089771 ], + [ 9.4735848, 47.4089803 ], + [ 9.4736236, 47.4089758 ], + [ 9.4736421, 47.4089691 ], + [ 9.4736689, 47.4089557 ], + [ 9.4736854, 47.4089129 ], + [ 9.4736919, 47.4088909 ], + [ 9.473714, 47.4088119 ], + [ 9.4737456, 47.4087024 ], + [ 9.4736616, 47.4086931 ], + [ 9.473713, 47.4085121 ], + [ 9.4737648, 47.4083107 ], + [ 9.4736853, 47.4083354 ], + [ 9.4736107, 47.4083574 ], + [ 9.4734998, 47.4083909 ], + [ 9.473378199999999, 47.4084168 ], + [ 9.4732791, 47.4084295 ], + [ 9.4731764, 47.4084254 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSXT002", + "country" : "CHE", + "name" : [ + { + "text" : "LSXT Trogen (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSXT Trogen (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSXT Trogen (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSXT Trogen (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Stiftung Helimission", + "lang" : "de-CH" + }, + { + "text" : "Stiftung Helimission", + "lang" : "fr-CH" + }, + { + "text" : "Stiftung Helimission", + "lang" : "it-CH" + }, + { + "text" : "Stiftung Helimission", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Basis St. Gallen", + "lang" : "de-CH" + }, + { + "text" : "Basis St. Gallen", + "lang" : "fr-CH" + }, + { + "text" : "Basis St. Gallen", + "lang" : "it-CH" + }, + { + "text" : "Basis St. Gallen", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.helimission.org/en/", + "email" : "info@hm-int.org", + "phone" : "0041713437171", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P01DT12H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.3092445, 47.3623585 ], + [ 8.3092833, 47.3624028 ], + [ 8.3092951, 47.3624485 ], + [ 8.309277, 47.3624895 ], + [ 8.3092828, 47.3625085 ], + [ 8.3093252, 47.3625126 ], + [ 8.3093758, 47.3625587 ], + [ 8.3094252, 47.3626404 ], + [ 8.3094833, 47.362703 ], + [ 8.3095387, 47.3627255 ], + [ 8.309633, 47.3627081 ], + [ 8.3096747, 47.3627192 ], + [ 8.3097802, 47.3627221 ], + [ 8.3098237, 47.3627182 ], + [ 8.3098891, 47.3627123 ], + [ 8.3099659, 47.3626785 ], + [ 8.3100614, 47.362628 ], + [ 8.3102125, 47.3625726 ], + [ 8.3103485, 47.3625211 ], + [ 8.3104282, 47.3624962 ], + [ 8.3104963, 47.3624325 ], + [ 8.3105349, 47.3623832 ], + [ 8.3105795, 47.3623618 ], + [ 8.310618, 47.3623449 ], + [ 8.3106943, 47.3622901 ], + [ 8.3107696, 47.3622697 ], + [ 8.3108717, 47.3622617 ], + [ 8.3109719, 47.3622616 ], + [ 8.3110082, 47.3622741 ], + [ 8.3110235, 47.3623166 ], + [ 8.3110625, 47.3623271 ], + [ 8.3111256, 47.3623228 ], + [ 8.3112246, 47.3622897 ], + [ 8.3112634, 47.3622766 ], + [ 8.3113581, 47.3622365 ], + [ 8.3114485, 47.3621633 ], + [ 8.3115176, 47.3620957 ], + [ 8.3115421, 47.3620716 ], + [ 8.3116056, 47.362005 ], + [ 8.3116429, 47.3619354 ], + [ 8.311648, 47.3618386 ], + [ 8.3116054, 47.3617441 ], + [ 8.311566, 47.3616744 ], + [ 8.3115169, 47.361615 ], + [ 8.3115122, 47.3615609 ], + [ 8.3115427, 47.3615123 ], + [ 8.3115372, 47.3614697 ], + [ 8.3115168, 47.3614438 ], + [ 8.3114294, 47.3614425 ], + [ 8.3113666, 47.3614602 ], + [ 8.3113359, 47.3614559 ], + [ 8.3113264, 47.3614356 ], + [ 8.311263199999999, 47.3614304 ], + [ 8.311194, 47.3614404 ], + [ 8.3111107, 47.3614658 ], + [ 8.3110353, 47.3614855 ], + [ 8.3109473, 47.361502 ], + [ 8.3107325, 47.3615335 ], + [ 8.3105695, 47.3615589 ], + [ 8.3103743, 47.3615788 ], + [ 8.3102219, 47.3615851 ], + [ 8.3100087, 47.3615665 ], + [ 8.3098698, 47.3615607 ], + [ 8.309751200000001, 47.3615764 ], + [ 8.3095955, 47.3616331 ], + [ 8.3094625, 47.3616973 ], + [ 8.3093402, 47.3617551 ], + [ 8.3092197, 47.3618109 ], + [ 8.3091105, 47.3618513 ], + [ 8.3089876, 47.3618766 ], + [ 8.3088807, 47.3618966 ], + [ 8.3087699, 47.3619001 ], + [ 8.3086501, 47.3619444 ], + [ 8.3085108, 47.3620087 ], + [ 8.3085013, 47.361989 ], + [ 8.3085114, 47.3619539 ], + [ 8.3084777, 47.3619332 ], + [ 8.3084002, 47.3619338 ], + [ 8.3083085, 47.3619493 ], + [ 8.3082287, 47.3619678 ], + [ 8.3082023, 47.3619967 ], + [ 8.3082218, 47.3620239 ], + [ 8.3083139, 47.3620327 ], + [ 8.3084281, 47.3620202 ], + [ 8.3084348, 47.3620412 ], + [ 8.3082567, 47.3620994 ], + [ 8.3081652, 47.362169 ], + [ 8.3081114, 47.3622217 ], + [ 8.3080681, 47.3622647 ], + [ 8.308064, 47.3622864 ], + [ 8.3080948, 47.3623365 ], + [ 8.3081247, 47.3623872 ], + [ 8.3081263, 47.3624668 ], + [ 8.3081035, 47.3624976 ], + [ 8.3080498, 47.3625159 ], + [ 8.3080474, 47.3625726 ], + [ 8.3080247, 47.3626097 ], + [ 8.3080688, 47.3626488 ], + [ 8.3081278, 47.3626675 ], + [ 8.3081952, 47.3626611 ], + [ 8.3082416, 47.3626353 ], + [ 8.308292, 47.3626316 ], + [ 8.3083152, 47.3626633 ], + [ 8.3083096, 47.3626978 ], + [ 8.3083486, 47.3627095 ], + [ 8.3084446, 47.362689 ], + [ 8.3086745, 47.3626475 ], + [ 8.3087764, 47.3626065 ], + [ 8.3088298, 47.362571 ], + [ 8.3088616, 47.3625395 ], + [ 8.308921, 47.3625384 ], + [ 8.3089716, 47.3624978 ], + [ 8.3090014, 47.3624561 ], + [ 8.3090136, 47.3623955 ], + [ 8.3090286, 47.3623801 ], + [ 8.3091571, 47.3623573 ], + [ 8.3092445, 47.3623585 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "KTAG602", + "country" : "CHE", + "name" : [ + { + "text" : "Fischbacher Moos", + "lang" : "de-CH" + }, + { + "text" : "Fischbacher Moos", + "lang" : "fr-CH" + }, + { + "text" : "Fischbacher Moos", + "lang" : "it-CH" + }, + { + "text" : "Fischbacher Moos", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "regulationExemption" : "NO", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "schedule" : [ + { + "day" : [ "ANY" ], + "startTime" : "00:00:00.00+01:00", + "endTime" : "00:00:00.00+01:00" + } + ] + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Aargau", + "lang" : "de-CH" + }, + { + "text" : "Canton d'Argovie", + "lang" : "fr-CH" + }, + { + "text" : "Canton Argovia", + "lang" : "it-CH" + }, + { + "text" : "Canton of Aargau", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Departement Bau, Verkehr und Umwelt (BVU)", + "lang" : "de-CH" + }, + { + "text" : "Département de la construction, des transports et de l'environnement (CTE)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento delle costruzioni, dei trasporti e dell'ambiente (CTA)", + "lang" : "it-CH" + }, + { + "text" : "Department of Civil Engineering,Transport and Environment (CTE)", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Sektion Gewässernutzung", + "lang" : "de-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "fr-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "it-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ag.ch/de/verwaltung/bvu/umwelt-natur-landschaft/hochwasserschutz-gewaesser/gewaessernutzung", + "email" : "alg@ag.ch", + "phone" : "0041 62 835 34 50", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.3396604, 46.2178513 ], + [ 7.3403645, 46.2169445 ], + [ 7.3387466, 46.2163747 ], + [ 7.3381063, 46.2173154 ], + [ 7.3396604, 46.2178513 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SIO0001", + "country" : "CHE", + "name" : [ + { + "text" : "Prison de Sion", + "lang" : "de-CH" + }, + { + "text" : "Prison de Sion", + "lang" : "fr-CH" + }, + { + "text" : "Prison de Sion", + "lang" : "it-CH" + }, + { + "text" : "Prison de Sion", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Prison de Sion", + "lang" : "de-CH" + }, + { + "text" : "Prison de Sion", + "lang" : "fr-CH" + }, + { + "text" : "Prison de Sion", + "lang" : "it-CH" + }, + { + "text" : "Prison de Sion", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Dienststelle für Straf-und Massnahmenvollzug", + "lang" : "de-CH" + }, + { + "text" : "Service de l'application des peines et mesures", + "lang" : "fr-CH" + }, + { + "text" : "Service de l'application des peines et mesures", + "lang" : "it-CH" + }, + { + "text" : "Service de l'application des peines et mesures", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.polizeiwallis.ch/", + "email" : "SAPEM-DIRECTION@admin.vs.ch", + "phone" : "0041276065166", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5538233, 47.4580094 ], + [ 7.5542115, 47.458011 ], + [ 7.5517759, 47.4564002 ], + [ 7.5515507, 47.4564832 ], + [ 7.551203, 47.4562284 ], + [ 7.5493429, 47.4565867 ], + [ 7.5465322, 47.4571267 ], + [ 7.5461727, 47.457279 ], + [ 7.5473662, 47.4575278 ], + [ 7.5486474999999995, 47.4578478 ], + [ 7.5502446, 47.4581081 ], + [ 7.5525953, 47.4580225 ], + [ 7.5538233, 47.4580094 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr046", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Chuenisberg", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Chuenisberg", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Chuenisberg", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Chuenisberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.9468212, 46.8157459 ], + [ 6.9465641, 46.8157506 ], + [ 6.9463079, 46.8157668 ], + [ 6.9460539, 46.8157945 ], + [ 6.945803, 46.8158335 ], + [ 6.9455564, 46.8158837 ], + [ 6.9453151, 46.8159449 ], + [ 6.9450801, 46.8160167 ], + [ 6.9448525, 46.816099 ], + [ 6.9446332, 46.8161913 ], + [ 6.9444231, 46.8162932 ], + [ 6.9442233, 46.8164044 ], + [ 6.9440344, 46.8165243 ], + [ 6.9439009, 46.8166193 ], + [ 6.9438158, 46.816683 ], + [ 6.9437722, 46.8167161 ], + [ 6.9436078, 46.8168519 ], + [ 6.9434566, 46.8169948 ], + [ 6.9433194, 46.8171442 ], + [ 6.9431967, 46.8172994 ], + [ 6.9430891, 46.8174598 ], + [ 6.9429969, 46.8176246 ], + [ 6.9429207, 46.8177933 ], + [ 6.9428607, 46.817965 ], + [ 6.9428172, 46.8181391 ], + [ 6.9427903, 46.8183147 ], + [ 6.9427803, 46.8184911 ], + [ 6.9427871, 46.8186677 ], + [ 6.9428107, 46.8188435 ], + [ 6.942851, 46.8190179 ], + [ 6.9429078, 46.8191902 ], + [ 6.9429809, 46.8193595 ], + [ 6.9430700000000005, 46.8195251 ], + [ 6.9431747, 46.8196864 ], + [ 6.9432945, 46.8198427 ], + [ 6.943429, 46.8199933 ], + [ 6.9435775, 46.8201375 ], + [ 6.9437394, 46.8202747 ], + [ 6.9439141, 46.8204043 ], + [ 6.9440077, 46.8204672 ], + [ 6.9440939, 46.8205233 ], + [ 6.944187, 46.8205819 ], + [ 6.9443848, 46.8206948 ], + [ 6.944593, 46.8207986 ], + [ 6.9448106, 46.8208928 ], + [ 6.9450367, 46.820977 ], + [ 6.9452703, 46.8210509 ], + [ 6.9455105, 46.8211141 ], + [ 6.9457562, 46.8211665 ], + [ 6.9460064, 46.8212077 ], + [ 6.9462600000000005, 46.8212375 ], + [ 6.9465158, 46.8212559 ], + [ 6.9467729, 46.8212628 ], + [ 6.94703, 46.8212582 ], + [ 6.9472862, 46.8212419 ], + [ 6.9475403, 46.8212143 ], + [ 6.9477912, 46.8211753 ], + [ 6.9480378, 46.8211251 ], + [ 6.9482792, 46.8210639 ], + [ 6.9485142, 46.820992 ], + [ 6.9487418, 46.8209097 ], + [ 6.9489611, 46.8208174 ], + [ 6.9491712, 46.8207155 ], + [ 6.949371, 46.8206043 ], + [ 6.9495599, 46.8204844 ], + [ 6.9496365, 46.820431 ], + [ 6.9497241, 46.8203682 ], + [ 6.9498245999999995, 46.8202935 ], + [ 6.949989, 46.8201576 ], + [ 6.9501402, 46.8200147 ], + [ 6.9502774, 46.8198654 ], + [ 6.9504, 46.8197101 ], + [ 6.9505077, 46.8195498 ], + [ 6.9505998, 46.8193849 ], + [ 6.950676, 46.8192162 ], + [ 6.950736, 46.8190445 ], + [ 6.9507795, 46.8188704 ], + [ 6.9508063, 46.8186948 ], + [ 6.9508163, 46.8185183 ], + [ 6.9508095, 46.8183418 ], + [ 6.9507859, 46.818166 ], + [ 6.9507455, 46.8179916 ], + [ 6.9506887, 46.8178193 ], + [ 6.9506155, 46.81765 ], + [ 6.9505264, 46.8174844 ], + [ 6.9504217, 46.8173231 ], + [ 6.9503018999999995, 46.8171668 ], + [ 6.9501674, 46.8170163 ], + [ 6.9500189, 46.8168721 ], + [ 6.9498569, 46.8167349 ], + [ 6.9496823, 46.8166052 ], + [ 6.9495701, 46.8165303 ], + [ 6.9494814, 46.8164733 ], + [ 6.9494069, 46.8164268 ], + [ 6.9492091, 46.8163139 ], + [ 6.9490009, 46.8162101 ], + [ 6.9487833, 46.8161159 ], + [ 6.9485572, 46.816031699999996 ], + [ 6.9483236, 46.8159578 ], + [ 6.9480834, 46.8158946 ], + [ 6.9478378, 46.8158423 ], + [ 6.9475876, 46.8158011 ], + [ 6.9473341, 46.8157713 ], + [ 6.9470782, 46.8157528 ], + [ 6.9468212, 46.8157459 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00026", + "country" : "CHE", + "name" : [ + { + "text" : "Hôpital régonal HIB Payerne", + "lang" : "de-CH" + }, + { + "text" : "Hôpital régonal HIB Payerne", + "lang" : "fr-CH" + }, + { + "text" : "Hôpital régonal HIB Payerne", + "lang" : "it-CH" + }, + { + "text" : "Hôpital régonal HIB Payerne", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kantonspolizei Waadt", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale vaudoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Vaud", + "lang" : "it-CH" + }, + { + "text" : "Vaud Cantonal Police", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.pcv@vd.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.0132134, 46.3802031 ], + [ 7.013117, 46.3813974 ], + [ 7.0129258, 46.3824042 ], + [ 7.0140273, 46.3838324 ], + [ 7.0156776, 46.3857322 ], + [ 7.0164676, 46.3869433 ], + [ 7.0167901, 46.3872575 ], + [ 7.0168051, 46.3880042 ], + [ 7.0165861, 46.3884217 ], + [ 7.0164537, 46.3887199 ], + [ 7.0172043, 46.3894981 ], + [ 7.0180655, 46.3899178 ], + [ 7.0190822, 46.3899207 ], + [ 7.0194909, 46.3901912 ], + [ 7.0198802, 46.3901171 ], + [ 7.020533, 46.3895815 ], + [ 7.0213103, 46.3897634 ], + [ 7.0225208, 46.3897517 ], + [ 7.0238823, 46.3898754 ], + [ 7.0253066, 46.3901181 ], + [ 7.0263608, 46.3908075 ], + [ 7.0270951, 46.3908389 ], + [ 7.0269092, 46.3903327 ], + [ 7.0261845, 46.3883591 ], + [ 7.0252189, 46.3874614 ], + [ 7.0250813, 46.3857445 ], + [ 7.0246088, 46.3853101 ], + [ 7.0248406, 46.3849223 ], + [ 7.0288952, 46.384382 ], + [ 7.0309288, 46.3843138 ], + [ 7.032116, 46.3844359 ], + [ 7.0327206, 46.3845874 ], + [ 7.0332333, 46.3853791 ], + [ 7.0345679, 46.386144 ], + [ 7.03569, 46.3864611 ], + [ 7.0369663, 46.3863145 ], + [ 7.0377432, 46.3863766 ], + [ 7.0385432, 46.3864838 ], + [ 7.0392991, 46.3865746 ], + [ 7.0398402, 46.3865316 ], + [ 7.0404036, 46.3862799 ], + [ 7.0405575, 46.3858621 ], + [ 7.0404522, 46.3855037 ], + [ 7.0402383, 46.3852493 ], + [ 7.0371132, 46.3840319 ], + [ 7.0365201, 46.3823287 ], + [ 7.0367811, 46.3821956 ], + [ 7.0370696, 46.3811513 ], + [ 7.0367932, 46.3805692 ], + [ 7.0360626, 46.3798802 ], + [ 7.0357416, 46.379521 ], + [ 7.0335841, 46.3789781 ], + [ 7.0326804, 46.3783343 ], + [ 7.030998, 46.3778812 ], + [ 7.0292503, 46.3774737 ], + [ 7.0276529, 46.377305 ], + [ 7.0263945, 46.3778537 ], + [ 7.0255464, 46.3786269 ], + [ 7.0233537, 46.3798 ], + [ 7.0232822, 46.3806508 ], + [ 7.0242087, 46.3810266 ], + [ 7.0242183, 46.3826585 ], + [ 7.0245054, 46.3847285 ], + [ 7.023552, 46.3849643 ], + [ 7.0219776, 46.3844818 ], + [ 7.0198878, 46.3835808 ], + [ 7.0184013, 46.3828448 ], + [ 7.0172565, 46.3827974 ], + [ 7.0141026, 46.3811834 ], + [ 7.0132134, 46.3802031 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00014", + "country" : "CHE", + "name" : [ + { + "text" : "Tour de Famelon", + "lang" : "de-CH" + }, + { + "text" : "Tour de Famelon", + "lang" : "fr-CH" + }, + { + "text" : "Tour de Famelon", + "lang" : "it-CH" + }, + { + "text" : "Tour de Famelon", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "startDateTime" : "2024-11-15T00:00:00+01:00", + "endDateTime" : "2025-04-15T00:00:00+02:00" + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Generaldirektion für Umwelt", + "lang" : "de-CH" + }, + { + "text" : "Direction générale de l'environnement", + "lang" : "fr-CH" + }, + { + "text" : "Direzione generale dell'Ambiente", + "lang" : "it-CH" + }, + { + "text" : "Environment Department", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.dge@vd.ch", + "phone" : "0041213164422", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.0764332, 47.4194337 ], + [ 7.0764287, 47.4192924 ], + [ 7.0764133, 47.4191516 ], + [ 7.0763871, 47.4190114 ], + [ 7.0763501, 47.4188724 ], + [ 7.0763025, 47.4187349 ], + [ 7.0762443, 47.4185993 ], + [ 7.0761757, 47.4184659 ], + [ 7.0760969, 47.4183352 ], + [ 7.0760082, 47.4182074 ], + [ 7.0759097, 47.4180829 ], + [ 7.0758018, 47.4179622 ], + [ 7.0756847, 47.4178454 ], + [ 7.0755588, 47.4177329 ], + [ 7.0754244, 47.4176251 ], + [ 7.0752818, 47.4175221 ], + [ 7.0751315, 47.4174244 ], + [ 7.0749738, 47.4173322 ], + [ 7.0748093, 47.4172457 ], + [ 7.0746383, 47.4171651 ], + [ 7.0744614, 47.4170907 ], + [ 7.0742789, 47.4170228 ], + [ 7.0740915, 47.4169613 ], + [ 7.0738996, 47.4169067 ], + [ 7.0737037, 47.4168589 ], + [ 7.0735044, 47.4168181 ], + [ 7.0733023, 47.4167845 ], + [ 7.0730978, 47.4167581 ], + [ 7.0728916, 47.416739 ], + [ 7.0726842, 47.4167273 ], + [ 7.0724762, 47.4167229 ], + [ 7.0722681, 47.416726 ], + [ 7.0720605, 47.4167364 ], + [ 7.0718541, 47.4167541 ], + [ 7.0716493, 47.4167792 ], + [ 7.0714467, 47.4168115 ], + [ 7.0712468, 47.416851 ], + [ 7.0710503, 47.4168975 ], + [ 7.0708577, 47.4169509 ], + [ 7.0706694, 47.4170112 ], + [ 7.070486, 47.417078 ], + [ 7.070308, 47.4171512 ], + [ 7.070136, 47.4172307 ], + [ 7.0699703, 47.4173161 ], + [ 7.0698114, 47.4174073 ], + [ 7.0696597, 47.4175041 ], + [ 7.0695157, 47.4176061 ], + [ 7.0693798, 47.4177131 ], + [ 7.0692523, 47.4178247 ], + [ 7.0691337, 47.4179408 ], + [ 7.0690241, 47.4180609 ], + [ 7.0689239, 47.4181847 ], + [ 7.0688334, 47.4183119 ], + [ 7.0687529, 47.4184422 ], + [ 7.0686825, 47.4185751 ], + [ 7.0686224, 47.4187104 ], + [ 7.0685729, 47.4188476 ], + [ 7.068534, 47.4189863 ], + [ 7.0685058, 47.4191263 ], + [ 7.0684885, 47.4192671 ], + [ 7.0684821, 47.4194082 ], + [ 7.0684866, 47.4195495 ], + [ 7.0685019, 47.4196903 ], + [ 7.0685281, 47.4198305 ], + [ 7.0685651, 47.4199695 ], + [ 7.0686127, 47.420107 ], + [ 7.0686709, 47.4202426 ], + [ 7.0687395, 47.420376 ], + [ 7.0688182, 47.4205068 ], + [ 7.0689069, 47.4206346 ], + [ 7.0690054, 47.420759 ], + [ 7.0691133, 47.4208798 ], + [ 7.0692304, 47.4209966 ], + [ 7.0693563, 47.4211091 ], + [ 7.0694907, 47.4212169 ], + [ 7.0696333, 47.4213199 ], + [ 7.0697836, 47.4214176 ], + [ 7.0699413, 47.4215098 ], + [ 7.0701058, 47.4215964 ], + [ 7.0702768, 47.4216769 ], + [ 7.0704537, 47.4217513 ], + [ 7.0706362, 47.4218193 ], + [ 7.0708237, 47.4218807 ], + [ 7.0710156, 47.4219354 ], + [ 7.0712115, 47.4219832 ], + [ 7.0714108, 47.4220239 ], + [ 7.0716129, 47.4220576 ], + [ 7.0718174, 47.422084 ], + [ 7.0720237, 47.4221031 ], + [ 7.0722311, 47.4221148 ], + [ 7.0724391, 47.4221192 ], + [ 7.0726472, 47.4221161 ], + [ 7.0728548, 47.4221057 ], + [ 7.0730613, 47.4220879 ], + [ 7.0732661, 47.4220628 ], + [ 7.0734688, 47.4220305 ], + [ 7.0736686, 47.421991 ], + [ 7.0738651, 47.4219445 ], + [ 7.0740578, 47.4218911 ], + [ 7.0742461, 47.4218309 ], + [ 7.0744295, 47.421764 ], + [ 7.0746074, 47.4216908 ], + [ 7.0747795, 47.4216113 ], + [ 7.0749452, 47.4215259 ], + [ 7.0751041, 47.4214346 ], + [ 7.0752558, 47.4213379 ], + [ 7.0753998, 47.4212358 ], + [ 7.0755357, 47.4211289 ], + [ 7.0756631, 47.4210172 ], + [ 7.0757818, 47.4209012 ], + [ 7.0758914, 47.4207811 ], + [ 7.0759915, 47.4206572 ], + [ 7.076082, 47.42053 ], + [ 7.0761626, 47.4203998 ], + [ 7.0762329, 47.4202668 ], + [ 7.076293, 47.4201316 ], + [ 7.0763425, 47.4199944 ], + [ 7.0763814, 47.4198556 ], + [ 7.0764095, 47.4197156 ], + [ 7.0764268, 47.4195749 ], + [ 7.0764332, 47.4194337 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "POR0001", + "country" : "CHE", + "name" : [ + { + "text" : "Prison de Porrentruy", + "lang" : "de-CH" + }, + { + "text" : "Prison de Porrentruy", + "lang" : "fr-CH" + }, + { + "text" : "Prison de Porrentruy", + "lang" : "it-CH" + }, + { + "text" : "Prison de Porrentruy", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Service juridique", + "lang" : "de-CH" + }, + { + "text" : "Service juridique", + "lang" : "fr-CH" + }, + { + "text" : "Service juridique", + "lang" : "it-CH" + }, + { + "text" : "Service juridique", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Service juridique", + "lang" : "de-CH" + }, + { + "text" : "Service juridique", + "lang" : "fr-CH" + }, + { + "text" : "Service juridique", + "lang" : "it-CH" + }, + { + "text" : "Service juridique", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.jura.ch/fr/Autorites/Administration/DIN/JUR/Prison-de-Porrentruy/Prison-de-Porrentruy.html", + "email" : "secr.jur@jura.ch", + "phone" : "0041324205630", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.2406198, 47.1188334 ], + [ 7.2458534, 47.122256 ], + [ 7.2483633, 47.1238146 ], + [ 7.2509875, 47.1252828 ], + [ 7.2537191, 47.1266568 ], + [ 7.2565509, 47.127933 ], + [ 7.2594753, 47.1291079 ], + [ 7.2624846, 47.1301784 ], + [ 7.2655708, 47.1311417 ], + [ 7.2687256, 47.1319952 ], + [ 7.2719407, 47.1327367 ], + [ 7.2752076, 47.1333641 ], + [ 7.2785174999999995, 47.1338758 ], + [ 7.2818617, 47.1342705 ], + [ 7.2852312999999995, 47.1345471 ], + [ 7.2886173, 47.1347049 ], + [ 7.2920107, 47.1347434 ], + [ 7.2954025, 47.1346625 ], + [ 7.2987836999999995, 47.1344625 ], + [ 7.3021453, 47.1341439 ], + [ 7.3054783, 47.1337075 ], + [ 7.308774, 47.1331545 ], + [ 7.3120235000000005, 47.1324863 ], + [ 7.3152181, 47.1317049 ], + [ 7.3183495, 47.1308121 ], + [ 7.3214093, 47.1298104 ], + [ 7.3243893, 47.1287025 ], + [ 7.3272817, 47.1274913 ], + [ 7.3300788, 47.12618 ], + [ 7.3327731, 47.124772 ], + [ 7.3353575, 47.1232713 ], + [ 7.3378251, 47.1216816 ], + [ 7.3401695, 47.1200074 ], + [ 7.3423843, 47.1182529 ], + [ 7.3444637, 47.1164229 ], + [ 7.3464022, 47.1145221 ], + [ 7.3481946, 47.1125558 ], + [ 7.3498363, 47.1105291 ], + [ 7.3513228999999995, 47.1084473 ], + [ 7.3526504, 47.106316 ], + [ 7.3538153, 47.1041409 ], + [ 7.3548146, 47.1019277 ], + [ 7.3556457, 47.0996823 ], + [ 7.3563064, 47.0974106 ], + [ 7.3567948, 47.0951188 ], + [ 7.3571098, 47.0928128 ], + [ 7.3572506, 47.0904988 ], + [ 7.3572167, 47.0881829 ], + [ 7.3570084, 47.0858713 ], + [ 7.3566261, 47.08357 ], + [ 7.356071, 47.0812853 ], + [ 7.3553444, 47.0790231 ], + [ 7.3544484, 47.0767894 ], + [ 7.3533854, 47.0745902 ], + [ 7.3521581, 47.0724313 ], + [ 7.3507698999999995, 47.0703184 ], + [ 7.3492244, 47.0682571 ], + [ 7.3475259, 47.0662528 ], + [ 7.3456787, 47.064311 ], + [ 7.3436877, 47.0624366 ], + [ 7.3415584, 47.0606348 ], + [ 7.3392963, 47.0589101 ], + [ 7.3369074, 47.0572673 ], + [ 7.3316744, 47.0538488 ], + [ 7.3291225, 47.0522669 ], + [ 7.3264533, 47.0507783 ], + [ 7.3236738, 47.0493872 ], + [ 7.3207917, 47.0480974 ], + [ 7.3178149999999995, 47.0469123 ], + [ 7.3147517, 47.0458353 ], + [ 7.3116103, 47.0448692 ], + [ 7.3083994, 47.0440168 ], + [ 7.3051276, 47.0432803 ], + [ 7.3018041, 47.0426618 ], + [ 7.2984378, 47.0421629 ], + [ 7.2950379, 47.041785 ], + [ 7.2916139, 47.0415292 ], + [ 7.2881749, 47.0413962 ], + [ 7.2847305, 47.0413862 ], + [ 7.2812901, 47.0414994 ], + [ 7.277863, 47.0417354 ], + [ 7.2744586, 47.0420937 ], + [ 7.2710863, 47.0425731 ], + [ 7.2677552, 47.0431724 ], + [ 7.2644745, 47.04389 ], + [ 7.2612531, 47.0447238 ], + [ 7.2580999, 47.0456717 ], + [ 7.2550234, 47.046731 ], + [ 7.2520322, 47.0478988 ], + [ 7.2491343, 47.049172 ], + [ 7.2463377, 47.050547 ], + [ 7.2436501, 47.0520201 ], + [ 7.2410789, 47.0535873 ], + [ 7.238631, 47.0552442 ], + [ 7.2363132, 47.0569863 ], + [ 7.2341319, 47.058809 ], + [ 7.2320929, 47.0607071 ], + [ 7.230202, 47.0626755 ], + [ 7.2284643, 47.0647088 ], + [ 7.2268846, 47.0668014 ], + [ 7.2254673, 47.0689476 ], + [ 7.2242161, 47.0711416 ], + [ 7.2231347, 47.0733773 ], + [ 7.2222259, 47.0756485 ], + [ 7.2214923, 47.0779492 ], + [ 7.2209359, 47.0802729 ], + [ 7.2205582, 47.0826133 ], + [ 7.2203604, 47.0849641 ], + [ 7.2203429, 47.0873186 ], + [ 7.2205059, 47.0896706 ], + [ 7.2208489, 47.0920135 ], + [ 7.2213709999999995, 47.0943409 ], + [ 7.2220708, 47.0966465 ], + [ 7.2229465, 47.0989239 ], + [ 7.2239955, 47.1011669 ], + [ 7.2252151, 47.1033693 ], + [ 7.226602, 47.1055251 ], + [ 7.2281523, 47.1076283 ], + [ 7.2298619, 47.1096733 ], + [ 7.231726, 47.1116543 ], + [ 7.2337395, 47.113566 ], + [ 7.235897, 47.1154031 ], + [ 7.2381926, 47.1171605 ], + [ 7.2406198, 47.1188334 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZP001", + "country" : "CHE", + "name" : [ + { + "text" : "LSZP Biel-Kappelen", + "lang" : "de-CH" + }, + { + "text" : "LSZP Biel-Kappelen", + "lang" : "fr-CH" + }, + { + "text" : "LSZP Biel-Kappelen", + "lang" : "it-CH" + }, + { + "text" : "LSZP Biel-Kappelen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Flugplatz Biel-Kappelen", + "lang" : "de-CH" + }, + { + "text" : "Flugplatz Biel-Kappelen", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatz Biel-Kappelen", + "lang" : "it-CH" + }, + { + "text" : "Flugplatz Biel-Kappelen", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Paul Misteli", + "lang" : "de-CH" + }, + { + "text" : "Paul Misteli", + "lang" : "fr-CH" + }, + { + "text" : "Paul Misteli", + "lang" : "it-CH" + }, + { + "text" : "Paul Misteli", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.lszp.ch", + "email" : "misteli.p@bluewin.ch", + "phone" : "0041791362839", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P02DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.6846623, 46.5145991 ], + [ 8.6900702, 46.5136808 ], + [ 8.690394, 46.514554 ], + [ 8.6911562, 46.5144314 ], + [ 8.6912205, 46.5143398 ], + [ 8.691414, 46.5143098 ], + [ 8.6913815, 46.5141455 ], + [ 8.6913159, 46.5140122 ], + [ 8.6912448, 46.513869 ], + [ 8.6912, 46.5137903 ], + [ 8.6911258, 46.5137399 ], + [ 8.6910216, 46.5136834 ], + [ 8.6908936, 46.5136731 ], + [ 8.6908509, 46.5135482 ], + [ 8.7000145, 46.5119915 ], + [ 8.7026643, 46.5111766 ], + [ 8.7024709, 46.5106479 ], + [ 8.7024891, 46.510367 ], + [ 8.6980941, 46.5111122 ], + [ 8.6979101, 46.5107643 ], + [ 8.6977683, 46.5103259 ], + [ 8.6976041, 46.509877 ], + [ 8.6971116, 46.509994 ], + [ 8.6977345, 46.5111729 ], + [ 8.6957992, 46.5115002 ], + [ 8.695446, 46.5108267 ], + [ 8.6948046, 46.5109804 ], + [ 8.6951476, 46.5116109 ], + [ 8.6842645, 46.5134537 ], + [ 8.6846623, 46.5145991 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSPM002", + "country" : "CHE", + "name" : [ + { + "text" : "LSPM Ambri Airport (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSPM Ambri Airport (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSPM Ambri Airport (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSPM Ambri Airport (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "HELI REZIA SA", + "lang" : "de-CH" + }, + { + "text" : "HELI REZIA SA", + "lang" : "fr-CH" + }, + { + "text" : "HELI REZIA SA", + "lang" : "it-CH" + }, + { + "text" : "HELI REZIA SA", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Capo d'aerodromo", + "lang" : "de-CH" + }, + { + "text" : "Capo d'aerodromo", + "lang" : "fr-CH" + }, + { + "text" : "Capo d'aerodromo", + "lang" : "it-CH" + }, + { + "text" : "Capo d'aerodromo", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.helirezia.ch/", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.5156755, 46.4422245 ], + [ 8.5156673, 46.4420833 ], + [ 8.5156485, 46.4419426 ], + [ 8.5156191, 46.4418028 ], + [ 8.515579, 46.4416642 ], + [ 8.5155286, 46.4415273 ], + [ 8.5154679, 46.4413924 ], + [ 8.515397, 46.4412599 ], + [ 8.515316200000001, 46.4411301 ], + [ 8.5152257, 46.4410034 ], + [ 8.5151257, 46.4408802 ], + [ 8.5150166, 46.4407608 ], + [ 8.5148985, 46.4406454 ], + [ 8.5147719, 46.4405345 ], + [ 8.514637, 46.4404284 ], + [ 8.514494299999999, 46.4403272 ], + [ 8.5143442, 46.4402314 ], + [ 8.514187, 46.4401411 ], + [ 8.5140231, 46.4400566 ], + [ 8.5138531, 46.4399782 ], + [ 8.5136774, 46.439906 ], + [ 8.5134965, 46.4398403 ], + [ 8.5133109, 46.4397813 ], + [ 8.513121, 46.439729 ], + [ 8.5129274, 46.4396837 ], + [ 8.5127307, 46.4396454 ], + [ 8.5125313, 46.4396143 ], + [ 8.5123299, 46.4395904 ], + [ 8.5121269, 46.4395739 ], + [ 8.511923, 46.4395648 ], + [ 8.5117186, 46.439563 ], + [ 8.5115144, 46.4395686 ], + [ 8.5113109, 46.4395816 ], + [ 8.5111087, 46.439602 ], + [ 8.5109082, 46.4396296 ], + [ 8.5107102, 46.4396645 ], + [ 8.5105151, 46.4397065 ], + [ 8.5103234, 46.4397554 ], + [ 8.5101356, 46.4398113 ], + [ 8.5099524, 46.4398738 ], + [ 8.5097741, 46.4399429 ], + [ 8.5096013, 46.4400184 ], + [ 8.5094345, 46.4401 ], + [ 8.5092741, 46.4401875 ], + [ 8.5091205, 46.4402808 ], + [ 8.5089742, 46.4403794 ], + [ 8.5088355, 46.4404832 ], + [ 8.5087049, 46.4405919 ], + [ 8.5085827, 46.4407051 ], + [ 8.5084693, 46.4408227 ], + [ 8.5083649, 46.4409441 ], + [ 8.5082698, 46.4410692 ], + [ 8.5081844, 46.4411975 ], + [ 8.5081087, 46.4413288 ], + [ 8.5080431, 46.4414626 ], + [ 8.5079878, 46.4415986 ], + [ 8.5079428, 46.4417364 ], + [ 8.5079083, 46.4418757 ], + [ 8.5078843, 46.442016 ], + [ 8.5078711, 46.442157 ], + [ 8.5078685, 46.4422983 ], + [ 8.5078767, 46.4424394 ], + [ 8.5078955, 46.4425801 ], + [ 8.5079249, 46.4427199 ], + [ 8.5079649, 46.4428585 ], + [ 8.5080153, 46.4429954 ], + [ 8.508075999999999, 46.4431303 ], + [ 8.5081469, 46.4432629 ], + [ 8.5082276, 46.4433926 ], + [ 8.5083181, 46.4435193 ], + [ 8.5084181, 46.4436426 ], + [ 8.5085273, 46.443762 ], + [ 8.5086453, 46.4438773 ], + [ 8.5087719, 46.4439883 ], + [ 8.5089068, 46.4440944 ], + [ 8.5090495, 46.4441956 ], + [ 8.5091997, 46.4442914 ], + [ 8.5093569, 46.4443817 ], + [ 8.5095207, 46.4444662 ], + [ 8.5096907, 46.4445446 ], + [ 8.5098664, 46.4446168 ], + [ 8.5100474, 46.4446825 ], + [ 8.510233, 46.4447416 ], + [ 8.5104229, 46.4447939 ], + [ 8.5106165, 46.4448392 ], + [ 8.5108132, 46.4448775 ], + [ 8.5110126, 46.4449086 ], + [ 8.5112141, 46.4449324 ], + [ 8.5114171, 46.4449489 ], + [ 8.511621, 46.4449581 ], + [ 8.5118254, 46.4449599 ], + [ 8.5120296, 46.4449542 ], + [ 8.5122332, 46.4449412 ], + [ 8.5124354, 46.4449209 ], + [ 8.5126359, 46.4448932 ], + [ 8.5128339, 46.4448584 ], + [ 8.5130291, 46.4448164 ], + [ 8.5132208, 46.4447674 ], + [ 8.5134085, 46.4447116 ], + [ 8.5135918, 46.444649 ], + [ 8.5137701, 46.4445799 ], + [ 8.5139429, 46.4445044 ], + [ 8.5141097, 46.4444228 ], + [ 8.5142701, 46.4443353 ], + [ 8.5144237, 46.444242 ], + [ 8.51457, 46.4441434 ], + [ 8.5147087, 46.444039599999996 ], + [ 8.5148393, 46.4439309 ], + [ 8.5149615, 46.4438176 ], + [ 8.5150749, 46.4437001 ], + [ 8.5151793, 46.4435786 ], + [ 8.5152743, 46.4434536 ], + [ 8.5153598, 46.4433252 ], + [ 8.5154354, 46.4431939 ], + [ 8.515501, 46.4430601 ], + [ 8.5155563, 46.4429241 ], + [ 8.5156013, 46.4427863 ], + [ 8.5156358, 46.442647 ], + [ 8.5156597, 46.4425067 ], + [ 8.5156729, 46.4423657 ], + [ 8.5156755, 46.4422245 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0099", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Robiei", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Robiei", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Robiei", + "lang" : "it-CH" + }, + { + "text" : "Substation Robiei", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.0565742, 46.9027931 ], + [ 7.0564078, 46.9024217 ], + [ 7.0562599, 46.9024667 ], + [ 7.0558756, 46.9025225 ], + [ 7.0556835, 46.9025446 ], + [ 7.0553832, 46.9025436 ], + [ 7.0550077, 46.9025253 ], + [ 7.054566, 46.9024668 ], + [ 7.054207, 46.9024313 ], + [ 7.0539571, 46.902379 ], + [ 7.0535658, 46.9022693 ], + [ 7.0526418, 46.9019807 ], + [ 7.0518341, 46.901727 ], + [ 7.0515428, 46.9016233 ], + [ 7.0513015, 46.9015253 ], + [ 7.0511019, 46.9014562 ], + [ 7.050844, 46.9013925 ], + [ 7.0506524, 46.9013348 ], + [ 7.0504025, 46.9013054 ], + [ 7.0501688, 46.9012989 ], + [ 7.0499935, 46.9012641 ], + [ 7.0497853, 46.9012349 ], + [ 7.04961, 46.9012057 ], + [ 7.049368, 46.9012163 ], + [ 7.0487747, 46.9013569 ], + [ 7.0468697, 46.9017386 ], + [ 7.0450558, 46.9021205 ], + [ 7.0445793, 46.9022216 ], + [ 7.044346, 46.9022721 ], + [ 7.0429244, 46.9026155 ], + [ 7.0415539, 46.9029132 ], + [ 7.0408346, 46.9031218 ], + [ 7.0405839, 46.9032009 ], + [ 7.0403577, 46.9032743 ], + [ 7.0401735, 46.9033365 ], + [ 7.0400647, 46.9034046 ], + [ 7.0399393, 46.9035125 ], + [ 7.0357162, 46.9068139 ], + [ 7.0332135, 46.9089683 ], + [ 7.0320202, 46.9100029 ], + [ 7.0306004, 46.9112535 ], + [ 7.029508, 46.9121799 ], + [ 7.0285424, 46.9129242 ], + [ 7.0275184, 46.9136854 ], + [ 7.0269812, 46.9140829 ], + [ 7.0265108, 46.9144465 ], + [ 7.0260328, 46.9147302 ], + [ 7.0246909, 46.9156271 ], + [ 7.0234154, 46.9164331 ], + [ 7.0232398, 46.9165408 ], + [ 7.02313, 46.916626 ], + [ 7.0230628, 46.9167285 ], + [ 7.0229853, 46.9169908 ], + [ 7.022749, 46.9174066 ], + [ 7.0225171, 46.9182106 ], + [ 7.0224906, 46.9183531 ], + [ 7.022498, 46.9184617 ], + [ 7.0228377, 46.9187768 ], + [ 7.0231531, 46.9190518 ], + [ 7.0234274, 46.9192356 ], + [ 7.0237847, 46.9194023 ], + [ 7.0247328, 46.9198853 ], + [ 7.0255569, 46.9201678 ], + [ 7.0262134, 46.9204784 ], + [ 7.0267876, 46.9207145 ], + [ 7.0273781, 46.920973599999996 ], + [ 7.0278187, 46.921192 ], + [ 7.0284504, 46.9215367 ], + [ 7.0291076, 46.9218702 ], + [ 7.0299471, 46.9222898 ], + [ 7.0304129, 46.9225484 ], + [ 7.0311109, 46.9229104 ], + [ 7.0313685, 46.9231282 ], + [ 7.0320003, 46.9234672 ], + [ 7.0326739, 46.9238006 ], + [ 7.0331725, 46.9240707 ], + [ 7.0334636, 46.9242088 ], + [ 7.03383, 46.9243641 ], + [ 7.0340715, 46.9244392 ], + [ 7.0345548, 46.9245608 ], + [ 7.0348627, 46.9246417 ], + [ 7.0351461, 46.9247113 ], + [ 7.0356778, 46.9239541 ], + [ 7.0358121, 46.9238803 ], + [ 7.0360138, 46.9236869 ], + [ 7.0470186, 46.9148439 ], + [ 7.0580197, 46.9059999 ], + [ 7.0579873, 46.9059371 ], + [ 7.0579792, 46.9058058 ], + [ 7.0579394, 46.9056401 ], + [ 7.0577646, 46.905531 ], + [ 7.0575735, 46.9054162 ], + [ 7.0573744, 46.9052671 ], + [ 7.0572831, 46.905187 ], + [ 7.0571759, 46.9050382 ], + [ 7.0570774, 46.9048039 ], + [ 7.0570717, 46.9044613 ], + [ 7.0571223, 46.9043759 ], + [ 7.0571392, 46.9043133 ], + [ 7.0573487, 46.9041426 ], + [ 7.0570921, 46.9038964 ], + [ 7.0569852, 46.9036963 ], + [ 7.0568544, 46.9032963 ], + [ 7.0565742, 46.9027931 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "WZV0032", + "country" : "CHE", + "name" : [ + { + "text" : "Wasser- und Zugvogelreservat Salavaux", + "lang" : "de-CH" + }, + { + "text" : "Réserve d'oiseaux d'eau et de migrateurs Salavaux", + "lang" : "fr-CH" + }, + { + "text" : "Riserva di uccelli acquatici e migratori Salavaux", + "lang" : "it-CH" + }, + { + "text" : "Water Bird and Migratory Bird Reserves Salavaux", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6275611, 47.4906206 ], + [ 7.6277563, 47.4906151 ], + [ 7.6278062, 47.4905557 ], + [ 7.6279181, 47.4904592 ], + [ 7.6281524, 47.4903983 ], + [ 7.6282806, 47.4903807 ], + [ 7.628453, 47.4903743 ], + [ 7.6287117, 47.490369 ], + [ 7.6288936, 47.4903399 ], + [ 7.6289158, 47.4902762 ], + [ 7.6290178, 47.4899833 ], + [ 7.629115, 47.4897042 ], + [ 7.6292196, 47.4894036 ], + [ 7.6287631000000005, 47.489362 ], + [ 7.6287859000000005, 47.4893005 ], + [ 7.6284273, 47.4895851 ], + [ 7.6282043, 47.4897626 ], + [ 7.6279718, 47.4899497 ], + [ 7.6276530000000005, 47.4904398 ], + [ 7.6275729, 47.4905982 ], + [ 7.6275611, 47.4906206 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns061", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Ermitage - Chilchholz", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Ermitage - Chilchholz", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Ermitage - Chilchholz", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Ermitage - Chilchholz", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7094796, 47.4107256 ], + [ 7.7094084, 47.4107659 ], + [ 7.7092562000000004, 47.410913 ], + [ 7.7091152, 47.4111011 ], + [ 7.7091078, 47.4111078 ], + [ 7.7090789, 47.4111559 ], + [ 7.7090371, 47.4112237 ], + [ 7.7090367, 47.4112295 ], + [ 7.70904, 47.4112359 ], + [ 7.7090663, 47.4112849 ], + [ 7.7091987, 47.4113726 ], + [ 7.7093279, 47.4117215 ], + [ 7.709407, 47.4121255 ], + [ 7.7094778999999996, 47.4122156 ], + [ 7.709563, 47.4123478 ], + [ 7.709605, 47.4124741 ], + [ 7.709625, 47.4125375 ], + [ 7.7096378, 47.4125484 ], + [ 7.709702, 47.4126033 ], + [ 7.709808, 47.412644 ], + [ 7.7099269, 47.4126611 ], + [ 7.7099705, 47.4127868 ], + [ 7.709988, 47.4129368 ], + [ 7.709973, 47.4129855 ], + [ 7.7098493, 47.4130549 ], + [ 7.7099108, 47.4131649 ], + [ 7.7099462, 47.4133016 ], + [ 7.7099592, 47.4133941 ], + [ 7.7099966, 47.4136587 ], + [ 7.7100508, 47.4137819 ], + [ 7.7101915, 47.4139692 ], + [ 7.710378, 47.4142236 ], + [ 7.7104797, 47.4143476 ], + [ 7.7106403, 47.4144754 ], + [ 7.7107077, 47.414529 ], + [ 7.7107673, 47.4145864 ], + [ 7.7108852, 47.4146997 ], + [ 7.710897, 47.4147111 ], + [ 7.7110198, 47.4148291 ], + [ 7.7111979, 47.4149156 ], + [ 7.711351, 47.4149574 ], + [ 7.7115321, 47.4149588 ], + [ 7.7122009, 47.4148666 ], + [ 7.7122376, 47.4148634 ], + [ 7.712389, 47.4148505 ], + [ 7.7125496, 47.4148754 ], + [ 7.7125637000000005, 47.4148796 ], + [ 7.7128717, 47.4149715 ], + [ 7.7131336, 47.4150735 ], + [ 7.7133164, 47.4151629 ], + [ 7.7134575, 47.4152408 ], + [ 7.7136559, 47.4153506 ], + [ 7.7138789, 47.4154576 ], + [ 7.7141172000000005, 47.4155506 ], + [ 7.7142373, 47.4155958 ], + [ 7.7143083, 47.414181 ], + [ 7.7143125, 47.4140988 ], + [ 7.7143223, 47.4139761 ], + [ 7.7143393, 47.4137644 ], + [ 7.7143419, 47.4137338 ], + [ 7.7143459, 47.4136838 ], + [ 7.7143735, 47.4133401 ], + [ 7.7144957, 47.412768 ], + [ 7.7146928, 47.4124388 ], + [ 7.7149012, 47.4121593 ], + [ 7.7148607, 47.4120824 ], + [ 7.7145391, 47.4117154 ], + [ 7.7143456, 47.4114868 ], + [ 7.714252, 47.4114035 ], + [ 7.7141168, 47.4113254 ], + [ 7.7139118, 47.4112483 ], + [ 7.7137136, 47.4111772 ], + [ 7.7135104, 47.411088 ], + [ 7.7132806, 47.4109629 ], + [ 7.7131861, 47.410899 ], + [ 7.7131313, 47.4108619 ], + [ 7.712708, 47.4105407 ], + [ 7.7123597, 47.4102789 ], + [ 7.712049, 47.4100409 ], + [ 7.7117474999999995, 47.4098232 ], + [ 7.7117423, 47.4098194 ], + [ 7.7117373, 47.4098154 ], + [ 7.7117325, 47.4098114 ], + [ 7.7117279, 47.4098073 ], + [ 7.7117202, 47.4097999 ], + [ 7.7117132, 47.4097924 ], + [ 7.7117066, 47.4097845 ], + [ 7.7117007, 47.4097765 ], + [ 7.7117001, 47.4097756 ], + [ 7.7094549, 47.4098541 ], + [ 7.7094796, 47.4107256 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr015", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Schorenacher", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Schorenacher", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Schorenacher", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Schorenacher", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.6268122, 46.5473365 ], + [ 6.6265564999999995, 46.5473289 ], + [ 6.6263006, 46.5473328 ], + [ 6.6261102, 46.5473433 ], + [ 6.6260515, 46.5473452 ], + [ 6.6258213999999995, 46.5473587 ], + [ 6.6258092, 46.5473597 ], + [ 6.6257843, 46.5473617 ], + [ 6.6255314, 46.5473886 ], + [ 6.6252815, 46.547427 ], + [ 6.6252301, 46.5474363 ], + [ 6.6252183, 46.5474385 ], + [ 6.6250239, 46.5474787 ], + [ 6.6247834999999995, 46.5475392 ], + [ 6.6246681, 46.5475726 ], + [ 6.6246569, 46.5475761 ], + [ 6.624538, 46.5476138 ], + [ 6.624311, 46.5476954 ], + [ 6.6241354, 46.5477679 ], + [ 6.624125, 46.5477725 ], + [ 6.6240819, 46.5477916 ], + [ 6.6238723, 46.547893 ], + [ 6.6236728, 46.5480036 ], + [ 6.6235927, 46.5480523 ], + [ 6.6235781, 46.5480615 ], + [ 6.6234695, 46.5481322 ], + [ 6.6232926, 46.5482598 ], + [ 6.6232606, 46.548284699999996 ], + [ 6.6232476, 46.548295 ], + [ 6.6231151, 46.5484054 ], + [ 6.6229683999999995, 46.5485433 ], + [ 6.6229572, 46.5485546 ], + [ 6.6229526, 46.5485592 ], + [ 6.6228152, 46.5487082 ], + [ 6.6227597, 46.5487751 ], + [ 6.622678, 46.5488662 ], + [ 6.622555, 46.5490211 ], + [ 6.6224469, 46.5491812 ], + [ 6.6224149, 46.5492346 ], + [ 6.6222889, 46.5493272 ], + [ 6.6221245, 46.5494625 ], + [ 6.6219732, 46.549605 ], + [ 6.6218357999999995, 46.5497539 ], + [ 6.6217128, 46.5499088 ], + [ 6.6216047, 46.5500689 ], + [ 6.6215121, 46.5502335 ], + [ 6.6214352, 46.550402 ], + [ 6.6213745, 46.5505735 ], + [ 6.6213301, 46.5507474 ], + [ 6.6213024, 46.550923 ], + [ 6.6212914, 46.5510994 ], + [ 6.6212971, 46.551276 ], + [ 6.6213195, 46.5514519 ], + [ 6.6213584999999995, 46.5516264 ], + [ 6.6214141, 46.5517988 ], + [ 6.6214858, 46.5519683 ], + [ 6.6215735, 46.5521343 ], + [ 6.6216767, 46.5522959 ], + [ 6.621795, 46.5524525 ], + [ 6.6219279, 46.5526034 ], + [ 6.6220748, 46.552748 ], + [ 6.6220766, 46.5527496 ], + [ 6.6220824, 46.5527604 ], + [ 6.6220836, 46.5527626 ], + [ 6.62212, 46.5528275 ], + [ 6.6221252, 46.5528365 ], + [ 6.6221265, 46.5528387 ], + [ 6.6221795, 46.5529243 ], + [ 6.6221808, 46.5529264 ], + [ 6.6222258, 46.5529934 ], + [ 6.6222293, 46.5529984 ], + [ 6.6222308, 46.5530005 ], + [ 6.6222916, 46.5530837 ], + [ 6.6222932, 46.5530858 ], + [ 6.6223472, 46.5531542 ], + [ 6.6223515, 46.5531595 ], + [ 6.6223532, 46.5531615 ], + [ 6.6224148, 46.5532339 ], + [ 6.6224166, 46.5532359 ], + [ 6.6224834999999995, 46.5533091 ], + [ 6.6224859, 46.5533116 ], + [ 6.6224877, 46.5533136 ], + [ 6.6225578, 46.5533849 ], + [ 6.6225597, 46.5533868 ], + [ 6.6226307, 46.5534544 ], + [ 6.6226327, 46.5534562 ], + [ 6.6226362, 46.5534594 ], + [ 6.6227069, 46.5535224 ], + [ 6.622709, 46.5535242 ], + [ 6.6227862, 46.5535888 ], + [ 6.6227883, 46.5535906 ], + [ 6.6228007, 46.5536005 ], + [ 6.6228754, 46.5536589 ], + [ 6.6228776, 46.5536605 ], + [ 6.622953, 46.5537161 ], + [ 6.6229553, 46.5537177 ], + [ 6.6229782, 46.553734 ], + [ 6.6230484, 46.5537822 ], + [ 6.6230508, 46.5537838 ], + [ 6.6231385, 46.5538407 ], + [ 6.6231409, 46.5538423 ], + [ 6.6231612, 46.5538549 ], + [ 6.6232382, 46.5539424 ], + [ 6.6233851, 46.554087 ], + [ 6.6235454, 46.5542247 ], + [ 6.6237185, 46.5543548 ], + [ 6.6239035, 46.5544768 ], + [ 6.6239138, 46.5544832 ], + [ 6.6242108, 46.5546654 ], + [ 6.6243967, 46.5547725 ], + [ 6.6246033, 46.5548769 ], + [ 6.6248192, 46.5549717 ], + [ 6.6250437, 46.5550565 ], + [ 6.6252758, 46.5551311 ], + [ 6.6255144, 46.555195 ], + [ 6.6257586, 46.555248 ], + [ 6.6260072999999995, 46.5552899 ], + [ 6.6262594, 46.5553205 ], + [ 6.6265139, 46.555339599999996 ], + [ 6.6267697, 46.5553472 ], + [ 6.6270256, 46.5553433 ], + [ 6.6272806, 46.5553278 ], + [ 6.6275336, 46.5553008 ], + [ 6.6277835, 46.5552625 ], + [ 6.6280292, 46.555213 ], + [ 6.6282697, 46.5551525 ], + [ 6.6285039999999995, 46.5550813 ], + [ 6.628731, 46.5549997 ], + [ 6.6289498, 46.554908 ], + [ 6.6291594, 46.5548066 ], + [ 6.6293589, 46.554696 ], + [ 6.6295476, 46.5545766 ], + [ 6.6297245, 46.554449 ], + [ 6.629729, 46.5544455 ], + [ 6.629858, 46.5543457 ], + [ 6.630018, 46.5542138 ], + [ 6.6301692, 46.5540714 ], + [ 6.6303066, 46.5539224 ], + [ 6.6304296, 46.5537675 ], + [ 6.6305377, 46.5536074 ], + [ 6.6306303, 46.5534428 ], + [ 6.6307071, 46.5532743 ], + [ 6.6307678, 46.5531028 ], + [ 6.6308121, 46.5529288 ], + [ 6.6308399, 46.5527533 ], + [ 6.6308509, 46.5525768 ], + [ 6.6308454999999995, 46.5524124 ], + [ 6.6309013, 46.5522902 ], + [ 6.630962, 46.5521186 ], + [ 6.6310063, 46.5519447 ], + [ 6.631034, 46.5517691 ], + [ 6.631045, 46.5515927 ], + [ 6.6310448, 46.5515242 ], + [ 6.6310705, 46.5514633 ], + [ 6.6311312000000004, 46.5512917 ], + [ 6.6311755, 46.5511178 ], + [ 6.6312032, 46.5509422 ], + [ 6.6312142, 46.5507658 ], + [ 6.6312085, 46.5505892 ], + [ 6.631186, 46.5504133 ], + [ 6.631147, 46.5502388 ], + [ 6.6310914, 46.5500664 ], + [ 6.6310196, 46.5498969 ], + [ 6.6309319, 46.549731 ], + [ 6.6308287, 46.5495694 ], + [ 6.6307104, 46.5494128 ], + [ 6.6305775, 46.5492619 ], + [ 6.6304305, 46.5491173 ], + [ 6.6304283999999996, 46.5491153 ], + [ 6.6302779, 46.5489773 ], + [ 6.6301197, 46.5488416 ], + [ 6.6301037, 46.5488289 ], + [ 6.6296421, 46.5484054 ], + [ 6.6294833, 46.5482692 ], + [ 6.6293103, 46.548139 ], + [ 6.6291253, 46.548017 ], + [ 6.6289291, 46.5479036 ], + [ 6.6287226, 46.5477992 ], + [ 6.6285067, 46.5477044 ], + [ 6.6282822, 46.5476196 ], + [ 6.6280502, 46.547545 ], + [ 6.6278116, 46.5474811 ], + [ 6.6275674, 46.5474281 ], + [ 6.6273188, 46.5473862 ], + [ 6.6270667, 46.5473556 ], + [ 6.6268122, 46.5473365 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00035", + "country" : "CHE", + "name" : [ + { + "text" : "Centre de la police cantonale (Blécherette)", + "lang" : "de-CH" + }, + { + "text" : "Centre de la police cantonale (Blécherette)", + "lang" : "fr-CH" + }, + { + "text" : "Centre de la police cantonale (Blécherette)", + "lang" : "it-CH" + }, + { + "text" : "Centre de la police cantonale (Blécherette)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kantonspolizei Waadt", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale vaudoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Vaud", + "lang" : "it-CH" + }, + { + "text" : "Vaud Cantonal Police", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.pcv@vd.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8458011, 47.4246681 ], + [ 7.845896, 47.4245003 ], + [ 7.8460102, 47.4244007 ], + [ 7.8460614, 47.4242781 ], + [ 7.8460988, 47.4239852 ], + [ 7.8460763, 47.4238043 ], + [ 7.8459587, 47.4236038 ], + [ 7.846031, 47.423595 ], + [ 7.8458873, 47.4232835 ], + [ 7.8457246, 47.4228874 ], + [ 7.8455778, 47.422511 ], + [ 7.8453647, 47.4222025 ], + [ 7.8451805, 47.4219196 ], + [ 7.8450726, 47.4217539 ], + [ 7.8449779, 47.4215811 ], + [ 7.8447653, 47.4212535 ], + [ 7.8445968, 47.4208837 ], + [ 7.844525, 47.420717 ], + [ 7.8444363, 47.4205139 ], + [ 7.844436, 47.4205133 ], + [ 7.8444357, 47.4205104 ], + [ 7.8443751, 47.4199478 ], + [ 7.8443643, 47.4197104 ], + [ 7.8443642, 47.4197093 ], + [ 7.8441495, 47.419215 ], + [ 7.843877, 47.419524 ], + [ 7.8437352, 47.4197251 ], + [ 7.8436706, 47.419735 ], + [ 7.8436509999999995, 47.419738 ], + [ 7.8438797000000005, 47.4205215 ], + [ 7.8438876, 47.4205478 ], + [ 7.8438962, 47.4205741 ], + [ 7.8439054, 47.4206002 ], + [ 7.8439151, 47.4206263 ], + [ 7.8439254, 47.4206523 ], + [ 7.8439363, 47.4206781 ], + [ 7.8439478, 47.4207039 ], + [ 7.8439599, 47.4207295 ], + [ 7.8439727, 47.4207549 ], + [ 7.843986, 47.4207801 ], + [ 7.8439999, 47.4208053 ], + [ 7.8440144, 47.4208302 ], + [ 7.8440294999999995, 47.4208551 ], + [ 7.8440451, 47.4208797 ], + [ 7.8440612, 47.4209042 ], + [ 7.8440779, 47.4209286 ], + [ 7.8442643, 47.4211983 ], + [ 7.8442807, 47.4212228 ], + [ 7.8442965000000004, 47.4212475 ], + [ 7.8443115, 47.4212724 ], + [ 7.8443258, 47.4212975 ], + [ 7.8443394, 47.4213227 ], + [ 7.8443522, 47.4213482 ], + [ 7.8443642, 47.4213738 ], + [ 7.8443755, 47.4213996 ], + [ 7.8444833, 47.421653 ], + [ 7.8446185, 47.4219717 ], + [ 7.8447982, 47.4223142 ], + [ 7.8449219, 47.4225504 ], + [ 7.8449296, 47.4225662 ], + [ 7.8449364, 47.4225821 ], + [ 7.8449423, 47.4225982 ], + [ 7.8449471, 47.4226145 ], + [ 7.844951, 47.4226309 ], + [ 7.8449539999999995, 47.4226473 ], + [ 7.844956, 47.4226639 ], + [ 7.8449569, 47.4226805 ], + [ 7.844957, 47.422697 ], + [ 7.844956, 47.4227136 ], + [ 7.8449541, 47.4227302 ], + [ 7.8449511, 47.422746599999996 ], + [ 7.8449472, 47.422763 ], + [ 7.8449424, 47.4227793 ], + [ 7.84494, 47.4227863 ], + [ 7.8449395, 47.422788 ], + [ 7.8449363, 47.4227967 ], + [ 7.8448062, 47.423125 ], + [ 7.844784, 47.4231811 ], + [ 7.8447737, 47.4232057 ], + [ 7.8447625, 47.4232302 ], + [ 7.8447503, 47.4232545 ], + [ 7.8447372, 47.4232785 ], + [ 7.8447230999999995, 47.4233023 ], + [ 7.8447081999999995, 47.4233258 ], + [ 7.8446924, 47.4233491 ], + [ 7.8446757, 47.4233721 ], + [ 7.8442576, 47.4237681 ], + [ 7.8442365, 47.4237821 ], + [ 7.8442149, 47.4237957 ], + [ 7.8441927, 47.423809 ], + [ 7.8441700999999995, 47.4238219 ], + [ 7.8441469999999995, 47.4238343 ], + [ 7.8441234, 47.4238464 ], + [ 7.8440994, 47.4238581 ], + [ 7.844075, 47.4238693 ], + [ 7.8440501, 47.4238801 ], + [ 7.8440248, 47.4238905 ], + [ 7.8439992, 47.4239004 ], + [ 7.8439732, 47.4239099 ], + [ 7.8439468, 47.4239189 ], + [ 7.8439201, 47.4239275 ], + [ 7.8438931, 47.4239355 ], + [ 7.8438658, 47.4239431 ], + [ 7.8438382, 47.4239502 ], + [ 7.8438103, 47.4239569 ], + [ 7.843786, 47.423962 ], + [ 7.8437615, 47.4239666 ], + [ 7.8437368, 47.4239706 ], + [ 7.8437118, 47.423974 ], + [ 7.8436867, 47.4239767 ], + [ 7.8436615, 47.4239789 ], + [ 7.8436361, 47.4239805 ], + [ 7.8436107, 47.4239814 ], + [ 7.8435853, 47.4239817 ], + [ 7.8435599, 47.4239815 ], + [ 7.8435345, 47.4239806 ], + [ 7.8435091, 47.4239791 ], + [ 7.8434839, 47.4239769 ], + [ 7.8434588, 47.4239742 ], + [ 7.8434338, 47.4239709 ], + [ 7.843409, 47.423967 ], + [ 7.843164, 47.4239304 ], + [ 7.843149, 47.423928599999996 ], + [ 7.8431339, 47.4239274 ], + [ 7.8431188, 47.4239269 ], + [ 7.8431036, 47.4239271 ], + [ 7.8430885, 47.423928 ], + [ 7.8430735, 47.4239296 ], + [ 7.8430587, 47.4239319 ], + [ 7.8430442, 47.4239349 ], + [ 7.8430299, 47.4239385 ], + [ 7.8430161, 47.4239427 ], + [ 7.8430026999999995, 47.4239476 ], + [ 7.8429899, 47.4239531 ], + [ 7.8429776, 47.4239591 ], + [ 7.8429659, 47.4239657 ], + [ 7.8429549, 47.4239728 ], + [ 7.8429447, 47.4239804 ], + [ 7.8429037, 47.4240732 ], + [ 7.8435282, 47.4241376 ], + [ 7.8450519, 47.4244048 ], + [ 7.8453275, 47.4245186 ], + [ 7.8458011, 47.4246681 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr098", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Neuweg", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Neuweg", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Neuweg", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Neuweg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.875274600000001, 46.5252876 ], + [ 9.8762411, 46.5264818 ], + [ 9.8750234, 46.5269489 ], + [ 9.87541, 46.5274266 ], + [ 9.8757136, 46.5277981 ], + [ 9.8775223, 46.5300273 ], + [ 9.8783652, 46.5310802 ], + [ 9.8782849, 46.5313249 ], + [ 9.8781566, 46.5316607 ], + [ 9.8783565, 46.5320434 ], + [ 9.8788178, 46.5318625 ], + [ 9.8789407, 46.5319859 ], + [ 9.879055900000001, 46.5319384 ], + [ 9.8801191, 46.5332475 ], + [ 9.8818455, 46.5353794 ], + [ 9.8821753, 46.5354623 ], + [ 9.8825185, 46.535554 ], + [ 9.883249, 46.5352682 ], + [ 9.8833516, 46.53523 ], + [ 9.8876204, 46.5405111 ], + [ 9.887543, 46.5405308 ], + [ 9.8874958, 46.5406398 ], + [ 9.8875642, 46.5407103 ], + [ 9.8876061, 46.5407724 ], + [ 9.8882303, 46.541596 ], + [ 9.8884702, 46.5417078 ], + [ 9.8891197, 46.5419368 ], + [ 9.889517099999999, 46.5420722 ], + [ 9.8901796, 46.5423009 ], + [ 9.8904419, 46.5423313 ], + [ 9.8905074, 46.5423389 ], + [ 9.8906634, 46.5423265 ], + [ 9.8911174, 46.5422717 ], + [ 9.8912607, 46.5422686 ], + [ 9.8914175, 46.5422742 ], + [ 9.8915474, 46.5422624 ], + [ 9.8915112, 46.5420382 ], + [ 9.8914493, 46.5418235 ], + [ 9.8913906, 46.5416808 ], + [ 9.8912628, 46.5414496 ], + [ 9.8908576, 46.5408553 ], + [ 9.8908258, 46.54073 ], + [ 9.888864, 46.5383063 ], + [ 9.8891331, 46.5382015 ], + [ 9.8888432, 46.5378478 ], + [ 9.8884568, 46.5373791 ], + [ 9.8881246, 46.5369542 ], + [ 9.8877801, 46.5365477 ], + [ 9.8871857, 46.5358045 ], + [ 9.8861487, 46.5345038 ], + [ 9.8843937, 46.532318599999996 ], + [ 9.8840208, 46.5318586 ], + [ 9.8836891, 46.5314428 ], + [ 9.8832612, 46.530921 ], + [ 9.8826535, 46.5301691 ], + [ 9.8821146, 46.5294966 ], + [ 9.8816721, 46.528939199999996 ], + [ 9.8815891, 46.5288329 ], + [ 9.8814507, 46.5286559 ], + [ 9.8812427, 46.5283814 ], + [ 9.8809122, 46.5279925 ], + [ 9.880843, 46.527904 ], + [ 9.8806216, 46.5276207 ], + [ 9.8803721, 46.5272931 ], + [ 9.8802064, 46.5270897 ], + [ 9.8798206, 46.52663 ], + [ 9.8796554, 46.5264355 ], + [ 9.8795162, 46.5262405 ], + [ 9.8792105, 46.5258241 ], + [ 9.8787661, 46.5252216 ], + [ 9.878738, 46.5251772 ], + [ 9.8786969, 46.5251331 ], + [ 9.8786009, 46.5250272 ], + [ 9.8779871, 46.5244283 ], + [ 9.8779061, 46.5243671 ], + [ 9.8778386, 46.5243145 ], + [ 9.8777991, 46.5243064 ], + [ 9.8777462, 46.5242895 ], + [ 9.8776672, 46.5242732 ], + [ 9.8774966, 46.5242499 ], + [ 9.875523, 46.5250122 ], + [ 9.875274600000001, 46.5252876 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZS002", + "country" : "CHE", + "name" : [ + { + "text" : "LSZS Samedan (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSZS Samedan (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSZS Samedan (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSZS Samedan (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Engadin Airport", + "lang" : "de-CH" + }, + { + "text" : "Engadin Airport", + "lang" : "fr-CH" + }, + { + "text" : "Engadin Airport", + "lang" : "it-CH" + }, + { + "text" : "Engadin Airport", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "GL Safety Officer", + "lang" : "de-CH" + }, + { + "text" : "GL Safety Officer", + "lang" : "fr-CH" + }, + { + "text" : "GL Safety Officer", + "lang" : "it-CH" + }, + { + "text" : "GL Safety Officer", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.engadin-airport.ch/en/drone/", + "email" : "info@engadin-airport.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 5.9937909, 46.2001578 ], + [ 5.9922974, 46.2002354 ], + [ 5.990957, 46.2006994 ], + [ 5.9899687, 46.2014808 ], + [ 5.9894794000000005, 46.2024638 ], + [ 5.9894733, 46.2024942 ], + [ 5.9895561, 46.2035337 ], + [ 5.9901994, 46.2044741 ], + [ 5.9913075, 46.2051754 ], + [ 5.9927156, 46.2055333 ], + [ 5.9927926, 46.2055418 ], + [ 5.9940134, 46.205541 ], + [ 5.9951736, 46.2052774 ], + [ 5.9961588, 46.2047768 ], + [ 5.9968718, 46.2040888 ], + [ 5.9972423, 46.2032812 ], + [ 5.9972493, 46.2032488 ], + [ 5.9972373999999995, 46.2023877 ], + [ 5.9968354999999995, 46.2015731 ], + [ 5.9960845, 46.2008879 ], + [ 5.9950609, 46.2004018 ], + [ 5.9938689, 46.2001643 ], + [ 5.9937909, 46.2001578 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-49", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.9765006, 47.3649791 ], + [ 7.9764835, 47.3646261 ], + [ 7.9764391, 47.3642742 ], + [ 7.9763678, 47.3639244 ], + [ 7.9762695, 47.3635776 ], + [ 7.9761447, 47.3632348 ], + [ 7.9759937, 47.3628968 ], + [ 7.9758168, 47.3625648 ], + [ 7.9756146999999995, 47.3622394 ], + [ 7.9753877, 47.3619217 ], + [ 7.9751366, 47.3616125 ], + [ 7.974862, 47.3613126 ], + [ 7.9745647, 47.3610229 ], + [ 7.9742454, 47.3607442 ], + [ 7.9739052, 47.3604773 ], + [ 7.9735449, 47.3602227 ], + [ 7.9731654, 47.3599814 ], + [ 7.9727679, 47.3597539 ], + [ 7.9723534, 47.3595408 ], + [ 7.9719231, 47.3593427 ], + [ 7.9714781, 47.3591602 ], + [ 7.9710197, 47.3589938 ], + [ 7.970549, 47.358844 ], + [ 7.9700675, 47.358711 ], + [ 7.9695764, 47.3585954 ], + [ 7.9690771, 47.3584974 ], + [ 7.9685709, 47.3584172 ], + [ 7.9680593, 47.3583552 ], + [ 7.9675435, 47.3583115 ], + [ 7.9670251, 47.3582862 ], + [ 7.9665055, 47.3582793 ], + [ 7.965986, 47.3582909 ], + [ 7.9654682, 47.358321 ], + [ 7.9649534, 47.3583694 ], + [ 7.964443, 47.3584361 ], + [ 7.9639384, 47.3585208 ], + [ 7.9634411, 47.3586234 ], + [ 7.9629522999999995, 47.3587435 ], + [ 7.9624735, 47.3588808 ], + [ 7.9620059, 47.359035 ], + [ 7.9615507999999995, 47.3592056 ], + [ 7.9611094, 47.3593921 ], + [ 7.9606829999999995, 47.3595941 ], + [ 7.9602728, 47.3598109 ], + [ 7.9598797999999995, 47.3600421 ], + [ 7.9595052, 47.3602869 ], + [ 7.9591499, 47.3605446 ], + [ 7.9588149999999995, 47.3608147 ], + [ 7.9585013, 47.3610963 ], + [ 7.9582098, 47.3613887 ], + [ 7.9579411, 47.361691 ], + [ 7.9576961, 47.3620025 ], + [ 7.9574755, 47.3623222 ], + [ 7.9572797, 47.3626494 ], + [ 7.9571095, 47.3629831 ], + [ 7.9569651, 47.3633224 ], + [ 7.9568471, 47.3636663 ], + [ 7.9567558, 47.364014 ], + [ 7.9566913, 47.3643644 ], + [ 7.956654, 47.3647167 ], + [ 7.9566438, 47.3650698 ], + [ 7.9566608, 47.3654227 ], + [ 7.9567049999999995, 47.3657746 ], + [ 7.9567763, 47.3661245 ], + [ 7.9568744, 47.3664713 ], + [ 7.9569991, 47.3668141 ], + [ 7.95715, 47.3671521 ], + [ 7.9573267, 47.3674842 ], + [ 7.9575288, 47.3678096 ], + [ 7.9577557, 47.3681273 ], + [ 7.9580068, 47.3684366 ], + [ 7.9582813, 47.3687365 ], + [ 7.9585786, 47.3690262 ], + [ 7.9588978, 47.3693049 ], + [ 7.959238, 47.369572 ], + [ 7.9595983, 47.3698265 ], + [ 7.9599778, 47.3700679 ], + [ 7.9603753, 47.3702955 ], + [ 7.9607898, 47.3705086 ], + [ 7.9612202, 47.3707067 ], + [ 7.9616653, 47.3708892 ], + [ 7.9621238, 47.3710557 ], + [ 7.9625945, 47.3712056 ], + [ 7.9630761, 47.3713386 ], + [ 7.9635673, 47.3714542 ], + [ 7.9640667, 47.3715523 ], + [ 7.964573, 47.3716324 ], + [ 7.9650848, 47.3716944 ], + [ 7.9656006999999995, 47.3717382 ], + [ 7.9661192, 47.3717635 ], + [ 7.966639, 47.3717704 ], + [ 7.9671585, 47.3717588 ], + [ 7.9676765, 47.3717287 ], + [ 7.9681915, 47.3716802 ], + [ 7.968702, 47.3716136 ], + [ 7.9692067, 47.3715288 ], + [ 7.9697040999999995, 47.3714262 ], + [ 7.970193, 47.3713061 ], + [ 7.9706719, 47.3711687 ], + [ 7.9711396, 47.3710145 ], + [ 7.9715948, 47.3708439 ], + [ 7.9720362, 47.3706573 ], + [ 7.9724626, 47.3704553 ], + [ 7.9728728, 47.3702384 ], + [ 7.9732658, 47.3700072 ], + [ 7.9736405, 47.3697624 ], + [ 7.9739958, 47.3695046 ], + [ 7.9743307, 47.3692345 ], + [ 7.9746443, 47.3689528 ], + [ 7.9749358, 47.3686604 ], + [ 7.9752044, 47.368358 ], + [ 7.9754493, 47.3680465 ], + [ 7.9756699, 47.3677267 ], + [ 7.9758655, 47.3673995 ], + [ 7.9760357, 47.3670658 ], + [ 7.9761799, 47.3667265 ], + [ 7.9762978, 47.3663826 ], + [ 7.976389, 47.3660349 ], + [ 7.9764533, 47.3656844 ], + [ 7.9764906, 47.3653322 ], + [ 7.9765006, 47.3649791 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "ENSI002", + "country" : "CHE", + "name" : [ + { + "text" : "KKA Gösgen", + "lang" : "de-CH" + }, + { + "text" : "KKA Gösgen", + "lang" : "fr-CH" + }, + { + "text" : "KKA Gösgen", + "lang" : "it-CH" + }, + { + "text" : "KKA Gösgen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kernkraftwerk Gösgen-Däniken AG", + "lang" : "de-CH" + }, + { + "text" : "Kernkraftwerk Gösgen-Däniken AG", + "lang" : "fr-CH" + }, + { + "text" : "Kernkraftwerk Gösgen-Däniken AG", + "lang" : "it-CH" + }, + { + "text" : "Kernkraftwerk Gösgen-Däniken AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Sicherungsbeauftragter", + "lang" : "de-CH" + }, + { + "text" : "Sicherungsbeauftragter", + "lang" : "fr-CH" + }, + { + "text" : "Sicherungsbeauftragter", + "lang" : "it-CH" + }, + { + "text" : "Sicherungsbeauftragter", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Rolf Burgherr", + "lang" : "de-CH" + }, + { + "text" : "Rolf Burgherr", + "lang" : "fr-CH" + }, + { + "text" : "Rolf Burgherr", + "lang" : "it-CH" + }, + { + "text" : "Rolf Burgherr", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kkg.ch", + "phone" : "0041622882000", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5882487, 47.4531433 ], + [ 7.5873296, 47.4535584 ], + [ 7.5875764, 47.4540007 ], + [ 7.5876326, 47.4540751 ], + [ 7.5881816, 47.4539276 ], + [ 7.5882944, 47.4540878 ], + [ 7.5878754, 47.4542263 ], + [ 7.5880724, 47.4542616 ], + [ 7.5882784999999995, 47.4542536 ], + [ 7.5888824, 47.4541302 ], + [ 7.5894631, 47.4539639 ], + [ 7.589899, 47.4538403 ], + [ 7.5899759, 47.4538271 ], + [ 7.5899033, 47.453626 ], + [ 7.590135, 47.4535841 ], + [ 7.5902082, 47.4537898 ], + [ 7.5910244, 47.4536582 ], + [ 7.5912279, 47.453653 ], + [ 7.5911288, 47.453437 ], + [ 7.5910369, 47.4533503 ], + [ 7.591375, 47.4532306 ], + [ 7.5917243, 47.4531238 ], + [ 7.5920594999999995, 47.4529111 ], + [ 7.5923986, 47.4529024 ], + [ 7.5926656999999995, 47.4530267 ], + [ 7.5928474, 47.4530475 ], + [ 7.5934627, 47.4529823 ], + [ 7.5937376, 47.4527934 ], + [ 7.5939651, 47.4524972 ], + [ 7.5945766, 47.4524778 ], + [ 7.5951123, 47.4525492 ], + [ 7.5958124, 47.4526763 ], + [ 7.5963453, 47.4531034 ], + [ 7.5968929, 47.4536297 ], + [ 7.5974055, 47.4539774 ], + [ 7.5976099, 47.4540503 ], + [ 7.5976661, 47.4542522 ], + [ 7.5975833, 47.4544677 ], + [ 7.5975357, 47.4544874 ], + [ 7.5980021, 47.4549013 ], + [ 7.5982801, 47.4553558 ], + [ 7.5984476, 47.4556441 ], + [ 7.5986189, 47.4557373 ], + [ 7.5984481, 47.4558106 ], + [ 7.5982704, 47.4557937 ], + [ 7.5981687, 47.4557808 ], + [ 7.5981556, 47.4558048 ], + [ 7.5987688, 47.4564166 ], + [ 7.5991895, 47.4568629 ], + [ 7.5996027999999995, 47.4573025 ], + [ 7.5999984, 47.4577487 ], + [ 7.600395, 47.4581969 ], + [ 7.600752, 47.4586589 ], + [ 7.6011104, 47.4591211 ], + [ 7.6007736, 47.4591998 ], + [ 7.6003033, 47.4592504 ], + [ 7.5996705, 47.4593607 ], + [ 7.5985554, 47.4593914 ], + [ 7.5982007, 47.4594393 ], + [ 7.5976896, 47.4595288 ], + [ 7.5980142, 47.4600001 ], + [ 7.5983243, 47.4602376 ], + [ 7.5984025, 47.4603532 ], + [ 7.5983208, 47.4605559 ], + [ 7.5981712, 47.4606655 ], + [ 7.5979503, 47.4606952 ], + [ 7.5978297999999995, 47.4607269 ], + [ 7.5980245, 47.4607438 ], + [ 7.5982357, 47.4607898 ], + [ 7.5984597, 47.4608717 ], + [ 7.5982337, 47.4611565 ], + [ 7.5981655, 47.4611765 ], + [ 7.598668, 47.4613944 ], + [ 7.6017579, 47.462735 ], + [ 7.6024658, 47.4618136 ], + [ 7.602708, 47.4616058 ], + [ 7.6030199, 47.4615734 ], + [ 7.6039074, 47.4608785 ], + [ 7.6041134, 47.4605101 ], + [ 7.6044623, 47.4600055 ], + [ 7.6047183, 47.4597789 ], + [ 7.6046863, 47.4596353 ], + [ 7.6046236, 47.459586 ], + [ 7.6045359999999995, 47.4595172 ], + [ 7.6044295, 47.4594315 ], + [ 7.604344, 47.4593626 ], + [ 7.6039823, 47.4592272 ], + [ 7.6035734, 47.4590198 ], + [ 7.6034851, 47.4587792 ], + [ 7.603116, 47.4585543 ], + [ 7.603128, 47.4584426 ], + [ 7.6027924, 47.4582423 ], + [ 7.6025523, 47.4580738 ], + [ 7.6021626, 47.4580593 ], + [ 7.6020078, 47.4578738 ], + [ 7.6016183999999996, 47.4575447 ], + [ 7.6012024, 47.4572088 ], + [ 7.6008854, 47.4571112 ], + [ 7.6007193, 47.4568015 ], + [ 7.6004123, 47.456636 ], + [ 7.6001542, 47.4565818 ], + [ 7.5999982, 47.4563766 ], + [ 7.5994837, 47.4552279 ], + [ 7.5992563, 47.4547204 ], + [ 7.5990641, 47.4545828 ], + [ 7.5989872, 47.4545356 ], + [ 7.5989129, 47.454487 ], + [ 7.5988413999999995, 47.4544426 ], + [ 7.5987808, 47.4544093 ], + [ 7.5987136, 47.4543737 ], + [ 7.5986281, 47.45433 ], + [ 7.5985414, 47.4542855 ], + [ 7.598472, 47.4542411 ], + [ 7.5984015, 47.4541933 ], + [ 7.598317, 47.454139 ], + [ 7.598234, 47.454085 ], + [ 7.5981601, 47.4540377 ], + [ 7.5980921, 47.4539875 ], + [ 7.5980302, 47.4539354 ], + [ 7.5979743, 47.4538852 ], + [ 7.5979086, 47.4538364 ], + [ 7.5978351, 47.4537828 ], + [ 7.5977759, 47.4537421 ], + [ 7.5976939, 47.4536931 ], + [ 7.5976197, 47.4536574 ], + [ 7.5975411, 47.4536166 ], + [ 7.597467, 47.4535752 ], + [ 7.5973995, 47.4535325 ], + [ 7.5975071, 47.4534205 ], + [ 7.5975312, 47.453405 ], + [ 7.5980937, 47.4530436 ], + [ 7.5980466, 47.4530065 ], + [ 7.5979997, 47.4529693 ], + [ 7.5979529, 47.4529321 ], + [ 7.5979063, 47.4528947 ], + [ 7.5978419, 47.4528428 ], + [ 7.5977777, 47.4527907 ], + [ 7.5977139000000005, 47.4527384 ], + [ 7.5976503, 47.452686 ], + [ 7.5975869, 47.4526333 ], + [ 7.5975237, 47.4525805 ], + [ 7.5974609, 47.4525275 ], + [ 7.5973984, 47.4524743 ], + [ 7.5973351000000005, 47.4524216 ], + [ 7.5972722, 47.4523687 ], + [ 7.5972097, 47.4523157 ], + [ 7.5971475, 47.4522624 ], + [ 7.5970857, 47.4522089 ], + [ 7.5970243, 47.4521553 ], + [ 7.5969633, 47.4521015 ], + [ 7.5969027, 47.4520475 ], + [ 7.5968686, 47.4520164 ], + [ 7.5968352, 47.4519851 ], + [ 7.5968024, 47.4519535 ], + [ 7.5967703, 47.4519215 ], + [ 7.5967388, 47.4518893 ], + [ 7.596708, 47.4518567 ], + [ 7.5966778, 47.4518239 ], + [ 7.5966477999999995, 47.4517909 ], + [ 7.5966185, 47.4517576 ], + [ 7.5965899, 47.4517241 ], + [ 7.5965619, 47.4516903 ], + [ 7.5965347, 47.4516562 ], + [ 7.5965081, 47.4516219 ], + [ 7.5964823, 47.4515873 ], + [ 7.5964603, 47.4515567 ], + [ 7.5964388, 47.4515258 ], + [ 7.596418, 47.4514948 ], + [ 7.5963975999999995, 47.4514637 ], + [ 7.5963778, 47.4514323 ], + [ 7.5961384, 47.4511394 ], + [ 7.5961018, 47.4511555 ], + [ 7.5960516, 47.4511713 ], + [ 7.5960002, 47.4511852 ], + [ 7.5959477, 47.4511972 ], + [ 7.5959116, 47.4512115 ], + [ 7.5958839000000005, 47.4512215 ], + [ 7.5959455, 47.4513941 ], + [ 7.5959873, 47.4514929 ], + [ 7.5960177, 47.4515637 ], + [ 7.5960467, 47.4516388 ], + [ 7.5960774, 47.4517153 ], + [ 7.5961151000000005, 47.4517864 ], + [ 7.5961449, 47.4518369 ], + [ 7.5961768, 47.4518918 ], + [ 7.5962152, 47.4519571 ], + [ 7.5962596, 47.4520291 ], + [ 7.5963004, 47.4520957 ], + [ 7.5963435, 47.4521679 ], + [ 7.5963807, 47.452223 ], + [ 7.5964283, 47.4522804 ], + [ 7.5964811999999995, 47.4523273 ], + [ 7.596533, 47.4523798 ], + [ 7.596584, 47.4524399 ], + [ 7.5966013, 47.4524582 ], + [ 7.5966167, 47.4524773 ], + [ 7.5966303, 47.452497 ], + [ 7.5966419, 47.4525172 ], + [ 7.5966515, 47.452538 ], + [ 7.596659, 47.4525591 ], + [ 7.5966645, 47.4525805 ], + [ 7.5966649, 47.4525814 ], + [ 7.5966664, 47.4526003 ], + [ 7.5966647, 47.4526186 ], + [ 7.5966613, 47.4526346 ], + [ 7.5966542, 47.452652 ], + [ 7.5966494, 47.4526657 ], + [ 7.5966464, 47.452679 ], + [ 7.5965586, 47.4527027 ], + [ 7.5965403, 47.4526976 ], + [ 7.5965213, 47.4526939 ], + [ 7.5965077999999995, 47.4526902 ], + [ 7.596487, 47.4526831 ], + [ 7.5964672, 47.4526748 ], + [ 7.5964486, 47.4526653 ], + [ 7.5964313, 47.4526546 ], + [ 7.5964155, 47.452643 ], + [ 7.5964013999999995, 47.4526304 ], + [ 7.596389, 47.4526171 ], + [ 7.5963318, 47.4525633 ], + [ 7.5962686, 47.4525014 ], + [ 7.5962012, 47.4524365 ], + [ 7.5961341000000004, 47.4523756 ], + [ 7.596066, 47.4523131 ], + [ 7.5959984, 47.4522508 ], + [ 7.595925, 47.4521846 ], + [ 7.5958625, 47.452135 ], + [ 7.595789, 47.452084 ], + [ 7.5957155, 47.4520415 ], + [ 7.5956147, 47.4519952 ], + [ 7.5955401, 47.4519717 ], + [ 7.5954487, 47.4519437 ], + [ 7.5953586, 47.4519134 ], + [ 7.5952695, 47.4518847 ], + [ 7.5951833, 47.4518566 ], + [ 7.5950897, 47.451825 ], + [ 7.5949919, 47.4517941 ], + [ 7.5948965, 47.4517588 ], + [ 7.5946068, 47.4521954 ], + [ 7.5945923, 47.4522167 ], + [ 7.5945683, 47.4522367 ], + [ 7.5945333999999995, 47.4522525 ], + [ 7.5944998, 47.4522618 ], + [ 7.5944605, 47.4522633 ], + [ 7.5943978, 47.4522494 ], + [ 7.5943292, 47.452218 ], + [ 7.5942613, 47.4521843 ], + [ 7.5942045, 47.4521684 ], + [ 7.5941467, 47.4521604 ], + [ 7.5940436, 47.4521457 ], + [ 7.5939318, 47.4521295 ], + [ 7.5938153, 47.4521129 ], + [ 7.5937044, 47.4520968 ], + [ 7.5936329, 47.4520867 ], + [ 7.5934857000000004, 47.4520683 ], + [ 7.5933747, 47.4520528 ], + [ 7.5932727, 47.4520377 ], + [ 7.5931726, 47.4520261 ], + [ 7.5930578, 47.4520143 ], + [ 7.5929589, 47.4520027 ], + [ 7.5928222, 47.4519912 ], + [ 7.592562, 47.4519787 ], + [ 7.59243, 47.4519777 ], + [ 7.5922934, 47.4519813 ], + [ 7.5921772, 47.4519925 ], + [ 7.5920576, 47.4520078 ], + [ 7.5919849, 47.4520206 ], + [ 7.5919142, 47.4520363 ], + [ 7.5918095999999995, 47.4520629 ], + [ 7.5917089, 47.45209 ], + [ 7.5916091, 47.4521165 ], + [ 7.5914977, 47.4521495 ], + [ 7.5913877, 47.4521841 ], + [ 7.5912858, 47.4522185 ], + [ 7.5912228, 47.4522365 ], + [ 7.5911147, 47.4522656 ], + [ 7.5910159, 47.4522915 ], + [ 7.5909067, 47.452322 ], + [ 7.5908052999999995, 47.4523472 ], + [ 7.5907449, 47.4523621 ], + [ 7.5906970000000005, 47.4523694 ], + [ 7.5906229, 47.4523774 ], + [ 7.5902776, 47.4523999 ], + [ 7.5896696, 47.4525133 ], + [ 7.5896027, 47.4525169 ], + [ 7.5895952, 47.4525164 ], + [ 7.5895748, 47.4525138 ], + [ 7.5895548, 47.4525098 ], + [ 7.5895355, 47.4525044 ], + [ 7.5895171, 47.4524978 ], + [ 7.5894998000000005, 47.4524899 ], + [ 7.5894837, 47.4524809 ], + [ 7.5894692, 47.4524708 ], + [ 7.589407, 47.452488 ], + [ 7.5892395, 47.4525514 ], + [ 7.5887807, 47.452843 ], + [ 7.5882302, 47.4531106 ], + [ 7.5882487, 47.4531433 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns297", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Pfeffingen, Muggenberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Pfeffingen, Muggenberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Pfeffingen, Muggenberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Pfeffingen, Muggenberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8359411, 47.4550814 ], + [ 7.8359477, 47.4550475 ], + [ 7.8359776, 47.454894 ], + [ 7.8359552, 47.4546899 ], + [ 7.8359486, 47.4546295 ], + [ 7.8359355, 47.45451 ], + [ 7.8359476, 47.454336 ], + [ 7.8359515, 47.4543231 ], + [ 7.8359879, 47.4542012 ], + [ 7.8360064, 47.4541393 ], + [ 7.8360506, 47.4541327 ], + [ 7.8359658, 47.4539861 ], + [ 7.8357451, 47.4539578 ], + [ 7.8357592, 47.4539173 ], + [ 7.8358052, 47.4537851 ], + [ 7.835825, 47.4536613 ], + [ 7.8358687, 47.4535296 ], + [ 7.8359037, 47.4535049 ], + [ 7.835997, 47.4534387 ], + [ 7.8360936, 47.4533537 ], + [ 7.8360644, 47.4533252 ], + [ 7.8358139, 47.4535007 ], + [ 7.8357782, 47.4535387 ], + [ 7.8357662999999995, 47.4535513 ], + [ 7.8355184, 47.4538968 ], + [ 7.8355163999999995, 47.4538996 ], + [ 7.8354808, 47.4539492 ], + [ 7.8352015999999995, 47.4538561 ], + [ 7.8351173, 47.453828 ], + [ 7.8347969, 47.4541303 ], + [ 7.8347873, 47.4543165 ], + [ 7.834778, 47.4544786 ], + [ 7.8348351, 47.4548041 ], + [ 7.8352674, 47.4550589 ], + [ 7.8353015, 47.455079 ], + [ 7.8354528, 47.4549895 ], + [ 7.8355033, 47.4549886 ], + [ 7.8356721, 47.4549855 ], + [ 7.8357873, 47.4552531 ], + [ 7.8359574, 47.455368 ], + [ 7.8359836, 47.4553858 ], + [ 7.8361447, 47.455302 ], + [ 7.8359612, 47.4551032 ], + [ 7.8359411, 47.4550814 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr093", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Brünnler", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Brünnler", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Brünnler", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Brünnler", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.746314, 47.516519 ], + [ 7.7460284, 47.5163334 ], + [ 7.7455564, 47.5160285 ], + [ 7.7446192, 47.5154502 ], + [ 7.7439877, 47.5150771 ], + [ 7.7435342, 47.5148049 ], + [ 7.743221, 47.5146158 ], + [ 7.7431927, 47.5147552 ], + [ 7.7431158, 47.5151349 ], + [ 7.7432111, 47.5152124 ], + [ 7.7432649, 47.5152562 ], + [ 7.7443945, 47.515588 ], + [ 7.7444825999999996, 47.515556 ], + [ 7.7445103, 47.5155459 ], + [ 7.7445336000000005, 47.5155375 ], + [ 7.7445235, 47.5160278 ], + [ 7.7445149, 47.5161614 ], + [ 7.744472, 47.5162943 ], + [ 7.7444088, 47.5164203 ], + [ 7.7441473, 47.5167645 ], + [ 7.7440356, 47.5168833 ], + [ 7.7438907, 47.516984 ], + [ 7.7429556, 47.5175891 ], + [ 7.7429047, 47.5176623 ], + [ 7.742929, 47.5177556 ], + [ 7.7429569, 47.5178684 ], + [ 7.7431839, 47.5178925 ], + [ 7.7439082, 47.5180873 ], + [ 7.744251, 47.5182316 ], + [ 7.7448575, 47.5184869 ], + [ 7.7457133, 47.5184942 ], + [ 7.7461164, 47.5184975 ], + [ 7.7460457, 47.518172 ], + [ 7.7460372, 47.5181329 ], + [ 7.7460472, 47.5180462 ], + [ 7.7460486, 47.518034 ], + [ 7.7460535, 47.5179923 ], + [ 7.7461237, 47.517383 ], + [ 7.7462932, 47.5166138 ], + [ 7.7463003, 47.5165815 ], + [ 7.7463007, 47.51658 ], + [ 7.746314, 47.516519 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns001", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Ramschberg - Zettel", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Ramschberg - Zettel", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Ramschberg - Zettel", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Ramschberg - Zettel", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8147745, 47.394804 ], + [ 7.8148378, 47.394749 ], + [ 7.814946, 47.3946472 ], + [ 7.8147836, 47.3941346 ], + [ 7.81473, 47.3941591 ], + [ 7.8147516, 47.3942871 ], + [ 7.8147334, 47.3943463 ], + [ 7.8145428, 47.3943596 ], + [ 7.8144672, 47.3942149 ], + [ 7.8143413, 47.3940776 ], + [ 7.8142919, 47.3939935 ], + [ 7.814221, 47.3938797 ], + [ 7.814179, 47.3937602 ], + [ 7.814028, 47.3936567 ], + [ 7.8139911, 47.3935818 ], + [ 7.8139359, 47.3935288 ], + [ 7.813839, 47.3934357 ], + [ 7.813777, 47.3933344 ], + [ 7.8136867, 47.3932548 ], + [ 7.8136225, 47.3931638 ], + [ 7.8135663, 47.3931038 ], + [ 7.8135292, 47.3930321 ], + [ 7.8134789, 47.3929618 ], + [ 7.8134549, 47.3929104 ], + [ 7.81343, 47.3927303 ], + [ 7.8133418, 47.3927184 ], + [ 7.8132382, 47.3926859 ], + [ 7.8131919, 47.392645 ], + [ 7.8131191, 47.3925325 ], + [ 7.8130869, 47.3923949 ], + [ 7.8130123, 47.3922049 ], + [ 7.8128829, 47.3919329 ], + [ 7.8128022999999995, 47.3918203 ], + [ 7.8127309, 47.3917484 ], + [ 7.8126472, 47.3917271 ], + [ 7.8124206, 47.3915286 ], + [ 7.8123388, 47.3914851 ], + [ 7.812209, 47.3913974 ], + [ 7.8120244, 47.3913139 ], + [ 7.8116379, 47.3911011 ], + [ 7.8111585, 47.3909321 ], + [ 7.8110435, 47.3908915 ], + [ 7.8101778, 47.3914904 ], + [ 7.8103595, 47.391546 ], + [ 7.8105756, 47.3915885 ], + [ 7.8107326, 47.3916352 ], + [ 7.8108565, 47.3917127 ], + [ 7.8109866, 47.3917655 ], + [ 7.8112426, 47.3919519 ], + [ 7.8116161, 47.3922113 ], + [ 7.8117653, 47.3924055 ], + [ 7.8118306, 47.3924905 ], + [ 7.8120465, 47.3925667 ], + [ 7.8122871, 47.3926512 ], + [ 7.8123764, 47.3927136 ], + [ 7.8127069, 47.3929473 ], + [ 7.8129584, 47.3931337 ], + [ 7.8130603, 47.3932481 ], + [ 7.8132798999999995, 47.3933902 ], + [ 7.8134937, 47.3935279 ], + [ 7.8136795, 47.3936468 ], + [ 7.8138943, 47.3936711 ], + [ 7.813981, 47.3937421 ], + [ 7.814103, 47.3938618 ], + [ 7.8141796, 47.3939715 ], + [ 7.8142409, 47.3941139 ], + [ 7.8142684, 47.3942306 ], + [ 7.8142642, 47.3943097 ], + [ 7.8144274, 47.3944918 ], + [ 7.814616, 47.3947023 ], + [ 7.8147106, 47.3947643 ], + [ 7.8147745, 47.394804 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr135", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Sagi", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Sagi", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Sagi", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Sagi", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.2289859, 46.2163322 ], + [ 6.2289838, 46.2161909 ], + [ 6.2289709, 46.2160499 ], + [ 6.2289475, 46.2159095 ], + [ 6.2289135, 46.2157702 ], + [ 6.2288689999999995, 46.2156324 ], + [ 6.2288142, 46.2154963 ], + [ 6.2287493, 46.2153624 ], + [ 6.2286743, 46.2152311 ], + [ 6.2285895, 46.2151026 ], + [ 6.2284952, 46.2149774 ], + [ 6.2283915, 46.2148558 ], + [ 6.2282788, 46.2147382 ], + [ 6.2281574, 46.2146248 ], + [ 6.2280277, 46.2145159 ], + [ 6.2278899, 46.214412 ], + [ 6.2277444, 46.2143131 ], + [ 6.2275917, 46.2142197 ], + [ 6.2274322, 46.214132 ], + [ 6.2272662, 46.2140502 ], + [ 6.2270944, 46.2139745 ], + [ 6.226917, 46.2139052 ], + [ 6.2267347, 46.2138424 ], + [ 6.2265479, 46.2137863 ], + [ 6.2263570999999995, 46.2137371 ], + [ 6.2261629, 46.2136949 ], + [ 6.2259657, 46.2136598 ], + [ 6.2257662, 46.2136319 ], + [ 6.2255649, 46.2136113 ], + [ 6.2253622, 46.213598 ], + [ 6.2251589, 46.2135921 ], + [ 6.2249554, 46.2135936 ], + [ 6.2247523, 46.2136025 ], + [ 6.2245501, 46.2136188 ], + [ 6.2243494, 46.2136424 ], + [ 6.2241508, 46.2136732 ], + [ 6.2239548, 46.2137113 ], + [ 6.2237619, 46.2137564 ], + [ 6.2235727, 46.2138084 ], + [ 6.2233877, 46.2138672 ], + [ 6.2232073, 46.2139327 ], + [ 6.2230322, 46.2140047 ], + [ 6.2228627, 46.2140829 ], + [ 6.2226993, 46.2141671 ], + [ 6.2225425, 46.2142572 ], + [ 6.2223927, 46.2143529 ], + [ 6.2222503, 46.2144538 ], + [ 6.2221157, 46.2145598 ], + [ 6.2219894, 46.2146706 ], + [ 6.2218715, 46.2147857 ], + [ 6.2217625, 46.214905 ], + [ 6.2216626, 46.2150281 ], + [ 6.2215721, 46.2151547 ], + [ 6.2214913, 46.2152844 ], + [ 6.2214204, 46.2154168 ], + [ 6.2213595999999995, 46.2155516 ], + [ 6.221309, 46.2156885 ], + [ 6.2212688, 46.215827 ], + [ 6.2212391, 46.2159668 ], + [ 6.22122, 46.2161074 ], + [ 6.2212115, 46.2162486 ], + [ 6.2212137, 46.2163899 ], + [ 6.2212265, 46.2165309 ], + [ 6.2212499, 46.2166712 ], + [ 6.2212838999999995, 46.2168105 ], + [ 6.2213283, 46.2169484 ], + [ 6.2213831, 46.2170845 ], + [ 6.2214481, 46.2172183 ], + [ 6.221523, 46.2173497 ], + [ 6.2216078, 46.2174782 ], + [ 6.2217021, 46.2176033 ], + [ 6.2218058, 46.2177249 ], + [ 6.2219184, 46.2178426 ], + [ 6.2220398, 46.217956 ], + [ 6.2221696, 46.2180649 ], + [ 6.2223074, 46.2181688 ], + [ 6.2224528, 46.2182677 ], + [ 6.2226055, 46.2183611 ], + [ 6.2227651, 46.2184488 ], + [ 6.222931, 46.2185307 ], + [ 6.2231029, 46.2186063 ], + [ 6.2232802, 46.2186757 ], + [ 6.2234626, 46.2187385 ], + [ 6.2236494, 46.2187945 ], + [ 6.2238402, 46.2188438 ], + [ 6.2240345, 46.218886 ], + [ 6.2242316, 46.2189211 ], + [ 6.2244311, 46.218949 ], + [ 6.2246325, 46.2189696 ], + [ 6.2248352, 46.2189829 ], + [ 6.2250385, 46.2189887 ], + [ 6.2252421, 46.2189872 ], + [ 6.2254452, 46.2189783 ], + [ 6.2256474, 46.2189621 ], + [ 6.2258481, 46.2189385 ], + [ 6.2260467, 46.2189076 ], + [ 6.2262428, 46.2188696 ], + [ 6.2264356, 46.2188245 ], + [ 6.2266249, 46.2187725 ], + [ 6.2268099, 46.2187136 ], + [ 6.2269903, 46.2186481 ], + [ 6.2271655, 46.2185762 ], + [ 6.227335, 46.218498 ], + [ 6.2274983, 46.2184137 ], + [ 6.2276551, 46.2183236 ], + [ 6.2278049, 46.218228 ], + [ 6.2279473, 46.218127 ], + [ 6.2280819, 46.218021 ], + [ 6.2282083, 46.2179102 ], + [ 6.2283261, 46.2177951 ], + [ 6.2284351000000004, 46.2176757 ], + [ 6.228535, 46.2175526 ], + [ 6.2286255, 46.2174261 ], + [ 6.2287063, 46.2172964 ], + [ 6.2287771, 46.217164 ], + [ 6.228838, 46.2170291 ], + [ 6.2288885, 46.2168923 ], + [ 6.2289287, 46.2167538 ], + [ 6.2289584, 46.216614 ], + [ 6.2289775, 46.2164733 ], + [ 6.2289859, 46.2163322 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE27", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.2207926, 46.5978675 ], + [ 6.2205364, 46.5978706 ], + [ 6.2202811, 46.5978851 ], + [ 6.2200277, 46.5979112 ], + [ 6.2197773, 46.5979486 ], + [ 6.219531, 46.5979972 ], + [ 6.2192899, 46.5980569 ], + [ 6.2190549, 46.5981272 ], + [ 6.2188271, 46.598208 ], + [ 6.2186074, 46.5982989 ], + [ 6.2183969, 46.5983996 ], + [ 6.2181963, 46.5985095 ], + [ 6.2180067, 46.5986281 ], + [ 6.2178286, 46.5987552 ], + [ 6.2177044, 46.5988545 ], + [ 6.2175786, 46.5989603 ], + [ 6.2175372, 46.5989957 ], + [ 6.2173847, 46.5991376 ], + [ 6.217246, 46.5992861 ], + [ 6.2171218, 46.5994405 ], + [ 6.2170124, 46.5996002 ], + [ 6.2169184, 46.5997645 ], + [ 6.2168402, 46.5999327 ], + [ 6.2167782, 46.600104 ], + [ 6.2167325, 46.6002778 ], + [ 6.2167034, 46.6004532 ], + [ 6.216691, 46.6006296 ], + [ 6.2166954, 46.6008062 ], + [ 6.2167166, 46.6009822 ], + [ 6.2167544, 46.6011568 ], + [ 6.2168086, 46.6013294 ], + [ 6.2168792, 46.6014992 ], + [ 6.2169657, 46.6016654 ], + [ 6.2170678, 46.6018274 ], + [ 6.217185, 46.6019844 ], + [ 6.2173169, 46.6021358 ], + [ 6.2174629, 46.602281 ], + [ 6.2176223, 46.6024192 ], + [ 6.2177945, 46.60255 ], + [ 6.2179788, 46.6026727 ], + [ 6.2181743, 46.6027868 ], + [ 6.2181812, 46.6027906 ], + [ 6.2183365, 46.602875 ], + [ 6.2185354, 46.6029763 ], + [ 6.2187509, 46.6030718 ], + [ 6.2189749, 46.6031575 ], + [ 6.2192066, 46.6032329 ], + [ 6.219445, 46.6032977 ], + [ 6.219689, 46.6033516 ], + [ 6.2199376, 46.6033943 ], + [ 6.2201897, 46.6034258 ], + [ 6.2204443, 46.6034458 ], + [ 6.2207002, 46.6034544 ], + [ 6.2209564, 46.6034513 ], + [ 6.2212117, 46.6034367 ], + [ 6.2214652, 46.6034107 ], + [ 6.2217156, 46.6033733 ], + [ 6.2219619, 46.6033246 ], + [ 6.2222031, 46.603265 ], + [ 6.2224381, 46.6031946 ], + [ 6.2226659, 46.6031138 ], + [ 6.2228855, 46.6030229 ], + [ 6.2230961, 46.6029223 ], + [ 6.2232966, 46.6028124 ], + [ 6.2234863, 46.6026937 ], + [ 6.2236644, 46.6025667 ], + [ 6.2238225, 46.6024384 ], + [ 6.2239449, 46.6023326 ], + [ 6.2239524, 46.6023261 ], + [ 6.2241048, 46.602184199999996 ], + [ 6.2242435, 46.6020357 ], + [ 6.2243677, 46.6018812 ], + [ 6.2244771, 46.6017215 ], + [ 6.224571, 46.6015572 ], + [ 6.2246492, 46.601389 ], + [ 6.2247112, 46.6012177 ], + [ 6.2247569, 46.6010439 ], + [ 6.2247859, 46.6008685 ], + [ 6.2247983, 46.6006921 ], + [ 6.2247939, 46.6005155 ], + [ 6.2247727, 46.6003395 ], + [ 6.2247349, 46.6001649 ], + [ 6.2246806, 46.5999923 ], + [ 6.22461, 46.5998225 ], + [ 6.2245235, 46.5996563 ], + [ 6.2244214, 46.5994943 ], + [ 6.2243041, 46.5993373 ], + [ 6.2241722, 46.5991859 ], + [ 6.2240263, 46.5990408 ], + [ 6.2238668, 46.5989026 ], + [ 6.2236946, 46.5987718 ], + [ 6.2235103, 46.5986491 ], + [ 6.2233408, 46.5985493 ], + [ 6.223189, 46.5984649 ], + [ 6.2231631, 46.5984506 ], + [ 6.2229572, 46.5983456 ], + [ 6.2227417, 46.59825 ], + [ 6.2225177, 46.5981643 ], + [ 6.222286, 46.598089 ], + [ 6.2220476, 46.5980242 ], + [ 6.2218037, 46.5979703 ], + [ 6.2215551, 46.5979276 ], + [ 6.221303, 46.5978961 ], + [ 6.2210485, 46.597876 ], + [ 6.2207926, 46.5978675 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00029", + "country" : "CHE", + "name" : [ + { + "text" : "Hôpital régional eHnv site de La Vallée - Le Sentier", + "lang" : "de-CH" + }, + { + "text" : "Hôpital régional eHnv site de La Vallée - Le Sentier", + "lang" : "fr-CH" + }, + { + "text" : "Hôpital régional eHnv site de La Vallée - Le Sentier", + "lang" : "it-CH" + }, + { + "text" : "Hôpital régional eHnv site de La Vallée - Le Sentier", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kantonspolizei Waadt", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale vaudoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Vaud", + "lang" : "it-CH" + }, + { + "text" : "Vaud Cantonal Police", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.pcv@vd.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8789195, 46.6478038 ], + [ 7.8785694, 46.6475587 ], + [ 7.8781153, 46.6473526 ], + [ 7.8778284, 46.6476525 ], + [ 7.877683, 46.6479354 ], + [ 7.8777155, 46.6481036 ], + [ 7.8778082, 46.6483654 ], + [ 7.8779309, 46.6483329 ], + [ 7.8780757999999995, 46.6483335 ], + [ 7.8781265, 46.648281 ], + [ 7.8785854, 46.6481593 ], + [ 7.8789236, 46.6478057 ], + [ 7.8789195, 46.6478038 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSXG002", + "country" : "CHE", + "name" : [ + { + "text" : "LSXG Gsteigwiler (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSXG Gsteigwiler (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSXG Gsteigwiler (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSXG Gsteigwiler (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swiss Helicopter AG", + "lang" : "de-CH" + }, + { + "text" : "Swiss Helicopter AG", + "lang" : "fr-CH" + }, + { + "text" : "Swiss Helicopter AG", + "lang" : "it-CH" + }, + { + "text" : "Swiss Helicopter AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Basis Gsteigwiler", + "lang" : "de-CH" + }, + { + "text" : "Basis Gsteigwiler", + "lang" : "fr-CH" + }, + { + "text" : "Basis Gsteigwiler", + "lang" : "it-CH" + }, + { + "text" : "Basis Gsteigwiler", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Martin Burgener", + "lang" : "de-CH" + }, + { + "text" : "Martin Burgener", + "lang" : "fr-CH" + }, + { + "text" : "Martin Burgener", + "lang" : "it-CH" + }, + { + "text" : "Martin Burgener", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swisshelicopter.ch/en/about-us/helicopter-bases/gsteigwiler-interlaken", + "email" : "berneroberland@swisshelicopter.ch", + "phone" : "0041338289000", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P02DT12H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.2114097, 46.3441103 ], + [ 7.2103367, 46.3435009 ], + [ 7.209431, 46.3429854 ], + [ 7.1980359, 46.3365073 ], + [ 7.1974335, 46.3361642 ], + [ 7.1967733, 46.335972 ], + [ 7.195802, 46.3356569 ], + [ 7.1938515, 46.3344581 ], + [ 7.1923447, 46.3331009 ], + [ 7.1913694, 46.3313923 ], + [ 7.1911705, 46.3311697 ], + [ 7.1905425, 46.3310379 ], + [ 7.1889956, 46.3311037 ], + [ 7.1870827, 46.3313747 ], + [ 7.1854568, 46.3316617 ], + [ 7.1838655, 46.3317579 ], + [ 7.1831346, 46.3322609 ], + [ 7.1816835, 46.3329089 ], + [ 7.1829176, 46.3336539 ], + [ 7.1836981, 46.3344814 ], + [ 7.1844999, 46.3355016 ], + [ 7.1845166, 46.3366414 ], + [ 7.1849558, 46.337416 ], + [ 7.1844905, 46.3386068 ], + [ 7.183623, 46.3405102 ], + [ 7.1825053, 46.3417508 ], + [ 7.1812517, 46.3426071 ], + [ 7.1804036, 46.3434022 ], + [ 7.1812659, 46.3437127 ], + [ 7.1813957, 46.3437427 ], + [ 7.1827191, 46.3440506 ], + [ 7.1844914, 46.3447581 ], + [ 7.1848428, 46.3448974 ], + [ 7.1850749, 46.3449897 ], + [ 7.1856739, 46.3452231 ], + [ 7.1860043, 46.3453966 ], + [ 7.186704, 46.3457679 ], + [ 7.1877224, 46.3460517 ], + [ 7.1884501, 46.3462737 ], + [ 7.1895283, 46.3465514 ], + [ 7.1900135, 46.3466766 ], + [ 7.1900888, 46.3466929 ], + [ 7.1902431, 46.3467562 ], + [ 7.1907147, 46.3470335 ], + [ 7.191557, 46.3471882 ], + [ 7.1920969, 46.3472875 ], + [ 7.1918854, 46.3478069 ], + [ 7.1915802, 46.3483712 ], + [ 7.1915566, 46.3484161 ], + [ 7.1918602, 46.3485032 ], + [ 7.1920029, 46.3485484 ], + [ 7.1921378, 46.3485856 ], + [ 7.1921612, 46.3485902 ], + [ 7.1921793, 46.3485893 ], + [ 7.1922015, 46.3485822 ], + [ 7.1922314, 46.3485687 ], + [ 7.1922587, 46.3485535 ], + [ 7.1923447, 46.3484961 ], + [ 7.1924463, 46.3484424 ], + [ 7.1924893, 46.34842 ], + [ 7.1926267, 46.348485 ], + [ 7.192711, 46.3485212 ], + [ 7.1928743, 46.3485953 ], + [ 7.1928899, 46.3486008 ], + [ 7.1929119, 46.3486017 ], + [ 7.1931224, 46.3485905 ], + [ 7.1932667, 46.3485782 ], + [ 7.1932823, 46.3485737 ], + [ 7.1932966, 46.3485675 ], + [ 7.193307, 46.3485612 ], + [ 7.1933631, 46.3485154 ], + [ 7.1934726, 46.3484347 ], + [ 7.1935795, 46.3483531 ], + [ 7.1936081, 46.3483388 ], + [ 7.1936744, 46.3483416 ], + [ 7.1937276, 46.348348 ], + [ 7.1937938, 46.3483598 ], + [ 7.1938431, 46.3483734 ], + [ 7.1940115, 46.3484782 ], + [ 7.1942188, 46.3486001 ], + [ 7.1942408, 46.3486109 ], + [ 7.1942603, 46.3486181 ], + [ 7.1943031, 46.3486245 ], + [ 7.1944706, 46.3486393 ], + [ 7.1945239, 46.3486412 ], + [ 7.1946395, 46.3486504 ], + [ 7.1946888, 46.3486568 ], + [ 7.1949209, 46.3487392 ], + [ 7.1951408, 46.348674 ], + [ 7.1961905999999995, 46.3486376 ], + [ 7.1970177, 46.348723 ], + [ 7.1976527, 46.3487631 ], + [ 7.1980343, 46.3488457 ], + [ 7.1984844, 46.348996 ], + [ 7.1992493, 46.3493449 ], + [ 7.2039838, 46.3503696 ], + [ 7.2062447, 46.3508582 ], + [ 7.2064701, 46.3506967 ], + [ 7.2067581, 46.3504904 ], + [ 7.2069194, 46.3480098 ], + [ 7.2100213, 46.3455945 ], + [ 7.2101113, 46.3455065 ], + [ 7.2108039, 46.3448332 ], + [ 7.2111287, 46.3445181 ], + [ 7.2114097, 46.3441103 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00043", + "country" : "CHE", + "name" : [ + { + "text" : "Pierres Pointes", + "lang" : "de-CH" + }, + { + "text" : "Pierres Pointes", + "lang" : "fr-CH" + }, + { + "text" : "Pierres Pointes", + "lang" : "it-CH" + }, + { + "text" : "Pierres Pointes", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Generaldirektion für Umwelt", + "lang" : "de-CH" + }, + { + "text" : "Direction générale de l'environnement", + "lang" : "fr-CH" + }, + { + "text" : "Direzione generale dell'Ambiente", + "lang" : "it-CH" + }, + { + "text" : "Environment Department", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.dge@vd.ch", + "phone" : "0041213164422", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5487231, 47.4713039 ], + [ 7.5483317, 47.4690083 ], + [ 7.5481705, 47.4690398 ], + [ 7.5479333, 47.4690798 ], + [ 7.5476963999999995, 47.4691153 ], + [ 7.5475355, 47.4691332 ], + [ 7.5474716, 47.4691404 ], + [ 7.5474213, 47.4691432 ], + [ 7.5471994, 47.4691533 ], + [ 7.5470616, 47.4691558 ], + [ 7.5468499, 47.4691531 ], + [ 7.5465164, 47.4691402 ], + [ 7.5461301, 47.4691238 ], + [ 7.5459055, 47.4691108 ], + [ 7.5457003, 47.4691001 ], + [ 7.545498, 47.4690922 ], + [ 7.5453301, 47.4690888 ], + [ 7.5453222, 47.4703685 ], + [ 7.5434545, 47.4704857 ], + [ 7.5436264, 47.4705765 ], + [ 7.5437003, 47.470644 ], + [ 7.5437551, 47.4707293 ], + [ 7.5438122, 47.4708253 ], + [ 7.5438578, 47.4708936 ], + [ 7.5439145, 47.47099 ], + [ 7.5439516, 47.4710321 ], + [ 7.5440206, 47.4710798 ], + [ 7.5441411, 47.4711175 ], + [ 7.5442972, 47.471146 ], + [ 7.5443932, 47.4711579 ], + [ 7.5445757, 47.471175 ], + [ 7.5447245, 47.4711852 ], + [ 7.5450165, 47.4712198 ], + [ 7.5451565, 47.4712529 ], + [ 7.5452485, 47.4712966 ], + [ 7.5453231, 47.4713681 ], + [ 7.545337, 47.4713983 ], + [ 7.5453584, 47.4714228 ], + [ 7.5453714, 47.4714341 ], + [ 7.5453858, 47.4714444 ], + [ 7.5454015, 47.4714539 ], + [ 7.5454184, 47.4714624 ], + [ 7.5454364, 47.4714698 ], + [ 7.5454552, 47.4714761 ], + [ 7.5454749, 47.4714812 ], + [ 7.5454939, 47.471483 ], + [ 7.5455131, 47.4714837 ], + [ 7.5455322, 47.4714831 ], + [ 7.5456122, 47.4714639 ], + [ 7.5457002, 47.47145 ], + [ 7.5457896, 47.4714417 ], + [ 7.5458798, 47.4714389 ], + [ 7.5459700000000005, 47.4714416 ], + [ 7.5460595, 47.4714498 ], + [ 7.5461475, 47.4714635 ], + [ 7.5464201, 47.4715226 ], + [ 7.546506, 47.4715426 ], + [ 7.5465505, 47.4715489 ], + [ 7.5465956, 47.4715528 ], + [ 7.546641, 47.471554 ], + [ 7.5466864000000005, 47.4715527 ], + [ 7.5469914, 47.4715557 ], + [ 7.5472269, 47.4715347 ], + [ 7.5474592, 47.471501 ], + [ 7.5476868, 47.4714549 ], + [ 7.5481317, 47.47139 ], + [ 7.5487231, 47.4713039 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns100", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Amselfels", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Amselfels", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Amselfels", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Amselfels", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.0707507, 47.0421586 ], + [ 9.070741, 47.0420175 ], + [ 9.0707205, 47.0418769 ], + [ 9.0706892, 47.0417373 ], + [ 9.0706473, 47.0415989 ], + [ 9.0705949, 47.0414623 ], + [ 9.0705321, 47.0413277 ], + [ 9.0704591, 47.0411955 ], + [ 9.070376, 47.0410661 ], + [ 9.0702832, 47.0409399 ], + [ 9.0701808, 47.0408172 ], + [ 9.0700692, 47.0406983 ], + [ 9.0699486, 47.0405835 ], + [ 9.0698194, 47.0404733 ], + [ 9.069682, 47.0403678 ], + [ 9.0695366, 47.0402673 ], + [ 9.0693838, 47.0401722 ], + [ 9.0692239, 47.0400827 ], + [ 9.0690574, 47.0399991 ], + [ 9.0688846, 47.0399215 ], + [ 9.0687062, 47.0398502 ], + [ 9.0685226, 47.0397854 ], + [ 9.0683343, 47.0397272 ], + [ 9.0681417, 47.0396759 ], + [ 9.0679455, 47.0396315 ], + [ 9.0677462, 47.0395942 ], + [ 9.0675443, 47.0395641 ], + [ 9.0673403, 47.0395412 ], + [ 9.0671349, 47.0395257 ], + [ 9.0669286, 47.0395175 ], + [ 9.0667219, 47.0395168 ], + [ 9.0665155, 47.0395234 ], + [ 9.0663099, 47.0395374 ], + [ 9.0661056, 47.0395587 ], + [ 9.0659032, 47.0395874 ], + [ 9.0657033, 47.0396232 ], + [ 9.0655064, 47.0396661 ], + [ 9.0653131, 47.039716 ], + [ 9.0651238, 47.0397728 ], + [ 9.0649391, 47.0398363 ], + [ 9.0647596, 47.0399062 ], + [ 9.0645857, 47.0399825 ], + [ 9.0644178, 47.040065 ], + [ 9.0642565, 47.0401533 ], + [ 9.0641022, 47.0402472 ], + [ 9.0639553, 47.0403466 ], + [ 9.0638161, 47.0404511 ], + [ 9.0636852, 47.0405604 ], + [ 9.0635628, 47.0406742 ], + [ 9.0634493, 47.0407923 ], + [ 9.063345, 47.0409142 ], + [ 9.0632502, 47.0410398 ], + [ 9.0631651, 47.0411685 ], + [ 9.06309, 47.0413001 ], + [ 9.063025, 47.0414342 ], + [ 9.0629705, 47.0415705 ], + [ 9.0629264, 47.0417085 ], + [ 9.0628929, 47.0418479 ], + [ 9.0628702, 47.0419884 ], + [ 9.0628583, 47.0421294 ], + [ 9.0628571, 47.0422707 ], + [ 9.0628668, 47.042411799999996 ], + [ 9.0628873, 47.0425524 ], + [ 9.0629185, 47.042692 ], + [ 9.0629604, 47.0428304 ], + [ 9.0630128, 47.042967 ], + [ 9.0630756, 47.0431016 ], + [ 9.0631486, 47.0432338 ], + [ 9.0632316, 47.0433632 ], + [ 9.0633245, 47.0434894 ], + [ 9.0634268, 47.0436122 ], + [ 9.0635384, 47.0437311 ], + [ 9.063659, 47.0438458 ], + [ 9.0637882, 47.0439561 ], + [ 9.0639257, 47.0440616 ], + [ 9.064071, 47.044162 ], + [ 9.0642238, 47.0442571 ], + [ 9.0643838, 47.0443466 ], + [ 9.0645503, 47.0444303 ], + [ 9.064723, 47.0445079 ], + [ 9.0649014, 47.0445792 ], + [ 9.0650851, 47.044644 ], + [ 9.0652734, 47.0447022 ], + [ 9.065466, 47.0447535 ], + [ 9.0656622, 47.0447979 ], + [ 9.0658615, 47.0448352 ], + [ 9.0660635, 47.0448654 ], + [ 9.0662674, 47.0448882 ], + [ 9.0664728, 47.0449037 ], + [ 9.0666792, 47.0449119 ], + [ 9.0668859, 47.0449127 ], + [ 9.0670923, 47.044906 ], + [ 9.067298, 47.044892 ], + [ 9.0675023, 47.0448707 ], + [ 9.0677047, 47.0448421 ], + [ 9.0679046, 47.0448062 ], + [ 9.0681015, 47.0447633 ], + [ 9.0682949, 47.0447134 ], + [ 9.0684841, 47.0446566 ], + [ 9.0686688, 47.0445932 ], + [ 9.0688483, 47.0445232 ], + [ 9.0690223, 47.0444469 ], + [ 9.0691901, 47.0443645 ], + [ 9.0693514, 47.0442761 ], + [ 9.0695058, 47.0441822 ], + [ 9.0696527, 47.0440828 ], + [ 9.0697918, 47.0439783 ], + [ 9.0699228, 47.043869 ], + [ 9.0700451, 47.0437552 ], + [ 9.0701586, 47.0436371 ], + [ 9.0702629, 47.0435151 ], + [ 9.0703578, 47.0433896 ], + [ 9.0704428, 47.0432608 ], + [ 9.0705179, 47.0431292 ], + [ 9.0705829, 47.0429951 ], + [ 9.0706374, 47.0428588 ], + [ 9.0706815, 47.0427208 ], + [ 9.0707149, 47.0425814 ], + [ 9.0707376, 47.042441 ], + [ 9.0707496, 47.0422999 ], + [ 9.0707507, 47.0421586 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GLA0001", + "country" : "CHE", + "name" : [ + { + "text" : "Kantonsgefängnis Glarus", + "lang" : "de-CH" + }, + { + "text" : "Kantonsgefängnis Glarus", + "lang" : "fr-CH" + }, + { + "text" : "Kantonsgefängnis Glarus", + "lang" : "it-CH" + }, + { + "text" : "Kantonsgefängnis Glarus", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Glarus", + "lang" : "de-CH" + }, + { + "text" : "Kanton Glarus", + "lang" : "fr-CH" + }, + { + "text" : "Kanton Glarus", + "lang" : "it-CH" + }, + { + "text" : "Kanton Glarus", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Hauptabteilung Justiz", + "lang" : "de-CH" + }, + { + "text" : "Hauptabteilung Justiz", + "lang" : "fr-CH" + }, + { + "text" : "Hauptabteilung Justiz", + "lang" : "it-CH" + }, + { + "text" : "Hauptabteilung Justiz", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.gl.ch/verwaltung/sicherheit-und-justiz/justiz.html/1259", + "email" : "justiz@gl.ch", + "phone" : "0041556466881", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8660748, 47.4724394 ], + [ 7.8660682, 47.4722983 ], + [ 7.8660507, 47.4721575 ], + [ 7.8660224, 47.4720175 ], + [ 7.8659833, 47.4718788 ], + [ 7.8659336, 47.4717416 ], + [ 7.8658733, 47.4716064 ], + [ 7.8658027, 47.4714735 ], + [ 7.8657219, 47.4713433 ], + [ 7.8656312, 47.4712161 ], + [ 7.8655308, 47.4710923 ], + [ 7.8654209999999996, 47.4709723 ], + [ 7.8653021, 47.4708563 ], + [ 7.8651743, 47.4707447 ], + [ 7.8650382, 47.4706378 ], + [ 7.8648939, 47.4705359 ], + [ 7.864742, 47.4704392 ], + [ 7.8645829, 47.470348 ], + [ 7.8644169, 47.4702626 ], + [ 7.8642446, 47.4701833 ], + [ 7.8640664000000005, 47.4701101 ], + [ 7.8638828, 47.4700434 ], + [ 7.8636942, 47.4699832 ], + [ 7.8635013, 47.4699299 ], + [ 7.8633046, 47.4698835 ], + [ 7.8631045, 47.4698441 ], + [ 7.8629017, 47.4698118 ], + [ 7.8626966, 47.4697868 ], + [ 7.86249, 47.4697692 ], + [ 7.8622822, 47.4697588 ], + [ 7.8620739, 47.4697559 ], + [ 7.8618657, 47.4697604 ], + [ 7.8616581, 47.4697722 ], + [ 7.8614517, 47.4697914 ], + [ 7.861247, 47.4698179 ], + [ 7.8610447, 47.4698516 ], + [ 7.8608453, 47.4698924 ], + [ 7.8606493, 47.4699403 ], + [ 7.8604572, 47.4699951 ], + [ 7.8602697, 47.4700566 ], + [ 7.8600871, 47.4701246 ], + [ 7.8599101000000005, 47.4701991 ], + [ 7.859739, 47.4702797 ], + [ 7.8595744, 47.4703663 ], + [ 7.8594167, 47.4704586 ], + [ 7.8592664, 47.4705564 ], + [ 7.8591238, 47.4706594 ], + [ 7.8589893, 47.4707673 ], + [ 7.8588634, 47.4708798 ], + [ 7.8587463, 47.4709967 ], + [ 7.8586384, 47.4711175 ], + [ 7.85854, 47.471242 ], + [ 7.8584513, 47.4713698 ], + [ 7.8583726, 47.4715006 ], + [ 7.8583041, 47.471634 ], + [ 7.858246, 47.4717697 ], + [ 7.8581984, 47.4719072 ], + [ 7.8581616, 47.4720463 ], + [ 7.8581354999999995, 47.4721864 ], + [ 7.8581202, 47.4723273 ], + [ 7.8581159, 47.4724685 ], + [ 7.8581225, 47.4726097 ], + [ 7.8581399, 47.4727505 ], + [ 7.8581682, 47.4728904 ], + [ 7.8582073, 47.4730292 ], + [ 7.858257, 47.4731664 ], + [ 7.8583172, 47.4733016 ], + [ 7.8583878, 47.4734345 ], + [ 7.8584686, 47.4735647 ], + [ 7.8585593, 47.4736919 ], + [ 7.8586597, 47.4738157 ], + [ 7.8587695, 47.4739357 ], + [ 7.8588884, 47.4740517 ], + [ 7.8590161, 47.4741633 ], + [ 7.8591523, 47.4742702 ], + [ 7.8592965, 47.4743722 ], + [ 7.8594484, 47.4744689 ], + [ 7.8596076, 47.47456 ], + [ 7.8597735, 47.4746454 ], + [ 7.8599459, 47.4747248 ], + [ 7.8601241, 47.474798 ], + [ 7.8603077, 47.4748647 ], + [ 7.8604963, 47.4749248 ], + [ 7.8606891999999995, 47.4749782 ], + [ 7.860886, 47.4750246 ], + [ 7.861086, 47.475064 ], + [ 7.8612889, 47.4750963 ], + [ 7.861494, 47.4751213 ], + [ 7.8617007, 47.475139 ], + [ 7.8619085, 47.4751493 ], + [ 7.8621168, 47.4751522 ], + [ 7.862325, 47.4751478 ], + [ 7.8625327, 47.4751359 ], + [ 7.8627391, 47.4751167 ], + [ 7.8629437, 47.4750902 ], + [ 7.8631461, 47.4750565 ], + [ 7.8633455, 47.4750157 ], + [ 7.8635415, 47.4749678 ], + [ 7.8637336, 47.474913 ], + [ 7.8639211, 47.4748515 ], + [ 7.8641037, 47.4747834 ], + [ 7.8642807999999995, 47.474709 ], + [ 7.8644518, 47.4746283 ], + [ 7.8646164, 47.4745417 ], + [ 7.8647741, 47.4744494 ], + [ 7.8649245, 47.4743516 ], + [ 7.8650671, 47.4742486 ], + [ 7.8652014999999995, 47.4741407 ], + [ 7.8653275, 47.4740282 ], + [ 7.8654445, 47.4739113 ], + [ 7.8655524, 47.4737905 ], + [ 7.8656508, 47.473666 ], + [ 7.8657395, 47.4735382 ], + [ 7.8658182, 47.4734073 ], + [ 7.8658867, 47.4732739 ], + [ 7.8659448, 47.4731383 ], + [ 7.8659923, 47.4730007 ], + [ 7.8660292, 47.4728617 ], + [ 7.8660552, 47.4727216 ], + [ 7.8660704, 47.4725807 ], + [ 7.8660748, 47.4724394 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0083", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Ormalingen", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Ormalingen", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Ormalingen", + "lang" : "it-CH" + }, + { + "text" : "Substation Ormalingen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5047118, 47.4386894 ], + [ 7.5046802, 47.4380756 ], + [ 7.5045869, 47.4374648 ], + [ 7.5044322999999995, 47.4368596 ], + [ 7.5042173, 47.4362631 ], + [ 7.5039428, 47.4356779 ], + [ 7.50361, 47.4351068 ], + [ 7.5032206, 47.4345524 ], + [ 7.5027764, 47.4340173 ], + [ 7.5022794, 47.433504 ], + [ 7.5017319, 47.433015 ], + [ 7.5011366, 47.4325524 ], + [ 7.5004961, 47.4321185 ], + [ 7.4998135, 47.4317152 ], + [ 7.4990919, 47.4313445 ], + [ 7.4983347, 47.4310081 ], + [ 7.4975455, 47.4307075 ], + [ 7.4967279, 47.4304441 ], + [ 7.4958857, 47.4302192 ], + [ 7.4950229, 47.4300339 ], + [ 7.4941434, 47.4298889 ], + [ 7.4932514, 47.429785 ], + [ 7.4923511, 47.4297226 ], + [ 7.4914466, 47.429702 ], + [ 7.4905421, 47.4297234 ], + [ 7.4896418, 47.4297866 ], + [ 7.4887501, 47.4298913 ], + [ 7.4878709, 47.4300371 ], + [ 7.4870084, 47.4302232 ], + [ 7.4861667, 47.4304489 ], + [ 7.4853496, 47.430713 ], + [ 7.4845609, 47.4310143 ], + [ 7.4838044, 47.4313514 ], + [ 7.4830836, 47.4317227 ], + [ 7.4824017, 47.4321266 ], + [ 7.4817621, 47.4325611 ], + [ 7.4811676, 47.4330242 ], + [ 7.4806211, 47.4335137 ], + [ 7.4801251, 47.4340274 ], + [ 7.4796819, 47.4345629 ], + [ 7.4792936, 47.4351177 ], + [ 7.478962, 47.4356891 ], + [ 7.4786886, 47.4362745 ], + [ 7.4784747, 47.4368713 ], + [ 7.4783214, 47.4374765 ], + [ 7.4782292, 47.4380875 ], + [ 7.4781988, 47.4387013 ], + [ 7.4782301, 47.4393151 ], + [ 7.4783232, 47.4399259 ], + [ 7.4784774, 47.4405311 ], + [ 7.4786922, 47.4411277 ], + [ 7.4789664, 47.441713 ], + [ 7.479299, 47.4422842 ], + [ 7.4796882, 47.4428386 ], + [ 7.4801323, 47.4433738 ], + [ 7.4806291, 47.4438872 ], + [ 7.4811765, 47.4443763 ], + [ 7.4817718, 47.444839 ], + [ 7.4824123, 47.445273 ], + [ 7.483095, 47.4456763 ], + [ 7.4838167, 47.4460472 ], + [ 7.4845739, 47.4463837 ], + [ 7.4853633, 47.4466844 ], + [ 7.4861811, 47.4469478 ], + [ 7.4870235, 47.4471728 ], + [ 7.4878866, 47.4473582 ], + [ 7.4887663, 47.4475032 ], + [ 7.4896586, 47.4476072 ], + [ 7.4905593, 47.4476696 ], + [ 7.4914641, 47.4476902 ], + [ 7.4923689, 47.4476688 ], + [ 7.4932694, 47.4476056 ], + [ 7.4941615, 47.4475008 ], + [ 7.4950409, 47.447355 ], + [ 7.4959036, 47.4471688 ], + [ 7.4967456, 47.4469431 ], + [ 7.4975629, 47.4466789 ], + [ 7.4983517, 47.4463775 ], + [ 7.4991083, 47.4460403 ], + [ 7.4998293, 47.4456688 ], + [ 7.5005111, 47.4452649 ], + [ 7.5011508, 47.4448303 ], + [ 7.5017452, 47.4443671 ], + [ 7.5022915999999995, 47.4438774 ], + [ 7.5027875, 47.4433636 ], + [ 7.5032305, 47.4428281 ], + [ 7.5036187, 47.4422732 ], + [ 7.5039501, 47.4417018 ], + [ 7.5042232, 47.4411162 ], + [ 7.5044368, 47.4405194 ], + [ 7.5045899, 47.4399142 ], + [ 7.5046817, 47.4393032 ], + [ 7.5047118, 47.4386894 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSPD001", + "country" : "CHE", + "name" : [ + { + "text" : "LSPD Dittingen", + "lang" : "de-CH" + }, + { + "text" : "LSPD Dittingen", + "lang" : "fr-CH" + }, + { + "text" : "LSPD Dittingen", + "lang" : "it-CH" + }, + { + "text" : "LSPD Dittingen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Segelfluggruppe Dittingen", + "lang" : "de-CH" + }, + { + "text" : "Segelfluggruppe Dittingen", + "lang" : "fr-CH" + }, + { + "text" : "Segelfluggruppe Dittingen", + "lang" : "it-CH" + }, + { + "text" : "Segelfluggruppe Dittingen", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Philipp Glogg", + "lang" : "de-CH" + }, + { + "text" : "Philipp Glogg", + "lang" : "fr-CH" + }, + { + "text" : "Philipp Glogg", + "lang" : "it-CH" + }, + { + "text" : "Philipp Glogg", + "lang" : "en-GB" + } + ], + "siteURL" : "https://sg-dittingen.ch/e/index.php/c-buero#regelungen", + "email" : "info@sg-dittingen.ch", + "phone" : "0041796458361", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P01DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6505798, 47.4883677 ], + [ 7.6505206, 47.4882651 ], + [ 7.6512826, 47.4881861 ], + [ 7.6532282, 47.4879799 ], + [ 7.6543944, 47.4877298 ], + [ 7.6543946, 47.4877298 ], + [ 7.6543949, 47.4877297 ], + [ 7.6544251, 47.4877232 ], + [ 7.6559308999999995, 47.4873992 ], + [ 7.6555055, 47.4872039 ], + [ 7.6546061, 47.4867986 ], + [ 7.6536719, 47.4863751 ], + [ 7.6528203999999995, 47.4861467 ], + [ 7.6516497, 47.485885 ], + [ 7.6509887, 47.4857258 ], + [ 7.6502851, 47.4853899 ], + [ 7.6474608, 47.4864882 ], + [ 7.6474639, 47.4865181 ], + [ 7.6474571000000005, 47.4865477 ], + [ 7.6474407, 47.4865755 ], + [ 7.6473524, 47.4866882 ], + [ 7.6473184, 47.486747 ], + [ 7.647293, 47.4868078 ], + [ 7.6472847999999995, 47.4868454 ], + [ 7.6472805, 47.4868833 ], + [ 7.6472801, 47.4869213 ], + [ 7.6472835, 47.4869593 ], + [ 7.6472925, 47.4869948 ], + [ 7.6473055, 47.4870297 ], + [ 7.6473521, 47.487102 ], + [ 7.6474071, 47.4871715 ], + [ 7.6474440999999995, 47.4872108 ], + [ 7.6474844, 47.4872486 ], + [ 7.647528, 47.4872846 ], + [ 7.6475748, 47.4873188 ], + [ 7.6476219, 47.4873527 ], + [ 7.6476718, 47.4873849 ], + [ 7.6477242, 47.4874151 ], + [ 7.647779, 47.4874433 ], + [ 7.6478464, 47.487476 ], + [ 7.6479183, 47.4875038 ], + [ 7.6479674, 47.487524 ], + [ 7.6480147, 47.487546 ], + [ 7.6480453, 47.4875655 ], + [ 7.6480712, 47.4875879 ], + [ 7.6480841, 47.4876087 ], + [ 7.6480877, 47.4876312 ], + [ 7.6480817, 47.4876534 ], + [ 7.6480668, 47.4876736 ], + [ 7.6480439, 47.48769 ], + [ 7.6480152, 47.4877014 ], + [ 7.6479786, 47.4877119 ], + [ 7.6479408, 47.48772 ], + [ 7.647902, 47.4877256 ], + [ 7.6478626, 47.4877287 ], + [ 7.647632, 47.4877313 ], + [ 7.6474014, 47.4877343 ], + [ 7.6468027, 47.4877461 ], + [ 7.6467667, 47.4877469 ], + [ 7.6467313, 47.487751 ], + [ 7.6466666, 47.4877657 ], + [ 7.6466028999999995, 47.4877822 ], + [ 7.6465166, 47.4878119 ], + [ 7.6464338, 47.4878459 ], + [ 7.6463415999999995, 47.4878922 ], + [ 7.6462544, 47.4879428 ], + [ 7.6461726, 47.4879974 ], + [ 7.6460968, 47.4880558 ], + [ 7.6460272, 47.4881176 ], + [ 7.6459642, 47.4881827 ], + [ 7.6459067, 47.488251 ], + [ 7.645857, 47.4883221 ], + [ 7.645796, 47.4884271 ], + [ 7.6457387, 47.488533 ], + [ 7.6455653, 47.488904 ], + [ 7.6455509, 47.4889423 ], + [ 7.645544, 47.4889815 ], + [ 7.6455448, 47.489021 ], + [ 7.6455532999999996, 47.48906 ], + [ 7.6455722, 47.4891042 ], + [ 7.6455955, 47.4891474 ], + [ 7.645623, 47.4891895 ], + [ 7.6456547, 47.4892301 ], + [ 7.6456843, 47.4892754 ], + [ 7.6457197, 47.4893187 ], + [ 7.6457606, 47.4893597 ], + [ 7.6458067, 47.4893982 ], + [ 7.6458300999999995, 47.4894144 ], + [ 7.6458579, 47.4894271 ], + [ 7.6461713, 47.4895432 ], + [ 7.646268, 47.4895719 ], + [ 7.6463671, 47.4895964 ], + [ 7.6464683, 47.4896167 ], + [ 7.6465711, 47.4896326 ], + [ 7.6466427, 47.4896373 ], + [ 7.6467145, 47.4896402 ], + [ 7.64781, 47.4896758 ], + [ 7.6479374, 47.4896803 ], + [ 7.6480649, 47.4896841 ], + [ 7.6482501, 47.4896844 ], + [ 7.6484353, 47.4896798 ], + [ 7.6485057, 47.4896768 ], + [ 7.6485757, 47.4896708 ], + [ 7.6486449, 47.4896618 ], + [ 7.6487131999999995, 47.4896498 ], + [ 7.6487949, 47.4896368 ], + [ 7.648878, 47.4896293 ], + [ 7.6489559, 47.4896257 ], + [ 7.649034, 47.489626 ], + [ 7.6490651, 47.4896434 ], + [ 7.6490899, 47.489665 ], + [ 7.6505656, 47.4897374 ], + [ 7.6505798, 47.4883677 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr013", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Hornichopf", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Hornichopf", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Hornichopf", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Hornichopf", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.0284125, 46.2145764 ], + [ 6.028478, 46.214608 ], + [ 6.0280412, 46.2148028 ], + [ 6.0271759, 46.2156676 ], + [ 6.0268532, 46.2166965 ], + [ 6.0271223, 46.2177328 ], + [ 6.0279422, 46.2186187 ], + [ 6.0291882, 46.2192194 ], + [ 6.0306704, 46.2194433 ], + [ 6.0308595, 46.2194196 ], + [ 6.0306347, 46.2201366 ], + [ 6.0309039, 46.2211728 ], + [ 6.0317239, 46.2220587 ], + [ 6.03297, 46.2226593 ], + [ 6.0344523, 46.2228833 ], + [ 6.0359453, 46.2226964 ], + [ 6.0372216, 46.2221271 ], + [ 6.0380868, 46.2212622 ], + [ 6.0384093, 46.2202333 ], + [ 6.03814, 46.219197 ], + [ 6.0373199, 46.2183112 ], + [ 6.0361174, 46.2177316 ], + [ 6.0369252, 46.2176305 ], + [ 6.0382013, 46.2170612 ], + [ 6.0390665, 46.2161963 ], + [ 6.0393889, 46.2151674 ], + [ 6.0392032, 46.2144529 ], + [ 6.0392406, 46.2144431 ], + [ 6.039835, 46.2141114 ], + [ 6.0401144, 46.2139661 ], + [ 6.0401637, 46.213928 ], + [ 6.0401939, 46.2139112 ], + [ 6.0402834, 46.2138425 ], + [ 6.0402882, 46.2138389 ], + [ 6.0403146, 46.2138188 ], + [ 6.0403935, 46.213758 ], + [ 6.0403988, 46.213752 ], + [ 6.0404085, 46.2137464 ], + [ 6.0404785, 46.213692 ], + [ 6.0412458, 46.2127883 ], + [ 6.0414587, 46.2117498 ], + [ 6.0413859, 46.2115516 ], + [ 6.0414117, 46.2112806 ], + [ 6.0409284, 46.2102859 ], + [ 6.039935, 46.2094945 ], + [ 6.039881, 46.2094655 ], + [ 6.0388117, 46.2090592 ], + [ 6.0376138, 46.2089027 ], + [ 6.036405, 46.2090115 ], + [ 6.0353041, 46.2093749 ], + [ 6.0350909, 46.2095152 ], + [ 6.0343265, 46.2099401 ], + [ 6.0342657, 46.2099865 ], + [ 6.0337447, 46.2105866 ], + [ 6.0337254, 46.2105897 ], + [ 6.0336121, 46.2106382 ], + [ 6.0327621, 46.2102285 ], + [ 6.0312801, 46.2100046 ], + [ 6.0297875, 46.2101914 ], + [ 6.0285114, 46.2107605 ], + [ 6.0276462, 46.2116254 ], + [ 6.0273235, 46.2126543 ], + [ 6.0275926, 46.2136905 ], + [ 6.0284125, 46.2145764 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-11", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6354289, 47.4909309 ], + [ 7.6352655, 47.4908843 ], + [ 7.6348856, 47.4906891 ], + [ 7.634869, 47.4906789 ], + [ 7.6348026, 47.4906669 ], + [ 7.6347841, 47.4906638 ], + [ 7.6346144, 47.490621 ], + [ 7.6345705, 47.4906228 ], + [ 7.6345246, 47.4906124 ], + [ 7.6344359, 47.4906077 ], + [ 7.6343568, 47.4906107 ], + [ 7.6342685, 47.4906097 ], + [ 7.6341126, 47.4906176 ], + [ 7.6340404, 47.4906301 ], + [ 7.6339051, 47.4906804 ], + [ 7.6337373, 47.4907535 ], + [ 7.6336422, 47.4908191 ], + [ 7.63355, 47.4908865 ], + [ 7.6334745, 47.4909399 ], + [ 7.6334459, 47.4909577 ], + [ 7.6334921, 47.4909841 ], + [ 7.6335603, 47.4910346 ], + [ 7.6336829, 47.4911085 ], + [ 7.6337672, 47.4911516 ], + [ 7.6338977, 47.4912033 ], + [ 7.6340121, 47.4912291 ], + [ 7.6341204, 47.4912387 ], + [ 7.6340482, 47.4912802 ], + [ 7.6340167999999995, 47.4912902 ], + [ 7.6339158, 47.4913043 ], + [ 7.6339051, 47.4913056 ], + [ 7.6338834, 47.4913063 ], + [ 7.633866, 47.4913074 ], + [ 7.6338487, 47.4913093 ], + [ 7.6338315, 47.4913119 ], + [ 7.6337843, 47.4913219 ], + [ 7.633697, 47.4913374 ], + [ 7.633569, 47.4913573 ], + [ 7.6333887, 47.4913806 ], + [ 7.633205, 47.4914046 ], + [ 7.6329036, 47.491452 ], + [ 7.6328587, 47.4914591 ], + [ 7.6327823, 47.4914709 ], + [ 7.6325713, 47.4914977 ], + [ 7.6323484, 47.4915566 ], + [ 7.6321502, 47.4915927 ], + [ 7.6318246, 47.4916189 ], + [ 7.6317345, 47.4916228 ], + [ 7.6316262, 47.4916106 ], + [ 7.6314376, 47.4915714 ], + [ 7.6313234, 47.4915629 ], + [ 7.6311108999999995, 47.4915485 ], + [ 7.6309425, 47.4915463 ], + [ 7.6306322, 47.4916432 ], + [ 7.6303726, 47.4916507 ], + [ 7.6300840999999995, 47.4916697 ], + [ 7.6299839, 47.4916637 ], + [ 7.6297293, 47.4916406 ], + [ 7.6297353999999995, 47.4916764 ], + [ 7.6298099, 47.4917702 ], + [ 7.6298282, 47.4918394 ], + [ 7.6297884, 47.4919148 ], + [ 7.6297493, 47.4921928 ], + [ 7.6297161, 47.4923691 ], + [ 7.6296266, 47.4923394 ], + [ 7.6292412, 47.4922049 ], + [ 7.629166, 47.4921785 ], + [ 7.6290822, 47.4921444 ], + [ 7.6290444, 47.4921641 ], + [ 7.6289229, 47.492176 ], + [ 7.6287785, 47.4921907 ], + [ 7.628624, 47.4921963 ], + [ 7.6285568, 47.4921966 ], + [ 7.628455, 47.4921896 ], + [ 7.6281058, 47.4921198 ], + [ 7.6280641, 47.4922187 ], + [ 7.6280947999999995, 47.4923731 ], + [ 7.6280798, 47.492551399999996 ], + [ 7.6284599, 47.4926058 ], + [ 7.6286239, 47.4926277 ], + [ 7.6286142, 47.4926624 ], + [ 7.628591, 47.4927364 ], + [ 7.6288277, 47.4927536 ], + [ 7.6293336, 47.4927992 ], + [ 7.6298431, 47.4928034 ], + [ 7.6300647, 47.4927786 ], + [ 7.630117, 47.4927742 ], + [ 7.6302015999999995, 47.4927414 ], + [ 7.6302071, 47.4927945 ], + [ 7.6302974, 47.492979 ], + [ 7.6303136, 47.4929759 ], + [ 7.6306893, 47.492904 ], + [ 7.6309118, 47.4925211 ], + [ 7.6310444, 47.4922931 ], + [ 7.6312296, 47.4921582 ], + [ 7.6313402, 47.4921131 ], + [ 7.6314975, 47.4921085 ], + [ 7.6316024, 47.4921184 ], + [ 7.6316177, 47.4921391 ], + [ 7.6320775, 47.4927622 ], + [ 7.6323109, 47.49308 ], + [ 7.6325393, 47.4933909 ], + [ 7.6327947, 47.4937414 ], + [ 7.6330055, 47.494028 ], + [ 7.6334469, 47.4943743 ], + [ 7.6336321, 47.4944824 ], + [ 7.6336778, 47.4944492 ], + [ 7.6341497, 47.4940862 ], + [ 7.6346644, 47.4936909 ], + [ 7.6348684, 47.4935305 ], + [ 7.6351738000000005, 47.4932905 ], + [ 7.6352731, 47.4932125 ], + [ 7.6353079, 47.4931847 ], + [ 7.6355106, 47.4932925 ], + [ 7.6357652, 47.4934999 ], + [ 7.6362993, 47.4938743 ], + [ 7.6365188, 47.4940132 ], + [ 7.6367344, 47.4941132 ], + [ 7.63712, 47.4942396 ], + [ 7.6376091, 47.4944313 ], + [ 7.6379047, 47.4945408 ], + [ 7.6382039, 47.4946467 ], + [ 7.6387269, 47.4948199 ], + [ 7.6395154, 47.4950639 ], + [ 7.6396332000000005, 47.4950966 ], + [ 7.6396739, 47.4950327 ], + [ 7.6399203, 47.4946455 ], + [ 7.6400582, 47.4944341 ], + [ 7.6389157, 47.4942506 ], + [ 7.6385872, 47.4941155 ], + [ 7.638616, 47.4939495 ], + [ 7.638103, 47.4936955 ], + [ 7.6374047, 47.4936925 ], + [ 7.6368863000000005, 47.493537 ], + [ 7.6365666, 47.4932068 ], + [ 7.6365965, 47.4930149 ], + [ 7.6364346, 47.492491 ], + [ 7.6367989, 47.4921256 ], + [ 7.636691, 47.4917278 ], + [ 7.6369196, 47.4916945 ], + [ 7.6371964, 47.4916816 ], + [ 7.6374977, 47.4916828 ], + [ 7.6381027, 47.4916649 ], + [ 7.6382631, 47.4916552 ], + [ 7.6381043, 47.4916519 ], + [ 7.6379925, 47.4916331 ], + [ 7.6379015, 47.4916103 ], + [ 7.6378362, 47.4915836 ], + [ 7.6377602, 47.4915378 ], + [ 7.6376691999999995, 47.4914872 ], + [ 7.6375281, 47.4914979 ], + [ 7.6374543, 47.4914899 ], + [ 7.6373997, 47.4914603 ], + [ 7.6373481, 47.4914277 ], + [ 7.6373045, 47.4913773 ], + [ 7.6372564, 47.4913495 ], + [ 7.6371586, 47.4913048 ], + [ 7.6370001, 47.4912379 ], + [ 7.6369508, 47.4912144 ], + [ 7.6368409, 47.4911758 ], + [ 7.6366978, 47.4911816 ], + [ 7.6366377, 47.4911814 ], + [ 7.6365055, 47.4911641 ], + [ 7.6362494, 47.4911161 ], + [ 7.6359941, 47.4910652 ], + [ 7.6358675, 47.4910514 ], + [ 7.6356122, 47.4909882 ], + [ 7.6354289, 47.4909309 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns231", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Ermitage - Chilchholz", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Ermitage - Chilchholz", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Ermitage - Chilchholz", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Ermitage - Chilchholz", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.1439645, 47.226237 ], + [ 8.143843, 47.2238839 ], + [ 8.1435409, 47.2215384 ], + [ 8.143059, 47.2192069 ], + [ 8.1423988, 47.2168957 ], + [ 8.141562, 47.2146112 ], + [ 8.140551, 47.2123597 ], + [ 8.1393685, 47.2101474 ], + [ 8.1380179, 47.2079802 ], + [ 8.1365027, 47.2058641 ], + [ 8.1348273, 47.203805 ], + [ 8.1329961, 47.2018084 ], + [ 8.1310143, 47.1998798 ], + [ 8.1288872, 47.1980245 ], + [ 8.1266207, 47.1962476 ], + [ 8.1242211, 47.1945539 ], + [ 8.1216948, 47.1929481 ], + [ 8.1190489, 47.1914346 ], + [ 8.1162905, 47.1900174 ], + [ 8.1134273, 47.1887006 ], + [ 8.110467, 47.1874876 ], + [ 8.1074178, 47.1863818 ], + [ 8.1042879, 47.1853862 ], + [ 8.1010861, 47.1845036 ], + [ 8.097821, 47.1837364 ], + [ 8.0945015, 47.1830866 ], + [ 8.0911368, 47.182556 ], + [ 8.087736, 47.1821461 ], + [ 8.0843085, 47.181858 ], + [ 8.0808635, 47.1816926 ], + [ 8.0774106, 47.1816501 ], + [ 8.073959200000001, 47.1817309 ], + [ 8.0705187, 47.1819345 ], + [ 8.0670984, 47.1822606 ], + [ 8.0637079, 47.1827081 ], + [ 8.0603562, 47.1832759 ], + [ 8.0570527, 47.1839625 ], + [ 8.0538063, 47.1847659 ], + [ 8.050626, 47.1856839 ], + [ 8.0475203, 47.186714 ], + [ 8.0444978, 47.1878535 ], + [ 8.0415669, 47.1890991 ], + [ 8.0387354, 47.1904476 ], + [ 8.0360112, 47.191895099999996 ], + [ 8.0334017, 47.1934378 ], + [ 8.0309141, 47.1950715 ], + [ 8.0285552, 47.1967915 ], + [ 8.0263315, 47.1985934 ], + [ 8.024249, 47.200472 ], + [ 8.0223134, 47.2024223 ], + [ 8.0205302, 47.2044389 ], + [ 8.0189041, 47.2065164 ], + [ 8.0174397, 47.208649 ], + [ 8.0161409, 47.2108309 ], + [ 8.0150114, 47.2130561 ], + [ 8.0140543, 47.2153185 ], + [ 8.0132722, 47.2176119 ], + [ 8.0126673, 47.2199301 ], + [ 8.0122413, 47.2222667 ], + [ 8.0119953, 47.2246152 ], + [ 8.01193, 47.2269693 ], + [ 8.0120457, 47.2293225 ], + [ 8.0123421, 47.2316683 ], + [ 8.0128183, 47.2340004 ], + [ 8.0134731, 47.2363123 ], + [ 8.0143048, 47.2385977 ], + [ 8.015311, 47.2408503 ], + [ 8.016489, 47.2430639 ], + [ 8.0178356, 47.2452325 ], + [ 8.0193472, 47.2473501 ], + [ 8.0210196, 47.2494109 ], + [ 8.0228482, 47.2514092 ], + [ 8.024828, 47.2533397 ], + [ 8.0269536, 47.2551968 ], + [ 8.0292193, 47.2569757 ], + [ 8.0316187, 47.2586713 ], + [ 8.0341454, 47.2602791 ], + [ 8.0367923, 47.2617946 ], + [ 8.0395523, 47.2632136 ], + [ 8.0424177, 47.2645323 ], + [ 8.0453807, 47.265747 ], + [ 8.0484332, 47.2668544 ], + [ 8.0515668, 47.2678514 ], + [ 8.0547728, 47.2687354 ], + [ 8.058042499999999, 47.2695039 ], + [ 8.0613669, 47.2701547 ], + [ 8.0647368, 47.2706861 ], + [ 8.0681431, 47.2710967 ], + [ 8.0715763, 47.2713852 ], + [ 8.075027, 47.271551 ], + [ 8.0784857, 47.2715935 ], + [ 8.0819429, 47.2715126 ], + [ 8.0853892, 47.2713086 ], + [ 8.088815, 47.270982 ], + [ 8.092211, 47.2705337 ], + [ 8.0955677, 47.269965 ], + [ 8.0988761, 47.2692774 ], + [ 8.1021269, 47.2684728 ], + [ 8.1053114, 47.2675533 ], + [ 8.1084206, 47.2665217 ], + [ 8.1114461, 47.2653805 ], + [ 8.1143797, 47.2641331 ], + [ 8.1172131, 47.2627828 ], + [ 8.1199387, 47.2613334 ], + [ 8.122549, 47.2597887 ], + [ 8.1250368, 47.2581532 ], + [ 8.1273954, 47.2564311 ], + [ 8.1296181, 47.2546274 ], + [ 8.131699, 47.2527469 ], + [ 8.1336324, 47.2507948 ], + [ 8.1354129, 47.2487764 ], + [ 8.1370358, 47.2466973 ], + [ 8.1384964, 47.2445632 ], + [ 8.139791, 47.24238 ], + [ 8.1409159, 47.2401536 ], + [ 8.1418681, 47.2378901 ], + [ 8.1426449, 47.2355958 ], + [ 8.1432444, 47.233277 ], + [ 8.1436648, 47.23094 ], + [ 8.143905, 47.2285911 ], + [ 8.1439645, 47.226237 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSPN001", + "country" : "CHE", + "name" : [ + { + "text" : "LSPN Triengen", + "lang" : "de-CH" + }, + { + "text" : "LSPN Triengen", + "lang" : "fr-CH" + }, + { + "text" : "LSPN Triengen", + "lang" : "it-CH" + }, + { + "text" : "LSPN Triengen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Triengen Airport", + "lang" : "de-CH" + }, + { + "text" : "Triengen Airport", + "lang" : "fr-CH" + }, + { + "text" : "Triengen Airport", + "lang" : "it-CH" + }, + { + "text" : "Triengen Airport", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Bruno Müller", + "lang" : "de-CH" + }, + { + "text" : "Bruno Müller", + "lang" : "fr-CH" + }, + { + "text" : "Bruno Müller", + "lang" : "it-CH" + }, + { + "text" : "Bruno Müller", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.flyingranch.ch/", + "email" : "info@flyingranch.ch", + "phone" : "0041419333880", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P01DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6247947, 47.4927816 ], + [ 7.6247888, 47.4926404 ], + [ 7.624772, 47.4924996 ], + [ 7.6247443, 47.4923596 ], + [ 7.6247058, 47.4922208 ], + [ 7.6246567, 47.4920835 ], + [ 7.624597, 47.4919481 ], + [ 7.624527, 47.4918151 ], + [ 7.6244467, 47.4916847 ], + [ 7.6243566, 47.4915574 ], + [ 7.6242567, 47.4914334 ], + [ 7.6241474, 47.4913131 ], + [ 7.6240289, 47.4911969 ], + [ 7.6239017, 47.491085 ], + [ 7.6237659, 47.4909778 ], + [ 7.6236221, 47.4908756 ], + [ 7.6234706, 47.4907786 ], + [ 7.6233118, 47.4906871 ], + [ 7.6231461, 47.4906014 ], + [ 7.6229741, 47.4905216 ], + [ 7.6227962, 47.4904481 ], + [ 7.6226128, 47.490381 ], + [ 7.6224244, 47.4903205 ], + [ 7.6222317, 47.4902667 ], + [ 7.6220351, 47.4902199 ], + [ 7.6218351, 47.4901801 ], + [ 7.6216324, 47.4901474 ], + [ 7.6214274, 47.490122 ], + [ 7.6212207, 47.4901039 ], + [ 7.6210129, 47.4900931 ], + [ 7.6208045, 47.4900898 ], + [ 7.6205962, 47.4900938 ], + [ 7.6203883999999995, 47.4901052 ], + [ 7.6201819, 47.490124 ], + [ 7.6199770000000004, 47.49015 ], + [ 7.6197745, 47.4901833 ], + [ 7.6195748, 47.4902237 ], + [ 7.6193785, 47.4902712 ], + [ 7.6191861, 47.4903256 ], + [ 7.6189982, 47.4903867 ], + [ 7.6188153, 47.4904544 ], + [ 7.6186378, 47.4905284 ], + [ 7.6184663, 47.4906087 ], + [ 7.6183013, 47.490695 ], + [ 7.6181431, 47.4907869 ], + [ 7.6179923, 47.4908844 ], + [ 7.6178492, 47.4909871 ], + [ 7.6177142, 47.4910947 ], + [ 7.6175877, 47.491207 ], + [ 7.61747, 47.4913236 ], + [ 7.6173615, 47.4914442 ], + [ 7.6172625, 47.4915685 ], + [ 7.6171732, 47.4916961 ], + [ 7.6170939, 47.4918268 ], + [ 7.6170247, 47.49196 ], + [ 7.616966, 47.4920956 ], + [ 7.6169177999999995, 47.492233 ], + [ 7.6168803, 47.492372 ], + [ 7.6168534999999995, 47.4925121 ], + [ 7.6168376, 47.4926529 ], + [ 7.6168327, 47.4927941 ], + [ 7.6168386, 47.4929353 ], + [ 7.6168554, 47.4930761 ], + [ 7.6168831, 47.4932161 ], + [ 7.6169215, 47.493355 ], + [ 7.6169706999999995, 47.4934923 ], + [ 7.6170303, 47.4936276 ], + [ 7.6171003, 47.4937607 ], + [ 7.6171805, 47.4938911 ], + [ 7.6172707, 47.4940184 ], + [ 7.6173706, 47.4941424 ], + [ 7.6174799, 47.4942627 ], + [ 7.6175983, 47.4943789 ], + [ 7.6177256, 47.4944908 ], + [ 7.6178612999999995, 47.494598 ], + [ 7.6180050999999995, 47.4947002 ], + [ 7.6181566, 47.4947973 ], + [ 7.6183154, 47.4948887 ], + [ 7.6184811, 47.4949745 ], + [ 7.6186530999999995, 47.4950542 ], + [ 7.6188310999999995, 47.4951278 ], + [ 7.6190145000000005, 47.4951949 ], + [ 7.6192028, 47.4952554 ], + [ 7.6193956, 47.4953092 ], + [ 7.6195922, 47.495356 ], + [ 7.6197922, 47.4953958 ], + [ 7.619995, 47.4954285 ], + [ 7.6202000000000005, 47.4954539 ], + [ 7.6204067, 47.495472 ], + [ 7.6206146, 47.4954828 ], + [ 7.6208229, 47.4954861 ], + [ 7.6210313, 47.4954821 ], + [ 7.621239, 47.4954707 ], + [ 7.6214455999999995, 47.4954519 ], + [ 7.6216505, 47.4954259 ], + [ 7.621853, 47.4953926 ], + [ 7.6220527, 47.4953521 ], + [ 7.6222491, 47.4953047 ], + [ 7.6224414, 47.4952503 ], + [ 7.6226294, 47.4951892 ], + [ 7.6228123, 47.4951215 ], + [ 7.6229898, 47.4950474 ], + [ 7.6231613, 47.4949671 ], + [ 7.6233263, 47.4948809 ], + [ 7.6234845, 47.4947889 ], + [ 7.6236353999999995, 47.4946914 ], + [ 7.6237785, 47.4945887 ], + [ 7.6239135000000005, 47.4944811 ], + [ 7.62404, 47.4943688 ], + [ 7.6241576, 47.4942522 ], + [ 7.6242661, 47.4941316 ], + [ 7.6243651, 47.4940073 ], + [ 7.6244544, 47.4938796 ], + [ 7.6245337, 47.493749 ], + [ 7.6246028, 47.4936157 ], + [ 7.6246615, 47.4934802 ], + [ 7.6247097, 47.4933428 ], + [ 7.6247472, 47.4932038 ], + [ 7.6247739, 47.4930637 ], + [ 7.6247898, 47.4929228 ], + [ 7.6247947, 47.4927816 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "ARL0001", + "country" : "CHE", + "name" : [ + { + "text" : "Gefängnis Arlesheim", + "lang" : "de-CH" + }, + { + "text" : "Gefängnis Arlesheim", + "lang" : "fr-CH" + }, + { + "text" : "Gefängnis Arlesheim", + "lang" : "it-CH" + }, + { + "text" : "Gefängnis Arlesheim", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Justizvollzug Basel-Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Amt für Justizvollzug Basel-Landschaft", + "lang" : "fr-CH" + }, + { + "text" : "Amt für Justizvollzug Basel-Landschaft", + "lang" : "it-CH" + }, + { + "text" : "Amt für Justizvollzug Basel-Landschaft", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Amtsleitung", + "lang" : "de-CH" + }, + { + "text" : "Amtsleitung", + "lang" : "fr-CH" + }, + { + "text" : "Amtsleitung", + "lang" : "it-CH" + }, + { + "text" : "Amtsleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Nicolas Pozar", + "lang" : "de-CH" + }, + { + "text" : "Nicolas Pozar", + "lang" : "fr-CH" + }, + { + "text" : "Nicolas Pozar", + "lang" : "it-CH" + }, + { + "text" : "Nicolas Pozar", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/sicherheitsdirektion/bv-sid/justizvollzug", + "email" : "kanzlei.ajv@bl.ch", + "phone" : "0041615529045", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P21DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.88164, 47.4095946 ], + [ 7.8817201, 47.4096342 ], + [ 7.8817965, 47.4096785 ], + [ 7.8818503, 47.4097207 ], + [ 7.8818993, 47.4097623 ], + [ 7.8819541, 47.409815 ], + [ 7.8820259, 47.4098804 ], + [ 7.8820612, 47.4099593 ], + [ 7.8821074, 47.4100645 ], + [ 7.8821373999999995, 47.4102367 ], + [ 7.8821542, 47.4103552 ], + [ 7.882149, 47.4104888 ], + [ 7.8820525, 47.4107605 ], + [ 7.8820347, 47.4107942 ], + [ 7.8818967, 47.4110556 ], + [ 7.8818486, 47.4112752 ], + [ 7.8819181, 47.4112899 ], + [ 7.881947, 47.4111229 ], + [ 7.882059, 47.4109193 ], + [ 7.8821753999999995, 47.4109438 ], + [ 7.8821692, 47.410809 ], + [ 7.8822436, 47.410792 ], + [ 7.8823358, 47.4106183 ], + [ 7.8823615, 47.4104379 ], + [ 7.882245, 47.4104076 ], + [ 7.8823039999999995, 47.4102202 ], + [ 7.8823486, 47.4100644 ], + [ 7.8822564, 47.4100249 ], + [ 7.8821622, 47.4099114 ], + [ 7.8820448, 47.4097983 ], + [ 7.8818836, 47.4096776 ], + [ 7.8817615, 47.4095896 ], + [ 7.8817053999999995, 47.4095432 ], + [ 7.88164, 47.4095946 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns188", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Mapprach - Hofmatt", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Mapprach - Hofmatt", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Mapprach - Hofmatt", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Mapprach - Hofmatt", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.2400709, 47.0032659 ], + [ 7.240274, 47.002812 ], + [ 7.2405607, 47.0030545 ], + [ 7.2408432, 47.0028868 ], + [ 7.2404181, 47.0024903 ], + [ 7.2404531, 47.0023617 ], + [ 7.2405365, 47.0022611 ], + [ 7.240663, 47.0018214 ], + [ 7.2409735, 47.0014216 ], + [ 7.2412051, 47.001227 ], + [ 7.2414287999999996, 47.000962 ], + [ 7.2417343, 47.0007718 ], + [ 7.2418583, 47.0005849 ], + [ 7.2427223, 46.9998119 ], + [ 7.2434638, 46.9990495 ], + [ 7.2442287, 46.998395 ], + [ 7.244496, 46.998114 ], + [ 7.2448175, 46.9978338 ], + [ 7.245375, 46.9974921 ], + [ 7.2456791, 46.9972461 ], + [ 7.245874, 46.996976599999996 ], + [ 7.246523, 46.9963211 ], + [ 7.2474355, 46.9955257 ], + [ 7.2481604, 46.9945644 ], + [ 7.2491205, 46.9935099 ], + [ 7.2502722, 46.9919673 ], + [ 7.2506549, 46.9915523 ], + [ 7.252178, 46.9897387 ], + [ 7.2525234, 46.9891888 ], + [ 7.2538301, 46.9876572 ], + [ 7.2551953000000005, 46.9870109 ], + [ 7.2557396, 46.9868714 ], + [ 7.2574482, 46.9862436 ], + [ 7.2586215, 46.9856975 ], + [ 7.2588866, 46.9855397 ], + [ 7.2589031, 46.9855297 ], + [ 7.2583112, 46.9848956 ], + [ 7.2581336, 46.9849573 ], + [ 7.2569969, 46.9853513 ], + [ 7.256447, 46.9854432 ], + [ 7.2560659, 46.9856557 ], + [ 7.2544702, 46.9861893 ], + [ 7.2538108, 46.9863502 ], + [ 7.2533747, 46.9865222 ], + [ 7.2531766, 46.9865731 ], + [ 7.2530015, 46.9866061 ], + [ 7.2528285, 46.9867174 ], + [ 7.2524066, 46.9868731 ], + [ 7.252218, 46.9869736 ], + [ 7.2520022, 46.9871307 ], + [ 7.2520018, 46.9872656 ], + [ 7.2518613, 46.9879752 ], + [ 7.2515397, 46.988785 ], + [ 7.2513628, 46.9890699 ], + [ 7.2510415, 46.9893276 ], + [ 7.2505143, 46.9899519 ], + [ 7.2502459, 46.9903446 ], + [ 7.2499554, 46.9907039 ], + [ 7.249418, 46.9911909 ], + [ 7.2492402, 46.9912931 ], + [ 7.2490418, 46.9913973 ], + [ 7.2488887, 46.9914769 ], + [ 7.2487718, 46.9915259 ], + [ 7.2486098, 46.9915748 ], + [ 7.2484659, 46.9915991 ], + [ 7.2482053, 46.9916417 ], + [ 7.2478181, 46.9917133 ], + [ 7.2478066, 46.9917123 ], + [ 7.2475918, 46.9918081 ], + [ 7.2471699, 46.9919235 ], + [ 7.2467399, 46.9920001 ], + [ 7.2463607, 46.9921002 ], + [ 7.2458416, 46.9922892 ], + [ 7.2453975, 46.9924107 ], + [ 7.2447678, 46.9927118 ], + [ 7.2434828, 46.992931 ], + [ 7.2429529, 46.9931262 ], + [ 7.2426297, 46.9931976 ], + [ 7.2424083, 46.9933088 ], + [ 7.2421661, 46.9934838 ], + [ 7.2420257, 46.9936679 ], + [ 7.242122, 46.9938597 ], + [ 7.2420943, 46.9940125 ], + [ 7.2418618, 46.9942478 ], + [ 7.2414236, 46.9943109 ], + [ 7.241259, 46.9943736 ], + [ 7.2409864, 46.9943093 ], + [ 7.2408219, 46.994372 ], + [ 7.2404656, 46.9947302 ], + [ 7.2402351, 46.9948539 ], + [ 7.2400669, 46.9949922 ], + [ 7.2398531, 46.9950548 ], + [ 7.2397604, 46.9952345 ], + [ 7.2396095, 46.9953628 ], + [ 7.2394111, 46.9954696 ], + [ 7.2393514, 46.9958346 ], + [ 7.2392681, 46.9959199 ], + [ 7.2392554, 46.9962357 ], + [ 7.2391646, 46.9963587 ], + [ 7.2387084999999995, 46.9966053 ], + [ 7.238657, 46.9967554 ], + [ 7.238689, 46.9969705 ], + [ 7.2384248, 46.9979675 ], + [ 7.2382437, 46.9984962 ], + [ 7.2381912, 46.9989287 ], + [ 7.2380015, 46.9997803 ], + [ 7.2380352, 47.0004235 ], + [ 7.2381051, 47.0008742 ], + [ 7.2384797, 47.0011016 ], + [ 7.2385287, 47.0011916 ], + [ 7.2385281, 47.0013652 ], + [ 7.2385919, 47.0014518 ], + [ 7.2387167, 47.0014565 ], + [ 7.2388567, 47.0013964 ], + [ 7.2389328, 47.0012661 ], + [ 7.2389744, 47.0011151 ], + [ 7.2389376, 47.0008379 ], + [ 7.2390441, 47.0007256 ], + [ 7.2391426, 47.0007556 ], + [ 7.2394646, 47.0007678 ], + [ 7.239563, 47.0008363 ], + [ 7.2395682, 47.0009758 ], + [ 7.2395109, 47.0011402 ], + [ 7.2390469, 47.0015101 ], + [ 7.2389445, 47.0016601 ], + [ 7.2388942, 47.0019082 ], + [ 7.2387582, 47.0022526 ], + [ 7.2387239, 47.0024217 ], + [ 7.2387683, 47.002839 ], + [ 7.2389059, 47.0029742 ], + [ 7.2392566, 47.003465 ], + [ 7.239469, 47.0035905 ], + [ 7.2401037, 47.0033119 ], + [ 7.2400709, 47.0032659 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "WZV0033", + "country" : "CHE", + "name" : [ + { + "text" : "Wasser- und Zugvogelreservat Stausee Niederried", + "lang" : "de-CH" + }, + { + "text" : "Réserve d'oiseaux d'eau et de migrateurs Stausee Niederried", + "lang" : "fr-CH" + }, + { + "text" : "Riserva di uccelli acquatici e migratori Stausee Niederried", + "lang" : "it-CH" + }, + { + "text" : "Water Bird and Migratory Bird Reserves Stausee Niederried", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4197327, 47.4095044 ], + [ 7.4197296, 47.4095715 ], + [ 7.419722, 47.4097337 ], + [ 7.4197167, 47.4098468 ], + [ 7.4225555, 47.4097312 ], + [ 7.4225549, 47.409884 ], + [ 7.4238619, 47.4100552 ], + [ 7.4247382, 47.4102186 ], + [ 7.4249319, 47.4102246 ], + [ 7.4250991, 47.410162 ], + [ 7.4249919, 47.4098792 ], + [ 7.4256455, 47.4098353 ], + [ 7.4257377, 47.4097303 ], + [ 7.4268088, 47.4097177 ], + [ 7.4268776, 47.4097169 ], + [ 7.4279595, 47.4092927 ], + [ 7.4279588, 47.409285 ], + [ 7.428184, 47.4088253 ], + [ 7.4280822, 47.4086137 ], + [ 7.4279425, 47.4084375 ], + [ 7.4278959, 47.4083559 ], + [ 7.4279025, 47.4082769 ], + [ 7.4277502, 47.408346 ], + [ 7.4267835, 47.4083882 ], + [ 7.4266568, 47.408417 ], + [ 7.4257557, 47.4086217 ], + [ 7.4251334, 47.408859 ], + [ 7.4249814, 47.408917 ], + [ 7.4247381, 47.4089131 ], + [ 7.424563, 47.4089103 ], + [ 7.4244736, 47.4089089 ], + [ 7.4244189, 47.408908 ], + [ 7.4243574, 47.408907 ], + [ 7.4242623, 47.4089055 ], + [ 7.4241991, 47.4089045 ], + [ 7.4241478, 47.4089037 ], + [ 7.424077, 47.4089025 ], + [ 7.4240088, 47.4089014 ], + [ 7.4239423, 47.4089004 ], + [ 7.4238345, 47.4088987 ], + [ 7.4236787, 47.4088962 ], + [ 7.4235954, 47.4088949 ], + [ 7.4233309, 47.4088906 ], + [ 7.4232215, 47.4088889 ], + [ 7.4231136, 47.4088872 ], + [ 7.423059, 47.4088863 ], + [ 7.4230042, 47.4088854 ], + [ 7.4229552, 47.4088911 ], + [ 7.4228508, 47.4089031 ], + [ 7.4227598, 47.4089136 ], + [ 7.4226663, 47.4089243 ], + [ 7.4225733, 47.4089351 ], + [ 7.4222515, 47.4089721 ], + [ 7.4221378, 47.4089852 ], + [ 7.4220355, 47.408997 ], + [ 7.4218733, 47.4090158 ], + [ 7.4218163, 47.4090224 ], + [ 7.4217672, 47.409032 ], + [ 7.4215624, 47.4090722 ], + [ 7.4215094, 47.4090825 ], + [ 7.4214538, 47.4090934 ], + [ 7.4211355, 47.4091558 ], + [ 7.4210853, 47.4091656 ], + [ 7.4209724999999995, 47.4091877 ], + [ 7.4208687, 47.4092079 ], + [ 7.4208448, 47.4092226 ], + [ 7.420759, 47.4092755 ], + [ 7.4206481, 47.4093438 ], + [ 7.4204746, 47.4094507 ], + [ 7.4204468, 47.4094678 ], + [ 7.4202439, 47.4094782 ], + [ 7.4201827, 47.4094813 ], + [ 7.4200234, 47.4094895 ], + [ 7.4199416, 47.4094937 ], + [ 7.4198615, 47.4094978 ], + [ 7.4197327, 47.4095044 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns004", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Oltme", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Oltme", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Oltme", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Oltme", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6064489, 47.4941414 ], + [ 7.6064549, 47.494047 ], + [ 7.6064661000000005, 47.4938717 ], + [ 7.6064863, 47.4935571 ], + [ 7.606558, 47.4929972 ], + [ 7.6066177, 47.4925471 ], + [ 7.6066363, 47.4924141 ], + [ 7.6066603, 47.4922071 ], + [ 7.6067509, 47.4915091 ], + [ 7.6068024, 47.4913963 ], + [ 7.6068687, 47.4909664 ], + [ 7.6069192, 47.4906075 ], + [ 7.6069515, 47.4905017 ], + [ 7.6070307, 47.490091 ], + [ 7.6070704, 47.489656 ], + [ 7.6072026, 47.4893762 ], + [ 7.6072625, 47.4890848 ], + [ 7.6072736, 47.4890004 ], + [ 7.607276, 47.4889893 ], + [ 7.6072793, 47.4889784 ], + [ 7.6072836, 47.4889676 ], + [ 7.6072887, 47.488957 ], + [ 7.6072947, 47.4889466 ], + [ 7.6073015999999996, 47.4889364 ], + [ 7.6073093, 47.4889265 ], + [ 7.6073178, 47.488917 ], + [ 7.6073259, 47.4889074 ], + [ 7.607011, 47.4888204 ], + [ 7.6068918, 47.488788 ], + [ 7.6068384, 47.4887737 ], + [ 7.6067859, 47.4887654 ], + [ 7.6067779, 47.4887663 ], + [ 7.6067701, 47.4887678 ], + [ 7.6067626, 47.48877 ], + [ 7.6067555, 47.4887727 ], + [ 7.6067488999999995, 47.488776 ], + [ 7.606743, 47.4887798 ], + [ 7.6067378, 47.4887841 ], + [ 7.6067333, 47.4887887 ], + [ 7.6067297, 47.4887936 ], + [ 7.606727, 47.4887989 ], + [ 7.6067252, 47.4888042 ], + [ 7.6067244, 47.4888097 ], + [ 7.6067245, 47.4888153 ], + [ 7.6066486, 47.4890961 ], + [ 7.6065975, 47.4891269 ], + [ 7.6065916, 47.489132 ], + [ 7.6065851, 47.4891368 ], + [ 7.6065781999999995, 47.4891412 ], + [ 7.6065709, 47.4891453 ], + [ 7.6065631, 47.4891491 ], + [ 7.6065549, 47.4891524 ], + [ 7.6065457, 47.4891556 ], + [ 7.6065361, 47.4891582 ], + [ 7.6065262, 47.4891604 ], + [ 7.6065162, 47.489162 ], + [ 7.6045446, 47.489404 ], + [ 7.6045337, 47.4894049 ], + [ 7.6045227, 47.4894053 ], + [ 7.6045118, 47.4894051 ], + [ 7.6045008, 47.4894043 ], + [ 7.60449, 47.4894031 ], + [ 7.6044794, 47.4894013 ], + [ 7.604469, 47.4893989 ], + [ 7.6044588, 47.4893961 ], + [ 7.604449, 47.4893927 ], + [ 7.6044396, 47.4893889 ], + [ 7.6042963, 47.4894065 ], + [ 7.6044192, 47.4895389 ], + [ 7.604681, 47.4898951 ], + [ 7.6047426, 47.4901989 ], + [ 7.6055513999999995, 47.4901702 ], + [ 7.6055909, 47.4901953 ], + [ 7.6051432, 47.4905514 ], + [ 7.6050933, 47.490591 ], + [ 7.6050231, 47.4906805 ], + [ 7.6050345, 47.4907495 ], + [ 7.6049884, 47.4907825 ], + [ 7.6048995999999995, 47.4909155 ], + [ 7.6043464, 47.4913679 ], + [ 7.6039243, 47.4916063 ], + [ 7.6033062000000005, 47.4917941 ], + [ 7.6026547, 47.4920605 ], + [ 7.6024402, 47.4923483 ], + [ 7.6023376, 47.4926576 ], + [ 7.6022274, 47.4930361 ], + [ 7.603574, 47.4933589 ], + [ 7.6043512, 47.4935453 ], + [ 7.6042338, 47.4937491 ], + [ 7.6041828, 47.4938377 ], + [ 7.6041083, 47.4939671 ], + [ 7.6039862, 47.4941792 ], + [ 7.6040307, 47.4941891 ], + [ 7.6040805, 47.4942013 ], + [ 7.6040488, 47.4944319 ], + [ 7.6039607, 47.4946031 ], + [ 7.6036206, 47.494976199999996 ], + [ 7.603418, 47.4951787 ], + [ 7.6031996, 47.4953604 ], + [ 7.6026441, 47.4957195 ], + [ 7.6023555, 47.4953195 ], + [ 7.6019672, 47.4953416 ], + [ 7.6020577, 47.4956709 ], + [ 7.6020645, 47.4956976 ], + [ 7.6020708, 47.4957243 ], + [ 7.6020766, 47.4957511 ], + [ 7.6020818, 47.495778 ], + [ 7.6020866, 47.4958049 ], + [ 7.6020916, 47.4958386 ], + [ 7.6020959, 47.4958724 ], + [ 7.6020995, 47.4959062 ], + [ 7.6021023, 47.49594 ], + [ 7.6021047, 47.4959739 ], + [ 7.6021064, 47.4960078 ], + [ 7.6021075, 47.4960417 ], + [ 7.6021079, 47.4960756 ], + [ 7.6019925, 47.4965268 ], + [ 7.6020131, 47.4965783 ], + [ 7.6020342, 47.4966298 ], + [ 7.6020557, 47.4966812 ], + [ 7.6020777, 47.4967326 ], + [ 7.6021059, 47.4967966 ], + [ 7.6021347, 47.4968604 ], + [ 7.6021643, 47.4969241 ], + [ 7.6021946, 47.4969876 ], + [ 7.6022255, 47.497051 ], + [ 7.6022572, 47.4971142 ], + [ 7.6022894999999995, 47.4971772 ], + [ 7.6023226, 47.4972401 ], + [ 7.6023553, 47.4973014 ], + [ 7.6023887, 47.4973625 ], + [ 7.6024228, 47.4974235 ], + [ 7.6024575, 47.497484299999996 ], + [ 7.6024768, 47.4974792 ], + [ 7.6025747, 47.4975087 ], + [ 7.6027583, 47.4978431 ], + [ 7.6030062, 47.4982557 ], + [ 7.603244, 47.4986365 ], + [ 7.6032836, 47.4986945 ], + [ 7.6035768, 47.4991239 ], + [ 7.6039816, 47.4997048 ], + [ 7.6041666, 47.5000483 ], + [ 7.6042791, 47.5003084 ], + [ 7.6044595, 47.5005972 ], + [ 7.6044021, 47.5006114 ], + [ 7.6045242, 47.5008855 ], + [ 7.6046114, 47.5010911 ], + [ 7.6046925, 47.5013127 ], + [ 7.6047803, 47.5015781 ], + [ 7.6048589, 47.501843 ], + [ 7.6049216, 47.5020659 ], + [ 7.6050733, 47.5026038 ], + [ 7.6051698, 47.5029109 ], + [ 7.6052807, 47.5032116 ], + [ 7.605316, 47.5033058 ], + [ 7.6053617, 47.5032779 ], + [ 7.6053635, 47.5032708 ], + [ 7.6053659, 47.5032638 ], + [ 7.6053689, 47.5032569 ], + [ 7.6053725, 47.5032501 ], + [ 7.6053767, 47.503243499999996 ], + [ 7.6053815, 47.5032371 ], + [ 7.6053877, 47.5032298 ], + [ 7.6053947, 47.5032228 ], + [ 7.6054023, 47.5032162 ], + [ 7.6054106, 47.5032099 ], + [ 7.6054195, 47.503204 ], + [ 7.6055415, 47.5031302 ], + [ 7.6055832, 47.5031317 ], + [ 7.6055889, 47.5031315 ], + [ 7.6055945, 47.5031308 ], + [ 7.6055999, 47.5031296 ], + [ 7.6056051, 47.503128 ], + [ 7.60561, 47.5031259 ], + [ 7.6057571, 47.5030608 ], + [ 7.6057811, 47.5030453 ], + [ 7.6058057, 47.5030302 ], + [ 7.6058307, 47.5030155 ], + [ 7.6058562, 47.5030011 ], + [ 7.6058822, 47.5029871 ], + [ 7.6059086, 47.5029735 ], + [ 7.6059356000000005, 47.5029603 ], + [ 7.605963, 47.5029474 ], + [ 7.6059908, 47.502935 ], + [ 7.606019, 47.502923 ], + [ 7.6060476, 47.5029114 ], + [ 7.6060766, 47.5029003 ], + [ 7.6060883, 47.5028955 ], + [ 7.6061005, 47.5028912 ], + [ 7.6061132, 47.5028875 ], + [ 7.6061262, 47.5028845 ], + [ 7.6061394, 47.502882 ], + [ 7.6061529, 47.5028803 ], + [ 7.6061666, 47.5028792 ], + [ 7.6061803, 47.5028787 ], + [ 7.606194, 47.5028789 ], + [ 7.6062077, 47.5028798 ], + [ 7.6062213, 47.5028813 ], + [ 7.6062346, 47.5028835 ], + [ 7.6062477, 47.5028863 ], + [ 7.6062605, 47.5028898 ], + [ 7.6062728, 47.5028938 ], + [ 7.6062848, 47.5028985 ], + [ 7.606299, 47.5029055 ], + [ 7.6063127, 47.5029131 ], + [ 7.6063257, 47.5029211 ], + [ 7.6063381, 47.5029296 ], + [ 7.6063499, 47.5029385 ], + [ 7.6063609, 47.5029479 ], + [ 7.6063711, 47.5029576 ], + [ 7.6063806, 47.5029677 ], + [ 7.6063893, 47.5029781 ], + [ 7.6063972, 47.5029888 ], + [ 7.6064042, 47.5029997 ], + [ 7.6064103, 47.5030109 ], + [ 7.6065352, 47.5032186 ], + [ 7.6065436, 47.5032321 ], + [ 7.6065526, 47.5032454 ], + [ 7.6065623, 47.5032585 ], + [ 7.6065727, 47.5032713 ], + [ 7.6065838, 47.5032839 ], + [ 7.6065938, 47.5032945 ], + [ 7.6066043, 47.5033049 ], + [ 7.6066153, 47.503315 ], + [ 7.6066267, 47.5033249 ], + [ 7.606689, 47.5033508 ], + [ 7.6067167, 47.5033879 ], + [ 7.6068058, 47.5034573 ], + [ 7.6068484, 47.50344 ], + [ 7.6069445, 47.503401 ], + [ 7.6071953, 47.5033002 ], + [ 7.6073372, 47.5032431 ], + [ 7.607355, 47.5032366 ], + [ 7.6073821, 47.5032728 ], + [ 7.6075342, 47.503513 ], + [ 7.6075583, 47.5035061 ], + [ 7.6075667, 47.5035169 ], + [ 7.6076075, 47.5035857 ], + [ 7.607627, 47.50362 ], + [ 7.6076487, 47.5036634 ], + [ 7.6078989, 47.503566 ], + [ 7.6080397, 47.5035184 ], + [ 7.6077821, 47.503185 ], + [ 7.6077770000000005, 47.5031783 ], + [ 7.6077712, 47.503172 ], + [ 7.6077647, 47.503166 ], + [ 7.6077574, 47.5031604 ], + [ 7.6077495, 47.5031552 ], + [ 7.607741, 47.5031504 ], + [ 7.607732, 47.5031462 ], + [ 7.6077229, 47.5031425 ], + [ 7.6077133, 47.5031394 ], + [ 7.6077034999999995, 47.5031368 ], + [ 7.6076933, 47.5031347 ], + [ 7.607683, 47.5031331 ], + [ 7.6076725, 47.5031321 ], + [ 7.6076619, 47.5031317 ], + [ 7.6076513, 47.5031318 ], + [ 7.6076407, 47.5031325 ], + [ 7.6076384, 47.5031285 ], + [ 7.6076457, 47.5031254 ], + [ 7.6076499, 47.5031228 ], + [ 7.6076538, 47.5031199 ], + [ 7.6076573, 47.5031169 ], + [ 7.6076604, 47.5031136 ], + [ 7.607663, 47.5031102 ], + [ 7.6076652, 47.5031066 ], + [ 7.6076669, 47.5031029 ], + [ 7.6076682, 47.5030991 ], + [ 7.6076705, 47.5030861 ], + [ 7.6076745, 47.5030601 ], + [ 7.6076738, 47.5030283 ], + [ 7.6076694, 47.5029967 ], + [ 7.6076612, 47.5029654 ], + [ 7.6075286, 47.5025302 ], + [ 7.6074025, 47.5021224 ], + [ 7.6073248, 47.5018661 ], + [ 7.6072755, 47.501704 ], + [ 7.6072241, 47.5015354 ], + [ 7.6072007, 47.5014633 ], + [ 7.6071734, 47.5013919 ], + [ 7.6071421, 47.5013212 ], + [ 7.607022, 47.5013403 ], + [ 7.6069484, 47.5013424 ], + [ 7.6069442, 47.5012699 ], + [ 7.6069129, 47.5007295 ], + [ 7.6068797, 47.5001926 ], + [ 7.6068484, 47.4996526 ], + [ 7.6068247, 47.4992131 ], + [ 7.6067873, 47.4985686 ], + [ 7.6067568, 47.4980309 ], + [ 7.6067252, 47.4974904 ], + [ 7.6067229, 47.4974517 ], + [ 7.606694, 47.4969453 ], + [ 7.6067246, 47.49656 ], + [ 7.6067529, 47.4961926 ], + [ 7.6067549, 47.4961656 ], + [ 7.6067759, 47.4958935 ], + [ 7.6068166999999995, 47.4953635 ], + [ 7.6068307, 47.4951807 ], + [ 7.6068592, 47.4948131 ], + [ 7.6068656, 47.4947293 ], + [ 7.6065308, 47.49472 ], + [ 7.6064223, 47.4945557 ], + [ 7.6064276, 47.4944742 ], + [ 7.6064489, 47.4941414 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns156", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Reinacherheide", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Reinacherheide", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Reinacherheide", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Reinacherheide", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6301634, 47.4844527 ], + [ 7.6301613, 47.4844527 ], + [ 7.6296501, 47.4843223 ], + [ 7.6281497, 47.484692 ], + [ 7.6281468, 47.4848041 ], + [ 7.6281111, 47.4848954 ], + [ 7.6280063, 47.4850328 ], + [ 7.6279882, 47.4850574 ], + [ 7.6278507, 47.485273 ], + [ 7.6278782, 47.4853208 ], + [ 7.627966, 47.4854728 ], + [ 7.6280438, 47.4856097 ], + [ 7.6280705, 47.4857645 ], + [ 7.6281012, 47.4859403 ], + [ 7.6281436, 47.486182 ], + [ 7.6281666, 47.4862758 ], + [ 7.6282656, 47.4866723 ], + [ 7.6282805, 47.4867307 ], + [ 7.628398, 47.48696 ], + [ 7.6284939, 47.4871477 ], + [ 7.6285769, 47.487307799999996 ], + [ 7.6285644999999995, 47.487336 ], + [ 7.6283573, 47.4878095 ], + [ 7.6282353, 47.4879675 ], + [ 7.6282864, 47.4879782 ], + [ 7.6284842, 47.4880458 ], + [ 7.6285338, 47.488064 ], + [ 7.6284898, 47.4882077 ], + [ 7.6284848, 47.4885378 ], + [ 7.6283828, 47.4887887 ], + [ 7.6279923, 47.4887299 ], + [ 7.6279412, 47.4887808 ], + [ 7.627912, 47.4888109 ], + [ 7.6277878999999995, 47.4889217 ], + [ 7.6276435, 47.4890203 ], + [ 7.6276116, 47.4890313 ], + [ 7.6276889, 47.4891465 ], + [ 7.6275768, 47.4891872 ], + [ 7.6275658, 47.4892906 ], + [ 7.6275164, 47.4893725 ], + [ 7.6274381, 47.4895045 ], + [ 7.6274253, 47.4895276 ], + [ 7.6274305, 47.4896196 ], + [ 7.6274416, 47.489809 ], + [ 7.6274341, 47.4900527 ], + [ 7.6271045, 47.4903696 ], + [ 7.626959, 47.4906929 ], + [ 7.6269504999999995, 47.4907119 ], + [ 7.6273567, 47.4907326 ], + [ 7.6274911, 47.4907508 ], + [ 7.6275081, 47.4907178 ], + [ 7.6275624, 47.4906205 ], + [ 7.6277563, 47.4906146 ], + [ 7.6278062, 47.4905551 ], + [ 7.6279181, 47.4904586 ], + [ 7.6281524, 47.4903977 ], + [ 7.6282806, 47.4903801 ], + [ 7.628453, 47.4903738 ], + [ 7.6287234999999995, 47.4903684 ], + [ 7.6287439, 47.4903672 ], + [ 7.6288923, 47.4903388 ], + [ 7.6289467, 47.4903293 ], + [ 7.6293399, 47.490286 ], + [ 7.6296614, 47.4902506 ], + [ 7.6297302, 47.4902497 ], + [ 7.6298824, 47.4902834 ], + [ 7.6302748000000005, 47.4903167 ], + [ 7.6302844, 47.4902818 ], + [ 7.6303583, 47.4902548 ], + [ 7.630414, 47.4902239 ], + [ 7.630522, 47.4901392 ], + [ 7.6305869, 47.4901058 ], + [ 7.6306811, 47.4900647 ], + [ 7.630861, 47.4900048 ], + [ 7.6310879, 47.4899291 ], + [ 7.6312657999999995, 47.4898703 ], + [ 7.631377, 47.4898335 ], + [ 7.6315421, 47.4897344 ], + [ 7.6316344, 47.4896453 ], + [ 7.6318, 47.4894855 ], + [ 7.6318628, 47.4894392 ], + [ 7.6319875, 47.4893475 ], + [ 7.6320704, 47.489287 ], + [ 7.6320778, 47.4892802 ], + [ 7.6321075, 47.4892529 ], + [ 7.6322154, 47.4891567 ], + [ 7.6322661, 47.4891216 ], + [ 7.6323783, 47.4890666 ], + [ 7.6324606, 47.4890165 ], + [ 7.6325254000000005, 47.4889819 ], + [ 7.6326148, 47.4889401 ], + [ 7.6326832, 47.488915 ], + [ 7.6327375, 47.4888947 ], + [ 7.6327638, 47.4888744 ], + [ 7.6327883, 47.4888518 ], + [ 7.6327987, 47.4888363 ], + [ 7.6328706, 47.4887981 ], + [ 7.6329494, 47.4887623 ], + [ 7.6330722, 47.4887335 ], + [ 7.6331932, 47.4887083 ], + [ 7.6333353, 47.4886855 ], + [ 7.6334423000000005, 47.4886651 ], + [ 7.6335370000000005, 47.4886387 ], + [ 7.6336598, 47.4886028 ], + [ 7.633744, 47.4885801 ], + [ 7.6337983, 47.4885645 ], + [ 7.6336889, 47.488483 ], + [ 7.6334211, 47.4884169 ], + [ 7.6333867, 47.4884036 ], + [ 7.6333154, 47.4883738 ], + [ 7.6332269, 47.488334 ], + [ 7.6331161, 47.488266 ], + [ 7.6329956, 47.4881913 ], + [ 7.6329144, 47.4881332 ], + [ 7.6327913, 47.4880436 ], + [ 7.6326931, 47.4880337 ], + [ 7.6325797, 47.4878992 ], + [ 7.6326723, 47.4878573 ], + [ 7.6327353, 47.4877941 ], + [ 7.6327788, 47.4877119 ], + [ 7.6327647, 47.4876965 ], + [ 7.6327559, 47.4876846 ], + [ 7.6327541, 47.487662 ], + [ 7.6328049, 47.487625 ], + [ 7.6328223, 47.4876083 ], + [ 7.6328554, 47.487525 ], + [ 7.6328762, 47.4874643 ], + [ 7.6329165, 47.4874226 ], + [ 7.6329637, 47.4873785 ], + [ 7.6330196, 47.4872951 ], + [ 7.6330737, 47.4872069 ], + [ 7.633105, 47.4871391 ], + [ 7.6331188999999995, 47.4870903 ], + [ 7.6331135, 47.48707 ], + [ 7.6330864, 47.4868637 ], + [ 7.633012, 47.4866782 ], + [ 7.6329375, 47.4864641 ], + [ 7.6329234, 47.4862517 ], + [ 7.6327028, 47.4857067 ], + [ 7.6324555, 47.4854287 ], + [ 7.6320412, 47.4851185 ], + [ 7.6316101, 47.4848228 ], + [ 7.6311175, 47.484726 ], + [ 7.6302676, 47.4844791 ], + [ 7.6301634, 47.4844527 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr011", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Hinderi Hagebueche", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Hinderi Hagebueche", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Hinderi Hagebueche", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Hinderi Hagebueche", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.0289798, 46.9820612 ], + [ 7.021472, 46.990796 ], + [ 7.0208957, 46.9914767 ], + [ 7.0174517, 46.9952828 ], + [ 7.0168205, 46.9960379 ], + [ 7.0156662, 46.9973587 ], + [ 7.0156705, 46.9973627 ], + [ 7.0150928, 46.9981566 ], + [ 7.0252527, 47.0066228 ], + [ 7.0260172, 47.0073497 ], + [ 7.0267375, 47.0079605 ], + [ 7.0267078, 47.00808 ], + [ 7.026616, 47.0081525 ], + [ 7.026602, 47.0082648 ], + [ 7.026631, 47.0083387 ], + [ 7.0267472, 47.0084058 ], + [ 7.0268787, 47.0084044 ], + [ 7.0270089, 47.0083581 ], + [ 7.0271951, 47.0083039 ], + [ 7.0274101, 47.0083577 ], + [ 7.0278107, 47.0086345 ], + [ 7.0281221, 47.0088677 ], + [ 7.0283714, 47.0090403 ], + [ 7.0286888, 47.0092502 ], + [ 7.0291563, 47.0095982 ], + [ 7.0295654, 47.0099496 ], + [ 7.0300838, 47.0104093 ], + [ 7.0307041, 47.0112076 ], + [ 7.0309659, 47.0115918 ], + [ 7.0311542, 47.0119154 ], + [ 7.0313172, 47.012202 ], + [ 7.0314596, 47.0123959 ], + [ 7.0317584, 47.0123472 ], + [ 7.0325682, 47.0122154 ], + [ 7.0336318, 47.0147334 ], + [ 7.0339567, 47.015573 ], + [ 7.0342438, 47.0164195 ], + [ 7.034395, 47.0172944 ], + [ 7.0344912, 47.0182599 ], + [ 7.0343131, 47.0202895 ], + [ 7.0347809, 47.0201795 ], + [ 7.0363268, 47.0202417 ], + [ 7.0368356, 47.0202515 ], + [ 7.0372799, 47.0201911 ], + [ 7.0377923, 47.0200579 ], + [ 7.0580558, 47.0108866 ], + [ 7.0583482, 47.0107895 ], + [ 7.0585044, 47.0106794 ], + [ 7.0585855, 47.010364 ], + [ 7.0593635, 47.0079836 ], + [ 7.0597601, 47.0073346 ], + [ 7.0603507, 47.0065637 ], + [ 7.0617951, 47.0049898 ], + [ 7.0622107, 47.004446 ], + [ 7.0651203, 47.0005091 ], + [ 7.0652118, 47.0002324 ], + [ 7.0654756, 46.9995325 ], + [ 7.0673361, 46.9938354 ], + [ 7.067626, 46.9929063 ], + [ 7.067811, 46.9922907 ], + [ 7.0678303, 46.991751 ], + [ 7.067831, 46.9912968 ], + [ 7.0678081, 46.9911491 ], + [ 7.0798061, 46.9940259 ], + [ 7.0836598, 46.9950563 ], + [ 7.0855795, 46.9938657 ], + [ 7.0877339, 46.9944879 ], + [ 7.0885941, 46.9947523 ], + [ 7.0894011, 46.9949935 ], + [ 7.0902565, 46.9942395 ], + [ 7.09043, 46.9940933 ], + [ 7.0906297, 46.9939518 ], + [ 7.0907905, 46.9938651 ], + [ 7.0910368, 46.9937789 ], + [ 7.0904773, 46.9928779 ], + [ 7.0898115, 46.9917884 ], + [ 7.0941318, 46.9906433 ], + [ 7.0875389, 46.9764611 ], + [ 7.0871543, 46.9764175 ], + [ 7.0865972, 46.9762885 ], + [ 7.085018, 46.976029 ], + [ 7.0833948, 46.9753875 ], + [ 7.0820051, 46.9746194 ], + [ 7.0804308, 46.9736279 ], + [ 7.0782548, 46.9722525 ], + [ 7.0768661999999996, 46.9713252 ], + [ 7.0751048, 46.9705558 ], + [ 7.0743622, 46.9703625 ], + [ 7.0732951, 46.9700408 ], + [ 7.0724141, 46.9696879 ], + [ 7.0711626, 46.9691429 ], + [ 7.0700488, 46.9688528 ], + [ 7.0690727, 46.9688179 ], + [ 7.0679559, 46.9689734 ], + [ 7.0666978, 46.969383 ], + [ 7.065485, 46.9699519 ], + [ 7.0641784, 46.9706478 ], + [ 7.0627758, 46.9717571 ], + [ 7.0610923, 46.9731519 ], + [ 7.0601588, 46.973658 ], + [ 7.0589931, 46.9741315 ], + [ 7.0581539, 46.974447 ], + [ 7.0573154, 46.974667 ], + [ 7.0560081, 46.9754264 ], + [ 7.0560038, 46.9754311 ], + [ 7.0559945, 46.975424 ], + [ 7.0556596, 46.9751688 ], + [ 7.0555819, 46.9751098 ], + [ 7.0553638, 46.9749433 ], + [ 7.0537251, 46.9736938 ], + [ 7.0523392, 46.9729289 ], + [ 7.0470144, 46.9703327 ], + [ 7.0439852, 46.968785 ], + [ 7.0411795, 46.96714 ], + [ 7.0378278, 46.9651637 ], + [ 7.0351553, 46.963546 ], + [ 7.034183, 46.9629992 ], + [ 7.0331642, 46.9626339 ], + [ 7.0325947, 46.9623639 ], + [ 7.0311691, 46.9614971 ], + [ 7.0287288, 46.963596 ], + [ 7.0290438, 46.9637501 ], + [ 7.0279718, 46.9647502 ], + [ 7.028091, 46.9665596 ], + [ 7.0281005, 46.9667087 ], + [ 7.0282426, 46.9688611 ], + [ 7.0289895, 46.9792119 ], + [ 7.0282867, 46.9801496 ], + [ 7.0275473999999996, 46.9811433 ], + [ 7.0287566, 46.981423 ], + [ 7.0289798, 46.9820612 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "WZV0011", + "country" : "CHE", + "name" : [ + { + "text" : "Wasser- und Zugvogelreservat Fanel jusqu'à Chablais de Cudrefin, Pointe de Marin", + "lang" : "de-CH" + }, + { + "text" : "Réserve d'oiseaux d'eau et de migrateurs Fanel jusqu'à Chablais de Cudrefin, Pointe de Marin", + "lang" : "fr-CH" + }, + { + "text" : "Riserva di uccelli acquatici e migratori Fanel jusqu'à Chablais de Cudrefin, Pointe de Marin", + "lang" : "it-CH" + }, + { + "text" : "Water Bird and Migratory Bird Reserves Fanel jusqu'à Chablais de Cudrefin, Pointe de Marin", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.4658709, 46.5907956 ], + [ 6.4658239, 46.588441 ], + [ 6.4655983, 46.5860914 ], + [ 6.4651946, 46.5837532 ], + [ 6.464614, 46.5814327 ], + [ 6.4638581, 46.5791363 ], + [ 6.4629291, 46.5768703 ], + [ 6.4618294, 46.574641 ], + [ 6.4605622, 46.5724544 ], + [ 6.4591308, 46.5703165 ], + [ 6.4575393, 46.5682332 ], + [ 6.455792, 46.5662102 ], + [ 6.4538938, 46.564253 ], + [ 6.4518497, 46.5623669 ], + [ 6.4496655, 46.5605572 ], + [ 6.4473471, 46.5588288 ], + [ 6.4449009, 46.5571863 ], + [ 6.4423335999999995, 46.5556344 ], + [ 6.4396522, 46.5541772 ], + [ 6.4368641, 46.5528188 ], + [ 6.4339769, 46.5515628 ], + [ 6.4309985, 46.5504127 ], + [ 6.427937, 46.5493717 ], + [ 6.4248009, 46.5484425 ], + [ 6.4215987, 46.5476278 ], + [ 6.4183391, 46.5469297 ], + [ 6.4150312, 46.5463501 ], + [ 6.4116839, 46.5458907 ], + [ 6.4083063, 46.5455528 ], + [ 6.4049078, 46.5453371 ], + [ 6.4014976, 46.5452443 ], + [ 6.3980851, 46.5452748 ], + [ 6.3946795, 46.5454283 ], + [ 6.3912902, 46.5457044 ], + [ 6.3879264, 46.5461025 ], + [ 6.3845974, 46.5466214 ], + [ 6.3813123, 46.5472597 ], + [ 6.3780799, 46.5480157 ], + [ 6.3749093, 46.5488872 ], + [ 6.371809, 46.549872 ], + [ 6.3687875, 46.550967299999996 ], + [ 6.3658531, 46.55217 ], + [ 6.3630138, 46.5534771 ], + [ 6.3602775, 46.5548847 ], + [ 6.3576516, 46.5563892 ], + [ 6.3551432, 46.5579864 ], + [ 6.3527593, 46.5596719 ], + [ 6.3505064, 46.561441 ], + [ 6.3483907, 46.5632891 ], + [ 6.3464179, 46.565211 ], + [ 6.3445936, 46.5672014 ], + [ 6.3429227, 46.5692549 ], + [ 6.3414097, 46.5713659 ], + [ 6.340059, 46.5735285 ], + [ 6.338874, 46.575737 ], + [ 6.3378583, 46.5779852 ], + [ 6.3370145, 46.5802669 ], + [ 6.336345, 46.582576 ], + [ 6.3358516, 46.5849061 ], + [ 6.3355357, 46.5872507 ], + [ 6.3353982, 46.5896036 ], + [ 6.3354395, 46.5919582 ], + [ 6.3356596, 46.594308 ], + [ 6.3360577, 46.5966468 ], + [ 6.3366329, 46.5989679 ], + [ 6.3373837, 46.6012651 ], + [ 6.3383079, 46.6035321 ], + [ 6.339403, 46.6057626 ], + [ 6.3406661, 46.6079505 ], + [ 6.3420938, 46.6100899 ], + [ 6.3436821, 46.6121748 ], + [ 6.3454267, 46.6141996 ], + [ 6.3473228, 46.6161586 ], + [ 6.3493652, 46.6180465 ], + [ 6.3515484, 46.6198582 ], + [ 6.3538663, 46.6215885 ], + [ 6.3563127, 46.6232329 ], + [ 6.3588807, 46.6247868 ], + [ 6.3615634, 46.6262458 ], + [ 6.3643534, 46.6276061 ], + [ 6.3672431, 46.6288639 ], + [ 6.3702245, 46.6300156 ], + [ 6.3732894, 46.6310582 ], + [ 6.3764294, 46.6319888 ], + [ 6.379636, 46.6328048 ], + [ 6.3829002, 46.633504 ], + [ 6.3862131, 46.6340845 ], + [ 6.3895657, 46.6345446 ], + [ 6.3929487, 46.6348832 ], + [ 6.3963528, 46.6350992 ], + [ 6.3997686, 46.6351921 ], + [ 6.4031869, 46.6351616 ], + [ 6.4065981, 46.6350079 ], + [ 6.4099929, 46.6347312 ], + [ 6.413362, 46.6343325 ], + [ 6.4166962, 46.6338128 ], + [ 6.4199862, 46.6331734 ], + [ 6.423223, 46.6324163 ], + [ 6.4263978, 46.6315434 ], + [ 6.4295018, 46.6305572 ], + [ 6.4325265, 46.6294603 ], + [ 6.4354636, 46.6282558 ], + [ 6.438305, 46.626947 ], + [ 6.441043, 46.6255374 ], + [ 6.44367, 46.624031 ], + [ 6.4461788, 46.6224319 ], + [ 6.4485624999999995, 46.6207445 ], + [ 6.4508147, 46.6189733 ], + [ 6.4529291, 46.6171234 ], + [ 6.4548999, 46.6151997 ], + [ 6.4567218, 46.6132075 ], + [ 6.4583898, 46.6111524 ], + [ 6.4598993, 46.6090398 ], + [ 6.4612461, 46.6068757 ], + [ 6.4624267, 46.604666 ], + [ 6.4634378, 46.6024167 ], + [ 6.4642766, 46.600134 ], + [ 6.4649409, 46.5978242 ], + [ 6.4654288, 46.5954936 ], + [ 6.4657391, 46.5931486 ], + [ 6.4658709, 46.5907956 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSTR001", + "country" : "CHE", + "name" : [ + { + "text" : "LSTR Montricher", + "lang" : "de-CH" + }, + { + "text" : "LSTR Montricher", + "lang" : "fr-CH" + }, + { + "text" : "LSTR Montricher", + "lang" : "it-CH" + }, + { + "text" : "LSTR Montricher", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Fondation pour l'exploitation du terrain de vol à voile de Montricher", + "lang" : "de-CH" + }, + { + "text" : "Fondation pour l'exploitation du terrain de vol à voile de Montricher", + "lang" : "fr-CH" + }, + { + "text" : "Fondation pour l'exploitation du terrain de vol à voile de Montricher", + "lang" : "it-CH" + }, + { + "text" : "Fondation pour l'exploitation du terrain de vol à voile de Montricher", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Chef d'aérodrome", + "lang" : "de-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "fr-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "it-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Didier Kuttel", + "lang" : "de-CH" + }, + { + "text" : "Didier Kuttel", + "lang" : "fr-CH" + }, + { + "text" : "Didier Kuttel", + "lang" : "it-CH" + }, + { + "text" : "Didier Kuttel", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.lstr.ch", + "email" : "chef.aerodrome@lstr.ch", + "phone" : "0041799487937", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P02DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.1287944, 46.7412278 ], + [ 8.1287206, 46.7400723 ], + [ 8.1304021, 46.7396663 ], + [ 8.1299101, 46.7383396 ], + [ 8.121638, 46.7388689 ], + [ 8.121409, 46.7379392 ], + [ 8.1157516, 46.7390111 ], + [ 8.1157032, 46.7397419 ], + [ 8.1147879, 46.7394801 ], + [ 8.1143201, 46.7398409 ], + [ 8.1122756, 46.7405259 ], + [ 8.1121677, 46.740057 ], + [ 8.1119079, 46.7402096 ], + [ 8.1118356, 46.7391359 ], + [ 8.1107012, 46.7392524 ], + [ 8.1098262, 46.7392791 ], + [ 8.1070427, 46.7408302 ], + [ 8.1054206, 46.7403422 ], + [ 8.1044948, 46.7403962 ], + [ 8.1037352, 46.7400255 ], + [ 8.1029073, 46.741225 ], + [ 8.0964899, 46.742052 ], + [ 8.0965772, 46.7414929 ], + [ 8.0950225, 46.7413741 ], + [ 8.0949131, 46.7424848 ], + [ 8.0936336, 46.7425111 ], + [ 8.0936315, 46.7422313 ], + [ 8.0913004, 46.7430507 ], + [ 8.0911686, 46.7428616 ], + [ 8.0893554, 46.74323 ], + [ 8.0892318, 46.744259 ], + [ 8.0918971, 46.7446585 ], + [ 8.0915559, 46.744369 ], + [ 8.0922994, 46.7441713 ], + [ 8.0925228, 46.7444597 ], + [ 8.0936986, 46.744623 ], + [ 8.0936814, 46.7439645 ], + [ 8.1018502, 46.7433641 ], + [ 8.106912, 46.7427444 ], + [ 8.1081797, 46.7430338 ], + [ 8.1175076, 46.7421178 ], + [ 8.1235879, 46.7416595 ], + [ 8.1236278, 46.7417133 ], + [ 8.1287944, 46.7412278 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSMM002", + "country" : "CHE", + "name" : [ + { + "text" : "LSMM Meiringen (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSMM Meiringen (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSMM Meiringen (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSMM Meiringen (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Special Flight Office (SFO)", + "lang" : "de-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "fr-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "it-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "en-GB" + } + ], + "siteURL" : "https://skyguide.ch/services/special-flights", + "email" : "specialflight@skyguide.ch", + "phone" : "0041439316236", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.0342209, 47.0432815 ], + [ 7.0366317, 47.0448673 ], + [ 7.0368288, 47.0449741 ], + [ 7.037052, 47.0450534 ], + [ 7.0372932, 47.0451021 ], + [ 7.0375436, 47.0451187 ], + [ 7.037794, 47.0451023 ], + [ 7.0380353, 47.0450536 ], + [ 7.0382586, 47.0449745 ], + [ 7.0384558, 47.0448678 ], + [ 7.0386912, 47.0447132 ], + [ 7.0388305, 47.044658 ], + [ 7.039023, 47.0445425 ], + [ 7.0401293, 47.0437352 ], + [ 7.0404239, 47.0435203 ], + [ 7.0404299, 47.0435159 ], + [ 7.0409943, 47.0430986 ], + [ 7.0411363, 47.0429729 ], + [ 7.041196, 47.0428947 ], + [ 7.0412676, 47.042847 ], + [ 7.0412891, 47.0428326 ], + [ 7.0412905, 47.0428317 ], + [ 7.0416872, 47.0425673 ], + [ 7.0417271, 47.0425406 ], + [ 7.0417471, 47.0425278 ], + [ 7.0419027, 47.0424091 ], + [ 7.0431674, 47.0412525 ], + [ 7.0446383, 47.0401661 ], + [ 7.0448022, 47.0400165 ], + [ 7.0449173, 47.0398469 ], + [ 7.0449786, 47.0396647 ], + [ 7.0449836, 47.0394778 ], + [ 7.0449581, 47.0393874 ], + [ 7.0429617, 47.0383415 ], + [ 7.0415404, 47.0375904 ], + [ 7.0403581, 47.0369691 ], + [ 7.0396469, 47.0365536 ], + [ 7.0392365, 47.0362843 ], + [ 7.0388815, 47.0360251 ], + [ 7.0385245, 47.0357427 ], + [ 7.0382955, 47.0355494 ], + [ 7.0378594, 47.0351405 ], + [ 7.0372713, 47.034565 ], + [ 7.036292, 47.0336068 ], + [ 7.0361621, 47.0335925 ], + [ 7.0357669, 47.0335738 ], + [ 7.0352214, 47.0333634 ], + [ 7.0349475, 47.0332841 ], + [ 7.0346546, 47.0332489 ], + [ 7.0341883, 47.0332295 ], + [ 7.0341474999999996, 47.0336709 ], + [ 7.0341368, 47.0337862 ], + [ 7.0340915, 47.0339198 ], + [ 7.0300758, 47.0337624 ], + [ 7.028878, 47.0340069 ], + [ 7.02887, 47.0340436 ], + [ 7.0288674, 47.034059 ], + [ 7.0288598, 47.0341246 ], + [ 7.0288589, 47.0341402 ], + [ 7.0288583, 47.034206 ], + [ 7.0288591, 47.0342215 ], + [ 7.0288656, 47.0342871 ], + [ 7.0288679, 47.0343026 ], + [ 7.0288814, 47.0343677 ], + [ 7.0288854, 47.034383 ], + [ 7.0288925, 47.0344081 ], + [ 7.0292601, 47.0356124 ], + [ 7.0293268, 47.036332 ], + [ 7.0293448, 47.0364338 ], + [ 7.0293518, 47.0364608 ], + [ 7.0293416, 47.0365682 ], + [ 7.0293443, 47.036708 ], + [ 7.0293786, 47.0368459 ], + [ 7.0298635, 47.0381634 ], + [ 7.0300568, 47.0386885 ], + [ 7.0303845, 47.0395783 ], + [ 7.0304788, 47.039888 ], + [ 7.0304289, 47.0400031 ], + [ 7.0304039, 47.0401694 ], + [ 7.0304244, 47.0403359 ], + [ 7.0304472, 47.0404231 ], + [ 7.0306033, 47.0410418 ], + [ 7.0306867, 47.0413724 ], + [ 7.0307081, 47.041441 ], + [ 7.030968, 47.0421405 ], + [ 7.0310105, 47.0422334 ], + [ 7.0311753, 47.0425356 ], + [ 7.0313155, 47.0427223 ], + [ 7.0314827, 47.0428559 ], + [ 7.0315456, 47.0429541 ], + [ 7.0316814, 47.0430909 ], + [ 7.0318514, 47.0432083 ], + [ 7.0320501, 47.0433024 ], + [ 7.0322706, 47.0433702 ], + [ 7.0325066, 47.0434255 ], + [ 7.0327657, 47.0434669 ], + [ 7.0330318, 47.0434717 ], + [ 7.0332938, 47.0434398 ], + [ 7.033511, 47.0433808 ], + [ 7.0336698, 47.0433717 ], + [ 7.0339536, 47.0433381 ], + [ 7.0342209, 47.0432815 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "NE12", + "country" : "CHE", + "name" : [ + { + "text" : "VARO REFINING (CRESSIER) SA", + "lang" : "de-CH" + }, + { + "text" : "VARO REFINING (CRESSIER) SA", + "lang" : "fr-CH" + }, + { + "text" : "VARO REFINING (CRESSIER) SA", + "lang" : "it-CH" + }, + { + "text" : "VARO REFINING (CRESSIER) SA", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "regulationExemption" : "YES", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Police Neuchâteloise", + "lang" : "de-CH" + }, + { + "text" : "Police Neuchâteloise", + "lang" : "fr-CH" + }, + { + "text" : "Police Neuchâteloise", + "lang" : "it-CH" + }, + { + "text" : "Police Neuchâteloise", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "PN - Rens et opérations", + "lang" : "de-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "fr-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "it-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "PN - Rens et opérations", + "lang" : "de-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "fr-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "it-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ne.ch/autorites/DESC/PONE/Pages/Drones.aspx", + "email" : "Police.Neuchateloise@ne.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.8442249, 47.211854 ], + [ 8.8491033, 47.2126562 ], + [ 8.8526892, 47.2133057 ], + [ 8.8562051, 47.2169896 ], + [ 8.8599836, 47.217668 ], + [ 8.8641909, 47.2157574 ], + [ 8.870013, 47.2157301 ], + [ 8.8733517, 47.2136481 ], + [ 8.8766123, 47.2124514 ], + [ 8.8799572, 47.2131122 ], + [ 8.9178056, 47.2214545 ], + [ 8.9094927, 47.2097849 ], + [ 8.9015216, 47.2083959 ], + [ 8.8989639, 47.2085193 ], + [ 8.8960461, 47.2088963 ], + [ 8.8931579, 47.2103156 ], + [ 8.8878961, 47.2113572 ], + [ 8.8802556, 47.2101244 ], + [ 8.861480199999999, 47.2078698 ], + [ 8.8624672, 47.2047488 ], + [ 8.8627912, 47.2037322 ], + [ 8.8633277, 47.2026326 ], + [ 8.863393, 47.2024688 ], + [ 8.8634552, 47.2023051 ], + [ 8.8635015, 47.2021149 ], + [ 8.863503399999999, 47.2014584 ], + [ 8.8634664, 47.2014416 ], + [ 8.8634927, 47.2013849 ], + [ 8.8636021, 47.201389 ], + [ 8.8637037, 47.2012597 ], + [ 8.8635813, 47.2012275 ], + [ 8.86337, 47.2012052 ], + [ 8.863071, 47.2012154 ], + [ 8.8630994, 47.2012896 ], + [ 8.8628644, 47.2013279 ], + [ 8.8628396, 47.2013525 ], + [ 8.8628624, 47.2014095 ], + [ 8.8628413, 47.2014162 ], + [ 8.8628742, 47.20154 ], + [ 8.8629099, 47.2015252 ], + [ 8.8632477, 47.2014925 ], + [ 8.8633177, 47.2014901 ], + [ 8.8633077, 47.202109 ], + [ 8.8632728, 47.2022744 ], + [ 8.8632452, 47.2023737 ], + [ 8.8631804, 47.202554 ], + [ 8.8625993, 47.2036851 ], + [ 8.8622259, 47.2046885 ], + [ 8.8609049, 47.2077797 ], + [ 8.8445375, 47.2058174 ], + [ 8.8327148, 47.2047073 ], + [ 8.8285185, 47.2044594 ], + [ 8.8151156, 47.2105408 ], + [ 8.8211317, 47.2173236 ], + [ 8.8261291, 47.2148759 ], + [ 8.8302943, 47.2128366 ], + [ 8.8442249, 47.211854 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSPW002", + "country" : "CHE", + "name" : [ + { + "text" : "LSPW Wangen Seaplanebase (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSPW Wangen Seaplanebase (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSPW Wangen Seaplanebase (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSPW Wangen Seaplanebase (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Wangen Seaplanebase", + "lang" : "de-CH" + }, + { + "text" : "Wangen Seaplanebase", + "lang" : "fr-CH" + }, + { + "text" : "Wangen Seaplanebase", + "lang" : "it-CH" + }, + { + "text" : "Wangen Seaplanebase", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.flugplatzwangen.ch/flugplatz/drohnenbewilligung/", + "email" : "drohnen@flugplatzwangen.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6985965, 47.5004283 ], + [ 7.6986462, 47.5004088 ], + [ 7.6987834, 47.5004157 ], + [ 7.6989494, 47.500475 ], + [ 7.6989545, 47.50046 ], + [ 7.6989596, 47.500445 ], + [ 7.6989698, 47.5004149 ], + [ 7.6987895, 47.5001916 ], + [ 7.6986678, 47.5000468 ], + [ 7.698374, 47.4998492 ], + [ 7.6979551, 47.4996966 ], + [ 7.6978296, 47.4996771 ], + [ 7.6978943, 47.4995771 ], + [ 7.6976557, 47.499573 ], + [ 7.6976978, 47.4997299 ], + [ 7.6979825, 47.4998796 ], + [ 7.6981294, 47.4999423 ], + [ 7.6982204, 47.5002151 ], + [ 7.6983201999999995, 47.500341 ], + [ 7.6983882, 47.5003998 ], + [ 7.698411, 47.5004974 ], + [ 7.6985965, 47.5004283 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr104", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Aspgraben", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Aspgraben", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Aspgraben", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Aspgraben", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.841798, 47.4948202 ], + [ 7.8415578, 47.4948903 ], + [ 7.8416062, 47.4955411 ], + [ 7.8417851, 47.4958852 ], + [ 7.841803, 47.4959112 ], + [ 7.8420024999999995, 47.496142 ], + [ 7.8422394, 47.4962262 ], + [ 7.8421888, 47.4960219 ], + [ 7.8421776, 47.4959763 ], + [ 7.8421445, 47.4958426 ], + [ 7.8420328999999995, 47.4956673 ], + [ 7.8419426, 47.4953202 ], + [ 7.8418985, 47.4950644 ], + [ 7.841798, 47.4948202 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr103", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Stüdler", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Stüdler", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Stüdler", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Stüdler", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.500515, 47.4567314 ], + [ 7.5005404, 47.4567277 ], + [ 7.5014809, 47.4565911 ], + [ 7.5021499, 47.4565738 ], + [ 7.5026753, 47.4567092 ], + [ 7.503038, 47.4567811 ], + [ 7.5033945, 47.4568488 ], + [ 7.5036822, 47.4568698 ], + [ 7.5039823, 47.4568654 ], + [ 7.5042325, 47.4569119 ], + [ 7.5052001, 47.4571915 ], + [ 7.5052286, 47.4571925 ], + [ 7.5052585, 47.4571707 ], + [ 7.5053098, 47.4571433 ], + [ 7.5053567, 47.457126099999996 ], + [ 7.5054349, 47.4571151 ], + [ 7.5055099, 47.4571159 ], + [ 7.5056245, 47.4571322 ], + [ 7.505304, 47.4569874 ], + [ 7.5046856, 47.4567717 ], + [ 7.5034795, 47.4563911 ], + [ 7.5030155, 47.4562425 ], + [ 7.5028153, 47.4561324 ], + [ 7.5026964, 47.4560392 ], + [ 7.5026772, 47.4557169 ], + [ 7.5026204, 47.4552716 ], + [ 7.5025887, 47.4548475 ], + [ 7.5026057, 47.4546318 ], + [ 7.5026114, 47.4546272 ], + [ 7.502527, 47.4541832 ], + [ 7.5025095, 47.4541258 ], + [ 7.5025078, 47.4541174 ], + [ 7.5024847, 47.4540907 ], + [ 7.502463, 47.4539344 ], + [ 7.5024472, 47.4538168 ], + [ 7.502511, 47.4537081 ], + [ 7.502656, 47.4535388 ], + [ 7.5027304, 47.4534999 ], + [ 7.5028192, 47.4534805 ], + [ 7.5028965, 47.4534668 ], + [ 7.5030574, 47.4534176 ], + [ 7.5030743, 47.4534149 ], + [ 7.5030213, 47.4533837 ], + [ 7.502988, 47.4533642 ], + [ 7.5029261, 47.4533295 ], + [ 7.502815, 47.4533034 ], + [ 7.5026848, 47.4532815 ], + [ 7.5025774, 47.453242 ], + [ 7.5024871, 47.4531702 ], + [ 7.5024552, 47.4531167 ], + [ 7.5024429999999995, 47.4530628 ], + [ 7.5024684, 47.4529995 ], + [ 7.5024965, 47.4529436 ], + [ 7.5026158, 47.4528851 ], + [ 7.5027596, 47.4528369 ], + [ 7.502619, 47.4528282 ], + [ 7.5024571, 47.4528655 ], + [ 7.5023421, 47.452937 ], + [ 7.5021301000000005, 47.4531075 ], + [ 7.5018685, 47.4533194 ], + [ 7.5015838, 47.4535423 ], + [ 7.5013638, 47.4537219 ], + [ 7.5013478, 47.4537378 ], + [ 7.5012922, 47.4538077 ], + [ 7.5012385, 47.4538975 ], + [ 7.5011881, 47.4540105 ], + [ 7.50114, 47.4541643 ], + [ 7.501091, 47.454337699999996 ], + [ 7.5010464, 47.454494 ], + [ 7.5009879999999995, 47.4546995 ], + [ 7.5009258, 47.4548953 ], + [ 7.5008591, 47.4550918 ], + [ 7.5007815, 47.4552944 ], + [ 7.5007073, 47.4554697 ], + [ 7.5006248, 47.4557386 ], + [ 7.5005857, 47.4558926 ], + [ 7.500567, 47.4560869 ], + [ 7.5005811, 47.4562873 ], + [ 7.5005471, 47.4564466 ], + [ 7.5005095, 47.4565637 ], + [ 7.5005144999999995, 47.4566974 ], + [ 7.500515, 47.4567314 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns012", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Radme, Hanslifels und Chällengraben", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Radme, Hanslifels und Chällengraben", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Radme, Hanslifels und Chällengraben", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Radme, Hanslifels und Chällengraben", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.6315557, 46.5163406 ], + [ 6.6315524, 46.5161993 ], + [ 6.6315385, 46.5160584 ], + [ 6.6315138000000005, 46.5159181 ], + [ 6.6314786, 46.5157789 ], + [ 6.6314329, 46.5156412 ], + [ 6.6313768, 46.5155053 ], + [ 6.6313105, 46.5153717 ], + [ 6.6312341, 46.5152406 ], + [ 6.6311479, 46.5151125 ], + [ 6.6310521, 46.5149876 ], + [ 6.630947, 46.5148664 ], + [ 6.6308328, 46.5147492 ], + [ 6.6307099, 46.5146362 ], + [ 6.6305786, 46.5145278 ], + [ 6.6304392, 46.5144243 ], + [ 6.6302923, 46.514326 ], + [ 6.630138, 46.5142332 ], + [ 6.6299769, 46.514146 ], + [ 6.6298095, 46.5140648 ], + [ 6.6296361, 46.5139897 ], + [ 6.6294573, 46.513921 ], + [ 6.6292735, 46.5138589 ], + [ 6.6290852000000005, 46.5138035 ], + [ 6.628893, 46.5137549 ], + [ 6.6286974, 46.5137134 ], + [ 6.6284989, 46.513679 ], + [ 6.6282981, 46.5136518 ], + [ 6.6280955, 46.5136319 ], + [ 6.6278916, 46.5136194 ], + [ 6.6276871, 46.5136142 ], + [ 6.6274825, 46.5136164 ], + [ 6.6272783, 46.5136261 ], + [ 6.6270751, 46.5136431 ], + [ 6.6268735, 46.5136674 ], + [ 6.6266739999999995, 46.5136989 ], + [ 6.6264772, 46.5137376 ], + [ 6.6262836, 46.5137834 ], + [ 6.6260938, 46.5138361 ], + [ 6.6259081, 46.5138956 ], + [ 6.6257273, 46.5139617 ], + [ 6.6255517, 46.5140343 ], + [ 6.6253817999999995, 46.5141131 ], + [ 6.6252182, 46.514198 ], + [ 6.6250612, 46.5142886 ], + [ 6.6249113, 46.5143848 ], + [ 6.6247689, 46.5144863 ], + [ 6.6246343, 46.5145927 ], + [ 6.6245081, 46.5147039 ], + [ 6.6243904, 46.5148195 ], + [ 6.6242817, 46.5149392 ], + [ 6.6241822, 46.5150627 ], + [ 6.6240921, 46.5151896 ], + [ 6.6240119, 46.5153195 ], + [ 6.6239415, 46.5154522 ], + [ 6.6238814, 46.5155872 ], + [ 6.6238315, 46.5157243 ], + [ 6.6237922000000005, 46.5158629 ], + [ 6.6237633, 46.5160028 ], + [ 6.6237452, 46.5161435 ], + [ 6.6237376999999995, 46.5162847 ], + [ 6.6237409, 46.516426 ], + [ 6.6237548, 46.5165669 ], + [ 6.6237794, 46.5167072 ], + [ 6.6238146, 46.5168464 ], + [ 6.6238604, 46.5169841 ], + [ 6.6239164, 46.5171199 ], + [ 6.6239827, 46.5172536 ], + [ 6.6240591, 46.5173847 ], + [ 6.6241453, 46.5175128 ], + [ 6.6242411, 46.5176377 ], + [ 6.6243462, 46.5177589 ], + [ 6.6244604, 46.5178762 ], + [ 6.6245833, 46.5179892 ], + [ 6.6247146, 46.5180975 ], + [ 6.6248539, 46.518201 ], + [ 6.6250009, 46.5182993 ], + [ 6.6251551, 46.5183922 ], + [ 6.6253162, 46.5184794 ], + [ 6.6254837, 46.5185606 ], + [ 6.6256571, 46.5186357 ], + [ 6.6258359, 46.5187044 ], + [ 6.6260197, 46.5187665 ], + [ 6.626208, 46.5188219 ], + [ 6.6264002, 46.5188705 ], + [ 6.6265958, 46.518912 ], + [ 6.6267943, 46.5189464 ], + [ 6.6269952, 46.5189736 ], + [ 6.6271978, 46.5189935 ], + [ 6.6274017, 46.519006 ], + [ 6.6276062, 46.5190112 ], + [ 6.6278109, 46.5190089 ], + [ 6.6280151, 46.5189993 ], + [ 6.6282183, 46.5189823 ], + [ 6.6284199, 46.518958 ], + [ 6.6286194, 46.5189265 ], + [ 6.6288162, 46.5188877 ], + [ 6.6290098, 46.518842 ], + [ 6.6291997, 46.5187892 ], + [ 6.6293854, 46.5187297 ], + [ 6.6295662, 46.5186636 ], + [ 6.6297418, 46.518591 ], + [ 6.6299117, 46.5185122 ], + [ 6.6300754, 46.5184274 ], + [ 6.6302323, 46.5183367 ], + [ 6.6303823, 46.5182406 ], + [ 6.6305247, 46.5181391 ], + [ 6.6306592, 46.5180326 ], + [ 6.6307854, 46.5179214 ], + [ 6.6309031, 46.5178058 ], + [ 6.6310118, 46.5176861 ], + [ 6.6311113, 46.5175626 ], + [ 6.6312013, 46.5174358 ], + [ 6.6312816, 46.5173058 ], + [ 6.6313519, 46.5171731 ], + [ 6.631412, 46.5170381 ], + [ 6.6314619, 46.516901 ], + [ 6.6315012, 46.5167624 ], + [ 6.6315301, 46.5166225 ], + [ 6.6315482, 46.5164818 ], + [ 6.6315557, 46.5163406 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SIM0001", + "country" : "CHE", + "name" : [ + { + "text" : "Prison du Simplon", + "lang" : "de-CH" + }, + { + "text" : "Prison du Simplon", + "lang" : "fr-CH" + }, + { + "text" : "Prison du Simplon", + "lang" : "it-CH" + }, + { + "text" : "Prison du Simplon", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Direction du Service pénitentiaire Vaud", + "lang" : "de-CH" + }, + { + "text" : "Direction du Service pénitentiaire Vaud", + "lang" : "fr-CH" + }, + { + "text" : "Direction du Service pénitentiaire Vaud", + "lang" : "it-CH" + }, + { + "text" : "Direction du Service pénitentiaire Vaud", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/toutes-les-autorites/departements/departement-de-la-jeunesse-de-lenvironnement-et-de-la-securite-djes/service-penitentiaire-spen/", + "email" : "info.spen@vd.ch", + "phone" : "0041213164801", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.1825401, 46.4595169 ], + [ 7.1824733, 46.459057 ], + [ 7.1823265, 46.4589838 ], + [ 7.1821395, 46.4589051 ], + [ 7.1819916, 46.458787 ], + [ 7.1817543, 46.4586119 ], + [ 7.1815259, 46.4584495 ], + [ 7.1812483, 46.4582518 ], + [ 7.1810368, 46.4581227 ], + [ 7.18089, 46.4580495 ], + [ 7.1807679, 46.4579935 ], + [ 7.180556, 46.4579435 ], + [ 7.1802946, 46.4578925 ], + [ 7.1799854, 46.4577641 ], + [ 7.1796921, 46.4575898 ], + [ 7.1786313, 46.4570332 ], + [ 7.1781248, 46.4567964 ], + [ 7.1778314, 46.4566338 ], + [ 7.1775134, 46.456454 ], + [ 7.1773007, 46.4562961 ], + [ 7.1771295, 46.4561779 ], + [ 7.1769752, 46.4560597 ], + [ 7.1768442, 46.4559532 ], + [ 7.1767131, 46.4558801 ], + [ 7.1765909, 46.4558465 ], + [ 7.1764282999999995, 46.4558299 ], + [ 7.1761839, 46.4557619 ], + [ 7.1759966, 46.4557453 ], + [ 7.1758577, 46.4556559 ], + [ 7.1756787, 46.455543 ], + [ 7.1754668, 46.4554876 ], + [ 7.1752458, 46.4554197 ], + [ 7.1751237, 46.4553753 ], + [ 7.1750106, 46.4553355 ], + [ 7.1748549, 46.4552514 ], + [ 7.1751966, 46.4551038 ], + [ 7.1753746, 46.4549117 ], + [ 7.1754639, 46.4547365 ], + [ 7.1755692, 46.4545056 ], + [ 7.1756834, 46.4542962 ], + [ 7.1758049, 46.4542003 ], + [ 7.1759097, 46.4540755 ], + [ 7.1759508, 46.4539235 ], + [ 7.1759907, 46.4537311 ], + [ 7.1760227, 46.4535792 ], + [ 7.1760479, 46.4534893 ], + [ 7.1759897, 46.4534154 ], + [ 7.1756884, 46.4532698 ], + [ 7.1753429, 46.4531368 ], + [ 7.1726578, 46.4549818 ], + [ 7.1738382, 46.4558032 ], + [ 7.1723711, 46.4571707 ], + [ 7.1722719, 46.4577417 ], + [ 7.172008, 46.458198 ], + [ 7.171717, 46.4586165 ], + [ 7.1717152, 46.4589872 ], + [ 7.1714113, 46.4591106 ], + [ 7.1710367999999995, 46.4595568 ], + [ 7.170567, 46.4597941 ], + [ 7.1697927, 46.4605254 ], + [ 7.1704803, 46.4607267 ], + [ 7.1713904, 46.4604239 ], + [ 7.1725125, 46.4593795 ], + [ 7.1732698, 46.4594388 ], + [ 7.1738612, 46.4596021 ], + [ 7.1747275, 46.4600035 ], + [ 7.1752767, 46.4602999 ], + [ 7.1779531, 46.4624498 ], + [ 7.1782085, 46.4626554 ], + [ 7.1782954, 46.4627249 ], + [ 7.1785039, 46.4626777 ], + [ 7.178586, 46.462659 ], + [ 7.1790867, 46.4616796 ], + [ 7.1797224, 46.4610343 ], + [ 7.1804541, 46.4607409 ], + [ 7.1810625, 46.4603609 ], + [ 7.1825401, 46.4595169 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00008", + "country" : "CHE", + "name" : [ + { + "text" : "Pierreuse - Gummfluh", + "lang" : "de-CH" + }, + { + "text" : "Pierreuse - Gummfluh", + "lang" : "fr-CH" + }, + { + "text" : "Pierreuse - Gummfluh", + "lang" : "it-CH" + }, + { + "text" : "Pierreuse - Gummfluh", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "startDateTime" : "2024-11-15T00:00:00+01:00", + "endDateTime" : "2025-04-15T00:00:00+02:00" + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Generaldirektion für Umwelt", + "lang" : "de-CH" + }, + { + "text" : "Direction générale de l'environnement", + "lang" : "fr-CH" + }, + { + "text" : "Direzione generale dell'Ambiente", + "lang" : "it-CH" + }, + { + "text" : "Environment Department", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.dge@vd.ch", + "phone" : "0041213164422", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.1158637, 46.6112466 ], + [ 7.1158592, 46.6111053 ], + [ 7.115844, 46.6109644 ], + [ 7.1158181, 46.6108243 ], + [ 7.1157815, 46.6106853 ], + [ 7.1157345, 46.6105477 ], + [ 7.1156771, 46.6104121 ], + [ 7.1156094, 46.6102787 ], + [ 7.1155318, 46.610148 ], + [ 7.1154443, 46.6100202 ], + [ 7.1153472, 46.6098958 ], + [ 7.1152408, 46.609775 ], + [ 7.1151254, 46.6096582 ], + [ 7.1150012, 46.6095458 ], + [ 7.1148687, 46.609438 ], + [ 7.1147282, 46.6093351 ], + [ 7.1145801, 46.6092374 ], + [ 7.1144248, 46.6091452 ], + [ 7.1142626, 46.6090587 ], + [ 7.1140942, 46.6089782 ], + [ 7.1139198, 46.6089039 ], + [ 7.11374, 46.608836 ], + [ 7.1135554, 46.6087746 ], + [ 7.1133663, 46.60872 ], + [ 7.1131733, 46.6086723 ], + [ 7.112977, 46.6086316 ], + [ 7.1127779, 46.608598 ], + [ 7.1125764, 46.6085717 ], + [ 7.1123733, 46.6085527 ], + [ 7.112169, 46.608541 ], + [ 7.1119641, 46.6085367 ], + [ 7.1117591000000004, 46.6085398 ], + [ 7.1115547, 46.6085503 ], + [ 7.1113513, 46.6085682 ], + [ 7.1111496, 46.6085934 ], + [ 7.11095, 46.6086258 ], + [ 7.1107531999999996, 46.6086653 ], + [ 7.1105597, 46.6087119 ], + [ 7.1103699, 46.6087654 ], + [ 7.1101845, 46.6088257 ], + [ 7.110004, 46.6088926 ], + [ 7.1098287, 46.6089659 ], + [ 7.1096593, 46.6090455 ], + [ 7.1094961, 46.609131 ], + [ 7.1093397, 46.6092223 ], + [ 7.1091903, 46.6093191 ], + [ 7.1090486, 46.6094212 ], + [ 7.1089148, 46.6095283 ], + [ 7.1087893, 46.60964 ], + [ 7.1086725, 46.6097561 ], + [ 7.1085646, 46.6098762 ], + [ 7.108466, 46.6100001 ], + [ 7.108377, 46.6101274 ], + [ 7.1082977, 46.6102577 ], + [ 7.1082285, 46.610390699999996 ], + [ 7.1081694, 46.610526 ], + [ 7.1081207, 46.6106632 ], + [ 7.1080825, 46.610802 ], + [ 7.1080549, 46.610942 ], + [ 7.1080379, 46.6110828 ], + [ 7.1080317, 46.611224 ], + [ 7.1080362, 46.6113653 ], + [ 7.1080514, 46.6115062 ], + [ 7.1080773, 46.6116463 ], + [ 7.1081138, 46.6117854 ], + [ 7.1081608, 46.6119229 ], + [ 7.1082182, 46.6120585 ], + [ 7.1082859, 46.6121919 ], + [ 7.1083635, 46.6123226 ], + [ 7.108451, 46.6124504 ], + [ 7.1085481, 46.6125749 ], + [ 7.1086545, 46.6126957 ], + [ 7.1087699, 46.6128124 ], + [ 7.108894, 46.6129249 ], + [ 7.1090265, 46.6130327 ], + [ 7.109167, 46.6131356 ], + [ 7.1093151, 46.6132333 ], + [ 7.1094705, 46.6133255 ], + [ 7.1096326, 46.613412 ], + [ 7.1098011, 46.6134925 ], + [ 7.1099755, 46.6135668 ], + [ 7.1101552, 46.6136347 ], + [ 7.1103399, 46.6136961 ], + [ 7.110529, 46.6137507 ], + [ 7.110722, 46.6137984 ], + [ 7.1109183, 46.6138391 ], + [ 7.1111175, 46.6138727 ], + [ 7.1113189, 46.613899 ], + [ 7.1115221, 46.6139181 ], + [ 7.1117264, 46.6139297 ], + [ 7.1119313, 46.613934 ], + [ 7.1121363, 46.6139309 ], + [ 7.1123408, 46.6139204 ], + [ 7.1125442, 46.6139026 ], + [ 7.1127459, 46.6138774 ], + [ 7.1129455, 46.613845 ], + [ 7.1131423, 46.6138054 ], + [ 7.1133359, 46.6137588 ], + [ 7.1135256, 46.6137053 ], + [ 7.113711, 46.613645 ], + [ 7.1138916, 46.6135781 ], + [ 7.1140669, 46.6135048 ], + [ 7.1142363, 46.6134252 ], + [ 7.1143995, 46.6133397 ], + [ 7.114556, 46.6132484 ], + [ 7.1147053, 46.6131515 ], + [ 7.114847, 46.6130495 ], + [ 7.1149808, 46.6129424 ], + [ 7.1151063, 46.6128307 ], + [ 7.1152231, 46.6127146 ], + [ 7.115331, 46.6125944 ], + [ 7.1154296, 46.6124705 ], + [ 7.1155186, 46.6123433 ], + [ 7.1155978, 46.6122129 ], + [ 7.1156671, 46.61208 ], + [ 7.1157261, 46.6119447 ], + [ 7.1157748, 46.611807400000004 ], + [ 7.115813, 46.6116686 ], + [ 7.1158406, 46.6115286 ], + [ 7.1158575, 46.6113878 ], + [ 7.1158637, 46.6112466 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0019", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Botterens", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Botterens", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Botterens", + "lang" : "it-CH" + }, + { + "text" : "Substation Botterens", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5449865, 47.0333692 ], + [ 7.5449808, 47.0332279 ], + [ 7.5449643, 47.0330871 ], + [ 7.544937, 47.032947 ], + [ 7.5448991, 47.0328082 ], + [ 7.5448506, 47.0326708 ], + [ 7.5447916, 47.0325354 ], + [ 7.5447223999999995, 47.0324023 ], + [ 7.5446431, 47.0322718 ], + [ 7.5445538, 47.0321444 ], + [ 7.544455, 47.0320203 ], + [ 7.5443468, 47.0319 ], + [ 7.5442295, 47.0317837 ], + [ 7.5441035, 47.0316717 ], + [ 7.5439691, 47.0315644 ], + [ 7.5438267, 47.031462 ], + [ 7.5436765999999995, 47.0313649 ], + [ 7.5435193, 47.0312733 ], + [ 7.5433552, 47.0311874 ], + [ 7.5431847, 47.0311076 ], + [ 7.5430084, 47.0310339 ], + [ 7.5428267, 47.0309667 ], + [ 7.5426401, 47.030906 ], + [ 7.5424491, 47.0308521 ], + [ 7.5422542, 47.0308051 ], + [ 7.542056, 47.0307652 ], + [ 7.5418551, 47.0307324 ], + [ 7.5416518, 47.0307068 ], + [ 7.5414469, 47.0306886 ], + [ 7.5412409, 47.0306777 ], + [ 7.5410344, 47.0306742 ], + [ 7.5408278, 47.030678 ], + [ 7.5406219, 47.0306893 ], + [ 7.540417, 47.0307079 ], + [ 7.5402139, 47.0307339 ], + [ 7.5400131, 47.030767 ], + [ 7.539815, 47.0308073 ], + [ 7.5396203, 47.0308547 ], + [ 7.5394295, 47.0309089 ], + [ 7.5392432, 47.0309699 ], + [ 7.5390616999999995, 47.0310375 ], + [ 7.5388857, 47.0311114 ], + [ 7.5387155, 47.0311916 ], + [ 7.5385518000000005, 47.0312778 ], + [ 7.5383948, 47.0313697 ], + [ 7.5382451, 47.031467 ], + [ 7.5381031, 47.0315696 ], + [ 7.5379691, 47.0316772 ], + [ 7.5378435, 47.0317894 ], + [ 7.5377267, 47.0319059 ], + [ 7.5376189, 47.0320265 ], + [ 7.5375206, 47.0321507 ], + [ 7.5374318, 47.0322783 ], + [ 7.5373529999999995, 47.0324089 ], + [ 7.5372843, 47.0325422 ], + [ 7.5372258, 47.0326777 ], + [ 7.5371778, 47.0328151 ], + [ 7.5371404, 47.032954 ], + [ 7.5371137, 47.0330941 ], + [ 7.5370978, 47.033235 ], + [ 7.5370926, 47.0333762 ], + [ 7.5370983, 47.0335174 ], + [ 7.5371148, 47.0336583 ], + [ 7.537142, 47.0337983 ], + [ 7.5371799, 47.0339372 ], + [ 7.5372284, 47.0340745 ], + [ 7.5372873, 47.0342099 ], + [ 7.5373565, 47.034343 ], + [ 7.5374358, 47.0344735 ], + [ 7.5375250000000005, 47.0346009 ], + [ 7.5376239, 47.034725 ], + [ 7.5377320999999995, 47.0348454 ], + [ 7.5378492999999995, 47.0349617 ], + [ 7.5379753, 47.0350737 ], + [ 7.5381097, 47.035181 ], + [ 7.5382522, 47.0352834 ], + [ 7.5384022, 47.0353805 ], + [ 7.5385596, 47.0354721 ], + [ 7.5387236, 47.035558 ], + [ 7.5388941, 47.0356378 ], + [ 7.5390704, 47.0357115 ], + [ 7.5392522, 47.0357788 ], + [ 7.5394388, 47.0358394 ], + [ 7.5396298, 47.0358933 ], + [ 7.5398247, 47.0359403 ], + [ 7.5400229, 47.0359803 ], + [ 7.5402239, 47.0360131 ], + [ 7.5404271, 47.0360386 ], + [ 7.5406321, 47.0360569 ], + [ 7.5408381, 47.0360678 ], + [ 7.5410447, 47.0360713 ], + [ 7.5412513, 47.0360674 ], + [ 7.5414573, 47.0360562 ], + [ 7.5416621, 47.0360376 ], + [ 7.5418652, 47.0360116 ], + [ 7.5420660999999996, 47.0359785 ], + [ 7.5422642, 47.0359382 ], + [ 7.5424589, 47.0358908 ], + [ 7.5426497, 47.0358366 ], + [ 7.5428361, 47.0357756 ], + [ 7.5430176, 47.035708 ], + [ 7.5431936, 47.0356341 ], + [ 7.5433638, 47.0355539 ], + [ 7.5435276, 47.0354677 ], + [ 7.5436845, 47.0353758 ], + [ 7.5438342, 47.0352784 ], + [ 7.5439763, 47.0351758 ], + [ 7.5441102, 47.0350683 ], + [ 7.5442358, 47.0349561 ], + [ 7.5443526, 47.0348395 ], + [ 7.5444604, 47.034719 ], + [ 7.5445587, 47.0345947 ], + [ 7.5446474, 47.0344671 ], + [ 7.5447261999999995, 47.0343365 ], + [ 7.544795, 47.0342033 ], + [ 7.5448534, 47.0340677 ], + [ 7.5449013, 47.0339303 ], + [ 7.5449387, 47.0337914 ], + [ 7.5449654, 47.0336513 ], + [ 7.5449813, 47.0335104 ], + [ 7.5449865, 47.0333692 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "HIB0001", + "country" : "CHE", + "name" : [ + { + "text" : "JVA Hindelbank", + "lang" : "de-CH" + }, + { + "text" : "JVA Hindelbank", + "lang" : "fr-CH" + }, + { + "text" : "JVA Hindelbank", + "lang" : "it-CH" + }, + { + "text" : "JVA Hindelbank", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Justizvollzug", + "lang" : "de-CH" + }, + { + "text" : "Amt für Justizvollzug", + "lang" : "fr-CH" + }, + { + "text" : "Amt für Justizvollzug", + "lang" : "it-CH" + }, + { + "text" : "Amt für Justizvollzug", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Schutz und Sicherheit", + "lang" : "de-CH" + }, + { + "text" : "Schutz und Sicherheit", + "lang" : "fr-CH" + }, + { + "text" : "Schutz und Sicherheit", + "lang" : "it-CH" + }, + { + "text" : "Schutz und Sicherheit", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.be.ch/hindelbank", + "email" : "jva.hindelbank@be.ch", + "phone" : "0041316363711", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.506249, 47.1923129 ], + [ 8.5062407, 47.1921718 ], + [ 8.5062217, 47.1920311 ], + [ 8.5061918, 47.1918913 ], + [ 8.506151299999999, 47.1917527 ], + [ 8.5061002, 47.1916158 ], + [ 8.5060386, 47.191481 ], + [ 8.5059668, 47.1913484 ], + [ 8.5058849, 47.1912187 ], + [ 8.5057931, 47.191092 ], + [ 8.5056918, 47.1909688 ], + [ 8.5055811, 47.190849299999996 ], + [ 8.5054614, 47.190734 ], + [ 8.505333, 47.1906231 ], + [ 8.5051963, 47.1905169 ], + [ 8.5050516, 47.1904158 ], + [ 8.5048994, 47.1903199 ], + [ 8.5047399, 47.1902297 ], + [ 8.5045738, 47.1901452 ], + [ 8.5044015, 47.1900668 ], + [ 8.5042233, 47.1899946 ], + [ 8.5040399, 47.1899289 ], + [ 8.5038516, 47.1898698 ], + [ 8.5036591, 47.1898175 ], + [ 8.5034628, 47.1897722 ], + [ 8.5032633, 47.1897339 ], + [ 8.5030612, 47.1897028 ], + [ 8.5028569, 47.1896789 ], + [ 8.5026511, 47.1896624 ], + [ 8.5024443, 47.1896532 ], + [ 8.5022371, 47.1896514 ], + [ 8.50203, 47.189657 ], + [ 8.5018236, 47.18967 ], + [ 8.5016186, 47.1896903 ], + [ 8.5014153, 47.189718 ], + [ 8.5012145, 47.1897528 ], + [ 8.5010166, 47.1897948 ], + [ 8.5008222, 47.1898437 ], + [ 8.5006318, 47.1898995 ], + [ 8.500446, 47.1899621 ], + [ 8.5002652, 47.1900312 ], + [ 8.50009, 47.1901066 ], + [ 8.4999208, 47.1901882 ], + [ 8.4997581, 47.1902757 ], + [ 8.4996024, 47.1903689 ], + [ 8.499454, 47.1904675 ], + [ 8.4993134, 47.1905713 ], + [ 8.4991809, 47.1906799 ], + [ 8.499057, 47.1907932 ], + [ 8.4989419, 47.1909107 ], + [ 8.498836, 47.1910321 ], + [ 8.4987396, 47.1911572 ], + [ 8.4986529, 47.1912855 ], + [ 8.4985762, 47.1914167 ], + [ 8.4985097, 47.1915505 ], + [ 8.4984535, 47.1916865 ], + [ 8.4984079, 47.1918243 ], + [ 8.4983728, 47.1919635 ], + [ 8.4983486, 47.1921038 ], + [ 8.4983351, 47.1922448 ], + [ 8.4983325, 47.1923861 ], + [ 8.4983407, 47.1925272 ], + [ 8.4983597, 47.192667900000004 ], + [ 8.4983896, 47.1928077 ], + [ 8.4984301, 47.1929463 ], + [ 8.4984812, 47.1930832 ], + [ 8.4985427, 47.1932181 ], + [ 8.4986145, 47.1933506 ], + [ 8.4986964, 47.1934804 ], + [ 8.4987882, 47.193607 ], + [ 8.4988895, 47.1937303 ], + [ 8.4990002, 47.1938497 ], + [ 8.4991199, 47.1939651 ], + [ 8.4992482, 47.194076 ], + [ 8.499385, 47.1941821 ], + [ 8.4995297, 47.1942833 ], + [ 8.4996819, 47.1943791 ], + [ 8.4998413, 47.1944694 ], + [ 8.5000074, 47.1945539 ], + [ 8.5001798, 47.1946323 ], + [ 8.500358, 47.1947045 ], + [ 8.5005414, 47.1947702 ], + [ 8.5007297, 47.1948293 ], + [ 8.5009222, 47.1948816 ], + [ 8.5011185, 47.194927 ], + [ 8.501318, 47.1949653 ], + [ 8.5015202, 47.1949964 ], + [ 8.5017245, 47.1950202 ], + [ 8.5019303, 47.1950368 ], + [ 8.5021371, 47.195046 ], + [ 8.5023444, 47.1950477 ], + [ 8.5025515, 47.1950421 ], + [ 8.5027579, 47.1950291 ], + [ 8.502963, 47.1950088 ], + [ 8.5031662, 47.1949812 ], + [ 8.5033671, 47.1949463 ], + [ 8.503565, 47.1949044 ], + [ 8.5037594, 47.1948554 ], + [ 8.503949800000001, 47.1947996 ], + [ 8.5041356, 47.194737 ], + [ 8.5043164, 47.194668 ], + [ 8.5044916, 47.1945925 ], + [ 8.5046608, 47.1945109 ], + [ 8.5048235, 47.1944234 ], + [ 8.5049793, 47.1943302 ], + [ 8.5051277, 47.1942316 ], + [ 8.505268300000001, 47.1941278 ], + [ 8.5054007, 47.1940191 ], + [ 8.5055247, 47.1939059 ], + [ 8.5056397, 47.1937884 ], + [ 8.505745600000001, 47.1936669 ], + [ 8.505842, 47.1935419 ], + [ 8.5059287, 47.1934135 ], + [ 8.5060054, 47.1932823 ], + [ 8.5060719, 47.1931485 ], + [ 8.5061281, 47.1930125 ], + [ 8.5061737, 47.1928747 ], + [ 8.5062087, 47.1927355 ], + [ 8.5062329, 47.1925952 ], + [ 8.5062464, 47.1924542 ], + [ 8.506249, 47.1923129 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0003", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Altgass", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Altgass", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Altgass", + "lang" : "it-CH" + }, + { + "text" : "Substation Altgass", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4743393, 46.9765813 ], + [ 7.4743596, 46.9765659 ], + [ 7.4743798, 46.9765504 ], + [ 7.4743998, 46.9765348 ], + [ 7.4744196, 46.9765191 ], + [ 7.4744387, 46.9765037 ], + [ 7.4744576, 46.9764883 ], + [ 7.4744764, 46.9764727 ], + [ 7.474495, 46.9764571 ], + [ 7.4745134, 46.9764413 ], + [ 7.4745316, 46.9764255 ], + [ 7.4745497, 46.9764096 ], + [ 7.4745716, 46.9763901 ], + [ 7.4745933, 46.9763706 ], + [ 7.4746148, 46.9763509 ], + [ 7.474636, 46.976331 ], + [ 7.4746569, 46.9763111 ], + [ 7.4746777, 46.9762911 ], + [ 7.4746981, 46.9762709 ], + [ 7.4747077, 46.9762658 ], + [ 7.4743617, 46.9761121 ], + [ 7.474098, 46.9759944 ], + [ 7.4739793, 46.976113 ], + [ 7.4738435, 46.9762463 ], + [ 7.4738209, 46.9762676 ], + [ 7.473798, 46.9762889 ], + [ 7.473775, 46.97631 ], + [ 7.4737517, 46.976331 ], + [ 7.4737283, 46.9763519 ], + [ 7.4737046, 46.9763728 ], + [ 7.4736807, 46.9763934 ], + [ 7.4736638, 46.9764076 ], + [ 7.4736468, 46.9764217 ], + [ 7.4736296, 46.9764356 ], + [ 7.4736123, 46.9764495 ], + [ 7.4735948, 46.9764633 ], + [ 7.4735771, 46.976477 ], + [ 7.4735592, 46.9764906 ], + [ 7.4735408, 46.9765042 ], + [ 7.4735221, 46.9765178 ], + [ 7.4735032, 46.9765312 ], + [ 7.4734842, 46.9765445 ], + [ 7.4734649, 46.9765577 ], + [ 7.4734454, 46.976570699999996 ], + [ 7.4734258, 46.9765836 ], + [ 7.4734634, 46.976618 ], + [ 7.4729506, 46.9768316 ], + [ 7.4733309, 46.9771812 ], + [ 7.4737241, 46.9769805 ], + [ 7.4737366, 46.9769743 ], + [ 7.4737491, 46.976968 ], + [ 7.4737615, 46.9769617 ], + [ 7.4737739, 46.9769553 ], + [ 7.4737862, 46.976949 ], + [ 7.4737985, 46.9769425 ], + [ 7.4738108, 46.9769361 ], + [ 7.4738351, 46.9769232 ], + [ 7.4738593, 46.9769102 ], + [ 7.4738833, 46.976897 ], + [ 7.4739072, 46.9768837 ], + [ 7.4739309, 46.9768703 ], + [ 7.4739545, 46.9768568 ], + [ 7.4739778999999995, 46.9768432 ], + [ 7.4740011, 46.9768295 ], + [ 7.4740241, 46.9768157 ], + [ 7.474047, 46.9768019 ], + [ 7.4740698, 46.9767879 ], + [ 7.4740924, 46.9767738 ], + [ 7.4741149, 46.9767596 ], + [ 7.4741372, 46.9767453 ], + [ 7.4741602, 46.9767303 ], + [ 7.474183, 46.9767151 ], + [ 7.4742056, 46.9766999 ], + [ 7.4742281, 46.9766846 ], + [ 7.4742505, 46.9766692 ], + [ 7.4742728, 46.9766537 ], + [ 7.4742949, 46.9766381 ], + [ 7.4742773, 46.9766269 ], + [ 7.4742981, 46.9766118 ], + [ 7.4743188, 46.9765966 ], + [ 7.4743393, 46.9765813 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VBS_33", + "country" : "CHE", + "name" : [ + { + "text" : "VBS_33 Ittigen", + "lang" : "de-CH" + }, + { + "text" : "VBS_33 Ittigen", + "lang" : "fr-CH" + }, + { + "text" : "VBS_33 Ittigen", + "lang" : "it-CH" + }, + { + "text" : "VBS_33 Ittigen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "regulationExemption" : "YES", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Eidgenössisches Departement für Verteidigung, Bevölkerungsschutz und Sport (VBS)", + "lang" : "de-CH" + }, + { + "text" : "Département fédéral de la défense, de la protection de la population et des sports (DDPS)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento federale della difesa, della protezione della popolazione e dello sport (DDPS)", + "lang" : "it-CH" + }, + { + "text" : "Federal Department of Defence, Civil Protection and Sport (DDPS)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Lageverfolgungszentrum der Armee LVZ A", + "lang" : "de-CH" + }, + { + "text" : "Centre de suivi de la situation de l’armée, CSS A", + "lang" : "fr-CH" + }, + { + "text" : "Centro di monitoraggio della situazione dell’esercito, Centro mon sit Es", + "lang" : "it-CH" + }, + { + "text" : "Joint Operation Center, JOC", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vtg.admin.ch/en/joint-operations-command", + "email" : "lvz.op@vtg.admin.ch", + "phone" : "+41 58 464 96 43", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6419497, 47.5157269 ], + [ 7.6428021, 47.5157971 ], + [ 7.6436488, 47.5158278 ], + [ 7.6436729, 47.5158333 ], + [ 7.6441058, 47.5157589 ], + [ 7.6445732, 47.5157959 ], + [ 7.6452245, 47.5159319 ], + [ 7.6457434, 47.5160686 ], + [ 7.646052, 47.5161674 ], + [ 7.6463829, 47.5161073 ], + [ 7.6464241, 47.5160998 ], + [ 7.6464387, 47.5160667 ], + [ 7.6464043, 47.5158884 ], + [ 7.6463757, 47.5157442 ], + [ 7.6463419, 47.5156459 ], + [ 7.6461387, 47.5152532 ], + [ 7.6448466, 47.5148808 ], + [ 7.6442787, 47.515066 ], + [ 7.644185, 47.5150776 ], + [ 7.6437924, 47.5150631 ], + [ 7.6437206, 47.5151167 ], + [ 7.6435595, 47.5152191 ], + [ 7.6434429, 47.5152816 ], + [ 7.6433228, 47.51533 ], + [ 7.6432058, 47.5153641 ], + [ 7.6425825, 47.5155591 ], + [ 7.6424784, 47.5155905 ], + [ 7.6423538, 47.5156231 ], + [ 7.6420513, 47.5156962 ], + [ 7.6419721, 47.5157166 ], + [ 7.6419566, 47.5157233 ], + [ 7.6419497, 47.5157269 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns057", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Dürrain", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Dürrain", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Dürrain", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Dürrain", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5406115, 47.4566777 ], + [ 7.5403731, 47.4566654 ], + [ 7.5400031, 47.4566496 ], + [ 7.539859, 47.4566341 ], + [ 7.5387899, 47.4565042 ], + [ 7.5380377, 47.4564177 ], + [ 7.5379143, 47.4564013 ], + [ 7.5378907, 47.4564005 ], + [ 7.5378843, 47.4563997 ], + [ 7.537878, 47.4563986 ], + [ 7.5378719, 47.4563972 ], + [ 7.537866, 47.4563953 ], + [ 7.5378603, 47.4563932 ], + [ 7.5378549, 47.4563907 ], + [ 7.5378498, 47.4563879 ], + [ 7.5378451, 47.4563849 ], + [ 7.5378408, 47.4563816 ], + [ 7.537837, 47.456378 ], + [ 7.5378336, 47.4563743 ], + [ 7.5378166, 47.4563708 ], + [ 7.5378173, 47.4564276 ], + [ 7.5376826, 47.4569346 ], + [ 7.5376747, 47.4569646 ], + [ 7.537778, 47.4569692 ], + [ 7.5386147999999995, 47.4570121 ], + [ 7.5398648999999995, 47.4570598 ], + [ 7.5405117, 47.457098 ], + [ 7.5405706, 47.4568466 ], + [ 7.5406040999999995, 47.456708 ], + [ 7.5406115, 47.4566777 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns047", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Blauenweid", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Blauenweid", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Blauenweid", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Blauenweid", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.4072469, 47.4072029 ], + [ 8.4072388, 47.4070618 ], + [ 8.40722, 47.4069211 ], + [ 8.4071902, 47.4067813 ], + [ 8.4071498, 47.4066427 ], + [ 8.4070987, 47.4065058 ], + [ 8.4070372, 47.4063708 ], + [ 8.4069653, 47.4062382 ], + [ 8.4068833, 47.4061084 ], + [ 8.4067914, 47.4059817 ], + [ 8.4066899, 47.4058584 ], + [ 8.406579, 47.4057388 ], + [ 8.406459, 47.4056234 ], + [ 8.4063303, 47.4055124 ], + [ 8.4061932, 47.4054062 ], + [ 8.4060481, 47.4053049 ], + [ 8.4058954, 47.4052089 ], + [ 8.4057356, 47.4051185 ], + [ 8.4055689, 47.4050339 ], + [ 8.405396, 47.4049554 ], + [ 8.4052173, 47.404883 ], + [ 8.4050332, 47.4048172 ], + [ 8.4048443, 47.4047579 ], + [ 8.4046511, 47.4047055 ], + [ 8.4044541, 47.40466 ], + [ 8.4042539, 47.4046215 ], + [ 8.404051, 47.4045902 ], + [ 8.4038459, 47.4045662 ], + [ 8.4036393, 47.4045495 ], + [ 8.4034317, 47.4045402 ], + [ 8.4032236, 47.4045382 ], + [ 8.4030157, 47.4045436 ], + [ 8.4028085, 47.4045565 ], + [ 8.4026025, 47.4045766 ], + [ 8.4023984, 47.4046041 ], + [ 8.4021967, 47.4046387 ], + [ 8.4019979, 47.4046805 ], + [ 8.4018026, 47.4047293 ], + [ 8.4016114, 47.404785 ], + [ 8.4014247, 47.4048474 ], + [ 8.4012431, 47.4049163 ], + [ 8.401067, 47.4049916 ], + [ 8.400897, 47.405073 ], + [ 8.4007335, 47.4051604 ], + [ 8.4005769, 47.4052534 ], + [ 8.4004277, 47.4053519 ], + [ 8.4002864, 47.4054556 ], + [ 8.4001532, 47.4055641 ], + [ 8.4000285, 47.4056772 ], + [ 8.3999128, 47.4057946 ], + [ 8.3998062, 47.405916 ], + [ 8.3997092, 47.4060409 ], + [ 8.3996219, 47.4061692 ], + [ 8.3995447, 47.4063003 ], + [ 8.3994776, 47.406434 ], + [ 8.399421, 47.40657 ], + [ 8.3993749, 47.4067077 ], + [ 8.3993395, 47.4068469 ], + [ 8.399314799999999, 47.4069872 ], + [ 8.3993011, 47.4071281 ], + [ 8.3992982, 47.4072694 ], + [ 8.3993061, 47.4074105 ], + [ 8.399325, 47.4075512 ], + [ 8.3993547, 47.407691 ], + [ 8.3993951, 47.4078296 ], + [ 8.3994462, 47.4079665 ], + [ 8.3995077, 47.4081015 ], + [ 8.3995796, 47.408234 ], + [ 8.3996616, 47.4083639 ], + [ 8.3997535, 47.4084906 ], + [ 8.399855, 47.4086139 ], + [ 8.3999659, 47.4087335 ], + [ 8.4000859, 47.4088489 ], + [ 8.4002146, 47.4089599 ], + [ 8.4003516, 47.4090662 ], + [ 8.4004967, 47.4091674 ], + [ 8.4006494, 47.4092634 ], + [ 8.4008093, 47.4093538 ], + [ 8.4009759, 47.4094384 ], + [ 8.4011489, 47.409517 ], + [ 8.4013276, 47.4095893 ], + [ 8.4015117, 47.4096552 ], + [ 8.4017006, 47.4097144 ], + [ 8.4018938, 47.4097669 ], + [ 8.4020908, 47.4098124 ], + [ 8.4022911, 47.4098509 ], + [ 8.402494, 47.4098821 ], + [ 8.4026991, 47.4099062 ], + [ 8.4029057, 47.4099229 ], + [ 8.4031133, 47.4099322 ], + [ 8.4033214, 47.4099342 ], + [ 8.4035294, 47.4099288 ], + [ 8.4037366, 47.4099159 ], + [ 8.4039426, 47.4098958 ], + [ 8.4041467, 47.4098683 ], + [ 8.4043484, 47.4098337 ], + [ 8.4045472, 47.4097919 ], + [ 8.4047425, 47.4097431 ], + [ 8.4049338, 47.4096874 ], + [ 8.4051205, 47.4096251 ], + [ 8.4053021, 47.4095561 ], + [ 8.4054782, 47.4094808 ], + [ 8.4056482, 47.4093994 ], + [ 8.4058117, 47.409312 ], + [ 8.4059683, 47.409219 ], + [ 8.4061175, 47.4091205 ], + [ 8.4062588, 47.4090168 ], + [ 8.406392, 47.4089083 ], + [ 8.4065167, 47.4087952 ], + [ 8.4066324, 47.4086778 ], + [ 8.4067389, 47.4085564 ], + [ 8.406836, 47.4084314 ], + [ 8.4069232, 47.4083032 ], + [ 8.4070005, 47.408172 ], + [ 8.4070675, 47.4080383 ], + [ 8.4071241, 47.4079024 ], + [ 8.4071702, 47.4077646 ], + [ 8.4072056, 47.4076254 ], + [ 8.4072302, 47.4074851 ], + [ 8.407244, 47.4073442 ], + [ 8.4072469, 47.4072029 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LIM0001", + "country" : "CHE", + "name" : [ + { + "text" : "Gefängnis Limmattal", + "lang" : "de-CH" + }, + { + "text" : "Gefängnis Limmattal", + "lang" : "fr-CH" + }, + { + "text" : "Gefängnis Limmattal", + "lang" : "it-CH" + }, + { + "text" : "Gefängnis Limmattal", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "de-CH" + }, + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "fr-CH" + }, + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "it-CH" + }, + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "de-CH" + }, + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "fr-CH" + }, + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "it-CH" + }, + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Reno Berner", + "lang" : "de-CH" + }, + { + "text" : "Reno Berner", + "lang" : "fr-CH" + }, + { + "text" : "Reno Berner", + "lang" : "it-CH" + }, + { + "text" : "Reno Berner", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.zh.ch/de/direktion-der-justiz-und-des-innern/justizvollzug-wiedereingliederung.html", + "email" : "sicherheit-juwe@ji.zh.ch", + "phone" : "0041432583400", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT12H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.9854217, 46.3246622 ], + [ 6.9859864, 46.3245224 ], + [ 6.9862977, 46.3240981 ], + [ 6.9863219, 46.323222 ], + [ 6.9861929, 46.3223453 ], + [ 6.9859407000000004, 46.3219188 ], + [ 6.9854793, 46.3218099 ], + [ 6.9850001, 46.3219735 ], + [ 6.9847903, 46.3225295 ], + [ 6.9847134, 46.3236537 ], + [ 6.984911, 46.3244002 ], + [ 6.9854217, 46.3246622 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00002", + "country" : "CHE", + "name" : [ + { + "text" : "Tassonnaire", + "lang" : "de-CH" + }, + { + "text" : "Tassonnaire", + "lang" : "fr-CH" + }, + { + "text" : "Tassonnaire", + "lang" : "it-CH" + }, + { + "text" : "Tassonnaire", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "startDateTime" : "2025-01-01T00:00:00+01:00", + "endDateTime" : "2025-06-01T00:00:00+02:00" + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Generaldirektion für Umwelt", + "lang" : "de-CH" + }, + { + "text" : "Direction générale de l'environnement", + "lang" : "fr-CH" + }, + { + "text" : "Direzione generale dell'Ambiente", + "lang" : "it-CH" + }, + { + "text" : "Environment Department", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.dge@vd.ch", + "phone" : "0041213164422", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.1377903, 46.1550929 ], + [ 6.1366396, 46.1555065 ], + [ 6.1365575, 46.1555304 ], + [ 6.1365066, 46.1555543 ], + [ 6.1364445, 46.1555766 ], + [ 6.1364242, 46.1555878 ], + [ 6.1362597, 46.155713 ], + [ 6.1356106, 46.1561338 ], + [ 6.1350215, 46.156873 ], + [ 6.1347902, 46.1577025 ], + [ 6.1349393, 46.158541 ], + [ 6.1354543, 46.1593064 ], + [ 6.1355584, 46.1594134 ], + [ 6.1366318, 46.160152 ], + [ 6.1380295, 46.1605502 ], + [ 6.1395401, 46.1605476 ], + [ 6.140935, 46.1601447 ], + [ 6.1409733, 46.1601269 ], + [ 6.14102, 46.1601052 ], + [ 6.141914, 46.1595296 ], + [ 6.1425073, 46.1587899 ], + [ 6.142674, 46.1581983 ], + [ 6.1427584, 46.1580138 ], + [ 6.14263, 46.1569648 ], + [ 6.1419338, 46.1560297 ], + [ 6.1419019, 46.1560019 ], + [ 6.1407438, 46.1553231 ], + [ 6.1393, 46.1550039 ], + [ 6.1377903, 46.1550929 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-45", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.6164922, 46.549525 ], + [ 6.6179756, 46.54947 ], + [ 6.6183529, 46.5482358 ], + [ 6.618464, 46.5480459 ], + [ 6.6183496, 46.5469088 ], + [ 6.6187436, 46.5468937 ], + [ 6.6184775, 46.5438141 ], + [ 6.6187317, 46.5438133 ], + [ 6.6186136, 46.5424045 ], + [ 6.6191537, 46.5419532 ], + [ 6.6193297, 46.5416117 ], + [ 6.6187258, 46.5414544 ], + [ 6.6184337, 46.5413713 ], + [ 6.6178551, 46.5411827 ], + [ 6.6174507, 46.5408586 ], + [ 6.6171796, 46.5405049 ], + [ 6.6171108, 46.5400573 ], + [ 6.6171649, 46.5395062 ], + [ 6.6155266, 46.5395555 ], + [ 6.6161723, 46.5462112 ], + [ 6.6157807, 46.5465025 ], + [ 6.615779, 46.5465268 ], + [ 6.6156471, 46.5466239 ], + [ 6.6157888, 46.5467356 ], + [ 6.6162206, 46.5467243 ], + [ 6.6164922, 46.549525 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSGL002", + "country" : "CHE", + "name" : [ + { + "text" : "LSGL Lausanne-la Blécherette (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSGL Lausanne-la Blécherette (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSGL Lausanne-la Blécherette (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSGL Lausanne-la Blécherette (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Aéroport de Lausanne-La Blécherette", + "lang" : "de-CH" + }, + { + "text" : "Aéroport de Lausanne-La Blécherette", + "lang" : "fr-CH" + }, + { + "text" : "Aéroport de Lausanne-La Blécherette", + "lang" : "it-CH" + }, + { + "text" : "Aéroport de Lausanne-La Blécherette", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Chef d'aérodrome", + "lang" : "de-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "fr-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "it-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.lausanne-airport.ch/", + "email" : "drones@lausanne-airport.ch", + "phone" : "0041216461551", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.2603596, 47.0586087 ], + [ 8.260352, 47.0584675 ], + [ 8.2603336, 47.0583268 ], + [ 8.2603045, 47.058187 ], + [ 8.2602647, 47.0580483 ], + [ 8.2602144, 47.0579113 ], + [ 8.2601536, 47.0577763 ], + [ 8.2600825, 47.0576436 ], + [ 8.2600014, 47.0575136 ], + [ 8.2599105, 47.0573868 ], + [ 8.2598099, 47.0572633 ], + [ 8.2597001, 47.0571437 ], + [ 8.2595812, 47.0570281 ], + [ 8.2594537, 47.0569169 ], + [ 8.2593178, 47.0568104 ], + [ 8.2591739, 47.056709 ], + [ 8.2590225, 47.0566128 ], + [ 8.2588639, 47.0565222 ], + [ 8.2586986, 47.0564373 ], + [ 8.258527, 47.0563585 ], + [ 8.2583496, 47.056286 ], + [ 8.258166899999999, 47.0562199 ], + [ 8.2579794, 47.0561604 ], + [ 8.2577876, 47.0561077 ], + [ 8.257592, 47.0560619 ], + [ 8.2573932, 47.0560232 ], + [ 8.2571917, 47.0559917 ], + [ 8.2569881, 47.0559674 ], + [ 8.2567829, 47.0559504 ], + [ 8.2565766, 47.0559408 ], + [ 8.2563699, 47.0559386 ], + [ 8.2561633, 47.0559437 ], + [ 8.2559574, 47.0559563 ], + [ 8.2557528, 47.0559762 ], + [ 8.2555499, 47.0560034 ], + [ 8.2553494, 47.0560378 ], + [ 8.2551518, 47.0560793 ], + [ 8.2549577, 47.0561278 ], + [ 8.2547675, 47.0561833 ], + [ 8.2545819, 47.0562454 ], + [ 8.2544013, 47.0563141 ], + [ 8.2542261, 47.0563892 ], + [ 8.254057, 47.0564704 ], + [ 8.2538943, 47.0565576 ], + [ 8.2537385, 47.0566504 ], + [ 8.25359, 47.0567487 ], + [ 8.2534493, 47.0568522 ], + [ 8.2533167, 47.0569606 ], + [ 8.2531925, 47.0570736 ], + [ 8.2530772, 47.0571908 ], + [ 8.252971, 47.057312 ], + [ 8.2528743, 47.0574369 ], + [ 8.2527872, 47.057565 ], + [ 8.2527101, 47.0576961 ], + [ 8.2526431, 47.0578297 ], + [ 8.2525865, 47.0579656 ], + [ 8.2525403, 47.0581033 ], + [ 8.2525047, 47.0582425 ], + [ 8.2524799, 47.0583827 ], + [ 8.2524658, 47.0585237 ], + [ 8.2524625, 47.058665 ], + [ 8.2524701, 47.0588061 ], + [ 8.2524884, 47.0589469 ], + [ 8.2525175, 47.0590867 ], + [ 8.2525573, 47.0592254 ], + [ 8.2526077, 47.0593624 ], + [ 8.2526684, 47.0594974 ], + [ 8.2527395, 47.0596301 ], + [ 8.2528205, 47.05976 ], + [ 8.2529115, 47.0598869 ], + [ 8.253012, 47.0600104 ], + [ 8.2531219, 47.0601301 ], + [ 8.2532407, 47.0602457 ], + [ 8.2533683, 47.0603568 ], + [ 8.2535042, 47.0604633 ], + [ 8.253648, 47.0605648 ], + [ 8.2537995, 47.0606609 ], + [ 8.253958, 47.0607516 ], + [ 8.2541234, 47.0608364 ], + [ 8.2542949, 47.0609152 ], + [ 8.2544723, 47.0609878 ], + [ 8.254655, 47.0610539 ], + [ 8.2548426, 47.0611134 ], + [ 8.2550344, 47.0611661 ], + [ 8.25523, 47.0612119 ], + [ 8.2554288, 47.0612506 ], + [ 8.2556303, 47.0612821 ], + [ 8.255834, 47.0613064 ], + [ 8.2560392, 47.0613234 ], + [ 8.2562455, 47.061333 ], + [ 8.2564522, 47.0613353 ], + [ 8.2566588, 47.0613301 ], + [ 8.2568647, 47.0613175 ], + [ 8.2570694, 47.0612976 ], + [ 8.2572723, 47.0612704 ], + [ 8.2574728, 47.061236 ], + [ 8.2576704, 47.0611945 ], + [ 8.2578646, 47.0611459 ], + [ 8.2580547, 47.0610905 ], + [ 8.2582404, 47.0610284 ], + [ 8.258421, 47.0609597 ], + [ 8.2585962, 47.0608846 ], + [ 8.2587653, 47.0608034 ], + [ 8.258928, 47.0607162 ], + [ 8.259083799999999, 47.0606233 ], + [ 8.2592323, 47.060525 ], + [ 8.259373, 47.0604215 ], + [ 8.2595056, 47.0603131 ], + [ 8.2596298, 47.0602002 ], + [ 8.2597451, 47.0600829 ], + [ 8.2598512, 47.0599617 ], + [ 8.259948, 47.0598368 ], + [ 8.260035, 47.0597087 ], + [ 8.2601121, 47.0595776 ], + [ 8.2601791, 47.0594439 ], + [ 8.2602357, 47.0593081 ], + [ 8.2602819, 47.0591704 ], + [ 8.2603175, 47.0590312 ], + [ 8.2603423, 47.0588909 ], + [ 8.2603563, 47.05875 ], + [ 8.2603596, 47.0586087 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0065", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Littau", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Littau", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Littau", + "lang" : "it-CH" + }, + { + "text" : "Substation Littau", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7039422, 47.400365 ], + [ 7.703999, 47.4004221 ], + [ 7.7040082, 47.4005189 ], + [ 7.7038502, 47.4007869 ], + [ 7.7038379, 47.4008058 ], + [ 7.7038798, 47.4008925 ], + [ 7.703879, 47.4010309 ], + [ 7.7038893, 47.4010504 ], + [ 7.7039405, 47.4010706 ], + [ 7.7039634, 47.4010497 ], + [ 7.7041395, 47.4008894 ], + [ 7.7045645, 47.4009815 ], + [ 7.7051155, 47.4011682 ], + [ 7.7054854, 47.4013083 ], + [ 7.705842, 47.401174 ], + [ 7.7061397, 47.4011464 ], + [ 7.7064422, 47.4011963 ], + [ 7.7065528, 47.4011371 ], + [ 7.7068465, 47.4012243 ], + [ 7.7071404, 47.4012661 ], + [ 7.7074498, 47.4012879 ], + [ 7.707784, 47.4013744 ], + [ 7.7082334, 47.4014655 ], + [ 7.708454, 47.4014717 ], + [ 7.708945, 47.4015752 ], + [ 7.7092666, 47.4014731 ], + [ 7.7096022, 47.4013677 ], + [ 7.7098296, 47.4010061 ], + [ 7.7100521, 47.4007032 ], + [ 7.7100603, 47.4006923 ], + [ 7.7102939, 47.4003798 ], + [ 7.7100773, 47.4002197 ], + [ 7.7100082, 47.4001721 ], + [ 7.7097143, 47.4002358 ], + [ 7.7095047, 47.4004112 ], + [ 7.7092975, 47.4002785 ], + [ 7.7090709, 47.4001428 ], + [ 7.7086849, 47.4001011 ], + [ 7.7084158, 47.400082 ], + [ 7.7082512, 47.3998937 ], + [ 7.7081598, 47.3997455 ], + [ 7.7080307999999995, 47.399649 ], + [ 7.7077192, 47.3995796 ], + [ 7.7074605, 47.3996189 ], + [ 7.7072182, 47.3998229 ], + [ 7.7070766, 47.3999347 ], + [ 7.7069442, 47.3999417 ], + [ 7.7065917, 47.3999596 ], + [ 7.7059678, 47.3999667 ], + [ 7.70614, 47.400163 ], + [ 7.7061984, 47.4003401 ], + [ 7.7062478, 47.4005072 ], + [ 7.7062856, 47.4006546 ], + [ 7.7062363, 47.4006516 ], + [ 7.7056783, 47.4006168 ], + [ 7.7052589000000005, 47.400538 ], + [ 7.7046209999999995, 47.4004379 ], + [ 7.7044563, 47.4004201 ], + [ 7.7040071, 47.400372 ], + [ 7.7039422, 47.400365 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns259", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Rifenstein - Horniflue", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Rifenstein - Horniflue", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Rifenstein - Horniflue", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Rifenstein - Horniflue", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.3643393, 46.9193398 ], + [ 9.3642873, 46.9192163 ], + [ 9.3642289, 46.9191661 ], + [ 9.364122, 46.9191615 ], + [ 9.3640237, 46.9191906 ], + [ 9.3638851, 46.9192146 ], + [ 9.3637204, 46.9191992 ], + [ 9.3635881, 46.9191723 ], + [ 9.3634642, 46.9191511 ], + [ 9.3633738, 46.9191238 ], + [ 9.3632097, 46.9191479 ], + [ 9.3631282, 46.9191656 ], + [ 9.3630137, 46.919200599999996 ], + [ 9.3629233, 46.9191959 ], + [ 9.362677099999999, 46.9192433 ], + [ 9.362449, 46.9193133 ], + [ 9.3622374, 46.9194111 ], + [ 9.3620917, 46.919514 ], + [ 9.3619448, 46.9195831 ], + [ 9.3617163, 46.9196418 ], + [ 9.3615027, 46.9196607 ], + [ 9.3612148, 46.919641 ], + [ 9.3609924, 46.9196206 ], + [ 9.3607789, 46.9196396 ], + [ 9.3606076, 46.9196695 ], + [ 9.3604523, 46.9197105 ], + [ 9.3602712, 46.9197179 ], + [ 9.3599908, 46.9196586 ], + [ 9.3598843, 46.9196878 ], + [ 9.3597953, 46.9197451 ], + [ 9.359706, 46.9197967 ], + [ 9.359608099999999, 46.9198145 ], + [ 9.3594856, 46.9198552 ], + [ 9.3593711, 46.9199127 ], + [ 9.3592579, 46.9199815 ], + [ 9.3591112, 46.9200336 ], + [ 9.3589881, 46.9200574 ], + [ 9.3588658, 46.9200811 ], + [ 9.3587025, 46.9201278 ], + [ 9.3585564, 46.9202195 ], + [ 9.3584589, 46.9202937 ], + [ 9.358336, 46.920323 ], + [ 9.3582219, 46.9203467 ], + [ 9.3580661, 46.9203482 ], + [ 9.3579342, 46.9203327 ], + [ 9.3578181, 46.9202999 ], + [ 9.357695, 46.9203011 ], + [ 9.3575966, 46.9203021 ], + [ 9.3575141, 46.9203141 ], + [ 9.3573992, 46.9203154 ], + [ 9.3573086, 46.9203049 ], + [ 9.3571849, 46.9202892 ], + [ 9.357044, 46.9202285 ], + [ 9.3568863, 46.9201568 ], + [ 9.3567955, 46.9201182 ], + [ 9.35668, 46.9201025 ], + [ 9.3565571, 46.9201093 ], + [ 9.3564177, 46.9201333 ], + [ 9.3562385, 46.920197 ], + [ 9.3560102, 46.9202838 ], + [ 9.3558138, 46.9203477 ], + [ 9.3555276, 46.9204237 ], + [ 9.3552991, 46.9204824 ], + [ 9.3551273, 46.9205235 ], + [ 9.3548898, 46.9205596 ], + [ 9.3546856, 46.9206123 ], + [ 9.3544717, 46.9206201 ], + [ 9.3542744, 46.9205881 ], + [ 9.3541917, 46.9205946 ], + [ 9.3540697, 46.920624 ], + [ 9.3539472, 46.9206646 ], + [ 9.3537672, 46.9207058 ], + [ 9.3536281, 46.9207409 ], + [ 9.3533978, 46.9207264 ], + [ 9.3532743, 46.9207162 ], + [ 9.3531018, 46.9207123 ], + [ 9.3529785, 46.9207078 ], + [ 9.3528302, 46.9207149 ], + [ 9.3525851, 46.9207681 ], + [ 9.3523975, 46.9208488 ], + [ 9.352235, 46.920918 ], + [ 9.3520392, 46.9210214 ], + [ 9.3518847, 46.9210849 ], + [ 9.351696, 46.9210867 ], + [ 9.3514578, 46.9211059 ], + [ 9.3512201, 46.9211138 ], + [ 9.3510237, 46.9211552 ], + [ 9.3506082, 46.9213341 ], + [ 9.3500546, 46.9215986 ], + [ 9.349858, 46.9216344 ], + [ 9.3497179, 46.9215964 ], + [ 9.3496181, 46.9215578 ], + [ 9.349535, 46.9215079 ], + [ 9.3493862, 46.921453 ], + [ 9.3491957, 46.9213815 ], + [ 9.3488643, 46.9212721 ], + [ 9.3485597, 46.9212243 ], + [ 9.3474422, 46.921235 ], + [ 9.3471876, 46.9212318 ], + [ 9.3470636, 46.9212049 ], + [ 9.3469071, 46.9211895 ], + [ 9.346742, 46.9211629 ], + [ 9.3466599, 46.9211637 ], + [ 9.3463405, 46.9212063 ], + [ 9.3460785, 46.9212482 ], + [ 9.3457833, 46.9213018 ], + [ 9.3454805, 46.9213723 ], + [ 9.345161300000001, 46.921420499999996 ], + [ 9.344786, 46.9215312 ], + [ 9.3444585, 46.9216247 ], + [ 9.3440992, 46.9217239 ], + [ 9.3435186, 46.9218761 ], + [ 9.3430856, 46.9220042 ], + [ 9.3429059, 46.922051 ], + [ 9.3428256, 46.9221251 ], + [ 9.3427869, 46.9222382 ], + [ 9.3427717, 46.9223173 ], + [ 9.3427578, 46.9224358 ], + [ 9.3427779, 46.9226103 ], + [ 9.3427744, 46.9228584 ], + [ 9.3427203, 46.9230224 ], + [ 9.342649, 46.9231415 ], + [ 9.3425036, 46.9232782 ], + [ 9.3424077, 46.923375 ], + [ 9.3421717, 46.9235012 ], + [ 9.3419999, 46.9235648 ], + [ 9.3416322, 46.923636 ], + [ 9.3412954, 46.9236506 ], + [ 9.3409085, 46.923643 ], + [ 9.3406127, 46.9236345 ], + [ 9.3404316, 46.9235969 ], + [ 9.3402071, 46.923492 ], + [ 9.3399998, 46.9234094 ], + [ 9.3397669, 46.9232763 ], + [ 9.3395677, 46.9231654 ], + [ 9.3392858, 46.9230385 ], + [ 9.339103099999999, 46.9229331 ], + [ 9.3387078, 46.9228975 ], + [ 9.3384353, 46.9228495 ], + [ 9.3380729, 46.9227908 ], + [ 9.337752, 46.9227939 ], + [ 9.3375207, 46.9227285 ], + [ 9.3370594, 46.9226822 ], + [ 9.336641, 46.9227088 ], + [ 9.3360269, 46.9228218 ], + [ 9.3356658, 46.9228477 ], + [ 9.3354699, 46.9229003 ], + [ 9.3352069, 46.9228916 ], + [ 9.3350095, 46.9229047 ], + [ 9.3349032, 46.9229396 ], + [ 9.3348128, 46.9229348 ], + [ 9.3345326, 46.9229037 ], + [ 9.3343759, 46.9228601 ], + [ 9.3342036, 46.9228618 ], + [ 9.3338427, 46.9229158 ], + [ 9.3335229, 46.9229472 ], + [ 9.3333041, 46.9230732 ], + [ 9.3330923, 46.9231881 ], + [ 9.3330028, 46.923234 ], + [ 9.3329205, 46.9232292 ], + [ 9.3327562, 46.923225 ], + [ 9.3325909, 46.9231928 ], + [ 9.3324098, 46.9231551 ], + [ 9.3322941, 46.9231336 ], + [ 9.3321629, 46.9231348 ], + [ 9.3320153, 46.9231644 ], + [ 9.3318782, 46.9232784 ], + [ 9.3317713, 46.9232964 ], + [ 9.3315912, 46.9233095 ], + [ 9.3313114, 46.9233121 ], + [ 9.3310902, 46.923348 ], + [ 9.3309352, 46.9234002 ], + [ 9.3307729, 46.9234751 ], + [ 9.3306845, 46.9235774 ], + [ 9.3306042, 46.9236965 ], + [ 9.3304563, 46.9236922 ], + [ 9.330309, 46.9237049 ], + [ 9.33007, 46.9237015 ], + [ 9.3298571, 46.9237149 ], + [ 9.3296609, 46.9237619 ], + [ 9.3294245, 46.9238543 ], + [ 9.3292298, 46.9239914 ], + [ 9.3290925, 46.9240998 ], + [ 9.3289069, 46.9242595 ], + [ 9.3287206, 46.9244022 ], + [ 9.3285013, 46.924562 ], + [ 9.3281924, 46.9246946 ], + [ 9.3278329, 46.9248334 ], + [ 9.3276463, 46.9249197 ], + [ 9.3275323, 46.924994 ], + [ 9.3274286, 46.9251246 ], + [ 9.3273234, 46.9252384 ], + [ 9.3272112, 46.9253634 ], + [ 9.3270723, 46.9254042 ], + [ 9.326926, 46.9254677 ], + [ 9.3266649, 46.9255829 ], + [ 9.3264705, 46.9257031 ], + [ 9.3262672, 46.925829 ], + [ 9.3258833, 46.9259285 ], + [ 9.32581, 46.9259687 ], + [ 9.3257056, 46.9260823 ], + [ 9.325584, 46.9261962 ], + [ 9.3254447, 46.9262032 ], + [ 9.3252548, 46.9261711 ], + [ 9.3251638, 46.926127 ], + [ 9.3250718, 46.9260545 ], + [ 9.3249565, 46.9260218 ], + [ 9.3248086, 46.9260177 ], + [ 9.3246203, 46.9260532 ], + [ 9.3244733, 46.9260997 ], + [ 9.3243006, 46.9261126 ], + [ 9.3241599, 46.9260801 ], + [ 9.3239794, 46.9260593 ], + [ 9.3238559, 46.9260717 ], + [ 9.3237002, 46.9260788 ], + [ 9.3236001, 46.9260347 ], + [ 9.3235263, 46.9260128 ], + [ 9.3234016, 46.925969 ], + [ 9.3232037, 46.9259201 ], + [ 9.3230066, 46.9259163 ], + [ 9.3228424, 46.9259404 ], + [ 9.3225892, 46.9260217 ], + [ 9.3224428, 46.9260851 ], + [ 9.3223273, 46.9260918 ], + [ 9.3221378, 46.9260485 ], + [ 9.3219892, 46.9259992 ], + [ 9.3218239, 46.9259669 ], + [ 9.3216678, 46.9259628 ], + [ 9.3215191, 46.925936 ], + [ 9.3214034, 46.925892 ], + [ 9.321295, 46.9258422 ], + [ 9.3212212, 46.9258204 ], + [ 9.3209982, 46.925783 ], + [ 9.3208169, 46.9257397 ], + [ 9.3205936, 46.9256684 ], + [ 9.3202699, 46.9255419 ], + [ 9.31998, 46.9254207 ], + [ 9.3197886, 46.9252984 ], + [ 9.3197128, 46.9252202 ], + [ 9.3196202, 46.9251083 ], + [ 9.3195452, 46.9250301 ], + [ 9.3194776, 46.924951899999996 ], + [ 9.3193851, 46.9248626 ], + [ 9.3191692, 46.9247462 ], + [ 9.3190036, 46.9246576 ], + [ 9.3188371, 46.9245689 ], + [ 9.3185346, 46.9242505 ], + [ 9.3182957, 46.924202 ], + [ 9.3180978, 46.9241757 ], + [ 9.3179188, 46.924245 ], + [ 9.317829, 46.9243079 ], + [ 9.3177068, 46.9243316 ], + [ 9.3175987, 46.9242931 ], + [ 9.3174258, 46.9242553 ], + [ 9.3172859, 46.9242453 ], + [ 9.3171048, 46.9242527 ], + [ 9.3169831, 46.9243159 ], + [ 9.3168941, 46.9243787 ], + [ 9.3167563, 46.9244983 ], + [ 9.3166935, 46.9246512 ], + [ 9.3166724, 46.9247979 ], + [ 9.3166087, 46.9249 ], + [ 9.3163952, 46.9249471 ], + [ 9.3162659, 46.9250272 ], + [ 9.3162193, 46.9251516 ], + [ 9.3160962, 46.9251979 ], + [ 9.3158922, 46.9252562 ], + [ 9.3156975, 46.9253932 ], + [ 9.3155941, 46.9255352 ], + [ 9.3149321, 46.9257331 ], + [ 9.3146622, 46.9258089 ], + [ 9.3145987, 46.925894 ], + [ 9.3145748, 46.9259619 ], + [ 9.3145195, 46.926047 ], + [ 9.3144874, 46.9260924 ], + [ 9.3144067, 46.9261551 ], + [ 9.3143742, 46.9261893 ], + [ 9.3143187, 46.9262913 ], + [ 9.3142467, 46.9263934 ], + [ 9.3141494, 46.9264732 ], + [ 9.3139475, 46.9266386 ], + [ 9.3136812, 46.9268666 ], + [ 9.3134402, 46.9271562 ], + [ 9.3132312, 46.9273781 ], + [ 9.3130378, 46.9275998 ], + [ 9.3129186, 46.9277813 ], + [ 9.312847, 46.9279172 ], + [ 9.3126278, 46.9280602 ], + [ 9.312482, 46.9281629 ], + [ 9.3123526, 46.9282657 ], + [ 9.3121501, 46.9284141 ], + [ 9.3119641, 46.9285399 ], + [ 9.3117856, 46.9286712 ], + [ 9.3116325, 46.9288248 ], + [ 9.3115361, 46.9289554 ], + [ 9.3114657, 46.9291252 ], + [ 9.3114433, 46.9292381 ], + [ 9.3114632, 46.9294069 ], + [ 9.3114905, 46.9295308 ], + [ 9.3114697, 46.9297114 ], + [ 9.3114398, 46.9298919 ], + [ 9.3114441, 46.9300836 ], + [ 9.3114792, 46.9301961 ], + [ 9.3113601, 46.9304057 ], + [ 9.3114931, 46.9305003 ], + [ 9.3112927, 46.9307333 ], + [ 9.3113362, 46.9308512 ], + [ 9.311347, 46.9309977 ], + [ 9.3113079, 46.9310995 ], + [ 9.3112367, 46.9312243 ], + [ 9.3111741, 46.9313826 ], + [ 9.3111277, 46.9315352 ], + [ 9.3110892, 46.9316539 ], + [ 9.3110164, 46.9317336 ], + [ 9.3109364, 46.9318414 ], + [ 9.3109633, 46.9319539 ], + [ 9.3109822, 46.9320721 ], + [ 9.3110263, 46.9322296 ], + [ 9.311079, 46.9323756 ], + [ 9.3111395, 46.9325329 ], + [ 9.3111492, 46.932623 ], + [ 9.3111591, 46.9326961 ], + [ 9.3111771, 46.9327636 ], + [ 9.3112196, 46.9328534 ], + [ 9.3112548, 46.9329432 ], + [ 9.3112721, 46.9330164 ], + [ 9.3112414, 46.9331238 ], + [ 9.311203, 46.9332482 ], + [ 9.3111635, 46.9333387 ], + [ 9.3111337, 46.9334969 ], + [ 9.3111364, 46.9336209 ], + [ 9.3111475, 46.9337504 ], + [ 9.3111251, 46.9338859 ], + [ 9.3110693, 46.9339823 ], + [ 9.3110064, 46.9341069 ], + [ 9.3109439, 46.9342709 ], + [ 9.3109, 46.9345418 ], + [ 9.3108649, 46.9348297 ], + [ 9.3108345, 46.9349708 ], + [ 9.310804, 46.9350839 ], + [ 9.3106992, 46.9351863 ], + [ 9.3105936, 46.9352662 ], + [ 9.3105216, 46.9353458 ], + [ 9.310467, 46.9354986 ], + [ 9.310438, 46.9356793 ], + [ 9.3104485, 46.9357919 ], + [ 9.3104743, 46.9358706 ], + [ 9.3104615, 46.9360228 ], + [ 9.3103977, 46.9361474 ], + [ 9.3103677, 46.9362774 ], + [ 9.3102227, 46.9364252 ], + [ 9.310101, 46.9365166 ], + [ 9.3099657, 46.9367321 ], + [ 9.3097809, 46.9369424 ], + [ 9.3097091, 46.9370501 ], + [ 9.3096709, 46.9372027 ], + [ 9.3096327, 46.9373552 ], + [ 9.3095214, 46.9375311 ], + [ 9.3094493, 46.9376276 ], + [ 9.3092876, 46.9377699 ], + [ 9.3091253, 46.937873 ], + [ 9.30893, 46.9379706 ], + [ 9.3087589, 46.9380568 ], + [ 9.3085724, 46.9381712 ], + [ 9.3084594, 46.9382737 ], + [ 9.3083706, 46.9383647 ], + [ 9.3082412, 46.93849 ], + [ 9.3081026, 46.938542 ], + [ 9.3079795, 46.9385432 ], + [ 9.3077567, 46.9385114 ], + [ 9.3076164, 46.9384902 ], + [ 9.3073869, 46.9385036 ], + [ 9.3072728, 46.9385498 ], + [ 9.3071424, 46.9386017 ], + [ 9.3070202, 46.9386761 ], + [ 9.3068978, 46.9387223 ], + [ 9.3067262, 46.938769 ], + [ 9.3064967, 46.9388049 ], + [ 9.3063009, 46.9388857 ], + [ 9.3061961, 46.9389656 ], + [ 9.3061153, 46.9390509 ], + [ 9.305977500000001, 46.9391255 ], + [ 9.3058144, 46.9392059 ], + [ 9.3055601, 46.9392365 ], + [ 9.3052388, 46.9392056 ], + [ 9.3050336, 46.93923 ], + [ 9.3047965, 46.9392831 ], + [ 9.3046161, 46.9393129 ], + [ 9.3044527, 46.9393596 ], + [ 9.3042803, 46.9393611 ], + [ 9.3041003, 46.9394023 ], + [ 9.3038531, 46.9393989 ], + [ 9.3037136, 46.9393777 ], + [ 9.3035169, 46.9394133 ], + [ 9.3033521, 46.9394205 ], + [ 9.3031546, 46.9394055 ], + [ 9.3029003, 46.939436 ], + [ 9.3025717, 46.9394559 ], + [ 9.3022674, 46.9394418 ], + [ 9.3020772, 46.9393534 ], + [ 9.2986101, 46.941567 ], + [ 9.2977595, 46.941355 ], + [ 9.2974119, 46.9412286 ], + [ 9.2970152, 46.9411308 ], + [ 9.2963404, 46.9410863 ], + [ 9.2959779, 46.9410502 ], + [ 9.2956237, 46.9410423 ], + [ 9.2952467, 46.9410851 ], + [ 9.2949593, 46.9411102 ], + [ 9.2947295, 46.9411349 ], + [ 9.2945012, 46.9412047 ], + [ 9.2943377, 46.9412738 ], + [ 9.2942894, 46.9413251 ], + [ 9.2942019, 46.9414554 ], + [ 9.2941453, 46.9415293 ], + [ 9.2940722, 46.9415751 ], + [ 9.2939759, 46.9416887 ], + [ 9.2938549, 46.9417969 ], + [ 9.2937897, 46.9418369 ], + [ 9.2936677, 46.9418944 ], + [ 9.2935375, 46.9419521 ], + [ 9.2934153, 46.9420265 ], + [ 9.2932931, 46.9420784 ], + [ 9.2932205, 46.9421635 ], + [ 9.2931984, 46.9422596 ], + [ 9.2931925, 46.9423044 ], + [ 9.2932491, 46.9424439 ], + [ 9.2932885, 46.9426592 ], + [ 9.2933252, 46.9428179 ], + [ 9.2933683, 46.9429494 ], + [ 9.2934218, 46.943165 ], + [ 9.2934235, 46.9431689 ], + [ 9.2934253, 46.9431735 ], + [ 9.2934548, 46.943361 ], + [ 9.2935117, 46.9436057 ], + [ 9.2935794, 46.9437117 ], + [ 9.2936474, 46.943803 ], + [ 9.2936888, 46.9438584 ], + [ 9.2937673, 46.9439705 ], + [ 9.293806, 46.9441858 ], + [ 9.2938178, 46.9443629 ], + [ 9.2938065, 46.9445332 ], + [ 9.2937554, 46.9447436 ], + [ 9.2936637, 46.9450124 ], + [ 9.2936177, 46.9451543 ], + [ 9.2935784, 46.9452755 ], + [ 9.2934764, 46.945413 ], + [ 9.2934049, 46.9455321 ], + [ 9.2933186, 46.9456243 ], + [ 9.293175, 46.9458418 ], + [ 9.2930643, 46.946037 ], + [ 9.2929474, 46.9462882 ], + [ 9.292748, 46.9464849 ], + [ 9.2926105, 46.9466634 ], + [ 9.2923635, 46.9468833 ], + [ 9.2921258, 46.9470383 ], + [ 9.2919654, 46.9471957 ], + [ 9.2917478, 46.9473162 ], + [ 9.2915866, 46.9474051 ], + [ 9.291315, 46.947505 ], + [ 9.2911351, 46.9475754 ], + [ 9.2908516, 46.9476888 ], + [ 9.2906565, 46.9477477 ], + [ 9.2905165, 46.9478067 ], + [ 9.290303, 46.9478776 ], + [ 9.2901988, 46.9479298 ], + [ 9.2900705, 46.9480182 ], + [ 9.2899735, 46.9481097 ], + [ 9.2898663, 46.9481681 ], + [ 9.2897301, 46.9482433 ], + [ 9.289533, 46.9482914 ], + [ 9.2893596, 46.9483347 ], + [ 9.2890917, 46.9484002 ], + [ 9.2887542, 46.9484956 ], + [ 9.288412, 46.9485758 ], + [ 9.2881148, 46.9486248 ], + [ 9.2877506, 46.9487556 ], + [ 9.2874717, 46.9488384 ], + [ 9.2871947, 46.9489491 ], + [ 9.2869527, 46.9491231 ], + [ 9.2867972, 46.9492344 ], + [ 9.2866291, 46.9493622 ], + [ 9.2865067, 46.949455 ], + [ 9.2863544, 46.9495411 ], + [ 9.2862605, 46.9494852 ], + [ 9.2861198, 46.9493578 ], + [ 9.2858575, 46.9491794 ], + [ 9.2857068, 46.9490955 ], + [ 9.2854829, 46.9489857 ], + [ 9.2851575, 46.9488829 ], + [ 9.2850421, 46.9488956 ], + [ 9.2848364, 46.9488351 ], + [ 9.2844806, 46.9488066 ], + [ 9.2843317, 46.9487973 ], + [ 9.2840344, 46.9487967 ], + [ 9.2837709, 46.948801 ], + [ 9.2834532, 46.9488501 ], + [ 9.2832136, 46.9489034 ], + [ 9.2829691, 46.9489822 ], + [ 9.2827827, 46.9490302 ], + [ 9.2825361, 46.9490728 ], + [ 9.2823633, 46.9491322 ], + [ 9.2821833, 46.9492251 ], + [ 9.2820146, 46.9492845 ], + [ 9.2818081, 46.9492986 ], + [ 9.2816376, 46.9493077 ], + [ 9.2813467, 46.9493007 ], + [ 9.2810915, 46.9492589 ], + [ 9.2808332, 46.9491992 ], + [ 9.2805506, 46.9491236 ], + [ 9.2804342, 46.9490571 ], + [ 9.2801993, 46.9489125 ], + [ 9.2800425, 46.9488195 ], + [ 9.2798745, 46.9487081 ], + [ 9.2797574, 46.9486235 ], + [ 9.2796306, 46.9485644 ], + [ 9.2793733, 46.9484129 ], + [ 9.2791952, 46.9482978 ], + [ 9.2790546, 46.94822 ], + [ 9.2788941, 46.9481362 ], + [ 9.2786438, 46.947999 ], + [ 9.2784846, 46.947881 ], + [ 9.2783178, 46.9477577 ], + [ 9.2781734, 46.9476422 ], + [ 9.2780482, 46.9475119 ], + [ 9.2778972, 46.9474189 ], + [ 9.2776851, 46.9472666 ], + [ 9.2775451, 46.9471852 ], + [ 9.2772934, 46.9470525 ], + [ 9.2770263, 46.9469245 ], + [ 9.2768008, 46.9468139 ], + [ 9.2764138, 46.946785 ], + [ 9.2763218, 46.946782 ], + [ 9.2761338, 46.9467617 ], + [ 9.2758603, 46.9467363 ], + [ 9.2755561, 46.946725 ], + [ 9.2752657, 46.9467333 ], + [ 9.2749969, 46.9467484 ], + [ 9.2747843, 46.9467743 ], + [ 9.2745265, 46.9467775 ], + [ 9.2742791, 46.9467698 ], + [ 9.2740408, 46.9467394 ], + [ 9.2738256, 46.9466924 ], + [ 9.2735185, 46.9466443 ], + [ 9.2731875, 46.9465695 ], + [ 9.2728986, 46.9465013 ], + [ 9.2726332, 46.9464254 ], + [ 9.272407, 46.9463417 ], + [ 9.2721007, 46.9462217 ], + [ 9.271875, 46.9461515 ], + [ 9.2715594, 46.9460702 ], + [ 9.2713377, 46.9460008 ], + [ 9.2710264, 46.9459023 ], + [ 9.2707616, 46.9458427 ], + [ 9.2704963, 46.9457668 ], + [ 9.2702741, 46.9456796 ], + [ 9.2699639, 46.9455657 ], + [ 9.2696326, 46.9454837 ], + [ 9.2693841, 46.9454194 ], + [ 9.2690473, 46.9453671 ], + [ 9.2688811, 46.9453078 ], + [ 9.2685494, 46.9452149 ], + [ 9.2682742, 46.9451617 ], + [ 9.2679776, 46.9451323 ], + [ 9.267805599999999, 46.9451459 ], + [ 9.2676486, 46.9451889 ], + [ 9.2673623, 46.9451979 ], + [ 9.2671147, 46.9451857 ], + [ 9.2667752, 46.9451263 ], + [ 9.2665098, 46.9450964 ], + [ 9.2661564, 46.9450624 ], + [ 9.2659812, 46.945031 ], + [ 9.2657778, 46.9450388 ], + [ 9.2655856, 46.9450365 ], + [ 9.2653547, 46.9450554 ], + [ 9.2651927, 46.9451219 ], + [ 9.2650741, 46.9452075 ], + [ 9.2650003, 46.9452833 ], + [ 9.264895899999999, 46.9453759 ], + [ 9.2647032, 46.9455535 ], + [ 9.2646238, 46.9456799 ], + [ 9.2645455, 46.9458169 ], + [ 9.2645046, 46.9459427 ], + [ 9.2644749, 46.946034 ], + [ 9.2644719, 46.9461655 ], + [ 9.264491, 46.9462677 ], + [ 9.2645335, 46.9464075 ], + [ 9.2645534, 46.9465096 ], + [ 9.2645782, 46.9465874 ], + [ 9.2646834, 46.9467575 ], + [ 9.2647438, 46.9469149 ], + [ 9.2648545, 46.947128 ], + [ 9.2648822, 46.9472913 ], + [ 9.2649182, 46.9474318 ], + [ 9.2649205, 46.9475728 ], + [ 9.2649233, 46.9477024 ], + [ 9.2649172, 46.9478377 ], + [ 9.2648703, 46.9479566 ], + [ 9.2648234, 46.9480255 ], + [ 9.2647741, 46.9480983 ], + [ 9.2647357, 46.9482227 ], + [ 9.264738, 46.9483636 ], + [ 9.2648168, 46.9486053 ], + [ 9.2648436, 46.9487177 ], + [ 9.2648874, 46.9488471 ], + [ 9.2649829, 46.9489971 ], + [ 9.2649976, 46.9490208 ], + [ 9.2650577, 46.9491442 ], + [ 9.2650518, 46.9492852 ], + [ 9.2650392, 46.9494222 ], + [ 9.2650387, 46.9494319 ], + [ 9.265072, 46.9494936 ], + [ 9.265098, 46.9495329 ], + [ 9.2652657, 46.9497061 ], + [ 9.2652844, 46.9497249 ], + [ 9.2653746, 46.9498178 ], + [ 9.265426, 46.9499301 ], + [ 9.2654941, 46.9500478 ], + [ 9.2655802, 46.9502613 ], + [ 9.2656592, 46.9505311 ], + [ 9.2656936, 46.9506741 ], + [ 9.2658024, 46.9511217 ], + [ 9.265838, 46.9512736 ], + [ 9.2658484, 46.9513637 ], + [ 9.2658092, 46.9514656 ], + [ 9.2657447, 46.9515507 ], + [ 9.2656721, 46.9516359 ], + [ 9.2656372, 46.9516975 ], + [ 9.265617, 46.9517321 ], + [ 9.265614, 46.9517406 ], + [ 9.2655922, 46.9517973 ], + [ 9.265577799999999, 46.951834 ], + [ 9.26553, 46.9519245 ], + [ 9.2655316, 46.9520204 ], + [ 9.2655588, 46.9521443 ], + [ 9.2655932, 46.9522397 ], + [ 9.265611700000001, 46.9523241 ], + [ 9.2655803, 46.9524145 ], + [ 9.2655824, 46.9524991 ], + [ 9.2655515, 46.952629 ], + [ 9.2655378, 46.9527813 ], + [ 9.2655001, 46.952928299999996 ], + [ 9.265477, 46.9530469 ], + [ 9.2654712, 46.9531427 ], + [ 9.2654825, 46.953306 ], + [ 9.2655014, 46.9534525 ], + [ 9.2655047, 46.9536216 ], + [ 9.2655076, 46.9537793 ], + [ 9.2654857, 46.9539317 ], + [ 9.2654399, 46.9541069 ], + [ 9.2653938, 46.9542708 ], + [ 9.2653965, 46.954423 ], + [ 9.265433, 46.9546031 ], + [ 9.265494499999999, 46.9548166 ], + [ 9.2655228, 46.9549968 ], + [ 9.2655414, 46.9550868 ], + [ 9.2655262, 46.9551715 ], + [ 9.2655445, 46.9552727 ], + [ 9.2655494, 46.9552958 ], + [ 9.2655629, 46.9553572 ], + [ 9.2655554, 46.9554009 ], + [ 9.2655477, 46.9554418 ], + [ 9.2655331, 46.9555434 ], + [ 9.2655269, 46.9556506 ], + [ 9.2655528, 46.9557123 ], + [ 9.2655603, 46.9557396 ], + [ 9.2655791, 46.955808 ], + [ 9.2655729, 46.9558925 ], + [ 9.2655675, 46.9559015 ], + [ 9.2655171, 46.9559889 ], + [ 9.2654623, 46.9561416 ], + [ 9.265464099999999, 46.9562431 ], + [ 9.2654827, 46.9563557 ], + [ 9.2655099, 46.9564794 ], + [ 9.2654791, 46.9565867 ], + [ 9.2654725, 46.9566601 ], + [ 9.2654753, 46.9567897 ], + [ 9.2655183, 46.956919 ], + [ 9.2655249, 46.9569448 ], + [ 9.2655625, 46.9570821 ], + [ 9.2656242, 46.9572788 ], + [ 9.2656926, 46.9574304 ], + [ 9.2657526, 46.9575538 ], + [ 9.2657488, 46.9577794 ], + [ 9.2657224, 46.957944 ], + [ 9.2657196, 46.9579599 ], + [ 9.2656824, 46.9581689 ], + [ 9.2656453, 46.958406 ], + [ 9.265594, 46.9587334 ], + [ 9.2655827, 46.9589815 ], + [ 9.2656427, 46.9591275 ], + [ 9.2656646, 46.9591446 ], + [ 9.2657845, 46.959239 ], + [ 9.2659561, 46.9595756 ], + [ 9.2658854, 46.9597679 ], + [ 9.2658132, 46.9598644 ], + [ 9.2657575, 46.9599439 ], + [ 9.2657109, 46.9599972 ], + [ 9.2656927, 46.9600177 ], + [ 9.2657125, 46.9601641 ], + [ 9.2656653, 46.9602998 ], + [ 9.2656029, 46.9604695 ], + [ 9.2655652, 46.9606389 ], + [ 9.2656248, 46.9607512 ], + [ 9.2657091, 46.9608856 ], + [ 9.2659091, 46.9610191 ], + [ 9.2660937, 46.9611809 ], + [ 9.2662498, 46.9612077 ], + [ 9.2664222, 46.9611554 ], + [ 9.2666926, 46.9611361 ], + [ 9.2668647, 46.9611007 ], + [ 9.2669985, 46.9612179 ], + [ 9.2671156, 46.9613296 ], + [ 9.2671589, 46.9614193 ], + [ 9.267235, 46.9615314 ], + [ 9.2672939, 46.961621 ], + [ 9.2674031, 46.9617159 ], + [ 9.2675126, 46.9618446 ], + [ 9.2675971, 46.9619622 ], + [ 9.2676324, 46.9620803 ], + [ 9.2676263, 46.9622156 ], + [ 9.2675801, 46.9623794 ], + [ 9.2675088, 46.9625042 ], + [ 9.2674699, 46.9626398 ], + [ 9.2675058, 46.962803 ], + [ 9.2675318, 46.9628647 ], + [ 9.2675827, 46.9629375 ], + [ 9.2676833, 46.9630211 ], + [ 9.2678159, 46.9631045 ], + [ 9.2680087, 46.9632663 ], + [ 9.2681001, 46.9633444 ], + [ 9.2682022, 46.9634956 ], + [ 9.2682552, 46.963703699999996 ], + [ 9.2682766, 46.9639459 ], + [ 9.2683301, 46.9641653 ], + [ 9.2685403, 46.9644284 ], + [ 9.2687504, 46.9646407 ], + [ 9.2690174, 46.9648581 ], + [ 9.2692261, 46.9650028 ], + [ 9.2694747, 46.965090599999996 ], + [ 9.2697392, 46.9651616 ], + [ 9.2699627, 46.9652385 ], + [ 9.2701369, 46.9653102 ], + [ 9.2703683, 46.9653758 ], + [ 9.2705495, 46.965391 ], + [ 9.2709204, 46.9654498 ], + [ 9.2711026, 46.9654931 ], + [ 9.2712522, 46.9655707 ], + [ 9.2713352, 46.965643299999996 ], + [ 9.2713785, 46.9657557 ], + [ 9.2714056, 46.9658511 ], + [ 9.271449, 46.965991700000004 ], + [ 9.2715665, 46.9661147 ], + [ 9.2716832, 46.9661869 ], + [ 9.2718492, 46.9662869 ], + [ 9.2722054, 46.9663965 ], + [ 9.27242, 46.9664508 ], + [ 9.2725863, 46.9665339 ], + [ 9.2728267, 46.9666445 ], + [ 9.2730514, 46.9667777 ], + [ 9.2732436, 46.9669225 ], + [ 9.2733539, 46.9670963 ], + [ 9.2733645, 46.9672145 ], + [ 9.2733674, 46.9673724 ], + [ 9.2733205, 46.9675137 ], + [ 9.2733636, 46.9675978 ], + [ 9.2734392, 46.967693 ], + [ 9.2735235, 46.967805 ], + [ 9.2735834, 46.9679228 ], + [ 9.2736116, 46.9680748 ], + [ 9.273548, 46.9682106 ], + [ 9.2734612, 46.9684087 ], + [ 9.2734574, 46.9686116 ], + [ 9.2735666, 46.9687291 ], + [ 9.2736998, 46.9688293 ], + [ 9.2739749, 46.9690185 ], + [ 9.2741416, 46.9691128 ], + [ 9.2742157, 46.9691403 ], + [ 9.2743243, 46.9692183 ], + [ 9.2744415, 46.9693299 ], + [ 9.2745753, 46.969424599999996 ], + [ 9.2746921, 46.9695474 ], + [ 9.274876, 46.9696643 ], + [ 9.2751005, 46.9698143 ], + [ 9.275383099999999, 46.9699584 ], + [ 9.2756892, 46.9700684 ], + [ 9.2759121, 46.9701002 ], + [ 9.2762428, 46.9701874 ], + [ 9.2764661, 46.970253 ], + [ 9.2767307, 46.9703295 ], + [ 9.2769057, 46.9704238 ], + [ 9.277097, 46.9705404 ], + [ 9.2772963, 46.9706513 ], + [ 9.277497, 46.9708016 ], + [ 9.277673, 46.9709748 ], + [ 9.2777659, 46.971098 ], + [ 9.277818, 46.9712273 ], + [ 9.2778375, 46.9713904 ], + [ 9.2778563, 46.9715313 ], + [ 9.2778586, 46.971644 ], + [ 9.2777941, 46.9717291 ], + [ 9.2777062, 46.9718482 ], + [ 9.2776593, 46.9719671 ], + [ 9.2776785, 46.9720965 ], + [ 9.2777722, 46.9722648 ], + [ 9.2780133, 46.9724204 ], + [ 9.2781791, 46.9724866 ], + [ 9.2782942, 46.9724912 ], + [ 9.2784668, 46.9724671 ], + [ 9.2786313, 46.9724487 ], + [ 9.2787709, 46.9724475 ], + [ 9.2789523, 46.9724908 ], + [ 9.2791002, 46.9724669 ], + [ 9.2792647, 46.9724485 ], + [ 9.2794196, 46.9723908 ], + [ 9.279574, 46.9722935 ], + [ 9.2796942, 46.9721572 ], + [ 9.2798991, 46.9720933 ], + [ 9.280088, 46.9720691 ], + [ 9.280393, 46.9721226 ], + [ 9.2806329, 46.9721712 ], + [ 9.280814, 46.9721808 ], + [ 9.2809529, 46.9721344 ], + [ 9.2810576, 46.9720263 ], + [ 9.2812701, 46.9719456 ], + [ 9.2814835, 46.9719379 ], + [ 9.2816727, 46.9719476 ], + [ 9.2818223, 46.9719969 ], + [ 9.2819965, 46.9720686 ], + [ 9.2821465, 46.9721799 ], + [ 9.2822712, 46.9722465 ], + [ 9.2823948, 46.9722791 ], + [ 9.2825844, 46.9723 ], + [ 9.2827805, 46.9722193 ], + [ 9.2829519, 46.9721388 ], + [ 9.283139, 46.9720356 ], + [ 9.2833609, 46.9720392 ], + [ 9.2835108, 46.9721224 ], + [ 9.2836025, 46.9721836 ], + [ 9.2837353, 46.9722726 ], + [ 9.2839429, 46.9723609 ], + [ 9.2841328, 46.9724099 ], + [ 9.2843971, 46.9724526 ], + [ 9.284586000000001, 46.9724508 ], + [ 9.2849324, 46.9724646 ], + [ 9.2852616, 46.9725067 ], + [ 9.2855021, 46.9725947 ], + [ 9.2857011, 46.9726718 ], + [ 9.2858829, 46.9727265 ], + [ 9.2860814, 46.9727641 ], + [ 9.2862878, 46.9728185 ], + [ 9.2865608, 46.9728725 ], + [ 9.286798600000001, 46.9728591 ], + [ 9.2871356, 46.9728165 ], + [ 9.2873801, 46.9727128 ], + [ 9.287617000000001, 46.9726486 ], + [ 9.2878799, 46.9726011 ], + [ 9.2881362, 46.9726947 ], + [ 9.28831, 46.972755 ], + [ 9.2884489, 46.9726861 ], + [ 9.2886201, 46.9726 ], + [ 9.2888901, 46.9725186 ], + [ 9.2890963, 46.9725674 ], + [ 9.2892533, 46.9726167 ], + [ 9.2895188, 46.9727158 ], + [ 9.2896848, 46.9727875 ], + [ 9.2900236, 46.972869 ], + [ 9.290338, 46.9729563 ], + [ 9.2907102, 46.9730543 ], + [ 9.290975, 46.9731308 ], + [ 9.2911816, 46.9732135 ], + [ 9.2913793, 46.9732285 ], + [ 9.2915683, 46.9731818 ], + [ 9.2918317, 46.9731962 ], + [ 9.2920039, 46.9731891 ], + [ 9.2921701, 46.973289 ], + [ 9.2922871, 46.9733724 ], + [ 9.2924449, 46.9734443 ], + [ 9.2925855, 46.9734711 ], + [ 9.2927754, 46.9734975 ], + [ 9.2929807, 46.9734958 ], + [ 9.2931625, 46.9735503 ], + [ 9.2933625, 46.9736783 ], + [ 9.2935374, 46.9737724 ], + [ 9.2936614, 46.9738164 ], + [ 9.2938016, 46.973832 ], + [ 9.2940555, 46.9737621 ], + [ 9.2943175, 46.973737 ], + [ 9.2945493, 46.9737857 ], + [ 9.2947151, 46.9738518 ], + [ 9.2948976, 46.9739516 ], + [ 9.2950883, 46.9740005 ], + [ 9.2952948, 46.9740325 ], + [ 9.295577399999999, 46.974199 ], + [ 9.2960436, 46.9744934 ], + [ 9.296055, 46.9746342 ], + [ 9.2960733, 46.9747355 ], + [ 9.2961984, 46.9748358 ], + [ 9.2963397, 46.9749079 ], + [ 9.2965138, 46.9749513 ], + [ 9.2967126, 46.9750453 ], + [ 9.296954, 46.9751615 ], + [ 9.2971853, 46.9752213 ], + [ 9.2973843, 46.9752983 ], + [ 9.2976069, 46.9753189 ], + [ 9.2978046, 46.975334 ], + [ 9.2979364, 46.9753666 ], + [ 9.2981672, 46.9753644 ], + [ 9.2984868, 46.9753165 ], + [ 9.2988061, 46.9752628 ], + [ 9.2993345, 46.9753367 ], + [ 9.2995819, 46.9753851 ], + [ 9.2996904, 46.9754575 ], + [ 9.2996277, 46.9756158 ], + [ 9.2996383, 46.9757341 ], + [ 9.2997222, 46.9758066 ], + [ 9.299931, 46.9759512 ], + [ 9.3000566, 46.9760684 ], + [ 9.300174, 46.9762084 ], + [ 9.3003654, 46.9763249 ], + [ 9.3004749, 46.9764253 ], + [ 9.3005488, 46.9764247 ], + [ 9.3006302, 46.9763788 ], + [ 9.3007685, 46.9763155 ], + [ 9.3009322, 46.976274599999996 ], + [ 9.3010715, 46.9762395 ], + [ 9.3012547, 46.9763336 ], + [ 9.3014534, 46.9763994 ], + [ 9.3016425, 46.9764033 ], + [ 9.3018392, 46.9763902 ], + [ 9.3020851, 46.9763259 ], + [ 9.3026088, 46.9761914 ], + [ 9.302906, 46.9762337 ], + [ 9.3030395, 46.976317 ], + [ 9.303173, 46.9764454 ], + [ 9.303283, 46.9765854 ], + [ 9.3033435, 46.9767427 ], + [ 9.3033552, 46.9769116 ], + [ 9.3033664, 46.9770693 ], + [ 9.3034189, 46.9772324 ], + [ 9.3036045, 46.9774674 ], + [ 9.3037371, 46.9775 ], + [ 9.3039253, 46.9774305 ], + [ 9.3041208, 46.9773329 ], + [ 9.3044411, 46.9773074 ], + [ 9.3047953, 46.9773323 ], + [ 9.3050753, 46.9773748 ], + [ 9.3053319, 46.9774513 ], + [ 9.3055485, 46.977562 ], + [ 9.3057157, 46.9776901 ], + [ 9.3057999, 46.9777965 ], + [ 9.3059107, 46.9779814 ], + [ 9.3059871, 46.9780991 ], + [ 9.3060714, 46.9782336 ], + [ 9.3061903, 46.9783903 ], + [ 9.306307, 46.9784851 ], + [ 9.3064813, 46.9785849 ], + [ 9.306573, 46.9786461 ], + [ 9.3066569, 46.9787186 ], + [ 9.3067578, 46.9788077 ], + [ 9.3069156, 46.9788797 ], + [ 9.307056, 46.9789233 ], + [ 9.3071969, 46.978984 ], + [ 9.3074378, 46.9791058 ], + [ 9.3076216, 46.9792168 ], + [ 9.3078459, 46.9793331 ], + [ 9.3080466, 46.979506 ], + [ 9.3081557, 46.9795951 ], + [ 9.308175, 46.9797472 ], + [ 9.3081293, 46.9799223 ], + [ 9.3081199, 46.9802888 ], + [ 9.3081883, 46.9804123 ], + [ 9.3084859, 46.9805109 ], + [ 9.3087995, 46.9805249 ], + [ 9.30904, 46.9806354 ], + [ 9.3092981, 46.9807795 ], + [ 9.309465, 46.9809246 ], + [ 9.309584, 46.981087 ], + [ 9.3096604, 46.9812045 ], + [ 9.3098685, 46.9813267 ], + [ 9.3100675, 46.9814262 ], + [ 9.3102251, 46.9814924 ], + [ 9.3103581, 46.9815588 ], + [ 9.3104011, 46.9816599 ], + [ 9.3103949, 46.981767 ], + [ 9.3104708, 46.9818452 ], + [ 9.3112461, 46.982351 ], + [ 9.3114125, 46.9824339 ], + [ 9.3115525, 46.9824665 ], + [ 9.3119062, 46.9824294 ], + [ 9.3122436, 46.9824431 ], + [ 9.3125978, 46.982468 ], + [ 9.3129934, 46.9825037 ], + [ 9.3132983, 46.9825516 ], + [ 9.3134974, 46.9826286 ], + [ 9.313673, 46.9827397 ], + [ 9.3140055, 46.982917 ], + [ 9.3144867, 46.983121 ], + [ 9.3147953, 46.9833211 ], + [ 9.3150761, 46.9833861 ], + [ 9.3153238, 46.9834176 ], + [ 9.3155299, 46.9834608 ], + [ 9.3158312, 46.9837116 ], + [ 9.3161959, 46.9838265 ], + [ 9.3163943, 46.983881 ], + [ 9.3165349, 46.9839305 ], + [ 9.3166354, 46.9840084 ], + [ 9.3167359, 46.984109 ], + [ 9.3169447, 46.9842536 ], + [ 9.3172611, 46.9844421 ], + [ 9.3175595, 46.9845633 ], + [ 9.3178823, 46.9846506 ], + [ 9.3179992, 46.9847284 ], + [ 9.31805, 46.9848181 ], + [ 9.3182254, 46.9849236 ], + [ 9.3183416, 46.9849788 ], + [ 9.3184427, 46.9851188 ], + [ 9.318560399999999, 46.9852417 ], + [ 9.3186701, 46.9853478 ], + [ 9.3189359, 46.9854749 ], + [ 9.3193419, 46.9856176 ], + [ 9.3196397, 46.985722 ], + [ 9.3200374, 46.9858365 ], + [ 9.3203693, 46.9859743 ], + [ 9.3206511, 46.98609 ], + [ 9.3208836, 46.9862063 ], + [ 9.3210346, 46.9863176 ], + [ 9.3211428, 46.9864011 ], + [ 9.321309, 46.9864784 ], + [ 9.3214829, 46.9865388 ], + [ 9.3217219, 46.986559 ], + [ 9.3222731, 46.9865539 ], + [ 9.3225707, 46.9866018 ], + [ 9.322851, 46.9866274 ], + [ 9.3231891, 46.9866862 ], + [ 9.3235197, 46.9867394 ], + [ 9.3237574, 46.9866977 ], + [ 9.3239704, 46.9866787 ], + [ 9.3241997, 46.9866315 ], + [ 9.3244788, 46.9866006 ], + [ 9.3246934, 46.9866269 ], + [ 9.3249002, 46.9866644 ], + [ 9.3251314, 46.9867185 ], + [ 9.325288, 46.9867339 ], + [ 9.3254197, 46.9867384 ], + [ 9.3256079, 46.9866914 ], + [ 9.3257485, 46.9866957 ], + [ 9.3259052, 46.9867111 ], + [ 9.3260934, 46.9866643 ], + [ 9.3262986, 46.9866567 ], + [ 9.3265051, 46.9867111 ], + [ 9.326671, 46.9867772 ], + [ 9.3268054, 46.986883 ], + [ 9.326848, 46.9869502 ], + [ 9.3269489, 46.987062 ], + [ 9.3270416, 46.9871964 ], + [ 9.3271194, 46.9873761 ], + [ 9.327236599999999, 46.9874595 ], + [ 9.3274186, 46.9875197 ], + [ 9.3276999, 46.9875961 ], + [ 9.327948, 46.9876388 ], + [ 9.3282856, 46.9876806 ], + [ 9.3287298, 46.9876708 ], + [ 9.3297188, 46.9877516 ], + [ 9.3301236, 46.9878097 ], + [ 9.3304457, 46.9878799 ], + [ 9.3306441, 46.9879119 ], + [ 9.3307685, 46.9879671 ], + [ 9.330877, 46.9880619 ], + [ 9.330995, 46.9881678 ], + [ 9.3311366, 46.9882679 ], + [ 9.3312936, 46.9883172 ], + [ 9.3314419, 46.988327 ], + [ 9.3316477, 46.9883138 ], + [ 9.3318948, 46.9883284 ], + [ 9.3321168, 46.9883319 ], + [ 9.3322318, 46.9883308 ], + [ 9.3323556, 46.9883465 ], + [ 9.33253, 46.9883956 ], + [ 9.3327357, 46.9884275 ], + [ 9.3330078, 46.9884531 ], + [ 9.333288, 46.9884504 ], + [ 9.3335677, 46.9884364 ], + [ 9.3338629, 46.9884168 ], + [ 9.3341995, 46.9883853 ], + [ 9.3344953, 46.9883599 ], + [ 9.3348576, 46.9883791 ], + [ 9.335154, 46.9883705 ], + [ 9.3354255, 46.9883566 ], + [ 9.3356559, 46.9883657 ], + [ 9.3359269, 46.988335 ], + [ 9.3362635, 46.9883035 ], + [ 9.3365098, 46.9882956 ], + [ 9.3366917, 46.9883051 ], + [ 9.3368646, 46.9883373 ], + [ 9.3370465, 46.9883919 ], + [ 9.3372539, 46.9884689 ], + [ 9.3374859, 46.9885455 ], + [ 9.3377676, 46.9886104 ], + [ 9.3380896, 46.9886751 ], + [ 9.3384935, 46.9887106 ], + [ 9.3388885, 46.9887012 ], + [ 9.3392383, 46.9885062 ], + [ 9.339465, 46.9883406 ], + [ 9.3395775, 46.9881986 ], + [ 9.3396563, 46.9880343 ], + [ 9.3397089, 46.9878027 ], + [ 9.3397308, 46.9876785 ], + [ 9.3397197, 46.9875038 ], + [ 9.3397913, 46.9874129 ], + [ 9.3398623, 46.98726 ], + [ 9.3399251, 46.9871073 ], + [ 9.3399699, 46.9868644 ], + [ 9.340016, 46.9867287 ], + [ 9.3401115, 46.9865699 ], + [ 9.340216, 46.9864337 ], + [ 9.3402629, 46.9863206 ], + [ 9.3403902, 46.9861106 ], + [ 9.3405023, 46.98598 ], + [ 9.3405088, 46.9858615 ], + [ 9.340472, 46.9857041 ], + [ 9.3404855, 46.9855291 ], + [ 9.34058, 46.9853423 ], + [ 9.3407517, 46.9848784 ], + [ 9.3410258, 46.9850055 ], + [ 9.3412413, 46.9850823 ], + [ 9.3414557, 46.9851253 ], + [ 9.3416947, 46.985123 ], + [ 9.3419253, 46.9851377 ], + [ 9.3421235, 46.9851865 ], + [ 9.3423224, 46.9852353 ], + [ 9.3426115, 46.9853227 ], + [ 9.3429945, 46.9851387 ], + [ 9.3430493, 46.9853862 ], + [ 9.3433004, 46.9852146 ], + [ 9.3433053, 46.9854231 ], + [ 9.3435647, 46.9852515 ], + [ 9.3436173, 46.9853919 ], + [ 9.3437881, 46.985317 ], + [ 9.3439184, 46.9852369 ], + [ 9.3440472, 46.9851172 ], + [ 9.3441922, 46.9849637 ], + [ 9.3442563, 46.9848728 ], + [ 9.3443774, 46.9847646 ], + [ 9.3444914, 46.9846902 ], + [ 9.3446058, 46.9846721 ], + [ 9.344858, 46.9845289 ], + [ 9.345053, 46.9843973 ], + [ 9.3453286, 46.9841973 ], + [ 9.3455963, 46.9840313 ], + [ 9.3458255, 46.9839614 ], + [ 9.3461297, 46.9839416 ], + [ 9.3463685, 46.9839562 ], + [ 9.346558, 46.9839938 ], + [ 9.3466991, 46.9840319 ], + [ 9.3470115, 46.9840346 ], + [ 9.3472413, 46.9840042 ], + [ 9.34743, 46.9839741 ], + [ 9.3476857, 46.9839999 ], + [ 9.3480403, 46.9840584 ], + [ 9.3483549, 46.9841455 ], + [ 9.348243, 46.9842819 ], + [ 9.3481396, 46.9844465 ], + [ 9.3479692, 46.9846003 ], + [ 9.3477999, 46.9847372 ], + [ 9.3475387, 46.9848581 ], + [ 9.3472219, 46.9850303 ], + [ 9.3470435, 46.9851672 ], + [ 9.3470783, 46.9852684 ], + [ 9.347106, 46.9853978 ], + [ 9.3471071, 46.9854767 ], + [ 9.3471009, 46.9855782 ], + [ 9.3471027, 46.9856289 ], + [ 9.3471124, 46.985719 ], + [ 9.3471469, 46.9858089 ], + [ 9.3471647, 46.9858707 ], + [ 9.3471747, 46.9859439 ], + [ 9.3471676, 46.9860003 ], + [ 9.3471031, 46.9860798 ], + [ 9.3470227, 46.986154 ], + [ 9.346975, 46.9862446 ], + [ 9.3469772, 46.9863517 ], + [ 9.3470124, 46.986464 ], + [ 9.347032, 46.9865992 ], + [ 9.3470339, 46.9867005 ], + [ 9.3469786, 46.9868308 ], + [ 9.3468587, 46.9869728 ], + [ 9.34673, 46.9871433 ], + [ 9.3467708, 46.9875036 ], + [ 9.3468298, 46.9875932 ], + [ 9.3469404, 46.9877443 ], + [ 9.3471004, 46.9879231 ], + [ 9.3471767, 46.9880352 ], + [ 9.3472532, 46.9881528 ], + [ 9.3472961, 46.9882257 ], + [ 9.3473706, 46.9882643 ], + [ 9.3474782, 46.9883084 ], + [ 9.3476106, 46.9883354 ], + [ 9.3479655, 46.988377 ], + [ 9.3479587, 46.9884616 ], + [ 9.3486371, 46.9886129 ], + [ 9.3486569, 46.9887987 ], + [ 9.3490752, 46.9891217 ], + [ 9.349041, 46.9894546 ], + [ 9.3490602, 46.9896009 ], + [ 9.3491114, 46.9897019 ], + [ 9.3491702, 46.9897352 ], + [ 9.3492782, 46.989768 ], + [ 9.3495084, 46.9897713 ], + [ 9.349510800000001, 46.989884 ], + [ 9.3493647, 46.9899812 ], + [ 9.3492588, 46.9900555 ], + [ 9.3492115, 46.9901575 ], + [ 9.3492714, 46.9902697 ], + [ 9.3493569, 46.9904097 ], + [ 9.3494176, 46.9905445 ], + [ 9.349519, 46.9906675 ], + [ 9.3495299, 46.990814 ], + [ 9.3495321, 46.9909211 ], + [ 9.3495675, 46.991039 ], + [ 9.349644, 46.9911567 ], + [ 9.3498094, 46.9912058 ], + [ 9.350043, 46.9913501 ], + [ 9.3502622, 46.9912296 ], + [ 9.3503684, 46.9911892 ], + [ 9.3505011, 46.9912217 ], + [ 9.3506348, 46.9913049 ], + [ 9.3506363, 46.9913951 ], + [ 9.3505972, 46.9914969 ], + [ 9.350493, 46.9916163 ], + [ 9.3503885, 46.9917301 ], + [ 9.3502344, 46.9918555 ], + [ 9.3501126, 46.9919187 ], + [ 9.3499821, 46.9919933 ], + [ 9.3498278, 46.992068 ], + [ 9.349582, 46.992138 ], + [ 9.349369, 46.9921795 ], + [ 9.3491636, 46.9922042 ], + [ 9.3488762, 46.9922351 ], + [ 9.3486295, 46.9922544 ], + [ 9.3484576, 46.992273 ], + [ 9.348253, 46.9923427 ], + [ 9.3482786, 46.9923931 ], + [ 9.3483619, 46.9924487 ], + [ 9.3484799, 46.9925545 ], + [ 9.3486789, 46.992626 ], + [ 9.3488601, 46.992658 ], + [ 9.3490494, 46.9926449 ], + [ 9.349124400000001, 46.992672400000004 ], + [ 9.3492169, 46.9927786 ], + [ 9.3493335, 46.9928676 ], + [ 9.3494511, 46.9929849 ], + [ 9.3494613, 46.9930637 ], + [ 9.3493972, 46.993132 ], + [ 9.3492917, 46.9932175 ], + [ 9.3491214, 46.9933262 ], + [ 9.3489586, 46.9934406 ], + [ 9.348861, 46.9934698 ], + [ 9.3487704, 46.9934876 ], + [ 9.3486141, 46.9934834 ], + [ 9.3485069, 46.9934731 ], + [ 9.3483009, 46.9934583 ], + [ 9.3481123, 46.9934939 ], + [ 9.3478738, 46.9935131 ], + [ 9.3477103, 46.9935373 ], + [ 9.3475941, 46.9935045 ], + [ 9.3473875, 46.9934502 ], + [ 9.3471985, 46.993452 ], + [ 9.3470259, 46.9934988 ], + [ 9.3468972, 46.9936239 ], + [ 9.3468333, 46.9937205 ], + [ 9.3469992, 46.9937639 ], + [ 9.3471893, 46.9938411 ], + [ 9.3474875, 46.9939058 ], + [ 9.3476955, 46.9940222 ], + [ 9.347829, 46.9940998 ], + [ 9.3479467, 46.9942452 ], + [ 9.3480407, 46.9944134 ], + [ 9.3480931, 46.9945482 ], + [ 9.3481947, 46.9946769 ], + [ 9.3483039, 46.9947885 ], + [ 9.3484127, 46.9948664 ], + [ 9.3485784, 46.9949268 ], + [ 9.3488265, 46.9949921 ], + [ 9.3491421, 46.9951299 ], + [ 9.3493823, 46.995229 ], + [ 9.3495992, 46.9953397 ], + [ 9.3497901, 46.9954393 ], + [ 9.3499416, 46.9956069 ], + [ 9.350051, 46.9957016 ], + [ 9.3501269, 46.9957798 ], + [ 9.3502854, 46.995891 ], + [ 9.3504106, 46.9959688 ], + [ 9.3506186, 46.9960851 ], + [ 9.3508176, 46.9961791 ], + [ 9.3509757, 46.9962564 ], + [ 9.3511404, 46.9962661 ], + [ 9.3513547, 46.9962584 ], + [ 9.3516008, 46.9962447 ], + [ 9.3518322, 46.9962819 ], + [ 9.3520232, 46.996359 ], + [ 9.3521661, 46.9964929 ], + [ 9.352326099999999, 46.9966942 ], + [ 9.352552, 46.9968725 ], + [ 9.3526543, 46.9970236 ], + [ 9.3527483, 46.9971919 ], + [ 9.3527591, 46.9973327 ], + [ 9.3527613, 46.9974398 ], + [ 9.3527568, 46.997592 ], + [ 9.3527602, 46.9977554 ], + [ 9.352903, 46.9979344 ], + [ 9.3530126, 46.9980573 ], + [ 9.3531481, 46.9982364 ], + [ 9.3533316, 46.9983586 ], + [ 9.3535829, 46.9985366 ], + [ 9.3538246, 46.9986978 ], + [ 9.3540076, 46.9988031 ], + [ 9.354182699999999, 46.9988972 ], + [ 9.3543899, 46.998991 ], + [ 9.3545073, 46.99908 ], + [ 9.3545252, 46.9991418 ], + [ 9.3545761, 46.9992315 ], + [ 9.3546195, 46.9993438 ], + [ 9.3546139, 46.9994623 ], + [ 9.3546331, 46.9995861 ], + [ 9.3546361, 46.9997157 ], + [ 9.3546457, 46.9998002 ], + [ 9.3547136, 46.9999066 ], + [ 9.3548313, 47.0000014 ], + [ 9.3550896, 47.0001679 ], + [ 9.3552565, 47.0002847 ], + [ 9.3554982, 47.0004232 ], + [ 9.3557152, 47.0005845 ], + [ 9.3559411, 47.0007402 ], + [ 9.3561992, 47.0009012 ], + [ 9.3565072, 47.001056 ], + [ 9.3567822, 47.0012055 ], + [ 9.3570149, 47.0013217 ], + [ 9.3572075, 47.0014664 ], + [ 9.3572918, 47.0015952 ], + [ 9.3575384, 47.0015702 ], + [ 9.3577608, 47.0015624 ], + [ 9.3579244, 47.0015382 ], + [ 9.3580563, 47.0015257 ], + [ 9.3582288, 47.0015239 ], + [ 9.358394, 47.0015449 ], + [ 9.3585834, 47.0015544 ], + [ 9.3587726, 47.0015581 ], + [ 9.3589955, 47.0015616 ], + [ 9.3591673, 47.0015148 ], + [ 9.3593783, 47.0013945 ], + [ 9.3596559, 47.0012733 ], + [ 9.3599396, 47.0010676 ], + [ 9.3602571, 47.0008898 ], + [ 9.3606734, 47.0007391 ], + [ 9.3608692, 47.0006753 ], + [ 9.361164, 47.0005765 ], + [ 9.3613763, 47.0004899 ], + [ 9.3614981, 47.0004267 ], + [ 9.3616026, 47.0003129 ], + [ 9.3616998, 47.0002275 ], + [ 9.3618966, 47.0001917 ], + [ 9.3621592, 47.0001552 ], + [ 9.3622407, 47.0001151 ], + [ 9.3623211, 47.000041 ], + [ 9.362442, 46.9999271 ], + [ 9.3625885, 46.9998411 ], + [ 9.3627681, 46.999783 ], + [ 9.3630725, 46.9997461 ], + [ 9.3632765, 46.9996821 ], + [ 9.3634399, 46.9996072 ], + [ 9.3635692, 46.9994989 ], + [ 9.3636161, 46.9994081 ], + [ 9.3637125, 46.9992776 ], + [ 9.3637846, 46.9991811 ], + [ 9.3639478, 46.9991006 ], + [ 9.3641195, 46.9990538 ], + [ 9.364267, 46.9990185 ], + [ 9.3643811, 46.9989893 ], + [ 9.3645366, 46.9989483 ], + [ 9.3647004, 46.9988847 ], + [ 9.3648469, 46.9988212 ], + [ 9.3650761, 46.9987739 ], + [ 9.3652329, 46.9987893 ], + [ 9.3653976, 46.9987989 ], + [ 9.3655954, 46.9988138 ], + [ 9.3657918, 46.9987668 ], + [ 9.3659059, 46.9986925 ], + [ 9.3660847, 46.9985892 ], + [ 9.3662468, 46.998458 ], + [ 9.3664338, 46.9983546 ], + [ 9.3665637, 46.9982632 ], + [ 9.3666753, 46.9981211 ], + [ 9.3667861, 46.9979115 ], + [ 9.3668803, 46.9976965 ], + [ 9.3669971, 46.9973796 ], + [ 9.3670753, 46.9971533 ], + [ 9.3671302, 46.9970344 ], + [ 9.3672512, 46.9969261 ], + [ 9.3673807, 46.9968234 ], + [ 9.3675424, 46.9966809 ], + [ 9.3677043, 46.9965666 ], + [ 9.3678829, 46.9964577 ], + [ 9.3679633, 46.996361 ], + [ 9.3679847, 46.9961804 ], + [ 9.3680055, 46.9960281 ], + [ 9.3680685, 46.9958583 ], + [ 9.3680815, 46.9957173 ], + [ 9.3681193, 46.9955592 ], + [ 9.3681901, 46.9954005 ], + [ 9.368246, 46.9953099 ], + [ 9.3682752, 46.995163 ], + [ 9.3682456, 46.9949096 ], + [ 9.3682259, 46.9947519 ], + [ 9.3682133, 46.9945605 ], + [ 9.3682273, 46.994425 ], + [ 9.3683489, 46.9943337 ], + [ 9.3684864, 46.9942477 ], + [ 9.368789, 46.9941376 ], + [ 9.3690419, 46.9940393 ], + [ 9.3692122, 46.9939306 ], + [ 9.3693084, 46.9938169 ], + [ 9.3693395, 46.9936981 ], + [ 9.3693208, 46.9936138 ], + [ 9.3692703, 46.9935354 ], + [ 9.3691936, 46.9934348 ], + [ 9.3691168, 46.9932888 ], + [ 9.3690725, 46.9931541 ], + [ 9.3690206, 46.9930136 ], + [ 9.3690426, 46.992895 ], + [ 9.3690651, 46.9928103 ], + [ 9.3691298, 46.9927364 ], + [ 9.3692689, 46.992695499999996 ], + [ 9.3694903, 46.9926595 ], + [ 9.3696047, 46.9926189 ], + [ 9.3697602, 46.992578 ], + [ 9.3698728, 46.9924867 ], + [ 9.3699706, 46.992418 ], + [ 9.3700584, 46.9922988 ], + [ 9.3701225, 46.9922079 ], + [ 9.3702035, 46.9921507 ], + [ 9.3703103, 46.9921271 ], + [ 9.3704491, 46.9920808 ], + [ 9.3705056, 46.9920294 ], + [ 9.3705207, 46.9919673 ], + [ 9.370485, 46.9918436 ], + [ 9.3704579, 46.9917311 ], + [ 9.3704222, 46.9916075 ], + [ 9.37042, 46.9915004 ], + [ 9.3704515, 46.9914156 ], + [ 9.3705076, 46.991353 ], + [ 9.3706138, 46.9913125 ], + [ 9.3706258, 46.9910982 ], + [ 9.3705815, 46.9909633 ], + [ 9.3704971, 46.990857 ], + [ 9.3704446, 46.9906997 ], + [ 9.3704245, 46.9905534 ], + [ 9.3704466, 46.9904123 ], + [ 9.370491, 46.9901863 ], + [ 9.3705858, 46.9899881 ], + [ 9.3706401, 46.9898297 ], + [ 9.3706188, 46.989627 ], + [ 9.3705988, 46.9894356 ], + [ 9.3706428, 46.9891984 ], + [ 9.3706693, 46.9888599 ], + [ 9.3706556, 46.9886177 ], + [ 9.3706364, 46.9884713 ], + [ 9.3706748, 46.9883751 ], + [ 9.3707468, 46.9882503 ], + [ 9.3707361, 46.9881602 ], + [ 9.370765, 46.987957 ], + [ 9.370776, 46.9876919 ], + [ 9.370814, 46.9875395 ], + [ 9.3709357, 46.987448 ], + [ 9.3711887, 46.9873553 ], + [ 9.371457, 46.9872061 ], + [ 9.3717493, 46.9870173 ], + [ 9.3719505, 46.9868293 ], + [ 9.372111199999999, 46.9866359 ], + [ 9.3722638, 46.986471 ], + [ 9.3723354, 46.9863351 ], + [ 9.372414299999999, 46.9861764 ], + [ 9.3725331, 46.9859837 ], + [ 9.3727344, 46.9857562 ], + [ 9.3729195, 46.985557 ], + [ 9.3731127, 46.9853747 ], + [ 9.3731926, 46.9852443 ], + [ 9.3733364, 46.9850624 ], + [ 9.3736107, 46.9848062 ], + [ 9.3742414, 46.9842475 ], + [ 9.3745497, 46.9840471 ], + [ 9.3749157, 46.9838519 ], + [ 9.3751101, 46.9837033 ], + [ 9.3752214, 46.9835332 ], + [ 9.3752997, 46.983335 ], + [ 9.3753875, 46.9832159 ], + [ 9.3754929, 46.9831302 ], + [ 9.3756221, 46.9830218 ], + [ 9.3758078, 46.9828622 ], + [ 9.375944, 46.9826747 ], + [ 9.376087, 46.9824479 ], + [ 9.3761405, 46.9822444 ], + [ 9.376336, 46.9821748 ], + [ 9.3765558, 46.9820486 ], + [ 9.3767174, 46.9819061 ], + [ 9.3769119, 46.9817632 ], + [ 9.3770808, 46.9815925 ], + [ 9.377241, 46.9814106 ], + [ 9.3773029, 46.9812127 ], + [ 9.3773486, 46.9810206 ], + [ 9.3775154, 46.9807482 ], + [ 9.3776865, 46.980662 ], + [ 9.3778489, 46.9805871 ], + [ 9.3779872, 46.9805012 ], + [ 9.3779845, 46.9803829 ], + [ 9.3779488, 46.9802366 ], + [ 9.3780017, 46.9800162 ], + [ 9.3780631, 46.9798296 ], + [ 9.378127, 46.9797332 ], + [ 9.3782817, 46.9796471 ], + [ 9.3784852, 46.9795493 ], + [ 9.3786557, 46.9794235 ], + [ 9.3787348, 46.9792706 ], + [ 9.3787893, 46.9791404 ], + [ 9.3789033, 46.9790659 ], + [ 9.3790577, 46.9789968 ], + [ 9.3792128, 46.978922 ], + [ 9.379374, 46.9787682 ], + [ 9.3795356, 46.9786482 ], + [ 9.379757, 46.9786121 ], + [ 9.3799794, 46.9786042 ], + [ 9.3801342, 46.978569 ], + [ 9.3802735, 46.9785338 ], + [ 9.3804612, 46.978453 ], + [ 9.3806819, 46.9784 ], + [ 9.3808867, 46.9783586 ], + [ 9.3811251, 46.9783392 ], + [ 9.3813545, 46.9782749 ], + [ 9.3815756, 46.9782333 ], + [ 9.3817553, 46.9781808 ], + [ 9.3819923, 46.9781221 ], + [ 9.3821722, 46.9780752 ], + [ 9.3823613, 46.9780563 ], + [ 9.3826989, 46.9780755 ], + [ 9.3830613, 46.9780775 ], + [ 9.3832599, 46.9781376 ], + [ 9.3835135, 46.9780843 ], + [ 9.3838504, 46.978064 ], + [ 9.3841958, 46.9780719 ], + [ 9.3845507, 46.9780909 ], + [ 9.3849788, 46.9781373 ], + [ 9.3853574, 46.9781336 ], + [ 9.385577, 46.9780243 ], + [ 9.3856154, 46.9779055 ], + [ 9.385646, 46.9777755 ], + [ 9.3857021, 46.9776903 ], + [ 9.3857744, 46.9776221 ], + [ 9.3859044, 46.9775587 ], + [ 9.3861255, 46.9774945 ], + [ 9.3863867, 46.9774018 ], + [ 9.38655, 46.9773494 ], + [ 9.3866711, 46.9772466 ], + [ 9.3868498, 46.9771435 ], + [ 9.3869884, 46.9770687 ], + [ 9.3871605, 46.9770332 ], + [ 9.3874474, 46.9769909 ], + [ 9.3877422, 46.9769429 ], + [ 9.3881361, 46.9768825 ], + [ 9.3883246, 46.9768468 ], + [ 9.3884377, 46.9767498 ], + [ 9.3885256, 46.9766588 ], + [ 9.3886388, 46.9765618 ], + [ 9.3887768, 46.9764702 ], + [ 9.3890045, 46.9763384 ], + [ 9.3892002, 46.9762518 ], + [ 9.389479, 46.9762152 ], + [ 9.389692, 46.9761736 ], + [ 9.389822, 46.9761103 ], + [ 9.3899446, 46.9760471 ], + [ 9.3900986, 46.9759441 ], + [ 9.3903019, 46.975863 ], + [ 9.3905655, 46.9758604 ], + [ 9.3909764, 46.9758394 ], + [ 9.3914205, 46.9758293 ], + [ 9.3919207, 46.9757566 ], + [ 9.3922963, 46.9756232 ], + [ 9.3925464, 46.9754065 ], + [ 9.3928439, 46.9750934 ], + [ 9.3931421, 46.9747973 ], + [ 9.3935312, 46.9745397 ], + [ 9.3937577, 46.9743514 ], + [ 9.3940488, 46.9741343 ], + [ 9.3942422, 46.9739407 ], + [ 9.3944213, 46.9738262 ], + [ 9.394457, 46.9736116 ], + [ 9.394692299999999, 46.9738234 ], + [ 9.394605, 46.9735932 ], + [ 9.3949631, 46.9737925 ], + [ 9.3949102, 46.9736465 ], + [ 9.3949165, 46.973528 ], + [ 9.3948884, 46.9733874 ], + [ 9.394760699999999, 46.973197 ], + [ 9.3949512, 46.9732402 ], + [ 9.3948808, 46.973021 ], + [ 9.3949188, 46.9728686 ], + [ 9.3950142, 46.9727379 ], + [ 9.3952011, 46.9726346 ], + [ 9.3954204, 46.972497 ], + [ 9.3955811, 46.972332 ], + [ 9.3957189, 46.9722347 ], + [ 9.3959154, 46.9721708 ], + [ 9.3963324, 46.9720481 ], + [ 9.3966338, 46.9719098 ], + [ 9.3969834, 46.9717429 ], + [ 9.3972922, 46.9715818 ], + [ 9.3977599, 46.9714982 ], + [ 9.3980112, 46.9713378 ], + [ 9.3984243, 46.9710406 ], + [ 9.3985769, 46.9708529 ], + [ 9.3987132, 46.9706937 ], + [ 9.3988257, 46.9705799 ], + [ 9.3989887, 46.9704993 ], + [ 9.3991673, 46.9704187 ], + [ 9.3992884, 46.9703159 ], + [ 9.3993506, 46.9701518 ], + [ 9.3993225, 46.9699886 ], + [ 9.3992691, 46.9697862 ], + [ 9.3992646, 46.9695947 ], + [ 9.3993851, 46.96943 ], + [ 9.3995216, 46.9692763 ], + [ 9.3997223, 46.9690827 ], + [ 9.3999322, 46.9688664 ], + [ 9.4001003, 46.9686561 ], + [ 9.4000793, 46.9684421 ], + [ 9.4000481, 46.9681493 ], + [ 9.3999282, 46.967925 ], + [ 9.3998331, 46.9677287 ], + [ 9.3997949, 46.9674923 ], + [ 9.3997099, 46.9673466 ], + [ 9.3995368, 46.9673314 ], + [ 9.3993301, 46.9672942 ], + [ 9.3991549, 46.9671775 ], + [ 9.3990128, 46.9670662 ], + [ 9.3990262, 46.9669363 ], + [ 9.3990307, 46.9667446 ], + [ 9.3989206, 46.9665879 ], + [ 9.3987508, 46.9663473 ], + [ 9.3985225, 46.966079 ], + [ 9.3983704, 46.9658945 ], + [ 9.3983925, 46.9657817 ], + [ 9.3984389, 46.9656345 ], + [ 9.3985085, 46.9654252 ], + [ 9.3985795, 46.965278 ], + [ 9.3985107, 46.9651491 ], + [ 9.3983758, 46.9650095 ], + [ 9.3982662, 46.9648641 ], + [ 9.3981387, 46.9646568 ], + [ 9.3979925, 46.9643876 ], + [ 9.3978979, 46.9642027 ], + [ 9.3977927, 46.963888 ], + [ 9.3977465, 46.9636347 ], + [ 9.3976917, 46.963392999999996 ], + [ 9.3976775, 46.9631395 ], + [ 9.3977145, 46.9629136 ], + [ 9.3976837, 46.9626546 ], + [ 9.3976379, 46.9624352 ], + [ 9.3975196, 46.9623012 ], + [ 9.3973784, 46.962235 ], + [ 9.3972369, 46.9621405 ], + [ 9.397045, 46.9620127 ], + [ 9.3968116, 46.9618742 ], + [ 9.3965938, 46.9616905 ], + [ 9.3964177, 46.9615231 ], + [ 9.39629, 46.9613102 ], + [ 9.3962741, 46.960989 ], + [ 9.396019, 46.9609522 ], + [ 9.3958371, 46.9609202 ], + [ 9.3955555, 46.9608328 ], + [ 9.395266, 46.9607342 ], + [ 9.3954949, 46.9606812 ], + [ 9.3956657, 46.9606118 ], + [ 9.3953325, 46.9604179 ], + [ 9.395125, 46.9603129 ], + [ 9.3947945, 46.9602374 ], + [ 9.394307, 46.9601351 ], + [ 9.3939609, 46.9600822 ], + [ 9.393746, 46.960045 ], + [ 9.3936374, 46.9599727 ], + [ 9.3934701, 46.9598448 ], + [ 9.3932379, 46.9597401 ], + [ 9.3928984, 46.959642 ], + [ 9.3925583, 46.9595045 ], + [ 9.392112, 46.9594075 ], + [ 9.391832, 46.9593878 ], + [ 9.3917805, 46.9592812 ], + [ 9.3917037, 46.9591579 ], + [ 9.391536, 46.9589961 ], + [ 9.3913109, 46.9588801 ], + [ 9.3911853, 46.9587461 ], + [ 9.3909735, 46.9584777 ], + [ 9.3906793, 46.9581818 ], + [ 9.3903758, 46.9578297 ], + [ 9.3902579, 46.9577069 ], + [ 9.3900839, 46.957641 ], + [ 9.3899104, 46.957592 ], + [ 9.3896799, 46.9575774 ], + [ 9.3893343, 46.957580899999996 ], + [ 9.3890713, 46.9576004 ], + [ 9.3887614, 46.9576824 ], + [ 9.3884764, 46.9578206 ], + [ 9.3882149, 46.9579247 ], + [ 9.3879126, 46.9579897 ], + [ 9.3875447, 46.9581061 ], + [ 9.3872816, 46.95812 ], + [ 9.3869852, 46.9580779 ], + [ 9.3868522, 46.9580116 ], + [ 9.3867738, 46.9578207 ], + [ 9.3866284, 46.957935 ], + [ 9.3864425, 46.9577226 ], + [ 9.3862473, 46.9578204 ], + [ 9.3861627, 46.9576859 ], + [ 9.3860742, 46.9577827 ], + [ 9.3859868, 46.9575694 ], + [ 9.385899, 46.9576829 ], + [ 9.3857145, 46.9574875 ], + [ 9.3854827, 46.9574165 ], + [ 9.3850778, 46.9573473 ], + [ 9.38469, 46.9572779 ], + [ 9.3842036, 46.9572264 ], + [ 9.3837013, 46.9571919 ], + [ 9.3830923, 46.9571585 ], + [ 9.382785, 46.9570207 ], + [ 9.3826664, 46.9568752 ], + [ 9.3826065, 46.9567406 ], + [ 9.3825129, 46.9566289 ], + [ 9.3824364, 46.9564886 ], + [ 9.3824083, 46.9563254 ], + [ 9.3822838, 46.9562647 ], + [ 9.3820843, 46.9561765 ], + [ 9.3818285, 46.9561452 ], + [ 9.3814831, 46.9561318 ], + [ 9.3812528, 46.9561227 ], + [ 9.3804258, 46.9558998 ], + [ 9.3804296, 46.9556857 ], + [ 9.3803859, 46.9555677 ], + [ 9.3802833, 46.9554109 ], + [ 9.3801908, 46.9552821 ], + [ 9.3800141, 46.9551205 ], + [ 9.3798132, 46.9549477 ], + [ 9.3795977, 46.9548483 ], + [ 9.3794301, 46.954709199999996 ], + [ 9.379386, 46.9545799 ], + [ 9.3793817, 46.9543939 ], + [ 9.3793695, 46.9541911 ], + [ 9.3791222, 46.9537821 ], + [ 9.3788314, 46.9536441 ], + [ 9.3787287, 46.9534366 ], + [ 9.3785666, 46.9531788 ], + [ 9.3784134, 46.952938 ], + [ 9.3779902, 46.952728 ], + [ 9.3781904, 46.9524724 ], + [ 9.3782448, 46.9523421 ], + [ 9.3782596, 46.9522517 ], + [ 9.3781841, 46.9521848 ], + [ 9.3780846, 46.9521352 ], + [ 9.3779422, 46.9520351 ], + [ 9.3778244, 46.9519123 ], + [ 9.3777151, 46.9517724 ], + [ 9.3775885, 46.9516328 ], + [ 9.3774607, 46.9514142 ], + [ 9.3773994, 46.9512401 ], + [ 9.3774039, 46.9510709 ], + [ 9.3774572, 46.9508843 ], + [ 9.3776352, 46.9507192 ], + [ 9.3778702, 46.9505646 ], + [ 9.3781223, 46.9504493 ], + [ 9.3783413, 46.9503062 ], + [ 9.3783208, 46.9501036 ], + [ 9.378217, 46.9498677 ], + [ 9.3781952, 46.9496031 ], + [ 9.3782129, 46.9492985 ], + [ 9.3782657, 46.9490782 ], + [ 9.3783448, 46.9489026 ], + [ 9.3783496, 46.9487617 ], + [ 9.3782981, 46.948655 ], + [ 9.3782216, 46.9485374 ], + [ 9.3781707, 46.9484477 ], + [ 9.3781434, 46.9483521 ], + [ 9.3781582, 46.9482619 ], + [ 9.3782217, 46.948131599999996 ], + [ 9.3782919, 46.9479843 ], + [ 9.378347, 46.9478711 ], + [ 9.3783534, 46.9477526 ], + [ 9.3783177, 46.9476289 ], + [ 9.3783487, 46.9475328 ], + [ 9.3784364, 46.9474135 ], + [ 9.3784506, 46.9473062 ], + [ 9.378333, 46.947189 ], + [ 9.3781412, 46.9470614 ], + [ 9.3779665, 46.9469559 ], + [ 9.3779881, 46.9468487 ], + [ 9.3780438, 46.9467523 ], + [ 9.3779591, 46.9466348 ], + [ 9.3778836, 46.9465452 ], + [ 9.3778151, 46.946422 ], + [ 9.3778048, 46.9463431 ], + [ 9.3778607, 46.9462524 ], + [ 9.3779732, 46.946116 ], + [ 9.3781175, 46.9459511 ], + [ 9.3778017, 46.9457794 ], + [ 9.3776265, 46.9456798 ], + [ 9.377392799999999, 46.9455073 ], + [ 9.3772679, 46.9454128 ], + [ 9.3771649, 46.9452221 ], + [ 9.3770952, 46.9450424 ], + [ 9.3770017, 46.9448856 ], + [ 9.3768513, 46.9447911 ], + [ 9.3766428, 46.9446353 ], + [ 9.376182, 46.9442454 ], + [ 9.3760555, 46.9441057 ], + [ 9.3760374, 46.9440157 ], + [ 9.3760839, 46.9438687 ], + [ 9.3761871, 46.9437042 ], + [ 9.376291, 46.9435566 ], + [ 9.3764115, 46.943437 ], + [ 9.3764902, 46.9432728 ], + [ 9.3764791, 46.9431263 ], + [ 9.3764433, 46.9429745 ], + [ 9.3764234, 46.9428112 ], + [ 9.3764516, 46.9426136 ], + [ 9.3765461, 46.9424097 ], + [ 9.37655, 46.9422011 ], + [ 9.3764387, 46.9420049 ], + [ 9.3764172, 46.941774 ], + [ 9.3763894, 46.9416165 ], + [ 9.3763954, 46.9414867 ], + [ 9.3764174, 46.9413683 ], + [ 9.3763899, 46.9412444 ], + [ 9.3763294, 46.9411154 ], + [ 9.3762103, 46.9409081 ], + [ 9.3760911, 46.9407232 ], + [ 9.3760214, 46.940521 ], + [ 9.3760098, 46.9403575 ], + [ 9.3760297, 46.9401601 ], + [ 9.3761088, 46.940007 ], + [ 9.3762453, 46.9398536 ], + [ 9.3764803, 46.9396991 ], + [ 9.3768052, 46.9395098 ], + [ 9.3773259, 46.9392396 ], + [ 9.377658, 46.9389996 ], + [ 9.3779338, 46.938839 ], + [ 9.3782166, 46.938622 ], + [ 9.3784931, 46.9384557 ], + [ 9.3786784, 46.9382905 ], + [ 9.3788648, 46.9381533 ], + [ 9.3789604, 46.9380058 ], + [ 9.3790465, 46.9377964 ], + [ 9.3791731, 46.9375753 ], + [ 9.3793144, 46.937280799999996 ], + [ 9.3794647, 46.9369861 ], + [ 9.3796312, 46.9366858 ], + [ 9.379773, 46.9364307 ], + [ 9.3798909, 46.9361702 ], + [ 9.3801172, 46.9359819 ], + [ 9.3802773, 46.9357774 ], + [ 9.3804212, 46.9355787 ], + [ 9.3805485, 46.9353745 ], + [ 9.3807256, 46.9352093 ], + [ 9.381, 46.934964 ], + [ 9.381233, 46.9347306 ], + [ 9.381565, 46.934468 ], + [ 9.3817331, 46.9342803 ], + [ 9.3818611, 46.9341212 ], + [ 9.3819896, 46.9339509 ], + [ 9.3820742, 46.933702 ], + [ 9.3822165, 46.9334355 ], + [ 9.382348499999999, 46.9330453 ], + [ 9.3824893, 46.9327395 ], + [ 9.3826002, 46.9325129 ], + [ 9.382711, 46.9323089 ], + [ 9.3828128, 46.932105 ], + [ 9.3829497, 46.9319401 ], + [ 9.3831344, 46.9317578 ], + [ 9.3833521, 46.9315358 ], + [ 9.3836597, 46.9313468 ], + [ 9.3838212, 46.9311817 ], + [ 9.3838986, 46.930983499999996 ], + [ 9.3840177, 46.930757 ], + [ 9.3841837, 46.9304678 ], + [ 9.3843183, 46.9302185 ], + [ 9.3844694, 46.9299914 ], + [ 9.3847205, 46.9298086 ], + [ 9.3848984, 46.9296658 ], + [ 9.3850505, 46.9294671 ], + [ 9.3852192, 46.9292962 ], + [ 9.3853723, 46.9291481 ], + [ 9.3854665, 46.9289612 ], + [ 9.3855927, 46.9287062 ], + [ 9.3856643, 46.9285758 ], + [ 9.3857917, 46.9283772 ], + [ 9.3859522, 46.9282291 ], + [ 9.3861447, 46.9279903 ], + [ 9.3863293, 46.9277856 ], + [ 9.386483, 46.9276545 ], + [ 9.386585, 46.9274562 ], + [ 9.3867026, 46.92719 ], + [ 9.3868136, 46.9269691 ], + [ 9.3869337, 46.9268156 ], + [ 9.3871842, 46.9266158 ], + [ 9.3874573, 46.9263368 ], + [ 9.3878592, 46.9258988 ], + [ 9.3881093, 46.9256877 ], + [ 9.3881889, 46.9255742 ], + [ 9.3883057, 46.9252855 ], + [ 9.3883977, 46.9249464 ], + [ 9.3885058, 46.9246465 ], + [ 9.388655, 46.9243238 ], + [ 9.3888134, 46.9240291 ], + [ 9.38898, 46.9237567 ], + [ 9.3891478, 46.9235184 ], + [ 9.3893411, 46.9233472 ], + [ 9.3895267, 46.9231707 ], + [ 9.3896462, 46.9230229 ], + [ 9.389789799999999, 46.9228185 ], + [ 9.3900161, 46.9226077 ], + [ 9.3903068, 46.922385 ], + [ 9.3905336, 46.922236 ], + [ 9.3908933, 46.9221254 ], + [ 9.3913107, 46.9220478 ], + [ 9.3917442, 46.9219589 ], + [ 9.3920964, 46.9218934 ], + [ 9.3924492, 46.9218898 ], + [ 9.3927682, 46.9218134 ], + [ 9.3931027, 46.9217141 ], + [ 9.39364, 46.921455 ], + [ 9.3933899, 46.9212828 ], + [ 9.3931805, 46.921099 ], + [ 9.3929613, 46.92087 ], + [ 9.3928259, 46.9206685 ], + [ 9.39264, 46.9204335 ], + [ 9.392479699999999, 46.920221 ], + [ 9.3923947, 46.9200979 ], + [ 9.3923336, 46.9199518 ], + [ 9.3923472, 46.9198051 ], + [ 9.3924274, 46.9197086 ], + [ 9.3925408, 46.9196228 ], + [ 9.3926372, 46.9195204 ], + [ 9.3927661, 46.9194064 ], + [ 9.393010199999999, 46.9193024 ], + [ 9.3934756, 46.9191681 ], + [ 9.3941816, 46.9187664 ], + [ 9.3944091, 46.9186345 ], + [ 9.3945627, 46.9185258 ], + [ 9.3946351, 46.9184405 ], + [ 9.3946585, 46.9183614 ], + [ 9.3947229, 46.9183043 ], + [ 9.3948772, 46.918235 ], + [ 9.3950316, 46.918149 ], + [ 9.3951767, 46.9180067 ], + [ 9.3953457, 46.917847 ], + [ 9.395441, 46.9177165 ], + [ 9.3954798, 46.9176089 ], + [ 9.3955182, 46.9174677 ], + [ 9.3954907, 46.9173439 ], + [ 9.3954402, 46.9172654 ], + [ 9.3953487, 46.9172325 ], + [ 9.3952322, 46.9171661 ], + [ 9.3950747, 46.9171 ], + [ 9.39495, 46.9170337 ], + [ 9.3947679, 46.9169679 ], + [ 9.394659, 46.9168619 ], + [ 9.394485, 46.9168185 ], + [ 9.3942223, 46.9168155 ], + [ 9.3939509, 46.9168013 ], + [ 9.3937524, 46.9167357 ], + [ 9.3935286, 46.9166535 ], + [ 9.3932964, 46.9165656 ], + [ 9.3931469, 46.9164713 ], + [ 9.3931434, 46.9163303 ], + [ 9.3930591, 46.9162241 ], + [ 9.3930009, 46.9161795 ], + [ 9.3929654, 46.9160841 ], + [ 9.3927974, 46.9159111 ], + [ 9.3926797, 46.9157883 ], + [ 9.3925944, 46.9156313 ], + [ 9.3926073, 46.9154452 ], + [ 9.3927093, 46.9152467 ], + [ 9.3928217, 46.9151104 ], + [ 9.3929419, 46.9149852 ], + [ 9.3931524, 46.9148365 ], + [ 9.3933725, 46.9147497 ], + [ 9.393642, 46.914668 ], + [ 9.3938953, 46.9145923 ], + [ 9.3940911, 46.9145169 ], + [ 9.3938348, 46.9144631 ], + [ 9.3936118, 46.914426 ], + [ 9.3932833, 46.9143955 ], + [ 9.3929358, 46.914320000000004 ], + [ 9.3925972, 46.9142164 ], + [ 9.3923243, 46.9141346 ], + [ 9.392001, 46.9140251 ], + [ 9.3917279, 46.913915 ], + [ 9.391499, 46.913985 ], + [ 9.3913273, 46.9140037 ], + [ 9.391138, 46.9140112 ], + [ 9.3909985, 46.9140125 ], + [ 9.3908344, 46.9140142 ], + [ 9.3906874, 46.9140551 ], + [ 9.3905493, 46.9141186 ], + [ 9.3903206, 46.9141942 ], + [ 9.3901652, 46.9142295 ], + [ 9.3899607, 46.9142711 ], + [ 9.3897968, 46.9142784 ], + [ 9.3896321, 46.9142857 ], + [ 9.3895008, 46.9142869 ], + [ 9.3893944, 46.9142937 ], + [ 9.3892959, 46.9143171 ], + [ 9.389206099999999, 46.914352 ], + [ 9.3891083, 46.9143923 ], + [ 9.3890022, 46.9144103 ], + [ 9.388904, 46.9144169 ], + [ 9.3887721, 46.9144014 ], + [ 9.388608, 46.914403 ], + [ 9.3884763, 46.9144156 ], + [ 9.3883455, 46.9144507 ], + [ 9.3881664, 46.9145145 ], + [ 9.3878218, 46.9145406 ], + [ 9.3873868, 46.9145618 ], + [ 9.3871397, 46.9145361 ], + [ 9.3867036, 46.9145067 ], + [ 9.3863913, 46.9145155 ], + [ 9.3860301, 46.914536 ], + [ 9.3859142, 46.9144864 ], + [ 9.3857067, 46.9143984 ], + [ 9.3855414, 46.914321 ], + [ 9.3853096, 46.9142444 ], + [ 9.3850623, 46.9142131 ], + [ 9.3848876, 46.9141246 ], + [ 9.3845502, 46.9140772 ], + [ 9.3839487, 46.9140326 ], + [ 9.3834318, 46.9140377 ], + [ 9.3829798, 46.9140423 ], + [ 9.3825369, 46.9140974 ], + [ 9.3820605, 46.9141079 ], + [ 9.3817079, 46.9141396 ], + [ 9.3814206, 46.9141367 ], + [ 9.3811342, 46.9141847 ], + [ 9.3809217, 46.9142544 ], + [ 9.380726, 46.9143354 ], + [ 9.3805634, 46.914399 ], + [ 9.3803587, 46.9144574 ], + [ 9.3801292, 46.9144653 ], + [ 9.3799745, 46.9145233 ], + [ 9.3795937, 46.9147751 ], + [ 9.3794228, 46.9148838 ], + [ 9.379251, 46.9148969 ], + [ 9.3790795, 46.9149661 ], + [ 9.3789252, 46.9150354 ], + [ 9.3787205, 46.9150712 ], + [ 9.3785798, 46.9150389 ], + [ 9.3784079, 46.9150518 ], + [ 9.3783019, 46.9150924 ], + [ 9.378203599999999, 46.9151214 ], + [ 9.3781054, 46.915128 ], + [ 9.3779741, 46.9151294 ], + [ 9.37772, 46.9151826 ], + [ 9.3775981, 46.9152176 ], + [ 9.3774663, 46.9152021 ], + [ 9.3772929, 46.9151757 ], + [ 9.37703, 46.9151895 ], + [ 9.3768167, 46.9152141 ], + [ 9.3765866, 46.9151826 ], + [ 9.3764559, 46.9152234 ], + [ 9.3763254, 46.9152698 ], + [ 9.3761689, 46.915277 ], + [ 9.3760315, 46.9153573 ], + [ 9.3759008, 46.9154205 ], + [ 9.375680299999999, 46.9154735 ], + [ 9.3752585, 46.9157257 ], + [ 9.3750938, 46.9157105 ], + [ 9.3749623, 46.9157061 ], + [ 9.374766, 46.9157475 ], + [ 9.3746356, 46.9158165 ], + [ 9.3744493, 46.915931 ], + [ 9.3742536, 46.9159893 ], + [ 9.3741229, 46.9160526 ], + [ 9.3739846, 46.9161104 ], + [ 9.3738636, 46.9162131 ], + [ 9.3737823, 46.9162589 ], + [ 9.3737003, 46.9162597 ], + [ 9.3736016, 46.9162551 ], + [ 9.3734792, 46.9162958 ], + [ 9.3733569, 46.9163421 ], + [ 9.3732418, 46.9163601 ], + [ 9.3730775, 46.9163561 ], + [ 9.3728632, 46.9163301 ], + [ 9.3725502, 46.9162994 ], + [ 9.3722555, 46.9163418 ], + [ 9.3721646, 46.9163031 ], + [ 9.3719415, 46.9162603 ], + [ 9.371686799999999, 46.9162289 ], + [ 9.3713826, 46.9162376 ], + [ 9.370965, 46.9163094 ], + [ 9.3707198, 46.9163625 ], + [ 9.3705633, 46.9163698 ], + [ 9.370399, 46.9163657 ], + [ 9.3701291, 46.9164135 ], + [ 9.3698093, 46.9164448 ], + [ 9.3694247, 46.9165219 ], + [ 9.3691133, 46.9165814 ], + [ 9.3688918, 46.9165836 ], + [ 9.3685088, 46.9167282 ], + [ 9.3683287, 46.9167639 ], + [ 9.3682732, 46.9168659 ], + [ 9.368315, 46.9169105 ], + [ 9.3676621, 46.9171255 ], + [ 9.3675162, 46.917200199999996 ], + [ 9.3673611, 46.9172695 ], + [ 9.3672064, 46.9173273 ], + [ 9.3670423, 46.9173515 ], + [ 9.3669034, 46.9173923 ], + [ 9.3667645, 46.9174332 ], + [ 9.3665434, 46.9174466 ], + [ 9.3663711, 46.9174709 ], + [ 9.3660049, 46.9176491 ], + [ 9.365958299999999, 46.9177455 ], + [ 9.3658352, 46.9177917 ], + [ 9.3657633, 46.9178714 ], + [ 9.3657327, 46.9179788 ], + [ 9.3657177, 46.9180635 ], + [ 9.3656296, 46.9181489 ], + [ 9.3655414, 46.9182512 ], + [ 9.3654447, 46.9183707 ], + [ 9.3653572, 46.9184954 ], + [ 9.3652778, 46.9186372 ], + [ 9.3651001, 46.918763 ], + [ 9.36493, 46.9188717 ], + [ 9.3647432, 46.9189976 ], + [ 9.3646145, 46.919139799999996 ], + [ 9.3643393, 46.9193398 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "JBG0015", + "country" : "CHE", + "name" : [ + { + "text" : "Eidgenössisches Jagdbanngebiet Graue Hörner", + "lang" : "de-CH" + }, + { + "text" : "District franc fédéral Graue Hörner", + "lang" : "fr-CH" + }, + { + "text" : "Bandita federale di caccia Graue Hörner", + "lang" : "it-CH" + }, + { + "text" : "Federal Game Reserve Graue Hörner", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.3303479, 47.4416947 ], + [ 7.3303963, 47.4413867 ], + [ 7.3305877, 47.4413968 ], + [ 7.3307462, 47.4413972 ], + [ 7.3307877999999995, 47.4415163 ], + [ 7.3310166, 47.4414024 ], + [ 7.3312426, 47.4412884 ], + [ 7.3314376, 47.4412403 ], + [ 7.3315947, 47.4412301 ], + [ 7.3317082, 47.4412871 ], + [ 7.3318539, 47.441309 ], + [ 7.3322109, 47.4412466 ], + [ 7.3325724, 47.4410405 ], + [ 7.3326007, 47.4410381 ], + [ 7.3328729, 47.4410155 ], + [ 7.3329456, 47.4410377 ], + [ 7.3331292999999995, 47.4410351 ], + [ 7.333289, 47.4410446 ], + [ 7.3334202, 47.4410386 ], + [ 7.3335033, 47.4410363 ], + [ 7.3336493, 47.4410195 ], + [ 7.3338393, 47.4409913 ], + [ 7.3341914, 47.4409645 ], + [ 7.3342817, 47.4409581 ], + [ 7.3343755, 47.440936 ], + [ 7.3344044, 47.4409292 ], + [ 7.3350292, 47.4408528 ], + [ 7.3352135, 47.4408399 ], + [ 7.3354019, 47.4408316 ], + [ 7.3354644, 47.4408306 ], + [ 7.3356031999999995, 47.4408315 ], + [ 7.3356427, 47.4408281 ], + [ 7.3358357, 47.4408147 ], + [ 7.3360737, 47.4408006 ], + [ 7.3362842, 47.4407698 ], + [ 7.3365684, 47.4407474 ], + [ 7.3367678, 47.4407396 ], + [ 7.3370356, 47.4407484 ], + [ 7.3372065, 47.4407657 ], + [ 7.3372806, 47.4407768 ], + [ 7.337353, 47.4408003 ], + [ 7.3374681, 47.4408198 ], + [ 7.3376034, 47.4408554 ], + [ 7.337669, 47.4409024 ], + [ 7.3377513, 47.4409559 ], + [ 7.3378014, 47.4409779 ], + [ 7.3378584, 47.4409979 ], + [ 7.3379192, 47.4410031 ], + [ 7.3379908, 47.440998 ], + [ 7.3380413, 47.4409875 ], + [ 7.3380615, 47.4409756 ], + [ 7.3380980000000005, 47.4409508 ], + [ 7.3381492, 47.4409022 ], + [ 7.3382013, 47.4408513 ], + [ 7.3382557, 47.4407903 ], + [ 7.3383047999999995, 47.4407135 ], + [ 7.3383331, 47.4406468 ], + [ 7.3383545, 47.4406052 ], + [ 7.3383725, 47.4405942 ], + [ 7.3383821, 47.4405381 ], + [ 7.3384375, 47.4402126 ], + [ 7.3384867, 47.4401154 ], + [ 7.3386046, 47.4399001 ], + [ 7.3388623, 47.4395169 ], + [ 7.3387205, 47.4394393 ], + [ 7.3383253, 47.4398543 ], + [ 7.3379192, 47.439655 ], + [ 7.3376127, 47.4394617 ], + [ 7.3368696, 47.4390227 ], + [ 7.3364176, 47.4388963 ], + [ 7.3360546, 47.4387596 ], + [ 7.3354797, 47.4384539 ], + [ 7.3350521, 47.4382635 ], + [ 7.3347578, 47.4381574 ], + [ 7.3343537, 47.4379556 ], + [ 7.3328725, 47.4373909 ], + [ 7.332744, 47.4373233 ], + [ 7.3325476, 47.4373477 ], + [ 7.3316842, 47.4374032 ], + [ 7.3305474, 47.4372763 ], + [ 7.3300244, 47.4371253 ], + [ 7.3299653, 47.4371082 ], + [ 7.3297168, 47.4373102 ], + [ 7.3285007, 47.4372912 ], + [ 7.3280983, 47.4374697 ], + [ 7.3283528, 47.4377656 ], + [ 7.3284264, 47.4379296 ], + [ 7.3283878, 47.43807 ], + [ 7.3282446, 47.4382628 ], + [ 7.3281241999999995, 47.4383941 ], + [ 7.3280024, 47.4385745 ], + [ 7.3279455, 47.4387866 ], + [ 7.3279593, 47.4389268 ], + [ 7.3280538, 47.4391733 ], + [ 7.328177, 47.4393522 ], + [ 7.328023, 47.4397208 ], + [ 7.3282345, 47.4400047 ], + [ 7.3283122, 47.4400739 ], + [ 7.3286235, 47.4403412 ], + [ 7.3290075, 47.4406837 ], + [ 7.3289444, 47.4407282 ], + [ 7.3286664, 47.4409241 ], + [ 7.3287543, 47.4409142 ], + [ 7.3288673, 47.4409282 ], + [ 7.3289670000000005, 47.4409452 ], + [ 7.3291561, 47.4407898 ], + [ 7.3293665, 47.4406161 ], + [ 7.3295144, 47.4406686 ], + [ 7.3293776, 47.4408567 ], + [ 7.3292363, 47.4410509 ], + [ 7.3293061, 47.441081 ], + [ 7.3294546, 47.4411727 ], + [ 7.3294587, 47.4411752 ], + [ 7.3296691, 47.4412674 ], + [ 7.3297952, 47.4409805 ], + [ 7.329885, 47.4407721 ], + [ 7.3300598, 47.4408191 ], + [ 7.3299872, 47.4410381 ], + [ 7.3299766, 47.4410741 ], + [ 7.3298815, 47.4413522 ], + [ 7.3299834, 47.4413591 ], + [ 7.3298522, 47.4415959 ], + [ 7.3299119, 47.4416338 ], + [ 7.3301187, 47.4417025 ], + [ 7.3303479, 47.4416947 ] + ], + [ + [ 7.3309424, 47.4410461 ], + [ 7.3308042, 47.441084 ], + [ 7.3305333, 47.4411516 ], + [ 7.3306075, 47.4409695 ], + [ 7.3314070000000005, 47.440915 ], + [ 7.332151, 47.4408877 ], + [ 7.3325922, 47.4410186 ], + [ 7.3320637, 47.4410488 ], + [ 7.331565, 47.4411799 ], + [ 7.3313152, 47.4412425 ], + [ 7.3312102, 47.4412804 ], + [ 7.3310863, 47.4410092 ], + [ 7.3309424, 47.4410461 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns325", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Gebstelli", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Gebstelli", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Gebstelli", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Gebstelli", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5272151, 47.439788 ], + [ 7.5272480999999996, 47.4397984 ], + [ 7.5272809, 47.439809 ], + [ 7.5273135, 47.43982 ], + [ 7.5273458, 47.4398313 ], + [ 7.5274762, 47.4398636 ], + [ 7.5275428, 47.4398871 ], + [ 7.5276105, 47.4399091 ], + [ 7.5276793, 47.4399296 ], + [ 7.5284576, 47.4401518 ], + [ 7.529342, 47.4404049 ], + [ 7.5294297, 47.4402957 ], + [ 7.5289564, 47.440174999999996 ], + [ 7.5287977999999995, 47.4401338 ], + [ 7.5285423, 47.4400549 ], + [ 7.5285177999999995, 47.4400481 ], + [ 7.5281903, 47.4399446 ], + [ 7.5278675, 47.4398498 ], + [ 7.5275418, 47.4397569 ], + [ 7.5272869, 47.439684 ], + [ 7.5272151, 47.439788 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns059", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Hart", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Hart", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Hart", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Hart", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6972456000000005, 47.4543446 ], + [ 7.6971101, 47.4543642 ], + [ 7.696855, 47.4545162 ], + [ 7.6970577, 47.4548509 ], + [ 7.6972725, 47.4552056 ], + [ 7.6973164, 47.4551993 ], + [ 7.6973787, 47.4552032 ], + [ 7.6974157, 47.4552205 ], + [ 7.6974442, 47.455231 ], + [ 7.6974748, 47.4552418 ], + [ 7.6974966, 47.4552404 ], + [ 7.697532, 47.4552414 ], + [ 7.6977046, 47.4552488 ], + [ 7.6977014, 47.4550184 ], + [ 7.6976057, 47.4543365 ], + [ 7.6975336, 47.4543195 ], + [ 7.6974417, 47.4543211 ], + [ 7.6972456000000005, 47.4543446 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns093", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Stegmatten", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Stegmatten", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Stegmatten", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Stegmatten", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.3799548, 46.5549487 ], + [ 7.3796537, 46.5549161 ], + [ 7.3796917, 46.5547129 ], + [ 7.3789706, 46.5546666 ], + [ 7.3788762, 46.5551703 ], + [ 7.3795933, 46.5552489 ], + [ 7.379609, 46.5551842 ], + [ 7.3806795, 46.5552882 ], + [ 7.380875, 46.5541935 ], + [ 7.381566, 46.5542604 ], + [ 7.381638, 46.5539942 ], + [ 7.3809261, 46.5539165 ], + [ 7.3810796, 46.5530566 ], + [ 7.3820483, 46.5531533 ], + [ 7.3820343, 46.5528619 ], + [ 7.3818886, 46.5525955 ], + [ 7.3811741, 46.5525187 ], + [ 7.3816567, 46.5498635 ], + [ 7.3824286, 46.5499422 ], + [ 7.3824991, 46.5497992 ], + [ 7.3825293, 46.5496481 ], + [ 7.3824553, 46.5493035 ], + [ 7.3822483, 46.5489805 ], + [ 7.38201, 46.5487321 ], + [ 7.3817274, 46.5483586 ], + [ 7.3816389000000004, 46.5482254 ], + [ 7.3815114, 46.547996 ], + [ 7.3814113, 46.5477576 ], + [ 7.38128, 46.5473743 ], + [ 7.3807645, 46.5477878 ], + [ 7.3810447, 46.5479688 ], + [ 7.3811748, 46.5481982 ], + [ 7.3809716, 46.5492695 ], + [ 7.3796222, 46.5491438 ], + [ 7.3793212, 46.5489664 ], + [ 7.3789153, 46.5492972 ], + [ 7.3791225, 46.5494268 ], + [ 7.3790651, 46.5494718 ], + [ 7.3793322, 46.5496339 ], + [ 7.3795958, 46.5494217 ], + [ 7.3809191, 46.5495708 ], + [ 7.3799548, 46.5549487 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSTZ002", + "country" : "CHE", + "name" : [ + { + "text" : "LSTZ Zweisimmen (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSTZ Zweisimmen (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSTZ Zweisimmen (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSTZ Zweisimmen (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Flugplatzgenosenschaft Zweisimmen FGZ", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzgenosenschaft Zweisimmen FGZ", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzgenosenschaft Zweisimmen FGZ", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzgenosenschaft Zweisimmen FGZ", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Roland Ginggen", + "lang" : "de-CH" + }, + { + "text" : "Roland Ginggen", + "lang" : "fr-CH" + }, + { + "text" : "Roland Ginggen", + "lang" : "it-CH" + }, + { + "text" : "Roland Ginggen", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.zweisimmen.aero/modellflug-und-drohnen/", + "email" : "info@zweisimmen.aero", + "phone" : "0041337222577", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.568972, 47.419991 ], + [ 7.5685696, 47.4203485 ], + [ 7.5689939, 47.420403 ], + [ 7.5693553, 47.4202587 ], + [ 7.5696234, 47.4200609 ], + [ 7.5703668, 47.4196939 ], + [ 7.5705712, 47.4195315 ], + [ 7.5706869999999995, 47.4194247 ], + [ 7.5710892, 47.419137 ], + [ 7.5715435, 47.4189211 ], + [ 7.5721204, 47.4187854 ], + [ 7.572193, 47.418181 ], + [ 7.5724302, 47.4174577 ], + [ 7.5722185, 47.4174533 ], + [ 7.5717956, 47.4176253 ], + [ 7.5714752, 47.4178157 ], + [ 7.5709907, 47.4179599 ], + [ 7.5706086, 47.4180855 ], + [ 7.5703359, 47.4182387 ], + [ 7.5700764, 47.4182344 ], + [ 7.5700721, 47.4182407 ], + [ 7.569618, 47.4189075 ], + [ 7.5694966, 47.419455 ], + [ 7.568972, 47.419991 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr113", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Littstall", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Littstall", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Littstall", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Littstall", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.5304308, 47.374901 ], + [ 8.5304225, 47.3747599 ], + [ 8.5304033, 47.3746192 ], + [ 8.5303733, 47.3744794 ], + [ 8.5303325, 47.3743409 ], + [ 8.5302812, 47.374204 ], + [ 8.5302193, 47.3740691 ], + [ 8.5301472, 47.3739366 ], + [ 8.530065, 47.3738069 ], + [ 8.5299728, 47.3736803 ], + [ 8.5298711, 47.3735571 ], + [ 8.52976, 47.3734377 ], + [ 8.5296398, 47.3733224 ], + [ 8.5295109, 47.3732115 ], + [ 8.5293737, 47.3731053 ], + [ 8.5292285, 47.3730042 ], + [ 8.5290756, 47.3729084 ], + [ 8.5289156, 47.3728182 ], + [ 8.5287489, 47.3727338 ], + [ 8.5285759, 47.3726554 ], + [ 8.5283971, 47.3725832 ], + [ 8.528213, 47.3725176 ], + [ 8.5280241, 47.3724585 ], + [ 8.5278309, 47.3724063 ], + [ 8.5276339, 47.372361 ], + [ 8.5274337, 47.3723227 ], + [ 8.5272309, 47.3722917 ], + [ 8.5270259, 47.3722679 ], + [ 8.5268194, 47.3722514 ], + [ 8.5266119, 47.3722422 ], + [ 8.5264039, 47.3722405 ], + [ 8.5261961, 47.3722462 ], + [ 8.5259891, 47.3722592 ], + [ 8.5257833, 47.3722796 ], + [ 8.5255794, 47.3723072 ], + [ 8.5253779, 47.3723421 ], + [ 8.5251793, 47.3723841 ], + [ 8.5249843, 47.3724331 ], + [ 8.5247933, 47.372489 ], + [ 8.5246069, 47.3725515 ], + [ 8.5244255, 47.3726207 ], + [ 8.5242497, 47.3726961 ], + [ 8.52408, 47.3727778 ], + [ 8.5239168, 47.3728653 ], + [ 8.5237605, 47.3729585 ], + [ 8.5236117, 47.3730572 ], + [ 8.5234706, 47.373161 ], + [ 8.5233378, 47.3732697 ], + [ 8.5232135, 47.3733829 ], + [ 8.5230981, 47.3735004 ], + [ 8.5229919, 47.3736219 ], + [ 8.5228952, 47.3737469 ], + [ 8.5228083, 47.3738753 ], + [ 8.5227313, 47.3740065 ], + [ 8.5226646, 47.3741403 ], + [ 8.5226083, 47.3742763 ], + [ 8.5225626, 47.3744141 ], + [ 8.5225275, 47.3745534 ], + [ 8.5225032, 47.3746937 ], + [ 8.5224898, 47.3748346 ], + [ 8.5224872, 47.3749759 ], + [ 8.5224955, 47.375117 ], + [ 8.5225147, 47.3752577 ], + [ 8.5225447, 47.3753975 ], + [ 8.5225854, 47.375536 ], + [ 8.5226368, 47.3756729 ], + [ 8.5226986, 47.3758078 ], + [ 8.5227707, 47.3759403 ], + [ 8.5228529, 47.37607 ], + [ 8.522945, 47.3761967 ], + [ 8.5230468, 47.3763199 ], + [ 8.5231579, 47.3764393 ], + [ 8.5232781, 47.3765546 ], + [ 8.5234069, 47.3766655 ], + [ 8.5235442, 47.3767716 ], + [ 8.5236894, 47.3768728 ], + [ 8.5238422, 47.3769686 ], + [ 8.5240022, 47.3770588 ], + [ 8.5241689, 47.3771433 ], + [ 8.5243419, 47.3772216 ], + [ 8.5245208, 47.3772938 ], + [ 8.5247049, 47.3773595 ], + [ 8.5248938, 47.3774185 ], + [ 8.525087, 47.3774708 ], + [ 8.525284, 47.3775161 ], + [ 8.5254842, 47.3775543 ], + [ 8.5256871, 47.3775854 ], + [ 8.5258921, 47.3776092 ], + [ 8.5260986, 47.3776257 ], + [ 8.5263062, 47.3776348 ], + [ 8.5265141, 47.3776366 ], + [ 8.5267219, 47.3776309 ], + [ 8.526928999999999, 47.3776179 ], + [ 8.5271348, 47.3775975 ], + [ 8.5273387, 47.3775698 ], + [ 8.5275403, 47.3775349 ], + [ 8.5277388, 47.3774929 ], + [ 8.5279339, 47.3774439 ], + [ 8.5281249, 47.3773881 ], + [ 8.5283114, 47.3773255 ], + [ 8.5284927, 47.3772564 ], + [ 8.5286685, 47.3771809 ], + [ 8.5288383, 47.3770993 ], + [ 8.5290015, 47.3770117 ], + [ 8.5291577, 47.3769185 ], + [ 8.5293066, 47.3768198 ], + [ 8.5294476, 47.376716 ], + [ 8.5295805, 47.3766073 ], + [ 8.5297048, 47.3764941 ], + [ 8.5298202, 47.3763766 ], + [ 8.5299263, 47.3762551 ], + [ 8.530023, 47.37613 ], + [ 8.5301099, 47.3760017 ], + [ 8.5301868, 47.3758704 ], + [ 8.5302535, 47.3757366 ], + [ 8.5303098, 47.3756006 ], + [ 8.5303555, 47.3754628 ], + [ 8.5303906, 47.3753236 ], + [ 8.530414799999999, 47.3751833 ], + [ 8.5304283, 47.3750423 ], + [ 8.5304308, 47.374901 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "ZBG0001", + "country" : "CHE", + "name" : [ + { + "text" : "Gefängnis Zürich", + "lang" : "de-CH" + }, + { + "text" : "Gefängnis Zürich", + "lang" : "fr-CH" + }, + { + "text" : "Gefängnis Zürich", + "lang" : "it-CH" + }, + { + "text" : "Gefängnis Zürich", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "de-CH" + }, + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "fr-CH" + }, + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "it-CH" + }, + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "de-CH" + }, + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "fr-CH" + }, + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "it-CH" + }, + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Reno Berner", + "lang" : "de-CH" + }, + { + "text" : "Reno Berner", + "lang" : "fr-CH" + }, + { + "text" : "Reno Berner", + "lang" : "it-CH" + }, + { + "text" : "Reno Berner", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.zh.ch/de/direktion-der-justiz-und-des-innern/justizvollzug-wiedereingliederung.html", + "email" : "sicherheit-juwe@ji.zh.ch", + "phone" : "0041432583400", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT12H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6305733, 47.5007342 ], + [ 7.6304824, 47.5008559 ], + [ 7.6306088, 47.5009729 ], + [ 7.6307365, 47.5011164 ], + [ 7.6309149, 47.501208 ], + [ 7.6311782, 47.5013225 ], + [ 7.6313312, 47.5014257 ], + [ 7.6315943, 47.5015827 ], + [ 7.632, 47.5018567 ], + [ 7.6321509, 47.5019887 ], + [ 7.6322814999999995, 47.5021317 ], + [ 7.6323675, 47.5023023 ], + [ 7.6324486, 47.5025212 ], + [ 7.6324956, 47.5024955 ], + [ 7.6325479, 47.5024751 ], + [ 7.6325963, 47.5024651 ], + [ 7.6326466, 47.502461 ], + [ 7.6327346, 47.502461 ], + [ 7.6328221, 47.5024679 ], + [ 7.6331467, 47.5025171 ], + [ 7.6332492, 47.5025301 ], + [ 7.6333519, 47.5025418 ], + [ 7.6334565, 47.5025507 ], + [ 7.6335619, 47.5025526 ], + [ 7.6336262999999995, 47.502549 ], + [ 7.6336899, 47.5025413 ], + [ 7.6337521, 47.5025293 ], + [ 7.6338123, 47.5025132 ], + [ 7.6338477000000005, 47.5024985 ], + [ 7.6338814, 47.5024819 ], + [ 7.6339428, 47.5024439 ], + [ 7.6340594, 47.5023678 ], + [ 7.634108, 47.5023441 ], + [ 7.6341594, 47.5023233 ], + [ 7.6342132, 47.5023056 ], + [ 7.634269, 47.502291 ], + [ 7.6344978, 47.5022405 ], + [ 7.6345856, 47.5022182 ], + [ 7.6346691, 47.5021894 ], + [ 7.6347474, 47.5021544 ], + [ 7.6348194, 47.5021137 ], + [ 7.6348672, 47.5020775 ], + [ 7.63491, 47.5020386 ], + [ 7.6349475, 47.5019972 ], + [ 7.6349792, 47.5019536 ], + [ 7.6350325, 47.5018762 ], + [ 7.6350776, 47.5017963 ], + [ 7.6352525, 47.5014515 ], + [ 7.6353235, 47.501308 ], + [ 7.635395, 47.5011647 ], + [ 7.6355508, 47.500881 ], + [ 7.6355728, 47.5008622 ], + [ 7.635592, 47.500842 ], + [ 7.6356082, 47.5008206 ], + [ 7.6356212, 47.5007984 ], + [ 7.6356285, 47.5007789 ], + [ 7.6356327, 47.500759 ], + [ 7.635634, 47.5007389 ], + [ 7.6356322, 47.5007188 ], + [ 7.6356322, 47.5007187 ], + [ 7.6356315, 47.5007146 ], + [ 7.6356307999999995, 47.5007112 ], + [ 7.6354669, 47.5007309 ], + [ 7.6349456, 47.5007938 ], + [ 7.6347728, 47.5008147 ], + [ 7.6343216, 47.5008332 ], + [ 7.6337769, 47.5008555 ], + [ 7.6335614, 47.5008643 ], + [ 7.6333161, 47.5009414 ], + [ 7.6331366, 47.5009978 ], + [ 7.6329408999999995, 47.5010593 ], + [ 7.6329364, 47.5010627 ], + [ 7.6329073, 47.5010549 ], + [ 7.6326422, 47.5009839 ], + [ 7.6323098, 47.5008949 ], + [ 7.6320762, 47.5008323 ], + [ 7.6319157, 47.5007791 ], + [ 7.6315579, 47.5006605 ], + [ 7.6313906, 47.500605 ], + [ 7.6311271, 47.500559 ], + [ 7.6310167, 47.5005398 ], + [ 7.6308635, 47.5005131 ], + [ 7.6308213, 47.5005323 ], + [ 7.6306742, 47.500599 ], + [ 7.6305733, 47.5007342 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr050", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Meierten", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Meierten", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Meierten", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Meierten", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7183288, 47.5348197 ], + [ 7.7183875, 47.5347999 ], + [ 7.7185366, 47.5347496 ], + [ 7.7187391, 47.5346802 ], + [ 7.7187631, 47.5346736 ], + [ 7.7187873, 47.5346676 ], + [ 7.7188118, 47.5346622 ], + [ 7.7188365999999995, 47.5346573 ], + [ 7.7188617, 47.534653 ], + [ 7.7188869, 47.5346493 ], + [ 7.7189122999999995, 47.5346461 ], + [ 7.7189353, 47.5346438 ], + [ 7.7189584, 47.534642 ], + [ 7.7189816, 47.5346407 ], + [ 7.7190048, 47.5346398 ], + [ 7.7190281, 47.5346394 ], + [ 7.7190514, 47.5346396 ], + [ 7.7190746, 47.5346402 ], + [ 7.7190978, 47.5346412 ], + [ 7.7191157, 47.5346431 ], + [ 7.7191335, 47.5346456 ], + [ 7.719151, 47.5346487 ], + [ 7.7191683, 47.5346525 ], + [ 7.7191852, 47.5346568 ], + [ 7.7192019, 47.5346616 ], + [ 7.7192181, 47.5346671 ], + [ 7.719234, 47.534673 ], + [ 7.7192492999999995, 47.5346795 ], + [ 7.7192642, 47.5346866 ], + [ 7.7192783, 47.5346941 ], + [ 7.7192918, 47.534702 ], + [ 7.7193047, 47.5347105 ], + [ 7.719317, 47.5347193 ], + [ 7.7193286, 47.5347285 ], + [ 7.7193395, 47.5347382 ], + [ 7.7193497, 47.5347481 ], + [ 7.7193591999999995, 47.5347585 ], + [ 7.7193679, 47.5347691 ], + [ 7.7193758, 47.53478 ], + [ 7.7193844, 47.5347928 ], + [ 7.7193923, 47.5348058 ], + [ 7.7193995, 47.534819 ], + [ 7.7194061, 47.5348323 ], + [ 7.7194119, 47.5348458 ], + [ 7.719417, 47.5348594 ], + [ 7.7194214, 47.5348731 ], + [ 7.7194251, 47.534887 ], + [ 7.7194281, 47.5349009 ], + [ 7.7194302, 47.5349147 ], + [ 7.7194316, 47.5349285 ], + [ 7.7194323, 47.5349424 ], + [ 7.7194323, 47.5349563 ], + [ 7.7194316, 47.5349702 ], + [ 7.7194301, 47.534984 ], + [ 7.719428, 47.5349978 ], + [ 7.7193584, 47.5351206 ], + [ 7.7193191, 47.5351851 ], + [ 7.7192241, 47.5353009 ], + [ 7.7191713, 47.5353672 ], + [ 7.7191374, 47.535427 ], + [ 7.7190842, 47.5354998 ], + [ 7.7190255, 47.5355573 ], + [ 7.7190171, 47.5355663 ], + [ 7.7190405, 47.535569100000004 ], + [ 7.7189805, 47.5356567 ], + [ 7.7189575, 47.5356536 ], + [ 7.7189559, 47.535656 ], + [ 7.7188877, 47.5356466 ], + [ 7.7188829, 47.5356522 ], + [ 7.7188615, 47.5356851 ], + [ 7.7187331, 47.5358451 ], + [ 7.7186942, 47.5358726 ], + [ 7.7186294, 47.5358963 ], + [ 7.7185308, 47.535901 ], + [ 7.7185062, 47.5359045 ], + [ 7.7184666, 47.5359127 ], + [ 7.7184283, 47.5359192 ], + [ 7.7183755, 47.5359314 ], + [ 7.7183227, 47.5359371 ], + [ 7.7182364, 47.5359484 ], + [ 7.718125, 47.5359615 ], + [ 7.7179006, 47.5359576 ], + [ 7.7177477, 47.5359455 ], + [ 7.717541, 47.5358054 ], + [ 7.7175268, 47.5358019 ], + [ 7.7174768, 47.5357867 ], + [ 7.7174286, 47.535769 ], + [ 7.7172981, 47.5357036 ], + [ 7.7172281, 47.5356752 ], + [ 7.7171594, 47.5356565 ], + [ 7.7170156, 47.5356175 ], + [ 7.7169402, 47.5356034 ], + [ 7.7168634, 47.5355932 ], + [ 7.7167857, 47.535587 ], + [ 7.7167599, 47.5355864 ], + [ 7.7167341, 47.5355876 ], + [ 7.7167086, 47.5355905 ], + [ 7.7166477, 47.5355987 ], + [ 7.7165865, 47.5356053 ], + [ 7.7165249, 47.5356103 ], + [ 7.7164971, 47.5356121 ], + [ 7.7164392, 47.5356146 ], + [ 7.7163813999999995, 47.5356157 ], + [ 7.7163234, 47.5356154 ], + [ 7.7162495, 47.5356243 ], + [ 7.7162306, 47.5356266 ], + [ 7.7162119, 47.5356293 ], + [ 7.7161932, 47.5356322 ], + [ 7.7161661, 47.5356371 ], + [ 7.7161392, 47.5356425 ], + [ 7.7161127, 47.5356486 ], + [ 7.7160672, 47.5356562 ], + [ 7.7160228, 47.5356663 ], + [ 7.7159663, 47.535683399999996 ], + [ 7.7159251, 47.5356992 ], + [ 7.7158922, 47.5357143 ], + [ 7.7158609, 47.5357309 ], + [ 7.7157845, 47.5357721 ], + [ 7.7156814, 47.5358317 ], + [ 7.7156021, 47.5358828 ], + [ 7.7155116, 47.5359393 ], + [ 7.7153808, 47.536007 ], + [ 7.7153086, 47.5360552 ], + [ 7.7152367, 47.5361035 ], + [ 7.7151651, 47.5361521 ], + [ 7.7151399, 47.5361693 ], + [ 7.7151147, 47.5361865 ], + [ 7.7150896, 47.5362037 ], + [ 7.7149739, 47.5363103 ], + [ 7.7147922, 47.5364794 ], + [ 7.7147099, 47.536566 ], + [ 7.7146628, 47.5366259 ], + [ 7.7146172, 47.5366863 ], + [ 7.714573, 47.5367473 ], + [ 7.714525, 47.5368165 ], + [ 7.7144788, 47.5368863 ], + [ 7.7144345, 47.5369567 ], + [ 7.7143672, 47.5370415 ], + [ 7.7143577, 47.537078 ], + [ 7.7143239999999995, 47.5371187 ], + [ 7.7142937, 47.537168199999996 ], + [ 7.7142712, 47.5372118 ], + [ 7.7142474, 47.5372415 ], + [ 7.7142219999999995, 47.5372706 ], + [ 7.714195, 47.537299 ], + [ 7.7141735, 47.5373201 ], + [ 7.7141512, 47.5373408 ], + [ 7.714128, 47.5373611 ], + [ 7.7140958, 47.5373883 ], + [ 7.7140914, 47.5373969 ], + [ 7.7141874, 47.537417 ], + [ 7.7141501, 47.5374606 ], + [ 7.7140909, 47.5375311 ], + [ 7.7140535, 47.5375732 ], + [ 7.7140204, 47.5376175 ], + [ 7.714012, 47.5376277 ], + [ 7.7140035000000005, 47.5376378 ], + [ 7.7139949, 47.5376479 ], + [ 7.7139658, 47.5376807 ], + [ 7.7139585, 47.537688 ], + [ 7.7139512, 47.5376953 ], + [ 7.7139399, 47.537701 ], + [ 7.713928, 47.5377145 ], + [ 7.7138877, 47.5377529 ], + [ 7.713872, 47.5377601 ], + [ 7.7138582, 47.5377679 ], + [ 7.7138432, 47.5377606 ], + [ 7.7137735, 47.5378196 ], + [ 7.7136866, 47.5378931 ], + [ 7.7136807, 47.5378972 ], + [ 7.7136568, 47.5379141 ], + [ 7.7136439, 47.537924 ], + [ 7.7136297, 47.5379332 ], + [ 7.7136109, 47.5379432 ], + [ 7.713591, 47.5379516 ], + [ 7.7135701, 47.5379585 ], + [ 7.7135481, 47.5379639 ], + [ 7.7135255, 47.5379678 ], + [ 7.7135088, 47.5379695 ], + [ 7.7134855, 47.5379705 ], + [ 7.7134623, 47.5379699 ], + [ 7.7134393, 47.5379676 ], + [ 7.7134858, 47.5380322 ], + [ 7.7141376, 47.5383826 ], + [ 7.71415, 47.5383568 ], + [ 7.7145494, 47.5375223 ], + [ 7.7148777, 47.5365528 ], + [ 7.7159645999999995, 47.5358264 ], + [ 7.716687, 47.5357554 ], + [ 7.7183013, 47.536112 ], + [ 7.7187189, 47.5359863 ], + [ 7.7188891, 47.5360927 ], + [ 7.7189496, 47.5360335 ], + [ 7.7190905999999995, 47.5358954 ], + [ 7.7191297, 47.5358833 ], + [ 7.7191485, 47.5358544 ], + [ 7.719158, 47.535825 ], + [ 7.7191892, 47.5357289 ], + [ 7.7192061, 47.5356883 ], + [ 7.7192728, 47.535594 ], + [ 7.7193376, 47.5355289 ], + [ 7.7193533, 47.5355199 ], + [ 7.7193725, 47.5354991 ], + [ 7.719384, 47.5354868 ], + [ 7.7194304, 47.535436 ], + [ 7.7194467, 47.5354178 ], + [ 7.7194787, 47.535382 ], + [ 7.7194794, 47.5353813 ], + [ 7.7195066, 47.5353372 ], + [ 7.7195548, 47.5352837 ], + [ 7.7195709, 47.5352617 ], + [ 7.7195977, 47.5352391 ], + [ 7.7196123, 47.5352037 ], + [ 7.7196161, 47.5352 ], + [ 7.71967, 47.5351467 ], + [ 7.7196853, 47.5351316 ], + [ 7.7196827, 47.5350776 ], + [ 7.7196711, 47.5350473 ], + [ 7.7196631, 47.5350369 ], + [ 7.719661, 47.5350235 ], + [ 7.7196525, 47.5350053 ], + [ 7.7196527, 47.5349897 ], + [ 7.7196363, 47.5349675 ], + [ 7.7196438, 47.534954 ], + [ 7.7196334, 47.5349372 ], + [ 7.7196283999999995, 47.5349148 ], + [ 7.719663, 47.5348767 ], + [ 7.7196808, 47.53485 ], + [ 7.7196612, 47.5348404 ], + [ 7.7196561, 47.5348067 ], + [ 7.7196466, 47.5347891 ], + [ 7.7196222, 47.5347646 ], + [ 7.7196381, 47.5347536 ], + [ 7.7196242999999996, 47.5347185 ], + [ 7.7196147, 47.5347129 ], + [ 7.7195981, 47.5346992 ], + [ 7.7195573, 47.5346799 ], + [ 7.7195285, 47.5346623 ], + [ 7.719468, 47.5346359 ], + [ 7.7194522, 47.5346199 ], + [ 7.7194272, 47.5346037 ], + [ 7.7193442, 47.53455 ], + [ 7.7193283, 47.5345429 ], + [ 7.7193037, 47.5345362 ], + [ 7.7191561, 47.5344958 ], + [ 7.7189726, 47.5344749 ], + [ 7.7188592, 47.5344748 ], + [ 7.7186945, 47.534496 ], + [ 7.7186388, 47.5345144 ], + [ 7.7186157, 47.5344824 ], + [ 7.718264, 47.5346181 ], + [ 7.7182344, 47.5346266 ], + [ 7.7174735, 47.5348431 ], + [ 7.7173067, 47.5348059 ], + [ 7.7171213, 47.5347411 ], + [ 7.7170082, 47.5346364 ], + [ 7.7169905, 47.5345582 ], + [ 7.7165616, 47.534281 ], + [ 7.7165314, 47.5342586 ], + [ 7.716498, 47.5341371 ], + [ 7.716382, 47.5335522 ], + [ 7.7165637, 47.5333372 ], + [ 7.716699, 47.5331773 ], + [ 7.7167404, 47.5331831 ], + [ 7.7168026, 47.5331027 ], + [ 7.7169068, 47.5328511 ], + [ 7.7169833, 47.5325737 ], + [ 7.7169343999999995, 47.5323426 ], + [ 7.7167693, 47.5320328 ], + [ 7.7166243, 47.5318481 ], + [ 7.7162676, 47.5315171 ], + [ 7.7159039, 47.5311797 ], + [ 7.7155927, 47.5308511 ], + [ 7.7155024, 47.5306034 ], + [ 7.715467, 47.5303225 ], + [ 7.7157321, 47.5297755 ], + [ 7.7162162, 47.5294124 ], + [ 7.7173117, 47.5287334 ], + [ 7.7181814, 47.5281109 ], + [ 7.7183969999999995, 47.5277805 ], + [ 7.7184346, 47.5274154 ], + [ 7.7183527, 47.5270171 ], + [ 7.7182416, 47.5267891 ], + [ 7.7181414, 47.5265232 ], + [ 7.7181066, 47.5260436 ], + [ 7.7182337, 47.5256977 ], + [ 7.7184611, 47.5253308 ], + [ 7.7189355, 47.5247853 ], + [ 7.7195949, 47.5234625 ], + [ 7.7197833, 47.5232311 ], + [ 7.7205166, 47.5228349 ], + [ 7.7206192, 47.522799 ], + [ 7.7206543, 47.5227589 ], + [ 7.7208503, 47.5226328 ], + [ 7.720908, 47.5225042 ], + [ 7.7209429, 47.5221945 ], + [ 7.7208366, 47.5220804 ], + [ 7.7208306, 47.5218762 ], + [ 7.7205165000000004, 47.521967599999996 ], + [ 7.720133, 47.5219792 ], + [ 7.7200194, 47.5219723 ], + [ 7.7200105, 47.522017 ], + [ 7.7199256, 47.522059 ], + [ 7.7198758, 47.5221035 ], + [ 7.719851, 47.5221565 ], + [ 7.7197892, 47.522313 ], + [ 7.7197137, 47.5224401 ], + [ 7.7196087, 47.5225805 ], + [ 7.719416, 47.5227772 ], + [ 7.7193089, 47.5228923 ], + [ 7.7192432, 47.5229871 ], + [ 7.7191868, 47.5231028 ], + [ 7.7190354, 47.5234434 ], + [ 7.7188503, 47.5238811 ], + [ 7.7186801, 47.5242827 ], + [ 7.7186323, 47.5243707 ], + [ 7.7185352, 47.5245005 ], + [ 7.7183124, 47.5247557 ], + [ 7.7180428, 47.5250848 ], + [ 7.7179266, 47.5252474 ], + [ 7.7177817, 47.5255055 ], + [ 7.717655, 47.525744 ], + [ 7.7175934, 47.5258922 ], + [ 7.7175524, 47.5260882 ], + [ 7.7175747, 47.526353 ], + [ 7.7176378, 47.5266001 ], + [ 7.7177273, 47.5268847 ], + [ 7.7177298, 47.5269 ], + [ 7.7177459, 47.5269946 ], + [ 7.7177491, 47.5270386 ], + [ 7.7177469, 47.5270826 ], + [ 7.7177394, 47.5271264 ], + [ 7.7177264999999995, 47.5271695 ], + [ 7.7177013, 47.5272534 ], + [ 7.7177222, 47.5272721 ], + [ 7.7176019, 47.5276999 ], + [ 7.717526, 47.5278496 ], + [ 7.7173579, 47.5280884 ], + [ 7.7172394, 47.5282182 ], + [ 7.7169212, 47.5285026 ], + [ 7.7166239999999995, 47.5287439 ], + [ 7.7164532999999995, 47.5288687 ], + [ 7.7162329, 47.529014 ], + [ 7.7161299, 47.5290985 ], + [ 7.7160129, 47.5291711 ], + [ 7.7158697, 47.5292484 ], + [ 7.7154978, 47.5295251 ], + [ 7.7151807, 47.5298199 ], + [ 7.7151037, 47.529914 ], + [ 7.7150607, 47.5300078 ], + [ 7.7150467, 47.5301038 ], + [ 7.7150562, 47.5303204 ], + [ 7.715096, 47.5306466 ], + [ 7.7151513, 47.5308381 ], + [ 7.7152557999999996, 47.5310162 ], + [ 7.7155014, 47.5313361 ], + [ 7.7158659, 47.5317855 ], + [ 7.7160673, 47.5320388 ], + [ 7.7160845, 47.5320181 ], + [ 7.7161159, 47.5320586 ], + [ 7.7161611, 47.5321234 ], + [ 7.7161937, 47.532174 ], + [ 7.7162182, 47.5321668 ], + [ 7.7162236, 47.5321746 ], + [ 7.7162295, 47.5321822 ], + [ 7.7162361, 47.5321895 ], + [ 7.7162433, 47.5321966 ], + [ 7.7162509, 47.5322035 ], + [ 7.7162591, 47.53221 ], + [ 7.7162679, 47.5322163 ], + [ 7.7162772, 47.5322222 ], + [ 7.7162869, 47.5322277 ], + [ 7.7162971, 47.5322329 ], + [ 7.7163076, 47.5322378 ], + [ 7.7163185, 47.5322422 ], + [ 7.7163298000000005, 47.5322463 ], + [ 7.7163413, 47.5322499 ], + [ 7.7166194, 47.5323322 ], + [ 7.7166571, 47.5324431 ], + [ 7.7166556, 47.5324558 ], + [ 7.7164812, 47.5324043 ], + [ 7.7164725, 47.532402 ], + [ 7.7164636, 47.5324003 ], + [ 7.7164544, 47.5323991 ], + [ 7.7164452, 47.5323985 ], + [ 7.7164359000000005, 47.5323984 ], + [ 7.7164266, 47.5323988 ], + [ 7.7164174, 47.5323998 ], + [ 7.7164084, 47.5324014 ], + [ 7.7163996, 47.5324034 ], + [ 7.7163911, 47.532406 ], + [ 7.716383, 47.5324091 ], + [ 7.7163753, 47.5324126 ], + [ 7.716368, 47.5324166 ], + [ 7.7163613, 47.532421 ], + [ 7.7163552, 47.5324258 ], + [ 7.7163498, 47.532431 ], + [ 7.7163450000000005, 47.5324364 ], + [ 7.7163409, 47.5324421 ], + [ 7.7163376, 47.5324481 ], + [ 7.7163351, 47.5324542 ], + [ 7.7163334, 47.5324604 ], + [ 7.7163325, 47.5324667 ], + [ 7.7163325, 47.532473 ], + [ 7.7163332, 47.5324793 ], + [ 7.7163378, 47.5325061 ], + [ 7.7163415, 47.5325329 ], + [ 7.7163445, 47.5325598 ], + [ 7.7163466, 47.5325867 ], + [ 7.7163478, 47.5326137 ], + [ 7.7163483, 47.5326406 ], + [ 7.7163479, 47.5326675 ], + [ 7.7163467, 47.5326945 ], + [ 7.7163447, 47.5327214 ], + [ 7.7163419, 47.5327483 ], + [ 7.7163383, 47.5327751 ], + [ 7.7163338, 47.5328019 ], + [ 7.7163284999999995, 47.5328286 ], + [ 7.7163224, 47.5328552 ], + [ 7.7163154, 47.5328818 ], + [ 7.7163077, 47.5329082 ], + [ 7.7162991, 47.5329346 ], + [ 7.7162898, 47.5329608 ], + [ 7.7162796, 47.5329868 ], + [ 7.7162687, 47.5330128 ], + [ 7.7161659, 47.5332037 ], + [ 7.7159682, 47.533516 ], + [ 7.7158086, 47.5337443 ], + [ 7.7157577, 47.53383 ], + [ 7.7157376, 47.533866 ], + [ 7.7157425, 47.5339701 ], + [ 7.7158021, 47.534132 ], + [ 7.7158774, 47.5342548 ], + [ 7.7158978, 47.5342685 ], + [ 7.7163214, 47.5345546 ], + [ 7.7165248, 47.5347026 ], + [ 7.7166597, 47.5348183 ], + [ 7.7167376999999995, 47.5347769 ], + [ 7.7167437, 47.5347817 ], + [ 7.7169805, 47.5349104 ], + [ 7.7172105, 47.5349973 ], + [ 7.7172646, 47.5350063 ], + [ 7.7173104, 47.5350139 ], + [ 7.7174159, 47.5350129 ], + [ 7.7179155999999995, 47.5349506 ], + [ 7.7180504, 47.5349111 ], + [ 7.7183288, 47.5348197 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns028", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Ergolz", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Ergolz", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Ergolz", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Ergolz", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.2950445, 46.4249141 ], + [ 6.2951806, 46.4248409 ], + [ 6.2952047, 46.4249902 ], + [ 6.2952556, 46.4251212 ], + [ 6.295417, 46.4251415 ], + [ 6.295634, 46.4250691 ], + [ 6.2957705, 46.424996 ], + [ 6.2959335, 46.4249416 ], + [ 6.2961493, 46.4249253 ], + [ 6.2963663, 46.4248528 ], + [ 6.2965853, 46.4247059 ], + [ 6.296971, 46.42448 ], + [ 6.3071159, 46.4171992 ], + [ 6.3065208, 46.416788 ], + [ 6.306341, 46.4166781 ], + [ 6.3062254, 46.4166083 ], + [ 6.3058818, 46.4164368 ], + [ 6.3056086, 46.4162423 ], + [ 6.305257, 46.4160667 ], + [ 6.3052798, 46.4157154 ], + [ 6.3050943, 46.413956 ], + [ 6.3050336, 46.4137484 ], + [ 6.3049513, 46.4134282 ], + [ 6.3047939, 46.4128689 ], + [ 6.3044522, 46.4119077 ], + [ 6.3041793, 46.4112752 ], + [ 6.3032366, 46.4096311 ], + [ 6.3030723, 46.4094044 ], + [ 6.3027704, 46.4090103 ], + [ 6.3026976, 46.4089363 ], + [ 6.3024088, 46.4085599 ], + [ 6.3022635, 46.4083754 ], + [ 6.3011847, 46.407276 ], + [ 6.3010321, 46.4068583 ], + [ 6.299988, 46.4052488 ], + [ 6.2985561, 46.4037891 ], + [ 6.2971919, 46.4028178 ], + [ 6.2974052, 46.4022976 ], + [ 6.2976644, 46.4005426 ], + [ 6.2976129, 46.3995351 ], + [ 6.297524, 46.3988144 ], + [ 6.2970618, 46.3970116 ], + [ 6.2968986000000005, 46.3965978 ], + [ 6.2968247999999996, 46.3958977 ], + [ 6.2964928, 46.3949882 ], + [ 6.2963198, 46.3944468 ], + [ 6.2960148, 46.3937626 ], + [ 6.2949712, 46.392153 ], + [ 6.2935397, 46.3906933 ], + [ 6.2917632, 46.3894279 ], + [ 6.2914838, 46.3892881 ], + [ 6.2905891, 46.3886944 ], + [ 6.290242, 46.388511 ], + [ 6.2894714, 46.3882339 ], + [ 6.2893767, 46.388125 ], + [ 6.2886714999999995, 46.3873884 ], + [ 6.2884174, 46.3871469 ], + [ 6.2877782, 46.3861603 ], + [ 6.286347, 46.3847005 ], + [ 6.2856591, 46.3842103 ], + [ 6.2852834, 46.3838243 ], + [ 6.2850917, 46.3836694 ], + [ 6.2835488, 46.3825968 ], + [ 6.2814827, 46.3815638 ], + [ 6.2791889, 46.3807947 ], + [ 6.2767365999999996, 46.380313 ], + [ 6.2742011, 46.3801331 ], + [ 6.271659, 46.3802607 ], + [ 6.2705772, 46.3804104 ], + [ 6.2699641, 46.380512 ], + [ 6.2683206, 46.3809168 ], + [ 6.2677503, 46.3808763 ], + [ 6.2652082, 46.3810038 ], + [ 6.2627362, 46.3814347 ], + [ 6.2621099000000005, 46.3815963 ], + [ 6.261953, 46.3816399 ], + [ 6.2614608, 46.381802 ], + [ 6.2612531, 46.3816707 ], + [ 6.2611926, 46.381093 ], + [ 6.2605699, 46.3793825 ], + [ 6.2595275, 46.3777727 ], + [ 6.2592053, 46.3774438 ], + [ 6.2469317, 46.3841448 ], + [ 6.2469434, 46.3841681 ], + [ 6.2469145, 46.384209 ], + [ 6.2466367, 46.3842778 ], + [ 6.2460205, 46.384532899999996 ], + [ 6.2459012, 46.3846526 ], + [ 6.2459855, 46.3847943 ], + [ 6.2461251, 46.3850574 ], + [ 6.2465117, 46.3860075 ], + [ 6.246843, 46.3868162 ], + [ 6.2469835, 46.3870391 ], + [ 6.2471537999999995, 46.3872221 ], + [ 6.2474385, 46.3875069 ], + [ 6.2480685, 46.3879563 ], + [ 6.2486684, 46.3884659 ], + [ 6.2492686, 46.3889452 ], + [ 6.2506126, 46.390006 ], + [ 6.2535021, 46.3922504 ], + [ 6.255617, 46.3939834 ], + [ 6.2603074, 46.3976857 ], + [ 6.2625672, 46.3994806 ], + [ 6.2643688, 46.4009184 ], + [ 6.2662288, 46.4023667 ], + [ 6.2668575, 46.4028966 ], + [ 6.2672283, 46.4032427 ], + [ 6.267629, 46.4035487 ], + [ 6.2678544, 46.4038933 ], + [ 6.2680523, 46.4041569 ], + [ 6.2682485, 46.4045013 ], + [ 6.2684438, 46.4048856 ], + [ 6.2687756, 46.4057043 ], + [ 6.26894, 46.406169 ], + [ 6.2691956, 46.4064535 ], + [ 6.2694787, 46.4068187 ], + [ 6.2698501, 46.4071446 ], + [ 6.2708802, 46.4079604 ], + [ 6.2717074, 46.4087338 ], + [ 6.2733358, 46.4101394 ], + [ 6.274609, 46.4112474 ], + [ 6.2763549, 46.4127752 ], + [ 6.2782595, 46.4144351 ], + [ 6.2799804, 46.415888 ], + [ 6.2824684, 46.4180105 ], + [ 6.284427, 46.4197083 ], + [ 6.286465, 46.4214626 ], + [ 6.287154, 46.4220194 ], + [ 6.2875786, 46.4223407 ], + [ 6.2880828, 46.4226999 ], + [ 6.289307, 46.4234394 ], + [ 6.2900784, 46.4239318 ], + [ 6.2909019, 46.4244995 ], + [ 6.2917533, 46.4250299 ], + [ 6.2920457, 46.4252192 ], + [ 6.2923665, 46.4253531 ], + [ 6.2927398, 46.4255432 ], + [ 6.2933542, 46.4258104 ], + [ 6.2940491, 46.426097 ], + [ 6.2954921, 46.4266894 ], + [ 6.2956302, 46.4265417 ], + [ 6.2957138, 46.4264121 ], + [ 6.2956878, 46.4263559 ], + [ 6.2955808, 46.4263175 ], + [ 6.2953654, 46.4263153 ], + [ 6.2952316, 46.4262581 ], + [ 6.2952352, 46.4260904 ], + [ 6.2952407, 46.4258294 ], + [ 6.295028, 46.4256968 ], + [ 6.2948402, 46.4256577 ], + [ 6.2947344, 46.4255447 ], + [ 6.2947375, 46.4253956 ], + [ 6.2948484, 46.4252663 ], + [ 6.2950445, 46.4249141 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "WZV0026", + "country" : "CHE", + "name" : [ + { + "text" : "Wasser- und Zugvogelreservat Pointe de Promenthoux", + "lang" : "de-CH" + }, + { + "text" : "Réserve d'oiseaux d'eau et de migrateurs Pointe de Promenthoux", + "lang" : "fr-CH" + }, + { + "text" : "Riserva di uccelli acquatici e migratori Pointe de Promenthoux", + "lang" : "it-CH" + }, + { + "text" : "Water Bird and Migratory Bird Reserves Pointe de Promenthoux", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.0621243, 47.3662483 ], + [ 9.0621146, 47.3661072 ], + [ 9.062094, 47.3659667 ], + [ 9.0620626, 47.365827 ], + [ 9.0620205, 47.3656887 ], + [ 9.0619678, 47.365552 ], + [ 9.0619046, 47.3654174 ], + [ 9.0618312, 47.3652853 ], + [ 9.0617476, 47.3651559 ], + [ 9.0616543, 47.3650297 ], + [ 9.0615513, 47.364907 ], + [ 9.061439, 47.3647881 ], + [ 9.0613178, 47.3646733 ], + [ 9.0611878, 47.3645631 ], + [ 9.0610495, 47.3644576 ], + [ 9.0609033, 47.3643571 ], + [ 9.0607496, 47.364262 ], + [ 9.0605887, 47.3641725 ], + [ 9.0604212, 47.3640889 ], + [ 9.0602474, 47.3640113 ], + [ 9.060068, 47.36394 ], + [ 9.0598832, 47.3638751 ], + [ 9.0596938, 47.363817 ], + [ 9.0595001, 47.3637656 ], + [ 9.0593027, 47.3637212 ], + [ 9.0591022, 47.3636839 ], + [ 9.058899, 47.3636538 ], + [ 9.0586939, 47.3636309 ], + [ 9.0584872, 47.3636154 ], + [ 9.0582797, 47.3636072 ], + [ 9.0580717, 47.3636064 ], + [ 9.0578641, 47.363613 ], + [ 9.0576572, 47.363627 ], + [ 9.0574516, 47.3636484 ], + [ 9.057248, 47.363677 ], + [ 9.0570469, 47.3637128 ], + [ 9.0568488, 47.3637557 ], + [ 9.0566543, 47.3638056 ], + [ 9.0564639, 47.3638623 ], + [ 9.0562781, 47.3639258 ], + [ 9.0560975, 47.3639957 ], + [ 9.0559225, 47.364072 ], + [ 9.0557536, 47.3641544 ], + [ 9.0555913, 47.3642427 ], + [ 9.055436, 47.3643366 ], + [ 9.0552882, 47.364436 ], + [ 9.0551482, 47.3645404 ], + [ 9.0550164, 47.3646497 ], + [ 9.0548933, 47.3647635 ], + [ 9.0547791, 47.3648816 ], + [ 9.0546741, 47.3650035 ], + [ 9.0545787, 47.365129 ], + [ 9.054493, 47.3652578 ], + [ 9.0544175, 47.3653894 ], + [ 9.0543521, 47.3655235 ], + [ 9.0542972, 47.3656597 ], + [ 9.0542528, 47.3657978 ], + [ 9.0542191, 47.3659372 ], + [ 9.0541962, 47.3660776 ], + [ 9.0541842, 47.3662186 ], + [ 9.054183, 47.3663599 ], + [ 9.0541927, 47.366501 ], + [ 9.0542133, 47.3666415 ], + [ 9.0542447, 47.3667812 ], + [ 9.0542868, 47.3669195 ], + [ 9.0543395, 47.3670562 ], + [ 9.0544026, 47.3671908 ], + [ 9.0544761, 47.3673229 ], + [ 9.0545596, 47.3674523 ], + [ 9.0546529, 47.3675785 ], + [ 9.0547559, 47.3677013 ], + [ 9.0548682, 47.3678202 ], + [ 9.0549894, 47.3679349 ], + [ 9.0551194, 47.3680452 ], + [ 9.0552576, 47.3681507 ], + [ 9.0554038, 47.3682511 ], + [ 9.0555576, 47.3683463 ], + [ 9.0557184, 47.3684358 ], + [ 9.055886, 47.3685194 ], + [ 9.0560597, 47.368597 ], + [ 9.0562392, 47.3686683 ], + [ 9.056424, 47.3687332 ], + [ 9.0566135, 47.3687913 ], + [ 9.0568072, 47.3688427 ], + [ 9.0570046, 47.3688871 ], + [ 9.0572051, 47.3689244 ], + [ 9.0574083, 47.3689545 ], + [ 9.0576134, 47.3689774 ], + [ 9.0578201, 47.3689929 ], + [ 9.0580277, 47.3690011 ], + [ 9.0582356, 47.3690019 ], + [ 9.0584433, 47.3689953 ], + [ 9.0586502, 47.3689813 ], + [ 9.0588558, 47.36896 ], + [ 9.0590594, 47.3689314 ], + [ 9.0592606, 47.3688955 ], + [ 9.0594587, 47.3688526 ], + [ 9.0596532, 47.3688027 ], + [ 9.0598436, 47.368746 ], + [ 9.0600294, 47.3686825 ], + [ 9.0602101, 47.3686126 ], + [ 9.0603851, 47.3685363 ], + [ 9.060554, 47.3684539 ], + [ 9.0607163, 47.3683656 ], + [ 9.0608716, 47.3682716 ], + [ 9.0610194, 47.3681723 ], + [ 9.0611594, 47.3680678 ], + [ 9.0612911, 47.3679585 ], + [ 9.0614143, 47.3678447 ], + [ 9.0615285, 47.3677266 ], + [ 9.0616334, 47.3676047 ], + [ 9.0617288, 47.3674792 ], + [ 9.0618145, 47.3673504 ], + [ 9.06189, 47.3672188 ], + [ 9.0619554, 47.3670847 ], + [ 9.0620103, 47.3669485 ], + [ 9.0620546, 47.3668105 ], + [ 9.0620883, 47.3666711 ], + [ 9.0621112, 47.3665306 ], + [ 9.0621232, 47.3663896 ], + [ 9.0621243, 47.3662483 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "MZB0001", + "country" : "CHE", + "name" : [ + { + "text" : "Massnahmenzentrum Bitzi Mosnang", + "lang" : "de-CH" + }, + { + "text" : "Massnahmenzentrum Bitzi Mosnang", + "lang" : "fr-CH" + }, + { + "text" : "Massnahmenzentrum Bitzi Mosnang", + "lang" : "it-CH" + }, + { + "text" : "Massnahmenzentrum Bitzi Mosnang", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Massnahmenzentrum Bitzi Mosnang", + "lang" : "de-CH" + }, + { + "text" : "Massnahmenzentrum Bitzi Mosnang", + "lang" : "fr-CH" + }, + { + "text" : "Massnahmenzentrum Bitzi Mosnang", + "lang" : "it-CH" + }, + { + "text" : "Massnahmenzentrum Bitzi Mosnang", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Direktion", + "lang" : "de-CH" + }, + { + "text" : "Direktion", + "lang" : "fr-CH" + }, + { + "text" : "Direktion", + "lang" : "it-CH" + }, + { + "text" : "Direktion", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Claudio Vannini", + "lang" : "de-CH" + }, + { + "text" : "Claudio Vannini", + "lang" : "fr-CH" + }, + { + "text" : "Claudio Vannini", + "lang" : "it-CH" + }, + { + "text" : "Claudio Vannini", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.sg.ch/sicherheit/justizvollzug/massnahmenzentrum-bitzi.html", + "email" : "info@mzb.sg.ch", + "phone" : "0041582281585", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.5095218, 47.6468966 ], + [ 8.5084552, 47.6470801 ], + [ 8.505128599999999, 47.6477794 ], + [ 8.5018607, 47.6485953 ], + [ 8.4986603, 47.6495255 ], + [ 8.4955362, 47.6505676 ], + [ 8.492497, 47.6517187 ], + [ 8.4895509, 47.6529755 ], + [ 8.4867061, 47.6543348 ], + [ 8.4839704, 47.6557927 ], + [ 8.4813511, 47.6573453 ], + [ 8.4788556, 47.6589884 ], + [ 8.4764906, 47.6607173 ], + [ 8.4742626, 47.6625275 ], + [ 8.4721778, 47.6644139 ], + [ 8.4702419, 47.6663715 ], + [ 8.4684601, 47.6683947 ], + [ 8.4668373, 47.6704782 ], + [ 8.4653782, 47.6726161 ], + [ 8.4640865, 47.6748027 ], + [ 8.462966, 47.6770319 ], + [ 8.4620196, 47.6792976 ], + [ 8.4612501, 47.6815937 ], + [ 8.4606595, 47.6839139 ], + [ 8.4602495, 47.6862517 ], + [ 8.4600212, 47.6886008 ], + [ 8.4599783, 47.6908033 ], + [ 8.4608069, 47.6910697 ], + [ 8.4921136, 47.7011289 ], + [ 8.4949676, 47.7114092 ], + [ 8.4922485, 47.7151728 ], + [ 8.4756048, 47.7188987 ], + [ 8.475217, 47.7189885 ], + [ 8.4753695, 47.7191189 ], + [ 8.47767, 47.7208887 ], + [ 8.4801048, 47.7225747 ], + [ 8.4826672, 47.7241723 ], + [ 8.4853502, 47.7256772 ], + [ 8.4881463, 47.7270852 ], + [ 8.491048, 47.7283925 ], + [ 8.4940473, 47.7295955 ], + [ 8.4971358, 47.7306908 ], + [ 8.5003053, 47.7316755 ], + [ 8.5035468, 47.7325468 ], + [ 8.5068517, 47.7333024 ], + [ 8.5102107, 47.7339401 ], + [ 8.5136146, 47.7344583 ], + [ 8.5170542, 47.7348556 ], + [ 8.5205199, 47.7351307 ], + [ 8.5240021, 47.7352829 ], + [ 8.5274915, 47.735312 ], + [ 8.5309783, 47.7352176 ], + [ 8.534453, 47.7350002 ], + [ 8.537906, 47.7346603 ], + [ 8.5413279, 47.7341989 ], + [ 8.5447092, 47.7336172 ], + [ 8.5480406, 47.7329168 ], + [ 8.5513131, 47.7320996 ], + [ 8.5545175, 47.7311679 ], + [ 8.5576452, 47.7301243 ], + [ 8.5606875, 47.7289716 ], + [ 8.5636361, 47.7277129 ], + [ 8.5664829, 47.7263518 ], + [ 8.56922, 47.724892 ], + [ 8.57184, 47.7233375 ], + [ 8.5743357, 47.7216925 ], + [ 8.5767002, 47.7199615 ], + [ 8.5789271, 47.7181494 ], + [ 8.5810102, 47.7162611 ], + [ 8.5829439, 47.7143018 ], + [ 8.5847229, 47.7122768 ], + [ 8.5863422, 47.7101918 ], + [ 8.5877976, 47.7080524 ], + [ 8.5890849, 47.7058645 ], + [ 8.5902007, 47.7036341 ], + [ 8.591142, 47.7013673 ], + [ 8.5919062, 47.6990703 ], + [ 8.5924912, 47.6967496 ], + [ 8.592895500000001, 47.6944113 ], + [ 8.5931179, 47.6920619 ], + [ 8.5931579, 47.6897079 ], + [ 8.5930153, 47.6873557 ], + [ 8.5926907, 47.6850118 ], + [ 8.5921849, 47.6826825 ], + [ 8.5914993, 47.6803743 ], + [ 8.5906358, 47.6780935 ], + [ 8.5895969, 47.6758464 ], + [ 8.5883853, 47.673639 ], + [ 8.5870044, 47.6714774 ], + [ 8.5854581, 47.6693676 ], + [ 8.5837506, 47.6673154 ], + [ 8.5818865, 47.6653262 ], + [ 8.579871, 47.6634057 ], + [ 8.5777096, 47.661559 ], + [ 8.5776648, 47.6615246 ], + [ 8.5771658, 47.6619651 ], + [ 8.5761214, 47.6624672 ], + [ 8.5749426, 47.6626146 ], + [ 8.5738342, 47.6627913 ], + [ 8.5728994, 47.6636292 ], + [ 8.5717833, 47.6643228 ], + [ 8.5716048, 47.6641913 ], + [ 8.5709128, 47.6648674 ], + [ 8.5707787, 47.6647553 ], + [ 8.5704901, 47.6648416 ], + [ 8.5698504, 47.6645712 ], + [ 8.5691756, 47.6641924 ], + [ 8.5683977, 47.6644954 ], + [ 8.5671881, 47.6649398 ], + [ 8.5665992, 47.665293 ], + [ 8.5661616, 47.6657015 ], + [ 8.5647542, 47.665264 ], + [ 8.5640223, 47.6669069 ], + [ 8.5634406, 47.668087 ], + [ 8.5636033, 47.6692319 ], + [ 8.5637173, 47.6700397 ], + [ 8.5625304, 47.6701193 ], + [ 8.5617475, 47.6701867 ], + [ 8.560891, 47.6703197 ], + [ 8.5597285, 47.6702052 ], + [ 8.5592546, 47.6701285 ], + [ 8.5582945, 47.6696176 ], + [ 8.5568719, 47.6692612 ], + [ 8.5560419, 47.6693144 ], + [ 8.5544067, 47.6694059 ], + [ 8.5522654, 47.6688603 ], + [ 8.551039, 47.6682541 ], + [ 8.5496216, 47.6674173 ], + [ 8.5477072, 47.66705 ], + [ 8.5470847, 47.6670852 ], + [ 8.5468276, 47.6674968 ], + [ 8.5460802, 47.6670889 ], + [ 8.5447469, 47.666493 ], + [ 8.5436125, 47.6659852 ], + [ 8.5422891, 47.6653097 ], + [ 8.5409822, 47.6652446 ], + [ 8.5399607, 47.6650764 ], + [ 8.5397409, 47.6640887 ], + [ 8.5388675, 47.6635289 ], + [ 8.5388706, 47.6627676 ], + [ 8.5391896, 47.6624353 ], + [ 8.539138, 47.6621684 ], + [ 8.5394298, 47.6618085 ], + [ 8.539776, 47.6615924 ], + [ 8.5399816, 47.6613314 ], + [ 8.5401797, 47.6607541 ], + [ 8.5404698, 47.6599151 ], + [ 8.540861, 47.6590889 ], + [ 8.540881, 47.6587507 ], + [ 8.5414807, 47.6580218 ], + [ 8.5414566, 47.6574818 ], + [ 8.5416794, 47.657076 ], + [ 8.5416454, 47.6567931 ], + [ 8.540991, 47.6568254 ], + [ 8.5402227, 47.6574622 ], + [ 8.538664, 47.6578456 ], + [ 8.5379879, 47.6580741 ], + [ 8.5366053, 47.658434 ], + [ 8.5356839, 47.6587861 ], + [ 8.5344693, 47.6593553 ], + [ 8.5337183, 47.6599905 ], + [ 8.533833, 47.660553 ], + [ 8.5341504, 47.6611603 ], + [ 8.534070700000001, 47.6617516 ], + [ 8.533455, 47.6631214 ], + [ 8.5324839, 47.6628338 ], + [ 8.5314179, 47.6620895 ], + [ 8.5300748, 47.6614225 ], + [ 8.528902, 47.660973 ], + [ 8.52787, 47.6606473 ], + [ 8.5269427, 47.6604547 ], + [ 8.5272954, 47.6596526 ], + [ 8.5276426, 47.6588774 ], + [ 8.5280173, 47.6580215 ], + [ 8.5290969, 47.657707 ], + [ 8.5300313, 47.6570371 ], + [ 8.5294211, 47.6563374 ], + [ 8.5290146, 47.6554909 ], + [ 8.5291278, 47.6550106 ], + [ 8.530145, 47.6540768 ], + [ 8.5308759, 47.653798 ], + [ 8.5316724, 47.6526935 ], + [ 8.5316083, 47.6522952 ], + [ 8.531861, 47.6520046 ], + [ 8.533037, 47.6514043 ], + [ 8.533506299999999, 47.6509828 ], + [ 8.533452, 47.6505029 ], + [ 8.5337792, 47.650103 ], + [ 8.5346218, 47.6496937 ], + [ 8.5336971, 47.6492069 ], + [ 8.533343200000001, 47.6485183 ], + [ 8.5333974, 47.6478697 ], + [ 8.5331129, 47.6475785 ], + [ 8.5329539, 47.6471302 ], + [ 8.5324029, 47.6466492 ], + [ 8.532287, 47.6464784 ], + [ 8.5317933, 47.6457482 ], + [ 8.5298398, 47.6459366 ], + [ 8.5284518, 47.6456782 ], + [ 8.5269616, 47.645399 ], + [ 8.5256448, 47.6453881 ], + [ 8.5221639, 47.645482200000004 ], + [ 8.5194338, 47.6456531 ], + [ 8.5189076, 47.6458141 ], + [ 8.5177373, 47.646221 ], + [ 8.5171631, 47.6464661 ], + [ 8.5158133, 47.6469083 ], + [ 8.5139022, 47.6473867 ], + [ 8.51332, 47.647496 ], + [ 8.512963, 47.6474794 ], + [ 8.5124433, 47.6474905 ], + [ 8.5118066, 47.6474332 ], + [ 8.5113395, 47.6473684 ], + [ 8.5110457, 47.6472895 ], + [ 8.5108061, 47.6469638 ], + [ 8.5102041, 47.6471835 ], + [ 8.5095218, 47.6468966 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSPF001", + "country" : "CHE", + "name" : [ + { + "text" : "LSPF Schaffhausen", + "lang" : "de-CH" + }, + { + "text" : "LSPF Schaffhausen", + "lang" : "fr-CH" + }, + { + "text" : "LSPF Schaffhausen", + "lang" : "it-CH" + }, + { + "text" : "LSPF Schaffhausen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Segelfluggruppe Schaffhausen", + "lang" : "de-CH" + }, + { + "text" : "Segelfluggruppe Schaffhausen", + "lang" : "fr-CH" + }, + { + "text" : "Segelfluggruppe Schaffhausen", + "lang" : "it-CH" + }, + { + "text" : "Segelfluggruppe Schaffhausen", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "siteURL" : "https://schmerlat.ch/", + "email" : "flugplatzchef@schmerlat.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4399913, 47.4568772 ], + [ 7.440015, 47.4568733 ], + [ 7.4400133, 47.4565565 ], + [ 7.4406077, 47.4566402 ], + [ 7.4406123, 47.4566385 ], + [ 7.4406172, 47.4566373 ], + [ 7.4406224, 47.4566367 ], + [ 7.4406277, 47.4566367 ], + [ 7.4406328, 47.4566373 ], + [ 7.4406377, 47.4566386 ], + [ 7.4406422, 47.4566404 ], + [ 7.440645, 47.4566419 ], + [ 7.4406474, 47.4566437 ], + [ 7.4406495, 47.4566456 ], + [ 7.4406513, 47.4566476 ], + [ 7.4408747, 47.456666 ], + [ 7.4410092, 47.4566788 ], + [ 7.4414756, 47.4567281 ], + [ 7.4413643, 47.4569711 ], + [ 7.4415237, 47.4569905 ], + [ 7.4417601, 47.4570149 ], + [ 7.4418123, 47.4570205 ], + [ 7.4420227, 47.4570245 ], + [ 7.4422053, 47.4570902 ], + [ 7.4423923, 47.4570689 ], + [ 7.4424635, 47.4567658 ], + [ 7.4423912, 47.456673 ], + [ 7.4423662, 47.4565946 ], + [ 7.4423532, 47.4565717 ], + [ 7.4423018, 47.4565663 ], + [ 7.4419525, 47.4565526 ], + [ 7.4417285, 47.456533 ], + [ 7.4414967, 47.4565435 ], + [ 7.4414934, 47.4565431 ], + [ 7.4410477, 47.4564952 ], + [ 7.4407281, 47.4564608 ], + [ 7.4404111, 47.4563841 ], + [ 7.4401845, 47.456307699999996 ], + [ 7.4398818, 47.4562035 ], + [ 7.4399076, 47.4561167 ], + [ 7.4398701, 47.456016 ], + [ 7.4397333, 47.4559692 ], + [ 7.4394146, 47.4559101 ], + [ 7.4390958, 47.4558497 ], + [ 7.438811, 47.4557966 ], + [ 7.4385309, 47.4557271 ], + [ 7.4383429, 47.4556858 ], + [ 7.4380709, 47.455626 ], + [ 7.4377223, 47.4555581 ], + [ 7.4373636, 47.4554829 ], + [ 7.4371456, 47.4554312 ], + [ 7.4368836, 47.4553659 ], + [ 7.4367734, 47.4553362 ], + [ 7.4365263, 47.4553129 ], + [ 7.4362715999999995, 47.4552413 ], + [ 7.4358126, 47.4551614 ], + [ 7.4354595, 47.4550456 ], + [ 7.4348872, 47.4553546 ], + [ 7.4344676, 47.4555812 ], + [ 7.4347004, 47.4556773 ], + [ 7.4348505, 47.4557428 ], + [ 7.4350626, 47.4558238 ], + [ 7.4350952, 47.4558498 ], + [ 7.4351846, 47.4558888 ], + [ 7.43538, 47.456008 ], + [ 7.4356527, 47.4561152 ], + [ 7.4357964, 47.4561996 ], + [ 7.4359666, 47.4562692 ], + [ 7.4361891, 47.45634 ], + [ 7.4364389, 47.4563923 ], + [ 7.43659, 47.4564358 ], + [ 7.4367301, 47.4565961 ], + [ 7.4367894, 47.45662 ], + [ 7.437241, 47.4568017 ], + [ 7.4374023, 47.4568646 ], + [ 7.437567, 47.4569312 ], + [ 7.4376237, 47.4569556 ], + [ 7.4379194, 47.4570313 ], + [ 7.4382269, 47.457104 ], + [ 7.4384509, 47.4569959 ], + [ 7.4384426999999995, 47.4568513 ], + [ 7.4388585, 47.4568897 ], + [ 7.4391099, 47.4569012 ], + [ 7.439185, 47.4571019 ], + [ 7.4393737, 47.4570525 ], + [ 7.4399913, 47.4568772 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns338", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Schlosssberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Schlosssberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Schlosssberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Schlosssberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7118493, 47.4142475 ], + [ 7.7117736, 47.41417 ], + [ 7.7118487, 47.4141382 ], + [ 7.7120246, 47.4139864 ], + [ 7.712312, 47.4137363 ], + [ 7.712529, 47.4134883 ], + [ 7.7126524, 47.4130727 ], + [ 7.712836, 47.412686 ], + [ 7.7130499, 47.4125533 ], + [ 7.7133975, 47.4123373 ], + [ 7.7136303, 47.4122904 ], + [ 7.7136298, 47.4122764 ], + [ 7.7136196, 47.4119544 ], + [ 7.7133049, 47.4116453 ], + [ 7.712918, 47.4113686 ], + [ 7.7127092, 47.4112413 ], + [ 7.7125171, 47.411128 ], + [ 7.7119254, 47.410991 ], + [ 7.7114925, 47.4109381 ], + [ 7.7111564, 47.4109079 ], + [ 7.7110755, 47.4109016 ], + [ 7.7106389, 47.4108949 ], + [ 7.7100615999999995, 47.4109185 ], + [ 7.7096004, 47.4109326 ], + [ 7.7094203, 47.411037 ], + [ 7.7091987, 47.4113726 ], + [ 7.7093279, 47.4117215 ], + [ 7.709407, 47.4121255 ], + [ 7.7096224, 47.4122499 ], + [ 7.7096108, 47.4124057 ], + [ 7.7096746, 47.4127427 ], + [ 7.7096963, 47.4128573 ], + [ 7.7098858, 47.4131963 ], + [ 7.7099462, 47.4133016 ], + [ 7.7099634, 47.4133311 ], + [ 7.7100639, 47.4136859 ], + [ 7.7104039, 47.4140424 ], + [ 7.7106665, 47.4142068 ], + [ 7.7112055999999995, 47.4142022 ], + [ 7.7113098, 47.4142318 ], + [ 7.7114728, 47.414441 ], + [ 7.7115769, 47.4144469 ], + [ 7.7115496, 47.4142686 ], + [ 7.7118493, 47.4142475 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns068", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Chastelenfluh", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Chastelenfluh", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Chastelenfluh", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Chastelenfluh", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8185333, 47.4177407 ], + [ 7.8183541, 47.4176949 ], + [ 7.8182752, 47.4176903 ], + [ 7.8182067, 47.4177149 ], + [ 7.8181484999999995, 47.417756 ], + [ 7.8180857, 47.4178417 ], + [ 7.8180243, 47.4181455 ], + [ 7.8179577, 47.4184771 ], + [ 7.8185481, 47.4185483 ], + [ 7.8190637, 47.4186104 ], + [ 7.8190755, 47.4185272 ], + [ 7.8191112, 47.4184479 ], + [ 7.8193576, 47.4181201 ], + [ 7.819472, 47.4179972 ], + [ 7.8194832, 47.4179145 ], + [ 7.8195701, 47.4178922 ], + [ 7.8197544, 47.417846 ], + [ 7.8200409, 47.4179992 ], + [ 7.8201654, 47.4181729 ], + [ 7.8202414000000005, 47.4183696 ], + [ 7.8201093, 47.418676 ], + [ 7.8199792, 47.4189807 ], + [ 7.8198794, 47.4195712 ], + [ 7.820017, 47.4195286 ], + [ 7.8206687, 47.4193229 ], + [ 7.821427, 47.4190826 ], + [ 7.8223479, 47.4190841 ], + [ 7.8226846, 47.4190365 ], + [ 7.8229112, 47.4190404 ], + [ 7.8234789, 47.4192889 ], + [ 7.823919, 47.4195285 ], + [ 7.8240788, 47.4194604 ], + [ 7.8242221, 47.4194 ], + [ 7.8244193, 47.4193735 ], + [ 7.8248629, 47.4194166 ], + [ 7.8251731, 47.4194874 ], + [ 7.8253626, 47.4195228 ], + [ 7.8255649, 47.4195336 ], + [ 7.8254066, 47.4191871 ], + [ 7.8253356, 47.419008 ], + [ 7.8252747, 47.4188339 ], + [ 7.8251318, 47.4181713 ], + [ 7.8249072, 47.4174283 ], + [ 7.8250114, 47.417426 ], + [ 7.8250612, 47.4174134 ], + [ 7.8250440999999995, 47.4173685 ], + [ 7.8252057, 47.4172739 ], + [ 7.8272286, 47.4172797 ], + [ 7.8272793, 47.4172798 ], + [ 7.8272951, 47.4166202 ], + [ 7.8272928, 47.4161499 ], + [ 7.8272855, 47.4159578 ], + [ 7.8272477, 47.4157733 ], + [ 7.8272054, 47.4156974 ], + [ 7.8269172, 47.4157323 ], + [ 7.8267545, 47.4153983 ], + [ 7.8266129, 47.4147576 ], + [ 7.8266507999999995, 47.4147532 ], + [ 7.8266071, 47.4146358 ], + [ 7.8265270000000005, 47.414466 ], + [ 7.8265025, 47.4144129 ], + [ 7.8264835999999995, 47.4143588 ], + [ 7.8264703, 47.414304 ], + [ 7.8264593, 47.4142054 ], + [ 7.8264714, 47.4140655 ], + [ 7.8264752, 47.413963 ], + [ 7.8264302, 47.413642 ], + [ 7.8264054, 47.4134468 ], + [ 7.8264629, 47.4132415 ], + [ 7.8265474, 47.4131435 ], + [ 7.8265389, 47.4131379 ], + [ 7.8264274, 47.4130723 ], + [ 7.8262260999999995, 47.4130388 ], + [ 7.8261568, 47.4130975 ], + [ 7.8260979, 47.4133433 ], + [ 7.8260982, 47.413380599999996 ], + [ 7.8261052, 47.4134481 ], + [ 7.826109, 47.4135211 ], + [ 7.8258806, 47.4135646 ], + [ 7.8255951, 47.413579 ], + [ 7.8254363, 47.4135583 ], + [ 7.8254182, 47.4135632 ], + [ 7.8253935, 47.4135691 ], + [ 7.8253009, 47.4135915 ], + [ 7.825018, 47.4135593 ], + [ 7.8245834, 47.4135406 ], + [ 7.8244498, 47.4136415 ], + [ 7.8243218, 47.4137382 ], + [ 7.8242329, 47.4138014 ], + [ 7.8242142, 47.4138001 ], + [ 7.8240759, 47.4139634 ], + [ 7.8239032, 47.4141154 ], + [ 7.8237653, 47.4141923 ], + [ 7.8235957, 47.4142055 ], + [ 7.8232506, 47.4142005 ], + [ 7.8231269999999995, 47.4142038 ], + [ 7.8231119, 47.4141742 ], + [ 7.8230053, 47.4141369 ], + [ 7.8226842, 47.4141141 ], + [ 7.8224804, 47.4141116 ], + [ 7.8222819999999995, 47.4141363 ], + [ 7.8216660000000005, 47.4142795 ], + [ 7.8213805, 47.4143329 ], + [ 7.8210827, 47.4143579 ], + [ 7.8208147, 47.4143452 ], + [ 7.8205545999999995, 47.4143278 ], + [ 7.820402, 47.414325 ], + [ 7.8202539, 47.4143324 ], + [ 7.8198207, 47.4143927 ], + [ 7.8195436, 47.4144516 ], + [ 7.8192166, 47.4145059 ], + [ 7.8190519, 47.414517 ], + [ 7.818889, 47.4145093 ], + [ 7.8183006, 47.4144594 ], + [ 7.818134, 47.4144355 ], + [ 7.817756, 47.4143647 ], + [ 7.8176051, 47.4143483 ], + [ 7.8169702999999995, 47.4143218 ], + [ 7.8168907999999995, 47.4143434 ], + [ 7.8169106, 47.4144168 ], + [ 7.8177145, 47.4144409 ], + [ 7.8182792, 47.4145587 ], + [ 7.8190243, 47.4145977 ], + [ 7.8199513, 47.4144684 ], + [ 7.8199661, 47.414991 ], + [ 7.8199796, 47.4149896 ], + [ 7.8199881, 47.4150209 ], + [ 7.8199156, 47.4150275 ], + [ 7.8195939, 47.4152209 ], + [ 7.8193813, 47.4154332 ], + [ 7.8193292, 47.4155515 ], + [ 7.8193741, 47.4156208 ], + [ 7.8195881, 47.4156907 ], + [ 7.8198452, 47.4156999 ], + [ 7.8199026, 47.4158976 ], + [ 7.8197633, 47.4158947 ], + [ 7.8193709, 47.4159563 ], + [ 7.8189135, 47.416053 ], + [ 7.8190943, 47.4163015 ], + [ 7.8193304, 47.4164834 ], + [ 7.8195327, 47.4166024 ], + [ 7.8198006, 47.4167036 ], + [ 7.8201944999999995, 47.4167897 ], + [ 7.8203474, 47.4168876 ], + [ 7.8203475000000005, 47.4169297 ], + [ 7.8210095, 47.4173264 ], + [ 7.8211095, 47.4174095 ], + [ 7.8206144, 47.4174005 ], + [ 7.8203905, 47.417396 ], + [ 7.8201694, 47.4174166 ], + [ 7.8196924, 47.4175487 ], + [ 7.8193152, 47.4176115 ], + [ 7.8189611, 47.4176808 ], + [ 7.8187973, 47.4177271 ], + [ 7.8187584999999995, 47.4177604 ], + [ 7.8185333, 47.4177407 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns175", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Chilpen", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Chilpen", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Chilpen", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Chilpen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.1858492, 46.1643199 ], + [ 6.1856141000000004, 46.1642847 ], + [ 6.1841232999999995, 46.1644735 ], + [ 6.1840216, 46.1645191 ], + [ 6.1838205, 46.164505 ], + [ 6.1837937, 46.1645056 ], + [ 6.1833181, 46.1645811 ], + [ 6.1826001, 46.1642361 ], + [ 6.1811188, 46.1640141 ], + [ 6.1796279, 46.1642029 ], + [ 6.1783545, 46.1647738 ], + [ 6.1774924, 46.1656397 ], + [ 6.1771728, 46.166669 ], + [ 6.1772752, 46.1670594 ], + [ 6.177039, 46.1671653 ], + [ 6.1761768, 46.1680313 ], + [ 6.1758572, 46.1690606 ], + [ 6.1761289, 46.1700965 ], + [ 6.1769505, 46.1709813 ], + [ 6.178197, 46.1715803 ], + [ 6.1793759999999995, 46.171757 ], + [ 6.1795188, 46.1723016 ], + [ 6.1803405, 46.1731864 ], + [ 6.1815871, 46.1737854 ], + [ 6.1830687, 46.1740073 ], + [ 6.1845599, 46.1738185 ], + [ 6.1858334, 46.1732476 ], + [ 6.1866955, 46.1723815 ], + [ 6.1868618, 46.1718455 ], + [ 6.1875181, 46.1719438 ], + [ 6.1879875, 46.1699682 ], + [ 6.1887762, 46.1663879 ], + [ 6.1884539, 46.1661988 ], + [ 6.187795, 46.1657596 ], + [ 6.1858492, 46.1643199 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-21", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8458575, 47.426143 ], + [ 7.8458055, 47.4262379 ], + [ 7.845748, 47.4263274 ], + [ 7.845884, 47.4264722 ], + [ 7.8460284, 47.426626 ], + [ 7.8460529999999995, 47.4266522 ], + [ 7.8460519, 47.4266839 ], + [ 7.8457291, 47.426681 ], + [ 7.845703, 47.426681 ], + [ 7.8456771, 47.4266816 ], + [ 7.8456510999999995, 47.4266827 ], + [ 7.8456252, 47.4266843 ], + [ 7.8455994, 47.4266865 ], + [ 7.8455737, 47.4266892 ], + [ 7.8455481, 47.4266924 ], + [ 7.8455227, 47.4266961 ], + [ 7.8453067999999995, 47.4267297 ], + [ 7.8452859, 47.4267333 ], + [ 7.8452653, 47.4267374 ], + [ 7.8452449, 47.4267421 ], + [ 7.8452248, 47.426747399999996 ], + [ 7.8452051, 47.4267532 ], + [ 7.8451857, 47.4267595 ], + [ 7.8451667, 47.4267664 ], + [ 7.8451481, 47.4267738 ], + [ 7.84513, 47.4267817 ], + [ 7.8451124, 47.4267901 ], + [ 7.8450953, 47.4267989 ], + [ 7.8450788, 47.4268083 ], + [ 7.8450628, 47.426818 ], + [ 7.8450474, 47.4268282 ], + [ 7.8450471, 47.4268404 ], + [ 7.8450463, 47.4268718 ], + [ 7.8450462, 47.4268732 ], + [ 7.8450448999999995, 47.4269234 ], + [ 7.8452863, 47.4270471 ], + [ 7.8455318, 47.4272167 ], + [ 7.845722, 47.427408 ], + [ 7.845725, 47.427414 ], + [ 7.8457751, 47.4275128 ], + [ 7.8458349, 47.4276309 ], + [ 7.845857, 47.4277074 ], + [ 7.8459091, 47.4278876 ], + [ 7.8459486, 47.4281575 ], + [ 7.8459354999999995, 47.4285999 ], + [ 7.8459334, 47.4286729 ], + [ 7.8459104, 47.4288536 ], + [ 7.8459071, 47.4288791 ], + [ 7.8458271, 47.4291295 ], + [ 7.8457083, 47.429337 ], + [ 7.8454307, 47.4296511 ], + [ 7.8454259, 47.4296566 ], + [ 7.8452885, 47.4298633 ], + [ 7.8452801999999995, 47.4300356 ], + [ 7.8455639, 47.4305006 ], + [ 7.8456222, 47.4306703 ], + [ 7.8456392, 47.4307198 ], + [ 7.8456469, 47.430778 ], + [ 7.8460725, 47.4307476 ], + [ 7.8466885, 47.430699 ], + [ 7.846632, 47.4305788 ], + [ 7.8465824, 47.4304732 ], + [ 7.846362, 47.4301205 ], + [ 7.8463418, 47.4299578 ], + [ 7.8463531, 47.4299192 ], + [ 7.8464562, 47.4295509 ], + [ 7.8465464, 47.4291646 ], + [ 7.8466874, 47.4285683 ], + [ 7.8466427, 47.4282064 ], + [ 7.8467244, 47.4277841 ], + [ 7.8468213, 47.4275571 ], + [ 7.8472299, 47.4271416 ], + [ 7.847232, 47.426898 ], + [ 7.847117, 47.4265878 ], + [ 7.8470323, 47.426326 ], + [ 7.8469274, 47.426087 ], + [ 7.8468664, 47.4260999 ], + [ 7.8464651, 47.4261125 ], + [ 7.8458575, 47.426143 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr057", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Neuweg", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Neuweg", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Neuweg", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Neuweg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.2772061, 46.4916878 ], + [ 7.2772011, 46.4915465 ], + [ 7.2771855, 46.4914056 ], + [ 7.2771592, 46.4912655 ], + [ 7.2771224, 46.4911266 ], + [ 7.277075, 46.4909891 ], + [ 7.2770173, 46.4908536 ], + [ 7.2769494, 46.4907203 ], + [ 7.2768716, 46.4905896 ], + [ 7.2767839, 46.490462 ], + [ 7.2766866, 46.4903377 ], + [ 7.2765801, 46.4902171 ], + [ 7.2764646, 46.4901005 ], + [ 7.2763404, 46.4899882 ], + [ 7.2762079, 46.4898806 ], + [ 7.2760674, 46.4897779 ], + [ 7.2759193, 46.4896804 ], + [ 7.275764, 46.4895884 ], + [ 7.275602, 46.4895022 ], + [ 7.2754337, 46.489421899999996 ], + [ 7.2752595, 46.4893478 ], + [ 7.2750799, 46.4892802 ], + [ 7.2748954, 46.4892191 ], + [ 7.2747066, 46.4891647 ], + [ 7.2745139, 46.4891173 ], + [ 7.2743179, 46.4890769 ], + [ 7.2741191, 46.4890436 ], + [ 7.2739181, 46.4890176 ], + [ 7.2737153, 46.4889988 ], + [ 7.2735114, 46.4889874 ], + [ 7.273307, 46.4889834 ], + [ 7.2731025, 46.4889868 ], + [ 7.2728985, 46.4889976 ], + [ 7.2726956, 46.4890158 ], + [ 7.2724944, 46.4890412 ], + [ 7.2722954, 46.4890739 ], + [ 7.2720991999999995, 46.4891137 ], + [ 7.2719062, 46.4891606 ], + [ 7.271717, 46.4892144 ], + [ 7.2715322, 46.489275 ], + [ 7.2713522, 46.4893421 ], + [ 7.2711776, 46.4894157 ], + [ 7.2710088, 46.4894955 ], + [ 7.2708462, 46.4895812 ], + [ 7.2706904, 46.4896727 ], + [ 7.2705417, 46.4897698 ], + [ 7.2704006, 46.4898721 ], + [ 7.2702674, 46.4899793 ], + [ 7.2701425, 46.4900912 ], + [ 7.2700263, 46.4902075 ], + [ 7.269919, 46.4903278 ], + [ 7.269821, 46.4904518 ], + [ 7.2697325, 46.4905792 ], + [ 7.2696538, 46.4907096 ], + [ 7.2695851, 46.4908427 ], + [ 7.2695266, 46.490978 ], + [ 7.2694784, 46.4911154 ], + [ 7.2694407, 46.4912542 ], + [ 7.2694136, 46.4913943 ], + [ 7.2693971, 46.4915351 ], + [ 7.2693913, 46.4916763 ], + [ 7.2693962, 46.4918176 ], + [ 7.2694118, 46.4919584 ], + [ 7.2694381, 46.4920986 ], + [ 7.2694749, 46.4922375 ], + [ 7.2695222, 46.492375 ], + [ 7.2695799, 46.4925105 ], + [ 7.2696477999999995, 46.4926438 ], + [ 7.2697256, 46.4927745 ], + [ 7.2698133, 46.4929021 ], + [ 7.2699105, 46.4930264 ], + [ 7.2700171000000005, 46.4931471 ], + [ 7.2701326, 46.4932637 ], + [ 7.2702567, 46.493376 ], + [ 7.2703893, 46.4934836 ], + [ 7.2705298, 46.4935863 ], + [ 7.2706779, 46.4936838 ], + [ 7.2708331, 46.4937758 ], + [ 7.2709952, 46.493862 ], + [ 7.2711635, 46.4939423 ], + [ 7.2713377, 46.4940164 ], + [ 7.2715173, 46.494084 ], + [ 7.2717017, 46.4941451 ], + [ 7.2718906, 46.4941995 ], + [ 7.2720833, 46.4942469 ], + [ 7.2722793, 46.4942873 ], + [ 7.2724781, 46.4943206 ], + [ 7.2726792, 46.4943467 ], + [ 7.272882, 46.4943654 ], + [ 7.2730859, 46.4943768 ], + [ 7.2732904, 46.4943808 ], + [ 7.2734949, 46.4943774 ], + [ 7.2736989, 46.4943666 ], + [ 7.2739018, 46.4943485 ], + [ 7.274103, 46.494323 ], + [ 7.274302, 46.4942903 ], + [ 7.2744983, 46.4942505 ], + [ 7.2746913, 46.4942036 ], + [ 7.2748805, 46.4941498 ], + [ 7.2750653, 46.4940892 ], + [ 7.2752453, 46.4940221 ], + [ 7.2754199, 46.4939485 ], + [ 7.2755887999999995, 46.4938687 ], + [ 7.2757513, 46.493783 ], + [ 7.2759072, 46.4936914 ], + [ 7.2760559, 46.4935944 ], + [ 7.276197, 46.4934921 ], + [ 7.2763302, 46.4933849 ], + [ 7.276455, 46.4932729 ], + [ 7.2765713, 46.4931567 ], + [ 7.2766785, 46.4930364 ], + [ 7.2767765, 46.4929123 ], + [ 7.276865, 46.4927849 ], + [ 7.2769436, 46.4926545 ], + [ 7.2770123, 46.4925214 ], + [ 7.2770708, 46.492386 ], + [ 7.277119, 46.4922487 ], + [ 7.2771567, 46.4921099 ], + [ 7.2771837999999995, 46.4919698 ], + [ 7.2772003, 46.491829 ], + [ 7.2772061, 46.4916878 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0051", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Gstaad", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Gstaad", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Gstaad", + "lang" : "it-CH" + }, + { + "text" : "Substation Gstaad", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8315386, 47.4468279 ], + [ 7.8315356, 47.4468712 ], + [ 7.8315888000000005, 47.4469381 ], + [ 7.8317048, 47.4470668 ], + [ 7.8318086000000005, 47.4471712 ], + [ 7.8318847, 47.4472491 ], + [ 7.8319548999999995, 47.4473097 ], + [ 7.8319559, 47.4473137 ], + [ 7.831957, 47.4473181 ], + [ 7.8319648, 47.4473499 ], + [ 7.8318968, 47.4475231 ], + [ 7.8316704999999995, 47.4477241 ], + [ 7.8314676, 47.4478551 ], + [ 7.8319583999999995, 47.448135 ], + [ 7.8329205, 47.4486838 ], + [ 7.8329409, 47.4486955 ], + [ 7.8330445, 47.4485667 ], + [ 7.833133, 47.448454 ], + [ 7.8331452, 47.4484341 ], + [ 7.8331562, 47.4484161 ], + [ 7.8332614, 47.4482441 ], + [ 7.8333677999999995, 47.448111 ], + [ 7.8334335, 47.447974 ], + [ 7.8333707, 47.4479238 ], + [ 7.8332952, 47.4479041 ], + [ 7.8332313, 47.4478508 ], + [ 7.8332368, 47.4478092 ], + [ 7.8332603, 47.4477282 ], + [ 7.8332436, 47.447653 ], + [ 7.8332529, 47.4475535 ], + [ 7.8332889, 47.4474372 ], + [ 7.8332388, 47.4473769 ], + [ 7.8332325, 47.4472653 ], + [ 7.8332956, 47.447159 ], + [ 7.8333238, 47.4470687 ], + [ 7.8333064, 47.4469749 ], + [ 7.8333594, 47.4468211 ], + [ 7.8334133999999995, 47.4466147 ], + [ 7.833449, 47.4464463 ], + [ 7.8333935, 47.4463805 ], + [ 7.833352, 47.4462804 ], + [ 7.8332906, 47.4461942 ], + [ 7.8331531, 47.4461716 ], + [ 7.8330103, 47.4461108 ], + [ 7.8329006, 47.4460793 ], + [ 7.8328499, 47.4459921 ], + [ 7.8327918, 47.4459514 ], + [ 7.832757, 47.4459163 ], + [ 7.8326701, 47.4458889 ], + [ 7.8326017, 47.4458364 ], + [ 7.8324839, 47.4457987 ], + [ 7.8323174, 47.4457477 ], + [ 7.8321584, 47.445687 ], + [ 7.8320093, 47.4456255 ], + [ 7.8318662, 47.4456095 ], + [ 7.8317743, 47.4455885 ], + [ 7.8316651, 47.445589 ], + [ 7.8316476999999995, 47.4456048 ], + [ 7.8316427, 47.4456588 ], + [ 7.8317014, 47.445757 ], + [ 7.8318543, 47.4458929 ], + [ 7.8320044, 47.4459579 ], + [ 7.8320861, 47.446026 ], + [ 7.8320364, 47.4461035 ], + [ 7.8319494, 47.4461466 ], + [ 7.8317349, 47.4462136 ], + [ 7.8315779, 47.4462578 ], + [ 7.8315738, 47.4463169 ], + [ 7.8315386, 47.4468279 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr064", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Dubenrain", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Dubenrain", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Dubenrain", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Dubenrain", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.1961646, 46.2414871 ], + [ 6.1974826, 46.2416841 ], + [ 6.1975925, 46.2421022 ], + [ 6.1984156, 46.2429868 ], + [ 6.1996639, 46.2435856 ], + [ 6.2011476, 46.2438074 ], + [ 6.2026405, 46.2436182 ], + [ 6.2039155, 46.2430471 ], + [ 6.2039703, 46.2429922 ], + [ 6.204297, 46.243041 ], + [ 6.20579, 46.2428519 ], + [ 6.2070649, 46.2422807 ], + [ 6.2079278, 46.2414145 ], + [ 6.2082472, 46.2403851 ], + [ 6.2079745, 46.2393493 ], + [ 6.2071514, 46.2384647 ], + [ 6.2070779, 46.2384294 ], + [ 6.2067765, 46.2381056 ], + [ 6.2055282, 46.2375069 ], + [ 6.2041743, 46.2373046 ], + [ 6.2038454, 46.236951 ], + [ 6.2036401, 46.2361708 ], + [ 6.2028171, 46.2352861 ], + [ 6.2015689, 46.2346874 ], + [ 6.2000855, 46.2344657 ], + [ 6.1985928, 46.2346547 ], + [ 6.1982857, 46.2347923 ], + [ 6.1977324, 46.2343593 ], + [ 6.1963706, 46.2338991 ], + [ 6.1963627, 46.2338976 ], + [ 6.1963621, 46.2338975 ], + [ 6.1963196, 46.2338898 ], + [ 6.1948084, 46.2338255 ], + [ 6.1933764, 46.2341666 ], + [ 6.1922405, 46.2348613 ], + [ 6.191573, 46.2358044 ], + [ 6.1915597, 46.2358391 ], + [ 6.1915151, 46.2363194 ], + [ 6.1914735, 46.2364123 ], + [ 6.1914614, 46.2366677 ], + [ 6.1914212, 46.2369094 ], + [ 6.191446, 46.2369946 ], + [ 6.1914394, 46.2371331 ], + [ 6.1916816, 46.2378344 ], + [ 6.1916949, 46.2378583 ], + [ 6.1917696, 46.2379404 ], + [ 6.1917729, 46.2379444 ], + [ 6.1917669, 46.2379462 ], + [ 6.1917674, 46.237947 ], + [ 6.191813, 46.2379937 ], + [ 6.1923067, 46.2386013 ], + [ 6.192459, 46.2386979 ], + [ 6.192496, 46.2387385 ], + [ 6.1925802, 46.2387801 ], + [ 6.1925954, 46.2387957 ], + [ 6.1926643, 46.238828 ], + [ 6.1932138, 46.2391762 ], + [ 6.1936672999999995, 46.2393179 ], + [ 6.1937177, 46.2393428 ], + [ 6.1937283, 46.2393461 ], + [ 6.19379, 46.2393562 ], + [ 6.1937973, 46.2393585 ], + [ 6.1938197, 46.2393689 ], + [ 6.193841, 46.2393721 ], + [ 6.193935, 46.2394015 ], + [ 6.1940933, 46.2400036 ], + [ 6.1949163, 46.2408883 ], + [ 6.1961646, 46.2414871 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-19", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8553134, 47.44968 ], + [ 7.8551812, 47.4497707 ], + [ 7.8547934999999995, 47.4499846 ], + [ 7.8544816, 47.4501596 ], + [ 7.8543685, 47.4502695 ], + [ 7.8542653, 47.4504309 ], + [ 7.8541434, 47.4506245 ], + [ 7.8539657, 47.4509729 ], + [ 7.8537482, 47.4514469 ], + [ 7.8538596, 47.4514604 ], + [ 7.8538661, 47.4514612 ], + [ 7.8538723, 47.4514619 ], + [ 7.8540025, 47.4514777 ], + [ 7.8541435, 47.451482 ], + [ 7.8541424, 47.4515448 ], + [ 7.8541281, 47.4523648 ], + [ 7.8541219, 47.4525002 ], + [ 7.8540966999999995, 47.4526277 ], + [ 7.8540805, 47.4531698 ], + [ 7.8541054, 47.4534255 ], + [ 7.8542173, 47.4536895 ], + [ 7.8543155, 47.4539307 ], + [ 7.854552, 47.4541034 ], + [ 7.8548645, 47.4542876 ], + [ 7.8552343, 47.454204 ], + [ 7.8553596, 47.4541758 ], + [ 7.8556133, 47.4541144 ], + [ 7.8559596, 47.4540167 ], + [ 7.8558376, 47.4539189 ], + [ 7.8557924, 47.4538827 ], + [ 7.8557237, 47.4538684 ], + [ 7.8554079, 47.4538026 ], + [ 7.855172, 47.4536986 ], + [ 7.855173, 47.4535834 ], + [ 7.8551509, 47.4534025 ], + [ 7.8553029, 47.4531901 ], + [ 7.8554828, 47.4529752 ], + [ 7.8553073, 47.4525918 ], + [ 7.8551628000000004, 47.4522761 ], + [ 7.8551229, 47.4520379 ], + [ 7.8550924, 47.451774 ], + [ 7.8550809, 47.4515164 ], + [ 7.8551069, 47.4512007 ], + [ 7.8551034, 47.4507499 ], + [ 7.8551111, 47.4505244 ], + [ 7.8551109, 47.4505051 ], + [ 7.8551368, 47.4501637 ], + [ 7.855164, 47.4500026 ], + [ 7.8552199, 47.4498736 ], + [ 7.8553041, 47.4497058 ], + [ 7.8553134, 47.44968 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr059", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Rütenen", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Rütenen", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Rütenen", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Rütenen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.370425, 47.4174865 ], + [ 7.3704145, 47.4175768 ], + [ 7.3704346, 47.4177681 ], + [ 7.370489, 47.4178926 ], + [ 7.3708881, 47.4180432 ], + [ 7.3713547, 47.4183145 ], + [ 7.3716936, 47.4184293 ], + [ 7.3720026, 47.4185725 ], + [ 7.3722079, 47.418582 ], + [ 7.372372, 47.4185401 ], + [ 7.3723996, 47.418533 ], + [ 7.3724298, 47.4184651 ], + [ 7.3725548, 47.4184119 ], + [ 7.3726366, 47.4184997 ], + [ 7.3727716, 47.4186323 ], + [ 7.372871, 47.4188745 ], + [ 7.3733982, 47.4190451 ], + [ 7.3737352, 47.4190779 ], + [ 7.3739117, 47.4190723 ], + [ 7.3741709, 47.4188412 ], + [ 7.3741387, 47.4187558 ], + [ 7.3741798, 47.4185692 ], + [ 7.3742048, 47.4183519 ], + [ 7.3744911, 47.4180479 ], + [ 7.3745128, 47.4179243 ], + [ 7.3744112, 47.4177478 ], + [ 7.3744918, 47.4176767 ], + [ 7.3740559, 47.4171548 ], + [ 7.3737382, 47.4168784 ], + [ 7.3735371, 47.4166592 ], + [ 7.3734312, 47.4165958 ], + [ 7.3734335, 47.4165537 ], + [ 7.3734346, 47.4165347 ], + [ 7.3732902, 47.4165393 ], + [ 7.3731138, 47.4165557 ], + [ 7.3729811, 47.4165802 ], + [ 7.3728915, 47.4166191 ], + [ 7.3728514, 47.4166546 ], + [ 7.3728508999999995, 47.4166556 ], + [ 7.3728504, 47.4166567 ], + [ 7.37285, 47.4166577 ], + [ 7.3728495, 47.4166588 ], + [ 7.372849, 47.4166598 ], + [ 7.3728486, 47.4166609 ], + [ 7.3728481, 47.416662 ], + [ 7.3728477, 47.416663 ], + [ 7.3728473, 47.4166641 ], + [ 7.3728469, 47.4166651 ], + [ 7.3728465, 47.4166662 ], + [ 7.3728461, 47.4166673 ], + [ 7.3728457, 47.4166684 ], + [ 7.3728454, 47.4166694 ], + [ 7.372845, 47.4166705 ], + [ 7.3728447, 47.4166716 ], + [ 7.3728443, 47.4166726 ], + [ 7.372844, 47.4166737 ], + [ 7.3728437, 47.4166748 ], + [ 7.3728434, 47.4166759 ], + [ 7.3728431, 47.416677 ], + [ 7.3728428, 47.416678 ], + [ 7.3728425, 47.4166791 ], + [ 7.3728422, 47.4166802 ], + [ 7.372842, 47.4166813 ], + [ 7.3728417, 47.4166824 ], + [ 7.3728415, 47.4166835 ], + [ 7.3728412, 47.416684599999996 ], + [ 7.372841, 47.4166856 ], + [ 7.3728408, 47.4166867 ], + [ 7.3728406, 47.4166878 ], + [ 7.3728404, 47.4166889 ], + [ 7.3728402, 47.41669 ], + [ 7.3728401, 47.4166911 ], + [ 7.3728399, 47.4166922 ], + [ 7.3728398, 47.4166933 ], + [ 7.3728396, 47.4166944 ], + [ 7.3728394999999995, 47.4166955 ], + [ 7.3728394, 47.4166966 ], + [ 7.3728393, 47.4166977 ], + [ 7.3728391, 47.4166988 ], + [ 7.3728391, 47.4166999 ], + [ 7.372839, 47.416701 ], + [ 7.3728389, 47.4167021 ], + [ 7.3728388, 47.4167032 ], + [ 7.3728388, 47.4167043 ], + [ 7.3728388, 47.4167054 ], + [ 7.3728387, 47.4167065 ], + [ 7.3728387, 47.4167076 ], + [ 7.3728387, 47.4167087 ], + [ 7.3728387, 47.4167098 ], + [ 7.3728387, 47.4167109 ], + [ 7.3728387, 47.416712 ], + [ 7.3728387, 47.4167131 ], + [ 7.3728388, 47.4167142 ], + [ 7.3728388, 47.4167153 ], + [ 7.3728389, 47.4167163 ], + [ 7.372839, 47.4167174 ], + [ 7.372839, 47.4167185 ], + [ 7.3728391, 47.4167196 ], + [ 7.3728392, 47.4167207 ], + [ 7.3728393, 47.4167218 ], + [ 7.3728394, 47.4167228 ], + [ 7.3728396, 47.4167239 ], + [ 7.3728397, 47.416725 ], + [ 7.3728399, 47.4167261 ], + [ 7.37284, 47.4167271 ], + [ 7.3728402, 47.4167282 ], + [ 7.3728404, 47.4167293 ], + [ 7.3728405, 47.4167304 ], + [ 7.3728407, 47.4167315 ], + [ 7.3728409, 47.4167325 ], + [ 7.3728411, 47.4167336 ], + [ 7.3728414, 47.4167347 ], + [ 7.3728416, 47.4167357 ], + [ 7.3728418, 47.4167368 ], + [ 7.3728421, 47.4167379 ], + [ 7.3728424, 47.416739 ], + [ 7.3728426, 47.41674 ], + [ 7.3728429, 47.4167411 ], + [ 7.3728432, 47.4167421 ], + [ 7.3728435, 47.4167432 ], + [ 7.3728438, 47.4167443 ], + [ 7.3728441, 47.4167453 ], + [ 7.3728445, 47.4167464 ], + [ 7.3728448, 47.4167475 ], + [ 7.3728451, 47.4167485 ], + [ 7.3728455, 47.4167496 ], + [ 7.3728459, 47.4167506 ], + [ 7.3728462, 47.4167517 ], + [ 7.3728466, 47.4167527 ], + [ 7.372847, 47.4167538 ], + [ 7.3728474, 47.4167548 ], + [ 7.3728478, 47.4167559 ], + [ 7.3728483, 47.4167569 ], + [ 7.3728487, 47.416758 ], + [ 7.3728491, 47.416759 ], + [ 7.3728496, 47.41676 ], + [ 7.3728501, 47.4167611 ], + [ 7.3728505, 47.4167621 ], + [ 7.372851, 47.4167631 ], + [ 7.3728515, 47.4167642 ], + [ 7.3728887, 47.4168444 ], + [ 7.3728886, 47.4168455 ], + [ 7.3728885, 47.4168466 ], + [ 7.3728884, 47.4168477 ], + [ 7.3728883, 47.4168489 ], + [ 7.3728882, 47.41685 ], + [ 7.3728881, 47.4168511 ], + [ 7.3728879, 47.4168523 ], + [ 7.3728878, 47.4168534 ], + [ 7.3728876, 47.4168545 ], + [ 7.3728874, 47.4168557 ], + [ 7.3728873, 47.4168568 ], + [ 7.3728871, 47.4168579 ], + [ 7.3728869, 47.416859 ], + [ 7.3728867, 47.4168601 ], + [ 7.3728864, 47.4168613 ], + [ 7.3728862, 47.4168624 ], + [ 7.372886, 47.4168635 ], + [ 7.3728857, 47.4168646 ], + [ 7.3728855, 47.4168658 ], + [ 7.3728852, 47.4168669 ], + [ 7.3728849, 47.416868 ], + [ 7.3728846, 47.4168691 ], + [ 7.3728843, 47.4168702 ], + [ 7.372884, 47.4168713 ], + [ 7.3728837, 47.4168724 ], + [ 7.3728834, 47.4168735 ], + [ 7.3728831, 47.4168747 ], + [ 7.3728827, 47.4168758 ], + [ 7.3728823, 47.4168769 ], + [ 7.372882, 47.416878 ], + [ 7.3728816, 47.4168791 ], + [ 7.3728812, 47.4168802 ], + [ 7.3728808, 47.4168813 ], + [ 7.3728804, 47.4168824 ], + [ 7.37288, 47.4168835 ], + [ 7.3728796, 47.4168846 ], + [ 7.3728791, 47.4168857 ], + [ 7.3728787, 47.4168867 ], + [ 7.3728782, 47.4168878 ], + [ 7.3728778, 47.416888900000004 ], + [ 7.3728773, 47.41689 ], + [ 7.3728768, 47.4168911 ], + [ 7.3728763, 47.4168922 ], + [ 7.3728758, 47.4168933 ], + [ 7.3728753, 47.4168943 ], + [ 7.3728748, 47.4168954 ], + [ 7.3728742, 47.4168965 ], + [ 7.3728736999999995, 47.4168976 ], + [ 7.3728731, 47.4168986 ], + [ 7.3728726, 47.4168997 ], + [ 7.372872, 47.4169008 ], + [ 7.3728714, 47.4169018 ], + [ 7.3728709, 47.4169029 ], + [ 7.3728703, 47.4169039 ], + [ 7.3728697, 47.416905 ], + [ 7.372869, 47.416906 ], + [ 7.3728684, 47.4169071 ], + [ 7.3728678, 47.4169081 ], + [ 7.3728671, 47.4169092 ], + [ 7.3728665, 47.4169102 ], + [ 7.3728658, 47.4169113 ], + [ 7.3728651, 47.4169123 ], + [ 7.3728645, 47.4169133 ], + [ 7.3728638, 47.4169144 ], + [ 7.3728631, 47.4169154 ], + [ 7.3728624, 47.4169164 ], + [ 7.3728617, 47.4169174 ], + [ 7.3728609, 47.4169184 ], + [ 7.3728602, 47.4169195 ], + [ 7.3728595, 47.4169205 ], + [ 7.3728587, 47.4169215 ], + [ 7.3728579, 47.4169225 ], + [ 7.3728572, 47.4169235 ], + [ 7.3728564, 47.4169245 ], + [ 7.3728556, 47.4169255 ], + [ 7.3728548, 47.4169265 ], + [ 7.372854, 47.4169275 ], + [ 7.3728532, 47.4169284 ], + [ 7.3728524, 47.4169294 ], + [ 7.3728516, 47.4169304 ], + [ 7.3728507, 47.4169314 ], + [ 7.3728499, 47.4169323 ], + [ 7.372849, 47.4169333 ], + [ 7.3728482, 47.4169343 ], + [ 7.3728473, 47.4169352 ], + [ 7.3728464, 47.4169362 ], + [ 7.3728455, 47.4169371 ], + [ 7.3728446, 47.4169381 ], + [ 7.3728437, 47.416939 ], + [ 7.3728428, 47.41694 ], + [ 7.3728419, 47.4169409 ], + [ 7.3728409, 47.4169419 ], + [ 7.37284, 47.4169428 ], + [ 7.3728391, 47.4169437 ], + [ 7.3728381, 47.4169446 ], + [ 7.3728371, 47.4169456 ], + [ 7.3728362, 47.4169465 ], + [ 7.3728352, 47.4169474 ], + [ 7.3728342, 47.4169483 ], + [ 7.3728332, 47.4169492 ], + [ 7.3728322, 47.4169501 ], + [ 7.3728312, 47.416951 ], + [ 7.3728302, 47.4169519 ], + [ 7.3728291, 47.4169528 ], + [ 7.3728280999999996, 47.4169537 ], + [ 7.3728271, 47.4169545 ], + [ 7.372826, 47.4169554 ], + [ 7.3728249, 47.4169563 ], + [ 7.3728239, 47.4169571 ], + [ 7.3728228, 47.416958 ], + [ 7.3728217, 47.4169589 ], + [ 7.3728206, 47.4169597 ], + [ 7.3728195, 47.4169606 ], + [ 7.3728184, 47.4169614 ], + [ 7.3728173, 47.4169622 ], + [ 7.3728162, 47.4169631 ], + [ 7.3728151, 47.4169639 ], + [ 7.3728139, 47.4169647 ], + [ 7.3728128, 47.4169656 ], + [ 7.3728117, 47.4169664 ], + [ 7.3728105, 47.4169672 ], + [ 7.3728093, 47.416968 ], + [ 7.3728082, 47.4169688 ], + [ 7.372807, 47.4169696 ], + [ 7.3728058, 47.4169704 ], + [ 7.3728046, 47.4169712 ], + [ 7.3728034000000005, 47.416972 ], + [ 7.3728022, 47.4169727 ], + [ 7.372801, 47.4169735 ], + [ 7.3727998, 47.4169743 ], + [ 7.3727986, 47.416975 ], + [ 7.3727973, 47.4169758 ], + [ 7.3727961, 47.4169765 ], + [ 7.3727948, 47.4169773 ], + [ 7.3727936, 47.416978 ], + [ 7.3727923, 47.4169788 ], + [ 7.3727911, 47.4169795 ], + [ 7.3727898, 47.4169802 ], + [ 7.3727885, 47.416981 ], + [ 7.3727872, 47.4169817 ], + [ 7.3727859, 47.4169824 ], + [ 7.3727847, 47.4169831 ], + [ 7.3727833, 47.4169838 ], + [ 7.372782, 47.4169845 ], + [ 7.3727807, 47.4169852 ], + [ 7.3727794, 47.4169859 ], + [ 7.3727781, 47.4169865 ], + [ 7.3727768, 47.4169872 ], + [ 7.3727754, 47.4169879 ], + [ 7.3727741, 47.4169885 ], + [ 7.3727727, 47.4169892 ], + [ 7.3727713999999995, 47.4169899 ], + [ 7.37277, 47.4169905 ], + [ 7.3727675999999995, 47.4169918 ], + [ 7.3727652, 47.4169931 ], + [ 7.3727629, 47.4169944 ], + [ 7.3727605, 47.4169957 ], + [ 7.3727581, 47.416997 ], + [ 7.3727557, 47.4169983 ], + [ 7.3727533, 47.4169995 ], + [ 7.3727509, 47.4170008 ], + [ 7.3727484, 47.4170021 ], + [ 7.372746, 47.4170033 ], + [ 7.3727436, 47.4170046 ], + [ 7.3727412, 47.4170058 ], + [ 7.3727387, 47.4170071 ], + [ 7.3727363, 47.4170083 ], + [ 7.3727338, 47.4170095 ], + [ 7.3727314, 47.4170108 ], + [ 7.3727289, 47.417012 ], + [ 7.3727264, 47.4170132 ], + [ 7.372724, 47.4170144 ], + [ 7.3727215, 47.4170156 ], + [ 7.372719, 47.4170168 ], + [ 7.3727165, 47.417018 ], + [ 7.372714, 47.4170192 ], + [ 7.3727115, 47.4170204 ], + [ 7.372709, 47.4170216 ], + [ 7.3727065, 47.4170228 ], + [ 7.3727039, 47.4170239 ], + [ 7.3727014, 47.4170251 ], + [ 7.3726989, 47.4170263 ], + [ 7.3726964, 47.4170274 ], + [ 7.3726938, 47.4170286 ], + [ 7.3726913, 47.4170297 ], + [ 7.3726887, 47.4170308 ], + [ 7.3726862, 47.417032 ], + [ 7.3726897, 47.4170376 ], + [ 7.3728477, 47.4172901 ], + [ 7.372515, 47.4174167 ], + [ 7.3724622, 47.4176172 ], + [ 7.3723731, 47.4176023 ], + [ 7.3720139, 47.4175422 ], + [ 7.3716519, 47.4175188 ], + [ 7.3714767, 47.4174496 ], + [ 7.3713217, 47.4174285 ], + [ 7.3712254, 47.4173947 ], + [ 7.3709308, 47.4173905 ], + [ 7.3708106, 47.4173377 ], + [ 7.3706207, 47.4173572 ], + [ 7.370425, 47.4174865 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr052", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Undere Ritzigrund", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Undere Ritzigrund", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Undere Ritzigrund", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Undere Ritzigrund", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.1568119, 47.183558 ], + [ 7.1567339, 47.181204 ], + [ 7.1564754, 47.1788561 ], + [ 7.1560369999999995, 47.1765206 ], + [ 7.1554201, 47.1742039 ], + [ 7.1546262, 47.1719125 ], + [ 7.1536576, 47.1696524 ], + [ 7.152517, 47.1674301 ], + [ 7.1512075, 47.1652515 ], + [ 7.1497327, 47.1631226 ], + [ 7.1480967, 47.1610492 ], + [ 7.146304, 47.159037 ], + [ 7.1443595, 47.1570916 ], + [ 7.1422686, 47.1552182 ], + [ 7.1400369, 47.1534219 ], + [ 7.1376706, 47.1517078 ], + [ 7.1351761, 47.1500804 ], + [ 7.1325605, 47.1485443 ], + [ 7.1298307, 47.1471036 ], + [ 7.1269942, 47.1457622 ], + [ 7.1240589, 47.144524 ], + [ 7.1210328, 47.1433921 ], + [ 7.1179241, 47.1423698 ], + [ 7.1147413, 47.1414597 ], + [ 7.1114932, 47.1406645 ], + [ 7.1081887, 47.1399863 ], + [ 7.1048367, 47.1394269 ], + [ 7.1014465, 47.1389879 ], + [ 7.0980273, 47.1386705 ], + [ 7.0945885, 47.1384754 ], + [ 7.0911394, 47.1384034 ], + [ 7.0876896, 47.1384545 ], + [ 7.0842483, 47.1386287 ], + [ 7.0808251, 47.1389254 ], + [ 7.0774294, 47.1393438 ], + [ 7.0740702, 47.1398828 ], + [ 7.070757, 47.140541 ], + [ 7.0674987, 47.1413165 ], + [ 7.0643042, 47.1422071 ], + [ 7.0611823, 47.1432106 ], + [ 7.0581416, 47.1443241 ], + [ 7.0551903, 47.1455445 ], + [ 7.0523365, 47.1468686 ], + [ 7.049588, 47.1482927 ], + [ 7.0469524, 47.1498129 ], + [ 7.0444369, 47.151425 ], + [ 7.0420484, 47.1531248 ], + [ 7.0397934, 47.1549074 ], + [ 7.0376781, 47.156768 ], + [ 7.0357083, 47.1587016 ], + [ 7.0338894, 47.1607028 ], + [ 7.0322265, 47.1627662 ], + [ 7.030724, 47.1648861 ], + [ 7.0293862, 47.1670567 ], + [ 7.0282166, 47.169272 ], + [ 7.0272186, 47.1715261 ], + [ 7.0263949, 47.1738127 ], + [ 7.0257477, 47.1761255 ], + [ 7.025279, 47.1784582 ], + [ 7.0249898, 47.1808045 ], + [ 7.0248811, 47.1831579 ], + [ 7.0249533, 47.1855119 ], + [ 7.0252061, 47.1878601 ], + [ 7.0256388, 47.1901961 ], + [ 7.0262503, 47.1925135 ], + [ 7.027039, 47.1948058 ], + [ 7.0280027, 47.1970669 ], + [ 7.0291387, 47.1992905 ], + [ 7.0304441, 47.2014705 ], + [ 7.0319152, 47.2036009 ], + [ 7.033548, 47.2056759 ], + [ 7.035338, 47.2076898 ], + [ 7.0372804, 47.209637 ], + [ 7.0393698, 47.2115123 ], + [ 7.0416005, 47.2133105 ], + [ 7.0439665, 47.2150266 ], + [ 7.0464611, 47.2166559 ], + [ 7.0490777, 47.218194 ], + [ 7.0518089, 47.2196366 ], + [ 7.0546474, 47.2209797 ], + [ 7.0575853, 47.2222198 ], + [ 7.0606146, 47.2233533 ], + [ 7.0637269, 47.2243772 ], + [ 7.0669137, 47.2252886 ], + [ 7.0701663, 47.226085 ], + [ 7.0734756, 47.2267643 ], + [ 7.0768328, 47.2273246 ], + [ 7.0802284, 47.2277643 ], + [ 7.0836532, 47.2280823 ], + [ 7.0870977, 47.2282777 ], + [ 7.0905526, 47.2283498 ], + [ 7.0940083, 47.2282986 ], + [ 7.0974552, 47.2281242 ], + [ 7.100884, 47.227827 ], + [ 7.1042853, 47.2274079 ], + [ 7.1076496, 47.226868 ], + [ 7.1109677, 47.2262088 ], + [ 7.1142306, 47.2254321 ], + [ 7.1174292, 47.22454 ], + [ 7.1205548, 47.2235351 ], + [ 7.1235988, 47.22242 ], + [ 7.1265528, 47.2211978 ], + [ 7.1294087, 47.2198719 ], + [ 7.1321587, 47.2184459 ], + [ 7.1347952, 47.2169238 ], + [ 7.1373111, 47.2153097 ], + [ 7.1396994, 47.213608 ], + [ 7.1419535, 47.2118234 ], + [ 7.1440674, 47.2099609 ], + [ 7.1460351, 47.2080255 ], + [ 7.1478514, 47.2060225 ], + [ 7.1495112, 47.2039575 ], + [ 7.1510101, 47.2018361 ], + [ 7.1523438, 47.1996641 ], + [ 7.1535089, 47.1974475 ], + [ 7.154502, 47.1951924 ], + [ 7.1553206, 47.1929049 ], + [ 7.1559624, 47.1905914 ], + [ 7.1564256, 47.1882581 ], + [ 7.156709, 47.1859115 ], + [ 7.1568119, 47.183558 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZJ001", + "country" : "CHE", + "name" : [ + { + "text" : "LSZJ Courtelary", + "lang" : "de-CH" + }, + { + "text" : "LSZJ Courtelary", + "lang" : "fr-CH" + }, + { + "text" : "LSZJ Courtelary", + "lang" : "it-CH" + }, + { + "text" : "LSZJ Courtelary", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Segelfluggruppe Biel", + "lang" : "de-CH" + }, + { + "text" : "Groupe de vol à voile Courtelary", + "lang" : "fr-CH" + }, + { + "text" : "Groupe de vol à voile Courtelary", + "lang" : "it-CH" + }, + { + "text" : "Groupe de vol à voile Courtelary", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleiter", + "lang" : "de-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "fr-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "it-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Cédric Bassin", + "lang" : "de-CH" + }, + { + "text" : "Cédric Bassin", + "lang" : "fr-CH" + }, + { + "text" : "Cédric Bassin", + "lang" : "it-CH" + }, + { + "text" : "Cédric Bassin", + "lang" : "en-GB" + } + ], + "siteURL" : "https://lszj.ch/fr/kontakt-ppr/", + "email" : "chefdaerodrome@lszj.ch", + "phone" : "0041329441280", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8168442, 46.306055 ], + [ 7.8190595, 46.3061745 ], + [ 7.8191726, 46.3060121 ], + [ 7.8191779, 46.3056649 ], + [ 7.8184066, 46.3056189 ], + [ 7.8184532, 46.3059696 ], + [ 7.8180636, 46.3059457 ], + [ 7.8178823, 46.305635 ], + [ 7.8177025, 46.3048017 ], + [ 7.8250447, 46.3046878 ], + [ 7.8246718, 46.3033531 ], + [ 7.824176, 46.3033629 ], + [ 7.8242962, 46.303833 ], + [ 7.8226517, 46.3038494 ], + [ 7.8225303, 46.3033883 ], + [ 7.821605, 46.303413 ], + [ 7.8214311, 46.3026786 ], + [ 7.8205486, 46.3026879 ], + [ 7.8206621, 46.303149 ], + [ 7.8210165, 46.303146 ], + [ 7.8212835, 46.3042031 ], + [ 7.8175845, 46.3042587 ], + [ 7.8174159, 46.3035342 ], + [ 7.8178271, 46.3034914 ], + [ 7.8177200000000004, 46.303024 ], + [ 7.8168063, 46.3030288 ], + [ 7.81709, 46.304264 ], + [ 7.8128252, 46.304333 ], + [ 7.8128471, 46.3048754 ], + [ 7.8172119, 46.3048114 ], + [ 7.8174019999999995, 46.3056339 ], + [ 7.8167491, 46.305637 ], + [ 7.8168442, 46.306055 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSTA003", + "country" : "CHE", + "name" : [ + { + "text" : "LSTA Raron (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSTA Raron (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSTA Raron (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSTA Raron (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Flugplatz Raron", + "lang" : "de-CH" + }, + { + "text" : "Flugplatz Raron", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatz Raron", + "lang" : "it-CH" + }, + { + "text" : "Flugplatz Raron", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Lisa Best", + "lang" : "de-CH" + }, + { + "text" : "Lisa Best", + "lang" : "fr-CH" + }, + { + "text" : "Lisa Best", + "lang" : "it-CH" + }, + { + "text" : "Lisa Best", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.fgo.ch", + "email" : "info@fgo.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.3849421, 47.4095501 ], + [ 7.3847068, 47.4100625 ], + [ 7.3845801, 47.4103421 ], + [ 7.3844347, 47.4109566 ], + [ 7.3843884, 47.4111567 ], + [ 7.3843332, 47.4113953 ], + [ 7.3842263, 47.4117733 ], + [ 7.3840603, 47.4123644 ], + [ 7.3840163, 47.4123731 ], + [ 7.3843913, 47.4126539 ], + [ 7.3843929, 47.4126552 ], + [ 7.3845457, 47.4126737 ], + [ 7.3847164, 47.4127312 ], + [ 7.3848576999999995, 47.4127886 ], + [ 7.3850803, 47.4128681 ], + [ 7.3853565, 47.4129541 ], + [ 7.3855888, 47.4130244 ], + [ 7.3858153, 47.4130838 ], + [ 7.3859617, 47.4130934 ], + [ 7.386154, 47.413087 ], + [ 7.3863629, 47.413089 ], + [ 7.3865839, 47.4131248 ], + [ 7.3868265, 47.4131769 ], + [ 7.3870661, 47.4131841 ], + [ 7.3873466, 47.413135 ], + [ 7.3874856, 47.4130764 ], + [ 7.3876029, 47.4130269 ], + [ 7.3878268, 47.4129256 ], + [ 7.3879965, 47.4128336 ], + [ 7.3882294, 47.4127283 ], + [ 7.3883535, 47.412676 ], + [ 7.3885146, 47.4126448 ], + [ 7.3886616, 47.412639 ], + [ 7.3888258, 47.4126185 ], + [ 7.3889381, 47.4126 ], + [ 7.3890656, 47.4125903 ], + [ 7.3892379, 47.4126008 ], + [ 7.3894616, 47.4126174 ], + [ 7.3895953, 47.4126132 ], + [ 7.3897368, 47.4126031 ], + [ 7.3899485, 47.4125736 ], + [ 7.3901958, 47.4125267 ], + [ 7.3904311, 47.4124562 ], + [ 7.3904482, 47.4124511 ], + [ 7.3906843, 47.4123583 ], + [ 7.3908494, 47.4122922 ], + [ 7.3911071, 47.412177 ], + [ 7.3910938, 47.4121595 ], + [ 7.3910219999999995, 47.4120383 ], + [ 7.3915278, 47.4117119 ], + [ 7.3917684999999995, 47.4115566 ], + [ 7.3923681, 47.4113094 ], + [ 7.3927351, 47.4112353 ], + [ 7.3930901, 47.4111157 ], + [ 7.393557, 47.4109675 ], + [ 7.3940788, 47.410906 ], + [ 7.3946552, 47.410821 ], + [ 7.3946911, 47.4105857 ], + [ 7.3949882, 47.4103728 ], + [ 7.3949982, 47.4103453 ], + [ 7.3950441, 47.4102194 ], + [ 7.3951296, 47.409985 ], + [ 7.3951597, 47.4099023 ], + [ 7.3954371, 47.4096657 ], + [ 7.3954441, 47.4095332 ], + [ 7.3954663, 47.4091127 ], + [ 7.3953666, 47.4090474 ], + [ 7.3953352, 47.40897 ], + [ 7.3951953, 47.4087603 ], + [ 7.3951301, 47.4086081 ], + [ 7.3946814, 47.4084713 ], + [ 7.3941294, 47.4083029 ], + [ 7.3939622, 47.4083605 ], + [ 7.3938013, 47.4084159 ], + [ 7.3936494, 47.4084683 ], + [ 7.3934509, 47.4085368 ], + [ 7.3930532, 47.4084483 ], + [ 7.3929788, 47.4084317 ], + [ 7.392808, 47.4084626 ], + [ 7.3923161, 47.4085516 ], + [ 7.3920751, 47.4085952 ], + [ 7.3919946, 47.4086134 ], + [ 7.3919333, 47.4086241 ], + [ 7.391901, 47.4086251 ], + [ 7.3918216, 47.4086278 ], + [ 7.3915694, 47.4086473 ], + [ 7.3913167, 47.4086669 ], + [ 7.3910591, 47.4086868 ], + [ 7.3910532, 47.408687 ], + [ 7.3907874, 47.4086964 ], + [ 7.3902436, 47.4087155 ], + [ 7.3898834, 47.4087281 ], + [ 7.3894803, 47.4087429 ], + [ 7.3894788, 47.4086859 ], + [ 7.3894801, 47.4085364 ], + [ 7.3893834, 47.4085405 ], + [ 7.389163, 47.4085534 ], + [ 7.3888227, 47.4085969 ], + [ 7.3883085, 47.4086462 ], + [ 7.3878922, 47.4086579 ], + [ 7.3876807, 47.4086721 ], + [ 7.3874088, 47.4086773 ], + [ 7.3872941, 47.4086894 ], + [ 7.3871409, 47.4086737 ], + [ 7.3871084, 47.4086596 ], + [ 7.387097, 47.4086376 ], + [ 7.3870892, 47.4085734 ], + [ 7.3870904, 47.4085323 ], + [ 7.3868333, 47.408547 ], + [ 7.3867278, 47.4085557 ], + [ 7.3865666, 47.4085682 ], + [ 7.386438, 47.4085742 ], + [ 7.3863123, 47.4085814 ], + [ 7.3861945, 47.4085867 ], + [ 7.3860726, 47.408591 ], + [ 7.3859269, 47.4085955 ], + [ 7.3858156, 47.4085975 ], + [ 7.385717, 47.4086002 ], + [ 7.3855931, 47.408601 ], + [ 7.3855129, 47.4085906 ], + [ 7.385447, 47.40858 ], + [ 7.3851914, 47.4089981 ], + [ 7.3849421, 47.4095501 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns005", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Erhollen - Chlummen", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Erhollen - Chlummen", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Erhollen - Chlummen", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Erhollen - Chlummen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.1175234, 46.1498751 ], + [ 6.1174703, 46.1499284 ], + [ 6.1174443, 46.14994 ], + [ 6.1165815, 46.1508055 ], + [ 6.1162608, 46.1518347 ], + [ 6.1165313, 46.1528707 ], + [ 6.1173517, 46.153756 ], + [ 6.1185971, 46.1543556 ], + [ 6.1190381, 46.154422 ], + [ 6.1190558, 46.1544305 ], + [ 6.1205367, 46.1546533 ], + [ 6.1220275, 46.1544653 ], + [ 6.1233012, 46.153895 ], + [ 6.124164, 46.1530295 ], + [ 6.1244845, 46.1520003 ], + [ 6.1242139, 46.1509643 ], + [ 6.1233934, 46.1500791 ], + [ 6.122148, 46.1494795 ], + [ 6.1220183, 46.1494599 ], + [ 6.1217685, 46.1493397 ], + [ 6.1202878, 46.1491169 ], + [ 6.1187971, 46.1493049 ], + [ 6.1175234, 46.1498751 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-43", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.0137968, 46.1425229 ], + [ 6.013769, 46.1425386 ], + [ 6.0136252, 46.1425337 ], + [ 6.0135172, 46.1424459 ], + [ 6.0133295, 46.1422048 ], + [ 6.0132451, 46.1421539 ], + [ 6.013081, 46.1420997 ], + [ 6.0129837, 46.1421165 ], + [ 6.0128963, 46.1421151 ], + [ 6.0128111, 46.142125 ], + [ 6.0127399, 46.1421432 ], + [ 6.0127324, 46.1421599 ], + [ 6.0126891, 46.142191 ], + [ 6.0126584, 46.1422009 ], + [ 6.0125741, 46.1422024 ], + [ 6.0124608, 46.1421839 ], + [ 6.0123798, 46.1421449 ], + [ 6.0123646, 46.1421471 ], + [ 6.0123256, 46.1421362 ], + [ 6.0122906, 46.1421209 ], + [ 6.0122625, 46.1421267 ], + [ 6.012194, 46.142119 ], + [ 6.0121078, 46.1421183 ], + [ 6.0120254, 46.142125 ], + [ 6.0119572, 46.142133 ], + [ 6.0119063, 46.1421451 ], + [ 6.0117588, 46.1421641 ], + [ 6.0117375, 46.1421688 ], + [ 6.0116595, 46.1421745 ], + [ 6.0116223, 46.1421721 ], + [ 6.011518, 46.1421736 ], + [ 6.0114272, 46.1421684 ], + [ 6.0114086, 46.1421638 ], + [ 6.0112976, 46.1421495 ], + [ 6.0111548, 46.142111 ], + [ 6.0110393, 46.1420315 ], + [ 6.0110062, 46.1419839 ], + [ 6.0109495, 46.1419353 ], + [ 6.0109144, 46.1419286 ], + [ 6.0108564, 46.1419467 ], + [ 6.0107865, 46.1419862 ], + [ 6.0107602, 46.1420226 ], + [ 6.0107325, 46.1420654 ], + [ 6.0107235, 46.1421164 ], + [ 6.0106986, 46.1421571 ], + [ 6.0106759, 46.1421613 ], + [ 6.010639, 46.1421896 ], + [ 6.0105773, 46.1422242 ], + [ 6.0105149, 46.1422471 ], + [ 6.0104949, 46.1422482 ], + [ 6.0104751, 46.1422406 ], + [ 6.0104162, 46.1422289 ], + [ 6.0103632, 46.1422279 ], + [ 6.0102654, 46.1422195 ], + [ 6.0102509, 46.1422131 ], + [ 6.0101707, 46.1421959 ], + [ 6.0101243, 46.142213 ], + [ 6.0100218, 46.1421844 ], + [ 6.0099186, 46.1421613 ], + [ 6.0098722, 46.1421583 ], + [ 6.0098402, 46.1421507 ], + [ 6.0097304, 46.1421029 ], + [ 6.0097079, 46.1421086 ], + [ 6.0096033, 46.1420923 ], + [ 6.0095635, 46.1421102 ], + [ 6.0095159, 46.1421529 ], + [ 6.0094581, 46.1422635 ], + [ 6.0095068, 46.1422855 ], + [ 6.0095161, 46.1423113 ], + [ 6.0095135, 46.1423532 ], + [ 6.0095237, 46.1424303 ], + [ 6.0094868, 46.1424686 ], + [ 6.0093943, 46.1425262 ], + [ 6.0092662, 46.1425911 ], + [ 6.0092133, 46.1426272 ], + [ 6.0091483, 46.1426415 ], + [ 6.0090432, 46.1426497 ], + [ 6.0090166, 46.1426586 ], + [ 6.0090028, 46.142669 ], + [ 6.0089291, 46.1426936 ], + [ 6.0088812, 46.1427198 ], + [ 6.0087842, 46.1427609 ], + [ 6.0087277, 46.1427779 ], + [ 6.008674, 46.1427907 ], + [ 6.0086462, 46.142801 ], + [ 6.008571, 46.1428117 ], + [ 6.0085476, 46.142819 ], + [ 6.0084423, 46.1428123 ], + [ 6.0082659, 46.1427851 ], + [ 6.0080499, 46.1426939 ], + [ 6.0079451, 46.1426721 ], + [ 6.007692, 46.1425951 ], + [ 6.007542, 46.1425249 ], + [ 6.0074446, 46.1424718 ], + [ 6.0073561, 46.1423909 ], + [ 6.0073103, 46.1423612 ], + [ 6.0072192, 46.1423229 ], + [ 6.0071448, 46.1422772 ], + [ 6.0070619, 46.1422365 ], + [ 6.0069143, 46.1421891 ], + [ 6.0067874, 46.1421453 ], + [ 6.0067412, 46.1421322 ], + [ 6.0066047, 46.1421079 ], + [ 6.0063122, 46.1422385 ], + [ 6.0061904, 46.1422537 ], + [ 6.0049157, 46.1428226 ], + [ 6.0040511, 46.1436872 ], + [ 6.0037284, 46.144716 ], + [ 6.0039967, 46.1457524 ], + [ 6.0048152, 46.1466384 ], + [ 6.0060592, 46.1472394 ], + [ 6.0075394, 46.1474636 ], + [ 6.0079768, 46.1474089 ], + [ 6.0080338, 46.1474175 ], + [ 6.0095248, 46.147231 ], + [ 6.0107996, 46.1466621 ], + [ 6.010944, 46.1465176 ], + [ 6.0119459, 46.1463922 ], + [ 6.0132206, 46.1458232 ], + [ 6.0140851, 46.1449585 ], + [ 6.0144076, 46.1439297 ], + [ 6.0141391, 46.1428934 ], + [ 6.0137968, 46.1425229 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-37", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5372752, 47.5212356 ], + [ 7.5372919, 47.5213452 ], + [ 7.5373966, 47.5220497 ], + [ 7.5374906, 47.5226786 ], + [ 7.5374158, 47.5233767 ], + [ 7.5374127, 47.5234052 ], + [ 7.5379271, 47.5234989 ], + [ 7.5380027, 47.5234984 ], + [ 7.53852, 47.5233216 ], + [ 7.5385936000000004, 47.5232962 ], + [ 7.5386406, 47.5232571 ], + [ 7.5386687, 47.5232079 ], + [ 7.5386801, 47.523158 ], + [ 7.5386754, 47.5230488 ], + [ 7.538658, 47.5229516 ], + [ 7.5386444, 47.5228903 ], + [ 7.53864, 47.5228704 ], + [ 7.5385926, 47.5226578 ], + [ 7.5385173, 47.5223202 ], + [ 7.5385077, 47.5222345 ], + [ 7.5385229, 47.5221923 ], + [ 7.5385393, 47.5221431 ], + [ 7.5386786, 47.5218815 ], + [ 7.538657, 47.5217483 ], + [ 7.5385758, 47.5216506 ], + [ 7.5381715, 47.5213866 ], + [ 7.5380212, 47.5212452 ], + [ 7.5379244, 47.5210998 ], + [ 7.5378786, 47.5209778 ], + [ 7.5378203, 47.5208332 ], + [ 7.5378234, 47.5207717 ], + [ 7.5375116, 47.5210356 ], + [ 7.5372752, 47.5212356 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns146", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Kuegraben - Weiher", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Kuegraben - Weiher", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Kuegraben - Weiher", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Kuegraben - Weiher", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8631813, 47.4842031 ], + [ 7.8631872, 47.4842344 ], + [ 7.8631071, 47.4842417 ], + [ 7.8630648, 47.4842472 ], + [ 7.8630230999999995, 47.4842542 ], + [ 7.862982, 47.4842629 ], + [ 7.8628397, 47.4842979 ], + [ 7.8626997, 47.4843369 ], + [ 7.8625621, 47.4843797 ], + [ 7.8625083, 47.4843989 ], + [ 7.8624565, 47.4844206 ], + [ 7.8624072, 47.4844448 ], + [ 7.8620985, 47.484607 ], + [ 7.861963, 47.4846741 ], + [ 7.8617425999999995, 47.4847736 ], + [ 7.861512, 47.4848751 ], + [ 7.8613938999999995, 47.4849159 ], + [ 7.8612772, 47.4849585 ], + [ 7.8611618, 47.4850027 ], + [ 7.8610242, 47.4850779 ], + [ 7.8609265, 47.4851336 ], + [ 7.8608236, 47.4851848 ], + [ 7.8607157999999995, 47.4852313 ], + [ 7.8605506, 47.4852971 ], + [ 7.8604699, 47.4853314 ], + [ 7.8603933, 47.4853698 ], + [ 7.8603214999999995, 47.4854123 ], + [ 7.8602549, 47.4854584 ], + [ 7.8601947, 47.4855029 ], + [ 7.8601367, 47.4855488 ], + [ 7.8600811, 47.4855959 ], + [ 7.8600224, 47.4856285 ], + [ 7.8599035, 47.4856925 ], + [ 7.8598089, 47.4857509 ], + [ 7.8597182, 47.4858121 ], + [ 7.8596316, 47.485876 ], + [ 7.8595904999999995, 47.4859062 ], + [ 7.8595532, 47.4859386 ], + [ 7.85952, 47.485973 ], + [ 7.8594697, 47.4860166 ], + [ 7.8593687, 47.4861513 ], + [ 7.8593448, 47.4861853 ], + [ 7.8593250999999995, 47.4862206 ], + [ 7.8593098, 47.4862568 ], + [ 7.859299, 47.4862938 ], + [ 7.8592927, 47.4863313 ], + [ 7.8592897, 47.4863988 ], + [ 7.8592898, 47.4864663 ], + [ 7.8592932, 47.4865338 ], + [ 7.8593012, 47.4866392 ], + [ 7.8593221, 47.4867439 ], + [ 7.8593559, 47.486847 ], + [ 7.8594093, 47.4869197 ], + [ 7.8594722, 47.4869889 ], + [ 7.8595441, 47.4870539 ], + [ 7.8596353, 47.4871175 ], + [ 7.859788, 47.4872171 ], + [ 7.859987, 47.4873398 ], + [ 7.8600872, 47.4874005 ], + [ 7.860296, 47.4875186 ], + [ 7.8603473, 47.4875459 ], + [ 7.8604018, 47.4875702 ], + [ 7.8604589, 47.4875914 ], + [ 7.8605184999999995, 47.4876094 ], + [ 7.860580000000001, 47.487624 ], + [ 7.8606431, 47.4876352 ], + [ 7.8609067, 47.4876764 ], + [ 7.8609658, 47.487688 ], + [ 7.8610233, 47.4877028 ], + [ 7.8610789, 47.4877206 ], + [ 7.8611322, 47.4877414 ], + [ 7.8611828, 47.4877651 ], + [ 7.8613956, 47.4878605 ], + [ 7.8615426, 47.4879216 ], + [ 7.8617007999999995, 47.4879826 ], + [ 7.8618192, 47.4880195 ], + [ 7.8619399, 47.4880529 ], + [ 7.8620626, 47.4880826 ], + [ 7.8619599000000004, 47.4880332 ], + [ 7.8618651, 47.4879771 ], + [ 7.8617791, 47.4879148 ], + [ 7.8617361, 47.4878829 ], + [ 7.8616974, 47.4878487 ], + [ 7.8616631, 47.4878124 ], + [ 7.8616335, 47.4877742 ], + [ 7.8614947, 47.4875852 ], + [ 7.8614446000000004, 47.4875236 ], + [ 7.8613885, 47.4874645 ], + [ 7.8613265, 47.4874081 ], + [ 7.8612755, 47.4873686 ], + [ 7.8612196, 47.4873321 ], + [ 7.8611593, 47.4872991 ], + [ 7.8610951, 47.4872697 ], + [ 7.8610223999999995, 47.4872366 ], + [ 7.8609528, 47.4872006 ], + [ 7.8608866, 47.4871617 ], + [ 7.8607976, 47.4870945 ], + [ 7.8607186, 47.4870217 ], + [ 7.8606504, 47.486944 ], + [ 7.8606194, 47.4869067 ], + [ 7.8605926, 47.4868679 ], + [ 7.8605701, 47.4868279 ], + [ 7.8605244, 47.4867596 ], + [ 7.8605158, 47.4866965 ], + [ 7.8605382, 47.4866178 ], + [ 7.8605992, 47.4865588 ], + [ 7.8606236, 47.4865194 ], + [ 7.8606531, 47.4864816 ], + [ 7.8606874, 47.4864458 ], + [ 7.8607262, 47.4864121 ], + [ 7.8607692, 47.4863809 ], + [ 7.8608162, 47.4863524 ], + [ 7.8608699, 47.4863216 ], + [ 7.8609262, 47.4862929 ], + [ 7.860985, 47.4862666 ], + [ 7.8610600999999996, 47.4862356 ], + [ 7.8612489, 47.4861341 ], + [ 7.8615033, 47.4860148 ], + [ 7.861607, 47.4859673 ], + [ 7.8617048, 47.4859145 ], + [ 7.8617962, 47.4858566 ], + [ 7.8618602, 47.485805 ], + [ 7.8619263, 47.4857547 ], + [ 7.8619945, 47.4857057 ], + [ 7.8621028, 47.4856394 ], + [ 7.8622145, 47.4855759 ], + [ 7.8623296, 47.4855151 ], + [ 7.8624732999999996, 47.4854368 ], + [ 7.8626192, 47.4853605 ], + [ 7.8627674, 47.4852862 ], + [ 7.8628519, 47.4852425 ], + [ 7.8629385, 47.4852007 ], + [ 7.863027, 47.4851608 ], + [ 7.8631331, 47.4851147 ], + [ 7.8632349, 47.4850644 ], + [ 7.8633322, 47.4850101 ], + [ 7.8633313, 47.4850053 ], + [ 7.8633934, 47.4849704 ], + [ 7.8634029, 47.4849655 ], + [ 7.8634129999999995, 47.484961 ], + [ 7.8634236, 47.4849571 ], + [ 7.8634346, 47.4849537 ], + [ 7.8634459, 47.4849509 ], + [ 7.8634575, 47.4849487 ], + [ 7.8634693, 47.4849471 ], + [ 7.8634813, 47.484946 ], + [ 7.8634934, 47.4849457 ], + [ 7.8635054, 47.4849459 ], + [ 7.8635174, 47.4849467 ], + [ 7.8635293, 47.4849482 ], + [ 7.8635409, 47.4849503 ], + [ 7.8636385, 47.4849702 ], + [ 7.8636653, 47.484976 ], + [ 7.8636918, 47.4849823 ], + [ 7.863718, 47.4849891 ], + [ 7.8637439, 47.4849965 ], + [ 7.8637695, 47.4850043 ], + [ 7.8637948, 47.4850127 ], + [ 7.8638197, 47.4850216 ], + [ 7.8638441, 47.4850309 ], + [ 7.8638682, 47.4850408 ], + [ 7.8638918, 47.4850511 ], + [ 7.8639149, 47.4850619 ], + [ 7.8639376, 47.4850731 ], + [ 7.864179, 47.4851965 ], + [ 7.8641965, 47.4852058 ], + [ 7.8642138, 47.4852154 ], + [ 7.8642306, 47.4852252 ], + [ 7.8642472, 47.4852354 ], + [ 7.8642633, 47.4852458 ], + [ 7.8644067, 47.485135 ], + [ 7.8648504, 47.4847924 ], + [ 7.8648853, 47.4847661 ], + [ 7.8646468, 47.4846005 ], + [ 7.8643106, 47.4843835 ], + [ 7.8640672, 47.4842261 ], + [ 7.8640527, 47.4842171 ], + [ 7.8640377, 47.4842084 ], + [ 7.8640223, 47.4842 ], + [ 7.8640064, 47.4841921 ], + [ 7.8639902, 47.4841845 ], + [ 7.8639736, 47.4841773 ], + [ 7.8639566, 47.4841705 ], + [ 7.8638291, 47.4841214 ], + [ 7.8638046, 47.4841017 ], + [ 7.8636793, 47.4840931 ], + [ 7.8636646, 47.4840921 ], + [ 7.8635804, 47.4841535 ], + [ 7.8635738, 47.4841579 ], + [ 7.8635666, 47.4841618 ], + [ 7.8635589, 47.4841651 ], + [ 7.8635507, 47.484168 ], + [ 7.8635421, 47.4841703 ], + [ 7.8635333, 47.484172 ], + [ 7.8635242, 47.4841731 ], + [ 7.8631813, 47.4842031 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns276", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Farnsberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Farnsberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Farnsberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Farnsberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.6181804, 46.5570325 ], + [ 6.6181772, 46.5568912 ], + [ 6.6181632, 46.5567502 ], + [ 6.6181386, 46.55661 ], + [ 6.6181034, 46.5564708 ], + [ 6.6180577, 46.5563331 ], + [ 6.6180015999999995, 46.5561972 ], + [ 6.6179352, 46.5560635 ], + [ 6.6178589, 46.5559324 ], + [ 6.6177726, 46.5558043 ], + [ 6.6176768, 46.5556794 ], + [ 6.6175716, 46.5555582 ], + [ 6.6174574, 46.5554409 ], + [ 6.6173344, 46.5553279 ], + [ 6.617203, 46.5552195 ], + [ 6.6170636, 46.555116 ], + [ 6.6169166, 46.5550177 ], + [ 6.6167622, 46.5549248 ], + [ 6.6166011000000005, 46.5548377 ], + [ 6.6164335, 46.5547564 ], + [ 6.6162600000000005, 46.5546813 ], + [ 6.6160811, 46.5546126 ], + [ 6.6158971, 46.5545504 ], + [ 6.6157088, 46.554495 ], + [ 6.6155164, 46.5544465 ], + [ 6.6153207, 46.5544049 ], + [ 6.6151221, 46.5543705 ], + [ 6.6149211, 46.5543433 ], + [ 6.6147183, 46.5543234 ], + [ 6.6145143, 46.5543108 ], + [ 6.6143097, 46.5543056 ], + [ 6.6141049, 46.5543078 ], + [ 6.6139005, 46.5543174 ], + [ 6.6136972, 46.5543344 ], + [ 6.6134955, 46.5543587 ], + [ 6.6132957999999995, 46.5543902 ], + [ 6.6130989, 46.5544289 ], + [ 6.6129051, 46.5544747 ], + [ 6.6127151, 46.5545273 ], + [ 6.6125293, 46.5545868 ], + [ 6.6123483, 46.5546529 ], + [ 6.6121725, 46.5547255 ], + [ 6.6120025, 46.5548043 ], + [ 6.6118387, 46.5548891 ], + [ 6.6116816, 46.5549797 ], + [ 6.6115316, 46.5550759 ], + [ 6.611389, 46.5551773 ], + [ 6.6112544, 46.5552838 ], + [ 6.611128, 46.5553949 ], + [ 6.6110102, 46.5555105 ], + [ 6.6109013, 46.5556302 ], + [ 6.6108017, 46.5557537 ], + [ 6.6107116, 46.5558805 ], + [ 6.6106312, 46.5560105 ], + [ 6.6105608, 46.5561432 ], + [ 6.6105006, 46.5562782 ], + [ 6.6104507, 46.5564152 ], + [ 6.6104112, 46.5565539 ], + [ 6.6103822999999995, 46.5566937 ], + [ 6.6103641, 46.5568345 ], + [ 6.6103566, 46.5569757 ], + [ 6.6103598, 46.5571169 ], + [ 6.6103737, 46.5572579 ], + [ 6.6103983, 46.5573981 ], + [ 6.6104335, 46.5575373 ], + [ 6.6104792, 46.5576751 ], + [ 6.6105353000000004, 46.5578109 ], + [ 6.6106016, 46.5579446 ], + [ 6.6106779, 46.5580757 ], + [ 6.6107642, 46.5582039 ], + [ 6.61086, 46.5583287 ], + [ 6.6109652, 46.55845 ], + [ 6.6110793999999995, 46.5585673 ], + [ 6.6112023, 46.5586802 ], + [ 6.6113337, 46.5587886 ], + [ 6.6114730999999995, 46.5588922 ], + [ 6.6116202, 46.5589905 ], + [ 6.6117745, 46.5590834 ], + [ 6.6119357, 46.5591706 ], + [ 6.6121033, 46.5592518 ], + [ 6.6122768, 46.5593269 ], + [ 6.6124557, 46.5593956 ], + [ 6.6126397, 46.5594578 ], + [ 6.6128281, 46.5595132 ], + [ 6.6130204, 46.5595618 ], + [ 6.6132162, 46.5596034 ], + [ 6.6134148, 46.5596378 ], + [ 6.6136158, 46.559665 ], + [ 6.6138186, 46.5596849 ], + [ 6.6140226, 46.5596975 ], + [ 6.6142273, 46.5597027 ], + [ 6.6144321, 46.5597004 ], + [ 6.6146365, 46.5596908 ], + [ 6.6148398, 46.5596739 ], + [ 6.6150416, 46.5596496 ], + [ 6.6152412, 46.5596181 ], + [ 6.6154382, 46.5595794 ], + [ 6.615632, 46.5595336 ], + [ 6.615822, 46.5594809 ], + [ 6.6160078, 46.5594214 ], + [ 6.6161888, 46.5593553 ], + [ 6.6163646, 46.5592828 ], + [ 6.6165346, 46.559204 ], + [ 6.6166984, 46.5591191 ], + [ 6.6168555, 46.5590285 ], + [ 6.6170056, 46.5589323 ], + [ 6.6171481, 46.5588309 ], + [ 6.6172828, 46.5587244 ], + [ 6.6174092, 46.558613199999996 ], + [ 6.6175269, 46.5584976 ], + [ 6.6176358, 46.558377899999996 ], + [ 6.6177354, 46.5582545 ], + [ 6.6178255, 46.5581276 ], + [ 6.6179059, 46.5579977 ], + [ 6.6179763, 46.557865 ], + [ 6.6180365, 46.5577299 ], + [ 6.6180864, 46.5575929 ], + [ 6.6181258, 46.5574543 ], + [ 6.6181547, 46.5573144 ], + [ 6.6181729, 46.5571737 ], + [ 6.6181804, 46.5570325 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0100", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Romanel", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Romanel", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Romanel", + "lang" : "it-CH" + }, + { + "text" : "Substation Romanel", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.3114937, 46.6172417 ], + [ 8.311486, 46.6171005 ], + [ 8.3114677, 46.6169598 ], + [ 8.3114386, 46.6168199 ], + [ 8.311399, 46.6166813 ], + [ 8.3113489, 46.6165443 ], + [ 8.3112885, 46.6164093 ], + [ 8.3112179, 46.6162766 ], + [ 8.3111374, 46.6161467 ], + [ 8.311047, 46.6160199 ], + [ 8.3109472, 46.6158964 ], + [ 8.3108381, 46.6157768 ], + [ 8.3107201, 46.6156613 ], + [ 8.3105935, 46.6155501 ], + [ 8.3104586, 46.6154437 ], + [ 8.310315899999999, 46.6153423 ], + [ 8.3101656, 46.6152462 ], + [ 8.3100082, 46.6151557 ], + [ 8.3098442, 46.6150709 ], + [ 8.3096739, 46.6149922 ], + [ 8.3094979, 46.6149197 ], + [ 8.3093166, 46.6148537 ], + [ 8.3091306, 46.6147942 ], + [ 8.3089403, 46.6147416 ], + [ 8.3087463, 46.614696 ], + [ 8.3085491, 46.6146573 ], + [ 8.3083492, 46.6146259 ], + [ 8.3081472, 46.6146017 ], + [ 8.3079436, 46.6145848 ], + [ 8.3077391, 46.6145752 ], + [ 8.3075341, 46.6145731 ], + [ 8.3073292, 46.6145784 ], + [ 8.3071249, 46.614591 ], + [ 8.306922, 46.614611 ], + [ 8.3067208, 46.6146383 ], + [ 8.306522, 46.6146728 ], + [ 8.306326, 46.6147144 ], + [ 8.3061335, 46.614762999999996 ], + [ 8.305945, 46.6148185 ], + [ 8.3057609, 46.6148808 ], + [ 8.3055818, 46.6149496 ], + [ 8.3054082, 46.6150247 ], + [ 8.3052405, 46.615106 ], + [ 8.3050792, 46.6151933 ], + [ 8.3049248, 46.6152862 ], + [ 8.3047776, 46.6153846 ], + [ 8.3046382, 46.6154881 ], + [ 8.3045067, 46.6155966 ], + [ 8.3043837, 46.6157096 ], + [ 8.3042694, 46.6158269 ], + [ 8.3041642, 46.6159482 ], + [ 8.3040684, 46.6160731 ], + [ 8.3039822, 46.6162013 ], + [ 8.3039058, 46.6163324 ], + [ 8.3038395, 46.6164661 ], + [ 8.3037834, 46.616602 ], + [ 8.3037378, 46.6167397 ], + [ 8.3037026, 46.6168789 ], + [ 8.3036781, 46.6170192 ], + [ 8.3036643, 46.6171602 ], + [ 8.3036612, 46.6173014 ], + [ 8.3036688, 46.6174426 ], + [ 8.3036871, 46.6175833 ], + [ 8.3037161, 46.6177232 ], + [ 8.3037557, 46.6178618 ], + [ 8.3038058, 46.6179988 ], + [ 8.3038662, 46.6181338 ], + [ 8.3039367, 46.6182665 ], + [ 8.3040173, 46.6183964 ], + [ 8.3041076, 46.6185233 ], + [ 8.3042074, 46.6186467 ], + [ 8.3043165, 46.6187663 ], + [ 8.3044345, 46.6188819 ], + [ 8.3045611, 46.618993 ], + [ 8.304696, 46.6190994 ], + [ 8.3048388, 46.6192008 ], + [ 8.3049891, 46.6192969 ], + [ 8.3051464, 46.6193875 ], + [ 8.3053105, 46.6194723 ], + [ 8.3054807, 46.619551 ], + [ 8.3056568, 46.6196235 ], + [ 8.305838, 46.6196895 ], + [ 8.3060241, 46.619749 ], + [ 8.3062144, 46.6198016 ], + [ 8.3064084, 46.6198473 ], + [ 8.3066056, 46.6198859 ], + [ 8.3068055, 46.6199174 ], + [ 8.3070076, 46.6199416 ], + [ 8.3072111, 46.6199585 ], + [ 8.3074157, 46.619968 ], + [ 8.3076208, 46.6199701 ], + [ 8.3078257, 46.6199649 ], + [ 8.3080299, 46.6199522 ], + [ 8.3082329, 46.6199322 ], + [ 8.3084341, 46.6199049 ], + [ 8.3086329, 46.619870399999996 ], + [ 8.3088289, 46.6198288 ], + [ 8.3090214, 46.6197802 ], + [ 8.30921, 46.6197247 ], + [ 8.3093941, 46.6196624 ], + [ 8.309573199999999, 46.6195936 ], + [ 8.3097468, 46.6195185 ], + [ 8.3099145, 46.6194372 ], + [ 8.3100758, 46.6193499 ], + [ 8.3102302, 46.619257 ], + [ 8.3103774, 46.6191586 ], + [ 8.3105169, 46.619055 ], + [ 8.3106483, 46.6189466 ], + [ 8.3107713, 46.6188335 ], + [ 8.3108856, 46.6187162 ], + [ 8.3109907, 46.6185949 ], + [ 8.3110866, 46.61847 ], + [ 8.3111728, 46.6183418 ], + [ 8.3112491, 46.6182107 ], + [ 8.3113154, 46.618077 ], + [ 8.3113715, 46.6179411 ], + [ 8.3114171, 46.6178034 ], + [ 8.3114523, 46.6176642 ], + [ 8.3114768, 46.6175239 ], + [ 8.3114906, 46.6173829 ], + [ 8.3114937, 46.6172417 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0052", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Handeck", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Handeck", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Handeck", + "lang" : "it-CH" + }, + { + "text" : "Substation Handeck", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5089144999999995, 47.3898274 ], + [ 7.5087752, 47.3900468 ], + [ 7.5087064, 47.3901656 ], + [ 7.5095218, 47.3906206 ], + [ 7.5098372, 47.3907868 ], + [ 7.5099877, 47.3908773 ], + [ 7.5101194, 47.3909512 ], + [ 7.5102569, 47.3910321 ], + [ 7.5104407, 47.3911167 ], + [ 7.5106053, 47.3911651 ], + [ 7.5107482999999995, 47.3911933 ], + [ 7.5109231, 47.391205 ], + [ 7.5111053, 47.3911905 ], + [ 7.5113084, 47.3911714 ], + [ 7.5114918, 47.3911394 ], + [ 7.511883, 47.3910931 ], + [ 7.5123338, 47.3910172 ], + [ 7.5128752, 47.3909422 ], + [ 7.5133085, 47.3908619 ], + [ 7.5135301, 47.3908042 ], + [ 7.5137507, 47.3907372 ], + [ 7.5139833, 47.3906382 ], + [ 7.5142553, 47.3905209 ], + [ 7.5144511, 47.3904536 ], + [ 7.5150524, 47.3903935 ], + [ 7.5152803, 47.3903727 ], + [ 7.5155591, 47.3903721 ], + [ 7.5158462, 47.3903866 ], + [ 7.5158952, 47.3903867 ], + [ 7.515921, 47.3888174 ], + [ 7.5141674, 47.3891633 ], + [ 7.5135088, 47.3893725 ], + [ 7.5116781, 47.3894735 ], + [ 7.5113016, 47.3897476 ], + [ 7.5107162, 47.3895624 ], + [ 7.51001, 47.389004 ], + [ 7.5099523, 47.3889719 ], + [ 7.5099406, 47.3889654 ], + [ 7.5094269, 47.3893896 ], + [ 7.5091144, 47.3896342 ], + [ 7.5089144999999995, 47.3898274 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns227", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Stürmen - Eggfels - Bännli", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Stürmen - Eggfels - Bännli", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Stürmen - Eggfels - Bännli", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Stürmen - Eggfels - Bännli", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.9305534, 47.4055739 ], + [ 7.9304875, 47.4056792 ], + [ 7.9306985999999995, 47.405765 ], + [ 7.9307709, 47.4057956 ], + [ 7.9308536, 47.4058013 ], + [ 7.9311888, 47.4059275 ], + [ 7.9313166, 47.4059683 ], + [ 7.9315814, 47.4059867 ], + [ 7.931901, 47.4060521 ], + [ 7.9320086, 47.406159099999996 ], + [ 7.9321478, 47.4062589 ], + [ 7.9323258, 47.4063713 ], + [ 7.9324427, 47.406445 ], + [ 7.9324724, 47.4064951 ], + [ 7.9325548, 47.4066342 ], + [ 7.9325553, 47.4066402 ], + [ 7.9325607, 47.4067055 ], + [ 7.9323809999999995, 47.4067917 ], + [ 7.9322419, 47.406925 ], + [ 7.9323649, 47.4069604 ], + [ 7.932488, 47.4069958 ], + [ 7.9327418, 47.4070175 ], + [ 7.9330217, 47.4069882 ], + [ 7.9332068, 47.4068113 ], + [ 7.9333402, 47.4066558 ], + [ 7.9336287, 47.4064362 ], + [ 7.933752, 47.4063159 ], + [ 7.9337406, 47.4062033 ], + [ 7.933584, 47.4060913 ], + [ 7.9334585, 47.4059862 ], + [ 7.933011, 47.4058402 ], + [ 7.9324072, 47.4056174 ], + [ 7.9318041, 47.405472 ], + [ 7.9315027, 47.4054099 ], + [ 7.9313676, 47.4053894 ], + [ 7.9311809, 47.4053901 ], + [ 7.9308903, 47.4053773 ], + [ 7.9306774, 47.4053668 ], + [ 7.9304123, 47.4053019 ], + [ 7.9303857, 47.4054063 ], + [ 7.9305534, 47.4055739 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr083", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne In der Chuchi", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage In der Chuchi", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica In der Chuchi", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge In der Chuchi", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.2894723, 46.231224 ], + [ 6.2887484, 46.231043 ], + [ 6.2875318, 46.2310164 ], + [ 6.286363, 46.2312521 ], + [ 6.2862407000000005, 46.231292 ], + [ 6.2852323, 46.2317681 ], + [ 6.2844859, 46.2324376 ], + [ 6.2840751, 46.2332345 ], + [ 6.2840746, 46.233247 ], + [ 6.2840376, 46.2332747 ], + [ 6.2835274, 46.2340413 ], + [ 6.2833836, 46.2348799 ], + [ 6.2836203, 46.2357082 ], + [ 6.2842143, 46.2364452 ], + [ 6.2843136, 46.2365327 ], + [ 6.2854665, 46.2372168 ], + [ 6.2869089, 46.2375428 ], + [ 6.2884212999999995, 46.237461 ], + [ 6.2897736, 46.236984 ], + [ 6.2901015000000005, 46.236805 ], + [ 6.2910881, 46.236005 ], + [ 6.2915583999999996, 46.2350038 ], + [ 6.2915427, 46.2348641 ], + [ 6.2916834999999995, 46.2347013 ], + [ 6.2921667, 46.2348768 ], + [ 6.2936766, 46.2349713 ], + [ 6.2937226, 46.2349679 ], + [ 6.2949004, 46.2347472 ], + [ 6.2959216, 46.234284099999996 ], + [ 6.2966858, 46.2336242 ], + [ 6.2971179, 46.2328326 ], + [ 6.2971365, 46.2325574 ], + [ 6.2973059, 46.2323235 ], + [ 6.2974188, 46.2312782 ], + [ 6.2969492, 46.2302819 ], + [ 6.2969, 46.2302211 ], + [ 6.2968222, 46.2301249 ], + [ 6.2960617, 46.2294579 ], + [ 6.2950398, 46.2289884 ], + [ 6.293858, 46.2287628 ], + [ 6.2926339, 46.2288038 ], + [ 6.2914889, 46.2291071 ], + [ 6.291397, 46.2291438 ], + [ 6.2911591, 46.2292876 ], + [ 6.2910312, 46.2293484 ], + [ 6.2908255, 46.2294619 ], + [ 6.2906313, 46.2295848 ], + [ 6.2904494, 46.2297164 ], + [ 6.2902689, 46.2298255 ], + [ 6.2901752, 46.2299543 ], + [ 6.2899635, 46.2301845 ], + [ 6.2897861, 46.2304284 ], + [ 6.289645, 46.2306834 ], + [ 6.289595, 46.2307522 ], + [ 6.2895875, 46.230817 ], + [ 6.2895414, 46.2309475 ], + [ 6.2895048, 46.2310794 ], + [ 6.2894776, 46.2312124 ], + [ 6.2894723, 46.231224 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-25", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.0564222, 46.8319889 ], + [ 7.0565671, 46.8317013 ], + [ 7.05719, 46.831848 ], + [ 7.0576452, 46.8319553 ], + [ 7.0579273, 46.8320219 ], + [ 7.0579403, 46.8319277 ], + [ 7.0575964, 46.8318469 ], + [ 7.0578262, 46.8313862 ], + [ 7.0579365, 46.8311651 ], + [ 7.0570787, 46.8309921 ], + [ 7.0573201, 46.83051 ], + [ 7.0554311, 46.8300922 ], + [ 7.0554781, 46.8299988 ], + [ 7.0555053, 46.8300055 ], + [ 7.0556644, 46.8297388 ], + [ 7.0555824, 46.829721 ], + [ 7.0556404, 46.829604 ], + [ 7.0557189, 46.8294451 ], + [ 7.0557711, 46.829457 ], + [ 7.0557712, 46.8294571 ], + [ 7.0565258, 46.8296291 ], + [ 7.0565978, 46.8296509 ], + [ 7.0569968, 46.829753 ], + [ 7.0574274, 46.8288435 ], + [ 7.0565938, 46.8286156 ], + [ 7.0552817, 46.8285196 ], + [ 7.0545216, 46.8283506 ], + [ 7.0536058, 46.8282586 ], + [ 7.0526032, 46.8280835 ], + [ 7.0525781, 46.8281385 ], + [ 7.0512955999999996, 46.8277944 ], + [ 7.0507068, 46.8276348 ], + [ 7.0502988, 46.8274506 ], + [ 7.0498673, 46.8277115 ], + [ 7.04978, 46.8280276 ], + [ 7.0497448, 46.8285278 ], + [ 7.0497312, 46.8287212 ], + [ 7.0494344, 46.8287695 ], + [ 7.0489335, 46.8288709 ], + [ 7.0482763, 46.8290134 ], + [ 7.0484491, 46.8295459 ], + [ 7.0487915, 46.829623 ], + [ 7.0490901, 46.8297241 ], + [ 7.0494375, 46.8298792 ], + [ 7.049713, 46.8300269 ], + [ 7.0500466, 46.8302223 ], + [ 7.0503698, 46.8304186 ], + [ 7.0506756, 46.830605 ], + [ 7.0509953, 46.8307992 ], + [ 7.0513056, 46.8309876 ], + [ 7.0513581, 46.8310258 ], + [ 7.0524521, 46.8316987 ], + [ 7.0529412, 46.8319796 ], + [ 7.0533932, 46.8321909 ], + [ 7.0539068, 46.8323723 ], + [ 7.0544772, 46.8325226 ], + [ 7.0559398, 46.8329468 ], + [ 7.0560937, 46.8326413 ], + [ 7.056282, 46.8322674 ], + [ 7.0564222, 46.8319889 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VBS_1-0", + "country" : "CHE", + "name" : [ + { + "text" : "VBS_15 Grolley", + "lang" : "de-CH" + }, + { + "text" : "VBS_15 Grolley", + "lang" : "fr-CH" + }, + { + "text" : "VBS_15 Grolley", + "lang" : "it-CH" + }, + { + "text" : "VBS_15 Grolley", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "regulationExemption" : "YES", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Eidgenössisches Departement für Verteidigung, Bevölkerungsschutz und Sport (VBS)", + "lang" : "de-CH" + }, + { + "text" : "Département fédéral de la défense, de la protection de la population et des sports (DDPS)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento federale della difesa, della protezione della popolazione e dello sport (DDPS)", + "lang" : "it-CH" + }, + { + "text" : "Federal Department of Defence, Civil Protection and Sport (DDPS)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Lageverfolgungszentrum der Armee LVZ A", + "lang" : "de-CH" + }, + { + "text" : "Centre de suivi de la situation de l’armée, CSS A", + "lang" : "fr-CH" + }, + { + "text" : "Centro di monitoraggio della situazione dell’esercito, Centro mon sit Es", + "lang" : "it-CH" + }, + { + "text" : "Joint Operation Center, JOC", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vtg.admin.ch/en/joint-operations-command", + "email" : "lvz.op@vtg.admin.ch", + "phone" : "+41 58 464 96 43", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.7926299, 47.3687425 ], + [ 8.7926209, 47.3686014 ], + [ 8.792601, 47.3684607 ], + [ 8.7925703, 47.368321 ], + [ 8.7925289, 47.3681826 ], + [ 8.7924769, 47.3680458 ], + [ 8.7924144, 47.3679111 ], + [ 8.7923416, 47.3677787 ], + [ 8.7922587, 47.3676492 ], + [ 8.792166, 47.3675227 ], + [ 8.7920636, 47.3673998 ], + [ 8.791952, 47.3672806 ], + [ 8.7918313, 47.3671656 ], + [ 8.7917019, 47.367055 ], + [ 8.7915641, 47.3669492 ], + [ 8.7914184, 47.3668484 ], + [ 8.7912651, 47.366753 ], + [ 8.7911047, 47.3666631 ], + [ 8.7909376, 47.366579 ], + [ 8.7907642, 47.366501 ], + [ 8.7905851, 47.3664293 ], + [ 8.7904007, 47.366364 ], + [ 8.7902115, 47.3663054 ], + [ 8.7900181, 47.3662536 ], + [ 8.7898209, 47.3662088 ], + [ 8.7896206, 47.366171 ], + [ 8.7894176, 47.3661404 ], + [ 8.7892125, 47.366117 ], + [ 8.7890059, 47.366101 ], + [ 8.7887984, 47.3660924 ], + [ 8.7885905, 47.3660911 ], + [ 8.7883828, 47.3660972 ], + [ 8.7881758, 47.3661107 ], + [ 8.7879702, 47.3661316 ], + [ 8.7877664, 47.3661597 ], + [ 8.7875651, 47.366195 ], + [ 8.7873668, 47.3662375 ], + [ 8.787172, 47.3662869 ], + [ 8.7869813, 47.3663432 ], + [ 8.7867952, 47.3664062 ], + [ 8.7866142, 47.3664757 ], + [ 8.786438799999999, 47.3665516 ], + [ 8.7862695, 47.3666336 ], + [ 8.7861067, 47.3667215 ], + [ 8.785951, 47.3668151 ], + [ 8.7858026, 47.3669141 ], + [ 8.7856621, 47.3670182 ], + [ 8.785529799999999, 47.3671272 ], + [ 8.7854061, 47.367240699999996 ], + [ 8.7852912, 47.3673585 ], + [ 8.7851857, 47.3674802 ], + [ 8.7850896, 47.3676055 ], + [ 8.7850033, 47.367734 ], + [ 8.7849271, 47.3678654 ], + [ 8.784861, 47.3679994 ], + [ 8.7848054, 47.3681355 ], + [ 8.7847603, 47.3682734 ], + [ 8.7847259, 47.3684127 ], + [ 8.7847023, 47.3685531 ], + [ 8.7846896, 47.3686941 ], + [ 8.7846877, 47.3688354 ], + [ 8.7846967, 47.3689765 ], + [ 8.7847166, 47.3691171 ], + [ 8.7847473, 47.3692568 ], + [ 8.7847886, 47.3693953 ], + [ 8.7848406, 47.369532 ], + [ 8.7849031, 47.3696668 ], + [ 8.7849759, 47.3697991 ], + [ 8.7850587, 47.3699287 ], + [ 8.7851515, 47.3700551 ], + [ 8.7852538, 47.3701781 ], + [ 8.7853655, 47.3702973 ], + [ 8.7854862, 47.3704123 ], + [ 8.7856156, 47.3705229 ], + [ 8.7857533, 47.3706287 ], + [ 8.785899, 47.3707295 ], + [ 8.7860523, 47.370824999999996 ], + [ 8.7862127, 47.3709148 ], + [ 8.7863798, 47.3709989 ], + [ 8.7865532, 47.3710769 ], + [ 8.7867323, 47.3711486 ], + [ 8.7869168, 47.3712139 ], + [ 8.787106, 47.3712725 ], + [ 8.7872994, 47.3713243 ], + [ 8.7874966, 47.3713692 ], + [ 8.787697, 47.371407 ], + [ 8.7879, 47.3714376 ], + [ 8.788105, 47.3714609 ], + [ 8.7883117, 47.3714769 ], + [ 8.7885192, 47.3714856 ], + [ 8.7887271, 47.3714869 ], + [ 8.7889349, 47.3714807 ], + [ 8.7891419, 47.3714672 ], + [ 8.7893475, 47.3714464 ], + [ 8.7895513, 47.3714183 ], + [ 8.7897527, 47.3713829 ], + [ 8.789951, 47.3713405 ], + [ 8.7901458, 47.371291 ], + [ 8.7903365, 47.3712347 ], + [ 8.7905226, 47.3711717 ], + [ 8.7907036, 47.3711022 ], + [ 8.790879, 47.3710263 ], + [ 8.7910483, 47.3709443 ], + [ 8.7912111, 47.3708564 ], + [ 8.7913669, 47.3707628 ], + [ 8.7915152, 47.3706638 ], + [ 8.7916557, 47.3705597 ], + [ 8.791788, 47.3704507 ], + [ 8.7919118, 47.3703372 ], + [ 8.7920266, 47.3702194 ], + [ 8.7921321, 47.3700977 ], + [ 8.7922282, 47.3699724 ], + [ 8.7923145, 47.3698438 ], + [ 8.7923907, 47.3697124 ], + [ 8.7924567, 47.3695785 ], + [ 8.7925123, 47.3694423 ], + [ 8.7925574, 47.3693044 ], + [ 8.7925918, 47.3691651 ], + [ 8.7926153, 47.3690247 ], + [ 8.7926281, 47.3688837 ], + [ 8.7926299, 47.3687425 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "PZH0001", + "country" : "CHE", + "name" : [ + { + "text" : "Gefängnis Pfäffikon", + "lang" : "de-CH" + }, + { + "text" : "Gefängnis Pfäffikon", + "lang" : "fr-CH" + }, + { + "text" : "Gefängnis Pfäffikon", + "lang" : "it-CH" + }, + { + "text" : "Gefängnis Pfäffikon", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "de-CH" + }, + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "fr-CH" + }, + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "it-CH" + }, + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "de-CH" + }, + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "fr-CH" + }, + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "it-CH" + }, + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Reno Berner", + "lang" : "de-CH" + }, + { + "text" : "Reno Berner", + "lang" : "fr-CH" + }, + { + "text" : "Reno Berner", + "lang" : "it-CH" + }, + { + "text" : "Reno Berner", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.zh.ch/de/direktion-der-justiz-und-des-innern/justizvollzug-wiedereingliederung.html", + "email" : "sicherheit-juwe@ji.zh.ch", + "phone" : "0041432583400", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT12H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.867574, 47.4435216 ], + [ 7.8672773, 47.4436291 ], + [ 7.8673269999999995, 47.4436685 ], + [ 7.8673844, 47.4437086 ], + [ 7.8674244, 47.4437316 ], + [ 7.8674723, 47.4437524 ], + [ 7.8675172, 47.4437658 ], + [ 7.8675665, 47.4437759 ], + [ 7.8676251, 47.4437835 ], + [ 7.8676801, 47.4437883 ], + [ 7.8677192, 47.4437896 ], + [ 7.867758, 47.4437884 ], + [ 7.8677131, 47.4439348 ], + [ 7.8677004, 47.4439762 ], + [ 7.8676984999999995, 47.4440017 ], + [ 7.8677009, 47.4440262 ], + [ 7.8679129, 47.4441242 ], + [ 7.8680544999999995, 47.4442026 ], + [ 7.8681672, 47.4442904 ], + [ 7.8683222, 47.4444332 ], + [ 7.8684889, 47.4445921 ], + [ 7.8686559, 47.4447568 ], + [ 7.8688009999999995, 47.4448939 ], + [ 7.8690143, 47.4450939 ], + [ 7.8691357, 47.4451978 ], + [ 7.869526, 47.4455219 ], + [ 7.8698498, 47.4458421 ], + [ 7.8700165, 47.4461554 ], + [ 7.87013, 47.4463643 ], + [ 7.8701712, 47.44636 ], + [ 7.8702124, 47.4463556 ], + [ 7.8702713, 47.4463488 ], + [ 7.8703294, 47.4463388 ], + [ 7.8703821, 47.4463281 ], + [ 7.8704231, 47.446315 ], + [ 7.8704691, 47.4462937 ], + [ 7.8705071, 47.4462729 ], + [ 7.870535, 47.4462467 ], + [ 7.8705628999999995, 47.4462104 ], + [ 7.8705828, 47.4461791 ], + [ 7.8706023, 47.4461407 ], + [ 7.8706279, 47.4460683 ], + [ 7.8706381, 47.4460321 ], + [ 7.8707222, 47.4457866 ], + [ 7.8707379, 47.4457417 ], + [ 7.8707429, 47.4457077 ], + [ 7.8707407, 47.4456638 ], + [ 7.8707355, 47.4456316 ], + [ 7.870719, 47.4455751 ], + [ 7.8706941, 47.4455081 ], + [ 7.8706721, 47.4454661 ], + [ 7.8706521, 47.4454341 ], + [ 7.8706884, 47.4452565 ], + [ 7.8706866, 47.4451401 ], + [ 7.8706759, 47.4450379 ], + [ 7.8706197, 47.4448781 ], + [ 7.8706043999999995, 47.4448339 ], + [ 7.8705976, 47.4448005 ], + [ 7.8707058, 47.4447659 ], + [ 7.8709346, 47.444695 ], + [ 7.8711809, 47.4445287 ], + [ 7.8711137, 47.4442216 ], + [ 7.8710016, 47.4439379 ], + [ 7.8706705, 47.4433425 ], + [ 7.870468, 47.4431318 ], + [ 7.8703655999999995, 47.4430682 ], + [ 7.8703047999999995, 47.4430399 ], + [ 7.8702327, 47.4430105 ], + [ 7.8700945, 47.4429909 ], + [ 7.8699483, 47.4429738 ], + [ 7.8698137, 47.4429681 ], + [ 7.8696729, 47.4429693 ], + [ 7.8695522, 47.4429922 ], + [ 7.8694218, 47.4430141 ], + [ 7.8690429, 47.4431166 ], + [ 7.8687088, 47.4432038 ], + [ 7.8684296, 47.4432835 ], + [ 7.8681694, 47.4433538 ], + [ 7.867574, 47.4435216 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr044", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Zangegrabe", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Zangegrabe", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Zangegrabe", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Zangegrabe", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6198659, 47.5367534 ], + [ 7.6198716, 47.5378508 ], + [ 7.6198771, 47.5389487 ], + [ 7.6198854, 47.5400344 ], + [ 7.6198839, 47.5402636 ], + [ 7.621486, 47.5399428 ], + [ 7.6221578999999995, 47.5398082 ], + [ 7.6221578, 47.5397694 ], + [ 7.6221575999999995, 47.5397172 ], + [ 7.6221564, 47.5393143 ], + [ 7.6221203, 47.5387677 ], + [ 7.6221081, 47.5386289 ], + [ 7.6221046999999995, 47.5385896 ], + [ 7.6220728, 47.5382269 ], + [ 7.6220424, 47.5378257 ], + [ 7.6220262, 47.5372914 ], + [ 7.6219712, 47.5367466 ], + [ 7.6219431, 47.5363634 ], + [ 7.6218893, 47.5358252 ], + [ 7.6218595, 47.5352856 ], + [ 7.621837, 47.5349755 ], + [ 7.6218343, 47.5349382 ], + [ 7.6218311, 47.5348967 ], + [ 7.6218094, 47.5346183 ], + [ 7.6217843, 47.5342966 ], + [ 7.621753, 47.5334862 ], + [ 7.6217007, 47.5326782 ], + [ 7.6216409, 47.5318695 ], + [ 7.6215805, 47.5310618 ], + [ 7.621524, 47.5302534 ], + [ 7.6214870999999995, 47.5298134 ], + [ 7.6212626, 47.5297845 ], + [ 7.6212753, 47.5301842 ], + [ 7.6212844, 47.5310619 ], + [ 7.6212938999999995, 47.5314458 ], + [ 7.6213065, 47.531951 ], + [ 7.6212866, 47.5323088 ], + [ 7.6212665, 47.5327882 ], + [ 7.621, 47.5333446 ], + [ 7.6210339, 47.5336942 ], + [ 7.6210436999999995, 47.5337218 ], + [ 7.6210322, 47.5346405 ], + [ 7.6210426, 47.5357807 ], + [ 7.6208592, 47.5357829 ], + [ 7.6208626, 47.5367488 ], + [ 7.6207807, 47.5367511 ], + [ 7.6198659, 47.5367534 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns141", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt St. Jakob", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé St. Jakob", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto St. Jakob", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object St. Jakob", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6585769, 47.5136609 ], + [ 7.6583168, 47.5131985 ], + [ 7.6582026, 47.5132458 ], + [ 7.6581558, 47.5132802 ], + [ 7.6580705, 47.5132792 ], + [ 7.6578861, 47.5133244 ], + [ 7.6578716, 47.513327 ], + [ 7.6580497, 47.5137449 ], + [ 7.6584321, 47.5136779 ], + [ 7.6585376, 47.5136649 ], + [ 7.6585769, 47.5136609 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns317", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Zinggibrunn", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Zinggibrunn", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Zinggibrunn", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Zinggibrunn", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.540148, 47.5310394 ], + [ 7.5401678, 47.5310482 ], + [ 7.540436, 47.5311594 ], + [ 7.5407071, 47.531272 ], + [ 7.5411655, 47.5314654 ], + [ 7.5414424, 47.5315819 ], + [ 7.5414629, 47.5315906 ], + [ 7.5419795, 47.5308469 ], + [ 7.5422089, 47.5304956 ], + [ 7.5423906, 47.5299492 ], + [ 7.5423995999999995, 47.5299254 ], + [ 7.5423694999999995, 47.5299198 ], + [ 7.5413011, 47.5297208 ], + [ 7.5413561, 47.529659 ], + [ 7.5414556, 47.5295471 ], + [ 7.5414172, 47.5295293 ], + [ 7.5410713, 47.5293688 ], + [ 7.5407725, 47.5291876 ], + [ 7.5405505999999995, 47.5290683 ], + [ 7.5403189, 47.5292835 ], + [ 7.5399721, 47.5290721 ], + [ 7.5397549999999995, 47.528877 ], + [ 7.5395635, 47.5286428 ], + [ 7.5393989, 47.5283915 ], + [ 7.5392513, 47.5280846 ], + [ 7.5391862, 47.5279492 ], + [ 7.5391036, 47.5279849 ], + [ 7.5380511, 47.5284227 ], + [ 7.5373407, 47.5287184 ], + [ 7.5371853, 47.5288044 ], + [ 7.5367601, 47.5290396 ], + [ 7.536904, 47.5291649 ], + [ 7.5369785, 47.5292297 ], + [ 7.5372113, 47.5293829 ], + [ 7.5373349, 47.5294794 ], + [ 7.5375831, 47.5293406 ], + [ 7.5375839, 47.5293416 ], + [ 7.5376983, 47.529509 ], + [ 7.5378334, 47.5297064 ], + [ 7.5379188, 47.5298315 ], + [ 7.5381028, 47.5299906 ], + [ 7.5382682, 47.5301339 ], + [ 7.5384245, 47.5302182 ], + [ 7.538681, 47.5303569 ], + [ 7.538804, 47.5304243 ], + [ 7.5391297, 47.5305968 ], + [ 7.5394705, 47.5307427 ], + [ 7.5395581, 47.5307788 ], + [ 7.540148, 47.5310394 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns236", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Allschwilerwald", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Allschwilerwald", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Allschwilerwald", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Allschwilerwald", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.5520246, 46.897401 ], + [ 6.5667881999999995, 46.909569 ], + [ 6.5761559, 46.9147677 ], + [ 6.6060357, 46.9350497 ], + [ 6.6648134, 46.9481465 ], + [ 6.6832654, 46.9157957 ], + [ 6.6345572, 46.8984615 ], + [ 6.5847913, 46.875341 ], + [ 6.5704024, 46.8808999 ], + [ 6.5520246, 46.897401 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSTO001", + "country" : "CHE", + "name" : [ + { + "text" : "LSTO Môtiers", + "lang" : "de-CH" + }, + { + "text" : "LSTO Môtiers", + "lang" : "fr-CH" + }, + { + "text" : "LSTO Môtiers", + "lang" : "it-CH" + }, + { + "text" : "LSTO Môtiers", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Aéro-Club du Val-de-Travers", + "lang" : "de-CH" + }, + { + "text" : "Aéro-Club du Val-de-Travers", + "lang" : "fr-CH" + }, + { + "text" : "Aéro-Club du Val-de-Travers", + "lang" : "it-CH" + }, + { + "text" : "Aéro-Club du Val-de-Travers", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Chef d'aérodrome", + "lang" : "de-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "fr-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "it-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Alexandre Iseppi", + "lang" : "de-CH" + }, + { + "text" : "Alexandre Iseppi", + "lang" : "fr-CH" + }, + { + "text" : "Alexandre Iseppi", + "lang" : "it-CH" + }, + { + "text" : "Alexandre Iseppi", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.acvt.ch/dronesmodeles/", + "email" : "iseppi@acvt.ch", + "phone" : "0041328631555", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P02DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.0069818, 46.6102269 ], + [ 8.0068677, 46.6078735 ], + [ 8.006575, 46.6055274 ], + [ 8.0061046, 46.6031951 ], + [ 8.0054577, 46.6008829 ], + [ 8.0046363, 46.5985972 ], + [ 8.0036425, 46.5963443 ], + [ 8.0024791, 46.5941303 ], + [ 8.0011493, 46.5919613 ], + [ 7.9996568, 46.5898432 ], + [ 7.9980056, 46.5877819 ], + [ 7.9962004, 46.5857829 ], + [ 7.994246, 46.5838518 ], + [ 7.9921479, 46.5819938 ], + [ 7.9899117, 46.580214 ], + [ 7.9875437, 46.5785173 ], + [ 7.9850503, 46.5769084 ], + [ 7.9824383999999995, 46.5753915 ], + [ 7.979715, 46.573971 ], + [ 7.9768877, 46.5726506 ], + [ 7.9739642, 46.571433999999996 ], + [ 7.9709525, 46.5703245 ], + [ 7.9678609, 46.5693251 ], + [ 7.9646978, 46.5684386 ], + [ 7.9614718, 46.5676674 ], + [ 7.9581918, 46.5670136 ], + [ 7.9548667, 46.566479 ], + [ 7.9515057, 46.5660651 ], + [ 7.948118, 46.5657729 ], + [ 7.9447127, 46.5656033 ], + [ 7.9412993, 46.5655568 ], + [ 7.9378869, 46.5656335 ], + [ 7.9344851, 46.5658331 ], + [ 7.931103, 46.5661551 ], + [ 7.92775, 46.5665987 ], + [ 7.9244351, 46.5671626 ], + [ 7.9211675, 46.5678453 ], + [ 7.9179561, 46.5686449 ], + [ 7.9148097, 46.5695593 ], + [ 7.9117368, 46.5705858 ], + [ 7.908746, 46.5717218 ], + [ 7.9058453, 46.5729642 ], + [ 7.9030427, 46.5743094 ], + [ 7.9003459, 46.5757539 ], + [ 7.8977623, 46.5772936 ], + [ 7.895299, 46.5789245 ], + [ 7.8929626, 46.5806419 ], + [ 7.8907597, 46.5824413 ], + [ 7.8886962, 46.5843177 ], + [ 7.8867779, 46.5862659 ], + [ 7.8850099, 46.5882806 ], + [ 7.8833971, 46.5903564 ], + [ 7.8819441, 46.5924874 ], + [ 7.8806547, 46.594668 ], + [ 7.8795325, 46.5968921 ], + [ 7.8785806, 46.5991536 ], + [ 7.8778017, 46.6014463 ], + [ 7.8771978, 46.603764 ], + [ 7.8767708, 46.6061003 ], + [ 7.8765217, 46.6084488 ], + [ 7.8764513, 46.6108031 ], + [ 7.8765598, 46.613156599999996 ], + [ 7.8768469, 46.6155031 ], + [ 7.8773118, 46.6178359 ], + [ 7.8779534, 46.6201488 ], + [ 7.8787698, 46.6224354 ], + [ 7.8797589, 46.6246894 ], + [ 7.8809179, 46.6269047 ], + [ 7.8822437, 46.6290751 ], + [ 7.8837326999999995, 46.6311947 ], + [ 7.8853808, 46.6332576 ], + [ 7.8871835, 46.6352584 ], + [ 7.8891359, 46.6371913 ], + [ 7.8912327, 46.6390512 ], + [ 7.893468, 46.6408329 ], + [ 7.8958358, 46.6425316 ], + [ 7.8983296, 46.6441425 ], + [ 7.9009425, 46.6456612 ], + [ 7.9036674, 46.6470837 ], + [ 7.9064968, 46.6484059 ], + [ 7.9094229, 46.6496242 ], + [ 7.9124378, 46.6507353 ], + [ 7.915533, 46.6517362 ], + [ 7.9187002, 46.6526241 ], + [ 7.9219307, 46.6533965 ], + [ 7.9252155, 46.6540513 ], + [ 7.9285456, 46.6545868 ], + [ 7.931912, 46.6550014 ], + [ 7.9353052, 46.655294 ], + [ 7.9387161, 46.6554639 ], + [ 7.9421353, 46.6555105 ], + [ 7.9455533, 46.6554337 ], + [ 7.9489607, 46.6552337 ], + [ 7.9523482, 46.6549112 ], + [ 7.9557066, 46.6544669 ], + [ 7.9590265, 46.6539021 ], + [ 7.9622988, 46.6532183 ], + [ 7.9655146, 46.6524174 ], + [ 7.968665, 46.6515017 ], + [ 7.9717414, 46.6504736 ], + [ 7.9747353, 46.6493359 ], + [ 7.9776385, 46.6480919 ], + [ 7.980443, 46.6467448 ], + [ 7.9831412, 46.6452984 ], + [ 7.9857256, 46.6437567 ], + [ 7.9881892, 46.6421239 ], + [ 7.9905252, 46.6404045 ], + [ 7.9927271, 46.6386032 ], + [ 7.9947891, 46.636725 ], + [ 7.9967053, 46.634775 ], + [ 7.9984707, 46.6327585 ], + [ 8.0000803, 46.6306811 ], + [ 8.0015297, 46.6285486 ], + [ 8.002815, 46.6263666 ], + [ 8.0039327, 46.6241413 ], + [ 8.0048798, 46.6218788 ], + [ 8.0056536, 46.6195852 ], + [ 8.0062521, 46.6172668 ], + [ 8.0066737, 46.61493 ], + [ 8.0069171, 46.6125813 ], + [ 8.0069818, 46.6102269 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSWM001", + "country" : "CHE", + "name" : [ + { + "text" : "LSWM Männlichen", + "lang" : "de-CH" + }, + { + "text" : "LSWM Männlichen", + "lang" : "fr-CH" + }, + { + "text" : "LSWM Männlichen", + "lang" : "it-CH" + }, + { + "text" : "LSWM Männlichen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "startDateTime" : "2024-11-01T00:00:00+01:00", + "endDateTime" : "2025-04-30T00:00:00+02:00" + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swiss Helicopter AG", + "lang" : "de-CH" + }, + { + "text" : "Swiss Helicopter AG", + "lang" : "fr-CH" + }, + { + "text" : "Swiss Helicopter AG", + "lang" : "it-CH" + }, + { + "text" : "Swiss Helicopter AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Basis Gsteigwiler", + "lang" : "de-CH" + }, + { + "text" : "Basis Gsteigwiler", + "lang" : "fr-CH" + }, + { + "text" : "Basis Gsteigwiler", + "lang" : "it-CH" + }, + { + "text" : "Basis Gsteigwiler", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Martin Burgener", + "lang" : "de-CH" + }, + { + "text" : "Martin Burgener", + "lang" : "fr-CH" + }, + { + "text" : "Martin Burgener", + "lang" : "it-CH" + }, + { + "text" : "Martin Burgener", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swisshelicopter.ch/en/about-us/helicopter-bases/gsteigwiler-interlaken", + "email" : "berneroberland@swisshelicopter.ch", + "phone" : "0041338289010", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P02DT12H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.8855484, 45.9574057 ], + [ 8.8842545, 45.95774 ], + [ 8.8811541, 45.9586721 ], + [ 8.8781278, 45.9597161 ], + [ 8.8751839, 45.9608691 ], + [ 8.8723304, 45.9621278 ], + [ 8.8695751, 45.963489 ], + [ 8.8669257, 45.9649487 ], + [ 8.8643892, 45.9665031 ], + [ 8.8619728, 45.9681479 ], + [ 8.8596829, 45.9698785 ], + [ 8.857526, 45.9716903 ], + [ 8.8555078, 45.9735783 ], + [ 8.853634, 45.9755374 ], + [ 8.8519097, 45.9775621 ], + [ 8.8503396, 45.9796469 ], + [ 8.848928, 45.9817861 ], + [ 8.8476789, 45.9839739 ], + [ 8.8465956, 45.9862043 ], + [ 8.8456812, 45.9884711 ], + [ 8.8449381, 45.9907682 ], + [ 8.8443685, 45.9930892 ], + [ 8.8439739, 45.9954278 ], + [ 8.8437554, 45.9977776 ], + [ 8.8437137, 46.0001322 ], + [ 8.8438489, 46.002485 ], + [ 8.8441606, 46.0048297 ], + [ 8.8446479, 46.0071598 ], + [ 8.8453097, 46.009469 ], + [ 8.8461441, 46.0117508 ], + [ 8.8471488, 46.0139991 ], + [ 8.8491697, 46.0181362 ], + [ 8.8492246, 46.0182572 ], + [ 8.8492712, 46.018344 ], + [ 8.8514151, 46.022732 ], + [ 8.8525878, 46.0249405 ], + [ 8.853924899999999, 46.0271032 ], + [ 8.8554227, 46.0292142 ], + [ 8.857077199999999, 46.0312677 ], + [ 8.8588839, 46.033258 ], + [ 8.8608378, 46.0351797 ], + [ 8.8629335, 46.0370275 ], + [ 8.8651654, 46.0387963 ], + [ 8.8675273, 46.0404814 ], + [ 8.8700127, 46.0420779 ], + [ 8.8726149, 46.0435817 ], + [ 8.8753266, 46.0449884 ], + [ 8.8781405, 46.0462944 ], + [ 8.8810488, 46.0474959 ], + [ 8.8840436, 46.0485898 ], + [ 8.8871165, 46.0495729 ], + [ 8.8902593, 46.0504426 ], + [ 8.8934632, 46.0511965 ], + [ 8.8967195, 46.0518325 ], + [ 8.9000192, 46.0523489 ], + [ 8.9033532, 46.0527442 ], + [ 8.9067125, 46.0530174 ], + [ 8.9100876, 46.0531678 ], + [ 8.9134695, 46.0531948 ], + [ 8.9168487, 46.0530985 ], + [ 8.9202161, 46.052879 ], + [ 8.9235623, 46.0525371 ], + [ 8.9268782, 46.0520736 ], + [ 8.9301546, 46.0514898 ], + [ 8.9333825, 46.0507874 ], + [ 8.9365532, 46.0499681 ], + [ 8.939657799999999, 46.0490344 ], + [ 8.9426879, 46.0479888 ], + [ 8.9456351, 46.046834 ], + [ 8.9484913, 46.0455734 ], + [ 8.9512487, 46.0442103 ], + [ 8.9538998, 46.0427486 ], + [ 8.9564372, 46.0411922 ], + [ 8.9588541, 46.0395454 ], + [ 8.9611437, 46.0378127 ], + [ 8.9632998, 46.0359989 ], + [ 8.9653166, 46.0341089 ], + [ 8.9671884, 46.032148 ], + [ 8.9689102, 46.0301215 ], + [ 8.9704772, 46.028035 ], + [ 8.9718852, 46.0258943 ], + [ 8.9731303, 46.0237051 ], + [ 8.9742092, 46.0214735 ], + [ 8.9751188, 46.0192056 ], + [ 8.9758568, 46.0169077 ], + [ 8.976421, 46.014586 ], + [ 8.9768101, 46.0122469 ], + [ 8.9770229, 46.0098969 ], + [ 8.9770589, 46.0075423 ], + [ 8.976918, 46.0051896 ], + [ 8.9766006, 46.0028452 ], + [ 8.9761076, 46.0005157 ], + [ 8.9754404, 45.9982073 ], + [ 8.9746009, 45.9959264 ], + [ 8.9735913, 45.9936793 ], + [ 8.9693076, 45.9849511 ], + [ 8.9681311, 45.9827438 ], + [ 8.9667906, 45.9805824 ], + [ 8.9652898, 45.978473 ], + [ 8.9636329, 45.9764211 ], + [ 8.9618242, 45.9744325 ], + [ 8.959869, 45.9725125 ], + [ 8.9577724, 45.9706665 ], + [ 8.9555403, 45.9688996 ], + [ 8.9531788, 45.9672164 ], + [ 8.9506944, 45.9656217 ], + [ 8.9480938, 45.9641198 ], + [ 8.9453842, 45.9627147 ], + [ 8.942573, 45.9614105 ], + [ 8.9396679, 45.9602105 ], + [ 8.9366769, 45.9591182 ], + [ 8.9336081, 45.9581365 ], + [ 8.9304699, 45.957268 ], + [ 8.927271, 45.9565151 ], + [ 8.92402, 45.95588 ], + [ 8.920726, 45.9553643 ], + [ 8.9173977, 45.9549695 ], + [ 8.9140445, 45.9546966 ], + [ 8.9106754, 45.9545464 ], + [ 8.9072996, 45.9545193 ], + [ 8.9039264, 45.9546153 ], + [ 8.9005651, 45.9548343 ], + [ 8.8972247, 45.9551755 ], + [ 8.8962829, 45.9553072 ], + [ 8.895147, 45.9570367 ], + [ 8.893658, 45.9589814 ], + [ 8.8870879, 45.9575787 ], + [ 8.8855484, 45.9574057 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZA001", + "country" : "CHE", + "name" : [ + { + "text" : "LSZA Lugano", + "lang" : "de-CH" + }, + { + "text" : "LSZA Lugano", + "lang" : "fr-CH" + }, + { + "text" : "LSZA Lugano", + "lang" : "it-CH" + }, + { + "text" : "LSZA Lugano", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Lugano Airport / Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Lugano Airport / Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Lugano Airport / Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Lugano Airport / Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Skyguide Special Flight Office", + "lang" : "de-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "it-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "en-GB" + } + ], + "siteURL" : "https://skyguide.ch/services/special-flights", + "email" : "info@luganoairport.ch", + "phone" : "0041916101111", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8470119, 47.3812812 ], + [ 7.8470848, 47.3813147 ], + [ 7.8474482, 47.3814092 ], + [ 7.847791, 47.3815193 ], + [ 7.8479988, 47.3815805 ], + [ 7.8480257, 47.3815786 ], + [ 7.848039, 47.3815647 ], + [ 7.8480565, 47.3815437 ], + [ 7.8480231, 47.3815185 ], + [ 7.8478423, 47.3814501 ], + [ 7.8475016, 47.3813429 ], + [ 7.8471257, 47.3812455 ], + [ 7.8470593, 47.3812402 ], + [ 7.8470361, 47.3812572 ], + [ 7.8470119, 47.3812812 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns202", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Hecken-Komplex Schmutzberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Hecken-Komplex Schmutzberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Hecken-Komplex Schmutzberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Hecken-Komplex Schmutzberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6217519, 47.5298479 ], + [ 7.6217781, 47.530246 ], + [ 7.6218315, 47.5310547 ], + [ 7.6218874, 47.5318632 ], + [ 7.621942, 47.5326718 ], + [ 7.6219965, 47.5334807 ], + [ 7.6220333, 47.53407 ], + [ 7.6220471, 47.5342898 ], + [ 7.6220817, 47.5347419 ], + [ 7.6220898, 47.5348531 ], + [ 7.6227281, 47.5348999 ], + [ 7.6227652, 47.5348447 ], + [ 7.6227202, 47.5346572 ], + [ 7.6225760000000005, 47.5345997 ], + [ 7.622654, 47.5340194 ], + [ 7.6226687, 47.5339171 ], + [ 7.6228296, 47.5339103 ], + [ 7.622853, 47.5340047 ], + [ 7.6233603, 47.5339472 ], + [ 7.6234364, 47.5339388 ], + [ 7.6233269, 47.5336281 ], + [ 7.6231682, 47.5332013 ], + [ 7.6230084, 47.5327717 ], + [ 7.6230514, 47.5327642 ], + [ 7.6230566, 47.5327624 ], + [ 7.6229769, 47.5325517 ], + [ 7.6229036, 47.5323317 ], + [ 7.6228343, 47.5321084 ], + [ 7.6226998, 47.5316658 ], + [ 7.6225663, 47.5312293 ], + [ 7.6224314, 47.5307883 ], + [ 7.6222984, 47.5303536 ], + [ 7.6222376, 47.5301548 ], + [ 7.6222338, 47.5301403 ], + [ 7.6222294, 47.5301258 ], + [ 7.6222244, 47.5301114 ], + [ 7.6222187, 47.5300972 ], + [ 7.6222124, 47.530083 ], + [ 7.622206, 47.5300694 ], + [ 7.622199, 47.5300559 ], + [ 7.6221914, 47.5300425 ], + [ 7.6221833, 47.5300293 ], + [ 7.6221745, 47.5300163 ], + [ 7.6221653, 47.530005 ], + [ 7.6221553, 47.529994 ], + [ 7.6221445, 47.5299834 ], + [ 7.622133, 47.5299731 ], + [ 7.6221207, 47.5299632 ], + [ 7.6221078, 47.5299537 ], + [ 7.6220942, 47.5299446 ], + [ 7.6220818, 47.5299371 ], + [ 7.622069, 47.5299299 ], + [ 7.6220557, 47.529923 ], + [ 7.622042, 47.5299166 ], + [ 7.6220279, 47.5299105 ], + [ 7.6220134, 47.5299049 ], + [ 7.6219985999999995, 47.5298996 ], + [ 7.6219835, 47.5298948 ], + [ 7.6219589, 47.529888 ], + [ 7.6219341, 47.5298815 ], + [ 7.6219091, 47.5298755 ], + [ 7.6218838, 47.52987 ], + [ 7.6218584, 47.5298648 ], + [ 7.6218319999999995, 47.5298599 ], + [ 7.6218055, 47.5298554 ], + [ 7.6217787999999995, 47.5298515 ], + [ 7.6217519, 47.5298479 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns142", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt In den Weiden", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé In den Weiden", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto In den Weiden", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object In den Weiden", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8918839, 47.4102051 ], + [ 7.8919405, 47.4101999 ], + [ 7.8919457, 47.4101424 ], + [ 7.8919536, 47.4100971 ], + [ 7.8920031, 47.4099388 ], + [ 7.8920401, 47.4098185 ], + [ 7.8920753, 47.4096937 ], + [ 7.8921005, 47.4095614 ], + [ 7.8921357, 47.409453 ], + [ 7.8922053, 47.4093155 ], + [ 7.8922701, 47.4091997 ], + [ 7.892331, 47.4090657 ], + [ 7.8923916, 47.4089161 ], + [ 7.8924363, 47.4087813 ], + [ 7.8925035, 47.4085819 ], + [ 7.8924492, 47.4085773 ], + [ 7.89238, 47.4085068 ], + [ 7.8923926, 47.4085974 ], + [ 7.8923065, 47.408815 ], + [ 7.8922318, 47.4090139 ], + [ 7.8921572, 47.4092222 ], + [ 7.8920761, 47.4094339 ], + [ 7.8919716, 47.4096538 ], + [ 7.8919375, 47.4097906 ], + [ 7.8919041, 47.409964 ], + [ 7.89189, 47.4100938 ], + [ 7.8918839, 47.4102051 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns180", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Mapprach - Hofmatt", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Mapprach - Hofmatt", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Mapprach - Hofmatt", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Mapprach - Hofmatt", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.701325, 46.8351071 ], + [ 7.7012747, 46.8350964 ], + [ 7.7010156, 46.83504 ], + [ 7.7008356, 46.8350106 ], + [ 7.7008361, 46.8350093 ], + [ 7.7007361, 46.834992 ], + [ 7.700481, 46.8349481 ], + [ 7.6999582, 46.8348313 ], + [ 7.699883, 46.8348722 ], + [ 7.6995854, 46.8348159 ], + [ 7.6993929, 46.8347778 ], + [ 7.6992626, 46.8347619 ], + [ 7.6990914, 46.8347239 ], + [ 7.6988843, 46.8346927 ], + [ 7.6985761, 46.8346326 ], + [ 7.6983699, 46.8345905 ], + [ 7.6982948, 46.8345925 ], + [ 7.6985941, 46.8350647 ], + [ 7.6988147, 46.8355329 ], + [ 7.6988698, 46.8356413 ], + [ 7.6975601000000005, 46.8369884 ], + [ 7.6973097, 46.8374389 ], + [ 7.6975912, 46.837728 ], + [ 7.6974115, 46.837903 ], + [ 7.6978283, 46.8383045 ], + [ 7.698005, 46.8384759 ], + [ 7.6980312, 46.8385368 ], + [ 7.6981001, 46.8384921 ], + [ 7.6986994, 46.8386907 ], + [ 7.6986691, 46.8387475 ], + [ 7.6989592, 46.8388486 ], + [ 7.6992188, 46.8389442 ], + [ 7.6994717999999995, 46.839024 ], + [ 7.6995268, 46.8390386 ], + [ 7.6996497, 46.8390713 ], + [ 7.6997628, 46.8391029 ], + [ 7.6999966, 46.8391614 ], + [ 7.7000503, 46.8391525 ], + [ 7.7003885, 46.8392537 ], + [ 7.7009594, 46.8394023 ], + [ 7.7011498, 46.839451 ], + [ 7.7011536, 46.8392071 ], + [ 7.7013052, 46.8389996 ], + [ 7.701405, 46.8386757 ], + [ 7.7015023, 46.8385528 ], + [ 7.7015996, 46.838294 ], + [ 7.7012684, 46.8382337 ], + [ 7.7014668, 46.8379012 ], + [ 7.7016535, 46.8375744 ], + [ 7.701719, 46.837432 ], + [ 7.7017461, 46.8372246 ], + [ 7.7017223, 46.8370976 ], + [ 7.7016902, 46.8368009 ], + [ 7.7016975, 46.8365508 ], + [ 7.7017776, 46.8361225 ], + [ 7.7018385, 46.8359307 ], + [ 7.7018945, 46.8357551 ], + [ 7.7020305, 46.835229 ], + [ 7.7017062, 46.8351733 ], + [ 7.7015319, 46.8351509 ], + [ 7.701325, 46.8351071 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VBS_22", + "country" : "CHE", + "name" : [ + { + "text" : "VBS_22 Jassbach", + "lang" : "de-CH" + }, + { + "text" : "VBS_22 Jassbach", + "lang" : "fr-CH" + }, + { + "text" : "VBS_22 Jassbach", + "lang" : "it-CH" + }, + { + "text" : "VBS_22 Jassbach", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "regulationExemption" : "YES", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Eidgenössisches Departement für Verteidigung, Bevölkerungsschutz und Sport (VBS)", + "lang" : "de-CH" + }, + { + "text" : "Département fédéral de la défense, de la protection de la population et des sports (DDPS)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento federale della difesa, della protezione della popolazione e dello sport (DDPS)", + "lang" : "it-CH" + }, + { + "text" : "Federal Department of Defence, Civil Protection and Sport (DDPS)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Lageverfolgungszentrum der Armee LVZ A", + "lang" : "de-CH" + }, + { + "text" : "Centre de suivi de la situation de l’armée, CSS A", + "lang" : "fr-CH" + }, + { + "text" : "Centro di monitoraggio della situazione dell’esercito, Centro mon sit Es", + "lang" : "it-CH" + }, + { + "text" : "Joint Operation Center, JOC", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vtg.admin.ch/en/joint-operations-command", + "email" : "lvz.op@vtg.admin.ch", + "phone" : "+41 58 464 96 43", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.3410586, 47.1158105 ], + [ 8.3410508, 47.1156693 ], + [ 8.3410322, 47.1155286 ], + [ 8.3410029, 47.1153888 ], + [ 8.3409628, 47.1152502 ], + [ 8.3409122, 47.1151132 ], + [ 8.3408511, 47.1149782 ], + [ 8.3407798, 47.1148456 ], + [ 8.3406984, 47.1147157 ], + [ 8.3406072, 47.1145889 ], + [ 8.3405064, 47.1144655 ], + [ 8.3403962, 47.114345900000004 ], + [ 8.340277, 47.1142304 ], + [ 8.3401492, 47.1141194 ], + [ 8.340013, 47.114013 ], + [ 8.3398688, 47.1139116 ], + [ 8.3397171, 47.1138156 ], + [ 8.3395582, 47.1137251 ], + [ 8.3393926, 47.1136403 ], + [ 8.3392207, 47.1135617 ], + [ 8.339043, 47.1134892 ], + [ 8.33886, 47.1134233 ], + [ 8.3386722, 47.1133639 ], + [ 8.3384801, 47.1133113 ], + [ 8.3382843, 47.1132657 ], + [ 8.3380852, 47.1132271 ], + [ 8.3378834, 47.1131957 ], + [ 8.3376795, 47.1131716 ], + [ 8.3374741, 47.1131547 ], + [ 8.3372676, 47.1131453 ], + [ 8.3370607, 47.1131432 ], + [ 8.3368539, 47.1131485 ], + [ 8.3366478, 47.1131612 ], + [ 8.3364429, 47.1131812 ], + [ 8.3362399, 47.1132086 ], + [ 8.3360392, 47.1132431 ], + [ 8.3358415, 47.1132848 ], + [ 8.3356472, 47.1133335 ], + [ 8.3354569, 47.113389 ], + [ 8.3352712, 47.1134513 ], + [ 8.3350905, 47.1135201 ], + [ 8.3349153, 47.1135953 ], + [ 8.3347461, 47.1136767 ], + [ 8.3345833, 47.1137639 ], + [ 8.3344275, 47.1138569 ], + [ 8.334279, 47.1139553 ], + [ 8.3341383, 47.1140589 ], + [ 8.3340057, 47.1141674 ], + [ 8.3338816, 47.1142804 ], + [ 8.3337663, 47.1143977 ], + [ 8.3336602, 47.114519 ], + [ 8.3335636, 47.114644 ], + [ 8.333476600000001, 47.1147722 ], + [ 8.3333996, 47.1149033 ], + [ 8.3333327, 47.115037 ], + [ 8.3332762, 47.1151729 ], + [ 8.3332302, 47.1153106 ], + [ 8.3331948, 47.1154498 ], + [ 8.3331701, 47.1155901 ], + [ 8.3331563, 47.115731 ], + [ 8.3331532, 47.1158723 ], + [ 8.333161, 47.1160135 ], + [ 8.3331796, 47.1161542 ], + [ 8.3332089, 47.116294 ], + [ 8.333249, 47.1164326 ], + [ 8.3332996, 47.1165696 ], + [ 8.3333606, 47.1167046 ], + [ 8.3334319, 47.1168372 ], + [ 8.3335133, 47.1169671 ], + [ 8.3336045, 47.1170939 ], + [ 8.3337053, 47.1172173 ], + [ 8.3338155, 47.1173369 ], + [ 8.3339346, 47.1174524 ], + [ 8.3340625, 47.1175635 ], + [ 8.3341987, 47.1176699 ], + [ 8.3343428, 47.1177713 ], + [ 8.3344946, 47.1178673 ], + [ 8.3346535, 47.1179579 ], + [ 8.3348191, 47.1180426 ], + [ 8.334991, 47.1181213 ], + [ 8.3351687, 47.1181937 ], + [ 8.3353517, 47.1182597 ], + [ 8.3355395, 47.118319 ], + [ 8.3357316, 47.1183716 ], + [ 8.3359274, 47.1184172 ], + [ 8.3361265, 47.1184558 ], + [ 8.3363283, 47.1184872 ], + [ 8.3365322, 47.1185114 ], + [ 8.3367377, 47.1185282 ], + [ 8.3369442, 47.1185377 ], + [ 8.3371512, 47.1185398 ], + [ 8.337358, 47.1185345 ], + [ 8.3375641, 47.1185218 ], + [ 8.337769, 47.1185017 ], + [ 8.337972, 47.1184744 ], + [ 8.3381727, 47.1184398 ], + [ 8.3383705, 47.1183982 ], + [ 8.3385648, 47.1183495 ], + [ 8.338755, 47.1182939 ], + [ 8.3389408, 47.1182316 ], + [ 8.3391215, 47.1181628 ], + [ 8.3392968, 47.1180876 ], + [ 8.339466, 47.1180063 ], + [ 8.3396287, 47.117919 ], + [ 8.3397845, 47.117826 ], + [ 8.339933, 47.1177276 ], + [ 8.3400737, 47.117624 ], + [ 8.3402063, 47.1175155 ], + [ 8.3403304, 47.1174025 ], + [ 8.3404457, 47.1172851 ], + [ 8.3405518, 47.1171638 ], + [ 8.3406484, 47.1170389 ], + [ 8.3407354, 47.1169107 ], + [ 8.3408124, 47.1167796 ], + [ 8.3408792, 47.1166459 ], + [ 8.3409357, 47.11651 ], + [ 8.3409817, 47.1163722 ], + [ 8.3410171, 47.116233 ], + [ 8.3410417, 47.1160927 ], + [ 8.3410556, 47.1159518 ], + [ 8.3410586, 47.1158105 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0072", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Mettlen", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Mettlen", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Mettlen", + "lang" : "it-CH" + }, + { + "text" : "Substation Mettlen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.6049168, 47.463772 ], + [ 9.6049181, 47.4637742 ], + [ 9.6050216, 47.4639689 ], + [ 9.60511, 47.464167 ], + [ 9.6054271, 47.4649513 ], + [ 9.605615, 47.465443 ], + [ 9.6057824, 47.4659382 ], + [ 9.605929, 47.4664364 ], + [ 9.6060549, 47.4669372 ], + [ 9.6061598, 47.4674403 ], + [ 9.6062437, 47.4679452 ], + [ 9.6064522, 47.4693809 ], + [ 9.6064751, 47.4694913 ], + [ 9.6065113, 47.4696001 ], + [ 9.6065607, 47.4697064 ], + [ 9.6066228, 47.4698097 ], + [ 9.6066974, 47.4699091 ], + [ 9.6067837, 47.470004 ], + [ 9.6068814, 47.4700937 ], + [ 9.6069896, 47.4701777 ], + [ 9.6071077, 47.4702553 ], + [ 9.6072349, 47.470326 ], + [ 9.6073702, 47.4703894 ], + [ 9.6075128, 47.470445 ], + [ 9.6076617, 47.4704924 ], + [ 9.6078159, 47.4705313 ], + [ 9.6079742, 47.4705614 ], + [ 9.6081358, 47.4705826 ], + [ 9.6082993, 47.4705947 ], + [ 9.6084637, 47.4705975 ], + [ 9.6086279, 47.4705911 ], + [ 9.6087908, 47.4705756 ], + [ 9.6091507, 47.4705208 ], + [ 9.609503, 47.4704469 ], + [ 9.6098455, 47.4703542 ], + [ 9.6101761, 47.4702434 ], + [ 9.6104927, 47.4701151 ], + [ 9.6107933, 47.4699703 ], + [ 9.6110759, 47.4698097 ], + [ 9.6113388, 47.4696344 ], + [ 9.6115803, 47.4694455 ], + [ 9.611799, 47.4692442 ], + [ 9.6119935, 47.4690317 ], + [ 9.6121624, 47.4688095 ], + [ 9.6161278, 47.4630439 ], + [ 9.6049168, 47.463772 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 120, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "CTR0014", + "country" : "CHE", + "name" : [ + { + "text" : "CTR ST. GALLEN", + "lang" : "de-CH" + }, + { + "text" : "CTR ST. GALLEN", + "lang" : "fr-CH" + }, + { + "text" : "CTR ST. GALLEN", + "lang" : "it-CH" + }, + { + "text" : "CTR ST. GALLEN", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only permitted from an altitude of 120 m above ground with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Skyguide Special Flight Office", + "lang" : "de-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "it-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "en-GB" + } + ], + "siteURL" : "https://skyguide.ch/services/special-flights", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.1693089, 46.4536641 ], + [ 7.1692055, 46.453501 ], + [ 7.1690826, 46.453364 ], + [ 7.1690437, 46.4533207 ], + [ 7.1688714000000004, 46.4531629 ], + [ 7.168717, 46.4530681 ], + [ 7.1685378, 46.4529948 ], + [ 7.1683987, 46.4529666 ], + [ 7.1682284, 46.4529158 ], + [ 7.1680973, 46.4528435 ], + [ 7.1679495, 46.4527307 ], + [ 7.1678435, 46.4525838 ], + [ 7.1677453, 46.4524379 ], + [ 7.1677042, 46.4523307 ], + [ 7.167598, 46.4522288 ], + [ 7.1674033, 46.452133 ], + [ 7.1671175, 46.4520154 ], + [ 7.1668967, 46.4519204 ], + [ 7.1666771, 46.451847 ], + [ 7.1664902999999995, 46.4517287 ], + [ 7.1664075, 46.4516277 ], + [ 7.1663181, 46.4515484 ], + [ 7.1662858, 46.4515096 ], + [ 7.1661792, 46.4514815 ], + [ 7.1660246, 46.4514361 ], + [ 7.1659025, 46.4513854 ], + [ 7.1657805, 46.4513123 ], + [ 7.1656418, 46.4512004 ], + [ 7.1656003, 46.4511607 ], + [ 7.1653065, 46.4511105 ], + [ 7.1650138, 46.4510828 ], + [ 7.1648096, 46.4510437 ], + [ 7.1645902, 46.4509424 ], + [ 7.1644517, 46.4507846 ], + [ 7.1642395, 46.4505367 ], + [ 7.1640998, 46.4503736 ], + [ 7.1638954, 46.4501428 ], + [ 7.1637652, 46.4501371 ], + [ 7.1636754, 46.4501368 ], + [ 7.1635377, 46.4501032 ], + [ 7.1633751, 46.4500758 ], + [ 7.1633012, 46.4500253 ], + [ 7.163178, 46.4499296 ], + [ 7.1629829, 46.4499067 ], + [ 7.1628046, 46.4499017 ], + [ 7.1626904, 46.4498511 ], + [ 7.1625438, 46.4497608 ], + [ 7.1625181, 46.4496824 ], + [ 7.162486, 46.4495978 ], + [ 7.1625581, 46.4495017 ], + [ 7.162696, 46.4492583 ], + [ 7.1627526, 46.4491397 ], + [ 7.1627621, 46.4490551 ], + [ 7.1625906, 46.4490052 ], + [ 7.162264, 46.4489829 ], + [ 7.1619872, 46.4489048 ], + [ 7.1617431, 46.4487981 ], + [ 7.1615143, 46.4487471 ], + [ 7.1613023, 46.4487196 ], + [ 7.1610342, 46.4487253 ], + [ 7.1608468, 46.4487149 ], + [ 7.1606922, 46.4486642 ], + [ 7.1604066, 46.4485348 ], + [ 7.1600146, 46.4483377 ], + [ 7.1596733, 46.4481354 ], + [ 7.1593944, 46.4479557 ], + [ 7.1591832, 46.4477753 ], + [ 7.1589707, 46.4476011 ], + [ 7.1588973, 46.447448 ], + [ 7.1588396, 46.4472958 ], + [ 7.1588638, 46.4471322 ], + [ 7.1589205, 46.4469911 ], + [ 7.1589615, 46.446867 ], + [ 7.1590663, 46.4467261 ], + [ 7.159115, 46.4466353 ], + [ 7.1591232, 46.4465508 ], + [ 7.1591224, 46.4464491 ], + [ 7.159058, 46.4463311 ], + [ 7.1589674, 46.4462239 ], + [ 7.1589588, 46.4461339 ], + [ 7.1589672, 46.4460269 ], + [ 7.1589989, 46.4459307 ], + [ 7.1589589, 46.4458577 ], + [ 7.1588526, 46.4457783 ], + [ 7.1586892, 46.4456663 ], + [ 7.1585663, 46.4455365 ], + [ 7.1584029, 46.4454183 ], + [ 7.158224, 46.4452829 ], + [ 7.1580606, 46.44517 ], + [ 7.1579791, 46.4450862 ], + [ 7.1578327999999996, 46.4449455 ], + [ 7.1576862, 46.4448551 ], + [ 7.1575798, 46.4447937 ], + [ 7.1574902, 46.4447539 ], + [ 7.1573264, 46.4447202 ], + [ 7.157156, 46.4447153 ], + [ 7.1570012, 46.444687 ], + [ 7.1568616, 46.4445122 ], + [ 7.1565286, 46.4444906 ], + [ 7.1560641, 46.4444742 ], + [ 7.1556323, 46.4444182 ], + [ 7.1553074, 46.4443455 ], + [ 7.1549723, 46.4442277 ], + [ 7.1546463, 46.4441045 ], + [ 7.1544018, 46.4440652 ], + [ 7.1540184, 46.4439815 ], + [ 7.1537415, 46.4439142 ], + [ 7.1535062, 46.443880300000004 ], + [ 7.1533594, 46.4438296 ], + [ 7.1532698, 46.4437907 ], + [ 7.1496411, 46.4468328 ], + [ 7.1514543, 46.4477415 ], + [ 7.1693089, 46.4536641 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00058", + "country" : "CHE", + "name" : [ + { + "text" : "Pierreuse - Gummfluh", + "lang" : "de-CH" + }, + { + "text" : "Pierreuse - Gummfluh", + "lang" : "fr-CH" + }, + { + "text" : "Pierreuse - Gummfluh", + "lang" : "it-CH" + }, + { + "text" : "Pierreuse - Gummfluh", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "startDateTime" : "2024-11-15T00:00:00+01:00", + "endDateTime" : "2025-04-15T00:00:00+02:00" + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Generaldirektion für Umwelt", + "lang" : "de-CH" + }, + { + "text" : "Direction générale de l'environnement", + "lang" : "fr-CH" + }, + { + "text" : "Direzione generale dell'Ambiente", + "lang" : "it-CH" + }, + { + "text" : "Environment Department", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.dge@vd.ch", + "phone" : "0041213164422", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8947579999999995, 47.4200076 ], + [ 7.8949288, 47.4198759 ], + [ 7.8950373, 47.4197705 ], + [ 7.8951263, 47.4196093 ], + [ 7.8951677, 47.4194773 ], + [ 7.8952316, 47.4189428 ], + [ 7.8951891, 47.4189064 ], + [ 7.8947373, 47.418925 ], + [ 7.894506, 47.4189477 ], + [ 7.8935808, 47.4190544 ], + [ 7.8936022999999995, 47.4191268 ], + [ 7.8936089, 47.4191393 ], + [ 7.8936893999999995, 47.4192939 ], + [ 7.8937071, 47.4193279 ], + [ 7.8937091, 47.4193317 ], + [ 7.892719, 47.4194966 ], + [ 7.8926797, 47.4195038 ], + [ 7.8923670999999995, 47.4195613 ], + [ 7.8919719, 47.4196577 ], + [ 7.8916159, 47.4197618 ], + [ 7.8914442, 47.419812 ], + [ 7.8913841, 47.4199542 ], + [ 7.8914577999999995, 47.4199718 ], + [ 7.8914821, 47.4199942 ], + [ 7.8914959, 47.4200609 ], + [ 7.8917828, 47.4200544 ], + [ 7.8921579, 47.4200229 ], + [ 7.8923956, 47.4199927 ], + [ 7.89251, 47.419979 ], + [ 7.8926222, 47.4199657 ], + [ 7.8928556, 47.4199393 ], + [ 7.8928394, 47.4200322 ], + [ 7.8927898, 47.4202895 ], + [ 7.893333, 47.4202512 ], + [ 7.8937861, 47.4202246 ], + [ 7.8942193, 47.4201943 ], + [ 7.8944227, 47.4201736 ], + [ 7.8945605, 47.4201598 ], + [ 7.8947579999999995, 47.4200076 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr078", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Rüttiacher", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Rüttiacher", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Rüttiacher", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Rüttiacher", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.9737865, 46.6112861 ], + [ 6.9719994, 46.6129541 ], + [ 6.9707318, 46.6155555 ], + [ 6.9718627, 46.6168104 ], + [ 6.9749795, 46.6176173 ], + [ 6.9805974, 46.6175621 ], + [ 6.9803285, 46.6169368 ], + [ 6.9791573, 46.6151191 ], + [ 6.9787824, 46.6145916 ], + [ 6.9784258999999995, 46.614088100000004 ], + [ 6.9779791, 46.6135953 ], + [ 6.9771676, 46.6132933 ], + [ 6.9757866, 46.6128877 ], + [ 6.9754865, 46.6128642 ], + [ 6.9752775, 46.6124547 ], + [ 6.9749845, 46.6121137 ], + [ 6.9737865, 46.6112861 ] + ] + ], + "layer" : { + "upper" : 300, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "FR006", + "country" : "CHE", + "name" : [ + { + "text" : "CIG Sud", + "lang" : "de-CH" + }, + { + "text" : "CIG Sud", + "lang" : "fr-CH" + }, + { + "text" : "CIG Sud", + "lang" : "it-CH" + }, + { + "text" : "CIG Sud", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kantonspolizei (Pol)", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale (Pol)", + "lang" : "fr-CH" + }, + { + "text" : "Police cantonale (Pol)", + "lang" : "it-CH" + }, + { + "text" : "Police cantonale (Pol)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Kommandant", + "lang" : "de-CH" + }, + { + "text" : "Commandant", + "lang" : "fr-CH" + }, + { + "text" : "Commandant", + "lang" : "it-CH" + }, + { + "text" : "Commandant", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.fr.ch/police-et-securite/criminalite-ordre-public-et-circulation/drones-legislation-et-demandes-de-derogation", + "email" : "CEA@fr.ch", + "phone" : "0041263470117", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.756364, 47.5394676 ], + [ 7.7563577, 47.5393264 ], + [ 7.7563405, 47.5391856 ], + [ 7.7563124, 47.5390456 ], + [ 7.7562736, 47.5389069 ], + [ 7.7562241, 47.5387696 ], + [ 7.756164, 47.5386344 ], + [ 7.7560936, 47.5385014 ], + [ 7.756013, 47.5383711 ], + [ 7.7559224, 47.5382439 ], + [ 7.7558221, 47.53812 ], + [ 7.7557124, 47.5379998 ], + [ 7.7555936, 47.5378838 ], + [ 7.7554659, 47.537772 ], + [ 7.7553298, 47.537665 ], + [ 7.7551856, 47.5375629 ], + [ 7.7550337, 47.5374661 ], + [ 7.7548746, 47.5373748 ], + [ 7.7547086, 47.5372893 ], + [ 7.7545362, 47.5372097 ], + [ 7.7543579, 47.5371364 ], + [ 7.7541742, 47.5370695 ], + [ 7.7539855, 47.5370092 ], + [ 7.7537925, 47.5369556 ], + [ 7.7535956, 47.536909 ], + [ 7.7533954, 47.5368695 ], + [ 7.7531923, 47.536837 ], + [ 7.7529871, 47.5368118 ], + [ 7.7527802, 47.536794 ], + [ 7.7525721999999995, 47.5367834 ], + [ 7.7523636, 47.5367803 ], + [ 7.7521550999999995, 47.5367846 ], + [ 7.7519472, 47.5367962 ], + [ 7.7517405, 47.5368152 ], + [ 7.7515356, 47.5368415 ], + [ 7.7513328999999995, 47.536875 ], + [ 7.7511332, 47.5369157 ], + [ 7.7509368, 47.5369634 ], + [ 7.7507444, 47.5370179 ], + [ 7.7505565, 47.5370793 ], + [ 7.7503736, 47.5371471 ], + [ 7.7501961999999995, 47.5372214 ], + [ 7.7500247, 47.5373019 ], + [ 7.7498597, 47.5373883 ], + [ 7.7497017, 47.5374805 ], + [ 7.7495509, 47.5375781 ], + [ 7.7494079, 47.537681 ], + [ 7.7492731, 47.5377888 ], + [ 7.7491467, 47.5379012 ], + [ 7.7490293, 47.5380179 ], + [ 7.748921, 47.5381386 ], + [ 7.7488222, 47.538263 ], + [ 7.7487331, 47.5383908 ], + [ 7.748654, 47.5385215 ], + [ 7.7485852, 47.5386548 ], + [ 7.7485267, 47.5387904 ], + [ 7.7484788, 47.5389279 ], + [ 7.7484416, 47.5390669 ], + [ 7.7484152, 47.539207 ], + [ 7.7483997, 47.5393479 ], + [ 7.748395, 47.5394891 ], + [ 7.7484013, 47.5396303 ], + [ 7.7484185, 47.5397711 ], + [ 7.7484465, 47.5399111 ], + [ 7.7484854, 47.5400499 ], + [ 7.7485349, 47.5401871 ], + [ 7.7485949, 47.5403224 ], + [ 7.7486653, 47.5404553 ], + [ 7.7487459, 47.5405856 ], + [ 7.7488364, 47.5407129 ], + [ 7.7489367, 47.5408367 ], + [ 7.7490464, 47.5409569 ], + [ 7.7491652, 47.541073 ], + [ 7.7492929, 47.5411847 ], + [ 7.749429, 47.5412918 ], + [ 7.7495732, 47.5413938 ], + [ 7.7497251, 47.5414907 ], + [ 7.7498842, 47.541582 ], + [ 7.7500502000000004, 47.5416675 ], + [ 7.7502226, 47.5417471 ], + [ 7.7504009, 47.5418204 ], + [ 7.7505847, 47.5418873 ], + [ 7.7507733, 47.5419476 ], + [ 7.7509664, 47.5420012 ], + [ 7.7511633, 47.5420478 ], + [ 7.7513635, 47.5420874 ], + [ 7.7515666, 47.5421198 ], + [ 7.7517719, 47.542145 ], + [ 7.7519788, 47.5421629 ], + [ 7.7521868, 47.5421734 ], + [ 7.7523954, 47.5421765 ], + [ 7.7526039, 47.5421723 ], + [ 7.7528118, 47.5421606 ], + [ 7.7530185, 47.5421416 ], + [ 7.7532235, 47.5421153 ], + [ 7.7534262, 47.5420818 ], + [ 7.753626, 47.5420411 ], + [ 7.7538222999999995, 47.5419935 ], + [ 7.7540147, 47.5419389 ], + [ 7.7542027000000004, 47.5418776 ], + [ 7.7543856, 47.5418097 ], + [ 7.754563, 47.5417354 ], + [ 7.7547345, 47.5416549 ], + [ 7.7548995, 47.5415684 ], + [ 7.7550576, 47.5414763 ], + [ 7.7552083, 47.5413786 ], + [ 7.7553513, 47.5412758 ], + [ 7.7554861, 47.541168 ], + [ 7.7556125, 47.5410556 ], + [ 7.7557299, 47.5409388 ], + [ 7.7558382, 47.5408181 ], + [ 7.755937, 47.5406937 ], + [ 7.7560261, 47.5405659 ], + [ 7.7561051, 47.5404352 ], + [ 7.7561739, 47.5403019 ], + [ 7.7562324, 47.5401663 ], + [ 7.7562803, 47.5400288 ], + [ 7.7563174, 47.5398898 ], + [ 7.7563438, 47.5397497 ], + [ 7.7563594, 47.5396088 ], + [ 7.756364, 47.5394676 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0004", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Asphard", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Asphard", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Asphard", + "lang" : "it-CH" + }, + { + "text" : "Substation Asphard", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8818978, 47.4152643 ], + [ 7.8818602, 47.4152959 ], + [ 7.8819531, 47.4153681 ], + [ 7.8820965, 47.415442 ], + [ 7.8821551, 47.4155233 ], + [ 7.8822805, 47.4156703 ], + [ 7.8823172, 47.4158598 ], + [ 7.8823884, 47.4159177 ], + [ 7.8823864, 47.4160001 ], + [ 7.8823871, 47.416009 ], + [ 7.882389, 47.4160178 ], + [ 7.882424, 47.4161051 ], + [ 7.882512, 47.4164071 ], + [ 7.8825229, 47.416456 ], + [ 7.8825275999999995, 47.4165054 ], + [ 7.882701, 47.4164819 ], + [ 7.8826392, 47.4163874 ], + [ 7.8825914, 47.416273 ], + [ 7.8825705, 47.4161518 ], + [ 7.8825388, 47.4160402 ], + [ 7.8825243, 47.4159714 ], + [ 7.8824827, 47.4159027 ], + [ 7.8824676, 47.4158778 ], + [ 7.8824287, 47.4158327 ], + [ 7.8824527, 47.4157328 ], + [ 7.8824374, 47.4156331 ], + [ 7.8823582, 47.4155632 ], + [ 7.8822837, 47.4154847 ], + [ 7.8822704, 47.4154525 ], + [ 7.882237, 47.4154261 ], + [ 7.8821396, 47.4153767 ], + [ 7.8820831, 47.4153126 ], + [ 7.8818978, 47.4152643 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns189", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Mapprach - Hofmatt", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Mapprach - Hofmatt", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Mapprach - Hofmatt", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Mapprach - Hofmatt", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.1349667, 46.395721 ], + [ 8.1349595, 46.3955798 ], + [ 8.1349417, 46.3954391 ], + [ 8.1349132, 46.3952992 ], + [ 8.1348742, 46.3951605 ], + [ 8.1348248, 46.3950234 ], + [ 8.1347651, 46.3948883 ], + [ 8.1346952, 46.3947555 ], + [ 8.1346154, 46.3946255 ], + [ 8.1345259, 46.3944985 ], + [ 8.1344268, 46.3943749 ], + [ 8.1343186, 46.3942551 ], + [ 8.1342015, 46.3941394 ], + [ 8.1340757, 46.3940281 ], + [ 8.1339417, 46.3939215 ], + [ 8.1337999, 46.3938198 ], + [ 8.1336505, 46.3937235 ], + [ 8.1334941, 46.3936327 ], + [ 8.133331, 46.3935477 ], + [ 8.1331617, 46.3934687 ], + [ 8.1329866, 46.3933959 ], + [ 8.1328063, 46.3933296 ], + [ 8.132621199999999, 46.3932699 ], + [ 8.1324319, 46.393217 ], + [ 8.1322388, 46.393171 ], + [ 8.1320425, 46.3931321 ], + [ 8.1318436, 46.3931003 ], + [ 8.1316425, 46.3930758 ], + [ 8.1314398, 46.3930586 ], + [ 8.1312361, 46.3930488 ], + [ 8.1310319, 46.3930463 ], + [ 8.1308279, 46.3930513 ], + [ 8.1306244, 46.3930636 ], + [ 8.1304222, 46.3930833 ], + [ 8.1302218, 46.3931102 ], + [ 8.1300237, 46.3931444 ], + [ 8.1298284, 46.3931857 ], + [ 8.1296365, 46.3932341 ], + [ 8.1294486, 46.3932893 ], + [ 8.129265, 46.3933512 ], + [ 8.1290864, 46.3934197 ], + [ 8.1289133, 46.3934946 ], + [ 8.128746, 46.3935757 ], + [ 8.1285851, 46.3936627 ], + [ 8.128431, 46.3937554 ], + [ 8.1282841, 46.3938535 ], + [ 8.1281449, 46.3939568 ], + [ 8.1280136, 46.3940651 ], + [ 8.1278908, 46.3941779 ], + [ 8.1277766, 46.3942951 ], + [ 8.1276714, 46.3944162 ], + [ 8.1275756, 46.3945409 ], + [ 8.1274893, 46.394669 ], + [ 8.1274128, 46.394800000000004 ], + [ 8.1273463, 46.3949336 ], + [ 8.12729, 46.3950694 ], + [ 8.1272441, 46.395207 ], + [ 8.1272086, 46.3953462 ], + [ 8.1271838, 46.3954864 ], + [ 8.1271695, 46.3956274 ], + [ 8.127166, 46.3957686 ], + [ 8.1271731, 46.3959098 ], + [ 8.1271909, 46.3960506 ], + [ 8.1272193, 46.3961905 ], + [ 8.1272583, 46.3963292 ], + [ 8.1273077, 46.3964663 ], + [ 8.1273675, 46.3966014 ], + [ 8.1274373, 46.3967341 ], + [ 8.1275171, 46.3968642 ], + [ 8.1276066, 46.3969912 ], + [ 8.1277056, 46.3971148 ], + [ 8.1278139, 46.3972346 ], + [ 8.127931, 46.3973503 ], + [ 8.1280567, 46.3974616 ], + [ 8.1281907, 46.3975683 ], + [ 8.1283326, 46.3976699 ], + [ 8.128482, 46.3977662 ], + [ 8.1286384, 46.397857 ], + [ 8.1288015, 46.3979421 ], + [ 8.1289708, 46.3980211 ], + [ 8.1291459, 46.3980938 ], + [ 8.1293262, 46.3981601 ], + [ 8.1295113, 46.3982198 ], + [ 8.1297006, 46.3982728 ], + [ 8.1298937, 46.3983188 ], + [ 8.13009, 46.3983577 ], + [ 8.130289, 46.3983895 ], + [ 8.1304901, 46.398414 ], + [ 8.1306928, 46.3984312 ], + [ 8.1308965, 46.398441 ], + [ 8.1311007, 46.3984435 ], + [ 8.1313048, 46.3984385 ], + [ 8.1315083, 46.3984262 ], + [ 8.1317105, 46.3984065 ], + [ 8.131911, 46.3983796 ], + [ 8.1321091, 46.3983454 ], + [ 8.1323044, 46.398304 ], + [ 8.1324963, 46.3982557 ], + [ 8.1326842, 46.3982005 ], + [ 8.1328678, 46.3981385 ], + [ 8.1330464, 46.39807 ], + [ 8.1332195, 46.3979951 ], + [ 8.1333868, 46.3979141 ], + [ 8.1335477, 46.3978271 ], + [ 8.1337018, 46.3977344 ], + [ 8.1338487, 46.3976362 ], + [ 8.133988, 46.3975329 ], + [ 8.1341192, 46.3974246 ], + [ 8.1342421, 46.3973118 ], + [ 8.1343562, 46.3971946 ], + [ 8.1344614, 46.3970735 ], + [ 8.1345573, 46.3969488 ], + [ 8.1346435, 46.3968207 ], + [ 8.13472, 46.3966897 ], + [ 8.1347865, 46.3965561 ], + [ 8.1348427, 46.3964203 ], + [ 8.1348886, 46.3962826 ], + [ 8.1349241, 46.3961435 ], + [ 8.1349489, 46.3960032 ], + [ 8.1349631, 46.3958623 ], + [ 8.1349667, 46.395721 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0034", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Fiesch", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Fiesch", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Fiesch", + "lang" : "it-CH" + }, + { + "text" : "Substation Fiesch", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6995444, 47.4596743 ], + [ 7.6995786, 47.4599051 ], + [ 7.69962, 47.4601525 ], + [ 7.6996701, 47.4603851 ], + [ 7.7000326, 47.4607773 ], + [ 7.7002267, 47.4608873 ], + [ 7.7004736, 47.4609482 ], + [ 7.7007802, 47.4609366 ], + [ 7.7008029, 47.460831 ], + [ 7.7008734, 47.4607981 ], + [ 7.7010183, 47.460753 ], + [ 7.7011188, 47.4607753 ], + [ 7.7011773, 47.4608495 ], + [ 7.7012096, 47.4608904 ], + [ 7.7012487, 47.4609401 ], + [ 7.7012767, 47.4613037 ], + [ 7.7013367, 47.461449 ], + [ 7.7014906, 47.4615813 ], + [ 7.7014981, 47.4615816 ], + [ 7.7017507, 47.461694 ], + [ 7.7027652, 47.4613567 ], + [ 7.7028295, 47.4613236 ], + [ 7.7035698, 47.4606801 ], + [ 7.7035815, 47.4606459 ], + [ 7.7035964, 47.4606117 ], + [ 7.7036158, 47.4605759 ], + [ 7.7036554, 47.4605274 ], + [ 7.7036868, 47.4604937 ], + [ 7.703722, 47.4604656 ], + [ 7.7037625, 47.4604466 ], + [ 7.7038013, 47.4604327 ], + [ 7.70384, 47.4604273 ], + [ 7.703882, 47.460428 ], + [ 7.7039466, 47.4604278 ], + [ 7.7039992999999996, 47.4604343 ], + [ 7.7041152, 47.4604504 ], + [ 7.7042897, 47.460478 ], + [ 7.7044154, 47.4604849 ], + [ 7.7044935, 47.4604806 ], + [ 7.7045875, 47.4604758 ], + [ 7.7046738999999995, 47.4604705 ], + [ 7.7047574, 47.4604667 ], + [ 7.70481, 47.4604682 ], + [ 7.7048777, 47.4604706 ], + [ 7.7050748, 47.4604259 ], + [ 7.7051053, 47.4604197 ], + [ 7.7051209, 47.4604177 ], + [ 7.7051526, 47.4604158 ], + [ 7.7051843, 47.4604167 ], + [ 7.7052156, 47.4604205 ], + [ 7.7052458999999995, 47.4604271 ], + [ 7.7052605, 47.4604314 ], + [ 7.7052899, 47.4604426 ], + [ 7.7054591, 47.4605186 ], + [ 7.7054972, 47.4605345 ], + [ 7.7055656, 47.4605664 ], + [ 7.7056397, 47.4605935 ], + [ 7.7057344, 47.4606241 ], + [ 7.7058188, 47.4606508 ], + [ 7.7059218, 47.4606822 ], + [ 7.7060537, 47.4607177 ], + [ 7.7061703999999995, 47.4607414 ], + [ 7.7062268, 47.4607492 ], + [ 7.7062684, 47.4607548 ], + [ 7.7063272, 47.4607619 ], + [ 7.7063655, 47.4607675 ], + [ 7.706759, 47.4607712 ], + [ 7.7068054, 47.4607718 ], + [ 7.7068609, 47.4607728 ], + [ 7.7073803, 47.4604672 ], + [ 7.7073468, 47.4603299 ], + [ 7.7073221, 47.4602538 ], + [ 7.7072943, 47.4601526 ], + [ 7.7072796, 47.460103 ], + [ 7.7069738999999995, 47.460131 ], + [ 7.7066986, 47.4601536 ], + [ 7.7066727, 47.4600182 ], + [ 7.7064211, 47.4600599 ], + [ 7.7063793, 47.4597357 ], + [ 7.7063483, 47.4594964 ], + [ 7.7063454, 47.4594737 ], + [ 7.7063388, 47.4594064 ], + [ 7.7063219, 47.4592485 ], + [ 7.7063177, 47.4592146 ], + [ 7.7066902, 47.4592282 ], + [ 7.7069355, 47.459238 ], + [ 7.7069299, 47.4589837 ], + [ 7.7060635, 47.4586922 ], + [ 7.7058013, 47.4586529 ], + [ 7.7048558, 47.4587853 ], + [ 7.7033194, 47.4589081 ], + [ 7.7016501, 47.4589273 ], + [ 7.7017145, 47.4588751 ], + [ 7.7017504, 47.4588445 ], + [ 7.7017709, 47.4588207 ], + [ 7.7017846, 47.4587948 ], + [ 7.7017961, 47.4587596 ], + [ 7.701826, 47.4586046 ], + [ 7.7018389, 47.4585352 ], + [ 7.7018567000000004, 47.4584852 ], + [ 7.7018803, 47.4584435 ], + [ 7.7019245, 47.4583827 ], + [ 7.7019847, 47.4583222 ], + [ 7.7020495, 47.4582599 ], + [ 7.7020838, 47.45823 ], + [ 7.7022755, 47.4581081 ], + [ 7.7023478999999995, 47.4580633 ], + [ 7.7023838, 47.4580439 ], + [ 7.702414, 47.4580312 ], + [ 7.7024742, 47.4580102 ], + [ 7.702596, 47.4579794 ], + [ 7.7026557, 47.4579574 ], + [ 7.702859, 47.4579123 ], + [ 7.7029733, 47.4578866 ], + [ 7.7030337, 47.4578853 ], + [ 7.7031168999999995, 47.457897 ], + [ 7.7031484, 47.4579021 ], + [ 7.703262, 47.4579019 ], + [ 7.7033336, 47.4578996 ], + [ 7.7033662, 47.4578959 ], + [ 7.7033930999999995, 47.4578901 ], + [ 7.7034214, 47.4578812 ], + [ 7.7036862, 47.4577855 ], + [ 7.7037616, 47.4577627 ], + [ 7.703851, 47.4577362 ], + [ 7.703893, 47.4577246 ], + [ 7.703936, 47.457715 ], + [ 7.7039706, 47.4577079 ], + [ 7.7039949, 47.4574777 ], + [ 7.7040497, 47.4572169 ], + [ 7.7042021, 47.4570817 ], + [ 7.70435, 47.4569486 ], + [ 7.7044864, 47.4568522 ], + [ 7.7049663, 47.4565129 ], + [ 7.7036415, 47.4561909 ], + [ 7.7030455, 47.4558554 ], + [ 7.7029557, 47.4558699 ], + [ 7.7022464, 47.4557993 ], + [ 7.7016344, 47.4557385 ], + [ 7.6999662, 47.4555736 ], + [ 7.7000178, 47.4557207 ], + [ 7.7000995, 47.4559203 ], + [ 7.700193, 47.4561539 ], + [ 7.7003585999999995, 47.4565276 ], + [ 7.7004268, 47.4566814 ], + [ 7.7004738, 47.4567876 ], + [ 7.7004339, 47.4570388 ], + [ 7.7003998, 47.4572539 ], + [ 7.7003857, 47.4573424 ], + [ 7.7003683, 47.457406 ], + [ 7.7002439, 47.4578603 ], + [ 7.700141, 47.458167 ], + [ 7.6998678, 47.4581552 ], + [ 7.6997189, 47.458489900000004 ], + [ 7.6996564, 47.4586062 ], + [ 7.6996459999999995, 47.4588705 ], + [ 7.6996362, 47.4590652 ], + [ 7.6996348, 47.4591195 ], + [ 7.6995834, 47.4593741 ], + [ 7.6995798, 47.4594017 ], + [ 7.6995444, 47.4596743 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns223", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Stellihübel - Furtboden", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Stellihübel - Furtboden", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Stellihübel - Furtboden", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Stellihübel - Furtboden", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.597172, 47.5153237 ], + [ 7.597172, 47.515324 ], + [ 7.5970756999999995, 47.5152992 ], + [ 7.5965195, 47.5153135 ], + [ 7.5954138, 47.5155339 ], + [ 7.5934772, 47.5150662 ], + [ 7.5924488, 47.5150212 ], + [ 7.5925133, 47.5151552 ], + [ 7.5925294, 47.5151556 ], + [ 7.5928712, 47.5151631 ], + [ 7.5929104, 47.515187 ], + [ 7.5929138, 47.5151891 ], + [ 7.592918, 47.5151989 ], + [ 7.5929441, 47.5152601 ], + [ 7.5930461000000005, 47.5154994 ], + [ 7.5930707, 47.5157244 ], + [ 7.5930736, 47.5157507 ], + [ 7.593101, 47.5158101 ], + [ 7.5931952, 47.5160138 ], + [ 7.5932765, 47.5162382 ], + [ 7.5934587, 47.5166098 ], + [ 7.5936228, 47.5166734 ], + [ 7.5936283, 47.5166756 ], + [ 7.5938151, 47.5166153 ], + [ 7.5939516000000005, 47.5165713 ], + [ 7.5940104999999996, 47.5165537 ], + [ 7.594036, 47.5165461 ], + [ 7.5942124, 47.5164934 ], + [ 7.5943888, 47.5164407 ], + [ 7.5944983, 47.5164066 ], + [ 7.5945374999999995, 47.5163944 ], + [ 7.5945767, 47.5163821 ], + [ 7.5947057000000004, 47.5163419 ], + [ 7.5947343, 47.516333 ], + [ 7.5947771, 47.5163184 ], + [ 7.5947844, 47.516316 ], + [ 7.5948264, 47.5163017 ], + [ 7.5948373, 47.5162979 ], + [ 7.5949095, 47.516273 ], + [ 7.5949195, 47.5162689 ], + [ 7.5950777, 47.5162042 ], + [ 7.5950968, 47.5161956 ], + [ 7.5951922, 47.5161532 ], + [ 7.5952721, 47.5161177 ], + [ 7.5952876, 47.5161108 ], + [ 7.5954822, 47.5160521 ], + [ 7.5958396, 47.5159443 ], + [ 7.5959689, 47.5159053 ], + [ 7.596103, 47.5158728 ], + [ 7.5963677, 47.5158087 ], + [ 7.5964636, 47.5157855 ], + [ 7.5965584, 47.51577 ], + [ 7.5966391, 47.5157568 ], + [ 7.596657, 47.5157541 ], + [ 7.5966751, 47.515752 ], + [ 7.5966933999999995, 47.5157507 ], + [ 7.5967118, 47.51575 ], + [ 7.5967301, 47.5157499 ], + [ 7.5967485, 47.5157506 ], + [ 7.5967668, 47.5157519 ], + [ 7.5967849, 47.5157538 ], + [ 7.5968029, 47.5157565 ], + [ 7.5968206, 47.5157598 ], + [ 7.5968381, 47.5157637 ], + [ 7.5968552, 47.5157682 ], + [ 7.5968719, 47.5157734 ], + [ 7.5968882, 47.5157792 ], + [ 7.596904, 47.5157855 ], + [ 7.5969193, 47.5157924 ], + [ 7.5969322, 47.515799 ], + [ 7.5969447, 47.5158059 ], + [ 7.5969567, 47.5158133 ], + [ 7.5969682, 47.515821 ], + [ 7.5969791, 47.5158291 ], + [ 7.5969895, 47.5158375 ], + [ 7.5969992, 47.5158462 ], + [ 7.5970083, 47.5158553 ], + [ 7.5970168000000005, 47.5158646 ], + [ 7.5970247, 47.5158742 ], + [ 7.5970318, 47.515884 ], + [ 7.5970383, 47.515894 ], + [ 7.597044, 47.5159045 ], + [ 7.5970489, 47.5159152 ], + [ 7.5970531, 47.5159261 ], + [ 7.5970566, 47.5159371 ], + [ 7.5970592, 47.5159481 ], + [ 7.597061, 47.5159593 ], + [ 7.5970738, 47.516045 ], + [ 7.597111, 47.5162953 ], + [ 7.5971386, 47.5164277 ], + [ 7.5971736, 47.5165384 ], + [ 7.5971798, 47.5165579 ], + [ 7.5972386, 47.5167181 ], + [ 7.5972398, 47.5167214 ], + [ 7.5972655, 47.5167911 ], + [ 7.5972764, 47.5168208 ], + [ 7.5972767999999995, 47.5168218 ], + [ 7.5972772, 47.5168228 ], + [ 7.5972932, 47.5168664 ], + [ 7.5973095, 47.5169106 ], + [ 7.597267, 47.5169256 ], + [ 7.5972106, 47.5169039 ], + [ 7.5972093, 47.5169035 ], + [ 7.597207, 47.5169061 ], + [ 7.5971761, 47.5169417 ], + [ 7.5971927, 47.516992 ], + [ 7.5972474, 47.5170496 ], + [ 7.5973989, 47.5172094 ], + [ 7.5975307, 47.517342 ], + [ 7.5975451, 47.5173565 ], + [ 7.59775, 47.5175627 ], + [ 7.5978401, 47.5176535 ], + [ 7.5978623, 47.5177392 ], + [ 7.598079, 47.5179284 ], + [ 7.5982955, 47.5180789 ], + [ 7.5986476, 47.5182554 ], + [ 7.598951, 47.518338 ], + [ 7.5990736, 47.5183531 ], + [ 7.5991641, 47.5184011 ], + [ 7.5992355, 47.5185757 ], + [ 7.599242, 47.5185823 ], + [ 7.5993327, 47.518698 ], + [ 7.5994263, 47.5187175 ], + [ 7.5996329, 47.5187959 ], + [ 7.599969, 47.519003 ], + [ 7.6011133, 47.5198425 ], + [ 7.6015274999999995, 47.5202877 ], + [ 7.6017869000000005, 47.5207243 ], + [ 7.6019429, 47.5211348 ], + [ 7.6018156, 47.5216768 ], + [ 7.6016824, 47.5219124 ], + [ 7.6017329, 47.5220715 ], + [ 7.6017938, 47.5222637 ], + [ 7.601877, 47.522526 ], + [ 7.6019194, 47.5226596 ], + [ 7.6019553, 47.5227728 ], + [ 7.6019911, 47.522886 ], + [ 7.6018408, 47.5229588 ], + [ 7.6016904, 47.5230317 ], + [ 7.6015938, 47.5230785 ], + [ 7.6016770000000005, 47.5232638 ], + [ 7.6023515, 47.5239308 ], + [ 7.6027657, 47.5243585 ], + [ 7.603012, 47.5247514 ], + [ 7.6031679, 47.5250833 ], + [ 7.6033225, 47.5253301 ], + [ 7.6034524, 47.52529 ], + [ 7.6034463, 47.525218100000004 ], + [ 7.6034398, 47.5251346 ], + [ 7.6034265, 47.5249618 ], + [ 7.6032963, 47.5249667 ], + [ 7.6032938, 47.524938 ], + [ 7.6032934999999995, 47.5249343 ], + [ 7.603293, 47.5249342 ], + [ 7.6032619, 47.5248994 ], + [ 7.6032531, 47.5248658 ], + [ 7.6032304, 47.5248347 ], + [ 7.6032435, 47.524796 ], + [ 7.6032731, 47.5247652 ], + [ 7.6032787, 47.524762 ], + [ 7.6032762, 47.5247329 ], + [ 7.6033345, 47.5247306 ], + [ 7.6033358, 47.5247298 ], + [ 7.6034094, 47.5247275 ], + [ 7.6034045, 47.524689 ], + [ 7.603407, 47.5246875 ], + [ 7.6033916, 47.5244213 ], + [ 7.6033784, 47.5241947 ], + [ 7.6033254, 47.5238187 ], + [ 7.6032344, 47.5235203 ], + [ 7.6032231, 47.5234833 ], + [ 7.6032156, 47.5234856 ], + [ 7.6031767, 47.5234149 ], + [ 7.6031309, 47.5233461 ], + [ 7.603073, 47.5232658 ], + [ 7.6029795, 47.523136 ], + [ 7.602958, 47.5231033 ], + [ 7.6029348, 47.5230677 ], + [ 7.6028981, 47.5230041 ], + [ 7.6028285, 47.5228742 ], + [ 7.6027966, 47.5228147 ], + [ 7.6027827, 47.5227886 ], + [ 7.6027695, 47.5227623 ], + [ 7.6027572, 47.5227358 ], + [ 7.6027457, 47.5227092 ], + [ 7.602735, 47.5226824 ], + [ 7.6027251, 47.5226555 ], + [ 7.6027161, 47.5226284 ], + [ 7.6027079, 47.5226012 ], + [ 7.6027005, 47.5225739 ], + [ 7.602694, 47.5225465 ], + [ 7.6026878, 47.5225214 ], + [ 7.6026823, 47.5224962 ], + [ 7.6026777, 47.5224709 ], + [ 7.6026738, 47.5224456 ], + [ 7.6026707, 47.5224202 ], + [ 7.6026684, 47.5223948 ], + [ 7.6026669, 47.5223693 ], + [ 7.6026661, 47.5223439 ], + [ 7.6026658, 47.5223233 ], + [ 7.6026666, 47.5223027 ], + [ 7.6026684, 47.5222822 ], + [ 7.6026712, 47.5222617 ], + [ 7.6026751, 47.5222413 ], + [ 7.6026778, 47.5222301 ], + [ 7.6026782, 47.5222286 ], + [ 7.60268, 47.522221 ], + [ 7.6026859, 47.5222009 ], + [ 7.6026929, 47.5221808 ], + [ 7.6027009, 47.522161 ], + [ 7.6027099, 47.5221413 ], + [ 7.6027199, 47.5221219 ], + [ 7.6027309, 47.5221027 ], + [ 7.6027429, 47.5220838 ], + [ 7.6027446, 47.522081299999996 ], + [ 7.6027558, 47.5220652 ], + [ 7.6028659, 47.5219133 ], + [ 7.6029172, 47.5218347 ], + [ 7.6029271, 47.5218166 ], + [ 7.602936, 47.5217983 ], + [ 7.6029439, 47.5217798 ], + [ 7.6029508, 47.5217611 ], + [ 7.6029567, 47.5217422 ], + [ 7.6029617, 47.5217233 ], + [ 7.6029663, 47.521698 ], + [ 7.6029699, 47.5216727 ], + [ 7.6029725, 47.5216473 ], + [ 7.6029742, 47.5216219 ], + [ 7.6029748, 47.5215965 ], + [ 7.6029744, 47.521571 ], + [ 7.6029731, 47.5215456 ], + [ 7.6029708, 47.5215202 ], + [ 7.6029675, 47.5214949 ], + [ 7.6029633, 47.5214703 ], + [ 7.6029631, 47.5214696 ], + [ 7.6029578, 47.5214444 ], + [ 7.6029516, 47.5214194 ], + [ 7.6029479, 47.5214052 ], + [ 7.6029435, 47.5213912 ], + [ 7.6029384, 47.5213773 ], + [ 7.6029327, 47.5213635 ], + [ 7.6029262, 47.5213499 ], + [ 7.6029191, 47.5213364 ], + [ 7.6029113, 47.5213231 ], + [ 7.6029029, 47.5213099 ], + [ 7.602855, 47.5212416 ], + [ 7.6028791, 47.5212337 ], + [ 7.6029128, 47.5212227 ], + [ 7.6027172, 47.5209454 ], + [ 7.6026785, 47.5208905 ], + [ 7.6025741, 47.5207426 ], + [ 7.6021575, 47.5202089 ], + [ 7.6019199, 47.5199046 ], + [ 7.6019143, 47.5198967 ], + [ 7.6018357, 47.5198691 ], + [ 7.60173, 47.5197908 ], + [ 7.6016873, 47.519759 ], + [ 7.6016067, 47.5196993 ], + [ 7.6014943, 47.5196159 ], + [ 7.6010558, 47.5192775 ], + [ 7.6010397, 47.5192651 ], + [ 7.6008629, 47.5191336 ], + [ 7.6007225, 47.5190293 ], + [ 7.6006751, 47.5189941 ], + [ 7.6003865, 47.5187796 ], + [ 7.6002785, 47.5187305 ], + [ 7.5994208, 47.5183398 ], + [ 7.5994002, 47.5183305 ], + [ 7.599251, 47.5182629 ], + [ 7.5992432, 47.5182589 ], + [ 7.5991926, 47.5182332 ], + [ 7.5991924, 47.5182332 ], + [ 7.5991926, 47.5182329 ], + [ 7.5990282, 47.5181502 ], + [ 7.5990239, 47.518148 ], + [ 7.5987026, 47.5177483 ], + [ 7.5986386, 47.5176526 ], + [ 7.5984364, 47.5173506 ], + [ 7.5978639, 47.5162459 ], + [ 7.5973936, 47.5153902 ], + [ 7.5972755, 47.5153547 ], + [ 7.5972463, 47.515346 ], + [ 7.597172, 47.5153237 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr084", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Bruederholzrain", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Bruederholzrain", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Bruederholzrain", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Bruederholzrain", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.0340218, 47.126976 ], + [ 7.0342853, 47.1279669 ], + [ 7.0343593, 47.128208 ], + [ 7.0344559, 47.1283981 ], + [ 7.0345195, 47.128583 ], + [ 7.034632, 47.1287446 ], + [ 7.0347801, 47.1289846 ], + [ 7.0349364, 47.1292358 ], + [ 7.0351269, 47.1295315 ], + [ 7.0352489, 47.1297323 ], + [ 7.0353037, 47.1298948 ], + [ 7.0353591, 47.1300911 ], + [ 7.0353885, 47.1302315 ], + [ 7.0353588, 47.1303445 ], + [ 7.0353149, 47.1304917 ], + [ 7.0352028, 47.1306116 ], + [ 7.0350586, 47.1307263 ], + [ 7.034871, 47.1308023 ], + [ 7.0346183, 47.1308847 ], + [ 7.0344233, 47.1309608 ], + [ 7.0342446, 47.1310647 ], + [ 7.0340503, 47.1311577 ], + [ 7.0338566, 47.1312845 ], + [ 7.0336545, 47.1314225 ], + [ 7.0334868, 47.1315883 ], + [ 7.033326, 47.1317201 ], + [ 7.0330335, 47.1318426 ], + [ 7.0327712, 47.1318804 ], + [ 7.0324581, 47.1318849 ], + [ 7.0320443, 47.1318233 ], + [ 7.0317339, 47.1316815 ], + [ 7.0314485, 47.1315166 ], + [ 7.0311618, 47.1313012 ], + [ 7.0308599, 47.1311423 ], + [ 7.0304749, 47.130962 ], + [ 7.030166, 47.1308482 ], + [ 7.0145835, 47.1423532 ], + [ 7.0145488, 47.1425677 ], + [ 7.0144757, 47.1428559 ], + [ 7.0143674, 47.1430997 ], + [ 7.0142684, 47.143332 ], + [ 7.0141279, 47.1435875 ], + [ 7.013988, 47.143871 ], + [ 7.013792, 47.1441779 ], + [ 7.0136921, 47.1443989 ], + [ 7.0135661, 47.1445979 ], + [ 7.0134607, 47.1449035 ], + [ 7.0133539, 47.1451697 ], + [ 7.0132464, 47.1454247 ], + [ 7.0131237, 47.1457305 ], + [ 7.0130251, 47.1460022 ], + [ 7.0129059, 47.1463812 ], + [ 7.0127858, 47.1467658 ], + [ 7.0126831, 47.1471502 ], + [ 7.0125871, 47.1475064 ], + [ 7.0125426, 47.1479237 ], + [ 7.0132236, 47.1480885 ], + [ 7.0133973, 47.1481029 ], + [ 7.0135278, 47.1480672 ], + [ 7.0136151, 47.1479646 ], + [ 7.0137356, 47.147839 ], + [ 7.0138091, 47.1478266 ], + [ 7.0139759, 47.1478863 ], + [ 7.0140672, 47.1479018 ], + [ 7.0140989, 47.1478562 ], + [ 7.0142604, 47.1477525 ], + [ 7.0145604, 47.1478496 ], + [ 7.0145383, 47.1479401 ], + [ 7.0145827, 47.1480463 ], + [ 7.0146445, 47.1481582 ], + [ 7.014746, 47.1482412 ], + [ 7.0148365, 47.1482567 ], + [ 7.0149272, 47.1482555 ], + [ 7.015042, 47.1482257 ], + [ 7.0150805, 47.1481463 ], + [ 7.0151101, 47.1480445 ], + [ 7.0151927, 47.1480264 ], + [ 7.0152997, 47.1480361 ], + [ 7.0154412, 47.1480678 ], + [ 7.0157076, 47.1481485 ], + [ 7.0159245, 47.1482298 ], + [ 7.0161914, 47.1483386 ], + [ 7.0163913, 47.148392 ], + [ 7.0165505, 47.1484685 ], + [ 7.0167496, 47.1485163 ], + [ 7.0171478, 47.1485895 ], + [ 7.0173223, 47.1486207 ], + [ 7.0174306, 47.1486755 ], + [ 7.0175822, 47.1487802 ], + [ 7.0177251, 47.1488514 ], + [ 7.0178397, 47.1488385 ], + [ 7.0180053, 47.1488418 ], + [ 7.0181124, 47.1488458 ], + [ 7.0183217, 47.1489498 ], + [ 7.0185374, 47.1489861 ], + [ 7.0187605, 47.1490054 ], + [ 7.0189907, 47.1489796 ], + [ 7.0192673, 47.1491108 ], + [ 7.0195075, 47.1491635 ], + [ 7.0197729, 47.1489514 ], + [ 7.0199486, 47.1490277 ], + [ 7.0201943, 47.1492213 ], + [ 7.0205015, 47.1495659 ], + [ 7.0208218, 47.150023 ], + [ 7.0210209, 47.1500652 ], + [ 7.0213772, 47.1501332 ], + [ 7.0218496, 47.1502108 ], + [ 7.0223722, 47.1502934 ], + [ 7.0223115, 47.1504745 ], + [ 7.022299, 47.1505929 ], + [ 7.0223676, 47.1506708 ], + [ 7.0224686, 47.1507257 ], + [ 7.022726, 47.1507896 ], + [ 7.0234641, 47.1509308 ], + [ 7.0229181, 47.1521551 ], + [ 7.0230939, 47.1522314 ], + [ 7.0230957, 47.1523102 ], + [ 7.0230579, 47.1524121 ], + [ 7.0230138, 47.1525704 ], + [ 7.0228795, 47.1527695 ], + [ 7.0228843, 47.1529045 ], + [ 7.0229522, 47.1529655 ], + [ 7.0233227, 47.1526898 ], + [ 7.0234225, 47.1524688 ], + [ 7.0235601, 47.1523711 ], + [ 7.0236035, 47.1521846 ], + [ 7.0236642, 47.1520147 ], + [ 7.0237584, 47.1518783 ], + [ 7.0239123, 47.1517916 ], + [ 7.0239305, 47.1515773 ], + [ 7.0240095, 47.1514805 ], + [ 7.0241394, 47.1514222 ], + [ 7.0242693, 47.1513472 ], + [ 7.0244239, 47.1512886 ], + [ 7.0245298, 47.1512364 ], + [ 7.0246938, 47.1512284 ], + [ 7.0247934, 47.1512438 ], + [ 7.0248448, 47.1513106 ], + [ 7.0248262, 47.1514799 ], + [ 7.0250938, 47.1516112 ], + [ 7.0252792, 47.1517323 ], + [ 7.0252083, 47.1518404 ], + [ 7.0252693, 47.1519408 ], + [ 7.0253405, 47.1521088 ], + [ 7.0253877, 47.1522939 ], + [ 7.0253607, 47.1524858 ], + [ 7.0255585, 47.1524829 ], + [ 7.0256706, 47.1523742 ], + [ 7.0257065, 47.1522048 ], + [ 7.0255819, 47.1519081 ], + [ 7.0254749, 47.1516731 ], + [ 7.0253207, 47.1514727 ], + [ 7.0257056, 47.1511518 ], + [ 7.0260011, 47.1510912 ], + [ 7.0265527, 47.1515844 ], + [ 7.0270109, 47.151482 ], + [ 7.0278007, 47.1521856 ], + [ 7.0275406, 47.1525667 ], + [ 7.0289848, 47.1533848 ], + [ 7.0291141, 47.1532873 ], + [ 7.0298794, 47.1537604 ], + [ 7.0307865, 47.1540119 ], + [ 7.0322529, 47.1547338 ], + [ 7.0322004, 47.1549148 ], + [ 7.0324422, 47.1549789 ], + [ 7.0327333, 47.1550591 ], + [ 7.0329311, 47.1550675 ], + [ 7.0332361, 47.1550517 ], + [ 7.0334408, 47.1550149 ], + [ 7.033756, 47.1550724 ], + [ 7.0340003, 47.1552377 ], + [ 7.0343864, 47.1551927 ], + [ 7.0347333, 47.1552046 ], + [ 7.0349984, 47.1552344 ], + [ 7.0352489, 47.155349 ], + [ 7.0354926, 47.1554862 ], + [ 7.0356546, 47.1556528 ], + [ 7.0359352, 47.155919 ], + [ 7.0363395, 47.1561835 ], + [ 7.036827, 47.1564578 ], + [ 7.0374483, 47.1568035 ], + [ 7.0380038, 47.157139 ], + [ 7.0386339, 47.1575126 ], + [ 7.0391791, 47.1577862 ], + [ 7.0396371, 47.1579372 ], + [ 7.0401363, 47.158082 ], + [ 7.0405677, 47.1581432 ], + [ 7.0413964, 47.156988 ], + [ 7.041569, 47.1567208 ], + [ 7.0416708, 47.1565503 ], + [ 7.0416826, 47.1564037 ], + [ 7.0417451, 47.1563127 ], + [ 7.0417926, 47.1562388 ], + [ 7.0418881, 47.1561361 ], + [ 7.0430965, 47.1532296 ], + [ 7.0438217, 47.1534554 ], + [ 7.0439041, 47.1534655 ], + [ 7.0440359, 47.1534636 ], + [ 7.04664, 47.1531438 ], + [ 7.0468619, 47.1531236 ], + [ 7.0470597, 47.1531207 ], + [ 7.0472005, 47.1531356 ], + [ 7.0474827, 47.1531989 ], + [ 7.0493245, 47.1535492 ], + [ 7.0504054, 47.1538205 ], + [ 7.0505984, 47.153919 ], + [ 7.0507, 47.1539963 ], + [ 7.0507754, 47.1540459 ], + [ 7.0508586, 47.1540559 ], + [ 7.0509658, 47.1540544 ], + [ 7.0511382, 47.1540293 ], + [ 7.0513668, 47.1539809 ], + [ 7.0515235, 47.1539673 ], + [ 7.0516149, 47.1539828 ], + [ 7.0517151, 47.1540265 ], + [ 7.051816, 47.1540926 ], + [ 7.0520192, 47.1542529 ], + [ 7.0523069, 47.1544738 ], + [ 7.0526419, 47.1546379 ], + [ 7.0529756, 47.1547681 ], + [ 7.0533012, 47.1548759 ], + [ 7.053617, 47.1549613 ], + [ 7.0537764, 47.1550322 ], + [ 7.0539267, 47.1551032 ], + [ 7.0541121, 47.1552244 ], + [ 7.0543964, 47.1553385 ], + [ 7.0546635, 47.1554359 ], + [ 7.0550206, 47.1555207 ], + [ 7.0553119, 47.1555896 ], + [ 7.055625, 47.1555906 ], + [ 7.0558805, 47.1555868 ], + [ 7.056167, 47.1555262 ], + [ 7.0564315, 47.1555279 ], + [ 7.0566045, 47.1555367 ], + [ 7.0568037, 47.1555788 ], + [ 7.0569534, 47.155616 ], + [ 7.0571292, 47.1556866 ], + [ 7.0573819, 47.1558575 ], + [ 7.0575761, 47.1560067 ], + [ 7.0577465, 47.1561562 ], + [ 7.0579984, 47.1563101 ], + [ 7.0585238, 47.1564882 ], + [ 7.0591255, 47.1567158 ], + [ 7.0598914, 47.1569297 ], + [ 7.0608562, 47.1572026 ], + [ 7.0611558, 47.1572658 ], + [ 7.0614869, 47.1573002 ], + [ 7.0618172, 47.1573347 ], + [ 7.0620493, 47.1573708 ], + [ 7.062239, 47.1573566 ], + [ 7.062362, 47.1573323 ], + [ 7.0625083, 47.1572795 ], + [ 7.0626787, 47.1571925 ], + [ 7.0628251, 47.1571227 ], + [ 7.0629734, 47.1571261 ], + [ 7.0630812, 47.1571528 ], + [ 7.0631575, 47.1572022 ], + [ 7.0631849, 47.1572807 ], + [ 7.0631464, 47.157377 ], + [ 7.0630592, 47.1574684 ], + [ 7.062989, 47.1575934 ], + [ 7.0630165, 47.1576774 ], + [ 7.0631277, 47.1577996 ], + [ 7.0633055, 47.1579546 ], + [ 7.0635342, 47.1581258 ], + [ 7.0637031, 47.1582585 ], + [ 7.0641276, 47.1583761 ], + [ 7.0678266, 47.1527293 ], + [ 7.0689582, 47.1517608 ], + [ 7.069075, 47.1515562 ], + [ 7.0691905, 47.1513125 ], + [ 7.0724328, 47.1463481 ], + [ 7.0728478, 47.1454295 ], + [ 7.0733164, 47.144392 ], + [ 7.0737217, 47.1434342 ], + [ 7.0739527, 47.1429239 ], + [ 7.0742041, 47.1423009 ], + [ 7.0759767, 47.1372962 ], + [ 7.073314, 47.1365477 ], + [ 7.0726583, 47.136411 ], + [ 7.0721433, 47.1363004 ], + [ 7.0716964, 47.1362339 ], + [ 7.0713647, 47.1361938 ], + [ 7.0710654, 47.1361026 ], + [ 7.0705979, 47.1359237 ], + [ 7.070212, 47.1357323 ], + [ 7.0699031, 47.1356017 ], + [ 7.0696759, 47.1354588 ], + [ 7.0694671, 47.1353774 ], + [ 7.0692433, 47.1353469 ], + [ 7.0689948, 47.1352999 ], + [ 7.0685121, 47.1351664 ], + [ 7.0651356, 47.1342706 ], + [ 7.0649098, 47.1341612 ], + [ 7.0647677, 47.1341071 ], + [ 7.0645356, 47.1340654 ], + [ 7.0640722, 47.1340104 ], + [ 7.0636493, 47.1339266 ], + [ 7.063317, 47.133847 ], + [ 7.0629676, 47.1337508 ], + [ 7.0626112, 47.1336998 ], + [ 7.0610871, 47.1334691 ], + [ 7.0607891, 47.1334284 ], + [ 7.0606066, 47.1333861 ], + [ 7.0604732, 47.1333654 ], + [ 7.0603834, 47.1333724 ], + [ 7.0602837, 47.1333683 ], + [ 7.0601012, 47.133326 ], + [ 7.0598596, 47.1332394 ], + [ 7.059692, 47.1331688 ], + [ 7.0596241, 47.1330966 ], + [ 7.0595266, 47.1331374 ], + [ 7.059403, 47.1331393 ], + [ 7.059254, 47.1331302 ], + [ 7.0588888, 47.1330399 ], + [ 7.0581254, 47.1328878 ], + [ 7.0575851, 47.1327607 ], + [ 7.0571457, 47.1326826 ], + [ 7.0568478, 47.1326364 ], + [ 7.0565417, 47.1325959 ], + [ 7.0562835, 47.1325266 ], + [ 7.0561167, 47.132467 ], + [ 7.0559423, 47.1324301 ], + [ 7.0557789, 47.132472 ], + [ 7.0554727, 47.1324371 ], + [ 7.0552159, 47.1324014 ], + [ 7.0549084, 47.1323159 ], + [ 7.0544506, 47.1321762 ], + [ 7.0539831, 47.1320029 ], + [ 7.0534916, 47.1318413 ], + [ 7.0528224, 47.131547 ], + [ 7.0518697, 47.1311331 ], + [ 7.0510077, 47.1307347 ], + [ 7.0503275, 47.1303561 ], + [ 7.0497902, 47.130043 ], + [ 7.0488753, 47.129544 ], + [ 7.0480786, 47.1291109 ], + [ 7.0472057, 47.1286225 ], + [ 7.0465667, 47.1282546 ], + [ 7.0460378, 47.1279357 ], + [ 7.0455161, 47.127628 ], + [ 7.0447867, 47.1272389 ], + [ 7.0441396, 47.1268542 ], + [ 7.0435516, 47.1265079 ], + [ 7.0430651, 47.1262448 ], + [ 7.0399692, 47.1247463 ], + [ 7.0382057, 47.1265101 ], + [ 7.0360692, 47.1267005 ], + [ 7.0340218, 47.126976 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "JBG0011", + "country" : "CHE", + "name" : [ + { + "text" : "Eidgenössisches Jagdbanngebiet Combe-Grède", + "lang" : "de-CH" + }, + { + "text" : "District franc fédéral Combe-Grède", + "lang" : "fr-CH" + }, + { + "text" : "Bandita federale di caccia Combe-Grède", + "lang" : "it-CH" + }, + { + "text" : "Federal Game Reserve Combe-Grède", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.9789864999999995, 46.58446 ], + [ 7.9788736, 46.5821065 ], + [ 7.9785823, 46.5797603 ], + [ 7.9781133, 46.5774278 ], + [ 7.977468, 46.5751155 ], + [ 7.9766481, 46.5728296 ], + [ 7.9756559, 46.5705765 ], + [ 7.9744942, 46.5683622 ], + [ 7.9731662, 46.5661929 ], + [ 7.9716755, 46.5640744 ], + [ 7.9700261999999995, 46.5620127 ], + [ 7.9682227999999995, 46.5600132 ], + [ 7.9662704, 46.5580816 ], + [ 7.9641742, 46.5562231 ], + [ 7.9619401, 46.5544428 ], + [ 7.9595741, 46.5527455 ], + [ 7.9570827, 46.5511359 ], + [ 7.9544728, 46.5496185 ], + [ 7.9517514, 46.5481972 ], + [ 7.9489262, 46.5468762 ], + [ 7.9460047, 46.5456588 ], + [ 7.942995, 46.5445486 ], + [ 7.9399054, 46.5435484 ], + [ 7.9367442, 46.5426612 ], + [ 7.9335202, 46.5418892 ], + [ 7.9302421, 46.5412346 ], + [ 7.9269189, 46.5406992 ], + [ 7.9235597, 46.5402844 ], + [ 7.9201737, 46.5399914 ], + [ 7.9167701, 46.539821 ], + [ 7.9133583, 46.5397736 ], + [ 7.9099476, 46.5398494 ], + [ 7.9065473, 46.5400482 ], + [ 7.9031667, 46.5403694 ], + [ 7.899815, 46.5408122 ], + [ 7.8965014, 46.5413753 ], + [ 7.893235, 46.5420572 ], + [ 7.8900247, 46.542856 ], + [ 7.8868793, 46.5437696 ], + [ 7.8838074, 46.5447954 ], + [ 7.8808174, 46.5459307 ], + [ 7.8779174, 46.5471723 ], + [ 7.8751155, 46.5485168 ], + [ 7.8724193, 46.5499606 ], + [ 7.8698361, 46.5514998 ], + [ 7.8673731, 46.55313 ], + [ 7.865037, 46.5548469 ], + [ 7.8628342, 46.5566457 ], + [ 7.8607707, 46.5585216 ], + [ 7.8588522, 46.5604693 ], + [ 7.8570841, 46.5624836 ], + [ 7.855471, 46.564559 ], + [ 7.8540175, 46.5666897 ], + [ 7.8527276, 46.5688699 ], + [ 7.8516048, 46.5710938 ], + [ 7.8506522, 46.573355 ], + [ 7.8498725, 46.575647599999996 ], + [ 7.8492678, 46.5779651 ], + [ 7.8488397, 46.5803013 ], + [ 7.8485895, 46.5826498 ], + [ 7.8485179, 46.585004 ], + [ 7.8486252, 46.5873576 ], + [ 7.8489109, 46.5897041 ], + [ 7.8493744, 46.5920371 ], + [ 7.8500145, 46.5943502 ], + [ 7.8508293, 46.5966369 ], + [ 7.8518168, 46.5988912 ], + [ 7.8529741, 46.6011067 ], + [ 7.8542982, 46.6032775 ], + [ 7.8557853, 46.6053974 ], + [ 7.8574316, 46.6074608 ], + [ 7.8592324, 46.609462 ], + [ 7.8611829, 46.6113954 ], + [ 7.8632777, 46.6132558 ], + [ 7.865511, 46.6150381 ], + [ 7.8678768, 46.6167373 ], + [ 7.8703685, 46.6183488 ], + [ 7.8729794, 46.6198682 ], + [ 7.8757023, 46.6212913 ], + [ 7.8785296, 46.6226142 ], + [ 7.8814537, 46.6238333 ], + [ 7.8844666, 46.6249452 ], + [ 7.8875598, 46.6259468 ], + [ 7.8907251, 46.6268354 ], + [ 7.8939536, 46.6276087 ], + [ 7.8972365, 46.6282643 ], + [ 7.9005648, 46.6288006 ], + [ 7.9039293, 46.629216 ], + [ 7.9073208, 46.6295095 ], + [ 7.9107299, 46.6296802 ], + [ 7.9141474, 46.6297276 ], + [ 7.9175638, 46.6296517 ], + [ 7.9209697, 46.6294526 ], + [ 7.9243558, 46.6291309 ], + [ 7.9277128, 46.6286874 ], + [ 7.9310314, 46.6281234 ], + [ 7.9343025, 46.6274404 ], + [ 7.9375172, 46.6266403 ], + [ 7.9406666, 46.6257254 ], + [ 7.943742, 46.624698 ], + [ 7.9467351, 46.6235611 ], + [ 7.9496375, 46.622317699999996 ], + [ 7.9524414, 46.6209714 ], + [ 7.9551391, 46.6195256 ], + [ 7.9577231, 46.6179846 ], + [ 7.9601863, 46.6163524 ], + [ 7.9625221, 46.6146336 ], + [ 7.9647239, 46.6128328 ], + [ 7.9667858, 46.6109551 ], + [ 7.9687022, 46.6090055 ], + [ 7.9704677, 46.6069895 ], + [ 7.9720776, 46.6049125 ], + [ 7.9735275, 46.6027803 ], + [ 7.9748133, 46.6005987 ], + [ 7.9759317, 46.5983736 ], + [ 7.9768794, 46.5961113 ], + [ 7.9776541, 46.5938179 ], + [ 7.9782535, 46.5914997 ], + [ 7.978676, 46.589163 ], + [ 7.9789206, 46.5868143 ], + [ 7.9789864999999995, 46.58446 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSXL001", + "country" : "CHE", + "name" : [ + { + "text" : "LSXL Lauterbrunnen", + "lang" : "de-CH" + }, + { + "text" : "LSXL Lauterbrunnen", + "lang" : "fr-CH" + }, + { + "text" : "LSXL Lauterbrunnen", + "lang" : "it-CH" + }, + { + "text" : "LSXL Lauterbrunnen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Air-Glaciers SA", + "lang" : "de-CH" + }, + { + "text" : "Air-Glaciers SA", + "lang" : "fr-CH" + }, + { + "text" : "Air-Glaciers SA", + "lang" : "it-CH" + }, + { + "text" : "Air-Glaciers SA", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Basis Lauterbrunnen", + "lang" : "de-CH" + }, + { + "text" : "Basis Lauterbrunnen", + "lang" : "fr-CH" + }, + { + "text" : "Basis Lauterbrunnen", + "lang" : "it-CH" + }, + { + "text" : "Basis Lauterbrunnen", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.air-glaciers.ch/de-ch/lauterbrunnen-de", + "email" : "agl@air-glaciers.ch", + "phone" : "0041338560560", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P02DT12H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4603976, 47.4458283 ], + [ 7.4603541, 47.4457895 ], + [ 7.4603964, 47.4457716 ], + [ 7.4604517999999995, 47.445532299999996 ], + [ 7.4605037, 47.4453091 ], + [ 7.4605081, 47.4452854 ], + [ 7.4602089, 47.4438962 ], + [ 7.4601053, 47.4436262 ], + [ 7.4600728, 47.443501 ], + [ 7.4600052, 47.4434017 ], + [ 7.4599929, 47.4433549 ], + [ 7.4599736, 47.443293 ], + [ 7.4599525, 47.4432217 ], + [ 7.4599315, 47.4431289 ], + [ 7.4598869, 47.443022 ], + [ 7.4598519, 47.4429436 ], + [ 7.4598033, 47.4429028 ], + [ 7.459738, 47.4428491 ], + [ 7.4597329, 47.442845 ], + [ 7.4597942, 47.4427828 ], + [ 7.4598377, 47.4427381 ], + [ 7.4599625, 47.4426132 ], + [ 7.4599954, 47.4425701 ], + [ 7.4600255, 47.4424981 ], + [ 7.4600444, 47.4424504 ], + [ 7.4600767999999995, 47.4423876 ], + [ 7.4601414, 47.4422892 ], + [ 7.4602043, 47.4421885 ], + [ 7.4602601, 47.4421067 ], + [ 7.4602991, 47.4420462 ], + [ 7.4603158, 47.4419932 ], + [ 7.4603247, 47.4419447 ], + [ 7.4603391, 47.441866 ], + [ 7.4603464, 47.4418418 ], + [ 7.4603753, 47.4417494 ], + [ 7.4603782, 47.441689 ], + [ 7.4603708, 47.4416276 ], + [ 7.4604132, 47.4415034 ], + [ 7.4604342, 47.4414558 ], + [ 7.4604692, 47.4413511 ], + [ 7.4605183, 47.441275 ], + [ 7.4605814, 47.4411845 ], + [ 7.4606656, 47.441075 ], + [ 7.4607918, 47.4409989 ], + [ 7.4610061, 47.4409375 ], + [ 7.4612618, 47.4409417 ], + [ 7.4614372, 47.4409416 ], + [ 7.4614371, 47.4408417 ], + [ 7.4614453, 47.4407641 ], + [ 7.4614462, 47.4407632 ], + [ 7.4614357, 47.4407047 ], + [ 7.4614262, 47.4406501 ], + [ 7.4613962, 47.440484 ], + [ 7.4613871, 47.4403993 ], + [ 7.4613847, 47.4403238 ], + [ 7.4613854, 47.4402359 ], + [ 7.4614449, 47.4400012 ], + [ 7.4614528, 47.4399594 ], + [ 7.4614583, 47.4398678 ], + [ 7.4614568, 47.4398399 ], + [ 7.4614486, 47.4398345 ], + [ 7.4614412, 47.4398285 ], + [ 7.4614345, 47.4398222 ], + [ 7.4614192, 47.4398046 ], + [ 7.4614063, 47.4397862 ], + [ 7.4613958, 47.439767 ], + [ 7.4613879, 47.4397473 ], + [ 7.4613825, 47.4397272 ], + [ 7.4613798, 47.4397069 ], + [ 7.4613712, 47.439583999999996 ], + [ 7.4613585, 47.4395856 ], + [ 7.461346, 47.4395878 ], + [ 7.4613339, 47.4395908 ], + [ 7.4613221, 47.4395945 ], + [ 7.4613109, 47.4395989 ], + [ 7.4613002, 47.4396038 ], + [ 7.4612902, 47.4396094 ], + [ 7.461281, 47.4396155 ], + [ 7.4612725, 47.4396221 ], + [ 7.4612648, 47.4396292 ], + [ 7.4612581, 47.4396366 ], + [ 7.4612523, 47.4396445 ], + [ 7.4612475, 47.4396526 ], + [ 7.4611376, 47.4398654 ], + [ 7.461083, 47.4399575 ], + [ 7.4610165, 47.4400459 ], + [ 7.4609386, 47.4401299 ], + [ 7.4608499, 47.4402088 ], + [ 7.4607510999999995, 47.440282 ], + [ 7.460643, 47.4403489 ], + [ 7.4605265, 47.440409 ], + [ 7.4604025, 47.4404617 ], + [ 7.459686, 47.4407368 ], + [ 7.4596709, 47.4407425 ], + [ 7.4596555, 47.4407479 ], + [ 7.4596399, 47.440753 ], + [ 7.4593048, 47.4408602 ], + [ 7.459277, 47.4408686 ], + [ 7.4592486000000005, 47.4408761 ], + [ 7.4592197, 47.4408829 ], + [ 7.4589743, 47.440936 ], + [ 7.4585361, 47.4410516 ], + [ 7.4584652, 47.4410693 ], + [ 7.4583933, 47.4410852 ], + [ 7.4583206, 47.4410992 ], + [ 7.4577273, 47.4412057 ], + [ 7.4572109, 47.4412985 ], + [ 7.4571334, 47.4413151 ], + [ 7.4570586, 47.4413368 ], + [ 7.4569872, 47.4413632 ], + [ 7.456929, 47.4413895 ], + [ 7.4568742, 47.441419 ], + [ 7.4568232, 47.4414515 ], + [ 7.4567764, 47.4414867 ], + [ 7.4563675, 47.4418206 ], + [ 7.4563401, 47.4418409 ], + [ 7.4563099, 47.4418595 ], + [ 7.4562774, 47.441876 ], + [ 7.4562269, 47.4419515 ], + [ 7.4562045, 47.4419777 ], + [ 7.4561112, 47.4420872 ], + [ 7.4559324, 47.4422871 ], + [ 7.4559955, 47.4423799 ], + [ 7.455964, 47.4424941 ], + [ 7.4558904, 47.4426512 ], + [ 7.4558063, 47.4430153 ], + [ 7.4557537, 47.4432366 ], + [ 7.455714, 47.4434269 ], + [ 7.4557114, 47.4435155 ], + [ 7.4557124, 47.4436155 ], + [ 7.4557159, 47.4437053 ], + [ 7.4557273, 47.4437963 ], + [ 7.4557365, 47.4438931 ], + [ 7.4557466, 47.4439022 ], + [ 7.4557665, 47.4439859 ], + [ 7.455818, 47.4441447 ], + [ 7.4558636, 47.4442808 ], + [ 7.4558954, 47.4443723 ], + [ 7.4559277, 47.4444519 ], + [ 7.4559721, 47.4445579 ], + [ 7.456005, 47.4446359 ], + [ 7.4560404, 47.4447245 ], + [ 7.456071, 47.4447907 ], + [ 7.4560919, 47.4448366 ], + [ 7.4561093, 47.44487 ], + [ 7.4561405, 47.4449179 ], + [ 7.4561902, 47.444976 ], + [ 7.4562706, 47.4450622 ], + [ 7.4563668, 47.4451422 ], + [ 7.4564945, 47.4452382 ], + [ 7.4565906, 47.4453007 ], + [ 7.4566932, 47.4453588 ], + [ 7.4568183999999995, 47.445424 ], + [ 7.4571269000000004, 47.4455533 ], + [ 7.4573862, 47.4456602 ], + [ 7.4574768, 47.4456982 ], + [ 7.4575303, 47.4457179 ], + [ 7.4576039, 47.4457413 ], + [ 7.457682, 47.4457565 ], + [ 7.4577374, 47.4457664 ], + [ 7.4577401, 47.4457424 ], + [ 7.4585012, 47.4459273 ], + [ 7.4587336, 47.4459581 ], + [ 7.4587302, 47.445977 ], + [ 7.4588527, 47.4460091 ], + [ 7.4589455000000005, 47.4460317 ], + [ 7.4592979, 47.4461255 ], + [ 7.4593955, 47.4461588 ], + [ 7.4594769, 47.4461898 ], + [ 7.4595516, 47.4462178 ], + [ 7.4597234, 47.4462844 ], + [ 7.4597992, 47.4463162 ], + [ 7.4598606, 47.4463404 ], + [ 7.4599632, 47.446382 ], + [ 7.4599999, 47.4464002 ], + [ 7.4600289, 47.4464206 ], + [ 7.4601059, 47.4464849 ], + [ 7.4601628, 47.4465326 ], + [ 7.4601967, 47.4465586 ], + [ 7.4602367, 47.4465918 ], + [ 7.4602582, 47.4466098 ], + [ 7.460314, 47.446659 ], + [ 7.4605081, 47.4468172 ], + [ 7.4605147, 47.4468255 ], + [ 7.4606177, 47.4466353 ], + [ 7.4606444, 47.4465788 ], + [ 7.4606642, 47.4465211 ], + [ 7.4606769, 47.4464624 ], + [ 7.4606824, 47.4464032 ], + [ 7.4606807, 47.4463439 ], + [ 7.4606719, 47.4462849 ], + [ 7.4606559, 47.4462266 ], + [ 7.4606125, 47.4461212 ], + [ 7.4605546, 47.4460191 ], + [ 7.4604828, 47.4459212 ], + [ 7.4603976, 47.4458283 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns332", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Redelsflue", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Redelsflue", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Redelsflue", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Redelsflue", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.9279561, 47.4695856 ], + [ 7.9275138, 47.4697118 ], + [ 7.9272977000000004, 47.4697621 ], + [ 7.927129, 47.469788199999996 ], + [ 7.9270533, 47.4697962 ], + [ 7.9269022, 47.4698027 ], + [ 7.9266333, 47.469802 ], + [ 7.9262777, 47.4698106 ], + [ 7.9258194, 47.46985 ], + [ 7.9256744, 47.4698624 ], + [ 7.9254633, 47.469879 ], + [ 7.9253138, 47.4698964 ], + [ 7.9251657, 47.4699184 ], + [ 7.9250191999999995, 47.469945 ], + [ 7.9245923, 47.4700388 ], + [ 7.9245976, 47.4700824 ], + [ 7.9244178, 47.4702538 ], + [ 7.9243623, 47.4704588 ], + [ 7.9242834, 47.4707329 ], + [ 7.9241809, 47.4710991 ], + [ 7.9241714, 47.4711328 ], + [ 7.9242577, 47.4713046 ], + [ 7.924138, 47.4713263 ], + [ 7.9241002, 47.4714087 ], + [ 7.9240533, 47.4717088 ], + [ 7.924013, 47.4719292 ], + [ 7.9239385, 47.4720764 ], + [ 7.9238191, 47.4722095 ], + [ 7.9235181, 47.4723756 ], + [ 7.9235387, 47.4726063 ], + [ 7.9234796, 47.4729537 ], + [ 7.9233283, 47.4728755 ], + [ 7.9229063, 47.4726421 ], + [ 7.9224923, 47.472411 ], + [ 7.9221499, 47.4722167 ], + [ 7.9217922, 47.4719636 ], + [ 7.9219056, 47.4718777 ], + [ 7.921985, 47.4718164 ], + [ 7.9217004, 47.4715686 ], + [ 7.9214105, 47.471292 ], + [ 7.9211463, 47.4713609 ], + [ 7.920933, 47.4714772 ], + [ 7.9207708, 47.4712468 ], + [ 7.9206022, 47.4711302 ], + [ 7.9206305, 47.4711131 ], + [ 7.9207939, 47.4709996 ], + [ 7.9204885, 47.470683 ], + [ 7.9201684, 47.470816 ], + [ 7.9200035, 47.4706396 ], + [ 7.9197366, 47.470356699999996 ], + [ 7.9203114, 47.470041 ], + [ 7.9206161999999996, 47.4704476 ], + [ 7.9207022, 47.4705767 ], + [ 7.9212024, 47.4703659 ], + [ 7.9214591, 47.4707695 ], + [ 7.9217574, 47.4712139 ], + [ 7.9220198, 47.4713782 ], + [ 7.9226243, 47.4711318 ], + [ 7.9224494, 47.4709677 ], + [ 7.9219905, 47.4711352 ], + [ 7.9217001, 47.4706894 ], + [ 7.9215549, 47.470399 ], + [ 7.921414, 47.4701271 ], + [ 7.9212537, 47.4697729 ], + [ 7.9217747, 47.4696069 ], + [ 7.9217983, 47.4695988 ], + [ 7.921631, 47.4693158 ], + [ 7.9214482, 47.468963 ], + [ 7.9212857, 47.4687731 ], + [ 7.9212749, 47.4687653 ], + [ 7.9212601, 47.4687795 ], + [ 7.9210928, 47.4689392 ], + [ 7.9207599, 47.4691848 ], + [ 7.9204884, 47.4693952 ], + [ 7.9201868, 47.469627 ], + [ 7.919953, 47.4698066 ], + [ 7.9194187, 47.4695312 ], + [ 7.9190047, 47.4695519 ], + [ 7.9189802, 47.4693814 ], + [ 7.9182961, 47.469375 ], + [ 7.9183129, 47.4692604 ], + [ 7.9184348, 47.4691198 ], + [ 7.9184396, 47.469005 ], + [ 7.9184025, 47.4688588 ], + [ 7.9182238, 47.4685604 ], + [ 7.9178713, 47.4686483 ], + [ 7.9175454, 47.4687408 ], + [ 7.9171313, 47.4688531 ], + [ 7.9169046, 47.4688744 ], + [ 7.9167901, 47.4688368 ], + [ 7.9165271, 47.4686578 ], + [ 7.9164114, 47.4685329 ], + [ 7.9165054999999995, 47.4680732 ], + [ 7.9166175, 47.4675829 ], + [ 7.9169906, 47.4676747 ], + [ 7.91737, 47.4677686 ], + [ 7.9174568, 47.4676107 ], + [ 7.917486, 47.4676198 ], + [ 7.917744, 47.4672413 ], + [ 7.9177105, 47.4672324 ], + [ 7.9180174999999995, 47.4667816 ], + [ 7.9182982, 47.4663835 ], + [ 7.9182964, 47.4663204 ], + [ 7.918241, 47.4661269 ], + [ 7.9181439000000005, 47.4658404 ], + [ 7.9179252, 47.4656084 ], + [ 7.917681, 47.4653382 ], + [ 7.917281, 47.4654809 ], + [ 7.9170413, 47.4651916 ], + [ 7.9168414, 47.4649977 ], + [ 7.9169699, 47.4649338 ], + [ 7.9166717, 47.4645959 ], + [ 7.9164499, 47.4643297 ], + [ 7.9163359, 47.4641967 ], + [ 7.9161829, 47.4640521 ], + [ 7.9159787999999995, 47.4638701 ], + [ 7.9159442, 47.4638829 ], + [ 7.9157951, 47.4639549 ], + [ 7.9154703, 47.463988 ], + [ 7.9151421, 47.4640571 ], + [ 7.9148305, 47.4641495 ], + [ 7.9146024, 47.4642387 ], + [ 7.914334, 47.4643676 ], + [ 7.9144277, 47.4644826 ], + [ 7.9141623, 47.4646145 ], + [ 7.9142517, 47.4646885 ], + [ 7.9142969999999995, 47.4647223 ], + [ 7.9146937, 47.4645371 ], + [ 7.9149169, 47.4644501 ], + [ 7.9150462, 47.4647519 ], + [ 7.9153964, 47.4646412 ], + [ 7.9153504, 47.4649456 ], + [ 7.9153451, 47.4649777 ], + [ 7.9153223, 47.4649596 ], + [ 7.9148695, 47.4650253 ], + [ 7.9144029, 47.4651089 ], + [ 7.9143136, 47.4650033 ], + [ 7.9142581, 47.4650189 ], + [ 7.9140552, 47.465081 ], + [ 7.9138984, 47.465128 ], + [ 7.9138848, 47.4651162 ], + [ 7.913635, 47.46492 ], + [ 7.9137543, 47.4648659 ], + [ 7.9135671, 47.464681 ], + [ 7.9137006, 47.464607 ], + [ 7.9136085, 47.4645114 ], + [ 7.9135626, 47.4645553 ], + [ 7.9133407, 47.4642551 ], + [ 7.9133363, 47.4642596 ], + [ 7.9133325, 47.4642644 ], + [ 7.9133296, 47.4642694 ], + [ 7.9133274, 47.4642746 ], + [ 7.913326, 47.46428 ], + [ 7.9133255, 47.4642854 ], + [ 7.9133259, 47.4642908 ], + [ 7.913327, 47.4642962 ], + [ 7.9133291, 47.4643014 ], + [ 7.9133319, 47.4643065 ], + [ 7.9133468, 47.4643336 ], + [ 7.913285, 47.4643545 ], + [ 7.9132612, 47.4643224 ], + [ 7.9132575, 47.464318 ], + [ 7.9132531, 47.4643138 ], + [ 7.9132481, 47.4643101 ], + [ 7.9132425, 47.4643066 ], + [ 7.9132365, 47.4643037 ], + [ 7.91323, 47.4643011 ], + [ 7.9132231, 47.4642991 ], + [ 7.9132159, 47.4642976 ], + [ 7.9132086, 47.4642965 ], + [ 7.9132011, 47.4642961 ], + [ 7.9131797, 47.4643005 ], + [ 7.9131581, 47.4643045 ], + [ 7.9131363, 47.4643079 ], + [ 7.9131143999999995, 47.464311 ], + [ 7.9130924, 47.4643135 ], + [ 7.9130834, 47.4643158 ], + [ 7.9130748, 47.4643186 ], + [ 7.9130667, 47.4643219 ], + [ 7.913059, 47.4643258 ], + [ 7.9130518, 47.46433 ], + [ 7.9130452, 47.4643347 ], + [ 7.9130393, 47.4643398 ], + [ 7.9128584, 47.4646464 ], + [ 7.9127275, 47.4648696 ], + [ 7.9132079, 47.4650263 ], + [ 7.9134554999999995, 47.4651186 ], + [ 7.9135177, 47.4651433 ], + [ 7.913344, 47.4653006 ], + [ 7.9133123, 47.4652902 ], + [ 7.9129057, 47.4651558 ], + [ 7.912546, 47.4650399 ], + [ 7.9123190999999995, 47.4651559 ], + [ 7.9118731, 47.4653294 ], + [ 7.9114067, 47.4654965 ], + [ 7.9118, 47.4658394 ], + [ 7.9112483000000005, 47.4661802 ], + [ 7.9108741, 47.4663001 ], + [ 7.9107002, 47.4663544 ], + [ 7.9106994, 47.4664562 ], + [ 7.9103752, 47.4664302 ], + [ 7.9101536, 47.4664165 ], + [ 7.910105, 47.4666107 ], + [ 7.9105215, 47.4666 ], + [ 7.9106927, 47.4665953 ], + [ 7.9106868, 47.4667517 ], + [ 7.9106783, 47.4669423 ], + [ 7.9106134, 47.467128 ], + [ 7.9105867, 47.4671415 ], + [ 7.9105399, 47.4671655 ], + [ 7.9105139, 47.4672033 ], + [ 7.9104641, 47.467278 ], + [ 7.9102377, 47.4675801 ], + [ 7.9101869, 47.4676432 ], + [ 7.9100263, 47.4678343 ], + [ 7.9098168, 47.468071 ], + [ 7.9096936, 47.4682609 ], + [ 7.909613, 47.4684388 ], + [ 7.9092446, 47.4688351 ], + [ 7.9089925999999995, 47.4691543 ], + [ 7.9088457, 47.4694204 ], + [ 7.9087008999999995, 47.4696785 ], + [ 7.9086783, 47.4699283 ], + [ 7.9087251, 47.4700977 ], + [ 7.9087703, 47.470091 ], + [ 7.9088241, 47.4702171 ], + [ 7.9088771, 47.4703538 ], + [ 7.9089171, 47.4704345 ], + [ 7.9090248, 47.4706567 ], + [ 7.9090603, 47.4707334 ], + [ 7.9090915, 47.4707923 ], + [ 7.9091404999999995, 47.4708621 ], + [ 7.9092394, 47.4710027 ], + [ 7.909269, 47.4710429 ], + [ 7.9092924, 47.4710711 ], + [ 7.9093722, 47.4711619 ], + [ 7.9094491, 47.4712583 ], + [ 7.909526, 47.4713536 ], + [ 7.9096457000000004, 47.4715016 ], + [ 7.9097876, 47.4716683 ], + [ 7.909923, 47.4718241 ], + [ 7.9099789, 47.471887100000004 ], + [ 7.9100434, 47.4719527 ], + [ 7.910117, 47.4720132 ], + [ 7.9101697, 47.4720502 ], + [ 7.9102244, 47.4720838 ], + [ 7.9102583, 47.4721021 ], + [ 7.9103174, 47.4721278 ], + [ 7.9103584, 47.4721436 ], + [ 7.9104275, 47.4721652 ], + [ 7.9105471, 47.472201 ], + [ 7.9107042, 47.4722423 ], + [ 7.9108758, 47.4722897 ], + [ 7.9109406, 47.4723099 ], + [ 7.9111595, 47.4723818 ], + [ 7.9111956, 47.4723887 ], + [ 7.9112314999999995, 47.4723908 ], + [ 7.9112557, 47.4723891 ], + [ 7.9112817, 47.4723847 ], + [ 7.9113785, 47.4723579 ], + [ 7.9113709, 47.4723503 ], + [ 7.9112713, 47.4722388 ], + [ 7.9111122, 47.4720342 ], + [ 7.9110621, 47.4719611 ], + [ 7.9110211, 47.4718854 ], + [ 7.9109894, 47.4718077 ], + [ 7.9109672, 47.4717285 ], + [ 7.9109547, 47.4716483 ], + [ 7.9109397, 47.4715232 ], + [ 7.9109045, 47.4712494 ], + [ 7.9109017999999995, 47.47121 ], + [ 7.910904, 47.4711706 ], + [ 7.9109109, 47.4711315 ], + [ 7.9109226, 47.4710928 ], + [ 7.9109389, 47.471055 ], + [ 7.9109597, 47.4710182 ], + [ 7.910985, 47.4709827 ], + [ 7.9110144, 47.4709487 ], + [ 7.9110781, 47.4708904 ], + [ 7.9111492, 47.4708364 ], + [ 7.9112273, 47.4707869 ], + [ 7.9113118, 47.4707424 ], + [ 7.9114018, 47.4707033 ], + [ 7.9118104, 47.4705526 ], + [ 7.9119523, 47.4705097 ], + [ 7.9120036, 47.4704959 ], + [ 7.9120564, 47.470485 ], + [ 7.9121103, 47.4704769 ], + [ 7.9121649, 47.4704717 ], + [ 7.9122058, 47.4704693 ], + [ 7.9122468, 47.4704694 ], + [ 7.9122877, 47.470472 ], + [ 7.912328, 47.4704771 ], + [ 7.9123675, 47.4704846 ], + [ 7.9124058999999995, 47.4704945 ], + [ 7.9124427, 47.4705067 ], + [ 7.9124778, 47.4705211 ], + [ 7.9125114, 47.4705357 ], + [ 7.9126087, 47.4705979 ], + [ 7.9126589, 47.4706507 ], + [ 7.9127577, 47.4707571 ], + [ 7.9128515, 47.4708503 ], + [ 7.9129497, 47.4709415 ], + [ 7.9130522, 47.4710304 ], + [ 7.9131896, 47.4711268 ], + [ 7.9133396, 47.471214 ], + [ 7.9135010999999995, 47.4712912 ], + [ 7.9136725, 47.4713579 ], + [ 7.9138760999999995, 47.4714289 ], + [ 7.914074, 47.471507 ], + [ 7.9142656, 47.471592 ], + [ 7.9145845, 47.471736 ], + [ 7.9147607, 47.4718186 ], + [ 7.9149478, 47.4718892 ], + [ 7.9151441, 47.4719472 ], + [ 7.9153477, 47.4719922 ], + [ 7.9156398, 47.4720462 ], + [ 7.9158949, 47.4720812 ], + [ 7.9161519, 47.472109 ], + [ 7.9164104, 47.4721296 ], + [ 7.91697, 47.4721727 ], + [ 7.9174059, 47.4721964 ], + [ 7.9176426, 47.4722166 ], + [ 7.9178635, 47.4722436 ], + [ 7.9179253, 47.4722548 ], + [ 7.9180265, 47.4722814 ], + [ 7.9181954999999995, 47.4723403 ], + [ 7.918315, 47.472395 ], + [ 7.9184306, 47.4724513 ], + [ 7.9191111, 47.4727858 ], + [ 7.9200691, 47.473256 ], + [ 7.9202018, 47.4733307 ], + [ 7.9203256, 47.4734123 ], + [ 7.9204396, 47.4735001 ], + [ 7.9205431, 47.4735937 ], + [ 7.9206896, 47.4737097 ], + [ 7.9208501, 47.4738168 ], + [ 7.9210233, 47.4739144 ], + [ 7.9211674, 47.4739949 ], + [ 7.9212672, 47.4740543 ], + [ 7.9213591, 47.4741192 ], + [ 7.9214424999999995, 47.4741894 ], + [ 7.9215166, 47.4742641 ], + [ 7.921581, 47.4743428 ], + [ 7.9216351, 47.474425 ], + [ 7.9216786, 47.4745101 ], + [ 7.9217249, 47.474625 ], + [ 7.9217501, 47.4747058 ], + [ 7.9217838, 47.4747853 ], + [ 7.921826, 47.4748628 ], + [ 7.9223813, 47.4749195 ], + [ 7.9225274, 47.474937 ], + [ 7.9229479, 47.475001 ], + [ 7.9232374, 47.4750408 ], + [ 7.9232583, 47.4750185 ], + [ 7.9232455, 47.4747004 ], + [ 7.9232403, 47.4746964 ], + [ 7.9238821999999995, 47.4744972 ], + [ 7.9244618, 47.4741176 ], + [ 7.9250479, 47.4735231 ], + [ 7.9255707, 47.4728676 ], + [ 7.9258106, 47.4721095 ], + [ 7.9258697, 47.471568 ], + [ 7.9258757, 47.4712106 ], + [ 7.9264556, 47.4710493 ], + [ 7.9272954, 47.4708716 ], + [ 7.9287943, 47.4705075 ], + [ 7.9298078, 47.470539 ], + [ 7.9305734, 47.4709882 ], + [ 7.9316917, 47.4715721 ], + [ 7.9308059, 47.4723703 ], + [ 7.9313172, 47.4729759 ], + [ 7.9312591999999995, 47.4734698 ], + [ 7.9303671, 47.4743539 ], + [ 7.9292277, 47.4749925 ], + [ 7.9285973, 47.4754419 ], + [ 7.9277831, 47.4760408 ], + [ 7.9269412, 47.4764425 ], + [ 7.9264007, 47.4769614 ], + [ 7.9258371, 47.4772909 ], + [ 7.9266114, 47.4778583 ], + [ 7.9277808, 47.4779521 ], + [ 7.9281932, 47.4783573 ], + [ 7.9286076, 47.4788634 ], + [ 7.9294271, 47.4784362 ], + [ 7.9300265, 47.4783164 ], + [ 7.9313666, 47.478046 ], + [ 7.9319785, 47.4785038 ], + [ 7.9325145, 47.4789884 ], + [ 7.9326754, 47.4794991 ], + [ 7.9332147, 47.4795206 ], + [ 7.9336261, 47.4791724 ], + [ 7.9344974, 47.4791915 ], + [ 7.9352701, 47.4791062 ], + [ 7.9361280999999995, 47.4790974 ], + [ 7.9365035, 47.4792956 ], + [ 7.9368049, 47.4796734 ], + [ 7.9374535999999996, 47.4792164 ], + [ 7.9374781, 47.4786727 ], + [ 7.9373733, 47.4784868 ], + [ 7.9373464, 47.4783886 ], + [ 7.9372666, 47.4781426 ], + [ 7.9372264, 47.4780181 ], + [ 7.9371563, 47.4778203 ], + [ 7.9368794, 47.4778682 ], + [ 7.9367589, 47.4776863 ], + [ 7.9366482, 47.4775242 ], + [ 7.9365371, 47.4773625 ], + [ 7.9364711, 47.477267499999996 ], + [ 7.9361729, 47.4768276 ], + [ 7.9364482, 47.4767142 ], + [ 7.9372937, 47.4766422 ], + [ 7.9377967, 47.4766605 ], + [ 7.9383495, 47.476687 ], + [ 7.9387948999999995, 47.4767227 ], + [ 7.9392897, 47.4767627 ], + [ 7.9398751, 47.4768125 ], + [ 7.9402944, 47.4768748 ], + [ 7.9408131, 47.4769539 ], + [ 7.9409682, 47.4765697 ], + [ 7.9415179, 47.4763931 ], + [ 7.9421048, 47.4763407 ], + [ 7.9427177, 47.4762967 ], + [ 7.9430855, 47.4760327 ], + [ 7.9427014, 47.4757471 ], + [ 7.9423333, 47.4755481 ], + [ 7.9417551, 47.475347 ], + [ 7.9411803, 47.4751002 ], + [ 7.940414, 47.4748879 ], + [ 7.9396237, 47.4747268 ], + [ 7.9389795, 47.4744317 ], + [ 7.9383166, 47.4741066 ], + [ 7.9380403, 47.4736282 ], + [ 7.9386483, 47.473261 ], + [ 7.9399702, 47.4729875 ], + [ 7.9413784, 47.4728483 ], + [ 7.9408719, 47.472440399999996 ], + [ 7.9402627, 47.4720023 ], + [ 7.9395205, 47.4716712 ], + [ 7.9385821, 47.4711906 ], + [ 7.9390844, 47.4706644 ], + [ 7.9395514, 47.4701335 ], + [ 7.9401307, 47.4696662 ], + [ 7.9403144999999995, 47.4690944 ], + [ 7.9399831, 47.4690396 ], + [ 7.9396591, 47.4689711 ], + [ 7.9392319, 47.4688284 ], + [ 7.938842, 47.4686774 ], + [ 7.9382331, 47.4685556 ], + [ 7.9378607, 47.4684401 ], + [ 7.9374951, 47.4683454 ], + [ 7.9370737, 47.468266 ], + [ 7.9366062, 47.4682144 ], + [ 7.9360261, 47.4681352 ], + [ 7.9354174, 47.467977 ], + [ 7.9350241, 47.467831 ], + [ 7.9345823, 47.4676141 ], + [ 7.9341857000000005, 47.4673542 ], + [ 7.9338729, 47.4671412 ], + [ 7.933734, 47.4670094 ], + [ 7.933691, 47.4669072 ], + [ 7.9336941, 47.4668001 ], + [ 7.9337378, 47.4666906 ], + [ 7.9338987, 47.466502 ], + [ 7.9341494, 47.4663117 ], + [ 7.9344438, 47.4661226 ], + [ 7.9347266, 47.465973 ], + [ 7.9350537, 47.4658287 ], + [ 7.9354211, 47.4656417 ], + [ 7.9356792, 47.4655486 ], + [ 7.9362394, 47.4652847 ], + [ 7.9367399, 47.4650031 ], + [ 7.9367091, 47.4650134 ], + [ 7.9364272, 47.4651161 ], + [ 7.935953, 47.4652914 ], + [ 7.9356501999999995, 47.4654025 ], + [ 7.935579, 47.4654297 ], + [ 7.9347573, 47.4657407 ], + [ 7.9344479, 47.4658569 ], + [ 7.9341287, 47.4659949 ], + [ 7.9337809, 47.4661427 ], + [ 7.9334231, 47.4665235 ], + [ 7.9331265, 47.4668695 ], + [ 7.9330300000000005, 47.4673067 ], + [ 7.9325703, 47.4673871 ], + [ 7.9322844, 47.4674359 ], + [ 7.9328604, 47.4679099 ], + [ 7.9332458, 47.4681909 ], + [ 7.93336, 47.4682704 ], + [ 7.9333816, 47.4691096 ], + [ 7.9334795, 47.4691708 ], + [ 7.9334869, 47.4691745 ], + [ 7.9334948, 47.4691778 ], + [ 7.9335031, 47.4691805 ], + [ 7.9339184, 47.4693995 ], + [ 7.9339267, 47.4694015 ], + [ 7.9339347, 47.469404 ], + [ 7.9339423, 47.4694071 ], + [ 7.9339495, 47.4694106 ], + [ 7.9339561, 47.4694145 ], + [ 7.9339673, 47.4694216 ], + [ 7.9339791, 47.4694282 ], + [ 7.9339914, 47.4694344 ], + [ 7.9340043, 47.4694401 ], + [ 7.9340176, 47.4694452 ], + [ 7.9340314, 47.4694498 ], + [ 7.9340455, 47.4694539 ], + [ 7.9340522, 47.4694559 ], + [ 7.9340585, 47.4694583 ], + [ 7.9340645, 47.4694612 ], + [ 7.9340699, 47.4694645 ], + [ 7.9340748, 47.4694683 ], + [ 7.934079, 47.4694723 ], + [ 7.9340825, 47.4694767 ], + [ 7.9340853, 47.4694812 ], + [ 7.9340874, 47.469486 ], + [ 7.9340886, 47.4694909 ], + [ 7.9340908, 47.4694964 ], + [ 7.9340938, 47.4695017 ], + [ 7.9340976, 47.4695068 ], + [ 7.9341021, 47.4695116 ], + [ 7.9341074, 47.469516 ], + [ 7.9341133, 47.46952 ], + [ 7.9341199, 47.4695236 ], + [ 7.9341269, 47.4695267 ], + [ 7.9341328, 47.4695293 ], + [ 7.9341383, 47.4695324 ], + [ 7.9341432, 47.4695358 ], + [ 7.9341476, 47.4695395 ], + [ 7.9341473, 47.4695439 ], + [ 7.9341463999999995, 47.4695482 ], + [ 7.934145, 47.4695525 ], + [ 7.9341429, 47.4695566 ], + [ 7.9341402, 47.4695606 ], + [ 7.9341397, 47.4695645 ], + [ 7.9341398, 47.4695683 ], + [ 7.9341403, 47.4695721 ], + [ 7.9341413, 47.4695759 ], + [ 7.9341483, 47.4695776 ], + [ 7.9341556, 47.4695788 ], + [ 7.934163, 47.4695794 ], + [ 7.9341705, 47.4695794 ], + [ 7.934178, 47.4695789 ], + [ 7.9341853, 47.4695778 ], + [ 7.9341944, 47.4695768 ], + [ 7.9342036, 47.4695764 ], + [ 7.9342129, 47.4695766 ], + [ 7.934222, 47.4695774 ], + [ 7.934231, 47.4695789 ], + [ 7.9342397, 47.469581 ], + [ 7.9342481, 47.4695836 ], + [ 7.9342559999999995, 47.4695868 ], + [ 7.9342635, 47.4695905 ], + [ 7.9343096, 47.4696202 ], + [ 7.9343159, 47.4696275 ], + [ 7.9343216, 47.4696351 ], + [ 7.9343264, 47.4696429 ], + [ 7.9343305, 47.4696509 ], + [ 7.9343337, 47.4696591 ], + [ 7.9343362, 47.4696674 ], + [ 7.9343378, 47.4696758 ], + [ 7.9343385, 47.4696843 ], + [ 7.9344374, 47.4697637 ], + [ 7.9344474, 47.4697673 ], + [ 7.934457, 47.4697713 ], + [ 7.9344661, 47.4697759 ], + [ 7.9344747, 47.4697808 ], + [ 7.9344828, 47.4697861 ], + [ 7.9344903, 47.4697918 ], + [ 7.9344972, 47.4697979 ], + [ 7.9345034, 47.4698043 ], + [ 7.934509, 47.4698109 ], + [ 7.9345137999999995, 47.4698178 ], + [ 7.9345499, 47.4698806 ], + [ 7.934552, 47.4698862 ], + [ 7.9345533, 47.4698919 ], + [ 7.9345538, 47.4698976 ], + [ 7.9345535, 47.4699033 ], + [ 7.9345525, 47.4699091 ], + [ 7.9345507, 47.4699147 ], + [ 7.9345482, 47.4699202 ], + [ 7.9345449, 47.4699255 ], + [ 7.9345415, 47.4699308 ], + [ 7.9345389, 47.4699364 ], + [ 7.9345372, 47.4699421 ], + [ 7.9345365, 47.4699479 ], + [ 7.9345365999999995, 47.4699537 ], + [ 7.9345377, 47.4699595 ], + [ 7.9345397, 47.4699652 ], + [ 7.9345426, 47.4699707 ], + [ 7.9345464, 47.4699759 ], + [ 7.934551, 47.4699809 ], + [ 7.9345563, 47.4699854 ], + [ 7.934563, 47.4699913 ], + [ 7.934569, 47.4699975 ], + [ 7.9345742, 47.470004 ], + [ 7.9345786, 47.4700108 ], + [ 7.9345821999999995, 47.4700178 ], + [ 7.9345849, 47.470025 ], + [ 7.9345867, 47.4700323 ], + [ 7.9345876, 47.4700397 ], + [ 7.9345876, 47.4700471 ], + [ 7.934588, 47.4700538 ], + [ 7.9345894, 47.4700604 ], + [ 7.9345916, 47.4700669 ], + [ 7.9345948, 47.4700733 ], + [ 7.9345988, 47.4700794 ], + [ 7.9346036, 47.4700852 ], + [ 7.9346091, 47.4700907 ], + [ 7.9346155, 47.4700959 ], + [ 7.9346224, 47.4701006 ], + [ 7.93463, 47.4701048 ], + [ 7.9346382, 47.4701086 ], + [ 7.9346501, 47.4701166 ], + [ 7.9346616, 47.4701249 ], + [ 7.9346725, 47.4701335 ], + [ 7.9346828, 47.4701424 ], + [ 7.9346926, 47.4701516 ], + [ 7.9347019, 47.4701611 ], + [ 7.9347104999999996, 47.4701708 ], + [ 7.9347154, 47.470175 ], + [ 7.9347399, 47.4702206 ], + [ 7.9347444, 47.4703408 ], + [ 7.9347965, 47.470445 ], + [ 7.9348503, 47.4705702 ], + [ 7.9348821, 47.4705882 ], + [ 7.9349436, 47.4707524 ], + [ 7.9349035, 47.4707897 ], + [ 7.9349076, 47.4708574 ], + [ 7.9349211, 47.4709773 ], + [ 7.9349315, 47.4710454 ], + [ 7.9348818, 47.4711109 ], + [ 7.9348669, 47.4711882 ], + [ 7.9349138, 47.4712186 ], + [ 7.93488, 47.4712667 ], + [ 7.9348873, 47.4713358 ], + [ 7.9349526, 47.471453 ], + [ 7.9349863, 47.4715782 ], + [ 7.9349044, 47.4716551 ], + [ 7.9348763, 47.47174 ], + [ 7.9348565, 47.4718731 ], + [ 7.9349150999999996, 47.472035 ], + [ 7.9348858, 47.47216 ], + [ 7.9349042999999995, 47.4723051 ], + [ 7.9349979, 47.4725058 ], + [ 7.9350442999999995, 47.4726882 ], + [ 7.9351082, 47.472892 ], + [ 7.9352097, 47.4733739 ], + [ 7.935223, 47.4737236 ], + [ 7.9341833, 47.4736333 ], + [ 7.9342546, 47.4734964 ], + [ 7.9344174, 47.4731476 ], + [ 7.9345175999999995, 47.4729516 ], + [ 7.934645, 47.4729914 ], + [ 7.9346287, 47.4727343 ], + [ 7.9344423, 47.472737 ], + [ 7.9344728, 47.4726039 ], + [ 7.934339, 47.4722686 ], + [ 7.9342621, 47.4722651 ], + [ 7.9342441, 47.4724903 ], + [ 7.9342507, 47.4727855 ], + [ 7.9343463, 47.473146 ], + [ 7.9343505, 47.4732135 ], + [ 7.9340193, 47.4732442 ], + [ 7.9340195, 47.4732282 ], + [ 7.9340184, 47.4732123 ], + [ 7.9340162, 47.4731965 ], + [ 7.9340121, 47.4731779 ], + [ 7.9340063999999995, 47.4731595 ], + [ 7.9339992, 47.4731414 ], + [ 7.933935, 47.4729757 ], + [ 7.9339987999999995, 47.4727828 ], + [ 7.9340235, 47.4726075 ], + [ 7.9340498, 47.4724144 ], + [ 7.9340431, 47.4722975 ], + [ 7.9339674, 47.4722283 ], + [ 7.9340806, 47.4720294 ], + [ 7.9341757, 47.4718012 ], + [ 7.9342717, 47.4716996 ], + [ 7.9343236, 47.4716344 ], + [ 7.934336, 47.4714871 ], + [ 7.9342814, 47.4710851 ], + [ 7.934258, 47.4709117 ], + [ 7.9340842, 47.4705676 ], + [ 7.9339385, 47.4704627 ], + [ 7.9338626, 47.4704064 ], + [ 7.9338408, 47.4703674 ], + [ 7.9336915, 47.4703982 ], + [ 7.9338751, 47.4707468 ], + [ 7.9339825, 47.470892 ], + [ 7.9340052, 47.4709827 ], + [ 7.9339788, 47.4711676 ], + [ 7.9339802, 47.4712914 ], + [ 7.9339549, 47.4714781 ], + [ 7.9339490999999995, 47.4716214 ], + [ 7.9339549, 47.4717458 ], + [ 7.9339072999999996, 47.4718492 ], + [ 7.9338758, 47.4718445 ], + [ 7.933847, 47.4717038 ], + [ 7.9338229, 47.4714903 ], + [ 7.9337771, 47.4712269 ], + [ 7.9337317, 47.4710663 ], + [ 7.9336375, 47.470841 ], + [ 7.9335568, 47.4707101 ], + [ 7.9333539, 47.4705232 ], + [ 7.9333423, 47.470425 ], + [ 7.9334131, 47.470233 ], + [ 7.9335515999999995, 47.4701377 ], + [ 7.9335726, 47.4701213 ], + [ 7.9336592, 47.4701835 ], + [ 7.933715, 47.4702267 ], + [ 7.9337612, 47.4702505 ], + [ 7.9337721, 47.4702561 ], + [ 7.9337758, 47.4702541 ], + [ 7.933774, 47.4702476 ], + [ 7.9337446, 47.4701854 ], + [ 7.9337174, 47.4701227 ], + [ 7.9336926, 47.4700595 ], + [ 7.9336789, 47.4700099 ], + [ 7.9336603, 47.4699611 ], + [ 7.9336134, 47.4698709 ], + [ 7.9335621, 47.4698833 ], + [ 7.9335671, 47.4699003 ], + [ 7.9335697, 47.4699176 ], + [ 7.9335701, 47.4699349 ], + [ 7.9335681000000005, 47.4699522 ], + [ 7.9335638, 47.4699693 ], + [ 7.9335572, 47.4699861 ], + [ 7.9335484, 47.4700024 ], + [ 7.9335374, 47.470018 ], + [ 7.9335244, 47.470033 ], + [ 7.933513, 47.4700404 ], + [ 7.9335007, 47.4700472 ], + [ 7.9334875, 47.4700531 ], + [ 7.9334736, 47.4700582 ], + [ 7.9334668, 47.4700603 ], + [ 7.93346, 47.4700623 ], + [ 7.933453, 47.470064 ], + [ 7.933439, 47.4700666 ], + [ 7.9334247, 47.4700685 ], + [ 7.9334103, 47.4700695 ], + [ 7.9333957999999996, 47.4700696 ], + [ 7.9333861, 47.4700693 ], + [ 7.9333279, 47.4700642 ], + [ 7.9332705, 47.4700557 ], + [ 7.9332145, 47.4700438 ], + [ 7.9331603, 47.4700286 ], + [ 7.9331083, 47.4700102 ], + [ 7.9330589, 47.4699887 ], + [ 7.9329855, 47.4699564 ], + [ 7.9329148, 47.4699214 ], + [ 7.932847, 47.469884 ], + [ 7.9327202, 47.4698208 ], + [ 7.9325934, 47.4697577 ], + [ 7.9324665, 47.4696946 ], + [ 7.9323044, 47.4695907 ], + [ 7.9323266, 47.4695685 ], + [ 7.9321098, 47.4694451 ], + [ 7.9320251, 47.4692957 ], + [ 7.9318778, 47.4690118 ], + [ 7.931793, 47.4691963 ], + [ 7.9309736, 47.4691011 ], + [ 7.9305195, 47.469004 ], + [ 7.9302958, 47.468957 ], + [ 7.9302469, 47.4689446 ], + [ 7.9299811, 47.4689182 ], + [ 7.9295626, 47.4688789 ], + [ 7.9289448, 47.4688822 ], + [ 7.9285987, 47.4688781 ], + [ 7.9284687, 47.4688992 ], + [ 7.9281299, 47.468958 ], + [ 7.9276789, 47.4690335 ], + [ 7.9276855, 47.4690684 ], + [ 7.9277159, 47.4691622 ], + [ 7.9277163999999996, 47.4691637 ], + [ 7.9277169, 47.4691651 ], + [ 7.9277191, 47.4691842 ], + [ 7.9277204999999995, 47.4691954 ], + [ 7.9277256, 47.4692396 ], + [ 7.9279171999999996, 47.4695688 ], + [ 7.9279561, 47.4695856 ] + ], + [ + [ 7.9166175, 47.4675829 ], + [ 7.9160728, 47.4675225 ], + [ 7.915889, 47.4674998 ], + [ 7.9159972, 47.4669515 ], + [ 7.9162001, 47.4669654 ], + [ 7.9164435, 47.4669871 ], + [ 7.9168062, 47.4670202 ], + [ 7.9166175, 47.4675829 ] + ], + [ + [ 7.9348897, 47.469575 ], + [ 7.9353984, 47.469666 ], + [ 7.9355, 47.4696768 ], + [ 7.935761, 47.4697064 ], + [ 7.9360582, 47.4697343 ], + [ 7.9360857, 47.4699382 ], + [ 7.9361358, 47.470396 ], + [ 7.9361059, 47.4708388 ], + [ 7.9361003, 47.4711347 ], + [ 7.9360941, 47.4713556 ], + [ 7.9355903, 47.4713521 ], + [ 7.9353576, 47.4722345 ], + [ 7.9352765, 47.4726687 ], + [ 7.9352365, 47.4722673 ], + [ 7.9352355, 47.4722576 ], + [ 7.9351882, 47.4713534 ], + [ 7.9351409, 47.4709726 ], + [ 7.9350786, 47.4705704 ], + [ 7.9350213, 47.4701619 ], + [ 7.9350056, 47.470138 ], + [ 7.9348059, 47.4698691 ], + [ 7.9348897, 47.469575 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns056", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Roti Flue - Dübach", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Roti Flue - Dübach", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Roti Flue - Dübach", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Roti Flue - Dübach", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.740293, 47.4341426 ], + [ 7.7401254999999995, 47.4341842 ], + [ 7.7398717999999995, 47.4342714 ], + [ 7.7397829, 47.4343304 ], + [ 7.7396136, 47.4343581 ], + [ 7.7395192, 47.4344013 ], + [ 7.7393161, 47.4344496 ], + [ 7.7392674, 47.4345115 ], + [ 7.739165, 47.4345378 ], + [ 7.7390947, 47.4345755 ], + [ 7.7389424, 47.434608 ], + [ 7.7388221999999995, 47.4346488 ], + [ 7.7387806999999995, 47.434721 ], + [ 7.7386464, 47.4347994 ], + [ 7.7383484, 47.4349448 ], + [ 7.7382281, 47.4349778 ], + [ 7.7381116, 47.435032 ], + [ 7.738006, 47.4351406 ], + [ 7.7379673, 47.4352303 ], + [ 7.7378684, 47.4354121 ], + [ 7.7378675999999995, 47.4354703 ], + [ 7.7378476, 47.4355308 ], + [ 7.7379001, 47.4356093 ], + [ 7.7379764, 47.4357107 ], + [ 7.7380595, 47.4358229 ], + [ 7.737872, 47.4363685 ], + [ 7.7378189, 47.4365312 ], + [ 7.7377304, 47.436933 ], + [ 7.7376837, 47.4371647 ], + [ 7.7377417, 47.4374514 ], + [ 7.737815, 47.4377153 ], + [ 7.7379627, 47.4379617 ], + [ 7.7380848, 47.4382341 ], + [ 7.7381559, 47.438447 ], + [ 7.738225, 47.4386722 ], + [ 7.7382995999999995, 47.4388987 ], + [ 7.7383752999999995, 47.4390696 ], + [ 7.7387993, 47.4390694 ], + [ 7.7388536, 47.4390415 ], + [ 7.7388616, 47.4389076 ], + [ 7.7388418, 47.4388712 ], + [ 7.7388411, 47.4387423 ], + [ 7.7389236, 47.4386977 ], + [ 7.7391071, 47.4386962 ], + [ 7.7391644, 47.4386828 ], + [ 7.7392287, 47.4386061 ], + [ 7.7392487, 47.4385444 ], + [ 7.7393134, 47.4384733 ], + [ 7.7393097, 47.4384393 ], + [ 7.7393082, 47.4384153 ], + [ 7.7393077, 47.4383914 ], + [ 7.739308, 47.4383674 ], + [ 7.7393093, 47.4383435 ], + [ 7.7393114, 47.4383196 ], + [ 7.7393145, 47.4382958 ], + [ 7.7393169, 47.4382761 ], + [ 7.7393184999999995, 47.4382563 ], + [ 7.7393192, 47.4382366 ], + [ 7.739319, 47.4382168 ], + [ 7.7393179, 47.4381971 ], + [ 7.7393159, 47.4381773 ], + [ 7.739313, 47.4381577 ], + [ 7.7393093, 47.4381381 ], + [ 7.7393047, 47.4381185 ], + [ 7.7392992, 47.4380991 ], + [ 7.7392928, 47.4380798 ], + [ 7.7392856, 47.4380607 ], + [ 7.7392775, 47.4380417 ], + [ 7.7392686, 47.4380229 ], + [ 7.7392589, 47.4380043 ], + [ 7.7392483, 47.4379859 ], + [ 7.7392369, 47.4379677 ], + [ 7.7391932, 47.4378928 ], + [ 7.7391365, 47.437787 ], + [ 7.7390503, 47.4376255 ], + [ 7.7389978, 47.4374989 ], + [ 7.7389694, 47.4374207 ], + [ 7.7389606, 47.4373975 ], + [ 7.7389363, 47.4373649 ], + [ 7.7388846000000004, 47.4372918 ], + [ 7.7388176, 47.4372022 ], + [ 7.7388009, 47.4371471 ], + [ 7.7387893, 47.4370982 ], + [ 7.7387721, 47.4370333 ], + [ 7.7387591, 47.436976 ], + [ 7.7387437, 47.436913 ], + [ 7.7387341, 47.4368686 ], + [ 7.7387315, 47.4368466 ], + [ 7.7387384, 47.4367605 ], + [ 7.738741, 47.4367429 ], + [ 7.7387446, 47.4367254 ], + [ 7.738749, 47.4367079 ], + [ 7.7387543, 47.4366906 ], + [ 7.7387604, 47.4366733 ], + [ 7.7387674, 47.4366563 ], + [ 7.7387752, 47.4366394 ], + [ 7.7387839, 47.4366227 ], + [ 7.7387934, 47.4366062 ], + [ 7.7388037, 47.4365899 ], + [ 7.7388148, 47.4365739 ], + [ 7.7388267, 47.4365581 ], + [ 7.7388393, 47.4365426 ], + [ 7.7388528, 47.4365274 ], + [ 7.7388669, 47.4365125 ], + [ 7.7388896, 47.4364902 ], + [ 7.738913, 47.4364682 ], + [ 7.7389372, 47.4364465 ], + [ 7.738962, 47.4364252 ], + [ 7.7389875, 47.4364043 ], + [ 7.7390136, 47.4363838 ], + [ 7.7390405, 47.4363637 ], + [ 7.7390679, 47.4363439 ], + [ 7.7390963, 47.436324 ], + [ 7.739124, 47.4363037 ], + [ 7.7391511, 47.436283 ], + [ 7.7391776, 47.436262 ], + [ 7.7392034, 47.4362406 ], + [ 7.7392285, 47.4362188 ], + [ 7.739253, 47.4361966 ], + [ 7.7392769, 47.436174199999996 ], + [ 7.7392863, 47.4361641 ], + [ 7.739295, 47.4361538 ], + [ 7.7393028, 47.4361431 ], + [ 7.7393099, 47.4361322 ], + [ 7.7393161, 47.436121 ], + [ 7.7393214, 47.4361097 ], + [ 7.7393259, 47.4360982 ], + [ 7.7393294, 47.4360865 ], + [ 7.7393321, 47.4360747 ], + [ 7.7393339, 47.4360629 ], + [ 7.7393348, 47.4360509 ], + [ 7.7393348, 47.436039 ], + [ 7.7393339, 47.4360271 ], + [ 7.7393307, 47.4359046 ], + [ 7.7393260999999995, 47.4358697 ], + [ 7.7393225, 47.4358347 ], + [ 7.7393197, 47.4357997 ], + [ 7.7393178, 47.4357646 ], + [ 7.7393169, 47.4357296 ], + [ 7.7393168, 47.4356945 ], + [ 7.7393176, 47.4356594 ], + [ 7.7393194, 47.4356244 ], + [ 7.7393207, 47.4356046 ], + [ 7.7393229, 47.4355848 ], + [ 7.739326, 47.4355652 ], + [ 7.73933, 47.4355455 ], + [ 7.739335, 47.435526 ], + [ 7.7393409, 47.4355066 ], + [ 7.7393476, 47.4354874 ], + [ 7.7393553, 47.4354682 ], + [ 7.7393638, 47.4354493 ], + [ 7.7393733000000005, 47.4354306 ], + [ 7.7393836, 47.435412 ], + [ 7.7393947, 47.4353937 ], + [ 7.7394067, 47.4353757 ], + [ 7.7394258, 47.4353515 ], + [ 7.7394457, 47.4353277 ], + [ 7.7394663, 47.4353041 ], + [ 7.7394877, 47.4352809 ], + [ 7.7395099, 47.435258 ], + [ 7.7395327, 47.4352354 ], + [ 7.7395563, 47.4352132 ], + [ 7.7395835, 47.4351881 ], + [ 7.7396112, 47.4351633 ], + [ 7.7396395, 47.4351388 ], + [ 7.7396683, 47.4351146 ], + [ 7.7396977, 47.4350907 ], + [ 7.7397276, 47.4350671 ], + [ 7.7397580999999995, 47.4350438 ], + [ 7.739789, 47.4350209 ], + [ 7.7398462, 47.4349832 ], + [ 7.739904, 47.4349461 ], + [ 7.7399625, 47.4349094 ], + [ 7.7400216, 47.4348732 ], + [ 7.7400814, 47.4348374 ], + [ 7.7401418, 47.4348022 ], + [ 7.7402028, 47.4347675 ], + [ 7.7402645, 47.4347333 ], + [ 7.7403267, 47.4346996 ], + [ 7.7403896, 47.4346664 ], + [ 7.740453, 47.4346337 ], + [ 7.740481, 47.43462 ], + [ 7.7405095, 47.4346067 ], + [ 7.7405384999999995, 47.4345939 ], + [ 7.7405679, 47.4345816 ], + [ 7.7405978, 47.4345698 ], + [ 7.740628, 47.4345585 ], + [ 7.7406587, 47.4345477 ], + [ 7.7406898, 47.434537399999996 ], + [ 7.7407212, 47.4345277 ], + [ 7.740753, 47.4345185 ], + [ 7.7407851, 47.4345098 ], + [ 7.7408175, 47.4345017 ], + [ 7.7408502, 47.4344941 ], + [ 7.7409033, 47.4344859 ], + [ 7.7409564, 47.434478 ], + [ 7.7410097, 47.4344706 ], + [ 7.741063, 47.4344635 ], + [ 7.7411165, 47.4344567 ], + [ 7.7413799, 47.4344245 ], + [ 7.7413898, 47.434423 ], + [ 7.7413994, 47.4344208 ], + [ 7.7414087, 47.4344179 ], + [ 7.7414175, 47.4344145 ], + [ 7.7414258, 47.4344104 ], + [ 7.7414334, 47.4344059 ], + [ 7.7414404, 47.4344008 ], + [ 7.7414466, 47.4343954 ], + [ 7.741452, 47.4343895 ], + [ 7.7414564, 47.4343833 ], + [ 7.7415122, 47.4342251 ], + [ 7.741471, 47.4342076 ], + [ 7.7413995, 47.4341931 ], + [ 7.7412638, 47.434199 ], + [ 7.741155, 47.4341759 ], + [ 7.7410501, 47.4341737 ], + [ 7.7407511, 47.4341094 ], + [ 7.7406767, 47.4340875 ], + [ 7.740498, 47.4341221 ], + [ 7.7403563, 47.4341363 ], + [ 7.740293, 47.4341426 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns361", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Häuli", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Häuli", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Häuli", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Häuli", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6830961, 47.5120203 ], + [ 7.6831173, 47.5120759 ], + [ 7.6830245999999995, 47.5121063 ], + [ 7.683011, 47.512146 ], + [ 7.6829993, 47.5121489 ], + [ 7.682988, 47.5121524 ], + [ 7.6829772, 47.5121566 ], + [ 7.6829669, 47.5121614 ], + [ 7.6829572, 47.5121667 ], + [ 7.6829483, 47.5121726 ], + [ 7.6829401, 47.5121789 ], + [ 7.6829342, 47.512185 ], + [ 7.6829292, 47.5121913 ], + [ 7.6829249, 47.5121979 ], + [ 7.6829215, 47.5122047 ], + [ 7.682919, 47.5122117 ], + [ 7.6829173, 47.5122188 ], + [ 7.6829165, 47.512226 ], + [ 7.6829166, 47.5122332 ], + [ 7.6829176, 47.5122404 ], + [ 7.6829195, 47.5122475 ], + [ 7.6829222999999995, 47.5122544 ], + [ 7.6829259, 47.5122612 ], + [ 7.6829303, 47.5122677 ], + [ 7.6829356, 47.512274 ], + [ 7.6829415999999995, 47.5122799 ], + [ 7.6829483, 47.5122855 ], + [ 7.6829514, 47.5122877 ], + [ 7.6829637, 47.5122954 ], + [ 7.6832654, 47.5124852 ], + [ 7.6833305, 47.5125282 ], + [ 7.6833564, 47.5125535 ], + [ 7.6833824, 47.5125787 ], + [ 7.6835308, 47.512746 ], + [ 7.6837609, 47.5129562 ], + [ 7.6838606, 47.5130533 ], + [ 7.6839521, 47.5131546 ], + [ 7.6840647, 47.5133131 ], + [ 7.6841036, 47.5133441 ], + [ 7.6841425, 47.5133752 ], + [ 7.6842323, 47.5134304 ], + [ 7.6845227, 47.5135996 ], + [ 7.6845582, 47.5136203 ], + [ 7.6846454, 47.5136712 ], + [ 7.6847398, 47.5137342 ], + [ 7.6847891, 47.5137718 ], + [ 7.68487, 47.5138336 ], + [ 7.6850003000000005, 47.5139329 ], + [ 7.6850309, 47.5139624 ], + [ 7.6851096, 47.5140382 ], + [ 7.6851467, 47.5140784 ], + [ 7.6853116, 47.5142652 ], + [ 7.6853397999999995, 47.5142978 ], + [ 7.6853681, 47.5143303 ], + [ 7.6853833, 47.514351 ], + [ 7.6853986, 47.5143718 ], + [ 7.685473, 47.5143544 ], + [ 7.6857486999999995, 47.5142551 ], + [ 7.686055, 47.5143804 ], + [ 7.6864776, 47.5145534 ], + [ 7.6869384, 47.5147224 ], + [ 7.686977, 47.5147297 ], + [ 7.6874174, 47.5148154 ], + [ 7.6875031, 47.514861 ], + [ 7.6876758, 47.5149293 ], + [ 7.6878055, 47.5149803 ], + [ 7.6879343, 47.5150307 ], + [ 7.6879577, 47.5150061 ], + [ 7.6879608, 47.5150028 ], + [ 7.6879528, 47.5149976 ], + [ 7.6877417, 47.5148675 ], + [ 7.6877014, 47.5148427 ], + [ 7.6877701, 47.5148734 ], + [ 7.6879903, 47.5149717 ], + [ 7.6882159, 47.5151201 ], + [ 7.688229, 47.5151239 ], + [ 7.6883298, 47.5151536 ], + [ 7.6887552, 47.515341 ], + [ 7.6887725, 47.5153486 ], + [ 7.6889348, 47.5154026 ], + [ 7.6889529, 47.5153721 ], + [ 7.6889609, 47.5153588 ], + [ 7.6889948, 47.5153023 ], + [ 7.6891873, 47.5149817 ], + [ 7.6893992, 47.5146308 ], + [ 7.6894238, 47.51459 ], + [ 7.689325, 47.5145149 ], + [ 7.6886600000000005, 47.5140099 ], + [ 7.688684, 47.513929 ], + [ 7.6887594, 47.5136749 ], + [ 7.6886115, 47.5136543 ], + [ 7.6884188, 47.5135784 ], + [ 7.6880659, 47.5134395 ], + [ 7.6878743, 47.5133347 ], + [ 7.6874137000000005, 47.5130829 ], + [ 7.68747, 47.5130388 ], + [ 7.6875273, 47.5129939 ], + [ 7.6875175, 47.512991 ], + [ 7.6873983, 47.5129471 ], + [ 7.6872807, 47.5128978 ], + [ 7.6869331, 47.5127368 ], + [ 7.6867393, 47.5126471 ], + [ 7.6866576, 47.512605 ], + [ 7.6865814, 47.5125571 ], + [ 7.6865121, 47.5125055 ], + [ 7.6864502, 47.5124498 ], + [ 7.6860048, 47.5119994 ], + [ 7.6859043, 47.5118977 ], + [ 7.6857843, 47.5117764 ], + [ 7.6857077, 47.5117096 ], + [ 7.6856047, 47.5116625 ], + [ 7.685368, 47.5115766 ], + [ 7.6851692, 47.5115072 ], + [ 7.685017, 47.5114619 ], + [ 7.6849666, 47.5114469 ], + [ 7.6849343999999995, 47.5114374 ], + [ 7.6842385, 47.5112325 ], + [ 7.6841564, 47.5112437 ], + [ 7.684039, 47.5112867 ], + [ 7.6840092, 47.5112949 ], + [ 7.6839388, 47.5113141 ], + [ 7.6839178, 47.5113198 ], + [ 7.6837878, 47.5113007 ], + [ 7.6836509, 47.5112458 ], + [ 7.6829425, 47.5109617 ], + [ 7.682898, 47.511008 ], + [ 7.6828351, 47.5110109 ], + [ 7.6826893, 47.5112305 ], + [ 7.6824592, 47.5111814 ], + [ 7.6823947, 47.5111643 ], + [ 7.6823497, 47.5111523 ], + [ 7.6822216, 47.5111183 ], + [ 7.6822184, 47.5111188 ], + [ 7.6819771, 47.5111837 ], + [ 7.6818262, 47.5114201 ], + [ 7.6819051, 47.5114911 ], + [ 7.6820539, 47.5115712 ], + [ 7.6820612, 47.5115751 ], + [ 7.6825389, 47.511658 ], + [ 7.6829272, 47.511851300000004 ], + [ 7.6830672, 47.5119391 ], + [ 7.6830936, 47.5120137 ], + [ 7.6830961, 47.5120203 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr024", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Zunftacher", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Zunftacher", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Zunftacher", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Zunftacher", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 10.3363557, 46.8050195 ], + [ 10.3363427, 46.8048785 ], + [ 10.336319, 46.8047382 ], + [ 10.3362847, 46.8045989 ], + [ 10.3362397, 46.804461 ], + [ 10.3361843, 46.804325 ], + [ 10.3361186, 46.8041911 ], + [ 10.3360428, 46.8040597 ], + [ 10.3359571, 46.8039313 ], + [ 10.3358618, 46.8038061 ], + [ 10.335757, 46.8036845 ], + [ 10.3356431, 46.8035669 ], + [ 10.3355203, 46.8034535 ], + [ 10.3353891, 46.8033446 ], + [ 10.3352498, 46.8032406 ], + [ 10.3351028, 46.8031418 ], + [ 10.3349484, 46.8030484 ], + [ 10.3347871, 46.8029607 ], + [ 10.3346194, 46.8028789 ], + [ 10.3344456, 46.8028032 ], + [ 10.3342664, 46.8027339 ], + [ 10.334082, 46.8026711 ], + [ 10.3338932, 46.802615 ], + [ 10.3337003, 46.802565799999996 ], + [ 10.333504, 46.8025236 ], + [ 10.3333047, 46.8024885 ], + [ 10.333103, 46.8024606 ], + [ 10.3328994, 46.80244 ], + [ 10.3326946, 46.8024267 ], + [ 10.332489, 46.8024208 ], + [ 10.3322833, 46.8024224 ], + [ 10.3320779, 46.8024313 ], + [ 10.3318736, 46.8024475 ], + [ 10.3316707, 46.8024711 ], + [ 10.3314699, 46.802502 ], + [ 10.3312718, 46.80254 ], + [ 10.3310768, 46.8025851 ], + [ 10.3308855, 46.8026371 ], + [ 10.3306984, 46.802696 ], + [ 10.3305161, 46.8027615 ], + [ 10.330339, 46.8028334 ], + [ 10.3301677, 46.8029116 ], + [ 10.330002499999999, 46.8029959 ], + [ 10.329844, 46.803086 ], + [ 10.3296926, 46.8031816 ], + [ 10.3295487, 46.8032826 ], + [ 10.3294127, 46.8033886 ], + [ 10.3292849, 46.8034993 ], + [ 10.3291657, 46.8036145 ], + [ 10.3290555, 46.8037338 ], + [ 10.3289545, 46.8038569 ], + [ 10.3288631, 46.8039835 ], + [ 10.3287814, 46.8041131 ], + [ 10.3287097, 46.8042456 ], + [ 10.3286482, 46.8043804 ], + [ 10.3285971, 46.8045172 ], + [ 10.3285565, 46.8046557 ], + [ 10.3285264, 46.8047955 ], + [ 10.3285071, 46.8049362 ], + [ 10.3284985, 46.8050773 ], + [ 10.3285007, 46.8052186 ], + [ 10.3285137, 46.8053596 ], + [ 10.3285374, 46.8055 ], + [ 10.3285717, 46.8056393 ], + [ 10.3286167, 46.8057771 ], + [ 10.328672, 46.8059132 ], + [ 10.3287377, 46.8060471 ], + [ 10.3288135, 46.8061784 ], + [ 10.3288992, 46.8063069 ], + [ 10.3289945, 46.8064321 ], + [ 10.3290993, 46.8065537 ], + [ 10.3292132, 46.8066713 ], + [ 10.3293359, 46.8067848 ], + [ 10.3294671, 46.8068936 ], + [ 10.3296064, 46.8069976 ], + [ 10.3297535, 46.8070964 ], + [ 10.3299079, 46.8071898 ], + [ 10.3300691, 46.8072776 ], + [ 10.3302369, 46.8073594 ], + [ 10.3304106, 46.807435 ], + [ 10.3305899, 46.8075044 ], + [ 10.3307743, 46.8075672 ], + [ 10.3309631, 46.8076233 ], + [ 10.331156, 46.8076725 ], + [ 10.3313524, 46.8077147 ], + [ 10.3315517, 46.8077498 ], + [ 10.3317534, 46.8077777 ], + [ 10.331957, 46.8077983 ], + [ 10.3321618, 46.8078116 ], + [ 10.3323674, 46.8078174 ], + [ 10.3325732, 46.8078159 ], + [ 10.3327786, 46.807807 ], + [ 10.332983, 46.8077908 ], + [ 10.3331858, 46.8077672 ], + [ 10.3333866, 46.8077363 ], + [ 10.3335848, 46.8076983 ], + [ 10.3337798, 46.8076532 ], + [ 10.3339711, 46.8076011 ], + [ 10.3341582, 46.8075423 ], + [ 10.3343405, 46.8074768 ], + [ 10.3345176, 46.8074048 ], + [ 10.334689, 46.8073266 ], + [ 10.3348541, 46.8072424 ], + [ 10.3350126, 46.8071523 ], + [ 10.335164, 46.8070566 ], + [ 10.335308, 46.8069556 ], + [ 10.335444, 46.8068496 ], + [ 10.3355718, 46.8067389 ], + [ 10.3356909, 46.8066237 ], + [ 10.3358011, 46.8065044 ], + [ 10.3359021, 46.8063813 ], + [ 10.3359935, 46.8062547 ], + [ 10.3360752, 46.806125 ], + [ 10.3361469, 46.8059926 ], + [ 10.3362083, 46.8058578 ], + [ 10.3362595, 46.8057209 ], + [ 10.3363001, 46.8055824 ], + [ 10.3363301, 46.8054426 ], + [ 10.3363494, 46.805302 ], + [ 10.3363579, 46.8051608 ], + [ 10.3363557, 46.8050195 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0091", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Pradella A", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Pradella A", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Pradella A", + "lang" : "it-CH" + }, + { + "text" : "Substation Pradella A", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8529321, 47.5154218 ], + [ 7.8529107, 47.5153395 ], + [ 7.8529024, 47.5153075 ], + [ 7.8529574, 47.5152792 ], + [ 7.8531759, 47.5151666 ], + [ 7.8533023, 47.5148474 ], + [ 7.8532695, 47.5147844 ], + [ 7.8532083, 47.5146671 ], + [ 7.8532098, 47.5146269 ], + [ 7.8532165, 47.5144385 ], + [ 7.8532864, 47.5144113 ], + [ 7.8533511, 47.5141985 ], + [ 7.8533973, 47.5141296 ], + [ 7.8534144999999995, 47.514104 ], + [ 7.8534137, 47.5140266 ], + [ 7.8534125, 47.5139112 ], + [ 7.8533874, 47.5138275 ], + [ 7.853344, 47.5137877 ], + [ 7.8533136, 47.5137598 ], + [ 7.8532408, 47.5136932 ], + [ 7.8532422, 47.5136803 ], + [ 7.8532588, 47.5135267 ], + [ 7.8532603, 47.5135122 ], + [ 7.8533013, 47.5133916 ], + [ 7.85335, 47.5132485 ], + [ 7.8533788, 47.5129836 ], + [ 7.8533837, 47.5129386 ], + [ 7.8534194, 47.5128228 ], + [ 7.8534253, 47.5127956 ], + [ 7.8533771, 47.5126947 ], + [ 7.8534863, 47.5124809 ], + [ 7.8538006, 47.5122775 ], + [ 7.853946, 47.5121143 ], + [ 7.8540972, 47.5118337 ], + [ 7.8542077, 47.5114674 ], + [ 7.8514444999999995, 47.5110622 ], + [ 7.8512511, 47.5112165 ], + [ 7.8511833, 47.5116461 ], + [ 7.8512384, 47.5117652 ], + [ 7.8511234, 47.511842 ], + [ 7.8509875000000005, 47.5123824 ], + [ 7.8508751, 47.5133722 ], + [ 7.8507546999999995, 47.5142485 ], + [ 7.850657, 47.5147679 ], + [ 7.8529321, 47.5154218 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr030", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Mettele", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Mettele", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Mettele", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Mettele", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.1196814, 46.3337663 ], + [ 7.1182628, 46.3331721 ], + [ 7.1162737, 46.3330909 ], + [ 7.1157025, 46.33328 ], + [ 7.1155426, 46.3333056 ], + [ 7.1152948, 46.3332671 ], + [ 7.115104, 46.3332513 ], + [ 7.1147572, 46.3332485 ], + [ 7.1145898, 46.3332354 ], + [ 7.1142208, 46.3332658 ], + [ 7.1140076, 46.3332931 ], + [ 7.1139751, 46.3332993 ], + [ 7.1137788, 46.3333401 ], + [ 7.1136957, 46.3333273 ], + [ 7.1134689, 46.3332565 ], + [ 7.1133041, 46.3332344 ], + [ 7.1131002, 46.3332374 ], + [ 7.1129819, 46.3332488 ], + [ 7.1127062, 46.3333209 ], + [ 7.1126867, 46.3333262 ], + [ 7.1124772, 46.3333886 ], + [ 7.1121873, 46.333439 ], + [ 7.1119249, 46.3334517 ], + [ 7.1118094, 46.3334307 ], + [ 7.1116452, 46.3333142 ], + [ 7.1111231, 46.3333172 ], + [ 7.1107754, 46.333479 ], + [ 7.1105488, 46.3335782 ], + [ 7.1099241, 46.3338021 ], + [ 7.1097457, 46.3338853 ], + [ 7.1096178, 46.3339767 ], + [ 7.1091748, 46.334221 ], + [ 7.1089703, 46.3343166 ], + [ 7.1088231, 46.3343855 ], + [ 7.1087243, 46.3344086 ], + [ 7.108645, 46.3344263 ], + [ 7.1083839, 46.3344345 ], + [ 7.1082657, 46.3344405 ], + [ 7.1080381, 46.3344839 ], + [ 7.1078702, 46.3345491 ], + [ 7.1077725, 46.3345911 ], + [ 7.1074734, 46.3346586 ], + [ 7.1074318, 46.3346683 ], + [ 7.1073602, 46.3346996 ], + [ 7.1073261, 46.3347418 ], + [ 7.1073308, 46.3348309 ], + [ 7.1073469, 46.3353806 ], + [ 7.1073864, 46.3355039 ], + [ 7.1074677, 46.3355995 ], + [ 7.1074702, 46.3356022 ], + [ 7.1075023, 46.3356716 ], + [ 7.1074793, 46.3360367 ], + [ 7.1074765, 46.3360646 ], + [ 7.1074683, 46.3361258 ], + [ 7.1074831, 46.3362616 ], + [ 7.1075235, 46.3364489 ], + [ 7.1075641, 46.3366055 ], + [ 7.1076025, 46.3367046 ], + [ 7.107672, 46.3368037 ], + [ 7.1077185, 46.3368434 ], + [ 7.1077753, 46.3368985 ], + [ 7.1078321, 46.3369535 ], + [ 7.1078224, 46.3370606 ], + [ 7.1077006, 46.3372248 ], + [ 7.1076739, 46.3373462 ], + [ 7.1076716, 46.3375108 ], + [ 7.1077021, 46.337608 ], + [ 7.1077136, 46.3376468 ], + [ 7.1077557, 46.3377728 ], + [ 7.1077445, 46.337905 ], + [ 7.1077502, 46.3380301 ], + [ 7.1077666, 46.3381138 ], + [ 7.1078117, 46.3381634 ], + [ 7.1078195, 46.3381742 ], + [ 7.1079022, 46.3382437 ], + [ 7.1079045, 46.3382824 ], + [ 7.1079045, 46.3382941 ], + [ 7.1078939, 46.3383283 ], + [ 7.1078846, 46.3383615 ], + [ 7.1078151, 46.3384639 ], + [ 7.1077784, 46.3385213 ], + [ 7.1077794, 46.3385735 ], + [ 7.1077828, 46.338856 ], + [ 7.1077748, 46.3389036 ], + [ 7.1077626, 46.3389765 ], + [ 7.1077476, 46.339088 ], + [ 7.1077198, 46.3391823 ], + [ 7.1075857, 46.3394536 ], + [ 7.1075928, 46.3395562 ], + [ 7.1076335, 46.3396993 ], + [ 7.1075995, 46.3399502 ], + [ 7.1075912, 46.3400321 ], + [ 7.1076195, 46.3400726 ], + [ 7.1077488, 46.3401684 ], + [ 7.1081265, 46.3404366 ], + [ 7.1081962, 46.340498 ], + [ 7.1082359, 46.3405953 ], + [ 7.1082666, 46.3406709 ], + [ 7.1082757, 46.3406683 ], + [ 7.1083238, 46.3406621 ], + [ 7.1083732, 46.3406604 ], + [ 7.1084212, 46.3406624 ], + [ 7.1084913, 46.3406716 ], + [ 7.1085588, 46.3406835 ], + [ 7.1086249, 46.3406999 ], + [ 7.1086884, 46.3407189 ], + [ 7.1087507, 46.3407416 ], + [ 7.1088414, 46.340777 ], + [ 7.1089334, 46.3408123 ], + [ 7.1090241, 46.3408477 ], + [ 7.1091161, 46.340883 ], + [ 7.1092068, 46.3409175 ], + [ 7.109234, 46.3409274 ], + [ 7.1092923, 46.3409474 ], + [ 7.1093507, 46.3409647 ], + [ 7.1093818, 46.3409728 ], + [ 7.1094116, 46.3409792 ], + [ 7.1094726, 46.3409911 ], + [ 7.1095362, 46.3410003 ], + [ 7.1095842, 46.3410067 ], + [ 7.1096322, 46.3410132 ], + [ 7.1096802, 46.3410196 ], + [ 7.1097283000000004, 46.3410269 ], + [ 7.1097763, 46.3410352 ], + [ 7.1098165, 46.3410434 ], + [ 7.1098567, 46.3410543 ], + [ 7.109893, 46.3410688 ], + [ 7.1099292, 46.3410851 ], + [ 7.1099616, 46.3411041 ], + [ 7.1100237, 46.3411456 ], + [ 7.1100858, 46.3411872 ], + [ 7.1101479, 46.3412288 ], + [ 7.11021, 46.3412703 ], + [ 7.1102708, 46.3413119 ], + [ 7.1103354, 46.3413543 ], + [ 7.1104014, 46.3413932 ], + [ 7.1104701, 46.3414303 ], + [ 7.1105426, 46.3414647 ], + [ 7.1106164, 46.3414973 ], + [ 7.110698, 46.3415317 ], + [ 7.1107784, 46.3415688 ], + [ 7.1108574, 46.3416068 ], + [ 7.1109337, 46.3416466 ], + [ 7.1110075, 46.3416882 ], + [ 7.1110515, 46.3417153 ], + [ 7.1110929, 46.3417443 ], + [ 7.111133, 46.3417741 ], + [ 7.1111692, 46.3418056 ], + [ 7.1112028, 46.341839 ], + [ 7.1112931, 46.3419337 ], + [ 7.1113809, 46.3420285 ], + [ 7.1114673, 46.3421241 ], + [ 7.1115524, 46.3422206 ], + [ 7.111635, 46.342318 ], + [ 7.1117201, 46.3424145 ], + [ 7.1118157, 46.3425065 ], + [ 7.1119178, 46.3425949 ], + [ 7.1120277, 46.342678 ], + [ 7.1121454, 46.3427566 ], + [ 7.1122528, 46.3428199 ], + [ 7.1123668, 46.3428778 ], + [ 7.112486, 46.3429303 ], + [ 7.1126104, 46.3429766 ], + [ 7.1127387, 46.3430174 ], + [ 7.1127711, 46.3430274 ], + [ 7.112801, 46.3430392 ], + [ 7.1128307, 46.3430528 ], + [ 7.1128579, 46.343068099999996 ], + [ 7.1128838, 46.3430844 ], + [ 7.112911, 46.3431034 ], + [ 7.1129407, 46.3431214 ], + [ 7.1129705, 46.3431377 ], + [ 7.1130029, 46.3431531 ], + [ 7.1130366, 46.3431676 ], + [ 7.1131053, 46.3431957 ], + [ 7.1131739, 46.3432256 ], + [ 7.11324, 46.3432563 ], + [ 7.113306, 46.3432889 ], + [ 7.1133695, 46.3433224 ], + [ 7.113442, 46.3433658 ], + [ 7.1135066, 46.3434136 ], + [ 7.1135118, 46.3434182 ], + [ 7.113566, 46.343466 ], + [ 7.1136164, 46.343521 ], + [ 7.1136589, 46.3435805 ], + [ 7.1136847, 46.3436148 ], + [ 7.1137169, 46.3436472 ], + [ 7.1137544, 46.3436761 ], + [ 7.1137971, 46.3437014 ], + [ 7.1138451, 46.3437232 ], + [ 7.1138891, 46.3437422 ], + [ 7.1139124, 46.3437548 ], + [ 7.1139306, 46.3437639 ], + [ 7.1139694, 46.3437883 ], + [ 7.1140043, 46.3438145 ], + [ 7.1140366, 46.3438425 ], + [ 7.1140805, 46.343884 ], + [ 7.1141257, 46.3439264 ], + [ 7.1141696, 46.3439679 ], + [ 7.1142148, 46.3440094 ], + [ 7.1142588, 46.3440509 ], + [ 7.1143053, 46.3440879 ], + [ 7.1143584, 46.3441196 ], + [ 7.1144167, 46.3441458 ], + [ 7.1144815, 46.3441658 ], + [ 7.114549, 46.3441795 ], + [ 7.1146671, 46.3441906 ], + [ 7.1147879, 46.3441919 ], + [ 7.1149061, 46.3441823 ], + [ 7.1150231999999995, 46.3441619 ], + [ 7.1151351, 46.3441317 ], + [ 7.1152119, 46.3441049 ], + [ 7.1152874, 46.3440754 ], + [ 7.1153603, 46.3440433 ], + [ 7.1154294, 46.3440084 ], + [ 7.1154971, 46.3439708 ], + [ 7.1155805, 46.3439243 ], + [ 7.1156691, 46.3438813 ], + [ 7.1157603, 46.343842 ], + [ 7.1158553, 46.3438063 ], + [ 7.1159529, 46.3437742 ], + [ 7.116044, 46.3437502 ], + [ 7.1161376, 46.3437315 ], + [ 7.1162325, 46.3437174 ], + [ 7.1163287, 46.3437087 ], + [ 7.1164261, 46.3437054 ], + [ 7.1164976, 46.3437011 ], + [ 7.1165678, 46.3436896 ], + [ 7.1166342, 46.3436709 ], + [ 7.1166967, 46.3436459 ], + [ 7.1167527, 46.3436146 ], + [ 7.1167853, 46.343594 ], + [ 7.1168179, 46.3435725 ], + [ 7.1168492, 46.3435519 ], + [ 7.1168818, 46.3435304 ], + [ 7.1169131, 46.3435089 ], + [ 7.1169392, 46.3434927 ], + [ 7.1169679, 46.3434766 ], + [ 7.1169978, 46.3434623 ], + [ 7.1170278, 46.3434489 ], + [ 7.1170603, 46.3434373 ], + [ 7.1170668, 46.3434355 ], + [ 7.1170746, 46.3434329 ], + [ 7.1170811, 46.3434311 ], + [ 7.1170902, 46.3434284 ], + [ 7.1170968, 46.3434266 ], + [ 7.1171475, 46.3434133 ], + [ 7.1171982, 46.3434017 ], + [ 7.1172502, 46.343392 ], + [ 7.1173035, 46.3433831 ], + [ 7.1173568, 46.343377 ], + [ 7.1174231, 46.3433664 ], + [ 7.1174869, 46.3433513 ], + [ 7.1175481, 46.3433299 ], + [ 7.1176054, 46.3433039 ], + [ 7.1176575, 46.3432735 ], + [ 7.1177149, 46.3432323 ], + [ 7.1177684, 46.3431883 ], + [ 7.1178167, 46.3431417 ], + [ 7.1178599, 46.3430933 ], + [ 7.1178979, 46.3430421 ], + [ 7.1179529, 46.342964 ], + [ 7.1179987, 46.3429083 ], + [ 7.1180144, 46.3428886 ], + [ 7.1180785, 46.3428141 ], + [ 7.118149, 46.3427423 ], + [ 7.1182235, 46.3426724 ], + [ 7.1182352, 46.3426616 ], + [ 7.1182887, 46.3426258 ], + [ 7.1185654, 46.3413051 ], + [ 7.1185577, 46.341288 ], + [ 7.1185436, 46.341252 ], + [ 7.1185193, 46.3411961 ], + [ 7.1183452, 46.3409887 ], + [ 7.1182923, 46.3409157 ], + [ 7.1181815, 46.3405493 ], + [ 7.1181715, 46.3404809 ], + [ 7.1181946, 46.3403109 ], + [ 7.1181863, 46.340185 ], + [ 7.1183303, 46.3399794 ], + [ 7.1184739, 46.3398682 ], + [ 7.118534, 46.3397964 ], + [ 7.1186563, 46.3395494 ], + [ 7.1187196, 46.339394 ], + [ 7.1186865, 46.3392787 ], + [ 7.1185548, 46.3391371 ], + [ 7.1185129, 46.3389796 ], + [ 7.1184872, 46.3389345 ], + [ 7.1184628, 46.3388913 ], + [ 7.1183592, 46.3388289 ], + [ 7.1183425, 46.3387965 ], + [ 7.1183066, 46.338728 ], + [ 7.1182134, 46.3384462 ], + [ 7.1180912, 46.3382461 ], + [ 7.1179668, 46.3379768 ], + [ 7.1179561, 46.3378176 ], + [ 7.1180909, 46.3374185 ], + [ 7.1181134, 46.3373538 ], + [ 7.1183043, 46.3369118 ], + [ 7.118736, 46.3366152 ], + [ 7.1196102, 46.3363631 ], + [ 7.1196549, 46.3358289 ], + [ 7.1196735, 46.33444 ], + [ 7.1196814, 46.3337663 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00042", + "country" : "CHE", + "name" : [ + { + "text" : "Secteur Perche", + "lang" : "de-CH" + }, + { + "text" : "Secteur Perche", + "lang" : "fr-CH" + }, + { + "text" : "Secteur Perche", + "lang" : "it-CH" + }, + { + "text" : "Secteur Perche", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "startDateTime" : "2024-11-15T00:00:00+01:00", + "endDateTime" : "2025-05-31T00:00:00+02:00" + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Generaldirektion für Umwelt", + "lang" : "de-CH" + }, + { + "text" : "Direction générale de l'environnement", + "lang" : "fr-CH" + }, + { + "text" : "Direzione generale dell'Ambiente", + "lang" : "it-CH" + }, + { + "text" : "Environment Department", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.dge@vd.ch", + "phone" : "0041213164422", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.1939584, 46.2426364 ], + [ 6.1939114, 46.2422093 ], + [ 6.19408, 46.2422111 ], + [ 6.1940448, 46.2420488 ], + [ 6.1939156, 46.2420294 ], + [ 6.1938316, 46.2417315 ], + [ 6.1938339, 46.2414006 ], + [ 6.1935147, 46.2414131 ], + [ 6.193359, 46.2408536 ], + [ 6.1933505, 46.2408537 ], + [ 6.1935198, 46.2402772 ], + [ 6.1936736, 46.2397519 ], + [ 6.1931277, 46.2381084 ], + [ 6.1928378, 46.2377454 ], + [ 6.1926424, 46.2377881 ], + [ 6.1923214, 46.2376496 ], + [ 6.1922981, 46.2375324 ], + [ 6.1923261, 46.2374427 ], + [ 6.1925619, 46.2373373 ], + [ 6.1924623, 46.2371563 ], + [ 6.1925681, 46.2370675 ], + [ 6.1925739, 46.2368157 ], + [ 6.1924768, 46.2365267 ], + [ 6.1918421, 46.2359349 ], + [ 6.1915907, 46.2355901 ], + [ 6.1914098, 46.2350033 ], + [ 6.1913925, 46.234625199999996 ], + [ 6.1911483, 46.2339657 ], + [ 6.1903337, 46.232742 ], + [ 6.1898495, 46.2323768 ], + [ 6.1894689, 46.2320126 ], + [ 6.1889412, 46.231287 ], + [ 6.1887451, 46.2313568 ], + [ 6.1883045, 46.2307852 ], + [ 6.1874191, 46.2298306 ], + [ 6.1865382, 46.2286782 ], + [ 6.1861836, 46.2283144 ], + [ 6.1856721, 46.2280118 ], + [ 6.1851624, 46.2276282 ], + [ 6.1846296, 46.2271275 ], + [ 6.1840544, 46.2267793 ], + [ 6.1832014, 46.2255555 ], + [ 6.1830494, 46.2254009 ], + [ 6.1825996, 46.225234 ], + [ 6.1823462, 46.2249884 ], + [ 6.1826732, 46.2248571 ], + [ 6.1821929, 46.22433 ], + [ 6.1791523, 46.2201848 ], + [ 6.1789568, 46.2202276 ], + [ 6.1788304, 46.2200912 ], + [ 6.1787965, 46.2198839 ], + [ 6.1787072, 46.21982 ], + [ 6.1788637, 46.2197767 ], + [ 6.1764864, 46.2166553 ], + [ 6.1760959, 46.2161651 ], + [ 6.1758064, 46.215793 ], + [ 6.175582, 46.2154126 ], + [ 6.1753138, 46.2152387 ], + [ 6.1751471, 46.2151648 ], + [ 6.1749022, 46.2151081 ], + [ 6.1749998, 46.2148033 ], + [ 6.174677, 46.2147547 ], + [ 6.1741087, 46.2146764 ], + [ 6.1736187, 46.2145719 ], + [ 6.1731991, 46.2142253 ], + [ 6.1729333, 46.2145103 ], + [ 6.171967, 46.2142745 ], + [ 6.1713498, 46.2140696 ], + [ 6.1712622, 46.2139337 ], + [ 6.1724071, 46.2131818 ], + [ 6.1723834, 46.2130917 ], + [ 6.1731151, 46.2122903 ], + [ 6.1722048, 46.2118753 ], + [ 6.1708917, 46.2112734 ], + [ 6.1706706, 46.2115135 ], + [ 6.1658107, 46.2163808 ], + [ 6.1663204, 46.2169045 ], + [ 6.1670194, 46.2174058 ], + [ 6.1671058, 46.217468 ], + [ 6.1680204, 46.2179281 ], + [ 6.168556, 46.2181276 ], + [ 6.1691733, 46.2183325 ], + [ 6.1698193, 46.218518 ], + [ 6.1707467, 46.2187444 ], + [ 6.1707868, 46.2187945 ], + [ 6.1724903, 46.2210318 ], + [ 6.1725834, 46.2212901 ], + [ 6.1726409, 46.2213797 ], + [ 6.1727067, 46.2215614 ], + [ 6.1731675, 46.2222772 ], + [ 6.1733817, 46.2225257 ], + [ 6.1735082, 46.222662 ], + [ 6.1739266, 46.2230629 ], + [ 6.1740644, 46.2231617 ], + [ 6.1759689, 46.2257582 ], + [ 6.1762222, 46.2264585 ], + [ 6.1766831, 46.2271742 ], + [ 6.1770776, 46.2276069 ], + [ 6.1773311, 46.2278526 ], + [ 6.1775692, 46.2280691 ], + [ 6.17794, 46.2283348 ], + [ 6.1782207, 46.2287378 ], + [ 6.1783912, 46.2289652 ], + [ 6.1790238, 46.2296145 ], + [ 6.1797944, 46.2301686 ], + [ 6.1798367, 46.2301942 ], + [ 6.1799497, 46.2303002 ], + [ 6.1803988, 46.2306774 ], + [ 6.1809083, 46.231061 ], + [ 6.1811437, 46.2312181 ], + [ 6.1816942, 46.2319381 ], + [ 6.1819698, 46.2322651 ], + [ 6.1827133, 46.2330667 ], + [ 6.1830303, 46.2334778 ], + [ 6.1830815, 46.2335429 ], + [ 6.1837143, 46.2341924 ], + [ 6.1839932, 46.2343922 ], + [ 6.1842226, 46.2346534 ], + [ 6.1846032, 46.2350175 ], + [ 6.1848467, 46.2352243 ], + [ 6.184981, 46.2354256 ], + [ 6.185072, 46.2359443 ], + [ 6.185253, 46.2365311 ], + [ 6.1858076, 46.2376211 ], + [ 6.1858347, 46.2376578 ], + [ 6.185877, 46.238145 ], + [ 6.1859002, 46.2382622 ], + [ 6.1859210000000004, 46.2383595 ], + [ 6.186196, 46.23912 ], + [ 6.1866573, 46.2398359 ], + [ 6.1869632, 46.24015 ], + [ 6.1868689, 46.240783 ], + [ 6.1868963, 46.241049 ], + [ 6.1866367, 46.2413119 ], + [ 6.1858397, 46.2424217 ], + [ 6.1857444, 46.2426186 ], + [ 6.185408, 46.2439788 ], + [ 6.1854075, 46.2440025 ], + [ 6.1853926, 46.2440473 ], + [ 6.1851956, 46.2445269 ], + [ 6.1850792, 46.2453068 ], + [ 6.1850999, 46.2457438 ], + [ 6.1851866, 46.2464825 ], + [ 6.1852463, 46.2468275 ], + [ 6.1852529, 46.2468459 ], + [ 6.1853001, 46.247305 ], + [ 6.1855753, 46.2480656 ], + [ 6.1860365, 46.2487814 ], + [ 6.1860621, 46.2488132 ], + [ 6.1861335, 46.2489003 ], + [ 6.1862246, 46.2491524 ], + [ 6.1866858, 46.2498683 ], + [ 6.1868235, 46.2500097 ], + [ 6.1870592, 46.2505994 ], + [ 6.1871477, 46.2507523 ], + [ 6.187105, 46.2508668 ], + [ 6.1866948, 46.2516961 ], + [ 6.1865947, 46.2520999 ], + [ 6.1865019, 46.2527903 ], + [ 6.1865824, 46.2535724 ], + [ 6.1866994, 46.2539662 ], + [ 6.1868214, 46.2543005 ], + [ 6.1871406, 46.2549574 ], + [ 6.1873908, 46.255365 ], + [ 6.1877058, 46.2557926 ], + [ 6.1877253, 46.2559009 ], + [ 6.1877712, 46.2560171 ], + [ 6.1876708, 46.25669 ], + [ 6.1876524, 46.2574817 ], + [ 6.1877328, 46.2582637 ], + [ 6.1880077, 46.2590242 ], + [ 6.1884689999999996, 46.2597401 ], + [ 6.1889859, 46.2602874 ], + [ 6.1890769, 46.2603697 ], + [ 6.1891154, 46.2604761 ], + [ 6.1895766, 46.2611918 ], + [ 6.1898419, 46.2614642 ], + [ 6.1898594, 46.2616343 ], + [ 6.1901344, 46.2623948 ], + [ 6.1905956, 46.2631106 ], + [ 6.1907488, 46.2632678 ], + [ 6.1908917, 46.2635422 ], + [ 6.1912605, 46.2641189 ], + [ 6.1920789, 46.2651896 ], + [ 6.1926455, 46.2658046 ], + [ 6.1933444, 46.2664421 ], + [ 6.1946148, 46.2673175 ], + [ 6.1954097, 46.2677311 ], + [ 6.1959705, 46.2679926 ], + [ 6.1960534, 46.2680205 ], + [ 6.196548, 46.2682688 ], + [ 6.1970513, 46.2684573 ], + [ 6.1976049, 46.2686433 ], + [ 6.1981188, 46.2687973 ], + [ 6.1992061, 46.2690122 ], + [ 6.1998525, 46.2690586 ], + [ 6.1999929, 46.2691058 ], + [ 6.2010802, 46.2693207 ], + [ 6.2014328, 46.2693608 ], + [ 6.2017565, 46.2693913 ], + [ 6.2025284, 46.2694319 ], + [ 6.2025425, 46.2694312 ], + [ 6.203216, 46.2694652 ], + [ 6.2034851, 46.2695242 ], + [ 6.2041983, 46.26965 ], + [ 6.2045604, 46.2696989 ], + [ 6.2062755, 46.269732 ], + [ 6.2072635, 46.270347 ], + [ 6.2074418, 46.2704336 ], + [ 6.2075898, 46.2705974 ], + [ 6.2077947, 46.2708078 ], + [ 6.2078311, 46.2709179 ], + [ 6.2078914, 46.2710861 ], + [ 6.208014, 46.2714024 ], + [ 6.2081485, 46.2717066 ], + [ 6.2086104, 46.2724223 ], + [ 6.2091939, 46.273028 ], + [ 6.2094229, 46.2732284 ], + [ 6.2106761, 46.2740244 ], + [ 6.2107138, 46.2740826 ], + [ 6.2113474, 46.2747319 ], + [ 6.2113839, 46.2747629 ], + [ 6.2123697, 46.2755888 ], + [ 6.2135132, 46.276685 ], + [ 6.2136728, 46.2769586 ], + [ 6.2142861, 46.2778725 ], + [ 6.2144066, 46.2781369 ], + [ 6.2145568, 46.2784309 ], + [ 6.2147222, 46.2787216 ], + [ 6.2147604, 46.2790918 ], + [ 6.215036, 46.2798527 ], + [ 6.2154979, 46.2805688 ], + [ 6.2161317, 46.281218 ], + [ 6.2169188, 46.281781 ], + [ 6.2171241, 46.2818838 ], + [ 6.2171291, 46.2818909 ], + [ 6.217763, 46.28254 ], + [ 6.2180918, 46.2827993 ], + [ 6.2183252, 46.2829699 ], + [ 6.2191014, 46.2837639 ], + [ 6.2191189, 46.2837916 ], + [ 6.2195124, 46.284309 ], + [ 6.2199301, 46.2847813 ], + [ 6.2203072, 46.2851624 ], + [ 6.2205008, 46.285338 ], + [ 6.2205648, 46.2854094 ], + [ 6.2206299, 46.2855099 ], + [ 6.2206558, 46.2855818 ], + [ 6.221118, 46.2862975 ], + [ 6.2215829, 46.286796 ], + [ 6.2217101, 46.2869143 ], + [ 6.2219762, 46.2871407 ], + [ 6.2221946, 46.2874787 ], + [ 6.2228285, 46.2881278 ], + [ 6.2229047, 46.2881871 ], + [ 6.2229125, 46.2881961 ], + [ 6.2234257, 46.288701 ], + [ 6.2242129, 46.2892639 ], + [ 6.2251294, 46.2897235 ], + [ 6.2261471, 46.2900656 ], + [ 6.2262285, 46.2900867 ], + [ 6.2262814, 46.2901 ], + [ 6.2266185, 46.2902611 ], + [ 6.2273337, 46.2905578 ], + [ 6.2282377, 46.2908798 ], + [ 6.2294413, 46.2914329 ], + [ 6.2296485, 46.2915241 ], + [ 6.2299386, 46.2916468 ], + [ 6.2299496, 46.291664 ], + [ 6.2300727, 46.2918206 ], + [ 6.230393, 46.2923162 ], + [ 6.2306963, 46.2926316 ], + [ 6.2307727, 46.2928422 ], + [ 6.2308181, 46.2929305 ], + [ 6.2311647, 46.2935796 ], + [ 6.2312605, 46.2938484 ], + [ 6.2318775, 46.294942 ], + [ 6.23213, 46.2952596 ], + [ 6.232684, 46.2958438 ], + [ 6.2327571, 46.2959093 ], + [ 6.2328166, 46.2959738 ], + [ 6.2332043, 46.2965454 ], + [ 6.2336321, 46.2970787 ], + [ 6.2343548, 46.2978511 ], + [ 6.2347966, 46.2982683 ], + [ 6.2355226, 46.2988777 ], + [ 6.2357113, 46.2990774 ], + [ 6.2355545, 46.2994856 ], + [ 6.2353722, 46.3001675 ], + [ 6.2353633, 46.3002249 ], + [ 6.2352506, 46.3004771 ], + [ 6.2349658, 46.3017143 ], + [ 6.2346541, 46.3021599 ], + [ 6.2343444, 46.3029141 ], + [ 6.2342284, 46.3036941 ], + [ 6.2343096, 46.3044761 ], + [ 6.2343349, 46.3045774 ], + [ 6.2344307, 46.3049384 ], + [ 6.2346071, 46.3054019 ], + [ 6.2346815, 46.3055973 ], + [ 6.2351439, 46.3063128 ], + [ 6.2353176, 46.3064904 ], + [ 6.241515, 46.3043695 ], + [ 6.2418597, 46.3042209 ], + [ 6.2418119, 46.3041963 ], + [ 6.2417874, 46.3041331 ], + [ 6.2414597, 46.3042736 ], + [ 6.2410951, 46.3043237 ], + [ 6.240814, 46.3041228 ], + [ 6.2407181, 46.3037619 ], + [ 6.241357, 46.3030489 ], + [ 6.2413017, 46.3026164 ], + [ 6.2414398, 46.30224 ], + [ 6.2414494, 46.301808199999996 ], + [ 6.2417498, 46.3011366 ], + [ 6.2418257, 46.3006426 ], + [ 6.2423766, 46.2992088 ], + [ 6.2425505, 46.2989767 ], + [ 6.2426216, 46.2986986 ], + [ 6.2425277, 46.2982477 ], + [ 6.2421888, 46.2977223 ], + [ 6.2407556, 46.2962046 ], + [ 6.2397999, 46.2954028 ], + [ 6.2390771, 46.2946305 ], + [ 6.2385114, 46.2937967 ], + [ 6.2380678, 46.2933152 ], + [ 6.2378133, 46.2930876 ], + [ 6.2375607, 46.29277 ], + [ 6.2373774, 46.2922552 ], + [ 6.2369039, 46.2913685 ], + [ 6.2369143, 46.2909007 ], + [ 6.2366627, 46.2905382 ], + [ 6.2364471, 46.290311 ], + [ 6.2363419, 46.2903728 ], + [ 6.2360618, 46.2901268 ], + [ 6.2361557, 46.2899929 ], + [ 6.2358113, 46.2897193 ], + [ 6.2356472, 46.2895106 ], + [ 6.2357141, 46.2894214 ], + [ 6.2356297, 46.2891326 ], + [ 6.2352739, 46.2887869 ], + [ 6.2341843, 46.2881725 ], + [ 6.2330272, 46.2876833 ], + [ 6.2315241, 46.2869926 ], + [ 6.2303008, 46.2865567 ], + [ 6.229723, 46.2862807 ], + [ 6.2290154, 46.2860032 ], + [ 6.2284605, 46.2858623 ], + [ 6.2281188, 46.2854718 ], + [ 6.2278633, 46.2852891 ], + [ 6.2276408, 46.2847919 ], + [ 6.2269138, 46.2842262 ], + [ 6.2267867, 46.2841079 ], + [ 6.2269168, 46.2840913 ], + [ 6.2269837, 46.284002 ], + [ 6.2269218, 46.2838664 ], + [ 6.2264738, 46.2835917 ], + [ 6.2263497, 46.2833384 ], + [ 6.2258432, 46.2827751 ], + [ 6.2254616, 46.2824291 ], + [ 6.225044, 46.2819568 ], + [ 6.2247931, 46.2815672 ], + [ 6.2233975, 46.2801398 ], + [ 6.2227975, 46.2797015 ], + [ 6.2226099, 46.2793846 ], + [ 6.2217463, 46.2785477 ], + [ 6.2211662, 46.2783795 ], + [ 6.2212371, 46.2781103 ], + [ 6.2210915, 46.2776589 ], + [ 6.2205922, 46.2767808 ], + [ 6.2203448, 46.2762384 ], + [ 6.2195537, 46.2750601 ], + [ 6.2193054, 46.2745626 ], + [ 6.2175017, 46.2728336 ], + [ 6.2163810999999995, 46.2718949 ], + [ 6.2165801, 46.2716991 ], + [ 6.2162948, 46.271696 ], + [ 6.2160045, 46.271333 ], + [ 6.2155337, 46.270923 ], + [ 6.2152131, 46.2707576 ], + [ 6.2145067, 46.2704351 ], + [ 6.2142777, 46.2702347 ], + [ 6.2141551, 46.2699184 ], + [ 6.213888, 46.2691058 ], + [ 6.2136995, 46.2688339 ], + [ 6.2129641, 46.2680792 ], + [ 6.2125851, 46.2676252 ], + [ 6.2121786, 46.267243 ], + [ 6.2109851, 46.266663199999996 ], + [ 6.2103861, 46.2661889 ], + [ 6.210198, 46.2658989 ], + [ 6.2099443, 46.2656443 ], + [ 6.2096497, 46.2654791 ], + [ 6.2094306, 46.2654137 ], + [ 6.2088738, 46.2653627 ], + [ 6.2085257, 46.2652689 ], + [ 6.2085277, 46.265179 ], + [ 6.2084246, 46.2651509 ], + [ 6.2079427, 46.2652356 ], + [ 6.2064772, 46.2652196 ], + [ 6.2058011, 46.265284199999996 ], + [ 6.2054389, 46.2652353 ], + [ 6.2044449, 46.2650175 ], + [ 6.2028512, 46.2649371 ], + [ 6.2028532, 46.2648471 ], + [ 6.2026327, 46.2648447 ], + [ 6.2026307, 46.2649347 ], + [ 6.2023071, 46.2649041 ], + [ 6.2023351, 46.2648145 ], + [ 6.2021803, 46.2647678 ], + [ 6.2013388, 46.2646956 ], + [ 6.2010166, 46.2646021 ], + [ 6.200433, 46.2645957 ], + [ 6.1998794, 46.2644097 ], + [ 6.1999863, 46.2642759 ], + [ 6.1998856, 46.2641398 ], + [ 6.1995371, 46.264064 ], + [ 6.199302, 46.2641334 ], + [ 6.1985071, 46.2637198 ], + [ 6.1978082, 46.2630824 ], + [ 6.1969899, 46.2620116 ], + [ 6.1965178, 46.2611067 ], + [ 6.1962627, 46.260924 ], + [ 6.1965634, 46.2608193 ], + [ 6.1965297, 46.260594 ], + [ 6.1960888, 46.2600223 ], + [ 6.195815, 46.2595244 ], + [ 6.1955255, 46.2591434 ], + [ 6.1952434, 46.2590053 ], + [ 6.195441, 46.2588725 ], + [ 6.1953799, 46.2587099 ], + [ 6.195191, 46.2584648 ], + [ 6.1948088, 46.2581637 ], + [ 6.1941356, 46.2575535 ], + [ 6.1941539, 46.2567619 ], + [ 6.1944105, 46.2568817 ], + [ 6.1944032, 46.2571965 ], + [ 6.1943058, 46.2574834 ], + [ 6.1943928, 46.2576463 ], + [ 6.1945583, 46.2577831 ], + [ 6.1947538, 46.2577402 ], + [ 6.1946948, 46.2574877 ], + [ 6.1946822, 46.2563449 ], + [ 6.1945262, 46.2563612 ], + [ 6.1944759, 46.2568555 ], + [ 6.1942211, 46.2566547 ], + [ 6.1943286, 46.256494 ], + [ 6.1944914, 46.2561808 ], + [ 6.1945022, 46.2557131 ], + [ 6.1944145, 46.2555771 ], + [ 6.1942855, 46.2555487 ], + [ 6.1941603, 46.2553494 ], + [ 6.194011, 46.254511 ], + [ 6.1937362, 46.2540401 ], + [ 6.193357, 46.2536041 ], + [ 6.1931067, 46.2531965 ], + [ 6.1929845, 46.2528622 ], + [ 6.1930845, 46.2524584 ], + [ 6.1933251, 46.2521462 ], + [ 6.1936015, 46.2514025 ], + [ 6.1938612, 46.2513873 ], + [ 6.1939541, 46.2512984 ], + [ 6.1938923, 46.2511627 ], + [ 6.1937637, 46.2511163 ], + [ 6.1938726, 46.2508926 ], + [ 6.1938865, 46.250281 ], + [ 6.1935363, 46.2497193 ], + [ 6.1930746, 46.2489224 ], + [ 6.1928977, 46.2481557 ], + [ 6.1927721, 46.2479743 ], + [ 6.192518, 46.2477466 ], + [ 6.1923509, 46.2476818 ], + [ 6.1923525, 46.2476098 ], + [ 6.1926522, 46.2475502 ], + [ 6.1924038, 46.2470706 ], + [ 6.1923721, 46.2467552 ], + [ 6.1921132, 46.2467344 ], + [ 6.1918276, 46.2467492 ], + [ 6.1917014, 46.2465949 ], + [ 6.1917305, 46.2464602 ], + [ 6.1919266, 46.2463904 ], + [ 6.1921604, 46.246375 ], + [ 6.1920982, 46.2462574 ], + [ 6.1918, 46.2462541 ], + [ 6.1916476, 46.2461174 ], + [ 6.1915608, 46.2453787 ], + [ 6.1916272, 46.2453075 ], + [ 6.1916275, 46.2453067 ], + [ 6.191636, 46.2453061 ], + [ 6.1917422, 46.2449835 ], + [ 6.1918869, 46.2445441 ], + [ 6.1919743, 46.2442332 ], + [ 6.1922127, 46.2442228 ], + [ 6.1924699, 46.2442169 ], + [ 6.1925711, 46.2441746 ], + [ 6.1926992, 46.2439646 ], + [ 6.1927473, 46.2439215 ], + [ 6.1929057, 46.2437999 ], + [ 6.1931903, 46.2436899 ], + [ 6.1934178, 46.2436098 ], + [ 6.193582, 46.2435594 ], + [ 6.1936731, 46.2434126 ], + [ 6.1937267, 46.2432433 ], + [ 6.1937672, 46.2431354 ], + [ 6.1938102, 46.2430388 ], + [ 6.1939131, 46.2428891 ], + [ 6.1938976, 46.2428119 ], + [ 6.1939584, 46.2426364 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "WZV0029", + "country" : "CHE", + "name" : [ + { + "text" : "Wasser- und Zugvogelreservat Rive gauche du Petit-Lac", + "lang" : "de-CH" + }, + { + "text" : "Réserve d'oiseaux d'eau et de migrateurs Rive gauche du Petit-Lac", + "lang" : "fr-CH" + }, + { + "text" : "Riserva di uccelli acquatici e migratori Rive gauche du Petit-Lac", + "lang" : "it-CH" + }, + { + "text" : "Water Bird and Migratory Bird Reserves Rive gauche du Petit-Lac", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7930001, 47.424642 ], + [ 7.7926848, 47.424694 ], + [ 7.7921868, 47.424815 ], + [ 7.7919818, 47.4248621 ], + [ 7.7918499, 47.4248824 ], + [ 7.7915079, 47.4249299 ], + [ 7.7906724, 47.4250386 ], + [ 7.7903596, 47.4250595 ], + [ 7.7899439, 47.4250541 ], + [ 7.7895574, 47.4250221 ], + [ 7.7892196, 47.4249667 ], + [ 7.7888718, 47.4248682 ], + [ 7.7885922, 47.4247396 ], + [ 7.7883696, 47.4246379 ], + [ 7.788387, 47.4248738 ], + [ 7.7883952, 47.4249862 ], + [ 7.7887207, 47.4253294 ], + [ 7.7889408, 47.4255704 ], + [ 7.7891078, 47.425748 ], + [ 7.7894089, 47.4257583 ], + [ 7.7896208, 47.4257655 ], + [ 7.7898764, 47.4257876 ], + [ 7.7902922, 47.4258236 ], + [ 7.7905761, 47.4258482 ], + [ 7.7908517, 47.425872 ], + [ 7.7910924, 47.4259237 ], + [ 7.7914356, 47.4259983 ], + [ 7.7917826, 47.4260789 ], + [ 7.7921698, 47.4261518 ], + [ 7.7923602, 47.4261517 ], + [ 7.7925926, 47.4261295 ], + [ 7.7927291, 47.4261164 ], + [ 7.7931203, 47.4259745 ], + [ 7.7931787, 47.4259367 ], + [ 7.7931981, 47.4258842 ], + [ 7.7931679, 47.4256545 ], + [ 7.7931067, 47.4253251 ], + [ 7.7929905999999995, 47.4250315 ], + [ 7.7929636, 47.4249632 ], + [ 7.7929454, 47.4248318 ], + [ 7.7930001, 47.424642 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr127", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Dangeren", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Dangeren", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Dangeren", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Dangeren", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.2863336, 46.9724416 ], + [ 7.2863286, 46.9723004 ], + [ 7.2863128, 46.9721595 ], + [ 7.2862863, 46.9720194 ], + [ 7.2862491, 46.9718805 ], + [ 7.2862013, 46.971743 ], + [ 7.2861431, 46.9716075 ], + [ 7.2860745, 46.9714742 ], + [ 7.2859959, 46.9713436 ], + [ 7.2859074, 46.9712159 ], + [ 7.2858093, 46.9710917 ], + [ 7.2857018, 46.970971 ], + [ 7.2855852, 46.9708545 ], + [ 7.2854599, 46.9707422 ], + [ 7.2853262, 46.9706346 ], + [ 7.2851844, 46.9705319 ], + [ 7.285035, 46.9704345 ], + [ 7.2848783, 46.9703425 ], + [ 7.2847148, 46.9702563 ], + [ 7.284545, 46.970176 ], + [ 7.2843692, 46.970102 ], + [ 7.284188, 46.9700343 ], + [ 7.2840019, 46.9699732 ], + [ 7.2838114, 46.9699189 ], + [ 7.283617, 46.969871499999996 ], + [ 7.2834192, 46.9698311 ], + [ 7.2832186, 46.9697978 ], + [ 7.2830157, 46.9697718 ], + [ 7.2828112, 46.9697531 ], + [ 7.2826054, 46.9697417 ], + [ 7.2823991, 46.9697378 ], + [ 7.2821928, 46.9697412 ], + [ 7.281987, 46.969752 ], + [ 7.2817823, 46.9697701 ], + [ 7.2815793, 46.9697956 ], + [ 7.2813785, 46.9698283 ], + [ 7.2811805, 46.9698682 ], + [ 7.2809859, 46.969915 ], + [ 7.280795, 46.9699688 ], + [ 7.2806085, 46.9700294 ], + [ 7.2804269999999995, 46.9700966 ], + [ 7.2802508, 46.9701701 ], + [ 7.2800804, 46.9702499 ], + [ 7.2799164, 46.9703357 ], + [ 7.2797592, 46.9704272 ], + [ 7.2796092, 46.9705243 ], + [ 7.2794669, 46.9706266 ], + [ 7.2793325, 46.9707338 ], + [ 7.2792065, 46.9708457 ], + [ 7.2790893, 46.970962 ], + [ 7.278981, 46.9710823 ], + [ 7.2788822, 46.9712063 ], + [ 7.278793, 46.9713337 ], + [ 7.2787136, 46.9714641 ], + [ 7.2786443, 46.9715972 ], + [ 7.2785853, 46.9717326 ], + [ 7.2785367, 46.9718699 ], + [ 7.2784986, 46.9720087 ], + [ 7.2784713, 46.9721488 ], + [ 7.2784547, 46.9722896 ], + [ 7.2784488, 46.9724308 ], + [ 7.2784538, 46.9725721 ], + [ 7.2784696, 46.9727129 ], + [ 7.2784961, 46.972853 ], + [ 7.2785333, 46.972992 ], + [ 7.2785811, 46.9731294 ], + [ 7.2786393, 46.973265 ], + [ 7.2787078, 46.9733982 ], + [ 7.2787863999999995, 46.9735289 ], + [ 7.2788749, 46.9736565 ], + [ 7.278973, 46.9737808 ], + [ 7.2790805, 46.9739014 ], + [ 7.279197, 46.974018 ], + [ 7.2793223, 46.9741303 ], + [ 7.2794561, 46.9742379 ], + [ 7.2795978, 46.9743406 ], + [ 7.2797473, 46.974438 ], + [ 7.279904, 46.97453 ], + [ 7.2800675, 46.9746162 ], + [ 7.2802373, 46.9746965 ], + [ 7.2804131, 46.9747706 ], + [ 7.2805943, 46.9748382 ], + [ 7.2807804, 46.9748993 ], + [ 7.280971, 46.9749536 ], + [ 7.2811654, 46.9750011 ], + [ 7.2813632, 46.9750415 ], + [ 7.2815638, 46.9750747 ], + [ 7.2817667, 46.9751008 ], + [ 7.2819712, 46.9751195 ], + [ 7.282177, 46.9751308 ], + [ 7.2823833, 46.9751348 ], + [ 7.2825897, 46.9751314 ], + [ 7.2827955, 46.9751206 ], + [ 7.2830002, 46.9751025 ], + [ 7.2832032, 46.975077 ], + [ 7.283404, 46.9750443 ], + [ 7.283602, 46.9750044 ], + [ 7.2837967, 46.9749575 ], + [ 7.2839876, 46.9749037 ], + [ 7.2841740999999995, 46.9748431 ], + [ 7.2843557, 46.974776 ], + [ 7.2845319, 46.9747024 ], + [ 7.2847022, 46.974622600000004 ], + [ 7.2848662, 46.9745368 ], + [ 7.2850234, 46.9744453 ], + [ 7.2851734, 46.9743482 ], + [ 7.2853158, 46.9742459 ], + [ 7.2854502, 46.9741387 ], + [ 7.2855761, 46.9740268 ], + [ 7.2856933999999995, 46.9739105 ], + [ 7.2858016, 46.9737902 ], + [ 7.2859004, 46.9736662 ], + [ 7.2859897, 46.9735388 ], + [ 7.286069, 46.9734083 ], + [ 7.2861383, 46.9732753 ], + [ 7.2861972999999995, 46.9731399 ], + [ 7.2862459, 46.9730026 ], + [ 7.2862839, 46.9728637 ], + [ 7.2863112, 46.9727237 ], + [ 7.2863278, 46.9725829 ], + [ 7.2863336, 46.9724416 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0076", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Mühleberg", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Mühleberg", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Mühleberg", + "lang" : "it-CH" + }, + { + "text" : "Substation Mühleberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5407321, 47.5454066 ], + [ 7.5392528, 47.5447334 ], + [ 7.5391848, 47.5447912 ], + [ 7.5406594, 47.5454622 ], + [ 7.5407321, 47.5454066 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns265", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Allschwilerwald", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Allschwilerwald", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Allschwilerwald", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Allschwilerwald", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.007367, 47.1741666 ], + [ 8.0073601, 47.1740254 ], + [ 8.0073424, 47.1738847 ], + [ 8.0073138, 47.1737447 ], + [ 8.0072746, 47.173606 ], + [ 8.0072248, 47.1734689 ], + [ 8.0071645, 47.1733337 ], + [ 8.007094, 47.1732009 ], + [ 8.0070133, 47.1730708 ], + [ 8.0069227, 47.1729437 ], + [ 8.0068226, 47.17282 ], + [ 8.0067131, 47.1727001 ], + [ 8.0065945, 47.1725843 ], + [ 8.0064672, 47.1724728 ], + [ 8.0063315, 47.172366 ], + [ 8.0061878, 47.1722643 ], + [ 8.0060365, 47.1721678 ], + [ 8.005878, 47.1720768 ], + [ 8.0057127, 47.1719916 ], + [ 8.0055412, 47.1719124 ], + [ 8.0053638, 47.1718395 ], + [ 8.005181, 47.171773 ], + [ 8.0049934, 47.1717131 ], + [ 8.0048014, 47.17166 ], + [ 8.0046056, 47.1716138 ], + [ 8.0044066, 47.1715746 ], + [ 8.0042048, 47.1715426 ], + [ 8.0040008, 47.1715179 ], + [ 8.0037952, 47.1715005 ], + [ 8.0035886, 47.1714904 ], + [ 8.0033814, 47.1714877 ], + [ 8.0031744, 47.1714924 ], + [ 8.002968, 47.1715045 ], + [ 8.0027628, 47.171524 ], + [ 8.0025594, 47.1715507 ], + [ 8.0023583, 47.1715847 ], + [ 8.0021601, 47.1716258 ], + [ 8.0019653, 47.1716739 ], + [ 8.0017745, 47.1717289 ], + [ 8.0015881, 47.1717906 ], + [ 8.0014068, 47.1718589 ], + [ 8.0012309, 47.1719336 ], + [ 8.001061, 47.1720144 ], + [ 8.0008975, 47.1721013 ], + [ 8.000741, 47.1721938 ], + [ 8.0005917, 47.172291799999996 ], + [ 8.0004502, 47.1723949 ], + [ 8.0003168, 47.172503 ], + [ 8.0001918, 47.1726157 ], + [ 8.0000757, 47.1727327 ], + [ 7.9999687, 47.1728537 ], + [ 7.9998712, 47.1729783 ], + [ 7.9997833, 47.1731063 ], + [ 7.9997054, 47.1732372 ], + [ 7.9996376, 47.1733707 ], + [ 7.9995802, 47.1735064 ], + [ 7.9995332999999995, 47.173644 ], + [ 7.999497, 47.1737831 ], + [ 7.9994714, 47.1739233 ], + [ 7.9994566, 47.1740642 ], + [ 7.9994527, 47.1742055 ], + [ 7.9994596, 47.1743467 ], + [ 7.9994773, 47.1744874 ], + [ 7.9995058, 47.1746274 ], + [ 7.9995449999999995, 47.1747661 ], + [ 7.9995948, 47.1749032 ], + [ 7.9996551, 47.1750384 ], + [ 7.9997256, 47.1751712 ], + [ 7.9998062999999995, 47.1753013 ], + [ 7.9998968, 47.1754284 ], + [ 7.9999969, 47.1755521 ], + [ 8.0001065, 47.175672 ], + [ 8.000225, 47.1757879 ], + [ 8.0003523, 47.1758993 ], + [ 8.000488, 47.1760061 ], + [ 8.0006317, 47.1761079 ], + [ 8.000783, 47.1762044 ], + [ 8.0009415, 47.1762954 ], + [ 8.0011068, 47.1763806 ], + [ 8.0012783, 47.1764598 ], + [ 8.0014558, 47.1765327 ], + [ 8.0016386, 47.1765992 ], + [ 8.0018262, 47.1766591 ], + [ 8.0020182, 47.1767122 ], + [ 8.002214, 47.1767585 ], + [ 8.002413, 47.1767976 ], + [ 8.0026148, 47.1768296 ], + [ 8.0028188, 47.1768543 ], + [ 8.0030244, 47.1768718 ], + [ 8.0032311, 47.1768818 ], + [ 8.0034382, 47.1768845 ], + [ 8.0036453, 47.1768798 ], + [ 8.0038518, 47.1768677 ], + [ 8.004057, 47.1768483 ], + [ 8.0042604, 47.1768215 ], + [ 8.0044615, 47.1767875 ], + [ 8.0046598, 47.1767464 ], + [ 8.0048546, 47.1766983 ], + [ 8.0050454, 47.1766433 ], + [ 8.0052318, 47.1765816 ], + [ 8.0054131, 47.1765133 ], + [ 8.005589, 47.1764386 ], + [ 8.0057589, 47.1763577 ], + [ 8.0059224, 47.1762709 ], + [ 8.0060789, 47.1761784 ], + [ 8.0062282, 47.1760804 ], + [ 8.0063697, 47.1759772 ], + [ 8.0065031, 47.1758691 ], + [ 8.0066281, 47.1757564 ], + [ 8.0067442, 47.1756394 ], + [ 8.0068511, 47.1755184 ], + [ 8.0069487, 47.1753938 ], + [ 8.0070365, 47.1752658 ], + [ 8.0071144, 47.1751349 ], + [ 8.0071822, 47.1750014 ], + [ 8.0072396, 47.1748657 ], + [ 8.0072865, 47.1747281 ], + [ 8.0073228, 47.174589 ], + [ 8.0073483, 47.1744488 ], + [ 8.0073631, 47.1743079 ], + [ 8.007367, 47.1741666 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "WAW0001", + "country" : "CHE", + "name" : [ + { + "text" : "Justizvollzugsanstalt Wauwilermoos", + "lang" : "de-CH" + }, + { + "text" : "Justizvollzugsanstalt Wauwilermoos", + "lang" : "fr-CH" + }, + { + "text" : "Justizvollzugsanstalt Wauwilermoos", + "lang" : "it-CH" + }, + { + "text" : "Justizvollzugsanstalt Wauwilermoos", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Luzerner Polizei", + "lang" : "de-CH" + }, + { + "text" : "Police de Lucen", + "lang" : "fr-CH" + }, + { + "text" : "Polizia di Lucerna", + "lang" : "it-CH" + }, + { + "text" : "Lucerne Police", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Planung und Einsatz", + "lang" : "de-CH" + }, + { + "text" : "Planification et engagement", + "lang" : "fr-CH" + }, + { + "text" : "Planificatione e impiego", + "lang" : "it-CH" + }, + { + "text" : "Execution and deployment", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Franz Baumgartner", + "lang" : "de-CH" + }, + { + "text" : "Franz Baumgartner", + "lang" : "fr-CH" + }, + { + "text" : "Franz Baumgartner", + "lang" : "it-CH" + }, + { + "text" : "Franz Baumgartner", + "lang" : "en-GB" + } + ], + "siteURL" : "https://polizei.lu.ch/", + "email" : "einsatzplanung.polizei@lu.ch", + "phone" : "0041412488489", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8145445, 47.4010982 ], + [ 7.814607, 47.401211 ], + [ 7.8146064, 47.401225 ], + [ 7.8146089, 47.4012381 ], + [ 7.8146097999999995, 47.4012513 ], + [ 7.8146091, 47.4012644 ], + [ 7.8146029, 47.4012904 ], + [ 7.8145912, 47.4013167 ], + [ 7.8145768, 47.4013425 ], + [ 7.81456, 47.4013675 ], + [ 7.8145381, 47.4014016 ], + [ 7.8145101, 47.4014333 ], + [ 7.814473, 47.401460900000004 ], + [ 7.8143957, 47.4015211 ], + [ 7.8143765, 47.4015388 ], + [ 7.8143594, 47.4015574 ], + [ 7.8141268, 47.401703499999996 ], + [ 7.814072, 47.401733899999996 ], + [ 7.8140308, 47.4017608 ], + [ 7.8139936, 47.4017903 ], + [ 7.8139607, 47.4018221 ], + [ 7.8139323, 47.4018558 ], + [ 7.8139088, 47.4018912 ], + [ 7.813897, 47.4019146 ], + [ 7.8138883, 47.4019387 ], + [ 7.8138829, 47.4019632 ], + [ 7.8138816, 47.4019781 ], + [ 7.814116, 47.4020482 ], + [ 7.8145064, 47.4021768 ], + [ 7.8162933, 47.4021565 ], + [ 7.8163771, 47.4022721 ], + [ 7.8164415, 47.4023281 ], + [ 7.8165364, 47.4024103 ], + [ 7.816798, 47.4025282 ], + [ 7.817031, 47.4025842 ], + [ 7.8172059, 47.4026949 ], + [ 7.8174356, 47.4026503 ], + [ 7.8175175, 47.4026694 ], + [ 7.8175998, 47.4026877 ], + [ 7.8176825999999995, 47.4027051 ], + [ 7.8180333, 47.4027544 ], + [ 7.8181028999999995, 47.4027627 ], + [ 7.8182388, 47.4028018 ], + [ 7.8183665, 47.4028439 ], + [ 7.8185781, 47.402884 ], + [ 7.8186301, 47.4029001 ], + [ 7.8190195, 47.4029278 ], + [ 7.8192364, 47.402975 ], + [ 7.8196034, 47.4030347 ], + [ 7.8200082, 47.4030779 ], + [ 7.8201669, 47.4031076 ], + [ 7.8207135999999995, 47.4031402 ], + [ 7.8212804, 47.4031628 ], + [ 7.8221229, 47.4032617 ], + [ 7.8230165, 47.4032489 ], + [ 7.8235431, 47.4031383 ], + [ 7.8240504, 47.4030069 ], + [ 7.8228297, 47.4019077 ], + [ 7.8227712, 47.4018637 ], + [ 7.8225062, 47.4015978 ], + [ 7.8223537, 47.4015513 ], + [ 7.8218288, 47.4007763 ], + [ 7.8216938, 47.4005863 ], + [ 7.8214589, 47.4006496 ], + [ 7.8212006, 47.40078 ], + [ 7.8208906, 47.4009923 ], + [ 7.8207458, 47.4010902 ], + [ 7.8207839, 47.4008277 ], + [ 7.820888, 47.4005943 ], + [ 7.8210673, 47.4003487 ], + [ 7.8214177, 47.3999935 ], + [ 7.8213695, 47.3999692 ], + [ 7.8208605, 47.4000456 ], + [ 7.8202353, 47.4001386 ], + [ 7.8196538, 47.4002321 ], + [ 7.8192628, 47.4002665 ], + [ 7.8190436, 47.4003604 ], + [ 7.8188151999999995, 47.4000799 ], + [ 7.8182849, 47.3996843 ], + [ 7.818062, 47.3994171 ], + [ 7.8177683, 47.3986506 ], + [ 7.8179649, 47.3986264 ], + [ 7.8194034, 47.3989217 ], + [ 7.8197612, 47.399095 ], + [ 7.8202201, 47.399099 ], + [ 7.820631, 47.399041 ], + [ 7.8207281, 47.3987312 ], + [ 7.8204719, 47.3983488 ], + [ 7.8203571, 47.3981129 ], + [ 7.8202997, 47.3979579 ], + [ 7.8202342, 47.3977876 ], + [ 7.8202369, 47.3977882 ], + [ 7.8203395, 47.3978167 ], + [ 7.8204425, 47.3978085 ], + [ 7.8205033, 47.3977969 ], + [ 7.8205377, 47.3977902 ], + [ 7.8205903, 47.3977854 ], + [ 7.8207076, 47.3977801 ], + [ 7.8207701, 47.3977774 ], + [ 7.8207957, 47.3977791 ], + [ 7.8208344, 47.3977876 ], + [ 7.8208582, 47.397801 ], + [ 7.820921, 47.3978328 ], + [ 7.8209872, 47.3978458 ], + [ 7.8211876, 47.3978787 ], + [ 7.8213089, 47.3978939 ], + [ 7.8213612999999995, 47.3979095 ], + [ 7.8214184, 47.3979391 ], + [ 7.8215366, 47.3979821 ], + [ 7.8216385, 47.3980219 ], + [ 7.8216522, 47.3980302 ], + [ 7.8217552, 47.3980479 ], + [ 7.8218744000000004, 47.3980616 ], + [ 7.8219797, 47.3980749 ], + [ 7.8220434999999995, 47.3980871 ], + [ 7.8221183, 47.398119 ], + [ 7.8221652, 47.3981509 ], + [ 7.8222168, 47.3981658 ], + [ 7.8222558, 47.3981688 ], + [ 7.8223076, 47.3981579 ], + [ 7.8223718, 47.3981501 ], + [ 7.8225325, 47.3981956 ], + [ 7.8226256, 47.3982039 ], + [ 7.8226848, 47.3982267 ], + [ 7.82278, 47.3982278 ], + [ 7.8228055, 47.3982387 ], + [ 7.822841, 47.3982473 ], + [ 7.8229256, 47.3982773 ], + [ 7.8229733, 47.3982826 ], + [ 7.8230315, 47.3982648 ], + [ 7.8230389, 47.398261 ], + [ 7.8231334, 47.3982441 ], + [ 7.8231467, 47.3982382 ], + [ 7.823183, 47.3982613 ], + [ 7.8232456, 47.3983083 ], + [ 7.8233649, 47.3983527 ], + [ 7.8235306, 47.3983604 ], + [ 7.8236367, 47.398376 ], + [ 7.8236747, 47.3983864 ], + [ 7.8237665, 47.3984236 ], + [ 7.8239849, 47.3984276 ], + [ 7.8240861, 47.3983956 ], + [ 7.8244713, 47.3983179 ], + [ 7.8249569, 47.39822 ], + [ 7.8254087, 47.3981636 ], + [ 7.8257367, 47.3981233 ], + [ 7.8255403999999995, 47.3981193 ], + [ 7.8254582, 47.3981113 ], + [ 7.8253457, 47.3980704 ], + [ 7.8252248, 47.3980801 ], + [ 7.8252353, 47.3979315 ], + [ 7.8252247, 47.3978322 ], + [ 7.8251941, 47.3977487 ], + [ 7.8251289, 47.3976995 ], + [ 7.8248873, 47.3977898 ], + [ 7.8242638, 47.3981546 ], + [ 7.8237552, 47.3980766 ], + [ 7.8232707, 47.3979534 ], + [ 7.8229282, 47.3976721 ], + [ 7.8228735, 47.3975032 ], + [ 7.8228813, 47.3974206 ], + [ 7.822775, 47.3973748 ], + [ 7.8223895, 47.3972567 ], + [ 7.8221915, 47.3971033 ], + [ 7.8218694, 47.3972294 ], + [ 7.821785, 47.397055 ], + [ 7.8220134, 47.3968227 ], + [ 7.8222214999999995, 47.3966127 ], + [ 7.8223533, 47.3964793 ], + [ 7.8224553, 47.3963581 ], + [ 7.8226023, 47.3961825 ], + [ 7.822797, 47.3960537 ], + [ 7.8185322, 47.396747 ], + [ 7.8184578, 47.3967591 ], + [ 7.8183826, 47.396582 ], + [ 7.8181055, 47.3964821 ], + [ 7.8179074, 47.3963046 ], + [ 7.8177159, 47.3962983 ], + [ 7.8177705, 47.3964513 ], + [ 7.8176615, 47.3964627 ], + [ 7.8176341, 47.3964217 ], + [ 7.8176181, 47.3962482 ], + [ 7.8173252, 47.3965029 ], + [ 7.817303, 47.396523 ], + [ 7.8172027, 47.3964742 ], + [ 7.8170681, 47.3964526 ], + [ 7.8169535, 47.3963536 ], + [ 7.8169096, 47.3963333 ], + [ 7.8168538, 47.396327 ], + [ 7.8167226, 47.3963015 ], + [ 7.8166126, 47.3962511 ], + [ 7.8165161, 47.3962028 ], + [ 7.8164288, 47.3961759 ], + [ 7.8164564, 47.3962664 ], + [ 7.8168885, 47.3963949 ], + [ 7.8169963, 47.3964578 ], + [ 7.8174307, 47.3966414 ], + [ 7.8178657, 47.3968001 ], + [ 7.8176509, 47.396994 ], + [ 7.8175795, 47.3971011 ], + [ 7.8175612999999995, 47.3971284 ], + [ 7.8173001, 47.3969332 ], + [ 7.8172827, 47.3969253 ], + [ 7.8172644, 47.3969185 ], + [ 7.8172453, 47.3969127 ], + [ 7.8171418, 47.3968881 ], + [ 7.8171062, 47.3968845 ], + [ 7.8170874, 47.3968944 ], + [ 7.8170775, 47.396908 ], + [ 7.8170808, 47.3969239 ], + [ 7.8171033, 47.3969442 ], + [ 7.8171455, 47.3970066 ], + [ 7.8171491, 47.3970153 ], + [ 7.8171517, 47.3970243 ], + [ 7.8171537, 47.3970424 ], + [ 7.8171535, 47.3970605 ], + [ 7.8171472, 47.3970789 ], + [ 7.8171512, 47.3971082 ], + [ 7.8171381, 47.3971181 ], + [ 7.8171152, 47.397143 ], + [ 7.8170861, 47.3971647 ], + [ 7.8170632, 47.3971755 ], + [ 7.8170456, 47.397189 ], + [ 7.8170190999999996, 47.3971968 ], + [ 7.8170035, 47.3972014 ], + [ 7.8169875, 47.3972051 ], + [ 7.816971, 47.3972079 ], + [ 7.8169542, 47.3972097 ], + [ 7.8169372, 47.3972106 ], + [ 7.8169033, 47.3972093 ], + [ 7.8168645, 47.3972032 ], + [ 7.8168261999999995, 47.3971955 ], + [ 7.8167888, 47.3971861 ], + [ 7.8167652, 47.397178 ], + [ 7.8167419, 47.3971694 ], + [ 7.8167067, 47.3971555 ], + [ 7.8166836, 47.3971452 ], + [ 7.8166615, 47.3971339 ], + [ 7.8166404, 47.3971217 ], + [ 7.8166124, 47.3971067 ], + [ 7.8165838999999995, 47.3970922 ], + [ 7.8165548, 47.3970782 ], + [ 7.816532, 47.3970687 ], + [ 7.8165018, 47.3970626 ], + [ 7.8162793, 47.3970567 ], + [ 7.8158178, 47.3975087 ], + [ 7.8157566, 47.3976558 ], + [ 7.8158454, 47.3981672 ], + [ 7.8153597999999995, 47.3982666 ], + [ 7.814911, 47.3984494 ], + [ 7.8147002, 47.3986226 ], + [ 7.814481, 47.3991155 ], + [ 7.8141952, 47.3996381 ], + [ 7.8142022, 47.3999501 ], + [ 7.814418, 47.4001853 ], + [ 7.8145676, 47.4005939 ], + [ 7.8145746, 47.4006338 ], + [ 7.8145797, 47.400667 ], + [ 7.8145805, 47.4007003 ], + [ 7.8145772000000004, 47.4007335 ], + [ 7.8145695, 47.4007664 ], + [ 7.8145578, 47.4007987 ], + [ 7.8145483, 47.4008166 ], + [ 7.8145386, 47.4008344 ], + [ 7.8145286, 47.4008521 ], + [ 7.8144979, 47.4009046 ], + [ 7.81449, 47.4009192 ], + [ 7.8144839, 47.4009343 ], + [ 7.8144797, 47.4009496 ], + [ 7.814482, 47.4009661 ], + [ 7.8144769, 47.4009759 ], + [ 7.8144767, 47.4009871 ], + [ 7.8144782, 47.4009981 ], + [ 7.8144811, 47.401009 ], + [ 7.8144854, 47.4010197 ], + [ 7.8144908, 47.4010301 ], + [ 7.8144975, 47.4010402 ], + [ 7.8145055, 47.4010498 ], + [ 7.8145445, 47.4010982 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns226", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Wasserfalle - Roti Flue", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Wasserfalle - Roti Flue", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Wasserfalle - Roti Flue", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Wasserfalle - Roti Flue", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7405199, 47.4625124 ], + [ 7.7406274, 47.4621529 ], + [ 7.7408429, 47.4618644 ], + [ 7.7414366, 47.4619906 ], + [ 7.7416276, 47.4620328 ], + [ 7.7419886, 47.4621124 ], + [ 7.7425222, 47.4621805 ], + [ 7.742841, 47.4623103 ], + [ 7.7429496, 47.462309 ], + [ 7.7429613, 47.4621262 ], + [ 7.7430075, 47.4619368 ], + [ 7.7430733, 47.461805 ], + [ 7.7431481, 47.4616058 ], + [ 7.7432507, 47.4613766 ], + [ 7.7433684, 47.4612122 ], + [ 7.7435161, 47.4609704 ], + [ 7.7437563, 47.4606464 ], + [ 7.7443231, 47.4602019 ], + [ 7.744578, 47.46009 ], + [ 7.7449923, 47.459947 ], + [ 7.7451443, 47.459858 ], + [ 7.7451806, 47.4597511 ], + [ 7.7452572, 47.4596258 ], + [ 7.7455490000000005, 47.4593363 ], + [ 7.7457071, 47.4592208 ], + [ 7.7460546, 47.4590038 ], + [ 7.7463186, 47.4587972 ], + [ 7.7466283, 47.4585474 ], + [ 7.7468883, 47.4583307 ], + [ 7.7471924, 47.4581571 ], + [ 7.7474039, 47.4580822 ], + [ 7.747887, 47.4579552 ], + [ 7.7479369, 47.4579034 ], + [ 7.7479207, 47.4578416 ], + [ 7.7478447, 47.4578073 ], + [ 7.7476926, 47.4577588 ], + [ 7.7475678, 47.4577325 ], + [ 7.7474406, 47.4577062 ], + [ 7.7472044, 47.457667 ], + [ 7.7467596, 47.4578983 ], + [ 7.7455283999999995, 47.4585396 ], + [ 7.744482, 47.4588611 ], + [ 7.7436266, 47.459157 ], + [ 7.7437475, 47.459235 ], + [ 7.7428913999999995, 47.4595274 ], + [ 7.742935, 47.45956 ], + [ 7.7419059, 47.4601898 ], + [ 7.7414102, 47.4604932 ], + [ 7.7417172, 47.4606894 ], + [ 7.7410458, 47.4611754 ], + [ 7.7410317, 47.4611857 ], + [ 7.7406772, 47.4614425 ], + [ 7.7404741, 47.4613135 ], + [ 7.7404164, 47.4613553 ], + [ 7.7403435, 47.4613089 ], + [ 7.7395564, 47.4621736 ], + [ 7.7392315, 47.4620388 ], + [ 7.7392244, 47.4620523 ], + [ 7.7391271, 47.4623038 ], + [ 7.7390962, 47.4624295 ], + [ 7.7399517, 47.4624873 ], + [ 7.7405199, 47.4625124 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns308", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Landschachen - Huppergruben", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Landschachen - Huppergruben", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Landschachen - Huppergruben", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Landschachen - Huppergruben", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.3602889, 47.4006649 ], + [ 8.3603283, 47.400641 ], + [ 8.3603503, 47.4006188 ], + [ 8.3603347, 47.4005835 ], + [ 8.3603241, 47.400543 ], + [ 8.3603478, 47.4004753 ], + [ 8.3603635, 47.4003772 ], + [ 8.3603693, 47.4002792 ], + [ 8.3603728, 47.4001981 ], + [ 8.3603349, 47.4001646 ], + [ 8.360322, 47.400136 ], + [ 8.3603778, 47.4000511 ], + [ 8.3604042, 47.3999968 ], + [ 8.3604001, 47.3999056 ], + [ 8.3604068, 47.39986 ], + [ 8.360444, 47.3998302 ], + [ 8.3604477, 47.3998108 ], + [ 8.3604481, 47.3997812 ], + [ 8.3604168, 47.3997396 ], + [ 8.360403, 47.3997329 ], + [ 8.3603374, 47.3997416 ], + [ 8.3603319, 47.3997277 ], + [ 8.360384, 47.399719 ], + [ 8.3603901, 47.3996924 ], + [ 8.3603778, 47.3996819 ], + [ 8.3603474, 47.3996877 ], + [ 8.3603167, 47.3996802 ], + [ 8.3602753, 47.3996409 ], + [ 8.3602685, 47.3995992 ], + [ 8.3602352, 47.3995743 ], + [ 8.3601944, 47.3995635 ], + [ 8.3601604, 47.3995445 ], + [ 8.3601485, 47.3995098 ], + [ 8.3601129, 47.3995005 ], + [ 8.3600701, 47.3994703 ], + [ 8.3600729, 47.3994376 ], + [ 8.3601025, 47.3994106 ], + [ 8.3601444, 47.3993925 ], + [ 8.3601423, 47.3993716 ], + [ 8.3601223, 47.3993659 ], + [ 8.3600923, 47.3993726 ], + [ 8.3600825, 47.3993609 ], + [ 8.3601153, 47.3993134 ], + [ 8.3601036, 47.3992943 ], + [ 8.3601072, 47.3992572 ], + [ 8.3601326, 47.3992345 ], + [ 8.3601271, 47.3992142 ], + [ 8.3600953, 47.3991802 ], + [ 8.3600872, 47.3991599 ], + [ 8.3601128, 47.3991457 ], + [ 8.3601121, 47.3991136 ], + [ 8.360075, 47.3991129 ], + [ 8.36003, 47.3991476 ], + [ 8.35999, 47.3992198 ], + [ 8.360027, 47.3992586 ], + [ 8.3600624, 47.3992587 ], + [ 8.360062899999999, 47.3992813 ], + [ 8.360055299999999, 47.3993365 ], + [ 8.360040099999999, 47.3993511 ], + [ 8.3599675, 47.3993476 ], + [ 8.3599611, 47.3993289 ], + [ 8.3599378, 47.3993286 ], + [ 8.3599148, 47.399339 ], + [ 8.3598622, 47.3993438 ], + [ 8.3597794, 47.3993414 ], + [ 8.3597129, 47.3993404 ], + [ 8.359653699999999, 47.3993571 ], + [ 8.3596171, 47.3993821 ], + [ 8.3595759, 47.3993894 ], + [ 8.3595258, 47.3993905 ], + [ 8.359463, 47.3993954 ], + [ 8.3594048, 47.3994195 ], + [ 8.359354100000001, 47.3994313 ], + [ 8.3593051, 47.3994805 ], + [ 8.3592741, 47.3995307 ], + [ 8.3592618, 47.3995586 ], + [ 8.3592449, 47.3996194 ], + [ 8.3592409, 47.3996789 ], + [ 8.3592236, 47.3997198 ], + [ 8.3592332, 47.3997695 ], + [ 8.3592505, 47.3998181 ], + [ 8.3592812, 47.399887 ], + [ 8.3593044, 47.3999226 ], + [ 8.3592852, 47.3999984 ], + [ 8.3592418, 47.4000706 ], + [ 8.3592132, 47.4001947 ], + [ 8.3591886, 47.4002592 ], + [ 8.359148, 47.4003014 ], + [ 8.3590637, 47.4003537 ], + [ 8.3589831, 47.4003781 ], + [ 8.3589425, 47.4004219 ], + [ 8.3589356, 47.4004637 ], + [ 8.3589487, 47.4005172 ], + [ 8.3590272, 47.4006445 ], + [ 8.3590517, 47.4007032 ], + [ 8.3590483, 47.4007499 ], + [ 8.3590365, 47.4008529 ], + [ 8.3590245, 47.4009436 ], + [ 8.3590111, 47.4010069 ], + [ 8.3589851, 47.4010865 ], + [ 8.3589608, 47.4011661 ], + [ 8.358968, 47.4012271 ], + [ 8.3589852, 47.4013068 ], + [ 8.3589989, 47.4013484 ], + [ 8.3590228, 47.4013793 ], + [ 8.3590281, 47.4014269 ], + [ 8.3589968, 47.4015001 ], + [ 8.3589809, 47.4015296 ], + [ 8.3590093, 47.4016244 ], + [ 8.3589725, 47.4018004 ], + [ 8.35899, 47.4019506 ], + [ 8.358977, 47.4020605 ], + [ 8.3589617, 47.4021856 ], + [ 8.3589881, 47.4022698 ], + [ 8.359049, 47.4023369 ], + [ 8.3591388, 47.4023548 ], + [ 8.3592107, 47.402339 ], + [ 8.3592951, 47.4023299 ], + [ 8.359403499999999, 47.4023391 ], + [ 8.359519, 47.4023264 ], + [ 8.3595899, 47.4022532 ], + [ 8.359635, 47.402127899999996 ], + [ 8.3596053, 47.4019946 ], + [ 8.3596413, 47.4019183 ], + [ 8.3597246, 47.4018417 ], + [ 8.3597366, 47.4018196 ], + [ 8.3597109, 47.4017692 ], + [ 8.3597648, 47.4017231 ], + [ 8.3597614, 47.4016691 ], + [ 8.359763300000001, 47.4016353 ], + [ 8.3597901, 47.4016047 ], + [ 8.3597996, 47.4015793 ], + [ 8.3598363, 47.4015401 ], + [ 8.3598505, 47.4014961 ], + [ 8.3598364, 47.4014033 ], + [ 8.3599053, 47.4013622 ], + [ 8.3599496, 47.4013348 ], + [ 8.360001, 47.4012838 ], + [ 8.3600278, 47.4012498 ], + [ 8.3601198, 47.4011021 ], + [ 8.3601667, 47.4010814 ], + [ 8.3602213, 47.4010725 ], + [ 8.3602307, 47.4010404 ], + [ 8.3601779, 47.4010104 ], + [ 8.3601726, 47.4009935 ], + [ 8.3602086, 47.4009156 ], + [ 8.3601998, 47.4008413 ], + [ 8.360226, 47.4007685 ], + [ 8.3602674, 47.4007175 ], + [ 8.3602889, 47.4006649 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "KTAG701", + "country" : "CHE", + "name" : [ + { + "text" : "Egelsee", + "lang" : "de-CH" + }, + { + "text" : "Egelsee", + "lang" : "fr-CH" + }, + { + "text" : "Egelsee", + "lang" : "it-CH" + }, + { + "text" : "Egelsee", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "regulationExemption" : "NO", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "schedule" : [ + { + "day" : [ "ANY" ], + "startTime" : "00:00:00.00+01:00", + "endTime" : "00:00:00.00+01:00" + } + ] + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Aargau", + "lang" : "de-CH" + }, + { + "text" : "Canton d'Argovie", + "lang" : "fr-CH" + }, + { + "text" : "Canton Argovia", + "lang" : "it-CH" + }, + { + "text" : "Canton of Aargau", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Departement Bau, Verkehr und Umwelt (BVU)", + "lang" : "de-CH" + }, + { + "text" : "Département de la construction, des transports et de l'environnement (CTE)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento delle costruzioni, dei trasporti e dell'ambiente (CTA)", + "lang" : "it-CH" + }, + { + "text" : "Department of Civil Engineering,Transport and Environment (CTE)", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Sektion Gewässernutzung", + "lang" : "de-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "fr-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "it-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ag.ch/de/verwaltung/bvu/umwelt-natur-landschaft/hochwasserschutz-gewaesser/gewaessernutzung", + "email" : "alg@ag.ch", + "phone" : "0041 62 835 34 50", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.4476974, 47.5841911 ], + [ 9.4038888, 47.5666666 ], + [ 9.2613888, 47.628611 ], + [ 9.3016666, 47.6444444 ], + [ 9.4186653, 47.6040003 ], + [ 9.4476974, 47.5841911 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 120, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "CTR0017", + "country" : "CHE", + "name" : [ + { + "text" : "CTR FRIEDRICHSHAFEN 2", + "lang" : "de-CH" + }, + { + "text" : "CTR FRIEDRICHSHAFEN 2", + "lang" : "fr-CH" + }, + { + "text" : "CTR FRIEDRICHSHAFEN 2", + "lang" : "it-CH" + }, + { + "text" : "CTR FRIEDRICHSHAFEN 2", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only permitted from an altitude of 120 m above ground with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Bodensee-Airport", + "lang" : "de-CH" + }, + { + "text" : "Bodensee-Airport", + "lang" : "fr-CH" + }, + { + "text" : "Bodensee-Airport", + "lang" : "it-CH" + }, + { + "text" : "Bodensee-Airport", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Bodensee-Airport", + "lang" : "de-CH" + }, + { + "text" : "Bodensee-Airport", + "lang" : "fr-CH" + }, + { + "text" : "Bodensee-Airport", + "lang" : "it-CH" + }, + { + "text" : "Bodensee-Airport", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.bodensee-airport.eu/en/", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6363372, 46.7533871 ], + [ 7.6365371, 46.7530088 ], + [ 7.6366702, 46.7527337 ], + [ 7.6367118, 46.7524758 ], + [ 7.6368122, 46.7521949 ], + [ 7.6368954, 46.7519198 ], + [ 7.6369378, 46.7516561 ], + [ 7.6369214, 46.7511861 ], + [ 7.6368635, 46.7507905 ], + [ 7.6367639, 46.7504179 ], + [ 7.6365734, 46.7499936 ], + [ 7.6364159, 46.7494261 ], + [ 7.6363496, 46.749191 ], + [ 7.636433, 46.748961800000004 ], + [ 7.6367831, 46.7485032 ], + [ 7.6369326, 46.7482396 ], + [ 7.6370993, 46.7482053 ], + [ 7.637365, 46.7481596 ], + [ 7.637656, 46.7481194 ], + [ 7.6378309, 46.7480909 ], + [ 7.6380137999999995, 46.7480049 ], + [ 7.6382301, 46.7478789 ], + [ 7.6384879, 46.7477012 ], + [ 7.6384133, 46.7476496 ], + [ 7.6386047, 46.7474319 ], + [ 7.6388295, 46.7471855 ], + [ 7.6389375, 46.7469677 ], + [ 7.6390871, 46.7467212 ], + [ 7.6391371, 46.7465492 ], + [ 7.639221, 46.7464347 ], + [ 7.6392421, 46.7463927 ], + [ 7.639274, 46.7463982 ], + [ 7.6394038, 46.7461281 ], + [ 7.6397299, 46.7458306 ], + [ 7.639925, 46.7455155 ], + [ 7.6402507, 46.7451371 ], + [ 7.6415303, 46.7443702 ], + [ 7.6427716, 46.7438732 ], + [ 7.6425742, 46.7436037 ], + [ 7.6427309, 46.7435135 ], + [ 7.6429936, 46.7437559 ], + [ 7.6437121999999995, 46.7434667 ], + [ 7.6444044, 46.7431237 ], + [ 7.6443645, 46.7429438 ], + [ 7.6449915, 46.7426728 ], + [ 7.6451871, 46.7424926 ], + [ 7.6453427, 46.7421145 ], + [ 7.6456036, 46.7419071 ], + [ 7.6457344, 46.7418889 ], + [ 7.6458, 46.7419517 ], + [ 7.6465852, 46.7419503 ], + [ 7.6468858, 46.7418598 ], + [ 7.6471738, 46.7419043 ], + [ 7.6473704, 46.7419938 ], + [ 7.6471487, 46.7421742 ], + [ 7.6475417, 46.7422904 ], + [ 7.6480915, 46.7423524 ], + [ 7.6488113, 46.742378 ], + [ 7.6492429, 46.7423053 ], + [ 7.6494004, 46.7424399 ], + [ 7.6495704, 46.7423946 ], + [ 7.6493995, 46.742197 ], + [ 7.6510328, 46.7416093 ], + [ 7.6514633, 46.7412667 ], + [ 7.6515284, 46.7411766 ], + [ 7.6516592, 46.7411763 ], + [ 7.6517503, 46.7410412 ], + [ 7.6515930999999995, 46.7409966 ], + [ 7.6520486, 46.740366 ], + [ 7.6522057, 46.7403927 ], + [ 7.6528966, 46.7397167 ], + [ 7.6528308, 46.7396269 ], + [ 7.6528957, 46.7395098 ], + [ 7.6530268, 46.7395546 ], + [ 7.6531176, 46.7393565 ], + [ 7.6529603999999996, 46.7393298 ], + [ 7.6530898, 46.7389517 ], + [ 7.6532467, 46.7389245 ], + [ 7.6538694, 46.737565 ], + [ 7.6539604, 46.7374119 ], + [ 7.6541037, 46.7372677 ], + [ 7.6542995, 46.7371413 ], + [ 7.6545216, 46.73706 ], + [ 7.6548223, 46.7370054 ], + [ 7.6550576, 46.736942 ], + [ 7.6553975, 46.7368874 ], + [ 7.6556592, 46.7368689 ], + [ 7.6558422, 46.7368236 ], + [ 7.6559731, 46.7368593 ], + [ 7.656065, 46.7369131 ], + [ 7.6562871999999995, 46.7368677 ], + [ 7.6564562, 46.7365975 ], + [ 7.6563383, 46.7365528 ], + [ 7.6564162, 46.7364177 ], + [ 7.6563376, 46.7363729 ], + [ 7.6565461, 46.7361746 ], + [ 7.6566902, 46.7362283 ], + [ 7.6568596, 46.736048 ], + [ 7.6567809, 46.7359852 ], + [ 7.6572891, 46.7354715 ], + [ 7.6573273, 46.7352285 ], + [ 7.6573861, 46.7351878 ], + [ 7.6545116, 46.7310721 ], + [ 7.6476098, 46.721185 ], + [ 7.6441187, 46.7161836 ], + [ 7.6441189, 46.7162183 ], + [ 7.6441323, 46.7162992 ], + [ 7.6441195, 46.7163892 ], + [ 7.6440677, 46.7165152 ], + [ 7.6439373, 46.7166324 ], + [ 7.64382, 46.7167226 ], + [ 7.6437418, 46.7168127 ], + [ 7.6437033, 46.7170107 ], + [ 7.6435862, 46.7171548 ], + [ 7.6435338999999995, 46.7171549 ], + [ 7.6435732, 46.7171908 ], + [ 7.6435212, 46.7172629 ], + [ 7.6435346, 46.7173618 ], + [ 7.6435088, 46.7174518 ], + [ 7.6434829, 46.7175238 ], + [ 7.6435093, 46.7175777 ], + [ 7.6433398, 46.717731 ], + [ 7.6432355, 46.7178031 ], + [ 7.6431834, 46.7178752 ], + [ 7.6430399, 46.7179654 ], + [ 7.6428832, 46.7180196 ], + [ 7.6427786, 46.7180468 ], + [ 7.6425303, 46.7181012 ], + [ 7.6422557, 46.7181287 ], + [ 7.6420727, 46.718147 ], + [ 7.6418634, 46.7181474 ], + [ 7.6415888, 46.7181569 ], + [ 7.6412227, 46.7182115 ], + [ 7.6411441, 46.7181667 ], + [ 7.6410131, 46.7181129 ], + [ 7.6408428, 46.7180413 ], + [ 7.640712, 46.7180325 ], + [ 7.6405682, 46.7180597 ], + [ 7.6404635, 46.7180329 ], + [ 7.6402936, 46.7180872 ], + [ 7.6402095, 46.7181039 ], + [ 7.6401239, 46.7179483 ], + [ 7.6399711, 46.7177563 ], + [ 7.6398429, 46.7175817 ], + [ 7.6396648, 46.7173896 ], + [ 7.6394608, 46.7172675 ], + [ 7.6392569, 46.717163 ], + [ 7.6389263, 46.7170762 ], + [ 7.6385694, 46.716937 ], + [ 7.6379334, 46.7167107 ], + [ 7.6374497, 46.7165542 ], + [ 7.6369403, 46.7163103 ], + [ 7.6365831, 46.7160834 ], + [ 7.6361748, 46.715752 ], + [ 7.6358685, 46.7153853 ], + [ 7.6356892, 46.7150709 ], + [ 7.6355936, 46.7148612 ], + [ 7.6353501999999995, 46.7144593 ], + [ 7.635299, 46.7143283 ], + [ 7.6350199, 46.7144425 ], + [ 7.6345505, 46.7146181 ], + [ 7.6340166, 46.7148202 ], + [ 7.6334461000000005, 46.7150484 ], + [ 7.6327605, 46.7153556 ], + [ 7.6321771, 46.7156452 ], + [ 7.6317708, 46.7158557 ], + [ 7.6314723, 46.7160573 ], + [ 7.6308507, 46.7164255 ], + [ 7.6306608, 46.7165745 ], + [ 7.6305215, 46.7167146 ], + [ 7.6304205, 46.7168372 ], + [ 7.6302551, 46.7169774 ], + [ 7.6299256, 46.7172053 ], + [ 7.6294433999999995, 46.7174421 ], + [ 7.6290248, 46.7176701 ], + [ 7.6286570000000005, 46.7179068 ], + [ 7.628378, 46.7180734 ], + [ 7.6280481, 46.7181964 ], + [ 7.6277053, 46.7183456 ], + [ 7.6274387, 46.7185558 ], + [ 7.6272609, 46.7186611 ], + [ 7.6267408, 46.718863 ], + [ 7.6263727, 46.7190123 ], + [ 7.6253512, 46.7195998 ], + [ 7.6248944, 46.719889 ], + [ 7.6243870000000005, 46.7201871 ], + [ 7.6240827, 46.72038 ], + [ 7.6238414, 46.7205728 ], + [ 7.6236899000000005, 46.720739 ], + [ 7.6235192, 46.7210192 ], + [ 7.6233923, 46.7212205 ], + [ 7.6233172, 46.7214742 ], + [ 7.623229, 46.7217453 ], + [ 7.6231789, 46.7219203 ], + [ 7.6231542999999995, 46.7221214 ], + [ 7.623155, 46.72234 ], + [ 7.6231811, 46.7225672 ], + [ 7.6233091, 46.7229343 ], + [ 7.6234246, 46.7232227 ], + [ 7.6235652, 46.723476 ], + [ 7.6237319, 46.7236769 ], + [ 7.6239609999999995, 46.7239649 ], + [ 7.6243951, 46.7244364 ], + [ 7.6247273, 46.724759399999996 ], + [ 7.6253716, 46.7254927 ], + [ 7.6279258, 46.7243302 ], + [ 7.6281786, 46.7246208 ], + [ 7.6283092, 46.7245576 ], + [ 7.6285045, 46.7243054 ], + [ 7.6286625, 46.724602 ], + [ 7.6289911, 46.7250512 ], + [ 7.6286659, 46.7255465 ], + [ 7.6292281, 46.7254736 ], + [ 7.6295813, 46.725473 ], + [ 7.6296472, 46.7256078 ], + [ 7.6293865, 46.7258781 ], + [ 7.6290994, 46.726085499999996 ], + [ 7.6289953, 46.7262386 ], + [ 7.629232, 46.7265801 ], + [ 7.6289055, 46.7267335 ], + [ 7.6290368, 46.7268682 ], + [ 7.62943, 46.7270745 ], + [ 7.629627, 46.727308 ], + [ 7.6296798, 46.7274429 ], + [ 7.6298504, 46.7275775 ], + [ 7.6300338, 46.7276582 ], + [ 7.6301518, 46.7277389 ], + [ 7.6302567, 46.7277837 ], + [ 7.6304269, 46.7278374 ], + [ 7.6305843, 46.7279541 ], + [ 7.6306241, 46.728098 ], + [ 7.630415, 46.7281703 ], + [ 7.630219, 46.7282426 ], + [ 7.6301801000000005, 46.7283236 ], + [ 7.6301409, 46.7283507 ], + [ 7.630311, 46.7283414 ], + [ 7.6304549999999995, 46.7283861 ], + [ 7.6305077, 46.728476 ], + [ 7.6304293, 46.7285211 ], + [ 7.6301939999999995, 46.7285665 ], + [ 7.630247, 46.7287373 ], + [ 7.6299728, 46.7288997 ], + [ 7.629738, 46.729098 ], + [ 7.629582, 46.7293771 ], + [ 7.6292302, 46.7297555 ], + [ 7.6291392, 46.7299266 ], + [ 7.6291794, 46.7301964 ], + [ 7.629075, 46.7302685 ], + [ 7.6291807, 46.7305562 ], + [ 7.629011, 46.7306734 ], + [ 7.628815, 46.7307367 ], + [ 7.6285271, 46.7307192 ], + [ 7.6285941, 46.7311689 ], + [ 7.6287511, 46.7311686 ], + [ 7.6288546, 46.7308266 ], + [ 7.6290508, 46.7308263 ], + [ 7.6291168, 46.7309881 ], + [ 7.6290787, 46.731321 ], + [ 7.6292099, 46.7314377 ], + [ 7.6292105, 46.7315906 ], + [ 7.6298009, 46.7320664 ], + [ 7.6301292, 46.7324077 ], + [ 7.6303003, 46.7326953 ], + [ 7.6303666, 46.732938 ], + [ 7.6304981, 46.7331447 ], + [ 7.6303032, 46.7335049 ], + [ 7.6301074, 46.7336401 ], + [ 7.6302389, 46.7338378 ], + [ 7.6302655999999995, 46.7339727 ], + [ 7.6310246, 46.7340164 ], + [ 7.6311549, 46.7338813 ], + [ 7.6313124, 46.7340159 ], + [ 7.6315482, 46.7341055 ], + [ 7.6325301, 46.7342657 ], + [ 7.6324647, 46.7342838 ], + [ 7.631483, 46.7341506 ], + [ 7.6310252, 46.734178299999996 ], + [ 7.6300706, 46.7343328 ], + [ 7.6301109, 46.7346296 ], + [ 7.6308953, 46.7344484 ], + [ 7.631353, 46.7344027 ], + [ 7.6320074, 46.7344645 ], + [ 7.6320993, 46.7345363 ], + [ 7.6319688, 46.7346265 ], + [ 7.6316153, 46.7345552 ], + [ 7.6311835, 46.7345559 ], + [ 7.6303729, 46.7347192 ], + [ 7.6303341, 46.7348272 ], + [ 7.6305971, 46.7352135 ], + [ 7.6308331, 46.7353481 ], + [ 7.6310948, 46.7353656 ], + [ 7.6316436, 46.7351668 ], + [ 7.6318401, 46.7352294 ], + [ 7.6320373, 46.735499 ], + [ 7.6301821, 46.7362487 ], + [ 7.6302478, 46.7363386 ], + [ 7.6301829, 46.7364736 ], + [ 7.6302488, 46.7366084 ], + [ 7.6315832, 46.7365612 ], + [ 7.631819, 46.7366508 ], + [ 7.6317822, 46.7373255 ], + [ 7.6318494999999995, 46.7378381 ], + [ 7.6320468, 46.7381347 ], + [ 7.632505, 46.7381969 ], + [ 7.632481, 46.7388086 ], + [ 7.6328752, 46.7392757 ], + [ 7.6334924, 46.7398864 ], + [ 7.6337292, 46.7402458 ], + [ 7.6336903, 46.7403358 ], + [ 7.6334944, 46.7404261 ], + [ 7.6327487, 46.7404723 ], + [ 7.6321604, 46.7406083 ], + [ 7.6313756, 46.7406995 ], + [ 7.6312054, 46.7406728 ], + [ 7.6305884, 46.7401161 ], + [ 7.6303919, 46.7400445 ], + [ 7.6284548, 46.7398948 ], + [ 7.6285233, 46.7407673 ], + [ 7.6294393, 46.7407927 ], + [ 7.6302643, 46.7409713 ], + [ 7.6306831, 46.7409886 ], + [ 7.6308530999999995, 46.7409433 ], + [ 7.6309449, 46.7410151 ], + [ 7.6310102, 46.740988 ], + [ 7.631049, 46.740853 ], + [ 7.6313105, 46.7407896 ], + [ 7.6314022, 46.7408344 ], + [ 7.6314042, 46.7413921 ], + [ 7.6317053, 46.7414186 ], + [ 7.6317959, 46.7411486 ], + [ 7.6320577, 46.7411662 ], + [ 7.6320973, 46.741256 ], + [ 7.6319926, 46.7412562 ], + [ 7.6319928, 46.7413282 ], + [ 7.6319012, 46.7413283 ], + [ 7.6318362, 46.7414364 ], + [ 7.6323598, 46.7414805 ], + [ 7.6325822, 46.7414621 ], + [ 7.632621, 46.7413451 ], + [ 7.6322282, 46.7412828 ], + [ 7.6322541, 46.7411928 ], + [ 7.6327513, 46.74121 ], + [ 7.6327518, 46.7413449 ], + [ 7.6326212, 46.7413901 ], + [ 7.6326213, 46.7414351 ], + [ 7.6331451999999995, 46.7415691 ], + [ 7.6333418, 46.7416587 ], + [ 7.6332767, 46.7417488 ], + [ 7.6317323, 46.7416435 ], + [ 7.6315756, 46.7417337 ], + [ 7.6307902, 46.741663 ], + [ 7.6307513, 46.7417531 ], + [ 7.6306204, 46.7417353 ], + [ 7.6305555, 46.7418883 ], + [ 7.6300983, 46.742114 ], + [ 7.6301369, 46.741934 ], + [ 7.6299406, 46.7419163 ], + [ 7.6298759, 46.7421413 ], + [ 7.6292213, 46.7420255 ], + [ 7.6290251, 46.7420528 ], + [ 7.62896, 46.7421429 ], + [ 7.6290915, 46.7423226 ], + [ 7.6295497, 46.742384799999996 ], + [ 7.6301646, 46.7423657 ], + [ 7.6310141, 46.7420675 ], + [ 7.6312495, 46.7420221 ], + [ 7.6315769, 46.7421115 ], + [ 7.6318394, 46.742318 ], + [ 7.6322999, 46.7430368 ], + [ 7.6327853999999995, 46.7433958 ], + [ 7.6330874, 46.7436832 ], + [ 7.6334415, 46.7439075 ], + [ 7.6338353, 46.7442216 ], + [ 7.6347533, 46.7447868 ], + [ 7.6352514, 46.7450108 ], + [ 7.6355132999999995, 46.7450553 ], + [ 7.6357744, 46.744893 ], + [ 7.6360619, 46.7447845 ], + [ 7.6363889, 46.744739 ], + [ 7.6367166, 46.7448914 ], + [ 7.6378975, 46.7457439 ], + [ 7.6382253, 46.7459232 ], + [ 7.6385272, 46.7461746 ], + [ 7.638533, 46.7461771 ], + [ 7.6385314, 46.7461822 ], + [ 7.6384476, 46.7463026 ], + [ 7.6382233, 46.7464745 ], + [ 7.6379487, 46.7467725 ], + [ 7.6377326, 46.7469272 ], + [ 7.6374493999999995, 46.7471048 ], + [ 7.6371, 46.7472824 ], + [ 7.6368918, 46.7473797 ], + [ 7.6368176, 46.7474313 ], + [ 7.6365174, 46.7476491 ], + [ 7.6363183, 46.7477865 ], + [ 7.6361019, 46.7478782 ], + [ 7.6359354, 46.7479757 ], + [ 7.6358768, 46.7480501 ], + [ 7.6357854, 46.7481246 ], + [ 7.6356941, 46.7482105 ], + [ 7.6356028, 46.7482908 ], + [ 7.6355612, 46.7483194 ], + [ 7.6353861, 46.7483021 ], + [ 7.6346549, 46.7483077 ], + [ 7.6344301, 46.7483305 ], + [ 7.6342806, 46.7483993 ], + [ 7.6341887, 46.7485254 ], + [ 7.634779, 46.7486976 ], + [ 7.6349369, 46.7484912 ], + [ 7.6350955, 46.7484626 ], + [ 7.635453, 46.7484684 ], + [ 7.6355274, 46.7484742 ], + [ 7.6355856, 46.7485087 ], + [ 7.6355525, 46.7486291 ], + [ 7.6350026, 46.7494371 ], + [ 7.6348858, 46.7497294 ], + [ 7.6350603, 46.749804 ], + [ 7.6347688, 46.7503886 ], + [ 7.6346862, 46.7503829 ], + [ 7.6339697, 46.7512998 ], + [ 7.6332456, 46.7521594 ], + [ 7.6324462, 46.7529903 ], + [ 7.6321383, 46.7533512 ], + [ 7.6319638, 46.7535118 ], + [ 7.6314142, 46.7540045 ], + [ 7.6311395, 46.7542624 ], + [ 7.6307903, 46.7545316 ], + [ 7.6309401, 46.7545317 ], + [ 7.6312555, 46.7544573 ], + [ 7.6318798999999995, 46.754297 ], + [ 7.6321709, 46.7540105 ], + [ 7.6327367, 46.7534662 ], + [ 7.6328038, 46.7534776 ], + [ 7.6331865, 46.7529905 ], + [ 7.6335528, 46.752492 ], + [ 7.6338609, 46.7521939 ], + [ 7.6339604, 46.752108 ], + [ 7.6340102, 46.7520852 ], + [ 7.6340267, 46.7521309 ], + [ 7.633977, 46.752194 ], + [ 7.6338273, 46.7526182 ], + [ 7.6340344, 46.7526698 ], + [ 7.6342264, 46.7523776 ], + [ 7.6346668, 46.7524579 ], + [ 7.6345832, 46.7526527 ], + [ 7.6347413, 46.7526987 ], + [ 7.634608, 46.7529566 ], + [ 7.6344419, 46.7529221 ], + [ 7.6343502, 46.7531227 ], + [ 7.6339433, 46.7530309 ], + [ 7.6340346, 46.7527272 ], + [ 7.633852, 46.7526812 ], + [ 7.6337022, 46.7530824 ], + [ 7.6336262999999995, 46.7533689 ], + [ 7.6335518, 46.7535754 ], + [ 7.6334847, 46.7537817 ], + [ 7.6333677, 46.7540282 ], + [ 7.6331434, 46.7544179 ], + [ 7.6330597000000004, 46.7545669 ], + [ 7.6330095, 46.7547216 ], + [ 7.6329594, 46.7548822 ], + [ 7.6328679, 46.7551572 ], + [ 7.6336987, 46.7555072 ], + [ 7.633857, 46.7553983 ], + [ 7.6340322, 46.7552264 ], + [ 7.6342403, 46.7550889 ], + [ 7.6344975999999996, 46.7549687 ], + [ 7.6349721, 46.7547567 ], + [ 7.635521, 46.7545333 ], + [ 7.6356295, 46.7544588 ], + [ 7.6357289999999995, 46.7543786 ], + [ 7.6358953, 46.7542181 ], + [ 7.6361873, 46.7537597 ], + [ 7.6363372, 46.7533871 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "WZV0017", + "country" : "CHE", + "name" : [ + { + "text" : "Wasser- und Zugvogelreservat Kanderdelta bis Hilterfingen", + "lang" : "de-CH" + }, + { + "text" : "Réserve d'oiseaux d'eau et de migrateurs Kanderdelta bis Hilterfingen", + "lang" : "fr-CH" + }, + { + "text" : "Riserva di uccelli acquatici e migratori Kanderdelta bis Hilterfingen", + "lang" : "it-CH" + }, + { + "text" : "Water Bird and Migratory Bird Reserves Kanderdelta bis Hilterfingen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5516994, 47.5228572 ], + [ 7.5503241, 47.5217409 ], + [ 7.5501082, 47.5218519 ], + [ 7.5501403, 47.5218806 ], + [ 7.5500557, 47.5219241 ], + [ 7.5500236, 47.5218954 ], + [ 7.5499054, 47.5219563 ], + [ 7.5511266, 47.5229644 ], + [ 7.5496502, 47.5238587 ], + [ 7.5498616, 47.5240189 ], + [ 7.5514567, 47.5229964 ], + [ 7.5515523, 47.52294 ], + [ 7.5516994, 47.5228572 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns083", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Ziegelei Oberwil", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Ziegelei Oberwil", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Ziegelei Oberwil", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Ziegelei Oberwil", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.6164256, 46.9113884 ], + [ 9.6162404, 46.9090372 ], + [ 9.6158758, 46.9066958 ], + [ 9.615333, 46.9043707 ], + [ 9.6146135, 46.9020682 ], + [ 9.6137192, 46.8997947 ], + [ 9.6126526, 46.8975564 ], + [ 9.6114166, 46.8953594 ], + [ 9.6100148, 46.8932097 ], + [ 9.6084508, 46.8911133 ], + [ 9.6067291, 46.8890758 ], + [ 9.6048543, 46.8871029 ], + [ 9.6028316, 46.8851998 ], + [ 9.6006666, 46.883372 ], + [ 9.5983651, 46.8816243 ], + [ 9.5959336, 46.8799615 ], + [ 9.5933786, 46.8783882 ], + [ 9.5907072, 46.8769086 ], + [ 9.5879266, 46.8755269 ], + [ 9.5850446, 46.8742468 ], + [ 9.5820689, 46.8730719 ], + [ 9.5790078, 46.8720052 ], + [ 9.5758696, 46.8710498 ], + [ 9.5726629, 46.8702083 ], + [ 9.5693964, 46.8694829 ], + [ 9.5660791, 46.8688756 ], + [ 9.5627202, 46.8683882 ], + [ 9.5593286, 46.8680218 ], + [ 9.5559138, 46.8677777 ], + [ 9.5524851, 46.8676563 ], + [ 9.5490518, 46.867658 ], + [ 9.545623299999999, 46.8677829 ], + [ 9.542209, 46.8680306 ], + [ 9.538818299999999, 46.8684004 ], + [ 9.5354604, 46.8688912 ], + [ 9.5321444, 46.8695019 ], + [ 9.5288795, 46.8702306 ], + [ 9.5256746, 46.8710754 ], + [ 9.5225385, 46.8720341 ], + [ 9.5194797, 46.8731038 ], + [ 9.5165066, 46.8742818 ], + [ 9.5136273, 46.8755649 ], + [ 9.5108498, 46.8769494 ], + [ 9.5081816, 46.8784317 ], + [ 9.50563, 46.8800076 ], + [ 9.5032021, 46.8816729 ], + [ 9.5009044, 46.8834229 ], + [ 9.4987434, 46.885253 ], + [ 9.496724799999999, 46.8871581 ], + [ 9.4948543, 46.8891329 ], + [ 9.493137, 46.8911722 ], + [ 9.4915776, 46.8932702 ], + [ 9.4901804, 46.8954213 ], + [ 9.4889493, 46.8976196 ], + [ 9.4878875, 46.899859 ], + [ 9.4869982, 46.9021334 ], + [ 9.4862836, 46.9044366 ], + [ 9.4857459, 46.9067622 ], + [ 9.4853864, 46.909104 ], + [ 9.4852063, 46.9114554 ], + [ 9.485206, 46.9138101 ], + [ 9.4853855, 46.9161616 ], + [ 9.4857444, 46.9185034 ], + [ 9.4862818, 46.9208291 ], + [ 9.4869961, 46.9231323 ], + [ 9.4878854, 46.9254068 ], + [ 9.4889473, 46.9276463 ], + [ 9.490179, 46.9298446 ], + [ 9.4915771, 46.9319957 ], + [ 9.4931376, 46.9340937 ], + [ 9.4948565, 46.9361329 ], + [ 9.496729, 46.9381076 ], + [ 9.4987499, 46.9400125 ], + [ 9.5009137, 46.9418423 ], + [ 9.5032146, 46.943592 ], + [ 9.5056461, 46.9452567 ], + [ 9.5082017, 46.946832 ], + [ 9.5108743, 46.9483134 ], + [ 9.5136567, 46.9496969 ], + [ 9.5165411, 46.9509788 ], + [ 9.5195196, 46.9521555 ], + [ 9.5225841, 46.9532237 ], + [ 9.5257262, 46.9541806 ], + [ 9.5289372, 46.9550234 ], + [ 9.5322083, 46.95575 ], + [ 9.5355305, 46.9563582 ], + [ 9.5388948, 46.9568464 ], + [ 9.5422918, 46.9572133 ], + [ 9.5457122, 46.9574579 ], + [ 9.5491467, 46.9575795 ], + [ 9.5525857, 46.9575778 ], + [ 9.5560199, 46.9574527 ], + [ 9.5594398, 46.9572046 ], + [ 9.562836, 46.9568342 ], + [ 9.5661992, 46.9563425 ], + [ 9.5695201, 46.9557309 ], + [ 9.5727897, 46.955001 ], + [ 9.5759988, 46.9541549 ], + [ 9.579138799999999, 46.9531948 ], + [ 9.582201, 46.9521235 ], + [ 9.5851769, 46.9509438 ], + [ 9.5880585, 46.949659 ], + [ 9.5908378, 46.9482726 ], + [ 9.5935072, 46.9467884 ], + [ 9.5960594, 46.9452105 ], + [ 9.5984873, 46.9435433 ], + [ 9.6007843, 46.9417913 ], + [ 9.6029442, 46.9399593 ], + [ 9.604961, 46.9380524 ], + [ 9.6068291, 46.9360757 ], + [ 9.6085435, 46.9340348 ], + [ 9.6100996, 46.9319352 ], + [ 9.6114929, 46.9297826 ], + [ 9.6127198, 46.9275831 ], + [ 9.6137769, 46.9253425 ], + [ 9.6146612, 46.9230671 ], + [ 9.6153705, 46.9207632 ], + [ 9.6159028, 46.9184369 ], + [ 9.6162566, 46.9160947 ], + [ 9.616431, 46.9137431 ], + [ 9.6164256, 46.9113884 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSXU001", + "country" : "CHE", + "name" : [ + { + "text" : "LSXU Untervaz", + "lang" : "de-CH" + }, + { + "text" : "LSXU Untervaz", + "lang" : "fr-CH" + }, + { + "text" : "LSXU Untervaz", + "lang" : "it-CH" + }, + { + "text" : "LSXU Untervaz", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swiss Helicopter AG", + "lang" : "de-CH" + }, + { + "text" : "Swiss Helicopter AG", + "lang" : "fr-CH" + }, + { + "text" : "Swiss Helicopter AG", + "lang" : "it-CH" + }, + { + "text" : "Swiss Helicopter AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Adrian Roffler", + "lang" : "de-CH" + }, + { + "text" : "Adrian Roffler", + "lang" : "fr-CH" + }, + { + "text" : "Adrian Roffler", + "lang" : "it-CH" + }, + { + "text" : "Adrian Roffler", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swisshelicopter.ch/en/about-us/helicopter-bases/untervaz", + "email" : "untervaz@swisshelicopter.ch", + "phone" : "0041813225757", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4674999, 47.0738888 ], + [ 7.587576, 46.9715552 ], + [ 7.5942177, 46.9653074 ], + [ 7.5999873000000004, 46.9586663 ], + [ 7.604836, 46.9516888 ], + [ 7.6087226, 46.9444347 ], + [ 7.6116143, 46.9369658 ], + [ 7.613487, 46.929346 ], + [ 7.6143249, 46.9216403 ], + [ 7.6141214999999995, 46.9139145 ], + [ 7.6128789, 46.9062345 ], + [ 7.6106081, 46.8986658 ], + [ 7.6073289, 46.8912729 ], + [ 7.6030697, 46.8841188 ], + [ 7.5978671, 46.8772644 ], + [ 7.5917658, 46.870768 ], + [ 7.5848179, 46.8646851 ], + [ 7.577083, 46.8590672 ], + [ 7.5686269, 46.8539623 ], + [ 7.5595219, 46.8494136 ], + [ 7.5498453, 46.8454599 ], + [ 7.5396797, 46.8421348 ], + [ 7.5291114, 46.8394665 ], + [ 7.5182302, 46.8374776 ], + [ 7.5071286, 46.8361851 ], + [ 7.4959009, 46.8355999 ], + [ 7.4846425, 46.8357271 ], + [ 7.4734489, 46.8365655 ], + [ 7.4624152, 46.838108 ], + [ 7.4516351, 46.8403415 ], + [ 7.4412003, 46.8432471 ], + [ 7.4311994, 46.8468 ], + [ 7.4217176, 46.8509701 ], + [ 7.4128355, 46.855722 ], + [ 7.4046287, 46.8610151 ], + [ 7.3971674, 46.8668046 ], + [ 7.2763888, 46.9694444 ], + [ 7.4674999, 47.0738888 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 120, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "CTR0005", + "country" : "CHE", + "name" : [ + { + "text" : "CTR BERN", + "lang" : "de-CH" + }, + { + "text" : "CTR BERN", + "lang" : "fr-CH" + }, + { + "text" : "CTR BERN", + "lang" : "it-CH" + }, + { + "text" : "CTR BERN", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only permitted from an altitude of 120 m above ground with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Skyguide Special Flight Office", + "lang" : "de-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "it-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "en-GB" + } + ], + "siteURL" : "https://skyguide.ch/services/special-flights", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7424638, 47.4363675 ], + [ 7.7425028000000005, 47.436351 ], + [ 7.742601, 47.4364596 ], + [ 7.7429551, 47.4367734 ], + [ 7.7431777, 47.4370594 ], + [ 7.7435449, 47.4373712 ], + [ 7.7438526, 47.4375376 ], + [ 7.7444207, 47.4372384 ], + [ 7.744781, 47.4375148 ], + [ 7.7449945, 47.4376366 ], + [ 7.7453257, 47.4376875 ], + [ 7.7456519, 47.4377269 ], + [ 7.7461277, 47.4373753 ], + [ 7.7464348, 47.4370246 ], + [ 7.7464772, 47.4369752 ], + [ 7.7465156, 47.4369938 ], + [ 7.7466143, 47.4368799 ], + [ 7.7469983, 47.4366091 ], + [ 7.7472748, 47.4364594 ], + [ 7.7476217, 47.4362267 ], + [ 7.7482315, 47.4359073 ], + [ 7.7489402, 47.435664 ], + [ 7.749639, 47.4354587 ], + [ 7.7504101, 47.4352322 ], + [ 7.7501304, 47.4348033 ], + [ 7.7498362, 47.4343497 ], + [ 7.74958, 47.433957 ], + [ 7.7489897, 47.4334663 ], + [ 7.7484003, 47.4328665 ], + [ 7.7479185, 47.4320804 ], + [ 7.7476997, 47.4312264 ], + [ 7.7473188, 47.4305057 ], + [ 7.7469452, 47.4297958 ], + [ 7.7467398, 47.429483 ], + [ 7.7465549, 47.4291972 ], + [ 7.7463689, 47.4289118 ], + [ 7.7463496, 47.4288823 ], + [ 7.7463422, 47.428871 ], + [ 7.7461024, 47.4286514 ], + [ 7.745588, 47.4281708 ], + [ 7.7450974, 47.4277101 ], + [ 7.7446355, 47.4274894 ], + [ 7.7441426, 47.42725 ], + [ 7.7436975, 47.4270353 ], + [ 7.7432278, 47.4267155 ], + [ 7.7427997, 47.426377 ], + [ 7.7425594, 47.4261807 ], + [ 7.7422084, 47.4259212 ], + [ 7.7418056, 47.4256334 ], + [ 7.7416454, 47.4253992 ], + [ 7.7413447, 47.4252902 ], + [ 7.7410941, 47.4251603 ], + [ 7.7408927, 47.4250332 ], + [ 7.7405709, 47.4247891 ], + [ 7.7405633, 47.4247834 ], + [ 7.7402359, 47.4244596 ], + [ 7.7399867, 47.4240824 ], + [ 7.7398404, 47.4238564 ], + [ 7.7397329, 47.4236902 ], + [ 7.7395932, 47.4234744 ], + [ 7.7395629, 47.4232628 ], + [ 7.7395274, 47.423036 ], + [ 7.7395023, 47.422892 ], + [ 7.7394675, 47.4228553 ], + [ 7.739444, 47.4228629 ], + [ 7.7393577, 47.4229173 ], + [ 7.7393086, 47.4229355 ], + [ 7.7392693999999995, 47.422957 ], + [ 7.7392529, 47.4230058 ], + [ 7.7392353, 47.4230259 ], + [ 7.7391341, 47.4230562 ], + [ 7.7390508, 47.4231146 ], + [ 7.7389999, 47.4231795 ], + [ 7.7389506, 47.4233207 ], + [ 7.7389355, 47.4233745 ], + [ 7.7389487, 47.4234351 ], + [ 7.7389284, 47.4234692 ], + [ 7.7389268, 47.4234929 ], + [ 7.7389389, 47.4235264 ], + [ 7.7389094, 47.4235704 ], + [ 7.7389109, 47.4236785 ], + [ 7.7388907, 47.4237219 ], + [ 7.738889, 47.4237426 ], + [ 7.7389015, 47.4238137 ], + [ 7.7389, 47.4238551 ], + [ 7.7388839, 47.4239029 ], + [ 7.7388849, 47.4239245 ], + [ 7.7388962, 47.4239495 ], + [ 7.7389335, 47.4240153 ], + [ 7.7389108, 47.4240437 ], + [ 7.7388761, 47.4240688 ], + [ 7.7388712, 47.4241071 ], + [ 7.7388499, 47.424135 ], + [ 7.7387996999999995, 47.4241756 ], + [ 7.7387654999999995, 47.4241924 ], + [ 7.7386315, 47.4242212 ], + [ 7.7386152, 47.4242293 ], + [ 7.7385796, 47.4242801 ], + [ 7.7385587000000005, 47.424292 ], + [ 7.738503, 47.4242995 ], + [ 7.7384784, 47.4243054 ], + [ 7.7384458, 47.4243257 ], + [ 7.7384207, 47.4243742 ], + [ 7.7383347, 47.4244712 ], + [ 7.7383367, 47.4244837 ], + [ 7.7383546, 47.4244975 ], + [ 7.7384329, 47.4245171 ], + [ 7.7384546, 47.4245313 ], + [ 7.7384663, 47.4245602 ], + [ 7.7384638, 47.4245831 ], + [ 7.7384186, 47.4246869 ], + [ 7.7384241, 47.4247023 ], + [ 7.7384512, 47.4247468 ], + [ 7.7384493, 47.424761 ], + [ 7.7383744, 47.4248102 ], + [ 7.7383641, 47.4248326 ], + [ 7.7383613, 47.4248694 ], + [ 7.7383646, 47.4249304 ], + [ 7.738383, 47.4249785 ], + [ 7.7384134, 47.4250483 ], + [ 7.7384256, 47.4250656 ], + [ 7.7384965999999995, 47.4251067 ], + [ 7.7385000999999995, 47.4251289 ], + [ 7.7384917, 47.4251689 ], + [ 7.7384938, 47.4251934 ], + [ 7.7385348, 47.4252305 ], + [ 7.7385485, 47.4252538 ], + [ 7.7385711, 47.4253847 ], + [ 7.738595, 47.4254434 ], + [ 7.7385988, 47.4255026 ], + [ 7.7386042, 47.4255388 ], + [ 7.7386216, 47.4256375 ], + [ 7.7386232, 47.4257069 ], + [ 7.7386455, 47.4257574 ], + [ 7.7386551, 47.4257695 ], + [ 7.7386778, 47.4257868 ], + [ 7.7387183, 47.4258097 ], + [ 7.7387488, 47.4258318 ], + [ 7.7387522, 47.4259151 ], + [ 7.7387578999999995, 47.4259302 ], + [ 7.7388161, 47.4259726 ], + [ 7.738841, 47.4259967 ], + [ 7.7388566, 47.4260229 ], + [ 7.7388606, 47.4260423 ], + [ 7.7388808000000004, 47.4260586 ], + [ 7.738949, 47.4260904 ], + [ 7.7389521, 47.426103 ], + [ 7.7389408, 47.4261514 ], + [ 7.7389447, 47.4261608 ], + [ 7.7389867, 47.4261954 ], + [ 7.7390178, 47.4262326 ], + [ 7.7390397, 47.426265 ], + [ 7.7390609999999995, 47.4263154 ], + [ 7.7390681, 47.4263558 ], + [ 7.7390959, 47.4263682 ], + [ 7.7391299, 47.4263908 ], + [ 7.7391313, 47.4264237 ], + [ 7.7391432, 47.4264367 ], + [ 7.7391734, 47.4264537 ], + [ 7.7392012, 47.4264719 ], + [ 7.7392064, 47.4264945 ], + [ 7.7392222, 47.426549 ], + [ 7.7392418, 47.4265975 ], + [ 7.7392682, 47.4266518 ], + [ 7.7392857, 47.4266781 ], + [ 7.739312, 47.4267069 ], + [ 7.7393216, 47.4267455 ], + [ 7.7393339999999995, 47.4268116 ], + [ 7.7393197, 47.4268263 ], + [ 7.7392791, 47.4268508 ], + [ 7.7392632, 47.4268666 ], + [ 7.7392553, 47.4268829 ], + [ 7.7392546, 47.4268997 ], + [ 7.7392628, 47.4269441 ], + [ 7.739288, 47.4270232 ], + [ 7.7393056, 47.4270389 ], + [ 7.7393399, 47.4270655 ], + [ 7.7393602999999995, 47.4270939 ], + [ 7.7393884, 47.4271514 ], + [ 7.7394128, 47.4272242 ], + [ 7.7394154, 47.4272941 ], + [ 7.7393962, 47.4273517 ], + [ 7.7393542, 47.4273801 ], + [ 7.7393428, 47.4273917 ], + [ 7.7393462, 47.4274031 ], + [ 7.7394263, 47.4274438 ], + [ 7.7394448, 47.4274805 ], + [ 7.7394323, 47.4275477 ], + [ 7.7394442, 47.4276345 ], + [ 7.7393633, 47.4276992 ], + [ 7.7390379, 47.4279302 ], + [ 7.7384446, 47.4281837 ], + [ 7.7378806, 47.4282774 ], + [ 7.7372925, 47.4282972 ], + [ 7.736667, 47.4281878 ], + [ 7.7365493, 47.4282018 ], + [ 7.7364273, 47.4282093 ], + [ 7.736298, 47.4282133 ], + [ 7.7361653, 47.428207 ], + [ 7.7360372, 47.4281908 ], + [ 7.7357428, 47.4281453 ], + [ 7.7356683, 47.4281359 ], + [ 7.7355941, 47.4281293 ], + [ 7.7355193, 47.4281288 ], + [ 7.7354225, 47.4281366 ], + [ 7.7353265, 47.4281492 ], + [ 7.7351688, 47.4281765 ], + [ 7.735038, 47.4282063 ], + [ 7.7350171, 47.4282097 ], + [ 7.7348738, 47.4282487 ], + [ 7.7347589, 47.4282878 ], + [ 7.7346421, 47.4283288 ], + [ 7.7345261, 47.4283708 ], + [ 7.7343657, 47.4284326 ], + [ 7.7342478, 47.4284706 ], + [ 7.7341391999999995, 47.4285172 ], + [ 7.7340322, 47.4285706 ], + [ 7.7339312, 47.4286243 ], + [ 7.7338278, 47.4286768 ], + [ 7.7337389, 47.4287344 ], + [ 7.7328934, 47.4293541 ], + [ 7.7328899, 47.4293567 ], + [ 7.7328181, 47.4294227 ], + [ 7.7327655, 47.4294955 ], + [ 7.732729, 47.4295689 ], + [ 7.7326936, 47.4296744 ], + [ 7.7326542, 47.4297585 ], + [ 7.732609, 47.4298419 ], + [ 7.7325392, 47.4299162 ], + [ 7.7324579, 47.4299879 ], + [ 7.7323595, 47.4300471 ], + [ 7.7322467, 47.4300979 ], + [ 7.7321347, 47.4301398 ], + [ 7.7319683999999995, 47.4301976 ], + [ 7.7319068, 47.4302235 ], + [ 7.7318492, 47.4302519 ], + [ 7.7308488, 47.4307989 ], + [ 7.7307198, 47.4308731 ], + [ 7.7305954, 47.4309507 ], + [ 7.7304798, 47.4310332 ], + [ 7.7303122, 47.4311735 ], + [ 7.7301578, 47.4313026 ], + [ 7.7301535, 47.4313348 ], + [ 7.7301715, 47.4313607 ], + [ 7.7301886, 47.4313869 ], + [ 7.7302049, 47.4314133 ], + [ 7.7302203, 47.43144 ], + [ 7.730235, 47.4314669 ], + [ 7.7302487, 47.431494 ], + [ 7.7302616, 47.4315213 ], + [ 7.7302736, 47.4315488 ], + [ 7.7302847, 47.4315764 ], + [ 7.730295, 47.4316042 ], + [ 7.7303043, 47.4316322 ], + [ 7.7303128, 47.4316603 ], + [ 7.7303204, 47.4316885 ], + [ 7.7303271, 47.4317168 ], + [ 7.7303328, 47.4317452 ], + [ 7.7303377, 47.4317736 ], + [ 7.7303417, 47.4318022 ], + [ 7.7303447, 47.4319904 ], + [ 7.7303267, 47.432144 ], + [ 7.7305857, 47.4321142 ], + [ 7.7306566, 47.432106 ], + [ 7.7306933, 47.432183 ], + [ 7.7306305, 47.4324111 ], + [ 7.7306238, 47.43242 ], + [ 7.730577, 47.4325889 ], + [ 7.7305435, 47.4327216 ], + [ 7.7304799, 47.432962 ], + [ 7.7304769, 47.4329692 ], + [ 7.7304429, 47.433051 ], + [ 7.7303986, 47.4332329 ], + [ 7.7303203, 47.4334553 ], + [ 7.7302031, 47.4338131 ], + [ 7.7301202, 47.4340888 ], + [ 7.7301593, 47.4340912 ], + [ 7.7302025, 47.4341005 ], + [ 7.7305275, 47.4341705 ], + [ 7.7309909999999995, 47.4342699 ], + [ 7.7309942, 47.4343486 ], + [ 7.7309509, 47.4345823 ], + [ 7.7309484, 47.4346444 ], + [ 7.7310067, 47.434886 ], + [ 7.7310779, 47.4351431 ], + [ 7.7311774, 47.4352796 ], + [ 7.7314269, 47.4352453 ], + [ 7.7314699000000005, 47.4352371 ], + [ 7.7316242, 47.4352077 ], + [ 7.7317507, 47.435167 ], + [ 7.7319566, 47.4351076 ], + [ 7.7320495000000005, 47.4350832 ], + [ 7.7320743, 47.4350764 ], + [ 7.7321376, 47.4347936 ], + [ 7.7322565999999995, 47.4345639 ], + [ 7.7323039, 47.4344705 ], + [ 7.7324965, 47.4341724 ], + [ 7.7325697, 47.4339357 ], + [ 7.7325452, 47.4334384 ], + [ 7.7326969, 47.4331705 ], + [ 7.732603, 47.4326342 ], + [ 7.7324947, 47.4326333 ], + [ 7.7324967000000004, 47.4322537 ], + [ 7.7324981, 47.4319803 ], + [ 7.7325848, 47.4315256 ], + [ 7.7328214, 47.4311858 ], + [ 7.7325627, 47.4310023 ], + [ 7.7328638, 47.4307969 ], + [ 7.7331132, 47.4306831 ], + [ 7.7333557, 47.4305772 ], + [ 7.7335948, 47.4306242 ], + [ 7.7339922, 47.4307006 ], + [ 7.7345975, 47.430916 ], + [ 7.7354031, 47.4312316 ], + [ 7.7356099, 47.4308694 ], + [ 7.7354986, 47.4308331 ], + [ 7.735516, 47.4306223 ], + [ 7.7356227, 47.4305867 ], + [ 7.7356184, 47.4304912 ], + [ 7.7356294, 47.4304592 ], + [ 7.7356545, 47.4304274 ], + [ 7.7356292, 47.430398 ], + [ 7.7356103, 47.4303757 ], + [ 7.7355969, 47.4303583 ], + [ 7.7355858, 47.430336 ], + [ 7.7355763, 47.4303148 ], + [ 7.7355901, 47.4302948 ], + [ 7.7355217, 47.4301073 ], + [ 7.7355393, 47.4300772 ], + [ 7.7355732, 47.430044 ], + [ 7.7356078, 47.4300185 ], + [ 7.7356473, 47.4299938 ], + [ 7.7357007, 47.4299672 ], + [ 7.7357631, 47.4299374 ], + [ 7.7358185, 47.429924 ], + [ 7.7358595999999995, 47.4299178 ], + [ 7.7359158, 47.4299124 ], + [ 7.7359672, 47.4299109 ], + [ 7.736027, 47.4299149 ], + [ 7.7360823, 47.4299407 ], + [ 7.7361292, 47.4299701 ], + [ 7.7361773, 47.4300069 ], + [ 7.736244, 47.4300636 ], + [ 7.7363096, 47.4301188 ], + [ 7.7363796, 47.4301814 ], + [ 7.7364014, 47.4302043 ], + [ 7.7370677, 47.4306441 ], + [ 7.7365473, 47.4309743 ], + [ 7.7365588, 47.4309813 ], + [ 7.7365711, 47.4309877 ], + [ 7.7365842, 47.4309933 ], + [ 7.736598, 47.4309981 ], + [ 7.7366124, 47.4310021 ], + [ 7.7366272, 47.4310052 ], + [ 7.7366424, 47.4310075 ], + [ 7.7366577, 47.4310088 ], + [ 7.7366732, 47.4310092 ], + [ 7.7366887, 47.4310087 ], + [ 7.7367041, 47.4310073 ], + [ 7.7367192, 47.431005 ], + [ 7.7369668, 47.4309672 ], + [ 7.7372183, 47.4309438 ], + [ 7.7374717, 47.4309352 ], + [ 7.7375609, 47.430930000000004 ], + [ 7.7375644, 47.4309298 ], + [ 7.7375679, 47.4309293 ], + [ 7.7375713, 47.4309287 ], + [ 7.7375746, 47.4309278 ], + [ 7.7375778, 47.4309267 ], + [ 7.7375808, 47.4309255 ], + [ 7.7375836, 47.4309241 ], + [ 7.7375862, 47.4309225 ], + [ 7.7375887, 47.4309208 ], + [ 7.7375907999999995, 47.4309189 ], + [ 7.7375928, 47.4309169 ], + [ 7.7375944, 47.4309148 ], + [ 7.7375958, 47.4309126 ], + [ 7.7375969, 47.4309103 ], + [ 7.7375976, 47.430908 ], + [ 7.7375981, 47.4309056 ], + [ 7.7375983, 47.4309032 ], + [ 7.7375981, 47.4309008 ], + [ 7.7375932, 47.4308487 ], + [ 7.7375918, 47.4308316 ], + [ 7.7375926, 47.4308145 ], + [ 7.7375958, 47.4307975 ], + [ 7.7376011, 47.4307808 ], + [ 7.7376086, 47.4307644 ], + [ 7.7376183, 47.4307486 ], + [ 7.7376299, 47.4307334 ], + [ 7.7376467, 47.4307155 ], + [ 7.7376652, 47.4306985 ], + [ 7.7376854, 47.4306823 ], + [ 7.7377009999999995, 47.4306662 ], + [ 7.7377148, 47.4306494 ], + [ 7.7377267, 47.4306319 ], + [ 7.7377347, 47.4306143 ], + [ 7.7377475, 47.4305863 ], + [ 7.7376857, 47.4304759 ], + [ 7.737593, 47.4302525 ], + [ 7.7375346, 47.4300431 ], + [ 7.7377402, 47.4298568 ], + [ 7.7384532, 47.4298847 ], + [ 7.7384176, 47.4301599 ], + [ 7.7395086, 47.4306114 ], + [ 7.7404336, 47.4305248 ], + [ 7.740551, 47.4307787 ], + [ 7.7401729, 47.4308614 ], + [ 7.7398041, 47.4309364 ], + [ 7.7396557999999995, 47.4312951 ], + [ 7.7391559999999995, 47.4311991 ], + [ 7.7382649, 47.4310338 ], + [ 7.7379649, 47.4309773 ], + [ 7.7377953999999995, 47.4309622 ], + [ 7.737779, 47.430965 ], + [ 7.737763, 47.4309688 ], + [ 7.7377475, 47.4309735 ], + [ 7.7377327000000005, 47.4309792 ], + [ 7.7377188, 47.4309857 ], + [ 7.7377057, 47.430993 ], + [ 7.7376936, 47.431001 ], + [ 7.7376826, 47.4310098 ], + [ 7.7376728, 47.4310192 ], + [ 7.7376642, 47.4310291 ], + [ 7.7376570000000005, 47.4310395 ], + [ 7.7376431, 47.4310767 ], + [ 7.7376343, 47.4311146 ], + [ 7.7376306, 47.4311529 ], + [ 7.737632, 47.4311913 ], + [ 7.7376165, 47.4312963 ], + [ 7.7364833, 47.431422 ], + [ 7.7364291, 47.4314531 ], + [ 7.7362996, 47.4315256 ], + [ 7.7360606, 47.4316343 ], + [ 7.7359535, 47.4316832 ], + [ 7.7357838, 47.4317478 ], + [ 7.7356831, 47.4318262 ], + [ 7.7356494, 47.4318493 ], + [ 7.7355395, 47.4319151 ], + [ 7.7354321, 47.4319797 ], + [ 7.7354439, 47.4320625 ], + [ 7.7352815, 47.4324309 ], + [ 7.7352877, 47.4328168 ], + [ 7.735376, 47.4332308 ], + [ 7.7356049, 47.4336184 ], + [ 7.7358571, 47.434051 ], + [ 7.7360884, 47.4343952 ], + [ 7.7361386, 47.4344613 ], + [ 7.7361664999999995, 47.4344977 ], + [ 7.7364892, 47.434909 ], + [ 7.7367527, 47.435179 ], + [ 7.7368606, 47.4352952 ], + [ 7.7369637, 47.4353525 ], + [ 7.7373154, 47.4355045 ], + [ 7.7376480999999995, 47.4355535 ], + [ 7.7378476, 47.4355308 ], + [ 7.7378675999999995, 47.4354703 ], + [ 7.7378684, 47.4354121 ], + [ 7.7379673, 47.4352303 ], + [ 7.738006, 47.4351406 ], + [ 7.7381116, 47.435032 ], + [ 7.7382281, 47.4349778 ], + [ 7.7383484, 47.4349448 ], + [ 7.7386464, 47.4347994 ], + [ 7.7387806999999995, 47.434721 ], + [ 7.7388221999999995, 47.4346488 ], + [ 7.7389424, 47.434608 ], + [ 7.7390947, 47.4345755 ], + [ 7.739165, 47.4345378 ], + [ 7.7392674, 47.4345115 ], + [ 7.7393161, 47.4344496 ], + [ 7.7395192, 47.4344013 ], + [ 7.7396136, 47.4343581 ], + [ 7.7397829, 47.4343304 ], + [ 7.7398717999999995, 47.4342714 ], + [ 7.7401254999999995, 47.4341842 ], + [ 7.740293, 47.4341426 ], + [ 7.740498, 47.4341221 ], + [ 7.7406767, 47.4340875 ], + [ 7.7407511, 47.4341094 ], + [ 7.7410501, 47.4341737 ], + [ 7.741155, 47.4341759 ], + [ 7.7412638, 47.434199 ], + [ 7.7413995, 47.4341931 ], + [ 7.741471, 47.4342076 ], + [ 7.7415122, 47.4342251 ], + [ 7.7415226, 47.4342296 ], + [ 7.7415991, 47.4342791 ], + [ 7.7417323, 47.4343859 ], + [ 7.7417544, 47.4343912 ], + [ 7.7418718, 47.4344456 ], + [ 7.7419723, 47.4344548 ], + [ 7.7420186, 47.4344693 ], + [ 7.7420533, 47.4344727 ], + [ 7.7421258, 47.4344803 ], + [ 7.7421484, 47.4345132 ], + [ 7.7423888, 47.434863 ], + [ 7.7424525, 47.4350868 ], + [ 7.7424657, 47.4353705 ], + [ 7.7425489, 47.4356335 ], + [ 7.7424933, 47.4358052 ], + [ 7.7423171, 47.4362036 ], + [ 7.7424625, 47.436366 ], + [ 7.7424638, 47.4363675 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns053", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Wildenstein", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Wildenstein", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Wildenstein", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Wildenstein", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8671173, 47.4035499 ], + [ 7.8676768, 47.4036982 ], + [ 7.8678075, 47.4037525 ], + [ 7.8684683, 47.4040383 ], + [ 7.8688587, 47.4038381 ], + [ 7.8688206, 47.4037612 ], + [ 7.8688503999999995, 47.4037444 ], + [ 7.8688781, 47.403726 ], + [ 7.8689036, 47.4037062 ], + [ 7.8691911999999995, 47.4034185 ], + [ 7.8691945, 47.4034156 ], + [ 7.8691974, 47.4034126 ], + [ 7.8691999, 47.4034094 ], + [ 7.869202, 47.4034061 ], + [ 7.8692038, 47.4034027 ], + [ 7.8692051, 47.4033991 ], + [ 7.8692059, 47.4033956 ], + [ 7.8692063, 47.403392 ], + [ 7.869235, 47.4033581 ], + [ 7.8693354, 47.4032444 ], + [ 7.8694109999999995, 47.403191 ], + [ 7.8695286, 47.403119 ], + [ 7.8696779, 47.4030352 ], + [ 7.8697577, 47.4029919 ], + [ 7.8698419, 47.4029515 ], + [ 7.8699176, 47.4029225 ], + [ 7.870008, 47.4028849 ], + [ 7.8700986, 47.4028488 ], + [ 7.8701596, 47.4028184 ], + [ 7.8702478, 47.4027708 ], + [ 7.8703835, 47.4027123 ], + [ 7.8705098, 47.4026717 ], + [ 7.8706131, 47.4026441 ], + [ 7.8707036, 47.4026222 ], + [ 7.8707963, 47.4026033 ], + [ 7.8708828, 47.4025914 ], + [ 7.870985, 47.402571 ], + [ 7.8710734, 47.4025477 ], + [ 7.8711113, 47.4025362 ], + [ 7.8711893, 47.40251 ], + [ 7.8712883, 47.4024825 ], + [ 7.8713958, 47.4024692 ], + [ 7.8714295, 47.402459 ], + [ 7.8714672, 47.4024302 ], + [ 7.8715344, 47.4023798 ], + [ 7.8716246, 47.4023135 ], + [ 7.8716834, 47.4022803 ], + [ 7.8717486999999995, 47.4022558 ], + [ 7.8718245, 47.4022353 ], + [ 7.8719289, 47.4022221 ], + [ 7.8720576, 47.4022103 ], + [ 7.8721737, 47.4022111 ], + [ 7.8723089, 47.4022192 ], + [ 7.8724441, 47.402233 ], + [ 7.8725602, 47.4022412 ], + [ 7.8727253, 47.4022316 ], + [ 7.8728261, 47.4022263 ], + [ 7.8730637, 47.4022023 ], + [ 7.873331, 47.4021678 ], + [ 7.8734144, 47.4021503 ], + [ 7.8735049, 47.4021108 ], + [ 7.8740868, 47.4020649 ], + [ 7.8742883, 47.4020586 ], + [ 7.87449, 47.4020618 ], + [ 7.8746908, 47.4020744 ], + [ 7.8751043, 47.4021113 ], + [ 7.8752007, 47.4021219 ], + [ 7.8752965, 47.4021349 ], + [ 7.8753915, 47.4021502 ], + [ 7.8754608, 47.4021615 ], + [ 7.8755311, 47.4021693 ], + [ 7.8756022, 47.4021733 ], + [ 7.8758503, 47.4021889 ], + [ 7.8759475, 47.4021981 ], + [ 7.8760439, 47.40221 ], + [ 7.8761396, 47.4022246 ], + [ 7.8765556, 47.4022925 ], + [ 7.8767038, 47.4023203 ], + [ 7.8767881, 47.4023521 ], + [ 7.8769137, 47.4024156 ], + [ 7.876935, 47.4024359 ], + [ 7.8780895, 47.402043 ], + [ 7.8780962, 47.4020199 ], + [ 7.8780969, 47.4019976 ], + [ 7.8780947999999995, 47.4019755 ], + [ 7.8780896, 47.4019536 ], + [ 7.8780817, 47.401932 ], + [ 7.8780709, 47.401911 ], + [ 7.8780573, 47.4018908 ], + [ 7.8780412, 47.4018715 ], + [ 7.8780225999999995, 47.4018532 ], + [ 7.8780016, 47.4018362 ], + [ 7.8779785, 47.4018205 ], + [ 7.8779534, 47.4018062 ], + [ 7.8778539, 47.4017573 ], + [ 7.8777484, 47.4017145 ], + [ 7.8776377, 47.4016783 ], + [ 7.8769051999999995, 47.4014601 ], + [ 7.8763619, 47.4013052 ], + [ 7.8763451, 47.4013009 ], + [ 7.8763289, 47.4012955 ], + [ 7.8763135, 47.4012893 ], + [ 7.8762989999999995, 47.4012821 ], + [ 7.8762854, 47.4012741 ], + [ 7.876273, 47.4012653 ], + [ 7.8762618, 47.4012557 ], + [ 7.8762519, 47.4012456 ], + [ 7.8762433, 47.4012348 ], + [ 7.8762362, 47.4012236 ], + [ 7.8762305999999995, 47.4012121 ], + [ 7.8762304, 47.401202 ], + [ 7.8762313, 47.4011919 ], + [ 7.8762335, 47.401182 ], + [ 7.8762369, 47.4011722 ], + [ 7.8762381, 47.4011693 ], + [ 7.8762395, 47.4011665 ], + [ 7.8762409, 47.4011637 ], + [ 7.8762653, 47.401133 ], + [ 7.8762944, 47.4011153 ], + [ 7.8763252, 47.4010953 ], + [ 7.8764508, 47.4010796 ], + [ 7.8767534999999995, 47.4010481 ], + [ 7.8768585, 47.4010372 ], + [ 7.8769342, 47.401024 ], + [ 7.8770286, 47.4009956 ], + [ 7.8774592, 47.4008789 ], + [ 7.8772579, 47.4005763 ], + [ 7.8769046, 47.4000448 ], + [ 7.876675, 47.3997009 ], + [ 7.8763349, 47.3996641 ], + [ 7.8760002, 47.3998021 ], + [ 7.8758363, 47.3998484 ], + [ 7.8758222, 47.399845 ], + [ 7.8757319, 47.3998469 ], + [ 7.8756415, 47.3998437 ], + [ 7.8755519, 47.3998354 ], + [ 7.8754637, 47.399822 ], + [ 7.8753773, 47.3998038 ], + [ 7.8751201, 47.3997506 ], + [ 7.8749733, 47.3997384 ], + [ 7.8748258, 47.3997321 ], + [ 7.8746779, 47.3997317 ], + [ 7.8745647, 47.3997326 ], + [ 7.8744518, 47.3997388 ], + [ 7.8743399, 47.3997503 ], + [ 7.874241, 47.3997742 ], + [ 7.8741445, 47.3998022 ], + [ 7.8740506, 47.3998341 ], + [ 7.8739311999999995, 47.399871 ], + [ 7.8738072, 47.399900099999996 ], + [ 7.8736797, 47.3999213 ], + [ 7.8735499, 47.3999343 ], + [ 7.8735112, 47.3999433 ], + [ 7.8734737, 47.3999543 ], + [ 7.8734377, 47.3999674 ], + [ 7.8734034, 47.3999824 ], + [ 7.873371, 47.3999993 ], + [ 7.8733408, 47.400018 ], + [ 7.8732355, 47.4000958 ], + [ 7.8732246, 47.4001023 ], + [ 7.8732129, 47.4001082 ], + [ 7.8732006, 47.4001134 ], + [ 7.8731877, 47.4001179 ], + [ 7.8731742, 47.4001216 ], + [ 7.8731604, 47.4001246 ], + [ 7.8731462, 47.4001267 ], + [ 7.8731318, 47.400128 ], + [ 7.8731173, 47.4001285 ], + [ 7.8731028, 47.4001282 ], + [ 7.8730883, 47.400127 ], + [ 7.8730741, 47.400125 ], + [ 7.8730602, 47.4001223 ], + [ 7.8730485, 47.4001201 ], + [ 7.8730366, 47.4001186 ], + [ 7.8730246, 47.4001179 ], + [ 7.8730126, 47.4001178 ], + [ 7.872617, 47.3995382 ], + [ 7.8726014, 47.3995417 ], + [ 7.8725863, 47.3995461 ], + [ 7.8725718, 47.3995514 ], + [ 7.8725581, 47.3995576 ], + [ 7.8725453, 47.3995646 ], + [ 7.8725334, 47.3995723 ], + [ 7.8725225, 47.3995807 ], + [ 7.8724149, 47.3996958 ], + [ 7.8723911, 47.3997151 ], + [ 7.8723648, 47.3997329 ], + [ 7.8723362, 47.3997489 ], + [ 7.8723056, 47.3997631 ], + [ 7.8722732, 47.3997753 ], + [ 7.8722393, 47.3997855 ], + [ 7.8718148, 47.3999026 ], + [ 7.8717835, 47.3999115 ], + [ 7.8717511, 47.3999183 ], + [ 7.8717179, 47.3999232 ], + [ 7.8716842, 47.3999259 ], + [ 7.8716503, 47.3999265 ], + [ 7.8716164, 47.399925 ], + [ 7.8715829, 47.3999214 ], + [ 7.87155, 47.3999157 ], + [ 7.8714712, 47.399905 ], + [ 7.8713912, 47.399899 ], + [ 7.8713108, 47.3998976 ], + [ 7.8712515, 47.3999095 ], + [ 7.8711938, 47.3999246 ], + [ 7.871138, 47.3999427 ], + [ 7.8710845, 47.3999637 ], + [ 7.8710336, 47.3999876 ], + [ 7.8705064, 47.4002918 ], + [ 7.8704623, 47.4003254 ], + [ 7.8704222999999995, 47.4003612 ], + [ 7.8703867, 47.4003991 ], + [ 7.8703556, 47.4004585 ], + [ 7.8703313, 47.4005192 ], + [ 7.8703139, 47.4005811 ], + [ 7.8703056, 47.4006572 ], + [ 7.8703078, 47.4007336 ], + [ 7.8703206, 47.4008094 ], + [ 7.8703274, 47.4008772 ], + [ 7.8703284, 47.4009451 ], + [ 7.8703236, 47.401013 ], + [ 7.8703168, 47.4010439 ], + [ 7.8703062, 47.4010744 ], + [ 7.8702918, 47.4011041 ], + [ 7.8702737, 47.4011329 ], + [ 7.8702521, 47.4011605 ], + [ 7.8702272, 47.4011869 ], + [ 7.8701989999999995, 47.4012116 ], + [ 7.8701679, 47.4012347 ], + [ 7.870134, 47.4012559 ], + [ 7.8700976, 47.4012751 ], + [ 7.8700589, 47.4012921 ], + [ 7.8699608, 47.4013274 ], + [ 7.8698222, 47.4013649 ], + [ 7.8696099, 47.4014516 ], + [ 7.8693491, 47.40162 ], + [ 7.8693134, 47.4016531 ], + [ 7.8691966, 47.4018184 ], + [ 7.8691742, 47.4018501 ], + [ 7.868881, 47.4022654 ], + [ 7.8688633, 47.4022841 ], + [ 7.8688433, 47.4023018 ], + [ 7.8688211, 47.4023181 ], + [ 7.8687968999999995, 47.4023332 ], + [ 7.8687709, 47.4023467 ], + [ 7.8687433, 47.4023587 ], + [ 7.8687143, 47.402369 ], + [ 7.8686841, 47.4023776 ], + [ 7.8686528, 47.4023844 ], + [ 7.868315, 47.4024259 ], + [ 7.8679412, 47.4024562 ], + [ 7.867804, 47.4024695 ], + [ 7.8676679, 47.4024869 ], + [ 7.8675329, 47.4025081 ], + [ 7.8674507, 47.4025218 ], + [ 7.8673704, 47.40254 ], + [ 7.8672926, 47.4025626 ], + [ 7.8672055, 47.4025995 ], + [ 7.8671213, 47.4026393 ], + [ 7.8670402, 47.402682 ], + [ 7.8670079, 47.4027054 ], + [ 7.866979, 47.4027307 ], + [ 7.8669537, 47.4027577 ], + [ 7.8669322, 47.4027862 ], + [ 7.8668304, 47.4030188 ], + [ 7.8668157999999995, 47.4030924 ], + [ 7.8668116999999995, 47.4031666 ], + [ 7.866818, 47.4032408 ], + [ 7.8668559, 47.40343 ], + [ 7.8668852, 47.4034816 ], + [ 7.8669436, 47.4035206 ], + [ 7.8669785, 47.4035476 ], + [ 7.8671173, 47.4035499 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns319", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Vorderer Wisenberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Vorderer Wisenberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Vorderer Wisenberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Vorderer Wisenberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.2661388, 46.2308432 ], + [ 6.2658696, 46.2311139 ], + [ 6.2644466, 46.231295 ], + [ 6.2631725, 46.2318668 ], + [ 6.2625701, 46.2324726 ], + [ 6.262022, 46.2327185 ], + [ 6.2611752, 46.2335701 ], + [ 6.260001, 46.2337194 ], + [ 6.2587268, 46.2342912 ], + [ 6.2578648, 46.2351578 ], + [ 6.2575464, 46.2361873 ], + [ 6.25782, 46.237223 ], + [ 6.2578744, 46.2372815 ], + [ 6.2579369, 46.2375179 ], + [ 6.2587608, 46.2384021 ], + [ 6.2600098, 46.2390003 ], + [ 6.2614935, 46.2392212 ], + [ 6.2629861, 46.2390313 ], + [ 6.2642604, 46.2384595 ], + [ 6.264484, 46.2382346 ], + [ 6.2658925, 46.2384443 ], + [ 6.2659472, 46.2384374 ], + [ 6.266609, 46.2385359 ], + [ 6.2667570999999995, 46.238517 ], + [ 6.2667152, 46.2386527 ], + [ 6.266989, 46.2396884 ], + [ 6.2678131, 46.2405726 ], + [ 6.2690622, 46.2411706 ], + [ 6.270546, 46.2413914 ], + [ 6.2720386999999995, 46.2412014 ], + [ 6.2733129, 46.2406295 ], + [ 6.2739681, 46.2399705 ], + [ 6.2743177, 46.2400225 ], + [ 6.2758103, 46.2398324 ], + [ 6.2770844, 46.2392604 ], + [ 6.2779461, 46.2383937 ], + [ 6.2782642, 46.2373641 ], + [ 6.2779902, 46.2363284 ], + [ 6.277166, 46.2354443 ], + [ 6.2759169, 46.2348464 ], + [ 6.2744333, 46.2346257 ], + [ 6.2729408, 46.2348157 ], + [ 6.2716667, 46.2353876 ], + [ 6.2710115, 46.2360466 ], + [ 6.270662, 46.2359946 ], + [ 6.2705138, 46.2360135 ], + [ 6.2705558, 46.2358778 ], + [ 6.2703873, 46.2352407 ], + [ 6.2715557, 46.2347163 ], + [ 6.2724174, 46.2338496 ], + [ 6.2727355, 46.23282 ], + [ 6.2724617, 46.2317843 ], + [ 6.2716376, 46.2309002 ], + [ 6.2703887, 46.2303022 ], + [ 6.2689052, 46.2300814 ], + [ 6.2674128, 46.2302713 ], + [ 6.2661388, 46.2308432 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-10", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6337741, 47.4064391 ], + [ 7.6344377, 47.4065193 ], + [ 7.6351998, 47.4055118 ], + [ 7.6352715, 47.4054165 ], + [ 7.6353372, 47.4053429 ], + [ 7.6353822000000005, 47.4052912 ], + [ 7.6354209, 47.4052566 ], + [ 7.6354875, 47.4052104 ], + [ 7.6355531, 47.4051799 ], + [ 7.635637, 47.4051539 ], + [ 7.6357147, 47.4051415 ], + [ 7.6357909, 47.4051348 ], + [ 7.6363837, 47.4051215 ], + [ 7.6366458, 47.4051079 ], + [ 7.6369423, 47.405078 ], + [ 7.6372436, 47.4050422 ], + [ 7.6373974, 47.4050176 ], + [ 7.6374715, 47.4049961 ], + [ 7.6363433, 47.4037073 ], + [ 7.6367752, 47.4027722 ], + [ 7.6364858, 47.4025253 ], + [ 7.6363488, 47.402451 ], + [ 7.6360154, 47.4024232 ], + [ 7.6357225, 47.4024123 ], + [ 7.6352778, 47.4024098 ], + [ 7.6349494, 47.4023829 ], + [ 7.6346608, 47.4023684 ], + [ 7.6344726, 47.4032599 ], + [ 7.6342791, 47.4042025 ], + [ 7.6338965, 47.4060029 ], + [ 7.6337741, 47.4064391 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns250", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Häxenblätz - Brangboden", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Häxenblätz - Brangboden", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Häxenblätz - Brangboden", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Häxenblätz - Brangboden", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.8364096, 46.1788727 ], + [ 8.9353185, 46.180808 ], + [ 8.9401677, 46.180548 ], + [ 8.9448332, 46.1795938 ], + [ 8.9491108, 46.1779864 ], + [ 8.9528136, 46.1757962 ], + [ 8.9557796, 46.173119 ], + [ 8.9578794, 46.1700718 ], + [ 8.9590212, 46.1667879 ], + [ 8.959155299999999, 46.1634108 ], + [ 8.958276, 46.1600882 ], + [ 8.9564219, 46.1569652 ], + [ 8.9536743, 46.1541782 ], + [ 8.9501531, 46.151849 ], + [ 8.9460124, 46.1500794 ], + [ 8.941433, 46.1489466 ], + [ 8.9366149, 46.1485001 ], + [ 8.8377855, 46.1464683 ], + [ 8.8328933, 46.1466961 ], + [ 8.8281777, 46.1476296 ], + [ 8.8238468, 46.1492275 ], + [ 8.8200921, 46.1514193 ], + [ 8.8170793, 46.1541082 ], + [ 8.8149418, 46.1571754 ], + [ 8.8137741, 46.1604853 ], + [ 8.8136281, 46.1638918 ], + [ 8.8145102, 46.1672441 ], + [ 8.8163818, 46.1703942 ], + [ 8.8191603, 46.1732028 ], + [ 8.8227228, 46.1755456 ], + [ 8.826912, 46.1773191 ], + [ 8.8315425, 46.1784447 ], + [ 8.8364097, 46.1788728 ], + [ 8.8364096, 46.1788727 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 120, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "CTR0009", + "country" : "CHE", + "name" : [ + { + "text" : "CTR LOCARNO", + "lang" : "de-CH" + }, + { + "text" : "CTR LOCARNO", + "lang" : "fr-CH" + }, + { + "text" : "CTR LOCARNO", + "lang" : "it-CH" + }, + { + "text" : "CTR LOCARNO", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only permitted from an altitude of 120 m above ground with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Skyguide Special Flight Office", + "lang" : "de-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "it-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "en-GB" + } + ], + "siteURL" : "https://skyguide.ch/services/special-flights", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7978091, 47.3919126 ], + [ 7.7978429, 47.3919436 ], + [ 7.7978834, 47.3919803 ], + [ 7.797928, 47.3920146 ], + [ 7.7979766, 47.3920463 ], + [ 7.7980029, 47.3920602 ], + [ 7.79803, 47.3920734 ], + [ 7.7980578, 47.3920858 ], + [ 7.7981784, 47.3921368 ], + [ 7.7983059, 47.3921934 ], + [ 7.7984251, 47.3922516 ], + [ 7.7985384, 47.3923149 ], + [ 7.7986455, 47.3923831 ], + [ 7.7990464, 47.3926437 ], + [ 7.7990956, 47.3926762 ], + [ 7.7991493, 47.3927054 ], + [ 7.7992069, 47.3927307 ], + [ 7.7992679, 47.3927522 ], + [ 7.7994323, 47.3927981 ], + [ 7.7994742, 47.3928069 ], + [ 7.7995166, 47.3928148 ], + [ 7.7995593, 47.3928218 ], + [ 7.799651, 47.3928294 ], + [ 7.7997433, 47.3928325 ], + [ 7.7998357, 47.392831 ], + [ 7.7999124, 47.3928267 ], + [ 7.7999886, 47.3928197 ], + [ 7.8000642, 47.3928102 ], + [ 7.800127, 47.3928024 ], + [ 7.8001884, 47.3927905 ], + [ 7.8002477, 47.3927745 ], + [ 7.8003045, 47.3927547 ], + [ 7.8003546, 47.3927387 ], + [ 7.8004444, 47.3927157 ], + [ 7.8005347, 47.3926935 ], + [ 7.8006253, 47.3926721 ], + [ 7.8009766, 47.3925916 ], + [ 7.8010235, 47.3925801 ], + [ 7.8010703, 47.3925684 ], + [ 7.801117, 47.3925565 ], + [ 7.8011422, 47.39255 ], + [ 7.8011674, 47.3925434 ], + [ 7.8011925, 47.3925368 ], + [ 7.801217, 47.3925302 ], + [ 7.8012414, 47.3925236 ], + [ 7.8012657999999995, 47.392517 ], + [ 7.8014353, 47.3924793 ], + [ 7.8015836, 47.3924511 ], + [ 7.8016369, 47.3924407 ], + [ 7.801691, 47.3924323 ], + [ 7.8017456, 47.3924257 ], + [ 7.8017825, 47.3924219 ], + [ 7.8018197, 47.3924202 ], + [ 7.8018571, 47.3924207 ], + [ 7.8018942, 47.3924233 ], + [ 7.8019309, 47.3924281 ], + [ 7.8019668, 47.392435 ], + [ 7.8020018, 47.3924439 ], + [ 7.8020355, 47.3924548 ], + [ 7.8024575, 47.3926416 ], + [ 7.8024537, 47.3926546 ], + [ 7.8026857, 47.3926962 ], + [ 7.8027911, 47.3927163 ], + [ 7.8029043, 47.3927379 ], + [ 7.8029482, 47.3927462 ], + [ 7.8033677, 47.392816 ], + [ 7.803914, 47.3928681 ], + [ 7.8045446, 47.3929584 ], + [ 7.8048517, 47.3930021 ], + [ 7.8048735, 47.3930352 ], + [ 7.8049883, 47.3931353 ], + [ 7.8051411, 47.3932181 ], + [ 7.8052972, 47.3932667 ], + [ 7.8057058999999995, 47.3933403 ], + [ 7.8060386, 47.3934097 ], + [ 7.8064887, 47.3934659 ], + [ 7.806893, 47.3935203 ], + [ 7.8069994, 47.3935479 ], + [ 7.8072832, 47.3935598 ], + [ 7.8075391, 47.3935376 ], + [ 7.8077912, 47.3934642 ], + [ 7.8080256, 47.3933439 ], + [ 7.8085082, 47.3929942 ], + [ 7.8090057, 47.3928794 ], + [ 7.8092317, 47.3928086 ], + [ 7.8094075, 47.3927119 ], + [ 7.8095598, 47.3925591 ], + [ 7.8096281, 47.3924222 ], + [ 7.8095854, 47.3922557 ], + [ 7.809459, 47.3921542 ], + [ 7.8096762, 47.3916128 ], + [ 7.809577, 47.3916111 ], + [ 7.8093138, 47.39164 ], + [ 7.8091736, 47.3916866 ], + [ 7.8089282, 47.3918006 ], + [ 7.8087242, 47.3918592 ], + [ 7.8085336, 47.3918858 ], + [ 7.8083124, 47.3919012 ], + [ 7.8073113, 47.3916469 ], + [ 7.8071882, 47.3916332 ], + [ 7.8070622, 47.3916522 ], + [ 7.8067277, 47.3917535 ], + [ 7.8064442, 47.3918064 ], + [ 7.8061578, 47.3917632 ], + [ 7.8059180999999995, 47.3917001 ], + [ 7.8056917, 47.3916199 ], + [ 7.8055503, 47.3915462 ], + [ 7.8054428, 47.3914702 ], + [ 7.805083, 47.3914499 ], + [ 7.804219, 47.391386 ], + [ 7.8040562, 47.3913745 ], + [ 7.8031278, 47.3913076 ], + [ 7.8031127, 47.3913067 ], + [ 7.8021008, 47.3912301 ], + [ 7.8016419, 47.3911918 ], + [ 7.8012347, 47.3911566 ], + [ 7.8006934999999995, 47.391117 ], + [ 7.8001489, 47.3910705 ], + [ 7.7998537, 47.3909406 ], + [ 7.7997928, 47.3909138 ], + [ 7.7991586, 47.3907943 ], + [ 7.7986484, 47.3906328 ], + [ 7.7977922, 47.3902779 ], + [ 7.7974463, 47.3901661 ], + [ 7.7969675, 47.3900061 ], + [ 7.7963764, 47.3897598 ], + [ 7.7959963, 47.3896049 ], + [ 7.7959665, 47.3895928 ], + [ 7.7956289, 47.3894594 ], + [ 7.7955175, 47.3897803 ], + [ 7.7954913999999995, 47.3900196 ], + [ 7.7955143, 47.3903294 ], + [ 7.79584, 47.3904537 ], + [ 7.7959648, 47.3904917 ], + [ 7.7961555, 47.3905552 ], + [ 7.7962944, 47.3906317 ], + [ 7.7966074, 47.3908702 ], + [ 7.7966549, 47.3909095 ], + [ 7.796707, 47.390946 ], + [ 7.7967633, 47.3909795 ], + [ 7.7969596, 47.3910896 ], + [ 7.7970561, 47.3911501 ], + [ 7.7971543, 47.3912093 ], + [ 7.7972544, 47.3912671 ], + [ 7.7973292, 47.391312 ], + [ 7.7973975, 47.3913616 ], + [ 7.7974587, 47.3914152 ], + [ 7.7975122, 47.3914725 ], + [ 7.7976759, 47.3917452 ], + [ 7.7976987, 47.3917798 ], + [ 7.7977222, 47.3918141 ], + [ 7.7977465, 47.3918482 ], + [ 7.797777, 47.3918807 ], + [ 7.7978091, 47.3919126 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns225", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Ränggen", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Ränggen", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Ränggen", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Ränggen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8435162, 47.5330897 ], + [ 7.8439878, 47.5329315 ], + [ 7.8447151999999996, 47.5326674 ], + [ 7.8448952, 47.532619 ], + [ 7.8465361, 47.5326646 ], + [ 7.8477289, 47.5331761 ], + [ 7.848415, 47.5334715 ], + [ 7.8491227, 47.5337812 ], + [ 7.8499977, 47.5342163 ], + [ 7.8508, 47.5346137 ], + [ 7.8523391, 47.5352386 ], + [ 7.8527360999999996, 47.535063 ], + [ 7.8534577, 47.5347376 ], + [ 7.8545169999999995, 47.5342712 ], + [ 7.8548477, 47.5341182 ], + [ 7.8550756, 47.5339742 ], + [ 7.8551559, 47.5338935 ], + [ 7.8551316, 47.5338719 ], + [ 7.8551069, 47.5338831 ], + [ 7.8550816, 47.5338938 ], + [ 7.8550559, 47.5339039 ], + [ 7.8550297, 47.5339136 ], + [ 7.8550031, 47.5339226 ], + [ 7.8549761, 47.5339312 ], + [ 7.8549487, 47.5339391 ], + [ 7.8549209, 47.5339465 ], + [ 7.8548929, 47.5339533 ], + [ 7.8548645, 47.5339595 ], + [ 7.8548359, 47.5339651 ], + [ 7.8548071, 47.5339701 ], + [ 7.854778, 47.5339745 ], + [ 7.8547487, 47.5339783 ], + [ 7.8546306, 47.5339927 ], + [ 7.8546075, 47.5339951 ], + [ 7.8545843, 47.5339969 ], + [ 7.854561, 47.533998 ], + [ 7.8545376000000005, 47.5339985 ], + [ 7.8545142, 47.5339984 ], + [ 7.8544909, 47.5339976 ], + [ 7.8544675999999995, 47.5339962 ], + [ 7.8544444, 47.5339942 ], + [ 7.8544214, 47.5339916 ], + [ 7.8543985, 47.5339883 ], + [ 7.8543759, 47.5339844 ], + [ 7.8543534, 47.5339799 ], + [ 7.8543313, 47.5339748 ], + [ 7.8543095, 47.5339692 ], + [ 7.8542881, 47.5339629 ], + [ 7.854267, 47.533956 ], + [ 7.8542463, 47.5339486 ], + [ 7.8542261, 47.5339406 ], + [ 7.8542064, 47.5339321 ], + [ 7.8537241, 47.533715 ], + [ 7.853556, 47.5335539 ], + [ 7.8535425, 47.5335415 ], + [ 7.8535283, 47.5335295 ], + [ 7.8535134, 47.5335178 ], + [ 7.8534979, 47.5335066 ], + [ 7.8534818, 47.5334957 ], + [ 7.8534652, 47.5334852 ], + [ 7.8534479, 47.5334752 ], + [ 7.8534301, 47.5334656 ], + [ 7.8534119, 47.5334564 ], + [ 7.8533931, 47.533447699999996 ], + [ 7.8531962, 47.5333592 ], + [ 7.8531768, 47.5333502 ], + [ 7.8531578, 47.5333408 ], + [ 7.8531394, 47.5333309 ], + [ 7.8531215, 47.5333205 ], + [ 7.8531040999999995, 47.5333097 ], + [ 7.8530874, 47.5332985 ], + [ 7.8530712, 47.5332868 ], + [ 7.8530557, 47.5332748 ], + [ 7.8530408, 47.5332625 ], + [ 7.8530267, 47.5332497 ], + [ 7.8530131999999995, 47.5332366 ], + [ 7.8530004, 47.5332232 ], + [ 7.8525367, 47.5327155 ], + [ 7.8525054, 47.5326817 ], + [ 7.8524733, 47.5326482 ], + [ 7.8524405, 47.5326151 ], + [ 7.8524069999999995, 47.5325822 ], + [ 7.8523727999999995, 47.5325498 ], + [ 7.8523378, 47.5325176 ], + [ 7.8523022000000005, 47.5324859 ], + [ 7.8522658, 47.5324545 ], + [ 7.851927, 47.532167 ], + [ 7.8517418, 47.5319666 ], + [ 7.851722, 47.5319446 ], + [ 7.8517029, 47.5319223 ], + [ 7.8516846000000005, 47.5318997 ], + [ 7.8516669, 47.5318769 ], + [ 7.85165, 47.5318538 ], + [ 7.8516338, 47.5318305 ], + [ 7.8516183, 47.531807 ], + [ 7.8513483, 47.5313863 ], + [ 7.8511816, 47.5310723 ], + [ 7.8508225, 47.5305524 ], + [ 7.8504601, 47.5301519 ], + [ 7.8500225, 47.5296702 ], + [ 7.849862, 47.5295228 ], + [ 7.8498331, 47.5294958 ], + [ 7.8498051, 47.5294685 ], + [ 7.8497777, 47.5294408 ], + [ 7.8497512, 47.5294128 ], + [ 7.8497254, 47.5293844 ], + [ 7.8497004, 47.529355699999996 ], + [ 7.8496761, 47.5293268 ], + [ 7.8496527, 47.5292975 ], + [ 7.849633, 47.5292729 ], + [ 7.8496125, 47.5292486 ], + [ 7.8495913999999996, 47.5292245 ], + [ 7.8495696, 47.5292008 ], + [ 7.849547, 47.5291773 ], + [ 7.8495238, 47.5291542 ], + [ 7.8494999, 47.5291314 ], + [ 7.8494754, 47.5291089 ], + [ 7.8494502, 47.5290867 ], + [ 7.8494243, 47.5290649 ], + [ 7.8494022, 47.5290471 ], + [ 7.8493793, 47.5290297 ], + [ 7.8493558, 47.5290126 ], + [ 7.8493316, 47.5289961 ], + [ 7.8493069, 47.5289799 ], + [ 7.8492815, 47.5289642 ], + [ 7.8492555, 47.5289489 ], + [ 7.8492289, 47.5289341 ], + [ 7.8492018, 47.5289198 ], + [ 7.8491742, 47.5289059 ], + [ 7.849146, 47.5288925 ], + [ 7.8491173, 47.5288797 ], + [ 7.8490882, 47.5288673 ], + [ 7.8490585, 47.5288555 ], + [ 7.8487754, 47.5287449 ], + [ 7.8487443, 47.5287326 ], + [ 7.8487135, 47.5287199 ], + [ 7.8486831, 47.5287068 ], + [ 7.848653, 47.5286934 ], + [ 7.8486233, 47.5286795 ], + [ 7.848594, 47.5286654 ], + [ 7.8477925, 47.5282694 ], + [ 7.8477572, 47.5282523 ], + [ 7.8477215000000005, 47.5282358 ], + [ 7.8476852, 47.5282196 ], + [ 7.8476485, 47.528204 ], + [ 7.8476113, 47.5281889 ], + [ 7.8475737, 47.5281743 ], + [ 7.8475357, 47.5281601 ], + [ 7.8474973, 47.5281465 ], + [ 7.8474585, 47.5281334 ], + [ 7.8472205, 47.5280552 ], + [ 7.8467566, 47.5279824 ], + [ 7.846666, 47.527954199999996 ], + [ 7.8465997, 47.5279032 ], + [ 7.8465474, 47.5278831 ], + [ 7.8462024, 47.5279662 ], + [ 7.8461883, 47.5279699 ], + [ 7.8461745, 47.5279743 ], + [ 7.8461612, 47.5279792 ], + [ 7.8461483, 47.5279846 ], + [ 7.8461359999999996, 47.5279906 ], + [ 7.8461242, 47.5279971 ], + [ 7.846113, 47.5280041 ], + [ 7.8461025, 47.5280115 ], + [ 7.8460927, 47.5280193 ], + [ 7.8460836, 47.5280276 ], + [ 7.8460753, 47.5280362 ], + [ 7.8460677, 47.528045 ], + [ 7.8460609, 47.5280541 ], + [ 7.846055, 47.5280635 ], + [ 7.8460499, 47.5280731 ], + [ 7.8460457, 47.5280829 ], + [ 7.8460424, 47.5280929 ], + [ 7.8460401, 47.5281029 ], + [ 7.8460386, 47.5281131 ], + [ 7.846038, 47.5281233 ], + [ 7.8460384, 47.5281335 ], + [ 7.8460397, 47.5281437 ], + [ 7.8460637, 47.5282648 ], + [ 7.8460664, 47.5282816 ], + [ 7.8460683, 47.5282984 ], + [ 7.8460693, 47.5283153 ], + [ 7.8460695, 47.5283321 ], + [ 7.8460688, 47.528349 ], + [ 7.8460672, 47.5283659 ], + [ 7.8460648, 47.5283827 ], + [ 7.8460615, 47.5283994 ], + [ 7.8460574, 47.528416 ], + [ 7.8460524, 47.5284326 ], + [ 7.8460465, 47.528449 ], + [ 7.8460322, 47.5284854 ], + [ 7.8460171, 47.5285217 ], + [ 7.8460012, 47.5285578 ], + [ 7.8459845999999995, 47.5285938 ], + [ 7.8459672, 47.5286296 ], + [ 7.8459491, 47.5286653 ], + [ 7.8459302, 47.5287008 ], + [ 7.8459105000000005, 47.5287361 ], + [ 7.8456755, 47.5291282 ], + [ 7.8455201, 47.5293409 ], + [ 7.8455135, 47.5293505 ], + [ 7.8455075999999995, 47.5293603 ], + [ 7.8455025, 47.5293702 ], + [ 7.845498, 47.5293803 ], + [ 7.8454943, 47.5293906 ], + [ 7.8454913, 47.529401 ], + [ 7.8454891, 47.5294114 ], + [ 7.8454877, 47.5294219 ], + [ 7.8460129, 47.5295207 ], + [ 7.845956, 47.5301578 ], + [ 7.8458412, 47.5304285 ], + [ 7.845942, 47.5305433 ], + [ 7.845792, 47.530659299999996 ], + [ 7.8456145, 47.5305803 ], + [ 7.8454552, 47.5305537 ], + [ 7.8454508, 47.5305692 ], + [ 7.8454455, 47.5305846 ], + [ 7.8454394, 47.5305998 ], + [ 7.8454324, 47.5306149 ], + [ 7.8454245, 47.5306298 ], + [ 7.8454158, 47.5306444 ], + [ 7.8454063, 47.5306589 ], + [ 7.845396, 47.530673 ], + [ 7.8453849, 47.5306869 ], + [ 7.845373, 47.5307005 ], + [ 7.8453517, 47.5307236 ], + [ 7.8453297, 47.5307463 ], + [ 7.8453069, 47.5307686 ], + [ 7.8452834, 47.5307907 ], + [ 7.8452592, 47.5308124 ], + [ 7.8452342999999995, 47.5308337 ], + [ 7.8452088, 47.5308546 ], + [ 7.8451825, 47.5308752 ], + [ 7.8451556, 47.5308954 ], + [ 7.8450291, 47.5309734 ], + [ 7.844903, 47.5310359 ], + [ 7.8448933, 47.5310402 ], + [ 7.8448831, 47.5310441 ], + [ 7.8448725, 47.5310474 ], + [ 7.8448616, 47.5310501 ], + [ 7.8448504, 47.5310522 ], + [ 7.844839, 47.5310537 ], + [ 7.8448274, 47.5310546 ], + [ 7.8448158, 47.5310548 ], + [ 7.8448042000000004, 47.5310544 ], + [ 7.8447926, 47.5310534 ], + [ 7.8445947, 47.5310311 ], + [ 7.8444712, 47.5310344 ], + [ 7.8443097999999996, 47.5310655 ], + [ 7.8441569, 47.5311173 ], + [ 7.8438243, 47.5313215 ], + [ 7.843664, 47.5314591 ], + [ 7.8435175, 47.5316089 ], + [ 7.8432031, 47.5318688 ], + [ 7.8426389, 47.53259 ], + [ 7.842632, 47.5325996 ], + [ 7.8426259, 47.5326094 ], + [ 7.8426207, 47.5326195 ], + [ 7.8426164, 47.5326298 ], + [ 7.842613, 47.5326402 ], + [ 7.8426105, 47.5326507 ], + [ 7.8426089, 47.5326613 ], + [ 7.8426083, 47.532672 ], + [ 7.8426086, 47.5326827 ], + [ 7.8426098, 47.5326933 ], + [ 7.842612, 47.5327039 ], + [ 7.842615, 47.5327143 ], + [ 7.8426189, 47.5327246 ], + [ 7.8426237, 47.5327348 ], + [ 7.8426294, 47.5327447 ], + [ 7.842636, 47.5327544 ], + [ 7.8426434, 47.5327638 ], + [ 7.8426516, 47.5327729 ], + [ 7.8426606, 47.5327817 ], + [ 7.8426703, 47.5327901 ], + [ 7.8426807, 47.532798 ], + [ 7.8426919, 47.5328056 ], + [ 7.8428828, 47.5329265 ], + [ 7.8431102, 47.5330129 ], + [ 7.843476, 47.5330301 ], + [ 7.843498, 47.5330628 ], + [ 7.8435162, 47.5330897 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns270", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Sonnenberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Sonnenberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Sonnenberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Sonnenberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5505482, 47.4424153 ], + [ 7.5504821, 47.4435704 ], + [ 7.5508448, 47.4436215 ], + [ 7.5511558999999995, 47.4436585 ], + [ 7.5515988, 47.4436765 ], + [ 7.5518976, 47.4436861 ], + [ 7.5524234, 47.4436771 ], + [ 7.5529922, 47.4436414 ], + [ 7.5533691, 47.4436012 ], + [ 7.5538009, 47.4435358 ], + [ 7.5540785, 47.4434806 ], + [ 7.5545636, 47.443362 ], + [ 7.554919, 47.443258 ], + [ 7.5550426, 47.4432173 ], + [ 7.5554232, 47.4430903 ], + [ 7.5538442, 47.4418053 ], + [ 7.5531436, 47.4422462 ], + [ 7.5527931, 47.4423656 ], + [ 7.5523547, 47.4424255 ], + [ 7.5516182, 47.4424857 ], + [ 7.5509516, 47.442415 ], + [ 7.5505657, 47.4424034 ], + [ 7.5505482, 47.4424153 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr112", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Birsmatten", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Birsmatten", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Birsmatten", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Birsmatten", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.2364646, 46.2484926 ], + [ 6.236472, 46.2484893 ], + [ 6.2373344, 46.2476229 ], + [ 6.2376533, 46.2465934 ], + [ 6.2373801, 46.2455577 ], + [ 6.2365564, 46.2446733 ], + [ 6.2353076, 46.2440749 ], + [ 6.2338238, 46.2438536 ], + [ 6.2330871, 46.2439472 ], + [ 6.2323763, 46.2431839 ], + [ 6.2311276, 46.2425855 ], + [ 6.2296439, 46.2423641 ], + [ 6.228151, 46.2425536 ], + [ 6.2268763, 46.243125 ], + [ 6.2260137, 46.2439914 ], + [ 6.2256946, 46.2450208 ], + [ 6.2259676, 46.2460566 ], + [ 6.2267912, 46.2469411 ], + [ 6.22804, 46.2475395 ], + [ 6.2295238, 46.2477609 ], + [ 6.2295319, 46.2477598 ], + [ 6.2296154, 46.2480768 ], + [ 6.2304391, 46.2489612 ], + [ 6.231688, 46.2495596 ], + [ 6.2331719, 46.2497809 ], + [ 6.2346649, 46.2495914 ], + [ 6.2359397, 46.2490199 ], + [ 6.2364646, 46.2484926 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-32", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7270492, 47.3798266 ], + [ 7.7272029, 47.3802226 ], + [ 7.7273909, 47.3802978 ], + [ 7.7276039, 47.3801345 ], + [ 7.7278933, 47.3799431 ], + [ 7.7281565, 47.3797879 ], + [ 7.7284683, 47.3796181 ], + [ 7.7287274, 47.379488 ], + [ 7.7289607, 47.3794123 ], + [ 7.7291069, 47.3793521 ], + [ 7.7292062, 47.3792795 ], + [ 7.7293161, 47.3791646 ], + [ 7.7294501, 47.37901 ], + [ 7.7295958, 47.3788538 ], + [ 7.7296873, 47.378767 ], + [ 7.7297902, 47.3786472 ], + [ 7.7299864, 47.3785 ], + [ 7.7303505, 47.3782239 ], + [ 7.7308101, 47.377894 ], + [ 7.7310316, 47.3779491 ], + [ 7.7312024, 47.377977 ], + [ 7.7314185, 47.3779745 ], + [ 7.7315933999999995, 47.3779479 ], + [ 7.7317681, 47.377935 ], + [ 7.7319889, 47.3779447 ], + [ 7.7321314999999995, 47.3779446 ], + [ 7.7322413999999995, 47.3779223 ], + [ 7.732424, 47.3778886 ], + [ 7.7325814, 47.3778562 ], + [ 7.7326739, 47.3778404 ], + [ 7.7327566, 47.3778385 ], + [ 7.7329342, 47.3778104 ], + [ 7.7329761999999995, 47.3778086 ], + [ 7.7331, 47.3778119 ], + [ 7.7332278, 47.3778317 ], + [ 7.7333696, 47.3778385 ], + [ 7.7335255, 47.3778229 ], + [ 7.7336859, 47.3777858 ], + [ 7.7338056, 47.3777156 ], + [ 7.7339028, 47.3776532 ], + [ 7.7340292, 47.3775974 ], + [ 7.7342984999999995, 47.3775151 ], + [ 7.734266, 47.3773597 ], + [ 7.7332169, 47.3774559 ], + [ 7.7325679, 47.3775177 ], + [ 7.7320369, 47.3775705 ], + [ 7.7315416, 47.3776272 ], + [ 7.7313056, 47.3776476 ], + [ 7.7311476, 47.3776598 ], + [ 7.7310336, 47.3776608 ], + [ 7.7309672, 47.3776515 ], + [ 7.7308626, 47.3776001 ], + [ 7.7305937, 47.3774424 ], + [ 7.730397, 47.377331 ], + [ 7.7302131, 47.3772448 ], + [ 7.7300793, 47.3771869 ], + [ 7.7300061, 47.3771587 ], + [ 7.7299289, 47.3771569 ], + [ 7.7298969, 47.3771547 ], + [ 7.7298278, 47.3771485 ], + [ 7.7297829, 47.3771406 ], + [ 7.7297094, 47.3771255 ], + [ 7.7296703, 47.377119 ], + [ 7.7296309999999995, 47.3771192 ], + [ 7.7295922, 47.3771279 ], + [ 7.7294905, 47.3771713 ], + [ 7.7292615, 47.3772547 ], + [ 7.7290764, 47.3773257 ], + [ 7.7288864, 47.3773982 ], + [ 7.7287502, 47.3774568 ], + [ 7.7286063, 47.3775531 ], + [ 7.7285471, 47.3776249 ], + [ 7.7284727, 47.3777731 ], + [ 7.7283467, 47.3780155 ], + [ 7.7282715, 47.3781717 ], + [ 7.728338, 47.3782883 ], + [ 7.7284352, 47.3783186 ], + [ 7.728557, 47.3783444 ], + [ 7.7286549, 47.3783646 ], + [ 7.7289321, 47.3784156 ], + [ 7.7290552, 47.3784514 ], + [ 7.729113, 47.3784893 ], + [ 7.7291479, 47.3785476 ], + [ 7.7291408, 47.3786045 ], + [ 7.7288949, 47.3787949 ], + [ 7.7287453, 47.378931 ], + [ 7.7286228, 47.3790217 ], + [ 7.7284606, 47.3791177 ], + [ 7.7283066, 47.3791986 ], + [ 7.7281403, 47.3793038 ], + [ 7.7278911, 47.3794787 ], + [ 7.7277243, 47.3795941 ], + [ 7.7275576, 47.3796959 ], + [ 7.7273107, 47.3797847 ], + [ 7.7270492, 47.3798266 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns285", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Brocheni Flue", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Brocheni Flue", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Brocheni Flue", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Brocheni Flue", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5507789, 47.5059947 ], + [ 7.5513627, 47.5060146 ], + [ 7.5514028, 47.5060161 ], + [ 7.5514419, 47.5060174 ], + [ 7.5514756, 47.5060185 ], + [ 7.5515057, 47.5059178 ], + [ 7.5514828, 47.5059135 ], + [ 7.5514869000000004, 47.5058995 ], + [ 7.5515064, 47.5059017 ], + [ 7.5515115, 47.5057895 ], + [ 7.5515163, 47.5057259 ], + [ 7.5515245, 47.5056158 ], + [ 7.5515196, 47.5052836 ], + [ 7.5514756, 47.505286 ], + [ 7.5512963, 47.505291 ], + [ 7.5512862, 47.5052909 ], + [ 7.55126, 47.5052905 ], + [ 7.5512372, 47.50529 ], + [ 7.5513686, 47.5055473 ], + [ 7.5513899, 47.5056119 ], + [ 7.5514168999999995, 47.5056699 ], + [ 7.5514087, 47.5057173 ], + [ 7.5513879, 47.5058874 ], + [ 7.5513953, 47.5058885 ], + [ 7.5514027, 47.5058897 ], + [ 7.55141, 47.5058909 ], + [ 7.5514063, 47.5059049 ], + [ 7.5513995, 47.5059044 ], + [ 7.5513927, 47.5059038 ], + [ 7.5513859, 47.5059032 ], + [ 7.5513713, 47.5059017 ], + [ 7.5513566999999995, 47.5059002 ], + [ 7.5513422, 47.5058985 ], + [ 7.5512957, 47.5058924 ], + [ 7.5512497, 47.5058851 ], + [ 7.551204, 47.5058766 ], + [ 7.551144, 47.505866 ], + [ 7.5510839, 47.5058554 ], + [ 7.5510238, 47.505845 ], + [ 7.5509641, 47.5058347 ], + [ 7.5509044, 47.5058245 ], + [ 7.5508446, 47.5058145 ], + [ 7.5508091, 47.50581 ], + [ 7.550774, 47.5058041 ], + [ 7.5507395, 47.5057968 ], + [ 7.5507079, 47.5057888 ], + [ 7.550677, 47.5057796 ], + [ 7.5506469, 47.5057693 ], + [ 7.5506245, 47.5057623 ], + [ 7.5506024, 47.5057547 ], + [ 7.5505808, 47.5057465 ], + [ 7.5505668, 47.5057408 ], + [ 7.550553, 47.5057349 ], + [ 7.5505394, 47.5057287 ], + [ 7.5505301, 47.505721199999996 ], + [ 7.5505203, 47.5057139 ], + [ 7.5505101, 47.5057069 ], + [ 7.5504999, 47.5057005 ], + [ 7.5504893, 47.5056943 ], + [ 7.5504785, 47.5056884 ], + [ 7.5504655, 47.5056846 ], + [ 7.5504524, 47.505681 ], + [ 7.5504392, 47.5056777 ], + [ 7.5504083, 47.5056706 ], + [ 7.550377, 47.5056645 ], + [ 7.5503453, 47.5056595 ], + [ 7.5503085, 47.5056518 ], + [ 7.5502717, 47.5056441 ], + [ 7.5502348999999995, 47.5056365 ], + [ 7.5501948, 47.5056282 ], + [ 7.5501547, 47.5056201 ], + [ 7.5501146, 47.505612 ], + [ 7.5500914, 47.5056078 ], + [ 7.5500678, 47.5056048 ], + [ 7.5500439, 47.5056031 ], + [ 7.5500264, 47.5056026 ], + [ 7.5500088, 47.5056028 ], + [ 7.5499914, 47.5056037 ], + [ 7.5499745, 47.5056061 ], + [ 7.5499574, 47.505607499999996 ], + [ 7.5499402, 47.505608 ], + [ 7.5499221, 47.5056076 ], + [ 7.5499042, 47.5056061 ], + [ 7.5498864999999995, 47.5056036 ], + [ 7.5498692, 47.5056001 ], + [ 7.5498288, 47.5055934 ], + [ 7.5497885, 47.5055867 ], + [ 7.5497481, 47.5055801 ], + [ 7.5497026, 47.5055726 ], + [ 7.5496571, 47.5055651 ], + [ 7.5496116, 47.5055576 ], + [ 7.5495647, 47.5055496 ], + [ 7.5495178, 47.5055418 ], + [ 7.5494707, 47.5055342 ], + [ 7.5494235, 47.5055266 ], + [ 7.5493762, 47.5055192 ], + [ 7.5493288, 47.505512 ], + [ 7.5492824, 47.5055036 ], + [ 7.5492357, 47.5054957 ], + [ 7.5491888, 47.5054882 ], + [ 7.5491395, 47.505481 ], + [ 7.54909, 47.5054743 ], + [ 7.5490403, 47.5054682 ], + [ 7.54901, 47.5054632 ], + [ 7.5489794, 47.5054587 ], + [ 7.5489487, 47.5054548 ], + [ 7.548917, 47.5054512 ], + [ 7.5488851, 47.505448200000004 ], + [ 7.5488531, 47.5054457 ], + [ 7.5488441, 47.505446 ], + [ 7.548835, 47.5054458 ], + [ 7.5488261, 47.5054452 ], + [ 7.5488172, 47.505444 ], + [ 7.5488069, 47.5054423 ], + [ 7.5488001, 47.5054401 ], + [ 7.5487919, 47.5054374 ], + [ 7.5487842, 47.5054343 ], + [ 7.5487766, 47.5054306 ], + [ 7.5487696, 47.5054266 ], + [ 7.5487631, 47.5054221 ], + [ 7.5487572, 47.5054173 ], + [ 7.5487519, 47.5054121 ], + [ 7.5487473, 47.5054043 ], + [ 7.5487425, 47.5053965 ], + [ 7.5487378, 47.5053888 ], + [ 7.5487328, 47.5053808 ], + [ 7.5487278, 47.5053729 ], + [ 7.5487227, 47.505365 ], + [ 7.5487096000000005, 47.5053485 ], + [ 7.5486947, 47.5053327 ], + [ 7.5486782, 47.5053176 ], + [ 7.5486612, 47.5053043 ], + [ 7.548643, 47.5052918 ], + [ 7.5486235, 47.5052802 ], + [ 7.5485997000000005, 47.5052697 ], + [ 7.5485754, 47.5052598 ], + [ 7.5485505, 47.5052506 ], + [ 7.5485, 47.5052346 ], + [ 7.5484478, 47.5052213 ], + [ 7.5483942, 47.5052109 ], + [ 7.5483396, 47.5052033 ], + [ 7.5482859, 47.5051936 ], + [ 7.5482324, 47.5051832 ], + [ 7.5481793, 47.5051721 ], + [ 7.5481312, 47.5051614 ], + [ 7.5480936, 47.5051526 ], + [ 7.5480833, 47.5051502 ], + [ 7.5480357, 47.5051384 ], + [ 7.5479134, 47.5051042 ], + [ 7.5477778, 47.505072 ], + [ 7.5476201, 47.5050379 ], + [ 7.5473136, 47.5049745 ], + [ 7.547275, 47.5049606 ], + [ 7.5472346, 47.5049492 ], + [ 7.5471927, 47.5049406 ], + [ 7.5471499, 47.5049347 ], + [ 7.5470948, 47.5049312 ], + [ 7.5470835, 47.5049311 ], + [ 7.5470722, 47.5049312 ], + [ 7.5470608, 47.5049314 ], + [ 7.547061, 47.5049382 ], + [ 7.5470572, 47.5049434 ], + [ 7.5470526, 47.5049483 ], + [ 7.5470475, 47.504953 ], + [ 7.5470417, 47.5049573 ], + [ 7.5470354, 47.5049612 ], + [ 7.5470287, 47.5049648 ], + [ 7.5470214, 47.5049679 ], + [ 7.5470138, 47.5049706 ], + [ 7.5470059, 47.5049728 ], + [ 7.5469938, 47.5049747 ], + [ 7.5469991, 47.5050356 ], + [ 7.5469072, 47.505011 ], + [ 7.5467995, 47.5050526 ], + [ 7.5466655, 47.5049722 ], + [ 7.5464631, 47.504959 ], + [ 7.5462244, 47.5050091 ], + [ 7.5460096, 47.5050356 ], + [ 7.5458131999999996, 47.5051155 ], + [ 7.5456145, 47.5051347 ], + [ 7.5454346999999995, 47.5050901 ], + [ 7.5452194, 47.5050875 ], + [ 7.5452901, 47.5048853 ], + [ 7.5452525999999995, 47.5047863 ], + [ 7.5453919, 47.5045046 ], + [ 7.545338, 47.5044498 ], + [ 7.5450538, 47.5044823 ], + [ 7.5448239, 47.5045899 ], + [ 7.5447248, 47.5046447 ], + [ 7.5445918, 47.5046611 ], + [ 7.5444125, 47.5047262 ], + [ 7.5443859, 47.5046333 ], + [ 7.5443979, 47.5045736 ], + [ 7.5444663, 47.5044694 ], + [ 7.544423, 47.5043761 ], + [ 7.5443952, 47.5043743 ], + [ 7.5441799, 47.5043623 ], + [ 7.5440444, 47.5043953 ], + [ 7.54391, 47.5043454 ], + [ 7.5437579, 47.5043392 ], + [ 7.5437116, 47.5044346 ], + [ 7.5436011, 47.5044333 ], + [ 7.5435668, 47.5043168 ], + [ 7.5434698000000004, 47.5042491 ], + [ 7.5433749, 47.5042486 ], + [ 7.5433099, 47.5042803 ], + [ 7.5432065, 47.5044163 ], + [ 7.5430095999999995, 47.5043814 ], + [ 7.5425947, 47.5044438 ], + [ 7.5425329, 47.504319699999996 ], + [ 7.5423632, 47.5042843 ], + [ 7.5422602, 47.5042104 ], + [ 7.5420077, 47.5041563 ], + [ 7.541831, 47.5042175 ], + [ 7.5417506, 47.5043276 ], + [ 7.5414034999999995, 47.5044429 ], + [ 7.5412064, 47.5045811 ], + [ 7.5410693, 47.5045233 ], + [ 7.5409825999999995, 47.504515 ], + [ 7.5404618, 47.504658 ], + [ 7.5403409, 47.5046556 ], + [ 7.5399198, 47.5047694 ], + [ 7.5397146, 47.5047798 ], + [ 7.539544, 47.5048197 ], + [ 7.5394365, 47.5049531 ], + [ 7.5393218, 47.5049757 ], + [ 7.5390397, 47.5049983 ], + [ 7.5387299, 47.5049669 ], + [ 7.5386033999999995, 47.505 ], + [ 7.5385433, 47.5051415 ], + [ 7.5384082, 47.5052346 ], + [ 7.5382739, 47.5052454 ], + [ 7.5383028, 47.5050958 ], + [ 7.5382781, 47.5049978 ], + [ 7.5381442, 47.5049531 ], + [ 7.5380183, 47.504945 ], + [ 7.5376823, 47.5049479 ], + [ 7.5375691, 47.5049198 ], + [ 7.5374874, 47.5049286 ], + [ 7.5373675, 47.5049923 ], + [ 7.5371688, 47.5049216 ], + [ 7.5370683, 47.5049298 ], + [ 7.5369243, 47.5050318 ], + [ 7.5368809, 47.5051241 ], + [ 7.5367925, 47.5051331 ], + [ 7.5366684, 47.5049762 ], + [ 7.5365604, 47.504922 ], + [ 7.5364567000000005, 47.5049603 ], + [ 7.5363554, 47.505017 ], + [ 7.5361459, 47.5050094 ], + [ 7.5359861, 47.5050364 ], + [ 7.5359924, 47.505072 ], + [ 7.5360045, 47.5051404 ], + [ 7.5360137, 47.5051681 ], + [ 7.536111, 47.5051155 ], + [ 7.5362206, 47.5050815 ], + [ 7.5362922999999995, 47.5050959 ], + [ 7.5363445, 47.50512 ], + [ 7.536372, 47.5051282 ], + [ 7.5363993, 47.5051224 ], + [ 7.5364356, 47.5050742 ], + [ 7.5365052, 47.5050129 ], + [ 7.5365269999999995, 47.5049971 ], + [ 7.5366016, 47.5050124 ], + [ 7.5366688, 47.5050817 ], + [ 7.5366764, 47.5050868 ], + [ 7.5367885999999995, 47.5052601 ], + [ 7.536822, 47.5052691 ], + [ 7.5369141, 47.5052334 ], + [ 7.5369174, 47.5052291 ], + [ 7.5369706, 47.5051034 ], + [ 7.5370108, 47.5050391 ], + [ 7.5371519, 47.5049871 ], + [ 7.5371762, 47.5049837 ], + [ 7.537301, 47.505076 ], + [ 7.5373067, 47.5050894 ], + [ 7.5373967, 47.5050855 ], + [ 7.5374209, 47.5050728 ], + [ 7.537513, 47.5049928 ], + [ 7.5380205, 47.5050046 ], + [ 7.5381675999999995, 47.5050225 ], + [ 7.5381764, 47.5050201 ], + [ 7.5382009, 47.5050538 ], + [ 7.5381635, 47.5051665 ], + [ 7.5381776, 47.5052162 ], + [ 7.5382055, 47.5053143 ], + [ 7.5382679, 47.5053583 ], + [ 7.5384632, 47.5053357 ], + [ 7.5385618, 47.5052424 ], + [ 7.5386027, 47.505196 ], + [ 7.5386927, 47.5050383 ], + [ 7.5388806, 47.5050429 ], + [ 7.5389975, 47.5050587 ], + [ 7.5390239999999995, 47.5050846 ], + [ 7.5390166, 47.5051449 ], + [ 7.539063, 47.5051736 ], + [ 7.5393239, 47.5051094 ], + [ 7.5394189, 47.5050388 ], + [ 7.5395192, 47.5050015 ], + [ 7.5395823, 47.5048767 ], + [ 7.5399979, 47.5048142 ], + [ 7.5400323, 47.5048031 ], + [ 7.5401634, 47.5047609 ], + [ 7.5403998, 47.5047009 ], + [ 7.5405668, 47.5047147 ], + [ 7.5406948, 47.5046485 ], + [ 7.5410075, 47.5045644 ], + [ 7.5410741, 47.504660200000004 ], + [ 7.5411302, 47.5046733 ], + [ 7.5412284, 47.5046314 ], + [ 7.5412502, 47.5046221 ], + [ 7.5414613, 47.5044755 ], + [ 7.5416411, 47.5044334 ], + [ 7.5418189, 47.5043577 ], + [ 7.5418723, 47.5042617 ], + [ 7.5419589, 47.504217 ], + [ 7.5420841, 47.5042043 ], + [ 7.5421098, 47.5042185 ], + [ 7.5422028, 47.5042481 ], + [ 7.5422239, 47.5042816 ], + [ 7.542267, 47.5043499 ], + [ 7.5424529, 47.504372599999996 ], + [ 7.542477, 47.5044314 ], + [ 7.5425149000000005, 47.504524 ], + [ 7.5426322, 47.5045003 ], + [ 7.5430371, 47.5044391 ], + [ 7.5432049, 47.5044736 ], + [ 7.5432182999999995, 47.5044763 ], + [ 7.5432413, 47.5044698 ], + [ 7.5433151, 47.5043762 ], + [ 7.5433157, 47.5043588 ], + [ 7.5433386, 47.5043464 ], + [ 7.5433759, 47.5042993 ], + [ 7.5434988, 47.5043407 ], + [ 7.5435061, 47.5043673 ], + [ 7.5435403999999995, 47.5044771 ], + [ 7.5436172, 47.5045247 ], + [ 7.5436227, 47.5045244 ], + [ 7.5437, 47.5045168 ], + [ 7.5437533, 47.5044818 ], + [ 7.5438304, 47.5043908 ], + [ 7.5439338, 47.504405 ], + [ 7.5440301, 47.5044738 ], + [ 7.5441776, 47.5044074 ], + [ 7.5442205, 47.5044117 ], + [ 7.5443618, 47.5044256 ], + [ 7.5443838, 47.5044521 ], + [ 7.5443614, 47.5045542 ], + [ 7.5443344, 47.5046979 ], + [ 7.5443458, 47.5047278 ], + [ 7.5443523, 47.5047395 ], + [ 7.544403, 47.5047799 ], + [ 7.5444743, 47.5047634 ], + [ 7.544625, 47.5047283 ], + [ 7.5447822, 47.5047117 ], + [ 7.5448215, 47.504674 ], + [ 7.5448872, 47.50461 ], + [ 7.5450323, 47.5045495 ], + [ 7.5450985, 47.5045217 ], + [ 7.5451249, 47.5045188 ], + [ 7.5451846, 47.5045125 ], + [ 7.545247, 47.5045133 ], + [ 7.5452874, 47.5045138 ], + [ 7.5453062, 47.5045418 ], + [ 7.5452501, 47.5045944 ], + [ 7.5452405, 47.5046023 ], + [ 7.5452211, 47.5046378 ], + [ 7.5451975000000004, 47.5047408 ], + [ 7.5451951, 47.5047515 ], + [ 7.5451536, 47.5047838 ], + [ 7.5451371, 47.5047966 ], + [ 7.5451488, 47.5048114 ], + [ 7.5452117, 47.5048914 ], + [ 7.5452047, 47.5049241 ], + [ 7.5450424, 47.5049437 ], + [ 7.5450225, 47.5049559 ], + [ 7.5449905, 47.505004 ], + [ 7.5450419, 47.5050938 ], + [ 7.5450712, 47.5051561 ], + [ 7.5451128, 47.5051558 ], + [ 7.5452903, 47.5051548 ], + [ 7.5454278, 47.5051497 ], + [ 7.5454751, 47.505148 ], + [ 7.5455061, 47.5051655 ], + [ 7.5455348, 47.5051817 ], + [ 7.545577, 47.5051798 ], + [ 7.5457726, 47.5051709 ], + [ 7.5459995, 47.505088 ], + [ 7.5460531, 47.5050789 ], + [ 7.546074, 47.5050703 ], + [ 7.5463071, 47.5050354 ], + [ 7.5465011, 47.5050005 ], + [ 7.5465286, 47.5050022 ], + [ 7.5466118, 47.5050055 ], + [ 7.54662, 47.5050088 ], + [ 7.5466726, 47.5050187 ], + [ 7.546709, 47.5050443 ], + [ 7.5467792, 47.5050936 ], + [ 7.5468036, 47.5051018 ], + [ 7.546827, 47.5050913 ], + [ 7.5468943, 47.5050612 ], + [ 7.5469416, 47.505066 ], + [ 7.5469927, 47.505072 ], + [ 7.5470927, 47.5051242 ], + [ 7.5471327, 47.505336 ], + [ 7.5472884, 47.5054086 ], + [ 7.5472849, 47.5054291 ], + [ 7.54727, 47.5054462 ], + [ 7.5471967, 47.5055307 ], + [ 7.5473126, 47.5055589 ], + [ 7.5474828, 47.5055662 ], + [ 7.5475103, 47.5055553 ], + [ 7.5475369, 47.5055447 ], + [ 7.5476065, 47.5054969 ], + [ 7.5476649, 47.5055271 ], + [ 7.5476849, 47.5055348 ], + [ 7.5477427, 47.505599 ], + [ 7.5477606, 47.5056005 ], + [ 7.5478495, 47.5056503 ], + [ 7.5478876, 47.5056508 ], + [ 7.5479275, 47.5056258 ], + [ 7.5480339, 47.5055494 ], + [ 7.5480691, 47.5055313 ], + [ 7.5481381, 47.5054852 ], + [ 7.5481565, 47.5054863 ], + [ 7.548168, 47.5054804 ], + [ 7.5482212, 47.50549 ], + [ 7.5483996, 47.5055222 ], + [ 7.5484821, 47.5055444 ], + [ 7.5485231, 47.5055554 ], + [ 7.5485281, 47.5055723 ], + [ 7.5485491, 47.5056429 ], + [ 7.5485925, 47.505656 ], + [ 7.5486292, 47.50565 ], + [ 7.5487213, 47.5056351 ], + [ 7.5488249, 47.5056455 ], + [ 7.5489698, 47.5056585 ], + [ 7.5491472, 47.5057325 ], + [ 7.5492061, 47.5057634 ], + [ 7.5494316999999995, 47.5057486 ], + [ 7.5495859, 47.5058209 ], + [ 7.549658, 47.5058314 ], + [ 7.5498926, 47.5058222 ], + [ 7.5500696, 47.5058707 ], + [ 7.550187, 47.5059154 ], + [ 7.5502241, 47.5059315 ], + [ 7.5502763999999996, 47.5059471 ], + [ 7.5503059, 47.5059516 ], + [ 7.550347, 47.5059628 ], + [ 7.5504339, 47.5059712 ], + [ 7.5504494, 47.5059736 ], + [ 7.5505074, 47.5059772 ], + [ 7.5505867, 47.5059881 ], + [ 7.5507789, 47.5059947 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns191", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Birsig", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Birsig", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Birsig", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Birsig", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7502639, 47.4352752 ], + [ 7.749639, 47.4354587 ], + [ 7.7494807, 47.4355052 ], + [ 7.7489402, 47.435664 ], + [ 7.7488765, 47.4356859 ], + [ 7.7487342, 47.4357348 ], + [ 7.7482315, 47.4359073 ], + [ 7.7478543, 47.4361049 ], + [ 7.7477101, 47.4361804 ], + [ 7.7476217, 47.4362267 ], + [ 7.7476315, 47.4362316 ], + [ 7.7476586, 47.4362451 ], + [ 7.7482757, 47.4365529 ], + [ 7.7489044, 47.4368664 ], + [ 7.7497519, 47.4371687 ], + [ 7.7499075, 47.4372438 ], + [ 7.7499908, 47.4372839 ], + [ 7.7502359, 47.4370126 ], + [ 7.7503705, 47.4368626 ], + [ 7.7503777, 47.4368493 ], + [ 7.7503809, 47.4368425 ], + [ 7.7503835, 47.4368365 ], + [ 7.7503875, 47.4368268 ], + [ 7.7503966, 47.4368041 ], + [ 7.7504026, 47.4367882 ], + [ 7.7504058, 47.4367792 ], + [ 7.7504119, 47.436761 ], + [ 7.7504154, 47.4367497 ], + [ 7.7504174, 47.4367425 ], + [ 7.7504291, 47.4366929 ], + [ 7.7504398, 47.4366666 ], + [ 7.7504433, 47.4366579 ], + [ 7.7504466, 47.436649 ], + [ 7.7504485, 47.4366438 ], + [ 7.7504508, 47.4366371 ], + [ 7.7504523, 47.4366322 ], + [ 7.7504544, 47.4366246 ], + [ 7.7504564, 47.4366171 ], + [ 7.7504573, 47.4366124 ], + [ 7.7504581, 47.4366077 ], + [ 7.7504587, 47.4366029 ], + [ 7.7504604, 47.4365888 ], + [ 7.7504636, 47.4365651 ], + [ 7.7504641, 47.4365604 ], + [ 7.7504646, 47.4365556 ], + [ 7.7504649, 47.4365508 ], + [ 7.750466, 47.4365217 ], + [ 7.7504663, 47.4365169 ], + [ 7.7504672, 47.4365041 ], + [ 7.7504674, 47.436499 ], + [ 7.7504675, 47.436494 ], + [ 7.7504675, 47.4364889 ], + [ 7.7504673, 47.4364839 ], + [ 7.7504671, 47.4364789 ], + [ 7.750466, 47.4364659 ], + [ 7.7504657, 47.4364609 ], + [ 7.7504653, 47.436451 ], + [ 7.7504645, 47.4364311 ], + [ 7.7504639, 47.4364213 ], + [ 7.7504635, 47.4364163 ], + [ 7.750463, 47.4364115 ], + [ 7.7504623, 47.4364066 ], + [ 7.750461, 47.4363993 ], + [ 7.7504562, 47.4363749 ], + [ 7.7504529, 47.4363592 ], + [ 7.7504493, 47.4363435 ], + [ 7.7504456, 47.4363291 ], + [ 7.7504425, 47.4363165 ], + [ 7.7504387999999995, 47.4363022 ], + [ 7.7504356, 47.4362897 ], + [ 7.7504287, 47.4362641 ], + [ 7.7504255, 47.4362513 ], + [ 7.7504195, 47.4362287 ], + [ 7.7504183, 47.4362245 ], + [ 7.7504154, 47.4362145 ], + [ 7.7504142, 47.4362103 ], + [ 7.7504121, 47.4362019 ], + [ 7.7504082, 47.4361876 ], + [ 7.750405, 47.436175 ], + [ 7.7504010999999995, 47.4361608 ], + [ 7.7503982, 47.4361494 ], + [ 7.7503945, 47.4361338 ], + [ 7.7503913, 47.436118 ], + [ 7.7503904, 47.4361137 ], + [ 7.7503871, 47.4360935 ], + [ 7.7503853, 47.4360805 ], + [ 7.7503834, 47.4360688 ], + [ 7.7503811, 47.4360528 ], + [ 7.7503806, 47.4360484 ], + [ 7.7503801, 47.436044 ], + [ 7.7503787, 47.4360264 ], + [ 7.7503779, 47.4360176 ], + [ 7.7503741, 47.4359898 ], + [ 7.7503736, 47.4359853 ], + [ 7.7503732, 47.4359807 ], + [ 7.7503726, 47.4359714 ], + [ 7.7503722, 47.4359574 ], + [ 7.750372, 47.4359387 ], + [ 7.7503719, 47.4359199 ], + [ 7.7503721, 47.4359059 ], + [ 7.7503724, 47.4358966 ], + [ 7.7503729, 47.4358873 ], + [ 7.750374, 47.4358753 ], + [ 7.7503741999999995, 47.4358709 ], + [ 7.7503747, 47.435862 ], + [ 7.7503755, 47.4358398 ], + [ 7.750376, 47.435831 ], + [ 7.7503771, 47.4358189 ], + [ 7.7503773, 47.4358143 ], + [ 7.7503776, 47.4358096 ], + [ 7.7503778, 47.4358003 ], + [ 7.7503779, 47.4357909 ], + [ 7.7503779, 47.4357768 ], + [ 7.7503777, 47.4357437 ], + [ 7.7503774, 47.43571 ], + [ 7.7503774, 47.4356854 ], + [ 7.7503775, 47.4356756 ], + [ 7.7503777, 47.4356658 ], + [ 7.7503782, 47.435656 ], + [ 7.7503793, 47.435643 ], + [ 7.7503796, 47.435638 ], + [ 7.7503798, 47.4356329 ], + [ 7.75038, 47.4356226 ], + [ 7.7503801, 47.4356124 ], + [ 7.7503801, 47.4355969 ], + [ 7.7503796, 47.4355144 ], + [ 7.7503796, 47.4354989 ], + [ 7.7503799, 47.4354887 ], + [ 7.7503801, 47.4354836 ], + [ 7.7503804, 47.4354785 ], + [ 7.7503815, 47.4354658 ], + [ 7.7503817999999995, 47.4354611 ], + [ 7.7503828, 47.4354425 ], + [ 7.7503835, 47.4354332 ], + [ 7.7503849, 47.4354207 ], + [ 7.7503863, 47.4354063 ], + [ 7.7503879, 47.435394 ], + [ 7.7503893999999995, 47.4353808 ], + [ 7.7503907, 47.4353711 ], + [ 7.7503929, 47.4353567 ], + [ 7.7503957, 47.4353402 ], + [ 7.7503962, 47.4353374 ], + [ 7.7504029, 47.4352989 ], + [ 7.7503303, 47.4352863 ], + [ 7.7502885, 47.4352789 ], + [ 7.7502732, 47.4352763 ], + [ 7.7502689, 47.4352755 ], + [ 7.7502639, 47.4352752 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr009", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Moreplatz", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Moreplatz", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Moreplatz", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Moreplatz", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7078567, 47.3832322 ], + [ 7.7078576, 47.3832399 ], + [ 7.7078594, 47.3832476 ], + [ 7.7078622, 47.3832551 ], + [ 7.7078659, 47.3832624 ], + [ 7.7078706, 47.3832695 ], + [ 7.7078761, 47.3832763 ], + [ 7.707897, 47.3832969 ], + [ 7.7079186, 47.3833172 ], + [ 7.7079408, 47.3833372 ], + [ 7.7079769, 47.3833658 ], + [ 7.708012, 47.3833949 ], + [ 7.7080462, 47.3834245 ], + [ 7.708108, 47.3834814 ], + [ 7.7081719, 47.3835372 ], + [ 7.7082376, 47.3835921 ], + [ 7.7083179, 47.3836578 ], + [ 7.7084049, 47.3837195 ], + [ 7.708498, 47.3837769 ], + [ 7.70874, 47.3839346 ], + [ 7.709078, 47.3841366 ], + [ 7.709182, 47.3842057 ], + [ 7.709282, 47.3842775 ], + [ 7.7093777, 47.3843519 ], + [ 7.7095416, 47.3844822 ], + [ 7.7096197, 47.3845383 ], + [ 7.7097031, 47.3845907 ], + [ 7.7097913, 47.3846393 ], + [ 7.7099426, 47.3847095 ], + [ 7.7100978, 47.3847756 ], + [ 7.7102567, 47.3848374 ], + [ 7.7104374, 47.3849061 ], + [ 7.7106705, 47.3850697 ], + [ 7.7107218, 47.3851698 ], + [ 7.7107638, 47.3852952 ], + [ 7.7114711, 47.3853852 ], + [ 7.7118193, 47.3853853 ], + [ 7.7117919, 47.3853019 ], + [ 7.7116593, 47.3849019 ], + [ 7.7115074, 47.3844519 ], + [ 7.7113603, 47.3841347 ], + [ 7.711179, 47.3837444 ], + [ 7.7112579, 47.3835435 ], + [ 7.7105745, 47.3834749 ], + [ 7.71011, 47.3834261 ], + [ 7.7098644, 47.3834022 ], + [ 7.7096651, 47.3833669 ], + [ 7.7095403000000005, 47.383322 ], + [ 7.7094528, 47.3832857 ], + [ 7.7092908, 47.3832161 ], + [ 7.7091723, 47.3831736 ], + [ 7.7090034, 47.3831207 ], + [ 7.7088359, 47.3830984 ], + [ 7.7086554, 47.3830892 ], + [ 7.7085023, 47.383087 ], + [ 7.7084055, 47.3830832 ], + [ 7.7083153, 47.3830795 ], + [ 7.7080203, 47.3831139 ], + [ 7.707994, 47.3831179 ], + [ 7.7079683, 47.3831236 ], + [ 7.7079436, 47.383131 ], + [ 7.7079307, 47.3831368 ], + [ 7.7079186, 47.3831433 ], + [ 7.7079074, 47.3831504 ], + [ 7.7078971, 47.3831582 ], + [ 7.7078879, 47.3831665 ], + [ 7.7078797, 47.3831754 ], + [ 7.7078727, 47.3831847 ], + [ 7.7078669, 47.3831944 ], + [ 7.7078629, 47.3832017 ], + [ 7.7078599, 47.3832091 ], + [ 7.7078579, 47.3832168 ], + [ 7.7078568, 47.3832245 ], + [ 7.7078567, 47.3832322 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns230", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Geissrain", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Geissrain", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Geissrain", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Geissrain", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7951956, 47.4091195 ], + [ 7.7954635, 47.4092118 ], + [ 7.795853, 47.4093293 ], + [ 7.796077, 47.4093756 ], + [ 7.7962056, 47.4093867 ], + [ 7.7962192, 47.4093857 ], + [ 7.7962237, 47.4093854 ], + [ 7.7962327, 47.4093847 ], + [ 7.7962418, 47.4093841 ], + [ 7.7962463, 47.4093838 ], + [ 7.7962599, 47.409383 ], + [ 7.7962837, 47.4093817 ], + [ 7.7962881, 47.4093815 ], + [ 7.7962916, 47.4093813 ], + [ 7.7962975, 47.409381 ], + [ 7.7963075, 47.4093806 ], + [ 7.7963177, 47.4093802 ], + [ 7.7963234, 47.4093799 ], + [ 7.796327, 47.409379799999996 ], + [ 7.7963314, 47.4093796 ], + [ 7.7963553, 47.4093789 ], + [ 7.7964325, 47.4093743 ], + [ 7.7964377, 47.4093739 ], + [ 7.7964454, 47.4093733 ], + [ 7.7965051, 47.4093669 ], + [ 7.7965129, 47.4093659 ], + [ 7.7965176, 47.4093652 ], + [ 7.7965935, 47.4093534 ], + [ 7.7967692, 47.4093218 ], + [ 7.7969579, 47.4092879 ], + [ 7.7969597, 47.4092876 ], + [ 7.7969606, 47.4092874 ], + [ 7.7969615, 47.4092873 ], + [ 7.7969633, 47.409287 ], + [ 7.7969725, 47.409285 ], + [ 7.7969813, 47.4092826 ], + [ 7.7969899, 47.4092798 ], + [ 7.7969981, 47.4092765 ], + [ 7.7970059, 47.4092727 ], + [ 7.7970091, 47.409271 ], + [ 7.7970122, 47.4092692 ], + [ 7.7970153, 47.4092673 ], + [ 7.7970182, 47.4092653 ], + [ 7.7970243, 47.4092614 ], + [ 7.7970303, 47.4092575 ], + [ 7.7970363, 47.4092536 ], + [ 7.7970554, 47.4092778 ], + [ 7.7970571, 47.4092754 ], + [ 7.7970585, 47.4092729 ], + [ 7.7970592, 47.4092717 ], + [ 7.797062, 47.4092682 ], + [ 7.7970655, 47.4092649 ], + [ 7.7970668, 47.409264 ], + [ 7.7970695, 47.409262 ], + [ 7.7970726, 47.4092603 ], + [ 7.7970741, 47.4092595 ], + [ 7.7971018, 47.4092406 ], + [ 7.7971352, 47.4092221 ], + [ 7.7972849, 47.4091377 ], + [ 7.7975466, 47.4089757 ], + [ 7.7977714, 47.4088348 ], + [ 7.7978263, 47.4088004 ], + [ 7.798005, 47.408689 ], + [ 7.7980393, 47.4086642 ], + [ 7.7980385, 47.4086634 ], + [ 7.7980364, 47.4086608 ], + [ 7.7980343, 47.4086581 ], + [ 7.7980334, 47.4086568 ], + [ 7.7980324, 47.4086555 ], + [ 7.7979409, 47.4085358 ], + [ 7.7979343, 47.4085277 ], + [ 7.7978834, 47.408461 ], + [ 7.7978365, 47.4083991 ], + [ 7.7978041000000005, 47.4083563 ], + [ 7.7976989, 47.408235 ], + [ 7.7976788, 47.4082109 ], + [ 7.7976582, 47.408187 ], + [ 7.797637, 47.4081633 ], + [ 7.7976154, 47.4081399 ], + [ 7.7975932, 47.4081166 ], + [ 7.7975705, 47.4080936 ], + [ 7.7975384, 47.4080625 ], + [ 7.7975224999999995, 47.408047 ], + [ 7.7975172, 47.4080417 ], + [ 7.7975136, 47.4080382 ], + [ 7.7975066, 47.4080313 ], + [ 7.7974754, 47.4079998 ], + [ 7.7974686, 47.4079928 ], + [ 7.7974651, 47.4079892 ], + [ 7.79746, 47.4079839 ], + [ 7.7974452, 47.4079686 ], + [ 7.7974446, 47.407968 ], + [ 7.7974143, 47.4079361 ], + [ 7.7973837, 47.4079039 ], + [ 7.7973684, 47.4078874 ], + [ 7.7973637, 47.4078823 ], + [ 7.7973605, 47.4078788 ], + [ 7.7973537, 47.4078715 ], + [ 7.7973242, 47.4078388 ], + [ 7.7973174, 47.4078311 ], + [ 7.7973145, 47.4078279 ], + [ 7.7973102, 47.407823 ], + [ 7.7972952, 47.4078059 ], + [ 7.7972668, 47.4077728 ], + [ 7.7972437, 47.4077458 ], + [ 7.7972361, 47.4077367 ], + [ 7.7972209, 47.4077187 ], + [ 7.7972059, 47.4077005 ], + [ 7.7971983, 47.4076914 ], + [ 7.797176, 47.4076641 ], + [ 7.7971726, 47.4076593 ], + [ 7.7971722, 47.4076586 ], + [ 7.7971686, 47.4076546 ], + [ 7.7971675, 47.4076534 ], + [ 7.7971641, 47.4076503 ], + [ 7.7971622, 47.4076486 ], + [ 7.7971589, 47.4076462 ], + [ 7.7971561, 47.4076441 ], + [ 7.7971533, 47.4076424 ], + [ 7.7971494, 47.4076401 ], + [ 7.7971473, 47.407639 ], + [ 7.7971421, 47.4076365 ], + [ 7.7971408, 47.407636 ], + [ 7.7971342, 47.4076334 ], + [ 7.7971265, 47.407631 ], + [ 7.7971193, 47.407629299999996 ], + [ 7.7971178, 47.407629 ], + [ 7.7971117, 47.407628 ], + [ 7.7971091, 47.4076276 ], + [ 7.7971039, 47.4076272 ], + [ 7.7971002, 47.4076269 ], + [ 7.797096, 47.4076268 ], + [ 7.7970913, 47.4076267 ], + [ 7.7970881, 47.4076268 ], + [ 7.7970824, 47.4076271 ], + [ 7.7970803, 47.4076273 ], + [ 7.7970705, 47.407626 ], + [ 7.7970698, 47.4076265 ], + [ 7.7970649, 47.4076298 ], + [ 7.7969587, 47.4076572 ], + [ 7.7964427, 47.4077612 ], + [ 7.7962509, 47.4078007 ], + [ 7.7960061, 47.4078512 ], + [ 7.7957753, 47.4078809 ], + [ 7.7957637, 47.4078824 ], + [ 7.7953062, 47.4079113 ], + [ 7.7950805, 47.4079442 ], + [ 7.7949964, 47.4079686 ], + [ 7.7949553, 47.4079805 ], + [ 7.7948242, 47.4081839 ], + [ 7.7947993, 47.408464 ], + [ 7.7947985, 47.4084731 ], + [ 7.7948698, 47.4086695 ], + [ 7.7950336, 47.4089727 ], + [ 7.7951956, 47.4091195 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr122", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Ebnet", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Ebnet", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Ebnet", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Ebnet", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.8119350999999995, 46.4702531 ], + [ 6.8120408, 46.4701188 ], + [ 6.8122319000000005, 46.4701322 ], + [ 6.8124571, 46.470148 ], + [ 6.8130448999999995, 46.4699894 ], + [ 6.8133049, 46.4700178 ], + [ 6.8136953, 46.4700379 ], + [ 6.8137997, 46.4700205 ], + [ 6.8139585, 46.4697965 ], + [ 6.8144785, 46.4698623 ], + [ 6.8148088, 46.4698006 ], + [ 6.8150396, 46.4697575 ], + [ 6.8151963, 46.4697133 ], + [ 6.8153673999999995, 46.4698414 ], + [ 6.8155836, 46.4700033 ], + [ 6.8159952, 46.4698808 ], + [ 6.8162369, 46.469809 ], + [ 6.8166004000000004, 46.469901 ], + [ 6.8166923, 46.4698295 ], + [ 6.8175771, 46.4698793 ], + [ 6.8176407, 46.4700146 ], + [ 6.8179281, 46.4699262 ], + [ 6.8193363, 46.469754 ], + [ 6.8194948, 46.4695569 ], + [ 6.8197811, 46.4697093 ], + [ 6.8199217999999995, 46.4697842 ], + [ 6.8203382, 46.4696644 ], + [ 6.8205358, 46.4696076 ], + [ 6.8207731, 46.4694194 ], + [ 6.8209299, 46.4692949 ], + [ 6.821031, 46.469139 ], + [ 6.821185, 46.4689002 ], + [ 6.8213101, 46.4687071 ], + [ 6.8213938, 46.4685777 ], + [ 6.8214659, 46.4683845 ], + [ 6.821528, 46.4682186 ], + [ 6.8216978, 46.4681745 ], + [ 6.821984, 46.4681941 ], + [ 6.8223748, 46.4681782 ], + [ 6.8225438, 46.4681971 ], + [ 6.8227661, 46.4681084 ], + [ 6.8229637, 46.4679115 ], + [ 6.8229645, 46.4678396 ], + [ 6.8233287, 46.4678685 ], + [ 6.8233946, 46.4677969 ], + [ 6.8242005, 46.4679182 ], + [ 6.8241732, 46.468026 ], + [ 6.8258628, 46.4682871 ], + [ 6.8259938, 46.4682158 ], + [ 6.8279076, 46.4682261 ], + [ 6.8279062, 46.4683422 ], + [ 6.8279045, 46.468496 ], + [ 6.8290116, 46.468457 ], + [ 6.8294683, 46.4683695 ], + [ 6.8299635, 46.4683272 ], + [ 6.8303248, 46.4682531 ], + [ 6.8309031000000004, 46.4681343 ], + [ 6.8312983, 46.4680857 ], + [ 6.8314637, 46.4680653 ], + [ 6.8318242, 46.4678474 ], + [ 6.8320536, 46.4677086 ], + [ 6.8322664, 46.4675234 ], + [ 6.8323823, 46.4674225 ], + [ 6.8325786, 46.4673336 ], + [ 6.832693, 46.467217 ], + [ 6.832842, 46.4670651 ], + [ 6.8330626, 46.4671293 ], + [ 6.8331677, 46.4670399 ], + [ 6.8329346, 46.4669307 ], + [ 6.8330676, 46.4666795 ], + [ 6.8326795, 46.4664526 ], + [ 6.8328980999999995, 46.4661886 ], + [ 6.8330813, 46.4659668 ], + [ 6.8333518, 46.46564 ], + [ 6.8334978, 46.4654634 ], + [ 6.833643, 46.4652882 ], + [ 6.83384, 46.4651364 ], + [ 6.8340357, 46.4650924 ], + [ 6.8341657, 46.4651111 ], + [ 6.8342578, 46.4650216 ], + [ 6.8341928, 46.4650213 ], + [ 6.8343637, 46.4648693 ], + [ 6.8345227, 46.4646182 ], + [ 6.8343927, 46.4645996 ], + [ 6.8343935, 46.4645276 ], + [ 6.8344977, 46.4645281 ], + [ 6.8346301, 46.4643309 ], + [ 6.8345652999999995, 46.4643036 ], + [ 6.8345925, 46.4641958 ], + [ 6.8346965, 46.4642143 ], + [ 6.8348284, 46.4640621 ], + [ 6.8347252, 46.4639716 ], + [ 6.8349233, 46.4637208 ], + [ 6.8349784, 46.4635229 ], + [ 6.8350326, 46.4633323 ], + [ 6.8350995, 46.463092 ], + [ 6.8351279, 46.4628057 ], + [ 6.8351499, 46.4625888 ], + [ 6.8351728, 46.4623547 ], + [ 6.835116, 46.4621933 ], + [ 6.8350466999999995, 46.4619942 ], + [ 6.8350755, 46.4617425 ], + [ 6.8350539999999995, 46.4616268 ], + [ 6.8350141, 46.4614093 ], + [ 6.835056, 46.4611576 ], + [ 6.8351868, 46.4610954 ], + [ 6.8352164, 46.4607807 ], + [ 6.8354136, 46.4606018 ], + [ 6.8355502999999995, 46.4605306 ], + [ 6.8358065, 46.460397 ], + [ 6.8362365, 46.4603543 ], + [ 6.8363654, 46.4604719 ], + [ 6.8367572, 46.4603571 ], + [ 6.8369807, 46.4601603 ], + [ 6.8373714, 46.4600726 ], + [ 6.837568, 46.4600285 ], + [ 6.837774, 46.4599404 ], + [ 6.8381508, 46.459779 ], + [ 6.8385277, 46.4596178 ], + [ 6.838876, 46.4594687 ], + [ 6.8391185, 46.4593851 ], + [ 6.8404179, 46.4589371 ], + [ 6.8404188999999995, 46.4588472 ], + [ 6.8408106, 46.4587413 ], + [ 6.8408096, 46.4588312 ], + [ 6.840901, 46.4588047 ], + [ 6.8414182, 46.4591223 ], + [ 6.8421356, 46.4589911 ], + [ 6.8425964, 46.4585258 ], + [ 6.8442913, 46.4582828 ], + [ 6.8447861, 46.4582674 ], + [ 6.8450705, 46.4581466 ], + [ 6.8452046, 46.4580897 ], + [ 6.8455964, 46.4579748 ], + [ 6.8461076, 46.457948 ], + [ 6.8463779, 46.4579339 ], + [ 6.8465723, 46.4580068 ], + [ 6.8468064, 46.4580261 ], + [ 6.8472287, 46.4579516 ], + [ 6.8475497999999995, 46.457895 ], + [ 6.8477853, 46.4577883 ], + [ 6.8479825, 46.457757 ], + [ 6.8482115, 46.4577206 ], + [ 6.8489173, 46.4576088 ], + [ 6.8498716, 46.4574573 ], + [ 6.8500679, 46.4573683 ], + [ 6.85003, 46.4572602 ], + [ 6.8499389, 46.4572597 ], + [ 6.8499394, 46.4572147 ], + [ 6.8500309999999995, 46.4571702 ], + [ 6.849903, 46.4569627 ], + [ 6.8500334, 46.4569453 ], + [ 6.8500700000000005, 46.4571704 ], + [ 6.8501611, 46.4571709 ], + [ 6.8501604, 46.4572339 ], + [ 6.8500954, 46.4572335 ], + [ 6.8501592, 46.4573508 ], + [ 6.8502241, 46.4573692 ], + [ 6.8505500999999995, 46.4573079 ], + [ 6.8506142, 46.4573982 ], + [ 6.851658, 46.4571787 ], + [ 6.8516324, 46.4571336 ], + [ 6.8517244999999996, 46.4570441 ], + [ 6.8516612, 46.4568818 ], + [ 6.8517272, 46.4567922 ], + [ 6.8518319, 46.4567478 ], + [ 6.8520268, 46.4567758 ], + [ 6.8521823, 46.4568395 ], + [ 6.8524192, 46.4565979 ], + [ 6.8528833, 46.4555906 ], + [ 6.8531065, 46.4551066 ], + [ 6.8535197, 46.4542108 ], + [ 6.8537008, 46.4537825 ], + [ 6.8539134, 46.4532321 ], + [ 6.8540279, 46.4531761 ], + [ 6.8542404999999995, 46.4530719 ], + [ 6.8543456, 46.4529825 ], + [ 6.8544678999999995, 46.4527321 ], + [ 6.8545419, 46.4525795 ], + [ 6.8545926999999995, 46.4524759 ], + [ 6.8546385, 46.4523813 ], + [ 6.8547449, 46.4523162 ], + [ 6.8549005, 46.4522207 ], + [ 6.8550684, 46.4523385 ], + [ 6.8554589, 46.4523405 ], + [ 6.8562439, 46.4519577 ], + [ 6.8563998, 46.4519855 ], + [ 6.8567009, 46.4518251 ], + [ 6.8568583, 46.451718 ], + [ 6.8569246, 46.4516014 ], + [ 6.8568349, 46.451466 ], + [ 6.8568625999999995, 46.4513132 ], + [ 6.8571511, 46.451035 ], + [ 6.8572687, 46.450922 ], + [ 6.8574939, 46.4507047 ], + [ 6.8572606, 46.4506136 ], + [ 6.8573001, 46.4505688 ], + [ 6.8575596, 46.4506421 ], + [ 6.8576252, 46.4505974 ], + [ 6.8578153, 46.4506189 ], + [ 6.8580412, 46.4506445 ], + [ 6.8581723, 46.4505553 ], + [ 6.858333, 46.4502828 ], + [ 6.8584109, 46.4501517 ], + [ 6.8583731, 46.4500345 ], + [ 6.8585439, 46.4498825 ], + [ 6.8586739, 46.4499011 ], + [ 6.858676, 46.4497032 ], + [ 6.8587671, 46.4497037 ], + [ 6.8587682999999995, 46.4495868 ], + [ 6.8592315, 46.4488695 ], + [ 6.8593419, 46.4483618 ], + [ 6.8593953, 46.4480056 ], + [ 6.8594402, 46.4476111 ], + [ 6.8595732, 46.4473419 ], + [ 6.8597532, 46.4472453 ], + [ 6.8599299, 46.4471502 ], + [ 6.8600706, 46.4470746 ], + [ 6.8601619, 46.447057 ], + [ 6.8602053, 46.4471812 ], + [ 6.8602882, 46.4474175 ], + [ 6.8604398, 46.4474703 ], + [ 6.8606739999999995, 46.4475519 ], + [ 6.8608571, 46.4476157 ], + [ 6.8610711, 46.4476903 ], + [ 6.861251, 46.4477529 ], + [ 6.8615200000000005, 46.4478466 ], + [ 6.8616782, 46.4478932 ], + [ 6.8620779, 46.4480114 ], + [ 6.8622298, 46.448039 ], + [ 6.8624246, 46.4480744 ], + [ 6.8626885, 46.4481224 ], + [ 6.8628178, 46.448195 ], + [ 6.8629997, 46.4482319 ], + [ 6.8633406, 46.4483011 ], + [ 6.8636734, 46.4483687 ], + [ 6.8639437, 46.4484235 ], + [ 6.8641815, 46.4484718 ], + [ 6.8644147, 46.4484982 ], + [ 6.8645772, 46.4485164 ], + [ 6.8647665, 46.4485378 ], + [ 6.8647674, 46.4484478 ], + [ 6.8651574, 46.4484948 ], + [ 6.8652212, 46.448612 ], + [ 6.8661332, 46.4485267 ], + [ 6.8663962, 46.448424 ], + [ 6.8666559, 46.4483224 ], + [ 6.8667611, 46.448215 ], + [ 6.8666978, 46.4480527 ], + [ 6.8667245, 46.4479899 ], + [ 6.8669641, 46.4480202 ], + [ 6.8672444, 46.4480555 ], + [ 6.8674388, 46.4481284 ], + [ 6.8674772, 46.4481916 ], + [ 6.8677363, 46.4483099 ], + [ 6.8680982, 46.4483117 ], + [ 6.8682829, 46.4483126 ], + [ 6.8684868, 46.4482581 ], + [ 6.8687788, 46.4481802 ], + [ 6.8688391, 46.4480187 ], + [ 6.8688725999999996, 46.4479287 ], + [ 6.869166, 46.447797 ], + [ 6.8695656, 46.4476174 ], + [ 6.8696558, 46.4477078 ], + [ 6.8694587, 46.4478867 ], + [ 6.8695211, 46.448138900000004 ], + [ 6.8696503, 46.4482295 ], + [ 6.8700407, 46.4482315 ], + [ 6.8703396, 46.448278 ], + [ 6.870642, 46.4482193 ], + [ 6.8708009, 46.4481885 ], + [ 6.8710177, 46.4481464 ], + [ 6.8712487, 46.4480707 ], + [ 6.871474, 46.4479969 ], + [ 6.8717752, 46.4478983 ], + [ 6.8720396, 46.4478883 ], + [ 6.8721917999999995, 46.4478824 ], + [ 6.8724092, 46.4479383 ], + [ 6.8726201, 46.4479925 ], + [ 6.8728411, 46.4480206 ], + [ 6.8731021, 46.4479499 ], + [ 6.873206, 46.4479774 ], + [ 6.8731398, 46.4480851 ], + [ 6.8735316, 46.4479521 ], + [ 6.8737279000000004, 46.4478451 ], + [ 6.8737291, 46.4477282 ], + [ 6.8739349999999995, 46.4475682 ], + [ 6.8742433, 46.4473289 ], + [ 6.874386, 46.4472178 ], + [ 6.8747346, 46.4470156 ], + [ 6.8750004, 46.4468799 ], + [ 6.8751381, 46.4468568 ], + [ 6.8753654, 46.4468187 ], + [ 6.8755603999999995, 46.4468377 ], + [ 6.8758213999999995, 46.446776 ], + [ 6.8762595, 46.4464916 ], + [ 6.8763717, 46.4464189 ], + [ 6.8768272, 46.4464212 ], + [ 6.876931, 46.4463646 ], + [ 6.8770488, 46.4463004 ], + [ 6.8771544, 46.4462429 ], + [ 6.8771965, 46.4459462 ], + [ 6.8774174, 46.4459743 ], + [ 6.8775887, 46.4457683 ], + [ 6.8774595, 46.4456777 ], + [ 6.8779198, 46.4452121 ], + [ 6.8780103, 46.4452756 ], + [ 6.8783095, 46.445204 ], + [ 6.8786365, 46.4451257 ], + [ 6.8787074, 46.4450297 ], + [ 6.8787685, 46.4449465 ], + [ 6.8788552, 46.4445065 ], + [ 6.8789333, 46.4441107 ], + [ 6.879167, 46.4441568 ], + [ 6.8792349, 46.4438873 ], + [ 6.8791054, 46.4438237 ], + [ 6.8791721, 46.4436621 ], + [ 6.8791746, 46.4434192 ], + [ 6.8790956, 46.4432794 ], + [ 6.8790237, 46.4431528 ], + [ 6.878919, 46.4429681 ], + [ 6.8791405, 46.4429422 ], + [ 6.8792992, 46.4428569 ], + [ 6.8796378, 46.4426748 ], + [ 6.8796384, 46.4426119 ], + [ 6.8806195, 46.4421219 ], + [ 6.8808136, 46.4422308 ], + [ 6.8818599, 46.4417232 ], + [ 6.8819429, 46.4415607 ], + [ 6.8820167, 46.4414164 ], + [ 6.8821255, 46.4412028 ], + [ 6.8822171999999995, 46.4411402 ], + [ 6.8822821, 46.4411585 ], + [ 6.8822201, 46.4412524 ], + [ 6.8821747, 46.4413211 ], + [ 6.8820573, 46.4414993 ], + [ 6.8822513999999995, 46.4416082 ], + [ 6.8824462, 46.4416541 ], + [ 6.8824454, 46.4417261 ], + [ 6.8826011, 46.4417718 ], + [ 6.882602, 46.4416819 ], + [ 6.8829013, 46.4416833 ], + [ 6.8828999, 46.4418183 ], + [ 6.8830951, 46.4418192 ], + [ 6.8831221, 46.4417294 ], + [ 6.8832522, 46.44173 ], + [ 6.8832512999999995, 46.44182 ], + [ 6.883485, 46.4418661 ], + [ 6.8835513, 46.4417495 ], + [ 6.8835761, 46.4418666 ], + [ 6.8837065, 46.4418402 ], + [ 6.8839663, 46.4418865 ], + [ 6.8841599, 46.4420494 ], + [ 6.8842912, 46.4419331 ], + [ 6.8845244999999995, 46.4420242 ], + [ 6.8844845, 46.4421139 ], + [ 6.8845224, 46.4422311 ], + [ 6.8846776, 46.4423218 ], + [ 6.8849117, 46.4423409 ], + [ 6.8850953, 46.4422828 ], + [ 6.885491, 46.4421575 ], + [ 6.8857105, 46.442088 ], + [ 6.8858908, 46.4420308 ], + [ 6.8858267, 46.4419406 ], + [ 6.8859835, 46.4418784 ], + [ 6.8858308, 46.4415358 ], + [ 6.8885127, 46.4401365 ], + [ 6.8885942, 46.4400409 ], + [ 6.8886871, 46.4399326 ], + [ 6.8888419, 46.4397513 ], + [ 6.8889083, 46.4396167 ], + [ 6.8890647, 46.4395938 ], + [ 6.8893253, 46.4395557 ], + [ 6.8894876, 46.4394357 ], + [ 6.8897842, 46.4392161 ], + [ 6.8899161, 46.4390369 ], + [ 6.8902423, 46.4389485 ], + [ 6.8905407, 46.4390399 ], + [ 6.8905959, 46.4391307 ], + [ 6.8906943, 46.4392925 ], + [ 6.8908254, 46.4393551 ], + [ 6.8910181, 46.439447 ], + [ 6.8912516, 46.4395201 ], + [ 6.8919677, 46.4394786 ], + [ 6.8921323999999995, 46.439434 ], + [ 6.8922425, 46.4394041 ], + [ 6.8925549, 46.4393195 ], + [ 6.8927762, 46.4393026 ], + [ 6.8929718, 46.4393429 ], + [ 6.8932518, 46.4394007 ], + [ 6.8935887000000005, 46.4394702 ], + [ 6.8938995, 46.4395344 ], + [ 6.8942046999999995, 46.4395973 ], + [ 6.8945031, 46.4396887 ], + [ 6.8946461, 46.4396992 ], + [ 6.8950232, 46.4397272 ], + [ 6.8953182, 46.439749 ], + [ 6.8955433, 46.4397657 ], + [ 6.8957755, 46.4398066 ], + [ 6.8959988, 46.439846 ], + [ 6.8961895, 46.4398795 ], + [ 6.8964834, 46.4399314 ], + [ 6.8982712, 46.4402465 ], + [ 6.8982961, 46.4403636 ], + [ 6.8986363, 46.4404196 ], + [ 6.8991405, 46.4405026 ], + [ 6.8996564, 46.4405566 ], + [ 6.8999668, 46.4405891 ], + [ 6.9002194, 46.4406156 ], + [ 6.9003752, 46.4406614 ], + [ 6.9003756, 46.4406164 ], + [ 6.9005148, 46.4406085 ], + [ 6.9007776, 46.4405934 ], + [ 6.9009884, 46.4405814 ], + [ 6.9013912, 46.4405583 ], + [ 6.9016633, 46.4404259 ], + [ 6.9019003, 46.4403105 ], + [ 6.9020883, 46.440219 ], + [ 6.9022436, 46.4401434 ], + [ 6.902398, 46.4400683 ], + [ 6.9025473, 46.4399354 ], + [ 6.9026335, 46.439859 ], + [ 6.9027402, 46.4397643 ], + [ 6.9028312, 46.4396835 ], + [ 6.9029995, 46.439613 ], + [ 6.9032135, 46.4395234 ], + [ 6.9036805999999995, 46.4393277 ], + [ 6.9038542, 46.4392093 ], + [ 6.9040343, 46.4390865 ], + [ 6.9041005, 46.4389698 ], + [ 6.9042326, 46.4389385 ], + [ 6.9043614, 46.4389081 ], + [ 6.9049498, 46.438614 ], + [ 6.9048596, 46.4385236 ], + [ 6.9050554, 46.4384616 ], + [ 6.9052267, 46.438329 ], + [ 6.9053439, 46.438238 ], + [ 6.9054961, 46.438067 ], + [ 6.9056465, 46.4378976 ], + [ 6.9058796000000005, 46.4377712 ], + [ 6.9073734, 46.4369611 ], + [ 6.9076999, 46.4368277 ], + [ 6.907901, 46.4366468 ], + [ 6.9081069, 46.4364611 ], + [ 6.9082972, 46.4362902 ], + [ 6.9083957, 46.4362013 ], + [ 6.9084977, 46.4360797 ], + [ 6.9087018, 46.4358376 ], + [ 6.9088992, 46.435603 ], + [ 6.9090465, 46.4354277 ], + [ 6.9092777, 46.4351528 ], + [ 6.9093668, 46.4349428 ], + [ 6.909475, 46.4346875 ], + [ 6.9095174, 46.4345872 ], + [ 6.9093485, 46.4345684 ], + [ 6.9093232, 46.4344963 ], + [ 6.9095185, 46.4344793 ], + [ 6.9095476, 46.4341645 ], + [ 6.9096516999999995, 46.434165 ], + [ 6.9096556, 46.4337665 ], + [ 6.9096578, 46.4335353 ], + [ 6.909499, 46.4331404 ], + [ 6.9087708, 46.4311023 ], + [ 6.9087726, 46.430925 ], + [ 6.9087735, 46.4308324 ], + [ 6.908932, 46.4305813 ], + [ 6.9090408, 46.4305225 ], + [ 6.9094348, 46.4303091 ], + [ 6.909756, 46.4301353 ], + [ 6.9108343, 46.429462 ], + [ 6.9113947, 46.429112 ], + [ 6.9116147, 46.4289746 ], + [ 6.9119827, 46.4288495 ], + [ 6.9122674, 46.4287527 ], + [ 6.9125922, 46.4287992 ], + [ 6.9126303, 46.4288893 ], + [ 6.9128257, 46.4288722 ], + [ 6.9131114, 46.4289185 ], + [ 6.9131513, 46.4288288 ], + [ 6.9137265, 46.4289643 ], + [ 6.9141248, 46.4290582 ], + [ 6.9143701, 46.4291744 ], + [ 6.914604, 46.4292853 ], + [ 6.91491, 46.4295085 ], + [ 6.9152241, 46.4297379 ], + [ 6.9154405, 46.4298123 ], + [ 6.9156634, 46.4298889 ], + [ 6.9160284999999995, 46.4299665 ], + [ 6.9163371, 46.4299283 ], + [ 6.9165886, 46.4298972 ], + [ 6.9170458, 46.4297926 ], + [ 6.9174361, 46.4297032 ], + [ 6.9176592, 46.4296691 ], + [ 6.9181788, 46.4295896 ], + [ 6.9184725, 46.429483 ], + [ 6.9187728, 46.4293741 ], + [ 6.9190798000000004, 46.4292376 ], + [ 6.9193423, 46.4290863 ], + [ 6.9195507, 46.4289663 ], + [ 6.919852, 46.4286702 ], + [ 6.9201155, 46.4284111 ], + [ 6.9205537, 46.4279032 ], + [ 6.9211868, 46.4271701 ], + [ 6.9222211, 46.425875 ], + [ 6.922248, 46.4257852 ], + [ 6.9221836, 46.4257219 ], + [ 6.9220539, 46.4256763 ], + [ 6.9220543, 46.4256314 ], + [ 6.922249, 46.4256772 ], + [ 6.9223804, 46.4255429 ], + [ 6.9224843, 46.4255614 ], + [ 6.9224839, 46.4256063 ], + [ 6.9224188, 46.425606 ], + [ 6.9223525, 46.4257407 ], + [ 6.9224163, 46.4258759 ], + [ 6.9225459, 46.4259215 ], + [ 6.9226374, 46.4258769 ], + [ 6.9226962, 46.425767 ], + [ 6.9227434, 46.4256795 ], + [ 6.9226794, 46.4255622 ], + [ 6.9224852, 46.4254714 ], + [ 6.9225768, 46.4254088 ], + [ 6.92264, 46.4252604 ], + [ 6.9227099, 46.4250946 ], + [ 6.9232738, 46.4246204 ], + [ 6.9234727, 46.4243925 ], + [ 6.9236026, 46.4242441 ], + [ 6.9236484, 46.4238648 ], + [ 6.9236732, 46.4236597 ], + [ 6.9235723, 46.4233174 ], + [ 6.9235661, 46.4231996 ], + [ 6.9235502, 46.4229125 ], + [ 6.9234945, 46.4226919 ], + [ 6.923417, 46.422385 ], + [ 6.9233519, 46.4221277 ], + [ 6.9232994, 46.4219219 ], + [ 6.923302, 46.421652 ], + [ 6.9232392, 46.4214088 ], + [ 6.9233066999999995, 46.4211573 ], + [ 6.9234655, 46.4208701 ], + [ 6.9235902, 46.4207518 ], + [ 6.9239643, 46.4203956 ], + [ 6.9245534, 46.4199935 ], + [ 6.9247502, 46.4198145 ], + [ 6.9250378, 46.4196629 ], + [ 6.9254972, 46.4192332 ], + [ 6.9259278, 46.4190822 ], + [ 6.9259528, 46.4191903 ], + [ 6.9261223, 46.4191461 ], + [ 6.9268025, 46.4187443 ], + [ 6.9269504, 46.4185721 ], + [ 6.9270869, 46.4184129 ], + [ 6.9273023, 46.4181619 ], + [ 6.9273461, 46.4180011 ], + [ 6.9274252, 46.4177131 ], + [ 6.9275683, 46.4171888 ], + [ 6.927639, 46.416931 ], + [ 6.9276873, 46.4165576 ], + [ 6.9277092, 46.4163916 ], + [ 6.9276725, 46.4161396 ], + [ 6.9275437, 46.416004 ], + [ 6.9276219, 46.4158132 ], + [ 6.9277168, 46.415582 ], + [ 6.9276759, 46.4154345 ], + [ 6.9276161, 46.4152217 ], + [ 6.9277204, 46.4151952 ], + [ 6.9277213, 46.4151053 ], + [ 6.9275918, 46.4150417 ], + [ 6.9274246999999995, 46.4148341 ], + [ 6.9271402, 46.4146529 ], + [ 6.9270119999999995, 46.4144544 ], + [ 6.9271718, 46.4140683 ], + [ 6.9273421, 46.4139341 ], + [ 6.9276945, 46.4138008 ], + [ 6.9277977, 46.4138912 ], + [ 6.9278629, 46.4138735 ], + [ 6.9278877, 46.4140086 ], + [ 6.9279915, 46.414027 ], + [ 6.9280576, 46.4139194 ], + [ 6.9282791, 46.4138754 ], + [ 6.9285819, 46.4136559 ], + [ 6.9287112, 46.4135625 ], + [ 6.9288701, 46.4132663 ], + [ 6.9290405, 46.4131296 ], + [ 6.9291715, 46.4130248 ], + [ 6.9292374, 46.4129351 ], + [ 6.9289391, 46.4128438 ], + [ 6.9290047999999995, 46.4127722 ], + [ 6.9293035, 46.4128185 ], + [ 6.9293968, 46.412576 ], + [ 6.9296721, 46.4124319 ], + [ 6.9297889, 46.4123709 ], + [ 6.9298755, 46.4122347 ], + [ 6.9301585, 46.4117878 ], + [ 6.9303521, 46.4113416 ], + [ 6.9305174, 46.4109618 ], + [ 6.9306889, 46.4107107 ], + [ 6.9307479, 46.4103035 ], + [ 6.9307862, 46.4100365 ], + [ 6.9308677, 46.4097558 ], + [ 6.9309609, 46.4094345 ], + [ 6.9309411, 46.4092062 ], + [ 6.9309147, 46.4088992 ], + [ 6.9308904, 46.4086281 ], + [ 6.930867, 46.4083546 ], + [ 6.930741, 46.4079222 ], + [ 6.9307175999999995, 46.4076343 ], + [ 6.9306263, 46.4074104 ], + [ 6.9305524, 46.4072287 ], + [ 6.9303226, 46.406853 ], + [ 6.9301889, 46.4066332 ], + [ 6.93004, 46.4063898 ], + [ 6.9299758, 46.4063061 ], + [ 6.9297751, 46.4060443 ], + [ 6.929539, 46.4057371 ], + [ 6.9293093, 46.4054378 ], + [ 6.9290978, 46.4051986 ], + [ 6.9287542, 46.4048368 ], + [ 6.9285323, 46.4044957 ], + [ 6.9284722, 46.4044037 ], + [ 6.9281472, 46.4043843 ], + [ 6.9278264, 46.4039331 ], + [ 6.927632, 46.4038602 ], + [ 6.9270131, 46.4032997 ], + [ 6.9267933, 46.4031638 ], + [ 6.9263653, 46.4030449 ], + [ 6.9258023, 46.4027659 ], + [ 6.9251745, 46.4024548 ], + [ 6.9250462, 46.4022743 ], + [ 6.9251138999999995, 46.4019868 ], + [ 6.9250495999999995, 46.4019145 ], + [ 6.925249, 46.4014476 ], + [ 6.9253791, 46.4014482 ], + [ 6.925424, 46.4011663 ], + [ 6.9254422, 46.4010472 ], + [ 6.9254774, 46.4006798 ], + [ 6.925479, 46.4005041 ], + [ 6.9254168, 46.400207 ], + [ 6.9252631000000004, 46.3999634 ], + [ 6.9251737, 46.3997093 ], + [ 6.9250732, 46.399422799999996 ], + [ 6.9249351, 46.3991525 ], + [ 6.9248434, 46.398972 ], + [ 6.9249735999999995, 46.3989456 ], + [ 6.9249109, 46.3987024 ], + [ 6.9247807, 46.3987198 ], + [ 6.9244337, 46.3982954 ], + [ 6.9239439, 46.3978434 ], + [ 6.9237256, 46.3975456 ], + [ 6.9235952, 46.39759 ], + [ 6.9235306, 46.3975447 ], + [ 6.9236872, 46.3974824 ], + [ 6.9234413, 46.397282 ], + [ 6.9232098, 46.3970934 ], + [ 6.9228211, 46.3969567 ], + [ 6.9221722, 46.3968188 ], + [ 6.9197738, 46.3960882 ], + [ 6.9203796, 46.3951086 ], + [ 6.920657, 46.395082 ], + [ 6.9207719999999995, 46.3947785 ], + [ 6.9211197, 46.3945354 ], + [ 6.9209008999999995, 46.394305 ], + [ 6.9196889, 46.3938325 ], + [ 6.9194759999999995, 46.3937461 ], + [ 6.9192323, 46.3937351 ], + [ 6.9190145, 46.3937413 ], + [ 6.9186306, 46.39369 ], + [ 6.9184362, 46.3936333 ], + [ 6.9181033, 46.3935167 ], + [ 6.9177206, 46.3934303 ], + [ 6.9173385, 46.3933629 ], + [ 6.9169809, 46.3933694 ], + [ 6.9166295, 46.3934073 ], + [ 6.9164105, 46.3934486 ], + [ 6.9161094, 46.3935768 ], + [ 6.9158485, 46.3936727 ], + [ 6.9155485, 46.3937676 ], + [ 6.9150996, 46.3938915 ], + [ 6.9148709, 46.3940101 ], + [ 6.9146544, 46.3941342 ], + [ 6.9145145, 46.3942288 ], + [ 6.9143279, 46.3943592 ], + [ 6.914099, 46.3945058 ], + [ 6.9138958, 46.3946001 ], + [ 6.9136025, 46.3946744 ], + [ 6.9131394, 46.3946632 ], + [ 6.9125613999999995, 46.3945211 ], + [ 6.9119999, 46.3944304 ], + [ 6.9115192, 46.394313 ], + [ 6.9111874, 46.3941782 ], + [ 6.9109338, 46.3940926 ], + [ 6.910642, 46.3940201 ], + [ 6.9103902, 46.3939299 ], + [ 6.9099998, 46.3937157 ], + [ 6.9096264, 46.3935017 ], + [ 6.9093881, 46.3933557 ], + [ 6.9090081, 46.3931641 ], + [ 6.9085849, 46.3929831 ], + [ 6.9082012, 46.3928257 ], + [ 6.9078041, 46.3926386 ], + [ 6.9073975999999995, 46.3924091 ], + [ 6.9071269, 46.3921766 ], + [ 6.9068689, 46.3918839 ], + [ 6.9066402, 46.3915914 ], + [ 6.9064295, 46.391361 ], + [ 6.9061294, 46.3910572 ], + [ 6.9058206, 46.3909785 ], + [ 6.9044375, 46.3914847 ], + [ 6.9040859999999995, 46.3915334 ], + [ 6.9036292, 46.3915511 ], + [ 6.9033044, 46.3915217 ], + [ 6.9029314, 46.3914435 ], + [ 6.9017377, 46.3912011 ], + [ 6.8994823, 46.3907659 ], + [ 6.8964662, 46.3898635 ], + [ 6.8944392, 46.3895874 ], + [ 6.8939288, 46.3894294 ], + [ 6.8933982, 46.3892766 ], + [ 6.8929529, 46.3891143 ], + [ 6.8924710000000005, 46.3889609 ], + [ 6.8920429, 46.3888707 ], + [ 6.8915597, 46.3887639 ], + [ 6.8911961, 46.3886399 ], + [ 6.8909196, 46.3885774 ], + [ 6.8906102, 46.3884868 ], + [ 6.8903986, 46.3884372 ], + [ 6.8901948, 46.3884254 ], + [ 6.8900476, 46.3884409 ], + [ 6.8887238, 46.3886162 ], + [ 6.8876003, 46.388751 ], + [ 6.8870044, 46.3887841 ], + [ 6.8867116, 46.3888106 ], + [ 6.8861521, 46.3888627 ], + [ 6.8853707, 46.3889902 ], + [ 6.8847853, 46.3890306 ], + [ 6.8844444, 46.3890748 ], + [ 6.8840747, 46.3890748 ], + [ 6.8837341, 46.389012 ], + [ 6.883442, 46.3889736 ], + [ 6.8830504, 46.3889618 ], + [ 6.8824575, 46.3889391 ], + [ 6.881293, 46.3890323 ], + [ 6.8810989, 46.3886228 ], + [ 6.8807738, 46.3884765 ], + [ 6.8805236, 46.3883178 ], + [ 6.8803449, 46.3882278 ], + [ 6.8801168, 46.3880522 ], + [ 6.8799618, 46.3879507 ], + [ 6.8796283, 46.3878267 ], + [ 6.8793916, 46.3878561 ], + [ 6.8784744, 46.3878444 ], + [ 6.8780673, 46.3878432 ], + [ 6.877667, 46.3878205 ], + [ 6.8774225, 46.3878095 ], + [ 6.8772603, 46.3877799 ], + [ 6.8772444, 46.3876673 ], + [ 6.876733, 46.3876225 ], + [ 6.8761697999999996, 46.3876287 ], + [ 6.8756978, 46.387621 ], + [ 6.8752202, 46.3876096 ], + [ 6.8716336, 46.3852832 ], + [ 6.8722151, 46.384687 ], + [ 6.8716409, 46.3844273 ], + [ 6.8716288, 46.3844218 ], + [ 6.871028, 46.3841503 ], + [ 6.8716957999999995, 46.38338 ], + [ 6.8719962, 46.3829298 ], + [ 6.8723224, 46.3825023 ], + [ 6.8727954, 46.3820189 ], + [ 6.8733585, 46.3816187 ], + [ 6.8740745, 46.3811195 ], + [ 6.8749112, 46.3807368 ], + [ 6.8753189, 46.3805912 ], + [ 6.875491, 46.3805238 ], + [ 6.8755628, 46.3805007 ], + [ 6.8755892, 46.3804558 ], + [ 6.8755728, 46.3803928 ], + [ 6.8755626, 46.3803541 ], + [ 6.8755467, 46.3802415 ], + [ 6.8754921, 46.3801854 ], + [ 6.8753187, 46.3802187 ], + [ 6.8750758, 46.3802194 ], + [ 6.8748479, 46.3802524 ], + [ 6.8746947, 46.3802229 ], + [ 6.8745807, 46.3801666 ], + [ 6.8744734, 46.3800202 ], + [ 6.8743543, 46.3798289 ], + [ 6.8741911, 46.3796598 ], + [ 6.8739793, 46.3794798 ], + [ 6.8738177, 46.3793216 ], + [ 6.8735305, 46.3791258 ], + [ 6.8733529, 46.3790134 ], + [ 6.873103, 46.3789005 ], + [ 6.8727445, 46.3787648 ], + [ 6.872392, 46.3786001 ], + [ 6.8721981, 46.3784938 ], + [ 6.8718815, 46.3783186 ], + [ 6.8716392, 46.378179 ], + [ 6.8713363, 46.3780137 ], + [ 6.8711094, 46.3778785 ], + [ 6.8708259, 46.3777206 ], + [ 6.870589, 46.3776078 ], + [ 6.8703293, 46.3775067 ], + [ 6.8699977, 46.3772881 ], + [ 6.8697041, 46.3770852 ], + [ 6.869533, 46.3769719 ], + [ 6.8692495000000005, 46.3767356 ], + [ 6.8692724, 46.3766457 ], + [ 6.8694684, 46.3765442 ], + [ 6.8697772, 46.3764548 ], + [ 6.8702334, 46.3761782 ], + [ 6.8706901, 46.3759305 ], + [ 6.8712523, 46.3756113 ], + [ 6.8718281999999995, 46.3752218 ], + [ 6.8726589, 46.3747052 ], + [ 6.8732554, 46.3742097 ], + [ 6.8738976, 46.3736993 ], + [ 6.8745644, 46.37308 ], + [ 6.8751119, 46.3725286 ], + [ 6.8756881, 46.3719485 ], + [ 6.8759481000000005, 46.3715432 ], + [ 6.8755754, 46.3714531 ], + [ 6.8753413, 46.3713063 ], + [ 6.8752014, 46.371167 ], + [ 6.8750886, 46.3709973 ], + [ 6.8749413, 46.3708733 ], + [ 6.8746915, 46.3708334 ], + [ 6.8743172, 46.3708171 ], + [ 6.8740245, 46.3708391 ], + [ 6.8735437, 46.3708322 ], + [ 6.8732588, 46.3708163 ], + [ 6.8728688, 46.370827 ], + [ 6.8727883, 46.3708382 ], + [ 6.8728110000000004, 46.3709167 ], + [ 6.8728593, 46.371041 ], + [ 6.8728261, 46.3711803 ], + [ 6.8726959999999995, 46.3711986 ], + [ 6.8724862, 46.3713 ], + [ 6.8723161, 46.3714126 ], + [ 6.8722242, 46.3715021 ], + [ 6.8721259, 46.3716528 ], + [ 6.8719964000000004, 46.3717726 ], + [ 6.8717303, 46.3718892 ], + [ 6.8714438, 46.3719452 ], + [ 6.8711183, 46.3720012 ], + [ 6.870906, 46.3720308 ], + [ 6.8705483, 46.372064 ], + [ 6.8703205, 46.3720908 ], + [ 6.8701574, 46.3721583 ], + [ 6.8699787, 46.3722366 ], + [ 6.8697193, 46.3724125 ], + [ 6.8679412, 46.3715553 ], + [ 6.8675237, 46.3717916 ], + [ 6.8671251, 46.3719983 ], + [ 6.8667756, 46.372173599999996 ], + [ 6.8663028, 46.3723305 ], + [ 6.8658893, 46.3724139 ], + [ 6.8653841, 46.3725553 ], + [ 6.8648044, 46.37269 ], + [ 6.8644153, 46.3727681 ], + [ 6.8640737, 46.3728807 ], + [ 6.8636503, 46.3730539 ], + [ 6.8633236, 46.3732222 ], + [ 6.8631291, 46.3733302 ], + [ 6.8627477, 46.3736 ], + [ 6.8624544, 46.3738296 ], + [ 6.8622097, 46.3740839 ], + [ 6.8619073, 46.3743361 ], + [ 6.8616402999999995, 46.3746171 ], + [ 6.8613625, 46.3749279 ], + [ 6.8611188, 46.375157 ], + [ 6.8608583, 46.3754381 ], + [ 6.8605646, 46.375783 ], + [ 6.8602881, 46.3760461 ], + [ 6.8600017, 46.3763164 ], + [ 6.8597402, 46.3765363 ], + [ 6.8593992, 46.3767504 ], + [ 6.8591152, 46.3769461 ], + [ 6.8588608, 46.377121 ], + [ 6.8584695, 46.3773961 ], + [ 6.8581864, 46.3775827 ], + [ 6.8580568, 46.377699 ], + [ 6.8578773, 46.3778564 ], + [ 6.8577857, 46.3779918 ], + [ 6.8577208, 46.3781336 ], + [ 6.8576383, 46.3783293 ], + [ 6.8575827, 46.3785161 ], + [ 6.8575502, 46.3787418 ], + [ 6.857524, 46.3789216 ], + [ 6.8575234, 46.3790457 ], + [ 6.8574915, 46.3792975 ], + [ 6.8574671, 46.3794556 ], + [ 6.8573603, 46.3796421 ], + [ 6.8573269, 46.3797258 ], + [ 6.8572296, 46.3797882 ], + [ 6.8569683, 46.3799163 ], + [ 6.8568224, 46.3799571 ], + [ 6.8565226, 46.3800355 ], + [ 6.856166, 46.3801075 ], + [ 6.8559377, 46.3801809 ], + [ 6.8556665, 46.3802488 ], + [ 6.8554005, 46.3803546 ], + [ 6.8552763, 46.3805006 ], + [ 6.8551613, 46.3806871 ], + [ 6.8551293, 46.380793 ], + [ 6.855161, 46.3809506 ], + [ 6.8550625, 46.3814189 ], + [ 6.854998, 46.3817568 ], + [ 6.8548435, 46.3823011 ], + [ 6.8546805, 46.3826503 ], + [ 6.8542948, 46.383314 ], + [ 6.8537979, 46.3840348 ], + [ 6.8532762, 46.3847994 ], + [ 6.8530388, 46.3851104 ], + [ 6.8528598, 46.3852156 ], + [ 6.8525998999999995, 46.3853572 ], + [ 6.8523389, 46.3854476 ], + [ 6.8520387, 46.3856269 ], + [ 6.8518487, 46.3857662 ], + [ 6.851638, 46.3859424 ], + [ 6.8514684, 46.3860773 ], + [ 6.8512474999999995, 46.3863695 ], + [ 6.8511097, 46.3865657 ], + [ 6.8509146, 46.3867231 ], + [ 6.8505785, 46.3867672 ], + [ 6.8502202, 46.3868418 ], + [ 6.8500575999999995, 46.3868526 ], + [ 6.8497985, 46.3869197 ], + [ 6.849596, 46.3870095 ], + [ 6.8494165, 46.3870814 ], + [ 6.8491134, 46.3872345 ], + [ 6.8489341, 46.3873577 ], + [ 6.8487398, 46.3874368 ], + [ 6.848521, 46.3874635 ], + [ 6.8482449, 46.3875197 ], + [ 6.847903, 46.3875036 ], + [ 6.8475997, 46.3875253 ], + [ 6.847169, 46.3875303 ], + [ 6.8465746, 46.3874912 ], + [ 6.8461029, 46.3874617 ], + [ 6.8455988, 46.3874159 ], + [ 6.8451747, 46.387411 ], + [ 6.8448499, 46.3873877 ], + [ 6.8446228, 46.3873542 ], + [ 6.8445253, 46.3872799 ], + [ 6.8442978, 46.3871284 ], + [ 6.8439735, 46.3869864 ], + [ 6.8436722, 46.3868957 ], + [ 6.8432736, 46.3867947 ], + [ 6.8429416, 46.3866815 ], + [ 6.8426326, 46.3865574 ], + [ 6.8422595, 46.3864287 ], + [ 6.8417544, 46.3862479 ], + [ 6.8415015, 46.3861916 ], + [ 6.8411435, 46.38609 ], + [ 6.8409481, 46.3860556 ], + [ 6.8406716, 46.3860038 ], + [ 6.8404864, 46.3859245 ], + [ 6.8402331, 46.3857505 ], + [ 6.8400148, 46.3856602 ], + [ 6.8398048, 46.3856196 ], + [ 6.8395653, 46.3856038 ], + [ 6.8393063, 46.3855071 ], + [ 6.8390621, 46.3854051 ], + [ 6.8388013999999995, 46.3853147 ], + [ 6.8385417, 46.3852134 ], + [ 6.8383474, 46.385152 ], + [ 6.8381944, 46.3851001 ], + [ 6.8378853, 46.3849868 ], + [ 6.8375927, 46.3848521 ], + [ 6.8373163, 46.3847949 ], + [ 6.8370791, 46.3847163 ], + [ 6.8368454, 46.3846143 ], + [ 6.8366403, 46.3844233 ], + [ 6.8365273, 46.3843552 ], + [ 6.8363093, 46.38431 ], + [ 6.8361294, 46.3843324 ], + [ 6.835739, 46.3843726 ], + [ 6.8354376, 46.3843718 ], + [ 6.8351696, 46.3842814 ], + [ 6.8349824, 46.3841733 ], + [ 6.8348829, 46.3840558 ], + [ 6.8348125, 46.3839592 ], + [ 6.8346409999999995, 46.3838918 ], + [ 6.8343255, 46.3838414 ], + [ 6.833463, 46.3837325 ], + [ 6.8332426, 46.3833903 ], + [ 6.8329815, 46.383496 ], + [ 6.8328188, 46.383514 ], + [ 6.8325525, 46.3834955 ], + [ 6.8323252, 46.3834727 ], + [ 6.831934, 46.3834382 ], + [ 6.8316403999999995, 46.3833925 ], + [ 6.8314519, 46.3833923 ], + [ 6.8312022, 46.3834216 ], + [ 6.8310401, 46.383534 ], + [ 6.8308932, 46.3836575 ], + [ 6.8307136, 46.3837365 ], + [ 6.8304536, 46.3836686 ], + [ 6.8299001, 46.3835369 ], + [ 6.8289902, 46.3832432 ], + [ 6.828394, 46.3830915 ], + [ 6.8280375, 46.3830015 ], + [ 6.8276953, 46.3829447 ], + [ 6.8274455, 46.3829784 ], + [ 6.8273142, 46.3830902 ], + [ 6.8271254, 46.3831918 ], + [ 6.8269405, 46.3831574 ], + [ 6.8265895, 46.3831618 ], + [ 6.8262246, 46.383247 ], + [ 6.8259798, 46.3832628 ], + [ 6.8257916, 46.3832393 ], + [ 6.8256296, 46.3832016 ], + [ 6.8255078000000005, 46.3831226 ], + [ 6.825336, 46.3830767 ], + [ 6.8252159, 46.3830697 ], + [ 6.8250119, 46.383002 ], + [ 6.8248159, 46.3829524 ], + [ 6.8245167, 46.3829633 ], + [ 6.82415, 46.3829964 ], + [ 6.823905, 46.3830303 ], + [ 6.8237263, 46.3831021 ], + [ 6.8236279, 46.3831807 ], + [ 6.8234897, 46.3834058 ], + [ 6.8234476, 46.3836044 ], + [ 6.8235069, 46.3838971 ], + [ 6.8236028, 46.3841045 ], + [ 6.8236738, 46.3842956 ], + [ 6.8237235, 46.3844983 ], + [ 6.8236831, 46.3846897 ], + [ 6.8235515, 46.3848311 ], + [ 6.8234449, 46.3848467 ], + [ 6.8232333, 46.3848015 ], + [ 6.8230974, 46.3846847 ], + [ 6.8229021, 46.3845711 ], + [ 6.8226585, 46.3844862 ], + [ 6.8223978, 46.3845414 ], + [ 6.8216654, 46.384721 ], + [ 6.8212001, 46.3848444 ], + [ 6.8207606, 46.3849788 ], + [ 6.8202978, 46.3850977 ], + [ 6.8200112, 46.3851465 ], + [ 6.8197282, 46.3850973 ], + [ 6.8195393, 46.3849954 ], + [ 6.819306, 46.3849275 ], + [ 6.819069, 46.3849092 ], + [ 6.8187262, 46.3849767 ], + [ 6.8185085, 46.3850393 ], + [ 6.8181823999999995, 46.3852121 ], + [ 6.8178797, 46.3854595 ], + [ 6.8177261, 46.3855379 ], + [ 6.8174498, 46.3856164 ], + [ 6.8171305, 46.3856839 ], + [ 6.8169505, 46.3857242 ], + [ 6.8169032, 46.3858078 ], + [ 6.8167652, 46.3859374 ], + [ 6.8165766, 46.3859489 ], + [ 6.8163585, 46.3859082 ], + [ 6.8160658, 46.3859191 ], + [ 6.8157404, 46.3859588 ], + [ 6.8154707, 46.3860264 ], + [ 6.8153245, 46.3860869 ], + [ 6.8150726, 46.3862285 ], + [ 6.8150458, 46.3863003 ], + [ 6.8149746, 46.3864195 ], + [ 6.8149095, 46.3865659 ], + [ 6.8148325, 46.386757 ], + [ 6.814665, 46.386908 ], + [ 6.8145074, 46.3870539 ], + [ 6.8142792, 46.3871776 ], + [ 6.8138725, 46.3872896 ], + [ 6.8135139, 46.3873794 ], + [ 6.8131813999999995, 46.3874638 ], + [ 6.8127813, 46.3875651 ], + [ 6.8124489, 46.3876433 ], + [ 6.8122211, 46.3876654 ], + [ 6.8118479, 46.3876921 ], + [ 6.8113918, 46.3877822 ], + [ 6.811251, 46.3877994 ], + [ 6.8109743, 46.3879121 ], + [ 6.8107461, 46.3880395 ], + [ 6.8104638, 46.388208 ], + [ 6.809958, 46.3883095 ], + [ 6.8096817, 46.3883871 ], + [ 6.8092806, 46.3884991 ], + [ 6.8089873, 46.3885622 ], + [ 6.8085249, 46.3886406 ], + [ 6.8082547, 46.3886742 ], + [ 6.808011, 46.3886737 ], + [ 6.8075546, 46.3887899 ], + [ 6.8072938, 46.3888568 ], + [ 6.8069624, 46.3889809 ], + [ 6.8067339, 46.3890705 ], + [ 6.8064748, 46.3891329 ], + [ 6.8062457, 46.3891263 ], + [ 6.8058945, 46.3891432 ], + [ 6.8055799, 46.3891585 ], + [ 6.8053672, 46.3892103 ], + [ 6.8052373, 46.3893337 ], + [ 6.805106, 46.3895139 ], + [ 6.805014, 46.3897391 ], + [ 6.8049254, 46.3899527 ], + [ 6.8048111, 46.3902049 ], + [ 6.8047466, 46.3903692 ], + [ 6.8047353, 46.3905715 ], + [ 6.8047453, 46.3908307 ], + [ 6.8047501, 46.3910448 ], + [ 6.8047333, 46.3913038 ], + [ 6.8046289, 46.3915443 ], + [ 6.8045203, 46.3917308 ], + [ 6.8044557999999995, 46.3918932 ], + [ 6.8044378, 46.3921135 ], + [ 6.8044545, 46.3923503 ], + [ 6.8044536, 46.3925014 ], + [ 6.8044148, 46.3926253 ], + [ 6.8041759, 46.3926878 ], + [ 6.8040299, 46.3927329 ], + [ 6.8041364, 46.3929395 ], + [ 6.8043373, 46.3931313 ], + [ 6.8045102, 46.3932223 ], + [ 6.804662, 46.3932331 ], + [ 6.8046793, 46.3932179 ], + [ 6.8051186, 46.3933759 ], + [ 6.8053455, 46.393432 ], + [ 6.8055829, 46.3935611 ], + [ 6.8056164, 46.3936171 ], + [ 6.8052463, 46.3939954 ], + [ 6.8053363000000004, 46.3940833 ], + [ 6.8132318, 46.4106265 ], + [ 6.8211321, 46.427169 ], + [ 6.8211296, 46.4271701 ], + [ 6.8150472, 46.4480324 ], + [ 6.8089603, 46.4688944 ], + [ 6.8091397, 46.4689332 ], + [ 6.8092521, 46.4690634 ], + [ 6.8092694, 46.4692547 ], + [ 6.8104168, 46.4698219 ], + [ 6.8105673, 46.4703175 ], + [ 6.8106707, 46.4703811 ], + [ 6.8108768, 46.4703603 ], + [ 6.8119350999999995, 46.4702531 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "WZV0022", + "country" : "CHE", + "name" : [ + { + "text" : "Wasser- und Zugvogelreservat Les Grangettes", + "lang" : "de-CH" + }, + { + "text" : "Réserve d'oiseaux d'eau et de migrateurs Les Grangettes", + "lang" : "fr-CH" + }, + { + "text" : "Riserva di uccelli acquatici e migratori Les Grangettes", + "lang" : "it-CH" + }, + { + "text" : "Water Bird and Migratory Bird Reserves Les Grangettes", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.1659299, 46.806065 ], + [ 7.1651337, 46.8050843 ], + [ 7.1638943, 46.804406 ], + [ 7.1594306, 46.8042917 ], + [ 7.1584797, 46.8075624 ], + [ 7.1614655, 46.8093523 ], + [ 7.1659299, 46.806065 ] + ] + ], + "layer" : { + "upper" : 300, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "FR003", + "country" : "CHE", + "name" : [ + { + "text" : "BAPOL", + "lang" : "de-CH" + }, + { + "text" : "BAPOL", + "lang" : "fr-CH" + }, + { + "text" : "BAPOL", + "lang" : "it-CH" + }, + { + "text" : "BAPOL", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Sicherheits-, Justiz- und Sportdirektion (SJSD)", + "lang" : "de-CH" + }, + { + "text" : "Direction de la sécurité, de la justice et du sport (DSJS)", + "lang" : "fr-CH" + }, + { + "text" : "Direction de la sécurité, de la justice et du sport (DSJS)", + "lang" : "it-CH" + }, + { + "text" : "Direction de la sécurité, de la justice et du sport (DSJS)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Die Direktion", + "lang" : "de-CH" + }, + { + "text" : "La direction", + "lang" : "fr-CH" + }, + { + "text" : "La direction", + "lang" : "it-CH" + }, + { + "text" : "La direction", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Elsa Gendre", + "lang" : "de-CH" + }, + { + "text" : "Elsa Gendre", + "lang" : "fr-CH" + }, + { + "text" : "Elsa Gendre", + "lang" : "it-CH" + }, + { + "text" : "Elsa Gendre", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.fr.ch/police-et-securite/criminalite-ordre-public-et-circulation/drones-legislation-et-demandes-de-derogation", + "email" : "dsjs@fr.ch", + "phone" : "0041263051403", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7648025, 47.4806739 ], + [ 7.765179, 47.4806832 ], + [ 7.765308, 47.4805964 ], + [ 7.7654283, 47.4805723 ], + [ 7.7655076, 47.4805725 ], + [ 7.7656109, 47.4805779 ], + [ 7.7656973, 47.4805959 ], + [ 7.7657578, 47.4806383 ], + [ 7.7658588, 47.4807007 ], + [ 7.7674476, 47.4803729 ], + [ 7.7674899, 47.4803484 ], + [ 7.7677359, 47.4801952 ], + [ 7.7678948, 47.4800986 ], + [ 7.7681472, 47.4799475 ], + [ 7.7683292999999995, 47.4798479 ], + [ 7.7685075999999995, 47.479747 ], + [ 7.7686615, 47.4796603 ], + [ 7.7687859, 47.479598 ], + [ 7.7690604, 47.4794622 ], + [ 7.7694229, 47.4792826 ], + [ 7.7697, 47.4791562 ], + [ 7.7699388, 47.4790474 ], + [ 7.7699922, 47.4790212 ], + [ 7.7700348, 47.478989 ], + [ 7.770063, 47.4789629 ], + [ 7.7700981, 47.4789192 ], + [ 7.7701168, 47.4788893 ], + [ 7.7701379, 47.4788418 ], + [ 7.7701414, 47.4787905 ], + [ 7.7702024, 47.4786686 ], + [ 7.7702623, 47.4785842 ], + [ 7.7703456, 47.4785028 ], + [ 7.7704207, 47.4784215 ], + [ 7.7704878, 47.478358 ], + [ 7.7705705, 47.4782937 ], + [ 7.7706615, 47.4782324 ], + [ 7.7707653, 47.4781711 ], + [ 7.7708348, 47.4781372 ], + [ 7.7709068, 47.4781059 ], + [ 7.7709811, 47.4780772 ], + [ 7.7711283, 47.4780338 ], + [ 7.7711433, 47.4780327 ], + [ 7.7711584, 47.4780324 ], + [ 7.7711734, 47.478033 ], + [ 7.7712031, 47.4780367 ], + [ 7.7712175, 47.4780398 ], + [ 7.7712098, 47.4780023 ], + [ 7.7712072, 47.4779324 ], + [ 7.7712106, 47.4779043 ], + [ 7.7710178, 47.4774547 ], + [ 7.7715353, 47.4758394 ], + [ 7.771713, 47.4752676 ], + [ 7.7714286, 47.4752091 ], + [ 7.771221, 47.4751671 ], + [ 7.7708994, 47.4753889 ], + [ 7.7705544, 47.475605 ], + [ 7.7702094, 47.4758884 ], + [ 7.7697682, 47.4760922 ], + [ 7.7690994, 47.4763854 ], + [ 7.7685483, 47.4765983 ], + [ 7.7680647, 47.4767241 ], + [ 7.7680378999999995, 47.4767689 ], + [ 7.768003, 47.4767387 ], + [ 7.7679621999999995, 47.4767484 ], + [ 7.7679102, 47.4768006 ], + [ 7.767642, 47.4768604 ], + [ 7.7678696, 47.4770577 ], + [ 7.7678256, 47.4771337 ], + [ 7.7676134, 47.4771886 ], + [ 7.7673043, 47.4769289 ], + [ 7.7671745, 47.4769574 ], + [ 7.767182, 47.4769695 ], + [ 7.7672489, 47.4770742 ], + [ 7.7673589, 47.4772544 ], + [ 7.7673943, 47.4772887 ], + [ 7.7674298, 47.4773284 ], + [ 7.7675613, 47.4775364 ], + [ 7.7675294, 47.4775527 ], + [ 7.7674573, 47.4774391 ], + [ 7.7672805, 47.4774971 ], + [ 7.7671091, 47.477311 ], + [ 7.7670329, 47.4772284 ], + [ 7.7669393, 47.4772119 ], + [ 7.7667776, 47.4771828 ], + [ 7.7667157, 47.4771744 ], + [ 7.7666354, 47.4771746 ], + [ 7.7665136, 47.4771829 ], + [ 7.7664376, 47.4772045 ], + [ 7.7661575, 47.4772971 ], + [ 7.7661457, 47.4773027 ], + [ 7.7659693999999995, 47.4773865 ], + [ 7.765897, 47.4774209 ], + [ 7.7658585, 47.4774392 ], + [ 7.7657395000000005, 47.4774854 ], + [ 7.7655124, 47.4775737 ], + [ 7.7654615, 47.4775934 ], + [ 7.7653853, 47.4776232 ], + [ 7.7652179, 47.4776885 ], + [ 7.7651019, 47.4777338 ], + [ 7.7648046, 47.4778386 ], + [ 7.764781, 47.477847 ], + [ 7.7644247, 47.4779373 ], + [ 7.7642658, 47.4780076 ], + [ 7.7640878, 47.4780611 ], + [ 7.7636371, 47.478182 ], + [ 7.7636313, 47.4781836 ], + [ 7.7635532, 47.4782017 ], + [ 7.7633995, 47.4782371 ], + [ 7.7633044, 47.4782589 ], + [ 7.7630897999999995, 47.4783083 ], + [ 7.7629589, 47.4783214 ], + [ 7.7629502, 47.4783222 ], + [ 7.7627948, 47.4783408 ], + [ 7.7627098, 47.478351 ], + [ 7.7626987, 47.4783545 ], + [ 7.7625951, 47.4783871 ], + [ 7.7624827, 47.4784225 ], + [ 7.762178, 47.4785608 ], + [ 7.762132, 47.4785816 ], + [ 7.7617317, 47.478735 ], + [ 7.7616755, 47.4787532 ], + [ 7.7615863, 47.4787821 ], + [ 7.7615365, 47.4787982 ], + [ 7.7615138, 47.4788056 ], + [ 7.7614339, 47.4788465 ], + [ 7.7613768, 47.4788758 ], + [ 7.7611439, 47.4789075 ], + [ 7.7609948, 47.4788773 ], + [ 7.760735, 47.4787724 ], + [ 7.7606895, 47.4787558 ], + [ 7.7606177, 47.478785 ], + [ 7.7605752, 47.4788021 ], + [ 7.760461, 47.4787026 ], + [ 7.7604358, 47.4786807 ], + [ 7.7602484, 47.4785496 ], + [ 7.7601665, 47.4784788 ], + [ 7.7600771, 47.4783917 ], + [ 7.7599345, 47.4782746 ], + [ 7.7592885, 47.4779037 ], + [ 7.7589862, 47.4778094 ], + [ 7.7587992, 47.477751 ], + [ 7.7587897, 47.477749 ], + [ 7.7585289, 47.477692 ], + [ 7.7585011999999995, 47.4777591 ], + [ 7.7583949, 47.4780169 ], + [ 7.758288, 47.4782831 ], + [ 7.7585113, 47.4783628 ], + [ 7.7584078, 47.4785467 ], + [ 7.7582871, 47.4786682 ], + [ 7.7584885, 47.478721 ], + [ 7.7585882999999995, 47.4787445 ], + [ 7.7584501, 47.4790902 ], + [ 7.758356, 47.4792942 ], + [ 7.7583481, 47.4793184 ], + [ 7.7584218, 47.4793592 ], + [ 7.7585222, 47.4794138 ], + [ 7.7587674, 47.4791859 ], + [ 7.7589527, 47.4790196 ], + [ 7.7593827, 47.4792453 ], + [ 7.7595977, 47.4794607 ], + [ 7.7597691, 47.4796423 ], + [ 7.7600592, 47.4795129 ], + [ 7.7602147, 47.4794319 ], + [ 7.7605949, 47.4792386 ], + [ 7.7608956, 47.4792725 ], + [ 7.7609422, 47.4792725 ], + [ 7.7609366, 47.4791842 ], + [ 7.7612585, 47.4791642 ], + [ 7.7615837, 47.4794064 ], + [ 7.7618917, 47.479636 ], + [ 7.7620801, 47.4797782 ], + [ 7.7622084000000005, 47.4798716 ], + [ 7.7622387, 47.4801794 ], + [ 7.7623549, 47.4802406 ], + [ 7.7630603, 47.48042 ], + [ 7.7639779, 47.4806541 ], + [ 7.7648025, 47.4806739 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns076", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Grammel", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Grammel", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Grammel", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Grammel", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.1053821, 47.1706875 ], + [ 9.1052185, 47.1683356 ], + [ 9.1048745, 47.1659927 ], + [ 9.1043513, 47.1636654 ], + [ 9.1036503, 47.1613599 ], + [ 9.1027734, 47.1590825 ], + [ 9.101723, 47.1568396 ], + [ 9.1005021, 47.1546373 ], + [ 9.099114, 47.1524815 ], + [ 9.0975625, 47.1503782 ], + [ 9.0958519, 47.1483332 ], + [ 9.0939869, 47.146352 ], + [ 9.0919727, 47.1444401 ], + [ 9.0898146, 47.1426027 ], + [ 9.0875188, 47.140844799999996 ], + [ 9.0850914, 47.1391713 ], + [ 9.0825391, 47.1375867 ], + [ 9.0798689, 47.1360953 ], + [ 9.0770881, 47.1347013 ], + [ 9.0742044, 47.1334085 ], + [ 9.0712256, 47.1322203 ], + [ 9.0681599, 47.13114 ], + [ 9.0650157, 47.1301707 ], + [ 9.0618016, 47.1293149 ], + [ 9.0585263, 47.1285749 ], + [ 9.0551988, 47.1279529 ], + [ 9.0518283, 47.1274505 ], + [ 9.0484239, 47.127069 ], + [ 9.044995, 47.1268096 ], + [ 9.0415509, 47.1266729 ], + [ 9.038101, 47.1266593 ], + [ 9.0346548, 47.1267689 ], + [ 9.0312218, 47.1270013 ], + [ 9.0278112, 47.1273559 ], + [ 9.0244324, 47.1278317 ], + [ 9.0210946, 47.1284275 ], + [ 9.0178071, 47.1291416 ], + [ 9.0145787, 47.129972 ], + [ 9.0114183, 47.1309166 ], + [ 9.0083345, 47.1319726 ], + [ 9.0053358, 47.1331372 ], + [ 9.0024305, 47.1344073 ], + [ 8.9996263, 47.1357793 ], + [ 8.9969311, 47.1372495 ], + [ 8.9943522, 47.1388139 ], + [ 8.9918967, 47.1404682 ], + [ 8.9895712, 47.1422079 ], + [ 8.9873823, 47.1440282 ], + [ 8.9853358, 47.1459241 ], + [ 8.9834374, 47.1478905 ], + [ 8.9816924, 47.1499219 ], + [ 8.9801054, 47.1520128 ], + [ 8.9786809, 47.1541575 ], + [ 8.9774228, 47.1563501 ], + [ 8.9763345, 47.1585846 ], + [ 8.9754191, 47.1608548 ], + [ 8.9746791, 47.1631547 ], + [ 8.9741166, 47.1654777 ], + [ 8.973733, 47.1678177 ], + [ 8.9735295, 47.1701682 ], + [ 8.9735066, 47.1725227 ], + [ 8.9736645, 47.1748748 ], + [ 8.9740028, 47.177218 ], + [ 8.9745204, 47.1795459 ], + [ 8.9752161, 47.1818522 ], + [ 8.976088, 47.1841305 ], + [ 8.9771336, 47.1863745 ], + [ 8.9783502, 47.1885782 ], + [ 8.9797343, 47.1907354 ], + [ 8.9812823, 47.1928402 ], + [ 8.982990000000001, 47.1948869 ], + [ 8.9848525, 47.1968699 ], + [ 8.986865, 47.1987836 ], + [ 8.9890217, 47.200623 ], + [ 8.9913169, 47.2023828 ], + [ 8.9937442, 47.2040583 ], + [ 8.9962971, 47.2056448 ], + [ 8.9989684, 47.2071381 ], + [ 9.0017509, 47.208534 ], + [ 9.0046369, 47.2098286 ], + [ 9.0076185, 47.2110185 ], + [ 9.0106876, 47.2121004 ], + [ 9.0138356, 47.2130712 ], + [ 9.0170541, 47.2139283 ], + [ 9.020334, 47.2146694 ], + [ 9.0236665, 47.2152924 ], + [ 9.0270423, 47.2157957 ], + [ 9.0304521, 47.2161777 ], + [ 9.0338867, 47.2164376 ], + [ 9.0373366, 47.2165745 ], + [ 9.0407923, 47.2165881 ], + [ 9.0442442, 47.2164784 ], + [ 9.047683, 47.2162456 ], + [ 9.0510991, 47.2158904 ], + [ 9.0544833, 47.2154138 ], + [ 9.0578261, 47.2148171 ], + [ 9.0611184, 47.2141019 ], + [ 9.0643511, 47.2132701 ], + [ 9.0675155, 47.2123242 ], + [ 9.0706027, 47.2112666 ], + [ 9.0736043, 47.2101002 ], + [ 9.0765121, 47.2088284 ], + [ 9.0793181, 47.2074545 ], + [ 9.0820146, 47.2059824 ], + [ 9.0845942, 47.2044161 ], + [ 9.0870498, 47.2027598 ], + [ 9.0893747, 47.2010182 ], + [ 9.0915625, 47.199196 ], + [ 9.0936072, 47.1972982 ], + [ 9.0955033, 47.1953301 ], + [ 9.0972455, 47.1932969 ], + [ 9.0988291, 47.1912044 ], + [ 9.1002498, 47.1890583 ], + [ 9.1015036, 47.1868644 ], + [ 9.1025872, 47.1846287 ], + [ 9.1034976, 47.1823574 ], + [ 9.1042324, 47.1800568 ], + [ 9.1047895, 47.1777331 ], + [ 9.1051674, 47.1753927 ], + [ 9.1053651, 47.173042 ], + [ 9.1053821, 47.1706875 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZX001", + "country" : "CHE", + "name" : [ + { + "text" : "LSZX Schänis", + "lang" : "de-CH" + }, + { + "text" : "LSZX Schänis", + "lang" : "fr-CH" + }, + { + "text" : "LSZX Schänis", + "lang" : "it-CH" + }, + { + "text" : "LSZX Schänis", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Flugplatz Schänis", + "lang" : "de-CH" + }, + { + "text" : "Flugplatz Schänis", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatz Schänis", + "lang" : "it-CH" + }, + { + "text" : "Flugplatz Schänis", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Lukas Zeitner", + "lang" : "de-CH" + }, + { + "text" : "Lukas Zeitner", + "lang" : "fr-CH" + }, + { + "text" : "Lukas Zeitner", + "lang" : "it-CH" + }, + { + "text" : "Lukas Zeitner", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.flugplatz-schaenis.ch", + "email" : "flugplatzleiter@flugplatz-schaenis.ch", + "phone" : "0041552505000", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT12H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.5177799, 46.519695 ], + [ 6.517777, 46.5195537 ], + [ 6.5177633, 46.5194127 ], + [ 6.517739, 46.5192724 ], + [ 6.517704, 46.5191332 ], + [ 6.5176586, 46.5189955 ], + [ 6.5176028, 46.5188595 ], + [ 6.5175367, 46.5187258 ], + [ 6.5174606, 46.5185946 ], + [ 6.5173746999999995, 46.5184664 ], + [ 6.5172792, 46.5183415 ], + [ 6.5171743, 46.5182201 ], + [ 6.5170604, 46.5181028 ], + [ 6.5169377, 46.5179897 ], + [ 6.5168066, 46.5178812 ], + [ 6.5166675, 46.5177776 ], + [ 6.5165207, 46.5176791 ], + [ 6.5163666, 46.5175861 ], + [ 6.5162057, 46.5174988 ], + [ 6.5160385, 46.5174174 ], + [ 6.5158652, 46.5173421 ], + [ 6.5156865, 46.5172733 ], + [ 6.5155028, 46.517211 ], + [ 6.5153147, 46.5171554 ], + [ 6.5151226, 46.5171066 ], + [ 6.514927, 46.5170649 ], + [ 6.5147286, 46.5170303 ], + [ 6.5145278, 46.5170029 ], + [ 6.5143252, 46.5169829 ], + [ 6.5141214, 46.5169701 ], + [ 6.5139169, 46.5169648 ], + [ 6.5137122, 46.5169668 ], + [ 6.513508, 46.5169762 ], + [ 6.5133048, 46.516993 ], + [ 6.5131031, 46.5170171 ], + [ 6.5129036, 46.5170485 ], + [ 6.5127067, 46.517087 ], + [ 6.5125129, 46.5171326 ], + [ 6.5123229, 46.5171851 ], + [ 6.5121372, 46.5172445 ], + [ 6.5119562, 46.5173104 ], + [ 6.5117804, 46.5173828 ], + [ 6.5116104, 46.5174615 ], + [ 6.5114465, 46.5175461 ], + [ 6.5112893, 46.5176366 ], + [ 6.5111392, 46.5177327 ], + [ 6.5109966, 46.517834 ], + [ 6.5108618, 46.5179404 ], + [ 6.5107353, 46.5180514 ], + [ 6.5106174, 46.5181669 ], + [ 6.5105084, 46.5182865 ], + [ 6.5104086, 46.5184099 ], + [ 6.5103183, 46.5185366 ], + [ 6.5102378, 46.5186665 ], + [ 6.5101672, 46.5187991 ], + [ 6.5101067, 46.5189341 ], + [ 6.5100566, 46.5190711 ], + [ 6.5100169, 46.5192097 ], + [ 6.5099878, 46.5193495 ], + [ 6.5099693, 46.5194903 ], + [ 6.5099616000000005, 46.5196314 ], + [ 6.5099645, 46.5197727 ], + [ 6.5099781, 46.5199137 ], + [ 6.5100024, 46.5200539 ], + [ 6.5100374, 46.5201932 ], + [ 6.5100828, 46.5203309 ], + [ 6.5101386, 46.5204669 ], + [ 6.5102046, 46.5206006 ], + [ 6.5102807, 46.5207317 ], + [ 6.5103666, 46.52086 ], + [ 6.5104622, 46.5209849 ], + [ 6.510567, 46.5211062 ], + [ 6.5106809, 46.5212236 ], + [ 6.5108036, 46.5213367 ], + [ 6.5109347, 46.5214452 ], + [ 6.5110738, 46.5215489 ], + [ 6.5112206, 46.5216473 ], + [ 6.5113747, 46.5217403 ], + [ 6.5115356, 46.5218277 ], + [ 6.5117028999999995, 46.5219091 ], + [ 6.5118761, 46.5219843 ], + [ 6.5120548, 46.5220532 ], + [ 6.5122385, 46.5221155 ], + [ 6.5124267, 46.5221711 ], + [ 6.5126188, 46.5222199 ], + [ 6.5128143, 46.5222616 ], + [ 6.5130128, 46.5222962 ], + [ 6.5132136, 46.5223236 ], + [ 6.5134162, 46.5223436 ], + [ 6.51362, 46.5223564 ], + [ 6.5138245999999995, 46.5223618 ], + [ 6.5140291999999995, 46.5223597 ], + [ 6.5142335, 46.5223503 ], + [ 6.5144367, 46.5223335 ], + [ 6.5146384, 46.5223094 ], + [ 6.514838, 46.5222781 ], + [ 6.5150349, 46.5222395 ], + [ 6.5152286, 46.5221939 ], + [ 6.5154186, 46.5221414 ], + [ 6.5156044, 46.5220821 ], + [ 6.5157854, 46.5220161 ], + [ 6.5159612, 46.5219438 ], + [ 6.5161312, 46.5218651 ], + [ 6.5162949999999995, 46.5217804 ], + [ 6.5164522, 46.5216899 ], + [ 6.5166023, 46.5215939 ], + [ 6.516745, 46.5214925 ], + [ 6.5168797, 46.5213862 ], + [ 6.5170062, 46.5212751 ], + [ 6.5171242, 46.5211596 ], + [ 6.5172331, 46.52104 ], + [ 6.5173328999999995, 46.5209167 ], + [ 6.5174232, 46.5207899 ], + [ 6.5175038, 46.52066 ], + [ 6.5175744, 46.5205273 ], + [ 6.5176348, 46.5203923 ], + [ 6.5176849, 46.520255399999996 ], + [ 6.5177246, 46.5201167 ], + [ 6.5177537, 46.5199769 ], + [ 6.5177721, 46.5198362 ], + [ 6.5177799, 46.519695 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "TUI0001", + "country" : "CHE", + "name" : [ + { + "text" : "Prison de la Tuilière", + "lang" : "de-CH" + }, + { + "text" : "Prison de la Tuilière", + "lang" : "fr-CH" + }, + { + "text" : "Prison de la Tuilière", + "lang" : "it-CH" + }, + { + "text" : "Prison de la Tuilière", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Direction du Service pénitentiaire Vaud", + "lang" : "de-CH" + }, + { + "text" : "Direction du Service pénitentiaire Vaud", + "lang" : "fr-CH" + }, + { + "text" : "Direction du Service pénitentiaire Vaud", + "lang" : "it-CH" + }, + { + "text" : "Direction du Service pénitentiaire Vaud", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/toutes-les-autorites/departements/departement-de-la-jeunesse-de-lenvironnement-et-de-la-securite-djes/service-penitentiaire-spen/", + "email" : "info.spen@vd.ch", + "phone" : "0041213164801", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.8292602, 47.3018782 ], + [ 8.8307804, 47.3019687 ], + [ 8.832041199999999, 47.3020428 ], + [ 8.832689, 47.3020816 ], + [ 8.8339301, 47.3021552 ], + [ 8.8339391, 47.3021276 ], + [ 8.8342414, 47.3021731 ], + [ 8.8349652, 47.3022135 ], + [ 8.8355129, 47.3022065 ], + [ 8.8355087, 47.3021551 ], + [ 8.8351854, 47.3021541 ], + [ 8.8351892, 47.3017738 ], + [ 8.8351962, 47.301774 ], + [ 8.8352031, 47.3017742 ], + [ 8.8352101, 47.3017743 ], + [ 8.8352171, 47.3017743 ], + [ 8.8352241, 47.3017743 ], + [ 8.835231, 47.3017742 ], + [ 8.835238, 47.301774 ], + [ 8.835231199999999, 47.3017201 ], + [ 8.8352101, 47.3017204 ], + [ 8.835189, 47.3017197 ], + [ 8.835168, 47.3017183 ], + [ 8.8351472, 47.301716 ], + [ 8.8351266, 47.3017128 ], + [ 8.8351063, 47.3017089 ], + [ 8.8350864, 47.3017041 ], + [ 8.8350669, 47.3016986 ], + [ 8.8350479, 47.3016923 ], + [ 8.8350279, 47.3016846 ], + [ 8.8350086, 47.301676 ], + [ 8.8349902, 47.3016666 ], + [ 8.8349728, 47.3016564 ], + [ 8.8349563, 47.3016455 ], + [ 8.8349408, 47.3016339 ], + [ 8.8349265, 47.3016216 ], + [ 8.8349134, 47.3016087 ], + [ 8.8349015, 47.3015953 ], + [ 8.8348621, 47.3015474 ], + [ 8.8348309, 47.3015095 ], + [ 8.8348259, 47.3015039 ], + [ 8.8348216, 47.3014981 ], + [ 8.834817900000001, 47.301492 ], + [ 8.8348148, 47.3014858 ], + [ 8.8348125, 47.3014795 ], + [ 8.8348108, 47.301473 ], + [ 8.8348098, 47.3014665 ], + [ 8.8348095, 47.30146 ], + [ 8.834810000000001, 47.3014535 ], + [ 8.8348111, 47.301447 ], + [ 8.8348129, 47.3014405 ], + [ 8.8348154, 47.3014342 ], + [ 8.8348186, 47.3014281 ], + [ 8.8348225, 47.3014221 ], + [ 8.8348269, 47.3014163 ], + [ 8.834832, 47.3014107 ], + [ 8.8348377, 47.3014055 ], + [ 8.8348439, 47.3014005 ], + [ 8.8348656, 47.3013854 ], + [ 8.834886000000001, 47.3013696 ], + [ 8.8349051, 47.301353 ], + [ 8.8349228, 47.3013357 ], + [ 8.8349391, 47.3013178 ], + [ 8.834954, 47.3012993 ], + [ 8.8349673, 47.3012803 ], + [ 8.8350084, 47.3012236 ], + [ 8.8350211, 47.301206 ], + [ 8.8350333, 47.3011882 ], + [ 8.8350449, 47.3011703 ], + [ 8.8350561, 47.3011522 ], + [ 8.8350667, 47.3011339 ], + [ 8.8350768, 47.3011155 ], + [ 8.8350864, 47.301097 ], + [ 8.8350955, 47.3010784 ], + [ 8.835104, 47.3010597 ], + [ 8.8351121, 47.3010408 ], + [ 8.8351195, 47.3010218 ], + [ 8.8351265, 47.3010028 ], + [ 8.8351329, 47.3009836 ], + [ 8.8351387, 47.3009644 ], + [ 8.8351444, 47.3009452 ], + [ 8.8351496, 47.3009258 ], + [ 8.8351543, 47.300906499999996 ], + [ 8.8351587, 47.300887 ], + [ 8.8351626, 47.3008676 ], + [ 8.8351661, 47.3008481 ], + [ 8.8351692, 47.3008285 ], + [ 8.8351718, 47.300809 ], + [ 8.835174, 47.3007895 ], + [ 8.8351757, 47.3007699 ], + [ 8.835177, 47.3007503 ], + [ 8.8351779, 47.3007307 ], + [ 8.8351784, 47.3007111 ], + [ 8.8351784, 47.3006915 ], + [ 8.8351774, 47.3006416 ], + [ 8.8351773, 47.3006349 ], + [ 8.8351777, 47.3006283 ], + [ 8.8351786, 47.3006217 ], + [ 8.8351799, 47.3006151 ], + [ 8.8351817, 47.3006086 ], + [ 8.8351839, 47.3006021 ], + [ 8.8351866, 47.3005957 ], + [ 8.8351897, 47.3005895 ], + [ 8.8351933, 47.3005833 ], + [ 8.8351973, 47.3005773 ], + [ 8.8352017, 47.3005714 ], + [ 8.8352064, 47.3005656 ], + [ 8.8352116, 47.30056 ], + [ 8.8352172, 47.3005546 ], + [ 8.8344326, 47.3006565 ], + [ 8.8344194, 47.3006586 ], + [ 8.8344063, 47.3006611 ], + [ 8.834393500000001, 47.3006641 ], + [ 8.8343809, 47.3006675 ], + [ 8.8343686, 47.3006714 ], + [ 8.8343566, 47.3006757 ], + [ 8.8343449, 47.3006804 ], + [ 8.8343337, 47.3006855 ], + [ 8.8343229, 47.3006909 ], + [ 8.8343125, 47.3006968 ], + [ 8.8343025, 47.300703 ], + [ 8.8342931, 47.300709499999996 ], + [ 8.8339351, 47.3007363 ], + [ 8.833912399999999, 47.3006338 ], + [ 8.8339072, 47.3006153 ], + [ 8.8338961, 47.3005777 ], + [ 8.8338843, 47.3005401 ], + [ 8.833872, 47.3005026 ], + [ 8.833859, 47.3004652 ], + [ 8.8338454, 47.3004279 ], + [ 8.8338312, 47.3003907 ], + [ 8.8338165, 47.3003537 ], + [ 8.8338012, 47.3003169 ], + [ 8.8337853, 47.3002801 ], + [ 8.8337688, 47.3002435 ], + [ 8.8337517, 47.300207 ], + [ 8.833734, 47.3001707 ], + [ 8.8337158, 47.3001345 ], + [ 8.8336972, 47.3000982 ], + [ 8.833677999999999, 47.3000621 ], + [ 8.8336582, 47.3000261 ], + [ 8.8336377, 47.2999903 ], + [ 8.8336167, 47.2999546 ], + [ 8.833595, 47.2999191 ], + [ 8.8335727, 47.2998838 ], + [ 8.83355, 47.299849 ], + [ 8.8335267, 47.2998143 ], + [ 8.8335028, 47.2997798 ], + [ 8.8334784, 47.2997454 ], + [ 8.8334533, 47.2997113 ], + [ 8.8334277, 47.2996774 ], + [ 8.8334014, 47.2996437 ], + [ 8.8332599, 47.2996654 ], + [ 8.8331128, 47.2995261 ], + [ 8.833063899999999, 47.2994463 ], + [ 8.8331284, 47.2993265 ], + [ 8.832955, 47.2991467 ], + [ 8.8327441, 47.2989701 ], + [ 8.8325322, 47.298797 ], + [ 8.8323073, 47.2986322 ], + [ 8.8320666, 47.298477 ], + [ 8.8318097, 47.298336 ], + [ 8.8316075, 47.2982504 ], + [ 8.8314526, 47.2982197 ], + [ 8.8312106, 47.2981719 ], + [ 8.8309309, 47.2980943 ], + [ 8.8305985, 47.2980385 ], + [ 8.8302687, 47.2980677 ], + [ 8.8302214, 47.2981859 ], + [ 8.82996, 47.2988537 ], + [ 8.8299883, 47.298855 ], + [ 8.8300165, 47.2988571 ], + [ 8.8302835, 47.2989911 ], + [ 8.8301545, 47.29911 ], + [ 8.8290349, 47.3001425 ], + [ 8.8284558, 47.2999795 ], + [ 8.8280412, 47.3006588 ], + [ 8.8278383, 47.3009902 ], + [ 8.8273818, 47.3017428 ], + [ 8.827684, 47.301784 ], + [ 8.8283636, 47.3018246 ], + [ 8.8292602, 47.3018782 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VBS_11", + "country" : "CHE", + "name" : [ + { + "text" : "VBS_11 Hinwil", + "lang" : "de-CH" + }, + { + "text" : "VBS_11 Hinwil", + "lang" : "fr-CH" + }, + { + "text" : "VBS_11 Hinwil", + "lang" : "it-CH" + }, + { + "text" : "VBS_11 Hinwil", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "regulationExemption" : "YES", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Eidgenössisches Departement für Verteidigung, Bevölkerungsschutz und Sport (VBS)", + "lang" : "de-CH" + }, + { + "text" : "Département fédéral de la défense, de la protection de la population et des sports (DDPS)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento federale della difesa, della protezione della popolazione e dello sport (DDPS)", + "lang" : "it-CH" + }, + { + "text" : "Federal Department of Defence, Civil Protection and Sport (DDPS)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Lageverfolgungszentrum der Armee LVZ A", + "lang" : "de-CH" + }, + { + "text" : "Centre de suivi de la situation de l’armée, CSS A", + "lang" : "fr-CH" + }, + { + "text" : "Centro di monitoraggio della situazione dell’esercito, Centro mon sit Es", + "lang" : "it-CH" + }, + { + "text" : "Joint Operation Center, JOC", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vtg.admin.ch/en/joint-operations-command", + "email" : "lvz.op@vtg.admin.ch", + "phone" : "+41 58 464 96 43", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5180378999999995, 46.7786633 ], + [ 7.5180323, 46.778522 ], + [ 7.518016, 46.7783812 ], + [ 7.517989, 46.7782412 ], + [ 7.5179513, 46.7781023 ], + [ 7.5179031, 46.7779649 ], + [ 7.5178445, 46.7778295 ], + [ 7.5177756, 46.777696399999996 ], + [ 7.5176967, 46.7775659 ], + [ 7.517608, 46.7774384 ], + [ 7.5175097, 46.7773143 ], + [ 7.5174021, 46.7771939 ], + [ 7.5172854000000005, 46.7770776 ], + [ 7.5171601, 46.7769656 ], + [ 7.5170262999999995, 46.7768582 ], + [ 7.5168846, 46.7767559 ], + [ 7.5167353, 46.7766587 ], + [ 7.5165788, 46.7765671 ], + [ 7.5164156, 46.7764812 ], + [ 7.516246, 46.7764012 ], + [ 7.5160705, 46.7763275 ], + [ 7.5158897, 46.7762602 ], + [ 7.5157039999999995, 46.7761995 ], + [ 7.5155139, 46.7761456 ], + [ 7.51532, 46.7760986 ], + [ 7.5151228, 46.7760586 ], + [ 7.5149228, 46.7760257 ], + [ 7.5147205, 46.7760001 ], + [ 7.5145166, 46.7759818 ], + [ 7.5143116, 46.7759709 ], + [ 7.514106, 46.7759673 ], + [ 7.5139004, 46.7759711 ], + [ 7.5136954, 46.7759823 ], + [ 7.5134916, 46.7760009 ], + [ 7.5132894, 46.7760268 ], + [ 7.5130894999999995, 46.7760599 ], + [ 7.5128923, 46.7761002 ], + [ 7.5126986, 46.7761474 ], + [ 7.5125086, 46.7762016 ], + [ 7.5123231, 46.7762626 ], + [ 7.5121424999999995, 46.7763301 ], + [ 7.5119672, 46.776404 ], + [ 7.5117978, 46.7764842 ], + [ 7.5116347999999995, 46.7765703 ], + [ 7.5114785, 46.7766621 ], + [ 7.5113295, 46.7767595 ], + [ 7.5111881, 46.7768621 ], + [ 7.5110547, 46.7769696 ], + [ 7.5109296, 46.7770817 ], + [ 7.5108133, 46.7771982 ], + [ 7.510706, 46.7773188 ], + [ 7.5106079999999995, 46.777443 ], + [ 7.5105197, 46.7775706 ], + [ 7.5104410999999995, 46.7777012 ], + [ 7.5103727, 46.7778344 ], + [ 7.5103144, 46.7779699 ], + [ 7.5102666, 46.7781073 ], + [ 7.5102293, 46.7782462 ], + [ 7.5102025999999995, 46.7783863 ], + [ 7.5101867, 46.7785272 ], + [ 7.5101815, 46.7786684 ], + [ 7.5101871, 46.7788096 ], + [ 7.5102034, 46.7789505 ], + [ 7.5102304, 46.7790905 ], + [ 7.5102681, 46.7792294 ], + [ 7.5103162999999995, 46.7793668 ], + [ 7.5103749, 46.7795022 ], + [ 7.5104437, 46.7796353 ], + [ 7.5105225, 46.7797658 ], + [ 7.5106113, 46.7798933 ], + [ 7.5107096, 46.7800174 ], + [ 7.5108172, 46.7801378 ], + [ 7.5109338, 46.7802542 ], + [ 7.5110592, 46.7803662 ], + [ 7.5111929, 46.7804735 ], + [ 7.5113346, 46.7805759 ], + [ 7.5114839, 46.7806731 ], + [ 7.5116404, 46.7807647 ], + [ 7.5118037, 46.7808506 ], + [ 7.5119733, 46.7809305 ], + [ 7.5121488, 46.7810043 ], + [ 7.5123296, 46.7810716 ], + [ 7.5125153000000005, 46.7811323 ], + [ 7.5127054, 46.7811862 ], + [ 7.5128993, 46.7812332 ], + [ 7.5130966, 46.7812732 ], + [ 7.5132966, 46.7813061 ], + [ 7.5134989, 46.7813317 ], + [ 7.5137028, 46.78135 ], + [ 7.5139078, 46.781361 ], + [ 7.5141134, 46.7813645 ], + [ 7.514319, 46.7813607 ], + [ 7.5145241, 46.7813495 ], + [ 7.5147279000000005, 46.7813309 ], + [ 7.5149301, 46.781305 ], + [ 7.5151301, 46.7812719 ], + [ 7.5153272, 46.7812317 ], + [ 7.515521, 46.7811844 ], + [ 7.515711, 46.7811302 ], + [ 7.5158965, 46.7810692 ], + [ 7.5160771, 46.7810017 ], + [ 7.5162524, 46.7809277 ], + [ 7.5164218, 46.7808476 ], + [ 7.5165848, 46.7807615 ], + [ 7.5167411, 46.7806696 ], + [ 7.5168901, 46.7805723 ], + [ 7.5170315, 46.7804697 ], + [ 7.517165, 46.7803622 ], + [ 7.51729, 46.78025 ], + [ 7.5174063, 46.7801335 ], + [ 7.5175136, 46.780013 ], + [ 7.5176116, 46.7798887 ], + [ 7.5176999, 46.7797611 ], + [ 7.5177784, 46.7796306 ], + [ 7.5178469, 46.7794973 ], + [ 7.5179051, 46.7793618 ], + [ 7.5179529, 46.7792244 ], + [ 7.5179902, 46.7790855 ], + [ 7.5180168, 46.7789454 ], + [ 7.5180328, 46.7788045 ], + [ 7.5180378999999995, 46.7786633 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0126", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Wattenwil", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Wattenwil", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Wattenwil", + "lang" : "it-CH" + }, + { + "text" : "Substation Wattenwil", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.2513129, 46.9054428 ], + [ 8.2518057, 46.9061191 ], + [ 8.2508763, 46.9064611 ], + [ 8.250937, 46.9065409 ], + [ 8.2510209, 46.9066387 ], + [ 8.2511569, 46.9067965 ], + [ 8.2513448, 46.9070673 ], + [ 8.2513958, 46.9071276 ], + [ 8.2517805, 46.9069876 ], + [ 8.2523005, 46.9067984 ], + [ 8.2528744, 46.9075861 ], + [ 8.252432, 46.9077468 ], + [ 8.252273, 46.907712 ], + [ 8.2520533, 46.9077956 ], + [ 8.2522885, 46.9080868 ], + [ 8.2525378, 46.9079919 ], + [ 8.2525546, 46.9079059 ], + [ 8.2529917, 46.9077471 ], + [ 8.2536528, 46.9086543 ], + [ 8.2536343, 46.9086923 ], + [ 8.253624, 46.9087231 ], + [ 8.2533976, 46.9088096 ], + [ 8.253359, 46.9087609 ], + [ 8.2530122, 46.9088791 ], + [ 8.2532335, 46.90915 ], + [ 8.253564, 46.9090225 ], + [ 8.2535213, 46.9089684 ], + [ 8.2537064, 46.9088976 ], + [ 8.2553827, 46.9111997 ], + [ 8.256293, 46.9108885 ], + [ 8.2535453, 46.9071148 ], + [ 8.2542964, 46.9068716 ], + [ 8.2543875, 46.9069281 ], + [ 8.2546872, 46.9068367 ], + [ 8.2544903, 46.9065325 ], + [ 8.254192, 46.9066235 ], + [ 8.254183, 46.9067093 ], + [ 8.253428, 46.9069538 ], + [ 8.2508387, 46.9033972 ], + [ 8.2500253, 46.9036753 ], + [ 8.2506546, 46.9045391 ], + [ 8.2503375, 46.9046674 ], + [ 8.2501946, 46.9047082 ], + [ 8.2500691, 46.9047507 ], + [ 8.2497388, 46.9047366 ], + [ 8.249559, 46.9048022 ], + [ 8.2496108, 46.904857 ], + [ 8.2500473, 46.9054193 ], + [ 8.2502367, 46.9056985 ], + [ 8.2503053, 46.9057786 ], + [ 8.2513129, 46.9054428 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSPG002", + "country" : "CHE", + "name" : [ + { + "text" : "LSPG Kägiswil (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSPG Kägiswil (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSPG Kägiswil (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSPG Kägiswil (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Flugplatzgenossenschaft Obwalden", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzgenossenschaft Obwalden", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzgenossenschaft Obwalden", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzgenossenschaft Obwalden", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Jost Vogler", + "lang" : "de-CH" + }, + { + "text" : "Jost Vogler", + "lang" : "fr-CH" + }, + { + "text" : "Jost Vogler", + "lang" : "it-CH" + }, + { + "text" : "Jost Vogler", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.airportlspg.ch/index.php/fuer-piloten/drohnen", + "email" : "lspg@bluewin.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.0923144, 46.5956912 ], + [ 7.0922702, 46.5957014 ], + [ 7.0923063, 46.5957769 ], + [ 7.0922664, 46.5962011 ], + [ 7.0922263, 46.5966273 ], + [ 7.0924103, 46.5967466 ], + [ 7.0932034999999996, 46.5972611 ], + [ 7.0930324, 46.5983198 ], + [ 7.0939539, 46.5983906 ], + [ 7.0945855, 46.5969644 ], + [ 7.0956596, 46.590315 ], + [ 7.0957427, 46.5897932 ], + [ 7.0944264, 46.5896922 ], + [ 7.0943255, 46.590317 ], + [ 7.0944375, 46.5905611 ], + [ 7.0942806, 46.5905946 ], + [ 7.0938204, 46.5934434 ], + [ 7.0935025, 46.5934199 ], + [ 7.0934028, 46.5940369 ], + [ 7.0924763, 46.5939689 ], + [ 7.0923144, 46.5956912 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSGT002", + "country" : "CHE", + "name" : [ + { + "text" : "LSGT Gruyères (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSGT Gruyères (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSGT Gruyères (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSGT Gruyères (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Aérodrome de la Gruyère", + "lang" : "de-CH" + }, + { + "text" : "Aérodrome de la Gruyère", + "lang" : "fr-CH" + }, + { + "text" : "Aérodrome de la Gruyère", + "lang" : "it-CH" + }, + { + "text" : "Aérodrome de la Gruyère", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Bureau C", + "lang" : "de-CH" + }, + { + "text" : "Bureau C", + "lang" : "fr-CH" + }, + { + "text" : "Bureau C", + "lang" : "it-CH" + }, + { + "text" : "Bureau C", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.aerodrome-gruyere.ch/annonce-de-vol-de-drone/", + "email" : "bureau@aerodrome-gruyere.ch", + "phone" : "0041269210040", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.9957349, 46.2909594 ], + [ 8.9957404, 46.2908811 ], + [ 8.9957718, 46.2900744 ], + [ 8.9959465, 46.2897391 ], + [ 8.9944674, 46.2893942 ], + [ 8.994115, 46.2901366 ], + [ 8.9940991, 46.290129 ], + [ 8.9925224, 46.2893678 ], + [ 8.9924374, 46.2893456 ], + [ 8.9923856, 46.289349 ], + [ 8.991956, 46.2895763 ], + [ 8.9918336, 46.2896526 ], + [ 8.9917681, 46.2897678 ], + [ 8.9914556, 46.2907304 ], + [ 8.9935255, 46.291267 ], + [ 8.9930305, 46.2922456 ], + [ 8.9911371, 46.2917578 ], + [ 8.9910812, 46.2919367 ], + [ 8.9929432, 46.2924177 ], + [ 8.9919199, 46.2944428 ], + [ 8.9905262, 46.2940912 ], + [ 8.989791199999999, 46.2963958 ], + [ 8.9908117, 46.2965869 ], + [ 8.9893609, 46.2995113 ], + [ 8.9894621, 46.2995999 ], + [ 8.9896078, 46.2997041 ], + [ 8.9897441, 46.2997022 ], + [ 8.9899514, 46.2996445 ], + [ 8.9911858, 46.2991399 ], + [ 8.9919444, 46.298792 ], + [ 8.9921602, 46.2984849 ], + [ 8.9918104, 46.2983755 ], + [ 8.9924047, 46.2975494 ], + [ 8.9927591, 46.297639 ], + [ 8.992595, 46.29785 ], + [ 8.9929166, 46.2979715 ], + [ 8.9936546, 46.2967737 ], + [ 8.9939155, 46.2963643 ], + [ 8.9947024, 46.2953313 ], + [ 8.9948434, 46.2950891 ], + [ 8.9949861, 46.2947219 ], + [ 8.995183, 46.2944834 ], + [ 8.9953259, 46.2943042 ], + [ 8.9955272, 46.2938101 ], + [ 8.9956328, 46.2935558 ], + [ 8.995393, 46.2934772 ], + [ 8.9958109, 46.2918438 ], + [ 8.9957737, 46.2911362 ], + [ 8.9957765, 46.2910533 ], + [ 8.9957349, 46.2909594 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSPR002", + "country" : "CHE", + "name" : [ + { + "text" : "LSPR Lodrino (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSPR Lodrino (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSPR Lodrino (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSPR Lodrino (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Riviera Airport", + "lang" : "de-CH" + }, + { + "text" : "Riviera Airport", + "lang" : "fr-CH" + }, + { + "text" : "Riviera Airport", + "lang" : "it-CH" + }, + { + "text" : "Riviera Airport", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleiter", + "lang" : "de-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "fr-CH" + }, + { + "text" : "Capo d'aerodromo", + "lang" : "it-CH" + }, + { + "text" : "Capo d'aerodromo", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.riviera-airport.swiss/drones/", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.3190336, 47.3745881 ], + [ 8.3190672, 47.3746336 ], + [ 8.319083, 47.374685 ], + [ 8.3191093, 47.3747416 ], + [ 8.3192025, 47.3748028 ], + [ 8.3193793, 47.3748655 ], + [ 8.3195233, 47.3749112 ], + [ 8.3196541, 47.3749433 ], + [ 8.3197451, 47.3749365 ], + [ 8.3198205, 47.3748875 ], + [ 8.319881, 47.3748129 ], + [ 8.3198629, 47.3746908 ], + [ 8.3197684, 47.3745541 ], + [ 8.3196777, 47.3744497 ], + [ 8.3195331, 47.3743506 ], + [ 8.319409, 47.3742871 ], + [ 8.3192441, 47.3742325 ], + [ 8.3190584, 47.3741736 ], + [ 8.3189066, 47.3740875 ], + [ 8.3188002, 47.3740155 ], + [ 8.3186508, 47.373887 ], + [ 8.3185008, 47.3737788 ], + [ 8.318249, 47.3736988 ], + [ 8.3179982, 47.3736482 ], + [ 8.3177637, 47.373626 ], + [ 8.3175799, 47.3736223 ], + [ 8.31738, 47.3736363 ], + [ 8.3172506, 47.3736474 ], + [ 8.3170565, 47.373642 ], + [ 8.3170031, 47.3736428 ], + [ 8.3168404, 47.373671 ], + [ 8.3167308, 47.3736966 ], + [ 8.3166563, 47.3737364 ], + [ 8.316483999999999, 47.3738089 ], + [ 8.3162742, 47.3738737 ], + [ 8.3161086, 47.3739148 ], + [ 8.3157903, 47.3740392 ], + [ 8.3156185, 47.3741264 ], + [ 8.315532900000001, 47.3741801 ], + [ 8.3155002, 47.3742414 ], + [ 8.3155289, 47.3742934 ], + [ 8.3155461, 47.3743474 ], + [ 8.3155935, 47.3743836 ], + [ 8.31572, 47.3744019 ], + [ 8.3157647, 47.3744326 ], + [ 8.315902, 47.3744296 ], + [ 8.3161097, 47.3744182 ], + [ 8.3162158, 47.3744019 ], + [ 8.3163338, 47.3743569 ], + [ 8.3164462, 47.3743387 ], + [ 8.3165149, 47.3743192 ], + [ 8.3166236, 47.374266 ], + [ 8.316741799999999, 47.3741879 ], + [ 8.3168312, 47.3741728 ], + [ 8.316914, 47.3741504 ], + [ 8.3170114, 47.3741075 ], + [ 8.3171198, 47.3740838 ], + [ 8.3172095, 47.374076 ], + [ 8.317325, 47.3740715 ], + [ 8.3174055, 47.3740225 ], + [ 8.3175402, 47.3739772 ], + [ 8.3176198, 47.373976 ], + [ 8.3176947, 47.3739887 ], + [ 8.3177585, 47.3739758 ], + [ 8.3177589, 47.3739473 ], + [ 8.3178111, 47.3739336 ], + [ 8.3179673, 47.3739589 ], + [ 8.3180604, 47.3739759 ], + [ 8.3181114, 47.3739659 ], + [ 8.3181774, 47.3739815 ], + [ 8.3183137, 47.373985 ], + [ 8.3183656, 47.3740017 ], + [ 8.3183687, 47.374056 ], + [ 8.3183252, 47.3741385 ], + [ 8.318339, 47.3742083 ], + [ 8.3183499, 47.3742661 ], + [ 8.3183379, 47.3743316 ], + [ 8.3183597, 47.3743672 ], + [ 8.3184269, 47.3743809 ], + [ 8.3184807, 47.3743764 ], + [ 8.3185269, 47.3742975 ], + [ 8.31859, 47.3742643 ], + [ 8.3186629, 47.3742522 ], + [ 8.3187172, 47.3742634 ], + [ 8.3187386, 47.3742907 ], + [ 8.318736, 47.3743275 ], + [ 8.3187655, 47.3743648 ], + [ 8.31879, 47.3744077 ], + [ 8.3187643, 47.3744467 ], + [ 8.318779, 47.3744631 ], + [ 8.3188392, 47.3744594 ], + [ 8.3189081, 47.3744842 ], + [ 8.3189158, 47.3745227 ], + [ 8.3189115, 47.3745854 ], + [ 8.3189643, 47.3745901 ], + [ 8.3190336, 47.3745881 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "KTAG510", + "country" : "CHE", + "name" : [ + { + "text" : "Tote Reuss", + "lang" : "de-CH" + }, + { + "text" : "Tote Reuss", + "lang" : "fr-CH" + }, + { + "text" : "Tote Reuss", + "lang" : "it-CH" + }, + { + "text" : "Tote Reuss", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "regulationExemption" : "NO", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "schedule" : [ + { + "day" : [ "ANY" ], + "startTime" : "00:00:00.00+01:00", + "endTime" : "00:00:00.00+01:00" + } + ] + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Aargau", + "lang" : "de-CH" + }, + { + "text" : "Canton d'Argovie", + "lang" : "fr-CH" + }, + { + "text" : "Canton Argovia", + "lang" : "it-CH" + }, + { + "text" : "Canton of Aargau", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Departement Bau, Verkehr und Umwelt (BVU)", + "lang" : "de-CH" + }, + { + "text" : "Département de la construction, des transports et de l'environnement (CTE)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento delle costruzioni, dei trasporti e dell'ambiente (CTA)", + "lang" : "it-CH" + }, + { + "text" : "Department of Civil Engineering,Transport and Environment (CTE)", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Sektion Gewässernutzung", + "lang" : "de-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "fr-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "it-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ag.ch/de/verwaltung/bvu/umwelt-natur-landschaft/hochwasserschutz-gewaesser/gewaessernutzung", + "email" : "alg@ag.ch", + "phone" : "0041 62 835 34 50", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.2175202, 46.9454021 ], + [ 8.2215217, 46.9585821 ], + [ 8.2223098, 46.9608742 ], + [ 8.223272, 46.9631348 ], + [ 8.2244058, 46.9653578 ], + [ 8.2257081, 46.9675372 ], + [ 8.2271754, 46.9696669 ], + [ 8.228803599999999, 46.971741 ], + [ 8.2305883, 46.973754 ], + [ 8.2325246, 46.9757003 ], + [ 8.2346072, 46.9775745 ], + [ 8.2368304, 46.9793715 ], + [ 8.2391881, 46.9810863 ], + [ 8.2416739, 46.9827143 ], + [ 8.2442809, 46.9842509 ], + [ 8.247002, 46.9856921 ], + [ 8.2498297, 46.9870337 ], + [ 8.2527563, 46.9882721 ], + [ 8.2557738, 46.9894039 ], + [ 8.2588737, 46.9904261 ], + [ 8.2620478, 46.9913357 ], + [ 8.2652871, 46.9921304 ], + [ 8.2685829, 46.9928079 ], + [ 8.2719261, 46.9933663 ], + [ 8.275307399999999, 46.9938041 ], + [ 8.2787177, 46.9941201 ], + [ 8.2821474, 46.9943135 ], + [ 8.2855873, 46.9943837 ], + [ 8.2890278, 46.9943306 ], + [ 8.2924596, 46.9941542 ], + [ 8.2958731, 46.993854999999996 ], + [ 8.299259, 46.9934339 ], + [ 8.3026079, 46.9928921 ], + [ 8.3059108, 46.992231 ], + [ 8.3091585, 46.9914524 ], + [ 8.3123421, 46.9905585 ], + [ 8.3154528, 46.9895517 ], + [ 8.3184821, 46.9884349 ], + [ 8.3214218, 46.9872109 ], + [ 8.3242636, 46.9858834 ], + [ 8.3269999, 46.9844558 ], + [ 8.3296231, 46.9829321 ], + [ 8.332126, 46.9813164 ], + [ 8.3345018, 46.9796133 ], + [ 8.336744, 46.9778274 ], + [ 8.3388464, 46.9759636 ], + [ 8.3408032, 46.9740269 ], + [ 8.3426091, 46.9720228 ], + [ 8.3442592, 46.9699568 ], + [ 8.3457489, 46.9678344 ], + [ 8.3470743, 46.9656616 ], + [ 8.3482316, 46.9634442 ], + [ 8.3492177, 46.9611884 ], + [ 8.3500299, 46.9589004 ], + [ 8.350666, 46.9565863 ], + [ 8.3511244, 46.9542527 ], + [ 8.3514037, 46.9519058 ], + [ 8.3515033, 46.9495521 ], + [ 8.3514229, 46.9471981 ], + [ 8.3511626, 46.9448502 ], + [ 8.3507234, 46.9425148 ], + [ 8.3501063, 46.9401984 ], + [ 8.3460745, 46.9270229 ], + [ 8.3452817, 46.9247317 ], + [ 8.344315, 46.9224721 ], + [ 8.3431771, 46.9202502 ], + [ 8.3418712, 46.9180722 ], + [ 8.3404008, 46.9159439 ], + [ 8.33877, 46.9138713 ], + [ 8.3369832, 46.91186 ], + [ 8.3350455, 46.9099155 ], + [ 8.332962, 46.9080431 ], + [ 8.3307385, 46.906248 ], + [ 8.3283812, 46.904535 ], + [ 8.3258964, 46.9029089 ], + [ 8.323291, 46.9013741 ], + [ 8.3205721, 46.8999347 ], + [ 8.3177472, 46.8985948 ], + [ 8.314824, 46.8973581 ], + [ 8.3118105, 46.8962277 ], + [ 8.3087149, 46.895207 ], + [ 8.3055458, 46.8942986 ], + [ 8.3023117, 46.8935051 ], + [ 8.2990216, 46.8928286 ], + [ 8.2956844, 46.892271 ], + [ 8.2923093, 46.8918338 ], + [ 8.2889054, 46.8915181 ], + [ 8.2854822, 46.8913249 ], + [ 8.2820489, 46.8912547 ], + [ 8.278615, 46.8913077 ], + [ 8.2751898, 46.8914837 ], + [ 8.2717827, 46.8917822 ], + [ 8.268403, 46.8922025 ], + [ 8.2650599, 46.8927433 ], + [ 8.2617627, 46.8934033 ], + [ 8.2585202, 46.8941805 ], + [ 8.2553415, 46.8950729 ], + [ 8.2522351, 46.8960781 ], + [ 8.2492096, 46.8971932 ], + [ 8.2462732, 46.898415299999996 ], + [ 8.2434341, 46.899741 ], + [ 8.2406999, 46.9011666 ], + [ 8.2380781, 46.9026883 ], + [ 8.235576, 46.9043019 ], + [ 8.2332004, 46.906003 ], + [ 8.2309578, 46.9077869 ], + [ 8.2288544, 46.9096488 ], + [ 8.2268959, 46.9115835 ], + [ 8.2250877, 46.9135858 ], + [ 8.2234347, 46.9156501 ], + [ 8.2219416, 46.9177709 ], + [ 8.2206124, 46.9199424 ], + [ 8.2194508, 46.9221584 ], + [ 8.21846, 46.9244131 ], + [ 8.2176426, 46.9267003 ], + [ 8.2170011, 46.9290136 ], + [ 8.2165371, 46.9313467 ], + [ 8.216252, 46.9336932 ], + [ 8.2161465, 46.9360468 ], + [ 8.2162211, 46.9384009 ], + [ 8.2164754, 46.9407491 ], + [ 8.2169088, 46.943084999999996 ], + [ 8.2175202, 46.9454021 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSMA-01", + "country" : "CHE", + "name" : [ + { + "text" : "LSMA Alpnach", + "lang" : "de-CH" + }, + { + "text" : "LSMA Alpnach", + "lang" : "fr-CH" + }, + { + "text" : "LSMA Alpnach", + "lang" : "it-CH" + }, + { + "text" : "LSMA Alpnach", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Special Flight Office (SFO)", + "lang" : "de-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "fr-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "it-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "en-GB" + } + ], + "siteURL" : "https://skyguide.ch/services/special-flights", + "email" : "specialflight@skyguide.ch", + "phone" : "0041439316236", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6352559, 47.4908515 ], + [ 7.635501, 47.4909233 ], + [ 7.6356234, 47.4909633 ], + [ 7.6358763, 47.4910172 ], + [ 7.6362612, 47.4910857 ], + [ 7.6365162, 47.4911376 ], + [ 7.6366469, 47.4911537 ], + [ 7.636855, 47.4911514 ], + [ 7.6369687, 47.4911913 ], + [ 7.6371794, 47.4912787 ], + [ 7.6372498, 47.4913292 ], + [ 7.6372898, 47.4913536 ], + [ 7.6373733, 47.4914089 ], + [ 7.6374201, 47.4914373 ], + [ 7.6374718999999995, 47.4914654 ], + [ 7.6375354, 47.4914759 ], + [ 7.6376745, 47.4914636 ], + [ 7.6377667, 47.4915177 ], + [ 7.6378425, 47.4915661 ], + [ 7.637911, 47.4915939 ], + [ 7.6379984, 47.4916125 ], + [ 7.638101, 47.4916298 ], + [ 7.6382416, 47.4916269 ], + [ 7.638327, 47.4916249 ], + [ 7.6384469, 47.4916299 ], + [ 7.6385506, 47.4916298 ], + [ 7.6386722, 47.4916208 ], + [ 7.6387232, 47.4916153 ], + [ 7.6388544, 47.4915875 ], + [ 7.6390531, 47.4915687 ], + [ 7.6392261999999995, 47.4915571 ], + [ 7.6392632, 47.4915591 ], + [ 7.639314, 47.4915566 ], + [ 7.6393469, 47.4915486 ], + [ 7.6394606, 47.4915363 ], + [ 7.6395917, 47.4915193 ], + [ 7.639679, 47.4915111 ], + [ 7.6397566, 47.4915028 ], + [ 7.6397672, 47.4915001 ], + [ 7.639887, 47.4914645 ], + [ 7.6399527, 47.4914494 ], + [ 7.6399749, 47.4914383 ], + [ 7.6401829, 47.4913719 ], + [ 7.6402932, 47.4913227 ], + [ 7.6403747, 47.4912918 ], + [ 7.6404461, 47.4912797 ], + [ 7.6405907, 47.4913036 ], + [ 7.6407295, 47.4912385 ], + [ 7.6407498, 47.4912333 ], + [ 7.6407842, 47.4912435 ], + [ 7.640814, 47.4912796 ], + [ 7.6408426, 47.4912646 ], + [ 7.6408614, 47.4911931 ], + [ 7.6408926, 47.4911386 ], + [ 7.6409587, 47.4910792 ], + [ 7.6410115, 47.491028299999996 ], + [ 7.6410969, 47.4909574 ], + [ 7.6411196, 47.4909442 ], + [ 7.6411424, 47.4909332 ], + [ 7.6412732, 47.4909093 ], + [ 7.6413573, 47.4909236 ], + [ 7.6414124, 47.4908997 ], + [ 7.6414539999999995, 47.4908799 ], + [ 7.6416566, 47.4908162 ], + [ 7.6416942, 47.4908126 ], + [ 7.6417263, 47.4908174 ], + [ 7.6418187, 47.4908047 ], + [ 7.6418365, 47.4908104 ], + [ 7.6419027, 47.4908479 ], + [ 7.6419378, 47.4908522 ], + [ 7.6419663, 47.4908221 ], + [ 7.6419415, 47.4907837 ], + [ 7.6419524, 47.4907637 ], + [ 7.6419457, 47.4907428 ], + [ 7.6420125, 47.4907501 ], + [ 7.6420462, 47.4907763 ], + [ 7.6420505, 47.4907866 ], + [ 7.6421719, 47.4907534 ], + [ 7.6421937, 47.4907481 ], + [ 7.6422945, 47.490736 ], + [ 7.6423559, 47.490738 ], + [ 7.6425007, 47.4906858 ], + [ 7.6425503, 47.4906535 ], + [ 7.6425622, 47.4906076 ], + [ 7.6425754, 47.4905565 ], + [ 7.6425752, 47.4904981 ], + [ 7.6426258, 47.4904868 ], + [ 7.6432511, 47.4903469 ], + [ 7.6434001, 47.4902671 ], + [ 7.6434268, 47.490501 ], + [ 7.6434429999999995, 47.4907379 ], + [ 7.6434462, 47.4907846 ], + [ 7.6434938, 47.4907554 ], + [ 7.6435602, 47.4907403 ], + [ 7.6436288, 47.4906845 ], + [ 7.6436511, 47.4906747 ], + [ 7.6437034, 47.4906838 ], + [ 7.6438538, 47.4906684 ], + [ 7.6439159, 47.490679 ], + [ 7.6440025, 47.4906416 ], + [ 7.6441142, 47.4906416 ], + [ 7.6442307, 47.4906524 ], + [ 7.6442721, 47.4906202 ], + [ 7.6443104, 47.4906094 ], + [ 7.6443718, 47.490611 ], + [ 7.6443975, 47.4906192 ], + [ 7.6444393999999996, 47.4906515 ], + [ 7.6444995, 47.4905902 ], + [ 7.6445436, 47.4905816 ], + [ 7.6445536, 47.4905822 ], + [ 7.6445957, 47.4906243 ], + [ 7.6446415, 47.490655 ], + [ 7.6446754, 47.4906548 ], + [ 7.6446936999999995, 47.490662 ], + [ 7.6447123, 47.4906668 ], + [ 7.6447408, 47.4906939 ], + [ 7.6448063, 47.4907181 ], + [ 7.6448259, 47.4907182 ], + [ 7.64497, 47.4907391 ], + [ 7.6450306999999995, 47.4907464 ], + [ 7.645059, 47.4907483 ], + [ 7.6452452, 47.4907869 ], + [ 7.645264, 47.4907873 ], + [ 7.6452495, 47.490762 ], + [ 7.6451091, 47.490537 ], + [ 7.6447735, 47.4899886 ], + [ 7.6445626, 47.4896956 ], + [ 7.6441028, 47.4897731 ], + [ 7.6440845, 47.4897118 ], + [ 7.644027, 47.4895363 ], + [ 7.6439726, 47.4893811 ], + [ 7.6444301, 47.4893051 ], + [ 7.6442955999999995, 47.4887004 ], + [ 7.6442569, 47.4885042 ], + [ 7.6440072, 47.4885993 ], + [ 7.6437057, 47.4887505 ], + [ 7.6436172, 47.4888068 ], + [ 7.6434175, 47.4888932 ], + [ 7.6431021, 47.4889855 ], + [ 7.642797, 47.4891041 ], + [ 7.6424205, 47.4893545 ], + [ 7.6421744, 47.4894697 ], + [ 7.6417258, 47.4896271 ], + [ 7.641402, 47.4897102 ], + [ 7.6410373, 47.4898196 ], + [ 7.6401824, 47.4901434 ], + [ 7.6402814, 47.4903843 ], + [ 7.6401022, 47.4904157 ], + [ 7.6400257, 47.490225 ], + [ 7.6400151, 47.4901963 ], + [ 7.6397945, 47.4902663 ], + [ 7.6394243, 47.4903504 ], + [ 7.6391943, 47.4903844 ], + [ 7.6381101000000005, 47.4906158 ], + [ 7.6379283000000004, 47.490633 ], + [ 7.637415, 47.490607 ], + [ 7.6372232, 47.4906407 ], + [ 7.6369816, 47.4907465 ], + [ 7.6368224, 47.490755 ], + [ 7.6363872, 47.4906846 ], + [ 7.6360024, 47.4906499 ], + [ 7.6357142, 47.4906733 ], + [ 7.6353943, 47.4906839 ], + [ 7.6352113, 47.4906656 ], + [ 7.6346704, 47.490519 ], + [ 7.6345396, 47.4905117 ], + [ 7.63457, 47.4904727 ], + [ 7.6345282, 47.4904133 ], + [ 7.6344966, 47.4901495 ], + [ 7.6344082, 47.4899388 ], + [ 7.634285, 47.4897077 ], + [ 7.6342634, 47.4896026 ], + [ 7.6343989, 47.4892981 ], + [ 7.6345296, 47.4890711 ], + [ 7.6348933, 47.4887607 ], + [ 7.6350727, 47.48858 ], + [ 7.6352058, 47.4883807 ], + [ 7.6351681, 47.4883715 ], + [ 7.6352606, 47.4879208 ], + [ 7.6349272, 47.4878911 ], + [ 7.6342871, 47.4878519 ], + [ 7.6340965, 47.4877576 ], + [ 7.6337665, 47.4875965 ], + [ 7.6336368, 47.4875098 ], + [ 7.6334984, 47.4874149 ], + [ 7.6331898, 47.4872084 ], + [ 7.6328191, 47.4871672 ], + [ 7.6327323, 47.487427 ], + [ 7.6325942, 47.4878319 ], + [ 7.6324792, 47.4879972 ], + [ 7.6324236, 47.4880881 ], + [ 7.6323221, 47.4882385 ], + [ 7.6322422, 47.4884695 ], + [ 7.632166, 47.4887521 ], + [ 7.6321123, 47.4891166 ], + [ 7.6321082, 47.4892539 ], + [ 7.632081, 47.4892832 ], + [ 7.6320741, 47.4892906 ], + [ 7.6321048000000005, 47.489307 ], + [ 7.631832, 47.4895071 ], + [ 7.6315726, 47.4897563 ], + [ 7.6314024, 47.489861 ], + [ 7.631172, 47.4899356 ], + [ 7.6306823999999995, 47.490097 ], + [ 7.6305644, 47.4901503 ], + [ 7.630446, 47.4902449 ], + [ 7.6303848, 47.4902778 ], + [ 7.6303493, 47.4902969 ], + [ 7.6303304, 47.4903309 ], + [ 7.6302769, 47.4903192 ], + [ 7.6298854, 47.4902823 ], + [ 7.6296715, 47.4902892 ], + [ 7.6289592, 47.4903678 ], + [ 7.6286203, 47.4904254 ], + [ 7.6285157, 47.4904666 ], + [ 7.628436, 47.490542 ], + [ 7.6284198, 47.4905677 ], + [ 7.6284072, 47.4905877 ], + [ 7.6282813, 47.4907868 ], + [ 7.628215, 47.4908469 ], + [ 7.6281712, 47.4908613 ], + [ 7.6282808, 47.4909067 ], + [ 7.6284294, 47.4909696 ], + [ 7.6286069, 47.4910394 ], + [ 7.6287789, 47.4910995 ], + [ 7.6289539, 47.4911555 ], + [ 7.6291105, 47.4912066 ], + [ 7.6291785999999995, 47.4912206 ], + [ 7.6293161, 47.49123 ], + [ 7.6293248, 47.491236 ], + [ 7.6293536, 47.4912326 ], + [ 7.6293707, 47.4912309 ], + [ 7.6294305, 47.4912327 ], + [ 7.6295158, 47.4912542 ], + [ 7.6298012, 47.49135 ], + [ 7.6300142, 47.4914169 ], + [ 7.6301464, 47.491461 ], + [ 7.6301518, 47.4914626 ], + [ 7.6301746999999995, 47.4914694 ], + [ 7.6302031, 47.4914774 ], + [ 7.6302318, 47.4914852 ], + [ 7.6302606, 47.4914926 ], + [ 7.6303781, 47.4915219 ], + [ 7.6304337, 47.4915315 ], + [ 7.6304541, 47.491534 ], + [ 7.6304659, 47.491534 ], + [ 7.6305337, 47.4915274 ], + [ 7.6306534, 47.4915158 ], + [ 7.6307211, 47.491513 ], + [ 7.6307413, 47.4915143 ], + [ 7.6307628, 47.4915106 ], + [ 7.630777, 47.4915084 ], + [ 7.6307811999999995, 47.4914997 ], + [ 7.630788, 47.4914967 ], + [ 7.6307952, 47.4914941 ], + [ 7.6308783, 47.4914734 ], + [ 7.6308872, 47.4914719 ], + [ 7.6308963, 47.4914706 ], + [ 7.6309054, 47.4914697 ], + [ 7.6309146, 47.4914691 ], + [ 7.6309542, 47.4914682 ], + [ 7.6310408, 47.4914627 ], + [ 7.6310785, 47.4914624 ], + [ 7.6313086, 47.4914658 ], + [ 7.6313892, 47.4914638 ], + [ 7.6314664, 47.4914614 ], + [ 7.6316026, 47.4914587 ], + [ 7.6316188, 47.4914585 ], + [ 7.631635, 47.4914577 ], + [ 7.6316511, 47.4914565 ], + [ 7.6316671, 47.4914548 ], + [ 7.6320528, 47.4914177 ], + [ 7.6321897, 47.4913826 ], + [ 7.6323033, 47.4913549 ], + [ 7.632494, 47.4912969 ], + [ 7.6325859, 47.4912674 ], + [ 7.6327108, 47.4912235 ], + [ 7.6328049, 47.4911918 ], + [ 7.6329108, 47.4911483 ], + [ 7.6329454, 47.4911334 ], + [ 7.6331221, 47.4910142 ], + [ 7.6332724, 47.4909572 ], + [ 7.6332965999999995, 47.4909507 ], + [ 7.63332, 47.4909431 ], + [ 7.633387, 47.4909173 ], + [ 7.6334145, 47.4909364 ], + [ 7.6334254999999995, 47.4909454 ], + [ 7.6334576, 47.4909259 ], + [ 7.6335302, 47.4908762 ], + [ 7.6336246, 47.4908098 ], + [ 7.6337186, 47.4907424 ], + [ 7.6338864, 47.4906718 ], + [ 7.6339918, 47.4906315 ], + [ 7.6340268, 47.4906112 ], + [ 7.634104, 47.4905949 ], + [ 7.6342251, 47.4905879 ], + [ 7.6342623, 47.4905866 ], + [ 7.6344173, 47.4905883 ], + [ 7.6345927, 47.4906003 ], + [ 7.6346812, 47.4906284 ], + [ 7.634768, 47.4906435 ], + [ 7.6347842, 47.4906482 ], + [ 7.6348516, 47.4906597 ], + [ 7.6348635, 47.4906579 ], + [ 7.6349037, 47.490663 ], + [ 7.6350863, 47.4907584 ], + [ 7.6352559, 47.4908515 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns229", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Ermitage - Chilchholz", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Ermitage - Chilchholz", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Ermitage - Chilchholz", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Ermitage - Chilchholz", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.500955, 47.3905886 ], + [ 7.50124, 47.3906127 ], + [ 7.5013113, 47.3906088 ], + [ 7.5015137, 47.390559 ], + [ 7.5017256, 47.3905359 ], + [ 7.5017743, 47.3905295 ], + [ 7.5020088000000005, 47.3905332 ], + [ 7.5021574, 47.3905289 ], + [ 7.5022455, 47.39052 ], + [ 7.5023429, 47.3904995 ], + [ 7.5024111, 47.3904513 ], + [ 7.502431, 47.3904114 ], + [ 7.5024365, 47.3903757 ], + [ 7.5024239999999995, 47.3903272 ], + [ 7.5023996, 47.39028 ], + [ 7.5023545, 47.390243 ], + [ 7.5021653, 47.3902559 ], + [ 7.5020077, 47.3902726 ], + [ 7.5018578, 47.3902854 ], + [ 7.5017115, 47.3903327 ], + [ 7.5014866, 47.3903718 ], + [ 7.5013179, 47.3903923 ], + [ 7.5012111, 47.3904204 ], + [ 7.5010516, 47.3904397 ], + [ 7.5009578999999995, 47.3904512 ], + [ 7.500923, 47.3904677 ], + [ 7.5008837, 47.3904869 ], + [ 7.5008875, 47.3905112 ], + [ 7.500955, 47.3905886 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns078", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Stürmen - Eggfels - Bännli", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Stürmen - Eggfels - Bännli", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Stürmen - Eggfels - Bännli", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Stürmen - Eggfels - Bännli", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.089068, 46.2323232 ], + [ 9.0890348, 46.2324594 ], + [ 9.088605, 46.2341404 ], + [ 9.0999718, 46.2356418 ], + [ 9.100431, 46.2339739 ], + [ 9.1005811, 46.2334271 ], + [ 9.0988472, 46.2331871 ], + [ 9.0986762, 46.2336934 ], + [ 9.0906624, 46.2326101 ], + [ 9.0908949, 46.2318111 ], + [ 9.0892448, 46.2315991 ], + [ 9.0891222, 46.2321012 ], + [ 9.089065, 46.2323125 ], + [ 9.089068, 46.2323232 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSXV002", + "country" : "CHE", + "name" : [ + { + "text" : "LSXV San Vittore Heliport (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSXV San Vittore Heliport (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSXV San Vittore Heliport (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSXV San Vittore Heliport (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "HELI REZIA SA", + "lang" : "de-CH" + }, + { + "text" : "HELI REZIA SA", + "lang" : "fr-CH" + }, + { + "text" : "HELI REZIA SA", + "lang" : "it-CH" + }, + { + "text" : "HELI REZIA SA", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Capo d'aerodromo", + "lang" : "de-CH" + }, + { + "text" : "Capo d'aerodromo", + "lang" : "fr-CH" + }, + { + "text" : "Capo d'aerodromo", + "lang" : "it-CH" + }, + { + "text" : "Capo d'aerodromo", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.helirezia.ch/", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6080193, 47.5096429 ], + [ 7.6080193, 47.5096499 ], + [ 7.608082, 47.5099472 ], + [ 7.6081547, 47.5101446 ], + [ 7.6082618, 47.5104047 ], + [ 7.6084721, 47.5107553 ], + [ 7.6085775, 47.5109599 ], + [ 7.608676, 47.5112197 ], + [ 7.6088252, 47.5117842 ], + [ 7.6089016, 47.5120559 ], + [ 7.6089743, 47.5122742 ], + [ 7.6090365, 47.5124066 ], + [ 7.6091157, 47.5125296 ], + [ 7.6093498, 47.5128035 ], + [ 7.6095804000000005, 47.5130355 ], + [ 7.6096559, 47.513054 ], + [ 7.6098649, 47.5129863 ], + [ 7.6099848, 47.5129396 ], + [ 7.6100773, 47.5129232 ], + [ 7.610218, 47.5129323 ], + [ 7.6103724, 47.5129623 ], + [ 7.6105611, 47.5129899 ], + [ 7.6107704, 47.5130152 ], + [ 7.6109592, 47.513059 ], + [ 7.6111034, 47.513096 ], + [ 7.611258, 47.5131817 ], + [ 7.6113851, 47.5132257 ], + [ 7.6115085, 47.5132302 ], + [ 7.6116868, 47.513209 ], + [ 7.6120775, 47.5131178 ], + [ 7.6122572, 47.5130605 ], + [ 7.6122514, 47.5130428 ], + [ 7.6122473, 47.5130356 ], + [ 7.6121065, 47.5127845 ], + [ 7.6120830999999995, 47.5127227 ], + [ 7.6119111, 47.512572 ], + [ 7.6117186, 47.5124375 ], + [ 7.6115467, 47.5123169 ], + [ 7.611361, 47.5121708 ], + [ 7.6112613, 47.512085 ], + [ 7.6110684, 47.5118296 ], + [ 7.610748, 47.5113654 ], + [ 7.6105722, 47.511117 ], + [ 7.6104725, 47.5110172 ], + [ 7.6103865, 47.5109477 ], + [ 7.610249, 47.5108689 ], + [ 7.6100943999999995, 47.5107692 ], + [ 7.6099947, 47.5106857 ], + [ 7.6099361, 47.510616 ], + [ 7.6098844, 47.5105278 ], + [ 7.6098567, 47.510441900000004 ], + [ 7.6098117, 47.5103304 ], + [ 7.6097531, 47.5102329 ], + [ 7.6096327, 47.5101076 ], + [ 7.6095398, 47.5100055 ], + [ 7.6093747, 47.5098756 ], + [ 7.6092062, 47.5097388 ], + [ 7.6090618, 47.5095972 ], + [ 7.6088415, 47.5093698 ], + [ 7.6087005, 47.509226 ], + [ 7.608642, 47.5091633 ], + [ 7.608563, 47.5091239 ], + [ 7.6084668, 47.5090985 ], + [ 7.6080397, 47.5095918 ], + [ 7.6080397, 47.5095987 ], + [ 7.6080193, 47.5096429 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr041", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Obere Au", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Obere Au", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Obere Au", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Obere Au", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8332311, 47.4400705 ], + [ 7.8332332000000005, 47.4400854 ], + [ 7.8332361, 47.4401001 ], + [ 7.8332399, 47.4401148 ], + [ 7.8332446000000004, 47.440129400000004 ], + [ 7.8332502, 47.4401438 ], + [ 7.8332567, 47.440158 ], + [ 7.8332641, 47.440172 ], + [ 7.8332722, 47.4401859 ], + [ 7.8332813, 47.4401994 ], + [ 7.8332911, 47.4402128 ], + [ 7.8333018, 47.4402258 ], + [ 7.8333132, 47.4402385 ], + [ 7.8333254, 47.4402509 ], + [ 7.8333384, 47.4402629 ], + [ 7.833352, 47.4402746 ], + [ 7.8333663, 47.4402859 ], + [ 7.8333813, 47.4402968 ], + [ 7.833397, 47.4403072 ], + [ 7.8334133, 47.4403172 ], + [ 7.8334301, 47.4403267 ], + [ 7.8334475999999995, 47.4403358 ], + [ 7.8334656, 47.4403443 ], + [ 7.833484, 47.4403524 ], + [ 7.833503, 47.4403599 ], + [ 7.8335224, 47.4403669 ], + [ 7.8335422, 47.4403733 ], + [ 7.8335624, 47.4403791 ], + [ 7.8335829, 47.4403844 ], + [ 7.8341314, 47.4405154 ], + [ 7.8344649, 47.4405616 ], + [ 7.8351367, 47.4405127 ], + [ 7.8353475, 47.4404977 ], + [ 7.8356732000000004, 47.4404587 ], + [ 7.8357151, 47.440454 ], + [ 7.8357572, 47.44045 ], + [ 7.8357993, 47.4404466 ], + [ 7.8358415, 47.4404439 ], + [ 7.8358839, 47.4404417 ], + [ 7.8359262, 47.4404402 ], + [ 7.8359686, 47.4404393 ], + [ 7.8360111, 47.4404391 ], + [ 7.8360535, 47.4404395 ], + [ 7.8360959, 47.4404405 ], + [ 7.8361383, 47.4404421 ], + [ 7.8361806, 47.4404444 ], + [ 7.8362228, 47.4404473 ], + [ 7.8362649, 47.4404509 ], + [ 7.8362825, 47.4404521 ], + [ 7.8363001, 47.4404527 ], + [ 7.8363178, 47.4404527 ], + [ 7.8363355, 47.440452 ], + [ 7.836353, 47.4404507 ], + [ 7.8363705, 47.4404488 ], + [ 7.8363876999999995, 47.4404462 ], + [ 7.8364047, 47.440443 ], + [ 7.8364215, 47.4404392 ], + [ 7.8364379, 47.4404348 ], + [ 7.836454, 47.4404298 ], + [ 7.8364697, 47.4404243 ], + [ 7.8364848, 47.4404181 ], + [ 7.8364995, 47.4404115 ], + [ 7.8365137, 47.4404043 ], + [ 7.8365272, 47.4403966 ], + [ 7.8365402, 47.4403885 ], + [ 7.8365525, 47.4403799 ], + [ 7.836564, 47.4403708 ], + [ 7.8365749000000005, 47.4403613 ], + [ 7.8365849999999995, 47.4403515 ], + [ 7.8365943, 47.4403413 ], + [ 7.8366028, 47.4403308 ], + [ 7.8366109, 47.4403194 ], + [ 7.8366182, 47.4403077 ], + [ 7.8366247, 47.4402958 ], + [ 7.8366302, 47.4402837 ], + [ 7.8366349, 47.4402714 ], + [ 7.8366387, 47.440259 ], + [ 7.8366416999999995, 47.4402465 ], + [ 7.8366437, 47.4402339 ], + [ 7.8366448, 47.4402212 ], + [ 7.836645, 47.4402085 ], + [ 7.8366443, 47.4401959 ], + [ 7.8366427, 47.4401832 ], + [ 7.8366402, 47.4401707 ], + [ 7.8366368, 47.4401582 ], + [ 7.8366325, 47.4401459 ], + [ 7.8366273, 47.4401337 ], + [ 7.8366213, 47.4401217 ], + [ 7.8366144, 47.4401099 ], + [ 7.8362661, 47.4395551 ], + [ 7.8360924, 47.4392136 ], + [ 7.8348121, 47.4393841 ], + [ 7.8339768, 47.4394956 ], + [ 7.8331826, 47.4396015 ], + [ 7.8332311, 47.4400705 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns176", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Steingrube", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Steingrube", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Steingrube", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Steingrube", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6596527, 47.5143356 ], + [ 7.6589664, 47.5145295 ], + [ 7.6590998, 47.5147658 ], + [ 7.6591166, 47.5147956 ], + [ 7.6592673, 47.5148107 ], + [ 7.6596268, 47.5148267 ], + [ 7.6598804, 47.5147568 ], + [ 7.6598676999999995, 47.5147334 ], + [ 7.6596527, 47.5143356 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns099", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Zinggibrunn", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Zinggibrunn", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Zinggibrunn", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Zinggibrunn", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.35562, 47.1728547 ], + [ 7.3556148, 47.1727135 ], + [ 7.3555987, 47.1725726 ], + [ 7.3555719, 47.1724326 ], + [ 7.3555344, 47.1722936 ], + [ 7.3554862, 47.1721562 ], + [ 7.3554276, 47.1720207 ], + [ 7.3553587, 47.1718875 ], + [ 7.3552796, 47.1717569 ], + [ 7.3551906, 47.1716294 ], + [ 7.355092, 47.1715051 ], + [ 7.3549839, 47.1713846 ], + [ 7.3548667, 47.1712681 ], + [ 7.3547408, 47.1711559 ], + [ 7.3546064, 47.1710484 ], + [ 7.354464, 47.1709458 ], + [ 7.3543139, 47.1708484 ], + [ 7.3541565, 47.1707566 ], + [ 7.3539923, 47.1706705 ], + [ 7.3538217, 47.1705903 ], + [ 7.3536451, 47.1705164 ], + [ 7.3534632, 47.1704488 ], + [ 7.3532763, 47.1703878 ], + [ 7.353085, 47.1703336 ], + [ 7.3528898, 47.1702863 ], + [ 7.3526912, 47.1702461 ], + [ 7.3524898, 47.1702129 ], + [ 7.3522862, 47.170187 ], + [ 7.3520807999999995, 47.1701684 ], + [ 7.3518743, 47.1701572 ], + [ 7.3516672, 47.1701533 ], + [ 7.3514601, 47.1701569 ], + [ 7.3512536, 47.1701678 ], + [ 7.3510482, 47.1701861 ], + [ 7.3508444, 47.1702117 ], + [ 7.3506429, 47.1702445 ], + [ 7.3504442, 47.1702845 ], + [ 7.3502489, 47.1703315 ], + [ 7.3500574, 47.1703854 ], + [ 7.3498703, 47.1704461 ], + [ 7.3496881, 47.1705133 ], + [ 7.3495114, 47.170587 ], + [ 7.3493405, 47.1706669 ], + [ 7.349176, 47.1707528 ], + [ 7.3490183, 47.1708444 ], + [ 7.3488679, 47.1709415 ], + [ 7.3487251, 47.1710439 ], + [ 7.3485904, 47.1711512 ], + [ 7.3484641, 47.1712632 ], + [ 7.3483465, 47.1713795 ], + [ 7.3482381, 47.1714999 ], + [ 7.348139, 47.171624 ], + [ 7.3480495999999995, 47.1717514 ], + [ 7.3479701, 47.1718819 ], + [ 7.3479007, 47.172015 ], + [ 7.3478416, 47.1721504 ], + [ 7.3477931, 47.1722877 ], + [ 7.3477551, 47.1724266 ], + [ 7.3477278, 47.1725666 ], + [ 7.3477113, 47.1727075 ], + [ 7.3477056, 47.1728487 ], + [ 7.3477108, 47.1729899 ], + [ 7.3477268, 47.1731308 ], + [ 7.3477536, 47.1732708 ], + [ 7.3477911, 47.1734098 ], + [ 7.3478393, 47.1735472 ], + [ 7.3478978999999995, 47.1736827 ], + [ 7.3479668, 47.1738159 ], + [ 7.3480457999999995, 47.1739465 ], + [ 7.3481348, 47.1740741 ], + [ 7.3482335, 47.1741983 ], + [ 7.3483415, 47.1743189 ], + [ 7.3484587, 47.1744354 ], + [ 7.3485846, 47.1745475 ], + [ 7.348719, 47.1746551 ], + [ 7.3488614, 47.1747577 ], + [ 7.3490115, 47.174855 ], + [ 7.3491689000000004, 47.1749469 ], + [ 7.3493331, 47.175033 ], + [ 7.3495037, 47.1751132 ], + [ 7.3496803, 47.1751871 ], + [ 7.3498622, 47.175254699999996 ], + [ 7.3500491, 47.1753157 ], + [ 7.3502405, 47.1753699 ], + [ 7.3504357, 47.1754172 ], + [ 7.3506343, 47.1754575 ], + [ 7.3508357, 47.1754906 ], + [ 7.3510393, 47.1755165 ], + [ 7.3512447, 47.1755351 ], + [ 7.3514512, 47.1755463 ], + [ 7.3516584, 47.1755502 ], + [ 7.3518655, 47.1755467 ], + [ 7.352072, 47.1755357 ], + [ 7.3522775, 47.1755174 ], + [ 7.3524812, 47.1754918 ], + [ 7.3526828, 47.175459 ], + [ 7.3528815, 47.175419 ], + [ 7.3530768, 47.175372 ], + [ 7.3532683, 47.1753181 ], + [ 7.3534554, 47.1752574 ], + [ 7.3536376, 47.1751902 ], + [ 7.3538144, 47.1751165 ], + [ 7.3539853, 47.1750366 ], + [ 7.3541498, 47.1749507 ], + [ 7.3543075, 47.1748591 ], + [ 7.3544579, 47.1747619 ], + [ 7.3546007, 47.1746596 ], + [ 7.3547354, 47.1745522 ], + [ 7.3548617, 47.1744403 ], + [ 7.3549792, 47.1743239 ], + [ 7.3550877, 47.1742035 ], + [ 7.3551867, 47.1740795 ], + [ 7.3552761, 47.173952 ], + [ 7.3553556, 47.1738216 ], + [ 7.355425, 47.1736884 ], + [ 7.355484, 47.173553 ], + [ 7.3555326, 47.1734157 ], + [ 7.3555706, 47.1732768 ], + [ 7.3555979, 47.1731368 ], + [ 7.3556143, 47.1729959 ], + [ 7.35562, 47.1728547 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0088", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Pieterlen", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Pieterlen", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Pieterlen", + "lang" : "it-CH" + }, + { + "text" : "Substation Pieterlen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7988719, 47.479805 ], + [ 7.7989841, 47.4798853 ], + [ 7.7990115, 47.4798688 ], + [ 7.7991705, 47.4798875 ], + [ 7.7992951999999995, 47.4798984 ], + [ 7.7994354, 47.4799149 ], + [ 7.7996396, 47.4799434 ], + [ 7.7996841, 47.4799482 ], + [ 7.7998518, 47.4799824 ], + [ 7.8000445, 47.4800216 ], + [ 7.8007480000000005, 47.4801593 ], + [ 7.8007857, 47.4801996 ], + [ 7.800836, 47.4802533 ], + [ 7.80091, 47.4803591 ], + [ 7.8009988, 47.4804907 ], + [ 7.8010896, 47.480645 ], + [ 7.8011064, 47.4807159 ], + [ 7.8011288, 47.4808104 ], + [ 7.8012128, 47.4811331 ], + [ 7.8012473, 47.4812638 ], + [ 7.8012661, 47.4813824 ], + [ 7.8012987, 47.481532 ], + [ 7.8013103, 47.4816548 ], + [ 7.8013205, 47.4817778 ], + [ 7.8013293, 47.4819007 ], + [ 7.8013314, 47.4819462 ], + [ 7.8013317, 47.481999 ], + [ 7.8013303, 47.4820872 ], + [ 7.8016947, 47.4828453 ], + [ 7.8017604, 47.4829553 ], + [ 7.8018362, 47.4830799 ], + [ 7.8019426, 47.483179 ], + [ 7.8026434, 47.4836071 ], + [ 7.8034496, 47.4835898 ], + [ 7.8041629, 47.4834095 ], + [ 7.8045044, 47.4834103 ], + [ 7.804504, 47.4833593 ], + [ 7.8045167, 47.4833117 ], + [ 7.8045361, 47.4832839 ], + [ 7.8045643, 47.4832545 ], + [ 7.8046187, 47.483228 ], + [ 7.8046732, 47.4832147 ], + [ 7.8047213, 47.4832189 ], + [ 7.8047673, 47.4832378 ], + [ 7.8048001, 47.4832552 ], + [ 7.8048214, 47.4832695 ], + [ 7.8051433, 47.4826575 ], + [ 7.8048776, 47.4823775 ], + [ 7.8044142999999995, 47.4818867 ], + [ 7.8042723, 47.4816933 ], + [ 7.8042470999999995, 47.4816667 ], + [ 7.8040747, 47.4814836 ], + [ 7.8039949, 47.4813989 ], + [ 7.8034418, 47.4810528 ], + [ 7.8032833, 47.4808801 ], + [ 7.8030789, 47.4806581 ], + [ 7.802499, 47.4802265 ], + [ 7.8022957, 47.4800384 ], + [ 7.8021434, 47.4798934 ], + [ 7.8018941, 47.4796342 ], + [ 7.8018623, 47.479469 ], + [ 7.8017678, 47.479122 ], + [ 7.8016535000000005, 47.4787803 ], + [ 7.8016732, 47.4784928 ], + [ 7.8016445, 47.4784131 ], + [ 7.8015249, 47.4781063 ], + [ 7.8013332, 47.4777369 ], + [ 7.8011239, 47.4774317 ], + [ 7.8007325, 47.4772505 ], + [ 7.8006011, 47.4771334 ], + [ 7.8004194, 47.4769716 ], + [ 7.8000012, 47.4767645 ], + [ 7.7997678, 47.4769278 ], + [ 7.799619, 47.4768966 ], + [ 7.7994047, 47.4768324 ], + [ 7.799513, 47.4771035 ], + [ 7.7994546, 47.4775358 ], + [ 7.7993987, 47.4779618 ], + [ 7.7992032, 47.4782673 ], + [ 7.7990394, 47.4785263 ], + [ 7.7990101, 47.4786287 ], + [ 7.7989343, 47.4788935 ], + [ 7.7987859, 47.4791149 ], + [ 7.7985546, 47.4793488 ], + [ 7.7988719, 47.479805 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns314", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Strickrain", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Strickrain", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Strickrain", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Strickrain", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5406107, 47.4449578 ], + [ 7.5387292, 47.4445408 ], + [ 7.5387228, 47.4445423 ], + [ 7.5379209, 47.4447329 ], + [ 7.5365302, 47.4453132 ], + [ 7.5360209000000005, 47.4453428 ], + [ 7.5365508, 47.4448022 ], + [ 7.5367152, 47.4444954 ], + [ 7.5371749, 47.4447968 ], + [ 7.5377697999999995, 47.444514 ], + [ 7.5381715, 47.4444201 ], + [ 7.538178, 47.4444186 ], + [ 7.5365804, 47.4440645 ], + [ 7.5329233, 47.4434432 ], + [ 7.5328401, 47.4434292 ], + [ 7.5328284, 47.4434304 ], + [ 7.5316402, 47.4435584 ], + [ 7.5303047, 47.4437707 ], + [ 7.5303062, 47.4446091 ], + [ 7.5302892, 47.4448705 ], + [ 7.5302866, 47.4449377 ], + [ 7.5303125, 47.4449289 ], + [ 7.5303943, 47.4449756 ], + [ 7.5306397, 47.4449696 ], + [ 7.5308376, 47.4449577 ], + [ 7.5309151, 47.4449372 ], + [ 7.5311086, 47.4447998 ], + [ 7.5313238, 47.4447938 ], + [ 7.5315002, 47.4448024 ], + [ 7.5316035, 47.4447819 ], + [ 7.5317411, 47.4446767 ], + [ 7.5323781, 47.4446207 ], + [ 7.5335186, 47.4445584 ], + [ 7.5336221, 47.4446489 ], + [ 7.533876, 47.4446195 ], + [ 7.5339317999999995, 47.444523 ], + [ 7.5339015, 47.4444501 ], + [ 7.534603, 47.4443619 ], + [ 7.5347284, 47.4447005 ], + [ 7.5347158, 47.4448991 ], + [ 7.5346647, 47.4451941 ], + [ 7.5351983, 47.4451235 ], + [ 7.5353104, 47.4452052 ], + [ 7.5350868, 47.4453222 ], + [ 7.5351516, 47.4454857 ], + [ 7.5350828, 47.4455149 ], + [ 7.5348891, 47.4454859 ], + [ 7.534872, 47.4455501 ], + [ 7.5349927, 47.4456785 ], + [ 7.5351132, 47.4456814 ], + [ 7.5351573, 47.4457247 ], + [ 7.5357634000000004, 47.4458035 ], + [ 7.5362673000000004, 47.4459169 ], + [ 7.5368139, 47.4459106 ], + [ 7.5369647, 47.4459455 ], + [ 7.5373391, 47.4459277 ], + [ 7.5374901, 47.4460911 ], + [ 7.5373182, 47.4462635 ], + [ 7.5369914, 47.4464711 ], + [ 7.5368497, 47.4466143 ], + [ 7.5368110999999995, 47.4467457 ], + [ 7.5367946, 47.4470962 ], + [ 7.5366268, 47.4471489 ], + [ 7.5364717, 47.4471023 ], + [ 7.5363297, 47.4471316 ], + [ 7.5360721999999996, 47.4475348 ], + [ 7.5358830999999995, 47.4477306 ], + [ 7.5356339, 47.4479848 ], + [ 7.5355738, 47.4480754 ], + [ 7.5353241, 47.4480844 ], + [ 7.5346313, 47.4482047 ], + [ 7.5342395, 47.44817 ], + [ 7.5337746, 47.4481499 ], + [ 7.5334001, 47.4481385 ], + [ 7.5330083, 47.4481359 ], + [ 7.5323539, 47.4480664 ], + [ 7.5323363, 47.4478445 ], + [ 7.5314453, 47.4478919 ], + [ 7.5314799, 47.4479707 ], + [ 7.5312564, 47.4479857 ], + [ 7.5309959, 47.4479997 ], + [ 7.530568, 47.4479845 ], + [ 7.5300408, 47.4480212 ], + [ 7.5296817, 47.4480215 ], + [ 7.5296775, 47.4480222 ], + [ 7.5294238, 47.4480774 ], + [ 7.5288212, 47.4480818 ], + [ 7.5286663, 47.4481364 ], + [ 7.5279391, 47.4482966 ], + [ 7.527807, 47.4482383 ], + [ 7.5276061, 47.448219 ], + [ 7.5271986, 47.448266 ], + [ 7.5264239, 47.4483367 ], + [ 7.5254426, 47.448427 ], + [ 7.5253563, 47.448357 ], + [ 7.525243, 47.4483697 ], + [ 7.5235447, 47.4487876 ], + [ 7.523189, 47.448854 ], + [ 7.5227701, 47.4489439 ], + [ 7.5229425, 47.4490528 ], + [ 7.5230171, 47.4490527 ], + [ 7.5231209, 47.4493602 ], + [ 7.5227132999999995, 47.4493294 ], + [ 7.522702, 47.4494423 ], + [ 7.5227465, 47.4494354 ], + [ 7.5229991, 47.4494625 ], + [ 7.5232747, 47.4495129 ], + [ 7.5232403, 47.4495713 ], + [ 7.523516, 47.4496646 ], + [ 7.5239524, 47.4497694 ], + [ 7.5241011, 47.4494812 ], + [ 7.5241701, 47.4495201 ], + [ 7.524532, 47.4497067 ], + [ 7.5246584, 47.4498156 ], + [ 7.5245379, 47.4498468 ], + [ 7.5244747, 47.4497612 ], + [ 7.5241302999999995, 47.4497498 ], + [ 7.5240327, 47.449781 ], + [ 7.5239353, 47.4498434 ], + [ 7.5235336, 47.4499449 ], + [ 7.5231319, 47.4500036 ], + [ 7.5229886, 47.4500816 ], + [ 7.5229888, 47.4502217 ], + [ 7.5234708999999995, 47.4502058 ], + [ 7.5236087, 47.4502485 ], + [ 7.5235515, 47.4503381 ], + [ 7.5235573, 47.4504121 ], + [ 7.5238731, 47.4504819 ], + [ 7.5241947, 47.4505401 ], + [ 7.5242923, 47.4504961 ], + [ 7.5260276, 47.4499873 ], + [ 7.5261468, 47.4501931 ], + [ 7.5269777, 47.4498613 ], + [ 7.5269644, 47.4497896 ], + [ 7.526885, 47.4496733 ], + [ 7.5277428, 47.4495742 ], + [ 7.5284817, 47.4494483 ], + [ 7.5295922, 47.4493277 ], + [ 7.5303577, 47.4493182 ], + [ 7.5314927, 47.4493083 ], + [ 7.5322452, 47.4493793 ], + [ 7.5325356, 47.4494507 ], + [ 7.5326544, 47.4494506 ], + [ 7.5327731, 47.4493879 ], + [ 7.5333934, 47.4493695 ], + [ 7.5340798, 47.4493958 ], + [ 7.5345414, 47.4492521 ], + [ 7.5349504, 47.4491623 ], + [ 7.5350566, 47.4494755 ], + [ 7.5357690999999996, 47.4493585 ], + [ 7.5366394, 47.448946 ], + [ 7.5376818, 47.4484103 ], + [ 7.538327, 47.4476129 ], + [ 7.5383133, 47.4473354 ], + [ 7.5383921, 47.4471205 ], + [ 7.5385896, 47.4468876 ], + [ 7.5388719, 47.4466418 ], + [ 7.5389771, 47.4464179 ], + [ 7.5393328, 47.4460774 ], + [ 7.5393985, 47.445961 ], + [ 7.5395433, 47.445746 ], + [ 7.5397806, 47.4456294 ], + [ 7.5401364, 47.4453515 ], + [ 7.5403763, 47.445149 ], + [ 7.540583, 47.4449934 ], + [ 7.5406088, 47.4449603 ], + [ 7.5406107, 47.4449578 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr005", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Egglen", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Egglen", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Egglen", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Egglen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7398302999999995, 47.3542777 ], + [ 7.7402817, 47.3541947 ], + [ 7.7404224, 47.3541806 ], + [ 7.740613, 47.3541567 ], + [ 7.7410021, 47.3541078 ], + [ 7.7410896000000005, 47.3540981 ], + [ 7.74141, 47.3540685 ], + [ 7.7416179, 47.3540499 ], + [ 7.7422993, 47.3539801 ], + [ 7.7427949, 47.3539586 ], + [ 7.7434874, 47.3539302 ], + [ 7.7440864, 47.3539404 ], + [ 7.7449058, 47.3539414 ], + [ 7.7449964, 47.3539358 ], + [ 7.7451042, 47.3539228 ], + [ 7.7455605, 47.3538557 ], + [ 7.7456449, 47.3538491 ], + [ 7.7456902, 47.3538458 ], + [ 7.7463939, 47.3538482 ], + [ 7.7465072, 47.3538488 ], + [ 7.74663, 47.353856 ], + [ 7.7468772999999995, 47.353899 ], + [ 7.7470400999999995, 47.353924 ], + [ 7.7471793, 47.3539236 ], + [ 7.7472370999999995, 47.3539171 ], + [ 7.7474354, 47.3538709 ], + [ 7.7476245, 47.3538396 ], + [ 7.7477447999999995, 47.3538265 ], + [ 7.7479542, 47.3538121 ], + [ 7.7480699, 47.3538023 ], + [ 7.7481965, 47.353786 ], + [ 7.7483386, 47.3537665 ], + [ 7.7487448, 47.3537048 ], + [ 7.7489636, 47.3536723 ], + [ 7.7491433, 47.3536506 ], + [ 7.7494184, 47.3536297 ], + [ 7.7496716, 47.3536109 ], + [ 7.7497935, 47.3535957 ], + [ 7.7498575, 47.3535871 ], + [ 7.7499372, 47.353573 ], + [ 7.7499873, 47.3535603 ], + [ 7.750027, 47.3535994 ], + [ 7.7504744, 47.3535771 ], + [ 7.7505746, 47.3535387 ], + [ 7.7506841, 47.3535104 ], + [ 7.7510592, 47.3533081 ], + [ 7.7512236, 47.3532242 ], + [ 7.7513098, 47.353259 ], + [ 7.7513537, 47.353278 ], + [ 7.7514101, 47.3532938 ], + [ 7.7514774, 47.3533022 ], + [ 7.751554, 47.3533009 ], + [ 7.7516087, 47.3532922 ], + [ 7.7516680000000004, 47.3532708 ], + [ 7.7517225, 47.3532399 ], + [ 7.7517645, 47.3532026 ], + [ 7.7517909, 47.353161 ], + [ 7.7518093, 47.3531004 ], + [ 7.7518044, 47.3530771 ], + [ 7.7516025, 47.3530319 ], + [ 7.7512269, 47.3529862 ], + [ 7.7508393, 47.3530106 ], + [ 7.7499832, 47.3531574 ], + [ 7.7499839999999995, 47.3527557 ], + [ 7.7496156, 47.3528566 ], + [ 7.7493878, 47.352938 ], + [ 7.7493435, 47.3528488 ], + [ 7.7487437, 47.352961 ], + [ 7.7483749, 47.353013 ], + [ 7.7482499, 47.3530239 ], + [ 7.7482865, 47.3523246 ], + [ 7.748227, 47.3523056 ], + [ 7.7481424, 47.3522804 ], + [ 7.748102, 47.3523336 ], + [ 7.7480522, 47.3523656 ], + [ 7.7478963, 47.3524447 ], + [ 7.7478061, 47.3525235 ], + [ 7.7473091, 47.352578 ], + [ 7.7470871, 47.3525892 ], + [ 7.7463853, 47.3528993 ], + [ 7.7460629, 47.3528491 ], + [ 7.7455903, 47.3527887 ], + [ 7.7449096, 47.3527066 ], + [ 7.7447593999999995, 47.3526879 ], + [ 7.744256, 47.3527083 ], + [ 7.7436212, 47.3527057 ], + [ 7.7431991, 47.352726 ], + [ 7.7425708, 47.3527871 ], + [ 7.7447361, 47.3529624 ], + [ 7.7447012, 47.3534489 ], + [ 7.7431469, 47.3534381 ], + [ 7.7429683, 47.3533939 ], + [ 7.7429152, 47.3533983 ], + [ 7.7429085, 47.3533176 ], + [ 7.7422081, 47.3533492 ], + [ 7.7418173, 47.3533651 ], + [ 7.7396992000000004, 47.3537574 ], + [ 7.7397222, 47.3540105 ], + [ 7.7397238999999995, 47.3540302 ], + [ 7.7398302999999995, 47.3542777 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns347", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Helfenbergrüttenen", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Helfenbergrüttenen", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Helfenbergrüttenen", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Helfenbergrüttenen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.227424, 46.3808921 ], + [ 6.2271688, 46.3808952 ], + [ 6.2269145, 46.3809097 ], + [ 6.2266622, 46.3809358 ], + [ 6.2264128, 46.3809732 ], + [ 6.2261675, 46.3810219 ], + [ 6.2259273, 46.3810815 ], + [ 6.2256933, 46.3811519 ], + [ 6.2254664, 46.3812327 ], + [ 6.2252477, 46.3813237 ], + [ 6.225038, 46.3814243 ], + [ 6.2248382, 46.3815342 ], + [ 6.2246493, 46.3816529 ], + [ 6.224472, 46.3817799 ], + [ 6.2243071, 46.3819147 ], + [ 6.2241552, 46.3820566 ], + [ 6.2240171, 46.3822051 ], + [ 6.2238934, 46.3823595 ], + [ 6.223797, 46.3824994 ], + [ 6.2236919, 46.3826639 ], + [ 6.2236794, 46.3826838 ], + [ 6.2235858, 46.3828481 ], + [ 6.2235078999999995, 46.3830163 ], + [ 6.2234461, 46.3831876 ], + [ 6.2234007, 46.3833614 ], + [ 6.2233717, 46.3835368 ], + [ 6.2233594, 46.3837132 ], + [ 6.2233638, 46.3838898 ], + [ 6.2233849, 46.3840658 ], + [ 6.2234225, 46.3842405 ], + [ 6.2234766, 46.384413 ], + [ 6.2235469, 46.3845828 ], + [ 6.2236331, 46.384749 ], + [ 6.2237348, 46.384911 ], + [ 6.2238516, 46.385068 ], + [ 6.223983, 46.3852194 ], + [ 6.2241284, 46.3853645 ], + [ 6.2242872, 46.3855028 ], + [ 6.2244587, 46.3856335 ], + [ 6.2246423, 46.3857562 ], + [ 6.224837, 46.3858704 ], + [ 6.2250421, 46.3859754 ], + [ 6.2252567, 46.386071 ], + [ 6.2254799, 46.3861566 ], + [ 6.2256819, 46.3862233 ], + [ 6.2259197, 46.3862961 ], + [ 6.2259485, 46.3863048 ], + [ 6.2261859, 46.3863695 ], + [ 6.2264289, 46.3864234 ], + [ 6.2266765, 46.3864661 ], + [ 6.2269276, 46.3864976 ], + [ 6.2271812, 46.3865176 ], + [ 6.2274361, 46.3865261 ], + [ 6.2276912, 46.3865231 ], + [ 6.2279456, 46.3865085 ], + [ 6.228198, 46.3864824 ], + [ 6.2284474, 46.386445 ], + [ 6.2286927, 46.3863963 ], + [ 6.2289329, 46.3863367 ], + [ 6.2291669, 46.3862663 ], + [ 6.2293938, 46.3861855 ], + [ 6.2296126, 46.3860945 ], + [ 6.2298223, 46.3859939 ], + [ 6.230022, 46.385884 ], + [ 6.230211, 46.3857653 ], + [ 6.2303882999999995, 46.3856382 ], + [ 6.2305532, 46.3855035 ], + [ 6.230705, 46.3853615 ], + [ 6.2308431, 46.385213 ], + [ 6.2309668, 46.3850586 ], + [ 6.2310632, 46.3849188 ], + [ 6.2311683, 46.3847542 ], + [ 6.2311808, 46.3847343 ], + [ 6.2312744, 46.38457 ], + [ 6.2313522, 46.3844018 ], + [ 6.231414, 46.3842305 ], + [ 6.2314594, 46.3840567 ], + [ 6.2314884, 46.3838812 ], + [ 6.2315006, 46.3837049 ], + [ 6.2314962, 46.3835283 ], + [ 6.2314751, 46.3833523 ], + [ 6.2314374, 46.3831776 ], + [ 6.2313833, 46.3830051 ], + [ 6.231313, 46.382835299999996 ], + [ 6.2312268, 46.3826691 ], + [ 6.2311251, 46.3825071 ], + [ 6.2310083, 46.3823501 ], + [ 6.2308769, 46.382198700000004 ], + [ 6.2307315, 46.3820536 ], + [ 6.2305727, 46.3819154 ], + [ 6.2304011, 46.3817846 ], + [ 6.2302176, 46.3816619 ], + [ 6.2300229, 46.3815478 ], + [ 6.2298178, 46.3814427 ], + [ 6.2296032, 46.3813472 ], + [ 6.22938, 46.3812616 ], + [ 6.229178, 46.3811949 ], + [ 6.2289402, 46.3811221 ], + [ 6.2289115, 46.3811135 ], + [ 6.2286741, 46.3810487 ], + [ 6.2284311, 46.3809948 ], + [ 6.2281835, 46.3809521 ], + [ 6.2279324, 46.3809206 ], + [ 6.2276789, 46.3809006 ], + [ 6.227424, 46.3808921 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00031", + "country" : "CHE", + "name" : [ + { + "text" : "Hôpital régional GHOL site de Nyon", + "lang" : "de-CH" + }, + { + "text" : "Hôpital régional GHOL site de Nyon", + "lang" : "fr-CH" + }, + { + "text" : "Hôpital régional GHOL site de Nyon", + "lang" : "it-CH" + }, + { + "text" : "Hôpital régional GHOL site de Nyon", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kantonspolizei Waadt", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale vaudoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Vaud", + "lang" : "it-CH" + }, + { + "text" : "Vaud Cantonal Police", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.pcv@vd.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8040567, 47.3893628 ], + [ 7.8040743, 47.3894202 ], + [ 7.804126, 47.3894665 ], + [ 7.8042368, 47.3895462 ], + [ 7.8044242, 47.3897196 ], + [ 7.8045746, 47.3898404 ], + [ 7.804746, 47.3899476 ], + [ 7.8049302, 47.3900419 ], + [ 7.8051316, 47.3901184 ], + [ 7.8052328, 47.3901351 ], + [ 7.8053596, 47.3901826 ], + [ 7.805434, 47.3902332 ], + [ 7.8060637, 47.390516 ], + [ 7.8061554, 47.3905946 ], + [ 7.8062632, 47.3907238 ], + [ 7.8063549, 47.3907849 ], + [ 7.8065736999999995, 47.390866 ], + [ 7.8067009, 47.3909584 ], + [ 7.8068242, 47.3910016 ], + [ 7.8070074, 47.3910366 ], + [ 7.8072627, 47.3911214 ], + [ 7.8076856, 47.3912221 ], + [ 7.8079604, 47.3913089 ], + [ 7.8081721, 47.3913151 ], + [ 7.8079222, 47.3909101 ], + [ 7.8079933, 47.3906799 ], + [ 7.8082025, 47.3904894 ], + [ 7.8070202, 47.3896895 ], + [ 7.806573, 47.3893897 ], + [ 7.8064403, 47.389399 ], + [ 7.8063033, 47.3893778 ], + [ 7.8052318, 47.3893917 ], + [ 7.8047382, 47.3893935 ], + [ 7.8045938, 47.3893905 ], + [ 7.8044492, 47.3893746 ], + [ 7.8042026, 47.389321699999996 ], + [ 7.8041166, 47.3893203 ], + [ 7.8040567, 47.3893628 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns046", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Oberhasel", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Oberhasel", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Oberhasel", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Oberhasel", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.966238, 46.6511094 ], + [ 8.9666896, 46.6511097 ], + [ 8.9670866, 46.651169 ], + [ 8.9676259, 46.651297 ], + [ 8.9684185, 46.6515172 ], + [ 8.968892499999999, 46.6516458 ], + [ 8.9694011, 46.6517266 ], + [ 8.9699337, 46.6518457 ], + [ 8.9703356, 46.6519636 ], + [ 8.9705914, 46.6519995 ], + [ 8.9709049, 46.6521432 ], + [ 8.9717636, 46.6521868 ], + [ 8.9723006, 46.6522313 ], + [ 8.9727944, 46.6522197 ], + [ 8.973373, 46.652178 ], + [ 8.973491899999999, 46.6521685 ], + [ 8.9737369, 46.6523127 ], + [ 8.9742345, 46.6523797 ], + [ 8.9745593, 46.6525135 ], + [ 8.9752674, 46.652946299999996 ], + [ 8.9755383, 46.6530532 ], + [ 8.976158999999999, 46.6532291 ], + [ 8.9766315, 46.6533886 ], + [ 8.9770658, 46.6533836 ], + [ 8.977284, 46.6533295 ], + [ 8.9775984, 46.6533287 ], + [ 8.9777496, 46.6533926 ], + [ 8.9779216, 46.6534677 ], + [ 8.9780642, 46.6535701 ], + [ 8.9783836, 46.6538027 ], + [ 8.9790028, 46.6539509 ], + [ 8.9796622, 46.6540802 ], + [ 8.9801123, 46.654369 ], + [ 8.980478, 46.6545069 ], + [ 8.9811412, 46.6547652 ], + [ 8.9815569, 46.6547964 ], + [ 8.9819575, 46.6547817 ], + [ 8.9827156, 46.6550756 ], + [ 8.9829998, 46.6551915 ], + [ 8.9831659, 46.6553736 ], + [ 8.9835718, 46.6555431 ], + [ 8.9837483, 46.6556329 ], + [ 8.983755500000001, 46.655912 ], + [ 8.9840077, 46.6559661 ], + [ 8.9841474, 46.6559961 ], + [ 8.984441, 46.6559828 ], + [ 8.9844334, 46.6557157 ], + [ 8.9844404, 46.655476 ], + [ 8.9847722, 46.6553977 ], + [ 8.9851265, 46.6551349 ], + [ 8.9853783, 46.6550579 ], + [ 8.9859312, 46.6550302 ], + [ 8.9861271, 46.654999 ], + [ 8.9865147, 46.6549027 ], + [ 8.9868873, 46.6547387 ], + [ 8.987141, 46.6545286 ], + [ 8.9873366, 46.6543417 ], + [ 8.9875442, 46.6540914 ], + [ 8.9876994, 46.6538641 ], + [ 8.9878407, 46.65361 ], + [ 8.9879396, 46.6533269 ], + [ 8.988049, 46.6530686 ], + [ 8.9881427, 46.6528893 ], + [ 8.9881704, 46.6526611 ], + [ 8.9880839, 46.6524363 ], + [ 8.9880517, 46.6522809 ], + [ 8.9881718, 46.6521127 ], + [ 8.9883428, 46.6520094 ], + [ 8.9885314, 46.6517774 ], + [ 8.9886104, 46.6514855 ], + [ 8.9886967, 46.6512499 ], + [ 8.9888218, 46.6509688 ], + [ 8.9888933, 46.6508169 ], + [ 8.9891612, 46.6507894 ], + [ 8.9891584, 46.6505187 ], + [ 8.9897244, 46.6502084 ], + [ 8.9896836, 46.6499831 ], + [ 8.9900483, 46.6499141 ], + [ 8.9903644, 46.6497191 ], + [ 8.9905271, 46.6494964 ], + [ 8.9906283, 46.6493532 ], + [ 8.9908691, 46.64915 ], + [ 8.9910276, 46.64904 ], + [ 8.9913776, 46.6488854 ], + [ 8.9917223, 46.6488053 ], + [ 8.992038, 46.6487366 ], + [ 8.9923779, 46.6485731 ], + [ 8.9926482, 46.6484892 ], + [ 8.9928534, 46.648327 ], + [ 8.9929583, 46.6481679 ], + [ 8.9932006, 46.6480482 ], + [ 8.9934744, 46.6480003 ], + [ 8.993755, 46.6479593 ], + [ 8.9942053, 46.6477471 ], + [ 8.9944247, 46.6475937 ], + [ 8.9947265, 46.6474982 ], + [ 8.9950227, 46.6471229 ], + [ 8.9952007, 46.6468684 ], + [ 8.9953625, 46.6466456 ], + [ 8.9956911, 46.6464009 ], + [ 8.9958798, 46.6460627 ], + [ 8.9962009, 46.6457864 ], + [ 8.9966537, 46.6455462 ], + [ 8.9967028, 46.6453796 ], + [ 8.9969827, 46.6453482 ], + [ 8.9972905, 46.6448924 ], + [ 8.9973324, 46.6444772 ], + [ 8.9976284, 46.6440677 ], + [ 8.9998104, 46.644331 ], + [ 9.000134, 46.6444791 ], + [ 9.0003514, 46.6445423 ], + [ 9.0007029, 46.6446133 ], + [ 9.0010101, 46.6446216 ], + [ 9.001235, 46.6445765 ], + [ 9.0012016, 46.6443804 ], + [ 9.0011145, 46.6443068 ], + [ 9.0008712, 46.6442213 ], + [ 9.0008125, 46.6440562 ], + [ 9.0005688, 46.6439582 ], + [ 9.0008485, 46.6439175 ], + [ 9.000831, 46.6437612 ], + [ 9.0008781, 46.643557799999996 ], + [ 9.0007955, 46.6434667 ], + [ 9.0009755, 46.6432247 ], + [ 9.0009278, 46.6429581 ], + [ 9.0008713, 46.6428391 ], + [ 9.0005022, 46.642586 ], + [ 9.000823, 46.6425541 ], + [ 9.0008684, 46.6424586 ], + [ 9.0007177, 46.6422998 ], + [ 9.0004995, 46.6421801 ], + [ 9.0003139, 46.6419179 ], + [ 9.0002739, 46.6417468 ], + [ 9.000251, 46.6415777 ], + [ 9.0001698, 46.64131 ], + [ 9.0001512, 46.6410619 ], + [ 9.0002041, 46.6408018 ], + [ 9.0002584, 46.6407313 ], + [ 8.9999595, 46.6406711 ], + [ 8.9997807, 46.6405577 ], + [ 8.999763399999999, 46.6403841 ], + [ 8.9996654, 46.6402429 ], + [ 8.9994409, 46.64013 ], + [ 8.9992345, 46.6399673 ], + [ 8.9990316, 46.6398114 ], + [ 8.9989083, 46.6396953 ], + [ 8.9987515, 46.6395817 ], + [ 8.9988297, 46.6392649 ], + [ 8.9989111, 46.6390881 ], + [ 8.9990225, 46.6389289 ], + [ 8.9991994, 46.6388076 ], + [ 8.9992413, 46.6386469 ], + [ 8.9991269, 46.6386143 ], + [ 8.9989434, 46.6386229 ], + [ 8.9987637, 46.6386201 ], + [ 8.998727, 46.6384512 ], + [ 8.9988032, 46.6383173 ], + [ 8.9988588, 46.6381791 ], + [ 8.9989142, 46.6380341 ], + [ 8.9990036, 46.6379361 ], + [ 8.9987132, 46.6379706 ], + [ 8.9988264, 46.6377347 ], + [ 8.9987127, 46.6376433 ], + [ 8.9987002, 46.6375216 ], + [ 8.9985823, 46.6373693 ], + [ 8.9984318, 46.6373595 ], + [ 8.9982455, 46.6373545 ], + [ 8.9977757, 46.6374246 ], + [ 8.9969846, 46.6375973 ], + [ 8.9966776, 46.637738 ], + [ 8.99638, 46.6379192 ], + [ 8.9960434, 46.6380557 ], + [ 8.995087, 46.6381555 ], + [ 8.994610699999999, 46.63823 ], + [ 8.9941077, 46.6383953 ], + [ 8.9937734, 46.6385273 ], + [ 8.9932722, 46.6386428 ], + [ 8.9926873, 46.6386575 ], + [ 8.9922105, 46.6386893 ], + [ 8.9917867, 46.6387432 ], + [ 8.9912954, 46.6388631 ], + [ 8.9906341, 46.6390051 ], + [ 8.9900501, 46.6390537 ], + [ 8.9896809, 46.6391047 ], + [ 8.9892111, 46.6391499 ], + [ 8.9888453, 46.6391783 ], + [ 8.9885778, 46.6391877 ], + [ 8.9883097, 46.639064 ], + [ 8.9880894, 46.6390098 ], + [ 8.9878317, 46.6390483 ], + [ 8.9874428, 46.6390387 ], + [ 8.9871867, 46.6390208 ], + [ 8.9869118, 46.6386873 ], + [ 8.9866092, 46.6383269 ], + [ 8.986480199999999, 46.638098 ], + [ 8.9863657, 46.6377786 ], + [ 8.9861217, 46.6373837 ], + [ 8.9859468, 46.6371778 ], + [ 8.9857849, 46.6369401 ], + [ 8.9856514, 46.6368105 ], + [ 8.9854269, 46.6367247 ], + [ 8.9848394, 46.6364799 ], + [ 8.9844467, 46.6361656 ], + [ 8.9842545, 46.6358966 ], + [ 8.9841013, 46.6357333 ], + [ 8.9838112, 46.635497 ], + [ 8.9837713, 46.635301 ], + [ 8.9837541, 46.6351251 ], + [ 8.983788, 46.6348833 ], + [ 8.9838078, 46.6347184 ], + [ 8.9838132, 46.6346507 ], + [ 8.983570199999999, 46.6344611 ], + [ 8.9834349, 46.6344105 ], + [ 8.9831791, 46.6343725 ], + [ 8.9828703, 46.6343393 ], + [ 8.9823934, 46.6341906 ], + [ 8.9820616, 46.6341193 ], + [ 8.9816924, 46.6339987 ], + [ 8.9813893, 46.6338753 ], + [ 8.9811015, 46.6337179 ], + [ 8.9808926, 46.6336071 ], + [ 8.9806894, 46.6334105 ], + [ 8.9802068, 46.6330314 ], + [ 8.9798478, 46.6327529 ], + [ 8.9795245, 46.6326386 ], + [ 8.9789486, 46.6324795 ], + [ 8.9785049, 46.6323507 ], + [ 8.9781137, 46.6322574 ], + [ 8.9773906, 46.6320929 ], + [ 8.9768965, 46.631942 ], + [ 8.9766101, 46.6318612 ], + [ 8.9761533, 46.6317281 ], + [ 8.9757887, 46.6316526 ], + [ 8.9755723, 46.6316208 ], + [ 8.9753753, 46.6316115 ], + [ 8.9752243, 46.6315858 ], + [ 8.9750247, 46.6313959 ], + [ 8.9749232, 46.631099 ], + [ 8.9747167, 46.630785 ], + [ 8.9746923, 46.6307036 ], + [ 8.974497, 46.6304096 ], + [ 8.974127, 46.6301407 ], + [ 8.9737857, 46.6298823 ], + [ 8.9743492, 46.6298045 ], + [ 8.9744743, 46.6297827 ], + [ 8.975137, 46.6296894 ], + [ 8.9757404, 46.6296111 ], + [ 8.9766207, 46.6295084 ], + [ 8.9797037, 46.6290441 ], + [ 8.9828734, 46.6286178 ], + [ 8.9836828, 46.6284889 ], + [ 8.9841594, 46.6284283 ], + [ 8.9846249, 46.6283507 ], + [ 8.985915, 46.6281929 ], + [ 8.9865324, 46.6281174 ], + [ 8.9874981, 46.6279471 ], + [ 8.9895365, 46.627668 ], + [ 8.989965399999999, 46.6276261 ], + [ 8.991754, 46.6277454 ], + [ 8.9929944, 46.6278183 ], + [ 8.9945319, 46.6278063 ], + [ 8.99529, 46.6276568 ], + [ 8.9960939, 46.6275111 ], + [ 8.9962013, 46.6271595 ], + [ 8.9962359, 46.6265754 ], + [ 8.996255099999999, 46.6263327 ], + [ 8.9962675, 46.6258568 ], + [ 8.9965548, 46.6254038 ], + [ 8.9972162, 46.6248472 ], + [ 8.9974867, 46.6247447 ], + [ 8.9978616, 46.6246408 ], + [ 8.9985362, 46.6245418 ], + [ 8.999249, 46.6244063 ], + [ 8.9999273, 46.6244061 ], + [ 9.0006052, 46.6244236 ], + [ 9.0012174, 46.6244242 ], + [ 9.0019834, 46.6243239 ], + [ 9.0020763, 46.6243766 ], + [ 9.0025558, 46.6251781 ], + [ 9.0029651, 46.6260389 ], + [ 9.0033952, 46.6269397 ], + [ 9.0040682, 46.6276847 ], + [ 9.0050731, 46.6288425 ], + [ 9.0061233, 46.6300131 ], + [ 9.0066434, 46.63041 ], + [ 9.007787, 46.6311933 ], + [ 9.0087038, 46.6315622 ], + [ 9.0109986, 46.6324913 ], + [ 9.0121474, 46.6330052 ], + [ 9.012772, 46.6329786 ], + [ 9.013002, 46.6328049 ], + [ 9.013113, 46.6326059 ], + [ 9.0132655, 46.6324601 ], + [ 9.0135448, 46.6326627 ], + [ 9.0138036, 46.6326053 ], + [ 9.0137723, 46.6328481 ], + [ 9.0140514, 46.6330418 ], + [ 9.014311, 46.6330113 ], + [ 9.0146102, 46.6329982 ], + [ 9.0149648, 46.633092 ], + [ 9.0152457, 46.6333216 ], + [ 9.0156737, 46.6336927 ], + [ 9.0158821, 46.6336988 ], + [ 9.016099, 46.6337452 ], + [ 9.0164157, 46.6338845 ], + [ 9.0163546, 46.634029 ], + [ 9.0166157, 46.6340522 ], + [ 9.0166828, 46.6341141 ], + [ 9.016739, 46.634248 ], + [ 9.0168411, 46.6346148 ], + [ 9.0168346, 46.6348394 ], + [ 9.0167513, 46.6351188 ], + [ 9.0168195, 46.6352166 ], + [ 9.0171106, 46.6353741 ], + [ 9.0173225, 46.63547 ], + [ 9.0175956, 46.6354573 ], + [ 9.017805, 46.6354992 ], + [ 9.0179645, 46.6355958 ], + [ 9.0179954, 46.6357571 ], + [ 9.0180873, 46.6357736 ], + [ 9.0183622, 46.6358237 ], + [ 9.0185738, 46.6359376 ], + [ 9.0187757, 46.6361413 ], + [ 9.0189851, 46.6361832 ], + [ 9.0194468, 46.6363653 ], + [ 9.0197729, 46.6363788 ], + [ 9.0200425, 46.6364424 ], + [ 9.0203078, 46.6366092 ], + [ 9.0205716, 46.6367224 ], + [ 9.0207808, 46.6367284 ], + [ 9.0215223, 46.6366822 ], + [ 9.0221261, 46.6368354 ], + [ 9.0225306, 46.6368478 ], + [ 9.022675, 46.6368727 ], + [ 9.0230614, 46.6367147 ], + [ 9.0235946, 46.6366893 ], + [ 9.0242309, 46.6365908 ], + [ 9.0245693, 46.636577 ], + [ 9.0253998, 46.6328844 ], + [ 9.02589, 46.632285 ], + [ 9.0266015, 46.6316646 ], + [ 9.0254828, 46.6308453 ], + [ 9.0242632, 46.6297041 ], + [ 9.024273, 46.6291473 ], + [ 9.0241557, 46.628489 ], + [ 9.0232105, 46.626235199999996 ], + [ 9.0231138, 46.6256081 ], + [ 9.0229619, 46.624883 ], + [ 9.0225568, 46.6239549 ], + [ 9.0217426, 46.6228529 ], + [ 9.0213842, 46.6219556 ], + [ 9.0230377, 46.6210079 ], + [ 9.0233108, 46.6207751 ], + [ 9.0239129, 46.6199857 ], + [ 9.0248867, 46.6187377 ], + [ 9.0252394, 46.6178797 ], + [ 9.0252974, 46.6171877 ], + [ 9.0257212, 46.6154445 ], + [ 9.0256007, 46.6148715 ], + [ 9.0259866, 46.6142558 ], + [ 9.0260607, 46.613918 ], + [ 9.0247376, 46.6123204 ], + [ 9.0246263, 46.6114197 ], + [ 9.0254962, 46.6104199 ], + [ 9.0261362, 46.6095941 ], + [ 9.0261764, 46.6087405 ], + [ 9.025875599999999, 46.6082778 ], + [ 9.0255802, 46.6077477 ], + [ 9.0273705, 46.6063895 ], + [ 9.0291921, 46.6062924 ], + [ 9.03053, 46.6061749 ], + [ 9.031722, 46.6052829 ], + [ 9.0324309, 46.6050306 ], + [ 9.0336246, 46.6044213 ], + [ 9.0351055, 46.6038438 ], + [ 9.0352255, 46.6030431 ], + [ 9.0351212, 46.6028245 ], + [ 9.0349061, 46.6021453 ], + [ 9.0354571, 46.6014102 ], + [ 9.0347003, 46.6004783 ], + [ 9.0342141, 46.5999408 ], + [ 9.0340667, 46.5984853 ], + [ 9.0338431, 46.5975437 ], + [ 9.0341731, 46.5963423 ], + [ 9.0339046, 46.5952034 ], + [ 9.0339605, 46.5948877 ], + [ 9.0335857, 46.5941281 ], + [ 9.0341627, 46.5937781 ], + [ 9.0345403, 46.5933049 ], + [ 9.034965, 46.5922193 ], + [ 9.0354781, 46.5919151 ], + [ 9.0361277, 46.591816 ], + [ 9.037123, 46.5914871 ], + [ 9.0374499, 46.5915095 ], + [ 9.0382194, 46.5910488 ], + [ 9.0389726, 46.5909212 ], + [ 9.0407105, 46.5901139 ], + [ 9.041038, 46.5901543 ], + [ 9.0417057, 46.589785 ], + [ 9.0430107, 46.5884619 ], + [ 9.0433469, 46.5879173 ], + [ 9.0435622, 46.5872574 ], + [ 9.0436141, 46.5868068 ], + [ 9.0434977, 46.5864035 ], + [ 9.0431343, 46.5860308 ], + [ 9.0423596, 46.5854298 ], + [ 9.0422584, 46.5850984 ], + [ 9.0423962, 46.5844666 ], + [ 9.0439295, 46.5833652 ], + [ 9.0431474, 46.5833942 ], + [ 9.0425631, 46.5834924 ], + [ 9.0419755, 46.5834827 ], + [ 9.0403357, 46.5831909 ], + [ 9.0387571, 46.5827633 ], + [ 9.0375425, 46.5822855 ], + [ 9.0366068, 46.580652 ], + [ 9.0363247, 46.5799362 ], + [ 9.0361424, 46.579066 ], + [ 9.0356907, 46.5783525 ], + [ 9.0353426, 46.5776106 ], + [ 9.0352953, 46.5768914 ], + [ 9.0355335, 46.5761232 ], + [ 9.0356116, 46.5756723 ], + [ 9.0352363, 46.5748947 ], + [ 9.0342143, 46.5747471 ], + [ 9.0336572, 46.57444 ], + [ 9.0329461, 46.5737752 ], + [ 9.0321176, 46.5731119 ], + [ 9.0311312, 46.571956 ], + [ 9.0306655, 46.5716476 ], + [ 9.0299384, 46.5713249 ], + [ 9.0299904, 46.5708743 ], + [ 9.0293436, 46.5697316 ], + [ 9.0289906, 46.5688188 ], + [ 9.0285056, 46.5678538 ], + [ 9.027494, 46.5667252 ], + [ 9.02689, 46.5661488 ], + [ 9.0266147, 46.5656578 ], + [ 9.026531, 46.5650291 ], + [ 9.0266448, 46.5644607 ], + [ 9.0268892, 46.5638994 ], + [ 9.0269651, 46.5633765 ], + [ 9.0268228, 46.5629736 ], + [ 9.0267999, 46.5621911 ], + [ 9.0260801, 46.5607795 ], + [ 9.025604, 46.5601113 ], + [ 9.0254625, 46.5597354 ], + [ 9.0251957, 46.5595321 ], + [ 9.0246292, 46.5593421 ], + [ 9.0238064, 46.5588587 ], + [ 9.0233316, 46.5582355 ], + [ 9.023325, 46.5580106 ], + [ 9.0237074, 46.5577084 ], + [ 9.0239603, 46.5574349 ], + [ 9.0245335, 46.5560772 ], + [ 9.0247101, 46.5554269 ], + [ 9.0246375, 46.555176 ], + [ 9.024434, 46.5549089 ], + [ 9.0235394, 46.5542016 ], + [ 9.0231919, 46.5534686 ], + [ 9.0231819, 46.5531268 ], + [ 9.0227979, 46.5524843 ], + [ 9.0225871, 46.5519654 ], + [ 9.022314, 46.5515463 ], + [ 9.0216398, 46.5507909 ], + [ 9.02124, 46.5504995 ], + [ 9.020944, 46.5501887 ], + [ 9.0209356, 46.5499009 ], + [ 9.0208239, 46.5496505 ], + [ 9.0205965, 46.5494558 ], + [ 9.0201232, 46.5488775 ], + [ 9.0199823, 46.5485195 ], + [ 9.0196028, 46.5480299 ], + [ 9.0192277, 46.5472434 ], + [ 9.0194635, 46.5463853 ], + [ 9.0200845, 46.5453239 ], + [ 9.0204219, 46.5448243 ], + [ 9.0206434, 46.5443714 ], + [ 9.0212444, 46.5426264 ], + [ 9.021361, 46.5421569 ], + [ 9.0214572, 46.5409859 ], + [ 9.0211741, 46.540225 ], + [ 9.0211575, 46.5396584 ], + [ 9.0212109, 46.5392528 ], + [ 9.0219088, 46.5385952 ], + [ 9.0229583, 46.5379238 ], + [ 9.0224784, 46.5371207 ], + [ 9.0222658, 46.5365388 ], + [ 9.0216459, 46.5354047 ], + [ 9.021374, 46.5350216 ], + [ 9.0215849, 46.5342089 ], + [ 9.0217108, 46.5340542 ], + [ 9.0208133, 46.5336798 ], + [ 9.0186472, 46.5331701 ], + [ 9.0180503, 46.5328185 ], + [ 9.0173895, 46.5325128 ], + [ 9.016744599999999, 46.5321109 ], + [ 9.016589, 46.5321945 ], + [ 9.0165081, 46.5323524 ], + [ 9.0164271, 46.5325385 ], + [ 9.0163054, 46.5326402 ], + [ 9.0161997, 46.5327024 ], + [ 9.0160121, 46.5327816 ], + [ 9.0157511, 46.5328836 ], + [ 9.0154244, 46.5329971 ], + [ 9.015164, 46.5330935 ], + [ 9.0149023, 46.5331729 ], + [ 9.014707, 46.5332635 ], + [ 9.0145272, 46.5332753 ], + [ 9.0143804, 46.5332981 ], + [ 9.0142085, 46.5332985 ], + [ 9.0140454, 46.5332652 ], + [ 9.0138979, 46.5332092 ], + [ 9.0137339, 46.5331477 ], + [ 9.013554, 46.5330411 ], + [ 9.0134307, 46.532917499999996 ], + [ 9.0132998, 46.5327883 ], + [ 9.013152, 46.5326648 ], + [ 9.0129471, 46.5325133 ], + [ 9.0127504, 46.5323616 ], + [ 9.0125289, 46.5321989 ], + [ 9.0122667, 46.5320363 ], + [ 9.0121111, 46.5318959 ], + [ 9.0118564, 46.5316825 ], + [ 9.0115782, 46.5315592 ], + [ 9.0111205, 46.5314534 ], + [ 9.0107444, 46.5314092 ], + [ 9.0105731, 46.5314321 ], + [ 9.0103688, 46.5315227 ], + [ 9.0101412, 46.5316247 ], + [ 9.0098635, 46.5317436 ], + [ 9.0095867, 46.5318907 ], + [ 9.0093424, 46.5320095 ], + [ 9.0090484, 46.5321285 ], + [ 9.0087304, 46.5322588 ], + [ 9.008486, 46.532372 ], + [ 9.0082657, 46.5324458 ], + [ 9.0080861, 46.5324912 ], + [ 9.0078987, 46.532548 ], + [ 9.0076047, 46.5326388 ], + [ 9.0074172, 46.5327181 ], + [ 9.0072542, 46.532803 ], + [ 9.0071325, 46.5328764 ], + [ 9.00701, 46.5329782 ], + [ 9.0069125, 46.5331023 ], + [ 9.006783, 46.5332996 ], + [ 9.0066367, 46.5334521 ], + [ 9.0064336, 46.533644 ], + [ 9.0061894, 46.5339036 ], + [ 9.0059533, 46.5341633 ], + [ 9.005701, 46.5343723 ], + [ 9.0054329, 46.5346263 ], + [ 9.0051559, 46.534796 ], + [ 9.0048709, 46.5349994 ], + [ 9.0045856, 46.5351069 ], + [ 9.0042429, 46.5352598 ], + [ 9.0039332, 46.5354014 ], + [ 9.0035664, 46.5355655 ], + [ 9.0032889, 46.5356901 ], + [ 9.0031344, 46.5357863 ], + [ 9.0029796, 46.5358711 ], + [ 9.0027923, 46.5359898 ], + [ 9.0026623, 46.536114 ], + [ 9.0025154, 46.5362494 ], + [ 9.0023197, 46.5363287 ], + [ 9.0021568, 46.5364418 ], + [ 9.0019941, 46.536566 ], + [ 9.0018233, 46.5366903 ], + [ 9.0016278, 46.5368316 ], + [ 9.0014162, 46.5369841 ], + [ 9.0012044, 46.5370972 ], + [ 9.0008694, 46.5371544 ], + [ 9.0006089, 46.5373014 ], + [ 9.0003802, 46.5374258 ], + [ 9.0000867, 46.5375616 ], + [ 8.9998585, 46.5377312 ], + [ 8.9996556, 46.5378725 ], + [ 8.9995826, 46.5379965 ], + [ 8.999526, 46.5382107 ], + [ 8.9994373, 46.538498 ], + [ 8.9993571, 46.5387684 ], + [ 8.9992359, 46.5391123 ], + [ 8.9991548, 46.5392984 ], + [ 8.9990253, 46.5394676 ], + [ 8.998854099999999, 46.5396087 ], + [ 8.9986338, 46.5397106 ], + [ 8.9983565, 46.5397902 ], + [ 8.9981033, 46.5398527 ], + [ 8.9978583, 46.5398926 ], + [ 8.997548, 46.5399272 ], + [ 8.9971404, 46.5400352 ], + [ 8.9969079, 46.5409873 ], + [ 8.996917, 46.5413027 ], + [ 8.9970318, 46.541387 ], + [ 8.9971143, 46.541505 ], + [ 8.9971477, 46.5416175 ], + [ 8.9971312, 46.5417527 ], + [ 8.9970833, 46.5418712 ], + [ 8.9970269, 46.5420065 ], + [ 8.9969129, 46.5421813 ], + [ 8.9967664, 46.5423562 ], + [ 8.9965957, 46.5425424 ], + [ 8.9965553, 46.5426945 ], + [ 8.9965068, 46.5428243 ], + [ 8.9964913, 46.5429932 ], + [ 8.996468, 46.5432016 ], + [ 8.9963873, 46.5434552 ], + [ 8.9962737, 46.5436413 ], + [ 8.9961926, 46.5437711 ], + [ 8.9960868, 46.5438897 ], + [ 8.9960464, 46.5439854 ], + [ 8.9959574, 46.5441207 ], + [ 8.9959171, 46.5442786 ], + [ 8.9958607, 46.5444139 ], + [ 8.995722, 46.544493 ], + [ 8.9955914, 46.5445721 ], + [ 8.995379, 46.5446403 ], + [ 8.9952004, 46.5447476 ], + [ 8.9950289, 46.5448495 ], + [ 8.9948745, 46.5450075 ], + [ 8.9947361, 46.5451542 ], + [ 8.9945568, 46.545239 ], + [ 8.9943611, 46.5453183 ], + [ 8.9944521, 46.545594 ], + [ 8.9945676, 46.5458135 ], + [ 8.9947158, 46.5460046 ], + [ 8.9948476, 46.5462521 ], + [ 8.9946432, 46.5463145 ], + [ 8.9944961, 46.546388 ], + [ 8.9942433, 46.5464957 ], + [ 8.9941214, 46.5465634 ], + [ 8.99404, 46.5466819 ], + [ 8.9938941, 46.5468512 ], + [ 8.993739399999999, 46.546998 ], + [ 8.993577, 46.547218 ], + [ 8.9922347, 46.5467648 ], + [ 8.991989199999999, 46.5467035 ], + [ 8.9916952, 46.5466534 ], + [ 8.9914002, 46.5466259 ], + [ 8.9911063, 46.5466378 ], + [ 8.9907877, 46.5466387 ], + [ 8.9906167, 46.5467009 ], + [ 8.9903306, 46.5467016 ], + [ 8.9900936, 46.5466796 ], + [ 8.9897171, 46.5466523 ], + [ 8.9894719, 46.5466585 ], + [ 8.9894072, 46.5467036 ], + [ 8.9893172, 46.5467771 ], + [ 8.9892033, 46.5468956 ], + [ 8.9890981, 46.5470084 ], + [ 8.9868877, 46.5479764 ], + [ 8.9864063, 46.5481294 ], + [ 8.986161, 46.5481863 ], + [ 8.9860384, 46.5482316 ], + [ 8.9858265, 46.5482321 ], + [ 8.9855973, 46.5482552 ], + [ 8.9854017, 46.5482556 ], + [ 8.9851645, 46.5482843 ], + [ 8.9849601, 46.5483185 ], + [ 8.9848059, 46.5483977 ], + [ 8.9845931, 46.5484827 ], + [ 8.9844307, 46.54859 ], + [ 8.9842755, 46.5487198 ], + [ 8.9841868, 46.5488665 ], + [ 8.9840483, 46.5489851 ], + [ 8.9839173, 46.549019 ], + [ 8.9837455, 46.5489969 ], + [ 8.9834111, 46.5490202 ], + [ 8.9831901, 46.5490433 ], + [ 8.9830106, 46.5490943 ], + [ 8.9827413, 46.549168 ], + [ 8.9825453, 46.5492135 ], + [ 8.9823086, 46.5492873 ], + [ 8.9821616, 46.5493326 ], + [ 8.9819823, 46.5493612 ], + [ 8.981729, 46.5493673 ], + [ 8.9815081, 46.549396 ], + [ 8.9810916, 46.549425 ], + [ 8.9809608, 46.5494704 ], + [ 8.9806587, 46.5495105 ], + [ 8.9804225, 46.5495729 ], + [ 8.9801858, 46.5496466 ], + [ 8.9799897, 46.5496583 ], + [ 8.9798914, 46.5497261 ], + [ 8.9797692, 46.5498165 ], + [ 8.9796228, 46.5499406 ], + [ 8.9795333, 46.5500591 ], + [ 8.9794034, 46.5502509 ], + [ 8.9792982, 46.5504201 ], + [ 8.9791511, 46.5505499 ], + [ 8.9790619, 46.5506796 ], + [ 8.9790137, 46.5508205 ], + [ 8.9789572, 46.5510121 ], + [ 8.978925, 46.5511698 ], + [ 8.9788518, 46.5512883 ], + [ 8.9788031, 46.5513559 ], + [ 8.9787544, 46.5514461 ], + [ 8.9786985, 46.5516603 ], + [ 8.9786337, 46.5519308 ], + [ 8.9785696, 46.5522012 ], + [ 8.978546399999999, 46.5524152 ], + [ 8.9785306, 46.5526349 ], + [ 8.978473900000001, 46.5528209 ], + [ 8.9783685, 46.5529844 ], + [ 8.9782465, 46.5531649 ], + [ 8.9781658, 46.5532776 ], + [ 8.9780348, 46.5534019 ], + [ 8.9778722, 46.5535317 ], + [ 8.9776684, 46.5536729 ], + [ 8.977497, 46.5537803 ], + [ 8.9772609, 46.5538765 ], + [ 8.9769832, 46.5539166 ], + [ 8.9767054, 46.5539791 ], + [ 8.9763704, 46.5539798 ], + [ 8.975986, 46.5539919 ], + [ 8.9757168, 46.5540149 ], + [ 8.9755864, 46.5540715 ], + [ 8.9753821, 46.5541678 ], + [ 8.9751949, 46.5542638 ], + [ 8.9750311, 46.5543543 ], + [ 8.9747621, 46.5544393 ], + [ 8.97455, 46.5544623 ], + [ 8.9743126, 46.5544853 ], + [ 8.974075599999999, 46.5545196 ], + [ 8.9737492, 46.5545372 ], + [ 8.973357, 46.5545324 ], + [ 8.9731365, 46.5545779 ], + [ 8.9728913, 46.5546685 ], + [ 8.9726712, 46.5547535 ], + [ 8.9724592, 46.5548665 ], + [ 8.9722961, 46.5549795 ], + [ 8.9721499, 46.5551149 ], + [ 8.9720276, 46.5552841 ], + [ 8.9718807, 46.5554252 ], + [ 8.9717263, 46.5555269 ], + [ 8.9715952, 46.555561 ], + [ 8.9712933, 46.5555784 ], + [ 8.9709254, 46.5556299 ], + [ 8.9706724, 46.5556474 ], + [ 8.9703214, 46.5556875 ], + [ 8.9699614, 46.5556994 ], + [ 8.9695936, 46.5557509 ], + [ 8.9693327, 46.5558359 ], + [ 8.9690221, 46.5558928 ], + [ 8.9687363, 46.5559328 ], + [ 8.9683522, 46.555928 ], + [ 8.9680748, 46.5559174 ], + [ 8.9674557, 46.5564817 ], + [ 8.9672434, 46.5567018 ], + [ 8.9671051, 46.556826 ], + [ 8.9669178, 46.5569502 ], + [ 8.9667223, 46.5570971 ], + [ 8.9665181, 46.5571989 ], + [ 8.9663715, 46.5572611 ], + [ 8.9662412, 46.5572952 ], + [ 8.9660041, 46.5573575 ], + [ 8.9657758, 46.5574143 ], + [ 8.9655715, 46.5574541 ], + [ 8.9653098, 46.5574828 ], + [ 8.9649663, 46.5575005 ], + [ 8.964663999999999, 46.5575067 ], + [ 8.9642962, 46.5575018 ], + [ 8.9638308, 46.5575028 ], + [ 8.9635773, 46.5575032 ], + [ 8.963356600000001, 46.5575713 ], + [ 8.9631771, 46.5576505 ], + [ 8.9629161, 46.5577636 ], + [ 8.9625977, 46.5578037 ], + [ 8.962328, 46.5578944 ], + [ 8.9619527, 46.558002 ], + [ 8.9616344, 46.5581322 ], + [ 8.9613979, 46.5582453 ], + [ 8.9610956, 46.558336 ], + [ 8.9607609, 46.558438 ], + [ 8.9604509, 46.5585457 ], + [ 8.9603364, 46.5586192 ], + [ 8.9601733, 46.558732 ], + [ 8.9600185, 46.5588225 ], + [ 8.9598477, 46.5589523 ], + [ 8.9596759, 46.5590483 ], + [ 8.9594638, 46.5591897 ], + [ 8.9593175, 46.5592913 ], + [ 8.9591623, 46.5594268 ], + [ 8.9590975, 46.5595564 ], + [ 8.9590983, 46.559731 ], + [ 8.9591319, 46.5599392 ], + [ 8.9589269, 46.5598664 ], + [ 8.9586488, 46.5598051 ], + [ 8.9585351, 46.5598222 ], + [ 8.9584451, 46.5598955 ], + [ 8.9583232, 46.5599971 ], + [ 8.9581843, 46.5601608 ], + [ 8.9580135, 46.5604088 ], + [ 8.9578432, 46.5607866 ], + [ 8.9576657, 46.5612318 ], + [ 8.9574864, 46.5614067 ], + [ 8.9573957, 46.5612829 ], + [ 8.9572645, 46.5611706 ], + [ 8.957125, 46.5610807 ], + [ 8.9570757, 46.5610077 ], + [ 8.9569938, 46.5609064 ], + [ 8.956846, 46.5607546 ], + [ 8.9566738, 46.560603 ], + [ 8.9564855, 46.560485 ], + [ 8.9562889, 46.5603953 ], + [ 8.956101, 46.5603507 ], + [ 8.9558067, 46.5602948 ], + [ 8.9556025, 46.5602783 ], + [ 8.9554388, 46.5602562 ], + [ 8.9553157, 46.5602 ], + [ 8.9551685, 46.5600652 ], + [ 8.9550044, 46.5599135 ], + [ 8.9548237, 46.5597787 ], + [ 8.954701, 46.5596155 ], + [ 8.9545364, 46.5594752 ], + [ 8.9542995, 46.559340399999996 ], + [ 8.9539632, 46.5592398 ], + [ 8.9535875, 46.5591278 ], + [ 8.9531295, 46.5590723 ], + [ 8.9526552, 46.5590225 ], + [ 8.9523528, 46.5590232 ], + [ 8.952181, 46.5590291 ], + [ 8.9520744, 46.5590068 ], + [ 8.9519195, 46.5589508 ], + [ 8.9517557, 46.5589229 ], + [ 8.9514782, 46.5589685 ], + [ 8.9511595, 46.5590592 ], + [ 8.9510371, 46.5591722 ], + [ 8.9509803, 46.5592679 ], + [ 8.9508499, 46.5593301 ], + [ 8.9507027, 46.5593417 ], + [ 8.9506046, 46.5593306 ], + [ 8.9504409, 46.5593084 ], + [ 8.9502937, 46.55932 ], + [ 8.9502126, 46.5593088 ], + [ 8.950106, 46.5592865 ], + [ 8.950024299999999, 46.5592191 ], + [ 8.9498518, 46.5591462 ], + [ 8.9496879, 46.5590564 ], + [ 8.949492, 46.558961 ], + [ 8.9491564, 46.5589109 ], + [ 8.9487887, 46.5588497 ], + [ 8.9485427, 46.5587995 ], + [ 8.9483626, 46.5587154 ], + [ 8.9482645, 46.5586479 ], + [ 8.9481985, 46.5585299 ], + [ 8.9481169, 46.5584399 ], + [ 8.9479609, 46.5583726 ], + [ 8.947830100000001, 46.5583278 ], + [ 8.9477073, 46.5581928 ], + [ 8.9475595, 46.5580693 ], + [ 8.947314, 46.5579458 ], + [ 8.9463974, 46.5575872 ], + [ 8.9462172, 46.5575256 ], + [ 8.9460208, 46.5574977 ], + [ 8.9458577, 46.557498 ], + [ 8.9457432, 46.5575433 ], + [ 8.9456377, 46.5576166 ], + [ 8.9455722, 46.5577238 ], + [ 8.9455241, 46.5578422 ], + [ 8.9454588, 46.5579831 ], + [ 8.9453774, 46.558135300000004 ], + [ 8.9452722, 46.55831 ], + [ 8.9451741, 46.5584453 ], + [ 8.9451009, 46.5585694 ], + [ 8.9449543, 46.5586936 ], + [ 8.9448323, 46.5587614 ], + [ 8.9446283, 46.5588124 ], + [ 8.9444565, 46.5588184 ], + [ 8.9442522, 46.5588018 ], + [ 8.9440965, 46.5587739 ], + [ 8.9439406, 46.5586786 ], + [ 8.9438015, 46.5585718 ], + [ 8.9436867, 46.5584313 ], + [ 8.943596, 46.5582174 ], + [ 8.9435786, 46.5579753 ], + [ 8.9435949, 46.5577387 ], + [ 8.9435605, 46.5574403 ], + [ 8.9435436, 46.5572714 ], + [ 8.9434864, 46.5570912 ], + [ 8.9433707, 46.5569169 ], + [ 8.9431821, 46.5567314 ], + [ 8.9429195, 46.5564335 ], + [ 8.9426656, 46.5561861 ], + [ 8.9424441, 46.5560176 ], + [ 8.9422072, 46.5558829 ], + [ 8.9419782, 46.555827 ], + [ 8.9415444, 46.5557658 ], + [ 8.941135599999999, 46.5556933 ], + [ 8.9408985, 46.5556374 ], + [ 8.9407755, 46.5555814 ], + [ 8.9407096, 46.5554971 ], + [ 8.9407175, 46.5553731 ], + [ 8.9407828, 46.5551984 ], + [ 8.9408307, 46.5550463 ], + [ 8.9408057, 46.5548493 ], + [ 8.940723, 46.5546298 ], + [ 8.9406911, 46.5547424 ], + [ 8.9406183, 46.5548834 ], + [ 8.9405532, 46.5550018 ], + [ 8.9404797, 46.5550864 ], + [ 8.9404308, 46.5551766 ], + [ 8.940431199999999, 46.5553061 ], + [ 8.9404481, 46.5555032 ], + [ 8.9404734, 46.5556214 ], + [ 8.9404248, 46.5557509 ], + [ 8.9402865, 46.555909 ], + [ 8.9400494, 46.5560614 ], + [ 8.9398133, 46.5562194 ], + [ 8.9395519, 46.5563438 ], + [ 8.9393895, 46.556485 ], + [ 8.9393162, 46.5566653 ], + [ 8.939316999999999, 46.5568116 ], + [ 8.9393659, 46.5569298 ], + [ 8.9394405, 46.5570593 ], + [ 8.9395387, 46.5571605 ], + [ 8.9395793, 46.5572167 ], + [ 8.9395884, 46.5573067 ], + [ 8.9395393, 46.5573913 ], + [ 8.9395315, 46.557549 ], + [ 8.9395816, 46.5577686 ], + [ 8.9396642, 46.5579823 ], + [ 8.9397875, 46.5582243 ], + [ 8.9399519, 46.5584211 ], + [ 8.9401648, 46.5585728 ], + [ 8.9406967, 46.5588196 ], + [ 8.9411718, 46.5590778 ], + [ 8.9415477, 46.5592291 ], + [ 8.9417936, 46.5593357 ], + [ 8.9418755, 46.5594369 ], + [ 8.941884, 46.5595383 ], + [ 8.9418603, 46.5597411 ], + [ 8.9418939, 46.560067599999996 ], + [ 8.9418621, 46.5603324 ], + [ 8.9419366, 46.5604336 ], + [ 8.9421085, 46.5605741 ], + [ 8.9422725, 46.5606976 ], + [ 8.942395, 46.5608213 ], + [ 8.9424367, 46.5609451 ], + [ 8.9425266, 46.5610689 ], + [ 8.9426825, 46.5611643 ], + [ 8.9429122, 46.5613329 ], + [ 8.9429938, 46.5614228 ], + [ 8.942962099999999, 46.5615412 ], + [ 8.9429045, 46.5616426 ], + [ 8.9429052, 46.5617552 ], + [ 8.9429142, 46.5618734 ], + [ 8.9429142, 46.5620199 ], + [ 8.9428818, 46.5621156 ], + [ 8.9428085, 46.5621778 ], + [ 8.9426704, 46.5622513 ], + [ 8.9425726, 46.5623416 ], + [ 8.942548, 46.5624542 ], + [ 8.942524, 46.5626739 ], + [ 8.9425171, 46.5628372 ], + [ 8.942484199999999, 46.5629443 ], + [ 8.9424196, 46.5630571 ], + [ 8.942363199999999, 46.5632542 ], + [ 8.9423062, 46.5634908 ], + [ 8.9422259, 46.5638006 ], + [ 8.9421696, 46.5641218 ], + [ 8.9420391, 46.5643248 ], + [ 8.9418766, 46.564494 ], + [ 8.9417793, 46.5646575 ], + [ 8.9417467, 46.564866 ], + [ 8.9417396, 46.5650799 ], + [ 8.9417647, 46.5652769 ], + [ 8.9418964, 46.565440100000004 ], + [ 8.9421012, 46.5656199 ], + [ 8.9422485, 46.5657266 ], + [ 8.9422898, 46.5658336 ], + [ 8.9422493, 46.5659913 ], + [ 8.9421932, 46.5661434 ], + [ 8.9420466, 46.5662958 ], + [ 8.9418418, 46.5664087 ], + [ 8.9417034, 46.5665048 ], + [ 8.9416799, 46.5666569 ], + [ 8.941688599999999, 46.5668821 ], + [ 8.941689, 46.5671017 ], + [ 8.941657, 46.5673271 ], + [ 8.9415437, 46.5675356 ], + [ 8.9414054, 46.5677216 ], + [ 8.9411366, 46.5679362 ], + [ 8.9408426, 46.5682127 ], + [ 8.9404843, 46.5684949 ], + [ 8.9400117, 46.5689744 ], + [ 8.9397757, 46.5692283 ], + [ 8.9395969, 46.5695721 ], + [ 8.9395075, 46.5698764 ], + [ 8.9394841, 46.570062300000004 ], + [ 8.9395415, 46.5702479 ], + [ 8.9395997, 46.5703773 ], + [ 8.9396489, 46.570535 ], + [ 8.9396249, 46.5706701 ], + [ 8.9396825, 46.5708334 ], + [ 8.9397161, 46.5709572 ], + [ 8.9397821, 46.5711317 ], + [ 8.9398152, 46.5712386 ], + [ 8.939774, 46.5713401 ], + [ 8.9397091, 46.5714698 ], + [ 8.9397017, 46.5716161 ], + [ 8.9397837, 46.5718074 ], + [ 8.9398743, 46.5719593 ], + [ 8.9399816, 46.5721507 ], + [ 8.9401049, 46.5723925 ], + [ 8.9401632, 46.572612 ], + [ 8.9401966, 46.5728767 ], + [ 8.9402458, 46.5730906 ], + [ 8.9402711, 46.573327 ], + [ 8.9403216, 46.5735298 ], + [ 8.9404367, 46.5737097 ], + [ 8.9406249, 46.5739685 ], + [ 8.9408724, 46.5744241 ], + [ 8.9407005, 46.5745484 ], + [ 8.9404973, 46.5748641 ], + [ 8.9403267, 46.5751233 ], + [ 8.9402293, 46.5753151 ], + [ 8.9401148, 46.5754505 ], + [ 8.9399599, 46.5755408 ], + [ 8.9398215, 46.5756085 ], + [ 8.9396172, 46.5756822 ], + [ 8.9393884, 46.5757221 ], + [ 8.9392743, 46.5758123 ], + [ 8.9392012, 46.575942 ], + [ 8.9391115, 46.5760605 ], + [ 8.9389563, 46.5761396 ], + [ 8.9388344, 46.576213 ], + [ 8.9387938, 46.5763087 ], + [ 8.9387289, 46.5764666 ], + [ 8.938655, 46.5765962 ], + [ 8.9385164, 46.5766866 ], + [ 8.9382635, 46.5767715 ], + [ 8.9380344, 46.5768001 ], + [ 8.9376995, 46.5768401 ], + [ 8.9374544, 46.5768517 ], + [ 8.9372502, 46.5768409 ], + [ 8.9370131, 46.5768187 ], + [ 8.9368166, 46.576791 ], + [ 8.9365872, 46.5768139 ], + [ 8.9361952, 46.5768202 ], + [ 8.9359167, 46.5767475 ], + [ 8.935606, 46.5767199 ], + [ 8.9351889, 46.5767037 ], + [ 8.9348703, 46.5766536 ], + [ 8.9347069, 46.5767046 ], + [ 8.9337666, 46.5766723 ], + [ 8.9332348, 46.5766396 ], + [ 8.9326458, 46.5765729 ], + [ 8.932098, 46.5765514 ], + [ 8.931632, 46.576479 ], + [ 8.9316565, 46.5764508 ], + [ 8.9310263, 46.5763393 ], + [ 8.9305437, 46.5762557 ], + [ 8.9302409, 46.5761885 ], + [ 8.9296355, 46.5760882 ], + [ 8.9289399, 46.5759712 ], + [ 8.9287605, 46.5759995 ], + [ 8.9286131, 46.5759492 ], + [ 8.9282455, 46.5759835 ], + [ 8.9276971, 46.5759113 ], + [ 8.9274192, 46.5758892 ], + [ 8.9268634, 46.5759296 ], + [ 8.9261688, 46.5759983 ], + [ 8.9254001, 46.576039 ], + [ 8.9247052, 46.5761247 ], + [ 8.9244523, 46.5760913 ], + [ 8.9241249, 46.5760468 ], + [ 8.9237809, 46.575991 ], + [ 8.9234046, 46.5759184 ], + [ 8.9229795, 46.5758516 ], + [ 8.9224971, 46.5757454 ], + [ 8.9221041, 46.5756897 ], + [ 8.9217525, 46.5756227 ], + [ 8.921319, 46.5755164 ], + [ 8.9211712, 46.5755111 ], + [ 8.920951, 46.5755395 ], + [ 8.9206894, 46.5755456 ], + [ 8.9202806, 46.5755969 ], + [ 8.9201498, 46.5757042 ], + [ 8.920035500000001, 46.5757269 ], + [ 8.9199217, 46.5757101 ], + [ 8.9197744, 46.5756934 ], + [ 8.9196026, 46.5756431 ], + [ 8.9194467, 46.5756658 ], + [ 8.919292, 46.575677400000004 ], + [ 8.9191527, 46.5756833 ], + [ 8.9190461, 46.5756609 ], + [ 8.9188667, 46.5755993 ], + [ 8.9187024, 46.5755263 ], + [ 8.9185221, 46.5754646 ], + [ 8.918334, 46.5754143 ], + [ 8.9180157, 46.5754035 ], + [ 8.9177869, 46.5754488 ], + [ 8.9168231, 46.5757488 ], + [ 8.9165773, 46.5758281 ], + [ 8.9164304, 46.5758509 ], + [ 8.9162837, 46.5758568 ], + [ 8.9157689, 46.5759364 ], + [ 8.9154255, 46.5759933 ], + [ 8.9152374, 46.576033 ], + [ 8.9150004, 46.5760447 ], + [ 8.9146813, 46.5760339 ], + [ 8.9143464, 46.5760457 ], + [ 8.9140598, 46.5760631 ], + [ 8.913668, 46.5760468 ], + [ 8.9135372, 46.5760975 ], + [ 8.9133653, 46.5761035 ], + [ 8.913169, 46.5761095 ], + [ 8.9130137, 46.5761265 ], + [ 8.912817, 46.5760931 ], + [ 8.9126291, 46.5760483 ], + [ 8.912522899999999, 46.5759809 ], + [ 8.9123677, 46.5759417 ], + [ 8.9122041, 46.5759533 ], + [ 8.912049, 46.5760098 ], + [ 8.9119423, 46.5760719 ], + [ 8.9117958, 46.5761454 ], + [ 8.9116731, 46.5762188 ], + [ 8.911551, 46.5762865 ], + [ 8.9113461, 46.5763714 ], + [ 8.9111915, 46.5764109 ], + [ 8.9110689, 46.5764337 ], + [ 8.9108892, 46.5764508 ], + [ 8.9108322, 46.5765128 ], + [ 8.9107669, 46.5765411 ], + [ 8.9106688, 46.5765639 ], + [ 8.9105627, 46.5766485 ], + [ 8.910497, 46.5767217 ], + [ 8.910399, 46.5767162 ], + [ 8.9102353, 46.576694 ], + [ 8.9100799, 46.5766773 ], + [ 8.9099497, 46.5766889 ], + [ 8.9097532, 46.576751 ], + [ 8.9096633, 46.5768019 ], + [ 8.9095491, 46.5768303 ], + [ 8.9094425, 46.5768416 ], + [ 8.9092874, 46.5768362 ], + [ 8.9090834, 46.5768309 ], + [ 8.90883, 46.5768369 ], + [ 8.9086582, 46.5769385 ], + [ 8.9084947, 46.5769839 ], + [ 8.9082991, 46.577108 ], + [ 8.9083566, 46.577215 ], + [ 8.908324, 46.5772432 ], + [ 8.9080543, 46.577221 ], + [ 8.9078741, 46.5773452 ], + [ 8.9074987, 46.5775147 ], + [ 8.9071146, 46.5776955 ], + [ 8.9069271, 46.5777859 ], + [ 8.906658, 46.5778764 ], + [ 8.906462, 46.5779893 ], + [ 8.9063144, 46.5779895 ], + [ 8.9057419, 46.5779284 ], + [ 8.9057184, 46.5781424 ], + [ 8.9055959, 46.5782271 ], + [ 8.9054244, 46.5783401 ], + [ 8.9052527, 46.5784417 ], + [ 8.9050564, 46.5785433 ], + [ 8.9048526, 46.5786055 ], + [ 8.9046727, 46.5786171 ], + [ 8.9044032, 46.5786344 ], + [ 8.9040923, 46.5786574 ], + [ 8.9041827, 46.5788037 ], + [ 8.9042651, 46.5789556 ], + [ 8.9043307, 46.5791469 ], + [ 8.9044051, 46.5793045 ], + [ 8.9044868, 46.5794903 ], + [ 8.9045203, 46.579676 ], + [ 8.9045366, 46.5797943 ], + [ 8.9045374, 46.5799463 ], + [ 8.904546, 46.5801434 ], + [ 8.904514, 46.5803462 ], + [ 8.9044818, 46.5805433 ], + [ 8.9044001, 46.5807462 ], + [ 8.9042865, 46.5809773 ], + [ 8.9040994, 46.5812985 ], + [ 8.9036063, 46.5840794 ], + [ 8.9036407, 46.5840875 ], + [ 8.9048597, 46.5847646 ], + [ 8.9067202, 46.5860002 ], + [ 8.9079505, 46.5866141 ], + [ 8.9089753, 46.5873477 ], + [ 8.9095025, 46.5875388 ], + [ 8.9099745, 46.5880995 ], + [ 8.9113347, 46.5886847 ], + [ 8.9120999, 46.5894666 ], + [ 8.9126047, 46.5897929 ], + [ 8.9130357, 46.5902822 ], + [ 8.9136754, 46.5907688 ], + [ 8.9139742, 46.5911968 ], + [ 8.9144852, 46.591748 ], + [ 8.9151474, 46.5920993 ], + [ 8.9160028, 46.5923581 ], + [ 8.9162071, 46.5926703 ], + [ 8.9161729, 46.5928507 ], + [ 8.9158572, 46.5932417 ], + [ 8.9151124, 46.5946459 ], + [ 8.9153406, 46.5958306 ], + [ 8.9157108, 46.5960057 ], + [ 8.9163265, 46.5960877 ], + [ 8.9170316, 46.5965734 ], + [ 8.916712799999999, 46.5968475 ], + [ 8.9164641, 46.5973006 ], + [ 8.9164111, 46.597751099999996 ], + [ 8.91629, 46.5980946 ], + [ 8.9159724, 46.5984136 ], + [ 8.9155472, 46.598617 ], + [ 8.9154701, 46.5991399 ], + [ 8.9152805, 46.5993673 ], + [ 8.9148553, 46.5995707 ], + [ 8.9132401, 46.6001765 ], + [ 8.912725, 46.6004351 ], + [ 8.912708, 46.6007682 ], + [ 8.9123544, 46.6012046 ], + [ 8.9115837, 46.6016645 ], + [ 8.9115238, 46.6018632 ], + [ 8.9116356, 46.6021316 ], + [ 8.911118, 46.6023003 ], + [ 8.9108191, 46.6023491 ], + [ 8.9092817, 46.6034217 ], + [ 8.9090716, 46.6038563 ], + [ 8.9090379, 46.6040546 ], + [ 8.9090814, 46.604216 ], + [ 8.9072397, 46.6061022 ], + [ 8.9070786, 46.6064192 ], + [ 8.907063, 46.6068063 ], + [ 8.9070982, 46.6071387 ], + [ 8.907041, 46.6074364 ], + [ 8.906078, 46.6089963 ], + [ 8.9058585, 46.6095659 ], + [ 8.9061068, 46.6100576 ], + [ 8.9057524, 46.610467 ], + [ 8.9056817, 46.6112327 ], + [ 8.9056932, 46.6116554 ], + [ 8.9054023, 46.6120011 ], + [ 8.905710299999999, 46.612285 ], + [ 8.9062176, 46.6131782 ], + [ 8.9063635, 46.6137431 ], + [ 8.9063404, 46.6138514 ], + [ 8.9066099, 46.6141628 ], + [ 8.9066234, 46.6146575 ], + [ 8.9067929, 46.6151321 ], + [ 8.9071307, 46.6155507 ], + [ 8.9075974, 46.6159045 ], + [ 8.9083879, 46.6161642 ], + [ 8.9093028, 46.6161974 ], + [ 8.9100672, 46.6164575 ], + [ 8.9105966, 46.6167205 ], + [ 8.9106325, 46.6170799 ], + [ 8.910889, 46.6178684 ], + [ 8.9111611, 46.6182697 ], + [ 8.9116972, 46.6187756 ], + [ 8.9116766, 46.6193522 ], + [ 8.9112436, 46.6199645 ], + [ 8.9107103, 46.6205202 ], + [ 8.9104697, 46.620855399999996 ], + [ 8.9100117, 46.6218122 ], + [ 8.9093556, 46.6228052 ], + [ 8.9090801, 46.6230602 ], + [ 8.9090684, 46.6230792 ], + [ 8.9083707, 46.6236861 ], + [ 8.9082039, 46.6238229 ], + [ 8.9080042, 46.6239851 ], + [ 8.9077833, 46.6242037 ], + [ 8.907551699999999, 46.6244247 ], + [ 8.9073345, 46.6246886 ], + [ 8.9070536, 46.6248649 ], + [ 8.9066431, 46.6251079 ], + [ 8.906248399999999, 46.625301 ], + [ 8.9060884, 46.6253318 ], + [ 8.9058388, 46.6254289 ], + [ 8.9056699, 46.6256403 ], + [ 8.9055627, 46.6258421 ], + [ 8.9053834, 46.62618 ], + [ 8.9051489, 46.6264147 ], + [ 8.9048579, 46.6265776 ], + [ 8.9044442, 46.626825 ], + [ 8.9041093, 46.6270583 ], + [ 8.9036934, 46.6273712 ], + [ 8.9032333, 46.6277456 ], + [ 8.9029224, 46.6280485 ], + [ 8.9026184, 46.6283965 ], + [ 8.9022095, 46.628881 ], + [ 8.9018519, 46.6293017 ], + [ 8.901383299999999, 46.6297822 ], + [ 8.900903, 46.6302853 ], + [ 8.9003947, 46.6307143 ], + [ 8.9001848, 46.6309847 ], + [ 8.8996141, 46.6315542 ], + [ 8.8992296, 46.631824 ], + [ 8.8988325, 46.632236 ], + [ 8.898497, 46.6326295 ], + [ 8.8981838, 46.6330001 ], + [ 8.8977806, 46.6334259 ], + [ 8.8974678, 46.6338147 ], + [ 8.8973044, 46.6343238 ], + [ 8.897136, 46.6344383 ], + [ 8.8969569, 46.6346361 ], + [ 8.8968024, 46.6349017 ], + [ 8.8966212, 46.6351741 ], + [ 8.8964408, 46.6354805 ], + [ 8.8962715, 46.6358295 ], + [ 8.8961792, 46.6361305 ], + [ 8.896122, 46.6363725 ], + [ 8.896041199999999, 46.6365853 ], + [ 8.8959624, 46.6369021 ], + [ 8.8958242, 46.6370456 ], + [ 8.8955811, 46.6371447 ], + [ 8.895366899999999, 46.6372527 ], + [ 8.895219, 46.6373692 ], + [ 8.8950633, 46.6375895 ], + [ 8.8949728, 46.6380779 ], + [ 8.8948471, 46.6383836 ], + [ 8.8951, 46.6388319 ], + [ 8.8951548, 46.6388957 ], + [ 8.8950598, 46.6393392 ], + [ 8.8950147, 46.6396347 ], + [ 8.894805, 46.6398217 ], + [ 8.8946628, 46.6399985 ], + [ 8.8946925, 46.6400997 ], + [ 8.8947747, 46.6401814 ], + [ 8.8949466, 46.6401056 ], + [ 8.8952609, 46.6398343 ], + [ 8.8956333, 46.6397743 ], + [ 8.8959141, 46.639743 ], + [ 8.8961435, 46.6396223 ], + [ 8.8964717, 46.6394997 ], + [ 8.8968555, 46.6393812 ], + [ 8.897056899999999, 46.6393432 ], + [ 8.89739, 46.6393132 ], + [ 8.897668, 46.6392971 ], + [ 8.8979155, 46.6392723 ], + [ 8.8982261, 46.6392221 ], + [ 8.8984368, 46.6391638 ], + [ 8.898824, 46.6390519 ], + [ 8.8991613, 46.6390872 ], + [ 8.899439600000001, 46.6390825 ], + [ 8.8996267, 46.6391192 ], + [ 8.8999961, 46.6392513 ], + [ 8.9006701, 46.6394505 ], + [ 8.9012663, 46.6396686 ], + [ 8.9016319, 46.6397826 ], + [ 8.9020339, 46.639946 ], + [ 8.9025793, 46.6402165 ], + [ 8.9031775, 46.6403577 ], + [ 8.9037648, 46.6404563 ], + [ 8.904181, 46.6405111 ], + [ 8.9048118, 46.6406205 ], + [ 8.905247, 46.6406527 ], + [ 8.905879, 46.6406831 ], + [ 8.9065412, 46.6405957 ], + [ 8.9066357, 46.6405881 ], + [ 8.9071839, 46.6405109 ], + [ 8.9078547, 46.6403468 ], + [ 8.9084836, 46.6402373 ], + [ 8.9093093, 46.6401552 ], + [ 8.9098292, 46.6401482 ], + [ 8.9102913, 46.6401801 ], + [ 8.9106281, 46.6401951 ], + [ 8.9111331, 46.6402402 ], + [ 8.9116971, 46.6402936 ], + [ 8.9120431, 46.6402883 ], + [ 8.9124745, 46.6402708 ], + [ 8.9130844, 46.6401818 ], + [ 8.9133614, 46.6401296 ], + [ 8.9137526, 46.6400424 ], + [ 8.9141147, 46.6399985 ], + [ 8.9142378, 46.6401125 ], + [ 8.9142806, 46.6402723 ], + [ 8.9142004, 46.6405371 ], + [ 8.9140177, 46.6407216 ], + [ 8.9138656, 46.6409532 ], + [ 8.913526300000001, 46.6411752 ], + [ 8.9132692, 46.6412385 ], + [ 8.9130516, 46.6413128 ], + [ 8.912747, 46.6414306 ], + [ 8.9122871, 46.6416921 ], + [ 8.9118354, 46.6418339 ], + [ 8.9114202, 46.641998 ], + [ 8.9110413, 46.6421752 ], + [ 8.9104801, 46.6424354 ], + [ 8.9097325, 46.6428077 ], + [ 8.909467, 46.6429502 ], + [ 8.909263, 46.6430445 ], + [ 8.9089342, 46.6432935 ], + [ 8.9086864, 46.6434921 ], + [ 8.908386, 46.6437047 ], + [ 8.9080091, 46.6439858 ], + [ 8.9076926, 46.644176 ], + [ 8.9073325, 46.6444749 ], + [ 8.9072561, 46.64476 ], + [ 8.907226099999999, 46.6448889 ], + [ 8.9072349, 46.6453312 ], + [ 8.9073035, 46.6455133 ], + [ 8.9071736, 46.64572 ], + [ 8.9070598, 46.6458903 ], + [ 8.9068938, 46.646122 ], + [ 8.9067458, 46.6463829 ], + [ 8.9065768, 46.6465966 ], + [ 8.906238, 46.6468366 ], + [ 8.9059314, 46.647065 ], + [ 8.9055419, 46.6473643 ], + [ 8.9052873, 46.6475517 ], + [ 8.9049014, 46.6480766 ], + [ 8.9048817, 46.6482212 ], + [ 8.9049374, 46.6485591 ], + [ 8.9049419, 46.648936 ], + [ 8.9049567, 46.6492112 ], + [ 8.9048725, 46.6495686 ], + [ 8.9047114, 46.6498319 ], + [ 8.9045953, 46.6504265 ], + [ 8.9045989, 46.6507695 ], + [ 8.9047111, 46.6511453 ], + [ 8.9049926, 46.6514656 ], + [ 8.9052086, 46.6516644 ], + [ 8.9056437, 46.6519878 ], + [ 8.9061029, 46.6522071 ], + [ 8.9066614, 46.652475 ], + [ 8.9070348, 46.6526612 ], + [ 8.907469, 46.6529552 ], + [ 8.9078131, 46.6531439 ], + [ 8.9083381, 46.6533513 ], + [ 8.9088351, 46.6535206 ], + [ 8.9092498, 46.6538124 ], + [ 8.9096945, 46.6541311 ], + [ 8.9099121, 46.6543526 ], + [ 8.9102946, 46.6546943 ], + [ 8.9105559, 46.6549628 ], + [ 8.9106772, 46.6553093 ], + [ 8.9108128, 46.65573 ], + [ 8.9114116, 46.6560663 ], + [ 8.9116158, 46.656007 ], + [ 8.9120735, 46.656019 ], + [ 8.9124629, 46.655924 ], + [ 8.9131846, 46.6560317 ], + [ 8.913507899999999, 46.6559105 ], + [ 8.9145909, 46.6558515 ], + [ 8.9150039, 46.6556662 ], + [ 8.9152312, 46.6553753 ], + [ 8.9159733, 46.6552757 ], + [ 8.9168063, 46.6546801 ], + [ 8.918182, 46.6548152 ], + [ 8.9183854, 46.6550825 ], + [ 8.9194951, 46.6550501 ], + [ 8.9202744, 46.654878 ], + [ 8.9206446, 46.6550351 ], + [ 8.9213293, 46.6552241 ], + [ 8.9230355, 46.6554988 ], + [ 8.9254189, 46.6552158 ], + [ 8.9259513, 46.6555687 ], + [ 8.9263201, 46.6561487 ], + [ 8.9268855, 46.6562763 ], + [ 8.929493, 46.6560622 ], + [ 8.9307588, 46.6560007 ], + [ 8.9317814, 46.6561222 ], + [ 8.9330571, 46.6573651 ], + [ 8.933951, 46.6580282 ], + [ 8.9340166, 46.6580671 ], + [ 8.934323, 46.6582482 ], + [ 8.9357872, 46.6582739 ], + [ 8.9369699, 46.6585103 ], + [ 8.9388024, 46.6586211 ], + [ 8.9395625, 46.6587011 ], + [ 8.9398238, 46.6586977 ], + [ 8.9404675, 46.6583473 ], + [ 8.940923399999999, 46.6582963 ], + [ 8.941049, 46.6581147 ], + [ 8.9414384, 46.6580196 ], + [ 8.9415665, 46.6579279 ], + [ 8.9421514, 46.6578122 ], + [ 8.9425631, 46.6575818 ], + [ 8.9439643, 46.6572215 ], + [ 8.9445125, 46.6571962 ], + [ 8.9450139, 46.6573695 ], + [ 8.9453404, 46.6573652 ], + [ 8.9458275, 46.6574937 ], + [ 8.9465472, 46.6575292 ], + [ 8.9473435, 46.6579685 ], + [ 8.947973, 46.6580501 ], + [ 8.9491587, 46.6583943 ], + [ 8.950208, 46.6585333 ], + [ 8.951025, 46.6587744 ], + [ 8.9518529, 46.6589433 ], + [ 8.9527051, 46.6590399 ], + [ 8.9530421, 46.659207 ], + [ 8.9531294, 46.6592897 ], + [ 8.9534925, 46.6592773 ], + [ 8.9538265, 46.6593034 ], + [ 8.9542193, 46.6593042 ], + [ 8.954676599999999, 46.6592706 ], + [ 8.9551276, 46.6592481 ], + [ 8.955664, 46.6592386 ], + [ 8.9563247, 46.6592097 ], + [ 8.9567869, 46.6591194 ], + [ 8.9573533, 46.6591344 ], + [ 8.9578196, 46.6591886 ], + [ 8.9582512, 46.6591755 ], + [ 8.9589033, 46.65907 ], + [ 8.959449, 46.6589 ], + [ 8.9598062, 46.6587656 ], + [ 8.9604459, 46.6583933 ], + [ 8.9616205, 46.657327 ], + [ 8.96441, 46.6530319 ], + [ 8.9647754, 46.6526695 ], + [ 8.9650815, 46.6522874 ], + [ 8.9652154, 46.6519679 ], + [ 8.9656382, 46.651526 ], + [ 8.9658782, 46.6512935 ], + [ 8.9660337, 46.6511904 ], + [ 8.966238, 46.6511094 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "JBG0016", + "country" : "CHE", + "name" : [ + { + "text" : "Eidgenössisches Jagdbanngebiet Greina", + "lang" : "de-CH" + }, + { + "text" : "District franc fédéral Greina", + "lang" : "fr-CH" + }, + { + "text" : "Bandita federale di caccia Greina", + "lang" : "it-CH" + }, + { + "text" : "Federal Game Reserve Greina", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.4559695, 47.4528223 ], + [ 8.4559614, 47.4526812 ], + [ 8.4559423, 47.4525405 ], + [ 8.4559125, 47.4524007 ], + [ 8.4558719, 47.4522621 ], + [ 8.4558206, 47.4521252 ], + [ 8.4557589, 47.4519903 ], + [ 8.4556868, 47.4518578 ], + [ 8.4556047, 47.451728 ], + [ 8.4555126, 47.4516013 ], + [ 8.4554108, 47.451478 ], + [ 8.4552997, 47.4513585 ], + [ 8.4551795, 47.4512432 ], + [ 8.4550506, 47.4511322 ], + [ 8.4549133, 47.451026 ], + [ 8.454768, 47.4509248 ], + [ 8.4546151, 47.4508289 ], + [ 8.454455, 47.4507385 ], + [ 8.4542882, 47.450654 ], + [ 8.4541151, 47.4505755 ], + [ 8.4539361, 47.4505033 ], + [ 8.4537518, 47.4504375 ], + [ 8.453562699999999, 47.4503783 ], + [ 8.4533693, 47.450326 ], + [ 8.4531721, 47.4502805 ], + [ 8.452971699999999, 47.4502422 ], + [ 8.4527686, 47.450211 ], + [ 8.4525633, 47.450187 ], + [ 8.4523565, 47.4501704 ], + [ 8.4521487, 47.4501611 ], + [ 8.4519405, 47.4501592 ], + [ 8.4517324, 47.4501648 ], + [ 8.451525, 47.4501777 ], + [ 8.4513189, 47.4501979 ], + [ 8.4511146, 47.4502254 ], + [ 8.4509128, 47.4502602 ], + [ 8.4507139, 47.4503021 ], + [ 8.4505185, 47.4503509 ], + [ 8.450327099999999, 47.4504067 ], + [ 8.4501403, 47.4504691 ], + [ 8.4499586, 47.4505381 ], + [ 8.4497824, 47.4506135 ], + [ 8.4496123, 47.450695 ], + [ 8.4494488, 47.4507824 ], + [ 8.4492922, 47.4508755 ], + [ 8.449143, 47.4509741 ], + [ 8.4490016, 47.4510778 ], + [ 8.4488684, 47.4511864 ], + [ 8.4487437, 47.4512995 ], + [ 8.448628, 47.451417 ], + [ 8.4485214, 47.4515384 ], + [ 8.4484244, 47.4516634 ], + [ 8.4483372, 47.4517916 ], + [ 8.44826, 47.4519228 ], + [ 8.448193, 47.4520566 ], + [ 8.4481364, 47.4521925 ], + [ 8.4480904, 47.4523303 ], + [ 8.4480551, 47.4524695 ], + [ 8.4480306, 47.4526098 ], + [ 8.4480169, 47.4527508 ], + [ 8.4480141, 47.452892 ], + [ 8.4480223, 47.4530332 ], + [ 8.4480413, 47.4531738 ], + [ 8.4480711, 47.4533136 ], + [ 8.4481117, 47.4534522 ], + [ 8.4481629, 47.4535891 ], + [ 8.4482246, 47.453724 ], + [ 8.4482967, 47.4538566 ], + [ 8.4483788, 47.4539864 ], + [ 8.4484709, 47.4541131 ], + [ 8.4485726, 47.4542363 ], + [ 8.4486837, 47.4543558 ], + [ 8.4488039, 47.4544712 ], + [ 8.4489328, 47.4545822 ], + [ 8.4490701, 47.4546884 ], + [ 8.4492154, 47.4547896 ], + [ 8.4493683, 47.4548855 ], + [ 8.4495284, 47.4549759 ], + [ 8.4496953, 47.4550604 ], + [ 8.4498684, 47.4551389 ], + [ 8.4500474, 47.4552112 ], + [ 8.4502317, 47.455277 ], + [ 8.4504208, 47.4553361 ], + [ 8.4506142, 47.4553885 ], + [ 8.4508114, 47.4554339 ], + [ 8.4510119, 47.4554723 ], + [ 8.451215, 47.4555035 ], + [ 8.4514203, 47.4555275 ], + [ 8.4516271, 47.4555441 ], + [ 8.4518349, 47.4555533 ], + [ 8.4520432, 47.4555552 ], + [ 8.4522513, 47.4555497 ], + [ 8.4524587, 47.4555368 ], + [ 8.4526648, 47.4555165 ], + [ 8.4528691, 47.455489 ], + [ 8.453071, 47.4554543 ], + [ 8.4532699, 47.4554124 ], + [ 8.4534653, 47.4553635 ], + [ 8.4536567, 47.4553078 ], + [ 8.4538435, 47.4552453 ], + [ 8.4540252, 47.4551763 ], + [ 8.4542014, 47.455101 ], + [ 8.4543715, 47.4550194 ], + [ 8.4545351, 47.454932 ], + [ 8.4546917, 47.4548389 ], + [ 8.4548409, 47.4547403 ], + [ 8.4549823, 47.4546366 ], + [ 8.4551155, 47.454528 ], + [ 8.4552401, 47.4544148 ], + [ 8.4553559, 47.4542974 ], + [ 8.4554624, 47.454176 ], + [ 8.4555594, 47.454051 ], + [ 8.4556466, 47.4539227 ], + [ 8.4557238, 47.4537915 ], + [ 8.4557908, 47.4536578 ], + [ 8.4558473, 47.4535218 ], + [ 8.4558933, 47.453384 ], + [ 8.4559286, 47.4532448 ], + [ 8.4559531, 47.4531045 ], + [ 8.4559668, 47.4529636 ], + [ 8.4559695, 47.4528223 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0093", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Regensdorf", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Regensdorf", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Regensdorf", + "lang" : "it-CH" + }, + { + "text" : "Substation Regensdorf", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8245704, 47.4599664 ], + [ 7.8250172, 47.4599865 ], + [ 7.8253321, 47.4600092 ], + [ 7.8255868, 47.4600451 ], + [ 7.8259194, 47.4601188 ], + [ 7.826161, 47.4601323 ], + [ 7.8265464, 47.4601856 ], + [ 7.826621, 47.4601691 ], + [ 7.8267322, 47.4600519 ], + [ 7.8268815, 47.4599179 ], + [ 7.8270558999999995, 47.459751 ], + [ 7.8270973, 47.4596842 ], + [ 7.8271026, 47.4596677 ], + [ 7.827107, 47.459651 ], + [ 7.8271106, 47.4596343 ], + [ 7.8271134, 47.4596175 ], + [ 7.8271154, 47.4596006 ], + [ 7.8271166, 47.4595838 ], + [ 7.8271169, 47.4595668 ], + [ 7.8271163999999995, 47.45955 ], + [ 7.8271151, 47.4595331 ], + [ 7.827113, 47.4595162 ], + [ 7.8271101, 47.4594994 ], + [ 7.8270745, 47.4594321 ], + [ 7.8269722999999995, 47.459451 ], + [ 7.8269094, 47.4593991 ], + [ 7.8261402, 47.4595349 ], + [ 7.8252536, 47.4596801 ], + [ 7.8247003, 47.4598454 ], + [ 7.8245704, 47.4599664 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns304", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Neumatt", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Neumatt", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Neumatt", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Neumatt", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8846733, 47.4137568 ], + [ 7.8846187, 47.4136539 ], + [ 7.8845877, 47.4135211 ], + [ 7.884558, 47.4133936 ], + [ 7.8846018, 47.4133667 ], + [ 7.8846938, 47.4133011 ], + [ 7.8847274, 47.4132011 ], + [ 7.8847372, 47.4130974 ], + [ 7.8844003, 47.4128837 ], + [ 7.8839924, 47.4126081 ], + [ 7.8837625, 47.4125102 ], + [ 7.8835804, 47.4124512 ], + [ 7.8836034, 47.4125508 ], + [ 7.8836979, 47.4127573 ], + [ 7.8837341, 47.412829 ], + [ 7.8837779, 47.4129414 ], + [ 7.8838065, 47.4130378 ], + [ 7.8838607, 47.4131425 ], + [ 7.8838918, 47.4132087 ], + [ 7.8839418, 47.4132698 ], + [ 7.8839717, 47.4133147 ], + [ 7.8839909, 47.4134063 ], + [ 7.8840242, 47.4134591 ], + [ 7.8840667, 47.4135995 ], + [ 7.8841000999999995, 47.4136664 ], + [ 7.884119, 47.41369 ], + [ 7.8841375, 47.4137171 ], + [ 7.8841825, 47.4137404 ], + [ 7.8843071, 47.4137573 ], + [ 7.8843977, 47.4137664 ], + [ 7.8846733, 47.4137568 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns127", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Mapprach - Hofmatt", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Mapprach - Hofmatt", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Mapprach - Hofmatt", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Mapprach - Hofmatt", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.7584041, 46.5116623 ], + [ 8.7582575, 46.5093097 ], + [ 8.7579328, 46.5069657 ], + [ 8.7574309, 46.5046365 ], + [ 8.7567532, 46.5023287 ], + [ 8.7559015, 46.5000486 ], + [ 8.7548783, 46.4978023 ], + [ 8.7536864, 46.4955961 ], + [ 8.752329, 46.4934359 ], + [ 8.7508099, 46.4913278 ], + [ 8.7491332, 46.4892775 ], + [ 8.7473036, 46.4872905 ], + [ 8.7453261, 46.4853724 ], + [ 8.7432061, 46.4835283 ], + [ 8.7409494, 46.4817634 ], + [ 8.7385623, 46.4800824 ], + [ 8.7360512, 46.47849 ], + [ 8.7334231, 46.4769904 ], + [ 8.7306851, 46.4755879 ], + [ 8.7278448, 46.4742863 ], + [ 8.7249099, 46.473089 ], + [ 8.7218884, 46.4719994 ], + [ 8.7187887, 46.4710205 ], + [ 8.7156191, 46.470155 ], + [ 8.7123885, 46.4694051 ], + [ 8.7091055, 46.468773 ], + [ 8.7057792, 46.4682604 ], + [ 8.702418699999999, 46.4678687 ], + [ 8.6990332, 46.4675989 ], + [ 8.6956319, 46.4674518 ], + [ 8.6922241, 46.4674279 ], + [ 8.6888192, 46.467527 ], + [ 8.6854265, 46.4677491 ], + [ 8.6820551, 46.4680935 ], + [ 8.6787145, 46.4685592 ], + [ 8.6754136, 46.469145 ], + [ 8.6721615, 46.4698492 ], + [ 8.6689671, 46.47067 ], + [ 8.6658392, 46.4716051 ], + [ 8.6627863, 46.472652 ], + [ 8.6598167, 46.4738077 ], + [ 8.6569386, 46.4750691 ], + [ 8.6541599, 46.4764328 ], + [ 8.6514881, 46.477895 ], + [ 8.6489306, 46.4794518 ], + [ 8.6464945, 46.4810989 ], + [ 8.6441863, 46.4828317 ], + [ 8.6420124, 46.4846455 ], + [ 8.6399788, 46.4865355 ], + [ 8.638091, 46.4884963 ], + [ 8.6363542, 46.4905226 ], + [ 8.6347732, 46.4926089 ], + [ 8.6333524, 46.4947495 ], + [ 8.6320957, 46.4969385 ], + [ 8.6310064, 46.4991699 ], + [ 8.6300877, 46.5014376 ], + [ 8.6293421, 46.5037354 ], + [ 8.6287715, 46.506057 ], + [ 8.6283777, 46.508396 ], + [ 8.6281617, 46.5107461 ], + [ 8.6281241, 46.5131007 ], + [ 8.6282651, 46.5154535 ], + [ 8.6285842, 46.5177979 ], + [ 8.6290807, 46.5201276 ], + [ 8.6297532, 46.5224362 ], + [ 8.6305999, 46.5247173 ], + [ 8.6316184, 46.5269647 ], + [ 8.6328061, 46.5291722 ], + [ 8.6341596, 46.5313337 ], + [ 8.635675299999999, 46.5334434 ], + [ 8.637349, 46.5354954 ], + [ 8.6391762, 46.5374841 ], + [ 8.6411519, 46.5394041 ], + [ 8.6432706, 46.5412501 ], + [ 8.6455265, 46.5430169 ], + [ 8.6479135, 46.5446999 ], + [ 8.6504251, 46.5462943 ], + [ 8.6530543, 46.5477957 ], + [ 8.655793899999999, 46.5492001 ], + [ 8.6586364, 46.5505035 ], + [ 8.6615741, 46.5517025 ], + [ 8.6645988, 46.5527937 ], + [ 8.6677022, 46.553774 ], + [ 8.6708759, 46.5546409 ], + [ 8.6741111, 46.555392 ], + [ 8.6773989, 46.5560251 ], + [ 8.6807303, 46.5565385 ], + [ 8.684096199999999, 46.5569309 ], + [ 8.6874872, 46.5572011 ], + [ 8.6908941, 46.5573484 ], + [ 8.6943075, 46.5573724 ], + [ 8.6977181, 46.5572731 ], + [ 8.7011164, 46.5570506 ], + [ 8.7044932, 46.5567057 ], + [ 8.7078391, 46.5562392 ], + [ 8.7111449, 46.5556525 ], + [ 8.7144017, 46.5549472 ], + [ 8.7176003, 46.5541251 ], + [ 8.7207321, 46.5531886 ], + [ 8.7237885, 46.5521402 ], + [ 8.726761, 46.5509828 ], + [ 8.7296415, 46.5497196 ], + [ 8.7324221, 46.5483541 ], + [ 8.7350951, 46.5468899 ], + [ 8.7376533, 46.5453312 ], + [ 8.7400896, 46.5436822 ], + [ 8.7423973, 46.5419475 ], + [ 8.7445701, 46.5401317 ], + [ 8.7466021, 46.5382399 ], + [ 8.7484877, 46.5362773 ], + [ 8.7502217, 46.5342492 ], + [ 8.7517995, 46.5321613 ], + [ 8.7532166, 46.5300193 ], + [ 8.754469199999999, 46.5278289 ], + [ 8.7555539, 46.5255964 ], + [ 8.7564678, 46.5233276 ], + [ 8.7572083, 46.521029 ], + [ 8.7577735, 46.5187068 ], + [ 8.7581618, 46.5163673 ], + [ 8.7583722, 46.514017 ], + [ 8.7584041, 46.5116623 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSPM001", + "country" : "CHE", + "name" : [ + { + "text" : "LSPM Ambri Airport", + "lang" : "de-CH" + }, + { + "text" : "LSPM Ambri Airport", + "lang" : "fr-CH" + }, + { + "text" : "LSPM Ambri Airport", + "lang" : "it-CH" + }, + { + "text" : "LSPM Ambri Airport", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "HELI REZIA SA", + "lang" : "de-CH" + }, + { + "text" : "HELI REZIA SA", + "lang" : "fr-CH" + }, + { + "text" : "HELI REZIA SA", + "lang" : "it-CH" + }, + { + "text" : "HELI REZIA SA", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Capo d'aerodromo", + "lang" : "de-CH" + }, + { + "text" : "Capo d'aerodromo", + "lang" : "fr-CH" + }, + { + "text" : "Capo d'aerodromo", + "lang" : "it-CH" + }, + { + "text" : "Capo d'aerodromo", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.helirezia.ch/", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.0245787, 47.477941 ], + [ 9.0245822, 47.4779398 ], + [ 9.0245858, 47.4779388 ], + [ 9.0245895, 47.477938 ], + [ 9.0245933, 47.4779373 ], + [ 9.0245972, 47.4779368 ], + [ 9.024601, 47.4779364 ], + [ 9.0246049, 47.4779362 ], + [ 9.0246089, 47.4779362 ], + [ 9.0246128, 47.4779364 ], + [ 9.0246166, 47.4779367 ], + [ 9.0246205, 47.4779372 ], + [ 9.0246243, 47.4779378 ], + [ 9.024628, 47.4779387 ], + [ 9.0246316, 47.4779396 ], + [ 9.025366, 47.4781867 ], + [ 9.0254582, 47.4782164 ], + [ 9.0256733, 47.478282 ], + [ 9.0259131, 47.4783505 ], + [ 9.0261662, 47.4784145 ], + [ 9.0262938, 47.4784428 ], + [ 9.0262959, 47.4784385 ], + [ 9.0264233, 47.4784667 ], + [ 9.0269215, 47.4785684 ], + [ 9.0270486, 47.4785961 ], + [ 9.0272414, 47.4786429 ], + [ 9.0273465, 47.4786709 ], + [ 9.0273571, 47.4786739 ], + [ 9.0273676, 47.478677 ], + [ 9.0273782, 47.4786802 ], + [ 9.0273887, 47.4786834 ], + [ 9.0273991, 47.4786867 ], + [ 9.0274095, 47.4786901 ], + [ 9.0274199, 47.4786935 ], + [ 9.0274302, 47.4786969 ], + [ 9.0274405, 47.4787004 ], + [ 9.0274508, 47.478704 ], + [ 9.027461, 47.4787076 ], + [ 9.0274711, 47.4787113 ], + [ 9.0274812, 47.478715 ], + [ 9.0274913, 47.4787188 ], + [ 9.0277206, 47.4787891 ], + [ 9.0277756, 47.4788091 ], + [ 9.027811, 47.478819 ], + [ 9.0278787, 47.478841 ], + [ 9.0278676, 47.4788574 ], + [ 9.0278414, 47.4788961 ], + [ 9.0273924, 47.478943 ], + [ 9.0271249, 47.4789709 ], + [ 9.0269702, 47.478987 ], + [ 9.0268574, 47.4789985 ], + [ 9.0265898, 47.4790258 ], + [ 9.0262883, 47.4790565 ], + [ 9.0260159, 47.4790842 ], + [ 9.0259909, 47.478993 ], + [ 9.0258569, 47.4790285 ], + [ 9.0257782, 47.4787199 ], + [ 9.0255251, 47.478806 ], + [ 9.025231, 47.478922 ], + [ 9.0249841, 47.4790597 ], + [ 9.0249748, 47.4791382 ], + [ 9.0249595, 47.4792664 ], + [ 9.025102, 47.4799029 ], + [ 9.0253564, 47.4798664 ], + [ 9.0257433, 47.4798422 ], + [ 9.0257496, 47.4798597 ], + [ 9.0259573, 47.4804391 ], + [ 9.0260576, 47.4808355 ], + [ 9.0260722, 47.4809445 ], + [ 9.0261226, 47.4813209 ], + [ 9.0261651, 47.4821107 ], + [ 9.0261816, 47.4821439 ], + [ 9.0262164, 47.4822407 ], + [ 9.0262866, 47.4824361 ], + [ 9.0265995, 47.4838498 ], + [ 9.0267572, 47.4845717 ], + [ 9.027333, 47.4844754 ], + [ 9.0281372, 47.4842596 ], + [ 9.0281287, 47.4842343 ], + [ 9.0285056, 47.4839801 ], + [ 9.0287698, 47.4837817 ], + [ 9.0288961, 47.483691 ], + [ 9.0289801, 47.4836763 ], + [ 9.0290994, 47.4836853 ], + [ 9.0291661, 47.4837142 ], + [ 9.0300904, 47.483817 ], + [ 9.030095, 47.4838023 ], + [ 9.0301194, 47.4838055 ], + [ 9.0302521, 47.483337 ], + [ 9.0305285, 47.4823852 ], + [ 9.0305577, 47.4822861 ], + [ 9.0309007, 47.4811033 ], + [ 9.0310737, 47.480209 ], + [ 9.0313891, 47.480237 ], + [ 9.0314161, 47.4802437 ], + [ 9.0319983, 47.4803872 ], + [ 9.0321407, 47.4804223 ], + [ 9.0322894, 47.4804589 ], + [ 9.0328515, 47.4805971 ], + [ 9.0332373, 47.4806918 ], + [ 9.0332554, 47.4806967 ], + [ 9.0332731, 47.4807022 ], + [ 9.0332903, 47.4807083 ], + [ 9.0333071, 47.480715000000004 ], + [ 9.0333233, 47.4807223 ], + [ 9.0333389, 47.480730199999996 ], + [ 9.0333539, 47.4807386 ], + [ 9.0333677, 47.4807472 ], + [ 9.0333808, 47.4807562 ], + [ 9.0333932, 47.4807657 ], + [ 9.0334049, 47.4807756 ], + [ 9.0334159, 47.4807858 ], + [ 9.033426, 47.4807964 ], + [ 9.0334354, 47.4808074 ], + [ 9.0334441, 47.4808184 ], + [ 9.033452, 47.4808298 ], + [ 9.0334591, 47.4808413 ], + [ 9.0334654, 47.4808531 ], + [ 9.0334708, 47.4808651 ], + [ 9.0334754, 47.4808773 ], + [ 9.0334791, 47.4808895 ], + [ 9.033482, 47.4809019 ], + [ 9.0334839, 47.4809143 ], + [ 9.033485, 47.4809267 ], + [ 9.0334852, 47.4809392 ], + [ 9.0334846, 47.4809516 ], + [ 9.033483, 47.4809641 ], + [ 9.0334806, 47.4809764 ], + [ 9.0337406, 47.4805316 ], + [ 9.033733, 47.4805393 ], + [ 9.0337249, 47.4805468 ], + [ 9.0337161, 47.4805539 ], + [ 9.0337068, 47.4805606 ], + [ 9.0336969, 47.4805671 ], + [ 9.0336865, 47.4805731 ], + [ 9.0336757, 47.4805787 ], + [ 9.033664, 47.480584 ], + [ 9.033652, 47.4805889 ], + [ 9.0336395, 47.4805933 ], + [ 9.0336268, 47.4805972 ], + [ 9.0336137, 47.4806006 ], + [ 9.0336003, 47.4806035 ], + [ 9.0335867, 47.4806059 ], + [ 9.0335732, 47.4806082 ], + [ 9.0335595, 47.4806101 ], + [ 9.0335457, 47.4806117 ], + [ 9.0335319, 47.4806129 ], + [ 9.0335179, 47.4806137 ], + [ 9.033504, 47.4806141 ], + [ 9.03349, 47.4806141 ], + [ 9.0334758, 47.4806138 ], + [ 9.0334616, 47.480613 ], + [ 9.0334474, 47.4806118 ], + [ 9.0334333, 47.4806103 ], + [ 9.0334194, 47.4806083 ], + [ 9.0334055, 47.4806059 ], + [ 9.0333918, 47.4806032 ], + [ 9.0331736, 47.4805497 ], + [ 9.0328612, 47.4804729 ], + [ 9.0327658, 47.4804494 ], + [ 9.0327544, 47.4802832 ], + [ 9.0327538, 47.4801818 ], + [ 9.0327693, 47.4799522 ], + [ 9.0327827, 47.4797395 ], + [ 9.032798, 47.4794937 ], + [ 9.0327989, 47.4794824 ], + [ 9.0317417, 47.4792475 ], + [ 9.0317172, 47.4792979 ], + [ 9.0316947, 47.4794282 ], + [ 9.0316216, 47.4797445 ], + [ 9.0314752, 47.4801237 ], + [ 9.0311147, 47.4800597 ], + [ 9.0308964, 47.4800064 ], + [ 9.030609, 47.4799362 ], + [ 9.030533, 47.4799176 ], + [ 9.0304864, 47.4799056 ], + [ 9.0304399, 47.4798933 ], + [ 9.0303936, 47.4798807 ], + [ 9.0303475, 47.4798679 ], + [ 9.0303016, 47.4798547 ], + [ 9.0302558, 47.4798412 ], + [ 9.0302103, 47.4798274 ], + [ 9.03019, 47.4798211 ], + [ 9.0301697, 47.4798148 ], + [ 9.0301494, 47.4798084 ], + [ 9.0301292, 47.479802 ], + [ 9.030109, 47.4797955 ], + [ 9.0300889, 47.479789 ], + [ 9.0300688, 47.4797823 ], + [ 9.0300328, 47.4797703 ], + [ 9.0299969, 47.4797581 ], + [ 9.0299611, 47.4797456 ], + [ 9.0299255, 47.479733 ], + [ 9.02989, 47.4797203 ], + [ 9.0298547, 47.4797073 ], + [ 9.0298195, 47.4796941 ], + [ 9.0297894, 47.4796827 ], + [ 9.0297595, 47.4796712 ], + [ 9.0297297, 47.4796595 ], + [ 9.0297001, 47.4796477 ], + [ 9.0296705, 47.4796357 ], + [ 9.0296411, 47.4796237 ], + [ 9.0296117, 47.4796115 ], + [ 9.0296157, 47.4796076 ], + [ 9.0294974, 47.4795546 ], + [ 9.0293809, 47.4794974 ], + [ 9.0290987, 47.479351 ], + [ 9.0290588, 47.4793303 ], + [ 9.0285929, 47.4790887 ], + [ 9.02837, 47.4789789 ], + [ 9.0281364, 47.478876 ], + [ 9.0278975, 47.4787816 ], + [ 9.0276503, 47.4786969 ], + [ 9.0276401, 47.4786938 ], + [ 9.0276409, 47.4786919 ], + [ 9.0276352, 47.4786901 ], + [ 9.0276333, 47.4786895 ], + [ 9.0276314, 47.478689 ], + [ 9.0276295, 47.4786884 ], + [ 9.0276276, 47.4786879 ], + [ 9.0276257, 47.4786874 ], + [ 9.0276238, 47.4786869 ], + [ 9.0276218, 47.4786864 ], + [ 9.0276199, 47.4786859 ], + [ 9.0276179, 47.4786855 ], + [ 9.027616, 47.4786851 ], + [ 9.027614, 47.4786846 ], + [ 9.027612, 47.478684200000004 ], + [ 9.02761, 47.4786839 ], + [ 9.0276081, 47.4786835 ], + [ 9.0276026, 47.4786825 ], + [ 9.0273959, 47.4786205 ], + [ 9.0271369, 47.4785538 ], + [ 9.0271007, 47.478546 ], + [ 9.0268775, 47.4784976 ], + [ 9.0267751, 47.478477 ], + [ 9.0266584, 47.4784536 ], + [ 9.0264699, 47.4784139 ], + [ 9.026379, 47.4783947 ], + [ 9.0261039, 47.478332 ], + [ 9.0258346, 47.4782602 ], + [ 9.0255689, 47.4781818 ], + [ 9.0254297, 47.4781378 ], + [ 9.0254045, 47.4781298 ], + [ 9.0246328, 47.4778698 ], + [ 9.0246303, 47.4778686 ], + [ 9.024628, 47.4778672 ], + [ 9.0246258, 47.4778658 ], + [ 9.0246238, 47.4778643 ], + [ 9.0246219, 47.4778626 ], + [ 9.0246202, 47.4778609 ], + [ 9.0246187, 47.4778591 ], + [ 9.0246174, 47.4778572 ], + [ 9.0246163, 47.4778553 ], + [ 9.0246154, 47.4778533 ], + [ 9.0246147, 47.4778513 ], + [ 9.0246142, 47.4778493 ], + [ 9.0246139, 47.4778472 ], + [ 9.0245578, 47.4779532 ], + [ 9.0245599, 47.4779514 ], + [ 9.0245621, 47.4779497 ], + [ 9.0245645, 47.477948 ], + [ 9.024567, 47.4779464 ], + [ 9.0245697, 47.4779449 ], + [ 9.0245724, 47.4779436 ], + [ 9.0245753, 47.4779423 ], + [ 9.0245787, 47.477941 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VBS_21", + "country" : "CHE", + "name" : [ + { + "text" : "VBS_21 Bronschhofen", + "lang" : "de-CH" + }, + { + "text" : "VBS_21 Bronschhofen", + "lang" : "fr-CH" + }, + { + "text" : "VBS_21 Bronschhofen", + "lang" : "it-CH" + }, + { + "text" : "VBS_21 Bronschhofen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "regulationExemption" : "YES", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Eidgenössisches Departement für Verteidigung, Bevölkerungsschutz und Sport (VBS)", + "lang" : "de-CH" + }, + { + "text" : "Département fédéral de la défense, de la protection de la population et des sports (DDPS)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento federale della difesa, della protezione della popolazione e dello sport (DDPS)", + "lang" : "it-CH" + }, + { + "text" : "Federal Department of Defence, Civil Protection and Sport (DDPS)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Lageverfolgungszentrum der Armee LVZ A", + "lang" : "de-CH" + }, + { + "text" : "Centre de suivi de la situation de l’armée, CSS A", + "lang" : "fr-CH" + }, + { + "text" : "Centro di monitoraggio della situazione dell’esercito, Centro mon sit Es", + "lang" : "it-CH" + }, + { + "text" : "Joint Operation Center, JOC", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vtg.admin.ch/en/joint-operations-command", + "email" : "lvz.op@vtg.admin.ch", + "phone" : "+41 58 464 96 43", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.0365839, 46.9066083 ], + [ 9.0364103, 46.9067028 ], + [ 9.03626, 46.9068088 ], + [ 9.0360597, 46.906999 ], + [ 9.0359339, 46.9071277 ], + [ 9.0357257, 46.9073009 ], + [ 9.0356009, 46.9074071 ], + [ 9.0355161, 46.9075644 ], + [ 9.0353909, 46.9076592 ], + [ 9.0352921, 46.9076753 ], + [ 9.0351921, 46.9077592 ], + [ 9.0350918, 46.9078655 ], + [ 9.0349659, 46.9080168 ], + [ 9.0346357, 46.9080877 ], + [ 9.0345015, 46.9082388 ], + [ 9.034408, 46.9084073 ], + [ 9.0342816, 46.908598 ], + [ 9.0341812, 46.9087269 ], + [ 9.0339318, 46.9088941 ], + [ 9.0336666, 46.9089993 ], + [ 9.0335009, 46.9090826 ], + [ 9.0334254, 46.9091666 ], + [ 9.0333008, 46.9092277 ], + [ 9.0330784, 46.9092541 ], + [ 9.0330209, 46.9092763 ], + [ 9.0328957, 46.9093711 ], + [ 9.0328038, 46.9094832 ], + [ 9.0326938, 46.9096459 ], + [ 9.0326576, 46.9098373 ], + [ 9.0326468, 46.9099726 ], + [ 9.0325949, 46.9101583 ], + [ 9.0324829, 46.9104225 ], + [ 9.0324557, 46.9105858 ], + [ 9.0322475, 46.9107308 ], + [ 9.0321069, 46.9108031 ], + [ 9.0319973, 46.9109262 ], + [ 9.031847, 46.9110885 ], + [ 9.0316874, 46.9112679 ], + [ 9.0315452, 46.9113964 ], + [ 9.0312875, 46.9115917 ], + [ 9.0311612, 46.9117599 ], + [ 9.0310761, 46.9119059 ], + [ 9.0309429, 46.9120346 ], + [ 9.0307187, 46.912168199999996 ], + [ 9.0305998, 46.9123647 ], + [ 9.0305631, 46.9125675 ], + [ 9.030504, 46.9127023 ], + [ 9.0303862, 46.9128255 ], + [ 9.0302373, 46.9128976 ], + [ 9.0300127, 46.9130424 ], + [ 9.0298873, 46.9131598 ], + [ 9.0296881, 46.913305 ], + [ 9.0295049, 46.9134389 ], + [ 9.0293302, 46.9135502 ], + [ 9.029139, 46.9136616 ], + [ 9.0289821, 46.9137111 ], + [ 9.0288072, 46.9138451 ], + [ 9.0286477, 46.91403 ], + [ 9.0285202, 46.9142714 ], + [ 9.0282628, 46.9144443 ], + [ 9.0281295, 46.9145447 ], + [ 9.0279451, 46.9147182 ], + [ 9.0277795, 46.9148071 ], + [ 9.0277215, 46.9148461 ], + [ 9.027638, 46.9149074 ], + [ 9.0275286, 46.9150363 ], + [ 9.0274525, 46.9151542 ], + [ 9.0273677, 46.9153114 ], + [ 9.027275, 46.9154516 ], + [ 9.0271583, 46.9155297 ], + [ 9.0270431, 46.9155739 ], + [ 9.026828, 46.9156286 ], + [ 9.0265636, 46.9157055 ], + [ 9.0262834, 46.9157483 ], + [ 9.0259129, 46.9158189 ], + [ 9.0255744, 46.9158895 ], + [ 9.0252857, 46.9159774 ], + [ 9.0250211, 46.9160487 ], + [ 9.0248635, 46.916132 ], + [ 9.0246242, 46.9161977 ], + [ 9.0243838, 46.9163087 ], + [ 9.024242, 46.916426 ], + [ 9.0240762, 46.9165093 ], + [ 9.023796, 46.9165803 ], + [ 9.0234005, 46.9166394 ], + [ 9.0228894, 46.9167256 ], + [ 9.0224434, 46.9168517 ], + [ 9.0218638, 46.9170953 ], + [ 9.0213096, 46.9173109 ], + [ 9.021192, 46.9174678 ], + [ 9.0211889, 46.9176426 ], + [ 9.0211285, 46.9177944 ], + [ 9.0209547, 46.917855 ], + [ 9.0207715, 46.917989 ], + [ 9.0206542, 46.918129 ], + [ 9.0204379, 46.9182515 ], + [ 9.0200661, 46.9183894 ], + [ 9.0197184, 46.9185108 ], + [ 9.019339, 46.9186148 ], + [ 9.0190902, 46.9187483 ], + [ 9.0189149, 46.9188992 ], + [ 9.018870100000001, 46.9191074 ], + [ 9.0188097, 46.9192311 ], + [ 9.0185947, 46.919314 ], + [ 9.0184225, 46.9192901 ], + [ 9.0182433, 46.9192266 ], + [ 9.0180779, 46.9192647 ], + [ 9.0179285, 46.9193482 ], + [ 9.0176878, 46.9194817 ], + [ 9.0174144, 46.919643 ], + [ 9.0171729, 46.9198047 ], + [ 9.0169083, 46.919904 ], + [ 9.0166765, 46.9199756 ], + [ 9.0164878, 46.9199797 ], + [ 9.0162585, 46.9199383 ], + [ 9.0160546, 46.919869 ], + [ 9.015858, 46.919828 ], + [ 9.0156604, 46.9198321 ], + [ 9.015397, 46.9198639 ], + [ 9.0150592, 46.9199288 ], + [ 9.0147537, 46.9200054 ], + [ 9.0144637, 46.9201102 ], + [ 9.0142398, 46.920255 ], + [ 9.01413, 46.9204007 ], + [ 9.0140869, 46.9205245 ], + [ 9.0140173, 46.920727 ], + [ 9.0139983, 46.9208904 ], + [ 9.0139382, 46.9210253 ], + [ 9.0138537, 46.9211374 ], + [ 9.0137372, 46.9212211 ], + [ 9.0136383, 46.9212372 ], + [ 9.0135152, 46.9212362 ], + [ 9.0133343, 46.921223499999996 ], + [ 9.0131285, 46.9212331 ], + [ 9.0129401, 46.9212148 ], + [ 9.0127178, 46.9212468 ], + [ 9.0125029, 46.9213353 ], + [ 9.0123116, 46.9214465 ], + [ 9.0121283, 46.921603 ], + [ 9.011886, 46.9217928 ], + [ 9.01171, 46.9219774 ], + [ 9.0115918, 46.9221458 ], + [ 9.0114744, 46.9222857 ], + [ 9.0113736, 46.9224316 ], + [ 9.0112711, 46.9226564 ], + [ 9.0112189, 46.9228083 ], + [ 9.0111095, 46.9229428 ], + [ 9.0110174, 46.9230209 ], + [ 9.0109827, 46.9231222 ], + [ 9.0109804, 46.9232687 ], + [ 9.0109451, 46.9234095 ], + [ 9.0107372, 46.923515 ], + [ 9.0106043, 46.9235985 ], + [ 9.0104542, 46.9237157 ], + [ 9.0102797, 46.9238101 ], + [ 9.0100387, 46.9239605 ], + [ 9.0098476, 46.9241057 ], + [ 9.0097882, 46.9242067 ], + [ 9.009744, 46.924352999999996 ], + [ 9.0096856, 46.9244314 ], + [ 9.0095862, 46.9244589 ], + [ 9.009412, 46.9245363 ], + [ 9.0092625, 46.9246142 ], + [ 9.0091789, 46.9247318 ], + [ 9.0091183, 46.924878 ], + [ 9.0090182, 46.9249618 ], + [ 9.0089095, 46.9250625 ], + [ 9.0087857, 46.9250953 ], + [ 9.008571, 46.9251612 ], + [ 9.008569, 46.9252627 ], + [ 9.0084854, 46.9253523 ], + [ 9.0083769, 46.9254304 ], + [ 9.0082681, 46.9255254 ], + [ 9.0081344, 46.9256428 ], + [ 9.0080098, 46.9257321 ], + [ 9.0078919, 46.9258833 ], + [ 9.0078003, 46.9259784 ], + [ 9.0076921, 46.9260114 ], + [ 9.0075921, 46.9261009 ], + [ 9.0075298, 46.9263541 ], + [ 9.0074634, 46.9264156 ], + [ 9.0073956, 46.926511 ], + [ 9.0072955, 46.926623 ], + [ 9.0071459, 46.9267007 ], + [ 9.00694, 46.9267329 ], + [ 9.0066418, 46.9268376 ], + [ 9.0063594, 46.9270046 ], + [ 9.0062172, 46.9271388 ], + [ 9.0061566, 46.9273131 ], + [ 9.0061469, 46.9274032 ], + [ 9.0060465, 46.9274757 ], + [ 9.0058727, 46.9275703 ], + [ 9.0056562, 46.9277151 ], + [ 9.0053572, 46.9279045 ], + [ 9.0055176, 46.9280862 ], + [ 9.0056793, 46.9282285 ], + [ 9.0058506, 46.9283314 ], + [ 9.0060948, 46.9284292 ], + [ 9.0064301, 46.9285277 ], + [ 9.0066838, 46.9286144 ], + [ 9.006946, 46.9286559 ], + [ 9.0072818, 46.928715 ], + [ 9.00756, 46.928768 ], + [ 9.0077969, 46.9288432 ], + [ 9.0080176, 46.9289239 ], + [ 9.008319, 46.9290674 ], + [ 9.0087825, 46.9293418 ], + [ 9.0100987, 46.9301418 ], + [ 9.0104155, 46.9303642 ], + [ 9.0107072, 46.9305696 ], + [ 9.0109422, 46.9307745 ], + [ 9.0111526, 46.930951 ], + [ 9.0112574, 46.9310815 ], + [ 9.0113694, 46.9312346 ], + [ 9.0115282, 46.9315292 ], + [ 9.0125632, 46.9333758 ], + [ 9.0126265, 46.9335173 ], + [ 9.0126664, 46.933591 ], + [ 9.0127147, 46.9336421 ], + [ 9.0138175, 46.9349141 ], + [ 9.0141038, 46.9349897 ], + [ 9.0144066, 46.935071 ], + [ 9.014856, 46.9352213 ], + [ 9.0151902, 46.9353367 ], + [ 9.0155404, 46.93552 ], + [ 9.0160213, 46.9357663 ], + [ 9.0163869, 46.9360004 ], + [ 9.016573, 46.9361598 ], + [ 9.0167589, 46.9363135 ], + [ 9.0169112, 46.9365233 ], + [ 9.0170311, 46.9367217 ], + [ 9.0171907, 46.9369823 ], + [ 9.0184047, 46.9389601 ], + [ 9.0187335, 46.9394195 ], + [ 9.0189739, 46.9397203 ], + [ 9.0191503, 46.939998 ], + [ 9.0193823, 46.9403212 ], + [ 9.0195261, 46.9405762 ], + [ 9.0197512, 46.9408599 ], + [ 9.0223213, 46.9437393 ], + [ 9.0243955, 46.9426899 ], + [ 9.0262488, 46.9424731 ], + [ 9.026509, 46.9426388 ], + [ 9.0267119, 46.9427813 ], + [ 9.0269064, 46.9429182 ], + [ 9.0270188, 46.9430544 ], + [ 9.0271791, 46.9432812 ], + [ 9.0272591, 46.9434342 ], + [ 9.0272964, 46.9436374 ], + [ 9.0272923, 46.9438629 ], + [ 9.0273389, 46.9440213 ], + [ 9.0275082, 46.9442199 ], + [ 9.0277662, 46.9444757 ], + [ 9.0279704, 46.9445506 ], + [ 9.0281765, 46.944524 ], + [ 9.028391, 46.9445032 ], + [ 9.0285391, 46.9444592 ], + [ 9.0285923, 46.9442848 ], + [ 9.0311197, 46.9472821 ], + [ 9.0314091, 46.9476567 ], + [ 9.0316337, 46.9479742 ], + [ 9.0317862, 46.9481614 ], + [ 9.0391121, 46.9560063 ], + [ 9.0388649, 46.9560608 ], + [ 9.0387466, 46.9562234 ], + [ 9.0386597, 46.9565046 ], + [ 9.0385553, 46.956831 ], + [ 9.0388796, 46.957076 ], + [ 9.0389345, 46.9572117 ], + [ 9.039022, 46.9573928 ], + [ 9.0391247, 46.9576136 ], + [ 9.0391792, 46.9577889 ], + [ 9.0392595, 46.9579192 ], + [ 9.0393475, 46.9580327 ], + [ 9.0395263, 46.9581637 ], + [ 9.0396473, 46.9583112 ], + [ 9.0397423, 46.9585206 ], + [ 9.0397157, 46.9586219 ], + [ 9.0396157, 46.9586832 ], + [ 9.0394993, 46.9587725 ], + [ 9.0393584, 46.9588392 ], + [ 9.039185, 46.9588659 ], + [ 9.0389951, 46.9589152 ], + [ 9.0390079, 46.9590959 ], + [ 9.0392065, 46.9590636 ], + [ 9.0393866, 46.9590706 ], + [ 9.0395435, 46.9590718 ], + [ 9.0397501, 46.9590056 ], + [ 9.0399325, 46.9589225 ], + [ 9.039931, 46.9590127 ], + [ 9.0398956, 46.9591478 ], + [ 9.0398522, 46.9592602 ], + [ 9.0397039, 46.9592985 ], + [ 9.0395702, 46.959416 ], + [ 9.0393964, 46.9594824 ], + [ 9.0392228, 46.9595261 ], + [ 9.0391959, 46.9596443 ], + [ 9.0391596, 46.9598301 ], + [ 9.0391819, 46.9599995 ], + [ 9.0392923, 46.9602316 ], + [ 9.0394939, 46.9604644 ], + [ 9.0398596, 46.9607209 ], + [ 9.0402743, 46.9609666 ], + [ 9.0402317, 46.9610791 ], + [ 9.0402618, 46.961209 ], + [ 9.0403893, 46.9614356 ], + [ 9.0415408, 46.9632773 ], + [ 9.0418295, 46.9637024 ], + [ 9.042038, 46.9640029 ], + [ 9.04217, 46.9644607 ], + [ 9.042383, 46.9649643 ], + [ 9.0426478, 46.9653611 ], + [ 9.0422116, 46.9653859 ], + [ 9.0418246, 46.9654111 ], + [ 9.0413288, 46.9655314 ], + [ 9.0408646, 46.9657477 ], + [ 9.043994, 46.9692062 ], + [ 9.0441587, 46.9692186 ], + [ 9.0442644, 46.9692928 ], + [ 9.0444167, 46.969497 ], + [ 9.0447146, 46.9698714 ], + [ 9.0449738, 46.9701047 ], + [ 9.0452884, 46.9704342 ], + [ 9.0457813, 46.9709285 ], + [ 9.0459427, 46.9711047 ], + [ 9.0460887, 46.9712355 ], + [ 9.0461442, 46.97136 ], + [ 9.0461671, 46.9714673 ], + [ 9.0462226, 46.9715918 ], + [ 9.0462864, 46.9716656 ], + [ 9.0464165, 46.9717851 ], + [ 9.0466908, 46.972086 ], + [ 9.0469887, 46.9724323 ], + [ 9.0471588, 46.972597 ], + [ 9.0473681, 46.9728356 ], + [ 9.0474634, 46.973028 ], + [ 9.0477046, 46.9733457 ], + [ 9.0479717, 46.9736241 ], + [ 9.0481735, 46.9738342 ], + [ 9.0483082, 46.9741342 ], + [ 9.0485303, 46.9746096 ], + [ 9.0487005, 46.9751917 ], + [ 9.049549, 46.9751023 ], + [ 9.0499695, 46.9750717 ], + [ 9.0505609, 46.9751213 ], + [ 9.0510618, 46.9751421 ], + [ 9.0513822, 46.9751671 ], + [ 9.0517844, 46.9752097 ], + [ 9.0520472, 46.9752342 ], + [ 9.0522209, 46.9752186 ], + [ 9.0526005, 46.9751369 ], + [ 9.052847, 46.9751388 ], + [ 9.0530031, 46.9751399 ], + [ 9.0531757, 46.9751413 ], + [ 9.053332, 46.9751481 ], + [ 9.0534563, 46.9751039 ], + [ 9.0536384, 46.9750376 ], + [ 9.0537958, 46.9749712 ], + [ 9.0539948, 46.9748711 ], + [ 9.0541524, 46.9748102 ], + [ 9.0543262, 46.974744 ], + [ 9.0544672, 46.9746773 ], + [ 9.054692, 46.9745324 ], + [ 9.0548574, 46.9744604 ], + [ 9.0551446, 46.974502 ], + [ 9.0553993, 46.9745039 ], + [ 9.0554306, 46.9746169 ], + [ 9.0554538, 46.9747018 ], + [ 9.0555427, 46.9747926 ], + [ 9.0556072, 46.9748609 ], + [ 9.0556635, 46.9749571 ], + [ 9.055777, 46.9750426 ], + [ 9.0558663, 46.9751166 ], + [ 9.0559717, 46.9751793 ], + [ 9.0560277, 46.9752644 ], + [ 9.0561073, 46.9754511 ], + [ 9.056219, 46.9756437 ], + [ 9.0563551, 46.9758252 ], + [ 9.0565952, 46.9762387 ], + [ 9.057011, 46.9769242 ], + [ 9.0572264, 46.9773093 ], + [ 9.0574571, 46.9782302 ], + [ 9.0575053, 46.9783039 ], + [ 9.0576182, 46.9784232 ], + [ 9.0578134, 46.9785488 ], + [ 9.0579598, 46.9786344 ], + [ 9.0582284, 46.9788225 ], + [ 9.058407, 46.9789423 ], + [ 9.0584295, 46.9790892 ], + [ 9.0583451, 46.9791788 ], + [ 9.0581716, 46.9792563 ], + [ 9.0579392, 46.9793674 ], + [ 9.0577971, 46.9795073 ], + [ 9.057721, 46.9796251 ], + [ 9.0577594, 46.9797551 ], + [ 9.0578479, 46.9798574 ], + [ 9.0579784, 46.9799316 ], + [ 9.0581576, 46.9800457 ], + [ 9.0585255, 46.9802008 ], + [ 9.0588591, 46.9803669 ], + [ 9.0592101, 46.9805613 ], + [ 9.0594622, 46.9806928 ], + [ 9.0596002, 46.9808292 ], + [ 9.0596801, 46.9809426 ], + [ 9.0597111, 46.9810726 ], + [ 9.0597494, 46.9812252 ], + [ 9.0598215, 46.9813272 ], + [ 9.0599186, 46.9814407 ], + [ 9.0600489, 46.9815375 ], + [ 9.060292, 46.9817254 ], + [ 9.0604873, 46.981851 ], + [ 9.06078, 46.9820506 ], + [ 9.060926, 46.9821757 ], + [ 9.0611122, 46.9823577 ], + [ 9.0612495, 46.9824939 ], + [ 9.0613624, 46.9826415 ], + [ 9.0614657, 46.9828509 ], + [ 9.0616017, 46.9830549 ], + [ 9.0617378, 46.9832645 ], + [ 9.0618824, 46.9834519 ], + [ 9.0620607, 46.9836166 ], + [ 9.062272, 46.9837818 ], + [ 9.0624987, 46.9839696 ], + [ 9.0622847, 46.9839849 ], + [ 9.0621701, 46.9839727 ], + [ 9.0619978, 46.9839545 ], + [ 9.0617589, 46.9839358 ], + [ 9.061488, 46.9839169 ], + [ 9.0612083, 46.9839316 ], + [ 9.0610259, 46.9839867 ], + [ 9.0609175, 46.9840704 ], + [ 9.0607846, 46.9841598 ], + [ 9.0606333, 46.9843447 ], + [ 9.060498, 46.9845466 ], + [ 9.0604043, 46.9847602 ], + [ 9.0603097, 46.9850021 ], + [ 9.0608852, 46.9850121 ], + [ 9.0614109, 46.9850329 ], + [ 9.06174, 46.9850467 ], + [ 9.0620776, 46.9850436 ], + [ 9.0624547, 46.9850971 ], + [ 9.0627578, 46.9851727 ], + [ 9.0630278, 46.9852706 ], + [ 9.0633212, 46.9854364 ], + [ 9.0635407, 46.9856016 ], + [ 9.0637505, 46.9858005 ], + [ 9.0639363, 46.9860218 ], + [ 9.064072, 46.9862428 ], + [ 9.0641902, 46.9865369 ], + [ 9.0642336, 46.9869094 ], + [ 9.0644773, 46.9890147 ], + [ 9.0645009, 46.9895506 ], + [ 9.0645394, 46.9897088 ], + [ 9.0646506, 46.989907 ], + [ 9.0648036, 46.9901281 ], + [ 9.064973, 46.9903211 ], + [ 9.0652326, 46.9905374 ], + [ 9.0654927, 46.9907141 ], + [ 9.0657125, 46.9908623 ], + [ 9.0658819, 46.9910272 ], + [ 9.0660282, 46.9911636 ], + [ 9.0662475, 46.991295 ], + [ 9.0665665, 46.9914326 ], + [ 9.0669092, 46.9915706 ], + [ 9.0672368, 46.991669 ], + [ 9.0676303, 46.9917452 ], + [ 9.0679263, 46.9917756 ], + [ 9.0684109, 46.9917961 ], + [ 9.0688392, 46.9917993 ], + [ 9.0692499, 46.9918193 ], + [ 9.0695708, 46.9918329 ], + [ 9.0701404, 46.9907827 ], + [ 9.0762967, 46.9920803 ], + [ 9.0764051, 46.9920246 ], + [ 9.0765707, 46.9919582 ], + [ 9.0768427, 46.9919321 ], + [ 9.0770154, 46.9919333 ], + [ 9.0772783, 46.9919578 ], + [ 9.077606, 46.9920336 ], + [ 9.0778129, 46.9919449 ], + [ 9.077987, 46.9918616 ], + [ 9.0781105, 46.9918681 ], + [ 9.0781924, 46.9918857 ], + [ 9.0782825, 46.9919032 ], + [ 9.0784127, 46.9919944 ], + [ 9.0785017, 46.9920854 ], + [ 9.0785989, 46.9921988 ], + [ 9.0787371, 46.9922562 ], + [ 9.0789027, 46.9922179 ], + [ 9.0790676, 46.9922079 ], + [ 9.0791987, 46.9922483 ], + [ 9.0793443, 46.9923622 ], + [ 9.0794671, 46.9924251 ], + [ 9.0795817, 46.9924372 ], + [ 9.0797383, 46.9924271 ], + [ 9.0800358, 46.9923447 ], + [ 9.0802252, 46.9923292 ], + [ 9.0803562, 46.9923696 ], + [ 9.0805042, 46.9923989 ], + [ 9.0806524, 46.9924056 ], + [ 9.0808174, 46.992373 ], + [ 9.0809997, 46.9922898 ], + [ 9.081206, 46.9922631 ], + [ 9.0813785, 46.9922587 ], + [ 9.0877875, 46.9937718 ], + [ 9.0875774, 46.993996 ], + [ 9.0875429, 46.9941029 ], + [ 9.087598, 46.9942386 ], + [ 9.0877356, 46.9944087 ], + [ 9.0878965, 46.9945904 ], + [ 9.0879753, 46.9947996 ], + [ 9.0880053, 46.9949746 ], + [ 9.0880193, 46.9951608 ], + [ 9.0880829, 46.9952798 ], + [ 9.0881386, 46.9953816 ], + [ 9.0881673, 46.9956186 ], + [ 9.0880126, 46.9960405 ], + [ 9.0884547, 46.9961452 ], + [ 9.0888645, 46.9962666 ], + [ 9.0892329, 46.996354 ], + [ 9.0896023, 46.9964468 ], + [ 9.089799, 46.996482 ], + [ 9.0900619, 46.9964784 ], + [ 9.0902927, 46.9964744 ], + [ 9.0905155, 46.9964478 ], + [ 9.0907711, 46.9964215 ], + [ 9.0910007, 46.996457 ], + [ 9.0912465, 46.9965152 ], + [ 9.0915011, 46.9965621 ], + [ 9.0916734, 46.996552199999996 ], + [ 9.0919135, 46.996503 ], + [ 9.0921779, 46.9964147 ], + [ 9.0924679, 46.9962759 ], + [ 9.092725, 46.996165 ], + [ 9.0930221, 46.9961502 ], + [ 9.0932516, 46.9961857 ], + [ 9.0934733, 46.9962043 ], + [ 9.0937857, 46.9962065 ], + [ 9.0939835, 46.9961966 ], + [ 9.0941799, 46.996277 ], + [ 9.0944493, 46.996403 ], + [ 9.0947115, 46.9964839 ], + [ 9.0949569, 46.9965533 ], + [ 9.095203, 46.9966172 ], + [ 9.0954498, 46.9966246 ], + [ 9.0956548, 46.9966374 ], + [ 9.0958516, 46.9967008 ], + [ 9.0960393, 46.9967924 ], + [ 9.0961773, 46.9968948 ], + [ 9.0964051, 46.9970318 ], + [ 9.0967155, 46.9971582 ], + [ 9.0970999, 46.9973076 ], + [ 9.0974849, 46.9974513 ], + [ 9.0976889, 46.9975373 ], + [ 9.0979189, 46.9975616 ], + [ 9.0981237, 46.9975912 ], + [ 9.0983048, 46.9976264 ], + [ 9.0985254, 46.9977183 ], + [ 9.0989096, 46.997862 ], + [ 9.0992775, 46.9980112 ], + [ 9.0996125, 46.9981321 ], + [ 9.0998424, 46.9981788 ], + [ 9.1000886, 46.9982201 ], + [ 9.1003433, 46.9982444 ], + [ 9.1004586, 46.9982509 ], + [ 9.1005883, 46.9983252 ], + [ 9.100751, 46.9984561 ], + [ 9.1009142, 46.9985249 ], + [ 9.101137, 46.9985264 ], + [ 9.1014247, 46.9985286 ], + [ 9.1018276, 46.9985315 ], + [ 9.102099, 46.998539 ], + [ 9.1023545, 46.9985352 ], + [ 9.1025936, 46.998503 ], + [ 9.1029329, 46.9983927 ], + [ 9.1032382, 46.9983272 ], + [ 9.1034605, 46.9983119 ], + [ 9.103757, 46.998331 ], + [ 9.1039291, 46.9983435 ], + [ 9.1042412, 46.9983626 ], + [ 9.1044718, 46.9983755 ], + [ 9.1046618, 46.9983261 ], + [ 9.1048928, 46.9982771 ], + [ 9.1051154, 46.9982449 ], + [ 9.1053304, 46.9982069 ], + [ 9.1055869, 46.9981298 ], + [ 9.1057855, 46.998041 ], + [ 9.1060906, 46.9979924 ], + [ 9.1063131, 46.9980108 ], + [ 9.106493, 46.9980348 ], + [ 9.1065991, 46.9980919 ], + [ 9.1068207, 46.9981612 ], + [ 9.1069835, 46.9982412 ], + [ 9.1072949, 46.9983168 ], + [ 9.1075168, 46.998340999999996 ], + [ 9.1078132, 46.99836 ], + [ 9.10806, 46.9983391 ], + [ 9.1083982, 46.9982739 ], + [ 9.1086631, 46.9982024 ], + [ 9.1089513, 46.998165 ], + [ 9.1091813, 46.9981892 ], + [ 9.1093792, 46.9982076 ], + [ 9.109608, 46.9982712 ], + [ 9.1097715, 46.9983232 ], + [ 9.1099523, 46.998347 ], + [ 9.1100747, 46.9983986 ], + [ 9.1102301, 46.9984786 ], + [ 9.1105161, 46.9985822 ], + [ 9.1106897, 46.9985609 ], + [ 9.1109213, 46.9984779 ], + [ 9.1112443, 46.998373 ], + [ 9.1115414, 46.9982792 ], + [ 9.1117647, 46.9982189 ], + [ 9.1119245, 46.9980169 ], + [ 9.112142, 46.9977986 ], + [ 9.1124733, 46.997643 ], + [ 9.112754, 46.9976281 ], + [ 9.1130332, 46.9976469 ], + [ 9.1132637, 46.9976318 ], + [ 9.1135687, 46.9976339 ], + [ 9.1138068, 46.9976525 ], + [ 9.1140603, 46.9977163 ], + [ 9.1142645, 46.9978079 ], + [ 9.114518, 46.9979507 ], + [ 9.1148443, 46.9980827 ], + [ 9.115222, 46.9981475 ], + [ 9.1154689, 46.9981322 ], + [ 9.1157411, 46.9981116 ], + [ 9.1160308, 46.9980178 ], + [ 9.116238, 46.9979403 ], + [ 9.116478, 46.9978349 ], + [ 9.1166195, 46.9977344 ], + [ 9.11686, 46.9975951 ], + [ 9.1171001, 46.9975177 ], + [ 9.117357, 46.9974294 ], + [ 9.1176132, 46.997341 ], + [ 9.1178607, 46.9972919 ], + [ 9.1180489, 46.997344 ], + [ 9.1182782, 46.9974246 ], + [ 9.1184337, 46.9974821 ], + [ 9.1186637, 46.9975287 ], + [ 9.1188767, 46.9975585 ], + [ 9.1190164, 46.9975594 ], + [ 9.119215, 46.9975214 ], + [ 9.1193892, 46.9974436 ], + [ 9.11958, 46.9973153 ], + [ 9.1197707, 46.9972377 ], + [ 9.1199106, 46.9972161 ], + [ 9.120077, 46.9971495 ], + [ 9.1202174, 46.9970942 ], + [ 9.1204659, 46.9969719 ], + [ 9.1207556, 46.9968781 ], + [ 9.1210119, 46.9968235 ], + [ 9.1212012, 46.9968304 ], + [ 9.1212825, 46.9968818 ], + [ 9.1213805, 46.9969388 ], + [ 9.1215279, 46.9969736 ], + [ 9.1217007, 46.9969805 ], + [ 9.1223792, 46.9967316 ], + [ 9.1227269, 46.9966043 ], + [ 9.1228841, 46.9965321 ], + [ 9.1229533, 46.9963521 ], + [ 9.1230873, 46.9961726 ], + [ 9.1232375, 46.9960609 ], + [ 9.1234443, 46.9959721 ], + [ 9.1237091, 46.9958723 ], + [ 9.1240889, 46.995796 ], + [ 9.1247319, 46.9957273 ], + [ 9.1249302, 46.9956836 ], + [ 9.1250461, 46.9956562 ], + [ 9.125138, 46.9955721 ], + [ 9.1252134, 46.9954881 ], + [ 9.1252884, 46.9954153 ], + [ 9.1254284, 46.9953995 ], + [ 9.1255694, 46.995361 ], + [ 9.1257505, 46.9953171 ], + [ 9.1258668, 46.9952784 ], + [ 9.1259834, 46.9951721 ], + [ 9.1261672, 46.9950043 ], + [ 9.1263678, 46.9948252 ], + [ 9.1265497, 46.9947305 ], + [ 9.1267319, 46.9946698 ], + [ 9.1269056, 46.9946259 ], + [ 9.1270305, 46.9945477 ], + [ 9.1272524, 46.9945211 ], + [ 9.127492, 46.9944833 ], + [ 9.1277574, 46.9943498 ], + [ 9.1280653, 46.9941321 ], + [ 9.1283065, 46.9939871 ], + [ 9.1284883, 46.993915 ], + [ 9.1287527, 46.9938549 ], + [ 9.1290343, 46.9937665 ], + [ 9.1292841, 46.9935822 ], + [ 9.1296567, 46.99341 ], + [ 9.1300548, 46.9931872 ], + [ 9.1303624, 46.993037 ], + [ 9.1307199, 46.9928027 ], + [ 9.1308873, 46.992612199999996 ], + [ 9.1309894, 46.9924098 ], + [ 9.1312148, 46.9922084 ], + [ 9.1315384, 46.9920189 ], + [ 9.1316864, 46.9919974 ], + [ 9.1318598, 46.9919704 ], + [ 9.1320334, 46.9919264 ], + [ 9.1322486, 46.9918433 ], + [ 9.1324978, 46.9916927 ], + [ 9.1327883, 46.9915482 ], + [ 9.1330694, 46.9914712 ], + [ 9.1333089, 46.9914052 ], + [ 9.1335252, 46.9912544 ], + [ 9.1337331, 46.991098 ], + [ 9.1339331, 46.9909527 ], + [ 9.1340844, 46.9907451 ], + [ 9.1342346, 46.9906107 ], + [ 9.1343854, 46.9904426 ], + [ 9.1345276, 46.9902857 ], + [ 9.1347031, 46.9901177 ], + [ 9.1348284, 46.9900001 ], + [ 9.1349952, 46.9898716 ], + [ 9.135259, 46.9898171 ], + [ 9.135449, 46.9897732 ], + [ 9.1355905, 46.9896727 ], + [ 9.1357412, 46.9895272 ], + [ 9.1359575, 46.9893764 ], + [ 9.1361822, 46.9892312 ], + [ 9.1364309, 46.989092 ], + [ 9.1366387, 46.9889581 ], + [ 9.1368484, 46.9887283 ], + [ 9.1369251, 46.9885315 ], + [ 9.136961, 46.9883401 ], + [ 9.1370619, 46.9882053 ], + [ 9.1372875, 46.9880095 ], + [ 9.1379858, 46.9875125 ], + [ 9.1382181, 46.9874238 ], + [ 9.138517, 46.9872624 ], + [ 9.1388481, 46.9871293 ], + [ 9.1391348, 46.9872046 ], + [ 9.1394613, 46.9873421 ], + [ 9.1397411, 46.9873553 ], + [ 9.1400964, 46.9872619 ], + [ 9.1409146, 46.9870193 ], + [ 9.1413365, 46.9868755 ], + [ 9.1416185, 46.9867253 ], + [ 9.1420909, 46.9865141 ], + [ 9.1425056, 46.9862971 ], + [ 9.1428735, 46.9859274 ], + [ 9.14325, 46.9855183 ], + [ 9.1433004, 46.9854228 ], + [ 9.143368, 46.9853274 ], + [ 9.1434779, 46.9851646 ], + [ 9.1436368, 46.9849684 ], + [ 9.1438288, 46.9847779 ], + [ 9.1440559, 46.9844749 ], + [ 9.1442899, 46.9842622 ], + [ 9.1444993, 46.9840267 ], + [ 9.1446835, 46.9838251 ], + [ 9.1448843, 46.9836008 ], + [ 9.1450848, 46.9833936 ], + [ 9.1453301, 46.9829949 ], + [ 9.1455403, 46.9826805 ], + [ 9.1457677, 46.982338 ], + [ 9.1460034, 46.9820238 ], + [ 9.1463197, 46.9817891 ], + [ 9.1466602, 46.9815659 ], + [ 9.147009, 46.9813483 ], + [ 9.147258, 46.9812203 ], + [ 9.147424, 46.9810917 ], + [ 9.1475487, 46.981008 ], + [ 9.1476828, 46.9808566 ], + [ 9.1478085, 46.9807278 ], + [ 9.1480166, 46.9805544 ], + [ 9.1482906, 46.9803871 ], + [ 9.1485641, 46.9802536 ], + [ 9.1488536, 46.9801597 ], + [ 9.1491932, 46.9800379 ], + [ 9.149598, 46.9798996 ], + [ 9.1499547, 46.9797498 ], + [ 9.1503426, 46.9796228 ], + [ 9.1506578, 46.9794838 ], + [ 9.1509565, 46.9792942 ], + [ 9.1512066, 46.9791211 ], + [ 9.1514478, 46.9789309 ], + [ 9.1516642, 46.9787857 ], + [ 9.1519952, 46.9786527 ], + [ 9.1523273, 46.9784519 ], + [ 9.1527675, 46.9781391 ], + [ 9.1531253, 46.9778934 ], + [ 9.153565, 46.9776651 ], + [ 9.1539053, 46.9774643 ], + [ 9.1545777, 46.977091 ], + [ 9.1553329, 46.9766562 ], + [ 9.1559051, 46.9763612 ], + [ 9.156511, 46.9759874 ], + [ 9.1571332, 46.9756363 ], + [ 9.1639175, 46.9703582 ], + [ 9.1645084, 46.9699053 ], + [ 9.1651348, 46.9693061 ], + [ 9.1655282, 46.9688689 ], + [ 9.1659457, 46.9684656 ], + [ 9.1663727, 46.9679495 ], + [ 9.1667009, 46.967478 ], + [ 9.167045, 46.9670179 ], + [ 9.1672737, 46.9665684 ], + [ 9.1674361, 46.966152 ], + [ 9.1675824, 46.9657471 ], + [ 9.1677127, 46.9653024 ], + [ 9.1678429, 46.9648295 ], + [ 9.167926, 46.9642493 ], + [ 9.1690075, 46.9580702 ], + [ 9.1690374, 46.9577207 ], + [ 9.1690981, 46.9574899 ], + [ 9.1691997, 46.9573045 ], + [ 9.1693249, 46.9571643 ], + [ 9.1694837, 46.9570188 ], + [ 9.1698231, 46.9568462 ], + [ 9.1702291, 46.9566515 ], + [ 9.1705778, 46.956462 ], + [ 9.1708451, 46.9561931 ], + [ 9.1714926, 46.9552387 ], + [ 9.171371, 46.9551082 ], + [ 9.1712664, 46.9549722 ], + [ 9.1711958, 46.954718 ], + [ 9.1711344, 46.9544694 ], + [ 9.1711048, 46.954238 ], + [ 9.1711164, 46.9540126 ], + [ 9.1711283, 46.9537702 ], + [ 9.1710994, 46.9535105 ], + [ 9.1710067, 46.9531321 ], + [ 9.1706097, 46.9511332 ], + [ 9.1705568, 46.950817 ], + [ 9.1705429, 46.9506422 ], + [ 9.1705793, 46.9503942 ], + [ 9.1712943, 46.9466432 ], + [ 9.1713998, 46.9461985 ], + [ 9.1714872, 46.9458776 ], + [ 9.1716235, 46.9455457 ], + [ 9.1717418, 46.945321 ], + [ 9.1717451, 46.9451406 ], + [ 9.1717004, 46.9448245 ], + [ 9.1716384, 46.944559 ], + [ 9.1715345, 46.9443666 ], + [ 9.1713577, 46.9441286 ], + [ 9.1702603, 46.9427398 ], + [ 9.1700346, 46.9424619 ], + [ 9.1697759, 46.9422064 ], + [ 9.1696063, 46.9419628 ], + [ 9.1694958, 46.9416915 ], + [ 9.1693764, 46.9414031 ], + [ 9.1693139, 46.941194 ], + [ 9.1692685, 46.9409568 ], + [ 9.1692718, 46.9407539 ], + [ 9.169309, 46.9404834 ], + [ 9.1694047, 46.9400893 ], + [ 9.1703982, 46.9363964 ], + [ 9.1704948, 46.9359798 ], + [ 9.1704757, 46.9356413 ], + [ 9.1703594, 46.9351668 ], + [ 9.1702181, 46.9347317 ], + [ 9.1701584, 46.9343309 ], + [ 9.1701622, 46.9341166 ], + [ 9.1701336, 46.9338176 ], + [ 9.1701869, 46.9335585 ], + [ 9.1702641, 46.9333559 ], + [ 9.1704078, 46.9331032 ], + [ 9.1705496, 46.932918 ], + [ 9.1708012, 46.9325982 ], + [ 9.1708109, 46.9325875 ], + [ 9.1707755, 46.9325751 ], + [ 9.170714, 46.9325541 ], + [ 9.170642, 46.9325131 ], + [ 9.1706301, 46.9325064 ], + [ 9.1705672, 46.9324741 ], + [ 9.1704574, 46.9323939 ], + [ 9.170417, 46.9323448 ], + [ 9.1704102, 46.9323367 ], + [ 9.1703818, 46.9323079 ], + [ 9.170358, 46.9322838 ], + [ 9.1702806, 46.9322503 ], + [ 9.1702285, 46.9322134 ], + [ 9.1702279, 46.932213 ], + [ 9.1702253, 46.9322092 ], + [ 9.1702019, 46.9321746 ], + [ 9.1701329, 46.9321135 ], + [ 9.1701237, 46.9321036 ], + [ 9.1701069, 46.9320856 ], + [ 9.1700993, 46.9320774 ], + [ 9.1700881, 46.9320654 ], + [ 9.1700765, 46.9320515 ], + [ 9.1700516, 46.9320215 ], + [ 9.1700386, 46.9319715 ], + [ 9.170036, 46.9319585 ], + [ 9.1700301, 46.93193 ], + [ 9.1700056, 46.9318982 ], + [ 9.1699903, 46.9318783 ], + [ 9.169977, 46.9318497 ], + [ 9.1699548, 46.931801899999996 ], + [ 9.1699417, 46.9317783 ], + [ 9.1699358, 46.9317678 ], + [ 9.1699091, 46.9317211 ], + [ 9.1698841, 46.9316772 ], + [ 9.1698326, 46.9316161 ], + [ 9.169804, 46.9315971 ], + [ 9.1697766, 46.9315789 ], + [ 9.1697101, 46.9315358 ], + [ 9.1697076, 46.9315318 ], + [ 9.1696964, 46.931514 ], + [ 9.1696788, 46.9314822 ], + [ 9.1696556, 46.9314748 ], + [ 9.1696483, 46.9314725 ], + [ 9.1696428, 46.9314708 ], + [ 9.1695925, 46.9314722 ], + [ 9.1695368, 46.9314676 ], + [ 9.1695128, 46.9314525 ], + [ 9.1695065, 46.9314427 ], + [ 9.1694909, 46.9314183 ], + [ 9.1694306, 46.9313812 ], + [ 9.1693602, 46.9313531 ], + [ 9.1692592, 46.9313213 ], + [ 9.1691752, 46.9312965 ], + [ 9.1691496, 46.931289 ], + [ 9.1690186, 46.9312404 ], + [ 9.1689103, 46.9311968 ], + [ 9.1688016, 46.9311363 ], + [ 9.1687453, 46.9311112 ], + [ 9.1686775, 46.9310811 ], + [ 9.1685636, 46.9310329 ], + [ 9.1685469, 46.9310258 ], + [ 9.1685435, 46.9310244 ], + [ 9.1685298, 46.9310184 ], + [ 9.1684695, 46.9309924 ], + [ 9.1684661, 46.9309905 ], + [ 9.168395, 46.9309504 ], + [ 9.1683593, 46.9309312 ], + [ 9.168314, 46.9309326 ], + [ 9.1682697, 46.9309323 ], + [ 9.168216, 46.930932 ], + [ 9.1681487, 46.9309224 ], + [ 9.1681049, 46.9309061 ], + [ 9.1680549, 46.9308721 ], + [ 9.1680501, 46.9308688 ], + [ 9.1680072, 46.930849 ], + [ 9.1679174, 46.9308475 ], + [ 9.1679057, 46.9308495 ], + [ 9.1677852, 46.93087 ], + [ 9.1677076, 46.9308725 ], + [ 9.1676896, 46.930873 ], + [ 9.1675165, 46.9308639 ], + [ 9.1674978, 46.9308629 ], + [ 9.1673224, 46.9308851 ], + [ 9.1673193, 46.9308855 ], + [ 9.1672552, 46.9308937 ], + [ 9.1671399, 46.9309389 ], + [ 9.1670398, 46.9309505 ], + [ 9.1669958, 46.9309556 ], + [ 9.1669425, 46.9309516 ], + [ 9.1668942, 46.930948 ], + [ 9.1668197, 46.930944 ], + [ 9.1667282, 46.9309503 ], + [ 9.1666052, 46.9309727 ], + [ 9.1665609, 46.9309831 ], + [ 9.1664998, 46.9309976 ], + [ 9.1664573, 46.9310111 ], + [ 9.1664324, 46.9310191 ], + [ 9.1663903, 46.9310239 ], + [ 9.1663447, 46.9310162 ], + [ 9.1662975, 46.930991399999996 ], + [ 9.1662842, 46.9309884 ], + [ 9.1662759, 46.9309866 ], + [ 9.1662093, 46.9309716 ], + [ 9.1661127, 46.9309504 ], + [ 9.1660885, 46.9309388 ], + [ 9.1660541, 46.9309224 ], + [ 9.1659816, 46.9309129 ], + [ 9.1659726, 46.9309127 ], + [ 9.1658795, 46.9309109 ], + [ 9.1657766, 46.9309062 ], + [ 9.1657277, 46.930904 ], + [ 9.1657199, 46.9309035 ], + [ 9.1656752, 46.9309008 ], + [ 9.1656626, 46.9309 ], + [ 9.1656123, 46.9308734 ], + [ 9.1656029, 46.9308685 ], + [ 9.1655364, 46.9308518 ], + [ 9.165486, 46.9308554 ], + [ 9.1654695, 46.9308584 ], + [ 9.1654009, 46.9308708 ], + [ 9.1653303, 46.9308874 ], + [ 9.1652854, 46.9309029 ], + [ 9.1652245, 46.9308989 ], + [ 9.1651695, 46.9308891 ], + [ 9.1651315, 46.9308932 ], + [ 9.165105, 46.9309028 ], + [ 9.1650849, 46.9309179 ], + [ 9.165042, 46.9309313 ], + [ 9.1650008, 46.9309333 ], + [ 9.1649567, 46.9309396 ], + [ 9.164904, 46.9309666 ], + [ 9.1648739, 46.9309784 ], + [ 9.1648296, 46.9309959 ], + [ 9.1647815, 46.9310072 ], + [ 9.1647422, 46.9310008 ], + [ 9.164733, 46.9309985 ], + [ 9.1647131, 46.9309934 ], + [ 9.1646975, 46.9309979 ], + [ 9.1646794, 46.9310031 ], + [ 9.164673, 46.931007 ], + [ 9.1646521, 46.9310198 ], + [ 9.1646079, 46.9310254 ], + [ 9.1645851, 46.9310195 ], + [ 9.1645539, 46.9310114 ], + [ 9.1644971, 46.9310108 ], + [ 9.1643949, 46.9310371 ], + [ 9.164368, 46.9310504 ], + [ 9.1643299, 46.9310691 ], + [ 9.164276, 46.9310904 ], + [ 9.1641985, 46.9311042 ], + [ 9.1641806, 46.9311074 ], + [ 9.1641597, 46.9311083 ], + [ 9.1641024, 46.9311107 ], + [ 9.1639882, 46.9310856 ], + [ 9.1639567, 46.931067 ], + [ 9.1639124, 46.9310684 ], + [ 9.1638778, 46.9310823 ], + [ 9.1638682, 46.9310853 ], + [ 9.1638022, 46.931106 ], + [ 9.1637624, 46.9311172 ], + [ 9.163717, 46.9311172 ], + [ 9.1636268, 46.9310995 ], + [ 9.1636138, 46.9310967 ], + [ 9.1635354, 46.9310797 ], + [ 9.1634549, 46.9310767 ], + [ 9.1633043, 46.931074 ], + [ 9.1632685, 46.9310755 ], + [ 9.163085, 46.9310829 ], + [ 9.1630305, 46.931088 ], + [ 9.1629912, 46.9310835 ], + [ 9.1628826, 46.9310712 ], + [ 9.1628198, 46.9310749 ], + [ 9.1627629, 46.9310694 ], + [ 9.1626613, 46.9310519 ], + [ 9.1625072, 46.9310345 ], + [ 9.162458, 46.9310362 ], + [ 9.1624254, 46.9310373 ], + [ 9.1623671, 46.9310394 ], + [ 9.1622818, 46.9310484 ], + [ 9.1621965, 46.9310568 ], + [ 9.1621921, 46.9310582 ], + [ 9.1621333, 46.9310775 ], + [ 9.1621198, 46.931079 ], + [ 9.162049, 46.9310865 ], + [ 9.1619966, 46.9310795 ], + [ 9.1619548, 46.9310738 ], + [ 9.1618935, 46.9310585 ], + [ 9.1618104, 46.9310697 ], + [ 9.1617256, 46.9310942 ], + [ 9.1617027, 46.9311011 ], + [ 9.1616136, 46.9311279 ], + [ 9.1615796, 46.9311381 ], + [ 9.1614632, 46.9311759 ], + [ 9.1614174, 46.9311928 ], + [ 9.1613486, 46.9312023 ], + [ 9.161325, 46.9312055 ], + [ 9.161306, 46.931221 ], + [ 9.1612969, 46.9312285 ], + [ 9.1612782, 46.9312563 ], + [ 9.1612509, 46.9312737 ], + [ 9.1611986, 46.9312808 ], + [ 9.1611858, 46.9312855 ], + [ 9.1611825, 46.9312867 ], + [ 9.1611796, 46.9312878 ], + [ 9.1611421, 46.931301500000004 ], + [ 9.161114, 46.9313118 ], + [ 9.1610972, 46.9313189 ], + [ 9.1609716, 46.9313718 ], + [ 9.1609165, 46.9313896 ], + [ 9.1608524, 46.9313842 ], + [ 9.1607902, 46.9313731 ], + [ 9.1607408, 46.9313774 ], + [ 9.1607006, 46.9314084 ], + [ 9.1606628, 46.9314298 ], + [ 9.160652, 46.9314359 ], + [ 9.1606109, 46.9314401 ], + [ 9.1605687, 46.9314228 ], + [ 9.1605642, 46.9314209 ], + [ 9.1605545, 46.9314169 ], + [ 9.1605131, 46.9314133 ], + [ 9.160416, 46.9314253 ], + [ 9.1603899, 46.9314286 ], + [ 9.1603281, 46.9314284 ], + [ 9.1602332, 46.9314281 ], + [ 9.1601733, 46.9314269 ], + [ 9.1600114, 46.9314237 ], + [ 9.1598938, 46.9314221 ], + [ 9.1598672, 46.9314217 ], + [ 9.1598671, 46.9314217 ], + [ 9.1598649, 46.9314216 ], + [ 9.15982, 46.9314133 ], + [ 9.1597664, 46.9314034 ], + [ 9.1596888, 46.9313983 ], + [ 9.159661, 46.9313965 ], + [ 9.1595853, 46.9314112 ], + [ 9.1595432, 46.9314194 ], + [ 9.1594468, 46.9314336 ], + [ 9.1593881, 46.931438 ], + [ 9.1593181, 46.9314405 ], + [ 9.1592546, 46.9314527 ], + [ 9.1591697, 46.9314731 ], + [ 9.1591067, 46.9314719 ], + [ 9.1590471, 46.9314763 ], + [ 9.1589401, 46.9315161 ], + [ 9.158844, 46.9315401 ], + [ 9.1587181, 46.9315674 ], + [ 9.1585832, 46.9316062 ], + [ 9.1584927, 46.9316442 ], + [ 9.1584404, 46.9316853 ], + [ 9.1584021, 46.9317141 ], + [ 9.1583315, 46.93173 ], + [ 9.158202, 46.9317425 ], + [ 9.1580424, 46.9317499 ], + [ 9.1578556, 46.9317435 ], + [ 9.1577855, 46.9317414 ], + [ 9.1577371, 46.9317399 ], + [ 9.1575362, 46.9317088 ], + [ 9.1574805, 46.9316995 ], + [ 9.1574169, 46.931689 ], + [ 9.157402, 46.9316865 ], + [ 9.1573351, 46.9316796 ], + [ 9.1572758, 46.9316848 ], + [ 9.1571961, 46.9317024 ], + [ 9.1570789, 46.9317235 ], + [ 9.1570104, 46.9317331 ], + [ 9.1569697, 46.9317301 ], + [ 9.1569166, 46.9317316 ], + [ 9.1568607, 46.9317467 ], + [ 9.1567697, 46.9317688 ], + [ 9.1566763, 46.9317824 ], + [ 9.156518, 46.9318197 ], + [ 9.1563971, 46.9318537 ], + [ 9.1563893, 46.9318553 ], + [ 9.1563391, 46.931866 ], + [ 9.1562776, 46.9318669 ], + [ 9.1562308, 46.9318792 ], + [ 9.1562084, 46.9318851 ], + [ 9.1561455, 46.9319082 ], + [ 9.1560968, 46.9319175 ], + [ 9.1560207, 46.9319165 ], + [ 9.1559601, 46.9319221 ], + [ 9.1559188, 46.9319259 ], + [ 9.1558428, 46.9319291 ], + [ 9.155794, 46.9319349 ], + [ 9.155678, 46.9319587 ], + [ 9.1556223, 46.9319663 ], + [ 9.1555067, 46.931982 ], + [ 9.1554385, 46.9320013 ], + [ 9.155424, 46.9320054 ], + [ 9.1554009, 46.9320058 ], + [ 9.1553782, 46.9320061 ], + [ 9.1553371, 46.9319917 ], + [ 9.1552743, 46.9319862 ], + [ 9.1551581, 46.932003 ], + [ 9.1551387, 46.9320088 ], + [ 9.1551238, 46.9320133 ], + [ 9.1550166, 46.9320458 ], + [ 9.1549467, 46.9320815 ], + [ 9.1549243, 46.9320929 ], + [ 9.1548348, 46.9321169 ], + [ 9.1546842, 46.9321153 ], + [ 9.1546043, 46.9321091 ], + [ 9.1544075, 46.9320937 ], + [ 9.154255, 46.9320817 ], + [ 9.1541313, 46.932119900000004 ], + [ 9.1540474, 46.9321458 ], + [ 9.1538641, 46.932139 ], + [ 9.1538264, 46.9321269 ], + [ 9.1536882, 46.9320826 ], + [ 9.153557, 46.9320711 ], + [ 9.1535422, 46.9320698 ], + [ 9.1534916, 46.9320654 ], + [ 9.1534009, 46.9320574 ], + [ 9.1533359, 46.9320517 ], + [ 9.1532189, 46.9320776 ], + [ 9.1531512, 46.9320926 ], + [ 9.152939, 46.9321034 ], + [ 9.1527789, 46.9320611 ], + [ 9.1527557, 46.932055 ], + [ 9.1527167, 46.9320447 ], + [ 9.1526328, 46.9320026 ], + [ 9.1525211, 46.9319538 ], + [ 9.1522026, 46.9318714 ], + [ 9.1520672, 46.9318722 ], + [ 9.1520256, 46.931877 ], + [ 9.1519601, 46.9318661 ], + [ 9.1518625, 46.931858 ], + [ 9.1518342, 46.9318603 ], + [ 9.1517611, 46.9318661 ], + [ 9.1517513, 46.9318664 ], + [ 9.1516639, 46.9318693 ], + [ 9.1515401, 46.9318551 ], + [ 9.1514276, 46.9318425 ], + [ 9.1512511, 46.9318368 ], + [ 9.1512067, 46.9318285 ], + [ 9.1511202, 46.9318124 ], + [ 9.1509106, 46.931765 ], + [ 9.1508963, 46.9317622 ], + [ 9.1508722, 46.9317574 ], + [ 9.1507881, 46.9317408 ], + [ 9.1507831, 46.9317398 ], + [ 9.150611, 46.9317079 ], + [ 9.1504869, 46.9316865 ], + [ 9.1504367, 46.931683 ], + [ 9.1504312, 46.9316818 ], + [ 9.1503993, 46.931678 ], + [ 9.1502894, 46.9315723 ], + [ 9.1500605, 46.9314946 ], + [ 9.1500508, 46.931486 ], + [ 9.1499725, 46.9314165 ], + [ 9.1499697, 46.931321 ], + [ 9.149874, 46.9311855 ], + [ 9.1496929, 46.9310673 ], + [ 9.1496923, 46.9310449 ], + [ 9.1496915, 46.9310169 ], + [ 9.1496266, 46.9309614 ], + [ 9.1495942, 46.9309336 ], + [ 9.149555, 46.9309276 ], + [ 9.1494744, 46.9309202 ], + [ 9.1494384, 46.9309236 ], + [ 9.1493889, 46.9309191 ], + [ 9.1493371, 46.930907 ], + [ 9.1493102, 46.9308922 ], + [ 9.149244, 46.9308641 ], + [ 9.1491938, 46.9308387 ], + [ 9.1491559, 46.9308249 ], + [ 9.1491136, 46.9308075 ], + [ 9.1490778, 46.9307956 ], + [ 9.1490472, 46.9307966 ], + [ 9.1489976, 46.9308087 ], + [ 9.1489892, 46.9308092 ], + [ 9.1489421, 46.9308115 ], + [ 9.1489065, 46.9308092 ], + [ 9.148863, 46.9307955 ], + [ 9.148825, 46.9307799 ], + [ 9.1488057, 46.9307635 ], + [ 9.148789, 46.9307414 ], + [ 9.1487778, 46.9307349 ], + [ 9.1487579, 46.9307233 ], + [ 9.148743, 46.9307135 ], + [ 9.1485681, 46.9306459 ], + [ 9.1485266, 46.9306298 ], + [ 9.1485009, 46.930619899999996 ], + [ 9.1484763, 46.9305387 ], + [ 9.1484704, 46.9305194 ], + [ 9.1484702, 46.9305114 ], + [ 9.1484687, 46.9304599 ], + [ 9.148402, 46.9303744 ], + [ 9.1483101, 46.9302658 ], + [ 9.1482878, 46.9302515 ], + [ 9.1482651, 46.9302214 ], + [ 9.1483128, 46.9300939 ], + [ 9.148324, 46.9300637 ], + [ 9.1479195, 46.9297284 ], + [ 9.1478466, 46.9295808 ], + [ 9.147757, 46.9294364 ], + [ 9.1477211, 46.9294173 ], + [ 9.1476795, 46.9294341 ], + [ 9.1475412, 46.9295295 ], + [ 9.1474026, 46.9296169 ], + [ 9.1473413, 46.9297032 ], + [ 9.1469699, 46.9298275 ], + [ 9.146485, 46.9298232 ], + [ 9.1458297, 46.9298583 ], + [ 9.1441715, 46.9298277 ], + [ 9.1433653, 46.9297221 ], + [ 9.1429056, 46.9296643 ], + [ 9.1422042, 46.9298408 ], + [ 9.1419265, 46.9297896 ], + [ 9.1416246, 46.9298218 ], + [ 9.1412493, 46.9298781 ], + [ 9.1410309, 46.9299966 ], + [ 9.1406823, 46.9299547 ], + [ 9.1406262, 46.929975 ], + [ 9.1403841, 46.9299832 ], + [ 9.1399773, 46.9300008 ], + [ 9.1397327, 46.930039 ], + [ 9.1395829, 46.930089699999996 ], + [ 9.1394957, 46.9302086 ], + [ 9.139385, 46.9302194 ], + [ 9.1392873, 46.9302186 ], + [ 9.1392247, 46.9301549 ], + [ 9.1390536, 46.9301736 ], + [ 9.138914, 46.930231 ], + [ 9.1388357, 46.9303083 ], + [ 9.1387415, 46.930312 ], + [ 9.1387304, 46.930386 ], + [ 9.1387631, 46.9304616 ], + [ 9.1386925, 46.930571 ], + [ 9.1386345, 46.9306526 ], + [ 9.1385918, 46.9307939 ], + [ 9.1385618, 46.9308278 ], + [ 9.1384803, 46.9308878 ], + [ 9.1385187, 46.9309299 ], + [ 9.1385324, 46.9309643 ], + [ 9.1385038, 46.9310437 ], + [ 9.1384557, 46.9310946 ], + [ 9.1383871, 46.9311873 ], + [ 9.1383127, 46.9312812 ], + [ 9.1383041, 46.931302099999996 ], + [ 9.138279, 46.9313601 ], + [ 9.1382368, 46.9314115 ], + [ 9.1382111, 46.9314511 ], + [ 9.1380947, 46.9314943 ], + [ 9.1380178, 46.9315116 ], + [ 9.1379662, 46.9315839 ], + [ 9.1378798, 46.9316174 ], + [ 9.137797, 46.9316625 ], + [ 9.1377137, 46.9316891 ], + [ 9.1376368, 46.9317064 ], + [ 9.137589, 46.9317376 ], + [ 9.1375427, 46.9317637 ], + [ 9.1375095, 46.9317803 ], + [ 9.1374803, 46.9318153 ], + [ 9.1374557, 46.9318872 ], + [ 9.1374208, 46.9319546 ], + [ 9.1374057, 46.9320102 ], + [ 9.13736, 46.9320547 ], + [ 9.1373238, 46.9320829 ], + [ 9.1372843, 46.9321088 ], + [ 9.1372753, 46.9321436 ], + [ 9.1372704, 46.9322013 ], + [ 9.1372085, 46.9322668 ], + [ 9.13712, 46.9323442 ], + [ 9.1369759, 46.9324709 ], + [ 9.13695, 46.9325035 ], + [ 9.1368859, 46.932606 ], + [ 9.1368503, 46.9326526 ], + [ 9.1368116, 46.9327062 ], + [ 9.1367492, 46.9327556 ], + [ 9.1367103, 46.9328023 ], + [ 9.1366377, 46.9328495 ], + [ 9.1365513, 46.9328854 ], + [ 9.1364644, 46.9329051 ], + [ 9.1363609, 46.9329579 ], + [ 9.1362481, 46.9330127 ], + [ 9.1361484, 46.9330533 ], + [ 9.1360682, 46.9330707 ], + [ 9.1359879, 46.933088 ], + [ 9.1359087, 46.9331376 ], + [ 9.135792, 46.9331739 ], + [ 9.1356651, 46.9332081 ], + [ 9.1355256, 46.9332678 ], + [ 9.1354458, 46.933299 ], + [ 9.135359, 46.933321 ], + [ 9.135225, 46.9333438 ], + [ 9.1351553, 46.9333748 ], + [ 9.1350584, 46.9333993 ], + [ 9.1350183, 46.9334091 ], + [ 9.1349357, 46.9334564 ], + [ 9.1348256, 46.933488 ], + [ 9.134719, 46.9335242 ], + [ 9.1346089, 46.9335581 ], + [ 9.1344915, 46.9335714 ], + [ 9.1344209, 46.9335725 ], + [ 9.1343497, 46.9335574 ], + [ 9.1342315, 46.9335718 ], + [ 9.1341315, 46.9336056 ], + [ 9.1340044, 46.9336305 ], + [ 9.1338906, 46.9336529 ], + [ 9.1338067, 46.9336611 ], + [ 9.1337233, 46.9336854 ], + [ 9.1336076, 46.933754 ], + [ 9.1334811, 46.9337997 ], + [ 9.1332876, 46.9338533 ], + [ 9.1331442, 46.9338992 ], + [ 9.1330614, 46.933942 ], + [ 9.1329933, 46.9339722 ], + [ 9.1329611, 46.9339883 ], + [ 9.1329063, 46.934019 ], + [ 9.1328671, 46.9340579 ], + [ 9.1327827, 46.9341262 ], + [ 9.1327039, 46.9341885 ], + [ 9.1326613, 46.9342529 ], + [ 9.1325625, 46.9343212 ], + [ 9.1324368, 46.9343923 ], + [ 9.1323516, 46.9344673 ], + [ 9.1322491, 46.9345265 ], + [ 9.1321214, 46.9346414 ], + [ 9.1320385, 46.9346818 ], + [ 9.1319428, 46.9347432 ], + [ 9.1318507, 46.9347584 ], + [ 9.1317809, 46.9347859 ], + [ 9.1316598, 46.93479 ], + [ 9.1314841, 46.9347425 ], + [ 9.1314484, 46.9347862 ], + [ 9.13136, 46.9348118 ], + [ 9.1312754, 46.9347986 ], + [ 9.1312184, 46.9347798 ], + [ 9.1312543, 46.934743 ], + [ 9.1313013, 46.9347112 ], + [ 9.1312447, 46.934678 ], + [ 9.1311732, 46.9346594 ], + [ 9.1311047, 46.934623 ], + [ 9.1310228, 46.9345884 ], + [ 9.1309778, 46.9345683 ], + [ 9.1309095, 46.9345394 ], + [ 9.1308086, 46.9345409 ], + [ 9.1307179, 46.9345491 ], + [ 9.1306555, 46.9345985 ], + [ 9.1305221, 46.9346373 ], + [ 9.1304142, 46.934632 ], + [ 9.1303576, 46.9346605 ], + [ 9.1303118, 46.9346958 ], + [ 9.1302588, 46.9347242 ], + [ 9.1301742, 46.9347151 ], + [ 9.1301536, 46.9346981 ], + [ 9.1300794, 46.9346946 ], + [ 9.1299898, 46.9347351 ], + [ 9.1299503, 46.9347438 ], + [ 9.1299214, 46.9347604 ], + [ 9.1298873, 46.9347736 ], + [ 9.1298553, 46.9347994 ], + [ 9.1298221, 46.9348155 ], + [ 9.129802399999999, 46.9348296 ], + [ 9.1297807, 46.9348374 ], + [ 9.1297514, 46.9348407 ], + [ 9.1297278, 46.9348422 ], + [ 9.1297037, 46.9348512 ], + [ 9.1296905, 46.9348595 ], + [ 9.1296629, 46.9348645 ], + [ 9.1296453, 46.9348659 ], + [ 9.1296309, 46.9348632 ], + [ 9.129618, 46.9348548 ], + [ 9.1296052, 46.9348509 ], + [ 9.1296024, 46.9348418 ], + [ 9.129597, 46.9348038 ], + [ 9.1295788, 46.9347862 ], + [ 9.1295679, 46.9347621 ], + [ 9.1295539, 46.9347445 ], + [ 9.1295112, 46.9347255 ], + [ 9.1294974, 46.9347136 ], + [ 9.1294602, 46.9347107 ], + [ 9.1294298, 46.9347071 ], + [ 9.1293878, 46.93471 ], + [ 9.1293566, 46.9347076 ], + [ 9.129318, 46.934711 ], + [ 9.1293077, 46.9347054 ], + [ 9.1293055, 46.9346893 ], + [ 9.12929, 46.9346763 ], + [ 9.1292826, 46.9346568 ], + [ 9.1292546, 46.9346474 ], + [ 9.1292305, 46.934631 ], + [ 9.1292385, 46.9346194 ], + [ 9.1292261, 46.934606 ], + [ 9.129201, 46.9346044 ], + [ 9.1291953, 46.9345909 ], + [ 9.1291906, 46.9345754 ], + [ 9.1292056, 46.9345677 ], + [ 9.1292155, 46.934563 ], + [ 9.1292122, 46.9345394 ], + [ 9.1291905, 46.9345362 ], + [ 9.1291728, 46.9345111 ], + [ 9.1291458, 46.9345075 ], + [ 9.1291291, 46.9345112 ], + [ 9.129119, 46.93452 ], + [ 9.1290861, 46.9345176 ], + [ 9.1290707, 46.9345092 ], + [ 9.1290541, 46.9344904 ], + [ 9.1290269, 46.9344994 ], + [ 9.1290062, 46.9345118 ], + [ 9.1289673, 46.934532 ], + [ 9.1289292, 46.9345257 ], + [ 9.1289074, 46.9345 ], + [ 9.1288982, 46.9344889 ], + [ 9.1288663, 46.934494 ], + [ 9.1288384, 46.9344881 ], + [ 9.1288112, 46.9344539 ], + [ 9.1288105, 46.934432 ], + [ 9.1288201, 46.9344163 ], + [ 9.1288255, 46.9343983 ], + [ 9.1287952, 46.9343994 ], + [ 9.128777, 46.9343835 ], + [ 9.1287712, 46.9343605 ], + [ 9.1287664, 46.9343392 ], + [ 9.1287487, 46.9343271 ], + [ 9.1287249, 46.9343053 ], + [ 9.1287058, 46.9342877 ], + [ 9.1287215, 46.9342776 ], + [ 9.1287237, 46.9342678 ], + [ 9.1287121, 46.9342472 ], + [ 9.1286839, 46.9342332 ], + [ 9.1286588, 46.9341976 ], + [ 9.1286751, 46.9341535 ], + [ 9.128655, 46.9341319 ], + [ 9.1286108, 46.934117 ], + [ 9.1285115, 46.9341167 ], + [ 9.1284449, 46.9341408 ], + [ 9.1283582, 46.9341674 ], + [ 9.128245, 46.934206 ], + [ 9.1281531, 46.9342287 ], + [ 9.1281012, 46.9342369 ], + [ 9.1280608, 46.9342381 ], + [ 9.1280269, 46.9342299 ], + [ 9.1280235, 46.9342023 ], + [ 9.127988, 46.9341729 ], + [ 9.1279129, 46.9341394 ], + [ 9.1278815, 46.9341052 ], + [ 9.1278275, 46.9340991 ], + [ 9.1277333, 46.9341028 ], + [ 9.1276406, 46.9341526 ], + [ 9.1275538, 46.9341747 ], + [ 9.1275071, 46.9341892 ], + [ 9.1274716, 46.9342099 ], + [ 9.127426, 46.9342054 ], + [ 9.1273961, 46.9341931 ], + [ 9.1273547, 46.9341615 ], + [ 9.1273004, 46.9341461 ], + [ 9.1272991, 46.9341046 ], + [ 9.1272975, 46.9340539 ], + [ 9.1272622, 46.9340014 ], + [ 9.1272565, 46.9339277 ], + [ 9.1271355, 46.9339341 ], + [ 9.127025, 46.9339541 ], + [ 9.1268889, 46.9340161 ], + [ 9.1267823, 46.9340523 ], + [ 9.1265893, 46.9341243 ], + [ 9.1264635, 46.9341907 ], + [ 9.1264195, 46.9341736 ], + [ 9.1262129, 46.934093 ], + [ 9.1260195, 46.933939 ], + [ 9.1259081, 46.9338207 ], + [ 9.125755, 46.9336617 ], + [ 9.1256132, 46.9336499 ], + [ 9.1255867, 46.9336653 ], + [ 9.1255227, 46.9336628 ], + [ 9.1254903, 46.9336483 ], + [ 9.1254825, 46.9336149 ], + [ 9.1254669, 46.9335483 ], + [ 9.1254312, 46.9334831 ], + [ 9.1252967, 46.9334332 ], + [ 9.1252216, 46.9334009 ], + [ 9.1251431, 46.9333155 ], + [ 9.1249347, 46.9332723 ], + [ 9.1247999, 46.9332664 ], + [ 9.1247909, 46.9333023 ], + [ 9.1247385, 46.9333618 ], + [ 9.1246468, 46.9334185 ], + [ 9.1243949, 46.9334891 ], + [ 9.1243312, 46.9335004 ], + [ 9.1242797, 46.9334678 ], + [ 9.1242083, 46.9334446 ], + [ 9.1241357, 46.9334376 ], + [ 9.1241223, 46.9333859 ], + [ 9.1240256, 46.9333101 ], + [ 9.1239652, 46.9332614 ], + [ 9.1238578, 46.9332191 ], + [ 9.1238051, 46.9332026 ], + [ 9.123744, 46.9332139 ], + [ 9.1236444, 46.9331773 ], + [ 9.1234764, 46.9331879 ], + [ 9.1232914, 46.9332596 ], + [ 9.1230374, 46.9333187 ], + [ 9.1226745, 46.9333425 ], + [ 9.1223376, 46.9333361 ], + [ 9.1219897, 46.9334079 ], + [ 9.1215865, 46.9334323 ], + [ 9.1213173, 46.9334362 ], + [ 9.1210839, 46.9333879 ], + [ 9.1209172, 46.9333327 ], + [ 9.1208585, 46.9332851 ], + [ 9.1206488, 46.9331475 ], + [ 9.1205379, 46.9330477 ], + [ 9.1205135, 46.9328036 ], + [ 9.120567, 46.9325791 ], + [ 9.1206956, 46.9325044 ], + [ 9.1209502, 46.9324638 ], + [ 9.1207808, 46.9322172 ], + [ 9.1207628, 46.9320699 ], + [ 9.1207979, 46.9319033 ], + [ 9.1206323, 46.9317743 ], + [ 9.1206181, 46.931536 ], + [ 9.1206, 46.9313886 ], + [ 9.1206431, 46.9312576 ], + [ 9.1206597, 46.9311433 ], + [ 9.1206379, 46.9310916 ], + [ 9.1208082, 46.9310489 ], + [ 9.1208638, 46.930996 ], + [ 9.1209402, 46.9309097 ], + [ 9.1209296, 46.9308413 ], + [ 9.1209337, 46.9308089 ], + [ 9.1208381, 46.9307677 ], + [ 9.1207437, 46.9307091 ], + [ 9.1207055, 46.9306163 ], + [ 9.1207005, 46.9305114 ], + [ 9.1207218, 46.9303866 ], + [ 9.1207804, 46.9303223 ], + [ 9.1208351, 46.9302949 ], + [ 9.1208806, 46.9302954 ], + [ 9.1210297, 46.9302741 ], + [ 9.121073, 46.9302061 ], + [ 9.1212751, 46.9301023 ], + [ 9.1212258, 46.9299795 ], + [ 9.1211203, 46.929942 ], + [ 9.1210768, 46.9298976 ], + [ 9.1210702, 46.9298481 ], + [ 9.1209857, 46.9298378 ], + [ 9.1208609, 46.9298293 ], + [ 9.1207952, 46.9298268 ], + [ 9.1207583, 46.9297778 ], + [ 9.1207091, 46.9297128 ], + [ 9.1207093, 46.9296643 ], + [ 9.1207307, 46.9296477 ], + [ 9.1206226, 46.9295549 ], + [ 9.1205726, 46.9294898 ], + [ 9.1205316, 46.9294455 ], + [ 9.1205339, 46.9293048 ], + [ 9.120473, 46.9291858 ], + [ 9.1204876, 46.9291412 ], + [ 9.1207086, 46.9291045 ], + [ 9.1207017, 46.9290458 ], + [ 9.1207649, 46.9290218 ], + [ 9.1208251, 46.9290071 ], + [ 9.1208743, 46.928966 ], + [ 9.120939, 46.9288843 ], + [ 9.1209142, 46.9287625 ], + [ 9.1208693, 46.9285383 ], + [ 9.1208746, 46.9283864 ], + [ 9.1208739, 46.9281751 ], + [ 9.1208809, 46.9280211 ], + [ 9.1210058, 46.927927 ], + [ 9.1210788, 46.9278793 ], + [ 9.1211513, 46.9278298 ], + [ 9.1214211, 46.9276298 ], + [ 9.1216826, 46.9275807 ], + [ 9.1218071, 46.92758 ], + [ 9.1219051, 46.9275924 ], + [ 9.1219013, 46.9276317 ], + [ 9.1220047, 46.9276543 ], + [ 9.1220727, 46.9276211 ], + [ 9.1222296, 46.9275818 ], + [ 9.1223303, 46.9275181 ], + [ 9.1223389, 46.9274165 ], + [ 9.1223946, 46.9273684 ], + [ 9.1224571, 46.9273756 ], + [ 9.1224629, 46.9273455 ], + [ 9.1224352, 46.9273194 ], + [ 9.1224954, 46.9272539 ], + [ 9.1228563, 46.9271702 ], + [ 9.1230677, 46.9271463 ], + [ 9.1232759, 46.9271831 ], + [ 9.1234401, 46.9270538 ], + [ 9.1235912, 46.9267454 ], + [ 9.1236289, 46.9265535 ], + [ 9.1236511, 46.9264009 ], + [ 9.1238084, 46.9263732 ], + [ 9.1238469, 46.9263127 ], + [ 9.1237477, 46.9262634 ], + [ 9.1238512, 46.9262342 ], + [ 9.1245195, 46.9260509 ], + [ 9.1245597, 46.9259373 ], + [ 9.1247076, 46.9258707 ], + [ 9.1247334, 46.9257871 ], + [ 9.1246571, 46.9257144 ], + [ 9.1247167, 46.9255752 ], + [ 9.1247811, 46.925482 ], + [ 9.1249338, 46.9254614 ], + [ 9.1250777, 46.9254363 ], + [ 9.125124, 46.9254079 ], + [ 9.1250893, 46.9252677 ], + [ 9.1252551, 46.9251869 ], + [ 9.1254282, 46.9251267 ], + [ 9.1255145, 46.9249801 ], + [ 9.1256046, 46.9248474 ], + [ 9.1257353, 46.9247209 ], + [ 9.1259448, 46.9245333 ], + [ 9.1261019, 46.9243903 ], + [ 9.1262263, 46.9242778 ], + [ 9.126364, 46.9241604 ], + [ 9.1264623, 46.924076 ], + [ 9.126627299999999, 46.9239721 ], + [ 9.1268266, 46.9238861 ], + [ 9.1270259, 46.9238002 ], + [ 9.1272449, 46.9237001 ], + [ 9.1273435, 46.9236248 ], + [ 9.1273956, 46.9235687 ], + [ 9.1275151, 46.9235162 ], + [ 9.1276752, 46.9234677 ], + [ 9.1277809, 46.9234062 ], + [ 9.1278728, 46.923331 ], + [ 9.1279627, 46.9231913 ], + [ 9.128032900000001, 46.9230704 ], + [ 9.1281241, 46.9229722 ], + [ 9.1282629, 46.9228917 ], + [ 9.1283883, 46.9228115 ], + [ 9.1285601, 46.9227074 ], + [ 9.1286906, 46.9225764 ], + [ 9.1287942, 46.9224457 ], + [ 9.1288747, 46.922328 ], + [ 9.1286833, 46.9221302 ], + [ 9.1285144, 46.9217891 ], + [ 9.1285147, 46.9215441 ], + [ 9.1285602, 46.9209068 ], + [ 9.1285071, 46.9205141 ], + [ 9.1285075, 46.9200959 ], + [ 9.1286052, 46.9191775 ], + [ 9.1289868, 46.9177964 ], + [ 9.129211, 46.9165152 ], + [ 9.1292964, 46.9159981 ], + [ 9.129272, 46.9159785 ], + [ 9.1289346, 46.9157061 ], + [ 9.1285937, 46.9153352 ], + [ 9.128103, 46.9146657 ], + [ 9.1280226, 46.9146948 ], + [ 9.1279782, 46.9147171 ], + [ 9.1279008, 46.9147693 ], + [ 9.1278389, 46.914812 ], + [ 9.1277723, 46.9148486 ], + [ 9.1277077, 46.9148758 ], + [ 9.1276206, 46.9149065 ], + [ 9.1275085, 46.9149345 ], + [ 9.127401, 46.9149608 ], + [ 9.1271472, 46.9150048 ], + [ 9.1269989, 46.9150286 ], + [ 9.1269518, 46.9150386 ], + [ 9.1269053, 46.9150672 ], + [ 9.1267167, 46.9151736 ], + [ 9.1266568, 46.9152085 ], + [ 9.1266055, 46.9152279 ], + [ 9.1265426, 46.9152412 ], + [ 9.1262708, 46.9152854 ], + [ 9.1261181, 46.915314 ], + [ 9.1259906, 46.9153499 ], + [ 9.1259031, 46.9153682 ], + [ 9.1258246, 46.9153848 ], + [ 9.1257709, 46.9154026 ], + [ 9.1257244, 46.9154327 ], + [ 9.1256802, 46.9154612 ], + [ 9.1255662, 46.9154985 ], + [ 9.1254432, 46.915539 ], + [ 9.1253311, 46.9155638 ], + [ 9.1252233, 46.9155825 ], + [ 9.1251219, 46.9155901 ], + [ 9.1249911, 46.9155952 ], + [ 9.1248612, 46.9156002 ], + [ 9.1247279, 46.9155784 ], + [ 9.1246009, 46.9155586 ], + [ 9.1244826, 46.9155325 ], + [ 9.1243872, 46.9155138 ], + [ 9.1242651, 46.9155079 ], + [ 9.1240979, 46.9155057 ], + [ 9.1240168, 46.9155116 ], + [ 9.123976, 46.9155091 ], + [ 9.1239687, 46.9155042 ], + [ 9.1239484, 46.9154909 ], + [ 9.1239447, 46.9154739 ], + [ 9.1239378, 46.9154415 ], + [ 9.1238983, 46.9154065 ], + [ 9.1238222, 46.9153566 ], + [ 9.123781, 46.9153371 ], + [ 9.1236996, 46.9153352 ], + [ 9.123605, 46.9153373 ], + [ 9.1235484, 46.9152903 ], + [ 9.1235766, 46.9152453 ], + [ 9.1235792, 46.915241 ], + [ 9.1236143, 46.915208 ], + [ 9.1237171, 46.9151724 ], + [ 9.1237656, 46.9151361 ], + [ 9.1237928, 46.9150646 ], + [ 9.1238615, 46.9149522 ], + [ 9.1238979, 46.9148882 ], + [ 9.1239594, 46.9148331 ], + [ 9.1241833, 46.9146998 ], + [ 9.1242518, 46.9146524 ], + [ 9.1243164, 46.914554 ], + [ 9.1243367, 46.9144794 ], + [ 9.1243744, 46.914386 ], + [ 9.1244142, 46.9142879 ], + [ 9.1244137, 46.9141982 ], + [ 9.124414699999999, 46.9140852 ], + [ 9.1244327, 46.9140138 ], + [ 9.1244605, 46.9139623 ], + [ 9.1245039, 46.9139075 ], + [ 9.1245201, 46.9138485 ], + [ 9.1245049, 46.9137234 ], + [ 9.124516, 46.9136458 ], + [ 9.124547, 46.9136001 ], + [ 9.1245697, 46.9135651 ], + [ 9.1245961, 46.9135021 ], + [ 9.1246285, 46.9134266 ], + [ 9.12464, 46.9133817 ], + [ 9.1246555, 46.9133404 ], + [ 9.1246951, 46.913287 ], + [ 9.1247568, 46.9132395 ], + [ 9.1247891, 46.9132015 ], + [ 9.1248133, 46.9131493 ], + [ 9.1248403, 46.9130708 ], + [ 9.1248561, 46.9129922 ], + [ 9.1248837, 46.9129266 ], + [ 9.1248942, 46.9128889 ], + [ 9.1249137, 46.9128576 ], + [ 9.1249139, 46.912857 ], + [ 9.124914, 46.9128571 ], + [ 9.1249408, 46.912814 ], + [ 9.1249656, 46.9127394 ], + [ 9.1249853, 46.9126667 ], + [ 9.1249855, 46.912631 ], + [ 9.1250721, 46.9125143 ], + [ 9.1251112, 46.9124642 ], + [ 9.1251873, 46.912299 ], + [ 9.1252826, 46.912098 ], + [ 9.1253645, 46.9119746 ], + [ 9.1253604, 46.9119127 ], + [ 9.1253722, 46.9118599 ], + [ 9.125364, 46.9117409 ], + [ 9.1253732, 46.9117256 ], + [ 9.1254154, 46.9116458 ], + [ 9.125466, 46.9115731 ], + [ 9.1255203, 46.9115346 ], + [ 9.1255457, 46.9114264 ], + [ 9.1255384, 46.9113857 ], + [ 9.1255571, 46.9113717 ], + [ 9.1256503, 46.9113349 ], + [ 9.1256687, 46.9113113 ], + [ 9.1256991, 46.9112881 ], + [ 9.1257148, 46.9112333 ], + [ 9.1257382, 46.9112024 ], + [ 9.1257963, 46.9111446 ], + [ 9.1259078, 46.9110103 ], + [ 9.1259299, 46.9109705 ], + [ 9.125939, 46.9109394 ], + [ 9.1259115, 46.9109176 ], + [ 9.1258866, 46.9108934 ], + [ 9.1258519, 46.9108316 ], + [ 9.1258353, 46.9108039 ], + [ 9.1258191, 46.9107769 ], + [ 9.125818, 46.9107386 ], + [ 9.1258188, 46.9107364 ], + [ 9.1258275, 46.9107109 ], + [ 9.1255973, 46.910676 ], + [ 9.1251371, 46.9107066 ], + [ 9.1247667, 46.9107209 ], + [ 9.1244306, 46.9107073 ], + [ 9.1241025, 46.9106599 ], + [ 9.1237492, 46.9106462 ], + [ 9.1234865, 46.9106669 ], + [ 9.123273, 46.9106371 ], + [ 9.1230518, 46.9105961 ], + [ 9.1227413, 46.9104812 ], + [ 9.1224548, 46.9104228 ], + [ 9.1221748, 46.9104715 ], + [ 9.1217955, 46.9105422 ], + [ 9.1214165, 46.9106241 ], + [ 9.1209146, 46.9106883 ], + [ 9.1204204, 46.9107581 ], + [ 9.1200838, 46.9107557 ], + [ 9.1198761, 46.910884 ], + [ 9.1196848, 46.9110124 ], + [ 9.119403, 46.9111852 ], + [ 9.1191047, 46.9113523 ], + [ 9.1188724, 46.9114579 ], + [ 9.118502, 46.911551 ], + [ 9.1181391, 46.9115992 ], + [ 9.1178764, 46.91162 ], + [ 9.1176296, 46.9116521 ], + [ 9.1172672, 46.9116891 ], + [ 9.1170929, 46.9117837 ], + [ 9.1167707, 46.9118998 ], + [ 9.1164646, 46.9120555 ], + [ 9.1162154, 46.9121947 ], + [ 9.1160814, 46.9123461 ], + [ 9.1159484, 46.9124749 ], + [ 9.1158481, 46.9125475 ], + [ 9.1156997, 46.9125803 ], + [ 9.1155596, 46.9126131 ], + [ 9.1153374, 46.9126453 ], + [ 9.1149911, 46.9127218 ], + [ 9.1145793, 46.912781 ], + [ 9.114143, 46.91284 ], + [ 9.113796, 46.9129502 ], + [ 9.1134167, 46.9130491 ], + [ 9.1130704, 46.9131031 ], + [ 9.1126835, 46.9131679 ], + [ 9.1124526, 46.9132396 ], + [ 9.1121792, 46.9133673 ], + [ 9.1119142, 46.9134727 ], + [ 9.1116912, 46.9135838 ], + [ 9.1113851, 46.9136888 ], + [ 9.1111287, 46.9137829 ], + [ 9.1108653, 46.9138374 ], + [ 9.1104947, 46.9138743 ], + [ 9.1102566, 46.913895 ], + [ 9.1099855, 46.9138875 ], + [ 9.1096889, 46.9139023 ], + [ 9.1094829, 46.9139799 ], + [ 9.1092756, 46.9140685 ], + [ 9.1088131, 46.9142119 ], + [ 9.1084425, 46.9142769 ], + [ 9.1081296, 46.9143198 ], + [ 9.1077914, 46.9143963 ], + [ 9.1074546, 46.9144108 ], + [ 9.1069371, 46.9143958 ], + [ 9.106224, 46.9143175 ], + [ 9.105305, 46.914215 ], + [ 9.1043981, 46.9109263 ], + [ 9.1018575, 46.9105528 ], + [ 9.0940843, 46.9126566 ], + [ 9.0939193, 46.9126553 ], + [ 9.0938137, 46.9126094 ], + [ 9.0937498, 46.9125075 ], + [ 9.0936859, 46.9123774 ], + [ 9.0936381, 46.9122924 ], + [ 9.0935837, 46.9121228 ], + [ 9.0935038, 46.911953 ], + [ 9.0933902, 46.911862 ], + [ 9.0932188, 46.9118382 ], + [ 9.0929815, 46.9117801 ], + [ 9.0928095, 46.9117111 ], + [ 9.0926563, 46.9115577 ], + [ 9.0924131, 46.911336 ], + [ 9.0921381, 46.9110916 ], + [ 9.0805577, 46.9138152 ], + [ 9.0804021, 46.9138253 ], + [ 9.0802549, 46.9137622 ], + [ 9.080085, 46.9136256 ], + [ 9.0798498, 46.9134209 ], + [ 9.0797301, 46.9132113 ], + [ 9.079585, 46.9130805 ], + [ 9.0794301, 46.9130061 ], + [ 9.0793068, 46.9129713 ], + [ 9.0791183, 46.9129529 ], + [ 9.0788482, 46.9129228 ], + [ 9.0786182, 46.9129154 ], + [ 9.0783894, 46.9128405 ], + [ 9.0782759, 46.9127494 ], + [ 9.0780407, 46.9125447 ], + [ 9.0779208, 46.9123802 ], + [ 9.0777586, 46.9122549 ], + [ 9.0775736, 46.912028 ], + [ 9.0773389, 46.9117838 ], + [ 9.0772769, 46.9115803 ], + [ 9.0770145, 46.9115615 ], + [ 9.0766794, 46.9114688 ], + [ 9.0763785, 46.9112634 ], + [ 9.0760274, 46.9111313 ], + [ 9.0754729, 46.9108959 ], + [ 9.0753185, 46.9107819 ], + [ 9.0751808, 46.9106795 ], + [ 9.0749943, 46.910537 ], + [ 9.0747508, 46.9103829 ], + [ 9.0744739, 46.9102344 ], + [ 9.0741892, 46.9100742 ], + [ 9.074018, 46.9099771 ], + [ 9.074011, 46.9099095 ], + [ 9.0741115, 46.9098143 ], + [ 9.0741951, 46.9097303 ], + [ 9.0743039, 46.9095845 ], + [ 9.074307, 46.9094153 ], + [ 9.0741456, 46.9092337 ], + [ 9.0732085, 46.9082906 ], + [ 9.0730233, 46.9081088 ], + [ 9.0729683, 46.9079448 ], + [ 9.0729379, 46.9078092 ], + [ 9.0730963, 46.9076751 ], + [ 9.0728546, 46.9073913 ], + [ 9.0726274, 46.9072318 ], + [ 9.0723923, 46.9070269 ], + [ 9.0720935, 46.9067541 ], + [ 9.0717303, 46.9063567 ], + [ 9.0716507, 46.9062206 ], + [ 9.071512, 46.9061406 ], + [ 9.0712994, 46.9060826 ], + [ 9.0710552, 46.905985 ], + [ 9.0708351, 46.9058705 ], + [ 9.0706239, 46.9057224 ], + [ 9.0703883, 46.905557 ], + [ 9.0703011, 46.9053872 ], + [ 9.07032, 46.905252 ], + [ 9.0701168, 46.9051265 ], + [ 9.0699632, 46.9049843 ], + [ 9.0699, 46.9048484 ], + [ 9.0698606, 46.9047129 ], + [ 9.0697478, 46.9045936 ], + [ 9.069586, 46.9044795 ], + [ 9.069514, 46.9043494 ], + [ 9.0694096, 46.9042076 ], + [ 9.069141, 46.9040364 ], + [ 9.0688236, 46.9038762 ], + [ 9.0684155, 46.9037321 ], + [ 9.0680152, 46.9035994 ], + [ 9.0675908, 46.9034553 ], + [ 9.0671832, 46.9032717 ], + [ 9.0667995, 46.9031166 ], + [ 9.0663193, 46.9028649 ], + [ 9.0659055, 46.9025854 ], + [ 9.0658769, 46.9023428 ], + [ 9.0658396, 46.9020887 ], + [ 9.0658359, 46.9018292 ], + [ 9.0658645, 46.9016095 ], + [ 9.0659427, 46.9013732 ], + [ 9.0660131, 46.9010974 ], + [ 9.0661247, 46.9008276 ], + [ 9.0662187, 46.9005971 ], + [ 9.0663713, 46.9003275 ], + [ 9.0665972, 46.9000642 ], + [ 9.0669817, 46.8996779 ], + [ 9.0670337, 46.8995261 ], + [ 9.0670866, 46.8993234 ], + [ 9.0671834, 46.8989689 ], + [ 9.0672778, 46.898727 ], + [ 9.0673559, 46.8984626 ], + [ 9.0673848, 46.8981978 ], + [ 9.0674559, 46.8979163 ], + [ 9.0675153, 46.8977927 ], + [ 9.0676582, 46.8976076 ], + [ 9.0677357, 46.8974052 ], + [ 9.0679617, 46.8971475 ], + [ 9.0681871, 46.8969236 ], + [ 9.0683216, 46.8967612 ], + [ 9.0683575, 46.896564 ], + [ 9.0683632, 46.8962652 ], + [ 9.0683425, 46.8960169 ], + [ 9.0683049, 46.8958022 ], + [ 9.0684551, 46.8956962 ], + [ 9.0686625, 46.8955569 ], + [ 9.0689433, 46.8954574 ], + [ 9.0691833, 46.8953633 ], + [ 9.0692511, 46.8952454 ], + [ 9.069287, 46.8950765 ], + [ 9.0692079, 46.8948504 ], + [ 9.0691532, 46.8946977 ], + [ 9.0691888, 46.8945456 ], + [ 9.0693051, 46.8944564 ], + [ 9.069382, 46.8942877 ], + [ 9.0693816, 46.8938422 ], + [ 9.0694207, 46.8934816 ], + [ 9.0695046, 46.8933525 ], + [ 9.0696792, 46.8932692 ], + [ 9.0698039, 46.8931348 ], + [ 9.0694465, 46.8924667 ], + [ 9.0693101, 46.89224 ], + [ 9.0692065, 46.8920982 ], + [ 9.0691349, 46.8919286 ], + [ 9.0691382, 46.891765 ], + [ 9.0691497, 46.8915509 ], + [ 9.0690294, 46.8913695 ], + [ 9.0688526, 46.8911652 ], + [ 9.0687979, 46.8910124 ], + [ 9.0688174, 46.8908435 ], + [ 9.0687448, 46.8907471 ], + [ 9.0686399, 46.8906447 ], + [ 9.0685925, 46.8905146 ], + [ 9.068538, 46.8903394 ], + [ 9.0684177, 46.8901863 ], + [ 9.0683963, 46.8899944 ], + [ 9.0683995, 46.8898026 ], + [ 9.0684022, 46.889673 ], + [ 9.0683297, 46.8895822 ], + [ 9.0681829, 46.8895022 ], + [ 9.067947, 46.8893764 ], + [ 9.0675397, 46.8891984 ], + [ 9.0672545, 46.8890723 ], + [ 9.0670932, 46.8888906 ], + [ 9.0669893, 46.8887376 ], + [ 9.0669501, 46.8886075 ], + [ 9.0669524, 46.8884947 ], + [ 9.0669292, 46.8883761 ], + [ 9.0668487, 46.888291 ], + [ 9.0667183, 46.8882393 ], + [ 9.0665793, 46.8881988 ], + [ 9.0664495, 46.8881357 ], + [ 9.0663197, 46.888022 ], + [ 9.066281, 46.8878807 ], + [ 9.0662429, 46.8877337 ], + [ 9.0661455, 46.8876315 ], + [ 9.0659819, 46.8875908 ], + [ 9.0657784, 46.8874821 ], + [ 9.0654952, 46.8872827 ], + [ 9.0652442, 46.8870664 ], + [ 9.0650182, 46.8868336 ], + [ 9.0647103, 46.8865775 ], + [ 9.0647366, 46.8864705 ], + [ 9.0648626, 46.8863248 ], + [ 9.06499, 46.8860889 ], + [ 9.0651608, 46.885718 ], + [ 9.0650549, 46.8856326 ], + [ 9.0649506, 46.8855191 ], + [ 9.0648308, 46.8853264 ], + [ 9.0647369, 46.8850438 ], + [ 9.0647409, 46.8847957 ], + [ 9.0648431, 46.8845934 ], + [ 9.0649375, 46.8843516 ], + [ 9.0651291, 46.8841782 ], + [ 9.0653284, 46.8840444 ], + [ 9.0654134, 46.8838984 ], + [ 9.0654165, 46.8837011 ], + [ 9.0653131, 46.8835367 ], + [ 9.065103, 46.8833152 ], + [ 9.06491, 46.8830882 ], + [ 9.0647561, 46.882963 ], + [ 9.0647508, 46.8828163 ], + [ 9.0647361, 46.8826809 ], + [ 9.0646227, 46.882618 ], + [ 9.0645507, 46.8825159 ], + [ 9.0645867, 46.8823245 ], + [ 9.0646065, 46.882138499999996 ], + [ 9.064552, 46.8819633 ], + [ 9.0645048, 46.8818388 ], + [ 9.0645413, 46.8816079 ], + [ 9.0646456, 46.8812873 ], + [ 9.0647412, 46.8809778 ], + [ 9.0648865, 46.8806292 ], + [ 9.0650311, 46.8803371 ], + [ 9.0654986, 46.8799063 ], + [ 9.0655496, 46.8798277 ], + [ 9.0655512, 46.8797206 ], + [ 9.0654729, 46.8794889 ], + [ 9.0653712, 46.8792173 ], + [ 9.0652842, 46.879025 ], + [ 9.0653121, 46.8788335 ], + [ 9.0653303, 46.8787039 ], + [ 9.0653098, 46.8784613 ], + [ 9.0652643, 46.8782297 ], + [ 9.0651786, 46.8779979 ], + [ 9.0651262, 46.877676 ], + [ 9.0651872, 46.877496 ], + [ 9.0651726, 46.8773944 ], + [ 9.065068, 46.8772414 ], + [ 9.0649813, 46.8770321 ], + [ 9.0649209, 46.8767158 ], + [ 9.0648457, 46.876343 ], + [ 9.0647336, 46.8761617 ], + [ 9.0645954, 46.876093 ], + [ 9.06449, 46.8760246 ], + [ 9.0644662, 46.875968 ], + [ 9.0644598, 46.8758665 ], + [ 9.0644714, 46.8756804 ], + [ 9.0645412, 46.8751686 ], + [ 9.0638196, 46.8748402 ], + [ 9.0613264, 46.8739578 ], + [ 9.0600507, 46.8729862 ], + [ 9.0592422, 46.8722779 ], + [ 9.0578044, 46.8711466 ], + [ 9.0574585, 46.8705487 ], + [ 9.0572488, 46.8701198 ], + [ 9.0571407, 46.8700134 ], + [ 9.0568743, 46.8698822 ], + [ 9.0565181, 46.8698153 ], + [ 9.0557874, 46.8695107 ], + [ 9.0553854, 46.8692285 ], + [ 9.0550735, 46.868891 ], + [ 9.0549076, 46.8686054 ], + [ 9.0547055, 46.8684283 ], + [ 9.053978, 46.8682317 ], + [ 9.0526613, 46.8680703 ], + [ 9.0520238, 46.8678094 ], + [ 9.0515306, 46.8675464 ], + [ 9.0506756, 46.8674685 ], + [ 9.0503084, 46.8674737 ], + [ 9.0483682, 46.8670781 ], + [ 9.0479699, 46.8669218 ], + [ 9.0473691, 46.8665704 ], + [ 9.0469645, 46.8661982 ], + [ 9.046563, 46.8659339 ], + [ 9.0461905, 46.8657592 ], + [ 9.0457267, 46.8656038 ], + [ 9.0452945, 46.865187 ], + [ 9.0451886, 46.8649625 ], + [ 9.044437, 46.8660144 ], + [ 9.0443703, 46.866059 ], + [ 9.0442544, 46.8661033 ], + [ 9.0440563, 46.8661694 ], + [ 9.0437842, 46.8662575 ], + [ 9.0434217, 46.8663337 ], + [ 9.0431658, 46.8663882 ], + [ 9.0428782, 46.8664198 ], + [ 9.0426646, 46.866435 ], + [ 9.042523599999999, 46.8665185 ], + [ 9.042333, 46.8666128 ], + [ 9.0421844, 46.8666626 ], + [ 9.0420369, 46.866667 ], + [ 9.0419134, 46.8666491 ], + [ 9.0405047, 46.8674166 ], + [ 9.0402656, 46.8674823 ], + [ 9.0400433, 46.8675314 ], + [ 9.0398379, 46.8675466 ], + [ 9.039558, 46.867589699999996 ], + [ 9.0393428, 46.8676613 ], + [ 9.0390952, 46.867744 ], + [ 9.0388717, 46.8678381 ], + [ 9.0386151, 46.8679771 ], + [ 9.0384897, 46.8681172 ], + [ 9.0383481, 46.8682063 ], + [ 9.0382478, 46.8683352 ], + [ 9.0381801, 46.8684305 ], + [ 9.0380711, 46.8685425 ], + [ 9.0379547, 46.8686261 ], + [ 9.0378132, 46.8687774 ], + [ 9.0375039, 46.8690738 ], + [ 9.0372968, 46.8691962 ], + [ 9.0370069, 46.8693463 ], + [ 9.0366754, 46.8695017 ], + [ 9.0364017, 46.8696461 ], + [ 9.0361534, 46.8697626 ], + [ 9.0360531, 46.8698916 ], + [ 9.0359602, 46.8700205 ], + [ 9.0358022, 46.8701378 ], + [ 9.0356607, 46.8702325 ], + [ 9.0354957, 46.8703102 ], + [ 9.0352976, 46.8703763 ], + [ 9.0351151, 46.8704426 ], + [ 9.034892, 46.8705254 ], + [ 9.0347018, 46.8706086 ], + [ 9.034496, 46.8706633 ], + [ 9.0342575, 46.8706953 ], + [ 9.0340261, 46.8707725 ], + [ 9.0336225, 46.8708483 ], + [ 9.0332197, 46.8708677 ], + [ 9.0325714, 46.8708795 ], + [ 9.0323326, 46.871842 ], + [ 9.0322413, 46.8718865 ], + [ 9.0320742, 46.8720318 ], + [ 9.0319641, 46.872217 ], + [ 9.0318644, 46.8723121 ], + [ 9.0317958, 46.8724582 ], + [ 9.0317279, 46.8726043 ], + [ 9.0316674, 46.872773 ], + [ 9.0315403, 46.8729694 ], + [ 9.0314154, 46.8730981 ], + [ 9.0312644, 46.8732605 ], + [ 9.0312302, 46.8733504 ], + [ 9.0312021, 46.8735363 ], + [ 9.0311248, 46.87375 ], + [ 9.0309976, 46.8739689 ], + [ 9.0308548, 46.8741313 ], + [ 9.0305972, 46.8743212 ], + [ 9.0304558, 46.8744215 ], + [ 9.0302981, 46.8745217 ], + [ 9.0300819, 46.8746442 ], + [ 9.0298499, 46.8747834 ], + [ 9.0297736, 46.8748955 ], + [ 9.0296889, 46.8750527 ], + [ 9.0296289, 46.8751877 ], + [ 9.0294697, 46.8753781 ], + [ 9.0293441, 46.8755407 ], + [ 9.0291436, 46.8757196 ], + [ 9.0289435, 46.8758872 ], + [ 9.028827, 46.8759653 ], + [ 9.028784, 46.8760946 ], + [ 9.028698, 46.8762914 ], + [ 9.0285886, 46.8764484 ], + [ 9.0284296, 46.8766164 ], + [ 9.0282717, 46.8767392 ], + [ 9.0280391, 46.8768615 ], + [ 9.0277747, 46.876989 ], + [ 9.0274608, 46.8770769 ], + [ 9.02718, 46.8771761 ], + [ 9.0269074, 46.8772754 ], + [ 9.0266505, 46.8773807 ], + [ 9.026427, 46.877503 ], + [ 9.0264001, 46.8776211 ], + [ 9.0264209, 46.8778525 ], + [ 9.0264733, 46.8781011 ], + [ 9.0264925, 46.8784171 ], + [ 9.0264613, 46.8787777 ], + [ 9.0264132, 46.8791777 ], + [ 9.0262815, 46.8796616 ], + [ 9.0262289, 46.879853 ], + [ 9.026323, 46.8800963 ], + [ 9.0264104, 46.8802491 ], + [ 9.0265389, 46.8804081 ], + [ 9.0266346, 46.880595 ], + [ 9.0265741, 46.8807412 ], + [ 9.0265542, 46.880927 ], + [ 9.0265672, 46.8811471 ], + [ 9.0266111, 46.8814125 ], + [ 9.0266964, 46.8816895 ], + [ 9.0267987, 46.8819609 ], + [ 9.0268122, 46.8821133 ], + [ 9.0268103, 46.8822148 ], + [ 9.0268972, 46.8824354 ], + [ 9.0270152, 46.8826846 ], + [ 9.0271343, 46.8829111 ], + [ 9.027116, 46.8830406 ], + [ 9.0271206, 46.8832268 ], + [ 9.0270973, 46.8836044 ], + [ 9.0270668, 46.8839594 ], + [ 9.0272016, 46.88422 ], + [ 9.0273619, 46.8844524 ], + [ 9.0276606, 46.8847084 ], + [ 9.0286168, 46.8854547 ], + [ 9.0288763, 46.885631599999996 ], + [ 9.0290286, 46.8858189 ], + [ 9.0290426, 46.8859599 ], + [ 9.0289982, 46.8861513 ], + [ 9.0289778, 46.8863486 ], + [ 9.0289502, 46.8865233 ], + [ 9.0290626, 46.8866651 ], + [ 9.0291666, 46.886852 ], + [ 9.0292539, 46.8870049 ], + [ 9.0293334, 46.8871409 ], + [ 9.0294119, 46.8873558 ], + [ 9.0294504, 46.8874915 ], + [ 9.0295043, 46.8877062 ], + [ 9.0295243, 46.8879375 ], + [ 9.029496, 46.8881743 ], + [ 9.0294265, 46.8883484 ], + [ 9.0293342, 46.8885 ], + [ 9.0292247, 46.8886232 ], + [ 9.0291, 46.8887351 ], + [ 9.0289163, 46.8889028 ], + [ 9.0287077, 46.8890591 ], + [ 9.0285407, 46.88921 ], + [ 9.028382, 46.8893611 ], + [ 9.0283222, 46.8895297 ], + [ 9.028285, 46.8897438 ], + [ 9.0282411, 46.8899239 ], + [ 9.0281309, 46.8901091 ], + [ 9.0280627, 46.890244 ], + [ 9.0279274, 46.8904403 ], + [ 9.0278667, 46.8906315 ], + [ 9.0278134, 46.8908848 ], + [ 9.0278082, 46.891178 ], + [ 9.0277699, 46.8914653 ], + [ 9.0278052, 46.8917702 ], + [ 9.0277405, 46.8921927 ], + [ 9.0284693, 46.8923168 ], + [ 9.0287314, 46.8923583 ], + [ 9.0290115, 46.8923153 ], + [ 9.0293734, 46.8922674 ], + [ 9.0299077, 46.8922209 ], + [ 9.03027, 46.8921842 ], + [ 9.0306155, 46.8921361 ], + [ 9.0308953, 46.8921102 ], + [ 9.0311163, 46.8921514 ], + [ 9.0313448, 46.892249 ], + [ 9.0316305, 46.8923415 ], + [ 9.0318756, 46.8924168 ], + [ 9.0321116, 46.89252 ], + [ 9.0322413, 46.8926057 ], + [ 9.0323878, 46.8926801 ], + [ 9.0325344, 46.8927828 ], + [ 9.0326805, 46.8928685 ], + [ 9.0328511, 46.8929488 ], + [ 9.0330885, 46.8930183 ], + [ 9.0332269, 46.8930927 ], + [ 9.0334535, 46.8932636 ], + [ 9.0337547, 46.893407 ], + [ 9.0340151, 46.8935612 ], + [ 9.0343159, 46.893744 ], + [ 9.0348285, 46.8940187 ], + [ 9.0350071, 46.8941217 ], + [ 9.0351461, 46.8941622 ], + [ 9.0353093, 46.8942142 ], + [ 9.0354806, 46.8942663 ], + [ 9.0356767, 46.8943242 ], + [ 9.0359216, 46.8943937 ], + [ 9.0360853, 46.8944346 ], + [ 9.0362574, 46.8944585 ], + [ 9.0364534, 46.8945388 ], + [ 9.0366656, 46.8946139 ], + [ 9.0368371, 46.8946715 ], + [ 9.037049, 46.8947352 ], + [ 9.0373356, 46.8947995 ], + [ 9.0376136, 46.8948524 ], + [ 9.0378023, 46.8948821 ], + [ 9.0380562, 46.8948953 ], + [ 9.0382041, 46.8949304 ], + [ 9.0383589, 46.8949767 ], + [ 9.0385141, 46.8950116 ], + [ 9.0387357, 46.8950416 ], + [ 9.0390225, 46.8950889 ], + [ 9.0393257, 46.8951307 ], + [ 9.0395051, 46.8951773 ], + [ 9.0396759, 46.8952688 ], + [ 9.0398962, 46.8953664 ], + [ 9.0400592, 46.8954409 ], + [ 9.0401806, 46.8955208 ], + [ 9.0403019, 46.8956289 ], + [ 9.040457, 46.8957146 ], + [ 9.0405705, 46.8957776 ], + [ 9.0407671, 46.895796 ], + [ 9.0409306, 46.8958593 ], + [ 9.0409874, 46.8958936 ], + [ 9.0410691, 46.8959112 ], + [ 9.0412006, 46.8959178 ], + [ 9.0412907, 46.8959128 ], + [ 9.0413894, 46.8958967 ], + [ 9.041456, 46.8958747 ], + [ 9.0415053, 46.895875 ], + [ 9.0415711, 46.8958812 ], + [ 9.041644, 46.8959044 ], + [ 9.041718, 46.8959105 ], + [ 9.0417834, 46.8959054 ], + [ 9.0418909, 46.895878 ], + [ 9.0419578, 46.8958109 ], + [ 9.0420658, 46.8957722 ], + [ 9.0421634, 46.8958012 ], + [ 9.0422363, 46.8958525 ], + [ 9.0423173, 46.8959264 ], + [ 9.0423732, 46.8960397 ], + [ 9.042362, 46.8961862 ], + [ 9.0423265, 46.8963438 ], + [ 9.0422668, 46.8964618 ], + [ 9.0421824, 46.8966021 ], + [ 9.0421723, 46.8967035 ], + [ 9.04208, 46.896827 ], + [ 9.0419468, 46.8969274 ], + [ 9.0417801, 46.8970333 ], + [ 9.0417609, 46.8971854 ], + [ 9.0416773, 46.8972694 ], + [ 9.0415939, 46.8973363 ], + [ 9.0415027, 46.8974145 ], + [ 9.0414524, 46.8974875 ], + [ 9.041442, 46.8976059 ], + [ 9.0414394, 46.897713 ], + [ 9.0414041, 46.8978763 ], + [ 9.0413285, 46.8979547 ], + [ 9.0412121, 46.8980383 ], + [ 9.0410702, 46.8981782 ], + [ 9.0410276, 46.8982907 ], + [ 9.0410241, 46.8984486 ], + [ 9.041014, 46.8985499 ], + [ 9.0409714, 46.8986625 ], + [ 9.0409197, 46.8987974 ], + [ 9.0409425, 46.8989047 ], + [ 9.0410221, 46.8990406 ], + [ 9.0410697, 46.8991257 ], + [ 9.0411171, 46.8992558 ], + [ 9.041139, 46.8994138 ], + [ 9.0411179, 46.8996674 ], + [ 9.041041, 46.8998416 ], + [ 9.0408256, 46.8999358 ], + [ 9.0407596, 46.8999523 ], + [ 9.0406919, 46.9000476 ], + [ 9.0406498, 46.9001488 ], + [ 9.0406388, 46.9003009 ], + [ 9.0406525, 46.9004589 ], + [ 9.0407061, 46.9006624 ], + [ 9.0408103, 46.9007986 ], + [ 9.0408737, 46.9009456 ], + [ 9.0409619, 46.9010705 ], + [ 9.0409599, 46.9011662 ], + [ 9.0409185, 46.9012111 ], + [ 9.0408748, 46.9013405 ], + [ 9.0409062, 46.9014308 ], + [ 9.0410606, 46.9015167 ], + [ 9.0411908, 46.9015911 ], + [ 9.041222, 46.9017041 ], + [ 9.0412031, 46.9018392 ], + [ 9.0412329, 46.9019861 ], + [ 9.0412307, 46.9021327 ], + [ 9.0411717, 46.9022168 ], + [ 9.0410705, 46.9023739 ], + [ 9.0409928, 46.9025482 ], + [ 9.0409583, 46.9026833 ], + [ 9.0409297, 46.9028805 ], + [ 9.0408865, 46.9030267 ], + [ 9.0408271, 46.9030995 ], + [ 9.0407123, 46.9031269 ], + [ 9.0406128, 46.9031486 ], + [ 9.0405377, 46.9032439 ], + [ 9.0405038, 46.9032888 ], + [ 9.0404208, 46.9033389 ], + [ 9.04028, 46.9034055 ], + [ 9.0401308, 46.9034663 ], + [ 9.0399333, 46.9034986 ], + [ 9.0398094, 46.903526 ], + [ 9.0397349, 46.9035874 ], + [ 9.0396599, 46.9036319 ], + [ 9.0395925, 46.9037103 ], + [ 9.0395269, 46.903738 ], + [ 9.0394197, 46.9037485 ], + [ 9.0392789, 46.9037868 ], + [ 9.0391541, 46.903893 ], + [ 9.0391277, 46.904 ], + [ 9.0390919, 46.9041464 ], + [ 9.0390483, 46.9042814 ], + [ 9.038955, 46.9044555 ], + [ 9.0387961, 46.9046291 ], + [ 9.0385722, 46.9047683 ], + [ 9.0384468, 46.9048576 ], + [ 9.0383712, 46.9049641 ], + [ 9.0382715, 46.905031 ], + [ 9.0380981, 46.905103 ], + [ 9.0378828, 46.9052029 ], + [ 9.0378234, 46.9053039 ], + [ 9.0377366, 46.9055288 ], + [ 9.0376523, 46.9056748 ], + [ 9.0374861, 46.9057976 ], + [ 9.0374178, 46.9059268 ], + [ 9.0372519, 46.9060326 ], + [ 9.0371259, 46.9061556 ], + [ 9.0370656, 46.9063357 ], + [ 9.0369731, 46.9064534 ], + [ 9.0367993, 46.906514 ], + [ 9.0365839, 46.9066083 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "JBG0022", + "country" : "CHE", + "name" : [ + { + "text" : "Eidgenössisches Jagdbanngebiet Kärpf", + "lang" : "de-CH" + }, + { + "text" : "District franc fédéral Kärpf", + "lang" : "fr-CH" + }, + { + "text" : "Bandita federale di caccia Kärpf", + "lang" : "it-CH" + }, + { + "text" : "Federal Game Reserve Kärpf", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8761839, 47.4522457 ], + [ 7.8763753, 47.4526023 ], + [ 7.8766035, 47.4530331 ], + [ 7.8766037, 47.4530335 ], + [ 7.8767546, 47.453306 ], + [ 7.876818, 47.4534234 ], + [ 7.8767723, 47.4539303 ], + [ 7.8771981, 47.453679 ], + [ 7.8777533, 47.4531142 ], + [ 7.8781001, 47.4527519 ], + [ 7.8780466, 47.4524034 ], + [ 7.8784847, 47.4519885 ], + [ 7.8785821, 47.451889 ], + [ 7.8783806, 47.4519162 ], + [ 7.8783766, 47.4519168 ], + [ 7.878255, 47.4519364 ], + [ 7.8782525, 47.4519368 ], + [ 7.8781829, 47.4519336 ], + [ 7.8781475, 47.4519283 ], + [ 7.8781288, 47.4519256 ], + [ 7.8781027, 47.4519161 ], + [ 7.8782075, 47.4517837 ], + [ 7.878252, 47.4517275 ], + [ 7.8782649, 47.4517115 ], + [ 7.8782784, 47.4516957 ], + [ 7.8782923, 47.4516802 ], + [ 7.8783066, 47.4516648 ], + [ 7.8783214, 47.4516496 ], + [ 7.8783367, 47.4516346 ], + [ 7.8784243, 47.4515503 ], + [ 7.8784261, 47.4515485 ], + [ 7.8785024, 47.451471 ], + [ 7.8785157, 47.4514593 ], + [ 7.8785275, 47.4514489 ], + [ 7.8785405, 47.45144 ], + [ 7.8785542, 47.4514316 ], + [ 7.8785685999999995, 47.4514238 ], + [ 7.8785836, 47.4514165 ], + [ 7.8785992, 47.4514097 ], + [ 7.8786153, 47.4514036 ], + [ 7.8786318, 47.451398 ], + [ 7.8786399, 47.4513957 ], + [ 7.8785902, 47.4513855 ], + [ 7.8785541, 47.4513489 ], + [ 7.8786816, 47.451377 ], + [ 7.8786819999999995, 47.4513771 ], + [ 7.8786824, 47.4513768 ], + [ 7.8786822999999995, 47.4513765 ], + [ 7.8786687, 47.4513032 ], + [ 7.8786568, 47.4512182 ], + [ 7.8786685, 47.4511735 ], + [ 7.8787239, 47.4511139 ], + [ 7.8787381, 47.4510506 ], + [ 7.8786995, 47.4510179 ], + [ 7.8786819999999995, 47.451016 ], + [ 7.8786452, 47.451012 ], + [ 7.8785372, 47.4510458 ], + [ 7.8783858, 47.4511131 ], + [ 7.8783373999999995, 47.4511454 ], + [ 7.8782929, 47.4511751 ], + [ 7.8782455, 47.4512067 ], + [ 7.8781943, 47.4512527 ], + [ 7.8779522, 47.4511899 ], + [ 7.8780570999999995, 47.4508662 ], + [ 7.8778296, 47.4506943 ], + [ 7.87779, 47.4506644 ], + [ 7.8776863, 47.4507686 ], + [ 7.8776600000000006, 47.4509502 ], + [ 7.8774903, 47.451206 ], + [ 7.8773842, 47.4513661 ], + [ 7.8770375999999995, 47.4516467 ], + [ 7.876767, 47.4518323 ], + [ 7.8764827, 47.4520416 ], + [ 7.8761834, 47.4522449 ], + [ 7.8761839, 47.4522457 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr067", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Löli", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Löli", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Löli", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Löli", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6389205, 47.540144 ], + [ 7.6378778, 47.540322 ], + [ 7.6368541, 47.5404949 ], + [ 7.6358262, 47.5406659 ], + [ 7.6347954, 47.5408342 ], + [ 7.6335308, 47.5410512 ], + [ 7.6335591, 47.5413943 ], + [ 7.6335945, 47.5418106 ], + [ 7.6336607, 47.5425248 ], + [ 7.6330078, 47.5425766 ], + [ 7.6326863, 47.5425618 ], + [ 7.6322647, 47.5432488 ], + [ 7.6323108, 47.5434689 ], + [ 7.6324115, 47.5439577 ], + [ 7.6327052, 47.5451324 ], + [ 7.6330518, 47.5457548 ], + [ 7.6331066, 47.5458444 ], + [ 7.6333059, 47.5461995 ], + [ 7.6336177, 47.5467755 ], + [ 7.6337756, 47.5470445 ], + [ 7.633972, 47.5473983 ], + [ 7.633945, 47.5474355 ], + [ 7.633958, 47.5474524 ], + [ 7.6342053, 47.547451 ], + [ 7.6363223, 47.5471522 ], + [ 7.6367253999999996, 47.547081 ], + [ 7.6370917, 47.5470162 ], + [ 7.6381149, 47.5468347 ], + [ 7.6394003, 47.5466061 ], + [ 7.6397645, 47.5465389 ], + [ 7.6401275, 47.546464 ], + [ 7.6404849, 47.5463824 ], + [ 7.6408387, 47.5462942 ], + [ 7.6411941, 47.5461987 ], + [ 7.6414352, 47.5461283 ], + [ 7.6416931, 47.5460487 ], + [ 7.6419398, 47.5459678 ], + [ 7.6423173, 47.5458367 ], + [ 7.6425494, 47.5457184 ], + [ 7.6428195, 47.5456451 ], + [ 7.6431852, 47.5454924 ], + [ 7.6435424, 47.5453336 ], + [ 7.6439927, 47.5451227 ], + [ 7.6450679, 47.5446189 ], + [ 7.6459394, 47.5442107 ], + [ 7.6470346, 47.5436976 ], + [ 7.6481286, 47.543185 ], + [ 7.6492239, 47.5426718 ], + [ 7.6499503, 47.5423257 ], + [ 7.6501547, 47.5421871 ], + [ 7.650411, 47.5420934 ], + [ 7.6516986, 47.5414368 ], + [ 7.6528221, 47.5408632 ], + [ 7.6538855, 47.5403214 ], + [ 7.654949, 47.5397781 ], + [ 7.6555719, 47.5394613 ], + [ 7.6566216, 47.5389259 ], + [ 7.6573817, 47.5385375 ], + [ 7.6576853, 47.5383823 ], + [ 7.6579264, 47.5382632 ], + [ 7.6580571, 47.5382253 ], + [ 7.6580249, 47.5380318 ], + [ 7.6580207, 47.5380067 ], + [ 7.6582656, 47.5372458 ], + [ 7.6585162, 47.5364948 ], + [ 7.6587676, 47.5358611 ], + [ 7.6589938, 47.5352267 ], + [ 7.6591442, 47.5347173 ], + [ 7.6592001, 47.5343134 ], + [ 7.6588252, 47.5345365 ], + [ 7.6582298, 47.534891 ], + [ 7.6574304, 47.5353014 ], + [ 7.6568731, 47.5355459 ], + [ 7.6563757, 47.5357301 ], + [ 7.6554079999999995, 47.5360883 ], + [ 7.6544691, 47.5364288 ], + [ 7.6536863, 47.5366797 ], + [ 7.6530277, 47.5368987 ], + [ 7.6520671, 47.5372117 ], + [ 7.651336, 47.5374143 ], + [ 7.6503454, 47.5376903 ], + [ 7.6493467, 47.5379685 ], + [ 7.6492523, 47.5380911 ], + [ 7.648568, 47.5381782 ], + [ 7.6479348, 47.5383483 ], + [ 7.6476477, 47.5384091 ], + [ 7.647117, 47.5385431 ], + [ 7.6464165, 47.5387215 ], + [ 7.6458601999999996, 47.5388474 ], + [ 7.6450884, 47.5390127 ], + [ 7.6440679, 47.5392265 ], + [ 7.6430342, 47.5394206 ], + [ 7.6420082, 47.5396083 ], + [ 7.6409763, 47.5397899 ], + [ 7.639949, 47.5399684 ], + [ 7.6389205, 47.540144 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns017", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Muttenzer Hard", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Muttenzer Hard", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Muttenzer Hard", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Muttenzer Hard", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.6526073, 47.3670071 ], + [ 8.6522924, 47.3672856 ], + [ 8.6522174, 47.3675392 ], + [ 8.6522481, 47.367663 ], + [ 8.6524374, 47.36784 ], + [ 8.6524736, 47.367867 ], + [ 8.6526691, 47.368013 ], + [ 8.6531515, 47.3682625 ], + [ 8.6533244, 47.3682993 ], + [ 8.6533349, 47.3682975 ], + [ 8.6535104, 47.3682677 ], + [ 8.65387, 47.3681263 ], + [ 8.6540225, 47.3681013 ], + [ 8.6540692, 47.3680936 ], + [ 8.6540707, 47.3680938 ], + [ 8.6542908, 47.3681182 ], + [ 8.6543984, 47.3681918 ], + [ 8.6543787, 47.3683143 ], + [ 8.6542789, 47.3684089 ], + [ 8.6540976, 47.3685287 ], + [ 8.6539535, 47.3686534 ], + [ 8.6539313, 47.3686968 ], + [ 8.6538447, 47.3688666 ], + [ 8.6537909, 47.3689609 ], + [ 8.653763, 47.3690098 ], + [ 8.6537624, 47.3692734 ], + [ 8.6537234, 47.3693263 ], + [ 8.6536585, 47.3694142 ], + [ 8.6535337, 47.3695294 ], + [ 8.6534586, 47.3695986 ], + [ 8.6533483, 47.3698971 ], + [ 8.6532505, 47.3704007 ], + [ 8.6531181, 47.370867 ], + [ 8.653199, 47.3710285 ], + [ 8.6532148, 47.3710432 ], + [ 8.6534184, 47.371233 ], + [ 8.6534543, 47.3712664 ], + [ 8.6537514, 47.3714054 ], + [ 8.6537953, 47.3714429 ], + [ 8.6539253, 47.371554 ], + [ 8.6539823, 47.3716027 ], + [ 8.6541172, 47.3716699 ], + [ 8.6544216, 47.3718762 ], + [ 8.6546745, 47.3720506 ], + [ 8.6548225, 47.3720949 ], + [ 8.6552262, 47.3721482 ], + [ 8.6555164, 47.3721568 ], + [ 8.6556352, 47.3721987 ], + [ 8.6557502, 47.3723055 ], + [ 8.6558911, 47.3723274 ], + [ 8.6559021, 47.3723258 ], + [ 8.6561115, 47.3722963 ], + [ 8.6561121, 47.3722964 ], + [ 8.6561595, 47.3723093 ], + [ 8.6561474, 47.3723589 ], + [ 8.6559142, 47.3725295 ], + [ 8.655815, 47.3725603 ], + [ 8.655809, 47.3725621 ], + [ 8.6555097, 47.3725556 ], + [ 8.6555043, 47.3725555 ], + [ 8.6553898, 47.3725827 ], + [ 8.6553667, 47.372619 ], + [ 8.6557533, 47.3727867 ], + [ 8.6557603, 47.3727832 ], + [ 8.6558362, 47.3727459 ], + [ 8.656016, 47.3726574 ], + [ 8.6560843, 47.3726238 ], + [ 8.656172399999999, 47.3725853 ], + [ 8.6565, 47.3724937 ], + [ 8.656506199999999, 47.3724938 ], + [ 8.6566246, 47.3724969 ], + [ 8.6567803, 47.3725339 ], + [ 8.6578127, 47.3729179 ], + [ 8.6587633, 47.3731409 ], + [ 8.6592355, 47.3732924 ], + [ 8.6596311, 47.3733926 ], + [ 8.6600635, 47.3734552 ], + [ 8.6602655, 47.3734845 ], + [ 8.6610274, 47.3735949 ], + [ 8.6612334, 47.3736248 ], + [ 8.6612621, 47.3736223 ], + [ 8.6614422, 47.3736064 ], + [ 8.6616088, 47.3735398 ], + [ 8.6620586, 47.3734056 ], + [ 8.6626285, 47.3733087 ], + [ 8.662961, 47.3732035 ], + [ 8.6635306, 47.3728646 ], + [ 8.6638392, 47.3726383 ], + [ 8.6641754, 47.3725142 ], + [ 8.6642974, 47.3724076 ], + [ 8.6643147, 47.3723553 ], + [ 8.6645025, 47.3721698 ], + [ 8.6652843, 47.3716176 ], + [ 8.6656112, 47.3714384 ], + [ 8.6657488, 47.3713209 ], + [ 8.6658746, 47.3711504 ], + [ 8.6659425, 47.3711038 ], + [ 8.6660527, 47.3710604 ], + [ 8.666535, 47.370959 ], + [ 8.6666759, 47.3708693 ], + [ 8.6668117, 47.3706727 ], + [ 8.666967, 47.3705748 ], + [ 8.6669781, 47.3705737 ], + [ 8.6671216, 47.3705597 ], + [ 8.667121999999999, 47.3705592 ], + [ 8.6672171, 47.3704516 ], + [ 8.6672532, 47.3703523 ], + [ 8.6673546, 47.3702127 ], + [ 8.6674968, 47.370120299999996 ], + [ 8.6675054, 47.3701208 ], + [ 8.6675697, 47.3701249 ], + [ 8.6676754, 47.3701724 ], + [ 8.6676827, 47.3701688 ], + [ 8.6677867, 47.3701172 ], + [ 8.6677985, 47.3701156 ], + [ 8.6678207, 47.3701127 ], + [ 8.6678606, 47.3701074 ], + [ 8.6679526, 47.3701352 ], + [ 8.667899, 47.3702195 ], + [ 8.6677735, 47.3703485 ], + [ 8.6677794, 47.3703737 ], + [ 8.6678291, 47.3704064 ], + [ 8.6678357, 47.3704014 ], + [ 8.6680282, 47.370255 ], + [ 8.6680373, 47.3702553 ], + [ 8.6681634, 47.3702607 ], + [ 8.6681652, 47.3702587 ], + [ 8.6682189, 47.370199 ], + [ 8.6682315, 47.3700558 ], + [ 8.6681735, 47.3698945 ], + [ 8.6680455, 47.3696836 ], + [ 8.6680391, 47.3695766 ], + [ 8.668175699999999, 47.3694159 ], + [ 8.6684888, 47.3693253 ], + [ 8.6684967, 47.3693249 ], + [ 8.6689185, 47.3692992 ], + [ 8.6689203, 47.3692982 ], + [ 8.669014, 47.3692478 ], + [ 8.6693821, 47.3688472 ], + [ 8.6697675, 47.3685093 ], + [ 8.6699258, 47.3681973 ], + [ 8.6700308, 47.3680981 ], + [ 8.6704362, 47.3678806 ], + [ 8.6705616, 47.367748 ], + [ 8.6706827, 47.3674336 ], + [ 8.6710358, 47.3671267 ], + [ 8.6711617, 47.367074099999996 ], + [ 8.6711733, 47.3670725 ], + [ 8.6711742, 47.3670724 ], + [ 8.6712361, 47.3670641 ], + [ 8.67129, 47.3670569 ], + [ 8.6713361, 47.3670333 ], + [ 8.6713447, 47.3670289 ], + [ 8.6714395, 47.3669371 ], + [ 8.6714949, 47.3668834 ], + [ 8.6721889, 47.3663131 ], + [ 8.6726717, 47.3659587 ], + [ 8.6730333, 47.3657363 ], + [ 8.6730613, 47.3657199 ], + [ 8.6731393, 47.3656742 ], + [ 8.6737752, 47.3651194 ], + [ 8.6738295, 47.365072 ], + [ 8.6741229, 47.3649339 ], + [ 8.6745146, 47.3648101 ], + [ 8.6746664, 47.364732 ], + [ 8.6748982, 47.364542900000004 ], + [ 8.6749379, 47.3645105 ], + [ 8.6750827, 47.3643578 ], + [ 8.6751123, 47.3642667 ], + [ 8.6750792, 47.3641519 ], + [ 8.6750208, 47.3640868 ], + [ 8.6750336, 47.3640863 ], + [ 8.6750856, 47.3640843 ], + [ 8.6753275, 47.3641821 ], + [ 8.6753585, 47.3641897 ], + [ 8.6753887, 47.3641972 ], + [ 8.6754234, 47.3642057 ], + [ 8.6754272, 47.3642029 ], + [ 8.6754702, 47.3641702 ], + [ 8.6752934, 47.3640661 ], + [ 8.6751534, 47.3639838 ], + [ 8.6751527, 47.3639514 ], + [ 8.675274, 47.3638178 ], + [ 8.6752831, 47.3638191 ], + [ 8.675371, 47.3638312 ], + [ 8.675374399999999, 47.3638284 ], + [ 8.6754243, 47.3637866 ], + [ 8.6753815, 47.3637141 ], + [ 8.6754237, 47.3636471 ], + [ 8.6755506, 47.3635759 ], + [ 8.6756132, 47.3635408 ], + [ 8.6758294, 47.363444 ], + [ 8.6761125, 47.3633814 ], + [ 8.6762785, 47.3633447 ], + [ 8.6765441, 47.3633021 ], + [ 8.6765658, 47.3632986 ], + [ 8.6766268, 47.3632888 ], + [ 8.6768738, 47.3632664 ], + [ 8.6770923, 47.3632466 ], + [ 8.6773124, 47.3632266 ], + [ 8.6774573, 47.3631797 ], + [ 8.6775398, 47.3631531 ], + [ 8.677552, 47.3631418 ], + [ 8.6775683, 47.3631267 ], + [ 8.6776232, 47.3631132 ], + [ 8.677624999999999, 47.3631128 ], + [ 8.6778408, 47.3630599 ], + [ 8.678779, 47.3628853 ], + [ 8.678985, 47.362847 ], + [ 8.6791574, 47.362789 ], + [ 8.6792031, 47.3627736 ], + [ 8.6792478, 47.3627765 ], + [ 8.6793953, 47.3627859 ], + [ 8.6796888, 47.362709 ], + [ 8.679867699999999, 47.3626786 ], + [ 8.679909, 47.3626716 ], + [ 8.6800004, 47.3626716 ], + [ 8.6801552, 47.3626716 ], + [ 8.6801741, 47.3626624 ], + [ 8.6801867, 47.3626563 ], + [ 8.6802495, 47.3626256 ], + [ 8.6802682, 47.362604 ], + [ 8.6802895, 47.3625793 ], + [ 8.6803075, 47.3625787 ], + [ 8.6804813, 47.3625728 ], + [ 8.6804876, 47.3625694 ], + [ 8.6805491, 47.3625365 ], + [ 8.680640799999999, 47.3624874 ], + [ 8.6806639, 47.3624618 ], + [ 8.680977500000001, 47.3621124 ], + [ 8.681081, 47.3620032 ], + [ 8.6817123, 47.3614846 ], + [ 8.6817495, 47.3614347 ], + [ 8.6817941, 47.3613002 ], + [ 8.6818089, 47.3612533 ], + [ 8.6817677, 47.3611341 ], + [ 8.6817119, 47.361082 ], + [ 8.6817088, 47.3610792 ], + [ 8.681705000000001, 47.3610768 ], + [ 8.6816338, 47.3610305 ], + [ 8.6813949, 47.3608754 ], + [ 8.6812424, 47.3607312 ], + [ 8.681197300000001, 47.3606886 ], + [ 8.6811412, 47.3606658 ], + [ 8.6810235, 47.3606636 ], + [ 8.6809888, 47.360663 ], + [ 8.6809162, 47.3606039 ], + [ 8.6809145, 47.3606024 ], + [ 8.680875499999999, 47.3605707 ], + [ 8.6809564, 47.3604636 ], + [ 8.6809983, 47.3604443 ], + [ 8.6810054, 47.3604447 ], + [ 8.6811136, 47.3604503 ], + [ 8.6812617, 47.3604999 ], + [ 8.6816325, 47.3605049 ], + [ 8.6816713, 47.3606359 ], + [ 8.6818525, 47.3607048 ], + [ 8.6818762, 47.3607076 ], + [ 8.6819426, 47.3607155 ], + [ 8.6819579, 47.3607173 ], + [ 8.6819653, 47.3607156 ], + [ 8.6820724, 47.36069 ], + [ 8.6822079, 47.360628 ], + [ 8.6823501, 47.3605629 ], + [ 8.6825516, 47.3605157 ], + [ 8.6826417, 47.3604644 ], + [ 8.6827047, 47.3603944 ], + [ 8.6829256, 47.3601492 ], + [ 8.683067, 47.359912 ], + [ 8.6831893, 47.3598198 ], + [ 8.6834572, 47.3597279 ], + [ 8.6836507, 47.3596232 ], + [ 8.6840047, 47.3595313 ], + [ 8.6841847, 47.3594151 ], + [ 8.6843066, 47.3593067 ], + [ 8.684514, 47.3590616 ], + [ 8.684588699999999, 47.3589735 ], + [ 8.6846298, 47.3588616 ], + [ 8.6845629, 47.3586041 ], + [ 8.684482299999999, 47.3584988 ], + [ 8.6843271, 47.3584861 ], + [ 8.6842663, 47.3584664 ], + [ 8.684244, 47.3584592 ], + [ 8.684163, 47.358433 ], + [ 8.6841307, 47.3584073 ], + [ 8.6841277, 47.3583371 ], + [ 8.6841393, 47.3583357 ], + [ 8.6843798, 47.3583047 ], + [ 8.6845245, 47.3583221 ], + [ 8.6845357, 47.3583202 ], + [ 8.6846405, 47.3583028 ], + [ 8.6846738, 47.3582548 ], + [ 8.6847137, 47.3580888 ], + [ 8.6848011, 47.3578648 ], + [ 8.6849271, 47.3575945 ], + [ 8.6849433, 47.357435100000004 ], + [ 8.6849911, 47.3572709 ], + [ 8.6851454, 47.3570227 ], + [ 8.6853559, 47.3567389 ], + [ 8.6855198, 47.3565599 ], + [ 8.6856547, 47.3563273 ], + [ 8.6857493, 47.356239 ], + [ 8.6863914, 47.3557922 ], + [ 8.6865623, 47.3556282 ], + [ 8.6868485, 47.3553537 ], + [ 8.6870429, 47.3551231 ], + [ 8.6871775, 47.3550452 ], + [ 8.6873496, 47.3548412 ], + [ 8.6875407, 47.3546148 ], + [ 8.6880355, 47.3540976 ], + [ 8.688087, 47.3540621 ], + [ 8.6882587, 47.3539036 ], + [ 8.6883759, 47.3537674 ], + [ 8.6885989, 47.3535086 ], + [ 8.6888762, 47.3531413 ], + [ 8.6890649, 47.3528334 ], + [ 8.6890403, 47.3526898 ], + [ 8.689180799999999, 47.3525848 ], + [ 8.6892706, 47.3525173 ], + [ 8.6893208, 47.3523467 ], + [ 8.6894362, 47.3521305 ], + [ 8.6894885, 47.351932 ], + [ 8.689578000000001, 47.3517412 ], + [ 8.6895653, 47.3516514 ], + [ 8.6894803, 47.3515273 ], + [ 8.6894863, 47.3515011 ], + [ 8.6894971, 47.3514542 ], + [ 8.6893774, 47.3513125 ], + [ 8.689376, 47.3513107 ], + [ 8.6889999, 47.3514414 ], + [ 8.6889939, 47.3514435 ], + [ 8.6888627, 47.3514386 ], + [ 8.6887722, 47.3513586 ], + [ 8.6888035, 47.3512741 ], + [ 8.6888257, 47.3512141 ], + [ 8.6889493, 47.3510653 ], + [ 8.6890436, 47.3510229 ], + [ 8.6891899, 47.3508837 ], + [ 8.6892043, 47.350881 ], + [ 8.6894469, 47.3508368 ], + [ 8.6894472, 47.3508366 ], + [ 8.6895555, 47.3507817 ], + [ 8.6896305, 47.3507071 ], + [ 8.6896175, 47.3506622 ], + [ 8.689565, 47.350625 ], + [ 8.6895955, 47.3505689 ], + [ 8.6896065, 47.3505681 ], + [ 8.6897765, 47.3505553 ], + [ 8.6899691, 47.3506079 ], + [ 8.690244, 47.3507132 ], + [ 8.6903808, 47.3507368 ], + [ 8.6904885, 47.3507216 ], + [ 8.6904859, 47.3507146 ], + [ 8.6904592, 47.3506421 ], + [ 8.6904579, 47.350642 ], + [ 8.6903715, 47.3506386 ], + [ 8.6898288, 47.3504153 ], + [ 8.6898104, 47.3503093 ], + [ 8.6896989, 47.3500677 ], + [ 8.6896681, 47.3498296 ], + [ 8.6896787, 47.349718 ], + [ 8.6897127, 47.3496969 ], + [ 8.6897391, 47.3496381 ], + [ 8.6897819, 47.3496017 ], + [ 8.6899722, 47.3493276 ], + [ 8.6900534, 47.3492105 ], + [ 8.6900725, 47.3491829 ], + [ 8.6901888, 47.348946 ], + [ 8.6901932, 47.34874 ], + [ 8.6901415, 47.3485669 ], + [ 8.6901595, 47.348546 ], + [ 8.6900862, 47.3481285 ], + [ 8.6901015, 47.3481041 ], + [ 8.6900496, 47.3479796 ], + [ 8.6900061, 47.3479315 ], + [ 8.6898801, 47.3475798 ], + [ 8.6898392, 47.3474656 ], + [ 8.6898234, 47.3474216 ], + [ 8.6898209, 47.3473664 ], + [ 8.6898166, 47.3472728 ], + [ 8.6898044, 47.3470063 ], + [ 8.6898297, 47.3468441 ], + [ 8.6899162, 47.3466371 ], + [ 8.6897896, 47.3464334 ], + [ 8.6896974, 47.3461124 ], + [ 8.6898045, 47.345827 ], + [ 8.6898866, 47.3454891 ], + [ 8.6898878, 47.3454842 ], + [ 8.6898652, 47.3454326 ], + [ 8.6897633, 47.3451995 ], + [ 8.689772, 47.3451751 ], + [ 8.689726, 47.3451334 ], + [ 8.689744, 47.3449964 ], + [ 8.6898967, 47.3447915 ], + [ 8.6900612, 47.3445243 ], + [ 8.6901276, 47.3443077 ], + [ 8.6901326, 47.3441835 ], + [ 8.6900754, 47.3438324 ], + [ 8.6900929, 47.3437324 ], + [ 8.6901341, 47.343698 ], + [ 8.690142, 47.3436914 ], + [ 8.6903901, 47.3434845 ], + [ 8.6904451, 47.343402 ], + [ 8.6903516, 47.3433502 ], + [ 8.6903258, 47.3433359 ], + [ 8.6903403, 47.3432781 ], + [ 8.6904046, 47.3432025 ], + [ 8.690406, 47.343201 ], + [ 8.6904361, 47.3432093 ], + [ 8.6905032, 47.3432278 ], + [ 8.6905071, 47.3432245 ], + [ 8.6905759, 47.3431667 ], + [ 8.6906954, 47.3429585 ], + [ 8.690729900000001, 47.3427369 ], + [ 8.6907042, 47.3425986 ], + [ 8.6907043, 47.342593 ], + [ 8.6907095, 47.342433 ], + [ 8.6907812, 47.3422529 ], + [ 8.6907858, 47.3422415 ], + [ 8.6907844, 47.342217 ], + [ 8.690779, 47.3421228 ], + [ 8.6908271, 47.3420288 ], + [ 8.6908544, 47.3420123 ], + [ 8.6908546, 47.3420122 ], + [ 8.6911546, 47.3418318 ], + [ 8.6914873, 47.3413469 ], + [ 8.6915137, 47.3412315 ], + [ 8.6915145, 47.3409832 ], + [ 8.6916116, 47.340778 ], + [ 8.6918089, 47.3406157 ], + [ 8.6918255, 47.3406061 ], + [ 8.6921314, 47.3404287 ], + [ 8.6927506, 47.339804 ], + [ 8.6928631, 47.339721 ], + [ 8.693055, 47.3395794 ], + [ 8.6931711, 47.3394838 ], + [ 8.6932074, 47.3394539 ], + [ 8.6934081, 47.3392886 ], + [ 8.693408999999999, 47.339288 ], + [ 8.693855899999999, 47.3389734 ], + [ 8.6942209, 47.338798 ], + [ 8.6942485, 47.3387847 ], + [ 8.6948543, 47.3384381 ], + [ 8.6949775, 47.3383315 ], + [ 8.6949867, 47.3383208 ], + [ 8.6953613, 47.3378829 ], + [ 8.6955789, 47.3377366 ], + [ 8.6962874, 47.3374779 ], + [ 8.696326, 47.3374739 ], + [ 8.6964854, 47.3374571 ], + [ 8.6965065, 47.3374549 ], + [ 8.6968772, 47.3374625 ], + [ 8.697226, 47.3374974 ], + [ 8.6977304, 47.3374478 ], + [ 8.698056, 47.3373408 ], + [ 8.698644999999999, 47.3369548 ], + [ 8.6987341, 47.3369151 ], + [ 8.7000014, 47.3363382 ], + [ 8.7001591, 47.3362669 ], + [ 8.7006194, 47.3360588 ], + [ 8.7009423, 47.3358925 ], + [ 8.7009816, 47.3358691 ], + [ 8.7010198, 47.3358514 ], + [ 8.7010721, 47.335827 ], + [ 8.701336, 47.3356911 ], + [ 8.7015831, 47.3355818 ], + [ 8.7016401, 47.3355439 ], + [ 8.7017311, 47.3355063 ], + [ 8.7018269, 47.3354671 ], + [ 8.7019407, 47.3354184 ], + [ 8.7021028, 47.3353487 ], + [ 8.7021966, 47.3352952 ], + [ 8.7023407, 47.3352306 ], + [ 8.7024826, 47.3351832 ], + [ 8.7026523, 47.3351178 ], + [ 8.7028133, 47.3350719 ], + [ 8.7030215, 47.3349956 ], + [ 8.703256, 47.3349421 ], + [ 8.7034188, 47.3349042 ], + [ 8.7035709, 47.3348664 ], + [ 8.7036915, 47.3348226 ], + [ 8.7038199, 47.3347628 ], + [ 8.7039124, 47.3347231 ], + [ 8.7040085, 47.3346939 ], + [ 8.7040513, 47.3346859 ], + [ 8.7040792, 47.3346788 ], + [ 8.7041812, 47.3347601 ], + [ 8.7045866, 47.3345921 ], + [ 8.704909, 47.3344791 ], + [ 8.7051535, 47.334432 ], + [ 8.7053432, 47.3343778 ], + [ 8.7055165, 47.3343267 ], + [ 8.705678, 47.334300999999996 ], + [ 8.7058141, 47.3342884 ], + [ 8.7058638, 47.3342896 ], + [ 8.7058702, 47.3342809 ], + [ 8.7058704, 47.3342809 ], + [ 8.7059183, 47.3342177 ], + [ 8.7060462, 47.3341358 ], + [ 8.706196, 47.3340697 ], + [ 8.7062989, 47.334017 ], + [ 8.7064501, 47.3339745 ], + [ 8.7065764, 47.3339637 ], + [ 8.7065927, 47.3339638 ], + [ 8.706693, 47.3339649 ], + [ 8.7068505, 47.3339462 ], + [ 8.7070724, 47.3339215 ], + [ 8.7073103, 47.3337692 ], + [ 8.7074804, 47.3336564 ], + [ 8.7075918, 47.3335761 ], + [ 8.7076424, 47.3334778 ], + [ 8.7077024, 47.3333224 ], + [ 8.7078491, 47.3330914 ], + [ 8.7079465, 47.3328407 ], + [ 8.7080023, 47.3327174 ], + [ 8.7080166, 47.3326234 ], + [ 8.708026199999999, 47.3325663 ], + [ 8.7080379, 47.3325122 ], + [ 8.7080424, 47.3323889 ], + [ 8.7080884, 47.3322032 ], + [ 8.7080988, 47.3320809 ], + [ 8.7081198, 47.3318901 ], + [ 8.7081238, 47.331779 ], + [ 8.7081369, 47.3316337 ], + [ 8.7081578, 47.3315398 ], + [ 8.7081799, 47.3314953 ], + [ 8.7081797, 47.3314165 ], + [ 8.7081611, 47.3313311 ], + [ 8.7081464, 47.3312316 ], + [ 8.7081239, 47.330982 ], + [ 8.7081704, 47.3308158 ], + [ 8.7084209, 47.3306791 ], + [ 8.7086469, 47.3306142 ], + [ 8.7089385, 47.3305455 ], + [ 8.7092467, 47.3304869 ], + [ 8.7096336, 47.3303766 ], + [ 8.7098889, 47.3302953 ], + [ 8.7100089, 47.3302332 ], + [ 8.7100255, 47.3301678 ], + [ 8.7100293, 47.3300853 ], + [ 8.7100581, 47.3300069 ], + [ 8.7101019, 47.3299139 ], + [ 8.7101735, 47.3298246 ], + [ 8.7106971, 47.3297407 ], + [ 8.710640099999999, 47.3296402 ], + [ 8.7105856, 47.3294408 ], + [ 8.7104632, 47.3289934 ], + [ 8.7101845, 47.328026 ], + [ 8.7100837, 47.3275454 ], + [ 8.709999700000001, 47.3272471 ], + [ 8.7099552, 47.3271153 ], + [ 8.7098725, 47.3269685 ], + [ 8.7097901, 47.3268159 ], + [ 8.7097464, 47.326745 ], + [ 8.7096456, 47.3267033 ], + [ 8.7095445, 47.3266437 ], + [ 8.7094732, 47.3265195 ], + [ 8.7094506, 47.3262974 ], + [ 8.7092715, 47.3259245 ], + [ 8.7089109, 47.3256189 ], + [ 8.7086116, 47.3253973 ], + [ 8.7073548, 47.3244329 ], + [ 8.7069428, 47.3241126 ], + [ 8.7067451, 47.3239648 ], + [ 8.7066299, 47.3238671 ], + [ 8.7064838, 47.3237383 ], + [ 8.7066413, 47.3236537 ], + [ 8.7067513, 47.3235857 ], + [ 8.7068678, 47.3235113 ], + [ 8.7070578, 47.3233626 ], + [ 8.7074082, 47.3231493 ], + [ 8.708048999999999, 47.3227291 ], + [ 8.7081871, 47.3226618 ], + [ 8.7082697, 47.3225897 ], + [ 8.7083226, 47.3225407 ], + [ 8.7079129, 47.3223179 ], + [ 8.7075981, 47.3220419 ], + [ 8.7063186, 47.321008 ], + [ 8.7059403, 47.3207028 ], + [ 8.7054476, 47.3203024 ], + [ 8.7046529, 47.3196564 ], + [ 8.7042725, 47.319339 ], + [ 8.7042618, 47.3193302 ], + [ 8.7041301, 47.3193992 ], + [ 8.7036372, 47.3196591 ], + [ 8.702988, 47.3200141 ], + [ 8.7028286, 47.3200939 ], + [ 8.7027373, 47.3201567 ], + [ 8.7024747, 47.3203373 ], + [ 8.7022682, 47.3204177 ], + [ 8.701947, 47.3201817 ], + [ 8.7016551, 47.3199403 ], + [ 8.7012634, 47.3196706 ], + [ 8.7010259, 47.3194524 ], + [ 8.7008182, 47.3193107 ], + [ 8.7004687, 47.3190699 ], + [ 8.7004684, 47.3190692 ], + [ 8.7004681, 47.3190694 ], + [ 8.7001262, 47.3188154 ], + [ 8.6997852, 47.3185567 ], + [ 8.699738, 47.3185176 ], + [ 8.6996735, 47.3185183 ], + [ 8.6996043, 47.318527 ], + [ 8.6990256, 47.318706 ], + [ 8.699000999999999, 47.3187147 ], + [ 8.698832, 47.3187698 ], + [ 8.6985768, 47.3188166 ], + [ 8.6982724, 47.3188427 ], + [ 8.6974316, 47.3188451 ], + [ 8.697352, 47.3188487 ], + [ 8.6973515, 47.3188487 ], + [ 8.6976178, 47.3190281 ], + [ 8.6977355, 47.3191456 ], + [ 8.6978045, 47.3192678 ], + [ 8.6978132, 47.3193247 ], + [ 8.6978153, 47.3193381 ], + [ 8.6978221, 47.3193843 ], + [ 8.6978242, 47.3194362 ], + [ 8.6978302, 47.3195836 ], + [ 8.6978131, 47.3200859 ], + [ 8.6978103, 47.320226 ], + [ 8.6978075, 47.3202366 ], + [ 8.6977786, 47.3203438 ], + [ 8.69774, 47.320424 ], + [ 8.697682499999999, 47.3205455 ], + [ 8.6975812, 47.3207646 ], + [ 8.6975284, 47.3208789 ], + [ 8.6973874, 47.3208625 ], + [ 8.6967092, 47.3207833 ], + [ 8.6961799, 47.3207417 ], + [ 8.6960838, 47.320734 ], + [ 8.6960192, 47.3207275 ], + [ 8.6956399, 47.3207393 ], + [ 8.6953305, 47.3207644 ], + [ 8.694976, 47.3207965 ], + [ 8.6948073, 47.3208117 ], + [ 8.6947051, 47.320821 ], + [ 8.6940917, 47.3208972 ], + [ 8.6938978, 47.3209148 ], + [ 8.6936477, 47.3209307 ], + [ 8.6933045, 47.3209641 ], + [ 8.6930533, 47.320972 ], + [ 8.6930476, 47.3209728 ], + [ 8.6928315, 47.3209951 ], + [ 8.6927246, 47.3210205 ], + [ 8.692575099999999, 47.3210637 ], + [ 8.6924232, 47.3211412 ], + [ 8.6922028, 47.3212627 ], + [ 8.6916945, 47.3215548 ], + [ 8.6912126, 47.3218406 ], + [ 8.6907364, 47.3221264 ], + [ 8.6903306, 47.3223799 ], + [ 8.6903288, 47.3223716 ], + [ 8.6903108, 47.3223825 ], + [ 8.6901195, 47.3225101 ], + [ 8.6900139, 47.3225891 ], + [ 8.6899332, 47.3226747 ], + [ 8.6898834, 47.3228096 ], + [ 8.6897247, 47.3233039 ], + [ 8.68964, 47.3236064 ], + [ 8.6895965, 47.3237616 ], + [ 8.6894867, 47.3241706 ], + [ 8.6893924, 47.3244962 ], + [ 8.689324599999999, 47.3248605 ], + [ 8.6893262, 47.3252025 ], + [ 8.6893611, 47.3256046 ], + [ 8.6894033, 47.3260457 ], + [ 8.6894045, 47.3263673 ], + [ 8.6893764, 47.3265277 ], + [ 8.6892998, 47.3267883 ], + [ 8.6892342, 47.3269794 ], + [ 8.6891619, 47.3271534 ], + [ 8.6888152, 47.3275727 ], + [ 8.688566999999999, 47.327848 ], + [ 8.6883688, 47.3280839 ], + [ 8.6882025, 47.3283238 ], + [ 8.6880556, 47.3285721 ], + [ 8.687856, 47.3290201 ], + [ 8.6876807, 47.3294202 ], + [ 8.6875708, 47.3296205 ], + [ 8.6874655, 47.3297472 ], + [ 8.6873327, 47.3298576 ], + [ 8.6871979, 47.3299819 ], + [ 8.6870682, 47.3300958 ], + [ 8.6869964, 47.3301591 ], + [ 8.6868036, 47.3302997 ], + [ 8.6864475, 47.3305892 ], + [ 8.6862319, 47.3307903 ], + [ 8.6859133, 47.3310673 ], + [ 8.6857123, 47.3312768 ], + [ 8.6854829, 47.3315433 ], + [ 8.6851916, 47.331884 ], + [ 8.685043199999999, 47.3320718 ], + [ 8.6848325, 47.3323164 ], + [ 8.684684, 47.3324998 ], + [ 8.6844054, 47.3328405 ], + [ 8.6851799, 47.3330339 ], + [ 8.6849332, 47.3334207 ], + [ 8.6844324, 47.3341219 ], + [ 8.6827841, 47.3355167 ], + [ 8.682907, 47.3357059 ], + [ 8.6820244, 47.3366676 ], + [ 8.6822521, 47.3367311 ], + [ 8.6822834, 47.3371482 ], + [ 8.6816256, 47.3375875 ], + [ 8.6817785, 47.3376737 ], + [ 8.6817925, 47.3376697 ], + [ 8.6818638, 47.3377762 ], + [ 8.6816945, 47.3379263 ], + [ 8.6814094, 47.3382217 ], + [ 8.6814626, 47.3382684 ], + [ 8.6813822, 47.338332199999996 ], + [ 8.6812676, 47.3384176 ], + [ 8.6810751, 47.3386059 ], + [ 8.6808331, 47.3388704 ], + [ 8.6807412, 47.3389703 ], + [ 8.68035, 47.3390793 ], + [ 8.6801037, 47.3391575 ], + [ 8.6797394, 47.3393186 ], + [ 8.6795823, 47.3393891 ], + [ 8.6794349, 47.3394557 ], + [ 8.6792525, 47.3395785 ], + [ 8.6792352, 47.3396141 ], + [ 8.6790836, 47.3397134 ], + [ 8.6790402, 47.3397677 ], + [ 8.6791809, 47.3398403 ], + [ 8.679375199999999, 47.3399484 ], + [ 8.679336, 47.3399849 ], + [ 8.6792739, 47.3399883 ], + [ 8.6789893, 47.3401002 ], + [ 8.6786831, 47.3402519 ], + [ 8.6786314, 47.3403038 ], + [ 8.6785616, 47.3404322 ], + [ 8.6783931, 47.3409819 ], + [ 8.6782716, 47.3411055 ], + [ 8.678412699999999, 47.3413721 ], + [ 8.6783624, 47.3414851 ], + [ 8.6781766, 47.3416868 ], + [ 8.6781164, 47.341834 ], + [ 8.6780971, 47.3420258 ], + [ 8.6780883, 47.3420488 ], + [ 8.6780756, 47.3420822 ], + [ 8.6780385, 47.3421794 ], + [ 8.6777823, 47.3426598 ], + [ 8.6776215, 47.3428576 ], + [ 8.676797, 47.3436581 ], + [ 8.676604, 47.3438958 ], + [ 8.6763087, 47.3443461 ], + [ 8.6761351, 47.3445611 ], + [ 8.6760924, 47.3447757 ], + [ 8.6760423, 47.3448428 ], + [ 8.6758394, 47.34493 ], + [ 8.6756735, 47.3450012 ], + [ 8.6756322, 47.345019 ], + [ 8.6755949, 47.3451795 ], + [ 8.6756476, 47.345456 ], + [ 8.6756406, 47.3455532 ], + [ 8.6755705, 47.3456673 ], + [ 8.6754052, 47.3457312 ], + [ 8.675279, 47.3457524 ], + [ 8.6752681, 47.3457542 ], + [ 8.6752205, 47.3457524 ], + [ 8.6750754, 47.3457468 ], + [ 8.675048199999999, 47.3457458 ], + [ 8.6749092, 47.3456465 ], + [ 8.6749055, 47.3456439 ], + [ 8.6748933, 47.3456442 ], + [ 8.674869900000001, 47.3456447 ], + [ 8.6746529, 47.3456502 ], + [ 8.6746065, 47.3456596 ], + [ 8.6745107, 47.3456792 ], + [ 8.6744671, 47.3456881 ], + [ 8.674346, 47.3457128 ], + [ 8.6739818, 47.3459 ], + [ 8.6735363, 47.346129 ], + [ 8.6731445, 47.3462987 ], + [ 8.672827999999999, 47.3463479 ], + [ 8.6724834, 47.3463268 ], + [ 8.672441, 47.3463242 ], + [ 8.6724253, 47.3463244 ], + [ 8.6723209, 47.3463258 ], + [ 8.6721076, 47.3463287 ], + [ 8.671715, 47.3464075 ], + [ 8.6715564, 47.3464213 ], + [ 8.6711884, 47.3464535 ], + [ 8.6710546, 47.3464651 ], + [ 8.6707287, 47.3464935 ], + [ 8.6707046, 47.3464957 ], + [ 8.6701739, 47.3466686 ], + [ 8.6699197, 47.3467829 ], + [ 8.6696335, 47.3468438 ], + [ 8.6695417, 47.3468634 ], + [ 8.6693334, 47.3469242 ], + [ 8.6691568, 47.3470172 ], + [ 8.6691209, 47.3470361 ], + [ 8.669039399999999, 47.3471179 ], + [ 8.6687768, 47.3472116 ], + [ 8.6685387, 47.347331 ], + [ 8.6682555, 47.3475068 ], + [ 8.6679803, 47.3477391 ], + [ 8.6677862, 47.34793 ], + [ 8.6673956, 47.3481991 ], + [ 8.6671686, 47.3484341 ], + [ 8.6671505, 47.3484658 ], + [ 8.6669266, 47.3488579 ], + [ 8.6665629, 47.3493269 ], + [ 8.6662261, 47.349563 ], + [ 8.6660848, 47.3497271 ], + [ 8.6660767, 47.3497365 ], + [ 8.6660679, 47.3498734 ], + [ 8.6660137, 47.3499882 ], + [ 8.6659349, 47.3500736 ], + [ 8.6655523, 47.350361 ], + [ 8.6653911, 47.3504877 ], + [ 8.665188, 47.3509298 ], + [ 8.6651743, 47.3509596 ], + [ 8.6650497, 47.3511246 ], + [ 8.664805, 47.3513593 ], + [ 8.6646951, 47.3515412 ], + [ 8.6645786, 47.3517338 ], + [ 8.664504, 47.3518573 ], + [ 8.6643086, 47.3522236 ], + [ 8.6640421, 47.3527212 ], + [ 8.6639404, 47.3528464 ], + [ 8.6638535, 47.3530399 ], + [ 8.6638406, 47.3532008 ], + [ 8.6638253, 47.3533927 ], + [ 8.6637822, 47.3535642 ], + [ 8.6638391, 47.3537363 ], + [ 8.6638931, 47.3538418 ], + [ 8.6637258, 47.3538787 ], + [ 8.6633566, 47.3538826 ], + [ 8.6626722, 47.3539942 ], + [ 8.6619873, 47.3541454 ], + [ 8.6615094, 47.354199 ], + [ 8.6611645, 47.3542836 ], + [ 8.660786, 47.3544604 ], + [ 8.6601856, 47.3548226 ], + [ 8.6601319, 47.354855 ], + [ 8.6598021, 47.3551382 ], + [ 8.6591364, 47.3558937 ], + [ 8.6587504, 47.3562648 ], + [ 8.6582709, 47.3567736 ], + [ 8.6575204, 47.3574275 ], + [ 8.6575081, 47.3574382 ], + [ 8.6570652, 47.3578241 ], + [ 8.6569457, 47.3579282 ], + [ 8.6564498, 47.3583004 ], + [ 8.6548913, 47.3597309 ], + [ 8.6548518, 47.3597601 ], + [ 8.6545137, 47.3600093 ], + [ 8.6538194, 47.360702 ], + [ 8.6537875, 47.3607339 ], + [ 8.6536212, 47.3610433 ], + [ 8.6533313, 47.3615496 ], + [ 8.6531793, 47.3618152 ], + [ 8.6531246, 47.3618849 ], + [ 8.6529671, 47.3620855 ], + [ 8.6526928, 47.3624815 ], + [ 8.6526472, 47.3625727 ], + [ 8.6526382, 47.3625907 ], + [ 8.6524281, 47.3630105 ], + [ 8.652426, 47.363368 ], + [ 8.6524248, 47.3635646 ], + [ 8.6524564, 47.3636422 ], + [ 8.6524879, 47.3637086 ], + [ 8.6525962, 47.363937 ], + [ 8.6526324, 47.3641979 ], + [ 8.6526672, 47.3644489 ], + [ 8.6526787, 47.3645318 ], + [ 8.6526867, 47.3645891 ], + [ 8.6526932, 47.3646244 ], + [ 8.652697, 47.3646448 ], + [ 8.652679599999999, 47.3647435 ], + [ 8.6526548, 47.3648845 ], + [ 8.6525106, 47.3652935 ], + [ 8.6525101, 47.3654 ], + [ 8.6525085, 47.3657829 ], + [ 8.6525499, 47.3658589 ], + [ 8.652649, 47.3660404 ], + [ 8.6526784, 47.3660942 ], + [ 8.652756, 47.3661946 ], + [ 8.6528176, 47.3662744 ], + [ 8.6529432, 47.3665016 ], + [ 8.6529802, 47.3666267 ], + [ 8.6530058, 47.3666913 ], + [ 8.6530268, 47.3667445 ], + [ 8.6529963, 47.3667997 ], + [ 8.6528851, 47.3668593 ], + [ 8.6527051, 47.3669206 ], + [ 8.6526073, 47.3670071 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "WZV0013", + "country" : "CHE", + "name" : [ + { + "text" : "Wasser- und Zugvogelreservat Greifensee", + "lang" : "de-CH" + }, + { + "text" : "Réserve d'oiseaux d'eau et de migrateurs Greifensee", + "lang" : "fr-CH" + }, + { + "text" : "Riserva di uccelli acquatici e migratori Greifensee", + "lang" : "it-CH" + }, + { + "text" : "Water Bird and Migratory Bird Reserves Greifensee", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.2018617, 47.3180394 ], + [ 8.2018895, 47.3179699 ], + [ 8.2019256, 47.3179263 ], + [ 8.2020214, 47.3178705 ], + [ 8.2021288, 47.3178263 ], + [ 8.2020589, 47.3177999 ], + [ 8.2019512, 47.3177852 ], + [ 8.2017779, 47.3177907 ], + [ 8.2016568, 47.3177803 ], + [ 8.2015784, 47.3177654 ], + [ 8.201451, 47.3177483 ], + [ 8.2013639, 47.3177507 ], + [ 8.2013023, 47.3177319 ], + [ 8.2012289, 47.3176915 ], + [ 8.2011611, 47.3176746 ], + [ 8.2010406, 47.3176414 ], + [ 8.2009629, 47.3176171 ], + [ 8.2008921, 47.3175742 ], + [ 8.200848, 47.3175361 ], + [ 8.2008023, 47.3175073 ], + [ 8.200771, 47.3174932 ], + [ 8.2007185, 47.3174702 ], + [ 8.2006787, 47.3174606 ], + [ 8.2006252, 47.3174531 ], + [ 8.2005809, 47.3174179 ], + [ 8.200554, 47.3174007 ], + [ 8.2005261, 47.3173988 ], + [ 8.2004723, 47.3174107 ], + [ 8.2004154, 47.317409 ], + [ 8.2003563, 47.3173826 ], + [ 8.2003055, 47.317349899999996 ], + [ 8.2002741, 47.3173489 ], + [ 8.2002326, 47.3173483 ], + [ 8.2002063, 47.317332 ], + [ 8.2001775, 47.3173086 ], + [ 8.2001257, 47.3172933 ], + [ 8.2000995, 47.317284 ], + [ 8.2000798, 47.3172762 ], + [ 8.2000497, 47.3172814 ], + [ 8.200015, 47.3173018 ], + [ 8.200007, 47.3173233 ], + [ 8.1999947, 47.3173325 ], + [ 8.199961, 47.317343 ], + [ 8.1999157, 47.3173668 ], + [ 8.1998841, 47.3173938 ], + [ 8.1998821, 47.3174182 ], + [ 8.1998677, 47.3174501 ], + [ 8.1998428, 47.3174965 ], + [ 8.199821, 47.3175482 ], + [ 8.199819399999999, 47.3175985 ], + [ 8.1997912, 47.3176618 ], + [ 8.1997515, 47.3177062 ], + [ 8.1996986, 47.3177396 ], + [ 8.1996296, 47.3177623 ], + [ 8.1996112, 47.3177591 ], + [ 8.1995904, 47.3177551 ], + [ 8.1995543, 47.3177583 ], + [ 8.1995181, 47.3177531 ], + [ 8.1994899, 47.3177356 ], + [ 8.1994638, 47.3177329 ], + [ 8.1994376, 47.3177215 ], + [ 8.1994192, 47.317722 ], + [ 8.1994004, 47.3177312 ], + [ 8.1993334, 47.3177329 ], + [ 8.1992997, 47.3177331 ], + [ 8.1992689, 47.3177382 ], + [ 8.199227, 47.3177546 ], + [ 8.1991797, 47.3177586 ], + [ 8.1991337, 47.3177754 ], + [ 8.1990853, 47.317791 ], + [ 8.1990619, 47.3178163 ], + [ 8.1990309, 47.3178437 ], + [ 8.1990284, 47.3178747 ], + [ 8.1990253, 47.3179102 ], + [ 8.1990381, 47.3179345 ], + [ 8.1990268, 47.3179746 ], + [ 8.1990301, 47.3179985 ], + [ 8.1990364, 47.3180236 ], + [ 8.1990206, 47.3180435 ], + [ 8.1989759, 47.3180628 ], + [ 8.1989259, 47.3180957 ], + [ 8.1988816, 47.3181071 ], + [ 8.1988469, 47.3181251 ], + [ 8.198823, 47.3181533 ], + [ 8.1988222, 47.3181768 ], + [ 8.1988238, 47.3182106 ], + [ 8.1987818, 47.3182571 ], + [ 8.1987261, 47.3183012 ], + [ 8.1987098, 47.3183261 ], + [ 8.1987054, 47.3183517 ], + [ 8.1987108, 47.3183921 ], + [ 8.1987471, 47.3184496 ], + [ 8.1987595, 47.3184846 ], + [ 8.1987566, 47.3185313 ], + [ 8.198725, 47.3186087 ], + [ 8.1987259, 47.3186714 ], + [ 8.1987208, 47.3187292 ], + [ 8.1987003, 47.3187896 ], + [ 8.1986642, 47.3188348 ], + [ 8.1986645, 47.3188608 ], + [ 8.198684, 47.3188957 ], + [ 8.1986876, 47.3189423 ], + [ 8.1986733, 47.3189799 ], + [ 8.1986376, 47.3190132 ], + [ 8.1986161, 47.3190435 ], + [ 8.1985936, 47.3190877 ], + [ 8.1985923, 47.319122 ], + [ 8.1985995, 47.3191731 ], + [ 8.1986341, 47.3192303 ], + [ 8.1986397, 47.3192487 ], + [ 8.1986672, 47.3192667 ], + [ 8.1986913, 47.3192905 ], + [ 8.1987053, 47.3193132 ], + [ 8.1987026, 47.3193335 ], + [ 8.1986338, 47.3193856 ], + [ 8.198622, 47.3194323 ], + [ 8.1986169, 47.3194923 ], + [ 8.1986013, 47.3195242 ], + [ 8.1986191, 47.3195725 ], + [ 8.1985977, 47.3196074 ], + [ 8.198604, 47.3196367 ], + [ 8.198598, 47.3196768 ], + [ 8.198561, 47.3197035 ], + [ 8.1985631, 47.3197299 ], + [ 8.1985908, 47.3198 ], + [ 8.1985975, 47.3198541 ], + [ 8.1985828, 47.3199088 ], + [ 8.1985582, 47.3199763 ], + [ 8.1985354, 47.3200501 ], + [ 8.1985217, 47.3200911 ], + [ 8.1985252, 47.3201287 ], + [ 8.1985289, 47.320184 ], + [ 8.1985238, 47.320244 ], + [ 8.1984838, 47.320317 ], + [ 8.1984862, 47.3203579 ], + [ 8.1984802, 47.3203997 ], + [ 8.1984487, 47.3204375 ], + [ 8.1984034, 47.320473 ], + [ 8.1983604, 47.320498 ], + [ 8.1983447, 47.3205217 ], + [ 8.1982894, 47.3206014 ], + [ 8.1982641, 47.3206628 ], + [ 8.1982243, 47.3207035 ], + [ 8.1981665, 47.3207308 ], + [ 8.1981204, 47.3207451 ], + [ 8.1979994, 47.3207509 ], + [ 8.1979126, 47.3207398 ], + [ 8.1978178, 47.3207111 ], + [ 8.1977492, 47.3206859 ], + [ 8.1977047, 47.3206862 ], + [ 8.1976757, 47.3206909 ], + [ 8.1976351, 47.320678 ], + [ 8.1975659, 47.3206528 ], + [ 8.1975082, 47.3206399 ], + [ 8.1974758, 47.320617 ], + [ 8.1974099, 47.3206149 ], + [ 8.1973916, 47.3206154 ], + [ 8.1973043, 47.3206177 ], + [ 8.1972481, 47.3206333 ], + [ 8.1972356, 47.3206616 ], + [ 8.1971948, 47.320708 ], + [ 8.1971627, 47.3207437 ], + [ 8.1971531, 47.3207776 ], + [ 8.1971294, 47.3208243 ], + [ 8.1971153, 47.3208738 ], + [ 8.1970946, 47.3209239 ], + [ 8.1970755, 47.3209532 ], + [ 8.1970315, 47.3209898 ], + [ 8.1969935, 47.3210271 ], + [ 8.1969582, 47.321048 ], + [ 8.1969089, 47.3210817 ], + [ 8.1968403, 47.3210953 ], + [ 8.1967295, 47.3210948 ], + [ 8.1966567, 47.3211027 ], + [ 8.1965718, 47.3210958 ], + [ 8.1965029, 47.3210822 ], + [ 8.1964301, 47.3210497 ], + [ 8.1963653, 47.3210311 ], + [ 8.1963484, 47.3210098 ], + [ 8.1963427, 47.320983 ], + [ 8.1963283, 47.3209741 ], + [ 8.1963034, 47.3209726 ], + [ 8.1962816, 47.3209847 ], + [ 8.1962653, 47.321007 ], + [ 8.1962394, 47.3210187 ], + [ 8.1961585, 47.3210361 ], + [ 8.1960671, 47.3210746 ], + [ 8.1960207, 47.3211009 ], + [ 8.195999, 47.3211237 ], + [ 8.1959935, 47.3211493 ], + [ 8.1960051, 47.3211797 ], + [ 8.1960018, 47.3211971 ], + [ 8.1959865, 47.3212054 ], + [ 8.195964, 47.3212027 ], + [ 8.1959397, 47.3212016 ], + [ 8.1959196, 47.3212116 ], + [ 8.1958984, 47.321245 ], + [ 8.1958936, 47.3212629 ], + [ 8.1958954, 47.3212768 ], + [ 8.1959149, 47.3213106 ], + [ 8.1959209, 47.3213393 ], + [ 8.1959117, 47.3213548 ], + [ 8.1958842, 47.3213699 ], + [ 8.1958667, 47.321389 ], + [ 8.1958506, 47.3214217 ], + [ 8.1958206, 47.3214571 ], + [ 8.1957892, 47.3214723 ], + [ 8.1957716, 47.3214838 ], + [ 8.1957501, 47.3215072 ], + [ 8.1957049, 47.3215281 ], + [ 8.1956466, 47.3215475 ], + [ 8.1956176, 47.3215629 ], + [ 8.1955821, 47.3215967 ], + [ 8.1955455, 47.3216149 ], + [ 8.1954894, 47.3216218 ], + [ 8.1954459, 47.3216253 ], + [ 8.1954227, 47.3216341 ], + [ 8.1954138, 47.3216469 ], + [ 8.1954057, 47.3216608 ], + [ 8.1953567, 47.3216929 ], + [ 8.1953165, 47.3217284 ], + [ 8.1952951, 47.321757 ], + [ 8.1952887, 47.321778 ], + [ 8.1952864, 47.3218029 ], + [ 8.1952696, 47.3218207 ], + [ 8.1952734, 47.3218367 ], + [ 8.1952922, 47.3218455 ], + [ 8.1953228, 47.3218562 ], + [ 8.1953321, 47.3218672 ], + [ 8.1953265, 47.3218868 ], + [ 8.1953201, 47.3219077 ], + [ 8.195297, 47.3219258 ], + [ 8.1952934, 47.3219459 ], + [ 8.1953013, 47.3219678 ], + [ 8.1952967, 47.3219825 ], + [ 8.195274, 47.3219984 ], + [ 8.195262, 47.3220125 ], + [ 8.1952513, 47.3220666 ], + [ 8.1952388, 47.3221041 ], + [ 8.1952178, 47.3221232 ], + [ 8.1951803, 47.3221349 ], + [ 8.195165, 47.3221423 ], + [ 8.195164, 47.3221556 ], + [ 8.1951733, 47.3221686 ], + [ 8.1951752, 47.322184 ], + [ 8.1951562, 47.3222099 ], + [ 8.195142, 47.3222423 ], + [ 8.1951408, 47.3222656 ], + [ 8.1951551, 47.322294 ], + [ 8.1951793, 47.3223188 ], + [ 8.1951832, 47.3223413 ], + [ 8.1951706, 47.3223943 ], + [ 8.1951495, 47.3224395 ], + [ 8.1951328, 47.322458 ], + [ 8.1951124, 47.3224701 ], + [ 8.1950923, 47.3224817 ], + [ 8.1950763, 47.3224915 ], + [ 8.1950702, 47.3225078 ], + [ 8.1950728, 47.3225461 ], + [ 8.1950689, 47.3225784 ], + [ 8.1950467, 47.322623 ], + [ 8.1950087, 47.3226762 ], + [ 8.1949634, 47.3227576 ], + [ 8.1949368, 47.3227821 ], + [ 8.1948939, 47.3227997 ], + [ 8.1948194, 47.3228239 ], + [ 8.1947327, 47.3228581 ], + [ 8.1946693, 47.3228812 ], + [ 8.194609, 47.3229046 ], + [ 8.1945339, 47.3229311 ], + [ 8.1944745, 47.3229476 ], + [ 8.1944033, 47.3229636 ], + [ 8.194348, 47.3229727 ], + [ 8.194304, 47.3229787 ], + [ 8.1942687, 47.3229815 ], + [ 8.1942314, 47.322979 ], + [ 8.194197, 47.3229731 ], + [ 8.1941547, 47.3229631 ], + [ 8.194094400000001, 47.3229431 ], + [ 8.1940069, 47.3229153 ], + [ 8.1939024, 47.3228823 ], + [ 8.1938213, 47.3228595 ], + [ 8.1937405, 47.3228416 ], + [ 8.1936661, 47.3228304 ], + [ 8.1935663, 47.3228225 ], + [ 8.1935166, 47.3228223 ], + [ 8.1934766, 47.322826 ], + [ 8.1934348, 47.3228354 ], + [ 8.1933931, 47.3228514 ], + [ 8.1933408, 47.3228824 ], + [ 8.193305, 47.3229058 ], + [ 8.1932698, 47.3229331 ], + [ 8.1932498, 47.3229521 ], + [ 8.1932251, 47.3229805 ], + [ 8.1932044, 47.3230214 ], + [ 8.1931883, 47.3230545 ], + [ 8.1931789, 47.3230795 ], + [ 8.1931733, 47.3231032 ], + [ 8.1931712, 47.3231263 ], + [ 8.1931744, 47.3231617 ], + [ 8.1931804, 47.3231895 ], + [ 8.1931852, 47.323206 ], + [ 8.1932021, 47.3232415 ], + [ 8.1932148, 47.3232612 ], + [ 8.1932421, 47.3232859 ], + [ 8.1932883, 47.32332 ], + [ 8.1933473, 47.3233585 ], + [ 8.1933741, 47.3233725 ], + [ 8.1934425, 47.3234034 ], + [ 8.1935309, 47.3234396 ], + [ 8.1936138, 47.3234748 ], + [ 8.1937073, 47.3235123 ], + [ 8.193749, 47.3235311 ], + [ 8.1938014, 47.3235532 ], + [ 8.1938366, 47.3235628 ], + [ 8.1939102, 47.3235754 ], + [ 8.1939446, 47.3235783 ], + [ 8.1939877, 47.3235805 ], + [ 8.1940349, 47.3235833 ], + [ 8.1940661, 47.3235839 ], + [ 8.1940972, 47.3235828 ], + [ 8.1941779, 47.3235762 ], + [ 8.1943208, 47.323563 ], + [ 8.1943754, 47.3235588 ], + [ 8.1944336, 47.3235548 ], + [ 8.1945014, 47.323551 ], + [ 8.1945365, 47.3235482 ], + [ 8.1945715, 47.3235388 ], + [ 8.1946384, 47.3235162 ], + [ 8.1946651, 47.3235023 ], + [ 8.1947108, 47.3234682 ], + [ 8.1947576, 47.3234272 ], + [ 8.1947713, 47.3234098 ], + [ 8.1947802, 47.32339 ], + [ 8.1947933, 47.3233511 ], + [ 8.194801, 47.3233331 ], + [ 8.1948063, 47.3233195 ], + [ 8.1948271, 47.3232832 ], + [ 8.1948468, 47.3232475 ], + [ 8.1948535, 47.3232353 ], + [ 8.1948893, 47.3231631 ], + [ 8.1949386, 47.3230659 ], + [ 8.1949832, 47.3229834 ], + [ 8.1950139, 47.3229239 ], + [ 8.1950475, 47.3228615 ], + [ 8.195089, 47.3227827 ], + [ 8.1951266, 47.3227098 ], + [ 8.1951683, 47.3226304 ], + [ 8.1951859, 47.3225969 ], + [ 8.1952126, 47.3225522 ], + [ 8.1952266, 47.3225295 ], + [ 8.1952445, 47.3225006 ], + [ 8.1952594, 47.3224596 ], + [ 8.1952736, 47.3224019 ], + [ 8.1952805, 47.3223228 ], + [ 8.1952823, 47.3222686 ], + [ 8.1952897, 47.3222526 ], + [ 8.1953018, 47.3222357 ], + [ 8.195305, 47.3222164 ], + [ 8.1953017, 47.3221955 ], + [ 8.1953087, 47.3221714 ], + [ 8.1953236, 47.3221605 ], + [ 8.1953532, 47.3221467 ], + [ 8.195368, 47.3221285 ], + [ 8.1953696, 47.322116 ], + [ 8.1953643, 47.3220982 ], + [ 8.195364, 47.3220815 ], + [ 8.1953728, 47.3220651 ], + [ 8.1953769, 47.3220605 ], + [ 8.1953893, 47.3220399 ], + [ 8.1953958, 47.3220171 ], + [ 8.1954165, 47.3219773 ], + [ 8.195415, 47.3219632 ], + [ 8.1954131, 47.3219449 ], + [ 8.1954135, 47.3219228 ], + [ 8.1954143, 47.3219045 ], + [ 8.1954047, 47.3218796 ], + [ 8.195407, 47.3218623 ], + [ 8.195406, 47.3218454 ], + [ 8.1953859, 47.3218259 ], + [ 8.1953734, 47.3218198 ], + [ 8.1953606, 47.3218147 ], + [ 8.1953573, 47.3218048 ], + [ 8.1953624, 47.3217938 ], + [ 8.1953899, 47.3217765 ], + [ 8.1954117, 47.3217575 ], + [ 8.1954445, 47.3217413 ], + [ 8.1954731, 47.3217197 ], + [ 8.1954977, 47.3217037 ], + [ 8.1955188, 47.3217021 ], + [ 8.1955571, 47.3217068 ], + [ 8.1955895, 47.3217 ], + [ 8.195629, 47.3216796 ], + [ 8.1957067, 47.3216385 ], + [ 8.1957627, 47.3215932 ], + [ 8.1958125, 47.321568 ], + [ 8.1958521, 47.3215572 ], + [ 8.1958818, 47.3215461 ], + [ 8.1959232, 47.3215117 ], + [ 8.1959804, 47.3214704 ], + [ 8.1960006, 47.3214457 ], + [ 8.1960013, 47.3214295 ], + [ 8.1959916, 47.3214138 ], + [ 8.1959916, 47.3213996 ], + [ 8.1960115, 47.3213683 ], + [ 8.1960245, 47.3213402 ], + [ 8.1960335, 47.3213078 ], + [ 8.196039, 47.3212764 ], + [ 8.1960651, 47.3212373 ], + [ 8.196079, 47.3212138 ], + [ 8.1961062, 47.3211984 ], + [ 8.1961406, 47.3211752 ], + [ 8.196177, 47.3211526 ], + [ 8.1962122, 47.3211265 ], + [ 8.1962463, 47.3211136 ], + [ 8.196284, 47.3211119 ], + [ 8.1963123, 47.3211207 ], + [ 8.1963444, 47.3211467 ], + [ 8.1963649, 47.3211574 ], + [ 8.1964006, 47.321162 ], + [ 8.1964582, 47.321166 ], + [ 8.1964993, 47.3211773 ], + [ 8.196527, 47.3211944 ], + [ 8.1965564, 47.3212046 ], + [ 8.1966045, 47.3212049 ], + [ 8.1966533, 47.3212077 ], + [ 8.1966819, 47.3212106 ], + [ 8.1967855, 47.3212234 ], + [ 8.1968324, 47.3212188 ], + [ 8.1969253, 47.3212019 ], + [ 8.1970399, 47.3211716 ], + [ 8.1970777, 47.3211576 ], + [ 8.1971122, 47.3211389 ], + [ 8.1971405, 47.321108 ], + [ 8.1971586, 47.3210701 ], + [ 8.1971626, 47.3210426 ], + [ 8.1971667, 47.3210172 ], + [ 8.1971846, 47.3209929 ], + [ 8.1972043, 47.3209542 ], + [ 8.1972106, 47.3209353 ], + [ 8.197216, 47.320894 ], + [ 8.1972177, 47.3208516 ], + [ 8.1972292, 47.320826 ], + [ 8.1972616, 47.320792 ], + [ 8.1973084, 47.3207626 ], + [ 8.1973541, 47.3207496 ], + [ 8.1974196, 47.3207378 ], + [ 8.1974697, 47.3207338 ], + [ 8.1975028, 47.3207413 ], + [ 8.1975763, 47.3207665 ], + [ 8.1976384, 47.3207755 ], + [ 8.1977567, 47.320794 ], + [ 8.1978204, 47.3208163 ], + [ 8.1978476, 47.3208358 ], + [ 8.1978792, 47.3208512 ], + [ 8.1978935, 47.3208711 ], + [ 8.1979182, 47.3208816 ], + [ 8.1979535, 47.3208766 ], + [ 8.1979913, 47.3208807 ], + [ 8.1980232, 47.3208787 ], + [ 8.1980455, 47.3208721 ], + [ 8.1980651, 47.3208562 ], + [ 8.1980876, 47.3208482 ], + [ 8.1981172, 47.3208498 ], + [ 8.1981776, 47.3208634 ], + [ 8.1981939, 47.3208618 ], + [ 8.1982111, 47.320849 ], + [ 8.1982323, 47.320835 ], + [ 8.1982457, 47.3208334 ], + [ 8.1982706, 47.3208356 ], + [ 8.1983064, 47.3208482 ], + [ 8.1983283, 47.3208479 ], + [ 8.1983529, 47.3208377 ], + [ 8.1983907, 47.3208088 ], + [ 8.1984145, 47.3207789 ], + [ 8.1984212, 47.3207525 ], + [ 8.198436, 47.3207342 ], + [ 8.198462899999999, 47.3207175 ], + [ 8.1984703, 47.3207041 ], + [ 8.198468, 47.3206881 ], + [ 8.1984655, 47.320663 ], + [ 8.1984738, 47.3206393 ], + [ 8.1984995, 47.3206135 ], + [ 8.1985387, 47.3205798 ], + [ 8.1985499, 47.3205574 ], + [ 8.1985689, 47.3205029 ], + [ 8.1985761, 47.3204714 ], + [ 8.1985916, 47.3204508 ], + [ 8.1986306, 47.3204371 ], + [ 8.1986601, 47.3204228 ], + [ 8.1986871, 47.3203989 ], + [ 8.1986924, 47.3203754 ], + [ 8.1987012, 47.3203259 ], + [ 8.1987159, 47.3202654 ], + [ 8.1987403, 47.3202233 ], + [ 8.1987431, 47.3201945 ], + [ 8.1987468, 47.3201147 ], + [ 8.1987371, 47.3200624 ], + [ 8.1987412, 47.3200397 ], + [ 8.198761, 47.3200111 ], + [ 8.198802, 47.3199739 ], + [ 8.1988097, 47.3199509 ], + [ 8.1988118, 47.3199324 ], + [ 8.1988091, 47.3199065 ], + [ 8.1988121, 47.3198642 ], + [ 8.1988047, 47.3198394 ], + [ 8.1987742, 47.3198087 ], + [ 8.1987592, 47.3197781 ], + [ 8.1987562, 47.3197343 ], + [ 8.19877, 47.3196682 ], + [ 8.1988016, 47.3196001 ], + [ 8.1988125, 47.3195517 ], + [ 8.1988141, 47.3195277 ], + [ 8.1987986, 47.3194861 ], + [ 8.1988006, 47.3194613 ], + [ 8.1988138, 47.3194399 ], + [ 8.1988413, 47.3193925 ], + [ 8.1988391, 47.3193749 ], + [ 8.198816, 47.3193303 ], + [ 8.1988025, 47.319297 ], + [ 8.1988069, 47.3192718 ], + [ 8.1988296, 47.319248 ], + [ 8.1988341, 47.3192269 ], + [ 8.198824, 47.3192091 ], + [ 8.1987953, 47.3191971 ], + [ 8.1987813, 47.319182 ], + [ 8.1987768, 47.3191409 ], + [ 8.1987975, 47.3190903 ], + [ 8.1988296, 47.31906 ], + [ 8.1988615, 47.3190217 ], + [ 8.1988598, 47.3190059 ], + [ 8.1988393, 47.3189884 ], + [ 8.1988388, 47.3189752 ], + [ 8.1988637, 47.3189474 ], + [ 8.1988786, 47.3189304 ], + [ 8.198881, 47.3189031 ], + [ 8.1988883, 47.3188539 ], + [ 8.1989021, 47.3188249 ], + [ 8.1989211, 47.3187902 ], + [ 8.1989313, 47.3187548 ], + [ 8.1989437, 47.3186976 ], + [ 8.1989527, 47.3186617 ], + [ 8.1989789, 47.3186068 ], + [ 8.1989983, 47.318549 ], + [ 8.1989964, 47.3184855 ], + [ 8.1989792, 47.318444 ], + [ 8.1989575, 47.3184159 ], + [ 8.1989244, 47.3183944 ], + [ 8.1989017, 47.3183569 ], + [ 8.1988877, 47.3183427 ], + [ 8.1988866, 47.3183165 ], + [ 8.1989278, 47.3182624 ], + [ 8.1989811, 47.3182209 ], + [ 8.1989888, 47.3182013 ], + [ 8.1989825, 47.3181753 ], + [ 8.1989894, 47.3181582 ], + [ 8.1990177, 47.3181425 ], + [ 8.1990557, 47.3181117 ], + [ 8.1990908, 47.3181026 ], + [ 8.1991267, 47.3180648 ], + [ 8.1992116, 47.3179856 ], + [ 8.199285, 47.3179402 ], + [ 8.1993359, 47.3179285 ], + [ 8.199421, 47.3179274 ], + [ 8.1994637, 47.3179236 ], + [ 8.1994972, 47.3179192 ], + [ 8.199542, 47.31792 ], + [ 8.199694, 47.3179271 ], + [ 8.199747, 47.3179218 ], + [ 8.1997967, 47.3179101 ], + [ 8.1998561, 47.3178791 ], + [ 8.1998649, 47.3178594 ], + [ 8.199875, 47.3178434 ], + [ 8.1998959, 47.3178358 ], + [ 8.1999215, 47.3178293 ], + [ 8.1999427, 47.3178195 ], + [ 8.1999685, 47.3177947 ], + [ 8.1999884, 47.3177736 ], + [ 8.2000009, 47.3177573 ], + [ 8.2000005, 47.3177297 ], + [ 8.1999982, 47.3177001 ], + [ 8.2000046, 47.3176764 ], + [ 8.2000014, 47.3176444 ], + [ 8.1999861, 47.3175912 ], + [ 8.1999857, 47.3175589 ], + [ 8.2000028, 47.3175337 ], + [ 8.2000354, 47.3175183 ], + [ 8.2001095, 47.3174904 ], + [ 8.2001422, 47.3174795 ], + [ 8.2001699, 47.3174812 ], + [ 8.2001899, 47.3174933 ], + [ 8.2002476, 47.3175213 ], + [ 8.2002853, 47.3175313 ], + [ 8.2003272, 47.3175288 ], + [ 8.2003923, 47.3175397 ], + [ 8.2004357, 47.3175651 ], + [ 8.2004512, 47.3175733 ], + [ 8.2004786, 47.3175789 ], + [ 8.2005455, 47.3175818 ], + [ 8.2006055, 47.3175977 ], + [ 8.2006651, 47.3176219 ], + [ 8.2007144, 47.3176592 ], + [ 8.2007547, 47.3177098 ], + [ 8.2008309, 47.3177465 ], + [ 8.200888, 47.3177775 ], + [ 8.2009396, 47.317814 ], + [ 8.2009559, 47.3178256 ], + [ 8.2010359, 47.3178408 ], + [ 8.20108, 47.3178405 ], + [ 8.2011366, 47.3178316 ], + [ 8.2012059, 47.3178368 ], + [ 8.2012377, 47.3178523 ], + [ 8.2012632, 47.3178764 ], + [ 8.2013368, 47.3178831 ], + [ 8.2014062, 47.3178883 ], + [ 8.2014904, 47.3179035 ], + [ 8.2016257, 47.3179683 ], + [ 8.2016826, 47.3179879 ], + [ 8.2017667, 47.3179902 ], + [ 8.2018006, 47.3180128 ], + [ 8.2018617, 47.3180394 ] + ], + [ + [ 8.1940487, 47.3230971 ], + [ 8.1940342, 47.3231 ], + [ 8.1940207, 47.3231001 ], + [ 8.194007, 47.3230978 ], + [ 8.1939903, 47.32311 ], + [ 8.1939547, 47.3231019 ], + [ 8.193941, 47.3231219 ], + [ 8.1939308, 47.3231369 ], + [ 8.1938313, 47.3232827 ], + [ 8.1938423, 47.3232956 ], + [ 8.193838, 47.3233065 ], + [ 8.1938314, 47.3233178 ], + [ 8.1938252, 47.3233256 ], + [ 8.1938159, 47.3233341 ], + [ 8.1938084, 47.3233414 ], + [ 8.1938019, 47.3233484 ], + [ 8.1938114, 47.3233558 ], + [ 8.1938177, 47.3233679 ], + [ 8.1938169, 47.3233808 ], + [ 8.1938093, 47.3233925 ], + [ 8.193798, 47.3234005 ], + [ 8.1937836, 47.3234057 ], + [ 8.1937675, 47.3234074 ], + [ 8.1937514, 47.3234056 ], + [ 8.1937376, 47.323401 ], + [ 8.1937264, 47.3233938 ], + [ 8.1937189, 47.3233846 ], + [ 8.1937158, 47.3233744 ], + [ 8.1937175, 47.3233699 ], + [ 8.1937193, 47.3233654 ], + [ 8.1937213, 47.323361 ], + [ 8.1937236, 47.3233565 ], + [ 8.1937088, 47.323351 ], + [ 8.1936958, 47.3233462 ], + [ 8.193682, 47.3233416 ], + [ 8.1936674, 47.3233372 ], + [ 8.1936547, 47.3233331 ], + [ 8.1936421, 47.3233281 ], + [ 8.1936302, 47.3233234 ], + [ 8.1936168, 47.323319 ], + [ 8.1936048, 47.3233142 ], + [ 8.1935931, 47.3233098 ], + [ 8.1935806, 47.3233047 ], + [ 8.1935687, 47.3233007 ], + [ 8.1935565, 47.3232956 ], + [ 8.1935439, 47.3232917 ], + [ 8.1935307, 47.3232864 ], + [ 8.1935192, 47.3232821 ], + [ 8.193507, 47.3232764 ], + [ 8.1934954, 47.3232713 ], + [ 8.1934855, 47.323266 ], + [ 8.1934738, 47.3232601 ], + [ 8.1934629, 47.3232539 ], + [ 8.1934526, 47.3232481 ], + [ 8.1934415, 47.323241 ], + [ 8.1934316, 47.3232354 ], + [ 8.1934207, 47.3232285 ], + [ 8.1934114, 47.3232227 ], + [ 8.1934018, 47.323215 ], + [ 8.1933934, 47.3232069 ], + [ 8.1933865, 47.3231987 ], + [ 8.1933805, 47.3231905 ], + [ 8.1933762, 47.3231814 ], + [ 8.1933729, 47.3231725 ], + [ 8.1933705, 47.3231621 ], + [ 8.1933701, 47.3231526 ], + [ 8.1933698, 47.3231431 ], + [ 8.1933699, 47.3231332 ], + [ 8.1933712, 47.3231249 ], + [ 8.1933736, 47.3231154 ], + [ 8.1933774, 47.3231063 ], + [ 8.1933809, 47.3230975 ], + [ 8.1933855, 47.3230871 ], + [ 8.1933879, 47.3230795 ], + [ 8.1933932, 47.3230693 ], + [ 8.1933971, 47.323061 ], + [ 8.193403, 47.3230514 ], + [ 8.193408699999999, 47.3230441 ], + [ 8.1934143, 47.3230357 ], + [ 8.1934209, 47.3230279 ], + [ 8.1934295, 47.3230188 ], + [ 8.1934365, 47.3230118 ], + [ 8.1934454, 47.323004 ], + [ 8.1934531, 47.3229971 ], + [ 8.1934631, 47.3229889 ], + [ 8.1934727, 47.3229826 ], + [ 8.1934839, 47.3229772 ], + [ 8.1934941, 47.3229725 ], + [ 8.1935067, 47.3229678 ], + [ 8.1935183, 47.3229635 ], + [ 8.1935327, 47.3229611 ], + [ 8.1935448, 47.3229599 ], + [ 8.1935591, 47.32296 ], + [ 8.1935699, 47.3229599 ], + [ 8.1935831, 47.3229597 ], + [ 8.1935938, 47.3229599 ], + [ 8.1936072, 47.3229603 ], + [ 8.1936183, 47.322961 ], + [ 8.1936345, 47.3229617 ], + [ 8.1936456, 47.3229629 ], + [ 8.1936611, 47.3229636 ], + [ 8.1936743, 47.322965 ], + [ 8.1936899, 47.3229666 ], + [ 8.193701, 47.3229686 ], + [ 8.1937156, 47.3229707 ], + [ 8.193728, 47.3229729 ], + [ 8.1937426, 47.3229754 ], + [ 8.1937546, 47.3229793 ], + [ 8.1937674, 47.3229828 ], + [ 8.1937808, 47.3229865 ], + [ 8.193794, 47.3229901 ], + [ 8.1938065, 47.3229942 ], + [ 8.1938234, 47.3229989 ], + [ 8.1938419, 47.3229754 ], + [ 8.1938754, 47.3229877 ], + [ 8.1938579, 47.3230117 ], + [ 8.193923999999999, 47.3230358 ], + [ 8.1939442, 47.3230129 ], + [ 8.1939778, 47.3230251 ], + [ 8.1939609, 47.3230494 ], + [ 8.1939864, 47.3230586 ], + [ 8.1939932, 47.3230501 ], + [ 8.1940065, 47.3230439 ], + [ 8.1940235, 47.3230413 ], + [ 8.1940392, 47.3230425 ], + [ 8.1940533, 47.3230472 ], + [ 8.1940643, 47.3230547 ], + [ 8.1940698, 47.3230644 ], + [ 8.1940699, 47.3230739 ], + [ 8.1940661, 47.3230835 ], + [ 8.1940581, 47.3230906 ], + [ 8.1940487, 47.3230971 ] + ], + [ + [ 8.1946696, 47.3233596 ], + [ 8.1946489, 47.3233848 ], + [ 8.194628699999999, 47.3234042 ], + [ 8.1946137, 47.3234142 ], + [ 8.1945972, 47.3234273 ], + [ 8.1945794, 47.3234401 ], + [ 8.1945617, 47.323451 ], + [ 8.1945433, 47.3234616 ], + [ 8.1945165, 47.3234742 ], + [ 8.1944863, 47.3234802 ], + [ 8.1944587, 47.3234829 ], + [ 8.1944306, 47.3234811 ], + [ 8.1944037, 47.3234788 ], + [ 8.1943721, 47.3234765 ], + [ 8.1943357, 47.3234733 ], + [ 8.1943157, 47.3234704 ], + [ 8.1942724, 47.3234637 ], + [ 8.1942375, 47.3234591 ], + [ 8.1942123, 47.3234561 ], + [ 8.1941871, 47.3234529 ], + [ 8.194162, 47.3234494 ], + [ 8.194143799999999, 47.3234474 ], + [ 8.1941257, 47.3234449 ], + [ 8.1941078, 47.3234417 ], + [ 8.1940675, 47.3234248 ], + [ 8.1939128, 47.3233504 ], + [ 8.1939212, 47.3233424 ], + [ 8.19393, 47.3233466 ], + [ 8.1939566, 47.3233058 ], + [ 8.1939922, 47.323252 ], + [ 8.1940294, 47.323198 ], + [ 8.1940441, 47.3231755 ], + [ 8.1940584, 47.3231536 ], + [ 8.1940778, 47.3231259 ], + [ 8.1941013, 47.3231108 ], + [ 8.1941183, 47.3230995 ], + [ 8.1941397, 47.3230897 ], + [ 8.1941604, 47.3230822 ], + [ 8.1941834, 47.3230755 ], + [ 8.1942067, 47.3230721 ], + [ 8.1942303, 47.3230698 ], + [ 8.1942523, 47.3230672 ], + [ 8.1942754, 47.3230645 ], + [ 8.1942978, 47.3230624 ], + [ 8.1943189, 47.3230606 ], + [ 8.1943434, 47.3230564 ], + [ 8.1943688, 47.3230544 ], + [ 8.1945367, 47.3230518 ], + [ 8.1945986, 47.3230531 ], + [ 8.1946373, 47.3230557 ], + [ 8.1947096, 47.3230667 ], + [ 8.1947473, 47.3230756 ], + [ 8.1947597, 47.3230987 ], + [ 8.1947684, 47.3231196 ], + [ 8.1947703, 47.3231363 ], + [ 8.1947703, 47.3231582 ], + [ 8.1947666, 47.323172 ], + [ 8.1947583, 47.3232042 ], + [ 8.1947379, 47.3232428 ], + [ 8.1947208, 47.3232783 ], + [ 8.1946912, 47.3233261 ], + [ 8.1946696, 47.3233596 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "KTAG201", + "country" : "CHE", + "name" : [ + { + "text" : "Aabach", + "lang" : "de-CH" + }, + { + "text" : "Aabach", + "lang" : "fr-CH" + }, + { + "text" : "Aabach", + "lang" : "it-CH" + }, + { + "text" : "Aabach", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "regulationExemption" : "NO", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "schedule" : [ + { + "day" : [ "ANY" ], + "startTime" : "00:00:00.00+01:00", + "endTime" : "00:00:00.00+01:00" + } + ] + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Aargau", + "lang" : "de-CH" + }, + { + "text" : "Canton d'Argovie", + "lang" : "fr-CH" + }, + { + "text" : "Canton Argovia", + "lang" : "it-CH" + }, + { + "text" : "Canton of Aargau", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Departement Bau, Verkehr und Umwelt (BVU)", + "lang" : "de-CH" + }, + { + "text" : "Département de la construction, des transports et de l'environnement (CTE)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento delle costruzioni, dei trasporti e dell'ambiente (CTA)", + "lang" : "it-CH" + }, + { + "text" : "Department of Civil Engineering,Transport and Environment (CTE)", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Sektion Gewässernutzung", + "lang" : "de-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "fr-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "it-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ag.ch/de/verwaltung/bvu/umwelt-natur-landschaft/hochwasserschutz-gewaesser/gewaessernutzung", + "email" : "alg@ag.ch", + "phone" : "0041 62 835 34 50", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.6032871, 47.2578789 ], + [ 8.6032785, 47.2577377 ], + [ 8.6032592, 47.2575971 ], + [ 8.6032291, 47.2574573 ], + [ 8.6031882, 47.2573188 ], + [ 8.6031368, 47.2571819 ], + [ 8.6030749, 47.2570471 ], + [ 8.6030027, 47.2569146 ], + [ 8.6029205, 47.2567849 ], + [ 8.6028284, 47.2566583 ], + [ 8.6027267, 47.2565352 ], + [ 8.6026157, 47.2564159 ], + [ 8.6024956, 47.2563006 ], + [ 8.6023669, 47.2561898 ], + [ 8.6022298, 47.2560838 ], + [ 8.6020847, 47.2559828 ], + [ 8.601932099999999, 47.2558871 ], + [ 8.6017724, 47.2557969 ], + [ 8.6016059, 47.2557126 ], + [ 8.6014332, 47.2556343 ], + [ 8.6012547, 47.2555623 ], + [ 8.6010709, 47.2554967 ], + [ 8.6008823, 47.2554378 ], + [ 8.6006894, 47.2553857 ], + [ 8.6004928, 47.2553405 ], + [ 8.600293, 47.2553024 ], + [ 8.6000906, 47.2552714 ], + [ 8.599886, 47.2552477 ], + [ 8.5996799, 47.2552314 ], + [ 8.599472800000001, 47.2552224 ], + [ 8.5992654, 47.2552208 ], + [ 8.599058, 47.2552266 ], + [ 8.5988515, 47.2552397 ], + [ 8.5986462, 47.2552602 ], + [ 8.5984427, 47.255288 ], + [ 8.598241699999999, 47.255323 ], + [ 8.5980437, 47.2553651 ], + [ 8.5978491, 47.2554143 ], + [ 8.597658599999999, 47.2554703 ], + [ 8.5974727, 47.2555329 ], + [ 8.5972918, 47.2556022 ], + [ 8.5971165, 47.2556778 ], + [ 8.5969473, 47.2557595 ], + [ 8.5967845, 47.2558471 ], + [ 8.5966287, 47.2559405 ], + [ 8.5964803, 47.2560392 ], + [ 8.596339799999999, 47.2561431 ], + [ 8.5962073, 47.2562519 ], + [ 8.5960835, 47.2563652 ], + [ 8.5959685, 47.2564828 ], + [ 8.5958627, 47.2566043 ], + [ 8.5957663, 47.2567294 ], + [ 8.5956798, 47.2568578 ], + [ 8.5956032, 47.2569891 ], + [ 8.5955368, 47.257123 ], + [ 8.5954808, 47.257259 ], + [ 8.5954354, 47.2573968 ], + [ 8.5954006, 47.2575361 ], + [ 8.5953765, 47.2576764 ], + [ 8.5953633, 47.2578174 ], + [ 8.5953609, 47.2579587 ], + [ 8.5953694, 47.2580998 ], + [ 8.5953888, 47.2582405 ], + [ 8.5954189, 47.2583803 ], + [ 8.5954597, 47.2585188 ], + [ 8.5955111, 47.2586556 ], + [ 8.595573, 47.2587905 ], + [ 8.5956451, 47.2589229 ], + [ 8.5957273, 47.2590527 ], + [ 8.5958194, 47.2591792 ], + [ 8.5959211, 47.2593024 ], + [ 8.5960321, 47.2594217 ], + [ 8.5961522, 47.259537 ], + [ 8.5962809, 47.2596478 ], + [ 8.596418, 47.2597538 ], + [ 8.596563100000001, 47.2598549 ], + [ 8.5967157, 47.2599506 ], + [ 8.5968754, 47.2600407 ], + [ 8.5970419, 47.2601251 ], + [ 8.5972147, 47.2602034 ], + [ 8.597393199999999, 47.2602754 ], + [ 8.597577, 47.260341 ], + [ 8.5977656, 47.2603999 ], + [ 8.5979585, 47.260452 ], + [ 8.5981551, 47.2604972 ], + [ 8.5983549, 47.2605353 ], + [ 8.5985573, 47.2605663 ], + [ 8.5987619, 47.26059 ], + [ 8.598968, 47.2606063 ], + [ 8.5991751, 47.2606153 ], + [ 8.5993826, 47.2606169 ], + [ 8.59959, 47.2606112 ], + [ 8.5997966, 47.260598 ], + [ 8.6000019, 47.2605775 ], + [ 8.6002054, 47.2605497 ], + [ 8.6004064, 47.2605147 ], + [ 8.6006045, 47.2604726 ], + [ 8.600799, 47.2604234 ], + [ 8.6009896, 47.2603674 ], + [ 8.6011755, 47.2603048 ], + [ 8.6013564, 47.2602355 ], + [ 8.6015317, 47.2601599 ], + [ 8.601701, 47.2600782 ], + [ 8.6018637, 47.2599905 ], + [ 8.6020195, 47.2598972 ], + [ 8.6021679, 47.2597985 ], + [ 8.6023085, 47.2596945 ], + [ 8.6024409, 47.259585799999996 ], + [ 8.6025647, 47.2594724 ], + [ 8.6026797, 47.2593548 ], + [ 8.6027855, 47.2592333 ], + [ 8.6028818, 47.2591082 ], + [ 8.6029684, 47.2589798 ], + [ 8.6030449, 47.2588485 ], + [ 8.6031113, 47.2587146 ], + [ 8.6031672, 47.2585786 ], + [ 8.6032127, 47.2584407 ], + [ 8.6032475, 47.2583015 ], + [ 8.6032715, 47.2581611 ], + [ 8.6032847, 47.2580202 ], + [ 8.6032871, 47.2578789 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "HOR0001", + "country" : "CHE", + "name" : [ + { + "text" : "Gefängnis Horgen", + "lang" : "de-CH" + }, + { + "text" : "Gefängnis Horgen", + "lang" : "fr-CH" + }, + { + "text" : "Gefängnis Horgen", + "lang" : "it-CH" + }, + { + "text" : "Gefängnis Horgen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "de-CH" + }, + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "fr-CH" + }, + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "it-CH" + }, + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "de-CH" + }, + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "fr-CH" + }, + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "it-CH" + }, + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Reno Berner", + "lang" : "de-CH" + }, + { + "text" : "Reno Berner", + "lang" : "fr-CH" + }, + { + "text" : "Reno Berner", + "lang" : "it-CH" + }, + { + "text" : "Reno Berner", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.zh.ch/de/direktion-der-justiz-und-des-innern/justizvollzug-wiedereingliederung.html", + "email" : "sicherheit-juwe@ji.zh.ch", + "phone" : "0041432583400", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT12H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.335214, 46.8296418 ], + [ 8.3352135, 46.8297017 ], + [ 8.3348722, 46.8303632 ], + [ 8.334879, 46.8311964 ], + [ 8.3350703, 46.8313868 ], + [ 8.3351516, 46.8314677 ], + [ 8.3352066, 46.8314953 ], + [ 8.3358786, 46.8318332 ], + [ 8.3357826, 46.8319919 ], + [ 8.3356983, 46.8321311 ], + [ 8.3356981, 46.8322425 ], + [ 8.3356975, 46.832495 ], + [ 8.3356975, 46.8325238 ], + [ 8.3357563, 46.8326639 ], + [ 8.3359429, 46.8331083 ], + [ 8.3352114, 46.8336263 ], + [ 8.3342502, 46.8337833 ], + [ 8.3325529, 46.8337309 ], + [ 8.3324866, 46.8337133 ], + [ 8.3322623, 46.8336536 ], + [ 8.3322761, 46.8338342 ], + [ 8.3325803, 46.8378285 ], + [ 8.3316471, 46.8399484 ], + [ 8.3311996, 46.8403277 ], + [ 8.3311469, 46.8403723 ], + [ 8.3311254, 46.8405082 ], + [ 8.3310226, 46.84116 ], + [ 8.3308783, 46.8412589 ], + [ 8.3302394, 46.8417977 ], + [ 8.3300341, 46.8418014 ], + [ 8.3291682, 46.8421763 ], + [ 8.329161, 46.8422 ], + [ 8.328964, 46.8428528 ], + [ 8.3289452, 46.842915 ], + [ 8.328941, 46.8431061 ], + [ 8.3289287, 46.8436642 ], + [ 8.3286799, 46.8442395 ], + [ 8.3285014, 46.8446967 ], + [ 8.3284996, 46.8447185 ], + [ 8.3287505, 46.8447758 ], + [ 8.3288142, 46.8447962 ], + [ 8.3290528, 46.8448923 ], + [ 8.3292203, 46.8449681 ], + [ 8.3293189, 46.844998 ], + [ 8.3294296, 46.8450416 ], + [ 8.3295352, 46.8450633 ], + [ 8.3296163, 46.8450786 ], + [ 8.3296982, 46.8450799 ], + [ 8.3297524, 46.8450992 ], + [ 8.3298191, 46.845121 ], + [ 8.3299084, 46.8451291 ], + [ 8.3299195, 46.8451301 ], + [ 8.3299912, 46.8451188 ], + [ 8.330069, 46.8451063 ], + [ 8.3301537, 46.8451284 ], + [ 8.3302457, 46.8451397 ], + [ 8.330295, 46.8451561 ], + [ 8.3303611, 46.8451786 ], + [ 8.3304484, 46.8452022 ], + [ 8.3305233, 46.8452089 ], + [ 8.3306313, 46.845218 ], + [ 8.3306883, 46.845231 ], + [ 8.3306955, 46.845233 ], + [ 8.3307685, 46.8452527 ], + [ 8.3308314, 46.8452655 ], + [ 8.3308758, 46.8452594 ], + [ 8.3309339, 46.8452529 ], + [ 8.3309512, 46.845251 ], + [ 8.3310629, 46.8452462 ], + [ 8.3311885, 46.8452433 ], + [ 8.3312805, 46.8452661 ], + [ 8.3313958, 46.8452812 ], + [ 8.3315356, 46.8452973 ], + [ 8.3316951, 46.8453228 ], + [ 8.3318413, 46.8453286 ], + [ 8.3319806, 46.8453355 ], + [ 8.3320464, 46.8453349 ], + [ 8.3320834, 46.8453509 ], + [ 8.3321473, 46.8453682 ], + [ 8.3322483, 46.845387099999996 ], + [ 8.3323085, 46.8454129 ], + [ 8.3323554, 46.845433 ], + [ 8.3324496, 46.8454597 ], + [ 8.33254, 46.8454756 ], + [ 8.3325899, 46.8454738 ], + [ 8.3326533, 46.8454714 ], + [ 8.3327441, 46.845501 ], + [ 8.3328817, 46.8455353 ], + [ 8.3329893, 46.8455544 ], + [ 8.3330267, 46.8455819 ], + [ 8.3330915, 46.845608 ], + [ 8.3332033, 46.8456677 ], + [ 8.3332969, 46.8457135 ], + [ 8.3333302, 46.8457667 ], + [ 8.3333839, 46.8458301 ], + [ 8.3334857, 46.8459148 ], + [ 8.3335684, 46.8460002 ], + [ 8.3336841, 46.8460772 ], + [ 8.333781, 46.8461227 ], + [ 8.3339125, 46.8461484 ], + [ 8.3340424, 46.8461833 ], + [ 8.334161, 46.8462038 ], + [ 8.3342, 46.8462105 ], + [ 8.334366, 46.8462246 ], + [ 8.3345467, 46.8462376 ], + [ 8.3346659, 46.8462372 ], + [ 8.3348372, 46.8462773 ], + [ 8.3349794, 46.8463041 ], + [ 8.3351161, 46.8463339 ], + [ 8.3352868, 46.8463684 ], + [ 8.335405, 46.8463666 ], + [ 8.3355088, 46.8463822 ], + [ 8.3355801, 46.8464067 ], + [ 8.335614, 46.8464215 ], + [ 8.3356182, 46.846423 ], + [ 8.3357103, 46.8464423 ], + [ 8.3357632, 46.8464579 ], + [ 8.3358087, 46.8464705 ], + [ 8.3358348, 46.8464777 ], + [ 8.335852299999999, 46.8465009 ], + [ 8.3358682, 46.8465485 ], + [ 8.3358621, 46.8465817 ], + [ 8.3358919, 46.8466323 ], + [ 8.3359356, 46.8466583 ], + [ 8.3359559, 46.8466958 ], + [ 8.3360178, 46.8467529 ], + [ 8.3360728, 46.8467732 ], + [ 8.3361634, 46.8468017 ], + [ 8.3362402, 46.8468603 ], + [ 8.3363316, 46.8469199 ], + [ 8.3364992, 46.8469929 ], + [ 8.3365863, 46.8470528 ], + [ 8.3366468, 46.8471029 ], + [ 8.3367446, 46.8471147 ], + [ 8.3369017, 46.8471337 ], + [ 8.336973799999999, 46.8471424 ], + [ 8.3369747, 46.8471431 ], + [ 8.3370211, 46.8471796 ], + [ 8.3370704, 46.8472323 ], + [ 8.3371186, 46.8472833 ], + [ 8.3371254, 46.8472905 ], + [ 8.3371969, 46.8473184 ], + [ 8.3372948, 46.8473361 ], + [ 8.3373401, 46.8473407 ], + [ 8.3373926, 46.8473385 ], + [ 8.3374884, 46.8473329 ], + [ 8.337588, 46.8473565 ], + [ 8.337689, 46.8473762 ], + [ 8.3378066, 46.8473964 ], + [ 8.3378892, 46.8474471 ], + [ 8.3379656, 46.847479 ], + [ 8.3380439, 46.8474976 ], + [ 8.3381025, 46.8474927 ], + [ 8.3381278, 46.8474906 ], + [ 8.3381902, 46.8474685 ], + [ 8.33825, 46.8474738 ], + [ 8.3382692, 46.8474784 ], + [ 8.338369, 46.8475023 ], + [ 8.338451599999999, 46.8475338 ], + [ 8.338527, 46.847586 ], + [ 8.3385922, 46.8476448 ], + [ 8.3386444, 46.8477016 ], + [ 8.3386485, 46.8477142 ], + [ 8.3386705, 46.847781 ], + [ 8.338693, 46.8478575 ], + [ 8.3387298, 46.8479309 ], + [ 8.3387694, 46.8479962 ], + [ 8.3387975, 46.8480637 ], + [ 8.3388497, 46.8481296 ], + [ 8.3388997, 46.8481751 ], + [ 8.3389267, 46.8481997 ], + [ 8.3389951, 46.8482568 ], + [ 8.3390491, 46.8482992 ], + [ 8.3390945, 46.8483563 ], + [ 8.339166, 46.8484094 ], + [ 8.3392447, 46.8484586 ], + [ 8.3392767, 46.8484804 ], + [ 8.3393422, 46.8484809 ], + [ 8.3394135, 46.8484896 ], + [ 8.3394981, 46.8485584 ], + [ 8.3396199, 46.84858 ], + [ 8.3396693, 46.8485794 ], + [ 8.3397809, 46.8486035 ], + [ 8.3398582, 46.8486322 ], + [ 8.3399602, 46.8486396 ], + [ 8.3400601, 46.8486388 ], + [ 8.3401637, 46.8486483 ], + [ 8.3402258, 46.8486765 ], + [ 8.3403063, 46.8487284 ], + [ 8.3404182, 46.8487806 ], + [ 8.3405193, 46.8488294 ], + [ 8.3405886, 46.8488491 ], + [ 8.3406646, 46.8488399 ], + [ 8.3407371, 46.8488414 ], + [ 8.3408099, 46.848856 ], + [ 8.3409079, 46.8488988 ], + [ 8.3409856, 46.8489494 ], + [ 8.3410154, 46.8489995 ], + [ 8.3410248, 46.8490062 ], + [ 8.3410353, 46.8490136 ], + [ 8.3410651, 46.8490347 ], + [ 8.3411361, 46.8490455 ], + [ 8.341261, 46.8490683 ], + [ 8.3414128, 46.8490807 ], + [ 8.3415271, 46.8490918 ], + [ 8.3416391, 46.8490809 ], + [ 8.3417272, 46.8490729 ], + [ 8.341755, 46.8490771 ], + [ 8.3418394, 46.8490897 ], + [ 8.3419192, 46.849122 ], + [ 8.3419688, 46.849164 ], + [ 8.342034, 46.8492042 ], + [ 8.3420349, 46.8492047 ], + [ 8.3421247, 46.8492322 ], + [ 8.342238, 46.8492788 ], + [ 8.3423675, 46.849319 ], + [ 8.3425265, 46.8493923 ], + [ 8.3425909, 46.8494598 ], + [ 8.3426661, 46.8495433 ], + [ 8.3427611, 46.8496269 ], + [ 8.3428715, 46.8497044 ], + [ 8.3429978, 46.849777 ], + [ 8.3431209, 46.8498594 ], + [ 8.3433532, 46.8500216 ], + [ 8.343439, 46.850054 ], + [ 8.343552, 46.8500678 ], + [ 8.3436494, 46.8500654 ], + [ 8.343736, 46.8500863 ], + [ 8.343803, 46.8501029 ], + [ 8.3438231, 46.8501079 ], + [ 8.3439397, 46.8501208 ], + [ 8.3440205, 46.8501083 ], + [ 8.3440801, 46.8500844 ], + [ 8.3441672, 46.850023 ], + [ 8.3442429, 46.8499649 ], + [ 8.3442627, 46.8499497 ], + [ 8.3443735, 46.8499102 ], + [ 8.3445025, 46.8499218 ], + [ 8.344653600000001, 46.8499124 ], + [ 8.3448059, 46.8498867 ], + [ 8.3449866, 46.8498757 ], + [ 8.3451181, 46.8498772 ], + [ 8.345293, 46.8498995 ], + [ 8.3454177, 46.8498963 ], + [ 8.3454682, 46.8498951 ], + [ 8.3455834, 46.8498857 ], + [ 8.3456115, 46.8498754 ], + [ 8.3456837, 46.849849 ], + [ 8.3458317, 46.8498135 ], + [ 8.3459657, 46.8497919 ], + [ 8.3461306, 46.8497846 ], + [ 8.346142, 46.8497841 ], + [ 8.3462722, 46.849789799999996 ], + [ 8.3463938, 46.849736 ], + [ 8.3464415, 46.8497361 ], + [ 8.3465034, 46.8497363 ], + [ 8.3465644, 46.8497171 ], + [ 8.3466558, 46.8496883 ], + [ 8.3468061, 46.8496815 ], + [ 8.3468183, 46.8496691 ], + [ 8.3468553, 46.8496313 ], + [ 8.3469178, 46.8496086 ], + [ 8.3469325, 46.8496033 ], + [ 8.3469516, 46.8496028 ], + [ 8.3470312, 46.8496006 ], + [ 8.347095, 46.8495762 ], + [ 8.3471269, 46.8495641 ], + [ 8.3471395, 46.8495491 ], + [ 8.3471609, 46.8495237 ], + [ 8.3471896, 46.8495191 ], + [ 8.347222, 46.8495138 ], + [ 8.3472652, 46.8495068 ], + [ 8.3473292, 46.8494689 ], + [ 8.3473374, 46.8494668 ], + [ 8.3473433, 46.8494653 ], + [ 8.3474096, 46.8494483 ], + [ 8.3475566, 46.8494314 ], + [ 8.3476447, 46.8494306 ], + [ 8.3476624, 46.8494364 ], + [ 8.3477196, 46.8494692 ], + [ 8.347744, 46.8494831 ], + [ 8.3477485, 46.8494844 ], + [ 8.3478052, 46.8495004 ], + [ 8.3478433, 46.8495028 ], + [ 8.3478859, 46.8495054 ], + [ 8.3478962, 46.849506 ], + [ 8.3479281, 46.849508 ], + [ 8.3480346, 46.8494997 ], + [ 8.3481198, 46.849505 ], + [ 8.3481839, 46.8495345 ], + [ 8.3481892, 46.849537 ], + [ 8.3482671, 46.8495716 ], + [ 8.3483615, 46.8495729 ], + [ 8.3484856, 46.8495548 ], + [ 8.348571, 46.8495254 ], + [ 8.3486107, 46.849502 ], + [ 8.3486394, 46.8494852 ], + [ 8.3486563, 46.8494716 ], + [ 8.3486853, 46.8494484 ], + [ 8.3487366, 46.8494458 ], + [ 8.3488144, 46.8494728 ], + [ 8.3489875, 46.8494605 ], + [ 8.34911, 46.8494628 ], + [ 8.349149, 46.8494792 ], + [ 8.3491927, 46.8495064 ], + [ 8.34923, 46.8495769 ], + [ 8.3492786, 46.849601 ], + [ 8.3493329, 46.8495988 ], + [ 8.3493765, 46.8496082 ], + [ 8.34941, 46.8496343 ], + [ 8.3494112, 46.8496352 ], + [ 8.3495091, 46.8496513 ], + [ 8.3496153, 46.8496514 ], + [ 8.3498258, 46.8496201 ], + [ 8.3498335, 46.849619 ], + [ 8.3498624, 46.8496172 ], + [ 8.3498915, 46.8496161 ], + [ 8.3499206, 46.8496158 ], + [ 8.3499497, 46.8496162 ], + [ 8.3499788, 46.8496174 ], + [ 8.3500078, 46.8496193 ], + [ 8.3500263, 46.8496208 ], + [ 8.3500448, 46.8496224 ], + [ 8.3500633, 46.8496241 ], + [ 8.3500817, 46.849626 ], + [ 8.3501001, 46.8496279 ], + [ 8.3501186, 46.84963 ], + [ 8.3501363, 46.8496322 ], + [ 8.350154, 46.8496348 ], + [ 8.3501715, 46.8496379 ], + [ 8.3501888, 46.8496414 ], + [ 8.350206, 46.8496453 ], + [ 8.350223, 46.8496496 ], + [ 8.3502405, 46.8496545 ], + [ 8.3502578, 46.8496598 ], + [ 8.3502748, 46.8496655 ], + [ 8.3502915, 46.8496715 ], + [ 8.350308, 46.849678 ], + [ 8.3503241, 46.8496848 ], + [ 8.3503405, 46.8496921 ], + [ 8.3503568, 46.8496994 ], + [ 8.3503731, 46.8497069 ], + [ 8.3503893, 46.8497144 ], + [ 8.3504055, 46.8497219 ], + [ 8.3504215, 46.8497295 ], + [ 8.3504403, 46.8497387 ], + [ 8.3504588, 46.849748 ], + [ 8.3504772, 46.8497575 ], + [ 8.3504953, 46.8497672 ], + [ 8.3505131, 46.8497772 ], + [ 8.3505308, 46.8497873 ], + [ 8.3505487, 46.8497977 ], + [ 8.3505666, 46.849808 ], + [ 8.3505846, 46.8498183 ], + [ 8.3506027, 46.8498286 ], + [ 8.3506207, 46.8498388 ], + [ 8.3506389, 46.849849 ], + [ 8.3506542, 46.8498576 ], + [ 8.3506693, 46.8498663 ], + [ 8.3506843, 46.8498751 ], + [ 8.3506992, 46.849884 ], + [ 8.350714, 46.8498931 ], + [ 8.3507286, 46.8499022 ], + [ 8.3507439, 46.8499116 ], + [ 8.3507595, 46.8499208 ], + [ 8.3507755, 46.8499297 ], + [ 8.3507918, 46.8499384 ], + [ 8.3508084, 46.8499467 ], + [ 8.3508253, 46.8499548 ], + [ 8.3508414, 46.8499621 ], + [ 8.3508579, 46.8499691 ], + [ 8.3508746, 46.8499757 ], + [ 8.3508917, 46.849982 ], + [ 8.3509089, 46.8499879 ], + [ 8.3509265, 46.8499935 ], + [ 8.350943000000001, 46.8499987 ], + [ 8.3509593, 46.8500041 ], + [ 8.3509754, 46.8500098 ], + [ 8.3509914, 46.8500157 ], + [ 8.3510072, 46.8500218 ], + [ 8.351022799999999, 46.8500281 ], + [ 8.3510335, 46.8500328 ], + [ 8.3510438, 46.8500379 ], + [ 8.3510537, 46.8500434 ], + [ 8.3510632, 46.8500492 ], + [ 8.3510722, 46.8500553 ], + [ 8.3510807, 46.8500618 ], + [ 8.3510823, 46.850063 ], + [ 8.3510838, 46.8500642 ], + [ 8.3510855, 46.8500654 ], + [ 8.3510871, 46.8500666 ], + [ 8.3510888, 46.8500678 ], + [ 8.3510905, 46.8500689 ], + [ 8.3511014, 46.8500754 ], + [ 8.3511133, 46.8500812 ], + [ 8.351126, 46.8500861 ], + [ 8.3511393, 46.8500902 ], + [ 8.3511532, 46.8500933 ], + [ 8.3511674, 46.8500954 ], + [ 8.3511923, 46.8500976 ], + [ 8.3512175, 46.8500986 ], + [ 8.351242599999999, 46.8500985 ], + [ 8.3512677, 46.8500971 ], + [ 8.3512926, 46.8500945 ], + [ 8.3513171, 46.8500907 ], + [ 8.3513237, 46.8500895 ], + [ 8.3513302, 46.8500884 ], + [ 8.3513368, 46.8500874 ], + [ 8.3513434, 46.8500864 ], + [ 8.3513501, 46.8500854 ], + [ 8.3513567, 46.8500845 ], + [ 8.3513722, 46.8500827 ], + [ 8.3513877, 46.8500811 ], + [ 8.3514033, 46.8500798 ], + [ 8.351419, 46.8500788 ], + [ 8.3514346, 46.8500781 ], + [ 8.3514503, 46.8500777 ], + [ 8.3514608, 46.8500776 ], + [ 8.3514712, 46.8500778 ], + [ 8.3514816, 46.8500782 ], + [ 8.351492, 46.8500789 ], + [ 8.3515023, 46.8500798 ], + [ 8.3515126, 46.8500809 ], + [ 8.3515239, 46.8500823 ], + [ 8.3515351, 46.8500836 ], + [ 8.3515464, 46.8500848 ], + [ 8.3515577, 46.850086 ], + [ 8.351569, 46.8500871 ], + [ 8.3515803, 46.8500881 ], + [ 8.3519778, 46.8501243 ], + [ 8.3520152, 46.8501273 ], + [ 8.3520526, 46.8501302 ], + [ 8.35209, 46.8501328 ], + [ 8.3521275, 46.8501353 ], + [ 8.352165, 46.8501376 ], + [ 8.3522025, 46.8501397 ], + [ 8.3526186, 46.8502049 ], + [ 8.352751, 46.8502365 ], + [ 8.3527534, 46.8502517 ], + [ 8.3527596, 46.850291 ], + [ 8.3529447, 46.850323 ], + [ 8.352949, 46.8503238 ], + [ 8.3530571, 46.8503296 ], + [ 8.353094, 46.8503316 ], + [ 8.3530981, 46.8503479 ], + [ 8.353106499999999, 46.8503815 ], + [ 8.3531082, 46.8503885 ], + [ 8.3531355, 46.8504472 ], + [ 8.3531823, 46.8504717 ], + [ 8.3532873, 46.8504535 ], + [ 8.353341, 46.850474 ], + [ 8.353387, 46.8504626 ], + [ 8.3535106, 46.8504319 ], + [ 8.3536284, 46.8505141 ], + [ 8.3537575, 46.8505904 ], + [ 8.3538514, 46.8506372 ], + [ 8.3538778, 46.8506503 ], + [ 8.3539811, 46.8507073 ], + [ 8.3540409, 46.8507329 ], + [ 8.3540903, 46.8507424 ], + [ 8.3541816, 46.8507418 ], + [ 8.3543057, 46.8507251 ], + [ 8.3543483, 46.8507041 ], + [ 8.3545719, 46.850706 ], + [ 8.3546025, 46.8507063 ], + [ 8.3547049, 46.8507438 ], + [ 8.3547307, 46.8507553 ], + [ 8.3548162, 46.8507935 ], + [ 8.3549517, 46.8508328 ], + [ 8.3550591, 46.8508417 ], + [ 8.3551223, 46.8508333 ], + [ 8.3552096, 46.8508218 ], + [ 8.3556219, 46.8508246 ], + [ 8.3557566, 46.8508255 ], + [ 8.3559294, 46.8508266 ], + [ 8.3561241, 46.8508387 ], + [ 8.3561707, 46.850834 ], + [ 8.3562443, 46.8508509 ], + [ 8.3563453, 46.8508569 ], + [ 8.356541, 46.8508865 ], + [ 8.3567105, 46.8509341 ], + [ 8.3567767, 46.8509607 ], + [ 8.3570787, 46.8510575 ], + [ 8.3576242, 46.8511488 ], + [ 8.3576786, 46.8511774 ], + [ 8.3576797, 46.8511775 ], + [ 8.3577112, 46.8511945 ], + [ 8.3579568, 46.8513234 ], + [ 8.3579803, 46.8513648 ], + [ 8.3580889, 46.8515549 ], + [ 8.3583834, 46.851873 ], + [ 8.3585513, 46.8522718 ], + [ 8.3585866, 46.8523556 ], + [ 8.3588892, 46.852561 ], + [ 8.3590014, 46.8526371 ], + [ 8.3593793, 46.8531012 ], + [ 8.3595341, 46.8532015 ], + [ 8.3595456, 46.8534013 ], + [ 8.3595492, 46.8534655 ], + [ 8.3597126, 46.8537393 ], + [ 8.3597293, 46.8537793 ], + [ 8.3598065, 46.8539241 ], + [ 8.3598337, 46.8539752 ], + [ 8.3598365, 46.8539793 ], + [ 8.3598392, 46.8539835 ], + [ 8.3598417, 46.853987599999996 ], + [ 8.3598441, 46.8539919 ], + [ 8.3598463, 46.8539962 ], + [ 8.3598484, 46.8540005 ], + [ 8.3598505, 46.8540048 ], + [ 8.3598525, 46.8540091 ], + [ 8.3598546, 46.8540134 ], + [ 8.3598567, 46.8540177 ], + [ 8.3598589, 46.854022 ], + [ 8.359861, 46.8540263 ], + [ 8.3598626, 46.8540295 ], + [ 8.3598643, 46.8540328 ], + [ 8.3598661, 46.854036 ], + [ 8.3598678, 46.8540392 ], + [ 8.3598696, 46.8540424 ], + [ 8.3598715, 46.8540456 ], + [ 8.3598732, 46.8540489 ], + [ 8.3598748, 46.8540521 ], + [ 8.3598761, 46.8540555 ], + [ 8.3598773, 46.8540588 ], + [ 8.3598782, 46.8540622 ], + [ 8.3598789, 46.8540656 ], + [ 8.3598793, 46.8540677 ], + [ 8.3598795, 46.8540698 ], + [ 8.3598796, 46.854072 ], + [ 8.3598796, 46.8540741 ], + [ 8.3598795, 46.8540762 ], + [ 8.3598792, 46.8540783 ], + [ 8.359878, 46.8540828 ], + [ 8.3598761, 46.8540872 ], + [ 8.3598738, 46.8540915 ], + [ 8.3598709, 46.8540956 ], + [ 8.3598675, 46.8540996 ], + [ 8.3598636, 46.8541033 ], + [ 8.3598584, 46.8541086 ], + [ 8.3598524, 46.8541135 ], + [ 8.3598457, 46.854118 ], + [ 8.3598385, 46.854122 ], + [ 8.3598307, 46.8541255 ], + [ 8.3598224, 46.8541284 ], + [ 8.3598138, 46.8541308 ], + [ 8.3598048, 46.8541327 ], + [ 8.3597306, 46.8541525 ], + [ 8.3597111, 46.8541586 ], + [ 8.3596937, 46.8541656 ], + [ 8.3596773, 46.8541736 ], + [ 8.359662, 46.8541826 ], + [ 8.359648, 46.8541926 ], + [ 8.3596354, 46.8542034 ], + [ 8.3596243, 46.8542149 ], + [ 8.3596148, 46.8542271 ], + [ 8.3596069, 46.8542398 ], + [ 8.3596015, 46.854251 ], + [ 8.3595975, 46.8542625 ], + [ 8.3595947, 46.8542742 ], + [ 8.3595933, 46.8542859 ], + [ 8.3595933, 46.8542977 ], + [ 8.3595946, 46.8543095 ], + [ 8.3596276, 46.854509 ], + [ 8.3596407, 46.854588 ], + [ 8.3597225, 46.8547291 ], + [ 8.3597307, 46.8547432 ], + [ 8.3597434, 46.8547494 ], + [ 8.3598928, 46.8548226 ], + [ 8.3599249, 46.8548384 ], + [ 8.3599795, 46.8548652 ], + [ 8.3604984, 46.8551214 ], + [ 8.3605165, 46.8551283 ], + [ 8.3605343, 46.8551356 ], + [ 8.3605518, 46.8551432 ], + [ 8.3605689, 46.8551511 ], + [ 8.3605857, 46.8551594 ], + [ 8.3606021, 46.8551681 ], + [ 8.3606144, 46.855175 ], + [ 8.3606261, 46.8551824 ], + [ 8.3606374, 46.8551902 ], + [ 8.360648, 46.8551983 ], + [ 8.3606581, 46.8552067 ], + [ 8.3606676, 46.8552155 ], + [ 8.3606766, 46.8552245 ], + [ 8.360685, 46.8552337 ], + [ 8.360693, 46.8552432 ], + [ 8.3607005, 46.8552528 ], + [ 8.3607075, 46.8552626 ], + [ 8.360714, 46.8552726 ], + [ 8.3607194, 46.8552822 ], + [ 8.3607237, 46.8552922 ], + [ 8.360727, 46.8553023 ], + [ 8.3607291, 46.8553126 ], + [ 8.3607302, 46.8553229 ], + [ 8.3607302, 46.8553333 ], + [ 8.36073, 46.8553436 ], + [ 8.3607307, 46.8553539 ], + [ 8.3607323, 46.8553642 ], + [ 8.3607348, 46.8553744 ], + [ 8.3607381, 46.8553845 ], + [ 8.3607423, 46.8553945 ], + [ 8.36075, 46.8554104 ], + [ 8.3607581, 46.8554263 ], + [ 8.3607666, 46.8554421 ], + [ 8.3607755, 46.8554577 ], + [ 8.3607848, 46.8554733 ], + [ 8.3607946, 46.8554887 ], + [ 8.3608046, 46.855504 ], + [ 8.3608148, 46.8555193 ], + [ 8.3608252, 46.8555345 ], + [ 8.360835699999999, 46.8555497 ], + [ 8.3608465, 46.8555648 ], + [ 8.3608574, 46.8555798 ], + [ 8.3608641, 46.8555884 ], + [ 8.3608717, 46.8555966 ], + [ 8.36088, 46.8556044 ], + [ 8.360889, 46.8556119 ], + [ 8.3608987, 46.8556189 ], + [ 8.3609091, 46.8556255 ], + [ 8.3609169, 46.8556306 ], + [ 8.360924, 46.8556362 ], + [ 8.3609303, 46.8556421 ], + [ 8.3609358, 46.8556485 ], + [ 8.3609405, 46.8556552 ], + [ 8.3609442, 46.8556621 ], + [ 8.360947, 46.8556692 ], + [ 8.3609488, 46.8556765 ], + [ 8.360949399999999, 46.8556814 ], + [ 8.3609493, 46.8556864 ], + [ 8.3609485, 46.8556913 ], + [ 8.360947, 46.8556961 ], + [ 8.3609448, 46.8557008 ], + [ 8.360942, 46.8557053 ], + [ 8.3609387, 46.8557097 ], + [ 8.3609347, 46.8557138 ], + [ 8.3609301, 46.8557176 ], + [ 8.3609251, 46.8557211 ], + [ 8.3609169, 46.8557269 ], + [ 8.3609096, 46.8557332 ], + [ 8.3609033, 46.8557399 ], + [ 8.360898, 46.8557471 ], + [ 8.3608938, 46.8557546 ], + [ 8.3608908, 46.8557624 ], + [ 8.360887, 46.8557752 ], + [ 8.3608836, 46.8557882 ], + [ 8.3608808, 46.8558012 ], + [ 8.3608785, 46.8558142 ], + [ 8.3608768, 46.8558273 ], + [ 8.3608755, 46.8558404 ], + [ 8.3608745, 46.8558535 ], + [ 8.360873699999999, 46.8558666 ], + [ 8.3608731, 46.8558797 ], + [ 8.3608725, 46.8558928 ], + [ 8.3608722, 46.8559059 ], + [ 8.3608719, 46.855919 ], + [ 8.3608722, 46.8559289 ], + [ 8.3608734, 46.8559387 ], + [ 8.3608755, 46.8559485 ], + [ 8.3608784, 46.8559581 ], + [ 8.3608822, 46.8559676 ], + [ 8.3608869, 46.855977 ], + [ 8.3608903, 46.8559841 ], + [ 8.3608927, 46.8559915 ], + [ 8.3608942, 46.8559989 ], + [ 8.3608947, 46.8560064 ], + [ 8.3608941, 46.8560139 ], + [ 8.3608927, 46.8560214 ], + [ 8.3608902, 46.8560287 ], + [ 8.3608868, 46.8560358 ], + [ 8.3608856, 46.8560377 ], + [ 8.3608842, 46.8560396 ], + [ 8.3608825, 46.8560413 ], + [ 8.3608806, 46.8560429 ], + [ 8.3608785, 46.8560444 ], + [ 8.3608763, 46.8560458 ], + [ 8.3608738, 46.856047 ], + [ 8.3608712, 46.856048 ], + [ 8.3608685, 46.8560489 ], + [ 8.3608657, 46.8560497 ], + [ 8.3608628, 46.8560502 ], + [ 8.3608598, 46.8560506 ], + [ 8.3608568, 46.8560508 ], + [ 8.3608538, 46.8560508 ], + [ 8.3608508, 46.8560506 ], + [ 8.3608478, 46.8560503 ], + [ 8.3608449, 46.8560497 ], + [ 8.3608421, 46.856049 ], + [ 8.360839, 46.8560483 ], + [ 8.3608359, 46.8560477 ], + [ 8.3608326, 46.8560472 ], + [ 8.3608294, 46.856047 ], + [ 8.3608261, 46.856047 ], + [ 8.3608228, 46.8560471 ], + [ 8.3608196, 46.8560474 ], + [ 8.3608164, 46.8560479 ], + [ 8.3608133, 46.8560486 ], + [ 8.3608103, 46.8560495 ], + [ 8.3608074, 46.8560505 ], + [ 8.3608046, 46.8560517 ], + [ 8.360802, 46.856053 ], + [ 8.3607995, 46.8560545 ], + [ 8.3607973, 46.8560562 ], + [ 8.3607952, 46.8560579 ], + [ 8.3607836, 46.8560692 ], + [ 8.3607726, 46.8560807 ], + [ 8.3607624, 46.8560926 ], + [ 8.3607528, 46.8561047 ], + [ 8.360744, 46.856117 ], + [ 8.3607359, 46.8561296 ], + [ 8.3607284, 46.8561424 ], + [ 8.3607216, 46.8561554 ], + [ 8.3607155, 46.8561685 ], + [ 8.3607099, 46.8561817 ], + [ 8.360705, 46.8561951 ], + [ 8.3607008, 46.8562085 ], + [ 8.3606974, 46.8562216 ], + [ 8.3606947, 46.8562348 ], + [ 8.3606929, 46.8562481 ], + [ 8.3606918, 46.8562614 ], + [ 8.3606914, 46.8562747 ], + [ 8.3606919, 46.8562881 ], + [ 8.3606929, 46.8563013 ], + [ 8.3606945, 46.8563146 ], + [ 8.3606965, 46.8563278 ], + [ 8.360699, 46.856341 ], + [ 8.360702, 46.8563542 ], + [ 8.3607055, 46.8563673 ], + [ 8.3607085, 46.8563764 ], + [ 8.3607121, 46.8563855 ], + [ 8.3607162, 46.8563944 ], + [ 8.360721, 46.8564032 ], + [ 8.3607264, 46.8564118 ], + [ 8.3607324, 46.8564202 ], + [ 8.3607388, 46.8564285 ], + [ 8.3607455, 46.8564366 ], + [ 8.360752399999999, 46.8564447 ], + [ 8.3607597, 46.8564526 ], + [ 8.3607672, 46.8564604 ], + [ 8.3607749, 46.8564681 ], + [ 8.3607781, 46.856471 ], + [ 8.3607816, 46.8564736 ], + [ 8.3607853, 46.8564761 ], + [ 8.3607894, 46.8564784 ], + [ 8.3607936, 46.8564804 ], + [ 8.3607981, 46.8564822 ], + [ 8.3608028, 46.8564838 ], + [ 8.3608077, 46.8564851 ], + [ 8.3608141, 46.8564869 ], + [ 8.3608203, 46.8564889 ], + [ 8.3608263, 46.8564912 ], + [ 8.360832, 46.8564939 ], + [ 8.3608375, 46.8564967 ], + [ 8.3608427, 46.8564999 ], + [ 8.360843299999999, 46.8565004 ], + [ 8.360844, 46.8565009 ], + [ 8.3608445, 46.8565014 ], + [ 8.360845, 46.856502 ], + [ 8.3608454, 46.8565026 ], + [ 8.3608457, 46.8565033 ], + [ 8.3608459, 46.8565039 ], + [ 8.3608461, 46.8565046 ], + [ 8.3608461, 46.8565053 ], + [ 8.3608461, 46.856506 ], + [ 8.360846, 46.8565066 ], + [ 8.3608458, 46.8565073 ], + [ 8.3608455, 46.8565079 ], + [ 8.3608451, 46.8565086 ], + [ 8.3608448, 46.8565091 ], + [ 8.3608446, 46.8565096 ], + [ 8.3608444, 46.8565101 ], + [ 8.3608444, 46.8565107 ], + [ 8.3608443, 46.8565112 ], + [ 8.3608444, 46.8565118 ], + [ 8.3608445, 46.8565123 ], + [ 8.3608447, 46.8565128 ], + [ 8.3608449, 46.8565133 ], + [ 8.3608452, 46.8565138 ], + [ 8.3608456, 46.8565143 ], + [ 8.360846, 46.8565148 ], + [ 8.3608465, 46.8565152 ], + [ 8.3608471, 46.8565156 ], + [ 8.3608477, 46.856516 ], + [ 8.3608483, 46.8565163 ], + [ 8.360849, 46.8565166 ], + [ 8.3608497, 46.8565168 ], + [ 8.3608843, 46.8565275 ], + [ 8.360918999999999, 46.856538 ], + [ 8.3609537, 46.8565483 ], + [ 8.3609886, 46.8565586 ], + [ 8.3610236, 46.8565686 ], + [ 8.3610586, 46.8565786 ], + [ 8.3610938, 46.8565883 ], + [ 8.3611291, 46.8565978 ], + [ 8.3611646, 46.856607 ], + [ 8.3612002, 46.8566159 ], + [ 8.3612359, 46.8566246 ], + [ 8.3612718, 46.856633 ], + [ 8.3612837, 46.8566353 ], + [ 8.3612957, 46.856637 ], + [ 8.3613079, 46.856638 ], + [ 8.3613202, 46.8566383 ], + [ 8.3613325, 46.8566379 ], + [ 8.3613448, 46.8566369 ], + [ 8.361354, 46.8566361 ], + [ 8.3613634, 46.8566359 ], + [ 8.3613727, 46.8566363 ], + [ 8.3613819, 46.8566373 ], + [ 8.361391, 46.8566388 ], + [ 8.3613998, 46.856641 ], + [ 8.3614083, 46.8566436 ], + [ 8.3614164, 46.8566468 ], + [ 8.3614257, 46.8566513 ], + [ 8.361434299999999, 46.8566562 ], + [ 8.3614424, 46.8566616 ], + [ 8.3614497, 46.8566674 ], + [ 8.3614564, 46.8566737 ], + [ 8.3614622, 46.8566803 ], + [ 8.3614673, 46.8566872 ], + [ 8.3614714, 46.8566944 ], + [ 8.3614742, 46.8566994 ], + [ 8.3614773, 46.8567043 ], + [ 8.3614808, 46.856709 ], + [ 8.3614847, 46.8567136 ], + [ 8.3614889, 46.8567181 ], + [ 8.3614934, 46.8567225 ], + [ 8.3614978, 46.8567264 ], + [ 8.3615026, 46.8567301 ], + [ 8.3615075, 46.8567337 ], + [ 8.3615128, 46.8567371 ], + [ 8.3615182, 46.8567403 ], + [ 8.3615239, 46.8567433 ], + [ 8.361532799999999, 46.8567475 ], + [ 8.3615423, 46.8567512 ], + [ 8.3615522, 46.8567542 ], + [ 8.3615625, 46.8567566 ], + [ 8.361573, 46.8567584 ], + [ 8.3615837, 46.8567596 ], + [ 8.3615944, 46.8567604 ], + [ 8.3616051, 46.8567613 ], + [ 8.3616157, 46.8567623 ], + [ 8.3616264, 46.8567633 ], + [ 8.361637, 46.8567643 ], + [ 8.3616476, 46.8567655 ], + [ 8.3616722, 46.856768 ], + [ 8.3616969, 46.8567705 ], + [ 8.3617216, 46.856773 ], + [ 8.3617463, 46.8567754 ], + [ 8.361771, 46.8567777 ], + [ 8.3617957, 46.8567799 ], + [ 8.3618204, 46.856782 ], + [ 8.3618452, 46.8567837 ], + [ 8.3618701, 46.8567852 ], + [ 8.3618949, 46.8567865 ], + [ 8.3619198, 46.8567874 ], + [ 8.3619448, 46.856788 ], + [ 8.3619521, 46.856788 ], + [ 8.3619594, 46.8567875 ], + [ 8.3619667, 46.8567866 ], + [ 8.3619738, 46.8567853 ], + [ 8.3619807, 46.8567836 ], + [ 8.3619874, 46.8567815 ], + [ 8.361994, 46.8567793 ], + [ 8.3620008, 46.8567775 ], + [ 8.3620078, 46.856775999999996 ], + [ 8.3620149, 46.8567748 ], + [ 8.3620221, 46.8567739 ], + [ 8.3620294, 46.8567733 ], + [ 8.3620497, 46.8567724 ], + [ 8.3620701, 46.8567717 ], + [ 8.3620906, 46.8567713 ], + [ 8.362111, 46.8567712 ], + [ 8.362131399999999, 46.8567714 ], + [ 8.3621518, 46.8567719 ], + [ 8.3621723, 46.8567725 ], + [ 8.3621927, 46.8567727 ], + [ 8.3622131, 46.8567726 ], + [ 8.3622335, 46.8567722 ], + [ 8.3622539, 46.8567715 ], + [ 8.3622743, 46.8567705 ], + [ 8.3622848, 46.8567698 ], + [ 8.3622953, 46.8567691 ], + [ 8.3623058, 46.8567683 ], + [ 8.3623162, 46.8567675 ], + [ 8.3623267, 46.8567665 ], + [ 8.3623371, 46.8567656 ], + [ 8.3623462, 46.8567646 ], + [ 8.3623553, 46.8567637 ], + [ 8.3623644, 46.8567627 ], + [ 8.3623735, 46.8567616 ], + [ 8.3623825, 46.8567605 ], + [ 8.3623916, 46.8567593 ], + [ 8.362411, 46.8567568 ], + [ 8.3624304, 46.8567543 ], + [ 8.3624498, 46.8567519 ], + [ 8.3624692, 46.8567496 ], + [ 8.3624886, 46.8567473 ], + [ 8.3625081, 46.856745 ], + [ 8.3625428, 46.856741 ], + [ 8.3625775, 46.8567369 ], + [ 8.3626121, 46.8567327 ], + [ 8.362646699999999, 46.8567285 ], + [ 8.3626814, 46.8567242 ], + [ 8.362716, 46.8567198 ], + [ 8.3627193, 46.8567194 ], + [ 8.3627027, 46.8567626 ], + [ 8.362695, 46.8567825 ], + [ 8.3627449, 46.856787 ], + [ 8.3627577, 46.8567778 ], + [ 8.3627701, 46.856769 ], + [ 8.3627739, 46.8567701 ], + [ 8.3627769, 46.856771 ], + [ 8.36278, 46.8567719 ], + [ 8.3627831, 46.8567728 ], + [ 8.3627862, 46.8567737 ], + [ 8.3627892, 46.8567745 ], + [ 8.3627923, 46.8567753 ], + [ 8.3628194, 46.8567826 ], + [ 8.3628462, 46.8567902 ], + [ 8.3628729, 46.856798 ], + [ 8.3628993, 46.8568062 ], + [ 8.3629256, 46.8568147 ], + [ 8.3629516, 46.8568235 ], + [ 8.3629549, 46.8568246 ], + [ 8.3629582, 46.8568257 ], + [ 8.3629615, 46.8568268 ], + [ 8.3629648, 46.8568279 ], + [ 8.3629682, 46.8568289 ], + [ 8.3629715, 46.85683 ], + [ 8.3629949, 46.856836799999996 ], + [ 8.3630188, 46.8568429 ], + [ 8.363043, 46.8568483 ], + [ 8.3630675, 46.8568529 ], + [ 8.3630924, 46.8568567 ], + [ 8.3631174, 46.8568598 ], + [ 8.363127800000001, 46.8568609 ], + [ 8.3631381, 46.8568618 ], + [ 8.3631484, 46.8568627 ], + [ 8.3631588, 46.8568635 ], + [ 8.3631692, 46.8568642 ], + [ 8.3631796, 46.8568648 ], + [ 8.3631997, 46.8568657 ], + [ 8.3632197, 46.8568664 ], + [ 8.3632398, 46.8568666 ], + [ 8.3632599, 46.8568666 ], + [ 8.36328, 46.8568663 ], + [ 8.3633001, 46.8568656 ], + [ 8.3633305, 46.856864 ], + [ 8.3633609, 46.856862 ], + [ 8.3633911, 46.856859299999996 ], + [ 8.3634213, 46.8568562 ], + [ 8.3634513, 46.8568525 ], + [ 8.3634812, 46.8568482 ], + [ 8.3634884, 46.8568471 ], + [ 8.3634956, 46.856846 ], + [ 8.3635028, 46.8568448 ], + [ 8.36351, 46.8568436 ], + [ 8.3635172, 46.8568424 ], + [ 8.3635244, 46.8568411 ], + [ 8.3635791, 46.8568304 ], + [ 8.363633, 46.8568179 ], + [ 8.363686, 46.8568036 ], + [ 8.363738, 46.8567877 ], + [ 8.3637888, 46.85677 ], + [ 8.3638383, 46.8567507 ], + [ 8.3638457, 46.856748 ], + [ 8.3638527, 46.856745 ], + [ 8.3638594, 46.8567415 ], + [ 8.3638656, 46.8567377 ], + [ 8.3638714, 46.8567335 ], + [ 8.3638766, 46.856729 ], + [ 8.3638814, 46.8567243 ], + [ 8.3638856, 46.8567193 ], + [ 8.3638892, 46.8567142 ], + [ 8.3638921, 46.8567088 ], + [ 8.3640464, 46.8563403 ], + [ 8.3640489, 46.8563343 ], + [ 8.3640489, 46.856329099999996 ], + [ 8.3640495, 46.8563239 ], + [ 8.3640507, 46.8563187 ], + [ 8.3640526, 46.8563136 ], + [ 8.364055, 46.8563086 ], + [ 8.3640581, 46.8563038 ], + [ 8.3640617, 46.8562992 ], + [ 8.3640659, 46.8562948 ], + [ 8.3640705, 46.8562907 ], + [ 8.3640757, 46.8562868 ], + [ 8.3640813, 46.8562832 ], + [ 8.3640873, 46.85628 ], + [ 8.3640937, 46.8562771 ], + [ 8.3641004, 46.8562746 ], + [ 8.364125, 46.8562632 ], + [ 8.3641412, 46.8562558 ], + [ 8.3641493, 46.8562524 ], + [ 8.3641574, 46.8562491 ], + [ 8.3641655, 46.856245799999996 ], + [ 8.3641736, 46.8562424 ], + [ 8.3641817, 46.8562391 ], + [ 8.3641898, 46.8562357 ], + [ 8.3642033, 46.8562301 ], + [ 8.3642169, 46.8562244 ], + [ 8.3642304, 46.8562188 ], + [ 8.364244, 46.8562132 ], + [ 8.3642575, 46.8562075 ], + [ 8.364271, 46.8562018 ], + [ 8.364291, 46.8561935 ], + [ 8.3643109, 46.8561851 ], + [ 8.3643309, 46.8561766 ], + [ 8.3643508, 46.8561682 ], + [ 8.3643707, 46.8561598 ], + [ 8.3643906, 46.8561513 ], + [ 8.3644015, 46.8561467 ], + [ 8.3644123, 46.856142 ], + [ 8.3644232, 46.8561374 ], + [ 8.3644341, 46.8561327 ], + [ 8.364445, 46.856128 ], + [ 8.3644558, 46.8561234 ], + [ 8.3644811, 46.8561125 ], + [ 8.3645064, 46.8561015 ], + [ 8.3645317, 46.8560906 ], + [ 8.3645569, 46.8560796 ], + [ 8.3645822, 46.8560686 ], + [ 8.3646074, 46.8560576 ], + [ 8.3646167, 46.8560533 ], + [ 8.3646261, 46.8560491 ], + [ 8.3646355, 46.856045 ], + [ 8.364645, 46.8560408 ], + [ 8.3646545, 46.8560367 ], + [ 8.364664, 46.8560326 ], + [ 8.3647017, 46.856011 ], + [ 8.364706, 46.8560096 ], + [ 8.36471, 46.8560079 ], + [ 8.3647139, 46.8560059 ], + [ 8.3647174, 46.8560037 ], + [ 8.3647206, 46.8560013 ], + [ 8.3647234, 46.8559987 ], + [ 8.3647258, 46.855995899999996 ], + [ 8.3647279, 46.8559929 ], + [ 8.3647292, 46.8559904 ], + [ 8.3647303, 46.8559878 ], + [ 8.3647311, 46.8559851 ], + [ 8.3647315, 46.8559825 ], + [ 8.3647317, 46.8559798 ], + [ 8.3647315, 46.8559771 ], + [ 8.3647312, 46.8559738 ], + [ 8.3647312, 46.8559706 ], + [ 8.3647317, 46.8559673 ], + [ 8.3647326, 46.8559641 ], + [ 8.3647339, 46.855961 ], + [ 8.3647356, 46.855958 ], + [ 8.3647377, 46.855955 ], + [ 8.3647402, 46.8559522 ], + [ 8.364743, 46.8559496 ], + [ 8.3647461, 46.8559472 ], + [ 8.3647495, 46.8559449 ], + [ 8.3647533, 46.8559429 ], + [ 8.3647572, 46.8559411 ], + [ 8.3647614, 46.8559395 ], + [ 8.364785, 46.8559328 ], + [ 8.3648105, 46.8559228 ], + [ 8.3648362, 46.8559131 ], + [ 8.3648622, 46.8559038 ], + [ 8.3648885, 46.8558948 ], + [ 8.3649151, 46.8558863 ], + [ 8.3649419, 46.8558781 ], + [ 8.3649764, 46.8558678 ], + [ 8.3650107, 46.8558572 ], + [ 8.365044900000001, 46.8558465 ], + [ 8.3650789, 46.8558354 ], + [ 8.3651128, 46.8558242 ], + [ 8.3651465, 46.8558128 ], + [ 8.3651678, 46.8558054 ], + [ 8.3651891, 46.855798 ], + [ 8.3652103, 46.8557905 ], + [ 8.3652315, 46.855783 ], + [ 8.3652526, 46.8557755 ], + [ 8.3652738, 46.8557679 ], + [ 8.3652808, 46.8557653 ], + [ 8.3652879, 46.8557627 ], + [ 8.365295, 46.8557602 ], + [ 8.3653021, 46.8557576 ], + [ 8.3653092, 46.855755 ], + [ 8.3653163, 46.8557524 ], + [ 8.3653444, 46.8557422 ], + [ 8.3653728, 46.8557322 ], + [ 8.3654013, 46.8557224 ], + [ 8.3654299, 46.8557128 ], + [ 8.3654587, 46.8557035 ], + [ 8.3654877, 46.8556943 ], + [ 8.3655152, 46.8556858 ], + [ 8.3655428, 46.8556775 ], + [ 8.3655705, 46.8556692 ], + [ 8.3655983, 46.8556612 ], + [ 8.3656262, 46.8556532 ], + [ 8.3656542, 46.8556454 ], + [ 8.3656822, 46.8556377 ], + [ 8.3657103, 46.8556302 ], + [ 8.3657386, 46.8556229 ], + [ 8.3657669, 46.8556157 ], + [ 8.3657953, 46.8556087 ], + [ 8.3658237, 46.8556018 ], + [ 8.3658303, 46.8556003 ], + [ 8.3658368, 46.8555989 ], + [ 8.3658434, 46.8555976 ], + [ 8.3658501, 46.8555964 ], + [ 8.3658568, 46.8555953 ], + [ 8.3658635, 46.8555943 ], + [ 8.3658739, 46.855593 ], + [ 8.3658844, 46.8555919 ], + [ 8.365895, 46.855591 ], + [ 8.3659056, 46.8555904 ], + [ 8.3659162, 46.85559 ], + [ 8.3659268, 46.8555899 ], + [ 8.365948, 46.8555917 ], + [ 8.365969, 46.8555947 ], + [ 8.3659895, 46.8555989 ], + [ 8.3660095, 46.8556043 ], + [ 8.3660287, 46.8556107 ], + [ 8.366047, 46.8556183 ], + [ 8.3660651, 46.8556272 ], + [ 8.366082, 46.855637 ], + [ 8.3660977, 46.8556478 ], + [ 8.3661121, 46.8556594 ], + [ 8.3661252, 46.8556717 ], + [ 8.3661367, 46.8556847 ], + [ 8.3661525, 46.8557218 ], + [ 8.3661689, 46.8557587 ], + [ 8.366186, 46.8557954 ], + [ 8.3662036, 46.8558321 ], + [ 8.3662219, 46.8558686 ], + [ 8.3662408, 46.8559049 ], + [ 8.3662452, 46.855913 ], + [ 8.3662497, 46.8559211 ], + [ 8.3662544, 46.8559292 ], + [ 8.3662591, 46.8559372 ], + [ 8.3662641, 46.8559452 ], + [ 8.3662691, 46.8559531 ], + [ 8.3662743, 46.855961 ], + [ 8.3662798, 46.8559688 ], + [ 8.3662854, 46.8559766 ], + [ 8.3662912, 46.8559842 ], + [ 8.3662972, 46.8559919 ], + [ 8.3663034, 46.8559994 ], + [ 8.3663123, 46.8560097 ], + [ 8.3663214, 46.8560198 ], + [ 8.3663307, 46.8560299 ], + [ 8.3663403, 46.8560398 ], + [ 8.3663502, 46.8560496 ], + [ 8.3663604, 46.8560593 ], + [ 8.3663706, 46.856069 ], + [ 8.3663807, 46.8560787 ], + [ 8.3663907, 46.8560885 ], + [ 8.3664005, 46.8560983 ], + [ 8.3664103, 46.8561081 ], + [ 8.36642, 46.856118 ], + [ 8.3664287, 46.856127 ], + [ 8.3664375, 46.856136 ], + [ 8.3664463, 46.856145 ], + [ 8.366455, 46.856154 ], + [ 8.3664638, 46.8561629 ], + [ 8.3664726, 46.8561719 ], + [ 8.3664814, 46.8561809 ], + [ 8.36649, 46.8561899 ], + [ 8.3664986, 46.856199 ], + [ 8.366507, 46.8562081 ], + [ 8.3665153, 46.8562173 ], + [ 8.3665235, 46.8562265 ], + [ 8.3665245, 46.8562276 ], + [ 8.3665255, 46.8562288 ], + [ 8.3665264, 46.8562299 ], + [ 8.3665274, 46.856231 ], + [ 8.3665283, 46.8562322 ], + [ 8.3665292, 46.8562333 ], + [ 8.366533, 46.8562436 ], + [ 8.3665379, 46.8562537 ], + [ 8.366544, 46.8562635 ], + [ 8.3665511, 46.8562729 ], + [ 8.3665593, 46.8562819 ], + [ 8.3665685, 46.8562905 ], + [ 8.3665787, 46.8562985 ], + [ 8.3665897, 46.856306000000004 ], + [ 8.3666737, 46.856359 ], + [ 8.3666876, 46.8563672 ], + [ 8.3667013, 46.8563756 ], + [ 8.3667147, 46.8563842 ], + [ 8.3667279, 46.8563929 ], + [ 8.3667409, 46.8564018 ], + [ 8.3667537, 46.8564109 ], + [ 8.3667638, 46.8564183 ], + [ 8.3667738, 46.8564258 ], + [ 8.3667837, 46.8564334 ], + [ 8.3667934, 46.8564411 ], + [ 8.3668029, 46.8564488 ], + [ 8.3668123, 46.8564567 ], + [ 8.3669643, 46.8565754 ], + [ 8.3669904, 46.8565916 ], + [ 8.3670184, 46.8566063 ], + [ 8.3670481, 46.8566192 ], + [ 8.3670792, 46.8566304 ], + [ 8.3671117, 46.856639799999996 ], + [ 8.3671452, 46.8566473 ], + [ 8.3671483, 46.8566478 ], + [ 8.3671514, 46.8566484 ], + [ 8.3671546, 46.856649 ], + [ 8.3671577, 46.8566495 ], + [ 8.3671608, 46.85665 ], + [ 8.367164, 46.8566505 ], + [ 8.3671946, 46.8566515 ], + [ 8.3672252, 46.8566505 ], + [ 8.3672556, 46.8566475 ], + [ 8.3672853, 46.8566425 ], + [ 8.3673143, 46.8566357 ], + [ 8.3673422, 46.8566269 ], + [ 8.367352499999999, 46.8566232 ], + [ 8.3673937, 46.8566072 ], + [ 8.3673953, 46.8566065 ], + [ 8.3673968, 46.8566058 ], + [ 8.3673984, 46.8566051 ], + [ 8.3673999, 46.8566044 ], + [ 8.3674015, 46.8566038 ], + [ 8.3674031, 46.8566031 ], + [ 8.3674301, 46.8565923 ], + [ 8.3674582, 46.856583 ], + [ 8.3674872, 46.856575 ], + [ 8.367517, 46.8565687 ], + [ 8.3675474, 46.8565638 ], + [ 8.3675783, 46.8565605 ], + [ 8.3676004, 46.856559 ], + [ 8.3676227, 46.856558 ], + [ 8.367645, 46.8565576 ], + [ 8.3676672, 46.8565577 ], + [ 8.367689500000001, 46.8565584 ], + [ 8.3677117, 46.8565596 ], + [ 8.3677338, 46.8565612 ], + [ 8.3677559, 46.8565629 ], + [ 8.367778, 46.8565647 ], + [ 8.3678001, 46.8565667 ], + [ 8.3678221, 46.8565687 ], + [ 8.3678441, 46.8565709 ], + [ 8.3678603, 46.8565727 ], + [ 8.3678764, 46.8565746 ], + [ 8.3678924, 46.8565768 ], + [ 8.3679084, 46.8565791 ], + [ 8.3679244, 46.8565816 ], + [ 8.3679402, 46.8565843 ], + [ 8.367956, 46.8565873 ], + [ 8.3679717, 46.8565906 ], + [ 8.3679872, 46.8565942 ], + [ 8.3680025, 46.8565982 ], + [ 8.3680176, 46.8566025 ], + [ 8.3680325, 46.8566072 ], + [ 8.3680497, 46.856613 ], + [ 8.3680665, 46.8566192 ], + [ 8.3680829, 46.8566258 ], + [ 8.368099, 46.8566329 ], + [ 8.3681147, 46.8566403 ], + [ 8.36813, 46.8566482 ], + [ 8.3681452, 46.8566561 ], + [ 8.3681605, 46.8566639 ], + [ 8.368176, 46.8566716 ], + [ 8.3681916, 46.8566791 ], + [ 8.3682074, 46.8566864 ], + [ 8.3682234, 46.8566936 ], + [ 8.3682368, 46.8566995 ], + [ 8.3682501, 46.8567055 ], + [ 8.3682635, 46.8567115 ], + [ 8.3682768, 46.8567175 ], + [ 8.3682902, 46.8567235 ], + [ 8.3683035, 46.8567296 ], + [ 8.3683063, 46.8567309 ], + [ 8.3683091, 46.8567321 ], + [ 8.3683119, 46.8567334 ], + [ 8.368314699999999, 46.8567347 ], + [ 8.3683176, 46.856736 ], + [ 8.3683204, 46.8567373 ], + [ 8.3683365, 46.8567446 ], + [ 8.3683529, 46.8567517 ], + [ 8.3683693, 46.8567587 ], + [ 8.3683859, 46.8567655 ], + [ 8.3684027, 46.8567722 ], + [ 8.3684195, 46.8567787 ], + [ 8.3684317, 46.8567832 ], + [ 8.3684439, 46.8567877 ], + [ 8.3684562, 46.8567921 ], + [ 8.3684686, 46.8567964 ], + [ 8.368481, 46.8568006 ], + [ 8.3684935, 46.8568048 ], + [ 8.368496799999999, 46.8568059 ], + [ 8.3685001, 46.856807 ], + [ 8.3685035, 46.856808 ], + [ 8.3685068, 46.8568091 ], + [ 8.3685102, 46.8568102 ], + [ 8.3685135, 46.8568112 ], + [ 8.3685295, 46.8568162 ], + [ 8.3685455, 46.8568211 ], + [ 8.3685616, 46.856826 ], + [ 8.3685777, 46.8568307 ], + [ 8.3685939, 46.8568354 ], + [ 8.3686101, 46.85684 ], + [ 8.3686232, 46.8568437 ], + [ 8.3686364, 46.8568472 ], + [ 8.3686495, 46.8568508 ], + [ 8.3686627, 46.8568542 ], + [ 8.368676, 46.8568576 ], + [ 8.3686893, 46.856861 ], + [ 8.3687026, 46.8568642 ], + [ 8.368716, 46.856867199999996 ], + [ 8.3687296, 46.8568701 ], + [ 8.3687432, 46.8568727 ], + [ 8.3687569, 46.8568751 ], + [ 8.3687707, 46.8568774 ], + [ 8.3687822, 46.8568791 ], + [ 8.3687939, 46.8568805 ], + [ 8.3688056, 46.8568818 ], + [ 8.3688173, 46.8568828 ], + [ 8.3688291, 46.8568837 ], + [ 8.3688409, 46.8568843 ], + [ 8.3688527, 46.8568848 ], + [ 8.3688645, 46.8568853 ], + [ 8.3688764, 46.8568857 ], + [ 8.3688882, 46.8568861 ], + [ 8.3689, 46.8568864 ], + [ 8.3689118, 46.8568868 ], + [ 8.3689246, 46.8568869 ], + [ 8.3689374, 46.8568868 ], + [ 8.3689502, 46.8568863 ], + [ 8.3689629, 46.8568854 ], + [ 8.3689756, 46.8568843 ], + [ 8.3689882, 46.8568828 ], + [ 8.368992800000001, 46.8568826 ], + [ 8.3690347, 46.8568837 ], + [ 8.3690426, 46.8568833 ], + [ 8.3692743, 46.8568734 ], + [ 8.3692994, 46.8568724 ], + [ 8.3693246, 46.856873 ], + [ 8.3693496, 46.8568752 ], + [ 8.3693741, 46.8568789 ], + [ 8.3693981, 46.8568842 ], + [ 8.3694213, 46.856891 ], + [ 8.3694859, 46.8569134 ], + [ 8.3696375, 46.8569316 ], + [ 8.3697758, 46.8569879 ], + [ 8.3698997, 46.8570526 ], + [ 8.369976, 46.8570924 ], + [ 8.3700347, 46.8571231 ], + [ 8.3702936, 46.8572582 ], + [ 8.3707943, 46.8575325 ], + [ 8.3709633, 46.8576251 ], + [ 8.371067, 46.8572079 ], + [ 8.3708392, 46.8564826 ], + [ 8.3709132, 46.8551828 ], + [ 8.3709157, 46.8549861 ], + [ 8.3709431, 46.8528041 ], + [ 8.3709435, 46.8527733 ], + [ 8.3709099, 46.8526799 ], + [ 8.3708994, 46.8526504 ], + [ 8.3707774, 46.8521962 ], + [ 8.3707477, 46.8518402 ], + [ 8.3706801, 46.8516474 ], + [ 8.3704625, 46.851426000000004 ], + [ 8.3702134, 46.8512032 ], + [ 8.3699888, 46.8510278 ], + [ 8.3697753, 46.8508928 ], + [ 8.3694333, 46.850677 ], + [ 8.3693349, 46.8505915 ], + [ 8.3692849, 46.8505482 ], + [ 8.3692264, 46.8505005 ], + [ 8.3691237, 46.8504784 ], + [ 8.3687447, 46.8503236 ], + [ 8.3685839, 46.8502008 ], + [ 8.3684081, 46.850007 ], + [ 8.3683421, 46.8499027 ], + [ 8.368314699999999, 46.8497608 ], + [ 8.3684299, 46.8496348 ], + [ 8.3685415, 46.8494513 ], + [ 8.3685667, 46.8493971 ], + [ 8.3685752, 46.849372 ], + [ 8.3686809, 46.8490602 ], + [ 8.3687293, 46.8488264 ], + [ 8.3687469, 46.8486688 ], + [ 8.3688279, 46.8483465 ], + [ 8.3689261, 46.8482279 ], + [ 8.3689902, 46.8480659 ], + [ 8.3692438, 46.847793 ], + [ 8.369326, 46.8476547 ], + [ 8.3692932, 46.8475826 ], + [ 8.3691641, 46.8472413 ], + [ 8.3691056, 46.8470799 ], + [ 8.3689496, 46.8468153 ], + [ 8.368909500000001, 46.8466564 ], + [ 8.3689025, 46.846598 ], + [ 8.3689177, 46.8465281 ], + [ 8.368951299999999, 46.8463738 ], + [ 8.3691292, 46.8461952 ], + [ 8.3694309, 46.8460493 ], + [ 8.369901, 46.8455905 ], + [ 8.3701391, 46.8452891 ], + [ 8.3700593, 46.8451031 ], + [ 8.3700695, 46.845037 ], + [ 8.3702519, 46.844855 ], + [ 8.3702561, 46.8448508 ], + [ 8.3702655, 46.8448385 ], + [ 8.3702743, 46.84336 ], + [ 8.3702754, 46.8431773 ], + [ 8.3702787, 46.8428837 ], + [ 8.3702799, 46.8426222 ], + [ 8.3702877, 46.8421702 ], + [ 8.3702908, 46.8416015 ], + [ 8.3702905, 46.8415612 ], + [ 8.3702889, 46.8413399 ], + [ 8.3702934, 46.8413095 ], + [ 8.3703226, 46.8411124 ], + [ 8.3703448, 46.8408946 ], + [ 8.3703501, 46.8408694 ], + [ 8.3703795, 46.8408006 ], + [ 8.3704867, 46.8398731 ], + [ 8.3706051, 46.8395709 ], + [ 8.3707987, 46.8393006 ], + [ 8.3708088, 46.8390701 ], + [ 8.370782, 46.8389534 ], + [ 8.3707778, 46.8389352 ], + [ 8.3709058, 46.8387662 ], + [ 8.3711784, 46.8385065 ], + [ 8.371188, 46.8384973 ], + [ 8.3711885, 46.8384951 ], + [ 8.3712167, 46.8383585 ], + [ 8.3713772, 46.8381801 ], + [ 8.3714081, 46.8381458 ], + [ 8.3715589, 46.8378117 ], + [ 8.3708736, 46.8362993 ], + [ 8.3707085, 46.8361224 ], + [ 8.3706134, 46.8360205 ], + [ 8.3708693, 46.8347564 ], + [ 8.3710456, 46.8344395 ], + [ 8.371072999999999, 46.83442 ], + [ 8.3710764, 46.8344104 ], + [ 8.3711036, 46.8343983 ], + [ 8.3712679, 46.8342818 ], + [ 8.3716297, 46.8340537 ], + [ 8.3716708, 46.8339097 ], + [ 8.3717091, 46.8335049 ], + [ 8.3717749, 46.8333703 ], + [ 8.3718331, 46.8332512 ], + [ 8.3718897, 46.8330366 ], + [ 8.3718934, 46.8330282 ], + [ 8.3721478, 46.8326883 ], + [ 8.3724278, 46.8323687 ], + [ 8.372467, 46.8322834 ], + [ 8.3725227, 46.8321619 ], + [ 8.3727119, 46.8320742 ], + [ 8.3729248, 46.8319756 ], + [ 8.3732773, 46.8317626 ], + [ 8.3732828, 46.8317572 ], + [ 8.373595, 46.8314537 ], + [ 8.3738205, 46.8311814 ], + [ 8.3739038, 46.8311403 ], + [ 8.3741482, 46.8310195 ], + [ 8.3743183, 46.8306593 ], + [ 8.3743774, 46.8305105 ], + [ 8.374399499999999, 46.8304547 ], + [ 8.3745064, 46.8303057 ], + [ 8.37458, 46.8300382 ], + [ 8.3746065, 46.829886 ], + [ 8.3746663, 46.8297815 ], + [ 8.3747064, 46.8297115 ], + [ 8.3746641, 46.8296537 ], + [ 8.3746074, 46.8295764 ], + [ 8.3746056, 46.8295296 ], + [ 8.3747061, 46.8293204 ], + [ 8.3747211, 46.8293064 ], + [ 8.3747727, 46.8292582 ], + [ 8.374803, 46.8292299 ], + [ 8.3748103, 46.829228 ], + [ 8.3749675, 46.8291867 ], + [ 8.3751114, 46.828986 ], + [ 8.3751518, 46.8289297 ], + [ 8.375227, 46.8288741 ], + [ 8.3753041, 46.8288171 ], + [ 8.3753297, 46.8287534 ], + [ 8.37533, 46.8287531 ], + [ 8.37533, 46.8287526 ], + [ 8.3753658, 46.8286636 ], + [ 8.3753886, 46.8285574 ], + [ 8.3753755, 46.8285079 ], + [ 8.375353, 46.8284783 ], + [ 8.3752589, 46.8283546 ], + [ 8.3753763, 46.8282001 ], + [ 8.3755158, 46.8280164 ], + [ 8.3756082, 46.8278516 ], + [ 8.3756276, 46.8278172 ], + [ 8.3757822, 46.8276929 ], + [ 8.3758492, 46.8276586 ], + [ 8.376, 46.8276171 ], + [ 8.3761514, 46.8274861 ], + [ 8.3763437, 46.8273933 ], + [ 8.3764874, 46.8273543 ], + [ 8.3765672, 46.8273327 ], + [ 8.3766289, 46.8273017 ], + [ 8.3767937, 46.8271782 ], + [ 8.376804, 46.8271552 ], + [ 8.3768165, 46.8271301 ], + [ 8.3767641, 46.8269629 ], + [ 8.3767593, 46.8268255 ], + [ 8.3767093, 46.8264504 ], + [ 8.3764817, 46.8261496 ], + [ 8.3763862, 46.8260234 ], + [ 8.3764348, 46.825961 ], + [ 8.3765229, 46.8258478 ], + [ 8.3765683, 46.8257215 ], + [ 8.3765717, 46.8256508 ], + [ 8.3765735, 46.825613 ], + [ 8.3766135, 46.8255087 ], + [ 8.3767356, 46.8254189 ], + [ 8.376781, 46.8253855 ], + [ 8.3768388, 46.8252905 ], + [ 8.3768266, 46.8252404 ], + [ 8.3768118, 46.8251793 ], + [ 8.376818, 46.8251263 ], + [ 8.3768529, 46.8250737 ], + [ 8.3769194, 46.8249738 ], + [ 8.3769783, 46.824928 ], + [ 8.3769791, 46.8248817 ], + [ 8.3768971, 46.8247942 ], + [ 8.3768907, 46.8247874 ], + [ 8.3767814, 46.8245898 ], + [ 8.3768061, 46.8245331 ], + [ 8.3768425, 46.8244879 ], + [ 8.3769751, 46.824399 ], + [ 8.3770119, 46.8243743 ], + [ 8.377071, 46.824271 ], + [ 8.3770615, 46.8241669 ], + [ 8.3770802, 46.8240529 ], + [ 8.3770732, 46.8240177 ], + [ 8.3770701, 46.8240022 ], + [ 8.3770412, 46.8239594 ], + [ 8.3770852, 46.8239008 ], + [ 8.3771083, 46.8238812 ], + [ 8.3771275, 46.8238649 ], + [ 8.3772977, 46.8237464 ], + [ 8.3774474, 46.8236899 ], + [ 8.3775002, 46.8236443 ], + [ 8.3775392, 46.8235343 ], + [ 8.3775554, 46.8234885 ], + [ 8.3775523, 46.8234331 ], + [ 8.3775073, 46.8232176 ], + [ 8.3775133, 46.8231689 ], + [ 8.3775197, 46.8231551 ], + [ 8.3775406, 46.8231103 ], + [ 8.3775207, 46.8230543 ], + [ 8.3774773, 46.8230082 ], + [ 8.377466, 46.8230024 ], + [ 8.3772226, 46.8228791 ], + [ 8.377086, 46.8226839 ], + [ 8.3770314, 46.8224751 ], + [ 8.3769986, 46.8224198 ], + [ 8.3770843, 46.8223421 ], + [ 8.3771369, 46.8223073 ], + [ 8.3771498, 46.8222988 ], + [ 8.3771546, 46.8222896 ], + [ 8.3771788, 46.8222441 ], + [ 8.3772734, 46.8221435 ], + [ 8.3773917, 46.8220179 ], + [ 8.3773236, 46.8218801 ], + [ 8.3772642, 46.8217602 ], + [ 8.3771057, 46.8217096 ], + [ 8.3770727, 46.8216929 ], + [ 8.3769728, 46.8216425 ], + [ 8.3768968, 46.8215843 ], + [ 8.3767797, 46.821479 ], + [ 8.3766579, 46.8212795 ], + [ 8.3766214, 46.8212401 ], + [ 8.3765069, 46.8211543 ], + [ 8.3763457, 46.821107 ], + [ 8.3761874, 46.8210041 ], + [ 8.3760915, 46.8207939 ], + [ 8.3760962, 46.8206875 ], + [ 8.3760954, 46.8206856 ], + [ 8.3760495, 46.8205821 ], + [ 8.3759281, 46.8204436 ], + [ 8.375848, 46.8203522 ], + [ 8.3757049, 46.8202259 ], + [ 8.3756782, 46.8201777 ], + [ 8.3756466, 46.8201209 ], + [ 8.3756035, 46.8200837 ], + [ 8.3755276, 46.8200407 ], + [ 8.3755009, 46.8200068 ], + [ 8.3754954, 46.8199999 ], + [ 8.375468, 46.8199473 ], + [ 8.3754614, 46.8198935 ], + [ 8.3754382, 46.8198363 ], + [ 8.375413, 46.8197923 ], + [ 8.375379, 46.8197601 ], + [ 8.3753594, 46.8197415 ], + [ 8.3753318, 46.8196937 ], + [ 8.3753263, 46.8196339 ], + [ 8.3753665, 46.8195524 ], + [ 8.3754255, 46.8194326 ], + [ 8.3754451, 46.8194117 ], + [ 8.375581, 46.8192664 ], + [ 8.3755836, 46.8191352 ], + [ 8.3755863, 46.819013 ], + [ 8.3755905, 46.8188231 ], + [ 8.375652, 46.8186606 ], + [ 8.3757449, 46.8184963 ], + [ 8.3756536, 46.8184085 ], + [ 8.3757038, 46.8183044 ], + [ 8.3757114, 46.8182912 ], + [ 8.3757298, 46.818259499999996 ], + [ 8.3756521, 46.8181384 ], + [ 8.3756351, 46.8181118 ], + [ 8.3756031, 46.818062 ], + [ 8.3755889, 46.8180248 ], + [ 8.3755527, 46.8179298 ], + [ 8.3755364, 46.8179014 ], + [ 8.375409, 46.8176802 ], + [ 8.3751983, 46.8175904 ], + [ 8.3751823, 46.8175836 ], + [ 8.3751813, 46.8175774 ], + [ 8.3751707, 46.8175077 ], + [ 8.3750726, 46.8173932 ], + [ 8.3748752, 46.8172973 ], + [ 8.3746514, 46.8171688 ], + [ 8.3745882, 46.8171169 ], + [ 8.3744053, 46.8169667 ], + [ 8.3743712, 46.8168619 ], + [ 8.3743435, 46.8167766 ], + [ 8.3741598, 46.8166608 ], + [ 8.3741418, 46.8166442 ], + [ 8.3740924, 46.8165986 ], + [ 8.3740322, 46.8164838 ], + [ 8.374003, 46.816428 ], + [ 8.3738723, 46.8162429 ], + [ 8.3738534, 46.8162162 ], + [ 8.3739623, 46.8162279 ], + [ 8.3739194, 46.8161832 ], + [ 8.3738784, 46.8161579 ], + [ 8.3738034, 46.8161266 ], + [ 8.3737482, 46.8160706 ], + [ 8.3736925, 46.8160272 ], + [ 8.3736735, 46.8159853 ], + [ 8.3736095, 46.8159087 ], + [ 8.3735737, 46.8158917 ], + [ 8.3735446, 46.8158269 ], + [ 8.3734915, 46.8158051 ], + [ 8.3734683, 46.8157473 ], + [ 8.3734419, 46.815674 ], + [ 8.3733707, 46.8155687 ], + [ 8.3732964, 46.8155221 ], + [ 8.3732509, 46.8154504 ], + [ 8.3732024, 46.8153672 ], + [ 8.3731137, 46.8153528 ], + [ 8.3730335, 46.8153239 ], + [ 8.3729924, 46.8153066 ], + [ 8.372986, 46.815272 ], + [ 8.372991, 46.8152512 ], + [ 8.3729607, 46.8152136 ], + [ 8.3729228, 46.8151876 ], + [ 8.3729215, 46.8151868 ], + [ 8.3728594, 46.8151467 ], + [ 8.3728562, 46.8150573 ], + [ 8.3728552, 46.8150286 ], + [ 8.3728424, 46.8149996 ], + [ 8.3728604, 46.8149759 ], + [ 8.3728829, 46.8149291 ], + [ 8.3728889, 46.8148741 ], + [ 8.3728732, 46.8148286 ], + [ 8.3728884, 46.8147242 ], + [ 8.3729199, 46.8146619 ], + [ 8.3729257, 46.8146311 ], + [ 8.3729042, 46.8145741 ], + [ 8.372882, 46.8144937 ], + [ 8.3728869, 46.8144652 ], + [ 8.3728415, 46.8144015 ], + [ 8.3727834, 46.8143396 ], + [ 8.3727824, 46.8143386 ], + [ 8.3727319, 46.8142902 ], + [ 8.3726555, 46.8142185 ], + [ 8.3726222, 46.8142037 ], + [ 8.372643, 46.8141655 ], + [ 8.3726086, 46.8141409 ], + [ 8.3725994, 46.8141172 ], + [ 8.372607, 46.8140939 ], + [ 8.3726094, 46.8140773 ], + [ 8.37257, 46.8140617 ], + [ 8.3725567, 46.81403 ], + [ 8.372493, 46.8139628 ], + [ 8.3725056, 46.8139007 ], + [ 8.3724928, 46.8138668 ], + [ 8.3724481, 46.8138261 ], + [ 8.3724397, 46.8138065 ], + [ 8.3724437, 46.8137599 ], + [ 8.3724077, 46.813702 ], + [ 8.3723868, 46.8136616 ], + [ 8.3723254, 46.8136123 ], + [ 8.3722671, 46.813534 ], + [ 8.3722612, 46.813517 ], + [ 8.372248, 46.8134791 ], + [ 8.372248, 46.8134381 ], + [ 8.3722013, 46.8133548 ], + [ 8.3721766, 46.8132847 ], + [ 8.372159, 46.8132463 ], + [ 8.3721513, 46.8131897 ], + [ 8.3721133, 46.8131381 ], + [ 8.3721069, 46.8130936 ], + [ 8.3720508, 46.8130176 ], + [ 8.372020299999999, 46.8129593 ], + [ 8.3719715, 46.8128939 ], + [ 8.3719508, 46.8128586 ], + [ 8.371931, 46.8128156 ], + [ 8.3719057, 46.812780599999996 ], + [ 8.3718823, 46.8127452 ], + [ 8.3718654, 46.8126732 ], + [ 8.3718425, 46.8126208 ], + [ 8.3718043, 46.8125981 ], + [ 8.3717575, 46.8125688 ], + [ 8.3717054, 46.8125028 ], + [ 8.3716608, 46.8124673 ], + [ 8.3716516, 46.8124191 ], + [ 8.3716455, 46.8123556 ], + [ 8.3716077, 46.812306 ], + [ 8.3715575, 46.8122501 ], + [ 8.3714803, 46.8122002 ], + [ 8.3714755, 46.8121818 ], + [ 8.3713637, 46.8121322 ], + [ 8.3712152, 46.8121533 ], + [ 8.3712098, 46.8121536 ], + [ 8.3711193, 46.8121587 ], + [ 8.3710629, 46.8121362 ], + [ 8.3710102, 46.8121343 ], + [ 8.3709674, 46.8121182 ], + [ 8.3709127, 46.8120908 ], + [ 8.3709387, 46.8120462 ], + [ 8.3709363, 46.8120263 ], + [ 8.3709348, 46.811961 ], + [ 8.3709043, 46.8119233 ], + [ 8.3709043, 46.811903 ], + [ 8.370893, 46.8118701 ], + [ 8.3708729, 46.8118473 ], + [ 8.3708791, 46.81177 ], + [ 8.3708569, 46.811731 ], + [ 8.3708625, 46.81169 ], + [ 8.3708163, 46.811658 ], + [ 8.3707926, 46.8116209 ], + [ 8.3708078, 46.8115973 ], + [ 8.370813, 46.8115893 ], + [ 8.3707669, 46.8115345 ], + [ 8.3707825, 46.8114734 ], + [ 8.370737, 46.8114517 ], + [ 8.3707044, 46.8114217 ], + [ 8.3706944, 46.8113898 ], + [ 8.3706565, 46.8113519 ], + [ 8.3706913, 46.8113198 ], + [ 8.3706005, 46.8112684 ], + [ 8.370595, 46.8112653 ], + [ 8.3705595, 46.8112452 ], + [ 8.3705299, 46.8111969 ], + [ 8.3704948, 46.8111532 ], + [ 8.3704928, 46.8111263 ], + [ 8.3704995, 46.8111047 ], + [ 8.3705052, 46.8110896 ], + [ 8.3705107, 46.8110754 ], + [ 8.3704938, 46.8110209 ], + [ 8.3704659, 46.810985 ], + [ 8.3704824, 46.8109404 ], + [ 8.3704951, 46.8109153 ], + [ 8.3704735, 46.8108839 ], + [ 8.3704444, 46.81084 ], + [ 8.3704057, 46.810814 ], + [ 8.3703741, 46.8107962 ], + [ 8.37033, 46.8107713 ], + [ 8.3702857, 46.8107287 ], + [ 8.3702607, 46.8107083 ], + [ 8.3702548, 46.8106662 ], + [ 8.3702767, 46.8106288 ], + [ 8.3702678, 46.8105733 ], + [ 8.3702594, 46.8105435 ], + [ 8.3702894, 46.8104995 ], + [ 8.3702927, 46.8104947 ], + [ 8.3702976, 46.810446999999996 ], + [ 8.370279, 46.8104379 ], + [ 8.3702191, 46.810408699999996 ], + [ 8.370202, 46.8103765 ], + [ 8.3701864, 46.8103212 ], + [ 8.3702512, 46.8102763 ], + [ 8.3702888, 46.8102368 ], + [ 8.3703076, 46.8102092 ], + [ 8.3703213, 46.810189 ], + [ 8.370337899999999, 46.8101483 ], + [ 8.3703342, 46.8101374 ], + [ 8.3703203, 46.8100974 ], + [ 8.3703341, 46.810015 ], + [ 8.3703563, 46.8099964 ], + [ 8.370359, 46.80997 ], + [ 8.3703342, 46.8099499 ], + [ 8.3703286, 46.8099004 ], + [ 8.3703133, 46.8098802 ], + [ 8.3702847, 46.8098424 ], + [ 8.3702577, 46.8098196 ], + [ 8.3702411, 46.8097974 ], + [ 8.3702539, 46.8097929 ], + [ 8.3702211, 46.8097745 ], + [ 8.3701894, 46.8097606 ], + [ 8.3701519, 46.8097385 ], + [ 8.370138, 46.8097245 ], + [ 8.3701356, 46.8097221 ], + [ 8.3701157, 46.8096958 ], + [ 8.3700875, 46.8096555 ], + [ 8.3700444, 46.8096065 ], + [ 8.3700104, 46.8095641 ], + [ 8.3699991, 46.8095478 ], + [ 8.3699953, 46.809537 ], + [ 8.3699958, 46.8095239 ], + [ 8.3699997, 46.8095002 ], + [ 8.370009, 46.8094654 ], + [ 8.370012, 46.8094302 ], + [ 8.37001, 46.8093652 ], + [ 8.3699979, 46.8093053 ], + [ 8.3699978, 46.809305 ], + [ 8.3699754, 46.8091995 ], + [ 8.3699608, 46.8091306 ], + [ 8.3699403, 46.809034 ], + [ 8.3699468, 46.8090334 ], + [ 8.3699545, 46.8090324 ], + [ 8.369952, 46.8090221 ], + [ 8.3699452, 46.8090227 ], + [ 8.3699387, 46.8090234 ], + [ 8.3699336, 46.8090014 ], + [ 8.3699321, 46.8089922 ], + [ 8.3699174, 46.8089013 ], + [ 8.3699103, 46.8087895 ], + [ 8.369911, 46.8087776 ], + [ 8.3699016, 46.808722 ], + [ 8.3698896, 46.808666099999996 ], + [ 8.3698598, 46.808593 ], + [ 8.3698336, 46.8085151 ], + [ 8.36979, 46.808466 ], + [ 8.3697177, 46.8084005 ], + [ 8.369621, 46.8083336 ], + [ 8.3695749, 46.8082963 ], + [ 8.3695097, 46.8082336 ], + [ 8.3694192, 46.8081812 ], + [ 8.369332, 46.8081877 ], + [ 8.3692335, 46.80816 ], + [ 8.3691101, 46.8081041 ], + [ 8.3690715, 46.8080796 ], + [ 8.3690196, 46.8080311 ], + [ 8.3689524, 46.8079815 ], + [ 8.3689464, 46.8079324 ], + [ 8.3689619, 46.8078903 ], + [ 8.368939, 46.8078367 ], + [ 8.3689246, 46.8077532 ], + [ 8.3688534, 46.8076883 ], + [ 8.3688099, 46.8076516 ], + [ 8.3687813, 46.8076128 ], + [ 8.3687513, 46.8075577 ], + [ 8.3687352, 46.8075079 ], + [ 8.3687353, 46.8074619 ], + [ 8.3687324, 46.8074085 ], + [ 8.3687288, 46.8073596 ], + [ 8.3687256, 46.8073014 ], + [ 8.3687089, 46.8072492 ], + [ 8.3686947, 46.8071609 ], + [ 8.3686833, 46.8071014 ], + [ 8.3686761, 46.8070387 ], + [ 8.3686839, 46.8069806 ], + [ 8.3686924, 46.8069394 ], + [ 8.368676, 46.8068699 ], + [ 8.3686647, 46.8068155 ], + [ 8.3686547, 46.8067459 ], + [ 8.3686548, 46.806688 ], + [ 8.368648199999999, 46.8066266 ], + [ 8.3686392, 46.8065586 ], + [ 8.3686291, 46.8064652 ], + [ 8.3686172, 46.8064035 ], + [ 8.3686101, 46.8063378 ], + [ 8.3686098, 46.8062851 ], + [ 8.3686188, 46.8062412 ], + [ 8.3686462, 46.8061909 ], + [ 8.3686768, 46.8061439 ], + [ 8.3687251, 46.8060877 ], + [ 8.3687483, 46.8060702 ], + [ 8.3688, 46.8060253 ], + [ 8.368851, 46.805964 ], + [ 8.3688872, 46.8059195 ], + [ 8.3689225, 46.8058789 ], + [ 8.3689455, 46.8058297 ], + [ 8.3689628, 46.8057586 ], + [ 8.3689949, 46.8056743 ], + [ 8.3690219, 46.8056233 ], + [ 8.3690414, 46.8055731 ], + [ 8.3690536, 46.8055188 ], + [ 8.3690651, 46.805471 ], + [ 8.3690767, 46.8054022 ], + [ 8.3690845, 46.8053644 ], + [ 8.3690978, 46.8053452 ], + [ 8.369102, 46.8053428 ], + [ 8.3691105, 46.8053091 ], + [ 8.3691097, 46.8053089 ], + [ 8.3691145, 46.8053036 ], + [ 8.3691155, 46.8052998 ], + [ 8.3691131, 46.8052884 ], + [ 8.3691083, 46.8052729 ], + [ 8.3691004, 46.8052356 ], + [ 8.3690879, 46.8051968 ], + [ 8.3690799, 46.8051465 ], + [ 8.3690707, 46.8051036 ], + [ 8.3690658, 46.8050719 ], + [ 8.3690538, 46.805014 ], + [ 8.3690444, 46.8049527 ], + [ 8.3690401, 46.8048976 ], + [ 8.3690401, 46.8048454 ], + [ 8.3690292, 46.804782 ], + [ 8.3690137, 46.8047242 ], + [ 8.3690035, 46.8046786 ], + [ 8.368999, 46.8046626 ], + [ 8.3689895, 46.8046291 ], + [ 8.3689647, 46.8045872 ], + [ 8.3689341, 46.8045387 ], + [ 8.368882, 46.8044915 ], + [ 8.3688322, 46.8044559 ], + [ 8.3687937, 46.8044226 ], + [ 8.3687513, 46.8043727 ], + [ 8.3687341, 46.8043259 ], + [ 8.3687456, 46.8042515 ], + [ 8.3687582, 46.8041684 ], + [ 8.3687868, 46.8040937 ], + [ 8.3687957, 46.8040611 ], + [ 8.3688002, 46.8040204 ], + [ 8.3688032, 46.803985 ], + [ 8.3687888, 46.8039538 ], + [ 8.3687578, 46.8039229 ], + [ 8.3686963, 46.8038693 ], + [ 8.3686258, 46.8038 ], + [ 8.3685509, 46.8037405 ], + [ 8.3684655, 46.8036748 ], + [ 8.368431, 46.8036204 ], + [ 8.3684032, 46.8035658 ], + [ 8.3683815, 46.8035012 ], + [ 8.3683781, 46.80343 ], + [ 8.3683888, 46.8033662 ], + [ 8.3684114, 46.8032755 ], + [ 8.3684453, 46.8032036 ], + [ 8.3684965, 46.8031121 ], + [ 8.3685237, 46.8030765 ], + [ 8.3685264, 46.8030729 ], + [ 8.3685742, 46.8030365 ], + [ 8.368627, 46.8030177 ], + [ 8.3686858, 46.8030017 ], + [ 8.3687338, 46.8029846 ], + [ 8.3687681, 46.8029628 ], + [ 8.3687818, 46.8029448 ], + [ 8.3688381, 46.8028695 ], + [ 8.3688962, 46.8028077 ], + [ 8.3689471, 46.8027354 ], + [ 8.3690152, 46.802644 ], + [ 8.3690618, 46.8026004 ], + [ 8.3690881, 46.8025568 ], + [ 8.3691004, 46.8025226 ], + [ 8.3690898, 46.8024689 ], + [ 8.3690806, 46.8024286 ], + [ 8.3690555, 46.8023733 ], + [ 8.3690226, 46.802317 ], + [ 8.3689848, 46.8022622 ], + [ 8.3689609, 46.802224 ], + [ 8.3689422, 46.8021844 ], + [ 8.368946, 46.8021496 ], + [ 8.368971, 46.8021113 ], + [ 8.3690107, 46.802064 ], + [ 8.369059, 46.8020197 ], + [ 8.3691091, 46.8019838 ], + [ 8.369155899999999, 46.8019451 ], + [ 8.369192, 46.8018931 ], + [ 8.3692079, 46.8018401 ], + [ 8.3692076, 46.8018042 ], + [ 8.3692147, 46.8017699 ], + [ 8.3692221, 46.8017177 ], + [ 8.3692711, 46.8016051 ], + [ 8.3692963, 46.8015631 ], + [ 8.3693247, 46.8015133 ], + [ 8.3693401, 46.8014647 ], + [ 8.3693552, 46.8014097 ], + [ 8.3693514, 46.8013559 ], + [ 8.3693462, 46.8012989 ], + [ 8.3693417, 46.8012493 ], + [ 8.3693392, 46.8011875 ], + [ 8.3693349, 46.8011216 ], + [ 8.3693346, 46.8011172 ], + [ 8.3693515, 46.8010332 ], + [ 8.3693549, 46.801016 ], + [ 8.3693683, 46.8009433 ], + [ 8.3693835, 46.8008737 ], + [ 8.3693931, 46.8008105 ], + [ 8.3693991, 46.8007421 ], + [ 8.3694084, 46.8006724 ], + [ 8.369418, 46.8006147 ], + [ 8.3694236, 46.8005685 ], + [ 8.3694259, 46.8005139 ], + [ 8.3694207, 46.8004716 ], + [ 8.369420999999999, 46.8004322 ], + [ 8.369420999999999, 46.8004075 ], + [ 8.3694161, 46.8003767 ], + [ 8.3694129, 46.80035 ], + [ 8.3694062, 46.8003263 ], + [ 8.3693819, 46.8003048 ], + [ 8.3693463, 46.8002814 ], + [ 8.3693036, 46.8002653 ], + [ 8.3692395, 46.8002416 ], + [ 8.3691673, 46.8002257 ], + [ 8.3690997, 46.800215 ], + [ 8.3690397, 46.8002061 ], + [ 8.3689685, 46.8001865 ], + [ 8.3689089, 46.8001703 ], + [ 8.3688864, 46.8001637 ], + [ 8.3688609, 46.8001561 ], + [ 8.368814799999999, 46.8001364 ], + [ 8.3687839, 46.8001138 ], + [ 8.3687671, 46.8000864 ], + [ 8.3687279, 46.8000466 ], + [ 8.3687091, 46.8000145 ], + [ 8.368686199999999, 46.7999737 ], + [ 8.3686546, 46.7999307 ], + [ 8.3686214, 46.7998887 ], + [ 8.3685889, 46.7998572 ], + [ 8.3685469, 46.7998335 ], + [ 8.3685139, 46.7998206 ], + [ 8.3684889, 46.7997902 ], + [ 8.3684741, 46.7997535 ], + [ 8.3684671, 46.7997109 ], + [ 8.3684597, 46.7996571 ], + [ 8.3684546, 46.7995929 ], + [ 8.3684382, 46.799525 ], + [ 8.3684271, 46.7994559 ], + [ 8.3684244, 46.7994023 ], + [ 8.3684398, 46.7993759 ], + [ 8.36846, 46.7993495 ], + [ 8.3684897, 46.7993207 ], + [ 8.3685017, 46.7992833 ], + [ 8.3685031, 46.7992416 ], + [ 8.3684986, 46.7991974 ], + [ 8.3684834, 46.7991514 ], + [ 8.3684608, 46.7990987 ], + [ 8.3684399, 46.7990379 ], + [ 8.3684258, 46.7989826 ], + [ 8.3684178, 46.7989307 ], + [ 8.3684206, 46.7988873 ], + [ 8.3684404, 46.7988567 ], + [ 8.3684733, 46.7988257 ], + [ 8.3685039, 46.7988016 ], + [ 8.3685304, 46.7987827 ], + [ 8.3685606, 46.7987666 ], + [ 8.368583, 46.7987544 ], + [ 8.3686165, 46.7986466 ], + [ 8.3686218, 46.7986345 ], + [ 8.3686343, 46.7986154 ], + [ 8.3686525, 46.7985943 ], + [ 8.36869, 46.7985633 ], + [ 8.3687105, 46.7985478 ], + [ 8.3687197, 46.7985408 ], + [ 8.3687545, 46.7985237 ], + [ 8.3687931, 46.7985072 ], + [ 8.3688304, 46.7984914 ], + [ 8.3688677, 46.7984733 ], + [ 8.3689063, 46.7984625 ], + [ 8.3689339, 46.7984621 ], + [ 8.3689216, 46.7984417 ], + [ 8.3689123, 46.7984189 ], + [ 8.3688733, 46.7983995 ], + [ 8.3688367, 46.798375899999996 ], + [ 8.3688179, 46.7983513 ], + [ 8.3687849, 46.7982516 ], + [ 8.3687784, 46.7982026 ], + [ 8.3687861, 46.7981672 ], + [ 8.3687983, 46.7981496 ], + [ 8.3687656, 46.7980973 ], + [ 8.3687503, 46.7980584 ], + [ 8.3687373, 46.7980333 ], + [ 8.3686425, 46.7979809 ], + [ 8.368631, 46.7978919 ], + [ 8.3686295, 46.7978898 ], + [ 8.368588, 46.7978282 ], + [ 8.3685516, 46.7977829 ], + [ 8.3685357, 46.7977489 ], + [ 8.3685467, 46.7977234 ], + [ 8.3685526, 46.7976935 ], + [ 8.3685328, 46.7976388 ], + [ 8.3685236, 46.7975914 ], + [ 8.3685189, 46.7975669 ], + [ 8.3685235, 46.7975538 ], + [ 8.3685341, 46.7975292 ], + [ 8.3685374, 46.7974927 ], + [ 8.3685666, 46.7974302 ], + [ 8.3685852, 46.7973728 ], + [ 8.3686045, 46.7973249 ], + [ 8.3686249, 46.7972881 ], + [ 8.3686221, 46.797245 ], + [ 8.3686104, 46.797199 ], + [ 8.3685894, 46.7971458 ], + [ 8.3685673, 46.7970924 ], + [ 8.3685814, 46.7970463 ], + [ 8.3686066, 46.7970125 ], + [ 8.3686215, 46.7969756 ], + [ 8.3686057, 46.7969303 ], + [ 8.3686115, 46.7968802 ], + [ 8.3685821, 46.7968329 ], + [ 8.3685632, 46.7967709 ], + [ 8.3685579, 46.7967148 ], + [ 8.3685764, 46.79664 ], + [ 8.3686111, 46.7965505 ], + [ 8.3686552, 46.7964738 ], + [ 8.3686907, 46.7964118 ], + [ 8.3686966, 46.796343 ], + [ 8.3687256, 46.7962773 ], + [ 8.3687437, 46.7961927 ], + [ 8.3687288, 46.7961012 ], + [ 8.3687183, 46.795994 ], + [ 8.3687213, 46.7959295 ], + [ 8.3687212, 46.795858 ], + [ 8.3687074, 46.795782 ], + [ 8.368716, 46.7957232 ], + [ 8.3687088, 46.7955557 ], + [ 8.3687055, 46.795461 ], + [ 8.368707, 46.7953801 ], + [ 8.368721, 46.795299299999996 ], + [ 8.368769499999999, 46.7951692 ], + [ 8.3688129, 46.7950433 ], + [ 8.368815, 46.7950372 ], + [ 8.3688043, 46.7950088 ], + [ 8.3687944, 46.7949773 ], + [ 8.3687704, 46.7949315 ], + [ 8.3687536, 46.7948868 ], + [ 8.3687497, 46.7948411 ], + [ 8.3687525, 46.7947914 ], + [ 8.3687723, 46.794741 ], + [ 8.3687872, 46.7947049 ], + [ 8.3687988, 46.7946731 ], + [ 8.3688039, 46.7946407 ], + [ 8.3688007, 46.7945938 ], + [ 8.3687902, 46.7945419 ], + [ 8.368776, 46.7944969 ], + [ 8.3687711, 46.7944555 ], + [ 8.3687818, 46.7944178 ], + [ 8.3687975, 46.7943653 ], + [ 8.3688052, 46.7943071 ], + [ 8.3688053, 46.7942902 ], + [ 8.3688054, 46.7942569 ], + [ 8.3688132, 46.7942016 ], + [ 8.368817, 46.7941577 ], + [ 8.3688192, 46.7941057 ], + [ 8.3688173, 46.7940938 ], + [ 8.3688173, 46.7940773 ], + [ 8.368817, 46.7940494 ], + [ 8.3688237, 46.7940237 ], + [ 8.3688314, 46.7939978 ], + [ 8.3688334, 46.7939747 ], + [ 8.3688333, 46.793949 ], + [ 8.368845, 46.7939281 ], + [ 8.3688349, 46.7939116 ], + [ 8.3688273, 46.7938759 ], + [ 8.3688106, 46.7938187 ], + [ 8.3687888, 46.7937549 ], + [ 8.3687558, 46.7936803 ], + [ 8.3687204, 46.7936073 ], + [ 8.3686779, 46.7935225 ], + [ 8.3686498, 46.7934451 ], + [ 8.3686431, 46.7933724 ], + [ 8.368645, 46.7933111 ], + [ 8.3686435, 46.7932654 ], + [ 8.3686285, 46.7932324 ], + [ 8.3685954, 46.7931976 ], + [ 8.3685979, 46.7931688 ], + [ 8.3686046, 46.7931532 ], + [ 8.3686221, 46.7930966 ], + [ 8.3686412, 46.7930541 ], + [ 8.3686578, 46.7930081 ], + [ 8.3686661, 46.7929568 ], + [ 8.3686946, 46.7928989 ], + [ 8.3687703, 46.792791199999996 ], + [ 8.3688399, 46.792707 ], + [ 8.3688839, 46.7926511 ], + [ 8.3688986, 46.7925922 ], + [ 8.3688995, 46.7925668 ], + [ 8.3688789, 46.7925388 ], + [ 8.3688496, 46.7925144 ], + [ 8.3688389, 46.7924742 ], + [ 8.3688494, 46.7924395 ], + [ 8.368867999999999, 46.7924016 ], + [ 8.3688796, 46.7923674 ], + [ 8.3688826, 46.7923496 ], + [ 8.3688983, 46.7923103 ], + [ 8.3689076, 46.7922885 ], + [ 8.3689154, 46.7922704 ], + [ 8.3689093, 46.7922473 ], + [ 8.3688846, 46.7922402 ], + [ 8.3688778, 46.7922222 ], + [ 8.368872, 46.7921965 ], + [ 8.3688362, 46.7921355 ], + [ 8.3687848, 46.7920824 ], + [ 8.3687753, 46.7920445 ], + [ 8.368772, 46.7919986 ], + [ 8.3687673, 46.7919463 ], + [ 8.3687754, 46.7918723 ], + [ 8.3687747, 46.7918261 ], + [ 8.368754, 46.7918052 ], + [ 8.3687278, 46.7917855 ], + [ 8.3686887, 46.7917612 ], + [ 8.3691914, 46.7891436 ], + [ 8.368860399999999, 46.7892682 ], + [ 8.3686431, 46.78935 ], + [ 8.3685798, 46.7893738 ], + [ 8.3683558, 46.7894581 ], + [ 8.368302, 46.7894784 ], + [ 8.3671283, 46.790017399999996 ], + [ 8.3664972, 46.7907695 ], + [ 8.3655897, 46.7911626 ], + [ 8.3651031, 46.7914841 ], + [ 8.3642669, 46.791834 ], + [ 8.3634574, 46.7923731 ], + [ 8.363430900000001, 46.7923908 ], + [ 8.3631787, 46.7925587 ], + [ 8.3631317, 46.7925673 ], + [ 8.3628866, 46.7926119 ], + [ 8.3628177, 46.7926455 ], + [ 8.3627072, 46.7926153 ], + [ 8.3621092, 46.792452 ], + [ 8.3617976, 46.7923731 ], + [ 8.3614783, 46.7922772 ], + [ 8.3612488, 46.7921645 ], + [ 8.3611754, 46.7920855 ], + [ 8.3610688, 46.7919332 ], + [ 8.3609704, 46.7917809 ], + [ 8.360839, 46.7916625 ], + [ 8.3606254, 46.7915214 ], + [ 8.3604457, 46.7913973 ], + [ 8.3603304, 46.791262 ], + [ 8.3601172, 46.7911492 ], + [ 8.3598392, 46.7910251 ], + [ 8.3595768, 46.7909969 ], + [ 8.3592817, 46.7909745 ], + [ 8.3590358, 46.7909576 ], + [ 8.3587738, 46.7909068 ], + [ 8.3585687, 46.7908336 ], + [ 8.3582654, 46.7907151 ], + [ 8.3579956, 46.7905911 ], + [ 8.3577249, 46.7904105 ], + [ 8.3575522, 46.7901229 ], + [ 8.3574546, 46.7900158 ], + [ 8.3573723, 46.789948 ], + [ 8.3572246, 46.7898746 ], + [ 8.356971, 46.7897901 ], + [ 8.3567002, 46.7897055 ], + [ 8.3564793, 46.7896152 ], + [ 8.3563073, 46.789463 ], + [ 8.3561674, 46.7893276 ], + [ 8.3560934, 46.7892092 ], + [ 8.3560196, 46.7890568 ], + [ 8.3558233, 46.7888764 ], + [ 8.3556591, 46.7887522 ], + [ 8.35543, 46.7886619 ], + [ 8.3551432, 46.7885944 ], + [ 8.3547988, 46.7885606 ], + [ 8.3545858, 46.7885493 ], + [ 8.3543565, 46.7884985 ], + [ 8.3539964, 46.7884534 ], + [ 8.3536599, 46.7884027 ], + [ 8.3532916, 46.7883576 ], + [ 8.3528902, 46.7882899 ], + [ 8.3524559, 46.7882167 ], + [ 8.3521195, 46.7881716 ], + [ 8.3517023, 46.7881829 ], + [ 8.3514969, 46.7881886 ], + [ 8.3512351, 46.788104 ], + [ 8.3510054, 46.7879742 ], + [ 8.3508253, 46.7878784 ], + [ 8.3507103, 46.7878558 ], + [ 8.3504978, 46.7878727 ], + [ 8.3501206, 46.7878842 ], + [ 8.3494979, 46.7878954 ], + [ 8.3489982, 46.787827899999996 ], + [ 8.348711699999999, 46.7878278 ], + [ 8.3485069, 46.7878673 ], + [ 8.3483267, 46.7879069 ], + [ 8.3479905, 46.787873 ], + [ 8.3473843, 46.7877998 ], + [ 8.3465897, 46.7877152 ], + [ 8.3459837, 46.7876023 ], + [ 8.345443, 46.787529 ], + [ 8.3449919, 46.7874727 ], + [ 8.3447051, 46.7874557 ], + [ 8.3442873, 46.7874389 ], + [ 8.3439846, 46.7873995 ], + [ 8.343829, 46.7873487 ], + [ 8.3437635, 46.7872979 ], + [ 8.3437464, 46.7872528 ], + [ 8.3437469, 46.787185 ], + [ 8.3436979, 46.7870947 ], + [ 8.3435914, 46.7869933 ], + [ 8.3433533, 46.7869029 ], + [ 8.3429193, 46.7867901 ], + [ 8.3422803, 46.7866153 ], + [ 8.3415754, 46.7864122 ], + [ 8.3406583, 46.7860005 ], + [ 8.3401088, 46.7857917 ], + [ 8.3396908, 46.7856112 ], + [ 8.339330499999999, 46.7854588 ], + [ 8.3389539, 46.7853066 ], + [ 8.3385524, 46.7851373 ], + [ 8.3381261, 46.7849963 ], + [ 8.3378068, 46.7849455 ], + [ 8.3374955, 46.784827 ], + [ 8.3371679, 46.7847706 ], + [ 8.3368645, 46.784686 ], + [ 8.3365859, 46.7845731 ], + [ 8.3361928, 46.7845111 ], + [ 8.3358983, 46.7845224 ], + [ 8.3356273, 46.7845167 ], + [ 8.3354799, 46.7844603 ], + [ 8.3354063, 46.78437 ], + [ 8.3353569, 46.7843023 ], + [ 8.3352589, 46.7842176 ], + [ 8.335169, 46.7841781 ], + [ 8.3350296, 46.7841105 ], + [ 8.3348081, 46.7840315 ], + [ 8.3345874, 46.7839524 ], + [ 8.334276, 46.7838791 ], + [ 8.3340713, 46.7838284 ], + [ 8.3338662, 46.7838001 ], + [ 8.3336368, 46.783788799999996 ], + [ 8.3334239, 46.7837324 ], + [ 8.3330966, 46.7836365 ], + [ 8.3328588, 46.7835124 ], + [ 8.3324654, 46.7832867 ], + [ 8.3343175, 46.7898199 ], + [ 8.333975, 46.7966407 ], + [ 8.333639, 46.7965279 ], + [ 8.3334422, 46.7964602 ], + [ 8.3332374, 46.7963981 ], + [ 8.333048699999999, 46.7963755 ], + [ 8.3329014, 46.7963304 ], + [ 8.3327372, 46.7962571 ], + [ 8.3325982, 46.7961668 ], + [ 8.332516, 46.7960991 ], + [ 8.3323363, 46.7960709 ], + [ 8.3321803, 46.7960483 ], + [ 8.3320412, 46.7960032 ], + [ 8.3319261, 46.7959241 ], + [ 8.3317547, 46.7958564 ], + [ 8.3315167, 46.7958226 ], + [ 8.331205, 46.7957831 ], + [ 8.3310169, 46.7957492 ], + [ 8.3308608, 46.7956645 ], + [ 8.330591, 46.7954445 ], + [ 8.330337, 46.7953317 ], + [ 8.3301974, 46.7952019 ], + [ 8.3300661, 46.7951398 ], + [ 8.3299759, 46.7951286 ], + [ 8.3298454, 46.7950101 ], + [ 8.3296324, 46.7949536 ], + [ 8.3293864, 46.7948803 ], + [ 8.3292225, 46.7947675 ], + [ 8.3290425, 46.7946772 ], + [ 8.328878, 46.794632 ], + [ 8.3287308, 46.7945418 ], + [ 8.3285095, 46.794474 ], + [ 8.3282717, 46.7944063 ], + [ 8.3280018, 46.7943217 ], + [ 8.3277226, 46.7942201 ], + [ 8.3276084, 46.7941468 ], + [ 8.3275095, 46.794056499999996 ], + [ 8.3273133, 46.7939719 ], + [ 8.3271823, 46.793921 ], + [ 8.3270098, 46.7937856 ], + [ 8.3268378, 46.793684 ], + [ 8.3266494, 46.7935768 ], + [ 8.326396, 46.7934527 ], + [ 8.3259863, 46.7933342 ], + [ 8.3256006, 46.7931762 ], + [ 8.325142, 46.793069 ], + [ 8.3249042, 46.7930408 ], + [ 8.3247651, 46.7929956 ], + [ 8.3247, 46.7929222 ], + [ 8.3245686, 46.7927981 ], + [ 8.3243144, 46.7927191 ], + [ 8.3240443, 46.792674 ], + [ 8.323905, 46.7926175 ], + [ 8.3238231, 46.7925159 ], + [ 8.3236265, 46.792358 ], + [ 8.3233725, 46.7920984 ], + [ 8.3231507, 46.7919517 ], + [ 8.3229383, 46.7918783 ], + [ 8.3227004, 46.7917993 ], + [ 8.3224629, 46.7916921 ], + [ 8.322225, 46.7915623 ], + [ 8.3220693, 46.7914494 ], + [ 8.3217583, 46.7913084 ], + [ 8.3215208, 46.7912012 ], + [ 8.3212342, 46.7910995 ], + [ 8.3209803, 46.7910374 ], + [ 8.3206602, 46.7908851 ], + [ 8.3203329, 46.7907496 ], + [ 8.3199393, 46.7906086 ], + [ 8.3194152, 46.7904449 ], + [ 8.3189402, 46.7903319 ], + [ 8.318506, 46.7903093 ], + [ 8.3181862, 46.7903318 ], + [ 8.3174815, 46.7898353 ], + [ 8.3172604, 46.7897281 ], + [ 8.3170885, 46.7896773 ], + [ 8.3169576, 46.7895869 ], + [ 8.3167611, 46.7894798 ], + [ 8.316555900000001, 46.7894006 ], + [ 8.3163597, 46.7892652 ], + [ 8.3161626, 46.7890733 ], + [ 8.3158682, 46.7888929 ], + [ 8.3155647, 46.7887517 ], + [ 8.315392899999999, 46.7885599 ], + [ 8.3150978, 46.7883285 ], + [ 8.3147788, 46.7880464 ], + [ 8.3146309, 46.7879617 ], + [ 8.314418, 46.7879052 ], + [ 8.3142214, 46.7878939 ], + [ 8.3141312, 46.7878375 ], + [ 8.3140328, 46.7877247 ], + [ 8.3138614, 46.7875554 ], + [ 8.3136811, 46.7874369 ], + [ 8.3135173, 46.7873352 ], + [ 8.3134677, 46.7872506 ], + [ 8.3133864, 46.7871377 ], + [ 8.3132881, 46.787132 ], + [ 8.3131404, 46.7871095 ], + [ 8.3130335, 46.7870305 ], + [ 8.3129269, 46.7869684 ], + [ 8.3127388, 46.7868782 ], + [ 8.3125337, 46.786799 ], + [ 8.3124849, 46.7867144 ], + [ 8.3124772, 46.7865959 ], + [ 8.3124109, 46.7865451 ], + [ 8.3123045, 46.7864944 ], + [ 8.3121736, 46.7863984 ], + [ 8.3119691, 46.7862573 ], + [ 8.3118458, 46.7861219 ], + [ 8.3118132, 46.7859809 ], + [ 8.311723, 46.785868 ], + [ 8.311592, 46.7858173 ], + [ 8.3114203, 46.7857777 ], + [ 8.3113626, 46.7856536 ], + [ 8.3112562, 46.7856028 ], + [ 8.3111252, 46.785597 ], + [ 8.3110109, 46.7853657 ], + [ 8.3108876, 46.7853318 ], + [ 8.3105605, 46.7853995 ], + [ 8.3102732, 46.7854502 ], + [ 8.3098882, 46.7852808 ], + [ 8.3096672, 46.7851341 ], + [ 8.3092085, 46.7849083 ], + [ 8.3087989, 46.7847389 ], + [ 8.3081352, 46.7845922 ], + [ 8.3079141, 46.7853989 ], + [ 8.3077992, 46.7855287 ], + [ 8.3076188, 46.785664 ], + [ 8.307431, 46.7857936 ], + [ 8.3072343, 46.7859291 ], + [ 8.3071517, 46.786087 ], + [ 8.3070701, 46.7862561 ], + [ 8.3069633, 46.7864875 ], + [ 8.3069059, 46.786685 ], + [ 8.3067912, 46.7868767 ], + [ 8.3067009, 46.7872208 ], + [ 8.3065617, 46.7873675 ], + [ 8.3064473, 46.7874295 ], + [ 8.3062338, 46.7874407 ], + [ 8.3060049, 46.7874576 ], + [ 8.3056195, 46.7875196 ], + [ 8.3053162, 46.7875928 ], + [ 8.3051201, 46.7876662 ], + [ 8.3049399, 46.7878127 ], + [ 8.3046609, 46.7880271 ], + [ 8.3044315, 46.7882131 ], + [ 8.3042921, 46.7884049 ], + [ 8.3040295, 46.7885177 ], + [ 8.3036613, 46.7886305 ], + [ 8.3033331, 46.7886811 ], + [ 8.3029643, 46.78876 ], + [ 8.3026777, 46.7887995 ], + [ 8.3023507, 46.7888275 ], + [ 8.3019732, 46.7888725 ], + [ 8.3016536, 46.7889007 ], + [ 8.3012853, 46.7889061 ], + [ 8.3010231, 46.7888891 ], + [ 8.3007933, 46.7889004 ], + [ 8.3004412, 46.7889454 ], + [ 8.2999662, 46.7890356 ], + [ 8.2994991, 46.7891087 ], + [ 8.2990156, 46.7891763 ], + [ 8.2933133, 46.7898964 ], + [ 8.2932472, 46.7900656 ], + [ 8.2931821, 46.7901389 ], + [ 8.2930753, 46.7902235 ], + [ 8.2929363, 46.7902799 ], + [ 8.2928868, 46.7903588 ], + [ 8.2928871, 46.7904322 ], + [ 8.2929114, 46.7905168 ], + [ 8.2929196, 46.790624 ], + [ 8.2928866, 46.7907087 ], + [ 8.2928047, 46.7907594 ], + [ 8.2926735, 46.7908496 ], + [ 8.29251, 46.790968 ], + [ 8.292428, 46.791064 ], + [ 8.2924195, 46.7911992 ], + [ 8.2924601, 46.7912784 ], + [ 8.2924853, 46.7913685 ], + [ 8.2924763, 46.7915266 ], + [ 8.2925337, 46.7917353 ], + [ 8.2924274, 46.7917973 ], + [ 8.2923943, 46.7919835 ], + [ 8.2922714, 46.7921302 ], + [ 8.2920337, 46.792367 ], + [ 8.2918207, 46.7925136 ], + [ 8.291722, 46.7925869 ], + [ 8.2915906, 46.792773 ], + [ 8.2914512, 46.7930155 ], + [ 8.2913452, 46.7930944 ], + [ 8.2912224, 46.7931453 ], + [ 8.2910827, 46.7932129 ], + [ 8.2909601, 46.7932805 ], + [ 8.2909107, 46.7933652 ], + [ 8.2908041, 46.7934554 ], + [ 8.2907302, 46.7935456 ], + [ 8.2906643, 46.7936245 ], + [ 8.2905828, 46.7936471 ], + [ 8.2905088, 46.7936753 ], + [ 8.2904675, 46.7937599 ], + [ 8.290402, 46.7938614 ], + [ 8.2902954, 46.7940081 ], + [ 8.2901234, 46.7942054 ], + [ 8.2899592, 46.7943351 ], + [ 8.2891155, 46.7947691 ], + [ 8.288607, 46.7950228 ], + [ 8.2882872, 46.7951977 ], + [ 8.2880332, 46.7953893 ], + [ 8.2879104, 46.7954458 ], + [ 8.2878117, 46.795519 ], + [ 8.287681, 46.7956431 ], + [ 8.2875664, 46.7957954 ], + [ 8.2874345, 46.7958969 ], + [ 8.2872713, 46.7959814 ], + [ 8.2870903, 46.7960828 ], + [ 8.2869349, 46.7961956 ], + [ 8.2867543, 46.7963762 ], + [ 8.2865655, 46.7965509 ], + [ 8.286443, 46.7966749 ], + [ 8.2863197, 46.7968499 ], + [ 8.2861479, 46.7970133 ], + [ 8.2859751, 46.7972163 ], + [ 8.2858113, 46.7973686 ], + [ 8.2856477, 46.7974871 ], + [ 8.285508, 46.7976055 ], + [ 8.285418, 46.7977126 ], + [ 8.2853194, 46.797848 ], + [ 8.2851721, 46.7980115 ], + [ 8.2850159, 46.798175 ], + [ 8.2848683, 46.7983725 ], + [ 8.2848186, 46.7985981 ], + [ 8.2847614, 46.798756 ], + [ 8.2846305, 46.7988688 ], + [ 8.2845153, 46.7989873 ], + [ 8.2843511, 46.7992184 ], + [ 8.2842448, 46.7993312 ], + [ 8.2841379, 46.7994102 ], + [ 8.2839578, 46.7994609 ], + [ 8.2837693, 46.7995511 ], + [ 8.2836056, 46.7996639 ], + [ 8.2834334, 46.7998556 ], + [ 8.283376, 46.8000586 ], + [ 8.2833757, 46.8001941 ], + [ 8.2832119, 46.8002956 ], + [ 8.2831381, 46.8004478 ], + [ 8.2833428, 46.8004987 ], + [ 8.2836624, 46.8005666 ], + [ 8.2839738, 46.8006401 ], + [ 8.2842358, 46.8007417 ], + [ 8.2843583, 46.8008264 ], + [ 8.2844898, 46.8009619 ], + [ 8.2845963, 46.8010183 ], + [ 8.2847186, 46.8010918 ], + [ 8.2847928, 46.8011708 ], + [ 8.2848662, 46.8013118 ], + [ 8.2848742, 46.8014077 ], + [ 8.2849644, 46.8015658 ], + [ 8.2850137, 46.8017351 ], + [ 8.2850949, 46.8018479 ], + [ 8.285127899999999, 46.8019155 ], + [ 8.2851688, 46.8020171 ], + [ 8.2852343, 46.8022767 ], + [ 8.2852585, 46.8024629 ], + [ 8.28525, 46.8026547 ], + [ 8.2852092, 46.8028183 ], + [ 8.2851352, 46.80301 ], + [ 8.2850693, 46.8031398 ], + [ 8.2849136, 46.8032865 ], + [ 8.2849381, 46.8033316 ], + [ 8.2849794, 46.8034614 ], + [ 8.2849874, 46.8036025 ], + [ 8.2849953, 46.8037435 ], + [ 8.2849621, 46.803924 ], + [ 8.2849051, 46.8040481 ], + [ 8.2848804, 46.8041947 ], + [ 8.2848717, 46.8043189 ], + [ 8.2848886, 46.8044543 ], + [ 8.2848885, 46.8045558 ], + [ 8.2848633, 46.8047195 ], + [ 8.284806, 46.8048775 ], + [ 8.2847407, 46.8050522 ], + [ 8.2846584, 46.8052328 ], + [ 8.2845759, 46.8054019 ], + [ 8.2845431, 46.8055542 ], + [ 8.2845927, 46.8057405 ], + [ 8.284658, 46.8059323 ], + [ 8.2847069, 46.8061806 ], + [ 8.284797, 46.8064458 ], + [ 8.2848133, 46.8065981 ], + [ 8.2852059, 46.8066208 ], + [ 8.2855175, 46.8066435 ], + [ 8.2859601, 46.806672 ], + [ 8.2862554, 46.8067059 ], + [ 8.2864354, 46.8067455 ], + [ 8.2866406, 46.806779399999996 ], + [ 8.2868285, 46.8068021 ], + [ 8.2870089, 46.8068191 ], + [ 8.287189099999999, 46.8068192 ], + [ 8.2874842, 46.8067911 ], + [ 8.2878202, 46.8067574 ], + [ 8.2881734, 46.8067181 ], + [ 8.2886153, 46.8067013 ], + [ 8.2888942, 46.8066789 ], + [ 8.2891239, 46.8066056 ], + [ 8.2894026, 46.8065154 ], + [ 8.2894269, 46.8066565 ], + [ 8.2894513, 46.8068032 ], + [ 8.2894679, 46.8069725 ], + [ 8.2895905, 46.8072151 ], + [ 8.2897209, 46.8075424 ], + [ 8.289942, 46.8080051 ], + [ 8.2902207, 46.8084904 ], + [ 8.290507, 46.808987 ], + [ 8.290581, 46.809162 ], + [ 8.2906055, 46.8093143 ], + [ 8.2905722, 46.8094891 ], + [ 8.290523, 46.8096358 ], + [ 8.2905396, 46.8098614 ], + [ 8.2905478, 46.8100646 ], + [ 8.2905961, 46.8102733 ], + [ 8.2906781, 46.810437 ], + [ 8.2908173, 46.8105894 ], + [ 8.2909571, 46.8106796 ], + [ 8.2910712, 46.8107475 ], + [ 8.2912433, 46.810804 ], + [ 8.2914072, 46.810866 ], + [ 8.2915139, 46.8109338 ], + [ 8.2915469, 46.8109958 ], + [ 8.291489, 46.8110692 ], + [ 8.2913828, 46.8111312 ], + [ 8.2912762, 46.8111762 ], + [ 8.2910628, 46.8111988 ], + [ 8.2908011, 46.811272 ], + [ 8.290522, 46.811334 ], + [ 8.2902348, 46.8113507 ], + [ 8.2899484, 46.8113676 ], + [ 8.289801, 46.8114183 ], + [ 8.289776, 46.8115424 ], + [ 8.2897677, 46.8116383 ], + [ 8.2897678, 46.8118019 ], + [ 8.2897753, 46.8121236 ], + [ 8.2897921, 46.8124056 ], + [ 8.2898408, 46.8126426 ], + [ 8.2898978, 46.8128288 ], + [ 8.28989, 46.8129529 ], + [ 8.2898819, 46.8130601 ], + [ 8.289848899999999, 46.8131504 ], + [ 8.2898325, 46.8132519 ], + [ 8.2898652, 46.8133535 ], + [ 8.2898892, 46.813472 ], + [ 8.2899219, 46.8136242 ], + [ 8.2899223, 46.813754 ], + [ 8.2898894, 46.8139007 ], + [ 8.2898233, 46.8140191 ], + [ 8.2897332, 46.8141715 ], + [ 8.2896758, 46.8143238 ], + [ 8.2896106, 46.8144479 ], + [ 8.2895694, 46.8145889 ], + [ 8.2895284, 46.8147411 ], + [ 8.289487, 46.814916 ], + [ 8.2894293, 46.8151023 ], + [ 8.2893388, 46.8153335 ], + [ 8.2892241, 46.8155422 ], + [ 8.2891091, 46.81583 ], + [ 8.2890843, 46.8160217 ], + [ 8.2890025, 46.8163376 ], + [ 8.2889936, 46.8165577 ], + [ 8.2889528, 46.8168735 ], + [ 8.2888621, 46.81715 ], + [ 8.2887313, 46.8173192 ], + [ 8.2886576, 46.817477 ], + [ 8.2886081, 46.8176069 ], + [ 8.2886405, 46.8177423 ], + [ 8.2886981, 46.817968 ], + [ 8.2888048, 46.8181373 ], + [ 8.2888122, 46.8182389 ], + [ 8.2887717, 46.8183234 ], + [ 8.2886564, 46.8184362 ], + [ 8.2887058, 46.8185039 ], + [ 8.2886891, 46.8185885 ], + [ 8.2886159, 46.8187239 ], + [ 8.288501, 46.8188649 ], + [ 8.2884346, 46.819068 ], + [ 8.288451, 46.8193331 ], + [ 8.2885328, 46.8197393 ], + [ 8.288598, 46.8199764 ], + [ 8.2887128, 46.82014 ], + [ 8.2888274, 46.820343199999996 ], + [ 8.2889749, 46.8206084 ], + [ 8.289114, 46.8208567 ], + [ 8.2892862, 46.8210824 ], + [ 8.2895399, 46.8213251 ], + [ 8.2897861, 46.821613 ], + [ 8.2899738, 46.8218275 ], + [ 8.2901135, 46.8220644 ], + [ 8.2902281, 46.8223184 ], + [ 8.2903506, 46.8226062 ], + [ 8.2904244, 46.8227642 ], + [ 8.2905474, 46.8229842 ], + [ 8.290703, 46.8231874 ], + [ 8.2908501, 46.8233736 ], + [ 8.2908832, 46.8235485 ], + [ 8.2908827, 46.8237798 ], + [ 8.290883000000001, 46.8240563 ], + [ 8.2909317, 46.8243383 ], + [ 8.2910951, 46.8245698 ], + [ 8.2912593, 46.8247448 ], + [ 8.2913654, 46.8248802 ], + [ 8.2914233, 46.8250156 ], + [ 8.2914638, 46.8251454 ], + [ 8.2915461, 46.8253767 ], + [ 8.2915782, 46.8256419 ], + [ 8.2916358, 46.8258168 ], + [ 8.2917344, 46.8259861 ], + [ 8.2918326, 46.8261384 ], + [ 8.2919474, 46.8262458 ], + [ 8.2920941, 46.8264094 ], + [ 8.2921931, 46.8265561 ], + [ 8.2922832, 46.8267593 ], + [ 8.2923404, 46.826906 ], + [ 8.292373, 46.8271034 ], + [ 8.2924302, 46.8273516 ], + [ 8.2925287, 46.8276224 ], + [ 8.2927169, 46.8278708 ], + [ 8.2929133, 46.8280628 ], + [ 8.2931265, 46.8281248 ], + [ 8.2933476, 46.828125 ], + [ 8.2937417, 46.828125 ], + [ 8.2941188, 46.8280914 ], + [ 8.294627, 46.8280069 ], + [ 8.2952087, 46.8278604 ], + [ 8.2957584, 46.8277591 ], + [ 8.2962671, 46.8277084 ], + [ 8.2965289, 46.8276861 ], + [ 8.2966928, 46.8276917 ], + [ 8.2968157, 46.8277425 ], + [ 8.296906, 46.8278047 ], + [ 8.2969635, 46.8278667 ], + [ 8.2970209, 46.8279739 ], + [ 8.2969796, 46.8280529 ], + [ 8.2969387, 46.8282108 ], + [ 8.2968732, 46.8284196 ], + [ 8.2968563, 46.8286452 ], + [ 8.2968562, 46.8288427 ], + [ 8.2968724, 46.8289837 ], + [ 8.296873, 46.8291756 ], + [ 8.2968316, 46.8293053 ], + [ 8.2967988, 46.8295084 ], + [ 8.2968315, 46.8297623 ], + [ 8.2969211, 46.8299879 ], + [ 8.2970442, 46.8301516 ], + [ 8.2972165, 46.8302702 ], + [ 8.297462, 46.8304113 ], + [ 8.2984784, 46.8308065 ], + [ 8.2983234, 46.8305864 ], + [ 8.2982244, 46.8303946 ], + [ 8.2981102, 46.8302705 ], + [ 8.298127, 46.8299884 ], + [ 8.298217, 46.8296725 ], + [ 8.298381, 46.8293228 ], + [ 8.2984878, 46.8290858 ], + [ 8.2986679, 46.828973 ], + [ 8.2988897, 46.828911 ], + [ 8.2990616, 46.8287983 ], + [ 8.2991606, 46.8286911 ], + [ 8.2992014, 46.8285784 ], + [ 8.2992012, 46.8284091 ], + [ 8.2991772, 46.8281383 ], + [ 8.2991936, 46.8278843 ], + [ 8.2992594, 46.8275967 ], + [ 8.2993576, 46.8273315 ], + [ 8.299473, 46.827072 ], + [ 8.2996041, 46.826869 ], + [ 8.2997764, 46.8266264 ], + [ 8.3000386, 46.8264234 ], + [ 8.3002687, 46.8262655 ], + [ 8.3004244, 46.8261696 ], + [ 8.3005225, 46.8260568 ], + [ 8.3005963, 46.8259046 ], + [ 8.3005968, 46.8257805 ], + [ 8.3005226, 46.8256506 ], + [ 8.3004326, 46.8255547 ], + [ 8.3003511, 46.8254757 ], + [ 8.3003837, 46.8253628 ], + [ 8.3004407, 46.8252952 ], + [ 8.3005718, 46.8252952 ], + [ 8.3006789, 46.8253347 ], + [ 8.3007361, 46.8254251 ], + [ 8.3008755, 46.8255379 ], + [ 8.3009903, 46.8257016 ], + [ 8.301014200000001, 46.8258088 ], + [ 8.3010061, 46.8259724 ], + [ 8.3009574, 46.8261529 ], + [ 8.3008997, 46.8262827 ], + [ 8.3008014, 46.826435 ], + [ 8.3006449, 46.8265872 ], + [ 8.3005632, 46.8267056 ], + [ 8.3005225, 46.8268749 ], + [ 8.3006037, 46.8270329 ], + [ 8.3007842, 46.8271514 ], + [ 8.3009073, 46.8272699 ], + [ 8.300981, 46.8273716 ], + [ 8.3010056, 46.8275746 ], + [ 8.3010382, 46.8278229 ], + [ 8.3010793, 46.8280881 ], + [ 8.3010458, 46.8283476 ], + [ 8.3009313, 46.8285619 ], + [ 8.3008901, 46.828703 ], + [ 8.3009063, 46.8287932 ], + [ 8.3010621, 46.8290584 ], + [ 8.3012914, 46.8293067 ], + [ 8.3014391, 46.8293237 ], + [ 8.3017345, 46.8293013 ], + [ 8.3021278, 46.829307 ], + [ 8.3023657, 46.8293804 ], + [ 8.3026037, 46.8294594 ], + [ 8.3028249, 46.8295611 ], + [ 8.302964, 46.8296514 ], + [ 8.3031032, 46.8297473 ], + [ 8.3031935, 46.8298658 ], + [ 8.3032594, 46.82999 ], + [ 8.3033166, 46.830131 ], + [ 8.3034392, 46.8302664 ], + [ 8.30348, 46.8304075 ], + [ 8.3034801, 46.8305204 ], + [ 8.3033658, 46.830746 ], + [ 8.3032584, 46.8309998 ], + [ 8.3032749, 46.8312086 ], + [ 8.3033492, 46.8312932 ], + [ 8.3034721, 46.831344 ], + [ 8.3035867, 46.8313948 ], + [ 8.3037835, 46.8314005 ], + [ 8.3039638, 46.8314062 ], + [ 8.3041442, 46.8314176 ], + [ 8.3042016, 46.8314232 ], + [ 8.3043159, 46.8313443 ], + [ 8.3046282, 46.8311525 ], + [ 8.3048244, 46.8310228 ], + [ 8.3049803, 46.8308367 ], + [ 8.3051368, 46.8306336 ], + [ 8.3052427, 46.8304476 ], + [ 8.305325, 46.8302163 ], + [ 8.305489, 46.8299173 ], + [ 8.3056207, 46.8296521 ], + [ 8.3057188, 46.8293869 ], + [ 8.3058588, 46.8291275 ], + [ 8.3060474, 46.8289358 ], + [ 8.3063342, 46.8288342 ], + [ 8.306646, 46.8287666 ], + [ 8.3069083, 46.8287272 ], + [ 8.3072528, 46.8286032 ], + [ 8.3075314, 46.8285017 ], + [ 8.3077034, 46.828451 ], + [ 8.3078428, 46.8284567 ], + [ 8.3081627, 46.8284849 ], + [ 8.3085885, 46.8284229 ], + [ 8.3090396, 46.8284061 ], + [ 8.3094908, 46.8283442 ], + [ 8.309737, 46.8282709 ], + [ 8.3099416, 46.8282597 ], + [ 8.3100972, 46.8282541 ], + [ 8.3102039, 46.8281694 ], + [ 8.3102619, 46.8281074 ], + [ 8.3102121, 46.8279664 ], + [ 8.3103598, 46.8278818 ], + [ 8.3103845, 46.8277858 ], + [ 8.3105237, 46.8277803 ], + [ 8.310499, 46.8276731 ], + [ 8.3106391, 46.8276731 ], + [ 8.310606, 46.8276054 ], + [ 8.3108359, 46.8275886 ], + [ 8.3110076, 46.8276168 ], + [ 8.3111717, 46.8276845 ], + [ 8.3113272, 46.8276732 ], + [ 8.3114665, 46.8276282 ], + [ 8.3116307, 46.8275999 ], + [ 8.31177, 46.8274985 ], + [ 8.312008, 46.8275268 ], + [ 8.3121805, 46.8274026 ], + [ 8.3123524, 46.8273463 ], + [ 8.3124833, 46.8272842 ], + [ 8.3124834, 46.8271376 ], + [ 8.312746, 46.8271714 ], + [ 8.3127298, 46.8270755 ], + [ 8.3129508, 46.8270699 ], + [ 8.313123, 46.8270812 ], + [ 8.3134096, 46.8271208 ], + [ 8.3134592, 46.8269967 ], + [ 8.313689, 46.827228 ], + [ 8.3137136, 46.8270757 ], + [ 8.3136808, 46.8269233 ], + [ 8.3138529, 46.8269798 ], + [ 8.3139596, 46.8271434 ], + [ 8.3143199, 46.8272846 ], + [ 8.3145826, 46.827420000000004 ], + [ 8.3147876, 46.8275329 ], + [ 8.3149841, 46.8275273 ], + [ 8.3152218, 46.8275387 ], + [ 8.3154598, 46.8276121 ], + [ 8.3156068, 46.8276854 ], + [ 8.3157546, 46.8277588 ], + [ 8.3159184, 46.8279054 ], + [ 8.316107, 46.8280184 ], + [ 8.3163042, 46.828103 ], + [ 8.3164843, 46.8281482 ], + [ 8.3165741, 46.8282328 ], + [ 8.3166483, 46.828261 ], + [ 8.3168453, 46.8282328 ], + [ 8.3170252, 46.8282104 ], + [ 8.3170995, 46.8283457 ], + [ 8.3171897, 46.8283006 ], + [ 8.3171972, 46.8284134 ], + [ 8.3173779, 46.8282893 ], + [ 8.3175418, 46.8282442 ], + [ 8.317722, 46.8282442 ], + [ 8.3178941, 46.8283007 ], + [ 8.3180504, 46.828391 ], + [ 8.3181238, 46.8282668 ], + [ 8.3183285, 46.8283628 ], + [ 8.3183449, 46.8282613 ], + [ 8.3186078, 46.8281598 ], + [ 8.3185749, 46.8279511 ], + [ 8.319034, 46.8279229 ], + [ 8.319272, 46.8280978 ], + [ 8.3195093, 46.828284 ], + [ 8.3198293, 46.8284138 ], + [ 8.3199356, 46.828002 ], + [ 8.3204117, 46.8283123 ], + [ 8.3207394, 46.8282616 ], + [ 8.3209445, 46.8282334 ], + [ 8.3211085, 46.8282899 ], + [ 8.3212478, 46.8283407 ], + [ 8.3215506, 46.8282223 ], + [ 8.3217967, 46.828149 ], + [ 8.3220427, 46.8281095 ], + [ 8.32224, 46.8281038 ], + [ 8.3225183, 46.8281885 ], + [ 8.3226334, 46.8276131 ], + [ 8.322797, 46.8276018 ], + [ 8.3228466, 46.8274269 ], + [ 8.3229612, 46.8273762 ], + [ 8.3230675, 46.8274101 ], + [ 8.3231907, 46.8274835 ], + [ 8.3233545, 46.8276301 ], + [ 8.3235428, 46.8278728 ], + [ 8.3237895, 46.8280816 ], + [ 8.3239781, 46.8282902 ], + [ 8.3241004, 46.8284031 ], + [ 8.3242156, 46.828437 ], + [ 8.324429, 46.8284087 ], + [ 8.3247242, 46.8287247 ], + [ 8.324519, 46.829052 ], + [ 8.3247399, 46.8290351 ], + [ 8.3248876, 46.8290012 ], + [ 8.3250601, 46.8289279 ], + [ 8.3252975, 46.8289673 ], + [ 8.3255192, 46.8289956 ], + [ 8.3257484, 46.82899 ], + [ 8.3260025, 46.8289956 ], + [ 8.3263307, 46.8289787 ], + [ 8.3265933, 46.8289562 ], + [ 8.3268719, 46.8289111 ], + [ 8.3270851, 46.8288717 ], + [ 8.3272901, 46.828883 ], + [ 8.3276018, 46.8289112 ], + [ 8.3278724, 46.8289281 ], + [ 8.3280606, 46.828962 ], + [ 8.328241, 46.829024 ], + [ 8.3284869, 46.8291313 ], + [ 8.3286676, 46.8291594 ], + [ 8.3289133, 46.8291539 ], + [ 8.329233200000001, 46.829182 ], + [ 8.3294874, 46.8291934 ], + [ 8.3297248, 46.8291877 ], + [ 8.329963, 46.8291765 ], + [ 8.3302501, 46.8291482 ], + [ 8.3305368, 46.8290975 ], + [ 8.3307746, 46.8290581 ], + [ 8.3310042, 46.8290243 ], + [ 8.3312335, 46.8289678 ], + [ 8.331455, 46.8289904 ], + [ 8.331684599999999, 46.8290016 ], + [ 8.3319468, 46.8289566 ], + [ 8.3323728, 46.8289114 ], + [ 8.3323812, 46.8290694 ], + [ 8.332857, 46.8290074 ], + [ 8.3328733, 46.8291991 ], + [ 8.3330127, 46.8292104 ], + [ 8.3331525, 46.8292894 ], + [ 8.3333492, 46.8292499 ], + [ 8.3332423, 46.8293684 ], + [ 8.3337095, 46.8293854 ], + [ 8.3337507, 46.8293008 ], + [ 8.3339061, 46.8292894 ], + [ 8.3339639, 46.8293628 ], + [ 8.3340456, 46.8294023 ], + [ 8.3341277, 46.8294136 ], + [ 8.3342672, 46.8295715 ], + [ 8.3343819, 46.8295265 ], + [ 8.3345785, 46.8296224 ], + [ 8.3347508, 46.8295376 ], + [ 8.335083, 46.8296123 ], + [ 8.335214, 46.8296418 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "JBG0020", + "country" : "CHE", + "name" : [ + { + "text" : "Eidgenössisches Jagdbanngebiet Hutstock", + "lang" : "de-CH" + }, + { + "text" : "District franc fédéral Hutstock", + "lang" : "fr-CH" + }, + { + "text" : "Bandita federale di caccia Hutstock", + "lang" : "it-CH" + }, + { + "text" : "Federal Game Reserve Hutstock", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.4304715, 46.7365059 ], + [ 9.4304609, 46.7363648 ], + [ 9.4304396, 46.7362242 ], + [ 9.4304076, 46.7360847 ], + [ 9.430365, 46.7359464 ], + [ 9.430312, 46.7358099 ], + [ 9.4302486, 46.7356755 ], + [ 9.4301751, 46.7355436 ], + [ 9.4300917, 46.7354145 ], + [ 9.4299985, 46.7352885 ], + [ 9.4298959, 46.7351661 ], + [ 9.4297841, 46.7350476 ], + [ 9.4296635, 46.7349332 ], + [ 9.4295343, 46.7348233 ], + [ 9.4293969, 46.7347183 ], + [ 9.4292517, 46.7346183 ], + [ 9.4290991, 46.7345237 ], + [ 9.4289395, 46.7344347 ], + [ 9.4287734, 46.7343515 ], + [ 9.4286011, 46.7342745 ], + [ 9.4284232, 46.7342037 ], + [ 9.4282402, 46.7341395 ], + [ 9.428052600000001, 46.7340819 ], + [ 9.4278608, 46.7340312 ], + [ 9.4276654, 46.7339874 ], + [ 9.427467, 46.7339507 ], + [ 9.427266, 46.7339213 ], + [ 9.4270631, 46.733899 ], + [ 9.4268587, 46.7338842 ], + [ 9.4266535, 46.7338767 ], + [ 9.4264481, 46.7338765 ], + [ 9.4262429, 46.7338838 ], + [ 9.4260385, 46.7338985 ], + [ 9.4258355, 46.7339204 ], + [ 9.4256345, 46.7339497 ], + [ 9.4254359, 46.7339862 ], + [ 9.4252404, 46.7340297 ], + [ 9.4250485, 46.7340802 ], + [ 9.4248608, 46.7341376 ], + [ 9.4246776, 46.7342016 ], + [ 9.4244995, 46.7342722 ], + [ 9.4243271, 46.734349 ], + [ 9.4241608, 46.734432 ], + [ 9.424001, 46.7345208 ], + [ 9.4238481, 46.7346152 ], + [ 9.4237027, 46.734715 ], + [ 9.4235651, 46.73482 ], + [ 9.4234356, 46.7349297 ], + [ 9.4233147, 46.7350439 ], + [ 9.4232026, 46.7351623 ], + [ 9.4230997, 46.7352846 ], + [ 9.4230063, 46.7354105 ], + [ 9.4229225, 46.7355395 ], + [ 9.4228487, 46.7356714 ], + [ 9.4227851, 46.7358057 ], + [ 9.4227317, 46.7359421 ], + [ 9.4226888, 46.7360803 ], + [ 9.4226565, 46.7362198 ], + [ 9.4226348, 46.7363603 ], + [ 9.4226239, 46.7365014 ], + [ 9.4226237, 46.7366427 ], + [ 9.4226342, 46.7367838 ], + [ 9.4226556, 46.7369243 ], + [ 9.4226875, 46.7370639 ], + [ 9.4227301, 46.7372021 ], + [ 9.4227831, 46.7373386 ], + [ 9.4228464, 46.737473 ], + [ 9.4229199, 46.737605 ], + [ 9.4230033, 46.7377341 ], + [ 9.4230964, 46.73786 ], + [ 9.423199, 46.7379824 ], + [ 9.4233108, 46.738101 ], + [ 9.4234315, 46.7382154 ], + [ 9.4235606, 46.7383253 ], + [ 9.423698, 46.7384303 ], + [ 9.4238432, 46.7385303 ], + [ 9.4239958, 46.738625 ], + [ 9.4241554, 46.738714 ], + [ 9.4243216, 46.7387971 ], + [ 9.4244938, 46.7388742 ], + [ 9.4246717, 46.7389449 ], + [ 9.4248547, 46.7390092 ], + [ 9.4250424, 46.7390667 ], + [ 9.4252342, 46.7391175 ], + [ 9.4254296, 46.7391613 ], + [ 9.4256281, 46.7391979 ], + [ 9.425829, 46.7392274 ], + [ 9.426032, 46.7392496 ], + [ 9.4262364, 46.7392645 ], + [ 9.4264416, 46.739272 ], + [ 9.4266471, 46.7392722 ], + [ 9.4268523, 46.7392649 ], + [ 9.4270567, 46.7392502 ], + [ 9.4272597, 46.7392282 ], + [ 9.4274608, 46.739199 ], + [ 9.4276593, 46.7391625 ], + [ 9.4278548, 46.739119 ], + [ 9.4280467, 46.7390684 ], + [ 9.4282345, 46.7390111 ], + [ 9.4284177, 46.738947 ], + [ 9.4285958, 46.7388765 ], + [ 9.4287682, 46.7387996 ], + [ 9.4289346, 46.7387167 ], + [ 9.4290944, 46.7386279 ], + [ 9.4292472, 46.7385334 ], + [ 9.4293927, 46.7384336 ], + [ 9.4295303, 46.7383286 ], + [ 9.4296597, 46.7382189 ], + [ 9.4297807, 46.7381047 ], + [ 9.4298927, 46.7379862 ], + [ 9.4299956, 46.7378639 ], + [ 9.4300891, 46.7377381 ], + [ 9.4301728, 46.7376091 ], + [ 9.4302466, 46.7374772 ], + [ 9.4303102, 46.7373429 ], + [ 9.4303636, 46.7372064 ], + [ 9.4304065, 46.7370683 ], + [ 9.4304388, 46.7369287 ], + [ 9.4304604, 46.7367882 ], + [ 9.4304713, 46.7366471 ], + [ 9.4304715, 46.7365059 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "CAZ0001", + "country" : "CHE", + "name" : [ + { + "text" : "JVA Cazis Tignez", + "lang" : "de-CH" + }, + { + "text" : "JVA Cazis Tignez", + "lang" : "fr-CH" + }, + { + "text" : "JVA Cazis Tignez", + "lang" : "it-CH" + }, + { + "text" : "JVA Cazis Tignez", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Justizvollzugsanstalt Cazis Tignez", + "lang" : "de-CH" + }, + { + "text" : "Établissement pénitentiaire Cazis Tignez", + "lang" : "fr-CH" + }, + { + "text" : "Penitenziario Cazis Tignez", + "lang" : "it-CH" + }, + { + "text" : "Cazis Tignez prison", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Sicherheit", + "lang" : "de-CH" + }, + { + "text" : "Département de sécurité", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di sicurezza", + "lang" : "it-CH" + }, + { + "text" : "Security Department", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Martin Muoth", + "lang" : "de-CH" + }, + { + "text" : "Martin Muoth", + "lang" : "fr-CH" + }, + { + "text" : "Martin Muoth", + "lang" : "it-CH" + }, + { + "text" : "Martin Muoth", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ajv.gr.ch", + "email" : "info.ct@ajv.gr.ch", + "phone" : "0041814231212", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8566022, 47.4034942 ], + [ 7.8569473, 47.403112 ], + [ 7.8572412, 47.4031112 ], + [ 7.8577934, 47.4030283 ], + [ 7.8581949, 47.4031485 ], + [ 7.8586821, 47.4032916 ], + [ 7.8590841, 47.4033804 ], + [ 7.8593275, 47.4034295 ], + [ 7.8596217, 47.4032528 ], + [ 7.8599479, 47.4031881 ], + [ 7.8603712, 47.4031221 ], + [ 7.8604034, 47.4030893 ], + [ 7.860263, 47.4030291 ], + [ 7.8600682, 47.4029633 ], + [ 7.8598467, 47.4029585 ], + [ 7.8596226, 47.4029392 ], + [ 7.8595028, 47.4028885 ], + [ 7.8593437999999995, 47.4028111 ], + [ 7.85924, 47.4026959 ], + [ 7.8591774999999995, 47.402681 ], + [ 7.8588105, 47.4025937 ], + [ 7.8584252, 47.4025529 ], + [ 7.8580454, 47.4025305 ], + [ 7.8576903, 47.4025021 ], + [ 7.8571665, 47.4023454 ], + [ 7.8566275, 47.402188699999996 ], + [ 7.8562782, 47.4020244 ], + [ 7.8566859000000004, 47.4018217 ], + [ 7.8571259, 47.4016357 ], + [ 7.8573688, 47.4015888 ], + [ 7.8575227, 47.4014092 ], + [ 7.8574209, 47.4013794 ], + [ 7.8573056999999995, 47.4013805 ], + [ 7.8572308, 47.4013458 ], + [ 7.8571549, 47.4013435 ], + [ 7.8572026, 47.4014266 ], + [ 7.8570607, 47.4015056 ], + [ 7.8569247, 47.4015462 ], + [ 7.856804, 47.4015736 ], + [ 7.8568257, 47.401626 ], + [ 7.856757, 47.4016637 ], + [ 7.8567418, 47.401659 ], + [ 7.8567262, 47.401655 ], + [ 7.8567103, 47.4016516 ], + [ 7.8566941, 47.4016488 ], + [ 7.8566777, 47.4016467 ], + [ 7.8566611, 47.4016452 ], + [ 7.8566445, 47.4016444 ], + [ 7.8566278, 47.4016442 ], + [ 7.8566111, 47.4016447 ], + [ 7.8565945, 47.4016459 ], + [ 7.8565781, 47.4016478 ], + [ 7.8565618, 47.4016502 ], + [ 7.8565457, 47.4016534 ], + [ 7.85653, 47.4016571 ], + [ 7.8562342, 47.4017457 ], + [ 7.8552851, 47.4012826 ], + [ 7.8551292, 47.4014067 ], + [ 7.8548726, 47.401272 ], + [ 7.8547735, 47.4013083 ], + [ 7.8547472, 47.4012903 ], + [ 7.8547313, 47.4012595 ], + [ 7.8545647, 47.4011422 ], + [ 7.8544462, 47.4010799 ], + [ 7.8542938, 47.4009852 ], + [ 7.8543555, 47.4009498 ], + [ 7.8544627, 47.4008282 ], + [ 7.8548823, 47.4008416 ], + [ 7.8549812, 47.4007956 ], + [ 7.8550207, 47.4007911 ], + [ 7.8553771999999995, 47.4008012 ], + [ 7.8557001, 47.4008493 ], + [ 7.8560188, 47.4009331 ], + [ 7.8559924, 47.4008622 ], + [ 7.8560572, 47.4007412 ], + [ 7.856135, 47.4006841 ], + [ 7.8561447, 47.40068 ], + [ 7.8561936, 47.400689 ], + [ 7.8561983, 47.4006823 ], + [ 7.8564157, 47.4007602 ], + [ 7.8567037, 47.4008268 ], + [ 7.856812, 47.4008749 ], + [ 7.8569504, 47.4008959 ], + [ 7.8569764, 47.4008453 ], + [ 7.8567238, 47.4007259 ], + [ 7.8564638, 47.400653 ], + [ 7.8562565, 47.4006012 ], + [ 7.8560267, 47.4005479 ], + [ 7.8558285, 47.4004717 ], + [ 7.8557554, 47.4005158 ], + [ 7.8556572, 47.40052 ], + [ 7.8555121, 47.4004852 ], + [ 7.8553694, 47.4004559 ], + [ 7.855357, 47.4004557 ], + [ 7.8553245, 47.4004251 ], + [ 7.8553067, 47.4004262 ], + [ 7.8552018, 47.4003523 ], + [ 7.8551356, 47.4002811 ], + [ 7.8550256, 47.4000693 ], + [ 7.8545861, 47.4002682 ], + [ 7.8545305, 47.4002454 ], + [ 7.8543724, 47.4003544 ], + [ 7.8543445, 47.4006782 ], + [ 7.8543385, 47.4008487 ], + [ 7.8541761, 47.4010178 ], + [ 7.8540988, 47.4011076 ], + [ 7.8541611, 47.4011613 ], + [ 7.8543046, 47.4012599 ], + [ 7.8543994999999995, 47.4013044 ], + [ 7.8545735, 47.4013852 ], + [ 7.854643, 47.4013871 ], + [ 7.8548086999999995, 47.4015051 ], + [ 7.8549505, 47.4015692 ], + [ 7.8551733, 47.4017503 ], + [ 7.8556608, 47.4020124 ], + [ 7.8557573, 47.4020817 ], + [ 7.8558343, 47.4021368 ], + [ 7.8559146, 47.402193 ], + [ 7.8561002, 47.4022744 ], + [ 7.8556497, 47.4024902 ], + [ 7.8553166, 47.4028209 ], + [ 7.8555662, 47.4030649 ], + [ 7.8557146, 47.4032417 ], + [ 7.8555453, 47.4033964 ], + [ 7.8549065, 47.4029915 ], + [ 7.854761, 47.4030242 ], + [ 7.8548756, 47.4033301 ], + [ 7.8549074999999995, 47.4034373 ], + [ 7.8550223, 47.4039736 ], + [ 7.8550294, 47.404004 ], + [ 7.8550356, 47.4040344 ], + [ 7.855041, 47.4040649 ], + [ 7.8550456, 47.4040955 ], + [ 7.8550494, 47.4041261 ], + [ 7.8550524, 47.4041567 ], + [ 7.8550546, 47.4041874 ], + [ 7.8550559, 47.4042181 ], + [ 7.8550586, 47.4042453 ], + [ 7.8550599, 47.4043235 ], + [ 7.8550517, 47.4043639 ], + [ 7.8550428, 47.4044043 ], + [ 7.8550331, 47.4044446 ], + [ 7.8550225, 47.4044848 ], + [ 7.8550112, 47.4045248 ], + [ 7.854999, 47.4045648 ], + [ 7.8549861, 47.4046047 ], + [ 7.8549724, 47.4046444 ], + [ 7.8549579, 47.404684 ], + [ 7.8549426, 47.4047235 ], + [ 7.8549098, 47.4047906 ], + [ 7.8548764, 47.4048576 ], + [ 7.8548424, 47.4049244 ], + [ 7.8548077, 47.404991 ], + [ 7.8547724, 47.4050575 ], + [ 7.8547536000000004, 47.4050923 ], + [ 7.8547355, 47.4051273 ], + [ 7.854718, 47.4051625 ], + [ 7.8547013, 47.4051978 ], + [ 7.8546854, 47.4052333 ], + [ 7.8546701, 47.4052689 ], + [ 7.8546556, 47.4053047 ], + [ 7.8546418, 47.4053406 ], + [ 7.8545796, 47.4055265 ], + [ 7.8545751, 47.4055386 ], + [ 7.8545697, 47.4055505 ], + [ 7.8545635, 47.4055622 ], + [ 7.8545565, 47.4055737 ], + [ 7.8545487, 47.4055849 ], + [ 7.8545400999999995, 47.4055959 ], + [ 7.8545308, 47.4056067 ], + [ 7.8545207, 47.405617 ], + [ 7.85451, 47.4056271 ], + [ 7.8544961, 47.4056377 ], + [ 7.8544816, 47.4056478 ], + [ 7.8544665, 47.4056575 ], + [ 7.8544507, 47.4056668 ], + [ 7.8544343, 47.4056755 ], + [ 7.8544173, 47.4056837 ], + [ 7.8543999, 47.4056914 ], + [ 7.8543819, 47.4056986 ], + [ 7.8543635, 47.4057052 ], + [ 7.8543297, 47.4057164 ], + [ 7.8542839, 47.4057309 ], + [ 7.8542316, 47.4057475 ], + [ 7.854196, 47.405759 ], + [ 7.8541609, 47.4057709 ], + [ 7.8541452, 47.4057765 ], + [ 7.8546422, 47.4060566 ], + [ 7.8546156, 47.4060854 ], + [ 7.8544778, 47.4063123 ], + [ 7.8545326, 47.4063935 ], + [ 7.8546326, 47.406367 ], + [ 7.8546481, 47.4063935 ], + [ 7.8545831, 47.4064969 ], + [ 7.8546015, 47.4065656 ], + [ 7.8543109, 47.4069254 ], + [ 7.8541098, 47.4070591 ], + [ 7.8540794, 47.4070536 ], + [ 7.8540437, 47.4070471 ], + [ 7.8538201999999995, 47.4071882 ], + [ 7.8535957, 47.4071883 ], + [ 7.8535526, 47.4075466 ], + [ 7.8535846, 47.407558 ], + [ 7.8535587, 47.4076437 ], + [ 7.8534702, 47.4080097 ], + [ 7.853474, 47.4082942 ], + [ 7.8534061, 47.4086656 ], + [ 7.8533528, 47.4089922 ], + [ 7.8534916, 47.4092256 ], + [ 7.8537458, 47.4096015 ], + [ 7.8539255, 47.4097668 ], + [ 7.8548144, 47.4096989 ], + [ 7.8550992, 47.4095158 ], + [ 7.855195, 47.4094645 ], + [ 7.8558173, 47.4093935 ], + [ 7.8562935, 47.4093156 ], + [ 7.8566709, 47.4091667 ], + [ 7.8570063999999995, 47.4089947 ], + [ 7.8572505, 47.4088695 ], + [ 7.857439, 47.4087641 ], + [ 7.857916, 47.4085752 ], + [ 7.8580567, 47.4083312 ], + [ 7.8582174, 47.4079718 ], + [ 7.8582231, 47.4078038 ], + [ 7.858192, 47.4077107 ], + [ 7.8582382, 47.4074971 ], + [ 7.85815, 47.4073943 ], + [ 7.8582474, 47.4073328 ], + [ 7.8583216, 47.4072859 ], + [ 7.8584845, 47.4071852 ], + [ 7.8584420999999995, 47.4069559 ], + [ 7.8583797, 47.4067993 ], + [ 7.8583443, 47.4065469 ], + [ 7.858332, 47.406354 ], + [ 7.8582591, 47.4062903 ], + [ 7.8581573, 47.4062014 ], + [ 7.8580562, 47.4058157 ], + [ 7.8578017, 47.4055206 ], + [ 7.8576262, 47.4053158 ], + [ 7.8574012, 47.4051291 ], + [ 7.8571012, 47.40469 ], + [ 7.8569264, 47.4046699 ], + [ 7.8567834, 47.4045307 ], + [ 7.8566932, 47.404418 ], + [ 7.8566226, 47.4043279 ], + [ 7.8564704, 47.4042176 ], + [ 7.8565685, 47.4041536 ], + [ 7.8567633, 47.4040265 ], + [ 7.8571554, 47.403818 ], + [ 7.8566022, 47.4034942 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns346", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Homberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Homberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Homberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Homberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8865646, 46.3042066 ], + [ 7.8864563, 46.301853 ], + [ 7.8861704, 46.2995066 ], + [ 7.8857078, 46.2971738 ], + [ 7.8850697, 46.2948609 ], + [ 7.884258, 46.2925743 ], + [ 7.8832748, 46.2903203 ], + [ 7.8821228, 46.2881051 ], + [ 7.8808053000000005, 46.2859347 ], + [ 7.8793258999999995, 46.283815 ], + [ 7.8776886, 46.2817519 ], + [ 7.8758979, 46.2797511 ], + [ 7.8739589, 46.2778179 ], + [ 7.8718766, 46.2759576 ], + [ 7.869657, 46.2741755 ], + [ 7.8673061, 46.2724763 ], + [ 7.8648302999999995, 46.2708647 ], + [ 7.8622364000000005, 46.2693451 ], + [ 7.8595315, 46.2679217 ], + [ 7.8567231, 46.2665983 ], + [ 7.8538187, 46.2653786 ], + [ 7.8508264, 46.2642659 ], + [ 7.8477543999999995, 46.2632632 ], + [ 7.8446110000000004, 46.2623734 ], + [ 7.8414049, 46.2615988 ], + [ 7.8381448, 46.2609415 ], + [ 7.8348397, 46.2604034 ], + [ 7.8314985, 46.2599859 ], + [ 7.8281305, 46.2596902 ], + [ 7.8247447999999995, 46.259517 ], + [ 7.8213506, 46.2594669 ], + [ 7.8179573, 46.2595399 ], + [ 7.8145742, 46.259736 ], + [ 7.8112105, 46.2600545 ], + [ 7.8078753, 46.2604945 ], + [ 7.8045779, 46.2610549 ], + [ 7.8013272, 46.2617342 ], + [ 7.7981321, 46.2625304 ], + [ 7.7950014, 46.2634414 ], + [ 7.7919436, 46.2644648 ], + [ 7.7889669999999995, 46.2655976 ], + [ 7.7860799, 46.2668369 ], + [ 7.7832902, 46.2681792 ], + [ 7.7806054, 46.2696208 ], + [ 7.778033, 46.2711579 ], + [ 7.7755799, 46.2727861 ], + [ 7.7732529, 46.2745011 ], + [ 7.7710585, 46.2762982 ], + [ 7.7690025, 46.2781724 ], + [ 7.7670905999999995, 46.2801186 ], + [ 7.7653282, 46.2821315 ], + [ 7.7637199, 46.2842055 ], + [ 7.7622704, 46.2863351 ], + [ 7.7609834, 46.2885143 ], + [ 7.7598627, 46.2907372 ], + [ 7.7589112, 46.2929977 ], + [ 7.7581316000000005, 46.2952897 ], + [ 7.7575261, 46.2976067 ], + [ 7.7570963, 46.2999426 ], + [ 7.7568434, 46.3022908 ], + [ 7.7567682, 46.304645 ], + [ 7.7568709, 46.3069987 ], + [ 7.7571512, 46.3093455 ], + [ 7.7576084, 46.3116789 ], + [ 7.7582413, 46.3139924 ], + [ 7.7590481, 46.3162799 ], + [ 7.7600266, 46.318535 ], + [ 7.7611742, 46.3207515 ], + [ 7.7624877, 46.3229233 ], + [ 7.7639637, 46.3250444 ], + [ 7.7655978999999995, 46.3271092 ], + [ 7.7673860999999995, 46.3291118 ], + [ 7.7693232, 46.3310468 ], + [ 7.771404, 46.332909 ], + [ 7.7736228, 46.334693 ], + [ 7.7759735, 46.3363942 ], + [ 7.7784496999999995, 46.3380077 ], + [ 7.7810445, 46.3395293 ], + [ 7.7837509, 46.3409546 ], + [ 7.7865614, 46.3422798 ], + [ 7.7894684, 46.3435012 ], + [ 7.7924637, 46.3446155 ], + [ 7.7955394, 46.3456197 ], + [ 7.7986867, 46.3465109 ], + [ 7.8018973, 46.3472867 ], + [ 7.8051621, 46.347945 ], + [ 7.8084723, 46.348484 ], + [ 7.8118187, 46.3489022 ], + [ 7.8151922, 46.3491984 ], + [ 7.8185835, 46.3493718 ], + [ 7.8219832, 46.349422 ], + [ 7.8253821, 46.3493489 ], + [ 7.8287708, 46.3491525 ], + [ 7.8321399, 46.3488335 ], + [ 7.8354803, 46.3483927 ], + [ 7.8387827, 46.3478314 ], + [ 7.8420381, 46.3471511 ], + [ 7.8452376, 46.3463536 ], + [ 7.8483722, 46.3454412 ], + [ 7.8514335, 46.3444163 ], + [ 7.8544131, 46.3432818 ], + [ 7.8573027, 46.3420408 ], + [ 7.8600943999999995, 46.3406967 ], + [ 7.8627806, 46.3392532 ], + [ 7.8653538, 46.3377142 ], + [ 7.8678071, 46.336084 ], + [ 7.8701337, 46.334367 ], + [ 7.8723273, 46.3325681 ], + [ 7.8743818, 46.330692 ], + [ 7.8762916, 46.328744 ], + [ 7.8780514, 46.3267293 ], + [ 7.8796565, 46.3246537 ], + [ 7.8811025, 46.3225226 ], + [ 7.8823855, 46.320342 ], + [ 7.8835018, 46.3181179 ], + [ 7.8844484999999995, 46.3158563 ], + [ 7.8852231, 46.3135635 ], + [ 7.8858234, 46.3112458 ], + [ 7.8862477, 46.3089094 ], + [ 7.886495, 46.3065609 ], + [ 7.8865646, 46.3042066 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSTA001", + "country" : "CHE", + "name" : [ + { + "text" : "LSTA Raron", + "lang" : "de-CH" + }, + { + "text" : "LSTA Raron", + "lang" : "fr-CH" + }, + { + "text" : "LSTA Raron", + "lang" : "it-CH" + }, + { + "text" : "LSTA Raron", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Flugplatz Raron", + "lang" : "de-CH" + }, + { + "text" : "Flugplatz Raron", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatz Raron", + "lang" : "it-CH" + }, + { + "text" : "Flugplatz Raron", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Lisa Best", + "lang" : "de-CH" + }, + { + "text" : "Lisa Best", + "lang" : "fr-CH" + }, + { + "text" : "Lisa Best", + "lang" : "it-CH" + }, + { + "text" : "Lisa Best", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.fgo.ch", + "email" : "info@fgo.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 10.3363557, 46.8050195 ], + [ 10.3363427, 46.8048785 ], + [ 10.336319, 46.8047382 ], + [ 10.3362847, 46.8045989 ], + [ 10.3362397, 46.804461 ], + [ 10.3361843, 46.804325 ], + [ 10.3361186, 46.8041911 ], + [ 10.3360428, 46.8040597 ], + [ 10.3359571, 46.8039313 ], + [ 10.3358618, 46.8038061 ], + [ 10.335757, 46.8036845 ], + [ 10.3356431, 46.8035669 ], + [ 10.3355203, 46.8034535 ], + [ 10.3353891, 46.8033446 ], + [ 10.3352498, 46.8032406 ], + [ 10.3351028, 46.8031418 ], + [ 10.3349484, 46.8030484 ], + [ 10.3347871, 46.8029607 ], + [ 10.3346194, 46.8028789 ], + [ 10.3344456, 46.8028032 ], + [ 10.3342664, 46.8027339 ], + [ 10.334082, 46.8026711 ], + [ 10.3338932, 46.802615 ], + [ 10.3337003, 46.802565799999996 ], + [ 10.333504, 46.8025236 ], + [ 10.3333047, 46.8024885 ], + [ 10.333103, 46.8024606 ], + [ 10.3328994, 46.80244 ], + [ 10.3326946, 46.8024267 ], + [ 10.332489, 46.8024208 ], + [ 10.3322833, 46.8024224 ], + [ 10.3320779, 46.8024313 ], + [ 10.3318736, 46.8024475 ], + [ 10.3316707, 46.8024711 ], + [ 10.3314699, 46.802502 ], + [ 10.3312718, 46.80254 ], + [ 10.3310768, 46.8025851 ], + [ 10.3308855, 46.8026371 ], + [ 10.3306984, 46.802696 ], + [ 10.3305161, 46.8027615 ], + [ 10.330339, 46.8028334 ], + [ 10.3301677, 46.8029116 ], + [ 10.330002499999999, 46.8029959 ], + [ 10.329844, 46.803086 ], + [ 10.3296926, 46.8031816 ], + [ 10.3295487, 46.8032826 ], + [ 10.3294127, 46.8033886 ], + [ 10.3292849, 46.8034993 ], + [ 10.3291657, 46.8036145 ], + [ 10.3290555, 46.8037338 ], + [ 10.3289545, 46.8038569 ], + [ 10.3288631, 46.8039835 ], + [ 10.3287814, 46.8041131 ], + [ 10.3287097, 46.8042456 ], + [ 10.3286482, 46.8043804 ], + [ 10.3285971, 46.8045172 ], + [ 10.3285565, 46.8046557 ], + [ 10.3285264, 46.8047955 ], + [ 10.3285071, 46.8049362 ], + [ 10.3284985, 46.8050773 ], + [ 10.3285007, 46.8052186 ], + [ 10.3285137, 46.8053596 ], + [ 10.3285374, 46.8055 ], + [ 10.3285717, 46.8056393 ], + [ 10.3286167, 46.8057771 ], + [ 10.328672, 46.8059132 ], + [ 10.3287377, 46.8060471 ], + [ 10.3288135, 46.8061784 ], + [ 10.3288992, 46.8063069 ], + [ 10.3289945, 46.8064321 ], + [ 10.3290993, 46.8065537 ], + [ 10.3292132, 46.8066713 ], + [ 10.3293359, 46.8067848 ], + [ 10.3294671, 46.8068936 ], + [ 10.3296064, 46.8069976 ], + [ 10.3297535, 46.8070964 ], + [ 10.3299079, 46.8071898 ], + [ 10.3300691, 46.8072776 ], + [ 10.3302369, 46.8073594 ], + [ 10.3304106, 46.807435 ], + [ 10.3305899, 46.8075044 ], + [ 10.3307743, 46.8075672 ], + [ 10.3309631, 46.8076233 ], + [ 10.331156, 46.8076725 ], + [ 10.3313524, 46.8077147 ], + [ 10.3315517, 46.8077498 ], + [ 10.3317534, 46.8077777 ], + [ 10.331957, 46.8077983 ], + [ 10.3321618, 46.8078116 ], + [ 10.3323674, 46.8078174 ], + [ 10.3325732, 46.8078159 ], + [ 10.3327786, 46.807807 ], + [ 10.332983, 46.8077908 ], + [ 10.3331858, 46.8077672 ], + [ 10.3333866, 46.8077363 ], + [ 10.3335848, 46.8076983 ], + [ 10.3337798, 46.8076532 ], + [ 10.3339711, 46.8076011 ], + [ 10.3341582, 46.8075423 ], + [ 10.3343405, 46.8074768 ], + [ 10.3345176, 46.8074048 ], + [ 10.334689, 46.8073266 ], + [ 10.3348541, 46.8072424 ], + [ 10.3350126, 46.8071523 ], + [ 10.335164, 46.8070566 ], + [ 10.335308, 46.8069556 ], + [ 10.335444, 46.8068496 ], + [ 10.3355718, 46.8067389 ], + [ 10.3356909, 46.8066237 ], + [ 10.3358011, 46.8065044 ], + [ 10.3359021, 46.8063813 ], + [ 10.3359935, 46.8062547 ], + [ 10.3360752, 46.806125 ], + [ 10.3361469, 46.8059926 ], + [ 10.3362083, 46.8058578 ], + [ 10.3362595, 46.8057209 ], + [ 10.3363001, 46.8055824 ], + [ 10.3363301, 46.8054426 ], + [ 10.3363494, 46.805302 ], + [ 10.3363579, 46.8051608 ], + [ 10.3363557, 46.8050195 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0090", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Pradella", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Pradella", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Pradella", + "lang" : "it-CH" + }, + { + "text" : "Substation Pradella", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.2388574, 46.7021113 ], + [ 8.2388499, 46.7019702 ], + [ 8.2388317, 46.7018294 ], + [ 8.2388029, 46.7016896 ], + [ 8.2387634, 46.7015509 ], + [ 8.2387134, 46.7014139 ], + [ 8.2386531, 46.7012788 ], + [ 8.2385825, 46.7011461 ], + [ 8.238502, 46.7010161 ], + [ 8.2384117, 46.7008893 ], + [ 8.2383119, 46.7007658 ], + [ 8.2382028, 46.7006461 ], + [ 8.2380848, 46.7005305 ], + [ 8.2379581, 46.7004193 ], + [ 8.2378232, 46.7003128 ], + [ 8.2376803, 46.7002113 ], + [ 8.2375299, 46.7001151 ], + [ 8.2373724, 46.7000244 ], + [ 8.2372082, 46.6999395 ], + [ 8.2370378, 46.6998607 ], + [ 8.2368616, 46.6997881 ], + [ 8.2366802, 46.699722 ], + [ 8.2364939, 46.6996624 ], + [ 8.2363034, 46.6996097 ], + [ 8.2361092, 46.6995639 ], + [ 8.2359117, 46.6995251 ], + [ 8.2357115, 46.6994936 ], + [ 8.2355092, 46.6994692 ], + [ 8.2353054, 46.6994522 ], + [ 8.2351005, 46.6994425 ], + [ 8.2348952, 46.6994403 ], + [ 8.2346899, 46.6994454 ], + [ 8.2344854, 46.6994579 ], + [ 8.2342821, 46.6994778 ], + [ 8.2340805, 46.6995049 ], + [ 8.2338814, 46.6995393 ], + [ 8.2336851, 46.6995808 ], + [ 8.2334922, 46.6996293 ], + [ 8.2333033, 46.6996847 ], + [ 8.2331188, 46.6997468 ], + [ 8.2329394, 46.6998155 ], + [ 8.2327654, 46.6998905 ], + [ 8.2325973, 46.6999717 ], + [ 8.2324357, 46.7000589 ], + [ 8.2322809, 46.7001517 ], + [ 8.2321333, 46.70025 ], + [ 8.2319935, 46.7003534 ], + [ 8.2318617, 46.7004618 ], + [ 8.2317383, 46.7005747 ], + [ 8.2316237, 46.700692 ], + [ 8.2315182, 46.7008132 ], + [ 8.231422, 46.700938 ], + [ 8.2313355, 46.7010662 ], + [ 8.231258799999999, 46.7011972 ], + [ 8.2311922, 46.7013309 ], + [ 8.2311359, 46.7014667 ], + [ 8.23109, 46.7016044 ], + [ 8.2310546, 46.7017436 ], + [ 8.2310299, 46.7018839 ], + [ 8.2310158, 46.7020248 ], + [ 8.2310125, 46.7021661 ], + [ 8.231020000000001, 46.7023073 ], + [ 8.2310381, 46.702448 ], + [ 8.231067, 46.7025879 ], + [ 8.2311065, 46.7027266 ], + [ 8.2311564, 46.7028636 ], + [ 8.2312167, 46.7029986 ], + [ 8.2312872, 46.7031313 ], + [ 8.2313677, 46.7032613 ], + [ 8.231458, 46.7033882 ], + [ 8.2315578, 46.7035117 ], + [ 8.2316669, 46.7036314 ], + [ 8.2317849, 46.703747 ], + [ 8.2319116, 46.7038582 ], + [ 8.2320465, 46.7039647 ], + [ 8.2321894, 46.7040662 ], + [ 8.2323398, 46.7041625 ], + [ 8.2324973, 46.7042531 ], + [ 8.2326615, 46.704338 ], + [ 8.2328319, 46.7044168 ], + [ 8.2330081, 46.7044894 ], + [ 8.2331896, 46.7045556 ], + [ 8.2333758, 46.7046151 ], + [ 8.2335664, 46.7046679 ], + [ 8.2337606, 46.7047137 ], + [ 8.2339581, 46.7047524 ], + [ 8.2341583, 46.704784 ], + [ 8.2343606, 46.7048084 ], + [ 8.2345645, 46.7048254 ], + [ 8.2347694, 46.704835 ], + [ 8.2349748, 46.7048373 ], + [ 8.23518, 46.7048322 ], + [ 8.2353846, 46.7048197 ], + [ 8.2355879, 46.7047998 ], + [ 8.2357895, 46.7047726 ], + [ 8.2359887, 46.7047383 ], + [ 8.236185, 46.7046968 ], + [ 8.2363778, 46.7046482 ], + [ 8.2365668, 46.7045929 ], + [ 8.2367512, 46.7045307 ], + [ 8.2369307, 46.7044621 ], + [ 8.2371047, 46.704387 ], + [ 8.2372728, 46.7043058 ], + [ 8.237434499999999, 46.7042187 ], + [ 8.2375893, 46.7041258 ], + [ 8.2377368, 46.7040275 ], + [ 8.2378766, 46.7039241 ], + [ 8.2380084, 46.7038157 ], + [ 8.2381318, 46.7037027 ], + [ 8.2382464, 46.7035855 ], + [ 8.2383519, 46.7034643 ], + [ 8.238448, 46.7033394 ], + [ 8.2385346, 46.7032113 ], + [ 8.2386112, 46.7030802 ], + [ 8.2386778, 46.7029466 ], + [ 8.2387341, 46.7028107 ], + [ 8.23878, 46.702673 ], + [ 8.2388154, 46.7025338 ], + [ 8.2388401, 46.7023936 ], + [ 8.2388541, 46.7022526 ], + [ 8.2388574, 46.7021113 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0056", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Innertkirchen", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Innertkirchen", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Innertkirchen", + "lang" : "it-CH" + }, + { + "text" : "Substation Innertkirchen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.0741435, 47.0446324 ], + [ 7.0741391, 47.0444911 ], + [ 7.0741238, 47.0443503 ], + [ 7.0740978, 47.0442101 ], + [ 7.0740611, 47.0440711 ], + [ 7.0740138, 47.0439335 ], + [ 7.073956, 47.0437979 ], + [ 7.0738879, 47.0436645 ], + [ 7.0738097, 47.0435337 ], + [ 7.0737216, 47.0434059 ], + [ 7.0736239, 47.0432814 ], + [ 7.0735167, 47.0431606 ], + [ 7.0734004, 47.0430438 ], + [ 7.0732754, 47.0429313 ], + [ 7.0731419, 47.0428235 ], + [ 7.0730003, 47.0427206 ], + [ 7.0728511, 47.0426228 ], + [ 7.0726946, 47.0425306 ], + [ 7.0725312, 47.042444 ], + [ 7.0723614, 47.0423635 ], + [ 7.0721857, 47.0422891 ], + [ 7.0720045, 47.0422211 ], + [ 7.0718184, 47.0421597 ], + [ 7.0716279, 47.042105 ], + [ 7.0714334, 47.0420572 ], + [ 7.0712355, 47.0420165 ], + [ 7.0710347, 47.0419828 ], + [ 7.0708317, 47.0419565 ], + [ 7.0706269, 47.0419374 ], + [ 7.070421, 47.0419256 ], + [ 7.0702144, 47.0419213 ], + [ 7.0700078, 47.0419243 ], + [ 7.0698017, 47.0419347 ], + [ 7.0695966, 47.0419525 ], + [ 7.0693933, 47.0419776 ], + [ 7.0691921, 47.0420099 ], + [ 7.0689936, 47.0420494 ], + [ 7.0687985, 47.042096 ], + [ 7.0686072, 47.0421494 ], + [ 7.0684202, 47.0422096 ], + [ 7.0682381, 47.0422765 ], + [ 7.0680614, 47.0423497 ], + [ 7.0678905, 47.0424292 ], + [ 7.067726, 47.0425146 ], + [ 7.0675682, 47.0426059 ], + [ 7.0674176, 47.0427027 ], + [ 7.0672746, 47.0428047 ], + [ 7.0671397, 47.0429117 ], + [ 7.0670131, 47.0430233 ], + [ 7.0668952, 47.0431394 ], + [ 7.0667864, 47.0432595 ], + [ 7.0666869, 47.0433833 ], + [ 7.0665971, 47.0435106 ], + [ 7.0665171, 47.0436408 ], + [ 7.0664472, 47.0437738 ], + [ 7.0663875, 47.0439091 ], + [ 7.0663383, 47.0440463 ], + [ 7.0662997, 47.0441851 ], + [ 7.0662717, 47.0443251 ], + [ 7.0662545, 47.0444659 ], + [ 7.0662481, 47.0446071 ], + [ 7.0662525, 47.0447483 ], + [ 7.0662678, 47.0448892 ], + [ 7.0662937, 47.0450294 ], + [ 7.0663304, 47.0451684 ], + [ 7.0663777, 47.045306 ], + [ 7.0664354, 47.0454416 ], + [ 7.0665035, 47.045575 ], + [ 7.0665817, 47.0457058 ], + [ 7.0666698, 47.0458336 ], + [ 7.0667675, 47.0459581 ], + [ 7.0668747, 47.0460789 ], + [ 7.0669909, 47.0461957 ], + [ 7.067116, 47.0463082 ], + [ 7.0672495, 47.0464161 ], + [ 7.067391, 47.046519 ], + [ 7.0675403, 47.0466167 ], + [ 7.0676968, 47.046709 ], + [ 7.0678602, 47.0467955 ], + [ 7.0680299, 47.0468761 ], + [ 7.0682057, 47.0469505 ], + [ 7.0683868, 47.0470185 ], + [ 7.068573, 47.0470799 ], + [ 7.0687636, 47.0471346 ], + [ 7.0689581, 47.0471824 ], + [ 7.0691559999999996, 47.0472231 ], + [ 7.0693567, 47.0472568 ], + [ 7.0695598, 47.0472832 ], + [ 7.0697646, 47.0473023 ], + [ 7.0699705, 47.047314 ], + [ 7.0701771, 47.0473184 ], + [ 7.0703838, 47.0473153 ], + [ 7.0705899, 47.0473049 ], + [ 7.070795, 47.0472871 ], + [ 7.0709984, 47.047262 ], + [ 7.0711996, 47.0472297 ], + [ 7.071398, 47.0471902 ], + [ 7.0715932, 47.0471437 ], + [ 7.0717845, 47.0470902 ], + [ 7.0719715, 47.04703 ], + [ 7.0721536, 47.0469631 ], + [ 7.0723303, 47.0468899 ], + [ 7.0725012, 47.0468104 ], + [ 7.0726658, 47.0467249 ], + [ 7.0728236, 47.0466337 ], + [ 7.0729742, 47.0465369 ], + [ 7.0731171, 47.0464349 ], + [ 7.0732521, 47.0463279 ], + [ 7.0733787, 47.0462162 ], + [ 7.0734966, 47.0461001 ], + [ 7.0736054, 47.04598 ], + [ 7.0737049, 47.0458561 ], + [ 7.0737947, 47.0457289 ], + [ 7.0738747, 47.0455986 ], + [ 7.0739446, 47.0454657 ], + [ 7.0740042, 47.0453304 ], + [ 7.0740534, 47.0451932 ], + [ 7.074092, 47.0450544 ], + [ 7.07412, 47.0449144 ], + [ 7.0741371, 47.0447736 ], + [ 7.0741435, 47.0446324 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "STJ0001", + "country" : "CHE", + "name" : [ + { + "text" : "MZ St-Johannsen", + "lang" : "de-CH" + }, + { + "text" : "MZ St-Johannsen", + "lang" : "fr-CH" + }, + { + "text" : "MZ St-Johannsen", + "lang" : "it-CH" + }, + { + "text" : "MZ St-Johannsen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "MZ St-Johannsen", + "lang" : "de-CH" + }, + { + "text" : "MZ St-Johannsen", + "lang" : "fr-CH" + }, + { + "text" : "MZ St-Johannsen", + "lang" : "it-CH" + }, + { + "text" : "MZ St-Johannsen", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Bereichsleitung Ressourcen", + "lang" : "de-CH" + }, + { + "text" : "Bereichsleitung Ressourcen", + "lang" : "fr-CH" + }, + { + "text" : "Bereichsleitung Ressourcen", + "lang" : "it-CH" + }, + { + "text" : "Bereichsleitung Ressourcen", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Gabriel Flück", + "lang" : "de-CH" + }, + { + "text" : "Gabriel Flück", + "lang" : "fr-CH" + }, + { + "text" : "Gabriel Flück", + "lang" : "it-CH" + }, + { + "text" : "Gabriel Flück", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ajv.sid.be.ch/de/start/themen/erwachsenen--und-jugendvollzug/massnahmenzentrum-st-johannsen.html", + "email" : "st-johannsen@be.ch", + "phone" : "0041316356611", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 5.9913786, 46.1942125 ], + [ 5.9913907, 46.1942595 ], + [ 5.9911545, 46.1950112 ], + [ 5.9914228, 46.1960476 ], + [ 5.9922418, 46.1969337 ], + [ 5.9934869, 46.1975348 ], + [ 5.9949684, 46.1977592 ], + [ 5.9949887, 46.1977567 ], + [ 5.9950033, 46.1979752 ], + [ 5.9951487, 46.1982431 ], + [ 5.9950548999999995, 46.1985777 ], + [ 5.9952113, 46.1994287 ], + [ 5.9952335, 46.199481 ], + [ 5.9959229, 46.2004006 ], + [ 5.9970607, 46.2010719 ], + [ 5.998479, 46.2013958 ], + [ 5.9999686, 46.2013245 ], + [ 6.0000377, 46.2013116 ], + [ 6.0013955, 46.2008466 ], + [ 6.0023944, 46.2000567 ], + [ 6.0028828, 46.1990617 ], + [ 6.0027867, 46.1980127 ], + [ 6.0027666, 46.19796 ], + [ 6.0026941, 46.1978463 ], + [ 6.0027451, 46.1977348 ], + [ 6.0027536, 46.1976816 ], + [ 6.0026974, 46.1968376 ], + [ 6.0022681, 46.1960471 ], + [ 6.0015079, 46.1953875 ], + [ 6.0004912, 46.1949234 ], + [ 5.9993178, 46.1947004 ], + [ 5.9992446, 46.1946947 ], + [ 5.999043, 46.1947068 ], + [ 5.9992280000000004, 46.1941179 ], + [ 5.9989595, 46.1930816 ], + [ 5.9981405, 46.1921954 ], + [ 5.9978868, 46.192073 ], + [ 5.9985655, 46.1921758 ], + [ 6.0000578, 46.1919894 ], + [ 6.0013337, 46.1914205 ], + [ 6.0017129, 46.1910416 ], + [ 6.0028112, 46.1905519 ], + [ 6.0036765, 46.1896873 ], + [ 6.0039994, 46.1886585 ], + [ 6.0037309, 46.1876222 ], + [ 6.0029119, 46.1867361 ], + [ 6.001667, 46.1861351 ], + [ 6.0001858, 46.1859108 ], + [ 5.9986937, 46.1860972 ], + [ 5.9979182, 46.1864429 ], + [ 5.9967633, 46.1865872 ], + [ 5.9954874, 46.187156 ], + [ 5.9946221, 46.1880206 ], + [ 5.9942989, 46.1890494 ], + [ 5.9945673, 46.1900857 ], + [ 5.9953862, 46.1909718 ], + [ 5.9955724, 46.1910617 ], + [ 5.9958392, 46.1913504 ], + [ 5.9960929, 46.1914729 ], + [ 5.9954142, 46.19137 ], + [ 5.9939219, 46.1915564 ], + [ 5.9926459, 46.1921251 ], + [ 5.9917804, 46.1929897 ], + [ 5.9917275, 46.1931581 ], + [ 5.9917017999999995, 46.1931838 ], + [ 5.9913786, 46.1942125 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-17", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5074453, 47.3910242 ], + [ 7.5089176, 47.3906936 ], + [ 7.5089268, 47.3906914 ], + [ 7.5088752, 47.3906362 ], + [ 7.508769, 47.3904592 ], + [ 7.5086408, 47.3901645 ], + [ 7.5087062, 47.3900274 ], + [ 7.5088556, 47.3898103 ], + [ 7.5090572, 47.389608 ], + [ 7.5093647, 47.3893588 ], + [ 7.509459, 47.3892697 ], + [ 7.5098827, 47.3889331 ], + [ 7.5095992, 47.3887751 ], + [ 7.5089892, 47.3884353 ], + [ 7.5087463, 47.3882999 ], + [ 7.5080839, 47.3888537 ], + [ 7.5082064, 47.3890766 ], + [ 7.5083059, 47.3894058 ], + [ 7.5083053, 47.3895575 ], + [ 7.5081589, 47.3895495 ], + [ 7.5078494, 47.3895199 ], + [ 7.507727, 47.3895499 ], + [ 7.5076501, 47.3896524 ], + [ 7.5075668, 47.3896956 ], + [ 7.5072531, 47.3897002 ], + [ 7.5069617, 47.3897534 ], + [ 7.5067452, 47.3898366 ], + [ 7.5067283, 47.3899113 ], + [ 7.5066591, 47.3899716 ], + [ 7.506508, 47.3900487 ], + [ 7.5064173, 47.3901002 ], + [ 7.506383, 47.3901503 ], + [ 7.5063661, 47.3902066 ], + [ 7.5063689, 47.3902604 ], + [ 7.5063851, 47.3903056 ], + [ 7.5064095, 47.3903378 ], + [ 7.5064478999999995, 47.3903625 ], + [ 7.5065194, 47.3903944 ], + [ 7.5067245, 47.3904911 ], + [ 7.5068038999999995, 47.3905318 ], + [ 7.5068602, 47.3905717 ], + [ 7.5069094, 47.390613 ], + [ 7.5069071, 47.3905916 ], + [ 7.5069355, 47.3906092 ], + [ 7.5071072999999995, 47.3905858 ], + [ 7.5072887999999995, 47.3906592 ], + [ 7.5073917, 47.390791899999996 ], + [ 7.5074171, 47.3909372 ], + [ 7.5074453, 47.3910242 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns214", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Stürmen - Eggfels - Bännli", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Stürmen - Eggfels - Bännli", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Stürmen - Eggfels - Bännli", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Stürmen - Eggfels - Bännli", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.1078876, 47.0452793 ], + [ 7.1073858, 47.0445079 ], + [ 7.1029231, 47.046335 ], + [ 7.1026058, 47.0464437 ], + [ 7.1005319, 47.0471539 ], + [ 7.1003819, 47.0472053 ], + [ 7.09969, 47.0477514 ], + [ 7.0992906, 47.0486134 ], + [ 7.0988216, 47.0488841 ], + [ 7.0985551, 47.04915 ], + [ 7.0956862, 47.0519418 ], + [ 7.0954574, 47.0523453 ], + [ 7.0962556, 47.0525564 ], + [ 7.099258, 47.053335 ], + [ 7.1007433, 47.0540383 ], + [ 7.1018301, 47.0546697 ], + [ 7.1027896, 47.0551318 ], + [ 7.1047353, 47.0557627 ], + [ 7.1063088, 47.0564617 ], + [ 7.1072102, 47.057024 ], + [ 7.108367, 47.0576685 ], + [ 7.1116018, 47.059005 ], + [ 7.1125143, 47.059506 ], + [ 7.1150577, 47.0609259 ], + [ 7.1166171, 47.0615498 ], + [ 7.1178948, 47.0619548 ], + [ 7.1203704, 47.0629314 ], + [ 7.1233133, 47.0643356 ], + [ 7.1241508, 47.064757 ], + [ 7.1253471, 47.0656147 ], + [ 7.1261617, 47.0664384 ], + [ 7.1272005, 47.0677756 ], + [ 7.1287795, 47.0698986 ], + [ 7.130517, 47.071533 ], + [ 7.1315779, 47.0720794 ], + [ 7.1324682, 47.0726647 ], + [ 7.1328996, 47.0732064 ], + [ 7.1340287, 47.075069 ], + [ 7.1357866, 47.0772205 ], + [ 7.1371672, 47.0783099 ], + [ 7.1376863, 47.0786258 ], + [ 7.1386309, 47.0791114 ], + [ 7.1395446, 47.0793694 ], + [ 7.1417304, 47.0798222 ], + [ 7.143687, 47.0800658 ], + [ 7.1482595, 47.0808509 ], + [ 7.1499082, 47.0812739 ], + [ 7.1536581, 47.0821768 ], + [ 7.1560948, 47.0825395 ], + [ 7.1567848, 47.0824931 ], + [ 7.1574648, 47.0821412 ], + [ 7.1578254, 47.0814843 ], + [ 7.1579279, 47.0807778 ], + [ 7.1578641, 47.0800832 ], + [ 7.1582324, 47.0792116 ], + [ 7.1581089, 47.0778048 ], + [ 7.1578792, 47.0771961 ], + [ 7.1576796, 47.0766466 ], + [ 7.1566305, 47.0747416 ], + [ 7.1561055, 47.0739599 ], + [ 7.1553945, 47.0731821 ], + [ 7.1542208, 47.0719883 ], + [ 7.1525575, 47.0709733 ], + [ 7.1510951, 47.0699237 ], + [ 7.1497042, 47.0687686 ], + [ 7.1465329, 47.0668193 ], + [ 7.1439558, 47.0653466 ], + [ 7.1424897, 47.063993 ], + [ 7.1420354, 47.0637335 ], + [ 7.1409681, 47.0630226 ], + [ 7.1396056, 47.0616968 ], + [ 7.1393889999999995, 47.0613131 ], + [ 7.1383654, 47.0601619 ], + [ 7.1373898, 47.0589646 ], + [ 7.136696, 47.0584322 ], + [ 7.1348814, 47.0576693 ], + [ 7.1339752, 47.0571782 ], + [ 7.132436, 47.0564517 ], + [ 7.131456, 47.0557861 ], + [ 7.1301029, 47.0553363 ], + [ 7.1288708, 47.0547351 ], + [ 7.12761, 47.0539875 ], + [ 7.1265945, 47.0536231 ], + [ 7.1237776, 47.0521444 ], + [ 7.1231771, 47.0518686 ], + [ 7.1213632, 47.0513357 ], + [ 7.1194741, 47.0504555 ], + [ 7.1182248, 47.0500107 ], + [ 7.1163259, 47.0492788 ], + [ 7.1146936, 47.0487947 ], + [ 7.1127818, 47.0478926 ], + [ 7.1117301, 47.0473182 ], + [ 7.109116, 47.0462818 ], + [ 7.108607, 47.0459877 ], + [ 7.1078876, 47.0452793 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "WZV0015", + "country" : "CHE", + "name" : [ + { + "text" : "Wasser- und Zugvogelreservat Hagneckdelta und St. Petersinsel", + "lang" : "de-CH" + }, + { + "text" : "Réserve d'oiseaux d'eau et de migrateurs Hagneckdelta und St. Petersinsel", + "lang" : "fr-CH" + }, + { + "text" : "Riserva di uccelli acquatici e migratori Hagneckdelta und St. Petersinsel", + "lang" : "it-CH" + }, + { + "text" : "Water Bird and Migratory Bird Reserves Hagneckdelta und St. Petersinsel", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8164288, 47.3961759 ], + [ 7.8165161, 47.3962028 ], + [ 7.8166126, 47.3962511 ], + [ 7.8167226, 47.3963015 ], + [ 7.8168538, 47.396327 ], + [ 7.8169096, 47.3963333 ], + [ 7.8169535, 47.3963536 ], + [ 7.8170681, 47.3964526 ], + [ 7.8172027, 47.3964742 ], + [ 7.817303, 47.396523 ], + [ 7.8173252, 47.3965029 ], + [ 7.8176181, 47.3962482 ], + [ 7.8176341, 47.3964217 ], + [ 7.8176615, 47.3964627 ], + [ 7.8177705, 47.3964513 ], + [ 7.8177159, 47.3962983 ], + [ 7.8179074, 47.3963046 ], + [ 7.8181055, 47.3964821 ], + [ 7.8183826, 47.396582 ], + [ 7.8184578, 47.3967591 ], + [ 7.8185322, 47.396747 ], + [ 7.822797, 47.3960537 ], + [ 7.8233208, 47.3959732 ], + [ 7.8233568, 47.395946 ], + [ 7.8233789, 47.3958279 ], + [ 7.8234024, 47.3956555 ], + [ 7.8233872, 47.3955942 ], + [ 7.8232739, 47.3955072 ], + [ 7.8232454, 47.3954554 ], + [ 7.8232468, 47.3954163 ], + [ 7.8233683, 47.3953415 ], + [ 7.8233866, 47.3953015 ], + [ 7.8233656, 47.3952594 ], + [ 7.8233889, 47.3951789 ], + [ 7.8234418, 47.3951162 ], + [ 7.8235697, 47.3950305 ], + [ 7.8236827, 47.3949668 ], + [ 7.823938, 47.3949537 ], + [ 7.8239411, 47.394911 ], + [ 7.8238874, 47.3946526 ], + [ 7.8238753, 47.3942879 ], + [ 7.8238588, 47.3941909 ], + [ 7.8238087, 47.3943086 ], + [ 7.8237198, 47.3944016 ], + [ 7.8235764, 47.394371 ], + [ 7.8234753, 47.3943116 ], + [ 7.8234009, 47.3943102 ], + [ 7.8233424, 47.3943495 ], + [ 7.8232539, 47.3944074 ], + [ 7.8231756, 47.3944637 ], + [ 7.8228873, 47.3947215 ], + [ 7.8225878, 47.394813 ], + [ 7.8224956, 47.394853 ], + [ 7.8224257999999995, 47.3949096 ], + [ 7.8223955, 47.3949903 ], + [ 7.8223606, 47.395118 ], + [ 7.8223014, 47.3952035 ], + [ 7.8221665, 47.3952973 ], + [ 7.8221454, 47.3953135 ], + [ 7.8220092, 47.3953957 ], + [ 7.8219801, 47.3954124 ], + [ 7.8218407, 47.3955124 ], + [ 7.8217823, 47.3955589 ], + [ 7.82172, 47.3956489 ], + [ 7.8216190999999995, 47.3957446 ], + [ 7.821534, 47.3957739 ], + [ 7.8212706999999995, 47.3957756 ], + [ 7.8211394, 47.3957799 ], + [ 7.8209475, 47.3957903 ], + [ 7.8206997, 47.3958172 ], + [ 7.8204218, 47.3958257 ], + [ 7.8201073999999995, 47.3958669 ], + [ 7.8200285, 47.3958772 ], + [ 7.8198606, 47.3959175 ], + [ 7.8196712999999995, 47.3959781 ], + [ 7.8193853, 47.3960193 ], + [ 7.8190355, 47.3960333 ], + [ 7.8189316, 47.3960373 ], + [ 7.8186511, 47.3960197 ], + [ 7.8184628, 47.3959722 ], + [ 7.8182993, 47.3959205 ], + [ 7.8180823, 47.3958329 ], + [ 7.8181416, 47.3956353 ], + [ 7.8181312, 47.3956053 ], + [ 7.8180867, 47.3955777 ], + [ 7.8178391, 47.3954779 ], + [ 7.8177306, 47.3954322 ], + [ 7.8169093, 47.395916 ], + [ 7.8167039, 47.3960402 ], + [ 7.8165054, 47.3961612 ], + [ 7.8164288, 47.3961759 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns228", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Wasserfalle - Roti Flue", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Wasserfalle - Roti Flue", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Wasserfalle - Roti Flue", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Wasserfalle - Roti Flue", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5502259, 47.2074147 ], + [ 7.5500869999999995, 47.207278 ], + [ 7.549911, 47.2071235 ], + [ 7.5498035, 47.20703 ], + [ 7.5496581, 47.2069177 ], + [ 7.5495251, 47.2068423 ], + [ 7.5493831, 47.2067759 ], + [ 7.5492279, 47.2067149 ], + [ 7.5489736, 47.2066387 ], + [ 7.5488061, 47.2065894 ], + [ 7.5486211999999995, 47.2065517 ], + [ 7.5483943, 47.206516 ], + [ 7.5482474, 47.2064991 ], + [ 7.5480601, 47.2064813 ], + [ 7.5478777, 47.2064562 ], + [ 7.5476004, 47.2063979 ], + [ 7.5474527, 47.2063684 ], + [ 7.5473331, 47.2063542 ], + [ 7.5472505, 47.2063435 ], + [ 7.5470921, 47.2063338 ], + [ 7.5469172, 47.2063258 ], + [ 7.5466929, 47.2063323 ], + [ 7.5465089, 47.2063478 ], + [ 7.5463167, 47.2063615 ], + [ 7.5457319, 47.2063827 ], + [ 7.5450505, 47.2063932 ], + [ 7.5447734, 47.2064051 ], + [ 7.5445845, 47.2064216 ], + [ 7.5441754, 47.2064516 ], + [ 7.5438297, 47.2064644 ], + [ 7.543513, 47.2064647 ], + [ 7.5431986, 47.2064435 ], + [ 7.5425625, 47.2063829 ], + [ 7.5423669, 47.2063633 ], + [ 7.5420633, 47.2063626 ], + [ 7.5419775, 47.2063537 ], + [ 7.5416202, 47.2063073 ], + [ 7.5413809, 47.2062732 ], + [ 7.5411037, 47.2062277 ], + [ 7.5410269, 47.2061918 ], + [ 7.5409608, 47.2061757 ], + [ 7.5408460999999996, 47.2061596 ], + [ 7.5404657, 47.2061041 ], + [ 7.5402891, 47.2060773 ], + [ 7.5392214, 47.2059253 ], + [ 7.5383393, 47.2057965 ], + [ 7.5379019, 47.2057366 ], + [ 7.5374753, 47.205675 ], + [ 7.5370495, 47.2056142 ], + [ 7.5366758, 47.2055542 ], + [ 7.536476, 47.2055121 ], + [ 7.5361121, 47.2054261 ], + [ 7.5357952, 47.2053418 ], + [ 7.5356441, 47.2052789 ], + [ 7.535531, 47.2052322 ], + [ 7.5353221, 47.2051281 ], + [ 7.5351578, 47.2050527 ], + [ 7.5349761, 47.2049485 ], + [ 7.5348646, 47.2048722 ], + [ 7.5347545, 47.2046545 ], + [ 7.5346387, 47.2044702 ], + [ 7.5345601, 47.204348 ], + [ 7.534408, 47.2041826 ], + [ 7.5343022, 47.2040883 ], + [ 7.5342353, 47.2040119 ], + [ 7.5341939, 47.2039336 ], + [ 7.5341458, 47.2038059 ], + [ 7.5341234, 47.2036908 ], + [ 7.5340836, 47.2035802 ], + [ 7.5340099, 47.2034427 ], + [ 7.5338007000000005, 47.203173 ], + [ 7.5337354, 47.203075 ], + [ 7.5336428, 47.2029528 ], + [ 7.53356, 47.2028134 ], + [ 7.5334831, 47.2026704 ], + [ 7.5334242, 47.2025067 ], + [ 7.5333711, 47.2023422 ], + [ 7.5333247, 47.2022271 ], + [ 7.5332379, 47.2020796 ], + [ 7.5331626, 47.2019593 ], + [ 7.533017, 47.2017597 ], + [ 7.5329335, 47.2016266 ], + [ 7.5328979, 47.2015672 ], + [ 7.5327598, 47.2013829 ], + [ 7.532649, 47.2012293 ], + [ 7.5325879, 47.2011645 ], + [ 7.532383, 47.2009866 ], + [ 7.5322169, 47.2008285 ], + [ 7.5320881, 47.2007297 ], + [ 7.531946, 47.2006137 ], + [ 7.5318741, 47.2005346 ], + [ 7.5318104, 47.2004339 ], + [ 7.5317286, 47.2003522 ], + [ 7.5316402, 47.2002803 ], + [ 7.5315527, 47.2002254 ], + [ 7.5314305, 47.2001626 ], + [ 7.5312729, 47.2001097 ], + [ 7.5311268, 47.200053 ], + [ 7.5310483, 47.1999965 ], + [ 7.5309162, 47.1999309 ], + [ 7.530813, 47.1998617 ], + [ 7.5306998, 47.1997692 ], + [ 7.5305941, 47.1996793 ], + [ 7.530466, 47.1995562 ], + [ 7.5303074, 47.1994196 ], + [ 7.5302355, 47.1993505 ], + [ 7.5300901, 47.1992003 ], + [ 7.5300132, 47.1990888 ], + [ 7.5299181, 47.1989459 ], + [ 7.5297949, 47.198758 ], + [ 7.5296527, 47.1985971 ], + [ 7.5295412, 47.1984947 ], + [ 7.5293959, 47.1984004 ], + [ 7.5292704, 47.1983177 ], + [ 7.5290648000000004, 47.1982099 ], + [ 7.5290458000000005, 47.1982009 ], + [ 7.5288271, 47.198104 ], + [ 7.5285481, 47.1979873 ], + [ 7.5283649, 47.1979055 ], + [ 7.5280686, 47.1977718 ], + [ 7.5279786, 47.1977313 ], + [ 7.5277574, 47.1976506 ], + [ 7.5274372, 47.1975429 ], + [ 7.5268431, 47.1973778 ], + [ 7.5265427, 47.1972862 ], + [ 7.5262489, 47.1971903 ], + [ 7.525701, 47.1970225 ], + [ 7.5246381, 47.1966788 ], + [ 7.5245456, 47.1966464 ], + [ 7.5240208, 47.1964777 ], + [ 7.5239375, 47.196449 ], + [ 7.5235587, 47.1963368 ], + [ 7.5231824, 47.1962149 ], + [ 7.5229184, 47.1961484 ], + [ 7.5223952, 47.1960067 ], + [ 7.5222979, 47.1959835 ], + [ 7.521882, 47.195865 ], + [ 7.5214579, 47.1957339 ], + [ 7.5211691, 47.1956586 ], + [ 7.5206221, 47.1955339 ], + [ 7.5200941, 47.195466 ], + [ 7.5195794, 47.1954457 ], + [ 7.5194804, 47.1954421 ], + [ 7.5190054, 47.1954551 ], + [ 7.5185163, 47.1954626 ], + [ 7.5180264, 47.195471 ], + [ 7.5174787, 47.1954678 ], + [ 7.5168766, 47.1954619 ], + [ 7.5166696, 47.1954549 ], + [ 7.5164741, 47.1954622 ], + [ 7.5163174999999995, 47.1954739 ], + [ 7.516155, 47.1954912 ], + [ 7.5160074, 47.1955075 ], + [ 7.5158408, 47.1955229 ], + [ 7.5152304999999995, 47.1955241 ], + [ 7.5150045, 47.1955315 ], + [ 7.5147538, 47.1955649 ], + [ 7.5146697, 47.195583 ], + [ 7.514424, 47.1956281 ], + [ 7.514264, 47.1956472 ], + [ 7.5141255000000005, 47.1956751 ], + [ 7.514053, 47.1956833 ], + [ 7.5136835, 47.1957384 ], + [ 7.5135351, 47.1957609 ], + [ 7.51347, 47.19577 ], + [ 7.5132976, 47.1958007 ], + [ 7.5130239, 47.1958512 ], + [ 7.5125943, 47.1959558 ], + [ 7.5122736, 47.1960234 ], + [ 7.5121433, 47.196047 ], + [ 7.5121004, 47.1960524 ], + [ 7.5119619, 47.1960551 ], + [ 7.5117903, 47.1960507 ], + [ 7.5117153, 47.1960418 ], + [ 7.5113408, 47.1959909 ], + [ 7.5112921, 47.1959801 ], + [ 7.5111898, 47.1959756 ], + [ 7.5110752, 47.1959847 ], + [ 7.5109828, 47.1959983 ], + [ 7.5108327, 47.1960002 ], + [ 7.5107271, 47.1959966 ], + [ 7.5107106, 47.1959952 ], + [ 7.5105256, 47.1969788 ], + [ 7.5106666, 47.1969897 ], + [ 7.5111285, 47.1970172 ], + [ 7.511291, 47.197026 ], + [ 7.5113603, 47.1970297 ], + [ 7.5113875, 47.197031 ], + [ 7.5115937, 47.1970413 ], + [ 7.5118222, 47.197051 ], + [ 7.5120069, 47.1970463 ], + [ 7.5123781, 47.1970318 ], + [ 7.5125603, 47.1970118 ], + [ 7.5126460999999995, 47.1970001 ], + [ 7.5128176, 47.1969928 ], + [ 7.5128555, 47.196981 ], + [ 7.5129297, 47.1969675 ], + [ 7.5133767, 47.1969195 ], + [ 7.5134509, 47.1969123 ], + [ 7.5135639, 47.1968996 ], + [ 7.5137709, 47.1968788 ], + [ 7.5141634, 47.1968615 ], + [ 7.5144505, 47.1968569 ], + [ 7.5147911, 47.1968358 ], + [ 7.5154038, 47.1968139 ], + [ 7.51577, 47.19681 ], + [ 7.5161164, 47.1968008 ], + [ 7.5163737, 47.1967746 ], + [ 7.5166055, 47.1967547 ], + [ 7.5168455, 47.1967347 ], + [ 7.5170475, 47.1967147 ], + [ 7.517252, 47.1966886 ], + [ 7.5175613, 47.1966451 ], + [ 7.5178656, 47.1966081 ], + [ 7.5181756, 47.1965862 ], + [ 7.518334, 47.1965763 ], + [ 7.5185031, 47.1965753 ], + [ 7.5189872, 47.196575 ], + [ 7.5191984, 47.1965855 ], + [ 7.5197156, 47.1966274 ], + [ 7.5198294, 47.196649 ], + [ 7.5198979, 47.1966508 ], + [ 7.5202172, 47.1966792 ], + [ 7.5207055, 47.1967347 ], + [ 7.5211906, 47.1968028 ], + [ 7.5214678, 47.1968431 ], + [ 7.5216906, 47.1968914 ], + [ 7.5219216, 47.1969362 ], + [ 7.5222541, 47.1970097 ], + [ 7.5223794999999996, 47.1970366 ], + [ 7.5224282, 47.1970456 ], + [ 7.5231138, 47.1972097 ], + [ 7.5237987, 47.1973756 ], + [ 7.5244844, 47.1975801 ], + [ 7.5246701, 47.1976376 ], + [ 7.5248219, 47.1976869 ], + [ 7.5251718, 47.1977893 ], + [ 7.525242, 47.1978224 ], + [ 7.5252568, 47.1978287 ], + [ 7.5253657, 47.1978458 ], + [ 7.5255176, 47.1978888 ], + [ 7.5256991, 47.1979525 ], + [ 7.5259047, 47.1980388 ], + [ 7.5265708, 47.1983674 ], + [ 7.5268994, 47.1985309 ], + [ 7.5272246, 47.1986854 ], + [ 7.5274293, 47.1987913 ], + [ 7.5276126, 47.198882 ], + [ 7.5278025, 47.1989728 ], + [ 7.5278743, 47.1990177 ], + [ 7.5282624, 47.1992666 ], + [ 7.5286645, 47.1995271 ], + [ 7.5290609, 47.1997893 ], + [ 7.5294606, 47.2000499 ], + [ 7.5298635, 47.2003132 ], + [ 7.5302533, 47.2005791 ], + [ 7.5305572, 47.2007632 ], + [ 7.5306629, 47.2008351 ], + [ 7.5308314, 47.2009456 ], + [ 7.5308776, 47.2009699 ], + [ 7.5309222, 47.2010265 ], + [ 7.5310098, 47.2011218 ], + [ 7.5311231, 47.2012602 ], + [ 7.531352, 47.201528 ], + [ 7.5314463, 47.2016342 ], + [ 7.5315305, 47.2017231 ], + [ 7.5316049, 47.2018058 ], + [ 7.5316743, 47.2018768 ], + [ 7.5317934, 47.202026 ], + [ 7.5318893, 47.2021788 ], + [ 7.5320176, 47.2023865 ], + [ 7.5321110000000004, 47.2025303 ], + [ 7.5322186, 47.2027119 ], + [ 7.5322897, 47.2028306 ], + [ 7.5323882, 47.202979 ], + [ 7.5324485, 47.2030734 ], + [ 7.5325071999999995, 47.2031399 ], + [ 7.5325641999999995, 47.2031939 ], + [ 7.5325980999999995, 47.203236 ], + [ 7.5326436, 47.2032764 ], + [ 7.5327362, 47.2034104 ], + [ 7.5328032, 47.2035183 ], + [ 7.5328554, 47.2036334 ], + [ 7.5329026, 47.2037728 ], + [ 7.5329425, 47.203905 ], + [ 7.5329797, 47.2039787 ], + [ 7.5330219, 47.2040578 ], + [ 7.5330922000000005, 47.2041666 ], + [ 7.5331386, 47.2042323 ], + [ 7.5332129, 47.2043167 ], + [ 7.5332427, 47.2043751 ], + [ 7.5332824, 47.2043931 ], + [ 7.5333386, 47.2044578 ], + [ 7.5333948, 47.2045271 ], + [ 7.533762, 47.205025 ], + [ 7.5338645, 47.2051419 ], + [ 7.5339239, 47.2051931 ], + [ 7.5341552, 47.2053305 ], + [ 7.5342609, 47.2054052 ], + [ 7.5344368, 47.2055102 ], + [ 7.5345887000000005, 47.2055865 ], + [ 7.5347134, 47.205635 ], + [ 7.5348851, 47.2056907 ], + [ 7.5349379, 47.2057149 ], + [ 7.5351038, 47.2057624 ], + [ 7.5354166, 47.2058413 ], + [ 7.5357327, 47.2059112 ], + [ 7.5358424, 47.2059399 ], + [ 7.5360009, 47.2059829 ], + [ 7.5362213, 47.2060448 ], + [ 7.5365168, 47.2061489 ], + [ 7.5368536, 47.2062782 ], + [ 7.536994, 47.2063302 ], + [ 7.5370335, 47.206278 ], + [ 7.5370821, 47.2062825 ], + [ 7.5374105, 47.2063155 ], + [ 7.5377704, 47.2064176 ], + [ 7.5383515, 47.2065962 ], + [ 7.53894, 47.2067629 ], + [ 7.5390168, 47.206788 ], + [ 7.5390283, 47.2067602 ], + [ 7.5393047, 47.2068041 ], + [ 7.5396456, 47.2068892 ], + [ 7.5397537, 47.2069151 ], + [ 7.5400492, 47.206985 ], + [ 7.5403619, 47.2070495 ], + [ 7.5405963, 47.2070953 ], + [ 7.5408604, 47.2071453 ], + [ 7.5410056, 47.2071722 ], + [ 7.5413958999999995, 47.2072132 ], + [ 7.5416402, 47.2072436 ], + [ 7.5416295, 47.2072778 ], + [ 7.5427691, 47.2074188 ], + [ 7.5431387, 47.2074528 ], + [ 7.5433804, 47.2074597 ], + [ 7.5438515, 47.2074593 ], + [ 7.5439505, 47.2074484 ], + [ 7.544089, 47.2074393 ], + [ 7.5442540000000005, 47.2074256 ], + [ 7.5445238, 47.2074235 ], + [ 7.5449131, 47.2074242 ], + [ 7.5453025, 47.2074273 ], + [ 7.5456705, 47.2074387 ], + [ 7.5458726, 47.207426 ], + [ 7.5461547, 47.2074149 ], + [ 7.5463345, 47.2074111 ], + [ 7.5467289, 47.2074117 ], + [ 7.5470787, 47.2074158 ], + [ 7.547421, 47.2074245 ], + [ 7.5476751, 47.2074333 ], + [ 7.5478666, 47.2074474 ], + [ 7.5482099, 47.2075037 ], + [ 7.5484245, 47.2075503 ], + [ 7.5485896, 47.2076113 ], + [ 7.5487382, 47.2076796 ], + [ 7.5490885, 47.2079131 ], + [ 7.5492356, 47.2080344 ], + [ 7.5494604, 47.2082501 ], + [ 7.5496365, 47.2084423 ], + [ 7.5497159, 47.2085385 ], + [ 7.5498045000000005, 47.2086805 ], + [ 7.5499619, 47.2089898 ], + [ 7.5501077, 47.2093009 ], + [ 7.5502569, 47.2096408 ], + [ 7.5503772, 47.209933 ], + [ 7.5505287, 47.2102089 ], + [ 7.550624, 47.2103789 ], + [ 7.5507273999999995, 47.2105317 ], + [ 7.5508937, 47.2107564 ], + [ 7.5510459999999995, 47.210982 ], + [ 7.5511932999999996, 47.2112103 ], + [ 7.5513373, 47.2114404 ], + [ 7.5514921, 47.2116643 ], + [ 7.5515624, 47.2117631 ], + [ 7.5516245, 47.211871 ], + [ 7.5516345000000005, 47.2118845 ], + [ 7.551699, 47.2119748 ], + [ 7.5529883, 47.211866 ], + [ 7.5529551999999995, 47.2118194 ], + [ 7.5527856, 47.2116117 ], + [ 7.55264, 47.2114248 ], + [ 7.5525672, 47.2113349 ], + [ 7.5524844, 47.2111974 ], + [ 7.5523595, 47.2110086 ], + [ 7.5522708, 47.2108495 ], + [ 7.5522096, 47.2107371 ], + [ 7.552092, 47.2105312 ], + [ 7.5520539, 47.2104548 ], + [ 7.5519312, 47.2102049 ], + [ 7.5518384, 47.2100296 ], + [ 7.5517448, 47.2098299 ], + [ 7.5516562, 47.2096861 ], + [ 7.551518, 47.2094677 ], + [ 7.5514534, 47.209331 ], + [ 7.5513762, 47.2091279 ], + [ 7.5512616999999995, 47.2088068 ], + [ 7.5512193, 47.2086505 ], + [ 7.5511637, 47.2084831 ], + [ 7.5510957, 47.2083519 ], + [ 7.5510113, 47.2082153 ], + [ 7.5509402, 47.2081317 ], + [ 7.5506079, 47.2078154 ], + [ 7.5504739, 47.2076833 ], + [ 7.5503119, 47.2075144 ], + [ 7.5502259, 47.2074147 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "WZV0001", + "country" : "CHE", + "name" : [ + { + "text" : "Wasser- und Zugvogelreservat Aare bei Solothurn und Naturschutzreservat Aare Flumenthal", + "lang" : "de-CH" + }, + { + "text" : "Réserve d'oiseaux d'eau et de migrateurs Aare bei Solothurn und Naturschutzreservat Aare Flumenthal", + "lang" : "fr-CH" + }, + { + "text" : "Riserva di uccelli acquatici e migratori Aare bei Solothurn und Naturschutzreservat Aare Flumenthal", + "lang" : "it-CH" + }, + { + "text" : "Water Bird and Migratory Bird Reserves Aare bei Solothurn und Naturschutzreservat Aare Flumenthal", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.6801379, 46.5821887 ], + [ 9.6796395, 46.5821704 ], + [ 9.6793453, 46.5821762 ], + [ 9.6792324, 46.5822066 ], + [ 9.6791431, 46.5823153 ], + [ 9.6791347, 46.5826053 ], + [ 9.6790337, 46.5827282 ], + [ 9.6790045, 46.5829089 ], + [ 9.6789193, 46.5830175 ], + [ 9.6788324, 46.5830868 ], + [ 9.6786234, 46.5831612 ], + [ 9.6779606, 46.5833289 ], + [ 9.6773498, 46.5834508 ], + [ 9.6770223, 46.5835191 ], + [ 9.6767841, 46.58358 ], + [ 9.6764049, 46.5836015 ], + [ 9.676010999999999, 46.5836432 ], + [ 9.6756078, 46.5836567 ], + [ 9.6753271, 46.5837747 ], + [ 9.6750679, 46.5838192 ], + [ 9.6745664, 46.5837447 ], + [ 9.6743481, 46.5837912 ], + [ 9.6742394, 46.5839227 ], + [ 9.673913, 46.5840192 ], + [ 9.6733616, 46.5840216 ], + [ 9.6729859, 46.5839894 ], + [ 9.6726951, 46.5840401 ], + [ 9.6723863, 46.5840678 ], + [ 9.6722065, 46.5841183 ], + [ 9.6720414, 46.5843096 ], + [ 9.6719996, 46.5844615 ], + [ 9.6719356, 46.5845726 ], + [ 9.6718459, 46.5846134 ], + [ 9.6716502, 46.5846135 ], + [ 9.6714348, 46.5845548 ], + [ 9.670936, 46.5843863 ], + [ 9.6706372, 46.5843804 ], + [ 9.6702641, 46.5843741 ], + [ 9.6699761, 46.5843521 ], + [ 9.6697078, 46.5843947 ], + [ 9.6694473, 46.5845664 ], + [ 9.6692934, 46.5847498 ], + [ 9.6692599, 46.5849073 ], + [ 9.6691737, 46.5850913 ], + [ 9.6690434, 46.5852349 ], + [ 9.6689065, 46.5853768 ], + [ 9.6686897, 46.5854223 ], + [ 9.668562, 46.5854307 ], + [ 9.6684029, 46.5853711 ], + [ 9.6683231, 46.5854941 ], + [ 9.6682598, 46.5855405 ], + [ 9.6680819, 46.5855008 ], + [ 9.6676454, 46.5855368 ], + [ 9.6669634, 46.585754 ], + [ 9.666228, 46.5859836 ], + [ 9.6661989, 46.5861882 ], + [ 9.666071, 46.5863902 ], + [ 9.665877, 46.5866523 ], + [ 9.6655372, 46.5874924 ], + [ 9.6650734, 46.5882176 ], + [ 9.6645065, 46.588933 ], + [ 9.6639156, 46.589461 ], + [ 9.6633381, 46.5921858 ], + [ 9.6630581, 46.5927771 ], + [ 9.6628653, 46.593326 ], + [ 9.6628664, 46.593772 ], + [ 9.6629665, 46.5941223 ], + [ 9.6632315, 46.5950911 ], + [ 9.6634509, 46.5953676 ], + [ 9.663789, 46.5957334 ], + [ 9.6641373, 46.5961277 ], + [ 9.6646001, 46.5966687 ], + [ 9.665231, 46.5972867 ], + [ 9.6658515, 46.5978532 ], + [ 9.6657355, 46.5978499 ], + [ 9.6652022, 46.5977973 ], + [ 9.6646023, 46.5977345 ], + [ 9.6639136, 46.5977137 ], + [ 9.6631347, 46.5977406 ], + [ 9.6625132, 46.597747 ], + [ 9.661876, 46.5977882 ], + [ 9.661056, 46.5978272 ], + [ 9.660352, 46.5978524 ], + [ 9.6597993, 46.5977259 ], + [ 9.659218, 46.5976971 ], + [ 9.6587312, 46.597764 ], + [ 9.6582357, 46.5978195 ], + [ 9.6578951, 46.5980096 ], + [ 9.65755, 46.5980909 ], + [ 9.6569307, 46.5981488 ], + [ 9.6565809, 46.5983162 ], + [ 9.6562534, 46.5986263 ], + [ 9.6560844, 46.5989448 ], + [ 9.6558856, 46.5991492 ], + [ 9.6555312, 46.5996031 ], + [ 9.6551972, 46.5999535 ], + [ 9.6549548, 46.6001129 ], + [ 9.6535544, 46.6007478 ], + [ 9.6540109, 46.6018134 ], + [ 9.6543905, 46.6022959 ], + [ 9.6546169, 46.6024435 ], + [ 9.6550174, 46.6026385 ], + [ 9.6556313, 46.6030827 ], + [ 9.6560311, 46.6032606 ], + [ 9.6564453, 46.6033935 ], + [ 9.656775, 46.6034714 ], + [ 9.656893, 46.6035649 ], + [ 9.656919, 46.6038009 ], + [ 9.656904, 46.604032 ], + [ 9.6568864, 46.6043984 ], + [ 9.6567464, 46.6047671 ], + [ 9.6565604, 46.6050073 ], + [ 9.6564662, 46.6051377 ], + [ 9.6566568, 46.6055466 ], + [ 9.6567776, 46.6058479 ], + [ 9.6569058, 46.6059076 ], + [ 9.6570837, 46.6059296 ], + [ 9.6572827, 46.6059651 ], + [ 9.6574258, 46.6059918 ], + [ 9.6575164, 46.6060314 ], + [ 9.657900099999999, 46.6062738 ], + [ 9.658102, 46.6063821 ], + [ 9.6583232, 46.6064821 ], + [ 9.6585389, 46.6066076 ], + [ 9.6586757, 46.6066601 ], + [ 9.6588028, 46.606695 ], + [ 9.6589052, 46.6067044 ], + [ 9.6593094, 46.6068092 ], + [ 9.6592979, 46.6070076 ], + [ 9.6592675, 46.6074782 ], + [ 9.6592051, 46.6079665 ], + [ 9.6591025, 46.60849 ], + [ 9.6592155, 46.6090151 ], + [ 9.6591804, 46.6095716 ], + [ 9.6591854, 46.6096924 ], + [ 9.6593742, 46.6096585 ], + [ 9.6595581, 46.609367 ], + [ 9.6597229, 46.6092468 ], + [ 9.6606597, 46.6091655 ], + [ 9.6609896, 46.609249 ], + [ 9.661355, 46.6092419 ], + [ 9.6615786, 46.6092825 ], + [ 9.661944, 46.6092754 ], + [ 9.6623055, 46.6094933 ], + [ 9.6625429, 46.6095517 ], + [ 9.6627069, 46.6097285 ], + [ 9.6632735, 46.6098524 ], + [ 9.6636269, 46.6098725 ], + [ 9.6641209, 46.6098178 ], + [ 9.6646454, 46.6098706 ], + [ 9.6649119, 46.6100003 ], + [ 9.6655252, 46.6099883 ], + [ 9.66609, 46.6100673 ], + [ 9.6666391, 46.6100836 ], + [ 9.6669746, 46.610302 ], + [ 9.667341799999999, 46.6103398 ], + [ 9.667627, 46.6102892 ], + [ 9.6680594, 46.6103257 ], + [ 9.669337, 46.6105887 ], + [ 9.6698619, 46.6106504 ], + [ 9.670221699999999, 46.6105084 ], + [ 9.670707, 46.6105618 ], + [ 9.670816, 46.6105137 ], + [ 9.6712778, 46.6107663 ], + [ 9.6711008, 46.6110851 ], + [ 9.6709012, 46.6114672 ], + [ 9.671073, 46.6118134 ], + [ 9.671423, 46.6120472 ], + [ 9.6719397, 46.6123063 ], + [ 9.6722538, 46.6124606 ], + [ 9.6727199, 46.6126978 ], + [ 9.6727547, 46.6129263 ], + [ 9.6730929, 46.6130916 ], + [ 9.67318, 46.6133821 ], + [ 9.6736816, 46.6136702 ], + [ 9.6743104, 46.6140131 ], + [ 9.6750314, 46.6143943 ], + [ 9.6752988, 46.6146412 ], + [ 9.6755909, 46.6148761 ], + [ 9.6763644, 46.6153021 ], + [ 9.6769927, 46.6156507 ], + [ 9.6774327, 46.6158484 ], + [ 9.6775934, 46.6159253 ], + [ 9.6779633, 46.6160269 ], + [ 9.6782147, 46.6160474 ], + [ 9.6786541, 46.616367 ], + [ 9.678825400000001, 46.6164837 ], + [ 9.679023, 46.6166229 ], + [ 9.6792384, 46.6167963 ], + [ 9.6796181, 46.6167421 ], + [ 9.6798998, 46.6167246 ], + [ 9.6802579, 46.6167571 ], + [ 9.6807507, 46.6168096 ], + [ 9.6813611, 46.6169055 ], + [ 9.6817399, 46.6170236 ], + [ 9.6821855, 46.6171403 ], + [ 9.6824661, 46.617272 ], + [ 9.6828021, 46.6175401 ], + [ 9.6829682, 46.617726 ], + [ 9.6832237, 46.6180418 ], + [ 9.683392, 46.6182793 ], + [ 9.6835874, 46.618562 ], + [ 9.6837132, 46.6187601 ], + [ 9.6839691, 46.6191047 ], + [ 9.6841624, 46.6193358 ], + [ 9.6844355, 46.61968 ], + [ 9.6846524, 46.6198703 ], + [ 9.6849643, 46.6201678 ], + [ 9.6852331, 46.6204088 ], + [ 9.6854875, 46.6205181 ], + [ 9.6857857, 46.6205059 ], + [ 9.6861491, 46.6204694 ], + [ 9.6864662, 46.620497 ], + [ 9.6868306, 46.6204662 ], + [ 9.6871214, 46.6204714 ], + [ 9.6874272, 46.6204419 ], + [ 9.6877257, 46.6204354 ], + [ 9.6881078, 46.6204386 ], + [ 9.6885321, 46.6204524 ], + [ 9.6890633, 46.6204467 ], + [ 9.6893957, 46.6204509 ], + [ 9.6897841, 46.6204081 ], + [ 9.6903216, 46.6205343 ], + [ 9.690738, 46.6205541 ], + [ 9.6913641, 46.6206322 ], + [ 9.6917713, 46.6206292 ], + [ 9.6921958, 46.6206487 ], + [ 9.6925273, 46.6206302 ], + [ 9.6928664, 46.6205998 ], + [ 9.6934906, 46.6206322 ], + [ 9.6940062, 46.6206441 ], + [ 9.6943456, 46.6206195 ], + [ 9.6945941, 46.6206084 ], + [ 9.6948954, 46.6206478 ], + [ 9.695693200000001, 46.6208486 ], + [ 9.6959018, 46.6210563 ], + [ 9.6961048, 46.6211266 ], + [ 9.6963532, 46.6212877 ], + [ 9.6965176, 46.6214334 ], + [ 9.6966184, 46.6216376 ], + [ 9.6967377, 46.621893299999996 ], + [ 9.696782, 46.6221334 ], + [ 9.6967859, 46.622403 ], + [ 9.6967781, 46.6225869 ], + [ 9.6967762, 46.6227361 ], + [ 9.6967786, 46.6229713 ], + [ 9.6968423, 46.6232626 ], + [ 9.6968686, 46.6236581 ], + [ 9.696885, 46.6240307 ], + [ 9.6968859, 46.6244037 ], + [ 9.6968857, 46.6245758 ], + [ 9.6968862, 46.6247824 ], + [ 9.6968638, 46.6250067 ], + [ 9.6968818, 46.6252244 ], + [ 9.6969384, 46.6255617 ], + [ 9.6968506, 46.6258046 ], + [ 9.6967778, 46.6260358 ], + [ 9.696606, 46.6262806 ], + [ 9.6964611, 46.6263698 ], + [ 9.6963157, 46.6264647 ], + [ 9.696174899999999, 46.6266515 ], + [ 9.696276600000001, 46.6268788 ], + [ 9.6964274, 46.6270878 ], + [ 9.6963274, 46.6272736 ], + [ 9.6961806, 46.6273342 ], + [ 9.6960602, 46.6274229 ], + [ 9.6959835, 46.6275622 ], + [ 9.6959925, 46.6277572 ], + [ 9.6960921, 46.627933 ], + [ 9.6961306, 46.6280526 ], + [ 9.6961051, 46.6282253 ], + [ 9.6959451, 46.6283608 ], + [ 9.695734, 46.6284686 ], + [ 9.6955723, 46.6285639 ], + [ 9.6954451, 46.6286873 ], + [ 9.6954481, 46.628934 ], + [ 9.6954393, 46.6292899 ], + [ 9.6953733, 46.6296644 ], + [ 9.6953114, 46.629941099999996 ], + [ 9.6951839, 46.6302309 ], + [ 9.6952607, 46.6306424 ], + [ 9.6951586, 46.6309544 ], + [ 9.69508, 46.6312431 ], + [ 9.6950483, 46.6314618 ], + [ 9.6949924, 46.6316868 ], + [ 9.6950279, 46.6319098 ], + [ 9.695151, 46.6320622 ], + [ 9.6951739, 46.6321994 ], + [ 9.6951605, 46.6324465 ], + [ 9.695097, 46.632706 ], + [ 9.6949998, 46.6329377 ], + [ 9.6948233, 46.6330735 ], + [ 9.6946368, 46.6331809 ], + [ 9.6945689, 46.6333144 ], + [ 9.6945073, 46.6336197 ], + [ 9.6944394, 46.6339483 ], + [ 9.6943979, 46.634305 ], + [ 9.6943504, 46.6347308 ], + [ 9.6943675, 46.6351033 ], + [ 9.6943386, 46.635368 ], + [ 9.6943365, 46.6356894 ], + [ 9.6943421, 46.6359991 ], + [ 9.6943306, 46.6362921 ], + [ 9.6942862, 46.6365971 ], + [ 9.6942755, 46.6369073 ], + [ 9.6942886, 46.6371825 ], + [ 9.6942682, 46.6374756 ], + [ 9.6941986, 46.637764 ], + [ 9.6940404, 46.6381233 ], + [ 9.6939996, 46.6383193 ], + [ 9.6939054, 46.6386254 ], + [ 9.6938095, 46.6388915 ], + [ 9.6936899, 46.6391753 ], + [ 9.6935541, 46.6394824 ], + [ 9.6934195, 46.639818 ], + [ 9.6933648, 46.6402497 ], + [ 9.6934241, 46.6406329 ], + [ 9.6936307, 46.6409842 ], + [ 9.6940321, 46.6410329 ], + [ 9.694575799999999, 46.6411072 ], + [ 9.6948521, 46.6411529 ], + [ 9.695235199999999, 46.6411733 ], + [ 9.6957394, 46.6413002 ], + [ 9.6960925, 46.6413843 ], + [ 9.6966622, 46.6414925 ], + [ 9.6969796, 46.6415259 ], + [ 9.6975971, 46.6415871 ], + [ 9.6978527, 46.6415471 ], + [ 9.6983738, 46.64149 ], + [ 9.6989561, 46.6413339 ], + [ 9.6994171, 46.6412263 ], + [ 9.7001679, 46.6411181 ], + [ 9.7006137, 46.6410568 ], + [ 9.700829, 46.6410292 ], + [ 9.7011169, 46.6409828 ], + [ 9.7014603, 46.6408548 ], + [ 9.7017399, 46.6407857 ], + [ 9.7023898, 46.6406452 ], + [ 9.7029531, 46.6404265 ], + [ 9.7034654, 46.64018 ], + [ 9.7038259, 46.6398967 ], + [ 9.7041057, 46.6396553 ], + [ 9.70448, 46.6394866 ], + [ 9.7050074, 46.6392112 ], + [ 9.7054336, 46.6388977 ], + [ 9.7057234, 46.6387021 ], + [ 9.7060962, 46.6384988 ], + [ 9.7064724, 46.6381808 ], + [ 9.7068925, 46.6377412 ], + [ 9.7072691, 46.6374346 ], + [ 9.7076544, 46.6371393 ], + [ 9.7080552, 46.6368264 ], + [ 9.7084987, 46.6365356 ], + [ 9.7089839, 46.6362496 ], + [ 9.709449, 46.6358722 ], + [ 9.7097506, 46.6355672 ], + [ 9.7102404, 46.6351949 ], + [ 9.7108685, 46.6345787 ], + [ 9.711141, 46.6343777 ], + [ 9.7113556, 46.6341607 ], + [ 9.7115322, 46.6340306 ], + [ 9.7119105, 46.633764 ], + [ 9.712216399999999, 46.633545 ], + [ 9.7124124, 46.6332941 ], + [ 9.7125493, 46.6330156 ], + [ 9.712642, 46.6328702 ], + [ 9.7127977, 46.6326314 ], + [ 9.7129873, 46.6324207 ], + [ 9.7131725, 46.6323019 ], + [ 9.7134197, 46.6320842 ], + [ 9.7135321, 46.6318063 ], + [ 9.7136733, 46.631631 ], + [ 9.7139514, 46.6313495 ], + [ 9.7140156, 46.63113 ], + [ 9.7139878, 46.6308782 ], + [ 9.713921599999999, 46.6307017 ], + [ 9.7137971, 46.630538 ], + [ 9.7136976, 46.630345 ], + [ 9.7135414, 46.630205 ], + [ 9.7134202, 46.6300986 ], + [ 9.7131648, 46.6299664 ], + [ 9.7129019, 46.6298516 ], + [ 9.7126396, 46.6297483 ], + [ 9.7123611, 46.629651 ], + [ 9.712024, 46.6295551 ], + [ 9.7117302, 46.6294813 ], + [ 9.7113126, 46.6294329 ], + [ 9.7110428, 46.6293469 ], + [ 9.7108309, 46.6292598 ], + [ 9.7105506, 46.6291167 ], + [ 9.7103358, 46.6289607 ], + [ 9.7101357, 46.6287642 ], + [ 9.7099531, 46.628596 ], + [ 9.7099468, 46.6284469 ], + [ 9.709882, 46.6283049 ], + [ 9.7097891, 46.6280946 ], + [ 9.709687, 46.6278615 ], + [ 9.7095828, 46.6275769 ], + [ 9.7095799, 46.6271579 ], + [ 9.709469200000001, 46.6269136 ], + [ 9.70945, 46.6266903 ], + [ 9.7094636, 46.6264317 ], + [ 9.7093834, 46.6261351 ], + [ 9.7095573, 46.6259419 ], + [ 9.7098322, 46.6257809 ], + [ 9.7099756, 46.6257149 ], + [ 9.7103105, 46.6257004 ], + [ 9.7110558, 46.6255419 ], + [ 9.7115079, 46.6254214 ], + [ 9.7116552, 46.6253507 ], + [ 9.711875599999999, 46.6252148 ], + [ 9.7119857, 46.625097 ], + [ 9.7120302, 46.6249127 ], + [ 9.7122396, 46.6248049 ], + [ 9.7124837, 46.6248239 ], + [ 9.7126803, 46.62482 ], + [ 9.712922, 46.6247833 ], + [ 9.7131787, 46.6248499 ], + [ 9.7136263, 46.6250282 ], + [ 9.7143923, 46.6253637 ], + [ 9.7150571, 46.6256214 ], + [ 9.7153145, 46.625684 ], + [ 9.7157762, 46.6256748 ], + [ 9.7164289, 46.6256458 ], + [ 9.7166822, 46.6256128 ], + [ 9.7167895, 46.6255429 ], + [ 9.71686, 46.6254339 ], + [ 9.7169864, 46.6250049 ], + [ 9.7171301, 46.6248505 ], + [ 9.717433, 46.6247528 ], + [ 9.7176135, 46.6246575 ], + [ 9.7176974, 46.6245762 ], + [ 9.7178282, 46.624386200000004 ], + [ 9.7180842, 46.6242815 ], + [ 9.7186394, 46.6238758 ], + [ 9.7190414, 46.6236724 ], + [ 9.7192326, 46.6235411 ], + [ 9.7193261, 46.6234156 ], + [ 9.7194278, 46.6233697 ], + [ 9.7196552, 46.623417 ], + [ 9.7199261, 46.6233957 ], + [ 9.7202949, 46.6233523 ], + [ 9.7205103, 46.6233879 ], + [ 9.7206799, 46.6234208 ], + [ 9.7210246, 46.6235223 ], + [ 9.7211622, 46.6235895 ], + [ 9.7213382, 46.6235832 ], + [ 9.7215613, 46.6235483 ], + [ 9.7216602, 46.6236099 ], + [ 9.7219561, 46.6237727 ], + [ 9.7223632, 46.6239028 ], + [ 9.7226377, 46.6239442 ], + [ 9.7228221, 46.6239433 ], + [ 9.7229375, 46.6238138 ], + [ 9.7230354, 46.6237537 ], + [ 9.7231398, 46.6237516 ], + [ 9.723386, 46.6237827 ], + [ 9.7235899, 46.6237786 ], + [ 9.7236922, 46.6237268 ], + [ 9.7237748, 46.6235952 ], + [ 9.723919, 46.6233932 ], + [ 9.7240199, 46.6233082 ], + [ 9.7242946, 46.6232612 ], + [ 9.724825599999999, 46.6231924 ], + [ 9.725169, 46.6231469 ], + [ 9.7254345, 46.6230724 ], + [ 9.7256253, 46.622933 ], + [ 9.7258083, 46.6227053 ], + [ 9.7260429, 46.6224601 ], + [ 9.7263422, 46.6222983 ], + [ 9.7267239, 46.6222899 ], + [ 9.7268833, 46.6223151 ], + [ 9.7270667, 46.6223283 ], + [ 9.727488, 46.6222903 ], + [ 9.7277499, 46.6222099 ], + [ 9.7279379, 46.622137 ], + [ 9.7282139, 46.6220047 ], + [ 9.7285647, 46.6218649 ], + [ 9.7288074, 46.6217162 ], + [ 9.7290636, 46.6215212 ], + [ 9.7293769, 46.6212847 ], + [ 9.7294398, 46.6212088 ], + [ 9.7295668, 46.6210854 ], + [ 9.7297674, 46.6209262 ], + [ 9.7300252, 46.6207483 ], + [ 9.7302512, 46.6206114 ], + [ 9.7303864, 46.6204879 ], + [ 9.7305298, 46.6203469 ], + [ 9.7305784, 46.620145 ], + [ 9.7306841, 46.6199247 ], + [ 9.7307211, 46.6198148 ], + [ 9.7307711, 46.6196473 ], + [ 9.7307695, 46.619435 ], + [ 9.7307047, 46.619293 ], + [ 9.7306429, 46.6192026 ], + [ 9.7304667, 46.6189941 ], + [ 9.7303714, 46.6189043 ], + [ 9.7301559, 46.6187312 ], + [ 9.730034, 46.6186075 ], + [ 9.7299449, 46.6184891 ], + [ 9.7298046, 46.6183199 ], + [ 9.7297234, 46.6181954 ], + [ 9.7296678, 46.6180589 ], + [ 9.7295944, 46.6179057 ], + [ 9.7296605, 46.617732 ], + [ 9.7297356, 46.6175582 ], + [ 9.7298188, 46.6173843 ], + [ 9.7298894, 46.6172965 ], + [ 9.7300983, 46.6171428 ], + [ 9.730266499999999, 46.6170071 ], + [ 9.7303769, 46.6168785 ], + [ 9.7305649, 46.6166333 ], + [ 9.7306199, 46.616391 ], + [ 9.7306969, 46.616263000000004 ], + [ 9.7308146, 46.6161113 ], + [ 9.7308547, 46.6159038 ], + [ 9.7309093, 46.6156329 ], + [ 9.7309945, 46.6155047 ], + [ 9.7311062, 46.6154048 ], + [ 9.7312837, 46.6152976 ], + [ 9.7314278, 46.6151738 ], + [ 9.7315949, 46.6150152 ], + [ 9.731712, 46.6148692 ], + [ 9.7320713, 46.6151797 ], + [ 9.7324422, 46.6153805 ], + [ 9.7328578, 46.6154804 ], + [ 9.7330808, 46.6156175 ], + [ 9.733691499999999, 46.6157551 ], + [ 9.7341258, 46.6157379 ], + [ 9.7347076, 46.6155013 ], + [ 9.7354269, 46.6153702 ], + [ 9.7358005, 46.6153461 ], + [ 9.7362735, 46.6150866 ], + [ 9.7366935, 46.6150198 ], + [ 9.7369251, 46.6150735 ], + [ 9.7372976, 46.6152908 ], + [ 9.7377098, 46.6156156 ], + [ 9.7386166, 46.6156139 ], + [ 9.7393596, 46.6154657 ], + [ 9.7409069, 46.615476 ], + [ 9.7416444, 46.6154861 ], + [ 9.7422471, 46.6151657 ], + [ 9.7427922, 46.6149132 ], + [ 9.7432833, 46.6148116 ], + [ 9.7436115, 46.6146799 ], + [ 9.7439586, 46.6144542 ], + [ 9.7441874, 46.6143269 ], + [ 9.7443227, 46.6140909 ], + [ 9.7444813, 46.6139285 ], + [ 9.7446464, 46.6137595 ], + [ 9.7448734, 46.6133599 ], + [ 9.7455278, 46.6126669 ], + [ 9.7455202, 46.6116475 ], + [ 9.7455567, 46.6104941 ], + [ 9.7455369, 46.6096866 ], + [ 9.7462541, 46.6090711 ], + [ 9.746929399999999, 46.608486 ], + [ 9.7481413, 46.6067471 ], + [ 9.7481346, 46.6062448 ], + [ 9.7480279, 46.6057544 ], + [ 9.7484266, 46.6053817 ], + [ 9.7492437, 46.6051189 ], + [ 9.7499684, 46.6046805 ], + [ 9.7501747, 46.6038192 ], + [ 9.75006, 46.6031418 ], + [ 9.7500801, 46.6026191 ], + [ 9.7518587, 46.6024371 ], + [ 9.7523805, 46.6024265 ], + [ 9.7528958, 46.6024332 ], + [ 9.7532278, 46.6024492 ], + [ 9.7536341, 46.6024467 ], + [ 9.7536807, 46.601993 ], + [ 9.7536351, 46.601501 ], + [ 9.7539272, 46.6011571 ], + [ 9.754313, 46.6008855 ], + [ 9.7545799, 46.6005248 ], + [ 9.7548376, 46.6001584 ], + [ 9.7552471, 46.599852 ], + [ 9.7555642, 46.5996908 ], + [ 9.7562123, 46.5995997 ], + [ 9.7562582, 46.5995861 ], + [ 9.7565555, 46.5995355 ], + [ 9.7566572, 46.599339 ], + [ 9.7567335, 46.5988902 ], + [ 9.756876, 46.5984462 ], + [ 9.7570698, 46.5980187 ], + [ 9.7572556, 46.5976142 ], + [ 9.7574934, 46.597031 ], + [ 9.757666, 46.5967185 ], + [ 9.7578748, 46.5965258 ], + [ 9.7579719, 46.5964497 ], + [ 9.7580597, 46.5963279 ], + [ 9.7580693, 46.5961328 ], + [ 9.7580288, 46.5958924 ], + [ 9.7580649, 46.5954787 ], + [ 9.7582323, 46.5952925 ], + [ 9.7584924, 46.5951163 ], + [ 9.7586544, 46.5949933 ], + [ 9.7587889, 46.5948019 ], + [ 9.7588669, 46.59464 ], + [ 9.7588849, 46.5944332 ], + [ 9.7589344, 46.5941799 ], + [ 9.7590938, 46.5939767 ], + [ 9.7593846, 46.5937369 ], + [ 9.7595398, 46.5936656 ], + [ 9.7598575, 46.5934827 ], + [ 9.7600673, 46.593313 ], + [ 9.7602517, 46.5931036 ], + [ 9.7605536, 46.5929726 ], + [ 9.7607721, 46.592797 ], + [ 9.7610274, 46.5924717 ], + [ 9.7611898, 46.5923774 ], + [ 9.7614527, 46.5922871 ], + [ 9.7616579, 46.5922208 ], + [ 9.7619477, 46.5922048 ], + [ 9.7621299, 46.5921904 ], + [ 9.7622997, 46.5920615 ], + [ 9.7623858, 46.5918995 ], + [ 9.7624139, 46.5917557 ], + [ 9.7624487, 46.5915601 ], + [ 9.7622858, 46.5913962 ], + [ 9.7621355, 46.5913527 ], + [ 9.7618108, 46.5913349 ], + [ 9.7616254, 46.5912346 ], + [ 9.761528, 46.5910583 ], + [ 9.7615783, 46.5908223 ], + [ 9.7616364, 46.5905805 ], + [ 9.7617035, 46.5903557 ], + [ 9.7617316, 46.5901945 ], + [ 9.7616139, 46.5901505 ], + [ 9.7613661, 46.5901947 ], + [ 9.7610935, 46.5902103 ], + [ 9.7608385, 46.5900308 ], + [ 9.7605382, 46.589743 ], + [ 9.7600862, 46.589383 ], + [ 9.7597787, 46.589101 ], + [ 9.7594691, 46.5887674 ], + [ 9.7593458, 46.5885572 ], + [ 9.759045, 46.5882579 ], + [ 9.7587274, 46.5879301 ], + [ 9.7585211, 46.5877038 ], + [ 9.7579838, 46.5875231 ], + [ 9.7576294, 46.587345 ], + [ 9.7572231, 46.5871163 ], + [ 9.7569173, 46.5868917 ], + [ 9.7568018, 46.5866697 ], + [ 9.7565245, 46.5865594 ], + [ 9.7561781, 46.5863755 ], + [ 9.7559351, 46.5860351 ], + [ 9.7558125, 46.5858593 ], + [ 9.7551847, 46.5856957 ], + [ 9.7547829, 46.5856687 ], + [ 9.7546113, 46.5856429 ], + [ 9.7544459, 46.5855523 ], + [ 9.7540247, 46.5852616 ], + [ 9.7534974, 46.5848731 ], + [ 9.7529683, 46.5844438 ], + [ 9.751887, 46.5835762 ], + [ 9.751577, 46.5833656 ], + [ 9.7513821, 46.5831759 ], + [ 9.7511161, 46.5829465 ], + [ 9.7509032, 46.5829273 ], + [ 9.7506478, 46.5829266 ], + [ 9.750618, 46.5828392 ], + [ 9.7506184, 46.5826396 ], + [ 9.7504025, 46.5821686 ], + [ 9.7504567, 46.5820442 ], + [ 9.7505533, 46.581919 ], + [ 9.7505323, 46.5816377 ], + [ 9.7511215, 46.5812794 ], + [ 9.7508064, 46.5806637 ], + [ 9.7504565, 46.5800545 ], + [ 9.7501733, 46.5795935 ], + [ 9.749956, 46.5792987 ], + [ 9.7499829, 46.5791279 ], + [ 9.7501246, 46.578855 ], + [ 9.7501597, 46.578684 ], + [ 9.7503388, 46.578293 ], + [ 9.7503212, 46.5780908 ], + [ 9.7502049, 46.5779465 ], + [ 9.7500365, 46.5777856 ], + [ 9.749957, 46.5775289 ], + [ 9.750005699999999, 46.5772755 ], + [ 9.7500162, 46.5769668 ], + [ 9.749916, 46.5767608 ], + [ 9.749772, 46.5765018 ], + [ 9.7498541, 46.576322 ], + [ 9.7499534, 46.5760498 ], + [ 9.7499103, 46.575863 ], + [ 9.7497603, 46.5757133 ], + [ 9.7496495, 46.5755817 ], + [ 9.7497006, 46.5752311 ], + [ 9.749604, 46.5749178 ], + [ 9.7496393, 46.574579 ], + [ 9.7495575, 46.5742311 ], + [ 9.7497633, 46.5737971 ], + [ 9.7498678, 46.5735313 ], + [ 9.7498545, 46.573222200000004 ], + [ 9.7499677, 46.5727785 ], + [ 9.7500059, 46.5725085 ], + [ 9.7500298, 46.5721125 ], + [ 9.7499525, 46.5718505 ], + [ 9.7497698, 46.5716594 ], + [ 9.7495041, 46.5714528 ], + [ 9.7493172, 46.5711644 ], + [ 9.7493519, 46.5710031 ], + [ 9.7496666, 46.5706184 ], + [ 9.7499918, 46.570268 ], + [ 9.7503572, 46.5697161 ], + [ 9.750021199999999, 46.5694308 ], + [ 9.7498253, 46.5691023 ], + [ 9.7494529, 46.5689381 ], + [ 9.7488472, 46.5687326 ], + [ 9.7485599, 46.5686124 ], + [ 9.7479789, 46.568395 ], + [ 9.747686, 46.5681432 ], + [ 9.7473959, 46.5681491 ], + [ 9.7469638, 46.5681349 ], + [ 9.7466635, 46.5679005 ], + [ 9.7467574, 46.5675775 ], + [ 9.7464385, 46.5674809 ], + [ 9.7461192, 46.5669945 ], + [ 9.7453672, 46.5666661 ], + [ 9.7450157, 46.5663982 ], + [ 9.744971, 46.5661355 ], + [ 9.7451765, 46.565713 ], + [ 9.745309, 46.5653205 ], + [ 9.745416, 46.5649229 ], + [ 9.7454105, 46.5646021 ], + [ 9.7452655, 46.5643185 ], + [ 9.7450163, 46.5641173 ], + [ 9.7446291, 46.5639876 ], + [ 9.7444066, 46.5640094 ], + [ 9.7434158, 46.5641041 ], + [ 9.7426237, 46.5641948 ], + [ 9.7424, 46.5641879 ], + [ 9.741412, 46.5643512 ], + [ 9.740969400000001, 46.5644692 ], + [ 9.7404736, 46.5645079 ], + [ 9.7398792, 46.5643768 ], + [ 9.7392966, 46.5643314 ], + [ 9.7389634, 46.5642807 ], + [ 9.7383727, 46.5642355 ], + [ 9.7379387, 46.5641755 ], + [ 9.7375712, 46.5642977 ], + [ 9.7372225, 46.5644767 ], + [ 9.7367755, 46.5646862 ], + [ 9.7362846, 46.5648396 ], + [ 9.7358982, 46.5649219 ], + [ 9.7355259, 46.5649295 ], + [ 9.7349061, 46.564988 ], + [ 9.7344934, 46.565025 ], + [ 9.7339818, 46.5650754 ], + [ 9.733659, 46.5650992 ], + [ 9.733035600000001, 46.5652437 ], + [ 9.7328053, 46.5652942 ], + [ 9.7322192, 46.5653577 ], + [ 9.7317887, 46.5653607 ], + [ 9.7314705, 46.5652984 ], + [ 9.7307763, 46.5651406 ], + [ 9.7304785, 46.5649632 ], + [ 9.7301749, 46.5648433 ], + [ 9.7298796, 46.564918 ], + [ 9.729690699999999, 46.5649619 ], + [ 9.7292185, 46.564983 ], + [ 9.7288718, 46.5649403 ], + [ 9.7284907, 46.5650128 ], + [ 9.7281687, 46.5650543 ], + [ 9.7278562, 46.5651072 ], + [ 9.7273925, 46.5651345 ], + [ 9.7269882, 46.565178 ], + [ 9.7263339, 46.5652096 ], + [ 9.725846, 46.5652431 ], + [ 9.725433, 46.5652924 ], + [ 9.7248949, 46.5653157 ], + [ 9.7242555, 46.5652952 ], + [ 9.7242994, 46.5650016 ], + [ 9.7243074, 46.5648064 ], + [ 9.7243132, 46.5645767 ], + [ 9.7242701, 46.5643654 ], + [ 9.7241716, 46.5641954 ], + [ 9.723863099999999, 46.5638814 ], + [ 9.7237231, 46.5638507 ], + [ 9.7232746, 46.5636363 ], + [ 9.7225571, 46.5635247 ], + [ 9.7217325, 46.563232 ], + [ 9.7213174, 46.5631142 ], + [ 9.7209605, 46.5636233 ], + [ 9.7206824, 46.5638359 ], + [ 9.7202059, 46.5642954 ], + [ 9.7199229, 46.5643911 ], + [ 9.7189788, 46.5645901 ], + [ 9.7184668, 46.5648253 ], + [ 9.7179718, 46.5654652 ], + [ 9.7176206, 46.5654903 ], + [ 9.7173935, 46.5656748 ], + [ 9.7170123, 46.5665374 ], + [ 9.7169991, 46.5665921 ], + [ 9.7164394, 46.5666453 ], + [ 9.7159412, 46.5666268 ], + [ 9.7152218, 46.5666641 ], + [ 9.7149877, 46.5666231 ], + [ 9.7146186, 46.5665159 ], + [ 9.71423, 46.5663517 ], + [ 9.7134794, 46.5662465 ], + [ 9.7129057, 46.5662179 ], + [ 9.7121575, 46.56617 ], + [ 9.7114663, 46.5660807 ], + [ 9.7109132, 46.56596 ], + [ 9.7105696, 46.565858 ], + [ 9.7099705, 46.5656121 ], + [ 9.7091466, 46.5653535 ], + [ 9.7087573, 46.5651723 ], + [ 9.7081408, 46.5648982 ], + [ 9.7076269, 46.5647021 ], + [ 9.7069581, 46.5643888 ], + [ 9.70672, 46.5642331 ], + [ 9.7059307, 46.5640025 ], + [ 9.7056368, 46.5639168 ], + [ 9.7052954, 46.5638836 ], + [ 9.705074, 46.5639131 ], + [ 9.7040547, 46.5637394 ], + [ 9.7038549, 46.5637209 ], + [ 9.7035301, 46.5636935 ], + [ 9.7021776, 46.563644 ], + [ 9.701191, 46.5636881 ], + [ 9.7009638, 46.5642031 ], + [ 9.7007978, 46.564484 ], + [ 9.7005952, 46.5647494 ], + [ 9.700169, 46.5653009 ], + [ 9.6998077, 46.5658676 ], + [ 9.6996783, 46.5660294 ], + [ 9.6994322, 46.5662303 ], + [ 9.6988004, 46.5667042 ], + [ 9.6981502, 46.5671458 ], + [ 9.6979633, 46.5673578 ], + [ 9.6977902, 46.5676063 ], + [ 9.6976385, 46.5678013 ], + [ 9.6975004, 46.5678939 ], + [ 9.6973253, 46.5679585 ], + [ 9.697169, 46.5680433 ], + [ 9.6969231, 46.5682483 ], + [ 9.6965491, 46.5685088 ], + [ 9.6959957, 46.5688711 ], + [ 9.6956852, 46.5690896 ], + [ 9.695516, 46.5692971 ], + [ 9.695335, 46.5694925 ], + [ 9.6950735, 46.569755 ], + [ 9.6946469, 46.5701637 ], + [ 9.6944397, 46.5703188 ], + [ 9.6942513, 46.5703388 ], + [ 9.6939707, 46.5702791 ], + [ 9.6937327, 46.5702635 ], + [ 9.6935286, 46.5703368 ], + [ 9.6933241, 46.5705369 ], + [ 9.693111, 46.5706881 ], + [ 9.6927101, 46.5710104 ], + [ 9.6926321, 46.5711346 ], + [ 9.6926729, 46.5712522 ], + [ 9.692803, 46.5714006 ], + [ 9.6927839, 46.5714699 ], + [ 9.6926145, 46.5715538 ], + [ 9.6921669, 46.5717546 ], + [ 9.6920607, 46.5718874 ], + [ 9.6920741, 46.5720713 ], + [ 9.6921897, 46.5721651 ], + [ 9.6922642, 46.5722288 ], + [ 9.6922947, 46.5722973 ], + [ 9.6922424, 46.5723713 ], + [ 9.6921333, 46.5724156 ], + [ 9.6919897, 46.5724531 ], + [ 9.6917284, 46.572466 ], + [ 9.6914785, 46.5724785 ], + [ 9.6912303, 46.5725296 ], + [ 9.6910729, 46.5726287 ], + [ 9.6908624, 46.5727825 ], + [ 9.6907411, 46.5729462 ], + [ 9.6905223, 46.573449600000004 ], + [ 9.6903719, 46.5737174 ], + [ 9.6900415, 46.5742039 ], + [ 9.68979, 46.5745697 ], + [ 9.6893595, 46.5750621 ], + [ 9.6890579, 46.5753597 ], + [ 9.6887822, 46.5755758 ], + [ 9.6885973, 46.5756974 ], + [ 9.6885169, 46.5757471 ], + [ 9.6884628, 46.575818 ], + [ 9.6885499, 46.5759301 ], + [ 9.6885403, 46.5760132 ], + [ 9.6884876, 46.5761192 ], + [ 9.6882717, 46.5762632 ], + [ 9.6879805, 46.5764176 ], + [ 9.687709, 46.5765978 ], + [ 9.6874953, 46.5767943 ], + [ 9.6870668, 46.5772967 ], + [ 9.686825, 46.5774238 ], + [ 9.6866713, 46.5775535 ], + [ 9.686289, 46.57795 ], + [ 9.6859666, 46.5782798 ], + [ 9.6858705, 46.578557 ], + [ 9.6856052, 46.5787283 ], + [ 9.6850782, 46.5791582 ], + [ 9.6846908, 46.5794544 ], + [ 9.6843349, 46.5798 ], + [ 9.6835083, 46.5802818 ], + [ 9.6830229, 46.5806344 ], + [ 9.6829185, 46.5807712 ], + [ 9.6828319, 46.5808875 ], + [ 9.682785299999999, 46.5808843 ], + [ 9.6827211, 46.5811051 ], + [ 9.6826361, 46.5812194 ], + [ 9.6824044, 46.5813365 ], + [ 9.682021, 46.5815523 ], + [ 9.6814207, 46.5818286 ], + [ 9.681004, 46.5821845 ], + [ 9.6807669, 46.5822694 ], + [ 9.6805603, 46.582285 ], + [ 9.6801379, 46.5821887 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "JBG0028", + "country" : "CHE", + "name" : [ + { + "text" : "Eidgenössisches Jagdbanngebiet Piz Ela", + "lang" : "de-CH" + }, + { + "text" : "District franc fédéral Piz Ela", + "lang" : "fr-CH" + }, + { + "text" : "Bandita federale di caccia Piz Ela", + "lang" : "it-CH" + }, + { + "text" : "Federal Game Reserve Piz Ela", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.166272, 46.4801068 ], + [ 6.1662297, 46.4801908 ], + [ 6.1661798, 46.4802522 ], + [ 6.1661215, 46.4803079 ], + [ 6.1659904, 46.4803461 ], + [ 6.1658511, 46.4803843 ], + [ 6.1656626, 46.480422 ], + [ 6.1654497, 46.4804594 ], + [ 6.1653011, 46.480565 ], + [ 6.1652261, 46.4806374 ], + [ 6.1651596, 46.4807156 ], + [ 6.1651001, 46.4808388 ], + [ 6.1650166, 46.480945 ], + [ 6.1649745, 46.4810234 ], + [ 6.1648675, 46.4810899 ], + [ 6.1647112, 46.4811448 ], + [ 6.1645724, 46.4811604 ], + [ 6.1644178, 46.4811252 ], + [ 6.1641168, 46.481083 ], + [ 6.163808, 46.481007 ], + [ 6.1635316, 46.4809595 ], + [ 6.1632713, 46.4809009 ], + [ 6.162904, 46.4809087 ], + [ 6.1625535, 46.4808942 ], + [ 6.1622919, 46.4809256 ], + [ 6.1621678, 46.481009 ], + [ 6.1620679, 46.4811206 ], + [ 6.1619428, 46.4812825 ], + [ 6.1619403, 46.4814232 ], + [ 6.1624208, 46.4823786 ], + [ 6.1625716, 46.4826107 ], + [ 6.1626658, 46.4828086 ], + [ 6.1627207, 46.4829329 ], + [ 6.1627345, 46.4830737 ], + [ 6.1627165999999995, 46.4831748 ], + [ 6.1626741, 46.4832701 ], + [ 6.1626069, 46.4833764 ], + [ 6.1625233999999995, 46.4834826 ], + [ 6.1625048, 46.483595 ], + [ 6.1625107, 46.4837244 ], + [ 6.1625569, 46.4838711 ], + [ 6.1626597, 46.4840691 ], + [ 6.162706, 46.4842102 ], + [ 6.1626548, 46.4843278 ], + [ 6.1625805, 46.4843891 ], + [ 6.1624734, 46.4844444 ], + [ 6.1623425, 46.4844714 ], + [ 6.1622119, 46.4844702 ], + [ 6.1620816, 46.4844353 ], + [ 6.1619115, 46.484383 ], + [ 6.1617336, 46.4842801 ], + [ 6.1616456, 46.4841836 ], + [ 6.1615503, 46.4840476 ], + [ 6.1614547, 46.4839061 ], + [ 6.1613833, 46.4838097 ], + [ 6.1612551, 46.4836736 ], + [ 6.1610376, 46.4835083 ], + [ 6.1605465, 46.4831549 ], + [ 6.1602229, 46.483 ], + [ 6.1600691, 46.482931 ], + [ 6.1598898, 46.482907 ], + [ 6.1596781, 46.4828881 ], + [ 6.1595219, 46.4829541 ], + [ 6.1593488, 46.4830482 ], + [ 6.1591577, 46.4832265 ], + [ 6.1590257, 46.483321 ], + [ 6.1588681, 46.4834603 ], + [ 6.1587446, 46.483521 ], + [ 6.15863, 46.4835312 ], + [ 6.1584913, 46.4835412 ], + [ 6.1584013, 46.4835628 ], + [ 6.1583435, 46.4835792 ], + [ 6.1582607, 46.4836572 ], + [ 6.1581615, 46.4837183 ], + [ 6.1580875, 46.4837682 ], + [ 6.1578569, 46.4838617 ], + [ 6.1576113, 46.4839214 ], + [ 6.1574469, 46.4839874 ], + [ 6.1571684, 46.4840467 ], + [ 6.1568823, 46.4840777 ], + [ 6.1565634, 46.484103 ], + [ 6.1562048, 46.4840885 ], + [ 6.1560492, 46.4841095 ], + [ 6.1558525, 46.4841639 ], + [ 6.1557209, 46.4842246 ], + [ 6.1556127, 46.4843419 ], + [ 6.1554871, 46.4845038 ], + [ 6.1553776, 46.4846942 ], + [ 6.1551349, 46.4850409 ], + [ 6.1550267, 46.485158 ], + [ 6.1549116999999995, 46.485202 ], + [ 6.15478, 46.4852458 ], + [ 6.1546171, 46.485233 ], + [ 6.1544793, 46.4851923 ], + [ 6.1543174, 46.4851177 ], + [ 6.154148, 46.4850204 ], + [ 6.154043, 46.4849519 ], + [ 6.153897, 46.4848943 ], + [ 6.1536774, 46.4848529 ], + [ 6.1535307, 46.4848571 ], + [ 6.1533183, 46.4848551 ], + [ 6.1530811, 46.4849036 ], + [ 6.152836, 46.484907 ], + [ 6.1525667, 46.4848989 ], + [ 6.152241, 46.4848677 ], + [ 6.1518992, 46.4848139 ], + [ 6.1516306, 46.4847777 ], + [ 6.1514271, 46.4847589 ], + [ 6.1513042, 46.4847747 ], + [ 6.1511654, 46.4847959 ], + [ 6.1510339, 46.4848453 ], + [ 6.1509509, 46.4849121 ], + [ 6.1508271, 46.4850009 ], + [ 6.1506218, 46.4850609 ], + [ 6.1504745, 46.4850934 ], + [ 6.150303, 46.4850973 ], + [ 6.1499685, 46.4850773 ], + [ 6.1496107, 46.485029 ], + [ 6.1491056, 46.484973600000004 ], + [ 6.1485603, 46.4849011 ], + [ 6.1481451, 46.4848522 ], + [ 6.1474606, 46.4847783 ], + [ 6.1467527, 46.4846817 ], + [ 6.1465172, 46.4846232 ], + [ 6.1463873, 46.4845769 ], + [ 6.1462988, 46.4845142 ], + [ 6.1461542, 46.4843835 ], + [ 6.1460181, 46.4842359 ], + [ 6.1457603, 46.4840534 ], + [ 6.1454863, 46.4838708 ], + [ 6.145188, 46.4836822 ], + [ 6.1448726, 46.4835274 ], + [ 6.1445735, 46.4833727 ], + [ 6.1443065, 46.483252 ], + [ 6.1441272, 46.4832279 ], + [ 6.1439966, 46.4832435 ], + [ 6.1437992, 46.4833092 ], + [ 6.1434467, 46.483396 ], + [ 6.1430691, 46.4835275 ], + [ 6.1427161, 46.4836536 ], + [ 6.1424624, 46.4836738 ], + [ 6.1422836, 46.4836439 ], + [ 6.1421054999999996, 46.483569 ], + [ 6.1418703, 46.4834824 ], + [ 6.141578, 46.4834009 ], + [ 6.1412617, 46.4833023 ], + [ 6.1408466, 46.4832477 ], + [ 6.1403835, 46.4831252 ], + [ 6.1401477, 46.483095 ], + [ 6.1399437, 46.4830987 ], + [ 6.1397958, 46.4831422 ], + [ 6.1396891, 46.483175 ], + [ 6.1395657, 46.4832301 ], + [ 6.1394247, 46.4833583 ], + [ 6.1393491000000004, 46.4834701 ], + [ 6.1392085, 46.4835813 ], + [ 6.1390681, 46.4836644 ], + [ 6.138871, 46.4837357 ], + [ 6.1385433, 46.4838058 ], + [ 6.1381918, 46.4838307 ], + [ 6.138021, 46.4838065 ], + [ 6.1378423, 46.4837598 ], + [ 6.1376397, 46.4836848 ], + [ 6.1374209, 46.4835927 ], + [ 6.1371386, 46.4834324 ], + [ 6.1368642, 46.4832666 ], + [ 6.1366373, 46.4831745 ], + [ 6.1364752, 46.4831111 ], + [ 6.1362964, 46.4830813 ], + [ 6.1361087, 46.4830851 ], + [ 6.1359854, 46.4831177 ], + [ 6.1358538, 46.4831728 ], + [ 6.1357058, 46.4832332 ], + [ 6.1356316, 46.4832889 ], + [ 6.1355725, 46.4833783 ], + [ 6.1355383, 46.4834624 ], + [ 6.1355287, 46.483541 ], + [ 6.1355344, 46.4836762 ], + [ 6.1356139, 46.4838064 ], + [ 6.135644, 46.4839249 ], + [ 6.1356176, 46.4840428 ], + [ 6.1354772, 46.4841258 ], + [ 6.1353861, 46.4842038 ], + [ 6.1352306, 46.4842249 ], + [ 6.1350757, 46.4842178 ], + [ 6.1349047, 46.4841992 ], + [ 6.1347421, 46.4841583 ], + [ 6.1345233, 46.4840831 ], + [ 6.1344107, 46.483992 ], + [ 6.1342422, 46.4838385 ], + [ 6.1340582, 46.4836398 ], + [ 6.1338741, 46.4834411 ], + [ 6.1337064, 46.483237 ], + [ 6.1335301, 46.4830722 ], + [ 6.1334021, 46.4829471 ], + [ 6.1332408, 46.4828331 ], + [ 6.1329985, 46.4827012 ], + [ 6.1328132, 46.4825701 ], + [ 6.1326673, 46.4825124 ], + [ 6.1324884, 46.4824883 ], + [ 6.1323172, 46.482481 ], + [ 6.1320969, 46.4824676 ], + [ 6.1319103, 46.4824265 ], + [ 6.1317733, 46.4823183 ], + [ 6.1315736, 46.4820913 ], + [ 6.1311476, 46.4817497 ], + [ 6.1306243, 46.4813564 ], + [ 6.1300917, 46.4810475 ], + [ 6.1300023, 46.4810072 ], + [ 6.1296858, 46.4809312 ], + [ 6.1291741, 46.4808025 ], + [ 6.1288246, 46.4807147 ], + [ 6.1286134, 46.480679 ], + [ 6.1284174, 46.4806715 ], + [ 6.1282782, 46.4807039 ], + [ 6.1281705, 46.4807817 ], + [ 6.1280628, 46.4808763 ], + [ 6.1279546, 46.4809936 ], + [ 6.1279447, 46.4810834 ], + [ 6.1279845, 46.4811345 ], + [ 6.1280407, 46.4811856 ], + [ 6.1280728, 46.4812197 ], + [ 6.1281607, 46.4813218 ], + [ 6.1282163, 46.481412399999996 ], + [ 6.1282305, 46.4815138 ], + [ 6.1281798, 46.4816091 ], + [ 6.1280802, 46.4817038 ], + [ 6.1278911, 46.4817639 ], + [ 6.1277597, 46.4818133 ], + [ 6.1275965, 46.4818287 ], + [ 6.1273113, 46.4817922 ], + [ 6.12697, 46.4817157 ], + [ 6.1266047, 46.4816222 ], + [ 6.1258159, 46.4814741 ], + [ 6.125563, 46.4814605 ], + [ 6.1253997, 46.4814813 ], + [ 6.1253337, 46.4815201 ], + [ 6.1253, 46.4815817 ], + [ 6.1252491, 46.4816826 ], + [ 6.1251889, 46.4818339 ], + [ 6.1251299, 46.4819516 ], + [ 6.1250713, 46.4820185 ], + [ 6.1249893, 46.4820402 ], + [ 6.1248666, 46.4820503 ], + [ 6.1247537, 46.4819873 ], + [ 6.1246252, 46.4818848 ], + [ 6.1244964, 46.4817879 ], + [ 6.1244086, 46.4816858 ], + [ 6.1242788, 46.481634 ], + [ 6.1241647, 46.4816384 ], + [ 6.1240504, 46.4816374 ], + [ 6.1238961, 46.4816021 ], + [ 6.1237258, 46.4815273 ], + [ 6.1236367, 46.4815096 ], + [ 6.1235227, 46.4814917 ], + [ 6.1234167, 46.4814851 ], + [ 6.1230254, 46.4814588 ], + [ 6.1226993, 46.4814444 ], + [ 6.1223576, 46.4813849 ], + [ 6.1220903, 46.4812979 ], + [ 6.1219118, 46.481223 ], + [ 6.121806, 46.4812221 ], + [ 6.1216915, 46.4812267 ], + [ 6.1216168, 46.4813047 ], + [ 6.1215499, 46.4813941 ], + [ 6.1214825, 46.4815059 ], + [ 6.1214143, 46.481646 ], + [ 6.1212505, 46.4816895 ], + [ 6.1126472, 46.4831321 ], + [ 6.1129513, 46.4834445 ], + [ 6.1131032, 46.4836092 ], + [ 6.1132145, 46.4837678 ], + [ 6.1133172, 46.4839432 ], + [ 6.1134282, 46.4841132 ], + [ 6.1135391, 46.4843055 ], + [ 6.113674, 46.4844982 ], + [ 6.1137455, 46.4846058 ], + [ 6.1138653, 46.4847477 ], + [ 6.1140175, 46.4848841 ], + [ 6.1141855, 46.4850715 ], + [ 6.1143935, 46.4853042 ], + [ 6.1146088, 46.4855707 ], + [ 6.1147912, 46.485837 ], + [ 6.1150041, 46.4862329 ], + [ 6.1151225, 46.4864535 ], + [ 6.1152566, 46.4866968 ], + [ 6.115366, 46.486951 ], + [ 6.1155164, 46.4872057 ], + [ 6.1156498, 46.4874771 ], + [ 6.1157518, 46.4877033 ], + [ 6.1159019, 46.4879579 ], + [ 6.1160762, 46.4882353 ], + [ 6.1161783, 46.4884557 ], + [ 6.1163054, 46.4886371 ], + [ 6.1164331, 46.4887903 ], + [ 6.1165604, 46.4889603 ], + [ 6.116705, 46.489091 ], + [ 6.1168407, 46.4892499 ], + [ 6.117058, 46.489404 ], + [ 6.1172023, 46.489546 ], + [ 6.1173702, 46.489739 ], + [ 6.1174411, 46.489869 ], + [ 6.1175774, 46.4900054 ], + [ 6.1176817, 46.4900852 ], + [ 6.1178889, 46.4903516 ], + [ 6.1180236, 46.4905893 ], + [ 6.1180935, 46.4907757 ], + [ 6.1181551, 46.4909732 ], + [ 6.1181438, 46.4911363 ], + [ 6.1181654, 46.4912828 ], + [ 6.1181693, 46.491508 ], + [ 6.1181754, 46.4916262 ], + [ 6.1182627, 46.4917509 ], + [ 6.1183746, 46.4918701 ], + [ 6.1184702, 46.4920061 ], + [ 6.1185419, 46.4921024 ], + [ 6.1185719, 46.4922434 ], + [ 6.118624, 46.4924914 ], + [ 6.1186681, 46.4927564 ], + [ 6.1187286, 46.4930101 ], + [ 6.1188204, 46.4933543 ], + [ 6.1189026, 46.4937547 ], + [ 6.1189522, 46.4941434 ], + [ 6.1190758, 46.4945161 ], + [ 6.1191772, 46.4947645 ], + [ 6.1192949, 46.4950302 ], + [ 6.1193969, 46.4952394 ], + [ 6.1195078, 46.4954318 ], + [ 6.1196189, 46.4956016 ], + [ 6.1197297, 46.4957828 ], + [ 6.1198655, 46.4959417 ], + [ 6.1199448, 46.4960606 ], + [ 6.120048, 46.4962191 ], + [ 6.1201431, 46.4963608 ], + [ 6.1202622, 46.4965532 ], + [ 6.1203801, 46.4967907 ], + [ 6.1204736, 46.4970166 ], + [ 6.1205677, 46.4972314 ], + [ 6.1206376, 46.4974178 ], + [ 6.120749, 46.4975595 ], + [ 6.1208849, 46.4977296 ], + [ 6.1210204, 46.4978997 ], + [ 6.121302, 46.4981219 ], + [ 6.1215743, 46.4983947 ], + [ 6.1218056, 46.4986782 ], + [ 6.1220842, 46.4990579 ], + [ 6.1224118, 46.4994493 ], + [ 6.1224653, 46.4996411 ], + [ 6.1224626, 46.4997705 ], + [ 6.122492, 46.4999508 ], + [ 6.1226271, 46.5001379 ], + [ 6.1227316, 46.5002459 ], + [ 6.122892, 46.5003768 ], + [ 6.1229064, 46.5004894 ], + [ 6.1228727, 46.500551 ], + [ 6.1228459, 46.5006689 ], + [ 6.1227521, 46.5008932 ], + [ 6.1226578, 46.5011173 ], + [ 6.1225821, 46.5012348 ], + [ 6.1224979, 46.5013803 ], + [ 6.1224232, 46.5014584 ], + [ 6.1222668, 46.5015243 ], + [ 6.122175, 46.5016192 ], + [ 6.1220996, 46.5017366 ], + [ 6.1220077, 46.5018483 ], + [ 6.121949, 46.5019209 ], + [ 6.1217857, 46.5019194 ], + [ 6.1216553, 46.5019068 ], + [ 6.1213216, 46.5018699 ], + [ 6.1210365, 46.5018221 ], + [ 6.1208823, 46.5017813 ], + [ 6.1208241, 46.5018313 ], + [ 6.1207656, 46.5019097 ], + [ 6.1206982, 46.5020215 ], + [ 6.1206057, 46.5021725 ], + [ 6.1204807, 46.5023064 ], + [ 6.1203468, 46.502474 ], + [ 6.1194137, 46.5021837 ], + [ 6.1192026, 46.5021085 ], + [ 6.1190398, 46.5020901 ], + [ 6.1188841, 46.502128 ], + [ 6.1187769, 46.5021833 ], + [ 6.1186865, 46.5022161 ], + [ 6.1185477, 46.5022148 ], + [ 6.1183846, 46.5022076 ], + [ 6.1182458, 46.5022064 ], + [ 6.1180344, 46.5021762 ], + [ 6.11788, 46.5021297 ], + [ 6.1177096, 46.5020718 ], + [ 6.1175153, 46.5019911 ], + [ 6.1173617, 46.5019108 ], + [ 6.1171674, 46.5018301 ], + [ 6.1169963, 46.5018004 ], + [ 6.1168493, 46.5018215 ], + [ 6.1166442, 46.501864499999996 ], + [ 6.116496, 46.5019307 ], + [ 6.1162497, 46.5019959 ], + [ 6.1160212, 46.5019992 ], + [ 6.1158507, 46.5019639 ], + [ 6.1156385, 46.5019506 ], + [ 6.1154832, 46.5019547 ], + [ 6.1153677, 46.5020324 ], + [ 6.1152594, 46.5021326 ], + [ 6.1150864, 46.5022322 ], + [ 6.1149804, 46.50222 ], + [ 6.1149138, 46.5022981 ], + [ 6.1148384, 46.5023819 ], + [ 6.1147396, 46.5024429 ], + [ 6.1146233, 46.5025374 ], + [ 6.114467, 46.5026034 ], + [ 6.1142776, 46.502686 ], + [ 6.1142023, 46.5027866 ], + [ 6.1141756, 46.5029102 ], + [ 6.1141327, 46.5030166 ], + [ 6.1141627, 46.5031576 ], + [ 6.114077, 46.5033819 ], + [ 6.1139671, 46.5035777 ], + [ 6.1138248, 46.5037677 ], + [ 6.1137174, 46.5038342 ], + [ 6.113569, 46.5039059 ], + [ 6.1133633, 46.5039939 ], + [ 6.113133, 46.5040874 ], + [ 6.113058, 46.5041711 ], + [ 6.1130066, 46.5042944 ], + [ 6.11288, 46.5045239 ], + [ 6.1126411, 46.5046343 ], + [ 6.1125266, 46.5046387 ], + [ 6.1124794, 46.5045539 ], + [ 6.1124641, 46.5044805 ], + [ 6.1124161, 46.5044295 ], + [ 6.1119638, 46.5041943 ], + [ 6.1117126, 46.5040906 ], + [ 6.1114368, 46.503998 ], + [ 6.1112503, 46.5039174 ], + [ 6.111088, 46.5038764 ], + [ 6.1109911, 46.503808 ], + [ 6.1108705, 46.503728100000004 ], + [ 6.1107005, 46.5036364 ], + [ 6.1105468, 46.5035786 ], + [ 6.1103185, 46.5035595 ], + [ 6.1100911, 46.503501 ], + [ 6.1099208, 46.5034375 ], + [ 6.1098083, 46.5033408 ], + [ 6.10968, 46.5032101 ], + [ 6.1095347, 46.5031411 ], + [ 6.1093538, 46.5031956 ], + [ 6.1093275, 46.5032063 ], + [ 6.1099412, 46.5041653 ], + [ 6.1125449, 46.5095759 ], + [ 6.1147122, 46.5115356 ], + [ 6.1160738, 46.512874 ], + [ 6.1171973, 46.5138318 ], + [ 6.1206404, 46.5169307 ], + [ 6.1253944, 46.5208095 ], + [ 6.1289746, 46.5236669 ], + [ 6.13524, 46.5287053 ], + [ 6.1379611, 46.5310127 ], + [ 6.1437355, 46.5277678 ], + [ 6.1473065, 46.5310744 ], + [ 6.1522187, 46.5355565 ], + [ 6.1534921, 46.5368305 ], + [ 6.1537626, 46.536867 ], + [ 6.1539247, 46.5369361 ], + [ 6.1541525, 46.5369888 ], + [ 6.1544211, 46.5370531 ], + [ 6.1546735, 46.5370949 ], + [ 6.1550072, 46.537143 ], + [ 6.1553903, 46.5371915 ], + [ 6.155602, 46.5372329 ], + [ 6.1557238, 46.5372846 ], + [ 6.1558364, 46.5373645 ], + [ 6.1559736, 46.5374557 ], + [ 6.1561435, 46.5375586 ], + [ 6.1563375, 46.5376561 ], + [ 6.1565319, 46.537759199999996 ], + [ 6.1568323, 46.5378576 ], + [ 6.1571165, 46.5379502 ], + [ 6.1574173, 46.5380318 ], + [ 6.1576609, 46.5381185 ], + [ 6.1578881, 46.5381937 ], + [ 6.1581151, 46.5382914 ], + [ 6.158277, 46.5383717 ], + [ 6.1584473, 46.5384408 ], + [ 6.1586422, 46.5385046 ], + [ 6.1589348, 46.538586 ], + [ 6.1591218, 46.5386383 ], + [ 6.1593489, 46.5387192 ], + [ 6.1596075, 46.5388791 ], + [ 6.1598175, 46.5390105 ], + [ 6.1601485, 46.5392274 ], + [ 6.1605607, 46.5394562 ], + [ 6.1607632, 46.5395594 ], + [ 6.1609409, 46.5396792 ], + [ 6.1611752, 46.5398164 ], + [ 6.1613607, 46.5399475 ], + [ 6.1615783, 46.5401015 ], + [ 6.161707, 46.5402265 ], + [ 6.1618917, 46.5404083 ], + [ 6.1620371, 46.5404996 ], + [ 6.1621658, 46.5406021 ], + [ 6.1623187999999995, 46.5407329 ], + [ 6.162415, 46.5408182 ], + [ 6.1624874, 46.5408921 ], + [ 6.1626321, 46.5410284 ], + [ 6.1627849, 46.541148 ], + [ 6.1629546, 46.5412621 ], + [ 6.1631, 46.5413478 ], + [ 6.1632855, 46.5414846 ], + [ 6.1634641, 46.5415481 ], + [ 6.1636257, 46.5416396 ], + [ 6.1638036, 46.5417313 ], + [ 6.1640232, 46.541784 ], + [ 6.1642908, 46.5419103 ], + [ 6.1645017, 46.5419853 ], + [ 6.1646958, 46.5420828 ], + [ 6.1648986, 46.5421746 ], + [ 6.165117, 46.5422947 ], + [ 6.1653433, 46.5424263 ], + [ 6.1655299, 46.5424955 ], + [ 6.1657733, 46.5425934 ], + [ 6.1659188, 46.5426792 ], + [ 6.1660723, 46.5427706 ], + [ 6.1662493, 46.5429185 ], + [ 6.166459, 46.5430836 ], + [ 6.1667009, 46.5432434 ], + [ 6.1668389, 46.5433009 ], + [ 6.1669851, 46.5433586 ], + [ 6.1671956, 46.5434505 ], + [ 6.1673093, 46.5435022 ], + [ 6.167487, 46.5436051 ], + [ 6.1676652, 46.5437023 ], + [ 6.1678677, 46.5437886 ], + [ 6.1679565, 46.5438401 ], + [ 6.1681024, 46.5439089 ], + [ 6.1683132, 46.5440066 ], + [ 6.1685472, 46.5441606 ], + [ 6.1687817, 46.544309 ], + [ 6.1690563, 46.544480300000004 ], + [ 6.1693227, 46.5446403 ], + [ 6.1695577, 46.5447494 ], + [ 6.1697195, 46.5448353 ], + [ 6.1698479, 46.5449715 ], + [ 6.1699355, 46.5451131 ], + [ 6.1699903, 46.5452428 ], + [ 6.1700868, 46.5453169 ], + [ 6.1702247, 46.5453801 ], + [ 6.1703130999999996, 46.5454485 ], + [ 6.1704672, 46.5455342 ], + [ 6.1705636, 46.5456083 ], + [ 6.1706852, 46.5456713 ], + [ 6.1708149, 46.5457175 ], + [ 6.1709692, 46.5457752 ], + [ 6.1711317, 46.5458329 ], + [ 6.1712613, 46.5458847 ], + [ 6.1715135, 46.5459546 ], + [ 6.1717485, 46.5460636 ], + [ 6.1719756, 46.5461444 ], + [ 6.172357, 46.5462829 ], + [ 6.1726087, 46.5463753 ], + [ 6.1728439999999996, 46.5464731 ], + [ 6.1729731, 46.5465643 ], + [ 6.1731265, 46.5466614 ], + [ 6.173247, 46.5467694 ], + [ 6.1733924, 46.5468607 ], + [ 6.1735462, 46.5469409 ], + [ 6.1736753, 46.547049 ], + [ 6.173828, 46.5471741 ], + [ 6.1739896, 46.5472882 ], + [ 6.1742062, 46.5475039 ], + [ 6.174391, 46.5476858 ], + [ 6.1745830999999995, 46.5479069 ], + [ 6.1747996, 46.5481283 ], + [ 6.1750247, 46.5483274 ], + [ 6.1752182, 46.5484867 ], + [ 6.175372, 46.5485668 ], + [ 6.1766994, 46.5492597 ], + [ 6.1769453, 46.5473655 ], + [ 6.1770935, 46.5463934 ], + [ 6.1771621, 46.546214 ], + [ 6.1772863, 46.5461137 ], + [ 6.1774264, 46.5460475 ], + [ 6.1775668, 46.5459643 ], + [ 6.1777391, 46.5459153 ], + [ 6.1779441, 46.5458777 ], + [ 6.1781892, 46.5458687 ], + [ 6.1785563, 46.5459058 ], + [ 6.1788827, 46.5459256 ], + [ 6.1791599, 46.5459562 ], + [ 6.1794782, 46.5459703 ], + [ 6.1800006, 46.5460032 ], + [ 6.1802452, 46.5460335 ], + [ 6.1804413, 46.5460296 ], + [ 6.1806128, 46.5460312 ], + [ 6.1808093, 46.5459936 ], + [ 6.1810306, 46.5459562 ], + [ 6.1812688, 46.5458964 ], + [ 6.1816216, 46.5457928 ], + [ 6.1817779, 46.5457491 ], + [ 6.1819498, 46.5457168 ], + [ 6.182121, 46.5457465 ], + [ 6.1822098, 46.5458036 ], + [ 6.1823229, 46.5458778 ], + [ 6.1824518, 46.5459802 ], + [ 6.1826539, 46.5460834 ], + [ 6.18293, 46.5461814 ], + [ 6.1831738, 46.5462624 ], + [ 6.1834427, 46.5462986 ], + [ 6.1836457, 46.546368 ], + [ 6.1838, 46.5464257 ], + [ 6.1839865, 46.5465004 ], + [ 6.1842217999999995, 46.5465983 ], + [ 6.1845535, 46.5467757 ], + [ 6.1847806, 46.5468734 ], + [ 6.1849675, 46.5469313 ], + [ 6.1851465, 46.5469611 ], + [ 6.1853672, 46.5469687 ], + [ 6.1857016, 46.5469942 ], + [ 6.1859466, 46.5470076 ], + [ 6.1861502999999995, 46.5470263 ], + [ 6.1864187, 46.5471019 ], + [ 6.1867197, 46.5471778 ], + [ 6.1869797, 46.5472644 ], + [ 6.1873285, 46.5473914 ], + [ 6.1877184, 46.5475187 ], + [ 6.1880183, 46.5476564 ], + [ 6.188237, 46.547771 ], + [ 6.188432, 46.5478289 ], + [ 6.1886443, 46.5478477 ], + [ 6.1887995, 46.5478323 ], + [ 6.188931, 46.5478053 ], + [ 6.1891032, 46.5477562 ], + [ 6.1893165, 46.5476961 ], + [ 6.1894975, 46.5476415 ], + [ 6.1897026, 46.5475814 ], + [ 6.1898831, 46.5475493 ], + [ 6.1901278, 46.5475571 ], + [ 6.1903803, 46.5475987 ], + [ 6.1905751, 46.5476681 ], + [ 6.1909337, 46.5477388 ], + [ 6.1913071, 46.5478546 ], + [ 6.1914304, 46.5478276 ], + [ 6.1915044, 46.5478 ], + [ 6.1915459, 46.5477498 ], + [ 6.1915473, 46.547671 ], + [ 6.1915323, 46.5475977 ], + [ 6.1914451, 46.5474562 ], + [ 6.1913246, 46.5473258 ], + [ 6.1911408, 46.547099 ], + [ 6.1909484, 46.5468892 ], + [ 6.1905708, 46.5465143 ], + [ 6.190281, 46.5462698 ], + [ 6.1900724, 46.5460541 ], + [ 6.1898882, 46.5458443 ], + [ 6.1897362, 46.5456684 ], + [ 6.1895678, 46.5454812 ], + [ 6.1894319, 46.5453113 ], + [ 6.1892473, 46.5451182 ], + [ 6.1890702, 46.5449703 ], + [ 6.1888525, 46.5448164 ], + [ 6.1887313, 46.5447366 ], + [ 6.1885697, 46.5446227 ], + [ 6.1884166, 46.5445143 ], + [ 6.1882722, 46.5443612 ], + [ 6.1882005, 46.5442536 ], + [ 6.1880711, 46.5441792 ], + [ 6.1879167, 46.5441215 ], + [ 6.1877629, 46.5440414 ], + [ 6.1876094, 46.5439669 ], + [ 6.1874471, 46.5439035 ], + [ 6.1872611, 46.5437893 ], + [ 6.1871974, 46.5436875 ], + [ 6.1870926, 46.5436022 ], + [ 6.1868989, 46.5434878 ], + [ 6.1867615, 46.5434023 ], + [ 6.1865836, 46.5432881 ], + [ 6.1856218, 46.5426999 ], + [ 6.1854601, 46.5426084 ], + [ 6.1853392, 46.5425173 ], + [ 6.1851946, 46.5423752 ], + [ 6.1851232, 46.5422565 ], + [ 6.1849863, 46.5421314 ], + [ 6.184793, 46.5420003 ], + [ 6.1828823, 46.5400755 ], + [ 6.1827214, 46.5399503 ], + [ 6.1826658, 46.5398541 ], + [ 6.1826919, 46.5397643 ], + [ 6.1827108, 46.5396181 ], + [ 6.1826721, 46.539494 ], + [ 6.1826568, 46.539432 ], + [ 6.1825192, 46.5393575 ], + [ 6.1823659, 46.5392605 ], + [ 6.1823102, 46.5391643 ], + [ 6.1823124, 46.5390519 ], + [ 6.1823404, 46.5388495 ], + [ 6.1822855, 46.5387195 ], + [ 6.1822299, 46.5386235 ], + [ 6.1820289, 46.5384528 ], + [ 6.1818926, 46.5383053 ], + [ 6.1817561, 46.5381858 ], + [ 6.1817163, 46.5381066 ], + [ 6.181653, 46.5379936 ], + [ 6.181655, 46.5378867 ], + [ 6.1816157, 46.5377907 ], + [ 6.1815192, 46.5376998 ], + [ 6.1813904, 46.5375973 ], + [ 6.1813022, 46.5375008 ], + [ 6.1811821, 46.5373759 ], + [ 6.1811191, 46.5372459 ], + [ 6.1810566, 46.5370765 ], + [ 6.1810447, 46.5368345 ], + [ 6.1810833, 46.5364916 ], + [ 6.1811215, 46.5361769 ], + [ 6.1811755, 46.5358903 ], + [ 6.1812281, 46.5356938 ], + [ 6.1812886, 46.5355087 ], + [ 6.1813396, 46.5353853 ], + [ 6.1812762, 46.5352722 ], + [ 6.1811638, 46.5351642 ], + [ 6.1810026, 46.535039 ], + [ 6.180776, 46.5349188 ], + [ 6.1806891, 46.5347661 ], + [ 6.1806506, 46.5346363 ], + [ 6.18067, 46.5344508 ], + [ 6.1807051, 46.5343049 ], + [ 6.1808218, 46.5341764 ], + [ 6.180898, 46.5340364 ], + [ 6.1809823999999995, 46.533874 ], + [ 6.1810172, 46.5337618 ], + [ 6.1809779, 46.5336657 ], + [ 6.180906, 46.5335695 ], + [ 6.1807207, 46.5334272 ], + [ 6.1805524, 46.5332511 ], + [ 6.1804, 46.5330979 ], + [ 6.1803288, 46.5329509 ], + [ 6.180315, 46.5328269 ], + [ 6.1803657, 46.5327149 ], + [ 6.1804412, 46.532603 ], + [ 6.1805897, 46.5325256 ], + [ 6.1807955, 46.5324317 ], + [ 6.180895, 46.5323595 ], + [ 6.1809046, 46.532264 ], + [ 6.1809305, 46.5321798 ], + [ 6.1808919, 46.5320556 ], + [ 6.1809108, 46.5319264 ], + [ 6.1809452, 46.531814 ], + [ 6.1810039, 46.5317414 ], + [ 6.1811932, 46.5316588 ], + [ 6.1814481, 46.5315598 ], + [ 6.1817351, 46.5314779 ], + [ 6.1819005, 46.5313725 ], + [ 6.1819585, 46.531333599999996 ], + [ 6.1820983, 46.5312787 ], + [ 6.1822863, 46.5312522 ], + [ 6.1824339, 46.5312253 ], + [ 6.1826377, 46.5312384 ], + [ 6.1827846, 46.5312454 ], + [ 6.1828992, 46.5312407 ], + [ 6.1829979, 46.5312023 ], + [ 6.1831789, 46.5311252 ], + [ 6.183369, 46.5309918 ], + [ 6.1834939, 46.5308579 ], + [ 6.1836029, 46.5307069 ], + [ 6.1837277, 46.5305618 ], + [ 6.1838619, 46.5303773 ], + [ 6.1839299, 46.5302203 ], + [ 6.1840148, 46.5300353 ], + [ 6.1841229, 46.5299237 ], + [ 6.1842138, 46.5298513 ], + [ 6.1843879, 46.5297066 ], + [ 6.1845291, 46.5295728 ], + [ 6.1847677, 46.5294906 ], + [ 6.1849401, 46.5294302 ], + [ 6.185162, 46.5293479 ], + [ 6.185417, 46.5292431 ], + [ 6.1856481, 46.5290989 ], + [ 6.1858551, 46.5289545 ], + [ 6.1900635, 46.5283338 ], + [ 6.1903345, 46.5282405 ], + [ 6.1904828, 46.5281687 ], + [ 6.1906147, 46.5281023 ], + [ 6.1908115, 46.5280647 ], + [ 6.190951, 46.5280209 ], + [ 6.1910578, 46.5279825 ], + [ 6.191214, 46.5279219 ], + [ 6.1913787, 46.5278447 ], + [ 6.1915185, 46.5277896 ], + [ 6.1916995, 46.5277124 ], + [ 6.1918152, 46.5276403 ], + [ 6.1920542, 46.5275243 ], + [ 6.1922109, 46.5274244 ], + [ 6.1923025, 46.5273183 ], + [ 6.1924926, 46.5272019 ], + [ 6.1926985, 46.5270855 ], + [ 6.1932004, 46.5268873 ], + [ 6.1932838, 46.5267869 ], + [ 6.1933347, 46.5266803 ], + [ 6.1934517, 46.5265182 ], + [ 6.1935935, 46.5263563 ], + [ 6.1936927, 46.5262784 ], + [ 6.1938168, 46.5261951 ], + [ 6.1940395, 46.5260564 ], + [ 6.1942628, 46.5258951 ], + [ 6.1944786, 46.5257057 ], + [ 6.1946123, 46.5255212 ], + [ 6.1946793, 46.5254262 ], + [ 6.1947066, 46.5252632 ], + [ 6.1947086, 46.5251451 ], + [ 6.194703, 46.5250156 ], + [ 6.1946642, 46.5248971 ], + [ 6.1946746, 46.5247621 ], + [ 6.194709, 46.5246667 ], + [ 6.1947105, 46.5245654 ], + [ 6.1947212, 46.5244193 ], + [ 6.1947405, 46.5242506 ], + [ 6.1947432, 46.5240986 ], + [ 6.1947067, 46.5238621 ], + [ 6.1947408, 46.5237611 ], + [ 6.1948001, 46.5236434 ], + [ 6.1948679, 46.523492 ], + [ 6.194927, 46.5233857 ], + [ 6.1949714, 46.5231891 ], + [ 6.195023, 46.5230377 ], + [ 6.1950026, 46.5228068 ], + [ 6.1950059, 46.5226097 ], + [ 6.1950332, 46.5224525 ], + [ 6.1951174, 46.5222957 ], + [ 6.1952517, 46.5220887 ], + [ 6.1953934, 46.5219323 ], + [ 6.1955502, 46.5218268 ], + [ 6.1957556, 46.5217499 ], + [ 6.1959601, 46.5217292 ], + [ 6.1962056, 46.5216976 ], + [ 6.1964677, 46.5216549 ], + [ 6.1966815, 46.5215836 ], + [ 6.1969196, 46.5215013 ], + [ 6.1971094, 46.5213793 ], + [ 6.1972746, 46.5212794 ], + [ 6.1973832, 46.5211452 ], + [ 6.1974832, 46.5210111 ], + [ 6.1975186, 46.5208708 ], + [ 6.1975202, 46.5207638 ], + [ 6.1975148, 46.5206118 ], + [ 6.1974921, 46.520516 ], + [ 6.1975183, 46.5204037 ], + [ 6.1976855, 46.5201801 ], + [ 6.1981874, 46.5204434 ], + [ 6.1983742, 46.5205013 ], + [ 6.1985449, 46.5205366 ], + [ 6.1987007, 46.5205098 ], + [ 6.1989384, 46.520444499999996 ], + [ 6.1991037, 46.520339 ], + [ 6.1990804, 46.5202543 ], + [ 6.1990757, 46.5200685 ], + [ 6.1990543, 46.5198827 ], + [ 6.1990651, 46.5197309 ], + [ 6.1991482, 46.5196584 ], + [ 6.1992304, 46.5196086 ], + [ 6.1993699, 46.5195816 ], + [ 6.1995335, 46.519555 ], + [ 6.1997801, 46.5194727 ], + [ 6.2001675, 46.5192567 ], + [ 6.1996835, 46.5189091 ], + [ 6.1994007, 46.5187377 ], + [ 6.1991586, 46.5185668 ], + [ 6.1987779, 46.5184003 ], + [ 6.1984543, 46.5182343 ], + [ 6.1981869, 46.5181025 ], + [ 6.1981104, 46.5180655 ], + [ 6.1978062, 46.5179191 ], + [ 6.1973942, 46.5176846 ], + [ 6.1970859, 46.5175581 ], + [ 6.1968506, 46.5174828 ], + [ 6.1964845, 46.517412 ], + [ 6.1961509, 46.5173416 ], + [ 6.1959802, 46.5172894 ], + [ 6.1958184, 46.517209199999996 ], + [ 6.1956236, 46.517123 ], + [ 6.1953582, 46.5169069 ], + [ 6.1950678, 46.5166961 ], + [ 6.1948017, 46.516508 ], + [ 6.1944794, 46.5162632 ], + [ 6.1941889, 46.516058 ], + [ 6.1939317, 46.5158362 ], + [ 6.1937238, 46.5155812 ], + [ 6.1934994, 46.5153316 ], + [ 6.1932767, 46.5149921 ], + [ 6.1929184, 46.5144598 ], + [ 6.1926415, 46.5139621 ], + [ 6.1925546, 46.5137926 ], + [ 6.1924659, 46.5137187 ], + [ 6.1923529, 46.5136558 ], + [ 6.1921918, 46.5135249 ], + [ 6.1921035, 46.5134509 ], + [ 6.1920239, 46.5133377 ], + [ 6.1919527, 46.5131907 ], + [ 6.1918726, 46.5131 ], + [ 6.1918011, 46.5129867 ], + [ 6.1916806, 46.5128789 ], + [ 6.1914148, 46.5126794 ], + [ 6.1911337, 46.5124012 ], + [ 6.1909007, 46.5121909 ], + [ 6.190676, 46.5119752 ], + [ 6.190313, 46.5117187 ], + [ 6.1897648, 46.5113142 ], + [ 6.1894981, 46.5111542 ], + [ 6.189394, 46.5110407 ], + [ 6.1893466, 46.5109448 ], + [ 6.1892668, 46.5108371 ], + [ 6.1891459, 46.5107459 ], + [ 6.1889033, 46.5106199 ], + [ 6.1883631, 46.5102437 ], + [ 6.1879202, 46.5098853 ], + [ 6.1877027, 46.5097257 ], + [ 6.1875334, 46.5096005 ], + [ 6.1874134, 46.5094531 ], + [ 6.1872945, 46.5092607 ], + [ 6.1871582, 46.5091132 ], + [ 6.186997, 46.508988 ], + [ 6.1868522, 46.508874 ], + [ 6.1867233, 46.5087773 ], + [ 6.1865863, 46.5086635 ], + [ 6.1864574, 46.5085666 ], + [ 6.1863048, 46.5084246 ], + [ 6.1861187, 46.5083329 ], + [ 6.1859245, 46.5082467 ], + [ 6.1857705, 46.5081778 ], + [ 6.1856089, 46.5080863 ], + [ 6.1854799, 46.5079783 ], + [ 6.1853437, 46.5078308 ], + [ 6.1833418, 46.5060796 ], + [ 6.1829328, 46.5056652 ], + [ 6.1824492, 46.5053119 ], + [ 6.1822085, 46.5050677 ], + [ 6.1819203, 46.5047669 ], + [ 6.1817596, 46.5046191 ], + [ 6.1815742, 46.5044655 ], + [ 6.1813477, 46.504351 ], + [ 6.1811448, 46.5042873 ], + [ 6.1809018, 46.504195 ], + [ 6.1806671, 46.5040804 ], + [ 6.1804804, 46.5040168 ], + [ 6.1803592, 46.5039425 ], + [ 6.1801908, 46.503761 ], + [ 6.1800641, 46.5035346 ], + [ 6.179961, 46.5033818 ], + [ 6.1798324000000004, 46.5032568 ], + [ 6.179663, 46.503154 ], + [ 6.179477, 46.5030454 ], + [ 6.179113, 46.5028677 ], + [ 6.17849, 46.5025413 ], + [ 6.1782962, 46.5024327 ], + [ 6.1781846, 46.5022797 ], + [ 6.1780648, 46.5021267 ], + [ 6.1779458, 46.501939899999996 ], + [ 6.177851, 46.5017421 ], + [ 6.1778137, 46.5015448 ], + [ 6.1778002, 46.5013871 ], + [ 6.1777714, 46.5011731 ], + [ 6.1778396, 46.5010105 ], + [ 6.1779326, 46.5008256 ], + [ 6.178066, 46.5006748 ], + [ 6.1782411, 46.5004627 ], + [ 6.1784156, 46.5002954 ], + [ 6.1786063, 46.500134 ], + [ 6.1787727, 46.4999441 ], + [ 6.1790218, 46.4997044 ], + [ 6.1793118, 46.4994537 ], + [ 6.1800313, 46.4989257 ], + [ 6.1801637, 46.4988311 ], + [ 6.1802786, 46.4987928 ], + [ 6.1808346, 46.4987472 ], + [ 6.1813334, 46.4986898 ], + [ 6.1816519, 46.4986702 ], + [ 6.1819874, 46.4986337 ], + [ 6.1821599, 46.4985677 ], + [ 6.1823333, 46.4984455 ], + [ 6.1847332999999995, 46.4965821 ], + [ 6.1853527, 46.4961711 ], + [ 6.186591, 46.4953662 ], + [ 6.1868793, 46.4952225 ], + [ 6.1871348, 46.495073 ], + [ 6.187332, 46.4949958 ], + [ 6.1899614, 46.4939728 ], + [ 6.1902415, 46.4938289 ], + [ 6.1904398, 46.4937068 ], + [ 6.1905149, 46.4935894 ], + [ 6.1905004, 46.4934936 ], + [ 6.1904777, 46.4934033 ], + [ 6.1904311, 46.493251 ], + [ 6.1903607, 46.4930759 ], + [ 6.1902579, 46.4928894 ], + [ 6.1901943, 46.4927875 ], + [ 6.1900488, 46.4927074 ], + [ 6.1898712, 46.4926045 ], + [ 6.189734, 46.4925188 ], + [ 6.1895966, 46.4924389 ], + [ 6.1895335, 46.4923145 ], + [ 6.18956, 46.4921909 ], + [ 6.1896683, 46.492085 ], + [ 6.1898079, 46.4920132 ], + [ 6.1899971, 46.4919472 ], + [ 6.1901851, 46.4919151 ], + [ 6.1902355, 46.4918312 ], + [ 6.1902537, 46.49173 ], + [ 6.190305, 46.4916067 ], + [ 6.1903875, 46.4915399 ], + [ 6.1904776, 46.4915182 ], + [ 6.1906245, 46.4915196 ], + [ 6.1907959, 46.491521 ], + [ 6.19087, 46.4914824 ], + [ 6.1909285, 46.4913985 ], + [ 6.190916, 46.4911846 ], + [ 6.1909264, 46.4910665 ], + [ 6.1909853, 46.4909656 ], + [ 6.1910437, 46.4908874 ], + [ 6.1911427, 46.490832 ], + [ 6.1912732, 46.4908389 ], + [ 6.1914771, 46.4908407 ], + [ 6.1916891, 46.4908425 ], + [ 6.1918532, 46.4907878 ], + [ 6.1919198, 46.4907264 ], + [ 6.1919789, 46.4906144 ], + [ 6.1919969, 46.4905076 ], + [ 6.1919926, 46.4902882 ], + [ 6.1920049, 46.4900518 ], + [ 6.1920332, 46.4898327 ], + [ 6.1921417, 46.4896985 ], + [ 6.1922828, 46.4895649 ], + [ 6.1924236, 46.4894423 ], + [ 6.1925071, 46.4893305 ], + [ 6.1925007, 46.4892404 ], + [ 6.1924699, 46.4891276 ], + [ 6.1924396, 46.4889922 ], + [ 6.1924182, 46.4888289 ], + [ 6.1924452, 46.4886602 ], + [ 6.1925625, 46.4884982 ], + [ 6.1927532, 46.488331 ], + [ 6.1930019, 46.4881025 ], + [ 6.1932427, 46.4878626 ], + [ 6.1934177, 46.4876503 ], + [ 6.1935598, 46.4874547 ], + [ 6.193662, 46.487225 ], + [ 6.1937146, 46.487006 ], + [ 6.193702, 46.486792 ], + [ 6.1936161, 46.486583 ], + [ 6.1934403, 46.4863507 ], + [ 6.1931832, 46.4861121 ], + [ 6.1929034, 46.4857832 ], + [ 6.1925913, 46.4854259 ], + [ 6.1923771, 46.4850976 ], + [ 6.1920514, 46.4845882 ], + [ 6.1919248, 46.4843394 ], + [ 6.1918469, 46.4841363 ], + [ 6.1918494, 46.48399 ], + [ 6.1919092, 46.4838329 ], + [ 6.1920582, 46.4837104 ], + [ 6.192257, 46.4835434 ], + [ 6.1924799, 46.4833878 ], + [ 6.1926621, 46.4832376 ], + [ 6.1927711, 46.4830809 ], + [ 6.1928141, 46.4829631 ], + [ 6.1928166000000004, 46.4828 ], + [ 6.192787, 46.4826364 ], + [ 6.1927407, 46.4824729 ], + [ 6.1927434, 46.4823209 ], + [ 6.1927952, 46.4821583 ], + [ 6.1929469, 46.4818782 ], + [ 6.193115, 46.4816152 ], + [ 6.1933079, 46.4813132 ], + [ 6.193457, 46.4811682 ], + [ 6.1935887, 46.481101699999996 ], + [ 6.1938264, 46.4810475 ], + [ 6.1940236, 46.4809706 ], + [ 6.1942778, 46.4808884 ], + [ 6.1945244, 46.4807837 ], + [ 6.1947472, 46.4806507 ], + [ 6.1950609, 46.4804452 ], + [ 6.1958467, 46.4798276 ], + [ 6.1959034, 46.4798036 ], + [ 6.1959778, 46.4797539 ], + [ 6.1960887, 46.4796922 ], + [ 6.1962168, 46.4796809 ], + [ 6.1964, 46.4796576 ], + [ 6.1965461, 46.4796592 ], + [ 6.1966913, 46.4796988 ], + [ 6.1969092, 46.4797641 ], + [ 6.1970544, 46.4798037 ], + [ 6.1972902, 46.4798819 ], + [ 6.1977261, 46.4799876 ], + [ 6.1979985, 46.4800537 ], + [ 6.198162, 46.4800934 ], + [ 6.1983628, 46.4801081 ], + [ 6.1985445, 46.4801354 ], + [ 6.1986483, 46.4801671 ], + [ 6.1987798, 46.4802389 ], + [ 6.1988632, 46.4802935 ], + [ 6.1989593, 46.4803796 ], + [ 6.199049, 46.4804437 ], + [ 6.1991747, 46.4805335 ], + [ 6.1993179, 46.4806612 ], + [ 6.1994077, 46.4807379 ], + [ 6.1994246, 46.4808013 ], + [ 6.1994037, 46.4809145 ], + [ 6.1993659, 46.4809647 ], + [ 6.1993086, 46.481065 ], + [ 6.1992323, 46.4812155 ], + [ 6.1991754, 46.4813032 ], + [ 6.1991539, 46.4814418 ], + [ 6.1991513, 46.4815553 ], + [ 6.1991824, 46.4816366 ], + [ 6.1992577, 46.481708 ], + [ 6.1993831, 46.4818103 ], + [ 6.1995995, 46.4819262 ], + [ 6.1998873, 46.4821186 ], + [ 6.2000312, 46.4822337 ], + [ 6.2001744, 46.4823615 ], + [ 6.2003173, 46.4825018 ], + [ 6.2004235, 46.4826417 ], + [ 6.2005293, 46.4828069 ], + [ 6.2005985, 46.4829844 ], + [ 6.200705, 46.4831118 ], + [ 6.2008663, 46.4832523 ], + [ 6.2010097, 46.4833674 ], + [ 6.2011538, 46.4834573 ], + [ 6.2014259, 46.483536 ], + [ 6.2017158, 46.4836401 ], + [ 6.2020428, 46.4837195 ], + [ 6.2022607, 46.483785 ], + [ 6.2024591000000004, 46.4839006 ], + [ 6.2026572, 46.4840163 ], + [ 6.2028376, 46.4841192 ], + [ 6.2030715, 46.4842858 ], + [ 6.2032863, 46.4844648 ], + [ 6.2035022, 46.4846186 ], + [ 6.2036649, 46.4846961 ], + [ 6.2038818, 46.4847868 ], + [ 6.2042812, 46.4849047 ], + [ 6.205369, 46.4852699 ], + [ 6.2055143, 46.4853093 ], + [ 6.2056964, 46.4853365 ], + [ 6.2058056, 46.4853503 ], + [ 6.2059514, 46.4853645 ], + [ 6.2060789, 46.4853786 ], + [ 6.2061878, 46.4854049 ], + [ 6.2063336, 46.4854191 ], + [ 6.2063879, 46.4854449 ], + [ 6.2065148, 46.4854842 ], + [ 6.2066961, 46.4855493 ], + [ 6.2068408, 46.4856139 ], + [ 6.2069491, 46.4856655 ], + [ 6.2070392, 46.4857296 ], + [ 6.2071472, 46.4857939 ], + [ 6.2072371, 46.4858706 ], + [ 6.2073265, 46.4859472 ], + [ 6.2073977, 46.4860364 ], + [ 6.2074508, 46.4861 ], + [ 6.2074491, 46.4861757 ], + [ 6.207476, 46.486605 ], + [ 6.207474, 46.4866933 ], + [ 6.2074906, 46.4867693 ], + [ 6.207526, 46.4868201 ], + [ 6.2075794, 46.4868711 ], + [ 6.2076527, 46.4868719 ], + [ 6.2077255, 46.4868727 ], + [ 6.2078354000000004, 46.4868739 ], + [ 6.2079274, 46.4868371 ], + [ 6.2080557, 46.4868132 ], + [ 6.2081665, 46.4867766 ], + [ 6.2082768, 46.48674 ], + [ 6.2084421, 46.4867038 ], + [ 6.2085521, 46.4866798 ], + [ 6.2086438, 46.4866555 ], + [ 6.208772, 46.4866569 ], + [ 6.2088815, 46.4866581 ], + [ 6.208991, 46.4866593 ], + [ 6.2091008, 46.4866605 ], + [ 6.2092097, 46.486687 ], + [ 6.2092817, 46.4867256 ], + [ 6.2093907, 46.4867645 ], + [ 6.209481, 46.4868035 ], + [ 6.2095543, 46.4868043 ], + [ 6.209682, 46.4868057 ], + [ 6.2098281, 46.4868072 ], + [ 6.2099748, 46.4867835 ], + [ 6.2101030999999995, 46.4867598 ], + [ 6.2102132, 46.4867356 ], + [ 6.2103414, 46.486737 ], + [ 6.2104875, 46.4867386 ], + [ 6.2106152, 46.48674 ], + [ 6.2106695, 46.4867532 ], + [ 6.2107794, 46.4867544 ], + [ 6.2108882, 46.4867808 ], + [ 6.2109977, 46.4867819 ], + [ 6.2110026, 46.4867812 ], + [ 6.2110854, 46.4867209 ], + [ 6.2110651, 46.4865766 ], + [ 6.2109526, 46.4864919 ], + [ 6.2108611, 46.4864538 ], + [ 6.2107392, 46.4864246 ], + [ 6.210617, 46.4864122 ], + [ 6.2104785, 46.4863997 ], + [ 6.2103239, 46.4863758 ], + [ 6.2102022, 46.4863411 ], + [ 6.2100647, 46.4862668 ], + [ 6.2099192, 46.4861866 ], + [ 6.209716, 46.4861342 ], + [ 6.2095462, 46.4860483 ], + [ 6.2093679, 46.4859792 ], + [ 6.2092306, 46.4858936 ], + [ 6.2091092, 46.485825 ], + [ 6.2090459, 46.485712 ], + [ 6.2090481, 46.4855938 ], + [ 6.2090529, 46.4852955 ], + [ 6.2090424, 46.4849692 ], + [ 6.2090314, 46.4846483 ], + [ 6.2089777999999995, 46.4844452 ], + [ 6.2088908, 46.4842756 ], + [ 6.2087894, 46.4840102 ], + [ 6.2087288, 46.4837397 ], + [ 6.2086428, 46.4835307 ], + [ 6.2085669, 46.4831811 ], + [ 6.2085227, 46.482905 ], + [ 6.2085265, 46.4826856 ], + [ 6.2085713, 46.4824496 ], + [ 6.2085822, 46.4822921 ], + [ 6.2086422, 46.4821238 ], + [ 6.208751, 46.481956 ], + [ 6.2088769, 46.4817546 ], + [ 6.2090858, 46.4814806 ], + [ 6.2092444, 46.4812738 ], + [ 6.2094366, 46.4809997 ], + [ 6.2096877, 46.4806418 ], + [ 6.2099381, 46.4802951 ], + [ 6.2101484, 46.4799255 ], + [ 6.2104651, 46.4795456 ], + [ 6.2106081, 46.479305 ], + [ 6.210743, 46.4790472 ], + [ 6.2108196, 46.4788622 ], + [ 6.2108804, 46.4786433 ], + [ 6.2108349, 46.4784403 ], + [ 6.2108225, 46.4781981 ], + [ 6.2108039, 46.4778717 ], + [ 6.2108241, 46.4776411 ], + [ 6.2108928, 46.4774335 ], + [ 6.2110088, 46.477322 ], + [ 6.2111895, 46.4772504 ], + [ 6.2114188, 46.4772074 ], + [ 6.2117543, 46.4771653 ], + [ 6.2121311, 46.4770786 ], + [ 6.2125895, 46.4769813 ], + [ 6.2127069, 46.4769182 ], + [ 6.2128026, 46.4768799 ], + [ 6.2129364, 46.476829 ], + [ 6.2130705, 46.476765 ], + [ 6.2131662, 46.4767266 ], + [ 6.2132818, 46.4766362 ], + [ 6.2133781, 46.4765718 ], + [ 6.2135325, 46.4764556 ], + [ 6.213679, 46.4763647 ], + [ 6.2137812, 46.4762898 ], + [ 6.2138792, 46.4762235 ], + [ 6.2140518, 46.4761337 ], + [ 6.2141663, 46.4761088 ], + [ 6.2142995, 46.4760839 ], + [ 6.2144509, 46.4760856 ], + [ 6.2146401000000004, 46.4761008 ], + [ 6.2147532, 46.4761413 ], + [ 6.2148849, 46.476182 ], + [ 6.2150922, 46.4762498 ], + [ 6.2152045, 46.4763033 ], + [ 6.2153554, 46.4763443 ], + [ 6.2154683, 46.4763716 ], + [ 6.2155631, 46.4763727 ], + [ 6.2156579, 46.4763737 ], + [ 6.2157527, 46.4763747 ], + [ 6.2162448, 46.4764063 ], + [ 6.2164154, 46.4764212 ], + [ 6.2164723, 46.4764218 ], + [ 6.2166795, 46.4764764 ], + [ 6.2167737, 46.4765037 ], + [ 6.2168488, 46.4765306 ], + [ 6.2169048, 46.4765706 ], + [ 6.2170551, 46.4766377 ], + [ 6.2171672, 46.4767043 ], + [ 6.2172802, 46.4767449 ], + [ 6.2173547, 46.4767981 ], + [ 6.2174683, 46.4768124 ], + [ 6.2175628, 46.4768265 ], + [ 6.2176200999999995, 46.476814 ], + [ 6.217696, 46.4768018 ], + [ 6.2177299, 46.4767824 ], + [ 6.2177545, 46.4767369 ], + [ 6.2177183, 46.4766448 ], + [ 6.217665, 46.4765532 ], + [ 6.2175966, 46.4764831 ], + [ 6.2174779000000004, 46.4764057 ], + [ 6.2173496, 46.4763212 ], + [ 6.2171594, 46.4762196 ], + [ 6.2170103, 46.4761001 ], + [ 6.2168434, 46.4759411 ], + [ 6.2167518, 46.475796 ], + [ 6.2165863, 46.4755585 ], + [ 6.2164388, 46.4753867 ], + [ 6.2163836, 46.4753074 ], + [ 6.2163278, 46.4752545 ], + [ 6.2162228, 46.4751663 ], + [ 6.2160655, 46.4751206 ], + [ 6.2159152, 46.4750535 ], + [ 6.2158035, 46.4749737 ], + [ 6.2156915999999995, 46.4748809 ], + [ 6.2156183, 46.4747752 ], + [ 6.2155449, 46.4746566 ], + [ 6.2155256, 46.4745216 ], + [ 6.215508, 46.4743967 ], + [ 6.2155535, 46.4742767 ], + [ 6.2156134, 46.4741465 ], + [ 6.2156733, 46.4740161 ], + [ 6.2157517, 46.473899 ], + [ 6.2158882, 46.4737434 ], + [ 6.216025, 46.4735615 ], + [ 6.2162572, 46.4733544 ], + [ 6.2163922, 46.473251 ], + [ 6.2165712, 46.4731062 ], + [ 6.2165717, 46.4730874 ], + [ 6.216498, 46.4727289 ], + [ 6.2168598, 46.4726349 ], + [ 6.2169237, 46.4726184 ], + [ 6.2168298, 46.4725212 ], + [ 6.2166687, 46.4724108 ], + [ 6.2165466, 46.4722516 ], + [ 6.2167749, 46.4721061 ], + [ 6.2165751, 46.4719264 ], + [ 6.2167918, 46.4717909 ], + [ 6.2169343, 46.4716786 ], + [ 6.2170422, 46.4715677 ], + [ 6.2172635, 46.4713342 ], + [ 6.2179208, 46.4706827 ], + [ 6.2180158, 46.4706746 ], + [ 6.2181248, 46.4706758 ], + [ 6.218207, 46.4706578 ], + [ 6.2182351, 46.4706205 ], + [ 6.2182641, 46.4705454 ], + [ 6.2182378, 46.4704123 ], + [ 6.2182155, 46.4702815 ], + [ 6.2184591, 46.4703405 ], + [ 6.2186491, 46.4703802 ], + [ 6.2191657, 46.4704234 ], + [ 6.2195456, 46.4705028 ], + [ 6.2198437, 46.4705624 ], + [ 6.2201964, 46.4706227 ], + [ 6.2203872, 46.4706248 ], + [ 6.2205235, 46.4706262 ], + [ 6.2206598, 46.4706277 ], + [ 6.2208229, 46.4706294 ], + [ 6.2209592, 46.4706309 ], + [ 6.2211227, 46.4706326 ], + [ 6.2212863, 46.4706344 ], + [ 6.2215031, 46.4706744 ], + [ 6.2216117, 46.4706944 ], + [ 6.2218016, 46.4707341 ], + [ 6.2220717, 46.4708311 ], + [ 6.222265, 46.4708996 ], + [ 6.2222878, 46.4708258 ], + [ 6.222295, 46.4707592 ], + [ 6.2223722, 46.4706565 ], + [ 6.2224868, 46.4705532 ], + [ 6.2225988, 46.4704226 ], + [ 6.2227087, 46.4703672 ], + [ 6.222605, 46.4703112 ], + [ 6.22264, 46.4701857 ], + [ 6.2226003, 46.4700298 ], + [ 6.2225591, 46.4697633 ], + [ 6.2225084, 46.4695933 ], + [ 6.2224317, 46.4693666 ], + [ 6.2223814, 46.4691778 ], + [ 6.2223584, 46.4689894 ], + [ 6.2223311, 46.4686652 ], + [ 6.2222298, 46.4684125 ], + [ 6.2221569, 46.468253 ], + [ 6.2221057, 46.4681019 ], + [ 6.222059, 46.4679 ], + [ 6.2220496, 46.4676113 ], + [ 6.2219425, 46.4676176 ], + [ 6.2218672, 46.4676167 ], + [ 6.2217712, 46.4676157 ], + [ 6.221632, 46.4675993 ], + [ 6.2214911, 46.467587 ], + [ 6.2213561, 46.4675292 ], + [ 6.2212207, 46.46749 ], + [ 6.2210853, 46.4674509 ], + [ 6.2209629, 46.4673554 ], + [ 6.2208437, 46.4672978 ], + [ 6.2207193, 46.4672417 ], + [ 6.2206242, 46.4671815 ], + [ 6.2204545, 46.4670909 ], + [ 6.2203385, 46.467023 ], + [ 6.2202249, 46.4669522 ], + [ 6.2200362, 46.4668561 ], + [ 6.2198476, 46.4667599 ], + [ 6.2197671, 46.4667025 ], + [ 6.2196602, 46.4666073 ], + [ 6.2196078, 46.4665314 ], + [ 6.219555, 46.4664555 ], + [ 6.2195571, 46.4663615 ], + [ 6.2195584, 46.466305 ], + [ 6.2195873, 46.4662301 ], + [ 6.2196154, 46.4661927 ], + [ 6.2196435, 46.4661554 ], + [ 6.2196985, 46.4661183 ], + [ 6.2197265999999996, 46.4660809 ], + [ 6.2198092, 46.4660441 ], + [ 6.2198645, 46.4660072 ], + [ 6.219919, 46.4660078 ], + [ 6.219974, 46.4659895 ], + [ 6.2201102, 46.465991 ], + [ 6.2202461, 46.4660113 ], + [ 6.2203543, 46.4660313 ], + [ 6.2205174, 46.4660517 ], + [ 6.2206165, 46.4660936 ], + [ 6.2207614, 46.4661109 ], + [ 6.2208625, 46.4661035 ], + [ 6.220925, 46.4660938 ], + [ 6.2209526, 46.4660752 ], + [ 6.221008, 46.4660383 ], + [ 6.2210088, 46.4660006 ], + [ 6.2210105, 46.4659253 ], + [ 6.220985, 46.4658497 ], + [ 6.220959, 46.465793 ], + [ 6.2209057, 46.4657548 ], + [ 6.2207967, 46.4657536 ], + [ 6.2206877, 46.4657524 ], + [ 6.2205518, 46.4657322 ], + [ 6.2204428, 46.465731 ], + [ 6.220307, 46.4657107 ], + [ 6.2201651, 46.4656891 ], + [ 6.2200057, 46.465628 ], + [ 6.2198743, 46.4655743 ], + [ 6.2197116, 46.4655349 ], + [ 6.2195118, 46.4654293 ], + [ 6.2193056, 46.4652986 ], + [ 6.2188436, 46.4651813 ], + [ 6.2187291, 46.4651158 ], + [ 6.2185214, 46.4650493 ], + [ 6.2183272, 46.4650211 ], + [ 6.2180576, 46.4650123 ], + [ 6.2177794, 46.4649931 ], + [ 6.2176482, 46.464929 ], + [ 6.2175547, 46.4648528 ], + [ 6.2174735, 46.4648237 ], + [ 6.217296, 46.4647954 ], + [ 6.2171535, 46.4648156 ], + [ 6.2170851, 46.4648733 ], + [ 6.2169673, 46.4649363 ], + [ 6.2168267, 46.4649991 ], + [ 6.2166626, 46.4650614 ], + [ 6.2165079, 46.4650627 ], + [ 6.2163996, 46.4650333 ], + [ 6.2163051, 46.4649805 ], + [ 6.2162256, 46.4648997 ], + [ 6.2161578, 46.4647831 ], + [ 6.2161231, 46.4646067 ], + [ 6.2160851, 46.46447 ], + [ 6.2160325, 46.4643846 ], + [ 6.215993, 46.4643325 ], + [ 6.2158988, 46.464289 ], + [ 6.2157908, 46.4642455 ], + [ 6.2156681, 46.4642348 ], + [ 6.2155433, 46.4642146 ], + [ 6.215307, 46.4642451 ], + [ 6.215099, 46.4643383 ], + [ 6.2149018, 46.4644053 ], + [ 6.2146772, 46.4644943 ], + [ 6.2144921, 46.4644761 ], + [ 6.2143997, 46.4644431 ], + [ 6.214262, 46.4643773 ], + [ 6.2141471, 46.4643119 ], + [ 6.2139631, 46.4642296 ], + [ 6.2138018, 46.4641798 ], + [ 6.2136174, 46.4641135 ], + [ 6.2134337, 46.4640153 ], + [ 6.2132502, 46.4639451 ], + [ 6.2130645, 46.4638988 ], + [ 6.2129717, 46.4638978 ], + [ 6.2128695, 46.4639175 ], + [ 6.2128141, 46.4639592 ], + [ 6.2127826, 46.4640403 ], + [ 6.2127115, 46.4641038 ], + [ 6.2126166, 46.464183 ], + [ 6.2125695, 46.4642145 ], + [ 6.2124068, 46.464229 ], + [ 6.2122448, 46.464195 ], + [ 6.2121064, 46.4641454 ], + [ 6.2119216, 46.4640952 ], + [ 6.2117132, 46.4640609 ], + [ 6.2115389, 46.4640349 ], + [ 6.2113403, 46.4640704 ], + [ 6.2112009, 46.4641195 ], + [ 6.2110732, 46.4641523 ], + [ 6.2110031, 46.4642315 ], + [ 6.2109863, 46.464358 ], + [ 6.2109838, 46.4644704 ], + [ 6.210982, 46.4645506 ], + [ 6.2109396, 46.4646261 ], + [ 6.2108974, 46.4646916 ], + [ 6.2106754, 46.4647559 ], + [ 6.2105359, 46.4647544 ], + [ 6.2103524, 46.4646997 ], + [ 6.2103058, 46.4646556 ], + [ 6.2102142, 46.4646066 ], + [ 6.2100903, 46.4645416 ], + [ 6.2099419, 46.4644836 ], + [ 6.2098341, 46.4644305 ], + [ 6.209713, 46.4643681 ], + [ 6.2095704, 46.4643431 ], + [ 6.2094474, 46.4643652 ], + [ 6.2093569, 46.4644442 ], + [ 6.209263, 46.4645481 ], + [ 6.2091673, 46.4646755 ], + [ 6.2091416, 46.4647715 ], + [ 6.2090951, 46.4648838 ], + [ 6.2090673, 46.4649793 ], + [ 6.2089955, 46.465075 ], + [ 6.2089241, 46.4651545 ], + [ 6.2088288, 46.4652497 ], + [ 6.2087571, 46.4653453 ], + [ 6.2086739, 46.4654252 ], + [ 6.2086367, 46.4655205 ], + [ 6.2086349, 46.4656008 ], + [ 6.2086802, 46.4656655 ], + [ 6.2087487, 46.4657144 ], + [ 6.2088389, 46.4658277 ], + [ 6.208907, 46.4659641 ], + [ 6.2088363, 46.4660858 ], + [ 6.2086917, 46.4661793 ], + [ 6.2085186, 46.4662752 ], + [ 6.2083054, 46.4663671 ], + [ 6.2080784, 46.4664541 ], + [ 6.2078231, 46.4665712 ], + [ 6.2075886, 46.4666651 ], + [ 6.2075098, 46.4666967 ], + [ 6.2073541, 46.4667588 ], + [ 6.207137, 46.4668251 ], + [ 6.2068758, 46.4669305 ], + [ 6.2066972, 46.4669991 ], + [ 6.2065185, 46.4670772 ], + [ 6.20638, 46.4671697 ], + [ 6.2062028, 46.4673242 ], + [ 6.2061075, 46.4674356 ], + [ 6.2059889, 46.4675307 ], + [ 6.2058708, 46.4676257 ], + [ 6.2057055, 46.4677362 ], + [ 6.2055156, 46.4679108 ], + [ 6.2053979, 46.4679898 ], + [ 6.2051858, 46.4681159 ], + [ 6.2050434, 46.4682428 ], + [ 6.2049252, 46.4683378 ], + [ 6.2047364, 46.4684642 ], + [ 6.2045244, 46.4685903 ], + [ 6.2042903, 46.468668 ], + [ 6.2038931, 46.46876 ], + [ 6.2039007, 46.468677 ], + [ 6.204037, 46.4685689 ], + [ 6.2042008, 46.4685065 ], + [ 6.2043425, 46.4684136 ], + [ 6.2044666, 46.4683396 ], + [ 6.2045335, 46.468189 ], + [ 6.2046708, 46.4680595 ], + [ 6.2047348, 46.4679283 ], + [ 6.2048885, 46.467756 ], + [ 6.2049878, 46.4675923 ], + [ 6.2050856, 46.4674084 ], + [ 6.2051592, 46.4672326 ], + [ 6.20521, 46.4670566 ], + [ 6.2052133, 46.4669121 ], + [ 6.2051238, 46.4667506 ], + [ 6.2050579, 46.4665894 ], + [ 6.2049463, 46.4663794 ], + [ 6.2048426, 46.4661976 ], + [ 6.2048537, 46.4659955 ], + [ 6.2048562, 46.4658872 ], + [ 6.204895, 46.4656852 ], + [ 6.2049191, 46.4655209 ], + [ 6.2049653, 46.4652955 ], + [ 6.2050543, 46.4649811 ], + [ 6.2051418, 46.4647091 ], + [ 6.2052508, 46.4642477 ], + [ 6.2049934, 46.4646525 ], + [ 6.2036602, 46.4667507 ], + [ 6.2034938, 46.4669094 ], + [ 6.2034, 46.4669566 ], + [ 6.2032594, 46.4670032 ], + [ 6.2031434, 46.4670019 ], + [ 6.2029815, 46.4669681 ], + [ 6.2027963, 46.466934 ], + [ 6.2026104, 46.466932 ], + [ 6.2024709, 46.4669465 ], + [ 6.2023078, 46.4669608 ], + [ 6.2021915, 46.4669755 ], + [ 6.2020512, 46.4670062 ], + [ 6.2019338, 46.467069 ], + [ 6.2017921, 46.4671639 ], + [ 6.2016033, 46.4672902 ], + [ 6.2015083, 46.4673856 ], + [ 6.201413, 46.4674808 ], + [ 6.2012477, 46.4676074 ], + [ 6.2011281, 46.4677506 ], + [ 6.2009852, 46.4678935 ], + [ 6.2008436, 46.4680043 ], + [ 6.2007015, 46.4681152 ], + [ 6.2005594, 46.468242 ], + [ 6.2003216, 46.4684802 ], + [ 6.2001714, 46.4684987 ], + [ 6.2000574, 46.4684696 ], + [ 6.1998626, 46.4684115 ], + [ 6.1996763, 46.4683368 ], + [ 6.1995797, 46.468274 ], + [ 6.1994676, 46.468138 ], + [ 6.1993481, 46.4679906 ], + [ 6.1992849, 46.4678719 ], + [ 6.1990738, 46.4677969 ], + [ 6.1987978, 46.4677324 ], + [ 6.1985464, 46.4676403 ], + [ 6.1982949, 46.4675536 ], + [ 6.1981089, 46.4674675 ], + [ 6.1980207, 46.4673767 ], + [ 6.1979339, 46.4672239 ], + [ 6.1978056, 46.4670877 ], + [ 6.197612, 46.4669567 ], + [ 6.1974588, 46.4668427 ], + [ 6.1972483, 46.4667621 ], + [ 6.1969473, 46.46672 ], + [ 6.1967764, 46.4666848 ], + [ 6.1966383, 46.4666553 ], + [ 6.1964441, 46.4665749 ], + [ 6.1962906, 46.4664891 ], + [ 6.196104, 46.4664143 ], + [ 6.1959255, 46.4663732 ], + [ 6.1957462, 46.4663661 ], + [ 6.1954447, 46.4663465 ], + [ 6.1952161, 46.4663445 ], + [ 6.1950127, 46.4663258 ], + [ 6.1948427, 46.4662512 ], + [ 6.1945748, 46.4661699 ], + [ 6.1942818, 46.4661391 ], + [ 6.1937521, 46.4661007 ], + [ 6.1932791, 46.4660909 ], + [ 6.1927329, 46.4660804 ], + [ 6.1924809, 46.4660332 ], + [ 6.1922534, 46.4659636 ], + [ 6.1920428, 46.4658885 ], + [ 6.1918554, 46.4658812 ], + [ 6.1916752, 46.4659134 ], + [ 6.1915113999999996, 46.4659569 ], + [ 6.1913383, 46.4660567 ], + [ 6.1911665, 46.4660945 ], + [ 6.1909699, 46.4661321 ], + [ 6.1907747, 46.466091 ], + [ 6.1905724, 46.4660105 ], + [ 6.1903619, 46.4659073 ], + [ 6.1901757, 46.4658325 ], + [ 6.1899557, 46.4658249 ], + [ 6.1897593, 46.4658569 ], + [ 6.1895617, 46.4659564 ], + [ 6.189388, 46.4660956 ], + [ 6.1891643, 46.4663017 ], + [ 6.1888411, 46.4665745 ], + [ 6.188718, 46.4666185 ], + [ 6.1884805, 46.4666839 ], + [ 6.187925, 46.466724 ], + [ 6.1874924, 46.4667426 ], + [ 6.1872645, 46.4667123 ], + [ 6.1868424, 46.4665961 ], + [ 6.1864611, 46.4664745 ], + [ 6.1862095, 46.4663934 ], + [ 6.1860721, 46.4663359 ], + [ 6.1857968, 46.466204 ], + [ 6.1852959, 46.4659406 ], + [ 6.184884, 46.4657006 ], + [ 6.1843928, 46.465336 ], + [ 6.1839797, 46.4651692 ], + [ 6.1838087999999996, 46.4651507 ], + [ 6.1837589, 46.4651953 ], + [ 6.1836998, 46.4653074 ], + [ 6.1836086, 46.4653965 ], + [ 6.183485, 46.465463 ], + [ 6.1833295, 46.4655009 ], + [ 6.183142, 46.4654993 ], + [ 6.182816, 46.4654851 ], + [ 6.1825307, 46.4654713 ], + [ 6.1821716, 46.4654793 ], + [ 6.1816231, 46.4655869 ], + [ 6.1813363, 46.4656574 ], + [ 6.1812288, 46.4657464 ], + [ 6.1811704, 46.4658079 ], + [ 6.1812101, 46.4658871 ], + [ 6.1812329, 46.4659717 ], + [ 6.1812947, 46.4661692 ], + [ 6.1813554, 46.4664285 ], + [ 6.181394, 46.4665526 ], + [ 6.1813927, 46.4666259 ], + [ 6.1813671, 46.4666762 ], + [ 6.1812848, 46.4667318 ], + [ 6.18117, 46.4667702 ], + [ 6.1810301, 46.4668195 ], + [ 6.1809315, 46.4668805 ], + [ 6.1808732, 46.4669363 ], + [ 6.1807979, 46.4670426 ], + [ 6.1806978, 46.4671823 ], + [ 6.1806295, 46.4673393 ], + [ 6.1805288, 46.4675015 ], + [ 6.180436, 46.4676808 ], + [ 6.1803262, 46.4678879 ], + [ 6.180282, 46.4680733 ], + [ 6.1802059, 46.4682302 ], + [ 6.1801461, 46.4683872 ], + [ 6.180062, 46.4685215 ], + [ 6.1799947, 46.4686334 ], + [ 6.1799694, 46.468689499999996 ], + [ 6.1799185, 46.4687959 ], + [ 6.1799171, 46.4688747 ], + [ 6.1798747, 46.4689644 ], + [ 6.1798242, 46.4690539 ], + [ 6.1797486, 46.4691715 ], + [ 6.1796738, 46.4692553 ], + [ 6.1795749, 46.4693274 ], + [ 6.1794428, 46.4694107 ], + [ 6.1792529, 46.4695271 ], + [ 6.1790392, 46.4696321 ], + [ 6.1787112, 46.4697248 ], + [ 6.1785312, 46.4697457 ], + [ 6.1784239, 46.4698291 ], + [ 6.1783072, 46.4699632 ], + [ 6.178199, 46.470086 ], + [ 6.1780821, 46.4702482 ], + [ 6.1779384, 46.4705113 ], + [ 6.1778282, 46.4707523 ], + [ 6.1771698, 46.4724626 ], + [ 6.1770444, 46.4726416 ], + [ 6.1769444, 46.4727589 ], + [ 6.1768863, 46.472809 ], + [ 6.1768599, 46.47291 ], + [ 6.1768324, 46.4730956 ], + [ 6.1768298999999995, 46.4732192 ], + [ 6.1768849, 46.4733379 ], + [ 6.1770183, 46.4736374 ], + [ 6.1770416, 46.4737221 ], + [ 6.1770062, 46.4738624 ], + [ 6.1769311, 46.4739574 ], + [ 6.1767988, 46.4740631 ], + [ 6.1766271, 46.4740784 ], + [ 6.1763737, 46.4741099 ], + [ 6.1761767, 46.4741812 ], + [ 6.1760861, 46.4742255 ], + [ 6.1760272, 46.4743262 ], + [ 6.1759762, 46.4744384 ], + [ 6.1759404, 46.4746124 ], + [ 6.1759038, 46.4748541 ], + [ 6.1758508, 46.4750675 ], + [ 6.1758389, 46.4752811 ], + [ 6.1758112, 46.4754723 ], + [ 6.1758156, 46.4756693 ], + [ 6.1758123, 46.4758606 ], + [ 6.1758003, 46.4760799 ], + [ 6.1758057, 46.4762319 ], + [ 6.1757623, 46.4763834 ], + [ 6.175671, 46.4764783 ], + [ 6.1755229, 46.4765445 ], + [ 6.1753583, 46.4766218 ], + [ 6.1752586, 46.4767109 ], + [ 6.1751991, 46.476851 ], + [ 6.1750754, 46.4769399 ], + [ 6.1749508, 46.4770458 ], + [ 6.1748034, 46.4770838 ], + [ 6.1746807, 46.4771108 ], + [ 6.1745342, 46.4770757 ], + [ 6.1744044, 46.4770408 ], + [ 6.1742419, 46.4769943 ], + [ 6.1740634, 46.4769533 ], + [ 6.1739003, 46.4769293 ], + [ 6.1737041, 46.4769669 ], + [ 6.1734744, 46.4770268 ], + [ 6.1732618, 46.4770698 ], + [ 6.1729994, 46.4771349 ], + [ 6.1727951, 46.4771499 ], + [ 6.1725586, 46.4771366 ], + [ 6.1723385, 46.4771346 ], + [ 6.1720857, 46.4771379 ], + [ 6.1718073, 46.4771916 ], + [ 6.1715133, 46.4772003 ], + [ 6.1713091, 46.4772096 ], + [ 6.1711705, 46.4772028 ], + [ 6.1710076, 46.47719 ], + [ 6.1708538, 46.4771211 ], + [ 6.1707252, 46.4770185 ], + [ 6.1705238, 46.476876 ], + [ 6.1702655, 46.4767161 ], + [ 6.1700228, 46.4766013 ], + [ 6.1697629, 46.4765427 ], + [ 6.1694296, 46.4764721 ], + [ 6.1690149, 46.476384 ], + [ 6.1688761, 46.476388299999996 ], + [ 6.1687283, 46.4764433 ], + [ 6.1685802, 46.4765094 ], + [ 6.1684065, 46.476643 ], + [ 6.1682645, 46.4768161 ], + [ 6.1681809, 46.4769448 ], + [ 6.1681125, 46.4771016 ], + [ 6.1680607, 46.4772644 ], + [ 6.1679209, 46.477325 ], + [ 6.1677979, 46.4773632 ], + [ 6.1675206, 46.4773552 ], + [ 6.167008, 46.4772773 ], + [ 6.1667889, 46.4772134 ], + [ 6.166618, 46.4771949 ], + [ 6.1664703, 46.4772273 ], + [ 6.1663389, 46.4772769 ], + [ 6.1662485, 46.4773322 ], + [ 6.1661171, 46.4773816 ], + [ 6.1659448, 46.4774251 ], + [ 6.1657968, 46.4774857 ], + [ 6.1656478, 46.4776082 ], + [ 6.1655069, 46.4777362 ], + [ 6.1653895, 46.4779152 ], + [ 6.1653209, 46.4781003 ], + [ 6.1653253, 46.4782917 ], + [ 6.1653634, 46.4784552 ], + [ 6.1653535, 46.4785452 ], + [ 6.1653194, 46.4786293 ], + [ 6.1652279, 46.478729799999996 ], + [ 6.16516, 46.4788642 ], + [ 6.1651501, 46.4789766 ], + [ 6.1651645, 46.4790725 ], + [ 6.1652518, 46.4792195 ], + [ 6.1654044, 46.4793392 ], + [ 6.1655656, 46.4794588 ], + [ 6.1657589, 46.4796012 ], + [ 6.1658709, 46.479714799999996 ], + [ 6.1660810999999995, 46.4798461 ], + [ 6.1661931, 46.4799653 ], + [ 6.166272, 46.4801068 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "JBG0023", + "country" : "CHE", + "name" : [ + { + "text" : "Eidgenössisches Jagdbanngebiet Le Noirmont", + "lang" : "de-CH" + }, + { + "text" : "District franc fédéral Le Noirmont", + "lang" : "fr-CH" + }, + { + "text" : "Bandita federale di caccia Le Noirmont", + "lang" : "it-CH" + }, + { + "text" : "Federal Game Reserve Le Noirmont", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6868947, 47.5062966 ], + [ 7.6868631, 47.5063102 ], + [ 7.6869396, 47.5064125 ], + [ 7.6870652, 47.5065654 ], + [ 7.6872098, 47.5067423 ], + [ 7.687354, 47.5069244 ], + [ 7.6874699, 47.5070616 ], + [ 7.6875724, 47.5072012 ], + [ 7.6876660999999995, 47.5073235 ], + [ 7.6877526, 47.5074385 ], + [ 7.6878505, 47.5075822 ], + [ 7.687856, 47.5075922 ], + [ 7.6878861, 47.5075828 ], + [ 7.6881105, 47.5079044 ], + [ 7.6881875, 47.5079203 ], + [ 7.6887497, 47.5076987 ], + [ 7.6887773, 47.5076905 ], + [ 7.6889116, 47.5076501 ], + [ 7.6890871, 47.5076261 ], + [ 7.6892629, 47.5076288 ], + [ 7.6892781, 47.5076152 ], + [ 7.6892076, 47.507524599999996 ], + [ 7.689166, 47.5074276 ], + [ 7.6890859, 47.5070987 ], + [ 7.6890657000000004, 47.5070641 ], + [ 7.6887964, 47.5069247 ], + [ 7.6886527000000005, 47.5068266 ], + [ 7.6885596, 47.5067558 ], + [ 7.6883159, 47.5065893 ], + [ 7.6882051, 47.5065142 ], + [ 7.6881415, 47.5064618 ], + [ 7.6880515, 47.5063542 ], + [ 7.6879971, 47.5062673 ], + [ 7.6879176000000005, 47.506095 ], + [ 7.6878411, 47.5059103 ], + [ 7.6877893, 47.50578 ], + [ 7.6877018, 47.5056478 ], + [ 7.6876255, 47.5055153 ], + [ 7.6875284, 47.5053984 ], + [ 7.6875032999999995, 47.5053715 ], + [ 7.6873436, 47.5054336 ], + [ 7.687322, 47.5054433 ], + [ 7.687161, 47.5055159 ], + [ 7.6869402000000004, 47.5056101 ], + [ 7.6872267, 47.5059813 ], + [ 7.687181, 47.5060315 ], + [ 7.6869564, 47.506249 ], + [ 7.6868947, 47.5062966 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns130", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Talweiher", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Talweiher", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Talweiher", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Talweiher", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.5028008, 46.664153 ], + [ 6.5025444, 46.6641567 ], + [ 6.5022888, 46.6641719 ], + [ 6.5020353, 46.6641986 ], + [ 6.5017848, 46.6642366 ], + [ 6.5015384, 46.6642858 ], + [ 6.5012973, 46.6643461 ], + [ 6.5010624, 46.664417 ], + [ 6.5008347, 46.6644984 ], + [ 6.5006153, 46.6645898 ], + [ 6.500405, 46.664691 ], + [ 6.5002048, 46.6648014 ], + [ 6.5000155, 46.6649205 ], + [ 6.4998379, 46.665048 ], + [ 6.4996728, 46.6651831 ], + [ 6.4995209, 46.6653254 ], + [ 6.4993829, 46.6654743 ], + [ 6.4992592, 46.665629 ], + [ 6.4991506, 46.665789 ], + [ 6.4990573, 46.6659535 ], + [ 6.4989799, 46.6661218 ], + [ 6.4989187, 46.6662933 ], + [ 6.4988738999999995, 46.6664672 ], + [ 6.4988457, 46.6666427 ], + [ 6.4988357, 46.6667696 ], + [ 6.4988297, 46.6669056 ], + [ 6.4988335, 46.6671317 ], + [ 6.4988556, 46.6673076 ], + [ 6.4988943, 46.6674822 ], + [ 6.4989495999999995, 46.6676546 ], + [ 6.4990211, 46.6678242 ], + [ 6.4991086, 46.6679903 ], + [ 6.4992117, 46.668152 ], + [ 6.4993299, 46.6683087 ], + [ 6.4994627, 46.6684598 ], + [ 6.4996096, 46.6686045 ], + [ 6.49977, 46.6687424 ], + [ 6.4999431, 46.6688727 ], + [ 6.5001282, 46.668995 ], + [ 6.5003245, 46.6691086 ], + [ 6.5005312, 46.6692132 ], + [ 6.5007475, 46.6693082 ], + [ 6.5009722, 46.6693934 ], + [ 6.5012046, 46.6694682 ], + [ 6.5014436, 46.6695323 ], + [ 6.5016882, 46.6695856 ], + [ 6.5019373, 46.6696278 ], + [ 6.5021899, 46.6696586 ], + [ 6.5024449, 46.669678 ], + [ 6.5026086, 46.6696844 ], + [ 6.5028061, 46.6696892 ], + [ 6.5031552, 46.6696871 ], + [ 6.5034108, 46.6696719 ], + [ 6.5036644, 46.6696452 ], + [ 6.5039149, 46.6696071 ], + [ 6.5041612, 46.6695579 ], + [ 6.5044024, 46.6694977 ], + [ 6.5046373, 46.6694267 ], + [ 6.504865, 46.6693453 ], + [ 6.5050844, 46.6692539 ], + [ 6.5052947, 46.6691527 ], + [ 6.5054949, 46.6690423 ], + [ 6.5056842, 46.6689231 ], + [ 6.5058618, 46.6687957 ], + [ 6.5060269, 46.6686605 ], + [ 6.5061788, 46.6685182 ], + [ 6.5063169, 46.6683694 ], + [ 6.5064405, 46.6682146 ], + [ 6.5065491, 46.6680547 ], + [ 6.5066423, 46.6678901 ], + [ 6.5067197, 46.6677218 ], + [ 6.5067809, 46.6675503 ], + [ 6.5068257, 46.6673764 ], + [ 6.5068539, 46.6672009 ], + [ 6.5068635, 46.6670812 ], + [ 6.50687, 46.6669456 ], + [ 6.5068665, 46.6667123 ], + [ 6.5068444, 46.6665363 ], + [ 6.5068056, 46.6663618 ], + [ 6.5067504, 46.6661893 ], + [ 6.5066787999999995, 46.6660197 ], + [ 6.5065913, 46.6658537 ], + [ 6.5064882, 46.665692 ], + [ 6.50637, 46.6655353 ], + [ 6.5062372, 46.6653842 ], + [ 6.5060902, 46.6652395 ], + [ 6.5059299, 46.6651016 ], + [ 6.5057568, 46.6649713 ], + [ 6.5055717, 46.6648491 ], + [ 6.5053753, 46.6647354 ], + [ 6.5051686, 46.6646309 ], + [ 6.5049524, 46.6645358 ], + [ 6.5047276, 46.6644507 ], + [ 6.5044953, 46.6643759 ], + [ 6.5042563, 46.6643118 ], + [ 6.5040116999999995, 46.6642585 ], + [ 6.5037626, 46.6642163 ], + [ 6.5035101, 46.6641855 ], + [ 6.5032551, 46.6641661 ], + [ 6.5031014, 46.66416 ], + [ 6.5029034, 46.6641548 ], + [ 6.5028008, 46.664153 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00024", + "country" : "CHE", + "name" : [ + { + "text" : "Hôpital régional eHnv site de St-Loup - Pompaples", + "lang" : "de-CH" + }, + { + "text" : "Hôpital régional eHnv site de St-Loup - Pompaples", + "lang" : "fr-CH" + }, + { + "text" : "Hôpital régional eHnv site de St-Loup - Pompaples", + "lang" : "it-CH" + }, + { + "text" : "Hôpital régional eHnv site de St-Loup - Pompaples", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kantonspolizei Waadt", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale vaudoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Vaud", + "lang" : "it-CH" + }, + { + "text" : "Vaud Cantonal Police", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.pcv@vd.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7345882, 47.5092942 ], + [ 7.7350603, 47.5099259 ], + [ 7.7356110000000005, 47.5098216 ], + [ 7.7365097, 47.5097239 ], + [ 7.7373585, 47.5096665 ], + [ 7.7375543, 47.5096159 ], + [ 7.7381078, 47.5093485 ], + [ 7.7382184, 47.5092729 ], + [ 7.7383435, 47.5091271 ], + [ 7.7384381, 47.5089803 ], + [ 7.7385117, 47.5089023 ], + [ 7.7385744, 47.5088695 ], + [ 7.7388664, 47.5088186 ], + [ 7.73914, 47.5087602 ], + [ 7.7394391, 47.5086565 ], + [ 7.7396556, 47.5085364 ], + [ 7.7397551, 47.5084758 ], + [ 7.7399101, 47.5084028 ], + [ 7.7400427, 47.5083095 ], + [ 7.7401499, 47.5082128 ], + [ 7.7401973, 47.5080987 ], + [ 7.7402045, 47.5079656 ], + [ 7.7401399, 47.5078409 ], + [ 7.7400471, 47.5077379 ], + [ 7.7399225, 47.5076378 ], + [ 7.7398056, 47.5075105 ], + [ 7.7397568, 47.5073749 ], + [ 7.7397515, 47.5071429 ], + [ 7.7397066, 47.5070073 ], + [ 7.7397254, 47.5067846 ], + [ 7.7397642, 47.5065836 ], + [ 7.7397, 47.5063128 ], + [ 7.7395264, 47.5063111 ], + [ 7.7392833, 47.5063578 ], + [ 7.7384927999999995, 47.5066114 ], + [ 7.7386378, 47.5068484 ], + [ 7.7385205, 47.5070873 ], + [ 7.7381654, 47.5074107 ], + [ 7.7380478, 47.5075178 ], + [ 7.7378742, 47.507649 ], + [ 7.7378219999999995, 47.5076882 ], + [ 7.7376549, 47.5078652 ], + [ 7.7374941, 47.5080342 ], + [ 7.737484, 47.508044 ], + [ 7.737302, 47.5082195 ], + [ 7.7370879, 47.508426299999996 ], + [ 7.7370514, 47.5084605 ], + [ 7.7368769, 47.5085725 ], + [ 7.7368097, 47.508609 ], + [ 7.736515, 47.5087737 ], + [ 7.7361974, 47.5089475 ], + [ 7.7361278, 47.5089855 ], + [ 7.7358763, 47.5090925 ], + [ 7.7358559, 47.5090998 ], + [ 7.7354617, 47.5092402 ], + [ 7.7353174, 47.5092737 ], + [ 7.7351536, 47.5093123 ], + [ 7.7349392, 47.5093472 ], + [ 7.7348334, 47.5093312 ], + [ 7.7345882, 47.5092942 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns125", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Büchlihau", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Büchlihau", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Büchlihau", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Büchlihau", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8794078, 47.4906338 ], + [ 7.8796756, 47.4909079 ], + [ 7.8798695, 47.491039 ], + [ 7.8802166, 47.4910814 ], + [ 7.8802155, 47.4911801 ], + [ 7.8804257, 47.4912477 ], + [ 7.8805376, 47.4913343 ], + [ 7.8805498, 47.491347 ], + [ 7.8805626, 47.4913593 ], + [ 7.8805762999999995, 47.4913712 ], + [ 7.8805907, 47.4913827 ], + [ 7.8806058, 47.4913938 ], + [ 7.880678, 47.4914545 ], + [ 7.8809332, 47.4916716 ], + [ 7.8809535, 47.4916894 ], + [ 7.8809733, 47.4917076 ], + [ 7.8809925, 47.491726 ], + [ 7.8810111, 47.4917447 ], + [ 7.8810291, 47.4917636 ], + [ 7.8810464, 47.4917829 ], + [ 7.881063, 47.4918023 ], + [ 7.8810789, 47.4918219 ], + [ 7.8810942, 47.4918417 ], + [ 7.8811089, 47.4918618 ], + [ 7.8811229, 47.4918821 ], + [ 7.8811362, 47.4919026 ], + [ 7.881144, 47.4919191 ], + [ 7.8811508, 47.4919358 ], + [ 7.8811568, 47.4919527 ], + [ 7.8811619, 47.4919696 ], + [ 7.8811661, 47.4919867 ], + [ 7.8811694, 47.4920039 ], + [ 7.8811718, 47.4920212 ], + [ 7.8811733, 47.4920385 ], + [ 7.8811739, 47.4920558 ], + [ 7.8811736, 47.4920731 ], + [ 7.8811723, 47.4920904 ], + [ 7.8811702, 47.4921077 ], + [ 7.8811671, 47.4921249 ], + [ 7.8811637, 47.4921424 ], + [ 7.8811594, 47.4921599 ], + [ 7.8811541, 47.4921772 ], + [ 7.8811478, 47.4921944 ], + [ 7.8811406999999996, 47.4922114 ], + [ 7.8811327, 47.4922282 ], + [ 7.8811237, 47.4922448 ], + [ 7.8811139, 47.4922612 ], + [ 7.8811032, 47.4922773 ], + [ 7.8810915999999995, 47.4922932 ], + [ 7.8810792, 47.4923088 ], + [ 7.881066, 47.492323999999996 ], + [ 7.8810999, 47.4927646 ], + [ 7.880884, 47.4930926 ], + [ 7.8808168, 47.493302 ], + [ 7.880738, 47.4934933 ], + [ 7.8806531, 47.4936616 ], + [ 7.8804181, 47.4939944 ], + [ 7.8805102, 47.4940995 ], + [ 7.8808954, 47.4939374 ], + [ 7.8809542, 47.4941109 ], + [ 7.8809701, 47.4941559 ], + [ 7.8810964, 47.4943908 ], + [ 7.8811472, 47.4945808 ], + [ 7.8812681, 47.494729 ], + [ 7.8814039, 47.4950515 ], + [ 7.8814999, 47.4953616 ], + [ 7.8815129, 47.4956987 ], + [ 7.8816539, 47.4956707 ], + [ 7.8818631, 47.4957272 ], + [ 7.8819351, 47.4958143 ], + [ 7.8819526, 47.495824999999996 ], + [ 7.8819694, 47.495836 ], + [ 7.8819856999999995, 47.495847499999996 ], + [ 7.8820014, 47.4958594 ], + [ 7.8820163999999995, 47.4958716 ], + [ 7.8820308, 47.4958842 ], + [ 7.8820446, 47.4958971 ], + [ 7.8820575999999996, 47.4959103 ], + [ 7.88207, 47.4959238 ], + [ 7.8820816, 47.4959377 ], + [ 7.8820925, 47.4959518 ], + [ 7.88223, 47.496115 ], + [ 7.8822461, 47.4961348 ], + [ 7.8822627, 47.4961544 ], + [ 7.88228, 47.4961737 ], + [ 7.8822978, 47.4961928 ], + [ 7.8823159, 47.4962121 ], + [ 7.8823346, 47.4962311 ], + [ 7.8823539, 47.4962498 ], + [ 7.8823738, 47.4962683 ], + [ 7.8826697, 47.4965248 ], + [ 7.8827469, 47.4966247 ], + [ 7.8828149, 47.4966734 ], + [ 7.8828534, 47.4966838 ], + [ 7.8829077, 47.4966985 ], + [ 7.8831521, 47.4967088 ], + [ 7.8831656, 47.4967097 ], + [ 7.8831792, 47.4967102 ], + [ 7.8831927, 47.4967102 ], + [ 7.8832063, 47.4967098 ], + [ 7.8833119, 47.4966904 ], + [ 7.883421, 47.4966354 ], + [ 7.8835155, 47.4965163 ], + [ 7.8837577, 47.4960883 ], + [ 7.8837636, 47.4960772 ], + [ 7.8837689, 47.4960659 ], + [ 7.8837735, 47.4960546 ], + [ 7.8837775, 47.496043 ], + [ 7.8837808, 47.4960314 ], + [ 7.8837835, 47.4960197 ], + [ 7.8837855, 47.496008 ], + [ 7.8837869, 47.495994 ], + [ 7.8837874, 47.4959801 ], + [ 7.883787, 47.4959661 ], + [ 7.8837855999999995, 47.4959521 ], + [ 7.883791, 47.4959292 ], + [ 7.8837039, 47.495711 ], + [ 7.8836724, 47.4955834 ], + [ 7.8836811, 47.4954733 ], + [ 7.8837165, 47.4953208 ], + [ 7.8842543, 47.4942831 ], + [ 7.8844268, 47.4939611 ], + [ 7.8844346, 47.493943 ], + [ 7.8844433, 47.493925 ], + [ 7.8844527, 47.4939071 ], + [ 7.8844629, 47.4938895 ], + [ 7.8844739, 47.4938721 ], + [ 7.8844856, 47.4938549 ], + [ 7.8844981, 47.493838 ], + [ 7.8845114, 47.4938213 ], + [ 7.8845254, 47.493805 ], + [ 7.8845401, 47.4937889 ], + [ 7.8845555, 47.4937731 ], + [ 7.8845716, 47.4937576 ], + [ 7.8845884, 47.4937425 ], + [ 7.8848991999999996, 47.4935269 ], + [ 7.8846643, 47.4932505 ], + [ 7.8845936, 47.4932193 ], + [ 7.8845872, 47.4932191 ], + [ 7.884518, 47.4931415 ], + [ 7.8843755, 47.4931471 ], + [ 7.8842964, 47.4931642 ], + [ 7.8842917, 47.4931958 ], + [ 7.8842597, 47.4931928 ], + [ 7.8840461, 47.4931891 ], + [ 7.8839597999999995, 47.4929291 ], + [ 7.8838298, 47.4925274 ], + [ 7.883847, 47.4925207 ], + [ 7.8838633, 47.492513 ], + [ 7.8838785, 47.4925044 ], + [ 7.8838925, 47.4924949 ], + [ 7.8839052, 47.4924845 ], + [ 7.8839164, 47.4924735 ], + [ 7.8839262, 47.4924618 ], + [ 7.8839344, 47.4924495 ], + [ 7.8839409, 47.4924368 ], + [ 7.8839458, 47.4924238 ], + [ 7.8839489, 47.4924105 ], + [ 7.8839502, 47.4923971 ], + [ 7.8839473, 47.4923723 ], + [ 7.8839415, 47.4923476 ], + [ 7.8839329, 47.4923234 ], + [ 7.8839214, 47.4922997 ], + [ 7.8838787, 47.4922256 ], + [ 7.8838691, 47.4922116 ], + [ 7.8838614, 47.4921971 ], + [ 7.8838555, 47.4921822 ], + [ 7.8838516, 47.4921671 ], + [ 7.8838495, 47.4921517 ], + [ 7.8838494, 47.4921363 ], + [ 7.8838512, 47.492121 ], + [ 7.883855, 47.4921058 ], + [ 7.8838606, 47.4920909 ], + [ 7.8838681, 47.4920763 ], + [ 7.8838774, 47.4920623 ], + [ 7.8838885, 47.4920488 ], + [ 7.8839272, 47.4920111 ], + [ 7.8839713, 47.4919761 ], + [ 7.8840202999999995, 47.4919443 ], + [ 7.884215, 47.491828 ], + [ 7.88434, 47.491742 ], + [ 7.8843954, 47.4916638 ], + [ 7.8844231, 47.4915674 ], + [ 7.8844317, 47.4915031 ], + [ 7.8844427, 47.4913269 ], + [ 7.8844652, 47.4912255 ], + [ 7.8844972, 47.4911433 ], + [ 7.8845286, 47.4910765 ], + [ 7.8845214, 47.4910687 ], + [ 7.8844569, 47.4909194 ], + [ 7.8844834, 47.4908188 ], + [ 7.8843936, 47.4906766 ], + [ 7.8841380999999995, 47.4906087 ], + [ 7.8839974999999995, 47.4906037 ], + [ 7.8839364, 47.4906285 ], + [ 7.8836697000000004, 47.4905509 ], + [ 7.8835949, 47.4906134 ], + [ 7.8833893, 47.4905522 ], + [ 7.8831474, 47.4904375 ], + [ 7.8829504, 47.4903931 ], + [ 7.882906, 47.490383 ], + [ 7.8829142, 47.4903689 ], + [ 7.8829272, 47.490348 ], + [ 7.8829408999999995, 47.4903274 ], + [ 7.8829554, 47.4903069 ], + [ 7.8829704, 47.4902867 ], + [ 7.8829861999999995, 47.4902667 ], + [ 7.8829983, 47.4902537 ], + [ 7.8830108, 47.490241 ], + [ 7.8830238, 47.4902284 ], + [ 7.8830372, 47.4902161 ], + [ 7.883051, 47.4902039 ], + [ 7.8829819, 47.4900325 ], + [ 7.8828668, 47.4897473 ], + [ 7.8828631, 47.489738 ], + [ 7.8828152, 47.4897496 ], + [ 7.8827564, 47.4897556 ], + [ 7.8825304, 47.4897875 ], + [ 7.8823515, 47.4897882 ], + [ 7.8823339, 47.4897884 ], + [ 7.8823115999999995, 47.489761 ], + [ 7.8822168999999995, 47.4897964 ], + [ 7.8821127, 47.489806 ], + [ 7.8820072, 47.4898157 ], + [ 7.8819717, 47.4895908 ], + [ 7.8819592, 47.4895295 ], + [ 7.8819441, 47.4894685 ], + [ 7.8819265, 47.4894078 ], + [ 7.8818627, 47.4892548 ], + [ 7.881843, 47.4891972 ], + [ 7.8818283000000005, 47.4891389 ], + [ 7.8818187, 47.4890802 ], + [ 7.8818119, 47.489022 ], + [ 7.8818101, 47.4889637 ], + [ 7.8818132, 47.4889055 ], + [ 7.8818149, 47.4888602 ], + [ 7.8818135, 47.488815 ], + [ 7.8818089, 47.4887699 ], + [ 7.8818006, 47.4887256 ], + [ 7.8817892, 47.4886816 ], + [ 7.8817748, 47.488638 ], + [ 7.8817498, 47.4885618 ], + [ 7.8816969, 47.4885756 ], + [ 7.8816764, 47.488581 ], + [ 7.881537, 47.4886174 ], + [ 7.8814145, 47.488653 ], + [ 7.8813547, 47.488686 ], + [ 7.8812844, 47.4887276 ], + [ 7.8811069, 47.4888443 ], + [ 7.8809889, 47.4889603 ], + [ 7.8809618, 47.4890234 ], + [ 7.8809786, 47.4890312 ], + [ 7.8809949, 47.4890395 ], + [ 7.8810106, 47.4890484 ], + [ 7.8810257, 47.4890577 ], + [ 7.8810401, 47.4890675 ], + [ 7.8810538, 47.4890777 ], + [ 7.8810669, 47.4890884 ], + [ 7.8810791, 47.4890994 ], + [ 7.8810906, 47.4891109 ], + [ 7.8811013, 47.4891226 ], + [ 7.8809804, 47.4892093 ], + [ 7.8808217, 47.489276 ], + [ 7.8808085, 47.4892821 ], + [ 7.8807948, 47.4892877 ], + [ 7.8807807, 47.4892927 ], + [ 7.8807661, 47.4892972 ], + [ 7.8807511, 47.489301 ], + [ 7.8807358999999995, 47.4893043 ], + [ 7.8807203, 47.4893068 ], + [ 7.8807046, 47.4893088 ], + [ 7.8806887, 47.4893101 ], + [ 7.8806728, 47.4893108 ], + [ 7.8806568, 47.4893108 ], + [ 7.8806408, 47.4893101 ], + [ 7.8802574, 47.4895652 ], + [ 7.8799953, 47.4897517 ], + [ 7.8798783, 47.4898181 ], + [ 7.8796595, 47.4899277 ], + [ 7.8798989, 47.4901769 ], + [ 7.8798176, 47.4903068 ], + [ 7.8794078, 47.4906338 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns249", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Steingraben", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Steingraben", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Steingraben", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Steingraben", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5580111, 47.4385409 ], + [ 7.5579225999999995, 47.4381602 ], + [ 7.5579918, 47.4377318 ], + [ 7.5573952, 47.4375777 ], + [ 7.5562199, 47.4374361 ], + [ 7.5557989, 47.437389 ], + [ 7.5547298, 47.4377113 ], + [ 7.5545898000000005, 47.4378542 ], + [ 7.55403, 47.4384616 ], + [ 7.5557337, 47.4396736 ], + [ 7.5557688, 47.4396973 ], + [ 7.5559614, 47.4395425 ], + [ 7.5563115, 47.4392327 ], + [ 7.5570127, 47.4391011 ], + [ 7.5577137, 47.4388505 ], + [ 7.5580111, 47.4385409 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr111", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Einschlag", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Einschlag", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Einschlag", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Einschlag", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 5.9709269, 46.2043303 ], + [ 5.9709079, 46.2043384 ], + [ 5.9723147, 46.2047288 ], + [ 5.973831, 46.2047157 ], + [ 5.9752247, 46.2043007 ], + [ 5.9762836, 46.2035469 ], + [ 5.9763064, 46.2035226 ], + [ 5.9768691, 46.2025454 ], + [ 5.9768507, 46.201493 ], + [ 5.9762541, 46.2005256 ], + [ 5.9751699, 46.1997902 ], + [ 5.9751142, 46.199765 ], + [ 5.9739951, 46.1994187 ], + [ 5.9727765, 46.1993316 ], + [ 5.9715793, 46.1995121 ], + [ 5.9705224999999995, 46.1999425 ], + [ 5.9697111, 46.2005799 ], + [ 5.9696887, 46.2006044 ], + [ 5.9693404999999995, 46.2012267 ], + [ 5.9693469, 46.2012259 ], + [ 5.9693781999999995, 46.2012093 ], + [ 5.9694739, 46.2011812 ], + [ 5.9695333999999995, 46.201156 ], + [ 5.969575, 46.2011014 ], + [ 5.9696812, 46.2010705 ], + [ 5.9697098, 46.2010348 ], + [ 5.9697652, 46.201041 ], + [ 5.9698344, 46.2011559 ], + [ 5.9699525, 46.2012026 ], + [ 5.9700285, 46.201221 ], + [ 5.9701251, 46.201283 ], + [ 5.9701958, 46.2013525 ], + [ 5.9702253, 46.2013773 ], + [ 5.9702953999999995, 46.2014258 ], + [ 5.970321, 46.2014501 ], + [ 5.9703636, 46.201469 ], + [ 5.970395, 46.2014764 ], + [ 5.9704515, 46.2014645 ], + [ 5.970467, 46.2014702 ], + [ 5.9704822, 46.2015116 ], + [ 5.9704552, 46.201625 ], + [ 5.9704783, 46.2016887 ], + [ 5.970518, 46.201726 ], + [ 5.9705896, 46.2017085 ], + [ 5.9706154, 46.2016743 ], + [ 5.9708193, 46.201591 ], + [ 5.9708427, 46.2015641 ], + [ 5.9708875, 46.2015407 ], + [ 5.9709607, 46.2015403 ], + [ 5.9710168, 46.2015648 ], + [ 5.971039, 46.2016169 ], + [ 5.9710772, 46.2016444 ], + [ 5.9711203, 46.2016501 ], + [ 5.9711822, 46.2016414 ], + [ 5.9713549, 46.2015702 ], + [ 5.9714271, 46.2015909 ], + [ 5.9715278, 46.2015903 ], + [ 5.9715708, 46.2016112 ], + [ 5.9716552, 46.2016731 ], + [ 5.9717082999999995, 46.2017023 ], + [ 5.971766, 46.2017689 ], + [ 5.9718149, 46.2018143 ], + [ 5.9719701, 46.2019659 ], + [ 5.9720404, 46.2020858 ], + [ 5.9720916, 46.2021316 ], + [ 5.972107, 46.2021552 ], + [ 5.97215, 46.2021821 ], + [ 5.9722029, 46.2021828 ], + [ 5.9722301, 46.2021634 ], + [ 5.9722401, 46.2021621 ], + [ 5.9722791, 46.2021655 ], + [ 5.9723071999999995, 46.2021614 ], + [ 5.9723203, 46.2021303 ], + [ 5.9723652, 46.202117 ], + [ 5.9724183, 46.2021256 ], + [ 5.9724626999999995, 46.2021274 ], + [ 5.9726224, 46.202159 ], + [ 5.9726835, 46.2021736 ], + [ 5.9727383, 46.2021949 ], + [ 5.972728, 46.2022409 ], + [ 5.972718, 46.2022512 ], + [ 5.9726834, 46.2022703 ], + [ 5.972641, 46.2022601 ], + [ 5.972604, 46.2022646 ], + [ 5.9725705, 46.2022849 ], + [ 5.9725605999999996, 46.2023112 ], + [ 5.9725544, 46.2023538 ], + [ 5.9725317, 46.2023803 ], + [ 5.9725421, 46.2024022 ], + [ 5.9725968, 46.2024162 ], + [ 5.972651, 46.2024233 ], + [ 5.9727795, 46.2024125 ], + [ 5.9728058, 46.2024131 ], + [ 5.9728737, 46.2024198 ], + [ 5.9730032, 46.2024393 ], + [ 5.9730887, 46.2024589 ], + [ 5.9732520000000005, 46.2024914 ], + [ 5.9732644, 46.2024915 ], + [ 5.9733932, 46.2025336 ], + [ 5.9734299, 46.2025752 ], + [ 5.9734437, 46.2026281 ], + [ 5.9733996, 46.2026861 ], + [ 5.9733971, 46.2027096 ], + [ 5.9734308, 46.2027358 ], + [ 5.9734853, 46.20275 ], + [ 5.9735182, 46.2027778 ], + [ 5.9734437, 46.2028163 ], + [ 5.9733903999999995, 46.2028345 ], + [ 5.973278, 46.2028608 ], + [ 5.9732529, 46.2029313 ], + [ 5.9732074, 46.202973 ], + [ 5.9731552, 46.2029907 ], + [ 5.9731026, 46.2030219 ], + [ 5.9730527, 46.2030877 ], + [ 5.9730359, 46.2031724 ], + [ 5.9729928, 46.2032316 ], + [ 5.9729186, 46.2032552 ], + [ 5.9728858, 46.2032896 ], + [ 5.9728311, 46.2033278 ], + [ 5.9727823, 46.2033398 ], + [ 5.9727757, 46.2033557 ], + [ 5.9727813, 46.2033723 ], + [ 5.9728131, 46.2034013 ], + [ 5.9728364, 46.2034129 ], + [ 5.9728747, 46.2034437 ], + [ 5.9728823, 46.2034627 ], + [ 5.972876, 46.203484 ], + [ 5.9728476, 46.2035014 ], + [ 5.972835, 46.2035206 ], + [ 5.9728316, 46.2036002 ], + [ 5.9728088, 46.2036172 ], + [ 5.9726951, 46.2036508 ], + [ 5.9726627, 46.2036568 ], + [ 5.9726194, 46.2036814 ], + [ 5.9725793, 46.2036963 ], + [ 5.9725522, 46.2037152 ], + [ 5.9724974, 46.2037411 ], + [ 5.9723777, 46.2037656 ], + [ 5.9723439, 46.2037889 ], + [ 5.9721767, 46.203851 ], + [ 5.972082, 46.2038567 ], + [ 5.9720227, 46.2038792 ], + [ 5.9719472, 46.2039342 ], + [ 5.9719207, 46.2039664 ], + [ 5.9719103, 46.2039961 ], + [ 5.9718883, 46.2040158 ], + [ 5.971788, 46.2040657 ], + [ 5.9717609, 46.2040817 ], + [ 5.9717101, 46.2041296 ], + [ 5.9716313, 46.204175 ], + [ 5.9715931, 46.2041883 ], + [ 5.9715239, 46.2042541 ], + [ 5.9714107, 46.2042789 ], + [ 5.9713560999999995, 46.2043257 ], + [ 5.9712092, 46.2043327 ], + [ 5.9711167, 46.204298 ], + [ 5.9709269, 46.2043303 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-59", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8525683, 47.5130396 ], + [ 7.8525632, 47.5130591 ], + [ 7.8525541, 47.5130903 ], + [ 7.8525446, 47.5131215 ], + [ 7.8525348, 47.5131527 ], + [ 7.8525247, 47.5131838 ], + [ 7.8525141, 47.5132146 ], + [ 7.8525031, 47.5132453 ], + [ 7.8524919, 47.5132759 ], + [ 7.8524803, 47.5133065 ], + [ 7.8523262, 47.5136322 ], + [ 7.8522751, 47.5137407 ], + [ 7.8522638, 47.5137629 ], + [ 7.8522533, 47.5137852 ], + [ 7.8522435999999995, 47.5138076 ], + [ 7.8522346, 47.5138302 ], + [ 7.8522263, 47.5138529 ], + [ 7.852219, 47.5138747 ], + [ 7.8522124, 47.5138965 ], + [ 7.8522065, 47.5139184 ], + [ 7.8522013, 47.5139405 ], + [ 7.8521994, 47.5139494 ], + [ 7.8523205, 47.51397 ], + [ 7.8523408, 47.5140462 ], + [ 7.8526454999999995, 47.5141229 ], + [ 7.8526183, 47.5136694 ], + [ 7.853104, 47.513663 ], + [ 7.8531319, 47.5133707 ], + [ 7.8532103, 47.5131345 ], + [ 7.8530827, 47.5130784 ], + [ 7.8525683, 47.5130396 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns159", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Seematten-Holl", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Seematten-Holl", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Seematten-Holl", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Seematten-Holl", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7344296, 47.48635 ], + [ 7.7344234, 47.4862088 ], + [ 7.7344063, 47.486068 ], + [ 7.7343782999999995, 47.485928 ], + [ 7.7343395, 47.4857892 ], + [ 7.7342901, 47.485652 ], + [ 7.7342302, 47.4855167 ], + [ 7.7341599, 47.4853837 ], + [ 7.7340794, 47.4852534 ], + [ 7.733989, 47.4851262 ], + [ 7.7338889, 47.4850023 ], + [ 7.7337793, 47.4848821 ], + [ 7.7336606, 47.484766 ], + [ 7.7335331, 47.4846542 ], + [ 7.7333972, 47.4845472 ], + [ 7.7332532, 47.4844451 ], + [ 7.7331015, 47.4843482 ], + [ 7.7329425, 47.4842569 ], + [ 7.7327767, 47.4841713 ], + [ 7.7326046, 47.4840917 ], + [ 7.7324265, 47.4840184 ], + [ 7.732243, 47.4839514 ], + [ 7.7320545, 47.4838911 ], + [ 7.7318617, 47.4838375 ], + [ 7.731665, 47.4837909 ], + [ 7.731465, 47.4837513 ], + [ 7.7312622, 47.4837188 ], + [ 7.7310572, 47.4836936 ], + [ 7.7308504, 47.4836756 ], + [ 7.7306425999999995, 47.4836651 ], + [ 7.7304343, 47.4836619 ], + [ 7.730226, 47.4836661 ], + [ 7.7300183, 47.4836777 ], + [ 7.7298118, 47.4836967 ], + [ 7.7296071, 47.483723 ], + [ 7.7294046, 47.4837565 ], + [ 7.729205, 47.4837971 ], + [ 7.7290089, 47.4838447 ], + [ 7.7288166, 47.4838993 ], + [ 7.7286289, 47.4839606 ], + [ 7.7284461, 47.4840284 ], + [ 7.7282688, 47.4841027 ], + [ 7.7280975, 47.4841831 ], + [ 7.7279327, 47.4842695 ], + [ 7.7277747, 47.4843617 ], + [ 7.7276241, 47.4844593 ], + [ 7.7274812, 47.4845621 ], + [ 7.7273464, 47.4846699 ], + [ 7.7272202, 47.4847822 ], + [ 7.7271028, 47.484899 ], + [ 7.7269946, 47.4850197 ], + [ 7.7268958, 47.4851441 ], + [ 7.7268068, 47.4852718 ], + [ 7.7267277, 47.4854025 ], + [ 7.7266589, 47.4855358 ], + [ 7.7266004, 47.4856714 ], + [ 7.7265525, 47.4858089 ], + [ 7.7265153, 47.4859479 ], + [ 7.7264889, 47.486088 ], + [ 7.7264733, 47.4862289 ], + [ 7.7264686000000005, 47.4863701 ], + [ 7.7264748, 47.4865113 ], + [ 7.7264919, 47.4866521 ], + [ 7.7265198999999996, 47.4867921 ], + [ 7.7265586, 47.4869309 ], + [ 7.726608, 47.4870681 ], + [ 7.7266679, 47.4872034 ], + [ 7.7267382, 47.4873364 ], + [ 7.7268187, 47.4874667 ], + [ 7.7269091, 47.487594 ], + [ 7.7270092, 47.4877179 ], + [ 7.7271187, 47.4878381 ], + [ 7.7272374, 47.4879542 ], + [ 7.7273648999999995, 47.4880659 ], + [ 7.7275008, 47.488173 ], + [ 7.7276448, 47.4882751 ], + [ 7.7277965, 47.488372 ], + [ 7.7279555, 47.4884633 ], + [ 7.7281213, 47.4885489 ], + [ 7.7282934999999995, 47.4886285 ], + [ 7.7284716, 47.4887018 ], + [ 7.7286551, 47.4887688 ], + [ 7.7288435, 47.4888291 ], + [ 7.7290364, 47.4888827 ], + [ 7.7292331, 47.4889294 ], + [ 7.7294331, 47.488969 ], + [ 7.7296359, 47.4890015 ], + [ 7.729841, 47.4890267 ], + [ 7.7300477, 47.4890446 ], + [ 7.7302555, 47.4890552 ], + [ 7.7304639, 47.4890583 ], + [ 7.7306722, 47.4890541 ], + [ 7.7308799, 47.4890425 ], + [ 7.7310865, 47.4890235 ], + [ 7.7312912, 47.4889973 ], + [ 7.7314937, 47.4889638 ], + [ 7.7316933, 47.4889232 ], + [ 7.7318895, 47.4888755 ], + [ 7.7320817, 47.488821 ], + [ 7.7322695, 47.4887597 ], + [ 7.7324523, 47.4886918 ], + [ 7.7326296, 47.4886175 ], + [ 7.7328009, 47.4885371 ], + [ 7.7329657, 47.4884507 ], + [ 7.7331237, 47.4883585 ], + [ 7.7332743, 47.4882609 ], + [ 7.7334172, 47.4881581 ], + [ 7.7335519999999995, 47.4880503 ], + [ 7.7336782, 47.4879379 ], + [ 7.7337956, 47.4878212 ], + [ 7.7339038, 47.4877005 ], + [ 7.7340026, 47.4875761 ], + [ 7.7340916, 47.4874483 ], + [ 7.7341706, 47.4873176 ], + [ 7.7342395, 47.4871843 ], + [ 7.7342979, 47.4870487 ], + [ 7.7343458, 47.4869112 ], + [ 7.734383, 47.4867722 ], + [ 7.7344094, 47.4866321 ], + [ 7.734425, 47.4864912 ], + [ 7.7344296, 47.48635 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LIE0001", + "country" : "CHE", + "name" : [ + { + "text" : "Gefängnis Liestal", + "lang" : "de-CH" + }, + { + "text" : "Gefängnis Liestal", + "lang" : "fr-CH" + }, + { + "text" : "Gefängnis Liestal", + "lang" : "it-CH" + }, + { + "text" : "Gefängnis Liestal", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Justizvollzug Basel-Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Amt für Justizvollzug Basel-Landschaft", + "lang" : "fr-CH" + }, + { + "text" : "Amt für Justizvollzug Basel-Landschaft", + "lang" : "it-CH" + }, + { + "text" : "Amt für Justizvollzug Basel-Landschaft", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Amtsleitung", + "lang" : "de-CH" + }, + { + "text" : "Amtsleitung", + "lang" : "fr-CH" + }, + { + "text" : "Amtsleitung", + "lang" : "it-CH" + }, + { + "text" : "Amtsleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Nicolas Pozar", + "lang" : "de-CH" + }, + { + "text" : "Nicolas Pozar", + "lang" : "fr-CH" + }, + { + "text" : "Nicolas Pozar", + "lang" : "it-CH" + }, + { + "text" : "Nicolas Pozar", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/sicherheitsdirektion/bv-sid/justizvollzug", + "email" : "kanzlei.ajv@bl.ch", + "phone" : "0041615529045", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P21DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.0365725, 47.1763041 ], + [ 9.0370618, 47.1760328 ], + [ 9.0382602, 47.1753828 ], + [ 9.0386841, 47.1752203 ], + [ 9.0392153, 47.1740586 ], + [ 9.0394716, 47.1741136 ], + [ 9.0403038, 47.1724277 ], + [ 9.041453, 47.1726942 ], + [ 9.0418291, 47.1715958 ], + [ 9.0422827, 47.1714114 ], + [ 9.0410663, 47.1700473 ], + [ 9.0413944, 47.1693284 ], + [ 9.0401402, 47.1690778 ], + [ 9.0398192, 47.1697696 ], + [ 9.0394807, 47.1697005 ], + [ 9.0386321, 47.1716296 ], + [ 9.038792, 47.1718603 ], + [ 9.0385617, 47.1717898 ], + [ 9.0365725, 47.1763041 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZX002", + "country" : "CHE", + "name" : [ + { + "text" : "LSZX Schänis (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSZX Schänis (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSZX Schänis (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSZX Schänis (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Flugplatz Schänis", + "lang" : "de-CH" + }, + { + "text" : "Flugplatz Schänis", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatz Schänis", + "lang" : "it-CH" + }, + { + "text" : "Flugplatz Schänis", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Lukas Zeitner", + "lang" : "de-CH" + }, + { + "text" : "Lukas Zeitner", + "lang" : "fr-CH" + }, + { + "text" : "Lukas Zeitner", + "lang" : "it-CH" + }, + { + "text" : "Lukas Zeitner", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.flugplatz-schaenis.ch", + "email" : "flugplatzleiter@flugplatz-schaenis.ch", + "phone" : "0041552505000", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT12H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6581471, 47.503334100000004 ], + [ 7.6581428, 47.5033396 ], + [ 7.658134, 47.5033533 ], + [ 7.6581272, 47.5033674 ], + [ 7.6581228, 47.5033821 ], + [ 7.6581207, 47.5033968 ], + [ 7.6581208, 47.5034118 ], + [ 7.6581232, 47.5034265 ], + [ 7.6581279, 47.5034411 ], + [ 7.6581348, 47.5034553 ], + [ 7.6581439, 47.5034688 ], + [ 7.6581548999999995, 47.5034817 ], + [ 7.6581712, 47.5034975 ], + [ 7.6582037, 47.5035347 ], + [ 7.6582302, 47.5035739 ], + [ 7.6582505, 47.5036148 ], + [ 7.6582645, 47.5036569 ], + [ 7.6583206, 47.5036722 ], + [ 7.6586043, 47.503764 ], + [ 7.6588722, 47.5038753 ], + [ 7.6591216, 47.5040051 ], + [ 7.6593496, 47.5041518 ], + [ 7.6597295, 47.5042166 ], + [ 7.6600203, 47.5042925 ], + [ 7.6601511, 47.5042996 ], + [ 7.6604051, 47.5042548 ], + [ 7.6605358, 47.5042521 ], + [ 7.6606776, 47.5042813 ], + [ 7.6611392, 47.5044011 ], + [ 7.6612941, 47.5044333 ], + [ 7.6614662, 47.5044566 ], + [ 7.6616411, 47.5044676 ], + [ 7.6618167, 47.5044662 ], + [ 7.6621559999999995, 47.5044422 ], + [ 7.6624991, 47.5043934 ], + [ 7.6625369, 47.5043848 ], + [ 7.6625941, 47.5043678 ], + [ 7.6626482, 47.504347 ], + [ 7.662699, 47.5043225 ], + [ 7.6627456, 47.5042944 ], + [ 7.6627875, 47.5042632 ], + [ 7.6628246, 47.5042292 ], + [ 7.6628561, 47.5041928 ], + [ 7.662882, 47.5041544 ], + [ 7.6629016, 47.5041143 ], + [ 7.6629149, 47.5040731 ], + [ 7.6630478, 47.5036498 ], + [ 7.663181, 47.5033836 ], + [ 7.6631878, 47.5033668 ], + [ 7.6632033, 47.5033143 ], + [ 7.6632107, 47.503261 ], + [ 7.6632098, 47.5032074 ], + [ 7.6632007, 47.5031543 ], + [ 7.6631833, 47.503102 ], + [ 7.663158, 47.5030513 ], + [ 7.6631251, 47.5030026 ], + [ 7.6630848, 47.5029565 ], + [ 7.6626508, 47.5024291 ], + [ 7.6624379000000005, 47.502134 ], + [ 7.6614926, 47.5023708 ], + [ 7.6616383, 47.5025844 ], + [ 7.6611736, 47.5027255 ], + [ 7.6611531, 47.5027072 ], + [ 7.6610909, 47.5026595 ], + [ 7.6610216, 47.5026164 ], + [ 7.6609461, 47.5025784 ], + [ 7.6608652, 47.502546 ], + [ 7.6607796, 47.5025195 ], + [ 7.6606905, 47.5024992 ], + [ 7.6605986999999995, 47.5024854 ], + [ 7.6605052, 47.5024781 ], + [ 7.6604112, 47.5024774 ], + [ 7.6603176, 47.5024835 ], + [ 7.6602254, 47.502496 ], + [ 7.6601357, 47.5025152 ], + [ 7.6600494, 47.5025405 ], + [ 7.6599675, 47.5025718 ], + [ 7.6598908, 47.5026088 ], + [ 7.6596134, 47.5027878 ], + [ 7.659427, 47.5028988 ], + [ 7.6592166, 47.5030002 ], + [ 7.6589917, 47.5030862 ], + [ 7.6587548, 47.5031557 ], + [ 7.6585084, 47.503208 ], + [ 7.6582553, 47.5032427 ], + [ 7.6581471, 47.503334100000004 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns145", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Sulzgrube", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Sulzgrube", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Sulzgrube", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Sulzgrube", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.9033608, 47.4137058 ], + [ 7.9034046, 47.4136458 ], + [ 7.9034468, 47.413564 ], + [ 7.9032791, 47.4134656 ], + [ 7.9032675999999995, 47.413356 ], + [ 7.9031172, 47.413318 ], + [ 7.9030648, 47.4133967 ], + [ 7.9030123, 47.4134054 ], + [ 7.9030068, 47.4134272 ], + [ 7.9029641, 47.4134223 ], + [ 7.9029259, 47.4134355 ], + [ 7.9029073, 47.4134782 ], + [ 7.9028887, 47.4135209 ], + [ 7.9028743, 47.4136803 ], + [ 7.9029381999999995, 47.4137227 ], + [ 7.9030328, 47.4139965 ], + [ 7.9034536, 47.4143578 ], + [ 7.903598, 47.4144818 ], + [ 7.9038088, 47.4145998 ], + [ 7.9048088, 47.4151034 ], + [ 7.9048736, 47.4150278 ], + [ 7.9047711, 47.4150079 ], + [ 7.9047957, 47.4148722 ], + [ 7.9050206, 47.4146281 ], + [ 7.9053772, 47.4145462 ], + [ 7.9053785, 47.4145209 ], + [ 7.9052641, 47.414492 ], + [ 7.9050245, 47.4144844 ], + [ 7.9048495, 47.4144661 ], + [ 7.9043143, 47.414229399999996 ], + [ 7.9037757, 47.4138611 ], + [ 7.9037428, 47.413843 ], + [ 7.9036869, 47.4138322 ], + [ 7.9035237, 47.4138201 ], + [ 7.9034126, 47.4137803 ], + [ 7.9033608, 47.4137058 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr056", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Flüematt", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Flüematt", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Flüematt", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Flüematt", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.3551111, 47.329177 ], + [ 8.3549366, 47.3291501 ], + [ 8.3546908, 47.3291377 ], + [ 8.3541981, 47.3291342 ], + [ 8.3536425, 47.329249 ], + [ 8.3531951, 47.3293556 ], + [ 8.3526938, 47.3294811 ], + [ 8.352293, 47.3296038 ], + [ 8.3520427, 47.3297173 ], + [ 8.3518236, 47.3298781 ], + [ 8.3515748, 47.3302076 ], + [ 8.351491, 47.3303923 ], + [ 8.3512571, 47.330814 ], + [ 8.3510009, 47.3311638 ], + [ 8.3507673, 47.3316342 ], + [ 8.3503126, 47.3322713 ], + [ 8.3501261, 47.3324347 ], + [ 8.3496872, 47.3327513 ], + [ 8.3491949, 47.333096 ], + [ 8.3487395, 47.3334185 ], + [ 8.3483024, 47.3336534 ], + [ 8.3478768, 47.3338614 ], + [ 8.347228, 47.3342099 ], + [ 8.3467669, 47.3345162 ], + [ 8.346461, 47.3347504 ], + [ 8.3459024, 47.3350829 ], + [ 8.3454332, 47.3353415 ], + [ 8.3450033, 47.3355855 ], + [ 8.3447866, 47.335703 ], + [ 8.3443261, 47.3358812 ], + [ 8.3438601, 47.3360763 ], + [ 8.343332, 47.3362796 ], + [ 8.3430164, 47.3364087 ], + [ 8.3427834, 47.336459 ], + [ 8.3422701, 47.336535 ], + [ 8.3417573, 47.3365851 ], + [ 8.3414559, 47.3366562 ], + [ 8.3412726, 47.3367719 ], + [ 8.3407412, 47.3369937 ], + [ 8.3395654, 47.3372488 ], + [ 8.338837, 47.3375626 ], + [ 8.3383216, 47.3378673 ], + [ 8.3376316, 47.3382854 ], + [ 8.336883, 47.3386992 ], + [ 8.3364093, 47.3390048 ], + [ 8.3362942, 47.3391427 ], + [ 8.3360879, 47.3396278 ], + [ 8.335893, 47.3399345 ], + [ 8.3355392, 47.3405757 ], + [ 8.3354913, 47.3408022 ], + [ 8.3354908, 47.3411483 ], + [ 8.3355594, 47.3416625 ], + [ 8.3356231, 47.3423152 ], + [ 8.3357542, 47.3426903 ], + [ 8.3359216, 47.3431198 ], + [ 8.3361087, 47.3434194 ], + [ 8.3364226, 47.3438153 ], + [ 8.3366983, 47.3441508 ], + [ 8.3370013, 47.3444372 ], + [ 8.3370456, 47.3444614 ], + [ 8.3374189, 47.3446789 ], + [ 8.3374884, 47.344705 ], + [ 8.3377849, 47.3448226 ], + [ 8.3379788, 47.3449195 ], + [ 8.3381899, 47.3449804 ], + [ 8.3384177, 47.3449957 ], + [ 8.3387837, 47.3449332 ], + [ 8.3391556, 47.3448046 ], + [ 8.3395133, 47.3446324 ], + [ 8.339679, 47.3445054 ], + [ 8.3397678, 47.3443811 ], + [ 8.3398716, 47.3442104 ], + [ 8.3399556, 47.3439896 ], + [ 8.3401754, 47.3436761 ], + [ 8.3403617, 47.3433749 ], + [ 8.3407588, 47.342809 ], + [ 8.3410392, 47.3425173 ], + [ 8.3411619, 47.3423987 ], + [ 8.341194699999999, 47.3423299 ], + [ 8.3420474, 47.3420372 ], + [ 8.3422321, 47.3420015 ], + [ 8.3431466, 47.3422845 ], + [ 8.3436905, 47.342373 ], + [ 8.3441337, 47.342473 ], + [ 8.3446683, 47.3426594 ], + [ 8.3448738, 47.3428288 ], + [ 8.3449688, 47.3429705 ], + [ 8.344969, 47.3432237 ], + [ 8.3450128, 47.3435121 ], + [ 8.3464349, 47.3434827 ], + [ 8.3465437, 47.3434589 ], + [ 8.3465759, 47.3433617 ], + [ 8.346723, 47.3431607 ], + [ 8.3469352, 47.3427993 ], + [ 8.3468775, 47.3427075 ], + [ 8.3467059, 47.3424917 ], + [ 8.3465992, 47.3422838 ], + [ 8.346508, 47.3420442 ], + [ 8.3465129, 47.3418502 ], + [ 8.346269, 47.3418524 ], + [ 8.3460006, 47.3417582 ], + [ 8.3458175, 47.341667 ], + [ 8.3450918, 47.3412153 ], + [ 8.3448806, 47.3410563 ], + [ 8.3446423, 47.3408908 ], + [ 8.3443369, 47.3408342 ], + [ 8.3439123, 47.3407825 ], + [ 8.3437218, 47.340699 ], + [ 8.3432728, 47.3404202 ], + [ 8.3430242, 47.3403342 ], + [ 8.3425358, 47.3403099 ], + [ 8.3422242, 47.3402727 ], + [ 8.3421723, 47.3402332 ], + [ 8.341547, 47.3402877 ], + [ 8.3407024, 47.3403657 ], + [ 8.340534, 47.3404122 ], + [ 8.3402409, 47.3405348 ], + [ 8.339945, 47.340675 ], + [ 8.3397325, 47.3408349 ], + [ 8.3393466, 47.3411819 ], + [ 8.3391841, 47.3414088 ], + [ 8.3388395, 47.3419622 ], + [ 8.3384801, 47.3426824 ], + [ 8.3382279, 47.3430647 ], + [ 8.3380451, 47.343116 ], + [ 8.3379097, 47.3430771 ], + [ 8.3377706, 47.3429548 ], + [ 8.3376014, 47.3426402 ], + [ 8.3375442, 47.3424147 ], + [ 8.3374726, 47.3418655 ], + [ 8.3374959, 47.3413456 ], + [ 8.3375887, 47.340971 ], + [ 8.3376757, 47.3408306 ], + [ 8.3379105, 47.3406874 ], + [ 8.3381635, 47.3405246 ], + [ 8.338186199999999, 47.3404434 ], + [ 8.3381892, 47.3402442 ], + [ 8.3382583, 47.3399504 ], + [ 8.3384573, 47.3396034 ], + [ 8.3386509, 47.3394242 ], + [ 8.3391146, 47.339204 ], + [ 8.3398344, 47.3389754 ], + [ 8.3400848, 47.3388648 ], + [ 8.3404792, 47.3386251 ], + [ 8.340891599999999, 47.3384013 ], + [ 8.3412349, 47.3383071 ], + [ 8.3414034, 47.3382942 ], + [ 8.3416992, 47.3383772 ], + [ 8.3417143, 47.3382915 ], + [ 8.3418433, 47.3379994 ], + [ 8.3419588, 47.3378843 ], + [ 8.3422227, 47.33776 ], + [ 8.3427846, 47.3375735 ], + [ 8.3435525, 47.3373939 ], + [ 8.3443944, 47.3371872 ], + [ 8.3451481, 47.3369013 ], + [ 8.3458783, 47.3365326 ], + [ 8.3471308, 47.3358625 ], + [ 8.3474228, 47.335621 ], + [ 8.3476809, 47.3353218 ], + [ 8.3478485, 47.3351915 ], + [ 8.3479866, 47.3351909 ], + [ 8.3483949, 47.335181 ], + [ 8.3487324, 47.3351982 ], + [ 8.3490196, 47.335244 ], + [ 8.3489661, 47.3351133 ], + [ 8.3489533, 47.3349023 ], + [ 8.3490027, 47.3346979 ], + [ 8.3490838, 47.3345831 ], + [ 8.3496925, 47.3342484 ], + [ 8.3499006, 47.3341591 ], + [ 8.3501747, 47.3340909 ], + [ 8.3506293, 47.333959 ], + [ 8.351859900000001, 47.3335981 ], + [ 8.3522382, 47.3333728 ], + [ 8.3526324, 47.333125 ], + [ 8.3529934, 47.3330196 ], + [ 8.3533153, 47.3330296 ], + [ 8.3534876, 47.3330899 ], + [ 8.3539742, 47.3333951 ], + [ 8.3549206, 47.3336352 ], + [ 8.3555026, 47.3337215 ], + [ 8.3566835, 47.3331576 ], + [ 8.357903, 47.3325079 ], + [ 8.3580135, 47.3325403 ], + [ 8.3586065, 47.3327812 ], + [ 8.3590288, 47.3330957 ], + [ 8.3595629, 47.3333617 ], + [ 8.3602267, 47.3336123 ], + [ 8.3608142, 47.3338232 ], + [ 8.3612715, 47.334236 ], + [ 8.361482, 47.3344217 ], + [ 8.3617971, 47.3349635 ], + [ 8.3621804, 47.3356373 ], + [ 8.3624374, 47.335772 ], + [ 8.3626643, 47.3357428 ], + [ 8.362964, 47.3356174 ], + [ 8.3632451, 47.3356105 ], + [ 8.3641921, 47.3353341 ], + [ 8.3646915, 47.3351341 ], + [ 8.3649434, 47.3349726 ], + [ 8.3653136, 47.334669 ], + [ 8.3657489, 47.3343398 ], + [ 8.3667436, 47.3337766 ], + [ 8.3677425, 47.3332942 ], + [ 8.3687379, 47.3328991 ], + [ 8.369301, 47.3325965 ], + [ 8.3698908, 47.3321222 ], + [ 8.3707923, 47.331286 ], + [ 8.3714411, 47.3308646 ], + [ 8.3715436, 47.3313834 ], + [ 8.3717507, 47.3316542 ], + [ 8.3721432, 47.3319071 ], + [ 8.3725753, 47.3321223 ], + [ 8.3726457, 47.3323131 ], + [ 8.3726114, 47.3326232 ], + [ 8.3725991, 47.3328746 ], + [ 8.3726973, 47.3329506 ], + [ 8.3730511, 47.3332211 ], + [ 8.3731879, 47.333384 ], + [ 8.373469, 47.3333818 ], + [ 8.3736018, 47.3333169 ], + [ 8.374375, 47.3324981 ], + [ 8.3756548, 47.3311428 ], + [ 8.3764527, 47.3302978 ], + [ 8.3781092, 47.3285304 ], + [ 8.3791415, 47.3274027 ], + [ 8.3790098, 47.3273543 ], + [ 8.3770169, 47.3265751 ], + [ 8.3775748, 47.3260249 ], + [ 8.3780083, 47.3254919 ], + [ 8.3784146, 47.3250113 ], + [ 8.3785727, 47.3248738 ], + [ 8.378783, 47.3246087 ], + [ 8.378833, 47.324536 ], + [ 8.377738, 47.3242858 ], + [ 8.3778296, 47.3240421 ], + [ 8.3770082, 47.3238368 ], + [ 8.3771829, 47.3235186 ], + [ 8.3769644, 47.3234577 ], + [ 8.3771997, 47.3230667 ], + [ 8.3771068, 47.323001 ], + [ 8.3770329, 47.3228883 ], + [ 8.3769268, 47.3228248 ], + [ 8.3769186, 47.322736 ], + [ 8.3767299, 47.3225389 ], + [ 8.3769186, 47.32236 ], + [ 8.3781865, 47.3210753 ], + [ 8.3776973, 47.3210133 ], + [ 8.3776861, 47.3206673 ], + [ 8.3777814, 47.3205835 ], + [ 8.3779635, 47.3205197 ], + [ 8.37778, 47.3202201 ], + [ 8.3784955, 47.32003 ], + [ 8.3791595, 47.3198925 ], + [ 8.3789628, 47.3194664 ], + [ 8.3788059, 47.3192288 ], + [ 8.3785687, 47.3190543 ], + [ 8.3782367, 47.3189843 ], + [ 8.3777336, 47.3190299 ], + [ 8.3768714, 47.3191996 ], + [ 8.373869299999999, 47.319203 ], + [ 8.3720885, 47.3191587 ], + [ 8.3720772, 47.3192558 ], + [ 8.3720157, 47.319433 ], + [ 8.3710983, 47.319214 ], + [ 8.3710768, 47.3192565 ], + [ 8.3707829, 47.3191864 ], + [ 8.3705117, 47.3193577 ], + [ 8.370542, 47.3203066 ], + [ 8.369848, 47.320284 ], + [ 8.3696944, 47.3196772 ], + [ 8.3695011, 47.3197557 ], + [ 8.3693705, 47.3198502 ], + [ 8.3693472, 47.319975 ], + [ 8.3692954, 47.3205049 ], + [ 8.3692215, 47.3205839 ], + [ 8.3687327, 47.3206157 ], + [ 8.3683409, 47.3205435 ], + [ 8.3690923, 47.3192796 ], + [ 8.3668964, 47.3190307 ], + [ 8.3666327, 47.3196968 ], + [ 8.366064399999999, 47.3198862 ], + [ 8.3651525, 47.3189795 ], + [ 8.3649209, 47.3188939 ], + [ 8.3628695, 47.3183828 ], + [ 8.3626963, 47.3185491 ], + [ 8.3623905, 47.3187465 ], + [ 8.3616045, 47.3191878 ], + [ 8.3612378, 47.3196857 ], + [ 8.3611543, 47.3199715 ], + [ 8.3612313, 47.3205559 ], + [ 8.3609777, 47.321233 ], + [ 8.3605251, 47.3218366 ], + [ 8.3599574, 47.3221862 ], + [ 8.3595915, 47.3228782 ], + [ 8.3591194, 47.3234529 ], + [ 8.3584087, 47.3231886 ], + [ 8.3579668, 47.323162 ], + [ 8.3570919, 47.3235891 ], + [ 8.3568799, 47.3237927 ], + [ 8.3561014, 47.3255429 ], + [ 8.35577, 47.3262847 ], + [ 8.3558195, 47.3265693 ], + [ 8.3561118, 47.326882 ], + [ 8.3560251, 47.3269876 ], + [ 8.3551222, 47.3270848 ], + [ 8.3551111, 47.329177 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "WZV0027", + "country" : "CHE", + "name" : [ + { + "text" : "Wasser- und Zugvogelreservat Reuss: Bremgarten - Zufikon bis Brücke von Rottenschwil", + "lang" : "de-CH" + }, + { + "text" : "Réserve d'oiseaux d'eau et de migrateurs Reuss: Bremgarten - Zufikon bis Brücke von Rottenschwil", + "lang" : "fr-CH" + }, + { + "text" : "Riserva di uccelli acquatici e migratori Reuss: Bremgarten - Zufikon bis Brücke von Rottenschwil", + "lang" : "it-CH" + }, + { + "text" : "Water Bird and Migratory Bird Reserves Reuss: Bremgarten - Zufikon bis Brücke von Rottenschwil", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.7528377, 47.37824 ], + [ 8.7527345, 47.3782978 ], + [ 8.7526788, 47.3783479 ], + [ 8.7526819, 47.3784171 ], + [ 8.7529769, 47.3786729 ], + [ 8.7531617, 47.3788111 ], + [ 8.753400899999999, 47.3790054 ], + [ 8.7538516, 47.3794518 ], + [ 8.753975, 47.3794594 ], + [ 8.7549212, 47.3788945 ], + [ 8.754479, 47.3784192 ], + [ 8.7584507, 47.376438 ], + [ 8.7591435, 47.3770868 ], + [ 8.760119, 47.3765359 ], + [ 8.7602166, 47.3764628 ], + [ 8.7603324, 47.3763814 ], + [ 8.7608046, 47.3760891 ], + [ 8.7611632, 47.3758142 ], + [ 8.7616434, 47.3762198 ], + [ 8.762257, 47.3759699 ], + [ 8.7623681, 47.3759128 ], + [ 8.7626495, 47.3757765 ], + [ 8.7630001, 47.3759767 ], + [ 8.7635073, 47.374805 ], + [ 8.763395299999999, 47.3748261 ], + [ 8.7632913, 47.3748543 ], + [ 8.7632828, 47.3748841 ], + [ 8.7631369, 47.3749271 ], + [ 8.7630929, 47.3749141 ], + [ 8.7627623, 47.375043 ], + [ 8.7622374, 47.3753395 ], + [ 8.7606913, 47.373926 ], + [ 8.7604103, 47.3740759 ], + [ 8.7585157, 47.3751041 ], + [ 8.7582407, 47.3752827 ], + [ 8.7576481, 47.375688 ], + [ 8.7570137, 47.3760559 ], + [ 8.7564903, 47.3763659 ], + [ 8.7559337, 47.3766179 ], + [ 8.7554896, 47.3767597 ], + [ 8.7548722, 47.3771238 ], + [ 8.7528377, 47.37824 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZK002", + "country" : "CHE", + "name" : [ + { + "text" : "LSZK Speck-Fehraltorf (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSZK Speck-Fehraltorf (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSZK Speck-Fehraltorf (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSZK Speck-Fehraltorf (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Flugplatz Speck-Fehraltorf", + "lang" : "de-CH" + }, + { + "text" : "Flugplatz Speck-Fehraltorf", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatz Speck-Fehraltorf", + "lang" : "it-CH" + }, + { + "text" : "Flugplatz Speck-Fehraltorf", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Luca Marchetti", + "lang" : "de-CH" + }, + { + "text" : "Luca Marchetti", + "lang" : "fr-CH" + }, + { + "text" : "Luca Marchetti", + "lang" : "it-CH" + }, + { + "text" : "Luca Marchetti", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.fgzo.ch/flugvorbereitung.php", + "email" : "flugplatzleiter@fgzo.ch", + "phone" : "0041449541252", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7218158, 47.4386353 ], + [ 7.7218082, 47.4386428 ], + [ 7.7223812, 47.4386957 ], + [ 7.7224546, 47.4386949 ], + [ 7.7225604, 47.4386583 ], + [ 7.7226324, 47.4385906 ], + [ 7.7226554, 47.438408 ], + [ 7.7227464999999995, 47.4382272 ], + [ 7.7229618, 47.4382292 ], + [ 7.7230457, 47.4382501 ], + [ 7.7233939, 47.4383134 ], + [ 7.7234359999999995, 47.4383187 ], + [ 7.7234926, 47.438328 ], + [ 7.7235662, 47.4383434 ], + [ 7.7236173, 47.4383566 ], + [ 7.7236657, 47.4383713 ], + [ 7.7237161, 47.4383883 ], + [ 7.7237664, 47.4384071 ], + [ 7.7238126, 47.4384287 ], + [ 7.723852, 47.4384503 ], + [ 7.7238698, 47.438464 ], + [ 7.7239049, 47.4384515 ], + [ 7.7241525, 47.4382171 ], + [ 7.7245272, 47.438017 ], + [ 7.7247663, 47.4379087 ], + [ 7.7244036, 47.437787900000004 ], + [ 7.724043, 47.437679 ], + [ 7.7235034, 47.4375535 ], + [ 7.7235333, 47.4374637 ], + [ 7.7235382, 47.437449 ], + [ 7.7235174, 47.4374481 ], + [ 7.7233093, 47.4374229 ], + [ 7.722744, 47.4373456 ], + [ 7.7224618, 47.4377327 ], + [ 7.7219853, 47.4383886 ], + [ 7.7218158, 47.4386353 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns117", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Öschberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Öschberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Öschberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Öschberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.9197516, 46.8552668 ], + [ 6.9203647, 46.85437 ], + [ 6.9179285, 46.8543589 ], + [ 6.9179482, 46.8544876 ], + [ 6.9155541, 46.8545909 ], + [ 6.9154669, 46.8549333 ], + [ 6.9197516, 46.8552668 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSMP002", + "country" : "CHE", + "name" : [ + { + "text" : "LSMP Payerne Mil (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSMP Payerne Mil (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSMP Payerne Mil (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSMP Payerne Mil (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Skyguide Special Flight Office", + "lang" : "de-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "it-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.skyguide.ch/services/special-flights", + "email" : "specialflight@skyguide.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.5263201, 47.1409621 ], + [ 9.5263479, 47.1404499 ], + [ 9.5265459, 47.1400467 ], + [ 9.5266698, 47.1395591 ], + [ 9.5266257, 47.1392695 ], + [ 9.5277621, 47.1355771 ], + [ 9.5278734, 47.1355006 ], + [ 9.5278612, 47.1354942 ], + [ 9.5271688, 47.1349986 ], + [ 9.5248075, 47.1346129 ], + [ 9.5246317, 47.1347301 ], + [ 9.5246308, 47.1350784 ], + [ 9.5245817, 47.1353194 ], + [ 9.5244753, 47.1357339 ], + [ 9.5243861, 47.1358316 ], + [ 9.5242298, 47.1358881 ], + [ 9.5241283, 47.1359897 ], + [ 9.5240667, 47.1361345 ], + [ 9.5223807, 47.1368698 ], + [ 9.5222487, 47.1369525 ], + [ 9.522376, 47.1378793 ], + [ 9.5236835, 47.1394857 ], + [ 9.5237099, 47.139663 ], + [ 9.523723799999999, 47.1397695 ], + [ 9.5238282, 47.1398637 ], + [ 9.5238862, 47.1399747 ], + [ 9.5242892, 47.1409121 ], + [ 9.5243174, 47.1413416 ], + [ 9.5243033, 47.1415353 ], + [ 9.5244062, 47.1434358 ], + [ 9.5243651, 47.1438292 ], + [ 9.5243513, 47.1439779 ], + [ 9.5243396, 47.1441045 ], + [ 9.5244061, 47.144397 ], + [ 9.5244383, 47.1445855 ], + [ 9.5244316, 47.1446801 ], + [ 9.524484, 47.1447541 ], + [ 9.5244988, 47.1447628 ], + [ 9.5246176, 47.1449811 ], + [ 9.5248621, 47.1450557 ], + [ 9.5249912, 47.1450358 ], + [ 9.5252536, 47.1444101 ], + [ 9.5253888, 47.1438927 ], + [ 9.5255309, 47.143616 ], + [ 9.5256374, 47.143145 ], + [ 9.5256879, 47.1428607 ], + [ 9.5260336, 47.1420495 ], + [ 9.5260408, 47.1420214 ], + [ 9.5261234, 47.1416969 ], + [ 9.5262583, 47.1413224 ], + [ 9.5263201, 47.1409621 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LIE001", + "country" : "LIE", + "name" : [ + { + "text" : "Schloss Vaduz", + "lang" : "de-CH" + }, + { + "text" : "Château de Vaduz", + "lang" : "fr-CH" + }, + { + "text" : "Castello di Vaduz", + "lang" : "it-CH" + }, + { + "text" : "Castle of Vaduz", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 27, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Hochbau und Raumplanung", + "lang" : "de-CH" + }, + { + "text" : "Amt für Hochbau und Raumplanung", + "lang" : "fr-CH" + }, + { + "text" : "Amt für Hochbau und Raumplanung", + "lang" : "it-CH" + }, + { + "text" : "Amt für Hochbau und Raumplanung", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachbereich Zivilluftfahrt", + "lang" : "de-CH" + }, + { + "text" : "Fachbereich Zivilluftfahrt", + "lang" : "fr-CH" + }, + { + "text" : "Fachbereich Zivilluftfahrt", + "lang" : "it-CH" + }, + { + "text" : "Fachbereich Zivilluftfahrt", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Kerstin Fitz", + "lang" : "de-CH" + }, + { + "text" : "Kerstin Fitz", + "lang" : "fr-CH" + }, + { + "text" : "Kerstin Fitz", + "lang" : "it-CH" + }, + { + "text" : "Kerstin Fitz", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.llv.li/en/national-administration/office-of-building-construction-and-spatial-planning/civil-aviation", + "email" : "info.ahr@llv.li", + "phone" : "004232367110", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 5.9998186, 46.1541436 ], + [ 5.9998922, 46.1542233 ], + [ 5.99977, 46.1546125 ], + [ 6.0000383, 46.1556488 ], + [ 6.0001341, 46.1557526 ], + [ 6.0002075, 46.1560361 ], + [ 6.001026, 46.1569222 ], + [ 6.0022702, 46.1575231 ], + [ 6.0037507, 46.1577474 ], + [ 6.005242, 46.157561 ], + [ 6.0056094, 46.1573971 ], + [ 6.0057474, 46.1573798 ], + [ 6.0070225, 46.1568109 ], + [ 6.0078872, 46.1559462 ], + [ 6.0082098, 46.1549174 ], + [ 6.0079414, 46.1538811 ], + [ 6.0072259, 46.1531066 ], + [ 6.0069585, 46.1520741 ], + [ 6.0061399, 46.151188 ], + [ 6.0048958, 46.1505871 ], + [ 6.0034155, 46.1503628 ], + [ 6.0019244, 46.1505493 ], + [ 6.0006495, 46.1511181 ], + [ 6.0005547, 46.1512129 ], + [ 5.9998247, 46.1504225 ], + [ 5.9985807, 46.1498215 ], + [ 5.9983796, 46.1497911 ], + [ 5.9978417, 46.1495312 ], + [ 5.9963615, 46.1493068 ], + [ 5.9948704, 46.1494932 ], + [ 5.9935954, 46.1500619 ], + [ 5.9927306, 46.1509265 ], + [ 5.9924076, 46.1519553 ], + [ 5.9926756999999995, 46.1529916 ], + [ 5.9934940999999995, 46.1538778 ], + [ 5.9937339, 46.1539936 ], + [ 5.9937571, 46.1540188 ], + [ 5.9950012, 46.1546198 ], + [ 5.9952442, 46.1546567 ], + [ 5.9954772, 46.1547692 ], + [ 5.9969575, 46.1549936 ], + [ 5.9984488, 46.1548072 ], + [ 5.9997239, 46.1542384 ], + [ 5.9998186, 46.1541436 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-23", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.1277174, 46.4539019 ], + [ 7.1272371, 46.4532196 ], + [ 7.1271683, 46.4525178 ], + [ 7.1265319, 46.4522848 ], + [ 7.1261761, 46.4525843 ], + [ 7.1262694, 46.4531018 ], + [ 7.1263624, 46.4536814 ], + [ 7.1264044, 46.4540665 ], + [ 7.126492, 46.4542368 ], + [ 7.1266745, 46.4541725 ], + [ 7.1270078, 46.4541662 ], + [ 7.1273062, 46.4543371 ], + [ 7.1275397, 46.4544736 ], + [ 7.1277174, 46.4539019 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00007", + "country" : "CHE", + "name" : [ + { + "text" : "La Sarouche", + "lang" : "de-CH" + }, + { + "text" : "La Sarouche", + "lang" : "fr-CH" + }, + { + "text" : "La Sarouche", + "lang" : "it-CH" + }, + { + "text" : "La Sarouche", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "startDateTime" : "2025-01-01T00:00:00+01:00", + "endDateTime" : "2025-06-30T00:00:00+02:00" + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Generaldirektion für Umwelt", + "lang" : "de-CH" + }, + { + "text" : "Direction générale de l'environnement", + "lang" : "fr-CH" + }, + { + "text" : "Direzione generale dell'Ambiente", + "lang" : "it-CH" + }, + { + "text" : "Environment Department", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.dge@vd.ch", + "phone" : "0041213164422", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.6058808, 46.6846992 ], + [ 8.6057626, 46.684675 ], + [ 8.605492, 46.6846288 ], + [ 8.6053198, 46.6846733 ], + [ 8.6051389, 46.6847346 ], + [ 8.6050326, 46.6847287 ], + [ 8.6048767, 46.6846604 ], + [ 8.604792, 46.6846361 ], + [ 8.6047377, 46.6846205 ], + [ 8.6045002, 46.6845915 ], + [ 8.604303, 46.6846189 ], + [ 8.6041057, 46.6846746 ], + [ 8.6039663, 46.6847642 ], + [ 8.6037929, 46.6848339 ], + [ 8.6037435, 46.6848536 ], + [ 8.6034566, 46.6848863 ], + [ 8.603254, 46.6848856 ], + [ 8.6032188, 46.6848854 ], + [ 8.603046299999999, 46.6848791 ], + [ 8.6028748, 46.6848448 ], + [ 8.6026778, 46.6848046 ], + [ 8.6024656, 46.6847362 ], + [ 8.6022851, 46.6847018 ], + [ 8.6022007, 46.6846907 ], + [ 8.602154, 46.6846844 ], + [ 8.6020563, 46.6846278 ], + [ 8.6018929, 46.6845877 ], + [ 8.6017286, 46.6845871 ], + [ 8.6015661, 46.6845511 ], + [ 8.601548, 46.6845471 ], + [ 8.6013192, 46.6845068 ], + [ 8.6010729, 46.6845284 ], + [ 8.6008348, 46.6845895 ], + [ 8.6006776, 46.6847242 ], + [ 8.6005129, 46.6848137 ], + [ 8.6003732, 46.6848525 ], + [ 8.6001354, 46.6848517 ], + [ 8.5998322, 46.6848506 ], + [ 8.5994964, 46.6848494 ], + [ 8.5993243, 46.6847868 ], + [ 8.5991608, 46.6847073 ], + [ 8.5989392, 46.6847347 ], + [ 8.5984142, 46.6847554 ], + [ 8.5981842, 46.6847714 ], + [ 8.5979052, 46.6847929 ], + [ 8.5976926, 46.6847865 ], + [ 8.5974217, 46.6848024 ], + [ 8.597249, 46.6848243 ], + [ 8.5971504, 46.6848746 ], + [ 8.5970601, 46.6849307 ], + [ 8.5969206, 46.6849413 ], + [ 8.5968052, 46.6849354 ], + [ 8.596642, 46.6849066 ], + [ 8.5964778, 46.6849059 ], + [ 8.5963381, 46.6849449 ], + [ 8.5962228, 46.6849782 ], + [ 8.5960837, 46.6850059 ], + [ 8.5958945, 46.6850616 ], + [ 8.5957386, 46.685106 ], + [ 8.5955654, 46.6851449 ], + [ 8.5953848, 46.6851837 ], + [ 8.5952536, 46.6852001 ], + [ 8.5950815, 46.6852106 ], + [ 8.5948928, 46.6852157 ], + [ 8.5947208, 46.6852319 ], + [ 8.5944334, 46.685242099999996 ], + [ 8.5942277, 46.6852921 ], + [ 8.5940966, 46.6853478 ], + [ 8.5939318, 46.685398 ], + [ 8.5937266, 46.685431 ], + [ 8.593431, 46.6854412 ], + [ 8.5933401, 46.6855817 ], + [ 8.5933317, 46.6856492 ], + [ 8.5933884, 46.6857396 ], + [ 8.5934606, 46.6858695 ], + [ 8.5935665, 46.6860445 ], + [ 8.5936476, 46.6861687 ], + [ 8.5936388, 46.6862533 ], + [ 8.5935559, 46.686348699999996 ], + [ 8.5934811, 46.6864836 ], + [ 8.5933401, 46.6866915 ], + [ 8.593199, 46.6868544 ], + [ 8.5931084, 46.6868991 ], + [ 8.5929607, 46.6869436 ], + [ 8.5927798, 46.6870049 ], + [ 8.5927052, 46.6870723 ], + [ 8.5926475, 46.6871621 ], + [ 8.59263, 46.6872974 ], + [ 8.5926279, 46.6875452 ], + [ 8.5926192, 46.6877085 ], + [ 8.5926417, 46.6878833 ], + [ 8.592674, 46.6879791 ], + [ 8.592788, 46.6881147 ], + [ 8.5928774, 46.6882052 ], + [ 8.5929343, 46.6883068 ], + [ 8.5929498, 46.6884195 ], + [ 8.5929652, 46.6885323 ], + [ 8.5930216, 46.6886451 ], + [ 8.5931362, 46.6887302 ], + [ 8.593234, 46.688798 ], + [ 8.5933723, 46.6888831 ], + [ 8.593528, 46.6889794 ], + [ 8.5936586, 46.689087 ], + [ 8.5937721, 46.6892 ], + [ 8.5938123, 46.6893185 ], + [ 8.5938198, 46.6894424 ], + [ 8.5938104, 46.6896115 ], + [ 8.5937355, 46.6897407 ], + [ 8.59371, 46.6898476 ], + [ 8.5938309, 46.6900735 ], + [ 8.5939448, 46.6902428 ], + [ 8.5940422, 46.6904009 ], + [ 8.5941392, 46.6905816 ], + [ 8.594228, 46.6907622 ], + [ 8.594333, 46.690971 ], + [ 8.5944223, 46.6911347 ], + [ 8.5943714, 46.6912753 ], + [ 8.5943048, 46.6914103 ], + [ 8.5942878, 46.6915285 ], + [ 8.5943357, 46.6916696 ], + [ 8.5943599, 46.6918048 ], + [ 8.5943666, 46.6919288 ], + [ 8.5943409, 46.6921033 ], + [ 8.5943068, 46.692266599999996 ], + [ 8.5942318, 46.6924241 ], + [ 8.5940496, 46.6926206 ], + [ 8.5939349, 46.6926821 ], + [ 8.5938193, 46.6927381 ], + [ 8.5938192, 46.6928112 ], + [ 8.593842800000001, 46.6928846 ], + [ 8.5938831, 46.6930086 ], + [ 8.5939968, 46.6931274 ], + [ 8.59416, 46.6932351 ], + [ 8.5943479, 46.6933822 ], + [ 8.5946179, 46.6935127 ], + [ 8.594781, 46.6936092 ], + [ 8.5949026, 46.6937561 ], + [ 8.594941500000001, 46.6940097 ], + [ 8.5949493, 46.6941449 ], + [ 8.5949398, 46.6942744 ], + [ 8.5949555, 46.6943928 ], + [ 8.5950362, 46.6945395 ], + [ 8.5951092, 46.6946638 ], + [ 8.5951982, 46.69485 ], + [ 8.595263, 46.6949404 ], + [ 8.5954259, 46.695065 ], + [ 8.595549, 46.6951273 ], + [ 8.5956467, 46.6951897 ], + [ 8.5957034, 46.6952406 ], + [ 8.5957524, 46.695314 ], + [ 8.5957927, 46.6953649 ], + [ 8.5958656, 46.695489 ], + [ 8.5959308, 46.6955569 ], + [ 8.5960121, 46.6957262 ], + [ 8.5960431, 46.6958784 ], + [ 8.5960833, 46.6959969 ], + [ 8.596229600000001, 46.696189 ], + [ 8.5963847, 46.6962965 ], + [ 8.5965072, 46.6964041 ], + [ 8.5967032, 46.6965117 ], + [ 8.596809499999999, 46.696591 ], + [ 8.5968901, 46.6966927 ], + [ 8.596972, 46.6967775 ], + [ 8.5970854, 46.6969582 ], + [ 8.5971906, 46.6970994 ], + [ 8.5973131, 46.6972126 ], + [ 8.5974188, 46.6973369 ], + [ 8.5975251, 46.6974161 ], + [ 8.5976643, 46.6974674 ], + [ 8.5977871, 46.6974791 ], + [ 8.5979756, 46.6975023 ], + [ 8.5982044, 46.697537 ], + [ 8.5984507, 46.6975547 ], + [ 8.5986469, 46.6975949 ], + [ 8.5989015, 46.6976522 ], + [ 8.5990405, 46.6976921 ], + [ 8.5991872, 46.6977489 ], + [ 8.5993177, 46.6978508 ], + [ 8.5993667, 46.6979637 ], + [ 8.5993656, 46.6980651 ], + [ 8.5993479, 46.6982283 ], + [ 8.599371, 46.6984312 ], + [ 8.5993452, 46.6985608 ], + [ 8.5992872, 46.6987127 ], + [ 8.5992205, 46.698842 ], + [ 8.5991212, 46.6989374 ], + [ 8.598998, 46.6990215 ], + [ 8.5988905, 46.6991168 ], + [ 8.5987582, 46.6992347 ], + [ 8.5986426, 46.69933 ], + [ 8.5985267, 46.699493 ], + [ 8.5984929, 46.6996675 ], + [ 8.5985323, 46.6998647 ], + [ 8.5985476, 46.7000057 ], + [ 8.598596, 46.7001298 ], + [ 8.5986844, 46.7002879 ], + [ 8.5987658, 46.7004234 ], + [ 8.59888, 46.7005307 ], + [ 8.5989533, 46.700593 ], + [ 8.5990671, 46.700678 ], + [ 8.5991319, 46.7008022 ], + [ 8.5992133, 46.7009375 ], + [ 8.599343, 46.7010789 ], + [ 8.5994818, 46.7011864 ], + [ 8.5996212, 46.7012827 ], + [ 8.5997104, 46.7014013 ], + [ 8.5998238, 46.7015483 ], + [ 8.5999212, 46.7016669 ], + [ 8.6000265, 46.7018476 ], + [ 8.6001082, 46.7019605 ], + [ 8.6002386, 46.7020962 ], + [ 8.600409299999999, 46.7022432 ], + [ 8.6006788, 46.7024245 ], + [ 8.6008259, 46.7025377 ], + [ 8.6009973, 46.7026397 ], + [ 8.6011521, 46.7027305 ], + [ 8.6014139, 46.7028553 ], + [ 8.6015856, 46.7029743 ], + [ 8.6018217, 46.7031216 ], + [ 8.6019117, 46.7032008 ], + [ 8.601935600000001, 46.7032853 ], + [ 8.6020421, 46.7033703 ], + [ 8.6021481, 46.7034382 ], + [ 8.6021637, 46.7035172 ], + [ 8.602302, 46.7037148 ], + [ 8.6024158, 46.7038729 ], + [ 8.6024721, 46.7039802 ], + [ 8.6024794, 46.704093 ], + [ 8.6025766, 46.7042792 ], + [ 8.602689699999999, 46.7044823 ], + [ 8.6028606, 46.7046746 ], + [ 8.6029831, 46.7048215 ], + [ 8.6031297, 46.7049121 ], + [ 8.6032603, 46.7050197 ], + [ 8.603424, 46.7051047 ], + [ 8.6035954, 46.7052067 ], + [ 8.6036847, 46.7052915 ], + [ 8.6037573, 46.7054383 ], + [ 8.603806, 46.7055342 ], + [ 8.6039201, 46.7056698 ], + [ 8.6039923, 46.7058335 ], + [ 8.6040728, 46.7060422 ], + [ 8.6040717, 46.7062168 ], + [ 8.6041033, 46.706431 ], + [ 8.6041756, 46.7066003 ], + [ 8.604265, 46.706764 ], + [ 8.6044115, 46.7068885 ], + [ 8.6045419, 46.7069847 ], + [ 8.6047054, 46.7070979 ], + [ 8.6048687, 46.7072055 ], + [ 8.6049584, 46.7072679 ], + [ 8.6050225, 46.707437 ], + [ 8.605006, 46.707544 ], + [ 8.6050045, 46.7076623 ], + [ 8.6049461, 46.7077974 ], + [ 8.6048628, 46.7079886 ], + [ 8.6048126, 46.708163 ], + [ 8.6047207, 46.7083374 ], + [ 8.604646, 46.7085117 ], + [ 8.6046607, 46.7086977 ], + [ 8.6047173, 46.7088218 ], + [ 8.6047983, 46.7089403 ], + [ 8.6049128, 46.7090534 ], + [ 8.605084, 46.709223 ], + [ 8.6052875, 46.7094097 ], + [ 8.605548, 46.7096247 ], + [ 8.605728, 46.7097831 ], + [ 8.6059644, 46.7099416 ], + [ 8.606185, 46.7100494 ], + [ 8.6065775, 46.7103213 ], + [ 8.6067892, 46.7104741 ], + [ 8.6070509, 46.710627099999996 ], + [ 8.6072223, 46.7107291 ], + [ 8.6074014, 46.7108819 ], + [ 8.6075482, 46.7110571 ], + [ 8.607629, 46.7112039 ], + [ 8.6077258, 46.7114463 ], + [ 8.6077976, 46.7116663 ], + [ 8.6078463, 46.7118355 ], + [ 8.6078936, 46.7120216 ], + [ 8.6079913, 46.7121909 ], + [ 8.6080639, 46.7122982 ], + [ 8.6081291, 46.7124392 ], + [ 8.6082341, 46.7126424 ], + [ 8.6084324, 46.7124404 ], + [ 8.6086286, 46.7125538 ], + [ 8.6087183, 46.7126161 ], + [ 8.6088405, 46.7127122 ], + [ 8.6089464, 46.7128084 ], + [ 8.6091095, 46.7129385 ], + [ 8.6091752, 46.7130289 ], + [ 8.6093373, 46.7131928 ], + [ 8.6095093, 46.7132835 ], + [ 8.6097305, 46.7133407 ], + [ 8.6098617, 46.7133242 ], + [ 8.6099771, 46.7132908 ], + [ 8.6101249, 46.7132463 ], + [ 8.6102731, 46.7132186 ], + [ 8.6104202, 46.713253 ], + [ 8.6105342, 46.7133492 ], + [ 8.6105914, 46.7134226 ], + [ 8.6105908, 46.713507 ], + [ 8.6106721, 46.7135976 ], + [ 8.6108603, 46.7137222 ], + [ 8.6110722, 46.7138412 ], + [ 8.6112522, 46.7139601 ], + [ 8.6114225, 46.7141973 ], + [ 8.6114548, 46.7143665 ], + [ 8.6113718, 46.7144619 ], + [ 8.6112558, 46.7145798 ], + [ 8.6111814, 46.7146922 ], + [ 8.610935, 46.7147138 ], + [ 8.6108854, 46.7147982 ], + [ 8.6109917, 46.7147985 ], + [ 8.6109741, 46.7150069 ], + [ 8.6106953, 46.715006 ], + [ 8.6105235, 46.714887 ], + [ 8.6104162, 46.7149543 ], + [ 8.6103166, 46.7150723 ], + [ 8.6103402, 46.7152188 ], + [ 8.6104139, 46.7153374 ], + [ 8.6104862, 46.7154671 ], + [ 8.6106575, 46.7155973 ], + [ 8.6108293, 46.7157162 ], + [ 8.6110014, 46.7157732 ], + [ 8.61128, 46.7158023 ], + [ 8.6115674, 46.7157865 ], + [ 8.6118795, 46.7157762 ], + [ 8.6121744, 46.7158055 ], + [ 8.6123302, 46.7158285 ], + [ 8.61242, 46.7158965 ], + [ 8.6124359, 46.7159867 ], + [ 8.6124433, 46.7160656 ], + [ 8.6124506, 46.7161388 ], + [ 8.6124999, 46.7162234 ], + [ 8.6125807, 46.7163309 ], + [ 8.6126047, 46.716421 ], + [ 8.6125547, 46.7164884 ], + [ 8.6125214, 46.7165728 ], + [ 8.6124722, 46.7166402 ], + [ 8.6123971, 46.7167582 ], + [ 8.6123225, 46.716865 ], + [ 8.6122887, 46.7170002 ], + [ 8.612320799999999, 46.7170847 ], + [ 8.6124675, 46.7172543 ], + [ 8.6126057, 46.7174069 ], + [ 8.6127768, 46.7176046 ], + [ 8.612875, 46.7176839 ], + [ 8.6129971, 46.717734899999996 ], + [ 8.613078999999999, 46.7178141 ], + [ 8.6131113, 46.7178705 ], + [ 8.6132173, 46.7179723 ], + [ 8.6133887, 46.7181082 ], + [ 8.6136005, 46.7183004 ], + [ 8.6139686, 46.7185326 ], + [ 8.6141642, 46.7186179 ], + [ 8.6143035, 46.718669 ], + [ 8.6144588, 46.7187428 ], + [ 8.6145574, 46.7188052 ], + [ 8.6146301, 46.7189124 ], + [ 8.614695, 46.7190028 ], + [ 8.6148343, 46.7190146 ], + [ 8.6150067, 46.7190489 ], + [ 8.6151628, 46.7190833 ], + [ 8.6153591, 46.7191628 ], + [ 8.6155227, 46.7192423 ], + [ 8.6157025, 46.71935 ], + [ 8.615841, 46.7194405 ], + [ 8.6159959, 46.7195706 ], + [ 8.616102, 46.7197119 ], + [ 8.6161914, 46.7198361 ], + [ 8.6162556, 46.7199321 ], + [ 8.6163289, 46.7200676 ], + [ 8.6164096, 46.7202087 ], + [ 8.6165235, 46.7203668 ], + [ 8.6168089, 46.7205988 ], + [ 8.6169233, 46.7207456 ], + [ 8.6171021, 46.7209209 ], + [ 8.617298, 46.72113 ], + [ 8.6174444, 46.7212827 ], + [ 8.6175829, 46.7214464 ], + [ 8.61777, 46.7216274 ], + [ 8.6179089, 46.7218081 ], + [ 8.6179976, 46.7219381 ], + [ 8.6180791, 46.7220792 ], + [ 8.6181267, 46.722237 ], + [ 8.6181915, 46.722395 ], + [ 8.618248, 46.7225472 ], + [ 8.6182961, 46.7226883 ], + [ 8.6184188, 46.722807 ], + [ 8.6184585, 46.7229029 ], + [ 8.6184823, 46.7230551 ], + [ 8.6184489, 46.7231338 ], + [ 8.6183993, 46.7231844 ], + [ 8.6183498, 46.7232406 ], + [ 8.6183403, 46.7234039 ], + [ 8.6182984, 46.7235783 ], + [ 8.6182882, 46.7237867 ], + [ 8.6182872, 46.723967 ], + [ 8.618319, 46.7241135 ], + [ 8.6183918, 46.7242602 ], + [ 8.6184979, 46.7244015 ], + [ 8.6186276, 46.7245766 ], + [ 8.6187332, 46.7246953 ], + [ 8.6188727, 46.7247915 ], + [ 8.6190606, 46.7248936 ], + [ 8.6192403, 46.7250013 ], + [ 8.619453, 46.7250809 ], + [ 8.6196988, 46.7251381 ], + [ 8.6199689, 46.7251897 ], + [ 8.6201244, 46.7252353 ], + [ 8.6202966, 46.7253316 ], + [ 8.6204023, 46.7254503 ], + [ 8.6204993, 46.7256253 ], + [ 8.6205557, 46.7257719 ], + [ 8.6205955, 46.7259466 ], + [ 8.6205209, 46.7261266 ], + [ 8.620503, 46.7263181 ], + [ 8.620494, 46.7264645 ], + [ 8.6204847, 46.7265997 ], + [ 8.620492, 46.7267462 ], + [ 8.6205559, 46.7269041 ], + [ 8.6206215, 46.7270227 ], + [ 8.6207103, 46.7271582 ], + [ 8.6208495, 46.727277 ], + [ 8.6210533, 46.727396 ], + [ 8.621274, 46.7275432 ], + [ 8.6214375, 46.727617 ], + [ 8.6215602, 46.7276569 ], + [ 8.6218473, 46.7277367 ], + [ 8.6221501, 46.7278222 ], + [ 8.6223875, 46.7279076 ], + [ 8.6226333, 46.7280042 ], + [ 8.6228542, 46.7280838 ], + [ 8.6230097, 46.7281632 ], + [ 8.6231481, 46.7282876 ], + [ 8.6232455, 46.7284401 ], + [ 8.6233429, 46.7285925 ], + [ 8.6234078, 46.7287898 ], + [ 8.6234881, 46.7289479 ], + [ 8.6235199, 46.7290945 ], + [ 8.6235771, 46.7292017 ], + [ 8.6237073, 46.7293599 ], + [ 8.6238215, 46.7294955 ], + [ 8.6238859, 46.729597 ], + [ 8.6239595, 46.72971 ], + [ 8.6240736, 46.72984 ], + [ 8.624244000000001, 46.7300433 ], + [ 8.6244073, 46.7302185 ], + [ 8.6245453, 46.7303542 ], + [ 8.6247339, 46.73049 ], + [ 8.6249053, 46.7305864 ], + [ 8.6250606, 46.7306602 ], + [ 8.625273, 46.7307623 ], + [ 8.625511, 46.7308363 ], + [ 8.6257732, 46.7308992 ], + [ 8.6260189, 46.7309901 ], + [ 8.6262805, 46.7310587 ], + [ 8.626494, 46.7310987 ], + [ 8.6266824, 46.7311896 ], + [ 8.626820500000001, 46.7312971 ], + [ 8.6269759, 46.731444 ], + [ 8.6271228, 46.7315798 ], + [ 8.627344, 46.7316706 ], + [ 8.6275561, 46.7317616 ], + [ 8.627794, 46.7318693 ], + [ 8.6280475, 46.7319773 ], + [ 8.628334, 46.7321021 ], + [ 8.6285869, 46.7323002 ], + [ 8.6288812, 46.7325153 ], + [ 8.6291916, 46.7326852 ], + [ 8.6293708, 46.732838 ], + [ 8.629698, 46.7330644 ], + [ 8.6299108, 46.7331835 ], + [ 8.6300655, 46.7333361 ], + [ 8.6302614, 46.7335057 ], + [ 8.6304491, 46.7336753 ], + [ 8.6306195, 46.7338732 ], + [ 8.6307987, 46.734099 ], + [ 8.6309046, 46.7342289 ], + [ 8.6310266, 46.7343814 ], + [ 8.631223, 46.7345004 ], + [ 8.631509, 46.7346761 ], + [ 8.6317379, 46.7348176 ], + [ 8.6320157, 46.7349537 ], + [ 8.632261100000001, 46.7351066 ], + [ 8.6324249, 46.7352255 ], + [ 8.6325799, 46.7353556 ], + [ 8.632734899999999, 46.7355251 ], + [ 8.6328976, 46.735706 ], + [ 8.6330441, 46.7359317 ], + [ 8.633149, 46.7361293 ], + [ 8.6332302, 46.736321 ], + [ 8.6332776, 46.7365072 ], + [ 8.6333505, 46.7366932 ], + [ 8.6334481, 46.7368569 ], + [ 8.6335698, 46.7370319 ], + [ 8.6337, 46.7371508 ], + [ 8.6338636, 46.7372639 ], + [ 8.6340849, 46.7373943 ], + [ 8.6343463, 46.7375303 ], + [ 8.6345424, 46.7376324 ], + [ 8.6346896, 46.7377399 ], + [ 8.6348448, 46.7378812 ], + [ 8.634934, 46.7379942 ], + [ 8.6350647, 46.7381355 ], + [ 8.6351543, 46.7382653 ], + [ 8.6352849, 46.7383615 ], + [ 8.6354237, 46.7384633 ], + [ 8.6355622, 46.7385483 ], + [ 8.635644, 46.7385881 ], + [ 8.6357588, 46.7386392 ], + [ 8.6359057, 46.7387353 ], + [ 8.6361756, 46.7389165 ], + [ 8.6364122, 46.7391145 ], + [ 8.6366415, 46.739273 ], + [ 8.6368542, 46.7393863 ], + [ 8.6370338, 46.739482699999996 ], + [ 8.6371812, 46.7395621 ], + [ 8.6373863, 46.7395909 ], + [ 8.6375827, 46.7395971 ], + [ 8.6378459, 46.7396263 ], + [ 8.638075, 46.7396665 ], + [ 8.6383214, 46.7397122 ], + [ 8.6386572, 46.7397697 ], + [ 8.6389273, 46.7398889 ], + [ 8.6390992, 46.7400078 ], + [ 8.6393693, 46.740127 ], + [ 8.6395408, 46.7402233 ], + [ 8.6396461, 46.7403983 ], + [ 8.639662, 46.7404884 ], + [ 8.6396448, 46.7405954 ], + [ 8.6396283, 46.7407024 ], + [ 8.6395612, 46.7408093 ], + [ 8.639479, 46.7408654 ], + [ 8.6393638, 46.7409437 ], + [ 8.639306, 46.7410281 ], + [ 8.6393047, 46.7411183 ], + [ 8.6392958, 46.7412308 ], + [ 8.6393119, 46.7413323 ], + [ 8.6393852, 46.7414283 ], + [ 8.6394994, 46.7415244 ], + [ 8.6396056, 46.7415925 ], + [ 8.639679, 46.741694 ], + [ 8.6396944, 46.7417955 ], + [ 8.6397103, 46.7418857 ], + [ 8.6397755, 46.7419874 ], + [ 8.6398982, 46.742061 ], + [ 8.639939, 46.7421286 ], + [ 8.6399711, 46.7421738 ], + [ 8.6400112, 46.7423204 ], + [ 8.6400843, 46.7424841 ], + [ 8.6401981, 46.7426365 ], + [ 8.6403042, 46.7427326 ], + [ 8.640467600000001, 46.7428346 ], + [ 8.640697, 46.7429255 ], + [ 8.6408848, 46.7430218 ], + [ 8.6411056, 46.7431295 ], + [ 8.6413514, 46.7432206 ], + [ 8.6415557, 46.7433621 ], + [ 8.6417521, 46.7435091 ], + [ 8.6419313, 46.7436619 ], + [ 8.64207, 46.7437918 ], + [ 8.6422178, 46.7438542 ], + [ 8.6422998, 46.7438996 ], + [ 8.6424627, 46.743979 ], + [ 8.6426344, 46.7440866 ], + [ 8.6427494, 46.7441828 ], + [ 8.6429122, 46.7443298 ], + [ 8.643034, 46.7445104 ], + [ 8.6431477, 46.7446911 ], + [ 8.6432615, 46.7448773 ], + [ 8.6433182, 46.7450015 ], + [ 8.6434076, 46.7451933 ], + [ 8.643538, 46.7452838 ], + [ 8.6436364, 46.7453687 ], + [ 8.6437421, 46.7454478 ], + [ 8.6438158, 46.7455608 ], + [ 8.6438724, 46.7456792 ], + [ 8.6439613, 46.7458485 ], + [ 8.6439923, 46.746102 ], + [ 8.644048699999999, 46.7462825 ], + [ 8.6440483, 46.7464121 ], + [ 8.6440223, 46.7465303 ], + [ 8.6439146, 46.7466878 ], + [ 8.6437991, 46.7468282 ], + [ 8.6436583, 46.7469685 ], + [ 8.643460900000001, 46.7471032 ], + [ 8.6432629, 46.7472095 ], + [ 8.6429416, 46.7473661 ], + [ 8.642703000000001, 46.7474499 ], + [ 8.6425793, 46.7475509 ], + [ 8.6425124, 46.747669 ], + [ 8.6425365, 46.7477986 ], + [ 8.6425684, 46.7479058 ], + [ 8.6426414, 46.7480242 ], + [ 8.6427398, 46.7481091 ], + [ 8.6427553, 46.7482162 ], + [ 8.6427871, 46.7483234 ], + [ 8.6428439, 46.7484474 ], + [ 8.6429176, 46.7485265 ], + [ 8.6429664, 46.7486224 ], + [ 8.6430063, 46.7487241 ], + [ 8.6430219, 46.74891 ], + [ 8.6430696, 46.7490678 ], + [ 8.6431184, 46.7492369 ], + [ 8.643191, 46.7493386 ], + [ 8.643281, 46.7494515 ], + [ 8.6434358, 46.7495704 ], + [ 8.6435832, 46.7496835 ], + [ 8.6438124, 46.7497632 ], + [ 8.644075, 46.7498035 ], + [ 8.6442304, 46.7498715 ], + [ 8.6443368, 46.7499113 ], + [ 8.6444103, 46.7500186 ], + [ 8.644475, 46.7501315 ], + [ 8.6445151, 46.7502386 ], + [ 8.6446052, 46.7503572 ], + [ 8.644703, 46.7504477 ], + [ 8.6448009, 46.75051 ], + [ 8.6448913, 46.7505665 ], + [ 8.6449478, 46.75064 ], + [ 8.6449557, 46.7507358 ], + [ 8.6449792, 46.7508372 ], + [ 8.6450283, 46.7509501 ], + [ 8.6451093, 46.7510574 ], + [ 8.6452397, 46.7512211 ], + [ 8.6453862, 46.751368 ], + [ 8.6454184, 46.7515653 ], + [ 8.6456155, 46.7515603 ], + [ 8.6457958, 46.7515384 ], + [ 8.646124799999999, 46.7515113 ], + [ 8.646412399999999, 46.7514559 ], + [ 8.6468479, 46.7513616 ], + [ 8.6472102, 46.7512838 ], + [ 8.6474899, 46.7512059 ], + [ 8.6478105, 46.7510943 ], + [ 8.6480741, 46.7509937 ], + [ 8.6483291, 46.75091 ], + [ 8.6486661, 46.7508322 ], + [ 8.6489698, 46.7508051 ], + [ 8.6492494, 46.7507271 ], + [ 8.6494805, 46.7505983 ], + [ 8.6496618, 46.7504749 ], + [ 8.6498518, 46.7503741 ], + [ 8.6503288, 46.7502348 ], + [ 8.6505755, 46.7501454 ], + [ 8.6507893, 46.7500504 ], + [ 8.6509132, 46.7499944 ], + [ 8.6510689, 46.7499667 ], + [ 8.6512418, 46.749911 ], + [ 8.6514394, 46.7498552 ], + [ 8.6515467, 46.749788 ], + [ 8.6517358, 46.7497211 ], + [ 8.6519833, 46.7495979 ], + [ 8.6522872, 46.7494692 ], + [ 8.6525753, 46.7494026 ], + [ 8.6528711, 46.7493191 ], + [ 8.6530848, 46.7492915 ], + [ 8.653331, 46.7493261 ], + [ 8.6542996, 46.7494362 ], + [ 8.6544389, 46.7494479 ], + [ 8.6545459, 46.7494032 ], + [ 8.6547599, 46.7493138 ], + [ 8.6551543, 46.7492135 ], + [ 8.655459, 46.7491581 ], + [ 8.6557956, 46.749103 ], + [ 8.6561246, 46.7490364 ], + [ 8.6563303, 46.7489807 ], + [ 8.6564624, 46.7488909 ], + [ 8.6567169, 46.7487847 ], + [ 8.6570138, 46.7486731 ], + [ 8.6572689, 46.748595 ], + [ 8.6576062, 46.7485002 ], + [ 8.6580254, 46.7484057 ], + [ 8.6585432, 46.7482609 ], + [ 8.6590862, 46.7481105 ], + [ 8.6594149, 46.7480665 ], + [ 8.6596944, 46.748056 ], + [ 8.6600469, 46.7481248 ], + [ 8.6603746, 46.7481483 ], + [ 8.6606704, 46.7482055 ], + [ 8.6609739, 46.7482065 ], + [ 8.6613181, 46.7482357 ], + [ 8.6615809, 46.7482422 ], + [ 8.6617784, 46.7482598 ], + [ 8.6619837, 46.7482209 ], + [ 8.6622222, 46.7481709 ], + [ 8.6625759, 46.7480762 ], + [ 8.6627978, 46.7479418 ], + [ 8.6628476, 46.7479362 ], + [ 8.6631357, 46.7478357 ], + [ 8.6635143, 46.7476848 ], + [ 8.6638272, 46.7475618 ], + [ 8.6640329, 46.747433 ], + [ 8.6641117, 46.7473753 ], + [ 8.6642558, 46.7472703 ], + [ 8.664429, 46.7471188 ], + [ 8.6645614, 46.7469671 ], + [ 8.664768, 46.7467028 ], + [ 8.6648422, 46.7466187 ], + [ 8.6649906, 46.7465627 ], + [ 8.6652538, 46.7465185 ], + [ 8.6653852, 46.7464682 ], + [ 8.6655256, 46.7463503 ], + [ 8.6657072, 46.7462044 ], + [ 8.6658144, 46.7460639 ], + [ 8.6659216, 46.7460305 ], + [ 8.6661358, 46.745986 ], + [ 8.6664397, 46.7459362 ], + [ 8.6667595, 46.7458978 ], + [ 8.6669738, 46.745859 ], + [ 8.6671136, 46.74582 ], + [ 8.6672209, 46.7457189 ], + [ 8.6673202, 46.7455897 ], + [ 8.6673954, 46.7454096 ], + [ 8.667478, 46.7452634 ], + [ 8.667561, 46.7451398 ], + [ 8.6676762, 46.7450612 ], + [ 8.6678328, 46.7449715 ], + [ 8.6679565, 46.7449043 ], + [ 8.6680059, 46.7448481 ], + [ 8.6680801, 46.7447639 ], + [ 8.6682374, 46.7446347 ], + [ 8.6683779, 46.7444831 ], + [ 8.6684769, 46.7443763 ], + [ 8.6685765, 46.7442246 ], + [ 8.6686342, 46.7441347 ], + [ 8.6687831, 46.7439942 ], + [ 8.6688824, 46.7438988 ], + [ 8.6690878, 46.7437981 ], + [ 8.669236, 46.7437308 ], + [ 8.6694824, 46.7436697 ], + [ 8.6696885, 46.743597 ], + [ 8.6699602, 46.7434964 ], + [ 8.6701496, 46.7434069 ], + [ 8.6704047, 46.743295 ], + [ 8.6705362, 46.7432504 ], + [ 8.6707171, 46.7431157 ], + [ 8.6708491, 46.7430203 ], + [ 8.6709404, 46.7429361 ], + [ 8.6710723, 46.7428745 ], + [ 8.6712939, 46.7427963 ], + [ 8.6715408, 46.7426844 ], + [ 8.6718374, 46.7425276 ], + [ 8.6720272, 46.7423872 ], + [ 8.6721758, 46.7423033 ], + [ 8.6723481, 46.7422587 ], + [ 8.6725293, 46.7422029 ], + [ 8.6726446, 46.7421301 ], + [ 8.6727843, 46.7420178 ], + [ 8.6729333, 46.7419168 ], + [ 8.6731642, 46.7417484 ], + [ 8.6733283, 46.7416646 ], + [ 8.6734187, 46.7416478 ], + [ 8.6736162, 46.7416259 ], + [ 8.673912, 46.7416155 ], + [ 8.6742402, 46.7415884 ], + [ 8.6745197, 46.7415441 ], + [ 8.6747743, 46.7414829 ], + [ 8.675120100000001, 46.7413656 ], + [ 8.6753669, 46.7412876 ], + [ 8.6755813, 46.7411811 ], + [ 8.6757459, 46.7410858 ], + [ 8.6759111, 46.7409398 ], + [ 8.676158, 46.7407603 ], + [ 8.6763641, 46.7405807 ], + [ 8.6764797, 46.7404515 ], + [ 8.6766529, 46.7402999 ], + [ 8.6769085, 46.7401373 ], + [ 8.6773291, 46.7398287 ], + [ 8.677882, 46.739436 ], + [ 8.6784424, 46.739049 ], + [ 8.6798352, 46.7381235 ], + [ 8.6804942, 46.7376523 ], + [ 8.6811047, 46.7371358 ], + [ 8.6814094, 46.7369114 ], + [ 8.6815914, 46.7367147 ], + [ 8.6817162, 46.7365235 ], + [ 8.6817826, 46.7363548 ], + [ 8.681866, 46.7361409 ], + [ 8.6818998, 46.735972 ], + [ 8.6819501, 46.7357807 ], + [ 8.6820577, 46.735657 ], + [ 8.6820992, 46.7355444 ], + [ 8.6821166, 46.7353756 ], + [ 8.6821673, 46.7351953 ], + [ 8.6822008, 46.7349815 ], + [ 8.6822596, 46.7348013 ], + [ 8.6823511, 46.7346214 ], + [ 8.6824503, 46.7344188 ], + [ 8.6825092, 46.7342443 ], + [ 8.6826001, 46.73407 ], + [ 8.682667, 46.7338504 ], + [ 8.6827179, 46.7336478 ], + [ 8.6827844, 46.7334452 ], + [ 8.6828918, 46.7332821 ], + [ 8.6830161, 46.7331755 ], + [ 8.6831646, 46.7330181 ], + [ 8.6832644, 46.7328439 ], + [ 8.6834045, 46.7326752 ], + [ 8.6835206, 46.7325347 ], + [ 8.6835623, 46.732394 ], + [ 8.6835875, 46.7322814 ], + [ 8.6836863, 46.7322029 ], + [ 8.6838668, 46.7321583 ], + [ 8.6840152, 46.7321024 ], + [ 8.6841467, 46.7320238 ], + [ 8.6843617, 46.7318105 ], + [ 8.684717299999999, 46.7313777 ], + [ 8.685064, 46.7310238 ], + [ 8.6853367, 46.7306865 ], + [ 8.685444, 46.7305516 ], + [ 8.6854776, 46.7304166 ], + [ 8.6854046, 46.7302643 ], + [ 8.6854383, 46.7300954 ], + [ 8.6854891, 46.7299208 ], + [ 8.6855976, 46.7296282 ], + [ 8.6857979, 46.7290261 ], + [ 8.6859304, 46.7287785 ], + [ 8.6859074, 46.7285644 ], + [ 8.685876, 46.7282996 ], + [ 8.6857862, 46.7281303 ], + [ 8.6856554, 46.7280623 ], + [ 8.6854999, 46.7280224 ], + [ 8.6852953, 46.7279767 ], + [ 8.6850574, 46.7279423 ], + [ 8.6847948, 46.7278683 ], + [ 8.684582, 46.7277888 ], + [ 8.6844018, 46.7277038 ], + [ 8.684263, 46.7275739 ], + [ 8.6841901, 46.7274948 ], + [ 8.6840432, 46.7272972 ], + [ 8.6839949, 46.7271506 ], + [ 8.6839376, 46.7270434 ], + [ 8.683815599999999, 46.7269303 ], + [ 8.6836685, 46.7268623 ], + [ 8.6834795, 46.7267885 ], + [ 8.6832261, 46.726754 ], + [ 8.6829636, 46.7267194 ], + [ 8.682716899999999, 46.7266961 ], + [ 8.6823482, 46.7266613 ], + [ 8.6819378, 46.7265924 ], + [ 8.681667000000001, 46.7265861 ], + [ 8.6815115, 46.7265125 ], + [ 8.6813811, 46.7264219 ], + [ 8.681267, 46.7263314 ], + [ 8.681111, 46.7262353 ], + [ 8.6809396, 46.7261784 ], + [ 8.6807594, 46.7261272 ], + [ 8.6805957, 46.7260477 ], + [ 8.6804813, 46.7259461 ], + [ 8.6803835, 46.7258556 ], + [ 8.6802604, 46.7257652 ], + [ 8.6801381, 46.7256352 ], + [ 8.6800736, 46.7255336 ], + [ 8.6800001, 46.725432 ], + [ 8.6798943, 46.7252739 ], + [ 8.6797961, 46.7251666 ], + [ 8.6797149, 46.7250819 ], + [ 8.6796176, 46.7249069 ], + [ 8.6795039, 46.7246925 ], + [ 8.6793896, 46.7245909 ], + [ 8.6792587, 46.7244834 ], + [ 8.6791439, 46.7244323 ], + [ 8.6790462, 46.724342 ], + [ 8.6789811, 46.7242854 ], + [ 8.6789978, 46.7241954 ], + [ 8.6790556, 46.724077199999996 ], + [ 8.6791392, 46.7239422 ], + [ 8.6792298, 46.7238636 ], + [ 8.679411, 46.7237459 ], + [ 8.6796002, 46.7236507 ], + [ 8.679781, 46.7235498 ], + [ 8.6799463, 46.7234489 ], + [ 8.6800695, 46.723331 ], + [ 8.6801852, 46.7232412 ], + [ 8.680367, 46.7230445 ], + [ 8.6806065, 46.7227579 ], + [ 8.6808462, 46.722477 ], + [ 8.6811107, 46.7221397 ], + [ 8.6816151, 46.7215328 ], + [ 8.6817064, 46.721381 ], + [ 8.681756, 46.7212628 ], + [ 8.6817322, 46.72115 ], + [ 8.6816998, 46.7210936 ], + [ 8.6817658, 46.721015 ], + [ 8.6818484, 46.7209081 ], + [ 8.6820051, 46.720824 ], + [ 8.682145, 46.7207568 ], + [ 8.6822684, 46.7207178 ], + [ 8.6824406, 46.7207071 ], + [ 8.6825635, 46.7206848 ], + [ 8.6826863, 46.7206909 ], + [ 8.6828505, 46.7207534 ], + [ 8.683023, 46.7207537 ], + [ 8.6832117, 46.7207092 ], + [ 8.6833272, 46.7206139 ], + [ 8.6834675, 46.720496 ], + [ 8.6835992, 46.7203893 ], + [ 8.6837148, 46.7202994 ], + [ 8.6839125, 46.7201874 ], + [ 8.6839865, 46.7200637 ], + [ 8.6840615, 46.7199118 ], + [ 8.6840866, 46.7197598 ], + [ 8.6840555, 46.719545600000004 ], + [ 8.6840812, 46.7193485 ], + [ 8.684066, 46.7191851 ], + [ 8.684067, 46.7189822 ], + [ 8.6840352, 46.7187738 ], + [ 8.6840615, 46.7185316 ], + [ 8.684103, 46.7183796 ], + [ 8.6841131, 46.7181431 ], + [ 8.6840241, 46.7178667 ], + [ 8.6840013, 46.7176244 ], + [ 8.6839859, 46.7173821 ], + [ 8.6839543, 46.7171793 ], + [ 8.6839064, 46.7169143 ], + [ 8.6838742, 46.7167904 ], + [ 8.6839076, 46.7167172 ], + [ 8.6839574, 46.7166442 ], + [ 8.6840316, 46.7165992 ], + [ 8.6841634, 46.7164982 ], + [ 8.6843365, 46.7163861 ], + [ 8.6845015, 46.7162345 ], + [ 8.684649199999999, 46.716156 ], + [ 8.684855, 46.7160383 ], + [ 8.6850198, 46.7159543 ], + [ 8.6851685, 46.715842 ], + [ 8.6851275, 46.7157687 ], + [ 8.68512, 46.715656 ], + [ 8.6850632, 46.715532 ], + [ 8.6849982, 46.7154078 ], + [ 8.6849498, 46.7152949 ], + [ 8.6849665, 46.7152049 ], + [ 8.6850084, 46.7150698 ], + [ 8.6850587, 46.7148783 ], + [ 8.6850434, 46.7147094 ], + [ 8.6850115, 46.7145346 ], + [ 8.6850045, 46.7143712 ], + [ 8.6849315, 46.7142189 ], + [ 8.6848587, 46.7141117 ], + [ 8.684792999999999, 46.7139932 ], + [ 8.684655, 46.7138575 ], + [ 8.6844829, 46.7137332 ], + [ 8.6843691, 46.7136202 ], + [ 8.6842056, 46.7135127 ], + [ 8.6840751, 46.7133827 ], + [ 8.6839606, 46.7132753 ], + [ 8.6838963, 46.7131118 ], + [ 8.6838722, 46.7129878 ], + [ 8.6837825, 46.7129255 ], + [ 8.6836515, 46.7128463 ], + [ 8.6835039, 46.7127558 ], + [ 8.683513, 46.7126543 ], + [ 8.6835384, 46.712553 ], + [ 8.6836208, 46.7125082 ], + [ 8.6837436, 46.7124466 ], + [ 8.683908, 46.7124133 ], + [ 8.6840396, 46.7123405 ], + [ 8.6841963, 46.712262 ], + [ 8.6843282, 46.7121666 ], + [ 8.6844273, 46.7120317 ], + [ 8.6845435, 46.7118631 ], + [ 8.6846752, 46.711762 ], + [ 8.6847741, 46.7117229 ], + [ 8.6849383, 46.7116501 ], + [ 8.6851195, 46.7115661 ], + [ 8.6852179, 46.7114707 ], + [ 8.6853341, 46.711302 ], + [ 8.6854834, 46.7110771 ], + [ 8.6856403, 46.7108634 ], + [ 8.6857972, 46.7106103 ], + [ 8.6859631, 46.7103629 ], + [ 8.6862292, 46.7097103 ], + [ 8.6863202, 46.7096147 ], + [ 8.6863859, 46.7095586 ], + [ 8.68651, 46.7094801 ], + [ 8.6866081, 46.7094128 ], + [ 8.6866993, 46.7093229 ], + [ 8.686807, 46.7091767 ], + [ 8.6869465, 46.7090589 ], + [ 8.6870868, 46.7089747 ], + [ 8.6872426, 46.7089245 ], + [ 8.6873662, 46.7088967 ], + [ 8.6874652, 46.7088293 ], + [ 8.6875723, 46.7087621 ], + [ 8.6878018, 46.7087177 ], + [ 8.687958, 46.7086843 ], + [ 8.6881478, 46.7085497 ], + [ 8.6884363, 46.7083026 ], + [ 8.6886834, 46.7081004 ], + [ 8.6887662, 46.7080049 ], + [ 8.6888237, 46.7079094 ], + [ 8.688849, 46.7078024 ], + [ 8.688891, 46.7077124 ], + [ 8.6889648, 46.7076506 ], + [ 8.6890558, 46.7075945 ], + [ 8.6891704, 46.7075273 ], + [ 8.6892617, 46.7074487 ], + [ 8.6893767, 46.7073307 ], + [ 8.6894841, 46.7072409 ], + [ 8.6895508, 46.7071172 ], + [ 8.6896086, 46.7070384 ], + [ 8.6897155, 46.7069599 ], + [ 8.6898632, 46.7068814 ], + [ 8.6900277, 46.70682 ], + [ 8.6902003, 46.7067529 ], + [ 8.6903983, 46.7066576 ], + [ 8.690669, 46.706557 ], + [ 8.6909323, 46.7064564 ], + [ 8.6911134, 46.7064062 ], + [ 8.6912613, 46.7063671 ], + [ 8.6914335, 46.7063225 ], + [ 8.6915736, 46.7063003 ], + [ 8.6917378, 46.7062614 ], + [ 8.6920002, 46.7062283 ], + [ 8.6922304, 46.7061783 ], + [ 8.6923617, 46.7060941 ], + [ 8.6924607, 46.7060269 ], + [ 8.6925354, 46.7059032 ], + [ 8.6926346, 46.70574 ], + [ 8.6928, 46.7054701 ], + [ 8.6929573, 46.7053128 ], + [ 8.6932534, 46.7051785 ], + [ 8.6936393, 46.7050781 ], + [ 8.6936733, 46.7048867 ], + [ 8.6935917, 46.7047175 ], + [ 8.6935278, 46.7045033 ], + [ 8.6934063, 46.7042663 ], + [ 8.6932598, 46.7040124 ], + [ 8.6930972, 46.7037358 ], + [ 8.6930325, 46.7036229 ], + [ 8.6930002, 46.7034989 ], + [ 8.6930253, 46.7033863 ], + [ 8.6930339, 46.7032625 ], + [ 8.6930512, 46.7031274 ], + [ 8.6930277, 46.7030315 ], + [ 8.6929874, 46.702913 ], + [ 8.6929633, 46.7027552 ], + [ 8.6929397, 46.70262 ], + [ 8.6929318, 46.7024903 ], + [ 8.6928096, 46.7022985 ], + [ 8.6927121, 46.7021461 ], + [ 8.6926558, 46.7019769 ], + [ 8.6925513, 46.7018397 ], + [ 8.6925241, 46.7018307 ], + [ 8.6913899, 46.7008536 ], + [ 8.6912504, 46.7004772 ], + [ 8.6910992, 46.6995972 ], + [ 8.6907552, 46.6988633 ], + [ 8.6906151, 46.69846 ], + [ 8.6906763, 46.6982794 ], + [ 8.6904468, 46.697967 ], + [ 8.6900467, 46.6976295 ], + [ 8.6898036, 46.6972993 ], + [ 8.6896625, 46.696851 ], + [ 8.6894983, 46.6965379 ], + [ 8.6890947, 46.6960475 ], + [ 8.6862687, 46.6942792 ], + [ 8.6857865, 46.6943474 ], + [ 8.6848323, 46.6943579 ], + [ 8.6841839, 46.6945899 ], + [ 8.6839235, 46.6946377 ], + [ 8.6824146, 46.6944112 ], + [ 8.6816328, 46.6945277 ], + [ 8.6805337, 46.6950615 ], + [ 8.6793948, 46.6950019 ], + [ 8.6788725, 46.6950346 ], + [ 8.6781112, 46.6949079 ], + [ 8.676768, 46.6944907 ], + [ 8.6762646, 46.6942083 ], + [ 8.6750311, 46.6928722 ], + [ 8.6746301, 46.6924896 ], + [ 8.6743208, 46.6921151 ], + [ 8.673884, 46.6913102 ], + [ 8.6737492, 46.6911317 ], + [ 8.6737779, 46.68953 ], + [ 8.6738969, 46.6890159 ], + [ 8.6738478, 46.6885846 ], + [ 8.6737476, 46.6882078 ], + [ 8.674456, 46.6865987 ], + [ 8.6744426, 46.6860141 ], + [ 8.6748615, 46.6854697 ], + [ 8.6748487, 46.6849121 ], + [ 8.6751013, 46.6845225 ], + [ 8.6750256, 46.6840735 ], + [ 8.6740582, 46.6834992 ], + [ 8.6732933, 46.6826348 ], + [ 8.673088, 46.6822322 ], + [ 8.6731492, 46.6820516 ], + [ 8.6728714, 46.6813348 ], + [ 8.6730802, 46.6807478 ], + [ 8.6738134, 46.6796602 ], + [ 8.6740247, 46.6791811 ], + [ 8.6742007, 46.6783066 ], + [ 8.6736833, 46.6768277 ], + [ 8.673998600000001, 46.6763295 ], + [ 8.6741221, 46.6760132 ], + [ 8.6741394, 46.675626199999996 ], + [ 8.6739166, 46.6745312 ], + [ 8.6739093, 46.6744953 ], + [ 8.6733655, 46.6742214 ], + [ 8.6730139, 46.6740626 ], + [ 8.6722925, 46.6739534 ], + [ 8.6714154, 46.6738945 ], + [ 8.6699242, 46.6737322 ], + [ 8.6687193, 46.673768 ], + [ 8.6685552, 46.6737731 ], + [ 8.6684892, 46.673818 ], + [ 8.6683905, 46.6738966 ], + [ 8.668307800000001, 46.6739583 ], + [ 8.6682096, 46.6740199 ], + [ 8.6681594, 46.6740761 ], + [ 8.6680365, 46.6741321 ], + [ 8.6679377, 46.674205 ], + [ 8.6678223, 46.6742667 ], + [ 8.6677396, 46.674334 ], + [ 8.6676082, 46.674373 ], + [ 8.6674775, 46.6743726 ], + [ 8.6673546, 46.6743948 ], + [ 8.6671897, 46.6744338 ], + [ 8.6670754, 46.6744728 ], + [ 8.6669678, 46.6745176 ], + [ 8.666812, 46.6745284 ], + [ 8.6667062, 46.6745111 ], + [ 8.6665666, 46.6744769 ], + [ 8.6664107, 46.6744482 ], + [ 8.6662721, 46.674352 ], + [ 8.6661254, 46.6742953 ], + [ 8.6659611, 46.6742554 ], + [ 8.6658222, 46.6742155 ], + [ 8.6657404, 46.6741758 ], + [ 8.6656341, 46.6741022 ], + [ 8.6654632, 46.6739834 ], + [ 8.6652996, 46.6738308 ], + [ 8.6650871, 46.6736837 ], + [ 8.6649083, 46.6735085 ], + [ 8.6647298, 46.6732376 ], + [ 8.6645254, 46.6730849 ], + [ 8.6643461, 46.6729604 ], + [ 8.6643705, 46.6729209 ], + [ 8.6643791, 46.6728309 ], + [ 8.6644053, 46.6726902 ], + [ 8.6643489, 46.6724702 ], + [ 8.6642357, 46.6722728 ], + [ 8.6641061, 46.6720302 ], + [ 8.6639427, 46.6718156 ], + [ 8.6638545, 46.6716012 ], + [ 8.6636989, 46.6715106 ], + [ 8.663461999999999, 46.6714028 ], + [ 8.6632167, 46.6713176 ], + [ 8.6630279, 46.6712776 ], + [ 8.6627005, 46.6712484 ], + [ 8.6623235, 46.6712303 ], + [ 8.6619788, 46.6711954 ], + [ 8.6617335, 46.6712173 ], + [ 8.6613972, 46.6712275 ], + [ 8.6611995, 46.6713 ], + [ 8.6609536, 46.6713725 ], + [ 8.6605836, 46.6714447 ], + [ 8.6602303, 46.6715732 ], + [ 8.6599595, 46.6716624 ], + [ 8.6597296, 46.671718 ], + [ 8.6594666, 46.6717904 ], + [ 8.65927, 46.6718011 ], + [ 8.6591142, 46.6718119 ], + [ 8.6588521, 46.6718166 ], + [ 8.6585564, 46.671782 ], + [ 8.658237, 46.6718148 ], + [ 8.6579994, 46.6718197 ], + [ 8.657704, 46.6718357 ], + [ 8.6572283, 46.6718567 ], + [ 8.6565559, 46.6718884 ], + [ 8.6561535, 46.671904 ], + [ 8.6557605, 46.6718972 ], + [ 8.6555131, 46.6721217 ], + [ 8.655291, 46.6722674 ], + [ 8.6551424, 46.6723797 ], + [ 8.6549774, 46.6724919 ], + [ 8.6548616, 46.6726436 ], + [ 8.6547135, 46.6728121 ], + [ 8.6545886, 46.6730371 ], + [ 8.6544639, 46.6733015 ], + [ 8.6544226, 46.6733914 ], + [ 8.6543157, 46.6734305 ], + [ 8.6541923, 46.6735034 ], + [ 8.6540199, 46.6735705 ], + [ 8.6538393, 46.6736431 ], + [ 8.6536085, 46.6737326 ], + [ 8.6534441, 46.6737939 ], + [ 8.6533207, 46.6738668 ], + [ 8.6531322, 46.6739451 ], + [ 8.6530001, 46.6739953 ], + [ 8.6529175, 46.6740966 ], + [ 8.6527698, 46.6742144 ], + [ 8.6525556, 46.6743151 ], + [ 8.652391399999999, 46.6743878 ], + [ 8.6522266, 46.6744323 ], + [ 8.6520294, 46.6744937 ], + [ 8.6518415, 46.6744931 ], + [ 8.6517017, 46.6745208 ], + [ 8.6515452, 46.6745766 ], + [ 8.6513733, 46.6746324 ], + [ 8.6512329, 46.6747108 ], + [ 8.6511179, 46.6747894 ], + [ 8.6509204, 46.6748733 ], + [ 8.6507561, 46.6749009 ], + [ 8.6506087, 46.674923 ], + [ 8.6505013, 46.674979 ], + [ 8.6504197, 46.6750181 ], + [ 8.6503041, 46.6750741 ], + [ 8.6501481, 46.6751468 ], + [ 8.6499758, 46.6751857 ], + [ 8.6498361, 46.6751852 ], + [ 8.6496644, 46.675179 ], + [ 8.6494668, 46.6751841 ], + [ 8.6492867, 46.6752398 ], + [ 8.6491304, 46.6752619 ], + [ 8.6488841, 46.6752836 ], + [ 8.6486954, 46.6753168 ], + [ 8.648515, 46.6753274 ], + [ 8.6484249, 46.6753159 ], + [ 8.6482857, 46.6752985 ], + [ 8.6481713, 46.6752982 ], + [ 8.6479334, 46.6752919 ], + [ 8.6477526, 46.6753138 ], + [ 8.6475069, 46.6753242 ], + [ 8.647310000000001, 46.6753237 ], + [ 8.647146, 46.6753681 ], + [ 8.6469652, 46.6754295 ], + [ 8.6468253, 46.675491 ], + [ 8.6466281, 46.6755524 ], + [ 8.6465128, 46.6755465 ], + [ 8.646382, 46.6755404 ], + [ 8.6462671, 46.6755175 ], + [ 8.6460875, 46.6754887 ], + [ 8.6458415, 46.6754823 ], + [ 8.645669, 46.6754761 ], + [ 8.6454061, 46.6755202 ], + [ 8.6452583, 46.6755592 ], + [ 8.6450615, 46.6755981 ], + [ 8.6448402, 46.6756367 ], + [ 8.6445451, 46.6756302 ], + [ 8.6441839, 46.6755896 ], + [ 8.6438322, 46.6755321 ], + [ 8.6435047, 46.6754635 ], + [ 8.6431939, 46.6753723 ], + [ 8.6428911, 46.6752756 ], + [ 8.642662, 46.6751846 ], + [ 8.6424246, 46.6750543 ], + [ 8.6421718, 46.6748901 ], + [ 8.6420495, 46.6747545 ], + [ 8.6419691, 46.6745909 ], + [ 8.6418883, 46.6743371 ], + [ 8.6417542, 46.6748436 ], + [ 8.6417278, 46.6750521 ], + [ 8.6416937, 46.6752829 ], + [ 8.6416598, 46.6755194 ], + [ 8.6415922, 46.6757502 ], + [ 8.6414673, 46.6760089 ], + [ 8.6413759, 46.6762339 ], + [ 8.6412672, 46.6765265 ], + [ 8.6410852, 46.676864 ], + [ 8.6409669, 46.6772748 ], + [ 8.6408169, 46.6777306 ], + [ 8.6406831, 46.6781414 ], + [ 8.6405568, 46.6785578 ], + [ 8.6404647, 46.6788617 ], + [ 8.6404072, 46.6789236 ], + [ 8.6403575, 46.6789628 ], + [ 8.6402505, 46.6790019 ], + [ 8.64007, 46.6790407 ], + [ 8.6398976, 46.6791134 ], + [ 8.6396676, 46.679169 ], + [ 8.6393716, 46.6793032 ], + [ 8.6389771, 46.679454 ], + [ 8.638771, 46.6795547 ], + [ 8.6385898, 46.6796725 ], + [ 8.6383925, 46.6798013 ], + [ 8.6382029, 46.6799078 ], + [ 8.6379969, 46.680048 ], + [ 8.6378074, 46.6801994 ], + [ 8.6376428, 46.6803285 ], + [ 8.6374114, 46.6805023 ], + [ 8.6372962, 46.6806146 ], + [ 8.6371643, 46.6806705 ], + [ 8.636926, 46.6807937 ], + [ 8.6367365, 46.6809395 ], + [ 8.6365389, 46.6810572 ], + [ 8.636357199999999, 46.6812255 ], + [ 8.6362586, 46.6813098 ], + [ 8.6361671, 46.6814221 ], + [ 8.636076599999999, 46.6815401 ], + [ 8.6360098, 46.6816582 ], + [ 8.6359596, 46.681827 ], + [ 8.6358836, 46.6821198 ], + [ 8.6357834, 46.6824292 ], + [ 8.6357168, 46.6826318 ], + [ 8.6356331, 46.6828005 ], + [ 8.6355504, 46.6829017 ], + [ 8.6354022, 46.6830364 ], + [ 8.6352292, 46.6831541 ], + [ 8.6351297, 46.683272099999996 ], + [ 8.6350137, 46.6834576 ], + [ 8.6349384, 46.6836715 ], + [ 8.6349376, 46.6838573 ], + [ 8.6348219, 46.6839471 ], + [ 8.6346663, 46.6839691 ], + [ 8.6343791, 46.6839851 ], + [ 8.6341087, 46.6839108 ], + [ 8.6338385, 46.6838143 ], + [ 8.6335359, 46.6837625 ], + [ 8.6332572, 46.6837221 ], + [ 8.633028, 46.6837044 ], + [ 8.6326919, 46.6836527 ], + [ 8.6324056, 46.683601 ], + [ 8.6321674, 46.6835439 ], + [ 8.6318894, 46.6834584 ], + [ 8.6317102, 46.6833339 ], + [ 8.6316456, 46.6831873 ], + [ 8.6315809, 46.6830687 ], + [ 8.6314994, 46.6830009 ], + [ 8.6313762, 46.6829385 ], + [ 8.6312539, 46.6828367 ], + [ 8.631198, 46.6827125 ], + [ 8.6311989, 46.682566 ], + [ 8.6311496, 46.6824814 ], + [ 8.6310442, 46.6824078 ], + [ 8.6308562, 46.6823283 ], + [ 8.6306682, 46.682248799999996 ], + [ 8.6304389, 46.6821522 ], + [ 8.6301364, 46.6820667 ], + [ 8.629849, 46.6820038 ], + [ 8.6294974, 46.6819519 ], + [ 8.629226599999999, 46.6819003 ], + [ 8.6289487, 46.6818543 ], + [ 8.6286702, 46.6817858 ], + [ 8.6284816, 46.6817175 ], + [ 8.6282695, 46.681621 ], + [ 8.6279667, 46.6815242 ], + [ 8.6277215, 46.6814446 ], + [ 8.6274014, 46.6814153 ], + [ 8.6271143, 46.6814369 ], + [ 8.6266879, 46.6814805 ], + [ 8.6262856, 46.6815016 ], + [ 8.626056, 46.6815009 ], + [ 8.6257772, 46.6814886 ], + [ 8.625548, 46.681471 ], + [ 8.6252697, 46.681408 ], + [ 8.6250488, 46.6813229 ], + [ 8.6248198, 46.6812375 ], + [ 8.6246555, 46.6812314 ], + [ 8.6244588, 46.6812757 ], + [ 8.6242451, 46.6813314 ], + [ 8.6240398, 46.681432 ], + [ 8.6238096, 46.6815157 ], + [ 8.6236119, 46.6816277 ], + [ 8.6233654, 46.6817113 ], + [ 8.623168100000001, 46.6817332 ], + [ 8.6229878, 46.6817439 ], + [ 8.6227832, 46.6817262 ], + [ 8.6226026, 46.6816862 ], + [ 8.6224467, 46.6816575 ], + [ 8.6222991, 46.6816683 ], + [ 8.6221593, 46.681741 ], + [ 8.6220361, 46.6817462 ], + [ 8.6218725, 46.6817738 ], + [ 8.6215853, 46.681756 ], + [ 8.6213316, 46.6817382 ], + [ 8.621052, 46.6817654 ], + [ 8.6207725, 46.6818715 ], + [ 8.6205429, 46.6819102 ], + [ 8.6203784, 46.6819715 ], + [ 8.620303700000001, 46.682067 ], + [ 8.6200904, 46.6821395 ], + [ 8.6198934, 46.6821726 ], + [ 8.6196958, 46.6822171 ], + [ 8.6195073, 46.6823009 ], + [ 8.6193343, 46.6823848 ], + [ 8.6191616, 46.68248 ], + [ 8.6189715, 46.6826033 ], + [ 8.6188239, 46.6826928 ], + [ 8.6186258, 46.6828275 ], + [ 8.6184612, 46.6829564 ], + [ 8.6183041, 46.6830572 ], + [ 8.6181814, 46.6830906 ], + [ 8.6180085, 46.6831407 ], + [ 8.6176721, 46.683224 ], + [ 8.6174995, 46.683291 ], + [ 8.6172689, 46.6833578 ], + [ 8.6170558, 46.6834022 ], + [ 8.6168743, 46.683469099999996 ], + [ 8.6167185, 46.6835193 ], + [ 8.616594899999999, 46.6835471 ], + [ 8.616505, 46.6835805 ], + [ 8.6163653, 46.6836195 ], + [ 8.6161768, 46.6836301 ], + [ 8.6159709, 46.6836688 ], + [ 8.6156838, 46.6836903 ], + [ 8.615479, 46.6837009 ], + [ 8.615372, 46.6837062 ], + [ 8.615282, 46.683734 ], + [ 8.6151917, 46.68379 ], + [ 8.6150928, 46.6838629 ], + [ 8.6149605, 46.6839413 ], + [ 8.6147628, 46.6840195 ], + [ 8.614582, 46.684120300000004 ], + [ 8.6143681, 46.6842041 ], + [ 8.6142039, 46.6842429 ], + [ 8.6140475, 46.6842987 ], + [ 8.6137358, 46.6843201 ], + [ 8.6134739, 46.6843361 ], + [ 8.613186, 46.6843577 ], + [ 8.6129564, 46.6843963 ], + [ 8.6127351, 46.6844011 ], + [ 8.6125134, 46.6844284 ], + [ 8.6123246, 46.6844616 ], + [ 8.6121358, 46.6844947 ], + [ 8.6119224, 46.6845278 ], + [ 8.6116842, 46.6845833 ], + [ 8.6114292, 46.6846163 ], + [ 8.6111259, 46.6846828 ], + [ 8.6107307, 46.6848447 ], + [ 8.6105338, 46.6848834 ], + [ 8.6103694, 46.6849505 ], + [ 8.6101807, 46.6849893 ], + [ 8.6099588, 46.6850053 ], + [ 8.6097946, 46.6850047 ], + [ 8.609589, 46.6850942 ], + [ 8.6092442, 46.6851718 ], + [ 8.6090795, 46.685222 ], + [ 8.6088746, 46.6853057 ], + [ 8.6087426, 46.685401 ], + [ 8.6085462, 46.6852707 ], + [ 8.608318, 46.685146 ], + [ 8.6080399, 46.6849816 ], + [ 8.6078927, 46.6849023 ], + [ 8.6076472, 46.6848845 ], + [ 8.6073519, 46.684906 ], + [ 8.6071383, 46.6849277 ], + [ 8.6069828, 46.6849159 ], + [ 8.6067695, 46.6848757 ], + [ 8.6062945, 46.6847838 ], + [ 8.6058808, 46.6846992 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "JBG0014", + "country" : "CHE", + "name" : [ + { + "text" : "Eidgenössisches Jagdbanngebiet Fellital", + "lang" : "de-CH" + }, + { + "text" : "District franc fédéral Fellital", + "lang" : "fr-CH" + }, + { + "text" : "Bandita federale di caccia Fellital", + "lang" : "it-CH" + }, + { + "text" : "Federal Game Reserve Fellital", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.7192298, 46.9402755 ], + [ 6.7193548, 46.9402092 ], + [ 6.7188828, 46.9399631 ], + [ 6.7183911, 46.9390625 ], + [ 6.7183589999999995, 46.938984 ], + [ 6.7187064, 46.9387957 ], + [ 6.7187906, 46.9387275 ], + [ 6.7188086, 46.9386917 ], + [ 6.718891, 46.9386379 ], + [ 6.7188696, 46.9385484 ], + [ 6.7189966, 46.9384813 ], + [ 6.718981, 46.9383797 ], + [ 6.7190197, 46.9383211 ], + [ 6.7191303, 46.9382584 ], + [ 6.7191802, 46.9381868 ], + [ 6.7191873, 46.9381102 ], + [ 6.7192473, 46.938053 ], + [ 6.7191841, 46.9380268 ], + [ 6.7191744, 46.9377746 ], + [ 6.719437, 46.9375146 ], + [ 6.7195542, 46.9374642 ], + [ 6.7197326, 46.9373624 ], + [ 6.7197619, 46.9373129 ], + [ 6.7198863, 46.9371392 ], + [ 6.7200207, 46.9369516 ], + [ 6.7200511, 46.937035 ], + [ 6.7201066, 46.9369866 ], + [ 6.7201067, 46.937004 ], + [ 6.7201105, 46.9370142 ], + [ 6.7201367, 46.9370018 ], + [ 6.7201655, 46.9370164 ], + [ 6.7201463, 46.9370458 ], + [ 6.7201451, 46.9370593 ], + [ 6.7201364, 46.9370701 ], + [ 6.7201264, 46.9370992 ], + [ 6.7201252, 46.9371113 ], + [ 6.720108, 46.9371264 ], + [ 6.720111, 46.9371392 ], + [ 6.7201367, 46.9371314 ], + [ 6.7201454, 46.937111 ], + [ 6.7201541, 46.9371034 ], + [ 6.7201697, 46.9370893 ], + [ 6.7201724, 46.9370817 ], + [ 6.7202003, 46.937064 ], + [ 6.7202115, 46.937064 ], + [ 6.7202181, 46.9370566 ], + [ 6.7202376, 46.9370779 ], + [ 6.7205206, 46.9368254 ], + [ 6.7206797, 46.9366827 ], + [ 6.7207794, 46.9365539 ], + [ 6.7207851, 46.9365031 ], + [ 6.7208728, 46.9363755 ], + [ 6.7208556, 46.9362699 ], + [ 6.7209195, 46.9362 ], + [ 6.7209201, 46.9361536 ], + [ 6.7208686, 46.9361001 ], + [ 6.7208457, 46.9360944 ], + [ 6.7207412, 46.9360683 ], + [ 6.7206348, 46.9360418 ], + [ 6.715621, 46.9347898 ], + [ 6.7133009, 46.9340878 ], + [ 6.7130443, 46.9344952 ], + [ 6.7128135, 46.9348904 ], + [ 6.712464, 46.9348885 ], + [ 6.7120273, 46.9349076 ], + [ 6.7116299, 46.9349969 ], + [ 6.711286, 46.9351882 ], + [ 6.7118939, 46.9354902 ], + [ 6.7121536, 46.9356813 ], + [ 6.7124358, 46.9358955 ], + [ 6.7127304, 46.9361376 ], + [ 6.7130019999999995, 46.9363583 ], + [ 6.7131659, 46.9365848 ], + [ 6.7133547, 46.9368374 ], + [ 6.7134145, 46.9369308 ], + [ 6.7136012, 46.9370564 ], + [ 6.7138406, 46.9372986 ], + [ 6.7139843, 46.9375624 ], + [ 6.7141528, 46.9376032 ], + [ 6.7147154, 46.9379648 ], + [ 6.7153635, 46.9384019 ], + [ 6.7156568, 46.9385891 ], + [ 6.7160716, 46.9386877 ], + [ 6.716515, 46.9388476 ], + [ 6.7166495, 46.9389611 ], + [ 6.7168002, 46.9391092 ], + [ 6.7171689, 46.9393483 ], + [ 6.7174844, 46.9395618 ], + [ 6.7178599, 46.939778 ], + [ 6.718146, 46.9399378 ], + [ 6.7184427, 46.9400966 ], + [ 6.7186753, 46.9402245 ], + [ 6.7187915, 46.940288 ], + [ 6.7190089, 46.9403928 ], + [ 6.7192298, 46.9402755 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "NAT1", + "country" : "CHE", + "name" : [ + { + "text" : "Creux du Van", + "lang" : "de-CH" + }, + { + "text" : "Creux du Van", + "lang" : "fr-CH" + }, + { + "text" : "Creux du Van", + "lang" : "it-CH" + }, + { + "text" : "Creux du Van", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "regulationExemption" : "NO", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Section nature", + "lang" : "de-CH" + }, + { + "text" : "Section nature", + "lang" : "fr-CH" + }, + { + "text" : "Section nature", + "lang" : "it-CH" + }, + { + "text" : "Section nature", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Service de la faune, des forêts et de la nature", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, des forêts et de la nature", + "lang" : "fr-CH" + }, + { + "text" : "Service de la faune, des forêts et de la nature", + "lang" : "it-CH" + }, + { + "text" : "Service de la faune, des forêts et de la nature", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Chef de la section nature", + "lang" : "de-CH" + }, + { + "text" : "Chef de la section nature", + "lang" : "fr-CH" + }, + { + "text" : "Chef de la section nature", + "lang" : "it-CH" + }, + { + "text" : "Chef de la section nature", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ne.ch/autorites/DDTE/SFFN/nature/Pages/accueil.aspx", + "email" : "sffn@ne.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.087029, 46.1510628 ], + [ 6.086773, 46.1513193 ], + [ 6.086771, 46.1513257 ], + [ 6.0864424, 46.151367 ], + [ 6.0851683, 46.1519368 ], + [ 6.084305, 46.1528021 ], + [ 6.083984, 46.1538301 ], + [ 6.0839215, 46.1537999 ], + [ 6.0824408, 46.1535767 ], + [ 6.0809499, 46.1537642 ], + [ 6.0796757, 46.1543339 ], + [ 6.0788122, 46.1551991 ], + [ 6.0787678, 46.1553415 ], + [ 6.0778305, 46.1552001 ], + [ 6.0763395, 46.1553876 ], + [ 6.0750653, 46.1559572 ], + [ 6.0742016, 46.1568224 ], + [ 6.0738802, 46.1578514 ], + [ 6.0741499, 46.1588876 ], + [ 6.0749697, 46.1597732 ], + [ 6.0762148, 46.1603733 ], + [ 6.0776956, 46.1605967 ], + [ 6.0791867, 46.1604092 ], + [ 6.0804611, 46.1598395 ], + [ 6.0813246, 46.1589742 ], + [ 6.0813691, 46.1588319 ], + [ 6.0823064, 46.1589732 ], + [ 6.0837975, 46.1587857 ], + [ 6.0850717, 46.1582159 ], + [ 6.0858774, 46.1574085 ], + [ 6.0863641, 46.1579341 ], + [ 6.0876093000000004, 46.1585341 ], + [ 6.0890901, 46.1587573 ], + [ 6.0905811, 46.1585697 ], + [ 6.0915493, 46.1581367 ], + [ 6.0924647, 46.1582746 ], + [ 6.0934934, 46.1581452 ], + [ 6.0939811, 46.1586717 ], + [ 6.0952264, 46.1592716 ], + [ 6.0967073, 46.1594947 ], + [ 6.0981983, 46.159307 ], + [ 6.0994724, 46.1587371 ], + [ 6.1003356, 46.1578717 ], + [ 6.1006566, 46.1568426 ], + [ 6.1003864, 46.1558065 ], + [ 6.0995663, 46.1549211 ], + [ 6.0985606, 46.1544367 ], + [ 6.0977581, 46.1535703 ], + [ 6.0965129, 46.1529704 ], + [ 6.0950322, 46.1527473 ], + [ 6.0945384, 46.1528094 ], + [ 6.0944265, 46.1526886 ], + [ 6.0944555, 46.1525956 ], + [ 6.0941854, 46.1515595 ], + [ 6.0934051, 46.1507169 ], + [ 6.0930684, 46.1509866 ], + [ 6.0928485, 46.151305 ], + [ 6.0918115, 46.1519464 ], + [ 6.0917351, 46.1519323 ], + [ 6.0903773, 46.1516812 ], + [ 6.0896718, 46.1515516 ], + [ 6.087029, 46.1510628 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-7", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 5.9934277, 46.2181846 ], + [ 5.993236, 46.2184976 ], + [ 5.9933379, 46.2187266 ], + [ 5.9929458, 46.2192364 ], + [ 5.992795, 46.2202776 ], + [ 5.9932263, 46.2212804 ], + [ 5.9932321, 46.2212881 ], + [ 5.9932322, 46.2212882 ], + [ 5.9932661, 46.2213329 ], + [ 5.9932963, 46.2213608 ], + [ 5.9932923, 46.2213624 ], + [ 5.9933023, 46.2213752 ], + [ 5.9936491, 46.221687 ], + [ 5.9940033, 46.2220147 ], + [ 5.9940251, 46.2220252 ], + [ 5.9940557, 46.2220528 ], + [ 5.9948954, 46.2224472 ], + [ 5.9950101, 46.2225028 ], + [ 5.9950167, 46.2225042 ], + [ 5.995077, 46.2225325 ], + [ 5.9953295, 46.2225822 ], + [ 5.9955096, 46.2225469 ], + [ 5.9957952, 46.2224728 ], + [ 5.9961227, 46.2223553 ], + [ 5.9963725, 46.2223534 ], + [ 5.9965532, 46.2223084 ], + [ 5.9967724, 46.2222905 ], + [ 5.9968486, 46.2223149 ], + [ 5.9970293, 46.2223406 ], + [ 5.9972843, 46.2222987 ], + [ 5.9973743, 46.2222998 ], + [ 5.9974796999999995, 46.2222665 ], + [ 5.9975688, 46.2222682 ], + [ 5.9976685, 46.2222291 ], + [ 5.9977708, 46.2222042 ], + [ 5.9978117, 46.2221663 ], + [ 5.997847, 46.2221512 ], + [ 5.9978911, 46.2221425 ], + [ 5.9979482, 46.2221427 ], + [ 5.9979914, 46.2221405 ], + [ 5.9980179, 46.2221376 ], + [ 5.9980689, 46.2221079 ], + [ 5.9981329, 46.2220835 ], + [ 5.9983454, 46.2219824 ], + [ 5.9984825, 46.2219264 ], + [ 5.998518, 46.2219022 ], + [ 5.9986124, 46.2218474 ], + [ 5.9986856, 46.2217477 ], + [ 5.9987682, 46.2216805 ], + [ 5.9988198, 46.2216587 ], + [ 5.9988604, 46.2216336 ], + [ 5.9989115, 46.2216333 ], + [ 5.9989801, 46.2216296 ], + [ 5.9990993, 46.221618 ], + [ 5.9991483, 46.2215925 ], + [ 5.9991631, 46.2215545 ], + [ 5.9992147, 46.2214892 ], + [ 5.9992324, 46.2214552 ], + [ 5.9992536, 46.2214298 ], + [ 5.9993529, 46.2213575 ], + [ 5.9994248, 46.2212624 ], + [ 5.9994807, 46.2211958 ], + [ 5.9995037, 46.2211212 ], + [ 5.9995027, 46.2210921 ], + [ 5.9995742, 46.2210954 ], + [ 5.9996189, 46.2209924 ], + [ 6.0000253, 46.2200551 ], + [ 6.0000357, 46.220031 ], + [ 6.0001703, 46.2200702 ], + [ 6.000294, 46.2201251 ], + [ 6.0003737, 46.2201404 ], + [ 6.0006538, 46.2202338 ], + [ 6.0011114, 46.2203933 ], + [ 6.0013279, 46.2204274 ], + [ 6.0015392, 46.2205001 ], + [ 6.0016575, 46.2205923 ], + [ 6.0017956, 46.220721 ], + [ 6.0020139, 46.2211222 ], + [ 6.0021435, 46.2212857 ], + [ 6.0023161, 46.2215284 ], + [ 6.0025262, 46.2217746 ], + [ 6.0025687, 46.2219072 ], + [ 6.0026095, 46.2219706 ], + [ 6.00275, 46.2221247 ], + [ 6.0027811, 46.2221441 ], + [ 6.0028532, 46.2222231 ], + [ 6.0029068, 46.2223109 ], + [ 6.0030583, 46.2224204 ], + [ 6.0031216, 46.2224874 ], + [ 6.0031937, 46.2225293 ], + [ 6.0032124, 46.2225607 ], + [ 6.0034659, 46.2227407 ], + [ 6.0041382, 46.2225623 ], + [ 6.0043597, 46.2225233 ], + [ 6.0044383, 46.2224827 ], + [ 6.0045482, 46.2224535 ], + [ 6.0051653, 46.2221072 ], + [ 6.0055715, 46.2218974 ], + [ 6.0055957, 46.2218788 ], + [ 6.0062608, 46.2211719 ], + [ 6.0065787, 46.2203569 ], + [ 6.0065181, 46.2195136 ], + [ 6.006085, 46.2187245 ], + [ 6.0053219, 46.218067 ], + [ 6.0051867, 46.2179821 ], + [ 6.0038852, 46.2174414 ], + [ 6.0038466, 46.2174375 ], + [ 6.0033126, 46.2171058 ], + [ 6.0032482, 46.2170251 ], + [ 6.0031298, 46.2169279 ], + [ 6.00241, 46.2165298 ], + [ 6.0023977, 46.2164766 ], + [ 6.0018433, 46.2157242 ], + [ 6.0009808, 46.2151278 ], + [ 5.9998948, 46.2147457 ], + [ 5.998692, 46.2146156 ], + [ 5.9986672, 46.2146157 ], + [ 5.9971816, 46.2148234 ], + [ 5.9971689999999995, 46.2148293 ], + [ 5.9966668, 46.2147966 ], + [ 5.9964047, 46.2148154 ], + [ 5.9952292, 46.2150325 ], + [ 5.9942078, 46.2154912 ], + [ 5.9934407, 46.2161465 ], + [ 5.9932937, 46.216411 ], + [ 5.99334, 46.2166935 ], + [ 5.9936539, 46.2173135 ], + [ 5.9935514, 46.2178984 ], + [ 5.9934277, 46.2181846 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-24", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.965343, 46.06386 ], + [ 6.9653389, 46.0637187 ], + [ 6.9653241999999995, 46.0635778 ], + [ 6.9652989, 46.0634376 ], + [ 6.9652631, 46.0632985 ], + [ 6.965217, 46.063161 ], + [ 6.9651605, 46.0630253 ], + [ 6.9650939, 46.0628918 ], + [ 6.9650174, 46.0627609 ], + [ 6.9649311, 46.0626331 ], + [ 6.9648354, 46.0625085 ], + [ 6.9647303, 46.0623876 ], + [ 6.9646164, 46.0622707 ], + [ 6.9644938, 46.0621581 ], + [ 6.964363, 46.0620501 ], + [ 6.9642241, 46.061947 ], + [ 6.9640778, 46.0618491 ], + [ 6.9639243, 46.0617567 ], + [ 6.963764, 46.06167 ], + [ 6.9635974, 46.0615893 ], + [ 6.963425, 46.0615147 ], + [ 6.9632473, 46.0614466 ], + [ 6.9630646, 46.061385 ], + [ 6.9628776, 46.0613301 ], + [ 6.9626867, 46.0612821 ], + [ 6.9624924, 46.0612412 ], + [ 6.9622954, 46.0612074 ], + [ 6.9620961, 46.0611808 ], + [ 6.961895, 46.0611615 ], + [ 6.9616928, 46.0611495 ], + [ 6.9614899, 46.061145 ], + [ 6.9612870000000004, 46.0611478 ], + [ 6.9610845999999995, 46.061158 ], + [ 6.9608832, 46.0611756 ], + [ 6.9606834, 46.0612005 ], + [ 6.9604858, 46.0612327 ], + [ 6.9602909, 46.061272 ], + [ 6.9600991, 46.0613183 ], + [ 6.9599112, 46.0613716 ], + [ 6.9597275, 46.0614316 ], + [ 6.9595485, 46.0614983 ], + [ 6.9593748, 46.0615714 ], + [ 6.9592068, 46.0616507 ], + [ 6.9590451, 46.061736 ], + [ 6.9588899, 46.0618271 ], + [ 6.9587419, 46.0619237 ], + [ 6.9586013, 46.0620256 ], + [ 6.9584685, 46.0621325 ], + [ 6.958344, 46.062244 ], + [ 6.958228, 46.06236 ], + [ 6.9581209, 46.06248 ], + [ 6.9580229, 46.0626037 ], + [ 6.9579344, 46.0627309 ], + [ 6.9578556, 46.0628611 ], + [ 6.9577867, 46.062994 ], + [ 6.9577279, 46.0631292 ], + [ 6.9576793, 46.0632663 ], + [ 6.957641, 46.0634051 ], + [ 6.9576133, 46.0635451 ], + [ 6.9575962, 46.0636858 ], + [ 6.9575896, 46.0638271 ], + [ 6.9575937, 46.0639683 ], + [ 6.9576083, 46.0641092 ], + [ 6.9576336, 46.0642494 ], + [ 6.9576694, 46.0643885 ], + [ 6.9577155, 46.0645261 ], + [ 6.957772, 46.0646618 ], + [ 6.9578385, 46.0647952 ], + [ 6.9579151, 46.0649261 ], + [ 6.9580013, 46.065054 ], + [ 6.9580971, 46.0651786 ], + [ 6.9582021, 46.0652995 ], + [ 6.958316, 46.0654164 ], + [ 6.9584386, 46.065529 ], + [ 6.9585694, 46.065637 ], + [ 6.9587082, 46.0657401 ], + [ 6.9588546000000004, 46.065838 ], + [ 6.9590081, 46.0659304 ], + [ 6.9591684, 46.0660171 ], + [ 6.959335, 46.0660978 ], + [ 6.9595074, 46.0661724 ], + [ 6.9596852, 46.0662406 ], + [ 6.9598678, 46.0663022 ], + [ 6.9600549, 46.066356999999996 ], + [ 6.9602458, 46.066405 ], + [ 6.96044, 46.066446 ], + [ 6.9606371, 46.0664798 ], + [ 6.9608365, 46.0665064 ], + [ 6.9610375, 46.0665257 ], + [ 6.9612397999999995, 46.0665376 ], + [ 6.9614426, 46.0665422 ], + [ 6.9616456, 46.0665393 ], + [ 6.961848, 46.0665291 ], + [ 6.9620494, 46.0665115 ], + [ 6.9622492, 46.0664866 ], + [ 6.9624469, 46.0664545 ], + [ 6.9626418, 46.0664152 ], + [ 6.9628336, 46.0663688 ], + [ 6.9630216, 46.0663156 ], + [ 6.9632053, 46.0662555 ], + [ 6.9633842, 46.0661889 ], + [ 6.963558, 46.0661158 ], + [ 6.9637259, 46.0660364 ], + [ 6.9638877, 46.0659511 ], + [ 6.9640428, 46.06586 ], + [ 6.9641909, 46.0657634 ], + [ 6.9643315, 46.0656615 ], + [ 6.9644642999999995, 46.0655546 ], + [ 6.9645888, 46.0654431 ], + [ 6.9647048, 46.0653271 ], + [ 6.9648119, 46.0652071 ], + [ 6.9649098, 46.0650833 ], + [ 6.9649982999999995, 46.0649562 ], + [ 6.9650771, 46.064826 ], + [ 6.965146, 46.0646931 ], + [ 6.9652048, 46.0645579 ], + [ 6.9652534, 46.0644207 ], + [ 6.9652916, 46.0642819 ], + [ 6.9653193, 46.064142 ], + [ 6.9653364, 46.0640012 ], + [ 6.965343, 46.06386 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0026", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Châtelard", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Châtelard", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Châtelard", + "lang" : "it-CH" + }, + { + "text" : "Substation Châtelard", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5937713, 47.4845586 ], + [ 7.5937597, 47.4845597 ], + [ 7.5937483, 47.4845613 ], + [ 7.5937371, 47.4845634 ], + [ 7.5937261, 47.4845661 ], + [ 7.5937154, 47.4845693 ], + [ 7.593705, 47.484573 ], + [ 7.5936951, 47.4845771 ], + [ 7.5936855, 47.4845817 ], + [ 7.5936765, 47.4845868 ], + [ 7.5936679, 47.4845924 ], + [ 7.59366, 47.4845983 ], + [ 7.5936527, 47.4846046 ], + [ 7.593646, 47.4846112 ], + [ 7.59364, 47.4846181 ], + [ 7.5936348, 47.484625199999996 ], + [ 7.5936303, 47.4846326 ], + [ 7.5935548, 47.4847641 ], + [ 7.5935515, 47.4847708 ], + [ 7.5935491, 47.4847777 ], + [ 7.5935476, 47.4847846 ], + [ 7.593547, 47.4847917 ], + [ 7.5935473, 47.4847987 ], + [ 7.5935485, 47.4848057 ], + [ 7.5935506, 47.4848126 ], + [ 7.5935535, 47.4848193 ], + [ 7.5935573, 47.4848259 ], + [ 7.593562, 47.4848322 ], + [ 7.5935673999999995, 47.4848382 ], + [ 7.5935736, 47.4848439 ], + [ 7.5935805, 47.4848491 ], + [ 7.5935880000000004, 47.484854 ], + [ 7.5935962, 47.4848584 ], + [ 7.5936048, 47.4848622 ], + [ 7.593614, 47.4848656 ], + [ 7.5936334, 47.4848707 ], + [ 7.593708, 47.4848844 ], + [ 7.593709, 47.4848846 ], + [ 7.5939027, 47.4849184 ], + [ 7.5940948, 47.4849487 ], + [ 7.5942899, 47.4849745 ], + [ 7.5944853, 47.4849991 ], + [ 7.5946812999999995, 47.4850212 ], + [ 7.5948782999999995, 47.4850412 ], + [ 7.5950765, 47.4850576 ], + [ 7.5952741, 47.4850713 ], + [ 7.5954724, 47.4850782 ], + [ 7.5956559, 47.4850808 ], + [ 7.5958654, 47.4850802 ], + [ 7.596915, 47.4850817 ], + [ 7.5977713, 47.4850813 ], + [ 7.5979239, 47.4850812 ], + [ 7.5980254, 47.4850813 ], + [ 7.5984754, 47.4850812 ], + [ 7.5987359, 47.4850811 ], + [ 7.5987341, 47.4846337 ], + [ 7.5980336, 47.4846316 ], + [ 7.5967939, 47.4846305 ], + [ 7.5956137, 47.4846299 ], + [ 7.5947984, 47.4845784 ], + [ 7.5940715, 47.4844841 ], + [ 7.5940682, 47.4843991 ], + [ 7.5940612, 47.4844109 ], + [ 7.5940533, 47.4844224 ], + [ 7.5940445, 47.4844336 ], + [ 7.5940349, 47.4844445 ], + [ 7.5940246, 47.4844551 ], + [ 7.5940134, 47.4844652 ], + [ 7.5940015, 47.484475 ], + [ 7.5939889, 47.4844844 ], + [ 7.5939755, 47.4844933 ], + [ 7.5939616, 47.4845018 ], + [ 7.593947, 47.4845098 ], + [ 7.5939329, 47.4845167 ], + [ 7.5939182, 47.4845232 ], + [ 7.5939032, 47.4845292 ], + [ 7.5938877, 47.4845347 ], + [ 7.5938719, 47.4845397 ], + [ 7.5938558, 47.4845441 ], + [ 7.5938393, 47.4845481 ], + [ 7.5938226, 47.4845515 ], + [ 7.5938057, 47.4845544 ], + [ 7.5937886, 47.4845568 ], + [ 7.5937713, 47.4845586 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns022", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Fiechten", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Fiechten", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Fiechten", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Fiechten", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5604284, 47.4658622 ], + [ 7.5615635, 47.4660456 ], + [ 7.5619765999999995, 47.465909 ], + [ 7.5625781, 47.4655159 ], + [ 7.5632155, 47.4652989 ], + [ 7.5640771, 47.4649616 ], + [ 7.564617, 47.4646825 ], + [ 7.5651595, 47.4642974 ], + [ 7.5656191, 47.4638323 ], + [ 7.5658788, 47.463776 ], + [ 7.5660903, 47.4632951 ], + [ 7.5661015, 47.4630251 ], + [ 7.5659832, 47.4629692 ], + [ 7.5661365, 47.4628328 ], + [ 7.5665851, 47.4627362 ], + [ 7.5673525999999995, 47.4626232 ], + [ 7.5676947, 47.4624226 ], + [ 7.5675645, 47.4623106 ], + [ 7.5674814, 47.4621665 ], + [ 7.5668315, 47.462047 ], + [ 7.56617, 47.4620237 ], + [ 7.5661345, 47.4620077 ], + [ 7.5658978999999995, 47.4618478 ], + [ 7.5654961, 47.4617521 ], + [ 7.5646681000000005, 47.4612564 ], + [ 7.5646207, 47.4612003 ], + [ 7.5645732, 47.4611123 ], + [ 7.5642434, 47.4608987 ], + [ 7.5639951, 47.4607949 ], + [ 7.5638414, 47.460739 ], + [ 7.5636525, 47.4607712 ], + [ 7.5634165, 47.4608516 ], + [ 7.5631569, 47.460972 ], + [ 7.5630393, 47.4612124 ], + [ 7.5624258, 47.4615175 ], + [ 7.5618112, 47.4613579 ], + [ 7.5615155, 47.461174 ], + [ 7.5613972, 47.461102 ], + [ 7.5606648, 47.4610547 ], + [ 7.5605823999999995, 47.461167 ], + [ 7.5606181, 47.4612871 ], + [ 7.5606891, 47.4613431 ], + [ 7.5603703, 47.4614075 ], + [ 7.5601925, 47.4611113 ], + [ 7.5600975, 47.4608951 ], + [ 7.5595898, 47.4609758 ], + [ 7.5594473, 47.4606475 ], + [ 7.5591876, 47.4607359 ], + [ 7.559081, 47.4606078 ], + [ 7.5587502, 47.4605521 ], + [ 7.5586557, 47.4605682 ], + [ 7.5584669, 47.4606325 ], + [ 7.5577427, 47.4605451 ], + [ 7.5574829, 47.4605774 ], + [ 7.5568573, 47.4607623 ], + [ 7.5566215, 47.4609387 ], + [ 7.556409, 47.461011 ], + [ 7.5561024, 47.4612356 ], + [ 7.5564617, 47.4614144 ], + [ 7.556516, 47.4614393 ], + [ 7.5565271, 47.4614469 ], + [ 7.5567291, 47.4615474 ], + [ 7.5568523, 47.4616708 ], + [ 7.5572207, 47.4618899 ], + [ 7.5576114, 47.4621506 ], + [ 7.5578382, 47.4623302 ], + [ 7.558035, 47.462534 ], + [ 7.5582684, 47.4627222 ], + [ 7.5585461, 47.4629292 ], + [ 7.5588766, 47.4632144 ], + [ 7.5592068999999995, 47.4635166 ], + [ 7.5593475, 47.463647 ], + [ 7.5593534, 47.4636552 ], + [ 7.559425, 47.4637126 ], + [ 7.5603359, 47.4643205 ], + [ 7.5603933, 47.4645338 ], + [ 7.5605235, 47.4646138 ], + [ 7.560553, 47.4647554 ], + [ 7.5605785, 47.4647765 ], + [ 7.5606200999999995, 47.464881 ], + [ 7.5605978, 47.4649697 ], + [ 7.5606071, 47.4650142 ], + [ 7.5605675, 47.4650897 ], + [ 7.5605319, 47.4652312 ], + [ 7.56058, 47.4655779 ], + [ 7.5604395, 47.4658517 ], + [ 7.5604284, 47.4658622 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr109", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Bielgrabe", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Bielgrabe", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Bielgrabe", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Bielgrabe", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7016569, 47.4982774 ], + [ 7.7016609, 47.4982887 ], + [ 7.7018167, 47.4987318 ], + [ 7.7019511, 47.498875 ], + [ 7.7021942, 47.4989729 ], + [ 7.7024921, 47.4990631 ], + [ 7.7025557, 47.4992553 ], + [ 7.702604, 47.4992443 ], + [ 7.7026076, 47.4992435 ], + [ 7.7027008, 47.4992224 ], + [ 7.7027139, 47.4988949 ], + [ 7.7025212, 47.4988424 ], + [ 7.7024087, 47.4983882 ], + [ 7.7023447, 47.4983739 ], + [ 7.702263, 47.4983568 ], + [ 7.7022106, 47.4983464 ], + [ 7.70214, 47.498334 ], + [ 7.7020679, 47.4983223 ], + [ 7.7020114, 47.4983137 ], + [ 7.7019523, 47.4983059 ], + [ 7.7019041, 47.4982998 ], + [ 7.7018558, 47.4982945 ], + [ 7.7018096, 47.4982895 ], + [ 7.7017569, 47.4982849 ], + [ 7.7017079, 47.4982806 ], + [ 7.7016569, 47.4982774 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr101", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Rüti", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Rüti", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Rüti", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Rüti", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8749403000000004, 47.406994 ], + [ 7.8749155, 47.4070279 ], + [ 7.8748963, 47.4070664 ], + [ 7.8748464, 47.4071928 ], + [ 7.8747808, 47.4073982 ], + [ 7.8747524, 47.407439 ], + [ 7.8745617, 47.4076076 ], + [ 7.8744802, 47.4076903 ], + [ 7.8744473, 47.4077375 ], + [ 7.8744157999999995, 47.4077946 ], + [ 7.8744004, 47.4078376 ], + [ 7.8743935, 47.4078685 ], + [ 7.8743932, 47.4078977 ], + [ 7.8743983, 47.4079287 ], + [ 7.8744485, 47.4081033 ], + [ 7.8744481, 47.4081391 ], + [ 7.8744372, 47.4081739 ], + [ 7.8743753, 47.408284 ], + [ 7.8741399, 47.4087729 ], + [ 7.8741328, 47.4087861 ], + [ 7.8741285, 47.408795 ], + [ 7.8741242, 47.408806 ], + [ 7.8741209, 47.4088171 ], + [ 7.8741187, 47.4088284 ], + [ 7.8741176, 47.4088397 ], + [ 7.8741175, 47.4088511 ], + [ 7.8741184, 47.4088624 ], + [ 7.8741204, 47.4088737 ], + [ 7.8741235, 47.4088849 ], + [ 7.8741327, 47.4089067 ], + [ 7.8741459, 47.4089276 ], + [ 7.8741629, 47.4089471 ], + [ 7.8743136, 47.4091176 ], + [ 7.8743533, 47.4091625 ], + [ 7.874482, 47.4091732 ], + [ 7.8746851, 47.4091893 ], + [ 7.8747007, 47.409192 ], + [ 7.8747328, 47.4091976 ], + [ 7.8748024, 47.4092166 ], + [ 7.8753487, 47.4093825 ], + [ 7.8760593, 47.4096129 ], + [ 7.8763087, 47.4096865 ], + [ 7.8765459, 47.4097833 ], + [ 7.876854, 47.4099494 ], + [ 7.8769576, 47.4100046 ], + [ 7.8770446, 47.4100411 ], + [ 7.8771007, 47.4100628 ], + [ 7.8771207, 47.4100672 ], + [ 7.8771586, 47.4100747 ], + [ 7.8773493, 47.4101052 ], + [ 7.8774537, 47.4101356 ], + [ 7.8775137, 47.4101579 ], + [ 7.8775744, 47.4101891 ], + [ 7.8776325, 47.4102229 ], + [ 7.8776851, 47.41027 ], + [ 7.8777216, 47.4103104 ], + [ 7.8777603, 47.4103556 ], + [ 7.877791, 47.4104166 ], + [ 7.8778254, 47.4105094 ], + [ 7.8778269, 47.4105125 ], + [ 7.877831, 47.4105189 ], + [ 7.877836, 47.410525 ], + [ 7.8778419, 47.4105308 ], + [ 7.8778486, 47.4105361 ], + [ 7.8778561, 47.4105409 ], + [ 7.8778643, 47.4105451 ], + [ 7.8778731, 47.4105488 ], + [ 7.8778824, 47.4105518 ], + [ 7.8778921, 47.4105542 ], + [ 7.8779021, 47.4105558 ], + [ 7.8779123, 47.4105568 ], + [ 7.8779226, 47.410557 ], + [ 7.8779329, 47.4105566 ], + [ 7.8779430999999995, 47.4105554 ], + [ 7.877953, 47.4105535 ], + [ 7.8779626, 47.4105509 ], + [ 7.8779717, 47.4105477 ], + [ 7.8779803, 47.4105439 ], + [ 7.8782792, 47.4103861 ], + [ 7.8784319, 47.4103363 ], + [ 7.878553, 47.4103035 ], + [ 7.878652, 47.4102845 ], + [ 7.8787105, 47.4100415 ], + [ 7.8787613, 47.4098229 ], + [ 7.8788061, 47.4096305 ], + [ 7.8788181, 47.4095789 ], + [ 7.8788249, 47.4095455 ], + [ 7.8788225, 47.4095149 ], + [ 7.8788149, 47.4094876 ], + [ 7.878803, 47.409463 ], + [ 7.8787872, 47.4094401 ], + [ 7.878569, 47.4092061 ], + [ 7.8786124, 47.409161 ], + [ 7.8786828, 47.4090765 ], + [ 7.8787499, 47.4090129 ], + [ 7.8786982, 47.4089979 ], + [ 7.8786488, 47.4089838 ], + [ 7.8785997, 47.408969 ], + [ 7.8785511, 47.4089536 ], + [ 7.878503, 47.4089376 ], + [ 7.8784553, 47.4089208 ], + [ 7.8784081, 47.4089035 ], + [ 7.8783701, 47.4088885 ], + [ 7.8783325, 47.4088722 ], + [ 7.8782556, 47.4088416 ], + [ 7.8781643, 47.4088093 ], + [ 7.8781278, 47.4087975 ], + [ 7.878087, 47.4087852 ], + [ 7.8780459, 47.4087736 ], + [ 7.8780044, 47.4087626 ], + [ 7.8779625, 47.4087523 ], + [ 7.8779202, 47.4087427 ], + [ 7.8779088, 47.4087398 ], + [ 7.8778811, 47.4087334 ], + [ 7.877853, 47.4087277 ], + [ 7.8778246, 47.4087226 ], + [ 7.8777959, 47.4087183 ], + [ 7.8777671, 47.4087146 ], + [ 7.8777306, 47.4087102 ], + [ 7.8776943, 47.408705 ], + [ 7.8776582, 47.4086991 ], + [ 7.8776223, 47.4086925 ], + [ 7.8775868, 47.4086852 ], + [ 7.8775516, 47.4086773 ], + [ 7.8775167, 47.4086686 ], + [ 7.877509, 47.4086666 ], + [ 7.8774892, 47.4086611 ], + [ 7.8774697, 47.408655 ], + [ 7.8774508, 47.4086482 ], + [ 7.8774323, 47.4086408 ], + [ 7.8774145, 47.4086328 ], + [ 7.8773972, 47.4086242 ], + [ 7.8773805, 47.408615 ], + [ 7.8773646, 47.4086053 ], + [ 7.8773494, 47.4085951 ], + [ 7.8773349, 47.4085843 ], + [ 7.8773304, 47.4085808 ], + [ 7.8770223999999995, 47.4083528 ], + [ 7.8769749000000004, 47.4083176 ], + [ 7.8769287, 47.4082836 ], + [ 7.8769024, 47.4082633 ], + [ 7.8768768, 47.4082424 ], + [ 7.8768521, 47.4082211 ], + [ 7.8768283, 47.4081993 ], + [ 7.8768053, 47.4081772 ], + [ 7.8767831, 47.4081546 ], + [ 7.8767619, 47.4081316 ], + [ 7.8767415, 47.4081082 ], + [ 7.8767221, 47.4080845 ], + [ 7.8767076, 47.4080659 ], + [ 7.8767005, 47.4080564 ], + [ 7.8766944, 47.4080465 ], + [ 7.8766893, 47.4080365 ], + [ 7.8766850999999996, 47.4080262 ], + [ 7.876682, 47.4080158 ], + [ 7.8766799, 47.4080052 ], + [ 7.8766789, 47.4079946 ], + [ 7.8766789, 47.4079839 ], + [ 7.87668, 47.4079733 ], + [ 7.8766821, 47.4079627 ], + [ 7.876683, 47.4079595 ], + [ 7.8766877, 47.407951 ], + [ 7.8766934, 47.4079428 ], + [ 7.8767001, 47.4079349 ], + [ 7.8767076, 47.4079274 ], + [ 7.8767159, 47.4079203 ], + [ 7.8767251, 47.4079137 ], + [ 7.8767351, 47.4079076 ], + [ 7.8767457, 47.407902 ], + [ 7.8767569, 47.4078971 ], + [ 7.8767639, 47.4078944 ], + [ 7.8767769, 47.4078901 ], + [ 7.8767904, 47.4078864 ], + [ 7.8768042, 47.4078835 ], + [ 7.8768183, 47.4078812 ], + [ 7.8768326, 47.4078796 ], + [ 7.8768471, 47.4078787 ], + [ 7.8768616, 47.4078786 ], + [ 7.8768761, 47.4078791 ], + [ 7.8768905, 47.4078804 ], + [ 7.8769047, 47.4078824 ], + [ 7.8769208, 47.4078854 ], + [ 7.8769428999999995, 47.4078889 ], + [ 7.8769653, 47.4078917 ], + [ 7.8769879, 47.4078938 ], + [ 7.8770106, 47.4078952 ], + [ 7.8770333, 47.4078958 ], + [ 7.8770561, 47.4078958 ], + [ 7.8770788, 47.407895 ], + [ 7.8771015, 47.4078936 ], + [ 7.877124, 47.4078914 ], + [ 7.8771464, 47.4078884 ], + [ 7.8771685, 47.4078848 ], + [ 7.8771963, 47.407879199999996 ], + [ 7.8772229, 47.407873 ], + [ 7.8772492, 47.4078661 ], + [ 7.877275, 47.4078586 ], + [ 7.8773004, 47.4078504 ], + [ 7.8773254, 47.4078416 ], + [ 7.8773498, 47.4078321 ], + [ 7.8773738, 47.4078221 ], + [ 7.8773916, 47.4078142 ], + [ 7.8774048, 47.4078089 ], + [ 7.8774174, 47.4078042 ], + [ 7.8774366, 47.4077977 ], + [ 7.8774562, 47.407792 ], + [ 7.8774761, 47.4077869 ], + [ 7.8774965, 47.4077825 ], + [ 7.8775171, 47.4077788 ], + [ 7.8775379999999995, 47.4077758 ], + [ 7.877559, 47.4077734 ], + [ 7.8775802, 47.4077718 ], + [ 7.8776015, 47.407771 ], + [ 7.878205, 47.4069808 ], + [ 7.8786149, 47.4071329 ], + [ 7.8791164, 47.407534 ], + [ 7.8805955999999995, 47.4074706 ], + [ 7.8814373, 47.4073128 ], + [ 7.8825815, 47.4074015 ], + [ 7.8833391, 47.407481 ], + [ 7.884008, 47.4074017 ], + [ 7.8839818, 47.4072393 ], + [ 7.8841015, 47.4072205 ], + [ 7.8838446, 47.4070658 ], + [ 7.8834851, 47.4063445 ], + [ 7.8832995, 47.4062713 ], + [ 7.8832749, 47.4061014 ], + [ 7.8829547, 47.4057842 ], + [ 7.8830905, 47.4055496 ], + [ 7.8830988, 47.4054356 ], + [ 7.8830819, 47.4050784 ], + [ 7.8830749, 47.4037927 ], + [ 7.8825330000000005, 47.4034922 ], + [ 7.8817696, 47.4032432 ], + [ 7.8815200999999995, 47.4031989 ], + [ 7.8809577, 47.4031297 ], + [ 7.8803538, 47.4030849 ], + [ 7.879746, 47.4038654 ], + [ 7.8798727, 47.404442 ], + [ 7.8795721, 47.4044411 ], + [ 7.8795359, 47.4044415 ], + [ 7.8794997, 47.4044412 ], + [ 7.8794636, 47.4044401 ], + [ 7.8794275, 47.4044383 ], + [ 7.8793915, 47.4044358 ], + [ 7.8793556, 47.4044326 ], + [ 7.8793199, 47.4044286 ], + [ 7.8792843999999995, 47.404424 ], + [ 7.8792491, 47.4044186 ], + [ 7.879214, 47.4044126 ], + [ 7.8791877, 47.4044076 ], + [ 7.8790917, 47.4043904 ], + [ 7.8790593, 47.4043853 ], + [ 7.8790267, 47.4043809 ], + [ 7.8789939, 47.4043773 ], + [ 7.8789609, 47.4043743 ], + [ 7.8789278, 47.404372 ], + [ 7.8788944999999995, 47.4043705 ], + [ 7.8788613, 47.4043697 ], + [ 7.878828, 47.4043696 ], + [ 7.8787948, 47.4043702 ], + [ 7.8785901, 47.4043817 ], + [ 7.8784986, 47.4043827 ], + [ 7.8783379, 47.4042887 ], + [ 7.8780439, 47.4041536 ], + [ 7.8776720000000005, 47.4039825 ], + [ 7.8774546999999995, 47.4038958 ], + [ 7.8771295, 47.4037816 ], + [ 7.8767392, 47.4036572 ], + [ 7.8761167, 47.403451 ], + [ 7.8757597, 47.4033349 ], + [ 7.8756848999999995, 47.4033743 ], + [ 7.8756407, 47.4033972 ], + [ 7.8754721, 47.403459 ], + [ 7.8753503, 47.4034914 ], + [ 7.8752703, 47.4035219 ], + [ 7.875182, 47.403579 ], + [ 7.8751654, 47.4036 ], + [ 7.8751614, 47.4036195 ], + [ 7.8751808, 47.4040123 ], + [ 7.8751726, 47.4042366 ], + [ 7.8751379, 47.4044132 ], + [ 7.8751359999999995, 47.4046107 ], + [ 7.8750873, 47.4048219 ], + [ 7.8750898, 47.404869 ], + [ 7.8751161, 47.4049425 ], + [ 7.8751334, 47.4049667 ], + [ 7.8752289, 47.4050655 ], + [ 7.8752382999999995, 47.4050864 ], + [ 7.8752387, 47.4051205 ], + [ 7.8752233, 47.4052693 ], + [ 7.875194, 47.4054131 ], + [ 7.8751922, 47.4054252 ], + [ 7.8751915, 47.4054374 ], + [ 7.8751919, 47.4054495 ], + [ 7.8751933, 47.4054617 ], + [ 7.8751958, 47.4054737 ], + [ 7.8752343, 47.4056546 ], + [ 7.8752448, 47.4057823 ], + [ 7.8752451, 47.4057984 ], + [ 7.8752442, 47.4058144 ], + [ 7.8752423, 47.4058305 ], + [ 7.8752393, 47.4058464 ], + [ 7.8752353, 47.4058623 ], + [ 7.8752303, 47.405878 ], + [ 7.8752242, 47.4058935 ], + [ 7.8752171, 47.4059089 ], + [ 7.875209, 47.405924 ], + [ 7.8752, 47.4059389 ], + [ 7.8751899, 47.4059534 ], + [ 7.8751789, 47.4059677 ], + [ 7.875167, 47.4059816 ], + [ 7.8751541, 47.4059951 ], + [ 7.8749358, 47.4062071 ], + [ 7.8749296, 47.4062124 ], + [ 7.8749204, 47.4062211 ], + [ 7.8749120999999995, 47.4062303 ], + [ 7.8749047999999995, 47.4062399 ], + [ 7.8748983, 47.4062497 ], + [ 7.8748929, 47.4062598 ], + [ 7.8748885, 47.4062702 ], + [ 7.8748848, 47.4062817 ], + [ 7.8748825, 47.4062924 ], + [ 7.8748812, 47.4063031 ], + [ 7.8748811, 47.4063139 ], + [ 7.8748819999999995, 47.4063246 ], + [ 7.8748839, 47.4063353 ], + [ 7.8748869, 47.4063459 ], + [ 7.8748909, 47.4063564 ], + [ 7.874896, 47.4063666 ], + [ 7.874902, 47.4063765 ], + [ 7.875073, 47.4066654 ], + [ 7.8750792, 47.4067279 ], + [ 7.875059, 47.4068201 ], + [ 7.8750452, 47.4068623 ], + [ 7.8749403000000004, 47.406994 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns287", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Wisenberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Wisenberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Wisenberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Wisenberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.4228011, 46.7651171 ], + [ 9.4227906, 46.764976 ], + [ 9.4227693, 46.7648355 ], + [ 9.4227373, 46.7646959 ], + [ 9.4226947, 46.7645577 ], + [ 9.4226417, 46.7644212 ], + [ 9.4225783, 46.7642868 ], + [ 9.4225048, 46.7641548 ], + [ 9.4224213, 46.7640257 ], + [ 9.4223282, 46.7638998 ], + [ 9.4222255, 46.7637774 ], + [ 9.4221137, 46.7636588 ], + [ 9.421993, 46.7635444 ], + [ 9.4218638, 46.7634345 ], + [ 9.4217263, 46.7633295 ], + [ 9.4215811, 46.7632295 ], + [ 9.4214284, 46.7631348 ], + [ 9.4212687, 46.7630458 ], + [ 9.4211025, 46.7629627 ], + [ 9.4209302, 46.7628856 ], + [ 9.4207522, 46.7628149 ], + [ 9.4205691, 46.7627506 ], + [ 9.4203814, 46.762693 ], + [ 9.4201895, 46.7626423 ], + [ 9.419993999999999, 46.7625985 ], + [ 9.4197955, 46.7625618 ], + [ 9.4195944, 46.7625323 ], + [ 9.4193914, 46.7625101 ], + [ 9.4191869, 46.7624952 ], + [ 9.4189816, 46.7624876 ], + [ 9.418776, 46.7624875 ], + [ 9.4185707, 46.7624948 ], + [ 9.4183662, 46.7625094 ], + [ 9.4181631, 46.7625314 ], + [ 9.417962, 46.7625606 ], + [ 9.4177633, 46.7625971 ], + [ 9.4175678, 46.7626406 ], + [ 9.4173757, 46.7626911 ], + [ 9.4171878, 46.7627484 ], + [ 9.4170046, 46.7628125 ], + [ 9.4168264, 46.762883 ], + [ 9.4166539, 46.7629598 ], + [ 9.4164874, 46.7630427 ], + [ 9.4163275, 46.7631315 ], + [ 9.4161746, 46.763226 ], + [ 9.4160291, 46.7633258 ], + [ 9.4158914, 46.7634307 ], + [ 9.4157618, 46.7635404 ], + [ 9.4156408, 46.7636546 ], + [ 9.4155286, 46.763773 ], + [ 9.4154257, 46.7638953 ], + [ 9.4153321, 46.7640212 ], + [ 9.4152483, 46.7641502 ], + [ 9.4151745, 46.764282 ], + [ 9.4151107, 46.7644163 ], + [ 9.4150573, 46.7645528 ], + [ 9.4150144, 46.7646909 ], + [ 9.414982, 46.7648305 ], + [ 9.4149603, 46.764971 ], + [ 9.4149494, 46.765112 ], + [ 9.4149492, 46.7652533 ], + [ 9.4149597, 46.7653944 ], + [ 9.414981, 46.7655349 ], + [ 9.415013, 46.7656745 ], + [ 9.4150555, 46.7658127 ], + [ 9.4151085, 46.7659492 ], + [ 9.4151719, 46.7660837 ], + [ 9.4152454, 46.7662156 ], + [ 9.4153288, 46.7663447 ], + [ 9.415422, 46.7664707 ], + [ 9.4155246, 46.7665931 ], + [ 9.4156364, 46.7667117 ], + [ 9.4157571, 46.7668261 ], + [ 9.4158864, 46.7669359 ], + [ 9.4160238, 46.767041 ], + [ 9.4161691, 46.767141 ], + [ 9.4163217, 46.7672357 ], + [ 9.4164814, 46.7673247 ], + [ 9.4166476, 46.7674078 ], + [ 9.41682, 46.7674849 ], + [ 9.4169979, 46.7675557 ], + [ 9.417181, 46.7676199 ], + [ 9.4173688, 46.7676775 ], + [ 9.4175607, 46.7677283 ], + [ 9.4177562, 46.767772 ], + [ 9.4179547, 46.7678087 ], + [ 9.4181558, 46.7678382 ], + [ 9.4183589, 46.7678605 ], + [ 9.4185633, 46.7678754 ], + [ 9.4187687, 46.7678829 ], + [ 9.4189743, 46.767883 ], + [ 9.4191796, 46.7678758 ], + [ 9.4193842, 46.7678611 ], + [ 9.4195873, 46.7678392 ], + [ 9.4197884, 46.7678099 ], + [ 9.4199871, 46.7677735 ], + [ 9.4201827, 46.7677299 ], + [ 9.4203747, 46.7676794 ], + [ 9.4205626, 46.7676221 ], + [ 9.4207459, 46.7675581 ], + [ 9.4209241, 46.7674875 ], + [ 9.4210966, 46.7674107 ], + [ 9.421263100000001, 46.7673278 ], + [ 9.421423, 46.7672389 ], + [ 9.4215759, 46.7671445 ], + [ 9.4217214, 46.7670447 ], + [ 9.4218592, 46.7669398 ], + [ 9.4219887, 46.7668301 ], + [ 9.4221097, 46.7667158 ], + [ 9.422221799999999, 46.7665974 ], + [ 9.4223248, 46.7664751 ], + [ 9.4224183, 46.7663493 ], + [ 9.422502099999999, 46.7662203 ], + [ 9.422576, 46.7660884 ], + [ 9.4226397, 46.7659541 ], + [ 9.4226931, 46.7658177 ], + [ 9.422736, 46.7656795 ], + [ 9.4227684, 46.76554 ], + [ 9.42279, 46.7653995 ], + [ 9.422801, 46.7652584 ], + [ 9.4228011, 46.7651171 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0101", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Rothenbrunnen", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Rothenbrunnen", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Rothenbrunnen", + "lang" : "it-CH" + }, + { + "text" : "Substation Rothenbrunnen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7936833, 47.4084272 ], + [ 7.7938879, 47.4083339 ], + [ 7.7946371, 47.4080517 ], + [ 7.7948454, 47.4079734 ], + [ 7.7950642, 47.4079094 ], + [ 7.7952335999999995, 47.4078844 ], + [ 7.7952968, 47.4078751 ], + [ 7.7955404999999995, 47.40786 ], + [ 7.7957557, 47.4078467 ], + [ 7.7959934, 47.4078161 ], + [ 7.7961932, 47.4077515 ], + [ 7.7961704, 47.4076928 ], + [ 7.7961304, 47.4076962 ], + [ 7.7961266, 47.4076756 ], + [ 7.7961672, 47.4076722 ], + [ 7.7961015, 47.4075834 ], + [ 7.7959291, 47.4075628 ], + [ 7.7952574, 47.40753 ], + [ 7.7948734, 47.4074243 ], + [ 7.7944937, 47.4073474 ], + [ 7.7943072, 47.4072317 ], + [ 7.7942614, 47.4070695 ], + [ 7.7940943, 47.4070717 ], + [ 7.7940766, 47.4070897 ], + [ 7.7940575, 47.4071071 ], + [ 7.7940371, 47.4071237 ], + [ 7.7940155, 47.4071396 ], + [ 7.7939926, 47.4071547 ], + [ 7.7939687, 47.407169 ], + [ 7.7939436, 47.4071824 ], + [ 7.7939176, 47.4071949 ], + [ 7.7937045, 47.4072852 ], + [ 7.7935465, 47.4073649 ], + [ 7.7935224, 47.4073763 ], + [ 7.7934993, 47.4073887 ], + [ 7.7934773, 47.407401899999996 ], + [ 7.7934564, 47.407416 ], + [ 7.7934369, 47.4074309 ], + [ 7.7934186, 47.4074465 ], + [ 7.7934017, 47.4074629 ], + [ 7.7933863, 47.4074798 ], + [ 7.7933723, 47.4074974 ], + [ 7.7933599000000005, 47.4075155 ], + [ 7.7933316, 47.4074985 ], + [ 7.7932466, 47.4074774 ], + [ 7.7932109, 47.4074755 ], + [ 7.7931542, 47.4074885 ], + [ 7.7931078, 47.4075513 ], + [ 7.7931442, 47.4076102 ], + [ 7.7931275, 47.4077472 ], + [ 7.7931442, 47.4077718 ], + [ 7.7930171999999995, 47.407855 ], + [ 7.7929689, 47.4078898 ], + [ 7.7929239, 47.407861 ], + [ 7.7928813, 47.4078286 ], + [ 7.7928470999999995, 47.4078817 ], + [ 7.7928572, 47.4079243 ], + [ 7.7928788, 47.4080484 ], + [ 7.7927403, 47.4081959 ], + [ 7.7925331, 47.4083384 ], + [ 7.7924226, 47.4084269 ], + [ 7.7923821, 47.4084401 ], + [ 7.7922451, 47.4085189 ], + [ 7.7921594, 47.4085002 ], + [ 7.7919028, 47.4085404 ], + [ 7.791781, 47.408598 ], + [ 7.7916892, 47.4086605 ], + [ 7.791594, 47.4087867 ], + [ 7.791612, 47.4087922 ], + [ 7.7919344, 47.4088899 ], + [ 7.7919487, 47.4090489 ], + [ 7.7920655, 47.4092751 ], + [ 7.7925998, 47.409305 ], + [ 7.7925854, 47.4090732 ], + [ 7.7924413999999995, 47.4086335 ], + [ 7.792954, 47.4083777 ], + [ 7.7931736, 47.4082184 ], + [ 7.7934819, 47.4081701 ], + [ 7.7937464, 47.4082898 ], + [ 7.7936789, 47.4083631 ], + [ 7.7936833, 47.4084272 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr080", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Wänge", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Wänge", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Wänge", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Wänge", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.548445, 47.444218 ], + [ 7.5488276, 47.4442639 ], + [ 7.5488524, 47.4441616 ], + [ 7.5488464, 47.4441609 ], + [ 7.5487849, 47.4441536 ], + [ 7.5487269999999995, 47.4441468 ], + [ 7.5486813, 47.4441414 ], + [ 7.5486059999999995, 47.4441325 ], + [ 7.5486106, 47.4441144 ], + [ 7.5485489, 47.4441074 ], + [ 7.5485443, 47.4441252 ], + [ 7.548471, 47.4441166 ], + [ 7.5484683, 47.4441271 ], + [ 7.548445, 47.444218 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns173", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Mausohrkolonie, Baslerstrasse 30", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Mausohrkolonie, Baslerstrasse 30", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Mausohrkolonie, Baslerstrasse 30", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Mausohrkolonie, Baslerstrasse 30", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.9157473, 47.4210001 ], + [ 7.915802, 47.4210733 ], + [ 7.9159986, 47.4213369 ], + [ 7.9162263, 47.4216082 ], + [ 7.9166134, 47.4214785 ], + [ 7.9166548, 47.4214645 ], + [ 7.9171593, 47.4213036 ], + [ 7.9173158, 47.4214826 ], + [ 7.9175063, 47.4217362 ], + [ 7.9176365, 47.4219159 ], + [ 7.9177088, 47.4220188 ], + [ 7.9178635, 47.4222133 ], + [ 7.9179693, 47.422344 ], + [ 7.918241, 47.4225893 ], + [ 7.9186031, 47.4228385 ], + [ 7.9187273, 47.4228958 ], + [ 7.9189605, 47.422998 ], + [ 7.9191917, 47.4230938 ], + [ 7.9194835999999995, 47.4231721 ], + [ 7.9196995, 47.423017 ], + [ 7.9196739, 47.4229364 ], + [ 7.9196314999999995, 47.4228816 ], + [ 7.9195768, 47.4228314 ], + [ 7.919521, 47.4227879 ], + [ 7.9193325, 47.4226591 ], + [ 7.9190764, 47.4225019 ], + [ 7.9189378999999995, 47.4224417 ], + [ 7.9189777, 47.4223939 ], + [ 7.9189059, 47.422357 ], + [ 7.9188392, 47.4223297 ], + [ 7.9187743, 47.4223086 ], + [ 7.9187688, 47.4223141 ], + [ 7.918733, 47.4223025 ], + [ 7.9186016, 47.4222123 ], + [ 7.9184701, 47.4221126 ], + [ 7.9183212, 47.4219995 ], + [ 7.9183334, 47.4219877 ], + [ 7.9183799, 47.4219457 ], + [ 7.9184218, 47.4219165 ], + [ 7.9183777, 47.4218797 ], + [ 7.9183612, 47.4218834 ], + [ 7.9183430999999995, 47.421814 ], + [ 7.9181836, 47.4216307 ], + [ 7.9179513, 47.4214119 ], + [ 7.9177026999999995, 47.421199 ], + [ 7.9173116, 47.4209263 ], + [ 7.9172346000000005, 47.420843 ], + [ 7.9171571, 47.4207805 ], + [ 7.9169905, 47.4206781 ], + [ 7.9169457, 47.4206077 ], + [ 7.9169407, 47.4205232 ], + [ 7.9169233, 47.4204829 ], + [ 7.9168769, 47.4204555 ], + [ 7.9168041, 47.420435 ], + [ 7.9164693, 47.4204104 ], + [ 7.9162140999999995, 47.4202497 ], + [ 7.9161476, 47.4202401 ], + [ 7.9160955, 47.4201851 ], + [ 7.9161295, 47.4201056 ], + [ 7.9166728, 47.4201064 ], + [ 7.9172231, 47.4201481 ], + [ 7.9178378, 47.4201963 ], + [ 7.9180147, 47.420216 ], + [ 7.9180184, 47.4199271 ], + [ 7.9173511, 47.4198705 ], + [ 7.9171554, 47.4196102 ], + [ 7.9171057, 47.4194846 ], + [ 7.9169725, 47.4191478 ], + [ 7.9170638, 47.4189407 ], + [ 7.9174021, 47.4190547 ], + [ 7.9174759, 47.4186716 ], + [ 7.917438, 47.418275 ], + [ 7.9178607, 47.4179746 ], + [ 7.9178817, 47.4177835 ], + [ 7.9179337, 47.4173234 ], + [ 7.9176813, 47.4173269 ], + [ 7.917391, 47.4169161 ], + [ 7.9174299, 47.4167754 ], + [ 7.9174572, 47.4166773 ], + [ 7.9174599, 47.4166677 ], + [ 7.9174197, 47.416663 ], + [ 7.9171351, 47.4166441 ], + [ 7.9170119, 47.4166195 ], + [ 7.9170044, 47.4166324 ], + [ 7.9168646, 47.4168698 ], + [ 7.9167219, 47.4171123 ], + [ 7.9166651, 47.4172053 ], + [ 7.9166283, 47.4171941 ], + [ 7.9165692, 47.4174341 ], + [ 7.9165434, 47.4175563 ], + [ 7.9164396, 47.4175862 ], + [ 7.9163023, 47.4176545 ], + [ 7.9161892, 47.41768 ], + [ 7.9160824, 47.417698 ], + [ 7.9157779999999995, 47.4178087 ], + [ 7.9156279, 47.4179646 ], + [ 7.9154414, 47.4180405 ], + [ 7.9152024999999995, 47.418039 ], + [ 7.9150089999999995, 47.4179997 ], + [ 7.9148222, 47.4180657 ], + [ 7.9146738, 47.4181181 ], + [ 7.9145636, 47.4181856 ], + [ 7.9145798, 47.4183352 ], + [ 7.91454, 47.4184239 ], + [ 7.9145128, 47.4184483 ], + [ 7.9143426, 47.4186006 ], + [ 7.9143557, 47.418755 ], + [ 7.9142453, 47.4187982 ], + [ 7.9143106, 47.4188896 ], + [ 7.9142928, 47.4189133 ], + [ 7.9141442, 47.4189314 ], + [ 7.9139789, 47.4190397 ], + [ 7.9135286, 47.4192551 ], + [ 7.9131417, 47.4194336 ], + [ 7.9127082, 47.4193771 ], + [ 7.9126511, 47.4196382 ], + [ 7.9126077, 47.4198234 ], + [ 7.9128007, 47.4202621 ], + [ 7.9127944, 47.4202625 ], + [ 7.9124193, 47.4203001 ], + [ 7.9129091, 47.4208752 ], + [ 7.913278, 47.4212088 ], + [ 7.9139284, 47.4209877 ], + [ 7.9141117, 47.4209018 ], + [ 7.9147996, 47.4208392 ], + [ 7.9157473, 47.4210001 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns340", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Zigflue", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Zigflue", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Zigflue", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Zigflue", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.0434461, 47.1091698 ], + [ 9.0486881, 47.1198926 ], + [ 9.070287, 47.125106 ], + [ 9.1215668, 47.1126105 ], + [ 9.1282858, 47.1027952 ], + [ 9.0981954, 47.0728841 ], + [ 9.0894589, 47.0571754 ], + [ 9.1080757, 47.0405915 ], + [ 9.079615, 47.0280464 ], + [ 9.0550354, 47.0274357 ], + [ 9.021789, 47.0362964 ], + [ 9.0024382, 47.052636 ], + [ 9.0355887, 47.0695735 ], + [ 9.0402844, 47.0857023 ], + [ 9.0238463, 47.0880896 ], + [ 9.0246173, 47.1006815 ], + [ 9.0434461, 47.1091698 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZM001", + "country" : "CHE", + "name" : [ + { + "text" : "LSZM Mollis", + "lang" : "de-CH" + }, + { + "text" : "LSZM Mollis", + "lang" : "fr-CH" + }, + { + "text" : "LSZM Mollis", + "lang" : "it-CH" + }, + { + "text" : "LSZM Mollis", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Mollis Airport AG", + "lang" : "de-CH" + }, + { + "text" : "Mollis Airport AG", + "lang" : "fr-CH" + }, + { + "text" : "Mollis Airport AG", + "lang" : "it-CH" + }, + { + "text" : "Mollis Airport AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Stefan Oswald", + "lang" : "de-CH" + }, + { + "text" : "Stefan Oswald", + "lang" : "fr-CH" + }, + { + "text" : "Stefan Oswald", + "lang" : "it-CH" + }, + { + "text" : "Stefan Oswald", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.mollisairport.ch", + "email" : "flugbetrieb@mollisairport.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P20DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.0357198, 46.2210206 ], + [ 9.0357103, 46.2208795 ], + [ 9.0356902, 46.2207389 ], + [ 9.0356596, 46.2205992 ], + [ 9.0356184, 46.2204608 ], + [ 9.0355669, 46.2203242 ], + [ 9.0355051, 46.2201895 ], + [ 9.0354333, 46.2200574 ], + [ 9.0353516, 46.2199279 ], + [ 9.0352602, 46.2198017 ], + [ 9.0351595, 46.2196789 ], + [ 9.0350496, 46.21956 ], + [ 9.0349309, 46.2194452 ], + [ 9.0348038, 46.2193349 ], + [ 9.0346684, 46.2192293 ], + [ 9.0345254, 46.2191288 ], + [ 9.0343749, 46.2190337 ], + [ 9.0342175, 46.2189441 ], + [ 9.0340535, 46.2188604 ], + [ 9.0338834, 46.2187828 ], + [ 9.0337078, 46.2187114 ], + [ 9.033527, 46.2186465 ], + [ 9.0333415, 46.2185883 ], + [ 9.0331519, 46.2185369 ], + [ 9.0329587, 46.218492499999996 ], + [ 9.0327624, 46.2184551 ], + [ 9.0325636, 46.2184249 ], + [ 9.0323627, 46.218402 ], + [ 9.0321604, 46.2183864 ], + [ 9.0319572, 46.2183782 ], + [ 9.0317537, 46.2183774 ], + [ 9.0315504, 46.2183839 ], + [ 9.0313478, 46.2183979 ], + [ 9.0311466, 46.2184192 ], + [ 9.0309473, 46.2184477 ], + [ 9.0307503, 46.2184835 ], + [ 9.0305564, 46.2185263 ], + [ 9.030366, 46.2185762 ], + [ 9.0301795, 46.2186329 ], + [ 9.0299976, 46.2186963 ], + [ 9.0298208, 46.2187662 ], + [ 9.0296494, 46.2188425 ], + [ 9.029484, 46.2189249 ], + [ 9.0293251, 46.2190131 ], + [ 9.029173, 46.219107 ], + [ 9.0290283, 46.2192063 ], + [ 9.0288912, 46.2193108 ], + [ 9.0287621, 46.2194201 ], + [ 9.0286415, 46.2195339 ], + [ 9.0285297, 46.2196519 ], + [ 9.0284268, 46.2197738 ], + [ 9.0283334, 46.2198993 ], + [ 9.0282495, 46.2200281 ], + [ 9.0281754, 46.2201597 ], + [ 9.0281114, 46.2202938 ], + [ 9.0280575, 46.22043 ], + [ 9.028014, 46.2205681 ], + [ 9.027981, 46.2207075 ], + [ 9.0279585, 46.2208479 ], + [ 9.0279467, 46.2209889 ], + [ 9.0279455, 46.2211302 ], + [ 9.0279549, 46.2212714 ], + [ 9.027975, 46.221412 ], + [ 9.0280056, 46.2215516 ], + [ 9.0280468, 46.22169 ], + [ 9.0280983, 46.2218267 ], + [ 9.02816, 46.2219613 ], + [ 9.0282319, 46.2220935 ], + [ 9.0283136, 46.2222229 ], + [ 9.0284049, 46.2223492 ], + [ 9.0285056, 46.222472 ], + [ 9.0286155, 46.2225909 ], + [ 9.0287342, 46.2227057 ], + [ 9.0288613, 46.222816 ], + [ 9.0289966, 46.2229216 ], + [ 9.0291397, 46.2230221 ], + [ 9.0292902, 46.2231172 ], + [ 9.0294476, 46.2232068 ], + [ 9.0296116, 46.2232905 ], + [ 9.0297817, 46.2233682 ], + [ 9.0299573, 46.2234395 ], + [ 9.0301382, 46.2235044 ], + [ 9.0303236, 46.2235626 ], + [ 9.0305133, 46.223614 ], + [ 9.0307065, 46.2236585 ], + [ 9.0309028, 46.2236959 ], + [ 9.0311016, 46.2237261 ], + [ 9.0313025, 46.223749 ], + [ 9.0315048, 46.2237646 ], + [ 9.031708, 46.2237728 ], + [ 9.0319116, 46.2237736 ], + [ 9.0321149, 46.2237671 ], + [ 9.0323175, 46.2237531 ], + [ 9.0325187, 46.2237318 ], + [ 9.0327181, 46.2237033 ], + [ 9.032915, 46.2236675 ], + [ 9.033109, 46.2236246 ], + [ 9.0332995, 46.2235748 ], + [ 9.0334859, 46.2235181 ], + [ 9.0336678, 46.2234546 ], + [ 9.0338447, 46.2233847 ], + [ 9.0340161, 46.2233085 ], + [ 9.0341814, 46.2232261 ], + [ 9.0343404, 46.2231378 ], + [ 9.0344924, 46.2230439 ], + [ 9.0346372, 46.2229446 ], + [ 9.0347743, 46.2228401 ], + [ 9.0349033, 46.2227308 ], + [ 9.0350239, 46.222617 ], + [ 9.0351358, 46.222499 ], + [ 9.0352386, 46.222377 ], + [ 9.0353321, 46.2222515 ], + [ 9.0354159, 46.2221228 ], + [ 9.03549, 46.2219912 ], + [ 9.035554, 46.2218571 ], + [ 9.0356078, 46.2217208 ], + [ 9.0356513, 46.2215828 ], + [ 9.0356843, 46.2214434 ], + [ 9.0357068, 46.221303 ], + [ 9.0357186, 46.2211619 ], + [ 9.0357198, 46.2210206 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0046", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Gorduno", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Gorduno", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Gorduno", + "lang" : "it-CH" + }, + { + "text" : "Substation Gorduno", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7699843, 47.5235496 ], + [ 7.7700351, 47.5235293 ], + [ 7.7700631, 47.523518 ], + [ 7.7701619, 47.5234242 ], + [ 7.7702419, 47.5234218 ], + [ 7.7703695, 47.523418 ], + [ 7.7704632, 47.5233988 ], + [ 7.7706899, 47.523427 ], + [ 7.7707967, 47.5234693 ], + [ 7.7708777, 47.523484 ], + [ 7.7713754999999995, 47.523385 ], + [ 7.7716026, 47.5233907 ], + [ 7.7716946, 47.52337 ], + [ 7.7717731, 47.523341 ], + [ 7.7718994, 47.5233307 ], + [ 7.7718964, 47.5233228 ], + [ 7.7718868, 47.5232973 ], + [ 7.7717083, 47.5228208 ], + [ 7.7714584, 47.5220961 ], + [ 7.7712073, 47.5213705 ], + [ 7.7711856, 47.5212795 ], + [ 7.7712161, 47.5212179 ], + [ 7.7712285, 47.5211928 ], + [ 7.7713304, 47.5211328 ], + [ 7.7714254, 47.5210889 ], + [ 7.7715148, 47.521029 ], + [ 7.7715461999999995, 47.5209543 ], + [ 7.7715182, 47.520871 ], + [ 7.7714468, 47.5207938 ], + [ 7.7712319999999995, 47.5206081 ], + [ 7.7709811, 47.5204412 ], + [ 7.7707136, 47.5202844 ], + [ 7.7702955, 47.5200601 ], + [ 7.7702207, 47.5200148 ], + [ 7.7701863, 47.5199939 ], + [ 7.7701545, 47.5199746 ], + [ 7.7701456, 47.5199675 ], + [ 7.7700504, 47.5198902 ], + [ 7.7699584999999995, 47.5197969 ], + [ 7.769886, 47.519696 ], + [ 7.7698294, 47.5195885 ], + [ 7.7695848, 47.5189232 ], + [ 7.7695108, 47.5187219 ], + [ 7.7684662, 47.5191274 ], + [ 7.7683168, 47.5188345 ], + [ 7.7680646, 47.5183411 ], + [ 7.7679025, 47.5183779 ], + [ 7.7677774, 47.5184064 ], + [ 7.7677171, 47.5184201 ], + [ 7.7682072, 47.5193043 ], + [ 7.7682541, 47.5194186 ], + [ 7.7682359, 47.5195077 ], + [ 7.7681269, 47.5196303 ], + [ 7.7679545999999995, 47.5197872 ], + [ 7.7676779, 47.5199861 ], + [ 7.7674664, 47.5201011 ], + [ 7.7672068, 47.5202155 ], + [ 7.766984, 47.5203137 ], + [ 7.7665253, 47.5205018 ], + [ 7.7663063999999995, 47.5205875 ], + [ 7.7661767, 47.5206261 ], + [ 7.7657405, 47.5207221 ], + [ 7.7646369, 47.5209981 ], + [ 7.764275, 47.5210735 ], + [ 7.7639965, 47.5211095 ], + [ 7.7635845, 47.5211331 ], + [ 7.763046, 47.5211513 ], + [ 7.7629139, 47.5211448 ], + [ 7.7627635, 47.5211051 ], + [ 7.7626273, 47.5210272 ], + [ 7.7624742, 47.5208513 ], + [ 7.7623292, 47.520705 ], + [ 7.762105, 47.520456 ], + [ 7.76208, 47.5204261 ], + [ 7.7620724, 47.5204392 ], + [ 7.7619625, 47.520673 ], + [ 7.7618095, 47.5208997 ], + [ 7.7616447, 47.5211205 ], + [ 7.7616076, 47.521156500000004 ], + [ 7.7614874, 47.5212733 ], + [ 7.7614812, 47.5212794 ], + [ 7.7614746, 47.5212841 ], + [ 7.7614878, 47.5212932 ], + [ 7.7611068, 47.5215146 ], + [ 7.7606923, 47.5217393 ], + [ 7.7604212, 47.5218546 ], + [ 7.7603928, 47.5218662 ], + [ 7.7601584, 47.5219591 ], + [ 7.7599324, 47.5220327 ], + [ 7.7598753, 47.5220425 ], + [ 7.759752, 47.5220634 ], + [ 7.7596422, 47.5220534 ], + [ 7.7592449, 47.5219566 ], + [ 7.7591379, 47.5219334 ], + [ 7.7590721, 47.5219271 ], + [ 7.7586433, 47.5218684 ], + [ 7.7583548, 47.5218369 ], + [ 7.7578968, 47.5218198 ], + [ 7.757641, 47.5218177 ], + [ 7.7573508, 47.5218178 ], + [ 7.7571123, 47.5218137 ], + [ 7.7569402, 47.5217962 ], + [ 7.7569144, 47.5217936 ], + [ 7.7567856, 47.5217334 ], + [ 7.7567749, 47.5217306 ], + [ 7.7567799, 47.5217287 ], + [ 7.7567707, 47.5216963 ], + [ 7.7567635, 47.5216863 ], + [ 7.7567569, 47.5216759 ], + [ 7.7567512, 47.5216652 ], + [ 7.7567465, 47.5216542 ], + [ 7.7567449, 47.5216494 ], + [ 7.7567274, 47.5216549 ], + [ 7.756708, 47.521661 ], + [ 7.7566963, 47.5216647 ], + [ 7.756434, 47.5217494 ], + [ 7.7561034, 47.5218519 ], + [ 7.7553763, 47.521154 ], + [ 7.7552432, 47.5211878 ], + [ 7.7551155, 47.5212421 ], + [ 7.7551089, 47.5212363 ], + [ 7.7550995, 47.5212281 ], + [ 7.7550845, 47.5212149 ], + [ 7.7550779, 47.5212091 ], + [ 7.7545988, 47.520747 ], + [ 7.7544127, 47.5209406 ], + [ 7.7543263, 47.5209064 ], + [ 7.7544439, 47.5207842 ], + [ 7.7541698, 47.520533 ], + [ 7.7539589, 47.5203405 ], + [ 7.7539375, 47.5203524 ], + [ 7.7539225, 47.5203868 ], + [ 7.7539011, 47.5204339 ], + [ 7.7538788, 47.5204807 ], + [ 7.7538556, 47.5205274 ], + [ 7.7538316, 47.5205739 ], + [ 7.7538067, 47.5206202 ], + [ 7.753781, 47.5206663 ], + [ 7.7537544, 47.5207121 ], + [ 7.7537269, 47.5207577 ], + [ 7.7536986, 47.5208031 ], + [ 7.7536787, 47.5208351 ], + [ 7.7536593, 47.5208673 ], + [ 7.7536404999999995, 47.5208996 ], + [ 7.7536223, 47.5209321 ], + [ 7.7536046, 47.5209647 ], + [ 7.7535875999999995, 47.5209975 ], + [ 7.7534846, 47.5211995 ], + [ 7.7534326, 47.5213015 ], + [ 7.7534241999999995, 47.5213189 ], + [ 7.7534165, 47.5213364 ], + [ 7.7534096, 47.521354 ], + [ 7.7534035, 47.5213718 ], + [ 7.7533982, 47.5213897 ], + [ 7.7533908, 47.5214155 ], + [ 7.7533828, 47.5214411 ], + [ 7.7533741, 47.5214667 ], + [ 7.7533648, 47.5214922 ], + [ 7.7533548, 47.5215176 ], + [ 7.7532877, 47.5216831 ], + [ 7.7532707, 47.5217238 ], + [ 7.7532529, 47.5217644 ], + [ 7.7532341, 47.5218047 ], + [ 7.7532145, 47.5218448 ], + [ 7.753194, 47.5218848 ], + [ 7.7531726, 47.5219245 ], + [ 7.7531504, 47.521964 ], + [ 7.7531272, 47.5220033 ], + [ 7.7531033, 47.5220424 ], + [ 7.7530785, 47.5220812 ], + [ 7.7530528, 47.5221197 ], + [ 7.7530263, 47.522158 ], + [ 7.7529989, 47.522196 ], + [ 7.7529707, 47.5222338 ], + [ 7.7529417, 47.5222712 ], + [ 7.7529202999999995, 47.5222977 ], + [ 7.752898, 47.5223239 ], + [ 7.7528749999999995, 47.5223497 ], + [ 7.7528511, 47.5223752 ], + [ 7.7528264, 47.5224004 ], + [ 7.7528009, 47.5224252 ], + [ 7.7527747, 47.5224496 ], + [ 7.7527477000000005, 47.5224736 ], + [ 7.7527199, 47.5224973 ], + [ 7.7526914, 47.5225205 ], + [ 7.7526622, 47.5225433 ], + [ 7.7526322, 47.5225657 ], + [ 7.7526016, 47.5225877 ], + [ 7.7520285, 47.5229896 ], + [ 7.752005, 47.5230065 ], + [ 7.7519822, 47.5230237 ], + [ 7.75196, 47.5230414 ], + [ 7.7519384, 47.5230594 ], + [ 7.7519175, 47.5230777 ], + [ 7.7519135, 47.5230814 ], + [ 7.7518899, 47.5230809 ], + [ 7.7518648, 47.5230808 ], + [ 7.7517876, 47.523154 ], + [ 7.7516584, 47.5233107 ], + [ 7.75148, 47.523551 ], + [ 7.7513456, 47.5237062 ], + [ 7.7511578, 47.52389 ], + [ 7.7511087, 47.5239742 ], + [ 7.7509289, 47.5239898 ], + [ 7.7507451, 47.5240048 ], + [ 7.7508818, 47.5242176 ], + [ 7.7510918, 47.5243733 ], + [ 7.7516759, 47.5247013 ], + [ 7.7515881, 47.5248639 ], + [ 7.752172, 47.5249756 ], + [ 7.7526630999999995, 47.5250177 ], + [ 7.7537044, 47.5249264 ], + [ 7.7534691, 47.5252076 ], + [ 7.7535431, 47.5253439 ], + [ 7.7537208, 47.5253062 ], + [ 7.7537377, 47.5253456 ], + [ 7.7537917, 47.5254716 ], + [ 7.7539498, 47.5254277 ], + [ 7.7540757, 47.5254034 ], + [ 7.7542156, 47.5253607 ], + [ 7.7543644, 47.5253479 ], + [ 7.7544746, 47.5253539 ], + [ 7.7550763, 47.525318 ], + [ 7.7552231, 47.5253302 ], + [ 7.7553632, 47.5253683 ], + [ 7.7554635, 47.5254063 ], + [ 7.7555762, 47.5254242 ], + [ 7.7556442, 47.5254494 ], + [ 7.7558297, 47.5254662 ], + [ 7.7560589, 47.5255328 ], + [ 7.7562725, 47.5256099 ], + [ 7.7564372, 47.5256494 ], + [ 7.7565797, 47.5256772 ], + [ 7.7566739, 47.5257345 ], + [ 7.7568117, 47.525785 ], + [ 7.7569037, 47.5258369 ], + [ 7.7570511, 47.5258998 ], + [ 7.7572365, 47.5259152 ], + [ 7.757314, 47.5259363 ], + [ 7.7574178, 47.5259734 ], + [ 7.7575061, 47.5259987 ], + [ 7.7575181, 47.5260014 ], + [ 7.7576488, 47.5260313 ], + [ 7.7577667, 47.5260324 ], + [ 7.7578695, 47.5260491 ], + [ 7.7578700000000005, 47.5260552 ], + [ 7.7580117, 47.5260212 ], + [ 7.7580833, 47.5259898 ], + [ 7.7581530999999995, 47.5259012 ], + [ 7.7582912, 47.5257962 ], + [ 7.7583737, 47.5257606 ], + [ 7.7585016, 47.525647 ], + [ 7.7585186, 47.5255642 ], + [ 7.7585121, 47.5254956 ], + [ 7.7586919, 47.5254603 ], + [ 7.7588667000000004, 47.5254186 ], + [ 7.7590432, 47.5254247 ], + [ 7.75918, 47.5253801 ], + [ 7.7593506, 47.5253827 ], + [ 7.7594934, 47.5253713 ], + [ 7.7595875, 47.5253866 ], + [ 7.7597579, 47.5254278 ], + [ 7.7598468, 47.5254282 ], + [ 7.760009, 47.5253781 ], + [ 7.7600705, 47.5253678 ], + [ 7.7601082, 47.525315 ], + [ 7.7601527, 47.5253016 ], + [ 7.760353, 47.5252962 ], + [ 7.7604358, 47.5253111 ], + [ 7.7606098, 47.5252793 ], + [ 7.7606701000000005, 47.5252325 ], + [ 7.7607771, 47.5252124 ], + [ 7.7608387, 47.5252254 ], + [ 7.7608529, 47.5252254 ], + [ 7.7609329, 47.5252547 ], + [ 7.7610038, 47.5252919 ], + [ 7.761066, 47.5253015 ], + [ 7.761133, 47.5253177 ], + [ 7.7613939, 47.5252995 ], + [ 7.761502, 47.5253063 ], + [ 7.7615804, 47.5252879 ], + [ 7.7616909, 47.5252325 ], + [ 7.7617697, 47.5252574 ], + [ 7.7618323, 47.5252709 ], + [ 7.7618862, 47.525306 ], + [ 7.7620777, 47.5253212 ], + [ 7.7621625, 47.5253297 ], + [ 7.7621934, 47.5253233 ], + [ 7.7622641, 47.5253749 ], + [ 7.7622641, 47.5253747 ], + [ 7.7622642, 47.5253749 ], + [ 7.7624436, 47.5253157 ], + [ 7.7625168, 47.5253055 ], + [ 7.7625592, 47.5252651 ], + [ 7.7625964, 47.5251991 ], + [ 7.762713, 47.5250958 ], + [ 7.7627924, 47.524984 ], + [ 7.7628149, 47.5249088 ], + [ 7.7628775999999995, 47.5248628 ], + [ 7.7631425, 47.5247705 ], + [ 7.763257, 47.524803 ], + [ 7.7633669, 47.5247685 ], + [ 7.7634927, 47.5247165 ], + [ 7.763621, 47.5247029 ], + [ 7.7640288, 47.52476 ], + [ 7.7641024, 47.5247817 ], + [ 7.7642864, 47.5248037 ], + [ 7.7644231999999995, 47.5248588 ], + [ 7.7645665, 47.5248853 ], + [ 7.7649616, 47.5248482 ], + [ 7.765024, 47.5248787 ], + [ 7.7651088999999995, 47.5248028 ], + [ 7.7652599, 47.5247513 ], + [ 7.7654602, 47.5247531 ], + [ 7.7655592, 47.5247209 ], + [ 7.7657652, 47.5247276 ], + [ 7.7659617999999995, 47.5246677 ], + [ 7.7659828, 47.5245891 ], + [ 7.7660269, 47.5244998 ], + [ 7.7661442, 47.5245016 ], + [ 7.7663060999999995, 47.5245478 ], + [ 7.7663917, 47.5245401 ], + [ 7.766466, 47.52448 ], + [ 7.7665763, 47.5244686 ], + [ 7.7666563, 47.5244951 ], + [ 7.766675, 47.5244952 ], + [ 7.7667313, 47.5244956 ], + [ 7.7668452, 47.524441 ], + [ 7.7670641, 47.5243762 ], + [ 7.7671308, 47.5243183 ], + [ 7.7672972, 47.524258 ], + [ 7.7674204, 47.524172899999996 ], + [ 7.7674693, 47.5240899 ], + [ 7.7675503, 47.5240329 ], + [ 7.7677175, 47.5240151 ], + [ 7.7678929, 47.5240356 ], + [ 7.7680864, 47.5240383 ], + [ 7.7682223, 47.5240384 ], + [ 7.7683113, 47.523974 ], + [ 7.768439, 47.5238449 ], + [ 7.7687391, 47.5238 ], + [ 7.7689859, 47.5237634 ], + [ 7.7691148, 47.5237608 ], + [ 7.7692119, 47.5237222 ], + [ 7.7692761, 47.5236556 ], + [ 7.7694901, 47.5235862 ], + [ 7.7695655, 47.5235891 ], + [ 7.7698285, 47.5235424 ], + [ 7.7699062, 47.523546 ], + [ 7.7699843, 47.5235496 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns029", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Bärenfels", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Bärenfels", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Bärenfels", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Bärenfels", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.6301547, 46.5363756 ], + [ 6.6301514, 46.5362343 ], + [ 6.6301375, 46.5360934 ], + [ 6.6301128, 46.5359531 ], + [ 6.6300776, 46.5358139 ], + [ 6.6300319, 46.5356762 ], + [ 6.6299758, 46.5355403 ], + [ 6.6299094, 46.5354067 ], + [ 6.629833, 46.5352756 ], + [ 6.6297467999999995, 46.5351474 ], + [ 6.629651, 46.5350226 ], + [ 6.6295458, 46.5349014 ], + [ 6.6294316, 46.5347841 ], + [ 6.6293086, 46.5346711 ], + [ 6.6291773, 46.5345628 ], + [ 6.6290379, 46.5344593 ], + [ 6.6288909, 46.534361 ], + [ 6.6287366, 46.5342681 ], + [ 6.6285754, 46.534181 ], + [ 6.6284079, 46.5340997 ], + [ 6.6282345, 46.5340247 ], + [ 6.6280556, 46.533956 ], + [ 6.6278717, 46.5338938 ], + [ 6.6276834000000004, 46.5338384 ], + [ 6.6274911, 46.5337899 ], + [ 6.6272953999999995, 46.5337484 ], + [ 6.6270969, 46.533714 ], + [ 6.626896, 46.5336868 ], + [ 6.6266933, 46.5336669 ], + [ 6.6264894, 46.5336543 ], + [ 6.6262848, 46.5336492 ], + [ 6.6260801, 46.5336514 ], + [ 6.6258759, 46.533661 ], + [ 6.6256726, 46.533678 ], + [ 6.625471, 46.5337023 ], + [ 6.6252714, 46.5337339 ], + [ 6.6250745, 46.5337726 ], + [ 6.6248809, 46.5338184 ], + [ 6.6246909, 46.5338711 ], + [ 6.6245052, 46.5339306 ], + [ 6.6243243, 46.5339967 ], + [ 6.6241487, 46.5340693 ], + [ 6.6239788, 46.5341481 ], + [ 6.6238151, 46.5342329 ], + [ 6.623658, 46.5343236 ], + [ 6.6235081000000005, 46.5344197 ], + [ 6.6233656, 46.5345212 ], + [ 6.6232311, 46.5346277 ], + [ 6.6231048, 46.5347389 ], + [ 6.6229871, 46.5348545 ], + [ 6.6228783, 46.5349742 ], + [ 6.6227787, 46.5350976 ], + [ 6.6226886, 46.5352245 ], + [ 6.6226083, 46.5353545 ], + [ 6.622538, 46.5354872 ], + [ 6.6224778, 46.5356222 ], + [ 6.6224279, 46.5357593 ], + [ 6.6223885, 46.5358979 ], + [ 6.6223597, 46.5360378 ], + [ 6.6223415, 46.5361785 ], + [ 6.622334, 46.5363197 ], + [ 6.6223372, 46.536461 ], + [ 6.6223510999999995, 46.536602 ], + [ 6.6223757, 46.5367422 ], + [ 6.6224109, 46.5368814 ], + [ 6.6224567, 46.5370191 ], + [ 6.6225128, 46.537155 ], + [ 6.6225791, 46.5372887 ], + [ 6.6226554, 46.5374198 ], + [ 6.6227417, 46.5375479 ], + [ 6.6228375, 46.5376728 ], + [ 6.6229426, 46.537794 ], + [ 6.6230568, 46.5379113 ], + [ 6.6231797, 46.538024300000004 ], + [ 6.6233111000000005, 46.5381327 ], + [ 6.6234505, 46.5382362 ], + [ 6.6235975, 46.5383345 ], + [ 6.6237518, 46.5384273 ], + [ 6.6239129, 46.5385145 ], + [ 6.6240804, 46.5385957 ], + [ 6.6242539, 46.5386708 ], + [ 6.6244328, 46.5387395 ], + [ 6.6246165999999995, 46.5388017 ], + [ 6.624805, 46.5388571 ], + [ 6.6249972, 46.5389056 ], + [ 6.625193, 46.5389472 ], + [ 6.6253915, 46.5389816 ], + [ 6.6255925, 46.5390088 ], + [ 6.6257952, 46.5390287 ], + [ 6.6259991, 46.5390412 ], + [ 6.6262037, 46.5390464 ], + [ 6.6264084, 46.5390441 ], + [ 6.6266127, 46.5390345 ], + [ 6.626816, 46.5390175 ], + [ 6.6270176, 46.5389932 ], + [ 6.6272172, 46.5389617 ], + [ 6.6274141, 46.5389229 ], + [ 6.6276078, 46.5388771 ], + [ 6.6277978, 46.5388244 ], + [ 6.6279835, 46.5387649 ], + [ 6.6281644, 46.5386988 ], + [ 6.6283401, 46.5386262 ], + [ 6.62851, 46.5385474 ], + [ 6.6286737, 46.5384625 ], + [ 6.6288308, 46.5383719 ], + [ 6.6289808, 46.5382757 ], + [ 6.6291232, 46.5381742 ], + [ 6.6292577999999995, 46.5380677 ], + [ 6.6293841, 46.5379565 ], + [ 6.6295018, 46.5378409 ], + [ 6.6296106, 46.5377212 ], + [ 6.6297101, 46.5375978 ], + [ 6.6298002, 46.5374709 ], + [ 6.6298805, 46.5373409 ], + [ 6.6299508, 46.5372082 ], + [ 6.630011, 46.5370731 ], + [ 6.6300608, 46.5369361 ], + [ 6.6301002, 46.5367974 ], + [ 6.630129, 46.5366576 ], + [ 6.6301472, 46.5365168 ], + [ 6.6301547, 46.5363756 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BOI0001", + "country" : "CHE", + "name" : [ + { + "text" : "Prison du Bois-Mermet", + "lang" : "de-CH" + }, + { + "text" : "Prison du Bois-Mermet", + "lang" : "fr-CH" + }, + { + "text" : "Prison du Bois-Mermet", + "lang" : "it-CH" + }, + { + "text" : "Prison du Bois-Mermet", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Direction du Service pénitentiaire Vaud", + "lang" : "de-CH" + }, + { + "text" : "Direction du Service pénitentiaire Vaud", + "lang" : "fr-CH" + }, + { + "text" : "Direction du Service pénitentiaire Vaud", + "lang" : "it-CH" + }, + { + "text" : "Direction du Service pénitentiaire Vaud", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/toutes-les-autorites/departements/departement-de-la-jeunesse-de-lenvironnement-et-de-la-securite-djes/service-penitentiaire-spen/", + "email" : "info.spen@vd.ch", + "phone" : "0041213164801", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.2274512, 47.5946179 ], + [ 8.227631, 47.5945602 ], + [ 8.2277176, 47.5945207 ], + [ 8.2277833, 47.5944857 ], + [ 8.227892, 47.5944198 ], + [ 8.2280197, 47.5943246 ], + [ 8.2282025, 47.5941666 ], + [ 8.228379, 47.5940067 ], + [ 8.2286157, 47.5937667 ], + [ 8.2287553, 47.5936321 ], + [ 8.2288873, 47.593508 ], + [ 8.2289638, 47.593436 ], + [ 8.2292136, 47.5931899 ], + [ 8.2294333, 47.5929812 ], + [ 8.2296585, 47.5927637 ], + [ 8.2297959, 47.5926276 ], + [ 8.2299746, 47.5924421 ], + [ 8.2301945, 47.5921807 ], + [ 8.2303361, 47.5919972 ], + [ 8.2303415, 47.5919901 ], + [ 8.2303659, 47.5919585 ], + [ 8.2305254, 47.5917404 ], + [ 8.2305538, 47.5917015 ], + [ 8.2306689, 47.5915358 ], + [ 8.2307963, 47.591355 ], + [ 8.2309159, 47.5911798 ], + [ 8.2310273, 47.5910001 ], + [ 8.2311478, 47.5908147 ], + [ 8.2312953, 47.5906006 ], + [ 8.2314361, 47.5904016 ], + [ 8.2315176, 47.5902756 ], + [ 8.2316345, 47.5900958 ], + [ 8.2317878, 47.589877 ], + [ 8.2318986, 47.5897294 ], + [ 8.2319048, 47.5897217 ], + [ 8.232023, 47.5895754 ], + [ 8.2321288, 47.5894515 ], + [ 8.2321603, 47.5894119 ], + [ 8.2322584, 47.5893013 ], + [ 8.2323834, 47.5891704 ], + [ 8.2324698, 47.5890847 ], + [ 8.2326111, 47.5889557 ], + [ 8.2327797, 47.5888147 ], + [ 8.2329034, 47.5887148 ], + [ 8.2330473, 47.5886065 ], + [ 8.2332984, 47.5884267 ], + [ 8.2334634, 47.5883064 ], + [ 8.2336825, 47.5881503 ], + [ 8.2338257, 47.5880398 ], + [ 8.2339949, 47.5879179 ], + [ 8.2341568, 47.5878003 ], + [ 8.2343747, 47.5876451 ], + [ 8.234544, 47.5875237 ], + [ 8.2347324, 47.5873889 ], + [ 8.2349282, 47.5872514 ], + [ 8.2351284, 47.5871067 ], + [ 8.2352579, 47.5870119 ], + [ 8.2354079, 47.5868973 ], + [ 8.235518, 47.5868198 ], + [ 8.2357009, 47.5866911 ], + [ 8.2360233, 47.586462 ], + [ 8.2363942, 47.5861954 ], + [ 8.2365841, 47.5860589 ], + [ 8.2367607, 47.5859329 ], + [ 8.2369345, 47.585811 ], + [ 8.2371022, 47.585685 ], + [ 8.2372729, 47.5855632 ], + [ 8.2374363, 47.5854476 ], + [ 8.2375495, 47.5853591 ], + [ 8.2377305, 47.5852268 ], + [ 8.2378793, 47.5851237 ], + [ 8.2379926, 47.5850414 ], + [ 8.238178, 47.584907 ], + [ 8.2384223, 47.584731 ], + [ 8.2386431, 47.5845717 ], + [ 8.2387814, 47.5844696 ], + [ 8.2389211, 47.5843655 ], + [ 8.2391508, 47.5842051 ], + [ 8.2393612, 47.5840509 ], + [ 8.2395362, 47.5839176 ], + [ 8.2396721, 47.5838238 ], + [ 8.2397218, 47.5837895 ], + [ 8.2397683, 47.5837551 ], + [ 8.2399173, 47.5836447 ], + [ 8.2401005, 47.5835099 ], + [ 8.2402406, 47.58341 ], + [ 8.2403844, 47.5833075 ], + [ 8.2405729, 47.5831712 ], + [ 8.2407017, 47.5830739 ], + [ 8.240923, 47.5829138 ], + [ 8.241145, 47.5827547 ], + [ 8.2414554, 47.582531 ], + [ 8.24177, 47.582309 ], + [ 8.2422487, 47.5819597 ], + [ 8.24244, 47.5818216 ], + [ 8.2426091, 47.5817065 ], + [ 8.2427485, 47.5816102 ], + [ 8.2428922, 47.5815045 ], + [ 8.2430835, 47.5813675 ], + [ 8.2433398, 47.5811803 ], + [ 8.2435104, 47.581061 ], + [ 8.2437327, 47.5808989 ], + [ 8.2438868, 47.5807869 ], + [ 8.2439772, 47.5807169 ], + [ 8.244149, 47.5805903 ], + [ 8.2443566, 47.5804418 ], + [ 8.2446217, 47.5802379 ], + [ 8.2449042, 47.5800394 ], + [ 8.2449701, 47.5799931 ], + [ 8.245194, 47.5798361 ], + [ 8.245357, 47.5797179 ], + [ 8.2455926, 47.5795443 ], + [ 8.2457276, 47.5794501 ], + [ 8.2459099, 47.5793183 ], + [ 8.2461588, 47.5791373 ], + [ 8.2463308, 47.5790149 ], + [ 8.2465368, 47.5788643 ], + [ 8.246777, 47.5786979 ], + [ 8.2469652, 47.5785598 ], + [ 8.2472884, 47.5783286 ], + [ 8.2475462, 47.5781403 ], + [ 8.2478381, 47.5779269 ], + [ 8.2480115, 47.5777993 ], + [ 8.2481834, 47.5776769 ], + [ 8.2483924, 47.5775273 ], + [ 8.2486014, 47.5773756 ], + [ 8.2488059, 47.5772281 ], + [ 8.2490282, 47.577068 ], + [ 8.2491957, 47.5769498 ], + [ 8.2494017, 47.5767991 ], + [ 8.2495677, 47.5766819 ], + [ 8.2498197, 47.5764999 ], + [ 8.2500062, 47.5763536 ], + [ 8.2502374, 47.5761903 ], + [ 8.2503871, 47.5760795 ], + [ 8.2505473, 47.5759747 ], + [ 8.2506792, 47.5758806 ], + [ 8.2508496, 47.575753 ], + [ 8.2510704, 47.575594 ], + [ 8.2512393, 47.5754695 ], + [ 8.2514482, 47.5753167 ], + [ 8.2516764, 47.5751525 ], + [ 8.2519152, 47.5749871 ], + [ 8.2520588, 47.5748753 ], + [ 8.2522348, 47.5747342 ], + [ 8.2523707, 47.5746205 ], + [ 8.2525575, 47.5744493 ], + [ 8.2527177, 47.5743064 ], + [ 8.2527518, 47.5742737 ], + [ 8.2528866, 47.5741446 ], + [ 8.2532474, 47.5737811 ], + [ 8.2523444, 47.573381499999996 ], + [ 8.2515902, 47.5730453 ], + [ 8.2514514, 47.5729832 ], + [ 8.2514094, 47.573036 ], + [ 8.251389, 47.5730615 ], + [ 8.25124, 47.57321 ], + [ 8.2510245, 47.5733983 ], + [ 8.2508409, 47.5735575 ], + [ 8.2506118, 47.5737286 ], + [ 8.250373100000001, 47.5739433 ], + [ 8.2502785, 47.5740096 ], + [ 8.2500781, 47.574055 ], + [ 8.2497552, 47.5741412 ], + [ 8.2494497, 47.5742153 ], + [ 8.2493755, 47.574217 ], + [ 8.2493655, 47.5741982 ], + [ 8.2493994, 47.5741269 ], + [ 8.2493407, 47.5741151 ], + [ 8.2491921, 47.574121 ], + [ 8.248976, 47.5742196 ], + [ 8.2487565, 47.5743263 ], + [ 8.2485114, 47.5744244 ], + [ 8.2483529, 47.5745081 ], + [ 8.2482335, 47.5745708 ], + [ 8.2480054, 47.5746519 ], + [ 8.2479274, 47.5746787 ], + [ 8.2478003, 47.5747224 ], + [ 8.2477537, 47.5747108 ], + [ 8.247716, 47.5746807 ], + [ 8.2476905, 47.5746809 ], + [ 8.247671, 47.5746963 ], + [ 8.2476615, 47.5747412 ], + [ 8.2475786, 47.5747755 ], + [ 8.2475217, 47.5747867 ], + [ 8.2473845, 47.5748139 ], + [ 8.2472896, 47.5748251 ], + [ 8.2472417, 47.5748063 ], + [ 8.2470672, 47.5748783 ], + [ 8.2469448, 47.5749288 ], + [ 8.246687, 47.5750326 ], + [ 8.2464417, 47.5751266 ], + [ 8.2462833, 47.5752096 ], + [ 8.2462595, 47.5752102 ], + [ 8.2461998, 47.5752119 ], + [ 8.2461781, 47.5752273 ], + [ 8.2461785, 47.5752478 ], + [ 8.2461422, 47.57529 ], + [ 8.2460006, 47.5753456 ], + [ 8.2457788, 47.575389799999996 ], + [ 8.2455253, 47.5754215 ], + [ 8.2453757, 47.5754252 ], + [ 8.2452508, 47.575443 ], + [ 8.2450121, 47.5755162 ], + [ 8.2449716, 47.5755271 ], + [ 8.2448995, 47.5755466 ], + [ 8.2448621, 47.5755567 ], + [ 8.2447266, 47.575569 ], + [ 8.2445832, 47.575591 ], + [ 8.2445362, 47.575621 ], + [ 8.2443514, 47.5756593 ], + [ 8.2441573, 47.5756923 ], + [ 8.2441039, 47.5757014 ], + [ 8.2439307, 47.5757436 ], + [ 8.2437223, 47.5757606 ], + [ 8.2436911, 47.5757672 ], + [ 8.2435732, 47.5757922 ], + [ 8.2433099, 47.5758512 ], + [ 8.2431769, 47.5758747 ], + [ 8.2429971, 47.5758746 ], + [ 8.2428671, 47.5758733 ], + [ 8.2426196, 47.5759121 ], + [ 8.2419471, 47.5760449 ], + [ 8.2415123, 47.5761766 ], + [ 8.2412702, 47.5763106 ], + [ 8.2407379, 47.5764967 ], + [ 8.2403922, 47.576618 ], + [ 8.240101, 47.5767348 ], + [ 8.2400341, 47.5767554 ], + [ 8.2399997, 47.5767148 ], + [ 8.239912, 47.5767428 ], + [ 8.2398697, 47.576828 ], + [ 8.2397905, 47.5768758 ], + [ 8.2395907, 47.5769215 ], + [ 8.239499, 47.5769743 ], + [ 8.2393635, 47.5770748 ], + [ 8.2391263, 47.5771954 ], + [ 8.2388969, 47.5773497 ], + [ 8.2387404, 47.5774742 ], + [ 8.2385587, 47.5775444 ], + [ 8.2384199, 47.5776084 ], + [ 8.2383358, 47.5777254 ], + [ 8.2382754, 47.5778289 ], + [ 8.2381473, 47.577887 ], + [ 8.2380579, 47.5778978 ], + [ 8.238031, 47.577936 ], + [ 8.2380348, 47.5780175 ], + [ 8.2379845, 47.5780855 ], + [ 8.2378928, 47.5781079 ], + [ 8.2378191, 47.5781308 ], + [ 8.2377083, 47.5782193 ], + [ 8.2375267, 47.5783726 ], + [ 8.2372846, 47.5786123 ], + [ 8.237035, 47.5789153 ], + [ 8.2369577, 47.5790767 ], + [ 8.2368672, 47.579239 ], + [ 8.2368248, 47.5793514 ], + [ 8.2367915, 47.5794308 ], + [ 8.2367251, 47.5794611 ], + [ 8.2366598, 47.5794915 ], + [ 8.2366583, 47.5795417 ], + [ 8.2365791, 47.5796635 ], + [ 8.2364787, 47.5798054 ], + [ 8.2363196, 47.5800161 ], + [ 8.2362586, 47.5800851 ], + [ 8.236235, 47.5801751 ], + [ 8.2361662, 47.5802754 ], + [ 8.2360333, 47.5804061 ], + [ 8.2359619, 47.5804949 ], + [ 8.2358401, 47.580576 ], + [ 8.2356579, 47.5806874 ], + [ 8.2355911, 47.5806971 ], + [ 8.2353647, 47.5808057 ], + [ 8.2352286, 47.5808911 ], + [ 8.2349677, 47.5811597 ], + [ 8.2347216, 47.581452 ], + [ 8.2344325, 47.5818189 ], + [ 8.2340803, 47.5822729 ], + [ 8.2337386, 47.5827112 ], + [ 8.2333324, 47.5832225 ], + [ 8.2329673, 47.5836923 ], + [ 8.2327777, 47.5839363 ], + [ 8.2326476, 47.5840891 ], + [ 8.2324772, 47.5842696 ], + [ 8.2323079, 47.584436 ], + [ 8.2321003, 47.5846052 ], + [ 8.2318985, 47.5847621 ], + [ 8.231529, 47.5850384 ], + [ 8.2311689, 47.585308 ], + [ 8.2307038, 47.5856635 ], + [ 8.2303166, 47.585959 ], + [ 8.2298279, 47.5863304 ], + [ 8.2294137, 47.586659 ], + [ 8.2291356, 47.5869023 ], + [ 8.2288838, 47.5871387 ], + [ 8.2285164, 47.5874775 ], + [ 8.2282279, 47.5877439 ], + [ 8.2280127, 47.5879561 ], + [ 8.227755, 47.5882066 ], + [ 8.2275747, 47.5883616 ], + [ 8.2274108, 47.5884991 ], + [ 8.2270683, 47.5887512 ], + [ 8.2266606, 47.5890411 ], + [ 8.2262589, 47.5893268 ], + [ 8.2256871, 47.5897393 ], + [ 8.225321, 47.5900098 ], + [ 8.2248236, 47.590443 ], + [ 8.2244326, 47.5907994 ], + [ 8.2239815, 47.5912099 ], + [ 8.2235895, 47.5915795 ], + [ 8.2234826, 47.5916958 ], + [ 8.2234596, 47.5917529 ], + [ 8.2234898, 47.5918431 ], + [ 8.2236024, 47.5919276 ], + [ 8.2237619, 47.5920265 ], + [ 8.2238105, 47.5920754 ], + [ 8.2238412, 47.5921228 ], + [ 8.2238565, 47.5921762 ], + [ 8.223851, 47.5922783 ], + [ 8.2238174, 47.5925611 ], + [ 8.2237938, 47.5926511 ], + [ 8.2237847, 47.5926775 ], + [ 8.2237133, 47.5927688 ], + [ 8.2237602, 47.5927873 ], + [ 8.2237008, 47.5929534 ], + [ 8.2235858, 47.593302800000004 ], + [ 8.2235502, 47.5933929 ], + [ 8.2234996, 47.5934268 ], + [ 8.2234852, 47.5934364 ], + [ 8.2239371, 47.5937127 ], + [ 8.2243767, 47.5939815 ], + [ 8.2247189, 47.5942016 ], + [ 8.2247912, 47.5942482 ], + [ 8.2249112, 47.5942008 ], + [ 8.2249354, 47.5942204 ], + [ 8.2249708, 47.5941904 ], + [ 8.2249922, 47.5941629 ], + [ 8.2252615, 47.5940573 ], + [ 8.2252908, 47.5940488 ], + [ 8.2253183, 47.5940492 ], + [ 8.2253481, 47.5940585 ], + [ 8.2253762, 47.5940816 ], + [ 8.2253954, 47.5941172 ], + [ 8.2253992, 47.5941482 ], + [ 8.2253878, 47.5941821 ], + [ 8.2253813, 47.5941915 ], + [ 8.2253633, 47.5942175 ], + [ 8.2253414, 47.5942398 ], + [ 8.2252959, 47.5942749 ], + [ 8.2256575, 47.5945037 ], + [ 8.2259601, 47.5946946 ], + [ 8.2260733, 47.5946253 ], + [ 8.2261146, 47.5946083 ], + [ 8.2261724, 47.5945987 ], + [ 8.2262122, 47.5946017 ], + [ 8.2262541, 47.5946075 ], + [ 8.2262992, 47.5946187 ], + [ 8.2263967, 47.5946459 ], + [ 8.2266418, 47.5947157 ], + [ 8.226696, 47.5947233 ], + [ 8.226744, 47.5947241 ], + [ 8.2268111, 47.5947227 ], + [ 8.2269525, 47.5947136 ], + [ 8.2270591, 47.5946987 ], + [ 8.2271596, 47.5946872 ], + [ 8.2273227, 47.5946538 ], + [ 8.2274512, 47.5946179 ] + ], + [ + [ 8.2455391, 47.5773602 ], + [ 8.2454262, 47.5774054 ], + [ 8.2453155, 47.5774653 ], + [ 8.2450631, 47.5776055 ], + [ 8.2448649, 47.577700899999996 ], + [ 8.2447866, 47.5777096 ], + [ 8.2447127, 47.5777423 ], + [ 8.2445611, 47.5778119 ], + [ 8.2444906, 47.5778192 ], + [ 8.2444136, 47.5777862 ], + [ 8.2443987, 47.5777137 ], + [ 8.2443665, 47.577667 ], + [ 8.2443079, 47.5775654 ], + [ 8.2442538, 47.5774932 ], + [ 8.2442377, 47.577355 ], + [ 8.2442379, 47.5771401 ], + [ 8.2442099, 47.5771054 ], + [ 8.2442387, 47.577073 ], + [ 8.2442239, 47.5770073 ], + [ 8.2441605, 47.5769675 ], + [ 8.2441419, 47.5769152 ], + [ 8.2441145, 47.5767999 ], + [ 8.244147, 47.5767514 ], + [ 8.2442932, 47.576706 ], + [ 8.244324, 47.5766749 ], + [ 8.2441642, 47.5766143 ], + [ 8.2441395, 47.5765433 ], + [ 8.2441541, 47.5764814 ], + [ 8.2442506, 47.5765062 ], + [ 8.2442767, 47.5765463 ], + [ 8.2444007, 47.5765763 ], + [ 8.2445662, 47.5766288 ], + [ 8.2447096, 47.5766465 ], + [ 8.2447871, 47.5767091 ], + [ 8.2448381, 47.5767141 ], + [ 8.2448608, 47.5766615 ], + [ 8.245016, 47.5766859 ], + [ 8.2451083, 47.576696 ], + [ 8.2451969, 47.5767208 ], + [ 8.2452523, 47.5767499 ], + [ 8.2452535, 47.5768225 ], + [ 8.2451994, 47.5768645 ], + [ 8.2452308, 47.5769851 ], + [ 8.245254599999999, 47.5771139 ], + [ 8.2452428, 47.5772241 ], + [ 8.2452553, 47.5772697 ], + [ 8.2453164, 47.5772893 ], + [ 8.2453848, 47.5772808 ], + [ 8.2454447, 47.5772307 ], + [ 8.2454937, 47.5772263 ], + [ 8.2455551, 47.5771493 ], + [ 8.2456285, 47.577087 ], + [ 8.2457594, 47.5770658 ], + [ 8.2458116, 47.5770265 ], + [ 8.245984, 47.5769084 ], + [ 8.2460719, 47.5768903 ], + [ 8.2461277, 47.5768268 ], + [ 8.2461532, 47.576605 ], + [ 8.2461078, 47.576467 ], + [ 8.2459797, 47.5763149 ], + [ 8.2458649, 47.5762459 ], + [ 8.2457468, 47.5762158 ], + [ 8.245686, 47.5762163 ], + [ 8.2456091, 47.5763028 ], + [ 8.2455323, 47.5763974 ], + [ 8.2454675, 47.5763858 ], + [ 8.2454608, 47.5764557 ], + [ 8.2454182, 47.5764815 ], + [ 8.2453567, 47.5764376 ], + [ 8.2452105, 47.576487 ], + [ 8.2449957, 47.5765316 ], + [ 8.2447493, 47.5765643 ], + [ 8.244626, 47.5765733 ], + [ 8.2445212, 47.5765176 ], + [ 8.2443494, 47.5764397 ], + [ 8.2441774, 47.5763509 ], + [ 8.2439985, 47.5763214 ], + [ 8.2436715, 47.5762217 ], + [ 8.2434491, 47.5761683 ], + [ 8.2434739, 47.5760163 ], + [ 8.2435327, 47.5760159 ], + [ 8.243602, 47.5759402 ], + [ 8.2437263, 47.5758735 ], + [ 8.2438609, 47.5758403 ], + [ 8.2441243, 47.5757712 ], + [ 8.2443921, 47.5757329 ], + [ 8.2445098, 47.5757388 ], + [ 8.2445595, 47.5757787 ], + [ 8.2446158, 47.5758602 ], + [ 8.2446903, 47.5758664 ], + [ 8.2447721, 47.5758322 ], + [ 8.244948, 47.5758054 ], + [ 8.245183, 47.5757956 ], + [ 8.2454002, 47.5757793 ], + [ 8.245631, 47.575752 ], + [ 8.245792699999999, 47.5756971 ], + [ 8.245912, 47.5756842 ], + [ 8.2459812, 47.5757186 ], + [ 8.2460734, 47.5757206 ], + [ 8.2462039, 47.5756753 ], + [ 8.2462558, 47.575617199999996 ], + [ 8.2462945, 47.5753604 ], + [ 8.2463687, 47.575341 ], + [ 8.2464285, 47.5752869 ], + [ 8.2465627, 47.5752295 ], + [ 8.2467325, 47.5751866 ], + [ 8.2468897, 47.5751008 ], + [ 8.2471587, 47.5750156 ], + [ 8.247529, 47.574896 ], + [ 8.2478274, 47.5748132 ], + [ 8.2481721, 47.5746858 ], + [ 8.2484932, 47.5745518 ], + [ 8.2487422, 47.5744479 ], + [ 8.2489621, 47.574359 ], + [ 8.2492007, 47.5743304 ], + [ 8.2494022, 47.5743101 ], + [ 8.2497263, 47.5742406 ], + [ 8.2499974, 47.5741674 ], + [ 8.2500174, 47.5741927 ], + [ 8.2496655, 47.5744639 ], + [ 8.2491506, 47.5748384 ], + [ 8.2487518, 47.5751234 ], + [ 8.2481845, 47.5755184 ], + [ 8.2476981, 47.5758402 ], + [ 8.2472984, 47.5760755 ], + [ 8.2468302, 47.5764227 ], + [ 8.2464373, 47.576713 ], + [ 8.2460426, 47.5770087 ], + [ 8.245797, 47.5772012 ], + [ 8.2455391, 47.5773602 ] + ], + [ + [ 8.2401265, 47.5796627 ], + [ 8.2399127, 47.5797148 ], + [ 8.2397798, 47.5797894 ], + [ 8.2396221, 47.579858 ], + [ 8.2394705, 47.5798836 ], + [ 8.2393742, 47.5798628 ], + [ 8.2392928, 47.579799 ], + [ 8.2392755, 47.5796871 ], + [ 8.2393011, 47.5796026 ], + [ 8.2394085, 47.5794623 ], + [ 8.2395307, 47.5792621 ], + [ 8.239749400000001, 47.5789354 ], + [ 8.2399604, 47.5786916 ], + [ 8.2401084, 47.5785771 ], + [ 8.2402326, 47.5785103 ], + [ 8.2404083, 47.5784538 ], + [ 8.2406048, 47.5784493 ], + [ 8.2408174, 47.5784708 ], + [ 8.2410082, 47.5785293 ], + [ 8.2411684, 47.5786355 ], + [ 8.241257, 47.5787361 ], + [ 8.2412951, 47.5788953 ], + [ 8.2413589, 47.5789792 ], + [ 8.241384, 47.5790173 ], + [ 8.2413217, 47.5791849 ], + [ 8.2413244, 47.5792202 ], + [ 8.2414612, 47.5792499 ], + [ 8.2416369, 47.579195 ], + [ 8.2418042, 47.5791785 ], + [ 8.2422565, 47.5790924 ], + [ 8.2424078, 47.5790453 ], + [ 8.242523, 47.5788237 ], + [ 8.242534, 47.5786595 ], + [ 8.242483, 47.5785326 ], + [ 8.242417, 47.5784549 ], + [ 8.2423543, 47.5784415 ], + [ 8.2421704, 47.5783983 ], + [ 8.242096, 47.5783498 ], + [ 8.2420226, 47.578223 ], + [ 8.2419137, 47.5782606 ], + [ 8.2416659, 47.5782777 ], + [ 8.2414837, 47.578348 ], + [ 8.2413458, 47.5783889 ], + [ 8.2411933, 47.5783547 ], + [ 8.2411028, 47.5782771 ], + [ 8.2410549, 47.5782084 ], + [ 8.2410715, 47.5781194 ], + [ 8.2411947, 47.5779927 ], + [ 8.2413312, 47.5778522 ], + [ 8.2415375, 47.5777465 ], + [ 8.2416956, 47.5777101 ], + [ 8.2418096, 47.5777154 ], + [ 8.2419535, 47.5777727 ], + [ 8.2420933, 47.5778637 ], + [ 8.2421289, 47.5778511 ], + [ 8.2420806, 47.5777579 ], + [ 8.2420699, 47.5776384 ], + [ 8.2420496, 47.5774699 ], + [ 8.2420925, 47.577353 ], + [ 8.2421543, 47.5772974 ], + [ 8.2421136, 47.5772654 ], + [ 8.2420725, 47.5772075 ], + [ 8.2420719, 47.577163 ], + [ 8.2421311, 47.5770905 ], + [ 8.2421923, 47.576995 ], + [ 8.2422336, 47.576918 ], + [ 8.242228, 47.5768414 ], + [ 8.2421841, 47.5767405 ], + [ 8.2421719, 47.5766685 ], + [ 8.2422107, 47.5765731 ], + [ 8.242119, 47.5765676 ], + [ 8.2420584, 47.5765466 ], + [ 8.2420324, 47.5764502 ], + [ 8.2421113, 47.5763438 ], + [ 8.2420885, 47.5763148 ], + [ 8.2419974, 47.5763461 ], + [ 8.2419143, 47.5763207 ], + [ 8.2418385, 47.5763289 ], + [ 8.2417958, 47.5763123 ], + [ 8.2418398, 47.5762706 ], + [ 8.2420462, 47.576171 ], + [ 8.2421861, 47.5761117 ], + [ 8.2423867, 47.5760811 ], + [ 8.2425319, 47.576077 ], + [ 8.242646, 47.5760869 ], + [ 8.2429195, 47.5761525 ], + [ 8.2432021, 47.5762225 ], + [ 8.2435494, 47.576286 ], + [ 8.2437578, 47.5763336 ], + [ 8.2438906, 47.5764001 ], + [ 8.2439724, 47.5764916 ], + [ 8.2440211, 47.5766139 ], + [ 8.2440153, 47.5766645 ], + [ 8.2440089, 47.5767471 ], + [ 8.2440065, 47.5768304 ], + [ 8.2440513, 47.5768685 ], + [ 8.2440769, 47.5769168 ], + [ 8.2440893, 47.5769983 ], + [ 8.2441427, 47.5771298 ], + [ 8.2441697, 47.5772937 ], + [ 8.2441718, 47.577444 ], + [ 8.2441997, 47.5775128 ], + [ 8.2442817, 47.5776196 ], + [ 8.2443503, 47.577731 ], + [ 8.2443739, 47.5778122 ], + [ 8.2443434, 47.5778645 ], + [ 8.2440413, 47.5779878 ], + [ 8.2438352, 47.5781058 ], + [ 8.2437137, 47.5781987 ], + [ 8.2434503, 47.5783693 ], + [ 8.2432929, 47.5784548 ], + [ 8.2431915, 47.578546 ], + [ 8.2431348, 47.5786445 ], + [ 8.2429748, 47.5788542 ], + [ 8.2429455, 47.5789909 ], + [ 8.242977, 47.5791594 ], + [ 8.2428994, 47.5791967 ], + [ 8.2428519, 47.5793121 ], + [ 8.2427676, 47.5793526 ], + [ 8.2427214, 47.5794035 ], + [ 8.2425314, 47.5795505 ], + [ 8.242109, 47.5798526 ], + [ 8.2419056, 47.5799967 ], + [ 8.2417213, 47.5800808 ], + [ 8.2415738, 47.5802306 ], + [ 8.2411536, 47.5805265 ], + [ 8.2409234, 47.5806784 ], + [ 8.2408284, 47.5807496 ], + [ 8.2406006, 47.5809138 ], + [ 8.2404591, 47.5810175 ], + [ 8.2402728, 47.5811093 ], + [ 8.2401162, 47.58125 ], + [ 8.2398086, 47.5814562 ], + [ 8.2394458, 47.5817072 ], + [ 8.2389302, 47.5820528 ], + [ 8.2386225, 47.5822589 ], + [ 8.2383406, 47.5823867 ], + [ 8.2381337, 47.582448 ], + [ 8.2379717, 47.5825258 ], + [ 8.2379192, 47.5826059 ], + [ 8.2377054, 47.582655 ], + [ 8.2375351, 47.5826209 ], + [ 8.2374289, 47.5825388 ], + [ 8.2373667, 47.582415 ], + [ 8.2373543, 47.5823277 ], + [ 8.2373866, 47.5822447 ], + [ 8.2375257, 47.5821302 ], + [ 8.2378875, 47.581959 ], + [ 8.2380807, 47.5818763 ], + [ 8.2384041, 47.5816793 ], + [ 8.2385143, 47.5815803 ], + [ 8.2386252, 47.5815228 ], + [ 8.2388809, 47.5812802 ], + [ 8.2390537, 47.5811747 ], + [ 8.2391244, 47.5811221 ], + [ 8.2392936, 47.581081 ], + [ 8.2395735, 47.580964 ], + [ 8.2398792, 47.5807809 ], + [ 8.2400907, 47.5807288 ], + [ 8.2403483, 47.5806181 ], + [ 8.2405305, 47.5805539 ], + [ 8.2406538, 47.5804257 ], + [ 8.2406661, 47.580352 ], + [ 8.2407285, 47.5801844 ], + [ 8.2406681, 47.5800238 ], + [ 8.24053, 47.5799037 ], + [ 8.2404454, 47.5797739 ], + [ 8.2404251, 47.5796084 ], + [ 8.2401265, 47.5796627 ] + ], + [ + [ 8.2354622, 47.5831617 ], + [ 8.235634, 47.5832031 ], + [ 8.2356725, 47.5832124 ], + [ 8.2358337, 47.5832604 ], + [ 8.2359769, 47.5833024 ], + [ 8.2360536, 47.5833571 ], + [ 8.2360698, 47.5834015 ], + [ 8.2360553, 47.5834692 ], + [ 8.2360028, 47.583531 ], + [ 8.2358853, 47.5835717 ], + [ 8.2358927, 47.5836224 ], + [ 8.2357787, 47.5837399 ], + [ 8.2356422, 47.5838544 ], + [ 8.2354962, 47.58392 ], + [ 8.2353794, 47.5840068 ], + [ 8.2353087, 47.5840503 ], + [ 8.2351512, 47.5840974 ], + [ 8.2349425, 47.5841465 ], + [ 8.2348086, 47.5841336 ], + [ 8.2346718, 47.5840824 ], + [ 8.2344741, 47.5839793 ], + [ 8.2344195, 47.5839076 ], + [ 8.2343781, 47.5838249 ], + [ 8.2343925, 47.5837465 ], + [ 8.2344735, 47.5836477 ], + [ 8.2346447, 47.5834806 ], + [ 8.234773, 47.5834183 ], + [ 8.2348388, 47.5833472 ], + [ 8.2349826, 47.5832787 ], + [ 8.2351886, 47.5831974 ], + [ 8.2353285, 47.5831641 ], + [ 8.2354622, 47.5831617 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "KTAG301", + "country" : "CHE", + "name" : [ + { + "text" : "Klingnauer Stausee", + "lang" : "de-CH" + }, + { + "text" : "Klingnauer Stausee", + "lang" : "fr-CH" + }, + { + "text" : "Klingnauer Stausee", + "lang" : "it-CH" + }, + { + "text" : "Klingnauer Stausee", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "regulationExemption" : "NO", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "schedule" : [ + { + "day" : [ "ANY" ], + "startTime" : "00:00:00.00+01:00", + "endTime" : "00:00:00.00+01:00" + } + ] + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Aargau", + "lang" : "de-CH" + }, + { + "text" : "Canton d'Argovie", + "lang" : "fr-CH" + }, + { + "text" : "Canton Argovia", + "lang" : "it-CH" + }, + { + "text" : "Canton of Aargau", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Departement Bau, Verkehr und Umwelt (BVU)", + "lang" : "de-CH" + }, + { + "text" : "Département de la construction, des transports et de l'environnement (CTE)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento delle costruzioni, dei trasporti e dell'ambiente (CTA)", + "lang" : "it-CH" + }, + { + "text" : "Department of Civil Engineering,Transport and Environment (CTE)", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Sektion Gewässernutzung", + "lang" : "de-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "fr-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "it-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ag.ch/de/verwaltung/bvu/umwelt-natur-landschaft/hochwasserschutz-gewaesser/gewaessernutzung", + "email" : "alg@ag.ch", + "phone" : "0041 62 835 34 50", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.0700057, 47.5238202 ], + [ 9.0698425, 47.5214685 ], + [ 9.0694978, 47.5191258 ], + [ 9.0689727, 47.5167986 ], + [ 9.0682686, 47.5144931 ], + [ 9.0673873, 47.5122157 ], + [ 9.0663315, 47.5099727 ], + [ 9.0651039, 47.5077702 ], + [ 9.063708, 47.5056143 ], + [ 9.0621476, 47.5035107 ], + [ 9.060427, 47.5014654 ], + [ 9.058551, 47.4994838 ], + [ 9.0565246, 47.4975715 ], + [ 9.0543534, 47.4957336 ], + [ 9.0520435, 47.4939752 ], + [ 9.0496011, 47.4923011 ], + [ 9.0470329, 47.4907159 ], + [ 9.044346, 47.4892238 ], + [ 9.0415477, 47.4878291 ], + [ 9.0386457, 47.4865355 ], + [ 9.0356479, 47.4853465 ], + [ 9.0325625, 47.4842654 ], + [ 9.0293981, 47.4832952 ], + [ 9.0261631, 47.4824385 ], + [ 9.0228666, 47.4816976 ], + [ 9.0195175, 47.4810746 ], + [ 9.0161249, 47.4805712 ], + [ 9.0126981, 47.4801887 ], + [ 9.0092466, 47.4799283 ], + [ 9.0057797, 47.4797905 ], + [ 9.002307, 47.4797758 ], + [ 8.9988378, 47.4798843 ], + [ 8.9953818, 47.4801156 ], + [ 8.9919483, 47.4804691 ], + [ 8.9885467, 47.4809439 ], + [ 8.9851864, 47.4815385 ], + [ 8.9818765, 47.4822515 ], + [ 8.9786261, 47.4830809 ], + [ 8.9754441, 47.4840243 ], + [ 8.9723391, 47.4850793 ], + [ 8.9693198, 47.4862429 ], + [ 8.9663942, 47.4875119 ], + [ 8.9635705, 47.4888829 ], + [ 8.9608564, 47.4903521 ], + [ 8.9582593, 47.4919156 ], + [ 8.9557863, 47.4935689 ], + [ 8.9534443, 47.4953077 ], + [ 8.9512395, 47.4971271 ], + [ 8.9491782, 47.4990222 ], + [ 8.9472659, 47.5009877 ], + [ 8.9455078, 47.5030184 ], + [ 8.9439089, 47.5051086 ], + [ 8.9424735, 47.5072526 ], + [ 8.9412055, 47.5094446 ], + [ 8.9401085, 47.5116785 ], + [ 8.9391855, 47.5139482 ], + [ 8.938439, 47.5162476 ], + [ 8.9378711, 47.5185703 ], + [ 8.9374834, 47.5209099 ], + [ 8.9372769, 47.52326 ], + [ 8.9372523, 47.5256143 ], + [ 8.9374096, 47.5279661 ], + [ 8.9377485, 47.5303092 ], + [ 8.938268, 47.5326371 ], + [ 8.9389668, 47.5349433 ], + [ 8.9398429, 47.5372216 ], + [ 8.9408939, 47.5394658 ], + [ 8.9421171, 47.5416696 ], + [ 8.943509, 47.543827 ], + [ 8.9450659, 47.5459321 ], + [ 8.9467835, 47.5479791 ], + [ 8.9486571, 47.5499624 ], + [ 8.9506816, 47.5518766 ], + [ 8.9528514, 47.5537164 ], + [ 8.9551607, 47.5554767 ], + [ 8.957603, 47.5571528 ], + [ 8.9601718, 47.55874 ], + [ 8.9628598, 47.5602339 ], + [ 8.9656599, 47.5616305 ], + [ 8.9685642, 47.562926 ], + [ 8.9715649, 47.5641166 ], + [ 8.9746536, 47.5651993 ], + [ 8.977822, 47.566171 ], + [ 8.9810612, 47.5670291 ], + [ 8.9843625, 47.5677711 ], + [ 8.9877167, 47.5683951 ], + [ 8.9911146, 47.5688993 ], + [ 8.9945469, 47.5692824 ], + [ 8.9980042, 47.5695433 ], + [ 9.0014769, 47.5696813 ], + [ 9.0049556, 47.569696 ], + [ 9.0084306, 47.5695873 ], + [ 9.0118924, 47.5693556 ], + [ 9.0153315, 47.5690016 ], + [ 9.0187384, 47.568526 ], + [ 9.0221039, 47.5679304 ], + [ 9.0254186, 47.5672163 ], + [ 9.0286734, 47.5663856 ], + [ 9.0318594, 47.5654408 ], + [ 9.0349679, 47.5643842 ], + [ 9.0379903, 47.563219 ], + [ 9.0409183, 47.5619482 ], + [ 9.0437438, 47.560575299999996 ], + [ 9.0464592, 47.5591042 ], + [ 9.049057, 47.5575388 ], + [ 9.0515301, 47.5558835 ], + [ 9.0538716, 47.5541428 ], + [ 9.0560752, 47.5523214 ], + [ 9.0581348, 47.5504245 ], + [ 9.0600448, 47.5484571 ], + [ 9.0618, 47.5464248 ], + [ 9.0633955, 47.544333 ], + [ 9.064827, 47.5421875 ], + [ 9.0660907, 47.5399942 ], + [ 9.067183, 47.5377591 ], + [ 9.0681009, 47.5354884 ], + [ 9.0688421, 47.5331882 ], + [ 9.0694044, 47.5308649 ], + [ 9.0697864, 47.5285249 ], + [ 9.069987, 47.5261745 ], + [ 9.0700057, 47.5238202 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZT001", + "country" : "CHE", + "name" : [ + { + "text" : "LSZT Lommis", + "lang" : "de-CH" + }, + { + "text" : "LSZT Lommis", + "lang" : "fr-CH" + }, + { + "text" : "LSZT Lommis", + "lang" : "it-CH" + }, + { + "text" : "LSZT Lommis", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Motorfluggruppe Thurgau", + "lang" : "de-CH" + }, + { + "text" : "Motorfluggruppe Thurgau", + "lang" : "fr-CH" + }, + { + "text" : "Motorfluggruppe Thurgau", + "lang" : "it-CH" + }, + { + "text" : "Motorfluggruppe Thurgau", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.mfgt.ch/flugplatz/drohnen/drones/", + "phone" : "0041523663333", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P04DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5429346, 47.553413 ], + [ 7.5429058, 47.5534348 ], + [ 7.5430551999999995, 47.5534845 ], + [ 7.5431756, 47.5535371 ], + [ 7.5432992, 47.5535911 ], + [ 7.5433863, 47.5536298 ], + [ 7.5437188, 47.5537777 ], + [ 7.5440797, 47.554004 ], + [ 7.544143, 47.5540462 ], + [ 7.5442903999999995, 47.5541445 ], + [ 7.544499, 47.554248 ], + [ 7.5449211, 47.5544832 ], + [ 7.5449959, 47.5545756 ], + [ 7.5450206, 47.5545906 ], + [ 7.5450197, 47.554607 ], + [ 7.545111, 47.5547252 ], + [ 7.5454092, 47.5549783 ], + [ 7.5455399, 47.5550687 ], + [ 7.5458625999999995, 47.5552504 ], + [ 7.5459899, 47.5553524 ], + [ 7.5461042, 47.5554387 ], + [ 7.5461933, 47.5555176 ], + [ 7.546269, 47.5556006 ], + [ 7.546354, 47.5556734 ], + [ 7.5465212, 47.5557213 ], + [ 7.546818, 47.5558963 ], + [ 7.5468927, 47.5559701 ], + [ 7.547103, 47.5560374 ], + [ 7.54759, 47.5561175 ], + [ 7.5477019, 47.5561516 ], + [ 7.5478102, 47.5561224 ], + [ 7.5481039, 47.556303 ], + [ 7.5482298, 47.5563666 ], + [ 7.5483058, 47.5564379 ], + [ 7.5484188, 47.5565171 ], + [ 7.5486394, 47.556662 ], + [ 7.5488471, 47.5568076 ], + [ 7.549108, 47.5569805 ], + [ 7.5493395, 47.557189 ], + [ 7.5495643, 47.5573824 ], + [ 7.5497892, 47.5575223 ], + [ 7.5501715, 47.5577509 ], + [ 7.5502531, 47.5577556 ], + [ 7.5502796, 47.5577717 ], + [ 7.5503322, 47.5578135 ], + [ 7.5503418, 47.5578077 ], + [ 7.5504702, 47.5578084 ], + [ 7.5510658, 47.5580826 ], + [ 7.5511492, 47.558073 ], + [ 7.5512314, 47.5581053 ], + [ 7.5514059, 47.5581714 ], + [ 7.5515875, 47.5582518 ], + [ 7.5519085, 47.5583867 ], + [ 7.5520844, 47.558399 ], + [ 7.5521975999999995, 47.5584312 ], + [ 7.552357, 47.5584838 ], + [ 7.5525039, 47.5584972 ], + [ 7.5525961, 47.5585592 ], + [ 7.5528242, 47.558594 ], + [ 7.5530094, 47.5586381 ], + [ 7.5532056, 47.5586922 ], + [ 7.5533871, 47.558746 ], + [ 7.5535399, 47.5588376 ], + [ 7.5536419, 47.5589119 ], + [ 7.5537495, 47.5590227 ], + [ 7.5538602, 47.559142 ], + [ 7.5539806, 47.5592606 ], + [ 7.5541226, 47.5593725 ], + [ 7.5542358, 47.5594596 ], + [ 7.554369, 47.5595336 ], + [ 7.5545608, 47.5596502 ], + [ 7.5547685, 47.559765 ], + [ 7.5549774, 47.5598842 ], + [ 7.5551633, 47.559992199999996 ], + [ 7.5553592, 47.5600992 ], + [ 7.5555625, 47.5602201 ], + [ 7.555808, 47.5603439 ], + [ 7.5560296000000005, 47.5604544 ], + [ 7.5562279, 47.5605532 ], + [ 7.5565238, 47.5607038 ], + [ 7.5567085, 47.5608153 ], + [ 7.5567919, 47.5607943 ], + [ 7.556812, 47.5608202 ], + [ 7.5568159999999995, 47.5608252 ], + [ 7.5569572, 47.5609196 ], + [ 7.5574414, 47.5613787 ], + [ 7.5579111, 47.5616998 ], + [ 7.5579596, 47.5616672 ], + [ 7.5579713, 47.5616589 ], + [ 7.5586591, 47.5620205 ], + [ 7.55868, 47.5620031 ], + [ 7.5586972, 47.5619887 ], + [ 7.5582045, 47.5617346 ], + [ 7.5580435999999995, 47.5616446 ], + [ 7.5579026, 47.5615481 ], + [ 7.5578879, 47.5615381 ], + [ 7.5576212, 47.5613504 ], + [ 7.5576215, 47.5613423 ], + [ 7.5576208000000005, 47.5613342 ], + [ 7.5576191, 47.5613262 ], + [ 7.5576165, 47.561318299999996 ], + [ 7.5576128, 47.5613106 ], + [ 7.5576083, 47.5613031 ], + [ 7.5576028, 47.5612959 ], + [ 7.5575965, 47.561289 ], + [ 7.5573683, 47.5610683 ], + [ 7.5573756, 47.561060499999996 ], + [ 7.5572338, 47.560927 ], + [ 7.557082, 47.560803 ], + [ 7.5568612, 47.5606766 ], + [ 7.5564303, 47.5604566 ], + [ 7.5562252, 47.5603521 ], + [ 7.5557792, 47.5601333 ], + [ 7.5557491, 47.5601619 ], + [ 7.5557053, 47.560137 ], + [ 7.5555232, 47.5600361 ], + [ 7.5555064, 47.5600275 ], + [ 7.5554813, 47.5600175 ], + [ 7.5552861, 47.5598956 ], + [ 7.5551577, 47.5598003 ], + [ 7.5549744, 47.5596826 ], + [ 7.5544827, 47.5594356 ], + [ 7.5544725, 47.5594306 ], + [ 7.5544175, 47.5593976 ], + [ 7.5542396, 47.5592794 ], + [ 7.5542215, 47.5592632 ], + [ 7.5541821, 47.5592168 ], + [ 7.5542176, 47.5591823 ], + [ 7.5540217, 47.5589539 ], + [ 7.5538340999999996, 47.5587765 ], + [ 7.5536922, 47.5586895 ], + [ 7.5535929, 47.5586286 ], + [ 7.5529909, 47.5584288 ], + [ 7.5521167, 47.5581904 ], + [ 7.552094, 47.5581842 ], + [ 7.5518102, 47.5581005 ], + [ 7.5513462, 47.5579402 ], + [ 7.5513252, 47.557961 ], + [ 7.5512411, 47.5579258 ], + [ 7.5504868, 47.5576103 ], + [ 7.5504135, 47.5575794 ], + [ 7.5497577, 47.5573156 ], + [ 7.5497388, 47.5572935 ], + [ 7.5495206, 47.5570374 ], + [ 7.5492406, 47.5568017 ], + [ 7.548893, 47.556553 ], + [ 7.5489224, 47.5565264 ], + [ 7.5487748, 47.5564498 ], + [ 7.5487567, 47.5564679 ], + [ 7.5485425, 47.5562849 ], + [ 7.5484453, 47.556247 ], + [ 7.5483343, 47.5561785 ], + [ 7.5482096, 47.5561124 ], + [ 7.5480781, 47.5560583 ], + [ 7.5480488999999995, 47.5560385 ], + [ 7.5478874000000005, 47.5559746 ], + [ 7.5479275, 47.5559362 ], + [ 7.5478044, 47.5558809 ], + [ 7.5477941, 47.555891 ], + [ 7.547737, 47.5559451 ], + [ 7.5475525, 47.5558568 ], + [ 7.5475118, 47.5558373 ], + [ 7.5474519, 47.5558942 ], + [ 7.5472804, 47.5558634 ], + [ 7.5471899, 47.5558479 ], + [ 7.5470982, 47.5558326 ], + [ 7.5470246, 47.5558047 ], + [ 7.5469028, 47.5557617 ], + [ 7.5467696, 47.5556917 ], + [ 7.5465748, 47.5555475 ], + [ 7.5465019, 47.5554854 ], + [ 7.546434, 47.5554087 ], + [ 7.5463077, 47.5553012 ], + [ 7.5463283, 47.5552818 ], + [ 7.5463202, 47.5552777 ], + [ 7.5461206, 47.5551222 ], + [ 7.5459512, 47.5550204 ], + [ 7.5457708, 47.5548979 ], + [ 7.5456778, 47.554815 ], + [ 7.5456562, 47.5547552 ], + [ 7.5456464, 47.5547469 ], + [ 7.5456225, 47.5547396 ], + [ 7.5456163, 47.554739 ], + [ 7.54561, 47.5547387 ], + [ 7.5456037, 47.5547389 ], + [ 7.5455974, 47.5547394 ], + [ 7.5455912, 47.5547403 ], + [ 7.5455852, 47.5547415 ], + [ 7.5455793, 47.5547431 ], + [ 7.5455736, 47.554745 ], + [ 7.5455683, 47.5547472 ], + [ 7.5455632, 47.5547498 ], + [ 7.5455585, 47.5547526 ], + [ 7.5455541, 47.5547557 ], + [ 7.5455502, 47.5547591 ], + [ 7.5455467, 47.5547627 ], + [ 7.5455437, 47.5547664 ], + [ 7.5455412, 47.5547703 ], + [ 7.5455391, 47.5547744 ], + [ 7.5455377, 47.5547786 ], + [ 7.5455336, 47.5547842 ], + [ 7.5455394, 47.55479 ], + [ 7.5455372, 47.5547956 ], + [ 7.5455185, 47.5548057 ], + [ 7.5453691, 47.5546747 ], + [ 7.5452132, 47.55451 ], + [ 7.5451898, 47.5545147 ], + [ 7.5451668, 47.5544999 ], + [ 7.5451771, 47.5544897 ], + [ 7.5451793, 47.5544825 ], + [ 7.5451759, 47.5544766 ], + [ 7.5451627, 47.5544648 ], + [ 7.5450072, 47.5543816 ], + [ 7.5447399, 47.5542392 ], + [ 7.544449, 47.5540877 ], + [ 7.5441648, 47.5539249 ], + [ 7.5441367, 47.5538961 ], + [ 7.5437482, 47.5536584 ], + [ 7.5435374, 47.5535622 ], + [ 7.5433493, 47.5534784 ], + [ 7.5432275, 47.5534325 ], + [ 7.5431471, 47.5534006 ], + [ 7.5431139, 47.553389 ], + [ 7.5430201, 47.5533487 ], + [ 7.5430038, 47.553361 ], + [ 7.5430001, 47.5533675 ], + [ 7.5429921, 47.5533722 ], + [ 7.5429842, 47.553377 ], + [ 7.5429766, 47.553382 ], + [ 7.5429731, 47.5533845 ], + [ 7.5429695, 47.5533869 ], + [ 7.5429661, 47.5533894 ], + [ 7.5429627, 47.5533919 ], + [ 7.5429346, 47.553413 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns133", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Bachgraben", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Bachgraben", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Bachgraben", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Bachgraben", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6278410999999995, 47.5235891 ], + [ 7.6290721, 47.5228689 ], + [ 7.6289553, 47.5227891 ], + [ 7.6283632, 47.5229894 ], + [ 7.6283422, 47.5229951 ], + [ 7.6282495, 47.5230155 ], + [ 7.628154, 47.5230292 ], + [ 7.628057, 47.5230361 ], + [ 7.6279596, 47.5230361 ], + [ 7.6278625, 47.5230292 ], + [ 7.6277671, 47.5230155 ], + [ 7.6276743, 47.5229951 ], + [ 7.6275853, 47.5229683 ], + [ 7.6275009, 47.5229352 ], + [ 7.6274218, 47.5228964 ], + [ 7.6273493, 47.5228522 ], + [ 7.6273336, 47.5228412 ], + [ 7.6272701, 47.5227911 ], + [ 7.6272147, 47.5227367 ], + [ 7.627168, 47.5226787 ], + [ 7.6271305, 47.5226178 ], + [ 7.6271026, 47.5225544 ], + [ 7.6270846, 47.5224895 ], + [ 7.6270768, 47.5224237 ], + [ 7.6270791, 47.5223577 ], + [ 7.627084, 47.5223305 ], + [ 7.6276872000000004, 47.5216582 ], + [ 7.6278164, 47.5215127 ], + [ 7.6279622, 47.5213375 ], + [ 7.6280089, 47.521299 ], + [ 7.6280612, 47.521264 ], + [ 7.6281188, 47.5212328 ], + [ 7.6281604, 47.5212141 ], + [ 7.6282251, 47.5211902 ], + [ 7.6282867, 47.5211727 ], + [ 7.6286546, 47.5210725 ], + [ 7.628757, 47.5210391 ], + [ 7.6289146, 47.5209924 ], + [ 7.6290651, 47.5209596 ], + [ 7.6292334, 47.5209351 ], + [ 7.6294087, 47.5209224 ], + [ 7.6295634, 47.5209148 ], + [ 7.62971, 47.5209096 ], + [ 7.6298436, 47.5209121 ], + [ 7.6299616, 47.5209138 ], + [ 7.6301299, 47.5209318 ], + [ 7.6313958, 47.5211395 ], + [ 7.6314883, 47.5211523 ], + [ 7.6315375, 47.5211563 ], + [ 7.6315968, 47.5211611 ], + [ 7.6316387, 47.5211619 ], + [ 7.6317025, 47.5211587 ], + [ 7.6319814, 47.5210234 ], + [ 7.6319892, 47.520997 ], + [ 7.6320672, 47.5206958 ], + [ 7.6316595, 47.5204626 ], + [ 7.6312065, 47.5202717 ], + [ 7.629263, 47.5196574 ], + [ 7.6298384, 47.5193185 ], + [ 7.6301995, 47.5191656 ], + [ 7.630628, 47.5189784 ], + [ 7.630829, 47.5189035 ], + [ 7.630981, 47.5188568 ], + [ 7.6310338, 47.5188435 ], + [ 7.6311854, 47.518813 ], + [ 7.6316382, 47.5187443 ], + [ 7.6320201, 47.5187268 ], + [ 7.6321315, 47.5187193 ], + [ 7.632218, 47.5187119 ], + [ 7.6326811, 47.5186528 ], + [ 7.6328857, 47.5186307 ], + [ 7.6330606, 47.518607 ], + [ 7.6330919, 47.5186001 ], + [ 7.6335502, 47.5187996 ], + [ 7.6342466, 47.51899 ], + [ 7.6349746, 47.5191396 ], + [ 7.6349952, 47.519084 ], + [ 7.635009, 47.5190466 ], + [ 7.6350683, 47.5188865 ], + [ 7.6354704, 47.5186029 ], + [ 7.6368035, 47.5176735 ], + [ 7.6368319, 47.5176494 ], + [ 7.637029, 47.5175154 ], + [ 7.6372395, 47.5173015 ], + [ 7.6367782, 47.5170144 ], + [ 7.6366723, 47.5169485 ], + [ 7.6361702000000005, 47.5166348 ], + [ 7.6369219, 47.5162025 ], + [ 7.6375322, 47.5157244 ], + [ 7.6378252, 47.5157598 ], + [ 7.6385761, 47.5151761 ], + [ 7.6385686, 47.5149757 ], + [ 7.6385669, 47.5149573 ], + [ 7.6385623, 47.5149391 ], + [ 7.638555, 47.5149213 ], + [ 7.6385449, 47.5149041 ], + [ 7.6385237, 47.5148788 ], + [ 7.6385058, 47.5148631 ], + [ 7.6384856, 47.5148488 ], + [ 7.6384633, 47.5148359 ], + [ 7.638431, 47.5148234 ], + [ 7.6383421, 47.5147998 ], + [ 7.6383309, 47.5147982 ], + [ 7.6382622, 47.5147913 ], + [ 7.6381844999999995, 47.514789 ], + [ 7.638116, 47.5147836 ], + [ 7.6380487, 47.5147735 ], + [ 7.6379833, 47.5147586 ], + [ 7.6379398, 47.5147445 ], + [ 7.6378617, 47.5147138 ], + [ 7.6377887, 47.5146777 ], + [ 7.6377798, 47.5146736 ], + [ 7.6375793, 47.5145692 ], + [ 7.6375196, 47.5144873 ], + [ 7.6375083, 47.5144724 ], + [ 7.6374994, 47.5144567 ], + [ 7.6374929, 47.5144405 ], + [ 7.6374897, 47.5144279 ], + [ 7.6374877, 47.5144112 ], + [ 7.6374884, 47.5143944 ], + [ 7.6374916, 47.5143778 ], + [ 7.6374973, 47.5143614 ], + [ 7.6375055, 47.5143455 ], + [ 7.6375093, 47.5143396 ], + [ 7.6375136999999995, 47.5143307 ], + [ 7.6375195, 47.5143221 ], + [ 7.6375265, 47.514314 ], + [ 7.6375348, 47.5143064 ], + [ 7.6375440999999995, 47.5142995 ], + [ 7.6375546, 47.5142932 ], + [ 7.6375659, 47.5142877 ], + [ 7.6375361, 47.5142635 ], + [ 7.6372767, 47.514085 ], + [ 7.6372417, 47.5140492 ], + [ 7.6371986, 47.5139951 ], + [ 7.6371961, 47.5139904 ], + [ 7.6371472, 47.5139117 ], + [ 7.6370864, 47.5138369 ], + [ 7.6370144, 47.5137669 ], + [ 7.6369321, 47.5137023 ], + [ 7.6368402, 47.5136439 ], + [ 7.6364222, 47.5134099 ], + [ 7.6363449, 47.5133491 ], + [ 7.6360554, 47.513623 ], + [ 7.6355829, 47.5137804 ], + [ 7.6346186, 47.5142117 ], + [ 7.6342546, 47.5143562 ], + [ 7.6338329, 47.5146007 ], + [ 7.6335245, 47.5147325 ], + [ 7.6331479, 47.5148586 ], + [ 7.6327991, 47.5149428 ], + [ 7.6326372, 47.5149968 ], + [ 7.6321975, 47.515066 ], + [ 7.6319635, 47.515126 ], + [ 7.6317927999999995, 47.5152013 ], + [ 7.6315135, 47.5153589 ], + [ 7.6311948, 47.5157408 ], + [ 7.6307258000000004, 47.5161886 ], + [ 7.6304562, 47.5159888 ], + [ 7.6303915, 47.5159409 ], + [ 7.6303506, 47.5160091 ], + [ 7.6303447, 47.516068 ], + [ 7.6303871999999995, 47.5161242 ], + [ 7.6303961000000005, 47.5161267 ], + [ 7.6305, 47.516169 ], + [ 7.6305309, 47.5162234 ], + [ 7.6304996, 47.5163036 ], + [ 7.6304031, 47.5163095 ], + [ 7.630363, 47.5163282 ], + [ 7.6303491999999995, 47.516373 ], + [ 7.630348, 47.516395 ], + [ 7.6303833, 47.5164804 ], + [ 7.6304013, 47.5165153 ], + [ 7.6303974, 47.5165244 ], + [ 7.6303635, 47.5165808 ], + [ 7.6303735, 47.516666 ], + [ 7.6304466, 47.5167833 ], + [ 7.6304682, 47.5168261 ], + [ 7.6304638, 47.5168635 ], + [ 7.6304315, 47.5170099 ], + [ 7.6304645, 47.5171398 ], + [ 7.6305192, 47.5172752 ], + [ 7.6305686999999995, 47.5173249 ], + [ 7.6306068, 47.517415 ], + [ 7.6306037, 47.5174884 ], + [ 7.6306142999999995, 47.5175851 ], + [ 7.6306109, 47.5175937 ], + [ 7.6305751, 47.5176646 ], + [ 7.6305575999999995, 47.5177282 ], + [ 7.630539, 47.5177752 ], + [ 7.6304839, 47.5178165 ], + [ 7.6304839, 47.5178258 ], + [ 7.6304714, 47.5178687 ], + [ 7.6304883, 47.5179405 ], + [ 7.6304909, 47.5179714 ], + [ 7.6304957, 47.517998 ], + [ 7.6304644, 47.5180386 ], + [ 7.6304425, 47.51809 ], + [ 7.6304552, 47.518151 ], + [ 7.6304481, 47.5181866 ], + [ 7.6303843, 47.5182061 ], + [ 7.6302709, 47.5183024 ], + [ 7.6302107, 47.5183204 ], + [ 7.6302036, 47.5183328 ], + [ 7.630158, 47.5184135 ], + [ 7.6300988, 47.5184574 ], + [ 7.6300715, 47.5184827 ], + [ 7.6300653, 47.5185252 ], + [ 7.6301074, 47.5185622 ], + [ 7.6300973, 47.5186493 ], + [ 7.6300763, 47.5186766 ], + [ 7.6300598, 47.5186961 ], + [ 7.6300492, 47.5187767 ], + [ 7.6300109, 47.5188179 ], + [ 7.6300004999999995, 47.518857 ], + [ 7.6299969, 47.5188655 ], + [ 7.6299474, 47.5189097 ], + [ 7.6299406, 47.5189242 ], + [ 7.6298999, 47.5190041 ], + [ 7.6298509, 47.519069 ], + [ 7.629777, 47.5190745 ], + [ 7.6297353999999995, 47.5190913 ], + [ 7.6296658, 47.519161 ], + [ 7.6296529, 47.5191687 ], + [ 7.6295402, 47.5192248 ], + [ 7.6295125, 47.5192529 ], + [ 7.6294837, 47.5192798 ], + [ 7.6293682, 47.5193211 ], + [ 7.6293029, 47.5193719 ], + [ 7.6289169, 47.5195 ], + [ 7.6288450999999995, 47.519537 ], + [ 7.6288121, 47.5195806 ], + [ 7.6287663, 47.5196121 ], + [ 7.6286765, 47.5196108 ], + [ 7.6286239, 47.5195926 ], + [ 7.6285869, 47.5195949 ], + [ 7.6285282, 47.5196109 ], + [ 7.6285241, 47.5196132 ], + [ 7.628425, 47.5196748 ], + [ 7.6283281, 47.5196654 ], + [ 7.6282777, 47.5196559 ], + [ 7.6282486, 47.5196636 ], + [ 7.6282305, 47.5196668 ], + [ 7.6281877, 47.5197194 ], + [ 7.6281137999999995, 47.5197396 ], + [ 7.6280478, 47.519735 ], + [ 7.6279937, 47.5197199 ], + [ 7.6279284, 47.5196842 ], + [ 7.6278583, 47.5197035 ], + [ 7.6278483, 47.5198103 ], + [ 7.6278213, 47.5198295 ], + [ 7.6278189, 47.5198318 ], + [ 7.6277665, 47.5198415 ], + [ 7.6276271, 47.5198651 ], + [ 7.6275533, 47.5198605 ], + [ 7.6275335, 47.5198746 ], + [ 7.6274309, 47.5199424 ], + [ 7.6272532, 47.5199997 ], + [ 7.6271287999999995, 47.5199642 ], + [ 7.627091, 47.5199852 ], + [ 7.6270258, 47.5200327 ], + [ 7.6269884999999995, 47.5200425 ], + [ 7.6269294, 47.5200388 ], + [ 7.6268109, 47.5200554 ], + [ 7.6268001, 47.5200618 ], + [ 7.6267643, 47.5200723 ], + [ 7.6267177, 47.5200817 ], + [ 7.6267051, 47.5200811 ], + [ 7.6264561, 47.5200318 ], + [ 7.6264209, 47.5200842 ], + [ 7.6263646, 47.5200926 ], + [ 7.6263259, 47.5201025 ], + [ 7.6262273, 47.5200848 ], + [ 7.6260375, 47.5201109 ], + [ 7.6258112, 47.5201977 ], + [ 7.6257792, 47.5202364 ], + [ 7.6257166, 47.5202876 ], + [ 7.625648, 47.5202605 ], + [ 7.6256046, 47.5202423 ], + [ 7.6253078, 47.5202795 ], + [ 7.6252309, 47.5203378 ], + [ 7.6251729, 47.5203597 ], + [ 7.6251051, 47.5203865 ], + [ 7.6249455, 47.5204374 ], + [ 7.6247784, 47.5205064 ], + [ 7.6246861, 47.5205499 ], + [ 7.6245121000000005, 47.5206402 ], + [ 7.6244597, 47.5206674 ], + [ 7.6243757, 47.5207092 ], + [ 7.624269, 47.5207679 ], + [ 7.6242668, 47.5207983 ], + [ 7.6242592, 47.5208793 ], + [ 7.6239777, 47.5212097 ], + [ 7.6238604, 47.5213707 ], + [ 7.6238034, 47.5215268 ], + [ 7.6237764, 47.5216917 ], + [ 7.6237079, 47.5218482 ], + [ 7.6236098, 47.5220056 ], + [ 7.6234956, 47.5221571 ], + [ 7.6232586, 47.5224325 ], + [ 7.6235688, 47.5224604 ], + [ 7.6242678, 47.5224592 ], + [ 7.6247838, 47.522466 ], + [ 7.6254311999999995, 47.5223264 ], + [ 7.6259024, 47.5222405 ], + [ 7.6261517, 47.5226197 ], + [ 7.6264646, 47.5230158 ], + [ 7.6267501, 47.5233732 ], + [ 7.6272856, 47.523567 ], + [ 7.6278410999999995, 47.5235891 ] + ], + [ + [ 7.6313601, 47.5172954 ], + [ 7.6319655, 47.5175488 ], + [ 7.6316454, 47.5178546 ], + [ 7.6312695, 47.5179134 ], + [ 7.6311706, 47.5176078 ], + [ 7.6311731, 47.5174947 ], + [ 7.6312141, 47.5174014 ], + [ 7.6313601, 47.5172954 ] + ], + [ + [ 7.6268121, 47.5201788 ], + [ 7.6270138, 47.520593 ], + [ 7.6272193999999995, 47.5210026 ], + [ 7.6274179, 47.521338 ], + [ 7.6275386, 47.5214913 ], + [ 7.6272396, 47.5217761 ], + [ 7.6268514, 47.5220972 ], + [ 7.6264476, 47.521797 ], + [ 7.6259573, 47.5214608 ], + [ 7.6257256, 47.5211437 ], + [ 7.6252273, 47.520479 ], + [ 7.6258242, 47.5203783 ], + [ 7.6262481, 47.5202454 ], + [ 7.6264315, 47.5202099 ], + [ 7.6268121, 47.5201788 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns219", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Rütihard - Rothallen", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Rütihard - Rothallen", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Rütihard - Rothallen", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Rütihard - Rothallen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7461476, 47.4595084 ], + [ 7.7461261, 47.4595203 ], + [ 7.746045, 47.4595691 ], + [ 7.7460337, 47.4595763 ], + [ 7.7460231, 47.4595839 ], + [ 7.7460132, 47.459592 ], + [ 7.746004, 47.4596005 ], + [ 7.7459956, 47.4596093 ], + [ 7.745988, 47.4596184 ], + [ 7.7459812, 47.4596279 ], + [ 7.7459753, 47.4596376 ], + [ 7.7459702, 47.4596475 ], + [ 7.745966, 47.4596576 ], + [ 7.7459628, 47.4596679 ], + [ 7.7459603999999995, 47.4596783 ], + [ 7.745959, 47.4596887 ], + [ 7.7459585, 47.4596992 ], + [ 7.745959, 47.4597097 ], + [ 7.7459603, 47.4597202 ], + [ 7.7459626, 47.4597306 ], + [ 7.7459658000000005, 47.4597408 ], + [ 7.7460016, 47.4598338 ], + [ 7.746084, 47.4599384 ], + [ 7.7461971, 47.460052 ], + [ 7.7462249, 47.4600874 ], + [ 7.7463403, 47.460076 ], + [ 7.74638, 47.460056 ], + [ 7.746405, 47.4600245 ], + [ 7.7464281, 47.4599028 ], + [ 7.7464185, 47.459821 ], + [ 7.7464262, 47.4596676 ], + [ 7.746405, 47.4596228 ], + [ 7.7464252, 47.4595876 ], + [ 7.7464235, 47.4595487 ], + [ 7.7465314, 47.4594784 ], + [ 7.7466013, 47.4594413 ], + [ 7.7466574, 47.459426 ], + [ 7.7468072, 47.4594227 ], + [ 7.7468436, 47.4594287 ], + [ 7.7468966, 47.4594232 ], + [ 7.7469804, 47.4593711 ], + [ 7.7470825, 47.4593379 ], + [ 7.7471857, 47.4593345 ], + [ 7.7472442, 47.4592911 ], + [ 7.7472445, 47.4591438 ], + [ 7.7472522, 47.4591151 ], + [ 7.7471707, 47.4589789 ], + [ 7.7471533, 47.4589543 ], + [ 7.7471648, 47.458952 ], + [ 7.7471867, 47.4589484 ], + [ 7.7472089, 47.4589453 ], + [ 7.7472313, 47.4589429 ], + [ 7.7472537, 47.458941 ], + [ 7.7472763, 47.4589398 ], + [ 7.7472989, 47.4589392 ], + [ 7.7473215, 47.4589392 ], + [ 7.7473441, 47.4589398 ], + [ 7.7473667, 47.458941 ], + [ 7.7473890999999995, 47.4589429 ], + [ 7.7474115, 47.4589453 ], + [ 7.7474336, 47.4589484 ], + [ 7.7474556, 47.458952 ], + [ 7.7474834, 47.4589594 ], + [ 7.7475109, 47.4589672 ], + [ 7.7473396, 47.4587539 ], + [ 7.7471017, 47.4585846 ], + [ 7.7470285, 47.4586107 ], + [ 7.7469845, 47.4586137 ], + [ 7.7469225999999995, 47.4586296 ], + [ 7.74685, 47.4586168 ], + [ 7.7467699, 47.4585893 ], + [ 7.7466959, 47.4585552 ], + [ 7.7466503, 47.4585291 ], + [ 7.7466283, 47.4585474 ], + [ 7.7463186, 47.4587972 ], + [ 7.7460546, 47.4590038 ], + [ 7.7457071, 47.4592208 ], + [ 7.7455490000000005, 47.4593363 ], + [ 7.7454217, 47.4594625 ], + [ 7.7454499, 47.4594931 ], + [ 7.7455195, 47.4595291 ], + [ 7.7456233999999995, 47.4595267 ], + [ 7.7457177, 47.4595052 ], + [ 7.7457642, 47.4595037 ], + [ 7.7458243, 47.4594937 ], + [ 7.7459679, 47.4594811 ], + [ 7.7461476, 47.4595084 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns358", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Bad Bubendorf", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Bad Bubendorf", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Bad Bubendorf", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Bad Bubendorf", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.0416442, 46.1404634 ], + [ 6.040366, 46.1406238 ], + [ 6.0390917, 46.141193 ], + [ 6.0390715, 46.1412132 ], + [ 6.0390324, 46.1412307 ], + [ 6.0381684, 46.1420956 ], + [ 6.0378464, 46.1431245 ], + [ 6.0381153, 46.1441608 ], + [ 6.0387166, 46.1448111 ], + [ 6.0388542, 46.1453415 ], + [ 6.0389359, 46.1454299 ], + [ 6.0389685, 46.1455556 ], + [ 6.0397876, 46.1464414 ], + [ 6.0398655, 46.146479 ], + [ 6.039879, 46.1464936 ], + [ 6.0411234, 46.1470942 ], + [ 6.0423629, 46.1472815 ], + [ 6.0424877, 46.1477624 ], + [ 6.0433069, 46.1486482 ], + [ 6.0445514, 46.1492486 ], + [ 6.0460318, 46.1494724 ], + [ 6.0475227, 46.1492854 ], + [ 6.0487971, 46.148716 ], + [ 6.0494015, 46.1481108 ], + [ 6.0485217, 46.1471171 ], + [ 6.0475548, 46.1441279 ], + [ 6.0474365, 46.143771 ], + [ 6.0465414, 46.1436357 ], + [ 6.0465016, 46.1434823 ], + [ 6.0456825, 46.1425965 ], + [ 6.0456819, 46.1425962 ], + [ 6.0456817, 46.142596 ], + [ 6.0454933, 46.1425051 ], + [ 6.0454002, 46.1421468 ], + [ 6.0445812, 46.1412611 ], + [ 6.0436223, 46.1407983 ], + [ 6.0428242, 46.141238799999996 ], + [ 6.0424782, 46.1414111 ], + [ 6.042469, 46.1413886 ], + [ 6.0421567, 46.1409418 ], + [ 6.0420416, 46.1408031 ], + [ 6.0416442, 46.1404634 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-30", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.6857964, 47.0559317 ], + [ 8.6859096, 47.0558785 ], + [ 8.686054, 47.0557906 ], + [ 8.6861986, 47.055714 ], + [ 8.6864406, 47.0556125 ], + [ 8.686816199999999, 47.0555249 ], + [ 8.6870754, 47.0554232 ], + [ 8.6873989, 47.0552861 ], + [ 8.6877511, 47.0550806 ], + [ 8.6881208, 47.0548805 ], + [ 8.6885022, 47.0545842 ], + [ 8.6890324, 47.0542845 ], + [ 8.6899717, 47.0539189 ], + [ 8.6901639, 47.0538017 ], + [ 8.6902663, 47.0537149 ], + [ 8.6904078, 47.0535706 ], + [ 8.6905295, 47.053534 ], + [ 8.6907014, 47.0534963 ], + [ 8.6909884, 47.0534558 ], + [ 8.6912495, 47.0533991 ], + [ 8.6916021, 47.0533514 ], + [ 8.6921432, 47.0532713 ], + [ 8.6924719, 47.0532524 ], + [ 8.6926425, 47.0531978 ], + [ 8.6927291, 47.0530999 ], + [ 8.6927808, 47.0529916 ], + [ 8.6928093, 47.0529064 ], + [ 8.6928962, 47.0528255 ], + [ 8.6929845, 47.052767 ], + [ 8.6931605, 47.0526559 ], + [ 8.6933183, 47.0525113 ], + [ 8.6934341, 47.0523621 ], + [ 8.6935428, 47.0522244 ], + [ 8.6937171, 47.0520794 ], + [ 8.6939338, 47.051956 ], + [ 8.6941443, 47.0518779 ], + [ 8.6944132, 47.051804 ], + [ 8.6946678, 47.0517869 ], + [ 8.6948312, 47.051738 ], + [ 8.6949828, 47.0516443 ], + [ 8.6951012, 47.0515345 ], + [ 8.6952465, 47.0513112 ], + [ 8.6953056, 47.0511634 ], + [ 8.6953968, 47.0510203 ], + [ 8.6954496, 47.0509233 ], + [ 8.6955862, 47.0508525 ], + [ 8.695821, 47.0507625 ], + [ 8.6960552, 47.0506444 ], + [ 8.6962297, 47.0505106 ], + [ 8.6964206, 47.0503709 ], + [ 8.6965934, 47.0501978 ], + [ 8.6966664, 47.0500158 ], + [ 8.6967439, 47.0499181 ], + [ 8.6968621, 47.0498027 ], + [ 8.6970719, 47.0496964 ], + [ 8.6971919, 47.0496203 ], + [ 8.6972417, 47.0494669 ], + [ 8.6972769, 47.0493534 ], + [ 8.6973644, 47.0492951 ], + [ 8.6975428, 47.0492232 ], + [ 8.6977367, 47.0491399 ], + [ 8.6978714, 47.0490296 ], + [ 8.6979556, 47.0488981 ], + [ 8.6979909, 47.0487902 ], + [ 8.6980789, 47.0487205 ], + [ 8.6982701, 47.0485976 ], + [ 8.6986166, 47.0484261 ], + [ 8.6990287, 47.0482532 ], + [ 8.6994641, 47.0480513 ], + [ 8.6997725, 47.0479428 ], + [ 8.7001329, 47.0478781 ], + [ 8.7005363, 47.0478574 ], + [ 8.7008484, 47.0478389 ], + [ 8.7013157, 47.0477717 ], + [ 8.701948699999999, 47.0477176 ], + [ 8.7024896, 47.0476317 ], + [ 8.7026729, 47.0476613 ], + [ 8.7028154, 47.0477031 ], + [ 8.7029417, 47.0477566 ], + [ 8.7030746, 47.0477759 ], + [ 8.7031971, 47.0477393 ], + [ 8.7032843, 47.0476696 ], + [ 8.7033537, 47.0475779 ], + [ 8.703441, 47.0475138 ], + [ 8.7037021, 47.0474571 ], + [ 8.7040103, 47.0473428 ], + [ 8.7041959, 47.0472595 ], + [ 8.7043683, 47.0472442 ], + [ 8.704573, 47.0472057 ], + [ 8.7048079, 47.0471213 ], + [ 8.7049916, 47.046993 ], + [ 8.7050878, 47.0467823 ], + [ 8.7051797, 47.0466335 ], + [ 8.7053163, 47.0465627 ], + [ 8.7055202, 47.0465242 ], + [ 8.7057589, 47.0464961 ], + [ 8.7060493, 47.0465344 ], + [ 8.7062917, 47.0465907 ], + [ 8.7065474, 47.0465848 ], + [ 8.7062514, 47.0459661 ], + [ 8.7061204, 47.0459917 ], + [ 8.7060626, 47.0459818 ], + [ 8.7059694, 47.0459388 ], + [ 8.7057991, 47.0458301 ], + [ 8.7056048, 47.0457556 ], + [ 8.7053902, 47.0455859 ], + [ 8.705358499999999, 47.0454626 ], + [ 8.7054045, 47.0453883 ], + [ 8.7054655, 47.0452911 ], + [ 8.7053956, 47.0452194 ], + [ 8.7052638, 47.0452112 ], + [ 8.7049492, 47.045196 ], + [ 8.7047314, 47.0451334 ], + [ 8.7047109, 47.0450662 ], + [ 8.7047747, 47.0450197 ], + [ 8.7047715, 47.0449521 ], + [ 8.7046929, 47.0448637 ], + [ 8.7043635, 47.0445669 ], + [ 8.7042477, 47.0444007 ], + [ 8.7041332, 47.0442567 ], + [ 8.704077999999999, 47.0441453 ], + [ 8.7040898, 47.0440548 ], + [ 8.7040592, 47.0439428 ], + [ 8.703987399999999, 47.0438261 ], + [ 8.7039841, 47.0437585 ], + [ 8.703979799999999, 47.0436797 ], + [ 8.7039148, 47.0435403 ], + [ 8.7037939, 47.043436 ], + [ 8.7036482, 47.0433267 ], + [ 8.7035409, 47.0431713 ], + [ 8.7035345, 47.0430418 ], + [ 8.7035697, 47.0429283 ], + [ 8.7036882, 47.0428241 ], + [ 8.7036902, 47.0427001 ], + [ 8.703631099999999, 47.0423576 ], + [ 8.703494899999999, 47.041955 ], + [ 8.703383, 47.0415348 ], + [ 8.7032761, 47.0412217 ], + [ 8.7026206, 47.0398615 ], + [ 8.7030789, 47.0396255 ], + [ 8.7033825, 47.0394211 ], + [ 8.703531, 47.0392654 ], + [ 8.7036806, 47.0391211 ], + [ 8.7037975, 47.0389886 ], + [ 8.7039746, 47.0388943 ], + [ 8.7042502, 47.0387922 ], + [ 8.7044081, 47.0386533 ], + [ 8.704578099999999, 47.0384351 ], + [ 8.7047316, 47.0382117 ], + [ 8.7048859, 47.0379883 ], + [ 8.7050931, 47.0378481 ], + [ 8.7054029, 47.0377677 ], + [ 8.7057231, 47.0377434 ], + [ 8.7061356, 47.0377281 ], + [ 8.7064378, 47.037676 ], + [ 8.7066464, 47.0375584 ], + [ 8.7067126, 47.037399 ], + [ 8.7065836, 47.0373006 ], + [ 8.706449, 47.0372417 ], + [ 8.7061271, 47.0370913 ], + [ 8.7058452, 47.0370641 ], + [ 8.705547, 47.0370429 ], + [ 8.7052163, 47.0368645 ], + [ 8.7049749, 47.0366729 ], + [ 8.7047951, 47.0365474 ], + [ 8.704712, 47.0363746 ], + [ 8.7047139, 47.036245 ], + [ 8.704579, 47.0360339 ], + [ 8.7044452, 47.0358341 ], + [ 8.7043083, 47.0355779 ], + [ 8.7040613, 47.0351102 ], + [ 8.703873699999999, 47.0348271 ], + [ 8.7037416, 47.0346667 ], + [ 8.7035479, 47.034581 ], + [ 8.7033294, 47.0345185 ], + [ 8.7032354, 47.0344418 ], + [ 8.7033525, 47.034315 ], + [ 8.703558, 47.0341356 ], + [ 8.7037539, 47.0339337 ], + [ 8.7039396, 47.0338561 ], + [ 8.7040544, 47.0338421 ], + [ 8.7041103, 47.033807 ], + [ 8.7041398, 47.0337331 ], + [ 8.704147, 47.0335525 ], + [ 8.7041199, 47.0333446 ], + [ 8.7040126, 47.0331892 ], + [ 8.7038135, 47.033008 ], + [ 8.7035826, 47.0328442 ], + [ 8.703408, 47.0326565 ], + [ 8.7032268, 47.0325085 ], + [ 8.703104100000001, 47.0323592 ], + [ 8.7030708, 47.0322023 ], + [ 8.7030545, 47.0320335 ], + [ 8.7030457, 47.0318702 ], + [ 8.703013200000001, 47.0317132 ], + [ 8.7029702, 47.0315281 ], + [ 8.7029347, 47.0313148 ], + [ 8.7028075, 47.0310811 ], + [ 8.7026497, 47.0309099 ], + [ 8.7025419, 47.030732 ], + [ 8.7025312, 47.0305238 ], + [ 8.7024958, 47.0303104 ], + [ 8.7023704, 47.0301217 ], + [ 8.7022664, 47.0298592 ], + [ 8.7021214, 47.0296032 ], + [ 8.7018632, 47.0293951 ], + [ 8.7016149, 47.0292204 ], + [ 8.7013094, 47.0290641 ], + [ 8.7011328, 47.0290006 ], + [ 8.700792, 47.028952 ], + [ 8.700513, 47.0289755 ], + [ 8.7001524, 47.0290289 ], + [ 8.6998739, 47.0290748 ], + [ 8.6995897, 47.0291603 ], + [ 8.699403, 47.0292266 ], + [ 8.6991951, 47.0291977 ], + [ 8.6990362, 47.0291563 ], + [ 8.6988351, 47.0290989 ], + [ 8.6985466, 47.0289309 ], + [ 8.6984246, 47.0288154 ], + [ 8.6983364, 47.028699 ], + [ 8.6983635, 47.0285913 ], + [ 8.6984175, 47.0285111 ], + [ 8.6984812, 47.028459 ], + [ 8.6985878, 47.0284452 ], + [ 8.6986766, 47.0284093 ], + [ 8.6987312, 47.0283517 ], + [ 8.6988181, 47.0282707 ], + [ 8.6989311, 47.0282173 ], + [ 8.6990431, 47.0281529 ], + [ 8.6990877, 47.0280559 ], + [ 8.6990338, 47.027967 ], + [ 8.6988709, 47.027858 ], + [ 8.6987104, 47.0277829 ], + [ 8.6985482, 47.0276683 ], + [ 8.6983509, 47.027532 ], + [ 8.698213299999999, 47.0274167 ], + [ 8.6980994, 47.0272897 ], + [ 8.6980177, 47.0271394 ], + [ 8.6979036, 47.0270068 ], + [ 8.6977158, 47.0268871 ], + [ 8.697470299999999, 47.0267632 ], + [ 8.6972444, 47.0267009 ], + [ 8.6969944, 47.0266672 ], + [ 8.6967956, 47.0266379 ], + [ 8.696735499999999, 47.0265999 ], + [ 8.6967469, 47.0264925 ], + [ 8.6967506, 47.0264022 ], + [ 8.6968019, 47.026277 ], + [ 8.6967701, 47.0261482 ], + [ 8.6965885, 47.0259777 ], + [ 8.6963322, 47.0258145 ], + [ 8.6959969, 47.0255404 ], + [ 8.6958009, 47.0254209 ], + [ 8.6956621, 47.0252889 ], + [ 8.6954561, 47.0251302 ], + [ 8.6953369, 47.0250597 ], + [ 8.695133, 47.0249572 ], + [ 8.6949233, 47.0248832 ], + [ 8.6947493, 47.0248647 ], + [ 8.694622, 47.0248 ], + [ 8.6945109, 47.0247237 ], + [ 8.6943573, 47.0246258 ], + [ 8.6942476, 47.0245775 ], + [ 8.694168, 47.024478 ], + [ 8.6941056, 47.0243779 ], + [ 8.6940259, 47.0242727 ], + [ 8.6939234, 47.0242131 ], + [ 8.6937971, 47.0241596 ], + [ 8.6937106, 47.0240827 ], + [ 8.693598099999999, 47.0239839 ], + [ 8.6935785, 47.0239167 ], + [ 8.6935068, 47.0238056 ], + [ 8.6934025, 47.0237065 ], + [ 8.6932242, 47.0236036 ], + [ 8.6930283, 47.0234898 ], + [ 8.6927567, 47.0233383 ], + [ 8.692484, 47.0231754 ], + [ 8.6922794, 47.0230393 ], + [ 8.6921915, 47.0229341 ], + [ 8.6920115, 47.0227975 ], + [ 8.6917481, 47.0226458 ], + [ 8.6914856, 47.0225277 ], + [ 8.6913252, 47.0224582 ], + [ 8.6911516, 47.022451 ], + [ 8.6909297, 47.0224561 ], + [ 8.6907236, 47.0224665 ], + [ 8.6904502, 47.0224502 ], + [ 8.690253, 47.0224549 ], + [ 8.6901025, 47.0224188 ], + [ 8.6899914, 47.0223425 ], + [ 8.689954, 47.0222532 ], + [ 8.6898061, 47.0221157 ], + [ 8.6895476, 47.0220653 ], + [ 8.6893062, 47.0220089 ], + [ 8.6890885, 47.0219462 ], + [ 8.6887436, 47.0218246 ], + [ 8.6884394, 47.0216851 ], + [ 8.6881039, 47.0215745 ], + [ 8.6877751, 47.0214355 ], + [ 8.6874204, 47.0212802 ], + [ 8.6871175, 47.0211576 ], + [ 8.6866778, 47.0209535 ], + [ 8.6863507, 47.020854 ], + [ 8.6861198, 47.0208594 ], + [ 8.6859735, 47.0208965 ], + [ 8.685793499999999, 47.0209346 ], + [ 8.6856635, 47.0209657 ], + [ 8.6854917, 47.0210035 ], + [ 8.685326, 47.0209848 ], + [ 8.6851424, 47.0209383 ], + [ 8.6849221, 47.0208306 ], + [ 8.6847277, 47.0207449 ], + [ 8.684636, 47.0207245 ], + [ 8.6845623, 47.0207375 ], + [ 8.6845089, 47.0208121 ], + [ 8.6844957, 47.02088 ], + [ 8.684523800000001, 47.0209582 ], + [ 8.6844366, 47.0210278 ], + [ 8.6843464, 47.0210355 ], + [ 8.684271, 47.0210092 ], + [ 8.6841876, 47.0209941 ], + [ 8.6840464, 47.0209692 ], + [ 8.6838798, 47.0209448 ], + [ 8.6837222, 47.0209203 ], + [ 8.6835162, 47.0209364 ], + [ 8.6833848, 47.020945 ], + [ 8.6831966, 47.0209832 ], + [ 8.6830572, 47.0209976 ], + [ 8.6828934, 47.021024 ], + [ 8.6826961, 47.0210285 ], + [ 8.6825321, 47.0210437 ], + [ 8.6823467, 47.0211324 ], + [ 8.6821258, 47.0211826 ], + [ 8.6819456, 47.0212093 ], + [ 8.6816201, 47.0212845 ], + [ 8.6811302, 47.0213972 ], + [ 8.6806934, 47.0215651 ], + [ 8.6805734, 47.0216354 ], + [ 8.6805026, 47.0217048 ], + [ 8.6804064, 47.0217746 ], + [ 8.6802679, 47.0217948 ], + [ 8.6803132, 47.021726 ], + [ 8.6803096, 47.0216415 ], + [ 8.6801823, 47.0215768 ], + [ 8.6801005, 47.0215957 ], + [ 8.6800202, 47.0216426 ], + [ 8.6799151, 47.0216845 ], + [ 8.6797882, 47.0217776 ], + [ 8.6796683, 47.0218536 ], + [ 8.6794797, 47.0218749 ], + [ 8.6793142, 47.0218674 ], + [ 8.6791391, 47.021832 ], + [ 8.6790039, 47.0217788 ], + [ 8.6787843, 47.0216711 ], + [ 8.6784721, 47.0215373 ], + [ 8.6781518, 47.0214094 ], + [ 8.677934, 47.0213411 ], + [ 8.6777617, 47.0213565 ], + [ 8.6775258, 47.0214294 ], + [ 8.6772597, 47.0215483 ], + [ 8.6769733, 47.0217522 ], + [ 8.6767174, 47.0219216 ], + [ 8.6764167, 47.022182 ], + [ 8.6759833, 47.0224231 ], + [ 8.6758218, 47.0224832 ], + [ 8.6756038, 47.0225841 ], + [ 8.675428, 47.0226952 ], + [ 8.6752373, 47.0228405 ], + [ 8.6750663, 47.0228784 ], + [ 8.6749394, 47.0228305 ], + [ 8.6748949, 47.0227526 ], + [ 8.6749303, 47.0226503 ], + [ 8.675048199999999, 47.022518 ], + [ 8.6752722, 47.0223944 ], + [ 8.6753576, 47.0222798 ], + [ 8.6753595, 47.02215 ], + [ 8.675181, 47.0222162 ], + [ 8.6749642, 47.0223339 ], + [ 8.6745947, 47.022534 ], + [ 8.6741743, 47.0227016 ], + [ 8.6738296, 47.0229067 ], + [ 8.6736308, 47.0230578 ], + [ 8.6735085, 47.0232467 ], + [ 8.6733999, 47.0233843 ], + [ 8.6733513, 47.0235603 ], + [ 8.6733423, 47.023707 ], + [ 8.6733502, 47.0238702 ], + [ 8.6734235, 47.0240209 ], + [ 8.6735159, 47.0242103 ], + [ 8.6735826, 47.0243947 ], + [ 8.6735281, 47.024458 ], + [ 8.673446, 47.0244599 ], + [ 8.6733231, 47.0244796 ], + [ 8.6731891, 47.0244432 ], + [ 8.6731037, 47.0243777 ], + [ 8.6730161, 47.0242895 ], + [ 8.6722871, 47.0234043 ], + [ 8.672157, 47.0232889 ], + [ 8.6720483, 47.0232464 ], + [ 8.671941799999999, 47.0232658 ], + [ 8.6718371, 47.0233245 ], + [ 8.6717185, 47.0234231 ], + [ 8.6716003, 47.0235385 ], + [ 8.6714829, 47.0236539 ], + [ 8.6713402, 47.0237756 ], + [ 8.6711713, 47.0238696 ], + [ 8.6709362, 47.0239426 ], + [ 8.6706415, 47.0240001 ], + [ 8.6704084, 47.0241238 ], + [ 8.6702585, 47.0242569 ], + [ 8.6702328, 47.0243928 ], + [ 8.670179, 47.0244842 ], + [ 8.6700779, 47.0245936 ], + [ 8.6700227, 47.0246569 ], + [ 8.669894, 47.0247106 ], + [ 8.6697452, 47.024714 ], + [ 8.6696276, 47.0246772 ], + [ 8.6695097, 47.0246236 ], + [ 8.6693329, 47.0245544 ], + [ 8.6691402, 47.0245023 ], + [ 8.6688993, 47.0244685 ], + [ 8.6686355, 47.0244746 ], + [ 8.6684567, 47.0245293 ], + [ 8.6683459, 47.0246108 ], + [ 8.6682374, 47.0247542 ], + [ 8.6681945, 47.0248904 ], + [ 8.6681362, 47.0250384 ], + [ 8.6680359, 47.0251816 ], + [ 8.6679094, 47.0252972 ], + [ 8.667815300000001, 47.0253896 ], + [ 8.66778, 47.0254975 ], + [ 8.6677604, 47.0256106 ], + [ 8.6677418, 47.025735 ], + [ 8.6677477, 47.0258477 ], + [ 8.667739, 47.0260057 ], + [ 8.6676901, 47.0261702 ], + [ 8.6676337, 47.0263631 ], + [ 8.6675762, 47.0265449 ], + [ 8.6674866, 47.0267273 ], + [ 8.6673876, 47.026893 ], + [ 8.6673022, 47.027002 ], + [ 8.667174, 47.0270783 ], + [ 8.6670303, 47.0271605 ], + [ 8.6668271, 47.0272271 ], + [ 8.6666742, 47.0272983 ], + [ 8.6665779, 47.0273681 ], + [ 8.6665166, 47.027454 ], + [ 8.6664161, 47.0275916 ], + [ 8.6663045, 47.0276731 ], + [ 8.6661201, 47.0277732 ], + [ 8.6659098, 47.0278513 ], + [ 8.6656902, 47.0279239 ], + [ 8.6654388, 47.028003 ], + [ 8.6652081, 47.0280195 ], + [ 8.6649716, 47.0280701 ], + [ 8.6646401, 47.0282073 ], + [ 8.6644973, 47.0283289 ], + [ 8.6643787, 47.0284274 ], + [ 8.664278, 47.0285537 ], + [ 8.6641726, 47.0287647 ], + [ 8.6640967, 47.0288961 ], + [ 8.6639877, 47.0290225 ], + [ 8.6638626, 47.0291608 ], + [ 8.6636961, 47.0292885 ], + [ 8.6635202, 47.0293997 ], + [ 8.6632706, 47.0295237 ], + [ 8.6629979, 47.0296822 ], + [ 8.6627517, 47.029885 ], + [ 8.6624682, 47.0301453 ], + [ 8.6622414, 47.0304041 ], + [ 8.6620829, 47.0307008 ], + [ 8.6620752, 47.03087 ], + [ 8.6621087, 47.0310383 ], + [ 8.6621067, 47.0311681 ], + [ 8.6620473, 47.0313046 ], + [ 8.6619564, 47.0314646 ], + [ 8.6617849, 47.0316601 ], + [ 8.6616397, 47.0318946 ], + [ 8.6615818, 47.0320594 ], + [ 8.6616382, 47.0321877 ], + [ 8.6616605, 47.0322999 ], + [ 8.6617402, 47.0324052 ], + [ 8.6617681, 47.0324778 ], + [ 8.6616604, 47.0328016 ], + [ 8.661767, 47.0327878 ], + [ 8.6618927, 47.0328188 ], + [ 8.6619219, 47.0329083 ], + [ 8.6619101, 47.0330044 ], + [ 8.6618914, 47.0331232 ], + [ 8.6618523, 47.0333214 ], + [ 8.6618151, 47.0335646 ], + [ 8.661821, 47.0338576 ], + [ 8.6618638, 47.0340426 ], + [ 8.6619849, 47.0341582 ], + [ 8.6621479, 47.0342729 ], + [ 8.662303099999999, 47.0344102 ], + [ 8.6624531, 47.034604 ], + [ 8.6606778, 47.0357324 ], + [ 8.6614848, 47.0360297 ], + [ 8.6617191, 47.0360976 ], + [ 8.661946499999999, 47.0361882 ], + [ 8.6622426, 47.0363337 ], + [ 8.662469699999999, 47.0364129 ], + [ 8.6626999, 47.0365542 ], + [ 8.6628031, 47.0366421 ], + [ 8.6628567, 47.0367197 ], + [ 8.6628614, 47.0368211 ], + [ 8.6628424, 47.036923 ], + [ 8.6627815, 47.0370314 ], + [ 8.6627544, 47.0371391 ], + [ 8.6627511, 47.0372464 ], + [ 8.6627954, 47.037313 ], + [ 8.6628745, 47.0373958 ], + [ 8.6629956, 47.0375113 ], + [ 8.6631494, 47.0376206 ], + [ 8.6632697, 47.0377023 ], + [ 8.663432199999999, 47.0378282 ], + [ 8.66352, 47.0379277 ], + [ 8.6636585, 47.0380541 ], + [ 8.6637396, 47.038182 ], + [ 8.6638131, 47.0383381 ], + [ 8.6638668, 47.0384214 ], + [ 8.6639643, 47.0385489 ], + [ 8.6640701, 47.0386817 ], + [ 8.6641567, 47.0387643 ], + [ 8.6642722, 47.0389251 ], + [ 8.6643632, 47.0390921 ], + [ 8.6645217, 47.0392969 ], + [ 8.6647788, 47.0396405 ], + [ 8.6650264, 47.0399675 ], + [ 8.6652727, 47.0402719 ], + [ 8.6654899, 47.0404923 ], + [ 8.6657447, 47.0406274 ], + [ 8.6658696, 47.0406583 ], + [ 8.6660053, 47.0407284 ], + [ 8.6661163, 47.0407992 ], + [ 8.6661962, 47.0409157 ], + [ 8.6662593, 47.0410101 ], + [ 8.6663213, 47.0410988 ], + [ 8.6664158, 47.0411644 ], + [ 8.6665504, 47.0412233 ], + [ 8.6667106, 47.0412872 ], + [ 8.6668615, 47.0413402 ], + [ 8.6669983, 47.0414273 ], + [ 8.6670929, 47.0414983 ], + [ 8.6672389, 47.0416246 ], + [ 8.6673197, 47.0417411 ], + [ 8.667401, 47.0418802 ], + [ 8.6674906, 47.0420191 ], + [ 8.6675541, 47.0421359 ], + [ 8.667608, 47.0422249 ], + [ 8.6676537, 47.0423197 ], + [ 8.6677157, 47.0424028 ], + [ 8.6678539, 47.0425124 ], + [ 8.6679173, 47.0426236 ], + [ 8.6679566, 47.042758 ], + [ 8.6679721, 47.0428985 ], + [ 8.6679798, 47.0430505 ], + [ 8.6679969, 47.0432249 ], + [ 8.6680716, 47.0433979 ], + [ 8.6682104, 47.0435301 ], + [ 8.6683328, 47.0436682 ], + [ 8.6684711, 47.0437834 ], + [ 8.6685693, 47.0439389 ], + [ 8.6686941, 47.0441107 ], + [ 8.6688508, 47.0442706 ], + [ 8.669072, 47.0444121 ], + [ 8.669204, 47.0445725 ], + [ 8.6693019, 47.0447168 ], + [ 8.669410599999999, 47.0449004 ], + [ 8.6694988, 47.0450166 ], + [ 8.6696101, 47.0450987 ], + [ 8.6696718, 47.0451705 ], + [ 8.6699459, 47.0453616 ], + [ 8.6701312, 47.0454418 ], + [ 8.670206499999999, 47.0454626 ], + [ 8.6702967, 47.0454493 ], + [ 8.6704005, 47.0453849 ], + [ 8.670494099999999, 47.0452701 ], + [ 8.6706537, 47.0451649 ], + [ 8.6707438, 47.045146 ], + [ 8.6708686, 47.0451713 ], + [ 8.67097, 47.0452197 ], + [ 8.6710564, 47.045291 ], + [ 8.6711579, 47.0453394 ], + [ 8.6712999, 47.0453643 ], + [ 8.6713999, 47.0453846 ], + [ 8.6714671, 47.0454112 ], + [ 8.6716045, 47.0455207 ], + [ 8.6716924, 47.0456202 ], + [ 8.6718464, 47.045735 ], + [ 8.6719862, 47.0458785 ], + [ 8.6721223, 47.0459654 ], + [ 8.6721889, 47.045964 ], + [ 8.672327, 47.0459269 ], + [ 8.6725118, 47.0459847 ], + [ 8.6726848, 47.0461386 ], + [ 8.6729532, 47.0459012 ], + [ 8.6732712, 47.0459955 ], + [ 8.6734493, 47.0460816 ], + [ 8.6736384, 47.0462238 ], + [ 8.6737748, 47.0463221 ], + [ 8.6738362, 47.0463827 ], + [ 8.674025499999999, 47.0465305 ], + [ 8.6741207, 47.0466297 ], + [ 8.6741838, 47.0467241 ], + [ 8.6743337, 47.0469124 ], + [ 8.6744482, 47.047062 ], + [ 8.6745297, 47.0472066 ], + [ 8.674710900000001, 47.0473602 ], + [ 8.6749688, 47.0475572 ], + [ 8.6751406, 47.0476942 ], + [ 8.6752599, 47.0477648 ], + [ 8.67543, 47.0478679 ], + [ 8.6756506, 47.0479812 ], + [ 8.6758699, 47.0480719 ], + [ 8.6761125, 47.0481397 ], + [ 8.6763806, 47.0482068 ], + [ 8.6766328, 47.0483024 ], + [ 8.6767847, 47.0483609 ], + [ 8.6769044, 47.0484485 ], + [ 8.6770289, 47.0484624 ], + [ 8.677219000000001, 47.0484638 ], + [ 8.6773846, 47.0484769 ], + [ 8.6775683, 47.0485232 ], + [ 8.6777874, 47.0486084 ], + [ 8.6780247, 47.0487327 ], + [ 8.6782452, 47.0488404 ], + [ 8.6784741, 47.0489534 ], + [ 8.6786937, 47.0490611 ], + [ 8.67888, 47.049147 ], + [ 8.6790406, 47.0492279 ], + [ 8.6791748, 47.0492699 ], + [ 8.6793347, 47.0493169 ], + [ 8.6794333, 47.0493146 ], + [ 8.679564899999999, 47.0493116 ], + [ 8.6796629, 47.0492812 ], + [ 8.6797914, 47.0492161 ], + [ 8.6799931, 47.0491157 ], + [ 8.6801803, 47.0490663 ], + [ 8.680369, 47.0490451 ], + [ 8.6805438, 47.0490636 ], + [ 8.6807109, 47.0491048 ], + [ 8.6809057, 47.0492018 ], + [ 8.6810941, 47.049344 ], + [ 8.6812412, 47.0494815 ], + [ 8.6814526, 47.0497303 ], + [ 8.6816275, 47.0499291 ], + [ 8.6818049, 47.0501618 ], + [ 8.6820141, 47.0503881 ], + [ 8.6821053, 47.0505607 ], + [ 8.6821391, 47.0507403 ], + [ 8.6821873, 47.0508688 ], + [ 8.6822738, 47.0509457 ], + [ 8.6823931, 47.0510163 ], + [ 8.6825949, 47.0510962 ], + [ 8.6827631, 47.0511487 ], + [ 8.6830633, 47.0512151 ], + [ 8.6833303, 47.0512709 ], + [ 8.6835641, 47.0513162 ], + [ 8.6838626, 47.0513432 ], + [ 8.6840871, 47.0513774 ], + [ 8.6843799, 47.051444 ], + [ 8.6846408, 47.0515563 ], + [ 8.6849089, 47.0516234 ], + [ 8.685243, 47.0517003 ], + [ 8.6855334, 47.051733 ], + [ 8.6857078, 47.0519093 ], + [ 8.6857811, 47.0520543 ], + [ 8.6858805, 47.0522266 ], + [ 8.6859565, 47.0524166 ], + [ 8.6860297, 47.0525558 ], + [ 8.686052, 47.052668 ], + [ 8.6860306, 47.0527361 ], + [ 8.6859997, 47.0527876 ], + [ 8.6859299, 47.0528624 ], + [ 8.6858429, 47.0529434 ], + [ 8.6856397, 47.0530157 ], + [ 8.6855293, 47.0531141 ], + [ 8.6854925, 47.0531939 ], + [ 8.6855055, 47.0532949 ], + [ 8.6855677, 47.0533837 ], + [ 8.6856403, 47.0535004 ], + [ 8.685671, 47.0536181 ], + [ 8.6857101, 47.0537411 ], + [ 8.6857667, 47.0538752 ], + [ 8.6857991, 47.0540322 ], + [ 8.6858465, 47.0541608 ], + [ 8.6858471, 47.0543242 ], + [ 8.6858369, 47.0544541 ], + [ 8.6857952, 47.0546072 ], + [ 8.6857436, 47.0547212 ], + [ 8.6856566, 47.0548021 ], + [ 8.6855298, 47.0549008 ], + [ 8.6854182, 47.0549879 ], + [ 8.6852575, 47.0550818 ], + [ 8.6850553, 47.0551598 ], + [ 8.6849369, 47.0552696 ], + [ 8.68492, 47.0554278 ], + [ 8.6849275, 47.0555741 ], + [ 8.6849445, 47.0557373 ], + [ 8.685012799999999, 47.0559498 ], + [ 8.685137, 47.055947 ], + [ 8.6852851, 47.0559492 ], + [ 8.6854668, 47.055945 ], + [ 8.685649, 47.0559578 ], + [ 8.6857964, 47.0559317 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "JBG0026", + "country" : "CHE", + "name" : [ + { + "text" : "Eidgenössisches Jagdbanngebiet Mythen", + "lang" : "de-CH" + }, + { + "text" : "District franc fédéral Mythen", + "lang" : "fr-CH" + }, + { + "text" : "Bandita federale di caccia Mythen", + "lang" : "it-CH" + }, + { + "text" : "Federal Game Reserve Mythen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5532996, 47.4917393 ], + [ 7.5532255, 47.4917656 ], + [ 7.5532654, 47.4919015 ], + [ 7.553354, 47.4921586 ], + [ 7.5533734, 47.4922629 ], + [ 7.5538767, 47.4923891 ], + [ 7.5537234, 47.4922324 ], + [ 7.5535333, 47.4920236 ], + [ 7.5534075, 47.4918712 ], + [ 7.5533201, 47.4917647 ], + [ 7.5532996, 47.4917393 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns035", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Marbach", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Marbach", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Marbach", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Marbach", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.2000772, 46.3668604 ], + [ 6.2000751, 46.3667191 ], + [ 6.2000623, 46.3665781 ], + [ 6.2000389, 46.3664378 ], + [ 6.2000049, 46.3662985 ], + [ 6.1999604, 46.3661606 ], + [ 6.1999055, 46.3660245 ], + [ 6.1998404, 46.3658906 ], + [ 6.1997653, 46.3657592 ], + [ 6.1996804, 46.3656307 ], + [ 6.1995859, 46.3655055 ], + [ 6.199482, 46.3653839 ], + [ 6.1993691, 46.3652662 ], + [ 6.1992474, 46.3651528 ], + [ 6.1991173, 46.3650439 ], + [ 6.1989792, 46.3649399 ], + [ 6.1988334, 46.364841 ], + [ 6.1986803, 46.3647476 ], + [ 6.1985204, 46.3646598 ], + [ 6.198354, 46.3645779 ], + [ 6.1981817, 46.3645022 ], + [ 6.1980039, 46.3644328 ], + [ 6.1978212, 46.36437 ], + [ 6.1976339, 46.3643139 ], + [ 6.1974426, 46.3642646 ], + [ 6.1972478, 46.3642223 ], + [ 6.1970502, 46.3641872 ], + [ 6.1968501, 46.3641592 ], + [ 6.1966482, 46.3641386 ], + [ 6.196445, 46.3641253 ], + [ 6.1962411, 46.3641193 ], + [ 6.1960371, 46.3641208 ], + [ 6.1958334, 46.3641296 ], + [ 6.1956306, 46.3641459 ], + [ 6.1954294, 46.3641694 ], + [ 6.1952302, 46.3642002 ], + [ 6.1950336, 46.3642382 ], + [ 6.1948402, 46.3642832 ], + [ 6.1946504000000004, 46.3643352 ], + [ 6.1944649, 46.364394 ], + [ 6.194284, 46.3644594 ], + [ 6.1941083, 46.3645313 ], + [ 6.1939383, 46.3646095 ], + [ 6.1937744, 46.3646937 ], + [ 6.1936171, 46.3647838 ], + [ 6.1934669, 46.3648794 ], + [ 6.1933241, 46.3649803 ], + [ 6.1931891, 46.3650863 ], + [ 6.1930623, 46.365197 ], + [ 6.192944, 46.3653121 ], + [ 6.1928346, 46.3654314 ], + [ 6.1927344, 46.3655545 ], + [ 6.1926436, 46.365681 ], + [ 6.1925625, 46.3658107 ], + [ 6.1924913, 46.3659431 ], + [ 6.1924303, 46.3660779 ], + [ 6.1923795, 46.3662147 ], + [ 6.1923391, 46.3663532 ], + [ 6.1923092, 46.366493 ], + [ 6.19229, 46.3666337 ], + [ 6.1922814, 46.3667748 ], + [ 6.1922835, 46.3669161 ], + [ 6.1922963, 46.3670571 ], + [ 6.1923197, 46.3671975 ], + [ 6.1923537, 46.3673368 ], + [ 6.1923982, 46.3674747 ], + [ 6.192453, 46.3676108 ], + [ 6.1925181, 46.3677447 ], + [ 6.1925932, 46.367876 ], + [ 6.1926781, 46.3680045 ], + [ 6.1927726, 46.3681297 ], + [ 6.1928765, 46.3682514 ], + [ 6.1929894, 46.3683691 ], + [ 6.1931111, 46.3684825 ], + [ 6.1932411, 46.3685914 ], + [ 6.1933793, 46.3686954 ], + [ 6.1935251, 46.3687943 ], + [ 6.1936781, 46.3688877 ], + [ 6.1938381, 46.3689755 ], + [ 6.1940044, 46.3690574 ], + [ 6.1941767, 46.3691331 ], + [ 6.1943545, 46.3692025 ], + [ 6.1945373, 46.3692653 ], + [ 6.1947246, 46.3693215 ], + [ 6.1949159, 46.3693707 ], + [ 6.1951107, 46.369413 ], + [ 6.1953084, 46.3694482 ], + [ 6.1955085, 46.3694761 ], + [ 6.1957104, 46.3694968 ], + [ 6.1959136, 46.3695101 ], + [ 6.1961175, 46.369516 ], + [ 6.1963216, 46.3695146 ], + [ 6.1965253, 46.3695057 ], + [ 6.196728, 46.3694895 ], + [ 6.1969293, 46.369466 ], + [ 6.1971285, 46.3694352 ], + [ 6.1973251, 46.3693972 ], + [ 6.1975186, 46.3693521 ], + [ 6.1977083, 46.3693002 ], + [ 6.1978939, 46.3692413 ], + [ 6.1980748, 46.3691759 ], + [ 6.1982505, 46.369104 ], + [ 6.1984205, 46.3690258 ], + [ 6.1985844, 46.3689416 ], + [ 6.1987417, 46.3688516 ], + [ 6.1988919, 46.3687559 ], + [ 6.1990348, 46.368655 ], + [ 6.1991698, 46.368549 ], + [ 6.1992966, 46.3684383 ], + [ 6.1994148, 46.3683232 ], + [ 6.1995242, 46.3682039 ], + [ 6.1996244, 46.3680808 ], + [ 6.1997152, 46.3679542 ], + [ 6.1997963, 46.3678246 ], + [ 6.1998674, 46.3676922 ], + [ 6.1999285, 46.3675573 ], + [ 6.1999792, 46.3674205 ], + [ 6.2000196, 46.367282 ], + [ 6.2000495, 46.3671422 ], + [ 6.2000687, 46.3670016 ], + [ 6.2000772, 46.3668604 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0029", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Crans", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Crans", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Crans", + "lang" : "it-CH" + }, + { + "text" : "Substation Crans", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8754134, 46.6698598 ], + [ 7.8741362, 46.6707778 ], + [ 7.8709867, 46.670788 ], + [ 7.8709848000000004, 46.6710381 ], + [ 7.8753052, 46.671027 ], + [ 7.8777477, 46.6732593 ], + [ 7.8780628, 46.673116 ], + [ 7.875823, 46.6710583 ], + [ 7.8774443, 46.669879 ], + [ 7.8763648, 46.6692274 ], + [ 7.8754134, 46.6698598 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSXI002", + "country" : "CHE", + "name" : [ + { + "text" : "LSXI Interlaken (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSXI Interlaken (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSXI Interlaken (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSXI Interlaken (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "REGA", + "lang" : "de-CH" + }, + { + "text" : "REGA", + "lang" : "fr-CH" + }, + { + "text" : "REGA", + "lang" : "it-CH" + }, + { + "text" : "REGA", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Leitung Einsatzbasis Wilderswil", + "lang" : "de-CH" + }, + { + "text" : "Leitung Einsatzbasis Wilderswil", + "lang" : "fr-CH" + }, + { + "text" : "Leitung Einsatzbasis Wilderswil", + "lang" : "it-CH" + }, + { + "text" : "Leitung Einsatzbasis Wilderswil", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.rega.ch/en/our-missions/locations-and-infrastructure/rega-10-wilderswil-base/lsxi-interlaken-authorization-for-drone-pilot", + "email" : "ebbo@rega.ch", + "phone" : "0041338289030", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P01DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6668959999999995, 46.4128268 ], + [ 7.6669845, 46.4129998 ], + [ 7.6671606, 46.4131259 ], + [ 7.6674081, 46.4132167 ], + [ 7.6676719, 46.413296 ], + [ 7.6679192, 46.4133586 ], + [ 7.6681152, 46.4133828 ], + [ 7.6683031, 46.4133959 ], + [ 7.6685145, 46.4134029 ], + [ 7.6686707, 46.4134335 ], + [ 7.6689597, 46.4135405 ], + [ 7.6692008, 46.413654 ], + [ 7.6694563, 46.4137276 ], + [ 7.6696541, 46.4137913 ], + [ 7.6699016, 46.4138822 ], + [ 7.670085, 46.4139856 ], + [ 7.6703695, 46.4141771 ], + [ 7.6705528, 46.4142692 ], + [ 7.6706612, 46.4143404 ], + [ 7.6708915, 46.4144033 ], + [ 7.6711634, 46.414488 ], + [ 7.671493, 46.4145829 ], + [ 7.6718478999999995, 46.4146884 ], + [ 7.672071, 46.4147741 ], + [ 7.6723446, 46.4148926 ], + [ 7.6724522, 46.4149468 ], + [ 7.6728152, 46.4150577 ], + [ 7.6730708, 46.4151428 ], + [ 7.6732939, 46.4152284 ], + [ 7.6736091, 46.4153742 ], + [ 7.6739388, 46.4154747 ], + [ 7.6741673, 46.4154869 ], + [ 7.6743136, 46.4154839 ], + [ 7.6745846, 46.4155462 ], + [ 7.6747498, 46.4156047 ], + [ 7.6749467, 46.4156233 ], + [ 7.6750416, 46.4157624 ], + [ 7.6750615, 46.4158578 ], + [ 7.675365, 46.4161054 ], + [ 7.6757009, 46.4161605 ], + [ 7.6760017, 46.4163517 ], + [ 7.676252, 46.4165045 ], + [ 7.6764606, 46.4166355 ], + [ 7.6766801000000005, 46.4166255 ], + [ 7.6768445, 46.4166615 ], + [ 7.6769782, 46.4167491 ], + [ 7.6771624, 46.4168693 ], + [ 7.6773702, 46.4169722 ], + [ 7.6775364, 46.4170534 ], + [ 7.6776628, 46.4171636 ], + [ 7.6778309, 46.4172899 ], + [ 7.6779311, 46.4173498 ], + [ 7.6780459, 46.4173813 ], + [ 7.6782112, 46.41744 ], + [ 7.6783205, 46.4175223 ], + [ 7.6783973, 46.417611 ], + [ 7.67853, 46.417659 ], + [ 7.6786636999999995, 46.4177577 ], + [ 7.6788471, 46.4178556 ], + [ 7.6790964, 46.4179858 ], + [ 7.6793285000000004, 46.4180713 ], + [ 7.6795272, 46.4181573 ], + [ 7.6797161, 46.4182099 ], + [ 7.6799148, 46.4182904 ], + [ 7.6800395, 46.4183555 ], + [ 7.68023, 46.4184306 ], + [ 7.6804043, 46.4185004 ], + [ 7.6806528, 46.4186137 ], + [ 7.6807774, 46.4186788 ], + [ 7.6808803999999995, 46.418812 ], + [ 7.6809924, 46.4189507 ], + [ 7.6810602, 46.4190226 ], + [ 7.6811587, 46.4190375 ], + [ 7.6812815, 46.4190575 ], + [ 7.6814034, 46.4190494 ], + [ 7.6815254, 46.4190526 ], + [ 7.6817277, 46.4192176 ], + [ 7.681875, 46.4192484 ], + [ 7.681968, 46.4193199 ], + [ 7.6820846, 46.4193907 ], + [ 7.682193, 46.4194505 ], + [ 7.6822924, 46.4194936 ], + [ 7.6824098, 46.4195813 ], + [ 7.6826356, 46.4197121 ], + [ 7.6828921999999995, 46.4198197 ], + [ 7.6830891, 46.4198663 ], + [ 7.6832535, 46.4199081 ], + [ 7.6833448, 46.4199514 ], + [ 7.6834477, 46.4200677 ], + [ 7.6835652, 46.4201554 ], + [ 7.6837142, 46.4202144 ], + [ 7.6838741, 46.4203408 ], + [ 7.6841145, 46.4204487 ], + [ 7.6843606, 46.4205855 ], + [ 7.6845644, 46.4207101 ], + [ 7.6847071, 46.4208086 ], + [ 7.6849248, 46.4209508 ], + [ 7.6851823, 46.4210808 ], + [ 7.6853738, 46.4211728 ], + [ 7.6855391, 46.4212427 ], + [ 7.6857793999999995, 46.4213449 ], + [ 7.6860025, 46.4214193 ], + [ 7.6861264, 46.4214732 ], + [ 7.6862854, 46.421577 ], + [ 7.6864362, 46.4216698 ], + [ 7.6866006, 46.4217115 ], + [ 7.6868625, 46.4217457 ], + [ 7.6871092, 46.4218139 ], + [ 7.687251, 46.4218956 ], + [ 7.6874254, 46.421971 ], + [ 7.6875257, 46.4220478 ], + [ 7.6876413, 46.4220849 ], + [ 7.6877895, 46.4221214 ], + [ 7.6879873, 46.4221793 ], + [ 7.6881842, 46.4222147 ], + [ 7.6883414, 46.4222736 ], + [ 7.6887155, 46.4226662 ], + [ 7.6888791, 46.4228714 ], + [ 7.6890771, 46.4231381 ], + [ 7.68919, 46.4233106 ], + [ 7.6891937, 46.423395 ], + [ 7.6891721, 46.42348 ], + [ 7.6891847, 46.4235757 ], + [ 7.6891964999999995, 46.4236656 ], + [ 7.689249, 46.4237491 ], + [ 7.6893159, 46.4238041 ], + [ 7.6894234, 46.4238526 ], + [ 7.68954, 46.4239122 ], + [ 7.6896014, 46.4240181 ], + [ 7.6896557, 46.4241523 ], + [ 7.6897731, 46.4242232 ], + [ 7.6899051, 46.4242769 ], + [ 7.6900397, 46.4243757 ], + [ 7.6901326999999995, 46.4244526 ], + [ 7.6902224, 46.4246798 ], + [ 7.6910047, 46.4248843 ], + [ 7.6912897000000005, 46.4246318 ], + [ 7.6917188, 46.4245859 ], + [ 7.6921741, 46.4245848 ], + [ 7.692721, 46.4247006 ], + [ 7.6929815999999995, 46.4248079 ], + [ 7.6936719, 46.4249863 ], + [ 7.6936053, 46.4246536 ], + [ 7.6939548, 46.424266 ], + [ 7.6940577, 46.4240229 ], + [ 7.6942771, 46.4236625 ], + [ 7.6947303, 46.4232117 ], + [ 7.6963505, 46.4219667 ], + [ 7.696867, 46.4211559 ], + [ 7.69723, 46.4208852 ], + [ 7.6973588, 46.420615 ], + [ 7.6979415, 46.4200559 ], + [ 7.6982653, 46.4197583 ], + [ 7.6987838, 46.4193793 ], + [ 7.6988746, 46.4193341 ], + [ 7.6991076, 46.4190817 ], + [ 7.7008861, 46.4183579 ], + [ 7.7011454, 46.4181774 ], + [ 7.7023533, 46.4177968 ], + [ 7.7027681999999995, 46.417526 ], + [ 7.7043254, 46.4167757 ], + [ 7.7048176, 46.4163517 ], + [ 7.705076, 46.4159913 ], + [ 7.705087, 46.4159049 ], + [ 7.7050837, 46.4157229 ], + [ 7.7047672, 46.4141734 ], + [ 7.7046367, 46.4135785 ], + [ 7.704614, 46.4134211 ], + [ 7.7046562, 46.4132511 ], + [ 7.7046977, 46.4130754 ], + [ 7.7047182, 46.4127875 ], + [ 7.7047270999999995, 46.4126181 ], + [ 7.7048335, 46.4124356 ], + [ 7.7047611, 46.412251 ], + [ 7.704817, 46.4120356 ], + [ 7.7049422, 46.4117229 ], + [ 7.7051009, 46.4114208 ], + [ 7.7052361, 46.4111475 ], + [ 7.7054626, 46.4109061 ], + [ 7.7056431, 46.4107613 ], + [ 7.7058471, 46.4107571 ], + [ 7.7060765, 46.4107975 ], + [ 7.7063241, 46.4108827 ], + [ 7.7071102, 46.4104154 ], + [ 7.7072229, 46.4101876 ], + [ 7.7072949, 46.4099605 ], + [ 7.7073967, 46.4096709 ], + [ 7.7077945, 46.4090595 ], + [ 7.7076317, 46.4088486 ], + [ 7.70746, 46.4086435 ], + [ 7.7073054, 46.4084494 ], + [ 7.7071363999999996, 46.4083006 ], + [ 7.7070008, 46.4081569 ], + [ 7.7068228, 46.4080027 ], + [ 7.7067504, 46.4078126 ], + [ 7.7066789, 46.4076561 ], + [ 7.706546, 46.4073995 ], + [ 7.7064871, 46.4071696 ], + [ 7.7064354, 46.4068887 ], + [ 7.706344, 46.4066594 ], + [ 7.7061931, 46.4065442 ], + [ 7.7060088, 46.4064183 ], + [ 7.7057341, 46.4062661 ], + [ 7.7053855, 46.4061098 ], + [ 7.7053303, 46.4059643 ], + [ 7.7053058, 46.4057618 ], + [ 7.7052577, 46.4055712 ], + [ 7.7052007, 46.4053919 ], + [ 7.7050931, 46.4051461 ], + [ 7.7049511, 46.404867 ], + [ 7.7048262, 46.4045878 ], + [ 7.7046536, 46.4043602 ], + [ 7.7043528, 46.404169 ], + [ 7.7040267, 46.4039615 ], + [ 7.7037511, 46.4037868 ], + [ 7.7034503, 46.4036013 ], + [ 7.7031794, 46.4035449 ], + [ 7.7030754, 46.4033835 ], + [ 7.7029244, 46.4030878 ], + [ 7.7028014, 46.4028591 ], + [ 7.7026369, 46.4026201 ], + [ 7.7024824, 46.4024316 ], + [ 7.7022881, 46.4022496 ], + [ 7.7020432, 46.4020347 ], + [ 7.7017731, 46.4018035 ], + [ 7.7015518, 46.4015825 ], + [ 7.7013404, 46.4013839 ], + [ 7.7011415, 46.4010891 ], + [ 7.7009507, 46.4008055 ], + [ 7.7007348, 46.4005169 ], + [ 7.7005306000000004, 46.4003068 ], + [ 7.7002217, 46.4001102 ], + [ 7.6998693, 46.3998469 ], + [ 7.6996317, 46.3996093 ], + [ 7.6993363, 46.3993504 ], + [ 7.6990463, 46.3990462 ], + [ 7.6987942, 46.3988428 ], + [ 7.6986054, 46.3985987 ], + [ 7.698421, 46.3982754 ], + [ 7.6979348, 46.3975469 ], + [ 7.6976863, 46.3972306 ], + [ 7.6974098, 46.3968472 ], + [ 7.697183, 46.3964854 ], + [ 7.6969317, 46.3961128 ], + [ 7.6966679, 46.3958251 ], + [ 7.6964331, 46.3956608 ], + [ 7.6960673, 46.395471 ], + [ 7.6955345, 46.3951775 ], + [ 7.69511, 46.3949381 ], + [ 7.6948761, 46.3947963 ], + [ 7.6948851, 46.3946326 ], + [ 7.6947279, 46.3945569 ], + [ 7.6945265, 46.3944032 ], + [ 7.694382, 46.3942595 ], + [ 7.6941733, 46.3941342 ], + [ 7.693916, 46.3940041 ], + [ 7.6937724, 46.3938887 ], + [ 7.6935466, 46.3937411 ], + [ 7.6934002, 46.3935355 ], + [ 7.6932828, 46.3934476 ], + [ 7.6930923, 46.3933783 ], + [ 7.6928864, 46.3933149 ], + [ 7.6926571, 46.3932745 ], + [ 7.6923456, 46.3932188 ], + [ 7.6921461, 46.393127 ], + [ 7.6919637, 46.3930406 ], + [ 7.6917226, 46.3929046 ], + [ 7.6915302, 46.3927845 ], + [ 7.6912963, 46.3926314 ], + [ 7.6910967, 46.3925227 ], + [ 7.6908972, 46.3924253 ], + [ 7.6906977, 46.3923336 ], + [ 7.6905098, 46.392298 ], + [ 7.6904079, 46.3922098 ], + [ 7.6903527, 46.3920531 ], + [ 7.6902632, 46.391852 ], + [ 7.6901087, 46.3916578 ], + [ 7.6899408000000005, 46.3915372 ], + [ 7.6896591, 46.391413299999996 ], + [ 7.6892564, 46.3913087 ], + [ 7.6889856, 46.3912579 ], + [ 7.6891118, 46.3911483 ], + [ 7.6892472, 46.3910778 ], + [ 7.6894548, 46.3909891 ], + [ 7.6897184, 46.3908765 ], + [ 7.6898429, 46.3907386 ], + [ 7.6899104, 46.3905851 ], + [ 7.6898625, 46.3904113 ], + [ 7.6896936, 46.3902624 ], + [ 7.6894444, 46.3901491 ], + [ 7.689318, 46.3900391 ], + [ 7.6893134, 46.3899151 ], + [ 7.6893982, 46.3898119 ], + [ 7.6895174, 46.3897474 ], + [ 7.6896102, 46.3896215 ], + [ 7.6896788, 46.3895186 ], + [ 7.689842, 46.3893236 ], + [ 7.6899403, 46.3891356 ], + [ 7.6901984, 46.3888878 ], + [ 7.6905665, 46.3885477 ], + [ 7.6909697999999995, 46.3882575 ], + [ 7.6913162, 46.3879742 ], + [ 7.6916673, 46.3878147 ], + [ 7.6920969, 46.3877665 ], + [ 7.6928683, 46.3871418 ], + [ 7.6924009, 46.3872584 ], + [ 7.692213, 46.3872285 ], + [ 7.6920064, 46.3871651 ], + [ 7.6916949, 46.3871095 ], + [ 7.6914069, 46.3870308 ], + [ 7.6910692, 46.3869137 ], + [ 7.690662, 46.3867078 ], + [ 7.6902801, 46.3865182 ], + [ 7.6900626, 46.3863874 ], + [ 7.6898124, 46.3862346 ], + [ 7.6895533, 46.3860652 ], + [ 7.6893429, 46.385889 ], + [ 7.6892399000000005, 46.3857671 ], + [ 7.6891767, 46.3856162 ], + [ 7.6891034, 46.3854035 ], + [ 7.6890646, 46.3852633 ], + [ 7.6888795, 46.3851205 ], + [ 7.6886374, 46.3849563 ], + [ 7.6884361, 46.3848083 ], + [ 7.6883747, 46.3847081 ], + [ 7.6883854, 46.3845612 ], + [ 7.6884368, 46.384441699999996 ], + [ 7.6885034999999995, 46.3842712 ], + [ 7.6885612, 46.3840953 ], + [ 7.6885791999999995, 46.3839371 ], + [ 7.6884763, 46.3838208 ], + [ 7.6882757999999995, 46.3836839 ], + [ 7.6881747, 46.3836071 ], + [ 7.6881629, 46.3835116 ], + [ 7.6882231999999995, 46.3833918 ], + [ 7.6883297, 46.3832205 ], + [ 7.6884623, 46.3830769 ], + [ 7.6885056, 46.3829463 ], + [ 7.6884585, 46.3827782 ], + [ 7.6883302, 46.3824369 ], + [ 7.6881875, 46.3821353 ], + [ 7.6880547, 46.3818788 ], + [ 7.6881475, 46.3817584 ], + [ 7.6882332, 46.3816608 ], + [ 7.6882946, 46.3815807 ], + [ 7.6882981, 46.3814678 ], + [ 7.6882204, 46.3813511 ], + [ 7.6880777, 46.3812355 ], + [ 7.6878439, 46.3810994 ], + [ 7.6876092, 46.3809238 ], + [ 7.6875234, 46.3808241 ], + [ 7.6874935, 46.3806894 ], + [ 7.6875115, 46.3805368 ], + [ 7.6875692, 46.3803496 ], + [ 7.6875628, 46.3801974 ], + [ 7.6874679, 46.3800641 ], + [ 7.6873018, 46.3799717 ], + [ 7.6870707, 46.3798918 ], + [ 7.6867386, 46.3797407 ], + [ 7.6863747, 46.3795846 ], + [ 7.6860416, 46.3793998 ], + [ 7.685611, 46.3792169 ], + [ 7.6853466, 46.3791152 ], + [ 7.6853519, 46.3790418 ], + [ 7.6853231, 46.3789466 ], + [ 7.6852381, 46.3788468 ], + [ 7.6849989999999995, 46.3787783 ], + [ 7.6847182, 46.3786658 ], + [ 7.6844393, 46.3786095 ], + [ 7.6842922, 46.3786067 ], + [ 7.6841216, 46.3785933 ], + [ 7.6839492, 46.378563 ], + [ 7.6837434, 46.3784996 ], + [ 7.6833734, 46.3784113 ], + [ 7.6828769, 46.3782016 ], + [ 7.6826702000000004, 46.3781212 ], + [ 7.6824075, 46.3780589 ], + [ 7.6821114999999995, 46.3779747 ], + [ 7.6818886, 46.377906 ], + [ 7.6816666, 46.3778486 ], + [ 7.6813967, 46.3778089 ], + [ 7.6812469, 46.3777331 ], + [ 7.6811096, 46.3777472 ], + [ 7.6808218, 46.3776797 ], + [ 7.6806006, 46.377639 ], + [ 7.6803064, 46.3776 ], + [ 7.6801512, 46.3775919 ], + [ 7.6798263, 46.3775985 ], + [ 7.6795799, 46.3775358 ], + [ 7.6793496999999995, 46.3774729 ], + [ 7.6791521, 46.3774262 ], + [ 7.6789247, 46.3774308 ], + [ 7.6786241, 46.3774425 ], + [ 7.6784183, 46.3773735 ], + [ 7.6782378, 46.3773433 ], + [ 7.677968, 46.377315 ], + [ 7.677644, 46.3773385 ], + [ 7.6773986, 46.3773152 ], + [ 7.677089, 46.3772934 ], + [ 7.6767388, 46.3772892 ], + [ 7.6762993, 46.3772757 ], + [ 7.6759897, 46.3772651 ], + [ 7.6756784, 46.3772206 ], + [ 7.6753282, 46.3771996 ], + [ 7.6748625, 46.377147 ], + [ 7.6745295, 46.3771707 ], + [ 7.6741884, 46.3771776 ], + [ 7.6739032, 46.3771722 ], + [ 7.6735684, 46.3771282 ], + [ 7.6733247, 46.3771332 ], + [ 7.6729259, 46.3771413 ], + [ 7.6726235, 46.3771079 ], + [ 7.6723040000000005, 46.3770525 ], + [ 7.6720828999999995, 46.3770005 ], + [ 7.6718347, 46.3768984 ], + [ 7.6716352, 46.3767954 ], + [ 7.6714511, 46.3766695 ], + [ 7.6712796, 46.3764644 ], + [ 7.6712001, 46.3763025 ], + [ 7.6710647, 46.3761643 ], + [ 7.6709492, 46.3761328 ], + [ 7.6707308, 46.3761542 ], + [ 7.6704068, 46.3762003 ], + [ 7.670045, 46.3762977 ], + [ 7.6696732, 46.3763673 ], + [ 7.6692851, 46.3764203 ], + [ 7.6687464, 46.3765722 ], + [ 7.6682654, 46.3767341 ], + [ 7.66788, 46.3768603 ], + [ 7.6674289, 46.3769766 ], + [ 7.6672565, 46.3769407 ], + [ 7.6670697, 46.37695 ], + [ 7.6668675, 46.3769655 ], + [ 7.6666663, 46.3770259 ], + [ 7.6664876, 46.3770295 ], + [ 7.6663008, 46.3770389 ], + [ 7.6660571, 46.3770326 ], + [ 7.6658297, 46.3770484 ], + [ 7.6655527, 46.3770484 ], + [ 7.6652034, 46.3770555 ], + [ 7.6642495, 46.3770071 ], + [ 7.663727, 46.3769557 ], + [ 7.6633686999999995, 46.3769404 ], + [ 7.6631169, 46.3769456 ], + [ 7.6629634, 46.3769656 ], + [ 7.6627225, 46.3770436 ], + [ 7.6625609, 46.3770751 ], + [ 7.6623415999999995, 46.3770853 ], + [ 7.6620421, 46.3771307 ], + [ 7.6618887, 46.3771565 ], + [ 7.6617902, 46.3771246 ], + [ 7.6615438000000005, 46.3770674 ], + [ 7.6613625, 46.3770148 ], + [ 7.6610358, 46.376982 ], + [ 7.6607109, 46.3769942 ], + [ 7.6603598999999996, 46.3769675 ], + [ 7.6599438, 46.3769364 ], + [ 7.659609, 46.3768981 ], + [ 7.6590865, 46.3768522 ], + [ 7.6583347, 46.3767547 ], + [ 7.6579574, 46.3768806 ], + [ 7.657703, 46.3770324 ], + [ 7.6574086999999995, 46.3771961 ], + [ 7.6570667, 46.3773891 ], + [ 7.6566551, 46.3776624 ], + [ 7.6562607, 46.3779692 ], + [ 7.6559205, 46.3782071 ], + [ 7.6555405, 46.3784629 ], + [ 7.6553438, 46.3786247 ], + [ 7.6551687, 46.3787297 ], + [ 7.6549448, 46.3788074 ], + [ 7.6548004, 46.3788667 ], + [ 7.6547246, 46.3790037 ], + [ 7.6545839, 46.3791531 ], + [ 7.6544267, 46.3792803 ], + [ 7.6543049, 46.379277 ], + [ 7.654101, 46.3792812 ], + [ 7.6539168, 46.3793356 ], + [ 7.6537246, 46.3794071 ], + [ 7.6535558, 46.3794613 ], + [ 7.6532824, 46.3795513 ], + [ 7.653091, 46.3796455 ], + [ 7.6529421, 46.379778 ], + [ 7.6525323, 46.3801133 ], + [ 7.652331, 46.3801625 ], + [ 7.6519772, 46.3802485 ], + [ 7.6518247, 46.3803193 ], + [ 7.6515457, 46.3804432 ], + [ 7.6513138, 46.3805606 ], + [ 7.6510656, 46.3806502 ], + [ 7.650793, 46.3807459 ], + [ 7.6504879, 46.3808367 ], + [ 7.6502948, 46.3809025 ], + [ 7.6499319, 46.3809718 ], + [ 7.6495195, 46.3810365 ], + [ 7.6490484, 46.3810572 ], + [ 7.648561, 46.381067 ], + [ 7.6480005, 46.3810895 ], + [ 7.6470673, 46.3811534 ], + [ 7.6467929, 46.3812097 ], + [ 7.646652, 46.381331 ], + [ 7.6465762, 46.3814846 ], + [ 7.646559, 46.3816598 ], + [ 7.6465273, 46.381869 ], + [ 7.6465165, 46.3820215 ], + [ 7.6466446, 46.3821599 ], + [ 7.6466752, 46.3823115 ], + [ 7.6466788999999995, 46.3824128 ], + [ 7.6467249, 46.3825472 ], + [ 7.6467474, 46.382699 ], + [ 7.6466471, 46.3828193 ], + [ 7.6463863, 46.3830163 ], + [ 7.6464305, 46.3831056 ], + [ 7.6466164, 46.3830849 ], + [ 7.6468041, 46.3830868 ], + [ 7.6470334, 46.3831217 ], + [ 7.6471741, 46.3831809 ], + [ 7.6473221, 46.3832174 ], + [ 7.647509, 46.3832136 ], + [ 7.6477771, 46.3832083 ], + [ 7.6480443000000005, 46.3831916 ], + [ 7.6483295, 46.3832028 ], + [ 7.6486192, 46.383321 ], + [ 7.6488762999999995, 46.3834342 ], + [ 7.649065, 46.3834755 ], + [ 7.6492617, 46.383511 ], + [ 7.6494458, 46.3836426 ], + [ 7.6495578, 46.3838039 ], + [ 7.6496119, 46.3839268 ], + [ 7.6497228, 46.3840542 ], + [ 7.6500044, 46.3841782 ], + [ 7.6504331, 46.3843219 ], + [ 7.6507951, 46.3844217 ], + [ 7.6511967, 46.3844869 ], + [ 7.6516471, 46.3845624 ], + [ 7.6522681, 46.3846344 ], + [ 7.6534288, 46.3847746 ], + [ 7.6534811, 46.3846552 ], + [ 7.6535849, 46.3846079 ], + [ 7.6537167, 46.3846392 ], + [ 7.6538828, 46.384737200000004 ], + [ 7.6541129, 46.3847889 ], + [ 7.6544252, 46.3848616 ], + [ 7.6546464, 46.3849136 ], + [ 7.6548593, 46.3849319 ], + [ 7.6553233, 46.384945 ], + [ 7.6556384, 46.3848992 ], + [ 7.655938, 46.3848594 ], + [ 7.6562792, 46.3848412 ], + [ 7.6566130999999995, 46.384857 ], + [ 7.6567765, 46.3848762 ], + [ 7.6569228, 46.384879 ], + [ 7.6570906, 46.384791 ], + [ 7.657208, 46.3846815 ], + [ 7.6573425, 46.3845886 ], + [ 7.6574174, 46.3846266 ], + [ 7.6572007, 46.3849071 ], + [ 7.6570987, 46.3849994 ], + [ 7.6569976, 46.3851029 ], + [ 7.6568956, 46.3852008 ], + [ 7.6567937, 46.3853044 ], + [ 7.656669, 46.3854309 ], + [ 7.6565499, 46.3855122 ], + [ 7.6563676, 46.3856287 ], + [ 7.6562972, 46.3857034 ], + [ 7.6561862, 46.3857732 ], + [ 7.6559876, 46.38589 ], + [ 7.6557654, 46.3860128 ], + [ 7.6556779, 46.3860711 ], + [ 7.6555922, 46.386163 ], + [ 7.6554991999999995, 46.386272 ], + [ 7.6554224, 46.3863863 ], + [ 7.6553303, 46.3865179 ], + [ 7.6551607, 46.3865606 ], + [ 7.6549675, 46.3866096 ], + [ 7.654871, 46.3866398 ], + [ 7.6546778, 46.3866888 ], + [ 7.6545017, 46.3867599 ], + [ 7.6543826, 46.38683 ], + [ 7.6542553, 46.3868946 ], + [ 7.6541443000000005, 46.3869702 ], + [ 7.6540323, 46.3870231 ], + [ 7.6538635, 46.3870604 ], + [ 7.653702, 46.3871032 ], + [ 7.6535729, 46.3871283 ], + [ 7.6534113, 46.3871428 ], + [ 7.6532425, 46.3872082 ], + [ 7.6530971999999995, 46.3872394 ], + [ 7.652969, 46.3872814 ], + [ 7.6528317999999995, 46.387301 ], + [ 7.6526792, 46.3873493 ], + [ 7.6525519, 46.3874251 ], + [ 7.6524247, 46.387501 ], + [ 7.6523307, 46.3875817 ], + [ 7.652236, 46.3876513 ], + [ 7.6520852999999995, 46.3877615 ], + [ 7.6519661, 46.3878258 ], + [ 7.6518713, 46.3879011 ], + [ 7.6516393, 46.387996 ], + [ 7.6515111000000005, 46.3880436 ], + [ 7.6513423, 46.3881033 ], + [ 7.6511825, 46.3881573 ], + [ 7.6509803, 46.3881952 ], + [ 7.650835, 46.3882263 ], + [ 7.6506905, 46.3882687 ], + [ 7.6505624, 46.3883221 ], + [ 7.6504504, 46.3883638 ], + [ 7.6503231, 46.388434 ], + [ 7.6501624, 46.388488 ], + [ 7.6499847, 46.3885309 ], + [ 7.6498239, 46.3885624 ], + [ 7.6496379999999995, 46.3886 ], + [ 7.6494611, 46.38866 ], + [ 7.6493347, 46.3887527 ], + [ 7.6492507, 46.3888727 ], + [ 7.649174, 46.3890039 ], + [ 7.6489545, 46.3889915 ], + [ 7.6488625, 46.3889312 ], + [ 7.6486964, 46.388844399999996 ], + [ 7.6485467, 46.3887797 ], + [ 7.6483815, 46.3887154 ], + [ 7.6482749, 46.3886838 ], + [ 7.6481486, 46.3885961 ], + [ 7.6480972, 46.3885181 ], + [ 7.6480178, 46.3883676 ], + [ 7.6479077, 46.3882571 ], + [ 7.6478066, 46.3881745 ], + [ 7.647673, 46.3880926 ], + [ 7.6474681, 46.388046 ], + [ 7.6472145000000005, 46.3880117 ], + [ 7.6470511, 46.3880093 ], + [ 7.6469681, 46.3879602 ], + [ 7.6468029, 46.3879071 ], + [ 7.6465403, 46.3878504 ], + [ 7.6463516, 46.387809 ], + [ 7.6461233, 46.3877968 ], + [ 7.645903, 46.3877674 ], + [ 7.6456177, 46.3877561 ], + [ 7.6453488, 46.3877559 ], + [ 7.6451186, 46.3876929 ], + [ 7.6449453, 46.3876231 ], + [ 7.6448189, 46.3875128 ], + [ 7.6445817, 46.387292 ], + [ 7.6443642, 46.3871443 ], + [ 7.6442063000000005, 46.3870629 ], + [ 7.6440997, 46.3870368 ], + [ 7.6439047, 46.3870351 ], + [ 7.6437098, 46.3870446 ], + [ 7.6434913, 46.3870828 ], + [ 7.643263, 46.3870705 ], + [ 7.6430906, 46.3870288 ], + [ 7.6429661, 46.3869693 ], + [ 7.6427693, 46.3869338 ], + [ 7.642632, 46.3869478 ], + [ 7.6424696, 46.3869679 ], + [ 7.6422746, 46.3869776 ], + [ 7.6419596, 46.3870234 ], + [ 7.6416834, 46.3870402 ], + [ 7.6414243, 46.3870679 ], + [ 7.6412185, 46.3870043 ], + [ 7.6410136, 46.3869578 ], + [ 7.6407321, 46.386845 ], + [ 7.6404586, 46.3867152 ], + [ 7.6401987, 46.3865231 ], + [ 7.6398639, 46.386293 ], + [ 7.6394452, 46.3860025 ], + [ 7.6393468, 46.3859763 ], + [ 7.6391266, 46.3859695 ], + [ 7.638873, 46.3859407 ], + [ 7.6387421, 46.3859038 ], + [ 7.638651, 46.3858718 ], + [ 7.6383955, 46.3857812 ], + [ 7.6382214, 46.3857113 ], + [ 7.638022, 46.3856138 ], + [ 7.6377494, 46.3855065 ], + [ 7.6374282000000004, 46.3854115 ], + [ 7.6372378, 46.3853307 ], + [ 7.6370636, 46.3852439 ], + [ 7.636856, 46.3851241 ], + [ 7.6365076, 46.3849619 ], + [ 7.6362334, 46.3848265 ], + [ 7.6357776, 46.3846214 ], + [ 7.6353959, 46.3844316 ], + [ 7.6350566, 46.3842805 ], + [ 7.6348283, 46.3842739 ], + [ 7.6345602, 46.3842905 ], + [ 7.6341712, 46.3843264 ], + [ 7.6339355, 46.3843142 ], + [ 7.6336107, 46.3843433 ], + [ 7.6334996, 46.3844018 ], + [ 7.6334707, 46.3845039 ], + [ 7.6334778, 46.3846728 ], + [ 7.6336167, 46.3849013 ], + [ 7.6332619, 46.3849647 ], + [ 7.6328955, 46.3849663 ], + [ 7.6325795, 46.3849953 ], + [ 7.6323042, 46.3850233 ], + [ 7.6317356, 46.3850403 ], + [ 7.6313854, 46.3850416 ], + [ 7.6310315, 46.3851333 ], + [ 7.6307661, 46.3852231 ], + [ 7.6305448, 46.3853684 ], + [ 7.6303932, 46.3854617 ], + [ 7.6301838, 46.385511 ], + [ 7.630015, 46.3855595 ], + [ 7.6297188, 46.3856724 ], + [ 7.6294154, 46.3858137 ], + [ 7.6292304, 46.3858682 ], + [ 7.6289714, 46.3859129 ], + [ 7.6286644, 46.385964 ], + [ 7.628399, 46.386037 ], + [ 7.6281255, 46.3861101 ], + [ 7.6279088, 46.3861876 ], + [ 7.6278229, 46.3862683 ], + [ 7.6277227, 46.3864225 ], + [ 7.6276532, 46.3865141 ], + [ 7.6275502, 46.3865837 ], + [ 7.6273814, 46.3866266 ], + [ 7.6271638, 46.3866816 ], + [ 7.6269715, 46.3867588 ], + [ 7.626845, 46.3868347 ], + [ 7.6267259, 46.3869216 ], + [ 7.6265842, 46.3870427 ], + [ 7.6263872, 46.3871933 ], + [ 7.6262626000000004, 46.3873423 ], + [ 7.6261289, 46.3874464 ], + [ 7.6260106, 46.3875334 ], + [ 7.6257046, 46.3876241 ], + [ 7.6253895, 46.3876754 ], + [ 7.6252134, 46.3877409 ], + [ 7.6251051, 46.3878952 ], + [ 7.6249389, 46.3880057 ], + [ 7.6247872, 46.3880651 ], + [ 7.624668, 46.3881464 ], + [ 7.6246489, 46.3882708 ], + [ 7.6246119, 46.3883729 ], + [ 7.6245478, 46.3884024 ], + [ 7.6244404, 46.3883482 ], + [ 7.6242743, 46.3882613 ], + [ 7.6240677, 46.3881865 ], + [ 7.6238791, 46.3881508 ], + [ 7.6237004, 46.3881656 ], + [ 7.6235721, 46.3881964 ], + [ 7.6233708, 46.388268 ], + [ 7.6231631, 46.3883567 ], + [ 7.6230358, 46.3884326 ], + [ 7.622885, 46.3885145 ], + [ 7.6227496, 46.3885961 ], + [ 7.622615, 46.3886945 ], + [ 7.6223992, 46.3887891 ], + [ 7.6222466, 46.3888371 ], + [ 7.6220372, 46.3888921 ], + [ 7.6219025, 46.3889681 ], + [ 7.6217779, 46.3891171 ], + [ 7.6216515000000005, 46.3892042 ], + [ 7.6215151, 46.3892519 ], + [ 7.6212542, 46.3892347 ], + [ 7.6209031, 46.389202 ], + [ 7.6204844, 46.389109 ], + [ 7.6199907, 46.3889778 ], + [ 7.6198735, 46.3889012 ], + [ 7.6196993, 46.3888089 ], + [ 7.619434, 46.3886957 ], + [ 7.6191371, 46.3885944 ], + [ 7.618907, 46.3885201 ], + [ 7.6187888, 46.3884097 ], + [ 7.6186761, 46.388254 ], + [ 7.618558, 46.388138 ], + [ 7.6183965, 46.3879721 ], + [ 7.6186077999999995, 46.3879622 ], + [ 7.618893, 46.3879792 ], + [ 7.6191457, 46.3879854 ], + [ 7.619384, 46.3880428 ], + [ 7.6195418, 46.3881242 ], + [ 7.6196196, 46.388038 ], + [ 7.6197019, 46.3878616 ], + [ 7.6196721, 46.3877157 ], + [ 7.6195873, 46.3876271 ], + [ 7.6195015999999995, 46.3875161 ], + [ 7.6195306, 46.3874366 ], + [ 7.619585, 46.387165 ], + [ 7.6196402, 46.38691 ], + [ 7.6197335, 46.3866151 ], + [ 7.6198473, 46.3864043 ], + [ 7.6201173, 46.3862298 ], + [ 7.6206989, 46.385925 ], + [ 7.6205616, 46.3859448 ], + [ 7.6202637, 46.386024 ], + [ 7.6200281, 46.3860398 ], + [ 7.6198241, 46.3860213 ], + [ 7.6196003999999995, 46.38593 ], + [ 7.6192837, 46.3857277 ], + [ 7.6189923, 46.3855699 ], + [ 7.6186449, 46.3854301 ], + [ 7.6181936, 46.3853152 ], + [ 7.6176594, 46.3851904 ], + [ 7.6177534, 46.385104 ], + [ 7.6178148, 46.3850013 ], + [ 7.6179377, 46.3848128 ], + [ 7.6180308, 46.3847039 ], + [ 7.6181961000000005, 46.3845709 ], + [ 7.6183803, 46.3845053 ], + [ 7.6186222, 46.384444 ], + [ 7.6188081, 46.3844123 ], + [ 7.6190248, 46.3843346 ], + [ 7.6192307, 46.3842009 ], + [ 7.6204048, 46.3832361 ], + [ 7.6206478, 46.3830227 ], + [ 7.6207975999999995, 46.3828901 ], + [ 7.6208988, 46.3827866 ], + [ 7.620991, 46.3826551 ], + [ 7.6210759, 46.382535 ], + [ 7.6211554, 46.3824827 ], + [ 7.6212899, 46.3823785 ], + [ 7.6214813, 46.3822902 ], + [ 7.6217141999999996, 46.3822179 ], + [ 7.6218903000000005, 46.3821468 ], + [ 7.6220303, 46.3819748 ], + [ 7.6220656, 46.3818558 ], + [ 7.6223085, 46.3816141 ], + [ 7.6224738, 46.3814699 ], + [ 7.6226562, 46.3813535 ], + [ 7.6228394999999995, 46.3812597 ], + [ 7.6229876, 46.3811046 ], + [ 7.6232088000000005, 46.3809311 ], + [ 7.6234211, 46.3807577 ], + [ 7.6235339, 46.3807329 ], + [ 7.6236458, 46.3806743 ], + [ 7.623682, 46.3805608 ], + [ 7.6237399, 46.3803848 ], + [ 7.6237923, 46.380271 ], + [ 7.6238528, 46.3801515 ], + [ 7.6239395, 46.3800878 ], + [ 7.6240822, 46.3800004 ], + [ 7.6242159, 46.3798793 ], + [ 7.6243089, 46.3797648 ], + [ 7.624337, 46.379657 ], + [ 7.6243316, 46.3795218 ], + [ 7.6243841, 46.3794137 ], + [ 7.6244301, 46.3793395 ], + [ 7.6245232, 46.3792362 ], + [ 7.6246902, 46.3791201 ], + [ 7.6248401, 46.3790156 ], + [ 7.6249638, 46.378844 ], + [ 7.6249188, 46.3787547 ], + [ 7.6247699, 46.3786844 ], + [ 7.624686, 46.3786185 ], + [ 7.6246337, 46.3785237 ], + [ 7.6245698, 46.3783558 ], + [ 7.6245239, 46.3782326 ], + [ 7.6244509, 46.3780368 ], + [ 7.6243797, 46.3778803 ], + [ 7.6242923000000005, 46.3777298 ], + [ 7.6243509, 46.3775539 ], + [ 7.6243447, 46.3773962 ], + [ 7.6243313, 46.3772781 ], + [ 7.6243431, 46.3771651 ], + [ 7.6243955, 46.3770457 ], + [ 7.6243902, 46.3769217 ], + [ 7.6243263, 46.376737 ], + [ 7.6243633, 46.376646 ], + [ 7.6244058, 46.3764874 ], + [ 7.6244898, 46.3763503 ], + [ 7.6246244, 46.3762575 ], + [ 7.6247174, 46.3761429 ], + [ 7.6246976, 46.3760588 ], + [ 7.6246127999999995, 46.3759646 ], + [ 7.6244721, 46.375911 ], + [ 7.6243314, 46.3758517 ], + [ 7.6242367, 46.375724 ], + [ 7.6241403, 46.3755511 ], + [ 7.6240835, 46.3753436 ], + [ 7.6241269, 46.3752131 ], + [ 7.6241523, 46.3750378 ], + [ 7.6241867, 46.3748793 ], + [ 7.6241706, 46.3746654 ], + [ 7.6241293, 46.3744632 ], + [ 7.6240879, 46.3742273 ], + [ 7.6240393, 46.3740365 ], + [ 7.6240601, 46.3739403 ], + [ 7.6241297, 46.3738544 ], + [ 7.6241911, 46.3737516 ], + [ 7.6242011, 46.3736049 ], + [ 7.6241488, 46.3735157 ], + [ 7.6240406, 46.3734559 ], + [ 7.6239062, 46.3733514 ], + [ 7.6239044, 46.3732952 ], + [ 7.6239965, 46.3731636 ], + [ 7.6240724, 46.3730212 ], + [ 7.6241782, 46.3728386 ], + [ 7.6242767, 46.3726563 ], + [ 7.624285, 46.3722502 ], + [ 7.6242634, 46.3721097 ], + [ 7.6243402, 46.3720011 ], + [ 7.6244585, 46.3719086 ], + [ 7.6245443, 46.3718166 ], + [ 7.624621, 46.3716968 ], + [ 7.6246148, 46.3715503 ], + [ 7.624503, 46.3713946 ], + [ 7.6244318, 46.3712382 ], + [ 7.6243362999999995, 46.3710823 ], + [ 7.6242569, 46.370926 ], + [ 7.6242075, 46.3707071 ], + [ 7.6241932, 46.3705608 ], + [ 7.6242366, 46.3704303 ], + [ 7.6242483, 46.3703004 ], + [ 7.6242096, 46.3701546 ], + [ 7.6241619, 46.3699864 ], + [ 7.6241052, 46.3697903 ], + [ 7.624025, 46.3696171 ], + [ 7.6239304, 46.369478 ], + [ 7.6238339, 46.3692939 ], + [ 7.623752, 46.3690926 ], + [ 7.6236366, 46.36883 ], + [ 7.6235753, 46.368741 ], + [ 7.6234570999999995, 46.3686137 ], + [ 7.6233318, 46.3685315 ], + [ 7.6231397, 46.368417 ], + [ 7.6230622, 46.3683002 ], + [ 7.623, 46.3681717 ], + [ 7.6229775, 46.3680199 ], + [ 7.6229325, 46.3679081 ], + [ 7.6228631, 46.3678024 ], + [ 7.622735, 46.3676414 ], + [ 7.6225583, 46.3674983 ], + [ 7.6224393, 46.3673598 ], + [ 7.6223355999999995, 46.3672097 ], + [ 7.6222491, 46.3670816 ], + [ 7.6220805, 46.3669328 ], + [ 7.6218613, 46.3667399 ], + [ 7.6216352, 46.3663835 ], + [ 7.6215279, 46.366132 ], + [ 7.6214631, 46.365936 ], + [ 7.6214406, 46.365773 ], + [ 7.6214507000000005, 46.3656318 ], + [ 7.6215437, 46.3655115 ], + [ 7.6215772, 46.3653361 ], + [ 7.6215629, 46.3651841 ], + [ 7.6215053, 46.3649542 ], + [ 7.6214224999999995, 46.364719 ], + [ 7.6213775, 46.3646128 ], + [ 7.6212773, 46.3645472 ], + [ 7.6211853, 46.36447 ], + [ 7.6209805, 46.3644347 ], + [ 7.6207667, 46.364377 ], + [ 7.6206513000000005, 46.3643285 ], + [ 7.6205836, 46.3642678 ], + [ 7.6205314, 46.36419 ], + [ 7.62048, 46.3641233 ], + [ 7.6204494, 46.3639661 ], + [ 7.62038, 46.3638491 ], + [ 7.6202629, 46.3637836 ], + [ 7.6201961, 46.3637399 ], + [ 7.6201041, 46.3636741 ], + [ 7.6200282999999995, 46.3635967 ], + [ 7.61995, 46.3634798 ], + [ 7.6198562, 46.3633746 ], + [ 7.6194647, 46.3633316 ], + [ 7.6195015999999995, 46.363455 ], + [ 7.6194808, 46.3635399 ], + [ 7.6194364, 46.3636367 ], + [ 7.6194066, 46.3637161 ], + [ 7.61932, 46.3637912 ], + [ 7.6192252, 46.3638438 ], + [ 7.6190971, 46.3639083 ], + [ 7.6188958, 46.3639518 ], + [ 7.6186441, 46.3639737 ], + [ 7.6184175, 46.3639838 ], + [ 7.6181884, 46.3639488 ], + [ 7.6177148, 46.3639019 ], + [ 7.6172826, 46.3638822 ], + [ 7.6168018, 46.3638467 ], + [ 7.6166268, 46.3637374 ], + [ 7.6165275999999995, 46.3636998 ], + [ 7.6163895, 46.3637026 ], + [ 7.6162434, 46.3637169 ], + [ 7.6160566, 46.3637262 ], + [ 7.6158699, 46.3637298 ], + [ 7.6156651, 46.3636944 ], + [ 7.6154765, 46.3636588 ], + [ 7.6153033, 46.3635889 ], + [ 7.6150246, 46.3635436 ], + [ 7.6147151, 46.363516 ], + [ 7.6143462, 46.3634499 ], + [ 7.6140511, 46.3633825 ], + [ 7.6137543999999995, 46.3632868 ], + [ 7.6135127, 46.3631395 ], + [ 7.6132702, 46.3629695 ], + [ 7.6130529, 46.3628328 ], + [ 7.6128211, 46.3627246 ], + [ 7.6126786, 46.3626148 ], + [ 7.6125054, 46.3625562 ], + [ 7.6123981, 46.3625244 ], + [ 7.6122023, 46.3625057 ], + [ 7.6119497, 46.3624939 ], + [ 7.6117531, 46.3624526 ], + [ 7.6115628, 46.3623662 ], + [ 7.6113976999999995, 46.3623075 ], + [ 7.6112164, 46.3622547 ], + [ 7.6108646, 46.3621939 ], + [ 7.6103675, 46.3621699 ], + [ 7.609884, 46.362078 ], + [ 7.609727, 46.3619966 ], + [ 7.6095439, 46.3618931 ], + [ 7.6093437999999995, 46.3617674 ], + [ 7.6091184, 46.3616252 ], + [ 7.6087378, 46.3614693 ], + [ 7.6083076, 46.3612805 ], + [ 7.6077701, 46.361043 ], + [ 7.6075085, 46.3610087 ], + [ 7.6072892, 46.3610187 ], + [ 7.6071042, 46.3610787 ], + [ 7.6068867000000004, 46.3611169 ], + [ 7.6066188, 46.361139 ], + [ 7.6064419, 46.3611875 ], + [ 7.6062244, 46.3612483 ], + [ 7.6060646, 46.3613191 ], + [ 7.6058462, 46.3613345 ], + [ 7.6057065, 46.3613092 ], + [ 7.6055269, 46.3612902 ], + [ 7.6054222, 46.3613092 ], + [ 7.605359, 46.3613499 ], + [ 7.6051958, 46.3613531 ], + [ 7.6050577, 46.3613446 ], + [ 7.6048936, 46.3613195 ], + [ 7.604732, 46.3613341 ], + [ 7.6046444, 46.3613752 ], + [ 7.6045739999999995, 46.3614498 ], + [ 7.6044963, 46.3615528 ], + [ 7.6044358, 46.3616668 ], + [ 7.6043816, 46.3617356 ], + [ 7.604303, 46.3617878 ], + [ 7.6042226, 46.3618176 ], + [ 7.6040945, 46.3618652 ], + [ 7.6038932, 46.3619142 ], + [ 7.6036984, 46.3619294 ], + [ 7.6035547999999995, 46.3619942 ], + [ 7.6034754, 46.3620465 ], + [ 7.6033301, 46.3620719 ], + [ 7.6032164, 46.3620854 ], + [ 7.6031207, 46.3621212 ], + [ 7.603025, 46.3621738 ], + [ 7.6029041, 46.36221 ], + [ 7.6026271, 46.3621929 ], + [ 7.6023826, 46.3621695 ], + [ 7.6020082, 46.3621712 ], + [ 7.6018078, 46.3622316 ], + [ 7.6016625, 46.362257 ], + [ 7.6015778, 46.3621853 ], + [ 7.6016158, 46.3621057 ], + [ 7.6017097, 46.3620249 ], + [ 7.6017567, 46.3619732 ], + [ 7.6018092, 46.3618707 ], + [ 7.6021017, 46.3616563 ], + [ 7.6023165, 46.3615337 ], + [ 7.602563, 46.3613993 ], + [ 7.6026822, 46.3613237 ], + [ 7.6027833000000005, 46.3612032 ], + [ 7.6029089, 46.3610824 ], + [ 7.6030335000000004, 46.3609447 ], + [ 7.6031321, 46.3607736 ], + [ 7.6031999, 46.3606313 ], + [ 7.6031756999999995, 46.3604401 ], + [ 7.6031381, 46.3600914 ], + [ 7.6030798, 46.3598613 ], + [ 7.6030295, 46.3596143 ], + [ 7.6030242, 46.3594791 ], + [ 7.6030767, 46.3593653 ], + [ 7.6031535, 46.3592511 ], + [ 7.60327, 46.3591079 ], + [ 7.6033361, 46.358943 ], + [ 7.6033471, 46.3588131 ], + [ 7.6033589, 46.3586945 ], + [ 7.603396, 46.3585924 ], + [ 7.6034313000000004, 46.3584619 ], + [ 7.6034252, 46.3583211 ], + [ 7.6034091, 46.3581186 ], + [ 7.603376, 46.3578881 ], + [ 7.6032904, 46.3577769 ], + [ 7.6031677, 46.3577625 ], + [ 7.6029963, 46.3577433 ], + [ 7.6028475, 46.3576786 ], + [ 7.6026572, 46.3575978 ], + [ 7.6024644, 46.3574606 ], + [ 7.602265, 46.3573406 ], + [ 7.6020235, 46.3572099 ], + [ 7.6017998, 46.3571016 ], + [ 7.6016493, 46.3570032 ], + [ 7.6015564, 46.3569035 ], + [ 7.6014601, 46.3567419 ], + [ 7.6013573999999995, 46.3565974 ], + [ 7.6012312, 46.3565039 ], + [ 7.6011059, 46.3564219 ], + [ 7.6009067, 46.3563075 ], + [ 7.6007065, 46.3561873 ], + [ 7.6005444, 46.3559932 ], + [ 7.6004805, 46.3558028 ], + [ 7.6004285, 46.3555219 ], + [ 7.6004116, 46.3552968 ], + [ 7.600308, 46.3551467 ], + [ 7.6001449999999995, 46.3549413 ], + [ 7.6000504, 46.3547909 ], + [ 7.6000794, 46.3547114 ], + [ 7.600157, 46.3546141 ], + [ 7.6002185, 46.3545338 ], + [ 7.6001582, 46.3544506 ], + [ 7.6000473, 46.3543117 ], + [ 7.5999590999999995, 46.3541387 ], + [ 7.5998953, 46.3539596 ], + [ 7.5999045, 46.3537904 ], + [ 7.5999444, 46.353564 ], + [ 7.599978, 46.3533829 ], + [ 7.5999124, 46.3531645 ], + [ 7.5998332, 46.3530081 ], + [ 7.5997496, 46.3527391 ], + [ 7.5997327, 46.352514 ], + [ 7.5997077, 46.3523058 ], + [ 7.59956, 46.3520608 ], + [ 7.5994871, 46.3518536 ], + [ 7.5994387, 46.3516629 ], + [ 7.5994397, 46.3514768 ], + [ 7.5994861, 46.3512166 ], + [ 7.5995513, 46.351018 ], + [ 7.5995776, 46.3508596 ], + [ 7.5995389, 46.3506913 ], + [ 7.5994418, 46.3505128 ], + [ 7.5993608, 46.3503171 ], + [ 7.5992636000000005, 46.3501217 ], + [ 7.5991348, 46.3499269 ], + [ 7.5990123, 46.3497094 ], + [ 7.5988891, 46.3494751 ], + [ 7.5988009, 46.3493021 ], + [ 7.5989816999999995, 46.3489377 ], + [ 7.5989863, 46.3488418 ], + [ 7.5989413, 46.3487525 ], + [ 7.5988332, 46.348687 ], + [ 7.5987881999999995, 46.348575 ], + [ 7.598791, 46.3484397 ], + [ 7.5988652, 46.3482635 ], + [ 7.5989907, 46.3481427 ], + [ 7.5991081, 46.3480219 ], + [ 7.5991388, 46.3479706 ], + [ 7.5991498, 46.3478521 ], + [ 7.5991698, 46.3477389 ], + [ 7.5992239999999995, 46.3476645 ], + [ 7.5993269, 46.3476005 ], + [ 7.5994712, 46.3475413 ], + [ 7.5996147, 46.347470799999996 ], + [ 7.5997266, 46.3474236 ], + [ 7.5997394, 46.3473443 ], + [ 7.5997197, 46.3472489 ], + [ 7.5997071, 46.3471308 ], + [ 7.5996946, 46.3470295 ], + [ 7.5996992, 46.346928 ], + [ 7.5996939999999995, 46.3468041 ], + [ 7.5996554, 46.3466582 ], + [ 7.599651, 46.3465343 ], + [ 7.599753, 46.3464364 ], + [ 7.5998875, 46.3463492 ], + [ 7.6000066, 46.346268 ], + [ 7.6000997, 46.3461647 ], + [ 7.6002, 46.346033 ], + [ 7.6002199, 46.3459199 ], + [ 7.6001958, 46.3457062 ], + [ 7.6001662, 46.3455883 ], + [ 7.6001446999999995, 46.3454534 ], + [ 7.6001881000000004, 46.3453117 ], + [ 7.6003145, 46.3452134 ], + [ 7.6003986, 46.3450876 ], + [ 7.6005484, 46.3449664 ], + [ 7.6006559, 46.3448008 ], + [ 7.6006442, 46.3447107 ], + [ 7.6006544, 46.344564 ], + [ 7.6006761, 46.3444959 ], + [ 7.6008025, 46.3444145 ], + [ 7.6009143, 46.3443446 ], + [ 7.600966, 46.3442308 ], + [ 7.6009787, 46.3441404 ], + [ 7.6010734, 46.344054 ], + [ 7.601234, 46.3440057 ], + [ 7.6014975, 46.3438935 ], + [ 7.6010835, 46.3439016 ], + [ 7.6009617, 46.3438984 ], + [ 7.6008011, 46.3439522 ], + [ 7.6005838, 46.3440186 ], + [ 7.6004547, 46.344038 ], + [ 7.6003095, 46.344069 ], + [ 7.600175, 46.3441506 ], + [ 7.6000379, 46.3441872 ], + [ 7.5998521, 46.3442247 ], + [ 7.5996932, 46.3443179 ], + [ 7.5995992999999995, 46.3444044 ], + [ 7.5994422, 46.3445428 ], + [ 7.5992761, 46.3446474 ], + [ 7.599101, 46.344758 ], + [ 7.5989737, 46.3448169 ], + [ 7.5987824, 46.3449222 ], + [ 7.5986163, 46.3450381 ], + [ 7.5984494, 46.3451373 ], + [ 7.5982734, 46.345214 ], + [ 7.5980641, 46.3452632 ], + [ 7.5979008, 46.3452326 ], + [ 7.5976854, 46.3451354 ], + [ 7.5974337, 46.3451402 ], + [ 7.5972838, 46.3452504 ], + [ 7.5972954999999995, 46.3453572 ], + [ 7.5972106, 46.3454661 ], + [ 7.5971167, 46.3455467 ], + [ 7.5969425, 46.3456742 ], + [ 7.5966888, 46.3458426 ], + [ 7.596381, 46.3460743 ], + [ 7.5958447, 46.3464962 ], + [ 7.5956444, 46.3465735 ], + [ 7.5953466, 46.3466358 ], + [ 7.5950641999999995, 46.3466864 ], + [ 7.5948343, 46.3466458 ], + [ 7.5945881, 46.3465717 ], + [ 7.5944014, 46.346581 ], + [ 7.5941848, 46.3466586 ], + [ 7.5940179, 46.3467633 ], + [ 7.5939663, 46.3468995 ], + [ 7.5939147, 46.3470303 ], + [ 7.5938289, 46.3471108 ], + [ 7.5937277, 46.3472313 ], + [ 7.5935932, 46.3473185 ], + [ 7.5935001, 46.347433 ], + [ 7.5934297, 46.347519 ], + [ 7.5933402, 46.347718 ], + [ 7.5932903, 46.3478993 ], + [ 7.5932341, 46.3481204 ], + [ 7.5931211, 46.3483368 ], + [ 7.5928851, 46.3487473 ], + [ 7.5927353, 46.3488743 ], + [ 7.592608, 46.3489501 ], + [ 7.5924726, 46.3490204 ], + [ 7.5922244, 46.3491042 ], + [ 7.5919754, 46.3491936 ], + [ 7.5917759, 46.3492764 ], + [ 7.591626, 46.3494034 ], + [ 7.5914535, 46.3495589 ], + [ 7.5913622, 46.3497186 ], + [ 7.5914614, 46.3497674 ], + [ 7.5915623, 46.3498444 ], + [ 7.5916876, 46.3499321 ], + [ 7.5917749, 46.3500882 ], + [ 7.591846, 46.3502391 ], + [ 7.5918872, 46.3504524 ], + [ 7.5919583, 46.3506145 ], + [ 7.5919995, 46.3508336 ], + [ 7.5919705, 46.35093 ], + [ 7.5918757, 46.3509882 ], + [ 7.5917655, 46.3510806 ], + [ 7.5916707, 46.3511614 ], + [ 7.5916499, 46.3512519 ], + [ 7.5916704, 46.3513475 ], + [ 7.5917462, 46.3514192 ], + [ 7.5918616, 46.351456400000004 ], + [ 7.592115, 46.3514966 ], + [ 7.5921681, 46.3516138 ], + [ 7.5921147, 46.3516883 ], + [ 7.5920217, 46.3518028 ], + [ 7.591833, 46.3519756 ], + [ 7.5924721, 46.3522957 ], + [ 7.5925235, 46.3523792 ], + [ 7.5925774, 46.3524965 ], + [ 7.5925899, 46.3526203 ], + [ 7.5925229, 46.3527627 ], + [ 7.5923982, 46.3529004 ], + [ 7.592242, 46.3530669 ], + [ 7.5921895, 46.3531807 ], + [ 7.5921524, 46.3532715 ], + [ 7.5920585, 46.353375 ], + [ 7.5919556, 46.3534389 ], + [ 7.5917984, 46.3535717 ], + [ 7.5916422, 46.3537269 ], + [ 7.5914317, 46.3539734 ], + [ 7.5912691, 46.3541795 ], + [ 7.591018, 46.35441 ], + [ 7.5908228, 46.3546055 ], + [ 7.5907452, 46.3547028 ], + [ 7.5907884, 46.3547584 ], + [ 7.5908487000000004, 46.3548587 ], + [ 7.5908621, 46.3549825 ], + [ 7.5907681, 46.3550858 ], + [ 7.5906742, 46.3551778 ], + [ 7.5904927, 46.355311 ], + [ 7.590424, 46.3554251 ], + [ 7.5902912, 46.3555687 ], + [ 7.590143, 46.3557294 ], + [ 7.5901157999999995, 46.3558539 ], + [ 7.5901219, 46.3560229 ], + [ 7.590146, 46.3562141 ], + [ 7.5903089999999995, 46.356442 ], + [ 7.5902438, 46.3566351 ], + [ 7.590185, 46.3567996 ], + [ 7.5901018, 46.3569591 ], + [ 7.5900322, 46.3570507 ], + [ 7.5899211, 46.3571036 ], + [ 7.5897451, 46.3571916 ], + [ 7.5895529, 46.3572686 ], + [ 7.5893469, 46.357391 ], + [ 7.5890501, 46.3575096 ], + [ 7.5887856, 46.3575994 ], + [ 7.5885707, 46.3577219 ], + [ 7.5884542, 46.3578652 ], + [ 7.5883718, 46.3580303 ], + [ 7.5882868, 46.3581503 ], + [ 7.5881784, 46.3582877 ], + [ 7.5880943, 46.358419 ], + [ 7.5880094, 46.3585447 ], + [ 7.5879551, 46.3586078 ], + [ 7.5878368, 46.3586947 ], + [ 7.5876869, 46.358816 ], + [ 7.5875541, 46.3589652 ], + [ 7.5874303, 46.3591086 ], + [ 7.5873056, 46.3592576 ], + [ 7.5872125, 46.3593721 ], + [ 7.5871186, 46.3594641 ], + [ 7.5869832, 46.3595401 ], + [ 7.5868549, 46.3595707 ], + [ 7.5866439, 46.3595974 ], + [ 7.5863361000000005, 46.3596091 ], + [ 7.5861529, 46.3597142 ], + [ 7.5860102, 46.3598183 ], + [ 7.5857935, 46.3598789 ], + [ 7.5853947999999995, 46.3598699 ], + [ 7.5851332, 46.3598467 ], + [ 7.5847841, 46.3598593 ], + [ 7.5846225, 46.3598793 ], + [ 7.58447, 46.3599387 ], + [ 7.5843499, 46.3599692 ], + [ 7.5841414, 46.3600466 ], + [ 7.5839076, 46.3601018 ], + [ 7.5836829, 46.3601738 ], + [ 7.5834321, 46.3602183 ], + [ 7.5831919, 46.3603074 ], + [ 7.5829608, 46.3604191 ], + [ 7.5827206, 46.360514 ], + [ 7.5825933, 46.3605954 ], + [ 7.5825318, 46.3606811 ], + [ 7.5824243, 46.3608467 ], + [ 7.5823257, 46.3610347 ], + [ 7.5822335, 46.3611717 ], + [ 7.582078, 46.3613552 ], + [ 7.5819072, 46.3615446 ], + [ 7.5817906, 46.3616821 ], + [ 7.5816975, 46.3618136 ], + [ 7.5816558, 46.3619948 ], + [ 7.5816400999999995, 46.3622093 ], + [ 7.5816317, 46.3624181 ], + [ 7.5815736000000005, 46.3625827 ], + [ 7.5815446, 46.3626734 ], + [ 7.5814759, 46.3627932 ], + [ 7.581426, 46.3629689 ], + [ 7.5814159, 46.3631326 ], + [ 7.5814091999999995, 46.3633808 ], + [ 7.5814025, 46.3636121 ], + [ 7.5812743000000005, 46.3636596 ], + [ 7.5810893, 46.3637309 ], + [ 7.5808573, 46.3638143 ], + [ 7.5806172, 46.3639148 ], + [ 7.5804446, 46.3640705 ], + [ 7.5802387, 46.364221 ], + [ 7.5801221, 46.3643642 ], + [ 7.5799794, 46.3644515 ], + [ 7.5798602, 46.3645271 ], + [ 7.5797012, 46.3646035 ], + [ 7.5795487, 46.3646741 ], + [ 7.5792769, 46.3647754 ], + [ 7.5790124, 46.3648763 ], + [ 7.5787721999999995, 46.3649769 ], + [ 7.5784599, 46.365107 ], + [ 7.5782937, 46.3652172 ], + [ 7.5781591, 46.3653102 ], + [ 7.577954, 46.3654831 ], + [ 7.5777788, 46.3655656 ], + [ 7.5775839, 46.365575 ], + [ 7.5769212, 46.3658979 ], + [ 7.5768362, 46.3660067 ], + [ 7.5767512, 46.3661268 ], + [ 7.5766598, 46.3662695 ], + [ 7.5765531, 46.366452 ], + [ 7.5764545, 46.3666456 ], + [ 7.5763712, 46.3668107 ], + [ 7.5762636, 46.3669537 ], + [ 7.5761461, 46.3670743 ], + [ 7.5760124, 46.3671954 ], + [ 7.5758616, 46.3672829 ], + [ 7.5756945, 46.3673876 ], + [ 7.5755356, 46.3674752 ], + [ 7.5753595, 46.3675519 ], + [ 7.5751762, 46.3676401 ], + [ 7.5749612, 46.3677514 ], + [ 7.5747147, 46.3678971 ], + [ 7.5745006, 46.3680535 ], + [ 7.5742395, 46.3682277 ], + [ 7.5740182, 46.3683842 ], + [ 7.5737888, 46.3685634 ], + [ 7.5734978, 46.3688172 ], + [ 7.5729962, 46.3692892 ], + [ 7.5725472, 46.3696643 ], + [ 7.5722951, 46.3698835 ], + [ 7.5722623, 46.3700702 ], + [ 7.5722368, 46.3702623 ], + [ 7.5721805, 46.3704945 ], + [ 7.5721601, 46.3707881 ], + [ 7.5719718, 46.3711808 ], + [ 7.5720971, 46.3712685 ], + [ 7.572281, 46.3714003 ], + [ 7.5724153, 46.3714934 ], + [ 7.5725235, 46.3715647 ], + [ 7.5725359, 46.3716715 ], + [ 7.5725484, 46.3717897 ], + [ 7.572569, 46.3718964 ], + [ 7.5726058, 46.3719971 ], + [ 7.5726759, 46.3721255 ], + [ 7.5727462, 46.3722764 ], + [ 7.572736, 46.3724287 ], + [ 7.5726583, 46.3725261 ], + [ 7.5725181, 46.3726754 ], + [ 7.5723763, 46.3728022 ], + [ 7.5722523, 46.3729454 ], + [ 7.572143, 46.3730773 ], + [ 7.5720687, 46.3732535 ], + [ 7.5719953, 46.3734522 ], + [ 7.5719525999999995, 46.3736109 ], + [ 7.5719578, 46.3737517 ], + [ 7.5720045, 46.3738862 ], + [ 7.5720233, 46.3739648 ], + [ 7.5720149, 46.3741566 ], + [ 7.5719876, 46.3742924 ], + [ 7.5719359, 46.3744231 ], + [ 7.5719176, 46.3745812 ], + [ 7.5719066, 46.3747167 ], + [ 7.5719037, 46.3748633 ], + [ 7.5718132, 46.3750456 ], + [ 7.5717406, 46.3752555 ], + [ 7.5716202, 46.375506 ], + [ 7.5714322, 46.3757013 ], + [ 7.571366, 46.375883 ], + [ 7.5715085, 46.3759929 ], + [ 7.5717086, 46.3761019 ], + [ 7.5717608, 46.3761855 ], + [ 7.5717976, 46.3763031 ], + [ 7.5718425, 46.3764093 ], + [ 7.5719273000000005, 46.3765035 ], + [ 7.5720598, 46.3765685 ], + [ 7.5722582, 46.3766436 ], + [ 7.5725794, 46.3767557 ], + [ 7.5728526, 46.3768745 ], + [ 7.573125, 46.3769763 ], + [ 7.5734902, 46.3771496 ], + [ 7.573952, 46.3773155 ], + [ 7.5740985, 46.3777298 ], + [ 7.5741542, 46.3779091 ], + [ 7.574318, 46.3781483 ], + [ 7.574363, 46.3782603 ], + [ 7.5745974, 46.3784361 ], + [ 7.5746983, 46.3785186 ], + [ 7.5750349, 46.3785967 ], + [ 7.5758297, 46.3787391 ], + [ 7.5761175, 46.3788294 ], + [ 7.5763159, 46.3789043 ], + [ 7.5764828, 46.3790252 ], + [ 7.576562, 46.3791703 ], + [ 7.5766249, 46.3793268 ], + [ 7.5766147, 46.379468 ], + [ 7.5766371, 46.3796311 ], + [ 7.5766278, 46.3798003 ], + [ 7.5766574, 46.3799407 ], + [ 7.5767087, 46.3800074 ], + [ 7.5768566, 46.3800383 ], + [ 7.5770281, 46.3800575 ], + [ 7.5772231, 46.3800537 ], + [ 7.5774984, 46.3800258 ], + [ 7.5778054, 46.3799803 ], + [ 7.5780896, 46.3799579 ], + [ 7.5783513, 46.3799923 ], + [ 7.5786789, 46.380048 ], + [ 7.5789107, 46.3801506 ], + [ 7.5790865, 46.3802768 ], + [ 7.5792037, 46.3803647 ], + [ 7.5792739000000005, 46.3804874 ], + [ 7.5793432, 46.38061 ], + [ 7.5794036, 46.3806934 ], + [ 7.5795423, 46.3809219 ], + [ 7.5796133, 46.3810614 ], + [ 7.5796925, 46.3812121 ], + [ 7.5797555, 46.3813631 ], + [ 7.5797851, 46.3815035 ], + [ 7.579727, 46.3816737 ], + [ 7.5796745, 46.3817988 ], + [ 7.5795912, 46.3819469 ], + [ 7.5794918, 46.382118 ], + [ 7.5793824, 46.3822273 ], + [ 7.5793542, 46.3823349 ], + [ 7.5793983, 46.3824186 ], + [ 7.5794578, 46.3824908 ], + [ 7.5795489, 46.3825285 ], + [ 7.5796075, 46.3825724 ], + [ 7.5796922, 46.382661 ], + [ 7.5797445, 46.3827502 ], + [ 7.5797714, 46.3828117 ], + [ 7.5798083, 46.3829181 ], + [ 7.5797972, 46.3830536 ], + [ 7.5797772, 46.3831724 ], + [ 7.5798654, 46.3833398 ], + [ 7.5799861, 46.3835121 ], + [ 7.5800636, 46.3836233 ], + [ 7.580124, 46.383718 ], + [ 7.580177, 46.3838242 ], + [ 7.5801733, 46.3839426 ], + [ 7.5801513, 46.3842136 ], + [ 7.5700046, 46.4037758 ], + [ 7.5841155, 46.4167504 ], + [ 7.5838543, 46.4163458 ], + [ 7.5838147, 46.416139 ], + [ 7.5839181, 46.4158959 ], + [ 7.5840738, 46.4157338 ], + [ 7.5843983999999995, 46.4155535 ], + [ 7.5850482, 46.4153278 ], + [ 7.5852816, 46.4150576 ], + [ 7.5853072, 46.4149226 ], + [ 7.5852152, 46.4145629 ], + [ 7.5854358, 46.4143647 ], + [ 7.5863447, 46.4137789 ], + [ 7.5866045, 46.4136616 ], + [ 7.5876833, 46.4134173 ], + [ 7.5893079, 46.4129834 ], + [ 7.5904774, 46.412622 ], + [ 7.592232, 46.4121968 ], + [ 7.5928431, 46.412151 ], + [ 7.5948576, 46.4116265 ], + [ 7.5955072999999995, 46.4114277 ], + [ 7.5960274, 46.4114 ], + [ 7.5960024, 46.4117419 ], + [ 7.5960687, 46.4122096 ], + [ 7.5966175, 46.4130634 ], + [ 7.5969444, 46.4136746 ], + [ 7.5975312, 46.4142315 ], + [ 7.5981569, 46.4147074 ], + [ 7.5988084, 46.4150843 ], + [ 7.5994203, 46.4152904 ], + [ 7.5998111, 46.4155147 ], + [ 7.6000464, 46.4158922 ], + [ 7.6001775, 46.4162518 ], + [ 7.6002046, 46.4166116 ], + [ 7.6003095, 46.4169263 ], + [ 7.6001413, 46.4172234 ], + [ 7.6001169, 46.4177632 ], + [ 7.5994298, 46.4185288 ], + [ 7.5991706, 46.418862 ], + [ 7.5990416, 46.419204 ], + [ 7.5990165, 46.4195369 ], + [ 7.5991083, 46.4197886 ], + [ 7.599278, 46.4199863 ], + [ 7.5993436, 46.4201931 ], + [ 7.5991494, 46.4204812 ], + [ 7.5986956, 46.4210036 ], + [ 7.5985012, 46.4212468 ], + [ 7.5984368, 46.4214537 ], + [ 7.5985282, 46.4215616 ], + [ 7.5993098, 46.4219473 ], + [ 7.5994794, 46.422127 ], + [ 7.5995451, 46.422605 ], + [ 7.599852, 46.4224737 ], + [ 7.6000174, 46.4223296 ], + [ 7.6001828, 46.4221853 ], + [ 7.6002562000000005, 46.4219866 ], + [ 7.6006708, 46.4219728 ], + [ 7.6005988, 46.4217994 ], + [ 7.6008743, 46.4217602 ], + [ 7.6008185, 46.4215866 ], + [ 7.6010054, 46.4215884 ], + [ 7.6009595, 46.4214429 ], + [ 7.6011157, 46.4214792 ], + [ 7.6010715, 46.4213955 ], + [ 7.6012179, 46.421387 ], + [ 7.6011215, 46.4212311 ], + [ 7.6013264, 46.4212495 ], + [ 7.6012445, 46.4210482 ], + [ 7.6012212, 46.4208569 ], + [ 7.6010722, 46.4208036 ], + [ 7.6008645999999995, 46.4206948 ], + [ 7.6007121, 46.4205456 ], + [ 7.6006627, 46.4203267 ], + [ 7.6009785999999995, 46.4204841 ], + [ 7.6012179, 46.4205751 ], + [ 7.6015213, 46.42062 ], + [ 7.601534, 46.4205352 ], + [ 7.6024524, 46.4207143 ], + [ 7.6027233, 46.4207598 ], + [ 7.602977, 46.4207943 ], + [ 7.6032616, 46.4207887 ], + [ 7.603445, 46.4207062 ], + [ 7.6036438, 46.4205783 ], + [ 7.6039148999999995, 46.4204263 ], + [ 7.6041851, 46.4202632 ], + [ 7.6044002, 46.4201518 ], + [ 7.6046487, 46.4200624 ], + [ 7.6049134, 46.4199499 ], + [ 7.6050653, 46.4198849 ], + [ 7.6052423000000005, 46.4198308 ], + [ 7.6054845, 46.4197865 ], + [ 7.6056308, 46.419778 ], + [ 7.6058322, 46.4197289 ], + [ 7.6060996, 46.4196899 ], + [ 7.6063759, 46.4196732 ], + [ 7.6066831, 46.4196276 ], + [ 7.607095, 46.4195405 ], + [ 7.6074518, 46.4194997 ], + [ 7.6076361, 46.4194284 ], + [ 7.6079731, 46.4193034 ], + [ 7.6084529, 46.4191022 ], + [ 7.6085975, 46.419048599999996 ], + [ 7.6087267, 46.4190235 ], + [ 7.6088648, 46.4190039 ], + [ 7.6090265, 46.4189782 ], + [ 7.6091963, 46.4189579 ], + [ 7.6093418, 46.4189325 ], + [ 7.609462, 46.4188851 ], + [ 7.6095885, 46.418781 ], + [ 7.6096599, 46.4187402 ], + [ 7.6098143, 46.4187315 ], + [ 7.6099371, 46.4187517 ], + [ 7.6100736, 46.4187039 ], + [ 7.6101856, 46.4186566 ], + [ 7.6103455, 46.4185857 ], + [ 7.6105235, 46.418554 ], + [ 7.6107258, 46.4185275 ], + [ 7.6108794, 46.4185076 ], + [ 7.6110239, 46.4184595 ], + [ 7.6112832, 46.4184206 ], + [ 7.6114547, 46.4184285 ], + [ 7.6116101, 46.4184592 ], + [ 7.6117834, 46.4185066 ], + [ 7.6119722, 46.4185593 ], + [ 7.6122647, 46.4185309 ], + [ 7.6127001, 46.4184265 ], + [ 7.6132412, 46.41832 ], + [ 7.6134165, 46.4182262 ], + [ 7.613535, 46.418145 ], + [ 7.6136406, 46.418143 ], + [ 7.6138031999999995, 46.4181341 ], + [ 7.6139297, 46.4180357 ], + [ 7.6141077, 46.4180097 ], + [ 7.6143335, 46.4179544 ], + [ 7.6144762, 46.4178502 ], + [ 7.6145748, 46.4176735 ], + [ 7.6147457, 46.4174784 ], + [ 7.6148957, 46.4173514 ], + [ 7.6150113, 46.4174055 ], + [ 7.6151053, 46.4173021 ], + [ 7.6152732, 46.4174398 ], + [ 7.6154323999999995, 46.4171379 ], + [ 7.6155103, 46.4168488 ], + [ 7.6155764, 46.4166671 ], + [ 7.6156596, 46.4164963 ], + [ 7.6157663, 46.4163307 ], + [ 7.6158983, 46.4161589 ], + [ 7.6160457, 46.4159869 ], + [ 7.6161776, 46.4158208 ], + [ 7.6163782, 46.4157491 ], + [ 7.6166031, 46.4156771 ], + [ 7.6167514, 46.4155163 ], + [ 7.6168879, 46.4152543 ], + [ 7.6170860000000005, 46.4149234 ], + [ 7.6172416, 46.4145425 ], + [ 7.6173321, 46.4143491 ], + [ 7.6173882, 46.414128 ], + [ 7.61742, 46.4139132 ], + [ 7.61746, 46.4136926 ], + [ 7.6174672999999995, 46.4134556 ], + [ 7.6174161, 46.4131918 ], + [ 7.6172908, 46.4129123 ], + [ 7.6172024, 46.4127392 ], + [ 7.6171475, 46.4125824 ], + [ 7.6170275, 46.412427 ], + [ 7.6169083, 46.4122941 ], + [ 7.6167964999999995, 46.4121384 ], + [ 7.6165078, 46.4118398 ], + [ 7.6162776999999995, 46.4115794 ], + [ 7.6160125, 46.4112689 ], + [ 7.6156676999999995, 46.4109825 ], + [ 7.6153195, 46.4106286 ], + [ 7.6151408, 46.4104235 ], + [ 7.6149866, 46.4102292 ], + [ 7.6149389, 46.4100442 ], + [ 7.6149336, 46.4099315 ], + [ 7.6149292, 46.4098133 ], + [ 7.6148742, 46.4096453 ], + [ 7.6148264999999995, 46.4094827 ], + [ 7.6146795, 46.40926 ], + [ 7.6146525, 46.4092042 ], + [ 7.6145758, 46.4091099 ], + [ 7.6144891999999995, 46.408982 ], + [ 7.6143602, 46.4088041 ], + [ 7.614289, 46.408642 ], + [ 7.6141754, 46.4084582 ], + [ 7.6140456, 46.4082691 ], + [ 7.6139256, 46.4081193 ], + [ 7.6138407, 46.4080139 ], + [ 7.6137641, 46.4079476 ], + [ 7.6137623, 46.4078913 ], + [ 7.6137588, 46.4078068 ], + [ 7.6136992, 46.4077404 ], + [ 7.6136235, 46.4076798 ], + [ 7.6136208, 46.4076066 ], + [ 7.6136823, 46.4075153 ], + [ 7.6136616, 46.4073972 ], + [ 7.6135678, 46.4073032 ], + [ 7.6134957, 46.4071186 ], + [ 7.6134236, 46.4069565 ], + [ 7.6133316, 46.4068907 ], + [ 7.6132397, 46.4066276 ], + [ 7.6130873999999995, 46.4062753 ], + [ 7.6129892, 46.4060519 ], + [ 7.6128936, 46.4058959 ], + [ 7.6127574, 46.405752 ], + [ 7.6126185, 46.4055349 ], + [ 7.6124805, 46.4053347 ], + [ 7.6116722, 46.4036367 ], + [ 7.611841, 46.4035658 ], + [ 7.6120062, 46.4036414 ], + [ 7.6120035, 46.4035626 ], + [ 7.6119992, 46.4034612 ], + [ 7.6120281, 46.4033704 ], + [ 7.6121058, 46.403273 ], + [ 7.612208, 46.403192 ], + [ 7.6123281, 46.4031446 ], + [ 7.6125069, 46.4031299 ], + [ 7.6126296, 46.4031387 ], + [ 7.6127687, 46.4031754 ], + [ 7.612951, 46.403245 ], + [ 7.613109, 46.4033378 ], + [ 7.6132732, 46.4033683 ], + [ 7.6134357999999995, 46.4033708 ], + [ 7.6136308, 46.4033613 ], + [ 7.6138095, 46.4033408 ], + [ 7.6140615, 46.4033472 ], + [ 7.6142728, 46.4033429 ], + [ 7.6145166, 46.4033326 ], + [ 7.6147116, 46.4033174 ], + [ 7.6149716, 46.4033009 ], + [ 7.6151161, 46.4032529 ], + [ 7.6150702, 46.4031355 ], + [ 7.6150188, 46.4030688 ], + [ 7.6150469, 46.4029612 ], + [ 7.615093, 46.4028926 ], + [ 7.6151292, 46.4027792 ], + [ 7.6151346, 46.4026945 ], + [ 7.6152566, 46.4026978 ], + [ 7.6154101, 46.4026777 ], + [ 7.6155302, 46.4026191 ], + [ 7.6155908, 46.4025164 ], + [ 7.6155945, 46.4023923 ], + [ 7.615572, 46.4022405 ], + [ 7.6155659, 46.402094 ], + [ 7.6155498, 46.401897 ], + [ 7.6155192, 46.4017398 ], + [ 7.6155455, 46.4015701 ], + [ 7.615589, 46.4014396 ], + [ 7.6155574999999995, 46.4012711 ], + [ 7.6155342, 46.4010968 ], + [ 7.6155181, 46.4008886 ], + [ 7.6155165, 46.4006461 ], + [ 7.6155501, 46.4004706 ], + [ 7.6155772, 46.4003236 ], + [ 7.6155476, 46.4001944 ], + [ 7.6154827, 46.3999985 ], + [ 7.6154693, 46.3998578 ], + [ 7.6154965, 46.3997332 ], + [ 7.6154731, 46.3995477 ], + [ 7.6153866, 46.3994253 ], + [ 7.6152846, 46.3993089 ], + [ 7.6151827999999995, 46.3992152 ], + [ 7.6150628000000005, 46.3990653 ], + [ 7.6149356, 46.3989325 ], + [ 7.6147677, 46.3987892 ], + [ 7.614599, 46.3986404 ], + [ 7.6145305, 46.3985515 ], + [ 7.6145026, 46.3984675 ], + [ 7.6144811, 46.3983438 ], + [ 7.6144044, 46.3982553 ], + [ 7.6142961, 46.398201 ], + [ 7.6141228, 46.3981368 ], + [ 7.6140778000000005, 46.3980306 ], + [ 7.6140498999999995, 46.3979352 ], + [ 7.6140437, 46.3977775 ], + [ 7.6141507, 46.3971947 ], + [ 7.6143394, 46.397236 ], + [ 7.6144882, 46.3972839 ], + [ 7.6146201, 46.3973377 ], + [ 7.6147283, 46.3974031 ], + [ 7.6148709, 46.3974962 ], + [ 7.6149439999999995, 46.397506 ], + [ 7.6151318, 46.3975192 ], + [ 7.6153123, 46.3975495 ], + [ 7.6154252, 46.397519 ], + [ 7.6155577999999995, 46.3975898 ], + [ 7.6156328, 46.397639 ], + [ 7.6157085, 46.3976994 ], + [ 7.6158583, 46.397781 ], + [ 7.6159512, 46.3978582 ], + [ 7.6160514, 46.397935 ], + [ 7.6161353, 46.3979955 ], + [ 7.616333, 46.3980479 ], + [ 7.6165062, 46.3981065 ], + [ 7.6166298999999995, 46.3981436 ], + [ 7.6167446, 46.3981806 ], + [ 7.616935, 46.3982558 ], + [ 7.6170595, 46.3983154 ], + [ 7.6169665, 46.3984413 ], + [ 7.6169131, 46.3985325 ], + [ 7.6169256, 46.3986282 ], + [ 7.616996, 46.3987564 ], + [ 7.6170483, 46.3988624 ], + [ 7.6171429, 46.3989733 ], + [ 7.6172422, 46.3990165 ], + [ 7.6173966, 46.3990134 ], + [ 7.6175412, 46.3989768 ], + [ 7.6177208, 46.3989901 ], + [ 7.6177713, 46.3990173 ], + [ 7.6179004, 46.3989922 ], + [ 7.6180458, 46.3989725 ], + [ 7.6181668, 46.398953 ], + [ 7.6182894999999995, 46.3989563 ], + [ 7.6183636, 46.3989831 ], + [ 7.6184214, 46.3990045 ], + [ 7.6184899, 46.3990988 ], + [ 7.6185431, 46.3991936 ], + [ 7.6186568999999995, 46.3992027 ], + [ 7.6187643, 46.3992401 ], + [ 7.6188798, 46.3992885 ], + [ 7.6189637, 46.3993376 ], + [ 7.6190557, 46.3993977 ], + [ 7.6191767, 46.3993728 ], + [ 7.6193392, 46.399364 ], + [ 7.6194611, 46.3993672 ], + [ 7.6196326, 46.399375 ], + [ 7.6197536, 46.3993501 ], + [ 7.6199063, 46.3993019 ], + [ 7.6200824, 46.3992421 ], + [ 7.6202458, 46.3992501 ], + [ 7.6204083, 46.3992469 ], + [ 7.6205392, 46.3992613 ], + [ 7.6207207, 46.3993309 ], + [ 7.6209761, 46.3993992 ], + [ 7.6212722, 46.3994835 ], + [ 7.6213958, 46.3995205 ], + [ 7.6215665, 46.3995172 ], + [ 7.6217452, 46.3995022 ], + [ 7.6220612, 46.3994679 ], + [ 7.6224115, 46.3994835 ], + [ 7.6228016, 46.39947 ], + [ 7.6230877, 46.3995095 ], + [ 7.6233405, 46.3995213 ], + [ 7.623521, 46.3995515 ], + [ 7.6237269, 46.3996151 ], + [ 7.6239254, 46.3996902 ], + [ 7.6240816, 46.3997491 ], + [ 7.6242558, 46.3998246 ], + [ 7.6244219, 46.399917 ], + [ 7.6246295, 46.40002 ], + [ 7.6248443, 46.4000947 ], + [ 7.6250663, 46.400141 ], + [ 7.6252478, 46.4002107 ], + [ 7.6251916, 46.4004316 ], + [ 7.6251852, 46.4006911 ], + [ 7.6251849, 46.4010745 ], + [ 7.6252761, 46.4011235 ], + [ 7.6253655, 46.401116 ], + [ 7.6254702, 46.4010857 ], + [ 7.6256716, 46.4010479 ], + [ 7.625835, 46.4010615 ], + [ 7.625965, 46.4010589 ], + [ 7.6260788, 46.4010512 ], + [ 7.6262422, 46.4010592 ], + [ 7.6263974999999995, 46.4010842 ], + [ 7.6265861, 46.4011199 ], + [ 7.6268578, 46.4011935 ], + [ 7.627088, 46.4012509 ], + [ 7.6272767, 46.4012866 ], + [ 7.6275069, 46.4013497 ], + [ 7.6277029, 46.4013796 ], + [ 7.6279321, 46.4014033 ], + [ 7.6280866, 46.4014115 ], + [ 7.6282337, 46.4014142 ], + [ 7.6283791, 46.4014 ], + [ 7.6285262, 46.4014027 ], + [ 7.6286147, 46.4013896 ], + [ 7.6287962, 46.4014425 ], + [ 7.6290102, 46.4015114 ], + [ 7.6292322, 46.4015578 ], + [ 7.6294038, 46.4015882 ], + [ 7.6295509, 46.4016021 ], + [ 7.6297477, 46.401632 ], + [ 7.6300194, 46.4017056 ], + [ 7.6301837, 46.4017418 ], + [ 7.6304618, 46.401787 ], + [ 7.6306839, 46.4018501 ], + [ 7.6308319000000004, 46.4018811 ], + [ 7.6310458, 46.4019388 ], + [ 7.6312598, 46.4020022 ], + [ 7.6314819, 46.4020654 ], + [ 7.6318266999999995, 46.4021375 ], + [ 7.6316885, 46.4023432 ], + [ 7.6316849, 46.4024617 ], + [ 7.6317137, 46.4025682 ], + [ 7.63184, 46.4026785 ], + [ 7.6319475, 46.4027214 ], + [ 7.6320621, 46.4027416 ], + [ 7.6322002, 46.4027276 ], + [ 7.6323871, 46.4027127 ], + [ 7.6325506, 46.4027375 ], + [ 7.6326499, 46.4027807 ], + [ 7.6327835, 46.4028681 ], + [ 7.6329252, 46.4029556 ], + [ 7.633066, 46.4030092 ], + [ 7.6331815, 46.403052 ], + [ 7.6333864, 46.4030817 ], + [ 7.6334776, 46.403125 ], + [ 7.6335761, 46.4031511 ], + [ 7.6338062, 46.4031974 ], + [ 7.633929, 46.4032174 ], + [ 7.6340988, 46.4032028 ], + [ 7.6342369, 46.4031888 ], + [ 7.6343578999999995, 46.4031639 ], + [ 7.6345115, 46.4031382 ], + [ 7.634674, 46.4031349 ], + [ 7.6347723, 46.4031387 ], + [ 7.634934, 46.4031128 ], + [ 7.63512, 46.4030809 ], + [ 7.6352573, 46.4030725 ], + [ 7.6354695, 46.4030852 ], + [ 7.6355931, 46.403111 ], + [ 7.6356753, 46.4031432 ], + [ 7.6357764, 46.40322 ], + [ 7.63591, 46.4033076 ], + [ 7.6359777, 46.4033739 ], + [ 7.6361365, 46.4034723 ], + [ 7.6361979, 46.403595 ], + [ 7.6363495, 46.403716 ], + [ 7.636484, 46.4038204 ], + [ 7.6365923, 46.4038802 ], + [ 7.636716, 46.4039285 ], + [ 7.6369453, 46.4039577 ], + [ 7.6371737, 46.4039701 ], + [ 7.6373047, 46.4039958 ], + [ 7.6374112, 46.4040217 ], + [ 7.6376847, 46.4041347 ], + [ 7.63785, 46.4042047 ], + [ 7.6380323, 46.40428 ], + [ 7.6382454, 46.4043264 ], + [ 7.6384584, 46.404356 ], + [ 7.6386471, 46.404386099999996 ], + [ 7.6388918, 46.4044149 ], + [ 7.6391284, 46.4044159 ], + [ 7.6394796, 46.4044427 ], + [ 7.639857, 46.4045198 ], + [ 7.6400872, 46.4045771 ], + [ 7.6403653, 46.4046223 ], + [ 7.6406524000000005, 46.404673 ], + [ 7.6408483, 46.4046916 ], + [ 7.6409703, 46.4046948 ], + [ 7.6411165, 46.404675 ], + [ 7.6412935, 46.4046207 ], + [ 7.6414868, 46.4045886 ], + [ 7.6416745, 46.4045905 ], + [ 7.6418226, 46.4046383 ], + [ 7.6420131, 46.4047077 ], + [ 7.6422343, 46.4047485 ], + [ 7.6424881, 46.4047997 ], + [ 7.6427589000000005, 46.4048451 ], + [ 7.6431029, 46.4049057 ], + [ 7.6434631, 46.4049492 ], + [ 7.643772, 46.4049544 ], + [ 7.6440924, 46.4050155 ], + [ 7.6443958, 46.4050771 ], + [ 7.6445439, 46.4051193 ], + [ 7.6447001, 46.4051613 ], + [ 7.6449574, 46.4052746 ], + [ 7.6451975, 46.4053825 ], + [ 7.6453383, 46.4054359 ], + [ 7.6455514, 46.4054713 ], + [ 7.6457547, 46.405484 ], + [ 7.6459098999999995, 46.4054809 ], + [ 7.6461113, 46.4054487 ], + [ 7.6464047, 46.4054429 ], + [ 7.6466178, 46.405478 ], + [ 7.6467984, 46.4055307 ], + [ 7.6469311, 46.4055957 ], + [ 7.6470566, 46.4056722 ], + [ 7.6472236, 46.4057703 ], + [ 7.6473491, 46.4058637 ], + [ 7.6474232, 46.4058846 ], + [ 7.6475712, 46.4059155 ], + [ 7.6477428, 46.4059402 ], + [ 7.6478981, 46.4059652 ], + [ 7.6480064, 46.4060138 ], + [ 7.64814, 46.4060958 ], + [ 7.648242, 46.4062009 ], + [ 7.6483432, 46.4063002 ], + [ 7.6484307, 46.4064395 ], + [ 7.6484921, 46.406551 ], + [ 7.6485788, 46.4066959 ], + [ 7.6486013, 46.4068533 ], + [ 7.6486599, 46.4070776 ], + [ 7.6487123, 46.4071724 ], + [ 7.6487989, 46.4072947 ], + [ 7.6489678, 46.4074604 ], + [ 7.6491962000000004, 46.4076701 ], + [ 7.6492593, 46.407821 ], + [ 7.6493875, 46.4079706 ], + [ 7.6495798, 46.4080964 ], + [ 7.6497866, 46.4081768 ], + [ 7.6500167999999995, 46.4082287 ], + [ 7.6503338, 46.4082336 ], + [ 7.6505831, 46.4081608 ], + [ 7.6504484999999995, 46.4084567 ], + [ 7.6504457, 46.4085808 ], + [ 7.650508, 46.4087148 ], + [ 7.6506416999999995, 46.4088024 ], + [ 7.6507907, 46.408867 ], + [ 7.6509811, 46.4089365 ], + [ 7.6512105, 46.4089826 ], + [ 7.6513514, 46.4090474 ], + [ 7.6514516, 46.4091018 ], + [ 7.6514949, 46.4091686 ], + [ 7.6516051, 46.4092792 ], + [ 7.6516573999999995, 46.4093569 ], + [ 7.6517105999999995, 46.409463 ], + [ 7.6517305, 46.4095585 ], + [ 7.6517919, 46.40967 ], + [ 7.6519021, 46.4097862 ], + [ 7.6521503, 46.4098714 ], + [ 7.6523499, 46.4099858 ], + [ 7.6524592, 46.4100624 ], + [ 7.6525666, 46.410111 ], + [ 7.6527807, 46.4101744 ], + [ 7.6530027, 46.410215 ], + [ 7.6532321, 46.4102611 ], + [ 7.6533161, 46.4103328 ], + [ 7.6533676, 46.4103881 ], + [ 7.6534046, 46.4105114 ], + [ 7.6534425, 46.410629 ], + [ 7.6535906, 46.4106712 ], + [ 7.6538281, 46.410705899999996 ], + [ 7.6541540999999995, 46.4107274 ], + [ 7.6540367, 46.4108425 ], + [ 7.6539202, 46.4109802 ], + [ 7.6539012, 46.4111159 ], + [ 7.6539760999999995, 46.4111538 ], + [ 7.6541242, 46.4111904 ], + [ 7.6543355, 46.4111804 ], + [ 7.6545134, 46.4111431 ], + [ 7.6547067, 46.4110997 ], + [ 7.6549704, 46.4109872 ], + [ 7.6554255, 46.4109612 ], + [ 7.6554508, 46.4111918 ], + [ 7.6555437, 46.4112633 ], + [ 7.6556188, 46.4113237 ], + [ 7.6556865, 46.4113845 ], + [ 7.6558363, 46.4114547 ], + [ 7.6559528, 46.4115256 ], + [ 7.6561596, 46.4116061 ], + [ 7.6563574, 46.4116696 ], + [ 7.6565705, 46.4117105 ], + [ 7.6567845, 46.4117569 ], + [ 7.6568441, 46.4118347 ], + [ 7.6569363, 46.4119004 ], + [ 7.6570211, 46.4119663 ], + [ 7.6570336999999995, 46.4120845 ], + [ 7.6571385, 46.4122685 ], + [ 7.6572486, 46.4123677 ], + [ 7.6573805, 46.4124045 ], + [ 7.6575683, 46.412429 ], + [ 7.6577318, 46.412437 ], + [ 7.6578401, 46.4124968 ], + [ 7.6579882, 46.4125388 ], + [ 7.6581273, 46.4125699 ], + [ 7.6582258, 46.4125849 ], + [ 7.6583241, 46.4125941 ], + [ 7.6583928, 46.4126829 ], + [ 7.6585102, 46.4127707 ], + [ 7.6586267, 46.4128305 ], + [ 7.6587911, 46.4128778 ], + [ 7.6589390999999996, 46.4129031 ], + [ 7.6590692, 46.4129117 ], + [ 7.6592714, 46.4128682 ], + [ 7.6593618, 46.4129002 ], + [ 7.6595253, 46.4129194 ], + [ 7.6596426, 46.4130015 ], + [ 7.6597843999999995, 46.413089 ], + [ 7.6599678, 46.4131923 ], + [ 7.6601899, 46.4132498 ], + [ 7.6603949, 46.4132909 ], + [ 7.660422, 46.4133466 ], + [ 7.6605384999999995, 46.4134177 ], + [ 7.6607028, 46.4134537 ], + [ 7.6609151, 46.413472 ], + [ 7.6610785, 46.4134688 ], + [ 7.6612482, 46.4134427 ], + [ 7.6614018, 46.4134227 ], + [ 7.6616122, 46.4133903 ], + [ 7.6617107, 46.4134165 ], + [ 7.6618425, 46.413459 ], + [ 7.6619915, 46.4135067 ], + [ 7.6621974, 46.4135645 ], + [ 7.6622941, 46.4135513 ], + [ 7.6624168, 46.4135544 ], + [ 7.6625957, 46.4135678 ], + [ 7.6627998, 46.4135805 ], + [ 7.6629876, 46.413588 ], + [ 7.6632874, 46.4135538 ], + [ 7.6634906, 46.4135384 ], + [ 7.6637164, 46.4134887 ], + [ 7.663925, 46.4134225 ], + [ 7.6641435, 46.4133843 ], + [ 7.6643964, 46.4134016 ], + [ 7.664559, 46.4134097 ], + [ 7.6648344, 46.4133703 ], + [ 7.6650601, 46.413315 ], + [ 7.665294, 46.4132652 ], + [ 7.6656408, 46.4131792 ], + [ 7.6659316, 46.4131225 ], + [ 7.6663028, 46.4130587 ], + [ 7.6666495999999995, 46.4129784 ], + [ 7.6668959999999995, 46.4128268 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "JBG0024", + "country" : "CHE", + "name" : [ + { + "text" : "Eidgenössisches Jagdbanngebiet Leukerbad", + "lang" : "de-CH" + }, + { + "text" : "District franc fédéral Leukerbad", + "lang" : "fr-CH" + }, + { + "text" : "Bandita federale di caccia Leukerbad", + "lang" : "it-CH" + }, + { + "text" : "Federal Game Reserve Leukerbad", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6298669, 47.5190691 ], + [ 7.6300569, 47.5190189 ], + [ 7.6304698, 47.5188673 ], + [ 7.6308301, 47.5188021 ], + [ 7.6311373, 47.5187298 ], + [ 7.6318366, 47.5186065 ], + [ 7.6318575, 47.5185275 ], + [ 7.6318469, 47.5185131 ], + [ 7.631804, 47.5183983 ], + [ 7.6316023, 47.5183052 ], + [ 7.6314004, 47.5181978 ], + [ 7.6311876, 47.5179755 ], + [ 7.6309113, 47.517818 ], + [ 7.6308153, 47.517653 ], + [ 7.6307085, 47.5174305 ], + [ 7.6306057, 47.5173899 ], + [ 7.6306142999999995, 47.5175851 ], + [ 7.630539, 47.5177752 ], + [ 7.6304542, 47.517853099999996 ], + [ 7.6304909, 47.5179714 ], + [ 7.6304316, 47.5181857 ], + [ 7.6302036, 47.5183328 ], + [ 7.630158, 47.5184135 ], + [ 7.6300773, 47.5184622 ], + [ 7.6300579, 47.518531 ], + [ 7.6300821, 47.5185903 ], + [ 7.6300763, 47.5186766 ], + [ 7.6299969, 47.5188655 ], + [ 7.6299406, 47.5189242 ], + [ 7.6298669, 47.5190691 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr094", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Asphof", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Asphof", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Asphof", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Asphof", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.2132139, 46.1587359 ], + [ 7.2132092, 46.1585946 ], + [ 7.2131938, 46.1584537 ], + [ 7.2131679, 46.1583136 ], + [ 7.2131314, 46.1581746 ], + [ 7.2130845, 46.1580372 ], + [ 7.2130273, 46.1579016 ], + [ 7.21296, 46.1577683 ], + [ 7.2128828, 46.1576376 ], + [ 7.2127958, 46.1575099 ], + [ 7.2126993, 46.1573855 ], + [ 7.2125935, 46.1572648 ], + [ 7.2124789, 46.1571482 ], + [ 7.2123556, 46.1570358 ], + [ 7.212224, 46.1569281 ], + [ 7.2120845, 46.1568254 ], + [ 7.2119374, 46.1567278 ], + [ 7.2117832, 46.1566357 ], + [ 7.2116222, 46.1565494 ], + [ 7.211455, 46.156469 ], + [ 7.211282, 46.1563949 ], + [ 7.2111036, 46.1563271 ], + [ 7.2109203, 46.1562659 ], + [ 7.2107327, 46.1562114 ], + [ 7.2105413, 46.1561639 ], + [ 7.2103465, 46.1561234 ], + [ 7.210149, 46.15609 ], + [ 7.2099492, 46.1560638 ], + [ 7.2097477, 46.156045 ], + [ 7.2095451, 46.1560335 ], + [ 7.2093418, 46.1560294 ], + [ 7.2091386, 46.1560326 ], + [ 7.2089359, 46.1560433 ], + [ 7.2087342, 46.1560613 ], + [ 7.2085342, 46.1560867 ], + [ 7.2083364, 46.1561193 ], + [ 7.2081413, 46.156159 ], + [ 7.2079494, 46.1562058 ], + [ 7.2077614, 46.1562594 ], + [ 7.2075776, 46.1563199 ], + [ 7.2073986, 46.1563869 ], + [ 7.207225, 46.1564604 ], + [ 7.2070571, 46.1565401 ], + [ 7.2068954, 46.1566258 ], + [ 7.2067404, 46.1567172 ], + [ 7.2065925, 46.1568141 ], + [ 7.2064522, 46.1569163 ], + [ 7.2063197, 46.1570235 ], + [ 7.2061954, 46.1571353 ], + [ 7.2060798, 46.1572515 ], + [ 7.205973, 46.1573718 ], + [ 7.2058755, 46.1574957 ], + [ 7.2057874, 46.1576231 ], + [ 7.205709, 46.1577535 ], + [ 7.2056406, 46.1578865 ], + [ 7.2055823, 46.1580218 ], + [ 7.2055342, 46.1581591 ], + [ 7.2054966, 46.158298 ], + [ 7.2054694, 46.158438 ], + [ 7.2054529, 46.1585788 ], + [ 7.2054469, 46.15872 ], + [ 7.2054516, 46.1588613 ], + [ 7.205467, 46.1590022 ], + [ 7.2054929, 46.1591423 ], + [ 7.2055294, 46.1592813 ], + [ 7.2055763, 46.1594188 ], + [ 7.2056334, 46.1595544 ], + [ 7.2057007, 46.1596877 ], + [ 7.205778, 46.1598184 ], + [ 7.205865, 46.1599461 ], + [ 7.2059614, 46.1600704 ], + [ 7.2060672, 46.1601911 ], + [ 7.2061818, 46.1603078 ], + [ 7.2063051, 46.1604201 ], + [ 7.2064367, 46.1605278 ], + [ 7.2065762, 46.1606306 ], + [ 7.2067233, 46.1607282 ], + [ 7.2068775, 46.1608203 ], + [ 7.2070384, 46.1609066 ], + [ 7.2072057, 46.160987 ], + [ 7.2073787, 46.1610612 ], + [ 7.2075571, 46.1611289 ], + [ 7.2077404, 46.1611901 ], + [ 7.207928, 46.1612446 ], + [ 7.2081195, 46.1612921 ], + [ 7.2083142, 46.1613327 ], + [ 7.2085118, 46.1613661 ], + [ 7.2087116, 46.1613922 ], + [ 7.2089131, 46.1614111 ], + [ 7.2091158, 46.1614226 ], + [ 7.209319, 46.1614267 ], + [ 7.2095223, 46.1614234 ], + [ 7.2097251, 46.1614127 ], + [ 7.2099267, 46.1613947 ], + [ 7.2101268, 46.1613694 ], + [ 7.2103246, 46.1613368 ], + [ 7.2105197, 46.161297 ], + [ 7.2107116, 46.1612503 ], + [ 7.2108997, 46.1611966 ], + [ 7.2110834, 46.1611361 ], + [ 7.2112624, 46.1610691 ], + [ 7.2114361, 46.1609956 ], + [ 7.211604, 46.1609159 ], + [ 7.2117656, 46.1608302 ], + [ 7.2119206, 46.1607388 ], + [ 7.2120685, 46.1606418 ], + [ 7.2122089, 46.1605396 ], + [ 7.2123414, 46.1604325 ], + [ 7.2124656, 46.1603206 ], + [ 7.2125813, 46.1602044 ], + [ 7.212688, 46.1600842 ], + [ 7.2127856, 46.1599602 ], + [ 7.2128736, 46.1598329 ], + [ 7.212952, 46.1597025 ], + [ 7.2130203999999996, 46.1595694 ], + [ 7.2130787, 46.1594341 ], + [ 7.2131267, 46.1592968 ], + [ 7.2131644, 46.1591579 ], + [ 7.2131915, 46.1590179 ], + [ 7.213208, 46.1588771 ], + [ 7.2132139, 46.1587359 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0094", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Riddes", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Riddes", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Riddes", + "lang" : "it-CH" + }, + { + "text" : "Substation Riddes", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.49149, 47.4079927 ], + [ 7.4916053, 47.4081975 ], + [ 7.4917850999999995, 47.4084486 ], + [ 7.4919694, 47.4086457 ], + [ 7.4922549, 47.4089046 ], + [ 7.492453, 47.409076 ], + [ 7.4926314, 47.4092113 ], + [ 7.492735, 47.4092802 ], + [ 7.4926639999999995, 47.4088149 ], + [ 7.4926679, 47.4085592 ], + [ 7.492676, 47.4085435 ], + [ 7.4926462, 47.4083645 ], + [ 7.4926256, 47.4082777 ], + [ 7.4925715, 47.4081791 ], + [ 7.4923479, 47.4080078 ], + [ 7.4916998, 47.4076791 ], + [ 7.4912304, 47.4074913 ], + [ 7.49149, 47.4079927 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns195", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Birshollen", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Birshollen", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Birshollen", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Birshollen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.846078, 47.405976 ], + [ 7.8460774, 47.4059764 ], + [ 7.8460406, 47.405994 ], + [ 7.8460149999999995, 47.4060129 ], + [ 7.8456621, 47.4062737 ], + [ 7.8454491, 47.4065185 ], + [ 7.8453783, 47.4066933 ], + [ 7.845412, 47.4067122 ], + [ 7.8453424, 47.4070158 ], + [ 7.8453423, 47.4070184 ], + [ 7.8453379, 47.407124 ], + [ 7.8454281, 47.4071465 ], + [ 7.8454766, 47.4071731 ], + [ 7.8454955, 47.4071823 ], + [ 7.845495, 47.4072048 ], + [ 7.8455288, 47.4072109 ], + [ 7.8455515, 47.407218 ], + [ 7.8455461, 47.4072297 ], + [ 7.845536, 47.4072405 ], + [ 7.8455416, 47.4072435 ], + [ 7.845537, 47.4072595 ], + [ 7.8455232, 47.407273 ], + [ 7.8455196, 47.407284 ], + [ 7.8455132, 47.4072975 ], + [ 7.8454966, 47.4073098 ], + [ 7.845504, 47.4073153 ], + [ 7.8454985, 47.4073245 ], + [ 7.8455005, 47.4073386 ], + [ 7.8454857, 47.4073496 ], + [ 7.8454831, 47.4073692 ], + [ 7.8454776, 47.4073797 ], + [ 7.8454692999999995, 47.4073932 ], + [ 7.8454667, 47.4074079 ], + [ 7.8454556, 47.4074177 ], + [ 7.8454557, 47.407425 ], + [ 7.845452, 47.4074367 ], + [ 7.8454447, 47.4074502 ], + [ 7.8454364, 47.40746 ], + [ 7.8454328, 47.4074717 ], + [ 7.8454209, 47.4074913 ], + [ 7.84542, 47.4075011 ], + [ 7.8454136, 47.4075103 ], + [ 7.8454155, 47.4075176 ], + [ 7.8454128, 47.407528 ], + [ 7.8454054, 47.4075372 ], + [ 7.8454044, 47.4075452 ], + [ 7.8454064, 47.4075574 ], + [ 7.8454065, 47.4075576 ], + [ 7.8454136, 47.4075644 ], + [ 7.845426, 47.407572 ], + [ 7.845439, 47.4075758 ], + [ 7.8454467, 47.4075805 ], + [ 7.8454513, 47.4075864 ], + [ 7.8454636, 47.4075855 ], + [ 7.845474, 47.4075915 ], + [ 7.8454908, 47.4075914 ], + [ 7.8454992, 47.4075931 ], + [ 7.8455051000000005, 47.4076029 ], + [ 7.8455071, 47.4076033 ], + [ 7.8455123, 47.4076131 ], + [ 7.8455087, 47.4076455 ], + [ 7.8455107, 47.4076565 ], + [ 7.8455036, 47.4076642 ], + [ 7.8455069, 47.4076689 ], + [ 7.8455051000000005, 47.4076902 ], + [ 7.8454994, 47.4077022 ], + [ 7.8455039, 47.4077043 ], + [ 7.8455009, 47.4077252 ], + [ 7.8454984, 47.4077482 ], + [ 7.8454927, 47.4077606 ], + [ 7.8454781, 47.4077656 ], + [ 7.8454708, 47.4077681 ], + [ 7.8454429999999995, 47.4077679 ], + [ 7.8454068, 47.407774 ], + [ 7.8453855, 47.4077881 ], + [ 7.8453791, 47.4078187 ], + [ 7.8453843, 47.4078464 ], + [ 7.8453871, 47.4078504 ], + [ 7.8453831, 47.4078798 ], + [ 7.8453794, 47.4078867 ], + [ 7.8453833, 47.407906 ], + [ 7.8453777, 47.4079147 ], + [ 7.8453827, 47.4079221 ], + [ 7.845373, 47.4079374 ], + [ 7.8453738, 47.4079495 ], + [ 7.8453683, 47.4079648 ], + [ 7.8453678, 47.4080013 ], + [ 7.8453568, 47.4080319 ], + [ 7.8453591, 47.4080555 ], + [ 7.8453599, 47.4080685 ], + [ 7.8453528, 47.4081123 ], + [ 7.8457650999999995, 47.4080683 ], + [ 7.8457676, 47.4080681 ], + [ 7.8458342, 47.4077839 ], + [ 7.8458354, 47.4077786 ], + [ 7.8458409, 47.4077667 ], + [ 7.8458632999999995, 47.4077175 ], + [ 7.8459017, 47.4076333 ], + [ 7.8459155, 47.4076031 ], + [ 7.845954, 47.4075187 ], + [ 7.8460546, 47.4072983 ], + [ 7.8462439, 47.4073394 ], + [ 7.8464228, 47.4073782 ], + [ 7.8464943, 47.4073937 ], + [ 7.8468195, 47.4073793 ], + [ 7.8468634999999995, 47.4073 ], + [ 7.8467641, 47.4072856 ], + [ 7.8467696, 47.4072652 ], + [ 7.8467812, 47.4072414 ], + [ 7.8469616, 47.4068687 ], + [ 7.8469638, 47.4068511 ], + [ 7.8469786, 47.4067322 ], + [ 7.8469945, 47.4066049 ], + [ 7.847054, 47.4064374 ], + [ 7.8472147, 47.4060985 ], + [ 7.8472147, 47.4060983 ], + [ 7.8472133, 47.4060982 ], + [ 7.8469524, 47.406071 ], + [ 7.846078, 47.405976 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr086", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Papur", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Papur", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Papur", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Papur", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7855018, 47.5013107 ], + [ 7.7854814999999995, 47.5013648 ], + [ 7.7854765, 47.5013779 ], + [ 7.785471, 47.501392 ], + [ 7.7854672, 47.5014011 ], + [ 7.7854642, 47.5014083 ], + [ 7.7854599, 47.5014183 ], + [ 7.7854564, 47.5014273 ], + [ 7.7854551999999995, 47.50143 ], + [ 7.7854521, 47.5014372 ], + [ 7.7854445, 47.5014564 ], + [ 7.7854425, 47.5014618 ], + [ 7.7854414, 47.5014645 ], + [ 7.7854402, 47.5014673 ], + [ 7.7854385, 47.5014713 ], + [ 7.7854364, 47.5014761 ], + [ 7.7854323999999995, 47.5014847 ], + [ 7.7854259, 47.5014981 ], + [ 7.7854225, 47.5015048 ], + [ 7.785419, 47.5015115 ], + [ 7.7854126, 47.5015228 ], + [ 7.785406, 47.5015341 ], + [ 7.7853991, 47.5015452 ], + [ 7.7853956, 47.5015506 ], + [ 7.785386, 47.5015656 ], + [ 7.7853824, 47.5015709 ], + [ 7.7853782, 47.5015774 ], + [ 7.7853726, 47.5015857 ], + [ 7.7853707, 47.5015884 ], + [ 7.7853659, 47.5015947 ], + [ 7.7853638, 47.5015973 ], + [ 7.7853601, 47.5016017 ], + [ 7.7853557, 47.5016068 ], + [ 7.7853498, 47.5016138 ], + [ 7.7853397, 47.5016263 ], + [ 7.7853375, 47.5016289 ], + [ 7.7853337, 47.5016333 ], + [ 7.785323, 47.5016452 ], + [ 7.7853198, 47.5016488 ], + [ 7.7853174, 47.5016513 ], + [ 7.7853125, 47.5016563 ], + [ 7.7853101, 47.5016588 ], + [ 7.7853068, 47.5016624 ], + [ 7.7853044, 47.5016649 ], + [ 7.7852993999999995, 47.5016699 ], + [ 7.7852969, 47.5016724 ], + [ 7.7852935, 47.5016759 ], + [ 7.785291, 47.5016784 ], + [ 7.7852743, 47.5016941 ], + [ 7.7852543, 47.5017121 ], + [ 7.7852515, 47.5017145 ], + [ 7.7852401, 47.501724 ], + [ 7.7852277999999995, 47.5017347 ], + [ 7.7852249, 47.501737 ], + [ 7.7852219, 47.5017394 ], + [ 7.7852185, 47.5017421 ], + [ 7.785208, 47.50175 ], + [ 7.7852011999999995, 47.5017554 ], + [ 7.7851979, 47.5017581 ], + [ 7.7851882, 47.5017662 ], + [ 7.7851849, 47.501769 ], + [ 7.7851814, 47.5017717 ], + [ 7.7851778, 47.5017743 ], + [ 7.7851742, 47.501777 ], + [ 7.7851668, 47.5017822 ], + [ 7.7851593, 47.5017875 ], + [ 7.7851441, 47.5017979 ], + [ 7.7850946, 47.5018317 ], + [ 7.7850831, 47.5018394 ], + [ 7.7850753, 47.5018444 ], + [ 7.7850714, 47.5018468 ], + [ 7.7850675, 47.5018492 ], + [ 7.7850635, 47.5018515 ], + [ 7.7850515, 47.5018581 ], + [ 7.7850477, 47.5018603 ], + [ 7.7850401, 47.5018649 ], + [ 7.7850287, 47.5018719 ], + [ 7.7850249, 47.5018742 ], + [ 7.7850211, 47.5018764 ], + [ 7.7850172, 47.5018786 ], + [ 7.7850017, 47.501886999999996 ], + [ 7.7849877, 47.5018949 ], + [ 7.7849817, 47.5018981 ], + [ 7.7849614, 47.5019086 ], + [ 7.7849578, 47.5019104 ], + [ 7.7849516, 47.5019134 ], + [ 7.7849417, 47.501918 ], + [ 7.7849183, 47.5019288 ], + [ 7.7848786, 47.5019469 ], + [ 7.7848686, 47.5019514 ], + [ 7.7848623, 47.5019541 ], + [ 7.7848586, 47.5019558 ], + [ 7.7848521999999996, 47.5019584 ], + [ 7.7848485, 47.50196 ], + [ 7.7848431, 47.5019621 ], + [ 7.7848291, 47.5019677 ], + [ 7.7848021, 47.5019781 ], + [ 7.7847836, 47.5019849 ], + [ 7.7847657, 47.5019917 ], + [ 7.7847526, 47.5019964 ], + [ 7.7847393, 47.5020009 ], + [ 7.784726, 47.5020053 ], + [ 7.7847042, 47.5020121 ], + [ 7.7846963, 47.5020146 ], + [ 7.7846829, 47.5020189 ], + [ 7.7846734, 47.5020217 ], + [ 7.7846665999999995, 47.5020237 ], + [ 7.7846501, 47.5020284 ], + [ 7.7846445, 47.50203 ], + [ 7.7846281, 47.5020346 ], + [ 7.7846202, 47.5020369 ], + [ 7.7846105, 47.5020395 ], + [ 7.7845978, 47.5020426 ], + [ 7.7845534, 47.502053 ], + [ 7.7845444, 47.5020552 ], + [ 7.7845272, 47.5020594 ], + [ 7.7845075, 47.5020639 ], + [ 7.7845016, 47.5020651 ], + [ 7.7844755, 47.5020706 ], + [ 7.7844611, 47.5020735 ], + [ 7.7844492, 47.5020757 ], + [ 7.7844245999999995, 47.5020804 ], + [ 7.7844126, 47.5020826 ], + [ 7.784388, 47.5020872 ], + [ 7.7843761, 47.5020894 ], + [ 7.7843659, 47.5020914 ], + [ 7.7843471, 47.5020951 ], + [ 7.7843427, 47.502096 ], + [ 7.7843326, 47.5020982 ], + [ 7.7843226, 47.5021004 ], + [ 7.7843086, 47.5021036 ], + [ 7.7843028, 47.502105 ], + [ 7.7842944, 47.5021071 ], + [ 7.7842902, 47.5021082 ], + [ 7.7842862, 47.5021093 ], + [ 7.7842796, 47.5021112 ], + [ 7.7842731, 47.5021133 ], + [ 7.7842606, 47.5021173 ], + [ 7.7842489, 47.5021212 ], + [ 7.784238, 47.502125 ], + [ 7.7841752, 47.5021466 ], + [ 7.7841819999999995, 47.5021729 ], + [ 7.7841898, 47.5022033 ], + [ 7.784193, 47.5022155 ], + [ 7.7841942, 47.5022198 ], + [ 7.7841956, 47.5022244 ], + [ 7.7841975, 47.5022305 ], + [ 7.784199, 47.5022351 ], + [ 7.7842011, 47.5022407 ], + [ 7.7842022, 47.5022436 ], + [ 7.7842034, 47.5022464 ], + [ 7.7842052, 47.5022503 ], + [ 7.7842065, 47.5022531 ], + [ 7.7842085, 47.502257 ], + [ 7.7842099000000005, 47.5022598 ], + [ 7.7842125, 47.5022645 ], + [ 7.7842148, 47.5022684 ], + [ 7.7842164, 47.5022711 ], + [ 7.7842189, 47.502275 ], + [ 7.7842225, 47.5022804 ], + [ 7.7842252, 47.5022842 ], + [ 7.7842287, 47.5022888 ], + [ 7.7842308, 47.5022914 ], + [ 7.7842339, 47.5022951 ], + [ 7.784237, 47.5022985 ], + [ 7.7842402, 47.5023019 ], + [ 7.7842436, 47.5023052 ], + [ 7.784248, 47.5023093 ], + [ 7.7842506, 47.5023116 ], + [ 7.7842525, 47.5023132 ], + [ 7.7842568, 47.5023168 ], + [ 7.7842613, 47.5023203 ], + [ 7.7842657, 47.5023236 ], + [ 7.7842701, 47.5023267 ], + [ 7.7842743, 47.5023296 ], + [ 7.7842787, 47.5023324 ], + [ 7.7842829, 47.502335 ], + [ 7.7842869, 47.5023374 ], + [ 7.7842909, 47.5023396 ], + [ 7.7842974, 47.5023431 ], + [ 7.7843037, 47.5023464 ], + [ 7.7843143999999995, 47.502352 ], + [ 7.784318, 47.5023538 ], + [ 7.7843216, 47.5023555 ], + [ 7.7843253, 47.5023572 ], + [ 7.7843279, 47.5023583 ], + [ 7.7843342, 47.5023609 ], + [ 7.7843406, 47.5023634 ], + [ 7.7843444, 47.5023649 ], + [ 7.7843482, 47.5023663 ], + [ 7.7843575, 47.5023694 ], + [ 7.7843614, 47.5023707 ], + [ 7.7843698, 47.5023732 ], + [ 7.7843777, 47.5023756 ], + [ 7.7843911, 47.5023797 ], + [ 7.784394, 47.5023806 ], + [ 7.7844008, 47.5023825 ], + [ 7.7844049, 47.5023835 ], + [ 7.7844088, 47.5023844 ], + [ 7.7844209, 47.5023868 ], + [ 7.7844311, 47.5023886 ], + [ 7.7844351, 47.5023892 ], + [ 7.7844476, 47.5023909 ], + [ 7.7844523, 47.5023914 ], + [ 7.7844616, 47.5023924 ], + [ 7.7844662, 47.502393 ], + [ 7.7844736999999995, 47.5023939 ], + [ 7.7844811, 47.502394699999996 ], + [ 7.7844857, 47.5023952 ], + [ 7.7844904, 47.5023955 ], + [ 7.7844951, 47.5023957 ], + [ 7.7844998, 47.5023959 ], + [ 7.7845187, 47.5023965 ], + [ 7.7845234, 47.5023967 ], + [ 7.784528, 47.502397 ], + [ 7.7845327, 47.5023973 ], + [ 7.7845419, 47.502398 ], + [ 7.7845606, 47.5023993 ], + [ 7.7845638, 47.5023994 ], + [ 7.7845685, 47.5023996 ], + [ 7.7845733, 47.5023997 ], + [ 7.7845781, 47.5023996 ], + [ 7.7845829, 47.5023995 ], + [ 7.7845877, 47.5023992 ], + [ 7.7845924, 47.5023989 ], + [ 7.7846073, 47.5023973 ], + [ 7.7846122, 47.5023969 ], + [ 7.7846171, 47.5023965 ], + [ 7.7846221, 47.5023963 ], + [ 7.7846271, 47.502396 ], + [ 7.7846421, 47.5023954 ], + [ 7.7846471, 47.5023952 ], + [ 7.7846521, 47.5023949 ], + [ 7.7846571, 47.5023946 ], + [ 7.7846619, 47.5023941 ], + [ 7.7846769, 47.5023924 ], + [ 7.7846816, 47.5023919 ], + [ 7.7846863, 47.5023914 ], + [ 7.7847005, 47.5023903 ], + [ 7.7847052, 47.5023898 ], + [ 7.7847265, 47.5023875 ], + [ 7.7847314999999995, 47.502387 ], + [ 7.7847467, 47.5023858 ], + [ 7.7847562, 47.5023849 ], + [ 7.7847612, 47.5023845 ], + [ 7.7847764999999995, 47.5023834 ], + [ 7.7847861, 47.5023826 ], + [ 7.7847909, 47.5023823 ], + [ 7.7847957, 47.502382 ], + [ 7.7848005, 47.5023818 ], + [ 7.784815, 47.5023811 ], + [ 7.7848199000000005, 47.5023808 ], + [ 7.7848292, 47.5023802 ], + [ 7.7848342, 47.5023799 ], + [ 7.7848393, 47.5023797 ], + [ 7.7848444, 47.5023795 ], + [ 7.7848495, 47.5023794 ], + [ 7.7848547, 47.5023793 ], + [ 7.784865, 47.5023791 ], + [ 7.7848806, 47.502379 ], + [ 7.7849013, 47.5023789 ], + [ 7.7849117, 47.502379 ], + [ 7.784922, 47.502379 ], + [ 7.7849322999999995, 47.5023792 ], + [ 7.7849374000000005, 47.5023794 ], + [ 7.7849425, 47.5023796 ], + [ 7.7849474999999995, 47.50238 ], + [ 7.7849661, 47.5023815 ], + [ 7.7849708, 47.5023819 ], + [ 7.7849799, 47.5023828 ], + [ 7.7849893, 47.5023837 ], + [ 7.784994, 47.5023842 ], + [ 7.7850152, 47.5023866 ], + [ 7.7850202, 47.5023871 ], + [ 7.7850302, 47.5023881 ], + [ 7.7850352, 47.5023886 ], + [ 7.7850401, 47.5023893 ], + [ 7.7850486, 47.5023906 ], + [ 7.7850532, 47.5023913 ], + [ 7.7850623, 47.5023926 ], + [ 7.7850669, 47.5023933 ], + [ 7.7850741, 47.5023945 ], + [ 7.7850771, 47.5023951 ], + [ 7.7851016, 47.5023998 ], + [ 7.7851135, 47.5024019 ], + [ 7.7851236, 47.5024039 ], + [ 7.7851307, 47.5024054 ], + [ 7.7851336, 47.5024061 ], + [ 7.7851436, 47.5024083 ], + [ 7.7851534000000004, 47.5024107 ], + [ 7.7851615, 47.5024129 ], + [ 7.7851693, 47.5024147 ], + [ 7.7851731, 47.5024157 ], + [ 7.7851771, 47.5024168 ], + [ 7.7851868, 47.5024195 ], + [ 7.7851948, 47.5024218 ], + [ 7.7852033, 47.5024242 ], + [ 7.7852112, 47.5024265 ], + [ 7.7852196, 47.5024288 ], + [ 7.7852331, 47.5024329 ], + [ 7.7852466, 47.5024373 ], + [ 7.7852599, 47.5024419 ], + [ 7.785273, 47.5024466 ], + [ 7.7852768, 47.502448 ], + [ 7.7852833, 47.5024506 ], + [ 7.7853072, 47.5024606 ], + [ 7.785311, 47.5024622 ], + [ 7.7853163, 47.5024643 ], + [ 7.7853200000000005, 47.5024659 ], + [ 7.7853262999999995, 47.5024687 ], + [ 7.78533, 47.5024704 ], + [ 7.7853335999999995, 47.5024722 ], + [ 7.7853469, 47.5024789 ], + [ 7.7853531, 47.502482 ], + [ 7.7853566, 47.5024839 ], + [ 7.7853601, 47.502485899999996 ], + [ 7.7853706, 47.5024918 ], + [ 7.7853801, 47.5024971 ], + [ 7.7853997, 47.5025087 ], + [ 7.7854031, 47.5025107 ], + [ 7.7854065, 47.5025129 ], + [ 7.7854098, 47.502515 ], + [ 7.785413, 47.5025172 ], + [ 7.7854161, 47.5025195 ], + [ 7.7854275, 47.5025279 ], + [ 7.7854433, 47.5025394 ], + [ 7.7854464, 47.5025417 ], + [ 7.7854495, 47.502544 ], + [ 7.7854524, 47.5025464 ], + [ 7.7854631, 47.5025551 ], + [ 7.7854659999999996, 47.5025575 ], + [ 7.7854763, 47.5025664 ], + [ 7.785479, 47.5025688 ], + [ 7.785486, 47.5025754 ], + [ 7.7855016, 47.5025905 ], + [ 7.7855093, 47.5025979 ], + [ 7.7855118, 47.5026004 ], + [ 7.7855237, 47.5026133 ], + [ 7.7855261, 47.5026158 ], + [ 7.7855299, 47.5026202 ], + [ 7.7855321, 47.5026227 ], + [ 7.7855335, 47.5026246 ], + [ 7.785539, 47.5026317 ], + [ 7.7855435, 47.5026381 ], + [ 7.7855453, 47.5026407 ], + [ 7.7855489, 47.5026465 ], + [ 7.7855523, 47.5026519 ], + [ 7.7855556, 47.5026577 ], + [ 7.7855589, 47.5026631 ], + [ 7.7855653, 47.5026744 ], + [ 7.7855666, 47.5026771 ], + [ 7.7855691, 47.5026824 ], + [ 7.7855719, 47.5026879 ], + [ 7.7855731, 47.5026906 ], + [ 7.7855765, 47.5026988 ], + [ 7.7855792, 47.5027057 ], + [ 7.7855802, 47.5027085 ], + [ 7.785583, 47.5027168 ], + [ 7.7855857, 47.5027251 ], + [ 7.7855875, 47.50273 ], + [ 7.7855891, 47.5027349 ], + [ 7.78559, 47.502738 ], + [ 7.7855924, 47.5027475 ], + [ 7.7855939, 47.5027532 ], + [ 7.7855959, 47.5027619 ], + [ 7.7855965, 47.502765 ], + [ 7.7855969, 47.5027681 ], + [ 7.7855973, 47.5027713 ], + [ 7.7855976, 47.5027746 ], + [ 7.7855985, 47.5027884 ], + [ 7.7855989999999995, 47.5027956 ], + [ 7.7856003, 47.5028061 ], + [ 7.7856006, 47.50281 ], + [ 7.7856009, 47.502814 ], + [ 7.7856012, 47.5028219 ], + [ 7.7856014, 47.5028299 ], + [ 7.7856015, 47.5028379 ], + [ 7.785602, 47.5029099 ], + [ 7.785602, 47.5029219 ], + [ 7.7856018, 47.5029298 ], + [ 7.7856017, 47.5029338 ], + [ 7.7856015, 47.5029377 ], + [ 7.7856012, 47.5029416 ], + [ 7.7856008, 47.5029455 ], + [ 7.7856000000000005, 47.5029524 ], + [ 7.7855986, 47.5029677 ], + [ 7.7855982, 47.5029715 ], + [ 7.7855977, 47.5029753 ], + [ 7.785597, 47.5029791 ], + [ 7.7855947, 47.5029893 ], + [ 7.7855941, 47.5029929 ], + [ 7.7855935, 47.5029966 ], + [ 7.7855919, 47.5030077 ], + [ 7.7855913, 47.5030114 ], + [ 7.7855906, 47.503015 ], + [ 7.7855893, 47.5030201 ], + [ 7.785588, 47.5030251 ], + [ 7.7855853, 47.5030362 ], + [ 7.7855843, 47.5030398 ], + [ 7.7855834, 47.5030428 ], + [ 7.785582, 47.5030469 ], + [ 7.7855783, 47.503058 ], + [ 7.7855715, 47.5030759 ], + [ 7.7855687, 47.5030828 ], + [ 7.7855615, 47.5030993 ], + [ 7.7855589, 47.5031053 ], + [ 7.7855522, 47.503121 ], + [ 7.7855492, 47.5031279 ], + [ 7.7855469, 47.5031327 ], + [ 7.7855428, 47.5031414 ], + [ 7.7855394, 47.5031481 ], + [ 7.7855359, 47.5031548 ], + [ 7.7855307, 47.5031642 ], + [ 7.785528, 47.5031689 ], + [ 7.7855229, 47.5031774 ], + [ 7.78552, 47.5031821 ], + [ 7.7855171, 47.5031866 ], + [ 7.7855158, 47.5031885 ], + [ 7.7855139, 47.5031912 ], + [ 7.7855106, 47.5031957 ], + [ 7.7855092, 47.5031976 ], + [ 7.7855071, 47.5032002 ], + [ 7.7855035, 47.5032046 ], + [ 7.7854976, 47.5032115 ], + [ 7.785496, 47.5032133 ], + [ 7.7854938, 47.5032158 ], + [ 7.7854868, 47.5032231 ], + [ 7.7854836, 47.5032266 ], + [ 7.7854811, 47.5032292 ], + [ 7.7854766, 47.5032336 ], + [ 7.7854738999999995, 47.5032361 ], + [ 7.7854711, 47.5032385 ], + [ 7.7854635, 47.5032451 ], + [ 7.7854603000000004, 47.5032477 ], + [ 7.785457, 47.5032502 ], + [ 7.7854502, 47.5032552 ], + [ 7.7854398, 47.5032627 ], + [ 7.7854329, 47.5032677 ], + [ 7.7854295, 47.5032702 ], + [ 7.7854206999999995, 47.503277 ], + [ 7.7854173, 47.5032796 ], + [ 7.7853999, 47.5032924 ], + [ 7.7853965, 47.503295 ], + [ 7.7853877, 47.5033018 ], + [ 7.7853842, 47.5033044 ], + [ 7.7853807, 47.503307 ], + [ 7.7853735, 47.5033121 ], + [ 7.7853626, 47.5033197 ], + [ 7.7853515, 47.5033272 ], + [ 7.7852777, 47.5033777 ], + [ 7.785161, 47.5034575 ], + [ 7.7851429, 47.5034698 ], + [ 7.7851356, 47.5034746 ], + [ 7.7851282, 47.5034794 ], + [ 7.7851245, 47.5034817 ], + [ 7.7851146, 47.5034877 ], + [ 7.7851109, 47.50349 ], + [ 7.7851035, 47.5034947 ], + [ 7.7850889, 47.5035042 ], + [ 7.7850852, 47.5035066 ], + [ 7.7850815, 47.5035089 ], + [ 7.7850716, 47.5035148 ], + [ 7.7850642, 47.5035195 ], + [ 7.7850494999999995, 47.5035288 ], + [ 7.7850458, 47.503531100000004 ], + [ 7.7850421, 47.5035334 ], + [ 7.7850383, 47.5035356 ], + [ 7.7850345, 47.5035377 ], + [ 7.7850294, 47.5035403 ], + [ 7.7850255, 47.5035424 ], + [ 7.7850217, 47.5035446 ], + [ 7.7850178, 47.5035469 ], + [ 7.7850064, 47.5035537 ], + [ 7.7850026, 47.503556 ], + [ 7.7849987, 47.5035581 ], + [ 7.7849948, 47.5035602 ], + [ 7.7849897, 47.5035628 ], + [ 7.7849862, 47.5035646 ], + [ 7.7849721, 47.5035723 ], + [ 7.7849686, 47.5035742 ], + [ 7.7849564, 47.5035805 ], + [ 7.7849457, 47.503586 ], + [ 7.7849422, 47.5035878 ], + [ 7.7849299, 47.5035939 ], + [ 7.7849191, 47.5035993 ], + [ 7.7849155, 47.5036011 ], + [ 7.7849103, 47.5036034 ], + [ 7.7849067, 47.5036052 ], + [ 7.7848959, 47.5036106 ], + [ 7.7848836, 47.5036167 ], + [ 7.7848694, 47.503624 ], + [ 7.7848499, 47.5036337 ], + [ 7.7848463, 47.5036355 ], + [ 7.7848427000000004, 47.5036372 ], + [ 7.7848375, 47.5036396 ], + [ 7.7848266, 47.5036447 ], + [ 7.7848229, 47.5036464 ], + [ 7.7848177, 47.5036487 ], + [ 7.7848067, 47.5036537 ], + [ 7.784803, 47.5036553 ], + [ 7.7847977, 47.5036575 ], + [ 7.7847802, 47.5036649 ], + [ 7.78477, 47.5036691 ], + [ 7.7847647, 47.5036712 ], + [ 7.7847468, 47.5036783 ], + [ 7.7847414, 47.5036804 ], + [ 7.7847377, 47.5036819 ], + [ 7.7847238999999995, 47.5036875 ], + [ 7.7847174, 47.5036901 ], + [ 7.7847136, 47.5036916 ], + [ 7.7847006, 47.5036963 ], + [ 7.7846951, 47.5036982 ], + [ 7.7846874, 47.503701 ], + [ 7.7846819, 47.5037029 ], + [ 7.7846688, 47.5037076 ], + [ 7.7846508, 47.5037143 ], + [ 7.7846377, 47.503719 ], + [ 7.7846245, 47.5037236 ], + [ 7.7846112, 47.503728100000004 ], + [ 7.7845979, 47.5037325 ], + [ 7.7845759, 47.5037394 ], + [ 7.7845626, 47.5037437 ], + [ 7.7845549, 47.5037463 ], + [ 7.7845416, 47.5037506 ], + [ 7.7845198, 47.5037574 ], + [ 7.7845119, 47.50376 ], + [ 7.7844985, 47.5037642 ], + [ 7.7844888999999995, 47.5037671 ], + [ 7.7844821, 47.5037691 ], + [ 7.7844656, 47.503773699999996 ], + [ 7.784449, 47.5037783 ], + [ 7.7844324, 47.5037827 ], + [ 7.7844169, 47.5037867 ], + [ 7.78441, 47.5037885 ], + [ 7.7844071, 47.5037893 ], + [ 7.7843991, 47.5037915 ], + [ 7.7843893, 47.503794 ], + [ 7.7843795, 47.5037965 ], + [ 7.7843637999999995, 47.5038003 ], + [ 7.784354, 47.5038027 ], + [ 7.7843373, 47.5038071 ], + [ 7.7843264, 47.5038101 ], + [ 7.7843167, 47.5038127 ], + [ 7.7843098, 47.5038145 ], + [ 7.7843069, 47.5038152 ], + [ 7.7843, 47.5038169 ], + [ 7.7842901, 47.5038193 ], + [ 7.7842645, 47.5038254 ], + [ 7.7842547, 47.5038278 ], + [ 7.7842465, 47.5038299 ], + [ 7.7842426, 47.5038307 ], + [ 7.7842265, 47.5038342 ], + [ 7.784222, 47.5038351 ], + [ 7.784213, 47.5038366 ], + [ 7.7842085, 47.5038374 ], + [ 7.7842001, 47.5038391 ], + [ 7.7841957, 47.5038399 ], + [ 7.7841866, 47.5038414 ], + [ 7.7841821, 47.5038422 ], + [ 7.7841738, 47.5038439 ], + [ 7.784162, 47.5038463 ], + [ 7.7841536, 47.503848 ], + [ 7.7841492, 47.5038488 ], + [ 7.7841401, 47.5038504 ], + [ 7.7841357, 47.5038512 ], + [ 7.7841273, 47.5038529 ], + [ 7.7841233, 47.5038536 ], + [ 7.7841051, 47.5038568 ], + [ 7.7841009, 47.5038576 ], + [ 7.7840963, 47.5038583 ], + [ 7.7840872, 47.5038596 ], + [ 7.7840827, 47.5038604 ], + [ 7.7840742, 47.5038619 ], + [ 7.7840697, 47.5038627 ], + [ 7.7840606, 47.5038641 ], + [ 7.7840561, 47.503864899999996 ], + [ 7.7840477, 47.5038665 ], + [ 7.7840432, 47.5038672 ], + [ 7.784034, 47.5038686 ], + [ 7.7840295, 47.5038694 ], + [ 7.784021, 47.5038708 ], + [ 7.7840162, 47.5038716 ], + [ 7.7840014, 47.5038735 ], + [ 7.7839965, 47.5038742 ], + [ 7.7839879, 47.5038755 ], + [ 7.783983, 47.5038762 ], + [ 7.7839781, 47.5038768 ], + [ 7.7839681, 47.5038779 ], + [ 7.7839632, 47.5038785 ], + [ 7.7839483, 47.5038804 ], + [ 7.7839431, 47.5038809 ], + [ 7.7839378, 47.5038814 ], + [ 7.7839221, 47.5038827 ], + [ 7.7839168999999995, 47.5038833 ], + [ 7.7839019, 47.5038849 ], + [ 7.7838968, 47.5038854 ], + [ 7.7838916, 47.5038857 ], + [ 7.7838863, 47.5038859 ], + [ 7.7838811, 47.5038861 ], + [ 7.7838758, 47.5038862 ], + [ 7.7838652, 47.5038864 ], + [ 7.7838439, 47.5038866 ], + [ 7.7838332999999995, 47.5038867 ], + [ 7.783828, 47.5038869 ], + [ 7.7838228, 47.503887 ], + [ 7.7838176, 47.5038872 ], + [ 7.7838124, 47.5038875 ], + [ 7.7838072, 47.5038879 ], + [ 7.7837858, 47.5038899 ], + [ 7.7837805, 47.5038902 ], + [ 7.7837751, 47.5038905 ], + [ 7.7837697, 47.5038908 ], + [ 7.7837643, 47.5038909 ], + [ 7.7837533, 47.5038911 ], + [ 7.7837203, 47.5038914 ], + [ 7.7837093, 47.5038916 ], + [ 7.7837038, 47.5038917 ], + [ 7.7836984000000005, 47.5038919 ], + [ 7.7836929999999995, 47.5038922 ], + [ 7.7836877, 47.5038926 ], + [ 7.7836785, 47.5038933 ], + [ 7.7836689, 47.503894 ], + [ 7.7836597, 47.5038948 ], + [ 7.7836548, 47.5038952 ], + [ 7.7836498, 47.5038955 ], + [ 7.7836448, 47.5038957 ], + [ 7.7840799, 47.5051893 ], + [ 7.7840899, 47.5051869 ], + [ 7.7840997, 47.5051845 ], + [ 7.7841095, 47.505182 ], + [ 7.7841175, 47.5051797 ], + [ 7.7841273, 47.5051772 ], + [ 7.7841527, 47.5051709 ], + [ 7.7841596, 47.5051691 ], + [ 7.7841625, 47.5051683 ], + [ 7.7841705, 47.505166 ], + [ 7.7841859, 47.5051619 ], + [ 7.7841956, 47.5051592 ], + [ 7.7842035, 47.5051568 ], + [ 7.784216, 47.5051533 ], + [ 7.7842422, 47.5051459 ], + [ 7.784249, 47.5051439 ], + [ 7.7842585, 47.505141 ], + [ 7.7842719, 47.5051367 ], + [ 7.7842797, 47.505134 ], + [ 7.7842852, 47.5051322 ], + [ 7.7842929, 47.5051295 ], + [ 7.7842984, 47.5051277 ], + [ 7.7843062, 47.505125 ], + [ 7.7843117, 47.5051231 ], + [ 7.7843194, 47.5051204 ], + [ 7.7843249, 47.5051186 ], + [ 7.7843326, 47.5051159 ], + [ 7.7843381, 47.505114 ], + [ 7.7843459, 47.5051114 ], + [ 7.7843514, 47.5051095 ], + [ 7.7843591, 47.5051068 ], + [ 7.7843646, 47.5051049 ], + [ 7.7843777, 47.5051002 ], + [ 7.7843957, 47.5050935 ], + [ 7.7844088, 47.5050887 ], + [ 7.7844143, 47.5050868 ], + [ 7.7844274, 47.505082 ], + [ 7.7844312, 47.5050806 ], + [ 7.7844452, 47.5050752 ], + [ 7.7844505999999996, 47.5050731 ], + [ 7.7844647, 47.5050677 ], + [ 7.7844685, 47.5050663 ], + [ 7.7844816, 47.5050615 ], + [ 7.7844871, 47.5050596 ], + [ 7.7845002, 47.5050548 ], + [ 7.784504, 47.5050533 ], + [ 7.7845104, 47.5050507 ], + [ 7.7845179, 47.5050477 ], + [ 7.7845244000000005, 47.5050451 ], + [ 7.7845282000000005, 47.5050437 ], + [ 7.7845412, 47.5050389 ], + [ 7.7845467, 47.505037 ], + [ 7.7845598, 47.5050323 ], + [ 7.7845701, 47.5050284 ], + [ 7.7845728, 47.5050274 ], + [ 7.7845765, 47.5050259 ], + [ 7.784584, 47.5050227 ], + [ 7.7845878, 47.5050212 ], + [ 7.784597, 47.5050177 ], + [ 7.7846009, 47.5050163 ], + [ 7.7846139999999995, 47.5050116 ], + [ 7.7846195, 47.5050098 ], + [ 7.7846273, 47.505007 ], + [ 7.7846326999999995, 47.5050052 ], + [ 7.7846405, 47.5050025 ], + [ 7.784646, 47.5050006 ], + [ 7.7846498, 47.5049992 ], + [ 7.7846589999999996, 47.5049958 ], + [ 7.7846627999999995, 47.5049944 ], + [ 7.7846693, 47.5049918 ], + [ 7.7846768, 47.5049887 ], + [ 7.7846832, 47.5049862 ], + [ 7.784687, 47.5049847 ], + [ 7.7847001, 47.50498 ], + [ 7.784732, 47.5049689 ], + [ 7.7847451, 47.5049641 ], + [ 7.7847489, 47.5049626 ], + [ 7.7847554, 47.5049601 ], + [ 7.7847629, 47.504957 ], + [ 7.7847693, 47.5049545 ], + [ 7.7847731, 47.504953 ], + [ 7.7847862, 47.5049482 ], + [ 7.7847916999999995, 47.5049463 ], + [ 7.7847994, 47.5049436 ], + [ 7.7848048, 47.5049417 ], + [ 7.7848179, 47.5049369 ], + [ 7.7848217, 47.5049354 ], + [ 7.7848282, 47.5049329 ], + [ 7.7848357, 47.5049298 ], + [ 7.7848421, 47.5049273 ], + [ 7.7848459, 47.5049258 ], + [ 7.784859, 47.504921 ], + [ 7.7848645, 47.5049191 ], + [ 7.7848722, 47.5049163 ], + [ 7.7848776, 47.5049144 ], + [ 7.784888, 47.5049105 ], + [ 7.7848906, 47.5049095 ], + [ 7.7848944, 47.504908 ], + [ 7.7849018999999995, 47.5049048 ], + [ 7.7849056, 47.5049033 ], + [ 7.7849186, 47.5048984 ], + [ 7.7849241, 47.5048965 ], + [ 7.7849318, 47.5048937 ], + [ 7.7849372, 47.5048918 ], + [ 7.7849503, 47.504887 ], + [ 7.7849541, 47.5048856 ], + [ 7.7849606, 47.504883 ], + [ 7.7849681, 47.5048799 ], + [ 7.7849745, 47.5048774 ], + [ 7.7849783, 47.5048759 ], + [ 7.7849914, 47.5048712 ], + [ 7.7849969, 47.5048693 ], + [ 7.7850046, 47.5048665 ], + [ 7.7850101, 47.5048647 ], + [ 7.7850233, 47.50486 ], + [ 7.7850363, 47.5048551 ], + [ 7.7850401, 47.5048536 ], + [ 7.7850475, 47.5048504 ], + [ 7.7850513, 47.5048489 ], + [ 7.7850605, 47.5048454 ], + [ 7.7850643, 47.504844 ], + [ 7.7850775, 47.5048394 ], + [ 7.7850829, 47.5048375 ], + [ 7.7850907, 47.5048348 ], + [ 7.7850961, 47.5048329 ], + [ 7.7851092, 47.5048281 ], + [ 7.785113, 47.5048266 ], + [ 7.7851195, 47.5048241 ], + [ 7.785127, 47.504821 ], + [ 7.7851334, 47.5048185 ], + [ 7.7851372, 47.504817 ], + [ 7.7851503, 47.5048122 ], + [ 7.7851558, 47.5048103 ], + [ 7.7851635, 47.5048076 ], + [ 7.785169, 47.5048057 ], + [ 7.7851821, 47.5048009 ], + [ 7.7851859, 47.5047994 ], + [ 7.7851923, 47.5047969 ], + [ 7.7851998, 47.5047938 ], + [ 7.7852062, 47.5047913 ], + [ 7.78521, 47.5047898 ], + [ 7.7852231, 47.504785 ], + [ 7.7852419, 47.5047784 ], + [ 7.7852549, 47.5047737 ], + [ 7.7852587, 47.5047722 ], + [ 7.7852651, 47.5047697 ], + [ 7.7852726, 47.504766599999996 ], + [ 7.7852791, 47.5047641 ], + [ 7.7852829, 47.5047626 ], + [ 7.7852958999999995, 47.5047578 ], + [ 7.7853014, 47.5047559 ], + [ 7.7853145, 47.5047511 ], + [ 7.7853183, 47.5047496 ], + [ 7.7853324, 47.5047442 ], + [ 7.7853378, 47.5047422 ], + [ 7.7853518, 47.5047367 ], + [ 7.7853557, 47.5047353 ], + [ 7.7853688, 47.5047306 ], + [ 7.7853743, 47.5047287 ], + [ 7.785382, 47.504726 ], + [ 7.7853875, 47.5047241 ], + [ 7.7853952, 47.5047214 ], + [ 7.7854007, 47.5047195 ], + [ 7.7854138, 47.5047148 ], + [ 7.7854176, 47.5047133 ], + [ 7.785424, 47.5047107 ], + [ 7.7854315, 47.5047077 ], + [ 7.785438, 47.5047051 ], + [ 7.7854418, 47.5047037 ], + [ 7.7854548999999995, 47.5046989 ], + [ 7.7854603000000004, 47.504697 ], + [ 7.7854681, 47.5046942 ], + [ 7.7854735, 47.5046923 ], + [ 7.7854867, 47.5046876 ], + [ 7.7854905, 47.5046862 ], + [ 7.7855045, 47.5046807 ], + [ 7.7855099, 47.5046787 ], + [ 7.785524, 47.5046733 ], + [ 7.7855278, 47.5046718 ], + [ 7.7855409, 47.5046671 ], + [ 7.7855464, 47.5046652 ], + [ 7.7855595, 47.5046604 ], + [ 7.7855633, 47.504659 ], + [ 7.7855773, 47.5046535 ], + [ 7.7855827, 47.5046515 ], + [ 7.7855968, 47.5046461 ], + [ 7.7856006, 47.5046446 ], + [ 7.7856137, 47.5046399 ], + [ 7.7856192, 47.504638 ], + [ 7.7856323, 47.5046333 ], + [ 7.7856502, 47.5046265 ], + [ 7.7856688, 47.5046197 ], + [ 7.7856866, 47.5046129 ], + [ 7.7857052, 47.5046061 ], + [ 7.7857231, 47.5045992 ], + [ 7.7857416, 47.5045925 ], + [ 7.7857595, 47.5045857 ], + [ 7.7857726, 47.504581 ], + [ 7.7857781, 47.5045791 ], + [ 7.7857859, 47.5045764 ], + [ 7.7857913, 47.5045745 ], + [ 7.7858044, 47.5045698 ], + [ 7.7858082, 47.5045683 ], + [ 7.7858222999999995, 47.5045629 ], + [ 7.7858277000000005, 47.5045609 ], + [ 7.7858418, 47.5045554 ], + [ 7.7858456, 47.504554 ], + [ 7.7858587, 47.5045492 ], + [ 7.7858642, 47.5045473 ], + [ 7.7858719, 47.5045446 ], + [ 7.7858774, 47.5045427 ], + [ 7.7858905, 47.504538 ], + [ 7.7859084, 47.5045313 ], + [ 7.7859216, 47.5045266 ], + [ 7.7859271, 47.5045246 ], + [ 7.7859402, 47.5045199 ], + [ 7.7859581, 47.5045131 ], + [ 7.7859766, 47.5045063 ], + [ 7.7859945, 47.5044995 ], + [ 7.7860077, 47.5044948 ], + [ 7.7860131, 47.5044929 ], + [ 7.7860263, 47.5044882 ], + [ 7.7860442, 47.5044814 ], + [ 7.7860496, 47.5044794 ], + [ 7.7860572999999995, 47.5044766 ], + [ 7.7860627000000004, 47.5044746 ], + [ 7.7860665000000004, 47.5044732 ], + [ 7.7860805, 47.5044677 ], + [ 7.7860859, 47.5044657 ], + [ 7.7860961, 47.5044616 ], + [ 7.7861089, 47.5044563 ], + [ 7.7861127, 47.5044547 ], + [ 7.78612, 47.5044514 ], + [ 7.7861237, 47.5044498 ], + [ 7.786129, 47.5044476 ], + [ 7.7861327, 47.5044461 ], + [ 7.7861427, 47.5044417 ], + [ 7.7861663, 47.5044311 ], + [ 7.7861763, 47.5044267 ], + [ 7.7861864, 47.5044223 ], + [ 7.7861917, 47.5044201 ], + [ 7.7861953, 47.5044185 ], + [ 7.7862063, 47.5044135 ], + [ 7.7862116, 47.5044112 ], + [ 7.7862152, 47.5044095 ], + [ 7.7862225, 47.5044061 ], + [ 7.7862262, 47.5044044 ], + [ 7.7862314, 47.504402 ], + [ 7.786235, 47.5044003 ], + [ 7.7862458, 47.504395 ], + [ 7.7862580999999995, 47.504389 ], + [ 7.7862689, 47.5043836 ], + [ 7.7862725, 47.5043819 ], + [ 7.7862777, 47.5043795 ], + [ 7.7862813, 47.5043777 ], + [ 7.7862921, 47.5043723 ], + [ 7.7863044, 47.5043663 ], + [ 7.7863187, 47.5043589 ], + [ 7.786331, 47.5043529 ], + [ 7.7863407, 47.504348 ], + [ 7.7863442, 47.5043461 ], + [ 7.7863548, 47.5043404 ], + [ 7.7863583, 47.5043385 ], + [ 7.7863619, 47.5043367 ], + [ 7.786367, 47.5043342 ], + [ 7.7863706, 47.5043324 ], + [ 7.7863847, 47.5043249 ], + [ 7.7863883, 47.504323 ], + [ 7.7863934, 47.5043205 ], + [ 7.7863969, 47.5043187 ], + [ 7.7864005, 47.5043168 ], + [ 7.7864039, 47.5043148 ], + [ 7.7864144, 47.5043089 ], + [ 7.7864179, 47.5043069 ], + [ 7.7864214, 47.5043051 ], + [ 7.7864265, 47.5043025 ], + [ 7.7864301, 47.5043007 ], + [ 7.7864336, 47.5042988 ], + [ 7.7864439999999995, 47.5042929 ], + [ 7.7864535, 47.5042876 ], + [ 7.7864699, 47.5042784 ], + [ 7.7864838, 47.5042703 ], + [ 7.7864932, 47.504265 ], + [ 7.7865096, 47.5042557 ], + [ 7.786513, 47.5042537 ], + [ 7.7865267, 47.5042453 ], + [ 7.7865301, 47.5042433 ], + [ 7.7865464, 47.504234 ], + [ 7.7865559, 47.5042287 ], + [ 7.7865696, 47.5042206 ], + [ 7.786579, 47.5042152 ], + [ 7.7865928, 47.504207 ], + [ 7.7866022, 47.5042015 ], + [ 7.7866056, 47.5041995 ], + [ 7.7866192, 47.5041911 ], + [ 7.7866226, 47.504189 ], + [ 7.786632, 47.5041836 ], + [ 7.7866457, 47.5041753 ], + [ 7.786655, 47.5041698 ], + [ 7.7866584, 47.5041678 ], + [ 7.7866652, 47.5041635 ], + [ 7.7866786, 47.5041548 ], + [ 7.7866853, 47.5041505 ], + [ 7.7866887, 47.5041484 ], + [ 7.786698, 47.5041428 ], + [ 7.7867014, 47.5041407 ], + [ 7.7867217, 47.5041278 ], + [ 7.7867251, 47.5041257 ], + [ 7.7867346, 47.50412 ], + [ 7.7867381, 47.5041178 ], + [ 7.7867417, 47.5041155 ], + [ 7.7867488, 47.5041109 ], + [ 7.7867698999999995, 47.5040967 ], + [ 7.7867805, 47.5040897 ], + [ 7.7867877, 47.5040852 ], + [ 7.7867971, 47.5040795 ], + [ 7.7868039, 47.5040753 ], + [ 7.7868239, 47.5040624 ], + [ 7.7868295, 47.5040588 ], + [ 7.7868327, 47.5040567 ], + [ 7.7868358, 47.5040545 ], + [ 7.7868413, 47.5040505 ], + [ 7.7868482, 47.5040456 ], + [ 7.7868552, 47.5040407 ], + [ 7.7868659000000005, 47.5040332 ], + [ 7.7868946999999995, 47.5040135 ], + [ 7.786956, 47.5039716 ], + [ 7.7869668, 47.5039642 ], + [ 7.7869739, 47.5039593 ], + [ 7.786981, 47.5039543 ], + [ 7.7869879, 47.5039493 ], + [ 7.7869913, 47.5039468 ], + [ 7.7869999, 47.5039401 ], + [ 7.7870065, 47.5039353 ], + [ 7.7870167, 47.5039281 ], + [ 7.7870408, 47.5039114 ], + [ 7.7870475, 47.5039065 ], + [ 7.7870508, 47.5039041 ], + [ 7.7870541, 47.5039017 ], + [ 7.7870572, 47.5038992 ], + [ 7.7870603, 47.5038967 ], + [ 7.7870699, 47.5038885 ], + [ 7.7870726999999995, 47.5038861 ], + [ 7.7870756, 47.5038838 ], + [ 7.7870844, 47.5038767 ], + [ 7.7870873, 47.5038743 ], + [ 7.7870902, 47.5038719 ], + [ 7.7870929, 47.5038695 ], + [ 7.7870966, 47.503866 ], + [ 7.7870992999999995, 47.5038636 ], + [ 7.7871105, 47.503854 ], + [ 7.7871132, 47.5038516 ], + [ 7.7871151, 47.5038499 ], + [ 7.7871274, 47.5038384 ], + [ 7.78713, 47.5038359 ], + [ 7.7871326, 47.5038334 ], + [ 7.787136, 47.5038299 ], + [ 7.7871384, 47.5038274 ], + [ 7.7871434, 47.5038224 ], + [ 7.7871459, 47.50382 ], + [ 7.7871492, 47.5038164 ], + [ 7.7871517, 47.5038139 ], + [ 7.7871566, 47.5038089 ], + [ 7.7871591, 47.5038064 ], + [ 7.7871624, 47.5038028 ], + [ 7.7871697, 47.5037954 ], + [ 7.787172, 47.5037928 ], + [ 7.7871752, 47.5037892 ], + [ 7.787186, 47.5037773 ], + [ 7.7871898999999996, 47.503773 ], + [ 7.7871921, 47.5037704 ], + [ 7.7871951, 47.5037667 ], + [ 7.7871994, 47.5037616 ], + [ 7.787203, 47.5037572 ], + [ 7.7872050999999995, 47.5037546 ], + [ 7.7872119, 47.5037457 ], + [ 7.7872147, 47.5037419 ], + [ 7.7872187, 47.5037366 ], + [ 7.7872215, 47.5037328 ], + [ 7.7872256, 47.5037273 ], + [ 7.7872281999999995, 47.5037237 ], + [ 7.7872349, 47.5037149 ], + [ 7.7872411, 47.5037072 ], + [ 7.7872458, 47.5037008 ], + [ 7.7872477, 47.5036982 ], + [ 7.7872546, 47.5036879 ], + [ 7.7872645, 47.5036737 ], + [ 7.7872707, 47.5036644 ], + [ 7.7872746, 47.5036578 ], + [ 7.7872805, 47.5036472 ], + [ 7.7872869, 47.5036359 ], + [ 7.7872912, 47.5036285 ], + [ 7.7872959999999996, 47.50362 ], + [ 7.7872985, 47.5036152 ], + [ 7.787302, 47.5036085 ], + [ 7.7873076999999995, 47.5035971 ], + [ 7.7873273, 47.5035565 ], + [ 7.7873338, 47.503543 ], + [ 7.7873379, 47.5035342 ], + [ 7.78734, 47.5035294 ], + [ 7.7873426, 47.5035234 ], + [ 7.7873448, 47.5035186 ], + [ 7.787351, 47.503505 ], + [ 7.7873532, 47.5035001 ], + [ 7.7873557, 47.5034941 ], + [ 7.787363, 47.5034776 ], + [ 7.7873659, 47.5034708 ], + [ 7.7873689, 47.5034626 ], + [ 7.7873726, 47.5034528 ], + [ 7.7873756, 47.5034447 ], + [ 7.7873776, 47.5034398 ], + [ 7.7873826, 47.5034281 ], + [ 7.7873855, 47.5034212 ], + [ 7.7873886, 47.5034131 ], + [ 7.7873906, 47.5034083 ], + [ 7.7873957, 47.5033966 ], + [ 7.7873985999999995, 47.5033897 ], + [ 7.7874017, 47.5033816 ], + [ 7.7874037, 47.5033768 ], + [ 7.7874088, 47.5033651 ], + [ 7.7874116, 47.5033582 ], + [ 7.7874148, 47.5033501 ], + [ 7.7874168, 47.5033452 ], + [ 7.7874218, 47.5033336 ], + [ 7.7874247, 47.5033267 ], + [ 7.7874278, 47.5033186 ], + [ 7.7874298, 47.5033137 ], + [ 7.7874347, 47.503302 ], + [ 7.7874369, 47.5032966 ], + [ 7.787438, 47.5032939 ], + [ 7.7874406, 47.5032883 ], + [ 7.7874417, 47.5032856 ], + [ 7.7874476, 47.5032704 ], + [ 7.7874505, 47.5032623 ], + [ 7.7874543, 47.5032525 ], + [ 7.7874573, 47.5032443 ], + [ 7.7874601, 47.5032374 ], + [ 7.7874643, 47.5032277 ], + [ 7.7874671, 47.5032207 ], + [ 7.7874701, 47.5032127 ], + [ 7.7874738, 47.5032029 ], + [ 7.7874768, 47.5031948 ], + [ 7.7874797000000004, 47.5031879 ], + [ 7.7874838, 47.5031782 ], + [ 7.7874867, 47.5031714 ], + [ 7.7874898, 47.5031632 ], + [ 7.7874966, 47.5031466 ], + [ 7.7874997, 47.5031385 ], + [ 7.7875025, 47.5031316 ], + [ 7.7875067, 47.5031219 ], + [ 7.7875096, 47.5031151 ], + [ 7.7875126, 47.5031069 ], + [ 7.7875194, 47.5030903 ], + [ 7.7875225, 47.5030822 ], + [ 7.7875253, 47.5030753 ], + [ 7.7875295, 47.5030656 ], + [ 7.7875319, 47.5030596 ], + [ 7.787536, 47.5030499 ], + [ 7.7875385, 47.5030438 ], + [ 7.7875425, 47.5030341 ], + [ 7.7875489, 47.5030183 ], + [ 7.7875519, 47.5030102 ], + [ 7.7875531, 47.5030073 ], + [ 7.7875548, 47.5030033 ], + [ 7.7875598, 47.5029916 ], + [ 7.7875618, 47.5029868 ], + [ 7.787565, 47.5029786 ], + [ 7.7875678, 47.5029718 ], + [ 7.787572, 47.5029621 ], + [ 7.7875749, 47.5029552 ], + [ 7.7875779, 47.5029471 ], + [ 7.7875818, 47.5029373 ], + [ 7.7875839, 47.5029319 ], + [ 7.787585, 47.5029293 ], + [ 7.7875875, 47.5029236 ], + [ 7.7875886, 47.5029209 ], + [ 7.7875946, 47.5029057 ], + [ 7.7875975, 47.5028976 ], + [ 7.7876012, 47.5028878 ], + [ 7.7876041, 47.5028796 ], + [ 7.7876142, 47.502854 ], + [ 7.7876171, 47.5028458 ], + [ 7.7876208, 47.502836 ], + [ 7.7876236, 47.5028278 ], + [ 7.7876253, 47.5028229 ], + [ 7.787627, 47.5028179 ], + [ 7.7876279, 47.5028148 ], + [ 7.7876304, 47.5028054 ], + [ 7.7876319, 47.5028004 ], + [ 7.7876332999999995, 47.5027954 ], + [ 7.7876341, 47.5027922 ], + [ 7.7876347, 47.502789 ], + [ 7.7876365, 47.5027794 ], + [ 7.7876372, 47.5027762 ], + [ 7.7876384, 47.5027711 ], + [ 7.7876396, 47.502766 ], + [ 7.7876402, 47.5027625 ], + [ 7.7876407, 47.502759 ], + [ 7.787641, 47.5027554 ], + [ 7.7876413, 47.5027518 ], + [ 7.7876421, 47.5027373 ], + [ 7.7876423, 47.5027337 ], + [ 7.7876426, 47.5027302 ], + [ 7.7876438, 47.50272 ], + [ 7.7876441, 47.5027164 ], + [ 7.7876443, 47.5027128 ], + [ 7.7876444, 47.5027092 ], + [ 7.7876445, 47.5027019 ], + [ 7.7876445, 47.502691 ], + [ 7.7876443, 47.5026837 ], + [ 7.7876442, 47.5026801 ], + [ 7.787644, 47.5026765 ], + [ 7.7876438, 47.5026729 ], + [ 7.7876434, 47.5026693 ], + [ 7.7876422, 47.5026593 ], + [ 7.7876418, 47.5026558 ], + [ 7.7876413, 47.5026488 ], + [ 7.7876407, 47.5026383 ], + [ 7.7876405, 47.5026348 ], + [ 7.7876402, 47.5026313 ], + [ 7.7876398, 47.5026279 ], + [ 7.7876393, 47.5026244 ], + [ 7.7876386, 47.502621 ], + [ 7.7876361, 47.5026109 ], + [ 7.7876354, 47.5026073 ], + [ 7.7876334, 47.5025966 ], + [ 7.7876327, 47.5025931 ], + [ 7.7876319, 47.5025896 ], + [ 7.7876304, 47.5025845 ], + [ 7.7876289, 47.5025795 ], + [ 7.7876263, 47.5025701 ], + [ 7.7876253, 47.502567 ], + [ 7.7876218999999995, 47.5025571 ], + [ 7.7876183, 47.5025459 ], + [ 7.7876157, 47.5025377 ], + [ 7.787612, 47.5025265 ], + [ 7.7876052, 47.5025086 ], + [ 7.7876024, 47.5025017 ], + [ 7.7875983, 47.502492 ], + [ 7.7875951, 47.5024839 ], + [ 7.787593, 47.502479 ], + [ 7.7875889, 47.5024703 ], + [ 7.7875856, 47.5024635 ], + [ 7.7875747, 47.5024413 ], + [ 7.7875718, 47.5024357 ], + [ 7.7875679, 47.5024278 ], + [ 7.787565, 47.5024223 ], + [ 7.7875611, 47.5024144 ], + [ 7.7875581, 47.5024088 ], + [ 7.7875542, 47.502401 ], + [ 7.7875511, 47.5023955 ], + [ 7.787548, 47.5023896 ], + [ 7.787545, 47.5023841 ], + [ 7.7875437, 47.5023814 ], + [ 7.7875411, 47.5023761 ], + [ 7.7875383, 47.5023706 ], + [ 7.7875371, 47.5023679 ], + [ 7.7875347, 47.5023626 ], + [ 7.7875315, 47.5023558 ], + [ 7.7875282, 47.502349 ], + [ 7.7875258, 47.5023443 ], + [ 7.7875214, 47.5023356 ], + [ 7.7875173, 47.5023282 ], + [ 7.7875138, 47.5023216 ], + [ 7.7875069, 47.502308 ], + [ 7.7874967, 47.5022878 ], + [ 7.7874646, 47.5022233 ], + [ 7.7874544, 47.5022031 ], + [ 7.787451, 47.5021964 ], + [ 7.7874474, 47.5021897 ], + [ 7.7874433, 47.5021822 ], + [ 7.7874398, 47.5021756 ], + [ 7.7874362999999995, 47.5021688 ], + [ 7.7874295, 47.5021554 ], + [ 7.7873301, 47.5019561 ], + [ 7.7872984, 47.5018928 ], + [ 7.7872913, 47.5018782 ], + [ 7.7872859, 47.5018666 ], + [ 7.7872786, 47.5018506 ], + [ 7.787276, 47.5018446 ], + [ 7.7872723, 47.501836 ], + [ 7.7872704, 47.5018318 ], + [ 7.7872667, 47.5018237 ], + [ 7.787263, 47.501816 ], + [ 7.7872576, 47.5018048 ], + [ 7.7872397, 47.5017683 ], + [ 7.7872095, 47.5017609 ], + [ 7.7871953, 47.5017574 ], + [ 7.787188, 47.5017554 ], + [ 7.787167, 47.5017493 ], + [ 7.787163, 47.5017482 ], + [ 7.7871533, 47.5017455 ], + [ 7.7871465, 47.5017436 ], + [ 7.787131, 47.5017396 ], + [ 7.7871064, 47.5017331 ], + [ 7.7870936, 47.5017301 ], + [ 7.7870836, 47.5017278 ], + [ 7.7870637, 47.5017234 ], + [ 7.7870437, 47.5017191 ], + [ 7.7870337, 47.501717 ], + [ 7.7870235, 47.501715 ], + [ 7.7870116, 47.5017128 ], + [ 7.7870015, 47.5017109 ], + [ 7.7869872, 47.5017081 ], + [ 7.786977, 47.5017061 ], + [ 7.7869651, 47.501704 ], + [ 7.7869549, 47.5017021 ], + [ 7.7869406, 47.5016992 ], + [ 7.7869305, 47.501697300000004 ], + [ 7.7869185, 47.5016952 ], + [ 7.7869084, 47.5016932 ], + [ 7.7868941, 47.5016904 ], + [ 7.786884, 47.5016885 ], + [ 7.786872, 47.5016863 ], + [ 7.7868619, 47.5016843 ], + [ 7.7868376, 47.5016794 ], + [ 7.7868144, 47.5016749 ], + [ 7.7866659, 47.5016467 ], + [ 7.7866427, 47.5016422 ], + [ 7.7866183, 47.5016373 ], + [ 7.7866082, 47.5016353 ], + [ 7.7865962, 47.5016332 ], + [ 7.7865861, 47.5016312 ], + [ 7.7865719, 47.5016284 ], + [ 7.7865618, 47.5016265 ], + [ 7.78655, 47.5016244 ], + [ 7.7865397, 47.5016224 ], + [ 7.7865253, 47.5016195 ], + [ 7.7865152, 47.5016176 ], + [ 7.7865032, 47.5016155 ], + [ 7.7864930999999995, 47.5016135 ], + [ 7.7864831, 47.5016114 ], + [ 7.7864689, 47.5016084 ], + [ 7.7864559, 47.5016057 ], + [ 7.7864488, 47.5016043 ], + [ 7.7864368, 47.5016022 ], + [ 7.7864267, 47.5016002 ], + [ 7.7864167, 47.5015981 ], + [ 7.7863895, 47.5015924 ], + [ 7.7863824, 47.5015909 ], + [ 7.7863735, 47.5015892 ], + [ 7.7863503, 47.5015846 ], + [ 7.7863403, 47.5015825 ], + [ 7.7863302999999995, 47.5015803 ], + [ 7.7863204, 47.501578 ], + [ 7.7863093, 47.5015753 ], + [ 7.7862994, 47.501573 ], + [ 7.7862638, 47.5015649 ], + [ 7.7862539, 47.5015626 ], + [ 7.786244, 47.5015603 ], + [ 7.7862329, 47.5015575 ], + [ 7.7862173, 47.501553799999996 ], + [ 7.7862074, 47.5015514 ], + [ 7.7861907, 47.501547 ], + [ 7.7861741, 47.5015426 ], + [ 7.7861575, 47.5015381 ], + [ 7.786141, 47.5015335 ], + [ 7.7861329999999995, 47.5015312 ], + [ 7.7861107, 47.5015251 ], + [ 7.7861079, 47.5015243 ], + [ 7.7860864, 47.5015179 ], + [ 7.7860613999999995, 47.501511 ], + [ 7.7860478, 47.5015069 ], + [ 7.7860399000000005, 47.5015045 ], + [ 7.7860235, 47.5014997 ], + [ 7.7860179, 47.5014981 ], + [ 7.7860043, 47.5014941 ], + [ 7.7860015, 47.5014932 ], + [ 7.7859976, 47.501492 ], + [ 7.7859881, 47.5014889 ], + [ 7.7859749, 47.5014843 ], + [ 7.7859634, 47.50148 ], + [ 7.7859503, 47.5014754 ], + [ 7.7859371, 47.5014708 ], + [ 7.7859316, 47.501469 ], + [ 7.7859184, 47.5014644 ], + [ 7.7859069, 47.5014602 ], + [ 7.7858918, 47.5014553 ], + [ 7.7858878, 47.5014539 ], + [ 7.7858813, 47.5014515 ], + [ 7.7858787, 47.5014506 ], + [ 7.785875, 47.5014491 ], + [ 7.7858639, 47.5014447 ], + [ 7.7858455, 47.5014375 ], + [ 7.7858415999999995, 47.5014359 ], + [ 7.7858295, 47.5014308 ], + [ 7.7858189, 47.5014265 ], + [ 7.7858108999999995, 47.5014232 ], + [ 7.7858064, 47.5014213 ], + [ 7.7857872, 47.501413 ], + [ 7.7857723, 47.5014064 ], + [ 7.7857375, 47.5013907 ], + [ 7.7857223, 47.501384 ], + [ 7.7857173, 47.5013819 ], + [ 7.7857045, 47.5013764 ], + [ 7.7856879, 47.5013694 ], + [ 7.7856776, 47.5013653 ], + [ 7.7856738, 47.5013638 ], + [ 7.7856646, 47.5013603 ], + [ 7.7856543, 47.5013564 ], + [ 7.7856505, 47.501355 ], + [ 7.7856451, 47.5013532 ], + [ 7.7856374, 47.5013506 ], + [ 7.7856133, 47.5013428 ], + [ 7.7856049, 47.5013402 ], + [ 7.7855988, 47.5013383 ], + [ 7.7855869, 47.5013349 ], + [ 7.7855696, 47.5013299 ], + [ 7.7855018, 47.5013107 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr143", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Eileten", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Eileten", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Eileten", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Eileten", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.3290658, 47.5079083 ], + [ 9.3288912, 47.505557 ], + [ 9.3285352, 47.503215 ], + [ 9.3279989, 47.5008889 ], + [ 9.3272837, 47.498585 ], + [ 9.326391600000001, 47.4963097 ], + [ 9.3253252, 47.494069 ], + [ 9.3240873, 47.4918693 ], + [ 9.3226813, 47.4897164 ], + [ 9.3211111, 47.4876164 ], + [ 9.3193811, 47.4855749 ], + [ 9.3174959, 47.4835975 ], + [ 9.3154608, 47.4816897 ], + [ 9.3132814, 47.4798567 ], + [ 9.310963600000001, 47.4781035 ], + [ 9.3085138, 47.4764349 ], + [ 9.3059387, 47.4748554 ], + [ 9.3032453, 47.4733694 ], + [ 9.300441, 47.4719809 ], + [ 9.2975336, 47.4706938 ], + [ 9.294531, 47.4695115 ], + [ 9.2914413, 47.4684373 ], + [ 9.2882731, 47.4674742 ], + [ 9.285035, 47.4666247 ], + [ 9.2817358, 47.4658912 ], + [ 9.2783846, 47.4652757 ], + [ 9.2749906, 47.4647798 ], + [ 9.2715631, 47.464405 ], + [ 9.2681113, 47.4641523 ], + [ 9.2646448, 47.4640223 ], + [ 9.261173, 47.4640154 ], + [ 9.2577055, 47.4641317 ], + [ 9.2542516, 47.4643707 ], + [ 9.2508209, 47.4647319 ], + [ 9.2474226, 47.4652143 ], + [ 9.2440662, 47.4658165 ], + [ 9.2407608, 47.4665368 ], + [ 9.2375154, 47.4673735 ], + [ 9.234339, 47.468324 ], + [ 9.2312401, 47.4693859 ], + [ 9.2282273, 47.4705563 ], + [ 9.2253088, 47.4718319 ], + [ 9.2224926, 47.4732092 ], + [ 9.2197865, 47.4746845 ], + [ 9.2171978, 47.4762537 ], + [ 9.2147336, 47.4779126 ], + [ 9.2124007, 47.4796566 ], + [ 9.2102055, 47.481481 ], + [ 9.208154, 47.4833807 ], + [ 9.2062518, 47.4853505 ], + [ 9.2045042, 47.4873851 ], + [ 9.2029159, 47.4894789 ], + [ 9.2014914, 47.4916261 ], + [ 9.2002345, 47.4938209 ], + [ 9.1991487, 47.4960573 ], + [ 9.198237, 47.4983291 ], + [ 9.197502, 47.5006301 ], + [ 9.1969455, 47.502954 ], + [ 9.1965694, 47.5052945 ], + [ 9.1963744, 47.5076451 ], + [ 9.1963613, 47.5099994 ], + [ 9.1965301, 47.512351 ], + [ 9.1968803, 47.5146933 ], + [ 9.197411, 47.51702 ], + [ 9.1981208, 47.5193247 ], + [ 9.1990077, 47.521601 ], + [ 9.2000694, 47.5238428 ], + [ 9.201303, 47.5260438 ], + [ 9.202705, 47.5281981 ], + [ 9.2042717, 47.5302997 ], + [ 9.2059987, 47.5323429 ], + [ 9.2078815, 47.5343221 ], + [ 9.2099147, 47.5362317 ], + [ 9.2120929, 47.5380666 ], + [ 9.21441, 47.5398218 ], + [ 9.2168598, 47.5414924 ], + [ 9.2194355, 47.5430738 ], + [ 9.2221301, 47.5445618 ], + [ 9.2249361, 47.5459521 ], + [ 9.2278459, 47.547241 ], + [ 9.2308515, 47.548425 ], + [ 9.2339446, 47.5495008 ], + [ 9.2371167, 47.5504654 ], + [ 9.2403592, 47.5513162 ], + [ 9.2436631, 47.5520508 ], + [ 9.2470193, 47.5526673 ], + [ 9.2504186, 47.5531639 ], + [ 9.2538518, 47.5535393 ], + [ 9.2573093, 47.5537925 ], + [ 9.2607816, 47.5539227 ], + [ 9.264259299999999, 47.553929600000004 ], + [ 9.2677327, 47.5538132 ], + [ 9.2711924, 47.5535737 ], + [ 9.2746287, 47.553212 ], + [ 9.2780323, 47.5527288 ], + [ 9.2813938, 47.5521256 ], + [ 9.284704, 47.5514041 ], + [ 9.2879538, 47.5505662 ], + [ 9.2911342, 47.5496142 ], + [ 9.2942366, 47.5485507 ], + [ 9.2972523, 47.5473787 ], + [ 9.3001732, 47.5461013 ], + [ 9.3029913, 47.5447221 ], + [ 9.3056987, 47.5432449 ], + [ 9.308288, 47.5416737 ], + [ 9.3107522, 47.5400129 ], + [ 9.3130845, 47.538266899999996 ], + [ 9.3152785, 47.5364407 ], + [ 9.3173283, 47.5345391 ], + [ 9.3192281, 47.5325675 ], + [ 9.3209728, 47.5305312 ], + [ 9.3225576, 47.5284358 ], + [ 9.3239783, 47.5262871 ], + [ 9.3252308, 47.524091 ], + [ 9.3263119, 47.5218535 ], + [ 9.3272185, 47.5195807 ], + [ 9.3279482, 47.5172789 ], + [ 9.328499, 47.5149543 ], + [ 9.3288695, 47.5126134 ], + [ 9.3290586, 47.5102626 ], + [ 9.3290658, 47.5079083 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZV001", + "country" : "CHE", + "name" : [ + { + "text" : "LSZV Sitterdorf", + "lang" : "de-CH" + }, + { + "text" : "LSZV Sitterdorf", + "lang" : "fr-CH" + }, + { + "text" : "LSZV Sitterdorf", + "lang" : "it-CH" + }, + { + "text" : "LSZV Sitterdorf", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Flugplatz Sitterdorf", + "lang" : "de-CH" + }, + { + "text" : "Flugplatz Sitterdorf", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatz Sitterdorf", + "lang" : "it-CH" + }, + { + "text" : "Flugplatz Sitterdorf", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Willi Hefel", + "lang" : "de-CH" + }, + { + "text" : "Willi Hefel", + "lang" : "fr-CH" + }, + { + "text" : "Willi Hefel", + "lang" : "it-CH" + }, + { + "text" : "Willi Hefel", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.erlebnisflugplatz.ch/deu/drohnen_42639.shtml", + "email" : "info@erlebnisflugplatz.ch", + "phone" : "0041714223031", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P02DT12H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.7701987, 46.4626796 ], + [ 8.7699151, 46.4629274 ], + [ 8.7697228, 46.4630156 ], + [ 8.7696214, 46.4631302 ], + [ 8.7696183, 46.4632656 ], + [ 8.7696231, 46.4633952 ], + [ 8.7696292, 46.4635472 ], + [ 8.7695619, 46.4636894 ], + [ 8.7695179, 46.46382 ], + [ 8.7694013, 46.4639743 ], + [ 8.7692775, 46.4641345 ], + [ 8.7691848, 46.4642715 ], + [ 8.7691098, 46.4644308 ], + [ 8.7690901, 46.4645552 ], + [ 8.7690538, 46.4646686 ], + [ 8.7688872, 46.4647788 ], + [ 8.7686971, 46.4649234 ], + [ 8.7686134, 46.4650602 ], + [ 8.7685192, 46.4651691 ], + [ 8.7683931, 46.4652673 ], + [ 8.7681925, 46.4653501 ], + [ 8.7680994, 46.4654701 ], + [ 8.7680555, 46.4656063 ], + [ 8.7680308, 46.4657928 ], + [ 8.7679887, 46.4659684 ], + [ 8.7679956, 46.4661486 ], + [ 8.7679294, 46.4663358 ], + [ 8.7679194, 46.466494 ], + [ 8.7679744, 46.4666451 ], + [ 8.7680932, 46.4667781 ], + [ 8.7681623, 46.4668726 ], + [ 8.7681683, 46.4670192 ], + [ 8.7681651, 46.4671545 ], + [ 8.7682605, 46.4672937 ], + [ 8.7683995, 46.4675222 ], + [ 8.7685646, 46.4677841 ], + [ 8.7686695, 46.4679794 ], + [ 8.7687633, 46.4680847 ], + [ 8.7689117, 46.4681326 ], + [ 8.7691355, 46.4682299 ], + [ 8.7696988, 46.4684674 ], + [ 8.7704017, 46.4687248 ], + [ 8.7708146, 46.4688691 ], + [ 8.771118, 46.4689311 ], + [ 8.7713963, 46.4689597 ], + [ 8.7716819, 46.4689601 ], + [ 8.7720343, 46.4690266 ], + [ 8.7722814, 46.4690784 ], + [ 8.7724465, 46.469143 ], + [ 8.7725503, 46.4692931 ], + [ 8.7725793, 46.469411 ], + [ 8.7726363, 46.4696129 ], + [ 8.772708, 46.4697807 ], + [ 8.7727775, 46.4698922 ], + [ 8.7729261, 46.4699457 ], + [ 8.7730971, 46.4699482 ], + [ 8.7732108, 46.4699404 ], + [ 8.7734081, 46.4699874 ], + [ 8.773629, 46.4700001 ], + [ 8.7738707, 46.4699336 ], + [ 8.7740976, 46.4698955 ], + [ 8.7742788, 46.4699483 ], + [ 8.7744947, 46.4700571 ], + [ 8.7747019, 46.4701434 ], + [ 8.7749342, 46.4702573 ], + [ 8.7751844, 46.4704048 ], + [ 8.775319, 46.4705151 ], + [ 8.7755055, 46.4706863 ], + [ 8.7756245, 46.470825 ], + [ 8.7757379, 46.4710032 ], + [ 8.7758402, 46.4711253 ], + [ 8.7759093, 46.4712199 ], + [ 8.7760945, 46.4713686 ], + [ 8.7762191, 46.4714395 ], + [ 8.776411, 46.4715656 ], + [ 8.7764539, 46.4716212 ], + [ 8.776533, 46.4717606 ], + [ 8.7766214, 46.471945 ], + [ 8.7766899, 46.472017 ], + [ 8.7768081, 46.4721219 ], + [ 8.7769755, 46.4722428 ], + [ 8.7771442, 46.4723861 ], + [ 8.7772378, 46.4724858 ], + [ 8.777315, 46.4725802 ], + [ 8.7773587, 46.4726695 ], + [ 8.777363, 46.4727766 ], + [ 8.7773833, 46.4728721 ], + [ 8.7773225, 46.4729804 ], + [ 8.7772355, 46.4730496 ], + [ 8.7771163, 46.4731364 ], + [ 8.7769888, 46.473212 ], + [ 8.7768482, 46.4733501 ], + [ 8.7767372, 46.4734367 ], + [ 8.7766845, 46.4735449 ], + [ 8.7766812, 46.4736745 ], + [ 8.776709199999999, 46.4737529 ], + [ 8.7767769, 46.4738249 ], + [ 8.7768686, 46.4738795 ], + [ 8.7769845, 46.4739282 ], + [ 8.7770499, 46.4739381 ], + [ 8.7771882, 46.4739355 ], + [ 8.7773263, 46.4739273 ], + [ 8.7774883, 46.4738961 ], + [ 8.7776754, 46.4738925 ], + [ 8.7778235, 46.4739235 ], + [ 8.7779069, 46.4739727 ], + [ 8.7779907, 46.4740332 ], + [ 8.7780348, 46.4741056 ], + [ 8.7780556, 46.4742236 ], + [ 8.7780945, 46.4743807 ], + [ 8.778067, 46.4745222 ], + [ 8.7780579, 46.474714 ], + [ 8.7780579, 46.4749114 ], + [ 8.7780487, 46.4750975 ], + [ 8.7780735, 46.4753113 ], + [ 8.7781273, 46.4754456 ], + [ 8.7782613, 46.4755332 ], + [ 8.7784174, 46.4755585 ], + [ 8.7786051, 46.4755775 ], + [ 8.7788261, 46.4755958 ], + [ 8.7791529, 46.4756122 ], + [ 8.7794449, 46.4755729 ], + [ 8.7796786, 46.4755121 ], + [ 8.7798455, 46.4754131 ], + [ 8.7800193, 46.4752689 ], + [ 8.7801931, 46.475119 ], + [ 8.7804226, 46.4749569 ], + [ 8.7806555, 46.4748623 ], + [ 8.7807752, 46.4747981 ], + [ 8.7809702, 46.474783 ], + [ 8.7811326, 46.4747687 ], + [ 8.7812949, 46.4747488 ], + [ 8.7815125, 46.4746939 ], + [ 8.7816547, 46.4745897 ], + [ 8.7817575, 46.4744976 ], + [ 8.7818995, 46.4743822 ], + [ 8.7821002, 46.474305 ], + [ 8.7823666, 46.4742493 ], + [ 8.782650499999999, 46.4742101 ], + [ 8.7828682, 46.4741608 ], + [ 8.7830772, 46.4740893 ], + [ 8.7832376, 46.4740242 ], + [ 8.7836172, 46.4739382 ], + [ 8.7838771, 46.4739162 ], + [ 8.7840814, 46.473918 ], + [ 8.7842529, 46.473943 ], + [ 8.7843688, 46.4739859 ], + [ 8.7844766, 46.4740347 ], + [ 8.784667, 46.4740986 ], + [ 8.784881, 46.4741623 ], + [ 8.785159, 46.4741795 ], + [ 8.7852751, 46.4742337 ], + [ 8.7854337, 46.4743266 ], + [ 8.7856248, 46.4744188 ], + [ 8.7858148, 46.4744997 ], + [ 8.7861033, 46.4745788 ], + [ 8.7863516, 46.4746812 ], + [ 8.7866071, 46.4747441 ], + [ 8.7869103, 46.4747946 ], + [ 8.7870741, 46.4748028 ], + [ 8.7872804, 46.4748834 ], + [ 8.7875525, 46.4749572 ], + [ 8.7878538, 46.4749628 ], + [ 8.7880751, 46.4749925 ], + [ 8.7883343, 46.4749424 ], + [ 8.788416, 46.4749578 ], + [ 8.7885101, 46.4750743 ], + [ 8.7886502, 46.4751112 ], + [ 8.7888143, 46.4751306 ], + [ 8.7889554, 46.4752068 ], + [ 8.7891541, 46.4752764 ], + [ 8.7892944, 46.4753245 ], + [ 8.7894514, 46.4753835 ], + [ 8.7897072, 46.4754575 ], + [ 8.7899125, 46.4754988 ], + [ 8.7901814, 46.4755106 ], + [ 8.7903147, 46.47557 ], + [ 8.7905942, 46.4756492 ], + [ 8.7908555, 46.4756499 ], + [ 8.7911407, 46.4756614 ], + [ 8.7914349, 46.4756785 ], + [ 8.7916567, 46.475725 ], + [ 8.7918063, 46.4757841 ], + [ 8.7920447, 46.4758472 ], + [ 8.7922662, 46.4758825 ], + [ 8.7924531, 46.4758733 ], + [ 8.7926555, 46.4758301 ], + [ 8.7928672, 46.4758316 ], + [ 8.7931435, 46.4758151 ], + [ 8.7934968, 46.4758816 ], + [ 8.7937837, 46.4759326 ], + [ 8.7940314, 46.4760068 ], + [ 8.7942472, 46.4761098 ], + [ 8.794496, 46.4762291 ], + [ 8.7946772, 46.4762819 ], + [ 8.7948685, 46.4763799 ], + [ 8.7950758, 46.4764661 ], + [ 8.7952804, 46.4764791 ], + [ 8.7953476, 46.4765285 ], + [ 8.7954072, 46.4766008 ], + [ 8.7955841, 46.4767439 ], + [ 8.7957893, 46.4767795 ], + [ 8.7957152, 46.4769726 ], + [ 8.7959307, 46.4770643 ], + [ 8.796308, 46.4769161 ], + [ 8.796634300000001, 46.4767183 ], + [ 8.7968745, 46.4766236 ], + [ 8.7971067, 46.4765064 ], + [ 8.7973323, 46.4764458 ], + [ 8.797616099999999, 46.4764009 ], + [ 8.7980123, 46.4763312 ], + [ 8.7983334, 46.476218 ], + [ 8.798684399999999, 46.4760309 ], + [ 8.7990592, 46.4758209 ], + [ 8.7993138, 46.4756525 ], + [ 8.7995637, 46.4753941 ], + [ 8.7997263, 46.4751599 ], + [ 8.8000465, 46.4748155 ], + [ 8.8003346, 46.4746861 ], + [ 8.800679, 46.4745273 ], + [ 8.801152, 46.4743379 ], + [ 8.8013367, 46.4742723 ], + [ 8.8016488, 46.4741254 ], + [ 8.8019857, 46.473995 ], + [ 8.8023144, 46.4738591 ], + [ 8.8025957, 46.4737522 ], + [ 8.8029163, 46.4736164 ], + [ 8.8032365, 46.4734694 ], + [ 8.8035735, 46.4733444 ], + [ 8.8039349, 46.4732136 ], + [ 8.804344, 46.4730422 ], + [ 8.8047192, 46.472849 ], + [ 8.8050132, 46.472663 ], + [ 8.8053478, 46.4724706 ], + [ 8.805591100000001, 46.4722462 ], + [ 8.8058769, 46.4720546 ], + [ 8.8062292, 46.47189 ], + [ 8.8065961, 46.4716913 ], + [ 8.8070367, 46.4715081 ], + [ 8.8073549, 46.4713161 ], + [ 8.8077512, 46.471021 ], + [ 8.8080844, 46.4708116 ], + [ 8.80834, 46.4706827 ], + [ 8.8085663, 46.470622 ], + [ 8.8088158, 46.4705439 ], + [ 8.809053, 46.4703646 ], + [ 8.8092766, 46.4702589 ], + [ 8.8095366, 46.4702425 ], + [ 8.8097148, 46.470211 ], + [ 8.8099788, 46.4700931 ], + [ 8.8102667, 46.469958 ], + [ 8.8106192, 46.469799 ], + [ 8.810905, 46.4696131 ], + [ 8.8113402, 46.4692835 ], + [ 8.8116828, 46.4690908 ], + [ 8.8122019, 46.4688272 ], + [ 8.8126824, 46.4686151 ], + [ 8.812962, 46.4684744 ], + [ 8.813203399999999, 46.4683965 ], + [ 8.8135343, 46.4683225 ], + [ 8.813875, 46.4682765 ], + [ 8.8141966, 46.4681857 ], + [ 8.8144754, 46.4680112 ], + [ 8.8150009, 46.4677136 ], + [ 8.8154449, 46.467412 ], + [ 8.8158093, 46.4671513 ], + [ 8.8160079, 46.4670233 ], + [ 8.8163701, 46.466898 ], + [ 8.8167561, 46.4667779 ], + [ 8.817288, 46.4666379 ], + [ 8.8177964, 46.4664984 ], + [ 8.8181677, 46.4664123 ], + [ 8.8184642, 46.4662939 ], + [ 8.8188189, 46.4661913 ], + [ 8.8192777, 46.4660583 ], + [ 8.8195745, 46.4659512 ], + [ 8.8198478, 46.46585 ], + [ 8.8202164, 46.4656908 ], + [ 8.8205286, 46.4655495 ], + [ 8.8209139, 46.4654067 ], + [ 8.8212494, 46.4652536 ], + [ 8.8215694, 46.4651008 ], + [ 8.8217842, 46.4649726 ], + [ 8.8220155, 46.4648499 ], + [ 8.8222547, 46.4647211 ], + [ 8.8224685, 46.4645536 ], + [ 8.8227136, 46.4643684 ], + [ 8.8229587, 46.4641832 ], + [ 8.8231883, 46.4640266 ], + [ 8.8234007, 46.4638365 ], + [ 8.8236287, 46.4636179 ], + [ 8.8238253, 46.463445 ], + [ 8.8239467, 46.4632284 ], + [ 8.8240365, 46.4630181 ], + [ 8.8240944, 46.4628309 ], + [ 8.8241263, 46.4626161 ], + [ 8.8241175, 46.4623963 ], + [ 8.824101, 46.4621995 ], + [ 8.8240917, 46.4619628 ], + [ 8.8240829, 46.4617431 ], + [ 8.8240982, 46.4615173 ], + [ 8.8241557, 46.4613133 ], + [ 8.824242, 46.4610296 ], + [ 8.8243552, 46.4608077 ], + [ 8.8245081, 46.4605509 ], + [ 8.8246521, 46.4602946 ], + [ 8.8248148, 46.4600716 ], + [ 8.8250013, 46.4598537 ], + [ 8.8251563, 46.4596478 ], + [ 8.8253264, 46.4594246 ], + [ 8.825433199999999, 46.4592422 ], + [ 8.8255923, 46.4589402 ], + [ 8.8257476, 46.4585539 ], + [ 8.8259586, 46.4581214 ], + [ 8.8263185, 46.4575563 ], + [ 8.8264265, 46.4573908 ], + [ 8.8264908, 46.4571696 ], + [ 8.8265244, 46.4569885 ], + [ 8.8265729, 46.4567847 ], + [ 8.8266287, 46.4565468 ], + [ 8.8267088, 46.4563085 ], + [ 8.8267919, 46.4561547 ], + [ 8.8268829, 46.4559894 ], + [ 8.8269931, 46.4558746 ], + [ 8.8271653, 46.4557077 ], + [ 8.8274345, 46.4555108 ], + [ 8.8278, 46.4552952 ], + [ 8.8280019, 46.4552349 ], + [ 8.8281853, 46.4551524 ], + [ 8.8283201, 46.4550484 ], + [ 8.8283966, 46.4549228 ], + [ 8.8284739, 46.4548255 ], + [ 8.8285765, 46.4547333 ], + [ 8.828710300000001, 46.4546236 ], + [ 8.8288278, 46.4545085 ], + [ 8.828926599999999, 46.4543319 ], + [ 8.8290581, 46.4541603 ], + [ 8.8291649, 46.4539778 ], + [ 8.8292548, 46.4537731 ], + [ 8.8292869, 46.4535638 ], + [ 8.8293287, 46.4533883 ], + [ 8.8293681, 46.4531452 ], + [ 8.8293921, 46.4529417 ], + [ 8.8294583, 46.45276 ], + [ 8.8295732, 46.4525774 ], + [ 8.8297048, 46.4524114 ], + [ 8.829843799999999, 46.452217 ], + [ 8.8299165, 46.4520071 ], + [ 8.8300042, 46.451746 ], + [ 8.8300585, 46.4514856 ], + [ 8.8300493, 46.4512547 ], + [ 8.830032, 46.4510238 ], + [ 8.8300061, 46.4507763 ], + [ 8.8299364, 46.4504676 ], + [ 8.8299139, 46.4503215 ], + [ 8.8300276, 46.4503137 ], + [ 8.8300406, 46.4502175 ], + [ 8.8300528, 46.4501215 ], + [ 8.8300558, 46.4499861 ], + [ 8.8300978, 46.4498161 ], + [ 8.8301791, 46.449623 ], + [ 8.830286, 46.4494461 ], + [ 8.8304242, 46.4492179 ], + [ 8.8306263, 46.4489773 ], + [ 8.830828499999999, 46.4487421 ], + [ 8.8309991, 46.4485415 ], + [ 8.8312112, 46.4483458 ], + [ 8.8313845, 46.4481847 ], + [ 8.8317269, 46.4479919 ], + [ 8.8319645, 46.4478351 ], + [ 8.8321479, 46.4477244 ], + [ 8.832355100000001, 46.447619 ], + [ 8.8326188, 46.4474954 ], + [ 8.8328429, 46.447384 ], + [ 8.8330579, 46.447267 ], + [ 8.8331672, 46.4471522 ], + [ 8.8332828, 46.4469977 ], + [ 8.8334069, 46.4468262 ], + [ 8.8335391, 46.4466828 ], + [ 8.8336883, 46.446539 ], + [ 8.8338422, 46.4463217 ], + [ 8.8339264, 46.4461791 ], + [ 8.8340004, 46.4459916 ], + [ 8.8340978, 46.4457925 ], + [ 8.8341656, 46.4456446 ], + [ 8.834329499999999, 46.4454722 ], + [ 8.834439, 46.4453631 ], + [ 8.8344995, 46.4452492 ], + [ 8.8345743, 46.4450898 ], + [ 8.8346318, 46.4448914 ], + [ 8.8347062, 46.4447152 ], + [ 8.8347822, 46.4445727 ], + [ 8.8348715, 46.4443737 ], + [ 8.8349535, 46.4441805 ], + [ 8.8350508, 46.4439756 ], + [ 8.8351415, 46.4438047 ], + [ 8.835248, 46.4436111 ], + [ 8.8353156, 46.4434576 ], + [ 8.835390499999999, 46.4433038 ], + [ 8.8354303, 46.4430776 ], + [ 8.835446, 46.4428686 ], + [ 8.8354797, 46.4426933 ], + [ 8.8355782, 46.4425053 ], + [ 8.8356865, 46.442351 ], + [ 8.8358165, 46.4421568 ], + [ 8.8359988, 46.4420349 ], + [ 8.8361395, 46.4418743 ], + [ 8.8362897, 46.4417699 ], + [ 8.8364389, 46.441626 ], + [ 8.8365525, 46.4414266 ], + [ 8.8366591, 46.4412384 ], + [ 8.8368285, 46.4409927 ], + [ 8.8370077, 46.4407808 ], + [ 8.8372166, 46.4405229 ], + [ 8.8374343, 46.4402594 ], + [ 8.8376608, 46.4400238 ], + [ 8.838112, 46.4396994 ], + [ 8.8383102, 46.4395602 ], + [ 8.8385174, 46.4394603 ], + [ 8.8387009, 46.4393497 ], + [ 8.8389491, 46.4392603 ], + [ 8.8392309, 46.4391815 ], + [ 8.839441, 46.4391267 ], + [ 8.8396992, 46.4390766 ], + [ 8.8398996, 46.4389938 ], + [ 8.8400269, 46.438918 ], + [ 8.8402172, 46.4387903 ], + [ 8.8402941, 46.4386816 ], + [ 8.8403362, 46.4385173 ], + [ 8.8403297, 46.4383597 ], + [ 8.840332, 46.4381962 ], + [ 8.8402932, 46.4380503 ], + [ 8.8401993, 46.4379394 ], + [ 8.8401057, 46.4378454 ], + [ 8.8399557, 46.4377694 ], + [ 8.839782, 46.4376882 ], + [ 8.8395667, 46.4376021 ], + [ 8.8393431, 46.4375107 ], + [ 8.8390942, 46.4373859 ], + [ 8.8388207, 46.4372841 ], + [ 8.8385806, 46.4371816 ], + [ 8.8384314, 46.4371056 ], + [ 8.8382647, 46.4370131 ], + [ 8.8381138, 46.4369032 ], + [ 8.8379714, 46.4368045 ], + [ 8.8378462, 46.4367449 ], + [ 8.8376177, 46.4367156 ], + [ 8.8374542, 46.4367131 ], + [ 8.8372767, 46.4367391 ], + [ 8.8369851, 46.4367843 ], + [ 8.8367922, 46.4368443 ], + [ 8.8366323, 46.4369208 ], + [ 8.8364154, 46.436992599999996 ], + [ 8.8362311, 46.4370695 ], + [ 8.8361196, 46.437128 ], + [ 8.8360149, 46.4371695 ], + [ 8.8357889, 46.4372077 ], + [ 8.835603, 46.4372507 ], + [ 8.8352637, 46.4373081 ], + [ 8.8348583, 46.4373611 ], + [ 8.8343714, 46.4374044 ], + [ 8.833966, 46.4374517 ], + [ 8.8338352, 46.437426 ], + [ 8.8336526, 46.4373507 ], + [ 8.8334635, 46.4373035 ], + [ 8.8333237, 46.4372725 ], + [ 8.8332439, 46.4373022 ], + [ 8.8331653, 46.4373771 ], + [ 8.8330948, 46.4374516 ], + [ 8.8330161, 46.4375209 ], + [ 8.8329145, 46.4376187 ], + [ 8.832745899999999, 46.4376727 ], + [ 8.8326181, 46.4377315 ], + [ 8.832472, 46.4377457 ], + [ 8.8323002, 46.4377376 ], + [ 8.8321185, 46.4376623 ], + [ 8.8319764, 46.4375749 ], + [ 8.8318801, 46.4374077 ], + [ 8.8317743, 46.4372123 ], + [ 8.8316785, 46.4370619 ], + [ 8.8316569, 46.4369158 ], + [ 8.8316926, 46.4367855 ], + [ 8.8317776, 46.4366766 ], + [ 8.831757, 46.43657 ], + [ 8.8316559, 46.4364986 ], + [ 8.8315151, 46.4364337 ], + [ 8.8312776, 46.4363988 ], + [ 8.8309262, 46.4363661 ], + [ 8.830607, 46.4363217 ], + [ 8.8303366, 46.4362761 ], + [ 8.8301954, 46.4362224 ], + [ 8.8301697, 46.4361723 ], + [ 8.8301575, 46.4360767 ], + [ 8.8301859, 46.4359803 ], + [ 8.8302395, 46.4358834 ], + [ 8.8303413, 46.4357912 ], + [ 8.8304346, 46.435688 ], + [ 8.8304242, 46.4356317 ], + [ 8.8303158, 46.4355607 ], + [ 8.830224, 46.4355003 ], + [ 8.8300415, 46.435425 ], + [ 8.8298767, 46.4353718 ], + [ 8.8296384, 46.4353087 ], + [ 8.8294176, 46.4352961 ], + [ 8.8291966, 46.4352721 ], + [ 8.8290172, 46.4352531 ], + [ 8.8288119, 46.4352063 ], + [ 8.8286945, 46.4351353 ], + [ 8.828600999999999, 46.4350413 ], + [ 8.8285226, 46.4349018 ], + [ 8.8284081, 46.4346842 ], + [ 8.8283311, 46.4346012 ], + [ 8.828097, 46.4344479 ], + [ 8.8279563, 46.4343828 ], + [ 8.8277345, 46.4343309 ], + [ 8.8275957, 46.4343392 ], + [ 8.8274432, 46.4343871 ], + [ 8.8272, 46.4344201 ], + [ 8.8269235, 46.4344198 ], + [ 8.8267126, 46.4344408 ], + [ 8.8265926, 46.4344882 ], + [ 8.8264898, 46.434569 ], + [ 8.8263872, 46.4346613 ], + [ 8.8263014, 46.4347419 ], + [ 8.8261823, 46.4348231 ], + [ 8.8260876, 46.4349038 ], + [ 8.8259836, 46.4349396 ], + [ 8.8258475, 46.434993 ], + [ 8.825654, 46.4350588 ], + [ 8.8254285, 46.4351139 ], + [ 8.8252685, 46.4351846 ], + [ 8.8251097, 46.4352723 ], + [ 8.8249908, 46.4353648 ], + [ 8.8248567, 46.4354632 ], + [ 8.8246726, 46.4355457 ], + [ 8.8245286, 46.4356104 ], + [ 8.8244094, 46.4356861 ], + [ 8.8243327, 46.435806 ], + [ 8.8242464, 46.4358979 ], + [ 8.8241591, 46.4359502 ], + [ 8.8240561, 46.4360254 ], + [ 8.8239366, 46.4360897 ], + [ 8.8238183, 46.436171 ], + [ 8.8237809, 46.4362675 ], + [ 8.8236797, 46.4363823 ], + [ 8.8235373, 46.4364752 ], + [ 8.8233854, 46.4365458 ], + [ 8.8232093, 46.4366282 ], + [ 8.8230721, 46.4366702 ], + [ 8.8229864, 46.4367508 ], + [ 8.8229159, 46.4368255 ], + [ 8.8228049, 46.4369066 ], + [ 8.8226149, 46.437045499999996 ], + [ 8.8224217, 46.4370943 ], + [ 8.8222694, 46.437148 ], + [ 8.8221564, 46.437184 ], + [ 8.8220954, 46.437281 ], + [ 8.8219929, 46.4373732 ], + [ 8.8218409, 46.4374438 ], + [ 8.8217026, 46.4374409 ], + [ 8.8216287, 46.4374141 ], + [ 8.821519, 46.4373204 ], + [ 8.8213927, 46.4372156 ], + [ 8.8212829, 46.4371219 ], + [ 8.8212222, 46.4370385 ], + [ 8.8211202, 46.4369278 ], + [ 8.8210265, 46.436828 ], + [ 8.8208947, 46.4367911 ], + [ 8.8207639, 46.4367656 ], + [ 8.8205992, 46.4367179 ], + [ 8.8204343, 46.4366647 ], + [ 8.8202701, 46.4366341 ], + [ 8.8200891, 46.4365868 ], + [ 8.8199152, 46.4365282 ], + [ 8.8197745, 46.4364633 ], + [ 8.8195448, 46.4364168 ], + [ 8.8194046, 46.4363745 ], + [ 8.8192162, 46.4363556 ], + [ 8.8190619, 46.4363642 ], + [ 8.8188826, 46.4363507 ], + [ 8.8187025, 46.4363373 ], + [ 8.8185474, 46.436312 ], + [ 8.8184724, 46.436274 ], + [ 8.8183478, 46.4362031 ], + [ 8.8182226, 46.4361436 ], + [ 8.8181149, 46.4360949 ], + [ 8.817982, 46.4360185 ], + [ 8.8178324, 46.4359594 ], + [ 8.8176363, 46.4359237 ], + [ 8.8173815, 46.4358835 ], + [ 8.8171762, 46.4358366 ], + [ 8.816964, 46.435807 ], + [ 8.8167671, 46.4357713 ], + [ 8.8165033, 46.4356975 ], + [ 8.8162965, 46.4356225 ], + [ 8.816090299999999, 46.4355419 ], + [ 8.8158507, 46.4354619 ], + [ 8.8156032, 46.4353877 ], + [ 8.8152737, 46.435287 ], + [ 8.8150257, 46.4351903 ], + [ 8.8148083, 46.4350535 ], + [ 8.8145757, 46.4349282 ], + [ 8.8142348, 46.43476 ], + [ 8.8140254, 46.4346175 ], + [ 8.8138505, 46.4345194 ], + [ 8.8136345, 46.4344051 ], + [ 8.8134089, 46.4342629 ], + [ 8.8131238, 46.4340541 ], + [ 8.8128383, 46.4338286 ], + [ 8.8123886, 46.4335721 ], + [ 8.8122305, 46.4334963 ], + [ 8.812100000000001, 46.4334818 ], + [ 8.811985, 46.4334672 ], + [ 8.8118463, 46.4334528 ], + [ 8.8117163, 46.4334554 ], + [ 8.81153, 46.4334872 ], + [ 8.8113684, 46.4335298 ], + [ 8.8112158, 46.4335721 ], + [ 8.811020899999999, 46.4335815 ], + [ 8.8108503, 46.4335904 ], + [ 8.8106478, 46.4336225 ], + [ 8.8102116, 46.4337098 ], + [ 8.8098643, 46.4337727 ], + [ 8.8095805, 46.4338064 ], + [ 8.8092485, 46.4338635 ], + [ 8.8088987, 46.4338589 ], + [ 8.8084418, 46.4338339 ], + [ 8.8082126, 46.4338101 ], + [ 8.8079418, 46.4337476 ], + [ 8.8077011, 46.4336508 ], + [ 8.8075175, 46.4335303 ], + [ 8.8052075, 46.4317422 ], + [ 8.794546799999999, 46.434133 ], + [ 8.7940584, 46.4335335 ], + [ 8.7938805, 46.4333451 ], + [ 8.793734, 46.433145 ], + [ 8.7936806, 46.4330277 ], + [ 8.7935103, 46.4328505 ], + [ 8.7933836, 46.4327288 ], + [ 8.7933483, 46.4326505 ], + [ 8.7932203, 46.4325064 ], + [ 8.793061699999999, 46.4324079 ], + [ 8.7928619, 46.4322877 ], + [ 8.7926713, 46.4322124 ], + [ 8.7924885, 46.4321201 ], + [ 8.7922728, 46.4320171 ], + [ 8.7920325, 46.4319033 ], + [ 8.7918127, 46.4316988 ], + [ 8.791564900000001, 46.431416 ], + [ 8.7912071, 46.4314172 ], + [ 8.790874, 46.4314291 ], + [ 8.7904567, 46.4313921 ], + [ 8.790138, 46.4313642 ], + [ 8.7898837, 46.4313071 ], + [ 8.7898353, 46.4313248 ], + [ 8.7896732, 46.4313449 ], + [ 8.7895526, 46.4313697 ], + [ 8.7893092, 46.4313912 ], + [ 8.7891466, 46.4313943 ], + [ 8.7889992, 46.4313858 ], + [ 8.7888449, 46.4313944 ], + [ 8.7886888, 46.4313636 ], + [ 8.7885259, 46.4313554 ], + [ 8.788453, 46.431368 ], + [ 8.7883329, 46.4314097 ], + [ 8.7882038, 46.4314516 ], + [ 8.7880194, 46.4315229 ], + [ 8.7878831, 46.4315706 ], + [ 8.7876806, 46.4316025 ], + [ 8.7874858, 46.4316175 ], + [ 8.7874221, 46.4316413 ], + [ 8.7872933, 46.4316944 ], + [ 8.7871568, 46.4317309 ], + [ 8.7870193, 46.4317616 ], + [ 8.7868493, 46.431793 ], + [ 8.7866554, 46.4318138 ], + [ 8.7865336, 46.4318217 ], + [ 8.786372, 46.4318642 ], + [ 8.7861384, 46.4319193 ], + [ 8.785978, 46.4319787 ], + [ 8.7857271, 46.4320286 ], + [ 8.7855567, 46.4320432 ], + [ 8.7853722, 46.4321142 ], + [ 8.7851609, 46.4321183 ], + [ 8.78499, 46.4321158 ], + [ 8.7847943, 46.4321252 ], + [ 8.7845343, 46.4321358 ], + [ 8.7843476, 46.4321506 ], + [ 8.7841287, 46.4321773 ], + [ 8.7838868, 46.432227 ], + [ 8.7836598, 46.4322595 ], + [ 8.7834083, 46.4322812 ], + [ 8.7831725, 46.4322855 ], + [ 8.7829128, 46.4323074 ], + [ 8.7827173, 46.4322942 ], + [ 8.7824642, 46.4322877 ], + [ 8.7822768, 46.4322744 ], + [ 8.7821089, 46.4323565 ], + [ 8.7818823, 46.4324002 ], + [ 8.7816239, 46.4324446 ], + [ 8.7813642, 46.4324664 ], + [ 8.7811131, 46.432505 ], + [ 8.7808855, 46.4325093 ], + [ 8.7806563, 46.4324854 ], + [ 8.7805768, 46.4325264 ], + [ 8.7804498, 46.432619 ], + [ 8.7802877, 46.4326389 ], + [ 8.7801313, 46.4325968 ], + [ 8.7800066, 46.4325202 ], + [ 8.7797088, 46.4326161 ], + [ 8.7793968, 46.4327573 ], + [ 8.7791248, 46.4328752 ], + [ 8.778638, 46.4331212 ], + [ 8.7782512, 46.4330326 ], + [ 8.7779178, 46.4330333 ], + [ 8.7775926, 46.4330394 ], + [ 8.7772581, 46.4330288 ], + [ 8.777031, 46.4330557 ], + [ 8.7756882, 46.4326582 ], + [ 8.7751371, 46.4325051 ], + [ 8.7747733, 46.4323597 ], + [ 8.7743956, 46.4322823 ], + [ 8.7740848, 46.4322431 ], + [ 8.7737313, 46.4321539 ], + [ 8.7732868, 46.4320382 ], + [ 8.7727264, 46.4318684 ], + [ 8.7721898, 46.4316757 ], + [ 8.7718688, 46.4315858 ], + [ 8.7713935, 46.4315045 ], + [ 8.7706815, 46.4314222 ], + [ 8.7696335, 46.4312727 ], + [ 8.7692966, 46.4311946 ], + [ 8.7690181, 46.431149 ], + [ 8.7685471, 46.4311748 ], + [ 8.7681731, 46.4311819 ], + [ 8.7678972, 46.4312039 ], + [ 8.7676444, 46.4312087 ], + [ 8.767439, 46.4311562 ], + [ 8.7672398, 46.4310584 ], + [ 8.7670319, 46.4309384 ], + [ 8.7668309, 46.4308012 ], + [ 8.7666602, 46.4306071 ], + [ 8.7665736, 46.4304565 ], + [ 8.7664239, 46.430386 ], + [ 8.7662121, 46.4303732 ], + [ 8.7660012, 46.4303939 ], + [ 8.7658471, 46.4304139 ], + [ 8.765677, 46.4304396 ], + [ 8.7655556, 46.4304644 ], + [ 8.7653527, 46.4304794 ], + [ 8.7651661, 46.4304999 ], + [ 8.7650195, 46.4304913 ], + [ 8.7647739, 46.4304565 ], + [ 8.7644952, 46.4303998 ], + [ 8.7642235, 46.4303315 ], + [ 8.7640082, 46.4302398 ], + [ 8.763801, 46.4301478 ], + [ 8.7635949, 46.4300671 ], + [ 8.7633636, 46.4299869 ], + [ 8.7631325, 46.4299124 ], + [ 8.762910699999999, 46.4298546 ], + [ 8.7626813, 46.4298193 ], + [ 8.7624766, 46.429795 ], + [ 8.7621987, 46.4297721 ], + [ 8.7619383, 46.4297657 ], + [ 8.7617756, 46.4297631 ], + [ 8.7615877, 46.4297609 ], + [ 8.7613175, 46.4297209 ], + [ 8.7610397, 46.4296979 ], + [ 8.7608133, 46.4297191 ], + [ 8.7607086, 46.4297605 ], + [ 8.7606036, 46.4297907 ], + [ 8.76041, 46.4298224 ], + [ 8.76024, 46.4298538 ], + [ 8.7601846, 46.4298831 ], + [ 8.7600331, 46.4299761 ], + [ 8.7598656, 46.4300751 ], + [ 8.7596746, 46.4301802 ], + [ 8.7594413, 46.4302521 ], + [ 8.7592145, 46.4302903 ], + [ 8.7589479, 46.4303291 ], + [ 8.7586465, 46.4303404 ], + [ 8.7584838, 46.4303378 ], + [ 8.7583353, 46.4302841 ], + [ 8.7581853, 46.4302023 ], + [ 8.7579526, 46.4300659 ], + [ 8.7576396, 46.4299703 ], + [ 8.7573847, 46.4299187 ], + [ 8.7570314, 46.4298407 ], + [ 8.7567124, 46.4297959 ], + [ 8.7562711, 46.4297421 ], + [ 8.7559754, 46.4296857 ], + [ 8.7555514, 46.4296767 ], + [ 8.7551027, 46.4296512 ], + [ 8.7547434, 46.4296242 ], + [ 8.7543533, 46.4296314 ], + [ 8.7540443, 46.4296316 ], + [ 8.7536629, 46.4296668 ], + [ 8.7533856, 46.4296664 ], + [ 8.7529119, 46.4296188 ], + [ 8.752528, 46.429581 ], + [ 8.7521751, 46.4295142 ], + [ 8.7518225, 46.4294644 ], + [ 8.7515355, 46.4293965 ], + [ 8.7512471, 46.4293117 ], + [ 8.7509828, 46.4292094 ], + [ 8.7507514, 46.4291237 ], + [ 8.7504978, 46.4290946 ], + [ 8.7502619, 46.4290932 ], + [ 8.750067, 46.4291025 ], + [ 8.749831799999999, 46.4291295 ], + [ 8.7495805, 46.4291624 ], + [ 8.749394, 46.4291828 ], + [ 8.7491339, 46.4291876 ], + [ 8.7488396, 46.4291593 ], + [ 8.7485375, 46.4291424 ], + [ 8.7481697, 46.4290984 ], + [ 8.7479078, 46.4290639 ], + [ 8.7476887, 46.4290849 ], + [ 8.7473943, 46.4290509 ], + [ 8.747061, 46.4290571 ], + [ 8.7467364, 46.4290857 ], + [ 8.7463478, 46.429155 ], + [ 8.7459764, 46.4292352 ], + [ 8.7455627, 46.4292767 ], + [ 8.7451405, 46.4293071 ], + [ 8.7447078, 46.4292701 ], + [ 8.7443561, 46.4292203 ], + [ 8.7438726, 46.4291334 ], + [ 8.7434298, 46.4290515 ], + [ 8.7430502, 46.4289233 ], + [ 8.7427461, 46.4288556 ], + [ 8.742523, 46.4287751 ], + [ 8.742269199999999, 46.4287405 ], + [ 8.7420174, 46.4287507 ], + [ 8.7417231, 46.4287225 ], + [ 8.7414715, 46.4287441 ], + [ 8.7412664, 46.4287027 ], + [ 8.7409615, 46.4286013 ], + [ 8.7406568, 46.4285111 ], + [ 8.7404842, 46.4284692 ], + [ 8.7403157, 46.4283258 ], + [ 8.7401895, 46.4282209 ], + [ 8.7399996, 46.428134299999996 ], + [ 8.7397686, 46.4280654 ], + [ 8.7394249, 46.4280097 ], + [ 8.7391062, 46.4279761 ], + [ 8.7387622, 46.4279431 ], + [ 8.7386026, 46.4277994 ], + [ 8.7384082, 46.4276283 ], + [ 8.7381739, 46.4274523 ], + [ 8.7380278, 46.4272632 ], + [ 8.7375642, 46.4277004 ], + [ 8.7373909, 46.4278333 ], + [ 8.7372561, 46.4279428 ], + [ 8.7371057, 46.4280471 ], + [ 8.7369288, 46.4280954 ], + [ 8.7367264, 46.428133 ], + [ 8.7365802, 46.4281414 ], + [ 8.7363839, 46.4281281 ], + [ 8.7361967, 46.4281204 ], + [ 8.7359851, 46.428113 ], + [ 8.7357476, 46.4280779 ], + [ 8.7355262, 46.428037 ], + [ 8.7352565, 46.4280138 ], + [ 8.7350036, 46.4280127 ], + [ 8.7348086, 46.428022 ], + [ 8.7346479, 46.4280701 ], + [ 8.734471, 46.4281185 ], + [ 8.7342624, 46.4282013 ], + [ 8.7340216, 46.4283016 ], + [ 8.7335468, 46.42844 ], + [ 8.7332725, 46.4285015 ], + [ 8.7330865, 46.4285444 ], + [ 8.7328872, 46.4286439 ], + [ 8.7325893, 46.4287339 ], + [ 8.7322999, 46.4288408 ], + [ 8.7320261, 46.4289192 ], + [ 8.7317696, 46.4290084 ], + [ 8.7314778, 46.4290477 ], + [ 8.7312022, 46.4290866 ], + [ 8.7309097, 46.4290976 ], + [ 8.7306663, 46.4291191 ], + [ 8.7304243, 46.4291687 ], + [ 8.7301345, 46.4292586 ], + [ 8.7298364, 46.4293429 ], + [ 8.7268191, 46.4296411 ], + [ 8.726153, 46.4296703 ], + [ 8.7258943, 46.4297371 ], + [ 8.7257271, 46.4298191 ], + [ 8.7255541, 46.429997 ], + [ 8.7253669, 46.4301977 ], + [ 8.7252364, 46.43042 ], + [ 8.7250961, 46.4305749 ], + [ 8.7249202, 46.4306682 ], + [ 8.7244189, 46.4307564 ], + [ 8.7244195, 46.4309875 ], + [ 8.724461699999999, 46.4312235 ], + [ 8.7245219, 46.4315325 ], + [ 8.7245746, 46.4318358 ], + [ 8.724606, 46.432027 ], + [ 8.7245356, 46.4321128 ], + [ 8.7241809, 46.4324125 ], + [ 8.7239926, 46.432602 ], + [ 8.7238121, 46.4327744 ], + [ 8.7236971, 46.4329683 ], + [ 8.7235854, 46.4332296 ], + [ 8.7233911, 46.4334756 ], + [ 8.7232542, 46.4337375 ], + [ 8.7232196, 46.4338902 ], + [ 8.7232419, 46.4340421 ], + [ 8.7232138, 46.4341609 ], + [ 8.7231352, 46.4342414 ], + [ 8.7230645, 46.4343102 ], + [ 8.722954099999999, 46.4343912 ], + [ 8.7228348, 46.4344667 ], + [ 8.7227055, 46.4345029 ], + [ 8.7225281, 46.4345343 ], + [ 8.7223581, 46.4345656 ], + [ 8.7222301, 46.4346244 ], + [ 8.7221273, 46.4347108 ], + [ 8.7220501, 46.4348193 ], + [ 8.7220215, 46.4349157 ], + [ 8.7219516, 46.4350185 ], + [ 8.7218747, 46.4351383 ], + [ 8.7217318, 46.4352198 ], + [ 8.721612499999999, 46.4352954 ], + [ 8.7214447, 46.4353886 ], + [ 8.721316999999999, 46.4354585 ], + [ 8.7211324, 46.4355296 ], + [ 8.7207932, 46.4355922 ], + [ 8.7192375, 46.4360155 ], + [ 8.7185788, 46.4358133 ], + [ 8.7185161, 46.4358765 ], + [ 8.7184292, 46.4359514 ], + [ 8.7183666, 46.4360201 ], + [ 8.7182717, 46.4361008 ], + [ 8.7180806, 46.4362058 ], + [ 8.7179043, 46.4362823 ], + [ 8.717817, 46.4363404 ], + [ 8.7177805, 46.436448 ], + [ 8.7177288, 46.4366013 ], + [ 8.7172699, 46.4369367 ], + [ 8.7170549, 46.4370646 ], + [ 8.7167913, 46.437199 ], + [ 8.7165994, 46.4373041 ], + [ 8.7165137, 46.4373959 ], + [ 8.7164048, 46.4375388 ], + [ 8.716312, 46.4376702 ], + [ 8.7162283, 46.4378127 ], + [ 8.7162106, 46.4379934 ], + [ 8.716142, 46.4381185 ], + [ 8.7159899, 46.438189 ], + [ 8.7157481, 46.4382498 ], + [ 8.7153344, 46.4382969 ], + [ 8.7151159, 46.4385489 ], + [ 8.7149997, 46.438692 ], + [ 8.7148801, 46.4387618 ], + [ 8.714761, 46.4388486 ], + [ 8.7146087, 46.4389077 ], + [ 8.7144258, 46.4390181 ], + [ 8.7142984, 46.4390994 ], + [ 8.714147, 46.4391981 ], + [ 8.7140532, 46.43929 ], + [ 8.7139419, 46.4393653 ], + [ 8.7137834, 46.4394753 ], + [ 8.7136234, 46.4395515 ], + [ 8.713416, 46.4396567 ], + [ 8.7133051, 46.4397491 ], + [ 8.7130305, 46.4397991 ], + [ 8.712814, 46.4398933 ], + [ 8.7126278, 46.4399306 ], + [ 8.7124426, 46.439979 ], + [ 8.712177, 46.4400628 ], + [ 8.7118712, 46.4401699 ], + [ 8.7115831, 46.4402992 ], + [ 8.7113434, 46.4404163 ], + [ 8.7111283, 46.4405386 ], + [ 8.7109859, 46.440637100000004 ], + [ 8.7108402, 46.440668 ], + [ 8.7106532, 46.4406713 ], + [ 8.7103996, 46.4406477 ], + [ 8.7101039, 46.4405912 ], + [ 8.7098498, 46.4405451 ], + [ 8.7095899, 46.4405611 ], + [ 8.7094697, 46.4406028 ], + [ 8.7093844, 46.4407114 ], + [ 8.7091537, 46.4408622 ], + [ 8.7089079, 46.4410302 ], + [ 8.7087667, 46.441185 ], + [ 8.7086348, 46.4413508 ], + [ 8.7085768, 46.4415493 ], + [ 8.7085342, 46.4417079 ], + [ 8.7085306, 46.4418319 ], + [ 8.7084935, 46.4419171 ], + [ 8.7083523, 46.4420719 ], + [ 8.7082269, 46.4422039 ], + [ 8.7082219, 46.442266 ], + [ 8.7082184, 46.4423957 ], + [ 8.7082235, 46.4425422 ], + [ 8.7081684, 46.4425883 ], + [ 8.7080221, 46.442591 ], + [ 8.7078348, 46.4425831 ], + [ 8.7077363, 46.4427879 ], + [ 8.7076166, 46.4430607 ], + [ 8.7075379, 46.4433496 ], + [ 8.7074985, 46.4436097 ], + [ 8.7075656, 46.4438733 ], + [ 8.7076941, 46.4440458 ], + [ 8.7077736, 46.4442077 ], + [ 8.707753199999999, 46.4443095 ], + [ 8.7073536, 46.4447172 ], + [ 8.7071119, 46.4447835 ], + [ 8.706871, 46.4448838 ], + [ 8.7066117, 46.4451365 ], + [ 8.7062085, 46.4454595 ], + [ 8.7063262, 46.4455533 ], + [ 8.706419499999999, 46.4456474 ], + [ 8.7065047, 46.4457417 ], + [ 8.7065564, 46.445831 ], + [ 8.7065445, 46.4459495 ], + [ 8.7065973, 46.44605 ], + [ 8.7067025, 46.4462341 ], + [ 8.7068375, 46.4463726 ], + [ 8.7070307, 46.4465269 ], + [ 8.7072582, 46.4467256 ], + [ 8.7073134, 46.4468939 ], + [ 8.7073603, 46.4470564 ], + [ 8.7074051, 46.4471627 ], + [ 8.707450399999999, 46.4472915 ], + [ 8.7074072, 46.4474277 ], + [ 8.7073942, 46.4475293 ], + [ 8.7073591, 46.4476652 ], + [ 8.707298399999999, 46.4477847 ], + [ 8.7071957, 46.4478768 ], + [ 8.707094, 46.4479801 ], + [ 8.7071203, 46.4480304 ], + [ 8.7072123, 46.448102 ], + [ 8.7072894, 46.4481964 ], + [ 8.7073342, 46.4483027 ], + [ 8.7073383, 46.4484098 ], + [ 8.7073427, 46.448528 ], + [ 8.7073548, 46.4486293 ], + [ 8.7073428, 46.4487422 ], + [ 8.7073388, 46.4488494 ], + [ 8.7072947, 46.4489799 ], + [ 8.7072766, 46.4491437 ], + [ 8.7072832, 46.449324 ], + [ 8.7073301, 46.4494866 ], + [ 8.7074015, 46.4496488 ], + [ 8.7073565, 46.4497455 ], + [ 8.7072936, 46.449803 ], + [ 8.7071902, 46.4498668 ], + [ 8.707128, 46.4499582 ], + [ 8.7071095, 46.450105 ], + [ 8.7070984, 46.4502575 ], + [ 8.7070067, 46.4504057 ], + [ 8.7068402, 46.4505215 ], + [ 8.7065706, 46.450718 ], + [ 8.7065969, 46.4507627 ], + [ 8.7066661, 46.4508685 ], + [ 8.7067786, 46.4510525 ], + [ 8.7068824, 46.4512142 ], + [ 8.706995, 46.451398 ], + [ 8.7070581, 46.4515604 ], + [ 8.7070543, 46.4516732 ], + [ 8.7070173, 46.4517641 ], + [ 8.7068975, 46.4518227 ], + [ 8.7067371, 46.4518876 ], + [ 8.7065221, 46.4520155 ], + [ 8.7063465, 46.4521259 ], + [ 8.7063033, 46.4522619 ], + [ 8.7063083, 46.4524084 ], + [ 8.7063145, 46.4525661 ], + [ 8.7064419, 46.4526934 ], + [ 8.7069625, 46.4531067 ], + [ 8.707241400000001, 46.4533778 ], + [ 8.7074874, 46.4536327 ], + [ 8.7076543, 46.4537423 ], + [ 8.70783, 46.4538801 ], + [ 8.7079744, 46.4540352 ], + [ 8.7080561, 46.4542592 ], + [ 8.708829399999999, 46.4546567 ], + [ 8.7088337, 46.4547694 ], + [ 8.7088786, 46.4548812 ], + [ 8.7089803, 46.4549865 ], + [ 8.7091558, 46.455113 ], + [ 8.7092986, 46.4552344 ], + [ 8.7094649, 46.4553215 ], + [ 8.7095241, 46.4553825 ], + [ 8.7096516, 46.4555098 ], + [ 8.7097787, 46.455654 ], + [ 8.7099149, 46.4558094 ], + [ 8.7100512, 46.4559647 ], + [ 8.7101464, 46.4561039 ], + [ 8.7102935, 46.456338 ], + [ 8.7103665, 46.4565395 ], + [ 8.7105316, 46.4568128 ], + [ 8.710685999999999, 46.4570129 ], + [ 8.710822499999999, 46.4571795 ], + [ 8.7109729, 46.4572782 ], + [ 8.7110993, 46.4573943 ], + [ 8.7112415, 46.4574876 ], + [ 8.7113833, 46.4575695 ], + [ 8.7115708, 46.4577916 ], + [ 8.7127117, 46.4593209 ], + [ 8.712808, 46.4592628 ], + [ 8.7129346, 46.4591815 ], + [ 8.7131843, 46.4591093 ], + [ 8.713419, 46.4590543 ], + [ 8.7136209, 46.4590224 ], + [ 8.7139373, 46.4589827 ], + [ 8.7142131, 46.4589495 ], + [ 8.7146842, 46.4589128 ], + [ 8.7154276, 46.4587638 ], + [ 8.7155103, 46.4587848 ], + [ 8.7155852, 46.4588229 ], + [ 8.7158238, 46.4588974 ], + [ 8.7160531, 46.458927 ], + [ 8.7162911, 46.4589792 ], + [ 8.7165126, 46.4590201 ], + [ 8.7166367, 46.4590742 ], + [ 8.7168089, 46.4590937 ], + [ 8.7170305, 46.4591402 ], + [ 8.7173166, 46.4591632 ], + [ 8.7174309, 46.4591781 ], + [ 8.7175542, 46.4591983 ], + [ 8.7176927, 46.459207 ], + [ 8.7177823, 46.4592111 ], + [ 8.7179439, 46.459163 ], + [ 8.7180887, 46.459126499999996 ], + [ 8.7182522, 46.4591235 ], + [ 8.7184155, 46.4591487 ], + [ 8.7185063, 46.4591696 ], + [ 8.7186139, 46.4592127 ], + [ 8.7188037, 46.4592881 ], + [ 8.7189776, 46.459347 ], + [ 8.7191912, 46.4593994 ], + [ 8.7195571, 46.4591842 ], + [ 8.719729300000001, 46.4592035 ], + [ 8.7199085, 46.4592116 ], + [ 8.7201859, 46.4592121 ], + [ 8.7204196, 46.4591514 ], + [ 8.7205816, 46.4591202 ], + [ 8.720703199999999, 46.4591011 ], + [ 8.7208483, 46.4590758 ], + [ 8.721075, 46.4590266 ], + [ 8.7212683, 46.4589779 ], + [ 8.7214203, 46.4589018 ], + [ 8.7215789, 46.4587974 ], + [ 8.7217055, 46.4586824 ], + [ 8.7218079, 46.4586073 ], + [ 8.7219008, 46.4584759 ], + [ 8.7220918, 46.4583652 ], + [ 8.72227, 46.4583281 ], + [ 8.7224406, 46.4583194 ], + [ 8.7226197, 46.4583217 ], + [ 8.722782, 46.4583018 ], + [ 8.7230171, 46.4582693 ], + [ 8.7232298, 46.4582823 ], + [ 8.7234171, 46.4582901 ], + [ 8.7236379, 46.458303 ], + [ 8.7238193, 46.4583673 ], + [ 8.7239921, 46.4584149 ], + [ 8.7241573, 46.4584851 ], + [ 8.7243232, 46.4585497 ], + [ 8.7244873, 46.4585749 ], + [ 8.7246522, 46.4586282 ], + [ 8.7248255, 46.4586982 ], + [ 8.7250076, 46.4587625 ], + [ 8.7250995, 46.4588286 ], + [ 8.7252098, 46.4589504 ], + [ 8.7253381, 46.4591116 ], + [ 8.7254319, 46.4592226 ], + [ 8.7255678, 46.4593611 ], + [ 8.7257589, 46.459459 ], + [ 8.7259237, 46.4595124 ], + [ 8.726128899999999, 46.4595537 ], + [ 8.7261959, 46.4595976 ], + [ 8.7262636, 46.4596753 ], + [ 8.7263891, 46.4597519 ], + [ 8.7265068, 46.4598398 ], + [ 8.7266233, 46.4599166 ], + [ 8.726701, 46.4600336 ], + [ 8.7268373, 46.4601889 ], + [ 8.7269735, 46.4603386 ], + [ 8.7270584, 46.4604216 ], + [ 8.7271633, 46.4606227 ], + [ 8.7272604, 46.4608069 ], + [ 8.7274557, 46.4610119 ], + [ 8.7275735, 46.4611056 ], + [ 8.7276966, 46.4611483 ], + [ 8.7279271, 46.4611949 ], + [ 8.7282058, 46.4612461 ], + [ 8.7284921, 46.4612747 ], + [ 8.7287765, 46.4612581 ], + [ 8.7289961, 46.461254 ], + [ 8.7291905, 46.4612167 ], + [ 8.7293836, 46.4611567 ], + [ 8.7295363, 46.4611145 ], + [ 8.7296815, 46.461061 ], + [ 8.7298244, 46.4609795 ], + [ 8.7299672, 46.4608584 ], + [ 8.7300998, 46.4607206 ], + [ 8.7302499, 46.4605996 ], + [ 8.7303544, 46.460547 ], + [ 8.7304997, 46.4605329 ], + [ 8.7306961, 46.4605462 ], + [ 8.7308672, 46.4605543 ], + [ 8.7310125, 46.4605066 ], + [ 8.7312518, 46.4603724 ], + [ 8.7314348, 46.4602676 ], + [ 8.7316177, 46.4603601 ], + [ 8.7317757, 46.460436 ], + [ 8.7318999, 46.4604901 ], + [ 8.732104, 46.4605202 ], + [ 8.7322758, 46.4605227 ], + [ 8.7324525, 46.4604631 ], + [ 8.7325945, 46.4603421 ], + [ 8.7327284, 46.4602268 ], + [ 8.7328881, 46.4601336 ], + [ 8.7331037, 46.4600283 ], + [ 8.7333142, 46.4599848 ], + [ 8.7335337, 46.4599752 ], + [ 8.7337526, 46.459943 ], + [ 8.734005, 46.4599495 ], + [ 8.734234, 46.4599622 ], + [ 8.7344726, 46.4600423 ], + [ 8.734678, 46.4600893 ], + [ 8.7348096, 46.4601151 ], + [ 8.7349882, 46.4600948 ], + [ 8.7352071, 46.4600626 ], + [ 8.7353837, 46.4599974 ], + [ 8.7355923, 46.4599089 ], + [ 8.7357673, 46.4598098 ], + [ 8.7359841, 46.4597213 ], + [ 8.7362587, 46.4596711 ], + [ 8.7364615, 46.4596448 ], + [ 8.7366651, 46.4596524 ], + [ 8.7369346, 46.4596586 ], + [ 8.737161799999999, 46.4596318 ], + [ 8.7374389, 46.4596493 ], + [ 8.7376902, 46.4596107 ], + [ 8.7378427, 46.4595572 ], + [ 8.7379693, 46.459442 ], + [ 8.7381203, 46.4593603 ], + [ 8.7383453, 46.4592773 ], + [ 8.7385134, 46.4591953 ], + [ 8.7386674, 46.4591699 ], + [ 8.7388611, 46.459138 ], + [ 8.7391283, 46.4590824 ], + [ 8.7394588, 46.4589861 ], + [ 8.7398931, 46.4588427 ], + [ 8.7403666, 46.4586705 ], + [ 8.7404573, 46.4586857 ], + [ 8.7405721, 46.458723 ], + [ 8.7407338, 46.4586805 ], + [ 8.740920299999999, 46.4586546 ], + [ 8.741085, 46.4587022 ], + [ 8.7413413, 46.4588046 ], + [ 8.7415791, 46.4588453 ], + [ 8.7418979, 46.4588733 ], + [ 8.742225, 46.4589066 ], + [ 8.7425034, 46.4589466 ], + [ 8.7428469, 46.4589852 ], + [ 8.7432324, 46.4590458 ], + [ 8.7435102, 46.4590631 ], + [ 8.743837899999999, 46.4591191 ], + [ 8.7440922, 46.4591707 ], + [ 8.7443902, 46.4592835 ], + [ 8.7448237, 46.4595461 ], + [ 8.7450803, 46.4596597 ], + [ 8.7452452, 46.459713 ], + [ 8.7454596, 46.4597654 ], + [ 8.7456894, 46.4598119 ], + [ 8.745944, 46.4598748 ], + [ 8.7461347, 46.4599558 ], + [ 8.7463081, 46.4600258 ], + [ 8.7464595, 46.4601302 ], + [ 8.7466171, 46.4602231 ], + [ 8.7467179, 46.4602833 ], + [ 8.7469301, 46.460313 ], + [ 8.7471186, 46.4603321 ], + [ 8.7473319, 46.4603732 ], + [ 8.7475103, 46.4603474 ], + [ 8.7476629, 46.4602995 ], + [ 8.7478722, 46.4602392 ], + [ 8.7481156, 46.4602064 ], + [ 8.748349, 46.4601344 ], + [ 8.7486409, 46.4600952 ], + [ 8.7489596, 46.4601174 ], + [ 8.7491798, 46.4601359 ], + [ 8.7493617, 46.460189 ], + [ 8.7495351, 46.4602589 ], + [ 8.7497243, 46.4603119 ], + [ 8.7498722, 46.4603373 ], + [ 8.7500187, 46.4603401 ], + [ 8.7501561, 46.4602982 ], + [ 8.750331599999999, 46.4602216 ], + [ 8.7505426, 46.4602008 ], + [ 8.7508123, 46.4602126 ], + [ 8.7510072, 46.4601977 ], + [ 8.7512849, 46.4602095 ], + [ 8.7515714, 46.4602436 ], + [ 8.7519074, 46.4603105 ], + [ 8.7522043, 46.4604065 ], + [ 8.7524513, 46.4604583 ], + [ 8.7527239, 46.4605603 ], + [ 8.7529641, 46.4606686 ], + [ 8.7532201, 46.4607539 ], + [ 8.7535111, 46.4609121 ], + [ 8.7537104, 46.4610099 ], + [ 8.7539357, 46.461141 ], + [ 8.7541842, 46.4612546 ], + [ 8.7544687, 46.461441 ], + [ 8.7548109, 46.4616601 ], + [ 8.7548338, 46.4618344 ], + [ 8.7548395, 46.4619696 ], + [ 8.7548282, 46.4621051 ], + [ 8.7548655, 46.4622341 ], + [ 8.7549286, 46.4623851 ], + [ 8.7550404, 46.4625352 ], + [ 8.7551501, 46.4626291 ], + [ 8.7552686, 46.4627509 ], + [ 8.7554274, 46.462855 ], + [ 8.7557182, 46.4630018 ], + [ 8.7560145, 46.4630751 ], + [ 8.7562123, 46.4631448 ], + [ 8.7564836, 46.4631905 ], + [ 8.7566875, 46.4632092 ], + [ 8.7569552, 46.463176 ], + [ 8.7571666, 46.4631664 ], + [ 8.757402, 46.4631451 ], + [ 8.7576128, 46.463113 ], + [ 8.7577913, 46.4630928 ], + [ 8.7579602, 46.4630444 ], + [ 8.7581373, 46.4629961 ], + [ 8.7582823, 46.4629369 ], + [ 8.7584676, 46.462894 ], + [ 8.7586359, 46.4628233 ], + [ 8.758829, 46.4627633 ], + [ 8.7589905, 46.4627151 ], + [ 8.7591348, 46.4626561 ], + [ 8.7593279, 46.4626017 ], + [ 8.7595465, 46.4625581 ], + [ 8.7597886, 46.4625085 ], + [ 8.760016, 46.4624873 ], + [ 8.7602822, 46.462426 ], + [ 8.760525, 46.4623707 ], + [ 8.7607258, 46.4622994 ], + [ 8.7609493, 46.462188 ], + [ 8.7611641, 46.4620543 ], + [ 8.7613932, 46.4618696 ], + [ 8.7617172, 46.4616098 ], + [ 8.7623215, 46.4612321 ], + [ 8.7625303, 46.4611494 ], + [ 8.7626583, 46.4610961 ], + [ 8.762877, 46.4610526 ], + [ 8.7631436, 46.4610081 ], + [ 8.7633708, 46.4609813 ], + [ 8.7636713, 46.4609588 ], + [ 8.7639146, 46.460926 ], + [ 8.7641749, 46.4609212 ], + [ 8.7644426, 46.460888 ], + [ 8.7646291, 46.4608619 ], + [ 8.7649212, 46.4608282 ], + [ 8.7651637, 46.4607955 ], + [ 8.7654966, 46.4607667 ], + [ 8.7657334, 46.4607679 ], + [ 8.7660024, 46.4607854 ], + [ 8.7661906, 46.4607988 ], + [ 8.7664037, 46.4608286 ], + [ 8.7665847, 46.460876 ], + [ 8.766733200000001, 46.4609239 ], + [ 8.7668902, 46.4609885 ], + [ 8.76704, 46.4610591 ], + [ 8.7701987, 46.4626796 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "JBG0009", + "country" : "CHE", + "name" : [ + { + "text" : "Eidgenössisches Jagdbanngebiet Campo Tencia", + "lang" : "de-CH" + }, + { + "text" : "District franc fédéral Campo Tencia", + "lang" : "fr-CH" + }, + { + "text" : "Bandita federale di caccia Campo Tencia", + "lang" : "it-CH" + }, + { + "text" : "Federal Game Reserve Campo Tencia", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.174521, 46.6971305 ], + [ 8.0375999, 46.7193508 ], + [ 7.9839237999999995, 46.6934816 ], + [ 7.9338432999999995, 46.6934949 ], + [ 7.9161994, 46.7134669 ], + [ 7.9266569, 46.7545652 ], + [ 7.9581368999999995, 46.7564505 ], + [ 8.0148244, 46.7876733 ], + [ 8.0411999, 46.7876724 ], + [ 8.1973024, 46.7535102 ], + [ 8.2032868, 46.7520268 ], + [ 8.2088822, 46.7499466 ], + [ 8.2139637, 46.7473163 ], + [ 8.2184176, 46.7441946 ], + [ 8.2221445, 46.7406514 ], + [ 8.2250612, 46.7367658 ], + [ 8.2271027, 46.7326247 ], + [ 8.2282236, 46.7283207 ], + [ 8.2283991, 46.7239499 ], + [ 8.2276255, 46.7196099 ], + [ 8.2259203, 46.7153976 ], + [ 8.2233217, 46.7114071 ], + [ 8.219888, 46.7077274 ], + [ 8.2156959, 46.7044407 ], + [ 8.2108391, 46.7016203 ], + [ 8.2054261, 46.699329 ], + [ 8.1995775, 46.6976181 ], + [ 8.193424, 46.6965256 ], + [ 8.1871026, 46.6960759 ], + [ 8.1807545, 46.696279 ], + [ 8.1745211, 46.6971305 ], + [ 8.174521, 46.6971305 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 120, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "CTR0011", + "country" : "CHE", + "name" : [ + { + "text" : "CTR MEIRINGEN", + "lang" : "de-CH" + }, + { + "text" : "CTR MEIRINGEN", + "lang" : "fr-CH" + }, + { + "text" : "CTR MEIRINGEN", + "lang" : "it-CH" + }, + { + "text" : "CTR MEIRINGEN", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only permitted from an altitude of 120 m above ground with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Skyguide Special Flight Office", + "lang" : "de-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "it-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "en-GB" + } + ], + "siteURL" : "https://skyguide.ch/services/special-flights", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.55834, 47.4219414 ], + [ 8.5583316, 47.4218003 ], + [ 8.5583123, 47.4216596 ], + [ 8.5582822, 47.4215199 ], + [ 8.5582413, 47.4213813 ], + [ 8.5581899, 47.4212445 ], + [ 8.5581279, 47.4211096 ], + [ 8.5580557, 47.4209771 ], + [ 8.5579733, 47.4208474 ], + [ 8.557881, 47.4207208 ], + [ 8.5577791, 47.4205976 ], + [ 8.5576678, 47.4204782 ], + [ 8.5575475, 47.420363 ], + [ 8.5574184, 47.4202521 ], + [ 8.557281, 47.420146 ], + [ 8.5571356, 47.420045 ], + [ 8.5569826, 47.4199492 ], + [ 8.5568224, 47.419859 ], + [ 8.5566555, 47.4197746 ], + [ 8.5564823, 47.4196963 ], + [ 8.5563033, 47.4196242 ], + [ 8.556119, 47.4195585 ], + [ 8.5559299, 47.4194995 ], + [ 8.5557365, 47.4194473 ], + [ 8.5555393, 47.4194021 ], + [ 8.555339, 47.4193639 ], + [ 8.5551359, 47.4193329 ], + [ 8.5549307, 47.4193091 ], + [ 8.554724, 47.4192927 ], + [ 8.5545163, 47.4192836 ], + [ 8.5543082, 47.4192819 ], + [ 8.5541002, 47.4192876 ], + [ 8.553893, 47.4193007 ], + [ 8.553687, 47.4193211 ], + [ 8.5534829, 47.4193488 ], + [ 8.5532813, 47.4193838 ], + [ 8.5530826, 47.4194258 ], + [ 8.5528874, 47.4194748 ], + [ 8.5526962, 47.4195307 ], + [ 8.5525097, 47.4195934 ], + [ 8.5523282, 47.4196625 ], + [ 8.5521523, 47.419738 ], + [ 8.5519824, 47.4198197 ], + [ 8.5518191, 47.4199073 ], + [ 8.5516628, 47.4200005 ], + [ 8.5515139, 47.4200992 ], + [ 8.5513728, 47.420203 ], + [ 8.5512398, 47.4203118 ], + [ 8.5511155, 47.420425 ], + [ 8.551, 47.4205426 ], + [ 8.5508938, 47.4206641 ], + [ 8.5507971, 47.4207891 ], + [ 8.5507102, 47.4209175 ], + [ 8.5506333, 47.4210488 ], + [ 8.5505666, 47.4211826 ], + [ 8.5505103, 47.4213186 ], + [ 8.5504646, 47.4214564 ], + [ 8.5504295, 47.4215956 ], + [ 8.5504053, 47.4217359 ], + [ 8.5503919, 47.4218769 ], + [ 8.5503894, 47.4220182 ], + [ 8.5503978, 47.4221593 ], + [ 8.5504171, 47.4223 ], + [ 8.5504472, 47.4224397 ], + [ 8.550488, 47.4225783 ], + [ 8.5505394, 47.4227151 ], + [ 8.5506014, 47.42285 ], + [ 8.5506736, 47.4229825 ], + [ 8.550756, 47.4231122 ], + [ 8.5508483, 47.4232388 ], + [ 8.550950199999999, 47.423362 ], + [ 8.5510614, 47.4234814 ], + [ 8.5511818, 47.4235967 ], + [ 8.5513108, 47.4237075 ], + [ 8.5514482, 47.4238136 ], + [ 8.5515936, 47.4239147 ], + [ 8.5517466, 47.4240105 ], + [ 8.5519068, 47.4241007 ], + [ 8.5520737, 47.4241851 ], + [ 8.5522469, 47.4242634 ], + [ 8.5524259, 47.4243355 ], + [ 8.5526103, 47.4244012 ], + [ 8.5527994, 47.4244602 ], + [ 8.5529928, 47.4245124 ], + [ 8.55319, 47.4245576 ], + [ 8.5533904, 47.4245958 ], + [ 8.5535934, 47.4246268 ], + [ 8.5537986, 47.4246506 ], + [ 8.5540054, 47.4246671 ], + [ 8.5542131, 47.4246761 ], + [ 8.5544212, 47.4246778 ], + [ 8.5546292, 47.4246721 ], + [ 8.5548365, 47.424659 ], + [ 8.5550424, 47.4246386 ], + [ 8.5552466, 47.4246109 ], + [ 8.5554483, 47.424576 ], + [ 8.555647, 47.4245339 ], + [ 8.5558422, 47.4244849 ], + [ 8.5560333, 47.424429 ], + [ 8.5562199, 47.4243663 ], + [ 8.5564014, 47.4242972 ], + [ 8.5565773, 47.4242217 ], + [ 8.5567472, 47.42414 ], + [ 8.5569105, 47.4240524 ], + [ 8.5570668, 47.4239591 ], + [ 8.5572157, 47.4238605 ], + [ 8.5573569, 47.4237566 ], + [ 8.557489799999999, 47.4236479 ], + [ 8.5576141, 47.423534599999996 ], + [ 8.5577296, 47.4234171 ], + [ 8.5578358, 47.4232956 ], + [ 8.5579325, 47.4231705 ], + [ 8.5580194, 47.4230421 ], + [ 8.5580963, 47.4229109 ], + [ 8.558163, 47.422776999999996 ], + [ 8.5582192, 47.422641 ], + [ 8.5582649, 47.4225032 ], + [ 8.5583, 47.422364 ], + [ 8.5583242, 47.4222237 ], + [ 8.5583375, 47.4220827 ], + [ 8.55834, 47.4219414 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0108", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Seebach", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Seebach", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Seebach", + "lang" : "it-CH" + }, + { + "text" : "Substation Seebach", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.9391397, 47.4184041 ], + [ 7.9392162, 47.4183789 ], + [ 7.9393679, 47.4183243 ], + [ 7.9395314, 47.418325 ], + [ 7.9397058, 47.4183993 ], + [ 7.9399309, 47.4184634 ], + [ 7.9402032, 47.4186502 ], + [ 7.9403058, 47.4187851 ], + [ 7.9404918, 47.4189202 ], + [ 7.9409299, 47.4190401 ], + [ 7.9411237, 47.4191679 ], + [ 7.9421418, 47.4193563 ], + [ 7.9421645, 47.4191428 ], + [ 7.9411045, 47.4190112 ], + [ 7.9407961, 47.418948 ], + [ 7.9405052, 47.4188329 ], + [ 7.9403323, 47.4186019 ], + [ 7.9401903, 47.4184619 ], + [ 7.940043, 47.4184605 ], + [ 7.9395539, 47.4182837 ], + [ 7.939419, 47.4181936 ], + [ 7.9391397, 47.4184041 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns168", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Schafmatt", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Schafmatt", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Schafmatt", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Schafmatt", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8271352, 46.408591 ], + [ 7.827013, 46.4086612 ], + [ 7.8268051, 46.4087942 ], + [ 7.8266214, 46.4089098 ], + [ 7.8263939, 46.408919 ], + [ 7.8262079, 46.4089388 ], + [ 7.8261268, 46.4089627 ], + [ 7.8259591, 46.4090498 ], + [ 7.825549, 46.4092085 ], + [ 7.8251694, 46.409316 ], + [ 7.8250566, 46.4093459 ], + [ 7.8249519, 46.4093644 ], + [ 7.8248068, 46.409423 ], + [ 7.8246951, 46.4094926 ], + [ 7.8245836, 46.4095788 ], + [ 7.8244639, 46.4096598 ], + [ 7.8243531, 46.4097404 ], + [ 7.824201, 46.4098388 ], + [ 7.8239998, 46.4098926 ], + [ 7.8238303, 46.4099516 ], + [ 7.8235724, 46.4100346 ], + [ 7.8233702, 46.4100603 ], + [ 7.8233165, 46.4101739 ], + [ 7.8232446, 46.4102315 ], + [ 7.8231642, 46.410244 ], + [ 7.8230422, 46.4102402 ], + [ 7.8228799, 46.4102766 ], + [ 7.8227529, 46.4103632 ], + [ 7.8226271, 46.4105005 ], + [ 7.8225583, 46.4106652 ], + [ 7.822465, 46.4108022 ], + [ 7.8222002, 46.4109416 ], + [ 7.8221219, 46.4110219 ], + [ 7.8220672, 46.4111016 ], + [ 7.8219494, 46.4112389 ], + [ 7.8218634, 46.4113757 ], + [ 7.8218096, 46.4114612 ], + [ 7.8217621, 46.4115297 ], + [ 7.8216919, 46.4116098 ], + [ 7.8216047, 46.41169 ], + [ 7.8215277, 46.4118324 ], + [ 7.8214649, 46.4119179 ], + [ 7.8214091, 46.4119639 ], + [ 7.8212731, 46.4120394 ], + [ 7.8211949, 46.4121309 ], + [ 7.8211238, 46.4121998 ], + [ 7.8210436, 46.4122404 ], + [ 7.8209473, 46.412304 ], + [ 7.8208356, 46.4123621 ], + [ 7.8207646, 46.4124422 ], + [ 7.8206935, 46.4125054 ], + [ 7.8206541, 46.4125624 ], + [ 7.8205504999999995, 46.4126317 ], + [ 7.8204541, 46.4126784 ], + [ 7.8203341, 46.4127197 ], + [ 7.820197, 46.412767 ], + [ 7.8200366, 46.4128371 ], + [ 7.8198031, 46.4129253 ], + [ 7.8196518, 46.4130349 ], + [ 7.8194669999999995, 46.4131055 ], + [ 7.8193402, 46.4132202 ], + [ 7.819253, 46.4133175 ], + [ 7.8191576, 46.4133867 ], + [ 7.8190468, 46.4134731 ], + [ 7.8189119, 46.4135879 ], + [ 7.8186256, 46.4138067 ], + [ 7.8184897, 46.4138935 ], + [ 7.8184197, 46.4139962 ], + [ 7.8183488, 46.4140875 ], + [ 7.8182696, 46.4141622 ], + [ 7.8181895, 46.4142085 ], + [ 7.8180453, 46.4142841 ], + [ 7.8179508, 46.4143759 ], + [ 7.8178972, 46.4144895 ], + [ 7.8178282, 46.4146317 ], + [ 7.8177492, 46.4147232 ], + [ 7.8176499, 46.4149391 ], + [ 7.8175728, 46.4150757 ], + [ 7.8174796, 46.4152239 ], + [ 7.8173711, 46.4154062 ], + [ 7.8172281, 46.4155326 ], + [ 7.817094, 46.4156587 ], + [ 7.8169986, 46.4157279 ], + [ 7.8169124, 46.4158478 ], + [ 7.8168201, 46.4160241 ], + [ 7.8167349, 46.4161608 ], + [ 7.8166092, 46.4163208 ], + [ 7.8164966, 46.4163789 ], + [ 7.8163514, 46.4164206 ], + [ 7.8162313999999995, 46.4164733 ], + [ 7.8160781, 46.4165207 ], + [ 7.8160152, 46.4165838 ], + [ 7.8159127, 46.4166926 ], + [ 7.8158022, 46.4168298 ], + [ 7.8156704, 46.4170462 ], + [ 7.8155608, 46.4171834 ], + [ 7.8154665, 46.4172977 ], + [ 7.8153304, 46.4173674 ], + [ 7.8152096, 46.4174201 ], + [ 7.8150979, 46.4174839 ], + [ 7.8149629, 46.4175931 ], + [ 7.8148432, 46.4176795 ], + [ 7.8146918, 46.4177722 ], + [ 7.814437, 46.4179566 ], + [ 7.8146841, 46.4180771 ], + [ 7.8149149, 46.4181696 ], + [ 7.8151131, 46.4182681 ], + [ 7.8153114, 46.418378 ], + [ 7.8155585, 46.4184927 ], + [ 7.8157975, 46.4185963 ], + [ 7.8159711, 46.418667 ], + [ 7.8160964, 46.4187949 ], + [ 7.816189, 46.4189007 ], + [ 7.8163385, 46.419 ], + [ 7.8163883, 46.4190332 ], + [ 7.8164951, 46.4190711 ], + [ 7.8165845, 46.4190753 ], + [ 7.8167144, 46.4190507 ], + [ 7.8168515, 46.4190092 ], + [ 7.8169805, 46.4189733 ], + [ 7.8172011, 46.4190038 ], + [ 7.8173576, 46.4190692 ], + [ 7.8175214, 46.4191174 ], + [ 7.817686, 46.419177 ], + [ 7.8180073, 46.4193131 ], + [ 7.8181965, 46.419395 ], + [ 7.8183956, 46.4195048 ], + [ 7.8185524, 46.4196039 ], + [ 7.8186693, 46.4196869 ], + [ 7.8188176, 46.4197467 ], + [ 7.8189977, 46.4198004 ], + [ 7.8192376, 46.4199265 ], + [ 7.8194533, 46.4200756 ], + [ 7.8197023, 46.4202298 ], + [ 7.8199006, 46.420334 ], + [ 7.8201304, 46.4204039 ], + [ 7.820286, 46.4204467 ], + [ 7.8203755, 46.4204565 ], + [ 7.8205878, 46.4204703 ], + [ 7.8208326, 46.4204891 ], + [ 7.8211417, 46.4205069 ], + [ 7.8213052, 46.4205214 ], + [ 7.8214761, 46.4205414 ], + [ 7.8216479, 46.4205725 ], + [ 7.8218368, 46.4206149 ], + [ 7.821911, 46.4206532 ], + [ 7.8220829, 46.4207014 ], + [ 7.8222556999999995, 46.4207552 ], + [ 7.8224763, 46.4207913 ], + [ 7.8226318, 46.4208228 ], + [ 7.8227709, 46.4208433 ], + [ 7.8229345, 46.420869 ], + [ 7.8231643, 46.4209388 ], + [ 7.8233442, 46.4209699 ], + [ 7.8235669, 46.421079399999996 ], + [ 7.8237805, 46.4211607 ], + [ 7.8240856, 46.4213028 ], + [ 7.8245633, 46.4214874 ], + [ 7.8247513, 46.4215184 ], + [ 7.8249149, 46.4215441 ], + [ 7.825039, 46.4216155 ], + [ 7.8251224, 46.4216876 ], + [ 7.8252222, 46.4217651 ], + [ 7.8253879, 46.4218642 ], + [ 7.8254967, 46.4219585 ], + [ 7.8255559, 46.4220478 ], + [ 7.8256239999999995, 46.4221371 ], + [ 7.8256263, 46.4222273 ], + [ 7.8256458, 46.42234 ], + [ 7.8256723, 46.4224128 ], + [ 7.8257322, 46.4224967 ], + [ 7.825832, 46.4225797 ], + [ 7.8259479, 46.4226344 ], + [ 7.8260385, 46.4226951 ], + [ 7.8261472, 46.4227725 ], + [ 7.8262643, 46.4228835 ], + [ 7.8264321, 46.4230502 ], + [ 7.8265563, 46.423133 ], + [ 7.8267211, 46.4232208 ], + [ 7.8268705, 46.4232975 ], + [ 7.8271736, 46.4233888 ], + [ 7.8274448, 46.423458 ], + [ 7.8277885, 46.423543 ], + [ 7.8281493, 46.4236278 ], + [ 7.8284889, 46.4238314 ], + [ 7.8285888, 46.4239314 ], + [ 7.8286894, 46.4240089 ], + [ 7.8288775, 46.4240511 ], + [ 7.8290747, 46.4241102 ], + [ 7.8292627, 46.4241468 ], + [ 7.8294264, 46.4241781 ], + [ 7.8295667, 46.4242437 ], + [ 7.8296826, 46.424304 ], + [ 7.8298485, 46.4244256 ], + [ 7.8299818, 46.4245308 ], + [ 7.8301221, 46.4245964 ], + [ 7.8303682, 46.4246716 ], + [ 7.8306211, 46.4246846 ], + [ 7.830866, 46.4247091 ], + [ 7.831118, 46.4247109 ], + [ 7.8313976, 46.4248025 ], + [ 7.831537, 46.4248567 ], + [ 7.8317942, 46.4250165 ], + [ 7.8319601, 46.4251268 ], + [ 7.8322652, 46.4252688 ], + [ 7.8324949, 46.425333 ], + [ 7.83274, 46.4253744 ], + [ 7.832864, 46.4254346 ], + [ 7.8329982, 46.4255567 ], + [ 7.8330908, 46.4256625 ], + [ 7.8332729, 46.425767 ], + [ 7.8334529, 46.425815 ], + [ 7.8337801, 46.425855 ], + [ 7.8340333, 46.4259019 ], + [ 7.8342293, 46.4259159 ], + [ 7.8343605, 46.425959 ], + [ 7.8344195, 46.4260258 ], + [ 7.8344869, 46.4261207 ], + [ 7.8345804999999995, 46.4262434 ], + [ 7.8346803, 46.4263322 ], + [ 7.8347809, 46.4264153 ], + [ 7.8348959, 46.4264642 ], + [ 7.8350179, 46.426468 ], + [ 7.8351641, 46.4264432 ], + [ 7.8353407, 46.4263615 ], + [ 7.8355093, 46.4262912 ], + [ 7.8356312, 46.4262837 ], + [ 7.8357462, 46.4263214 ], + [ 7.8358785, 46.4264096 ], + [ 7.8360118, 46.4265092 ], + [ 7.8361286, 46.426592 ], + [ 7.8362365, 46.4266637 ], + [ 7.836327, 46.4266962 ], + [ 7.836507, 46.4267498 ], + [ 7.8367529, 46.4267912 ], + [ 7.8369583, 46.4268614 ], + [ 7.8372045, 46.4269479 ], + [ 7.8375094, 46.4270673 ], + [ 7.8378632, 46.4271973 ], + [ 7.8383483, 46.4273705 ], + [ 7.8385698999999995, 46.4274348 ], + [ 7.8387173, 46.4274663 ], + [ 7.8388789, 46.4274356 ], + [ 7.8390811, 46.4273987 ], + [ 7.8392832, 46.4273503 ], + [ 7.8395178, 46.4273072 ], + [ 7.8398491, 46.4272401 ], + [ 7.8401659, 46.4272069 ], + [ 7.8405948, 46.427155 ], + [ 7.840920000000001, 46.4271501 ], + [ 7.8410115, 46.4272051 ], + [ 7.8411436, 46.4272595 ], + [ 7.8412343, 46.4273202 ], + [ 7.8413176, 46.427364 ], + [ 7.8414152999999995, 46.4273908 ], + [ 7.8415129, 46.4273836 ], + [ 7.8416174, 46.4273424 ], + [ 7.8417636, 46.4273176 ], + [ 7.8418775, 46.4273272 ], + [ 7.8419681, 46.4273708 ], + [ 7.8420361, 46.4274489 ], + [ 7.8421187, 46.4275096 ], + [ 7.8422103, 46.427576 ], + [ 7.8424176, 46.4276912 ], + [ 7.8425998, 46.427807 ], + [ 7.84284, 46.4279669 ], + [ 7.8430059, 46.4280716 ], + [ 7.8430903999999995, 46.4281774 ], + [ 7.8431169, 46.4282392 ], + [ 7.8431282, 46.4283406 ], + [ 7.843164, 46.4284529 ], + [ 7.8432231, 46.4285254 ], + [ 7.8434144, 46.428669 ], + [ 7.84363, 46.4287956 ], + [ 7.8440338, 46.4289755 ], + [ 7.8442381, 46.4290062 ], + [ 7.8443601, 46.4290044 ], + [ 7.8445135, 46.4289681 ], + [ 7.8446921, 46.4289371 ], + [ 7.8447735, 46.4289471 ], + [ 7.8448549, 46.4289572 ], + [ 7.8449942, 46.4289889 ], + [ 7.8450672, 46.4289708 ], + [ 7.8451719, 46.428941 ], + [ 7.8452763999999995, 46.4288885 ], + [ 7.8454054, 46.4288584 ], + [ 7.8455273, 46.4288451 ], + [ 7.8456909, 46.4288765 ], + [ 7.8459126, 46.4289351 ], + [ 7.8460754, 46.4289664 ], + [ 7.8461657, 46.4289764 ], + [ 7.8462551, 46.4289693 ], + [ 7.8464005, 46.4289445 ], + [ 7.8465720999999995, 46.4289588 ], + [ 7.8469636, 46.4290091 ], + [ 7.8473813, 46.4290872 ], + [ 7.8477992, 46.4291881 ], + [ 7.8481196, 46.4293072 ], + [ 7.8483412, 46.4293602 ], + [ 7.8484977, 46.4294142 ], + [ 7.8486464, 46.4295135 ], + [ 7.8487655, 46.4296696 ], + [ 7.8488836, 46.4298089 ], + [ 7.8490911, 46.4299355 ], + [ 7.8494197, 46.4300488 ], + [ 7.8498062, 46.4301953 ], + [ 7.8500289, 46.4302991 ], + [ 7.8502076, 46.430268 ], + [ 7.8504831, 46.4302524 ], + [ 7.8506956, 46.4302886 ], + [ 7.8508613, 46.4303707 ], + [ 7.8510679, 46.430486 ], + [ 7.8513056, 46.4305274 ], + [ 7.8515323, 46.4305069 ], + [ 7.8516959, 46.4305326 ], + [ 7.8517714, 46.4306161 ], + [ 7.8518222, 46.4306717 ], + [ 7.8518997, 46.4308173 ], + [ 7.8520087, 46.4309286 ], + [ 7.8521164, 46.4309776 ], + [ 7.8522233, 46.4310267 ], + [ 7.8523392, 46.431087 ], + [ 7.8524145999999995, 46.4311535 ], + [ 7.8525053, 46.4312142 ], + [ 7.85262, 46.4312181 ], + [ 7.8527918, 46.4312549 ], + [ 7.8529475, 46.431309 ], + [ 7.8531376999999996, 46.4314019 ], + [ 7.8533115, 46.4314895 ], + [ 7.8534182999999995, 46.4315273 ], + [ 7.8536145, 46.4315525 ], + [ 7.8538575999999996, 46.431543 ], + [ 7.8541186, 46.4315446 ], + [ 7.8543475, 46.4315974 ], + [ 7.8546179, 46.431661 ], + [ 7.8547816, 46.4316979 ], + [ 7.8549626, 46.4317516 ], + [ 7.8550926, 46.4317382 ], + [ 7.8552054, 46.4317139 ], + [ 7.855368, 46.4317113 ], + [ 7.8555376, 46.4316692 ], + [ 7.8556361, 46.4316846 ], + [ 7.8557023, 46.4317232 ], + [ 7.8557532, 46.4317844 ], + [ 7.8558459, 46.4318958 ], + [ 7.8559304999999995, 46.4320074 ], + [ 7.8559885, 46.4320459 ], + [ 7.8561036, 46.432095 ], + [ 7.8562185, 46.432127 ], + [ 7.8563586999999995, 46.4321756 ], + [ 7.8564736, 46.4322134 ], + [ 7.8565814, 46.4322681 ], + [ 7.8566963, 46.4323001 ], + [ 7.8568753000000005, 46.4323144 ], + [ 7.8570624, 46.4323227 ], + [ 7.8573084, 46.4323866 ], + [ 7.8575058, 46.4324568 ], + [ 7.8576776, 46.4324881 ], + [ 7.8578188, 46.4325649 ], + [ 7.8581972, 46.4327001 ], + [ 7.8583274, 46.4327149 ], + [ 7.8584261, 46.4327586 ], + [ 7.8585339, 46.4328132 ], + [ 7.8586592, 46.4329299 ], + [ 7.8587691, 46.4330523 ], + [ 7.8589584, 46.4331396 ], + [ 7.8591149, 46.4331767 ], + [ 7.8592948, 46.4332078 ], + [ 7.8595308, 46.4332266 ], + [ 7.8597351, 46.4332517 ], + [ 7.8598987000000005, 46.4332774 ], + [ 7.8600859, 46.4332913 ], + [ 7.8603805, 46.4333318 ], + [ 7.861597, 46.4337474 ], + [ 7.8619091999999995, 46.433844 ], + [ 7.8620901, 46.4338978 ], + [ 7.8622947, 46.433951 ], + [ 7.8629852, 46.4341714 ], + [ 7.8631338, 46.4342482 ], + [ 7.8632914, 46.434336 ], + [ 7.8634248, 46.4344525 ], + [ 7.8635409, 46.434524 ], + [ 7.8636973999999995, 46.4345779 ], + [ 7.8639192, 46.4346536 ], + [ 7.8641652, 46.434706 ], + [ 7.8644032, 46.4347813 ], + [ 7.864626, 46.4348795 ], + [ 7.8648082, 46.4349895 ], + [ 7.8649336, 46.435106 ], + [ 7.8650241, 46.4351442 ], + [ 7.8651482999999995, 46.4352155 ], + [ 7.8652968, 46.4352809 ], + [ 7.8654858, 46.4353288 ], + [ 7.8656344, 46.4353942 ], + [ 7.8658327, 46.4354927 ], + [ 7.8660475, 46.4356078 ], + [ 7.866196, 46.4356675 ], + [ 7.8663619, 46.4357666 ], + [ 7.8665024, 46.4358546 ], + [ 7.8665757, 46.4358591 ], + [ 7.8668358, 46.4358438 ], + [ 7.86704, 46.4358575 ], + [ 7.8672038, 46.4359058 ], + [ 7.8674489, 46.435947 ], + [ 7.86763, 46.4360176 ], + [ 7.8678516, 46.4360705 ], + [ 7.8680653, 46.4361517 ], + [ 7.8682148, 46.4362285 ], + [ 7.8684051, 46.4363327 ], + [ 7.868448, 46.4364054 ], + [ 7.8685884, 46.4364766 ], + [ 7.8687044, 46.4365424 ], + [ 7.8688205, 46.4366254 ], + [ 7.8689702, 46.4367302 ], + [ 7.8691208, 46.4368519 ], + [ 7.8692633999999995, 46.4369908 ], + [ 7.8693786, 46.4370567 ], + [ 7.8695352, 46.437122 ], + [ 7.8697253, 46.4371924 ], + [ 7.8698892, 46.4372518 ], + [ 7.870112, 46.43735 ], + [ 7.8703094, 46.4374259 ], + [ 7.8704355, 46.4375368 ], + [ 7.87051, 46.437592 ], + [ 7.8706492, 46.4376068 ], + [ 7.8708526, 46.4376205 ], + [ 7.8709676, 46.4376582 ], + [ 7.8711149, 46.4376786 ], + [ 7.871253, 46.4376593 ], + [ 7.8713821, 46.4376348 ], + [ 7.8716006, 46.4375918 ], + [ 7.8718861, 46.43761 ], + [ 7.8722451, 46.4376495 ], + [ 7.8726782, 46.4377048 ], + [ 7.8728247, 46.4377194 ], + [ 7.8728641, 46.4376679 ], + [ 7.8729096, 46.43756 ], + [ 7.8729643, 46.43748 ], + [ 7.873069, 46.4374559 ], + [ 7.8732305, 46.4374138 ], + [ 7.8733268, 46.4373558 ], + [ 7.8733877, 46.4372364 ], + [ 7.8734716, 46.4370545 ], + [ 7.8736438, 46.436826 ], + [ 7.8738149, 46.4365581 ], + [ 7.8740397, 46.4362046 ], + [ 7.8741086, 46.4360681 ], + [ 7.8741701, 46.4359317 ], + [ 7.8741739, 46.4357962 ], + [ 7.8741522, 46.4356328 ], + [ 7.8741558, 46.4354692 ], + [ 7.8741655999999995, 46.4352657 ], + [ 7.8741752, 46.4350456 ], + [ 7.8742427, 46.434847 ], + [ 7.8742604, 46.4346265 ], + [ 7.8742409, 46.4345253 ], + [ 7.8741889, 46.4344302 ], + [ 7.8740961, 46.4343188 ], + [ 7.8740685, 46.4342119 ], + [ 7.8740723, 46.434082 ], + [ 7.8741106, 46.4339912 ], + [ 7.8741643, 46.4339001 ], + [ 7.8742829, 46.4337796 ], + [ 7.8744015, 46.4336592 ], + [ 7.874561, 46.4335664 ], + [ 7.8746167, 46.4335239 ], + [ 7.8746967, 46.4334627 ], + [ 7.8748227, 46.4333478 ], + [ 7.8749085999999995, 46.4332168 ], + [ 7.8749775, 46.4330802 ], + [ 7.8750799, 46.432977 ], + [ 7.8751985, 46.4328623 ], + [ 7.875316, 46.4327137 ], + [ 7.875465, 46.4325363 ], + [ 7.8756292, 46.4323194 ], + [ 7.8758247, 46.4320622 ], + [ 7.8759978, 46.4318451 ], + [ 7.8761064, 46.4316967 ], + [ 7.876168, 46.4315771 ], + [ 7.8762032, 46.4313959 ], + [ 7.8762403, 46.4312656 ], + [ 7.8762697, 46.4311692 ], + [ 7.8763478, 46.431072 ], + [ 7.8763932, 46.4309641 ], + [ 7.8764710000000004, 46.4308273 ], + [ 7.8765805, 46.4306959 ], + [ 7.8766807, 46.430508 ], + [ 7.8767494, 46.4303602 ], + [ 7.8768275, 46.4302574 ], + [ 7.8769471, 46.4301652 ], + [ 7.8771054, 46.430033 ], + [ 7.8772646, 46.4299176 ], + [ 7.8774308, 46.429757 ], + [ 7.877596, 46.4295737 ], + [ 7.8778243, 46.4293387 ], + [ 7.8781394, 46.4289894 ], + [ 7.8792714, 46.4277018 ], + [ 7.8793587, 46.4276439 ], + [ 7.8794549, 46.4275803 ], + [ 7.8796549, 46.4274757 ], + [ 7.8798456, 46.4273259 ], + [ 7.8801165, 46.4271467 ], + [ 7.8805060000000005, 46.426847 ], + [ 7.8810548, 46.4264433 ], + [ 7.8816057, 46.4261016 ], + [ 7.8817985, 46.4260196 ], + [ 7.8819345, 46.4259384 ], + [ 7.8820776, 46.4258401 ], + [ 7.8822947, 46.4257407 ], + [ 7.8824713, 46.4256646 ], + [ 7.8826073, 46.4255891 ], + [ 7.8827597, 46.4255416 ], + [ 7.8830107, 46.4255036 ], + [ 7.8832208, 46.4254551 ], + [ 7.8834403, 46.4254518 ], + [ 7.8836852, 46.4254648 ], + [ 7.8839615, 46.4254548 ], + [ 7.884188, 46.4254061 ], + [ 7.8844134, 46.4253348 ], + [ 7.8846204, 46.4251903 ], + [ 7.8848914, 46.4250224 ], + [ 7.8852118, 46.4248367 ], + [ 7.8853978, 46.4248055 ], + [ 7.8855847, 46.4247913 ], + [ 7.8857055, 46.4247555 ], + [ 7.8857997, 46.4246468 ], + [ 7.8858614, 46.424533 ], + [ 7.8859394, 46.4244246 ], + [ 7.8861, 46.4243768 ], + [ 7.8863019, 46.4243172 ], + [ 7.8865944, 46.4242956 ], + [ 7.8868535, 46.4242576 ], + [ 7.887145, 46.4242191 ], + [ 7.8874111, 46.4241416 ], + [ 7.887734, 46.424063 ], + [ 7.888181, 46.4240446 ], + [ 7.8883507, 46.4240081 ], + [ 7.8884774, 46.4238932 ], + [ 7.8886032, 46.4237727 ], + [ 7.8886649, 46.4236588 ], + [ 7.888766, 46.4234992 ], + [ 7.8888846, 46.4233957 ], + [ 7.8890266, 46.4232525 ], + [ 7.8892091, 46.4231027 ], + [ 7.8893671, 46.4229422 ], + [ 7.8894265, 46.422755 ], + [ 7.8894848, 46.4225283 ], + [ 7.8895849, 46.4223462 ], + [ 7.8896884, 46.4222825 ], + [ 7.8898254, 46.4222352 ], + [ 7.8899361, 46.4221487 ], + [ 7.8900232, 46.4220626 ], + [ 7.8901683, 46.4220096 ], + [ 7.8902952, 46.4219229 ], + [ 7.8903407, 46.4218206 ], + [ 7.8903768, 46.4216676 ], + [ 7.8903652, 46.4215437 ], + [ 7.8904178, 46.4214187 ], + [ 7.8904958, 46.4213101 ], + [ 7.8905341, 46.421225 ], + [ 7.8906203, 46.4211276 ], + [ 7.8908141, 46.4210737 ], + [ 7.8909500999999995, 46.4209983 ], + [ 7.8910941999999995, 46.4209283 ], + [ 7.8911407, 46.4208427 ], + [ 7.8911456, 46.4207523 ], + [ 7.8910924, 46.4206065 ], + [ 7.8910727, 46.4204883 ], + [ 7.8911077, 46.4202958 ], + [ 7.8910988, 46.4200138 ], + [ 7.8911269, 46.4198722 ], + [ 7.8912201, 46.4197354 ], + [ 7.8914687, 46.4196186 ], + [ 7.8938465, 46.4189203 ], + [ 7.8936665, 46.418878 ], + [ 7.8934621, 46.4188419 ], + [ 7.8926217, 46.4187649 ], + [ 7.8921328, 46.4187276 ], + [ 7.8918392, 46.4187153 ], + [ 7.8916024, 46.4186852 ], + [ 7.8913491, 46.4186384 ], + [ 7.8911194, 46.4185744 ], + [ 7.8909546, 46.4185148 ], + [ 7.8907401, 46.4184224 ], + [ 7.8904615, 46.4183533 ], + [ 7.8902408, 46.4183174 ], + [ 7.8899948, 46.4182536 ], + [ 7.8897751, 46.4182345 ], + [ 7.8895384, 46.41821 ], + [ 7.8893667, 46.4181902 ], + [ 7.889087, 46.418093 ], + [ 7.8889863, 46.4179987 ], + [ 7.8887878, 46.417889 ], + [ 7.8885811, 46.4177681 ], + [ 7.8883085, 46.4176314 ], + [ 7.88816, 46.4175716 ], + [ 7.88792, 46.41744 ], + [ 7.8876553, 46.4172861 ], + [ 7.8874883, 46.417142 ], + [ 7.8873619999999995, 46.4170143 ], + [ 7.8871707, 46.4168762 ], + [ 7.8868968, 46.4166887 ], + [ 7.8865966, 46.4164677 ], + [ 7.8863125, 46.4162239 ], + [ 7.8860271, 46.4159181 ], + [ 7.8857237, 46.4155898 ], + [ 7.8854314, 46.4153461 ], + [ 7.8851148, 46.4150972 ], + [ 7.884965, 46.4149698 ], + [ 7.8848075, 46.4148933 ], + [ 7.8846448, 46.4148789 ], + [ 7.8845301, 46.4148695 ], + [ 7.8843928, 46.414883 ], + [ 7.8842304, 46.4149024 ], + [ 7.884061, 46.4149558 ], + [ 7.883946, 46.4149126 ], + [ 7.8838138, 46.4148526 ], + [ 7.8836825, 46.4148038 ], + [ 7.8835503, 46.4147327 ], + [ 7.8834341, 46.4146498 ], + [ 7.8832927, 46.4145504 ], + [ 7.8831839, 46.4144618 ], + [ 7.8830273, 46.4144023 ], + [ 7.882838, 46.4143149 ], + [ 7.8826001, 46.414251 ], + [ 7.8825388, 46.4141052 ], + [ 7.8825435, 46.4139923 ], + [ 7.8824997, 46.4139027 ], + [ 7.8821692, 46.4137385 ], + [ 7.8819776, 46.4135779 ], + [ 7.8817456, 46.4134349 ], + [ 7.8816274, 46.4132957 ], + [ 7.8816253, 46.4132279 ], + [ 7.8815325, 46.4131221 ], + [ 7.8814133, 46.4129548 ], + [ 7.8812788, 46.4128101 ], + [ 7.8811374999999995, 46.4127221 ], + [ 7.8809667999999995, 46.4127248 ], + [ 7.8808124, 46.4127329 ], + [ 7.8806182, 46.4127416 ], + [ 7.8803572, 46.4127344 ], + [ 7.8801865, 46.4127314 ], + [ 7.8801112, 46.412665 ], + [ 7.8799079, 46.4126625 ], + [ 7.8797454, 46.4126651 ], + [ 7.8796387, 46.4126386 ], + [ 7.8794332, 46.4125628 ], + [ 7.8792268, 46.4124588 ], + [ 7.8790437, 46.4123432 ], + [ 7.8787872, 46.4121893 ], + [ 7.8785867, 46.4120118 ], + [ 7.8784510999999995, 46.411839 ], + [ 7.87834, 46.4116601 ], + [ 7.8782929, 46.4114634 ], + [ 7.8782454, 46.411227 ], + [ 7.8781852, 46.4111208 ], + [ 7.8779106, 46.4109333 ], + [ 7.877706, 46.4108687 ], + [ 7.87637, 46.4107995 ], + [ 7.8759657, 46.4103544 ], + [ 7.8758914, 46.4103104 ], + [ 7.8757025, 46.4102682 ], + [ 7.8754503, 46.4102497 ], + [ 7.8751253, 46.4102605 ], + [ 7.8748743999999995, 46.4102983 ], + [ 7.8745577, 46.4103314 ], + [ 7.8742823, 46.4103471 ], + [ 7.8741269, 46.4103326 ], + [ 7.8738577, 46.4103087 ], + [ 7.8737287, 46.4103388 ], + [ 7.8736765, 46.4102156 ], + [ 7.8735899, 46.4100532 ], + [ 7.8734819, 46.4099758 ], + [ 7.8733265, 46.4099558 ], + [ 7.8731001, 46.4099988 ], + [ 7.872501, 46.4100929 ], + [ 7.8718946, 46.4101928 ], + [ 7.8712245, 46.4103557 ], + [ 7.8705231, 46.4105643 ], + [ 7.8703031, 46.4102856 ], + [ 7.8701685999999995, 46.4101409 ], + [ 7.8700178, 46.4099853 ], + [ 7.8698672, 46.4098522 ], + [ 7.8696587000000005, 46.4096918 ], + [ 7.8694044, 46.4096112 ], + [ 7.8689948, 46.4095103 ], + [ 7.8686758, 46.4094646 ], + [ 7.8685879, 46.4092402 ], + [ 7.8683971, 46.408865 ], + [ 7.8681726, 46.4084341 ], + [ 7.8680137, 46.4082785 ], + [ 7.8678411, 46.408236 ], + [ 7.8676376999999995, 46.4082111 ], + [ 7.8673047, 46.4082389 ], + [ 7.8671167, 46.4082136 ], + [ 7.866824, 46.4082068 ], + [ 7.8666361, 46.4081873 ], + [ 7.8664471, 46.4081225 ], + [ 7.8662914, 46.4080686 ], + [ 7.8661928, 46.4080362 ], + [ 7.8660616999999995, 46.4080044 ], + [ 7.8658831, 46.4080298 ], + [ 7.8656402, 46.4080449 ], + [ 7.8654117, 46.4080372 ], + [ 7.8651921, 46.408018 ], + [ 7.8650043, 46.4080154 ], + [ 7.8648406, 46.4079671 ], + [ 7.8647409, 46.4078953 ], + [ 7.8645263, 46.4077914 ], + [ 7.8643199, 46.4076931 ], + [ 7.8641076, 46.4076738 ], + [ 7.8639103, 46.407598 ], + [ 7.8636227, 46.4075065 ], + [ 7.8632883, 46.407461 ], + [ 7.8630505, 46.4074082 ], + [ 7.8629753000000004, 46.4073529 ], + [ 7.8628339, 46.4072423 ], + [ 7.8626933999999995, 46.4071541 ], + [ 7.8625034, 46.4070725 ], + [ 7.8623173, 46.4070867 ], + [ 7.8621398, 46.4071516 ], + [ 7.8619854, 46.407154 ], + [ 7.8618381, 46.4071225 ], + [ 7.8617555, 46.4070616 ], + [ 7.8616559, 46.4070068 ], + [ 7.8615155, 46.40693 ], + [ 7.8613256, 46.4068539 ], + [ 7.8610957, 46.4067672 ], + [ 7.8609544, 46.4066734 ], + [ 7.8608118000000005, 46.4065233 ], + [ 7.8607891, 46.4063205 ], + [ 7.8607177, 46.4053001 ], + [ 7.8602004, 46.4051388 ], + [ 7.8560912, 46.4034479 ], + [ 7.85171, 46.4008015 ], + [ 7.8511375, 46.4004266 ], + [ 7.8510193, 46.4002761 ], + [ 7.8509955, 46.4000281 ], + [ 7.8510275, 46.3997567 ], + [ 7.8511175, 46.399507 ], + [ 7.8512176, 46.3993135 ], + [ 7.851268, 46.3991039 ], + [ 7.8513011, 46.3988551 ], + [ 7.8512457, 46.3986303 ], + [ 7.8511743, 46.3984225 ], + [ 7.8510956, 46.3982261 ], + [ 7.851008, 46.3980357 ], + [ 7.8508482, 46.3978575 ], + [ 7.8505897000000004, 46.3976358 ], + [ 7.8502674, 46.3974715 ], + [ 7.8500357, 46.3973397 ], + [ 7.8498119, 46.3971964 ], + [ 7.8496693, 46.397035 ], + [ 7.8493786, 46.3968476 ], + [ 7.8490725999999995, 46.3966773 ], + [ 7.848545, 46.3964316 ], + [ 7.8481453, 46.3961218 ], + [ 7.8483483, 46.3961129 ], + [ 7.8485259, 46.3960538 ], + [ 7.8486201, 46.3959507 ], + [ 7.8486902, 46.3958594 ], + [ 7.8485428, 46.3958165 ], + [ 7.8482328, 46.3957762 ], + [ 7.8479474, 46.3957523 ], + [ 7.8476793, 46.3957509 ], + [ 7.8473228, 46.3957903 ], + [ 7.8468599, 46.3958257 ], + [ 7.8463655, 46.3958841 ], + [ 7.8460182, 46.3959573 ], + [ 7.8455664, 46.3960545 ], + [ 7.845144, 46.3960837 ], + [ 7.8448992, 46.3960537 ], + [ 7.8443586, 46.3959154 ], + [ 7.8441343, 46.3960203 ], + [ 7.8439241, 46.3960631 ], + [ 7.8437374, 46.3960829 ], + [ 7.8434145, 46.3961557 ], + [ 7.8430744, 46.3962005 ], + [ 7.8428317, 46.3962437 ], + [ 7.8426866, 46.3962911 ], + [ 7.8425028999999995, 46.3963899 ], + [ 7.8422787, 46.3965175 ], + [ 7.8420535000000005, 46.3966057 ], + [ 7.8416736, 46.3966567 ], + [ 7.8411802, 46.3967546 ], + [ 7.8406126, 46.3968086 ], + [ 7.8402349000000005, 46.3974861 ], + [ 7.8403195, 46.3976145 ], + [ 7.8403502, 46.397806 ], + [ 7.8404034, 46.3979689 ], + [ 7.8404769, 46.3982386 ], + [ 7.8404813, 46.3983908 ], + [ 7.8404613, 46.3985379 ], + [ 7.8404494, 46.3986905 ], + [ 7.8404304, 46.3988657 ], + [ 7.8403534, 46.3990024 ], + [ 7.8402685, 46.3991673 ], + [ 7.8401681, 46.3993382 ], + [ 7.8400121, 46.3995494 ], + [ 7.8399261, 46.3996806 ], + [ 7.8399374, 46.3997877 ], + [ 7.8397812, 46.3999819 ], + [ 7.8395349, 46.400189 ], + [ 7.8396739, 46.4002037 ], + [ 7.8397716, 46.4002305 ], + [ 7.8399361, 46.4002674 ], + [ 7.8399953, 46.4003624 ], + [ 7.8399426, 46.4004874 ], + [ 7.8398413, 46.4006301 ], + [ 7.8397237, 46.4007785 ], + [ 7.8395375, 46.401092 ], + [ 7.8394252, 46.401404 ], + [ 7.8392968, 46.4017333 ], + [ 7.8391127, 46.40212 ], + [ 7.8389668, 46.4023876 ], + [ 7.8388362, 46.4026434 ], + [ 7.8386883, 46.4028603 ], + [ 7.8385112, 46.4032016 ], + [ 7.8383144, 46.4034078 ], + [ 7.8380854, 46.4036596 ], + [ 7.8378803999999995, 46.4038491 ], + [ 7.8376827, 46.404044 ], + [ 7.8373479, 46.4042693 ], + [ 7.8369735, 46.4045346 ], + [ 7.8365097, 46.4047845 ], + [ 7.8359668, 46.4051202 ], + [ 7.8358308999999995, 46.4052126 ], + [ 7.835688, 46.4053333 ], + [ 7.8355459, 46.4054654 ], + [ 7.8354748999999995, 46.4055398 ], + [ 7.8353876, 46.4056033 ], + [ 7.8352029, 46.4056851 ], + [ 7.8349604, 46.4057565 ], + [ 7.8346719, 46.405874 ], + [ 7.8344711, 46.4059785 ], + [ 7.8342793, 46.4060888 ], + [ 7.8340478000000004, 46.4062222 ], + [ 7.8338906999999995, 46.4064108 ], + [ 7.8337649, 46.4065482 ], + [ 7.8336605, 46.4066119 ], + [ 7.8335162, 46.4066592 ], + [ 7.8333791999999995, 46.4067065 ], + [ 7.8332585, 46.4067705 ], + [ 7.8331063, 46.4068462 ], + [ 7.8329215, 46.4069111 ], + [ 7.8326484, 46.4070225 ], + [ 7.8324798, 46.4070928 ], + [ 7.8323266, 46.4071517 ], + [ 7.8321663, 46.4072274 ], + [ 7.8320301, 46.407286 ], + [ 7.8319409, 46.4073043 ], + [ 7.8317887, 46.4073856 ], + [ 7.8317176, 46.4074545 ], + [ 7.8316221, 46.4075068 ], + [ 7.8314942, 46.4075821 ], + [ 7.8313247, 46.4076298 ], + [ 7.831083, 46.4076956 ], + [ 7.8309125, 46.4077322 ], + [ 7.8307162, 46.4076675 ], + [ 7.8304857, 46.4075976 ], + [ 7.8302926, 46.4076458 ], + [ 7.830115, 46.4076992 ], + [ 7.8299139, 46.4077644 ], + [ 7.8295912, 46.407871 ], + [ 7.8291332, 46.4080529 ], + [ 7.8289901, 46.4081511 ], + [ 7.828844, 46.4081815 ], + [ 7.8286417, 46.4081904 ], + [ 7.8284711, 46.4082099 ], + [ 7.8282203, 46.4082533 ], + [ 7.8279379, 46.408314 ], + [ 7.8277695, 46.4084013 ], + [ 7.8275512, 46.4084611 ], + [ 7.8273826, 46.4085257 ], + [ 7.8271644, 46.4085743 ], + [ 7.8271352, 46.408591 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "JBG0007", + "country" : "CHE", + "name" : [ + { + "text" : "Eidgenössisches Jagdbanngebiet Bietschhorn", + "lang" : "de-CH" + }, + { + "text" : "District franc fédéral Bietschhorn", + "lang" : "fr-CH" + }, + { + "text" : "Bandita federale di caccia Bietschhorn", + "lang" : "it-CH" + }, + { + "text" : "Federal Game Reserve Bietschhorn", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.060351, 46.1589629 ], + [ 6.0603866, 46.1588533 ], + [ 6.0603775, 46.1587851 ], + [ 6.060423, 46.1584809 ], + [ 6.0602983, 46.1581893 ], + [ 6.0602747, 46.1580119 ], + [ 6.060106, 46.1577396 ], + [ 6.0599918, 46.1574726 ], + [ 6.0598825, 46.1573788 ], + [ 6.0597938, 46.1572357 ], + [ 6.058991, 46.1566009 ], + [ 6.0588957, 46.156546 ], + [ 6.0575639, 46.1560448 ], + [ 6.0575337, 46.1560426 ], + [ 6.0574844, 46.156024 ], + [ 6.0559797, 46.1559134 ], + [ 6.0558564, 46.1559387 ], + [ 6.0551075, 46.1557663 ], + [ 6.0538886, 46.1557623 ], + [ 6.052728, 46.1560211 ], + [ 6.05174, 46.1565171 ], + [ 6.0510219, 46.1572015 ], + [ 6.050957, 46.1572899 ], + [ 6.0505443, 46.1582997 ], + [ 6.0507173, 46.1593425 ], + [ 6.0514498, 46.1602606 ], + [ 6.0516433, 46.1603678 ], + [ 6.0518932, 46.160548 ], + [ 6.052166, 46.1607115 ], + [ 6.0524592, 46.1608568 ], + [ 6.0527705, 46.1609827 ], + [ 6.0527757, 46.1609846 ], + [ 6.0530488, 46.1610742 ], + [ 6.053331, 46.1611488 ], + [ 6.0536206, 46.161208 ], + [ 6.0539159, 46.1612516 ], + [ 6.0541042, 46.1612948 ], + [ 6.0549678, 46.1612979 ], + [ 6.0550229, 46.1613206 ], + [ 6.056209, 46.1615061 ], + [ 6.0574196, 46.1614276 ], + [ 6.0585358, 46.1610929 ], + [ 6.0594484, 46.1605348 ], + [ 6.0595466, 46.1604524 ], + [ 6.0602667, 46.1595272 ], + [ 6.060351, 46.1589629 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-36", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6426691, 47.5089935 ], + [ 7.6436423, 47.509304 ], + [ 7.6436809, 47.5093163 ], + [ 7.6437072, 47.5092609 ], + [ 7.6437482, 47.5091949 ], + [ 7.6438181, 47.5091408 ], + [ 7.6438066, 47.5091265 ], + [ 7.6438249, 47.5091194 ], + [ 7.6438532, 47.5091084 ], + [ 7.6438665, 47.509127 ], + [ 7.6439166, 47.5091115 ], + [ 7.6440493, 47.5091002 ], + [ 7.6442573, 47.5090918 ], + [ 7.6442291, 47.5090737 ], + [ 7.6436945, 47.5087315 ], + [ 7.643084, 47.5083406 ], + [ 7.6430643, 47.5083638 ], + [ 7.6427886, 47.5087875 ], + [ 7.6426779, 47.5089576 ], + [ 7.6426691, 47.5089935 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns183", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Eselhallen", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Eselhallen", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Eselhallen", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Eselhallen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.9393744, 46.5627872 ], + [ 7.9392633, 46.5604336 ], + [ 7.9389737, 46.5580874 ], + [ 7.9385066, 46.5557547 ], + [ 7.9378633, 46.5534422 ], + [ 7.9370454, 46.551156 ], + [ 7.9360553, 46.5489025 ], + [ 7.9348957, 46.5466878 ], + [ 7.9335698, 46.544518 ], + [ 7.9320812, 46.542399 ], + [ 7.9304341, 46.5403367 ], + [ 7.9286329, 46.5383367 ], + [ 7.9266827, 46.5364044 ], + [ 7.9245887, 46.5345451 ], + [ 7.9223567, 46.532764 ], + [ 7.9199929000000004, 46.5310659 ], + [ 7.9175037, 46.5294555 ], + [ 7.9148959, 46.5279371 ], + [ 7.9121767, 46.5265149 ], + [ 7.9093536, 46.5251928 ], + [ 7.9064342, 46.5239745 ], + [ 7.9034265, 46.5228632 ], + [ 7.9003388, 46.521862 ], + [ 7.8971796, 46.5209736 ], + [ 7.8939574, 46.5202005 ], + [ 7.8906811, 46.5195448 ], + [ 7.8873596, 46.5190082 ], + [ 7.8840021, 46.5185922 ], + [ 7.8806177, 46.5182981 ], + [ 7.8772155999999995, 46.5181265 ], + [ 7.8738052, 46.5180779 ], + [ 7.8703958, 46.5181525 ], + [ 7.8669967, 46.5183501 ], + [ 7.8636172, 46.5186702 ], + [ 7.8602665, 46.5191118 ], + [ 7.8569539, 46.5196737 ], + [ 7.8536883, 46.5203545 ], + [ 7.8504787, 46.5211522 ], + [ 7.8473339, 46.5220647 ], + [ 7.8442625, 46.5230894 ], + [ 7.8412728, 46.5242236 ], + [ 7.8383731, 46.5254642 ], + [ 7.8355713, 46.5268078 ], + [ 7.8328751, 46.5282507 ], + [ 7.8302919, 46.5297889 ], + [ 7.8278286, 46.5314183 ], + [ 7.8254922, 46.5331344 ], + [ 7.823289, 46.5349324 ], + [ 7.821225, 46.5368076 ], + [ 7.8193059, 46.5387547 ], + [ 7.8175369, 46.5407684 ], + [ 7.815923, 46.5428432 ], + [ 7.8144685, 46.5449734 ], + [ 7.8131775999999995, 46.5471532 ], + [ 7.8120536, 46.5493766 ], + [ 7.8110997, 46.5516375 ], + [ 7.8103186, 46.5539298 ], + [ 7.8097124, 46.5562472 ], + [ 7.8092828999999995, 46.5585832 ], + [ 7.809031, 46.5609316 ], + [ 7.8089578, 46.5632858 ], + [ 7.8090632, 46.5656394 ], + [ 7.8093471, 46.567986 ], + [ 7.8098088, 46.5703192 ], + [ 7.8104469, 46.5726325 ], + [ 7.8112597, 46.5749195 ], + [ 7.8122451, 46.5771741 ], + [ 7.8134003, 46.5793901 ], + [ 7.8147223, 46.5815613 ], + [ 7.8162073, 46.5836818 ], + [ 7.8178514, 46.5857457 ], + [ 7.81965, 46.5877475 ], + [ 7.8215983, 46.5896816 ], + [ 7.8236909, 46.5915428 ], + [ 7.825922, 46.5933258 ], + [ 7.8282856, 46.5950259 ], + [ 7.8307752, 46.5966383 ], + [ 7.8333839, 46.5981586 ], + [ 7.8361046, 46.5995826 ], + [ 7.8389299, 46.6009065 ], + [ 7.8418519, 46.6021266 ], + [ 7.8448627, 46.6032395 ], + [ 7.847954, 46.6042422 ], + [ 7.8511173, 46.605132 ], + [ 7.854344, 46.6059063 ], + [ 7.8576251, 46.6065631 ], + [ 7.8609516, 46.6071005 ], + [ 7.8643145, 46.6075171 ], + [ 7.8677044, 46.6078118 ], + [ 7.8711120999999995, 46.6079837 ], + [ 7.8745281, 46.6080323 ], + [ 7.8779432, 46.6079576 ], + [ 7.8813479, 46.6077596 ], + [ 7.8847328999999995, 46.6074391 ], + [ 7.8880888, 46.6069968 ], + [ 7.8914065, 46.6064339 ], + [ 7.8946768, 46.6057521 ], + [ 7.8978908, 46.6049531 ], + [ 7.9010396, 46.6040393 ], + [ 7.9041145, 46.603013 ], + [ 7.9071072000000004, 46.6018771 ], + [ 7.9100094, 46.6006348 ], + [ 7.9128132, 46.5992893 ], + [ 7.9155108, 46.5978446 ], + [ 7.9180949, 46.5963044 ], + [ 7.9205583, 46.5946731 ], + [ 7.9228944, 46.5929551 ], + [ 7.9250967, 46.5911551 ], + [ 7.9271592, 46.589278 ], + [ 7.9290762, 46.5873291 ], + [ 7.9308425, 46.5853137 ], + [ 7.9324533, 46.5832373 ], + [ 7.9339040999999995, 46.5811056 ], + [ 7.935191, 46.5789244 ], + [ 7.9363106, 46.5766998 ], + [ 7.9372596, 46.5744378 ], + [ 7.9380356, 46.5721446 ], + [ 7.9386365, 46.5698266 ], + [ 7.9390605999999995, 46.5674901 ], + [ 7.9393068, 46.5651415 ], + [ 7.9393744, 46.5627872 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSWB001", + "country" : "CHE", + "name" : [ + { + "text" : "LSWB Blumental", + "lang" : "de-CH" + }, + { + "text" : "LSWB Blumental", + "lang" : "fr-CH" + }, + { + "text" : "LSWB Blumental", + "lang" : "it-CH" + }, + { + "text" : "LSWB Blumental", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "startDateTime" : "2024-12-01T00:00:00+01:00", + "endDateTime" : "2025-04-30T00:00:00+02:00" + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Gemeinde Lauterbrunnen", + "lang" : "de-CH" + }, + { + "text" : "Gemeinde Lauterbrunnen", + "lang" : "fr-CH" + }, + { + "text" : "Gemeinde Lauterbrunnen", + "lang" : "it-CH" + }, + { + "text" : "Gemeinde Lauterbrunnen", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Lorenz von Allmen", + "lang" : "de-CH" + }, + { + "text" : "Lorenz von Allmen", + "lang" : "fr-CH" + }, + { + "text" : "Lorenz von Allmen", + "lang" : "it-CH" + }, + { + "text" : "Lorenz von Allmen", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.lauterbrunnen.ch/kontakt", + "email" : "lorenz.v.allmen@gmail.com", + "phone" : "0041793110148", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P01DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.4805368, 47.0896177 ], + [ 8.4804008, 47.0872649 ], + [ 8.4800847, 47.0849202 ], + [ 8.4795895, 47.08259 ], + [ 8.4789164, 47.0802808 ], + [ 8.4780674, 47.0779987 ], + [ 8.4770448, 47.0757501 ], + [ 8.4758515, 47.0735411 ], + [ 8.4744907, 47.0713779 ], + [ 8.4729661, 47.0692662 ], + [ 8.471282, 47.0672119 ], + [ 8.469443, 47.0652206 ], + [ 8.4674541, 47.0632978 ], + [ 8.4653208, 47.0614487 ], + [ 8.463049, 47.0596783 ], + [ 8.4606449, 47.0579916 ], + [ 8.458115, 47.0563932 ], + [ 8.4554663, 47.0548873 ], + [ 8.4527061, 47.0534782 ], + [ 8.4498419, 47.0521697 ], + [ 8.4468816, 47.0509654 ], + [ 8.4438332, 47.0498685 ], + [ 8.4407051, 47.048882 ], + [ 8.4375059, 47.0480088 ], + [ 8.4342443, 47.047251 ], + [ 8.4309293, 47.046611 ], + [ 8.4275698, 47.0460902 ], + [ 8.4241752, 47.0456903 ], + [ 8.4207546, 47.0454122 ], + [ 8.4173174, 47.0452568 ], + [ 8.4138731, 47.0452245 ], + [ 8.4104309, 47.0453153 ], + [ 8.4070005, 47.0455291 ], + [ 8.403591, 47.0458651 ], + [ 8.400212, 47.0463226 ], + [ 8.3968724, 47.0469003 ], + [ 8.3935817, 47.0475965 ], + [ 8.3903486, 47.0484094 ], + [ 8.3871821, 47.0493367 ], + [ 8.3840909, 47.050376 ], + [ 8.3810833, 47.0515243 ], + [ 8.3781676, 47.0527786 ], + [ 8.3753519, 47.0541353 ], + [ 8.3726437, 47.0555909 ], + [ 8.3700506, 47.0571413 ], + [ 8.3675796, 47.0587822 ], + [ 8.3652375, 47.0605092 ], + [ 8.3630308, 47.0623176 ], + [ 8.3609654, 47.0642023 ], + [ 8.359047, 47.0661584 ], + [ 8.357281, 47.0681803 ], + [ 8.3556721, 47.0702625 ], + [ 8.3542249, 47.0723995 ], + [ 8.3529432, 47.0745852 ], + [ 8.3518306, 47.0768137 ], + [ 8.3508901, 47.079079 ], + [ 8.3501244, 47.0813748 ], + [ 8.3495356, 47.0836948 ], + [ 8.3491254, 47.0860326 ], + [ 8.3488948, 47.088382 ], + [ 8.3488445, 47.0907363 ], + [ 8.3489747, 47.0930892 ], + [ 8.3492851, 47.0954343 ], + [ 8.3497748, 47.097765 ], + [ 8.3504425, 47.100075 ], + [ 8.3512864, 47.102358 ], + [ 8.3523042, 47.1046077 ], + [ 8.3534932, 47.1068179 ], + [ 8.35485, 47.1089826 ], + [ 8.356371, 47.1110958 ], + [ 8.3580521, 47.1131518 ], + [ 8.3598886, 47.1151449 ], + [ 8.3618755, 47.1170695 ], + [ 8.3640075, 47.1189205 ], + [ 8.3662785, 47.1206928 ], + [ 8.3686825, 47.1223814 ], + [ 8.3712128, 47.1239818 ], + [ 8.3738626, 47.1254896 ], + [ 8.3766244, 47.1269006 ], + [ 8.3794908, 47.1282109 ], + [ 8.3824539, 47.129417 ], + [ 8.3855055, 47.1305155 ], + [ 8.3886374, 47.1315034 ], + [ 8.3918407, 47.132378 ], + [ 8.3951069, 47.1331369 ], + [ 8.3984269, 47.1337781 ], + [ 8.4017916, 47.1342996 ], + [ 8.4051917, 47.1347002 ], + [ 8.4086179, 47.1349787 ], + [ 8.4120608, 47.1351344 ], + [ 8.415511, 47.1351668 ], + [ 8.4189589, 47.1350758 ], + [ 8.422395, 47.1348617 ], + [ 8.42581, 47.1345251 ], + [ 8.4291945, 47.1340669 ], + [ 8.432539, 47.1334883 ], + [ 8.4358346, 47.132791 ], + [ 8.4390721, 47.1319768 ], + [ 8.4422425, 47.1310481 ], + [ 8.4453373, 47.1300073 ], + [ 8.4483479, 47.1288573 ], + [ 8.4512661, 47.1276012 ], + [ 8.4540838, 47.1262426 ], + [ 8.4567933, 47.1247852 ], + [ 8.4593872, 47.1232329 ], + [ 8.4618583, 47.12159 ], + [ 8.4642, 47.119861 ], + [ 8.4664057, 47.1180507 ], + [ 8.4684694, 47.1161641 ], + [ 8.4703856, 47.1142062 ], + [ 8.4721488, 47.1121826 ], + [ 8.4737544, 47.1100987 ], + [ 8.4751979, 47.1079603 ], + [ 8.4764755, 47.1057733 ], + [ 8.4775835, 47.1035435 ], + [ 8.478519, 47.1012772 ], + [ 8.4792794, 47.0989806 ], + [ 8.4798628, 47.09666 ], + [ 8.4802674, 47.0943216 ], + [ 8.4804923, 47.0919721 ], + [ 8.4805368, 47.0896177 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSXN001", + "country" : "CHE", + "name" : [ + { + "text" : "LSXN Haltikon", + "lang" : "de-CH" + }, + { + "text" : "LSXN Haltikon", + "lang" : "fr-CH" + }, + { + "text" : "LSXN Haltikon", + "lang" : "it-CH" + }, + { + "text" : "LSXN Haltikon", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Heliswiss International AG", + "lang" : "de-CH" + }, + { + "text" : "Heliswiss International AG", + "lang" : "fr-CH" + }, + { + "text" : "Heliswiss International AG", + "lang" : "it-CH" + }, + { + "text" : "Heliswiss International AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "DPFO", + "lang" : "de-CH" + }, + { + "text" : "DPFO", + "lang" : "fr-CH" + }, + { + "text" : "DPFO", + "lang" : "it-CH" + }, + { + "text" : "DPFO", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Sandra Werder", + "lang" : "de-CH" + }, + { + "text" : "Sandra Werder", + "lang" : "fr-CH" + }, + { + "text" : "Sandra Werder", + "lang" : "it-CH" + }, + { + "text" : "Sandra Werder", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.heliswissinternational.com/en/", + "email" : "info@heliswiss.com", + "phone" : "0041418543223", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P02DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.0648613, 47.3985954 ], + [ 8.0648542, 47.3984543 ], + [ 8.0648363, 47.3983135 ], + [ 8.0648075, 47.3981736 ], + [ 8.0647679, 47.3980349 ], + [ 8.0647177, 47.3978978 ], + [ 8.0646571, 47.3977627 ], + [ 8.064586, 47.3976299 ], + [ 8.0645049, 47.3974999 ], + [ 8.0644138, 47.3973728 ], + [ 8.0643131, 47.3972492 ], + [ 8.064203, 47.3971294 ], + [ 8.0640838, 47.3970136 ], + [ 8.0639558, 47.3969022 ], + [ 8.0638195, 47.3967955 ], + [ 8.0636751, 47.3966938 ], + [ 8.063523, 47.3965974 ], + [ 8.0633637, 47.3965065 ], + [ 8.0631977, 47.3964214 ], + [ 8.0630253, 47.3963424 ], + [ 8.0628471, 47.3962695 ], + [ 8.0626634, 47.3962031 ], + [ 8.062475, 47.3961433 ], + [ 8.0622821, 47.3960903 ], + [ 8.0620855, 47.3960442 ], + [ 8.0618855, 47.396005099999996 ], + [ 8.0616829, 47.3959732 ], + [ 8.061478, 47.3959486 ], + [ 8.0612715, 47.3959313 ], + [ 8.061064, 47.3959213 ], + [ 8.060856, 47.3959187 ], + [ 8.0606481, 47.3959235 ], + [ 8.0604408, 47.3959357 ], + [ 8.0602348, 47.3959553 ], + [ 8.0600305, 47.3959821 ], + [ 8.0598286, 47.3960162 ], + [ 8.0596296, 47.3960574 ], + [ 8.0594341, 47.3961056 ], + [ 8.0592425, 47.3961607 ], + [ 8.0590554, 47.3962225 ], + [ 8.0588734, 47.3962909 ], + [ 8.0586969, 47.3963656 ], + [ 8.0585264, 47.3964466 ], + [ 8.0583623, 47.3965335 ], + [ 8.0582052, 47.396626 ], + [ 8.0580554, 47.3967241 ], + [ 8.0579134, 47.3968273 ], + [ 8.0577795, 47.3969355 ], + [ 8.0576542, 47.3970482 ], + [ 8.0575377, 47.3971652 ], + [ 8.0574304, 47.3972863 ], + [ 8.0573326, 47.397411 ], + [ 8.0572445, 47.3975389 ], + [ 8.0571664, 47.3976699 ], + [ 8.0570985, 47.3978034 ], + [ 8.057041, 47.3979391 ], + [ 8.056994, 47.3980768 ], + [ 8.0569577, 47.3982159 ], + [ 8.0569322, 47.3983561 ], + [ 8.0569175, 47.398497 ], + [ 8.0569137, 47.3986382 ], + [ 8.0569207, 47.3987794 ], + [ 8.0569387, 47.3989201 ], + [ 8.0569675, 47.39906 ], + [ 8.057007, 47.3991987 ], + [ 8.0570572, 47.3993358 ], + [ 8.0571178, 47.399471 ], + [ 8.0571888, 47.3996037 ], + [ 8.0572699, 47.3997338 ], + [ 8.057361, 47.3998608 ], + [ 8.0574617, 47.3999845 ], + [ 8.0575718, 47.4001043 ], + [ 8.057691, 47.4002201 ], + [ 8.057819, 47.4003315 ], + [ 8.0579553, 47.400438199999996 ], + [ 8.0580997, 47.4005399 ], + [ 8.0582518, 47.4006363 ], + [ 8.0584111, 47.4007272 ], + [ 8.0585771, 47.4008123 ], + [ 8.0587495, 47.4008914 ], + [ 8.0589278, 47.4009643 ], + [ 8.0591114, 47.4010307 ], + [ 8.0592999, 47.4010905 ], + [ 8.0594927, 47.4011435 ], + [ 8.0596894, 47.4011896 ], + [ 8.0598894, 47.4012287 ], + [ 8.0600921, 47.4012605 ], + [ 8.0602969, 47.4012852 ], + [ 8.0605034, 47.4013025 ], + [ 8.060711, 47.4013125 ], + [ 8.060919, 47.4013151 ], + [ 8.0611269, 47.4013103 ], + [ 8.0613342, 47.4012981 ], + [ 8.0615403, 47.4012785 ], + [ 8.0617446, 47.4012517 ], + [ 8.0619465, 47.4012176 ], + [ 8.0621455, 47.4011764 ], + [ 8.0623411, 47.4011282 ], + [ 8.0625327, 47.4010731 ], + [ 8.0627197, 47.4010113 ], + [ 8.0629018, 47.4009429 ], + [ 8.0630783, 47.4008681 ], + [ 8.0632488, 47.4007872 ], + [ 8.0634129, 47.4007003 ], + [ 8.06357, 47.4006077 ], + [ 8.0637198, 47.4005096 ], + [ 8.0638618, 47.4004064 ], + [ 8.0639957, 47.4002983 ], + [ 8.064121, 47.4001855 ], + [ 8.0642375, 47.4000684 ], + [ 8.0643448, 47.3999474 ], + [ 8.0644426, 47.3998227 ], + [ 8.0645307, 47.3996948 ], + [ 8.0646088, 47.3995638 ], + [ 8.0646766, 47.3994303 ], + [ 8.0647341, 47.3992945 ], + [ 8.0647811, 47.3991569 ], + [ 8.0648174, 47.3990178 ], + [ 8.0648429, 47.3988776 ], + [ 8.0648576, 47.3987367 ], + [ 8.0648613, 47.3985954 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "AAR0002", + "country" : "CHE", + "name" : [ + { + "text" : "Bezirksgefängnis Aarau Telli", + "lang" : "de-CH" + }, + { + "text" : "Bezirksgefängnis Aarau Telli", + "lang" : "fr-CH" + }, + { + "text" : "Bezirksgefängnis Aarau Telli", + "lang" : "it-CH" + }, + { + "text" : "Bezirksgefängnis Aarau Telli", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Bezirksgefängnis Aarau", + "lang" : "de-CH" + }, + { + "text" : "Bezirksgefängnis Aarau", + "lang" : "fr-CH" + }, + { + "text" : "Bezirksgefängnis Aarau", + "lang" : "it-CH" + }, + { + "text" : "Bezirksgefängnis Aarau", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Gefängnisleitung", + "lang" : "de-CH" + }, + { + "text" : "Gefängnisleitung", + "lang" : "fr-CH" + }, + { + "text" : "Gefängnisleitung", + "lang" : "it-CH" + }, + { + "text" : "Gefängnisleitung", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ag.ch/de/verwaltung/dvi/strafverfolgung-strafvollzug/strafvollzug/bezirksgefaengnisse", + "email" : "justizvollzug@ag.ch", + "phone" : "0041628358250", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4201732, 47.1824263 ], + [ 7.4209005, 47.1823083 ], + [ 7.4211982, 47.1823309 ], + [ 7.4219915, 47.1820719 ], + [ 7.4224961, 47.1819705 ], + [ 7.4228928, 47.1818297 ], + [ 7.4232399000000004, 47.1817397 ], + [ 7.4237858, 47.1816158 ], + [ 7.4241083, 47.1814749 ], + [ 7.4250818, 47.1822765 ], + [ 7.4262315, 47.181459 ], + [ 7.4263807, 47.1813858 ], + [ 7.4266537, 47.1813238 ], + [ 7.4269596, 47.181166 ], + [ 7.4274139, 47.1810309 ], + [ 7.4277776, 47.1808843 ], + [ 7.4279351, 47.1808787 ], + [ 7.4283729, 47.1807717 ], + [ 7.4287036, 47.1807662 ], + [ 7.4290177, 47.1808003 ], + [ 7.4293566, 47.1807553 ], + [ 7.429712, 47.1808231 ], + [ 7.4299511, 47.1808232 ], + [ 7.4299676, 47.1807725 ], + [ 7.4300426, 47.1805638 ], + [ 7.4301507, 47.1803099 ], + [ 7.4302167, 47.1800166 ], + [ 7.4303907, 47.1797063 ], + [ 7.4304328, 47.1794637 ], + [ 7.4305574, 47.1792324 ], + [ 7.4306976, 47.1790125 ], + [ 7.4307809, 47.1786797 ], + [ 7.4308477, 47.1784201 ], + [ 7.4308478000000004, 47.1781437 ], + [ 7.4308486, 47.177856 ], + [ 7.4308157, 47.1774892 ], + [ 7.4308166, 47.1771845 ], + [ 7.4181536, 47.174633299999996 ], + [ 7.4189395, 47.1740864 ], + [ 7.4070447999999995, 47.1684706 ], + [ 7.4054199, 47.1711835 ], + [ 7.4049905, 47.1710591 ], + [ 7.4039337, 47.1708778 ], + [ 7.4069836, 47.1660331 ], + [ 7.4008213, 47.1657129 ], + [ 7.393852, 47.1645002 ], + [ 7.3961856, 47.162403 ], + [ 7.396062, 47.1623296 ], + [ 7.3958066, 47.1622165 ], + [ 7.3955256, 47.1621148 ], + [ 7.3951375, 47.1620016 ], + [ 7.394882, 47.1619619 ], + [ 7.3945104, 47.161815 ], + [ 7.3943043, 47.1617753 ], + [ 7.3941222, 47.1617075 ], + [ 7.3938338, 47.1615944 ], + [ 7.3936271, 47.1614476 ], + [ 7.3934623, 47.1613627 ], + [ 7.3932811, 47.1612667 ], + [ 7.3929177, 47.1611253 ], + [ 7.3924645, 47.1609799 ], + [ 7.3922122, 47.161083 ], + [ 7.3918824, 47.1611548 ], + [ 7.3913813, 47.1611096 ], + [ 7.3899969, 47.1608392 ], + [ 7.3886126, 47.1603439 ], + [ 7.3878874, 47.1602536 ], + [ 7.38736, 47.1601364 ], + [ 7.3872019, 47.1600014 ], + [ 7.387202, 47.1599115 ], + [ 7.3872944, 47.1597586 ], + [ 7.3871627, 47.1596686 ], + [ 7.386899, 47.1596235 ], + [ 7.3861076, 47.159776 ], + [ 7.3857776, 47.1600008 ], + [ 7.3853556, 47.1600725 ], + [ 7.3848941, 47.1599824 ], + [ 7.3839707, 47.1602248 ], + [ 7.3831394, 47.1607011 ], + [ 7.3827169999999995, 47.1610787 ], + [ 7.3825452, 47.1614204 ], + [ 7.3821219, 47.1626345 ], + [ 7.3818575, 47.1631741 ], + [ 7.3817516, 47.1635519 ], + [ 7.3817908, 47.1639117 ], + [ 7.3821856, 47.1647214 ], + [ 7.3821455, 47.1651712 ], + [ 7.3821356, 47.1652338 ], + [ 7.3820761, 47.1653464 ], + [ 7.3820125, 47.1654277 ], + [ 7.3819415, 47.1655321 ], + [ 7.3817383, 47.1659022 ], + [ 7.3815541, 47.1663235 ], + [ 7.3812485, 47.1668786 ], + [ 7.3809000000000005, 47.167383 ], + [ 7.3805415, 47.1680708 ], + [ 7.3802721, 47.1686653 ], + [ 7.3802711, 47.1688542 ], + [ 7.3805446, 47.1689807 ], + [ 7.3810044999999995, 47.1691438 ], + [ 7.3815821, 47.1693217 ], + [ 7.3823477, 47.1695707 ], + [ 7.3828248, 47.1697563 ], + [ 7.3833522, 47.1699352 ], + [ 7.3840832, 47.1701791 ], + [ 7.3847705, 47.1703723 ], + [ 7.3857777, 47.1705823 ], + [ 7.386456, 47.1707583 ], + [ 7.3870462, 47.1708274 ], + [ 7.3874517, 47.1708999 ], + [ 7.3872783, 47.1711722 ], + [ 7.3871281, 47.1713982 ], + [ 7.3869678, 47.1717904 ], + [ 7.386663, 47.1723512 ], + [ 7.3863532, 47.172998 ], + [ 7.3859064, 47.1737618 ], + [ 7.3857644, 47.1739819 ], + [ 7.3855942, 47.1743515 ], + [ 7.3853884, 47.1748646 ], + [ 7.3853651, 47.1751226 ], + [ 7.3852379, 47.1752909 ], + [ 7.3851206, 47.1755049 ], + [ 7.3846567, 47.1760745 ], + [ 7.3844487, 47.1763301 ], + [ 7.3856216, 47.1766972 ], + [ 7.3859642, 47.1762386 ], + [ 7.3864967, 47.1754343 ], + [ 7.3961172, 47.1787375 ], + [ 7.3969293, 47.1776774 ], + [ 7.4010913, 47.1788315 ], + [ 7.4015244, 47.1774099 ], + [ 7.4034649, 47.1778287 ], + [ 7.4090051, 47.1799992 ], + [ 7.4102464, 47.1792157 ], + [ 7.4201732, 47.1824263 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "WZV0036", + "country" : "CHE", + "name" : [ + { + "text" : "Wasser- und Zugvogelreservat Witi", + "lang" : "de-CH" + }, + { + "text" : "Réserve d'oiseaux d'eau et de migrateurs Witi", + "lang" : "fr-CH" + }, + { + "text" : "Riserva di uccelli acquatici e migratori Witi", + "lang" : "it-CH" + }, + { + "text" : "Water Bird and Migratory Bird Reserves Witi", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5735241, 47.2203545 ], + [ 7.573441, 47.2201296 ], + [ 7.5731936, 47.2202048 ], + [ 7.5730287, 47.2202238 ], + [ 7.5728633, 47.2200927 ], + [ 7.572725, 47.2199054 ], + [ 7.5725596, 47.2197368 ], + [ 7.5723667, 47.2194745 ], + [ 7.572195, 47.2191127 ], + [ 7.5721469, 47.2190268 ], + [ 7.5720805, 47.2188748 ], + [ 7.5720067, 47.2187248 ], + [ 7.5719304, 47.2185747 ], + [ 7.5718483, 47.2184084 ], + [ 7.5709632, 47.218511 ], + [ 7.5708774, 47.2185039 ], + [ 7.5706792, 47.2184735 ], + [ 7.5705141000000005, 47.2184314 ], + [ 7.5703853, 47.2183821 ], + [ 7.5702481, 47.2182923 ], + [ 7.5701604, 47.2181953 ], + [ 7.5700602, 47.218065 ], + [ 7.5699345000000005, 47.2179428 ], + [ 7.5697997, 47.2178216 ], + [ 7.56945, 47.217527 ], + [ 7.5692673, 47.2173796 ], + [ 7.5690688999999995, 47.2172412 ], + [ 7.5688574, 47.2171201 ], + [ 7.5687095, 47.2170528 ], + [ 7.5685765, 47.2170098 ], + [ 7.5682794, 47.2169471 ], + [ 7.5671204, 47.2167442 ], + [ 7.5669199, 47.2167203 ], + [ 7.5661565, 47.2166806 ], + [ 7.5656169, 47.2166686 ], + [ 7.5654502, 47.2166643 ], + [ 7.5651945, 47.2166717 ], + [ 7.5646334, 47.216675 ], + [ 7.5643314, 47.2166808 ], + [ 7.5641475, 47.2166963 ], + [ 7.5640155, 47.2167117 ], + [ 7.5639272, 47.2167226 ], + [ 7.5634612, 47.2168005 ], + [ 7.5632658, 47.2168439 ], + [ 7.5629854, 47.2169027 ], + [ 7.5627775, 47.2169334 ], + [ 7.5625664, 47.2169669 ], + [ 7.5621613, 47.2170133 ], + [ 7.561965, 47.217027 ], + [ 7.5616028, 47.2170282 ], + [ 7.5613717000000005, 47.2170078 ], + [ 7.560903, 47.2169787 ], + [ 7.5607643, 47.2169688 ], + [ 7.559911, 47.2169097 ], + [ 7.5598871, 47.2176446 ], + [ 7.56001, 47.2176397 ], + [ 7.5602411, 47.217654 ], + [ 7.5604854, 47.2176762 ], + [ 7.5608749, 47.2177135 ], + [ 7.5617291, 47.2177755 ], + [ 7.5619057, 47.2177853 ], + [ 7.5620262, 47.217796 ], + [ 7.5622489999999996, 47.2178101 ], + [ 7.5627284, 47.2178222 ], + [ 7.5631922, 47.2178307 ], + [ 7.5633093, 47.2178431 ], + [ 7.5636394, 47.2178427 ], + [ 7.563754, 47.2178021 ], + [ 7.5638133, 47.2177653 ], + [ 7.5639246, 47.217722 ], + [ 7.564064, 47.2176849 ], + [ 7.5641406, 47.2176614 ], + [ 7.5643171, 47.2176271 ], + [ 7.5644887, 47.2175918 ], + [ 7.5646371, 47.2175691 ], + [ 7.5648846, 47.2175365 ], + [ 7.5651725, 47.2175019 ], + [ 7.5657864, 47.2175004 ], + [ 7.5664226, 47.2175249 ], + [ 7.5666595, 47.2175399 ], + [ 7.5668287, 47.2175685 ], + [ 7.5670268, 47.2176033 ], + [ 7.5673472, 47.2176992 ], + [ 7.5675123, 47.2177495 ], + [ 7.5676749999999995, 47.2178068 ], + [ 7.5678005, 47.2178633 ], + [ 7.5678534, 47.2178939 ], + [ 7.5679278, 47.2179406 ], + [ 7.5680311, 47.2180169 ], + [ 7.5680667, 47.2180474 ], + [ 7.5681113, 47.218087 ], + [ 7.5681709, 47.2181517 ], + [ 7.5682413, 47.2182469 ], + [ 7.5683274, 47.2183952 ], + [ 7.5683846, 47.2185068 ], + [ 7.5684384, 47.218576 ], + [ 7.568469, 47.2186056 ], + [ 7.568498, 47.2186289 ], + [ 7.5685459, 47.2186523 ], + [ 7.5686599, 47.218698 ], + [ 7.5688077, 47.2187518 ], + [ 7.5690042, 47.2188119 ], + [ 7.5691446, 47.2188557 ], + [ 7.5692965, 47.2188952 ], + [ 7.5694361, 47.2189283 ], + [ 7.5695847, 47.2189731 ], + [ 7.5697218, 47.2190333 ], + [ 7.5698738, 47.2191059 ], + [ 7.5700416, 47.219202 ], + [ 7.5701366, 47.2192585 ], + [ 7.5703581, 47.2194013 ], + [ 7.5705003, 47.2195054 ], + [ 7.5705697, 47.2195585 ], + [ 7.5706788, 47.219642 ], + [ 7.5706863, 47.2196496 ], + [ 7.5707978, 47.2197201 ], + [ 7.5708264, 47.2199076 ], + [ 7.5709365, 47.2200763 ], + [ 7.5710746, 47.2201885 ], + [ 7.5713226, 47.2203757 ], + [ 7.571626, 47.2205817 ], + [ 7.5717913, 47.2206939 ], + [ 7.572012, 47.2208438 ], + [ 7.5725087, 47.2214994 ], + [ 7.5728953, 47.2219865 ], + [ 7.5731719, 47.22238 ], + [ 7.5735856, 47.2228295 ], + [ 7.5738620999999995, 47.2231479 ], + [ 7.5741928, 47.2234288 ], + [ 7.574552, 47.2238222 ], + [ 7.5750209, 47.2242341 ], + [ 7.5755169, 47.2245522 ], + [ 7.5758476, 47.2247955 ], + [ 7.576178, 47.2249264 ], + [ 7.5767289, 47.2250946 ], + [ 7.5775556, 47.2253561 ], + [ 7.5784095, 47.2255988 ], + [ 7.5788505, 47.2257108 ], + [ 7.5792084, 47.2259165 ], + [ 7.5799253, 47.2261595 ], + [ 7.5809166, 47.2265332 ], + [ 7.5818258, 47.2267758 ], + [ 7.5824866, 47.2269813 ], + [ 7.5834232, 47.2272614 ], + [ 7.5842225, 47.2274291 ], + [ 7.5852134, 47.2276716 ], + [ 7.585737, 47.2278022 ], + [ 7.5860403, 47.2279519 ], + [ 7.5865359, 47.2281199 ], + [ 7.5869499000000005, 47.2283257 ], + [ 7.5872531, 47.2284377 ], + [ 7.5877761, 47.2286434 ], + [ 7.5886855, 47.2289234 ], + [ 7.5892917, 47.2290914 ], + [ 7.5897329, 47.2292408 ], + [ 7.5899516, 47.2289781 ], + [ 7.5901162, 47.2288091 ], + [ 7.5903357, 47.2284901 ], + [ 7.590253, 47.2284338 ], + [ 7.5895642, 47.2282661 ], + [ 7.5895641, 47.2282097 ], + [ 7.5894541, 47.2281349 ], + [ 7.5891782, 47.2280416 ], + [ 7.5887652, 47.227892 ], + [ 7.5882968, 47.2277427 ], + [ 7.5877458, 47.2275371 ], + [ 7.5872501, 47.2273502 ], + [ 7.5865884999999995, 47.2271449 ], + [ 7.5859822, 47.2269207 ], + [ 7.5851837, 47.2267342 ], + [ 7.5843577, 47.2264539 ], + [ 7.5838613, 47.2263233 ], + [ 7.5832833, 47.226174 ], + [ 7.5827043, 47.226006 ], + [ 7.5820437, 47.2258568 ], + [ 7.5813549, 47.2256514 ], + [ 7.5807214, 47.2254272 ], + [ 7.5801706, 47.2252779 ], + [ 7.5795644, 47.2251098 ], + [ 7.5792059, 47.2249791 ], + [ 7.5789309, 47.2249044 ], + [ 7.5785450999999995, 47.2247549 ], + [ 7.5782418, 47.2245865 ], + [ 7.577994, 47.2244742 ], + [ 7.5777734, 47.2243621 ], + [ 7.5774701, 47.2242123 ], + [ 7.5772494, 47.2240626 ], + [ 7.5769742, 47.2238942 ], + [ 7.5767534, 47.2237258 ], + [ 7.5765326, 47.2235573 ], + [ 7.5758983, 47.2230143 ], + [ 7.5754293, 47.2225648 ], + [ 7.5750156, 47.222134 ], + [ 7.5744628, 47.2215346 ], + [ 7.5741047, 47.221197599999996 ], + [ 7.573911, 47.2209728 ], + [ 7.5737737, 47.2208229 ], + [ 7.5736626000000005, 47.2206355 ], + [ 7.5735241, 47.2203545 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "WZV0002", + "country" : "CHE", + "name" : [ + { + "text" : "Wasser- und Zugvogelreservat Aare bei Solothurn und Naturschutzreservat Aare Flumenthal", + "lang" : "de-CH" + }, + { + "text" : "Réserve d'oiseaux d'eau et de migrateurs Aare bei Solothurn und Naturschutzreservat Aare Flumenthal", + "lang" : "fr-CH" + }, + { + "text" : "Riserva di uccelli acquatici e migratori Aare bei Solothurn und Naturschutzreservat Aare Flumenthal", + "lang" : "it-CH" + }, + { + "text" : "Water Bird and Migratory Bird Reserves Aare bei Solothurn und Naturschutzreservat Aare Flumenthal", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.6007784, 46.5269708 ], + [ 8.60077, 46.5268296 ], + [ 8.6007509, 46.5266889 ], + [ 8.6007212, 46.5265492 ], + [ 8.6006809, 46.5264106 ], + [ 8.6006302, 46.5262738 ], + [ 8.6005692, 46.5261389 ], + [ 8.600498, 46.5260064 ], + [ 8.600416899999999, 46.5258767 ], + [ 8.600326, 46.5257501 ], + [ 8.6002257, 46.525627 ], + [ 8.6001161, 46.5255076 ], + [ 8.5999977, 46.5253923 ], + [ 8.5998707, 46.5252815 ], + [ 8.5997355, 46.5251755 ], + [ 8.5995924, 46.5250744 ], + [ 8.5994419, 46.5249787 ], + [ 8.5992843, 46.5248886 ], + [ 8.59912, 46.5248042 ], + [ 8.5989497, 46.5247259 ], + [ 8.5987736, 46.5246539 ], + [ 8.5985923, 46.5245883 ], + [ 8.5984062, 46.5245294 ], + [ 8.598216, 46.5244772 ], + [ 8.598022, 46.5244321 ], + [ 8.597824899999999, 46.5243939 ], + [ 8.5976252, 46.524363 ], + [ 8.5974234, 46.5243393 ], + [ 8.5972201, 46.5243229 ], + [ 8.5970158, 46.5243139 ], + [ 8.5968112, 46.5243123 ], + [ 8.5966066, 46.5243181 ], + [ 8.5964028, 46.5243312 ], + [ 8.5962003, 46.5243518 ], + [ 8.5959996, 46.5243796 ], + [ 8.5958013, 46.5244146 ], + [ 8.5956059, 46.5244567 ], + [ 8.595414, 46.5245058 ], + [ 8.5952261, 46.5245618 ], + [ 8.5950426, 46.5246245 ], + [ 8.5948642, 46.5246937 ], + [ 8.5946913, 46.5247693 ], + [ 8.5945243, 46.524851 ], + [ 8.5943638, 46.5249387 ], + [ 8.5942101, 46.525032 ], + [ 8.5940637, 46.5251308 ], + [ 8.593925, 46.5252347 ], + [ 8.5937944, 46.5253435 ], + [ 8.5936722, 46.5254568 ], + [ 8.593558699999999, 46.525574399999996 ], + [ 8.5934543, 46.5256959 ], + [ 8.5933593, 46.5258211 ], + [ 8.5932739, 46.5259495 ], + [ 8.5931984, 46.5260808 ], + [ 8.5931329, 46.5262147 ], + [ 8.5930777, 46.5263507 ], + [ 8.5930328, 46.5264886 ], + [ 8.5929985, 46.5266279 ], + [ 8.5929747, 46.5267682 ], + [ 8.5929617, 46.5269092 ], + [ 8.5929593, 46.5270505 ], + [ 8.592967699999999, 46.5271916 ], + [ 8.5929868, 46.5273323 ], + [ 8.5930165, 46.5274721 ], + [ 8.5930567, 46.5276106 ], + [ 8.5931074, 46.5277475 ], + [ 8.5931685, 46.5278824 ], + [ 8.5932396, 46.5280148 ], + [ 8.5933207, 46.5281446 ], + [ 8.5934116, 46.5282712 ], + [ 8.5935119, 46.5283943 ], + [ 8.5936214, 46.5285137 ], + [ 8.5937398, 46.5286289 ], + [ 8.5938668, 46.5287398 ], + [ 8.594002, 46.5288458 ], + [ 8.5941451, 46.5289469 ], + [ 8.5942957, 46.5290426 ], + [ 8.5944533, 46.5291328 ], + [ 8.5946175, 46.5292171 ], + [ 8.5947879, 46.5292954 ], + [ 8.594964, 46.5293675 ], + [ 8.5951453, 46.529433 ], + [ 8.5953314, 46.529492 ], + [ 8.5955216, 46.5295441 ], + [ 8.5957156, 46.5295893 ], + [ 8.5959127, 46.5296274 ], + [ 8.596112399999999, 46.5296584 ], + [ 8.5963143, 46.5296821 ], + [ 8.5965176, 46.5296985 ], + [ 8.5967219, 46.5297075 ], + [ 8.5969266, 46.5297091 ], + [ 8.5971311, 46.5297033 ], + [ 8.5973349, 46.5296901 ], + [ 8.5975375, 46.5296696 ], + [ 8.5977382, 46.5296418 ], + [ 8.5979365, 46.5296068 ], + [ 8.5981319, 46.5295647 ], + [ 8.5983239, 46.5295156 ], + [ 8.5985118, 46.5294596 ], + [ 8.5986953, 46.5293969 ], + [ 8.5988737, 46.5293276 ], + [ 8.5990466, 46.529252 ], + [ 8.5992136, 46.5291703 ], + [ 8.5993742, 46.5290826 ], + [ 8.5995278, 46.5289893 ], + [ 8.599674199999999, 46.5288905 ], + [ 8.5998129, 46.5287866 ], + [ 8.5999436, 46.5286778 ], + [ 8.6000658, 46.5285645 ], + [ 8.6001792, 46.5284469 ], + [ 8.600283600000001, 46.5283253 ], + [ 8.600378599999999, 46.5282002 ], + [ 8.6004639, 46.5280718 ], + [ 8.6005395, 46.5279405 ], + [ 8.6006049, 46.5278066 ], + [ 8.6006602, 46.5276705 ], + [ 8.600705, 46.5275327 ], + [ 8.6007393, 46.5273934 ], + [ 8.600763, 46.5272531 ], + [ 8.6007761, 46.5271121 ], + [ 8.6007784, 46.5269708 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0002", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Airolo", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Airolo", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Airolo", + "lang" : "it-CH" + }, + { + "text" : "Substation Airolo", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6178447, 47.2268233 ], + [ 7.6178388, 47.2266821 ], + [ 7.6178221, 47.2265413 ], + [ 7.6177946, 47.2264013 ], + [ 7.6177563, 47.2262625 ], + [ 7.6177074000000005, 47.2261252 ], + [ 7.6176481, 47.2259898 ], + [ 7.6175784, 47.2258567 ], + [ 7.6174986, 47.2257263 ], + [ 7.6174089, 47.225599 ], + [ 7.6173096000000005, 47.225475 ], + [ 7.6172008, 47.2253547 ], + [ 7.617083, 47.2252385 ], + [ 7.6169563, 47.2251266 ], + [ 7.6168213, 47.2250194 ], + [ 7.6166782, 47.2249171 ], + [ 7.6165275, 47.2248201 ], + [ 7.6163695, 47.2247286 ], + [ 7.6162047, 47.2246428 ], + [ 7.6160335, 47.2245631 ], + [ 7.6158564, 47.2244896 ], + [ 7.615674, 47.2244224 ], + [ 7.6154866, 47.2243619 ], + [ 7.6152949, 47.2243081 ], + [ 7.6150991999999995, 47.2242613 ], + [ 7.6149003, 47.2242215 ], + [ 7.6146985, 47.2241888 ], + [ 7.6144945, 47.2241633 ], + [ 7.6142889, 47.2241452 ], + [ 7.6140821, 47.2241345 ], + [ 7.6138748, 47.2241311 ], + [ 7.6136675, 47.2241351 ], + [ 7.6134608, 47.2241465 ], + [ 7.6132553, 47.2241652 ], + [ 7.6130514, 47.2241913 ], + [ 7.6128499, 47.2242246 ], + [ 7.6126512, 47.224265 ], + [ 7.6124559, 47.2243125 ], + [ 7.6122645, 47.2243668 ], + [ 7.6120775, 47.2244279 ], + [ 7.6118955, 47.2244956 ], + [ 7.6117189, 47.2245697 ], + [ 7.6115482, 47.2246499 ], + [ 7.611384, 47.2247362 ], + [ 7.6112266, 47.2248282 ], + [ 7.6110765, 47.2249256 ], + [ 7.6109341, 47.2250283 ], + [ 7.6107997, 47.225136 ], + [ 7.6106738, 47.2252482 ], + [ 7.6105567, 47.2253648 ], + [ 7.6104488, 47.2254854 ], + [ 7.6103502, 47.2256097 ], + [ 7.6102613, 47.2257374 ], + [ 7.6101824, 47.225868 ], + [ 7.6101136, 47.2260013 ], + [ 7.6100551, 47.2261368 ], + [ 7.6100072, 47.2262743 ], + [ 7.6099698, 47.2264132 ], + [ 7.6099432, 47.2265533 ], + [ 7.6099274, 47.2266942 ], + [ 7.6099224, 47.2268354 ], + [ 7.6099283, 47.2269766 ], + [ 7.609945, 47.2271174 ], + [ 7.6099725, 47.2272575 ], + [ 7.6100107, 47.2273963 ], + [ 7.6100596, 47.2275336 ], + [ 7.6101189, 47.227669 ], + [ 7.6101886, 47.227802 ], + [ 7.6102682999999995, 47.2279324 ], + [ 7.610358, 47.2280598 ], + [ 7.6104574, 47.2281838 ], + [ 7.6105661, 47.2283041 ], + [ 7.6106839, 47.2284203 ], + [ 7.6108106, 47.2285322 ], + [ 7.6109456, 47.2286394 ], + [ 7.6110887, 47.2287417 ], + [ 7.6112394, 47.2288387 ], + [ 7.6113973999999995, 47.2289302 ], + [ 7.6115622, 47.229016 ], + [ 7.6117334, 47.2290957 ], + [ 7.6119105000000005, 47.2291693 ], + [ 7.612093, 47.2292364 ], + [ 7.6122803, 47.229297 ], + [ 7.6124721, 47.2293507 ], + [ 7.6126678, 47.2293976 ], + [ 7.6128667, 47.2294374 ], + [ 7.6130685, 47.2294701 ], + [ 7.6132725, 47.2294955 ], + [ 7.6134782, 47.2295137 ], + [ 7.613685, 47.2295244 ], + [ 7.6138923, 47.2295278 ], + [ 7.6140996, 47.2295238 ], + [ 7.6143064, 47.2295124 ], + [ 7.6145119, 47.2294936 ], + [ 7.6147157, 47.2294676 ], + [ 7.6149173, 47.2294343 ], + [ 7.615116, 47.2293939 ], + [ 7.6153113999999995, 47.2293464 ], + [ 7.6155028, 47.2292921 ], + [ 7.6156898, 47.2292309 ], + [ 7.6158718, 47.2291633 ], + [ 7.6160484, 47.2290892 ], + [ 7.6162191, 47.2290089 ], + [ 7.6163833, 47.2289226 ], + [ 7.6165407, 47.2288306 ], + [ 7.6166908, 47.2287332 ], + [ 7.6168332, 47.2286305 ], + [ 7.6169676, 47.2285228 ], + [ 7.6170935, 47.2284106 ], + [ 7.6172105, 47.228294 ], + [ 7.6173185, 47.2281733 ], + [ 7.617417, 47.228049 ], + [ 7.6175059, 47.2279214 ], + [ 7.6175847999999995, 47.2277908 ], + [ 7.6176536, 47.2276575 ], + [ 7.6177121, 47.2275219 ], + [ 7.6177600000000005, 47.2273845 ], + [ 7.6177974, 47.2272455 ], + [ 7.617824, 47.2271054 ], + [ 7.6178398, 47.2269646 ], + [ 7.6178447, 47.2268233 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SOD0001", + "country" : "CHE", + "name" : [ + { + "text" : "JVA Solothurn", + "lang" : "de-CH" + }, + { + "text" : "JVA Solothurn", + "lang" : "fr-CH" + }, + { + "text" : "JVA Solothurn", + "lang" : "it-CH" + }, + { + "text" : "JVA Solothurn", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Justizvollzug des Kantons Solothurn", + "lang" : "de-CH" + }, + { + "text" : "Amt für Justizvollzug des Kantons Solothurn", + "lang" : "fr-CH" + }, + { + "text" : "Amt für Justizvollzug des Kantons Solothurn", + "lang" : "it-CH" + }, + { + "text" : "Amt für Justizvollzug des Kantons Solothurn", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Amtsleitung", + "lang" : "de-CH" + }, + { + "text" : "Direction de l'office", + "lang" : "fr-CH" + }, + { + "text" : "Direzione dell'ufficio", + "lang" : "it-CH" + }, + { + "text" : "Head of Division", + "lang" : "en-GB" + } + ], + "siteURL" : "https://so.ch/verwaltung/departement-des-innern/amt-fuer-justizvollzug/", + "email" : "ajuv@ddi.so.ch", + "phone" : "0041326276336", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.350519, 47.4269258 ], + [ 7.3505558, 47.4269379 ], + [ 7.350634, 47.426959 ], + [ 7.3507142, 47.4269766 ], + [ 7.3507457, 47.4269819 ], + [ 7.3508664, 47.4267809 ], + [ 7.3511402, 47.4266312 ], + [ 7.3514245, 47.4264529 ], + [ 7.3518771, 47.4263319 ], + [ 7.3523191, 47.4262109 ], + [ 7.3525611, 47.4261825 ], + [ 7.3529188, 47.4261899 ], + [ 7.3531924, 47.4261401 ], + [ 7.353487, 47.426069 ], + [ 7.3537923, 47.4259478 ], + [ 7.3541503, 47.4257268 ], + [ 7.3546869, 47.4256772 ], + [ 7.3555076, 47.4255921 ], + [ 7.3559495, 47.4255425 ], + [ 7.3561389, 47.4255284 ], + [ 7.3557116, 47.4245965 ], + [ 7.3556405, 47.4244411 ], + [ 7.3556326, 47.4244382 ], + [ 7.3556118999999995, 47.4244299 ], + [ 7.355111, 47.4245358 ], + [ 7.3544354, 47.4245707 ], + [ 7.3541317, 47.4246427 ], + [ 7.3537803, 47.4246689 ], + [ 7.3531575, 47.4247545 ], + [ 7.3523577, 47.4248827 ], + [ 7.3512893, 47.4251873 ], + [ 7.3512131, 47.4251999 ], + [ 7.3511616, 47.4252085 ], + [ 7.3500684, 47.4253461 ], + [ 7.3495653, 47.4253864 ], + [ 7.3488962, 47.4254085 ], + [ 7.3487522, 47.4253965 ], + [ 7.3484437, 47.4254905 ], + [ 7.3482362, 47.4255732 ], + [ 7.3478409, 47.4255989 ], + [ 7.3477082, 47.4256664 ], + [ 7.347605, 47.4258077 ], + [ 7.3476362, 47.4259892 ], + [ 7.3483852, 47.425908 ], + [ 7.3488375999999995, 47.4258869 ], + [ 7.3492128, 47.4259606 ], + [ 7.349458, 47.4260088 ], + [ 7.3498787, 47.4261019 ], + [ 7.3501179, 47.4266401 ], + [ 7.3501389, 47.4266734 ], + [ 7.3502632, 47.4267782 ], + [ 7.3503454999999995, 47.4268378 ], + [ 7.3503826, 47.4268622 ], + [ 7.3504224, 47.4268846 ], + [ 7.3504648, 47.4269047 ], + [ 7.3505093, 47.4269226 ], + [ 7.350519, 47.4269258 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns323", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Berg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Berg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Berg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Berg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.849012, 47.3815977 ], + [ 7.8490231, 47.3816936 ], + [ 7.8492099, 47.3818007 ], + [ 7.8492823, 47.3818075 ], + [ 7.8493448, 47.3817838 ], + [ 7.8493645, 47.3817463 ], + [ 7.8492916, 47.381674 ], + [ 7.8492465, 47.3816321 ], + [ 7.84926, 47.3815945 ], + [ 7.8494687, 47.3814252 ], + [ 7.8496123, 47.3812796 ], + [ 7.8498038999999995, 47.3811104 ], + [ 7.8499681, 47.3809669 ], + [ 7.8500157, 47.3808802 ], + [ 7.8500601, 47.3808426 ], + [ 7.8500233, 47.3808054 ], + [ 7.849984, 47.3807866 ], + [ 7.8499012, 47.3807869 ], + [ 7.8497643, 47.3808881 ], + [ 7.8495867, 47.3810736 ], + [ 7.8495111, 47.3811021 ], + [ 7.8493879, 47.3812102 ], + [ 7.8493028, 47.3813415 ], + [ 7.84906, 47.3815718 ], + [ 7.849012, 47.3815977 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns203", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Hecken-Komplex Schmutzberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Hecken-Komplex Schmutzberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Hecken-Komplex Schmutzberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Hecken-Komplex Schmutzberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.4732188, 46.5417862 ], + [ 6.4732159, 46.5416449 ], + [ 6.4732024, 46.5415039 ], + [ 6.4731781999999995, 46.5413636 ], + [ 6.4731433, 46.5412244 ], + [ 6.473098, 46.5410866 ], + [ 6.4730423, 46.5409507 ], + [ 6.4729763, 46.5408169 ], + [ 6.4729003, 46.5406857 ], + [ 6.4728144, 46.5405575 ], + [ 6.472719, 46.5404325 ], + [ 6.4726141, 46.5403111 ], + [ 6.4725003, 46.5401937 ], + [ 6.4723776, 46.5400805 ], + [ 6.4722466, 46.539972 ], + [ 6.4721075, 46.5398683 ], + [ 6.4719607, 46.5397698 ], + [ 6.4718067, 46.5396767 ], + [ 6.4716458, 46.5395893 ], + [ 6.4714785, 46.5395079 ], + [ 6.4713053, 46.5394326 ], + [ 6.4711265000000004, 46.5393636 ], + [ 6.4709427999999996, 46.5393012 ], + [ 6.4707547, 46.5392455 ], + [ 6.4705625, 46.5391967 ], + [ 6.4703669, 46.5391549 ], + [ 6.4701685, 46.5391203 ], + [ 6.4699676, 46.5390928 ], + [ 6.469765, 46.5390726 ], + [ 6.4695611, 46.5390598 ], + [ 6.4693565, 46.5390544 ], + [ 6.4691517, 46.5390563 ], + [ 6.4689474, 46.5390656 ], + [ 6.4687441, 46.5390823 ], + [ 6.4685424, 46.5391064 ], + [ 6.4683427, 46.5391377 ], + [ 6.4681457, 46.5391761 ], + [ 6.4679518, 46.5392216 ], + [ 6.4677617, 46.5392741 ], + [ 6.4675758, 46.5393333 ], + [ 6.4673947, 46.5393992 ], + [ 6.4672188, 46.5394715 ], + [ 6.4670486, 46.5395501 ], + [ 6.4668847, 46.5396347 ], + [ 6.4667273, 46.5397251 ], + [ 6.4665771, 46.5398211 ], + [ 6.4664342999999995, 46.5399223 ], + [ 6.4662994, 46.5400286 ], + [ 6.4661728, 46.5401396 ], + [ 6.4660547, 46.5402551 ], + [ 6.4659455999999995, 46.5403746 ], + [ 6.4658456, 46.5404979 ], + [ 6.4657552, 46.5406247 ], + [ 6.4656745, 46.5407545 ], + [ 6.4656038, 46.5408871 ], + [ 6.4655432, 46.5410221 ], + [ 6.4654929, 46.541159 ], + [ 6.4654530999999995, 46.5412976 ], + [ 6.4654238, 46.5414375 ], + [ 6.4654052, 46.541578200000004 ], + [ 6.4653973, 46.5417194 ], + [ 6.4654002, 46.5418606 ], + [ 6.4654137, 46.5420016 ], + [ 6.4654378999999995, 46.5421419 ], + [ 6.4654727, 46.5422811 ], + [ 6.465518, 46.5424189 ], + [ 6.4655737, 46.5425549 ], + [ 6.4656397, 46.5426886 ], + [ 6.4657157, 46.5428198 ], + [ 6.4658014999999995, 46.5429481 ], + [ 6.465897, 46.5430731 ], + [ 6.4660018, 46.5431945 ], + [ 6.4661157, 46.5433119 ], + [ 6.4662383, 46.543425 ], + [ 6.4663694, 46.5435336 ], + [ 6.4665084, 46.5436373 ], + [ 6.4666552, 46.5437358 ], + [ 6.4668092999999995, 46.5438289 ], + [ 6.4669701, 46.5439163 ], + [ 6.4671374, 46.5439977 ], + [ 6.4673107, 46.5440731 ], + [ 6.4674894, 46.544142 ], + [ 6.4676731, 46.5442044 ], + [ 6.4678613, 46.5442601 ], + [ 6.4680535, 46.5443089 ], + [ 6.4682490999999995, 46.5443507 ], + [ 6.4684476, 46.5443854 ], + [ 6.4686485, 46.5444129 ], + [ 6.4688511, 46.544433 ], + [ 6.469055, 46.5444459 ], + [ 6.4692597, 46.5444513 ], + [ 6.4694644, 46.5444493 ], + [ 6.4696687, 46.54444 ], + [ 6.4698721, 46.5444233 ], + [ 6.4700738, 46.5443993 ], + [ 6.4702735, 46.544368 ], + [ 6.4704706, 46.5443295 ], + [ 6.4706644, 46.544284 ], + [ 6.4708546, 46.5442316 ], + [ 6.4710404, 46.5441723 ], + [ 6.4712216, 46.5441065 ], + [ 6.4713975, 46.5440341 ], + [ 6.4715677, 46.5439555 ], + [ 6.4717316, 46.5438709 ], + [ 6.471889, 46.5437805 ], + [ 6.4720392, 46.5436845 ], + [ 6.472182, 46.5435832 ], + [ 6.4723169, 46.5434769 ], + [ 6.4724435, 46.5433659 ], + [ 6.4725616, 46.5432505 ], + [ 6.4726707, 46.5431309 ], + [ 6.4727706, 46.5430076 ], + [ 6.4728611, 46.5428808 ], + [ 6.4729418, 46.542751 ], + [ 6.4730125, 46.5426184 ], + [ 6.4730731, 46.5424834 ], + [ 6.4731233, 46.5423465 ], + [ 6.4731631, 46.5422079 ], + [ 6.4731923, 46.542068 ], + [ 6.4732109, 46.5419273 ], + [ 6.4732188, 46.5417862 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0122", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Vaux", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Vaux", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Vaux", + "lang" : "it-CH" + }, + { + "text" : "Substation Vaux", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5538233, 47.4580094 ], + [ 7.5525953, 47.4580225 ], + [ 7.5502446, 47.4581081 ], + [ 7.5486474999999995, 47.4578478 ], + [ 7.5473662, 47.4575278 ], + [ 7.5461727, 47.457279 ], + [ 7.5460276, 47.457752 ], + [ 7.5460378, 47.4577929 ], + [ 7.545991, 47.45786 ], + [ 7.5459602, 47.4579117 ], + [ 7.5458074, 47.458025 ], + [ 7.5458144, 47.4582008 ], + [ 7.5458001, 47.4585795 ], + [ 7.5457985, 47.458712 ], + [ 7.5460441, 47.4588648 ], + [ 7.5460515, 47.4588689 ], + [ 7.546261, 47.4589296 ], + [ 7.5463316, 47.4589587 ], + [ 7.5463725, 47.4589707 ], + [ 7.5465397, 47.4590448 ], + [ 7.5466864000000005, 47.4591055 ], + [ 7.5468668, 47.4591733 ], + [ 7.5473161, 47.4593612 ], + [ 7.5475747, 47.459525 ], + [ 7.5473129, 47.4597446 ], + [ 7.547398, 47.4597693 ], + [ 7.5476794, 47.4598413 ], + [ 7.5482521, 47.4598407 ], + [ 7.548532, 47.4598789 ], + [ 7.5487265, 47.4598986 ], + [ 7.5489217, 47.4599321 ], + [ 7.5489957, 47.4599422 ], + [ 7.549771, 47.4600738 ], + [ 7.55164, 47.4602083 ], + [ 7.5532577, 47.4602953 ], + [ 7.5536497, 47.4603699 ], + [ 7.5537498, 47.4602335 ], + [ 7.553599, 47.460186 ], + [ 7.5526138, 47.4598871 ], + [ 7.5521815, 47.4597445 ], + [ 7.5517192, 47.4596632 ], + [ 7.5508751, 47.4595686 ], + [ 7.5506639, 47.4594666 ], + [ 7.5504928, 47.45931 ], + [ 7.5503919, 47.4590853 ], + [ 7.5512942, 47.4588791 ], + [ 7.5521074, 47.4586057 ], + [ 7.5538233, 47.4580094 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr028", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Blatte", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Blatte", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Blatte", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Blatte", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.1622969, 46.8032871 ], + [ 7.1637795, 46.8040773 ], + [ 7.1644046, 46.8041811 ], + [ 7.1648234, 46.804073 ], + [ 7.1656196, 46.8035978 ], + [ 7.1662062, 46.8031794 ], + [ 7.1671904, 46.8024846 ], + [ 7.1666648, 46.8009181 ], + [ 7.1628948, 46.8015136 ], + [ 7.1627453, 46.8029777 ], + [ 7.1622969, 46.8032871 ] + ] + ], + "layer" : { + "upper" : 300, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "FR001", + "country" : "CHE", + "name" : [ + { + "text" : "Etablissement pénitentiaire \"Prison centrale\" et Maison \"Les Falaises\"", + "lang" : "de-CH" + }, + { + "text" : "Etablissement pénitentiaire \"Prison centrale\" et Maison \"Les Falaises\"", + "lang" : "fr-CH" + }, + { + "text" : "Etablissement pénitentiaire \"Prison centrale\" et Maison \"Les Falaises\"", + "lang" : "it-CH" + }, + { + "text" : "Etablissement pénitentiaire \"Prison centrale\" et Maison \"Les Falaises\"", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Freiburger Strafanstalt (FRSA)", + "lang" : "de-CH" + }, + { + "text" : "Etablissement de détention fribourgeois (EDFR)", + "lang" : "fr-CH" + }, + { + "text" : "Etablissement de détention fribourgeois (EDFR)", + "lang" : "it-CH" + }, + { + "text" : "Etablissement de détention fribourgeois (EDFR)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Direktor", + "lang" : "de-CH" + }, + { + "text" : "Directeur", + "lang" : "fr-CH" + }, + { + "text" : "Directeur", + "lang" : "it-CH" + }, + { + "text" : "Directeur", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Guido Sturny", + "lang" : "de-CH" + }, + { + "text" : "Guido Sturny", + "lang" : "fr-CH" + }, + { + "text" : "Guido Sturny", + "lang" : "it-CH" + }, + { + "text" : "Guido Sturny", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.fr.ch/police-et-securite/criminalite-ordre-public-et-circulation/drones-legislation-et-demandes-de-derogation", + "email" : "edfr-eb_Bellechasse@fr.ch", + "phone" : "0041263041010", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.382897700000001, 46.8113075 ], + [ 9.3828872, 46.8111664 ], + [ 9.382866, 46.8110259 ], + [ 9.3828341, 46.8108863 ], + [ 9.382791600000001, 46.810748 ], + [ 9.3827386, 46.8106115 ], + [ 9.3826753, 46.8104771 ], + [ 9.3826018, 46.8103451 ], + [ 9.3825184, 46.810216 ], + [ 9.3824252, 46.81009 ], + [ 9.3823226, 46.8099676 ], + [ 9.3822107, 46.809849 ], + [ 9.38209, 46.8097345 ], + [ 9.3819608, 46.8096246 ], + [ 9.3818233, 46.8095195 ], + [ 9.381678, 46.8094194 ], + [ 9.3815252, 46.8093248 ], + [ 9.3813655, 46.8092357 ], + [ 9.3811992, 46.8091525 ], + [ 9.3810268, 46.8090754 ], + [ 9.3808487, 46.8090046 ], + [ 9.3806655, 46.8089402 ], + [ 9.3804777, 46.8088826 ], + [ 9.3802857, 46.8088318 ], + [ 9.38009, 46.8087879 ], + [ 9.3798914, 46.8087512 ], + [ 9.3796902, 46.8087216 ], + [ 9.379487, 46.8086993 ], + [ 9.3792823, 46.8086843 ], + [ 9.3790769, 46.8086767 ], + [ 9.3788711, 46.8086765 ], + [ 9.3786656, 46.8086837 ], + [ 9.3784609, 46.8086983 ], + [ 9.3782576, 46.8087202 ], + [ 9.3780563, 46.8087493 ], + [ 9.3778574, 46.8087857 ], + [ 9.3776617, 46.8088292 ], + [ 9.3774694, 46.8088796 ], + [ 9.3772813, 46.8089369 ], + [ 9.3770979, 46.8090008 ], + [ 9.3769195, 46.8090713 ], + [ 9.3767468, 46.8091481 ], + [ 9.3765801, 46.8092309 ], + [ 9.37642, 46.8093197 ], + [ 9.3762669, 46.8094141 ], + [ 9.3761212, 46.8095138 ], + [ 9.3759832, 46.8096187 ], + [ 9.3758535, 46.8097283 ], + [ 9.3757323, 46.8098425 ], + [ 9.37562, 46.8099609 ], + [ 9.3755168, 46.8100831 ], + [ 9.3754231, 46.8102089 ], + [ 9.3753391, 46.8103379 ], + [ 9.3752651, 46.8104697 ], + [ 9.3752012, 46.810604 ], + [ 9.3751477, 46.8107405 ], + [ 9.3751046, 46.8108786 ], + [ 9.3750721, 46.8110181 ], + [ 9.3750503, 46.8111586 ], + [ 9.3750392, 46.8112997 ], + [ 9.3750389, 46.811441 ], + [ 9.3750493, 46.8115821 ], + [ 9.3750705, 46.8117226 ], + [ 9.3751024, 46.8118622 ], + [ 9.3751449, 46.8120004 ], + [ 9.3751979, 46.8121369 ], + [ 9.3752612, 46.8122714 ], + [ 9.3753347, 46.8124033 ], + [ 9.3754181, 46.8125325 ], + [ 9.3755112, 46.8126585 ], + [ 9.3756138, 46.8127809 ], + [ 9.3757257, 46.8128995 ], + [ 9.3758464, 46.813014 ], + [ 9.3759757, 46.8131239 ], + [ 9.3761131, 46.813229 ], + [ 9.3762584, 46.8133291 ], + [ 9.3764112, 46.8134238 ], + [ 9.3765709, 46.8135128 ], + [ 9.3767372, 46.8135961 ], + [ 9.3769096, 46.8136732 ], + [ 9.3770877, 46.813744 ], + [ 9.3772709, 46.8138083 ], + [ 9.3774588, 46.813866 ], + [ 9.3776508, 46.8139168 ], + [ 9.3778464, 46.8139607 ], + [ 9.3780451, 46.8139974 ], + [ 9.3782464, 46.814027 ], + [ 9.3784496, 46.8140493 ], + [ 9.3786542, 46.8140643 ], + [ 9.3788597, 46.8140719 ], + [ 9.3790655, 46.8140721 ], + [ 9.379271, 46.8140649 ], + [ 9.3794757, 46.8140503 ], + [ 9.379679, 46.8140284 ], + [ 9.3798804, 46.8139992 ], + [ 9.3800793, 46.8139629 ], + [ 9.3802751, 46.8139194 ], + [ 9.3804673, 46.813869 ], + [ 9.3806554, 46.8138117 ], + [ 9.3808389, 46.8137477 ], + [ 9.3810173, 46.8136773 ], + [ 9.38119, 46.8136005 ], + [ 9.3813567, 46.8135176 ], + [ 9.3815168, 46.8134288 ], + [ 9.3816699, 46.8133344 ], + [ 9.3818156, 46.8132347 ], + [ 9.3819536, 46.8131298 ], + [ 9.3820833, 46.8130202 ], + [ 9.3822045, 46.812906 ], + [ 9.3823168, 46.8127876 ], + [ 9.38242, 46.8126653 ], + [ 9.3825136, 46.8125395 ], + [ 9.3825976, 46.8124106 ], + [ 9.3826716, 46.8122787 ], + [ 9.3827355, 46.8121444 ], + [ 9.382789, 46.812008 ], + [ 9.3828321, 46.8118699 ], + [ 9.3828646, 46.8117303 ], + [ 9.3828864, 46.8115899 ], + [ 9.3828974, 46.8114488 ], + [ 9.382897700000001, 46.8113075 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0018", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Bonaduz", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Bonaduz", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Bonaduz", + "lang" : "it-CH" + }, + { + "text" : "Substation Bonaduz", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5046710999999995, 47.3897976 ], + [ 7.5045733, 47.3898641 ], + [ 7.5047894, 47.389892 ], + [ 7.5051056, 47.3898499 ], + [ 7.5052193, 47.3898574 ], + [ 7.5053882, 47.3900107 ], + [ 7.5054634, 47.3900067 ], + [ 7.5054329, 47.3898358 ], + [ 7.5056595, 47.3898162 ], + [ 7.5059864, 47.3898043 ], + [ 7.505983, 47.3897763 ], + [ 7.5059823, 47.389771 ], + [ 7.5059812, 47.389762 ], + [ 7.5058708, 47.3896122 ], + [ 7.5056929, 47.3895287 ], + [ 7.5053878, 47.3894493 ], + [ 7.5051688, 47.3894472 ], + [ 7.5049691, 47.3893964 ], + [ 7.5048743, 47.3892634 ], + [ 7.5047745, 47.3891803 ], + [ 7.5046853, 47.389106 ], + [ 7.5043823, 47.3892059 ], + [ 7.5041257, 47.3893168 ], + [ 7.5039656, 47.3893776 ], + [ 7.5037217, 47.3893161 ], + [ 7.5034334000000005, 47.3893064 ], + [ 7.5033102, 47.3892979 ], + [ 7.5031367, 47.3893331 ], + [ 7.5031492, 47.3893782 ], + [ 7.5031505, 47.3893829 ], + [ 7.5031531000000005, 47.389392 ], + [ 7.5033973, 47.3893992 ], + [ 7.5034469999999995, 47.3895032 ], + [ 7.5036886, 47.3895162 ], + [ 7.5039177, 47.3896428 ], + [ 7.504024, 47.3896773 ], + [ 7.5041334, 47.3896266 ], + [ 7.5044, 47.3897103 ], + [ 7.5046146, 47.3897079 ], + [ 7.5046710999999995, 47.3897976 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns144", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Stürmen - Eggfels - Bännli", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Stürmen - Eggfels - Bännli", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Stürmen - Eggfels - Bännli", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Stürmen - Eggfels - Bännli", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.9209092, 46.3775808 ], + [ 6.9206541999999995, 46.3775854 ], + [ 6.9204001, 46.3776015 ], + [ 6.9201481, 46.3776291 ], + [ 6.9198992, 46.3776681 ], + [ 6.9196545, 46.3777182 ], + [ 6.9194151, 46.3777793 ], + [ 6.919182, 46.3778512 ], + [ 6.9189562, 46.3779334 ], + [ 6.9187386, 46.3780256 ], + [ 6.9185303, 46.3781275 ], + [ 6.9183319999999995, 46.3782387 ], + [ 6.9181446, 46.3783585 ], + [ 6.9179689, 46.3784866 ], + [ 6.9178057, 46.3786224 ], + [ 6.9176557, 46.3787652 ], + [ 6.9175195, 46.3789146 ], + [ 6.9173978, 46.3790697 ], + [ 6.9172909, 46.3792301 ], + [ 6.9171994, 46.379395 ], + [ 6.9171237, 46.3795636 ], + [ 6.9170641, 46.3797353 ], + [ 6.9170209, 46.3799094 ], + [ 6.9169941999999995, 46.380085 ], + [ 6.9169846, 46.3802331 ], + [ 6.9169813, 46.3803687 ], + [ 6.9169874, 46.3805737 ], + [ 6.9170107, 46.3807495 ], + [ 6.9170506, 46.3809239 ], + [ 6.9171069, 46.3810962 ], + [ 6.9171794, 46.3812655 ], + [ 6.9172677, 46.3814312 ], + [ 6.9173714, 46.3815925 ], + [ 6.9174902, 46.3817488 ], + [ 6.9176234999999995, 46.3818994 ], + [ 6.9177707999999996, 46.3820436 ], + [ 6.9179313, 46.3821809 ], + [ 6.9181045, 46.3823106 ], + [ 6.9182896, 46.3824322 ], + [ 6.9184858, 46.3825451 ], + [ 6.9186922, 46.3826489 ], + [ 6.918908, 46.3827432 ], + [ 6.9191322, 46.3828275 ], + [ 6.919364, 46.3829014 ], + [ 6.9196022, 46.3829647 ], + [ 6.9198459, 46.3830171 ], + [ 6.920094, 46.3830583 ], + [ 6.9203455, 46.3830882 ], + [ 6.9205993, 46.3831067 ], + [ 6.9208269, 46.3831135 ], + [ 6.921415, 46.383119 ], + [ 6.9216974, 46.3831146 ], + [ 6.9219515, 46.3830985 ], + [ 6.9222036, 46.3830708 ], + [ 6.9224525, 46.3830319 ], + [ 6.9226972, 46.3829817 ], + [ 6.9229366, 46.3829206 ], + [ 6.9231697, 46.3828488 ], + [ 6.9233955, 46.3827666 ], + [ 6.9236131, 46.3826743 ], + [ 6.9238215, 46.3825724 ], + [ 6.9240198, 46.3824612 ], + [ 6.9242072, 46.3823414 ], + [ 6.9243829, 46.3822133 ], + [ 6.9245461, 46.3820775 ], + [ 6.924696, 46.3819346 ], + [ 6.9248322, 46.3817853 ], + [ 6.924954, 46.3816301 ], + [ 6.9250608, 46.3814697 ], + [ 6.9251523, 46.3813049 ], + [ 6.9252279, 46.3811362 ], + [ 6.9252875, 46.3809645 ], + [ 6.9253307, 46.3807904 ], + [ 6.9253574, 46.3806148 ], + [ 6.9253674, 46.3804383 ], + [ 6.9253687, 46.3803027 ], + [ 6.925362, 46.3801262 ], + [ 6.9253387, 46.3799503 ], + [ 6.9252988, 46.3797759 ], + [ 6.9252424999999995, 46.3796036 ], + [ 6.92517, 46.3794343 ], + [ 6.9250817, 46.3792686 ], + [ 6.9249779, 46.3791073 ], + [ 6.9248591, 46.378951 ], + [ 6.9247258, 46.3788004 ], + [ 6.9245785, 46.3786562 ], + [ 6.924418, 46.378519 ], + [ 6.9242448, 46.3783893 ], + [ 6.9240597, 46.3782677 ], + [ 6.9238634999999995, 46.3781548 ], + [ 6.9236571, 46.378051 ], + [ 6.9234413, 46.3779567 ], + [ 6.9232171000000005, 46.3778725 ], + [ 6.9229853, 46.3777985 ], + [ 6.9227471, 46.3777352 ], + [ 6.9225034999999995, 46.3776829 ], + [ 6.9222554, 46.3776416 ], + [ 6.9220039, 46.3776117 ], + [ 6.9217501, 46.3775932 ], + [ 6.9215226, 46.3775865 ], + [ 6.9209367, 46.3775809 ], + [ 6.9209092, 46.3775808 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00046", + "country" : "CHE", + "name" : [ + { + "text" : "HRC site de Rennaz", + "lang" : "de-CH" + }, + { + "text" : "HRC site de Rennaz", + "lang" : "fr-CH" + }, + { + "text" : "HRC site de Rennaz", + "lang" : "it-CH" + }, + { + "text" : "HRC site de Rennaz", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kantonspolizei Waadt", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale vaudoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Vaud", + "lang" : "it-CH" + }, + { + "text" : "Vaud Cantonal Police", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.pcv@vd.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.9365742, 46.8573956 ], + [ 6.9317338, 46.8539235 ], + [ 6.9323365, 46.8451978 ], + [ 6.9262221, 46.8403435 ], + [ 6.9227208000000005, 46.8430408 ], + [ 6.9194153, 46.8405124 ], + [ 6.9172563, 46.8421164 ], + [ 6.9126937, 46.8383965 ], + [ 6.9113361, 46.838876 ], + [ 6.9107787, 46.8383742 ], + [ 6.9104434999999995, 46.8386011 ], + [ 6.9073224, 46.8343299 ], + [ 6.9069844, 46.8286016 ], + [ 6.9063400999999995, 46.8284133 ], + [ 6.9013548, 46.8317606 ], + [ 6.8996742, 46.8291529 ], + [ 6.8969821, 46.8300541 ], + [ 6.8938477, 46.8312536 ], + [ 6.8953852, 46.8336025 ], + [ 6.8968101, 46.8346519 ], + [ 6.8980958, 46.8352014 ], + [ 6.8977796, 46.8354851 ], + [ 6.8982363, 46.8357013 ], + [ 6.897431, 46.8370541 ], + [ 6.8967067, 46.8367223 ], + [ 6.895991, 46.8375042 ], + [ 6.8968622, 46.8378232 ], + [ 6.8999153, 46.8404653 ], + [ 6.9017519, 46.8412656 ], + [ 6.9048027, 46.8382061 ], + [ 6.9157203, 46.8447622 ], + [ 6.9140142, 46.845886 ], + [ 6.9153373, 46.846807 ], + [ 6.9142671, 46.8473886 ], + [ 6.9145224, 46.848229 ], + [ 6.913372, 46.8484207 ], + [ 6.9134607, 46.8488727 ], + [ 6.9160094, 46.8487513 ], + [ 6.9165235, 46.8500886 ], + [ 6.9174475, 46.8505363 ], + [ 6.9194807, 46.8514046 ], + [ 6.9179827, 46.852686 ], + [ 6.9146148, 46.8526157 ], + [ 6.9143983, 46.8535718 ], + [ 6.9199336, 46.8536538 ], + [ 6.9208564, 46.8530157 ], + [ 6.9252177, 46.8541067 ], + [ 6.9242636, 46.8558305 ], + [ 6.9261963, 46.8562674 ], + [ 6.9271908, 46.8545581 ], + [ 6.9289141, 46.8549374 ], + [ 6.9293978, 46.8545392 ], + [ 6.9310309, 46.8557321 ], + [ 6.9314314, 46.8544277 ], + [ 6.9345546, 46.856419700000004 ], + [ 6.9334302, 46.8573277 ], + [ 6.9351056, 46.8585064 ], + [ 6.9365742, 46.8573956 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSMP003", + "country" : "CHE", + "name" : [ + { + "text" : "LSMP Payerne Mil (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSMP Payerne Mil (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSMP Payerne Mil (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSMP Payerne Mil (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Skyguide Special Flight Office", + "lang" : "de-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "it-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.skyguide.ch/services/special-flights", + "email" : "specialflight@skyguide.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.5683404, 46.7353257 ], + [ 6.5683373, 46.7351844 ], + [ 6.5683234, 46.7350435 ], + [ 6.5682988, 46.7349032 ], + [ 6.5682636, 46.734764 ], + [ 6.5682179, 46.7346263 ], + [ 6.5681617, 46.7344904 ], + [ 6.5680952999999995, 46.7343567 ], + [ 6.5680188, 46.7342255 ], + [ 6.5679324, 46.7340973 ], + [ 6.5678363, 46.7339724 ], + [ 6.5677309, 46.7338512 ], + [ 6.5676164, 46.7337338 ], + [ 6.5674931, 46.7336208 ], + [ 6.5673614, 46.7335123 ], + [ 6.5672216, 46.7334088 ], + [ 6.5670742, 46.7333104 ], + [ 6.5669194, 46.7332175 ], + [ 6.5667577999999995, 46.7331302 ], + [ 6.5665897, 46.7330489 ], + [ 6.5664157, 46.7329737 ], + [ 6.5662362, 46.7329049 ], + [ 6.5660518, 46.7328427 ], + [ 6.5658628, 46.7327872 ], + [ 6.5656699, 46.732738499999996 ], + [ 6.5654734999999995, 46.7326969 ], + [ 6.5652743000000005, 46.7326624 ], + [ 6.5650727, 46.7326351 ], + [ 6.5648693, 46.7326151 ], + [ 6.5646646, 46.7326024 ], + [ 6.5644593, 46.7325971 ], + [ 6.5642538, 46.7325993 ], + [ 6.5640488, 46.7326088 ], + [ 6.5638448, 46.7326257 ], + [ 6.5636423, 46.7326499 ], + [ 6.563442, 46.7326813 ], + [ 6.5632443, 46.7327199 ], + [ 6.5630499, 46.7327656 ], + [ 6.5628592, 46.7328182 ], + [ 6.5626727, 46.7328776 ], + [ 6.5624911, 46.7329436 ], + [ 6.5623147, 46.7330161 ], + [ 6.562144, 46.7330948 ], + [ 6.5619796, 46.7331795 ], + [ 6.5618219, 46.7332701 ], + [ 6.5616713, 46.7333662 ], + [ 6.5615281, 46.7334676 ], + [ 6.561393, 46.733574 ], + [ 6.561266, 46.7336851 ], + [ 6.5611478, 46.7338006 ], + [ 6.5610384, 46.7339203 ], + [ 6.5609383999999995, 46.7340437 ], + [ 6.5608478, 46.7341705 ], + [ 6.5607671, 46.7343004 ], + [ 6.5606963, 46.7344331 ], + [ 6.5606358, 46.7345681 ], + [ 6.5605856, 46.7347051 ], + [ 6.5605459, 46.7348437 ], + [ 6.5605167, 46.7349836 ], + [ 6.5604983, 46.7351243 ], + [ 6.5604907, 46.7352655 ], + [ 6.5604937, 46.7354067 ], + [ 6.5605076, 46.7355477 ], + [ 6.5605321, 46.735688 ], + [ 6.5605673, 46.7358272 ], + [ 6.560613, 46.7359649 ], + [ 6.5606691999999995, 46.7361008 ], + [ 6.5607356, 46.7362345 ], + [ 6.5608121, 46.7363657 ], + [ 6.5608985, 46.7364939 ], + [ 6.5609945, 46.7366188 ], + [ 6.5610999, 46.7367401 ], + [ 6.5612144, 46.7368574 ], + [ 6.5613377, 46.7369704 ], + [ 6.5614694, 46.7370789 ], + [ 6.5616091999999995, 46.7371825 ], + [ 6.5617566, 46.7372808 ], + [ 6.5619114, 46.7373738 ], + [ 6.562073, 46.7374611 ], + [ 6.5622411, 46.7375424 ], + [ 6.5624151, 46.7376176 ], + [ 6.5625946, 46.7376864 ], + [ 6.5627791, 46.7377486 ], + [ 6.562968, 46.7378041 ], + [ 6.563161, 46.7378528 ], + [ 6.5633574, 46.7378944 ], + [ 6.5635566, 46.7379289 ], + [ 6.5637583, 46.7379562 ], + [ 6.5639617, 46.7379762 ], + [ 6.5641663999999995, 46.7379889 ], + [ 6.5643717, 46.7379942 ], + [ 6.5645772000000004, 46.737992 ], + [ 6.5647823, 46.7379825 ], + [ 6.5649863, 46.7379656 ], + [ 6.5651887, 46.7379415 ], + [ 6.5653891, 46.73791 ], + [ 6.5655868, 46.7378714 ], + [ 6.5657812, 46.7378257 ], + [ 6.565972, 46.7377731 ], + [ 6.5661584, 46.7377137 ], + [ 6.5663401, 46.7376477 ], + [ 6.5665165, 46.7375752 ], + [ 6.5666872, 46.7374965 ], + [ 6.5668516, 46.7374117 ], + [ 6.5670093, 46.7373212 ], + [ 6.5671599, 46.7372251 ], + [ 6.567303, 46.7371237 ], + [ 6.5674382, 46.7370172 ], + [ 6.5675650999999995, 46.7369061 ], + [ 6.5676834, 46.7367906 ], + [ 6.5677927, 46.7366709 ], + [ 6.5678928, 46.7365475 ], + [ 6.5679833, 46.7364207 ], + [ 6.568064, 46.7362908 ], + [ 6.5681348, 46.7361581 ], + [ 6.5681953, 46.7360231 ], + [ 6.5682455, 46.7358861 ], + [ 6.5682852, 46.7357475 ], + [ 6.5683143, 46.7356076 ], + [ 6.5683327, 46.7354669 ], + [ 6.5683404, 46.7353257 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "MAP0001", + "country" : "CHE", + "name" : [ + { + "text" : "Prison de la Croisée", + "lang" : "de-CH" + }, + { + "text" : "Prison de la Croisée", + "lang" : "fr-CH" + }, + { + "text" : "Prison de la Croisée", + "lang" : "it-CH" + }, + { + "text" : "Prison de la Croisée", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Direction du Service pénitentiaire Vaud", + "lang" : "de-CH" + }, + { + "text" : "Direction du Service pénitentiaire Vaud", + "lang" : "fr-CH" + }, + { + "text" : "Direction du Service pénitentiaire Vaud", + "lang" : "it-CH" + }, + { + "text" : "Direction du Service pénitentiaire Vaud", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/toutes-les-autorites/departements/departement-de-la-jeunesse-de-lenvironnement-et-de-la-securite-djes/service-penitentiaire-spen/", + "email" : "info.spen@vd.ch", + "phone" : "0041213164801", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7676395, 47.4256292 ], + [ 7.7678453, 47.4261896 ], + [ 7.7679976, 47.4265535 ], + [ 7.7681179, 47.4268481 ], + [ 7.7689266, 47.4267503 ], + [ 7.7699309, 47.4265782 ], + [ 7.7699151, 47.4265409 ], + [ 7.769903, 47.426503 ], + [ 7.7698984, 47.4264844 ], + [ 7.769875, 47.4264272 ], + [ 7.7698302, 47.4263713 ], + [ 7.7697951, 47.4263419 ], + [ 7.7697121, 47.4263666 ], + [ 7.7696203, 47.4261971 ], + [ 7.7695317, 47.4261077 ], + [ 7.7694568, 47.4259664 ], + [ 7.7694023, 47.4257917 ], + [ 7.7693563999999995, 47.4256622 ], + [ 7.769334, 47.4256037 ], + [ 7.7693069, 47.4255609 ], + [ 7.7692507, 47.4254723 ], + [ 7.7691578, 47.4253081 ], + [ 7.7690409, 47.4251691 ], + [ 7.7690109, 47.4251152 ], + [ 7.7688941, 47.424905 ], + [ 7.7690064, 47.4248687 ], + [ 7.7690012, 47.424812 ], + [ 7.7688768, 47.4247224 ], + [ 7.768797, 47.4245934 ], + [ 7.7688006, 47.4245191 ], + [ 7.7688328, 47.4244401 ], + [ 7.7687817, 47.4244529 ], + [ 7.7685714, 47.424506 ], + [ 7.7683658, 47.4242304 ], + [ 7.7679815, 47.4240413 ], + [ 7.767972, 47.4240057 ], + [ 7.7675576, 47.424204 ], + [ 7.7671215, 47.4242988 ], + [ 7.767222, 47.4244974 ], + [ 7.7674399, 47.4247663 ], + [ 7.7675118, 47.4249822 ], + [ 7.7676029, 47.4252566 ], + [ 7.7676395, 47.4256292 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr063", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Gugen", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Gugen", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Gugen", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Gugen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6035547999999995, 47.585474 ], + [ 7.603466, 47.584948 ], + [ 7.602891, 47.5826262 ], + [ 7.6021372, 47.5803278 ], + [ 7.6012068, 47.5780593 ], + [ 7.6001022, 47.5758268 ], + [ 7.5988266, 47.5736365 ], + [ 7.5973834, 47.5714944 ], + [ 7.5957767, 47.5694062 ], + [ 7.5940109, 47.5673778 ], + [ 7.5920907, 47.5654148 ], + [ 7.5900216, 47.5635223 ], + [ 7.5882632, 47.5620786 ], + [ 7.5865062, 47.5602711 ], + [ 7.584445, 47.5583748 ], + [ 7.5822403, 47.556554 ], + [ 7.5798979, 47.5548138 ], + [ 7.5774244, 47.5531589 ], + [ 7.5748265, 47.5515938 ], + [ 7.5721112999999995, 47.5501229 ], + [ 7.5692862, 47.5487501 ], + [ 7.5663591, 47.5474793 ], + [ 7.5633378, 47.5463138 ], + [ 7.5602308, 47.5452569 ], + [ 7.5570464, 47.5443114 ], + [ 7.5537934, 47.54348 ], + [ 7.5504807, 47.5427649 ], + [ 7.5471173, 47.5421681 ], + [ 7.5437125, 47.5416912 ], + [ 7.5402755, 47.5413355 ], + [ 7.5368158, 47.541102 ], + [ 7.5333428, 47.5409913 ], + [ 7.529866, 47.5410038 ], + [ 7.5263949, 47.5411393 ], + [ 7.522939, 47.5413976 ], + [ 7.5195077999999995, 47.5417778 ], + [ 7.5161106, 47.5422791 ], + [ 7.5127567, 47.5428999 ], + [ 7.5117438, 47.5431266 ], + [ 7.5111928, 47.5431491 ], + [ 7.5077378, 47.5434133 ], + [ 7.5046783999999995, 47.5437578 ], + [ 7.5048821, 47.5438243 ], + [ 7.504948, 47.5438571 ], + [ 7.5050801, 47.5439694 ], + [ 7.5050258, 47.5440034 ], + [ 7.5050278, 47.5440483 ], + [ 7.5051053, 47.5440953 ], + [ 7.5052672000000005, 47.544203 ], + [ 7.5053425, 47.5442226 ], + [ 7.5053928, 47.5442426 ], + [ 7.5053855, 47.5443286 ], + [ 7.5054605, 47.5443873 ], + [ 7.5055635, 47.5443979 ], + [ 7.5056503, 47.5444397 ], + [ 7.5056907, 47.5444654 ], + [ 7.5059367, 47.5445162 ], + [ 7.5059769, 47.5445811 ], + [ 7.5060364, 47.544639 ], + [ 7.5062639, 47.5447319 ], + [ 7.5064136, 47.5447663 ], + [ 7.5066118, 47.5447973 ], + [ 7.5067196, 47.5447875 ], + [ 7.506989, 47.5448056 ], + [ 7.5070392, 47.5448603 ], + [ 7.5071962, 47.5449345 ], + [ 7.5073256, 47.5449818 ], + [ 7.5074183, 47.5450402 ], + [ 7.5075017, 47.5450526 ], + [ 7.5075426, 47.5449798 ], + [ 7.5075484, 47.5449337 ], + [ 7.5076015, 47.5449183 ], + [ 7.5076368, 47.5448925 ], + [ 7.5077004, 47.5448773 ], + [ 7.5079065, 47.5448886 ], + [ 7.5079975999999995, 47.5449786 ], + [ 7.5080825, 47.5450297 ], + [ 7.5082074, 47.5450502 ], + [ 7.5082643000000004, 47.5450495 ], + [ 7.5083513, 47.5450615 ], + [ 7.5085065, 47.5450544 ], + [ 7.5085568, 47.545061 ], + [ 7.5086434, 47.5451174 ], + [ 7.5087015, 47.5451805 ], + [ 7.508709, 47.5452058 ], + [ 7.5087503, 47.5452418 ], + [ 7.5089778, 47.5452771 ], + [ 7.5090326, 47.5452916 ], + [ 7.5090908, 47.5453268 ], + [ 7.5092219, 47.5454622 ], + [ 7.5092327, 47.5455137 ], + [ 7.5092267, 47.5455862 ], + [ 7.5092322, 47.5456117 ], + [ 7.5092812, 47.5457085 ], + [ 7.5092780999999995, 47.5457304 ], + [ 7.5093461999999995, 47.5458394 ], + [ 7.5098338, 47.5453869 ], + [ 7.5109814, 47.5445121 ], + [ 7.5113059, 47.544566 ], + [ 7.5140095, 47.5450522 ], + [ 7.5167641, 47.5454136 ], + [ 7.5188629, 47.5463403 ], + [ 7.5222681, 47.5487063 ], + [ 7.5219049, 47.548927 ], + [ 7.5254286, 47.5509147 ], + [ 7.5247977, 47.5514779 ], + [ 7.5273233, 47.5527843 ], + [ 7.52962, 47.5536976 ], + [ 7.5307908, 47.5540596 ], + [ 7.5307094, 47.5542033 ], + [ 7.5331226000000004, 47.5547059 ], + [ 7.5342618, 47.5549432 ], + [ 7.5350106, 47.555113 ], + [ 7.5365298, 47.5554575 ], + [ 7.5379603, 47.5566494 ], + [ 7.539491, 47.5580031 ], + [ 7.5403671, 47.5572774 ], + [ 7.5438097, 47.5595871 ], + [ 7.5468618, 47.5614991 ], + [ 7.5496966, 47.5624241 ], + [ 7.5546595, 47.5643666 ], + [ 7.5572997, 47.5650307 ], + [ 7.5582650000000005, 47.5672471 ], + [ 7.5593353, 47.5693894 ], + [ 7.5564642, 47.5713871 ], + [ 7.5568956, 47.5724659 ], + [ 7.5624082, 47.5748755 ], + [ 7.5654375, 47.5762202 ], + [ 7.5664902, 47.5776694 ], + [ 7.5690791, 47.5774147 ], + [ 7.5716147, 47.5771124 ], + [ 7.5752538, 47.5761401 ], + [ 7.5764032, 47.576454 ], + [ 7.5788585, 47.5766687 ], + [ 7.5807642, 47.5762962 ], + [ 7.5846599, 47.5755212 ], + [ 7.5843971, 47.5785818 ], + [ 7.5847394, 47.5808568 ], + [ 7.5857254, 47.5840902 ], + [ 7.5869704, 47.5865515 ], + [ 7.5882543, 47.588521 ], + [ 7.5890451, 47.5899018 ], + [ 7.5931714, 47.5889797 ], + [ 7.5984685, 47.5876436 ], + [ 7.6019749999999995, 47.586146 ], + [ 7.6035547999999995, 47.585474 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LFSB001", + "country" : "CHE", + "name" : [ + { + "text" : "LFSB Basel-Mulhouse", + "lang" : "de-CH" + }, + { + "text" : "LFSB Basel-Mulhouse", + "lang" : "fr-CH" + }, + { + "text" : "LFSB Basel-Mulhouse", + "lang" : "it-CH" + }, + { + "text" : "LFSB Basel-Mulhouse", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Direction générale de l'aviation civile (DGAC)", + "lang" : "de-CH" + }, + { + "text" : "Direction générale de l'aviation civile (DGAC)", + "lang" : "fr-CH" + }, + { + "text" : "Direction générale de l'aviation civile (DGAC)", + "lang" : "it-CH" + }, + { + "text" : "French Civil Aviation Authority (DGAC)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "DGAC SUBDIVISION CONTRÔLE Bâle-Mulhouse", + "lang" : "de-CH" + }, + { + "text" : "DGAC SUBDIVISION CONTRÔLE Bâle-Mulhouse", + "lang" : "fr-CH" + }, + { + "text" : "DGAC SUBDIVISION CONTRÔLE Bâle-Mulhouse", + "lang" : "it-CH" + }, + { + "text" : "DGAC ATC OPERATIONS UNIT Bâle-Mulhouse", + "lang" : "en-GB" + } + ], + "siteURL" : "https://app.clearance.aero", + "email" : "bale.atm-procedures@aviation-civile.gouv.fr", + "phone" : "0033389907875", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.7772847, 46.9026086 ], + [ 6.7773792, 46.9026134 ], + [ 6.7776217, 46.9026331 ], + [ 6.7778776, 46.9026194 ], + [ 6.7781247, 46.9025718 ], + [ 6.7783535, 46.9024922 ], + [ 6.7785459, 46.9024081 ], + [ 6.7787422, 46.902303 ], + [ 6.7789061, 46.9021744 ], + [ 6.7789726, 46.9020963 ], + [ 6.7789819, 46.9020888 ], + [ 6.7791075, 46.9019344 ], + [ 6.7791866, 46.9017662 ], + [ 6.7792162, 46.9015905 ], + [ 6.7792004, 46.9014588 ], + [ 6.7792008, 46.9014564 ], + [ 6.7791866, 46.9012863 ], + [ 6.7791258, 46.9011212 ], + [ 6.7791229, 46.9011156 ], + [ 6.7790188, 46.9009624 ], + [ 6.7789911, 46.90093 ], + [ 6.7789588, 46.9008942 ], + [ 6.7788174, 46.9007452 ], + [ 6.778656, 46.9006072 ], + [ 6.7784584, 46.9004934 ], + [ 6.7782321, 46.9004084 ], + [ 6.778066, 46.9003726 ], + [ 6.7780003, 46.9003474 ], + [ 6.7779985, 46.900347 ], + [ 6.7779503, 46.9003081 ], + [ 6.7777539, 46.9002004 ], + [ 6.7775312, 46.9001204 ], + [ 6.7772903, 46.9000709 ], + [ 6.77704, 46.9000539 ], + [ 6.7767896, 46.9000699 ], + [ 6.7765483, 46.9001184 ], + [ 6.7765052, 46.9001336 ], + [ 6.7763846, 46.900159 ], + [ 6.7763536, 46.9001702 ], + [ 6.7761229, 46.900217 ], + [ 6.7759043, 46.9002942 ], + [ 6.7757654, 46.9003552 ], + [ 6.7757164, 46.9003778 ], + [ 6.775622, 46.9004235 ], + [ 6.775429, 46.9005376 ], + [ 6.7752718, 46.9006752 ], + [ 6.7751564, 46.900831 ], + [ 6.7750872, 46.9009991 ], + [ 6.7750666, 46.901173299999996 ], + [ 6.7750956, 46.9013469 ], + [ 6.775173, 46.9015134 ], + [ 6.7752959, 46.9016665 ], + [ 6.775672, 46.902043 ], + [ 6.7756945, 46.9020863 ], + [ 6.7758237, 46.9022352 ], + [ 6.7759921, 46.9023644 ], + [ 6.7761936, 46.9024691 ], + [ 6.7764205, 46.9025454 ], + [ 6.7766646, 46.9025904 ], + [ 6.7769168, 46.9026025 ], + [ 6.7771097000000005, 46.902599 ], + [ 6.7771961, 46.9025911 ], + [ 6.7772847, 46.9026086 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "NE03", + "country" : "CHE", + "name" : [ + { + "text" : "EEP Bellevue", + "lang" : "de-CH" + }, + { + "text" : "EEP Bellevue", + "lang" : "fr-CH" + }, + { + "text" : "EEP Bellevue", + "lang" : "it-CH" + }, + { + "text" : "EEP Bellevue", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "regulationExemption" : "YES", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Police Neuchâteloise", + "lang" : "de-CH" + }, + { + "text" : "Police Neuchâteloise", + "lang" : "fr-CH" + }, + { + "text" : "Police Neuchâteloise", + "lang" : "it-CH" + }, + { + "text" : "Police Neuchâteloise", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "PN - Rens et opérations", + "lang" : "de-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "fr-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "it-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "PN - Rens et opérations", + "lang" : "de-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "fr-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "it-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ne.ch/autorites/DESC/PONE/Pages/Drones.aspx", + "email" : "Police.Neuchateloise@ne.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4960989, 47.411248 ], + [ 7.4964477, 47.4112681 ], + [ 7.4966328, 47.4112708 ], + [ 7.4965899, 47.4111886 ], + [ 7.4965239, 47.411157 ], + [ 7.4964172, 47.4111289 ], + [ 7.496332, 47.4110346 ], + [ 7.4957742, 47.4110135 ], + [ 7.4952944, 47.4111017 ], + [ 7.4950575, 47.4111912 ], + [ 7.4948814, 47.4113011 ], + [ 7.4947001, 47.4114406 ], + [ 7.4944298, 47.4116635 ], + [ 7.4944156, 47.4117667 ], + [ 7.4944091, 47.4117711 ], + [ 7.4943332, 47.4117469 ], + [ 7.4942117, 47.4118584 ], + [ 7.494181, 47.4118898 ], + [ 7.4942136999999995, 47.4119033 ], + [ 7.494358, 47.4119629 ], + [ 7.4941062, 47.4122278 ], + [ 7.4939651, 47.4121711 ], + [ 7.4939407, 47.4121613 ], + [ 7.4938935, 47.4122197 ], + [ 7.4936306, 47.4125755 ], + [ 7.4937094, 47.4127106 ], + [ 7.4937877, 47.4128473 ], + [ 7.4938371, 47.4129336 ], + [ 7.4940803, 47.4133582 ], + [ 7.4940814, 47.4133602 ], + [ 7.4940289, 47.4134388 ], + [ 7.4938082999999995, 47.413653 ], + [ 7.493577, 47.4138031 ], + [ 7.4935258, 47.4138621 ], + [ 7.493352, 47.4140109 ], + [ 7.4934735, 47.4139868 ], + [ 7.4936127, 47.4139591 ], + [ 7.4936574, 47.4139503 ], + [ 7.4937765, 47.4139229 ], + [ 7.4939143, 47.4138888 ], + [ 7.4939463, 47.4138742 ], + [ 7.4940219, 47.4138399 ], + [ 7.4941225, 47.4138012 ], + [ 7.4942673, 47.4138349 ], + [ 7.4943893, 47.4138659 ], + [ 7.4944174, 47.413873 ], + [ 7.4945315, 47.4139252 ], + [ 7.4946444, 47.4140023 ], + [ 7.4947371, 47.4140296 ], + [ 7.4949634, 47.4140717 ], + [ 7.4951883, 47.414115 ], + [ 7.4953968, 47.4141616 ], + [ 7.4956773, 47.4141989 ], + [ 7.4958659, 47.4142196 ], + [ 7.4959651, 47.414247 ], + [ 7.4959772, 47.4142654 ], + [ 7.4960028, 47.4142663 ], + [ 7.4961836, 47.4142714 ], + [ 7.4962872, 47.4141495 ], + [ 7.4964796, 47.4141124 ], + [ 7.4965534, 47.4133743 ], + [ 7.4968378, 47.4133098 ], + [ 7.4970729, 47.4132563 ], + [ 7.497056, 47.4126525 ], + [ 7.4971998, 47.412592599999996 ], + [ 7.4972329, 47.4125789 ], + [ 7.4973022, 47.41255 ], + [ 7.4975321, 47.4124507 ], + [ 7.4975279, 47.4124354 ], + [ 7.4974969, 47.4123859 ], + [ 7.4974123, 47.4122055 ], + [ 7.4973953, 47.4121837 ], + [ 7.4973759, 47.4121629 ], + [ 7.4973541, 47.4121432 ], + [ 7.4973358, 47.4121287 ], + [ 7.4973163, 47.4121151 ], + [ 7.4972955, 47.4121022 ], + [ 7.4972801, 47.4120908 ], + [ 7.4972662, 47.4120786 ], + [ 7.4972538, 47.4120656 ], + [ 7.497243, 47.412052 ], + [ 7.497234, 47.4120378 ], + [ 7.4972268, 47.4120232 ], + [ 7.497221, 47.4120067 ], + [ 7.4972174, 47.41199 ], + [ 7.4972162, 47.4119731 ], + [ 7.4972172, 47.4119562 ], + [ 7.4972205, 47.4119395 ], + [ 7.4972131, 47.4118818 ], + [ 7.4971902, 47.4117951 ], + [ 7.4970877, 47.4118047 ], + [ 7.4970818999999995, 47.412057 ], + [ 7.4970295, 47.4120444 ], + [ 7.496973, 47.4120084 ], + [ 7.496911, 47.4119604 ], + [ 7.4968553, 47.4119059 ], + [ 7.4967843, 47.4118928 ], + [ 7.4967018, 47.4118927 ], + [ 7.4966344, 47.4119158 ], + [ 7.4966434, 47.4119777 ], + [ 7.4966494, 47.4120456 ], + [ 7.4966458, 47.4121283 ], + [ 7.4966365, 47.4122213 ], + [ 7.4966166, 47.4123404 ], + [ 7.4966039, 47.4123842 ], + [ 7.495202, 47.412109 ], + [ 7.4952661, 47.4119979 ], + [ 7.4953788, 47.4117825 ], + [ 7.4954378, 47.4116272 ], + [ 7.4954449, 47.4115322 ], + [ 7.4954778, 47.4114653 ], + [ 7.4955532, 47.4113763 ], + [ 7.495627, 47.411363 ], + [ 7.4958338, 47.4113548 ], + [ 7.4958886, 47.411296899999996 ], + [ 7.4960989, 47.411248 ] + ], + [ + [ 7.494612, 47.4119237 ], + [ 7.4946727, 47.4120041 ], + [ 7.4946282, 47.4120565 ], + [ 7.4945306, 47.4119901 ], + [ 7.494536, 47.4119673 ], + [ 7.4945729, 47.4119458 ], + [ 7.494612, 47.4119237 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns336", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Uf Geren", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Uf Geren", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Uf Geren", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Uf Geren", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.9433311, 46.1599824 ], + [ 8.943177500000001, 46.15763 ], + [ 8.9428469, 46.1552865 ], + [ 8.9423403, 46.1529582 ], + [ 8.9416591, 46.1506515 ], + [ 8.9408053, 46.1483727 ], + [ 8.939781, 46.1461282 ], + [ 8.9385893, 46.1439239 ], + [ 8.937233299999999, 46.141766 ], + [ 8.9357169, 46.1396604 ], + [ 8.9340441, 46.1376128 ], + [ 8.9322195, 46.1356288 ], + [ 8.9302483, 46.1337139 ], + [ 8.9281357, 46.1318733 ], + [ 8.9258876, 46.1301121 ], + [ 8.923510199999999, 46.128435 ], + [ 8.9210099, 46.1268467 ], + [ 8.9183936, 46.1253514 ], + [ 8.9156686, 46.1239534 ], + [ 8.9128421, 46.1226564 ], + [ 8.9099221, 46.1214639 ], + [ 8.9069164, 46.1203793 ], + [ 8.9038333, 46.1194055 ], + [ 8.9006813, 46.1185451 ], + [ 8.8974689, 46.1178005 ], + [ 8.894205, 46.1171738 ], + [ 8.8908984, 46.1166666 ], + [ 8.8875583, 46.1162803 ], + [ 8.8841937, 46.1160161 ], + [ 8.8808138, 46.1158746 ], + [ 8.877428, 46.1158562 ], + [ 8.8740453, 46.1159609 ], + [ 8.8706752, 46.1161886 ], + [ 8.8673268, 46.1165384 ], + [ 8.8640093, 46.1170096 ], + [ 8.8607316, 46.1176008 ], + [ 8.8575029, 46.1183103 ], + [ 8.8543319, 46.1191363 ], + [ 8.851227399999999, 46.1200765 ], + [ 8.8481977, 46.1211283 ], + [ 8.8452512, 46.1222889 ], + [ 8.842396, 46.123555 ], + [ 8.8396398, 46.1249232 ], + [ 8.8369903, 46.1263898 ], + [ 8.8344546, 46.1279508 ], + [ 8.8320398, 46.1296018 ], + [ 8.8297524, 46.1313384 ], + [ 8.8275987, 46.1331558 ], + [ 8.8255846, 46.135049 ], + [ 8.8237157, 46.1370129 ], + [ 8.821997, 46.139042 ], + [ 8.8204333, 46.1411309 ], + [ 8.819029, 46.1432738 ], + [ 8.8177878, 46.1454649 ], + [ 8.8167132, 46.147698 ], + [ 8.8158082, 46.1499672 ], + [ 8.8150751, 46.1522662 ], + [ 8.8145162, 46.1545887 ], + [ 8.8141329, 46.1569284 ], + [ 8.8139263, 46.1592788 ], + [ 8.813897, 46.1616334 ], + [ 8.8140451, 46.163986 ], + [ 8.814370199999999, 46.1663299 ], + [ 8.8148714, 46.1686588 ], + [ 8.8155474, 46.1709662 ], + [ 8.8163964, 46.1732459 ], + [ 8.817416099999999, 46.1754916 ], + [ 8.8186036, 46.1776972 ], + [ 8.8199558, 46.1798565 ], + [ 8.8214689, 46.1819637 ], + [ 8.8231388, 46.184013 ], + [ 8.824961, 46.1859987 ], + [ 8.8269304, 46.1879154 ], + [ 8.8290417, 46.1897579 ], + [ 8.8312891, 46.1915211 ], + [ 8.8336665, 46.1932001 ], + [ 8.8361673, 46.1947904 ], + [ 8.8387846, 46.1962875 ], + [ 8.8415113, 46.1976874 ], + [ 8.8443399, 46.1989862 ], + [ 8.8472627, 46.2001804 ], + [ 8.8502716, 46.2012666 ], + [ 8.8533583, 46.2022419 ], + [ 8.8565145, 46.2031036 ], + [ 8.8597313, 46.2038494 ], + [ 8.8630001, 46.2044771 ], + [ 8.8663117, 46.2049851 ], + [ 8.8696571, 46.205372 ], + [ 8.8730272, 46.2056367 ], + [ 8.8764126, 46.2057784 ], + [ 8.879804, 46.2057969 ], + [ 8.8831922, 46.205692 ], + [ 8.8865678, 46.205464 ], + [ 8.8899216, 46.2051135 ], + [ 8.8932443, 46.2046416 ], + [ 8.8965268, 46.204049499999996 ], + [ 8.8997601, 46.2033388 ], + [ 8.9029353, 46.2025115 ], + [ 8.9060437, 46.2015699 ], + [ 8.9090767, 46.2005165 ], + [ 8.9120261, 46.1993543 ], + [ 8.9148837, 46.1980864 ], + [ 8.9176416, 46.1967163 ], + [ 8.9202924, 46.1952478 ], + [ 8.9228288, 46.1936849 ], + [ 8.9252437, 46.192032 ], + [ 8.9275306, 46.1902934 ], + [ 8.9296832, 46.1884741 ], + [ 8.9316957, 46.186579 ], + [ 8.9335624, 46.1846134 ], + [ 8.9352783, 46.1825825 ], + [ 8.9368388, 46.180492 ], + [ 8.9382394, 46.1783477 ], + [ 8.9394765, 46.1761553 ], + [ 8.9405467, 46.173921 ], + [ 8.9414469, 46.1716508 ], + [ 8.9421749, 46.1693509 ], + [ 8.9427285, 46.1670278 ], + [ 8.9431064, 46.1646877 ], + [ 8.9433074, 46.1623371 ], + [ 8.9433311, 46.1599824 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZL001", + "country" : "CHE", + "name" : [ + { + "text" : "LSZL Locarno", + "lang" : "de-CH" + }, + { + "text" : "LSZL Locarno", + "lang" : "fr-CH" + }, + { + "text" : "LSZL Locarno", + "lang" : "it-CH" + }, + { + "text" : "LSZL Locarno", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Special Flight Office (SFO)", + "lang" : "de-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "fr-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "it-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "en-GB" + } + ], + "siteURL" : "https://skyguide.ch/services/special-flights", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6064549, 47.494047 ], + [ 7.606794, 47.4939576 ], + [ 7.6067928, 47.493949 ], + [ 7.6067863, 47.4939254 ], + [ 7.6067766, 47.4939024 ], + [ 7.6067639, 47.49388 ], + [ 7.6066749, 47.4937364 ], + [ 7.6066631000000005, 47.4937148 ], + [ 7.606654, 47.4936925 ], + [ 7.6066479000000005, 47.4936698 ], + [ 7.6066446, 47.4936468 ], + [ 7.6066443, 47.4936237 ], + [ 7.6066142, 47.4936243 ], + [ 7.6066334, 47.4933592 ], + [ 7.6066557, 47.4931549 ], + [ 7.6066597, 47.4931552 ], + [ 7.6066958, 47.4928947 ], + [ 7.6067350000000005, 47.492679 ], + [ 7.6068149, 47.492506 ], + [ 7.6071526, 47.4924149 ], + [ 7.6070831, 47.4922933 ], + [ 7.6071193, 47.4922258 ], + [ 7.6071875, 47.4921942 ], + [ 7.6083461, 47.4918926 ], + [ 7.6083266, 47.4917262 ], + [ 7.6081465, 47.4913464 ], + [ 7.6079513, 47.4909713 ], + [ 7.6079679, 47.4909699 ], + [ 7.6080541, 47.4909626 ], + [ 7.6080122, 47.4908626 ], + [ 7.6079774, 47.4907795 ], + [ 7.6079427, 47.4906965 ], + [ 7.6079024, 47.4906002 ], + [ 7.6078022, 47.4903607 ], + [ 7.6077753, 47.4902966 ], + [ 7.6077571, 47.4902527 ], + [ 7.6077372, 47.4902047 ], + [ 7.6077297999999995, 47.4901151 ], + [ 7.6077128, 47.4899066 ], + [ 7.6077059, 47.4898224 ], + [ 7.6077027, 47.4897834 ], + [ 7.607705, 47.4897661 ], + [ 7.6077126, 47.4897093 ], + [ 7.6077266, 47.489606 ], + [ 7.6077398, 47.4895069 ], + [ 7.6077555, 47.4893866 ], + [ 7.6075776, 47.4893805 ], + [ 7.6074278, 47.4893928 ], + [ 7.6073063, 47.4894028 ], + [ 7.6073509999999995, 47.4889112 ], + [ 7.6073259, 47.4889074 ], + [ 7.6073178, 47.488917 ], + [ 7.6073093, 47.4889265 ], + [ 7.6073015999999996, 47.4889364 ], + [ 7.6072947, 47.4889466 ], + [ 7.6072887, 47.488957 ], + [ 7.6072836, 47.4889676 ], + [ 7.6072793, 47.4889784 ], + [ 7.607276, 47.4889893 ], + [ 7.6072736, 47.4890004 ], + [ 7.6072625, 47.4890848 ], + [ 7.6072026, 47.4893762 ], + [ 7.6070704, 47.489656 ], + [ 7.6070307, 47.490091 ], + [ 7.6069515, 47.4905017 ], + [ 7.6069192, 47.4906075 ], + [ 7.6068687, 47.4909664 ], + [ 7.6068024, 47.4913963 ], + [ 7.6067509, 47.4915091 ], + [ 7.6066603, 47.4922071 ], + [ 7.6066363, 47.4924141 ], + [ 7.6066177, 47.4925471 ], + [ 7.606558, 47.4929972 ], + [ 7.6064863, 47.4935571 ], + [ 7.6064661000000005, 47.4938717 ], + [ 7.6064549, 47.494047 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns157", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Reinacherheide", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Reinacherheide", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Reinacherheide", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Reinacherheide", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.122995, 46.237363 ], + [ 6.1229931, 46.2372217 ], + [ 6.1229806, 46.2370807 ], + [ 6.1229574, 46.2369403 ], + [ 6.1229236, 46.236801 ], + [ 6.1228794, 46.236663 ], + [ 6.1228249, 46.2365269 ], + [ 6.1227602, 46.236393 ], + [ 6.1226854, 46.2362615 ], + [ 6.1226009, 46.236133 ], + [ 6.1225067, 46.2360077 ], + [ 6.1224033, 46.235886 ], + [ 6.1222908, 46.2357683 ], + [ 6.1221696, 46.2356548 ], + [ 6.1220399, 46.2355458 ], + [ 6.1219023, 46.2354417 ], + [ 6.121757, 46.2353427 ], + [ 6.1216044, 46.2352492 ], + [ 6.121445, 46.2351613 ], + [ 6.1212792, 46.2350793 ], + [ 6.1211074, 46.2350035 ], + [ 6.1209301, 46.234934 ], + [ 6.1207478, 46.234871 ], + [ 6.1205611, 46.2348148 ], + [ 6.1203703, 46.2347654 ], + [ 6.1201761, 46.234723 ], + [ 6.119979, 46.2346877 ], + [ 6.1197794, 46.2346596 ], + [ 6.119578, 46.2346388 ], + [ 6.1193753, 46.2346254 ], + [ 6.1191718999999996, 46.2346193 ], + [ 6.1189683, 46.2346206 ], + [ 6.1187651, 46.2346293 ], + [ 6.1185629, 46.2346454 ], + [ 6.1183621, 46.2346688 ], + [ 6.1181633, 46.2346995 ], + [ 6.1179670999999995, 46.2347373 ], + [ 6.1177741, 46.2347822 ], + [ 6.1175847, 46.2348341 ], + [ 6.1173995, 46.2348927 ], + [ 6.1172189, 46.234958 ], + [ 6.1170436, 46.2350298 ], + [ 6.1168739, 46.2351079 ], + [ 6.1167103, 46.235192 ], + [ 6.1165532, 46.2352819 ], + [ 6.1164032, 46.2353774 ], + [ 6.1162606, 46.2354783 ], + [ 6.1161256999999996, 46.2355841 ], + [ 6.1159991, 46.2356947 ], + [ 6.115881, 46.2358098 ], + [ 6.1157717, 46.235929 ], + [ 6.1156715, 46.236052 ], + [ 6.1155807, 46.2361785 ], + [ 6.1154997, 46.2363081 ], + [ 6.1154285, 46.2364405 ], + [ 6.1153674, 46.2365752 ], + [ 6.1153165, 46.236712 ], + [ 6.115276, 46.2368505 ], + [ 6.115246, 46.2369903 ], + [ 6.1152266, 46.2371309 ], + [ 6.1152179, 46.2372721 ], + [ 6.1152197, 46.2374133 ], + [ 6.1152323, 46.2375544 ], + [ 6.1152554, 46.2376947 ], + [ 6.1152892, 46.2378341 ], + [ 6.1153333, 46.237972 ], + [ 6.1153879, 46.2381081 ], + [ 6.1154526, 46.2382421 ], + [ 6.1155273, 46.2383735 ], + [ 6.1156119, 46.238502 ], + [ 6.115706, 46.2386273 ], + [ 6.1158094, 46.238749 ], + [ 6.1159219, 46.2388668 ], + [ 6.1160431, 46.2389803 ], + [ 6.1161727, 46.2390893 ], + [ 6.1163104, 46.2391934 ], + [ 6.1164557, 46.2392924 ], + [ 6.1166083, 46.2393859 ], + [ 6.1167677, 46.2394738 ], + [ 6.1169335, 46.2395558 ], + [ 6.1171053, 46.2396316 ], + [ 6.1172826, 46.2397011 ], + [ 6.1174649, 46.2397641 ], + [ 6.1176517, 46.2398204 ], + [ 6.1178424, 46.2398698 ], + [ 6.1180367, 46.2399122 ], + [ 6.1182338, 46.2399475 ], + [ 6.1184334, 46.2399756 ], + [ 6.1186348, 46.2399964 ], + [ 6.1188375, 46.2400098 ], + [ 6.1190409, 46.2400159 ], + [ 6.1192445, 46.2400146 ], + [ 6.1194478, 46.2400059 ], + [ 6.1196501, 46.2399898 ], + [ 6.1198509, 46.2399664 ], + [ 6.1200497, 46.2399357 ], + [ 6.1202458, 46.2398979 ], + [ 6.1204389, 46.2398529 ], + [ 6.1206283, 46.2398011 ], + [ 6.1208135, 46.2397424 ], + [ 6.1209941, 46.2396771 ], + [ 6.1211695, 46.2396053 ], + [ 6.1213392, 46.2395272 ], + [ 6.1215028, 46.2394431 ], + [ 6.1216598, 46.2393532 ], + [ 6.1218099, 46.2392577 ], + [ 6.1219525, 46.2391568 ], + [ 6.1220873, 46.239051 ], + [ 6.122214, 46.2389403 ], + [ 6.1223321, 46.2388253 ], + [ 6.1224414, 46.238706 ], + [ 6.1225415, 46.238583 ], + [ 6.1226323, 46.2384565 ], + [ 6.1227133, 46.2383269 ], + [ 6.1227845, 46.2381946 ], + [ 6.1228456, 46.2380598 ], + [ 6.1228965, 46.237923 ], + [ 6.1229369, 46.2377845 ], + [ 6.1229669, 46.2376448 ], + [ 6.1229863, 46.2375041 ], + [ 6.122995, 46.237363 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0085", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Palexpo", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Palexpo", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Palexpo", + "lang" : "it-CH" + }, + { + "text" : "Substation Palexpo", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.7347434, 47.5044532 ], + [ 8.7347345, 47.5043121 ], + [ 8.7347148, 47.5041715 ], + [ 8.734684099999999, 47.5040317 ], + [ 8.7346428, 47.5038933 ], + [ 8.7345908, 47.5037565 ], + [ 8.7345282, 47.5036217 ], + [ 8.7344554, 47.5034894 ], + [ 8.7343725, 47.5033598 ], + [ 8.7342796, 47.5032333 ], + [ 8.7341772, 47.5031103 ], + [ 8.7340653, 47.5029911 ], + [ 8.7339444, 47.502876 ], + [ 8.7338148, 47.5027654 ], + [ 8.7336768, 47.5026595 ], + [ 8.7335309, 47.5025586 ], + [ 8.7333773, 47.5024631 ], + [ 8.7332166, 47.5023732 ], + [ 8.7330491, 47.502289 ], + [ 8.7328754, 47.502211 ], + [ 8.7326959, 47.5021391 ], + [ 8.7325111, 47.5020738 ], + [ 8.7323215, 47.5020151 ], + [ 8.7321276, 47.5019632 ], + [ 8.73193, 47.5019183 ], + [ 8.7317292, 47.5018804 ], + [ 8.7315257, 47.5018497 ], + [ 8.7313202, 47.5018262 ], + [ 8.7311131, 47.5018101 ], + [ 8.730905, 47.5018013 ], + [ 8.7306966, 47.5017999 ], + [ 8.7304883, 47.501806 ], + [ 8.7302808, 47.5018194 ], + [ 8.7300746, 47.5018401 ], + [ 8.7298703, 47.5018681 ], + [ 8.7296685, 47.5019034 ], + [ 8.7294696, 47.5019457 ], + [ 8.7292743, 47.5019951 ], + [ 8.729083, 47.5020513 ], + [ 8.7288964, 47.5021142 ], + [ 8.7287149, 47.5021836 ], + [ 8.728539, 47.5022594 ], + [ 8.7283691, 47.5023413 ], + [ 8.7282059, 47.5024291 ], + [ 8.7280496, 47.5025226 ], + [ 8.7279008, 47.5026215 ], + [ 8.7277598, 47.5027256 ], + [ 8.727627, 47.5028345 ], + [ 8.7275029, 47.5029479 ], + [ 8.7273876, 47.5030657 ], + [ 8.7272817, 47.5031873 ], + [ 8.7271852, 47.5033125 ], + [ 8.7270986, 47.503441 ], + [ 8.727022, 47.5035724 ], + [ 8.7269556, 47.5037063 ], + [ 8.7268997, 47.5038424 ], + [ 8.7268544, 47.5039803 ], + [ 8.7268198, 47.5041195 ], + [ 8.726796, 47.5042599 ], + [ 8.726783, 47.5044009 ], + [ 8.726781, 47.5045421 ], + [ 8.7267899, 47.504683299999996 ], + [ 8.7268096, 47.5048239 ], + [ 8.7268402, 47.504963599999996 ], + [ 8.7268816, 47.505102 ], + [ 8.7269336, 47.5052388 ], + [ 8.7269961, 47.5053736 ], + [ 8.7270689, 47.505506 ], + [ 8.7271518, 47.5056356 ], + [ 8.7272446, 47.5057621 ], + [ 8.7273471, 47.5058851 ], + [ 8.7274589, 47.5060043 ], + [ 8.7275798, 47.5061194 ], + [ 8.7277094, 47.50623 ], + [ 8.7278474, 47.5063359 ], + [ 8.7279934, 47.5064368 ], + [ 8.7281469, 47.5065323 ], + [ 8.7283076, 47.5066223 ], + [ 8.7284751, 47.5067064 ], + [ 8.7286488, 47.5067845 ], + [ 8.7288283, 47.5068563 ], + [ 8.7290132, 47.5069216 ], + [ 8.7292028, 47.5069804 ], + [ 8.7293967, 47.5070322 ], + [ 8.7295943, 47.5070772 ], + [ 8.7297951, 47.5071151 ], + [ 8.7299986, 47.5071458 ], + [ 8.7302042, 47.5071693 ], + [ 8.7304113, 47.5071854 ], + [ 8.7306194, 47.5071941 ], + [ 8.7308278, 47.5071955 ], + [ 8.7310361, 47.5071895 ], + [ 8.731243599999999, 47.5071761 ], + [ 8.7314499, 47.5071553 ], + [ 8.7316542, 47.5071273 ], + [ 8.7318561, 47.5070921 ], + [ 8.732055, 47.5070497 ], + [ 8.7322503, 47.5070004 ], + [ 8.7324416, 47.5069442 ], + [ 8.7326282, 47.5068813 ], + [ 8.7328097, 47.5068118 ], + [ 8.7329857, 47.506736 ], + [ 8.7331555, 47.5066541 ], + [ 8.7333188, 47.5065663 ], + [ 8.733475, 47.5064728 ], + [ 8.7336239, 47.5063739 ], + [ 8.7337648, 47.5062698 ], + [ 8.7338976, 47.5061609 ], + [ 8.7340218, 47.5060474 ], + [ 8.734137, 47.5059297 ], + [ 8.734243, 47.5058081 ], + [ 8.7343394, 47.5056828 ], + [ 8.734426, 47.5055544 ], + [ 8.7345026, 47.505423 ], + [ 8.7345689, 47.5052891 ], + [ 8.7346248, 47.505153 ], + [ 8.7346701, 47.5050151 ], + [ 8.7347047, 47.5048758 ], + [ 8.7347285, 47.5047355 ], + [ 8.7347414, 47.5045945 ], + [ 8.7347434, 47.5044532 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "WTH0001", + "country" : "CHE", + "name" : [ + { + "text" : "Gefängnis Winterthur", + "lang" : "de-CH" + }, + { + "text" : "Gefängnis Winterthur", + "lang" : "fr-CH" + }, + { + "text" : "Gefängnis Winterthur", + "lang" : "it-CH" + }, + { + "text" : "Gefängnis Winterthur", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "de-CH" + }, + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "fr-CH" + }, + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "it-CH" + }, + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "de-CH" + }, + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "fr-CH" + }, + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "it-CH" + }, + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Reno Berner", + "lang" : "de-CH" + }, + { + "text" : "Reno Berner", + "lang" : "fr-CH" + }, + { + "text" : "Reno Berner", + "lang" : "it-CH" + }, + { + "text" : "Reno Berner", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.zh.ch/de/direktion-der-justiz-und-des-innern/justizvollzug-wiedereingliederung.html", + "email" : "sicherheit-juwe@ji.zh.ch", + "phone" : "0041432583400", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT12H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.4371418, 47.2713095 ], + [ 8.4371338, 47.2711684 ], + [ 8.4371148, 47.2710277 ], + [ 8.437085100000001, 47.2708879 ], + [ 8.4370447, 47.2707493 ], + [ 8.4369937, 47.2706124 ], + [ 8.4369322, 47.2704775 ], + [ 8.4368605, 47.2703449 ], + [ 8.4367786, 47.2702151 ], + [ 8.4366869, 47.2700884 ], + [ 8.4365855, 47.2699651 ], + [ 8.4364748, 47.2698456 ], + [ 8.4363551, 47.2697302 ], + [ 8.4362267, 47.2696192 ], + [ 8.4360899, 47.269513 ], + [ 8.4359451, 47.2694117 ], + [ 8.4357928, 47.2693158 ], + [ 8.4356332, 47.2692254 ], + [ 8.435467, 47.2691408 ], + [ 8.4352945, 47.2690623 ], + [ 8.4351161, 47.26899 ], + [ 8.4349325, 47.2689242 ], + [ 8.4347441, 47.268865 ], + [ 8.4345513, 47.2688126 ], + [ 8.4343548, 47.2687671 ], + [ 8.4341551, 47.2687287 ], + [ 8.4339527, 47.2686975 ], + [ 8.4337481, 47.2686735 ], + [ 8.4335421, 47.2686569 ], + [ 8.433335, 47.2686476 ], + [ 8.4331274, 47.2686457 ], + [ 8.43292, 47.2686511 ], + [ 8.4327133, 47.268664 ], + [ 8.4325079, 47.2686842 ], + [ 8.4323044, 47.2687117 ], + [ 8.4321032, 47.2687464 ], + [ 8.4319049, 47.2687883 ], + [ 8.4317102, 47.2688371 ], + [ 8.4315195, 47.2688928 ], + [ 8.4313333, 47.2689553 ], + [ 8.4311522, 47.2690242 ], + [ 8.4309766, 47.2690996 ], + [ 8.430807, 47.269181 ], + [ 8.430644, 47.2692684 ], + [ 8.4304879, 47.2693615 ], + [ 8.4303391, 47.2694601 ], + [ 8.4301982, 47.2695638 ], + [ 8.4300654, 47.2696723 ], + [ 8.4299411, 47.2697855 ], + [ 8.4298258, 47.2699029 ], + [ 8.4297196, 47.2700243 ], + [ 8.4296228, 47.2701493 ], + [ 8.4295358, 47.2702776 ], + [ 8.4294589, 47.2704087 ], + [ 8.429392, 47.2705425 ], + [ 8.4293356, 47.2706784 ], + [ 8.4292897, 47.2708162 ], + [ 8.4292545, 47.2709554 ], + [ 8.42923, 47.2710957 ], + [ 8.4292163, 47.2712367 ], + [ 8.4292135, 47.2713779 ], + [ 8.4292215, 47.2715191 ], + [ 8.4292404, 47.2716598 ], + [ 8.4292701, 47.2717996 ], + [ 8.4293105, 47.2719382 ], + [ 8.4293615, 47.2720751 ], + [ 8.429423, 47.27221 ], + [ 8.4294947, 47.2723426 ], + [ 8.4295766, 47.2724724 ], + [ 8.4296683, 47.2725991 ], + [ 8.4297696, 47.2727224 ], + [ 8.4298803, 47.272842 ], + [ 8.43, 47.2729574 ], + [ 8.4301284, 47.2730683 ], + [ 8.4302652, 47.2731746 ], + [ 8.43041, 47.2732758 ], + [ 8.4305624, 47.2733718 ], + [ 8.4307219, 47.2734621 ], + [ 8.4308881, 47.2735467 ], + [ 8.4310607, 47.2736253 ], + [ 8.431239, 47.2736975 ], + [ 8.4314227, 47.2737634 ], + [ 8.4316111, 47.2738226 ], + [ 8.4318039, 47.273875 ], + [ 8.4320004, 47.2739205 ], + [ 8.4322001, 47.2739589 ], + [ 8.4324026, 47.2739901 ], + [ 8.4326071, 47.2740141 ], + [ 8.4328132, 47.2740307 ], + [ 8.4330204, 47.27404 ], + [ 8.4332279, 47.2740419 ], + [ 8.4334353, 47.2740365 ], + [ 8.433642, 47.2740236 ], + [ 8.4338474, 47.2740034 ], + [ 8.434051, 47.2739759 ], + [ 8.4342522, 47.2739412 ], + [ 8.4344505, 47.2738993 ], + [ 8.4346453, 47.2738505 ], + [ 8.434836, 47.2737948 ], + [ 8.4350222, 47.2737323 ], + [ 8.4352033, 47.2736634 ], + [ 8.4353789, 47.273588 ], + [ 8.4355485, 47.2735065 ], + [ 8.4357115, 47.2734191 ], + [ 8.4358676, 47.273326 ], + [ 8.4360164, 47.2732275 ], + [ 8.4361573, 47.2731238 ], + [ 8.4362901, 47.2730152 ], + [ 8.4364144, 47.272902 ], + [ 8.4365297, 47.2727846 ], + [ 8.4366359, 47.2726632 ], + [ 8.4367326, 47.2725382 ], + [ 8.4368196, 47.2724099 ], + [ 8.4368966, 47.2722787 ], + [ 8.4369634, 47.272145 ], + [ 8.4370198, 47.272009 ], + [ 8.4370657, 47.2718713 ], + [ 8.4371009, 47.271732 ], + [ 8.4371254, 47.2715918 ], + [ 8.437139, 47.2714508 ], + [ 8.4371418, 47.2713095 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0080", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Obfelden", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Obfelden", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Obfelden", + "lang" : "it-CH" + }, + { + "text" : "Substation Obfelden", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.1872653, 47.6075158 ], + [ 8.1875529, 47.6074207 ], + [ 8.1880094, 47.6072493 ], + [ 8.188452, 47.6070619 ], + [ 8.1888794, 47.6068591 ], + [ 8.1892907, 47.6066415 ], + [ 8.1896845, 47.6064096 ], + [ 8.1900598, 47.606164 ], + [ 8.1904156, 47.6059056 ], + [ 8.1907509, 47.6056348 ], + [ 8.1910647, 47.6053526 ], + [ 8.1913564, 47.6050597 ], + [ 8.1916249, 47.6047569 ], + [ 8.1918696, 47.6044449 ], + [ 8.1920899, 47.6041247 ], + [ 8.1922851, 47.6037972 ], + [ 8.1924546, 47.6034632 ], + [ 8.1925981, 47.6031237 ], + [ 8.1927151, 47.6027795 ], + [ 8.1928053, 47.6024317 ], + [ 8.1928685, 47.6020811 ], + [ 8.1929045, 47.6017288 ], + [ 8.1929131, 47.6013758 ], + [ 8.1928944, 47.6010228 ], + [ 8.1928485, 47.6006711 ], + [ 8.1927754, 47.6003214 ], + [ 8.1926753, 47.5999748 ], + [ 8.1925485, 47.5996323 ], + [ 8.1923954, 47.5992946 ], + [ 8.1922164, 47.5989629 ], + [ 8.192012, 47.598638 ], + [ 8.1917828, 47.5983207 ], + [ 8.1915292, 47.598012 ], + [ 8.1912522, 47.5977127 ], + [ 8.1909524, 47.5974236 ], + [ 8.1906306, 47.5971455 ], + [ 8.1902878, 47.5968792 ], + [ 8.1899248, 47.5966254 ], + [ 8.1895427, 47.5963847 ], + [ 8.1891424, 47.596158 ], + [ 8.1887252, 47.5959457 ], + [ 8.1882922, 47.5957484 ], + [ 8.1878445, 47.5955668 ], + [ 8.1873833, 47.5954013 ], + [ 8.18691, 47.5952523 ], + [ 8.1864258, 47.5951203 ], + [ 8.185932, 47.5950056 ], + [ 8.1854301, 47.5949085 ], + [ 8.1849213, 47.5948293 ], + [ 8.1844071, 47.5947683 ], + [ 8.1838889, 47.5947255 ], + [ 8.1833681, 47.5947012 ], + [ 8.1828461, 47.5946953 ], + [ 8.1823244, 47.5947078 ], + [ 8.1818044, 47.5947389 ], + [ 8.1812875, 47.5947883 ], + [ 8.1807751, 47.5948559 ], + [ 8.1802686, 47.5949416 ], + [ 8.1797695, 47.5950451 ], + [ 8.179279, 47.5951661 ], + [ 8.1787986, 47.5953043 ], + [ 8.1783295, 47.5954593 ], + [ 8.1778731, 47.5956308 ], + [ 8.1774306, 47.5958181 ], + [ 8.1770031, 47.5960209 ], + [ 8.1765919, 47.5962385 ], + [ 8.1761982, 47.5964703 ], + [ 8.1758229, 47.5967158 ], + [ 8.175467, 47.5969742 ], + [ 8.1751317, 47.5972449 ], + [ 8.1748178, 47.5975271 ], + [ 8.1745261, 47.5978199 ], + [ 8.1742575, 47.5981228 ], + [ 8.1740127, 47.5984347 ], + [ 8.1737924, 47.5987548 ], + [ 8.1735971, 47.5990823 ], + [ 8.1734275, 47.5994163 ], + [ 8.1732839, 47.5997558 ], + [ 8.1731667, 47.600099900000004 ], + [ 8.1730764, 47.6004477 ], + [ 8.1730533, 47.6005754 ], + [ 8.1731153, 47.6006235 ], + [ 8.1734255, 47.6008387 ], + [ 8.1744993, 47.6015432 ], + [ 8.1748378, 47.6017558 ], + [ 8.1751895, 47.6019582 ], + [ 8.1755539, 47.6021501 ], + [ 8.1759303, 47.6023312 ], + [ 8.176318, 47.602501 ], + [ 8.1767162, 47.6026593 ], + [ 8.1771241, 47.6028057 ], + [ 8.1775411, 47.60294 ], + [ 8.1779664, 47.603062 ], + [ 8.178399, 47.6031713 ], + [ 8.1823833, 47.604112 ], + [ 8.1827341, 47.6042025 ], + [ 8.1830769, 47.6043062 ], + [ 8.1834105, 47.6044228 ], + [ 8.1837338, 47.6045519 ], + [ 8.1840458, 47.6046932 ], + [ 8.1843456, 47.6048462 ], + [ 8.1846136, 47.6049998 ], + [ 8.184632, 47.6050104 ], + [ 8.1849044, 47.6051852 ], + [ 8.1851548, 47.6053613 ], + [ 8.1853963, 47.605543 ], + [ 8.1856285, 47.6057301 ], + [ 8.1858512, 47.6059225 ], + [ 8.1860641, 47.6061198 ], + [ 8.186267, 47.606322 ], + [ 8.1864596, 47.6065286 ], + [ 8.1866417, 47.6067396 ], + [ 8.1871161, 47.6073237 ], + [ 8.1872653, 47.6075158 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "ENSI003", + "country" : "CHE", + "name" : [ + { + "text" : "KKA Leibstadt", + "lang" : "de-CH" + }, + { + "text" : "KKA Leibstadt", + "lang" : "fr-CH" + }, + { + "text" : "KKA Leibstadt", + "lang" : "it-CH" + }, + { + "text" : "KKA Leibstadt", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kernkraftwerk Leibstadt AG", + "lang" : "de-CH" + }, + { + "text" : "Kernkraftwerk Leibstadt AG", + "lang" : "fr-CH" + }, + { + "text" : "Kernkraftwerk Leibstadt AG", + "lang" : "it-CH" + }, + { + "text" : "Kernkraftwerk Leibstadt AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Sicherungsbeauftragter", + "lang" : "de-CH" + }, + { + "text" : "Sicherungsbeauftragter", + "lang" : "fr-CH" + }, + { + "text" : "Sicherungsbeauftragter", + "lang" : "it-CH" + }, + { + "text" : "Sicherungsbeauftragter", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Martin Süss", + "lang" : "de-CH" + }, + { + "text" : "Martin Süss", + "lang" : "fr-CH" + }, + { + "text" : "Martin Süss", + "lang" : "it-CH" + }, + { + "text" : "Martin Süss", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kkl.ch/unternehmen/medien/kontakt-medienstelle", + "email" : "medien@kkl.ch", + "phone" : "0041562677111", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.2932267, 47.0906466 ], + [ 7.2931888, 47.0905638 ], + [ 7.2924303, 47.0900097 ], + [ 7.2916377, 47.0894312 ], + [ 7.2901972, 47.0883814 ], + [ 7.2900013999999995, 47.0882292 ], + [ 7.2886385, 47.0871975 ], + [ 7.2879407, 47.0866694 ], + [ 7.2872929, 47.0861792 ], + [ 7.2871441, 47.0866054 ], + [ 7.2851711, 47.0853156 ], + [ 7.2850901, 47.0855422 ], + [ 7.2849294, 47.0860025 ], + [ 7.2849503, 47.0860655 ], + [ 7.2866046, 47.0873909 ], + [ 7.2866311, 47.0873127 ], + [ 7.2883598, 47.0884429 ], + [ 7.2875254, 47.0891416 ], + [ 7.2879843, 47.0893977 ], + [ 7.2881237, 47.0894752 ], + [ 7.288722, 47.0898088 ], + [ 7.2893269, 47.0901469 ], + [ 7.289469, 47.0902254 ], + [ 7.2901975, 47.090632 ], + [ 7.2903801999999995, 47.0907456 ], + [ 7.2905419, 47.0908726 ], + [ 7.2906798, 47.0910068 ], + [ 7.290886, 47.0911987 ], + [ 7.2911108, 47.0913816 ], + [ 7.2913513, 47.0915537 ], + [ 7.2915012, 47.0916501 ], + [ 7.2920649, 47.0911759 ], + [ 7.2922299, 47.0910376 ], + [ 7.292948, 47.0914379 ], + [ 7.2932267, 47.0906466 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZP002", + "country" : "CHE", + "name" : [ + { + "text" : "LSZP Biel-Kappelen (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSZP Biel-Kappelen (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSZP Biel-Kappelen (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSZP Biel-Kappelen (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Flugplatz Biel-Kappelen", + "lang" : "de-CH" + }, + { + "text" : "Flugplatz Biel-Kappelen", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatz Biel-Kappelen", + "lang" : "it-CH" + }, + { + "text" : "Flugplatz Biel-Kappelen", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Paul Misteli", + "lang" : "de-CH" + }, + { + "text" : "Paul Misteli", + "lang" : "fr-CH" + }, + { + "text" : "Paul Misteli", + "lang" : "it-CH" + }, + { + "text" : "Paul Misteli", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.lszp.ch", + "email" : "misteli.p@bluewin.ch", + "phone" : "0041791362839", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P02DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8092695, 47.4931879 ], + [ 7.8093436, 47.4933965 ], + [ 7.8093988, 47.4938722 ], + [ 7.8094866, 47.4941472 ], + [ 7.8096706000000005, 47.4945147 ], + [ 7.8098906, 47.4949498 ], + [ 7.8102645, 47.4948963 ], + [ 7.8102913, 47.4948924 ], + [ 7.8103487, 47.4947658 ], + [ 7.8103549999999995, 47.4947512 ], + [ 7.8103605, 47.4947365 ], + [ 7.8103653, 47.4947217 ], + [ 7.8103694, 47.4947068 ], + [ 7.8103727, 47.4946918 ], + [ 7.8103753, 47.4946767 ], + [ 7.8103771, 47.4946616 ], + [ 7.8103782, 47.4946465 ], + [ 7.8103785, 47.4946313 ], + [ 7.8103779, 47.4946111 ], + [ 7.8103765, 47.494591 ], + [ 7.8103744, 47.4945708 ], + [ 7.8103715, 47.4945507 ], + [ 7.8103677, 47.4945307 ], + [ 7.8103633, 47.4945108 ], + [ 7.8103163, 47.4943168 ], + [ 7.8103098, 47.4942907 ], + [ 7.8103025, 47.4942647 ], + [ 7.8102944, 47.4942388 ], + [ 7.8102856, 47.494213 ], + [ 7.8102761, 47.4941874 ], + [ 7.8102687, 47.4941699 ], + [ 7.8102606, 47.4941525 ], + [ 7.8102516, 47.4941354 ], + [ 7.8102419, 47.4941184 ], + [ 7.8102314, 47.4941016 ], + [ 7.8102201, 47.4940851 ], + [ 7.8102081, 47.4940689 ], + [ 7.8101953, 47.4940528 ], + [ 7.8101818, 47.4940371 ], + [ 7.8101676, 47.4940217 ], + [ 7.8100092, 47.4938547 ], + [ 7.8098614, 47.4936751 ], + [ 7.8098426, 47.4936508 ], + [ 7.8098246, 47.4936263 ], + [ 7.8098073, 47.4936015 ], + [ 7.8097908, 47.4935765 ], + [ 7.809775, 47.4935513 ], + [ 7.80976, 47.4935258 ], + [ 7.8097457, 47.4935002 ], + [ 7.8097345, 47.4934806 ], + [ 7.8097227, 47.4934612 ], + [ 7.8097101, 47.493442 ], + [ 7.809697, 47.493423 ], + [ 7.8096831, 47.4934042 ], + [ 7.8096686, 47.4933857 ], + [ 7.8096611, 47.4933769 ], + [ 7.8096528, 47.4933684 ], + [ 7.8096438, 47.4933602 ], + [ 7.8096341, 47.4933524 ], + [ 7.8096238, 47.493345 ], + [ 7.8096129, 47.493338 ], + [ 7.8096014, 47.4933314 ], + [ 7.8095894, 47.4933253 ], + [ 7.8095769, 47.4933197 ], + [ 7.8092695, 47.4931879 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns269", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Im Boden", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Im Boden", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Im Boden", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Im Boden", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8303359, 47.309674 ], + [ 7.820107, 47.3217609 ], + [ 7.8151452, 47.3309515 ], + [ 7.8358823, 47.344194 ], + [ 7.8480565, 47.3441515 ], + [ 7.8732384, 47.3489166 ], + [ 7.9003103, 47.3574463 ], + [ 7.9082646, 47.3588534 ], + [ 7.9197323, 47.3681605 ], + [ 7.9472276, 47.3637255 ], + [ 7.949325, 47.3615576 ], + [ 7.9550013, 47.3462417 ], + [ 7.9503193, 47.3271941 ], + [ 7.9135743, 47.3307689 ], + [ 7.9072857, 47.3378103 ], + [ 7.8965496, 47.320224 ], + [ 7.8906917, 47.3157498 ], + [ 7.8303359, 47.309674 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSPO001", + "country" : "CHE", + "name" : [ + { + "text" : "LSPO Olten", + "lang" : "de-CH" + }, + { + "text" : "LSPO Olten", + "lang" : "fr-CH" + }, + { + "text" : "LSPO Olten", + "lang" : "it-CH" + }, + { + "text" : "LSPO Olten", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Segelfluggruppe Olten / SGOlten", + "lang" : "de-CH" + }, + { + "text" : "Segelfluggruppe Olten / SGOlten", + "lang" : "fr-CH" + }, + { + "text" : "Segelfluggruppe Olten / SGOlten", + "lang" : "it-CH" + }, + { + "text" : "Segelfluggruppe Olten / SGOlten", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Urs Müller", + "lang" : "de-CH" + }, + { + "text" : "Urs Müller", + "lang" : "fr-CH" + }, + { + "text" : "Urs Müller", + "lang" : "it-CH" + }, + { + "text" : "Urs Müller", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.sgolten.ch", + "email" : "flugplatzchef@sgolten.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P02DT12H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6381874, 47.5470174 ], + [ 7.6371631, 47.547199 ], + [ 7.6367928, 47.5472646 ], + [ 7.636393, 47.5473355 ], + [ 7.6341467, 47.5478054 ], + [ 7.6342178, 47.5478607 ], + [ 7.6343794, 47.5481289 ], + [ 7.6345716, 47.5483905 ], + [ 7.6347632, 47.5486217 ], + [ 7.6348674, 47.5487299 ], + [ 7.6350095, 47.5488672 ], + [ 7.6351821, 47.5490121 ], + [ 7.6353767999999995, 47.5491629 ], + [ 7.6355782, 47.5493125 ], + [ 7.6357893, 47.5494404 ], + [ 7.636037, 47.549574 ], + [ 7.6362287, 47.5496705 ], + [ 7.6364167, 47.5497604 ], + [ 7.6365141, 47.5498473 ], + [ 7.6366531, 47.5499289 ], + [ 7.6367357, 47.5499667 ], + [ 7.6370962, 47.5500798 ], + [ 7.6374898, 47.5501887 ], + [ 7.6382258, 47.5503322 ], + [ 7.6392095, 47.5505224 ], + [ 7.6401832, 47.5507114 ], + [ 7.6411066, 47.5508906 ], + [ 7.6413672, 47.5509355 ], + [ 7.6416238, 47.5509716 ], + [ 7.6418812, 47.5509937 ], + [ 7.6421447, 47.5509961 ], + [ 7.6424065, 47.5509808 ], + [ 7.6426567, 47.5509439 ], + [ 7.6429030000000004, 47.5508883 ], + [ 7.643136, 47.5508148 ], + [ 7.6433544, 47.5507304 ], + [ 7.6435579, 47.5506361 ], + [ 7.6437079, 47.5505463 ], + [ 7.6448946, 47.5499861 ], + [ 7.6452765, 47.5498265 ], + [ 7.6455135, 47.5497106 ], + [ 7.6457026, 47.5495615 ], + [ 7.6462348, 47.5490225 ], + [ 7.6465383, 47.5487222 ], + [ 7.6467353, 47.5486151 ], + [ 7.6469019, 47.5485517 ], + [ 7.6472028, 47.5483094 ], + [ 7.6472754, 47.5482553 ], + [ 7.646299, 47.5469554 ], + [ 7.6484302, 47.5459811 ], + [ 7.6491175, 47.5470111 ], + [ 7.6492955, 47.546904 ], + [ 7.6499488, 47.5464935 ], + [ 7.6505814999999995, 47.5460938 ], + [ 7.650846, 47.5458326 ], + [ 7.6511358, 47.5456031 ], + [ 7.6515471, 47.5454358 ], + [ 7.6517281, 47.5453203 ], + [ 7.6517514, 47.545305 ], + [ 7.6517744, 47.5452895 ], + [ 7.651797, 47.5452737 ], + [ 7.6518194, 47.5452578 ], + [ 7.6518411, 47.5452419 ], + [ 7.6518624, 47.5452259 ], + [ 7.6518835, 47.5452096 ], + [ 7.6519042, 47.5451932 ], + [ 7.6524562, 47.5447564 ], + [ 7.6524848, 47.5447342 ], + [ 7.6525139, 47.5447124 ], + [ 7.6525436, 47.544691 ], + [ 7.6525737, 47.5446698 ], + [ 7.6526041, 47.544649 ], + [ 7.6526351, 47.5446285 ], + [ 7.6526665, 47.5446084 ], + [ 7.6526984, 47.5445886 ], + [ 7.6555607, 47.5427734 ], + [ 7.6553476, 47.5426384 ], + [ 7.6557018, 47.5423854 ], + [ 7.6564245, 47.5419449 ], + [ 7.6571206, 47.5414829 ], + [ 7.6578365999999995, 47.5410057 ], + [ 7.6582878999999995, 47.5405086 ], + [ 7.6584476, 47.5403113 ], + [ 7.6588263, 47.5398435 ], + [ 7.6585362, 47.5393861 ], + [ 7.6581074000000005, 47.5385285 ], + [ 7.6580882, 47.5384082 ], + [ 7.6578513, 47.5385344 ], + [ 7.6567893, 47.5390768 ], + [ 7.6558481, 47.5395575 ], + [ 7.6557544, 47.5396255 ], + [ 7.6556885999999995, 47.539709 ], + [ 7.6556303, 47.539763 ], + [ 7.6555534, 47.5398076 ], + [ 7.6554622, 47.5398381 ], + [ 7.6552761, 47.5398674 ], + [ 7.6551908, 47.539892 ], + [ 7.6551176, 47.5399292 ], + [ 7.6540537, 47.5404725 ], + [ 7.6529917, 47.5410143 ], + [ 7.6518665, 47.5415879 ], + [ 7.6505804, 47.542244 ], + [ 7.6504756, 47.5423065 ], + [ 7.6503818, 47.5423754 ], + [ 7.6502676, 47.5424764 ], + [ 7.6501734, 47.5425483 ], + [ 7.6500644, 47.542614 ], + [ 7.6499705, 47.5426538 ], + [ 7.649872, 47.5426866 ], + [ 7.6497706, 47.5427142 ], + [ 7.6495695999999995, 47.5427614 ], + [ 7.6493818000000005, 47.5428283 ], + [ 7.6482887, 47.5433406 ], + [ 7.6471928, 47.5438536 ], + [ 7.6460989, 47.5443659 ], + [ 7.6459993, 47.5444126 ], + [ 7.6459994, 47.5444147 ], + [ 7.6459988, 47.5444169 ], + [ 7.6452241, 47.544776 ], + [ 7.6448141, 47.5449727 ], + [ 7.6448111999999995, 47.5449736 ], + [ 7.644808, 47.5449742 ], + [ 7.6448048, 47.5449745 ], + [ 7.6448015, 47.5449743 ], + [ 7.6441517999999995, 47.5452791 ], + [ 7.6435034, 47.5455795 ], + [ 7.6433614, 47.54566 ], + [ 7.6432359, 47.5457518 ], + [ 7.6431332, 47.5458192 ], + [ 7.64302, 47.5458793 ], + [ 7.6429341, 47.5459127 ], + [ 7.6428028, 47.5459479 ], + [ 7.6426634, 47.5459754 ], + [ 7.6424831, 47.5460037 ], + [ 7.6423093, 47.5460483 ], + [ 7.6420601999999995, 47.5461335 ], + [ 7.6418082, 47.5462157 ], + [ 7.6415534, 47.5462938 ], + [ 7.6412977, 47.5463679 ], + [ 7.6409369, 47.5464658 ], + [ 7.6405792, 47.5465572 ], + [ 7.6402125, 47.5466419 ], + [ 7.6398426, 47.5467195 ], + [ 7.6394709, 47.5467897 ], + [ 7.6381874, 47.5470174 ] + ], + [ + [ 7.6578584, 47.5407846 ], + [ 7.6578987, 47.5408935 ], + [ 7.6575423, 47.5409541 ], + [ 7.6575035, 47.5408458 ], + [ 7.6578584, 47.5407846 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns307", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Muttenzer Hard", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Muttenzer Hard", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Muttenzer Hard", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Muttenzer Hard", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8895845, 47.3437101 ], + [ 7.8815372, 47.3393745 ], + [ 7.8817067, 47.3392299 ], + [ 7.8808201, 47.3387539 ], + [ 7.8806572, 47.3388984 ], + [ 7.8800419, 47.3385671 ], + [ 7.8795689, 47.3389826 ], + [ 7.884798, 47.3418012 ], + [ 7.8844776, 47.3422567 ], + [ 7.8847062, 47.3423835 ], + [ 7.8850266, 47.3419235 ], + [ 7.8885214, 47.3438069 ], + [ 7.8881539, 47.3441771 ], + [ 7.8873136, 47.3435436 ], + [ 7.8871669, 47.3437267 ], + [ 7.8871225, 47.3439473 ], + [ 7.8878766, 47.3443986 ], + [ 7.8876703, 47.3445793 ], + [ 7.8882804, 47.3448881 ], + [ 7.8895845, 47.3437101 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSPO002", + "country" : "CHE", + "name" : [ + { + "text" : "LSPO Olten (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSPO Olten (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSPO Olten (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSPO Olten (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Segelfluggruppe Olten / SGOlten", + "lang" : "de-CH" + }, + { + "text" : "Segelfluggruppe Olten / SGOlten", + "lang" : "fr-CH" + }, + { + "text" : "Segelfluggruppe Olten / SGOlten", + "lang" : "it-CH" + }, + { + "text" : "Segelfluggruppe Olten / SGOlten", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Urs Müller", + "lang" : "de-CH" + }, + { + "text" : "Urs Müller", + "lang" : "fr-CH" + }, + { + "text" : "Urs Müller", + "lang" : "it-CH" + }, + { + "text" : "Urs Müller", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.sgolten.ch", + "email" : "flugplatzchef@sgolten.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P02DT12H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4135751, 47.3820225 ], + [ 7.4134516, 47.3819195 ], + [ 7.4131838, 47.3817272 ], + [ 7.4133667, 47.3815025 ], + [ 7.4138174, 47.3811197 ], + [ 7.4140783, 47.380817 ], + [ 7.4142508, 47.38093 ], + [ 7.4144091, 47.3811039 ], + [ 7.4144603, 47.3811602 ], + [ 7.4144622, 47.3811578 ], + [ 7.4147611, 47.3815021 ], + [ 7.4148693, 47.3816029 ], + [ 7.4149524, 47.3816803 ], + [ 7.4150449, 47.381679 ], + [ 7.4149904, 47.3815666 ], + [ 7.4151133, 47.3814768 ], + [ 7.4153318, 47.3815702 ], + [ 7.4154884, 47.3816779 ], + [ 7.41568, 47.3819246 ], + [ 7.4159296, 47.3821262 ], + [ 7.4160657, 47.3822192 ], + [ 7.4162967, 47.3823769 ], + [ 7.4164619, 47.382535 ], + [ 7.4166586, 47.3824891 ], + [ 7.4167494, 47.3825154 ], + [ 7.4167825, 47.3825603 ], + [ 7.4169075, 47.3828186 ], + [ 7.4169631, 47.3828439 ], + [ 7.4170601, 47.3829206 ], + [ 7.4171746, 47.3830111 ], + [ 7.4172294, 47.3830054 ], + [ 7.4172584, 47.3830024 ], + [ 7.41729, 47.3829991 ], + [ 7.4174752, 47.3829799 ], + [ 7.4174819, 47.3829226 ], + [ 7.4174474, 47.3827153 ], + [ 7.4174427, 47.3826871 ], + [ 7.4174276, 47.3826715 ], + [ 7.4173923, 47.3826352 ], + [ 7.4173889, 47.3826318 ], + [ 7.4173884, 47.3826312 ], + [ 7.4172772, 47.3825166 ], + [ 7.4171917, 47.3824285 ], + [ 7.4170435999999995, 47.3822939 ], + [ 7.4170068, 47.3822604 ], + [ 7.4170014, 47.3821791 ], + [ 7.4170013, 47.3821783 ], + [ 7.4170012, 47.3821762 ], + [ 7.4169832, 47.3819027 ], + [ 7.4169793, 47.3818461 ], + [ 7.4169721, 47.3817409 ], + [ 7.4158579, 47.3812788 ], + [ 7.415481, 47.3811378 ], + [ 7.4154672, 47.3811261 ], + [ 7.4155993, 47.3811091 ], + [ 7.4158113, 47.3810813 ], + [ 7.4160071, 47.3810505 ], + [ 7.4162906, 47.3810502 ], + [ 7.4165745, 47.3810825 ], + [ 7.4165955, 47.3810803 ], + [ 7.4167596, 47.3810632 ], + [ 7.4170202, 47.3810095 ], + [ 7.417021, 47.3810091 ], + [ 7.4172125, 47.3809698 ], + [ 7.4175699, 47.3809246 ], + [ 7.4178201999999995, 47.380893 ], + [ 7.4178415, 47.3808903 ], + [ 7.4184028, 47.3807822 ], + [ 7.4188706, 47.3806403 ], + [ 7.418953, 47.3805895 ], + [ 7.4191434, 47.3804723 ], + [ 7.4193406, 47.3803021 ], + [ 7.4193517, 47.3802925 ], + [ 7.4195577, 47.3800919 ], + [ 7.4198027, 47.3799455 ], + [ 7.4200498, 47.3799271 ], + [ 7.4202479, 47.3799309 ], + [ 7.420267, 47.3799634 ], + [ 7.420343, 47.3800933 ], + [ 7.420388, 47.3801872 ], + [ 7.420673, 47.3802827 ], + [ 7.4206813, 47.3803104 ], + [ 7.4207817, 47.3803521 ], + [ 7.4208601, 47.3803839 ], + [ 7.4208867, 47.3803944 ], + [ 7.4209896, 47.3804393 ], + [ 7.4210754, 47.3804867 ], + [ 7.4210946, 47.3805014 ], + [ 7.4212184, 47.3806124 ], + [ 7.4215199, 47.3806517 ], + [ 7.4216815, 47.3806887 ], + [ 7.4217402, 47.3807053 ], + [ 7.4220948, 47.3807471 ], + [ 7.4222089, 47.3807254 ], + [ 7.4225082, 47.3806473 ], + [ 7.4226436, 47.3806203 ], + [ 7.4228131, 47.3805757 ], + [ 7.4228913, 47.3805551 ], + [ 7.4231783, 47.3804613 ], + [ 7.4235086, 47.3803627 ], + [ 7.4236603, 47.3802958 ], + [ 7.4237372, 47.3801677 ], + [ 7.4238145, 47.3800261 ], + [ 7.4238624, 47.3797413 ], + [ 7.4238711, 47.3796598 ], + [ 7.4238775, 47.3795999 ], + [ 7.4238303, 47.3796032 ], + [ 7.4237831, 47.3796065 ], + [ 7.4229304, 47.3796601 ], + [ 7.421844, 47.3797319 ], + [ 7.4199453, 47.3798812 ], + [ 7.4181357, 47.3800443 ], + [ 7.4168374, 47.3801603 ], + [ 7.4168307, 47.3801609 ], + [ 7.4164909, 47.3801913 ], + [ 7.4146022, 47.3803565 ], + [ 7.4140403, 47.380399 ], + [ 7.4116977, 47.3805763 ], + [ 7.4127507999999995, 47.3815666 ], + [ 7.413038, 47.381825 ], + [ 7.4130616, 47.3818463 ], + [ 7.4130852, 47.3818675 ], + [ 7.4134558, 47.3822009 ], + [ 7.4135478, 47.3821514 ], + [ 7.4135751, 47.3820225 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr027", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Vordere Rohrberg", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Vordere Rohrberg", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Vordere Rohrberg", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Vordere Rohrberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.78768, 47.42813 ], + [ 7.7873329, 47.4283256 ], + [ 7.7873597, 47.4283411 ], + [ 7.7873755, 47.4283503 ], + [ 7.7873985999999995, 47.4283637 ], + [ 7.7873912, 47.4285511 ], + [ 7.787868, 47.4286357 ], + [ 7.788417, 47.4288494 ], + [ 7.7891316, 47.4291177 ], + [ 7.7895459, 47.4292718 ], + [ 7.789745, 47.4292113 ], + [ 7.7907397, 47.4288205 ], + [ 7.7909377, 47.4287357 ], + [ 7.7910484, 47.4286763 ], + [ 7.7907126, 47.4284854 ], + [ 7.7902339, 47.4283673 ], + [ 7.7897551, 47.4281764 ], + [ 7.7893362, 47.4279903 ], + [ 7.7891112, 47.4278189 ], + [ 7.7889324, 47.4276508 ], + [ 7.7883448, 47.4278757 ], + [ 7.7881371, 47.4279551 ], + [ 7.78768, 47.42813 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr138", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Brunnmätteli", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Brunnmätteli", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Brunnmätteli", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Brunnmätteli", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8313608, 47.4397459 ], + [ 7.8313662, 47.4398089 ], + [ 7.8314058, 47.4398161 ], + [ 7.8319707, 47.4399772 ], + [ 7.8322994999999995, 47.440021 ], + [ 7.832373, 47.4400377 ], + [ 7.8325252, 47.4400723 ], + [ 7.8325592, 47.4400827 ], + [ 7.8326996, 47.4401252 ], + [ 7.8328884, 47.4401825 ], + [ 7.8329889999999995, 47.440213 ], + [ 7.8332043, 47.4402783 ], + [ 7.8332002, 47.4402408 ], + [ 7.8331899, 47.440148 ], + [ 7.8331294, 47.4396019 ], + [ 7.8330544, 47.4390548 ], + [ 7.8330509, 47.439032 ], + [ 7.8330465, 47.4390094 ], + [ 7.8330413, 47.4389868 ], + [ 7.8330353, 47.4389643 ], + [ 7.8330284, 47.4389419 ], + [ 7.8330208, 47.4389197 ], + [ 7.8330165, 47.4389085 ], + [ 7.8330123, 47.4388976 ], + [ 7.8330029, 47.4388756 ], + [ 7.8329927999999995, 47.4388538 ], + [ 7.8329818, 47.4388322 ], + [ 7.8329371, 47.4387467 ], + [ 7.8328084, 47.4388008 ], + [ 7.8326827, 47.438846 ], + [ 7.8324085, 47.4389861 ], + [ 7.8323552, 47.4390685 ], + [ 7.8322595, 47.4392417 ], + [ 7.8320351, 47.4392175 ], + [ 7.8317109, 47.4391465 ], + [ 7.8315776, 47.4391349 ], + [ 7.8314306, 47.4396597 ], + [ 7.8313741, 47.4397397 ], + [ 7.8313608, 47.4397459 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr090", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Holden", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Holden", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Holden", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Holden", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + } + ] +} diff --git a/monitoring/uss_qualifier/test_data/che/geoawareness/SwissGeozones_ED318_Testdaten.json b/monitoring/uss_qualifier/test_data/che/geoawareness/SwissGeozones_ED318_Testdaten.json new file mode 100644 index 0000000000..8c67cde52f --- /dev/null +++ b/monitoring/uss_qualifier/test_data/che/geoawareness/SwissGeozones_ED318_Testdaten.json @@ -0,0 +1,340147 @@ +{ + "type" : "FeatureCollection", + "name" : "Test data of the Swiss UAS Geozones according to ED-318 converted from the ED-269 data model", + "bbox" : [ 5.9643748, 45.8193544, 10.5591277, 47.7720945 ], + "description" : "Test data of the Swiss UAS Geozones according to ED-318 - format version 2.0", + "metadata" : { + "validFrom" : "2016-09-15T00:00:00+02:00", + "provider" : [ + { + "text" : "BAZL", + "lang" : "de-CH" + }, + { + "text" : "OFAC", + "lang" : "fr-CH" + }, + { + "text" : "UFAC", + "lang" : "it-CH" + }, + { + "text" : "FOCA", + "lang" : "en-GB" + } + ], + "issued" : "2025-03-13T13:58:00+01:00", + "description" : [ + { + "text" : "Testdaten der Schweizerischen UAS Geozones, herausgegeben vom Bundesamt für Zivilluftfahrt (BAZL). Der Datensatz hat keine Rechtskraft. Umwandlung aus dem Modell ED-269", + "lang" : "de-CH" + }, + { + "text" : "Données de test des UAS Geozones suisses publiées par l'Office fédéral de l'aviation civile (OFAC). L'ensemble de données n'a pas de valeur juridique. Conversion à partir du modèle ED-269", + "lang" : "fr-CH" + }, + { + "text" : "Dati di prova delle Geozones UAS svizzere emesse dall'Ufficio federale dell'aviazione civile (UFAC). Il dataset non ha valore legale. Conversione dal modello ED-269", + "lang" : "it-CH" + }, + { + "text" : "Test data of the Swiss UAS Geozones issued by the Federal Office of Civil Aviation (FOCA). The dataset has no legal validity. Conversion from the ED-269 model", + "lang" : "en-GB" + } + ], + "otherGeoid" : "CHGeo2004", + "technicalLimitation" : [ + { + "text" : "Der Datensatz entsteht durch die Umwandlung der Originaldaten des ED-269-Modells ins neue ED-318. Für die Umwandlung sind einige Datenänderungen nötig", + "lang" : "de-CH" + }, + { + "text" : "Le fichier a été créé en convertissant les données originales du modèle ED-269 dans le nouveau ED-318. La conversion nécessite des modifications des données", + "lang" : "fr-CH" + }, + { + "text" : "Il dataset è stato creato convertendo i dati originali del modello ED-269 nel nuovo ED-318. Per la conversione alcune modifiche dei dati sono necessarie", + "lang" : "it-CH" + }, + { + "text" : "The dataset was created by converting the original data from the ED-269 model to the new ED-318. Some data modifications are necessary for conversion", + "lang" : "en-GB" + } + ] + }, + "features" : [ + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4355068, 46.9402526 ], + [ 7.4368695, 46.9418327 ], + [ 7.4387706, 46.9437947 ], + [ 7.4408192, 46.9456857 ], + [ 7.4430096, 46.9475007 ], + [ 7.4453359, 46.9492347 ], + [ 7.4477917, 46.9508829 ], + [ 7.4503702, 46.9524407 ], + [ 7.4530644, 46.9539039 ], + [ 7.4558669, 46.9552685 ], + [ 7.45877, 46.9565308 ], + [ 7.4617657, 46.9576872 ], + [ 7.4648458, 46.9587345 ], + [ 7.4680019, 46.95967 ], + [ 7.4712253, 46.9604911 ], + [ 7.4745071, 46.9611954 ], + [ 7.4778383, 46.961781 ], + [ 7.4812098, 46.9622464 ], + [ 7.4846123, 46.9625903 ], + [ 7.4880365, 46.9628117 ], + [ 7.4914728, 46.9629099 ], + [ 7.494912, 46.9628848 ], + [ 7.4983446, 46.9627365 ], + [ 7.5017610999999995, 46.9624652 ], + [ 7.5051521, 46.9620718 ], + [ 7.5085083, 46.9615573 ], + [ 7.5093889, 46.9613887 ], + [ 7.4355068, 46.9402526 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 60, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZB003", + "country" : "CHE", + "name" : [ + { + "text" : "LSZB Bern-Belp 2", + "lang" : "de-CH" + }, + { + "text" : "LSZB Bern-Belp 2", + "lang" : "fr-CH" + }, + { + "text" : "LSZB Bern-Belp 2", + "lang" : "it-CH" + }, + { + "text" : "LSZB Bern-Belp 2", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Special Flight Office (SFO)", + "lang" : "de-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "fr-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "it-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "en-GB" + } + ], + "siteURL" : "https://skyguide.ch/services/special-flights", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5380771, 47.4931128 ], + [ 7.5380571, 47.4931546 ], + [ 7.538315, 47.4932532 ], + [ 7.5385897, 47.493358 ], + [ 7.5386419, 47.4933807 ], + [ 7.5387059, 47.4933811 ], + [ 7.538958, 47.493485 ], + [ 7.5390456, 47.4935621 ], + [ 7.5391291, 47.4935929 ], + [ 7.5391899, 47.493658 ], + [ 7.5392657, 47.4937026 ], + [ 7.5394173, 47.493705 ], + [ 7.5394293, 47.49368 ], + [ 7.5394407, 47.4936561 ], + [ 7.5396604, 47.4931961 ], + [ 7.538932, 47.4930931 ], + [ 7.5381406, 47.4929805 ], + [ 7.5380771, 47.4931128 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns058", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Langmatt", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Langmatt", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Langmatt", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Langmatt", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.1289534, 46.9783049 ], + [ 7.1285816, 46.9789731 ], + [ 7.136025, 46.9802911 ], + [ 7.136396, 46.9795329 ], + [ 7.130964, 46.9786 ], + [ 7.1311429, 46.9781174 ], + [ 7.1295214, 46.9778234 ], + [ 7.1292357, 46.9783542 ], + [ 7.1289534, 46.9783049 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSTB002", + "country" : "CHE", + "name" : [ + { + "text" : "LSTB Bellechasse (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSTB Bellechasse (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSTB Bellechasse (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSTB Bellechasse (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Segelfluggruppe Freiburg", + "lang" : "de-CH" + }, + { + "text" : "Segelfluggruppe Freiburg", + "lang" : "fr-CH" + }, + { + "text" : "Segelfluggruppe Freiburg", + "lang" : "it-CH" + }, + { + "text" : "Segelfluggruppe Freiburg", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Reto Petri", + "lang" : "de-CH" + }, + { + "text" : "Reto Petri", + "lang" : "fr-CH" + }, + { + "text" : "Reto Petri", + "lang" : "it-CH" + }, + { + "text" : "Reto Petri", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.sg-freiburg.com/kontakt", + "email" : "flugplatzleiter@sg-freiburg.ch", + "phone" : "0041266731933", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P02DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.887319699999999, 46.1667559 ], + [ 8.887262400000001, 46.1660143 ], + [ 8.8855276, 46.1659331 ], + [ 8.8855738, 46.1644039 ], + [ 8.8874688, 46.1603847 ], + [ 8.8726788, 46.1583828 ], + [ 8.8713434, 46.1618107 ], + [ 8.8720901, 46.1615502 ], + [ 8.8718865, 46.166458 ], + [ 8.8735294, 46.1666414 ], + [ 8.874399, 46.166768 ], + [ 8.8758694, 46.1667916 ], + [ 8.8868463, 46.166824 ], + [ 8.887319699999999, 46.1667559 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSMO002", + "country" : "CHE", + "name" : [ + { + "text" : "LSMO Locarno (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSMO Locarno (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSMO Locarno (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSMO Locarno (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Special Flight Office (SFO)", + "lang" : "de-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "fr-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "it-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "en-GB" + } + ], + "siteURL" : "https://skyguide.ch/services/special-flights", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6305266, 47.5053824 ], + [ 7.6305271999999995, 47.505382 ], + [ 7.6307176, 47.504957 ], + [ 7.6307434, 47.5049196 ], + [ 7.6307259, 47.5048741 ], + [ 7.6306997, 47.5048286 ], + [ 7.6306746, 47.5047809 ], + [ 7.6306375, 47.5047156 ], + [ 7.6306254, 47.5046752 ], + [ 7.6305914999999995, 47.5045806 ], + [ 7.6305641, 47.504502 ], + [ 7.6305444, 47.5044294 ], + [ 7.6305301, 47.5043817 ], + [ 7.6305181, 47.5043523 ], + [ 7.630505, 47.504331 ], + [ 7.6304886, 47.5043083 ], + [ 7.6304713, 47.5042973 ], + [ 7.6304528, 47.5042929 ], + [ 7.6304084, 47.5042923 ], + [ 7.6303596, 47.5042792 ], + [ 7.6303216, 47.5042635 ], + [ 7.630291, 47.5042485 ], + [ 7.6302639, 47.5042307 ], + [ 7.630241, 47.5042104 ], + [ 7.6302228, 47.504188 ], + [ 7.6302076, 47.5041523 ], + [ 7.6301987, 47.5041156 ], + [ 7.6301886, 47.5040785 ], + [ 7.6301816, 47.5040411 ], + [ 7.6301777, 47.5040034 ], + [ 7.6301769, 47.5039657 ], + [ 7.6301737, 47.5039033 ], + [ 7.6301701, 47.503841 ], + [ 7.6301371, 47.5035458 ], + [ 7.6301082000000005, 47.5034008 ], + [ 7.6271145, 47.5035022 ], + [ 7.627079, 47.5035749 ], + [ 7.6270109, 47.5037109 ], + [ 7.6269402, 47.5038435 ], + [ 7.6268869, 47.5039343 ], + [ 7.6268270000000005, 47.5040404 ], + [ 7.6267894, 47.5041158 ], + [ 7.6267518, 47.5041913 ], + [ 7.6267168, 47.5042921 ], + [ 7.6266917, 47.5043297 ], + [ 7.6266272, 47.5043744 ], + [ 7.6265533, 47.5043992 ], + [ 7.6264929, 47.5044099 ], + [ 7.6264401, 47.5044103 ], + [ 7.6263813, 47.50441 ], + [ 7.6263089, 47.504402 ], + [ 7.6261767, 47.5043791 ], + [ 7.6260411999999995, 47.504358 ], + [ 7.6260213, 47.5043542 ], + [ 7.6260006, 47.5043537 ], + [ 7.6259697, 47.5043582 ], + [ 7.6259414, 47.5043677 ], + [ 7.6259293, 47.5043759 ], + [ 7.625921, 47.5043861 ], + [ 7.6259131, 47.504398 ], + [ 7.6259078, 47.5044106 ], + [ 7.6259053, 47.5044235 ], + [ 7.6259056, 47.5044366 ], + [ 7.625909, 47.5044675 ], + [ 7.6259091, 47.5044984 ], + [ 7.6259032, 47.5045236 ], + [ 7.625893, 47.5045482 ], + [ 7.6258338, 47.5046464 ], + [ 7.6258177, 47.5046767 ], + [ 7.625807, 47.504708 ], + [ 7.6258018, 47.50474 ], + [ 7.6258023999999995, 47.5047722 ], + [ 7.6258078000000005, 47.5048126 ], + [ 7.6258178, 47.5048527 ], + [ 7.6259064, 47.5051743 ], + [ 7.6259605, 47.5053958 ], + [ 7.6259815, 47.5054559 ], + [ 7.6260107, 47.5055145 ], + [ 7.6262294, 47.5059196 ], + [ 7.6262814, 47.5060021 ], + [ 7.6263407999999995, 47.5060823 ], + [ 7.6263874, 47.5061364 ], + [ 7.6264412, 47.5061873 ], + [ 7.6264749, 47.5062185 ], + [ 7.6265145, 47.5062464 ], + [ 7.6265613, 47.5062705 ], + [ 7.6266123, 47.5062903 ], + [ 7.6266355, 47.5062942 ], + [ 7.6266591, 47.5062962 ], + [ 7.6266829, 47.5062964 ], + [ 7.626718, 47.5063239 ], + [ 7.6268611, 47.5064979 ], + [ 7.6279882, 47.5061031 ], + [ 7.6286914, 47.5059966 ], + [ 7.6295423, 47.5058695 ], + [ 7.6297786, 47.5058314 ], + [ 7.6305266, 47.5053824 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr029", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Spitalholz", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Spitalholz", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Spitalholz", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Spitalholz", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.9478895, 46.5349198 ], + [ 8.9478802, 46.5347787 ], + [ 8.9478602, 46.5346381 ], + [ 8.9478296, 46.5344984 ], + [ 8.9477884, 46.53436 ], + [ 8.9477368, 46.5342233 ], + [ 8.947674899999999, 46.5340886 ], + [ 8.9476029, 46.5339564 ], + [ 8.9475209, 46.5338269 ], + [ 8.9474292, 46.5337006 ], + [ 8.9473281, 46.5335777 ], + [ 8.9472178, 46.5334587 ], + [ 8.9470986, 46.5333438 ], + [ 8.9469709, 46.5332334 ], + [ 8.946835, 46.5331277 ], + [ 8.9466912, 46.5330271 ], + [ 8.94654, 46.5329319 ], + [ 8.9463818, 46.5328422 ], + [ 8.9462171, 46.5327584 ], + [ 8.9460461, 46.5326806 ], + [ 8.9458696, 46.5326091 ], + [ 8.9456878, 46.5325441 ], + [ 8.9455014, 46.5324857 ], + [ 8.9453108, 46.5324342 ], + [ 8.9451165, 46.5323896 ], + [ 8.9449191, 46.532352 ], + [ 8.9447192, 46.5323217 ], + [ 8.9445172, 46.5322986 ], + [ 8.9443138, 46.5322829 ], + [ 8.9441094, 46.5322745 ], + [ 8.9439047, 46.5322735 ], + [ 8.9437002, 46.5322799 ], + [ 8.9434964, 46.5322937 ], + [ 8.943294, 46.5323148 ], + [ 8.9430935, 46.5323432 ], + [ 8.9428954, 46.5323788 ], + [ 8.9427002, 46.5324216 ], + [ 8.9425086, 46.5324713 ], + [ 8.942321, 46.5325278 ], + [ 8.9421379, 46.5325911 ], + [ 8.9419599, 46.5326609 ], + [ 8.941787399999999, 46.532737 ], + [ 8.941621, 46.5328192 ], + [ 8.941461, 46.5329074 ], + [ 8.9413079, 46.5330012 ], + [ 8.9411621, 46.5331004 ], + [ 8.9410241, 46.5332047 ], + [ 8.9408941, 46.5333139 ], + [ 8.9407726, 46.5334276 ], + [ 8.9406599, 46.5335455 ], + [ 8.9405563, 46.5336674 ], + [ 8.9404621, 46.5337928 ], + [ 8.9403775, 46.5339215 ], + [ 8.9403028, 46.534053 ], + [ 8.9402381, 46.5341871 ], + [ 8.9401837, 46.5343233 ], + [ 8.9401398, 46.5344613 ], + [ 8.9401063, 46.5346007 ], + [ 8.9400835, 46.5347411 ], + [ 8.9400713, 46.5348821 ], + [ 8.9400699, 46.5350234 ], + [ 8.9400792, 46.5351645 ], + [ 8.9400991, 46.5353052 ], + [ 8.9401297, 46.5354449 ], + [ 8.9401709, 46.5355833 ], + [ 8.9402225, 46.53572 ], + [ 8.9402844, 46.5358547 ], + [ 8.9403564, 46.5359869 ], + [ 8.9404384, 46.5361164 ], + [ 8.94053, 46.5362427 ], + [ 8.9406311, 46.5363656 ], + [ 8.9407414, 46.5364846 ], + [ 8.9408606, 46.5365995 ], + [ 8.9409883, 46.5367099 ], + [ 8.9411243, 46.5368156 ], + [ 8.941268, 46.5369162 ], + [ 8.9414192, 46.5370114 ], + [ 8.9415774, 46.5371011 ], + [ 8.9417422, 46.537185 ], + [ 8.9419131, 46.5372628 ], + [ 8.9420897, 46.5373343 ], + [ 8.9422715, 46.5373993 ], + [ 8.9424579, 46.5374577 ], + [ 8.9426485, 46.5375092 ], + [ 8.9428428, 46.5375538 ], + [ 8.9430402, 46.5375913 ], + [ 8.9432402, 46.5376217 ], + [ 8.9434422, 46.5376448 ], + [ 8.9436456, 46.5376605 ], + [ 8.94385, 46.5376689 ], + [ 8.9440547, 46.5376699 ], + [ 8.9442593, 46.5376635 ], + [ 8.944463, 46.5376497 ], + [ 8.9446655, 46.5376286 ], + [ 8.944866, 46.5376001 ], + [ 8.9450642, 46.5375645 ], + [ 8.9452593, 46.5375218 ], + [ 8.945451, 46.5374721 ], + [ 8.9456386, 46.5374155 ], + [ 8.9458217, 46.5373523 ], + [ 8.9459997, 46.5372825 ], + [ 8.9461722, 46.5372064 ], + [ 8.9463386, 46.5371241 ], + [ 8.9464986, 46.537036 ], + [ 8.9466517, 46.5369421 ], + [ 8.9467975, 46.5368429 ], + [ 8.9469356, 46.5367386 ], + [ 8.9470655, 46.5366294 ], + [ 8.947187, 46.5365157 ], + [ 8.9472997, 46.5363978 ], + [ 8.9474033, 46.5362759 ], + [ 8.9474975, 46.5361504 ], + [ 8.9475821, 46.5360218 ], + [ 8.9476568, 46.5358902 ], + [ 8.9477214, 46.5357562 ], + [ 8.9477758, 46.53562 ], + [ 8.9478197, 46.535482 ], + [ 8.9478532, 46.5353426 ], + [ 8.947876, 46.5352022 ], + [ 8.9478881, 46.5350611 ], + [ 8.9478895, 46.5349198 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0082", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Olivone", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Olivone", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Olivone", + "lang" : "it-CH" + }, + { + "text" : "Substation Olivone", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8314676, 47.4478551 ], + [ 7.8312162999999995, 47.4477358 ], + [ 7.8312022, 47.4477184 ], + [ 7.8311882, 47.4477011 ], + [ 7.8310994, 47.4475914 ], + [ 7.8310797999999995, 47.4475762 ], + [ 7.8310524, 47.4475549 ], + [ 7.8309299, 47.4474598 ], + [ 7.830842, 47.4473873 ], + [ 7.8308142, 47.4473645 ], + [ 7.8307475, 47.4473626 ], + [ 7.830721, 47.4473619 ], + [ 7.8306373, 47.4474463 ], + [ 7.8305648, 47.4475625 ], + [ 7.830531, 47.4476166 ], + [ 7.830494, 47.4476054 ], + [ 7.8302753, 47.4475393 ], + [ 7.8302204, 47.4475227 ], + [ 7.8301856, 47.447533 ], + [ 7.8301407, 47.4475463 ], + [ 7.8301400999999995, 47.4476046 ], + [ 7.8302531, 47.4476934 ], + [ 7.830281, 47.4478901 ], + [ 7.8303127, 47.448113 ], + [ 7.8305588, 47.4483486 ], + [ 7.8308175, 47.4485158 ], + [ 7.8308194, 47.4485171 ], + [ 7.8310926, 47.4487256 ], + [ 7.8313348, 47.4489106 ], + [ 7.8314798, 47.4489614 ], + [ 7.83151, 47.448972 ], + [ 7.8316691, 47.4489322 ], + [ 7.8317612, 47.4489092 ], + [ 7.8319583999999995, 47.448135 ], + [ 7.8314676, 47.4478551 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr091", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Dubenrain", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Dubenrain", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Dubenrain", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Dubenrain", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.4604121, 47.5089116 ], + [ 9.449423, 47.5012908 ], + [ 9.4494082, 47.5013158 ], + [ 9.4493168, 47.5014661 ], + [ 9.4494114, 47.5015983 ], + [ 9.449464, 47.5016488 ], + [ 9.4494659, 47.501655 ], + [ 9.4494871, 47.5016473 ], + [ 9.4495331, 47.5018084 ], + [ 9.448788, 47.5024691 ], + [ 9.4481988, 47.5026863 ], + [ 9.446939, 47.5027262 ], + [ 9.4468788, 47.5028891 ], + [ 9.4470587, 47.5030839 ], + [ 9.4470257, 47.5032644 ], + [ 9.4468019, 47.5033133 ], + [ 9.4467229, 47.504736199999996 ], + [ 9.4466582, 47.5047823 ], + [ 9.4467688, 47.5052482 ], + [ 9.4466752, 47.5052318 ], + [ 9.4462856, 47.5054635 ], + [ 9.4461536, 47.5054838 ], + [ 9.4458321, 47.5057592 ], + [ 9.4456987, 47.5057436 ], + [ 9.4453687, 47.5057943 ], + [ 9.4452343, 47.505751599999996 ], + [ 9.4452575, 47.5056612 ], + [ 9.445055, 47.5055748 ], + [ 9.4449656, 47.5056663 ], + [ 9.4443202, 47.5054526 ], + [ 9.4439238, 47.5055044 ], + [ 9.4436904, 47.5053015 ], + [ 9.4435594, 47.5053488 ], + [ 9.4433587, 47.5053073 ], + [ 9.4433621, 47.5053972 ], + [ 9.443096, 47.5053838 ], + [ 9.4428272, 47.5052985 ], + [ 9.4425483, 47.5049435 ], + [ 9.4422853, 47.505011 ], + [ 9.4422139, 47.5048773 ], + [ 9.4414211, 47.504981 ], + [ 9.4411193, 47.5050761 ], + [ 9.4407621, 47.5051093 ], + [ 9.4406277, 47.5050667 ], + [ 9.4403249, 47.5051349 ], + [ 9.440165, 47.5051196 ], + [ 9.4399891, 47.5050327 ], + [ 9.4395611, 47.5049501 ], + [ 9.4385633, 47.5048954 ], + [ 9.437847, 47.5052676 ], + [ 9.4367371, 47.5057636 ], + [ 9.4357737, 47.5065146 ], + [ 9.4358029, 47.5065647 ], + [ 9.4540129, 47.5142567 ], + [ 9.4604121, 47.5089116 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "WZV0030", + "country" : "CHE", + "name" : [ + { + "text" : "Wasser- und Zugvogelreservat Rorschacher Bucht / Arbon", + "lang" : "de-CH" + }, + { + "text" : "Réserve d'oiseaux d'eau et de migrateurs Rorschacher Bucht / Arbon", + "lang" : "fr-CH" + }, + { + "text" : "Riserva di uccelli acquatici e migratori Rorschacher Bucht / Arbon", + "lang" : "it-CH" + }, + { + "text" : "Water Bird and Migratory Bird Reserves Rorschacher Bucht / Arbon", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6084235, 47.5781319 ], + [ 7.6083979, 47.5780394 ], + [ 7.6083487, 47.5779022 ], + [ 7.608289, 47.5777668 ], + [ 7.6082189, 47.5776337 ], + [ 7.6081386, 47.5775034 ], + [ 7.6080483, 47.577376 ], + [ 7.6079483, 47.577252 ], + [ 7.6078388, 47.5771317 ], + [ 7.6077202, 47.5770155 ], + [ 7.6075928, 47.5769036 ], + [ 7.6074569, 47.5767964 ], + [ 7.6073128, 47.5766941 ], + [ 7.6071611, 47.5765971 ], + [ 7.6070021, 47.5765056 ], + [ 7.6068362, 47.5764198 ], + [ 7.6066639, 47.5763401 ], + [ 7.6064856, 47.5762665 ], + [ 7.606302, 47.5761994 ], + [ 7.6061133, 47.5761389 ], + [ 7.6059203, 47.5760851 ], + [ 7.6057234000000005, 47.5760382 ], + [ 7.6055231, 47.5759984 ], + [ 7.60532, 47.5759657 ], + [ 7.6051146, 47.5759402 ], + [ 7.6049076, 47.5759221 ], + [ 7.6046995, 47.5759113 ], + [ 7.6044908, 47.5759079 ], + [ 7.6042821, 47.5759119 ], + [ 7.604074, 47.5759233 ], + [ 7.6038671, 47.575942 ], + [ 7.6036619, 47.575968 ], + [ 7.6034591, 47.5760013 ], + [ 7.6032589999999995, 47.5760417 ], + [ 7.6030624, 47.5760891 ], + [ 7.6028697, 47.5761434 ], + [ 7.6026815, 47.5762045 ], + [ 7.6024982, 47.5762722 ], + [ 7.6023205, 47.5763462 ], + [ 7.6021487, 47.5764265 ], + [ 7.6019833, 47.5765127 ], + [ 7.6018249, 47.5766046 ], + [ 7.6016737, 47.5767021 ], + [ 7.6015303, 47.5768047 ], + [ 7.6013950999999995, 47.5769123 ], + [ 7.6012683, 47.5770246 ], + [ 7.6011505, 47.5771412 ], + [ 7.6010417, 47.5772617 ], + [ 7.6009425, 47.577386 ], + [ 7.600853, 47.5775136 ], + [ 7.6007735, 47.5776442 ], + [ 7.6007043, 47.5777775 ], + [ 7.6006454, 47.577913 ], + [ 7.600597, 47.5780504 ], + [ 7.6005594, 47.5781894 ], + [ 7.6005326, 47.5783295 ], + [ 7.6005166, 47.5784703 ], + [ 7.6005116, 47.5786115 ], + [ 7.6005175, 47.5787527 ], + [ 7.6005343, 47.5788935 ], + [ 7.600562, 47.5790335 ], + [ 7.6006004, 47.5791723 ], + [ 7.6006496, 47.5793096 ], + [ 7.6007092, 47.579445 ], + [ 7.6007793, 47.579578 ], + [ 7.6008596, 47.5797084 ], + [ 7.6009499, 47.5798358 ], + [ 7.6010499, 47.5799598 ], + [ 7.6011593, 47.5800801 ], + [ 7.6012778999999995, 47.5801963 ], + [ 7.6014053, 47.5803082 ], + [ 7.6015412, 47.5804154 ], + [ 7.6016852, 47.5805177 ], + [ 7.601837, 47.5806147 ], + [ 7.601996, 47.5807063 ], + [ 7.6021619000000005, 47.580792 ], + [ 7.6023342, 47.5808718 ], + [ 7.6025124, 47.5809453 ], + [ 7.6026961, 47.5810125 ], + [ 7.6028847, 47.581073 ], + [ 7.6030777, 47.5811268 ], + [ 7.6032747, 47.5811737 ], + [ 7.6034749999999995, 47.5812135 ], + [ 7.6036781, 47.5812462 ], + [ 7.6038834, 47.5812717 ], + [ 7.6040905, 47.5812898 ], + [ 7.6042986, 47.5813006 ], + [ 7.6044319, 47.5813028 ], + [ 7.6044691, 47.5812992 ], + [ 7.6047005, 47.5811761 ], + [ 7.6047687, 47.5804091 ], + [ 7.605339, 47.579888 ], + [ 7.6048884999999995, 47.5778789 ], + [ 7.6078589, 47.5781013 ], + [ 7.6084235, 47.5781319 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BAG0001", + "country" : "CHE", + "name" : [ + { + "text" : "Gefängnis Bässlergut", + "lang" : "de-CH" + }, + { + "text" : "Gefängnis Bässlergut", + "lang" : "fr-CH" + }, + { + "text" : "Gefängnis Bässlergut", + "lang" : "it-CH" + }, + { + "text" : "Gefängnis Bässlergut", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Gefängnis Bässlergut", + "lang" : "de-CH" + }, + { + "text" : "Gefängnis Bässlergut", + "lang" : "fr-CH" + }, + { + "text" : "Gefängnis Bässlergut", + "lang" : "it-CH" + }, + { + "text" : "Gefängnis Bässlergut", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Leitung", + "lang" : "de-CH" + }, + { + "text" : "Leitung", + "lang" : "fr-CH" + }, + { + "text" : "Leitung", + "lang" : "it-CH" + }, + { + "text" : "Leitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Fabian Henz", + "lang" : "de-CH" + }, + { + "text" : "Fabian Henz", + "lang" : "fr-CH" + }, + { + "text" : "Fabian Henz", + "lang" : "it-CH" + }, + { + "text" : "Fabian Henz", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.bdm.bs.ch/Ueber-uns/Organisation/Amt-fuer-Justizvollzug/Gefaengnis-Baesslergut.html", + "email" : "info.gb@jsd.bs.ch", + "phone" : "0041616383101", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.478507, 47.4451167 ], + [ 7.4787332, 47.4448508 ], + [ 7.4775816, 47.4445836 ], + [ 7.4769592, 47.444472 ], + [ 7.4747728, 47.4440904 ], + [ 7.4747908, 47.4440558 ], + [ 7.4748002, 47.4440498 ], + [ 7.4748087, 47.4440433 ], + [ 7.4748164, 47.4440362 ], + [ 7.4748231, 47.4440288 ], + [ 7.4748289, 47.444021 ], + [ 7.4748336, 47.4440128 ], + [ 7.4748372, 47.4440044 ], + [ 7.4749586, 47.4436679 ], + [ 7.4733245, 47.4433031 ], + [ 7.473103, 47.4437457 ], + [ 7.4727513, 47.4436562 ], + [ 7.4712362, 47.4432442 ], + [ 7.4711009, 47.4432062 ], + [ 7.4709668, 47.4431662 ], + [ 7.4708341, 47.4431242 ], + [ 7.4703374, 47.4429626 ], + [ 7.4702281, 47.4429284 ], + [ 7.4701173, 47.4428965 ], + [ 7.4700051, 47.4428668 ], + [ 7.4695094, 47.4427416 ], + [ 7.468977, 47.4425875 ], + [ 7.4691995, 47.4422169 ], + [ 7.4696209, 47.4417114 ], + [ 7.4703972, 47.4412776 ], + [ 7.4702455, 47.4411844 ], + [ 7.4698944, 47.4414141 ], + [ 7.4694904, 47.4416755 ], + [ 7.4690766, 47.4421836 ], + [ 7.4687079, 47.4420259 ], + [ 7.4685756, 47.4421837 ], + [ 7.4689935, 47.4423683 ], + [ 7.4688753, 47.4425543 ], + [ 7.4687461, 47.4424997 ], + [ 7.4687504, 47.4425891 ], + [ 7.468766, 47.4426976 ], + [ 7.4686377, 47.4429456 ], + [ 7.4685231, 47.4433894 ], + [ 7.4684059, 47.4435597 ], + [ 7.4683933, 47.443585 ], + [ 7.4712298, 47.4439062 ], + [ 7.4741525, 47.444356 ], + [ 7.4741710999999995, 47.4443589 ], + [ 7.4768852, 47.4447514 ], + [ 7.478507, 47.4451167 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns321", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Forstweid", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Forstweid", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Forstweid", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Forstweid", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.297820399999999, 47.0359019 ], + [ 8.297812799999999, 47.0357607 ], + [ 8.2977943, 47.03562 ], + [ 8.2977651, 47.0354801 ], + [ 8.2977252, 47.0353415 ], + [ 8.2976748, 47.0352045 ], + [ 8.2976139, 47.0350695 ], + [ 8.2975428, 47.0349369 ], + [ 8.2974617, 47.0348069 ], + [ 8.2973707, 47.0346801 ], + [ 8.2972701, 47.0345567 ], + [ 8.2971602, 47.034437 ], + [ 8.2970413, 47.0343215 ], + [ 8.2969137, 47.0342104 ], + [ 8.2967778, 47.0341039 ], + [ 8.2966339, 47.0340025 ], + [ 8.2964825, 47.0339064 ], + [ 8.2963239, 47.0338158 ], + [ 8.2961586, 47.0337311 ], + [ 8.2959871, 47.0336523 ], + [ 8.2958097, 47.0335798 ], + [ 8.295627, 47.0335138 ], + [ 8.2954396, 47.0334543 ], + [ 8.2952478, 47.0334017 ], + [ 8.2950523, 47.033356 ], + [ 8.2948535, 47.0333174 ], + [ 8.2946521, 47.0332859 ], + [ 8.2944485, 47.0332617 ], + [ 8.2942434, 47.0332447 ], + [ 8.2940372, 47.0332352 ], + [ 8.2938306, 47.033233 ], + [ 8.2936241, 47.0332383 ], + [ 8.2934183, 47.0332509 ], + [ 8.2932137, 47.0332709 ], + [ 8.293011, 47.0332981 ], + [ 8.2928106, 47.0333326 ], + [ 8.2926131, 47.0333742 ], + [ 8.2924191, 47.0334228 ], + [ 8.292229, 47.0334783 ], + [ 8.2920435, 47.0335405 ], + [ 8.291863, 47.0336092 ], + [ 8.291688, 47.0336844 ], + [ 8.291519, 47.0337657 ], + [ 8.2913564, 47.0338529 ], + [ 8.2912008, 47.0339458 ], + [ 8.2910524, 47.0340441 ], + [ 8.2909118, 47.0341477 ], + [ 8.2907793, 47.0342561 ], + [ 8.2906553, 47.0343691 ], + [ 8.2905401, 47.0344864 ], + [ 8.2904341, 47.0346076 ], + [ 8.2903375, 47.0347325 ], + [ 8.290250499999999, 47.0348607 ], + [ 8.2901735, 47.0349918 ], + [ 8.2901066, 47.0351255 ], + [ 8.2900501, 47.0352614 ], + [ 8.2900041, 47.0353991 ], + [ 8.2899686, 47.0355383 ], + [ 8.2899438, 47.0356785 ], + [ 8.2899299, 47.0358195 ], + [ 8.2899267, 47.0359607 ], + [ 8.2899344, 47.0361019 ], + [ 8.2899528, 47.0362426 ], + [ 8.289982, 47.0363825 ], + [ 8.2900218, 47.0365211 ], + [ 8.2900723, 47.0366581 ], + [ 8.2901331, 47.0367932 ], + [ 8.2902042, 47.0369258 ], + [ 8.2902853, 47.0370557 ], + [ 8.2903763, 47.0371826 ], + [ 8.2904769, 47.037306 ], + [ 8.2905868, 47.0374257 ], + [ 8.2907057, 47.0375412 ], + [ 8.2908332, 47.0376523 ], + [ 8.2909691, 47.0377588 ], + [ 8.291113, 47.0378602 ], + [ 8.2912645, 47.0379563 ], + [ 8.2914231, 47.0380469 ], + [ 8.2915883, 47.0381317 ], + [ 8.2917599, 47.0382104 ], + [ 8.2919373, 47.0382829 ], + [ 8.29212, 47.038349 ], + [ 8.2923074, 47.0384084 ], + [ 8.2924992, 47.0384611 ], + [ 8.2926948, 47.0385068 ], + [ 8.2928935, 47.0385454 ], + [ 8.293095, 47.0385769 ], + [ 8.2932986, 47.0386011 ], + [ 8.2935038, 47.038618 ], + [ 8.2937099, 47.0386276 ], + [ 8.2939166, 47.0386297 ], + [ 8.2941231, 47.0386245 ], + [ 8.2943289, 47.0386119 ], + [ 8.2945335, 47.0385919 ], + [ 8.2947363, 47.0385647 ], + [ 8.2949367, 47.0385302 ], + [ 8.2951342, 47.0384886 ], + [ 8.2953282, 47.03844 ], + [ 8.2955183, 47.0383845 ], + [ 8.2957038, 47.0383223 ], + [ 8.2958843, 47.0382535 ], + [ 8.2960593, 47.0381784 ], + [ 8.2962284, 47.0380971 ], + [ 8.2963909, 47.0380099 ], + [ 8.2965466, 47.0379169 ], + [ 8.2966949, 47.0378186 ], + [ 8.2968355, 47.037715 ], + [ 8.296968, 47.0376066 ], + [ 8.297092, 47.0374936 ], + [ 8.2972072, 47.0373763 ], + [ 8.2973132, 47.037255 ], + [ 8.2974099, 47.0371301 ], + [ 8.2974968, 47.037002 ], + [ 8.2975738, 47.0368709 ], + [ 8.2976406, 47.0367372 ], + [ 8.2976971, 47.0366013 ], + [ 8.2977432, 47.0364636 ], + [ 8.297778600000001, 47.0363244 ], + [ 8.2978033, 47.0361841 ], + [ 8.2978173, 47.0360432 ], + [ 8.297820399999999, 47.0359019 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LUZ0001", + "country" : "CHE", + "name" : [ + { + "text" : "Justizvollzugsanstalt Grosshof", + "lang" : "de-CH" + }, + { + "text" : "Justizvollzugsanstalt Grosshof", + "lang" : "fr-CH" + }, + { + "text" : "Justizvollzugsanstalt Grosshof", + "lang" : "it-CH" + }, + { + "text" : "Justizvollzugsanstalt Grosshof", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Luzerner Polizei", + "lang" : "de-CH" + }, + { + "text" : "Police de Lucen", + "lang" : "fr-CH" + }, + { + "text" : "Polizia di Lucerna", + "lang" : "it-CH" + }, + { + "text" : "Lucerne Police", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Planung und Einsatz", + "lang" : "de-CH" + }, + { + "text" : "Planification et engagement", + "lang" : "fr-CH" + }, + { + "text" : "Planificatione e impiego", + "lang" : "it-CH" + }, + { + "text" : "Execution and deployment", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Franz Baumgartner", + "lang" : "de-CH" + }, + { + "text" : "Franz Baumgartner", + "lang" : "fr-CH" + }, + { + "text" : "Franz Baumgartner", + "lang" : "it-CH" + }, + { + "text" : "Franz Baumgartner", + "lang" : "en-GB" + } + ], + "siteURL" : "https://polizei.lu.ch/", + "email" : "einsatzplanung.polizei@lu.ch", + "phone" : "0041412488489", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.3843891, 47.2921413 ], + [ 9.3843947, 47.2920454 ], + [ 9.3844903, 47.2919256 ], + [ 9.3845275, 47.2917672 ], + [ 9.384572, 47.2915806 ], + [ 9.3847009, 47.291466 ], + [ 9.3848102, 47.2912446 ], + [ 9.3849669, 47.2909661 ], + [ 9.3851479, 47.2906478 ], + [ 9.3852518, 47.2905054 ], + [ 9.3850191, 47.2901986 ], + [ 9.3848986, 47.2900199 ], + [ 9.3847059, 47.2899267 ], + [ 9.3843753, 47.2899256 ], + [ 9.3841267, 47.2899291 ], + [ 9.3839751, 47.2898298 ], + [ 9.3837985, 47.2897251 ], + [ 9.3836158, 47.2896768 ], + [ 9.3832831, 47.2896195 ], + [ 9.3831068, 47.2895204 ], + [ 9.3829478, 47.2894663 ], + [ 9.3825724, 47.2893475 ], + [ 9.3822616, 47.2891883 ], + [ 9.3817489, 47.2888854 ], + [ 9.3814603, 47.28863 ], + [ 9.3812336, 47.2885091 ], + [ 9.3810095, 47.288484 ], + [ 9.3807613, 47.2884762 ], + [ 9.3805614, 47.2884114 ], + [ 9.380368, 47.2883182 ], + [ 9.3800492, 47.2881422 ], + [ 9.3797041, 47.2879497 ], + [ 9.3793539, 47.2878417 ], + [ 9.3791696, 47.2877485 ], + [ 9.3790581, 47.2876147 ], + [ 9.3789601, 47.2873736 ], + [ 9.3788282, 47.2870879 ], + [ 9.3787085, 47.2869542 ], + [ 9.3785003, 47.2869119 ], + [ 9.3783106, 47.2869203 ], + [ 9.3781294, 47.2869397 ], + [ 9.3779876, 47.2869021 ], + [ 9.3779184, 47.286796 ], + [ 9.3779307, 47.286655 ], + [ 9.3778952, 47.2865652 ], + [ 9.3777368, 47.2865054 ], + [ 9.3773449, 47.2863867 ], + [ 9.3768194, 47.2862305 ], + [ 9.376277, 47.2860632 ], + [ 9.3758488, 47.2858324 ], + [ 9.3754871, 47.2856119 ], + [ 9.3752338, 47.2854405 ], + [ 9.3751006, 47.2854142 ], + [ 9.3749026, 47.2854226 ], + [ 9.3746548, 47.2854261 ], + [ 9.3744463, 47.2853727 ], + [ 9.3742615, 47.2852681 ], + [ 9.374183500000001, 47.2851451 ], + [ 9.3741043, 47.2849658 ], + [ 9.3740422, 47.2848257 ], + [ 9.3739003, 47.2847655 ], + [ 9.3737399, 47.2846719 ], + [ 9.3736055, 47.2845893 ], + [ 9.3735531, 47.2844885 ], + [ 9.3734824, 47.2843372 ], + [ 9.3733899, 47.2842708 ], + [ 9.3733232, 47.2842549 ], + [ 9.373216, 47.2842619 ], + [ 9.3729757, 47.2842428 ], + [ 9.3727506, 47.2841895 ], + [ 9.3724581, 47.2840752 ], + [ 9.3722149, 47.2839544 ], + [ 9.3720227, 47.2838726 ], + [ 9.3718716, 47.2837844 ], + [ 9.3718528, 47.2837226 ], + [ 9.3718927, 47.2836601 ], + [ 9.3719916, 47.2836531 ], + [ 9.3720678, 47.2837028 ], + [ 9.3721937, 47.28378 ], + [ 9.3722928, 47.2837786 ], + [ 9.3723577, 47.2837213 ], + [ 9.3723548, 47.2836423 ], + [ 9.3722452, 47.2835594 ], + [ 9.372119, 47.2834991 ], + [ 9.3720592, 47.283421 ], + [ 9.372005, 47.2832695 ], + [ 9.372009, 47.2831059 ], + [ 9.3719217, 47.2829549 ], + [ 9.371836, 47.2828489 ], + [ 9.3718582, 47.2827528 ], + [ 9.3718718, 47.2826511 ], + [ 9.3719266, 47.2825433 ], + [ 9.3719149, 47.282425 ], + [ 9.3718608, 47.2822791 ], + [ 9.3717917, 47.2821504 ], + [ 9.3718217, 47.2820654 ], + [ 9.371819, 47.2819696 ], + [ 9.3717016, 47.2818979 ], + [ 9.371561, 47.281894199999996 ], + [ 9.3714119, 47.281885 ], + [ 9.3712443, 47.2818196 ], + [ 9.3711101, 47.2817426 ], + [ 9.3709481, 47.2815814 ], + [ 9.3708038, 47.2814311 ], + [ 9.3706434, 47.2813149 ], + [ 9.3705171, 47.281249 ], + [ 9.370333, 47.2811614 ], + [ 9.3701825, 47.2810901 ], + [ 9.3700966, 47.2809785 ], + [ 9.3700934, 47.2808658 ], + [ 9.3701477, 47.2807692 ], + [ 9.370335, 47.2806707 ], + [ 9.3705318, 47.280606 ], + [ 9.3706462, 47.2805481 ], + [ 9.3706192, 47.2804864 ], + [ 9.370502, 47.2804204 ], + [ 9.3703261, 47.2803551 ], + [ 9.370176, 47.2802952 ], + [ 9.3700408, 47.2802125 ], + [ 9.3700045, 47.2800777 ], + [ 9.3700512, 47.2799755 ], + [ 9.3701543, 47.2798332 ], + [ 9.3703082, 47.2797239 ], + [ 9.3704955, 47.2796255 ], + [ 9.3706737, 47.2795046 ], + [ 9.3706872, 47.2793973 ], + [ 9.3706594, 47.2792905 ], + [ 9.3704903, 47.2791632 ], + [ 9.3703636, 47.2790634 ], + [ 9.37032, 47.279 ], + [ 9.3702606, 47.2789126 ], + [ 9.3701059, 47.278723 ], + [ 9.3698524, 47.2785236 ], + [ 9.3696322, 47.2783293 ], + [ 9.369392, 47.2780394 ], + [ 9.3693203, 47.2778375 ], + [ 9.3692483, 47.2776299 ], + [ 9.3691385, 47.2775637 ], + [ 9.369039, 47.2775538 ], + [ 9.3688986, 47.2775558 ], + [ 9.3688075, 47.2775514 ], + [ 9.368733, 47.2775467 ], + [ 9.368683, 47.2775135 ], + [ 9.3686878, 47.2774177 ], + [ 9.3687193, 47.2773496 ], + [ 9.3687176, 47.2773045 ], + [ 9.3686578, 47.2772263 ], + [ 9.3685971, 47.2771257 ], + [ 9.3685431, 47.2769799 ], + [ 9.3685058, 47.2768168 ], + [ 9.368453, 47.2767048 ], + [ 9.3683432, 47.2766388 ], + [ 9.3681009, 47.2765406 ], + [ 9.367918, 47.2764868 ], + [ 9.3678499, 47.2764312 ], + [ 9.3678809, 47.2763519 ], + [ 9.3679687, 47.2762435 ], + [ 9.3680573, 47.2761577 ], + [ 9.3680546, 47.2760619 ], + [ 9.3680006, 47.2759162 ], + [ 9.3678878, 47.2757202 ], + [ 9.367758, 47.275536 ], + [ 9.3676121, 47.2753407 ], + [ 9.3674941, 47.2752521 ], + [ 9.3673585, 47.2751582 ], + [ 9.3672495, 47.275092 ], + [ 9.3671391, 47.2749864 ], + [ 9.3670863, 47.2748743 ], + [ 9.3670178, 47.2748077 ], + [ 9.3669171, 47.2747413 ], + [ 9.3668081, 47.2746752 ], + [ 9.3667062, 47.2745977 ], + [ 9.3666955, 47.2745076 ], + [ 9.3666248, 47.2743564 ], + [ 9.3665212, 47.2741886 ], + [ 9.3664082, 47.2740098 ], + [ 9.3664017, 47.2737618 ], + [ 9.3663281, 47.273509 ], + [ 9.3663744, 47.2733956 ], + [ 9.3664866, 47.2732757 ], + [ 9.366516, 47.2731513 ], + [ 9.3665185, 47.2729483 ], + [ 9.366477, 47.2726443 ], + [ 9.3665051, 47.2724861 ], + [ 9.3666091, 47.2723437 ], + [ 9.3668402, 47.2720416 ], + [ 9.3670921, 47.271604 ], + [ 9.367272700000001, 47.2712745 ], + [ 9.3674154, 47.271064 ], + [ 9.3674442, 47.2709226 ], + [ 9.3674385, 47.2707197 ], + [ 9.3674506, 47.2705504 ], + [ 9.3675388, 47.2704533 ], + [ 9.3677097, 47.2703832 ], + [ 9.3680886, 47.2703273 ], + [ 9.3683681, 47.2702896 ], + [ 9.368747, 47.2702336 ], + [ 9.3690354, 47.2701902 ], + [ 9.3693052, 47.2700905 ], + [ 9.3696071, 47.2699623 ], + [ 9.3699922, 47.2698274 ], + [ 9.3704437, 47.2697254 ], + [ 9.3707709, 47.2696136 ], + [ 9.3709415, 47.2695098 ], + [ 9.3710518, 47.2693166 ], + [ 9.3711625, 47.2691572 ], + [ 9.3713073, 47.2690029 ], + [ 9.3714923, 47.2688425 ], + [ 9.3717521, 47.2686697 ], + [ 9.3720867, 47.2685128 ], + [ 9.3723318, 47.268413699999996 ], + [ 9.3726846, 47.2683467 ], + [ 9.372966, 47.2683597 ], + [ 9.3731012, 47.2684424 ], + [ 9.3733857, 47.268292 ], + [ 9.37364, 47.2682208 ], + [ 9.3739528, 47.2681656 ], + [ 9.374273, 47.268088 ], + [ 9.3745447, 47.2680616 ], + [ 9.3748248, 47.2680407 ], + [ 9.3751635, 47.2680417 ], + [ 9.3752811, 47.2677976 ], + [ 9.3755529, 47.2674781 ], + [ 9.375671, 47.2672961 ], + [ 9.3758631, 47.2670567 ], + [ 9.3760489, 47.2669187 ], + [ 9.3762682, 47.2667916 ], + [ 9.3764957, 47.2666418 ], + [ 9.3766672, 47.2665888 ], + [ 9.376857, 47.2665579 ], + [ 9.3770946, 47.2664813 ], + [ 9.377274, 47.2664167 ], + [ 9.3774771, 47.2663011 ], + [ 9.3776535, 47.266107 ], + [ 9.3778383, 47.2659184 ], + [ 9.3780167, 47.2658031 ], + [ 9.3781366, 47.2656493 ], + [ 9.378263, 47.2654671 ], + [ 9.3784057, 47.2652564 ], + [ 9.3785655, 47.2650626 ], + [ 9.3786946, 47.2649537 ], + [ 9.3788486, 47.26485 ], + [ 9.3789791, 47.2647805 ], + [ 9.3791162, 47.2646658 ], + [ 9.3792861, 47.264545 ], + [ 9.3794814, 47.2644183 ], + [ 9.3796839, 47.2642858 ], + [ 9.3798446, 47.2641369 ], + [ 9.3800362, 47.2638863 ], + [ 9.3808651, 47.2616701 ], + [ 9.3809092, 47.2614947 ], + [ 9.3809476, 47.2613927 ], + [ 9.3810692, 47.2613063 ], + [ 9.3811412, 47.2612208 ], + [ 9.3811367, 47.2610742 ], + [ 9.381216, 47.2609604 ], + [ 9.3811882, 47.2608536 ], + [ 9.3811296, 47.2608093 ], + [ 9.3810289, 47.2607656 ], + [ 9.3808138, 47.2607574 ], + [ 9.3805492, 47.2607498 ], + [ 9.3802406, 47.2606469 ], + [ 9.3802353, 47.2604779 ], + [ 9.3803823, 47.2604082 ], + [ 9.3805224, 47.2604006 ], + [ 9.3805784, 47.2603264 ], + [ 9.3806424, 47.2602693 ], + [ 9.3807314, 47.2601947 ], + [ 9.3808534, 47.2601423 ], + [ 9.3809527, 47.260124 ], + [ 9.3810334, 47.260072 ], + [ 9.3810978, 47.2600035 ], + [ 9.3812361, 47.2599452 ], + [ 9.3813511, 47.2599042 ], + [ 9.3814819, 47.2598685 ], + [ 9.3816202, 47.2597876 ], + [ 9.3817338, 47.2597071 ], + [ 9.3817967, 47.259599 ], + [ 9.3818086, 47.2594467 ], + [ 9.3817372, 47.259256 ], + [ 9.3817335, 47.259132 ], + [ 9.3818043, 47.2590125 ], + [ 9.3818913, 47.2588591 ], + [ 9.3819033, 47.2587124 ], + [ 9.3819512, 47.2586441 ], + [ 9.3820496, 47.2586257 ], + [ 9.3822152, 47.2586348 ], + [ 9.3827077, 47.2582332 ], + [ 9.3821033, 47.2578977 ], + [ 9.3818682, 47.2577712 ], + [ 9.3817326, 47.2576774 ], + [ 9.3816817, 47.257616 ], + [ 9.3816695, 47.2574865 ], + [ 9.381633, 47.2573686 ], + [ 9.3815086, 47.2573308 ], + [ 9.3812826, 47.2572494 ], + [ 9.3809388, 47.2570625 ], + [ 9.3805519, 47.2568254 ], + [ 9.380524, 47.2570118 ], + [ 9.3797917, 47.2565428 ], + [ 9.3794029, 47.256255 ], + [ 9.3790484, 47.2560006 ], + [ 9.3787459, 47.2558131 ], + [ 9.3785377, 47.2557427 ], + [ 9.378353, 47.2556607 ], + [ 9.3780594, 47.2555126 ], + [ 9.3777575, 47.2553419 ], + [ 9.3774459, 47.2551546 ], + [ 9.3769352, 47.2548966 ], + [ 9.376551599999999, 47.2547948 ], + [ 9.3763531, 47.2547864 ], + [ 9.3761393, 47.2548119 ], + [ 9.3758576, 47.2547875 ], + [ 9.3755994, 47.2547292 ], + [ 9.3754325, 47.2546582 ], + [ 9.3752921, 47.2546601 ], + [ 9.3751192, 47.2546739 ], + [ 9.3747172, 47.254499 ], + [ 9.3742822, 47.254302 ], + [ 9.3739802, 47.2541484 ], + [ 9.3737935, 47.2539875 ], + [ 9.3735655, 47.2538045 ], + [ 9.3732205, 47.2535838 ], + [ 9.3727427, 47.2533423 ], + [ 9.3723226, 47.2531001 ], + [ 9.3718095, 47.252797 ], + [ 9.3712813, 47.2525337 ], + [ 9.3708115, 47.2522639 ], + [ 9.3707327, 47.2521183 ], + [ 9.3705887, 47.2519963 ], + [ 9.3703954, 47.2518807 ], + [ 9.3700853, 47.2517326 ], + [ 9.3696679, 47.2515862 ], + [ 9.3691746, 47.2513731 ], + [ 9.3687655, 47.2512266 ], + [ 9.3684324, 47.2511297 ], + [ 9.3681165, 47.251072 ], + [ 9.3678095, 47.2510085 ], + [ 9.3674597, 47.2509288 ], + [ 9.3670866, 47.2508663 ], + [ 9.3667707, 47.2508087 ], + [ 9.3664645, 47.2507904 ], + [ 9.3662652, 47.2507593 ], + [ 9.3660989, 47.2507051 ], + [ 9.3659076, 47.2506684 ], + [ 9.3656577, 47.2506097 ], + [ 9.3653181, 47.2505581 ], + [ 9.3649939, 47.2505005 ], + [ 9.3646534, 47.2504488 ], + [ 9.3643535, 47.2503515 ], + [ 9.3634106, 47.2500148 ], + [ 9.3629851, 47.2498967 ], + [ 9.3626435, 47.2497887 ], + [ 9.362368, 47.2496853 ], + [ 9.3620874, 47.2496891 ], + [ 9.3617492, 47.2496994 ], + [ 9.3615196, 47.2497703 ], + [ 9.3607129, 47.2495896 ], + [ 9.360181, 47.249473 ], + [ 9.3595927, 47.249419 ], + [ 9.3597632, 47.2495914 ], + [ 9.359099, 47.2494934 ], + [ 9.3582454, 47.2493867 ], + [ 9.3583986, 47.2495595 ], + [ 9.3584838, 47.2496316 ], + [ 9.3586432, 47.2497252 ], + [ 9.3588107, 47.2498131 ], + [ 9.3588377, 47.2498973 ], + [ 9.3587805, 47.2499151 ], + [ 9.3586485, 47.2499169 ], + [ 9.3583006, 47.2498878 ], + [ 9.3579861, 47.2498696 ], + [ 9.3577378, 47.249856 ], + [ 9.3574809, 47.2498313 ], + [ 9.3571818, 47.2497566 ], + [ 9.3568659, 47.2496989 ], + [ 9.3564355, 47.2496484 ], + [ 9.3559553, 47.2496155 ], + [ 9.3556738, 47.2495969 ], + [ 9.3555492, 47.249576 ], + [ 9.3554312, 47.2495099 ], + [ 9.3552653, 47.2494672 ], + [ 9.3550004, 47.2494707 ], + [ 9.3547028, 47.2494409 ], + [ 9.3544544, 47.2494219 ], + [ 9.354122, 47.2493644 ], + [ 9.353699, 47.2493138 ], + [ 9.3532114, 47.2493035 ], + [ 9.352485, 47.2493135 ], + [ 9.3523366, 47.2493211 ], + [ 9.3522186, 47.2492551 ], + [ 9.3520833, 47.2491442 ], + [ 9.3519658, 47.2490668 ], + [ 9.351766, 47.2490244 ], + [ 9.3517771, 47.2491258 ], + [ 9.351544, 47.2490501 ], + [ 9.3513783, 47.249058 ], + [ 9.3511556, 47.2490666 ], + [ 9.3510068, 47.2490631 ], + [ 9.3508655, 47.2490367 ], + [ 9.350782, 47.2489872 ], + [ 9.3506883, 47.2489095 ], + [ 9.3506034, 47.2488205 ], + [ 9.3504687, 47.2487264 ], + [ 9.3503514, 47.2486547 ], + [ 9.3501935, 47.2486287 ], + [ 9.3500606, 47.248608 ], + [ 9.3498948, 47.2485877 ], + [ 9.3497861, 47.2485272 ], + [ 9.3495728, 47.2485922 ], + [ 9.3493965, 47.2485099 ], + [ 9.3493139, 47.2485111 ], + [ 9.3491656, 47.2485188 ], + [ 9.3490248, 47.2484868 ], + [ 9.3489737, 47.2484424 ], + [ 9.348873, 47.2483987 ], + [ 9.3488175, 47.2484614 ], + [ 9.3487184, 47.2484628 ], + [ 9.3486534, 47.2485145 ], + [ 9.3485312, 47.2485612 ], + [ 9.3483008, 47.2486095 ], + [ 9.3481621, 47.248679 ], + [ 9.3479984, 47.2487208 ], + [ 9.3478176, 47.2487457 ], + [ 9.347661, 47.2487761 ], + [ 9.3475195, 47.2487442 ], + [ 9.3473538, 47.248707 ], + [ 9.3471793, 47.2486756 ], + [ 9.3470228, 47.2486889 ], + [ 9.346924, 47.248696 ], + [ 9.3468245, 47.2487086 ], + [ 9.3466346, 47.2487112 ], + [ 9.3464476, 47.2488152 ], + [ 9.344986, 47.248542 ], + [ 9.34498, 47.2486265 ], + [ 9.3448827, 47.2486786 ], + [ 9.3448358, 47.2487751 ], + [ 9.3446964, 47.2488278 ], + [ 9.3446582, 47.2489354 ], + [ 9.3445515, 47.2489537 ], + [ 9.3446126, 47.2490714 ], + [ 9.3447568, 47.249199 ], + [ 9.3448842, 47.2493213 ], + [ 9.3450029, 47.2494325 ], + [ 9.3447883, 47.2494354 ], + [ 9.34489, 47.2495299 ], + [ 9.3446405, 47.2494825 ], + [ 9.3444664, 47.2494399 ], + [ 9.3442582, 47.2493919 ], + [ 9.344101, 47.2493828 ], + [ 9.3439365, 47.249402 ], + [ 9.3437793, 47.2494154 ], + [ 9.343614, 47.2493895 ], + [ 9.3434396, 47.2493637 ], + [ 9.3432661, 47.2493828 ], + [ 9.3430422, 47.2494494 ], + [ 9.34258, 47.249457 ], + [ 9.3407142, 47.249011 ], + [ 9.3323454, 47.2496259 ], + [ 9.3315403, 47.2492793 ], + [ 9.3304073, 47.249001 ], + [ 9.329636, 47.2488607 ], + [ 9.3284443, 47.2487903 ], + [ 9.3278156, 47.2485757 ], + [ 9.3273493, 47.2484664 ], + [ 9.3268141, 47.2482773 ], + [ 9.3259405, 47.2478598 ], + [ 9.3252063, 47.2476469 ], + [ 9.324876100000001, 47.2476523 ], + [ 9.3244117, 47.2475969 ], + [ 9.3242692, 47.2473024 ], + [ 9.3237572, 47.2470229 ], + [ 9.3237396, 47.2470157 ], + [ 9.3179856, 47.255368 ], + [ 9.3178118, 47.2556411 ], + [ 9.3176021, 47.2558299 ], + [ 9.3174568, 47.2559502 ], + [ 9.3172687, 47.2560261 ], + [ 9.3170466, 47.2560742 ], + [ 9.3168752, 47.2561554 ], + [ 9.3166967, 47.256248 ], + [ 9.3165097, 47.2563801 ], + [ 9.3163132, 47.2564505 ], + [ 9.3160333, 47.2564767 ], + [ 9.3157854, 47.2564744 ], + [ 9.315456, 47.2565013 ], + [ 9.3151585, 47.2565223 ], + [ 9.3149625, 47.2566095 ], + [ 9.3146374, 47.2568055 ], + [ 9.314271, 47.2570021 ], + [ 9.313894, 47.2571086 ], + [ 9.3128072, 47.2584312 ], + [ 9.3125847, 47.258468 ], + [ 9.312173, 47.2585299 ], + [ 9.311763, 47.2586368 ], + [ 9.3116605, 47.2588242 ], + [ 9.3116051, 47.2588926 ], + [ 9.3114915, 47.2589732 ], + [ 9.3112373, 47.2590498 ], + [ 9.3107128, 47.2591921 ], + [ 9.3104582, 47.2592575 ], + [ 9.31032, 47.2593439 ], + [ 9.3102974, 47.2594288 ], + [ 9.3102095, 47.2595371 ], + [ 9.3100904, 47.2596966 ], + [ 9.3098969, 47.259575 ], + [ 9.3096722, 47.2598317 ], + [ 9.3094795, 47.2600373 ], + [ 9.309278, 47.2602035 ], + [ 9.3090987, 47.2602961 ], + [ 9.3074756, 47.2607913 ], + [ 9.3064002, 47.2610538 ], + [ 9.3061962, 47.261146600000004 ], + [ 9.3060833, 47.2612497 ], + [ 9.3058169, 47.261473 ], + [ 9.3055332, 47.2616741 ], + [ 9.3053232, 47.2618348 ], + [ 9.3051313, 47.2620629 ], + [ 9.3049311, 47.2623135 ], + [ 9.3047106, 47.2626943 ], + [ 9.3044394, 47.2630643 ], + [ 9.3042322, 47.2633489 ], + [ 9.304056899999999, 47.2635825 ], + [ 9.3038322, 47.2638167 ], + [ 9.303501, 47.2641029 ], + [ 9.302258, 47.2651963 ], + [ 9.3020002, 47.2654309 ], + [ 9.3018482, 47.2655964 ], + [ 9.3017854, 47.2657381 ], + [ 9.3017421, 47.2659642 ], + [ 9.3017236, 47.26619 ], + [ 9.3016871, 47.2663541 ], + [ 9.3015428, 47.2665251 ], + [ 9.3012824, 47.2666863 ], + [ 9.301063, 47.2668133 ], + [ 9.300836199999999, 47.2669685 ], + [ 9.3003775, 47.2671269 ], + [ 9.2999767, 47.26729 ], + [ 9.2994482, 47.2679116 ], + [ 9.2991611, 47.2682762 ], + [ 9.2991089, 47.2684855 ], + [ 9.2991863, 47.2685973 ], + [ 9.2993278, 47.2686518 ], + [ 9.2996345, 47.2686816 ], + [ 9.3005733, 47.2688552 ], + [ 9.3009307, 47.268918 ], + [ 9.300923, 47.2689577 ], + [ 9.3008581, 47.2689923 ], + [ 9.3007109, 47.2690338 ], + [ 9.3005396, 47.2691206 ], + [ 9.3004906, 47.2691607 ], + [ 9.3004841, 47.2692116 ], + [ 9.3005519, 47.2692839 ], + [ 9.3006614, 47.2693445 ], + [ 9.3007778, 47.2693656 ], + [ 9.3009933, 47.2693853 ], + [ 9.3010437, 47.2694354 ], + [ 9.3009624, 47.2694703 ], + [ 9.3008801, 47.2695052 ], + [ 9.3007657, 47.2695405 ], + [ 9.3005522, 47.2695771 ], + [ 9.3003207, 47.2695972 ], + [ 9.2999755, 47.2696694 ], + [ 9.2997132, 47.2697291 ], + [ 9.2994259, 47.2698063 ], + [ 9.2991148, 47.2699119 ], + [ 9.29887, 47.2700222 ], + [ 9.2986411, 47.270138 ], + [ 9.2984635, 47.2702813 ], + [ 9.2983024, 47.2704244 ], + [ 9.2981484, 47.2705561 ], + [ 9.2980132, 47.2707326 ], + [ 9.2978295, 47.2709606 ], + [ 9.2977276, 47.271165 ], + [ 9.2976173, 47.271392 ], + [ 9.2974926, 47.2716529 ], + [ 9.2973256, 47.2718863 ], + [ 9.2969963, 47.2722515 ], + [ 9.2959887, 47.2719547 ], + [ 9.2956722, 47.2718799 ], + [ 9.295407, 47.2718552 ], + [ 9.2952267, 47.2718971 ], + [ 9.2950799, 47.2719779 ], + [ 9.2949094, 47.2720873 ], + [ 9.2946653, 47.2722426 ], + [ 9.2943719, 47.2723819 ], + [ 9.2940594, 47.2724479 ], + [ 9.2935989, 47.272533 ], + [ 9.2934102, 47.2725693 ], + [ 9.2931606, 47.2725219 ], + [ 9.2930652, 47.2726527 ], + [ 9.292911, 47.2727563 ], + [ 9.292689, 47.2728099 ], + [ 9.29235, 47.2728031 ], + [ 9.2926837, 47.2732272 ], + [ 9.2928808, 47.2734784 ], + [ 9.2931593, 47.2736946 ], + [ 9.2935116, 47.2738704 ], + [ 9.2940203, 47.2740554 ], + [ 9.2944114, 47.2741348 ], + [ 9.2947064, 47.2743508 ], + [ 9.2949504, 47.2744998 ], + [ 9.2952106, 47.2746655 ], + [ 9.2956384, 47.2748741 ], + [ 9.2961326, 47.2751382 ], + [ 9.296586, 47.275369 ], + [ 9.2970226, 47.275617 ], + [ 9.2975594, 47.27592 ], + [ 9.29808, 47.2762289 ], + [ 9.2985432, 47.2765273 ], + [ 9.2993537, 47.2771424 ], + [ 9.2995485, 47.2773258 ], + [ 9.2997776, 47.2775483 ], + [ 9.2999895, 47.2777486 ], + [ 9.3001443, 47.2779439 ], + [ 9.3002649, 47.278134 ], + [ 9.3004104, 47.2783012 ], + [ 9.3005533, 47.2783951 ], + [ 9.3007033, 47.2784551 ], + [ 9.3008881, 47.2785655 ], + [ 9.3009819, 47.2786489 ], + [ 9.3009174, 47.2787174 ], + [ 9.3007447, 47.2787421 ], + [ 9.3003087, 47.2788212 ], + [ 9.3005167, 47.2788861 ], + [ 9.3006261, 47.2789411 ], + [ 9.3007118, 47.2790527 ], + [ 9.3007459, 47.2791085 ], + [ 9.3006067, 47.2791443 ], + [ 9.3004659, 47.2791349 ], + [ 9.3001778, 47.2791669 ], + [ 9.3005344, 47.2795343 ], + [ 9.3006474, 47.2797188 ], + [ 9.3006017, 47.2798773 ], + [ 9.3004467, 47.2799582 ], + [ 9.300169, 47.2800748 ], + [ 9.2998742, 47.2801744 ], + [ 9.3000106, 47.2803193 ], + [ 9.2997734, 47.2804126 ], + [ 9.2999049, 47.2806984 ], + [ 9.2998422, 47.280795 ], + [ 9.2997563, 47.2809879 ], + [ 9.2997619, 47.2811964 ], + [ 9.2998684, 47.2814769 ], + [ 9.3001502, 47.2820935 ], + [ 9.300463, 47.282343 ], + [ 9.3006985, 47.282509 ], + [ 9.3009496, 47.2826241 ], + [ 9.301301, 47.2827717 ], + [ 9.3015281, 47.282909599999996 ], + [ 9.301730599999999, 47.2830535 ], + [ 9.3018755, 47.2832265 ], + [ 9.3019801, 47.2834054 ], + [ 9.3021155, 47.283522 ], + [ 9.302617, 47.2837297 ], + [ 9.3030104, 47.2838992 ], + [ 9.3033964, 47.2841141 ], + [ 9.3035989, 47.2842805 ], + [ 9.3038703, 47.2845024 ], + [ 9.304108, 47.2847304 ], + [ 9.3042617, 47.28492 ], + [ 9.3044583, 47.2851543 ], + [ 9.30459, 47.2854232 ], + [ 9.3071033, 47.2863258 ], + [ 9.3076168, 47.286381 ], + [ 9.3081639, 47.2864301 ], + [ 9.3086103, 47.2864354 ], + [ 9.3090893, 47.2864009 ], + [ 9.3096327, 47.2863203 ], + [ 9.3100284, 47.2862925 ], + [ 9.3103173, 47.2862605 ], + [ 9.3108794, 47.2862644 ], + [ 9.3113424, 47.2862695 ], + [ 9.3118219, 47.2862743 ], + [ 9.3123751, 47.2862388 ], + [ 9.3128782, 47.286187 ], + [ 9.31347, 47.286072 ], + [ 9.3143948, 47.2860259 ], + [ 9.3170886, 47.2859729 ], + [ 9.3188653, 47.2860878 ], + [ 9.3188868, 47.2858076 ], + [ 9.3192964, 47.2854231 ], + [ 9.3195295, 47.2852843 ], + [ 9.3196147, 47.285076 ], + [ 9.3209466, 47.2842265 ], + [ 9.3216766, 47.2843046 ], + [ 9.3217417, 47.2842765 ], + [ 9.3219863, 47.2837147 ], + [ 9.3223764, 47.2835284 ], + [ 9.3236125, 47.2829414 ], + [ 9.3237639, 47.283132 ], + [ 9.3239765, 47.2833491 ], + [ 9.3242717, 47.283565 ], + [ 9.3245754, 47.283764 ], + [ 9.3248519, 47.2838956 ], + [ 9.3251853, 47.2839982 ], + [ 9.325567, 47.2840663 ], + [ 9.3261987, 47.2841707 ], + [ 9.3273912, 47.2851526 ], + [ 9.327419, 47.2852593 ], + [ 9.3274744, 47.2854728 ], + [ 9.3275974, 47.2857249 ], + [ 9.3277847, 47.2859028 ], + [ 9.3279047, 47.2860703 ], + [ 9.3280127, 47.2863902 ], + [ 9.3280954, 47.286671 ], + [ 9.3282409, 47.2868608 ], + [ 9.3283617, 47.2870283 ], + [ 9.3284142, 47.2871572 ], + [ 9.3284432, 47.2872979 ], + [ 9.3284243, 47.2875123 ], + [ 9.3283215, 47.287666 ], + [ 9.3282783, 47.287892 ], + [ 9.3283261, 47.2881451 ], + [ 9.328468, 47.2884646 ], + [ 9.328553, 47.2888582 ], + [ 9.3286783, 47.2892004 ], + [ 9.3287525, 47.2894982 ], + [ 9.3287409, 47.2896844 ], + [ 9.3288352, 47.289779 ], + [ 9.3288879, 47.289891 ], + [ 9.3288832, 47.2900152 ], + [ 9.3290129, 47.290222 ], + [ 9.329124, 47.2903502 ], + [ 9.329136, 47.2905023 ], + [ 9.3290257, 47.2907012 ], + [ 9.3288251, 47.2909181 ], + [ 9.3284702, 47.2912329 ], + [ 9.3281416, 47.2915926 ], + [ 9.328365, 47.2916009 ], + [ 9.3286852, 47.2915176 ], + [ 9.3295089, 47.2914162 ], + [ 9.3296844, 47.2914703 ], + [ 9.329826, 47.2915247 ], + [ 9.3300686, 47.2916061 ], + [ 9.330485, 47.2917189 ], + [ 9.3308182, 47.2918159 ], + [ 9.3312114, 47.2919741 ], + [ 9.3316198, 47.2920926 ], + [ 9.3320276, 47.2921942 ], + [ 9.3324851, 47.2923008 ], + [ 9.3328268, 47.2923808 ], + [ 9.3332776, 47.2925325 ], + [ 9.3337043, 47.2927241 ], + [ 9.3340045, 47.2928215 ], + [ 9.3344886, 47.2929785 ], + [ 9.3347969, 47.2930476 ], + [ 9.3350955, 47.2930774 ], + [ 9.3353199, 47.2931365 ], + [ 9.3356773, 47.2931937 ], + [ 9.3361024, 47.2933176 ], + [ 9.3364266, 47.2933921 ], + [ 9.3367355, 47.2934781 ], + [ 9.3372361, 47.2936574 ], + [ 9.3377369, 47.2938198 ], + [ 9.339358, 47.2944067 ], + [ 9.3393617, 47.2945589 ], + [ 9.3395543, 47.2946522 ], + [ 9.3397893, 47.2947731 ], + [ 9.3399807, 47.2948099 ], + [ 9.3401548, 47.2948244 ], + [ 9.3402476, 47.2948796 ], + [ 9.3404068, 47.294962 ], + [ 9.3406, 47.2950721 ], + [ 9.3408835, 47.2951417 ], + [ 9.3412494, 47.2952269 ], + [ 9.3416169, 47.2953571 ], + [ 9.3415115, 47.2954376 ], + [ 9.341918100000001, 47.2954828 ], + [ 9.34202, 47.2955829 ], + [ 9.3421459, 47.2956376 ], + [ 9.342503, 47.2957061 ], + [ 9.3425219, 47.295796 ], + [ 9.3430123, 47.2958739 ], + [ 9.3428741, 47.2959603 ], + [ 9.3430747, 47.2960478 ], + [ 9.3432746, 47.2960902 ], + [ 9.3432439, 47.2961808 ], + [ 9.3435601, 47.2962385 ], + [ 9.3437023, 47.2963099 ], + [ 9.3436387, 47.2963784 ], + [ 9.3437049, 47.2964057 ], + [ 9.3437891, 47.2964497 ], + [ 9.3438661, 47.2965445 ], + [ 9.3439692, 47.2966784 ], + [ 9.3440954, 47.2967612 ], + [ 9.3442697, 47.2967814 ], + [ 9.3444619, 47.2968409 ], + [ 9.3446132, 47.2969347 ], + [ 9.3447669, 47.2970961 ], + [ 9.3449599, 47.2972231 ], + [ 9.3451697, 47.2973104 ], + [ 9.3453609, 47.2973643 ], + [ 9.3452152, 47.2971746 ], + [ 9.3451463, 47.2970739 ], + [ 9.3450196, 47.2969743 ], + [ 9.3449269, 47.2969248 ], + [ 9.3448089, 47.2968362 ], + [ 9.3446578, 47.296748 ], + [ 9.3446626, 47.2966296 ], + [ 9.3446014, 47.2965119 ], + [ 9.3445738, 47.2964109 ], + [ 9.3447195, 47.2963018 ], + [ 9.3449321, 47.2962143 ], + [ 9.3449793, 47.2961234 ], + [ 9.3449084, 47.2959665 ], + [ 9.3447392, 47.2958335 ], + [ 9.3445111, 47.2956505 ], + [ 9.344299, 47.295473 ], + [ 9.3441382, 47.2953455 ], + [ 9.3440929, 47.2952108 ], + [ 9.3440482, 47.2950704 ], + [ 9.343988, 47.294981 ], + [ 9.343819, 47.2948763 ], + [ 9.3436775, 47.2948274 ], + [ 9.3434501, 47.2946839 ], + [ 9.3432567, 47.2945681 ], + [ 9.3431193, 47.2944009 ], + [ 9.3433591, 47.2943807 ], + [ 9.3436474, 47.2943542 ], + [ 9.3439442, 47.2943333 ], + [ 9.344185, 47.2943639 ], + [ 9.3443432, 47.2943956 ], + [ 9.3446341, 47.2944423 ], + [ 9.3449668, 47.2945223 ], + [ 9.3452754, 47.2946027 ], + [ 9.3455484, 47.2946329 ], + [ 9.3458908, 47.2947297 ], + [ 9.3462726, 47.2947978 ], + [ 9.3466296, 47.2948436 ], + [ 9.3469031, 47.2948625 ], + [ 9.3470008, 47.2948217 ], + [ 9.34714, 47.2947634 ], + [ 9.3473544, 47.2947492 ], + [ 9.3476452, 47.2947904 ], + [ 9.3479356, 47.2948203 ], + [ 9.3482098, 47.2948616 ], + [ 9.3484171, 47.2948813 ], + [ 9.3486154, 47.2948786 ], + [ 9.3488799, 47.2948807 ], + [ 9.3490635, 47.294929 ], + [ 9.3492223, 47.295 ], + [ 9.3493877, 47.2950034 ], + [ 9.3495114, 47.294996 ], + [ 9.349618, 47.2949496 ], + [ 9.3497403, 47.2949027 ], + [ 9.3499549, 47.2948942 ], + [ 9.3501383, 47.2949367 ], + [ 9.350363, 47.2949788 ], + [ 9.350529, 47.2950216 ], + [ 9.3507694, 47.295041 ], + [ 9.3509765, 47.295055 ], + [ 9.3511447, 47.2951372 ], + [ 9.351238, 47.2952262 ], + [ 9.3514312, 47.2953363 ], + [ 9.3516487, 47.2954293 ], + [ 9.3518238, 47.2954719 ], + [ 9.3519056, 47.2954482 ], + [ 9.3520617, 47.2954236 ], + [ 9.352129, 47.2954565 ], + [ 9.3521887, 47.2955065 ], + [ 9.3522808, 47.295539 ], + [ 9.3523881, 47.2955601 ], + [ 9.3524399, 47.2956214 ], + [ 9.352427, 47.2957456 ], + [ 9.3524826, 47.2959591 ], + [ 9.3527315, 47.2959839 ], + [ 9.3533224, 47.296145 ], + [ 9.3540882, 47.2962924 ], + [ 9.3551446, 47.296526 ], + [ 9.355817, 47.2966297 ], + [ 9.3562829, 47.2967134 ], + [ 9.3566256, 47.2968441 ], + [ 9.3568346, 47.2969314 ], + [ 9.3568779, 47.2970097 ], + [ 9.3569063, 47.2971334 ], + [ 9.3570663, 47.2972384 ], + [ 9.357145299999999, 47.2973895 ], + [ 9.3571977, 47.2974902 ], + [ 9.3573581, 47.2976065 ], + [ 9.3574599, 47.297701 ], + [ 9.3574959, 47.2978075 ], + [ 9.3575403, 47.2978915 ], + [ 9.3575923, 47.297981 ], + [ 9.3576692, 47.2980758 ], + [ 9.3576968, 47.298177 ], + [ 9.3577573, 47.298272 ], + [ 9.357851, 47.2983722 ], + [ 9.3580273, 47.2984487 ], + [ 9.3581778, 47.2985198 ], + [ 9.358329, 47.2985855 ], + [ 9.3584628, 47.2986513 ], + [ 9.3585637, 47.2987232 ], + [ 9.3587078, 47.2988227 ], + [ 9.3588408, 47.298866 ], + [ 9.3589835, 47.2989261 ], + [ 9.3591508, 47.2990027 ], + [ 9.3593013, 47.2990514 ], + [ 9.3594762, 47.299111 ], + [ 9.3596513, 47.2991538 ], + [ 9.3598851, 47.2992182 ], + [ 9.3601189, 47.2993051 ], + [ 9.3602869, 47.2994044 ], + [ 9.3604639, 47.2995204 ], + [ 9.3606821, 47.2996358 ], + [ 9.3609409, 47.2997054 ], + [ 9.3610985, 47.2997202 ], + [ 9.3611998, 47.2998034 ], + [ 9.3613754, 47.2998799 ], + [ 9.3615509, 47.2999339 ], + [ 9.3616924, 47.2999826 ], + [ 9.3618421, 47.2999863 ], + [ 9.3621071, 47.2999996 ], + [ 9.3625716, 47.3000665 ], + [ 9.363395, 47.3002299 ], + [ 9.3639623, 47.3003968 ], + [ 9.3644953, 47.3005305 ], + [ 9.3648941, 47.3006096 ], + [ 9.3652345, 47.30065 ], + [ 9.3654018, 47.3007041 ], + [ 9.365536, 47.3007812 ], + [ 9.3656872, 47.3008467 ], + [ 9.3659026, 47.3008833 ], + [ 9.3662091, 47.3009015 ], + [ 9.3665412, 47.3009421 ], + [ 9.3667422, 47.3010126 ], + [ 9.3667684, 47.3010743 ], + [ 9.3667884, 47.3011924 ], + [ 9.3668893, 47.3012643 ], + [ 9.3670056, 47.3012796 ], + [ 9.3671721, 47.3013112 ], + [ 9.3673133, 47.3013318 ], + [ 9.3674724, 47.3014085 ], + [ 9.3676646, 47.3014679 ], + [ 9.3678313, 47.301505 ], + [ 9.3680375, 47.3014909 ], + [ 9.368262, 47.3015273 ], + [ 9.3684753, 47.3014848 ], + [ 9.3686394, 47.3014263 ], + [ 9.3688951, 47.3014114 ], + [ 9.3691252, 47.3013744 ], + [ 9.3693243, 47.3013943 ], + [ 9.3695722, 47.3013682 ], + [ 9.3697364, 47.3013377 ], + [ 9.3698082, 47.3012409 ], + [ 9.3698714, 47.3011385 ], + [ 9.3700115, 47.3011254 ], + [ 9.3701257, 47.3010617 ], + [ 9.3702391, 47.3009981 ], + [ 9.3704084, 47.3008323 ], + [ 9.370579, 47.3007284 ], + [ 9.3706856, 47.3007044 ], + [ 9.3707932, 47.3007087 ], + [ 9.371002, 47.3007677 ], + [ 9.3712433, 47.3008095 ], + [ 9.3714436, 47.3008857 ], + [ 9.3716601, 47.3009278 ], + [ 9.371834, 47.3009367 ], + [ 9.3719901, 47.300912 ], + [ 9.3721792, 47.3008586 ], + [ 9.3723031, 47.3008795 ], + [ 9.3724441, 47.3008944 ], + [ 9.372583, 47.3008249 ], + [ 9.3727462, 47.3007437 ], + [ 9.3728516, 47.3006632 ], + [ 9.372941, 47.3006225 ], + [ 9.3731226, 47.3006144 ], + [ 9.373336, 47.3005493 ], + [ 9.3736074, 47.3005117 ], + [ 9.373747, 47.3004647 ], + [ 9.3738956, 47.300457 ], + [ 9.3739875, 47.300484 ], + [ 9.374088, 47.3005221 ], + [ 9.3742285, 47.3005202 ], + [ 9.3743524, 47.3005184 ], + [ 9.3745076, 47.3004656 ], + [ 9.3746063, 47.3004303 ], + [ 9.3747135, 47.3004232 ], + [ 9.3748209, 47.3004216 ], + [ 9.374961, 47.3004085 ], + [ 9.3750676, 47.3003845 ], + [ 9.3752157, 47.3003429 ], + [ 9.3753299, 47.3003019 ], + [ 9.3754782, 47.3002886 ], + [ 9.3756028, 47.3002811 ], + [ 9.3757587, 47.3002508 ], + [ 9.3759058, 47.3002037 ], + [ 9.376028699999999, 47.3001513 ], + [ 9.3761522, 47.3001382 ], + [ 9.3763332, 47.3001131 ], + [ 9.3765069, 47.3000939 ], + [ 9.376811, 47.3000445 ], + [ 9.3770909, 47.2999899 ], + [ 9.3772644, 47.2999875 ], + [ 9.3774038, 47.2999574 ], + [ 9.3775598, 47.2999044 ], + [ 9.3777548, 47.2997889 ], + [ 9.3779023, 47.2997305 ], + [ 9.3781066, 47.2996656 ], + [ 9.3783671, 47.2995099 ], + [ 9.3786772, 47.2993534 ], + [ 9.3790176, 47.299123 ], + [ 9.3793629, 47.2987743 ], + [ 9.3796722, 47.2983021 ], + [ 9.3798047, 47.2980351 ], + [ 9.3799086, 47.2979153 ], + [ 9.3800458, 47.2978007 ], + [ 9.3801565, 47.2976187 ], + [ 9.3802675, 47.2974424 ], + [ 9.3803811, 47.2973844 ], + [ 9.380453, 47.2972932 ], + [ 9.3805336, 47.2972131 ], + [ 9.380731, 47.2971879 ], + [ 9.3808618, 47.2971239 ], + [ 9.3810147, 47.2969865 ], + [ 9.3810535, 47.2968958 ], + [ 9.3809429, 47.2967846 ], + [ 9.3807987, 47.2966625 ], + [ 9.3809008, 47.2964694 ], + [ 9.3810718, 47.2963769 ], + [ 9.3812747, 47.29625 ], + [ 9.3814842, 47.2960553 ], + [ 9.3817118, 47.2959055 ], + [ 9.3819839, 47.2956142 ], + [ 9.382255, 47.2952496 ], + [ 9.3825177, 47.2952008 ], + [ 9.3826466, 47.2950637 ], + [ 9.3827515, 47.294972 ], + [ 9.3828754, 47.2949703 ], + [ 9.3830082, 47.2949853 ], + [ 9.3831311, 47.2949554 ], + [ 9.3832342, 47.2948131 ], + [ 9.3832783, 47.2946151 ], + [ 9.3833983, 47.2944838 ], + [ 9.3835645, 47.2945097 ], + [ 9.383947, 47.2945719 ], + [ 9.3843795, 47.2946674 ], + [ 9.384424899999999, 47.2945089 ], + [ 9.3845131, 47.2944345 ], + [ 9.3846695, 47.2943927 ], + [ 9.384856599999999, 47.2942886 ], + [ 9.3849025, 47.294164 ], + [ 9.385, 47.2940949 ], + [ 9.3852212, 47.2940411 ], + [ 9.385486, 47.2940261 ], + [ 9.3857257, 47.2940284 ], + [ 9.3858641, 47.2939476 ], + [ 9.3859544, 47.2939293 ], + [ 9.3861291, 47.2939608 ], + [ 9.386462, 47.2940463 ], + [ 9.3867867, 47.294132 ], + [ 9.3869106, 47.2941077 ], + [ 9.3871975, 47.2940191 ], + [ 9.3875147, 47.2938569 ], + [ 9.3872477, 47.2937648 ], + [ 9.3869631, 47.2936446 ], + [ 9.3865059, 47.2935496 ], + [ 9.3860396, 47.2934546 ], + [ 9.3862451, 47.2931303 ], + [ 9.3862819, 47.2929607 ], + [ 9.3862549, 47.2928765 ], + [ 9.3861448, 47.2928047 ], + [ 9.3859947, 47.2927673 ], + [ 9.3858218, 47.2927867 ], + [ 9.3856324, 47.2928062 ], + [ 9.3854482, 47.2927411 ], + [ 9.38534, 47.2926975 ], + [ 9.3852539, 47.2925803 ], + [ 9.3851257, 47.2924412 ], + [ 9.3849908, 47.2923472 ], + [ 9.384832, 47.2922987 ], + [ 9.3845999, 47.2922793 ], + [ 9.3844498, 47.292242 ], + [ 9.3843891, 47.2921413 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "JBG0033", + "country" : "CHE", + "name" : [ + { + "text" : "Eidgenössisches Jagdbanngebiet Säntis", + "lang" : "de-CH" + }, + { + "text" : "District franc fédéral Säntis", + "lang" : "fr-CH" + }, + { + "text" : "Bandita federale di caccia Säntis", + "lang" : "it-CH" + }, + { + "text" : "Federal Game Reserve Säntis", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.6289183, 47.3787407 ], + [ 8.6289097, 47.3785995 ], + [ 8.6288902, 47.3784589 ], + [ 8.62886, 47.3783191 ], + [ 8.628819, 47.3781806 ], + [ 8.6287674, 47.3780438 ], + [ 8.6287053, 47.377909 ], + [ 8.6286329, 47.3777765 ], + [ 8.6285504, 47.3776468 ], + [ 8.628458, 47.3775203 ], + [ 8.628356, 47.3773972 ], + [ 8.6282447, 47.3772778 ], + [ 8.6281243, 47.3771627 ], + [ 8.6279952, 47.3770519 ], + [ 8.6278578, 47.3769459 ], + [ 8.6277124, 47.3768449 ], + [ 8.6275593, 47.3767492 ], + [ 8.6273992, 47.3766591 ], + [ 8.6272323, 47.3765748 ], + [ 8.6270591, 47.3764966 ], + [ 8.6268802, 47.3764246 ], + [ 8.6266959, 47.3763591 ], + [ 8.6265069, 47.3763002 ], + [ 8.6263136, 47.3762481 ], + [ 8.6261165, 47.376203 ], + [ 8.6259163, 47.3761649 ], + [ 8.6257133, 47.376134 ], + [ 8.6255083, 47.3761104 ], + [ 8.6253017, 47.3760941 ], + [ 8.6250942, 47.3760851 ], + [ 8.6248862, 47.3760836 ], + [ 8.6246784, 47.3760894 ], + [ 8.624471400000001, 47.3761026 ], + [ 8.6242656, 47.3761232 ], + [ 8.6240617, 47.376151 ], + [ 8.6238603, 47.376186 ], + [ 8.6236618, 47.3762282 ], + [ 8.6234668, 47.3762774 ], + [ 8.6232759, 47.3763334 ], + [ 8.6230896, 47.3763961 ], + [ 8.6229083, 47.3764654 ], + [ 8.6227327, 47.376541 ], + [ 8.6225631, 47.3766228 ], + [ 8.6224, 47.3767105 ], + [ 8.6222439, 47.3768038 ], + [ 8.6220953, 47.3769026 ], + [ 8.6219544, 47.3770065 ], + [ 8.6218217, 47.3771153 ], + [ 8.6216976, 47.3772287 ], + [ 8.6215824, 47.3773463 ], + [ 8.6214764, 47.3774678 ], + [ 8.62138, 47.377593 ], + [ 8.6212933, 47.3777214 ], + [ 8.6212166, 47.3778527 ], + [ 8.6211501, 47.3779865 ], + [ 8.6210941, 47.3781226 ], + [ 8.6210486, 47.3782604 ], + [ 8.6210138, 47.3783997 ], + [ 8.620989699999999, 47.37854 ], + [ 8.6209765, 47.378681 ], + [ 8.6209742, 47.3788223 ], + [ 8.6209828, 47.3789634 ], + [ 8.6210022, 47.379104 ], + [ 8.6210325, 47.3792438 ], + [ 8.6210735, 47.3793823 ], + [ 8.6211251, 47.3795192 ], + [ 8.6211871, 47.379654 ], + [ 8.6212595, 47.3797864 ], + [ 8.621342, 47.3799161 ], + [ 8.6214343, 47.3800427 ], + [ 8.6215363, 47.3801658 ], + [ 8.6216477, 47.3802851 ], + [ 8.621768, 47.3804003 ], + [ 8.6218971, 47.3805111 ], + [ 8.6220346, 47.3806171 ], + [ 8.62218, 47.3807181 ], + [ 8.622333, 47.3808138 ], + [ 8.6224932, 47.3809039 ], + [ 8.6226601, 47.3809882 ], + [ 8.6228332, 47.3810664 ], + [ 8.6230122, 47.3811384 ], + [ 8.6231964, 47.3812039 ], + [ 8.6233855, 47.3812628 ], + [ 8.6235788, 47.3813149 ], + [ 8.6237759, 47.38136 ], + [ 8.6239762, 47.3813981 ], + [ 8.6241791, 47.381429 ], + [ 8.6243842, 47.3814527 ], + [ 8.6245908, 47.381469 ], + [ 8.6247984, 47.3814779 ], + [ 8.6250063, 47.3814795 ], + [ 8.6252141, 47.3814737 ], + [ 8.6254212, 47.3814605 ], + [ 8.625627, 47.3814399 ], + [ 8.6258309, 47.381412 ], + [ 8.6260324, 47.381377 ], + [ 8.6262309, 47.3813348 ], + [ 8.6264258, 47.3812857 ], + [ 8.6266168, 47.3812296 ], + [ 8.6268031, 47.3811669 ], + [ 8.6269844, 47.3810976 ], + [ 8.6271601, 47.381022 ], + [ 8.6273297, 47.3809402 ], + [ 8.6274927, 47.3808525 ], + [ 8.6276488, 47.3807592 ], + [ 8.6277975, 47.3806604 ], + [ 8.6279383, 47.3805565 ], + [ 8.628071, 47.3804477 ], + [ 8.6281951, 47.3803343 ], + [ 8.6283103, 47.3802167 ], + [ 8.6284163, 47.3800951 ], + [ 8.6285127, 47.37997 ], + [ 8.6285994, 47.3798416 ], + [ 8.6286761, 47.3797102 ], + [ 8.6287425, 47.3795764 ], + [ 8.6287985, 47.3794403 ], + [ 8.628844, 47.3793025 ], + [ 8.6288788, 47.3791632 ], + [ 8.6289028, 47.3790229 ], + [ 8.628916, 47.3788819 ], + [ 8.6289183, 47.3787407 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0032", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Fällanden", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Fällanden", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Fällanden", + "lang" : "it-CH" + }, + { + "text" : "Substation Fällanden", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.8307948, 47.1039767 ], + [ 6.8310526, 47.1039812 ], + [ 6.8313067, 47.1039513 ], + [ 6.8313417, 47.1039421 ], + [ 6.8313866999999995, 47.1039368 ], + [ 6.8316285, 47.1038733 ], + [ 6.8318474, 47.1037787 ], + [ 6.832035, 47.1036567 ], + [ 6.832184, 47.103512 ], + [ 6.8322886, 47.1033502 ], + [ 6.8323561999999995, 47.1032095 ], + [ 6.8324123, 47.1030376 ], + [ 6.8324182, 47.1028615 ], + [ 6.8323738, 47.102688 ], + [ 6.8322807, 47.1025238 ], + [ 6.8321426, 47.1023751 ], + [ 6.8319646, 47.1022476 ], + [ 6.8317537, 47.1021462 ], + [ 6.8315179, 47.1020749 ], + [ 6.8312748, 47.10202 ], + [ 6.8310219, 47.1019813 ], + [ 6.8307629, 47.1019771 ], + [ 6.8305076, 47.1020076 ], + [ 6.8302661, 47.1020717 ], + [ 6.8300475, 47.1021668 ], + [ 6.8298605, 47.1022893 ], + [ 6.8297122, 47.1024344 ], + [ 6.8296084, 47.1025965 ], + [ 6.8295416, 47.1027365 ], + [ 6.8294858, 47.1029094 ], + [ 6.8294808, 47.1030865 ], + [ 6.8295266, 47.1032607 ], + [ 6.8296215, 47.1034255 ], + [ 6.8297619, 47.1035744 ], + [ 6.8299422, 47.1037016 ], + [ 6.8299679, 47.1037137 ], + [ 6.8300155, 47.1037476 ], + [ 6.8302254, 47.1038482 ], + [ 6.8304599, 47.1039192 ], + [ 6.8305433, 47.103938 ], + [ 6.8307948, 47.1039767 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "NE05", + "country" : "CHE", + "name" : [ + { + "text" : "Tribunal régional Chaux-de-Fonds", + "lang" : "de-CH" + }, + { + "text" : "Tribunal régional Chaux-de-Fonds", + "lang" : "fr-CH" + }, + { + "text" : "Tribunal régional Chaux-de-Fonds", + "lang" : "it-CH" + }, + { + "text" : "Tribunal régional Chaux-de-Fonds", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "regulationExemption" : "YES", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Police Neuchâteloise", + "lang" : "de-CH" + }, + { + "text" : "Police Neuchâteloise", + "lang" : "fr-CH" + }, + { + "text" : "Police Neuchâteloise", + "lang" : "it-CH" + }, + { + "text" : "Police Neuchâteloise", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "PN - Rens et opérations", + "lang" : "de-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "fr-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "it-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "PN - Rens et opérationsPN - Rens et opérations", + "lang" : "de-CH" + }, + { + "text" : "PN - Rens et opérationsPN - Rens et opérations", + "lang" : "fr-CH" + }, + { + "text" : "PN - Rens et opérationsPN - Rens et opérations", + "lang" : "it-CH" + }, + { + "text" : "PN - Rens et opérationsPN - Rens et opérations", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ne.ch/autorites/DESC/PONE/Pages/Drones.aspx", + "email" : "Police.Neuchateloise@ne.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.7942593, 47.3367529 ], + [ 8.7796325, 47.3326373 ], + [ 8.7656914, 47.3307295 ], + [ 8.7508806, 47.3310787 ], + [ 8.7406199, 47.3335338 ], + [ 8.7453898, 47.3418908 ], + [ 8.729198, 47.3618632 ], + [ 8.7068483, 47.3907162 ], + [ 8.7616569, 47.4107911 ], + [ 8.8033808, 47.3842189 ], + [ 8.8265118, 47.3803573 ], + [ 8.8263053, 47.3693728 ], + [ 8.8217082, 47.3577547 ], + [ 8.8124172, 47.3478103 ], + [ 8.8038056, 47.3413496 ], + [ 8.7942593, 47.3367529 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZK001", + "country" : "CHE", + "name" : [ + { + "text" : "LSZK Speck-Fehraltorf", + "lang" : "de-CH" + }, + { + "text" : "LSZK Speck-Fehraltorf", + "lang" : "fr-CH" + }, + { + "text" : "LSZK Speck-Fehraltorf", + "lang" : "it-CH" + }, + { + "text" : "LSZK Speck-Fehraltorf", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Flugplatz Speck-Fehraltorf", + "lang" : "de-CH" + }, + { + "text" : "Flugplatz Speck-Fehraltorf", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatz Speck-Fehraltorf", + "lang" : "it-CH" + }, + { + "text" : "Flugplatz Speck-Fehraltorf", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Luca Marchetti", + "lang" : "de-CH" + }, + { + "text" : "Luca Marchetti", + "lang" : "fr-CH" + }, + { + "text" : "Luca Marchetti", + "lang" : "it-CH" + }, + { + "text" : "Luca Marchetti", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.fgzo.ch/flugvorbereitung.php", + "email" : "flugplatzleiter@fgzo.ch", + "phone" : "0041449541252", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6814955, 46.6173328 ], + [ 7.6818576, 46.6171297 ], + [ 7.6821288, 46.6173423 ], + [ 7.6829202, 46.6168215 ], + [ 7.6829377999999995, 46.6166856 ], + [ 7.682878, 46.6164474 ], + [ 7.6823995, 46.6160067 ], + [ 7.6826704, 46.6158514 ], + [ 7.6820728, 46.6153453 ], + [ 7.6821965, 46.6152758 ], + [ 7.6818556000000005, 46.6149554 ], + [ 7.6815495, 46.6151063 ], + [ 7.6809327, 46.6143763 ], + [ 7.6811398, 46.6142688 ], + [ 7.6808159, 46.6139492 ], + [ 7.6803742, 46.6141445 ], + [ 7.6774930999999995, 46.6114897 ], + [ 7.6763851, 46.6106617 ], + [ 7.6750462, 46.6101527 ], + [ 7.6751929, 46.6099734 ], + [ 7.6748621, 46.6098481 ], + [ 7.674633, 46.6099997 ], + [ 7.6743833, 46.6098986 ], + [ 7.6732777, 46.6105063 ], + [ 7.6727263, 46.6100801 ], + [ 7.6724932, 46.6102101 ], + [ 7.6727448, 46.6104543 ], + [ 7.6728959, 46.6103775 ], + [ 7.6732601, 46.6106826 ], + [ 7.6735857, 46.6105047 ], + [ 7.6814955, 46.6173328 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSGR002", + "country" : "CHE", + "name" : [ + { + "text" : "LSGR Reichenbach (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSGR Reichenbach (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSGR Reichenbach (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSGR Reichenbach (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Flugplatzgenossenschaft Reichenbach", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzgenossenschaft Reichenbach", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzgenossenschaft Reichenbach", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzgenossenschaft Reichenbach", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Roland Lüscher", + "lang" : "de-CH" + }, + { + "text" : "Roland Lüscher", + "lang" : "fr-CH" + }, + { + "text" : "Roland Lüscher", + "lang" : "it-CH" + }, + { + "text" : "Roland Lüscher", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.flugplatz-reichenbach.ch/?page_id=173", + "email" : "flugplatzleiter@flugplatz-reichenbach.ch", + "phone" : "0041796421761", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7173338000000005, 47.4684964 ], + [ 7.7173344, 47.4685098 ], + [ 7.7173351, 47.4685228 ], + [ 7.7173374, 47.4685342 ], + [ 7.717341, 47.4685483 ], + [ 7.7173445, 47.4685601 ], + [ 7.7173504, 47.4685734 ], + [ 7.7173562, 47.4685848 ], + [ 7.7173638, 47.4685958 ], + [ 7.717372, 47.4686068 ], + [ 7.7173812999999996, 47.4686185 ], + [ 7.7173924, 47.4686295 ], + [ 7.7175957, 47.468829 ], + [ 7.7177109, 47.4689171 ], + [ 7.717748, 47.468939 ], + [ 7.7177969, 47.4689641 ], + [ 7.7195723, 47.4674102 ], + [ 7.7195585, 47.4674071 ], + [ 7.719545, 47.4674031 ], + [ 7.7195321, 47.4673984 ], + [ 7.7195198, 47.467393 ], + [ 7.7195081, 47.467387 ], + [ 7.7194973000000005, 47.4673803 ], + [ 7.7194873, 47.467373 ], + [ 7.7193616, 47.4672738 ], + [ 7.7193328, 47.4672489 ], + [ 7.719307, 47.4672226 ], + [ 7.7192845, 47.4671949 ], + [ 7.7192655, 47.467166 ], + [ 7.7192384, 47.4671197 ], + [ 7.7192249, 47.4670992 ], + [ 7.7192089, 47.4670795 ], + [ 7.7191905, 47.4670607 ], + [ 7.7191697999999995, 47.4670431 ], + [ 7.7191471, 47.4670267 ], + [ 7.7190952, 47.4669905 ], + [ 7.719046, 47.4669526 ], + [ 7.7189997, 47.466913 ], + [ 7.7188412, 47.4667576 ], + [ 7.7188228, 47.466741 ], + [ 7.7188026, 47.4667253 ], + [ 7.7187805, 47.4667109 ], + [ 7.7187567, 47.4666976 ], + [ 7.7187315, 47.4666858 ], + [ 7.7186001, 47.4666291 ], + [ 7.7185929, 47.4666272 ], + [ 7.7185854, 47.4666254 ], + [ 7.7185754, 47.4666244 ], + [ 7.7185668, 47.4666247 ], + [ 7.7185582, 47.4666262 ], + [ 7.7185503, 47.4666285 ], + [ 7.7185423, 47.4666314 ], + [ 7.7185358, 47.4666354 ], + [ 7.7185298, 47.4666403 ], + [ 7.718524, 47.466648 ], + [ 7.7184764999999995, 47.4667523 ], + [ 7.7183619, 47.4669931 ], + [ 7.7181989, 47.4673027 ], + [ 7.7181084, 47.4673913 ], + [ 7.7179522, 47.4675441 ], + [ 7.7178578, 47.4676552 ], + [ 7.7176626, 47.4678866 ], + [ 7.7176206, 47.4679547 ], + [ 7.7175201, 47.4681286 ], + [ 7.7174162, 47.4683128 ], + [ 7.7173554, 47.4684229 ], + [ 7.7173497, 47.4684343 ], + [ 7.7173445, 47.4684457 ], + [ 7.7173405, 47.4684583 ], + [ 7.7173377, 47.4684713 ], + [ 7.7173348, 47.4684839 ], + [ 7.7173338000000005, 47.4684964 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns220", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Stellihübel - Furtboden", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Stellihübel - Furtboden", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Stellihübel - Furtboden", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Stellihübel - Furtboden", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.3006875, 46.4443401 ], + [ 6.3006828, 46.4441635 ], + [ 6.3006615, 46.4439875 ], + [ 6.3006235, 46.4438129 ], + [ 6.3005691, 46.4436404 ], + [ 6.3004985, 46.4434706 ], + [ 6.300412, 46.443304499999996 ], + [ 6.30031, 46.4431426 ], + [ 6.3001929, 46.4429856 ], + [ 6.3000611, 46.4428343 ], + [ 6.2999153, 46.4426893 ], + [ 6.2997562, 46.4425512 ], + [ 6.2995843, 46.4424206 ], + [ 6.2994004, 46.442298 ], + [ 6.2992053, 46.442184 ], + [ 6.2989998, 46.442079 ], + [ 6.2987849, 46.4419836 ], + [ 6.2986767, 46.4419406 ], + [ 6.2986687, 46.4419375 ], + [ 6.2960855, 46.4409462 ], + [ 6.2959682, 46.4409029 ], + [ 6.295737, 46.4408277 ], + [ 6.2954993, 46.4407631 ], + [ 6.295256, 46.4407094 ], + [ 6.2950815, 46.4406782 ], + [ 6.2950331, 46.440666 ], + [ 6.2947898, 46.4406123 ], + [ 6.2945419, 46.4405697 ], + [ 6.2942905, 46.4405384 ], + [ 6.2940367, 46.4405185 ], + [ 6.2937815, 46.4405101 ], + [ 6.2935261, 46.4405133 ], + [ 6.2932715, 46.4405281 ], + [ 6.2930189, 46.4405543 ], + [ 6.2927693, 46.4405919 ], + [ 6.2925238, 46.4406407 ], + [ 6.2922834, 46.4407004 ], + [ 6.2920492, 46.440771 ], + [ 6.2918222, 46.4408519 ], + [ 6.2916033, 46.440943 ], + [ 6.2913935, 46.4410437 ], + [ 6.2911937, 46.4411537 ], + [ 6.2910047, 46.4412726 ], + [ 6.2908274, 46.4413997 ], + [ 6.2906624, 46.4415345 ], + [ 6.2905106, 46.4416766 ], + [ 6.2903725, 46.4418251 ], + [ 6.2903131, 46.4418964 ], + [ 6.2902048, 46.442031 ], + [ 6.2901405, 46.4421143 ], + [ 6.2900316, 46.442274 ], + [ 6.2899381, 46.4424384 ], + [ 6.2898604, 46.4426066 ], + [ 6.2897988, 46.442778 ], + [ 6.2897535, 46.4429518 ], + [ 6.2897247, 46.4431273 ], + [ 6.2897126, 46.4433037 ], + [ 6.2897172, 46.4434802 ], + [ 6.2897385, 46.4436562 ], + [ 6.2897764, 46.4438308 ], + [ 6.2898308, 46.4440034 ], + [ 6.2899013, 46.4441731 ], + [ 6.2899878, 46.4443393 ], + [ 6.2900898, 46.4445012 ], + [ 6.2902069, 46.4446582 ], + [ 6.2903386, 46.4448095 ], + [ 6.2904844, 46.4449545 ], + [ 6.2906436, 46.4450926 ], + [ 6.2908154, 46.4452233 ], + [ 6.2909993, 46.4453459 ], + [ 6.2911944, 46.4454599 ], + [ 6.2913999, 46.4455649 ], + [ 6.2916148, 46.4456603 ], + [ 6.2917218, 46.4457029 ], + [ 6.2944783, 46.4467602 ], + [ 6.2945949, 46.4468032 ], + [ 6.294826, 46.4468784 ], + [ 6.2950638, 46.446943 ], + [ 6.2953072, 46.4469967 ], + [ 6.2955551, 46.4470393 ], + [ 6.2958065, 46.4470706 ], + [ 6.2960604, 46.4470905 ], + [ 6.2963156, 46.4470989 ], + [ 6.2963416, 46.4470991 ], + [ 6.2963829, 46.4471015 ], + [ 6.2966381, 46.4471099 ], + [ 6.2968935, 46.4471067 ], + [ 6.2971481, 46.4470919 ], + [ 6.2974008, 46.4470657 ], + [ 6.2976504, 46.4470281 ], + [ 6.297896, 46.4469793 ], + [ 6.2981363, 46.4469195 ], + [ 6.2983706, 46.446849 ], + [ 6.2985976, 46.446768 ], + [ 6.2988165, 46.4466769 ], + [ 6.2990262999999995, 46.4465762 ], + [ 6.2992261, 46.4464661 ], + [ 6.2994151, 46.4463473 ], + [ 6.2995925, 46.4462202 ], + [ 6.2997574, 46.4460853 ], + [ 6.2999092, 46.4459433 ], + [ 6.3000473, 46.4457947 ], + [ 6.3001082, 46.4457216 ], + [ 6.300197, 46.4456109 ], + [ 6.3002598, 46.4455295 ], + [ 6.3003686, 46.4453697 ], + [ 6.3004621, 46.4452054 ], + [ 6.3005398, 46.4450372 ], + [ 6.3006014, 46.4448658 ], + [ 6.3006467, 46.444692 ], + [ 6.3006754, 46.4445165 ], + [ 6.3006875, 46.4443401 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00039", + "country" : "CHE", + "name" : [ + { + "text" : "Centre gendarmerie mobile - Région Ouest (Bursins)", + "lang" : "de-CH" + }, + { + "text" : "Centre gendarmerie mobile - Région Ouest (Bursins)", + "lang" : "fr-CH" + }, + { + "text" : "Centre gendarmerie mobile - Région Ouest (Bursins)", + "lang" : "it-CH" + }, + { + "text" : "Centre gendarmerie mobile - Région Ouest (Bursins)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kantonspolizei Waadt", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale vaudoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Vaud", + "lang" : "it-CH" + }, + { + "text" : "Vaud Cantonal Police", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.pcv@vd.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4604917, 46.9547261 ], + [ 7.4613855000000004, 46.9558975 ], + [ 7.4617512999999995, 46.956377 ], + [ 7.4618197, 46.9563526 ], + [ 7.4618815, 46.9564368 ], + [ 7.4625086, 46.9562146 ], + [ 7.4626208, 46.9562381 ], + [ 7.4626414, 46.9562646 ], + [ 7.4632272, 46.9560543 ], + [ 7.4632307, 46.956059 ], + [ 7.463358, 46.9560135 ], + [ 7.4632823, 46.9559149 ], + [ 7.4632768, 46.9558971 ], + [ 7.4632842, 46.9558789 ], + [ 7.4633018, 46.9558645 ], + [ 7.46354, 46.9557749 ], + [ 7.4636064, 46.9557838 ], + [ 7.4636609, 46.9558096 ], + [ 7.4636701, 46.9558052 ], + [ 7.4635403, 46.9556765 ], + [ 7.4630603, 46.9552008 ], + [ 7.4624597, 46.9546055 ], + [ 7.4619368999999995, 46.9540873 ], + [ 7.4615764, 46.9542395 ], + [ 7.4615744, 46.9542435 ], + [ 7.4615721, 46.9542475 ], + [ 7.4615693, 46.9542514 ], + [ 7.4615663, 46.9542552 ], + [ 7.461563, 46.9542588 ], + [ 7.4615593, 46.9542623 ], + [ 7.4615553, 46.9542656 ], + [ 7.4615489, 46.9542704 ], + [ 7.4615422, 46.9542751 ], + [ 7.4615352, 46.9542795 ], + [ 7.4615279, 46.9542837 ], + [ 7.4615203, 46.9542877 ], + [ 7.4615124999999995, 46.9542914 ], + [ 7.4615044, 46.9542949 ], + [ 7.4611026, 46.9544597 ], + [ 7.4610906, 46.9544647 ], + [ 7.4610787, 46.9544699 ], + [ 7.4610669, 46.9544751 ], + [ 7.4610552, 46.9544805 ], + [ 7.4610436, 46.9544859 ], + [ 7.4610322, 46.9544915 ], + [ 7.4610208, 46.9544972 ], + [ 7.460941, 46.9545379 ], + [ 7.4609296, 46.9545435 ], + [ 7.4609182, 46.9545491 ], + [ 7.4609066, 46.9545546 ], + [ 7.4608948999999996, 46.95456 ], + [ 7.4608831, 46.9545652 ], + [ 7.4608712, 46.9545703 ], + [ 7.4608592, 46.9545753 ], + [ 7.4604917, 46.9547261 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VBS_1", + "country" : "CHE", + "name" : [ + { + "text" : "VBS_1 Bern", + "lang" : "de-CH" + }, + { + "text" : "VBS_1 Bern", + "lang" : "fr-CH" + }, + { + "text" : "VBS_1 Bern", + "lang" : "it-CH" + }, + { + "text" : "VBS_1 Bern", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "regulationExemption" : "YES", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Eidgenössisches Departement für Verteidigung, Bevölkerungsschutz und Sport (VBS)", + "lang" : "de-CH" + }, + { + "text" : "Département fédéral de la défense, de la protection de la population et des sports (DDPS)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento federale della difesa, della protezione della popolazione e dello sport (DDPS)", + "lang" : "it-CH" + }, + { + "text" : "Federal Department of Defence, Civil Protection and Sport (DDPS)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Lageverfolgungszentrum der Armee LVZ A", + "lang" : "de-CH" + }, + { + "text" : "Centre de suivi de la situation de l’armée, CSS A", + "lang" : "fr-CH" + }, + { + "text" : "Centro di monitoraggio della situazione dell’esercito, Centro mon sit Es", + "lang" : "it-CH" + }, + { + "text" : "Joint Operation Center, JOC", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vtg.admin.ch/en/joint-operations-command", + "email" : "lvz.op@vtg.admin.ch", + "phone" : "+41 58 464 96 43", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.5237672, 47.3812559 ], + [ 8.5237588, 47.3811148 ], + [ 8.5237397, 47.3809741 ], + [ 8.5237097, 47.3808343 ], + [ 8.5236689, 47.3806958 ], + [ 8.5236176, 47.3805589 ], + [ 8.5235558, 47.380424 ], + [ 8.5234836, 47.3802915 ], + [ 8.523401400000001, 47.3801618 ], + [ 8.5233093, 47.3800351 ], + [ 8.5232075, 47.3799119 ], + [ 8.5230964, 47.3797925 ], + [ 8.5229762, 47.3796772 ], + [ 8.5228474, 47.3795663 ], + [ 8.5227101, 47.3794602 ], + [ 8.5225649, 47.3793591 ], + [ 8.5224121, 47.3792633 ], + [ 8.5222521, 47.379173 ], + [ 8.5220854, 47.3790886 ], + [ 8.5219123, 47.3790102 ], + [ 8.5217335, 47.378938 ], + [ 8.5215494, 47.3788723 ], + [ 8.5213605, 47.3788133 ], + [ 8.5211672, 47.378761 ], + [ 8.5209703, 47.3787157 ], + [ 8.5207701, 47.3786775 ], + [ 8.5205672, 47.3786464 ], + [ 8.5203622, 47.3786226 ], + [ 8.5201556, 47.378606 ], + [ 8.5199481, 47.3785969 ], + [ 8.5197401, 47.3785952 ], + [ 8.5195323, 47.3786008 ], + [ 8.5193252, 47.3786138 ], + [ 8.5191194, 47.3786342 ], + [ 8.5189155, 47.3786618 ], + [ 8.5187139, 47.3786967 ], + [ 8.5185154, 47.3787387 ], + [ 8.5183203, 47.3787877 ], + [ 8.5181293, 47.3788435 ], + [ 8.5179428, 47.3789061 ], + [ 8.5177614, 47.3789752 ], + [ 8.5175856, 47.3790507 ], + [ 8.5174158, 47.3791323 ], + [ 8.517252599999999, 47.3792198 ], + [ 8.5170963, 47.379313 ], + [ 8.5169474, 47.3794116 ], + [ 8.5168064, 47.3795154 ], + [ 8.5166735, 47.3796241 ], + [ 8.5165491, 47.3797373 ], + [ 8.5164337, 47.3798549 ], + [ 8.5163275, 47.3799763 ], + [ 8.5162308, 47.3801014 ], + [ 8.5161438, 47.3802297 ], + [ 8.5160669, 47.3803609 ], + [ 8.5160001, 47.3804947 ], + [ 8.5159438, 47.3806307 ], + [ 8.515898, 47.3807685 ], + [ 8.5158629, 47.3809078 ], + [ 8.5158386, 47.3810481 ], + [ 8.5158252, 47.381189 ], + [ 8.5158226, 47.3813303 ], + [ 8.5158309, 47.3814714 ], + [ 8.51585, 47.3816121 ], + [ 8.51588, 47.3817519 ], + [ 8.5159207, 47.3818904 ], + [ 8.515972, 47.3820273 ], + [ 8.5160338, 47.3821622 ], + [ 8.516106, 47.3822947 ], + [ 8.5161882, 47.3824245 ], + [ 8.5162803, 47.3825511 ], + [ 8.516382, 47.3826743 ], + [ 8.5164931, 47.3827937 ], + [ 8.5166133, 47.3829091 ], + [ 8.5167422, 47.3830199 ], + [ 8.5168794, 47.3831261 ], + [ 8.5170246, 47.3832272 ], + [ 8.5171775, 47.383323 ], + [ 8.5173375, 47.3834133 ], + [ 8.5175042, 47.3834977 ], + [ 8.5176772, 47.3835761 ], + [ 8.517856, 47.3836483 ], + [ 8.5180402, 47.383714 ], + [ 8.5182291, 47.383773 ], + [ 8.5184224, 47.3838253 ], + [ 8.5186194, 47.3838706 ], + [ 8.5188196, 47.3839089 ], + [ 8.5190225, 47.38394 ], + [ 8.5192275, 47.3839638 ], + [ 8.5194341, 47.3839803 ], + [ 8.5196416, 47.3839894 ], + [ 8.5198496, 47.3839912 ], + [ 8.5200574, 47.3839855 ], + [ 8.5202645, 47.3839725 ], + [ 8.5204704, 47.3839522 ], + [ 8.5206743, 47.3839245 ], + [ 8.5208759, 47.3838896 ], + [ 8.5210745, 47.3838476 ], + [ 8.5212696, 47.3837987 ], + [ 8.5214606, 47.3837428 ], + [ 8.5216471, 47.3836802 ], + [ 8.5218285, 47.3836111 ], + [ 8.5220043, 47.3835356 ], + [ 8.5221741, 47.383454 ], + [ 8.5223373, 47.3833665 ], + [ 8.5224936, 47.3832733 ], + [ 8.5226425, 47.3831746 ], + [ 8.5227836, 47.3830708 ], + [ 8.522916500000001, 47.3829622 ], + [ 8.5230408, 47.3828489 ], + [ 8.5231562, 47.3827314 ], + [ 8.5232624, 47.3826099 ], + [ 8.5233591, 47.3824849 ], + [ 8.5234461, 47.3823565 ], + [ 8.523523, 47.3822253 ], + [ 8.5235897, 47.3820915 ], + [ 8.523646, 47.3819555 ], + [ 8.5236918, 47.3818177 ], + [ 8.5237268, 47.3816784 ], + [ 8.5237511, 47.3815382 ], + [ 8.5237646, 47.3813972 ], + [ 8.5237672, 47.3812559 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GZW0001", + "country" : "CHE", + "name" : [ + { + "text" : "Gefängnis Zürich West", + "lang" : "de-CH" + }, + { + "text" : "Gefängnis Zürich West", + "lang" : "fr-CH" + }, + { + "text" : "Gefängnis Zürich West", + "lang" : "it-CH" + }, + { + "text" : "Gefängnis Zürich West", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "de-CH" + }, + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "fr-CH" + }, + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "it-CH" + }, + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "de-CH" + }, + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "fr-CH" + }, + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "it-CH" + }, + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Reno Berner", + "lang" : "de-CH" + }, + { + "text" : "Reno Berner", + "lang" : "fr-CH" + }, + { + "text" : "Reno Berner", + "lang" : "it-CH" + }, + { + "text" : "Reno Berner", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.zh.ch/de/direktion-der-justiz-und-des-innern/justizvollzug-wiedereingliederung.html", + "email" : "sicherheit-juwe@ji.zh.ch", + "phone" : "0041432583400", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT12H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6306057, 47.5173899 ], + [ 7.6304698, 47.5174394 ], + [ 7.6303804, 47.5175962 ], + [ 7.6301586, 47.5178336 ], + [ 7.6299768, 47.5179645 ], + [ 7.6297675, 47.5181326 ], + [ 7.6296715, 47.5183098 ], + [ 7.6295045, 47.518585 ], + [ 7.6293095, 47.5187783 ], + [ 7.6291104, 47.5189337 ], + [ 7.6290136, 47.5190427 ], + [ 7.6288709, 47.5191534 ], + [ 7.6287429, 47.5192252 ], + [ 7.628567, 47.5192795 ], + [ 7.6283452, 47.5192981 ], + [ 7.6282896000000004, 47.519298 ], + [ 7.628124, 47.5192979 ], + [ 7.6280731, 47.5192978 ], + [ 7.6279644, 47.5192991 ], + [ 7.6279259, 47.5192753 ], + [ 7.6278676999999995, 47.5192273 ], + [ 7.6277787, 47.5191217 ], + [ 7.6277339, 47.5190904 ], + [ 7.6276767, 47.5190948 ], + [ 7.6276195, 47.5191086 ], + [ 7.6276519, 47.5192057 ], + [ 7.6276617, 47.519269800000004 ], + [ 7.627532, 47.5192522 ], + [ 7.6275024, 47.519314 ], + [ 7.6274535, 47.5193988 ], + [ 7.6273509, 47.5195118 ], + [ 7.6271225, 47.519564 ], + [ 7.6269876, 47.519574 ], + [ 7.6269649, 47.5195623 ], + [ 7.6268861, 47.5195215 ], + [ 7.6269347, 47.5193935 ], + [ 7.6269162999999995, 47.5192692 ], + [ 7.626915, 47.5192603 ], + [ 7.6268507, 47.5191473 ], + [ 7.6267838, 47.5190979 ], + [ 7.6267484, 47.5191011 ], + [ 7.6267521, 47.5191223 ], + [ 7.6265026, 47.5192038 ], + [ 7.6264856, 47.5192094 ], + [ 7.6263963, 47.5193594 ], + [ 7.6263179999999995, 47.5193931 ], + [ 7.6263083, 47.5194107 ], + [ 7.6260262999999995, 47.5195287 ], + [ 7.6260022, 47.5195288 ], + [ 7.6259818, 47.5195376 ], + [ 7.6259615, 47.5195464 ], + [ 7.6257628, 47.5195411 ], + [ 7.6255415, 47.5195627 ], + [ 7.6255095, 47.5195679 ], + [ 7.6254935, 47.5195704 ], + [ 7.6254776, 47.519573 ], + [ 7.6250619, 47.5197897 ], + [ 7.6251304, 47.5200611 ], + [ 7.6251666, 47.520345 ], + [ 7.6253048, 47.5202738 ], + [ 7.625489, 47.5202472 ], + [ 7.6255295, 47.5202188 ], + [ 7.625579, 47.520217099999996 ], + [ 7.625648, 47.5202605 ], + [ 7.6257363, 47.5202544 ], + [ 7.6258009, 47.5202016 ], + [ 7.6260902, 47.5200907 ], + [ 7.626175, 47.5200794 ], + [ 7.6262551, 47.5200944 ], + [ 7.6263646, 47.5200926 ], + [ 7.6264669, 47.520039 ], + [ 7.6265469, 47.5200414 ], + [ 7.6266606, 47.5200791 ], + [ 7.6267051, 47.5200811 ], + [ 7.6267608, 47.5200646 ], + [ 7.6269246, 47.520053 ], + [ 7.627091, 47.5199852 ], + [ 7.6272584, 47.5199746 ], + [ 7.6273954, 47.5199403 ], + [ 7.6275335, 47.5198746 ], + [ 7.627626, 47.519851 ], + [ 7.6277665, 47.5198415 ], + [ 7.6278189, 47.5198318 ], + [ 7.627843, 47.5198078 ], + [ 7.6278479, 47.5197269 ], + [ 7.6279264, 47.5197012 ], + [ 7.6280478, 47.519735 ], + [ 7.6281207, 47.519729 ], + [ 7.6281861, 47.5196745 ], + [ 7.6282486, 47.5196636 ], + [ 7.6283549, 47.5196742 ], + [ 7.6284257, 47.5196677 ], + [ 7.6285282, 47.5196109 ], + [ 7.6286113, 47.5195883 ], + [ 7.6286933, 47.5196165 ], + [ 7.6287627, 47.5196058 ], + [ 7.6288341, 47.5195326 ], + [ 7.6289169, 47.5195 ], + [ 7.6292116, 47.5194088 ], + [ 7.6293932, 47.5193072 ], + [ 7.6295125, 47.5192529 ], + [ 7.6296658, 47.519161 ], + [ 7.6297067, 47.5190815 ], + [ 7.629758, 47.5190686 ], + [ 7.6298669, 47.5190691 ], + [ 7.6299406, 47.5189242 ], + [ 7.6299969, 47.5188655 ], + [ 7.6300763, 47.5186766 ], + [ 7.6300821, 47.5185903 ], + [ 7.6300579, 47.518531 ], + [ 7.6300773, 47.5184622 ], + [ 7.630158, 47.5184135 ], + [ 7.6302036, 47.5183328 ], + [ 7.6304316, 47.5181857 ], + [ 7.6304909, 47.5179714 ], + [ 7.6304542, 47.517853099999996 ], + [ 7.630539, 47.5177752 ], + [ 7.6306142999999995, 47.5175851 ], + [ 7.6306057, 47.5173899 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr073", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Asphof", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Asphof", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Asphof", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Asphof", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7918865, 47.3756655 ], + [ 7.7917818, 47.3755318 ], + [ 7.7920072, 47.3751814 ], + [ 7.7923057, 47.3750123 ], + [ 7.7926631, 47.3748265 ], + [ 7.7929793, 47.3746387 ], + [ 7.7925315, 47.37406 ], + [ 7.7922058, 47.3736028 ], + [ 7.791756, 47.3729741 ], + [ 7.7915725, 47.3730074 ], + [ 7.791338, 47.3730455 ], + [ 7.7910955, 47.3730843 ], + [ 7.7907334, 47.3731489 ], + [ 7.7905571, 47.373199 ], + [ 7.7905189, 47.3731987 ], + [ 7.790316, 47.3731821 ], + [ 7.7897609, 47.3731602 ], + [ 7.7890581999999995, 47.3731457 ], + [ 7.7884887, 47.3731433 ], + [ 7.7880754, 47.373149 ], + [ 7.787736, 47.3731634 ], + [ 7.7876148, 47.3731882 ], + [ 7.7875043999999995, 47.3732179 ], + [ 7.7874262, 47.3732196 ], + [ 7.7873669, 47.3732017 ], + [ 7.7870115, 47.3731825 ], + [ 7.7859732, 47.3731264 ], + [ 7.7859571, 47.373151 ], + [ 7.7858913, 47.3731735 ], + [ 7.7858532, 47.3731635 ], + [ 7.7858276, 47.3731568 ], + [ 7.7858007, 47.3731389 ], + [ 7.7857762, 47.3731068 ], + [ 7.7853587, 47.3734224 ], + [ 7.7854252, 47.3736222 ], + [ 7.7848992, 47.3738513 ], + [ 7.784549, 47.3744261 ], + [ 7.7848952, 47.3751023 ], + [ 7.7852920999999995, 47.3752139 ], + [ 7.7857787, 47.3752513 ], + [ 7.7861213, 47.3752642 ], + [ 7.7862015, 47.3749956 ], + [ 7.7871595, 47.374863 ], + [ 7.7880628, 47.3751295 ], + [ 7.7886947, 47.3752736 ], + [ 7.7897251, 47.3754473 ], + [ 7.7909361, 47.3755834 ], + [ 7.7917673, 47.3756552 ], + [ 7.7918865, 47.3756655 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns114", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Schellenberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Schellenberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Schellenberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Schellenberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.976013, 46.0426781 ], + [ 8.9760099, 46.0426311 ], + [ 8.9760033, 46.0425842 ], + [ 8.9759932, 46.0425376 ], + [ 8.9759795, 46.0424915 ], + [ 8.9759625, 46.0424459 ], + [ 8.975942, 46.042401 ], + [ 8.9759182, 46.042357 ], + [ 8.9758911, 46.0423138 ], + [ 8.9758608, 46.0422717 ], + [ 8.9758273, 46.0422308 ], + [ 8.9757909, 46.0421911 ], + [ 8.9757515, 46.0421528 ], + [ 8.9757093, 46.042116 ], + [ 8.9756644, 46.0420808 ], + [ 8.9756169, 46.0420473 ], + [ 8.9755669, 46.0420156 ], + [ 8.9755146, 46.0419857 ], + [ 8.9754602, 46.0419578 ], + [ 8.9754037, 46.0419318 ], + [ 8.9753454, 46.041908 ], + [ 8.9752853, 46.0418864 ], + [ 8.9752237, 46.0418669 ], + [ 8.9751608, 46.0418498 ], + [ 8.9750966, 46.0418349 ], + [ 8.9750314, 46.0418224 ], + [ 8.9749653, 46.0418123 ], + [ 8.9748986, 46.0418047 ], + [ 8.9748314, 46.0417994 ], + [ 8.9747639, 46.0417967 ], + [ 8.9746963, 46.0417963 ], + [ 8.9746287, 46.0417985 ], + [ 8.9745614, 46.0418031 ], + [ 8.9744945, 46.0418102 ], + [ 8.9744283, 46.0418197 ], + [ 8.9743629, 46.0418315 ], + [ 8.9742984, 46.0418458 ], + [ 8.9742351, 46.0418624 ], + [ 8.9741732, 46.0418813 ], + [ 8.9741127, 46.0419024 ], + [ 8.9740539, 46.0419256 ], + [ 8.9739969, 46.041951 ], + [ 8.973942, 46.0419784 ], + [ 8.9738891, 46.0420078 ], + [ 8.9738386, 46.0420391 ], + [ 8.9737904, 46.0420722 ], + [ 8.9737449, 46.042107 ], + [ 8.973702, 46.0421434 ], + [ 8.9736618, 46.0421813 ], + [ 8.9736246, 46.0422206 ], + [ 8.973590399999999, 46.0422613 ], + [ 8.9735593, 46.0423031 ], + [ 8.9735314, 46.042346 ], + [ 8.9735068, 46.0423898 ], + [ 8.9734854, 46.0424345 ], + [ 8.9734675, 46.0424799 ], + [ 8.973453, 46.0425259 ], + [ 8.973442, 46.0425724 ], + [ 8.9734345, 46.0426192 ], + [ 8.9734305, 46.0426662 ], + [ 8.97343, 46.0427133 ], + [ 8.9734331, 46.0427604 ], + [ 8.9734398, 46.0428072 ], + [ 8.9734499, 46.0428538 ], + [ 8.9734635, 46.0428999 ], + [ 8.9734806, 46.0429455 ], + [ 8.9735011, 46.0429904 ], + [ 8.9735249, 46.0430345 ], + [ 8.973552, 46.0430776 ], + [ 8.9735823, 46.0431197 ], + [ 8.9736157, 46.0431606 ], + [ 8.9736522, 46.0432003 ], + [ 8.9736916, 46.0432386 ], + [ 8.9737338, 46.0432754 ], + [ 8.9737787, 46.0433106 ], + [ 8.9738262, 46.0433441 ], + [ 8.9738762, 46.0433759 ], + [ 8.9739284, 46.0434057 ], + [ 8.9739829, 46.0434337 ], + [ 8.9740394, 46.0434596 ], + [ 8.9740977, 46.0434834 ], + [ 8.9741578, 46.0435051 ], + [ 8.974219399999999, 46.0435245 ], + [ 8.9742823, 46.0435417 ], + [ 8.9743465, 46.0435565 ], + [ 8.9744117, 46.043569 ], + [ 8.9744778, 46.0435791 ], + [ 8.9745445, 46.0435868 ], + [ 8.9746117, 46.043592 ], + [ 8.9746792, 46.0435948 ], + [ 8.9747469, 46.0435951 ], + [ 8.9748144, 46.0435929 ], + [ 8.9748817, 46.0435883 ], + [ 8.9749486, 46.0435813 ], + [ 8.9750148, 46.0435718 ], + [ 8.9750803, 46.0435599 ], + [ 8.9751447, 46.0435456 ], + [ 8.975208, 46.043529 ], + [ 8.97527, 46.0435102 ], + [ 8.9753304, 46.0434891 ], + [ 8.9753892, 46.0434658 ], + [ 8.9754462, 46.0434404 ], + [ 8.9755012, 46.043413 ], + [ 8.975554, 46.0433836 ], + [ 8.9756045, 46.0433523 ], + [ 8.9756527, 46.0433192 ], + [ 8.9756983, 46.0432844 ], + [ 8.9757412, 46.043248 ], + [ 8.9757813, 46.0432101 ], + [ 8.975818499999999, 46.0431708 ], + [ 8.9758527, 46.0431302 ], + [ 8.9758838, 46.0430883 ], + [ 8.9759117, 46.0430454 ], + [ 8.9759363, 46.0430016 ], + [ 8.9759576, 46.0429569 ], + [ 8.9759756, 46.0429115 ], + [ 8.9759901, 46.0428655 ], + [ 8.9760011, 46.042819 ], + [ 8.9760086, 46.0427722 ], + [ 8.9760126, 46.0427252 ], + [ 8.976013, 46.0426781 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "STP0001", + "country" : "CHE", + "name" : [ + { + "text" : "Carcere Penale Lo Stampino", + "lang" : "de-CH" + }, + { + "text" : "Carcere Penale Lo Stampino", + "lang" : "fr-CH" + }, + { + "text" : "Carcere Penale Lo Stampino", + "lang" : "it-CH" + }, + { + "text" : "Carcere Penale Lo Stampino", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Strutture Carcerarie Cantonali, Casella Postale, 6901 Lugano", + "lang" : "de-CH" + }, + { + "text" : "Strutture Carcerarie Cantonali, Casella Postale, 6901 Lugano", + "lang" : "fr-CH" + }, + { + "text" : "Strutture Carcerarie Cantonali, Casella Postale, 6901 Lugano", + "lang" : "it-CH" + }, + { + "text" : "Strutture Carcerarie Cantonali, Casella Postale, 6901 Lugano", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Direzione delle Strutture Carcerarie / Staff di direzione", + "lang" : "de-CH" + }, + { + "text" : "Direzione delle Strutture Carcerarie / Staff di direzione", + "lang" : "fr-CH" + }, + { + "text" : "Direzione delle Strutture Carcerarie / Staff di direzione", + "lang" : "it-CH" + }, + { + "text" : "Direzione delle Strutture Carcerarie / Staff di direzione", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.ti.ch/carcere", + "email" : "di-penitenziario.cantonale@ti.ch", + "phone" : "0041918150011", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.2481127, 46.2997747 ], + [ 6.247775, 46.2994126 ], + [ 6.2465247999999995, 46.2988143 ], + [ 6.2450395, 46.2985932 ], + [ 6.2435452, 46.2987829 ], + [ 6.2422693, 46.2993545 ], + [ 6.2414061, 46.3002209 ], + [ 6.2410869, 46.3012504 ], + [ 6.2411148, 46.3013557 ], + [ 6.2410464, 46.3015761 ], + [ 6.2404497, 46.302175 ], + [ 6.2401306, 46.3032045 ], + [ 6.2404042, 46.3042403 ], + [ 6.2407641, 46.3046262 ], + [ 6.2415153, 46.3043691 ], + [ 6.2419226, 46.3041936 ], + [ 6.2423986, 46.3037687 ], + [ 6.2425139, 46.3036915 ], + [ 6.2427524, 46.3035552 ], + [ 6.2431762, 46.3033841 ], + [ 6.2432457, 46.3033632 ], + [ 6.2432828, 46.3033617 ], + [ 6.2434806, 46.303379 ], + [ 6.2435941, 46.3034171 ], + [ 6.2436393, 46.3034384 ], + [ 6.2437484, 46.303521 ], + [ 6.2439422, 46.3036931 ], + [ 6.2440198, 46.3037707 ], + [ 6.2441065, 46.3038423 ], + [ 6.2442244, 46.3039317 ], + [ 6.244342, 46.3039946 ], + [ 6.2444379, 46.3040266 ], + [ 6.244585, 46.3040511 ], + [ 6.2446455, 46.3040518 ], + [ 6.2447006, 46.3040408 ], + [ 6.2448135, 46.3039569 ], + [ 6.2448419, 46.3039152 ], + [ 6.244908, 46.30378 ], + [ 6.2450572, 46.3033431 ], + [ 6.2450826, 46.3032536 ], + [ 6.2451499, 46.3031443 ], + [ 6.2452876, 46.3030263 ], + [ 6.2454046, 46.3029771 ], + [ 6.2455762, 46.302918 ], + [ 6.2456893, 46.3028854 ], + [ 6.2457446, 46.3028621 ], + [ 6.2458383, 46.3028295 ], + [ 6.2460076, 46.3027798 ], + [ 6.2461656, 46.3027324 ], + [ 6.2462631, 46.3027103 ], + [ 6.246374, 46.3026816 ], + [ 6.2465348, 46.3026483 ], + [ 6.2466163, 46.3026364 ], + [ 6.2467381, 46.3026361 ], + [ 6.2469052, 46.3026821 ], + [ 6.2471089, 46.3027335 ], + [ 6.2472317, 46.3027538 ], + [ 6.247339, 46.3027583 ], + [ 6.2474875, 46.3027397 ], + [ 6.2475467, 46.3027209 ], + [ 6.2476783, 46.3026689 ], + [ 6.2477021, 46.3026258 ], + [ 6.2477738, 46.3025137 ], + [ 6.247802, 46.3023412 ], + [ 6.2478461, 46.3022075 ], + [ 6.2479184, 46.3021063 ], + [ 6.2479476, 46.3020683 ], + [ 6.248021, 46.3019827 ], + [ 6.2480496, 46.3019596 ], + [ 6.2481225, 46.3019249 ], + [ 6.2482101, 46.3019133 ], + [ 6.2483068, 46.301908 ], + [ 6.2483986, 46.3019187 ], + [ 6.2484902, 46.3019353 ], + [ 6.2485783, 46.3019448 ], + [ 6.2486968, 46.3019895 ], + [ 6.2487288, 46.3019946 ], + [ 6.2488051, 46.3017483 ], + [ 6.2487773, 46.301643 ], + [ 6.2488225, 46.301497 ], + [ 6.2486645, 46.3013518 ], + [ 6.2486257, 46.3013098 ], + [ 6.2485294, 46.3011676 ], + [ 6.2484613, 46.3010093 ], + [ 6.2483735, 46.3008784 ], + [ 6.2483083, 46.3007785 ], + [ 6.2482203, 46.3007252 ], + [ 6.2480776, 46.3006874 ], + [ 6.2479237, 46.300681 ], + [ 6.2478553, 46.3006889 ], + [ 6.2477734, 46.3007315 ], + [ 6.2476706, 46.3007548 ], + [ 6.2475964, 46.300738 ], + [ 6.2474563, 46.3007241 ], + [ 6.2472647, 46.3006851 ], + [ 6.2472297, 46.300653 ], + [ 6.2472192, 46.3005937 ], + [ 6.2472221, 46.3005348 ], + [ 6.2472235, 46.3003537 ], + [ 6.2471844, 46.3002664 ], + [ 6.2470178, 46.3000891 ], + [ 6.2469732, 46.3000151 ], + [ 6.2470041, 46.2999543 ], + [ 6.2474353, 46.2998391 ], + [ 6.2475586, 46.2998676 ], + [ 6.2477735, 46.3000231 ], + [ 6.2478957, 46.3000311 ], + [ 6.2479644, 46.2999893 ], + [ 6.2480254, 46.2998879 ], + [ 6.2480423, 46.2998423 ], + [ 6.2481127, 46.2997747 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-57", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8136477, 47.4804342 ], + [ 7.8136809, 47.4806891 ], + [ 7.8137126, 47.4808329 ], + [ 7.8139386, 47.4807329 ], + [ 7.814157, 47.4806438 ], + [ 7.8144846999999995, 47.4806521 ], + [ 7.8146422, 47.4807283 ], + [ 7.815071, 47.4810822 ], + [ 7.8157824, 47.4814018 ], + [ 7.8161956, 47.4816221 ], + [ 7.8162921999999995, 47.4817915 ], + [ 7.8161096, 47.4820346 ], + [ 7.8159451, 47.482247 ], + [ 7.8159219, 47.4823857 ], + [ 7.8159406, 47.4825404 ], + [ 7.8160544, 47.482799 ], + [ 7.8161436, 47.4828599 ], + [ 7.8162009999999995, 47.4828545 ], + [ 7.8162521, 47.4828222 ], + [ 7.8162697, 47.4827361 ], + [ 7.8162304, 47.4825527 ], + [ 7.8162475, 47.4824356 ], + [ 7.8165425, 47.4822003 ], + [ 7.8165841, 47.482207 ], + [ 7.8170494999999995, 47.4819185 ], + [ 7.8172394, 47.4820089 ], + [ 7.8175325, 47.4821825 ], + [ 7.8176983, 47.4822164 ], + [ 7.8177472, 47.4822112 ], + [ 7.817959, 47.4820923 ], + [ 7.8181937999999995, 47.4819596 ], + [ 7.8181973, 47.4819193 ], + [ 7.8180013, 47.4818712 ], + [ 7.8179447, 47.481672 ], + [ 7.8178298, 47.4815707 ], + [ 7.8175261, 47.4813575 ], + [ 7.8174983000000005, 47.4813399 ], + [ 7.8174655, 47.4812997 ], + [ 7.8173875, 47.4812132 ], + [ 7.8176438, 47.4811107 ], + [ 7.818015, 47.4812817 ], + [ 7.8181353, 47.4813381 ], + [ 7.8185955, 47.4813341 ], + [ 7.8186451, 47.4813323 ], + [ 7.8186668, 47.4812949 ], + [ 7.8187666, 47.481292 ], + [ 7.8189505, 47.4813267 ], + [ 7.8190639, 47.4814142 ], + [ 7.8192104, 47.4815032 ], + [ 7.8193181, 47.4814861 ], + [ 7.8194297, 47.4813878 ], + [ 7.8192409, 47.4812398 ], + [ 7.8194316, 47.4810966 ], + [ 7.8192185, 47.4809945 ], + [ 7.8191392, 47.4809667 ], + [ 7.8190627, 47.4809401 ], + [ 7.8189902, 47.4809305 ], + [ 7.8188923, 47.4809181 ], + [ 7.8187959, 47.4809084 ], + [ 7.8186686, 47.4809144 ], + [ 7.81843, 47.4810657 ], + [ 7.8181887, 47.481014 ], + [ 7.8181111, 47.4810203 ], + [ 7.8180213, 47.4810159 ], + [ 7.8178087, 47.4809568 ], + [ 7.8178296, 47.480937 ], + [ 7.8177426, 47.4809183 ], + [ 7.8174174, 47.4808059 ], + [ 7.8170558, 47.4805951 ], + [ 7.817527, 47.480141 ], + [ 7.8178627, 47.4798158 ], + [ 7.8181166, 47.4799031 ], + [ 7.8185744, 47.4801283 ], + [ 7.8189929, 47.4803024 ], + [ 7.8190489, 47.4803088 ], + [ 7.8192996, 47.4803338 ], + [ 7.8194236, 47.4803509 ], + [ 7.8198687, 47.4804345 ], + [ 7.8205492, 47.4808627 ], + [ 7.82121, 47.4811805 ], + [ 7.8212546, 47.4813886 ], + [ 7.8212584, 47.4814134 ], + [ 7.8212847, 47.4818665 ], + [ 7.8219328, 47.4816614 ], + [ 7.8230217, 47.4816059 ], + [ 7.8238226, 47.4815847 ], + [ 7.8246417, 47.4815251 ], + [ 7.8254062, 47.481638 ], + [ 7.8261001, 47.4817435 ], + [ 7.8269738, 47.4818757 ], + [ 7.8279145, 47.4819042 ], + [ 7.828752, 47.4819373 ], + [ 7.8297728, 47.4819759 ], + [ 7.8308188, 47.4820957 ], + [ 7.8316907, 47.4822729 ], + [ 7.8325986, 47.4824596 ], + [ 7.8329930999999995, 47.4817484 ], + [ 7.8332372, 47.4813658 ], + [ 7.8335264, 47.4808385 ], + [ 7.8343003, 47.479674 ], + [ 7.834623, 47.4782729 ], + [ 7.8338411, 47.4780038 ], + [ 7.8331018, 47.4777978 ], + [ 7.8322678, 47.4777962 ], + [ 7.8311967, 47.4776984 ], + [ 7.8304718, 47.4776716 ], + [ 7.8301142, 47.4776583 ], + [ 7.8299022, 47.477514 ], + [ 7.8295132, 47.4771769 ], + [ 7.8290578, 47.4768999 ], + [ 7.8287454, 47.476612 ], + [ 7.8284148, 47.4762609 ], + [ 7.8279946, 47.4757203 ], + [ 7.827895, 47.4755106 ], + [ 7.8276405, 47.4750356 ], + [ 7.8272644, 47.4747306 ], + [ 7.8267942, 47.474421 ], + [ 7.8264584, 47.4742173 ], + [ 7.8259955, 47.4737183 ], + [ 7.8261676, 47.4732863 ], + [ 7.8263663999999995, 47.4729378 ], + [ 7.8266568, 47.4724209 ], + [ 7.8269689, 47.4718764 ], + [ 7.8267898, 47.4718141 ], + [ 7.8266033, 47.4717599 ], + [ 7.8263819, 47.4717179 ], + [ 7.8260414, 47.4716976 ], + [ 7.8255780999999995, 47.4717063 ], + [ 7.8252098, 47.4717384 ], + [ 7.8249786, 47.4717892 ], + [ 7.8246983, 47.4718687 ], + [ 7.8245317, 47.4719574 ], + [ 7.824378, 47.4720027 ], + [ 7.8240972, 47.4720926 ], + [ 7.8237391, 47.472305 ], + [ 7.8237187, 47.47231 ], + [ 7.8237068, 47.4723255 ], + [ 7.8236079, 47.4724735 ], + [ 7.8236253, 47.4727091 ], + [ 7.823652, 47.4727294 ], + [ 7.8237707, 47.4728587 ], + [ 7.8238307, 47.4728845 ], + [ 7.8243146, 47.4738513 ], + [ 7.824419, 47.4745077 ], + [ 7.8249504, 47.4750835 ], + [ 7.824997, 47.4751528 ], + [ 7.8253475, 47.4755014 ], + [ 7.8249564, 47.4756631 ], + [ 7.8249978, 47.4757126 ], + [ 7.8252177, 47.4759344 ], + [ 7.8256355, 47.4757614 ], + [ 7.8259234, 47.4759716 ], + [ 7.8265578, 47.4760728 ], + [ 7.8270497, 47.4765635 ], + [ 7.8272281, 47.4766717 ], + [ 7.8274044, 47.4767774 ], + [ 7.8277000999999995, 47.4770442 ], + [ 7.8278088, 47.4772052 ], + [ 7.8279294, 47.477362 ], + [ 7.8280462, 47.4775257 ], + [ 7.8283403, 47.4779197 ], + [ 7.8280921, 47.4782403 ], + [ 7.828094, 47.4782443 ], + [ 7.8279874, 47.4783791 ], + [ 7.8281639, 47.47871 ], + [ 7.8282647999999995, 47.4789299 ], + [ 7.8277964, 47.479349 ], + [ 7.8271872, 47.4795965 ], + [ 7.8266029, 47.479307 ], + [ 7.825757, 47.4790238 ], + [ 7.8254237, 47.479284 ], + [ 7.8250367, 47.4794912 ], + [ 7.8242574, 47.4796587 ], + [ 7.8240058, 47.4797312 ], + [ 7.8235101, 47.4798738 ], + [ 7.8233901, 47.4798968 ], + [ 7.8230006, 47.4799714 ], + [ 7.822409, 47.4795511 ], + [ 7.8218485, 47.4796114 ], + [ 7.821557, 47.4796443 ], + [ 7.8211822, 47.4793648 ], + [ 7.8214637, 47.4791299 ], + [ 7.8216336, 47.4788844 ], + [ 7.821709, 47.478636 ], + [ 7.8217824, 47.4783981 ], + [ 7.8218127, 47.4782904 ], + [ 7.8216939, 47.4780853 ], + [ 7.821644, 47.4779468 ], + [ 7.8216304, 47.4779093 ], + [ 7.8215386, 47.4776656 ], + [ 7.8215872, 47.4775765 ], + [ 7.8216085, 47.4775371 ], + [ 7.8216619, 47.4774572 ], + [ 7.8216536, 47.4774536 ], + [ 7.8209295, 47.4773168 ], + [ 7.8207059999999995, 47.4772174 ], + [ 7.82036, 47.4770262 ], + [ 7.8202052, 47.4770167 ], + [ 7.8197638, 47.4769894 ], + [ 7.8192536, 47.476832 ], + [ 7.8190276999999995, 47.4767434 ], + [ 7.8178358, 47.4762688 ], + [ 7.8178263, 47.4762823 ], + [ 7.8178354, 47.4763205 ], + [ 7.8179005, 47.4765982 ], + [ 7.8179020999999995, 47.4767935 ], + [ 7.8173131, 47.4768995 ], + [ 7.8166929, 47.4769431 ], + [ 7.8162046, 47.4768427 ], + [ 7.8156972, 47.4768022 ], + [ 7.8156391, 47.476781 ], + [ 7.8155995, 47.4767966 ], + [ 7.8157339, 47.4768976 ], + [ 7.8159038, 47.4769981 ], + [ 7.8160261, 47.4771703 ], + [ 7.8160871, 47.4775226 ], + [ 7.8156426, 47.4777978 ], + [ 7.8152106, 47.47792 ], + [ 7.8144545, 47.4779922 ], + [ 7.8144114, 47.477769 ], + [ 7.81446, 47.47767 ], + [ 7.8143603, 47.4775383 ], + [ 7.8141365, 47.4776054 ], + [ 7.8140883, 47.4776654 ], + [ 7.8142173, 47.4778136 ], + [ 7.8142061, 47.4778437 ], + [ 7.8141834, 47.4779026 ], + [ 7.8141715, 47.4779379 ], + [ 7.814141, 47.4779792 ], + [ 7.8141121, 47.4780226 ], + [ 7.8140631, 47.4781668 ], + [ 7.8140642, 47.4783253 ], + [ 7.8140906, 47.4784773 ], + [ 7.8141151, 47.4785994 ], + [ 7.8140364, 47.4786317 ], + [ 7.8145548, 47.4789788 ], + [ 7.8145492999999995, 47.4789929 ], + [ 7.8144621, 47.4792128 ], + [ 7.8144536, 47.479213 ], + [ 7.8142531, 47.47926 ], + [ 7.8140129, 47.4792825 ], + [ 7.8140087, 47.47928 ], + [ 7.8137460999999995, 47.4794382 ], + [ 7.8131032, 47.4794506 ], + [ 7.8124732, 47.4793595 ], + [ 7.8119771, 47.4792504 ], + [ 7.8117276, 47.4795483 ], + [ 7.812011, 47.4797923 ], + [ 7.8120894, 47.4798623 ], + [ 7.8121709, 47.4799345 ], + [ 7.8123073, 47.4799171 ], + [ 7.8124239, 47.4800043 ], + [ 7.8127078, 47.4799538 ], + [ 7.8128568, 47.4800955 ], + [ 7.8132892, 47.4801792 ], + [ 7.8134323, 47.4802806 ], + [ 7.8136477, 47.4804342 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns275", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Sissacher Fluh - Bischofsstein", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Sissacher Fluh - Bischofsstein", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Sissacher Fluh - Bischofsstein", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Sissacher Fluh - Bischofsstein", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.6688887, 47.3936328 ], + [ 8.6688644, 47.3935648 ], + [ 8.6685504, 47.3928966 ], + [ 8.6658271, 47.3937637 ], + [ 8.6657838, 47.3937755 ], + [ 8.6639973, 47.3942435 ], + [ 8.6639292, 47.3942044 ], + [ 8.664077, 47.3941047 ], + [ 8.6642767, 47.3939768 ], + [ 8.6642308, 47.3939438 ], + [ 8.6642431, 47.393936 ], + [ 8.6642319, 47.3939176 ], + [ 8.6638781, 47.3933367 ], + [ 8.6637048, 47.3930521 ], + [ 8.6636898, 47.3930273 ], + [ 8.6634411, 47.3930901 ], + [ 8.6632554, 47.3931369 ], + [ 8.6629092, 47.3932243 ], + [ 8.662297, 47.3933787 ], + [ 8.6622842, 47.3933819 ], + [ 8.6625306, 47.3936875 ], + [ 8.6626015, 47.3937755 ], + [ 8.6628815, 47.3941229 ], + [ 8.6629453, 47.394202 ], + [ 8.6629596, 47.3942144 ], + [ 8.6629764, 47.3942253 ], + [ 8.6630319, 47.3943094 ], + [ 8.6629858, 47.3943183 ], + [ 8.6628376, 47.3943468 ], + [ 8.6618123, 47.3945444 ], + [ 8.6615541, 47.3945898 ], + [ 8.6612854, 47.3946344 ], + [ 8.6610218, 47.394671 ], + [ 8.66082, 47.3946948 ], + [ 8.6606363, 47.3947164 ], + [ 8.660318, 47.3947458 ], + [ 8.6601505, 47.3947573 ], + [ 8.6593641, 47.3948113 ], + [ 8.6583304, 47.3948826 ], + [ 8.6572105, 47.3949599 ], + [ 8.6560908, 47.3950371 ], + [ 8.654944799999999, 47.3951161 ], + [ 8.6548699, 47.3951213 ], + [ 8.6527435, 47.3952679 ], + [ 8.6512823, 47.3953687 ], + [ 8.6512217, 47.3953729 ], + [ 8.650028, 47.3954552 ], + [ 8.650027399999999, 47.3954509 ], + [ 8.6476797, 47.3956128 ], + [ 8.6340064, 47.3985906 ], + [ 8.6366, 47.4040818 ], + [ 8.6383906, 47.4049735 ], + [ 8.6359673, 47.4070268 ], + [ 8.6356514, 47.4074936 ], + [ 8.6358076, 47.4075377 ], + [ 8.6365419, 47.4077449 ], + [ 8.6372758, 47.4079512 ], + [ 8.6382306, 47.40822 ], + [ 8.639032, 47.408446 ], + [ 8.6395207, 47.4081983 ], + [ 8.6397308, 47.4081082 ], + [ 8.6402003, 47.4078564 ], + [ 8.6403591, 47.4077947 ], + [ 8.6405032, 47.4077183 ], + [ 8.6415803, 47.4071677 ], + [ 8.6420907, 47.4069069 ], + [ 8.6428655, 47.4065111 ], + [ 8.6431686, 47.4063562 ], + [ 8.644473, 47.4056896 ], + [ 8.6446091, 47.4056201 ], + [ 8.644745499999999, 47.4055102 ], + [ 8.6448344, 47.4054014 ], + [ 8.6449145, 47.4052882 ], + [ 8.6449329, 47.4052826 ], + [ 8.64511, 47.4053212 ], + [ 8.645733, 47.4048083 ], + [ 8.6457482, 47.4047749 ], + [ 8.6457223, 47.4047454 ], + [ 8.6453761, 47.404553 ], + [ 8.6454026, 47.4044951 ], + [ 8.645443, 47.4044074 ], + [ 8.6458529, 47.4035341 ], + [ 8.6462532, 47.4026771 ], + [ 8.646453900000001, 47.4022474 ], + [ 8.6466531, 47.4018195 ], + [ 8.6468528, 47.4013905 ], + [ 8.6470418, 47.4009846 ], + [ 8.6472513, 47.4005321 ], + [ 8.6475483, 47.3998906 ], + [ 8.647612, 47.3997681 ], + [ 8.6477362, 47.3996663 ], + [ 8.6477871, 47.3996204 ], + [ 8.6479351, 47.3995694 ], + [ 8.6483179, 47.3994373 ], + [ 8.6488891, 47.3993098 ], + [ 8.6493238, 47.3994074 ], + [ 8.6496338, 47.399477 ], + [ 8.6510508, 47.399795 ], + [ 8.6511093, 47.3998028 ], + [ 8.6510132, 47.4001194 ], + [ 8.6510392, 47.4001181 ], + [ 8.6529028, 47.4000274 ], + [ 8.6535213, 47.3996344 ], + [ 8.6537556, 47.3995136 ], + [ 8.6538825, 47.3994388 ], + [ 8.6540265, 47.399354 ], + [ 8.6545997, 47.3990618 ], + [ 8.6551318, 47.3988159 ], + [ 8.6558201, 47.3985421 ], + [ 8.6560266, 47.3984637 ], + [ 8.6565259, 47.3982939 ], + [ 8.6570281, 47.3981343 ], + [ 8.6575418, 47.3979892 ], + [ 8.6582816, 47.397807 ], + [ 8.6590334, 47.3976338 ], + [ 8.6597921, 47.3974641 ], + [ 8.6613042, 47.3971431 ], + [ 8.6620632, 47.3969887 ], + [ 8.6629846, 47.3968233 ], + [ 8.6634461, 47.3967496 ], + [ 8.6639185, 47.3966847 ], + [ 8.6641703, 47.3966454 ], + [ 8.6642311, 47.3966368 ], + [ 8.6643133, 47.396625 ], + [ 8.6657703, 47.3964768 ], + [ 8.6657968, 47.3964778 ], + [ 8.6658221, 47.3964833 ], + [ 8.6658446, 47.396493 ], + [ 8.6658627, 47.3965062 ], + [ 8.6660985, 47.3964843 ], + [ 8.6673396, 47.3964055 ], + [ 8.6682012, 47.3963691 ], + [ 8.668152899999999, 47.3963352 ], + [ 8.6681501, 47.3963036 ], + [ 8.6680519, 47.396299 ], + [ 8.6679595, 47.3962761 ], + [ 8.6679178, 47.3962582 ], + [ 8.6678473, 47.3962117 ], + [ 8.667557, 47.3959701 ], + [ 8.6669349, 47.395437 ], + [ 8.666877, 47.3953839 ], + [ 8.6684591, 47.3949461 ], + [ 8.6698459, 47.3947219 ], + [ 8.6696397, 47.3945613 ], + [ 8.6694721, 47.3944123 ], + [ 8.669357699999999, 47.394281 ], + [ 8.6693342, 47.3942494 ], + [ 8.6688887, 47.3936328 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSMD002", + "country" : "CHE", + "name" : [ + { + "text" : "LSMD Dübendorf (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSMD Dübendorf (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSMD Dübendorf (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSMD Dübendorf (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Special Flight Office (SFO)", + "lang" : "de-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "fr-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "it-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "en-GB" + } + ], + "siteURL" : "https://skyguide.ch/services/special-flights", + "email" : "specialflight@skyguide.ch", + "phone" : "0041439316236", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.4876498, 47.2251285 ], + [ 9.4876389, 47.2249874 ], + [ 9.4876173, 47.2248469 ], + [ 9.4875848, 47.2247074 ], + [ 9.4875417, 47.2245692 ], + [ 9.4874881, 47.2244327 ], + [ 9.487424, 47.2242984 ], + [ 9.4873497, 47.2241665 ], + [ 9.4872654, 47.2240374 ], + [ 9.4871713, 47.2239116 ], + [ 9.4870676, 47.2237892 ], + [ 9.4869547, 47.2236707 ], + [ 9.4868328, 47.2235564 ], + [ 9.4867023, 47.2234466 ], + [ 9.4865636, 47.2233416 ], + [ 9.4864169, 47.2232417 ], + [ 9.4862628, 47.2231472 ], + [ 9.4861017, 47.2230583 ], + [ 9.485934, 47.2229752 ], + [ 9.48576, 47.2228983 ], + [ 9.4855805, 47.2228276 ], + [ 9.4853957, 47.2227635 ], + [ 9.4852063, 47.222706 ], + [ 9.4850127, 47.2226554 ], + [ 9.4848155, 47.2226117 ], + [ 9.4846152, 47.2225751 ], + [ 9.4844124, 47.2225457 ], + [ 9.4842076, 47.2225236 ], + [ 9.4840013, 47.2225088 ], + [ 9.4837943, 47.2225014 ], + [ 9.4835869, 47.2225014 ], + [ 9.4833798, 47.2225088 ], + [ 9.4831736, 47.2225235 ], + [ 9.4829688, 47.2225456 ], + [ 9.4827659, 47.222575 ], + [ 9.4825656, 47.2226115 ], + [ 9.4823684, 47.2226552 ], + [ 9.4821748, 47.2227058 ], + [ 9.4819853, 47.2227632 ], + [ 9.4818006, 47.2228273 ], + [ 9.481621, 47.222898 ], + [ 9.481447, 47.2229749 ], + [ 9.4812792, 47.2230579 ], + [ 9.4811181, 47.2231468 ], + [ 9.4809639, 47.2232413 ], + [ 9.4808173, 47.2233412 ], + [ 9.4806785, 47.2234461 ], + [ 9.480548, 47.2235559 ], + [ 9.4804261, 47.2236702 ], + [ 9.4803131, 47.2237887 ], + [ 9.4802094, 47.223911 ], + [ 9.4801152, 47.2240369 ], + [ 9.4800308, 47.2241659 ], + [ 9.4799565, 47.2242978 ], + [ 9.4798923, 47.2244321 ], + [ 9.4798386, 47.2245686 ], + [ 9.4797955, 47.2247068 ], + [ 9.479763, 47.2248463 ], + [ 9.4797413, 47.2249868 ], + [ 9.4797304, 47.2251279 ], + [ 9.4797304, 47.2252691 ], + [ 9.4797412, 47.2254102 ], + [ 9.4797628, 47.2255507 ], + [ 9.4797952, 47.2256903 ], + [ 9.4798383, 47.2258284 ], + [ 9.4798919, 47.2259649 ], + [ 9.479956, 47.2260993 ], + [ 9.4800303, 47.2262312 ], + [ 9.4801146, 47.2263602 ], + [ 9.4802087, 47.2264861 ], + [ 9.4803124, 47.2266085 ], + [ 9.4804253, 47.226727 ], + [ 9.4805472, 47.2268413 ], + [ 9.4806777, 47.2269511 ], + [ 9.4808164, 47.2270561 ], + [ 9.480963, 47.227156 ], + [ 9.4811171, 47.2272505 ], + [ 9.4812782, 47.2273394 ], + [ 9.481446, 47.2274225 ], + [ 9.4816199, 47.2274995 ], + [ 9.4817995, 47.2275701 ], + [ 9.4819843, 47.2276343 ], + [ 9.4821737, 47.2276917 ], + [ 9.4823673, 47.2277424 ], + [ 9.4825645, 47.2277861 ], + [ 9.4827649, 47.2278226 ], + [ 9.4829677, 47.227852 ], + [ 9.4831725, 47.2278741 ], + [ 9.4833788, 47.2278889 ], + [ 9.4835859, 47.2278963 ], + [ 9.4837933, 47.2278964 ], + [ 9.4840004, 47.227889 ], + [ 9.4842066, 47.2278742 ], + [ 9.4844115, 47.2278521 ], + [ 9.4846143, 47.2278228 ], + [ 9.4848147, 47.2277862 ], + [ 9.4850119, 47.2277426 ], + [ 9.4852055, 47.227692 ], + [ 9.485395, 47.2276345 ], + [ 9.4855798, 47.2275704 ], + [ 9.4857594, 47.2274998 ], + [ 9.4859333, 47.2274229 ], + [ 9.486101099999999, 47.2273398 ], + [ 9.4862623, 47.2272509 ], + [ 9.4864164, 47.2271564 ], + [ 9.4865631, 47.2270565 ], + [ 9.4867019, 47.2269515 ], + [ 9.4868324, 47.2268418 ], + [ 9.4869543, 47.2267275 ], + [ 9.4870672, 47.226609 ], + [ 9.487171, 47.2264867 ], + [ 9.4872651, 47.2263608 ], + [ 9.4873495, 47.2262317 ], + [ 9.4874238, 47.2260999 ], + [ 9.4874879, 47.2259655 ], + [ 9.4875416, 47.225829 ], + [ 9.4875847, 47.2256909 ], + [ 9.4876172, 47.2255513 ], + [ 9.4876389, 47.2254108 ], + [ 9.4876498, 47.2252698 ], + [ 9.4876498, 47.2251285 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SAX0001", + "country" : "CHE", + "name" : [ + { + "text" : "Kantonale Strafanstalt Saxerriet", + "lang" : "de-CH" + }, + { + "text" : "Kantonale Strafanstalt Saxerriet", + "lang" : "fr-CH" + }, + { + "text" : "Kantonale Strafanstalt Saxerriet", + "lang" : "it-CH" + }, + { + "text" : "Kantonale Strafanstalt Saxerriet", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kantonale Strafanstalt Saxerriet", + "lang" : "de-CH" + }, + { + "text" : "Prison cantonale de Saxerriet", + "lang" : "fr-CH" + }, + { + "text" : "Carcere cantonale Saxerriet", + "lang" : "it-CH" + }, + { + "text" : "Cantonal prison Saxerriet", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Direktion", + "lang" : "de-CH" + }, + { + "text" : "Direction", + "lang" : "fr-CH" + }, + { + "text" : "Direzione", + "lang" : "it-CH" + }, + { + "text" : "Directorate", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Frau Barbara Looser", + "lang" : "de-CH" + }, + { + "text" : "Frau Barbara Looser", + "lang" : "fr-CH" + }, + { + "text" : "Frau Barbara Looser", + "lang" : "it-CH" + }, + { + "text" : "Frau Barbara Looser", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.saxerriet.sg.ch", + "email" : "zentrale@saxerriet.ch", + "phone" : "0041582282900", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.1364428, 46.1418122 ], + [ 6.1350744, 46.1418793 ], + [ 6.1337213, 46.1423479 ], + [ 6.1336222, 46.1424012 ], + [ 6.1327881, 46.1430171 ], + [ 6.1322692, 46.1437823 ], + [ 6.1321165, 46.1446215 ], + [ 6.1323452, 46.1454523 ], + [ 6.1329327, 46.1461931 ], + [ 6.1330556, 46.146303 ], + [ 6.1342009, 46.1469919 ], + [ 6.1356382, 46.1473238 ], + [ 6.136322, 46.1472895 ], + [ 6.1367469, 46.1473163 ], + [ 6.1370354, 46.1472538 ], + [ 6.1371489, 46.1472482 ], + [ 6.1372922, 46.1471983 ], + [ 6.1381915, 46.1470036 ], + [ 6.1393544, 46.1463309 ], + [ 6.1394024, 46.1462897 ], + [ 6.1400097, 46.1455584 ], + [ 6.1402622000000004, 46.1447324 ], + [ 6.1402583, 46.144707 ], + [ 6.1401593, 46.1446832 ], + [ 6.1398724, 46.1445799 ], + [ 6.1397808, 46.1445242 ], + [ 6.1395677, 46.144486 ], + [ 6.1393927999999995, 46.1444505 ], + [ 6.1393217, 46.1444252 ], + [ 6.1386748, 46.1440369 ], + [ 6.1385974, 46.1439983 ], + [ 6.1383981, 46.1438622 ], + [ 6.1382544, 46.1437881 ], + [ 6.1381909, 46.1437591 ], + [ 6.1381221, 46.1437191 ], + [ 6.1380458, 46.1436605 ], + [ 6.1379547, 46.1435994 ], + [ 6.1379122, 46.1435789 ], + [ 6.1377906, 46.1435441 ], + [ 6.1377495, 46.1435217 ], + [ 6.1377122, 46.1434771 ], + [ 6.1376662, 46.1434396 ], + [ 6.1375723, 46.1433907 ], + [ 6.1374937, 46.1433574 ], + [ 6.1374532, 46.1433353 ], + [ 6.1372489, 46.1432031 ], + [ 6.1371688, 46.1431334 ], + [ 6.1370976, 46.1430843 ], + [ 6.1368774, 46.1429693 ], + [ 6.1368006, 46.1428925 ], + [ 6.1367507, 46.1427708 ], + [ 6.1367008, 46.1427315 ], + [ 6.1366019, 46.1425618 ], + [ 6.1365656, 46.1424397 ], + [ 6.136493, 46.1423928 ], + [ 6.1364445, 46.1423639 ], + [ 6.1364326, 46.1423598 ], + [ 6.1363975, 46.142319 ], + [ 6.1363881, 46.1423052 ], + [ 6.1363791, 46.14227 ], + [ 6.1364115, 46.141968 ], + [ 6.1364428, 46.1418122 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-58", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.0126585, 46.3334784 ], + [ 8.0126517, 46.3333372 ], + [ 8.0126342, 46.3331964 ], + [ 8.0126061, 46.3330565 ], + [ 8.0125675, 46.3329177 ], + [ 8.0125184, 46.3327806 ], + [ 8.012459, 46.3326454 ], + [ 8.0123895, 46.3325126 ], + [ 8.0123101, 46.3323825 ], + [ 8.012221, 46.3322554 ], + [ 8.0121223, 46.3321317 ], + [ 8.0120145, 46.3320118 ], + [ 8.0118977, 46.3318959 ], + [ 8.0117724, 46.3317845 ], + [ 8.0116388, 46.3316777 ], + [ 8.0114973, 46.331576 ], + [ 8.0113484, 46.3314795 ], + [ 8.0111923, 46.3313885 ], + [ 8.0110296, 46.3313033 ], + [ 8.0108607, 46.3312241 ], + [ 8.010686, 46.3311512 ], + [ 8.010506, 46.3310847 ], + [ 8.0103213, 46.3310248 ], + [ 8.0101323, 46.3309716 ], + [ 8.0099395, 46.3309255 ], + [ 8.0097436, 46.3308863 ], + [ 8.0095449, 46.3308543 ], + [ 8.0093441, 46.3308296 ], + [ 8.0091417, 46.3308122 ], + [ 8.0089382, 46.3308021 ], + [ 8.0087343, 46.3307994 ], + [ 8.0085305, 46.3308042 ], + [ 8.0083272, 46.3308163 ], + [ 8.0081252, 46.3308357 ], + [ 8.007925, 46.3308625 ], + [ 8.007727, 46.3308965 ], + [ 8.0075318, 46.3309376 ], + [ 8.0073401, 46.3309857 ], + [ 8.0071522, 46.3310407 ], + [ 8.0069688, 46.3311024 ], + [ 8.0067902, 46.3311708 ], + [ 8.0066171, 46.3312455 ], + [ 8.0064498, 46.3313263 ], + [ 8.0062889, 46.3314131 ], + [ 8.0061348, 46.3315057 ], + [ 8.0059879, 46.3316037 ], + [ 8.0058485, 46.3317069 ], + [ 8.0057172, 46.3318149 ], + [ 8.0055942, 46.3319276 ], + [ 8.0054799, 46.3320447 ], + [ 8.0053746, 46.3321657 ], + [ 8.0052785, 46.3322903 ], + [ 8.0051921, 46.3324183 ], + [ 8.0051154, 46.3325492 ], + [ 8.0050487, 46.3326827 ], + [ 8.0049922, 46.3328185 ], + [ 8.004946, 46.3329561 ], + [ 8.0049102, 46.3330952 ], + [ 8.0048851, 46.3332354 ], + [ 8.004870499999999, 46.3333763 ], + [ 8.0048667, 46.3335176 ], + [ 8.0048735, 46.3336588 ], + [ 8.0048909, 46.3337996 ], + [ 8.004919, 46.3339395 ], + [ 8.0049577, 46.3340782 ], + [ 8.0050067, 46.3342154 ], + [ 8.005066, 46.3343505 ], + [ 8.0051355, 46.3344834 ], + [ 8.0052149, 46.3346135 ], + [ 8.0053041, 46.3347406 ], + [ 8.0054027, 46.3348643 ], + [ 8.0055105, 46.3349842 ], + [ 8.0056273, 46.3351001 ], + [ 8.0057526, 46.3352115 ], + [ 8.0058862, 46.3353183 ], + [ 8.0060277, 46.3354201 ], + [ 8.0061766, 46.3355166 ], + [ 8.0063327, 46.3356076 ], + [ 8.0064954, 46.3356928 ], + [ 8.0066644, 46.335772 ], + [ 8.006839, 46.3358449 ], + [ 8.007019, 46.3359114 ], + [ 8.0072038, 46.3359713 ], + [ 8.0073928, 46.3360244 ], + [ 8.0075855, 46.3360706 ], + [ 8.0077815, 46.3361098 ], + [ 8.0079802, 46.3361418 ], + [ 8.0081811, 46.3361665 ], + [ 8.0083835, 46.3361839 ], + [ 8.0085869, 46.336194 ], + [ 8.0087909, 46.3361967 ], + [ 8.0089948, 46.3361919 ], + [ 8.009198, 46.3361798 ], + [ 8.0094, 46.3361604 ], + [ 8.0096003, 46.3361336 ], + [ 8.0097983, 46.3360996 ], + [ 8.0099935, 46.3360585 ], + [ 8.0101852, 46.3360104 ], + [ 8.0103731, 46.3359554 ], + [ 8.0105566, 46.3358936 ], + [ 8.0107351, 46.3358253 ], + [ 8.0109083, 46.3357506 ], + [ 8.0110755, 46.3356697 ], + [ 8.0112365, 46.3355829 ], + [ 8.0113906, 46.3354904 ], + [ 8.0115375, 46.3353924 ], + [ 8.0116768, 46.3352892 ], + [ 8.0118082, 46.3351811 ], + [ 8.0119312, 46.3350684 ], + [ 8.0120455, 46.3349513 ], + [ 8.0121508, 46.3348303 ], + [ 8.0122468, 46.3347057 ], + [ 8.0123333, 46.3345777 ], + [ 8.0124099, 46.3344468 ], + [ 8.0124766, 46.3343133 ], + [ 8.0125331, 46.3341775 ], + [ 8.0125793, 46.3340399 ], + [ 8.012615, 46.3339008 ], + [ 8.0126402, 46.3337606 ], + [ 8.0126547, 46.3336197 ], + [ 8.0126585, 46.3334784 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0017", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Bitsch", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Bitsch", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Bitsch", + "lang" : "it-CH" + }, + { + "text" : "Substation Bitsch", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.4822931, 47.5170679 ], + [ 8.4824978, 47.517228 ], + [ 8.4825149, 47.5172406 ], + [ 8.482826, 47.5174739 ], + [ 8.4831539, 47.5176983 ], + [ 8.483446, 47.5178818 ], + [ 8.4837503, 47.5180551 ], + [ 8.484066, 47.5182191 ], + [ 8.4843938, 47.5183727 ], + [ 8.4847842, 47.5185404 ], + [ 8.4851831, 47.5186977 ], + [ 8.4861452, 47.51906 ], + [ 8.4870786, 47.5194105 ], + [ 8.4871135, 47.5193886 ], + [ 8.4873668, 47.5192014 ], + [ 8.488498, 47.5183657 ], + [ 8.4885621, 47.5183184 ], + [ 8.4886338, 47.5182599 ], + [ 8.4886673, 47.5182294 ], + [ 8.4886992, 47.5181982 ], + [ 8.4887295, 47.5181662 ], + [ 8.4887581, 47.5181335 ], + [ 8.488785, 47.5181001 ], + [ 8.4888101, 47.5180662 ], + [ 8.4890729, 47.5176627 ], + [ 8.489122, 47.5176017 ], + [ 8.4891493, 47.5175722 ], + [ 8.4891783, 47.5175436 ], + [ 8.4892091, 47.5175158 ], + [ 8.4892264, 47.5175004 ], + [ 8.4892344, 47.5174924 ], + [ 8.489242, 47.5174842 ], + [ 8.4892492, 47.5174758 ], + [ 8.4892559, 47.5174673 ], + [ 8.4892621, 47.5174586 ], + [ 8.4892679, 47.5174497 ], + [ 8.4892732, 47.5174408 ], + [ 8.4892781, 47.5174317 ], + [ 8.4892824, 47.5174224 ], + [ 8.4892863, 47.5174131 ], + [ 8.4892896, 47.5174037 ], + [ 8.4892925, 47.5173942 ], + [ 8.4892949, 47.5173847 ], + [ 8.4892967, 47.5173751 ], + [ 8.4892981, 47.5173655 ], + [ 8.4892989, 47.5173558 ], + [ 8.4892993, 47.5173461 ], + [ 8.4892991, 47.5173364 ], + [ 8.4892984, 47.5173268 ], + [ 8.4892972, 47.5173171 ], + [ 8.4892954, 47.5173075 ], + [ 8.4892932, 47.517298 ], + [ 8.4892905, 47.5172885 ], + [ 8.4892872, 47.517279 ], + [ 8.489283499999999, 47.5172697 ], + [ 8.4892793, 47.5172605 ], + [ 8.4892746, 47.5172513 ], + [ 8.4892694, 47.5172423 ], + [ 8.4892637, 47.5172334 ], + [ 8.4889145, 47.5166694 ], + [ 8.4888082, 47.5164818 ], + [ 8.4887634, 47.5163859 ], + [ 8.4886677, 47.51618 ], + [ 8.4885593, 47.5159765 ], + [ 8.4885325, 47.5159331 ], + [ 8.4885173, 47.5159119 ], + [ 8.4885009, 47.5158912 ], + [ 8.4884835, 47.5158708 ], + [ 8.4884649, 47.5158509 ], + [ 8.4884452, 47.5158316 ], + [ 8.4884245, 47.5158127 ], + [ 8.4884027, 47.5157943 ], + [ 8.48838, 47.5157765 ], + [ 8.4883563, 47.5157593 ], + [ 8.4882876, 47.5157114 ], + [ 8.4882514, 47.5156888 ], + [ 8.4882139, 47.5156671 ], + [ 8.4881753, 47.5156463 ], + [ 8.4881355, 47.5156266 ], + [ 8.488053, 47.5155902 ], + [ 8.4880103, 47.5155736 ], + [ 8.4879668, 47.5155581 ], + [ 8.4879224, 47.5155437 ], + [ 8.4878772, 47.5155304 ], + [ 8.4878769, 47.5155303 ], + [ 8.4878999, 47.5154979 ], + [ 8.4876337, 47.5151838 ], + [ 8.4884497, 47.5149383 ], + [ 8.488761, 47.5149054 ], + [ 8.4888193, 47.5147764 ], + [ 8.4889555, 47.5148149 ], + [ 8.4890018, 47.5148027 ], + [ 8.4891927, 47.5147656 ], + [ 8.4892577, 47.5145771 ], + [ 8.4894182, 47.5144261 ], + [ 8.4894374, 47.5142203 ], + [ 8.4894506, 47.5141857 ], + [ 8.4899385, 47.5129163 ], + [ 8.4900429, 47.5128737 ], + [ 8.4905722, 47.5128892 ], + [ 8.4905503, 47.5123029 ], + [ 8.4905373, 47.5122029 ], + [ 8.490492, 47.5120045 ], + [ 8.4903947, 47.5117122 ], + [ 8.4902021, 47.5112728 ], + [ 8.489947, 47.5107476 ], + [ 8.4899009, 47.5106712 ], + [ 8.4898172, 47.5105611 ], + [ 8.4893673, 47.5100155 ], + [ 8.489194, 47.5097918 ], + [ 8.4890765, 47.5096444 ], + [ 8.4890615, 47.5095135 ], + [ 8.4891983, 47.508958 ], + [ 8.4893062, 47.5086525 ], + [ 8.4894498, 47.5083528 ], + [ 8.4897478, 47.5078698 ], + [ 8.4898153, 47.5077502 ], + [ 8.489844, 47.5076891 ], + [ 8.4898909, 47.5075662 ], + [ 8.4899093, 47.507504 ], + [ 8.4899892, 47.5072258 ], + [ 8.4900343, 47.5070957 ], + [ 8.4900845, 47.5069731 ], + [ 8.4901572, 47.5068073 ], + [ 8.490207999999999, 47.506722 ], + [ 8.4922289, 47.5015018 ], + [ 8.4922769, 47.5013605 ], + [ 8.4923515, 47.501203 ], + [ 8.4924107, 47.5011228 ], + [ 8.492132699999999, 47.5009831 ], + [ 8.4918314, 47.5008401 ], + [ 8.4912422, 47.5005718 ], + [ 8.4911216, 47.5005304 ], + [ 8.49105, 47.5003235 ], + [ 8.4916301, 47.4998288 ], + [ 8.4920269, 47.499583200000004 ], + [ 8.4922064, 47.4995075 ], + [ 8.4923815, 47.4994338 ], + [ 8.4920276, 47.4993626 ], + [ 8.4918602, 47.4994594 ], + [ 8.4915249, 47.4992935 ], + [ 8.4908562, 47.4991688 ], + [ 8.4909099, 47.4991242 ], + [ 8.4908435, 47.499108 ], + [ 8.4906556, 47.4990623 ], + [ 8.4905552, 47.4990428 ], + [ 8.4903563, 47.499001 ], + [ 8.4894343, 47.4988523 ], + [ 8.4890188, 47.49885 ], + [ 8.4887283, 47.4987584 ], + [ 8.4884719, 47.49863 ], + [ 8.4880135, 47.498317 ], + [ 8.4875836, 47.4980237 ], + [ 8.4870498, 47.4977294 ], + [ 8.4867682, 47.4975834 ], + [ 8.4862343, 47.4973066 ], + [ 8.4851637, 47.496751 ], + [ 8.4848726, 47.4965856 ], + [ 8.4845894, 47.4964145 ], + [ 8.484182, 47.4961326 ], + [ 8.4840379, 47.4960145 ], + [ 8.4835148, 47.4957624 ], + [ 8.4829659, 47.4955069 ], + [ 8.482427, 47.4952434 ], + [ 8.482187, 47.4951365 ], + [ 8.4820353, 47.4950802 ], + [ 8.4805405, 47.4946182 ], + [ 8.4805136, 47.4947414 ], + [ 8.480469, 47.4947373 ], + [ 8.4802664, 47.4947159 ], + [ 8.4799253, 47.494622 ], + [ 8.4799384, 47.4945872 ], + [ 8.4797649, 47.494546 ], + [ 8.4796534, 47.4945114 ], + [ 8.4795904, 47.4944887 ], + [ 8.4795288, 47.4944642 ], + [ 8.4794107, 47.4944099 ], + [ 8.4789878, 47.4941928 ], + [ 8.4777644, 47.4935234 ], + [ 8.4776692, 47.4935404 ], + [ 8.4774459, 47.4936138 ], + [ 8.4769568, 47.4937419 ], + [ 8.4767962, 47.4937862 ], + [ 8.4765856, 47.4937929 ], + [ 8.4762197, 47.4937581 ], + [ 8.4756767, 47.493644 ], + [ 8.4753104, 47.4935854 ], + [ 8.4743619, 47.4935653 ], + [ 8.4738632, 47.4935602 ], + [ 8.4733289, 47.4935317 ], + [ 8.473213, 47.4937088 ], + [ 8.4731523, 47.4938379 ], + [ 8.4730859, 47.4940336 ], + [ 8.4730296, 47.4942103 ], + [ 8.4730006, 47.4943666 ], + [ 8.47302, 47.4945501 ], + [ 8.4730493, 47.4946709 ], + [ 8.4730689, 47.4947307 ], + [ 8.4731178, 47.4948482 ], + [ 8.4731471, 47.4949059 ], + [ 8.4732491, 47.4950759 ], + [ 8.4733732, 47.4952393 ], + [ 8.4738816, 47.4958696 ], + [ 8.4738658, 47.4958755 ], + [ 8.4747576, 47.496991 ], + [ 8.4752959, 47.4976624 ], + [ 8.4753693, 47.4977548 ], + [ 8.4754506, 47.4978548 ], + [ 8.4756529, 47.4980872 ], + [ 8.4758664, 47.498315 ], + [ 8.475941, 47.4983918 ], + [ 8.4760663, 47.4985115 ], + [ 8.4761149, 47.4985559 ], + [ 8.4762298, 47.4986528 ], + [ 8.4764064, 47.4987872 ], + [ 8.4765944, 47.4989142 ], + [ 8.4767941, 47.4990328 ], + [ 8.4770066, 47.4991401 ], + [ 8.4772326, 47.4992344 ], + [ 8.477470199999999, 47.499315 ], + [ 8.4777186, 47.4993786 ], + [ 8.4779748, 47.4994251 ], + [ 8.4781216, 47.499441 ], + [ 8.4780629, 47.4996525 ], + [ 8.478048, 47.4996512 ], + [ 8.4780404, 47.4996508 ], + [ 8.4780329, 47.4996507 ], + [ 8.4780253, 47.4996507 ], + [ 8.4780178, 47.499651 ], + [ 8.4780103, 47.4996514 ], + [ 8.4780028, 47.4996519 ], + [ 8.4779953, 47.4996527 ], + [ 8.4779879, 47.4996537 ], + [ 8.4779806, 47.4996548 ], + [ 8.4779733, 47.4996561 ], + [ 8.4779661, 47.4996577 ], + [ 8.4779519, 47.4996612 ], + [ 8.477945, 47.4996632 ], + [ 8.4779382, 47.4996655 ], + [ 8.4779315, 47.4996678 ], + [ 8.4779249, 47.4996704 ], + [ 8.4779185, 47.4996731 ], + [ 8.4779122, 47.4996759 ], + [ 8.4779061, 47.499679 ], + [ 8.4779002, 47.4996821 ], + [ 8.4778944, 47.4996854 ], + [ 8.4778888, 47.4996889 ], + [ 8.4778835, 47.4996925 ], + [ 8.4774451, 47.4999983 ], + [ 8.4772482, 47.5001232 ], + [ 8.4773292, 47.5002519 ], + [ 8.4775418, 47.5006142 ], + [ 8.4777191, 47.500985299999996 ], + [ 8.4778519, 47.5013645 ], + [ 8.4778807, 47.5014647 ], + [ 8.4782235, 47.5026576 ], + [ 8.4783281, 47.5030214 ], + [ 8.4784535, 47.5034585 ], + [ 8.4786095, 47.504002 ], + [ 8.4786198, 47.5040374 ], + [ 8.4786832, 47.5042615 ], + [ 8.4788325, 47.5047803 ], + [ 8.4789814, 47.5052994 ], + [ 8.4790144, 47.5054145 ], + [ 8.4790403, 47.5055055 ], + [ 8.4790788, 47.5056387 ], + [ 8.4791033, 47.505724 ], + [ 8.4792187, 47.5061278 ], + [ 8.4792904, 47.5063772 ], + [ 8.4793221, 47.5064875 ], + [ 8.4794163, 47.5068415 ], + [ 8.4794745, 47.5071993 ], + [ 8.4794914, 47.5075587 ], + [ 8.4794641, 47.5079179 ], + [ 8.4793781, 47.5083339 ], + [ 8.479242, 47.5087443 ], + [ 8.4791667, 47.5089151 ], + [ 8.4791807, 47.5089411 ], + [ 8.4792122, 47.5089586 ], + [ 8.4792608, 47.5089716 ], + [ 8.4791915, 47.5091017 ], + [ 8.4791159, 47.5092298 ], + [ 8.4791402, 47.509237 ], + [ 8.4790328, 47.5093764 ], + [ 8.4787833, 47.5097266 ], + [ 8.4785642, 47.5100861 ], + [ 8.4784011, 47.5104018 ], + [ 8.4783209, 47.5105893 ], + [ 8.4783023, 47.5106327 ], + [ 8.4781876, 47.5108412 ], + [ 8.4783272, 47.5108842 ], + [ 8.4784666, 47.5109272 ], + [ 8.4783456, 47.5116963 ], + [ 8.4783679, 47.5123316 ], + [ 8.4786002, 47.5132205 ], + [ 8.4791117, 47.514254 ], + [ 8.4795755, 47.514801 ], + [ 8.4796408, 47.5149139 ], + [ 8.4798711, 47.5151336 ], + [ 8.4798924, 47.515153 ], + [ 8.4801135, 47.5153476 ], + [ 8.480423, 47.515601 ], + [ 8.4807396, 47.5158503 ], + [ 8.4811621, 47.5161872 ], + [ 8.4813316, 47.5163145 ], + [ 8.4819335, 47.5167867 ], + [ 8.4822931, 47.5170679 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "WZV0023", + "country" : "CHE", + "name" : [ + { + "text" : "Wasser- und Zugvogelreservat Neeracher Ried", + "lang" : "de-CH" + }, + { + "text" : "Réserve d'oiseaux d'eau et de migrateurs Neeracher Ried", + "lang" : "fr-CH" + }, + { + "text" : "Riserva di uccelli acquatici e migratori Neeracher Ried", + "lang" : "it-CH" + }, + { + "text" : "Water Bird and Migratory Bird Reserves Neeracher Ried", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8509253, 47.4763614 ], + [ 7.8511236, 47.4764254 ], + [ 7.8511776, 47.4764274 ], + [ 7.8511895, 47.4764127 ], + [ 7.8511473, 47.4763513 ], + [ 7.8511233, 47.4763114 ], + [ 7.8511323, 47.4762256 ], + [ 7.8512179, 47.476075 ], + [ 7.8512837, 47.4759079 ], + [ 7.8513197, 47.4757784 ], + [ 7.8513570999999995, 47.4756205 ], + [ 7.8514002, 47.475447 ], + [ 7.8512024, 47.4754108 ], + [ 7.8511188, 47.4756991 ], + [ 7.8510235999999995, 47.476029 ], + [ 7.8509253, 47.4763614 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns167", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Warteckweiher", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Warteckweiher", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Warteckweiher", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Warteckweiher", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.575531, 47.4123603 ], + [ 8.5755225, 47.4122192 ], + [ 8.5755032, 47.4120785 ], + [ 8.575473, 47.4119387 ], + [ 8.5754321, 47.4118002 ], + [ 8.5753806, 47.4116634 ], + [ 8.5753186, 47.4115285 ], + [ 8.5752463, 47.411396 ], + [ 8.5751639, 47.4112663 ], + [ 8.5750716, 47.4111397 ], + [ 8.5749697, 47.411016599999996 ], + [ 8.5748584, 47.4108972 ], + [ 8.5747381, 47.4107819 ], + [ 8.574609, 47.4106711 ], + [ 8.5744716, 47.4105651 ], + [ 8.5743262, 47.410464 ], + [ 8.5741732, 47.4103683 ], + [ 8.574013, 47.4102781 ], + [ 8.5738461, 47.4101937 ], + [ 8.5736729, 47.4101154 ], + [ 8.5734939, 47.4100433 ], + [ 8.5733096, 47.4099777 ], + [ 8.5731205, 47.4099188 ], + [ 8.5729271, 47.4098666 ], + [ 8.57273, 47.4098214 ], + [ 8.5725296, 47.4097832 ], + [ 8.5723266, 47.4097522 ], + [ 8.5721214, 47.4097285 ], + [ 8.5719148, 47.4097121 ], + [ 8.5717071, 47.409703 ], + [ 8.571499, 47.4097014 ], + [ 8.5712911, 47.4097071 ], + [ 8.5710839, 47.4097202 ], + [ 8.570878, 47.4097407 ], + [ 8.5706739, 47.4097684 ], + [ 8.5704723, 47.4098034 ], + [ 8.5702737, 47.4098454 ], + [ 8.5700785, 47.4098945 ], + [ 8.5698874, 47.4099505 ], + [ 8.5697009, 47.4100131 ], + [ 8.5695195, 47.4100823 ], + [ 8.5693436, 47.4101578 ], + [ 8.5691739, 47.4102395 ], + [ 8.5690106, 47.4103271 ], + [ 8.5688543, 47.4104204 ], + [ 8.5687055, 47.4105191 ], + [ 8.5685644, 47.410623 ], + [ 8.568431499999999, 47.4107317 ], + [ 8.5683073, 47.410845 ], + [ 8.5681919, 47.4109625 ], + [ 8.5680857, 47.411084 ], + [ 8.567989, 47.4112091 ], + [ 8.5679022, 47.4113375 ], + [ 8.567825299999999, 47.4114688 ], + [ 8.5677587, 47.4116026 ], + [ 8.5677024, 47.4117386 ], + [ 8.5676568, 47.4118764 ], + [ 8.5676218, 47.4120157 ], + [ 8.5675976, 47.412156 ], + [ 8.5675843, 47.412297 ], + [ 8.5675818, 47.4124382 ], + [ 8.567590299999999, 47.4125794 ], + [ 8.5676096, 47.41272 ], + [ 8.5676397, 47.4128598 ], + [ 8.5676806, 47.4129983 ], + [ 8.567732, 47.4131352 ], + [ 8.567794, 47.41327 ], + [ 8.5678663, 47.4134025 ], + [ 8.5679487, 47.4135322 ], + [ 8.568041000000001, 47.4136588 ], + [ 8.5681429, 47.413782 ], + [ 8.5682542, 47.4139014 ], + [ 8.568374500000001, 47.4140166 ], + [ 8.5685036, 47.4141275 ], + [ 8.568641, 47.4142335 ], + [ 8.5687864, 47.4143346 ], + [ 8.5689394, 47.4144303 ], + [ 8.5690996, 47.4145205 ], + [ 8.5692665, 47.4146049 ], + [ 8.5694397, 47.4146832 ], + [ 8.5696187, 47.4147553 ], + [ 8.569803, 47.4148209 ], + [ 8.5699921, 47.4148799 ], + [ 8.570185500000001, 47.4149321 ], + [ 8.5703827, 47.4149773 ], + [ 8.5705831, 47.4150154 ], + [ 8.5707861, 47.4150464 ], + [ 8.5709913, 47.4150702 ], + [ 8.571198, 47.4150866 ], + [ 8.5714057, 47.4150956 ], + [ 8.5716138, 47.4150973 ], + [ 8.5718217, 47.4150916 ], + [ 8.572029, 47.4150784 ], + [ 8.5722349, 47.415058 ], + [ 8.5724389, 47.4150302 ], + [ 8.5726406, 47.4149953 ], + [ 8.5728392, 47.4149532 ], + [ 8.5730344, 47.4149041 ], + [ 8.5732255, 47.4148482 ], + [ 8.573412, 47.4147855 ], + [ 8.5735935, 47.4147163 ], + [ 8.5737693, 47.4146408 ], + [ 8.5739391, 47.4145591 ], + [ 8.5741024, 47.4144715 ], + [ 8.5742587, 47.4143782 ], + [ 8.5744075, 47.4142795 ], + [ 8.5745486, 47.4141756 ], + [ 8.5746814, 47.4140669 ], + [ 8.5748057, 47.4139536 ], + [ 8.5749211, 47.413836 ], + [ 8.5750273, 47.4137145 ], + [ 8.5751239, 47.4135894 ], + [ 8.5752108, 47.413461 ], + [ 8.5752876, 47.4133298 ], + [ 8.5753542, 47.4131959 ], + [ 8.575410399999999, 47.4130599 ], + [ 8.5754561, 47.4129221 ], + [ 8.575491, 47.4127828 ], + [ 8.5755152, 47.4126425 ], + [ 8.5755285, 47.4125016 ], + [ 8.575531, 47.4123603 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0005", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Auwiesen", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Auwiesen", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Auwiesen", + "lang" : "it-CH" + }, + { + "text" : "Substation Auwiesen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8672737999999995, 47.443622 ], + [ 7.8672962, 47.4436445 ], + [ 7.8673310999999995, 47.4436726 ], + [ 7.8673585, 47.4436932 ], + [ 7.8673921, 47.4437149 ], + [ 7.8674224, 47.4437304 ], + [ 7.8674543, 47.4437453 ], + [ 7.8674865, 47.443757 ], + [ 7.8675394999999995, 47.4437709 ], + [ 7.8675876, 47.4437781 ], + [ 7.8676309, 47.4437837 ], + [ 7.8676779, 47.4437871 ], + [ 7.8677222, 47.4437892 ], + [ 7.8677564, 47.4437881 ], + [ 7.8677204, 47.4439103 ], + [ 7.8676872, 47.4439861 ], + [ 7.8676837, 47.444013 ], + [ 7.8676841, 47.4440179 ], + [ 7.8679112, 47.4441242 ], + [ 7.8680528, 47.4442026 ], + [ 7.8681655, 47.4442904 ], + [ 7.8683204, 47.4444332 ], + [ 7.8684872, 47.4445921 ], + [ 7.8686541, 47.4447568 ], + [ 7.8687992, 47.4448939 ], + [ 7.8690126, 47.4450939 ], + [ 7.8691339, 47.4451978 ], + [ 7.8695242, 47.4455219 ], + [ 7.8698481000000005, 47.4458421 ], + [ 7.8700147, 47.4461554 ], + [ 7.870129, 47.4463661 ], + [ 7.870162, 47.4463636 ], + [ 7.8702658, 47.4463509 ], + [ 7.8703488, 47.4463364 ], + [ 7.8703956999999996, 47.4463246 ], + [ 7.8704385, 47.4463099 ], + [ 7.870476, 47.4462912 ], + [ 7.8705087, 47.4462736 ], + [ 7.8705247, 47.4462601 ], + [ 7.8705491, 47.4462354 ], + [ 7.8705632, 47.4462149 ], + [ 7.8705739999999995, 47.4461981 ], + [ 7.8705856999999995, 47.4461814 ], + [ 7.870599, 47.4461551 ], + [ 7.8706092, 47.4461238 ], + [ 7.8706291, 47.4460659 ], + [ 7.8706391, 47.4460358 ], + [ 7.870739, 47.4457358 ], + [ 7.8707412, 47.4457241 ], + [ 7.8707428, 47.4456865 ], + [ 7.87074, 47.4456459 ], + [ 7.8707272, 47.445593 ], + [ 7.8707065, 47.4455359 ], + [ 7.8706845, 47.4454879 ], + [ 7.8706545, 47.4454379 ], + [ 7.8706867, 47.4452565 ], + [ 7.8706848, 47.4451401 ], + [ 7.870618, 47.4448781 ], + [ 7.8705959, 47.4448005 ], + [ 7.8706527, 47.4447854 ], + [ 7.8709409, 47.4446944 ], + [ 7.8711875, 47.4445297 ], + [ 7.8711202, 47.444231 ], + [ 7.8710105, 47.4439379 ], + [ 7.8708016, 47.4435722 ], + [ 7.870676, 47.4433436 ], + [ 7.8704662, 47.4431318 ], + [ 7.8703639, 47.4430682 ], + [ 7.8703031, 47.4430399 ], + [ 7.870231, 47.4430105 ], + [ 7.8700928, 47.4429909 ], + [ 7.8699466000000005, 47.4429738 ], + [ 7.8698119, 47.4429681 ], + [ 7.8696711, 47.4429693 ], + [ 7.8695504, 47.4429922 ], + [ 7.86942, 47.4430141 ], + [ 7.8690411000000005, 47.4431166 ], + [ 7.8687071, 47.4432038 ], + [ 7.8684278, 47.4432835 ], + [ 7.8681676, 47.4433538 ], + [ 7.8675722, 47.4435216 ], + [ 7.8672737999999995, 47.443622 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns254", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Zangenweidli", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Zangenweidli", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Zangenweidli", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Zangenweidli", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8332094, 47.4814095 ], + [ 7.8329930999999995, 47.4817484 ], + [ 7.833925, 47.4825329 ], + [ 7.8344776, 47.4830078 ], + [ 7.8345645, 47.4829345 ], + [ 7.8345829, 47.4826487 ], + [ 7.8346458, 47.4824238 ], + [ 7.834629, 47.4821979 ], + [ 7.8346504, 47.4821258 ], + [ 7.8347389, 47.4820416 ], + [ 7.8348229, 47.4819382 ], + [ 7.8348404, 47.4818737 ], + [ 7.8349415, 47.4817643 ], + [ 7.8350714, 47.4816284 ], + [ 7.8351768, 47.4815652 ], + [ 7.8354874, 47.4814127 ], + [ 7.8356822, 47.4812464 ], + [ 7.8357564, 47.4810565 ], + [ 7.835833, 47.4809018 ], + [ 7.8359833, 47.48082 ], + [ 7.8360925, 47.4807012 ], + [ 7.8361345, 47.480435 ], + [ 7.83618, 47.4801999 ], + [ 7.8361676, 47.4799201 ], + [ 7.8362469, 47.4796709 ], + [ 7.8363152, 47.4795383 ], + [ 7.8364319, 47.4794767 ], + [ 7.8366795, 47.4794282 ], + [ 7.8368713, 47.4793873 ], + [ 7.8370414, 47.4793025 ], + [ 7.8372487, 47.4791442 ], + [ 7.8373649, 47.4789841 ], + [ 7.8374714999999995, 47.4788098 ], + [ 7.8375333, 47.4787291 ], + [ 7.8375059, 47.4786516 ], + [ 7.8375231, 47.4785285 ], + [ 7.8375476, 47.4784627 ], + [ 7.8376513, 47.4784275 ], + [ 7.8377617, 47.4784576 ], + [ 7.837925, 47.4784434 ], + [ 7.8380708, 47.4783471 ], + [ 7.8383283, 47.4781768 ], + [ 7.8385182, 47.4779364 ], + [ 7.8386557, 47.4777511 ], + [ 7.8387923, 47.4775527 ], + [ 7.8390357999999996, 47.4772783 ], + [ 7.8389362, 47.477271 ], + [ 7.8370128, 47.4770539 ], + [ 7.8369451, 47.4770381 ], + [ 7.836943, 47.4770389 ], + [ 7.836535, 47.477201 ], + [ 7.8360556, 47.4773908 ], + [ 7.8360573, 47.4773919 ], + [ 7.8369584, 47.477053 ], + [ 7.8371877, 47.4776073 ], + [ 7.8368285, 47.4779277 ], + [ 7.8366252, 47.4781088 ], + [ 7.8364226, 47.4783917 ], + [ 7.8361978, 47.4791835 ], + [ 7.836197, 47.4791873 ], + [ 7.8361966, 47.4791878 ], + [ 7.8361899, 47.4792112 ], + [ 7.8353577, 47.4801577 ], + [ 7.8350215, 47.480825 ], + [ 7.8344151, 47.481854 ], + [ 7.8339422, 47.4815827 ], + [ 7.8336147, 47.4815884 ], + [ 7.8332094, 47.4814095 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr049", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Fippleten", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Fippleten", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Fippleten", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Fippleten", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.0158088, 46.1716916 ], + [ 6.0157336, 46.1719316 ], + [ 6.0147545, 46.1723684 ], + [ 6.0138897, 46.1732331 ], + [ 6.013567, 46.174262 ], + [ 6.0138356, 46.1752983 ], + [ 6.0146547, 46.1761843 ], + [ 6.0158995, 46.1767851 ], + [ 6.0173805, 46.1770092 ], + [ 6.0177598, 46.1769618 ], + [ 6.0178182, 46.17699 ], + [ 6.0192993, 46.1772141 ], + [ 6.0193741, 46.1772047 ], + [ 6.0203006, 46.1776518 ], + [ 6.0217817, 46.1778759 ], + [ 6.0232735, 46.1776892 ], + [ 6.0245488, 46.1771201 ], + [ 6.0252566, 46.1764123 ], + [ 6.0256137, 46.1762529 ], + [ 6.0264784, 46.1753881 ], + [ 6.0268009, 46.1743592 ], + [ 6.026532, 46.1733229 ], + [ 6.0259096, 46.1726498 ], + [ 6.0259096, 46.1726497 ], + [ 6.0250904, 46.1717638 ], + [ 6.0238456, 46.1711631 ], + [ 6.0223647, 46.170939 ], + [ 6.0222223, 46.1709569 ], + [ 6.0221661, 46.170896 ], + [ 6.0209213, 46.1702953 ], + [ 6.0194405, 46.1700712 ], + [ 6.0179489, 46.1702578 ], + [ 6.0166736, 46.1708269 ], + [ 6.0158088, 46.1716916 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-26", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5017256, 47.4514024 ], + [ 7.5016809, 47.4515986 ], + [ 7.5016309, 47.4517208 ], + [ 7.5015787, 47.4518393 ], + [ 7.5015673, 47.4518936 ], + [ 7.501595, 47.4519446 ], + [ 7.5016467, 47.451971 ], + [ 7.5017064, 47.451978 ], + [ 7.5018155, 47.4519487 ], + [ 7.5025191, 47.4517364 ], + [ 7.5027371, 47.4517014 ], + [ 7.502759, 47.4516976 ], + [ 7.5032988, 47.4516654 ], + [ 7.5037896, 47.4516472 ], + [ 7.5041682, 47.4516356 ], + [ 7.5043912, 47.4516425 ], + [ 7.5046191, 47.451669 ], + [ 7.5046702, 47.4516791 ], + [ 7.5048291, 47.4517197 ], + [ 7.5049803, 47.4517654 ], + [ 7.5050197, 47.4517789 ], + [ 7.5050951, 47.4518048 ], + [ 7.505196, 47.4518388 ], + [ 7.5053219, 47.4518735 ], + [ 7.5053422, 47.4518791 ], + [ 7.5053428, 47.4518783 ], + [ 7.5056531, 47.4519672 ], + [ 7.5056974, 47.4519801 ], + [ 7.505668, 47.4519513 ], + [ 7.5056068, 47.4518895 ], + [ 7.5055665000000005, 47.4518524 ], + [ 7.5054774, 47.4517638 ], + [ 7.5054151000000005, 47.4516854 ], + [ 7.5053856, 47.4516203 ], + [ 7.5053916, 47.4514974 ], + [ 7.5053883, 47.4514812 ], + [ 7.5053976, 47.4513761 ], + [ 7.505469, 47.4511466 ], + [ 7.5055414, 47.4509968 ], + [ 7.5055786, 47.4509151 ], + [ 7.5055979, 47.4508372 ], + [ 7.5056122, 47.4507738 ], + [ 7.5056265, 47.4506016 ], + [ 7.505642, 47.4504816 ], + [ 7.5056836, 47.450365 ], + [ 7.5057226, 47.4502643 ], + [ 7.5057671, 47.4501589 ], + [ 7.5058156, 47.4500456 ], + [ 7.5059302, 47.4497844 ], + [ 7.5060135, 47.4495986 ], + [ 7.5061203, 47.4493665 ], + [ 7.5061896, 47.4491901 ], + [ 7.5062563, 47.4490254 ], + [ 7.5063252, 47.448849 ], + [ 7.5064145, 47.4486369 ], + [ 7.5065034, 47.4484242 ], + [ 7.5066249, 47.4481245 ], + [ 7.5066925, 47.447972 ], + [ 7.5067293, 47.4478683 ], + [ 7.5067324, 47.4478596 ], + [ 7.5067967, 47.4476875 ], + [ 7.5068903, 47.447444 ], + [ 7.506924, 47.4473322 ], + [ 7.5069324, 47.4472303 ], + [ 7.5069054, 47.4471945 ], + [ 7.5068962, 47.4471275 ], + [ 7.5068375, 47.4470229 ], + [ 7.5067122, 47.4468253 ], + [ 7.5066158, 47.4466451 ], + [ 7.5065758, 47.446521 ], + [ 7.5065665, 47.446492 ], + [ 7.5065543, 47.4464399 ], + [ 7.5065328000000004, 47.4463729 ], + [ 7.5064743, 47.4462621 ], + [ 7.5064287, 47.4461783 ], + [ 7.5063864, 47.4461227 ], + [ 7.5063467, 47.4460648 ], + [ 7.5063376, 47.4460435 ], + [ 7.5062967, 47.4459971 ], + [ 7.5062176, 47.4459115 ], + [ 7.5061726, 47.4458641 ], + [ 7.5061173, 47.4458079 ], + [ 7.5060711, 47.4457414 ], + [ 7.506004, 47.4457405 ], + [ 7.5059601, 47.4457383 ], + [ 7.5058839, 47.445745 ], + [ 7.5057451, 47.4457489 ], + [ 7.5056413, 47.4457435 ], + [ 7.5055659, 47.4457337 ], + [ 7.5053635, 47.4457009 ], + [ 7.5051488, 47.4456557 ], + [ 7.5049433, 47.4456103 ], + [ 7.50461, 47.4459102 ], + [ 7.5038515, 47.4465949 ], + [ 7.5036904, 47.4467403 ], + [ 7.5025154, 47.4482017 ], + [ 7.5025098, 47.4482086 ], + [ 7.502508, 47.4482108 ], + [ 7.5024463, 47.4482877 ], + [ 7.5012407, 47.4496741 ], + [ 7.5013808, 47.4497222 ], + [ 7.501562, 47.449798 ], + [ 7.5019736, 47.4499731 ], + [ 7.502313, 47.4501663 ], + [ 7.5025183, 47.4502997 ], + [ 7.5025718999999995, 47.4503454 ], + [ 7.5026754, 47.4504332 ], + [ 7.5027139, 47.4504897 ], + [ 7.5027255, 47.4505068 ], + [ 7.5027403, 47.4506044 ], + [ 7.5027278, 47.4506908 ], + [ 7.5026695, 47.4507502 ], + [ 7.5025486, 47.4508805 ], + [ 7.5024862, 47.450964 ], + [ 7.5024791, 47.450988100000004 ], + [ 7.5017482, 47.4513899 ], + [ 7.5017256, 47.4514024 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns025", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Radme, Hanslifels und Chällengraben", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Radme, Hanslifels und Chällengraben", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Radme, Hanslifels und Chällengraben", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Radme, Hanslifels und Chällengraben", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.8719643, 46.1682898 ], + [ 8.872151, 46.1682823 ], + [ 8.8729506, 46.1682502 ], + [ 8.8739237, 46.168227 ], + [ 8.875116, 46.1682009 ], + [ 8.8762452, 46.1681756 ], + [ 8.8779009, 46.1681654 ], + [ 8.8812443, 46.1681336 ], + [ 8.8833156, 46.1681071 ], + [ 8.8843744, 46.1680827 ], + [ 8.8846565, 46.1680681 ], + [ 8.8849056, 46.1679995 ], + [ 8.8851083, 46.1679206 ], + [ 8.8853402, 46.1677867 ], + [ 8.8855395, 46.1676097 ], + [ 8.8856585, 46.1673682 ], + [ 8.8857897, 46.1670067 ], + [ 8.8858362, 46.1668959 ], + [ 8.8858844, 46.1645069 ], + [ 8.8859454, 46.1643658 ], + [ 8.8860377, 46.1641847 ], + [ 8.8899472, 46.1563959 ], + [ 8.8901327, 46.1560399 ], + [ 8.8901586, 46.1557966 ], + [ 8.8901456, 46.1555827 ], + [ 8.890086, 46.1553801 ], + [ 8.8900391, 46.1552304 ], + [ 8.8899872, 46.1550728 ], + [ 8.889895, 46.1548931 ], + [ 8.8897788, 46.1546922 ], + [ 8.8896342, 46.1545177 ], + [ 8.8894462, 46.1543572 ], + [ 8.8890749, 46.1541181 ], + [ 8.8855196, 46.1516212 ], + [ 8.8852234, 46.1514396 ], + [ 8.8849604, 46.1512847 ], + [ 8.8846815, 46.1511407 ], + [ 8.8842997, 46.1510214 ], + [ 8.883899, 46.150924 ], + [ 8.8832406, 46.1507777 ], + [ 8.8787984, 46.1499455 ], + [ 8.8784475, 46.1498933 ], + [ 8.8782454, 46.1498392 ], + [ 8.8780822, 46.1497846 ], + [ 8.8778771, 46.1497081 ], + [ 8.877625, 46.1496312 ], + [ 8.8773386, 46.1495673 ], + [ 8.8770462, 46.1495252 ], + [ 8.8768032, 46.1495166 ], + [ 8.8765769, 46.1495258 ], + [ 8.8763504, 46.1495278 ], + [ 8.8761011, 46.1495534 ], + [ 8.87585, 46.1496052 ], + [ 8.875665399999999, 46.1496301 ], + [ 8.8754224, 46.1496502 ], + [ 8.8752668, 46.1496405 ], + [ 8.874983199999999, 46.149592 ], + [ 8.8746908, 46.1495498 ], + [ 8.8744827, 46.1495128 ], + [ 8.8743331, 46.149486 ], + [ 8.8738524, 46.1494192 ], + [ 8.8733819, 46.1493721 ], + [ 8.8728138, 46.1493398 ], + [ 8.8724891, 46.149298 ], + [ 8.8723047, 46.1492707 ], + [ 8.8722285, 46.1492329 ], + [ 8.87218, 46.1492048 ], + [ 8.8721082, 46.1491823 ], + [ 8.8717824, 46.1491594 ], + [ 8.8691758, 46.1492312 ], + [ 8.8668462, 46.1493462 ], + [ 8.866756, 46.149701 ], + [ 8.8650784, 46.1497185 ], + [ 8.8650735, 46.1497176 ], + [ 8.8601012, 46.1488304 ], + [ 8.8597269, 46.1487784 ], + [ 8.8594452, 46.1487406 ], + [ 8.8592247, 46.1487271 ], + [ 8.8589577, 46.1487233 ], + [ 8.8587315, 46.1487369 ], + [ 8.8582685, 46.1487599 ], + [ 8.8574062, 46.1488931 ], + [ 8.8564549, 46.1490832 ], + [ 8.8555603, 46.1491888 ], + [ 8.854829, 46.1479343 ], + [ 8.8546167, 46.1476596 ], + [ 8.8541627, 46.1471546 ], + [ 8.8531754, 46.1468582 ], + [ 8.8520073, 46.1466209 ], + [ 8.8491609, 46.1459267 ], + [ 8.8481108, 46.1454053 ], + [ 8.8471156, 46.1450258 ], + [ 8.8467886, 46.1450765 ], + [ 8.8458569, 46.144804 ], + [ 8.845347, 46.1447312 ], + [ 8.8448541, 46.1446107 ], + [ 8.8441153, 46.1446753 ], + [ 8.843531, 46.1447657 ], + [ 8.8430029, 46.1448277 ], + [ 8.8421147, 46.1448388 ], + [ 8.8417204, 46.1447882 ], + [ 8.8412735, 46.1447882 ], + [ 8.840151, 46.1788467 ], + [ 8.8403359, 46.1786524 ], + [ 8.8406277, 46.178247 ], + [ 8.8408601, 46.1782171 ], + [ 8.8410562, 46.1777828 ], + [ 8.8412673, 46.1774928 ], + [ 8.8412636, 46.1773489 ], + [ 8.8413757, 46.1766727 ], + [ 8.841387, 46.1761058 ], + [ 8.8414885, 46.1755197 ], + [ 8.841842, 46.1751644 ], + [ 8.842063, 46.1751977 ], + [ 8.842324099999999, 46.1747715 ], + [ 8.8426475, 46.1747585 ], + [ 8.8431409, 46.1743114 ], + [ 8.8431503, 46.1741764 ], + [ 8.8431469, 46.1740415 ], + [ 8.8437963, 46.1741687 ], + [ 8.8438954, 46.1742138 ], + [ 8.8442252, 46.1741359 ], + [ 8.8445755, 46.1740947 ], + [ 8.8448503, 46.1740804 ], + [ 8.8451585, 46.1741045 ], + [ 8.845483699999999, 46.1741571 ], + [ 8.8457611, 46.1742445 ], + [ 8.8459971, 46.1743549 ], + [ 8.8462912, 46.1744602 ], + [ 8.8466024, 46.1745967 ], + [ 8.8467333, 46.1746517 ], + [ 8.8468147, 46.1746687 ], + [ 8.8469212, 46.1746566 ], + [ 8.8470234, 46.1746031 ], + [ 8.8470868, 46.1745195 ], + [ 8.8471441, 46.1744783 ], + [ 8.8472882, 46.1744496 ], + [ 8.8474037, 46.1744373 ], + [ 8.8475664, 46.1744694 ], + [ 8.8480869, 46.1745656 ], + [ 8.8491784, 46.1748587 ], + [ 8.8497563, 46.1750143 ], + [ 8.8500163, 46.1750525 ], + [ 8.8502697, 46.1750835 ], + [ 8.850560699999999, 46.1750691 ], + [ 8.8508055, 46.1751119 ], + [ 8.8509625, 46.1751104 ], + [ 8.8511184, 46.1750695 ], + [ 8.8516173, 46.1749215 ], + [ 8.8528809, 46.1746112 ], + [ 8.853648, 46.1744142 ], + [ 8.8538635, 46.174359 ], + [ 8.8542998, 46.1742335 ], + [ 8.8546894, 46.1741196 ], + [ 8.8549038, 46.1740513 ], + [ 8.8551879, 46.1739606 ], + [ 8.855639, 46.1738133 ], + [ 8.8559658, 46.1737109 ], + [ 8.85623, 46.1735985 ], + [ 8.8567124, 46.1734398 ], + [ 8.857396, 46.1731476 ], + [ 8.8579227, 46.1728901 ], + [ 8.8585899, 46.1725873 ], + [ 8.8591489, 46.1723294 ], + [ 8.859464, 46.1721507 ], + [ 8.8597982, 46.1719613 ], + [ 8.8606505, 46.1715252 ], + [ 8.8612539, 46.1712013 ], + [ 8.8616256, 46.1709894 ], + [ 8.8620601, 46.1707985 ], + [ 8.8623469, 46.170653 ], + [ 8.8627035, 46.1704849 ], + [ 8.863138, 46.1702942 ], + [ 8.8634642, 46.17017 ], + [ 8.8637126, 46.1700469 ], + [ 8.8640078, 46.169945 ], + [ 8.8643033, 46.1698213 ], + [ 8.864692, 46.1697073 ], + [ 8.8651589, 46.1695487 ], + [ 8.8656107, 46.1694012 ], + [ 8.8661564, 46.1692526 ], + [ 8.8666705, 46.1691042 ], + [ 8.8667341, 46.1690903 ], + [ 8.8675131, 46.1689191 ], + [ 8.8679186, 46.1688267 ], + [ 8.8685746, 46.1686875 ], + [ 8.8686036, 46.1686834 ], + [ 8.8691689, 46.1686036 ], + [ 8.8698646, 46.1684967 ], + [ 8.8705843, 46.1684112 ], + [ 8.8713668, 46.1683141 ], + [ 8.8719643, 46.1682898 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "WZV0005", + "country" : "CHE", + "name" : [ + { + "text" : "Wasser- und Zugvogelreservat Bolle di Magadino", + "lang" : "de-CH" + }, + { + "text" : "Réserve d'oiseaux d'eau et de migrateurs Bolle di Magadino", + "lang" : "fr-CH" + }, + { + "text" : "Riserva di uccelli acquatici e migratori Bolle di Magadino", + "lang" : "it-CH" + }, + { + "text" : "Water Bird and Migratory Bird Reserves Bolle di Magadino", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5288409, 47.4495765 ], + [ 7.5288412000000005, 47.4495826 ], + [ 7.5288805, 47.4497552 ], + [ 7.5290325, 47.4504223 ], + [ 7.5291901, 47.4511139 ], + [ 7.5292201, 47.4512456 ], + [ 7.5293828, 47.4511548 ], + [ 7.5298772, 47.451018 ], + [ 7.5302547, 47.4510333 ], + [ 7.5303043, 47.4510498 ], + [ 7.5304158999999995, 47.4510869 ], + [ 7.5306364, 47.4511094 ], + [ 7.5307505, 47.4511211 ], + [ 7.53091, 47.4511374 ], + [ 7.5305172, 47.452455 ], + [ 7.5312687, 47.4527702 ], + [ 7.5312966, 47.4527581 ], + [ 7.531325, 47.4527464 ], + [ 7.5313537, 47.4527352 ], + [ 7.5313828, 47.4527244 ], + [ 7.5313976, 47.4527192 ], + [ 7.5314122999999995, 47.452714 ], + [ 7.5314421, 47.4527041 ], + [ 7.5314722, 47.4526946 ], + [ 7.5314964, 47.4526806 ], + [ 7.5317468, 47.4525444 ], + [ 7.5318843, 47.4524695 ], + [ 7.5325052, 47.4522065 ], + [ 7.5331486, 47.4517499 ], + [ 7.5336694, 47.4512583 ], + [ 7.5338012, 47.4513023 ], + [ 7.5339496, 47.4513518 ], + [ 7.5340598, 47.4512515 ], + [ 7.5341648, 47.4512167 ], + [ 7.5350956, 47.4512173 ], + [ 7.5356185, 47.4513067 ], + [ 7.5358272, 47.4513474 ], + [ 7.5359344, 47.4513683 ], + [ 7.536215, 47.4514674 ], + [ 7.5363727, 47.4517014 ], + [ 7.5367571, 47.4517258 ], + [ 7.537018, 47.4517028 ], + [ 7.5375133, 47.4516106 ], + [ 7.5375032, 47.4514471 ], + [ 7.5375028, 47.4514332 ], + [ 7.537507, 47.4513915 ], + [ 7.5375101, 47.4513777 ], + [ 7.537514, 47.451364 ], + [ 7.5375188, 47.4513505 ], + [ 7.5375244, 47.4513371 ], + [ 7.5375308, 47.4513239 ], + [ 7.5377488, 47.4508417 ], + [ 7.5377826, 47.4507671 ], + [ 7.5378221, 47.4505077 ], + [ 7.5378726, 47.4501744 ], + [ 7.5383209, 47.4498789 ], + [ 7.5387287, 47.4494999 ], + [ 7.5393854000000005, 47.4485348 ], + [ 7.5397887, 47.4481492 ], + [ 7.5394168, 47.447946 ], + [ 7.539112, 47.4477794 ], + [ 7.5391004, 47.4477731 ], + [ 7.5384182, 47.4475319 ], + [ 7.5384139, 47.447557 ], + [ 7.5384086, 47.4475821 ], + [ 7.5384025, 47.4476071 ], + [ 7.5383954, 47.447632 ], + [ 7.5383873, 47.4476567 ], + [ 7.5383675, 47.4477058 ], + [ 7.5383657, 47.4477095 ], + [ 7.5383578, 47.44773 ], + [ 7.5383462, 47.4477541 ], + [ 7.5380812, 47.4481864 ], + [ 7.5379759, 47.448321 ], + [ 7.5379667, 47.4483319 ], + [ 7.5379566, 47.4483425 ], + [ 7.5379459, 47.4483528 ], + [ 7.5379344, 47.4483627 ], + [ 7.5379223, 47.4483722 ], + [ 7.5379095, 47.4483813 ], + [ 7.5378961, 47.44839 ], + [ 7.5378821, 47.4483982 ], + [ 7.5378675, 47.448406 ], + [ 7.5378524, 47.4484133 ], + [ 7.5378368, 47.4484201 ], + [ 7.5378207, 47.4484264 ], + [ 7.5378042, 47.4484321 ], + [ 7.5378007, 47.4484332 ], + [ 7.5377962, 47.4484346 ], + [ 7.5377873, 47.4484373 ], + [ 7.5377594, 47.4484459 ], + [ 7.5377317999999995, 47.4484549 ], + [ 7.5377046, 47.4484646 ], + [ 7.5376778, 47.4484747 ], + [ 7.5376515, 47.4484854 ], + [ 7.5376256, 47.4484965 ], + [ 7.5376002, 47.4485081 ], + [ 7.5375753, 47.4485203 ], + [ 7.537551, 47.4485329 ], + [ 7.5375271, 47.4485459 ], + [ 7.5375038, 47.4485595 ], + [ 7.5374657, 47.4485817 ], + [ 7.537427, 47.4486034 ], + [ 7.5373878, 47.4486246 ], + [ 7.537348, 47.4486454 ], + [ 7.5373076, 47.4486656 ], + [ 7.5372667, 47.4486854 ], + [ 7.5372253, 47.4487046 ], + [ 7.5371833, 47.4487234 ], + [ 7.5371427, 47.4487395 ], + [ 7.5371024, 47.4487562 ], + [ 7.5370626, 47.4487733 ], + [ 7.5370232999999995, 47.4487909 ], + [ 7.5369844, 47.4488089 ], + [ 7.536946, 47.4488275 ], + [ 7.5369081, 47.4488465 ], + [ 7.5368707, 47.4488659 ], + [ 7.5368338, 47.4488858 ], + [ 7.5366311, 47.4489913 ], + [ 7.5364612, 47.4490733 ], + [ 7.5361752, 47.4491953 ], + [ 7.5361435, 47.4492105 ], + [ 7.5361123, 47.4492261 ], + [ 7.5360817, 47.4492423 ], + [ 7.5360516, 47.4492589 ], + [ 7.5360221, 47.449276 ], + [ 7.5359931, 47.4492935 ], + [ 7.5359896, 47.4492958 ], + [ 7.5359863, 47.4492978 ], + [ 7.5359648, 47.4493115 ], + [ 7.5359359999999995, 47.4493271 ], + [ 7.5359066, 47.4493423 ], + [ 7.5358765, 47.4493569 ], + [ 7.535846, 47.449371 ], + [ 7.5358149, 47.4493846 ], + [ 7.5357833, 47.4493975 ], + [ 7.5357512, 47.4494099 ], + [ 7.5357186, 47.4494218 ], + [ 7.5356856, 47.449433 ], + [ 7.5356521, 47.4494437 ], + [ 7.5356183, 47.4494538 ], + [ 7.535584, 47.4494632 ], + [ 7.5355495, 47.449472 ], + [ 7.5355145, 47.4494803 ], + [ 7.5354793, 47.4494879 ], + [ 7.5354438, 47.4494948 ], + [ 7.5354081, 47.4495011 ], + [ 7.5353714, 47.4495072 ], + [ 7.5353349, 47.4495138 ], + [ 7.5352987, 47.449521 ], + [ 7.5352627, 47.4495287 ], + [ 7.5352269, 47.4495369 ], + [ 7.5351915, 47.4495456 ], + [ 7.5351563, 47.4495549 ], + [ 7.5351213999999995, 47.4495647 ], + [ 7.5350916, 47.4495736 ], + [ 7.5350619, 47.4495829 ], + [ 7.5350326, 47.4495926 ], + [ 7.5350035, 47.4496026 ], + [ 7.5349747, 47.449613 ], + [ 7.5349462, 47.4496238 ], + [ 7.5349165, 47.4496352 ], + [ 7.5348863999999995, 47.4496462 ], + [ 7.5348559, 47.4496567 ], + [ 7.5348251, 47.4496666 ], + [ 7.5347939, 47.4496761 ], + [ 7.5347623, 47.449685 ], + [ 7.5347305, 47.4496935 ], + [ 7.5346984, 47.4497014 ], + [ 7.534666, 47.4497087 ], + [ 7.5346333, 47.4497155 ], + [ 7.5346004, 47.4497218 ], + [ 7.5345673, 47.4497275 ], + [ 7.5342721, 47.4497739 ], + [ 7.5342500999999995, 47.4497767 ], + [ 7.534228, 47.449779 ], + [ 7.5342059, 47.4497807 ], + [ 7.5341836, 47.4497819 ], + [ 7.5341613, 47.4497825 ], + [ 7.534139, 47.4497826 ], + [ 7.5341167, 47.4497822 ], + [ 7.5340944, 47.4497812 ], + [ 7.5340722, 47.4497797 ], + [ 7.5340501, 47.4497776 ], + [ 7.5340281000000004, 47.449775 ], + [ 7.5338146, 47.4497423 ], + [ 7.533637, 47.4497153 ], + [ 7.5333897, 47.4496923 ], + [ 7.5333898999999995, 47.4496992 ], + [ 7.533391, 47.4498344 ], + [ 7.533393, 47.4500731 ], + [ 7.5326269, 47.4500737 ], + [ 7.5326275, 47.449607 ], + [ 7.5326276, 47.4496019 ], + [ 7.5325869, 47.4496012 ], + [ 7.5325392, 47.4495998 ], + [ 7.5324915, 47.4495978 ], + [ 7.5324439, 47.4495951 ], + [ 7.5323963, 47.4495919 ], + [ 7.5323489, 47.449588 ], + [ 7.5323016, 47.4495835 ], + [ 7.5322544, 47.4495783 ], + [ 7.5322074, 47.4495726 ], + [ 7.5321605, 47.4495663 ], + [ 7.5321138, 47.4495593 ], + [ 7.5320674, 47.4495518 ], + [ 7.5320543, 47.4495496 ], + [ 7.5319826, 47.4495377 ], + [ 7.5318689, 47.4495242 ], + [ 7.5317536, 47.4495163 ], + [ 7.5314457, 47.4494843 ], + [ 7.5312646999999995, 47.4494652 ], + [ 7.5312293, 47.4494619 ], + [ 7.5311939, 47.4494593 ], + [ 7.5311582999999995, 47.4494572 ], + [ 7.5311227, 47.4494556 ], + [ 7.5310871, 47.4494547 ], + [ 7.5310514, 47.4494543 ], + [ 7.5310157, 47.4494546 ], + [ 7.5309801, 47.4494553 ], + [ 7.5309444, 47.4494567 ], + [ 7.5309089, 47.4494586 ], + [ 7.5306828, 47.4494751 ], + [ 7.5306141, 47.4494811 ], + [ 7.5305453, 47.4494864 ], + [ 7.5304763999999995, 47.4494912 ], + [ 7.5304074, 47.4494953 ], + [ 7.5303383, 47.4494989 ], + [ 7.5302692, 47.4495019 ], + [ 7.5302, 47.4495042 ], + [ 7.5301308, 47.449506 ], + [ 7.5300615, 47.4495071 ], + [ 7.5299923, 47.4495076 ], + [ 7.529923, 47.4495076 ], + [ 7.5298537, 47.4495069 ], + [ 7.5297845, 47.4495056 ], + [ 7.5297153, 47.4495038 ], + [ 7.5296461, 47.4495013 ], + [ 7.5295385, 47.4495011 ], + [ 7.5295084, 47.4495019 ], + [ 7.5294783, 47.449503 ], + [ 7.5294483, 47.4495046 ], + [ 7.5294183, 47.4495065 ], + [ 7.5293842, 47.4495091 ], + [ 7.5293501, 47.4495123 ], + [ 7.5293162, 47.4495159 ], + [ 7.5292823, 47.44952 ], + [ 7.5290704, 47.4495485 ], + [ 7.5288409, 47.4495765 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns018", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Chlus", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Chlus", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Chlus", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Chlus", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7141376, 47.5383826 ], + [ 7.7134858, 47.5380322 ], + [ 7.7134393, 47.5379676 ], + [ 7.7134166, 47.5379637 ], + [ 7.7133948, 47.5379582 ], + [ 7.7133737, 47.5379512 ], + [ 7.713354, 47.5379428 ], + [ 7.7133358, 47.537933 ], + [ 7.7133215, 47.5379237 ], + [ 7.7118225, 47.5371212 ], + [ 7.7117553999999995, 47.5371789 ], + [ 7.7117544, 47.5371795 ], + [ 7.7117533, 47.5371801 ], + [ 7.711752, 47.5371806 ], + [ 7.7117508, 47.537181 ], + [ 7.7117495, 47.5371813 ], + [ 7.711748, 47.5371816 ], + [ 7.7117467, 47.5371817 ], + [ 7.7117452, 47.5371817 ], + [ 7.7117436999999995, 47.5371816 ], + [ 7.7117424, 47.5371815 ], + [ 7.711741, 47.5371812 ], + [ 7.7117396, 47.5371808 ], + [ 7.7117384, 47.5371804 ], + [ 7.7117372, 47.5371798 ], + [ 7.7117362, 47.5371792 ], + [ 7.7117352, 47.5371785 ], + [ 7.7117343, 47.5371777 ], + [ 7.7117338, 47.5371771 ], + [ 7.7116336, 47.5371217 ], + [ 7.7116045, 47.5371759 ], + [ 7.7115335, 47.5372075 ], + [ 7.7116345, 47.537261 ], + [ 7.7116359, 47.5372615 ], + [ 7.7116372, 47.5372622 ], + [ 7.7116384, 47.5372629 ], + [ 7.7116396, 47.5372638 ], + [ 7.7116407, 47.5372646 ], + [ 7.7116415, 47.5372656 ], + [ 7.7116423, 47.5372666 ], + [ 7.7116429, 47.5372677 ], + [ 7.7116431, 47.5372688 ], + [ 7.7116434, 47.5372699 ], + [ 7.7116434, 47.5372711 ], + [ 7.7116433, 47.5372721 ], + [ 7.711643, 47.5372733 ], + [ 7.7116425, 47.5372744 ], + [ 7.7116418, 47.5372755 ], + [ 7.7115793, 47.5373291 ], + [ 7.7115914, 47.5373356 ], + [ 7.7115933, 47.5373371 ], + [ 7.7115947, 47.5373387 ], + [ 7.7115960999999995, 47.5373404 ], + [ 7.7115972, 47.5373422 ], + [ 7.7115978, 47.5373441 ], + [ 7.7115984, 47.537346 ], + [ 7.7115985, 47.5373479 ], + [ 7.7115984, 47.5373499 ], + [ 7.7115979, 47.5373517 ], + [ 7.7115972, 47.5373535 ], + [ 7.7115962, 47.5373553 ], + [ 7.7115948, 47.5373571 ], + [ 7.7115934, 47.5373588 ], + [ 7.7115915, 47.5373602 ], + [ 7.7115895, 47.5373616 ], + [ 7.7115876, 47.5373627 ], + [ 7.7115566, 47.5373848 ], + [ 7.7115224, 47.5374045 ], + [ 7.7115032, 47.537414 ], + [ 7.7114649, 47.5374299 ], + [ 7.7114243, 47.5374429 ], + [ 7.7113949999999996, 47.5374502 ], + [ 7.7113256, 47.5374624 ], + [ 7.7112547, 47.5374696 ], + [ 7.7112359999999995, 47.5374706 ], + [ 7.7111643, 47.5374714 ], + [ 7.711093, 47.5374671 ], + [ 7.7110138, 47.5374562 ], + [ 7.7109006, 47.5374341 ], + [ 7.7108606, 47.537424 ], + [ 7.710826, 47.5374153 ], + [ 7.7107892, 47.5374032 ], + [ 7.7105559, 47.5373147 ], + [ 7.7104501, 47.5372755 ], + [ 7.7104486, 47.5372727 ], + [ 7.7104119, 47.5372722 ], + [ 7.7102438, 47.5372699 ], + [ 7.7102291, 47.5372695 ], + [ 7.7102143, 47.5372686 ], + [ 7.7101997, 47.5372674 ], + [ 7.7101851, 47.5372657 ], + [ 7.7101707, 47.5372636 ], + [ 7.7101564, 47.5372611 ], + [ 7.7101421, 47.5372582 ], + [ 7.710128, 47.5372548 ], + [ 7.7101141, 47.5372511 ], + [ 7.7101005, 47.537247 ], + [ 7.7100872, 47.5372425 ], + [ 7.7100741, 47.5372376 ], + [ 7.7090279, 47.5368336 ], + [ 7.7084288, 47.5366023 ], + [ 7.7084261, 47.5366056 ], + [ 7.7083532, 47.5365792 ], + [ 7.7076584, 47.5374134 ], + [ 7.7083332, 47.5376699 ], + [ 7.7135331, 47.5396456 ], + [ 7.7141376, 47.5383826 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns036", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Kraftwerkstausee", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Kraftwerkstausee", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Kraftwerkstausee", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Kraftwerkstausee", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.9474929, 47.2876986 ], + [ 7.9474862, 47.2875574 ], + [ 7.9474685, 47.2874166 ], + [ 7.9474401, 47.2872767 ], + [ 7.9474009, 47.287138 ], + [ 7.9473512, 47.2870008 ], + [ 7.9472909, 47.2868656 ], + [ 7.9472203, 47.2867328 ], + [ 7.9471396, 47.2866026 ], + [ 7.9470491, 47.2864755 ], + [ 7.9469487999999995, 47.2863518 ], + [ 7.9468392, 47.2862318 ], + [ 7.9467205, 47.2861159 ], + [ 7.946593, 47.2860044 ], + [ 7.9464572, 47.2858976 ], + [ 7.9463133, 47.2857957 ], + [ 7.9461618, 47.2856991 ], + [ 7.946003, 47.2856081 ], + [ 7.9458375, 47.2855228 ], + [ 7.9456657, 47.2854435 ], + [ 7.945488, 47.2853705 ], + [ 7.9453049, 47.2853039 ], + [ 7.9451169, 47.2852439 ], + [ 7.9449246, 47.2851907 ], + [ 7.9447285, 47.2851444 ], + [ 7.944529, 47.2851051 ], + [ 7.9443268, 47.285073 ], + [ 7.9441225, 47.2850482 ], + [ 7.9439165, 47.2850306 ], + [ 7.9437093999999995, 47.2850205 ], + [ 7.9435018, 47.2850177 ], + [ 7.9432943, 47.2850223 ], + [ 7.9430875, 47.2850343 ], + [ 7.9428818, 47.2850536 ], + [ 7.9426779, 47.2850802 ], + [ 7.9424764, 47.2851141 ], + [ 7.9422777, 47.2851551 ], + [ 7.9420824, 47.2852031 ], + [ 7.9418911, 47.285258 ], + [ 7.9417043, 47.2853196 ], + [ 7.9415225, 47.2853878 ], + [ 7.9413462, 47.2854624 ], + [ 7.9411759, 47.2855431 ], + [ 7.941012, 47.2856298 ], + [ 7.940855, 47.2857223 ], + [ 7.9407053, 47.2858202 ], + [ 7.9405633, 47.2859233 ], + [ 7.9404295, 47.2860313 ], + [ 7.9403042, 47.2861439 ], + [ 7.9401877, 47.2862608 ], + [ 7.9400803, 47.2863817 ], + [ 7.9399824, 47.2865063 ], + [ 7.9398943, 47.2866342 ], + [ 7.939816, 47.2867651 ], + [ 7.939748, 47.2868985 ], + [ 7.9396903, 47.2870342 ], + [ 7.9396431, 47.2871718 ], + [ 7.9396066, 47.2873109 ], + [ 7.9395808, 47.287451 ], + [ 7.9395658000000005, 47.2875919 ], + [ 7.9395617, 47.2877332 ], + [ 7.9395685, 47.2878744 ], + [ 7.9395861, 47.2880151 ], + [ 7.9396145, 47.2881551 ], + [ 7.9396536, 47.2882938 ], + [ 7.9397034, 47.288431 ], + [ 7.9397636, 47.2885661 ], + [ 7.9398342, 47.288699 ], + [ 7.9399149, 47.2888292 ], + [ 7.9400054, 47.2889563 ], + [ 7.9401057, 47.28908 ], + [ 7.9402153, 47.2892 ], + [ 7.940334, 47.2893159 ], + [ 7.9404614, 47.2894274 ], + [ 7.9405973, 47.2895343 ], + [ 7.9407412, 47.2896361 ], + [ 7.9408927, 47.2897327 ], + [ 7.9410514, 47.2898238 ], + [ 7.9412169, 47.2899091 ], + [ 7.9413888, 47.2899883 ], + [ 7.9415665, 47.2900614 ], + [ 7.9417496, 47.290128 ], + [ 7.9419376, 47.290188 ], + [ 7.9421299, 47.2902412 ], + [ 7.9423261, 47.2902875 ], + [ 7.9425256, 47.2903268 ], + [ 7.9427278, 47.2903589 ], + [ 7.9429321999999996, 47.2903837 ], + [ 7.9431382, 47.2904013 ], + [ 7.9433453, 47.290411399999996 ], + [ 7.9435529, 47.2904142 ], + [ 7.9437604, 47.2904096 ], + [ 7.9439672, 47.2903977 ], + [ 7.9441729, 47.2903783 ], + [ 7.9443768, 47.2903517 ], + [ 7.9445784, 47.2903178 ], + [ 7.9447771, 47.2902768 ], + [ 7.9449724, 47.2902288 ], + [ 7.9451637, 47.2901739 ], + [ 7.9453505, 47.2901123 ], + [ 7.9455323, 47.2900441 ], + [ 7.9457087, 47.2899695 ], + [ 7.945879, 47.2898887 ], + [ 7.9460429, 47.289802 ], + [ 7.9461999, 47.2897096 ], + [ 7.9463496, 47.2896117 ], + [ 7.9464915, 47.2895086 ], + [ 7.9466254, 47.2894006 ], + [ 7.9467507, 47.2892879 ], + [ 7.9468672, 47.289171 ], + [ 7.9469745, 47.2890501 ], + [ 7.9470724, 47.2889255 ], + [ 7.9471606, 47.2887976 ], + [ 7.9472388, 47.2886667 ], + [ 7.9473068, 47.2885333 ], + [ 7.9473645, 47.2883976 ], + [ 7.9474116, 47.28826 ], + [ 7.9474481, 47.2881209 ], + [ 7.9474739, 47.2879807 ], + [ 7.9474889, 47.2878398 ], + [ 7.9474929, 47.2876986 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "ZOF0001", + "country" : "CHE", + "name" : [ + { + "text" : "Bezirksgefängnis Zofingen", + "lang" : "de-CH" + }, + { + "text" : "Bezirksgefängnis Zofingen", + "lang" : "fr-CH" + }, + { + "text" : "Bezirksgefängnis Zofingen", + "lang" : "it-CH" + }, + { + "text" : "Bezirksgefängnis Zofingen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Bezirksgefängnis Zofingen", + "lang" : "de-CH" + }, + { + "text" : "Bezirksgefängnis Zofingen", + "lang" : "fr-CH" + }, + { + "text" : "Bezirksgefängnis Zofingen", + "lang" : "it-CH" + }, + { + "text" : "Bezirksgefängnis Zofingen", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Gefängnisleitung", + "lang" : "de-CH" + }, + { + "text" : "Gefängnisleitung", + "lang" : "fr-CH" + }, + { + "text" : "Gefängnisleitung", + "lang" : "it-CH" + }, + { + "text" : "Gefängnisleitung", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ag.ch/de/verwaltung/dvi/strafverfolgung-strafvollzug/strafvollzug/bezirksgefaengnisse", + "email" : "justizvollzug@ag.ch", + "phone" : "0041627451150", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.1980159, 46.1835097 ], + [ 6.1976128, 46.1834494 ], + [ 6.1973719, 46.1835265 ], + [ 6.1973212, 46.1835546 ], + [ 6.1972666, 46.1836019 ], + [ 6.1971919, 46.1837169 ], + [ 6.1971084, 46.1837729 ], + [ 6.1970179, 46.183793 ], + [ 6.196925, 46.1837992 ], + [ 6.1967089, 46.1837466 ], + [ 6.1964627, 46.1837479 ], + [ 6.1962959, 46.1837639 ], + [ 6.1962119, 46.1837888 ], + [ 6.1961781, 46.1838367 ], + [ 6.1960895, 46.1841071 ], + [ 6.196056, 46.1841549 ], + [ 6.1959646, 46.1842063 ], + [ 6.1959007, 46.1842206 ], + [ 6.1957955, 46.1841898 ], + [ 6.1957407, 46.1840709 ], + [ 6.1956922, 46.184017 ], + [ 6.1956138, 46.1839827 ], + [ 6.1954606, 46.1840062 ], + [ 6.1950625, 46.1842075 ], + [ 6.1949813, 46.1842063 ], + [ 6.194878, 46.1841626 ], + [ 6.1947879, 46.1840071 ], + [ 6.1948441, 46.1837624 ], + [ 6.1949135, 46.1836526 ], + [ 6.1949213, 46.183635 ], + [ 6.1950118, 46.1834623 ], + [ 6.1949528, 46.1834108 ], + [ 6.1946227, 46.1833962 ], + [ 6.1942252, 46.1833839 ], + [ 6.1941723, 46.1833579 ], + [ 6.1941983, 46.1832944 ], + [ 6.1942512, 46.1832458 ], + [ 6.1943107, 46.1831709 ], + [ 6.1943245, 46.1830641 ], + [ 6.1942671, 46.1830156 ], + [ 6.1939194, 46.1830118 ], + [ 6.193871, 46.182976 ], + [ 6.193874, 46.182870199999996 ], + [ 6.193871, 46.1828203 ], + [ 6.1938172, 46.1827897 ], + [ 6.1933062, 46.1827688 ], + [ 6.1932434, 46.1827647 ], + [ 6.1932137, 46.1827603 ], + [ 6.1931769, 46.1827509 ], + [ 6.1931062, 46.1826537 ], + [ 6.1930806, 46.1825909 ], + [ 6.1930545, 46.182539 ], + [ 6.1929962, 46.182444 ], + [ 6.1928745, 46.18231 ], + [ 6.1927311, 46.1821802 ], + [ 6.1926373, 46.1821269 ], + [ 6.1925751, 46.1821182 ], + [ 6.1921776, 46.1821392 ], + [ 6.1920619, 46.1821641 ], + [ 6.1920432, 46.1821846 ], + [ 6.191967, 46.1822079 ], + [ 6.1918701, 46.1821667 ], + [ 6.191825, 46.182119900000004 ], + [ 6.1918243, 46.1821173 ], + [ 6.1909134, 46.1822327 ], + [ 6.1896397, 46.1828037 ], + [ 6.1887775, 46.1836697 ], + [ 6.188458, 46.1846991 ], + [ 6.18873, 46.1857349 ], + [ 6.1895521, 46.1866197 ], + [ 6.1897954, 46.1867365 ], + [ 6.189657, 46.1867986 ], + [ 6.1887948, 46.1876646 ], + [ 6.1886754, 46.1880493 ], + [ 6.188657, 46.1880028 ], + [ 6.1880847, 46.1874006 ], + [ 6.1880075, 46.1873111 ], + [ 6.1875178, 46.1869323 ], + [ 6.187346, 46.1868423 ], + [ 6.1866187, 46.1864185 ], + [ 6.1866186, 46.1864185 ], + [ 6.1864451, 46.1863703 ], + [ 6.1863289, 46.1863094 ], + [ 6.1860197, 46.1862521 ], + [ 6.1854776, 46.1861015 ], + [ 6.1854775, 46.1861015 ], + [ 6.1854774, 46.1861015 ], + [ 6.1851232, 46.186086 ], + [ 6.1848899, 46.1860428 ], + [ 6.1846378, 46.1860648 ], + [ 6.184251, 46.1860479 ], + [ 6.1842509, 46.186048 ], + [ 6.1842508, 46.186048 ], + [ 6.1837412, 46.1861402 ], + [ 6.1837099, 46.1861458 ], + [ 6.1834123, 46.1861718 ], + [ 6.1832785, 46.1862239 ], + [ 6.1830617, 46.1862631 ], + [ 6.1830616, 46.1862631 ], + [ 6.1830614, 46.1862632 ], + [ 6.1826024, 46.1864686 ], + [ 6.1822893, 46.1866088 ], + [ 6.182113, 46.1866774 ], + [ 6.182112, 46.186678 ], + [ 6.18212, 46.1866846 ], + [ 6.1820287, 46.1867254 ], + [ 6.1820027, 46.1867416 ], + [ 6.1818669, 46.1867973 ], + [ 6.1818398, 46.1868142 ], + [ 6.1813953, 46.1871925 ], + [ 6.181167, 46.1870828 ], + [ 6.1810313, 46.1865661 ], + [ 6.1802094, 46.1856813 ], + [ 6.1789626, 46.1850823 ], + [ 6.1784941, 46.1850121 ], + [ 6.1785627, 46.1847831 ], + [ 6.1786026, 46.1845509 ], + [ 6.1786135, 46.1843172 ], + [ 6.1785953, 46.1840837 ], + [ 6.1785481, 46.1838522 ], + [ 6.1784724, 46.1836243 ], + [ 6.1783686, 46.1834019 ], + [ 6.1782446, 46.1831968 ], + [ 6.1780968, 46.1829995 ], + [ 6.1779262, 46.1828113 ], + [ 6.1777339, 46.1826335 ], + [ 6.1775212, 46.1824672 ], + [ 6.1772896, 46.1823137 ], + [ 6.1770407, 46.1821738 ], + [ 6.176776, 46.1820486 ], + [ 6.1767255, 46.1820272 ], + [ 6.1767054, 46.1820187 ], + [ 6.1764992, 46.1819384 ], + [ 6.1762864, 46.1818669 ], + [ 6.1760678, 46.1818045 ], + [ 6.1756799, 46.1814302 ], + [ 6.1755811, 46.1813662 ], + [ 6.1745732, 46.1808938 ], + [ 6.1734044, 46.180661 ], + [ 6.1721893, 46.1806905 ], + [ 6.1710467, 46.1809794 ], + [ 6.1706245, 46.1812086 ], + [ 6.1706047, 46.1812102 ], + [ 6.1694965, 46.1815602 ], + [ 6.1685986, 46.1821312 ], + [ 6.1685571, 46.1821674 ], + [ 6.1679581, 46.1829025 ], + [ 6.1677156, 46.1837302 ], + [ 6.1678534, 46.1845694 ], + [ 6.167865, 46.1845871 ], + [ 6.1675458, 46.1856143 ], + [ 6.1678174, 46.1866502 ], + [ 6.1684615, 46.1873439 ], + [ 6.168459, 46.1873462 ], + [ 6.1683866, 46.1874884 ], + [ 6.1674421, 46.1876078 ], + [ 6.166168, 46.1881785 ], + [ 6.1657241, 46.1886241 ], + [ 6.1654454, 46.1886738 ], + [ 6.1652835, 46.1880562 ], + [ 6.1652588, 46.1880296 ], + [ 6.1651375, 46.187567 ], + [ 6.1643159, 46.1866821 ], + [ 6.1640001, 46.1865303 ], + [ 6.1639078, 46.1859852 ], + [ 6.1633992, 46.1852179 ], + [ 6.1631614, 46.1849704 ], + [ 6.1625725, 46.1845606 ], + [ 6.1625722, 46.1845604 ], + [ 6.1624803, 46.1842437 ], + [ 6.1618734, 46.1835014 ], + [ 6.161803, 46.1834404 ], + [ 6.1606713, 46.1827738 ], + [ 6.1592623, 46.1824505 ], + [ 6.1577815, 46.1825177 ], + [ 6.1576084, 46.1825757 ], + [ 6.1575897, 46.1825768 ], + [ 6.1573717, 46.182655 ], + [ 6.1573233, 46.1826713 ], + [ 6.157305, 46.1826658 ], + [ 6.1562787, 46.1826568 ], + [ 6.1561785, 46.182391 ], + [ 6.1561764, 46.1823881 ], + [ 6.1561761, 46.1823876 ], + [ 6.156176, 46.1823875 ], + [ 6.1561088999999996, 46.1822915 ], + [ 6.1561088, 46.1822914 ], + [ 6.1560667, 46.1822312 ], + [ 6.1559369, 46.1820455 ], + [ 6.1556231, 46.1817331 ], + [ 6.1557221, 46.1814147 ], + [ 6.1554508, 46.1803787 ], + [ 6.1546294, 46.1794937 ], + [ 6.153383, 46.1788944 ], + [ 6.1526292, 46.1787813 ], + [ 6.1516003, 46.1782866 ], + [ 6.1511987, 46.1782263 ], + [ 6.1509598, 46.1780292 ], + [ 6.1499279, 46.1775829 ], + [ 6.1487479, 46.17738 ], + [ 6.148606, 46.1773871 ], + [ 6.148549, 46.1768305 ], + [ 6.1478713, 46.175889 ], + [ 6.1474574, 46.1755185 ], + [ 6.1463125, 46.1748285 ], + [ 6.1456953, 46.1746856 ], + [ 6.1455474, 46.1741201 ], + [ 6.1447262, 46.1732351 ], + [ 6.1434801, 46.1726357 ], + [ 6.1421043, 46.1724291 ], + [ 6.1418776, 46.172281 ], + [ 6.1407776, 46.1719208 ], + [ 6.1395712, 46.1718146 ], + [ 6.1393535, 46.1718434 ], + [ 6.1395071, 46.1713498 ], + [ 6.1392362, 46.1703138 ], + [ 6.1384152, 46.1694287 ], + [ 6.1371692, 46.1688292 ], + [ 6.1356878, 46.1686067 ], + [ 6.1350051, 46.1686929 ], + [ 6.134831, 46.1680268 ], + [ 6.1340101, 46.1671417 ], + [ 6.1330406, 46.1666751 ], + [ 6.1330437, 46.1666148 ], + [ 6.1330998, 46.1664503 ], + [ 6.1330671, 46.1661736 ], + [ 6.133084, 46.1658532 ], + [ 6.1330135, 46.165721 ], + [ 6.133, 46.1656074 ], + [ 6.1325912, 46.1649295 ], + [ 6.1325586, 46.1648684 ], + [ 6.1325452, 46.1648532 ], + [ 6.1325296, 46.1648274 ], + [ 6.1324758, 46.164767 ], + [ 6.132092, 46.1644808 ], + [ 6.1317404, 46.1641955 ], + [ 6.1316679, 46.1641647 ], + [ 6.1314437, 46.1639975 ], + [ 6.1307736, 46.1637849 ], + [ 6.130703, 46.163755 ], + [ 6.130653, 46.1637467 ], + [ 6.1300667, 46.1635607 ], + [ 6.1285539, 46.1635228 ], + [ 6.1271352, 46.1638896 ], + [ 6.1269991, 46.1639478 ], + [ 6.125889, 46.1646644 ], + [ 6.125258, 46.1656217 ], + [ 6.1252022, 46.1666738 ], + [ 6.1257301, 46.1676608 ], + [ 6.1257837, 46.1677212 ], + [ 6.1259354, 46.1678441 ], + [ 6.1257357, 46.1681102 ], + [ 6.1256353, 46.1688936 ], + [ 6.1252712, 46.1687944 ], + [ 6.1250238, 46.1687974 ], + [ 6.1251653, 46.1683433 ], + [ 6.1248946, 46.1673072 ], + [ 6.1240739, 46.166422 ], + [ 6.1239773, 46.1663755 ], + [ 6.1241276, 46.165893 ], + [ 6.1238569, 46.164857 ], + [ 6.1230362, 46.1639718 ], + [ 6.1217905, 46.1633721 ], + [ 6.1211803, 46.1632804 ], + [ 6.1214686, 46.1631593 ], + [ 6.1220174, 46.162705 ], + [ 6.1221193, 46.162815 ], + [ 6.123365, 46.1634146 ], + [ 6.1248461, 46.1636373 ], + [ 6.1263372, 46.1634492 ], + [ 6.1276111, 46.162879 ], + [ 6.128474, 46.1620134 ], + [ 6.1287944, 46.1609842 ], + [ 6.1285237, 46.1599482 ], + [ 6.127935, 46.1593132 ], + [ 6.1280012, 46.1592468 ], + [ 6.1283216, 46.1582177 ], + [ 6.1280509, 46.1571817 ], + [ 6.1272303, 46.1562965 ], + [ 6.1259847, 46.1556969 ], + [ 6.1245038, 46.1554742 ], + [ 6.123013, 46.1556623 ], + [ 6.1217392, 46.1562325 ], + [ 6.1208763, 46.157098 ], + [ 6.1206517, 46.1578189 ], + [ 6.1194507, 46.1572407 ], + [ 6.1189002, 46.1571579 ], + [ 6.1186473, 46.1570361 ], + [ 6.1171664, 46.1568133 ], + [ 6.1156755, 46.1570013 ], + [ 6.1144016, 46.1575714 ], + [ 6.1135386, 46.1584369 ], + [ 6.1132178, 46.159466 ], + [ 6.1134883, 46.1605021 ], + [ 6.1143087, 46.1613874 ], + [ 6.1151818, 46.1618077 ], + [ 6.1153954, 46.1622971 ], + [ 6.1154133999999996, 46.1623224 ], + [ 6.1162797, 46.1631198 ], + [ 6.1175043, 46.1636435 ], + [ 6.1179959, 46.1637054 ], + [ 6.1175443, 46.1639075 ], + [ 6.1174281, 46.1640242 ], + [ 6.1168962, 46.1642037 ], + [ 6.1168406, 46.164241 ], + [ 6.1158717, 46.163774599999996 ], + [ 6.1143907, 46.1635517 ], + [ 6.1128996, 46.1637396 ], + [ 6.1126752, 46.16384 ], + [ 6.1128602, 46.1632466 ], + [ 6.1125897, 46.1622106 ], + [ 6.1117693, 46.1613253 ], + [ 6.1105238, 46.1607255 ], + [ 6.1103681, 46.1607021 ], + [ 6.1102603, 46.1605434 ], + [ 6.1094183, 46.159925 ], + [ 6.1093536, 46.1598905 ], + [ 6.1082601, 46.1594811 ], + [ 6.1079892, 46.1594482 ], + [ 6.1077361, 46.1593661 ], + [ 6.1071573, 46.1593473 ], + [ 6.1070365, 46.1593326 ], + [ 6.1069576, 46.1593408 ], + [ 6.1062312, 46.1593172 ], + [ 6.1048127, 46.15967 ], + [ 6.1036941, 46.1603713 ], + [ 6.1036623, 46.1604009 ], + [ 6.1036566, 46.1604062 ], + [ 6.1035711, 46.1604862 ], + [ 6.1030065, 46.1612371 ], + [ 6.1029188, 46.1616004 ], + [ 6.102323, 46.1621978 ], + [ 6.102002, 46.1632268 ], + [ 6.1022723, 46.1642629 ], + [ 6.1023069, 46.1643003 ], + [ 6.1018011, 46.1644777 ], + [ 6.1009393, 46.1650724 ], + [ 6.100939, 46.1650723 ], + [ 6.1007946, 46.1652092 ], + [ 6.1007937, 46.16521 ], + [ 6.1007932, 46.1652105 ], + [ 6.1002375, 46.1659614 ], + [ 6.100043, 46.1667949 ], + [ 6.1002287, 46.1676293 ], + [ 6.1007764, 46.168383 ], + [ 6.1011741, 46.1686614 ], + [ 6.1020235, 46.1693049 ], + [ 6.1021489, 46.1693688 ], + [ 6.1023746, 46.1694496 ], + [ 6.1025054, 46.1695163 ], + [ 6.1026075, 46.1695528 ], + [ 6.1026692, 46.1695994 ], + [ 6.1027407, 46.1696357 ], + [ 6.1038235, 46.1700211 ], + [ 6.1041311, 46.1700554 ], + [ 6.1037586, 46.1704287 ], + [ 6.1034486, 46.1714227 ], + [ 6.1031185, 46.171373 ], + [ 6.1016271, 46.1715608 ], + [ 6.1010292, 46.1718282 ], + [ 6.0999915, 46.1719588 ], + [ 6.098717, 46.1725288 ], + [ 6.0978535, 46.1733941 ], + [ 6.0975324, 46.1744232 ], + [ 6.0978026, 46.1754593 ], + [ 6.0986231, 46.1763447 ], + [ 6.0988163, 46.1764378 ], + [ 6.0984423, 46.1767648 ], + [ 6.097308, 46.1765416 ], + [ 6.0964031, 46.1766151 ], + [ 6.0961984, 46.176615 ], + [ 6.0960849, 46.1766409 ], + [ 6.0958033, 46.1766638 ], + [ 6.0955441, 46.1767642 ], + [ 6.0950315, 46.1768811 ], + [ 6.0940425, 46.1773869 ], + [ 6.0933689, 46.1780441 ], + [ 6.0933646, 46.1780425 ], + [ 6.0933486, 46.1780639 ], + [ 6.0933301, 46.1780819 ], + [ 6.0933289, 46.1780836 ], + [ 6.0933235, 46.1780977 ], + [ 6.0933043, 46.1781234 ], + [ 6.0933087, 46.178125 ], + [ 6.0932697, 46.178163 ], + [ 6.0932685, 46.1781647 ], + [ 6.0928739, 46.1791683 ], + [ 6.0929859, 46.1798066 ], + [ 6.0925049, 46.1800217 ], + [ 6.0921603, 46.180367 ], + [ 6.0917205, 46.1801552 ], + [ 6.0902391, 46.1799321 ], + [ 6.0891312, 46.1800714 ], + [ 6.0891881, 46.1800028 ], + [ 6.0896211, 46.1798093 ], + [ 6.0904848, 46.178944 ], + [ 6.090806, 46.1779149 ], + [ 6.0905359, 46.1768788 ], + [ 6.0897156, 46.1759934 ], + [ 6.0884835, 46.1753999 ], + [ 6.0884168, 46.175144 ], + [ 6.0882475, 46.1749612 ], + [ 6.0883832, 46.1745266 ], + [ 6.0884481, 46.1744615 ], + [ 6.0887694, 46.1734325 ], + [ 6.0884994, 46.1723963 ], + [ 6.0876792, 46.1715109 ], + [ 6.0864337, 46.1709108 ], + [ 6.0849525, 46.1706876 ], + [ 6.0834611, 46.1708752 ], + [ 6.0824057, 46.171347 ], + [ 6.0822219, 46.1711486 ], + [ 6.0809765, 46.1705485 ], + [ 6.0794954, 46.1703252 ], + [ 6.078004, 46.1705127 ], + [ 6.0769933, 46.1709644 ], + [ 6.0763221, 46.1702395 ], + [ 6.0750767, 46.1696394 ], + [ 6.0735956, 46.169416 ], + [ 6.0721043, 46.1696034 ], + [ 6.072033, 46.1696352 ], + [ 6.07164, 46.1695759 ], + [ 6.0701486, 46.1697633 ], + [ 6.0688739, 46.1703329 ], + [ 6.06801, 46.1711981 ], + [ 6.0676883, 46.1722271 ], + [ 6.0677033, 46.1722847 ], + [ 6.0675777, 46.1723408 ], + [ 6.0667394, 46.172022 ], + [ 6.0654653, 46.1718732 ], + [ 6.0647996, 46.1719514 ], + [ 6.0645052, 46.171901 ], + [ 6.0632189, 46.1719837 ], + [ 6.0630028, 46.1720519 ], + [ 6.0628721, 46.1720419 ], + [ 6.0614283, 46.1723293 ], + [ 6.0602493, 46.1729757 ], + [ 6.0595113, 46.1738845 ], + [ 6.0593774, 46.1741661 ], + [ 6.0591905, 46.1751975 ], + [ 6.0595786, 46.1762015 ], + [ 6.0604843, 46.177029 ], + [ 6.0611204, 46.1772898 ], + [ 6.0607492, 46.1773766 ], + [ 6.0606162, 46.1774249 ], + [ 6.0594371, 46.1780847 ], + [ 6.0587105, 46.1790074 ], + [ 6.0585469, 46.180053 ], + [ 6.058971, 46.1810626 ], + [ 6.059015, 46.1811213 ], + [ 6.0597388, 46.1818004 ], + [ 6.0607295, 46.1822908 ], + [ 6.06189, 46.1825443 ], + [ 6.0619605, 46.1825438 ], + [ 6.0623294, 46.1828924 ], + [ 6.0633339, 46.1833887 ], + [ 6.0640462, 46.1835416 ], + [ 6.0640985, 46.1835605 ], + [ 6.0641502, 46.1835639 ], + [ 6.0645116, 46.1836414 ], + [ 6.0652074, 46.1836323 ], + [ 6.0655914, 46.1836571 ], + [ 6.0657422, 46.1836252 ], + [ 6.065744, 46.1836252 ], + [ 6.0657554, 46.1836225 ], + [ 6.0670258, 46.1833539 ], + [ 6.0671115, 46.1833221 ], + [ 6.0680899, 46.1828073 ], + [ 6.0687883, 46.1821062 ], + [ 6.0691369, 46.1812887 ], + [ 6.0691009, 46.1804364 ], + [ 6.068684, 46.1796345 ], + [ 6.0686248, 46.1795601 ], + [ 6.0676555, 46.1787608 ], + [ 6.0663218, 46.1782773 ], + [ 6.0656926, 46.1782372 ], + [ 6.0652767, 46.1778468 ], + [ 6.0653059, 46.1778441 ], + [ 6.0654577, 46.1778512 ], + [ 6.0657735, 46.1778226 ], + [ 6.0672093, 46.1774857 ], + [ 6.0679223, 46.1770528 ], + [ 6.0679909, 46.1770858 ], + [ 6.0688848, 46.1772207 ], + [ 6.0690329, 46.1777899 ], + [ 6.0698529, 46.1786755 ], + [ 6.0707745, 46.1791196 ], + [ 6.0714485, 46.1798474 ], + [ 6.0711607, 46.1801338 ], + [ 6.0710019, 46.1802581 ], + [ 6.0709683, 46.1803253 ], + [ 6.0708885, 46.1804047 ], + [ 6.0706098, 46.1810416 ], + [ 6.070506, 46.1812489 ], + [ 6.0705011, 46.1812732 ], + [ 6.0705236, 46.182119 ], + [ 6.0705952, 46.1822628 ], + [ 6.0706111, 46.1824509 ], + [ 6.0707643000000004, 46.1826705 ], + [ 6.0707711, 46.1829084 ], + [ 6.0705787, 46.1830966 ], + [ 6.0704008, 46.1833562 ], + [ 6.0700337, 46.1843249 ], + [ 6.0701775, 46.185183 ], + [ 6.0696219, 46.1851515 ], + [ 6.0681808, 46.1854729 ], + [ 6.0676006, 46.1858142 ], + [ 6.0674712, 46.1858166 ], + [ 6.0674412, 46.1857926 ], + [ 6.0673334, 46.1856982 ], + [ 6.0672196, 46.1856071 ], + [ 6.0671001, 46.1855197 ], + [ 6.0667833, 46.1852663 ], + [ 6.0657417, 46.1848309 ], + [ 6.0647691, 46.1845574 ], + [ 6.0645621, 46.1843615 ], + [ 6.064476, 46.1843024 ], + [ 6.0632115, 46.1837219 ], + [ 6.0617234, 46.1835217 ], + [ 6.0602383, 46.1837322 ], + [ 6.0600164, 46.1838363 ], + [ 6.0599615, 46.1838441 ], + [ 6.0599241, 46.183855 ], + [ 6.0588901, 46.1843002 ], + [ 6.0581051, 46.1849457 ], + [ 6.0576459, 46.1857282 ], + [ 6.0575576, 46.186571 ], + [ 6.0578489, 46.1873914 ], + [ 6.0578789, 46.1874408 ], + [ 6.0580383, 46.1876043 ], + [ 6.0580627, 46.1876476 ], + [ 6.0585865, 46.1882161 ], + [ 6.0587093, 46.1883843 ], + [ 6.0587985, 46.1884461 ], + [ 6.0588784, 46.1885329 ], + [ 6.0590284, 46.1886056 ], + [ 6.0591834, 46.1887131 ], + [ 6.0591985, 46.1887337 ], + [ 6.0592649, 46.1887968 ], + [ 6.0592937, 46.1888152 ], + [ 6.0594167, 46.1889831 ], + [ 6.0596229, 46.1891804 ], + [ 6.0598619, 46.189334 ], + [ 6.0598833, 46.1893546 ], + [ 6.0598948, 46.189362 ], + [ 6.0599747, 46.189471 ], + [ 6.0600448, 46.189538 ], + [ 6.0603082, 46.1897072 ], + [ 6.0612494, 46.1903231 ], + [ 6.0612971, 46.1903439 ], + [ 6.0622236, 46.1906375 ], + [ 6.0632281, 46.1907539 ], + [ 6.0642416, 46.190685 ], + [ 6.0642963, 46.1906761 ], + [ 6.0644948, 46.1906138 ], + [ 6.0646947, 46.1906226 ], + [ 6.0655861, 46.1910462 ], + [ 6.065674, 46.1910752 ], + [ 6.067144, 46.1913323 ], + [ 6.0686437, 46.1911792 ], + [ 6.069945, 46.1906392 ], + [ 6.0700063, 46.1905821 ], + [ 6.0711145, 46.1904939 ], + [ 6.0722225, 46.190142 ], + [ 6.0731190999999995, 46.1895692 ], + [ 6.0731598, 46.1895335 ], + [ 6.073756, 46.1887976 ], + [ 6.0739956, 46.1879697 ], + [ 6.0738734, 46.1872405 ], + [ 6.0746344, 46.1873195 ], + [ 6.0760418, 46.1872862 ], + [ 6.0773396, 46.1869068 ], + [ 6.0783575, 46.186231 ], + [ 6.0786535, 46.1857983 ], + [ 6.0788873, 46.1857768 ], + [ 6.0794614, 46.1855817 ], + [ 6.0803219, 46.1861384 ], + [ 6.0804162999999996, 46.186179 ], + [ 6.0815377, 46.1865052 ], + [ 6.0827494, 46.1865747 ], + [ 6.0839326, 46.1863807 ], + [ 6.0849716, 46.1859421 ], + [ 6.0857646, 46.1853021 ], + [ 6.085829, 46.1852297 ], + [ 6.0863589, 46.1842433 ], + [ 6.0863051, 46.1831911 ], + [ 6.0856757, 46.1822333 ], + [ 6.0849817999999996, 46.1817843 ], + [ 6.0857006, 46.1818471 ], + [ 6.0865693, 46.1816819 ], + [ 6.0862876, 46.1825838 ], + [ 6.0865576, 46.1836199 ], + [ 6.087378, 46.1845054 ], + [ 6.0886238, 46.1851054 ], + [ 6.0899138, 46.1852997 ], + [ 6.0899333, 46.1853747 ], + [ 6.0907538, 46.1862602 ], + [ 6.0910248, 46.1863907 ], + [ 6.0908742, 46.1864607 ], + [ 6.089996, 46.1868631 ], + [ 6.0899255, 46.1869082 ], + [ 6.0895340000000004, 46.1872806 ], + [ 6.0891809, 46.187583 ], + [ 6.0891424, 46.1876532 ], + [ 6.0890335, 46.1877567 ], + [ 6.0889421, 46.1880174 ], + [ 6.0887439, 46.1883779 ], + [ 6.0887262, 46.1886333 ], + [ 6.0886756, 46.1887775 ], + [ 6.0887065, 46.1889167 ], + [ 6.0886849, 46.1892277 ], + [ 6.0888912, 46.1897484 ], + [ 6.0889061, 46.1898159 ], + [ 6.0889276, 46.1898406 ], + [ 6.0890098, 46.190048 ], + [ 6.0896863, 46.1907574 ], + [ 6.0897806, 46.1908286 ], + [ 6.0899575, 46.1909623 ], + [ 6.0901063, 46.191044 ], + [ 6.0901159, 46.1910512 ], + [ 6.0901601, 46.1910736 ], + [ 6.0904531, 46.1912345 ], + [ 6.090145, 46.1914331 ], + [ 6.0895139, 46.192377 ], + [ 6.0894561, 46.1932372 ], + [ 6.0893245, 46.1935811 ], + [ 6.0888775, 46.1934951 ], + [ 6.0876615, 46.1935326 ], + [ 6.0865218, 46.1938294 ], + [ 6.086108, 46.1939925 ], + [ 6.0860005, 46.1940348 ], + [ 6.0859296, 46.1940534 ], + [ 6.0858878, 46.19407 ], + [ 6.0858499, 46.194085 ], + [ 6.0857909, 46.1941083 ], + [ 6.0852708, 46.1944213 ], + [ 6.0842315, 46.1939582 ], + [ 6.0827411, 46.1937716 ], + [ 6.0812612, 46.1939948 ], + [ 6.0800165, 46.1945938 ], + [ 6.0799437, 46.1946461 ], + [ 6.0791231, 46.1955302 ], + [ 6.0790058, 46.1959772 ], + [ 6.0787343, 46.1962338 ], + [ 6.0781832, 46.1963178 ], + [ 6.0771336, 46.1967454 ], + [ 6.0770921, 46.1967691 ], + [ 6.0762847, 46.1974007 ], + [ 6.0760031, 46.1978484 ], + [ 6.0758245, 46.198034 ], + [ 6.0758047, 46.1980673 ], + [ 6.0755205, 46.1988889 ], + [ 6.0755612, 46.199247 ], + [ 6.0755513, 46.1992724 ], + [ 6.0755397, 46.1993472 ], + [ 6.0755455, 46.1993923 ], + [ 6.0754517, 46.1999462 ], + [ 6.0756904, 46.200775 ], + [ 6.0762865, 46.2015118 ], + [ 6.0771817, 46.2020844 ], + [ 6.0782881, 46.2024367 ], + [ 6.0783202, 46.202443 ], + [ 6.0795287, 46.2025404 ], + [ 6.0795463, 46.2025379 ], + [ 6.079585, 46.202541 ], + [ 6.0804607, 46.2024177 ], + [ 6.0805628, 46.2025226 ], + [ 6.0806718, 46.2026242 ], + [ 6.0807876, 46.202722 ], + [ 6.0806754, 46.2027726 ], + [ 6.0798164, 46.2036391 ], + [ 6.0794997, 46.2046679 ], + [ 6.079498, 46.2047532 ], + [ 6.0797536, 46.2057196 ], + [ 6.0797596, 46.2057524 ], + [ 6.0797635, 46.2057572 ], + [ 6.0797714, 46.2057869 ], + [ 6.0799161999999995, 46.2059425 ], + [ 6.0802661, 46.2063673 ], + [ 6.0803368, 46.2064793 ], + [ 6.0803903, 46.2065181 ], + [ 6.0805121, 46.206666 ], + [ 6.08083, 46.2068369 ], + [ 6.0812743, 46.207159 ], + [ 6.0812908, 46.2071674 ], + [ 6.0824662, 46.2075737 ], + [ 6.0837693999999995, 46.2076852 ], + [ 6.0850518, 46.207489 ], + [ 6.0861668, 46.2070076 ], + [ 6.0861831, 46.2069976 ], + [ 6.0863787, 46.2068312 ], + [ 6.0866227, 46.2067168 ], + [ 6.0866387, 46.2067065 ], + [ 6.0868836, 46.2064881 ], + [ 6.0874356, 46.2070672 ], + [ 6.0883887, 46.2075931 ], + [ 6.0895295, 46.2078886 ], + [ 6.0907459, 46.2079245 ], + [ 6.0919186, 46.2076974 ], + [ 6.0919462, 46.2076886 ], + [ 6.0931743, 46.2070729 ], + [ 6.0936202999999995, 46.2065715 ], + [ 6.0939312, 46.2067212 ], + [ 6.0941088, 46.2067479 ], + [ 6.0938282, 46.2068856 ], + [ 6.0936041, 46.2070373 ], + [ 6.0928765, 46.2077143 ], + [ 6.0928495, 46.2077695 ], + [ 6.0925441, 46.2080504 ], + [ 6.0924024, 46.2083358 ], + [ 6.0923807, 46.2083575 ], + [ 6.0923616, 46.2084182 ], + [ 6.0921472, 46.20885 ], + [ 6.0921405, 46.2091197 ], + [ 6.0920569, 46.2093849 ], + [ 6.0921271, 46.2096579 ], + [ 6.0921262, 46.2096957 ], + [ 6.0921518, 46.2097536 ], + [ 6.0923234, 46.2104203 ], + [ 6.0931396, 46.2113062 ], + [ 6.0932329, 46.2113736 ], + [ 6.0932601, 46.2113934 ], + [ 6.0932602, 46.2113934 ], + [ 6.0933781, 46.2114786 ], + [ 6.0943521, 46.2119904 ], + [ 6.0955069, 46.2122671 ], + [ 6.0967283, 46.2122813 ], + [ 6.0967782, 46.2122706 ], + [ 6.0968952, 46.2122722 ], + [ 6.0980619, 46.2120265 ], + [ 6.0982686, 46.2119263 ], + [ 6.0983165, 46.2119209 ], + [ 6.0996062, 46.211368 ], + [ 6.0996966, 46.2113096 ], + [ 6.1002007, 46.2108625 ], + [ 6.1003458, 46.2107949 ], + [ 6.1006295, 46.2106118 ], + [ 6.1012789, 46.2099883 ], + [ 6.1020631, 46.2103253 ], + [ 6.1032445, 46.210526 ], + [ 6.1044574, 46.2104635 ], + [ 6.1052812, 46.2102295 ], + [ 6.1051082, 46.2103439 ], + [ 6.1047192, 46.210844 ], + [ 6.1046787, 46.2108846 ], + [ 6.1046727, 46.2109039 ], + [ 6.1045297, 46.2110878 ], + [ 6.104311, 46.2119193 ], + [ 6.1044267, 46.2125152 ], + [ 6.1036505, 46.2128621 ], + [ 6.1027865, 46.2137276 ], + [ 6.1024652, 46.2147566 ], + [ 6.1026745, 46.2155583 ], + [ 6.1019857, 46.2162481 ], + [ 6.1016645, 46.2172771 ], + [ 6.1016832, 46.217349 ], + [ 6.1016535, 46.2174442 ], + [ 6.1017457, 46.2177971 ], + [ 6.1016534, 46.2177834 ], + [ 6.1012148, 46.2178151 ], + [ 6.1007739, 46.2175744 ], + [ 6.1009164, 46.2175045 ], + [ 6.101662, 46.21679 ], + [ 6.1016783, 46.2167672 ], + [ 6.1018033, 46.2164546 ], + [ 6.1020293, 46.2159931 ], + [ 6.1020313999999996, 46.2158839 ], + [ 6.1020751, 46.2157745 ], + [ 6.1020379, 46.215548 ], + [ 6.1020457, 46.2151487 ], + [ 6.1019298, 46.2148894 ], + [ 6.101907, 46.2147509 ], + [ 6.1018158, 46.2146343 ], + [ 6.1016853, 46.2143421 ], + [ 6.1012607, 46.2139248 ], + [ 6.1011987, 46.2138456 ], + [ 6.1011542, 46.2138201 ], + [ 6.1009835, 46.2136524 ], + [ 6.100009, 46.213147 ], + [ 6.0996838, 46.2130281 ], + [ 6.0982304, 46.2127288 ], + [ 6.0967226, 46.2128382 ], + [ 6.0953897, 46.2133397 ], + [ 6.0944345, 46.2141569 ], + [ 6.0943938, 46.2142104 ], + [ 6.0942499, 46.2145036 ], + [ 6.094157, 46.2144762 ], + [ 6.0931513, 46.2139922 ], + [ 6.0917688, 46.2137841 ], + [ 6.0915248, 46.2135209 ], + [ 6.0912236, 46.2133759 ], + [ 6.0909616, 46.2123713 ], + [ 6.0901407, 46.2114859 ], + [ 6.0888943, 46.2108859 ], + [ 6.087412, 46.2106627 ], + [ 6.0859196, 46.2108503 ], + [ 6.0846441, 46.2114201 ], + [ 6.0844899, 46.2115745 ], + [ 6.0844336, 46.2115138 ], + [ 6.0831872, 46.2109137 ], + [ 6.081705, 46.2106905 ], + [ 6.0802125, 46.210878 ], + [ 6.078937, 46.2114477 ], + [ 6.0788122, 46.2115726 ], + [ 6.078546, 46.211466 ], + [ 6.0770446, 46.2113288 ], + [ 6.0755816, 46.2116003 ], + [ 6.0743789, 46.2122392 ], + [ 6.074277, 46.2123196 ], + [ 6.0742738, 46.2123213 ], + [ 6.0742253999999996, 46.2123595 ], + [ 6.0735737, 46.213074399999996 ], + [ 6.0732727, 46.2138942 ], + [ 6.0733522, 46.2147384 ], + [ 6.0738003, 46.2155169 ], + [ 6.0732513, 46.2152526 ], + [ 6.071769, 46.2150292 ], + [ 6.0702764, 46.2152166 ], + [ 6.0690006, 46.2157862 ], + [ 6.068136, 46.2166513 ], + [ 6.0678141, 46.2176803 ], + [ 6.0680839, 46.2187165 ], + [ 6.0689045, 46.2196021 ], + [ 6.0701509, 46.2202023 ], + [ 6.0716334, 46.2204257 ], + [ 6.0731261, 46.2202384 ], + [ 6.0731266, 46.2202382 ], + [ 6.0729567, 46.220806 ], + [ 6.0732396, 46.2218399 ], + [ 6.0740708, 46.2227201 ], + [ 6.0742524, 46.2228485 ], + [ 6.0747545, 46.2230859 ], + [ 6.0748434, 46.2232483 ], + [ 6.0758786, 46.2240129 ], + [ 6.0772556, 46.2244456 ], + [ 6.0784487, 46.2244737 ], + [ 6.0783489, 46.2246246 ], + [ 6.078208, 46.2254638 ], + [ 6.0783325, 46.2258935 ], + [ 6.0780932, 46.2258203 ], + [ 6.0779178, 46.2258081 ], + [ 6.077502, 46.2256073 ], + [ 6.0760199, 46.2253825 ], + [ 6.0745267, 46.2255684 ], + [ 6.0744762, 46.2255821 ], + [ 6.0743938, 46.2255703 ], + [ 6.0743403, 46.2255521 ], + [ 6.0742301, 46.2255468 ], + [ 6.0736206, 46.2254592 ], + [ 6.0733586, 46.2254935 ], + [ 6.072895, 46.2249933 ], + [ 6.0722136, 46.2246652 ], + [ 6.071893, 46.2243193 ], + [ 6.0706465, 46.2237192 ], + [ 6.0704341, 46.2236872 ], + [ 6.0708684, 46.2232526 ], + [ 6.0711903, 46.2222236 ], + [ 6.0709204, 46.2211875 ], + [ 6.0700997, 46.2203019 ], + [ 6.0688533, 46.2197016 ], + [ 6.0673709, 46.2194782 ], + [ 6.0658781, 46.2196655 ], + [ 6.0650199, 46.2200486 ], + [ 6.0645659, 46.2196834 ], + [ 6.0640481, 46.2193796 ], + [ 6.0640451, 46.2193772 ], + [ 6.0638318, 46.2192522 ], + [ 6.0631595, 46.218969799999996 ], + [ 6.0635571, 46.2190237 ], + [ 6.0647702, 46.2189199 ], + [ 6.0658769, 46.2185598 ], + [ 6.0667678, 46.2179789 ], + [ 6.0668631, 46.2178935 ], + [ 6.0670597, 46.2176204 ], + [ 6.067158, 46.2175435 ], + [ 6.0672182, 46.2174476 ], + [ 6.0673673, 46.2173074 ], + [ 6.067478, 46.2172137 ], + [ 6.0674858, 46.217196 ], + [ 6.0678703, 46.2168344 ], + [ 6.0682355, 46.2158126 ], + [ 6.0680099, 46.2147716 ], + [ 6.067995, 46.2147544 ], + [ 6.0690469, 46.2144421 ], + [ 6.0699635, 46.2138856 ], + [ 6.0700808, 46.213788 ], + [ 6.0708034, 46.2128692 ], + [ 6.070968, 46.2118287 ], + [ 6.0705499, 46.2108229 ], + [ 6.0702305, 46.2105439 ], + [ 6.0701607, 46.2098505 ], + [ 6.0697019, 46.209065 ], + [ 6.0689149, 46.208417 ], + [ 6.0687912, 46.2083428 ], + [ 6.0674812, 46.2078252 ], + [ 6.0667119, 46.2077569 ], + [ 6.0662734, 46.2075764 ], + [ 6.0650827, 46.2073915 ], + [ 6.0638682, 46.2074719 ], + [ 6.0627494, 46.2078098 ], + [ 6.0625557, 46.207929 ], + [ 6.0623809, 46.2079763 ], + [ 6.0614281, 46.2085236 ], + [ 6.0613437, 46.2085904 ], + [ 6.0606872, 46.2093171 ], + [ 6.0603922, 46.2101502 ], + [ 6.0604249, 46.2104394 ], + [ 6.0603588, 46.2107929 ], + [ 6.0605145, 46.2111952 ], + [ 6.0605182, 46.2112359 ], + [ 6.0605553, 46.2113005 ], + [ 6.0607514, 46.2118071 ], + [ 6.0609474, 46.2119845 ], + [ 6.0609694, 46.2120229 ], + [ 6.0612309, 46.2122411 ], + [ 6.0616721, 46.2126405 ], + [ 6.0617358, 46.2126794 ], + [ 6.0618168, 46.2127149 ], + [ 6.0619097, 46.2127713 ], + [ 6.0627152, 46.2131235 ], + [ 6.0623954, 46.2131355 ], + [ 6.0610274, 46.2135903 ], + [ 6.0609444, 46.2136335 ], + [ 6.0599313, 46.2144171 ], + [ 6.0599243, 46.2144308 ], + [ 6.0597958, 46.2145241 ], + [ 6.0597075, 46.2146513 ], + [ 6.0596694, 46.2146812 ], + [ 6.059625, 46.2147703 ], + [ 6.0592674, 46.2152857 ], + [ 6.0592029, 46.2156171 ], + [ 6.0591746, 46.2156739 ], + [ 6.0591798, 46.2157357 ], + [ 6.0591042999999996, 46.2161234 ], + [ 6.0593226, 46.216955 ], + [ 6.0599008, 46.2176989 ], + [ 6.0599626, 46.2177551 ], + [ 6.059967, 46.2177591 ], + [ 6.0599672, 46.2177594 ], + [ 6.0599953, 46.2177848 ], + [ 6.060055, 46.2178391 ], + [ 6.0600672, 46.2178563 ], + [ 6.0600917, 46.2178785 ], + [ 6.0603896, 46.2180602 ], + [ 6.0603846, 46.2180635 ], + [ 6.0603862, 46.2180647 ], + [ 6.0604554, 46.2181003 ], + [ 6.0605233, 46.2181417 ], + [ 6.0606201, 46.2182049 ], + [ 6.0607199, 46.2182658 ], + [ 6.0608227, 46.2183243 ], + [ 6.0612308, 46.2185732 ], + [ 6.0614716, 46.2186301 ], + [ 6.0603922, 46.2186937 ], + [ 6.0592705, 46.2190219 ], + [ 6.05835, 46.2195748 ], + [ 6.0577971, 46.2200302 ], + [ 6.057168, 46.2207536 ], + [ 6.0570691, 46.2210485 ], + [ 6.0569738, 46.2210941 ], + [ 6.0568804, 46.2211418 ], + [ 6.0567891, 46.2211913 ], + [ 6.0563892, 46.2214491 ], + [ 6.0563644, 46.2214675 ], + [ 6.0563266, 46.2214955 ], + [ 6.0563262, 46.2214958 ], + [ 6.0563023, 46.2215135 ], + [ 6.0563022, 46.2215136 ], + [ 6.0562525, 46.2215505 ], + [ 6.0562524, 46.2215506 ], + [ 6.0562387, 46.2215607 ], + [ 6.0561709, 46.2216111 ], + [ 6.0561656, 46.221615 ], + [ 6.0561529, 46.2216244 ], + [ 6.0560576, 46.2216985 ], + [ 6.0559663, 46.2217749 ], + [ 6.0558791, 46.2218536 ], + [ 6.0558468, 46.2218257 ], + [ 6.0558422, 46.221823 ], + [ 6.0557566, 46.2217489 ], + [ 6.0556007, 46.2216894 ], + [ 6.0556055, 46.2216855 ], + [ 6.0555407, 46.2216478 ], + [ 6.0554614, 46.2215778 ], + [ 6.055383, 46.2215472 ], + [ 6.055331, 46.221502 ], + [ 6.0552677, 46.2214776 ], + [ 6.0552244, 46.2214399 ], + [ 6.0551017, 46.2213927 ], + [ 6.0550828, 46.2213817 ], + [ 6.0550531, 46.2213704 ], + [ 6.055024, 46.2213471 ], + [ 6.0549214, 46.2212874 ], + [ 6.0548227, 46.22123 ], + [ 6.0547134, 46.2211663 ], + [ 6.0547081, 46.2211632 ], + [ 6.0546863, 46.2211505 ], + [ 6.0545037, 46.2210812 ], + [ 6.0541532, 46.2208773 ], + [ 6.0531097, 46.2204425 ], + [ 6.0519238, 46.220253 ], + [ 6.0507115, 46.2203272 ], + [ 6.0495916, 46.220658 ], + [ 6.048674, 46.2212128 ], + [ 6.0484239, 46.2214201 ], + [ 6.0476959, 46.2223433 ], + [ 6.047532, 46.2233897 ], + [ 6.0476636, 46.2237024 ], + [ 6.047754, 46.2244233 ], + [ 6.047756, 46.2244266 ], + [ 6.0477464, 46.2244875 ], + [ 6.0477723, 46.2245489 ], + [ 6.0478094, 46.2248425 ], + [ 6.0480868, 46.2252959 ], + [ 6.0481719, 46.225498 ], + [ 6.0482537, 46.2255687 ], + [ 6.048285, 46.2256197 ], + [ 6.0485047, 46.225795 ], + [ 6.0487757, 46.2260972 ], + [ 6.049053, 46.226259 ], + [ 6.049122, 46.2263186 ], + [ 6.0492127, 46.2263713 ], + [ 6.0492185, 46.2263665 ], + [ 6.0492938, 46.2264309 ], + [ 6.0487606, 46.2265785 ], + [ 6.0485887, 46.226651 ], + [ 6.0485834, 46.2266533 ], + [ 6.0474366, 46.2271391 ], + [ 6.0474336, 46.2271404 ], + [ 6.0466719, 46.2274638 ], + [ 6.0466692, 46.2274649 ], + [ 6.045795, 46.2278367 ], + [ 6.0455715, 46.2279315 ], + [ 6.0455704, 46.227932 ], + [ 6.0449112, 46.2282119 ], + [ 6.0449106, 46.2282122 ], + [ 6.0440882, 46.2285616 ], + [ 6.0438041, 46.2286816 ], + [ 6.0437868, 46.228689 ], + [ 6.04189, 46.2295002 ], + [ 6.0407821, 46.2302133 ], + [ 6.0403022, 46.2309357 ], + [ 6.0401066, 46.2310305 ], + [ 6.0401037, 46.2310319 ], + [ 6.0398923, 46.2311344 ], + [ 6.0398916, 46.2311348 ], + [ 6.0396805, 46.2312373 ], + [ 6.0394492, 46.2313588 ], + [ 6.0391695, 46.2315175 ], + [ 6.0391528, 46.231527 ], + [ 6.0389589, 46.2316382 ], + [ 6.0386925, 46.2317897 ], + [ 6.0386659, 46.2318002 ], + [ 6.0378299, 46.2322813 ], + [ 6.0372329, 46.2326239 ], + [ 6.0372286, 46.2326264 ], + [ 6.036631, 46.2329703 ], + [ 6.0366244, 46.2329741 ], + [ 6.0364049, 46.2331011 ], + [ 6.0362484, 46.2331966 ], + [ 6.0356987, 46.2335506 ], + [ 6.0356983, 46.2335509 ], + [ 6.0349395, 46.2340398 ], + [ 6.0349359, 46.2340422 ], + [ 6.0343406, 46.2344267 ], + [ 6.0322818, 46.2357512 ], + [ 6.0322703, 46.2357586 ], + [ 6.0310413, 46.2365557 ], + [ 6.0307771, 46.2368019 ], + [ 6.0322383, 46.2375954 ], + [ 6.0336528, 46.2385514 ], + [ 6.0388915, 46.2351721 ], + [ 6.0407126, 46.2341257 ], + [ 6.0421279, 46.233309 ], + [ 6.0461113, 46.2313936 ], + [ 6.046147, 46.2314222 ], + [ 6.0462191, 46.2314958 ], + [ 6.0463245, 46.2316406 ], + [ 6.0465269, 46.2319315 ], + [ 6.0468744, 46.2324718 ], + [ 6.0472802, 46.2330956 ], + [ 6.0474518, 46.2334037 ], + [ 6.047666, 46.2332938 ], + [ 6.0479287, 46.2331719 ], + [ 6.0480063, 46.2331499 ], + [ 6.0480296, 46.2331599 ], + [ 6.0482131, 46.2333114 ], + [ 6.0484784, 46.2334811 ], + [ 6.0487848, 46.2337143 ], + [ 6.0490088, 46.2338818 ], + [ 6.0495062, 46.2342891 ], + [ 6.0495621, 46.2343822 ], + [ 6.0496731, 46.2345281 ], + [ 6.049662, 46.2345461 ], + [ 6.0499856, 46.2348651 ], + [ 6.0502982, 46.2351392 ], + [ 6.0504303, 46.2353188 ], + [ 6.0505964, 46.2355373 ], + [ 6.0507172, 46.2357205 ], + [ 6.0508327, 46.2358635 ], + [ 6.051012, 46.2363119 ], + [ 6.0510762, 46.2364666 ], + [ 6.0511618, 46.2365725 ], + [ 6.0512473, 46.2367278 ], + [ 6.0513331, 46.2369085 ], + [ 6.0515039999999996, 46.2371682 ], + [ 6.0515763, 46.2372859 ], + [ 6.0517014, 46.2374709 ], + [ 6.0517194, 46.2375501 ], + [ 6.0518702, 46.2377365 ], + [ 6.0520151, 46.2378901 ], + [ 6.0521554, 46.2380967 ], + [ 6.0520902, 46.2382323 ], + [ 6.0527063, 46.2388075 ], + [ 6.0533037, 46.2393819 ], + [ 6.0542916, 46.2394773 ], + [ 6.0555264, 46.2393158 ], + [ 6.0570065, 46.2389426 ], + [ 6.0570135, 46.2389408 ], + [ 6.0581252, 46.2386588 ], + [ 6.0590257, 46.2383323 ], + [ 6.0597735, 46.2378551 ], + [ 6.0603178, 46.2372598 ], + [ 6.0603278, 46.2372449 ], + [ 6.0606386, 46.236542 ], + [ 6.0606644, 46.2358071 ], + [ 6.0605065, 46.2353759 ], + [ 6.0606893, 46.2350041 ], + [ 6.0607034, 46.2348002 ], + [ 6.0607217, 46.2347953 ], + [ 6.0619405, 46.2342687 ], + [ 6.0628008, 46.2334711 ], + [ 6.0631855, 46.2325112 ], + [ 6.0630421, 46.2315199 ], + [ 6.0623901, 46.2306322 ], + [ 6.0623578, 46.2306031 ], + [ 6.0622346, 46.2304978 ], + [ 6.0617257, 46.2300848 ], + [ 6.0608078, 46.2295399 ], + [ 6.0606255, 46.229487 ], + [ 6.0605654, 46.2288713 ], + [ 6.0601108, 46.2280868 ], + [ 6.0593435, 46.2271977 ], + [ 6.0585057, 46.2265162 ], + [ 6.0573927, 46.2260626 ], + [ 6.0561271, 46.2258869 ], + [ 6.056002, 46.2258987 ], + [ 6.0560236, 46.2258808 ], + [ 6.0563297, 46.2256273 ], + [ 6.0564323, 46.2254973 ], + [ 6.056462, 46.2255166 ], + [ 6.0564625, 46.2255169 ], + [ 6.0565206, 46.2255546 ], + [ 6.0565217, 46.2255552 ], + [ 6.0566845, 46.2256607 ], + [ 6.0569419, 46.225814 ], + [ 6.0572175, 46.2259512 ], + [ 6.0575092, 46.2260713 ], + [ 6.0578149, 46.2261734 ], + [ 6.0581321, 46.2262566 ], + [ 6.0584586, 46.2263205 ], + [ 6.0587918, 46.2263643 ], + [ 6.0591293, 46.226388 ], + [ 6.0591321, 46.2263881 ], + [ 6.0594723, 46.2263911 ], + [ 6.0598115, 46.2263735 ], + [ 6.0601472, 46.2263355 ], + [ 6.0604769, 46.2262773 ], + [ 6.0607981, 46.2261995 ], + [ 6.0611082, 46.2261025 ], + [ 6.061405, 46.2259871 ], + [ 6.0616862, 46.2258542 ], + [ 6.0619496, 46.2257049 ], + [ 6.0621933, 46.2255402 ], + [ 6.062202, 46.2255337 ], + [ 6.0624206, 46.2253715 ], + [ 6.0626409, 46.2251937 ], + [ 6.0628383, 46.2250034 ], + [ 6.0630112, 46.2248019 ], + [ 6.0631583, 46.2245909 ], + [ 6.0635858, 46.2244673 ], + [ 6.0644265, 46.2239654 ], + [ 6.0645058, 46.224051 ], + [ 6.0657522, 46.2246513 ], + [ 6.0659646, 46.2246833 ], + [ 6.0655303, 46.2251178 ], + [ 6.0654591, 46.2253453 ], + [ 6.0646846, 46.22612 ], + [ 6.0643626, 46.227149 ], + [ 6.0644246, 46.2273872 ], + [ 6.0639699, 46.2278419 ], + [ 6.0638694, 46.2281631 ], + [ 6.063736, 46.2282966 ], + [ 6.0634139, 46.2293256 ], + [ 6.0636838, 46.2303617 ], + [ 6.0645045, 46.2312474 ], + [ 6.064734, 46.2313579 ], + [ 6.0646773, 46.231539 ], + [ 6.0649472, 46.2325752 ], + [ 6.065768, 46.2334608 ], + [ 6.0670146, 46.2340611 ], + [ 6.0684975, 46.2342845 ], + [ 6.0699906, 46.2340972 ], + [ 6.0712668, 46.2335276 ], + [ 6.0721317, 46.2326624 ], + [ 6.0722352, 46.2323316 ], + [ 6.07247, 46.232366999999996 ], + [ 6.0739631, 46.2321796 ], + [ 6.0747501, 46.2318283 ], + [ 6.0754999, 46.2319421 ], + [ 6.0756899, 46.2319185 ], + [ 6.0758418, 46.2319916 ], + [ 6.0764417, 46.232082 ], + [ 6.07661, 46.2327273 ], + [ 6.0766468, 46.2327671 ], + [ 6.0761776, 46.2329766 ], + [ 6.0753128, 46.2338418 ], + [ 6.0751061, 46.2345026 ], + [ 6.0748945, 46.2345291 ], + [ 6.0736183, 46.2350988 ], + [ 6.0727534, 46.235964 ], + [ 6.0724315, 46.236993 ], + [ 6.0727015, 46.2380292 ], + [ 6.0734886, 46.2388783 ], + [ 6.0737053, 46.2397093 ], + [ 6.0745263, 46.2405949 ], + [ 6.0757732, 46.2411951 ], + [ 6.0772563, 46.2414184 ], + [ 6.0787496, 46.2412309 ], + [ 6.0797329, 46.240792 ], + [ 6.0809344, 46.2406412 ], + [ 6.0822106, 46.2400714 ], + [ 6.0830754, 46.2392061 ], + [ 6.0833972, 46.2381771 ], + [ 6.0833412, 46.2379624 ], + [ 6.0837209, 46.2376533 ], + [ 6.0843587, 46.2369274 ], + [ 6.0846396, 46.2360999 ], + [ 6.0845868, 46.2356707 ], + [ 6.0846822, 46.2355752 ], + [ 6.0847172, 46.2355805 ], + [ 6.0862104, 46.2353929 ], + [ 6.0874864, 46.2348231 ], + [ 6.0883511, 46.2339578 ], + [ 6.0886727, 46.2329288 ], + [ 6.0884024, 46.2318926 ], + [ 6.0875813, 46.2310072 ], + [ 6.0863344, 46.2304071 ], + [ 6.0852148, 46.2302386 ], + [ 6.085106, 46.2298215 ], + [ 6.084285, 46.228936 ], + [ 6.0830382, 46.2283359 ], + [ 6.0815555, 46.2281126 ], + [ 6.0810758, 46.2281729 ], + [ 6.0810284, 46.2279845 ], + [ 6.0812247, 46.2280471 ], + [ 6.0815862, 46.2280763 ], + [ 6.0817296, 46.228108399999996 ], + [ 6.0818797, 46.2281 ], + [ 6.0824333, 46.2281448 ], + [ 6.0836262, 46.2279785 ], + [ 6.0841123, 46.2277887 ], + [ 6.0846217, 46.2281862 ], + [ 6.0846437, 46.2281984 ], + [ 6.0847315, 46.2282504 ], + [ 6.0848093, 46.2282953 ], + [ 6.0849408, 46.2283693 ], + [ 6.0850264, 46.2284178 ], + [ 6.0857725, 46.22885 ], + [ 6.0868777, 46.2292993 ], + [ 6.0870039, 46.229317 ], + [ 6.0873605, 46.2295609 ], + [ 6.0873757, 46.2295712 ], + [ 6.0879876, 46.2299851 ], + [ 6.0879913, 46.229993 ], + [ 6.0880133, 46.2300346 ], + [ 6.0880326, 46.2300736 ], + [ 6.0880863, 46.2301756 ], + [ 6.0881334, 46.2302597 ], + [ 6.0881525, 46.230293 ], + [ 6.0881996, 46.2303739 ], + [ 6.0884158, 46.2306858 ], + [ 6.0884665, 46.2307484 ], + [ 6.08851, 46.230804 ], + [ 6.0885636, 46.230873 ], + [ 6.0886742, 46.231006 ], + [ 6.0887652, 46.2311086 ], + [ 6.0887695, 46.2311135 ], + [ 6.0888581, 46.231213 ], + [ 6.0889325, 46.2312978 ], + [ 6.0890187, 46.2313916 ], + [ 6.0891, 46.2314763 ], + [ 6.0891448, 46.231522 ], + [ 6.0892584, 46.2316352 ], + [ 6.0893142, 46.2316893 ], + [ 6.0894373, 46.2318057 ], + [ 6.0894643, 46.2318309 ], + [ 6.0894668, 46.2318332 ], + [ 6.0895769, 46.2320279 ], + [ 6.0894906, 46.232331 ], + [ 6.089714, 46.2332778 ], + [ 6.089815, 46.2334751 ], + [ 6.0902816, 46.2341078 ], + [ 6.0909701, 46.2346339 ], + [ 6.0910113, 46.2346581 ], + [ 6.0911942, 46.2348027 ], + [ 6.0916431, 46.2350718 ], + [ 6.0911752, 46.2358425 ], + [ 6.0911555, 46.2368761 ], + [ 6.0916973, 46.2378391 ], + [ 6.092721, 46.23859 ], + [ 6.0927898, 46.2386241 ], + [ 6.0938908, 46.2390043 ], + [ 6.094222, 46.2390376 ], + [ 6.0941818, 46.2391277 ], + [ 6.0942017, 46.2399766 ], + [ 6.0946008, 46.2407793 ], + [ 6.0953395, 46.2414562 ], + [ 6.0955128, 46.2415716 ], + [ 6.0970018, 46.2405119 ], + [ 6.0990618, 46.2390648 ], + [ 6.1014504, 46.2376466 ], + [ 6.1018123, 46.237879 ], + [ 6.104589, 46.2396623 ], + [ 6.1054739, 46.2402307 ], + [ 6.106853, 46.2411708 ], + [ 6.1088275, 46.2398703 ], + [ 6.1113026, 46.2415555 ], + [ 6.1136151, 46.2431314 ], + [ 6.1164827, 46.2450846 ], + [ 6.1182411, 46.2462822 ], + [ 6.1196291, 46.2472273 ], + [ 6.1207862, 46.2480154 ], + [ 6.1202939, 46.248503 ], + [ 6.1209109999999995, 46.2488307 ], + [ 6.1229667, 46.2502313 ], + [ 6.1235784, 46.2506481 ], + [ 6.1244681, 46.2512542 ], + [ 6.1238428, 46.2518371 ], + [ 6.1243997, 46.2525215 ], + [ 6.1244574, 46.2525925 ], + [ 6.1242787, 46.25264 ], + [ 6.1240898, 46.2526655 ], + [ 6.1240684, 46.2526436 ], + [ 6.1239958, 46.252611 ], + [ 6.123916, 46.2526081 ], + [ 6.123808, 46.2526778 ], + [ 6.1236425, 46.2526939 ], + [ 6.123459, 46.2527183 ], + [ 6.1234377, 46.2528245 ], + [ 6.123343, 46.2529061 ], + [ 6.1231569, 46.252902399999996 ], + [ 6.1230792, 46.2529192 ], + [ 6.1230379, 46.2529916 ], + [ 6.1230822, 46.2530888 ], + [ 6.1230468, 46.2531334 ], + [ 6.122585, 46.2532727 ], + [ 6.1225217, 46.2532974 ], + [ 6.1223108, 46.2533881 ], + [ 6.1222386, 46.2534134 ], + [ 6.1221538, 46.2533991 ], + [ 6.1221088, 46.2534099 ], + [ 6.1220966, 46.2534172 ], + [ 6.1222537, 46.2535268 ], + [ 6.1223131, 46.2535567 ], + [ 6.1228956, 46.2541238 ], + [ 6.1239069, 46.254634 ], + [ 6.1241333, 46.2547133 ], + [ 6.1248661, 46.2549083 ], + [ 6.1255447, 46.2549863 ], + [ 6.1257405, 46.2553239 ], + [ 6.1257416, 46.2553251 ], + [ 6.1257416, 46.2553252 ], + [ 6.1257428, 46.2553266 ], + [ 6.1257712, 46.2553595 ], + [ 6.1258534000000004, 46.2554224 ], + [ 6.1258596, 46.2554316 ], + [ 6.1258396, 46.2554401 ], + [ 6.1258405, 46.2554411 ], + [ 6.125893, 46.2554809 ], + [ 6.1259358, 46.2555442 ], + [ 6.1259557000000004, 46.2555642 ], + [ 6.1259846, 46.2555504 ], + [ 6.1268448, 46.2562029 ], + [ 6.1273762, 46.2563788 ], + [ 6.1273826, 46.2564379 ], + [ 6.1280652, 46.2573779 ], + [ 6.1281058, 46.257414 ], + [ 6.1281703, 46.2574526 ], + [ 6.1282231, 46.2574994 ], + [ 6.1291149, 46.2580747 ], + [ 6.1298766, 46.2583201 ], + [ 6.1302994, 46.2585014 ], + [ 6.1303921, 46.2585283 ], + [ 6.1308545, 46.2586173 ], + [ 6.1306501, 46.2587866 ], + [ 6.1301951, 46.2595704 ], + [ 6.1301118, 46.2604134 ], + [ 6.1304084, 46.2612329 ], + [ 6.1306679, 46.2615197 ], + [ 6.1307278, 46.2617105 ], + [ 6.1315799, 46.2625688 ], + [ 6.1316167, 46.2625937 ], + [ 6.1316429, 46.2626065 ], + [ 6.1317312, 46.2627129 ], + [ 6.1317739, 46.2627467 ], + [ 6.1325791, 46.2631761 ], + [ 6.1327604000000004, 46.2632811 ], + [ 6.132793, 46.2632902 ], + [ 6.1329768, 46.2633882 ], + [ 6.1334909, 46.2634842 ], + [ 6.1338919, 46.2635956 ], + [ 6.1341525, 46.2636077 ], + [ 6.1344421, 46.2636618 ], + [ 6.1347398, 46.2636349 ], + [ 6.1351082, 46.2636519 ], + [ 6.1356985, 46.2635483 ], + [ 6.1359468, 46.2635258 ], + [ 6.1360416, 46.263488 ], + [ 6.1362899, 46.2634444 ], + [ 6.1369879, 46.2631392 ], + [ 6.1371184, 46.2631688 ], + [ 6.137282, 46.2631691 ], + [ 6.1374366, 46.2632296 ], + [ 6.1379132, 46.2632698 ], + [ 6.1382923, 46.2633342 ], + [ 6.1383867, 46.2633294 ], + [ 6.1395523, 46.2637619 ], + [ 6.1410274, 46.2638723 ], + [ 6.1410539, 46.2638671 ], + [ 6.1412838, 46.2646074 ], + [ 6.1418955, 46.2653375 ], + [ 6.1428027, 46.2659008 ], + [ 6.1439164, 46.266242 ], + [ 6.1451277, 46.2663278 ], + [ 6.1451729, 46.2663261 ], + [ 6.1463647, 46.2661476 ], + [ 6.1467797, 46.26598 ], + [ 6.1469493, 46.265943 ], + [ 6.1471269, 46.2658398 ], + [ 6.1474184, 46.2657221 ], + [ 6.1476818, 46.2655174 ], + [ 6.1481118, 46.2652676 ], + [ 6.1488138, 46.2643354 ], + [ 6.1489486, 46.2632878 ], + [ 6.1489403, 46.2632341 ], + [ 6.1489311, 46.2632105 ], + [ 6.1489585, 46.2631351 ], + [ 6.1489612, 46.2630989 ], + [ 6.148832, 46.2622585 ], + [ 6.1483345, 46.261487 ], + [ 6.1475173, 46.2608601 ], + [ 6.1467177, 46.2605417 ], + [ 6.1466831, 46.260387 ], + [ 6.146573, 46.2602615 ], + [ 6.1473554, 46.2606372 ], + [ 6.1488393, 46.2608596 ], + [ 6.1503329, 46.2606712 ], + [ 6.1516088, 46.2601007 ], + [ 6.1524728, 46.2592349 ], + [ 6.1527934, 46.2582057 ], + [ 6.1527199, 46.2579253 ], + [ 6.1533061, 46.2580131 ], + [ 6.1547996, 46.2578247 ], + [ 6.1549808, 46.2577436 ], + [ 6.1556835, 46.2578489 ], + [ 6.157177, 46.2576604 ], + [ 6.1584528, 46.2570898 ], + [ 6.1593167, 46.2562239 ], + [ 6.1596371, 46.2551947 ], + [ 6.1593653, 46.2541587 ], + [ 6.1585427, 46.2532738 ], + [ 6.1572946, 46.2526745 ], + [ 6.1570307, 46.252635 ], + [ 6.1569707, 46.2524063 ], + [ 6.1561482, 46.2515213 ], + [ 6.1556188, 46.2512671 ], + [ 6.1549009, 46.2504946 ], + [ 6.1548202, 46.2504559 ], + [ 6.1545811, 46.2501986 ], + [ 6.153333, 46.2495993 ], + [ 6.1518495, 46.2493769 ], + [ 6.1503562, 46.2495654 ], + [ 6.1490804, 46.2501359 ], + [ 6.1482165, 46.2510017 ], + [ 6.148109, 46.2513468 ], + [ 6.147873, 46.2515832 ], + [ 6.1475524, 46.2526125 ], + [ 6.147824, 46.2536484 ], + [ 6.1481496, 46.2539989 ], + [ 6.1478428, 46.2543063 ], + [ 6.1475222, 46.2553356 ], + [ 6.1476008, 46.2556354 ], + [ 6.1474739, 46.2556514 ], + [ 6.146198, 46.2562219 ], + [ 6.1453339, 46.2570876 ], + [ 6.1450221, 46.2580882 ], + [ 6.1447004, 46.2577618 ], + [ 6.1446699, 46.2577461 ], + [ 6.1448653, 46.2571189 ], + [ 6.1445938, 46.2560829 ], + [ 6.1444211, 46.255897 ], + [ 6.1443224, 46.2555204 ], + [ 6.1441578, 46.2553433 ], + [ 6.1442447, 46.255227 ], + [ 6.1444431999999995, 46.2543933 ], + [ 6.1442602, 46.2535578 ], + [ 6.1437138000000004, 46.2528025 ], + [ 6.1428574, 46.2522015 ], + [ 6.142754, 46.2521487 ], + [ 6.142708, 46.2521338 ], + [ 6.1435572, 46.251283 ], + [ 6.1438779, 46.2502538 ], + [ 6.1436064, 46.2492178 ], + [ 6.1427841, 46.2483327 ], + [ 6.1415363, 46.2477333 ], + [ 6.1400528, 46.2475108 ], + [ 6.1385595, 46.2476991 ], + [ 6.1372837, 46.2482695 ], + [ 6.1364196, 46.2491351 ], + [ 6.136256, 46.2496602 ], + [ 6.1362214, 46.2495526 ], + [ 6.1355955, 46.2488212 ], + [ 6.1348883, 46.2483921 ], + [ 6.1348774, 46.2483835 ], + [ 6.1348702, 46.2483811 ], + [ 6.1346725, 46.2482612 ], + [ 6.1338441, 46.2480168 ], + [ 6.1343244, 46.2473708 ], + [ 6.1344514, 46.2463226 ], + [ 6.1339912, 46.2453204 ], + [ 6.1330137, 46.2445164 ], + [ 6.1330097, 46.2445142 ], + [ 6.1329682, 46.2444799 ], + [ 6.132962, 46.2444764 ], + [ 6.1329557, 46.2444729 ], + [ 6.1329214, 46.2444539 ], + [ 6.1318623, 46.2440356 ], + [ 6.1308406, 46.2438899 ], + [ 6.1315787, 46.2435599 ], + [ 6.1324428, 46.2426942 ], + [ 6.1325457, 46.2423643 ], + [ 6.1330847, 46.2418243 ], + [ 6.1334055, 46.2407951 ], + [ 6.1331343, 46.2397591 ], + [ 6.1323124, 46.2388739 ], + [ 6.1310649, 46.2382744 ], + [ 6.1299075, 46.2381007 ], + [ 6.1299398, 46.2380863 ], + [ 6.1300804, 46.2379453 ], + [ 6.1304481, 46.237899 ], + [ 6.1305608, 46.2380204 ], + [ 6.1318083, 46.2386199 ], + [ 6.1332915, 46.2388426 ], + [ 6.1347846, 46.2386544 ], + [ 6.135753, 46.2382214 ], + [ 6.1364263, 46.2385449 ], + [ 6.1375234, 46.2387095 ], + [ 6.1375419, 46.2387294 ], + [ 6.1375607, 46.2388014 ], + [ 6.1383827, 46.2396865 ], + [ 6.1386498, 46.2398148 ], + [ 6.1386546, 46.2398245 ], + [ 6.1387522, 46.2399528 ], + [ 6.1392227, 46.2403939 ], + [ 6.138445, 46.2404919 ], + [ 6.1372776, 46.2410139 ], + [ 6.1371477, 46.2409944 ], + [ 6.1356546, 46.2411826 ], + [ 6.1356545, 46.2411826 ], + [ 6.1343789, 46.241753 ], + [ 6.1335148, 46.2426186 ], + [ 6.133194, 46.2436478 ], + [ 6.1334652, 46.2446838 ], + [ 6.1342873, 46.245569 ], + [ 6.135535, 46.2461685 ], + [ 6.1370184, 46.246391 ], + [ 6.1385117, 46.2462028 ], + [ 6.1394125, 46.2458 ], + [ 6.1395541, 46.245868 ], + [ 6.1410376, 46.2460906 ], + [ 6.1425308, 46.2459023 ], + [ 6.142643, 46.2458521 ], + [ 6.1430789, 46.2463213 ], + [ 6.1439901, 46.246759 ], + [ 6.1441295, 46.2472907 ], + [ 6.1441669, 46.2473311 ], + [ 6.1442902, 46.2478013 ], + [ 6.1451124, 46.2486864 ], + [ 6.1463602999999996, 46.2492858 ], + [ 6.1478439, 46.2495082 ], + [ 6.1493372, 46.2493198 ], + [ 6.1506129, 46.2487493 ], + [ 6.1511388, 46.2482222 ], + [ 6.1522192, 46.2484 ], + [ 6.1537177, 46.2482325 ], + [ 6.1537185, 46.2482323 ], + [ 6.1538656, 46.2481944 ], + [ 6.1538665, 46.2481942 ], + [ 6.153867, 46.2481939 ], + [ 6.1545578, 46.248099 ], + [ 6.1546327, 46.2480775 ], + [ 6.1556708, 46.2476368 ], + [ 6.1564618, 46.2469951 ], + [ 6.1564928, 46.2469433 ], + [ 6.1565023, 46.2469355 ], + [ 6.1568894, 46.2462801 ], + [ 6.1569282, 46.2462152 ], + [ 6.1569284, 46.2462142 ], + [ 6.1569641, 46.2461538 ], + [ 6.1570548, 46.2453112 ], + [ 6.1567656, 46.2444905 ], + [ 6.1567406, 46.2444492 ], + [ 6.155893, 46.2435769 ], + [ 6.1558733, 46.2435678 ], + [ 6.1558486, 46.2435425 ], + [ 6.1552521, 46.2432683 ], + [ 6.1551954, 46.2431995 ], + [ 6.1546304, 46.2428941 ], + [ 6.1549993, 46.2424752 ], + [ 6.1550488, 46.2423307 ], + [ 6.1552336, 46.2421404 ], + [ 6.1553452, 46.2417633 ], + [ 6.1553612, 46.2417364 ], + [ 6.1553652, 46.2416957 ], + [ 6.1555373, 46.2411143 ], + [ 6.1552549, 46.2400852 ], + [ 6.1551797, 46.2399559 ], + [ 6.1545483, 46.2392277 ], + [ 6.1538456, 46.2388061 ], + [ 6.1541262, 46.237905 ], + [ 6.1538546, 46.236869 ], + [ 6.1530323, 46.2359841 ], + [ 6.1525907, 46.2357719 ], + [ 6.152928, 46.235621 ], + [ 6.1537916, 46.2347552 ], + [ 6.154112, 46.233726 ], + [ 6.1538404, 46.23269 ], + [ 6.1536488, 46.2324837 ], + [ 6.1537676, 46.2323109 ], + [ 6.1539264, 46.2314735 ], + [ 6.1539254, 46.2314474 ], + [ 6.1539246, 46.2314442 ], + [ 6.1539252, 46.2314409 ], + [ 6.1539228, 46.2313833 ], + [ 6.1539228, 46.2313832 ], + [ 6.1539188, 46.2312869 ], + [ 6.153915, 46.2311935 ], + [ 6.153909, 46.2310487 ], + [ 6.1536844, 46.2302189 ], + [ 6.1535443, 46.2300409 ], + [ 6.1535597, 46.2298194 ], + [ 6.1535529, 46.2297766 ], + [ 6.1534458, 46.2295407 ], + [ 6.1532147, 46.2289154 ], + [ 6.1531097, 46.228801 ], + [ 6.1530985, 46.2287764 ], + [ 6.1530508, 46.2287368 ], + [ 6.1525574, 46.2281991 ], + [ 6.1517668, 46.2277483 ], + [ 6.1526121, 46.2272194 ], + [ 6.153221, 46.2264842 ], + [ 6.153471, 46.225654 ], + [ 6.1533374, 46.2248111 ], + [ 6.1533215, 46.2247708 ], + [ 6.1530737, 46.2244264 ], + [ 6.1530762, 46.2244182 ], + [ 6.1528203, 46.2234415 ], + [ 6.1534371, 46.2233637 ], + [ 6.1547121, 46.2227931 ], + [ 6.1555755, 46.2219273 ], + [ 6.1558958, 46.220898 ], + [ 6.1556242, 46.2198621 ], + [ 6.1548022, 46.2189771 ], + [ 6.1535549, 46.2183778 ], + [ 6.1533127, 46.2183415 ], + [ 6.1535097, 46.2177085 ], + [ 6.1538207, 46.2176138 ], + [ 6.1548654, 46.2168634 ], + [ 6.1554219, 46.2158939 ], + [ 6.1554219, 46.2158938 ], + [ 6.1554233, 46.2158884 ], + [ 6.1554248, 46.2158829 ], + [ 6.1555292999999995, 46.2154952 ], + [ 6.1555284, 46.2154398 ], + [ 6.1556211, 46.2150959 ], + [ 6.1556042, 46.2140659 ], + [ 6.1557753, 46.2138944 ], + [ 6.1560955, 46.2128652 ], + [ 6.156012, 46.2125464 ], + [ 6.156069, 46.2124891 ], + [ 6.1563893, 46.2114599 ], + [ 6.1561177, 46.2104239 ], + [ 6.1552959, 46.2095389 ], + [ 6.1552329, 46.2095087 ], + [ 6.1550759, 46.2093396 ], + [ 6.1538288, 46.2087403 ], + [ 6.1533597, 46.2086699 ], + [ 6.1527184, 46.2079794 ], + [ 6.1525033, 46.207876 ], + [ 6.1525182, 46.2078418 ], + [ 6.1525274, 46.2077936 ], + [ 6.1525276, 46.2070879 ], + [ 6.1523194, 46.2065489 ], + [ 6.152356, 46.2065756 ], + [ 6.1523871, 46.2065909 ], + [ 6.1527468, 46.2067042 ], + [ 6.15294, 46.2067715 ], + [ 6.1529559, 46.2067982 ], + [ 6.1537688, 46.2074495 ], + [ 6.1541714, 46.2076155 ], + [ 6.154211, 46.207643 ], + [ 6.1543893, 46.2077282 ], + [ 6.1552146, 46.2080282 ], + [ 6.1552339, 46.2080333 ], + [ 6.1564307, 46.2082054 ], + [ 6.1576453, 46.208111 ], + [ 6.1585966, 46.2078104 ], + [ 6.1587845, 46.2079007 ], + [ 6.1584902, 46.2089001 ], + [ 6.1584539, 46.2098385 ], + [ 6.1588828, 46.2107288 ], + [ 6.1597251, 46.2114632 ], + [ 6.1608788, 46.2119529 ], + [ 6.1616041, 46.2120545 ], + [ 6.1654961, 46.2153677 ], + [ 6.1665958, 46.2160115 ], + [ 6.1679574, 46.2163336 ], + [ 6.1693945, 46.2162899 ], + [ 6.1700343, 46.2160937 ], + [ 6.1701254, 46.2161498 ], + [ 6.1701803, 46.2161742 ], + [ 6.1712963, 46.2165123 ], + [ 6.1720154, 46.2165608 ], + [ 6.172633, 46.2171183 ], + [ 6.173811, 46.2175902 ], + [ 6.1737838, 46.217746 ], + [ 6.1741902, 46.2187592 ], + [ 6.1742097, 46.2187859 ], + [ 6.1749349, 46.2194803 ], + [ 6.1759373, 46.2199816 ], + [ 6.1771158, 46.2202393 ], + [ 6.1780849, 46.2202299 ], + [ 6.1781086, 46.2202318 ], + [ 6.1781202, 46.2202296 ], + [ 6.1783512, 46.2202273 ], + [ 6.1793403, 46.2199898 ], + [ 6.1793518, 46.2199875 ], + [ 6.17981, 46.2199296 ], + [ 6.1810084, 46.2193929 ], + [ 6.1817376, 46.2201774 ], + [ 6.1829852, 46.2207764 ], + [ 6.1844682, 46.2209983 ], + [ 6.1857726, 46.2208332 ], + [ 6.1859844, 46.2208649 ], + [ 6.1874768, 46.220676 ], + [ 6.1887514, 46.220105 ], + [ 6.1894046, 46.2194493 ], + [ 6.1904179, 46.2189954 ], + [ 6.1912806, 46.2181294 ], + [ 6.1913552, 46.2178891 ], + [ 6.1916051, 46.2176382 ], + [ 6.1919246, 46.2166089 ], + [ 6.1916524, 46.215573 ], + [ 6.1908299, 46.2146883 ], + [ 6.1895823, 46.2140894 ], + [ 6.1880995, 46.2138676 ], + [ 6.1866073, 46.2140565 ], + [ 6.1854174, 46.2145895 ], + [ 6.185364, 46.214386 ], + [ 6.1845416, 46.2135012 ], + [ 6.1832941, 46.2129023 ], + [ 6.1818114, 46.2126803 ], + [ 6.1803192, 46.2128691 ], + [ 6.1801608, 46.2129401 ], + [ 6.1799919, 46.212859 ], + [ 6.1786199, 46.2126536 ], + [ 6.1794564, 46.2118141 ], + [ 6.1797761, 46.2107848 ], + [ 6.1795042, 46.2097489 ], + [ 6.1786819, 46.208864 ], + [ 6.1774346, 46.208265 ], + [ 6.175952, 46.208043 ], + [ 6.17446, 46.2082317 ], + [ 6.1735967, 46.2086184 ], + [ 6.1732019, 46.2081935 ], + [ 6.1719546, 46.2075944 ], + [ 6.1704721, 46.2073723 ], + [ 6.1697619, 46.2074621 ], + [ 6.1665246, 46.2060049 ], + [ 6.1665722, 46.2058516 ], + [ 6.1672139, 46.2059621 ], + [ 6.1678632, 46.2058944 ], + [ 6.1685898, 46.2066766 ], + [ 6.169837, 46.2072757 ], + [ 6.1713195, 46.2074979 ], + [ 6.1728116, 46.2073092 ], + [ 6.1740861, 46.2067384 ], + [ 6.174213, 46.206611 ], + [ 6.1743329, 46.2066685 ], + [ 6.1758154, 46.2068906 ], + [ 6.1759838, 46.2068693 ], + [ 6.1764033, 46.2073283 ], + [ 6.1764443, 46.2073822 ], + [ 6.1764353, 46.2073873 ], + [ 6.1764716, 46.207418 ], + [ 6.1764803, 46.2074295 ], + [ 6.1764816, 46.2074307 ], + [ 6.1765001999999996, 46.2074423 ], + [ 6.1765037, 46.2074453 ], + [ 6.1765044, 46.207445 ], + [ 6.1765174, 46.2074531 ], + [ 6.1765356, 46.2074731 ], + [ 6.176537, 46.2074742 ], + [ 6.1766272, 46.2075222 ], + [ 6.1773878, 46.2080006 ], + [ 6.1785043, 46.2083468 ], + [ 6.1797204, 46.2084352 ], + [ 6.1809159, 46.2082568 ], + [ 6.1815834, 46.2079868 ], + [ 6.1817938, 46.2079413 ], + [ 6.1820986, 46.2078261 ], + [ 6.1831541, 46.207242 ], + [ 6.1833889, 46.2069755 ], + [ 6.1834256, 46.2069338 ], + [ 6.1835431, 46.2068595 ], + [ 6.183717, 46.2066029 ], + [ 6.1838583, 46.2064425 ], + [ 6.1838613, 46.2064322 ], + [ 6.1840072, 46.206276 ], + [ 6.184079, 46.2060687 ], + [ 6.1841884, 46.2059074 ], + [ 6.1842015, 46.2057158 ], + [ 6.1843071, 46.2054111 ], + [ 6.18474, 46.2058769 ], + [ 6.1859874, 46.2064758 ], + [ 6.1874699, 46.2066977 ], + [ 6.1889619, 46.2065088 ], + [ 6.1902362, 46.2059378 ], + [ 6.1910987, 46.2050718 ], + [ 6.1914183, 46.2040424 ], + [ 6.1911461, 46.2030065 ], + [ 6.1910584, 46.2029121 ], + [ 6.1916805, 46.202912 ], + [ 6.1928428, 46.202648 ], + [ 6.1938293, 46.2021463 ], + [ 6.1938793, 46.2021112 ], + [ 6.1940159, 46.2019793 ], + [ 6.1941638, 46.2021384 ], + [ 6.1954112, 46.2027372 ], + [ 6.1967955, 46.2029443 ], + [ 6.1963017, 46.2031656 ], + [ 6.1954393, 46.2040317 ], + [ 6.1951199, 46.205061 ], + [ 6.1953921, 46.2060969 ], + [ 6.1962146, 46.2069816 ], + [ 6.1974621, 46.2075804 ], + [ 6.1989447, 46.2078022 ], + [ 6.1999708, 46.2076721 ], + [ 6.2001662, 46.2079556 ], + [ 6.2010049, 46.2085675 ], + [ 6.2012745, 46.2087106 ], + [ 6.2022539, 46.2090447 ], + [ 6.2022584, 46.2090693 ], + [ 6.2026354, 46.2096253 ], + [ 6.2026388, 46.2096323 ], + [ 6.2026418, 46.2096347 ], + [ 6.2027765, 46.2098334 ], + [ 6.2036094, 46.2104488 ], + [ 6.203635, 46.2104626 ], + [ 6.2038132, 46.2105243 ], + [ 6.2042806, 46.2107759 ], + [ 6.2053468, 46.2111826 ], + [ 6.2065418, 46.2113406 ], + [ 6.2077486, 46.2112344 ], + [ 6.2082117, 46.2110829 ], + [ 6.2085445, 46.2110992 ], + [ 6.2088781, 46.2110959 ], + [ 6.2092101, 46.2110729 ], + [ 6.2095381, 46.2110306 ], + [ 6.2097172, 46.2111944 ], + [ 6.2110268, 46.2117255 ], + [ 6.2118009, 46.211799 ], + [ 6.2118292, 46.2118083 ], + [ 6.2130371, 46.2119136 ], + [ 6.2142052, 46.211758 ], + [ 6.2147545, 46.2118829 ], + [ 6.2156697, 46.2118351 ], + [ 6.2165158, 46.2118603 ], + [ 6.2176878, 46.211634 ], + [ 6.2179353, 46.21152 ], + [ 6.2179697, 46.2115134 ], + [ 6.2181043, 46.2114516 ], + [ 6.2181866, 46.2114263 ], + [ 6.2182681, 46.2113998 ], + [ 6.2183487, 46.2113721 ], + [ 6.2175015, 46.212073 ], + [ 6.2170453, 46.2130771 ], + [ 6.2170968, 46.2134865 ], + [ 6.2167191, 46.2138659 ], + [ 6.2156256, 46.2133414 ], + [ 6.2141428, 46.2131199 ], + [ 6.2126507, 46.2133092 ], + [ 6.2113765, 46.2138804 ], + [ 6.2105141, 46.2147466 ], + [ 6.2101949, 46.215776 ], + [ 6.210445, 46.2167264 ], + [ 6.2096983, 46.2163682 ], + [ 6.2082154, 46.2161466 ], + [ 6.2067232, 46.2163357 ], + [ 6.2054488, 46.2169069 ], + [ 6.2052781, 46.2170784 ], + [ 6.2045960000000004, 46.2163451 ], + [ 6.2033482, 46.2157463 ], + [ 6.2018654, 46.2155247 ], + [ 6.2006968, 46.2156727 ], + [ 6.2005641, 46.2155217 ], + [ 6.2005511, 46.2155112 ], + [ 6.2005345, 46.215502 ], + [ 6.2004827, 46.2154598 ], + [ 6.2004776, 46.2154628 ], + [ 6.2004465, 46.2154263 ], + [ 6.2004338, 46.2154163 ], + [ 6.2003631, 46.2153758 ], + [ 6.200331, 46.2153496 ], + [ 6.2000063, 46.2151712 ], + [ 6.1994876, 46.2148738 ], + [ 6.1994429, 46.2148616 ], + [ 6.1991447, 46.2146978 ], + [ 6.1976898, 46.2144097 ], + [ 6.1961867999999996, 46.214529 ], + [ 6.1958262, 46.2146675 ], + [ 6.1957342, 46.2146822 ], + [ 6.1951534, 46.2149259 ], + [ 6.194863, 46.2150375 ], + [ 6.1948012, 46.2150737 ], + [ 6.1946844, 46.2151227 ], + [ 6.1946741, 46.2151288 ], + [ 6.1946615, 46.2151398 ], + [ 6.1946498, 46.2151466 ], + [ 6.1946323, 46.2151534 ], + [ 6.1946219, 46.2151595 ], + [ 6.1938274, 46.215799 ], + [ 6.1937408, 46.2159421 ], + [ 6.1937304, 46.2159511 ], + [ 6.1937197, 46.2159769 ], + [ 6.1936257, 46.2161325 ], + [ 6.1933775, 46.2163546 ], + [ 6.1929774, 46.2173697 ], + [ 6.193167, 46.2184138 ], + [ 6.1939175, 46.2193282 ], + [ 6.1940042, 46.2193976 ], + [ 6.1952017999999995, 46.2200433 ], + [ 6.1964528, 46.2202816 ], + [ 6.1965389, 46.2206092 ], + [ 6.1963828, 46.2207319 ], + [ 6.1961769, 46.2208382 ], + [ 6.1960271, 46.2210114 ], + [ 6.1958842, 46.2211237 ], + [ 6.1958225, 46.221248 ], + [ 6.1953999, 46.2217366 ], + [ 6.1951746, 46.2227728 ], + [ 6.1951767, 46.2228049 ], + [ 6.1955399, 46.223827 ], + [ 6.1961421, 46.2243949 ], + [ 6.1955987, 46.2243137 ], + [ 6.1941062, 46.2245027 ], + [ 6.1928316, 46.2250737 ], + [ 6.1919687, 46.2259398 ], + [ 6.1916491, 46.2269691 ], + [ 6.1919214, 46.228005 ], + [ 6.1927441, 46.2288897 ], + [ 6.1939921, 46.2294885 ], + [ 6.1954753, 46.2297103 ], + [ 6.1969679, 46.2295213 ], + [ 6.1982426, 46.2289503 ], + [ 6.1991054, 46.2280841 ], + [ 6.1994249, 46.2270547 ], + [ 6.1991525, 46.2260189 ], + [ 6.1984822, 46.2252982 ], + [ 6.1992366, 46.2253779 ], + [ 6.1993023, 46.2253758 ], + [ 6.2004957, 46.2252057 ], + [ 6.2009646, 46.2250205 ], + [ 6.2012135, 46.2252881 ], + [ 6.2024615, 46.2258869 ], + [ 6.2039447, 46.2261085 ], + [ 6.2054371, 46.2259194 ], + [ 6.2067117, 46.2253483 ], + [ 6.2075743, 46.224482 ], + [ 6.2078936, 46.2234527 ], + [ 6.2076211, 46.2224168 ], + [ 6.2074058, 46.2221854 ], + [ 6.2073591, 46.2220081 ], + [ 6.2067384, 46.2213408 ], + [ 6.2080932, 46.2215433 ], + [ 6.2095856, 46.2213541 ], + [ 6.21086, 46.2207829 ], + [ 6.2117224, 46.2199166 ], + [ 6.2120416, 46.2188872 ], + [ 6.2117915, 46.2179368 ], + [ 6.2125383, 46.2182951 ], + [ 6.2140213, 46.2185166 ], + [ 6.2155135, 46.2183273 ], + [ 6.2167878, 46.2177561 ], + [ 6.217264, 46.2172776 ], + [ 6.2183575, 46.2178021 ], + [ 6.2198405, 46.2180236 ], + [ 6.2209601, 46.2178815 ], + [ 6.2220568, 46.2184733 ], + [ 6.2235192999999995, 46.2187522 ], + [ 6.2235904, 46.2187558 ], + [ 6.2248026, 46.2186838 ], + [ 6.2248424, 46.2186722 ], + [ 6.2252794, 46.2188252 ], + [ 6.2267917, 46.2189036 ], + [ 6.2282322, 46.2185744 ], + [ 6.2287454, 46.2183731 ], + [ 6.2296982, 46.2178476 ], + [ 6.2303701, 46.2171433 ], + [ 6.2306955, 46.2163293 ], + [ 6.2306424, 46.2154854 ], + [ 6.2303686, 46.2149774 ], + [ 6.230485, 46.2147496 ], + [ 6.2305162, 46.2146201 ], + [ 6.2305052, 46.2136884 ], + [ 6.2303931, 46.2134784 ], + [ 6.2307782, 46.213663 ], + [ 6.2322611, 46.2138844 ], + [ 6.2337532, 46.2136949 ], + [ 6.2350272, 46.2131234 ], + [ 6.235201, 46.2129487 ], + [ 6.2352262, 46.2129374 ], + [ 6.2360881, 46.2120709 ], + [ 6.2360908, 46.2120621 ], + [ 6.2361391, 46.2120136 ], + [ 6.2363483, 46.2113377 ], + [ 6.2368171, 46.2108664 ], + [ 6.2371358, 46.209837 ], + [ 6.2368628, 46.2088012 ], + [ 6.2360396, 46.2079168 ], + [ 6.2350912, 46.2074621 ], + [ 6.2351568, 46.2072503 ], + [ 6.2349083, 46.2063075 ], + [ 6.2348371, 46.2063103 ], + [ 6.2346937, 46.2063613 ], + [ 6.2345611, 46.2063838 ], + [ 6.2344044, 46.2063827 ], + [ 6.234239, 46.206392 ], + [ 6.2340143, 46.2064233 ], + [ 6.2338885, 46.2063856 ], + [ 6.2337929, 46.2063396 ], + [ 6.233668, 46.2062458 ], + [ 6.233601, 46.2061815 ], + [ 6.2335541, 46.2061126 ], + [ 6.2334785, 46.2059883 ], + [ 6.2334379, 46.2059533 ], + [ 6.23339, 46.2059291 ], + [ 6.2333439, 46.2059247 ], + [ 6.2332925, 46.20594 ], + [ 6.2332013, 46.2059748 ], + [ 6.2331042, 46.2060009 ], + [ 6.2329764, 46.2060198 ], + [ 6.2328466, 46.2060274 ], + [ 6.2327188, 46.2060132 ], + [ 6.2326164, 46.2059605 ], + [ 6.2325759, 46.2059033 ], + [ 6.2325219, 46.2058408 ], + [ 6.2324000999999996, 46.2057008 ], + [ 6.2322206, 46.2055702 ], + [ 6.2321745, 46.2055272 ], + [ 6.2321339, 46.2054815 ], + [ 6.2320439, 46.2053761 ], + [ 6.2317966, 46.2051567 ], + [ 6.2317624, 46.2051032 ], + [ 6.2317481, 46.2050016 ], + [ 6.2317197, 46.2049238 ], + [ 6.231636, 46.2048914 ], + [ 6.2314066, 46.2048483 ], + [ 6.2313209, 46.2048102 ], + [ 6.231252, 46.2047572 ], + [ 6.2311814, 46.2046828 ], + [ 6.2311362, 46.2046289 ], + [ 6.231115, 46.2045967 ], + [ 6.231081, 46.2045421 ], + [ 6.2298384, 46.2046999 ], + [ 6.2285645, 46.2052713 ], + [ 6.2277026, 46.2061377 ], + [ 6.2273838, 46.2071671 ], + [ 6.2276565999999995, 46.2082029 ], + [ 6.2284796, 46.2090874 ], + [ 6.228839, 46.2092597 ], + [ 6.22862, 46.2099667 ], + [ 6.2287022, 46.2102789 ], + [ 6.2284342, 46.2111444 ], + [ 6.2286288, 46.2118831 ], + [ 6.2279677, 46.2116205 ], + [ 6.2266294, 46.2114623 ], + [ 6.2262229, 46.2115143 ], + [ 6.2260099, 46.2113648 ], + [ 6.2259544, 46.2113365 ], + [ 6.2259142, 46.2113163 ], + [ 6.2256398, 46.2111912 ], + [ 6.2253519, 46.2110818 ], + [ 6.2250524, 46.2109886 ], + [ 6.2247431, 46.2109122 ], + [ 6.2244261, 46.2108532 ], + [ 6.2242277, 46.2107863 ], + [ 6.2241271, 46.2107769 ], + [ 6.22408, 46.210763299999996 ], + [ 6.2240201, 46.2107532 ], + [ 6.2240155, 46.2107665 ], + [ 6.2237083, 46.2107377 ], + [ 6.2234443, 46.2106812 ], + [ 6.2232418, 46.2106941 ], + [ 6.2230084, 46.2106722 ], + [ 6.2229469, 46.2106733 ], + [ 6.2229483, 46.2107128 ], + [ 6.2220454, 46.2107704 ], + [ 6.2219713, 46.2107472 ], + [ 6.2207617, 46.2106548 ], + [ 6.2195702, 46.2108266 ], + [ 6.2191694, 46.2109856 ], + [ 6.219428, 46.2108132 ], + [ 6.2196632, 46.2106255 ], + [ 6.2198733, 46.2104239 ], + [ 6.2200566, 46.210210000000004 ], + [ 6.2202115, 46.2099856 ], + [ 6.2203369, 46.2097525 ], + [ 6.2204317, 46.2095125 ], + [ 6.2204951, 46.2092676 ], + [ 6.2205268, 46.2090197 ], + [ 6.2205271, 46.2090135 ], + [ 6.2205305, 46.2088943 ], + [ 6.2205265, 46.2087751 ], + [ 6.2205152, 46.2086561 ], + [ 6.2209001, 46.208224 ], + [ 6.2211889, 46.2074037 ], + [ 6.2210984, 46.2065615 ], + [ 6.2206374, 46.20578 ], + [ 6.2198511, 46.2051357 ], + [ 6.2193089, 46.2048117 ], + [ 6.2179886, 46.2042936 ], + [ 6.2164833999999995, 46.2041657 ], + [ 6.2150221, 46.2044475 ], + [ 6.2141861, 46.2049014 ], + [ 6.2139058, 46.2047943 ], + [ 6.2147449, 46.204418 ], + [ 6.2147542, 46.2044088 ], + [ 6.2147574, 46.2044073 ], + [ 6.2156195, 46.203541 ], + [ 6.2159386, 46.2025116 ], + [ 6.215666, 46.2014758 ], + [ 6.2148432, 46.2005913 ], + [ 6.2135957, 46.1999927 ], + [ 6.2121132, 46.1997711 ], + [ 6.2109535, 46.1999182 ], + [ 6.2110421, 46.1998785 ], + [ 6.2111218, 46.1998801 ], + [ 6.2113395, 46.1998549 ], + [ 6.2116663, 46.1997717 ], + [ 6.2118049, 46.1997556 ], + [ 6.2119438, 46.1997202 ], + [ 6.2119485, 46.1997361 ], + [ 6.2119496, 46.1997359 ], + [ 6.2124494, 46.1995914 ], + [ 6.2131558, 46.1994115 ], + [ 6.2132307, 46.1993655 ], + [ 6.2133159, 46.1993408 ], + [ 6.213712, 46.19907 ], + [ 6.2142337, 46.1987497 ], + [ 6.2142883, 46.1986759 ], + [ 6.2143704, 46.1986197 ], + [ 6.2145934, 46.1982633 ], + [ 6.214891, 46.1978609 ], + [ 6.2149051, 46.1977651 ], + [ 6.2149602, 46.1976771 ], + [ 6.214975, 46.1972913 ], + [ 6.2150376, 46.196867 ], + [ 6.2150374, 46.1968661 ], + [ 6.2149912, 46.1968688 ], + [ 6.2149996, 46.1966497 ], + [ 6.2149638, 46.1965002 ], + [ 6.2148362, 46.196236 ], + [ 6.2148207, 46.1961721 ], + [ 6.2147777, 46.1960835 ], + [ 6.214795, 46.1960811 ], + [ 6.2147948, 46.1960803 ], + [ 6.2147722, 46.1960423 ], + [ 6.214767, 46.1954968 ], + [ 6.2147598, 46.1954666 ], + [ 6.2147082, 46.1952499 ], + [ 6.2141744, 46.194265 ], + [ 6.2137616, 46.1939587 ], + [ 6.2137824, 46.1940029 ], + [ 6.2138326, 46.1941027 ], + [ 6.2138225, 46.1941316 ], + [ 6.2137751, 46.1941739 ], + [ 6.2137418, 46.1941816 ], + [ 6.2137447, 46.1941904 ], + [ 6.213673, 46.1942156 ], + [ 6.2136027, 46.1942347 ], + [ 6.2135273, 46.1942419 ], + [ 6.2134873, 46.1942492 ], + [ 6.2134284, 46.1942492 ], + [ 6.2133119, 46.1942284 ], + [ 6.2132052, 46.1941701 ], + [ 6.2131093, 46.1941629 ], + [ 6.2130588, 46.1941809 ], + [ 6.2129515, 46.1942877 ], + [ 6.212865, 46.194313 ], + [ 6.2128031, 46.1943189 ], + [ 6.2127282, 46.1942981 ], + [ 6.2126792, 46.1942635 ], + [ 6.2126636, 46.1942129 ], + [ 6.2127089, 46.1941756 ], + [ 6.2127729, 46.1940902 ], + [ 6.212816, 46.1940169 ], + [ 6.2127998, 46.1940121 ], + [ 6.2127867, 46.193969 ], + [ 6.2127874, 46.1939122 ], + [ 6.2127793, 46.1938905 ], + [ 6.2127672, 46.193877 ], + [ 6.2127505, 46.1938709 ], + [ 6.2126859, 46.1938637 ], + [ 6.2125936, 46.1938462 ], + [ 6.2125825, 46.1938421 ], + [ 6.2125386, 46.193807 ], + [ 6.2124709, 46.1937433 ], + [ 6.2123069, 46.1936154 ], + [ 6.2122068, 46.193495 ], + [ 6.21211, 46.1933675 ], + [ 6.2120921, 46.1933469 ], + [ 6.2120476, 46.193313 ], + [ 6.211995, 46.193298 ], + [ 6.2119368999999995, 46.1932872 ], + [ 6.2118757, 46.1932787 ], + [ 6.2117865, 46.1932702 ], + [ 6.2117506, 46.1932639 ], + [ 6.2117203, 46.1932563 ], + [ 6.2116748, 46.1932427 ], + [ 6.211624, 46.1932093 ], + [ 6.211583, 46.1931705 ], + [ 6.2115565, 46.1931332 ], + [ 6.2115282, 46.1930768 ], + [ 6.2115221, 46.1930517 ], + [ 6.2115359, 46.1930261 ], + [ 6.2115581, 46.1930072 ], + [ 6.2115753, 46.1929989 ], + [ 6.2110755, 46.192889 ], + [ 6.2098596, 46.1928953 ], + [ 6.209537, 46.1929326 ], + [ 6.208825, 46.1930974 ], + [ 6.2083908, 46.1926303 ], + [ 6.2082426, 46.1925533 ], + [ 6.2081684, 46.1925132 ], + [ 6.2081355, 46.1924772 ], + [ 6.2078225, 46.1924094 ], + [ 6.2077016, 46.1924185 ], + [ 6.207489, 46.192448 ], + [ 6.2073436, 46.1924305 ], + [ 6.2071811, 46.19239 ], + [ 6.2071148, 46.1923769 ], + [ 6.207013, 46.1923582 ], + [ 6.2069843, 46.1923489 ], + [ 6.2069793, 46.1923485 ], + [ 6.2069659999999995, 46.1923429 ], + [ 6.2069302, 46.1923253 ], + [ 6.2069032, 46.1923057 ], + [ 6.20689, 46.1922835 ], + [ 6.2068685, 46.192213 ], + [ 6.2068336, 46.1921839 ], + [ 6.2068223, 46.1921853 ], + [ 6.206814, 46.1921812 ], + [ 6.2067783, 46.1921552 ], + [ 6.2062729, 46.1920376 ], + [ 6.2062716, 46.1920446 ], + [ 6.2062337, 46.1920221 ], + [ 6.2062133, 46.1919901 ], + [ 6.2062051, 46.1919787 ], + [ 6.2061986, 46.1919626 ], + [ 6.2061798, 46.1919358 ], + [ 6.2061525, 46.1919016 ], + [ 6.2060932, 46.1918552 ], + [ 6.205994, 46.1917843 ], + [ 6.2059659, 46.1917652 ], + [ 6.2059491, 46.1917517 ], + [ 6.2059349, 46.191737 ], + [ 6.2058958, 46.1916858 ], + [ 6.2058898, 46.1916674 ], + [ 6.2058804, 46.1916481 ], + [ 6.2058615, 46.1916162 ], + [ 6.2058462, 46.191599 ], + [ 6.2058287, 46.1915876 ], + [ 6.205791, 46.1915794 ], + [ 6.2057708, 46.1915783 ], + [ 6.2057164, 46.191597 ], + [ 6.2056879, 46.1916076 ], + [ 6.2056344, 46.191631 ], + [ 6.2056371, 46.1916327 ], + [ 6.2056049, 46.1916387 ], + [ 6.205586, 46.191644 ], + [ 6.2055534, 46.1916489 ], + [ 6.2055179, 46.191658 ], + [ 6.2054805, 46.1916764 ], + [ 6.2054618, 46.1916843 ], + [ 6.2053933, 46.1917202 ], + [ 6.2053741, 46.1917269 ], + [ 6.2052661, 46.191769 ], + [ 6.2051904, 46.1917627 ], + [ 6.2050863, 46.1915965 ], + [ 6.205035, 46.1915274 ], + [ 6.2050479, 46.1914671 ], + [ 6.2051197, 46.1914041 ], + [ 6.2051874, 46.1913809 ], + [ 6.2052621, 46.191359 ], + [ 6.2053186, 46.1913049 ], + [ 6.2052941, 46.1912845 ], + [ 6.2051661, 46.1912024 ], + [ 6.20512, 46.191152 ], + [ 6.2051325, 46.191122 ], + [ 6.2051579, 46.1910815 ], + [ 6.2052407, 46.1909158 ], + [ 6.2052192, 46.1908638 ], + [ 6.2051401, 46.1908408 ], + [ 6.2050633, 46.1908731 ], + [ 6.2050111, 46.1908965 ], + [ 6.2049378, 46.1909141 ], + [ 6.2049, 46.1908994 ], + [ 6.204838, 46.1908746 ], + [ 6.2047904, 46.1908545 ], + [ 6.2045593, 46.1907118 ], + [ 6.2045626, 46.1906734 ], + [ 6.2047112, 46.1905425 ], + [ 6.2047682, 46.190468 ], + [ 6.2047827, 46.1903755 ], + [ 6.2047387, 46.1903059 ], + [ 6.2047986, 46.1901205 ], + [ 6.2049004, 46.1898824 ], + [ 6.2048815, 46.1897907 ], + [ 6.2046874, 46.1896802 ], + [ 6.2046151, 46.1896684 ], + [ 6.2043579, 46.1896932 ], + [ 6.2042999, 46.1896523 ], + [ 6.2042376, 46.1895127 ], + [ 6.2040956, 46.1894487 ], + [ 6.2038112, 46.1893564 ], + [ 6.2038263, 46.1892671 ], + [ 6.2038799000000004, 46.1892385 ], + [ 6.2039483, 46.1891168 ], + [ 6.2039074, 46.1890665 ], + [ 6.203768, 46.1890495 ], + [ 6.2030438, 46.188961 ], + [ 6.2027217, 46.1890893 ], + [ 6.2021666, 46.188409300000004 ], + [ 6.2017506000000004, 46.1878997 ], + [ 6.2019703, 46.1877257 ], + [ 6.2020159, 46.1876897 ], + [ 6.2018137, 46.1876099 ], + [ 6.2018098, 46.1873014 ], + [ 6.2017731, 46.1872014 ], + [ 6.2017165, 46.1871145 ], + [ 6.2016875, 46.1869927 ], + [ 6.2016446, 46.1868627 ], + [ 6.2016362, 46.1867925 ], + [ 6.201624, 46.186732 ], + [ 6.2015774, 46.1866958 ], + [ 6.2014752, 46.1866771 ], + [ 6.2013865, 46.186668 ], + [ 6.2013096, 46.1866733 ], + [ 6.2011786, 46.1866784 ], + [ 6.2010529, 46.1866952 ], + [ 6.200979, 46.1866894 ], + [ 6.200895, 46.1866764 ], + [ 6.2007878, 46.1866235 ], + [ 6.2007217, 46.1865505 ], + [ 6.2006172, 46.1864475 ], + [ 6.2005081, 46.1863564 ], + [ 6.2003863, 46.1862755 ], + [ 6.200291, 46.186234 ], + [ 6.2002564, 46.1861774 ], + [ 6.2002517, 46.1860981 ], + [ 6.2002233, 46.186037 ], + [ 6.2001616, 46.1859931 ], + [ 6.1999789, 46.1859459 ], + [ 6.1998347, 46.1859142 ], + [ 6.1997494, 46.1858776 ], + [ 6.1996999, 46.1858054 ], + [ 6.1995982, 46.1857655 ], + [ 6.1994487, 46.1857148 ], + [ 6.1993311, 46.185656 ], + [ 6.1992001, 46.1855844 ], + [ 6.1990374, 46.1854822 ], + [ 6.198998, 46.1854429 ], + [ 6.1989735, 46.1853953 ], + [ 6.1989069, 46.1853483 ], + [ 6.198737, 46.185255 ], + [ 6.1986877, 46.1851676 ], + [ 6.1986804, 46.1850936 ], + [ 6.1987151, 46.1850327 ], + [ 6.1987615, 46.1849976 ], + [ 6.1989247, 46.1849717 ], + [ 6.1989909, 46.1849199 ], + [ 6.1990177, 46.1848827 ], + [ 6.1990467, 46.184831 ], + [ 6.1990441, 46.1847843 ], + [ 6.1990164, 46.1847485 ], + [ 6.1988049, 46.184577 ], + [ 6.1987871, 46.184533 ], + [ 6.1987861, 46.1844917 ], + [ 6.198716, 46.1843958 ], + [ 6.198615, 46.1843171 ], + [ 6.1985083, 46.1842467 ], + [ 6.1984553, 46.1842043 ], + [ 6.1982819, 46.1839907 ], + [ 6.1981857, 46.1837877 ], + [ 6.1981165, 46.183602 ], + [ 6.1980176, 46.1835108 ], + [ 6.1980159, 46.1835097 ] + ], + [ + [ 6.1106265, 46.1656109 ], + [ 6.1106159, 46.165645 ], + [ 6.1105966, 46.1656243 ], + [ 6.1106265, 46.1656109 ] + ], + [ + [ 6.1057098, 46.1819971 ], + [ 6.1063944, 46.1823266 ], + [ 6.107876, 46.1825496 ], + [ 6.1093676, 46.1823617 ], + [ 6.1106421, 46.1817916 ], + [ 6.1115056, 46.1809262 ], + [ 6.1118264, 46.179897 ], + [ 6.1115559, 46.178861 ], + [ 6.1107353, 46.1779757 ], + [ 6.1094894, 46.1773759 ], + [ 6.1080079, 46.177153 ], + [ 6.1067869, 46.1773068 ], + [ 6.1061024, 46.1769772 ], + [ 6.1060168, 46.1769644 ], + [ 6.1056025, 46.1764088 ], + [ 6.105311, 46.176209 ], + [ 6.1057519, 46.1760117 ], + [ 6.106291, 46.1754714 ], + [ 6.1064583, 46.1755894 ], + [ 6.1070688, 46.1758775 ], + [ 6.1081687, 46.1762369 ], + [ 6.1089723, 46.1763073 ], + [ 6.1089821, 46.1763449 ], + [ 6.1098028, 46.1772302 ], + [ 6.1110487, 46.1778299 ], + [ 6.1125301, 46.1780528 ], + [ 6.113158, 46.1779737 ], + [ 6.1134225, 46.1789865 ], + [ 6.1137191, 46.1793065 ], + [ 6.1136902, 46.1794887 ], + [ 6.1139378, 46.1803165 ], + [ 6.1139425, 46.1803251 ], + [ 6.1139779, 46.1803899 ], + [ 6.1140214, 46.1804697 ], + [ 6.1140285, 46.1804776 ], + [ 6.114035, 46.1804897 ], + [ 6.1142386, 46.1807171 ], + [ 6.1141721, 46.1809302 ], + [ 6.114243, 46.1812015 ], + [ 6.1137547, 46.181263 ], + [ 6.1124802, 46.1818331 ], + [ 6.1121614, 46.1821527 ], + [ 6.1121272, 46.1821603 ], + [ 6.111748, 46.1823524 ], + [ 6.1114667, 46.1824554 ], + [ 6.1113386, 46.1825598 ], + [ 6.1111343, 46.1826632 ], + [ 6.1107193, 46.1830644 ], + [ 6.1105153, 46.1832306 ], + [ 6.1105129, 46.1832336 ], + [ 6.1105352, 46.1832424 ], + [ 6.1104172, 46.1833564 ], + [ 6.1104058, 46.1833722 ], + [ 6.1096366, 46.1831898 ], + [ 6.1084206, 46.1831773 ], + [ 6.108205, 46.1832235 ], + [ 6.1069817, 46.1826347 ], + [ 6.1065712, 46.1825729 ], + [ 6.1064258, 46.1824161 ], + [ 6.1055875, 46.1820125 ], + [ 6.1057098, 46.1819971 ] + ], + [ + [ 6.1892856, 46.1903091 ], + [ 6.1895001, 46.19054 ], + [ 6.1893268, 46.190514 ], + [ 6.1891726, 46.1905335 ], + [ 6.189284, 46.1903311 ], + [ 6.1892856, 46.1903091 ] + ], + [ + [ 6.1735906, 46.1913719 ], + [ 6.174347, 46.1914509 ], + [ 6.1743665, 46.1914476 ], + [ 6.1743801, 46.1914489 ], + [ 6.1744263, 46.1914408 ], + [ 6.1746831, 46.1917276 ], + [ 6.1749543, 46.1918626 ], + [ 6.1749986, 46.1921959 ], + [ 6.1750104, 46.1927707 ], + [ 6.1750457, 46.1928854 ], + [ 6.1750708, 46.1929261 ], + [ 6.1748017, 46.1931596 ], + [ 6.174716, 46.1933173 ], + [ 6.1746699, 46.1932391 ], + [ 6.1746527, 46.1931322 ], + [ 6.1741956, 46.1924341 ], + [ 6.1741825, 46.1924119 ], + [ 6.1741778, 46.192407 ], + [ 6.1741474, 46.1923605 ], + [ 6.1740907, 46.192301 ], + [ 6.1737229, 46.1920223 ], + [ 6.1735906, 46.1913719 ] + ], + [ + [ 6.0965158, 46.1913551 ], + [ 6.0960946, 46.1909634 ], + [ 6.0959727, 46.1909125 ], + [ 6.0961787, 46.1907047 ], + [ 6.096336, 46.1905708 ], + [ 6.0963225, 46.190614 ], + [ 6.0965158, 46.1913551 ] + ], + [ + [ 6.1624884, 46.1925362 ], + [ 6.1620771, 46.1923386 ], + [ 6.1616638, 46.1922766 ], + [ 6.1621816, 46.191757 ], + [ 6.1621908, 46.1917272 ], + [ 6.1623014, 46.1923111 ], + [ 6.1624884, 46.1925362 ] + ], + [ + [ 6.1840666, 46.1928764 ], + [ 6.1841098, 46.1928728 ], + [ 6.1841587, 46.1928812 ], + [ 6.1848307, 46.1928126 ], + [ 6.1855076, 46.192756 ], + [ 6.1853793, 46.1931693 ], + [ 6.1855562, 46.193843 ], + [ 6.1850676, 46.194062 ], + [ 6.1836762, 46.1938537 ], + [ 6.1828318, 46.1939606 ], + [ 6.1833431, 46.1933778 ], + [ 6.1835477, 46.192779 ], + [ 6.1840666, 46.1928764 ] + ], + [ + [ 6.0981599, 46.1947098 ], + [ 6.0980376, 46.1946198 ], + [ 6.0980172, 46.1945898 ], + [ 6.0974421, 46.1941665 ], + [ 6.0974927, 46.1940342 ], + [ 6.0973333, 46.1932086 ], + [ 6.0974003, 46.1928375 ], + [ 6.0971986, 46.1923038 ], + [ 6.0974134, 46.1925355 ], + [ 6.0975185, 46.1925861 ], + [ 6.0973581, 46.1931003 ], + [ 6.0976284, 46.1941364 ], + [ 6.0981599, 46.1947098 ] + ], + [ + [ 6.1744003, 46.1950357 ], + [ 6.1747108, 46.1957159 ], + [ 6.1743617, 46.195811 ], + [ 6.1738385, 46.1956693 ], + [ 6.1741449, 46.1954583 ], + [ 6.1744003, 46.1950357 ] + ], + [ + [ 6.0997612, 46.1956316 ], + [ 6.0995341, 46.1959935 ], + [ 6.0994599, 46.196951 ], + [ 6.099856, 46.1978294 ], + [ 6.0991174, 46.1979224 ], + [ 6.0993024, 46.1973616 ], + [ 6.0993114, 46.1971477 ], + [ 6.099323, 46.1968702 ], + [ 6.0993312, 46.1966753 ], + [ 6.0991759, 46.1958376 ], + [ 6.0987028, 46.1951439 ], + [ 6.0996952, 46.1956216 ], + [ 6.0997612, 46.1956316 ] + ], + [ + [ 6.204832, 46.199253 ], + [ 6.2048719, 46.1991164 ], + [ 6.2048341, 46.1989807 ], + [ 6.2048359, 46.1987428 ], + [ 6.2052789, 46.1992193 ], + [ 6.2059511, 46.1995419 ], + [ 6.2060136, 46.1996091 ], + [ 6.2072611, 46.2002078 ], + [ 6.2087435, 46.2004294 ], + [ 6.2099033, 46.2002824 ], + [ 6.2093476, 46.2005315 ], + [ 6.2093384, 46.2005408 ], + [ 6.2093351, 46.2005422 ], + [ 6.2085445, 46.2013365 ], + [ 6.2073109, 46.2007269 ], + [ 6.2058342, 46.2004909 ], + [ 6.2057517, 46.2004892 ], + [ 6.2048483, 46.2005695 ], + [ 6.2048, 46.2005549 ], + [ 6.2041835, 46.2005461 ], + [ 6.2045718, 46.2001445 ], + [ 6.2046799, 46.1997741 ], + [ 6.2048305, 46.199458 ], + [ 6.204832, 46.199253 ] + ], + [ + [ 6.1176429, 46.2006177 ], + [ 6.1176188, 46.200548 ], + [ 6.1176163, 46.2005439 ], + [ 6.1176021, 46.2005479 ], + [ 6.1174312, 46.2002062 ], + [ 6.1174105, 46.2001813 ], + [ 6.117, 46.199845 ], + [ 6.1178668, 46.1997358 ], + [ 6.1191416, 46.1991657 ], + [ 6.119304, 46.199002899999996 ], + [ 6.1193488, 46.1990064 ], + [ 6.1194266, 46.199002 ], + [ 6.1206116999999995, 46.1988006 ], + [ 6.1207414, 46.1987447 ], + [ 6.1207495, 46.1987433 ], + [ 6.1209163, 46.198671 ], + [ 6.1209843, 46.1986573 ], + [ 6.121112, 46.1985862 ], + [ 6.1215721, 46.1983868 ], + [ 6.1216484, 46.1983539 ], + [ 6.1216489, 46.1983535 ], + [ 6.121781, 46.1982962 ], + [ 6.1220863, 46.1980439 ], + [ 6.1221125, 46.1980293 ], + [ 6.1221936, 46.1980683 ], + [ 6.1236757, 46.198291 ], + [ 6.1250121, 46.1981225 ], + [ 6.1253012, 46.1985035 ], + [ 6.1251477, 46.1985713 ], + [ 6.1241836, 46.1986699 ], + [ 6.1240935, 46.1987027 ], + [ 6.1240793, 46.1987024 ], + [ 6.1239689, 46.1986759 ], + [ 6.123368, 46.1986695 ], + [ 6.1231918, 46.198652 ], + [ 6.1230147, 46.19864 ], + [ 6.122837, 46.1986337 ], + [ 6.1228365, 46.1986337 ], + [ 6.1226878, 46.1986326 ], + [ 6.1225392, 46.1986355 ], + [ 6.1223908, 46.1986423 ], + [ 6.1221963, 46.1986573 ], + [ 6.121919, 46.1986834 ], + [ 6.1217656, 46.1987001 ], + [ 6.1216133, 46.1987209 ], + [ 6.1214624, 46.1987459 ], + [ 6.1214589, 46.1987465 ], + [ 6.1211162, 46.1988202 ], + [ 6.1207845, 46.1989153 ], + [ 6.1204668, 46.1990311 ], + [ 6.1201656, 46.1991665 ], + [ 6.1199883, 46.1991834 ], + [ 6.1198099, 46.199246 ], + [ 6.1195207, 46.1992927 ], + [ 6.1191404, 46.1994808 ], + [ 6.1188463, 46.199584 ], + [ 6.118652, 46.1997224 ], + [ 6.1182923, 46.1999004 ], + [ 6.1180921, 46.2001215 ], + [ 6.1179534, 46.2002204 ], + [ 6.1178042, 46.2004395 ], + [ 6.1176429, 46.2006177 ] + ], + [ + [ 6.1035324, 46.2035404 ], + [ 6.1048446, 46.2034201 ], + [ 6.1060227, 46.2030009 ], + [ 6.1069298, 46.2023316 ], + [ 6.1069656, 46.202294 ], + [ 6.1070876, 46.2021028 ], + [ 6.1070919, 46.202099 ], + [ 6.1071011, 46.2020816 ], + [ 6.107164, 46.201983 ], + [ 6.1072583, 46.2018935 ], + [ 6.1073211, 46.2017368 ], + [ 6.1074885, 46.2014745 ], + [ 6.1075068, 46.201322 ], + [ 6.1075584, 46.2012247 ], + [ 6.1075634, 46.2011324 ], + [ 6.1076313, 46.200963 ], + [ 6.10759, 46.2006393 ], + [ 6.1075909, 46.2006241 ], + [ 6.107596, 46.2005814 ], + [ 6.1075935, 46.2005747 ], + [ 6.1076041, 46.200378 ], + [ 6.1075353, 46.2002104 ], + [ 6.1075086, 46.2000009 ], + [ 6.1073629, 46.1997905 ], + [ 6.1073195, 46.1996849 ], + [ 6.1077468, 46.1994654 ], + [ 6.1088973, 46.1986791 ], + [ 6.1090511, 46.1985275 ], + [ 6.1093408, 46.1985837 ], + [ 6.1105487, 46.1986808 ], + [ 6.1117407, 46.1985139 ], + [ 6.1124632, 46.1982312 ], + [ 6.1129932, 46.1988028 ], + [ 6.1132661, 46.1989341 ], + [ 6.1126142, 46.1990258 ], + [ 6.1124704, 46.1990654 ], + [ 6.1122491, 46.1991585 ], + [ 6.1121383, 46.1991829 ], + [ 6.1120756, 46.1992048 ], + [ 6.1118545, 46.1993246 ], + [ 6.1113638, 46.1995312 ], + [ 6.1111637, 46.1996991 ], + [ 6.1108805, 46.1998526 ], + [ 6.1106631, 46.2001192 ], + [ 6.1105388, 46.2002235 ], + [ 6.1104633, 46.2003641 ], + [ 6.1101333, 46.2007687 ], + [ 6.1099477, 46.2018135 ], + [ 6.1100188, 46.2019919 ], + [ 6.1094289, 46.2020315 ], + [ 6.1080935, 46.2025236 ], + [ 6.1080394, 46.2025543 ], + [ 6.1070736, 46.2033653 ], + [ 6.1070355, 46.2034512 ], + [ 6.1064962, 46.2038806 ], + [ 6.1058163, 46.2036589 ], + [ 6.1057932, 46.2036581 ], + [ 6.1057724, 46.2036514 ], + [ 6.1046026, 46.2036179 ], + [ 6.1043098, 46.203608 ], + [ 6.1043043, 46.2036093 ], + [ 6.1042623, 46.2036081 ], + [ 6.1028426, 46.2039679 ], + [ 6.1026708, 46.2040404 ], + [ 6.1026705, 46.2040405 ], + [ 6.1026259, 46.2040593 ], + [ 6.1026642, 46.2039365 ], + [ 6.1025216, 46.2033901 ], + [ 6.1035324, 46.2035404 ] + ], + [ + [ 6.0933285, 46.1996839 ], + [ 6.093373, 46.1996404 ], + [ 6.0938469, 46.1998201 ], + [ 6.095043, 46.1999757 ], + [ 6.0950861, 46.1999766 ], + [ 6.0950862, 46.1999766 ], + [ 6.0952657, 46.1999801 ], + [ 6.0952658, 46.1999801 ], + [ 6.095309, 46.1999809 ], + [ 6.0966052, 46.199828 ], + [ 6.0965745, 46.1999262 ], + [ 6.0965648, 46.1999266 ], + [ 6.0965037, 46.199918 ], + [ 6.0961387, 46.1999475 ], + [ 6.0954818, 46.1999796 ], + [ 6.0954348, 46.1999885 ], + [ 6.0954115, 46.1999929 ], + [ 6.0953251999999996, 46.2000092 ], + [ 6.095325, 46.2000093 ], + [ 6.095316, 46.200011 ], + [ 6.0953061, 46.2000141 ], + [ 6.0953057, 46.200013 ], + [ 6.0952949, 46.2000151 ], + [ 6.0951523, 46.200042 ], + [ 6.094043, 46.2003891 ], + [ 6.093454, 46.2007607 ], + [ 6.0932553, 46.2007308 ], + [ 6.0917632, 46.2009185 ], + [ 6.0916764, 46.2009572 ], + [ 6.0911526, 46.2004664 ], + [ 6.0911799, 46.2003459 ], + [ 6.0920473, 46.200243 ], + [ 6.0933285, 46.1996839 ] + ], + [ + [ 6.200119, 46.2017375 ], + [ 6.2003337, 46.2017868 ], + [ 6.2006646, 46.2017877 ], + [ 6.2003984, 46.2021651 ], + [ 6.2000787, 46.2025567 ], + [ 6.1991659, 46.2024202 ], + [ 6.1996597, 46.2021989 ], + [ 6.200119, 46.2017375 ] + ], + [ + [ 6.1174317, 46.2028401 ], + [ 6.1175008, 46.2029469 ], + [ 6.1175207, 46.2030069 ], + [ 6.1172995, 46.2032286 ], + [ 6.1172612, 46.2030821 ], + [ 6.1172922, 46.203035 ], + [ 6.1173355, 46.2030001 ], + [ 6.1174317, 46.2028401 ] + ], + [ + [ 6.0749578, 46.2163493 ], + [ 6.0756878, 46.216668 ], + [ 6.0768672, 46.2168747 ], + [ 6.0775223, 46.2168443 ], + [ 6.0775294, 46.2168449 ], + [ 6.0775364, 46.2168436 ], + [ 6.0777519, 46.2168336 ], + [ 6.0776839, 46.2170512 ], + [ 6.0779475, 46.2180625 ], + [ 6.0777272, 46.2180108 ], + [ 6.0765067, 46.2180016 ], + [ 6.0754449, 46.2182332 ], + [ 6.0755883, 46.2177745 ], + [ 6.0753183, 46.2167383 ], + [ 6.0749578, 46.2163493 ] + ], + [ + [ 6.1378354, 46.2523944 ], + [ 6.1373198, 46.2527202 ], + [ 6.136945, 46.2525925 ], + [ 6.1366941, 46.2525676 ], + [ 6.1363959, 46.2524947 ], + [ 6.1360754, 46.2525064 ], + [ 6.1357373, 46.2524729 ], + [ 6.1354066, 46.2525131 ], + [ 6.135642, 46.252366 ], + [ 6.1362939, 46.2514288 ], + [ 6.1363689, 46.2512295 ], + [ 6.1363727, 46.251203 ], + [ 6.1371923, 46.2520854 ], + [ 6.1378354, 46.2523944 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-0", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.6463434, 46.7605038 ], + [ 6.6460865, 46.7605078 ], + [ 6.6458305, 46.7605233 ], + [ 6.6455766, 46.7605503 ], + [ 6.6453257, 46.7605887 ], + [ 6.6450791, 46.7606382 ], + [ 6.6448377, 46.7606987 ], + [ 6.6446026, 46.76077 ], + [ 6.6445532, 46.7607866 ], + [ 6.6436656, 46.7610903 ], + [ 6.6434872, 46.7611554 ], + [ 6.6432676, 46.7612471 ], + [ 6.6430572, 46.7613485 ], + [ 6.6428569, 46.7614591 ], + [ 6.6426676, 46.7615785 ], + [ 6.6424900000000004, 46.7617062 ], + [ 6.642325, 46.7618416 ], + [ 6.6421732, 46.761984 ], + [ 6.6420353, 46.762133 ], + [ 6.6419118, 46.7622879 ], + [ 6.6418034, 46.762448 ], + [ 6.6417104, 46.7626127 ], + [ 6.6416333, 46.7627811 ], + [ 6.6415724, 46.7629527 ], + [ 6.641528, 46.7631266 ], + [ 6.6415002, 46.7633022 ], + [ 6.6414892, 46.7634786 ], + [ 6.641495, 46.7636552 ], + [ 6.6415176, 46.7638311 ], + [ 6.6415568, 46.7640056 ], + [ 6.6416126, 46.764178 ], + [ 6.6416847, 46.7643475 ], + [ 6.6417728, 46.7645134 ], + [ 6.6418765, 46.764675 ], + [ 6.641901, 46.7647094 ], + [ 6.6420299, 46.7648872 ], + [ 6.6421242, 46.7650094 ], + [ 6.6422577, 46.7651603 ], + [ 6.6424053, 46.7653049 ], + [ 6.6425663, 46.7654425 ], + [ 6.6427401, 46.7655726 ], + [ 6.6429258, 46.7656946 ], + [ 6.6431228, 46.7658081 ], + [ 6.6433302, 46.7659124 ], + [ 6.643547, 46.7660071 ], + [ 6.6437724, 46.766092 ], + [ 6.6440054, 46.7661665 ], + [ 6.644245, 46.7662303 ], + [ 6.6444902, 46.7662833 ], + [ 6.6447399, 46.7663252 ], + [ 6.6449929999999995, 46.7663557 ], + [ 6.6452485, 46.7663748 ], + [ 6.6455053, 46.7663823 ], + [ 6.6457622, 46.7663784 ], + [ 6.6460182, 46.7663628 ], + [ 6.6462722, 46.7663358 ], + [ 6.646523, 46.7662975 ], + [ 6.6467697, 46.7662479 ], + [ 6.6470111, 46.7661874 ], + [ 6.6472463, 46.7661161 ], + [ 6.6472932, 46.7661004 ], + [ 6.6481811, 46.7657971 ], + [ 6.648362, 46.7657312 ], + [ 6.6485816, 46.7656394 ], + [ 6.648792, 46.765538 ], + [ 6.6489923, 46.7654274 ], + [ 6.6491816, 46.765308 ], + [ 6.6493592, 46.7651803 ], + [ 6.6495242, 46.7650449 ], + [ 6.6496759999999995, 46.7649024 ], + [ 6.6498139, 46.7647534 ], + [ 6.6499372999999995, 46.7645985 ], + [ 6.6500457, 46.7644384 ], + [ 6.6501387, 46.7642738 ], + [ 6.6502158, 46.7641053 ], + [ 6.6502766, 46.7639337 ], + [ 6.650321, 46.7637598 ], + [ 6.6503488, 46.7635842 ], + [ 6.6503598, 46.7634078 ], + [ 6.650354, 46.7632313 ], + [ 6.6503314, 46.7630554 ], + [ 6.6502921, 46.7628808 ], + [ 6.6502362, 46.7627085 ], + [ 6.6501641, 46.762539 ], + [ 6.650076, 46.7623731 ], + [ 6.6499723, 46.7622115 ], + [ 6.6499481, 46.7621775 ], + [ 6.6498189, 46.7619992 ], + [ 6.6497242, 46.7618766 ], + [ 6.6495907, 46.7617257 ], + [ 6.6494432, 46.7615812 ], + [ 6.6492822, 46.7614435 ], + [ 6.6491084, 46.7613134 ], + [ 6.6489226, 46.7611914 ], + [ 6.6487256, 46.761078 ], + [ 6.6485183, 46.7609737 ], + [ 6.6483014, 46.760879 ], + [ 6.6480761, 46.7607941 ], + [ 6.6478431, 46.7607196 ], + [ 6.6476035, 46.7606558 ], + [ 6.6473584, 46.7606028 ], + [ 6.6471087, 46.760561 ], + [ 6.6468556, 46.7605304 ], + [ 6.6466001, 46.7605114 ], + [ 6.6463434, 46.7605038 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00040", + "country" : "CHE", + "name" : [ + { + "text" : "Centre gendarmerie mobile - Région Nord (Yverdon-les-Bains)", + "lang" : "de-CH" + }, + { + "text" : "Centre gendarmerie mobile - Région Nord (Yverdon-les-Bains)", + "lang" : "fr-CH" + }, + { + "text" : "Centre gendarmerie mobile - Région Nord (Yverdon-les-Bains)", + "lang" : "it-CH" + }, + { + "text" : "Centre gendarmerie mobile - Région Nord (Yverdon-les-Bains)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kantonspolizei Waadt", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale vaudoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Vaud", + "lang" : "it-CH" + }, + { + "text" : "Vaud Cantonal Police", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.pcv@vd.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.9830957, 46.299068 ], + [ 6.9978866, 46.2357966 ], + [ 6.9601071, 46.2273665 ], + [ 6.9338872, 46.2453337 ], + [ 6.9132511999999995, 46.2876097 ], + [ 6.9830957, 46.299068 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSEC001", + "country" : "CHE", + "name" : [ + { + "text" : "LSEC Collombey-Muraz", + "lang" : "de-CH" + }, + { + "text" : "LSEC Collombey-Muraz", + "lang" : "fr-CH" + }, + { + "text" : "LSEC Collombey-Muraz", + "lang" : "it-CH" + }, + { + "text" : "LSEC Collombey-Muraz", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Héliport Collombey-Muraz", + "lang" : "de-CH" + }, + { + "text" : "Héliport Collombey-Muraz", + "lang" : "fr-CH" + }, + { + "text" : "Héliport Collombey-Muraz", + "lang" : "it-CH" + }, + { + "text" : "Héliport Collombey-Muraz", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Chef d'aérodrome", + "lang" : "de-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "fr-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "it-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Christian Rosat", + "lang" : "de-CH" + }, + { + "text" : "Christian Rosat", + "lang" : "fr-CH" + }, + { + "text" : "Christian Rosat", + "lang" : "it-CH" + }, + { + "text" : "Christian Rosat", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.air-glaciers.ch/collombey", + "email" : "collombey@air-glaciers.ch", + "phone" : "0041244737070", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P01DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.2238123, 46.2229017 ], + [ 6.2235576, 46.222934 ], + [ 6.2234525, 46.2229183 ], + [ 6.2219602, 46.2231077 ], + [ 6.2206858, 46.223679 ], + [ 6.2198235, 46.2245454 ], + [ 6.2195044, 46.2255748 ], + [ 6.2195156, 46.2256174 ], + [ 6.2194256, 46.2259077 ], + [ 6.2196984, 46.2269435 ], + [ 6.2205216, 46.227828 ], + [ 6.2217698, 46.2284266 ], + [ 6.2228375, 46.2285859 ], + [ 6.2230059, 46.229225 ], + [ 6.2238291, 46.2301095 ], + [ 6.2240691, 46.2302245 ], + [ 6.2243365, 46.2305118 ], + [ 6.2255849, 46.2311103 ], + [ 6.2270683, 46.2313317 ], + [ 6.2285608, 46.2311422 ], + [ 6.2298352, 46.2305708 ], + [ 6.2306976, 46.2297044 ], + [ 6.2310165, 46.228675 ], + [ 6.2307434, 46.2276392 ], + [ 6.2299201, 46.2267548 ], + [ 6.2296801, 46.2266397 ], + [ 6.2294127, 46.2263525 ], + [ 6.2281644, 46.225754 ], + [ 6.2276298, 46.2256742 ], + [ 6.2276398, 46.2256418 ], + [ 6.2273669, 46.2246061 ], + [ 6.2265437, 46.2237216 ], + [ 6.2252955, 46.2231231 ], + [ 6.2238123, 46.2229017 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-31", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6305266, 47.5053824 ], + [ 7.6297786, 47.5058314 ], + [ 7.6295423, 47.5058695 ], + [ 7.6286914, 47.5059966 ], + [ 7.6279882, 47.5061031 ], + [ 7.6268611, 47.5064979 ], + [ 7.6272196999999995, 47.5066845 ], + [ 7.6276821, 47.5068491 ], + [ 7.6281995, 47.5069939 ], + [ 7.6287022, 47.5070698 ], + [ 7.629048, 47.5071125 ], + [ 7.6292804, 47.507118 ], + [ 7.6294981, 47.5070862 ], + [ 7.6296198, 47.5070269 ], + [ 7.6297444, 47.5069559 ], + [ 7.6298631, 47.5068514 ], + [ 7.6298689, 47.5068416 ], + [ 7.6304332, 47.5062916 ], + [ 7.6305172, 47.5062167 ], + [ 7.630601, 47.5061834 ], + [ 7.6307, 47.5061751 ], + [ 7.6309323, 47.5061747 ], + [ 7.6311231, 47.5061299 ], + [ 7.631251, 47.5060754 ], + [ 7.6313388, 47.5059938 ], + [ 7.6313465, 47.5059179 ], + [ 7.6312822, 47.5058474 ], + [ 7.631162, 47.5058205 ], + [ 7.6309937, 47.5057882 ], + [ 7.6308415, 47.5057885 ], + [ 7.6307215, 47.5058104 ], + [ 7.6304815, 47.5058759 ], + [ 7.6303453999999995, 47.5058924 ], + [ 7.6302492, 47.5058709 ], + [ 7.630193, 47.5058275 ], + [ 7.6301607, 47.505751599999996 ], + [ 7.6301524, 47.5056648 ], + [ 7.6302095, 47.505574 ], + [ 7.6305266, 47.5053824 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr074", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Spitalholz", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Spitalholz", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Spitalholz", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Spitalholz", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8884460999999995, 47.4200379 ], + [ 7.8890177999999995, 47.4203713 ], + [ 7.88892, 47.4204972 ], + [ 7.8889282, 47.4205091 ], + [ 7.8890293, 47.4206305 ], + [ 7.8890944, 47.420724 ], + [ 7.8891279, 47.4207691 ], + [ 7.8891675, 47.4207897 ], + [ 7.8892364, 47.4208357 ], + [ 7.8893983, 47.4208928 ], + [ 7.8894945, 47.4209441 ], + [ 7.8896719, 47.4209732 ], + [ 7.8898444, 47.4210389 ], + [ 7.8900255999999995, 47.4207828 ], + [ 7.8901196, 47.4205858 ], + [ 7.8900459, 47.4205637 ], + [ 7.8901491, 47.4204829 ], + [ 7.8902704, 47.4204062 ], + [ 7.8903315, 47.420252 ], + [ 7.8902978, 47.4201402 ], + [ 7.8902426, 47.420014 ], + [ 7.8901655, 47.419881 ], + [ 7.8901243, 47.4198646 ], + [ 7.8899326, 47.4199892 ], + [ 7.8897522, 47.4202372 ], + [ 7.8896958999999995, 47.4202107 ], + [ 7.8897271, 47.4201484 ], + [ 7.8895091, 47.4197527 ], + [ 7.8896788, 47.4196389 ], + [ 7.8896985, 47.4195602 ], + [ 7.8894963, 47.4194564 ], + [ 7.8893239, 47.4194105 ], + [ 7.8893123, 47.4194215 ], + [ 7.8891217000000005, 47.4196015 ], + [ 7.8890618, 47.4196328 ], + [ 7.8887972, 47.4197954 ], + [ 7.888595, 47.4198973 ], + [ 7.888443, 47.4200272 ], + [ 7.8884381999999995, 47.4200316 ], + [ 7.8884460999999995, 47.4200379 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr092", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Weid", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Weid", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Weid", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Weid", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7052587, 47.4174864 ], + [ 7.705156, 47.4174177 ], + [ 7.7051091, 47.4173857 ], + [ 7.7051084, 47.4173859 ], + [ 7.7051082, 47.4173857 ], + [ 7.7047678, 47.4174717 ], + [ 7.7050499, 47.4177947 ], + [ 7.7048331999999995, 47.417938 ], + [ 7.7047155, 47.4182381 ], + [ 7.704773, 47.4185236 ], + [ 7.7049783, 47.4189038 ], + [ 7.7052111, 47.4191841 ], + [ 7.7054158, 47.4194549 ], + [ 7.7055143, 47.4195261 ], + [ 7.7056687, 47.41954 ], + [ 7.705844, 47.4195491 ], + [ 7.7061176, 47.4195723 ], + [ 7.7063977, 47.4195717 ], + [ 7.706385, 47.4194941 ], + [ 7.7063463, 47.4192412 ], + [ 7.7063799, 47.419088 ], + [ 7.706446, 47.4190121 ], + [ 7.7065956, 47.4188838 ], + [ 7.7068403, 47.4187674 ], + [ 7.7070719, 47.4186958 ], + [ 7.7069346, 47.4186044 ], + [ 7.7063705, 47.418230199999996 ], + [ 7.7063702, 47.4182303 ], + [ 7.7061531, 47.4180815 ], + [ 7.7059527, 47.417948 ], + [ 7.7058596, 47.4178861 ], + [ 7.7054458, 47.4176105 ], + [ 7.7052587, 47.4174864 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns353", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Schöni", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Schöni", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Schöni", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Schöni", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.6666080999999995, 46.7902112 ], + [ 6.6827276, 46.7962269 ], + [ 6.6834288, 46.7964886 ], + [ 6.7009069, 46.8029833 ], + [ 6.7030747999999996, 46.8006588 ], + [ 6.704501, 46.7991294 ], + [ 6.7042983, 46.7990957 ], + [ 6.7038572, 46.7990149 ], + [ 6.7031158, 46.7988717 ], + [ 6.7028227000000005, 46.7988151 ], + [ 6.7020243, 46.7986293 ], + [ 6.7013563, 46.7984551 ], + [ 6.7002512, 46.7981237 ], + [ 6.6988129, 46.7976191 ], + [ 6.6984806, 46.7975025 ], + [ 6.6971052, 46.7970137 ], + [ 6.6966838, 46.7968639 ], + [ 6.6963111, 46.7967315 ], + [ 6.6955316, 46.7964459 ], + [ 6.6945822, 46.7960668 ], + [ 6.6942946, 46.7959518 ], + [ 6.6937098, 46.7956924 ], + [ 6.6931185, 46.7954084 ], + [ 6.6929237, 46.7953148 ], + [ 6.6921724000000005, 46.7949354 ], + [ 6.691026, 46.7943306 ], + [ 6.6907174, 46.7941678 ], + [ 6.6901487, 46.7938678 ], + [ 6.6901114, 46.7938481 ], + [ 6.6897155999999995, 46.7936393 ], + [ 6.6881139, 46.7927947 ], + [ 6.6877242, 46.7925982 ], + [ 6.6874412, 46.7924556 ], + [ 6.6870787, 46.7922931 ], + [ 6.6867439, 46.792143 ], + [ 6.6865448, 46.7920618 ], + [ 6.6860330999999995, 46.7918533 ], + [ 6.685805, 46.7917718 ], + [ 6.6853974, 46.7916263 ], + [ 6.6853075, 46.7915942 ], + [ 6.684564, 46.7913554 ], + [ 6.6843399, 46.7912952 ], + [ 6.6826051, 46.7908291 ], + [ 6.6801852, 46.7901993 ], + [ 6.678506, 46.7897565 ], + [ 6.6774493, 46.7894604 ], + [ 6.6764661, 46.7891568 ], + [ 6.6762087999999995, 46.7890773 ], + [ 6.6753257, 46.7887868 ], + [ 6.6749305, 46.7886445 ], + [ 6.6744386, 46.7884674 ], + [ 6.6734946, 46.788106 ], + [ 6.6720002, 46.7875242 ], + [ 6.6715753, 46.7873567 ], + [ 6.6708191, 46.7870586 ], + [ 6.6703902, 46.7868896 ], + [ 6.6702787, 46.7868473 ], + [ 6.6698799, 46.7866908 ], + [ 6.6673696, 46.7857088 ], + [ 6.6668395, 46.7855045 ], + [ 6.6661171, 46.7852093 ], + [ 6.6655305, 46.7849257 ], + [ 6.6626011, 46.7834146 ], + [ 6.6623917, 46.783304 ], + [ 6.6586622, 46.7813757 ], + [ 6.6567788, 46.7804054 ], + [ 6.6567439, 46.7804643 ], + [ 6.6567393, 46.7804721 ], + [ 6.6566699, 46.7804698 ], + [ 6.6566629, 46.780472 ], + [ 6.6566244999999995, 46.7804844 ], + [ 6.6565817, 46.780513 ], + [ 6.6565755, 46.7805172 ], + [ 6.6565261, 46.7805502 ], + [ 6.6564899, 46.7806433 ], + [ 6.6564367, 46.780722 ], + [ 6.6564214, 46.7807889 ], + [ 6.6564018, 46.7808745 ], + [ 6.6563965, 46.7809356 ], + [ 6.6563752, 46.7809742 ], + [ 6.6562893, 46.7810912 ], + [ 6.6559856, 46.7813694 ], + [ 6.6559533, 46.781399 ], + [ 6.6559279, 46.781417 ], + [ 6.6558947, 46.7814406 ], + [ 6.65582, 46.7814936 ], + [ 6.6556486, 46.7816152 ], + [ 6.6555694, 46.7816714 ], + [ 6.6555082, 46.7817632 ], + [ 6.6555131, 46.7818685 ], + [ 6.6555159, 46.7819277 ], + [ 6.6555903, 46.7820813 ], + [ 6.6555908, 46.7821146 ], + [ 6.6555918, 46.7821754 ], + [ 6.6555632, 46.7822669 ], + [ 6.6555228, 46.7823142 ], + [ 6.6554918, 46.7823504 ], + [ 6.6554196999999995, 46.7824347 ], + [ 6.655416, 46.782439 ], + [ 6.6553423, 46.7825754 ], + [ 6.6552866999999996, 46.7826668 ], + [ 6.6551796, 46.7827659 ], + [ 6.6551521000000005, 46.7828702 ], + [ 6.6551507999999995, 46.782875 ], + [ 6.6550873, 46.783044 ], + [ 6.6550719, 46.7830717 ], + [ 6.6550038, 46.7831937 ], + [ 6.6550028, 46.783195 ], + [ 6.6549984, 46.7832009 ], + [ 6.6550085, 46.7832038 ], + [ 6.6550574000000005, 46.7832178 ], + [ 6.6551039, 46.7832311 ], + [ 6.6571452, 46.7839162 ], + [ 6.6566369, 46.7847689 ], + [ 6.6569609, 46.7848241 ], + [ 6.657515, 46.7848457 ], + [ 6.6577047, 46.7849035 ], + [ 6.6578216, 46.785103 ], + [ 6.657455, 46.7856066 ], + [ 6.6572224, 46.7858412 ], + [ 6.6569558, 46.786053 ], + [ 6.656623, 46.7862534 ], + [ 6.6560479, 46.7865168 ], + [ 6.6556318, 46.7867056 ], + [ 6.6549906, 46.7869462 ], + [ 6.6544581, 46.7870952 ], + [ 6.6541084, 46.7871639 ], + [ 6.6532842, 46.7871587 ], + [ 6.6527926, 46.7871303 ], + [ 6.6520349, 46.7871134 ], + [ 6.6515524, 46.787085 ], + [ 6.651319, 46.7870909 ], + [ 6.6500445, 46.7874621 ], + [ 6.6499805, 46.7874693 ], + [ 6.6497784, 46.7874919 ], + [ 6.64788, 46.7874469 ], + [ 6.6477134, 46.7874813 ], + [ 6.6468979, 46.7878306 ], + [ 6.6459477, 46.788544 ], + [ 6.6447268, 46.7894607 ], + [ 6.6452719, 46.7897663 ], + [ 6.6448351, 46.7901298 ], + [ 6.6447627, 46.7901019 ], + [ 6.6446904, 46.7900741 ], + [ 6.6444215, 46.7899782 ], + [ 6.6439439, 46.7896976 ], + [ 6.6437739, 46.7896 ], + [ 6.6437014, 46.7895804 ], + [ 6.6436408, 46.7895753 ], + [ 6.6436053, 46.7895803 ], + [ 6.6435766, 46.7895843 ], + [ 6.6435103, 46.7896112 ], + [ 6.6432588, 46.7897475 ], + [ 6.643184, 46.7897684 ], + [ 6.6431024, 46.7897762 ], + [ 6.6430467, 46.789766 ], + [ 6.6399285, 46.7880261 ], + [ 6.639776, 46.7882081 ], + [ 6.6395032, 46.7885338 ], + [ 6.6392337, 46.7888566 ], + [ 6.6383568, 46.7899053 ], + [ 6.6381513, 46.7901511 ], + [ 6.6380547, 46.7900612 ], + [ 6.6374718999999995, 46.7895188 ], + [ 6.6374161, 46.7894669 ], + [ 6.6372449, 46.7892509 ], + [ 6.6371741, 46.7893698 ], + [ 6.6370053, 46.7895935 ], + [ 6.6369674, 46.7896427 ], + [ 6.6368339, 46.7898161 ], + [ 6.6367742, 46.7898949 ], + [ 6.6366648, 46.7900394 ], + [ 6.6365828, 46.7901494 ], + [ 6.6364977, 46.7902636 ], + [ 6.6363387, 46.7904736 ], + [ 6.6362473, 46.7905932 ], + [ 6.6360785, 46.7908166 ], + [ 6.6359164, 46.7910327 ], + [ 6.6359099, 46.7910399 ], + [ 6.6358805, 46.7910802 ], + [ 6.6357309, 46.7913118 ], + [ 6.63543, 46.7912094 ], + [ 6.6353716, 46.7911887 ], + [ 6.6350801, 46.7910898 ], + [ 6.635005, 46.791164 ], + [ 6.6348572, 46.7913433 ], + [ 6.6346598, 46.7915824 ], + [ 6.6345749, 46.7916852 ], + [ 6.6344625, 46.7918215 ], + [ 6.6342665, 46.7920587 ], + [ 6.634123, 46.7922327 ], + [ 6.6339356, 46.7924599 ], + [ 6.6337367, 46.7927009 ], + [ 6.6335371, 46.7929418 ], + [ 6.6333385, 46.7931833 ], + [ 6.6331398, 46.7934244 ], + [ 6.6330387, 46.7935462 ], + [ 6.6329619, 46.7936393 ], + [ 6.6328857, 46.7937318 ], + [ 6.6327735, 46.7938675 ], + [ 6.6327835, 46.7939886 ], + [ 6.6328679, 46.7941065 ], + [ 6.6328685, 46.7941073 ], + [ 6.6329329, 46.7941434 ], + [ 6.6321123, 46.7953142 ], + [ 6.6320897, 46.7955686 ], + [ 6.6321647, 46.7958049 ], + [ 6.6321595, 46.7974681 ], + [ 6.6322285, 46.7980533 ], + [ 6.6323361, 46.7986326 ], + [ 6.6324525, 46.7992811 ], + [ 6.6325047, 46.799563 ], + [ 6.6323074, 46.7996164 ], + [ 6.6323041, 46.7997289 ], + [ 6.6310362, 46.7999853 ], + [ 6.6311304, 46.8001434 ], + [ 6.6306881, 46.8003741 ], + [ 6.6309434, 46.8007637 ], + [ 6.6313886, 46.8012696 ], + [ 6.6318562, 46.8016463 ], + [ 6.6321889, 46.8018457 ], + [ 6.6323851, 46.8018704 ], + [ 6.6325726, 46.8018114 ], + [ 6.6327242, 46.8016939 ], + [ 6.6327267, 46.8016897 ], + [ 6.6334709, 46.8022423 ], + [ 6.6339589, 46.8018628 ], + [ 6.6345064, 46.8014942 ], + [ 6.6346583, 46.8014125 ], + [ 6.6348237999999995, 46.8014034 ], + [ 6.6349941999999995, 46.8013939 ], + [ 6.635359, 46.8015882 ], + [ 6.6356727, 46.8017965 ], + [ 6.6359686, 46.8021584 ], + [ 6.6361848, 46.8023217 ], + [ 6.6362925, 46.8024035 ], + [ 6.6364466, 46.8026115 ], + [ 6.6365092, 46.8028099 ], + [ 6.6364512, 46.8029634 ], + [ 6.6364137, 46.8030611 ], + [ 6.636421, 46.8032285 ], + [ 6.6364271, 46.8033741 ], + [ 6.6364332, 46.803511 ], + [ 6.6364964, 46.8036644 ], + [ 6.6366855000000005, 46.8037794 ], + [ 6.636795, 46.8038464 ], + [ 6.6369308, 46.8038566 ], + [ 6.6371876, 46.8038761 ], + [ 6.6373994, 46.8039507 ], + [ 6.6380013, 46.8041627 ], + [ 6.6382302, 46.8042433 ], + [ 6.6385792, 46.8044006 ], + [ 6.6387768, 46.80449 ], + [ 6.6394268, 46.804719 ], + [ 6.6395588, 46.8047654 ], + [ 6.6406393999999995, 46.8052227 ], + [ 6.640732, 46.8051604 ], + [ 6.6408365, 46.8051791 ], + [ 6.6409689, 46.8050901 ], + [ 6.6410968, 46.8052979 ], + [ 6.6415486999999995, 46.8054673 ], + [ 6.6423313, 46.8057609 ], + [ 6.6428557, 46.8059578 ], + [ 6.6431177, 46.8061231 ], + [ 6.6437643, 46.8065309 ], + [ 6.644314, 46.8068485 ], + [ 6.6450244, 46.8072594 ], + [ 6.6451303, 46.8071881 ], + [ 6.6452857, 46.8073061 ], + [ 6.6452593, 46.807324 ], + [ 6.6458881, 46.807658 ], + [ 6.6461693, 46.8078071 ], + [ 6.646261, 46.8078077 ], + [ 6.6464954, 46.8078993 ], + [ 6.6467541, 46.808126 ], + [ 6.64695, 46.8081723 ], + [ 6.6469491, 46.8082353 ], + [ 6.6471059, 46.8082634 ], + [ 6.6471724, 46.8081919 ], + [ 6.6476832, 46.8084307 ], + [ 6.6475425999999995, 46.8085219 ], + [ 6.647042, 46.808872 ], + [ 6.648496, 46.8097915 ], + [ 6.6484987, 46.8096566 ], + [ 6.6489524, 46.8094924 ], + [ 6.6491741, 46.8092843 ], + [ 6.6493484, 46.8091263 ], + [ 6.6500876, 46.808302 ], + [ 6.6525672, 46.8055529 ], + [ 6.6666080999999995, 46.7902112 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "WZV0012", + "country" : "CHE", + "name" : [ + { + "text" : "Wasser- und Zugvogelreservat Grandson jusqu'à Champ-Pittet", + "lang" : "de-CH" + }, + { + "text" : "Réserve d'oiseaux d'eau et de migrateurs Grandson jusqu'à Champ-Pittet", + "lang" : "fr-CH" + }, + { + "text" : "Riserva di uccelli acquatici e migratori Grandson jusqu'à Champ-Pittet", + "lang" : "it-CH" + }, + { + "text" : "Water Bird and Migratory Bird Reserves Grandson jusqu'à Champ-Pittet", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7367681, 47.4228637 ], + [ 7.7367619, 47.4227225 ], + [ 7.7367448, 47.4225817 ], + [ 7.7367168, 47.4224417 ], + [ 7.7366781, 47.4223029 ], + [ 7.7366288, 47.4221657 ], + [ 7.7365689, 47.4220304 ], + [ 7.7364987, 47.4218974 ], + [ 7.7364183, 47.4217671 ], + [ 7.736328, 47.4216398 ], + [ 7.736228, 47.421516 ], + [ 7.7361185, 47.4213958 ], + [ 7.736, 47.4212797 ], + [ 7.7358727, 47.4211679 ], + [ 7.7357369, 47.4210609 ], + [ 7.735593, 47.4209588 ], + [ 7.7354415, 47.4208619 ], + [ 7.7352827, 47.4207706 ], + [ 7.7351171, 47.420685 ], + [ 7.7349452, 47.4206054 ], + [ 7.7347673, 47.4205321 ], + [ 7.734584, 47.4204651 ], + [ 7.7343958, 47.4204048 ], + [ 7.7342032, 47.4203512 ], + [ 7.7340067, 47.4203046 ], + [ 7.733807, 47.420265 ], + [ 7.7336044, 47.4202325 ], + [ 7.7333996, 47.4202073 ], + [ 7.7331931, 47.4201894 ], + [ 7.7329856, 47.4201788 ], + [ 7.7327775, 47.4201757 ], + [ 7.7325695, 47.4201799 ], + [ 7.732362, 47.4201915 ], + [ 7.7321558, 47.4202105 ], + [ 7.7319513, 47.4202367 ], + [ 7.7317491, 47.4202702 ], + [ 7.7315497, 47.4203108 ], + [ 7.7313538, 47.4203585 ], + [ 7.7311618, 47.420413 ], + [ 7.7309742, 47.4204743 ], + [ 7.7307917, 47.4205422 ], + [ 7.7306146, 47.4206164 ], + [ 7.7304435, 47.4206969 ], + [ 7.7302789, 47.4207833 ], + [ 7.7301211, 47.4208754 ], + [ 7.7299707, 47.4209731 ], + [ 7.7298279, 47.4210759 ], + [ 7.7296934, 47.4211837 ], + [ 7.7295673, 47.421296 ], + [ 7.72945, 47.4214128 ], + [ 7.7293419, 47.4215335 ], + [ 7.7292433, 47.4216579 ], + [ 7.7291543, 47.4217856 ], + [ 7.7290754, 47.4219163 ], + [ 7.7290067, 47.4220497 ], + [ 7.7289483, 47.4221852 ], + [ 7.7289004, 47.4223227 ], + [ 7.7288633, 47.4224617 ], + [ 7.7288368, 47.4226018 ], + [ 7.7288213, 47.4227427 ], + [ 7.7288166, 47.4228839 ], + [ 7.7288228, 47.4230251 ], + [ 7.7288399, 47.4231659 ], + [ 7.7288678, 47.4233059 ], + [ 7.7289065, 47.4234447 ], + [ 7.7289559, 47.423582 ], + [ 7.7290157, 47.4237172 ], + [ 7.7290859, 47.4238502 ], + [ 7.7291663, 47.4239805 ], + [ 7.7292566, 47.4241078 ], + [ 7.7293566, 47.4242317 ], + [ 7.729466, 47.4243519 ], + [ 7.7295846, 47.424468 ], + [ 7.7297119, 47.4245798 ], + [ 7.7298477, 47.4246868 ], + [ 7.7299915, 47.4247889 ], + [ 7.730143, 47.4248858 ], + [ 7.7303018, 47.4249772 ], + [ 7.7304674, 47.4250627 ], + [ 7.7306394, 47.4251423 ], + [ 7.7308173, 47.4252157 ], + [ 7.7310006, 47.4252826 ], + [ 7.7311888, 47.425343 ], + [ 7.7313814, 47.4253965 ], + [ 7.7315779, 47.4254432 ], + [ 7.7317777, 47.4254828 ], + [ 7.7319803, 47.4255153 ], + [ 7.7321851, 47.4255405 ], + [ 7.7323916, 47.4255584 ], + [ 7.7325991, 47.425569 ], + [ 7.7328072, 47.4255721 ], + [ 7.7330153, 47.4255679 ], + [ 7.7332228, 47.4255563 ], + [ 7.733429, 47.4255373 ], + [ 7.7336336, 47.4255111 ], + [ 7.7338358, 47.4254776 ], + [ 7.7340352, 47.4254369 ], + [ 7.7342311, 47.4253893 ], + [ 7.7344231, 47.4253347 ], + [ 7.7346107, 47.4252734 ], + [ 7.7347932, 47.4252056 ], + [ 7.7349703, 47.4251313 ], + [ 7.7351414, 47.4250508 ], + [ 7.7353061, 47.4249644 ], + [ 7.7354638, 47.4248723 ], + [ 7.7356143, 47.4247746 ], + [ 7.7357569999999996, 47.4246718 ], + [ 7.7358916, 47.424564 ], + [ 7.7360177, 47.4244516 ], + [ 7.7361349, 47.4243349 ], + [ 7.736243, 47.4242142 ], + [ 7.7363416, 47.4240898 ], + [ 7.7364305, 47.4239621 ], + [ 7.7365095, 47.4238313 ], + [ 7.7365782, 47.423698 ], + [ 7.7366366, 47.4235624 ], + [ 7.7366844, 47.4234249 ], + [ 7.7367215, 47.4232859 ], + [ 7.7367479, 47.4231458 ], + [ 7.7367635, 47.4230049 ], + [ 7.7367681, 47.4228637 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "MZA0001", + "country" : "CHE", + "name" : [ + { + "text" : "Massnahmenzentrum für junge Erwachsene Arxhof", + "lang" : "de-CH" + }, + { + "text" : "Massnahmenzentrum für junge Erwachsene Arxhof", + "lang" : "fr-CH" + }, + { + "text" : "Massnahmenzentrum für junge Erwachsene Arxhof", + "lang" : "it-CH" + }, + { + "text" : "Massnahmenzentrum für junge Erwachsene Arxhof", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Justizvollzug Basel-Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Amt für Justizvollzug Basel-Landschaft", + "lang" : "fr-CH" + }, + { + "text" : "Amt für Justizvollzug Basel-Landschaft", + "lang" : "it-CH" + }, + { + "text" : "Amt für Justizvollzug Basel-Landschaft", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Amtsleitung", + "lang" : "de-CH" + }, + { + "text" : "Amtsleitung", + "lang" : "fr-CH" + }, + { + "text" : "Amtsleitung", + "lang" : "it-CH" + }, + { + "text" : "Amtsleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Nicolas Pozar", + "lang" : "de-CH" + }, + { + "text" : "Nicolas Pozar", + "lang" : "fr-CH" + }, + { + "text" : "Nicolas Pozar", + "lang" : "it-CH" + }, + { + "text" : "Nicolas Pozar", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/sicherheitsdirektion/bv-sid/justizvollzug", + "email" : "kanzlei.ajv@bl.ch", + "phone" : "0041615529045", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P21DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.3565238, 47.4044535 ], + [ 9.3563483, 47.4021021 ], + [ 9.3559918, 47.3997602 ], + [ 9.3554553, 47.3974341 ], + [ 9.3547403, 47.3951303 ], + [ 9.3538488, 47.392855 ], + [ 9.3527833, 47.3906146 ], + [ 9.3515466, 47.3884151 ], + [ 9.3501423, 47.3862625 ], + [ 9.3485741, 47.3841627 ], + [ 9.3468464, 47.3821216 ], + [ 9.3449639, 47.3801446 ], + [ 9.3429317, 47.3782372 ], + [ 9.3407556, 47.3764047 ], + [ 9.3384414, 47.3746519 ], + [ 9.3359955, 47.3729838 ], + [ 9.3334245, 47.3714049 ], + [ 9.3307356, 47.3699195 ], + [ 9.3279361, 47.3685316 ], + [ 9.3250337, 47.3672451 ], + [ 9.3220362, 47.3660635 ], + [ 9.318952, 47.3649901 ], + [ 9.3157894, 47.3640276 ], + [ 9.3125572, 47.3631789 ], + [ 9.3092641, 47.3624461 ], + [ 9.3059191, 47.3618314 ], + [ 9.3025314, 47.3613364 ], + [ 9.2991103, 47.3609624 ], + [ 9.2956651, 47.3607105 ], + [ 9.2922053, 47.3605813 ], + [ 9.2887402, 47.3605752 ], + [ 9.2852795, 47.3606923 ], + [ 9.2818324, 47.3609322 ], + [ 9.2784085, 47.3612942 ], + [ 9.2750172, 47.3617774 ], + [ 9.2716676, 47.3623804 ], + [ 9.268369, 47.3631016 ], + [ 9.2651303, 47.363939 ], + [ 9.2619605, 47.3648904 ], + [ 9.2588682, 47.3659531 ], + [ 9.2558618, 47.3671242 ], + [ 9.2529497, 47.3684005 ], + [ 9.2501397, 47.3697785 ], + [ 9.2474396, 47.3712545 ], + [ 9.2448567, 47.3728244 ], + [ 9.2423982, 47.374484 ], + [ 9.2400707, 47.3762286 ], + [ 9.2378807, 47.3780535 ], + [ 9.2358342, 47.3799538 ], + [ 9.2339367, 47.3819241 ], + [ 9.2321936, 47.3839592 ], + [ 9.2306095, 47.3860534 ], + [ 9.2291888, 47.3882011 ], + [ 9.2279355, 47.3903962 ], + [ 9.226853, 47.392633000000004 ], + [ 9.2259442, 47.3949051 ], + [ 9.2252118, 47.3972063 ], + [ 9.2246577, 47.3995305 ], + [ 9.2242834, 47.4018711 ], + [ 9.2240901, 47.4042219 ], + [ 9.2240782, 47.4065762 ], + [ 9.2242479, 47.4089278 ], + [ 9.2245987, 47.4112701 ], + [ 9.2251295, 47.4135968 ], + [ 9.2258392, 47.4159014 ], + [ 9.2267256, 47.4181776 ], + [ 9.2277863, 47.4204192 ], + [ 9.2290186, 47.42262 ], + [ 9.2304191, 47.4247741 ], + [ 9.2319838, 47.4268754 ], + [ 9.2337086, 47.4289182 ], + [ 9.2355887, 47.430897 ], + [ 9.2376189, 47.4328062 ], + [ 9.2397938, 47.4346407 ], + [ 9.2421074, 47.4363954 ], + [ 9.2445533, 47.4380654 ], + [ 9.2471248, 47.4396463 ], + [ 9.2498149, 47.4411336 ], + [ 9.2526162, 47.4425233 ], + [ 9.255521, 47.4438116 ], + [ 9.2585213, 47.4449949 ], + [ 9.261609, 47.44607 ], + [ 9.2647755, 47.4470339 ], + [ 9.268012, 47.4478839 ], + [ 9.2713099, 47.4486178 ], + [ 9.2746599, 47.4492335 ], + [ 9.2780529, 47.4497294 ], + [ 9.2814796, 47.450104 ], + [ 9.2849305, 47.4503563 ], + [ 9.2883962, 47.4504857 ], + [ 9.2918671, 47.4504918 ], + [ 9.2953337, 47.4503745 ], + [ 9.298786400000001, 47.4501342 ], + [ 9.3022159, 47.4497716 ], + [ 9.3056126, 47.4492877 ], + [ 9.3089673, 47.4486837 ], + [ 9.3122707, 47.4479613 ], + [ 9.3155137, 47.4471226 ], + [ 9.3186875, 47.4461698 ], + [ 9.3217832, 47.4451055 ], + [ 9.3247926, 47.4439328 ], + [ 9.3277071, 47.4426547 ], + [ 9.3305189, 47.4412748 ], + [ 9.3332203, 47.4397969 ], + [ 9.3358038, 47.438225 ], + [ 9.3382624, 47.4365635 ], + [ 9.3405892, 47.4348169 ], + [ 9.342778, 47.4329901 ], + [ 9.3448228, 47.431088 ], + [ 9.3467179, 47.4291158 ], + [ 9.3484582, 47.4270791 ], + [ 9.3500389, 47.4249832 ], + [ 9.3514556, 47.4228341 ], + [ 9.3527046, 47.4206377 ], + [ 9.3537824, 47.4183998 ], + [ 9.3546861, 47.4161267 ], + [ 9.3554132, 47.4138246 ], + [ 9.3559617, 47.4114999 ], + [ 9.3563302, 47.4091588 ], + [ 9.3565178, 47.4068079 ], + [ 9.3565238, 47.4044535 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSXO001", + "country" : "CHE", + "name" : [ + { + "text" : "LSXO Gossau", + "lang" : "de-CH" + }, + { + "text" : "LSXO Gossau", + "lang" : "fr-CH" + }, + { + "text" : "LSXO Gossau", + "lang" : "it-CH" + }, + { + "text" : "LSXO Gossau", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "REGA", + "lang" : "de-CH" + }, + { + "text" : "REGA", + "lang" : "fr-CH" + }, + { + "text" : "REGA", + "lang" : "it-CH" + }, + { + "text" : "REGA", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Basis St. Gallen", + "lang" : "de-CH" + }, + { + "text" : "Basis St. Gallen", + "lang" : "fr-CH" + }, + { + "text" : "Basis St. Gallen", + "lang" : "it-CH" + }, + { + "text" : "Basis St. Gallen", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.rega.ch/en/our-missions/sites-and-infrastructure/rega-7-st-gallen-base/lsxo-gossau-authorization-for-drone-pilot", + "email" : "ebsg@rega.ch", + "phone" : "0041713139933", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P01DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.7971248, 47.3516588 ], + [ 8.7976225, 47.3514027 ], + [ 8.7979763, 47.3515548 ], + [ 8.7984514, 47.3516924 ], + [ 8.7986171, 47.3516105 ], + [ 8.798873, 47.3514839 ], + [ 8.7992571, 47.3514928 ], + [ 8.799608, 47.3513038 ], + [ 8.7998305, 47.3514957 ], + [ 8.800146, 47.3517676 ], + [ 8.8002273, 47.3516404 ], + [ 8.800533399999999, 47.3511619 ], + [ 8.8005272, 47.3511305 ], + [ 8.8004974, 47.3510804 ], + [ 8.8005998, 47.350913 ], + [ 8.8008486, 47.3505132 ], + [ 8.8005851, 47.3504661 ], + [ 8.8002635, 47.3504085 ], + [ 8.8002415, 47.3499026 ], + [ 8.7997828, 47.3495001 ], + [ 8.7995563, 47.349538 ], + [ 8.7995879, 47.349414 ], + [ 8.7991381, 47.3491636 ], + [ 8.7979897, 47.3489652 ], + [ 8.7979735, 47.348814 ], + [ 8.7979777, 47.3487854 ], + [ 8.7979919, 47.3487582 ], + [ 8.7982346, 47.3484794 ], + [ 8.798128, 47.3484829 ], + [ 8.7981658, 47.3484381 ], + [ 8.7981969, 47.3483947 ], + [ 8.798222299999999, 47.3483524 ], + [ 8.7982417, 47.3483011 ], + [ 8.7982637, 47.3482237 ], + [ 8.7982771, 47.3481661 ], + [ 8.7983139, 47.3480185 ], + [ 8.7983449, 47.3479049 ], + [ 8.7983635, 47.3478546 ], + [ 8.7983613, 47.3478346 ], + [ 8.7983858, 47.3477573 ], + [ 8.7984121, 47.3476859 ], + [ 8.7984411, 47.3476219 ], + [ 8.7985689, 47.3473776 ], + [ 8.7985854, 47.3473449 ], + [ 8.7986785, 47.347168 ], + [ 8.7987036, 47.3471112 ], + [ 8.7987212, 47.3470579 ], + [ 8.798737599999999, 47.3469887 ], + [ 8.7987513, 47.3469064 ], + [ 8.7987717, 47.3467334 ], + [ 8.7988223, 47.3463514 ], + [ 8.798836099999999, 47.3462426 ], + [ 8.7988668, 47.3459872 ], + [ 8.7988703, 47.3459623 ], + [ 8.7988905, 47.3458479 ], + [ 8.7989121, 47.3457531 ], + [ 8.7989928, 47.3453822 ], + [ 8.7990824, 47.3449708 ], + [ 8.7990923, 47.3449356 ], + [ 8.7991041, 47.344895 ], + [ 8.7991212, 47.3448366 ], + [ 8.7991823, 47.3446731 ], + [ 8.7992902, 47.3443615 ], + [ 8.7998702, 47.3427143 ], + [ 8.7999438, 47.3425302 ], + [ 8.8000825, 47.3425071 ], + [ 8.8002083, 47.3425428 ], + [ 8.80032, 47.342579 ], + [ 8.8004527, 47.3426224 ], + [ 8.8005862, 47.3426693 ], + [ 8.8006864, 47.3427047 ], + [ 8.8008225, 47.3427554 ], + [ 8.8013019, 47.3429338 ], + [ 8.8016784, 47.3430358 ], + [ 8.8019838, 47.3430794 ], + [ 8.8022455, 47.3431118 ], + [ 8.8028906, 47.3431751 ], + [ 8.8034831, 47.3432213 ], + [ 8.8041138, 47.3423864 ], + [ 8.8049807, 47.341265 ], + [ 8.8054338, 47.3406213 ], + [ 8.8056167, 47.340294 ], + [ 8.8057723, 47.3399621 ], + [ 8.8058268, 47.3398396 ], + [ 8.8058548, 47.3396825 ], + [ 8.805914, 47.3394946 ], + [ 8.8059324, 47.3394026 ], + [ 8.8059487, 47.3392476 ], + [ 8.8059579, 47.3391597 ], + [ 8.8059832, 47.338887 ], + [ 8.8060485, 47.3379523 ], + [ 8.8060544, 47.3374764 ], + [ 8.8060713, 47.3370806 ], + [ 8.8042066, 47.337014 ], + [ 8.8039073, 47.3367585 ], + [ 8.8031939, 47.3372591 ], + [ 8.8008315, 47.3360811 ], + [ 8.7995421, 47.3354978 ], + [ 8.7966443, 47.3341868 ], + [ 8.7964021, 47.3340772 ], + [ 8.795371, 47.3337945 ], + [ 8.7937987, 47.3335942 ], + [ 8.7928113, 47.3335626 ], + [ 8.7914685, 47.3337376 ], + [ 8.7906841, 47.3337548 ], + [ 8.7903858, 47.3338032 ], + [ 8.7893547, 47.3339701 ], + [ 8.7891365, 47.3339149 ], + [ 8.7890172, 47.3338904 ], + [ 8.7889363, 47.3338769 ], + [ 8.788834, 47.3338551 ], + [ 8.7887442, 47.3338244 ], + [ 8.788535, 47.3337663 ], + [ 8.7880697, 47.3336187 ], + [ 8.787931, 47.3337558 ], + [ 8.7878566, 47.3338243 ], + [ 8.7875594, 47.3337813 ], + [ 8.7872412, 47.3337421 ], + [ 8.7872076, 47.333801 ], + [ 8.78634, 47.3336225 ], + [ 8.7862765, 47.3336094 ], + [ 8.7859847, 47.3335215 ], + [ 8.785575399999999, 47.3333981 ], + [ 8.7849348, 47.3332049 ], + [ 8.7847829, 47.3331591 ], + [ 8.7845498, 47.3330889 ], + [ 8.7829169, 47.3324172 ], + [ 8.7821517, 47.3321206 ], + [ 8.7820616, 47.3320857 ], + [ 8.7819594, 47.3321636 ], + [ 8.7818003, 47.332316 ], + [ 8.7816006, 47.3325776 ], + [ 8.7813665, 47.3328913 ], + [ 8.7811854, 47.3330719 ], + [ 8.7810292, 47.3332246 ], + [ 8.7808885, 47.3333235 ], + [ 8.7806444, 47.3335057 ], + [ 8.78037, 47.3336779 ], + [ 8.7801172, 47.333814 ], + [ 8.7800205, 47.3338664 ], + [ 8.7799242, 47.333929 ], + [ 8.7797605, 47.334012799999996 ], + [ 8.7796123, 47.3341119 ], + [ 8.7794189, 47.3342115 ], + [ 8.7792626, 47.3342901 ], + [ 8.7791358, 47.3343428 ], + [ 8.7789936, 47.3343803 ], + [ 8.7788571, 47.3344095 ], + [ 8.778763, 47.3344273 ], + [ 8.778701, 47.3344307 ], + [ 8.7786447, 47.3344307 ], + [ 8.7785776, 47.3344391 ], + [ 8.7786137, 47.3344894 ], + [ 8.7786545, 47.3345295 ], + [ 8.778676, 47.3345935 ], + [ 8.7786447, 47.3347326 ], + [ 8.7785941, 47.3348955 ], + [ 8.7785145, 47.335096 ], + [ 8.778351, 47.3355173 ], + [ 8.7782118, 47.335918 ], + [ 8.7781374, 47.3361252 ], + [ 8.778078, 47.3362482 ], + [ 8.7778652, 47.3362667 ], + [ 8.777556, 47.3362936 ], + [ 8.7773832, 47.3363275 ], + [ 8.7770841, 47.336471 ], + [ 8.7766441, 47.3367021 ], + [ 8.7763147, 47.336892399999996 ], + [ 8.7761416, 47.3370815 ], + [ 8.7761001, 47.3371733 ], + [ 8.7760617, 47.3372579 ], + [ 8.7759793, 47.3374145 ], + [ 8.7758162, 47.337680399999996 ], + [ 8.7757255, 47.337834 ], + [ 8.7756969, 47.3379278 ], + [ 8.7755918, 47.3382735 ], + [ 8.7755654, 47.3386494 ], + [ 8.7755564, 47.3387775 ], + [ 8.7755513, 47.3393923 ], + [ 8.7755496, 47.3395946 ], + [ 8.7755504, 47.3397251 ], + [ 8.7755108, 47.3398082 ], + [ 8.7751161, 47.3405127 ], + [ 8.7748889, 47.3410301 ], + [ 8.7747986, 47.3412454 ], + [ 8.7747672, 47.3413415 ], + [ 8.7747545, 47.3414421 ], + [ 8.774816, 47.3422347 ], + [ 8.7748182, 47.3422569 ], + [ 8.7748324, 47.3424597 ], + [ 8.774833, 47.3424874 ], + [ 8.7748339, 47.3425209 ], + [ 8.7748287, 47.3426786 ], + [ 8.7748179, 47.3428398 ], + [ 8.7747949, 47.343244 ], + [ 8.7747989, 47.343404 ], + [ 8.7748026, 47.343615 ], + [ 8.7747993, 47.3437474 ], + [ 8.7747862, 47.3442471 ], + [ 8.774799, 47.3445933 ], + [ 8.7747708, 47.3448533 ], + [ 8.7747692, 47.3448664 ], + [ 8.7747523, 47.3450103 ], + [ 8.7747483, 47.345045 ], + [ 8.7747257, 47.3454013 ], + [ 8.7747103, 47.3456424 ], + [ 8.7746436, 47.3458847 ], + [ 8.7745463, 47.3462291 ], + [ 8.7745001, 47.3463004 ], + [ 8.7744683, 47.3463505 ], + [ 8.774459, 47.3463767 ], + [ 8.7742577, 47.3466932 ], + [ 8.7741877, 47.3468055 ], + [ 8.7739815, 47.3470298 ], + [ 8.7739203, 47.3470966 ], + [ 8.7738863, 47.3471247 ], + [ 8.7738621, 47.3471504 ], + [ 8.7738276, 47.3471904 ], + [ 8.7737593, 47.3472712 ], + [ 8.7736662, 47.347387499999996 ], + [ 8.7735804, 47.3474939 ], + [ 8.773501, 47.3475959 ], + [ 8.7734002, 47.3477302 ], + [ 8.7732649, 47.3479105 ], + [ 8.7731969, 47.3480048 ], + [ 8.7731375, 47.3481109 ], + [ 8.773117599999999, 47.3481404 ], + [ 8.7730788, 47.3482111 ], + [ 8.7729043, 47.3485093 ], + [ 8.7728724, 47.348556 ], + [ 8.7728483, 47.3485863 ], + [ 8.7728111, 47.3486211 ], + [ 8.7727707, 47.3486567 ], + [ 8.772725, 47.3486849 ], + [ 8.7726785, 47.3487102 ], + [ 8.7726672, 47.3487215 ], + [ 8.7726577, 47.3487396 ], + [ 8.7725678, 47.3490458 ], + [ 8.7724455, 47.3494496 ], + [ 8.7724111, 47.3495293 ], + [ 8.772344, 47.3496546 ], + [ 8.7723313, 47.3496776 ], + [ 8.7723025, 47.3497168 ], + [ 8.7722655, 47.3497606 ], + [ 8.7722212, 47.3498075 ], + [ 8.7720425, 47.3500033 ], + [ 8.7720066, 47.3500598 ], + [ 8.7719838, 47.3501042 ], + [ 8.7719659, 47.3501508 ], + [ 8.7719475, 47.3502093 ], + [ 8.7719222, 47.3502882 ], + [ 8.7718215, 47.350528 ], + [ 8.7717461, 47.3506919 ], + [ 8.7717177, 47.3507454 ], + [ 8.7716637, 47.3507359 ], + [ 8.771654999999999, 47.3507506 ], + [ 8.7716319, 47.350786 ], + [ 8.7715808, 47.3508598 ], + [ 8.7714903, 47.3509798 ], + [ 8.7714388, 47.3510395 ], + [ 8.7713896, 47.351091 ], + [ 8.771329, 47.3511485 ], + [ 8.7713006, 47.3511705 ], + [ 8.7712422, 47.3512153 ], + [ 8.7711762, 47.3512565 ], + [ 8.771115, 47.3512908 ], + [ 8.7710122, 47.3513489 ], + [ 8.7709666, 47.3513771 ], + [ 8.7708471, 47.3514608 ], + [ 8.7707326, 47.3515466 ], + [ 8.7706248, 47.3516376 ], + [ 8.770569, 47.3516883 ], + [ 8.7705206, 47.3517368 ], + [ 8.770457799999999, 47.3518071 ], + [ 8.7704088, 47.3518667 ], + [ 8.7703422, 47.3519467 ], + [ 8.7702966, 47.3520087 ], + [ 8.770236, 47.3521028 ], + [ 8.7701856, 47.3522043 ], + [ 8.7701378, 47.3523096 ], + [ 8.7700623, 47.3524683 ], + [ 8.7699832, 47.3526122 ], + [ 8.7698614, 47.3528043 ], + [ 8.7698185, 47.3528751 ], + [ 8.7696943, 47.353068 ], + [ 8.7696291, 47.3531743 ], + [ 8.769528, 47.3533332 ], + [ 8.7695227, 47.3533415 ], + [ 8.7693154, 47.3536648 ], + [ 8.7693123, 47.3536761 ], + [ 8.7692471, 47.3539131 ], + [ 8.769181, 47.354149 ], + [ 8.7692253, 47.3541522 ], + [ 8.7691938, 47.35423 ], + [ 8.769153, 47.3543251 ], + [ 8.7690968, 47.3544325 ], + [ 8.7690315, 47.3545679 ], + [ 8.7689236, 47.3548039 ], + [ 8.7688618, 47.3549233 ], + [ 8.7688258, 47.3549897 ], + [ 8.7684093, 47.3556612 ], + [ 8.768318, 47.355797 ], + [ 8.7682117, 47.3559567 ], + [ 8.7680614, 47.3561664 ], + [ 8.7679354, 47.3563452 ], + [ 8.7677651, 47.3565585 ], + [ 8.7676842, 47.3566345 ], + [ 8.7675701, 47.3567336 ], + [ 8.7675042, 47.356812 ], + [ 8.7673228, 47.3570346 ], + [ 8.7669704, 47.3574681 ], + [ 8.766676499999999, 47.3578283 ], + [ 8.7664076, 47.3581586 ], + [ 8.7661547, 47.3584708 ], + [ 8.7661435, 47.3584837 ], + [ 8.7660953, 47.358543 ], + [ 8.7662536, 47.3587524 ], + [ 8.7663093, 47.3588319 ], + [ 8.766404, 47.3589798 ], + [ 8.7664974, 47.3591398 ], + [ 8.7666123, 47.3593344 ], + [ 8.7667704, 47.3596026 ], + [ 8.7668026, 47.3596661 ], + [ 8.7669334, 47.3599355 ], + [ 8.7670731, 47.3602278 ], + [ 8.7671977, 47.3604801 ], + [ 8.7672343, 47.3605556 ], + [ 8.7673, 47.3607006 ], + [ 8.7673194, 47.3607497 ], + [ 8.7673314, 47.3607982 ], + [ 8.7673429, 47.360861 ], + [ 8.7673465, 47.360907 ], + [ 8.7673419, 47.3610221 ], + [ 8.767339, 47.3610364 ], + [ 8.7673255, 47.3611262 ], + [ 8.7672263, 47.3614978 ], + [ 8.7671716, 47.3616919 ], + [ 8.7671754, 47.3617132 ], + [ 8.7670488, 47.3621431 ], + [ 8.7670275, 47.3622165 ], + [ 8.7670244, 47.3622912 ], + [ 8.7670212, 47.3623632 ], + [ 8.7670239, 47.3624409 ], + [ 8.7670336, 47.3627617 ], + [ 8.767036, 47.3627923 ], + [ 8.7670445, 47.362834 ], + [ 8.7670576, 47.3628598 ], + [ 8.7670756, 47.3628852 ], + [ 8.767102, 47.3629176 ], + [ 8.7671258, 47.3629412 ], + [ 8.7671596, 47.3629685 ], + [ 8.767189, 47.3629892 ], + [ 8.7672075, 47.3629999 ], + [ 8.7678192, 47.3632747 ], + [ 8.7681263, 47.3634135 ], + [ 8.7682486, 47.3634679 ], + [ 8.7682711, 47.3634789 ], + [ 8.7697312, 47.364191 ], + [ 8.7710107, 47.3647167 ], + [ 8.7716478, 47.3649784 ], + [ 8.7718381, 47.3650566 ], + [ 8.7718698, 47.3650661 ], + [ 8.7729755, 47.3653999 ], + [ 8.7730129, 47.3654112 ], + [ 8.7730794, 47.3653295 ], + [ 8.7732072, 47.3651724 ], + [ 8.7734295, 47.3652016 ], + [ 8.7736946, 47.3652364 ], + [ 8.774425, 47.3652608 ], + [ 8.774934, 47.3651956 ], + [ 8.7763779, 47.3651915 ], + [ 8.7768613, 47.3650986 ], + [ 8.7774444, 47.3651215 ], + [ 8.7774635, 47.3650681 ], + [ 8.7775193, 47.3649125 ], + [ 8.7775836, 47.3647331 ], + [ 8.7779845, 47.3643869 ], + [ 8.7786154, 47.3642669 ], + [ 8.7792133, 47.364386 ], + [ 8.7798408, 47.3644632 ], + [ 8.7809427, 47.3643181 ], + [ 8.781441, 47.3641602 ], + [ 8.7820989, 47.3635715 ], + [ 8.7825977, 47.3637267 ], + [ 8.7830081, 47.3632667 ], + [ 8.7830151, 47.3627576 ], + [ 8.7834803, 47.3622401 ], + [ 8.7854634, 47.3599028 ], + [ 8.7861779, 47.3584705 ], + [ 8.7868851, 47.358697 ], + [ 8.7869, 47.3586739 ], + [ 8.7869098, 47.3586589 ], + [ 8.78694, 47.3586129 ], + [ 8.7869657, 47.3585819 ], + [ 8.7869898, 47.3585516 ], + [ 8.7870244, 47.3585133 ], + [ 8.7870785, 47.3584596 ], + [ 8.7873721, 47.3581628 ], + [ 8.7874972, 47.3580361 ], + [ 8.7875036, 47.3580294 ], + [ 8.7875625, 47.3579707 ], + [ 8.7876158, 47.3579169 ], + [ 8.7877731, 47.3577581 ], + [ 8.78787, 47.3576643 ], + [ 8.7880055, 47.3575257 ], + [ 8.7880426, 47.357487 ], + [ 8.7882742, 47.3572544 ], + [ 8.7886074, 47.3569181 ], + [ 8.7886442, 47.3568713 ], + [ 8.7886649, 47.356839 ], + [ 8.7886831, 47.3568068 ], + [ 8.7886916, 47.35678 ], + [ 8.7882056, 47.3566721 ], + [ 8.7878249, 47.356566 ], + [ 8.788781, 47.3550186 ], + [ 8.7895376, 47.3551994 ], + [ 8.789953, 47.355298 ], + [ 8.7903235, 47.3553889 ], + [ 8.7903743, 47.3551765 ], + [ 8.7904298, 47.3549485 ], + [ 8.7904638, 47.3548209 ], + [ 8.7904782, 47.3547715 ], + [ 8.790481400000001, 47.354765 ], + [ 8.7904947, 47.3547373 ], + [ 8.7905208, 47.35469 ], + [ 8.7905439, 47.3546513 ], + [ 8.7905646, 47.3546206 ], + [ 8.7905869, 47.3545888 ], + [ 8.7906689, 47.354492 ], + [ 8.7907429, 47.3544082 ], + [ 8.7907872, 47.3543617 ], + [ 8.7908373, 47.354314 ], + [ 8.791105, 47.3541069 ], + [ 8.7911659, 47.35406 ], + [ 8.7912155, 47.3540275 ], + [ 8.7912775, 47.3539915 ], + [ 8.7913429, 47.3539586 ], + [ 8.7913919, 47.353934 ], + [ 8.7914353, 47.3539175 ], + [ 8.7914755, 47.3539033 ], + [ 8.7915502, 47.3538821 ], + [ 8.7916086, 47.3538671 ], + [ 8.7916506, 47.3538575 ], + [ 8.791713, 47.3538405 ], + [ 8.7918395, 47.3538061 ], + [ 8.7919686, 47.3537732 ], + [ 8.7920714, 47.3537479 ], + [ 8.7921429, 47.3537306 ], + [ 8.7921709, 47.3537239 ], + [ 8.7922251, 47.3537075 ], + [ 8.7921224, 47.353638 ], + [ 8.7923729, 47.3534683 ], + [ 8.792394999999999, 47.3534615 ], + [ 8.7924486, 47.3534544 ], + [ 8.7925164, 47.3534522 ], + [ 8.7925604, 47.3534596 ], + [ 8.7925887, 47.3534714 ], + [ 8.792603100000001, 47.3534774 ], + [ 8.7926316, 47.3534595 ], + [ 8.7926998, 47.3534083 ], + [ 8.792993899999999, 47.3538148 ], + [ 8.7928352, 47.3539209 ], + [ 8.7934418, 47.3546519 ], + [ 8.7934594, 47.3546522 ], + [ 8.7939135, 47.3546469 ], + [ 8.7939367, 47.3546167 ], + [ 8.7939753, 47.3545717 ], + [ 8.7940316, 47.3545062 ], + [ 8.794059, 47.3544809 ], + [ 8.7940905, 47.3544504 ], + [ 8.794122, 47.3544186 ], + [ 8.7941632, 47.3543794 ], + [ 8.794167999999999, 47.3543752 ], + [ 8.7942173, 47.3543266 ], + [ 8.7942802, 47.3542645 ], + [ 8.7943204, 47.3542195 ], + [ 8.7943677, 47.3541596 ], + [ 8.794456, 47.3540509 ], + [ 8.7945169, 47.353974 ], + [ 8.7946091, 47.3538585 ], + [ 8.7947446, 47.3536888 ], + [ 8.7948483, 47.3535403 ], + [ 8.7949702, 47.3533793 ], + [ 8.7951063, 47.3532143 ], + [ 8.7952816, 47.3530137 ], + [ 8.795404, 47.3528702 ], + [ 8.7954988, 47.3527679 ], + [ 8.7956193, 47.3526672 ], + [ 8.7957288, 47.3525823 ], + [ 8.795842799999999, 47.3524655 ], + [ 8.795846, 47.3524621 ], + [ 8.7958969, 47.3524149 ], + [ 8.7959747, 47.3523509 ], + [ 8.7960292, 47.3523123 ], + [ 8.7961106, 47.3522617 ], + [ 8.796202, 47.352211 ], + [ 8.7962625, 47.3521834 ], + [ 8.7963239, 47.3521587 ], + [ 8.7963944, 47.3521344 ], + [ 8.7964683, 47.3521124 ], + [ 8.796516, 47.3521009 ], + [ 8.7966026, 47.3520899 ], + [ 8.7966704, 47.3520891 ], + [ 8.7967872, 47.3520939 ], + [ 8.7968718, 47.3521014 ], + [ 8.7969606, 47.3521155 ], + [ 8.7970546, 47.3521346 ], + [ 8.7970946, 47.3521433 ], + [ 8.7971554, 47.3521603 ], + [ 8.7971979, 47.352175 ], + [ 8.7972031, 47.3521719 ], + [ 8.7972051, 47.3521656 ], + [ 8.7971804, 47.352134 ], + [ 8.797161299999999, 47.3521022 ], + [ 8.7971379, 47.352057 ], + [ 8.7971198, 47.3519996 ], + [ 8.7971076, 47.3519426 ], + [ 8.7970988, 47.3518871 ], + [ 8.7970844, 47.3516796 ], + [ 8.7971248, 47.3516588 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "WZV0024", + "country" : "CHE", + "name" : [ + { + "text" : "Wasser- und Zugvogelreservat Pfäffikersee", + "lang" : "de-CH" + }, + { + "text" : "Réserve d'oiseaux d'eau et de migrateurs Pfäffikersee", + "lang" : "fr-CH" + }, + { + "text" : "Riserva di uccelli acquatici e migratori Pfäffikersee", + "lang" : "it-CH" + }, + { + "text" : "Water Bird and Migratory Bird Reserves Pfäffikersee", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.4018961, 46.6618285 ], + [ 9.4019885, 46.6615635 ], + [ 9.402022, 46.6615859 ], + [ 9.402089, 46.661046 ], + [ 9.4020739, 46.6605415 ], + [ 9.4020827, 46.6597501 ], + [ 9.4020321, 46.6595949 ], + [ 9.4020266, 46.659578 ], + [ 9.4019292, 46.6592796 ], + [ 9.4010649, 46.6586943 ], + [ 9.4006268, 46.6583697 ], + [ 9.4000298, 46.6580593 ], + [ 9.3991145, 46.6577294 ], + [ 9.3982508, 46.6575638 ], + [ 9.3971784, 46.6574309 ], + [ 9.3958593, 46.6573182 ], + [ 9.394715, 46.6572747 ], + [ 9.3940136, 46.6566272 ], + [ 9.393155, 46.6560591 ], + [ 9.3923953, 46.6556023 ], + [ 9.3914535, 46.6550809 ], + [ 9.3908501, 46.6547954 ], + [ 9.3903517, 46.6544041 ], + [ 9.3895137, 46.6539532 ], + [ 9.3890037, 46.6535349 ], + [ 9.3887489, 46.6531959 ], + [ 9.3884206, 46.6528131 ], + [ 9.3881733, 46.6523881 ], + [ 9.3877198, 46.6519079 ], + [ 9.3872751, 46.6514661 ], + [ 9.3868061, 46.6510742 ], + [ 9.3862601, 46.650564 ], + [ 9.3857982, 46.6500975 ], + [ 9.385232, 46.649572 ], + [ 9.3849825, 46.6491063 ], + [ 9.3848081, 46.6487321 ], + [ 9.3846629, 46.6482375 ], + [ 9.3845967, 46.6479653 ], + [ 9.3844827, 46.6473392 ], + [ 9.3843323, 46.6468154 ], + [ 9.3842073, 46.6461806 ], + [ 9.3839181, 46.6456998 ], + [ 9.383419, 46.64513 ], + [ 9.3829317, 46.6446821 ], + [ 9.382345, 46.6441297 ], + [ 9.3817046, 46.6436934 ], + [ 9.3811669, 46.6434088 ], + [ 9.3806335, 46.6432215 ], + [ 9.3800543, 46.6430326 ], + [ 9.3794028, 46.6427636 ], + [ 9.3788716, 46.6424564 ], + [ 9.3781201, 46.6420401 ], + [ 9.3775019, 46.6416961 ], + [ 9.3767813, 46.6412295 ], + [ 9.3761625, 46.6406662 ], + [ 9.3755597, 46.6402045 ], + [ 9.3749015, 46.6398362 ], + [ 9.3738813, 46.6394832 ], + [ 9.3732102, 46.6393026 ], + [ 9.3722118, 46.6391954 ], + [ 9.3713917, 46.639049 ], + [ 9.3705201, 46.638994 ], + [ 9.3697483, 46.6390093 ], + [ 9.3689941, 46.6389702 ], + [ 9.3681478, 46.6389847 ], + [ 9.367389, 46.639 ], + [ 9.3667259, 46.6390202 ], + [ 9.3660931, 46.6390876 ], + [ 9.3654221, 46.6392526 ], + [ 9.3649602, 46.6394186 ], + [ 9.3647489, 46.6395396 ], + [ 9.36434, 46.63982 ], + [ 9.3636137, 46.6400831 ], + [ 9.362946, 46.6403407 ], + [ 9.3621073, 46.6402216 ], + [ 9.3615195, 46.6400667 ], + [ 9.3609149, 46.6398262 ], + [ 9.3606345, 46.6388528 ], + [ 9.3605224, 46.6379285 ], + [ 9.3603137, 46.637225 ], + [ 9.3599938, 46.6364284 ], + [ 9.3595718, 46.6356269 ], + [ 9.3592932, 46.6354396 ], + [ 9.3587304, 46.6350629 ], + [ 9.3581636, 46.6348759 ], + [ 9.3576231, 46.6347586 ], + [ 9.3570039, 46.6345432 ], + [ 9.3563544, 46.6344164 ], + [ 9.355799, 46.63434 ], + [ 9.3551639, 46.6343214 ], + [ 9.3549474, 46.6339477 ], + [ 9.3546298, 46.6333974 ], + [ 9.3543975, 46.6326694 ], + [ 9.3543379, 46.6319339 ], + [ 9.3545199, 46.6312645 ], + [ 9.3549029, 46.6305555 ], + [ 9.3552436, 46.6296641 ], + [ 9.3556682, 46.6289318 ], + [ 9.3563139, 46.6283312 ], + [ 9.3571544, 46.6272417 ], + [ 9.3576764, 46.6268397 ], + [ 9.3582252, 46.6263855 ], + [ 9.3589402, 46.6258082 ], + [ 9.358969, 46.6257473 ], + [ 9.3589671, 46.6256689 ], + [ 9.358960100000001, 46.6254493 ], + [ 9.3587382, 46.625223 ], + [ 9.3583526, 46.6251252 ], + [ 9.3575722, 46.6251247 ], + [ 9.3568526, 46.6249283 ], + [ 9.355996, 46.6245962 ], + [ 9.3557096, 46.6244625 ], + [ 9.3555252, 46.6244192 ], + [ 9.3547354, 46.6246596 ], + [ 9.3543939, 46.6249052 ], + [ 9.3538314, 46.6249703 ], + [ 9.3530044, 46.6251081 ], + [ 9.3526311, 46.6253999 ], + [ 9.3520371, 46.6255229 ], + [ 9.3514848, 46.62537 ], + [ 9.3507835, 46.6252537 ], + [ 9.3506832, 46.6252321 ], + [ 9.3504152, 46.6251555 ], + [ 9.350272499999999, 46.6248135 ], + [ 9.3501697, 46.6247002 ], + [ 9.3500437, 46.6243923 ], + [ 9.3500229, 46.6242435 ], + [ 9.3500381, 46.6236354 ], + [ 9.3499037, 46.622995 ], + [ 9.3496179, 46.6223224 ], + [ 9.3494923, 46.622003 ], + [ 9.3492778, 46.6214783 ], + [ 9.3489182, 46.6210934 ], + [ 9.3485532, 46.6205595 ], + [ 9.3482561, 46.6203513 ], + [ 9.3478085, 46.6200653 ], + [ 9.3472159, 46.619672 ], + [ 9.3468375, 46.6192415 ], + [ 9.3458722, 46.6182321 ], + [ 9.3457329, 46.6177092 ], + [ 9.3456056, 46.6171307 ], + [ 9.3453748, 46.6163486 ], + [ 9.3449744, 46.6157119 ], + [ 9.3437471, 46.614628 ], + [ 9.342989, 46.614237 ], + [ 9.3422055, 46.6141447 ], + [ 9.3414579, 46.6141206 ], + [ 9.3403636, 46.6141701 ], + [ 9.339585, 46.6142382 ], + [ 9.3388557, 46.6142941 ], + [ 9.3379322, 46.6144903 ], + [ 9.3372224, 46.6146608 ], + [ 9.3363343, 46.6149368 ], + [ 9.3359427, 46.6151715 ], + [ 9.3354527, 46.615465 ], + [ 9.3346796, 46.6157164 ], + [ 9.3336609, 46.616086 ], + [ 9.3329906, 46.6164508 ], + [ 9.3324787, 46.6165611 ], + [ 9.3315483, 46.6165394 ], + [ 9.3306302, 46.616357 ], + [ 9.3296588, 46.6160952 ], + [ 9.3289223, 46.6158759 ], + [ 9.3279991, 46.6155445 ], + [ 9.3276273, 46.6153202 ], + [ 9.3261595, 46.6150765 ], + [ 9.3251869, 46.6147573 ], + [ 9.3246336, 46.6145699 ], + [ 9.3237633, 46.6143294 ], + [ 9.322243, 46.6140062 ], + [ 9.3214564, 46.613799 ], + [ 9.3201189, 46.6134732 ], + [ 9.3190744, 46.6129369 ], + [ 9.3186707, 46.6127588 ], + [ 9.3179578, 46.6122296 ], + [ 9.3173317, 46.6118252 ], + [ 9.3170774, 46.6116223 ], + [ 9.3164055, 46.6113561 ], + [ 9.3157535, 46.6111929 ], + [ 9.3149697, 46.6110889 ], + [ 9.3144049, 46.6110622 ], + [ 9.3137899, 46.6110476 ], + [ 9.3134221, 46.6109609 ], + [ 9.3128975, 46.6107978 ], + [ 9.3128654, 46.6108612 ], + [ 9.3120638, 46.6110903 ], + [ 9.3117693, 46.6112572 ], + [ 9.3113163, 46.6113726 ], + [ 9.3107785, 46.6116784 ], + [ 9.3100378, 46.6121584 ], + [ 9.30944, 46.6126182 ], + [ 9.309015, 46.6127871 ], + [ 9.3084952, 46.6128587 ], + [ 9.3068027, 46.6130034 ], + [ 9.3060602, 46.6131014 ], + [ 9.3058669, 46.6131267 ], + [ 9.3047197, 46.6139374 ], + [ 9.3045885, 46.6140977 ], + [ 9.3043689, 46.614366 ], + [ 9.3038111, 46.61523 ], + [ 9.3028165, 46.6155432 ], + [ 9.3018851, 46.615892 ], + [ 9.301811, 46.6159196 ], + [ 9.3019227, 46.6159637 ], + [ 9.3022478, 46.6160924 ], + [ 9.3022282, 46.6164691 ], + [ 9.3024146, 46.6171425 ], + [ 9.302325, 46.6179311 ], + [ 9.3018444, 46.6182654 ], + [ 9.3014616, 46.6185228 ], + [ 9.3010558, 46.6186362 ], + [ 9.300655, 46.6186364 ], + [ 9.3002876, 46.6185357 ], + [ 9.3000072, 46.6183332 ], + [ 9.2997238, 46.6180427 ], + [ 9.2996072, 46.6178312 ], + [ 9.2994059, 46.6175332 ], + [ 9.2962415, 46.6176172 ], + [ 9.2957774, 46.617625 ], + [ 9.2953865, 46.6176029 ], + [ 9.2950301, 46.6175859 ], + [ 9.2946733, 46.6175805 ], + [ 9.2943903, 46.6175622 ], + [ 9.2941162, 46.6175438 ], + [ 9.2938414, 46.6175255 ], + [ 9.2936334, 46.617506 ], + [ 9.293393, 46.6174929 ], + [ 9.2930605, 46.6174812 ], + [ 9.2928041, 46.6175028 ], + [ 9.2924411, 46.6175547 ], + [ 9.2920789, 46.6176296 ], + [ 9.2918058, 46.6176629 ], + [ 9.291599, 46.6176779 ], + [ 9.2913258, 46.6176825 ], + [ 9.2911015, 46.6176863 ], + [ 9.290678400000001, 46.6176762 ], + [ 9.2902805, 46.6176885 ], + [ 9.2897408, 46.6176574 ], + [ 9.2895231, 46.6176151 ], + [ 9.2892336, 46.6176199 ], + [ 9.288834, 46.6175807 ], + [ 9.2884361, 46.6175931 ], + [ 9.288174, 46.6176837 ], + [ 9.2878875, 46.6178032 ], + [ 9.2877085, 46.6179152 ], + [ 9.2874709, 46.6179823 ], + [ 9.2869728, 46.6182144 ], + [ 9.2867363, 46.6183389 ], + [ 9.2865321, 46.6184284 ], + [ 9.2862425, 46.6184561 ], + [ 9.2859449, 46.6184898 ], + [ 9.2855318, 46.618531 ], + [ 9.2852255, 46.6185477 ], + [ 9.2848529, 46.6185596 ], + [ 9.2843054, 46.618563 ], + [ 9.2838988, 46.6185584 ], + [ 9.2833927, 46.6185553 ], + [ 9.282962, 46.6185855 ], + [ 9.2825669, 46.6186552 ], + [ 9.2823412, 46.6186189 ], + [ 9.2820417, 46.6185952 ], + [ 9.2818328, 46.618547 ], + [ 9.2815235, 46.6184776 ], + [ 9.2811402, 46.6184151 ], + [ 9.280782, 46.6183694 ], + [ 9.2805483, 46.6183389 ], + [ 9.2803065, 46.6182856 ], + [ 9.2800946, 46.618223 ], + [ 9.2799337, 46.6186035 ], + [ 9.2797143, 46.6188466 ], + [ 9.2794558, 46.619118 ], + [ 9.2793593, 46.6194237 ], + [ 9.279276, 46.6197107 ], + [ 9.2792503, 46.6201536 ], + [ 9.2793492, 46.6206865 ], + [ 9.2793308, 46.6209355 ], + [ 9.2791462, 46.6214132 ], + [ 9.2792669, 46.6218167 ], + [ 9.279412, 46.6221461 ], + [ 9.2793926, 46.6223676 ], + [ 9.2790518, 46.6229538 ], + [ 9.2786818, 46.6234759 ], + [ 9.2781861, 46.6238525 ], + [ 9.2776266, 46.6243223 ], + [ 9.2774742, 46.6245459 ], + [ 9.2775886, 46.6247653 ], + [ 9.2778821, 46.6251384 ], + [ 9.277942, 46.6253401 ], + [ 9.277913, 46.6256631 ], + [ 9.2780444, 46.6267669 ], + [ 9.2779082, 46.6270825 ], + [ 9.2779214, 46.6274693 ], + [ 9.277998, 46.6277538 ], + [ 9.2783863, 46.6289456 ], + [ 9.2784588, 46.6295158 ], + [ 9.2785036, 46.6300404 ], + [ 9.2784657, 46.630511 ], + [ 9.2785333, 46.6309153 ], + [ 9.2784362, 46.6312026 ], + [ 9.2786041, 46.6314119 ], + [ 9.2786384, 46.6316509 ], + [ 9.2785685, 46.6323341 ], + [ 9.2783501, 46.6329919 ], + [ 9.2783363, 46.6333792 ], + [ 9.2784194, 46.6334699 ], + [ 9.278624, 46.6334614 ], + [ 9.278813, 46.6334009 ], + [ 9.2790006, 46.6333232 ], + [ 9.2791487, 46.6332863 ], + [ 9.2793301, 46.6332431 ], + [ 9.2796198, 46.6332153 ], + [ 9.279718, 46.6331735 ], + [ 9.2797971, 46.6330747 ], + [ 9.2798523, 46.6329704 ], + [ 9.2798883, 46.6328034 ], + [ 9.2801441, 46.6327648 ], + [ 9.2803599, 46.6327726 ], + [ 9.2806088, 46.6327685 ], + [ 9.2807824, 46.6327598 ], + [ 9.2811324, 46.6327998 ], + [ 9.2815251, 46.632873599999996 ], + [ 9.2816814, 46.6328367 ], + [ 9.2818537, 46.6327879 ], + [ 9.2820175, 46.6327335 ], + [ 9.2822808, 46.6326488 ], + [ 9.2825356, 46.6325814 ], + [ 9.2828333, 46.6325478 ], + [ 9.2830977, 46.6325204 ], + [ 9.2833624, 46.6325045 ], + [ 9.2837206, 46.6325444 ], + [ 9.2839648, 46.6326436 ], + [ 9.283866, 46.6326683 ], + [ 9.2836936, 46.6327342 ], + [ 9.2836405, 46.6328786 ], + [ 9.2834951, 46.6329957 ], + [ 9.283382, 46.6330779 ], + [ 9.2832094, 46.6331382 ], + [ 9.2830958, 46.633209 ], + [ 9.2830103, 46.6333826 ], + [ 9.2830242, 46.6335487 ], + [ 9.2831276, 46.6334207 ], + [ 9.2832304, 46.6335165 ], + [ 9.2834583, 46.6336389 ], + [ 9.2836378, 46.6337794 ], + [ 9.2838883, 46.6340851 ], + [ 9.2838899, 46.634372 ], + [ 9.2840114, 46.6345364 ], + [ 9.2840911, 46.6346956 ], + [ 9.2841555, 46.634884 ], + [ 9.2841867, 46.6350555 ], + [ 9.2842828, 46.6352146 ], + [ 9.2844619, 46.6353435 ], + [ 9.2844895, 46.6354349 ], + [ 9.2845961, 46.6356397 ], + [ 9.2846929, 46.6357987 ], + [ 9.2849205, 46.6361507 ], + [ 9.2849465, 46.6361961 ], + [ 9.2850938, 46.6363716 ], + [ 9.2851982, 46.6365362 ], + [ 9.2853116, 46.6367007 ], + [ 9.2854421, 46.6368649 ], + [ 9.2855985, 46.6370689 ], + [ 9.2855936, 46.6371894 ], + [ 9.2857411, 46.6373707 ], + [ 9.2859027, 46.6374884 ], + [ 9.2861377, 46.637582 ], + [ 9.2863959, 46.6376121 ], + [ 9.2867281, 46.6376066 ], + [ 9.2869995, 46.6375447 ], + [ 9.2872177, 46.6375984 ], + [ 9.2873639, 46.6377681 ], + [ 9.2876318, 46.6378438 ], + [ 9.287731, 46.6378307 ], + [ 9.2877847, 46.6379446 ], + [ 9.2878746, 46.6381382 ], + [ 9.2879299, 46.6382979 ], + [ 9.2879748, 46.6384177 ], + [ 9.2880707, 46.638548 ], + [ 9.2881899, 46.6386436 ], + [ 9.2883986, 46.6386803 ], + [ 9.288574, 46.6387002 ], + [ 9.2887565, 46.6387144 ], + [ 9.2889238, 46.6387575 ], + [ 9.2890506, 46.6388128 ], + [ 9.2891939, 46.6388735 ], + [ 9.2893522, 46.6388938 ], + [ 9.2896673, 46.6388942 ], + [ 9.2899516, 46.6389698 ], + [ 9.2902774, 46.639016 ], + [ 9.2905354, 46.6390403 ], + [ 9.290381, 46.6391577 ], + [ 9.2903089, 46.639222 ], + [ 9.2902278, 46.6392865 ], + [ 9.2901308, 46.6393627 ], + [ 9.2900092, 46.6394336 ], + [ 9.2899024, 46.6394641 ], + [ 9.2897395, 46.6395701 ], + [ 9.2897016, 46.6396798 ], + [ 9.2896301, 46.6397613 ], + [ 9.2894518, 46.6398962 ], + [ 9.2893297, 46.6399557 ], + [ 9.2891828, 46.6400269 ], + [ 9.288987, 46.6401278 ], + [ 9.2888246, 46.640251 ], + [ 9.2887109, 46.6403161 ], + [ 9.288582, 46.6404387 ], + [ 9.2885061, 46.6406293 ], + [ 9.2884769, 46.640756 ], + [ 9.2883665, 46.6409414 ], + [ 9.2883993, 46.6411589 ], + [ 9.2884283, 46.6412905 ], + [ 9.2884962, 46.641582 ], + [ 9.2885163, 46.6416906 ], + [ 9.2885031, 46.6417826 ], + [ 9.2884919, 46.641932 ], + [ 9.2885983, 46.6421541 ], + [ 9.2888813, 46.6424075 ], + [ 9.2890005, 46.6425031 ], + [ 9.2892222, 46.642683 ], + [ 9.2894181, 46.6428461 ], + [ 9.289646, 46.6429454 ], + [ 9.2898807, 46.6430277 ], + [ 9.2900585, 46.6431165 ], + [ 9.290386, 46.6432372 ], + [ 9.2905027, 46.6432583 ], + [ 9.2904967, 46.6433215 ], + [ 9.2905078, 46.6434073 ], + [ 9.2905286, 46.6435389 ], + [ 9.2905495, 46.6436476 ], + [ 9.2904956, 46.6437919 ], + [ 9.2904974, 46.6438435 ], + [ 9.2905801, 46.644066 ], + [ 9.2907101, 46.644236 ], + [ 9.2909143, 46.6443817 ], + [ 9.2912914, 46.6444492 ], + [ 9.2918567, 46.6445506 ], + [ 9.2921525, 46.6445827 ], + [ 9.2922617, 46.6446454 ], + [ 9.2922318, 46.6449409 ], + [ 9.2922406, 46.6451987 ], + [ 9.2919843, 46.6455347 ], + [ 9.2918834, 46.6457114 ], + [ 9.2919836, 46.6458941 ], + [ 9.2918701, 46.6461079 ], + [ 9.2917134, 46.6462303 ], + [ 9.2916803, 46.6464335 ], + [ 9.2919302, 46.6466967 ], + [ 9.2921142, 46.6469886 ], + [ 9.2923666, 46.6473255 ], + [ 9.2930247, 46.6477756 ], + [ 9.2932978, 46.6479279 ], + [ 9.2936883, 46.6480045 ], + [ 9.2938524, 46.6481216 ], + [ 9.2938979, 46.6482568 ], + [ 9.2938846, 46.6484642 ], + [ 9.2942261, 46.6488504 ], + [ 9.2947629, 46.6492841 ], + [ 9.2950823, 46.649619799999996 ], + [ 9.2956916, 46.6496467 ], + [ 9.2962541, 46.6496653 ], + [ 9.2965112, 46.6495413 ], + [ 9.2969815, 46.6492064 ], + [ 9.2974118, 46.6488723 ], + [ 9.2978369, 46.6486262 ], + [ 9.2980229, 46.6487149 ], + [ 9.2982497, 46.6488029 ], + [ 9.2984611, 46.6489198 ], + [ 9.2988002, 46.6491149 ], + [ 9.2990373, 46.649266 ], + [ 9.2992412, 46.6494001 ], + [ 9.2995461, 46.6495729 ], + [ 9.2998592, 46.6497742 ], + [ 9.3001155, 46.6499823 ], + [ 9.3003447, 46.6501391 ], + [ 9.3004239, 46.6502581 ], + [ 9.3003942, 46.6503677 ], + [ 9.3004256, 46.650568 ], + [ 9.3004598, 46.6508256 ], + [ 9.3005543, 46.6511741 ], + [ 9.3007719, 46.6514687 ], + [ 9.3008658, 46.6518 ], + [ 9.3011427, 46.6524411 ], + [ 9.301204, 46.6526079 ], + [ 9.3013613, 46.6528582 ], + [ 9.3019161, 46.653103 ], + [ 9.3029266, 46.6535597 ], + [ 9.30383, 46.6537998 ], + [ 9.3046268, 46.6537661 ], + [ 9.3051854, 46.6535292 ], + [ 9.3057759, 46.6532689 ], + [ 9.3064955, 46.6528693 ], + [ 9.3074087, 46.6522606 ], + [ 9.3086542, 46.6516474 ], + [ 9.3095585, 46.6513026 ], + [ 9.3102155, 46.6510528 ], + [ 9.3106286, 46.6509555 ], + [ 9.3114556, 46.6508296 ], + [ 9.312138, 46.6508663 ], + [ 9.3132315, 46.650842 ], + [ 9.3139929, 46.6504741 ], + [ 9.3142626, 46.650293 ], + [ 9.3146138, 46.6500823 ], + [ 9.3149744, 46.6499056 ], + [ 9.3153775, 46.6497804 ], + [ 9.3157813, 46.6496491 ], + [ 9.3161591, 46.6495011 ], + [ 9.3164973, 46.6494108 ], + [ 9.3167766, 46.6493156 ], + [ 9.3168664, 46.6492687 ], + [ 9.3172799, 46.6492062 ], + [ 9.3179962, 46.6489736 ], + [ 9.3185115, 46.648692 ], + [ 9.3189206, 46.6484575 ], + [ 9.3191973, 46.6482648 ], + [ 9.3195078, 46.6480602 ], + [ 9.3197946, 46.6479248 ], + [ 9.3200004, 46.6478534 ], + [ 9.3207011, 46.6476898 ], + [ 9.3212968, 46.6476078 ], + [ 9.3218772, 46.6475547 ], + [ 9.3225072, 46.647541 ], + [ 9.3232136, 46.6475666 ], + [ 9.3235879, 46.6475735 ], + [ 9.3240931, 46.6475442 ], + [ 9.3245847, 46.6475896 ], + [ 9.3249408, 46.647568 ], + [ 9.3257546, 46.6475577 ], + [ 9.3263034, 46.6475796 ], + [ 9.3270823, 46.6475297 ], + [ 9.3278788, 46.6475139 ], + [ 9.3287295, 46.6476466 ], + [ 9.329312, 46.6477023 ], + [ 9.3296789, 46.647755 ], + [ 9.3299625, 46.6477859 ], + [ 9.3302306, 46.6478857 ], + [ 9.3303991, 46.6479639 ], + [ 9.330419299999999, 46.6481185 ], + [ 9.3305352, 46.6483979 ], + [ 9.3306569, 46.6486086 ], + [ 9.3307364, 46.6487797 ], + [ 9.3308832, 46.6489842 ], + [ 9.3309687, 46.6490691 ], + [ 9.3310717, 46.6491883 ], + [ 9.3314627, 46.6492063 ], + [ 9.3317539, 46.6492428 ], + [ 9.3321379, 46.6493182 ], + [ 9.33264, 46.6494552 ], + [ 9.3330177, 46.6496053 ], + [ 9.3331464, 46.6497356 ], + [ 9.333294, 46.6499859 ], + [ 9.3333504, 46.6502204 ], + [ 9.3335297, 46.6503959 ], + [ 9.333758, 46.6505478 ], + [ 9.3339304, 46.6507807 ], + [ 9.3340939, 46.6509966 ], + [ 9.334185399999999, 46.6512993 ], + [ 9.3343085, 46.6515501 ], + [ 9.3344307, 46.6517492 ], + [ 9.3346186, 46.651936 ], + [ 9.3349787, 46.6520748 ], + [ 9.3353136, 46.6521681 ], + [ 9.3357066, 46.6522664 ], + [ 9.3360299, 46.6522394 ], + [ 9.3363882, 46.6522807 ], + [ 9.3367964, 46.6523214 ], + [ 9.3372698, 46.6523384 ], + [ 9.337637, 46.6523968 ], + [ 9.3380704, 46.6524601 ], + [ 9.3383708, 46.6525252 ], + [ 9.3386222, 46.6525907 ], + [ 9.3387391, 46.652618 ], + [ 9.3389803, 46.6527415 ], + [ 9.3394343, 46.6527155 ], + [ 9.340104, 46.6527136 ], + [ 9.3406909, 46.653054 ], + [ 9.3412524, 46.6534133 ], + [ 9.3415968, 46.6536839 ], + [ 9.3416888, 46.6540235 ], + [ 9.3416173, 46.6542643 ], + [ 9.3415494, 46.654634 ], + [ 9.3415202, 46.6549386 ], + [ 9.3414088, 46.6551847 ], + [ 9.3414548, 46.6557277 ], + [ 9.3414257, 46.6560599 ], + [ 9.3412959, 46.6561543 ], + [ 9.3408838, 46.6562349 ], + [ 9.3405934, 46.6563596 ], + [ 9.3404771, 46.6564906 ], + [ 9.3404955, 46.6566193 ], + [ 9.3406602, 46.6567271 ], + [ 9.3409593, 46.6568696 ], + [ 9.3411685, 46.6571057 ], + [ 9.3412352, 46.6574916 ], + [ 9.3411673, 46.6578338 ], + [ 9.3412491, 46.6582564 ], + [ 9.3413677, 46.6585862 ], + [ 9.3417772, 46.6588005 ], + [ 9.3419549, 46.658908 ], + [ 9.3421028, 46.6593019 ], + [ 9.3423312, 46.659502 ], + [ 9.3425425, 46.6599119 ], + [ 9.342586, 46.6604261 ], + [ 9.342664599999999, 46.6605944 ], + [ 9.3426136, 46.6610002 ], + [ 9.3422477, 46.6617442 ], + [ 9.3422946, 46.6624956 ], + [ 9.3422987, 46.6625646 ], + [ 9.3423081, 46.662715 ], + [ 9.3423368, 46.6627644 ], + [ 9.3424473, 46.6629556 ], + [ 9.3424568, 46.6632254 ], + [ 9.342287, 46.6633686 ], + [ 9.342076, 46.6635467 ], + [ 9.3420556, 46.663709 ], + [ 9.3420773, 46.6637692 ], + [ 9.3421279, 46.6639058 ], + [ 9.3421368, 46.6641576 ], + [ 9.3419803, 46.6645381 ], + [ 9.3417081, 46.6649746 ], + [ 9.341395, 46.6653387 ], + [ 9.3417557, 46.6655816 ], + [ 9.3420767, 46.6657424 ], + [ 9.3424136, 46.6658685 ], + [ 9.3426999, 46.6659725 ], + [ 9.3428938, 46.6660494 ], + [ 9.3431803, 46.6661592 ], + [ 9.3433893, 46.6662014 ], + [ 9.3436067, 46.6662263 ], + [ 9.3439565, 46.6662547 ], + [ 9.3446955, 46.6662474 ], + [ 9.3454905, 46.6661816 ], + [ 9.3459967, 46.6661726 ], + [ 9.3465515, 46.6661054 ], + [ 9.3469468, 46.6660353 ], + [ 9.3473589, 46.6659304 ], + [ 9.3476057, 46.6658629 ], + [ 9.3478514, 46.6657667 ], + [ 9.3480307, 46.6656831 ], + [ 9.348218, 46.6655765 ], + [ 9.3482475, 46.6655538 ], + [ 9.3483919, 46.6652941 ], + [ 9.3486063, 46.6649588 ], + [ 9.3488801, 46.6646398 ], + [ 9.3493685, 46.6642896 ], + [ 9.3497339, 46.6639983 ], + [ 9.3500703, 46.6638333 ], + [ 9.350457, 46.6637023 ], + [ 9.3505641, 46.6639589 ], + [ 9.3507702, 46.66422 ], + [ 9.3509423, 46.6644416 ], + [ 9.3510802, 46.6646233 ], + [ 9.3512876, 46.6648958 ], + [ 9.351416799999999, 46.6650605 ], + [ 9.351596, 46.6652303 ], + [ 9.3517749, 46.6653942 ], + [ 9.3520189, 46.665523 ], + [ 9.3523803, 46.6656708 ], + [ 9.3524767, 46.665742 ], + [ 9.3525994, 46.6656767 ], + [ 9.3528288, 46.6656038 ], + [ 9.3530317, 46.6654739 ], + [ 9.3531687, 46.6653509 ], + [ 9.3533212, 46.6652047 ], + [ 9.3534332, 46.6650936 ], + [ 9.3535635, 46.6650109 ], + [ 9.3539025, 46.6649877 ], + [ 9.3541853, 46.6649942 ], + [ 9.3547589, 46.6649955 ], + [ 9.3555422, 46.6650619 ], + [ 9.3558432, 46.6651197 ], + [ 9.3561955, 46.6652168 ], + [ 9.3564647, 46.665298 ], + [ 9.356859, 46.6654058 ], + [ 9.357429, 46.6655392 ], + [ 9.357728, 46.6655397 ], + [ 9.3580183, 46.665523 ], + [ 9.3582395, 46.6654502 ], + [ 9.3584463, 46.6654293 ], + [ 9.3586793, 46.6654366 ], + [ 9.3589626, 46.6654546 ], + [ 9.3593141, 46.6655287 ], + [ 9.3597429, 46.6656646 ], + [ 9.3601385, 46.6658068 ], + [ 9.3604422, 46.6659392 ], + [ 9.3608297, 46.6660872 ], + [ 9.3610898, 46.66614 ], + [ 9.3613875, 46.666106 ], + [ 9.3616925, 46.6660431 ], + [ 9.3618655, 46.6660171 ], + [ 9.3622715, 46.6659696 ], + [ 9.3625746, 46.6660849 ], + [ 9.3627971, 46.6662531 ], + [ 9.3630363, 46.6664325 ], + [ 9.3632678, 46.6666236 ], + [ 9.3634658, 46.6668153 ], + [ 9.3636452, 46.6669441 ], + [ 9.3638332, 46.6670842 ], + [ 9.3640626, 46.6672409 ], + [ 9.3643098, 46.6673915 ], + [ 9.3645821, 46.6675818 ], + [ 9.3648146, 46.6678015 ], + [ 9.3649866, 46.6679534 ], + [ 9.3651077, 46.6680719 ], + [ 9.3652808, 46.6682755 ], + [ 9.3655239, 46.668540899999996 ], + [ 9.3657293, 46.6687095 ], + [ 9.3659844, 46.6688772 ], + [ 9.3661963, 46.6689766 ], + [ 9.366506, 46.6690458 ], + [ 9.366905, 46.6690559 ], + [ 9.3671134, 46.6690579 ], + [ 9.3673438, 46.6690136 ], + [ 9.3676249, 46.6689684 ], + [ 9.3679654, 46.6689623 ], + [ 9.3682411, 46.6690205 ], + [ 9.3687777, 46.6691544 ], + [ 9.3692487, 46.6693011 ], + [ 9.3693995, 46.6693384 ], + [ 9.3696498, 46.6693685 ], + [ 9.3698851, 46.6694389 ], + [ 9.3700113, 46.6694711 ], + [ 9.3702427, 46.6694326 ], + [ 9.370715, 46.6694126 ], + [ 9.3712474, 46.6694259 ], + [ 9.3716048, 46.6694369 ], + [ 9.3720553, 46.6694919 ], + [ 9.3725221, 46.6695237 ], + [ 9.3727976, 46.6695532 ], + [ 9.3730126, 46.6695322 ], + [ 9.3732795, 46.6695732 ], + [ 9.3736909, 46.6696749 ], + [ 9.3740474, 46.6696628 ], + [ 9.374171, 46.6698501 ], + [ 9.3741265, 46.6700002 ], + [ 9.373971, 46.6700603 ], + [ 9.3739329, 46.6701586 ], + [ 9.3739537, 46.6702616 ], + [ 9.3740473, 46.6705469 ], + [ 9.374191, 46.6706132 ], + [ 9.3744776, 46.670723 ], + [ 9.3748971, 46.6708245 ], + [ 9.37519, 46.670882399999996 ], + [ 9.3755269, 46.6710026 ], + [ 9.3758871, 46.6710938 ], + [ 9.3760938, 46.6712738 ], + [ 9.376212, 46.6713347 ], + [ 9.3763486, 46.6714299 ], + [ 9.3764447, 46.6715602 ], + [ 9.3764976, 46.6716454 ], + [ 9.3766024, 46.671787 ], + [ 9.3767657, 46.6719219 ], + [ 9.3769458, 46.6720679 ], + [ 9.377073, 46.6721517 ], + [ 9.3771698, 46.6722762 ], + [ 9.3773303, 46.6723538 ], + [ 9.3775813, 46.672177 ], + [ 9.3777068, 46.6722149 ], + [ 9.3780014, 46.6723187 ], + [ 9.3783368, 46.6723988 ], + [ 9.3786063, 46.6724859 ], + [ 9.3786945, 46.672622 ], + [ 9.3787013, 46.6728114 ], + [ 9.3786008, 46.673014 ], + [ 9.3785825, 46.6731866 ], + [ 9.3785227, 46.6733658 ], + [ 9.3786777, 46.673495 ], + [ 9.3789412, 46.6734385 ], + [ 9.3792899, 46.6734323 ], + [ 9.3794436, 46.67355 ], + [ 9.3796346, 46.6737706 ], + [ 9.3795426, 46.6739617 ], + [ 9.379473, 46.6741178 ], + [ 9.3795125, 46.6742836 ], + [ 9.3797803, 46.6743247 ], + [ 9.3800505, 46.674228 ], + [ 9.3801395, 46.6741575 ], + [ 9.3803151, 46.6741774 ], + [ 9.3805413, 46.6742422 ], + [ 9.3807118, 46.6743482 ], + [ 9.3809061, 46.6744366 ], + [ 9.3810911, 46.6744906 ], + [ 9.3812968, 46.674441 ], + [ 9.3813422, 46.6745434 ], + [ 9.3813223, 46.6746702 ], + [ 9.381226999999999, 46.6747924 ], + [ 9.3814716, 46.6748913 ], + [ 9.3817905, 46.674966 ], + [ 9.3821736, 46.6750108 ], + [ 9.3825231, 46.6750275 ], + [ 9.3828749, 46.6750842 ], + [ 9.3829593, 46.675091 ], + [ 9.3829838, 46.6748433 ], + [ 9.3830067, 46.6746168 ], + [ 9.3830987, 46.6744257 ], + [ 9.3832334, 46.6742397 ], + [ 9.383466, 46.6740288 ], + [ 9.3838062, 46.6737873 ], + [ 9.384076199999999, 46.6736849 ], + [ 9.3844817, 46.6734192 ], + [ 9.3849015, 46.6733025 ], + [ 9.3851882, 46.6732113 ], + [ 9.3854699, 46.6731833 ], + [ 9.3857767, 46.673172 ], + [ 9.3865037, 46.6730761 ], + [ 9.3873795, 46.6728491 ], + [ 9.3876032, 46.6727532 ], + [ 9.3877547, 46.6724924 ], + [ 9.3879853, 46.6722028 ], + [ 9.3882905, 46.6721239 ], + [ 9.3888664, 46.6721233 ], + [ 9.3894056, 46.6722339 ], + [ 9.3897098, 46.6723777 ], + [ 9.3901885, 46.6723062 ], + [ 9.3902693, 46.6722385 ], + [ 9.3901887, 46.6721316 ], + [ 9.3901273, 46.6720399 ], + [ 9.3900543, 46.6719615 ], + [ 9.3900444, 46.6718689 ], + [ 9.3899639, 46.6717908 ], + [ 9.3899413, 46.6716851 ], + [ 9.3898931, 46.6715931 ], + [ 9.3899203, 46.6714646 ], + [ 9.3899435, 46.6713846 ], + [ 9.3899333, 46.6712831 ], + [ 9.389923, 46.6711794 ], + [ 9.3899499, 46.671042 ], + [ 9.3899577, 46.670896 ], + [ 9.3899322, 46.670733 ], + [ 9.389933, 46.6705738 ], + [ 9.3899346, 46.6704368 ], + [ 9.3899493, 46.6702995 ], + [ 9.389951, 46.6701891 ], + [ 9.3900112, 46.6700687 ], + [ 9.3900582, 46.6699464 ], + [ 9.3900924, 46.6698308 ], + [ 9.3901399, 46.6697196 ], + [ 9.3901821, 46.6696437 ], + [ 9.3901712, 46.6695246 ], + [ 9.3901999, 46.6694357 ], + [ 9.390223, 46.6693514 ], + [ 9.3902258, 46.6692497 ], + [ 9.3902389, 46.6690903 ], + [ 9.3902419, 46.6689931 ], + [ 9.390236, 46.6688297 ], + [ 9.3902653, 46.6685772 ], + [ 9.3902914, 46.6684177 ], + [ 9.3902859, 46.6682675 ], + [ 9.3903081, 46.6681566 ], + [ 9.3903368, 46.66807 ], + [ 9.3904038, 46.6679583 ], + [ 9.3904392, 46.6678738 ], + [ 9.390481, 46.6677891 ], + [ 9.3905299, 46.6677175 ], + [ 9.3905904, 46.6676281 ], + [ 9.3906129, 46.667526 ], + [ 9.390635, 46.6674374 ], + [ 9.3906514, 46.6673486 ], + [ 9.3906671, 46.6672644 ], + [ 9.3907288, 46.6671838 ], + [ 9.3907842, 46.6671121 ], + [ 9.3907937, 46.6670369 ], + [ 9.3908111, 46.6669747 ], + [ 9.3908595, 46.66689 ], + [ 9.3909201, 46.666805 ], + [ 9.390956599999999, 46.6667512 ], + [ 9.3909744, 46.6667024 ], + [ 9.3909983, 46.6666622 ], + [ 9.3910432, 46.6666614 ], + [ 9.3910387, 46.6666968 ], + [ 9.39104, 46.6667322 ], + [ 9.3910292, 46.6667943 ], + [ 9.3910504, 46.6668601 ], + [ 9.3910725, 46.6669305 ], + [ 9.3911069, 46.6670006 ], + [ 9.3911607, 46.6670659 ], + [ 9.3911896, 46.6671406 ], + [ 9.3912111, 46.6672153 ], + [ 9.3912268, 46.6672901 ], + [ 9.3912436, 46.6673915 ], + [ 9.391236, 46.667429 ], + [ 9.3912612, 46.667473 ], + [ 9.3913038, 46.6674745 ], + [ 9.3914429, 46.6674147 ], + [ 9.3915506, 46.6673642 ], + [ 9.3916456, 46.6673272 ], + [ 9.3917537, 46.667312 ], + [ 9.391795, 46.6673909 ], + [ 9.3918172, 46.6674613 ], + [ 9.3918399, 46.6675493 ], + [ 9.3918237, 46.6676424 ], + [ 9.3918277, 46.6677528 ], + [ 9.3918248, 46.6678545 ], + [ 9.3917962, 46.6679433 ], + [ 9.3918062, 46.6680404 ], + [ 9.391835799999999, 46.668157 ], + [ 9.3918412, 46.6683071 ], + [ 9.391846, 46.6684396 ], + [ 9.3918443, 46.6685722 ], + [ 9.3918416, 46.6686784 ], + [ 9.3918717, 46.6687883 ], + [ 9.3919204, 46.6688936 ], + [ 9.392001, 46.6689982 ], + [ 9.3920571, 46.6691255 ], + [ 9.392113, 46.6692482 ], + [ 9.3921547, 46.6693403 ], + [ 9.3921956, 46.6694081 ], + [ 9.3923411, 46.669525 ], + [ 9.392570599999999, 46.669658 ], + [ 9.3926958, 46.6697531 ], + [ 9.3928871, 46.6698911 ], + [ 9.3931634, 46.6700765 ], + [ 9.393372, 46.6701525 ], + [ 9.3935597, 46.6701912 ], + [ 9.3937331, 46.6701971 ], + [ 9.393854900000001, 46.6701995 ], + [ 9.3939963, 46.6702014 ], + [ 9.3940374, 46.6702758 ], + [ 9.3940736, 46.6703945 ], + [ 9.3940844, 46.6705137 ], + [ 9.3941084, 46.670632499999996 ], + [ 9.3941269, 46.6707825 ], + [ 9.3941682, 46.6708636 ], + [ 9.3941899, 46.6709427 ], + [ 9.3942654, 46.6710651 ], + [ 9.3943979, 46.6711822 ], + [ 9.3945571, 46.6713387 ], + [ 9.3947964, 46.6715599 ], + [ 9.3949366, 46.6715741 ], + [ 9.3950533, 46.6715488 ], + [ 9.3951424, 46.6715274 ], + [ 9.3953837, 46.6714658 ], + [ 9.3954572, 46.6713995 ], + [ 9.3955432, 46.671427 ], + [ 9.3956801, 46.6714857 ], + [ 9.3958098, 46.6715706 ], + [ 9.3959098, 46.6716446 ], + [ 9.3960081, 46.6716748 ], + [ 9.3961893, 46.6716717 ], + [ 9.3962816, 46.6716469 ], + [ 9.3963468, 46.6715992 ], + [ 9.3964947, 46.6714863 ], + [ 9.3966375, 46.6713444 ], + [ 9.3968767, 46.6711834 ], + [ 9.3972946, 46.6708334 ], + [ 9.3976255, 46.6705429 ], + [ 9.3978036, 46.6704515 ], + [ 9.3976936, 46.6701665 ], + [ 9.3976555, 46.6700408 ], + [ 9.3974949, 46.6695328 ], + [ 9.3974067, 46.6693967 ], + [ 9.3973207, 46.6690997 ], + [ 9.3972959, 46.6688876 ], + [ 9.3972735, 46.6687217 ], + [ 9.3972863, 46.6686238 ], + [ 9.3975358, 46.6684069 ], + [ 9.39777, 46.6682419 ], + [ 9.3981521, 46.668011 ], + [ 9.3985221, 46.6679182 ], + [ 9.3988745, 46.667791199999996 ], + [ 9.3991445, 46.6676887 ], + [ 9.3995715, 46.6675489 ], + [ 9.3998676, 46.6674691 ], + [ 9.4002033, 46.6673539 ], + [ 9.4004814, 46.6672282 ], + [ 9.4006264, 46.6671051 ], + [ 9.4007652, 46.6668327 ], + [ 9.400809, 46.6666653 ], + [ 9.4007919, 46.6664418 ], + [ 9.400754, 46.666322 ], + [ 9.4007042, 46.666099 ], + [ 9.400629, 46.6658707 ], + [ 9.4005392, 46.6656944 ], + [ 9.4004487, 46.6654952 ], + [ 9.4002736, 46.6652629 ], + [ 9.4001318, 46.6650244 ], + [ 9.4000463, 46.6648992 ], + [ 9.4000765, 46.6645839 ], + [ 9.400041, 46.6642345 ], + [ 9.399982, 46.6639141 ], + [ 9.399933, 46.6636453 ], + [ 9.3998612, 46.6634456 ], + [ 9.400029, 46.6632311 ], + [ 9.4003599, 46.6628942 ], + [ 9.4006422, 46.6625924 ], + [ 9.4008753, 46.6623312 ], + [ 9.4011279, 46.6621559 ], + [ 9.4017191, 46.6618594 ], + [ 9.4018961, 46.6618285 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "JBG0006", + "country" : "CHE", + "name" : [ + { + "text" : "Eidgenössisches Jagdbanngebiet Beverin", + "lang" : "de-CH" + }, + { + "text" : "District franc fédéral Beverin", + "lang" : "fr-CH" + }, + { + "text" : "Bandita federale di caccia Beverin", + "lang" : "it-CH" + }, + { + "text" : "Federal Game Reserve Beverin", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.744114, 47.4555795 ], + [ 7.7438626, 47.455641 ], + [ 7.7432244, 47.4558398 ], + [ 7.7428412, 47.4560046 ], + [ 7.7431939, 47.4564009 ], + [ 7.7432117, 47.4563906 ], + [ 7.7432296, 47.4563804 ], + [ 7.7432476, 47.4563703 ], + [ 7.7439493, 47.455976 ], + [ 7.7439937, 47.455951400000004 ], + [ 7.7440386, 47.4559272 ], + [ 7.744084, 47.4559034 ], + [ 7.74413, 47.4558801 ], + [ 7.7441764, 47.4558573 ], + [ 7.7442232, 47.4558349 ], + [ 7.7442706, 47.4558129 ], + [ 7.7443184, 47.4557915 ], + [ 7.744114, 47.4555795 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns095", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Grüngen", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Grüngen", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Grüngen", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Grüngen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.3387145, 46.2175589 ], + [ 7.3365012, 46.2168319 ], + [ 7.3365007, 46.2168325 ], + [ 7.3358606, 46.2177129 ], + [ 7.3368673, 46.2179756 ], + [ 7.3380885, 46.2182943 ], + [ 7.3387145, 46.2175589 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSMS002", + "country" : "CHE", + "name" : [ + { + "text" : "LSMS Sion (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSMS Sion (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSMS Sion (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSMS Sion (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Special Flight Office (SFO)", + "lang" : "de-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "fr-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "it-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "en-GB" + } + ], + "siteURL" : "https://skyguide.ch/services/special-flights", + "email" : "specialflight@skyguide.ch", + "phone" : "0041439316236", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.3546709, 47.4338904 ], + [ 7.3547141, 47.4338897 ], + [ 7.3550444, 47.4338913 ], + [ 7.3549711, 47.4337739 ], + [ 7.354627, 47.4332228 ], + [ 7.3545169, 47.4328325 ], + [ 7.354438, 47.4325483 ], + [ 7.3542673, 47.4318219 ], + [ 7.3541754, 47.4314572 ], + [ 7.3540911, 47.4312197 ], + [ 7.353306, 47.4313492 ], + [ 7.3533683, 47.4320352 ], + [ 7.3533809, 47.432228 ], + [ 7.3533845, 47.4323568 ], + [ 7.3533864, 47.4324743 ], + [ 7.353356, 47.4326872 ], + [ 7.3530054, 47.4329241 ], + [ 7.3527062, 47.4329782 ], + [ 7.3523814, 47.433039 ], + [ 7.351857, 47.433107 ], + [ 7.3512059, 47.4330289 ], + [ 7.3506466, 47.4325739 ], + [ 7.3502487, 47.4321788 ], + [ 7.3500262, 47.432295 ], + [ 7.349799, 47.4324822 ], + [ 7.3498715, 47.4326449 ], + [ 7.3501199, 47.4332032 ], + [ 7.3502488, 47.4333446 ], + [ 7.3503812, 47.4335571 ], + [ 7.3504632, 47.4336887 ], + [ 7.3505672, 47.4337513 ], + [ 7.3509287, 47.4339688 ], + [ 7.3515163, 47.4341406 ], + [ 7.3533172, 47.4339696 ], + [ 7.3544983, 47.4338931 ], + [ 7.3546709, 47.4338904 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns324", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Chlini Asp", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Chlini Asp", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Chlini Asp", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Chlini Asp", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6455333, 47.4907222 ], + [ 7.6455347, 47.4907433 ], + [ 7.6455321, 47.4907644 ], + [ 7.6455254, 47.4907851 ], + [ 7.6455148, 47.490805 ], + [ 7.6454977, 47.4908277 ], + [ 7.6454761, 47.4908485 ], + [ 7.6454504, 47.4908671 ], + [ 7.6454211, 47.4908831 ], + [ 7.6453888, 47.4908962 ], + [ 7.6453541, 47.490906 ], + [ 7.6453242, 47.4909119 ], + [ 7.6452932, 47.4909138 ], + [ 7.6452622, 47.4909116 ], + [ 7.6452324, 47.4909055 ], + [ 7.6451799, 47.4908982 ], + [ 7.6451268, 47.4908934 ], + [ 7.6450733, 47.4908912 ], + [ 7.6450197, 47.4908915 ], + [ 7.6449202, 47.4908925 ], + [ 7.6448209, 47.4908967 ], + [ 7.644722, 47.4909041 ], + [ 7.6446237, 47.490914599999996 ], + [ 7.6445014, 47.4909301 ], + [ 7.6444328, 47.4909397 ], + [ 7.6443635, 47.4909464 ], + [ 7.6442938, 47.4909504 ], + [ 7.6442239, 47.4909516 ], + [ 7.6438106, 47.4909514 ], + [ 7.6437359, 47.4909561 ], + [ 7.6436617, 47.4909634 ], + [ 7.6435122, 47.490985 ], + [ 7.6433653, 47.4910135 ], + [ 7.6433248, 47.4910252 ], + [ 7.6432859, 47.4910392 ], + [ 7.643249, 47.4910555 ], + [ 7.6432142, 47.4910739 ], + [ 7.6431846, 47.4910913 ], + [ 7.6431568, 47.4911101 ], + [ 7.6431309, 47.4911302 ], + [ 7.6431071, 47.4911513 ], + [ 7.6429065, 47.4913251 ], + [ 7.6427723, 47.491353 ], + [ 7.642686, 47.4913353 ], + [ 7.642638, 47.4913289 ], + [ 7.642568, 47.4913198 ], + [ 7.6425459, 47.4913158 ], + [ 7.6425241, 47.491311 ], + [ 7.6424582999999995, 47.4912993 ], + [ 7.6423916, 47.4912899 ], + [ 7.6423243, 47.4912829 ], + [ 7.6422565, 47.491278199999996 ], + [ 7.6421656, 47.4912755 ], + [ 7.6420745, 47.4912762 ], + [ 7.6419837, 47.4912805 ], + [ 7.6418934, 47.4912882 ], + [ 7.6415001, 47.4913239 ], + [ 7.6407658, 47.4914115 ], + [ 7.6406633, 47.4914252 ], + [ 7.640562, 47.4914425 ], + [ 7.6404621, 47.4914631 ], + [ 7.6403638, 47.4914871 ], + [ 7.6401407, 47.4915486 ], + [ 7.6400667, 47.4915677 ], + [ 7.6399913999999995, 47.4915843 ], + [ 7.639915, 47.4915985 ], + [ 7.6398377, 47.4916102 ], + [ 7.639695, 47.4916309 ], + [ 7.639551, 47.4916468 ], + [ 7.6393777, 47.4916561 ], + [ 7.6392043, 47.4916647 ], + [ 7.6388281, 47.4916756 ], + [ 7.6386921999999995, 47.4916812 ], + [ 7.6385565, 47.4916894 ], + [ 7.6384536, 47.4916966 ], + [ 7.638364, 47.4917027 ], + [ 7.6382741, 47.4917061 ], + [ 7.6381841, 47.4917067 ], + [ 7.6381211, 47.4917053 ], + [ 7.6380498, 47.4916667 ], + [ 7.637497, 47.4916831 ], + [ 7.6371970000000005, 47.4916818 ], + [ 7.636919, 47.4916944 ], + [ 7.6366901, 47.4917281 ], + [ 7.6367975999999995, 47.4921257 ], + [ 7.636433, 47.4924908 ], + [ 7.6365944, 47.4930144 ], + [ 7.6365644, 47.4932063 ], + [ 7.6368838, 47.493536399999996 ], + [ 7.6374019, 47.4936921 ], + [ 7.6381004, 47.4936953 ], + [ 7.6386123999999995, 47.4939498 ], + [ 7.6385842, 47.4941154 ], + [ 7.6389125, 47.4942505 ], + [ 7.6390837, 47.4942781 ], + [ 7.6390532, 47.4943501 ], + [ 7.6389806, 47.4944483 ], + [ 7.6389524, 47.494573 ], + [ 7.6388396, 47.4947105 ], + [ 7.6386659, 47.4948019 ], + [ 7.6387281, 47.4948227 ], + [ 7.6396299, 47.4950973 ], + [ 7.6397388, 47.495128 ], + [ 7.6398513, 47.4948314 ], + [ 7.6399202, 47.4947152 ], + [ 7.640184, 47.4946732 ], + [ 7.6404039, 47.4945182 ], + [ 7.640956, 47.4946508 ], + [ 7.6411781, 47.4945216 ], + [ 7.6415147999999995, 47.4947459 ], + [ 7.6420101, 47.4950207 ], + [ 7.6427344999999995, 47.4955099 ], + [ 7.6434829, 47.4956836 ], + [ 7.6436338, 47.4956138 ], + [ 7.6439525, 47.4954994 ], + [ 7.6444323, 47.4959879 ], + [ 7.6449739999999995, 47.4965367 ], + [ 7.6454123, 47.4965857 ], + [ 7.6460076, 47.4964995 ], + [ 7.6468541, 47.4969027 ], + [ 7.6470316, 47.4969872 ], + [ 7.6470932, 47.4969832 ], + [ 7.6472309, 47.4969977 ], + [ 7.647476, 47.4970441 ], + [ 7.6476102, 47.4970474 ], + [ 7.647716, 47.4970339 ], + [ 7.647811, 47.4970051 ], + [ 7.6478906, 47.4969583 ], + [ 7.6479499, 47.4968976 ], + [ 7.6479859, 47.4968298 ], + [ 7.6480657, 47.4966062 ], + [ 7.6481516, 47.4963818 ], + [ 7.6482303, 47.4962044 ], + [ 7.6483004999999995, 47.4960422 ], + [ 7.6483446, 47.4958871 ], + [ 7.6483597, 47.4957251 ], + [ 7.6483626000000005, 47.495447 ], + [ 7.6483845, 47.4952555 ], + [ 7.6484895, 47.494798 ], + [ 7.6485484, 47.4946855 ], + [ 7.6486291, 47.4946224 ], + [ 7.6487428, 47.4945676 ], + [ 7.6488695, 47.4945387 ], + [ 7.6491406, 47.4945423 ], + [ 7.6493499, 47.4945545 ], + [ 7.6495923999999995, 47.4945618 ], + [ 7.6497556, 47.4945649 ], + [ 7.6500633, 47.4945663 ], + [ 7.6502251, 47.4944787 ], + [ 7.6502467, 47.494468 ], + [ 7.6502658, 47.4944552 ], + [ 7.6502818, 47.4944407 ], + [ 7.6502945, 47.4944247 ], + [ 7.6503843, 47.4942697 ], + [ 7.650397, 47.4942455 ], + [ 7.6504084, 47.4942209 ], + [ 7.6497983, 47.4939672 ], + [ 7.6490805, 47.493583 ], + [ 7.6486056, 47.4933483 ], + [ 7.6480668, 47.4929352 ], + [ 7.6473168000000005, 47.4923868 ], + [ 7.6468834, 47.4919949 ], + [ 7.647243, 47.4912832 ], + [ 7.6463148, 47.4910347 ], + [ 7.6455333, 47.4907222 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr003", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Gobenrai", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Gobenrai", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Gobenrai", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Gobenrai", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.9075641, 46.1398603 ], + [ 8.9073005, 46.139777 ], + [ 8.906892599999999, 46.139645 ], + [ 8.9067499, 46.1395988 ], + [ 8.9067568, 46.1395912 ], + [ 8.9066757, 46.1395486 ], + [ 8.9064672, 46.1394232 ], + [ 8.9066331, 46.1392906 ], + [ 8.9066296, 46.1392189 ], + [ 8.9062476, 46.139032 ], + [ 8.905729000000001, 46.1388082 ], + [ 8.905725799999999, 46.138807 ], + [ 8.9057189, 46.1388056 ], + [ 8.9057117, 46.138806 ], + [ 8.9057083, 46.1388066 ], + [ 8.9057054, 46.1388078 ], + [ 8.9057003, 46.1388108 ], + [ 8.9056984, 46.1388128 ], + [ 8.9056959, 46.1388171 ], + [ 8.9056129, 46.1388671 ], + [ 8.9057694, 46.1390362 ], + [ 8.905838, 46.1391285 ], + [ 8.9058441, 46.1391387 ], + [ 8.9058485, 46.1391466 ], + [ 8.9058532, 46.1391558 ], + [ 8.9058575, 46.1391651 ], + [ 8.9058614, 46.1391745 ], + [ 8.9058648, 46.139184 ], + [ 8.9058678, 46.1391936 ], + [ 8.9058701, 46.1392018 ], + [ 8.905872, 46.13921 ], + [ 8.9058736, 46.1392183 ], + [ 8.905875, 46.1392266 ], + [ 8.905876, 46.1392349 ], + [ 8.9058767, 46.1392433 ], + [ 8.9058771, 46.1392516 ], + [ 8.9057443, 46.1392359 ], + [ 8.9056, 46.1392188 ], + [ 8.905593, 46.139218 ], + [ 8.9055784, 46.1392372 ], + [ 8.9054927, 46.1393419 ], + [ 8.905126, 46.1397902 ], + [ 8.9047741, 46.1401817 ], + [ 8.904333, 46.1405279 ], + [ 8.9042891, 46.1405454 ], + [ 8.9040295, 46.1407128 ], + [ 8.9039764, 46.140791 ], + [ 8.9030672, 46.1421301 ], + [ 8.9031079, 46.142155 ], + [ 8.9031952, 46.1422434 ], + [ 8.9032633, 46.1423301 ], + [ 8.903314, 46.1423756 ], + [ 8.9033544, 46.1424014 ], + [ 8.9033672, 46.142424 ], + [ 8.9034515, 46.1425028 ], + [ 8.9035716, 46.142488 ], + [ 8.9036553, 46.1424431 ], + [ 8.9038081, 46.1424201 ], + [ 8.9039284, 46.1424091 ], + [ 8.9040366, 46.1423562 ], + [ 8.9041265, 46.142237 ], + [ 8.9043024, 46.1419146 ], + [ 8.9043681, 46.141731300000004 ], + [ 8.9044934, 46.1415571 ], + [ 8.9046111, 46.141393 ], + [ 8.9051296, 46.1406697 ], + [ 8.9051848, 46.1405969 ], + [ 8.9052437, 46.1405257 ], + [ 8.9054648, 46.1402899 ], + [ 8.9056257, 46.1403633 ], + [ 8.9057567, 46.1405738 ], + [ 8.905998199999999, 46.1406993 ], + [ 8.9063389, 46.1409036 ], + [ 8.9073554, 46.1408992 ], + [ 8.9082956, 46.1409219 ], + [ 8.9087069, 46.1409318 ], + [ 8.908598, 46.1421079 ], + [ 8.9087748, 46.1421291 ], + [ 8.9089704, 46.1421526 ], + [ 8.9103108, 46.1423293 ], + [ 8.9105612, 46.1415191 ], + [ 8.9104507, 46.1414205 ], + [ 8.910427, 46.1413066 ], + [ 8.9104412, 46.1410707 ], + [ 8.9103303, 46.1409579 ], + [ 8.9099669, 46.1408163 ], + [ 8.9095786, 46.1407035 ], + [ 8.9093073, 46.1407392 ], + [ 8.9091665, 46.1407691 ], + [ 8.9089498, 46.1408152 ], + [ 8.9086018, 46.1408439 ], + [ 8.9082469, 46.1408271 ], + [ 8.9082462, 46.1407985 ], + [ 8.9083317, 46.1400417 ], + [ 8.9083415, 46.1399546 ], + [ 8.9082138, 46.1399456 ], + [ 8.9077252, 46.1399113 ], + [ 8.9075641, 46.1398603 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VBS_14", + "country" : "CHE", + "name" : [ + { + "text" : "VBS_14 Monte Ceneri 2", + "lang" : "de-CH" + }, + { + "text" : "VBS_14 Monte Ceneri 2", + "lang" : "fr-CH" + }, + { + "text" : "VBS_14 Monte Ceneri 2", + "lang" : "it-CH" + }, + { + "text" : "VBS_14 Monte Ceneri 2", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "regulationExemption" : "YES", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Eidgenössisches Departement für Verteidigung, Bevölkerungsschutz und Sport (VBS)", + "lang" : "de-CH" + }, + { + "text" : "Département fédéral de la défense, de la protection de la population et des sports (DDPS)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento federale della difesa, della protezione della popolazione e dello sport (DDPS)", + "lang" : "it-CH" + }, + { + "text" : "Federal Department of Defence, Civil Protection and Sport (DDPS)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Lageverfolgungszentrum der Armee LVZ A", + "lang" : "de-CH" + }, + { + "text" : "Centre de suivi de la situation de l’armée, CSS A", + "lang" : "fr-CH" + }, + { + "text" : "Centro di monitoraggio della situazione dell’esercito, Centro mon sit Es", + "lang" : "it-CH" + }, + { + "text" : "Joint Operation Center, JOC", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vtg.admin.ch/en/joint-operations-command", + "email" : "lvz.op@vtg.admin.ch", + "phone" : "+41 58 464 96 43", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.9362807, 47.4653228 ], + [ 7.9357183, 47.4655962 ], + [ 7.935468, 47.4656835 ], + [ 7.9350933999999995, 47.4658688 ], + [ 7.934772, 47.4660073 ], + [ 7.9344904, 47.4661584 ], + [ 7.9341969, 47.4663426 ], + [ 7.9339548, 47.466529 ], + [ 7.9338027, 47.4667154 ], + [ 7.933922, 47.4670902 ], + [ 7.9343212, 47.4673604 ], + [ 7.9345982, 47.467548 ], + [ 7.9349039, 47.4677097 ], + [ 7.935245, 47.4678561 ], + [ 7.9356013999999995, 47.4679679 ], + [ 7.9360538, 47.468089 ], + [ 7.936621, 47.468164 ], + [ 7.937086, 47.4682156 ], + [ 7.9375094, 47.4682928 ], + [ 7.9378845, 47.4683928 ], + [ 7.9382654, 47.4685099 ], + [ 7.9388619, 47.4686312 ], + [ 7.9383856999999995, 47.4682645 ], + [ 7.9380612, 47.4680375 ], + [ 7.9372092, 47.4676981 ], + [ 7.9363823, 47.4675536 ], + [ 7.9358505, 47.467404 ], + [ 7.9357435, 47.4673415 ], + [ 7.935634, 47.4672797 ], + [ 7.935427, 47.467165 ], + [ 7.9350711, 47.4669213 ], + [ 7.9359241, 47.4666354 ], + [ 7.9365645, 47.4664256 ], + [ 7.9367111, 47.4663762 ], + [ 7.937622, 47.4659177 ], + [ 7.9379263, 47.46585 ], + [ 7.938234, 47.4657817 ], + [ 7.9384127, 47.4656063 ], + [ 7.9377746, 47.4653903 ], + [ 7.9374271, 47.4652032 ], + [ 7.936989, 47.4649689 ], + [ 7.9369594, 47.4649531 ], + [ 7.9362807, 47.4653228 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns055", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Roti Flue - Dübach", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Roti Flue - Dübach", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Roti Flue - Dübach", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Roti Flue - Dübach", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.2888371, 47.3782449 ], + [ 8.288829400000001, 47.3781037 ], + [ 8.2888109, 47.377963 ], + [ 8.2887815, 47.3778232 ], + [ 8.2887414, 47.3776846 ], + [ 8.2886906, 47.3775476 ], + [ 8.2886294, 47.3774126 ], + [ 8.2885579, 47.3772799 ], + [ 8.2884762, 47.37715 ], + [ 8.2883847, 47.3770232 ], + [ 8.2882834, 47.3768998 ], + [ 8.2881729, 47.3767801 ], + [ 8.2880532, 47.3766646 ], + [ 8.2879248, 47.3765534 ], + [ 8.2877881, 47.376447 ], + [ 8.2876433, 47.3763456 ], + [ 8.2874909, 47.3762495 ], + [ 8.2873313, 47.3761589 ], + [ 8.287165, 47.3760741 ], + [ 8.2869923, 47.3759954 ], + [ 8.286813800000001, 47.3759229 ], + [ 8.28663, 47.3758568 ], + [ 8.2864414, 47.3757974 ], + [ 8.2862484, 47.3757447 ], + [ 8.2860516, 47.375699 ], + [ 8.2858516, 47.3756603 ], + [ 8.2856489, 47.3756289 ], + [ 8.285444, 47.3756046 ], + [ 8.2852375, 47.3755877 ], + [ 8.28503, 47.3755781 ], + [ 8.2848221, 47.3755759 ], + [ 8.2846143, 47.3755812 ], + [ 8.2844071, 47.3755938 ], + [ 8.2842013, 47.3756137 ], + [ 8.2839972, 47.3756409 ], + [ 8.2837955, 47.3756754 ], + [ 8.2835968, 47.375717 ], + [ 8.2834015, 47.3757656 ], + [ 8.2832102, 47.375821 ], + [ 8.2830235, 47.3758832 ], + [ 8.2828418, 47.3759519 ], + [ 8.2826657, 47.3760271 ], + [ 8.2824955, 47.3761083 ], + [ 8.282331899999999, 47.3761955 ], + [ 8.2821753, 47.3762884 ], + [ 8.2820259, 47.3763867 ], + [ 8.2818844, 47.3764902 ], + [ 8.2817511, 47.3765986 ], + [ 8.2816262, 47.3767116 ], + [ 8.2815103, 47.3768289 ], + [ 8.2814035, 47.3769501 ], + [ 8.2813063, 47.377075 ], + [ 8.2812188, 47.3772032 ], + [ 8.2811412, 47.3773342 ], + [ 8.281073899999999, 47.3774679 ], + [ 8.281017, 47.3776038 ], + [ 8.2809706, 47.3777415 ], + [ 8.2809349, 47.3778806 ], + [ 8.28091, 47.3780209 ], + [ 8.2808959, 47.3781618 ], + [ 8.2808927, 47.3783031 ], + [ 8.2809004, 47.3784443 ], + [ 8.2809189, 47.378585 ], + [ 8.2809483, 47.3787248 ], + [ 8.2809884, 47.3788634 ], + [ 8.2810391, 47.3790004 ], + [ 8.2811003, 47.3791354 ], + [ 8.2811718, 47.3792681 ], + [ 8.2812534, 47.379398 ], + [ 8.281345, 47.3795248 ], + [ 8.2814462, 47.3796483 ], + [ 8.2815568, 47.3797679 ], + [ 8.2816764, 47.3798835 ], + [ 8.2818048, 47.3799946 ], + [ 8.2819415, 47.380101 ], + [ 8.2820863, 47.3802025 ], + [ 8.2822387, 47.3802986 ], + [ 8.2823983, 47.3803892 ], + [ 8.2825646, 47.380474 ], + [ 8.2827373, 47.3805527 ], + [ 8.2829158, 47.3806252 ], + [ 8.2830996, 47.3806913 ], + [ 8.2832883, 47.3807507 ], + [ 8.2834813, 47.3808034 ], + [ 8.2836781, 47.3808491 ], + [ 8.2838781, 47.380887799999996 ], + [ 8.2840809, 47.3809193 ], + [ 8.2842858, 47.3809435 ], + [ 8.2844923, 47.3809604 ], + [ 8.2846998, 47.38097 ], + [ 8.2849077, 47.3809722 ], + [ 8.2851156, 47.380967 ], + [ 8.2853227, 47.3809544 ], + [ 8.2855286, 47.3809344 ], + [ 8.2857327, 47.3809072 ], + [ 8.2859344, 47.3808727 ], + [ 8.2861332, 47.3808311 ], + [ 8.2863285, 47.3807825 ], + [ 8.2865198, 47.3807271 ], + [ 8.2867065, 47.3806649 ], + [ 8.2868882, 47.3805961 ], + [ 8.2870643, 47.380521 ], + [ 8.2872345, 47.3804398 ], + [ 8.2873981, 47.3803526 ], + [ 8.2875548, 47.3802597 ], + [ 8.2877041, 47.3801613 ], + [ 8.2878456, 47.3800578 ], + [ 8.287979, 47.3799494 ], + [ 8.2881038, 47.3798364 ], + [ 8.288219699999999, 47.3797191 ], + [ 8.2883265, 47.3795979 ], + [ 8.2884237, 47.379473 ], + [ 8.2885112, 47.3793448 ], + [ 8.2885887, 47.3792138 ], + [ 8.288656, 47.3790801 ], + [ 8.2887129, 47.3789442 ], + [ 8.2887593, 47.3788065 ], + [ 8.288795, 47.3786673 ], + [ 8.2888199, 47.3785271 ], + [ 8.2888339, 47.3783862 ], + [ 8.2888371, 47.3782449 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0079", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Niederwil", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Niederwil", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Niederwil", + "lang" : "it-CH" + }, + { + "text" : "Substation Niederwil", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.0413226, 47.5746434 ], + [ 9.0538336, 47.5741449 ], + [ 9.0545403, 47.5740838 ], + [ 9.0563826, 47.5736875 ], + [ 9.0557983, 47.5728788 ], + [ 9.0538107, 47.5733923 ], + [ 9.0507191, 47.5736207 ], + [ 9.0501006, 47.5727792 ], + [ 9.0463937, 47.5730133 ], + [ 9.042242, 47.5733092 ], + [ 9.0422499, 47.574010799999996 ], + [ 9.0413157, 47.5742845 ], + [ 9.0413226, 47.5746434 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSPA002", + "country" : "CHE", + "name" : [ + { + "text" : "LSPA Amlikon (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSPA Amlikon (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSPA Amlikon (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSPA Amlikon (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Segelfluggruppe Cumulus", + "lang" : "de-CH" + }, + { + "text" : "Segelfluggruppe Cumulus", + "lang" : "fr-CH" + }, + { + "text" : "Segelfluggruppe Cumulus", + "lang" : "it-CH" + }, + { + "text" : "Segelfluggruppe Cumulus", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Fabian Grunder", + "lang" : "de-CH" + }, + { + "text" : "Fabian Grunder", + "lang" : "fr-CH" + }, + { + "text" : "Fabian Grunder", + "lang" : "it-CH" + }, + { + "text" : "Fabian Grunder", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.cumulus-segelflug.ch/flugplatz/drohnen/", + "email" : "info@cumulus-segelflug.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P02DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6910793, 47.403998 ], + [ 7.6911614, 47.4041655 ], + [ 7.6911996, 47.404184 ], + [ 7.6912034, 47.4042405 ], + [ 7.6912071, 47.4042777 ], + [ 7.6912109, 47.4043269 ], + [ 7.6912377, 47.4043689 ], + [ 7.691236, 47.404399 ], + [ 7.6912576, 47.4044615 ], + [ 7.6912951, 47.4045299 ], + [ 7.6913181999999995, 47.4045599 ], + [ 7.6913361, 47.404608 ], + [ 7.6913629, 47.4046536 ], + [ 7.6913702, 47.4047058 ], + [ 7.6914041, 47.4047683 ], + [ 7.6914594, 47.4048595 ], + [ 7.691479, 47.4049039 ], + [ 7.691515, 47.4050319 ], + [ 7.6915261, 47.4051304 ], + [ 7.6915409, 47.4052561 ], + [ 7.6915731, 47.4053486 ], + [ 7.6916196, 47.4054434 ], + [ 7.6916658, 47.4054824 ], + [ 7.6917084, 47.4055207 ], + [ 7.6917688, 47.4055855 ], + [ 7.6917762, 47.4056539 ], + [ 7.6917905, 47.4056767 ], + [ 7.6918118, 47.4057019 ], + [ 7.6918437, 47.4057186 ], + [ 7.6918667, 47.4057593 ], + [ 7.6919314, 47.4058235 ], + [ 7.692013, 47.405862 ], + [ 7.6920434, 47.4058722 ], + [ 7.692087, 47.4058837 ], + [ 7.6921554, 47.4059286 ], + [ 7.6922013, 47.4060225 ], + [ 7.6922701, 47.4061549 ], + [ 7.69254, 47.4064049 ], + [ 7.6927474, 47.4065735 ], + [ 7.6929498, 47.4064857 ], + [ 7.6932191, 47.4067246 ], + [ 7.6949705999999995, 47.4059823 ], + [ 7.6945214, 47.405805 ], + [ 7.6941153, 47.4055735 ], + [ 7.6938341999999995, 47.4053845 ], + [ 7.6935147, 47.4052148 ], + [ 7.6937839, 47.4049775 ], + [ 7.6940546, 47.4048973 ], + [ 7.6940748, 47.4047612 ], + [ 7.6941273, 47.4044579 ], + [ 7.6940602, 47.4042463 ], + [ 7.694052, 47.4040975 ], + [ 7.6940233, 47.4039759 ], + [ 7.6943766, 47.4038238 ], + [ 7.6946672, 47.4037179 ], + [ 7.6947048, 47.4037082 ], + [ 7.6949792, 47.4036292 ], + [ 7.6951259, 47.4035918 ], + [ 7.6953005, 47.4038671 ], + [ 7.6955389, 47.4042427 ], + [ 7.6960744, 47.4045203 ], + [ 7.6964677, 47.4046071 ], + [ 7.696937, 47.4047089 ], + [ 7.6969557, 47.40469 ], + [ 7.6970386, 47.4046057 ], + [ 7.69727, 47.4043742 ], + [ 7.6973937, 47.4042605 ], + [ 7.6977013, 47.4039184 ], + [ 7.6978264, 47.4038197 ], + [ 7.6980369, 47.4037739 ], + [ 7.6985712, 47.4034406 ], + [ 7.6988081, 47.4032137 ], + [ 7.6988989, 47.4032306 ], + [ 7.6993561, 47.4029123 ], + [ 7.6998075, 47.4025982 ], + [ 7.6998407, 47.4026172 ], + [ 7.6999511, 47.4026482 ], + [ 7.7000715, 47.4026799 ], + [ 7.7001982, 47.4027015 ], + [ 7.7003147, 47.4027221 ], + [ 7.7004629, 47.4027407 ], + [ 7.7007086000000005, 47.4027646 ], + [ 7.7008532, 47.4027789 ], + [ 7.7010552, 47.4028006 ], + [ 7.7012067, 47.4028169 ], + [ 7.7013866, 47.4028324 ], + [ 7.701526, 47.4028411 ], + [ 7.7016936, 47.4028457 ], + [ 7.7018678, 47.4028456 ], + [ 7.7021331, 47.4028316 ], + [ 7.7023133999999995, 47.4028223 ], + [ 7.7025268, 47.4028053 ], + [ 7.7027718, 47.4027863 ], + [ 7.7029699, 47.4027641 ], + [ 7.7033845, 47.4027213 ], + [ 7.703581, 47.4026966 ], + [ 7.7035998, 47.4026653 ], + [ 7.7037423, 47.4025535 ], + [ 7.7037968, 47.4025111 ], + [ 7.7037017, 47.4024685 ], + [ 7.7036523, 47.402385 ], + [ 7.7035839, 47.4020644 ], + [ 7.7035637999999995, 47.4019211 ], + [ 7.7031121, 47.4018458 ], + [ 7.7028443, 47.4018768 ], + [ 7.7026281999999995, 47.4018639 ], + [ 7.7023367, 47.4018066 ], + [ 7.7020702, 47.4018022 ], + [ 7.7015512, 47.4017411 ], + [ 7.7010756, 47.401685 ], + [ 7.7012739, 47.4015417 ], + [ 7.70199, 47.4010236 ], + [ 7.7026465, 47.4004849 ], + [ 7.7031429, 47.4000751 ], + [ 7.703164, 47.4000577 ], + [ 7.7031754, 47.4000483 ], + [ 7.703182, 47.4000429 ], + [ 7.7031715, 47.4000407 ], + [ 7.7030524, 47.4000091 ], + [ 7.7029055, 47.3999463 ], + [ 7.7027280000000005, 47.3998826 ], + [ 7.7023971, 47.3997897 ], + [ 7.7022765, 47.3997617 ], + [ 7.7021264, 47.3997269 ], + [ 7.7019379, 47.399717 ], + [ 7.7016621, 47.3997278 ], + [ 7.7014036, 47.3997649 ], + [ 7.7009521, 47.3997768 ], + [ 7.7008021, 47.3997915 ], + [ 7.7006063000000005, 47.3998277 ], + [ 7.7004442, 47.3998498 ], + [ 7.7002689, 47.3998539 ], + [ 7.6998543, 47.3998321 ], + [ 7.6994841, 47.3997983 ], + [ 7.6990653, 47.3997801 ], + [ 7.6991551, 47.3998477 ], + [ 7.6992657, 47.3999733 ], + [ 7.69938, 47.4001877 ], + [ 7.6994386, 47.4002564 ], + [ 7.6996339, 47.4003428 ], + [ 7.6997035, 47.4003736 ], + [ 7.6997279, 47.4003861 ], + [ 7.6996623, 47.4004013 ], + [ 7.6995939, 47.4004032 ], + [ 7.6995331, 47.4004071 ], + [ 7.6994991, 47.4004049 ], + [ 7.6994291, 47.4003901 ], + [ 7.6993618, 47.4003979 ], + [ 7.699259, 47.4004068 ], + [ 7.6992025, 47.4004348 ], + [ 7.6991475, 47.4004585 ], + [ 7.6990649, 47.4004877 ], + [ 7.6989991, 47.4004904 ], + [ 7.6988674, 47.4005235 ], + [ 7.6987784999999995, 47.4005382 ], + [ 7.6986495999999995, 47.4005837 ], + [ 7.6985537, 47.4006126 ], + [ 7.6984552, 47.4006359 ], + [ 7.6983318, 47.4006741 ], + [ 7.6982516, 47.4006586 ], + [ 7.6981429, 47.4006576 ], + [ 7.6980571, 47.400646 ], + [ 7.6979485, 47.4006141 ], + [ 7.697909, 47.4005982 ], + [ 7.6978596, 47.4005749 ], + [ 7.6977937, 47.4005271 ], + [ 7.697777, 47.4005155 ], + [ 7.69775, 47.4005044 ], + [ 7.6977185, 47.4005039 ], + [ 7.6976772, 47.4005133 ], + [ 7.6976377, 47.4005418 ], + [ 7.6975673, 47.4005304 ], + [ 7.6975283999999995, 47.400521499999996 ], + [ 7.6974863, 47.4005192 ], + [ 7.6973949, 47.4004769 ], + [ 7.6972641, 47.4004221 ], + [ 7.6972459, 47.4004194 ], + [ 7.6970995, 47.4003858 ], + [ 7.6969662, 47.400358 ], + [ 7.6969324, 47.400354 ], + [ 7.6969013, 47.4003515 ], + [ 7.6968872, 47.400348 ], + [ 7.6968393, 47.4002985 ], + [ 7.6965972, 47.4002345 ], + [ 7.6965425, 47.4002237 ], + [ 7.6964951, 47.4002115 ], + [ 7.696429, 47.4001967 ], + [ 7.6962469, 47.4001386 ], + [ 7.6961698, 47.4001172 ], + [ 7.6960909, 47.4000899 ], + [ 7.6960589, 47.4000803 ], + [ 7.6958988, 47.4000461 ], + [ 7.6958376, 47.400055 ], + [ 7.6957466, 47.4001277 ], + [ 7.6955197, 47.4003088 ], + [ 7.6954395, 47.400374 ], + [ 7.6954903, 47.4004883 ], + [ 7.695552, 47.4007274 ], + [ 7.6959884, 47.4010815 ], + [ 7.6963013, 47.4014166 ], + [ 7.6964956, 47.4015878 ], + [ 7.6968204, 47.4018894 ], + [ 7.6965093, 47.4019643 ], + [ 7.6960135, 47.4020426 ], + [ 7.6960203, 47.4022154 ], + [ 7.6963403, 47.4024874 ], + [ 7.6958687, 47.4023401 ], + [ 7.6955243, 47.4023059 ], + [ 7.6951903999999995, 47.4022731 ], + [ 7.6950948, 47.402267 ], + [ 7.6950135, 47.4025064 ], + [ 7.6949514, 47.4027077 ], + [ 7.6947038, 47.4026533 ], + [ 7.6944545, 47.4022442 ], + [ 7.6943985999999995, 47.4021117 ], + [ 7.6944722, 47.4018026 ], + [ 7.694787, 47.4017493 ], + [ 7.6950050999999995, 47.4016863 ], + [ 7.6953349, 47.4017504 ], + [ 7.6955687, 47.4013236 ], + [ 7.6955191, 47.4010644 ], + [ 7.6953437000000005, 47.400756 ], + [ 7.6949508, 47.4006691 ], + [ 7.6944059, 47.400512 ], + [ 7.6943883, 47.400634 ], + [ 7.6943429, 47.4008363 ], + [ 7.6942872, 47.4010808 ], + [ 7.6942135, 47.4013376 ], + [ 7.6940724, 47.4015732 ], + [ 7.6937804, 47.4016039 ], + [ 7.6937445, 47.4016177 ], + [ 7.693848, 47.4017428 ], + [ 7.6939784, 47.4019168 ], + [ 7.6939169, 47.401904 ], + [ 7.6938788, 47.4019035 ], + [ 7.6937282, 47.401944 ], + [ 7.6936824999999995, 47.4019918 ], + [ 7.6935318, 47.4017976 ], + [ 7.6933177, 47.4017726 ], + [ 7.6929285, 47.4017237 ], + [ 7.6929278, 47.4017543 ], + [ 7.6929188, 47.402121 ], + [ 7.6929133, 47.402326 ], + [ 7.6927543, 47.4025928 ], + [ 7.6927338, 47.4027873 ], + [ 7.6927547, 47.4032887 ], + [ 7.6922385, 47.4032631 ], + [ 7.6922719, 47.4030821 ], + [ 7.6921805, 47.4030565 ], + [ 7.6919808, 47.403005 ], + [ 7.6916608, 47.4030794 ], + [ 7.6913852, 47.4030962 ], + [ 7.6909876, 47.4031713 ], + [ 7.690907, 47.4032571 ], + [ 7.6907399, 47.4034368 ], + [ 7.6908048, 47.4037506 ], + [ 7.6910793, 47.403998 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns258", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Rifenstein - Horniflue", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Rifenstein - Horniflue", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Rifenstein - Horniflue", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Rifenstein - Horniflue", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6606321, 47.5137756 ], + [ 7.6605742, 47.5137838 ], + [ 7.6605564, 47.5137869 ], + [ 7.66057, 47.5138121 ], + [ 7.6607135, 47.5140769 ], + [ 7.6609096, 47.5144388 ], + [ 7.6609422, 47.5144989 ], + [ 7.6609766, 47.5145021 ], + [ 7.6610311, 47.5145208 ], + [ 7.6610564, 47.5145295 ], + [ 7.6611949, 47.5146001 ], + [ 7.6612772, 47.5146187 ], + [ 7.6612901, 47.5146172 ], + [ 7.6613541, 47.514609899999996 ], + [ 7.6613664, 47.5146048 ], + [ 7.6615167, 47.5145423 ], + [ 7.6616897, 47.5144918 ], + [ 7.6618734, 47.5144571 ], + [ 7.6619866, 47.5144469 ], + [ 7.6620622, 47.51444 ], + [ 7.6627918, 47.5144139 ], + [ 7.6627443, 47.5137628 ], + [ 7.6626933, 47.5137577 ], + [ 7.6626294, 47.5137703 ], + [ 7.6625631, 47.5137665 ], + [ 7.6624554, 47.5137476 ], + [ 7.6618531, 47.5137127 ], + [ 7.6615069, 47.5136926 ], + [ 7.6611963, 47.5137039 ], + [ 7.6610572, 47.5137196 ], + [ 7.660971, 47.5137293 ], + [ 7.6609226, 47.5137348 ], + [ 7.6606321, 47.5137756 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns315", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Zinggibrunn", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Zinggibrunn", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Zinggibrunn", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Zinggibrunn", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.3324487, 47.3710234 ], + [ 8.3324787, 47.371006 ], + [ 8.3325283, 47.3710137 ], + [ 8.332582, 47.3709799 ], + [ 8.332651, 47.3709116 ], + [ 8.3326645, 47.3708586 ], + [ 8.3326754, 47.3708424 ], + [ 8.3327198, 47.3708271 ], + [ 8.3328041, 47.3708115 ], + [ 8.3328449, 47.3707756 ], + [ 8.3329362, 47.3707025 ], + [ 8.3329907, 47.3706262 ], + [ 8.3330451, 47.3705441 ], + [ 8.3330423, 47.370474 ], + [ 8.3330162, 47.3704431 ], + [ 8.3329633, 47.3704262 ], + [ 8.3329357, 47.3704034 ], + [ 8.3329497, 47.3703826 ], + [ 8.3330356, 47.3703636 ], + [ 8.3330922, 47.370316 ], + [ 8.3331284, 47.3702916 ], + [ 8.3331953, 47.3702808 ], + [ 8.333256, 47.3702826 ], + [ 8.3332955, 47.3702605 ], + [ 8.3333154, 47.3702167 ], + [ 8.3333099, 47.3701718 ], + [ 8.3332677, 47.3701319 ], + [ 8.3331922, 47.3700952 ], + [ 8.3331589, 47.3700678 ], + [ 8.3331422, 47.370048 ], + [ 8.3331123, 47.3700299 ], + [ 8.3331118, 47.3700061 ], + [ 8.3331483, 47.3699796 ], + [ 8.3331821, 47.3699285 ], + [ 8.3332171, 47.3698782 ], + [ 8.3332151, 47.369836 ], + [ 8.3331826, 47.3697972 ], + [ 8.3331125, 47.3697771 ], + [ 8.3330319, 47.3697818 ], + [ 8.332906, 47.3697934 ], + [ 8.3328545, 47.3697982 ], + [ 8.3327663, 47.3698045 ], + [ 8.3327256, 47.3697841 ], + [ 8.3326767, 47.3697954 ], + [ 8.3325807, 47.3697925 ], + [ 8.3324161, 47.3697888 ], + [ 8.3322709, 47.3697811 ], + [ 8.3322043, 47.3697756 ], + [ 8.3321153, 47.3697466 ], + [ 8.3320027, 47.369677 ], + [ 8.3319311, 47.3696416 ], + [ 8.3318357, 47.3696157 ], + [ 8.3317117, 47.3695786 ], + [ 8.3316522, 47.3695515 ], + [ 8.3316208, 47.3695065 ], + [ 8.3315948, 47.3694645 ], + [ 8.3315518, 47.3694396 ], + [ 8.3314984, 47.3694432 ], + [ 8.3313928, 47.3694512 ], + [ 8.3313125, 47.3694651 ], + [ 8.3312905, 47.3694561 ], + [ 8.3313108, 47.3693875 ], + [ 8.3313242, 47.3693474 ], + [ 8.331365, 47.3693178 ], + [ 8.3314301, 47.3693049 ], + [ 8.3314506, 47.3692939 ], + [ 8.3314522, 47.3692693 ], + [ 8.3314276, 47.3692365 ], + [ 8.3313526, 47.3691966 ], + [ 8.3312516, 47.3691661 ], + [ 8.331154399999999, 47.3691532 ], + [ 8.3310475, 47.3691505 ], + [ 8.3309619, 47.3691798 ], + [ 8.3309272, 47.3692362 ], + [ 8.3309747, 47.369321 ], + [ 8.3309961, 47.3693515 ], + [ 8.3310455, 47.3693687 ], + [ 8.3310757, 47.3694053 ], + [ 8.3311154, 47.3694801 ], + [ 8.331153, 47.3695036 ], + [ 8.3312163, 47.3695068 ], + [ 8.3312358, 47.3695511 ], + [ 8.3312485, 47.3695879 ], + [ 8.3312966, 47.3696427 ], + [ 8.331366, 47.3697311 ], + [ 8.331424, 47.369792 ], + [ 8.3314671, 47.3698707 ], + [ 8.331516, 47.3699163 ], + [ 8.3315588, 47.3699827 ], + [ 8.3315811, 47.3700032 ], + [ 8.3315921, 47.3700592 ], + [ 8.3316119, 47.3700713 ], + [ 8.3316222, 47.3700927 ], + [ 8.3316096, 47.3701357 ], + [ 8.3315924, 47.3702451 ], + [ 8.3316041, 47.370367 ], + [ 8.3316238, 47.3704002 ], + [ 8.3316086, 47.370444 ], + [ 8.3315971, 47.3705154 ], + [ 8.3316208, 47.3705934 ], + [ 8.3317051, 47.3707573 ], + [ 8.3317931, 47.3709511 ], + [ 8.3318376, 47.3710324 ], + [ 8.3319327, 47.3710824 ], + [ 8.3319951, 47.3710946 ], + [ 8.3320684, 47.3710871 ], + [ 8.3322149, 47.3710654 ], + [ 8.3323536, 47.3710586 ], + [ 8.3324314, 47.3710385 ], + [ 8.3324487, 47.3710234 ] + ], + [ + [ 8.3328243, 47.3703808 ], + [ 8.3326594, 47.3703679 ], + [ 8.3325951, 47.3703686 ], + [ 8.3325031, 47.3703526 ], + [ 8.3324611, 47.3703254 ], + [ 8.3324014, 47.370283 ], + [ 8.3323961, 47.37024 ], + [ 8.3324184, 47.3701614 ], + [ 8.3324376, 47.3701374 ], + [ 8.332486, 47.3701077 ], + [ 8.3325249, 47.3700943 ], + [ 8.3325787, 47.3701114 ], + [ 8.3326227, 47.3701294 ], + [ 8.3326418, 47.3701553 ], + [ 8.3326475, 47.3702182 ], + [ 8.3326592, 47.3702581 ], + [ 8.332708, 47.3702975 ], + [ 8.3328014, 47.3703288 ], + [ 8.3328379, 47.3703546 ], + [ 8.3328243, 47.3703808 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "KTAG502", + "country" : "CHE", + "name" : [ + { + "text" : "Hegnau", + "lang" : "de-CH" + }, + { + "text" : "Hegnau", + "lang" : "fr-CH" + }, + { + "text" : "Hegnau", + "lang" : "it-CH" + }, + { + "text" : "Hegnau", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "regulationExemption" : "NO", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "schedule" : [ + { + "day" : [ "ANY" ], + "startTime" : "00:00:00.00+01:00", + "endTime" : "00:00:00.00+01:00" + } + ] + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Aargau", + "lang" : "de-CH" + }, + { + "text" : "Canton d'Argovie", + "lang" : "fr-CH" + }, + { + "text" : "Canton Argovia", + "lang" : "it-CH" + }, + { + "text" : "Canton of Aargau", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Departement Bau, Verkehr und Umwelt (BVU)", + "lang" : "de-CH" + }, + { + "text" : "Département de la construction, des transports et de l'environnement (CTE)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento delle costruzioni, dei trasporti e dell'ambiente (CTA)", + "lang" : "it-CH" + }, + { + "text" : "Department of Civil Engineering,Transport and Environment (CTE)", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Sektion Gewässernutzung", + "lang" : "de-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "fr-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "it-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ag.ch/de/verwaltung/bvu/umwelt-natur-landschaft/hochwasserschutz-gewaesser/gewaessernutzung", + "email" : "alg@ag.ch", + "phone" : "0041 62 835 34 50", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4523958, 47.4466833 ], + [ 7.452498, 47.4467443 ], + [ 7.4528351, 47.4469196 ], + [ 7.4528702, 47.4469383 ], + [ 7.4529049, 47.4469575 ], + [ 7.4529392, 47.446977 ], + [ 7.452973, 47.4469968 ], + [ 7.4530064, 47.447017 ], + [ 7.4530393, 47.4470375 ], + [ 7.4530717, 47.4470584 ], + [ 7.4531037, 47.4470796 ], + [ 7.4531351, 47.4471011 ], + [ 7.4531661, 47.4471229 ], + [ 7.4531966, 47.4471451 ], + [ 7.4532266, 47.4471675 ], + [ 7.45325, 47.4471836 ], + [ 7.4532727, 47.4472 ], + [ 7.4532948, 47.4472168 ], + [ 7.4533162, 47.4472341 ], + [ 7.4533369, 47.4472517 ], + [ 7.4533569, 47.4472697 ], + [ 7.4533762, 47.4472881 ], + [ 7.4533948, 47.4473068 ], + [ 7.4534120999999995, 47.4473253 ], + [ 7.4534288, 47.4473441 ], + [ 7.4534447, 47.4473632 ], + [ 7.4534599, 47.4473826 ], + [ 7.4534743, 47.4474022 ], + [ 7.453488, 47.4474221 ], + [ 7.4535009, 47.4474422 ], + [ 7.4535131, 47.4474626 ], + [ 7.4535244, 47.4474831 ], + [ 7.453537, 47.4475029 ], + [ 7.4535505, 47.4475224 ], + [ 7.4535648, 47.4475416 ], + [ 7.4535799, 47.4475605 ], + [ 7.4535959, 47.447579 ], + [ 7.4536127, 47.4475973 ], + [ 7.4536303, 47.4476152 ], + [ 7.4536486, 47.4476327 ], + [ 7.4536678, 47.4476499 ], + [ 7.4536876, 47.4476667 ], + [ 7.4538862, 47.4478109 ], + [ 7.454105, 47.4479094 ], + [ 7.4549479, 47.4481828 ], + [ 7.4552867, 47.4482997 ], + [ 7.4560623, 47.4485763 ], + [ 7.4567535, 47.4488173 ], + [ 7.4570056, 47.4489188 ], + [ 7.4570973, 47.4489643 ], + [ 7.4572971, 47.4483225 ], + [ 7.4574086, 47.4479651 ], + [ 7.4569228, 47.4478563 ], + [ 7.4568798, 47.4478461 ], + [ 7.4567953, 47.4478228 ], + [ 7.4562265, 47.4476506 ], + [ 7.4560427, 47.4475891 ], + [ 7.4558664, 47.4475184 ], + [ 7.4556985000000005, 47.4474387 ], + [ 7.4550626, 47.4471116 ], + [ 7.4550438, 47.4471023 ], + [ 7.4550246, 47.4470934 ], + [ 7.455005, 47.4470851 ], + [ 7.4545194, 47.4468859 ], + [ 7.4544635, 47.4468617 ], + [ 7.4544093, 47.4468356 ], + [ 7.4543572, 47.4468078 ], + [ 7.4538868, 47.4465443 ], + [ 7.4538476, 47.4465215 ], + [ 7.4538097, 47.4464976 ], + [ 7.4537731, 47.4464728 ], + [ 7.4535384, 47.4463175 ], + [ 7.4532897, 47.4461725 ], + [ 7.4532346, 47.4461443 ], + [ 7.4525951, 47.4465475 ], + [ 7.4524483, 47.44664 ], + [ 7.4523958, 47.4466833 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns101", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Challhollen", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Challhollen", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Challhollen", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Challhollen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6518428, 47.0933637 ], + [ 7.6518368, 47.0932225 ], + [ 7.65182, 47.0930817 ], + [ 7.6517925, 47.0929417 ], + [ 7.6517542, 47.0928028 ], + [ 7.6517054, 47.0926656 ], + [ 7.6516461, 47.0925302 ], + [ 7.6515765, 47.0923972 ], + [ 7.6514968, 47.0922668 ], + [ 7.6514073, 47.0921394 ], + [ 7.6513081, 47.0920155 ], + [ 7.6511995, 47.0918952 ], + [ 7.6510819, 47.091779 ], + [ 7.6509555, 47.0916672 ], + [ 7.6508208, 47.09156 ], + [ 7.650678, 47.0914578 ], + [ 7.6505275, 47.0913608 ], + [ 7.6503699, 47.0912693 ], + [ 7.6502054, 47.0911836 ], + [ 7.6500346, 47.0911039 ], + [ 7.649858, 47.0910304 ], + [ 7.6496759, 47.0909633 ], + [ 7.649489, 47.0909029 ], + [ 7.6492976, 47.0908492 ], + [ 7.6491025, 47.0908024 ], + [ 7.648904, 47.0907626 ], + [ 7.6487027, 47.09073 ], + [ 7.6484992, 47.0907046 ], + [ 7.6482941, 47.0906865 ], + [ 7.6480878, 47.0906758 ], + [ 7.647881, 47.0906725 ], + [ 7.6476742, 47.0906766 ], + [ 7.647468, 47.090688 ], + [ 7.647263, 47.0907068 ], + [ 7.6470597, 47.090733 ], + [ 7.6468587, 47.0907663 ], + [ 7.6466606, 47.0908068 ], + [ 7.6464658, 47.0908543 ], + [ 7.6462748, 47.0909087 ], + [ 7.6460884, 47.0909699 ], + [ 7.6459068, 47.0910376 ], + [ 7.6457308, 47.0911117 ], + [ 7.6455606, 47.0911921 ], + [ 7.6453968, 47.0912783 ], + [ 7.6452399, 47.0913704 ], + [ 7.6450902, 47.0914679 ], + [ 7.6449482, 47.0915706 ], + [ 7.6448143, 47.0916783 ], + [ 7.6446888, 47.0917906 ], + [ 7.644572, 47.0919072 ], + [ 7.6444644, 47.0920279 ], + [ 7.6443662, 47.0921522 ], + [ 7.6442776, 47.0922799 ], + [ 7.644199, 47.0924106 ], + [ 7.6441304, 47.0925439 ], + [ 7.6440722, 47.0926794 ], + [ 7.6440244, 47.0928169 ], + [ 7.6439872, 47.0929559 ], + [ 7.6439608, 47.093096 ], + [ 7.6439451, 47.0932368 ], + [ 7.6439402, 47.0933781 ], + [ 7.6439462, 47.0935193 ], + [ 7.6439629, 47.0936601 ], + [ 7.6439905, 47.0938001 ], + [ 7.6440287, 47.093939 ], + [ 7.6440775, 47.0940762 ], + [ 7.6441368, 47.0942116 ], + [ 7.6442063000000005, 47.0943446 ], + [ 7.644286, 47.094475 ], + [ 7.6443756, 47.0946024 ], + [ 7.6444747, 47.0947264 ], + [ 7.6445833, 47.0948466 ], + [ 7.6447009, 47.0949628 ], + [ 7.6448273, 47.0950747 ], + [ 7.644962, 47.0951819 ], + [ 7.6451048, 47.0952841 ], + [ 7.6452553, 47.0953811 ], + [ 7.6454129, 47.0954726 ], + [ 7.6455774, 47.0955583 ], + [ 7.6457482, 47.095638 ], + [ 7.6459249, 47.0957115 ], + [ 7.6461068999999995, 47.0957786 ], + [ 7.6462939, 47.095839 ], + [ 7.6464852, 47.0958928 ], + [ 7.6466804, 47.0959396 ], + [ 7.6468789, 47.0959793 ], + [ 7.6470801999999996, 47.096012 ], + [ 7.6472837, 47.0960373 ], + [ 7.6474889, 47.0960554 ], + [ 7.6476952, 47.0960661 ], + [ 7.647902, 47.0960694 ], + [ 7.6481088, 47.0960654 ], + [ 7.648315, 47.0960539 ], + [ 7.64852, 47.0960351 ], + [ 7.6487233, 47.096009 ], + [ 7.6489244, 47.0959756 ], + [ 7.6491226, 47.0959351 ], + [ 7.6493174, 47.0958876 ], + [ 7.6495083, 47.0958332 ], + [ 7.6496948, 47.095772 ], + [ 7.6498763, 47.0957043 ], + [ 7.6500524, 47.0956302 ], + [ 7.6502226, 47.0955498 ], + [ 7.6503864, 47.0954635 ], + [ 7.6505433, 47.0953715 ], + [ 7.650693, 47.095274 ], + [ 7.650835, 47.0951712 ], + [ 7.6509689, 47.0950636 ], + [ 7.6510944, 47.0949512 ], + [ 7.6512111, 47.0948346 ], + [ 7.6513188, 47.0947139 ], + [ 7.651417, 47.0945896 ], + [ 7.6515055, 47.0944619 ], + [ 7.6515842, 47.0943313 ], + [ 7.6516527, 47.094198 ], + [ 7.6517109, 47.0940624 ], + [ 7.6517587, 47.0939249 ], + [ 7.6517958, 47.093786 ], + [ 7.6518223, 47.0936458 ], + [ 7.6518379, 47.093505 ], + [ 7.6518428, 47.0933637 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0015", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Bickigen", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Bickigen", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Bickigen", + "lang" : "it-CH" + }, + { + "text" : "Substation Bickigen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.9979487, 46.3491992 ], + [ 6.9979413, 46.3489523 ], + [ 6.9979789, 46.3485538 ], + [ 6.9980362, 46.348372499999996 ], + [ 6.9980743, 46.3483065 ], + [ 6.9980625, 46.3482983 ], + [ 6.9980626, 46.3482893 ], + [ 6.9980497, 46.3482802 ], + [ 6.9980497, 46.3482712 ], + [ 6.9980367, 46.3482712 ], + [ 6.9980238, 46.3482621 ], + [ 6.9980109, 46.3482531 ], + [ 6.997998, 46.348244 ], + [ 6.9979981, 46.348235 ], + [ 6.9979851, 46.348226 ], + [ 6.9979721, 46.3482259 ], + [ 6.9979462, 46.3482169 ], + [ 6.9979333, 46.3482078 ], + [ 6.9979203, 46.3482078 ], + [ 6.9979074, 46.3481987 ], + [ 6.9978945, 46.3481897 ], + [ 6.9978685, 46.3481896 ], + [ 6.9978556, 46.3481805 ], + [ 6.9978427, 46.3481715 ], + [ 6.9978297, 46.3481714 ], + [ 6.9978038, 46.3481623 ], + [ 6.9977908, 46.3481623 ], + [ 6.9977649, 46.3481532 ], + [ 6.9977519, 46.3481531 ], + [ 6.997726, 46.348144 ], + [ 6.9977131, 46.348135 ], + [ 6.9977001, 46.3481349 ], + [ 6.9976742, 46.3481258 ], + [ 6.9976612, 46.3481258 ], + [ 6.9976353, 46.3481167 ], + [ 6.9976223, 46.3481166 ], + [ 6.9975964, 46.3481075 ], + [ 6.9975834, 46.3481075 ], + [ 6.9975575, 46.3480984 ], + [ 6.9975446, 46.3480893 ], + [ 6.9975316, 46.3480893 ], + [ 6.9975057, 46.3480802 ], + [ 6.9974927000000005, 46.3480801 ], + [ 6.9974668, 46.348071 ], + [ 6.9974539, 46.348062 ], + [ 6.9974409, 46.3480619 ], + [ 6.997415, 46.3480529 ], + [ 6.997402, 46.3480528 ], + [ 6.9973890999999995, 46.3480438 ], + [ 6.9973761, 46.3480347 ], + [ 6.9973502, 46.3480346 ], + [ 6.9973372, 46.3480256 ], + [ 6.9973243, 46.3480165 ], + [ 6.9973113, 46.3480165 ], + [ 6.9972854, 46.3480074 ], + [ 6.9972725, 46.3479983 ], + [ 6.9972595, 46.3479983 ], + [ 6.9972466, 46.3479892 ], + [ 6.9972337, 46.3479802 ], + [ 6.9972208, 46.3479711 ], + [ 6.9971948, 46.347971 ], + [ 6.9971819, 46.347962 ], + [ 6.9971689999999995, 46.3479529 ], + [ 6.997156, 46.3479529 ], + [ 6.9971431, 46.3479438 ], + [ 6.9971301, 46.3479348 ], + [ 6.9971172, 46.3479257 ], + [ 6.9971043, 46.3479167 ], + [ 6.9970913, 46.3479167 ], + [ 6.9970654, 46.3479076 ], + [ 6.9970525, 46.3478985 ], + [ 6.9970396, 46.3478895 ], + [ 6.9970267, 46.3478804 ], + [ 6.9970137, 46.3478804 ], + [ 6.9970008, 46.3478713 ], + [ 6.9969878, 46.3478623 ], + [ 6.9969749, 46.3478532 ], + [ 6.996962, 46.3478442 ], + [ 6.9969491, 46.3478351 ], + [ 6.9969361, 46.3478351 ], + [ 6.9969232, 46.347826 ], + [ 6.9969103, 46.347817 ], + [ 6.9968973, 46.3478079 ], + [ 6.9968844, 46.3477989 ], + [ 6.9968715, 46.3477899 ], + [ 6.9968585999999995, 46.3477808 ], + [ 6.9968457, 46.3477718 ], + [ 6.9968328, 46.3477627 ], + [ 6.9968198, 46.3477537 ], + [ 6.9968069, 46.3477446 ], + [ 6.9967939, 46.3477446 ], + [ 6.996781, 46.3477355 ], + [ 6.9967681, 46.3477265 ], + [ 6.9967552, 46.3477174 ], + [ 6.9967423, 46.3477084 ], + [ 6.9967293999999995, 46.3476993 ], + [ 6.9967164, 46.3476903 ], + [ 6.9967035, 46.3476812 ], + [ 6.9966906, 46.3476722 ], + [ 6.9966777, 46.3476632 ], + [ 6.9966648, 46.3476541 ], + [ 6.9966519, 46.3476451 ], + [ 6.9966389, 46.347636 ], + [ 6.996613, 46.3476269 ], + [ 6.9966001, 46.3476179 ], + [ 6.9965871, 46.3476178 ], + [ 6.9965741999999995, 46.3476088 ], + [ 6.9965613, 46.3475997 ], + [ 6.9965484, 46.3475907 ], + [ 6.9965355, 46.3475816 ], + [ 6.9965225, 46.3475816 ], + [ 6.9965095999999996, 46.3475725 ], + [ 6.9964966, 46.3475635 ], + [ 6.9964707, 46.3475544 ], + [ 6.9964577, 46.3475543 ], + [ 6.9964448, 46.3475453 ], + [ 6.9964319, 46.3475362 ], + [ 6.9964189, 46.3475362 ], + [ 6.996393, 46.3475271 ], + [ 6.99638, 46.3475271 ], + [ 6.9963671, 46.347518 ], + [ 6.9963541, 46.347518 ], + [ 6.9963282, 46.3475089 ], + [ 6.9963152, 46.3475088 ], + [ 6.9963022, 46.3475088 ], + [ 6.9962893, 46.3474997 ], + [ 6.9962633, 46.3474996 ], + [ 6.9962503, 46.3474996 ], + [ 6.9962374, 46.3474995 ], + [ 6.9962115, 46.3474904 ], + [ 6.9961985, 46.3474904 ], + [ 6.9961855, 46.3474903 ], + [ 6.9961595, 46.3474902 ], + [ 6.9961465, 46.3474902 ], + [ 6.9961206, 46.3474811 ], + [ 6.9961076, 46.347481 ], + [ 6.9960946, 46.347481 ], + [ 6.9960686, 46.3474809 ], + [ 6.9960556, 46.3474808 ], + [ 6.9960297, 46.3474807 ], + [ 6.9960167, 46.3474806 ], + [ 6.9960037, 46.3474806 ], + [ 6.9959777, 46.3474805 ], + [ 6.9959647, 46.3474804 ], + [ 6.9959387, 46.3474803 ], + [ 6.9959257, 46.3474803 ], + [ 6.9958998, 46.3474802 ], + [ 6.9958869, 46.3474711 ], + [ 6.9958739, 46.3474711 ], + [ 6.9958479, 46.347471 ], + [ 6.9958349, 46.3474709 ], + [ 6.9958089, 46.347470799999996 ], + [ 6.9957959, 46.347470799999996 ], + [ 6.9957699, 46.3474707 ], + [ 6.995757, 46.3474706 ], + [ 6.9957309, 46.3474795 ], + [ 6.9957179, 46.3474795 ], + [ 6.9957049, 46.3474794 ], + [ 6.9956789, 46.3474793 ], + [ 6.995666, 46.3474793 ], + [ 6.99564, 46.3474792 ], + [ 6.995627, 46.3474791 ], + [ 6.995614, 46.3474791 ], + [ 6.995588, 46.347479 ], + [ 6.995575, 46.3474789 ], + [ 6.995549, 46.3474878 ], + [ 6.9955359999999995, 46.3474878 ], + [ 6.995523, 46.3474877 ], + [ 6.995497, 46.3474876 ], + [ 6.9954839, 46.3474966 ], + [ 6.995471, 46.3474965 ], + [ 6.995445, 46.3474964 ], + [ 6.9954319, 46.3475053 ], + [ 6.9954189, 46.3475053 ], + [ 6.9954059, 46.3475142 ], + [ 6.9953799, 46.3475141 ], + [ 6.9953668, 46.3475231 ], + [ 6.9953538, 46.347523 ], + [ 6.9953408, 46.347532 ], + [ 6.9953148, 46.3475319 ], + [ 6.9953017, 46.3475408 ], + [ 6.9952887, 46.3475498 ], + [ 6.9952756, 46.3475587 ], + [ 6.9952626, 46.3475587 ], + [ 6.9952495, 46.3475676 ], + [ 6.9952365, 46.3475765 ], + [ 6.9952234, 46.3475855 ], + [ 6.9952103, 46.3475944 ], + [ 6.9951973, 46.3476034 ], + [ 6.9951842, 46.3476123 ], + [ 6.9951712, 46.3476213 ], + [ 6.9951581, 46.3476302 ], + [ 6.995145, 46.3476392 ], + [ 6.995132, 46.3476481 ], + [ 6.9951189, 46.347657 ], + [ 6.9951058, 46.347666 ], + [ 6.9950928, 46.3476749 ], + [ 6.9950797, 46.3476839 ], + [ 6.9950667, 46.3476928 ], + [ 6.9950536, 46.3477018 ], + [ 6.9950406, 46.3477017 ], + [ 6.9950275, 46.3477107 ], + [ 6.9950145, 46.3477196 ], + [ 6.9950014, 46.3477285 ], + [ 6.9949753999999995, 46.3477374 ], + [ 6.9949623, 46.3477464 ], + [ 6.9949492, 46.3477553 ], + [ 6.9949362, 46.3477553 ], + [ 6.9949232, 46.3477642 ], + [ 6.9949101, 46.3477732 ], + [ 6.994897, 46.3477821 ], + [ 6.9948841, 46.3477821 ], + [ 6.994871, 46.347791 ], + [ 6.994845, 46.3477909 ], + [ 6.9948319, 46.3477998 ], + [ 6.994819, 46.3477998 ], + [ 6.9948059, 46.3478087 ], + [ 6.9947799, 46.3478086 ], + [ 6.9947669, 46.3478086 ], + [ 6.9947539, 46.3478175 ], + [ 6.9947409, 46.3478175 ], + [ 6.9947149, 46.3478174 ], + [ 6.9947019, 46.3478173 ], + [ 6.9946889, 46.3478173 ], + [ 6.9946629, 46.3478262 ], + [ 6.9946499, 46.3478261 ], + [ 6.9946369, 46.3478261 ], + [ 6.9946109, 46.347826 ], + [ 6.9945979, 46.3478259 ], + [ 6.9945719, 46.3478258 ], + [ 6.9945588999999995, 46.3478258 ], + [ 6.9945459, 46.3478257 ], + [ 6.99452, 46.3478256 ], + [ 6.994507, 46.3478256 ], + [ 6.994481, 46.3478255 ], + [ 6.9944679999999995, 46.3478254 ], + [ 6.994442, 46.3478253 ], + [ 6.994429, 46.3478253 ], + [ 6.994416, 46.3478252 ], + [ 6.9943901, 46.3478251 ], + [ 6.9943772, 46.3478161 ], + [ 6.9943512, 46.347816 ], + [ 6.9943382, 46.3478159 ], + [ 6.9943121999999995, 46.3478158 ], + [ 6.9942992, 46.3478157 ], + [ 6.9942732, 46.3478156 ], + [ 6.9942602, 46.3478156 ], + [ 6.9942473, 46.3478155 ], + [ 6.9942212999999995, 46.3478154 ], + [ 6.9942084, 46.3478064 ], + [ 6.9941824, 46.3478063 ], + [ 6.9941694, 46.3478062 ], + [ 6.9941434000000005, 46.3478061 ], + [ 6.9941303999999995, 46.3478061 ], + [ 6.9941044, 46.347806 ], + [ 6.9940914, 46.3478059 ], + [ 6.9940785, 46.3478059 ], + [ 6.9940525000000004, 46.3478058 ], + [ 6.9940394999999995, 46.3478057 ], + [ 6.9940135, 46.3478056 ], + [ 6.9940005, 46.3478056 ], + [ 6.9939875, 46.3478055 ], + [ 6.9939615, 46.3478054 ], + [ 6.9939485999999995, 46.3478054 ], + [ 6.9939356, 46.3478053 ], + [ 6.9939096, 46.3478052 ], + [ 6.9938966, 46.3478052 ], + [ 6.9938706, 46.3478051 ], + [ 6.9938576, 46.347805 ], + [ 6.9938446, 46.347805 ], + [ 6.9938187, 46.3478049 ], + [ 6.9938057, 46.3478048 ], + [ 6.9937927, 46.3478048 ], + [ 6.9937667, 46.3478047 ], + [ 6.9937537, 46.3478046 ], + [ 6.9937407, 46.3478046 ], + [ 6.9937147, 46.3478045 ], + [ 6.9937017, 46.3478044 ], + [ 6.9936758, 46.3478043 ], + [ 6.9936628, 46.3478042 ], + [ 6.9936498, 46.3478042 ], + [ 6.9936238, 46.3478041 ], + [ 6.9936108, 46.347804 ], + [ 6.9935978, 46.347804 ], + [ 6.9935718, 46.3478129 ], + [ 6.9935588, 46.3478128 ], + [ 6.9935458, 46.3478128 ], + [ 6.9935198, 46.3478127 ], + [ 6.9935068, 46.3478126 ], + [ 6.9934937999999995, 46.3478126 ], + [ 6.9934679, 46.3478125 ], + [ 6.9934549, 46.3478124 ], + [ 6.9934419, 46.3478124 ], + [ 6.9934159, 46.3478123 ], + [ 6.9934028999999995, 46.3478122 ], + [ 6.9933769, 46.3478121 ], + [ 6.9933639, 46.3478121 ], + [ 6.9933509, 46.347812 ], + [ 6.993325, 46.3478119 ], + [ 6.9933119999999995, 46.3478119 ], + [ 6.993286, 46.3478118 ], + [ 6.993273, 46.3478117 ], + [ 6.99326, 46.3478117 ], + [ 6.993234, 46.3478116 ], + [ 6.993221, 46.3478115 ], + [ 6.9931951, 46.3478114 ], + [ 6.9931821, 46.3478113 ], + [ 6.9931692, 46.3478023 ], + [ 6.9931432000000004, 46.3478022 ], + [ 6.9931301999999995, 46.3478021 ], + [ 6.9931042, 46.347802 ], + [ 6.9930912, 46.347802 ], + [ 6.9930782, 46.3478019 ], + [ 6.9930523, 46.3478018 ], + [ 6.9930392999999995, 46.3478018 ], + [ 6.9930263, 46.3477927 ], + [ 6.9930004, 46.3477926 ], + [ 6.9929874, 46.3477926 ], + [ 6.9929614, 46.3477925 ], + [ 6.9929483999999995, 46.3477924 ], + [ 6.9929355, 46.3477834 ], + [ 6.9929095, 46.3477833 ], + [ 6.9928965, 46.3477832 ], + [ 6.9928836, 46.3477742 ], + [ 6.9928706, 46.3477741 ], + [ 6.9928446, 46.347774 ], + [ 6.9928317, 46.347765 ], + [ 6.9928187, 46.3477649 ], + [ 6.9928057, 46.3477649 ], + [ 6.9927798, 46.3477558 ], + [ 6.9927668, 46.3477557 ], + [ 6.9927539, 46.3477467 ], + [ 6.9927409, 46.3477466 ], + [ 6.992728, 46.3477376 ], + [ 6.9927019999999995, 46.3477375 ], + [ 6.9926891, 46.3477284 ], + [ 6.9926761, 46.3477284 ], + [ 6.9926632, 46.3477193 ], + [ 6.9926502, 46.3477193 ], + [ 6.9926373, 46.3477102 ], + [ 6.9926113, 46.3477101 ], + [ 6.9925984, 46.3477011 ], + [ 6.9925854, 46.347701 ], + [ 6.9925725, 46.347692 ], + [ 6.9925596, 46.347683 ], + [ 6.9925466, 46.3476829 ], + [ 6.9925207, 46.3476738 ], + [ 6.9925078, 46.3476648 ], + [ 6.9924948, 46.3476647 ], + [ 6.9924819, 46.3476557 ], + [ 6.992469, 46.3476466 ], + [ 6.992443, 46.3476465 ], + [ 6.9924301, 46.3476375 ], + [ 6.9924172, 46.3476284 ], + [ 6.9923912, 46.3476193 ], + [ 6.9923783, 46.3476193 ], + [ 6.9923653, 46.3476102 ], + [ 6.9923394, 46.3476011 ], + [ 6.9923265, 46.3475921 ], + [ 6.9923135, 46.347592 ], + [ 6.9922876, 46.3475829 ], + [ 6.9922747, 46.3475739 ], + [ 6.9922488, 46.3475648 ], + [ 6.9922359, 46.3475557 ], + [ 6.9922099, 46.3475556 ], + [ 6.992197, 46.3475466 ], + [ 6.9921711, 46.3475375 ], + [ 6.9921581, 46.3475374 ], + [ 6.9921322, 46.3475283 ], + [ 6.9921192, 46.3475283 ], + [ 6.9920933, 46.3475192 ], + [ 6.9920803, 46.3475191 ], + [ 6.9920673, 46.3475191 ], + [ 6.9920414, 46.34751 ], + [ 6.9920284, 46.3475099 ], + [ 6.9920154, 46.3475099 ], + [ 6.9920024, 46.3475098 ], + [ 6.9919894, 46.3475188 ], + [ 6.9919764, 46.3475187 ], + [ 6.9919633, 46.3475277 ], + [ 6.9919503, 46.3475276 ], + [ 6.9919373, 46.3475366 ], + [ 6.9919242, 46.3475455 ], + [ 6.9919241, 46.3475545 ], + [ 6.9919111, 46.3475634 ], + [ 6.991911, 46.3475724 ], + [ 6.9919108, 46.3475904 ], + [ 6.9918978, 46.3475994 ], + [ 6.9918977, 46.3476084 ], + [ 6.9918976, 46.3476264 ], + [ 6.9918974, 46.3476444 ], + [ 6.9918973, 46.3476533 ], + [ 6.9918972, 46.3476713 ], + [ 6.9918971, 46.3476803 ], + [ 6.991897, 46.3476983 ], + [ 6.9918968, 46.3477163 ], + [ 6.9918967, 46.3477253 ], + [ 6.9918966, 46.3477433 ], + [ 6.9919095, 46.3477523 ], + [ 6.9919094, 46.3477703 ], + [ 6.9919093, 46.3477793 ], + [ 6.9919221, 46.3477974 ], + [ 6.9919221, 46.3478064 ], + [ 6.991922, 46.3478154 ], + [ 6.9919348, 46.3478334 ], + [ 6.9919347, 46.3478424 ], + [ 6.9919477, 46.3478515 ], + [ 6.9919475, 46.3478694 ], + [ 6.9919604, 46.3478785 ], + [ 6.9919604, 46.3478875 ], + [ 6.9919733, 46.3478965 ], + [ 6.9919731, 46.3479145 ], + [ 6.991986, 46.3479236 ], + [ 6.991999, 46.3479326 ], + [ 6.9919989, 46.3479416 ], + [ 6.9920118, 46.3479507 ], + [ 6.9920247, 46.3479597 ], + [ 6.9920246, 46.3479777 ], + [ 6.9920375, 46.3479867 ], + [ 6.9920374, 46.3479957 ], + [ 6.9920503, 46.3480048 ], + [ 6.9920632, 46.3480138 ], + [ 6.9920632, 46.3480228 ], + [ 6.992076, 46.3480409 ], + [ 6.9920889, 46.3480499 ], + [ 6.9920888, 46.3480589 ], + [ 6.9921018, 46.348068 ], + [ 6.9921147, 46.348077 ], + [ 6.9921145, 46.348095 ], + [ 6.9921274, 46.348104 ], + [ 6.9921274, 46.348113 ], + [ 6.9921403, 46.3481221 ], + [ 6.9921532, 46.3481311 ], + [ 6.9921531, 46.3481491 ], + [ 6.992166, 46.3481582 ], + [ 6.9921659, 46.3481672 ], + [ 6.9921788, 46.3481762 ], + [ 6.9921787, 46.3481942 ], + [ 6.9921916, 46.3482033 ], + [ 6.9922045, 46.3482123 ], + [ 6.9922043, 46.3482303 ], + [ 6.9922173, 46.3482393 ], + [ 6.9922172, 46.3482483 ], + [ 6.9922301000000004, 46.3482574 ], + [ 6.99223, 46.3482754 ], + [ 6.9922429, 46.3482844 ], + [ 6.9922558, 46.3482935 ], + [ 6.9922557, 46.3483025 ], + [ 6.9922686, 46.3483205 ], + [ 6.9922685, 46.3483295 ], + [ 6.9922813999999995, 46.3483385 ], + [ 6.9922943, 46.3483476 ], + [ 6.9922942, 46.3483566 ], + [ 6.9923072, 46.3483656 ], + [ 6.99232, 46.3483837 ], + [ 6.9923329, 46.3483927 ], + [ 6.9923328, 46.3484017 ], + [ 6.9923458, 46.3484108 ], + [ 6.9923587, 46.3484198 ], + [ 6.9923716, 46.3484289 ], + [ 6.9923845, 46.3484379 ], + [ 6.9923974, 46.348447 ], + [ 6.9923973, 46.3484559 ], + [ 6.9924102999999995, 46.348465 ], + [ 6.9924232, 46.348474 ], + [ 6.9924361, 46.3484831 ], + [ 6.992449, 46.3484921 ], + [ 6.9924619, 46.3485012 ], + [ 6.9924748, 46.3485102 ], + [ 6.9924878, 46.3485193 ], + [ 6.9925007, 46.3485283 ], + [ 6.9925137, 46.3485284 ], + [ 6.9925266, 46.3485374 ], + [ 6.9925525, 46.3485465 ], + [ 6.9925654, 46.3485556 ], + [ 6.9925783, 46.3485646 ], + [ 6.9925912, 46.3485737 ], + [ 6.9926041, 46.3485827 ], + [ 6.9926171, 46.3485828 ], + [ 6.9926300999999995, 46.3485918 ], + [ 6.992643, 46.3486008 ], + [ 6.9926559, 46.3486099 ], + [ 6.9926819, 46.34861 ], + [ 6.9926948, 46.348619 ], + [ 6.9927077, 46.3486281 ], + [ 6.9927206, 46.3486371 ], + [ 6.9927335, 46.3486462 ], + [ 6.9927465, 46.3486462 ], + [ 6.9927724, 46.3486553 ], + [ 6.9927852999999995, 46.3486644 ], + [ 6.9927983, 46.3486734 ], + [ 6.9928113, 46.3486735 ], + [ 6.9928242, 46.3486825 ], + [ 6.9928501, 46.3486916 ], + [ 6.992863, 46.3487007 ], + [ 6.9928759, 46.3487097 ], + [ 6.9928889, 46.3487098 ], + [ 6.9929018, 46.3487188 ], + [ 6.9929147, 46.3487279 ], + [ 6.9929406, 46.348737 ], + [ 6.9929536, 46.348737 ], + [ 6.9929665, 46.3487461 ], + [ 6.9929795, 46.3487551 ], + [ 6.9929924, 46.3487642 ], + [ 6.9930053, 46.3487732 ], + [ 6.9930182, 46.3487822 ], + [ 6.9930312, 46.3487823 ], + [ 6.9930571, 46.3487914 ], + [ 6.99307, 46.3488004 ], + [ 6.9930829, 46.3488095 ], + [ 6.9930959, 46.3488185 ], + [ 6.9931088, 46.3488276 ], + [ 6.9931218, 46.3488276 ], + [ 6.9931347, 46.3488367 ], + [ 6.9931476, 46.3488457 ], + [ 6.9931605, 46.3488548 ], + [ 6.9931734, 46.3488638 ], + [ 6.9931863, 46.3488729 ], + [ 6.9931993, 46.3488819 ], + [ 6.9932122, 46.348891 ], + [ 6.9932251999999995, 46.348891 ], + [ 6.9932381, 46.3489001 ], + [ 6.993264, 46.3489092 ], + [ 6.9932769, 46.3489182 ], + [ 6.9932898, 46.3489272 ], + [ 6.9933027, 46.3489363 ], + [ 6.9933156, 46.3489453 ], + [ 6.9933156, 46.3489543 ], + [ 6.9933285, 46.3489634 ], + [ 6.9933414, 46.3489724 ], + [ 6.9933543, 46.3489815 ], + [ 6.9933672, 46.3489905 ], + [ 6.9933802, 46.3489996 ], + [ 6.9933931, 46.3490086 ], + [ 6.993406, 46.3490177 ], + [ 6.9934189, 46.3490267 ], + [ 6.9934318, 46.3490358 ], + [ 6.9934446999999995, 46.3490448 ], + [ 6.9934577, 46.3490538 ], + [ 6.9934706, 46.3490629 ], + [ 6.9934835, 46.3490719 ], + [ 6.9934834, 46.3490809 ], + [ 6.9934963, 46.34909 ], + [ 6.9935092, 46.349099 ], + [ 6.9935222, 46.3491081 ], + [ 6.9935351, 46.3491171 ], + [ 6.993548, 46.3491262 ], + [ 6.9935479, 46.3491352 ], + [ 6.9935608, 46.3491442 ], + [ 6.9935738, 46.3491533 ], + [ 6.9935866, 46.3491713 ], + [ 6.9935995, 46.3491803 ], + [ 6.9936124, 46.3491894 ], + [ 6.9936124, 46.3491984 ], + [ 6.9936253, 46.3492074 ], + [ 6.9936381999999995, 46.3492165 ], + [ 6.9936511, 46.3492255 ], + [ 6.993651, 46.3492345 ], + [ 6.9936639, 46.3492526 ], + [ 6.9936768, 46.3492616 ], + [ 6.9936897, 46.3492707 ], + [ 6.9937026, 46.3492797 ], + [ 6.9937024999999995, 46.3492887 ], + [ 6.9937155, 46.3492978 ], + [ 6.9937284, 46.3493068 ], + [ 6.9937413, 46.3493158 ], + [ 6.9937412, 46.3493338 ], + [ 6.9937541, 46.3493429 ], + [ 6.993767, 46.3493519 ], + [ 6.9937799, 46.349361 ], + [ 6.9937798, 46.34937 ], + [ 6.9937927, 46.349379 ], + [ 6.9938056, 46.3493971 ], + [ 6.9938185, 46.3494061 ], + [ 6.9938184, 46.3494151 ], + [ 6.9938313, 46.3494241 ], + [ 6.9938443, 46.3494332 ], + [ 6.9938572, 46.3494422 ], + [ 6.9938571, 46.3494512 ], + [ 6.9938699, 46.3494693 ], + [ 6.9938829, 46.3494783 ], + [ 6.9938958, 46.3494874 ], + [ 6.9938956999999995, 46.3494964 ], + [ 6.9939086, 46.3495054 ], + [ 6.9939215, 46.3495145 ], + [ 6.9939345, 46.3495235 ], + [ 6.9939473, 46.3495415 ], + [ 6.9939472, 46.3495505 ], + [ 6.9939601, 46.3495596 ], + [ 6.9939731, 46.3495686 ], + [ 6.993986, 46.3495777 ], + [ 6.9939989, 46.3495867 ], + [ 6.9939988, 46.3495957 ], + [ 6.9940117, 46.3496048 ], + [ 6.9940245999999995, 46.3496228 ], + [ 6.9940375, 46.3496319 ], + [ 6.9940504, 46.3496409 ], + [ 6.9940503, 46.3496499 ], + [ 6.9940633, 46.349659 ], + [ 6.9940762, 46.349668 ], + [ 6.9940891, 46.349677 ], + [ 6.994102, 46.3496861 ], + [ 6.9941019, 46.3496951 ], + [ 6.9941148, 46.3497041 ], + [ 6.9941277, 46.3497222 ], + [ 6.9941406, 46.3497312 ], + [ 6.9941534999999995, 46.3497403 ], + [ 6.9941664, 46.3497493 ], + [ 6.9941794, 46.3497584 ], + [ 6.9941793, 46.3497674 ], + [ 6.9941922, 46.3497764 ], + [ 6.9942051, 46.3497855 ], + [ 6.994218, 46.3497945 ], + [ 6.9942309, 46.3498035 ], + [ 6.9942439, 46.3498126 ], + [ 6.9942568, 46.3498216 ], + [ 6.9942567, 46.3498306 ], + [ 6.9942696, 46.3498397 ], + [ 6.9942825, 46.3498577 ], + [ 6.9942954, 46.3498668 ], + [ 6.9943083, 46.3498758 ], + [ 6.9943212, 46.3498849 ], + [ 6.9943341, 46.3498939 ], + [ 6.994347, 46.349903 ], + [ 6.99436, 46.349912 ], + [ 6.9943599, 46.349921 ], + [ 6.9943728, 46.34993 ], + [ 6.9943857, 46.3499391 ], + [ 6.9943986, 46.3499481 ], + [ 6.9944116, 46.3499572 ], + [ 6.9944245, 46.3499662 ], + [ 6.9944374, 46.3499753 ], + [ 6.9944503000000005, 46.3499843 ], + [ 6.9944632, 46.3499934 ], + [ 6.9944761, 46.3500024 ], + [ 6.9944891, 46.3500115 ], + [ 6.994489, 46.3500205 ], + [ 6.9945018999999995, 46.3500295 ], + [ 6.9945148, 46.3500385 ], + [ 6.9945277, 46.3500476 ], + [ 6.9945407, 46.3500566 ], + [ 6.9945536, 46.3500657 ], + [ 6.9945664999999995, 46.3500747 ], + [ 6.9945794, 46.3500838 ], + [ 6.9945923, 46.3500928 ], + [ 6.9946052, 46.3501019 ], + [ 6.9946182, 46.3501109 ], + [ 6.9946311, 46.35012 ], + [ 6.994631, 46.350129 ], + [ 6.9946439, 46.350138 ], + [ 6.9946568, 46.3501471 ], + [ 6.9946697, 46.3501561 ], + [ 6.9946749, 46.3501597 ], + [ 6.9947034, 46.3501769 ], + [ 6.9947801, 46.3501673 ], + [ 6.9949179, 46.3501499 ], + [ 6.9950285, 46.3501368 ], + [ 6.995572, 46.3500706 ], + [ 6.9955888999999996, 46.3500698 ], + [ 6.9956369, 46.3500789 ], + [ 6.9957262, 46.3501144 ], + [ 6.996138, 46.3502761 ], + [ 6.9961626, 46.3502897 ], + [ 6.9963549, 46.3504407 ], + [ 6.9965551999999995, 46.3505818 ], + [ 6.9972876, 46.350609 ], + [ 6.9973733, 46.3506138 ], + [ 6.9975192, 46.3505658 ], + [ 6.9975115, 46.3505541 ], + [ 6.9975116, 46.3505451 ], + [ 6.9974986999999995, 46.350536 ], + [ 6.9974988, 46.350518 ], + [ 6.9974859, 46.350509 ], + [ 6.997486, 46.3505 ], + [ 6.9974731, 46.3504819 ], + [ 6.9974732, 46.3504729 ], + [ 6.9974733, 46.3504639 ], + [ 6.9974604, 46.3504459 ], + [ 6.9974605, 46.3504369 ], + [ 6.9974606999999995, 46.3504189 ], + [ 6.9974477, 46.3504099 ], + [ 6.9974479, 46.3503919 ], + [ 6.997448, 46.3503829 ], + [ 6.997448, 46.3503739 ], + [ 6.9974352, 46.3503558 ], + [ 6.9974353, 46.3503469 ], + [ 6.9974354, 46.3503289 ], + [ 6.9974355, 46.3503199 ], + [ 6.9974356, 46.3503109 ], + [ 6.9974226999999996, 46.3502928 ], + [ 6.9974228, 46.3502838 ], + [ 6.9974229, 46.3502658 ], + [ 6.9974229999999995, 46.3502568 ], + [ 6.9974231, 46.3502479 ], + [ 6.9974232, 46.3502299 ], + [ 6.9974103, 46.3502208 ], + [ 6.9974104, 46.3502028 ], + [ 6.9974105, 46.3501938 ], + [ 6.9974106, 46.3501848 ], + [ 6.9974107, 46.3501668 ], + [ 6.9974108, 46.3501578 ], + [ 6.9974109, 46.3501489 ], + [ 6.997411, 46.3501309 ], + [ 6.9974111, 46.3501219 ], + [ 6.9974113, 46.3501039 ], + [ 6.9974113, 46.3500949 ], + [ 6.9974114, 46.3500859 ], + [ 6.9974115, 46.3500679 ], + [ 6.9974115999999995, 46.3500589 ], + [ 6.9974117, 46.3500499 ], + [ 6.9974118, 46.3500319 ], + [ 6.9974118999999995, 46.3500229 ], + [ 6.997412, 46.3500139 ], + [ 6.9974121, 46.3499959 ], + [ 6.9974122, 46.3499869 ], + [ 6.9974123, 46.3499779 ], + [ 6.9974124, 46.3499599 ], + [ 6.9974125, 46.349951 ], + [ 6.9974126, 46.349933 ], + [ 6.9974127, 46.349924 ], + [ 6.9974128, 46.349915 ], + [ 6.9974129, 46.349897 ], + [ 6.997413, 46.349888 ], + [ 6.9974131, 46.349879 ], + [ 6.9974132, 46.349861 ], + [ 6.9974133, 46.349852 ], + [ 6.9974264, 46.3498431 ], + [ 6.9974264999999995, 46.3498251 ], + [ 6.9974266, 46.3498161 ], + [ 6.9974267, 46.3497981 ], + [ 6.9974267999999995, 46.3497891 ], + [ 6.9974269, 46.3497801 ], + [ 6.997427, 46.3497621 ], + [ 6.9974401, 46.3497532 ], + [ 6.9974402, 46.3497352 ], + [ 6.9974403, 46.3497262 ], + [ 6.9974404, 46.3497172 ], + [ 6.9974535, 46.3496992 ], + [ 6.9974536, 46.3496902 ], + [ 6.9974537, 46.3496812 ], + [ 6.9974538, 46.3496632 ], + [ 6.9974669, 46.3496543 ], + [ 6.997467, 46.3496453 ], + [ 6.9974671, 46.3496273 ], + [ 6.9974802, 46.3496184 ], + [ 6.9974803, 46.3496004 ], + [ 6.9974804, 46.3495914 ], + [ 6.9974934, 46.3495824 ], + [ 6.9974935, 46.3495734 ], + [ 6.9975067, 46.3495555 ], + [ 6.9975067, 46.3495465 ], + [ 6.9975198, 46.3495376 ], + [ 6.9975199, 46.3495196 ], + [ 6.997533, 46.3495106 ], + [ 6.9975331, 46.349501599999996 ], + [ 6.9975461, 46.3494927 ], + [ 6.9975593, 46.3494747 ], + [ 6.9975594, 46.3494658 ], + [ 6.9975724, 46.3494568 ], + [ 6.9975855, 46.3494479 ], + [ 6.9975986, 46.3494299 ], + [ 6.9975987, 46.3494209 ], + [ 6.9976118, 46.349412 ], + [ 6.9976248, 46.349403 ], + [ 6.9976379, 46.3493941 ], + [ 6.9976509, 46.3493851 ], + [ 6.997664, 46.3493762 ], + [ 6.9976771, 46.3493673 ], + [ 6.9976902, 46.3493493 ], + [ 6.9977032999999995, 46.3493404 ], + [ 6.9977163000000004, 46.3493314 ], + [ 6.9977294, 46.3493225 ], + [ 6.9977425, 46.3493135 ], + [ 6.9977555, 46.349304599999996 ], + [ 6.9977686, 46.3492956 ], + [ 6.9977946, 46.3492868 ], + [ 6.9978077, 46.3492778 ], + [ 6.9978207999999995, 46.3492689 ], + [ 6.9978338, 46.3492599 ], + [ 6.9978468, 46.34926 ], + [ 6.9978599, 46.349251 ], + [ 6.9978859, 46.3492421 ], + [ 6.997899, 46.3492332 ], + [ 6.9979121, 46.3492242 ], + [ 6.9979251, 46.3492153 ], + [ 6.9979382, 46.3492064 ], + [ 6.9979487, 46.3491992 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00053", + "country" : "CHE", + "name" : [ + { + "text" : "La Riondaz", + "lang" : "de-CH" + }, + { + "text" : "La Riondaz", + "lang" : "fr-CH" + }, + { + "text" : "La Riondaz", + "lang" : "it-CH" + }, + { + "text" : "La Riondaz", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "startDateTime" : "2024-11-15T00:00:00+01:00", + "endDateTime" : "2025-04-15T00:00:00+02:00" + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Generaldirektion für Umwelt", + "lang" : "de-CH" + }, + { + "text" : "Direction générale de l'environnement", + "lang" : "fr-CH" + }, + { + "text" : "Direzione generale dell'Ambiente", + "lang" : "it-CH" + }, + { + "text" : "Environment Department", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.dge@vd.ch", + "phone" : "0041213164422", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4522313, 47.4524559 ], + [ 7.4508094, 47.4512149 ], + [ 7.4509475, 47.4511499 ], + [ 7.4511087, 47.4510684 ], + [ 7.4511358, 47.4510477 ], + [ 7.4511602, 47.4510255 ], + [ 7.4511815, 47.4510019 ], + [ 7.4511996, 47.450977 ], + [ 7.4512129, 47.450954 ], + [ 7.4512235, 47.4509304 ], + [ 7.4512313, 47.4509062 ], + [ 7.4512034, 47.4508974 ], + [ 7.4510813, 47.4508589 ], + [ 7.4509793, 47.4508141 ], + [ 7.4508478, 47.4507781 ], + [ 7.4507112, 47.4507341 ], + [ 7.4506493, 47.4507156 ], + [ 7.4506193, 47.4506752 ], + [ 7.450535, 47.4506579 ], + [ 7.4503620999999995, 47.4506145 ], + [ 7.4502133, 47.4505499 ], + [ 7.4500984, 47.4504574 ], + [ 7.4499788, 47.4503503 ], + [ 7.4499328, 47.4502889 ], + [ 7.4498523, 47.4504019 ], + [ 7.4497821, 47.4504593 ], + [ 7.4497248, 47.4505064 ], + [ 7.44969, 47.4505368 ], + [ 7.4496545, 47.4505662 ], + [ 7.4496176, 47.4505954 ], + [ 7.449558, 47.4506572 ], + [ 7.4495249999999995, 47.4506849 ], + [ 7.4494853, 47.4507105 ], + [ 7.4494375999999995, 47.4507315 ], + [ 7.4494053, 47.4507419 ], + [ 7.4492908, 47.45077 ], + [ 7.4492398, 47.4507845 ], + [ 7.4491903, 47.4508076 ], + [ 7.4491743, 47.4508206 ], + [ 7.4491676, 47.4508281 ], + [ 7.4491551, 47.4508435 ], + [ 7.4491448, 47.4508574 ], + [ 7.4491377, 47.450866 ], + [ 7.4491309, 47.45087 ], + [ 7.4491124, 47.4508697 ], + [ 7.4491024, 47.450868 ], + [ 7.4490786, 47.4508623 ], + [ 7.4490298, 47.4508479 ], + [ 7.4489795, 47.4508296 ], + [ 7.4489275, 47.4508166 ], + [ 7.4488759, 47.4508061 ], + [ 7.4488233, 47.4507976 ], + [ 7.4487686, 47.4507942 ], + [ 7.448712, 47.4507913 ], + [ 7.4486549, 47.4507826 ], + [ 7.448606, 47.4507679 ], + [ 7.4485405, 47.4507441 ], + [ 7.4484955, 47.4507247 ], + [ 7.448454, 47.4507022 ], + [ 7.4484127, 47.450676 ], + [ 7.448374, 47.4506496 ], + [ 7.4483343, 47.4506222 ], + [ 7.4482965, 47.4505946 ], + [ 7.4482585, 47.4505689 ], + [ 7.4482363, 47.4505543 ], + [ 7.4481852, 47.4505691 ], + [ 7.4481469, 47.4505995 ], + [ 7.4480916, 47.4506799 ], + [ 7.4480476, 47.4507241 ], + [ 7.447923, 47.4508144 ], + [ 7.4477994, 47.4509058 ], + [ 7.4476700000000005, 47.4509859 ], + [ 7.4475458, 47.4510508 ], + [ 7.4474588, 47.4511313 ], + [ 7.4473719, 47.4511996 ], + [ 7.44728, 47.4512653 ], + [ 7.4471902, 47.4513134 ], + [ 7.4470826, 47.4513328 ], + [ 7.4469414, 47.4513409 ], + [ 7.446928, 47.4515418 ], + [ 7.4469235, 47.4515921 ], + [ 7.4469715, 47.451611 ], + [ 7.4473158999999995, 47.4517333 ], + [ 7.447678, 47.4518387 ], + [ 7.4480084, 47.4519184 ], + [ 7.4483004, 47.4519839 ], + [ 7.4484166, 47.4520085 ], + [ 7.4484766, 47.4520156 ], + [ 7.4485337, 47.4520191 ], + [ 7.448591, 47.4520194 ], + [ 7.4486482, 47.4520166 ], + [ 7.4487389, 47.4520057 ], + [ 7.4488289, 47.451992 ], + [ 7.4489179, 47.4519757 ], + [ 7.449009, 47.4519559 ], + [ 7.4490988, 47.4519333 ], + [ 7.4491868, 47.451908 ], + [ 7.4492871, 47.4518655 ], + [ 7.4492928, 47.4519171 ], + [ 7.4492999, 47.4519418 ], + [ 7.4492526, 47.4520515 ], + [ 7.4491906, 47.4521681 ], + [ 7.4491671, 47.4522227 ], + [ 7.44915, 47.4522487 ], + [ 7.4491296, 47.4522736 ], + [ 7.4491059, 47.4522971 ], + [ 7.4490815, 47.4523222 ], + [ 7.449063, 47.4523348 ], + [ 7.4495362, 47.4527352 ], + [ 7.4494917, 47.4527686 ], + [ 7.4494546, 47.4527949 ], + [ 7.449415, 47.4528199 ], + [ 7.4493666, 47.4528367 ], + [ 7.4493183, 47.4528579 ], + [ 7.4492643, 47.4528722 ], + [ 7.4492102, 47.4528816 ], + [ 7.4491562, 47.4528892 ], + [ 7.4491034, 47.4528997 ], + [ 7.4490486, 47.4529088 ], + [ 7.448999, 47.4529243 ], + [ 7.4489513, 47.452945 ], + [ 7.4489133, 47.4529719 ], + [ 7.4488787, 47.4530023 ], + [ 7.4488492, 47.4530325 ], + [ 7.4488247, 47.4530646 ], + [ 7.4488129, 47.453081 ], + [ 7.4486368, 47.4531077 ], + [ 7.4486036, 47.4531217 ], + [ 7.4485554, 47.4531456 ], + [ 7.4485281, 47.4531603 ], + [ 7.4484919, 47.4531871 ], + [ 7.4484581, 47.4532177 ], + [ 7.448416, 47.453241 ], + [ 7.4483683, 47.453258 ], + [ 7.4483551, 47.4532611 ], + [ 7.4483053, 47.4532787 ], + [ 7.4482796, 47.4532891 ], + [ 7.4482341, 47.4533065 ], + [ 7.4481881, 47.4533275 ], + [ 7.4481463, 47.4533494 ], + [ 7.4481065, 47.4533722 ], + [ 7.4480732, 47.4533999 ], + [ 7.4480139, 47.4534605 ], + [ 7.4479790999999995, 47.4534915 ], + [ 7.4479679, 47.4535243 ], + [ 7.4479628, 47.4535516 ], + [ 7.4479647, 47.4535755 ], + [ 7.4479729, 47.4536088 ], + [ 7.4479965, 47.4536561 ], + [ 7.448011, 47.453674 ], + [ 7.4480698, 47.4537292 ], + [ 7.4480914, 47.4537466 ], + [ 7.4480919, 47.4537603 ], + [ 7.4480885, 47.4537668 ], + [ 7.4480403, 47.4537864 ], + [ 7.4480221, 47.453793 ], + [ 7.4479777, 47.4538124 ], + [ 7.4479354, 47.4538367 ], + [ 7.4479048, 47.4538694 ], + [ 7.4478985, 47.4539059 ], + [ 7.447902, 47.4539418 ], + [ 7.4479088, 47.4539766 ], + [ 7.447914, 47.4540104 ], + [ 7.4479182999999995, 47.454044 ], + [ 7.4479163, 47.4540801 ], + [ 7.4479084, 47.4541121 ], + [ 7.4479006, 47.4541271 ], + [ 7.4478916, 47.454141 ], + [ 7.4478809, 47.4541602 ], + [ 7.447852, 47.4542052 ], + [ 7.4479144, 47.4542502 ], + [ 7.4479742, 47.4542933 ], + [ 7.4480657, 47.4543715 ], + [ 7.4481643, 47.4544483 ], + [ 7.4482271, 47.4545243 ], + [ 7.4483132, 47.4546074 ], + [ 7.4484123, 47.4546777 ], + [ 7.4485037, 47.4547265 ], + [ 7.4485434999999995, 47.4547389 ], + [ 7.4486687, 47.4547161 ], + [ 7.4488043, 47.4546956 ], + [ 7.448957, 47.4546726 ], + [ 7.4490613, 47.4546839 ], + [ 7.4491304, 47.4546993 ], + [ 7.4492552, 47.4546827 ], + [ 7.4493667, 47.4546542 ], + [ 7.4494425, 47.4546573 ], + [ 7.4494977, 47.454677 ], + [ 7.4496486, 47.4547586 ], + [ 7.4499729, 47.4544689 ], + [ 7.4508124, 47.4537154 ], + [ 7.4513618, 47.4532338 ], + [ 7.4516774, 47.4529503 ], + [ 7.4519932, 47.4526675 ], + [ 7.4522313, 47.4524559 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns106", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Blüttenenchöpfli - Chaselboden", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Blüttenenchöpfli - Chaselboden", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Blüttenenchöpfli - Chaselboden", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Blüttenenchöpfli - Chaselboden", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.8504178, 47.3203818 ], + [ 8.8504086, 47.3202407 ], + [ 8.8503886, 47.3201001 ], + [ 8.8503578, 47.3199604 ], + [ 8.8503163, 47.3198219 ], + [ 8.8502641, 47.3196852 ], + [ 8.8502015, 47.3195505 ], + [ 8.850128699999999, 47.3194182 ], + [ 8.8500458, 47.3192887 ], + [ 8.849953, 47.3191623 ], + [ 8.8498506, 47.3190394 ], + [ 8.8497389, 47.3189203 ], + [ 8.8496181, 47.3188053 ], + [ 8.8494887, 47.3186948 ], + [ 8.849351, 47.318589 ], + [ 8.8492053, 47.3184883 ], + [ 8.8490521, 47.3183929 ], + [ 8.8488917, 47.3183031 ], + [ 8.8487247, 47.3182192 ], + [ 8.8485514, 47.3181413 ], + [ 8.8483723, 47.3180696 ], + [ 8.848188, 47.3180045 ], + [ 8.8479989, 47.3179459 ], + [ 8.8478056, 47.3178942 ], + [ 8.8476086, 47.3178495 ], + [ 8.847408399999999, 47.3178118 ], + [ 8.8472055, 47.3177813 ], + [ 8.8470006, 47.317758 ], + [ 8.8467942, 47.3177421 ], + [ 8.8465869, 47.3177336 ], + [ 8.8463791, 47.3177324 ], + [ 8.8461716, 47.3177386 ], + [ 8.8459648, 47.3177522 ], + [ 8.8457594, 47.3177732 ], + [ 8.8455558, 47.3178014 ], + [ 8.845354799999999, 47.3178369 ], + [ 8.8451567, 47.3178794 ], + [ 8.8449621, 47.3179289 ], + [ 8.8447716, 47.3179853 ], + [ 8.8445858, 47.3180484 ], + [ 8.844405, 47.318118 ], + [ 8.8442299, 47.318194 ], + [ 8.8440608, 47.3182761 ], + [ 8.8438983, 47.3183641 ], + [ 8.8437428, 47.3184577 ], + [ 8.8435947, 47.3185568 ], + [ 8.8434544, 47.318661 ], + [ 8.8433223, 47.3187701 ], + [ 8.8431988, 47.3188837 ], + [ 8.8430842, 47.3190015 ], + [ 8.8429789, 47.3191232 ], + [ 8.8428831, 47.3192486 ], + [ 8.842797, 47.3193772 ], + [ 8.8427209, 47.3195086 ], + [ 8.8426551, 47.3196426 ], + [ 8.8425997, 47.3197788 ], + [ 8.8425548, 47.3199167 ], + [ 8.8425206, 47.320056 ], + [ 8.8424972, 47.3201964 ], + [ 8.8424846, 47.3203374 ], + [ 8.8424829, 47.3204787 ], + [ 8.842492, 47.3206198 ], + [ 8.842512, 47.3207604 ], + [ 8.8425428, 47.3209001 ], + [ 8.8425843, 47.3210385 ], + [ 8.8426364, 47.3211753 ], + [ 8.842699, 47.32131 ], + [ 8.8427718, 47.3214423 ], + [ 8.8428548, 47.3215718 ], + [ 8.8429475, 47.3216982 ], + [ 8.8430499, 47.3218212 ], + [ 8.8431616, 47.3219403 ], + [ 8.8432823, 47.3220552 ], + [ 8.8434117, 47.3221658 ], + [ 8.8435495, 47.3222715 ], + [ 8.843695199999999, 47.3223722 ], + [ 8.8438484, 47.3224676 ], + [ 8.8440088, 47.3225574 ], + [ 8.8441758, 47.3226414 ], + [ 8.8443491, 47.3227193 ], + [ 8.8445282, 47.322791 ], + [ 8.8447125, 47.3228561 ], + [ 8.8449016, 47.3229147 ], + [ 8.8450949, 47.3229664 ], + [ 8.845292, 47.3230111 ], + [ 8.8454922, 47.3230488 ], + [ 8.8456951, 47.3230793 ], + [ 8.8459, 47.3231026 ], + [ 8.8461064, 47.3231185 ], + [ 8.8463138, 47.323127 ], + [ 8.8465215, 47.3231282 ], + [ 8.8467291, 47.323122 ], + [ 8.8469359, 47.3231084 ], + [ 8.8471413, 47.3230874 ], + [ 8.8473449, 47.3230592 ], + [ 8.847546, 47.3230238 ], + [ 8.8477441, 47.3229812 ], + [ 8.8479387, 47.3229317 ], + [ 8.8481292, 47.3228753 ], + [ 8.848315, 47.3228122 ], + [ 8.8484958, 47.3227425 ], + [ 8.848671, 47.3226666 ], + [ 8.84884, 47.3225845 ], + [ 8.8490026, 47.3224965 ], + [ 8.8491581, 47.3224028 ], + [ 8.849306200000001, 47.3223037 ], + [ 8.849446499999999, 47.322199499999996 ], + [ 8.8495785, 47.3220905 ], + [ 8.849702, 47.3219769 ], + [ 8.8498166, 47.321859 ], + [ 8.8499219, 47.3217373 ], + [ 8.8500178, 47.3216119 ], + [ 8.8501038, 47.3214833 ], + [ 8.8501799, 47.3213519 ], + [ 8.8502457, 47.3212179 ], + [ 8.8503011, 47.3210817 ], + [ 8.8503459, 47.3209438 ], + [ 8.8503801, 47.3208045 ], + [ 8.8504035, 47.3206641 ], + [ 8.8504161, 47.3205231 ], + [ 8.8504178, 47.3203818 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VZB0001", + "country" : "CHE", + "name" : [ + { + "text" : "Vollzugszentrum Bachtel", + "lang" : "de-CH" + }, + { + "text" : "Vollzugszentrum Bachtel", + "lang" : "fr-CH" + }, + { + "text" : "Vollzugszentrum Bachtel", + "lang" : "it-CH" + }, + { + "text" : "Vollzugszentrum Bachtel", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "de-CH" + }, + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "fr-CH" + }, + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "it-CH" + }, + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "de-CH" + }, + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "fr-CH" + }, + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "it-CH" + }, + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Reno Berner", + "lang" : "de-CH" + }, + { + "text" : "Reno Berner", + "lang" : "fr-CH" + }, + { + "text" : "Reno Berner", + "lang" : "it-CH" + }, + { + "text" : "Reno Berner", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.zh.ch/de/direktion-der-justiz-und-des-innern/justizvollzug-wiedereingliederung.html", + "email" : "sicherheit-juwe@ji.zh.ch", + "phone" : "0041432583400", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT12H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4867355, 46.2681218 ], + [ 7.4874352, 46.2684709 ], + [ 7.4882999, 46.2684392 ], + [ 7.4904629, 46.2656275 ], + [ 7.488687, 46.2641316 ], + [ 7.4863856, 46.2634077 ], + [ 7.4862192, 46.262297 ], + [ 7.4792559, 46.260876 ], + [ 7.4789407, 46.2616688 ], + [ 7.4786937, 46.2631812 ], + [ 7.4782956, 46.2637915 ], + [ 7.4814543, 46.264729 ], + [ 7.4807455, 46.2659167 ], + [ 7.4819911, 46.2659884 ], + [ 7.4859819, 46.2676745 ], + [ 7.4867355, 46.2681218 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "CRE0001", + "country" : "CHE", + "name" : [ + { + "text" : "Etablissement pénitentiaire de Crêtelongue", + "lang" : "de-CH" + }, + { + "text" : "Etablissement pénitentiaire de Crêtelongue", + "lang" : "fr-CH" + }, + { + "text" : "Etablissement pénitentiaire de Crêtelongue", + "lang" : "it-CH" + }, + { + "text" : "Etablissement pénitentiaire de Crêtelongue", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Dienststelle für Straf-und Massnahmenvollzug", + "lang" : "de-CH" + }, + { + "text" : "Service de l'application des peines et mesures", + "lang" : "fr-CH" + }, + { + "text" : "Service de l'application des peines et mesures", + "lang" : "it-CH" + }, + { + "text" : "Service de l'application des peines et mesures", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Dienststelle für Straf-und Massnahmenvollzug", + "lang" : "de-CH" + }, + { + "text" : "Service de l'application des peines et mesures", + "lang" : "fr-CH" + }, + { + "text" : "Service de l'application des peines et mesures", + "lang" : "it-CH" + }, + { + "text" : "Service de l'application des peines et mesures", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.polizeiwallis.ch/", + "email" : "SAPEM-DIRECTION@admin.vs.ch", + "phone" : "0041276065166", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.9353247, 47.4472523 ], + [ 7.9356767999999995, 47.4474233 ], + [ 7.9358493, 47.4473223 ], + [ 7.9359856, 47.4472605 ], + [ 7.9362341999999995, 47.4472956 ], + [ 7.9365412, 47.4473706 ], + [ 7.9369377, 47.4473755 ], + [ 7.9372575, 47.4473969 ], + [ 7.9374948, 47.447342 ], + [ 7.9376388, 47.4472805 ], + [ 7.9376035, 47.4472717 ], + [ 7.937568, 47.4472633 ], + [ 7.9375322, 47.4472554 ], + [ 7.9374963, 47.4472479 ], + [ 7.9374326, 47.4472356 ], + [ 7.9373687, 47.4472237 ], + [ 7.9373046, 47.4472124 ], + [ 7.9372403, 47.4472015 ], + [ 7.9371758, 47.4471911 ], + [ 7.9371112, 47.4471812 ], + [ 7.9370464, 47.4471718 ], + [ 7.9369815, 47.4471629 ], + [ 7.9359279, 47.4470114 ], + [ 7.9357781, 47.4470511 ], + [ 7.9355366, 47.4471278 ], + [ 7.9353247, 47.4472523 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns253", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Tal", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Tal", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Tal", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Tal", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 10.1261083, 46.7324731 ], + [ 10.1268074, 46.7320382 ], + [ 10.1292123, 46.7323075 ], + [ 10.1294229, 46.7323793 ], + [ 10.1298859, 46.7325404 ], + [ 10.1302544, 46.7327122 ], + [ 10.1304735, 46.7329207 ], + [ 10.1305208, 46.7331149 ], + [ 10.1306671, 46.7332103 ], + [ 10.130694, 46.7333067 ], + [ 10.130758, 46.733392 ], + [ 10.1308726, 46.7335393 ], + [ 10.13141, 46.7334064 ], + [ 10.1316607, 46.7333645 ], + [ 10.1319724, 46.7333473 ], + [ 10.1322668, 46.7333108 ], + [ 10.132397600000001, 46.7332755 ], + [ 10.1325133, 46.7332342 ], + [ 10.1327828, 46.7331588 ], + [ 10.1328052, 46.7330335 ], + [ 10.1328764, 46.7329523 ], + [ 10.132895, 46.7329147 ], + [ 10.1328449, 46.7328788 ], + [ 10.1328078, 46.7327088 ], + [ 10.1328494, 46.7324939 ], + [ 10.1329656, 46.7324125 ], + [ 10.1330555, 46.7323776 ], + [ 10.133122, 46.7323164 ], + [ 10.1331216, 46.7322762 ], + [ 10.1331267, 46.7321804 ], + [ 10.1330226, 46.7320802 ], + [ 10.1327666, 46.731917 ], + [ 10.132864, 46.731623 ], + [ 10.1329953, 46.7315173 ], + [ 10.133511, 46.7313918 ], + [ 10.1336643, 46.731299 ], + [ 10.1343397, 46.7313725 ], + [ 10.1345183, 46.7313603 ], + [ 10.1347515, 46.7313772 ], + [ 10.1349234, 46.7313624 ], + [ 10.1351098, 46.7312633 ], + [ 10.135231, 46.7311509 ], + [ 10.1351599, 46.7310711 ], + [ 10.1352179, 46.7309857 ], + [ 10.1352699, 46.7309466 ], + [ 10.1353184, 46.730902 ], + [ 10.1353371, 46.7308177 ], + [ 10.1359031, 46.7306508 ], + [ 10.1362495, 46.730495 ], + [ 10.1365553, 46.730376 ], + [ 10.1368233, 46.7303034 ], + [ 10.1375619, 46.7299083 ], + [ 10.13786, 46.7297828 ], + [ 10.1381496, 46.7296675 ], + [ 10.138234, 46.7295401 ], + [ 10.1382465, 46.7293481 ], + [ 10.1384254, 46.7291796 ], + [ 10.1387289, 46.729098 ], + [ 10.1390164, 46.7289905 ], + [ 10.1393862, 46.7286475 ], + [ 10.1396583, 46.7283963 ], + [ 10.1397522, 46.7282293 ], + [ 10.140034, 46.7277793 ], + [ 10.1409848, 46.7278323 ], + [ 10.1411324, 46.7278378 ], + [ 10.1413619, 46.7278152 ], + [ 10.1414421, 46.7277833 ], + [ 10.1415026, 46.7277645 ], + [ 10.1416753, 46.7278002 ], + [ 10.1417539, 46.7278342 ], + [ 10.1419583, 46.7279451 ], + [ 10.14213, 46.7280085 ], + [ 10.1421412, 46.7280846 ], + [ 10.1421727, 46.7281582 ], + [ 10.1422544, 46.7282383 ], + [ 10.1423627, 46.7282935 ], + [ 10.1425521, 46.7283183 ], + [ 10.1427186, 46.7283094 ], + [ 10.1429029, 46.7282662 ], + [ 10.1430317, 46.7282227 ], + [ 10.1430961, 46.7281868 ], + [ 10.14327, 46.7281135 ], + [ 10.14347, 46.7281043 ], + [ 10.1472314, 46.7268623 ], + [ 10.1473865, 46.726809 ], + [ 10.1473751, 46.726743 ], + [ 10.1473031, 46.7266909 ], + [ 10.1472021, 46.7266483 ], + [ 10.1470846, 46.7264228 ], + [ 10.1469924, 46.7262867 ], + [ 10.1469496, 46.7261125 ], + [ 10.1468842, 46.7260064 ], + [ 10.1469414, 46.7258118 ], + [ 10.1467828, 46.7256092 ], + [ 10.1466633, 46.7254143 ], + [ 10.1467806, 46.7251681 ], + [ 10.1469042, 46.7247771 ], + [ 10.147089, 46.7246605 ], + [ 10.1472619, 46.7245473 ], + [ 10.1473707, 46.724383 ], + [ 10.1470624, 46.7242957 ], + [ 10.1467274, 46.7242312 ], + [ 10.1466513, 46.7239808 ], + [ 10.1463712, 46.7236952 ], + [ 10.1462488, 46.7235251 ], + [ 10.1458431, 46.7231411 ], + [ 10.1455462, 46.722704 ], + [ 10.1452721, 46.7219599 ], + [ 10.1448019, 46.7216264 ], + [ 10.1449711, 46.7215698 ], + [ 10.1452647, 46.7213633 ], + [ 10.1458612, 46.7203351 ], + [ 10.1460977, 46.720012 ], + [ 10.1463302, 46.7194555 ], + [ 10.1467008, 46.7191055 ], + [ 10.1467677, 46.7187577 ], + [ 10.1465134, 46.7183895 ], + [ 10.1464017, 46.7182301 ], + [ 10.1450229, 46.7174562 ], + [ 10.1443555, 46.7171251 ], + [ 10.1442168, 46.7169799 ], + [ 10.14401, 46.7169441 ], + [ 10.1434498, 46.7165427 ], + [ 10.1431283, 46.7162136 ], + [ 10.1420482, 46.7156509 ], + [ 10.1416322, 46.715544 ], + [ 10.1405348, 46.7153095 ], + [ 10.1404042, 46.7151697 ], + [ 10.1392092, 46.7147421 ], + [ 10.1384359, 46.714863 ], + [ 10.136353100000001, 46.7151756 ], + [ 10.1360177, 46.7153533 ], + [ 10.1353108, 46.715522 ], + [ 10.1347166, 46.7157321 ], + [ 10.1337456, 46.7161724 ], + [ 10.1330194, 46.7167152 ], + [ 10.1322098, 46.7168703 ], + [ 10.1308248, 46.717259 ], + [ 10.1304918, 46.7171007 ], + [ 10.1290773, 46.7169423 ], + [ 10.1271063, 46.7177452 ], + [ 10.1261672, 46.7185492 ], + [ 10.1254308, 46.71911 ], + [ 10.1248216, 46.7194647 ], + [ 10.1240085, 46.7204152 ], + [ 10.1235458, 46.7206551 ], + [ 10.1230248, 46.7207755 ], + [ 10.1222275, 46.7212981 ], + [ 10.121789, 46.7213377 ], + [ 10.121483, 46.7216661 ], + [ 10.1210205, 46.7219403 ], + [ 10.1203641, 46.7222797 ], + [ 10.1197421, 46.7225848 ], + [ 10.1193228, 46.7228491 ], + [ 10.1182816, 46.7232161 ], + [ 10.1178905, 46.7233699 ], + [ 10.1175534, 46.7235645 ], + [ 10.1164566, 46.7240964 ], + [ 10.1160761, 46.7242642 ], + [ 10.1152569, 46.7246088 ], + [ 10.1150686, 46.7250976 ], + [ 10.1147603, 46.7253575 ], + [ 10.1144325, 46.7256328 ], + [ 10.1142379, 46.7258368 ], + [ 10.1141, 46.726031 ], + [ 10.1139195, 46.7262054 ], + [ 10.1139872, 46.7264802 ], + [ 10.1141023, 46.7267055 ], + [ 10.114177, 46.7269208 ], + [ 10.1142108, 46.7271667 ], + [ 10.1142077, 46.7272468 ], + [ 10.1141772, 46.7273214 ], + [ 10.1142729, 46.7275098 ], + [ 10.1143522, 46.727609 ], + [ 10.1144671, 46.7276561 ], + [ 10.1145802, 46.727778 ], + [ 10.1147508, 46.727927 ], + [ 10.1149216, 46.7280409 ], + [ 10.1151352, 46.7282125 ], + [ 10.1151927, 46.7284557 ], + [ 10.1152131, 46.7285529 ], + [ 10.1152126, 46.7287103 ], + [ 10.1152246, 46.7288122 ], + [ 10.1154018, 46.7289468 ], + [ 10.1156747, 46.7292797 ], + [ 10.1157336, 46.7295067 ], + [ 10.1157789, 46.7298111 ], + [ 10.1159099, 46.7300121 ], + [ 10.1160973, 46.7302053 ], + [ 10.1162038, 46.7303361 ], + [ 10.1163848, 46.7304986 ], + [ 10.1165973, 46.7306432 ], + [ 10.1167876, 46.7309232 ], + [ 10.1168029, 46.7310786 ], + [ 10.1169801, 46.7314382 ], + [ 10.1167415, 46.7320593 ], + [ 10.1173215, 46.7323013 ], + [ 10.1174553, 46.7325868 ], + [ 10.1173893, 46.7335415 ], + [ 10.1174897, 46.7339976 ], + [ 10.1177486, 46.7343976 ], + [ 10.1178865, 46.734491 ], + [ 10.1179785, 46.7346726 ], + [ 10.1185607, 46.7349073 ], + [ 10.1188288, 46.7351845 ], + [ 10.119139, 46.7351962 ], + [ 10.119435, 46.7352832 ], + [ 10.1195183, 46.7354353 ], + [ 10.1198684, 46.7356682 ], + [ 10.1196507, 46.736129 ], + [ 10.1194256, 46.736418 ], + [ 10.1195352, 46.736625 ], + [ 10.119345, 46.7372092 ], + [ 10.1195732, 46.7374608 ], + [ 10.1194778, 46.7376236 ], + [ 10.1192776, 46.7377531 ], + [ 10.1192547, 46.737805 ], + [ 10.1199075, 46.737955 ], + [ 10.1203484, 46.7383137 ], + [ 10.120689, 46.7384321 ], + [ 10.1209747, 46.7384352 ], + [ 10.1211321, 46.73831 ], + [ 10.121271, 46.7381582 ], + [ 10.1213216, 46.7379255 ], + [ 10.1212582, 46.7376863 ], + [ 10.1211167, 46.7372602 ], + [ 10.1211476, 46.7372082 ], + [ 10.1217638, 46.7371598 ], + [ 10.1219468, 46.7370705 ], + [ 10.1221348, 46.7370511 ], + [ 10.1222081, 46.737045 ], + [ 10.1223671, 46.7369512 ], + [ 10.1225603, 46.7368215 ], + [ 10.1227867, 46.7365204 ], + [ 10.122891, 46.736363 ], + [ 10.122939, 46.7361771 ], + [ 10.1229344, 46.7359695 ], + [ 10.1229968, 46.7354981 ], + [ 10.1230455, 46.7354087 ], + [ 10.1231086, 46.7352616 ], + [ 10.1231281, 46.7351449 ], + [ 10.1231035, 46.7350436 ], + [ 10.12302, 46.7348135 ], + [ 10.1232922, 46.7340026 ], + [ 10.1255218, 46.7328376 ], + [ 10.1261083, 46.7324731 ] + ] + ], + "layer" : { + "upper" : 300, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "NPA0001", + "country" : "CHE", + "name" : [ + { + "text" : "Schweizerischer Nationalpark", + "lang" : "de-CH" + }, + { + "text" : "Parc National Suisse", + "lang" : "fr-CH" + }, + { + "text" : "Parco Nazionale Svizzero", + "lang" : "it-CH" + }, + { + "text" : "Swiss National Park", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Schweizerischer Nationalpark", + "lang" : "de-CH" + }, + { + "text" : "Parc National Suisse", + "lang" : "fr-CH" + }, + { + "text" : "Parco Nazionale Svizzero", + "lang" : "it-CH" + }, + { + "text" : "Swiss National Park", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Bereich Naturschutz und Naturraummanagement", + "lang" : "de-CH" + }, + { + "text" : "Division Protection et gestion de la nature", + "lang" : "fr-CH" + }, + { + "text" : "Divisione conservazione e gestione della natura", + "lang" : "it-CH" + }, + { + "text" : "Conservation and Natural Resources Department", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Flurin Filli", + "lang" : "de-CH" + }, + { + "text" : "Flurin Filli", + "lang" : "fr-CH" + }, + { + "text" : "Flurin Filli", + "lang" : "it-CH" + }, + { + "text" : "Flurin Filli", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.nationalpark.ch/en/visit/hiking/protection-regulations/", + "email" : "info@nationalpark.ch", + "phone" : "0041818514111", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P01DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.238704, 47.4447551 ], + [ 8.2389825, 47.4444933 ], + [ 8.2391407, 47.4443447 ], + [ 8.2397943, 47.4437276 ], + [ 8.2402204, 47.4433172 ], + [ 8.2393389, 47.442888 ], + [ 8.2385309, 47.4425005 ], + [ 8.2380501, 47.4422691 ], + [ 8.2379547, 47.4423624 ], + [ 8.2377734, 47.4425579 ], + [ 8.2349477, 47.4421817 ], + [ 8.2320959, 47.4418289 ], + [ 8.2294419, 47.44149 ], + [ 8.2293018, 47.4416097 ], + [ 8.2284365, 47.4424414 ], + [ 8.2278635, 47.4430569 ], + [ 8.2273431, 47.4436352 ], + [ 8.2272219, 47.4437745 ], + [ 8.2269523, 47.4440183 ], + [ 8.2269648, 47.4440524 ], + [ 8.2269971, 47.44409 ], + [ 8.2270361, 47.4441221 ], + [ 8.2270975, 47.4441549 ], + [ 8.2271736, 47.4441886 ], + [ 8.227239, 47.4442169 ], + [ 8.2273178, 47.4442524 ], + [ 8.2273964, 47.4442833 ], + [ 8.2274484, 47.4442992 ], + [ 8.2275627, 47.4443173 ], + [ 8.2284467, 47.4444749 ], + [ 8.229699, 47.4446939 ], + [ 8.2305108, 47.4448125 ], + [ 8.2318312, 47.4449716 ], + [ 8.231971099999999, 47.4450183 ], + [ 8.2321044, 47.4450651 ], + [ 8.2321391, 47.445081 ], + [ 8.2321431, 47.4450828 ], + [ 8.2327465, 47.4453584 ], + [ 8.2327945, 47.4453805 ], + [ 8.2340609, 47.4442322 ], + [ 8.2352031, 47.4443647 ], + [ 8.2369907, 47.4445592 ], + [ 8.238704, 47.4447551 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZF002", + "country" : "CHE", + "name" : [ + { + "text" : "LSZF Birrfeld (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSZF Birrfeld (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSZF Birrfeld (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSZF Birrfeld (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Flugplatz Birrfeld", + "lang" : "de-CH" + }, + { + "text" : "Flugplatz Birrfeld", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatz Birrfeld", + "lang" : "it-CH" + }, + { + "text" : "Flugplatz Birrfeld", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Carlo Ferrari", + "lang" : "de-CH" + }, + { + "text" : "Carlo Ferrari", + "lang" : "fr-CH" + }, + { + "text" : "Carlo Ferrari", + "lang" : "it-CH" + }, + { + "text" : "Carlo Ferrari", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.birrfeld.ch/home/drohnen/", + "email" : "info@birrfeld.ch", + "phone" : "0041564644040", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.3275327, 47.3796396 ], + [ 8.3275745, 47.3796629 ], + [ 8.3277051, 47.3796793 ], + [ 8.3277709, 47.3796631 ], + [ 8.3278243, 47.3796274 ], + [ 8.3278482, 47.3795363 ], + [ 8.3278405, 47.3794302 ], + [ 8.3277859, 47.3793747 ], + [ 8.3277892, 47.3793458 ], + [ 8.327827, 47.3793223 ], + [ 8.3278908, 47.3792726 ], + [ 8.3278961, 47.3792029 ], + [ 8.3279531, 47.3790974 ], + [ 8.3280693, 47.3788739 ], + [ 8.3280652, 47.3787743 ], + [ 8.3280227, 47.3786801 ], + [ 8.3280059, 47.3786528 ], + [ 8.327973, 47.3786468 ], + [ 8.3279307, 47.3786613 ], + [ 8.3279154, 47.3786808 ], + [ 8.3278897, 47.378692 ], + [ 8.3278703, 47.378687 ], + [ 8.3278159, 47.3786933 ], + [ 8.3277843, 47.3787281 ], + [ 8.3277825, 47.3787755 ], + [ 8.3278004, 47.3788376 ], + [ 8.3278114, 47.3788897 ], + [ 8.3277962, 47.3789404 ], + [ 8.327744, 47.3790127 ], + [ 8.3277184, 47.3790774 ], + [ 8.3276596, 47.3791265 ], + [ 8.3276335, 47.3792032 ], + [ 8.327612, 47.3792912 ], + [ 8.3276052, 47.3793387 ], + [ 8.3275758, 47.3793633 ], + [ 8.3275519, 47.3794297 ], + [ 8.3275377, 47.3794828 ], + [ 8.3275258, 47.3795839 ], + [ 8.3275327, 47.3796396 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "KTAG504", + "country" : "CHE", + "name" : [ + { + "text" : "Alte Reuss", + "lang" : "de-CH" + }, + { + "text" : "Alte Reuss", + "lang" : "fr-CH" + }, + { + "text" : "Alte Reuss", + "lang" : "it-CH" + }, + { + "text" : "Alte Reuss", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "regulationExemption" : "NO", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "schedule" : [ + { + "day" : [ "ANY" ], + "startTime" : "00:00:00.00+01:00", + "endTime" : "00:00:00.00+01:00" + } + ] + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Aargau", + "lang" : "de-CH" + }, + { + "text" : "Canton d'Argovie", + "lang" : "fr-CH" + }, + { + "text" : "Canton Argovia", + "lang" : "it-CH" + }, + { + "text" : "Canton of Aargau", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Departement Bau, Verkehr und Umwelt (BVU)", + "lang" : "de-CH" + }, + { + "text" : "Département de la construction, des transports et de l'environnement (CTE)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento delle costruzioni, dei trasporti e dell'ambiente (CTA)", + "lang" : "it-CH" + }, + { + "text" : "Department of Civil Engineering,Transport and Environment (CTE)", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Sektion Gewässernutzung", + "lang" : "de-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "fr-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "it-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ag.ch/de/verwaltung/bvu/umwelt-natur-landschaft/hochwasserschutz-gewaesser/gewaessernutzung", + "email" : "alg@ag.ch", + "phone" : "0041 62 835 34 50", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.9312889, 47.4363984 ], + [ 7.9309415, 47.4367766 ], + [ 7.9307889, 47.4369743 ], + [ 7.9306602999999996, 47.4371808 ], + [ 7.9305329, 47.4374381 ], + [ 7.9305024, 47.4375785 ], + [ 7.9304895, 47.4378789 ], + [ 7.9304666, 47.4380606 ], + [ 7.9303941, 47.4382708 ], + [ 7.9302869, 47.4385489 ], + [ 7.9302209999999995, 47.4386943 ], + [ 7.9301502, 47.4388332 ], + [ 7.9314653, 47.4396634 ], + [ 7.9316144, 47.4395508 ], + [ 7.9317324, 47.4394118 ], + [ 7.9318071, 47.4392608 ], + [ 7.9318877, 47.4389294 ], + [ 7.9319991, 47.4385792 ], + [ 7.9321855, 47.4383511 ], + [ 7.9319747, 47.437971 ], + [ 7.9316252, 47.4373671 ], + [ 7.9315692, 47.4372428 ], + [ 7.9315508, 47.4371131 ], + [ 7.931597, 47.4366664 ], + [ 7.9315955, 47.4365443 ], + [ 7.931343, 47.4364471 ], + [ 7.9312889, 47.4363984 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns077", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Schleipfet", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Schleipfet", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Schleipfet", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Schleipfet", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4086607, 47.4081519 ], + [ 7.4087278, 47.4081451 ], + [ 7.4088218999999995, 47.4081355 ], + [ 7.408903, 47.4081272 ], + [ 7.408914, 47.4081261 ], + [ 7.4089895, 47.4081116 ], + [ 7.4090716, 47.4080959 ], + [ 7.4091064, 47.4080892 ], + [ 7.4092223, 47.408067 ], + [ 7.4092961, 47.4080529 ], + [ 7.4093474, 47.4080431 ], + [ 7.4093953, 47.4080339 ], + [ 7.4094863, 47.4080164 ], + [ 7.4097421, 47.4079674 ], + [ 7.4097965, 47.4079476 ], + [ 7.4098796, 47.4079172 ], + [ 7.4099614, 47.4078874 ], + [ 7.4100466, 47.4078563 ], + [ 7.4102006, 47.4078001 ], + [ 7.4103200000000005, 47.4077565 ], + [ 7.4103653, 47.4077456 ], + [ 7.4104265, 47.4077308 ], + [ 7.4104784, 47.4077182 ], + [ 7.4105616, 47.4076982 ], + [ 7.4106333, 47.4076808 ], + [ 7.4106995, 47.4076649 ], + [ 7.4107520000000005, 47.4077877 ], + [ 7.4113544000000005, 47.407711 ], + [ 7.4113809, 47.4077077 ], + [ 7.4118064, 47.4075873 ], + [ 7.4124148, 47.4074152 ], + [ 7.4124448, 47.4074067 ], + [ 7.4125303, 47.4073826 ], + [ 7.4126035, 47.4073542 ], + [ 7.4128065, 47.4072756 ], + [ 7.4130393, 47.4071855 ], + [ 7.413116, 47.4071322 ], + [ 7.4131843, 47.4070855 ], + [ 7.4132537, 47.4070396 ], + [ 7.4133825, 47.4069524 ], + [ 7.4134789, 47.4068872 ], + [ 7.4135613, 47.4068319 ], + [ 7.4136481, 47.4067736 ], + [ 7.4137376, 47.4067135 ], + [ 7.4138443, 47.4066418 ], + [ 7.4138499, 47.4066381 ], + [ 7.4139882, 47.406616 ], + [ 7.4142806, 47.4065694 ], + [ 7.4143364, 47.406537 ], + [ 7.4142054, 47.4064491 ], + [ 7.4141405, 47.4064623 ], + [ 7.4141101, 47.406478 ], + [ 7.4140425, 47.4065078 ], + [ 7.4139897, 47.4065216 ], + [ 7.4138935, 47.4065431 ], + [ 7.4137786, 47.4065736 ], + [ 7.4137445, 47.4065866 ], + [ 7.4136342, 47.406617 ], + [ 7.4135328, 47.406653 ], + [ 7.4134282, 47.4066828 ], + [ 7.4133445, 47.4066934 ], + [ 7.4132754, 47.4067059 ], + [ 7.4130887, 47.4067047 ], + [ 7.4129918, 47.4067059 ], + [ 7.4128372, 47.4067041 ], + [ 7.4127463, 47.4065482 ], + [ 7.4126294999999995, 47.406388 ], + [ 7.4125383, 47.4062466 ], + [ 7.4124586, 47.4061323 ], + [ 7.4124519, 47.4061227 ], + [ 7.4124474, 47.4061107 ], + [ 7.4124024, 47.4059899 ], + [ 7.4128298, 47.4058991 ], + [ 7.4133148, 47.4058097 ], + [ 7.4137834, 47.4057233 ], + [ 7.414144, 47.4056708 ], + [ 7.414303, 47.4056611 ], + [ 7.4143978, 47.4056554 ], + [ 7.4145632, 47.4056356 ], + [ 7.4145666, 47.4054428 ], + [ 7.4146082, 47.4052858 ], + [ 7.4146281, 47.4052005 ], + [ 7.4146998, 47.4050224 ], + [ 7.4147779, 47.4048998 ], + [ 7.4148594, 47.4048023 ], + [ 7.4148601, 47.4047603 ], + [ 7.4148602, 47.4047533 ], + [ 7.4148546, 47.4047273 ], + [ 7.4147443, 47.404762 ], + [ 7.4147127, 47.4047678 ], + [ 7.4145329, 47.4047987 ], + [ 7.41441, 47.4048238 ], + [ 7.4143741, 47.4048301 ], + [ 7.4142271, 47.4048559 ], + [ 7.4140836, 47.4048627 ], + [ 7.414066, 47.4048635 ], + [ 7.4140291, 47.4048979 ], + [ 7.4139699, 47.4049123 ], + [ 7.41385, 47.4049417 ], + [ 7.4136878, 47.4049792 ], + [ 7.4136477, 47.4049885 ], + [ 7.4134828, 47.4050321 ], + [ 7.4132919, 47.4050827 ], + [ 7.4132147, 47.4051031 ], + [ 7.4128876, 47.4051833 ], + [ 7.4127309, 47.4052217 ], + [ 7.4123473, 47.4052995 ], + [ 7.4122937, 47.4053037 ], + [ 7.4120908, 47.4053192 ], + [ 7.4120063, 47.4053257 ], + [ 7.4120188, 47.4053792 ], + [ 7.4118417, 47.4054136 ], + [ 7.4118182, 47.4054167 ], + [ 7.4116712, 47.4054362 ], + [ 7.4115186, 47.4054563 ], + [ 7.411066, 47.4055127 ], + [ 7.4109915, 47.405522 ], + [ 7.4108133, 47.4055442 ], + [ 7.4105959, 47.4055747 ], + [ 7.4101783, 47.4056407 ], + [ 7.4101741, 47.4056824 ], + [ 7.4100908, 47.4057598 ], + [ 7.4098046, 47.4057918 ], + [ 7.4096583, 47.4058081 ], + [ 7.4092182, 47.4058572 ], + [ 7.408873, 47.4059708 ], + [ 7.408677, 47.4061621 ], + [ 7.4082497, 47.4062564 ], + [ 7.4079094, 47.4063311 ], + [ 7.4072615, 47.4065208 ], + [ 7.4071105, 47.406524 ], + [ 7.4066526, 47.4065335 ], + [ 7.4062538, 47.4065659 ], + [ 7.4060018, 47.4065986 ], + [ 7.4056764, 47.406641 ], + [ 7.4053651, 47.4065711 ], + [ 7.4048595, 47.4066449 ], + [ 7.4041418, 47.4067547 ], + [ 7.4040399, 47.4067702 ], + [ 7.4037338, 47.4067645 ], + [ 7.4037128, 47.4067581 ], + [ 7.4036536, 47.4067401 ], + [ 7.4033139, 47.406637 ], + [ 7.4029512, 47.4066444 ], + [ 7.4023254, 47.4066744 ], + [ 7.4016709, 47.4066826 ], + [ 7.4012545, 47.406688 ], + [ 7.4002041, 47.4068592 ], + [ 7.3999995, 47.4068923 ], + [ 7.3998017, 47.4069252 ], + [ 7.3996151, 47.4069566 ], + [ 7.3992927, 47.4070109 ], + [ 7.3991309, 47.4070381 ], + [ 7.3987517, 47.4071013 ], + [ 7.3985269, 47.4071385 ], + [ 7.398508, 47.4071417 ], + [ 7.3984165, 47.4071688 ], + [ 7.3981726, 47.4072409 ], + [ 7.3980524, 47.4072765 ], + [ 7.3978943, 47.4073233 ], + [ 7.3977018, 47.4073802 ], + [ 7.3975328, 47.4074295 ], + [ 7.3974527, 47.4074529 ], + [ 7.3973636, 47.407479 ], + [ 7.3973022, 47.4074969 ], + [ 7.3971896, 47.4075231 ], + [ 7.3971186, 47.4075627 ], + [ 7.3967788, 47.4076504 ], + [ 7.3967213, 47.4076735 ], + [ 7.3966041, 47.407741 ], + [ 7.3965281, 47.4077884 ], + [ 7.3964332, 47.4078633 ], + [ 7.3963253, 47.4079572 ], + [ 7.3962050999999995, 47.4080386 ], + [ 7.3961004, 47.4081269 ], + [ 7.3960122, 47.4082028 ], + [ 7.3958986, 47.4082835 ], + [ 7.3958882, 47.4083223 ], + [ 7.3958613, 47.4083483 ], + [ 7.3958107, 47.408397 ], + [ 7.3955998, 47.4086526 ], + [ 7.3956142, 47.408795 ], + [ 7.3956378, 47.4088678 ], + [ 7.3956551, 47.408887 ], + [ 7.3956993, 47.4089231 ], + [ 7.39573, 47.4089395 ], + [ 7.395708, 47.4089493 ], + [ 7.3955201, 47.4090763 ], + [ 7.3956072, 47.40914 ], + [ 7.3957087, 47.409205299999996 ], + [ 7.3958325, 47.4091249 ], + [ 7.3959147, 47.4089246 ], + [ 7.396187, 47.4088268 ], + [ 7.3963665, 47.4086911 ], + [ 7.3965197, 47.4086566 ], + [ 7.3968092, 47.4085914 ], + [ 7.3969805, 47.4085089 ], + [ 7.3971964, 47.4083987 ], + [ 7.3974989, 47.4082867 ], + [ 7.3975281, 47.4082758 ], + [ 7.3977589, 47.4081648 ], + [ 7.3979334, 47.4082084 ], + [ 7.3980195, 47.4082299 ], + [ 7.3983365, 47.4082498 ], + [ 7.3986501, 47.4082257 ], + [ 7.3988432, 47.4082289 ], + [ 7.399165, 47.4082117 ], + [ 7.3995238, 47.4082024 ], + [ 7.3998661, 47.4081973 ], + [ 7.4001317, 47.4081585 ], + [ 7.4003556, 47.4081384 ], + [ 7.4006232, 47.4081227 ], + [ 7.4007392, 47.4081479 ], + [ 7.4008654, 47.4081489 ], + [ 7.4010657, 47.4081276 ], + [ 7.4012832, 47.4080991 ], + [ 7.4014868, 47.408067 ], + [ 7.4015259, 47.4081008 ], + [ 7.4015953, 47.4081805 ], + [ 7.4016269, 47.4082511 ], + [ 7.4017345, 47.4083573 ], + [ 7.4022681, 47.4082843 ], + [ 7.4029517, 47.4081262 ], + [ 7.403542, 47.4080549 ], + [ 7.4038006, 47.4082081 ], + [ 7.4040701, 47.4083678 ], + [ 7.4041045, 47.4083882 ], + [ 7.4041638, 47.4084233 ], + [ 7.4042055, 47.4084236 ], + [ 7.404252, 47.408424 ], + [ 7.4043244, 47.4084246 ], + [ 7.4045908, 47.4084267 ], + [ 7.4047677, 47.4084281 ], + [ 7.404986, 47.4084298 ], + [ 7.4050972, 47.4084307 ], + [ 7.4051704, 47.4083925 ], + [ 7.4052443, 47.4083539 ], + [ 7.405341, 47.4083035 ], + [ 7.4057562, 47.4080866 ], + [ 7.4066825, 47.4081127 ], + [ 7.406731, 47.408265 ], + [ 7.4070469, 47.408251 ], + [ 7.4072095000000004, 47.4082446 ], + [ 7.4072035, 47.4081677 ], + [ 7.407053, 47.4079744 ], + [ 7.4070086, 47.4079399 ], + [ 7.4069128, 47.4078653 ], + [ 7.4070449, 47.4078591 ], + [ 7.407304, 47.4078436 ], + [ 7.4076156, 47.4078039 ], + [ 7.4079182, 47.4077565 ], + [ 7.4080915, 47.4077176 ], + [ 7.4083995, 47.4076776 ], + [ 7.4086575, 47.4079504 ], + [ 7.4086925, 47.4080561 ], + [ 7.4086191, 47.4080943 ], + [ 7.4086607, 47.4081519 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns008", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Erhollen - Chlummen", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Erhollen - Chlummen", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Erhollen - Chlummen", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Erhollen - Chlummen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.1991022, 46.774681 ], + [ 9.1990922, 46.7745398 ], + [ 9.1990715, 46.7743993 ], + [ 9.1990401, 46.7742597 ], + [ 9.1989981, 46.7741213 ], + [ 9.1989456, 46.7739847 ], + [ 9.1988828, 46.7738502 ], + [ 9.1988098, 46.773718099999996 ], + [ 9.1987269, 46.7735888 ], + [ 9.1986342, 46.7734627 ], + [ 9.198532, 46.7733401 ], + [ 9.1984207, 46.7732213 ], + [ 9.1983004, 46.7731067 ], + [ 9.1981716, 46.7729966 ], + [ 9.1980346, 46.7728912 ], + [ 9.1978897, 46.772791 ], + [ 9.1977374, 46.772696 ], + [ 9.1975781, 46.7726067 ], + [ 9.1974122, 46.7725232 ], + [ 9.1972402, 46.7724458 ], + [ 9.1970625, 46.7723747 ], + [ 9.1968796, 46.7723101 ], + [ 9.1966921, 46.7722522 ], + [ 9.1965004, 46.772201 ], + [ 9.1963051, 46.7721569 ], + [ 9.1961066, 46.7721198 ], + [ 9.1959057, 46.7720899 ], + [ 9.1957027, 46.7720673 ], + [ 9.1954983, 46.772052 ], + [ 9.1952929, 46.772044 ], + [ 9.1950873, 46.7720435 ], + [ 9.1948819, 46.7720504 ], + [ 9.1946773, 46.7720646 ], + [ 9.1944741, 46.7720862 ], + [ 9.1942728, 46.772115 ], + [ 9.194074, 46.7721511 ], + [ 9.1938782, 46.7721942 ], + [ 9.1936859, 46.7722443 ], + [ 9.1934978, 46.7723013 ], + [ 9.1933142, 46.772365 ], + [ 9.1931357, 46.7724351 ], + [ 9.1929628, 46.7725116 ], + [ 9.192796, 46.7725942 ], + [ 9.1926357, 46.7726827 ], + [ 9.1924824, 46.7727769 ], + [ 9.1923364, 46.7728764 ], + [ 9.1921982, 46.772981 ], + [ 9.1920682, 46.7730905 ], + [ 9.1919467, 46.7732045 ], + [ 9.191834, 46.7733227 ], + [ 9.1917305, 46.7734447 ], + [ 9.1916365, 46.7735704 ], + [ 9.1915521, 46.7736992 ], + [ 9.1914777, 46.7738309 ], + [ 9.1914134, 46.7739651 ], + [ 9.1913594, 46.7741015 ], + [ 9.1913159, 46.7742395 ], + [ 9.1912829, 46.774379 ], + [ 9.1912606, 46.7745194 ], + [ 9.1912491, 46.7746605 ], + [ 9.1912483, 46.7748018 ], + [ 9.1912583, 46.7749429 ], + [ 9.191279, 46.7750835 ], + [ 9.1913104, 46.7752231 ], + [ 9.1913524, 46.7753614 ], + [ 9.1914048, 46.775498 ], + [ 9.1914676, 46.7756326 ], + [ 9.1915406, 46.7757646 ], + [ 9.1916235, 46.7758939 ], + [ 9.1917161, 46.7760201 ], + [ 9.1918183, 46.7761427 ], + [ 9.1919296, 46.7762615 ], + [ 9.1920499, 46.7763761 ], + [ 9.1921787, 46.7764862 ], + [ 9.1923157, 46.7765916 ], + [ 9.1924606, 46.7766919 ], + [ 9.1926129, 46.776786799999996 ], + [ 9.1927722, 46.7768761 ], + [ 9.1929381, 46.7769596 ], + [ 9.1931101, 46.777037 ], + [ 9.1932878, 46.7771081 ], + [ 9.1934707, 46.7771728 ], + [ 9.1936583, 46.7772307 ], + [ 9.19385, 46.7772818 ], + [ 9.1940453, 46.777326 ], + [ 9.1942438, 46.7773631 ], + [ 9.1944448, 46.777393000000004 ], + [ 9.1946478, 46.7774156 ], + [ 9.1948522, 46.7774309 ], + [ 9.1950575, 46.7774389 ], + [ 9.1952632, 46.7774394 ], + [ 9.1954686, 46.7774325 ], + [ 9.1956732, 46.7774183 ], + [ 9.1958764, 46.7773967 ], + [ 9.1960778, 46.7773679 ], + [ 9.1962766, 46.7773318 ], + [ 9.1964724, 46.7772887 ], + [ 9.1966647, 46.7772385 ], + [ 9.1968529, 46.7771816 ], + [ 9.1970365, 46.7771179 ], + [ 9.197215, 46.7770477 ], + [ 9.1973879, 46.7769712 ], + [ 9.1975547, 46.7768886 ], + [ 9.197715, 46.7768001 ], + [ 9.1978683, 46.7767059 ], + [ 9.1980143, 46.7766064 ], + [ 9.1981525, 46.7765018 ], + [ 9.1982825, 46.7763923 ], + [ 9.198404, 46.7762783 ], + [ 9.1985167, 46.7761601 ], + [ 9.1986201, 46.776038 ], + [ 9.1987142, 46.7759124 ], + [ 9.1987985, 46.7757835 ], + [ 9.198873, 46.7756518 ], + [ 9.1989372, 46.7755176 ], + [ 9.1989912, 46.7753813 ], + [ 9.1990347, 46.7752432 ], + [ 9.1990676, 46.7751038 ], + [ 9.1990899, 46.7749633 ], + [ 9.1991014, 46.7748222 ], + [ 9.1991022, 46.774681 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0054", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Ilanz", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Ilanz", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Ilanz", + "lang" : "it-CH" + }, + { + "text" : "Substation Ilanz", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8411217, 47.3948952 ], + [ 7.8412873, 47.394867 ], + [ 7.8414421999999995, 47.3950129 ], + [ 7.8417837, 47.3947531 ], + [ 7.8419691, 47.394577 ], + [ 7.842898, 47.393772 ], + [ 7.842893, 47.3935144 ], + [ 7.8433503, 47.3927668 ], + [ 7.843674, 47.3933027 ], + [ 7.8436563, 47.3935893 ], + [ 7.8436549, 47.3936049 ], + [ 7.8436526, 47.3936203 ], + [ 7.8436495, 47.3936358 ], + [ 7.8436454, 47.3936511 ], + [ 7.8436406, 47.3936663 ], + [ 7.8436348, 47.3936814 ], + [ 7.8436281999999995, 47.3936963 ], + [ 7.8436208, 47.393711 ], + [ 7.8436125, 47.3937255 ], + [ 7.8436035, 47.3937398 ], + [ 7.8435936, 47.3937538 ], + [ 7.8435828999999995, 47.3937676 ], + [ 7.8435714999999995, 47.3937811 ], + [ 7.8435593, 47.3937943 ], + [ 7.8435464, 47.3938072 ], + [ 7.8435328, 47.3938197 ], + [ 7.8431651, 47.3941455 ], + [ 7.842906, 47.3941892 ], + [ 7.8429755, 47.3942553 ], + [ 7.8429258, 47.3943007 ], + [ 7.8427831999999995, 47.3944241 ], + [ 7.8426681, 47.3945151 ], + [ 7.8425659, 47.3945861 ], + [ 7.8424851, 47.394636 ], + [ 7.842439, 47.3946624 ], + [ 7.8424534, 47.3946825 ], + [ 7.8427143, 47.3949807 ], + [ 7.8427029, 47.3949815 ], + [ 7.8425174, 47.3949993 ], + [ 7.842568, 47.3951351 ], + [ 7.8439721, 47.3952034 ], + [ 7.8440338, 47.3953439 ], + [ 7.8440737, 47.3953167 ], + [ 7.8441156, 47.3952881 ], + [ 7.8442728, 47.3951792 ], + [ 7.8445227, 47.395039 ], + [ 7.8446717, 47.3949448 ], + [ 7.8448012, 47.3948154 ], + [ 7.8448636, 47.3947163 ], + [ 7.8449101, 47.394552 ], + [ 7.8449142, 47.3944101 ], + [ 7.8448965, 47.3941929 ], + [ 7.8449165, 47.3940813 ], + [ 7.8449273, 47.3940622 ], + [ 7.8449373, 47.3940429 ], + [ 7.8449465, 47.3940234 ], + [ 7.8449549, 47.3940037 ], + [ 7.8449625, 47.3939839 ], + [ 7.8449693, 47.3939639 ], + [ 7.8449753, 47.3939439 ], + [ 7.8449805, 47.3939237 ], + [ 7.8449849, 47.3939034 ], + [ 7.8449892, 47.3938836 ], + [ 7.8449942, 47.3938638 ], + [ 7.8449998, 47.393844 ], + [ 7.8450062, 47.3938244 ], + [ 7.8450133, 47.3938049 ], + [ 7.845021, 47.3937855 ], + [ 7.8450294, 47.3937663 ], + [ 7.8450385, 47.3937472 ], + [ 7.8450531, 47.3937184 ], + [ 7.8450686, 47.3936899 ], + [ 7.8450848, 47.3936615 ], + [ 7.8451017, 47.3936334 ], + [ 7.8451194, 47.3936055 ], + [ 7.8451379, 47.3935778 ], + [ 7.8451571, 47.3935503 ], + [ 7.8451783, 47.3935201 ], + [ 7.8451986, 47.3934896 ], + [ 7.845218, 47.3934589 ], + [ 7.8452367, 47.3934279 ], + [ 7.8452544, 47.3933967 ], + [ 7.8452714, 47.3933653 ], + [ 7.8452874, 47.3933337 ], + [ 7.8453026, 47.3933019 ], + [ 7.8453169, 47.3932699 ], + [ 7.8451053, 47.3931961 ], + [ 7.8447066, 47.3933211 ], + [ 7.8447531, 47.3931612 ], + [ 7.8447963, 47.3930079 ], + [ 7.8448272, 47.3929157 ], + [ 7.8448901, 47.3927056 ], + [ 7.8446644, 47.3925703 ], + [ 7.8442652, 47.3925144 ], + [ 7.8438406, 47.3925114 ], + [ 7.843592, 47.3925504 ], + [ 7.8432911, 47.3925932 ], + [ 7.8430839, 47.3926237 ], + [ 7.8425674, 47.3927005 ], + [ 7.8424247, 47.3928627 ], + [ 7.8423893, 47.3929031 ], + [ 7.8420283, 47.3929001 ], + [ 7.8417411999999995, 47.392893 ], + [ 7.8413798, 47.3933474 ], + [ 7.8410134, 47.3937073 ], + [ 7.8405705, 47.3936308 ], + [ 7.8405839, 47.3933417 ], + [ 7.840301, 47.3932184 ], + [ 7.8400119, 47.3932996 ], + [ 7.8397302, 47.3933723 ], + [ 7.839359, 47.3934697 ], + [ 7.8394848, 47.3936184 ], + [ 7.8393057, 47.3937071 ], + [ 7.8389779, 47.3938121 ], + [ 7.8388092, 47.3939113 ], + [ 7.8386692, 47.3940494 ], + [ 7.8385842, 47.3942725 ], + [ 7.8389755999999995, 47.3942688 ], + [ 7.8391611, 47.3942703 ], + [ 7.8392288, 47.3942659 ], + [ 7.839208, 47.394542 ], + [ 7.8396207, 47.3948893 ], + [ 7.8392733, 47.3951877 ], + [ 7.8392912, 47.3955394 ], + [ 7.8396087, 47.3959371 ], + [ 7.8399280000000005, 47.395555 ], + [ 7.8402874, 47.3953379 ], + [ 7.8409355, 47.3949332 ], + [ 7.8411217, 47.3948952 ] + ], + [ + [ 7.8438797000000005, 47.3926527 ], + [ 7.844093, 47.3927099 ], + [ 7.8439791, 47.3928724 ], + [ 7.8437561, 47.3928008 ], + [ 7.8438797000000005, 47.3926527 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns322", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Breiten", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Breiten", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Breiten", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Breiten", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8721856, 47.4425558 ], + [ 7.8726286, 47.4429066 ], + [ 7.8727499, 47.443057 ], + [ 7.8733397, 47.4437404 ], + [ 7.8739159, 47.4444298 ], + [ 7.8739184, 47.4444345 ], + [ 7.8742943, 47.4451259 ], + [ 7.8745476, 47.4456019 ], + [ 7.8745481, 47.4456027 ], + [ 7.8746206, 47.4454232 ], + [ 7.8747648, 47.4449637 ], + [ 7.8748153, 47.4446695 ], + [ 7.8748473, 47.4444802 ], + [ 7.8748265, 47.4444244 ], + [ 7.8748064, 47.4443702 ], + [ 7.8747877, 47.4443201 ], + [ 7.8747691, 47.44427 ], + [ 7.874745, 47.4442316 ], + [ 7.8747204, 47.4441924 ], + [ 7.8746221, 47.4440355 ], + [ 7.8745595999999995, 47.4439358 ], + [ 7.8745111, 47.4438587 ], + [ 7.874509, 47.4438553 ], + [ 7.8744088, 47.4436928 ], + [ 7.8743787, 47.443644 ], + [ 7.8741371000000004, 47.4433201 ], + [ 7.8740827, 47.443125 ], + [ 7.8739979, 47.4429587 ], + [ 7.8739443, 47.4428728 ], + [ 7.8737631, 47.4426871 ], + [ 7.8736568, 47.4426086 ], + [ 7.8735289, 47.44248 ], + [ 7.8734331, 47.4423943 ], + [ 7.8733439, 47.4422159 ], + [ 7.8733315, 47.442218 ], + [ 7.8732093, 47.4422338 ], + [ 7.8728537, 47.4423492 ], + [ 7.8728096999999995, 47.4423635 ], + [ 7.8724836, 47.442441 ], + [ 7.8722658, 47.4425232 ], + [ 7.8721856, 47.4425558 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr043", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Steiholde", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Steiholde", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Steiholde", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Steiholde", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 10.1474454, 46.680055 ], + [ 10.1474329, 46.679914 ], + [ 10.1474097, 46.6797736 ], + [ 10.1473759, 46.679634300000004 ], + [ 10.1473316, 46.6794963 ], + [ 10.1472768, 46.6793602 ], + [ 10.1472117, 46.6792262 ], + [ 10.1471366, 46.6790947 ], + [ 10.1470515, 46.6789661 ], + [ 10.1469568, 46.6788408 ], + [ 10.1468527, 46.678719 ], + [ 10.1467394, 46.6786012 ], + [ 10.1466174, 46.6784875 ], + [ 10.1464869, 46.6783785 ], + [ 10.1463483, 46.6782743 ], + [ 10.1462019, 46.6781752 ], + [ 10.1460482, 46.6780816 ], + [ 10.1458876, 46.6779936 ], + [ 10.1457206, 46.6779115 ], + [ 10.1455475, 46.6778355 ], + [ 10.1453688, 46.6777659 ], + [ 10.1451852, 46.6777028 ], + [ 10.144997, 46.6776464 ], + [ 10.1448047, 46.6775969 ], + [ 10.144608999999999, 46.6775543 ], + [ 10.1444103, 46.6775189 ], + [ 10.1442091, 46.6774907 ], + [ 10.1440061, 46.6774697 ], + [ 10.1438018, 46.6774561 ], + [ 10.1435967, 46.6774499 ], + [ 10.1433915, 46.6774511 ], + [ 10.1431866, 46.6774597 ], + [ 10.1429826, 46.6774756 ], + [ 10.1427801, 46.6774988 ], + [ 10.1425797, 46.6775294 ], + [ 10.1423819, 46.6775671 ], + [ 10.1421872, 46.6776118 ], + [ 10.1419962, 46.6776636 ], + [ 10.1418093, 46.6777221 ], + [ 10.1416272, 46.6777873 ], + [ 10.1414503, 46.6778589 ], + [ 10.1412791, 46.6779369 ], + [ 10.141114, 46.6780209 ], + [ 10.1409555, 46.6781107 ], + [ 10.1408041, 46.6782061 ], + [ 10.1406602, 46.6783068 ], + [ 10.1405241, 46.6784126 ], + [ 10.1403962, 46.6785231 ], + [ 10.1402769, 46.6786381 ], + [ 10.1401666, 46.6787572 ], + [ 10.1400654, 46.6788801 ], + [ 10.1399737, 46.6790066 ], + [ 10.1398918, 46.6791361 ], + [ 10.1398198, 46.6792684 ], + [ 10.139758, 46.6794031 ], + [ 10.1397065, 46.6795399 ], + [ 10.1396655, 46.6796783 ], + [ 10.139635, 46.6798181 ], + [ 10.1396152, 46.6799587 ], + [ 10.1396062, 46.6800998 ], + [ 10.1396079, 46.6802411 ], + [ 10.1396203, 46.6803821 ], + [ 10.1396435, 46.6805225 ], + [ 10.1396773, 46.6806619 ], + [ 10.1397216, 46.6807998 ], + [ 10.1397764, 46.680936 ], + [ 10.1398414, 46.68107 ], + [ 10.1399166, 46.6812015 ], + [ 10.1400016, 46.6813301 ], + [ 10.1400963, 46.6814554 ], + [ 10.1402004, 46.6815772 ], + [ 10.1403136, 46.6816951 ], + [ 10.1404357, 46.6818087 ], + [ 10.1405662, 46.6819177 ], + [ 10.1407048, 46.6820219 ], + [ 10.1408512, 46.682121 ], + [ 10.1410049, 46.6822147 ], + [ 10.1411655, 46.6823027 ], + [ 10.1413325, 46.6823848 ], + [ 10.1415056, 46.6824607 ], + [ 10.1416843, 46.6825304 ], + [ 10.1418679, 46.6825935 ], + [ 10.1420562, 46.6826499 ], + [ 10.1422484, 46.6826994 ], + [ 10.1424442, 46.6827419 ], + [ 10.1426429, 46.6827774 ], + [ 10.1428441, 46.6828056 ], + [ 10.1430471, 46.6828266 ], + [ 10.1432514, 46.6828402 ], + [ 10.1434565, 46.6828464 ], + [ 10.1436618, 46.6828452 ], + [ 10.1438667, 46.6828366 ], + [ 10.1440707, 46.6828207 ], + [ 10.1442732, 46.6827974 ], + [ 10.1444737, 46.6827669 ], + [ 10.1446715, 46.6827292 ], + [ 10.1448662, 46.6826844 ], + [ 10.1450572, 46.6826327 ], + [ 10.1452441, 46.6825742 ], + [ 10.1454262, 46.682509 ], + [ 10.1456032, 46.6824373 ], + [ 10.1457744, 46.6823594 ], + [ 10.1459395, 46.6822754 ], + [ 10.146097900000001, 46.6821856 ], + [ 10.1462493, 46.6820902 ], + [ 10.1463933, 46.6819894 ], + [ 10.1465294, 46.6818837 ], + [ 10.1466572, 46.6817731 ], + [ 10.1467765, 46.6816581 ], + [ 10.1468869, 46.681539 ], + [ 10.146988, 46.6814161 ], + [ 10.1470797, 46.6812896 ], + [ 10.1471616, 46.6811601 ], + [ 10.1472336, 46.6810278 ], + [ 10.1472954, 46.680893 ], + [ 10.1473469, 46.6807563 ], + [ 10.1473879, 46.6806178 ], + [ 10.1474183, 46.6804781 ], + [ 10.147438, 46.6803375 ], + [ 10.1474471, 46.6801963 ], + [ 10.1474454, 46.680055 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0084", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Ova Spin", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Ova Spin", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Ova Spin", + "lang" : "it-CH" + }, + { + "text" : "Substation Ova Spin", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.5516226, 46.9129667 ], + [ 9.5503859, 46.9121977 ], + [ 9.5506092, 46.9132643 ], + [ 9.5506754, 46.9132583 ], + [ 9.5507385, 46.913422 ], + [ 9.5518282, 46.9132573 ], + [ 9.5516226, 46.9129667 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSXU002", + "country" : "CHE", + "name" : [ + { + "text" : "LSXU Untervaz (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSXU Untervaz (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSXU Untervaz (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSXU Untervaz (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swiss Helicopter AG", + "lang" : "de-CH" + }, + { + "text" : "Swiss Helicopter AG", + "lang" : "fr-CH" + }, + { + "text" : "Swiss Helicopter AG", + "lang" : "it-CH" + }, + { + "text" : "Swiss Helicopter AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Adrian Roffler", + "lang" : "de-CH" + }, + { + "text" : "Adrian Roffler", + "lang" : "fr-CH" + }, + { + "text" : "Adrian Roffler", + "lang" : "it-CH" + }, + { + "text" : "Adrian Roffler", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swisshelicopter.ch/en/about-us/helicopter-bases/untervaz", + "email" : "untervaz@swisshelicopter.ch", + "phone" : "0041813225757", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.4723185, 47.0501307 ], + [ 8.5060077, 46.9822249 ], + [ 8.5116458, 46.9628819 ], + [ 8.3408747, 46.9296069 ], + [ 8.3092819, 47.0103174 ], + [ 8.3383722, 47.0304232 ], + [ 8.4249633, 47.0431644 ], + [ 8.4723185, 47.0501307 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 120, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "CTR0003", + "country" : "CHE", + "name" : [ + { + "text" : "CTR BUOCHS (MIL/CIV)", + "lang" : "de-CH" + }, + { + "text" : "CTR BUOCHS (MIL/CIV)", + "lang" : "fr-CH" + }, + { + "text" : "CTR BUOCHS (MIL/CIV)", + "lang" : "it-CH" + }, + { + "text" : "CTR BUOCHS (MIL/CIV)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only permitted from an altitude of 120 m above ground with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Skyguide Special Flight Office", + "lang" : "de-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "it-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "en-GB" + } + ], + "siteURL" : "https://skyguide.ch/services/special-flights", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4210307, 46.4908235 ], + [ 7.4210176, 46.4908145 ], + [ 7.4206945, 46.4910407 ], + [ 7.4202482, 46.4911664 ], + [ 7.4199851, 46.4911988 ], + [ 7.4109672, 46.4972574 ], + [ 7.4108434, 46.4971657 ], + [ 7.4105441, 46.4973284 ], + [ 7.410388, 46.4971734 ], + [ 7.4102462, 46.4970318 ], + [ 7.4100656, 46.4971566 ], + [ 7.4095495, 46.4974413 ], + [ 7.4093949, 46.4975375 ], + [ 7.4086658, 46.4979531 ], + [ 7.408326, 46.4981322 ], + [ 7.4081733, 46.4981998 ], + [ 7.4087137, 46.4984484 ], + [ 7.4087691, 46.4984427 ], + [ 7.4088088, 46.4984515 ], + [ 7.4088443, 46.4984703 ], + [ 7.4088847, 46.4984998 ], + [ 7.4081825, 46.4988612 ], + [ 7.4076914, 46.499072 ], + [ 7.4075035, 46.499126 ], + [ 7.4075745, 46.499178 ], + [ 7.4074276, 46.499274 ], + [ 7.4071622, 46.4990784 ], + [ 7.4069029, 46.4991654 ], + [ 7.4062376, 46.4993872 ], + [ 7.4061557, 46.4994224 ], + [ 7.4060858, 46.4994573 ], + [ 7.4060062, 46.4995163 ], + [ 7.4059528, 46.4995777 ], + [ 7.4059175, 46.4996474 ], + [ 7.4059016, 46.4997142 ], + [ 7.4058728, 46.5000114 ], + [ 7.4057597, 46.5000138 ], + [ 7.4057456, 46.5000568 ], + [ 7.4057374, 46.5000604 ], + [ 7.4056529, 46.500047 ], + [ 7.4053345, 46.4998563 ], + [ 7.4050266, 46.4996635 ], + [ 7.4048733, 46.4995676 ], + [ 7.4047846, 46.4996062 ], + [ 7.4039702, 46.500053 ], + [ 7.403924, 46.5000811 ], + [ 7.4038144, 46.5000615 ], + [ 7.4032009, 46.5004928 ], + [ 7.4030919, 46.5005652 ], + [ 7.4027679, 46.5007755 ], + [ 7.4028261, 46.5008208 ], + [ 7.402461, 46.5011071 ], + [ 7.4026043999999995, 46.5010259 ], + [ 7.4034376, 46.5012877 ], + [ 7.4041934, 46.5008202 ], + [ 7.4043497, 46.5009282 ], + [ 7.4044801, 46.5007483 ], + [ 7.4047235, 46.5005933 ], + [ 7.4049993, 46.5007813 ], + [ 7.4053385, 46.5009531 ], + [ 7.4054091, 46.5010012 ], + [ 7.4041146, 46.5018457 ], + [ 7.4037757, 46.5021154 ], + [ 7.4029421, 46.5020027 ], + [ 7.4024545, 46.50259 ], + [ 7.4029936, 46.5028348 ], + [ 7.4019768, 46.5039139 ], + [ 7.402758, 46.5046159 ], + [ 7.4033146, 46.5042272 ], + [ 7.403317, 46.5042289 ], + [ 7.4054331, 46.5027481 ], + [ 7.4223035, 46.4909653 ], + [ 7.4215743, 46.4904254 ], + [ 7.4210307, 46.4908235 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSTS002", + "country" : "CHE", + "name" : [ + { + "text" : "LSTS St. Stephan (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSTS St. Stephan (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSTS St. Stephan (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSTS St. Stephan (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Airfield St. Stephan", + "lang" : "de-CH" + }, + { + "text" : "Airfield St. Stephan", + "lang" : "fr-CH" + }, + { + "text" : "Airfield St. Stephan", + "lang" : "it-CH" + }, + { + "text" : "Airfield St. Stephan", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Stephan Speiser", + "lang" : "de-CH" + }, + { + "text" : "Stephan Speiser", + "lang" : "fr-CH" + }, + { + "text" : "Stephan Speiser", + "lang" : "it-CH" + }, + { + "text" : "Stephan Speiser", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.p-c-a.ch/modellflug.html", + "email" : "info@p-c-a.ch", + "phone" : "0041787341880", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5666774, 47.4962949 ], + [ 7.566688, 47.4963576 ], + [ 7.566867, 47.4963388 ], + [ 7.5669887, 47.4963258 ], + [ 7.5670297, 47.4963214 ], + [ 7.5671557, 47.4962657 ], + [ 7.5675609, 47.496287 ], + [ 7.5677941, 47.4962764 ], + [ 7.5687686, 47.4964865 ], + [ 7.5695324, 47.4966456 ], + [ 7.5700412, 47.4966837 ], + [ 7.570567, 47.496812 ], + [ 7.5704776, 47.4970146 ], + [ 7.5704927, 47.4970194 ], + [ 7.5708859, 47.497154 ], + [ 7.5714197, 47.4973597 ], + [ 7.5715582, 47.4974209 ], + [ 7.5716782, 47.4974956 ], + [ 7.5719694, 47.4976944 ], + [ 7.5721887, 47.4974282 ], + [ 7.5722009, 47.4974135 ], + [ 7.5722711, 47.4973263 ], + [ 7.5721635, 47.4972248 ], + [ 7.5716003, 47.4969792 ], + [ 7.5712699, 47.496884 ], + [ 7.570839, 47.4967637 ], + [ 7.5706636, 47.4967144 ], + [ 7.570679, 47.4967749 ], + [ 7.5698915, 47.4965754 ], + [ 7.5697568, 47.4965883 ], + [ 7.5694534, 47.4965069 ], + [ 7.569343, 47.4964513 ], + [ 7.5681975999999995, 47.4962936 ], + [ 7.5680477, 47.4962154 ], + [ 7.5678334, 47.4961969 ], + [ 7.5675671, 47.4962306 ], + [ 7.5671051, 47.4961633 ], + [ 7.5670288, 47.4962459 ], + [ 7.5666774, 47.4962949 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns039", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Mooswasen", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Mooswasen", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Mooswasen", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Mooswasen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.0170119, 46.8702557 ], + [ 7.0152758, 46.8715217 ], + [ 7.0124123, 46.87351 ], + [ 7.0097475, 46.8752965 ], + [ 7.0101323, 46.8753992 ], + [ 7.0106635, 46.8754621 ], + [ 7.0108522, 46.8753579 ], + [ 7.0112557, 46.8752644 ], + [ 7.0115672, 46.8751865 ], + [ 7.0117062, 46.8752082 ], + [ 7.0118485, 46.8752922 ], + [ 7.0118924, 46.8753322 ], + [ 7.012033, 46.8754521 ], + [ 7.0121509, 46.8756101 ], + [ 7.0121386, 46.8756996 ], + [ 7.0118754, 46.8761277 ], + [ 7.0118347, 46.8763167 ], + [ 7.0120025, 46.8764239 ], + [ 7.0125221, 46.8765812 ], + [ 7.013056, 46.8765671 ], + [ 7.0134939, 46.876843 ], + [ 7.0138307, 46.8773504 ], + [ 7.0140267, 46.877501 ], + [ 7.0141704, 46.8775114 ], + [ 7.0146388, 46.8773425 ], + [ 7.0148213, 46.877188 ], + [ 7.0149939, 46.8769295 ], + [ 7.015184, 46.8768166 ], + [ 7.015288, 46.876814 ], + [ 7.0153884, 46.8769106 ], + [ 7.0155046, 46.8770305 ], + [ 7.0154478, 46.8772105 ], + [ 7.0153742, 46.877634 ], + [ 7.0153866, 46.8778599 ], + [ 7.0152899, 46.8782515 ], + [ 7.0153271, 46.8784782 ], + [ 7.0156069, 46.8787277 ], + [ 7.015745, 46.8788179 ], + [ 7.01581, 46.8789279 ], + [ 7.0158448, 46.8790627 ], + [ 7.0158693, 46.8791582 ], + [ 7.0158725, 46.8791769 ], + [ 7.0180121, 46.8796865 ], + [ 7.0180732, 46.8796053 ], + [ 7.018107, 46.8795599 ], + [ 7.0181893, 46.8794499 ], + [ 7.0201729, 46.8777013 ], + [ 7.0208877, 46.8770496 ], + [ 7.0209155, 46.8770248 ], + [ 7.0209837, 46.8769626 ], + [ 7.021005, 46.8769419 ], + [ 7.0212868, 46.8766843 ], + [ 7.0213097, 46.8766909 ], + [ 7.0213363, 46.8766984 ], + [ 7.0213583, 46.8767046 ], + [ 7.022955, 46.8753053 ], + [ 7.0242552, 46.8741687 ], + [ 7.0170119, 46.8702557 ] + ] + ], + "layer" : { + "upper" : 300, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "FR005", + "country" : "CHE", + "name" : [ + { + "text" : "CIG Nord", + "lang" : "de-CH" + }, + { + "text" : "CIG Nord", + "lang" : "fr-CH" + }, + { + "text" : "CIG Nord", + "lang" : "it-CH" + }, + { + "text" : "CIG Nord", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kantonspolizei (Pol)", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale (Pol)", + "lang" : "fr-CH" + }, + { + "text" : "Police cantonale (Pol)", + "lang" : "it-CH" + }, + { + "text" : "Police cantonale (Pol)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Kommandant", + "lang" : "de-CH" + }, + { + "text" : "Commandant", + "lang" : "fr-CH" + }, + { + "text" : "Commandant", + "lang" : "it-CH" + }, + { + "text" : "Commandant", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.fr.ch/police-et-securite/criminalite-ordre-public-et-circulation/drones-legislation-et-demandes-de-derogation", + "email" : "CEA@fr.ch", + "phone" : "0041263470117", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.7800339, 47.1695787 ], + [ 8.779884599999999, 47.1672264 ], + [ 8.7795549, 47.1648826 ], + [ 8.7790459, 47.1625538 ], + [ 8.7783589, 47.1602463 ], + [ 8.7774958, 47.1579665 ], + [ 8.7764591, 47.1557206 ], + [ 8.7752517, 47.1535148 ], + [ 8.7738767, 47.1513552 ], + [ 8.772338, 47.1492475 ], + [ 8.770639899999999, 47.1471977 ], + [ 8.768787, 47.1452112 ], + [ 8.7667844, 47.1432936 ], + [ 8.7646377, 47.1414501 ], + [ 8.7623525, 47.1396858 ], + [ 8.7599354, 47.1380054 ], + [ 8.7573928, 47.1364136 ], + [ 8.7547318, 47.1349147 ], + [ 8.7519596, 47.1335128 ], + [ 8.7490838, 47.1322118 ], + [ 8.7461123, 47.1310152 ], + [ 8.7430533, 47.1299263 ], + [ 8.739915, 47.128948 ], + [ 8.7367062, 47.1280831 ], + [ 8.7334355, 47.127333899999996 ], + [ 8.7301119, 47.1267025 ], + [ 8.7267446, 47.1261905 ], + [ 8.7233426, 47.1257995 ], + [ 8.7199154, 47.1255304 ], + [ 8.7164722, 47.1253839 ], + [ 8.7130225, 47.1253606 ], + [ 8.7095758, 47.1254604 ], + [ 8.7061414, 47.1256831 ], + [ 8.7027288, 47.126028 ], + [ 8.6993472, 47.1264943 ], + [ 8.696006, 47.1270806 ], + [ 8.6927142, 47.1277854 ], + [ 8.6894808, 47.1286067 ], + [ 8.6863148, 47.1295423 ], + [ 8.6832248, 47.1305896 ], + [ 8.6802191, 47.1317457 ], + [ 8.6773061, 47.1330075 ], + [ 8.6744937, 47.1343716 ], + [ 8.6717897, 47.1358342 ], + [ 8.6692014, 47.1373913 ], + [ 8.666735899999999, 47.1390386 ], + [ 8.6643999, 47.1407717 ], + [ 8.6622, 47.1425858 ], + [ 8.6601421, 47.1444759 ], + [ 8.6582318, 47.1464369 ], + [ 8.6564744, 47.1484633 ], + [ 8.6548748, 47.1505497 ], + [ 8.6534373, 47.1526904 ], + [ 8.6521659, 47.1548794 ], + [ 8.6510641, 47.1571108 ], + [ 8.650135, 47.1593784 ], + [ 8.649381, 47.1616762 ], + [ 8.6488043, 47.1639976 ], + [ 8.6484065, 47.1663365 ], + [ 8.6481887, 47.1686864 ], + [ 8.6481515, 47.1710408 ], + [ 8.6482951, 47.1733933 ], + [ 8.6486191, 47.1757375 ], + [ 8.6491226, 47.1780669 ], + [ 8.6498042, 47.1803751 ], + [ 8.6506622, 47.1826558 ], + [ 8.6516941, 47.1849028 ], + [ 8.6528972, 47.1871099 ], + [ 8.6542682, 47.189271 ], + [ 8.6558033, 47.1913802 ], + [ 8.6574984, 47.1934317 ], + [ 8.6593488, 47.1954199 ], + [ 8.6613495, 47.1973393 ], + [ 8.663495, 47.1991847 ], + [ 8.6657794, 47.200951 ], + [ 8.6681964, 47.2026334 ], + [ 8.6707395, 47.2042271 ], + [ 8.6734016, 47.2057279 ], + [ 8.6761755, 47.2071317 ], + [ 8.6790536, 47.2084345 ], + [ 8.6820278, 47.2096328 ], + [ 8.6850902, 47.2107233 ], + [ 8.6882322, 47.2117031 ], + [ 8.6914453, 47.2125693 ], + [ 8.6947206, 47.2133197 ], + [ 8.6980492, 47.2139521 ], + [ 8.7014218, 47.2144649 ], + [ 8.7048292, 47.2148566 ], + [ 8.7082621, 47.2151262 ], + [ 8.7117111, 47.2152729 ], + [ 8.7151665, 47.2152963 ], + [ 8.7186191, 47.2151963 ], + [ 8.7220591, 47.2149732 ], + [ 8.7254773, 47.2146277 ], + [ 8.7288643, 47.2141607 ], + [ 8.7322106, 47.2135734 ], + [ 8.7355071, 47.2128675 ], + [ 8.7387449, 47.2120449 ], + [ 8.7419149, 47.2111079 ], + [ 8.7450084, 47.2100591 ], + [ 8.7480171, 47.2089013 ], + [ 8.7509325, 47.2076377 ], + [ 8.7537468, 47.2062717 ], + [ 8.7564522, 47.2048072 ], + [ 8.7590412, 47.2032482 ], + [ 8.7615068, 47.2015989 ], + [ 8.7638423, 47.1998639 ], + [ 8.7660411, 47.1980479 ], + [ 8.7680974, 47.1961559 ], + [ 8.7700054, 47.1941931 ], + [ 8.7717599, 47.192165 ], + [ 8.7733562, 47.190077 ], + [ 8.7747899, 47.1879348 ], + [ 8.7760571, 47.1857445 ], + [ 8.7771543, 47.1835119 ], + [ 8.7780785, 47.1812433 ], + [ 8.7788272, 47.1789447 ], + [ 8.7793984, 47.1766226 ], + [ 8.7797905, 47.1742833 ], + [ 8.7800026, 47.1719332 ], + [ 8.7800339, 47.1695787 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSXS001", + "country" : "CHE", + "name" : [ + { + "text" : "LSXS Schindellegi SZ", + "lang" : "de-CH" + }, + { + "text" : "LSXS Schindellegi SZ", + "lang" : "fr-CH" + }, + { + "text" : "LSXS Schindellegi SZ", + "lang" : "it-CH" + }, + { + "text" : "LSXS Schindellegi SZ", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Fuchs Helikopter", + "lang" : "de-CH" + }, + { + "text" : "Fuchs Helikopter", + "lang" : "fr-CH" + }, + { + "text" : "Fuchs Helikopter", + "lang" : "it-CH" + }, + { + "text" : "Fuchs Helikopter", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.fuchshelikopter.ch/en/", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.6965533, 47.0373156 ], + [ 6.6966166, 47.0373221 ], + [ 6.6975944, 47.0379138 ], + [ 6.6989388, 47.0388221 ], + [ 6.6993151, 47.0391454 ], + [ 6.7006428, 47.0401038 ], + [ 6.7016083, 47.0407721 ], + [ 6.7035611, 47.042386 ], + [ 6.7045999, 47.0433555 ], + [ 6.7058358, 47.0443328 ], + [ 6.7088322, 47.0449762 ], + [ 6.7088351, 47.0449795 ], + [ 6.7088527, 47.0449832 ], + [ 6.7115291, 47.0480502 ], + [ 6.7150417000000004, 47.0494775 ], + [ 6.7156333, 47.0497055 ], + [ 6.7164217, 47.0500453 ], + [ 6.7173566000000005, 47.0504321 ], + [ 6.7185777, 47.050911 ], + [ 6.7188068, 47.0510321 ], + [ 6.719171, 47.0511828 ], + [ 6.7194880999999995, 47.051796 ], + [ 6.7194888, 47.0517971 ], + [ 6.7194888, 47.0517975 ], + [ 6.7196087, 47.0520293 ], + [ 6.719609, 47.0520297 ], + [ 6.7195944999999995, 47.0520332 ], + [ 6.7195048, 47.0520549 ], + [ 6.71947, 47.0520841 ], + [ 6.7194112, 47.0521061 ], + [ 6.7192861, 47.0521749 ], + [ 6.7189875, 47.0522088 ], + [ 6.7189636, 47.0522158 ], + [ 6.718861, 47.0522784 ], + [ 6.7188027, 47.0522951 ], + [ 6.7186131, 47.0523056 ], + [ 6.7185462, 47.0522966 ], + [ 6.7183449, 47.0522978 ], + [ 6.7182683, 47.0522905 ], + [ 6.7178794, 47.0523347 ], + [ 6.7178506, 47.052344 ], + [ 6.7176894, 47.0523826 ], + [ 6.7175576, 47.0524258 ], + [ 6.7175571, 47.0524258 ], + [ 6.7173333, 47.0525027 ], + [ 6.7171361, 47.0525027 ], + [ 6.7167196, 47.0525419 ], + [ 6.7166678, 47.0525595 ], + [ 6.7164871, 47.0526057 ], + [ 6.7163351, 47.0526509 ], + [ 6.7161969, 47.0527029 ], + [ 6.7160627999999996, 47.0527256 ], + [ 6.7159627, 47.0527309 ], + [ 6.7158555, 47.0527638 ], + [ 6.7151555, 47.0529582 ], + [ 6.7148666, 47.0529555 ], + [ 6.7145885, 47.0530087 ], + [ 6.7144239, 47.0530767 ], + [ 6.7143195, 47.0531301 ], + [ 6.7141514, 47.0531402 ], + [ 6.7140629, 47.0531341 ], + [ 6.7134138, 47.0533055 ], + [ 6.7130166, 47.0533305 ], + [ 6.7122499, 47.0535499 ], + [ 6.7112972, 47.0541027 ], + [ 6.7111222, 47.0542638 ], + [ 6.7109860999999995, 47.0545944 ], + [ 6.7106527, 47.0550444 ], + [ 6.7102499, 47.055536 ], + [ 6.7100888, 47.0558499 ], + [ 6.7099523, 47.0560105 ], + [ 6.7099169, 47.0560726 ], + [ 6.7098759999999995, 47.0561003 ], + [ 6.7096472, 47.0563693 ], + [ 6.7096833, 47.0565027 ], + [ 6.7096416, 47.0566832 ], + [ 6.7094138, 47.0570416 ], + [ 6.7092361, 47.0573999 ], + [ 6.7089694, 47.0576694 ], + [ 6.7089034, 47.057624 ], + [ 6.7088258, 47.0577065 ], + [ 6.7119444, 47.0630555 ], + [ 6.827778, 47.1252771 ], + [ 6.9338888, 47.1788888 ], + [ 6.9741666, 47.1355555 ], + [ 6.8708333, 47.0999999 ], + [ 6.7916666, 47.0297216 ], + [ 6.7197222, 46.9808327 ], + [ 6.6481351, 47.0140007 ], + [ 6.6483682, 47.0146153 ], + [ 6.6520081, 47.0199791 ], + [ 6.6536234, 47.0223427 ], + [ 6.6548482, 47.0234787 ], + [ 6.6548523, 47.0234952 ], + [ 6.6552083, 47.0238221 ], + [ 6.6565332999999995, 47.024911 ], + [ 6.6568214, 47.0252247 ], + [ 6.6569068, 47.0253009 ], + [ 6.6571128, 47.0255058 ], + [ 6.657199, 47.0256274 ], + [ 6.6572704, 47.0257134 ], + [ 6.65735, 47.0257999 ], + [ 6.6593537, 47.0273759 ], + [ 6.6594114, 47.0273908 ], + [ 6.6594411000000004, 47.0274004 ], + [ 6.6599555, 47.0274999 ], + [ 6.6603722, 47.0278444 ], + [ 6.6609583, 47.0282249 ], + [ 6.6609986, 47.028198 ], + [ 6.6610704, 47.0281321 ], + [ 6.6610848, 47.0281405 ], + [ 6.6610916, 47.028136 ], + [ 6.6618499, 47.0285471 ], + [ 6.662209, 47.0288023 ], + [ 6.6623888, 47.0289081 ], + [ 6.6626656, 47.0290262 ], + [ 6.6635472, 47.0293221 ], + [ 6.6647499, 47.0298694 ], + [ 6.6662555, 47.0304471 ], + [ 6.6668388, 47.0309638 ], + [ 6.6677944, 47.031311 ], + [ 6.6694555, 47.0321055 ], + [ 6.6706083, 47.0323666 ], + [ 6.6710916000000005, 47.0326388 ], + [ 6.6726319, 47.0332793 ], + [ 6.6727593, 47.0333191 ], + [ 6.6729288, 47.0333899 ], + [ 6.6733937, 47.0335742 ], + [ 6.6735811, 47.033674 ], + [ 6.6736166, 47.0336888 ], + [ 6.6750111, 47.0344638 ], + [ 6.6754444, 47.0345749 ], + [ 6.6756114, 47.0347538 ], + [ 6.6757248, 47.0347768 ], + [ 6.6761585, 47.0349594 ], + [ 6.6764499, 47.0350582 ], + [ 6.6784833, 47.0355388 ], + [ 6.6793361, 47.0358416 ], + [ 6.6796344, 47.0359088 ], + [ 6.6806949, 47.0361066 ], + [ 6.6812428, 47.036289 ], + [ 6.6823499, 47.0365805 ], + [ 6.6834666, 47.036786 ], + [ 6.6838972, 47.0369527 ], + [ 6.6843833, 47.0370166 ], + [ 6.6854721999999995, 47.0373666 ], + [ 6.6878361, 47.037561 ], + [ 6.6899444, 47.0374416 ], + [ 6.6908666, 47.037286 ], + [ 6.6917357, 47.0372581 ], + [ 6.6922875, 47.03723 ], + [ 6.6933027, 47.0371471 ], + [ 6.6938449, 47.0371507 ], + [ 6.6942465, 47.0371302 ], + [ 6.69475, 47.0370018 ], + [ 6.6947594, 47.0369947 ], + [ 6.6947767, 47.036995 ], + [ 6.6948444, 47.0369777 ], + [ 6.6950345, 47.0369984 ], + [ 6.6951839, 47.0370004 ], + [ 6.6952122, 47.0370178 ], + [ 6.6952777, 47.0370249 ], + [ 6.6956768, 47.0372179 ], + [ 6.6957433, 47.0372324 ], + [ 6.6959694, 47.0372556 ], + [ 6.6965402, 47.0373068 ], + [ 6.6965533, 47.0373156 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 120, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "CTR0008", + "country" : "CHE", + "name" : [ + { + "text" : "CTR LES EPLATURES", + "lang" : "de-CH" + }, + { + "text" : "CTR LES EPLATURES", + "lang" : "fr-CH" + }, + { + "text" : "CTR LES EPLATURES", + "lang" : "it-CH" + }, + { + "text" : "CTR LES EPLATURES", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only permitted from an altitude of 120 m above ground with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Skyguide Special Flight Office", + "lang" : "de-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "it-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "en-GB" + } + ], + "siteURL" : "https://skyguide.ch/services/special-flights", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5809785, 47.5033491 ], + [ 7.5809727, 47.5032079 ], + [ 7.5809560000000005, 47.503067 ], + [ 7.5809284, 47.502927 ], + [ 7.58089, 47.5027882 ], + [ 7.5808409999999995, 47.5026509 ], + [ 7.5807814, 47.5025155 ], + [ 7.5807115, 47.5023825 ], + [ 7.5806314, 47.502252 ], + [ 7.5805413, 47.5021246 ], + [ 7.5804415, 47.5020006 ], + [ 7.5803323, 47.5018803 ], + [ 7.5802139, 47.501764 ], + [ 7.5800867, 47.5016521 ], + [ 7.579951, 47.5015449 ], + [ 7.5798073, 47.5014426 ], + [ 7.5796558, 47.5013455 ], + [ 7.579497, 47.501254 ], + [ 7.5793314, 47.5011682 ], + [ 7.5791594, 47.5010884 ], + [ 7.5789815, 47.5010148 ], + [ 7.5787981, 47.5009476 ], + [ 7.5786098, 47.500887 ], + [ 7.5784171, 47.5008332 ], + [ 7.5782205000000005, 47.5007863 ], + [ 7.5780205, 47.5007464 ], + [ 7.5778177, 47.5007137 ], + [ 7.5776126999999995, 47.5006882 ], + [ 7.577406, 47.50067 ], + [ 7.5771982, 47.5006591 ], + [ 7.5769898, 47.5006557 ], + [ 7.5767814, 47.5006596 ], + [ 7.5765736, 47.500671 ], + [ 7.576367, 47.5006896 ], + [ 7.5761621, 47.5007156 ], + [ 7.5759595, 47.5007488 ], + [ 7.5757597, 47.5007892 ], + [ 7.5755634, 47.5008366 ], + [ 7.5753709, 47.5008909 ], + [ 7.5751829, 47.5009519 ], + [ 7.5749999, 47.5010195 ], + [ 7.5748223, 47.5010935 ], + [ 7.5746508, 47.5011738 ], + [ 7.5744856, 47.5012599 ], + [ 7.5743273, 47.5013519 ], + [ 7.5741764, 47.5014493 ], + [ 7.5740331, 47.5015519 ], + [ 7.573898, 47.5016595 ], + [ 7.5737714, 47.5017717 ], + [ 7.5736536, 47.5018882 ], + [ 7.573545, 47.5020088 ], + [ 7.5734459, 47.5021331 ], + [ 7.5733564, 47.5022607 ], + [ 7.573277, 47.5023913 ], + [ 7.5732077, 47.5025245 ], + [ 7.5731489, 47.50266 ], + [ 7.5731006, 47.5027974 ], + [ 7.5730629, 47.5029364 ], + [ 7.573036, 47.5030765 ], + [ 7.5730201, 47.5032173 ], + [ 7.573015, 47.5033585 ], + [ 7.5730208, 47.5034997 ], + [ 7.5730375, 47.5036405 ], + [ 7.573065, 47.5037805 ], + [ 7.5731034, 47.5039194 ], + [ 7.5731524, 47.5040567 ], + [ 7.5732119, 47.5041921 ], + [ 7.5732819, 47.5043251 ], + [ 7.5733619999999995, 47.5044556 ], + [ 7.573452, 47.504583 ], + [ 7.5735518, 47.504707 ], + [ 7.5736609999999995, 47.5048273 ], + [ 7.5737794, 47.5049436 ], + [ 7.5739066, 47.5050555 ], + [ 7.5740423, 47.5051628 ], + [ 7.574186, 47.5052651 ], + [ 7.5743375, 47.5053621 ], + [ 7.5744962000000005, 47.5054537 ], + [ 7.5746618, 47.5055395 ], + [ 7.5748339, 47.5056193 ], + [ 7.5750118, 47.5056929 ], + [ 7.5751952, 47.5057601 ], + [ 7.5753835, 47.5058207 ], + [ 7.5755763, 47.5058745 ], + [ 7.5757729, 47.5059214 ], + [ 7.5759729, 47.5059613 ], + [ 7.5761757, 47.505994 ], + [ 7.5763807, 47.5060195 ], + [ 7.5765874, 47.5060377 ], + [ 7.5767953, 47.5060486 ], + [ 7.5770037, 47.506052 ], + [ 7.5772121, 47.5060481 ], + [ 7.5774199, 47.5060367 ], + [ 7.5776266, 47.5060181 ], + [ 7.5778315, 47.5059921 ], + [ 7.5780341, 47.5059589 ], + [ 7.5782339, 47.5059185 ], + [ 7.5784303, 47.5058711 ], + [ 7.5786227, 47.5058168 ], + [ 7.5788107, 47.5057558 ], + [ 7.5789938, 47.5056882 ], + [ 7.5791713, 47.5056141 ], + [ 7.5793429, 47.5055339 ], + [ 7.5795081, 47.5054477 ], + [ 7.5796664, 47.5053558 ], + [ 7.5798173, 47.5052584 ], + [ 7.5799606, 47.5051557 ], + [ 7.5800957, 47.5050481 ], + [ 7.5802223, 47.5049359 ], + [ 7.58034, 47.5048194 ], + [ 7.5804487, 47.5046988 ], + [ 7.5805478, 47.5045745 ], + [ 7.5806372, 47.5044469 ], + [ 7.5807166, 47.5043163 ], + [ 7.5807859, 47.5041831 ], + [ 7.5808447, 47.5040476 ], + [ 7.580893, 47.5039101 ], + [ 7.5809306, 47.5037712 ], + [ 7.5809575, 47.5036311 ], + [ 7.5809735, 47.5034903 ], + [ 7.5809785, 47.5033491 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0040", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Froloo", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Froloo", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Froloo", + "lang" : "it-CH" + }, + { + "text" : "Substation Froloo", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.3053261, 46.2486264 ], + [ 6.3053138, 46.2486075 ], + [ 6.3046356, 46.2478939 ], + [ 6.3036698, 46.2473632 ], + [ 6.3025132, 46.2470687 ], + [ 6.3012819, 46.2470399 ], + [ 6.3000994, 46.2472796 ], + [ 6.3000453, 46.2472974 ], + [ 6.2988468, 46.2479114 ], + [ 6.2980688, 46.2487929 ], + [ 6.2978255, 46.2498127 ], + [ 6.2981527, 46.2508211 ], + [ 6.2981647, 46.2508401 ], + [ 6.2988379, 46.2515621 ], + [ 6.2998042, 46.2521006 ], + [ 6.3009658, 46.2524009 ], + [ 6.3022045, 46.252432400000004 ], + [ 6.3033946, 46.2521921 ], + [ 6.3034489, 46.2521742 ], + [ 6.304654, 46.2515553 ], + [ 6.3054321, 46.2506663 ], + [ 6.3056678, 46.2496391 ], + [ 6.3053261, 46.2486264 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-50", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.7630711, 47.5342572 ], + [ 8.7900962, 47.535128 ], + [ 8.8050204, 47.5325939 ], + [ 8.8036947, 47.5220919 ], + [ 8.7766344, 47.4905648 ], + [ 8.7529535, 47.4984236 ], + [ 8.7519066, 47.5033288 ], + [ 8.7630711, 47.5342572 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSPH001", + "country" : "CHE", + "name" : [ + { + "text" : "LSPH Winterthur", + "lang" : "de-CH" + }, + { + "text" : "LSPH Winterthur", + "lang" : "fr-CH" + }, + { + "text" : "LSPH Winterthur", + "lang" : "it-CH" + }, + { + "text" : "LSPH Winterthur", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Segelfluggruppe Winterthur", + "lang" : "de-CH" + }, + { + "text" : "Segelfluggruppe Winterthur", + "lang" : "fr-CH" + }, + { + "text" : "Segelfluggruppe Winterthur", + "lang" : "it-CH" + }, + { + "text" : "Segelfluggruppe Winterthur", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Christian Spaltenstein", + "lang" : "de-CH" + }, + { + "text" : "Christian Spaltenstein", + "lang" : "fr-CH" + }, + { + "text" : "Christian Spaltenstein", + "lang" : "it-CH" + }, + { + "text" : "Christian Spaltenstein", + "lang" : "en-GB" + } + ], + "siteURL" : "https://sgw.ch/drohnen-operationen/vereinbarung-fur-drohnen-operationen/", + "email" : "flugplatzchef@sgw.ch", + "phone" : "0041523372393", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7414254, 47.1810381 ], + [ 7.740898, 47.1820406 ], + [ 7.7385231999999995, 47.1808667 ], + [ 7.7378813, 47.1814387 ], + [ 7.7448589, 47.1848851 ], + [ 7.7450559, 47.1847218 ], + [ 7.7443301, 47.1837712 ], + [ 7.7440947, 47.1834372 ], + [ 7.743843, 47.1834945 ], + [ 7.7429526, 47.1830552 ], + [ 7.7431133, 47.1829981 ], + [ 7.7424037, 47.1821086 ], + [ 7.7425908, 47.1815954 ], + [ 7.7414254, 47.1810381 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSPL002", + "country" : "CHE", + "name" : [ + { + "text" : "LSPL Langenthal (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSPL Langenthal (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSPL Langenthal (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSPL Langenthal (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Flugplatz Langenthal", + "lang" : "de-CH" + }, + { + "text" : "Flugplatz Langenthal", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatz Langenthal", + "lang" : "it-CH" + }, + { + "text" : "Flugplatz Langenthal", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Pauk Zeltner", + "lang" : "de-CH" + }, + { + "text" : "Pauk Zeltner", + "lang" : "fr-CH" + }, + { + "text" : "Pauk Zeltner", + "lang" : "it-CH" + }, + { + "text" : "Pauk Zeltner", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.lspl.ch/", + "email" : "info@lspl.ch", + "phone" : "0041629225072", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.1544455, 46.2313494 ], + [ 9.1542825, 46.2289974 ], + [ 9.1539424, 46.2266545 ], + [ 9.1534261, 46.2243271 ], + [ 9.1527351, 46.2220217 ], + [ 9.1518712, 46.2197445 ], + [ 9.150837, 46.2175019 ], + [ 9.1496351, 46.2152998 ], + [ 9.148268999999999, 46.2131445 ], + [ 9.1467424, 46.2110417 ], + [ 9.1450595, 46.2089972 ], + [ 9.1432249, 46.2070166 ], + [ 9.1412436, 46.2051054 ], + [ 9.1391211, 46.2032688 ], + [ 9.1368633, 46.2015117 ], + [ 9.1344762, 46.1998391 ], + [ 9.1319665, 46.1982554 ], + [ 9.1293411, 46.1967651 ], + [ 9.126607, 46.1953722 ], + [ 9.1237719, 46.1940804 ], + [ 9.1208434, 46.1928935 ], + [ 9.1178296, 46.1918144 ], + [ 9.1147387, 46.1908464 ], + [ 9.1115792, 46.1899919 ], + [ 9.1083597, 46.1892533 ], + [ 9.1050891, 46.1886327 ], + [ 9.1017762, 46.1881317 ], + [ 9.0984302, 46.1877517 ], + [ 9.0950602, 46.1874937 ], + [ 9.0916754, 46.1873585 ], + [ 9.088285, 46.1873465 ], + [ 9.0848983, 46.1874575 ], + [ 9.0815247, 46.1876915 ], + [ 9.0781732, 46.1880476 ], + [ 9.0748532, 46.188525 ], + [ 9.0715736, 46.1891223 ], + [ 9.0683434, 46.1898378 ], + [ 9.0651714, 46.1906698 ], + [ 9.0620664, 46.1916158 ], + [ 9.0590368, 46.1926733 ], + [ 9.056091, 46.1938393 ], + [ 9.0532369, 46.1951108 ], + [ 9.0504824, 46.1964842 ], + [ 9.0478351, 46.1979557 ], + [ 9.0453021, 46.1995214 ], + [ 9.0428905, 46.201177 ], + [ 9.0406068, 46.2029178 ], + [ 9.0384573, 46.2047392 ], + [ 9.036448, 46.2066362 ], + [ 9.0345842, 46.208603600000004 ], + [ 9.0328711, 46.210636 ], + [ 9.0313135, 46.2127278 ], + [ 9.0299156, 46.2148733 ], + [ 9.0286813, 46.2170667 ], + [ 9.0276139, 46.2193019 ], + [ 9.0267165, 46.2215727 ], + [ 9.0259914, 46.2238731 ], + [ 9.0254407, 46.2261967 ], + [ 9.025066, 46.228537 ], + [ 9.0248682, 46.2308878 ], + [ 9.024848, 46.2332426 ], + [ 9.0250054, 46.2355948 ], + [ 9.02534, 46.2379381 ], + [ 9.025851, 46.240266 ], + [ 9.0265368, 46.2425722 ], + [ 9.0273958, 46.2448504 ], + [ 9.0284255, 46.2470942 ], + [ 9.0296231, 46.2492975 ], + [ 9.0309854, 46.2514543 ], + [ 9.0325087, 46.2535586 ], + [ 9.0341888, 46.2556048 ], + [ 9.036021, 46.2575871 ], + [ 9.0380005, 46.2595002 ], + [ 9.0401217, 46.2613387 ], + [ 9.042379, 46.2630977 ], + [ 9.0447659, 46.2647723 ], + [ 9.0472762, 46.2663579 ], + [ 9.0499027, 46.2678501 ], + [ 9.0526385, 46.2692449 ], + [ 9.0554759, 46.2705384 ], + [ 9.0584071, 46.2717271 ], + [ 9.0614242, 46.2728077 ], + [ 9.0645187, 46.2737773 ], + [ 9.0676824, 46.2746331 ], + [ 9.0709063, 46.2753728 ], + [ 9.0741818, 46.2759944 ], + [ 9.0774998, 46.2764963 ], + [ 9.0808511, 46.2768769 ], + [ 9.0842266, 46.2771352 ], + [ 9.087617, 46.2772707 ], + [ 9.091013, 46.2772828 ], + [ 9.0944052, 46.2771715 ], + [ 9.0977843, 46.2769372 ], + [ 9.1011411, 46.2765805 ], + [ 9.1044664, 46.2761023 ], + [ 9.1077509, 46.2755041 ], + [ 9.1109856, 46.2747874 ], + [ 9.1141618, 46.2739541 ], + [ 9.1172706, 46.2730067 ], + [ 9.1203035, 46.2719477 ], + [ 9.1232522, 46.2707799 ], + [ 9.1261086, 46.2695067 ], + [ 9.1288649, 46.2681314 ], + [ 9.1315135, 46.266658 ], + [ 9.134047, 46.2650904 ], + [ 9.1364587, 46.2634329 ], + [ 9.1387419, 46.2616901 ], + [ 9.1408903, 46.2598668 ], + [ 9.142898, 46.2579679 ], + [ 9.1447595, 46.2559987 ], + [ 9.1464698, 46.2539647 ], + [ 9.1480242, 46.2518712 ], + [ 9.1494184, 46.2497243 ], + [ 9.1506486, 46.2475296 ], + [ 9.1517114, 46.2452932 ], + [ 9.152604, 46.2430214 ], + [ 9.153324, 46.2407202 ], + [ 9.1538694, 46.238396 ], + [ 9.1542386, 46.2360552 ], + [ 9.1544308, 46.2337042 ], + [ 9.1544455, 46.2313494 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSXV001", + "country" : "CHE", + "name" : [ + { + "text" : "LSXV San Vittore Heliport", + "lang" : "de-CH" + }, + { + "text" : "LSXV San Vittore Heliport", + "lang" : "fr-CH" + }, + { + "text" : "LSXV San Vittore Heliport", + "lang" : "it-CH" + }, + { + "text" : "LSXV San Vittore Heliport", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "HELI REZIA SA", + "lang" : "de-CH" + }, + { + "text" : "HELI REZIA SA", + "lang" : "fr-CH" + }, + { + "text" : "HELI REZIA SA", + "lang" : "it-CH" + }, + { + "text" : "HELI REZIA SA", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Capo d'aerodromo", + "lang" : "de-CH" + }, + { + "text" : "Capo d'aerodromo", + "lang" : "fr-CH" + }, + { + "text" : "Capo d'aerodromo", + "lang" : "it-CH" + }, + { + "text" : "Capo d'aerodromo", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.helirezia.ch/", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7979531, 47.4340668 ], + [ 7.7979942, 47.434229 ], + [ 7.7980761, 47.4343859 ], + [ 7.7981898, 47.4345301 ], + [ 7.7983137, 47.4346279 ], + [ 7.7986138, 47.4348195 ], + [ 7.7994463, 47.435419 ], + [ 7.7995719999999995, 47.4355094 ], + [ 7.8001913, 47.4359555 ], + [ 7.8008089, 47.436424 ], + [ 7.8009006, 47.4364573 ], + [ 7.8010835, 47.4365121 ], + [ 7.8011478, 47.4364489 ], + [ 7.8009972, 47.4360934 ], + [ 7.8007267, 47.4357271 ], + [ 7.8005935, 47.4356352 ], + [ 7.7999493, 47.4353316 ], + [ 7.7998022, 47.4352769 ], + [ 7.7997013, 47.4352243 ], + [ 7.7993413, 47.4347523 ], + [ 7.7991804, 47.4346099 ], + [ 7.7989425, 47.4343795 ], + [ 7.7986103, 47.4339747 ], + [ 7.7985096, 47.4338727 ], + [ 7.798377, 47.4337923 ], + [ 7.7982542, 47.4337533 ], + [ 7.7981297, 47.4337592 ], + [ 7.7980045, 47.4338134 ], + [ 7.7979701, 47.4338819 ], + [ 7.7979531, 47.4340668 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns171", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Hefletenweiher", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Hefletenweiher", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Hefletenweiher", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Hefletenweiher", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8425273, 47.3782108 ], + [ 7.8426501, 47.3783505 ], + [ 7.8427427, 47.378443 ], + [ 7.8428798, 47.3785218 ], + [ 7.8430069, 47.3785805 ], + [ 7.8431588, 47.3786238 ], + [ 7.843385, 47.378672 ], + [ 7.8435121, 47.3787121 ], + [ 7.843578, 47.3787446 ], + [ 7.8436444, 47.3787235 ], + [ 7.8435783, 47.3786575 ], + [ 7.8434586, 47.3786168 ], + [ 7.8431399, 47.3785477 ], + [ 7.8429994, 47.3784975 ], + [ 7.8428740999999995, 47.3784322 ], + [ 7.8427664, 47.3783519 ], + [ 7.8426131, 47.3781743 ], + [ 7.8425741, 47.3781599 ], + [ 7.8425344, 47.3781685 ], + [ 7.8425273, 47.3782108 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns050", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Hecken-Komplex Schmutzberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Hecken-Komplex Schmutzberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Hecken-Komplex Schmutzberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Hecken-Komplex Schmutzberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8323081, 46.3021195 ], + [ 7.8335965, 46.3020439 ], + [ 7.8334498, 46.3011538 ], + [ 7.832155, 46.3012267 ], + [ 7.8323081, 46.3021195 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSER002", + "country" : "CHE", + "name" : [ + { + "text" : "LSER Raron (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSER Raron (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSER Raron (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSER Raron (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Air Zermatt AG", + "lang" : "de-CH" + }, + { + "text" : "Air Zermatt AG", + "lang" : "fr-CH" + }, + { + "text" : "Air Zermatt AG", + "lang" : "it-CH" + }, + { + "text" : "Air Zermatt AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.air-zermatt.ch/en/air-zermatt/contact", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.0014376, 47.5249943 ], + [ 9.0025827, 47.5254565 ], + [ 9.0029834, 47.5249024 ], + [ 9.0079228, 47.5265771 ], + [ 9.0083278, 47.5260804 ], + [ 9.0073283, 47.5256064 ], + [ 9.0042156, 47.5241733 ], + [ 9.0010348, 47.523359 ], + [ 8.9986456, 47.522722 ], + [ 8.9992032, 47.5236203 ], + [ 8.9981058, 47.523242 ], + [ 8.9977182, 47.5237015 ], + [ 9.0014376, 47.5249943 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZT002", + "country" : "CHE", + "name" : [ + { + "text" : "LSZT Lommis (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSZT Lommis (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSZT Lommis (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSZT Lommis (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Motorfluggruppe Thurgau", + "lang" : "de-CH" + }, + { + "text" : "Motorfluggruppe Thurgau", + "lang" : "fr-CH" + }, + { + "text" : "Motorfluggruppe Thurgau", + "lang" : "it-CH" + }, + { + "text" : "Motorfluggruppe Thurgau", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.mfgt.ch/flugplatz/drohnen/drones/", + "phone" : "0041523663333", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P04DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5602675999999995, 47.4238802 ], + [ 7.5601557, 47.4244376 ], + [ 7.56026, 47.4252956 ], + [ 7.5603045, 47.4257801 ], + [ 7.560327, 47.4258137 ], + [ 7.5603858, 47.4259504 ], + [ 7.560496, 47.4261847 ], + [ 7.5604975, 47.4261875 ], + [ 7.5604994, 47.4261901 ], + [ 7.5605017, 47.4261927 ], + [ 7.5605043, 47.4261951 ], + [ 7.5605659, 47.4262471 ], + [ 7.5606075, 47.4262744 ], + [ 7.5606186, 47.4262811 ], + [ 7.5606306, 47.4262869 ], + [ 7.5606433, 47.426292 ], + [ 7.5607062, 47.4263098 ], + [ 7.5609676, 47.426382 ], + [ 7.5612107, 47.4264551 ], + [ 7.5613707, 47.4265454 ], + [ 7.56125, 47.4272616 ], + [ 7.5613971, 47.4278828 ], + [ 7.5614152, 47.4279077 ], + [ 7.5614121, 47.4279618 ], + [ 7.5615482, 47.4282157 ], + [ 7.56167, 47.4284484 ], + [ 7.56176, 47.4286169 ], + [ 7.5617944999999995, 47.4287232 ], + [ 7.5618084, 47.4288348 ], + [ 7.5617704, 47.4291577 ], + [ 7.5617928, 47.4293334 ], + [ 7.5618248999999995, 47.4295283 ], + [ 7.5618825, 47.4299149 ], + [ 7.5618766, 47.4300032 ], + [ 7.5618768, 47.4300698 ], + [ 7.5618779, 47.4301214 ], + [ 7.5618335, 47.4301227 ], + [ 7.5613268, 47.4301373 ], + [ 7.5605457, 47.4301982 ], + [ 7.5604427, 47.4303325 ], + [ 7.5603413, 47.4303753 ], + [ 7.5600735, 47.4303887 ], + [ 7.5588788000000005, 47.4304068 ], + [ 7.5592505, 47.4309482 ], + [ 7.5592267, 47.4309547 ], + [ 7.5592913, 47.4310298 ], + [ 7.5594038, 47.4311606 ], + [ 7.5596148, 47.4314221 ], + [ 7.559903, 47.4316836 ], + [ 7.5601456, 47.4318636 ], + [ 7.5603353, 47.4318018 ], + [ 7.5607667, 47.4316378 ], + [ 7.5610862999999995, 47.4315297 ], + [ 7.5614213, 47.4314043 ], + [ 7.561767, 47.4312629 ], + [ 7.5620942, 47.4310978 ], + [ 7.562396, 47.4309206 ], + [ 7.5625948, 47.4307721 ], + [ 7.5626421, 47.4307097 ], + [ 7.5626794, 47.4306255 ], + [ 7.5626992, 47.430568 ], + [ 7.5627168000000005, 47.4303683 ], + [ 7.5627214, 47.4302057 ], + [ 7.5627445, 47.4301017 ], + [ 7.5628108, 47.4299631 ], + [ 7.5629729999999995, 47.4298098 ], + [ 7.5632961, 47.4295553 ], + [ 7.56345, 47.4294105 ], + [ 7.5635099, 47.4293009 ], + [ 7.5635549, 47.4292244 ], + [ 7.5635613, 47.4292119 ], + [ 7.5635661, 47.4291991 ], + [ 7.5635693, 47.4291861 ], + [ 7.5635708, 47.4291729 ], + [ 7.5635706, 47.4291597 ], + [ 7.5635688, 47.4291466 ], + [ 7.5635653, 47.4291336 ], + [ 7.5635601, 47.4291208 ], + [ 7.5635534, 47.4291084 ], + [ 7.5635451, 47.4290965 ], + [ 7.5635354, 47.4290851 ], + [ 7.5635242, 47.4290743 ], + [ 7.5635117, 47.4290641 ], + [ 7.5634087999999995, 47.4289878 ], + [ 7.5633007, 47.428882 ], + [ 7.5631862, 47.4287173 ], + [ 7.5631124, 47.4284929 ], + [ 7.5630328, 47.4281829 ], + [ 7.5629773, 47.4279262 ], + [ 7.5629544, 47.4277881 ], + [ 7.5629687, 47.427618 ], + [ 7.563002, 47.4274197 ], + [ 7.5630457, 47.4272209 ], + [ 7.5630723, 47.4270408 ], + [ 7.5630790999999995, 47.4270109 ], + [ 7.5630793, 47.4270098 ], + [ 7.5630793, 47.4270086 ], + [ 7.5630792, 47.4269262 ], + [ 7.563073, 47.4266793 ], + [ 7.5630611, 47.4265584 ], + [ 7.5630397, 47.4264876 ], + [ 7.5627802, 47.4259179 ], + [ 7.5626121, 47.4256574 ], + [ 7.5624363, 47.4253577 ], + [ 7.5623994, 47.4252716 ], + [ 7.562362, 47.4251026 ], + [ 7.5622837, 47.4246936 ], + [ 7.5622579, 47.424531 ], + [ 7.5622593, 47.4242652 ], + [ 7.5622826, 47.4241127 ], + [ 7.5623194, 47.4240006 ], + [ 7.5624163, 47.4238856 ], + [ 7.56263, 47.4236877 ], + [ 7.5627001, 47.4235696 ], + [ 7.5626975, 47.4234974 ], + [ 7.5626206, 47.4233294 ], + [ 7.5625897, 47.4232229 ], + [ 7.5625868, 47.4226345 ], + [ 7.5625308, 47.4223457 ], + [ 7.5625314, 47.4221193 ], + [ 7.5625051, 47.4218542 ], + [ 7.5624466, 47.4216124 ], + [ 7.5623616, 47.421302 ], + [ 7.5622457, 47.4208737 ], + [ 7.5621469, 47.4205939 ], + [ 7.562055, 47.4203135 ], + [ 7.5617712, 47.4195746 ], + [ 7.5615616, 47.4192008 ], + [ 7.5616921, 47.419165 ], + [ 7.5618332, 47.419133 ], + [ 7.5619771, 47.4191079 ], + [ 7.5618852, 47.418974 ], + [ 7.560916, 47.4189662 ], + [ 7.5607821, 47.4189309 ], + [ 7.5602929, 47.418802 ], + [ 7.5600732, 47.4188142 ], + [ 7.5599146, 47.418823 ], + [ 7.5597327, 47.4188331 ], + [ 7.5597338, 47.4188639 ], + [ 7.5597416, 47.4190425 ], + [ 7.559823, 47.4190954 ], + [ 7.5598827, 47.4191395 ], + [ 7.5599431, 47.4191919 ], + [ 7.5599994, 47.4192421 ], + [ 7.560043, 47.4192861 ], + [ 7.5600942, 47.4193451 ], + [ 7.5601365, 47.4194064 ], + [ 7.5601985, 47.4195003 ], + [ 7.5602788, 47.4196475 ], + [ 7.5603429, 47.4197732 ], + [ 7.5603549999999995, 47.4198035 ], + [ 7.5603648, 47.4198122 ], + [ 7.5603697, 47.4198239 ], + [ 7.5603783, 47.4198338 ], + [ 7.5603881, 47.4198432 ], + [ 7.5603991, 47.419852 ], + [ 7.5604113, 47.4198601 ], + [ 7.5604258, 47.4198667 ], + [ 7.5604356, 47.4198754 ], + [ 7.5604533, 47.4198795 ], + [ 7.560467, 47.4199035 ], + [ 7.5605366, 47.4200993 ], + [ 7.5604875, 47.4201058 ], + [ 7.5605288, 47.420245800000004 ], + [ 7.5605979, 47.4204594 ], + [ 7.5607269, 47.420818 ], + [ 7.5608273, 47.4210401 ], + [ 7.5608438, 47.4211079 ], + [ 7.5608445, 47.4211667 ], + [ 7.5608271, 47.4212323 ], + [ 7.5607856, 47.4213434 ], + [ 7.5607554, 47.4214563 ], + [ 7.5607369, 47.4215349 ], + [ 7.5607215, 47.4217483 ], + [ 7.5607006, 47.4219647 ], + [ 7.5606936000000005, 47.4221069 ], + [ 7.5606942, 47.422184 ], + [ 7.5607124, 47.4222987 ], + [ 7.560737, 47.4223762 ], + [ 7.5607835, 47.4224924 ], + [ 7.5608097, 47.4225712 ], + [ 7.5608186, 47.4226257 ], + [ 7.5608194, 47.4226704 ], + [ 7.5608061, 47.4228045 ], + [ 7.5608063, 47.4228606 ], + [ 7.5602675999999995, 47.4238802 ] + ], + [ + [ 7.5611397, 47.4214494 ], + [ 7.5613136, 47.4214402 ], + [ 7.5615986, 47.421556 ], + [ 7.5620648, 47.4220824 ], + [ 7.5620718, 47.4224149 ], + [ 7.5616468, 47.4224981 ], + [ 7.5610216999999995, 47.4226224 ], + [ 7.5609103, 47.4222576 ], + [ 7.5609235, 47.4217636 ], + [ 7.5610432, 47.4214621 ], + [ 7.5611397, 47.4214494 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns345", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Schällbächli", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Schällbächli", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Schällbächli", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Schällbächli", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.1959239, 46.4679959 ], + [ 7.1962883, 46.4678024 ], + [ 7.1963732, 46.4677645 ], + [ 7.1964374, 46.4677463 ], + [ 7.1965025, 46.4677387 ], + [ 7.1965441, 46.4677411 ], + [ 7.1966008, 46.467756 ], + [ 7.1972976, 46.4680845 ], + [ 7.1978456, 46.4684336 ], + [ 7.1980224, 46.4685319 ], + [ 7.1981135, 46.4685554 ], + [ 7.1983939, 46.4685661 ], + [ 7.1984592, 46.468576 ], + [ 7.1985167, 46.4685925 ], + [ 7.1985992, 46.4686317 ], + [ 7.1989278, 46.4688281 ], + [ 7.1990295, 46.4688798 ], + [ 7.1991202, 46.4689099 ], + [ 7.1994051, 46.4689857 ], + [ 7.199615, 46.4690533 ], + [ 7.1998686, 46.4691399 ], + [ 7.2003268, 46.4693123 ], + [ 7.2003814, 46.4693446 ], + [ 7.2004466, 46.469395 ], + [ 7.200781, 46.4697293 ], + [ 7.2009095, 46.4698314 ], + [ 7.2009819, 46.4698741 ], + [ 7.2010467, 46.4699025 ], + [ 7.2014602, 46.4700501 ], + [ 7.2015698, 46.470096 ], + [ 7.2016469, 46.4701423 ], + [ 7.201921, 46.4703303 ], + [ 7.2022611, 46.4704927 ], + [ 7.2023267, 46.4705419 ], + [ 7.2023982, 46.4706103 ], + [ 7.2026164, 46.470867 ], + [ 7.2027197, 46.4709402 ], + [ 7.2028365, 46.4710041 ], + [ 7.2029375, 46.4710414 ], + [ 7.2030263, 46.4710627 ], + [ 7.2031757, 46.4710783 ], + [ 7.2034209, 46.4711169 ], + [ 7.2036636, 46.471181 ], + [ 7.2039146, 46.4712859 ], + [ 7.204239, 46.471465 ], + [ 7.204594, 46.4717034 ], + [ 7.2050255, 46.4718761 ], + [ 7.2060959, 46.4721482 ], + [ 7.2063016, 46.4721405 ], + [ 7.2066275, 46.4720665 ], + [ 7.2067905, 46.4720075 ], + [ 7.2068986, 46.4719996 ], + [ 7.207169, 46.4720829 ], + [ 7.2075032, 46.472188 ], + [ 7.2077854, 46.472256 ], + [ 7.2086183, 46.4723477 ], + [ 7.2087797, 46.4723777 ], + [ 7.2093323, 46.4725434 ], + [ 7.2102296, 46.4727917 ], + [ 7.2115061, 46.4729814 ], + [ 7.2126526, 46.4731186 ], + [ 7.2144489, 46.4732419 ], + [ 7.2160095, 46.4730578 ], + [ 7.2168438, 46.472813 ], + [ 7.2175054, 46.4724626 ], + [ 7.2179835, 46.4720749 ], + [ 7.2186863, 46.4708556 ], + [ 7.2188736, 46.4705986 ], + [ 7.2192093, 46.4696808 ], + [ 7.2190458, 46.4692208 ], + [ 7.2191196, 46.4686812 ], + [ 7.2196273, 46.4680516 ], + [ 7.220298, 46.4676724 ], + [ 7.2209632, 46.4677025 ], + [ 7.2225006, 46.4677342 ], + [ 7.2228343, 46.4676197 ], + [ 7.2228371, 46.4669307 ], + [ 7.2225076, 46.4659819 ], + [ 7.2211389, 46.4654629 ], + [ 7.2197294, 46.4643978 ], + [ 7.2179901, 46.4631305 ], + [ 7.2179772, 46.4630963 ], + [ 7.2162097, 46.4627051 ], + [ 7.213944, 46.4619189 ], + [ 7.2115716, 46.4608356 ], + [ 7.2090704, 46.4600533 ], + [ 7.2076735, 46.459777 ], + [ 7.2070219, 46.4596479 ], + [ 7.2062404, 46.4597714 ], + [ 7.2046454, 46.4597098 ], + [ 7.2043905, 46.4594026 ], + [ 7.2040555, 46.45908 ], + [ 7.2026855, 46.4580183 ], + [ 7.2025127, 46.4578953 ], + [ 7.2022248, 46.4576356 ], + [ 7.2020216, 46.457386 ], + [ 7.2018365, 46.4574387 ], + [ 7.2016409, 46.457512 ], + [ 7.2013972, 46.4575862 ], + [ 7.2012017, 46.4576487 ], + [ 7.201095, 46.4576287 ], + [ 7.2009897, 46.4576096 ], + [ 7.2003372, 46.4574022 ], + [ 7.2000928, 46.4573351 ], + [ 7.1999707, 46.457262 ], + [ 7.2000273, 46.4571146 ], + [ 7.1997917, 46.4571267 ], + [ 7.1997336, 46.4570195 ], + [ 7.1994813, 46.4569578 ], + [ 7.1995045, 46.4567267 ], + [ 7.1995115, 46.456608 ], + [ 7.1995198, 46.4565009 ], + [ 7.1995122, 46.4564559 ], + [ 7.1994864, 46.4563992 ], + [ 7.1994136, 46.4563829 ], + [ 7.1991286, 46.4563661 ], + [ 7.1987943, 46.4563276 ], + [ 7.198575, 46.4564576 ], + [ 7.1984771, 46.4565203 ], + [ 7.1983392, 46.4565146 ], + [ 7.198087, 46.4564475 ], + [ 7.197728, 46.4563802 ], + [ 7.197231, 46.4563422 ], + [ 7.1969706, 46.4563597 ], + [ 7.1967428, 46.4563601 ], + [ 7.1964645, 46.4563037 ], + [ 7.196155, 46.4562374 ], + [ 7.1959509, 46.4561866 ], + [ 7.1957976, 46.456108 ], + [ 7.1956182, 46.4560689 ], + [ 7.1954049, 46.4560298 ], + [ 7.1951864, 46.4559906 ], + [ 7.1950068, 46.4559794 ], + [ 7.194835, 46.45598 ], + [ 7.1946566, 46.4559976 ], + [ 7.1945265, 46.4559865 ], + [ 7.1944199, 46.4559638 ], + [ 7.1942899, 46.4559302 ], + [ 7.194126, 46.4558912 ], + [ 7.1939724, 46.4559088 ], + [ 7.1938097, 46.4559085 ], + [ 7.1935727, 46.455926 ], + [ 7.1933606, 46.4559156 ], + [ 7.1932473, 46.4559208 ], + [ 7.1931741, 46.455989 ], + [ 7.1932309, 46.4560853 ], + [ 7.1932978, 46.4562708 ], + [ 7.1933462, 46.4565075 ], + [ 7.19338, 46.4568008 ], + [ 7.1934047, 46.4570887 ], + [ 7.193398, 46.4574162 ], + [ 7.1933502, 46.4576248 ], + [ 7.1932936, 46.4577722 ], + [ 7.1932284, 46.4577999 ], + [ 7.1930178, 46.4580261 ], + [ 7.1923079, 46.4578357 ], + [ 7.1922593, 46.4579372 ], + [ 7.1919822, 46.4578926 ], + [ 7.1917886, 46.458108 ], + [ 7.1918051, 46.4582088 ], + [ 7.1917563, 46.4583337 ], + [ 7.1916674, 46.4584235 ], + [ 7.1915861, 46.4585646 ], + [ 7.1915295, 46.4586832 ], + [ 7.1915291, 46.4587848 ], + [ 7.1915298, 46.4589207 ], + [ 7.1915708, 46.4590449 ], + [ 7.1915548, 46.4591465 ], + [ 7.1914582, 46.459203 ], + [ 7.191214, 46.4593725 ], + [ 7.1910516, 46.4595934 ], + [ 7.190881, 46.4598809 ], + [ 7.1906701, 46.4601692 ], + [ 7.1905492, 46.4604289 ], + [ 7.1904688, 46.4606491 ], + [ 7.1904107, 46.4608181 ], + [ 7.1903708, 46.4610051 ], + [ 7.1903792, 46.4611518 ], + [ 7.1903958, 46.4612301 ], + [ 7.1904706, 46.4613886 ], + [ 7.1905519, 46.4615345 ], + [ 7.1906086, 46.4616587 ], + [ 7.1906506, 46.4618621 ], + [ 7.1906512, 46.4620312 ], + [ 7.1906934, 46.4621888 ], + [ 7.1907501, 46.4623076 ], + [ 7.1908314, 46.4624706 ], + [ 7.1909243, 46.4626364 ], + [ 7.1910885, 46.462616 ], + [ 7.1913437, 46.4625896 ], + [ 7.1917359, 46.4625068 ], + [ 7.1923892, 46.4622806 ], + [ 7.1929832, 46.4621965 ], + [ 7.1937037, 46.4620505 ], + [ 7.1937586, 46.4622791 ], + [ 7.1939186, 46.4623055 ], + [ 7.1939155, 46.462427 ], + [ 7.1939955, 46.4625693 ], + [ 7.1940811, 46.4626576 ], + [ 7.1941588, 46.4627351 ], + [ 7.1944928, 46.4628555 ], + [ 7.194948, 46.4629447 ], + [ 7.1952568, 46.4628931 ], + [ 7.1953206, 46.462896 ], + [ 7.1953822, 46.4627936 ], + [ 7.1954552, 46.4627712 ], + [ 7.1955531, 46.4627193 ], + [ 7.1959781, 46.462865 ], + [ 7.1959732, 46.4628029 ], + [ 7.1960056, 46.4625511 ], + [ 7.1961377, 46.4624102 ], + [ 7.196269, 46.4624392 ], + [ 7.1962735, 46.4626021 ], + [ 7.1962326, 46.4627333 ], + [ 7.1963154, 46.4628351 ], + [ 7.1965552, 46.4630624 ], + [ 7.196923, 46.4631909 ], + [ 7.1971677, 46.4632175 ], + [ 7.197412, 46.4633026 ], + [ 7.1975646, 46.4635278 ], + [ 7.1976517, 46.4635505 ], + [ 7.1978482, 46.463568 ], + [ 7.1978273, 46.463881 ], + [ 7.1976322, 46.4647316 ], + [ 7.197268, 46.4655251 ], + [ 7.1967936, 46.4662176 ], + [ 7.1960999, 46.4670599 ], + [ 7.1955095, 46.4677684 ], + [ 7.1954624, 46.4681093 ], + [ 7.1955873, 46.4681203 ], + [ 7.1957007, 46.4681035 ], + [ 7.1958063, 46.468065 ], + [ 7.1959239, 46.4679959 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00016", + "country" : "CHE", + "name" : [ + { + "text" : "Pierreuse - Gummfluh", + "lang" : "de-CH" + }, + { + "text" : "Pierreuse - Gummfluh", + "lang" : "fr-CH" + }, + { + "text" : "Pierreuse - Gummfluh", + "lang" : "it-CH" + }, + { + "text" : "Pierreuse - Gummfluh", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "startDateTime" : "2024-11-15T00:00:00+01:00", + "endDateTime" : "2025-04-15T00:00:00+02:00" + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Generaldirektion für Umwelt", + "lang" : "de-CH" + }, + { + "text" : "Direction générale de l'environnement", + "lang" : "fr-CH" + }, + { + "text" : "Direzione generale dell'Ambiente", + "lang" : "it-CH" + }, + { + "text" : "Environment Department", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.dge@vd.ch", + "phone" : "0041213164422", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.616399, 46.4115361 ], + [ 8.6163906, 46.411395 ], + [ 8.6163715, 46.4112543 ], + [ 8.6163418, 46.4111145 ], + [ 8.6163016, 46.410976 ], + [ 8.6162509, 46.4108391 ], + [ 8.61619, 46.4107043 ], + [ 8.6161189, 46.4105718 ], + [ 8.6160379, 46.4104421 ], + [ 8.6159472, 46.4103155 ], + [ 8.6158471, 46.4101924 ], + [ 8.6157378, 46.410073 ], + [ 8.6156195, 46.4099578 ], + [ 8.6154928, 46.409847 ], + [ 8.6153578, 46.409741 ], + [ 8.615215, 46.4096399 ], + [ 8.6150648, 46.4095442 ], + [ 8.6149075, 46.4094541 ], + [ 8.6147436, 46.4093698 ], + [ 8.6145735, 46.4092915 ], + [ 8.6143978, 46.4092195 ], + [ 8.6142168, 46.4091539 ], + [ 8.6140312, 46.409095 ], + [ 8.6138413, 46.4090429 ], + [ 8.6136478, 46.4089978 ], + [ 8.6134511, 46.4089597 ], + [ 8.6132518, 46.4089288 ], + [ 8.6130504, 46.4089051 ], + [ 8.6128475, 46.4088887 ], + [ 8.6126437, 46.4088798 ], + [ 8.6124395, 46.4088782 ], + [ 8.6122354, 46.408884 ], + [ 8.612032, 46.4088972 ], + [ 8.6118299, 46.4089177 ], + [ 8.6116297, 46.4089455 ], + [ 8.6114318, 46.4089806 ], + [ 8.6112368, 46.4090227 ], + [ 8.6110453, 46.4090719 ], + [ 8.6108578, 46.4091279 ], + [ 8.6106748, 46.4091906 ], + [ 8.6104968, 46.4092599 ], + [ 8.6103242, 46.4093355 ], + [ 8.6101576, 46.4094172 ], + [ 8.6099974, 46.4095049 ], + [ 8.6098441, 46.4095983 ], + [ 8.6096981, 46.409697 ], + [ 8.6095597, 46.409801 ], + [ 8.6094294, 46.4099098 ], + [ 8.6093075, 46.4100231 ], + [ 8.6091943, 46.4101407 ], + [ 8.6090902, 46.4102623 ], + [ 8.6089954, 46.4103874 ], + [ 8.6089102, 46.4105159 ], + [ 8.6088349, 46.4106472 ], + [ 8.6087696, 46.4107811 ], + [ 8.6087145, 46.4109171 ], + [ 8.6086698, 46.411055 ], + [ 8.6086355, 46.4111943 ], + [ 8.6086119, 46.4113346 ], + [ 8.6085989, 46.4114756 ], + [ 8.6085966, 46.4116169 ], + [ 8.608605, 46.411758 ], + [ 8.6086241, 46.4118987 ], + [ 8.6086537, 46.4120385 ], + [ 8.608694, 46.412177 ], + [ 8.6087446, 46.4123139 ], + [ 8.6088055, 46.4124488 ], + [ 8.6088766, 46.4125812 ], + [ 8.6089576, 46.4127109 ], + [ 8.6090482, 46.4128375 ], + [ 8.6091484, 46.4129607 ], + [ 8.6092577, 46.41308 ], + [ 8.6093759, 46.4131953 ], + [ 8.6095026, 46.4133061 ], + [ 8.6096376, 46.4134121 ], + [ 8.6097804, 46.4135131 ], + [ 8.6099307, 46.4136088 ], + [ 8.610088, 46.413699 ], + [ 8.6102519, 46.4137833 ], + [ 8.6104219, 46.4138616 ], + [ 8.6105977, 46.4139336 ], + [ 8.6107786, 46.4139992 ], + [ 8.6109643, 46.4140581 ], + [ 8.6111542, 46.4141102 ], + [ 8.6113477, 46.4141554 ], + [ 8.6115444, 46.4141935 ], + [ 8.6117438, 46.4142244 ], + [ 8.6119452, 46.4142481 ], + [ 8.6121481, 46.4142644 ], + [ 8.6123519, 46.4142734 ], + [ 8.6125562, 46.414275 ], + [ 8.6127603, 46.4142691 ], + [ 8.6129637, 46.414256 ], + [ 8.6131658, 46.4142354 ], + [ 8.6133661, 46.4142076 ], + [ 8.613564, 46.4141726 ], + [ 8.6137589, 46.4141304 ], + [ 8.6139504, 46.4140813 ], + [ 8.614138, 46.4140252 ], + [ 8.614321, 46.4139625 ], + [ 8.614499, 46.4138932 ], + [ 8.6146716, 46.4138176 ], + [ 8.6148382, 46.4137359 ], + [ 8.6149984, 46.4136482 ], + [ 8.6151517, 46.4135548 ], + [ 8.6152977, 46.413456 ], + [ 8.6154361, 46.4133521 ], + [ 8.6155664, 46.4132433 ], + [ 8.6156883, 46.4131299 ], + [ 8.6158015, 46.4130123 ], + [ 8.6159056, 46.4128907 ], + [ 8.6160004, 46.4127656 ], + [ 8.6160856, 46.4126372 ], + [ 8.6161609, 46.4125058 ], + [ 8.6162262, 46.412372 ], + [ 8.6162812, 46.4122359 ], + [ 8.6163259, 46.412098 ], + [ 8.6163601, 46.4119587 ], + [ 8.6163838, 46.4118184 ], + [ 8.6163967, 46.4116774 ], + [ 8.616399, 46.4115361 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0086", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Peccia", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Peccia", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Peccia", + "lang" : "it-CH" + }, + { + "text" : "Substation Peccia", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.7136544, 47.1707051 ], + [ 8.7138592, 47.1706343 ], + [ 8.7140946, 47.1705239 ], + [ 8.7143969, 47.1704064 ], + [ 8.714673, 47.1702815 ], + [ 8.7153299, 47.1700705 ], + [ 8.7155702, 47.1699976 ], + [ 8.7164922, 47.1696601 ], + [ 8.7163408, 47.1693928 ], + [ 8.7161991, 47.1691483 ], + [ 8.7160428, 47.1691462 ], + [ 8.7159723, 47.1691502 ], + [ 8.7158801, 47.1691668 ], + [ 8.7158273, 47.1691808 ], + [ 8.7154918, 47.1692955 ], + [ 8.7154518, 47.1693104 ], + [ 8.7154148, 47.1693333 ], + [ 8.7153775, 47.1693605 ], + [ 8.715351, 47.1693873 ], + [ 8.7153357, 47.1694211 ], + [ 8.7152652, 47.169443 ], + [ 8.7135109, 47.1700581 ], + [ 8.7133559, 47.1701543 ], + [ 8.7134131, 47.170416 ], + [ 8.7136544, 47.1707051 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSXS002", + "country" : "CHE", + "name" : [ + { + "text" : "LSXS Schindellegi SZ (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSXS Schindellegi SZ (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSXS Schindellegi SZ (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSXS Schindellegi SZ (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Fuchs Helikopter", + "lang" : "de-CH" + }, + { + "text" : "Fuchs Helikopter", + "lang" : "fr-CH" + }, + { + "text" : "Fuchs Helikopter", + "lang" : "it-CH" + }, + { + "text" : "Fuchs Helikopter", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.fuchshelikopter.ch/en/", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.1088243, 46.6132972 ], + [ 7.1095266, 46.6131454 ], + [ 7.1100039, 46.6133006 ], + [ 7.1103284, 46.6123788 ], + [ 7.1101088, 46.6117849 ], + [ 7.1098669, 46.6113954 ], + [ 7.1098582, 46.6113995 ], + [ 7.1097294, 46.6111191 ], + [ 7.1096318, 46.6106341 ], + [ 7.1098011, 46.6103345 ], + [ 7.1096064, 46.6101879 ], + [ 7.1095889, 46.6101836 ], + [ 7.1090073, 46.6101528 ], + [ 7.1088289, 46.6102052 ], + [ 7.108035, 46.6101315 ], + [ 7.107863, 46.6100239 ], + [ 7.1071021, 46.6101883 ], + [ 7.1064885, 46.6098756 ], + [ 7.1061565, 46.6095191 ], + [ 7.1058807999999996, 46.6094231 ], + [ 7.1052576, 46.6096712 ], + [ 7.1046398, 46.6090505 ], + [ 7.1046351, 46.6090438 ], + [ 7.1045343, 46.6090948 ], + [ 7.1040085, 46.6092266 ], + [ 7.1033721, 46.609377 ], + [ 7.1025699, 46.609527 ], + [ 7.101879, 46.609563 ], + [ 7.1016536, 46.6098958 ], + [ 7.1016329, 46.609877 ], + [ 7.1009159, 46.6107181 ], + [ 7.1002215, 46.6115327 ], + [ 7.1000503, 46.6117335 ], + [ 7.0990256, 46.6121075 ], + [ 7.0984576, 46.6123148 ], + [ 7.0977814, 46.6125616 ], + [ 7.0954125, 46.6140704 ], + [ 7.0953735, 46.6141237 ], + [ 7.095138, 46.6142846 ], + [ 7.0952037, 46.6144925 ], + [ 7.0956297, 46.6150158 ], + [ 7.0958842, 46.6151044 ], + [ 7.0959622, 46.6153049 ], + [ 7.0960724, 46.6155883 ], + [ 7.096126, 46.6171923 ], + [ 7.0958676, 46.6177188 ], + [ 7.0962885, 46.6177505 ], + [ 7.1055342, 46.6208339 ], + [ 7.1054632, 46.6206254 ], + [ 7.1054635, 46.6205644 ], + [ 7.1054651, 46.6203178 ], + [ 7.1054666, 46.6203168 ], + [ 7.1055221, 46.6202788 ], + [ 7.1056898, 46.6201643 ], + [ 7.1058173, 46.6200772 ], + [ 7.1056118, 46.6199977 ], + [ 7.105531, 46.6199665 ], + [ 7.1055246, 46.6199106 ], + [ 7.1055171, 46.6198455 ], + [ 7.1055008, 46.6197027 ], + [ 7.1054538, 46.6195877 ], + [ 7.1053784, 46.619403 ], + [ 7.1053751, 46.6193948 ], + [ 7.1054181, 46.6192103 ], + [ 7.1055389, 46.6186922 ], + [ 7.1058273, 46.6184514 ], + [ 7.1056443, 46.6171107 ], + [ 7.1055226, 46.6161656 ], + [ 7.1056542, 46.6155069 ], + [ 7.1061672, 46.615047 ], + [ 7.107064, 46.6143905 ], + [ 7.1076099, 46.613755 ], + [ 7.1088243, 46.6132972 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "WZV0021", + "country" : "CHE", + "name" : [ + { + "text" : "Wasser- und Zugvogelreservat Lac de la Gruyère à Broc", + "lang" : "de-CH" + }, + { + "text" : "Réserve d'oiseaux d'eau et de migrateurs Lac de la Gruyère à Broc", + "lang" : "fr-CH" + }, + { + "text" : "Riserva di uccelli acquatici e migratori Lac de la Gruyère à Broc", + "lang" : "it-CH" + }, + { + "text" : "Water Bird and Migratory Bird Reserves Lac de la Gruyère à Broc", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5246839, 47.4485394 ], + [ 7.5247571, 47.4486984 ], + [ 7.5250867, 47.4494135 ], + [ 7.5251137, 47.4494721 ], + [ 7.5251937, 47.4496456 ], + [ 7.5252155, 47.4496483 ], + [ 7.5252375, 47.4496504 ], + [ 7.5252596, 47.4496519 ], + [ 7.5252818, 47.4496528 ], + [ 7.525304, 47.4496531 ], + [ 7.5253262, 47.4496527 ], + [ 7.5253484, 47.4496518 ], + [ 7.5253705, 47.4496503 ], + [ 7.5253925, 47.4496482 ], + [ 7.5254128, 47.4496467 ], + [ 7.5254332, 47.4496459 ], + [ 7.5254536, 47.4496457 ], + [ 7.5254741, 47.4496461 ], + [ 7.5254944, 47.4496472 ], + [ 7.5255147000000004, 47.449649 ], + [ 7.5255348, 47.4496514 ], + [ 7.5255548, 47.4496544 ], + [ 7.5255745, 47.4496581 ], + [ 7.5255939, 47.4496624 ], + [ 7.525613, 47.4496673 ], + [ 7.5256318, 47.4496728 ], + [ 7.5256501, 47.4496788 ], + [ 7.5256605, 47.4496823 ], + [ 7.5256703, 47.4496864 ], + [ 7.5256796999999995, 47.449691 ], + [ 7.5256884, 47.4496962 ], + [ 7.5256964, 47.4497018 ], + [ 7.5257038, 47.4497078 ], + [ 7.5257104, 47.4497142 ], + [ 7.5257142, 47.4497187 ], + [ 7.5257161, 47.449721 ], + [ 7.525721, 47.4497281 ], + [ 7.5257251, 47.4497355 ], + [ 7.5257281, 47.449743 ], + [ 7.5257303, 47.4497507 ], + [ 7.5257315, 47.4497585 ], + [ 7.5257318, 47.4497663 ], + [ 7.525731, 47.4497741 ], + [ 7.5257293, 47.4497819 ], + [ 7.5257267, 47.4497895 ], + [ 7.5257231, 47.449797 ], + [ 7.5257187, 47.4498042 ], + [ 7.5257176, 47.4498055 ], + [ 7.5257133, 47.4498111 ], + [ 7.5257071, 47.4498177 ], + [ 7.5257002, 47.449824 ], + [ 7.5256924, 47.4498298 ], + [ 7.5256239, 47.4498753 ], + [ 7.5256226, 47.4498761 ], + [ 7.5254674, 47.449979 ], + [ 7.5253403, 47.450069 ], + [ 7.5252193, 47.4501621 ], + [ 7.5252019, 47.4501758 ], + [ 7.5251851, 47.4501899 ], + [ 7.5251689, 47.4502042 ], + [ 7.5251532, 47.4502189 ], + [ 7.5251382, 47.4502338 ], + [ 7.5251239, 47.450249 ], + [ 7.5251101, 47.4502645 ], + [ 7.525097, 47.4502803 ], + [ 7.5250846, 47.4502963 ], + [ 7.5250804, 47.4503035 ], + [ 7.525077, 47.4503109 ], + [ 7.5250746, 47.4503185 ], + [ 7.5250732, 47.4503261 ], + [ 7.5250727, 47.4503339 ], + [ 7.5250731, 47.4503416 ], + [ 7.5250745, 47.4503493 ], + [ 7.5250768, 47.4503569 ], + [ 7.5250801, 47.4503643 ], + [ 7.5250842, 47.4503715 ], + [ 7.5250892, 47.4503785 ], + [ 7.5250951, 47.4503851 ], + [ 7.5251017000000004, 47.4503914 ], + [ 7.5251092, 47.4503974 ], + [ 7.5251173, 47.4504028 ], + [ 7.525126, 47.4504078 ], + [ 7.5251353, 47.450412299999996 ], + [ 7.5251451, 47.4504162 ], + [ 7.5251554, 47.4504196 ], + [ 7.5251661, 47.4504224 ], + [ 7.5251771, 47.4504245 ], + [ 7.5251955, 47.4504267 ], + [ 7.5252142, 47.4504283 ], + [ 7.5252329, 47.4504292 ], + [ 7.5252516, 47.4504296 ], + [ 7.5252703, 47.4504293 ], + [ 7.5252891, 47.4504283 ], + [ 7.5253077, 47.4504268 ], + [ 7.5253262, 47.4504246 ], + [ 7.5253445, 47.4504219 ], + [ 7.5253626, 47.4504185 ], + [ 7.5253946, 47.4504121 ], + [ 7.5254265, 47.4504052 ], + [ 7.5254581, 47.4503978 ], + [ 7.5254895, 47.4503899 ], + [ 7.5255205, 47.4503815 ], + [ 7.5255512, 47.4503725 ], + [ 7.5255816, 47.4503631 ], + [ 7.5256117, 47.4503531 ], + [ 7.5256414, 47.4503427 ], + [ 7.5258389999999995, 47.4502722 ], + [ 7.5261348, 47.4501506 ], + [ 7.5267505, 47.449928 ], + [ 7.5267726, 47.4499195 ], + [ 7.5267943, 47.4499105 ], + [ 7.5268154, 47.4499009 ], + [ 7.526836, 47.4498907 ], + [ 7.526856, 47.4498801 ], + [ 7.5268754, 47.4498689 ], + [ 7.5268912, 47.4498591 ], + [ 7.5268942, 47.4498573 ], + [ 7.5269123, 47.4498451 ], + [ 7.5269297, 47.4498326 ], + [ 7.5269465, 47.4498195 ], + [ 7.5269624, 47.4498061 ], + [ 7.5269777, 47.4497923 ], + [ 7.5269878, 47.4497827 ], + [ 7.5269986, 47.4497736 ], + [ 7.5270101, 47.4497648 ], + [ 7.5270223, 47.4497564 ], + [ 7.5270352, 47.4497485 ], + [ 7.5270486, 47.4497411 ], + [ 7.5270624999999995, 47.4497341 ], + [ 7.527077, 47.4497277 ], + [ 7.527092, 47.4497218 ], + [ 7.5271074, 47.4497164 ], + [ 7.5271232, 47.4497115 ], + [ 7.5271394, 47.4497073 ], + [ 7.5271558, 47.4497036 ], + [ 7.5271725, 47.4497005 ], + [ 7.5271895, 47.449698 ], + [ 7.5272065999999995, 47.4496961 ], + [ 7.5272238, 47.4496948 ], + [ 7.5272411, 47.4496942 ], + [ 7.5272584, 47.4496941 ], + [ 7.5275856999999995, 47.4497056 ], + [ 7.5276092, 47.4497067 ], + [ 7.5276303, 47.4497071 ], + [ 7.5276327, 47.4497071 ], + [ 7.5276347, 47.4497071 ], + [ 7.5276562, 47.449707 ], + [ 7.5276713, 47.4497065 ], + [ 7.5276689999999995, 47.4496728 ], + [ 7.5276855000000005, 47.449601 ], + [ 7.5277345, 47.4495854 ], + [ 7.527837, 47.4495664 ], + [ 7.5281217, 47.449512 ], + [ 7.5284873999999995, 47.4494248 ], + [ 7.5285583, 47.4493978 ], + [ 7.5286335, 47.4493784 ], + [ 7.5287264, 47.4493787 ], + [ 7.5293338, 47.4492527 ], + [ 7.5293247, 47.4493665 ], + [ 7.5294022, 47.4493648 ], + [ 7.5294754, 47.4493501 ], + [ 7.5295711, 47.4493168 ], + [ 7.529626, 47.4493154 ], + [ 7.5296465, 47.4492034 ], + [ 7.5299029, 47.449206 ], + [ 7.5303415000000005, 47.4491838 ], + [ 7.5308811, 47.4491526 ], + [ 7.5308821, 47.4492066 ], + [ 7.5308842, 47.4493157 ], + [ 7.5311993, 47.4492994 ], + [ 7.5313623, 47.449298 ], + [ 7.5315182, 47.4493072 ], + [ 7.531721, 47.449343 ], + [ 7.5319108, 47.4493511 ], + [ 7.5319852, 47.4493689 ], + [ 7.5320241, 47.4493781 ], + [ 7.5320264, 47.4493653 ], + [ 7.5320773, 47.4492591 ], + [ 7.5322186, 47.4491528 ], + [ 7.5325463, 47.449049 ], + [ 7.5332713, 47.4488192 ], + [ 7.5338973, 47.4488473 ], + [ 7.5341109, 47.4487649 ], + [ 7.5348218, 47.4485246 ], + [ 7.5349958, 47.4491484 ], + [ 7.5350009, 47.4491668 ], + [ 7.5350304, 47.4492725 ], + [ 7.5350311, 47.4492752 ], + [ 7.5351040000000005, 47.4495363 ], + [ 7.5351068, 47.4495416 ], + [ 7.5351424, 47.4495316 ], + [ 7.5351783, 47.4495221 ], + [ 7.5352145, 47.4495131 ], + [ 7.535251, 47.4495047 ], + [ 7.5352878, 47.4494969 ], + [ 7.5353248, 47.4494896 ], + [ 7.535362, 47.4494828 ], + [ 7.5353994, 47.4494767 ], + [ 7.5354341, 47.4494705 ], + [ 7.5354686, 47.4494637 ], + [ 7.5355028, 47.4494564 ], + [ 7.5355367, 47.4494484 ], + [ 7.5355703, 47.4494398 ], + [ 7.5356035, 47.4494306 ], + [ 7.5356364, 47.4494209 ], + [ 7.5356689, 47.4494105 ], + [ 7.5357009, 47.4493996 ], + [ 7.5357326, 47.4493881 ], + [ 7.5357638, 47.4493761 ], + [ 7.5357945, 47.4493635 ], + [ 7.5358247, 47.4493504 ], + [ 7.5358544, 47.4493367 ], + [ 7.5358835, 47.4493225 ], + [ 7.5359121, 47.4493078 ], + [ 7.5359402, 47.4492926 ], + [ 7.5359691, 47.4492743 ], + [ 7.5359986, 47.4492564 ], + [ 7.5360287, 47.449239 ], + [ 7.5360594, 47.4492221 ], + [ 7.5360906, 47.4492057 ], + [ 7.5361224, 47.4491897 ], + [ 7.5361547, 47.4491743 ], + [ 7.5364406, 47.4490523 ], + [ 7.536609, 47.448971 ], + [ 7.5368109, 47.448866 ], + [ 7.5368481, 47.4488459 ], + [ 7.5368859, 47.4488263 ], + [ 7.5369242, 47.4488071 ], + [ 7.536963, 47.4487884 ], + [ 7.5370023, 47.4487701 ], + [ 7.5370421, 47.4487523 ], + [ 7.5370823, 47.448735 ], + [ 7.5371229, 47.4487182 ], + [ 7.537164, 47.4487019 ], + [ 7.5372053, 47.4486834 ], + [ 7.537246, 47.4486645 ], + [ 7.5372863, 47.448645 ], + [ 7.537326, 47.4486251 ], + [ 7.5373652, 47.4486046 ], + [ 7.5374038, 47.4485837 ], + [ 7.5374419, 47.4485624 ], + [ 7.5374793, 47.4485405 ], + [ 7.5375034, 47.4485265 ], + [ 7.5375281, 47.448513 ], + [ 7.5375533, 47.4485 ], + [ 7.5375791, 47.4484874 ], + [ 7.5376054, 47.4484754 ], + [ 7.5376321, 47.4484639 ], + [ 7.5376594, 47.4484529 ], + [ 7.5376871, 47.4484424 ], + [ 7.5377152, 47.4484324 ], + [ 7.5377437, 47.448423 ], + [ 7.5377726, 47.4484142 ], + [ 7.5377891, 47.4484091 ], + [ 7.5378051, 47.4484034 ], + [ 7.537807, 47.4484027 ], + [ 7.5378117, 47.4484008 ], + [ 7.5378206, 47.4483972 ], + [ 7.5378357000000005, 47.4483905 ], + [ 7.5378503, 47.4483832 ], + [ 7.5378642, 47.4483755 ], + [ 7.5378776, 47.4483672 ], + [ 7.5378903, 47.4483585 ], + [ 7.5379024, 47.4483494 ], + [ 7.5379342000000005, 47.4483197 ], + [ 7.5380476, 47.4481757 ], + [ 7.5381286, 47.4480436 ], + [ 7.5383040999999995, 47.4477431 ], + [ 7.5383153, 47.4477199 ], + [ 7.5383256, 47.4476965 ], + [ 7.538335, 47.447673 ], + [ 7.5383436, 47.4476493 ], + [ 7.5383513, 47.4476254 ], + [ 7.5383581, 47.4476015 ], + [ 7.5383641, 47.4475774 ], + [ 7.538368, 47.4475585 ], + [ 7.5383396000000005, 47.4475503 ], + [ 7.5369406, 47.4471457 ], + [ 7.5368864, 47.4471316 ], + [ 7.5366155, 47.4471429 ], + [ 7.5363514, 47.447106 ], + [ 7.5363259, 47.447179 ], + [ 7.53603, 47.447585 ], + [ 7.5355308999999995, 47.4480956 ], + [ 7.5346277, 47.4482017 ], + [ 7.5338626, 47.4481623 ], + [ 7.5330783, 47.4481474 ], + [ 7.5324417, 47.4480933 ], + [ 7.5323267, 47.4480836 ], + [ 7.5323228, 47.4478514 ], + [ 7.5322502, 47.447851 ], + [ 7.5315517, 47.4478467 ], + [ 7.5315358, 47.4481036 ], + [ 7.529832, 47.4480963 ], + [ 7.5298304, 47.4480473 ], + [ 7.5298303, 47.4480421 ], + [ 7.5298005, 47.4480123 ], + [ 7.5297586, 47.4480102 ], + [ 7.5292993, 47.4480696 ], + [ 7.5289158, 47.4480793 ], + [ 7.5280278, 47.4482534 ], + [ 7.527559, 47.4482153 ], + [ 7.5268051, 47.4483071 ], + [ 7.5262439, 47.4483648 ], + [ 7.5253998, 47.448433 ], + [ 7.5253001, 47.4483597 ], + [ 7.5246839, 47.4485394 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns020", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Chlus", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Chlus", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Chlus", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Chlus", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5988712, 47.52359 ], + [ 7.5988653, 47.5234488 ], + [ 7.5988485, 47.523308 ], + [ 7.5988209, 47.523168 ], + [ 7.5987825, 47.5230292 ], + [ 7.5987334, 47.5228919 ], + [ 7.5986737, 47.5227565 ], + [ 7.5986037, 47.5226235 ], + [ 7.5985235, 47.5224931 ], + [ 7.5984334, 47.5223657 ], + [ 7.5983335, 47.5222417 ], + [ 7.5982242, 47.5221214 ], + [ 7.5981057, 47.5220052 ], + [ 7.5979784, 47.5218933 ], + [ 7.5978427, 47.521786 ], + [ 7.5976988, 47.5216838 ], + [ 7.5975472, 47.5215867 ], + [ 7.5973884, 47.5214952 ], + [ 7.5972227, 47.5214094 ], + [ 7.5970506, 47.5213297 ], + [ 7.5968726, 47.5212561 ], + [ 7.5966891, 47.5211889 ], + [ 7.5965007, 47.5211284 ], + [ 7.5963079, 47.5210746 ], + [ 7.5961112, 47.5210277 ], + [ 7.5959111, 47.5209879 ], + [ 7.5957082, 47.5209552 ], + [ 7.5955031, 47.520929699999996 ], + [ 7.5952963, 47.5209115 ], + [ 7.5950884, 47.5209007 ], + [ 7.5948799000000005, 47.5208973 ], + [ 7.5946715000000005, 47.5209013 ], + [ 7.5944636, 47.5209127 ], + [ 7.5942568999999995, 47.5209314 ], + [ 7.5940519, 47.5209574 ], + [ 7.5938493000000005, 47.5209906 ], + [ 7.5936494, 47.521031 ], + [ 7.593453, 47.5210784 ], + [ 7.5932604999999995, 47.5211327 ], + [ 7.5930724, 47.5211938 ], + [ 7.5928894, 47.5212615 ], + [ 7.5927118, 47.5213355 ], + [ 7.5925401, 47.5214157 ], + [ 7.5923749, 47.521502 ], + [ 7.5922166, 47.5215939 ], + [ 7.5920656, 47.5216913 ], + [ 7.5919224, 47.521794 ], + [ 7.5917873, 47.5219016 ], + [ 7.5916606, 47.5220138 ], + [ 7.5915429, 47.5221304 ], + [ 7.5914342, 47.522251 ], + [ 7.5913351, 47.5223752 ], + [ 7.5912457, 47.5225029 ], + [ 7.5911663, 47.5226335 ], + [ 7.5910969999999995, 47.5227667 ], + [ 7.5910382, 47.5229022 ], + [ 7.5909899, 47.5230397 ], + [ 7.5909523, 47.5231786 ], + [ 7.5909255, 47.5233187 ], + [ 7.5909095, 47.5234595 ], + [ 7.5909045, 47.5236007 ], + [ 7.5909103, 47.523742 ], + [ 7.5909271, 47.5238828 ], + [ 7.5909547, 47.5240228 ], + [ 7.5909931, 47.5241616 ], + [ 7.5910422, 47.5242989 ], + [ 7.5911018, 47.5244343 ], + [ 7.5911718, 47.5245673 ], + [ 7.591252, 47.5246977 ], + [ 7.5913421, 47.5248251 ], + [ 7.591442, 47.5249491 ], + [ 7.5915513, 47.5250694 ], + [ 7.5916698, 47.5251857 ], + [ 7.5917971, 47.5252976 ], + [ 7.5919328, 47.5254048 ], + [ 7.5920767, 47.5255071 ], + [ 7.5922282, 47.5256041 ], + [ 7.5923871, 47.5256957 ], + [ 7.5925528, 47.5257814 ], + [ 7.5927249, 47.5258612 ], + [ 7.5929029, 47.5259348 ], + [ 7.5930864, 47.526002 ], + [ 7.5932748, 47.5260625 ], + [ 7.5934676, 47.5261163 ], + [ 7.5936644, 47.5261632 ], + [ 7.5938644, 47.5262031 ], + [ 7.5940673, 47.5262358 ], + [ 7.5942725, 47.5262612 ], + [ 7.5944793, 47.5262794 ], + [ 7.5946872, 47.5262902 ], + [ 7.5948957, 47.5262936 ], + [ 7.5951042, 47.5262896 ], + [ 7.5953121, 47.5262783 ], + [ 7.5955188, 47.5262596 ], + [ 7.5957238, 47.526233500000004 ], + [ 7.5959265, 47.5262003 ], + [ 7.5961263, 47.5261599 ], + [ 7.5963228, 47.526112499999996 ], + [ 7.5965153, 47.5260582 ], + [ 7.5967033, 47.5259971 ], + [ 7.5968864, 47.5259294 ], + [ 7.597064, 47.5258554 ], + [ 7.5972357, 47.5257751 ], + [ 7.5974009, 47.5256889 ], + [ 7.5975592, 47.525597 ], + [ 7.5977102, 47.5254995 ], + [ 7.5978534, 47.5253969 ], + [ 7.5979885, 47.5252893 ], + [ 7.5981152, 47.525177 ], + [ 7.5982329, 47.5250604 ], + [ 7.5983415, 47.5249399 ], + [ 7.5984407, 47.5248156 ], + [ 7.5985301, 47.524688 ], + [ 7.5986095, 47.5245573 ], + [ 7.5986787, 47.5244241 ], + [ 7.5987376, 47.5242886 ], + [ 7.5987858, 47.5241511 ], + [ 7.5988234, 47.5240122 ], + [ 7.5988502, 47.5238721 ], + [ 7.5988662, 47.5237313 ], + [ 7.5988712, 47.52359 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VZK0001", + "country" : "CHE", + "name" : [ + { + "text" : "Vollzugszentrum Klosterfiechten", + "lang" : "de-CH" + }, + { + "text" : "Vollzugszentrum Klosterfiechten", + "lang" : "fr-CH" + }, + { + "text" : "Vollzugszentrum Klosterfiechten", + "lang" : "it-CH" + }, + { + "text" : "Vollzugszentrum Klosterfiechten", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Vollzugszentrum Klosterfiechten", + "lang" : "de-CH" + }, + { + "text" : "Vollzugszentrum Klosterfiechten", + "lang" : "fr-CH" + }, + { + "text" : "Vollzugszentrum Klosterfiechten", + "lang" : "it-CH" + }, + { + "text" : "Vollzugszentrum Klosterfiechten", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Co-Leitung", + "lang" : "de-CH" + }, + { + "text" : "Co-Leitung", + "lang" : "fr-CH" + }, + { + "text" : "Co-Leitung", + "lang" : "it-CH" + }, + { + "text" : "Co-Leitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Daniel Beyeler", + "lang" : "de-CH" + }, + { + "text" : "Daniel Beyeler", + "lang" : "fr-CH" + }, + { + "text" : "Daniel Beyeler", + "lang" : "it-CH" + }, + { + "text" : "Daniel Beyeler", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.bdm.bs.ch/Ueber-uns/Organisation/Amt-fuer-Justizvollzug/vollzugszentrum-klosterfiechten.html", + "email" : "daniel.beyeler@jsd.bs.ch", + "phone" : "0041613657575", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8345344, 47.3750375 ], + [ 7.8345792, 47.3750944 ], + [ 7.8349606, 47.3752674 ], + [ 7.8353421, 47.3754626 ], + [ 7.8354308, 47.3754766 ], + [ 7.8355005, 47.3754352 ], + [ 7.8355024, 47.3753908 ], + [ 7.8351651, 47.3751859 ], + [ 7.8347884, 47.3750097 ], + [ 7.8346179, 47.3749833 ], + [ 7.8345344, 47.3750375 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns198", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Hecken-Komplex Schmutzberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Hecken-Komplex Schmutzberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Hecken-Komplex Schmutzberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Hecken-Komplex Schmutzberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7355615, 47.3933685 ], + [ 7.7355205, 47.3933562 ], + [ 7.7354799, 47.3933435 ], + [ 7.7353296, 47.3932955 ], + [ 7.7352942, 47.3932844 ], + [ 7.7352584, 47.393274 ], + [ 7.7352223, 47.3932642 ], + [ 7.7351859, 47.393255 ], + [ 7.7351491, 47.3932463 ], + [ 7.735112, 47.3932383 ], + [ 7.7350746, 47.393231 ], + [ 7.735037, 47.3932242 ], + [ 7.7349992, 47.3932181 ], + [ 7.7349611, 47.3932126 ], + [ 7.7349229, 47.3932077 ], + [ 7.7348845, 47.3932035 ], + [ 7.7348459, 47.3931999 ], + [ 7.7348072, 47.3931969 ], + [ 7.7347684999999995, 47.3931946 ], + [ 7.7347297, 47.393193 ], + [ 7.7346908, 47.3931919 ], + [ 7.7346519, 47.3931916 ], + [ 7.7346129999999995, 47.3931918 ], + [ 7.7345741, 47.3931928 ], + [ 7.7343106, 47.3932012 ], + [ 7.7342421, 47.3932038 ], + [ 7.7341738, 47.3932069 ], + [ 7.7341055, 47.3932106 ], + [ 7.7340373, 47.393215 ], + [ 7.7339690999999995, 47.3932199 ], + [ 7.7339011, 47.3932255 ], + [ 7.7338952, 47.393226 ], + [ 7.7338332, 47.3932317 ], + [ 7.7337708, 47.3932379 ], + [ 7.7337085, 47.3932447 ], + [ 7.7336463, 47.393252 ], + [ 7.7335843, 47.3932598 ], + [ 7.7335225, 47.3932681 ], + [ 7.7334607, 47.3932769 ], + [ 7.7333992, 47.3932862 ], + [ 7.7330116, 47.3933441 ], + [ 7.7329608, 47.3933515 ], + [ 7.7329099, 47.3933586 ], + [ 7.7328589, 47.3933653 ], + [ 7.7328078, 47.3933718 ], + [ 7.7325403, 47.3934046 ], + [ 7.7314419999999995, 47.3935419 ], + [ 7.7310298, 47.3935999 ], + [ 7.7308689, 47.3939064 ], + [ 7.7307266, 47.3941588 ], + [ 7.7306127, 47.3943822 ], + [ 7.7305029, 47.3949144 ], + [ 7.7305274, 47.3949427 ], + [ 7.7306954999999995, 47.3951285 ], + [ 7.730817, 47.3953066 ], + [ 7.7309351, 47.3954826 ], + [ 7.7313086, 47.3955005 ], + [ 7.7316479000000005, 47.3955178 ], + [ 7.7318784, 47.3955109 ], + [ 7.7321738, 47.39541 ], + [ 7.7325939, 47.3953354 ], + [ 7.7330137, 47.3952691 ], + [ 7.7333903, 47.3952244 ], + [ 7.7341153, 47.3950438 ], + [ 7.7342096, 47.3950195 ], + [ 7.7345486999999995, 47.3948963 ], + [ 7.7348662, 47.3947838 ], + [ 7.7351539, 47.3946954 ], + [ 7.7353727, 47.39462 ], + [ 7.7355542, 47.3945601 ], + [ 7.7358493, 47.39446 ], + [ 7.7362265, 47.3942678 ], + [ 7.7364817, 47.394129 ], + [ 7.7365185, 47.3941045 ], + [ 7.7364766, 47.3940823 ], + [ 7.7362628, 47.3939691 ], + [ 7.7361537, 47.3939112 ], + [ 7.7363824999999995, 47.3935705 ], + [ 7.7360866, 47.3934953 ], + [ 7.7357705, 47.3934227 ], + [ 7.7357282, 47.3934128 ], + [ 7.7356862, 47.3934024 ], + [ 7.7356443, 47.3933916 ], + [ 7.7356028, 47.3933802 ], + [ 7.7355615, 47.3933685 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns334", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Leisenberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Leisenberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Leisenberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Leisenberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.5114906, 46.3365985 ], + [ 9.5114992, 46.3366141 ], + [ 9.5115822, 46.3367431 ], + [ 9.5116749, 46.336869 ], + [ 9.5117769, 46.3369914 ], + [ 9.5118881, 46.3371098 ], + [ 9.512008, 46.3372241 ], + [ 9.5121364, 46.3373339 ], + [ 9.5122729, 46.3374389 ], + [ 9.5124172, 46.3375387 ], + [ 9.5125689, 46.3376333 ], + [ 9.5127274, 46.3377221 ], + [ 9.5128925, 46.3378052 ], + [ 9.5130636, 46.3378821 ], + [ 9.5132403, 46.3379527 ], + [ 9.5134221, 46.3380168 ], + [ 9.5136084, 46.3380742 ], + [ 9.5137989, 46.3381248 ], + [ 9.5139929, 46.3381685 ], + [ 9.51419, 46.338205 ], + [ 9.5143895, 46.3382343 ], + [ 9.514591, 46.3382564 ], + [ 9.5147939, 46.3382711 ], + [ 9.5149976, 46.3382785 ], + [ 9.5152016, 46.3382784 ], + [ 9.5154053, 46.338271 ], + [ 9.515608199999999, 46.338256200000004 ], + [ 9.5158096, 46.338234 ], + [ 9.5160092, 46.3382046 ], + [ 9.5162062, 46.338168 ], + [ 9.5164002, 46.3381243 ], + [ 9.5165906, 46.3380736 ], + [ 9.5167769, 46.3380161 ], + [ 9.5169586, 46.3379519 ], + [ 9.5171353, 46.3378813 ], + [ 9.5173063, 46.3378043 ], + [ 9.5174713, 46.3377212 ], + [ 9.5176298, 46.3376322 ], + [ 9.5177813, 46.3375377 ], + [ 9.5179255, 46.3374377 ], + [ 9.518062, 46.3373327 ], + [ 9.5181903, 46.3372229 ], + [ 9.5183101, 46.3371085 ], + [ 9.5184212, 46.33699 ], + [ 9.5185231, 46.3368676 ], + [ 9.5186157, 46.3367417 ], + [ 9.5186986, 46.3366126 ], + [ 9.5187716, 46.3364807 ], + [ 9.5188346, 46.3363463 ], + [ 9.5188873, 46.3362098 ], + [ 9.5189296, 46.3360716 ], + [ 9.5189615, 46.3359321 ], + [ 9.5189827, 46.3357916 ], + [ 9.5189933, 46.3356505 ], + [ 9.5189933, 46.3355092 ], + [ 9.5189825, 46.3353681 ], + [ 9.5189611, 46.3352276 ], + [ 9.5189292, 46.335088 ], + [ 9.5188867, 46.3349498 ], + [ 9.5188338, 46.3348134 ], + [ 9.5187707, 46.334679 ], + [ 9.5186976, 46.3345471 ], + [ 9.5186145, 46.3344181 ], + [ 9.5185219, 46.3342922 ], + [ 9.5184198, 46.3341699 ], + [ 9.5183087, 46.3340514 ], + [ 9.5181887, 46.3339371 ], + [ 9.5180603, 46.3338274 ], + [ 9.5179238, 46.3337224 ], + [ 9.5177795, 46.3336225 ], + [ 9.5176279, 46.333528 ], + [ 9.5174693, 46.3334391 ], + [ 9.5173043, 46.3333561 ], + [ 9.5171332, 46.3332792 ], + [ 9.5169565, 46.3332086 ], + [ 9.5167747, 46.3331445 ], + [ 9.5165883, 46.3330871 ], + [ 9.5163979, 46.3330365 ], + [ 9.5162039, 46.3329929 ], + [ 9.5160069, 46.3329563 ], + [ 9.5158073, 46.332927 ], + [ 9.5156058, 46.332905 ], + [ 9.515403, 46.3328902 ], + [ 9.5151993, 46.3328829 ], + [ 9.5149953, 46.3328829 ], + [ 9.5147916, 46.3328904 ], + [ 9.5145888, 46.3329052 ], + [ 9.5143873, 46.3329273 ], + [ 9.5141878, 46.3329567 ], + [ 9.5139908, 46.3329933 ], + [ 9.5137969, 46.333037 ], + [ 9.5136065, 46.3330877 ], + [ 9.5135771, 46.3330967 ], + [ 9.5135383, 46.3331299 ], + [ 9.5135339, 46.3331803 ], + [ 9.513565700000001, 46.3333831 ], + [ 9.5135028, 46.3338463 ], + [ 9.5135208, 46.334177 ], + [ 9.5135737, 46.334315 ], + [ 9.5135903, 46.3345536 ], + [ 9.513829, 46.3353116 ], + [ 9.5138119, 46.335468 ], + [ 9.513781, 46.3355314 ], + [ 9.5133572, 46.3355996 ], + [ 9.5130589, 46.3356565 ], + [ 9.512666, 46.335828 ], + [ 9.5126067, 46.3358968 ], + [ 9.5123279, 46.3360539 ], + [ 9.5121544, 46.3363552 ], + [ 9.5116209, 46.3365031 ], + [ 9.5114906, 46.3365985 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0022", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Castasegna", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Castasegna", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Castasegna", + "lang" : "it-CH" + }, + { + "text" : "Substation Castasegna", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.666128, 47.4968724 ], + [ 7.6666274, 47.4974991 ], + [ 7.6668861, 47.4978698 ], + [ 7.6672308000000005, 47.498362 ], + [ 7.6673282, 47.4988709 ], + [ 7.6673741, 47.4996154 ], + [ 7.6674261, 47.4997652 ], + [ 7.6679564, 47.4995194 ], + [ 7.6686926, 47.4992928 ], + [ 7.6694184, 47.4990592 ], + [ 7.6699058, 47.4989315 ], + [ 7.6703168, 47.4988106 ], + [ 7.6700821, 47.4986537 ], + [ 7.6697302, 47.4984183 ], + [ 7.6697283, 47.4984171 ], + [ 7.6695665, 47.4983105 ], + [ 7.6687433, 47.4977661 ], + [ 7.6680682000000004, 47.4974811 ], + [ 7.6674175, 47.4972065 ], + [ 7.666128, 47.4968724 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr058", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Ebnethölzli", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Ebnethölzli", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Ebnethölzli", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Ebnethölzli", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.0286688, 47.0326582 ], + [ 7.0286623, 47.0328267 ], + [ 7.0287034, 47.0332437 ], + [ 7.0287339, 47.0335572 ], + [ 7.0287348, 47.0335659 ], + [ 7.0287482, 47.0336866 ], + [ 7.0287959, 47.0338676 ], + [ 7.028878, 47.0340069 ], + [ 7.0300758, 47.0337624 ], + [ 7.0340915, 47.0339198 ], + [ 7.0341368, 47.0337862 ], + [ 7.0341474999999996, 47.0336709 ], + [ 7.0341883, 47.0332295 ], + [ 7.0342162, 47.0329285 ], + [ 7.0342217, 47.0328688 ], + [ 7.0342544, 47.0325155 ], + [ 7.034276, 47.032282 ], + [ 7.0342668, 47.0321047 ], + [ 7.0342068, 47.0319321 ], + [ 7.0340985, 47.0317709 ], + [ 7.033946, 47.0316273 ], + [ 7.0337552, 47.031507 ], + [ 7.0335336, 47.0314147 ], + [ 7.0333938, 47.0313798 ], + [ 7.0294263, 47.0313206 ], + [ 7.0291824, 47.0314288 ], + [ 7.0290091, 47.031549 ], + [ 7.0288716, 47.0316892 ], + [ 7.0287748, 47.0318445 ], + [ 7.0287222, 47.0320094 ], + [ 7.0287155, 47.0321781 ], + [ 7.0287386, 47.0324132 ], + [ 7.0287431, 47.0324584 ], + [ 7.0287213, 47.0324934 ], + [ 7.0286688, 47.0326582 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "NE13", + "country" : "CHE", + "name" : [ + { + "text" : "VITOGAZ SWITZERLAND AG", + "lang" : "de-CH" + }, + { + "text" : "VITOGAZ SWITZERLAND AG", + "lang" : "fr-CH" + }, + { + "text" : "VITOGAZ SWITZERLAND AG", + "lang" : "it-CH" + }, + { + "text" : "VITOGAZ SWITZERLAND AG", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "regulationExemption" : "YES", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Police Neuchâteloise", + "lang" : "de-CH" + }, + { + "text" : "Police Neuchâteloise", + "lang" : "fr-CH" + }, + { + "text" : "Police Neuchâteloise", + "lang" : "it-CH" + }, + { + "text" : "Police Neuchâteloise", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "PN - Rens et opérations", + "lang" : "de-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "fr-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "it-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "PN - Rens et opérations", + "lang" : "de-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "fr-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "it-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ne.ch/autorites/DESC/PONE/Pages/Drones.aspx", + "email" : "Police.Neuchateloise@ne.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.2611472, 46.4083788 ], + [ 6.261259, 46.4081956 ], + [ 6.2608687, 46.4078783 ], + [ 6.2607684, 46.4076753 ], + [ 6.2610448, 46.4075109 ], + [ 6.2603535, 46.406943 ], + [ 6.2603292, 46.4069223 ], + [ 6.2606189, 46.4068224 ], + [ 6.2603497, 46.4066278 ], + [ 6.2596866, 46.406148 ], + [ 6.2590977, 46.4055518 ], + [ 6.2589245, 46.4056439 ], + [ 6.2586215, 46.4053585 ], + [ 6.258399, 46.4055075 ], + [ 6.2582213, 46.4053598 ], + [ 6.2579842, 46.4054867 ], + [ 6.2560362, 46.4038851 ], + [ 6.2556673, 46.4041502 ], + [ 6.2551721, 46.4045062 ], + [ 6.2564076, 46.4055329 ], + [ 6.2559752, 46.4057838 ], + [ 6.2568593, 46.4067544 ], + [ 6.2572427, 46.4071844 ], + [ 6.2573678, 46.4072498 ], + [ 6.257776, 46.4072383 ], + [ 6.2585491, 46.4077428 ], + [ 6.2596416, 46.4084548 ], + [ 6.2604674, 46.4089915 ], + [ 6.2605508, 46.4089853 ], + [ 6.2608429, 46.4087005 ], + [ 6.2611472, 46.4083788 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSGP002", + "country" : "CHE", + "name" : [ + { + "text" : "LSGP La Côte (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSGP La Côte (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSGP La Côte (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSGP La Côte (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Aérodrome de la Côte", + "lang" : "de-CH" + }, + { + "text" : "Aérodrome de la Côte", + "lang" : "fr-CH" + }, + { + "text" : "Aérodrome de la Côte", + "lang" : "it-CH" + }, + { + "text" : "Aérodrome de la Côte", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Chef d'aérodrome", + "lang" : "de-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "fr-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "it-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Marc Kleiner", + "lang" : "de-CH" + }, + { + "text" : "Marc Kleiner", + "lang" : "fr-CH" + }, + { + "text" : "Marc Kleiner", + "lang" : "it-CH" + }, + { + "text" : "Marc Kleiner", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.lsgp.ch/", + "email" : "info@lsgp.ch", + "phone" : "0041223630990", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.6082372, 46.7590333 ], + [ 6.608392, 46.7591347 ], + [ 6.6083809, 46.7591535 ], + [ 6.6083118, 46.759268 ], + [ 6.6082921, 46.7595233 ], + [ 6.6079141, 46.7600136 ], + [ 6.6124301, 46.7629426 ], + [ 6.6124259, 46.7629457 ], + [ 6.6168218, 46.7657737 ], + [ 6.6184881, 46.7645603 ], + [ 6.6184876, 46.76456 ], + [ 6.6185437, 46.7645191 ], + [ 6.6090835, 46.758409 ], + [ 6.6090209, 46.7584543 ], + [ 6.6090204, 46.758454 ], + [ 6.6089735, 46.7584887 ], + [ 6.6087948, 46.7586181 ], + [ 6.6033043, 46.7550861 ], + [ 6.602772, 46.7554816 ], + [ 6.6082555, 46.759019 ], + [ 6.6082372, 46.7590333 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSGY002", + "country" : "CHE", + "name" : [ + { + "text" : "LSGY Yverdon-les-Bains (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSGY Yverdon-les-Bains (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSGY Yverdon-les-Bains (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSGY Yverdon-les-Bains (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Air-Club Yverdon /Aérodrome Yverdon-les Bains", + "lang" : "de-CH" + }, + { + "text" : "Air-Club Yverdon /Aérodrome Yverdon-les Bains", + "lang" : "fr-CH" + }, + { + "text" : "Air-Club Yverdon /Aérodrome Yverdon-les Bains", + "lang" : "it-CH" + }, + { + "text" : "Air-Club Yverdon /Aérodrome Yverdon-les Bains", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Chef d'aérodrome", + "lang" : "de-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "fr-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "it-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "en-GB" + } + ], + "siteURL" : "https://airport.lsgy.ch/vol-de-drone-ballons-ou-lanternes", + "email" : "admin@air-club-yverdon.ch", + "phone" : "0041244252724", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P02DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.674703, 47.4852688 ], + [ 7.6746838, 47.4856461 ], + [ 7.6746833, 47.4856537 ], + [ 7.6746821, 47.4856635 ], + [ 7.6746372, 47.4859693 ], + [ 7.6746361, 47.4860778 ], + [ 7.6746446, 47.4861604 ], + [ 7.6746548, 47.4862195 ], + [ 7.6746647, 47.4862657 ], + [ 7.6746736, 47.4862907 ], + [ 7.6746792, 47.4863018 ], + [ 7.6747031, 47.486335 ], + [ 7.6747301, 47.4863675 ], + [ 7.6747568, 47.4863899 ], + [ 7.6747775, 47.4864052 ], + [ 7.6748124, 47.4864223 ], + [ 7.6748823999999995, 47.486455 ], + [ 7.6750039999999995, 47.4865054 ], + [ 7.6750101, 47.486508 ], + [ 7.6751652, 47.4865749 ], + [ 7.675168, 47.4865761 ], + [ 7.6753198, 47.4866427 ], + [ 7.6753235, 47.4866444 ], + [ 7.6753335, 47.486649 ], + [ 7.6753504, 47.4866571 ], + [ 7.6753617, 47.4866628 ], + [ 7.6753629, 47.4866634 ], + [ 7.6754668, 47.4867175 ], + [ 7.6754846, 47.4867273 ], + [ 7.675623, 47.4868084 ], + [ 7.6756242, 47.4868091 ], + [ 7.6756432, 47.4868212 ], + [ 7.6756466, 47.4868235 ], + [ 7.6758033999999995, 47.4869317 ], + [ 7.6758134, 47.4869389 ], + [ 7.6758313000000005, 47.4869521 ], + [ 7.6758357, 47.4869554 ], + [ 7.6758424, 47.4869608 ], + [ 7.6759833, 47.4870748 ], + [ 7.6759931, 47.4870831 ], + [ 7.6759977, 47.4870872 ], + [ 7.6761178999999995, 47.487197 ], + [ 7.6761205, 47.4871992 ], + [ 7.6762624, 47.4873067 ], + [ 7.6764292, 47.4874249 ], + [ 7.6764393, 47.4874324 ], + [ 7.6764564, 47.4874454 ], + [ 7.676457, 47.4874459 ], + [ 7.6764668, 47.4874537 ], + [ 7.6765635, 47.487534 ], + [ 7.6765704, 47.4875398 ], + [ 7.6765741, 47.4875431 ], + [ 7.676587, 47.4875549 ], + [ 7.6765986, 47.4875659 ], + [ 7.6766889, 47.4876569 ], + [ 7.6767027, 47.4876719 ], + [ 7.6767044, 47.4876739 ], + [ 7.6769015, 47.4879082 ], + [ 7.6769874, 47.488003 ], + [ 7.6769883, 47.4880039 ], + [ 7.6769954, 47.4880104 ], + [ 7.6770181, 47.488031 ], + [ 7.6770371, 47.488042 ], + [ 7.6770886, 47.4880637 ], + [ 7.6772196, 47.488103 ], + [ 7.6772232, 47.4881041 ], + [ 7.677996, 47.488342 ], + [ 7.6780063, 47.4883453 ], + [ 7.6780293, 47.4883536 ], + [ 7.6780369, 47.4883566 ], + [ 7.6780574, 47.488365 ], + [ 7.6780719, 47.4883712 ], + [ 7.6780925, 47.4883811 ], + [ 7.6784426, 47.4885612 ], + [ 7.6784388, 47.4885502 ], + [ 7.6784344, 47.4885328 ], + [ 7.6784318, 47.4885152 ], + [ 7.6784309, 47.4884975 ], + [ 7.6784316, 47.4884799 ], + [ 7.6784341, 47.4884623 ], + [ 7.6784383, 47.4884449 ], + [ 7.6784441, 47.4884277 ], + [ 7.6784516, 47.4884108 ], + [ 7.6784607, 47.4883942 ], + [ 7.6784714, 47.4883781 ], + [ 7.6784836, 47.4883625 ], + [ 7.6784875, 47.488358 ], + [ 7.6785033, 47.4883401 ], + [ 7.6785131, 47.4883296 ], + [ 7.6785282, 47.4883152 ], + [ 7.6785447, 47.4883015 ], + [ 7.6785625, 47.4882886 ], + [ 7.6785814, 47.4882765 ], + [ 7.6786015, 47.4882652 ], + [ 7.6786226, 47.4882549 ], + [ 7.6786446999999995, 47.4882455 ], + [ 7.6786469, 47.4882447 ], + [ 7.678676, 47.4882333 ], + [ 7.6786968, 47.4882258 ], + [ 7.6787205, 47.4882185 ], + [ 7.6787448, 47.4882122 ], + [ 7.6787607, 47.4882088 ], + [ 7.6787782, 47.4882053 ], + [ 7.6787872, 47.4882035 ], + [ 7.6788126, 47.4881995 ], + [ 7.6788137, 47.4881993 ], + [ 7.6794587, 47.4881122 ], + [ 7.6798934, 47.4880248 ], + [ 7.6800239, 47.4879828 ], + [ 7.6801322, 47.4879479 ], + [ 7.6793218, 47.4878215 ], + [ 7.6786397, 47.4875495 ], + [ 7.6786357, 47.4875488 ], + [ 7.6786225, 47.4875466 ], + [ 7.6786116, 47.4875448 ], + [ 7.6786083, 47.4875443 ], + [ 7.6785955, 47.4875422 ], + [ 7.6785737, 47.4875386 ], + [ 7.678532, 47.4875324 ], + [ 7.6785253, 47.4875314 ], + [ 7.6784987000000005, 47.4875271 ], + [ 7.678496, 47.4875266 ], + [ 7.6784564, 47.48752 ], + [ 7.6784343, 47.4875164 ], + [ 7.6783926000000005, 47.4875102 ], + [ 7.6783859, 47.4875092 ], + [ 7.6783593, 47.4875049 ], + [ 7.6783566, 47.4875044 ], + [ 7.6783167, 47.4874978 ], + [ 7.678295, 47.4874943 ], + [ 7.6782534, 47.487488 ], + [ 7.6782468, 47.487487 ], + [ 7.6782202, 47.4874828 ], + [ 7.6782164999999996, 47.4874821 ], + [ 7.6782034, 47.4874799 ], + [ 7.6781927, 47.4874782 ], + [ 7.678189, 47.4874776 ], + [ 7.678176, 47.4874754 ], + [ 7.6781656, 47.4874737 ], + [ 7.6781617, 47.487473 ], + [ 7.6781485, 47.4874708 ], + [ 7.6781378, 47.487469 ], + [ 7.6781331999999995, 47.4874682 ], + [ 7.6781068, 47.4874636 ], + [ 7.6781042, 47.4874631 ], + [ 7.6781003, 47.4874624 ], + [ 7.6780901, 47.4874605 ], + [ 7.678087, 47.4874599 ], + [ 7.6780653999999995, 47.4874557 ], + [ 7.6780562, 47.4874541 ], + [ 7.6780512, 47.4874532 ], + [ 7.6780226, 47.4874476 ], + [ 7.6780133, 47.487446 ], + [ 7.6780111, 47.4874456 ], + [ 7.6779847, 47.4874409 ], + [ 7.677977, 47.4874395 ], + [ 7.6779668999999995, 47.4874375 ], + [ 7.6779614, 47.4874364 ], + [ 7.6779573, 47.4874356 ], + [ 7.677956, 47.4874353 ], + [ 7.6779501, 47.4874341 ], + [ 7.6779453, 47.4874331 ], + [ 7.6779312, 47.48743 ], + [ 7.6779269, 47.487429 ], + [ 7.6779111, 47.4874255 ], + [ 7.6779097, 47.4874252 ], + [ 7.6779069, 47.4874245 ], + [ 7.677897, 47.4874222 ], + [ 7.677893, 47.4874213 ], + [ 7.6778831, 47.4874189 ], + [ 7.6778773000000005, 47.4874175 ], + [ 7.6778508, 47.4874107 ], + [ 7.6778267, 47.4874048 ], + [ 7.6778244, 47.4874042 ], + [ 7.6777996, 47.4873979 ], + [ 7.6777769, 47.4873924 ], + [ 7.6777745, 47.4873919 ], + [ 7.6777606, 47.4873884 ], + [ 7.6777539, 47.4873868 ], + [ 7.6777442, 47.4873842 ], + [ 7.677736, 47.487382 ], + [ 7.6777235, 47.4873786 ], + [ 7.6777228, 47.4873784 ], + [ 7.6777153, 47.4873762 ], + [ 7.6776976999999995, 47.487371 ], + [ 7.6776945, 47.4873701 ], + [ 7.6776754, 47.4873643 ], + [ 7.6776721, 47.4873633 ], + [ 7.6776651000000005, 47.4873611 ], + [ 7.6776376, 47.4873527 ], + [ 7.6776353, 47.487352 ], + [ 7.6776286, 47.48735 ], + [ 7.6776012, 47.4873416 ], + [ 7.6775995, 47.4873411 ], + [ 7.6775793, 47.4873349 ], + [ 7.6775772, 47.4873342 ], + [ 7.677561, 47.4873291 ], + [ 7.6775558, 47.4873275 ], + [ 7.6775519, 47.4873262 ], + [ 7.6775506, 47.4873258 ], + [ 7.6775412, 47.4873227 ], + [ 7.6775395, 47.4873222 ], + [ 7.6775366, 47.4873212 ], + [ 7.6775233, 47.4873167 ], + [ 7.6775179, 47.4873148 ], + [ 7.6775047, 47.4873102 ], + [ 7.6774982, 47.487307799999996 ], + [ 7.6774886, 47.4873043 ], + [ 7.677472, 47.4872983 ], + [ 7.6774701, 47.4872977 ], + [ 7.677457, 47.4872929 ], + [ 7.6774514, 47.4872908 ], + [ 7.6774411, 47.4872869 ], + [ 7.6774238, 47.4872805 ], + [ 7.677418, 47.4872783 ], + [ 7.6774076, 47.4872743 ], + [ 7.6773986, 47.4872709 ], + [ 7.6773948, 47.4872694 ], + [ 7.6773795, 47.4872638 ], + [ 7.6773765, 47.4872627 ], + [ 7.6773634, 47.4872579 ], + [ 7.6773572, 47.4872555 ], + [ 7.6773562, 47.4872551 ], + [ 7.6773524, 47.4872536 ], + [ 7.6773471, 47.4872515 ], + [ 7.6773343, 47.4872463 ], + [ 7.677326, 47.4872429 ], + [ 7.6773211, 47.4872408 ], + [ 7.6773153, 47.4872382 ], + [ 7.6773002, 47.4872315 ], + [ 7.6772984, 47.4872307 ], + [ 7.6772933, 47.4872284 ], + [ 7.6772884, 47.4872261 ], + [ 7.6772808999999995, 47.4872225 ], + [ 7.6772687, 47.487216599999996 ], + [ 7.6772626, 47.4872135 ], + [ 7.6772529, 47.4872086 ], + [ 7.6772503, 47.4872073 ], + [ 7.6772453, 47.4872046 ], + [ 7.677241, 47.4872024 ], + [ 7.6772351, 47.4871991 ], + [ 7.6772309, 47.4871968 ], + [ 7.6772254, 47.4871937 ], + [ 7.6772171, 47.4871889 ], + [ 7.6772141, 47.4871872 ], + [ 7.6772075, 47.4871833 ], + [ 7.6772068, 47.4871829 ], + [ 7.6772017, 47.4871798 ], + [ 7.6771972, 47.4871771 ], + [ 7.6771903, 47.4871727 ], + [ 7.6771858, 47.4871699 ], + [ 7.6771795, 47.4871657 ], + [ 7.6771752, 47.4871628 ], + [ 7.6771744, 47.4871623 ], + [ 7.677169, 47.4871586 ], + [ 7.6771647, 47.4871556 ], + [ 7.6771584, 47.487151 ], + [ 7.6771542, 47.487148 ], + [ 7.6771481999999995, 47.4871435 ], + [ 7.6771473, 47.4871427 ], + [ 7.6771433, 47.4871396 ], + [ 7.6771361, 47.4871339 ], + [ 7.6771283, 47.4871275 ], + [ 7.6771256999999995, 47.4871254 ], + [ 7.6771135, 47.4871152 ], + [ 7.6771104999999995, 47.4871126 ], + [ 7.6771071, 47.4871097 ], + [ 7.6771042, 47.4871073 ], + [ 7.6771025999999996, 47.4871059 ], + [ 7.6770994, 47.4871029 ], + [ 7.6770942, 47.4870982 ], + [ 7.6770897, 47.4870941 ], + [ 7.6770864, 47.4870909 ], + [ 7.6770838, 47.4870885 ], + [ 7.6770803999999995, 47.4870851 ], + [ 7.6770761, 47.4870808 ], + [ 7.6770744, 47.4870791 ], + [ 7.6770734, 47.4870782 ], + [ 7.677071, 47.4870757 ], + [ 7.6770678, 47.4870724 ], + [ 7.6770637, 47.4870681 ], + [ 7.6770609, 47.4870651 ], + [ 7.6770585, 47.4870626 ], + [ 7.6770548, 47.4870584 ], + [ 7.6770509, 47.487054 ], + [ 7.6770478, 47.4870505 ], + [ 7.677047, 47.4870496 ], + [ 7.6770448, 47.487047 ], + [ 7.6770402, 47.4870414 ], + [ 7.6770351, 47.4870351 ], + [ 7.6770329, 47.4870323 ], + [ 7.6770309, 47.4870297 ], + [ 7.6770277, 47.4870255 ], + [ 7.677021, 47.4870165 ], + [ 7.6770194, 47.4870144 ], + [ 7.6770176, 47.4870119 ], + [ 7.6770111, 47.4870029 ], + [ 7.6770075, 47.4869977 ], + [ 7.6769901, 47.4869719 ], + [ 7.6769889, 47.4869701 ], + [ 7.6769869, 47.4869671 ], + [ 7.6769837, 47.4869622 ], + [ 7.6769824, 47.4869601 ], + [ 7.6769815, 47.4869586 ], + [ 7.6769808, 47.4869575 ], + [ 7.6769762, 47.4869498 ], + [ 7.6769752, 47.4869483 ], + [ 7.6769728, 47.4869448 ], + [ 7.6769704, 47.4869414 ], + [ 7.6769680000000005, 47.4869379 ], + [ 7.6769618, 47.4869289 ], + [ 7.6769567, 47.4869211 ], + [ 7.6769526, 47.4869146 ], + [ 7.6769518, 47.4869132 ], + [ 7.6769505, 47.4869112 ], + [ 7.6769491, 47.4869088 ], + [ 7.6769482, 47.4869073 ], + [ 7.6769451, 47.4869028 ], + [ 7.6769422, 47.4868985 ], + [ 7.6769387, 47.4868933 ], + [ 7.6769337, 47.4868856 ], + [ 7.6769318, 47.4868828 ], + [ 7.6769303, 47.4868806 ], + [ 7.6769242, 47.4868714 ], + [ 7.6769192, 47.4868638 ], + [ 7.6769113, 47.486851 ], + [ 7.6769087, 47.4868471 ], + [ 7.6769058999999995, 47.486843 ], + [ 7.6769025, 47.4868381 ], + [ 7.6768936, 47.4868246 ], + [ 7.6768908, 47.4868204 ], + [ 7.6768876, 47.4868155 ], + [ 7.6768805, 47.4868044 ], + [ 7.6768795, 47.4868029 ], + [ 7.6768765, 47.486798 ], + [ 7.6768742, 47.4867946 ], + [ 7.6768709, 47.4867898 ], + [ 7.676868, 47.4867858 ], + [ 7.6768653, 47.486782 ], + [ 7.676859, 47.4867729 ], + [ 7.6768537, 47.4867648 ], + [ 7.6768496, 47.4867583 ], + [ 7.6768482, 47.4867561 ], + [ 7.6768475, 47.486755 ], + [ 7.6768461, 47.4867527 ], + [ 7.6768452, 47.4867512 ], + [ 7.6768419, 47.4867463 ], + [ 7.6768388, 47.4867418 ], + [ 7.6768346, 47.4867356 ], + [ 7.6768304, 47.4867291 ], + [ 7.6768277, 47.4867248 ], + [ 7.6768275, 47.4867244 ], + [ 7.6768258, 47.4867217 ], + [ 7.6768205, 47.4867125 ], + [ 7.676819, 47.4867099 ], + [ 7.6768163, 47.4867049 ], + [ 7.6768144, 47.4867012 ], + [ 7.6768122, 47.4866972 ], + [ 7.6768097, 47.4866922 ], + [ 7.6768072, 47.4866871 ], + [ 7.6768042, 47.4866808 ], + [ 7.6768022, 47.4866768 ], + [ 7.6767984, 47.4866686 ], + [ 7.6767972, 47.486666 ], + [ 7.6767953, 47.4866614 ], + [ 7.6767935, 47.4866573 ], + [ 7.6767899, 47.4866487 ], + [ 7.6767889, 47.4866463 ], + [ 7.6767885, 47.4866454 ], + [ 7.6767883, 47.486645 ], + [ 7.6767861, 47.4866405 ], + [ 7.6767842, 47.4866362 ], + [ 7.6767832, 47.4866343 ], + [ 7.6767829, 47.4866338 ], + [ 7.6767797, 47.486627 ], + [ 7.6767769999999995, 47.4866213 ], + [ 7.6767753, 47.4866179 ], + [ 7.6767717, 47.4866101 ], + [ 7.6767706, 47.4866076 ], + [ 7.6767689, 47.4866038 ], + [ 7.6767675, 47.4866003 ], + [ 7.6767668, 47.4865987 ], + [ 7.6767633, 47.4865908 ], + [ 7.6767611, 47.4865856 ], + [ 7.6767606, 47.4865847 ], + [ 7.6767578, 47.4865785 ], + [ 7.6767552, 47.4865726 ], + [ 7.6767536, 47.4865691 ], + [ 7.6767495, 47.4865599 ], + [ 7.6767483, 47.4865569 ], + [ 7.6767477, 47.4865553 ], + [ 7.6767462, 47.4865515 ], + [ 7.676746, 47.4865509 ], + [ 7.6767445, 47.4865476 ], + [ 7.6767423, 47.4865428 ], + [ 7.6767411, 47.4865403 ], + [ 7.6767378, 47.486533 ], + [ 7.6767366, 47.4865304 ], + [ 7.6767354, 47.4865275 ], + [ 7.676729, 47.4865124 ], + [ 7.676728, 47.4865097 ], + [ 7.676726, 47.486505 ], + [ 7.676725, 47.4865027 ], + [ 7.676722, 47.4864955 ], + [ 7.6767215, 47.4864942 ], + [ 7.6767202999999995, 47.4864912 ], + [ 7.6767183, 47.486486 ], + [ 7.676718, 47.4864851 ], + [ 7.6767157, 47.4864796 ], + [ 7.6767146, 47.4864769 ], + [ 7.6767138, 47.486475 ], + [ 7.6767134, 47.4864741 ], + [ 7.6767119, 47.4864704 ], + [ 7.6767085999999995, 47.4864623 ], + [ 7.6767076, 47.4864598 ], + [ 7.6767072, 47.4864588 ], + [ 7.6767050999999995, 47.4864535 ], + [ 7.6767039, 47.4864506 ], + [ 7.676702, 47.486446 ], + [ 7.6766997, 47.48644 ], + [ 7.6766985, 47.4864369 ], + [ 7.6766958, 47.4864288 ], + [ 7.6766935, 47.4864215 ], + [ 7.6766908, 47.4864135 ], + [ 7.6766886, 47.4864068 ], + [ 7.6766877000000004, 47.4864037 ], + [ 7.6766876, 47.4864035 ], + [ 7.6766864, 47.486399 ], + [ 7.6766855, 47.4863957 ], + [ 7.6766833, 47.4863892 ], + [ 7.6766817, 47.4863841 ], + [ 7.6766816, 47.4863838 ], + [ 7.6766807, 47.4863807 ], + [ 7.6766795, 47.4863762 ], + [ 7.6766784, 47.4863722 ], + [ 7.676676, 47.4863645 ], + [ 7.6766751, 47.4863617 ], + [ 7.6766735, 47.4863562 ], + [ 7.6766727, 47.486353 ], + [ 7.6766711, 47.4863465 ], + [ 7.6766704, 47.4863433 ], + [ 7.6766696, 47.4863398 ], + [ 7.6766676, 47.4863304 ], + [ 7.6766672, 47.4863285 ], + [ 7.6766662, 47.4863232 ], + [ 7.6766657, 47.4863199 ], + [ 7.6766645, 47.4863119 ], + [ 7.6766641, 47.4863086 ], + [ 7.6766635999999995, 47.4863044 ], + [ 7.6766635, 47.4863027 ], + [ 7.6766632, 47.4862993 ], + [ 7.6766628, 47.4862949 ], + [ 7.6766626, 47.4862915 ], + [ 7.6766623, 47.4862871 ], + [ 7.676662, 47.4862803 ], + [ 7.6766619, 47.4862767 ], + [ 7.6766618, 47.4862699 ], + [ 7.6766617, 47.4862678 ], + [ 7.6766616, 47.4862575 ], + [ 7.6766616, 47.4862561 ], + [ 7.6766616, 47.4862559 ], + [ 7.6766616, 47.4862558 ], + [ 7.6766616, 47.4862489 ], + [ 7.6766616, 47.4862458 ], + [ 7.6766617, 47.4862355 ], + [ 7.6766619, 47.4862307 ], + [ 7.676662, 47.4862273 ], + [ 7.6766622, 47.486223 ], + [ 7.6766624, 47.4862196 ], + [ 7.6766628, 47.4862146 ], + [ 7.6766629, 47.4862138 ], + [ 7.6766632, 47.4862105 ], + [ 7.6766642, 47.4862025 ], + [ 7.6766646, 47.4861992 ], + [ 7.6766661, 47.4861903 ], + [ 7.6766664, 47.4861886 ], + [ 7.6766670999999995, 47.4861853 ], + [ 7.6766701, 47.4861726 ], + [ 7.6766717, 47.4861669 ], + [ 7.6766725000000005, 47.4861639 ], + [ 7.6766738, 47.4861596 ], + [ 7.6766746999999995, 47.4861568 ], + [ 7.6766777, 47.4861478 ], + [ 7.6766787, 47.486145 ], + [ 7.6766802, 47.4861412 ], + [ 7.6766839000000004, 47.4861322 ], + [ 7.6766888, 47.4861213 ], + [ 7.6766915000000004, 47.4861155 ], + [ 7.6766928, 47.4861129 ], + [ 7.6766938, 47.4861107 ], + [ 7.6766974, 47.4861037 ], + [ 7.6766989, 47.486101 ], + [ 7.6767007, 47.4860978 ], + [ 7.6767050999999995, 47.4860899 ], + [ 7.6767088999999995, 47.4860835 ], + [ 7.6767109, 47.4860802 ], + [ 7.6767125, 47.4860776 ], + [ 7.6767212, 47.4860648 ], + [ 7.6767217, 47.4860641 ], + [ 7.6767236, 47.4860614 ], + [ 7.6767312, 47.4860515 ], + [ 7.6767333, 47.4860489 ], + [ 7.6767374, 47.4860439 ], + [ 7.6767377, 47.4860436 ], + [ 7.6767392999999995, 47.4860417 ], + [ 7.6767459, 47.4860342 ], + [ 7.6767483, 47.4860316 ], + [ 7.676755, 47.4860245 ], + [ 7.6767556, 47.4860239 ], + [ 7.6767598, 47.4860196 ], + [ 7.676768, 47.4860116 ], + [ 7.6767707, 47.4860091 ], + [ 7.6767769, 47.4860034 ], + [ 7.6767769999999995, 47.4860033 ], + [ 7.6767797, 47.4860009 ], + [ 7.6767834, 47.4859977 ], + [ 7.6767888, 47.4859931 ], + [ 7.6767900000000004, 47.4859919 ], + [ 7.6767944, 47.485988 ], + [ 7.6767966, 47.485986 ], + [ 7.6767993, 47.4859836 ], + [ 7.6768062, 47.4859778 ], + [ 7.6768091, 47.4859754 ], + [ 7.6768144, 47.4859712 ], + [ 7.6768173, 47.4859688 ], + [ 7.6768194, 47.4859672 ], + [ 7.6768221, 47.4859651 ], + [ 7.6768282, 47.4859605 ], + [ 7.6768304, 47.4859588 ], + [ 7.6768417, 47.4859504 ], + [ 7.6768464, 47.4859469 ], + [ 7.6768495, 47.4859447 ], + [ 7.6768567999999995, 47.4859395 ], + [ 7.67686, 47.4859373 ], + [ 7.6768608, 47.4859368 ], + [ 7.6768672, 47.4859325 ], + [ 7.6768705, 47.4859304 ], + [ 7.6768742, 47.485928 ], + [ 7.6768814, 47.4859234 ], + [ 7.6769042, 47.4859084 ], + [ 7.67691, 47.4859047 ], + [ 7.6769172999999995, 47.4859001 ], + [ 7.676924, 47.485896 ], + [ 7.6769277, 47.4858938 ], + [ 7.6769286999999995, 47.4858932 ], + [ 7.6769344, 47.4858898 ], + [ 7.6769382, 47.4858876 ], + [ 7.6769445, 47.485884 ], + [ 7.676954, 47.4858788 ], + [ 7.6769579, 47.4858767 ], + [ 7.6769614, 47.4858748 ], + [ 7.6769655, 47.4858726 ], + [ 7.6769676, 47.4858716 ], + [ 7.6769711, 47.4858697 ], + [ 7.6769777999999995, 47.4858663 ], + [ 7.676984, 47.4858633 ], + [ 7.67699, 47.4858604 ], + [ 7.6769998, 47.4858557 ], + [ 7.6770038, 47.4858538 ], + [ 7.6770173, 47.4858476 ], + [ 7.6770198, 47.4858465 ], + [ 7.67702, 47.4858464 ], + [ 7.6770339, 47.48584 ], + [ 7.6770398, 47.4858373 ], + [ 7.6770443, 47.4858353 ], + [ 7.6769827, 47.4854489 ], + [ 7.6769687, 47.4854308 ], + [ 7.674703, 47.4852688 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr150", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Mieschhalden", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Mieschhalden", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Mieschhalden", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Mieschhalden", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.0507284, 46.1748465 ], + [ 6.0507229, 46.1749155 ], + [ 6.0506889, 46.1749695 ], + [ 6.0505905, 46.1752817 ], + [ 6.0505195, 46.1761251 ], + [ 6.0508274, 46.1769424 ], + [ 6.0514839, 46.1776536 ], + [ 6.0524249, 46.1781889 ], + [ 6.0535581, 46.1784958 ], + [ 6.0537143, 46.1785194 ], + [ 6.0537594, 46.1785262 ], + [ 6.0552736, 46.1785456 ], + [ 6.0566835, 46.1781613 ], + [ 6.0577746, 46.1774317 ], + [ 6.0583812, 46.1764677 ], + [ 6.0584797, 46.1761556 ], + [ 6.0584865, 46.1760759 ], + [ 6.0585245, 46.1760149 ], + [ 6.0586214, 46.175703 ], + [ 6.0586886, 46.1748599 ], + [ 6.0583775, 46.1740436 ], + [ 6.0577185, 46.173334 ], + [ 6.0567762, 46.1728007 ], + [ 6.0556427, 46.1724958 ], + [ 6.0554412, 46.1724656 ], + [ 6.0539259, 46.1724488 ], + [ 6.0525165, 46.172836 ], + [ 6.0514278, 46.1735685 ], + [ 6.0508253, 46.1745346 ], + [ 6.0507284, 46.1748465 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-39", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.943549, 46.6474081 ], + [ 7.9434375, 46.6450546 ], + [ 7.9431474, 46.6427083 ], + [ 7.9426794, 46.6403757 ], + [ 7.9420348, 46.6380632 ], + [ 7.9412154, 46.6357771 ], + [ 7.9402235999999995, 46.6335236 ], + [ 7.939062, 46.631309 ], + [ 7.9377339, 46.6291393 ], + [ 7.9362428, 46.6270204 ], + [ 7.9345929, 46.6249581 ], + [ 7.9327888, 46.6229581 ], + [ 7.9308354, 46.6210259 ], + [ 7.928738, 46.6191668 ], + [ 7.9265024, 46.6173858 ], + [ 7.9241347, 46.6156877 ], + [ 7.9216415, 46.6140774 ], + [ 7.9190295, 46.6125591 ], + [ 7.916306, 46.611137 ], + [ 7.9134782999999995, 46.6098151 ], + [ 7.9105542, 46.6085968 ], + [ 7.9075417, 46.6074857 ], + [ 7.9044492, 46.6064846 ], + [ 7.9012849, 46.6055963 ], + [ 7.8980576, 46.6048233 ], + [ 7.8947761, 46.6041677 ], + [ 7.8914494, 46.6036312 ], + [ 7.8880866, 46.6032154 ], + [ 7.8846968, 46.6029214 ], + [ 7.8812894, 46.6027499 ], + [ 7.8778737, 46.6027015 ], + [ 7.8744589, 46.6027762 ], + [ 7.8710545, 46.6029739 ], + [ 7.8676698, 46.6032941 ], + [ 7.8643139, 46.6037358 ], + [ 7.8609960999999995, 46.6042979 ], + [ 7.8577254, 46.6049787 ], + [ 7.8545109, 46.6057765 ], + [ 7.8513611999999995, 46.6066891 ], + [ 7.848285, 46.607714 ], + [ 7.8452908, 46.6088483 ], + [ 7.8423867, 46.610089 ], + [ 7.8395806, 46.6114327 ], + [ 7.8368801999999995, 46.6128756 ], + [ 7.8342931, 46.614414 ], + [ 7.8318261, 46.6160434 ], + [ 7.8294861000000004, 46.6177596 ], + [ 7.8272796, 46.6195577 ], + [ 7.8252125, 46.6214329 ], + [ 7.8232905, 46.62338 ], + [ 7.8215189, 46.6253938 ], + [ 7.8199026, 46.6274686 ], + [ 7.8184461, 46.6295989 ], + [ 7.8171532, 46.6317787 ], + [ 7.8160277, 46.6340022 ], + [ 7.8150725, 46.6362631 ], + [ 7.8142903, 46.6385554 ], + [ 7.8136833, 46.6408728 ], + [ 7.8132532999999995, 46.6432088 ], + [ 7.8130012, 46.6455572 ], + [ 7.812928, 46.6479114 ], + [ 7.8130337999999995, 46.650265 ], + [ 7.8133183, 46.6526116 ], + [ 7.8137809, 46.6549447 ], + [ 7.8144200999999995, 46.657258 ], + [ 7.8152344, 46.659545 ], + [ 7.8162215, 46.6617995 ], + [ 7.8173787, 46.6640154 ], + [ 7.8187029, 46.6661865 ], + [ 7.8201903999999995, 46.668307 ], + [ 7.8218372, 46.6703709 ], + [ 7.8236388, 46.6723726 ], + [ 7.8255903, 46.6743066 ], + [ 7.8276863, 46.6761677 ], + [ 7.8299211, 46.6779506 ], + [ 7.8322885, 46.6796506 ], + [ 7.8347821, 46.6812629 ], + [ 7.837395, 46.6827831 ], + [ 7.8401201, 46.6842071 ], + [ 7.8429499, 46.6855308 ], + [ 7.8458766, 46.6867508 ], + [ 7.8488922, 46.6878636 ], + [ 7.8519884, 46.6888662 ], + [ 7.8551568, 46.6897558 ], + [ 7.8583885, 46.69053 ], + [ 7.8616748, 46.6911867 ], + [ 7.8650066, 46.691724 ], + [ 7.8683748, 46.6921405 ], + [ 7.8717701, 46.692435 ], + [ 7.8751831, 46.6926068 ], + [ 7.8786045, 46.6926553 ], + [ 7.882025, 46.6925804 ], + [ 7.885435, 46.6923824 ], + [ 7.8888252, 46.6920617 ], + [ 7.8921864, 46.6916193 ], + [ 7.8955092, 46.6910563 ], + [ 7.8987846, 46.6903744 ], + [ 7.9020036, 46.6895753 ], + [ 7.9051572, 46.6886613 ], + [ 7.9082369, 46.6876349 ], + [ 7.9112342, 46.686499 ], + [ 7.9141409, 46.6852565 ], + [ 7.916949, 46.683911 ], + [ 7.9196507, 46.6824662 ], + [ 7.9222387, 46.6809259 ], + [ 7.9247059, 46.6792945 ], + [ 7.9270455, 46.6775764 ], + [ 7.9292511, 46.6757764 ], + [ 7.9313167, 46.6738993 ], + [ 7.9332365, 46.6719503 ], + [ 7.9350055, 46.6699348 ], + [ 7.9366186, 46.6678584 ], + [ 7.9380714999999995, 46.6657266 ], + [ 7.9393603, 46.6635454 ], + [ 7.9404813999999995, 46.6613208 ], + [ 7.9414318, 46.6590587 ], + [ 7.9422089, 46.6567656 ], + [ 7.9428105, 46.6544475 ], + [ 7.9432351, 46.652111 ], + [ 7.9434815, 46.6497624 ], + [ 7.943549, 46.6474081 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSXG001", + "country" : "CHE", + "name" : [ + { + "text" : "LSXG Gsteigwiler", + "lang" : "de-CH" + }, + { + "text" : "LSXG Gsteigwiler", + "lang" : "fr-CH" + }, + { + "text" : "LSXG Gsteigwiler", + "lang" : "it-CH" + }, + { + "text" : "LSXG Gsteigwiler", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swiss Helicopter AG", + "lang" : "de-CH" + }, + { + "text" : "Swiss Helicopter AG", + "lang" : "fr-CH" + }, + { + "text" : "Swiss Helicopter AG", + "lang" : "it-CH" + }, + { + "text" : "Swiss Helicopter AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Basis Gsteigwiler", + "lang" : "de-CH" + }, + { + "text" : "Basis Gsteigwiler", + "lang" : "fr-CH" + }, + { + "text" : "Basis Gsteigwiler", + "lang" : "it-CH" + }, + { + "text" : "Basis Gsteigwiler", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Martin Burgener", + "lang" : "de-CH" + }, + { + "text" : "Martin Burgener", + "lang" : "fr-CH" + }, + { + "text" : "Martin Burgener", + "lang" : "it-CH" + }, + { + "text" : "Martin Burgener", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swisshelicopter.ch/en/about-us/helicopter-bases/gsteigwiler-interlaken", + "email" : "berneroberland@swisshelicopter.ch", + "phone" : "0041338289000", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P02DT12H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7144471, 46.8318966 ], + [ 7.7144856, 46.8319071 ], + [ 7.7144333, 46.8319811 ], + [ 7.7144854, 46.8320404 ], + [ 7.7166508, 46.8325849 ], + [ 7.716737, 46.8325729 ], + [ 7.7178089, 46.8312041 ], + [ 7.7178207, 46.8311475 ], + [ 7.7177745, 46.8311056 ], + [ 7.7175503, 46.8310547 ], + [ 7.7171967, 46.8309866 ], + [ 7.7170596, 46.8309676 ], + [ 7.7169123, 46.8309621 ], + [ 7.7167749, 46.8309654 ], + [ 7.7160387, 46.8310093 ], + [ 7.7158967, 46.8310131 ], + [ 7.7156175000000005, 46.8310014 ], + [ 7.7150851, 46.8309063 ], + [ 7.7148695, 46.830855 ], + [ 7.714666, 46.8307866 ], + [ 7.7140984, 46.8314239 ], + [ 7.7138314, 46.8317246 ], + [ 7.7144471, 46.8318966 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VBS_23", + "country" : "CHE", + "name" : [ + { + "text" : "VBS_23 Heimenschwand", + "lang" : "de-CH" + }, + { + "text" : "VBS_23 Heimenschwand", + "lang" : "fr-CH" + }, + { + "text" : "VBS_23 Heimenschwand", + "lang" : "it-CH" + }, + { + "text" : "VBS_23 Heimenschwand", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "regulationExemption" : "YES", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Eidgenössisches Departement für Verteidigung, Bevölkerungsschutz und Sport (VBS)", + "lang" : "de-CH" + }, + { + "text" : "Département fédéral de la défense, de la protection de la population et des sports (DDPS)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento federale della difesa, della protezione della popolazione e dello sport (DDPS)", + "lang" : "it-CH" + }, + { + "text" : "Federal Department of Defence, Civil Protection and Sport (DDPS)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Lageverfolgungszentrum der Armee LVZ A", + "lang" : "de-CH" + }, + { + "text" : "Centre de suivi de la situation de l’armée, CSS A", + "lang" : "fr-CH" + }, + { + "text" : "Centro di monitoraggio della situazione dell’esercito, Centro mon sit Es", + "lang" : "it-CH" + }, + { + "text" : "Joint Operation Center, JOC", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vtg.admin.ch/en/joint-operations-command", + "email" : "lvz.op@vtg.admin.ch", + "phone" : "+41 58 464 96 43", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8054298, 47.4092964 ], + [ 7.8057471, 47.4092706 ], + [ 7.8057255, 47.4091759 ], + [ 7.8056804, 47.4090043 ], + [ 7.8056702, 47.408487 ], + [ 7.8056974, 47.4084388 ], + [ 7.8059937999999995, 47.4083676 ], + [ 7.8060172, 47.4083252 ], + [ 7.8059783, 47.408298 ], + [ 7.8060802, 47.4081498 ], + [ 7.8061413, 47.4079912 ], + [ 7.8060763, 47.4079097 ], + [ 7.8056851, 47.4078948 ], + [ 7.8056601, 47.4079454 ], + [ 7.8056843, 47.407978 ], + [ 7.805676, 47.4080477 ], + [ 7.8053736, 47.4082225 ], + [ 7.8053334, 47.4083326 ], + [ 7.8053794, 47.4084064 ], + [ 7.8052041, 47.4086665 ], + [ 7.8052164, 47.4087274 ], + [ 7.8053029, 47.4088971 ], + [ 7.8053735, 47.4090649 ], + [ 7.8054298, 47.4092964 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr124", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Holten", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Holten", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Holten", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Holten", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4093538, 47.4112523 ], + [ 7.4097931, 47.4112408 ], + [ 7.4100313, 47.4113207 ], + [ 7.4103686, 47.4113547 ], + [ 7.4108245, 47.4112956 ], + [ 7.4111235, 47.4112413 ], + [ 7.411415, 47.4112505 ], + [ 7.4116213, 47.4112296 ], + [ 7.4120182, 47.4111063 ], + [ 7.4125634, 47.4110071 ], + [ 7.4131088, 47.4109755 ], + [ 7.4137135, 47.4109334 ], + [ 7.4146518, 47.4110108 ], + [ 7.4153861, 47.4110514 ], + [ 7.4159413, 47.4110318 ], + [ 7.4165678, 47.411069499999996 ], + [ 7.4170017999999995, 47.4111142 ], + [ 7.4173294, 47.4109765 ], + [ 7.417208, 47.4109805 ], + [ 7.4169628, 47.4109924 ], + [ 7.4168785, 47.4109812 ], + [ 7.4167099, 47.4109456 ], + [ 7.4165320999999995, 47.4109141 ], + [ 7.4162018, 47.4108731 ], + [ 7.4159042, 47.4108375 ], + [ 7.4155328, 47.4107922 ], + [ 7.4151296, 47.4107424 ], + [ 7.4146906999999995, 47.4106865 ], + [ 7.4142535, 47.4106319 ], + [ 7.4139102, 47.4105872 ], + [ 7.4136108, 47.4105499 ], + [ 7.4132591, 47.4105078 ], + [ 7.4130126, 47.4104763 ], + [ 7.4129836000000005, 47.4104701 ], + [ 7.4124588, 47.4103118 ], + [ 7.4124418, 47.4102784 ], + [ 7.4124728, 47.4102453 ], + [ 7.4125145, 47.41022 ], + [ 7.4125814, 47.4101977 ], + [ 7.4125204, 47.410204 ], + [ 7.4124368, 47.4102126 ], + [ 7.4123583, 47.4102208 ], + [ 7.4122134, 47.4102357 ], + [ 7.4120753, 47.41025 ], + [ 7.412043, 47.4102533 ], + [ 7.4119647, 47.4102569 ], + [ 7.4117626, 47.4102661 ], + [ 7.4116278, 47.4102723 ], + [ 7.4113195, 47.4102863 ], + [ 7.4102448, 47.410166 ], + [ 7.4102029, 47.4101613 ], + [ 7.4100909, 47.4101487 ], + [ 7.4099823, 47.4101365 ], + [ 7.4099195, 47.4101296 ], + [ 7.4099077, 47.4101274 ], + [ 7.4098283, 47.4101126 ], + [ 7.4097543, 47.4100988 ], + [ 7.4095531, 47.4100619 ], + [ 7.4092504, 47.4100064 ], + [ 7.4089562, 47.4099524 ], + [ 7.4084845999999995, 47.4097683 ], + [ 7.4081917, 47.409654 ], + [ 7.4079274999999996, 47.4095534 ], + [ 7.4078001, 47.40961 ], + [ 7.4077856, 47.4096396 ], + [ 7.4075282, 47.4097285 ], + [ 7.406481, 47.4100787 ], + [ 7.4058074, 47.4102072 ], + [ 7.4050438, 47.4102801 ], + [ 7.4049512, 47.4102896 ], + [ 7.4048569, 47.4102992 ], + [ 7.4046706, 47.4103182 ], + [ 7.4046008, 47.4103253 ], + [ 7.4044495, 47.4103407 ], + [ 7.404331, 47.4103528 ], + [ 7.404213, 47.410364799999996 ], + [ 7.4040224, 47.4103843 ], + [ 7.4039012, 47.4103966 ], + [ 7.4038908, 47.4103977 ], + [ 7.4037553, 47.4104117 ], + [ 7.4033083, 47.4104578 ], + [ 7.4031247, 47.4104768 ], + [ 7.4029, 47.4104998 ], + [ 7.4027642, 47.4104805 ], + [ 7.4023786, 47.4104194 ], + [ 7.4021999, 47.4103935 ], + [ 7.4018971, 47.4103507 ], + [ 7.401792, 47.4103693 ], + [ 7.4016248000000004, 47.4103988 ], + [ 7.4012898, 47.4104575 ], + [ 7.4009685, 47.4105137 ], + [ 7.4007325, 47.4106311 ], + [ 7.4005283, 47.4107327 ], + [ 7.4002013, 47.4107868 ], + [ 7.3998888, 47.4108743 ], + [ 7.3998191, 47.4108939 ], + [ 7.3997519, 47.4109128 ], + [ 7.3997337, 47.4109179 ], + [ 7.3994968, 47.4109106 ], + [ 7.399488, 47.4109103 ], + [ 7.3992793, 47.4109621 ], + [ 7.3991369, 47.410997 ], + [ 7.3989926, 47.4110324 ], + [ 7.3987096, 47.4111019 ], + [ 7.3986357, 47.41112 ], + [ 7.3979906, 47.4112783 ], + [ 7.3984783, 47.4125094 ], + [ 7.3985944, 47.4124848 ], + [ 7.3989548, 47.412434 ], + [ 7.3995238, 47.4122493 ], + [ 7.4002681, 47.4121039 ], + [ 7.400453, 47.412122600000004 ], + [ 7.4010064, 47.4120065 ], + [ 7.4014704, 47.4118951 ], + [ 7.4020835, 47.4118584 ], + [ 7.4026194, 47.411796 ], + [ 7.4031558, 47.4118377 ], + [ 7.4032345, 47.4118326 ], + [ 7.4032453, 47.4118319 ], + [ 7.4032554, 47.4118312 ], + [ 7.4032815, 47.4118296 ], + [ 7.4035440999999995, 47.4118127 ], + [ 7.4035709, 47.411811 ], + [ 7.4039598, 47.4117859 ], + [ 7.404595, 47.4117137 ], + [ 7.4051983, 47.4115044 ], + [ 7.4059692, 47.4114129 ], + [ 7.4064289, 47.411319 ], + [ 7.4070023, 47.4112486 ], + [ 7.4074387999999995, 47.4112264 ], + [ 7.4075029, 47.4112153 ], + [ 7.4076556, 47.4111886 ], + [ 7.4081247999999995, 47.4112605 ], + [ 7.4082578, 47.4112809 ], + [ 7.4085829, 47.4112724 ], + [ 7.4093538, 47.4112523 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns118", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Albachhollen", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Albachhollen", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Albachhollen", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Albachhollen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8842463, 47.4140612 ], + [ 7.8842005, 47.4140759 ], + [ 7.8842311, 47.4141787 ], + [ 7.8842965, 47.4143125 ], + [ 7.8843557, 47.4144327 ], + [ 7.8844098, 47.4145157 ], + [ 7.8844344, 47.4145868 ], + [ 7.8844370999999995, 47.4146614 ], + [ 7.8844139, 47.4147465 ], + [ 7.8843902, 47.4148125 ], + [ 7.8843986, 47.4148687 ], + [ 7.8844183, 47.4149279 ], + [ 7.8844446999999995, 47.4149924 ], + [ 7.8844935, 47.4150364 ], + [ 7.8845536, 47.4150709 ], + [ 7.8846035, 47.4150897 ], + [ 7.8846688, 47.4151097 ], + [ 7.8847387, 47.4151203 ], + [ 7.8848209, 47.4151572 ], + [ 7.8848761, 47.4151794 ], + [ 7.8849949, 47.4152296 ], + [ 7.8850724, 47.4152793 ], + [ 7.8851412, 47.4153304 ], + [ 7.8851998, 47.4153706 ], + [ 7.8852399, 47.4153941 ], + [ 7.8853807, 47.415463 ], + [ 7.8853983, 47.415505 ], + [ 7.8854869, 47.4155679 ], + [ 7.885601, 47.4156591 ], + [ 7.8856532999999995, 47.4157306 ], + [ 7.8857164, 47.4158594 ], + [ 7.8858002, 47.4160749 ], + [ 7.8858166, 47.4161768 ], + [ 7.8858887, 47.4162593 ], + [ 7.8859178, 47.4162977 ], + [ 7.8859353, 47.4163867 ], + [ 7.8859503, 47.4165402 ], + [ 7.885986, 47.4166746 ], + [ 7.8860812, 47.4168992 ], + [ 7.8861409, 47.416997 ], + [ 7.8861972, 47.41707 ], + [ 7.8862455, 47.4171162 ], + [ 7.886233, 47.4171424 ], + [ 7.886167, 47.4172323 ], + [ 7.886236, 47.4173523 ], + [ 7.8862713, 47.4174553 ], + [ 7.8863178, 47.4175645 ], + [ 7.8863914, 47.4176422 ], + [ 7.8864249, 47.4177461 ], + [ 7.8865048, 47.4177232 ], + [ 7.8865139, 47.4177187 ], + [ 7.8865672, 47.4176995 ], + [ 7.8864873, 47.4175773 ], + [ 7.8863786, 47.4173825 ], + [ 7.8863128, 47.4172189 ], + [ 7.8863197, 47.4171087 ], + [ 7.8863303, 47.4171077 ], + [ 7.8863482, 47.4170605 ], + [ 7.8862914, 47.4169289 ], + [ 7.8862273, 47.4167973 ], + [ 7.8861568, 47.416681 ], + [ 7.8861038, 47.4166021 ], + [ 7.8860538, 47.4164656 ], + [ 7.8860356, 47.4163382 ], + [ 7.886029, 47.4162597 ], + [ 7.8859236, 47.4161391 ], + [ 7.8859107999999996, 47.4160699 ], + [ 7.88588, 47.4159631 ], + [ 7.8858467999999995, 47.4158673 ], + [ 7.8858193, 47.4158261 ], + [ 7.885775, 47.4157474 ], + [ 7.8857046, 47.4156517 ], + [ 7.8856679, 47.4156159 ], + [ 7.8855909, 47.4155499 ], + [ 7.8855466, 47.4155044 ], + [ 7.8855265, 47.4154531 ], + [ 7.885485, 47.4154259 ], + [ 7.8853328, 47.4153595 ], + [ 7.8852703, 47.415278 ], + [ 7.8852402999999995, 47.4152315 ], + [ 7.8851744, 47.4151768 ], + [ 7.8850867000000004, 47.4151479 ], + [ 7.8849889, 47.4151208 ], + [ 7.884884, 47.4151035 ], + [ 7.8847805, 47.4150767 ], + [ 7.8846938, 47.4150375 ], + [ 7.8846239, 47.4149889 ], + [ 7.8845965, 47.414938 ], + [ 7.8846183, 47.4147866 ], + [ 7.8846059, 47.4146282 ], + [ 7.8845867, 47.4145579 ], + [ 7.8845427, 47.4144557 ], + [ 7.8845033, 47.4144072 ], + [ 7.8844398, 47.4143625 ], + [ 7.8843812, 47.4142318 ], + [ 7.8843521, 47.4141568 ], + [ 7.8843213, 47.4141085 ], + [ 7.8842737, 47.4140577 ], + [ 7.8842463, 47.4140612 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns177", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Mapprach - Hofmatt", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Mapprach - Hofmatt", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Mapprach - Hofmatt", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Mapprach - Hofmatt", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.1379968, 46.249398 ], + [ 6.1379948, 46.2492567 ], + [ 6.1379822, 46.2491157 ], + [ 6.137959, 46.2489754 ], + [ 6.1379252, 46.248836 ], + [ 6.1378809, 46.2486981 ], + [ 6.1378263, 46.248562 ], + [ 6.1377616, 46.2484281 ], + [ 6.1376868, 46.2482966 ], + [ 6.1376022, 46.2481681 ], + [ 6.137508, 46.2480429 ], + [ 6.1374045, 46.2479212 ], + [ 6.1372919, 46.2478034 ], + [ 6.1371706, 46.2476899 ], + [ 6.137041, 46.247581 ], + [ 6.1369033, 46.2474769 ], + [ 6.1367579, 46.247378 ], + [ 6.1366052, 46.2472844 ], + [ 6.1364458, 46.2471966 ], + [ 6.1362799, 46.2471146 ], + [ 6.136108, 46.2470388 ], + [ 6.1359307, 46.2469693 ], + [ 6.1357484, 46.2469064 ], + [ 6.1355615, 46.2468502 ], + [ 6.1353707, 46.2468008 ], + [ 6.1351765, 46.2467584 ], + [ 6.1349793, 46.2467232 ], + [ 6.1347797, 46.2466951 ], + [ 6.1345782, 46.2466743 ], + [ 6.1343755, 46.2466609 ], + [ 6.1341721, 46.2466548 ], + [ 6.1339684, 46.2466562 ], + [ 6.1337652, 46.2466649 ], + [ 6.1335628, 46.246681 ], + [ 6.133362, 46.2467045 ], + [ 6.1331632, 46.2467352 ], + [ 6.132967, 46.246773 ], + [ 6.132774, 46.246818 ], + [ 6.1325845, 46.2468698 ], + [ 6.1323993, 46.2469285 ], + [ 6.1322187, 46.2469939 ], + [ 6.1320433, 46.2470657 ], + [ 6.1318736, 46.2471437 ], + [ 6.13171, 46.2472279 ], + [ 6.131553, 46.2473178 ], + [ 6.1314029, 46.2474134 ], + [ 6.1312603, 46.2475142 ], + [ 6.1311255, 46.2476201 ], + [ 6.1309988, 46.2477307 ], + [ 6.1308807, 46.2478458 ], + [ 6.1307714, 46.247965 ], + [ 6.1306712, 46.2480881 ], + [ 6.1305805, 46.2482146 ], + [ 6.1304994, 46.2483442 ], + [ 6.1304283, 46.2484765 ], + [ 6.1303672, 46.2486113 ], + [ 6.1303163, 46.2487481 ], + [ 6.1302759, 46.2488866 ], + [ 6.1302459, 46.2490263 ], + [ 6.1302266, 46.249167 ], + [ 6.1302178, 46.2493082 ], + [ 6.1302198, 46.2494494 ], + [ 6.1302323, 46.2495905 ], + [ 6.1302556, 46.2497308 ], + [ 6.1302893, 46.2498702 ], + [ 6.1303335, 46.2500081 ], + [ 6.1303881, 46.2501442 ], + [ 6.1304529, 46.2502781 ], + [ 6.1305277, 46.2504096 ], + [ 6.1306123, 46.2505381 ], + [ 6.1307064, 46.2506633 ], + [ 6.13081, 46.250785 ], + [ 6.1309225, 46.2509028 ], + [ 6.1310438, 46.2510163 ], + [ 6.1311734, 46.2511252 ], + [ 6.1313111, 46.2512293 ], + [ 6.1314565, 46.2513283 ], + [ 6.1316091, 46.2514218 ], + [ 6.1317686, 46.2515097 ], + [ 6.1319345, 46.2515917 ], + [ 6.1321064, 46.2516675 ], + [ 6.1322837, 46.251737 ], + [ 6.1324661, 46.2517999 ], + [ 6.1326529, 46.2518561 ], + [ 6.1328437, 46.2519055 ], + [ 6.133038, 46.2519479 ], + [ 6.1332352, 46.2519832 ], + [ 6.1334348, 46.2520112 ], + [ 6.1336363, 46.252032 ], + [ 6.133839, 46.2520454 ], + [ 6.1340425, 46.2520515 ], + [ 6.1342462, 46.2520501 ], + [ 6.1344495, 46.2520414 ], + [ 6.1346518, 46.2520253 ], + [ 6.1348526, 46.2520018 ], + [ 6.1350514, 46.2519712 ], + [ 6.1352477, 46.2519333 ], + [ 6.1354407, 46.2518883 ], + [ 6.1356302, 46.2518365 ], + [ 6.1358154, 46.2517778 ], + [ 6.1359960000000004, 46.2517124 ], + [ 6.1361714, 46.2516406 ], + [ 6.1363412, 46.2515625 ], + [ 6.1365048, 46.2514784 ], + [ 6.1366618, 46.2513884 ], + [ 6.1368118, 46.2512929 ], + [ 6.1369545, 46.251192 ], + [ 6.1370893, 46.2510861 ], + [ 6.1372159, 46.2509755 ], + [ 6.1373341, 46.2508604 ], + [ 6.1374434, 46.2507412 ], + [ 6.1375435, 46.2506181 ], + [ 6.1376342, 46.2504917 ], + [ 6.1377153, 46.250362 ], + [ 6.1377864, 46.2502297 ], + [ 6.1378475, 46.2500949 ], + [ 6.1378983, 46.2499581 ], + [ 6.1379388, 46.2498196 ], + [ 6.1379687, 46.2496798 ], + [ 6.137988, 46.2495392 ], + [ 6.1379968, 46.249398 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0039", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Foretaille", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Foretaille", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Foretaille", + "lang" : "it-CH" + }, + { + "text" : "Substation Foretaille", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.843195, 47.462626 ], + [ 7.8429518, 47.4625405 ], + [ 7.8429333, 47.4625282 ], + [ 7.8428998, 47.4625229 ], + [ 7.8425714, 47.4623662 ], + [ 7.8422609, 47.4623356 ], + [ 7.842102, 47.462243 ], + [ 7.8420396, 47.4621449 ], + [ 7.8418946, 47.4621149 ], + [ 7.8418945, 47.4623327 ], + [ 7.841665, 47.4622944 ], + [ 7.8411864, 47.4622736 ], + [ 7.8407997, 47.4622004 ], + [ 7.8405938, 47.462196 ], + [ 7.8403215, 47.4621485 ], + [ 7.839571, 47.4618824 ], + [ 7.8390582, 47.4617115 ], + [ 7.8387711, 47.4616747 ], + [ 7.8382779, 47.4615678 ], + [ 7.838297, 47.4615327 ], + [ 7.8380814999999995, 47.4614846 ], + [ 7.8380244, 47.4615365 ], + [ 7.8379624, 47.4615929 ], + [ 7.8378833, 47.4615838 ], + [ 7.8376461, 47.4615564 ], + [ 7.8372243, 47.4615077 ], + [ 7.8370393, 47.4614864 ], + [ 7.8370386, 47.4614859 ], + [ 7.8369552, 47.4614762 ], + [ 7.8368804999999995, 47.4614675 ], + [ 7.8368073, 47.4614589 ], + [ 7.8367822, 47.4614692 ], + [ 7.8367502, 47.4614822 ], + [ 7.8367296, 47.4615838 ], + [ 7.837134, 47.4617894 ], + [ 7.8371503, 47.4617977 ], + [ 7.8372091, 47.4617986 ], + [ 7.8373516, 47.4618007 ], + [ 7.8373534, 47.4618133 ], + [ 7.8373661, 47.4619076 ], + [ 7.8377056, 47.4619133 ], + [ 7.8379585, 47.4619432 ], + [ 7.8382408, 47.4619583 ], + [ 7.8384992, 47.4619686 ], + [ 7.8387047, 47.4619951 ], + [ 7.8389683, 47.4620875 ], + [ 7.8391689, 47.4621606 ], + [ 7.8394373, 47.4622501 ], + [ 7.8396063, 47.4623215 ], + [ 7.839692, 47.4623457 ], + [ 7.8398377, 47.4623867 ], + [ 7.8399875, 47.4624187 ], + [ 7.8402107, 47.4624658 ], + [ 7.8405393, 47.4624795 ], + [ 7.8408487000000004, 47.4624783 ], + [ 7.841149, 47.4625133 ], + [ 7.8415707999999995, 47.4625616 ], + [ 7.8419389, 47.4625874 ], + [ 7.8420286, 47.4625815 ], + [ 7.8423037, 47.4625634 ], + [ 7.8425803, 47.462576 ], + [ 7.8426101, 47.4625797 ], + [ 7.8426390999999995, 47.4625857 ], + [ 7.8426651, 47.4625932 ], + [ 7.8426909, 47.4626031 ], + [ 7.8427147, 47.4626148 ], + [ 7.842715, 47.4626149 ], + [ 7.8427369, 47.4626284 ], + [ 7.8427565, 47.4626435 ], + [ 7.8427734000000004, 47.46266 ], + [ 7.8427787, 47.462668 ], + [ 7.8428048, 47.4627075 ], + [ 7.8428144, 47.4627352 ], + [ 7.8428291, 47.462778 ], + [ 7.8428369, 47.4628008 ], + [ 7.8428504, 47.4628948 ], + [ 7.8428667, 47.4630082 ], + [ 7.8429778, 47.463273 ], + [ 7.8430073, 47.4631843 ], + [ 7.8430114, 47.4631723 ], + [ 7.8429974, 47.4631372 ], + [ 7.8429474, 47.4627754 ], + [ 7.8429418, 47.4627354 ], + [ 7.8430792, 47.46268 ], + [ 7.8431067, 47.4626688 ], + [ 7.8431314, 47.4626589 ], + [ 7.8431922, 47.4626344 ], + [ 7.843195, 47.462626 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr087", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Hochstatt", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Hochstatt", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Hochstatt", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Hochstatt", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5055454, 47.4450709 ], + [ 7.5055461, 47.4450716 ], + [ 7.5055504, 47.4450756 ], + [ 7.505552, 47.4450771 ], + [ 7.5056461, 47.4452087 ], + [ 7.5060047, 47.4455888 ], + [ 7.5065869, 47.4464982 ], + [ 7.5071696, 47.4466414 ], + [ 7.5074538, 47.4466938 ], + [ 7.5076260999999995, 47.4467871 ], + [ 7.5077472, 47.4472192 ], + [ 7.5078765, 47.4473944 ], + [ 7.5082132, 47.4480599 ], + [ 7.5081444, 47.4481476 ], + [ 7.5082051, 47.4484687 ], + [ 7.5083257, 47.4485388 ], + [ 7.5085844, 47.4488832 ], + [ 7.5086024, 47.4494964 ], + [ 7.508551, 47.4496541 ], + [ 7.5083919, 47.4498323 ], + [ 7.508393, 47.4498389 ], + [ 7.5089389, 47.4497982 ], + [ 7.5089416, 47.4498014 ], + [ 7.5090951, 47.4497693 ], + [ 7.5093665, 47.4496009 ], + [ 7.5097088, 47.4494806 ], + [ 7.5099801, 47.4492721 ], + [ 7.5102162, 47.4491679 ], + [ 7.5104287, 47.4491197 ], + [ 7.5106411, 47.4490554 ], + [ 7.5110425, 47.448927 ], + [ 7.511243, 47.4487587 ], + [ 7.51129, 47.4486065 ], + [ 7.5112898, 47.4484543 ], + [ 7.511418, 47.4482393 ], + [ 7.5116537999999995, 47.4479428 ], + [ 7.5119013, 47.4475982 ], + [ 7.5122551, 47.4472695 ], + [ 7.51255, 47.446965 ], + [ 7.5130094, 47.4462037 ], + [ 7.5132314000000004, 47.4459892 ], + [ 7.5138568, 47.4456763 ], + [ 7.5143996, 47.4453716 ], + [ 7.5147062, 47.4451151 ], + [ 7.5150933, 47.4447166 ], + [ 7.5156829, 47.4441796 ], + [ 7.5158596, 47.443859 ], + [ 7.5159652, 47.4434344 ], + [ 7.516093, 47.4429 ], + [ 7.5163042, 47.4420187 ], + [ 7.5163038, 47.4416823 ], + [ 7.5163028, 47.4410411 ], + [ 7.5163028, 47.4410379 ], + [ 7.5162645, 47.4410312 ], + [ 7.5131016, 47.4417354 ], + [ 7.5112655, 47.4424559 ], + [ 7.509449, 47.4431746 ], + [ 7.5076912, 47.4438913 ], + [ 7.5065735, 47.4445019 ], + [ 7.5055454, 47.4450709 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr004", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Rittenberg", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Rittenberg", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Rittenberg", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Rittenberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.644782, 46.5166061 ], + [ 6.6445263, 46.5166101 ], + [ 6.6442714, 46.5166256 ], + [ 6.6440186, 46.5166526 ], + [ 6.6437688999999995, 46.5166909 ], + [ 6.6435234, 46.5167405 ], + [ 6.6432831, 46.516801 ], + [ 6.6430489999999995, 46.5168723 ], + [ 6.6428222, 46.5169539 ], + [ 6.6427078, 46.5170002 ], + [ 6.6425059, 46.5170624 ], + [ 6.6422791, 46.5171441 ], + [ 6.6420604999999995, 46.5172358 ], + [ 6.6419816, 46.5172724 ], + [ 6.6417856, 46.5173655 ], + [ 6.6416550999999995, 46.5174304 ], + [ 6.6414557, 46.517541 ], + [ 6.6412673, 46.5176604 ], + [ 6.641148, 46.5177447 ], + [ 6.6410064, 46.5178247 ], + [ 6.640818, 46.5179441 ], + [ 6.6406412, 46.5180718 ], + [ 6.6404769, 46.5182072 ], + [ 6.6403258, 46.5183496 ], + [ 6.6401885, 46.5184986 ], + [ 6.6400656, 46.5186535 ], + [ 6.6399576, 46.5188136 ], + [ 6.6398651, 46.5189783 ], + [ 6.6397883, 46.5191467 ], + [ 6.6397277, 46.5193183 ], + [ 6.6396835, 46.5194922 ], + [ 6.6396558, 46.5196678 ], + [ 6.6396448, 46.5198442 ], + [ 6.6396505999999995, 46.5200208 ], + [ 6.6396730999999996, 46.5201967 ], + [ 6.6397121, 46.5203712 ], + [ 6.6397677, 46.5205436 ], + [ 6.6398395, 46.5207131 ], + [ 6.6399270999999995, 46.520879 ], + [ 6.6400303, 46.5210406 ], + [ 6.6401486, 46.5211972 ], + [ 6.6402815, 46.5213481 ], + [ 6.6403396, 46.5214077 ], + [ 6.6404889, 46.5215566 ], + [ 6.6405777, 46.5216416 ], + [ 6.6406049, 46.5216663 ], + [ 6.6406495, 46.5217108 ], + [ 6.6407407, 46.5217982 ], + [ 6.6409009999999995, 46.5219359 ], + [ 6.641074, 46.522066 ], + [ 6.6412589, 46.522188 ], + [ 6.641455, 46.5223014 ], + [ 6.6416614, 46.5224058 ], + [ 6.6418773, 46.5225005 ], + [ 6.6421016999999996, 46.5225854 ], + [ 6.6423336, 46.5226599 ], + [ 6.6425722, 46.5227238 ], + [ 6.6428162, 46.5227767 ], + [ 6.6430648, 46.5228186 ], + [ 6.6433167, 46.5228491 ], + [ 6.6435711, 46.5228682 ], + [ 6.6438267, 46.5228758 ], + [ 6.6440825, 46.5228718 ], + [ 6.6443373, 46.5228563 ], + [ 6.6445902, 46.5228293 ], + [ 6.6448399, 46.5227909 ], + [ 6.6450855, 46.5227414 ], + [ 6.6453258, 46.5226808 ], + [ 6.6455599, 46.5226096 ], + [ 6.6456405, 46.5225821 ], + [ 6.6457277, 46.5225587 ], + [ 6.6457824, 46.5225431 ], + [ 6.645823, 46.5225333 ], + [ 6.6458264, 46.5225325 ], + [ 6.645951, 46.5225002 ], + [ 6.6459543, 46.5224993 ], + [ 6.6459768, 46.5224931 ], + [ 6.6460466, 46.5224732 ], + [ 6.6460498999999995, 46.5224722 ], + [ 6.6461542, 46.5224403 ], + [ 6.6461575, 46.5224393 ], + [ 6.6462176, 46.5224198 ], + [ 6.6462595, 46.5224057 ], + [ 6.6462627, 46.5224046 ], + [ 6.6463744, 46.5223648 ], + [ 6.6463776, 46.5223637 ], + [ 6.6464508, 46.5223358 ], + [ 6.6464661, 46.5223299 ], + [ 6.6464692, 46.5223287 ], + [ 6.6465669, 46.5222889 ], + [ 6.6465700000000005, 46.5222876 ], + [ 6.6466723, 46.5222431 ], + [ 6.6466753, 46.5222418 ], + [ 6.6466787, 46.5222402 ], + [ 6.6467596, 46.5222027 ], + [ 6.6467626, 46.5222013 ], + [ 6.6468634, 46.5221516 ], + [ 6.6468663, 46.5221502 ], + [ 6.6468941, 46.5221359 ], + [ 6.6469517, 46.5221054 ], + [ 6.6469545, 46.5221039 ], + [ 6.6470416, 46.5220556 ], + [ 6.6470444, 46.522054 ], + [ 6.6470991, 46.5220221 ], + [ 6.6471268, 46.5220055 ], + [ 6.6471295999999995, 46.5220039 ], + [ 6.6472257, 46.5219438 ], + [ 6.6472283, 46.5219421 ], + [ 6.647293, 46.5218993 ], + [ 6.6473001, 46.5218945 ], + [ 6.6473027, 46.5218928 ], + [ 6.6473864, 46.5218341 ], + [ 6.6473889, 46.5218323 ], + [ 6.6474565, 46.5217821 ], + [ 6.647459, 46.5217803 ], + [ 6.6474773, 46.5217663 ], + [ 6.6475444, 46.5217131 ], + [ 6.6475466999999995, 46.5217112 ], + [ 6.6475736, 46.5216891 ], + [ 6.647652, 46.5216304 ], + [ 6.6477109, 46.521584 ], + [ 6.647779, 46.521539 ], + [ 6.6479558, 46.5214113 ], + [ 6.6481201, 46.5212759 ], + [ 6.6482712, 46.5211334 ], + [ 6.6484085, 46.5209844 ], + [ 6.6485313, 46.5208295 ], + [ 6.6486392, 46.5206694 ], + [ 6.6487318, 46.5205048 ], + [ 6.6488085, 46.5203363 ], + [ 6.6488691, 46.5201647 ], + [ 6.6489133, 46.5199908 ], + [ 6.648941, 46.5198152 ], + [ 6.6489519, 46.5196388 ], + [ 6.6489461, 46.5194622 ], + [ 6.6489236, 46.5192863 ], + [ 6.6488845, 46.5191118 ], + [ 6.6488289, 46.5189394 ], + [ 6.6487571, 46.5187699 ], + [ 6.6486694, 46.518604 ], + [ 6.6485662, 46.5184424 ], + [ 6.6484479, 46.5182859 ], + [ 6.648315, 46.518135 ], + [ 6.6482588, 46.5180772 ], + [ 6.6482194, 46.5180379 ], + [ 6.6481637, 46.5179773 ], + [ 6.6481101, 46.5179223 ], + [ 6.6479612, 46.5177731 ], + [ 6.6478678, 46.5176835 ], + [ 6.6477075, 46.5175459 ], + [ 6.6475345, 46.5174158 ], + [ 6.6473496, 46.5172938 ], + [ 6.6471535, 46.5171804 ], + [ 6.6469471, 46.517076 ], + [ 6.6467312, 46.5169813 ], + [ 6.6465068, 46.5168965 ], + [ 6.6462749, 46.516822 ], + [ 6.6460364, 46.5167581 ], + [ 6.6457923999999995, 46.5167051 ], + [ 6.6455439, 46.5166633 ], + [ 6.6452919, 46.5166327 ], + [ 6.6450376, 46.5166136 ], + [ 6.644782, 46.5166061 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00027", + "country" : "CHE", + "name" : [ + { + "text" : "Tribunal fédéral", + "lang" : "de-CH" + }, + { + "text" : "Tribunal fédéral", + "lang" : "fr-CH" + }, + { + "text" : "Tribunal fédéral", + "lang" : "it-CH" + }, + { + "text" : "Tribunal fédéral", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kantonspolizei Waadt", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale vaudoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Vaud", + "lang" : "it-CH" + }, + { + "text" : "Vaud Cantonal Police", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.pcv@vd.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.6631964, 46.3760339 ], + [ 9.6631852, 46.3758928 ], + [ 9.6631635, 46.3757523 ], + [ 9.6631311, 46.3756128 ], + [ 9.6630882, 46.3754747 ], + [ 9.6630349, 46.3753383 ], + [ 9.6629714, 46.375204 ], + [ 9.6628979, 46.3750722 ], + [ 9.6628144, 46.3749433 ], + [ 9.6627214, 46.3748175 ], + [ 9.6626189, 46.3746953 ], + [ 9.662507399999999, 46.374577 ], + [ 9.662387, 46.3744629 ], + [ 9.6622582, 46.3743533 ], + [ 9.6621213, 46.3742485 ], + [ 9.6619767, 46.3741488 ], + [ 9.6618247, 46.3740545 ], + [ 9.6616658, 46.3739658 ], + [ 9.6615004, 46.373883 ], + [ 9.6613289, 46.3738063 ], + [ 9.6611519, 46.3737359 ], + [ 9.6609699, 46.3736721 ], + [ 9.660783200000001, 46.3736149 ], + [ 9.6605925, 46.3735645 ], + [ 9.6603982, 46.3735211 ], + [ 9.6602009, 46.3734849 ], + [ 9.6600012, 46.3734558 ], + [ 9.6597995, 46.373434 ], + [ 9.6595965, 46.3734195 ], + [ 9.6593926, 46.3734124 ], + [ 9.659188499999999, 46.3734127 ], + [ 9.6589846, 46.3734204 ], + [ 9.6587817, 46.3734355 ], + [ 9.6585801, 46.3734579 ], + [ 9.6583806, 46.3734876 ], + [ 9.6581835, 46.3735244 ], + [ 9.6579895, 46.3735684 ], + [ 9.6577991, 46.3736193 ], + [ 9.6576128, 46.373677 ], + [ 9.6574311, 46.3737414 ], + [ 9.6572546, 46.3738123 ], + [ 9.6570836, 46.3738895 ], + [ 9.6569187, 46.3739728 ], + [ 9.6567604, 46.3740619 ], + [ 9.6566089, 46.3741567 ], + [ 9.6564649, 46.3742568 ], + [ 9.6563286, 46.374362 ], + [ 9.6562005, 46.374472 ], + [ 9.6560809, 46.3745865 ], + [ 9.6559701, 46.3747051 ], + [ 9.6558684, 46.3748276 ], + [ 9.6557761, 46.3749537 ], + [ 9.6556934, 46.3750829 ], + [ 9.6556207, 46.3752149 ], + [ 9.655558, 46.3753493 ], + [ 9.6555056, 46.3754859 ], + [ 9.6554636, 46.3756241 ], + [ 9.655432, 46.3757637 ], + [ 9.6554111, 46.3759043 ], + [ 9.6554009, 46.3760454 ], + [ 9.6554013, 46.3761867 ], + [ 9.6554124, 46.3763277 ], + [ 9.6554342, 46.3764682 ], + [ 9.6554665, 46.3766077 ], + [ 9.6555094, 46.3767459 ], + [ 9.6555626, 46.3768823 ], + [ 9.6556261, 46.3770165 ], + [ 9.6556997, 46.3771483 ], + [ 9.6557831, 46.3772773 ], + [ 9.6558761, 46.377403 ], + [ 9.6559786, 46.3775253 ], + [ 9.6560901, 46.3776436 ], + [ 9.656210399999999, 46.3777577 ], + [ 9.6563392, 46.3778673 ], + [ 9.6564762, 46.3779721 ], + [ 9.6566208, 46.3780718 ], + [ 9.6567728, 46.3781661 ], + [ 9.6569317, 46.3782548 ], + [ 9.6570971, 46.3783376 ], + [ 9.6572686, 46.3784143 ], + [ 9.657445599999999, 46.3784847 ], + [ 9.657627699999999, 46.3785486 ], + [ 9.6578143, 46.3786058 ], + [ 9.6580051, 46.3786562 ], + [ 9.6581993, 46.3786995 ], + [ 9.6583966, 46.3787358 ], + [ 9.6585964, 46.3787649 ], + [ 9.6587981, 46.3787867 ], + [ 9.6590012, 46.3788012 ], + [ 9.6592051, 46.3788083 ], + [ 9.6594092, 46.378808 ], + [ 9.659613, 46.3788003 ], + [ 9.659816, 46.3787852 ], + [ 9.6600176, 46.3787628 ], + [ 9.6602172, 46.3787331 ], + [ 9.6604142, 46.3786963 ], + [ 9.6606083, 46.3786523 ], + [ 9.6607987, 46.3786014 ], + [ 9.660985, 46.3785437 ], + [ 9.6611667, 46.3784792 ], + [ 9.6613433, 46.3784083 ], + [ 9.6615142, 46.3783311 ], + [ 9.6616791, 46.3782478 ], + [ 9.6618375, 46.3781587 ], + [ 9.6619889, 46.3780639 ], + [ 9.6621329, 46.3779638 ], + [ 9.6622692, 46.3778586 ], + [ 9.6623973, 46.3777486 ], + [ 9.662517, 46.3776341 ], + [ 9.6626278, 46.3775155 ], + [ 9.6627295, 46.3773929 ], + [ 9.6628217, 46.3772669 ], + [ 9.6629044, 46.3771377 ], + [ 9.662977099999999, 46.3770057 ], + [ 9.6630398, 46.3768712 ], + [ 9.6630922, 46.3767347 ], + [ 9.6631342, 46.3765964 ], + [ 9.6631657, 46.3764568 ], + [ 9.6631866, 46.3763163 ], + [ 9.6631968, 46.3761752 ], + [ 9.6631964, 46.3760339 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0066", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Löbbia", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Löbbia", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Löbbia", + "lang" : "it-CH" + }, + { + "text" : "Substation Löbbia", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.030215, 46.1905824 ], + [ 6.0302133, 46.1904411 ], + [ 6.030201, 46.1903001 ], + [ 6.0301781, 46.1901597 ], + [ 6.0301446, 46.1900204 ], + [ 6.0301007, 46.1898824 ], + [ 6.0300464, 46.1897463 ], + [ 6.029982, 46.1896122 ], + [ 6.0299075, 46.1894808 ], + [ 6.0298233, 46.1893522 ], + [ 6.0297294, 46.1892268 ], + [ 6.0296263, 46.189105 ], + [ 6.0295141, 46.1889872 ], + [ 6.0293932, 46.1888736 ], + [ 6.0292638, 46.1887645 ], + [ 6.0291265, 46.1886603 ], + [ 6.0289815, 46.1885612 ], + [ 6.0288292, 46.1884675 ], + [ 6.0286701, 46.1883795 ], + [ 6.0285045, 46.1882974 ], + [ 6.028333, 46.1882214 ], + [ 6.028156, 46.1881518 ], + [ 6.027974, 46.1880887 ], + [ 6.0277875, 46.1880323 ], + [ 6.027597, 46.1879827 ], + [ 6.027403, 46.1879401 ], + [ 6.0272061, 46.1879047 ], + [ 6.0270068, 46.1878764 ], + [ 6.0268056, 46.1878555 ], + [ 6.0266031, 46.1878419 ], + [ 6.0263999, 46.1878356 ], + [ 6.0261965, 46.1878368 ], + [ 6.0259934, 46.1878453 ], + [ 6.0257913, 46.1878612 ], + [ 6.0255906, 46.1878845 ], + [ 6.025392, 46.187915 ], + [ 6.0251959, 46.1879526 ], + [ 6.025003, 46.1879974 ], + [ 6.0248137, 46.1880491 ], + [ 6.0246285, 46.1881076 ], + [ 6.024448, 46.1881728 ], + [ 6.0242727, 46.1882444 ], + [ 6.0241029, 46.1883223 ], + [ 6.0239394, 46.1884063 ], + [ 6.0237823, 46.1884961 ], + [ 6.0236322, 46.1885915 ], + [ 6.0234895999999996, 46.1886922 ], + [ 6.0233547, 46.188798 ], + [ 6.0232279, 46.1889085 ], + [ 6.0231097, 46.1890234 ], + [ 6.0230003, 46.1891426 ], + [ 6.0229, 46.1892655 ], + [ 6.0228091, 46.1893919 ], + [ 6.0227279, 46.1895214 ], + [ 6.0226565, 46.1896537 ], + [ 6.0225952, 46.1897884 ], + [ 6.0225442, 46.1899252 ], + [ 6.0225035, 46.1900636 ], + [ 6.0224733, 46.1902034 ], + [ 6.0224537, 46.190344 ], + [ 6.0224447, 46.1904851 ], + [ 6.0224463, 46.1906264 ], + [ 6.0224586, 46.1907675 ], + [ 6.0224815, 46.1909078 ], + [ 6.022515, 46.1910472 ], + [ 6.0225589, 46.1911852 ], + [ 6.0226131, 46.1913213 ], + [ 6.0226776, 46.1914553 ], + [ 6.022752, 46.1915868 ], + [ 6.0228363, 46.1917154 ], + [ 6.0229301, 46.1918408 ], + [ 6.0230332, 46.1919626 ], + [ 6.0231454, 46.1920804 ], + [ 6.0232663, 46.1921941 ], + [ 6.0233956, 46.1923031 ], + [ 6.023533, 46.1924074 ], + [ 6.023678, 46.1925064 ], + [ 6.0238303, 46.1926001 ], + [ 6.0239894, 46.1926882 ], + [ 6.024155, 46.1927703 ], + [ 6.0243265, 46.1928463 ], + [ 6.0245035, 46.1929159 ], + [ 6.0246855, 46.192979 ], + [ 6.0248721, 46.1930354 ], + [ 6.0250626, 46.193085 ], + [ 6.0252566, 46.1931276 ], + [ 6.0254535, 46.193163 ], + [ 6.0256529, 46.1931913 ], + [ 6.025854, 46.1932122 ], + [ 6.0260565, 46.1932258 ], + [ 6.0262598, 46.1932321 ], + [ 6.0264632, 46.1932309 ], + [ 6.0266663, 46.1932224 ], + [ 6.0268685, 46.1932065 ], + [ 6.0270691, 46.1931832 ], + [ 6.0272678, 46.1931527 ], + [ 6.0274639, 46.1931151 ], + [ 6.0276568, 46.1930703 ], + [ 6.0278462, 46.1930186 ], + [ 6.0280313, 46.1929601 ], + [ 6.0282118, 46.1928949 ], + [ 6.0283872, 46.1928233 ], + [ 6.0285569, 46.1927453 ], + [ 6.0287205, 46.1926614 ], + [ 6.0288776, 46.1925716 ], + [ 6.0290276, 46.1924762 ], + [ 6.0291703, 46.1923754 ], + [ 6.0293052, 46.1922697 ], + [ 6.0294319, 46.1921592 ], + [ 6.0295502, 46.1920442 ], + [ 6.0296596, 46.191925 ], + [ 6.0297598, 46.1918021 ], + [ 6.0298507, 46.1916757 ], + [ 6.0299319, 46.1915462 ], + [ 6.0300033, 46.1914139 ], + [ 6.0300645, 46.1912791 ], + [ 6.0301156, 46.1911424 ], + [ 6.0301563, 46.1910039 ], + [ 6.0301864, 46.1908642 ], + [ 6.030206, 46.1907236 ], + [ 6.030215, 46.1905824 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0124", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Verbois", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Verbois", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Verbois", + "lang" : "it-CH" + }, + { + "text" : "Substation Verbois", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5107009, 47.437909 ], + [ 7.5105383, 47.4380297 ], + [ 7.5099806000000005, 47.4384431 ], + [ 7.5089036, 47.4392413 ], + [ 7.5080732999999995, 47.4400674 ], + [ 7.5077179, 47.4404145 ], + [ 7.507091, 47.4410412 ], + [ 7.5061271, 47.4420174 ], + [ 7.5059605, 47.4429047 ], + [ 7.5057036, 47.4442382 ], + [ 7.5056613, 47.444453 ], + [ 7.5055387, 47.4450746 ], + [ 7.5065735, 47.4445017 ], + [ 7.5076912, 47.4438913 ], + [ 7.5082427, 47.4436664 ], + [ 7.509449, 47.4431746 ], + [ 7.5101174, 47.4429101 ], + [ 7.5112655, 47.4424559 ], + [ 7.5120897, 47.4421325 ], + [ 7.5131016, 47.4417354 ], + [ 7.5146093, 47.4413998 ], + [ 7.5158816999999996, 47.4411164 ], + [ 7.5162645, 47.4410312 ], + [ 7.5164713, 47.4410671 ], + [ 7.516376, 47.440591 ], + [ 7.5164713, 47.4400468 ], + [ 7.5165972, 47.4396367 ], + [ 7.5166443, 47.4395837 ], + [ 7.5163683, 47.4395299 ], + [ 7.5161845, 47.4394707 ], + [ 7.5161262, 47.4395517 ], + [ 7.516031, 47.4395328 ], + [ 7.5158577, 47.4394982 ], + [ 7.5158521, 47.4393506 ], + [ 7.5159614999999995, 47.4392073 ], + [ 7.5161526, 47.4391167 ], + [ 7.5161781, 47.439001 ], + [ 7.5161897, 47.438953 ], + [ 7.5161166999999995, 47.4388881 ], + [ 7.5160392, 47.4388493 ], + [ 7.5159578, 47.4388147 ], + [ 7.5158273, 47.4387967 ], + [ 7.5158237, 47.4387806 ], + [ 7.5157943, 47.4387372 ], + [ 7.5157387, 47.4386725 ], + [ 7.5157235, 47.4386548 ], + [ 7.5157181, 47.4386422 ], + [ 7.5159705, 47.4386008 ], + [ 7.5160264, 47.4385887 ], + [ 7.5161059, 47.4385845 ], + [ 7.5162192, 47.4385664 ], + [ 7.516258, 47.4385603 ], + [ 7.5165002, 47.4385227 ], + [ 7.5165766, 47.4385104 ], + [ 7.5166146, 47.4385038 ], + [ 7.5166524, 47.4384968 ], + [ 7.5166901, 47.4384895 ], + [ 7.5167359000000005, 47.43848 ], + [ 7.5167814, 47.4384701 ], + [ 7.5168267, 47.4384596 ], + [ 7.5168717, 47.4384487 ], + [ 7.5169163999999995, 47.4384373 ], + [ 7.5170642, 47.4384018 ], + [ 7.5168665, 47.4382332 ], + [ 7.5167712, 47.4381519 ], + [ 7.5167497, 47.4381406 ], + [ 7.5165295, 47.4380243 ], + [ 7.5166516, 47.4379574 ], + [ 7.5167076999999995, 47.4378888 ], + [ 7.5167775, 47.4377269 ], + [ 7.5168847, 47.4376102 ], + [ 7.5170770000000005, 47.4374295 ], + [ 7.5173224, 47.4372254 ], + [ 7.5176735, 47.4369603 ], + [ 7.5177632, 47.4368977 ], + [ 7.5178722, 47.4368299 ], + [ 7.5181254, 47.4366998 ], + [ 7.5181445, 47.436694 ], + [ 7.5182043, 47.4366425 ], + [ 7.5182562, 47.4366244 ], + [ 7.5182888, 47.4366115 ], + [ 7.5183102, 47.436603 ], + [ 7.5182788, 47.436577 ], + [ 7.5172194999999995, 47.4357688 ], + [ 7.5161447, 47.4349271 ], + [ 7.5161312, 47.4349292 ], + [ 7.5161493, 47.4349536 ], + [ 7.5160704, 47.4350149 ], + [ 7.5159111, 47.4351366 ], + [ 7.5158209, 47.4352112 ], + [ 7.5157005, 47.4353488 ], + [ 7.5156269, 47.4354317 ], + [ 7.5154378, 47.4355703 ], + [ 7.5153178, 47.4356785 ], + [ 7.5151864, 47.4358245 ], + [ 7.5150731, 47.4359666 ], + [ 7.5149713, 47.4360875 ], + [ 7.5148323, 47.4362167 ], + [ 7.5147488, 47.4363004 ], + [ 7.5147105, 47.4363388 ], + [ 7.5146761, 47.4362664 ], + [ 7.5146492, 47.4362267 ], + [ 7.5145877, 47.4362001 ], + [ 7.5144718, 47.4361774 ], + [ 7.5142739, 47.4361782 ], + [ 7.5139964, 47.4362111 ], + [ 7.51377, 47.4362545 ], + [ 7.5135445, 47.4363083 ], + [ 7.5131684, 47.4364279 ], + [ 7.5129168, 47.4365182 ], + [ 7.5127076, 47.4366007 ], + [ 7.5125215, 47.4366868 ], + [ 7.5123291, 47.4367953 ], + [ 7.5120953, 47.4369232 ], + [ 7.511937, 47.4369915 ], + [ 7.5107009, 47.437909 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns124", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Sunnenrain", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Sunnenrain", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Sunnenrain", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Sunnenrain", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.3283702, 47.3777824 ], + [ 8.3284092, 47.3777927 ], + [ 8.3284378, 47.3778126 ], + [ 8.3284936, 47.3778047 ], + [ 8.3285271, 47.377801 ], + [ 8.3285395, 47.377793 ], + [ 8.3285434, 47.3777867 ], + [ 8.328562699999999, 47.3777547 ], + [ 8.3286345, 47.3776714 ], + [ 8.3286972, 47.3776079 ], + [ 8.3287267, 47.3775664 ], + [ 8.3287791, 47.3774892 ], + [ 8.3287941, 47.377454 ], + [ 8.3287963, 47.3774345 ], + [ 8.3287866, 47.3774162 ], + [ 8.3287616, 47.3774261 ], + [ 8.3287032, 47.3774686 ], + [ 8.3286241, 47.3775244 ], + [ 8.3285681, 47.3775738 ], + [ 8.3284934, 47.3776146 ], + [ 8.3283973, 47.3776647 ], + [ 8.3283111, 47.3777167 ], + [ 8.3282655, 47.3777399 ], + [ 8.3281575, 47.3777723 ], + [ 8.3280343, 47.377811 ], + [ 8.3280061, 47.3778305 ], + [ 8.3280128, 47.3778423 ], + [ 8.3280446, 47.3778467 ], + [ 8.3281072, 47.3778456 ], + [ 8.328141, 47.377847 ], + [ 8.3282093, 47.3778313 ], + [ 8.3282354, 47.3778308 ], + [ 8.3282685, 47.3778332 ], + [ 8.3283183, 47.3778298 ], + [ 8.3283489, 47.3778207 ], + [ 8.3283444, 47.3778099 ], + [ 8.3283312, 47.3777946 ], + [ 8.3283428, 47.3777834 ], + [ 8.3283702, 47.3777824 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "KTAG503", + "country" : "CHE", + "name" : [ + { + "text" : "Alte Reuss", + "lang" : "de-CH" + }, + { + "text" : "Alte Reuss", + "lang" : "fr-CH" + }, + { + "text" : "Alte Reuss", + "lang" : "it-CH" + }, + { + "text" : "Alte Reuss", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "regulationExemption" : "NO", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "schedule" : [ + { + "day" : [ "ANY" ], + "startTime" : "00:00:00.00+01:00", + "endTime" : "00:00:00.00+01:00" + } + ] + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Aargau", + "lang" : "de-CH" + }, + { + "text" : "Canton d'Argovie", + "lang" : "fr-CH" + }, + { + "text" : "Canton Argovia", + "lang" : "it-CH" + }, + { + "text" : "Canton of Aargau", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Departement Bau, Verkehr und Umwelt (BVU)", + "lang" : "de-CH" + }, + { + "text" : "Département de la construction, des transports et de l'environnement (CTE)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento delle costruzioni, dei trasporti e dell'ambiente (CTA)", + "lang" : "it-CH" + }, + { + "text" : "Department of Civil Engineering,Transport and Environment (CTE)", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Sektion Gewässernutzung", + "lang" : "de-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "fr-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "it-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ag.ch/de/verwaltung/bvu/umwelt-natur-landschaft/hochwasserschutz-gewaesser/gewaessernutzung", + "email" : "alg@ag.ch", + "phone" : "0041 62 835 34 50", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.6332598, 46.5307986 ], + [ 6.6332656, 46.5309751 ], + [ 6.633288, 46.531151 ], + [ 6.6333271, 46.5313256 ], + [ 6.6333336, 46.5313488 ], + [ 6.6333348, 46.5313531 ], + [ 6.6333903, 46.5315255 ], + [ 6.6334621, 46.531695 ], + [ 6.6335498, 46.531861 ], + [ 6.633653, 46.5320226 ], + [ 6.6337713, 46.5321791 ], + [ 6.6339041, 46.5323301 ], + [ 6.6340509999999995, 46.5324747 ], + [ 6.6342113, 46.5326123 ], + [ 6.6343843, 46.5327424 ], + [ 6.6345693, 46.5328645 ], + [ 6.6347654, 46.5329779 ], + [ 6.6349719, 46.5330822 ], + [ 6.6351878, 46.533177 ], + [ 6.6352322, 46.5331949 ], + [ 6.6353176, 46.5332287 ], + [ 6.6353192, 46.5332293 ], + [ 6.6353327, 46.5332347 ], + [ 6.6354681, 46.5332888 ], + [ 6.6354941, 46.533299 ], + [ 6.6355002, 46.5333014 ], + [ 6.6356356, 46.5333553 ], + [ 6.6356565, 46.5333636 ], + [ 6.6356649, 46.5333669 ], + [ 6.6357509, 46.5334011 ], + [ 6.635756, 46.5334031 ], + [ 6.6357607, 46.533405 ], + [ 6.6358422, 46.5334382 ], + [ 6.6360619, 46.5335211 ], + [ 6.6362939, 46.5335957 ], + [ 6.6365324999999995, 46.5336595 ], + [ 6.6367766, 46.5337125 ], + [ 6.6370252, 46.5337544 ], + [ 6.6372772, 46.5337849 ], + [ 6.6375316, 46.5338041 ], + [ 6.6377873, 46.5338116 ], + [ 6.6380431, 46.5338077 ], + [ 6.638298, 46.5337921 ], + [ 6.6384003, 46.5337826 ], + [ 6.6386061, 46.5337598 ], + [ 6.6388559, 46.5337215 ], + [ 6.6391015, 46.5336719 ], + [ 6.6393419, 46.5336114 ], + [ 6.6395761, 46.5335402 ], + [ 6.6396144, 46.5335273 ], + [ 6.6397884, 46.533468 ], + [ 6.6399769, 46.5333992 ], + [ 6.6401956, 46.5333075 ], + [ 6.6404051, 46.5332061 ], + [ 6.6406046, 46.5330954 ], + [ 6.6407931, 46.532976 ], + [ 6.6409699, 46.5328484 ], + [ 6.6411343, 46.532713 ], + [ 6.6412854, 46.5325705 ], + [ 6.6414228, 46.5324215 ], + [ 6.6415457, 46.5322666 ], + [ 6.6416536, 46.5321065 ], + [ 6.6417462, 46.5319419 ], + [ 6.6417684, 46.531897 ], + [ 6.6418102, 46.5318187 ], + [ 6.641887, 46.5316502 ], + [ 6.6419476, 46.5314786 ], + [ 6.6419918, 46.5313047 ], + [ 6.6420195, 46.5311291 ], + [ 6.6420305, 46.5309527 ], + [ 6.6420247, 46.5307761 ], + [ 6.6420072999999995, 46.5306305 ], + [ 6.642003, 46.5304025 ], + [ 6.6419805, 46.5302265 ], + [ 6.6419414, 46.530052 ], + [ 6.6418858, 46.5298796 ], + [ 6.6418140999999995, 46.5297101 ], + [ 6.6417264, 46.5295442 ], + [ 6.6416231, 46.5293826 ], + [ 6.6416047, 46.5293565 ], + [ 6.6415066, 46.529219499999996 ], + [ 6.6414067, 46.529089 ], + [ 6.6412738000000004, 46.5289381 ], + [ 6.6411269, 46.5287935 ], + [ 6.6409666, 46.5286559 ], + [ 6.6407936, 46.5285257 ], + [ 6.6406087, 46.5284037 ], + [ 6.6404126, 46.5282903 ], + [ 6.6402061, 46.528186 ], + [ 6.6399902, 46.5280912 ], + [ 6.6397658, 46.5280064 ], + [ 6.6395338, 46.5279318 ], + [ 6.6392953, 46.527868 ], + [ 6.6390512, 46.527815 ], + [ 6.6388027, 46.5277731 ], + [ 6.6385506, 46.5277426 ], + [ 6.6382963, 46.5277235 ], + [ 6.6380407, 46.5277159 ], + [ 6.6377849, 46.5277199 ], + [ 6.63753, 46.5277354 ], + [ 6.6372771, 46.5277623 ], + [ 6.6370274, 46.5278007 ], + [ 6.6367818, 46.5278502 ], + [ 6.6365414, 46.5279107 ], + [ 6.6363828, 46.5279576 ], + [ 6.6362834, 46.5279743 ], + [ 6.6360378, 46.5280238 ], + [ 6.6360026, 46.5280319 ], + [ 6.6359872, 46.5280355 ], + [ 6.6357821, 46.5280879 ], + [ 6.635548, 46.5281591 ], + [ 6.6353859, 46.5282161 ], + [ 6.6353716, 46.5282214 ], + [ 6.6353068, 46.5282461 ], + [ 6.6350882, 46.5283378 ], + [ 6.6348787, 46.5284392 ], + [ 6.6348628, 46.5284475 ], + [ 6.6348508, 46.5284538 ], + [ 6.6346672, 46.5285561 ], + [ 6.6344787, 46.5286755 ], + [ 6.6343929, 46.5287354 ], + [ 6.6343824, 46.5287429 ], + [ 6.6342915, 46.5288106 ], + [ 6.6341271, 46.528946 ], + [ 6.6339896, 46.5290748 ], + [ 6.633981, 46.529083299999996 ], + [ 6.6339673999999995, 46.529097 ], + [ 6.63383, 46.529246 ], + [ 6.6337071, 46.5294009 ], + [ 6.6336705, 46.5294522 ], + [ 6.6336639, 46.5294616 ], + [ 6.6335926, 46.5295704 ], + [ 6.6335, 46.529735 ], + [ 6.6334416, 46.5298594 ], + [ 6.6334373, 46.5298694 ], + [ 6.6334189, 46.5299134 ], + [ 6.6333583, 46.530085 ], + [ 6.633314, 46.5302589 ], + [ 6.6333085, 46.5302864 ], + [ 6.6333066, 46.5302967 ], + [ 6.6332843, 46.5304448 ], + [ 6.6332739, 46.5305963 ], + [ 6.6332708, 46.5306221 ], + [ 6.6332598, 46.5307986 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00032", + "country" : "CHE", + "name" : [ + { + "text" : "Tribunal cantonal", + "lang" : "de-CH" + }, + { + "text" : "Tribunal cantonal", + "lang" : "fr-CH" + }, + { + "text" : "Tribunal cantonal", + "lang" : "it-CH" + }, + { + "text" : "Tribunal cantonal", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kantonspolizei Waadt", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale vaudoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Vaud", + "lang" : "it-CH" + }, + { + "text" : "Vaud Cantonal Police", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.pcv@vd.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.9141156, 46.5852464 ], + [ 7.9141104, 46.5852464 ], + [ 7.9138768, 46.5852384 ], + [ 7.913861, 46.5852268 ], + [ 7.9139355, 46.5846462 ], + [ 7.9135987, 46.5846233 ], + [ 7.9135632, 46.5848956 ], + [ 7.9131601, 46.5848638 ], + [ 7.9131011, 46.5851634 ], + [ 7.9129836000000005, 46.585592 ], + [ 7.9136655, 46.5856936 ], + [ 7.9140041, 46.5857641 ], + [ 7.9140319, 46.5856678 ], + [ 7.9142004, 46.5856896 ], + [ 7.9143375, 46.5852527 ], + [ 7.9141156, 46.5852464 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSXL002", + "country" : "CHE", + "name" : [ + { + "text" : "LSXL Lauterbrunnen (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSXL Lauterbrunnen (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSXL Lauterbrunnen (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSXL Lauterbrunnen (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Air-Glaciers SA", + "lang" : "de-CH" + }, + { + "text" : "Air-Glaciers SA", + "lang" : "fr-CH" + }, + { + "text" : "Air-Glaciers SA", + "lang" : "it-CH" + }, + { + "text" : "Air-Glaciers SA", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Basis Lauterbrunnen", + "lang" : "de-CH" + }, + { + "text" : "Basis Lauterbrunnen", + "lang" : "fr-CH" + }, + { + "text" : "Basis Lauterbrunnen", + "lang" : "it-CH" + }, + { + "text" : "Basis Lauterbrunnen", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.air-glaciers.ch/de-ch/lauterbrunnen-de", + "email" : "agl@air-glaciers.ch", + "phone" : "0041338560560", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P02DT12H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7525282, 47.3517746 ], + [ 7.7525462, 47.3519542 ], + [ 7.7565272, 47.3517684 ], + [ 7.7565085, 47.3516658 ], + [ 7.7565153, 47.3515875 ], + [ 7.7525282, 47.3517746 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns110", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Helfenbergrüttenen", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Helfenbergrüttenen", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Helfenbergrüttenen", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Helfenbergrüttenen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7030626, 47.3947502 ], + [ 7.7030573, 47.3947695 ], + [ 7.7030497, 47.3947884 ], + [ 7.7030397, 47.3948068 ], + [ 7.7030276, 47.3948246 ], + [ 7.7030133, 47.3948416 ], + [ 7.702993, 47.3948587 ], + [ 7.7029706000000004, 47.3948744 ], + [ 7.7029461999999995, 47.3948888 ], + [ 7.7029201, 47.3949016 ], + [ 7.7028283, 47.3949429 ], + [ 7.7027827, 47.3949588 ], + [ 7.7026126999999995, 47.3950464 ], + [ 7.7025923, 47.3950598 ], + [ 7.7025732, 47.3950742 ], + [ 7.7025556, 47.3950893 ], + [ 7.7025429, 47.3950992 ], + [ 7.7025288, 47.3951082 ], + [ 7.7025136, 47.3951163 ], + [ 7.7024974, 47.3951235 ], + [ 7.7024802999999995, 47.3951296 ], + [ 7.7024224, 47.3951798 ], + [ 7.70237, 47.3952327 ], + [ 7.7023232, 47.395288 ], + [ 7.7023048, 47.3953157 ], + [ 7.7022898, 47.3953443 ], + [ 7.7022782, 47.3953737 ], + [ 7.7022701, 47.3954036 ], + [ 7.7022657, 47.3954338 ], + [ 7.7022748, 47.3954676 ], + [ 7.7022885, 47.3955008 ], + [ 7.7023066, 47.3955329 ], + [ 7.7023288999999995, 47.3955638 ], + [ 7.7023693, 47.3956117 ], + [ 7.7024161, 47.3956569 ], + [ 7.7024688999999995, 47.3956989 ], + [ 7.702508, 47.3957325 ], + [ 7.7025456, 47.3957669 ], + [ 7.7025818, 47.3958021 ], + [ 7.7028079, 47.3960425 ], + [ 7.7028581, 47.3960829 ], + [ 7.7029113, 47.3961214 ], + [ 7.7029673, 47.3961581 ], + [ 7.7030198, 47.3961864 ], + [ 7.7030755, 47.3962116 ], + [ 7.703134, 47.3962338 ], + [ 7.7032138, 47.3962621 ], + [ 7.7032533, 47.3962773 ], + [ 7.7032907, 47.3962947 ], + [ 7.7033258, 47.3963143 ], + [ 7.7033583, 47.3963359 ], + [ 7.7034244, 47.3963817 ], + [ 7.7034849, 47.3964309 ], + [ 7.7035393, 47.3964834 ], + [ 7.7035872, 47.3965386 ], + [ 7.7036166999999995, 47.3965723 ], + [ 7.7036465, 47.3966059 ], + [ 7.7036764, 47.3966394 ], + [ 7.7037134, 47.3966711 ], + [ 7.7037543, 47.3967006 ], + [ 7.7037987, 47.3967276 ], + [ 7.7038463, 47.3967521 ], + [ 7.7038958, 47.3967688 ], + [ 7.7039474, 47.3967823 ], + [ 7.7040007, 47.3967924 ], + [ 7.7040551, 47.396799 ], + [ 7.7040982, 47.3968049 ], + [ 7.7041403, 47.3968136 ], + [ 7.704181, 47.3968249 ], + [ 7.70422, 47.3968388 ], + [ 7.704257, 47.396855 ], + [ 7.7043419, 47.3968986 ], + [ 7.7044223, 47.396946 ], + [ 7.704498, 47.3969968 ], + [ 7.7045282, 47.397017 ], + [ 7.7045557, 47.3970389 ], + [ 7.7045804, 47.3970623 ], + [ 7.7046021, 47.397087 ], + [ 7.7046206999999995, 47.3971128 ], + [ 7.7046358999999995, 47.3971397 ], + [ 7.7046477, 47.3971673 ], + [ 7.704656, 47.3971955 ], + [ 7.7046568, 47.3971989 ], + [ 7.7046581, 47.3972055 ], + [ 7.7046601, 47.3972297 ], + [ 7.7046589, 47.3972538 ], + [ 7.7046545, 47.3972778 ], + [ 7.7046469, 47.3973014 ], + [ 7.7046361999999995, 47.3973245 ], + [ 7.7046225, 47.3973468 ], + [ 7.7046057999999995, 47.3973682 ], + [ 7.7045864, 47.3973885 ], + [ 7.7045446, 47.3974345 ], + [ 7.7046654, 47.3975164 ], + [ 7.7047199, 47.3975269 ], + [ 7.7051847, 47.3972644 ], + [ 7.7056422, 47.3970095 ], + [ 7.7058621, 47.3968863 ], + [ 7.7062109, 47.3967353 ], + [ 7.7064161, 47.396834 ], + [ 7.7066298, 47.3969453 ], + [ 7.7069624, 47.3968467 ], + [ 7.7069893, 47.3968345 ], + [ 7.7070206, 47.3968163 ], + [ 7.7070402, 47.3968024 ], + [ 7.7070632, 47.396784 ], + [ 7.7070882, 47.3967607 ], + [ 7.7071054, 47.3967409 ], + [ 7.7071205, 47.3967194 ], + [ 7.7071345, 47.3966928 ], + [ 7.7071434, 47.3966685 ], + [ 7.7071872, 47.396556 ], + [ 7.7072114, 47.3965376 ], + [ 7.7070986, 47.3964731 ], + [ 7.7070852, 47.3964555 ], + [ 7.7070475, 47.3963956 ], + [ 7.7069959, 47.3963338 ], + [ 7.7069421, 47.3962852 ], + [ 7.7073037, 47.3961178 ], + [ 7.7075056, 47.3960243 ], + [ 7.7077522, 47.395733 ], + [ 7.7073826, 47.3956375 ], + [ 7.7070469, 47.3955396 ], + [ 7.7068309, 47.3953392 ], + [ 7.7068738, 47.3951426 ], + [ 7.7068876, 47.394981 ], + [ 7.7065236, 47.3948747 ], + [ 7.7061095, 47.3948257 ], + [ 7.7059004, 47.3946729 ], + [ 7.7058572, 47.3945933 ], + [ 7.7056877, 47.3944716 ], + [ 7.7058312, 47.394299 ], + [ 7.7058792, 47.394175 ], + [ 7.7059121, 47.3940965 ], + [ 7.7059353999999995, 47.393979 ], + [ 7.7059607, 47.3938219 ], + [ 7.7058712, 47.3937998 ], + [ 7.705775, 47.3937752 ], + [ 7.7057348999999995, 47.3937513 ], + [ 7.7057108, 47.3937198 ], + [ 7.7057008, 47.393682 ], + [ 7.7057021, 47.3936514 ], + [ 7.7057449, 47.3935244 ], + [ 7.7053852, 47.3935041 ], + [ 7.7052784, 47.3936257 ], + [ 7.7051131, 47.3938251 ], + [ 7.7050383, 47.3939318 ], + [ 7.7050031, 47.3939967 ], + [ 7.7049356, 47.3941332 ], + [ 7.7048866, 47.3942191 ], + [ 7.7048003, 47.394338 ], + [ 7.7046778, 47.3944467 ], + [ 7.7045641, 47.3945693 ], + [ 7.7030633, 47.3947451 ], + [ 7.7030626, 47.3947502 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns260", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Baberten", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Baberten", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Baberten", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Baberten", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.0170871, 47.1807009 ], + [ 8.0219507, 47.1792663 ], + [ 8.0217122, 47.1784027 ], + [ 8.0280992, 47.1783875 ], + [ 8.0281134, 47.1774596 ], + [ 8.0283444, 47.1738907 ], + [ 8.0287685, 47.1738359 ], + [ 8.0294638, 47.1738587 ], + [ 8.0300253, 47.1740006 ], + [ 8.0316338, 47.1745453 ], + [ 8.034135, 47.1754934 ], + [ 8.0359609, 47.1747467 ], + [ 8.0372298, 47.1742661 ], + [ 8.0389404, 47.1735726 ], + [ 8.0402087, 47.1730394 ], + [ 8.0408993, 47.1726408 ], + [ 8.041758, 47.1720828 ], + [ 8.0415805, 47.1705513 ], + [ 8.0421145, 47.1700827 ], + [ 8.0406803, 47.169121 ], + [ 8.0406613, 47.1690981 ], + [ 8.0415641, 47.1687574 ], + [ 8.0424764, 47.1684158 ], + [ 8.042574, 47.1683781 ], + [ 8.0426306, 47.1683573 ], + [ 8.0420697, 47.1662642 ], + [ 8.036944, 47.1612162 ], + [ 8.0368393, 47.1611465 ], + [ 8.0364192, 47.1607767 ], + [ 8.0356059, 47.1600635 ], + [ 8.0352028, 47.1597089 ], + [ 8.0348556, 47.1594046 ], + [ 8.0344679, 47.1590638 ], + [ 8.0344239, 47.1590465 ], + [ 8.034356, 47.1590167 ], + [ 8.0324987, 47.1586687 ], + [ 8.031232, 47.1584382 ], + [ 8.0299512, 47.1580932 ], + [ 8.0292295, 47.157861 ], + [ 8.0290885, 47.1578124 ], + [ 8.0270617, 47.1571102 ], + [ 8.0269753, 47.1571094 ], + [ 8.0268387, 47.1571 ], + [ 8.0231455, 47.1577933 ], + [ 8.0231077, 47.1578133 ], + [ 8.0230878, 47.1577897 ], + [ 8.0227686, 47.1574067 ], + [ 8.0221102, 47.156618 ], + [ 8.0220578, 47.1566079 ], + [ 8.0220033, 47.156618 ], + [ 8.0215867, 47.1568503 ], + [ 8.0211191, 47.1571109 ], + [ 8.020582, 47.1574103 ], + [ 8.0204017, 47.1575108 ], + [ 8.0200999, 47.1576789 ], + [ 8.0198461, 47.1578206 ], + [ 8.019404, 47.1580679 ], + [ 8.0187681, 47.1584235 ], + [ 8.0186494, 47.158493 ], + [ 8.0185256, 47.1585619 ], + [ 8.0180594, 47.1588205 ], + [ 8.0174251, 47.1591723 ], + [ 8.017077, 47.1593676 ], + [ 8.0167216, 47.1595665 ], + [ 8.0160775, 47.1599271 ], + [ 8.0157762, 47.1600953 ], + [ 8.0088528, 47.1616353 ], + [ 8.0088435, 47.1616573 ], + [ 8.0087635, 47.1616485 ], + [ 8.0086984, 47.1616628 ], + [ 8.0085763, 47.1617794 ], + [ 8.0083792, 47.1619209 ], + [ 8.0082797, 47.1619909 ], + [ 8.0081388, 47.1620065 ], + [ 8.0077716, 47.1620291 ], + [ 8.0074432, 47.162043 ], + [ 8.0073284, 47.1620951 ], + [ 8.0070979, 47.1624027 ], + [ 8.006809, 47.1629879 ], + [ 8.0066721, 47.1635119 ], + [ 8.0066705, 47.16362 ], + [ 8.0067424, 47.1637083 ], + [ 8.0070271, 47.1641665 ], + [ 8.0070404, 47.164428 ], + [ 8.0063495, 47.1651199 ], + [ 8.005866, 47.1655307 ], + [ 8.0052781, 47.1658477 ], + [ 8.0047659, 47.166197 ], + [ 8.0043909, 47.1664527 ], + [ 8.0040762, 47.1666673 ], + [ 8.004671, 47.1709008 ], + [ 8.0046647, 47.1709656 ], + [ 8.0048517, 47.1713258 ], + [ 8.0051534, 47.1719068 ], + [ 8.0053581, 47.172301 ], + [ 8.0056574, 47.1728789 ], + [ 8.0056438, 47.1730184 ], + [ 8.0056436, 47.1730363 ], + [ 8.0056372, 47.1730925 ], + [ 8.0056782, 47.1730917 ], + [ 8.0093873, 47.1730737 ], + [ 8.0119276, 47.1775678 ], + [ 8.0117778, 47.1775721 ], + [ 8.0118734, 47.1807152 ], + [ 8.0120491, 47.1807161 ], + [ 8.012147, 47.1807192 ], + [ 8.0122426, 47.1807137 ], + [ 8.0149803, 47.1807112 ], + [ 8.0170515, 47.1807011 ], + [ 8.0170871, 47.1807009 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "WZV0035", + "country" : "CHE", + "name" : [ + { + "text" : "Wasser- und Zugvogelreservat Wauwilermoos", + "lang" : "de-CH" + }, + { + "text" : "Réserve d'oiseaux d'eau et de migrateurs Wauwilermoos", + "lang" : "fr-CH" + }, + { + "text" : "Riserva di uccelli acquatici e migratori Wauwilermoos", + "lang" : "it-CH" + }, + { + "text" : "Water Bird and Migratory Bird Reserves Wauwilermoos", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7541671, 47.3821887 ], + [ 7.7544041, 47.3820404 ], + [ 7.7547437, 47.3820461 ], + [ 7.7549241, 47.3820476 ], + [ 7.7556392, 47.3820589 ], + [ 7.7557364, 47.3819631 ], + [ 7.7564843, 47.3819655 ], + [ 7.7573624, 47.3819437 ], + [ 7.7585855, 47.3819797 ], + [ 7.7590852, 47.3819259 ], + [ 7.7593747, 47.3817582 ], + [ 7.7601873, 47.3816957 ], + [ 7.7603917, 47.3816861 ], + [ 7.7607076, 47.3815585 ], + [ 7.7607044, 47.3814594 ], + [ 7.7609182, 47.3814427 ], + [ 7.7612993, 47.3814312 ], + [ 7.7617018, 47.3814229 ], + [ 7.7621456, 47.3814209 ], + [ 7.762637, 47.3814434 ], + [ 7.7626146, 47.3813068 ], + [ 7.7630504, 47.3812376 ], + [ 7.7637021, 47.3811568 ], + [ 7.7643735, 47.3807132 ], + [ 7.7650319, 47.3804921 ], + [ 7.7658662, 47.380404 ], + [ 7.7666161, 47.3803385 ], + [ 7.7675119, 47.3801205 ], + [ 7.7678702, 47.3798933 ], + [ 7.7685911, 47.3796306 ], + [ 7.7689042, 47.3793987 ], + [ 7.7691338, 47.3791879 ], + [ 7.7702507, 47.3789066 ], + [ 7.7704863, 47.3788473 ], + [ 7.7724339, 47.3784529 ], + [ 7.7733093, 47.3783167 ], + [ 7.7767756, 47.3783068 ], + [ 7.7770111, 47.3791179 ], + [ 7.7775375, 47.3790231 ], + [ 7.7779547, 47.3790656 ], + [ 7.7784337, 47.379031 ], + [ 7.7788033, 47.3789936 ], + [ 7.7790416, 47.3790386 ], + [ 7.7791471, 47.3790587 ], + [ 7.7792797, 47.3790826 ], + [ 7.7794887, 47.3790933 ], + [ 7.7797524, 47.3791128 ], + [ 7.7802086, 47.3791389 ], + [ 7.7802311, 47.3790152 ], + [ 7.7802728, 47.3788333 ], + [ 7.7805111, 47.3788484 ], + [ 7.781054, 47.3788359 ], + [ 7.7811999, 47.3788237 ], + [ 7.7817423, 47.3787809 ], + [ 7.7823173, 47.3789309 ], + [ 7.7829124, 47.3789169 ], + [ 7.7835194, 47.3788457 ], + [ 7.7835474, 47.3788478 ], + [ 7.7840312, 47.3788241 ], + [ 7.7841221, 47.3788112 ], + [ 7.7845062, 47.3786967 ], + [ 7.7847978, 47.3786782 ], + [ 7.7850751, 47.3786653 ], + [ 7.785462, 47.3787464 ], + [ 7.7857943, 47.3787821 ], + [ 7.7861514, 47.3787411 ], + [ 7.786461, 47.3787178 ], + [ 7.7865965, 47.3787166 ], + [ 7.7869579, 47.3787039 ], + [ 7.787675, 47.3787275 ], + [ 7.7880527, 47.3788231 ], + [ 7.7886141, 47.3787081 ], + [ 7.7893124, 47.3786405 ], + [ 7.7895627, 47.3789685 ], + [ 7.7897586, 47.3791035 ], + [ 7.7900568, 47.379091 ], + [ 7.7903859, 47.3791101 ], + [ 7.790556, 47.3792034 ], + [ 7.7909097, 47.379311 ], + [ 7.7908363, 47.3789478 ], + [ 7.7905337, 47.3785365 ], + [ 7.7904358, 47.3781223 ], + [ 7.7903553, 47.3777926 ], + [ 7.7901758, 47.3771626 ], + [ 7.7897013, 47.3774129 ], + [ 7.7893742, 47.3774332 ], + [ 7.7889304, 47.3773821 ], + [ 7.7886947, 47.3773012 ], + [ 7.7881067999999996, 47.377289 ], + [ 7.7876777, 47.377216 ], + [ 7.7873681999999995, 47.3772836 ], + [ 7.7870352, 47.3770858 ], + [ 7.7870197999999995, 47.3770811 ], + [ 7.786766, 47.3770246 ], + [ 7.786264, 47.3770083 ], + [ 7.785991, 47.3768703 ], + [ 7.7856439, 47.3767789 ], + [ 7.7849955, 47.3767595 ], + [ 7.7847551, 47.3767332 ], + [ 7.784324, 47.3767888 ], + [ 7.7841007, 47.3767831 ], + [ 7.7838975999999995, 47.376782 ], + [ 7.7828113, 47.3767672 ], + [ 7.7824871, 47.3769371 ], + [ 7.7817217, 47.3769245 ], + [ 7.7813377, 47.3768391 ], + [ 7.7802318, 47.3768765 ], + [ 7.7796343, 47.3768198 ], + [ 7.7790531, 47.3768099 ], + [ 7.7789753, 47.3768127 ], + [ 7.7784467, 47.376823 ], + [ 7.7777361, 47.3767891 ], + [ 7.7775131, 47.3767948 ], + [ 7.7772179, 47.3768022 ], + [ 7.7763653999999995, 47.3768941 ], + [ 7.7756674, 47.3769999 ], + [ 7.7751633, 47.3771279 ], + [ 7.7742093, 47.3771939 ], + [ 7.7734281, 47.3773852 ], + [ 7.7728987, 47.3774778 ], + [ 7.7726185, 47.3772485 ], + [ 7.7712535, 47.3774705 ], + [ 7.770735, 47.3775842 ], + [ 7.7699614, 47.377731 ], + [ 7.7693263, 47.3778829 ], + [ 7.769223, 47.3777849 ], + [ 7.7687678, 47.377453 ], + [ 7.7678625, 47.3782792 ], + [ 7.7677899, 47.3783418 ], + [ 7.7676647, 47.3784326 ], + [ 7.7675262, 47.3785139 ], + [ 7.767376, 47.378585 ], + [ 7.7672156999999995, 47.378645 ], + [ 7.767047, 47.3786934 ], + [ 7.7668718, 47.3787294 ], + [ 7.7666919, 47.3787529 ], + [ 7.7663193, 47.3788088 ], + [ 7.7659383, 47.3788944 ], + [ 7.7655727, 47.3790066 ], + [ 7.7654698, 47.3790405 ], + [ 7.7651932, 47.3791151 ], + [ 7.7649066, 47.3791697 ], + [ 7.7646132, 47.3792037 ], + [ 7.7643163, 47.3792167 ], + [ 7.7640188, 47.3792084 ], + [ 7.7635446, 47.3791365 ], + [ 7.7628063, 47.3793649 ], + [ 7.762406, 47.3794017 ], + [ 7.7621128, 47.3794851 ], + [ 7.7616506, 47.3796168 ], + [ 7.760714, 47.3800774 ], + [ 7.760004, 47.3801664 ], + [ 7.7597125, 47.3801872 ], + [ 7.7596591, 47.380191 ], + [ 7.7596381999999995, 47.3802047 ], + [ 7.7594998, 47.3802163 ], + [ 7.759384, 47.3802442 ], + [ 7.7592317, 47.3802971 ], + [ 7.7590806, 47.3802752 ], + [ 7.7589497, 47.3803073 ], + [ 7.7588675, 47.3803568 ], + [ 7.7584105999999995, 47.3803829 ], + [ 7.7582905, 47.3803608 ], + [ 7.7580355999999995, 47.3803486 ], + [ 7.7580072, 47.3803408 ], + [ 7.7580784, 47.3802522 ], + [ 7.7578712, 47.3802183 ], + [ 7.7577020999999995, 47.3802098 ], + [ 7.7574411, 47.3802257 ], + [ 7.7570703, 47.3802216 ], + [ 7.7568645, 47.3802557 ], + [ 7.756402, 47.3803985 ], + [ 7.7559093, 47.38048 ], + [ 7.7553447, 47.3805058 ], + [ 7.7549441, 47.3805355 ], + [ 7.7546869, 47.3805194 ], + [ 7.7543806, 47.3804814 ], + [ 7.7537574, 47.3804304 ], + [ 7.7535652, 47.3804254 ], + [ 7.7525831, 47.3804983 ], + [ 7.7515103, 47.3806112 ], + [ 7.7515153, 47.3806309 ], + [ 7.7518086, 47.3817867 ], + [ 7.7511869, 47.3818245 ], + [ 7.7507519, 47.3818714 ], + [ 7.7504808, 47.3809593 ], + [ 7.7503546, 47.3809895 ], + [ 7.7502441, 47.381007 ], + [ 7.7501108, 47.3810204 ], + [ 7.7499944, 47.381042 ], + [ 7.7499655, 47.3810206 ], + [ 7.7495749, 47.3808183 ], + [ 7.7493985, 47.3808362 ], + [ 7.7493801, 47.3808906 ], + [ 7.7493055, 47.380976 ], + [ 7.7492564999999995, 47.3810945 ], + [ 7.7493002, 47.3813127 ], + [ 7.749265, 47.3818 ], + [ 7.7493948, 47.3818383 ], + [ 7.749645, 47.3819136 ], + [ 7.7498322, 47.3820517 ], + [ 7.7493824, 47.3820367 ], + [ 7.7486712, 47.3819307 ], + [ 7.7484289, 47.3818731 ], + [ 7.748263, 47.3818315 ], + [ 7.7484037, 47.3820351 ], + [ 7.7484455, 47.3820955 ], + [ 7.748508, 47.3821615 ], + [ 7.7485347, 47.3822055 ], + [ 7.7486417, 47.3822662 ], + [ 7.7487323, 47.3823043 ], + [ 7.748795, 47.3823304 ], + [ 7.7490189, 47.382471699999996 ], + [ 7.7491944, 47.3825917 ], + [ 7.7496030000000005, 47.3822975 ], + [ 7.7497515, 47.3821898 ], + [ 7.749785, 47.3822123 ], + [ 7.7498832, 47.3822902 ], + [ 7.7499665, 47.3823436 ], + [ 7.7500565, 47.3823962 ], + [ 7.7501504, 47.3824458 ], + [ 7.7502591, 47.3824992 ], + [ 7.750353, 47.3825471 ], + [ 7.7504376, 47.382586 ], + [ 7.7506979, 47.3827144 ], + [ 7.7507543, 47.3827415 ], + [ 7.7507987, 47.3827722 ], + [ 7.7508443, 47.382813 ], + [ 7.7508835, 47.3828547 ], + [ 7.7509252, 47.3829028 ], + [ 7.7509467, 47.3829318 ], + [ 7.7509764, 47.3829535 ], + [ 7.7510207, 47.3829879 ], + [ 7.7510704, 47.3830141 ], + [ 7.7511562, 47.3830466 ], + [ 7.7512434, 47.3830701 ], + [ 7.7513412, 47.3831021 ], + [ 7.7513694, 47.3831138 ], + [ 7.7514512, 47.3831372 ], + [ 7.751525, 47.3831698 ], + [ 7.7515826, 47.3831905 ], + [ 7.751643, 47.3832067 ], + [ 7.7516862, 47.3832172 ], + [ 7.7517732, 47.3832404 ], + [ 7.7520447, 47.383115 ], + [ 7.7520875, 47.3827523 ], + [ 7.7520917, 47.3826964 ], + [ 7.7526209, 47.3824575 ], + [ 7.7535378999999995, 47.3823782 ], + [ 7.7541671, 47.3821887 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns281", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Rehhag", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Rehhag", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Rehhag", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Rehhag", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.8324894, 45.9873349 ], + [ 8.9112544, 46.0619235 ], + [ 8.9158594, 46.0657003 ], + [ 8.9211659, 46.0690011 ], + [ 8.9270741, 46.0717631 ], + [ 8.9334718, 46.0739338 ], + [ 8.9402376, 46.0754719 ], + [ 8.947243199999999, 46.0763483 ], + [ 8.9543554, 46.0765463 ], + [ 8.9614392, 46.0760621 ], + [ 8.96836, 46.074905 ], + [ 8.9749865, 46.0730969 ], + [ 8.9811929, 46.0706721 ], + [ 8.9868614, 46.0676768 ], + [ 8.9918844, 46.0641676 ], + [ 8.9961668, 46.0602114 ], + [ 8.9996275, 46.055883 ], + [ 9.0022009, 46.0512647 ], + [ 9.0038386, 46.0464441 ], + [ 9.0045098, 46.0415124 ], + [ 9.0042019, 46.0365634 ], + [ 9.002921, 46.0316907 ], + [ 9.0006917, 46.0269866 ], + [ 8.9975564, 46.0225403 ], + [ 8.9104495, 45.9176513 ], + [ 8.909538, 45.9176964 ], + [ 8.9074461, 45.917790600000004 ], + [ 8.9040166, 45.9220453 ], + [ 8.9024325, 45.9232429 ], + [ 8.9016458, 45.9237114 ], + [ 8.9004046, 45.9241255 ], + [ 8.8989845, 45.924945 ], + [ 8.8975707, 45.9258358 ], + [ 8.8968169, 45.9264458 ], + [ 8.8961006, 45.9271719 ], + [ 8.8954549, 45.9282178 ], + [ 8.8951189, 45.928735 ], + [ 8.8945744, 45.9295379 ], + [ 8.893315, 45.9311823 ], + [ 8.893126, 45.931766 ], + [ 8.8929305, 45.9323407 ], + [ 8.8927718, 45.9334217 ], + [ 8.8927241, 45.9342723 ], + [ 8.8929588, 45.9351684 ], + [ 8.8930434, 45.9357067 ], + [ 8.8934974, 45.9373881 ], + [ 8.8941782, 45.9384306 ], + [ 8.894631799999999, 45.9390536 ], + [ 8.8951443, 45.9397918 ], + [ 8.8959902, 45.9407616 ], + [ 8.8965462, 45.9414318 ], + [ 8.8974507, 45.9428423 ], + [ 8.8979657, 45.943702 ], + [ 8.8984001, 45.9450531 ], + [ 8.8985964, 45.9462602 ], + [ 8.8985008, 45.9474757 ], + [ 8.898199, 45.9489299 ], + [ 8.8980698, 45.9493566 ], + [ 8.8971368, 45.9503986 ], + [ 8.8968674, 45.9508434 ], + [ 8.8967165, 45.9513358 ], + [ 8.8966376, 45.9518926 ], + [ 8.8966695, 45.9530855 ], + [ 8.8966703, 45.9541266 ], + [ 8.8966468, 45.9547532 ], + [ 8.895147, 45.9570367 ], + [ 8.893658, 45.9589814 ], + [ 8.8870879, 45.9575787 ], + [ 8.884068899999999, 45.9572394 ], + [ 8.8799383, 45.9567513 ], + [ 8.8782128, 45.9566418 ], + [ 8.8774519, 45.9569725 ], + [ 8.8766025, 45.9575171 ], + [ 8.8761219, 45.9578831 ], + [ 8.8757436, 45.9582119 ], + [ 8.8756303, 45.9583213 ], + [ 8.8754032, 45.9585131 ], + [ 8.8752056, 45.9587187 ], + [ 8.875085200000001, 45.9588195 ], + [ 8.8749532, 45.9589129 ], + [ 8.8748105, 45.9589984 ], + [ 8.8746581, 45.9590753 ], + [ 8.874497, 45.959143 ], + [ 8.8743284, 45.9592012 ], + [ 8.8741535, 45.9592494 ], + [ 8.8739734, 45.9592872 ], + [ 8.8737894, 45.9593145 ], + [ 8.8736028, 45.959331 ], + [ 8.8734149, 45.9593366 ], + [ 8.8732627, 45.9593358 ], + [ 8.8730482, 45.9593423 ], + [ 8.8728352, 45.9593612 ], + [ 8.8726251, 45.9593924 ], + [ 8.8724196, 45.9594357 ], + [ 8.8722199, 45.9594907 ], + [ 8.8720275, 45.9595572 ], + [ 8.8718436, 45.9596345 ], + [ 8.8716696, 45.9597223 ], + [ 8.871338, 45.9599222 ], + [ 8.8711571, 45.960014 ], + [ 8.8709656, 45.9600945 ], + [ 8.8707647, 45.9601631 ], + [ 8.8705561, 45.9602194 ], + [ 8.8703413, 45.9602628 ], + [ 8.8699789, 45.9602469 ], + [ 8.8697341, 45.960259 ], + [ 8.8695287, 45.9602976 ], + [ 8.8682986, 45.9606192 ], + [ 8.8678005, 45.9609323 ], + [ 8.867610299999999, 45.9611316 ], + [ 8.8665776, 45.9627813 ], + [ 8.866323, 45.9631525 ], + [ 8.8653748, 45.964507 ], + [ 8.8651137, 45.9649041 ], + [ 8.8647332, 45.9654579 ], + [ 8.8641897, 45.9654258 ], + [ 8.8635648, 45.9654689 ], + [ 8.8630128, 45.9655365 ], + [ 8.8622576, 45.9656546 ], + [ 8.8612894, 45.9658837 ], + [ 8.8606932, 45.9661111 ], + [ 8.8601335, 45.9664078 ], + [ 8.8596071, 45.9667303 ], + [ 8.859342999999999, 45.9669814 ], + [ 8.8591883, 45.9670328 ], + [ 8.8589967, 45.9671071 ], + [ 8.8585551, 45.9673802 ], + [ 8.8581027, 45.9677441 ], + [ 8.8579663, 45.9678247 ], + [ 8.8578269, 45.967934 ], + [ 8.8576751, 45.968035 ], + [ 8.8575121, 45.9681271 ], + [ 8.8573389, 45.9682097 ], + [ 8.8565621, 45.9685524 ], + [ 8.8563548, 45.9686484 ], + [ 8.8561618, 45.9687579 ], + [ 8.8559848, 45.9688799 ], + [ 8.8551931, 45.9694897 ], + [ 8.8538621, 45.9705292 ], + [ 8.8535791, 45.9707502 ], + [ 8.8534053, 45.9708925 ], + [ 8.8532387, 45.971038899999996 ], + [ 8.8530795, 45.9711893 ], + [ 8.8528635, 45.9713828 ], + [ 8.8526247, 45.9715629 ], + [ 8.8523648, 45.9717281 ], + [ 8.8520857, 45.9718773 ], + [ 8.8517894, 45.9720094 ], + [ 8.851478, 45.9721234 ], + [ 8.8511538, 45.9722185 ], + [ 8.8507444, 45.9723467 ], + [ 8.8503526, 45.9724992 ], + [ 8.8499812, 45.9726748 ], + [ 8.8496332, 45.9728723 ], + [ 8.849311, 45.9730901 ], + [ 8.8490172, 45.9733266 ], + [ 8.848754, 45.97358 ], + [ 8.8485233, 45.9738484 ], + [ 8.848327, 45.9741298 ], + [ 8.8481665, 45.974422 ], + [ 8.8479711, 45.9748987 ], + [ 8.847879, 45.9750699 ], + [ 8.8477672, 45.9752354 ], + [ 8.8476365, 45.975394 ], + [ 8.8474877, 45.9755447 ], + [ 8.847322, 45.9756864 ], + [ 8.8471665, 45.9758113 ], + [ 8.8462841, 45.9764472 ], + [ 8.8461599, 45.9765252 ], + [ 8.8460268, 45.9765958 ], + [ 8.8458857, 45.9766583 ], + [ 8.8457375, 45.9767125 ], + [ 8.8455493, 45.9767553 ], + [ 8.8453565, 45.9767868 ], + [ 8.8451605, 45.9768068 ], + [ 8.8449628, 45.976815 ], + [ 8.8446431, 45.9768187 ], + [ 8.844624, 45.9768208 ], + [ 8.8446008, 45.9768285 ], + [ 8.8445274, 45.976868 ], + [ 8.8444891, 45.9768823 ], + [ 8.8444478, 45.9768917 ], + [ 8.8443544, 45.9769045 ], + [ 8.8442852, 45.9769289 ], + [ 8.8440957, 45.9770347 ], + [ 8.8439377, 45.9771381 ], + [ 8.8437915, 45.9772497 ], + [ 8.8436579, 45.9773688 ], + [ 8.8434644, 45.9775674 ], + [ 8.8434284, 45.9776079 ], + [ 8.8433623, 45.9777135 ], + [ 8.8433156, 45.977903 ], + [ 8.8433004, 45.9783171 ], + [ 8.843341, 45.9786405 ], + [ 8.8433278, 45.978847 ], + [ 8.8432175, 45.9792813 ], + [ 8.8432119, 45.9795069 ], + [ 8.8432236, 45.9796017 ], + [ 8.843332, 45.9798597 ], + [ 8.8433667, 45.9799935 ], + [ 8.8433659, 45.9800799 ], + [ 8.8432935, 45.9803664 ], + [ 8.8432464, 45.980522 ], + [ 8.8426977, 45.9814711 ], + [ 8.8401024, 45.9816592 ], + [ 8.8400588, 45.981730999999996 ], + [ 8.8398175, 45.9820655 ], + [ 8.8397683, 45.9821246 ], + [ 8.839716, 45.9822111 ], + [ 8.8396597, 45.982399 ], + [ 8.8396486, 45.9824792 ], + [ 8.839683, 45.9827646 ], + [ 8.8396959, 45.9828252 ], + [ 8.8397001, 45.982921 ], + [ 8.8396866, 45.9830175 ], + [ 8.839663, 45.9831243 ], + [ 8.8395429, 45.983532 ], + [ 8.839492, 45.9838313 ], + [ 8.8394322, 45.9839601 ], + [ 8.8393832, 45.984048 ], + [ 8.8393302, 45.98413 ], + [ 8.8392329, 45.9842207 ], + [ 8.8391126, 45.9842954 ], + [ 8.8389401, 45.9843775 ], + [ 8.838805, 45.9844183 ], + [ 8.8386506, 45.9844399 ], + [ 8.8384906, 45.9844297 ], + [ 8.8383468, 45.9844371 ], + [ 8.8382391, 45.9844671 ], + [ 8.8378924, 45.9845929 ], + [ 8.8376273, 45.9846593 ], + [ 8.8374858, 45.9846816 ], + [ 8.8371421, 45.9846549 ], + [ 8.8369145, 45.9846404 ], + [ 8.836624, 45.9846487 ], + [ 8.8363358, 45.9846822 ], + [ 8.8360009, 45.9847699 ], + [ 8.8354125, 45.9848664 ], + [ 8.8349369, 45.9849914 ], + [ 8.8346527, 45.9850266 ], + [ 8.8343988, 45.9850848 ], + [ 8.8341248, 45.9852163 ], + [ 8.8339778, 45.9853262 ], + [ 8.8338288, 45.9855504 ], + [ 8.8336918, 45.985815 ], + [ 8.833369, 45.9862181 ], + [ 8.8330708, 45.9865084 ], + [ 8.8329975, 45.9866117 ], + [ 8.8327791, 45.9869938 ], + [ 8.8325621, 45.9872851 ], + [ 8.8324894, 45.9873349 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 120, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "CTR0010", + "country" : "CHE", + "name" : [ + { + "text" : "CTR LUGANO", + "lang" : "de-CH" + }, + { + "text" : "CTR LUGANO", + "lang" : "fr-CH" + }, + { + "text" : "CTR LUGANO", + "lang" : "it-CH" + }, + { + "text" : "CTR LUGANO", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only permitted from an altitude of 120 m above ground with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Skyguide Special Flight Office", + "lang" : "de-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "it-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "en-GB" + } + ], + "siteURL" : "https://skyguide.ch/services/special-flights", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7614297, 47.4002226 ], + [ 7.7613704, 47.3997785 ], + [ 7.7613629, 47.3997229 ], + [ 7.7613676, 47.3997216 ], + [ 7.7614028, 47.3997087 ], + [ 7.7613979, 47.3997055 ], + [ 7.7618777, 47.3995346 ], + [ 7.7622143999999995, 47.3994345 ], + [ 7.7623048, 47.3993861 ], + [ 7.7625674, 47.3992434 ], + [ 7.7629835, 47.3990464 ], + [ 7.7635741, 47.3989847 ], + [ 7.7637901, 47.3989821 ], + [ 7.763775, 47.3993077 ], + [ 7.7637602, 47.3996246 ], + [ 7.7638823, 47.3996845 ], + [ 7.7638951, 47.3996908 ], + [ 7.7640218999999995, 47.3996494 ], + [ 7.764158, 47.3995633 ], + [ 7.7642204, 47.3994418 ], + [ 7.7659845, 47.3984246 ], + [ 7.7659669000000005, 47.398414 ], + [ 7.7659506, 47.3984024 ], + [ 7.765936, 47.39839 ], + [ 7.7659229, 47.3983767 ], + [ 7.7659116, 47.3983627 ], + [ 7.7659021, 47.3983481 ], + [ 7.7658945, 47.398333 ], + [ 7.7658888, 47.3983175 ], + [ 7.7651829, 47.3972507 ], + [ 7.7651192, 47.3972507 ], + [ 7.7650664, 47.3972537 ], + [ 7.7650068999999995, 47.3972527 ], + [ 7.7649533, 47.39725 ], + [ 7.764889, 47.397235 ], + [ 7.7648667, 47.3972332 ], + [ 7.7648448, 47.39723 ], + [ 7.7648235, 47.3972253 ], + [ 7.7647001, 47.3971904 ], + [ 7.7645806, 47.3971497 ], + [ 7.7644656, 47.3971035 ], + [ 7.7641862, 47.3969823 ], + [ 7.7641225, 47.3969529 ], + [ 7.7638467, 47.3968177 ], + [ 7.7638129, 47.3968006 ], + [ 7.7637799, 47.3967828 ], + [ 7.7637477, 47.3967643 ], + [ 7.763542, 47.3966423 ], + [ 7.7634745, 47.3966064 ], + [ 7.7634833, 47.3965684 ], + [ 7.7634602, 47.3965241 ], + [ 7.7634373, 47.3965157 ], + [ 7.7634135, 47.3965087 ], + [ 7.7633889, 47.396503 ], + [ 7.7632487999999995, 47.3964787 ], + [ 7.7631092, 47.3964532 ], + [ 7.7629701, 47.3964265 ], + [ 7.7628495, 47.3964033 ], + [ 7.7627266, 47.3963869 ], + [ 7.7626021, 47.3963774 ], + [ 7.7624769, 47.3963749 ], + [ 7.7623394999999995, 47.396378 ], + [ 7.7622032, 47.3963899 ], + [ 7.7620691, 47.3964103 ], + [ 7.7619734, 47.3964346 ], + [ 7.7618799, 47.3964624 ], + [ 7.7617887, 47.3964936 ], + [ 7.7617492, 47.3965083 ], + [ 7.7617079, 47.3965206 ], + [ 7.7616653, 47.3965305 ], + [ 7.7616215, 47.3965379 ], + [ 7.761577, 47.3965427 ], + [ 7.7615321, 47.3965449 ], + [ 7.7614804, 47.3965445 ], + [ 7.761429, 47.3965411 ], + [ 7.7613782, 47.3965346 ], + [ 7.7613285, 47.396525 ], + [ 7.7612802, 47.3965125 ], + [ 7.7612596, 47.3965071 ], + [ 7.7612397, 47.3965003 ], + [ 7.7612208, 47.3964924 ], + [ 7.7612030999999995, 47.3964833 ], + [ 7.7611867, 47.3964732 ], + [ 7.7611717, 47.3964621 ], + [ 7.7611583, 47.3964501 ], + [ 7.7611465, 47.3964373 ], + [ 7.7611431, 47.3964316 ], + [ 7.7611404, 47.3964257 ], + [ 7.7611386, 47.3964197 ], + [ 7.7611374, 47.3964136 ], + [ 7.7611371, 47.3964074 ], + [ 7.7600209, 47.396436 ], + [ 7.75897, 47.3965222 ], + [ 7.7583573, 47.3966191 ], + [ 7.7575697, 47.3967879 ], + [ 7.7568871, 47.3969206 ], + [ 7.754593, 47.3971768 ], + [ 7.7540852000000005, 47.3972377 ], + [ 7.7535963, 47.3975365 ], + [ 7.752792, 47.3978481 ], + [ 7.7524744, 47.3979826 ], + [ 7.7530401, 47.3979819 ], + [ 7.7535788, 47.3978954 ], + [ 7.7537721, 47.3978632 ], + [ 7.7540933, 47.397826 ], + [ 7.7544277, 47.3977879 ], + [ 7.7546513, 47.3978077 ], + [ 7.7549082, 47.3978361 ], + [ 7.755072, 47.3980098 ], + [ 7.7552652, 47.3982133 ], + [ 7.7552791, 47.3982279 ], + [ 7.7553088, 47.3982592 ], + [ 7.7557355, 47.3980367 ], + [ 7.7558066, 47.398004 ], + [ 7.7561812, 47.3980448 ], + [ 7.7564872, 47.3979123 ], + [ 7.7568535, 47.3977534 ], + [ 7.7573664, 47.3978863 ], + [ 7.7575883999999995, 47.3980155 ], + [ 7.7578286, 47.3981501 ], + [ 7.7581725, 47.3982284 ], + [ 7.7585006, 47.3983075 ], + [ 7.7587782, 47.398358 ], + [ 7.7590603, 47.3984456 ], + [ 7.7593284, 47.3985376 ], + [ 7.7599807, 47.3985518 ], + [ 7.7598009999999995, 47.3986502 ], + [ 7.7597834, 47.3986612 ], + [ 7.7596893, 47.3987485 ], + [ 7.7593993999999995, 47.398903 ], + [ 7.7590052, 47.3990889 ], + [ 7.7586501, 47.399288 ], + [ 7.7583546, 47.3994283 ], + [ 7.7579214, 47.3995672 ], + [ 7.7574475, 47.399681 ], + [ 7.7572476, 47.399650199999996 ], + [ 7.7568304, 47.399913 ], + [ 7.7567164, 47.3999956 ], + [ 7.756822, 47.4001872 ], + [ 7.7568147, 47.4003896 ], + [ 7.7574438, 47.4004138 ], + [ 7.7578281, 47.4003962 ], + [ 7.7580198, 47.4003862 ], + [ 7.7581039, 47.4003819 ], + [ 7.7582208, 47.4003482 ], + [ 7.7583431, 47.400337 ], + [ 7.7585439, 47.4003106 ], + [ 7.7585934, 47.4003105 ], + [ 7.7587093, 47.4002703 ], + [ 7.7588405, 47.400167 ], + [ 7.7589623, 47.4001041 ], + [ 7.7590729, 47.4000615 ], + [ 7.7592066, 47.4000586 ], + [ 7.7592896, 47.4000547 ], + [ 7.7595453, 47.399985 ], + [ 7.7595811, 47.3999204 ], + [ 7.7596408, 47.3999132 ], + [ 7.7597712, 47.399924 ], + [ 7.7598475, 47.4000103 ], + [ 7.7599279, 47.4000097 ], + [ 7.7601501, 47.3999929 ], + [ 7.7602655, 47.4000147 ], + [ 7.7604313, 47.4000158 ], + [ 7.7606380999999995, 47.3999811 ], + [ 7.7609968, 47.3999947 ], + [ 7.7610379, 47.4001277 ], + [ 7.7610396999999995, 47.400205 ], + [ 7.761082, 47.4003101 ], + [ 7.7610878, 47.4003914 ], + [ 7.7611629, 47.4004851 ], + [ 7.7612412, 47.4005492 ], + [ 7.7613135, 47.4005501 ], + [ 7.7614297, 47.4002226 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns333", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Dielenberg - Hangelimatt", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Dielenberg - Hangelimatt", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Dielenberg - Hangelimatt", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Dielenberg - Hangelimatt", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8268071, 47.4637121 ], + [ 7.826807, 47.4637197 ], + [ 7.8268078, 47.4638306 ], + [ 7.8268082, 47.4638847 ], + [ 7.8270572, 47.4640235 ], + [ 7.8270968, 47.4640455 ], + [ 7.8272629, 47.464086 ], + [ 7.8274624, 47.4641041 ], + [ 7.8276771, 47.4640907 ], + [ 7.8279628, 47.4639852 ], + [ 7.828058, 47.4638972 ], + [ 7.8284294, 47.4638063 ], + [ 7.8284896, 47.4637217 ], + [ 7.8286654, 47.4636289 ], + [ 7.8286452, 47.4635653 ], + [ 7.8286416, 47.4635537 ], + [ 7.8285176, 47.4635988 ], + [ 7.8284359, 47.4636204 ], + [ 7.8283887, 47.4636365 ], + [ 7.8282682, 47.4636597 ], + [ 7.8282224, 47.4636685 ], + [ 7.8280806, 47.463695799999996 ], + [ 7.8280718, 47.4637018 ], + [ 7.8280425000000005, 47.4637054 ], + [ 7.8278589, 47.4637278 ], + [ 7.8277828, 47.4637359 ], + [ 7.8276006, 47.4637436 ], + [ 7.8275777, 47.4637445 ], + [ 7.8275566, 47.4637454 ], + [ 7.8273378000000005, 47.4637449 ], + [ 7.8270339, 47.4637376 ], + [ 7.8268071, 47.4637121 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr102", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Wolfacher", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Wolfacher", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Wolfacher", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Wolfacher", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.0332529, 46.1724207 ], + [ 6.0343228, 46.1731642 ], + [ 6.0346506, 46.1733166 ], + [ 6.0360497, 46.1737199 ], + [ 6.0375645, 46.1737208 ], + [ 6.0389645, 46.1733191 ], + [ 6.040037, 46.172576 ], + [ 6.0400746, 46.172537 ], + [ 6.0405853, 46.17177 ], + [ 6.0407295, 46.1709309 ], + [ 6.0404931, 46.1701019 ], + [ 6.0398992, 46.1693644 ], + [ 6.0390061, 46.1687906 ], + [ 6.038678, 46.1686383 ], + [ 6.0375729, 46.1682845 ], + [ 6.0363644, 46.1681856 ], + [ 6.0351712, 46.1683513 ], + [ 6.0341103, 46.1687654 ], + [ 6.0332859, 46.1693872 ], + [ 6.0332485, 46.1694262 ], + [ 6.0326717, 46.1703982 ], + [ 6.0326733, 46.1714495 ], + [ 6.0332529, 46.1724207 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-44", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4206072, 47.4026984 ], + [ 7.4206112, 47.4027397 ], + [ 7.4205906, 47.4027453 ], + [ 7.4204228, 47.4027976 ], + [ 7.420056, 47.4029392 ], + [ 7.419829, 47.4030262 ], + [ 7.4198367, 47.4030819 ], + [ 7.4197874, 47.4030853 ], + [ 7.4197684, 47.4031797 ], + [ 7.4197528, 47.4033238 ], + [ 7.4197922, 47.4035097 ], + [ 7.4197478, 47.4035359 ], + [ 7.4194676, 47.4036038 ], + [ 7.4194286, 47.4036355 ], + [ 7.4193013, 47.4036946 ], + [ 7.4191186, 47.4037541 ], + [ 7.4189997, 47.4037917 ], + [ 7.4189987, 47.4038912 ], + [ 7.4191494, 47.4038888 ], + [ 7.4193521, 47.4038731 ], + [ 7.4195474, 47.4038421 ], + [ 7.4196082, 47.4039316 ], + [ 7.4197136, 47.4040145 ], + [ 7.4198354, 47.4040148 ], + [ 7.4199675, 47.4040257 ], + [ 7.4200948, 47.4040417 ], + [ 7.4200949, 47.404048 ], + [ 7.4199536, 47.4040432 ], + [ 7.4198354, 47.4040292 ], + [ 7.4197357, 47.404029 ], + [ 7.4198334, 47.4040877 ], + [ 7.4200866, 47.4040657 ], + [ 7.4201322, 47.4040426 ], + [ 7.4202621, 47.4040065 ], + [ 7.4204265, 47.4039792 ], + [ 7.4206584, 47.4039507 ], + [ 7.4208687, 47.4039123 ], + [ 7.4209391, 47.4039 ], + [ 7.4211766, 47.4038525 ], + [ 7.4214413, 47.403785 ], + [ 7.4216584, 47.4037154 ], + [ 7.4218548, 47.403631 ], + [ 7.4220257, 47.403522 ], + [ 7.4222295, 47.403373 ], + [ 7.4222487, 47.4033599 ], + [ 7.4224674, 47.4032104 ], + [ 7.4227209, 47.4030322 ], + [ 7.4229007, 47.4029327 ], + [ 7.4229618, 47.4029051 ], + [ 7.4230792, 47.4028522 ], + [ 7.4232872, 47.4027506 ], + [ 7.423366, 47.4027118 ], + [ 7.4234483, 47.4026766 ], + [ 7.4235337999999995, 47.4026451 ], + [ 7.4236222, 47.4026176 ], + [ 7.4238049, 47.4025617 ], + [ 7.4239095, 47.4025297 ], + [ 7.4240917, 47.4024669 ], + [ 7.4242775, 47.4023882 ], + [ 7.4245354, 47.4022757 ], + [ 7.4247878, 47.4021773 ], + [ 7.424926, 47.4021274 ], + [ 7.4249465, 47.4021213 ], + [ 7.4250043, 47.4020994 ], + [ 7.4252192, 47.4020149 ], + [ 7.4253292, 47.4018822 ], + [ 7.4253744, 47.4017906 ], + [ 7.4254683, 47.4014165 ], + [ 7.4254736, 47.401394 ], + [ 7.4254889, 47.4013289 ], + [ 7.425446, 47.4013191 ], + [ 7.4254389, 47.4012748 ], + [ 7.4253655, 47.4012701 ], + [ 7.4252882, 47.401314 ], + [ 7.4250634, 47.4012736 ], + [ 7.4247435, 47.4012174 ], + [ 7.4247315, 47.4012614 ], + [ 7.4244655999999996, 47.4012543 ], + [ 7.4241195, 47.4012575 ], + [ 7.4238566, 47.4013247 ], + [ 7.4238354, 47.4013808 ], + [ 7.4238071, 47.4015105 ], + [ 7.4237441, 47.4016163 ], + [ 7.4235707, 47.4016962 ], + [ 7.4235445, 47.4018062 ], + [ 7.4235631, 47.4019004 ], + [ 7.423558, 47.4019737 ], + [ 7.4234539999999996, 47.4020579 ], + [ 7.4232551, 47.4021309 ], + [ 7.4230865999999995, 47.4022066 ], + [ 7.4228299, 47.4023037 ], + [ 7.4225462, 47.4024222 ], + [ 7.4222898, 47.4025469 ], + [ 7.422023, 47.4026401 ], + [ 7.4218799, 47.4026322 ], + [ 7.4216692, 47.4027325 ], + [ 7.4215498, 47.4027789 ], + [ 7.4214756, 47.4027846 ], + [ 7.4214341, 47.4027878 ], + [ 7.4212732, 47.4028232 ], + [ 7.4211027, 47.4028029 ], + [ 7.4209851, 47.4027759 ], + [ 7.4208011, 47.4027607 ], + [ 7.4206072, 47.4026984 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr051", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Sägibergli", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Sägibergli", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Sägibergli", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Sägibergli", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.9328717, 46.4681735 ], + [ 9.9325783, 46.4683193 ], + [ 9.9323178, 46.4684536 ], + [ 9.9322276, 46.4685001 ], + [ 9.9320656, 46.4686581 ], + [ 9.9319675, 46.468721 ], + [ 9.931727, 46.4688011 ], + [ 9.9315332, 46.4688522 ], + [ 9.9312369, 46.4692074 ], + [ 9.930991, 46.4693826 ], + [ 9.93072, 46.4695441 ], + [ 9.9304747, 46.4697333 ], + [ 9.9303699, 46.4699334 ], + [ 9.9303122, 46.4701129 ], + [ 9.9302149, 46.4702988 ], + [ 9.930095099999999, 46.4703666 ], + [ 9.9298739, 46.470459 ], + [ 9.929568, 46.470658 ], + [ 9.9293096, 46.4709182 ], + [ 9.9292325, 46.4710283 ], + [ 9.9291275, 46.4711344 ], + [ 9.9288398, 46.4712884 ], + [ 9.9282756, 46.4715882 ], + [ 9.9280413, 46.471769 ], + [ 9.9278982, 46.4719159 ], + [ 9.9278316, 46.4719732 ], + [ 9.9277926, 46.47201 ], + [ 9.9277542, 46.4720587 ], + [ 9.9278373, 46.4720968 ], + [ 9.9278915, 46.4721594 ], + [ 9.9279068, 46.472227 ], + [ 9.9279045, 46.4724427 ], + [ 9.9277294, 46.4725303 ], + [ 9.9276494, 46.472667799999996 ], + [ 9.9276505, 46.4728154 ], + [ 9.9274393, 46.4731275 ], + [ 9.92723, 46.4734793 ], + [ 9.9270527, 46.4736429 ], + [ 9.9268613, 46.4737468 ], + [ 9.9265572, 46.4739172 ], + [ 9.9260458, 46.4741081 ], + [ 9.9256455, 46.4742046 ], + [ 9.9253228, 46.4743394 ], + [ 9.9251684, 46.4745065 ], + [ 9.9246422, 46.4748733 ], + [ 9.9243619, 46.475063 ], + [ 9.924123999999999, 46.4752918 ], + [ 9.9239707, 46.4756065 ], + [ 9.9239164, 46.4758073 ], + [ 9.9239711, 46.4758619 ], + [ 9.9239747, 46.4759417 ], + [ 9.9238294, 46.4760407 ], + [ 9.9236398, 46.4765758 ], + [ 9.9229814, 46.4773287 ], + [ 9.9228168, 46.4773962 ], + [ 9.9226164, 46.4775723 ], + [ 9.9224391, 46.4778595 ], + [ 9.9222008, 46.4783278 ], + [ 9.9221148, 46.4784774 ], + [ 9.9217488, 46.478681 ], + [ 9.9217062, 46.4787657 ], + [ 9.9216836, 46.4788939 ], + [ 9.9216462, 46.4789666 ], + [ 9.9214676, 46.4791023 ], + [ 9.9209102, 46.4794298 ], + [ 9.9204379, 46.4797156 ], + [ 9.920141, 46.4799177 ], + [ 9.9200489, 46.4800394 ], + [ 9.9198632, 46.4801633 ], + [ 9.9196449, 46.4803037 ], + [ 9.919453, 46.4804157 ], + [ 9.9192087, 46.4805049 ], + [ 9.9187204, 46.4805634 ], + [ 9.9184018, 46.4806661 ], + [ 9.9179716, 46.4808752 ], + [ 9.9176477, 46.4812336 ], + [ 9.9174773, 46.4813012 ], + [ 9.9170952, 46.4812975 ], + [ 9.9169354, 46.4813289 ], + [ 9.9168228, 46.4813952 ], + [ 9.9166131, 46.4814916 ], + [ 9.9158647, 46.4817082 ], + [ 9.9156579, 46.4819719 ], + [ 9.9159086, 46.4821837 ], + [ 9.9162596, 46.4823989 ], + [ 9.916711, 46.4826345 ], + [ 9.9169171, 46.4827786 ], + [ 9.9172156, 46.4831099 ], + [ 9.9173306, 46.4832563 ], + [ 9.9175073, 46.4834702 ], + [ 9.917599599999999, 46.4835869 ], + [ 9.9176854, 46.4836954 ], + [ 9.9178531, 46.4839093 ], + [ 9.9180637, 46.4841338 ], + [ 9.9182814, 46.484335 ], + [ 9.9182852, 46.4843378 ], + [ 9.918686, 46.4846349 ], + [ 9.9192146, 46.4849202 ], + [ 9.9194367, 46.4850583 ], + [ 9.9196591, 46.4851848 ], + [ 9.9198482, 46.4853121 ], + [ 9.9200629, 46.4854675 ], + [ 9.9203801, 46.4856719 ], + [ 9.9206023, 46.4858099 ], + [ 9.9208826, 46.4859394 ], + [ 9.9210865, 46.4860332 ], + [ 9.9211816, 46.4861725 ], + [ 9.921479099999999, 46.4862495 ], + [ 9.921754, 46.4863123 ], + [ 9.9220527, 46.4864161 ], + [ 9.9226844, 46.4865158 ], + [ 9.9229919, 46.4865271 ], + [ 9.923243, 46.486444 ], + [ 9.9234696, 46.4863763 ], + [ 9.9239319, 46.4862825 ], + [ 9.9241978, 46.4862379 ], + [ 9.9243809, 46.4861652 ], + [ 9.9245188, 46.4860636 ], + [ 9.9245994, 46.486029 ], + [ 9.9246977, 46.4860403 ], + [ 9.925040599999999, 46.4860948 ], + [ 9.9251983, 46.4860876 ], + [ 9.9253005, 46.486008 ], + [ 9.925616, 46.4858565 ], + [ 9.9258153, 46.4857814 ], + [ 9.9261245, 46.4857576 ], + [ 9.9268153, 46.4857252 ], + [ 9.9270197, 46.4857431 ], + [ 9.9272662, 46.4858283 ], + [ 9.9275096, 46.4858607 ], + [ 9.9277287, 46.485861 ], + [ 9.9279023, 46.4858461 ], + [ 9.9282274, 46.4857613 ], + [ 9.9285334, 46.4856502 ], + [ 9.928842, 46.4854911 ], + [ 9.9290882, 46.4854081 ], + [ 9.9292688, 46.4852786 ], + [ 9.9294939, 46.485199 ], + [ 9.9300639, 46.4850911 ], + [ 9.9302361, 46.4850285 ], + [ 9.9305469, 46.484791 ], + [ 9.9306998, 46.484629 ], + [ 9.9308996, 46.4845639 ], + [ 9.931297, 46.4844047 ], + [ 9.9315385, 46.4842723 ], + [ 9.9317889, 46.4841569 ], + [ 9.9321593, 46.4839408 ], + [ 9.9324924, 46.4838176 ], + [ 9.9329024, 46.4837385 ], + [ 9.9329477, 46.4836604 ], + [ 9.9332631, 46.4836663 ], + [ 9.9335854, 46.4835031 ], + [ 9.93393, 46.4832763 ], + [ 9.9341691, 46.4830921 ], + [ 9.9343367, 46.4829847 ], + [ 9.9346354, 46.4828221 ], + [ 9.9350182, 46.4826985 ], + [ 9.9353602, 46.4825394 ], + [ 9.9358542, 46.4824459 ], + [ 9.936239, 46.4823478 ], + [ 9.936361, 46.4821867 ], + [ 9.9365904, 46.4819681 ], + [ 9.9366925, 46.4820279 ], + [ 9.9368359, 46.4821005 ], + [ 9.9370437, 46.4820684 ], + [ 9.937206, 46.4821269 ], + [ 9.9373363, 46.4821447 ], + [ 9.9374637, 46.4821005 ], + [ 9.9375694, 46.4820086 ], + [ 9.9378518, 46.4818646 ], + [ 9.9381945, 46.4817192 ], + [ 9.9385396, 46.4816289 ], + [ 9.9389062, 46.4815795 ], + [ 9.9391448, 46.4815605 ], + [ 9.9394084, 46.4814513 ], + [ 9.9396575, 46.481432 ], + [ 9.9398929, 46.4813442 ], + [ 9.9400074, 46.4812315 ], + [ 9.9402104, 46.4810961 ], + [ 9.9403457, 46.4810105 ], + [ 9.9404291, 46.4808777 ], + [ 9.9407943, 46.4807801 ], + [ 9.9411548, 46.4805998 ], + [ 9.9413937, 46.4805877 ], + [ 9.9414527, 46.4805795 ], + [ 9.941555900000001, 46.4804326 ], + [ 9.9416516, 46.4803547 ], + [ 9.9419883, 46.4802922 ], + [ 9.9425584, 46.4799075 ], + [ 9.9428401, 46.4799599 ], + [ 9.943029, 46.479942 ], + [ 9.9435682, 46.4797336 ], + [ 9.9437795, 46.4795671 ], + [ 9.9439313, 46.4793984 ], + [ 9.9441647, 46.4792692 ], + [ 9.9441923, 46.4791438 ], + [ 9.9442108, 46.4789987 ], + [ 9.9441442, 46.4789322 ], + [ 9.944045, 46.4788463 ], + [ 9.944063, 46.4787955 ], + [ 9.944128899999999, 46.4787589 ], + [ 9.9441589, 46.4787394 ], + [ 9.9443752, 46.4786968 ], + [ 9.9447218, 46.4786212 ], + [ 9.9449337, 46.4784323 ], + [ 9.9450331, 46.4784163 ], + [ 9.9452817, 46.478404 ], + [ 9.9455942, 46.4782594 ], + [ 9.9457774, 46.4781175 ], + [ 9.9461971, 46.4781427 ], + [ 9.9465396, 46.4781891 ], + [ 9.9467109, 46.4782485 ], + [ 9.9471629, 46.4783211 ], + [ 9.947381, 46.4783025 ], + [ 9.9476252, 46.4781939 ], + [ 9.9478976, 46.4782567 ], + [ 9.9483019, 46.4783717 ], + [ 9.9485021, 46.4784043 ], + [ 9.9487163, 46.4784935 ], + [ 9.9488896, 46.4785428 ], + [ 9.9490812, 46.4785487 ], + [ 9.9493504, 46.4785073 ], + [ 9.949586, 46.4785123 ], + [ 9.9497348, 46.4784025 ], + [ 9.9498678, 46.4782677 ], + [ 9.9499918, 46.4780977 ], + [ 9.9501015, 46.4779178 ], + [ 9.9501847, 46.4778146 ], + [ 9.9505314, 46.4777055 ], + [ 9.9508399, 46.4775465 ], + [ 9.9510992, 46.4774495 ], + [ 9.9512477, 46.4773145 ], + [ 9.9514418, 46.4772341 ], + [ 9.9515271, 46.4771765 ], + [ 9.9515822, 46.4771013 ], + [ 9.9516097, 46.4770632 ], + [ 9.9517494, 46.4768978 ], + [ 9.9519932, 46.4766237 ], + [ 9.9520667, 46.47647 ], + [ 9.9521132, 46.4763676 ], + [ 9.9523356, 46.4762461 ], + [ 9.9525438, 46.4761553 ], + [ 9.9526638, 46.4761256 ], + [ 9.9527257, 46.4760743 ], + [ 9.952764, 46.4760042 ], + [ 9.9529702, 46.4756927 ], + [ 9.9532078, 46.4754801 ], + [ 9.953446, 46.475296 ], + [ 9.9537395, 46.4750418 ], + [ 9.9539845, 46.4748288 ], + [ 9.9542006, 46.4746798 ], + [ 9.9544572, 46.474524 ], + [ 9.9546674, 46.474421 ], + [ 9.9549602, 46.4743275 ], + [ 9.9552536, 46.4742282 ], + [ 9.9556023, 46.4740931 ], + [ 9.9559277, 46.4739815 ], + [ 9.9561313, 46.4739132 ], + [ 9.956384, 46.4738321 ], + [ 9.9567102, 46.4737378 ], + [ 9.9570634, 46.4736828 ], + [ 9.9574051, 46.4735708 ], + [ 9.9578411, 46.4733531 ], + [ 9.9581576, 46.4732416 ], + [ 9.958707, 46.4729751 ], + [ 9.9590974, 46.4728446 ], + [ 9.9595768, 46.4726659 ], + [ 9.9601443, 46.4724391 ], + [ 9.960519, 46.4723204 ], + [ 9.9608767, 46.4721851 ], + [ 9.9612682, 46.4720775 ], + [ 9.9619024, 46.471849 ], + [ 9.9623017, 46.4717355 ], + [ 9.9625059, 46.4716787 ], + [ 9.9631889, 46.4714316 ], + [ 9.9639634, 46.4712109 ], + [ 9.9645423, 46.4710355 ], + [ 9.9649275, 46.4709501 ], + [ 9.9653646, 46.4709824 ], + [ 9.9661968, 46.4711082 ], + [ 9.9681075, 46.471192 ], + [ 9.9685839, 46.4713317 ], + [ 9.9688763, 46.4714395 ], + [ 9.969051799999999, 46.4714837 ], + [ 9.9691483, 46.4714935 ], + [ 9.9692524, 46.4714912 ], + [ 9.969241199999999, 46.4714253 ], + [ 9.9692538, 46.4713288 ], + [ 9.9693271, 46.471225 ], + [ 9.9695135, 46.4711186 ], + [ 9.9697692, 46.4709985 ], + [ 9.969885, 46.4708638 ], + [ 9.9699944, 46.4707831 ], + [ 9.9702096, 46.4707362 ], + [ 9.9705913, 46.4707157 ], + [ 9.9712716, 46.4707426 ], + [ 9.971642899999999, 46.4706742 ], + [ 9.9723305, 46.4706829 ], + [ 9.9725627, 46.4706176 ], + [ 9.9730034, 46.4705536 ], + [ 9.973555, 46.470439 ], + [ 9.9741342, 46.4701676 ], + [ 9.9747142, 46.4699141 ], + [ 9.9749821, 46.4698292 ], + [ 9.9752656, 46.4695881 ], + [ 9.9757851, 46.4691735 ], + [ 9.9758135, 46.4689791 ], + [ 9.9758525, 46.4687179 ], + [ 9.9759479, 46.4685474 ], + [ 9.9759499, 46.4682771 ], + [ 9.976125, 46.4680691 ], + [ 9.9762389, 46.4676686 ], + [ 9.9763307, 46.4672635 ], + [ 9.9768678, 46.4668255 ], + [ 9.977221, 46.4664757 ], + [ 9.9774355, 46.46617 ], + [ 9.9775642, 46.4660855 ], + [ 9.9777156, 46.4660158 ], + [ 9.977743199999999, 46.465806 ], + [ 9.9775603, 46.4653764 ], + [ 9.977508199999999, 46.4652042 ], + [ 9.9775969, 46.464891 ], + [ 9.9775746, 46.46457 ], + [ 9.9776019, 46.4640593 ], + [ 9.9776124, 46.4638143 ], + [ 9.9777756, 46.4635095 ], + [ 9.9778188, 46.4633198 ], + [ 9.9778836, 46.4629817 ], + [ 9.977917, 46.462583 ], + [ 9.9779178, 46.4622871 ], + [ 9.9779625, 46.4619902 ], + [ 9.9779798, 46.4615613 ], + [ 9.9780203, 46.4613307 ], + [ 9.9780418, 46.4611466 ], + [ 9.9781243, 46.4610325 ], + [ 9.9781923, 46.4609034 ], + [ 9.9782611, 46.4607897 ], + [ 9.9783388, 46.4607114 ], + [ 9.9784691, 46.4608157 ], + [ 9.9785769, 46.4609102 ], + [ 9.9786186, 46.4608634 ], + [ 9.9786761, 46.4608212 ], + [ 9.9787595, 46.4608806 ], + [ 9.9788436, 46.4609399 ], + [ 9.9788854, 46.4610308 ], + [ 9.9788958, 46.4610969 ], + [ 9.9789889, 46.4612071 ], + [ 9.9791306, 46.4613824 ], + [ 9.9792407, 46.4613698 ], + [ 9.9792884, 46.4614503 ], + [ 9.9793069, 46.4615316 ], + [ 9.9793476, 46.4616021 ], + [ 9.9794431, 46.4617631 ], + [ 9.9796, 46.4619485 ], + [ 9.9796861, 46.462222 ], + [ 9.979771, 46.4624547 ], + [ 9.9797964, 46.4625256 ], + [ 9.9798673, 46.4626158 ], + [ 9.9799383, 46.4627061 ], + [ 9.980043, 46.4627344 ], + [ 9.9801185, 46.4626255 ], + [ 9.980137, 46.4625333 ], + [ 9.9802122, 46.4624194 ], + [ 9.9803952, 46.4625378 ], + [ 9.9804955, 46.4626274 ], + [ 9.9806097, 46.4627013 ], + [ 9.980695, 46.462628 ], + [ 9.9807568, 46.4625398 ], + [ 9.9808394, 46.4624104 ], + [ 9.980938, 46.4624643 ], + [ 9.9811669, 46.4626225 ], + [ 9.9813546, 46.4626846 ], + [ 9.9815075, 46.4624925 ], + [ 9.9816552, 46.4623259 ], + [ 9.9818074, 46.4624295 ], + [ 9.9820552, 46.4625057 ], + [ 9.9821297, 46.4623764 ], + [ 9.9821631, 46.4622889 ], + [ 9.9822509, 46.4621136 ], + [ 9.9823151, 46.4620764 ], + [ 9.9824818, 46.4621594 ], + [ 9.982718, 46.4623174 ], + [ 9.9828619, 46.4620896 ], + [ 9.9829253, 46.4620167 ], + [ 9.9831401, 46.4620325 ], + [ 9.9832665, 46.4620551 ], + [ 9.9833646, 46.4620987 ], + [ 9.9834284, 46.4620361 ], + [ 9.9835044, 46.4619375 ], + [ 9.9835589, 46.4618342 ], + [ 9.9836866, 46.4618824 ], + [ 9.9837511, 46.4618351 ], + [ 9.9837907, 46.4617424 ], + [ 9.983868, 46.4616539 ], + [ 9.9839824, 46.4617329 ], + [ 9.9840958, 46.4617916 ], + [ 9.9842238, 46.4616917 ], + [ 9.9843157, 46.4616031 ], + [ 9.984405, 46.4614582 ], + [ 9.9844205, 46.46132 ], + [ 9.9845389, 46.4613276 ], + [ 9.9845333, 46.4612105 ], + [ 9.9845361, 46.4611134 ], + [ 9.9847649, 46.4610981 ], + [ 9.9849359, 46.4609768 ], + [ 9.9850554, 46.4608518 ], + [ 9.9851173, 46.4607483 ], + [ 9.985359, 46.4607124 ], + [ 9.985566, 46.4607179 ], + [ 9.985707399999999, 46.46073 ], + [ 9.9856932, 46.4604623 ], + [ 9.9857354, 46.4602345 ], + [ 9.9858754, 46.4600798 ], + [ 9.9861648, 46.4599841 ], + [ 9.9864622, 46.4598697 ], + [ 9.9867695, 46.4596874 ], + [ 9.9869588, 46.4595416 ], + [ 9.9870757, 46.4594651 ], + [ 9.9869536, 46.459431 ], + [ 9.9871166, 46.4592981 ], + [ 9.9872406, 46.4591998 ], + [ 9.9873245, 46.4591826 ], + [ 9.987404399999999, 46.4591685 ], + [ 9.9875919, 46.4590013 ], + [ 9.9878003, 46.4589842 ], + [ 9.9878971, 46.4589483 ], + [ 9.9879827, 46.4588817 ], + [ 9.9879268, 46.4588184 ], + [ 9.988062, 46.4587691 ], + [ 9.9881857, 46.458751 ], + [ 9.9882646, 46.4587496 ], + [ 9.988324800000001, 46.4587307 ], + [ 9.9883245, 46.4586566 ], + [ 9.9883913, 46.4586742 ], + [ 9.9884835, 46.4586969 ], + [ 9.9884939, 46.4586576 ], + [ 9.9884914, 46.4586219 ], + [ 9.9884867, 46.4585566 ], + [ 9.9884445, 46.4585066 ], + [ 9.9884098, 46.4584787 ], + [ 9.9883729, 46.4584564 ], + [ 9.9883329, 46.4584357 ], + [ 9.9882942, 46.4584096 ], + [ 9.9883313, 46.4583857 ], + [ 9.9883803, 46.4583877 ], + [ 9.9884384, 46.4583944 ], + [ 9.988499, 46.4584023 ], + [ 9.9885934, 46.4583326 ], + [ 9.9885288, 46.4582755 ], + [ 9.9884945, 46.4582025 ], + [ 9.9886388, 46.4579653 ], + [ 9.9886164, 46.4578705 ], + [ 9.9885309, 46.4577494 ], + [ 9.9883732, 46.4576144 ], + [ 9.9882323, 46.4574577 ], + [ 9.9882362, 46.4572984 ], + [ 9.9882864, 46.457189 ], + [ 9.9881287, 46.4567783 ], + [ 9.9880876, 46.4564924 ], + [ 9.988010899999999, 46.4562456 ], + [ 9.987904, 46.4557382 ], + [ 9.9878536, 46.4554461 ], + [ 9.9876188, 46.4549544 ], + [ 9.9875379, 46.4546184 ], + [ 9.9873993, 46.4544048 ], + [ 9.9871316, 46.4542006 ], + [ 9.986722199999999, 46.4537318 ], + [ 9.9864109, 46.4533946 ], + [ 9.9861807, 46.4532087 ], + [ 9.985908, 46.4528961 ], + [ 9.98579, 46.4527394 ], + [ 9.9854611, 46.4522179 ], + [ 9.9850734, 46.451796 ], + [ 9.9848864, 46.4514548 ], + [ 9.9847574, 46.4511694 ], + [ 9.9845838, 46.4508165 ], + [ 9.9844208, 46.4506735 ], + [ 9.9842867, 46.4505745 ], + [ 9.9841811, 46.4503014 ], + [ 9.9840142, 46.4500402 ], + [ 9.9838641, 46.4497901 ], + [ 9.9836804, 46.4495349 ], + [ 9.9835203, 46.4492276 ], + [ 9.9832738, 46.448832 ], + [ 9.9828936, 46.4483945 ], + [ 9.9826311, 46.4481071 ], + [ 9.9825086, 46.447855 ], + [ 9.9823545, 46.4475207 ], + [ 9.9820985, 46.4471632 ], + [ 9.9818767, 46.4469642 ], + [ 9.9816208, 46.446817 ], + [ 9.9813045, 46.446754 ], + [ 9.9811046, 46.4466221 ], + [ 9.9808811, 46.4464021 ], + [ 9.980809, 46.4462539 ], + [ 9.9807457, 46.4461001 ], + [ 9.9806915, 46.445969 ], + [ 9.9806607, 46.4458145 ], + [ 9.9805799, 46.4456379 ], + [ 9.980516, 46.4454897 ], + [ 9.9804456, 46.4453761 ], + [ 9.9802597, 46.4452817 ], + [ 9.9800654, 46.4451817 ], + [ 9.9798545, 46.4450761 ], + [ 9.9797039, 46.4450213 ], + [ 9.9794838, 46.4449102 ], + [ 9.979174, 46.4448121 ], + [ 9.9789157, 46.4447705 ], + [ 9.9786322, 46.444712 ], + [ 9.9781274, 46.4446552 ], + [ 9.9773475, 46.4443697 ], + [ 9.9771621, 46.4441991 ], + [ 9.9772782, 46.4437945 ], + [ 9.977436, 46.4436712 ], + [ 9.9774057, 46.44351 ], + [ 9.976750299999999, 46.4435555 ], + [ 9.976181, 46.4435801 ], + [ 9.9755615, 46.4436815 ], + [ 9.9750882, 46.4440007 ], + [ 9.974852, 46.4441867 ], + [ 9.9743642, 46.4443889 ], + [ 9.974361, 46.4443901 ], + [ 9.9742296, 46.4444337 ], + [ 9.9739689, 46.4444805 ], + [ 9.9737624, 46.444503 ], + [ 9.9735183, 46.4445723 ], + [ 9.9733335, 46.4446747 ], + [ 9.9731887, 46.4447645 ], + [ 9.972947, 46.4448856 ], + [ 9.9727215, 46.4450061 ], + [ 9.9725144, 46.445155 ], + [ 9.9722748, 46.4453218 ], + [ 9.9720203, 46.4455179 ], + [ 9.9718059, 46.4456841 ], + [ 9.9714788, 46.4459278 ], + [ 9.9711316, 46.4460917 ], + [ 9.9707812, 46.4461868 ], + [ 9.9704864, 46.4462517 ], + [ 9.9688956, 46.4463093 ], + [ 9.968258, 46.4463008 ], + [ 9.9676602, 46.4462746 ], + [ 9.9673143, 46.4462202 ], + [ 9.966859, 46.4464393 ], + [ 9.9662531, 46.4466581 ], + [ 9.9659824, 46.4466994 ], + [ 9.965664, 46.4467822 ], + [ 9.9652315, 46.4468966 ], + [ 9.9648304, 46.4469872 ], + [ 9.9644213, 46.447078 ], + [ 9.9639744, 46.4472329 ], + [ 9.9633963, 46.4474199 ], + [ 9.9629051, 46.4475126 ], + [ 9.9626839, 46.44757 ], + [ 9.9622742, 46.4476493 ], + [ 9.9619705, 46.4476972 ], + [ 9.961057, 46.4479501 ], + [ 9.9600091, 46.4481662 ], + [ 9.9597316, 46.4482363 ], + [ 9.9592245, 46.4483584 ], + [ 9.9587089, 46.4484691 ], + [ 9.9582425, 46.4485727 ], + [ 9.9578913, 46.4486678 ], + [ 9.9575081, 46.4487751 ], + [ 9.957133, 46.4488822 ], + [ 9.9569455, 46.4489271 ], + [ 9.9567275, 46.449036 ], + [ 9.956487899999999, 46.4492029 ], + [ 9.9562865, 46.4493171 ], + [ 9.9559965, 46.4494681 ], + [ 9.9559853, 46.4494738 ], + [ 9.9555856, 46.4496794 ], + [ 9.955321, 46.4498354 ], + [ 9.9550344, 46.4500609 ], + [ 9.9547465, 46.4502404 ], + [ 9.9544123, 46.4503521 ], + [ 9.9542163, 46.4505466 ], + [ 9.9539498, 46.4506798 ], + [ 9.9537915, 46.45081 ], + [ 9.9536814, 46.4509277 ], + [ 9.9535157, 46.4510754 ], + [ 9.9533673, 46.4512456 ], + [ 9.953214, 46.451485 ], + [ 9.953057, 46.451644 ], + [ 9.952884, 46.4518264 ], + [ 9.952785, 46.4519896 ], + [ 9.9526393, 46.4522 ], + [ 9.9526267, 46.4522807 ], + [ 9.9523668, 46.4523791 ], + [ 9.9513432, 46.4525946 ], + [ 9.9510091, 46.452534 ], + [ 9.9506588, 46.4524741 ], + [ 9.9502849, 46.4524491 ], + [ 9.9499825, 46.4525257 ], + [ 9.9496583, 46.4526601 ], + [ 9.949417, 46.4527925 ], + [ 9.9490873, 46.4529846 ], + [ 9.9487144, 46.4531204 ], + [ 9.9482577, 46.4532583 ], + [ 9.9477391, 46.4534666 ], + [ 9.9475001, 46.4534899 ], + [ 9.947067, 46.4535927 ], + [ 9.9466858, 46.4537458 ], + [ 9.9464288, 46.4539073 ], + [ 9.9462744, 46.4541065 ], + [ 9.9460631, 46.4545002 ], + [ 9.9459401, 46.4546564 ], + [ 9.9457548, 46.4548206 ], + [ 9.9455581, 46.4549483 ], + [ 9.9453743, 46.4550391 ], + [ 9.9449756, 46.4552359 ], + [ 9.9448256, 46.4553881 ], + [ 9.9446773, 46.4557383 ], + [ 9.9444946, 46.4561693 ], + [ 9.9443452, 46.4562827 ], + [ 9.9439956, 46.4564504 ], + [ 9.943855, 46.4567006 ], + [ 9.943717, 46.4570092 ], + [ 9.9435932, 46.4572876 ], + [ 9.943463, 46.4574301 ], + [ 9.9432586, 46.4574987 ], + [ 9.9430456, 46.4575034 ], + [ 9.9428643, 46.4574734 ], + [ 9.9427187, 46.457386 ], + [ 9.9425065, 46.4576375 ], + [ 9.9424795, 46.458005 ], + [ 9.9423941, 46.4581304 ], + [ 9.9422956, 46.4583059 ], + [ 9.9421571, 46.4586559 ], + [ 9.9420735, 46.4588179 ], + [ 9.9418962, 46.4591554 ], + [ 9.9418222, 46.4593338 ], + [ 9.941829, 46.4594805 ], + [ 9.941864, 46.4598333 ], + [ 9.9418318, 46.4599642 ], + [ 9.9417142, 46.4602369 ], + [ 9.9412957, 46.4613103 ], + [ 9.9411143, 46.4615778 ], + [ 9.9410564, 46.461786 ], + [ 9.9409967, 46.4619573 ], + [ 9.9408549, 46.4621106 ], + [ 9.940629, 46.4622423 ], + [ 9.9403951, 46.4624143 ], + [ 9.939908299999999, 46.4628354 ], + [ 9.939618, 46.4630739 ], + [ 9.9394244, 46.463233 ], + [ 9.939051599999999, 46.4635148 ], + [ 9.9386606, 46.4638436 ], + [ 9.9381213, 46.4641891 ], + [ 9.9372697, 46.4646615 ], + [ 9.9369861, 46.4649013 ], + [ 9.9367237, 46.4650739 ], + [ 9.9360485, 46.4654537 ], + [ 9.9358232, 46.4655815 ], + [ 9.9356398, 46.4657166 ], + [ 9.9356544, 46.4658754 ], + [ 9.9356869, 46.4659962 ], + [ 9.9356505, 46.4660906 ], + [ 9.935588, 46.4661996 ], + [ 9.9354599, 46.466352 ], + [ 9.9353093, 46.466477 ], + [ 9.9351371, 46.4665556 ], + [ 9.9347966, 46.4666566 ], + [ 9.9346709, 46.4667203 ], + [ 9.9345013, 46.4668549 ], + [ 9.9342147, 46.4669595 ], + [ 9.934108, 46.4669946 ], + [ 9.934049, 46.467038 ], + [ 9.9340113, 46.4671043 ], + [ 9.9338282, 46.4673889 ], + [ 9.9336904, 46.4676306 ], + [ 9.9335361, 46.4677977 ], + [ 9.9333128, 46.4679524 ], + [ 9.9330216, 46.468099 ], + [ 9.9328717, 46.4681735 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "JBG0004", + "country" : "CHE", + "name" : [ + { + "text" : "Eidgenössisches Jagdbanngebiet Bernina-Albris", + "lang" : "de-CH" + }, + { + "text" : "District franc fédéral Bernina-Albris", + "lang" : "fr-CH" + }, + { + "text" : "Bandita federale di caccia Bernina-Albris", + "lang" : "it-CH" + }, + { + "text" : "Federal Game Reserve Bernina-Albris", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8674127, 47.4115312 ], + [ 7.8672804, 47.4116781 ], + [ 7.8673093, 47.4117222 ], + [ 7.8673226, 47.4117266 ], + [ 7.8673608999999995, 47.4117273 ], + [ 7.8674064, 47.4117263 ], + [ 7.8675882, 47.4117224 ], + [ 7.8679214, 47.4119385 ], + [ 7.8681292, 47.4120729 ], + [ 7.8684682, 47.4121491 ], + [ 7.8687138999999995, 47.4122022 ], + [ 7.8689035, 47.4122112 ], + [ 7.8693081, 47.412346 ], + [ 7.869722, 47.412321 ], + [ 7.8697993, 47.4123757 ], + [ 7.8702789, 47.4127148 ], + [ 7.8702881, 47.4127212 ], + [ 7.8703282, 47.4127497 ], + [ 7.8704725, 47.412698 ], + [ 7.870636, 47.4126256 ], + [ 7.8707269, 47.4125847 ], + [ 7.8708048, 47.4125916 ], + [ 7.870883, 47.4126411 ], + [ 7.8709403, 47.412701 ], + [ 7.8714606, 47.413184 ], + [ 7.8714953, 47.4131945 ], + [ 7.8718346, 47.4132785 ], + [ 7.8719798, 47.4133073 ], + [ 7.8720525, 47.4133049 ], + [ 7.8722033, 47.4132441 ], + [ 7.8723487, 47.413228 ], + [ 7.8724571, 47.4132382 ], + [ 7.8729664, 47.4133706 ], + [ 7.8732513, 47.4134845 ], + [ 7.8734546, 47.4135719 ], + [ 7.8735428, 47.4136387 ], + [ 7.8736406, 47.413655 ], + [ 7.8736715, 47.4136648 ], + [ 7.8737447, 47.4135796 ], + [ 7.873803, 47.413534 ], + [ 7.8740756, 47.4133573 ], + [ 7.8741487, 47.4132295 ], + [ 7.8743026, 47.4132545 ], + [ 7.8744336, 47.4132943 ], + [ 7.8749933, 47.4133883 ], + [ 7.8752265, 47.413423 ], + [ 7.8752936, 47.4133856 ], + [ 7.8753400000000005, 47.4132693 ], + [ 7.8753802, 47.4132437 ], + [ 7.8754737, 47.4132357 ], + [ 7.8757302, 47.4133063 ], + [ 7.8757947999999995, 47.4133265 ], + [ 7.8758865, 47.4133569 ], + [ 7.8759034, 47.4133625 ], + [ 7.8759679, 47.4133666 ], + [ 7.8760148, 47.4132026 ], + [ 7.8760148999999995, 47.4132025 ], + [ 7.87575, 47.4130496 ], + [ 7.8756158, 47.4129948 ], + [ 7.8754573, 47.4129563 ], + [ 7.8753303, 47.4129375 ], + [ 7.8752056, 47.4129254 ], + [ 7.8750070999999995, 47.4129062 ], + [ 7.8749421, 47.4129313 ], + [ 7.8749062, 47.4129934 ], + [ 7.8749029, 47.4129991 ], + [ 7.874743, 47.4129706 ], + [ 7.8743809, 47.4128154 ], + [ 7.8742114999999995, 47.4127342 ], + [ 7.8740818, 47.4126621 ], + [ 7.8739713, 47.4126409 ], + [ 7.8737536, 47.4126751 ], + [ 7.8735504, 47.41268 ], + [ 7.8735039, 47.4126817 ], + [ 7.8734614, 47.4126823 ], + [ 7.8734142, 47.4126778 ], + [ 7.8733595, 47.4126734 ], + [ 7.8732917, 47.4126597 ], + [ 7.8730701, 47.4126058 ], + [ 7.8728689, 47.4125601 ], + [ 7.8727619, 47.4125466 ], + [ 7.8725448, 47.4124836 ], + [ 7.872323, 47.4124531 ], + [ 7.8721709, 47.4124664 ], + [ 7.871952, 47.4123647 ], + [ 7.871881, 47.4123001 ], + [ 7.8718181, 47.4121985 ], + [ 7.8717551, 47.4120969 ], + [ 7.8713142, 47.4119686 ], + [ 7.8712064, 47.4118852 ], + [ 7.8708942, 47.4117295 ], + [ 7.8707562, 47.411681 ], + [ 7.8706795, 47.4116449 ], + [ 7.8704992, 47.4116054 ], + [ 7.8702345, 47.4115868 ], + [ 7.870156, 47.4115854 ], + [ 7.8700048, 47.4115617 ], + [ 7.8698405, 47.4115149 ], + [ 7.8697218, 47.4114893 ], + [ 7.869625, 47.4113621 ], + [ 7.8694144, 47.4112092 ], + [ 7.8693131, 47.4111217 ], + [ 7.8691956, 47.4111396 ], + [ 7.8682314, 47.4113699 ], + [ 7.8674547, 47.4114479 ], + [ 7.8674127, 47.4115312 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr045", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Flueacher", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Flueacher", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Flueacher", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Flueacher", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5747747, 47.4614165 ], + [ 7.5747844, 47.4614288 ], + [ 7.5749069, 47.4614198 ], + [ 7.5750056, 47.4614475 ], + [ 7.5750591, 47.4615185 ], + [ 7.5751482, 47.4616199 ], + [ 7.5752823, 47.4617326 ], + [ 7.575321, 47.4617959 ], + [ 7.5751563, 47.4618444 ], + [ 7.5750553, 47.461923 ], + [ 7.5750904, 47.4620021 ], + [ 7.5751458, 47.4620958 ], + [ 7.5750572, 47.4621325 ], + [ 7.5750025999999995, 47.4620233 ], + [ 7.5749642999999995, 47.462033 ], + [ 7.5750407, 47.4622831 ], + [ 7.5752277, 47.4621122 ], + [ 7.5754328, 47.4619248 ], + [ 7.5754073, 47.4617065 ], + [ 7.5759837, 47.4618733 ], + [ 7.5760781, 47.4622098 ], + [ 7.57665, 47.462146 ], + [ 7.5767472, 47.4621344 ], + [ 7.5770231, 47.4621013 ], + [ 7.5775727, 47.4619803 ], + [ 7.5776567, 47.4619618 ], + [ 7.5780142, 47.4618337 ], + [ 7.5783503, 47.4617133 ], + [ 7.5784339, 47.4616292 ], + [ 7.5787241, 47.4613378 ], + [ 7.5788613, 47.4611096 ], + [ 7.5789332, 47.4609903 ], + [ 7.5791937, 47.4607714 ], + [ 7.5792452, 47.4607282 ], + [ 7.5795245, 47.4603984 ], + [ 7.5798062999999996, 47.4600566 ], + [ 7.5798789, 47.4598155 ], + [ 7.5793474, 47.4599599 ], + [ 7.57903, 47.4601152 ], + [ 7.5788936, 47.4601464 ], + [ 7.5787109, 47.4601535 ], + [ 7.5783403, 47.4601271 ], + [ 7.5781447, 47.46017 ], + [ 7.5776538, 47.4602468 ], + [ 7.5775496, 47.460276 ], + [ 7.5773728, 47.4603564 ], + [ 7.5775831, 47.4603989 ], + [ 7.577576, 47.4604192 ], + [ 7.5774553000000004, 47.4604824 ], + [ 7.5773126, 47.460579 ], + [ 7.5772476, 47.4606248 ], + [ 7.5771606, 47.4606666 ], + [ 7.5770911, 47.4606958 ], + [ 7.5769228, 47.4607558 ], + [ 7.5767776, 47.460794 ], + [ 7.5765661, 47.4608423 ], + [ 7.5764533, 47.4608675 ], + [ 7.5762848, 47.4609175 ], + [ 7.5761364, 47.4609489 ], + [ 7.5760328, 47.4609761 ], + [ 7.5759666, 47.4609862 ], + [ 7.5758645, 47.4610099 ], + [ 7.5758347, 47.4609633 ], + [ 7.575807, 47.4609003 ], + [ 7.5759652, 47.4608295 ], + [ 7.5761135, 47.4607592 ], + [ 7.576241, 47.4607177 ], + [ 7.5761807999999995, 47.46063 ], + [ 7.575985, 47.4606624 ], + [ 7.5757025, 47.4606812 ], + [ 7.575544, 47.4606673 ], + [ 7.5755745999999995, 47.4607973 ], + [ 7.5755758, 47.4608948 ], + [ 7.5755896, 47.4609783 ], + [ 7.575623, 47.4610115 ], + [ 7.5755928, 47.4610807 ], + [ 7.5755392, 47.4611513 ], + [ 7.5753717, 47.4611869 ], + [ 7.5752908, 47.4612137 ], + [ 7.5752382, 47.4612627 ], + [ 7.5752030999999995, 47.4613087 ], + [ 7.5751407, 47.4613275 ], + [ 7.5749379, 47.4613652 ], + [ 7.5748435, 47.4613685 ], + [ 7.5747683, 47.4613957 ], + [ 7.5747747, 47.4614165 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns089", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Kleinfegg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Kleinfegg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Kleinfegg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Kleinfegg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.8945008, 46.1217256 ], + [ 8.8865903, 46.1206681 ], + [ 8.8832494, 46.1202841 ], + [ 8.8798842, 46.1200221 ], + [ 8.8765039, 46.1198828 ], + [ 8.8731178, 46.1198666 ], + [ 8.8697351, 46.1199736 ], + [ 8.866365, 46.1202035 ], + [ 8.8630168, 46.1205556 ], + [ 8.8596997, 46.1210289 ], + [ 8.8564226, 46.1216223 ], + [ 8.8531946, 46.122334 ], + [ 8.8500246, 46.1231621 ], + [ 8.846921, 46.1241043 ], + [ 8.8438926, 46.1251582 ], + [ 8.8409475, 46.1263207 ], + [ 8.8380938, 46.1275887 ], + [ 8.8353393, 46.1289588 ], + [ 8.8326916, 46.1304271 ], + [ 8.8301579, 46.1319897 ], + [ 8.8277451, 46.1336423 ], + [ 8.8254599, 46.1353804 ], + [ 8.8233085, 46.1371993 ], + [ 8.8212969, 46.1390938 ], + [ 8.8194305, 46.1410589 ], + [ 8.8177146, 46.1430893 ], + [ 8.8161537, 46.1451792 ], + [ 8.8147521, 46.147323 ], + [ 8.8135139, 46.1495149 ], + [ 8.8124423, 46.1517487 ], + [ 8.8115402, 46.1540185 ], + [ 8.8108103, 46.156318 ], + [ 8.8102546, 46.1586409 ], + [ 8.8098744, 46.1609808 ], + [ 8.809671, 46.1633313 ], + [ 8.809645, 46.165686 ], + [ 8.8097963, 46.1680384 ], + [ 8.8101246, 46.1703821 ], + [ 8.8106291, 46.1727107 ], + [ 8.8113084, 46.1750177 ], + [ 8.8121606, 46.1772968 ], + [ 8.8131834, 46.1795419 ], + [ 8.814374, 46.1817466 ], + [ 8.8157292, 46.183905 ], + [ 8.817245400000001, 46.1860112 ], + [ 8.8189182, 46.1880594 ], + [ 8.8207433, 46.1900439 ], + [ 8.8227155, 46.1919594 ], + [ 8.8248295, 46.1938005 ], + [ 8.8270795, 46.1955621 ], + [ 8.8294593, 46.1972396 ], + [ 8.8319625, 46.1988282 ], + [ 8.8345821, 46.2003236 ], + [ 8.8373109, 46.2017217 ], + [ 8.8401415, 46.2030186 ], + [ 8.843066199999999, 46.2042108 ], + [ 8.8460768, 46.2052951 ], + [ 8.8491651, 46.2062683 ], + [ 8.8523226, 46.2071279 ], + [ 8.8555407, 46.2078716 ], + [ 8.8588106, 46.2084971 ], + [ 8.8621231, 46.2090029 ], + [ 8.870046, 46.2100621 ], + [ 8.8733923, 46.2104465 ], + [ 8.8767631, 46.2107087 ], + [ 8.880149, 46.210848 ], + [ 8.8835408, 46.210864 ], + [ 8.8869292, 46.2107566 ], + [ 8.8903048, 46.2105261 ], + [ 8.8936583, 46.2101732 ], + [ 8.8969806, 46.2096988 ], + [ 8.9002625, 46.2091043 ], + [ 8.903495, 46.2083912 ], + [ 8.9066692, 46.2075616 ], + [ 8.9097765, 46.2066177 ], + [ 8.9128082, 46.2055621 ], + [ 8.915756, 46.2043977 ], + [ 8.918612, 46.2031277 ], + [ 8.9213681, 46.2017556 ], + [ 8.9240169, 46.2002852 ], + [ 8.9265511, 46.1987205 ], + [ 8.9289637, 46.1970657 ], + [ 8.9312482, 46.1953255 ], + [ 8.9333983, 46.1935046 ], + [ 8.935408, 46.1916081 ], + [ 8.9372719, 46.189641 ], + [ 8.9389849, 46.1876089 ], + [ 8.9405423, 46.1855173 ], + [ 8.9419399, 46.1833719 ], + [ 8.9431737, 46.1811786 ], + [ 8.9442406, 46.1789435 ], + [ 8.9451375, 46.1766726 ], + [ 8.945862, 46.1743723 ], + [ 8.9464121, 46.1720487 ], + [ 8.9467865, 46.1697084 ], + [ 8.946984, 46.1673576 ], + [ 8.9470041, 46.1650029 ], + [ 8.9468469, 46.1626506 ], + [ 8.9465127, 46.1603073 ], + [ 8.9460025, 46.1579794 ], + [ 8.9453178, 46.1556732 ], + [ 8.9444604, 46.1533951 ], + [ 8.9434326, 46.1511513 ], + [ 8.9422374, 46.1489479 ], + [ 8.940878099999999, 46.146791 ], + [ 8.9393583, 46.1446864 ], + [ 8.9376822, 46.1426401 ], + [ 8.9358545, 46.1406574 ], + [ 8.9338801, 46.138744 ], + [ 8.9317646, 46.1369049 ], + [ 8.9295136, 46.1351454 ], + [ 8.9271334, 46.13347 ], + [ 8.9246305, 46.1318835 ], + [ 8.9220117, 46.1303902 ], + [ 8.9192843, 46.1289942 ], + [ 8.916455599999999, 46.1276993 ], + [ 8.9135335, 46.1265089 ], + [ 8.9105259, 46.1254265 ], + [ 8.9074411, 46.124455 ], + [ 8.9042875, 46.1235969 ], + [ 8.9010736, 46.1228546 ], + [ 8.8978085, 46.1222303 ], + [ 8.8945008, 46.1217256 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSMO-01", + "country" : "CHE", + "name" : [ + { + "text" : "LSMO Locarno", + "lang" : "de-CH" + }, + { + "text" : "LSMO Locarno", + "lang" : "fr-CH" + }, + { + "text" : "LSMO Locarno", + "lang" : "it-CH" + }, + { + "text" : "LSMO Locarno", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Special Flight Office (SFO)", + "lang" : "de-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "fr-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "it-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "en-GB" + } + ], + "siteURL" : "https://skyguide.ch/services/special-flights", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7253827, 47.436446 ], + [ 7.7257903, 47.4365184 ], + [ 7.7261152, 47.4366301 ], + [ 7.7262292, 47.4365866 ], + [ 7.7266197, 47.4364102 ], + [ 7.7265391999999995, 47.43633 ], + [ 7.7257302, 47.4363836 ], + [ 7.7254143, 47.4363815 ], + [ 7.7253856, 47.4364402 ], + [ 7.7253827, 47.436446 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns164", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Weiher Brunnmatt", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Weiher Brunnmatt", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Weiher Brunnmatt", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Weiher Brunnmatt", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7821257, 47.3579022 ], + [ 7.7819331, 47.3580922 ], + [ 7.7819471, 47.3580972 ], + [ 7.7820559, 47.3580339 ], + [ 7.7821163, 47.3580569 ], + [ 7.7822168, 47.3580094 ], + [ 7.7826509999999995, 47.3582201 ], + [ 7.7829486, 47.3583318 ], + [ 7.7831072, 47.3583536 ], + [ 7.7832097000000005, 47.3584423 ], + [ 7.7832608, 47.3584558 ], + [ 7.7833389, 47.3584513 ], + [ 7.783518, 47.3585008 ], + [ 7.7835529, 47.3583871 ], + [ 7.783689, 47.3583812 ], + [ 7.7837769, 47.3583965 ], + [ 7.7838887, 47.3584159 ], + [ 7.7840967, 47.3583584 ], + [ 7.7843641, 47.3584454 ], + [ 7.7846027, 47.3584466 ], + [ 7.7849395, 47.3584826 ], + [ 7.7851619, 47.3585865 ], + [ 7.7854659, 47.3588012 ], + [ 7.7858541, 47.3589723 ], + [ 7.7862414, 47.3590863 ], + [ 7.78645, 47.3592159 ], + [ 7.7866017, 47.3592953 ], + [ 7.7866991, 47.3593059 ], + [ 7.7867161, 47.3592476 ], + [ 7.7869544, 47.3592429 ], + [ 7.7870151, 47.3592013 ], + [ 7.787238, 47.3592914 ], + [ 7.7872331, 47.3594296 ], + [ 7.7874019, 47.3595438 ], + [ 7.7874279, 47.3596765 ], + [ 7.7875905, 47.3597302 ], + [ 7.7876396, 47.3596996 ], + [ 7.7880169, 47.3597986 ], + [ 7.788267, 47.3598857 ], + [ 7.7883455999999995, 47.3599579 ], + [ 7.7884662, 47.3600045 ], + [ 7.78882, 47.3601045 ], + [ 7.7889584, 47.3601184 ], + [ 7.789118, 47.3601925 ], + [ 7.7894959, 47.3602833 ], + [ 7.7901659, 47.360355 ], + [ 7.7901711, 47.3603912 ], + [ 7.7905157, 47.3604753 ], + [ 7.7906994, 47.360494 ], + [ 7.7907466, 47.3605483 ], + [ 7.7910243999999995, 47.3606038 ], + [ 7.7911241, 47.3606745 ], + [ 7.791275, 47.3607352 ], + [ 7.7914136, 47.360763 ], + [ 7.7915238, 47.360773 ], + [ 7.7917197, 47.3608099 ], + [ 7.7918265, 47.3608302 ], + [ 7.7919830999999995, 47.36086 ], + [ 7.7922362, 47.3609033 ], + [ 7.7922937999999995, 47.3609636 ], + [ 7.7923108, 47.3610016 ], + [ 7.7923952, 47.3610381 ], + [ 7.7923205, 47.3611391 ], + [ 7.7927051, 47.3612303 ], + [ 7.7929902, 47.361248 ], + [ 7.7930824, 47.3611563 ], + [ 7.7931291, 47.3611616 ], + [ 7.7931733, 47.3611809 ], + [ 7.7932153, 47.361218 ], + [ 7.7932353, 47.3612501 ], + [ 7.79327, 47.3613065 ], + [ 7.7933406, 47.3613239 ], + [ 7.7934211, 47.3611965 ], + [ 7.7935528, 47.3611942 ], + [ 7.7936523, 47.3612212 ], + [ 7.7937832, 47.3611771 ], + [ 7.7938495, 47.3610666 ], + [ 7.7941223, 47.3611927 ], + [ 7.7944544, 47.3612041 ], + [ 7.7946194, 47.3611746 ], + [ 7.7949423, 47.3611937 ], + [ 7.7950121, 47.3611655 ], + [ 7.7951613, 47.361172 ], + [ 7.795203, 47.3612879 ], + [ 7.795251, 47.3613061 ], + [ 7.79529, 47.3612718 ], + [ 7.7954635, 47.3612985 ], + [ 7.7954735, 47.3613384 ], + [ 7.7955439, 47.3613409 ], + [ 7.7955893, 47.3612866 ], + [ 7.795854, 47.3613248 ], + [ 7.7958671, 47.3613773 ], + [ 7.7960061, 47.3614206 ], + [ 7.796336, 47.361467 ], + [ 7.7964817, 47.3614532 ], + [ 7.7967767, 47.3615191 ], + [ 7.7968195, 47.3614996 ], + [ 7.7971518, 47.3615596 ], + [ 7.7973104, 47.3615229 ], + [ 7.7974362, 47.3615599 ], + [ 7.7974321, 47.3616111 ], + [ 7.7974283, 47.3616449 ], + [ 7.7976003, 47.3616758 ], + [ 7.7975881, 47.3616047 ], + [ 7.7977656, 47.3616367 ], + [ 7.797986, 47.3617065 ], + [ 7.7980721, 47.3616764 ], + [ 7.7981706, 47.3616916 ], + [ 7.7982072, 47.3615749 ], + [ 7.7983019, 47.3615883 ], + [ 7.7983319, 47.3617207 ], + [ 7.798608, 47.3617606 ], + [ 7.7986495, 47.3616829 ], + [ 7.7989046, 47.3616948 ], + [ 7.7990003, 47.3616831 ], + [ 7.7990895, 47.3616269 ], + [ 7.7995548, 47.3616452 ], + [ 7.7997939, 47.3616367 ], + [ 7.8002225, 47.3617679 ], + [ 7.8003086, 47.3617466 ], + [ 7.8002186, 47.3616847 ], + [ 7.800206, 47.3616799 ], + [ 7.799804, 47.3614088 ], + [ 7.7992777, 47.3612276 ], + [ 7.7990901, 47.3611732 ], + [ 7.7982132, 47.3610026 ], + [ 7.7971231, 47.3608456 ], + [ 7.7962891, 47.3607234 ], + [ 7.7954182, 47.3605829 ], + [ 7.7945333, 47.3604275 ], + [ 7.7941037, 47.3603563 ], + [ 7.793734, 47.3602945 ], + [ 7.7931047, 47.3600387 ], + [ 7.792643, 47.3600537 ], + [ 7.7920576, 47.3599287 ], + [ 7.7917662, 47.359891 ], + [ 7.7907339, 47.3596131 ], + [ 7.7899831, 47.3594596 ], + [ 7.7893118999999995, 47.3592701 ], + [ 7.7885862, 47.3590499 ], + [ 7.78796, 47.3588464 ], + [ 7.7872901, 47.3586403 ], + [ 7.7866024, 47.358385 ], + [ 7.7860342, 47.3582074 ], + [ 7.7853945, 47.3580076 ], + [ 7.7847693, 47.3578759 ], + [ 7.7840431, 47.3576947 ], + [ 7.7833868, 47.3575039 ], + [ 7.7827638, 47.3573013 ], + [ 7.7821257, 47.3579022 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns013", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Dürstelberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Dürstelberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Dürstelberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Dürstelberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.782033, 47.4595638 ], + [ 7.782625, 47.4598706 ], + [ 7.7827454, 47.4598902 ], + [ 7.7831401, 47.4599544 ], + [ 7.7835804, 47.4600294 ], + [ 7.7836844, 47.4601164 ], + [ 7.7836967999999995, 47.460228 ], + [ 7.7837615, 47.4602544 ], + [ 7.7839071, 47.4596761 ], + [ 7.7841097999999995, 47.4591762 ], + [ 7.7840599, 47.4591688 ], + [ 7.7836672, 47.4591114 ], + [ 7.7834874, 47.4590856 ], + [ 7.7835505, 47.4589662 ], + [ 7.7832734, 47.4588697 ], + [ 7.7831006, 47.4588095 ], + [ 7.7826538, 47.4588516 ], + [ 7.7823865, 47.4591711 ], + [ 7.782124, 47.4594644 ], + [ 7.782033, 47.4595638 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns184", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Mergelgrube \"Tal\"", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Mergelgrube \"Tal\"", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Mergelgrube \"Tal\"", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Mergelgrube \"Tal\"", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8359694, 47.4874024 ], + [ 7.8357997, 47.4870806 ], + [ 7.835725, 47.4865492 ], + [ 7.83572, 47.4865135 ], + [ 7.8356692, 47.4860671 ], + [ 7.8360779, 47.4858524 ], + [ 7.8362628999999995, 47.4857558 ], + [ 7.8364774, 47.4856999 ], + [ 7.8368636, 47.4857265 ], + [ 7.8371873, 47.4856927 ], + [ 7.837523, 47.4856719 ], + [ 7.8382433, 47.4856901 ], + [ 7.8382903, 47.4856702 ], + [ 7.838221, 47.4855898 ], + [ 7.8382166, 47.4855843 ], + [ 7.8382129, 47.4855786 ], + [ 7.83821, 47.4855727 ], + [ 7.8382078, 47.4855667 ], + [ 7.8382062999999995, 47.4855605 ], + [ 7.8382057, 47.4855543 ], + [ 7.8382059, 47.4855481 ], + [ 7.8382069, 47.4855419 ], + [ 7.8382086, 47.4855358 ], + [ 7.8382112, 47.4855298 ], + [ 7.8382144, 47.4855239 ], + [ 7.8382178, 47.4855179 ], + [ 7.8382204, 47.4855116 ], + [ 7.8382222, 47.4855052 ], + [ 7.8382231, 47.4854987 ], + [ 7.8382231, 47.4854922 ], + [ 7.8382222, 47.4854857 ], + [ 7.8382205, 47.4854793 ], + [ 7.8382171, 47.4854716 ], + [ 7.838213, 47.4854641 ], + [ 7.8382081, 47.4854568 ], + [ 7.8382024999999995, 47.4854498 ], + [ 7.8381962, 47.485443 ], + [ 7.8381892, 47.4854366 ], + [ 7.838181, 47.4854298 ], + [ 7.838172, 47.4854235 ], + [ 7.8381624, 47.4854177 ], + [ 7.8381521, 47.4854124 ], + [ 7.8381413, 47.4854076 ], + [ 7.83813, 47.4854034 ], + [ 7.8381183, 47.4853998 ], + [ 7.8381062, 47.4853967 ], + [ 7.8380937, 47.4853943 ], + [ 7.8380811, 47.4853926 ], + [ 7.8380683, 47.4853914 ], + [ 7.8379717, 47.4853857 ], + [ 7.8372713, 47.4850544 ], + [ 7.8368356, 47.4848484 ], + [ 7.8362144, 47.4845546 ], + [ 7.836163, 47.4846037 ], + [ 7.8359269, 47.4845091 ], + [ 7.8358232999999995, 47.484454 ], + [ 7.8352709, 47.4841601 ], + [ 7.8346887, 47.4837679 ], + [ 7.833869, 47.4834294 ], + [ 7.8338129, 47.4834062 ], + [ 7.8338514, 47.4833211 ], + [ 7.8345559, 47.4830751 ], + [ 7.8346116, 47.4830533 ], + [ 7.8345566, 47.4829996 ], + [ 7.8346252, 47.4829929 ], + [ 7.8348669, 47.4829693 ], + [ 7.836245, 47.482793 ], + [ 7.8362227, 47.4825572 ], + [ 7.8362768, 47.4825675 ], + [ 7.836335, 47.4825688 ], + [ 7.8364153, 47.4825302 ], + [ 7.8364184, 47.4825155 ], + [ 7.8364221, 47.482501 ], + [ 7.8364264, 47.4824865 ], + [ 7.8364314, 47.4824721 ], + [ 7.8364438, 47.4824388 ], + [ 7.836457, 47.4824057 ], + [ 7.8364709999999995, 47.4823727 ], + [ 7.8364857, 47.4823399 ], + [ 7.8365010999999996, 47.4823072 ], + [ 7.8365173, 47.4822747 ], + [ 7.8365341, 47.4822423 ], + [ 7.8365518, 47.4822102 ], + [ 7.8365701, 47.4821782 ], + [ 7.8365831, 47.4821566 ], + [ 7.8365968, 47.4821352 ], + [ 7.8366114, 47.482114 ], + [ 7.8366266, 47.482093 ], + [ 7.8366427, 47.4820724 ], + [ 7.8366594, 47.4820519 ], + [ 7.8366722, 47.4820361 ], + [ 7.8366842, 47.48202 ], + [ 7.8366955, 47.4820037 ], + [ 7.8367061, 47.4819871 ], + [ 7.8367158, 47.4819704 ], + [ 7.8367248, 47.4819534 ], + [ 7.836733, 47.4819362 ], + [ 7.8367404, 47.4819189 ], + [ 7.836747, 47.4819014 ], + [ 7.8358351, 47.4818274 ], + [ 7.834982, 47.4817581 ], + [ 7.8349379, 47.481738 ], + [ 7.8349421, 47.4817341 ], + [ 7.8349732, 47.4817039 ], + [ 7.8350037, 47.4816735 ], + [ 7.8350335, 47.4816427 ], + [ 7.8350626, 47.4816117 ], + [ 7.8350911, 47.4815803 ], + [ 7.8351, 47.481571 ], + [ 7.8351097, 47.481562 ], + [ 7.8351201, 47.4815534 ], + [ 7.8351311, 47.4815453 ], + [ 7.8351429, 47.4815375 ], + [ 7.8351552, 47.4815302 ], + [ 7.8351681, 47.4815234 ], + [ 7.8351816, 47.4815171 ], + [ 7.8353798, 47.4814298 ], + [ 7.8354009, 47.4814201 ], + [ 7.8354215, 47.4814099 ], + [ 7.8354415, 47.4813992 ], + [ 7.8354609, 47.4813881 ], + [ 7.8354798, 47.4813764 ], + [ 7.8354979, 47.4813643 ], + [ 7.8355155, 47.4813518 ], + [ 7.8355323, 47.4813389 ], + [ 7.8355485, 47.4813255 ], + [ 7.8355639, 47.4813118 ], + [ 7.8355786, 47.4812977 ], + [ 7.8355925, 47.4812832 ], + [ 7.8356056, 47.4812684 ], + [ 7.8356179, 47.4812533 ], + [ 7.8356295, 47.481237899999996 ], + [ 7.8356402, 47.4812222 ], + [ 7.83565, 47.4812063 ], + [ 7.835659, 47.4811901 ], + [ 7.835755, 47.4810075 ], + [ 7.8357634, 47.4809922 ], + [ 7.8357724, 47.4809771 ], + [ 7.8357821, 47.4809621 ], + [ 7.8357924, 47.4809473 ], + [ 7.8358033, 47.4809328 ], + [ 7.8358148, 47.4809184 ], + [ 7.8358204, 47.4809123 ], + [ 7.8358267999999995, 47.4809065 ], + [ 7.835834, 47.4809011 ], + [ 7.8358419, 47.4808962 ], + [ 7.8358503, 47.4808918 ], + [ 7.8358593, 47.4808879 ], + [ 7.8358688, 47.4808846 ], + [ 7.8358787, 47.4808818 ], + [ 7.8359138999999995, 47.4808615 ], + [ 7.8359381, 47.4808488 ], + [ 7.8359605, 47.4808346 ], + [ 7.8359808, 47.4808191 ], + [ 7.8359991, 47.4808024 ], + [ 7.836015, 47.4807847 ], + [ 7.8360284, 47.480766 ], + [ 7.8360392999999995, 47.4807466 ], + [ 7.8360476, 47.4807266 ], + [ 7.8360531, 47.4807062 ], + [ 7.8361353, 47.4805605 ], + [ 7.8361667, 47.480351 ], + [ 7.8361709, 47.4803208 ], + [ 7.8361743, 47.4802906 ], + [ 7.8361769, 47.4802604 ], + [ 7.8361788, 47.4802301 ], + [ 7.83618, 47.4801999 ], + [ 7.8361844, 47.4800272 ], + [ 7.8361853, 47.4800058 ], + [ 7.836187, 47.4799844 ], + [ 7.8361894, 47.4799631 ], + [ 7.8361925, 47.4799418 ], + [ 7.8361965, 47.4799206 ], + [ 7.8362011, 47.4798995 ], + [ 7.8362065, 47.4798784 ], + [ 7.8362126, 47.4798574 ], + [ 7.8362831, 47.4796306 ], + [ 7.8362862, 47.4796217 ], + [ 7.8362898, 47.479613 ], + [ 7.836294, 47.4796045 ], + [ 7.8362987, 47.479596 ], + [ 7.8363039, 47.4795877 ], + [ 7.8362972, 47.4795842 ], + [ 7.8363648, 47.4794825 ], + [ 7.8363927, 47.4794711 ], + [ 7.836422, 47.4794615 ], + [ 7.8364524, 47.4794537 ], + [ 7.836645, 47.4794255 ], + [ 7.8367152, 47.4794128 ], + [ 7.8367834, 47.479396 ], + [ 7.8368491, 47.4793751 ], + [ 7.8369085, 47.4793517 ], + [ 7.8369644, 47.4793245 ], + [ 7.8370161, 47.4792939 ], + [ 7.8370632, 47.47926 ], + [ 7.8372316, 47.4791303 ], + [ 7.837262, 47.4791028 ], + [ 7.837289, 47.4790737 ], + [ 7.8373125, 47.4790432 ], + [ 7.8373323, 47.4790116 ], + [ 7.8373482, 47.4789789 ], + [ 7.8373956, 47.4788759 ], + [ 7.8374028, 47.4788631 ], + [ 7.8374106, 47.4788505 ], + [ 7.8374192, 47.4788382 ], + [ 7.8374707, 47.4787666 ], + [ 7.8376116, 47.4786858 ], + [ 7.8376443, 47.4786692 ], + [ 7.8376745, 47.4786505 ], + [ 7.8377017, 47.4786299 ], + [ 7.8377844, 47.4785582 ], + [ 7.8377886, 47.4785519 ], + [ 7.837792, 47.4785454 ], + [ 7.8377945, 47.4785387 ], + [ 7.8378311, 47.4785064 ], + [ 7.8379066, 47.4784268 ], + [ 7.8379171, 47.4784221 ], + [ 7.8379269, 47.4784168 ], + [ 7.8379362, 47.478411 ], + [ 7.8381995, 47.478233 ], + [ 7.8382192, 47.4782193 ], + [ 7.8382383, 47.4782052 ], + [ 7.8382569, 47.4781908 ], + [ 7.8382749, 47.478176 ], + [ 7.8382922, 47.4781608 ], + [ 7.8383088999999995, 47.4781454 ], + [ 7.838325, 47.4781296 ], + [ 7.8383404, 47.4781136 ], + [ 7.8383551, 47.4780972 ], + [ 7.8383690999999995, 47.4780806 ], + [ 7.8385119, 47.4779062 ], + [ 7.8385285, 47.4778854 ], + [ 7.8385444, 47.4778644 ], + [ 7.8385598, 47.4778431 ], + [ 7.8385744, 47.4778217 ], + [ 7.8385885, 47.4778001 ], + [ 7.8386018, 47.4777783 ], + [ 7.8386145, 47.4777562 ], + [ 7.8387158, 47.4775754 ], + [ 7.8387261, 47.4775579 ], + [ 7.8387372, 47.4775406 ], + [ 7.8387492, 47.4775236 ], + [ 7.8387621, 47.4775069 ], + [ 7.8387757, 47.4774905 ], + [ 7.8387901, 47.4774743 ], + [ 7.8388053, 47.4774586 ], + [ 7.8388213, 47.4774431 ], + [ 7.838838, 47.4774281 ], + [ 7.8389288, 47.4773491 ], + [ 7.8389381, 47.4773406 ], + [ 7.8389468, 47.4773319 ], + [ 7.8389548, 47.4773229 ], + [ 7.8389622, 47.4773137 ], + [ 7.838969, 47.4773042 ], + [ 7.8389751, 47.4772945 ], + [ 7.8389806, 47.4772846 ], + [ 7.8389853, 47.4772746 ], + [ 7.8389894, 47.4772645 ], + [ 7.8389927, 47.4772543 ], + [ 7.8389953, 47.4772439 ], + [ 7.8389972, 47.4772335 ], + [ 7.8389983999999995, 47.4772231 ], + [ 7.8389989, 47.4772126 ], + [ 7.8389987, 47.4772022 ], + [ 7.8389977, 47.4771917 ], + [ 7.8389793999999995, 47.4770466 ], + [ 7.8389765, 47.4770202 ], + [ 7.8389745, 47.4769937 ], + [ 7.8389732, 47.4769671 ], + [ 7.8389727, 47.4769406 ], + [ 7.838973, 47.4769141 ], + [ 7.8389741, 47.4768875 ], + [ 7.838976, 47.476861 ], + [ 7.8389787, 47.4768346 ], + [ 7.8389822, 47.4768081 ], + [ 7.8389865, 47.4767818 ], + [ 7.8390085, 47.4766227 ], + [ 7.8386428, 47.4765884 ], + [ 7.8381386, 47.4765398 ], + [ 7.8373794, 47.4764671 ], + [ 7.83709, 47.4764471 ], + [ 7.8367879, 47.4764255 ], + [ 7.8364754, 47.4764016 ], + [ 7.8363700000000005, 47.4763959 ], + [ 7.8362454, 47.4763869 ], + [ 7.8361119, 47.4763861 ], + [ 7.8359891, 47.4763866 ], + [ 7.8357803, 47.4763885 ], + [ 7.8356399, 47.4763925 ], + [ 7.8355011999999995, 47.4763966 ], + [ 7.8353871, 47.4763934 ], + [ 7.8352731, 47.4763831 ], + [ 7.8351799, 47.4763704 ], + [ 7.8350974, 47.476354 ], + [ 7.8350077, 47.4763316 ], + [ 7.8349443999999995, 47.4763116 ], + [ 7.8348688, 47.4762977 ], + [ 7.8347967, 47.4762895 ], + [ 7.8347037, 47.4762958 ], + [ 7.8346371999999995, 47.4763067 ], + [ 7.834483, 47.4763477 ], + [ 7.8343516, 47.4763827 ], + [ 7.8342658, 47.4764044 ], + [ 7.8341764, 47.4764214 ], + [ 7.8340519, 47.4764302 ], + [ 7.8339168, 47.4764366 ], + [ 7.8337115, 47.4764348 ], + [ 7.8334095, 47.4764311 ], + [ 7.8333251, 47.4764186 ], + [ 7.8332132, 47.4764508 ], + [ 7.8331706, 47.4764218 ], + [ 7.8332461, 47.4763924 ], + [ 7.8331824, 47.4763606 ], + [ 7.8330873, 47.4762972 ], + [ 7.8330151, 47.4762251 ], + [ 7.8329546, 47.4761468 ], + [ 7.832895, 47.4760717 ], + [ 7.8328254, 47.4760012 ], + [ 7.8327469, 47.4759356 ], + [ 7.8326591, 47.4758753 ], + [ 7.8325627, 47.4758246 ], + [ 7.8325124, 47.4758048 ], + [ 7.8324314, 47.4758669 ], + [ 7.8323283, 47.4759362 ], + [ 7.8322689, 47.475963899999996 ], + [ 7.8320974, 47.476043 ], + [ 7.8319644, 47.4760767 ], + [ 7.8318241, 47.4761117 ], + [ 7.8316979, 47.4761169 ], + [ 7.8315646, 47.4761221 ], + [ 7.8313926, 47.4761334 ], + [ 7.83124, 47.4761458 ], + [ 7.8309926, 47.4761478 ], + [ 7.8308838, 47.4761482 ], + [ 7.8307626, 47.4761367 ], + [ 7.8306626, 47.4761334 ], + [ 7.8306081, 47.4761265 ], + [ 7.8304816, 47.4761091 ], + [ 7.8303868, 47.4760999 ], + [ 7.8301796, 47.4760827 ], + [ 7.8299705, 47.4760632 ], + [ 7.8296844, 47.4760475 ], + [ 7.8295102, 47.4760017 ], + [ 7.8294436, 47.4759972 ], + [ 7.8290817, 47.4759627 ], + [ 7.8288516999999995, 47.4759421 ], + [ 7.8288312, 47.4759419 ], + [ 7.8288428, 47.4758362 ], + [ 7.8288503, 47.4757362 ], + [ 7.8288575, 47.4755972 ], + [ 7.8288649, 47.4754999 ], + [ 7.8288684, 47.4754166 ], + [ 7.828876, 47.4753387 ], + [ 7.828892, 47.475272 ], + [ 7.8289121, 47.475233 ], + [ 7.8289283, 47.4751885 ], + [ 7.8289441, 47.4751301 ], + [ 7.8289683, 47.4750578 ], + [ 7.8289923, 47.474991 ], + [ 7.8289918, 47.4749188 ], + [ 7.8289992, 47.4748076 ], + [ 7.8290028, 47.4747325 ], + [ 7.8290023, 47.474663 ], + [ 7.8290017, 47.4745852 ], + [ 7.8290257, 47.4745073 ], + [ 7.8290662, 47.4744516 ], + [ 7.8291026, 47.4743793 ], + [ 7.8291268, 47.4743098 ], + [ 7.8291386, 47.4742569 ], + [ 7.8291423, 47.4742013 ], + [ 7.8291458, 47.4741207 ], + [ 7.8291329, 47.4740458 ], + [ 7.829112, 47.4739735 ], + [ 7.8290828999999995, 47.4739125 ], + [ 7.8290289, 47.4738238 ], + [ 7.8289545, 47.4737462 ], + [ 7.8288389, 47.4736299 ], + [ 7.8287275, 47.4735164 ], + [ 7.8286119, 47.4734028 ], + [ 7.828529, 47.4732809 ], + [ 7.828438, 47.4731616 ], + [ 7.8282342, 47.472895 ], + [ 7.8281395, 47.4728283 ], + [ 7.828049, 47.4727633 ], + [ 7.8279627, 47.4726983 ], + [ 7.8278798, 47.4726313 ], + [ 7.8277985999999995, 47.4725639 ], + [ 7.8277154, 47.4724986 ], + [ 7.8276281, 47.472434 ], + [ 7.8275427, 47.4723699 ], + [ 7.827452, 47.4723114 ], + [ 7.8273541, 47.4722591 ], + [ 7.8272429, 47.4722168 ], + [ 7.8271311, 47.4721697 ], + [ 7.8270646, 47.4721313 ], + [ 7.827019, 47.4720956 ], + [ 7.8269813, 47.4720344 ], + [ 7.8269689, 47.4718764 ], + [ 7.8266568, 47.4724209 ], + [ 7.8263663999999995, 47.4729378 ], + [ 7.8261676, 47.4732863 ], + [ 7.8259955, 47.4737183 ], + [ 7.8264584, 47.4742173 ], + [ 7.8267942, 47.474421 ], + [ 7.8272644, 47.4747306 ], + [ 7.8276405, 47.4750356 ], + [ 7.827895, 47.4755106 ], + [ 7.8279946, 47.4757203 ], + [ 7.8284148, 47.4762609 ], + [ 7.8287454, 47.476612 ], + [ 7.8290578, 47.4768999 ], + [ 7.8295132, 47.4771769 ], + [ 7.8299022, 47.477514 ], + [ 7.8301142, 47.4776583 ], + [ 7.8304718, 47.4776716 ], + [ 7.8311967, 47.4776984 ], + [ 7.8322678, 47.4777962 ], + [ 7.8331018, 47.4777978 ], + [ 7.8338411, 47.4780038 ], + [ 7.834623, 47.4782729 ], + [ 7.8343003, 47.479674 ], + [ 7.8335264, 47.4808385 ], + [ 7.8332372, 47.4813658 ], + [ 7.8329930999999995, 47.4817484 ], + [ 7.8325986, 47.4824596 ], + [ 7.8316907, 47.4822729 ], + [ 7.8308188, 47.4820957 ], + [ 7.8297728, 47.4819759 ], + [ 7.828752, 47.4819373 ], + [ 7.8279145, 47.4819042 ], + [ 7.8269738, 47.4818757 ], + [ 7.8261001, 47.4817435 ], + [ 7.8254062, 47.481638 ], + [ 7.8246417, 47.4815251 ], + [ 7.8238226, 47.4815847 ], + [ 7.8230217, 47.4816059 ], + [ 7.8219328, 47.4816614 ], + [ 7.8212847, 47.4818665 ], + [ 7.8212427, 47.4818798 ], + [ 7.8211354, 47.4819065 ], + [ 7.8209895, 47.4821571 ], + [ 7.8205524, 47.4821438 ], + [ 7.8204226, 47.4820838 ], + [ 7.8198334, 47.4822304 ], + [ 7.8196988, 47.4823028 ], + [ 7.8192494, 47.4823793 ], + [ 7.818572, 47.4825519 ], + [ 7.8176909, 47.4829787 ], + [ 7.8176143, 47.4831758 ], + [ 7.8176165, 47.4833888 ], + [ 7.8173834, 47.4835204 ], + [ 7.8171771, 47.4835632 ], + [ 7.8167786, 47.483542 ], + [ 7.8165651, 47.4835162 ], + [ 7.8164356999999995, 47.483578 ], + [ 7.8162247, 47.4835511 ], + [ 7.8161862, 47.4835748 ], + [ 7.8156321, 47.4836745 ], + [ 7.8152268, 47.483748 ], + [ 7.8148596, 47.4838139 ], + [ 7.8144371, 47.4841287 ], + [ 7.8141303, 47.4843133 ], + [ 7.8140426, 47.4843661 ], + [ 7.8140776, 47.4843865 ], + [ 7.8141885, 47.4844225 ], + [ 7.8144775, 47.4845834 ], + [ 7.8145416, 47.4846288 ], + [ 7.8146398999999995, 47.4846983 ], + [ 7.8146602, 47.484713 ], + [ 7.8146798, 47.4847282 ], + [ 7.8146987, 47.4847438 ], + [ 7.8147169, 47.4847598 ], + [ 7.8147344, 47.4847761 ], + [ 7.8147511, 47.4847928 ], + [ 7.8147671, 47.4848098 ], + [ 7.8147705, 47.4848136 ], + [ 7.8147812, 47.4848184 ], + [ 7.8147924, 47.4848225 ], + [ 7.814804, 47.4848259 ], + [ 7.814816, 47.4848287 ], + [ 7.8148283, 47.4848308 ], + [ 7.8148408, 47.4848322 ], + [ 7.8148534, 47.4848328 ], + [ 7.8148661, 47.4848328 ], + [ 7.8148788, 47.484832 ], + [ 7.8148912, 47.4848305 ], + [ 7.8149035, 47.4848283 ], + [ 7.8149155, 47.4848254 ], + [ 7.815, 47.4848002 ], + [ 7.8151307, 47.4847519 ], + [ 7.8153056, 47.4846972 ], + [ 7.8157247, 47.4845712 ], + [ 7.8158119, 47.4845478 ], + [ 7.8158996, 47.4845254 ], + [ 7.8159879, 47.4845038 ], + [ 7.816086, 47.4844865 ], + [ 7.8161857, 47.4844743 ], + [ 7.8162865, 47.4844673 ], + [ 7.8164442, 47.4844602 ], + [ 7.8166016, 47.4844505 ], + [ 7.8167586, 47.4844382 ], + [ 7.8168686, 47.4844245 ], + [ 7.8169763, 47.4844042 ], + [ 7.817081, 47.4843775 ], + [ 7.8171817, 47.4843446 ], + [ 7.817287, 47.4842994 ], + [ 7.8173885, 47.4842504 ], + [ 7.817486, 47.4841978 ], + [ 7.8175847, 47.4841435 ], + [ 7.8176806, 47.4840869 ], + [ 7.8177734999999995, 47.4840281 ], + [ 7.8178316, 47.4839892 ], + [ 7.8178868999999995, 47.4839485 ], + [ 7.8179393, 47.483906 ], + [ 7.8179878, 47.4838721 ], + [ 7.8180395, 47.4838405 ], + [ 7.8180941, 47.4838112 ], + [ 7.8181888, 47.4837614 ], + [ 7.8182769, 47.4837063 ], + [ 7.8183578, 47.4836463 ], + [ 7.8184383, 47.483562 ], + [ 7.8185142, 47.4834758 ], + [ 7.8185854, 47.4833877 ], + [ 7.8186166, 47.4833576 ], + [ 7.8186514, 47.4833294 ], + [ 7.8186897, 47.4833032 ], + [ 7.818731, 47.4832793 ], + [ 7.8187751, 47.4832578 ], + [ 7.8188217, 47.483239 ], + [ 7.8188705, 47.4832228 ], + [ 7.8189211, 47.4832095 ], + [ 7.8189732, 47.4831991 ], + [ 7.8190542, 47.4831838 ], + [ 7.8191368, 47.4831728 ], + [ 7.8192203, 47.4831662 ], + [ 7.8192996, 47.4831576 ], + [ 7.8193777, 47.4831451 ], + [ 7.8194543, 47.4831289 ], + [ 7.8195629, 47.4830938 ], + [ 7.8196697, 47.483056 ], + [ 7.8197744, 47.4830158 ], + [ 7.8198563, 47.4829876 ], + [ 7.8199418, 47.4829648 ], + [ 7.82003, 47.4829475 ], + [ 7.8201203, 47.4829359 ], + [ 7.8202118, 47.4829301 ], + [ 7.8204001, 47.4829165 ], + [ 7.8204528, 47.4829121 ], + [ 7.8205057, 47.4829108 ], + [ 7.8205587, 47.4829127 ], + [ 7.8206112, 47.4829178 ], + [ 7.8206628, 47.482926 ], + [ 7.8207132, 47.4829373 ], + [ 7.8207619, 47.4829515 ], + [ 7.8208086, 47.4829686 ], + [ 7.8208528, 47.482988399999996 ], + [ 7.8209835, 47.4830406 ], + [ 7.8211188, 47.4830871 ], + [ 7.8212582, 47.4831278 ], + [ 7.8212992, 47.4831417 ], + [ 7.8213417, 47.4831532 ], + [ 7.8213855, 47.4831623 ], + [ 7.8214303, 47.4831689 ], + [ 7.8214757, 47.483173 ], + [ 7.8215215, 47.4831745 ], + [ 7.8215673, 47.4831734 ], + [ 7.8216128, 47.4831697 ], + [ 7.8216577, 47.4831636 ], + [ 7.8217038, 47.4831544 ], + [ 7.8217489, 47.4831431 ], + [ 7.8217928, 47.4831297 ], + [ 7.8218253, 47.4831179 ], + [ 7.8218592000000005, 47.4831081 ], + [ 7.8218942, 47.4831002 ], + [ 7.8219301, 47.4830943 ], + [ 7.8219666, 47.4830906 ], + [ 7.8220034, 47.4830889 ], + [ 7.8220403, 47.4830894 ], + [ 7.822077, 47.483092 ], + [ 7.8221132, 47.4830967 ], + [ 7.8221488, 47.4831034 ], + [ 7.8221833, 47.4831122 ], + [ 7.8222167, 47.4831229 ], + [ 7.8222485, 47.4831355 ], + [ 7.8224191, 47.4831847 ], + [ 7.822448, 47.4831948 ], + [ 7.8224781, 47.4832031 ], + [ 7.8225090999999995, 47.4832096 ], + [ 7.8225408, 47.4832143 ], + [ 7.822573, 47.4832172 ], + [ 7.8226054, 47.4832183 ], + [ 7.8226379, 47.4832174 ], + [ 7.8226701, 47.4832147 ], + [ 7.8227019, 47.4832102 ], + [ 7.8227329, 47.4832038 ], + [ 7.8227630999999995, 47.4831956 ], + [ 7.8227922, 47.4831858 ], + [ 7.8228199, 47.4831743 ], + [ 7.8229495, 47.4831299 ], + [ 7.8230187, 47.4831114 ], + [ 7.8230858, 47.4830895 ], + [ 7.8231503, 47.4830644 ], + [ 7.8233013, 47.4830022 ], + [ 7.8233719, 47.4829777 ], + [ 7.8234452, 47.4829574 ], + [ 7.8235209, 47.4829414 ], + [ 7.8235982, 47.4829297 ], + [ 7.8236768, 47.4829225 ], + [ 7.8240300000000005, 47.4828819 ], + [ 7.8240719, 47.4828788 ], + [ 7.8241141, 47.4828782 ], + [ 7.8241562, 47.4828801 ], + [ 7.8241978, 47.4828845 ], + [ 7.8242388, 47.4828914 ], + [ 7.8242787, 47.4829007 ], + [ 7.8243172, 47.4829124 ], + [ 7.824354, 47.4829263 ], + [ 7.824389, 47.4829423 ], + [ 7.8244216, 47.4829604 ], + [ 7.8244519, 47.4829803 ], + [ 7.8244793999999995, 47.483002 ], + [ 7.8246345, 47.4831123 ], + [ 7.8247599, 47.4831969 ], + [ 7.8248164, 47.4832431 ], + [ 7.8249388, 47.4833268 ], + [ 7.8250524, 47.4834025 ], + [ 7.8251725, 47.4834681 ], + [ 7.8254193, 47.4835856 ], + [ 7.8254735, 47.483607 ], + [ 7.8255299, 47.4836255 ], + [ 7.8255883, 47.4836411 ], + [ 7.8256483, 47.4836536 ], + [ 7.8258928, 47.4837269 ], + [ 7.8259083, 47.4837341 ], + [ 7.8259246000000005, 47.4837405 ], + [ 7.8259417, 47.4837458 ], + [ 7.8259594, 47.4837501 ], + [ 7.8259776, 47.4837534 ], + [ 7.8260411, 47.483774 ], + [ 7.8261015, 47.4837985 ], + [ 7.8261583, 47.4838267 ], + [ 7.826211, 47.4838584 ], + [ 7.8262591, 47.4838932 ], + [ 7.8263022, 47.483931 ], + [ 7.8263399, 47.4839713 ], + [ 7.8263593, 47.4839912 ], + [ 7.8267134, 47.4843534 ], + [ 7.8267790999999995, 47.4844064 ], + [ 7.8268307, 47.4844477 ], + [ 7.8268527, 47.4844583 ], + [ 7.8268761, 47.4844675 ], + [ 7.8269005, 47.4844753 ], + [ 7.8269259, 47.4844817 ], + [ 7.826952, 47.4844864 ], + [ 7.8269786, 47.4844896 ], + [ 7.8270055, 47.4844911 ], + [ 7.8270325, 47.4844911 ], + [ 7.827093, 47.4844825 ], + [ 7.8271522000000004, 47.4844706 ], + [ 7.8272097, 47.4844553 ], + [ 7.8272651, 47.4844367 ], + [ 7.8272913, 47.4844325 ], + [ 7.827318, 47.4844298 ], + [ 7.8273449, 47.4844287 ], + [ 7.8273718, 47.4844292 ], + [ 7.8273986, 47.4844313 ], + [ 7.827425, 47.484435 ], + [ 7.8274508, 47.4844402 ], + [ 7.8274759, 47.4844469 ], + [ 7.8275, 47.484455 ], + [ 7.827523, 47.4844646 ], + [ 7.8275445999999995, 47.4844755 ], + [ 7.8275648, 47.4844876 ], + [ 7.8275833, 47.4845008 ], + [ 7.8276001, 47.4845151 ], + [ 7.8276224, 47.4845273 ], + [ 7.8276462, 47.484538 ], + [ 7.8276714, 47.4845472 ], + [ 7.8276978, 47.4845548 ], + [ 7.827725, 47.4845607 ], + [ 7.8277529, 47.4845649 ], + [ 7.8277813, 47.4845674 ], + [ 7.8278099, 47.4845681 ], + [ 7.827928, 47.4845761 ], + [ 7.8280443, 47.484592 ], + [ 7.8281579, 47.4846154 ], + [ 7.8285177, 47.4846856 ], + [ 7.8286226, 47.4847005 ], + [ 7.828729, 47.4847091 ], + [ 7.8288361, 47.4847113 ], + [ 7.8294391999999995, 47.4847071 ], + [ 7.8295853, 47.4846984 ], + [ 7.8297299, 47.4846817 ], + [ 7.829872, 47.484657 ], + [ 7.8314892, 47.4843334 ], + [ 7.8315632, 47.4843171 ], + [ 7.8316384, 47.4843034 ], + [ 7.8317145, 47.4842925 ], + [ 7.8318033, 47.4842768 ], + [ 7.8318365, 47.4842724 ], + [ 7.831869, 47.4842661 ], + [ 7.8319006, 47.484258 ], + [ 7.8319312, 47.4842482 ], + [ 7.8319485, 47.4842722 ], + [ 7.8321565, 47.4857167 ], + [ 7.8321662, 47.4857581 ], + [ 7.8320138, 47.4862226 ], + [ 7.8320175, 47.4863945 ], + [ 7.8319673, 47.4867262 ], + [ 7.8320311, 47.4868515 ], + [ 7.8322432, 47.4867132 ], + [ 7.8322512, 47.4867084 ], + [ 7.8322595, 47.4867039 ], + [ 7.8322682, 47.4866996 ], + [ 7.8322771, 47.4866957 ], + [ 7.8322864, 47.4866921 ], + [ 7.8323345, 47.4864959 ], + [ 7.8326936, 47.4862433 ], + [ 7.8328996, 47.485984 ], + [ 7.8330002, 47.4856868 ], + [ 7.8329927999999995, 47.4856467 ], + [ 7.8330152, 47.4856453 ], + [ 7.8330377, 47.4856444 ], + [ 7.8330601, 47.4856442 ], + [ 7.8330826, 47.4856446 ], + [ 7.8331051, 47.4856457 ], + [ 7.8331274, 47.4856473 ], + [ 7.8331497, 47.4856496 ], + [ 7.8331717, 47.4856525 ], + [ 7.8331935999999995, 47.4856561 ], + [ 7.8332153, 47.4856602 ], + [ 7.8332366, 47.485665 ], + [ 7.8332577, 47.4856703 ], + [ 7.8332784, 47.4856762 ], + [ 7.8332988, 47.4856827 ], + [ 7.8334752, 47.4857422 ], + [ 7.8337973, 47.4851991 ], + [ 7.8341752, 47.4851614 ], + [ 7.8343362, 47.4851444 ], + [ 7.8344366999999995, 47.4851592 ], + [ 7.8342547, 47.4853468 ], + [ 7.83424, 47.4854324 ], + [ 7.8342704, 47.4855094 ], + [ 7.83428, 47.4855844 ], + [ 7.834417, 47.4857966 ], + [ 7.8344566, 47.4858275 ], + [ 7.8342921, 47.4859235 ], + [ 7.8342801, 47.4859302 ], + [ 7.8342676, 47.4859365 ], + [ 7.8342545999999995, 47.4859422 ], + [ 7.8342411, 47.4859475 ], + [ 7.8342273, 47.4859523 ], + [ 7.834213, 47.4859566 ], + [ 7.8341985, 47.4859603 ], + [ 7.8341837, 47.4859635 ], + [ 7.8341686, 47.4859662 ], + [ 7.8344437, 47.4865301 ], + [ 7.8342326, 47.4869431 ], + [ 7.8343861, 47.4869834 ], + [ 7.8343978, 47.4869882 ], + [ 7.834409, 47.4869934 ], + [ 7.8344196, 47.4869992 ], + [ 7.8344296, 47.4870054 ], + [ 7.834439, 47.487012 ], + [ 7.8344477999999995, 47.4870191 ], + [ 7.8344558, 47.4870265 ], + [ 7.8344631, 47.4870343 ], + [ 7.8344697, 47.4870423 ], + [ 7.8344754, 47.4870507 ], + [ 7.8344803, 47.4870593 ], + [ 7.8344844, 47.4870681 ], + [ 7.8344875, 47.487077 ], + [ 7.8344899, 47.4870861 ], + [ 7.8344913, 47.4870953 ], + [ 7.8345386999999995, 47.4872958 ], + [ 7.8345407, 47.487302 ], + [ 7.8345436, 47.4873079 ], + [ 7.8345475, 47.4873137 ], + [ 7.8345521, 47.4873191 ], + [ 7.8345576, 47.4873242 ], + [ 7.8345639, 47.4873288 ], + [ 7.8345708, 47.487333 ], + [ 7.8345784, 47.4873366 ], + [ 7.8345864, 47.4873398 ], + [ 7.8345949, 47.4873423 ], + [ 7.8346038, 47.4873442 ], + [ 7.8346129, 47.4873455 ], + [ 7.8346221, 47.4873461 ], + [ 7.8346314, 47.4873461 ], + [ 7.8346406, 47.4873454 ], + [ 7.8346497, 47.4873441 ], + [ 7.8346585, 47.4873421 ], + [ 7.8346941999999995, 47.4873335 ], + [ 7.8347302, 47.4873254 ], + [ 7.8347663999999995, 47.4873179 ], + [ 7.8348029, 47.4873109 ], + [ 7.8348396000000005, 47.4873044 ], + [ 7.8348764, 47.4872984 ], + [ 7.8349135, 47.487293 ], + [ 7.8349507, 47.4872882 ], + [ 7.8349881, 47.4872839 ], + [ 7.8350256, 47.4872801 ], + [ 7.8350632000000004, 47.4872769 ], + [ 7.8350831, 47.4872757 ], + [ 7.8351030999999995, 47.4872752 ], + [ 7.8351232, 47.4872754 ], + [ 7.8351432, 47.4872762 ], + [ 7.8351631, 47.4872778 ], + [ 7.8351828, 47.48728 ], + [ 7.8352024, 47.4872828 ], + [ 7.8352217, 47.4872864 ], + [ 7.8352408, 47.4872906 ], + [ 7.8352595, 47.4872954 ], + [ 7.8352778, 47.4873009 ], + [ 7.8352957, 47.487307 ], + [ 7.8353131, 47.4873137 ], + [ 7.83533, 47.487321 ], + [ 7.8353463, 47.4873289 ], + [ 7.835362, 47.4873373 ], + [ 7.8353771, 47.4873462 ], + [ 7.8353915, 47.4873557 ], + [ 7.8354052, 47.4873656 ], + [ 7.8354181, 47.4873759 ], + [ 7.8354302, 47.4873867 ], + [ 7.8354396, 47.4873959 ], + [ 7.8354484, 47.4874054 ], + [ 7.8354567, 47.4874151 ], + [ 7.8354643, 47.487425 ], + [ 7.8354713, 47.4874352 ], + [ 7.8354777, 47.4874455 ], + [ 7.8354834, 47.487456 ], + [ 7.8354888, 47.4874666 ], + [ 7.835495, 47.4874769 ], + [ 7.8355021, 47.4874871 ], + [ 7.8355099, 47.4874969 ], + [ 7.8355186, 47.4875065 ], + [ 7.835528, 47.4875157 ], + [ 7.8355381, 47.4875245 ], + [ 7.8355489, 47.487533 ], + [ 7.8355603, 47.487541 ], + [ 7.8355724, 47.4875486 ], + [ 7.8355851, 47.4875558 ], + [ 7.8355984, 47.4875625 ], + [ 7.835617, 47.487571 ], + [ 7.835636, 47.4875791 ], + [ 7.8356554, 47.4875868 ], + [ 7.8356752, 47.487594 ], + [ 7.8356954, 47.4876007 ], + [ 7.8357159, 47.4876069 ], + [ 7.8357367, 47.4876127 ], + [ 7.8357578, 47.487618 ], + [ 7.8357791, 47.4876228 ], + [ 7.8359201, 47.4876677 ], + [ 7.8359694, 47.4874024 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns079", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Chienberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Chienberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Chienberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Chienberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5163028, 47.4410379 ], + [ 7.5163028, 47.4410117 ], + [ 7.5162779, 47.4406117 ], + [ 7.5160931, 47.4405313 ], + [ 7.5158816, 47.4403165 ], + [ 7.5157131, 47.4399816 ], + [ 7.5157152, 47.4399583 ], + [ 7.5158576, 47.4394994 ], + [ 7.5158631, 47.4393514 ], + [ 7.5159777, 47.4391956 ], + [ 7.5161612, 47.4391137 ], + [ 7.5161839, 47.4389463 ], + [ 7.5160331, 47.4388052 ], + [ 7.5162508, 47.4385598 ], + [ 7.5164688, 47.4385246 ], + [ 7.5170712, 47.4384035 ], + [ 7.5167724, 47.4381584 ], + [ 7.5166406, 47.4382675 ], + [ 7.5165315, 47.438217 ], + [ 7.5163879, 47.4381159 ], + [ 7.516405, 47.438073 ], + [ 7.5165942999999995, 47.4379911 ], + [ 7.5166917, 47.4379132 ], + [ 7.5167661, 47.4377652 ], + [ 7.5167876, 47.4377058 ], + [ 7.5168563, 47.4376357 ], + [ 7.5172232, 47.4373357 ], + [ 7.5177562, 47.436907 ], + [ 7.5180715, 47.4367199 ], + [ 7.5182207, 47.436677 ], + [ 7.5187483, 47.436481 ], + [ 7.5190882, 47.4363628 ], + [ 7.5197692, 47.436126 ], + [ 7.5203196, 47.4357869 ], + [ 7.5202618, 47.4355416 ], + [ 7.5201061, 47.4353726 ], + [ 7.5199847, 47.4354334 ], + [ 7.5199582, 47.4354477 ], + [ 7.5194393, 47.4353533 ], + [ 7.5185661, 47.4351758 ], + [ 7.5181222, 47.4350913 ], + [ 7.5176408, 47.4349729 ], + [ 7.5169531, 47.4348546 ], + [ 7.5165688, 47.434837 ], + [ 7.5165611, 47.4348453 ], + [ 7.5163, 47.4348455 ], + [ 7.5161392, 47.4347638 ], + [ 7.5160086, 47.4346753 ], + [ 7.5158077, 47.4346278 ], + [ 7.5156168, 47.4345666 ], + [ 7.5154159, 47.434559899999996 ], + [ 7.5153256, 47.4345531 ], + [ 7.5151246, 47.4344919 ], + [ 7.5149439000000005, 47.4344716 ], + [ 7.5147932, 47.4344513 ], + [ 7.5147028, 47.4344241 ], + [ 7.5146525, 47.434356 ], + [ 7.5143913, 47.4342948 ], + [ 7.5142104, 47.4342132 ], + [ 7.5141929, 47.4342154 ], + [ 7.5138346, 47.434191 ], + [ 7.513605, 47.4341639 ], + [ 7.5134153, 47.4341744 ], + [ 7.51381, 47.4355006 ], + [ 7.513842, 47.4355934 ], + [ 7.5138384, 47.435596 ], + [ 7.5138394, 47.4355995 ], + [ 7.5122945, 47.4367275 ], + [ 7.5121542, 47.4368368 ], + [ 7.5105495, 47.4380412 ], + [ 7.5094246, 47.4388551 ], + [ 7.5089243, 47.4392259 ], + [ 7.5082461, 47.4399265 ], + [ 7.5076297, 47.4405028 ], + [ 7.507091, 47.4410412 ], + [ 7.5061271, 47.4420174 ], + [ 7.5059654, 47.4428783 ], + [ 7.505869, 47.4434788 ], + [ 7.5057613, 47.4439384 ], + [ 7.5057036, 47.4442382 ], + [ 7.5055406, 47.4450664 ], + [ 7.5055454, 47.4450709 ], + [ 7.5065735, 47.4445019 ], + [ 7.5076912, 47.4438913 ], + [ 7.509449, 47.4431746 ], + [ 7.5112655, 47.4424559 ], + [ 7.5131016, 47.4417354 ], + [ 7.5162645, 47.4410312 ], + [ 7.5163028, 47.4410379 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr002", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Rittenberg", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Rittenberg", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Rittenberg", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Rittenberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.638677, 47.6950591 ], + [ 8.638668299999999, 47.694918 ], + [ 8.6386487, 47.6947774 ], + [ 8.6386182, 47.6946376 ], + [ 8.638577, 47.6944992 ], + [ 8.638525, 47.6943623 ], + [ 8.6384626, 47.6942275 ], + [ 8.6383897, 47.6940951 ], + [ 8.6383067, 47.6939655 ], + [ 8.638213799999999, 47.6938389 ], + [ 8.6381111, 47.6937158 ], + [ 8.6379991, 47.6935966 ], + [ 8.637878, 47.6934814 ], + [ 8.6377481, 47.6933707 ], + [ 8.6376098, 47.6932647 ], + [ 8.637463499999999, 47.6931637 ], + [ 8.6373096, 47.6930681 ], + [ 8.6371484, 47.692978 ], + [ 8.6369805, 47.6928937 ], + [ 8.6368063, 47.6928155 ], + [ 8.6366263, 47.6927436 ], + [ 8.6364409, 47.6926781 ], + [ 8.6362508, 47.6926192 ], + [ 8.6360563, 47.6925672 ], + [ 8.635858, 47.692522 ], + [ 8.6356566, 47.692484 ], + [ 8.6354524, 47.6924531 ], + [ 8.6352461, 47.6924295 ], + [ 8.6350383, 47.6924132 ], + [ 8.6348295, 47.6924043 ], + [ 8.6346203, 47.6924027 ], + [ 8.6344113, 47.6924086 ], + [ 8.634203, 47.6924218 ], + [ 8.6339961, 47.6924424 ], + [ 8.633791, 47.6924702 ], + [ 8.6335883, 47.6925053 ], + [ 8.6333886, 47.6925475 ], + [ 8.6331925, 47.6925967 ], + [ 8.6330005, 47.6926527 ], + [ 8.632813, 47.6927154 ], + [ 8.6326307, 47.6927847 ], + [ 8.632454, 47.6928603 ], + [ 8.6322835, 47.6929421 ], + [ 8.6321194, 47.6930298 ], + [ 8.631962399999999, 47.6931231 ], + [ 8.6318129, 47.6932219 ], + [ 8.6316712, 47.6933258 ], + [ 8.6315378, 47.6934346 ], + [ 8.6314129, 47.693548 ], + [ 8.6312971, 47.6936656 ], + [ 8.6311905, 47.6937871 ], + [ 8.6310935, 47.6939123 ], + [ 8.6310063, 47.6940407 ], + [ 8.6309292, 47.694172 ], + [ 8.6308623, 47.6943058 ], + [ 8.630806, 47.6944419 ], + [ 8.6307602, 47.6945797 ], + [ 8.6307252, 47.6947189 ], + [ 8.6307011, 47.6948593 ], + [ 8.6306878, 47.6950002 ], + [ 8.6306855, 47.6951415 ], + [ 8.6306942, 47.6952826 ], + [ 8.6307138, 47.6954232 ], + [ 8.6307442, 47.695563 ], + [ 8.6307855, 47.6957014 ], + [ 8.6308374, 47.6958383 ], + [ 8.6308999, 47.6959731 ], + [ 8.6309727, 47.6961055 ], + [ 8.6310557, 47.6962351 ], + [ 8.6311486, 47.6963617 ], + [ 8.6312513, 47.6964848 ], + [ 8.6313633, 47.6966041 ], + [ 8.6314844, 47.6967192 ], + [ 8.6316142, 47.69683 ], + [ 8.6317525, 47.696936 ], + [ 8.6318988, 47.6970369 ], + [ 8.6320528, 47.6971326 ], + [ 8.6322139, 47.6972227 ], + [ 8.6323818, 47.697307 ], + [ 8.632556, 47.6973852 ], + [ 8.6327361, 47.6974571 ], + [ 8.6329215, 47.6975226 ], + [ 8.6331117, 47.6975815 ], + [ 8.6333061, 47.6976336 ], + [ 8.6335044, 47.6976787 ], + [ 8.6337059, 47.6977167 ], + [ 8.6339101, 47.6977476 ], + [ 8.6341164, 47.6977712 ], + [ 8.6343242, 47.6977875 ], + [ 8.634533, 47.6977964 ], + [ 8.6347422, 47.697798 ], + [ 8.6349513, 47.6977921 ], + [ 8.6351596, 47.6977789 ], + [ 8.6353666, 47.6977583 ], + [ 8.6355717, 47.6977305 ], + [ 8.6357744, 47.6976954 ], + [ 8.635974, 47.6976532 ], + [ 8.6361702, 47.697604 ], + [ 8.6363622, 47.697548 ], + [ 8.6365497, 47.6974853 ], + [ 8.636732, 47.697416 ], + [ 8.6369087, 47.6973403 ], + [ 8.6370793, 47.6972586 ], + [ 8.6372433, 47.6971709 ], + [ 8.6374003, 47.6970775 ], + [ 8.6375499, 47.6969787 ], + [ 8.6376915, 47.6968748 ], + [ 8.637825, 47.696766 ], + [ 8.6379498, 47.6966526 ], + [ 8.6380657, 47.696535 ], + [ 8.6381722, 47.6964135 ], + [ 8.6382692, 47.6962883 ], + [ 8.6383564, 47.6961599 ], + [ 8.6384335, 47.6960286 ], + [ 8.6385003, 47.6958948 ], + [ 8.6385567, 47.6957587 ], + [ 8.6386024, 47.6956209 ], + [ 8.6386374, 47.6954816 ], + [ 8.6386615, 47.6953413 ], + [ 8.6386747, 47.6952004 ], + [ 8.638677, 47.6950591 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SHA0001", + "country" : "CHE", + "name" : [ + { + "text" : "Kantonales Gefängnis Schaffhausen", + "lang" : "de-CH" + }, + { + "text" : "Kantonales Gefängnis Schaffhausen", + "lang" : "fr-CH" + }, + { + "text" : "Kantonales Gefängnis Schaffhausen", + "lang" : "it-CH" + }, + { + "text" : "Kantonales Gefängnis Schaffhausen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kantonales Gefängnis Schaffhausen", + "lang" : "de-CH" + }, + { + "text" : "Kantonales Gefängnis Schaffhausen", + "lang" : "fr-CH" + }, + { + "text" : "Kantonales Gefängnis Schaffhausen", + "lang" : "it-CH" + }, + { + "text" : "Kantonales Gefängnis Schaffhausen", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Leitung", + "lang" : "de-CH" + }, + { + "text" : "Leitung", + "lang" : "fr-CH" + }, + { + "text" : "Leitung", + "lang" : "it-CH" + }, + { + "text" : "Leitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Lorenz Ammann", + "lang" : "de-CH" + }, + { + "text" : "Lorenz Ammann", + "lang" : "fr-CH" + }, + { + "text" : "Lorenz Ammann", + "lang" : "it-CH" + }, + { + "text" : "Lorenz Ammann", + "lang" : "en-GB" + } + ], + "siteURL" : "https://sh.ch/CMS/Webseite/Kanton-Schaffhausen/Beh-rde/Verwaltung/Volkswirtschaftsdepartement/Gef-ngnisverwaltung-3876-DE.html", + "email" : "lorenz.ammann@sh.ch", + "phone" : "0041526328050", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.1823809, 47.3799622 ], + [ 8.1823735, 47.379821 ], + [ 8.1823552, 47.3796803 ], + [ 8.1823261, 47.3795404 ], + [ 8.1822862, 47.3794017 ], + [ 8.1822358, 47.3792647 ], + [ 8.1821748, 47.3791296 ], + [ 8.1821035, 47.3789969 ], + [ 8.1820221, 47.3788669 ], + [ 8.1819308, 47.37874 ], + [ 8.1818299, 47.3786165 ], + [ 8.1817195, 47.3784968 ], + [ 8.1816001, 47.3783811 ], + [ 8.1814719, 47.3782698 ], + [ 8.1813354, 47.3781633 ], + [ 8.1811908, 47.3780618 ], + [ 8.1810386, 47.3779655 ], + [ 8.1808792, 47.3778748 ], + [ 8.180713, 47.3777898 ], + [ 8.1805405, 47.3777109 ], + [ 8.1803621, 47.3776383 ], + [ 8.1801785, 47.377572 ], + [ 8.1799899, 47.3775124 ], + [ 8.179797, 47.3774596 ], + [ 8.1796003, 47.3774137 ], + [ 8.1794004, 47.3773749 ], + [ 8.1791977, 47.3773432 ], + [ 8.1789929, 47.377318700000004 ], + [ 8.1787864, 47.3773016 ], + [ 8.178579, 47.3772919 ], + [ 8.178371, 47.3772895 ], + [ 8.1781632, 47.3772945 ], + [ 8.177956, 47.377307 ], + [ 8.1777501, 47.3773267 ], + [ 8.177546, 47.3773538 ], + [ 8.1773442, 47.377388 ], + [ 8.1771454, 47.3774294 ], + [ 8.17695, 47.3774778 ], + [ 8.1767586, 47.3775331 ], + [ 8.1765718, 47.3775951 ], + [ 8.1763899, 47.3776637 ], + [ 8.1762136, 47.3777386 ], + [ 8.1760434, 47.3778198 ], + [ 8.1758796, 47.3779068 ], + [ 8.1757227, 47.3779996 ], + [ 8.1755732, 47.3780977 ], + [ 8.1754314, 47.3782011 ], + [ 8.1752979, 47.3783094 ], + [ 8.1751728, 47.3784223 ], + [ 8.1750566, 47.3785394 ], + [ 8.1749496, 47.3786606 ], + [ 8.1748521, 47.3787854 ], + [ 8.1747643, 47.3789134 ], + [ 8.1746866, 47.3790444 ], + [ 8.174619, 47.379178 ], + [ 8.1745618, 47.3793139 ], + [ 8.1745151, 47.3794515 ], + [ 8.1744791, 47.3795907 ], + [ 8.1744539, 47.3797309 ], + [ 8.1744396, 47.3798718 ], + [ 8.1744361, 47.3800131 ], + [ 8.1744435, 47.3801542 ], + [ 8.1744617, 47.3802949 ], + [ 8.1744908, 47.3804348 ], + [ 8.1745306, 47.3805735 ], + [ 8.1745811, 47.3807105 ], + [ 8.174642, 47.3808456 ], + [ 8.1747133, 47.3809783 ], + [ 8.1747947, 47.3811083 ], + [ 8.174886, 47.3812352 ], + [ 8.1749869, 47.3813587 ], + [ 8.1750972, 47.3814785 ], + [ 8.1752167, 47.3815942 ], + [ 8.1753448, 47.3817054 ], + [ 8.1754814, 47.381812 ], + [ 8.1756259, 47.3819135 ], + [ 8.1757782, 47.3820098 ], + [ 8.1759376, 47.3821005 ], + [ 8.1761038, 47.3821855 ], + [ 8.1762763, 47.3822644 ], + [ 8.1764546, 47.3823371 ], + [ 8.1766383, 47.3824033 ], + [ 8.1768269, 47.3824629 ], + [ 8.1770198, 47.3825157 ], + [ 8.1772165, 47.3825616 ], + [ 8.1774165, 47.3826005 ], + [ 8.1776192, 47.3826322 ], + [ 8.177824, 47.3826566 ], + [ 8.1780305, 47.3826737 ], + [ 8.178238, 47.3826835 ], + [ 8.1784459, 47.3826858 ], + [ 8.1786538, 47.3826808 ], + [ 8.178861, 47.3826684 ], + [ 8.1790669, 47.3826486 ], + [ 8.1792711, 47.3826216 ], + [ 8.1794729, 47.3825873 ], + [ 8.1796717, 47.3825459 ], + [ 8.1798671, 47.3824975 ], + [ 8.1800585, 47.3824422 ], + [ 8.1802454, 47.3823802 ], + [ 8.1804272, 47.3823116 ], + [ 8.1806035, 47.3822367 ], + [ 8.1807738, 47.3821556 ], + [ 8.1809376, 47.3820685 ], + [ 8.1810945, 47.3819757 ], + [ 8.181244, 47.3818775 ], + [ 8.1813857, 47.3817741 ], + [ 8.1815193, 47.3816659 ], + [ 8.1816443, 47.381553 ], + [ 8.1817605, 47.3814358 ], + [ 8.1818675, 47.3813147 ], + [ 8.181965, 47.3811899 ], + [ 8.1820528, 47.3810618 ], + [ 8.1821305, 47.3809308 ], + [ 8.1821981, 47.3807972 ], + [ 8.1822553, 47.3806614 ], + [ 8.1823019, 47.3805237 ], + [ 8.1823379, 47.3803845 ], + [ 8.1823631, 47.3802443 ], + [ 8.1823774, 47.3801034 ], + [ 8.1823809, 47.3799622 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSA0001", + "country" : "CHE", + "name" : [ + { + "text" : "Justizvollzugsanstalt Lenzburg Strafanstalt", + "lang" : "de-CH" + }, + { + "text" : "Justizvollzugsanstalt Lenzburg Strafanstalt", + "lang" : "fr-CH" + }, + { + "text" : "Justizvollzugsanstalt Lenzburg Strafanstalt", + "lang" : "it-CH" + }, + { + "text" : "Justizvollzugsanstalt Lenzburg Strafanstalt", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Justizvollzugsanstalt Lenzburg", + "lang" : "de-CH" + }, + { + "text" : "Justizvollzugsanstalt Lenzburg", + "lang" : "fr-CH" + }, + { + "text" : "Justizvollzugsanstalt Lenzburg", + "lang" : "it-CH" + }, + { + "text" : "Justizvollzugsanstalt Lenzburg", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Direktion", + "lang" : "de-CH" + }, + { + "text" : "Direktion", + "lang" : "fr-CH" + }, + { + "text" : "Direktion", + "lang" : "it-CH" + }, + { + "text" : "Direktion", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ag.ch/de/verwaltung/dvi/strafverfolgung-strafvollzug/strafvollzug/justizvollzugsanstalt-lenzburg", + "email" : "direktion.jva@ag.ch", + "phone" : "0041628887766", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5041334, 47.4454205 ], + [ 7.5040933, 47.4454075 ], + [ 7.5040556, 47.4453948 ], + [ 7.5040182, 47.4453817 ], + [ 7.5039811, 47.4453684 ], + [ 7.5039441, 47.4453546 ], + [ 7.5039076, 47.4453405 ], + [ 7.5038713, 47.4453261 ], + [ 7.5035658, 47.4451997 ], + [ 7.5033104, 47.4450813 ], + [ 7.5032904, 47.4450667 ], + [ 7.5032709, 47.4450519 ], + [ 7.5032519, 47.4450366 ], + [ 7.5032336, 47.4450211 ], + [ 7.5032157, 47.4450052 ], + [ 7.5031984, 47.4449891 ], + [ 7.5031818, 47.4449728 ], + [ 7.5031657, 47.4449561 ], + [ 7.5031503, 47.4449392 ], + [ 7.5031355, 47.444922 ], + [ 7.5031210999999995, 47.4449044 ], + [ 7.5031075, 47.4448866 ], + [ 7.5030944, 47.4448686 ], + [ 7.5030821, 47.4448503 ], + [ 7.5030705, 47.4448318 ], + [ 7.5030595, 47.4448132 ], + [ 7.5030491, 47.4447944 ], + [ 7.5030396, 47.4447754 ], + [ 7.5029377, 47.4445681 ], + [ 7.5029232, 47.4445436 ], + [ 7.5029082, 47.4445193 ], + [ 7.5028925, 47.4444951 ], + [ 7.5028766000000005, 47.4444711 ], + [ 7.50286, 47.4444471 ], + [ 7.502843, 47.4444235 ], + [ 7.5028229, 47.4443966 ], + [ 7.5028023, 47.4443699 ], + [ 7.5027809, 47.4443435 ], + [ 7.502759, 47.4443174 ], + [ 7.5027366, 47.4442914 ], + [ 7.5027135, 47.4442657 ], + [ 7.5024068, 47.4439296 ], + [ 7.5023831, 47.4438982 ], + [ 7.50236, 47.4438663 ], + [ 7.5023377, 47.4438343 ], + [ 7.5023163, 47.4438021 ], + [ 7.5022957, 47.4437695 ], + [ 7.5022759, 47.4437367 ], + [ 7.502257, 47.4437037 ], + [ 7.5022388, 47.4436705 ], + [ 7.5022228, 47.4436391 ], + [ 7.5022072, 47.4436076 ], + [ 7.5021926, 47.4435758 ], + [ 7.5021786, 47.443544 ], + [ 7.5021655, 47.4435121 ], + [ 7.5021531, 47.4434799 ], + [ 7.5020549, 47.4432038 ], + [ 7.5020188, 47.4431026 ], + [ 7.5020088000000005, 47.4430785 ], + [ 7.5019984, 47.4430549 ], + [ 7.5019875, 47.4430312 ], + [ 7.5019761, 47.4430075 ], + [ 7.5019053, 47.4428717 ], + [ 7.5018852, 47.4428394 ], + [ 7.5018642, 47.4428073 ], + [ 7.5018426, 47.4427754 ], + [ 7.5018199, 47.4427438 ], + [ 7.5017952999999995, 47.4427111 ], + [ 7.5017698, 47.4426787 ], + [ 7.5017434, 47.4426466 ], + [ 7.5017162, 47.4426149 ], + [ 7.5014198, 47.4422956 ], + [ 7.5012189, 47.4420165 ], + [ 7.5012086, 47.4420028 ], + [ 7.5011991, 47.441989 ], + [ 7.5011902, 47.4419749 ], + [ 7.501182, 47.4419607 ], + [ 7.5011744, 47.4419462 ], + [ 7.5011676, 47.4419315 ], + [ 7.5011615, 47.4419168 ], + [ 7.5011562, 47.441902 ], + [ 7.5011514, 47.4418859 ], + [ 7.5011472999999995, 47.4418699 ], + [ 7.5011441, 47.4418538 ], + [ 7.5011418, 47.4418377 ], + [ 7.5011402, 47.4418214 ], + [ 7.5011395, 47.4418051 ], + [ 7.5011396999999995, 47.4417888 ], + [ 7.5011408, 47.4417725 ], + [ 7.5011522, 47.441662 ], + [ 7.5011543, 47.4416434 ], + [ 7.501157, 47.4416248 ], + [ 7.5011607, 47.4416062 ], + [ 7.5011652, 47.4415878 ], + [ 7.5011705, 47.4415694 ], + [ 7.5011766, 47.4415512 ], + [ 7.5011835, 47.4415331 ], + [ 7.501191, 47.4415151 ], + [ 7.5011995, 47.4414973 ], + [ 7.5012087, 47.4414797 ], + [ 7.5012188, 47.4414623 ], + [ 7.5012295, 47.441445 ], + [ 7.501241, 47.441428 ], + [ 7.5012533, 47.4414112 ], + [ 7.5012663, 47.4413948 ], + [ 7.50128, 47.4413785 ], + [ 7.5017375, 47.4408601 ], + [ 7.5021176, 47.44043 ], + [ 7.5021365, 47.4404093 ], + [ 7.5021563, 47.4403889 ], + [ 7.5021768, 47.4403688 ], + [ 7.5021979, 47.4403492 ], + [ 7.50222, 47.4403298 ], + [ 7.5022427, 47.4403109 ], + [ 7.5022638, 47.4402943 ], + [ 7.5022854, 47.440278 ], + [ 7.5023077, 47.4402622 ], + [ 7.5023303, 47.4402464 ], + [ 7.5023536, 47.4402312 ], + [ 7.5023773, 47.4402163 ], + [ 7.5023882, 47.4401893 ], + [ 7.502389, 47.4401829 ], + [ 7.5023907, 47.4401766 ], + [ 7.5023933, 47.4401704 ], + [ 7.5023968, 47.4401644 ], + [ 7.5024013, 47.4401588 ], + [ 7.5024064, 47.4401535 ], + [ 7.5024124, 47.4401485 ], + [ 7.502419, 47.440144 ], + [ 7.5024264, 47.44014 ], + [ 7.5024342, 47.4401364 ], + [ 7.5024421, 47.4401336 ], + [ 7.5024503, 47.4401313 ], + [ 7.5024589, 47.4401295 ], + [ 7.5024676, 47.4401282 ], + [ 7.5024764, 47.4401276 ], + [ 7.5024854, 47.4401276 ], + [ 7.5024942, 47.440128 ], + [ 7.502503, 47.4401291 ], + [ 7.5025115, 47.4401307 ], + [ 7.5025199, 47.4401329 ], + [ 7.5025278, 47.4401357 ], + [ 7.5025354, 47.4401388 ], + [ 7.5026392, 47.4401152 ], + [ 7.5026606000000005, 47.4401098 ], + [ 7.5026824, 47.4401047 ], + [ 7.5027042, 47.4401001 ], + [ 7.5027264, 47.440096 ], + [ 7.5027486, 47.4400922 ], + [ 7.502771, 47.4400889 ], + [ 7.5027936, 47.4400859 ], + [ 7.5028162, 47.4400833 ], + [ 7.5030868, 47.4400655 ], + [ 7.5034279, 47.4400376 ], + [ 7.5037598, 47.4399893 ], + [ 7.5041662, 47.4399396 ], + [ 7.504574, 47.4399068 ], + [ 7.5049787, 47.4398461 ], + [ 7.5052769, 47.4398038 ], + [ 7.5053128000000005, 47.439792 ], + [ 7.5053483, 47.4397795 ], + [ 7.5053833, 47.4397666 ], + [ 7.5054179, 47.439753 ], + [ 7.505452, 47.4397389 ], + [ 7.5054855, 47.4397242 ], + [ 7.5055186, 47.4397091 ], + [ 7.5055511, 47.4396934 ], + [ 7.505583, 47.4396771 ], + [ 7.5056145, 47.4396605 ], + [ 7.5056454, 47.4396432 ], + [ 7.5056757, 47.4396254 ], + [ 7.5057055, 47.4396071 ], + [ 7.5057347, 47.4395884 ], + [ 7.505763, 47.4395691 ], + [ 7.5057907, 47.4395495 ], + [ 7.5058092, 47.4395331 ], + [ 7.5058273, 47.4395165 ], + [ 7.5058446, 47.4394995 ], + [ 7.5058613, 47.4394822 ], + [ 7.5058773, 47.4394646 ], + [ 7.5058928, 47.4394469 ], + [ 7.5059077, 47.4394288 ], + [ 7.5059218, 47.4394105 ], + [ 7.5059349, 47.4393924 ], + [ 7.5059474999999996, 47.4393741 ], + [ 7.5059591999999995, 47.4393556 ], + [ 7.5059705, 47.4393368 ], + [ 7.5059811, 47.439318 ], + [ 7.5059908, 47.4392989 ], + [ 7.5060001, 47.4392796 ], + [ 7.5060084, 47.4392603 ], + [ 7.506093, 47.4390753 ], + [ 7.5061973, 47.4388974 ], + [ 7.5063362, 47.4387007 ], + [ 7.506503, 47.4384894 ], + [ 7.5066305, 47.4383855 ], + [ 7.5066507, 47.4383745 ], + [ 7.5066714999999995, 47.438364 ], + [ 7.5066927, 47.4383542 ], + [ 7.5067144, 47.4383448 ], + [ 7.5067356, 47.4383344 ], + [ 7.5069197, 47.4382799 ], + [ 7.5086455, 47.4377842 ], + [ 7.5092912, 47.4365432 ], + [ 7.5091533, 47.4351473 ], + [ 7.5091489, 47.4345794 ], + [ 7.5091504, 47.4345557 ], + [ 7.5091528, 47.434532 ], + [ 7.5091561, 47.4345083 ], + [ 7.5091604, 47.4344847 ], + [ 7.5091656, 47.4344612 ], + [ 7.5091717, 47.4344378 ], + [ 7.5091786, 47.4344145 ], + [ 7.5091866, 47.4343914 ], + [ 7.5091954, 47.4343683 ], + [ 7.5092051, 47.4343455 ], + [ 7.5092359, 47.4342409 ], + [ 7.5093094, 47.4340225 ], + [ 7.509366, 47.4338429 ], + [ 7.5093673, 47.433823 ], + [ 7.5093695, 47.4338032 ], + [ 7.5093726, 47.4337834 ], + [ 7.5093767, 47.4337637 ], + [ 7.5093817, 47.4337442 ], + [ 7.5093876, 47.4337247 ], + [ 7.5093944, 47.4337053 ], + [ 7.509402, 47.4336862 ], + [ 7.5094106, 47.4336672 ], + [ 7.5094201, 47.4336484 ], + [ 7.5094304, 47.4336298 ], + [ 7.5094435, 47.4336104 ], + [ 7.5094557, 47.4335907 ], + [ 7.509467, 47.4335708 ], + [ 7.5094775, 47.4335507 ], + [ 7.5094871, 47.4335304 ], + [ 7.5094958, 47.4335099 ], + [ 7.5095036, 47.4334892 ], + [ 7.5095106, 47.4334684 ], + [ 7.5095165, 47.4334475 ], + [ 7.5095216, 47.4334264 ], + [ 7.5095258000000005, 47.4334053 ], + [ 7.509529, 47.433384 ], + [ 7.5095313, 47.4333628 ], + [ 7.5095271, 47.4333337 ], + [ 7.5095220000000005, 47.4333047 ], + [ 7.509516, 47.4332758 ], + [ 7.5095091, 47.433247 ], + [ 7.5095012, 47.4332183 ], + [ 7.5094925, 47.4331897 ], + [ 7.5094828, 47.4331612 ], + [ 7.5094722, 47.4331329 ], + [ 7.5094607, 47.4331048 ], + [ 7.5094483, 47.4330768 ], + [ 7.5094431, 47.4330636 ], + [ 7.5094387000000005, 47.4330503 ], + [ 7.5094351, 47.4330369 ], + [ 7.5094324, 47.4330233 ], + [ 7.5094306, 47.4330097 ], + [ 7.5094297, 47.4329961 ], + [ 7.5094296, 47.4329825 ], + [ 7.5094304, 47.4329688 ], + [ 7.5094385, 47.4329384 ], + [ 7.5094474, 47.4329081 ], + [ 7.5094571, 47.4328779 ], + [ 7.5094674999999995, 47.4328478 ], + [ 7.5094787, 47.4328178 ], + [ 7.5094906, 47.432788 ], + [ 7.5095033, 47.4327583 ], + [ 7.5095168, 47.4327288 ], + [ 7.5095338, 47.4326997 ], + [ 7.5095827, 47.432652 ], + [ 7.5096434, 47.4326022 ], + [ 7.5096653, 47.4325831 ], + [ 7.509688, 47.4325645 ], + [ 7.5097113, 47.4325463 ], + [ 7.5097354, 47.4325285 ], + [ 7.5097602, 47.4325112 ], + [ 7.5097856, 47.4324943 ], + [ 7.5098117, 47.4324779 ], + [ 7.5098384, 47.432462 ], + [ 7.5098658, 47.4324466 ], + [ 7.5098938, 47.4324317 ], + [ 7.5099222999999995, 47.4324173 ], + [ 7.50993, 47.4324127 ], + [ 7.5099371, 47.4324077 ], + [ 7.5099437, 47.4324024 ], + [ 7.510307, 47.4324837 ], + [ 7.5103166, 47.4324893 ], + [ 7.5103269, 47.4324944 ], + [ 7.5103376, 47.432499 ], + [ 7.5103489, 47.432503 ], + [ 7.5103605, 47.4325065 ], + [ 7.5103725, 47.4325093 ], + [ 7.5103847, 47.4325116 ], + [ 7.5103972, 47.4325132 ], + [ 7.5104617000000005, 47.4325223 ], + [ 7.5104861, 47.4325311 ], + [ 7.51051, 47.4325404 ], + [ 7.5105334, 47.4325504 ], + [ 7.5105562, 47.4325608 ], + [ 7.5105786, 47.4325718 ], + [ 7.5106003, 47.4325834 ], + [ 7.5106215, 47.4325954 ], + [ 7.510642, 47.4326079 ], + [ 7.5106619, 47.4326209 ], + [ 7.5106811, 47.4326343 ], + [ 7.5106996, 47.4326482 ], + [ 7.5107174, 47.4326625 ], + [ 7.5107344, 47.4326773 ], + [ 7.5107507, 47.4326924 ], + [ 7.5107662, 47.4327079 ], + [ 7.5107808, 47.4327238 ], + [ 7.5109045, 47.4328464 ], + [ 7.5109998000000004, 47.4329307 ], + [ 7.5110423, 47.4329699 ], + [ 7.5111639, 47.4330831 ], + [ 7.5111855, 47.4331046 ], + [ 7.5112077, 47.4331259 ], + [ 7.5112304, 47.4331469 ], + [ 7.5112538, 47.4331675 ], + [ 7.5112777, 47.4331879 ], + [ 7.511329, 47.4332342 ], + [ 7.5113503999999995, 47.4332541 ], + [ 7.5113725, 47.4332735 ], + [ 7.5113954, 47.4332927 ], + [ 7.5114189, 47.4333114 ], + [ 7.5114431, 47.4333297 ], + [ 7.511468, 47.4333476 ], + [ 7.5114935, 47.4333651 ], + [ 7.5115196, 47.4333821 ], + [ 7.5115464, 47.4333987 ], + [ 7.5115738, 47.4334148 ], + [ 7.5116017, 47.4334305 ], + [ 7.5116302, 47.4334457 ], + [ 7.5116593, 47.4334604 ], + [ 7.5116889, 47.4334746 ], + [ 7.511719, 47.4334883 ], + [ 7.5117496, 47.4335015 ], + [ 7.5117807, 47.4335142 ], + [ 7.5118122, 47.4335264 ], + [ 7.5118442, 47.433538 ], + [ 7.5125526, 47.4338099 ], + [ 7.5134191999999995, 47.4325543 ], + [ 7.5132784, 47.4325019 ], + [ 7.5129929, 47.4323765 ], + [ 7.5126377, 47.4321894 ], + [ 7.5125886, 47.4321643 ], + [ 7.5117484, 47.4317136 ], + [ 7.5117167, 47.4317412 ], + [ 7.5116546, 47.4317076 ], + [ 7.5116884, 47.4316812 ], + [ 7.5114365, 47.4315467 ], + [ 7.5114197, 47.4315617 ], + [ 7.511394, 47.4315493 ], + [ 7.5114115, 47.4315334 ], + [ 7.5110569, 47.4313445 ], + [ 7.5109376, 47.4313811 ], + [ 7.5096793, 47.4310395 ], + [ 7.5099492, 47.4312452 ], + [ 7.5094736, 47.4314001 ], + [ 7.509067, 47.4313517 ], + [ 7.508973, 47.4313761 ], + [ 7.5088837, 47.4313903 ], + [ 7.5086708, 47.4315837 ], + [ 7.5083103, 47.4320224 ], + [ 7.5080488, 47.4325047 ], + [ 7.5079441, 47.4329244 ], + [ 7.5078312, 47.4332674 ], + [ 7.5077311, 47.4334767 ], + [ 7.5074954, 47.4338392 ], + [ 7.5072332, 47.4342184 ], + [ 7.5068283000000005, 47.4347952 ], + [ 7.5070689, 47.4348519 ], + [ 7.506851, 47.4351724 ], + [ 7.5066985, 47.4353978 ], + [ 7.5065764, 47.4355785 ], + [ 7.5067626, 47.4358629 ], + [ 7.5068232, 47.4358854 ], + [ 7.5068806, 47.4359061 ], + [ 7.5070656, 47.4359223 ], + [ 7.5070629, 47.4361038 ], + [ 7.5069958, 47.4362043 ], + [ 7.5068056, 47.4362976 ], + [ 7.5063718999999995, 47.4365095 ], + [ 7.5058048, 47.4363575 ], + [ 7.5057808999999995, 47.4363511 ], + [ 7.5056127, 47.4362087 ], + [ 7.5052327, 47.4363225 ], + [ 7.5048477, 47.4364377 ], + [ 7.5044599, 47.4365534 ], + [ 7.5040715, 47.4366691 ], + [ 7.5039235, 47.4367129 ], + [ 7.5035399, 47.4367635 ], + [ 7.503486, 47.4367728 ], + [ 7.5035164, 47.4368228 ], + [ 7.5029639, 47.4369411 ], + [ 7.5029389, 47.4369752 ], + [ 7.5030824, 47.4370895 ], + [ 7.5027593, 47.4372761 ], + [ 7.5027071, 47.4372343 ], + [ 7.5023599, 47.4374559 ], + [ 7.5022866, 47.4374752 ], + [ 7.5020441, 47.4375487 ], + [ 7.5020215, 47.4375523 ], + [ 7.5019762, 47.4375595 ], + [ 7.5019333, 47.4375663 ], + [ 7.5018905, 47.4375731 ], + [ 7.5018476, 47.4375799 ], + [ 7.5018047, 47.4375866 ], + [ 7.5017619, 47.4375934 ], + [ 7.501719, 47.4376002 ], + [ 7.5016761, 47.437607 ], + [ 7.5016333, 47.4376138 ], + [ 7.5015903999999995, 47.4376205 ], + [ 7.5015476, 47.4376273 ], + [ 7.5015023, 47.4376345 ], + [ 7.5011702, 47.4376853 ], + [ 7.5011305, 47.4377002 ], + [ 7.5011114, 47.4377074 ], + [ 7.501115, 47.4377118 ], + [ 7.5010272, 47.4377445 ], + [ 7.5010239, 47.4377404 ], + [ 7.5007374, 47.4378489 ], + [ 7.5006771, 47.4378021 ], + [ 7.500612, 47.4378964 ], + [ 7.5004415, 47.438139 ], + [ 7.5002721999999995, 47.4383831 ], + [ 7.5001032, 47.438627 ], + [ 7.5000217, 47.4388235 ], + [ 7.4998077, 47.438965 ], + [ 7.4995998, 47.4388965 ], + [ 7.4995464, 47.4388794 ], + [ 7.4995691, 47.4387558 ], + [ 7.4995779, 47.4387348 ], + [ 7.4995877, 47.4387139 ], + [ 7.499598, 47.4386931 ], + [ 7.4996114, 47.438673 ], + [ 7.4996221, 47.4386422 ], + [ 7.4997323, 47.4385042 ], + [ 7.500069, 47.4380174 ], + [ 7.5000807, 47.4379963 ], + [ 7.5001929, 47.4378406 ], + [ 7.500173, 47.4378306 ], + [ 7.4999326, 47.4380459 ], + [ 7.4998214, 47.4381455 ], + [ 7.4995876, 47.4383543 ], + [ 7.4994374, 47.4385258 ], + [ 7.4992973, 47.4387141 ], + [ 7.4990499, 47.4389532 ], + [ 7.4989543, 47.4390682 ], + [ 7.4990475, 47.4392247 ], + [ 7.4990254, 47.4392583 ], + [ 7.4991004, 47.4392932 ], + [ 7.4989135, 47.4394284 ], + [ 7.4987394, 47.4395398 ], + [ 7.4986359, 47.4396039 ], + [ 7.4985719, 47.4396748 ], + [ 7.4986996, 47.4397365 ], + [ 7.4985475, 47.4399724 ], + [ 7.4984289, 47.4399167 ], + [ 7.4983453, 47.4400805 ], + [ 7.498305, 47.44016 ], + [ 7.4982792, 47.4402163 ], + [ 7.4982088, 47.4403816 ], + [ 7.4981231, 47.4405758 ], + [ 7.4980359, 47.4407498 ], + [ 7.4980177999999995, 47.4407857 ], + [ 7.4978885, 47.4409378 ], + [ 7.497899, 47.4409752 ], + [ 7.4978849, 47.4410706 ], + [ 7.4977763, 47.4411955 ], + [ 7.4977268, 47.4411832 ], + [ 7.4976984, 47.4412463 ], + [ 7.4977038, 47.4412446 ], + [ 7.4977095, 47.4412435 ], + [ 7.4977154, 47.441243 ], + [ 7.4977213, 47.441243 ], + [ 7.4977271, 47.4412437 ], + [ 7.4977328, 47.4412449 ], + [ 7.49774, 47.4412464 ], + [ 7.4977475, 47.4412472 ], + [ 7.497755, 47.4412475 ], + [ 7.4977625, 47.4412472 ], + [ 7.49777, 47.4412464 ], + [ 7.4977772, 47.4412449 ], + [ 7.4977842, 47.441243 ], + [ 7.4977908, 47.4412404 ], + [ 7.4977969, 47.4412374 ], + [ 7.4978025, 47.441234 ], + [ 7.4978075, 47.4412301 ], + [ 7.4978118, 47.4412259 ], + [ 7.4978419, 47.4411872 ], + [ 7.4978614, 47.4411919 ], + [ 7.4978636, 47.4413203 ], + [ 7.4977666, 47.4415265 ], + [ 7.4975878, 47.4414851 ], + [ 7.4975664, 47.4415316 ], + [ 7.4976538999999995, 47.4415463 ], + [ 7.4977474, 47.4415973 ], + [ 7.4977058, 47.441777 ], + [ 7.4976791, 47.441898 ], + [ 7.4976662, 47.4419426 ], + [ 7.4976325, 47.4420812 ], + [ 7.4975943, 47.4422671 ], + [ 7.4976661, 47.4422848 ], + [ 7.4977371, 47.4425796 ], + [ 7.4976452, 47.4425846 ], + [ 7.4976603, 47.4427371 ], + [ 7.4976621, 47.4427611 ], + [ 7.4976754, 47.4429641 ], + [ 7.4977874, 47.4431678 ], + [ 7.4978294, 47.4432437 ], + [ 7.4979404, 47.4433655 ], + [ 7.4981349999999996, 47.4435744 ], + [ 7.4981799, 47.4436233 ], + [ 7.4981334, 47.4436431 ], + [ 7.4982009, 47.4437268 ], + [ 7.4982122, 47.4437221 ], + [ 7.4983126, 47.4436815 ], + [ 7.498386, 47.4437665 ], + [ 7.4982864, 47.4438076 ], + [ 7.4982754, 47.4438119 ], + [ 7.4983198, 47.443869 ], + [ 7.4983676, 47.4438491 ], + [ 7.498449, 47.4439496 ], + [ 7.4984874999999995, 47.4439959 ], + [ 7.4985446, 47.4440642 ], + [ 7.4985624, 47.4440856 ], + [ 7.4985686, 47.4440931 ], + [ 7.4986017, 47.4441598 ], + [ 7.4987742, 47.4445083 ], + [ 7.4989951, 47.4448187 ], + [ 7.4992149999999995, 47.4452259 ], + [ 7.4993322, 47.4454454 ], + [ 7.4994697, 47.4457032 ], + [ 7.4995318, 47.4457746 ], + [ 7.4995706, 47.4458196 ], + [ 7.4996892, 47.4459571 ], + [ 7.4998416, 47.4461338 ], + [ 7.4995344, 47.4463353 ], + [ 7.4993715, 47.4461981 ], + [ 7.4990453, 47.4459234 ], + [ 7.4988677, 47.4455693 ], + [ 7.4987434, 47.4453241 ], + [ 7.4984821, 47.4450012 ], + [ 7.4984052, 47.4447784 ], + [ 7.4980899, 47.4444511 ], + [ 7.4980436, 47.4443656 ], + [ 7.498, 47.4442853 ], + [ 7.497989, 47.444265 ], + [ 7.4979574, 47.4442067 ], + [ 7.4979504, 47.4441939 ], + [ 7.4979197, 47.4441687 ], + [ 7.497818, 47.4440811 ], + [ 7.4977602, 47.4441067 ], + [ 7.4976755, 47.4440377 ], + [ 7.4975115, 47.4439025 ], + [ 7.4975658, 47.4438805 ], + [ 7.4975319, 47.4438533 ], + [ 7.4973553, 47.4437159 ], + [ 7.4972008, 47.4435976 ], + [ 7.4968956, 47.4433635 ], + [ 7.4968606, 47.443339 ], + [ 7.4965941, 47.4433303 ], + [ 7.49654, 47.4434069 ], + [ 7.4963932, 47.4434317 ], + [ 7.4963715, 47.4433356 ], + [ 7.4962878, 47.4433365 ], + [ 7.4957559, 47.443365 ], + [ 7.4956868, 47.4433693 ], + [ 7.4953245, 47.4434795 ], + [ 7.4948271, 47.4436339 ], + [ 7.4947993, 47.4436102 ], + [ 7.4947712, 47.443586 ], + [ 7.495167, 47.4431252 ], + [ 7.4953081, 47.4429464 ], + [ 7.4955042, 47.4426935 ], + [ 7.4955868, 47.4425726 ], + [ 7.4955557, 47.4424504 ], + [ 7.4955528, 47.4423605 ], + [ 7.4955793, 47.4423465 ], + [ 7.4955637, 47.4423322 ], + [ 7.4953498, 47.4424223 ], + [ 7.4950776999999995, 47.4425068 ], + [ 7.4948718, 47.4425835 ], + [ 7.4943634, 47.4428995 ], + [ 7.494224, 47.4429754 ], + [ 7.494028, 47.4430561 ], + [ 7.4938372, 47.4431237 ], + [ 7.493605, 47.4431805 ], + [ 7.4933744, 47.443221 ], + [ 7.4931464, 47.4432294 ], + [ 7.4928853, 47.4432152 ], + [ 7.4926772, 47.4431616 ], + [ 7.4927118, 47.4431368 ], + [ 7.4927783, 47.4430389 ], + [ 7.4927077, 47.4428997 ], + [ 7.4927654, 47.4428315 ], + [ 7.4927661, 47.4427907 ], + [ 7.492766, 47.4427459 ], + [ 7.4924385000000004, 47.4425911 ], + [ 7.4920166, 47.4425187 ], + [ 7.4918731, 47.4424941 ], + [ 7.4917505, 47.4424979 ], + [ 7.4916176, 47.4425025 ], + [ 7.4911683, 47.4425164 ], + [ 7.4908869, 47.4425836 ], + [ 7.4906184, 47.4426478 ], + [ 7.4898514, 47.4428963 ], + [ 7.4898465, 47.442898 ], + [ 7.489041, 47.4433187 ], + [ 7.4890214, 47.4433017 ], + [ 7.4888685, 47.4431687 ], + [ 7.4893401, 47.4428642 ], + [ 7.4897486, 47.442692 ], + [ 7.4899897, 47.4425884 ], + [ 7.4907107, 47.442235 ], + [ 7.4916501, 47.4420981 ], + [ 7.4923018, 47.4421625 ], + [ 7.4923125, 47.4421636 ], + [ 7.4929513, 47.4421816 ], + [ 7.4929045, 47.4418212 ], + [ 7.4929974999999995, 47.441786 ], + [ 7.4932104, 47.4417067 ], + [ 7.4933423999999995, 47.4416562 ], + [ 7.4934321, 47.4416227 ], + [ 7.4935174, 47.4415905 ], + [ 7.4937211999999995, 47.4415149 ], + [ 7.4937196, 47.4414528 ], + [ 7.4937153, 47.4412918 ], + [ 7.4934941, 47.441168 ], + [ 7.4933339, 47.4410436 ], + [ 7.4930448, 47.4409639 ], + [ 7.4928565, 47.4409079 ], + [ 7.4926007, 47.44085 ], + [ 7.4923528, 47.4408347 ], + [ 7.4920764, 47.440804 ], + [ 7.4919777, 47.4407651 ], + [ 7.4919597, 47.4406576 ], + [ 7.4918649, 47.4405152 ], + [ 7.4917242, 47.4403102 ], + [ 7.4917139, 47.4401747 ], + [ 7.4917841, 47.4401721 ], + [ 7.4918855, 47.4401996 ], + [ 7.4920153, 47.4401677 ], + [ 7.4923269, 47.4401103 ], + [ 7.4925920999999995, 47.4400089 ], + [ 7.4928013, 47.4398792 ], + [ 7.4930201, 47.4397849 ], + [ 7.4931723, 47.4397045 ], + [ 7.4933126, 47.4396101 ], + [ 7.4934024, 47.4395268 ], + [ 7.493477, 47.4394562 ], + [ 7.4934811, 47.4394074 ], + [ 7.4934278, 47.4393797 ], + [ 7.4932742, 47.4393823 ], + [ 7.4929987, 47.4394028 ], + [ 7.492783, 47.4393853 ], + [ 7.4926177, 47.4393667 ], + [ 7.4924335, 47.4393612 ], + [ 7.4922945, 47.4393876 ], + [ 7.4921848, 47.4394878 ], + [ 7.4920194, 47.4395505 ], + [ 7.4917625, 47.4395653 ], + [ 7.4917133, 47.4395715 ], + [ 7.4914788, 47.439601 ], + [ 7.4911932, 47.439663 ], + [ 7.4908935, 47.4397326 ], + [ 7.490622, 47.4397919 ], + [ 7.4904874, 47.4398362 ], + [ 7.4903171, 47.4399291 ], + [ 7.4901971, 47.4399786 ], + [ 7.4901171, 47.4399592 ], + [ 7.4898029, 47.4400668 ], + [ 7.4895262, 47.4401234 ], + [ 7.4892511, 47.4402173 ], + [ 7.4889426, 47.4403294 ], + [ 7.4887857, 47.4403919 ], + [ 7.4888115, 47.4405441 ], + [ 7.4888017, 47.4405767 ], + [ 7.4884976, 47.440623 ], + [ 7.4883216, 47.4406618 ], + [ 7.4883029, 47.4407325 ], + [ 7.4883199, 47.44086 ], + [ 7.4884072, 47.4410687 ], + [ 7.4885182, 47.4413517 ], + [ 7.4885678, 47.4415595 ], + [ 7.4882497, 47.4416843 ], + [ 7.4878900999999995, 47.4418658 ], + [ 7.4876112, 47.4419966 ], + [ 7.4872911, 47.4421378 ], + [ 7.4870058, 47.4422512 ], + [ 7.4867772, 47.442266599999996 ], + [ 7.4866077, 47.4423487 ], + [ 7.4864817, 47.4424918 ], + [ 7.4863124, 47.4426784 ], + [ 7.4861349, 47.4428807 ], + [ 7.4859417, 47.4430947 ], + [ 7.4856647, 47.4434074 ], + [ 7.4853506, 47.4432007 ], + [ 7.4851121, 47.4430359 ], + [ 7.4851507999999995, 47.442895 ], + [ 7.4852874, 47.4426542 ], + [ 7.4854362, 47.4423893 ], + [ 7.4855118, 47.4422094 ], + [ 7.4855131, 47.4421024 ], + [ 7.4854185, 47.4418561 ], + [ 7.4852337, 47.441501 ], + [ 7.4850256, 47.4410432 ], + [ 7.4849459, 47.4409462 ], + [ 7.4849591, 47.4408789 ], + [ 7.4850405, 47.4408839 ], + [ 7.4852583, 47.4408535 ], + [ 7.4854023, 47.4408236 ], + [ 7.4853823, 47.4406751 ], + [ 7.4853477999999996, 47.4403492 ], + [ 7.4853414, 47.4400386 ], + [ 7.4853399, 47.4399123 ], + [ 7.4853383000000004, 47.4397839 ], + [ 7.4853493, 47.4394475 ], + [ 7.4857154999999995, 47.4393578 ], + [ 7.4859755, 47.4392769 ], + [ 7.4862423, 47.4392112 ], + [ 7.486467, 47.4391545 ], + [ 7.4865627, 47.4391332 ], + [ 7.4864755, 47.4389213 ], + [ 7.4862762, 47.4388675 ], + [ 7.4861867, 47.4388002 ], + [ 7.4861615, 47.4388 ], + [ 7.4861036, 47.4387538 ], + [ 7.4860544, 47.4387145 ], + [ 7.4860082, 47.4386777 ], + [ 7.4859413, 47.4386242 ], + [ 7.4859102, 47.4385994 ], + [ 7.4858769, 47.4385728 ], + [ 7.4858575, 47.4385573 ], + [ 7.4858153, 47.4385333 ], + [ 7.4857418, 47.4384914 ], + [ 7.4856625, 47.4384461 ], + [ 7.4855232, 47.4383667 ], + [ 7.4853661, 47.4382771 ], + [ 7.4852977, 47.438238 ], + [ 7.4853059, 47.4381765 ], + [ 7.485313, 47.4381236 ], + [ 7.4853218, 47.4380584 ], + [ 7.4853259, 47.4380285 ], + [ 7.4853446, 47.4378893 ], + [ 7.4853481, 47.4378633 ], + [ 7.4853857, 47.4377861 ], + [ 7.4854132, 47.4377299 ], + [ 7.4854690999999995, 47.4376151 ], + [ 7.4854996, 47.4375526 ], + [ 7.4855295, 47.4374912 ], + [ 7.4855802, 47.4373874 ], + [ 7.4856005, 47.4373456 ], + [ 7.485601, 47.4373392 ], + [ 7.4856076, 47.4372532 ], + [ 7.4856116, 47.437201 ], + [ 7.4856157, 47.4371475 ], + [ 7.4856226, 47.4370571 ], + [ 7.4854864, 47.437029 ], + [ 7.4851614, 47.436962 ], + [ 7.485202, 47.43637 ], + [ 7.4852712, 47.4356957 ], + [ 7.4845225, 47.4357102 ], + [ 7.4837122, 47.4355605 ], + [ 7.4836776, 47.4354222 ], + [ 7.4836557, 47.4353346 ], + [ 7.483638, 47.4352637 ], + [ 7.48363, 47.4352315 ], + [ 7.4836193, 47.4351886 ], + [ 7.4835737, 47.4351048 ], + [ 7.4835365, 47.4350364 ], + [ 7.4834955, 47.4349609 ], + [ 7.4834577, 47.4348914 ], + [ 7.4834183, 47.4348189 ], + [ 7.4833833, 47.4347547 ], + [ 7.48336, 47.4347117 ], + [ 7.4833452, 47.4346845 ], + [ 7.4828855, 47.4346968 ], + [ 7.4827114, 47.4345678 ], + [ 7.4825443, 47.434444 ], + [ 7.4824257, 47.4343561 ], + [ 7.482386, 47.4343362 ], + [ 7.4819925, 47.4341396 ], + [ 7.4819066, 47.4340968 ], + [ 7.4817719, 47.4340294 ], + [ 7.4817512, 47.4339605 ], + [ 7.4817257, 47.4338753 ], + [ 7.4817133, 47.433834 ], + [ 7.4816827, 47.433732 ], + [ 7.4816598, 47.4336557 ], + [ 7.4816487, 47.4336185 ], + [ 7.4816294, 47.4335542 ], + [ 7.481598, 47.4334496 ], + [ 7.4815892999999996, 47.4333961 ], + [ 7.4815749, 47.4333085 ], + [ 7.4815634, 47.4332384 ], + [ 7.4815525, 47.4331723 ], + [ 7.4815416, 47.4331059 ], + [ 7.4815292, 47.4330302 ], + [ 7.4815176, 47.4329598 ], + [ 7.4815102, 47.4329145 ], + [ 7.4815074, 47.4328898 ], + [ 7.4815000000000005, 47.4328257 ], + [ 7.4814875, 47.432716 ], + [ 7.4814749, 47.4326054 ], + [ 7.481466, 47.4325276 ], + [ 7.4814584, 47.4324611 ], + [ 7.4814509, 47.4323948 ], + [ 7.4814437, 47.432332 ], + [ 7.4814435, 47.4323278 ], + [ 7.4814397, 47.4322617 ], + [ 7.4814377, 47.432227 ], + [ 7.4814349, 47.432177 ], + [ 7.4814301, 47.4320942 ], + [ 7.481428, 47.4320562 ], + [ 7.4814241, 47.4319885 ], + [ 7.4814203, 47.4319219 ], + [ 7.4814183, 47.4318863 ], + [ 7.4814133, 47.4317992 ], + [ 7.4814105, 47.43175 ], + [ 7.481408, 47.431706 ], + [ 7.4821382, 47.4315381 ], + [ 7.48291, 47.4314355 ], + [ 7.4831074, 47.4314092 ], + [ 7.4839366, 47.4313857 ], + [ 7.4839639, 47.4313866 ], + [ 7.484137, 47.4313812 ], + [ 7.4842398, 47.431378 ], + [ 7.4843419, 47.4313749 ], + [ 7.4844465, 47.4313716 ], + [ 7.4845129, 47.4313145 ], + [ 7.48458, 47.4312568 ], + [ 7.4846428, 47.4312027 ], + [ 7.4847766, 47.4310876 ], + [ 7.4848688, 47.4310778 ], + [ 7.4849685, 47.4310672 ], + [ 7.485074, 47.431056 ], + [ 7.4851862, 47.4310441 ], + [ 7.4852924, 47.4310329 ], + [ 7.4853789, 47.4310237 ], + [ 7.4854655, 47.4310145 ], + [ 7.4855694, 47.4310035 ], + [ 7.4855577, 47.4307228 ], + [ 7.4855527, 47.4306035 ], + [ 7.4855482, 47.4304961 ], + [ 7.4855462, 47.430449 ], + [ 7.4855403, 47.4303067 ], + [ 7.486338, 47.430241 ], + [ 7.486836, 47.4302178 ], + [ 7.4871805, 47.4301899 ], + [ 7.4875074, 47.4301613 ], + [ 7.4874662, 47.429837 ], + [ 7.4874414, 47.4297018 ], + [ 7.4875651, 47.4297015 ], + [ 7.4878584, 47.4296997 ], + [ 7.4882902, 47.4297315 ], + [ 7.4886625, 47.4297893 ], + [ 7.4890345, 47.4298601 ], + [ 7.4893525, 47.4299427 ], + [ 7.4895765, 47.4300509 ], + [ 7.4897029, 47.4301307 ], + [ 7.4896151, 47.4302307 ], + [ 7.4894862, 47.4303373 ], + [ 7.4893515, 47.4304568 ], + [ 7.4893471, 47.4304635 ], + [ 7.4893582, 47.4304651 ], + [ 7.4892986, 47.4306217 ], + [ 7.4892441, 47.4307648 ], + [ 7.4892389, 47.4307785 ], + [ 7.4892131, 47.4308011 ], + [ 7.4891248, 47.4308788 ], + [ 7.4890875999999995, 47.4309115 ], + [ 7.4889086, 47.4310689 ], + [ 7.4888378, 47.4311312 ], + [ 7.4887668, 47.4312488 ], + [ 7.4887192, 47.4313275 ], + [ 7.4886887, 47.431378 ], + [ 7.4886141, 47.4315016 ], + [ 7.4885439, 47.4316178 ], + [ 7.4885121, 47.4316704 ], + [ 7.4885111, 47.431693 ], + [ 7.4888402, 47.4316845 ], + [ 7.4891792, 47.4316783 ], + [ 7.4891831, 47.4316377 ], + [ 7.4891233, 47.4316185 ], + [ 7.4889119, 47.4316023 ], + [ 7.4887386, 47.4316081 ], + [ 7.4887735, 47.4314288 ], + [ 7.4888429, 47.4312978 ], + [ 7.4889447, 47.4311691 ], + [ 7.4890312, 47.43118 ], + [ 7.4892145, 47.4311917 ], + [ 7.4893952, 47.4312148 ], + [ 7.4896411, 47.4312368 ], + [ 7.4896751, 47.4312519 ], + [ 7.4896712, 47.4312938 ], + [ 7.4896551, 47.4313409 ], + [ 7.4896749, 47.4314479 ], + [ 7.489667, 47.4315231 ], + [ 7.48962, 47.4316879 ], + [ 7.4897269, 47.4316871 ], + [ 7.4897844, 47.4314293 ], + [ 7.4899543, 47.4314349 ], + [ 7.4900561, 47.4314082 ], + [ 7.4901876, 47.4313321 ], + [ 7.4901671, 47.4312832 ], + [ 7.4900869, 47.4311388 ], + [ 7.4899996, 47.4310059 ], + [ 7.4900084, 47.430904 ], + [ 7.4900144, 47.4307634 ], + [ 7.4900153, 47.4307617 ], + [ 7.4901016, 47.4306083 ], + [ 7.4902294, 47.4304432 ], + [ 7.4902334, 47.430362 ], + [ 7.490238, 47.4303367 ], + [ 7.4903766, 47.4303078 ], + [ 7.4905621, 47.4302411 ], + [ 7.490708, 47.4301526 ], + [ 7.4908817, 47.4300209 ], + [ 7.4910147, 47.4298032 ], + [ 7.4910832, 47.4296479 ], + [ 7.4911593, 47.429448 ], + [ 7.491257, 47.4292463 ], + [ 7.491442, 47.4291039 ], + [ 7.4915952, 47.4288878 ], + [ 7.491659, 47.4286462 ], + [ 7.4920164, 47.4286163 ], + [ 7.4924800000000005, 47.4286046 ], + [ 7.4928421, 47.4286237 ], + [ 7.4931153, 47.4286607 ], + [ 7.4931247, 47.4286355 ], + [ 7.4932894, 47.4286484 ], + [ 7.4936472, 47.4286762 ], + [ 7.4939355, 47.4286987 ], + [ 7.494001, 47.4287038 ], + [ 7.4941414, 47.4287147 ], + [ 7.4941996, 47.4287192 ], + [ 7.4941483, 47.4291707 ], + [ 7.4950432, 47.4293198 ], + [ 7.4957562, 47.4293678 ], + [ 7.4958185, 47.4293398 ], + [ 7.4959302, 47.4292894 ], + [ 7.4961553, 47.429188 ], + [ 7.4962543, 47.4291434 ], + [ 7.4963399, 47.4291048 ], + [ 7.4964031, 47.4290763 ], + [ 7.496486, 47.429039 ], + [ 7.4965697, 47.4290013 ], + [ 7.4966688999999995, 47.428960000000004 ], + [ 7.4968088999999996, 47.4289042 ], + [ 7.4969429, 47.4288508 ], + [ 7.4970445, 47.4288103 ], + [ 7.497068, 47.428815 ], + [ 7.4971624, 47.4288342 ], + [ 7.4972667, 47.4288553 ], + [ 7.4973911, 47.4288805 ], + [ 7.4974756, 47.4287734 ], + [ 7.4975204, 47.4287165 ], + [ 7.4971184, 47.4287294 ], + [ 7.4970666, 47.4287305 ], + [ 7.4968218, 47.4287228 ], + [ 7.4962185, 47.4287857 ], + [ 7.496059, 47.4286557 ], + [ 7.4959353, 47.4286611 ], + [ 7.4958004, 47.4287756 ], + [ 7.4957516, 47.4288875 ], + [ 7.4958845, 47.4289125 ], + [ 7.4958194, 47.4290926 ], + [ 7.495649, 47.4292521 ], + [ 7.4955707, 47.4292797 ], + [ 7.4953986, 47.4293089 ], + [ 7.4952311, 47.4293049 ], + [ 7.4952207, 47.4292318 ], + [ 7.4951435, 47.4291775 ], + [ 7.4950408, 47.4290598 ], + [ 7.4950341, 47.4290411 ], + [ 7.4949465, 47.4289767 ], + [ 7.4949147, 47.4290385 ], + [ 7.4948967, 47.429063 ], + [ 7.4947905, 47.4292181 ], + [ 7.4947048, 47.4292149 ], + [ 7.4944993, 47.4291725 ], + [ 7.4943013, 47.4291135 ], + [ 7.4943501, 47.4288935 ], + [ 7.49436, 47.4288464 ], + [ 7.4943966, 47.4288507 ], + [ 7.4944142, 47.428725 ], + [ 7.4945129, 47.4287401 ], + [ 7.4945088, 47.4287138 ], + [ 7.4945037, 47.4286814 ], + [ 7.4945287, 47.4285658 ], + [ 7.4944149, 47.4285566 ], + [ 7.4943219, 47.428552 ], + [ 7.494165, 47.4285598 ], + [ 7.4939992, 47.4285723 ], + [ 7.4939037, 47.4285846 ], + [ 7.4938538, 47.4285754 ], + [ 7.4937838, 47.4284201 ], + [ 7.4937127, 47.4284074 ], + [ 7.4936839, 47.4284812 ], + [ 7.492927, 47.4282915 ], + [ 7.4925499, 47.4283487 ], + [ 7.492263, 47.4283351 ], + [ 7.4919767, 47.4282469 ], + [ 7.4918615, 47.4280949 ], + [ 7.4918478, 47.4280595 ], + [ 7.491966, 47.4279402 ], + [ 7.4922398, 47.4278707 ], + [ 7.492351, 47.4277859 ], + [ 7.4925529, 47.4276629 ], + [ 7.4924131, 47.4276522 ], + [ 7.4923383999999995, 47.4276122 ], + [ 7.4923295, 47.4276028 ], + [ 7.4915809, 47.4277427 ], + [ 7.4915676, 47.4276869 ], + [ 7.4915646, 47.427673 ], + [ 7.4915412, 47.427677 ], + [ 7.4908137, 47.4277996 ], + [ 7.4908179, 47.4278108 ], + [ 7.4902771999999995, 47.4278901 ], + [ 7.4899089, 47.4279522 ], + [ 7.4896645, 47.4280351 ], + [ 7.4889928999999995, 47.4281067 ], + [ 7.4885308, 47.4281846 ], + [ 7.4880157, 47.4283769 ], + [ 7.4872162, 47.4284876 ], + [ 7.4868603, 47.4285428 ], + [ 7.4867586, 47.428576 ], + [ 7.4865936, 47.4286299 ], + [ 7.4855689, 47.4292212 ], + [ 7.4852863, 47.429334 ], + [ 7.4850687, 47.4294556 ], + [ 7.4847896, 47.4296177 ], + [ 7.484415, 47.4297677 ], + [ 7.4837956, 47.4299349 ], + [ 7.4836459, 47.4299847 ], + [ 7.4834528, 47.4300502 ], + [ 7.4826397, 47.4303016 ], + [ 7.482249, 47.4304235 ], + [ 7.4816408, 47.4306109 ], + [ 7.4811914, 47.4307524 ], + [ 7.4805068, 47.4309834 ], + [ 7.4804829999999995, 47.4310262 ], + [ 7.4803813, 47.4312361 ], + [ 7.4803375, 47.4313434 ], + [ 7.4802734, 47.4315509 ], + [ 7.4802587, 47.4316442 ], + [ 7.4802501, 47.4317196 ], + [ 7.4802444999999995, 47.4320343 ], + [ 7.4802475, 47.4322051 ], + [ 7.4802622, 47.4323679 ], + [ 7.480277, 47.432489 ], + [ 7.4802918, 47.4325843 ], + [ 7.4803181, 47.4326836 ], + [ 7.4803386, 47.432758 ], + [ 7.4804735, 47.4330399 ], + [ 7.4805408, 47.4332008 ], + [ 7.48057, 47.4332782 ], + [ 7.480651, 47.4335474 ], + [ 7.4807238, 47.4338534 ], + [ 7.4808687, 47.4340426 ], + [ 7.4810999, 47.4342678 ], + [ 7.4814026, 47.4345371 ], + [ 7.4817551, 47.4348338 ], + [ 7.4821766, 47.4351432 ], + [ 7.4826071, 47.435418 ], + [ 7.4830974999999995, 47.4357399 ], + [ 7.4833944, 47.4359651 ], + [ 7.4835978, 47.436206 ], + [ 7.4837906, 47.4364338 ], + [ 7.4839221, 47.4366214 ], + [ 7.4839356, 47.4368446 ], + [ 7.4839549, 47.4371212 ], + [ 7.4839164, 47.4373862 ], + [ 7.4838153, 47.4376245 ], + [ 7.4838198, 47.4378341 ], + [ 7.4835552, 47.4381671 ], + [ 7.4833625999999995, 47.4384844 ], + [ 7.4832113, 47.4387508 ], + [ 7.4831184, 47.4390536 ], + [ 7.483017, 47.4393912 ], + [ 7.4829542, 47.439675 ], + [ 7.4829157, 47.4400533 ], + [ 7.4828958, 47.4403906 ], + [ 7.4829232, 47.4406814 ], + [ 7.483008, 47.4409882 ], + [ 7.483093, 47.4412746 ], + [ 7.4831332, 47.4416069 ], + [ 7.483155, 47.4419346 ], + [ 7.4832067, 47.4422852 ], + [ 7.48323, 47.4424756 ], + [ 7.4832193, 47.4427182 ], + [ 7.4831383, 47.4429531 ], + [ 7.4830441, 47.4431307 ], + [ 7.4829062, 47.4433204 ], + [ 7.4828901, 47.4433407 ], + [ 7.4828733, 47.4433608 ], + [ 7.4828555, 47.4433805 ], + [ 7.4828372, 47.4433999 ], + [ 7.482818, 47.4434191 ], + [ 7.4827983, 47.4434378 ], + [ 7.4827777, 47.4434562 ], + [ 7.4827563999999995, 47.4434742 ], + [ 7.4824996, 47.4436566 ], + [ 7.4822578, 47.4438341 ], + [ 7.4821256, 47.443925 ], + [ 7.4821113, 47.4439331 ], + [ 7.4821152, 47.4439379 ], + [ 7.4820012, 47.4440641 ], + [ 7.4819136, 47.4441559 ], + [ 7.4815369, 47.4446082 ], + [ 7.4814601, 47.4447055 ], + [ 7.4812531, 47.4448947 ], + [ 7.4810462, 47.4450802 ], + [ 7.4808392999999995, 47.4453072 ], + [ 7.4805501, 47.4457072 ], + [ 7.4804308, 47.4458279 ], + [ 7.4803247, 47.4459252 ], + [ 7.4802397, 47.4459883 ], + [ 7.4801601, 47.4460442 ], + [ 7.4799771, 47.4461505 ], + [ 7.4796346, 47.4463523 ], + [ 7.4794648, 47.4464641 ], + [ 7.4793135, 47.4465793 ], + [ 7.4792738, 47.446655 ], + [ 7.4792526, 47.4467234 ], + [ 7.479226, 47.4468099 ], + [ 7.4792129, 47.4469667 ], + [ 7.4792052, 47.4472026 ], + [ 7.4791894, 47.4474277 ], + [ 7.4791444, 47.4475952 ], + [ 7.4791258, 47.4476672 ], + [ 7.480179, 47.4488874 ], + [ 7.482101, 47.4495086 ], + [ 7.4826864, 47.4496308 ], + [ 7.4835219, 47.4497104 ], + [ 7.4836143, 47.4497047 ], + [ 7.4838061, 47.4497351 ], + [ 7.4839709, 47.4498277 ], + [ 7.4841923999999995, 47.4496559 ], + [ 7.4839024, 47.4494541 ], + [ 7.4840361, 47.4493541 ], + [ 7.4841444, 47.4492751 ], + [ 7.4842939, 47.4491776 ], + [ 7.4844408, 47.4490899 ], + [ 7.4846099, 47.4489462 ], + [ 7.4844807, 47.4488499 ], + [ 7.4845616, 47.4487717 ], + [ 7.484752, 47.4485997 ], + [ 7.4849063, 47.448553 ], + [ 7.485049, 47.4484519 ], + [ 7.4852308, 47.4483992 ], + [ 7.4854173, 47.4483291 ], + [ 7.4856218, 47.44829 ], + [ 7.485879, 47.4482801 ], + [ 7.4860314, 47.4482874 ], + [ 7.48604, 47.4483915 ], + [ 7.486056, 47.4484997 ], + [ 7.4860704, 47.448618 ], + [ 7.4862031, 47.4486696 ], + [ 7.4861317, 47.4488373 ], + [ 7.4861457, 47.4488431 ], + [ 7.4861448, 47.4488445 ], + [ 7.4862431, 47.4488832 ], + [ 7.4861854, 47.4489757 ], + [ 7.4860848, 47.4490823 ], + [ 7.4860099, 47.4491865 ], + [ 7.4859847, 47.4492215 ], + [ 7.4859436, 47.4493165 ], + [ 7.4859296, 47.4493916 ], + [ 7.4859388, 47.4494424 ], + [ 7.4859924, 47.4494826 ], + [ 7.4860521, 47.449516 ], + [ 7.4861512999999995, 47.4495454 ], + [ 7.486263, 47.4495412 ], + [ 7.4863623, 47.4495192 ], + [ 7.4864518, 47.4494652 ], + [ 7.4865037, 47.4493813 ], + [ 7.4865494, 47.4492397 ], + [ 7.4865558, 47.4492199 ], + [ 7.4866095999999995, 47.4490445 ], + [ 7.4866798, 47.4489203 ], + [ 7.4867669, 47.4488321 ], + [ 7.4868678, 47.4487786 ], + [ 7.4870325, 47.4487689 ], + [ 7.4872316, 47.4487831 ], + [ 7.487549, 47.448827 ], + [ 7.4879033, 47.4488654 ], + [ 7.4882649, 47.4489253 ], + [ 7.4886292, 47.448996 ], + [ 7.4890243, 47.449081 ], + [ 7.4891797, 47.4491095 ], + [ 7.4893415, 47.4491469 ], + [ 7.4893464, 47.4491372 ], + [ 7.4887578, 47.4488859 ], + [ 7.4884278, 47.4486173 ], + [ 7.488167, 47.4484055 ], + [ 7.4879866, 47.4482409 ], + [ 7.4878776, 47.448045 ], + [ 7.4878481, 47.4478519 ], + [ 7.4878883, 47.4475954 ], + [ 7.4878505, 47.447587 ], + [ 7.4879629, 47.4473557 ], + [ 7.4880837, 47.4472621 ], + [ 7.4882213, 47.4471906 ], + [ 7.4883906, 47.4471323 ], + [ 7.4886392, 47.4470787 ], + [ 7.4889461, 47.4470348 ], + [ 7.4891597, 47.447015 ], + [ 7.4894179, 47.4470003 ], + [ 7.4896284, 47.447 ], + [ 7.4899018, 47.4470026 ], + [ 7.4901365, 47.4470115 ], + [ 7.49032, 47.4470333 ], + [ 7.4903875, 47.4470414 ], + [ 7.4905834, 47.4470715 ], + [ 7.4908469, 47.4471124 ], + [ 7.4910917, 47.4471749 ], + [ 7.4913068, 47.4472331 ], + [ 7.4914456, 47.447277 ], + [ 7.4912998, 47.4471626 ], + [ 7.4911035, 47.4469537 ], + [ 7.4908654, 47.4467971 ], + [ 7.4906901999999995, 47.4466737 ], + [ 7.490396, 47.4465124 ], + [ 7.490144, 47.4464317 ], + [ 7.490039, 47.4463653 ], + [ 7.4899689, 47.4462514 ], + [ 7.4899687, 47.4460472 ], + [ 7.4900174, 47.4458335 ], + [ 7.4901501, 47.4455769 ], + [ 7.4902411, 47.4454914 ], + [ 7.490423, 47.4453299 ], + [ 7.4907239, 47.4451967 ], + [ 7.4911297, 47.4451111 ], + [ 7.4914962, 47.4450966 ], + [ 7.4915325, 47.4450963 ], + [ 7.4915825, 47.4451062 ], + [ 7.4916556, 47.4451317 ], + [ 7.4917393, 47.4451823 ], + [ 7.4918537, 47.4452713 ], + [ 7.4919866, 47.4453708 ], + [ 7.4921618, 47.4455263 ], + [ 7.492415, 47.4456915 ], + [ 7.4925565, 47.445783 ], + [ 7.4926753, 47.4458599 ], + [ 7.4927353, 47.4459204 ], + [ 7.4928039, 47.4459896 ], + [ 7.4929237, 47.4461641 ], + [ 7.4930378, 47.4463006 ], + [ 7.493201, 47.4464545 ], + [ 7.4933582, 47.4465921 ], + [ 7.4935298, 47.4467455 ], + [ 7.4936375, 47.4468326 ], + [ 7.4937776, 47.4468805 ], + [ 7.4937873, 47.4468838 ], + [ 7.4939213, 47.4468858 ], + [ 7.4940776, 47.4468293 ], + [ 7.4942867, 47.4466941 ], + [ 7.4944819, 47.4465846 ], + [ 7.4946975, 47.4465174 ], + [ 7.4948727, 47.4464869 ], + [ 7.4952683, 47.4464471 ], + [ 7.4954733, 47.4464215 ], + [ 7.4954917, 47.4464171 ], + [ 7.496336, 47.4457811 ], + [ 7.4963607, 47.4459013 ], + [ 7.4963486, 47.4460297 ], + [ 7.4964343, 47.4461831 ], + [ 7.4965261, 47.446407 ], + [ 7.4967037, 47.4466929 ], + [ 7.4967221, 47.4467799 ], + [ 7.4967713, 47.4469996 ], + [ 7.4968938, 47.4473312 ], + [ 7.4969012, 47.4474058 ], + [ 7.4974421, 47.4477076 ], + [ 7.4991266, 47.4481161 ], + [ 7.5017114, 47.4491328 ], + [ 7.5024463, 47.4482877 ], + [ 7.502508, 47.4482108 ], + [ 7.5025162, 47.4482007 ], + [ 7.5036904, 47.4467403 ], + [ 7.5038515, 47.4465949 ], + [ 7.50461, 47.4459102 ], + [ 7.5049433, 47.4456103 ], + [ 7.5047646, 47.4455709 ], + [ 7.5044232, 47.4454957 ], + [ 7.5043809, 47.4454866 ], + [ 7.5043389, 47.4454769 ], + [ 7.5042972, 47.4454667 ], + [ 7.5042557, 47.445456 ], + [ 7.5042146, 47.4454447 ], + [ 7.5041738, 47.4454328 ], + [ 7.5041334, 47.4454205 ] + ], + [ + [ 7.4990448, 47.4418292 ], + [ 7.4991742, 47.4421033 ], + [ 7.4988558, 47.4421725 ], + [ 7.4988018, 47.4420333 ], + [ 7.4988271, 47.4418765 ], + [ 7.4990448, 47.4418292 ] + ], + [ + [ 7.4881576, 47.4452667 ], + [ 7.4881296, 47.4452778 ], + [ 7.4883172, 47.4454241 ], + [ 7.4882651, 47.4454875 ], + [ 7.4881991, 47.4455754 ], + [ 7.4881018, 47.4456288 ], + [ 7.4879927, 47.445627 ], + [ 7.4879287, 47.4456017 ], + [ 7.4878789999999995, 47.4455379 ], + [ 7.4878522, 47.4455314 ], + [ 7.4874884, 47.4456611 ], + [ 7.487439, 47.4456312 ], + [ 7.4873704, 47.4456533 ], + [ 7.48727, 47.4456722 ], + [ 7.4872057, 47.4456901 ], + [ 7.487156, 47.4456954 ], + [ 7.4871079, 47.4456897 ], + [ 7.4870529999999995, 47.4456578 ], + [ 7.4870405, 47.4455938 ], + [ 7.48704, 47.4455912 ], + [ 7.4870662, 47.4455574 ], + [ 7.4872263, 47.4454272 ], + [ 7.4874095, 47.4453072 ], + [ 7.4875656, 47.445206 ], + [ 7.4877353, 47.4451102 ], + [ 7.4877815, 47.4450842 ], + [ 7.487828, 47.4450578 ], + [ 7.4877808, 47.4451505 ], + [ 7.4880118, 47.4450754 ], + [ 7.4881576, 47.4452667 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns091", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Dittinger Weide und Dittinger Wald", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Dittinger Weide und Dittinger Wald", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Dittinger Weide und Dittinger Wald", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Dittinger Weide und Dittinger Wald", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.9147005, 47.4072972 ], + [ 7.9146525, 47.407387 ], + [ 7.9145075, 47.4076475 ], + [ 7.9143588, 47.4079134 ], + [ 7.914336, 47.4079561 ], + [ 7.9144967, 47.4079962 ], + [ 7.914396, 47.4082247 ], + [ 7.9142695, 47.4083988 ], + [ 7.9147196, 47.408615 ], + [ 7.9154053, 47.4090284 ], + [ 7.915448, 47.4090558 ], + [ 7.9153721, 47.4090989 ], + [ 7.9153151, 47.409190100000004 ], + [ 7.9153514, 47.409208 ], + [ 7.9155674, 47.4091101 ], + [ 7.9156936, 47.4090694 ], + [ 7.9158798, 47.4090673 ], + [ 7.9160724, 47.4090835 ], + [ 7.9163186, 47.4091377 ], + [ 7.9163708, 47.4091492 ], + [ 7.9164494, 47.4092082 ], + [ 7.916452, 47.4092758 ], + [ 7.9164264, 47.4094075 ], + [ 7.9164262, 47.4094934 ], + [ 7.9164508, 47.4095029 ], + [ 7.9164813, 47.4095145 ], + [ 7.9165628, 47.4095456 ], + [ 7.9165867, 47.409589 ], + [ 7.9165461, 47.4096717 ], + [ 7.916528, 47.4097784 ], + [ 7.9162885, 47.4098235 ], + [ 7.9161321000000004, 47.4098315 ], + [ 7.9158934, 47.4098617 ], + [ 7.9157668, 47.4099234 ], + [ 7.914997, 47.4103417 ], + [ 7.9148727999999995, 47.4101351 ], + [ 7.9148559, 47.4101727 ], + [ 7.9148165, 47.4102841 ], + [ 7.9147102, 47.4108018 ], + [ 7.9146002, 47.4113361 ], + [ 7.9145598, 47.4115488 ], + [ 7.9145517, 47.4116898 ], + [ 7.9146054, 47.411908 ], + [ 7.9146062, 47.411912 ], + [ 7.9146427, 47.4120686 ], + [ 7.914664, 47.4120643 ], + [ 7.9147842, 47.4120262 ], + [ 7.9149329999999996, 47.4120314 ], + [ 7.9150106000000005, 47.4120881 ], + [ 7.9151475, 47.4121231 ], + [ 7.9152954, 47.4122198 ], + [ 7.9153806, 47.4123477 ], + [ 7.9154297, 47.4124298 ], + [ 7.915608, 47.4124465 ], + [ 7.9156212, 47.4124312 ], + [ 7.9162704999999995, 47.4125146 ], + [ 7.9165398, 47.4125482 ], + [ 7.9168833, 47.4122864 ], + [ 7.9180084, 47.412008 ], + [ 7.9180307, 47.4122392 ], + [ 7.9181853, 47.4122165 ], + [ 7.9181975, 47.4122111 ], + [ 7.9184739, 47.4121864 ], + [ 7.9185268, 47.412439 ], + [ 7.9187109, 47.4126294 ], + [ 7.9189025, 47.412828 ], + [ 7.9188603, 47.4131636 ], + [ 7.9192903999999995, 47.4132613 ], + [ 7.9195408, 47.4133006 ], + [ 7.9200435, 47.4133617 ], + [ 7.9205448, 47.4133598 ], + [ 7.9206478, 47.4132461 ], + [ 7.9207205, 47.4130424 ], + [ 7.9208201, 47.4128119 ], + [ 7.9209025, 47.4123343 ], + [ 7.9210095, 47.4121207 ], + [ 7.9212027, 47.4111657 ], + [ 7.9212612, 47.4109965 ], + [ 7.9212717999999995, 47.4109441 ], + [ 7.9214169, 47.4104748 ], + [ 7.9214846, 47.4099289 ], + [ 7.9233895, 47.4103001 ], + [ 7.9237532999999996, 47.4103822 ], + [ 7.9242927, 47.4102808 ], + [ 7.9258071999999995, 47.4102887 ], + [ 7.9258255, 47.4092473 ], + [ 7.9257063, 47.4092351 ], + [ 7.9250523, 47.4090122 ], + [ 7.9250468, 47.409008 ], + [ 7.9249521, 47.4091772 ], + [ 7.923788, 47.4091733 ], + [ 7.923408, 47.4090521 ], + [ 7.9230746, 47.4088727 ], + [ 7.9230564999999995, 47.408863 ], + [ 7.9224915, 47.4085777 ], + [ 7.9223595, 47.4085111 ], + [ 7.9219068, 47.4086627 ], + [ 7.9215761, 47.4085987 ], + [ 7.9210512, 47.4084468 ], + [ 7.9209802, 47.4083991 ], + [ 7.9206521, 47.4081792 ], + [ 7.9204042, 47.4080987 ], + [ 7.9200805, 47.4079935 ], + [ 7.9196197999999995, 47.4077998 ], + [ 7.9193961, 47.4076918 ], + [ 7.9190293, 47.4075272 ], + [ 7.9187451, 47.4072663 ], + [ 7.9185348, 47.4071245 ], + [ 7.9183361, 47.407035 ], + [ 7.9181989, 47.4069708 ], + [ 7.9180525, 47.4067686 ], + [ 7.9178349, 47.4063826 ], + [ 7.9171151, 47.4060977 ], + [ 7.9170993, 47.4060884 ], + [ 7.9170967999999995, 47.4060504 ], + [ 7.9172842, 47.4058127 ], + [ 7.9173881999999995, 47.4056808 ], + [ 7.9174035, 47.4056175 ], + [ 7.91744, 47.4055873 ], + [ 7.9173439, 47.4055928 ], + [ 7.9172616, 47.4056397 ], + [ 7.9171916, 47.4057007 ], + [ 7.917079, 47.4057227 ], + [ 7.9167894, 47.4057132 ], + [ 7.9165299000000005, 47.405674 ], + [ 7.9163378, 47.4057858 ], + [ 7.9163289, 47.4057903 ], + [ 7.9162713, 47.4056895 ], + [ 7.9162153, 47.4057151 ], + [ 7.916148, 47.4057789 ], + [ 7.9160421, 47.4059456 ], + [ 7.9159393, 47.4060476 ], + [ 7.9157249, 47.4061409 ], + [ 7.9155925, 47.4062021 ], + [ 7.9155326, 47.4062544 ], + [ 7.9153955, 47.4064806 ], + [ 7.9152852, 47.4066075 ], + [ 7.915087, 47.4067701 ], + [ 7.9150832, 47.4067742 ], + [ 7.9148525, 47.4070156 ], + [ 7.9148111, 47.4070907 ], + [ 7.9147005, 47.4072972 ] + ], + [ + [ 7.9152587, 47.4112865 ], + [ 7.9154529, 47.4113088 ], + [ 7.9156521, 47.411262 ], + [ 7.9161451, 47.411112 ], + [ 7.9168223, 47.410964 ], + [ 7.9169509, 47.4109724 ], + [ 7.917097, 47.4110322 ], + [ 7.9171013, 47.4110323 ], + [ 7.9171111, 47.4111059 ], + [ 7.9171025, 47.4111082 ], + [ 7.9170044, 47.4112104 ], + [ 7.9169213, 47.4112772 ], + [ 7.9167771, 47.4113873 ], + [ 7.9167732, 47.4113904 ], + [ 7.916713, 47.4115669 ], + [ 7.9167055, 47.4115675 ], + [ 7.9163763, 47.4117333 ], + [ 7.9160391, 47.4119034 ], + [ 7.9160049, 47.4120989 ], + [ 7.9160093, 47.4121043 ], + [ 7.9157922, 47.4120552 ], + [ 7.9155663, 47.4120102 ], + [ 7.9153464, 47.4119977 ], + [ 7.9149284, 47.4117606 ], + [ 7.914982, 47.4114659 ], + [ 7.9152214999999995, 47.4113104 ], + [ 7.9152575, 47.4112901 ], + [ 7.9152587, 47.4112865 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns097", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Gipsgrube", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Gipsgrube", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Gipsgrube", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Gipsgrube", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8142907, 47.4245519 ], + [ 7.8128025999999995, 47.4243435 ], + [ 7.8120692, 47.4241912 ], + [ 7.8110112, 47.4241072 ], + [ 7.8109977, 47.4241296 ], + [ 7.8108457, 47.4244001 ], + [ 7.8107866, 47.4245879 ], + [ 7.8108068, 47.4245921 ], + [ 7.8107218, 47.4247718 ], + [ 7.8106649, 47.4248385 ], + [ 7.8106393, 47.4248451 ], + [ 7.8104761, 47.4252593 ], + [ 7.8104111, 47.4254725 ], + [ 7.8103077, 47.4259692 ], + [ 7.8102421, 47.4262592 ], + [ 7.8101097, 47.4267214 ], + [ 7.8099708, 47.4271109 ], + [ 7.8098735, 47.4273629 ], + [ 7.8105109, 47.4275884 ], + [ 7.8108746, 47.4272812 ], + [ 7.8112895, 47.4269289 ], + [ 7.8119496999999996, 47.4263692 ], + [ 7.8123081, 47.4260707 ], + [ 7.8127103, 47.4257436 ], + [ 7.8131257, 47.4254171 ], + [ 7.8136882, 47.4249874 ], + [ 7.8139315, 47.4248116 ], + [ 7.8142907, 47.4245519 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr128", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Rutenrain", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Rutenrain", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Rutenrain", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Rutenrain", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6546278, 47.504455899999996 ], + [ 7.6541678, 47.5047716 ], + [ 7.6541932, 47.5048231 ], + [ 7.6539179, 47.5050053 ], + [ 7.6537881, 47.5050847 ], + [ 7.6535938, 47.5052712 ], + [ 7.6537443, 47.5055283 ], + [ 7.653881, 47.5058441 ], + [ 7.6539271, 47.5060684 ], + [ 7.6539722999999995, 47.5060989 ], + [ 7.6543693, 47.5062232 ], + [ 7.6552384, 47.5065656 ], + [ 7.6558875, 47.5067284 ], + [ 7.6563683000000005, 47.506849 ], + [ 7.6565778, 47.5065529 ], + [ 7.6578826, 47.5054695 ], + [ 7.6583904, 47.5050057 ], + [ 7.6583173, 47.5049467 ], + [ 7.658205, 47.5047429 ], + [ 7.6580973, 47.5044957 ], + [ 7.6580083, 47.5043778 ], + [ 7.6578019, 47.504144 ], + [ 7.65759, 47.5038487 ], + [ 7.6574390999999995, 47.5037572 ], + [ 7.6573478999999995, 47.5035228 ], + [ 7.6571063, 47.5033193 ], + [ 7.6569851, 47.5031258 ], + [ 7.6567289, 47.5030447 ], + [ 7.6558411, 47.5030566 ], + [ 7.6554052, 47.5031798 ], + [ 7.65521, 47.5032923 ], + [ 7.6552836, 47.5035182 ], + [ 7.655182, 47.5038022 ], + [ 7.6550477, 47.5040778 ], + [ 7.6549881, 47.5042309 ], + [ 7.6546278, 47.504455899999996 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr026", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Waldstäge", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Waldstäge", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Waldstäge", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Waldstäge", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.1586789, 46.170042 ], + [ 6.1592664, 46.1700542 ], + [ 6.1595156, 46.170094 ], + [ 6.1607266, 46.1700199 ], + [ 6.1608082, 46.1700057 ], + [ 6.1621782, 46.169556 ], + [ 6.1631963, 46.1687764 ], + [ 6.1637077, 46.1677855 ], + [ 6.1636345, 46.1667341 ], + [ 6.1636211, 46.1666968 ], + [ 6.1631457, 46.1659195 ], + [ 6.1623479, 46.1652823 ], + [ 6.1613056, 46.1648477 ], + [ 6.1601211, 46.1646582 ], + [ 6.1598226, 46.1646765 ], + [ 6.1595121, 46.1646285 ], + [ 6.1580257, 46.164808 ], + [ 6.1567499, 46.1653676 ], + [ 6.1566932, 46.1654049 ], + [ 6.155819, 46.1662622 ], + [ 6.1554822, 46.1672866 ], + [ 6.155734, 46.1683226 ], + [ 6.1565362, 46.1692133 ], + [ 6.1565722, 46.1692399 ], + [ 6.1575341, 46.169757 ], + [ 6.1586789, 46.170042 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-42", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.0967042, 47.0468365 ], + [ 9.1021131, 47.0464658 ], + [ 9.1027202, 47.0463844 ], + [ 9.103269, 47.0462817 ], + [ 9.1036534, 47.0462109 ], + [ 9.1100781, 47.0451516 ], + [ 9.1105461, 47.0450958 ], + [ 9.1108971, 47.0450089 ], + [ 9.1110993, 47.0449253 ], + [ 9.1112526, 47.0448541 ], + [ 9.1114317, 47.0447938 ], + [ 9.1115623, 47.0447625 ], + [ 9.1117529, 47.0447808 ], + [ 9.1119615, 47.044821 ], + [ 9.1122045, 47.0448833 ], + [ 9.1123942, 47.0448732 ], + [ 9.1126747, 47.0448725 ], + [ 9.1128646, 47.0448682 ], + [ 9.1131632, 47.0448952 ], + [ 9.1133476, 47.0449531 ], + [ 9.1135397, 47.0449938 ], + [ 9.113798, 47.0450443 ], + [ 9.1138905, 47.0450816 ], + [ 9.1139701, 47.0451813 ], + [ 9.114002, 47.0453328 ], + [ 9.1140556, 47.0454162 ], + [ 9.1142403, 47.0454852 ], + [ 9.1146367, 47.0456398 ], + [ 9.1149183, 47.0458307 ], + [ 9.1151687, 47.0460505 ], + [ 9.1153807, 47.0461754 ], + [ 9.1156081, 47.0462659 ], + [ 9.1157535, 47.0463642 ], + [ 9.1158574, 47.0464521 ], + [ 9.1159613, 47.0465625 ], + [ 9.1161222, 47.0466321 ], + [ 9.1163854, 47.0467896 ], + [ 9.1167658, 47.0469557 ], + [ 9.1171026, 47.0471002 ], + [ 9.1173299, 47.0471853 ], + [ 9.1176225, 47.0472575 ], + [ 9.1178089, 47.0473491 ], + [ 9.1180219, 47.0474795 ], + [ 9.1182497, 47.0475815 ], + [ 9.1185343, 47.0476596 ], + [ 9.1188597, 47.0477255 ], + [ 9.1192176, 47.0477793 ], + [ 9.1196438, 47.0478879 ], + [ 9.1199973, 47.0480095 ], + [ 9.1202, 47.0481008 ], + [ 9.1204278, 47.0482027 ], + [ 9.1206571, 47.0483271 ], + [ 9.1208848, 47.0484235 ], + [ 9.1211435, 47.0484908 ], + [ 9.1215604, 47.0485603 ], + [ 9.1223189, 47.0481934 ], + [ 9.1225216, 47.0482846 ], + [ 9.1227578, 47.0483919 ], + [ 9.1229666, 47.0484379 ], + [ 9.1232142, 47.0484379 ], + [ 9.1234733, 47.0484884 ], + [ 9.1237146, 47.0485222 ], + [ 9.1239139, 47.0485571 ], + [ 9.1241542, 47.0485574 ], + [ 9.124433, 47.0485284 ], + [ 9.1246276, 47.0484394 ], + [ 9.1248632, 47.0483719 ], + [ 9.1251305, 47.0482643 ], + [ 9.1253406, 47.0481692 ], + [ 9.1254655, 47.0480086 ], + [ 9.1256871, 47.0479922 ], + [ 9.1259599, 47.0479803 ], + [ 9.1261565, 47.0479533 ], + [ 9.1262991, 47.0478317 ], + [ 9.1265509, 47.0475721 ], + [ 9.1266943, 47.0472925 ], + [ 9.1267968, 47.0470196 ], + [ 9.1268244, 47.0467483 ], + [ 9.1269962, 47.0465357 ], + [ 9.1272183, 47.0463503 ], + [ 9.1274338, 47.0460351 ], + [ 9.1276303, 47.0458221 ], + [ 9.1276394, 47.0456697 ], + [ 9.127563, 47.0454628 ], + [ 9.1274864, 47.0452502 ], + [ 9.1274881, 47.0449401 ], + [ 9.127524, 47.0446687 ], + [ 9.1276349, 47.0444011 ], + [ 9.1277125, 47.0441231 ], + [ 9.1278637, 47.043832 ], + [ 9.1280024, 47.0436373 ], + [ 9.1281691, 47.043498 ], + [ 9.1283211, 47.0433874 ], + [ 9.1285298, 47.0432755 ], + [ 9.1286201, 47.0430874 ], + [ 9.1286469, 47.042788 ], + [ 9.1287315, 47.0424985 ], + [ 9.1288424, 47.0422309 ], + [ 9.1290504, 47.0420964 ], + [ 9.1292909, 47.0419501 ], + [ 9.1296406, 47.0416657 ], + [ 9.1301212, 47.0413615 ], + [ 9.1307185, 47.0407389 ], + [ 9.1380896, 47.0391319 ], + [ 9.133877, 47.0342275 ], + [ 9.1250815, 47.0318468 ], + [ 9.1251334, 47.0315636 ], + [ 9.1251327, 47.0313832 ], + [ 9.1245179, 47.0290968 ], + [ 9.1244648, 47.0290303 ], + [ 9.1242888, 47.0289779 ], + [ 9.124162, 47.0289189 ], + [ 9.1240428, 47.0288426 ], + [ 9.1240061, 47.0287758 ], + [ 9.1240847, 47.0286838 ], + [ 9.1242192, 47.028568 ], + [ 9.1240542, 47.0283969 ], + [ 9.1239175, 47.0283098 ], + [ 9.1238, 47.0282618 ], + [ 9.1237384, 47.0281842 ], + [ 9.1237346, 47.0281167 ], + [ 9.1236905, 47.02805 ], + [ 9.1235721, 47.0279963 ], + [ 9.1233204, 47.0279175 ], + [ 9.1233207, 47.0277428 ], + [ 9.123315, 47.0276413 ], + [ 9.1233033, 47.027557 ], + [ 9.123381, 47.0274651 ], + [ 9.1234316, 47.0273229 ], + [ 9.123376, 47.0272001 ], + [ 9.1232563, 47.027107 ], + [ 9.1230885, 47.0270545 ], + [ 9.1229226, 47.0270357 ], + [ 9.1227744, 47.027056 ], + [ 9.1226039, 47.0270994 ], + [ 9.1224359, 47.0268833 ], + [ 9.1223898, 47.0266194 ], + [ 9.1223844, 47.0265011 ], + [ 9.122421, 47.02641 ], + [ 9.1225309, 47.0262948 ], + [ 9.122652, 47.0262243 ], + [ 9.1228131, 47.0261417 ], + [ 9.1228527, 47.0259378 ], + [ 9.1228828, 47.0257172 ], + [ 9.1228786, 47.0254523 ], + [ 9.1228618, 47.0252835 ], + [ 9.122861, 47.0251032 ], + [ 9.1229051, 47.0249894 ], + [ 9.1230262, 47.024761 ], + [ 9.1228744, 47.0245333 ], + [ 9.1227252, 47.0243394 ], + [ 9.1225894, 47.0241 ], + [ 9.1224909, 47.0239501 ], + [ 9.1224235, 47.023743 ], + [ 9.1220249, 47.0236957 ], + [ 9.1217325, 47.023629 ], + [ 9.1214884, 47.0235276 ], + [ 9.1212494, 47.0233808 ], + [ 9.1210666, 47.0231875 ], + [ 9.1208219, 47.0229112 ], + [ 9.1205016, 47.0226084 ], + [ 9.1202499, 47.0223435 ], + [ 9.1200242, 47.0221231 ], + [ 9.1198229, 47.0218909 ], + [ 9.1194904, 47.0216731 ], + [ 9.1192008, 47.0214823 ], + [ 9.1189448, 47.0213189 ], + [ 9.1186662, 47.02119 ], + [ 9.1183589, 47.0209884 ], + [ 9.1181023, 47.0208025 ], + [ 9.1178546, 47.020639 ], + [ 9.1176511, 47.0205197 ], + [ 9.117473, 47.0204278 ], + [ 9.1171776, 47.0202881 ], + [ 9.1170016, 47.0202357 ], + [ 9.1167988, 47.0201388 ], + [ 9.1165864, 47.0200252 ], + [ 9.1163236, 47.0198789 ], + [ 9.116219, 47.0197686 ], + [ 9.1161871, 47.0196171 ], + [ 9.1161722, 47.019481999999996 ], + [ 9.1160983, 47.019326 ], + [ 9.1158831, 47.0191504 ], + [ 9.1156443, 47.018981 ], + [ 9.1154286, 47.0187886 ], + [ 9.1151623, 47.0185804 ], + [ 9.114995, 47.0183587 ], + [ 9.1148594, 47.0181249 ], + [ 9.1147577, 47.0178962 ], + [ 9.1147168, 47.0177448 ], + [ 9.1146782, 47.017616 ], + [ 9.1146224, 47.0174876 ], + [ 9.1145502, 47.0173595 ], + [ 9.1144704, 47.0172543 ], + [ 9.114333, 47.0171446 ], + [ 9.1141735, 47.0170919 ], + [ 9.114041, 47.0170893 ], + [ 9.1136983, 47.0164881 ], + [ 9.1137899, 47.0161589 ], + [ 9.1138341, 47.0158873 ], + [ 9.1138378, 47.015611 ], + [ 9.1138313, 47.0154815 ], + [ 9.113651, 47.0153446 ], + [ 9.1133678, 47.0151199 ], + [ 9.1130188, 47.0148967 ], + [ 9.1125623, 47.0146815 ], + [ 9.1122305, 47.0144804 ], + [ 9.1119176, 47.0143352 ], + [ 9.1116138, 47.01419 ], + [ 9.1113869, 47.0141106 ], + [ 9.111162, 47.0140706 ], + [ 9.1128919, 47.0133094 ], + [ 9.1125014, 47.0132563 ], + [ 9.113172, 47.0129592 ], + [ 9.1125829, 47.0128936 ], + [ 9.1129326, 47.0127954 ], + [ 9.1121235, 47.0127913 ], + [ 9.1126392, 47.012695 ], + [ 9.1130397, 47.0126183 ], + [ 9.113448, 47.0125299 ], + [ 9.1131894, 47.0124626 ], + [ 9.1142964, 47.0123189 ], + [ 9.1138061, 47.0122568 ], + [ 9.1134154, 47.0121981 ], + [ 9.113233, 47.012174 ], + [ 9.1130778, 47.0122057 ], + [ 9.1128779, 47.0121764 ], + [ 9.1127035, 47.0121466 ], + [ 9.1125279, 47.0121055 ], + [ 9.1123785, 47.0120864 ], + [ 9.1121706, 47.0120629 ], + [ 9.1120212, 47.0120437 ], + [ 9.1118725, 47.0120471 ], + [ 9.1117106, 47.0121016 ], + [ 9.1115583, 47.0122009 ], + [ 9.1114724, 47.0122931 ], + [ 9.1113429, 47.0123581 ], + [ 9.1112532, 47.0123826 ], + [ 9.1111382, 47.0123852 ], + [ 9.111022, 47.0123767 ], + [ 9.1109279, 47.0123111 ], + [ 9.1107701, 47.0122864 ], + [ 9.1106061, 47.0123015 ], + [ 9.1105155, 47.0123205 ], + [ 9.1103719, 47.0124083 ], + [ 9.1101378, 47.0121768 ], + [ 9.1099478, 47.0120177 ], + [ 9.1097204, 47.0119213 ], + [ 9.1094892, 47.0119153 ], + [ 9.1091421, 47.0119119 ], + [ 9.1087865, 47.0118975 ], + [ 9.10848, 47.0118762 ], + [ 9.1083224, 47.0118573 ], + [ 9.1082055, 47.0116682 ], + [ 9.1079007, 47.0116752 ], + [ 9.107668, 47.0116467 ], + [ 9.1075097, 47.0116051 ], + [ 9.1073891, 47.0115064 ], + [ 9.1073826, 47.0113768 ], + [ 9.1072162, 47.0113412 ], + [ 9.1072179, 47.0112114 ], + [ 9.1070521, 47.0111927 ], + [ 9.1071373, 47.0110779 ], + [ 9.107182, 47.0109811 ], + [ 9.1071775, 47.0108909 ], + [ 9.1071341, 47.0108412 ], + [ 9.1070347, 47.0108435 ], + [ 9.1068481, 47.0108985 ], + [ 9.1066198, 47.01096 ], + [ 9.1064318, 47.0109925 ], + [ 9.1063411, 47.0110114 ], + [ 9.1064148, 47.0108181 ], + [ 9.1062415, 47.010822 ], + [ 9.1061958, 47.0107272 ], + [ 9.106057, 47.0107586 ], + [ 9.1059855, 47.0106531 ], + [ 9.1057625, 47.0106469 ], + [ 9.1055628, 47.0106232 ], + [ 9.1053691, 47.0105261 ], + [ 9.1052623, 47.0103706 ], + [ 9.1051986, 47.0102537 ], + [ 9.1051673, 47.0101191 ], + [ 9.1050766, 47.009952 ], + [ 9.1049716, 47.0098247 ], + [ 9.104873, 47.009669 ], + [ 9.104758, 47.0095138 ], + [ 9.1045355, 47.0093385 ], + [ 9.1035477, 47.0090564 ], + [ 9.1035393, 47.0088931 ], + [ 9.1035265, 47.0087974 ], + [ 9.1034423, 47.00876 ], + [ 9.1033168, 47.0087177 ], + [ 9.103165, 47.0089918 ], + [ 9.1030153, 47.0091474 ], + [ 9.1028868, 47.009218 ], + [ 9.1027107, 47.00916 ], + [ 9.1025101, 47.0091081 ], + [ 9.1023182, 47.0090674 ], + [ 9.1021294, 47.0092633 ], + [ 9.1021171, 47.0093425 ], + [ 9.1016331, 47.0094044 ], + [ 9.1017941, 47.0096656 ], + [ 9.1019093, 47.0098266 ], + [ 9.1020471, 47.0099475 ], + [ 9.1021359, 47.0100808 ], + [ 9.1022609, 47.0102697 ], + [ 9.1023414, 47.0103975 ], + [ 9.1024468, 47.010536 ], + [ 9.1026438, 47.0106839 ], + [ 9.1028723, 47.0107915 ], + [ 9.1030228, 47.0110023 ], + [ 9.1028251, 47.0115198 ], + [ 9.1021577, 47.011208 ], + [ 9.1020792, 47.0112999 ], + [ 9.1020004, 47.0112003 ], + [ 9.1019382, 47.0112862 ], + [ 9.1016916, 47.0111283 ], + [ 9.1016305, 47.0114116 ], + [ 9.1014626, 47.0113534 ], + [ 9.1014092, 47.0114336 ], + [ 9.101262, 47.0113015 ], + [ 9.1011872, 47.0114612 ], + [ 9.1009697, 47.0113928 ], + [ 9.1008096, 47.0115036 ], + [ 9.1004899, 47.0113755 ], + [ 9.1001026, 47.0112151 ], + [ 9.0998484, 47.0110743 ], + [ 9.0996175, 47.0109216 ], + [ 9.0994302, 47.0107906 ], + [ 9.0993263, 47.0107027 ], + [ 9.0991541, 47.0107178 ], + [ 9.0991331, 47.0109664 ], + [ 9.0988572, 47.0108994 ], + [ 9.0986218, 47.0108089 ], + [ 9.0984842, 47.0106937 ], + [ 9.098252, 47.010682 ], + [ 9.09819, 47.010937 ], + [ 9.0978621, 47.0108092 ], + [ 9.0979913, 47.011263 ], + [ 9.0980528, 47.0116844 ], + [ 9.0977157, 47.0117089 ], + [ 9.0976432, 47.0115697 ], + [ 9.0974363, 47.0115519 ], + [ 9.0971224, 47.0115589 ], + [ 9.0969323, 47.011552 ], + [ 9.0968623, 47.0114689 ], + [ 9.0967929, 47.0114029 ], + [ 9.0967003, 47.0113598 ], + [ 9.0965843, 47.0113568 ], + [ 9.0964306, 47.0114111 ], + [ 9.0962336, 47.0114493 ], + [ 9.0959444, 47.0114278 ], + [ 9.0957652, 47.0114825 ], + [ 9.0957291, 47.0115905 ], + [ 9.0957589, 47.0117025 ], + [ 9.0958238, 47.0118364 ], + [ 9.0958367, 47.0119319 ], + [ 9.0958332, 47.0120336 ], + [ 9.0957299, 47.0121204 ], + [ 9.0955108, 47.0120295 ], + [ 9.095311, 47.0118143 ], + [ 9.0951863, 47.0116365 ], + [ 9.0951216, 47.0114858 ], + [ 9.0951235, 47.0113618 ], + [ 9.0951694, 47.0112761 ], + [ 9.0951083, 47.0112155 ], + [ 9.0950365, 47.0110987 ], + [ 9.0949867, 47.010925 ], + [ 9.0949304, 47.0107798 ], + [ 9.0948847, 47.010685 ], + [ 9.0947559, 47.0105863 ], + [ 9.0945179, 47.0104395 ], + [ 9.0943805, 47.0103298 ], + [ 9.0942842, 47.0102192 ], + [ 9.0942215, 47.0101079 ], + [ 9.0940027, 47.0100226 ], + [ 9.093655, 47.0098387 ], + [ 9.0933849, 47.0097153 ], + [ 9.0931794, 47.0095564 ], + [ 9.0929869, 47.0093407 ], + [ 9.0928963, 47.0091738 ], + [ 9.0927483, 47.0090135 ], + [ 9.0925198, 47.0088834 ], + [ 9.0923583, 47.0087911 ], + [ 9.0921308, 47.0086893 ], + [ 9.091934, 47.008547 ], + [ 9.0918132, 47.0084426 ], + [ 9.0916139, 47.0082442 ], + [ 9.0915318, 47.0080882 ], + [ 9.0911499, 47.0077251 ], + [ 9.0910326, 47.0078427 ], + [ 9.0908896, 47.0080277 ], + [ 9.090813, 47.008185 ], + [ 9.0907115, 47.008331 ], + [ 9.0907661, 47.0085287 ], + [ 9.0903866, 47.0085655 ], + [ 9.0903146, 47.008469 ], + [ 9.0902335, 47.0084009 ], + [ 9.0901112, 47.0083266 ], + [ 9.0899256, 47.0080658 ], + [ 9.0897639, 47.0079406 ], + [ 9.0895175, 47.0078937 ], + [ 9.0892861, 47.0079597 ], + [ 9.0891432, 47.0081505 ], + [ 9.0891715, 47.0084044 ], + [ 9.0891911, 47.0086921 ], + [ 9.0891809, 47.0088161 ], + [ 9.0889768, 47.0087018 ], + [ 9.08873, 47.0087227 ], + [ 9.0886119, 47.0088909 ], + [ 9.0885672, 47.0091217 ], + [ 9.0885622, 47.0093868 ], + [ 9.0876241, 47.0094081 ], + [ 9.0874331, 47.0090007 ], + [ 9.0872654, 47.0086781 ], + [ 9.0870467, 47.0084905 ], + [ 9.0865458, 47.0084022 ], + [ 9.0861686, 47.0083542 ], + [ 9.0856986, 47.0083621 ], + [ 9.0856105, 47.0082205 ], + [ 9.0854563, 47.008101 ], + [ 9.0852602, 47.0080318 ], + [ 9.0850628, 47.0080022 ], + [ 9.0847414, 47.008028 ], + [ 9.0845189, 47.008066 ], + [ 9.0843712, 47.0080197 ], + [ 9.0842188, 47.0078212 ], + [ 9.0839917, 47.0075996 ], + [ 9.0836981, 47.0074621 ], + [ 9.0834194, 47.0073811 ], + [ 9.0830982, 47.0073901 ], + [ 9.082769, 47.0073764 ], + [ 9.0827578, 47.0075736 ], + [ 9.0826827, 47.0077797 ], + [ 9.0828921, 47.0077983 ], + [ 9.0831461, 47.0079335 ], + [ 9.0833261, 47.0080648 ], + [ 9.083409, 47.008249 ], + [ 9.0834421, 47.0084174 ], + [ 9.0834835, 47.0085856 ], + [ 9.08353, 47.0087085 ], + [ 9.0836268, 47.008836 ], + [ 9.0837802, 47.0089341 ], + [ 9.0839007, 47.0090272 ], + [ 9.0839787, 47.0091044 ], + [ 9.0840074, 47.0091827 ], + [ 9.0839454, 47.0092799 ], + [ 9.0838759, 47.0093717 ], + [ 9.083879, 47.0094449 ], + [ 9.0838996, 47.0095291 ], + [ 9.0839687, 47.0095839 ], + [ 9.084066, 47.0097283 ], + [ 9.0841336, 47.0099185 ], + [ 9.084158, 47.0100984 ], + [ 9.0841908, 47.0102555 ], + [ 9.0842474, 47.0104122 ], + [ 9.0843558, 47.0105957 ], + [ 9.0844751, 47.0108412 ], + [ 9.0845955, 47.0111203 ], + [ 9.0846883, 47.0113325 ], + [ 9.0846962, 47.0115071 ], + [ 9.0846637, 47.0116826 ], + [ 9.0845719, 47.0118256 ], + [ 9.0843871, 47.011937 ], + [ 9.0841452, 47.0120664 ], + [ 9.0839689, 47.0121606 ], + [ 9.0838982, 47.0122411 ], + [ 9.0838948, 47.0123427 ], + [ 9.0838568, 47.0124169 ], + [ 9.0837627, 47.0125148 ], + [ 9.0836641, 47.0127031 ], + [ 9.0836134, 47.0128452 ], + [ 9.0836034, 47.0129751 ], + [ 9.0838341, 47.0133138 ], + [ 9.0840702, 47.0135849 ], + [ 9.08434, 47.0138832 ], + [ 9.0845146, 47.0140822 ], + [ 9.0846791, 47.014242 ], + [ 9.0847449, 47.014404 ], + [ 9.084754, 47.0145955 ], + [ 9.0846586, 47.0148346 ], + [ 9.0846185, 47.0150272 ], + [ 9.0845524, 47.0152034 ], + [ 9.0845535, 47.0154008 ], + [ 9.0845769, 47.0155468 ], + [ 9.0846429, 47.0157144 ], + [ 9.0847494, 47.0158643 ], + [ 9.0849288, 47.0160012 ], + [ 9.0851661, 47.0161255 ], + [ 9.0853796, 47.0162786 ], + [ 9.085676, 47.0164241 ], + [ 9.0859713, 47.0165641 ], + [ 9.0862083, 47.0166771 ], + [ 9.0863115, 47.0167706 ], + [ 9.0863611, 47.0169386 ], + [ 9.0862921, 47.0170474 ], + [ 9.0861659, 47.0171686 ], + [ 9.085893, 47.0173326 ], + [ 9.0853636, 47.0176547 ], + [ 9.0851667, 47.0178565 ], + [ 9.0850226, 47.0181192 ], + [ 9.084889, 47.0184266 ], + [ 9.0847373, 47.0187062 ], + [ 9.0846623, 47.0188603 ], + [ 9.0845802, 47.0190537 ], + [ 9.0844873, 47.019349 ], + [ 9.0843922, 47.0195992 ], + [ 9.0842569, 47.0198787 ], + [ 9.0841035, 47.0201301 ], + [ 9.083924, 47.0203372 ], + [ 9.0838053, 47.0206218 ], + [ 9.0837124, 47.020917 ], + [ 9.0836262, 47.0211896 ], + [ 9.0835621, 47.0215632 ], + [ 9.083571, 47.0219352 ], + [ 9.0835863, 47.0222449 ], + [ 9.0836, 47.0225321 ], + [ 9.0835789, 47.0227806 ], + [ 9.0834756, 47.0230311 ], + [ 9.0833444, 47.0232315 ], + [ 9.0831052, 47.0233947 ], + [ 9.0827183, 47.0235951 ], + [ 9.0823365, 47.023722 ], + [ 9.0822919, 47.0240106 ], + [ 9.0822192, 47.0243732 ], + [ 9.0822051, 47.0246103 ], + [ 9.0822736, 47.0248342 ], + [ 9.0823298, 47.0251375 ], + [ 9.0824328, 47.0253833 ], + [ 9.0825045, 47.0256861 ], + [ 9.0826533, 47.0260323 ], + [ 9.0827838, 47.0263452 ], + [ 9.0828703, 47.0265912 ], + [ 9.0829162, 47.0268553 ], + [ 9.0829418, 47.0270464 ], + [ 9.0829545, 47.0274859 ], + [ 9.0828988, 47.027707 ], + [ 9.082797, 47.0279799 ], + [ 9.0829632, 47.02801 ], + [ 9.0832457, 47.0280488 ], + [ 9.0836376, 47.0281189 ], + [ 9.0838795, 47.0281756 ], + [ 9.0840878, 47.0282103 ], + [ 9.0842929, 47.0281944 ], + [ 9.0846758, 47.0280787 ], + [ 9.0850905, 47.0279508 ], + [ 9.0853836, 47.027854 ], + [ 9.0856527, 47.0277803 ], + [ 9.085839, 47.027714 ], + [ 9.0861079, 47.0276347 ], + [ 9.0863265, 47.0275509 ], + [ 9.0867423, 47.0274344 ], + [ 9.0871592, 47.0273516 ], + [ 9.0875212, 47.0273322 ], + [ 9.0878595, 47.0273133 ], + [ 9.0881801, 47.0272835 ], + [ 9.0885179, 47.0272759 ], + [ 9.0885, 47.0274173 ], + [ 9.088541, 47.0275741 ], + [ 9.0886115, 47.0276741 ], + [ 9.088698, 47.0277567 ], + [ 9.0885307, 47.0278789 ], + [ 9.0882632, 47.0278173 ], + [ 9.0879889, 47.0277783 ], + [ 9.0877006, 47.0281345 ], + [ 9.08806, 47.0282166 ], + [ 9.0879891, 47.0282915 ], + [ 9.087808, 47.0283125 ], + [ 9.0876303, 47.0283898 ], + [ 9.0875772, 47.0284812 ], + [ 9.087527, 47.0286403 ], + [ 9.0875323, 47.0287584 ], + [ 9.0875159, 47.0289224 ], + [ 9.0874695, 47.0289911 ], + [ 9.087368, 47.0291118 ], + [ 9.0872074, 47.0292113 ], + [ 9.0870725, 47.0293158 ], + [ 9.0870443, 47.0294179 ], + [ 9.087057, 47.0295078 ], + [ 9.0871092, 47.0295744 ], + [ 9.087254, 47.0296557 ], + [ 9.0874757, 47.0294589 ], + [ 9.0878325, 47.0295072 ], + [ 9.0877077, 47.029995 ], + [ 9.0875758, 47.0301727 ], + [ 9.087421, 47.0303792 ], + [ 9.0872239, 47.0305754 ], + [ 9.0870638, 47.0306918 ], + [ 9.0869227, 47.030836 ], + [ 9.086771, 47.0309578 ], + [ 9.0866506, 47.0310281 ], + [ 9.086584, 47.0311875 ], + [ 9.0865336, 47.0313409 ], + [ 9.0864651, 47.0314664 ], + [ 9.086338, 47.0315595 ], + [ 9.0862608, 47.0316684 ], + [ 9.0861847, 47.0318167 ], + [ 9.0860873, 47.0320163 ], + [ 9.0860151, 47.0322378 ], + [ 9.0860072, 47.0324072 ], + [ 9.0860468, 47.0325472 ], + [ 9.0860531, 47.0326711 ], + [ 9.0860748, 47.032789 ], + [ 9.0861277, 47.0328498 ], + [ 9.085989, 47.0328868 ], + [ 9.0858919, 47.0329398 ], + [ 9.0858249, 47.0330878 ], + [ 9.0857658, 47.0332244 ], + [ 9.0857143, 47.0333666 ], + [ 9.0856796, 47.033497 ], + [ 9.0857979, 47.0335452 ], + [ 9.0859829, 47.0336255 ], + [ 9.0861836, 47.0336774 ], + [ 9.0860731, 47.0337757 ], + [ 9.0858877, 47.0338702 ], + [ 9.0857, 47.0339194 ], + [ 9.0855043, 47.0339746 ], + [ 9.0853408, 47.0340065 ], + [ 9.085197, 47.0341168 ], + [ 9.0849199, 47.0343599 ], + [ 9.0846245, 47.0345696 ], + [ 9.0844022, 47.0347493 ], + [ 9.0842191, 47.0348945 ], + [ 9.084061, 47.0350503 ], + [ 9.0839368, 47.0352109 ], + [ 9.0838781, 47.0353588 ], + [ 9.0837388, 47.0355649 ], + [ 9.083678, 47.0356735 ], + [ 9.0840452, 47.0360881 ], + [ 9.084212, 47.0359489 ], + [ 9.0843266, 47.0359294 ], + [ 9.0844347, 47.0359439 ], + [ 9.0844888, 47.0360442 ], + [ 9.0843299, 47.0361719 ], + [ 9.0841114, 47.0362613 ], + [ 9.083961, 47.0364001 ], + [ 9.0839043, 47.0365874 ], + [ 9.0838873, 47.036757 ], + [ 9.0838939, 47.0368921 ], + [ 9.0839502, 47.0370374 ], + [ 9.083883, 47.0371799 ], + [ 9.0837651, 47.0373066 ], + [ 9.083649, 47.0374615 ], + [ 9.0835905, 47.0376206 ], + [ 9.0836068, 47.0378007 ], + [ 9.0836805, 47.0379514 ], + [ 9.0837522, 47.0380625 ], + [ 9.0839555, 47.0381763 ], + [ 9.0835218, 47.0385977 ], + [ 9.0833952, 47.0388937 ], + [ 9.0833023, 47.039189 ], + [ 9.0832342, 47.0394894 ], + [ 9.082666, 47.0393612 ], + [ 9.0821775, 47.0393384 ], + [ 9.0817889, 47.0393245 ], + [ 9.081443, 47.0393379 ], + [ 9.081262, 47.0393646 ], + [ 9.081087, 47.0395039 ], + [ 9.0808847, 47.0395873 ], + [ 9.0806476, 47.0396322 ], + [ 9.0803676, 47.0396498 ], + [ 9.0801796, 47.0396878 ], + [ 9.0800349, 47.03977 ], + [ 9.0798737, 47.0398526 ], + [ 9.0796518, 47.0398857 ], + [ 9.0793063, 47.0399105 ], + [ 9.0790306, 47.0400125 ], + [ 9.0777852, 47.0405762 ], + [ 9.0774464, 47.0407416 ], + [ 9.077279, 47.0408637 ], + [ 9.0771105, 47.0409747 ], + [ 9.0769084, 47.0410639 ], + [ 9.0765351, 47.0412019 ], + [ 9.0763507, 47.0413076 ], + [ 9.0761267, 47.0414591 ], + [ 9.0760169, 47.04158 ], + [ 9.0759564, 47.0416998 ], + [ 9.0759042, 47.041825 ], + [ 9.0759103, 47.0419432 ], + [ 9.0758832, 47.0420791 ], + [ 9.0758672, 47.0422544 ], + [ 9.0758411, 47.0423959 ], + [ 9.0757624, 47.0424879 ], + [ 9.075609, 47.0425533 ], + [ 9.0754954, 47.0426067 ], + [ 9.0753844, 47.0426881 ], + [ 9.0753056, 47.0427744 ], + [ 9.0752303, 47.0429227 ], + [ 9.0751393, 47.0430939 ], + [ 9.0750539, 47.0432086 ], + [ 9.0748745, 47.0432577 ], + [ 9.0746604, 47.0432794 ], + [ 9.074337, 47.0432472 ], + [ 9.0741775, 47.043358 ], + [ 9.0739534, 47.0435095 ], + [ 9.0737679, 47.043604 ], + [ 9.0741441, 47.043883 ], + [ 9.0745267, 47.0439364 ], + [ 9.0748063, 47.0439077 ], + [ 9.0750854, 47.043862 ], + [ 9.0753305, 47.0438056 ], + [ 9.07558, 47.0436817 ], + [ 9.0758898, 47.0435901 ], + [ 9.0761841, 47.0435272 ], + [ 9.0764399, 47.043527 ], + [ 9.0766786, 47.0435048 ], + [ 9.0768253, 47.0434619 ], + [ 9.0769947, 47.0433792 ], + [ 9.077172, 47.0432851 ], + [ 9.0773267, 47.0432308 ], + [ 9.0776296, 47.0431846 ], + [ 9.0775982, 47.0433938 ], + [ 9.0775664, 47.0435919 ], + [ 9.0776015, 47.0437998 ], + [ 9.0775598, 47.0439699 ], + [ 9.0774931, 47.0441293 ], + [ 9.0773555, 47.0443635 ], + [ 9.077234, 47.0445861 ], + [ 9.0771275, 47.0447633 ], + [ 9.0769528, 47.0449138 ], + [ 9.0768163, 47.0449958 ], + [ 9.0767576, 47.0451494 ], + [ 9.0767726, 47.0452901 ], + [ 9.0768762, 47.0453949 ], + [ 9.0770999, 47.0455815 ], + [ 9.0771811, 47.0457094 ], + [ 9.0772211, 47.0458608 ], + [ 9.0773116, 47.0460221 ], + [ 9.0776579, 47.0461835 ], + [ 9.0779905, 47.0464073 ], + [ 9.0783365, 47.0465573 ], + [ 9.0787195, 47.0466277 ], + [ 9.079237, 47.0467345 ], + [ 9.079837, 47.0468506 ], + [ 9.0804641, 47.0469944 ], + [ 9.081066, 47.0471444 ], + [ 9.0812926, 47.047049 ], + [ 9.0815036, 47.0469822 ], + [ 9.081668, 47.0469503 ], + [ 9.0819324, 47.0469613 ], + [ 9.0822056, 47.0469665 ], + [ 9.0823444, 47.0469295 ], + [ 9.0824819, 47.0468813 ], + [ 9.0825611, 47.0468062 ], + [ 9.0826484, 47.046731 ], + [ 9.0827382, 47.0467064 ], + [ 9.082814, 47.0467385 ], + [ 9.082742, 47.0469657 ], + [ 9.0836562, 47.0467308 ], + [ 9.0846277, 47.046489 ], + [ 9.085148, 47.0463138 ], + [ 9.0856361, 47.0461619 ], + [ 9.0854512, 47.0464367 ], + [ 9.0854851, 47.0466277 ], + [ 9.0855245, 47.046762 ], + [ 9.0855666, 47.0469528 ], + [ 9.0861027, 47.0465967 ], + [ 9.0861589, 47.0467365 ], + [ 9.0865069, 47.0465764 ], + [ 9.0865064, 47.0469091 ], + [ 9.0866622, 47.0468943 ], + [ 9.0864475, 47.0482579 ], + [ 9.0875453, 47.0482444 ], + [ 9.0876436, 47.048231 ], + [ 9.0877312, 47.0481613 ], + [ 9.0878101, 47.0480806 ], + [ 9.0878814, 47.048017 ], + [ 9.0879716, 47.0480093 ], + [ 9.0880662, 47.0480861 ], + [ 9.0881526, 47.0481687 ], + [ 9.0882365, 47.0481951 ], + [ 9.0883922, 47.0481746 ], + [ 9.0885629, 47.0481087 ], + [ 9.0887654, 47.0480309 ], + [ 9.0888707, 47.0479778 ], + [ 9.0891901, 47.047931 ], + [ 9.0895833, 47.0478489 ], + [ 9.0899345, 47.0477676 ], + [ 9.0903498, 47.0476568 ], + [ 9.0905052, 47.047625 ], + [ 9.0906351, 47.0475714 ], + [ 9.0908446, 47.047454 ], + [ 9.0910804, 47.0473922 ], + [ 9.0913604, 47.0473746 ], + [ 9.0916638, 47.047317 ], + [ 9.0918928, 47.0472724 ], + [ 9.0921548, 47.0472326 ], + [ 9.092494, 47.0472418 ], + [ 9.0928326, 47.0472285 ], + [ 9.0931129, 47.0472222 ], + [ 9.0932501, 47.0471627 ], + [ 9.0935289, 47.0471057 ], + [ 9.0936354, 47.0470919 ], + [ 9.0938727, 47.0470528 ], + [ 9.0940864, 47.0470198 ], + [ 9.0943094, 47.0470204 ], + [ 9.0945322, 47.0470153 ], + [ 9.0947548, 47.0470047 ], + [ 9.0950293, 47.0470492 ], + [ 9.0952853, 47.0470546 ], + [ 9.0956409, 47.0470636 ], + [ 9.0958144, 47.0470596 ], + [ 9.0960617, 47.0470483 ], + [ 9.0962661, 47.04701 ], + [ 9.0964848, 47.046926 ], + [ 9.0967042, 47.0468365 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "JBG0030", + "country" : "CHE", + "name" : [ + { + "text" : "Eidgenössisches Jagdbanngebiet Schilt", + "lang" : "de-CH" + }, + { + "text" : "District franc fédéral Schilt", + "lang" : "fr-CH" + }, + { + "text" : "Bandita federale di caccia Schilt", + "lang" : "it-CH" + }, + { + "text" : "Federal Game Reserve Schilt", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.6028875, 46.8877053 ], + [ 8.6027612, 46.8877706 ], + [ 8.6028437, 46.8877746 ], + [ 8.6029319, 46.8877758 ], + [ 8.6034196, 46.8878009 ], + [ 8.6039039, 46.8878472 ], + [ 8.6043206, 46.887905 ], + [ 8.6045361, 46.8879467 ], + [ 8.60482, 46.8880058 ], + [ 8.6050974, 46.888071 ], + [ 8.6053713, 46.8881428 ], + [ 8.6055369, 46.8881894 ], + [ 8.6059354, 46.8883077 ], + [ 8.6061987, 46.8883907 ], + [ 8.6065951, 46.8885193 ], + [ 8.6066026, 46.8885059 ], + [ 8.6066335, 46.8885162 ], + [ 8.6067023, 46.8885393 ], + [ 8.606753, 46.8885563 ], + [ 8.6067456, 46.8885682 ], + [ 8.607119, 46.8886901 ], + [ 8.6078772, 46.888938 ], + [ 8.6084099, 46.8891117 ], + [ 8.6084329, 46.8891192 ], + [ 8.6097536, 46.8895499 ], + [ 8.610593099999999, 46.8898237 ], + [ 8.6108578, 46.8899108 ], + [ 8.6108586, 46.8899111 ], + [ 8.6111113, 46.8899936 ], + [ 8.6114893, 46.8901173 ], + [ 8.6116788, 46.8901783 ], + [ 8.6120588, 46.8902989 ], + [ 8.6121941, 46.8903402 ], + [ 8.6123301, 46.8903806 ], + [ 8.6124666, 46.8904201 ], + [ 8.6126037, 46.8904586 ], + [ 8.6127413, 46.8904962 ], + [ 8.6128671, 46.8905286 ], + [ 8.6129937, 46.8905596 ], + [ 8.613121, 46.8905892 ], + [ 8.613249, 46.8906173 ], + [ 8.613377700000001, 46.8906439 ], + [ 8.6135377, 46.8906755 ], + [ 8.6136991, 46.8907035 ], + [ 8.6138617, 46.890728 ], + [ 8.6140254, 46.8907487 ], + [ 8.6141958, 46.8907672 ], + [ 8.614197, 46.8907619 ], + [ 8.6143043, 46.8907726 ], + [ 8.614328, 46.8907396 ], + [ 8.6143268, 46.8907385 ], + [ 8.6143171, 46.8907307 ], + [ 8.6142968, 46.8907141 ], + [ 8.6142904, 46.8907103 ], + [ 8.614283799999999, 46.8907068 ], + [ 8.6142768, 46.8907036 ], + [ 8.6142695, 46.8907006 ], + [ 8.6142619, 46.890698 ], + [ 8.6142542, 46.8906957 ], + [ 8.6142462, 46.8906938 ], + [ 8.6142381, 46.8906922 ], + [ 8.6142298, 46.890691 ], + [ 8.6142215, 46.8906901 ], + [ 8.6140548, 46.8906593 ], + [ 8.613925, 46.8906398 ], + [ 8.6136515, 46.8906012 ], + [ 8.6135116, 46.890578 ], + [ 8.613379, 46.8905547 ], + [ 8.613256, 46.8905286 ], + [ 8.6131232, 46.8904992 ], + [ 8.6129986, 46.8904699 ], + [ 8.6128328, 46.8904273 ], + [ 8.6123643, 46.8903052 ], + [ 8.6120951, 46.8902289 ], + [ 8.6118947, 46.8901686 ], + [ 8.6116339, 46.8900878 ], + [ 8.6113894, 46.8900082 ], + [ 8.6111143, 46.8899174 ], + [ 8.6107982, 46.8898187 ], + [ 8.6099748, 46.889549 ], + [ 8.6094694, 46.8893772 ], + [ 8.6092629, 46.8893081 ], + [ 8.6086608, 46.8891117 ], + [ 8.6086485, 46.8891073 ], + [ 8.6086339, 46.8891019 ], + [ 8.6086014, 46.8890905 ], + [ 8.6086553, 46.8890764 ], + [ 8.6088662, 46.8890298 ], + [ 8.609033, 46.8889695 ], + [ 8.6091825, 46.8889156 ], + [ 8.6092773, 46.8888939 ], + [ 8.609552, 46.8888068 ], + [ 8.6097029, 46.8887633 ], + [ 8.6098546, 46.8887326 ], + [ 8.6099518, 46.8886927 ], + [ 8.6100726, 46.8886324 ], + [ 8.6101481, 46.8885791 ], + [ 8.6101968, 46.888511 ], + [ 8.6101076, 46.8884677 ], + [ 8.6100479, 46.8884866 ], + [ 8.6099386, 46.8885424 ], + [ 8.6098433, 46.8885913 ], + [ 8.6097618, 46.888622 ], + [ 8.6096085, 46.8886511 ], + [ 8.6093376, 46.8887354 ], + [ 8.6091288, 46.8887959 ], + [ 8.6089959, 46.8888266 ], + [ 8.608821, 46.8888932 ], + [ 8.6086917, 46.8889238 ], + [ 8.6085922, 46.8889546 ], + [ 8.6084232, 46.8890299 ], + [ 8.6079815, 46.8888924 ], + [ 8.6074544, 46.8887223 ], + [ 8.6069537, 46.8885569 ], + [ 8.6068006, 46.8885155 ], + [ 8.6067707, 46.8885096 ], + [ 8.6070535, 46.8883693 ], + [ 8.6087838, 46.8875334 ], + [ 8.6087929, 46.8875415 ], + [ 8.6088598, 46.8875145 ], + [ 8.6088928, 46.8874911 ], + [ 8.6089213, 46.8874898 ], + [ 8.6089499, 46.8874899 ], + [ 8.6089785, 46.8874913 ], + [ 8.6090068, 46.887494 ], + [ 8.6090348, 46.887498 ], + [ 8.6090623, 46.8875033 ], + [ 8.6090893, 46.8875099 ], + [ 8.6091155, 46.8875177 ], + [ 8.6095157, 46.8876124 ], + [ 8.6097797, 46.8876797 ], + [ 8.6100354, 46.8877439 ], + [ 8.6107783, 46.8879261 ], + [ 8.6112237, 46.8880357 ], + [ 8.611684, 46.8881493 ], + [ 8.6122725, 46.8882969 ], + [ 8.6132019, 46.8885286 ], + [ 8.6144667, 46.8888427 ], + [ 8.6150324, 46.8889879 ], + [ 8.6150633, 46.8889302 ], + [ 8.6143006, 46.8887407 ], + [ 8.6139798, 46.8886609 ], + [ 8.6135737, 46.88856 ], + [ 8.612139299999999, 46.8881989 ], + [ 8.610676699999999, 46.8878373 ], + [ 8.6091807, 46.8874674 ], + [ 8.6093094, 46.8872792 ], + [ 8.6095501, 46.8871691 ], + [ 8.6099069, 46.8869974 ], + [ 8.6102938, 46.8868094 ], + [ 8.6106011, 46.8866555 ], + [ 8.6113176, 46.8863106 ], + [ 8.6114541, 46.8862848 ], + [ 8.6116054, 46.8862281 ], + [ 8.6117973, 46.8861442 ], + [ 8.611892600000001, 46.8861067 ], + [ 8.6119994, 46.8860334 ], + [ 8.6121448, 46.8859189 ], + [ 8.6123136, 46.8858364 ], + [ 8.6126226, 46.8856867 ], + [ 8.6129386, 46.8855325 ], + [ 8.6132785, 46.8853722 ], + [ 8.613571199999999, 46.885225 ], + [ 8.6137444, 46.8851401 ], + [ 8.6140045, 46.8850153 ], + [ 8.6142115, 46.8849129 ], + [ 8.614808, 46.8846247 ], + [ 8.614992, 46.884549 ], + [ 8.6150273, 46.8845225 ], + [ 8.615025, 46.884521 ], + [ 8.6149912, 46.8844982 ], + [ 8.6149659, 46.8844811 ], + [ 8.6149368, 46.8844536 ], + [ 8.6148993, 46.8844282 ], + [ 8.61382, 46.884956 ], + [ 8.612997, 46.8853593 ], + [ 8.6120437, 46.8858241 ], + [ 8.6120663, 46.8858437 ], + [ 8.611489, 46.8861219 ], + [ 8.6108384, 46.8864389 ], + [ 8.6104697, 46.8865528 ], + [ 8.6099595, 46.8868078 ], + [ 8.6096733, 46.8869795 ], + [ 8.6087427, 46.8874373 ], + [ 8.6086981, 46.887414 ], + [ 8.6086977, 46.8874138 ], + [ 8.6086656, 46.8873957 ], + [ 8.6086098, 46.8873676 ], + [ 8.6085561, 46.8873467 ], + [ 8.6085371, 46.8873366 ], + [ 8.6085289, 46.8873302 ], + [ 8.6085203, 46.887319 ], + [ 8.6085123, 46.8873029 ], + [ 8.6084912, 46.8872751 ], + [ 8.6084605, 46.8872519 ], + [ 8.6084287, 46.8872347 ], + [ 8.6084014, 46.8872225 ], + [ 8.608378, 46.8872082 ], + [ 8.6083677, 46.8871983 ], + [ 8.6083627, 46.8871875 ], + [ 8.6083451, 46.8871609 ], + [ 8.6083175, 46.8871355 ], + [ 8.6082842, 46.8871169 ], + [ 8.6082588, 46.8870994 ], + [ 8.6082407, 46.8870832 ], + [ 8.6081657, 46.8870275 ], + [ 8.6081199, 46.8870035 ], + [ 8.6081089, 46.8869955 ], + [ 8.6080936, 46.8869822 ], + [ 8.6080899, 46.8869797 ], + [ 8.6080793, 46.8869724 ], + [ 8.6080574, 46.8869575 ], + [ 8.6080339, 46.8869444 ], + [ 8.6079586, 46.8869206 ], + [ 8.6078802, 46.8868911 ], + [ 8.607781899999999, 46.8868624 ], + [ 8.6077733, 46.8868892 ], + [ 8.6077663, 46.8869097 ], + [ 8.6071972, 46.8868256 ], + [ 8.6069624, 46.886774 ], + [ 8.6065986, 46.8867129 ], + [ 8.6065465, 46.8868872 ], + [ 8.6059947, 46.8868123 ], + [ 8.6060291, 46.8866917 ], + [ 8.6059811, 46.8866719 ], + [ 8.6058728, 46.8866527 ], + [ 8.6056745, 46.8866133 ], + [ 8.6055691, 46.8865877 ], + [ 8.6055453, 46.8865841 ], + [ 8.6055368, 46.8865832 ], + [ 8.6054798, 46.8867474 ], + [ 8.6053458, 46.8871317 ], + [ 8.6052999, 46.8870955 ], + [ 8.6052121, 46.887147 ], + [ 8.6042493, 46.8877111 ], + [ 8.603654, 46.8875823 ], + [ 8.6031582, 46.8875535 ], + [ 8.6030204, 46.8876308 ], + [ 8.6028875, 46.8877053 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "KTUR0-1", + "country" : "CHE", + "name" : [ + { + "text" : "Reussdelta", + "lang" : "de-CH" + }, + { + "text" : "Reussdelta", + "lang" : "fr-CH" + }, + { + "text" : "Reussdelta", + "lang" : "it-CH" + }, + { + "text" : "Reussdelta", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Uri", + "lang" : "de-CH" + }, + { + "text" : "Canton d'Uri", + "lang" : "fr-CH" + }, + { + "text" : "Cantone Uri", + "lang" : "it-CH" + }, + { + "text" : "Canton Uri", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Amt für Raumentwicklung", + "lang" : "de-CH" + }, + { + "text" : "Office du développement territorial", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio per lo sviluppo territoriale", + "lang" : "it-CH" + }, + { + "text" : "Office of Spatial Development", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ur.ch/aemter/847", + "email" : "raumplanung@ur.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.4895847, 47.4278705 ], + [ 8.488260499999999, 47.4288149 ], + [ 8.4860037, 47.4306032 ], + [ 8.4838878, 47.4324691 ], + [ 8.4819186, 47.4344076 ], + [ 8.4801015, 47.4364133 ], + [ 8.4784414, 47.4384808 ], + [ 8.4769429, 47.4406044 ], + [ 8.4756102, 47.4427782 ], + [ 8.474447, 47.4449964 ], + [ 8.4734563, 47.4472528 ], + [ 8.4726411, 47.4495413 ], + [ 8.4720034, 47.4518556 ], + [ 8.4715451, 47.4541894 ], + [ 8.4712675, 47.4565362 ], + [ 8.4711714, 47.4588896 ], + [ 8.471257, 47.4612433 ], + [ 8.4715242, 47.4635907 ], + [ 8.4717097, 47.4645574 ], + [ 8.4713828, 47.4653988 ], + [ 8.470684, 47.4676656 ], + [ 8.4701581, 47.4699537 ], + [ 8.4698066, 47.4722572 ], + [ 8.4696304, 47.4745699 ], + [ 8.46963, 47.4768856 ], + [ 8.4698055, 47.4791983 ], + [ 8.4698594, 47.4795517 ], + [ 8.4697448, 47.481454 ], + [ 8.469785, 47.4838081 ], + [ 8.4700069, 47.4861577 ], + [ 8.47041, 47.4884961 ], + [ 8.470993, 47.490817 ], + [ 8.4717546, 47.4931141 ], + [ 8.4726925, 47.495381 ], + [ 8.4738043, 47.4976115 ], + [ 8.475087, 47.4997995 ], + [ 8.4765369, 47.5019389 ], + [ 8.4781503, 47.504024 ], + [ 8.4799226, 47.506049 ], + [ 8.481849, 47.5080084 ], + [ 8.4839242, 47.5098967 ], + [ 8.4861427, 47.5117088 ], + [ 8.4884982, 47.5134397 ], + [ 8.4909843, 47.5150846 ], + [ 8.4935943, 47.5166391 ], + [ 8.4963209, 47.5180989 ], + [ 8.4991567, 47.5194599 ], + [ 8.5020939, 47.5207184 ], + [ 8.5051245, 47.521871 ], + [ 8.5082401, 47.5229145 ], + [ 8.5114321, 47.523846 ], + [ 8.5146919, 47.524663 ], + [ 8.5180104, 47.5253633 ], + [ 8.5213785, 47.5259448 ], + [ 8.524787, 47.526406 ], + [ 8.5282265, 47.5267457 ], + [ 8.5316876, 47.5269629 ], + [ 8.5351608, 47.527057 ], + [ 8.5386364, 47.5270277 ], + [ 8.5421051, 47.5268752 ], + [ 8.5455571, 47.5265998 ], + [ 8.5489831, 47.5262023 ], + [ 8.5523736, 47.5256839 ], + [ 8.5557193, 47.5250458 ], + [ 8.5590111, 47.5242899 ], + [ 8.5622399, 47.5234183 ], + [ 8.5653967, 47.5224334 ], + [ 8.568473000000001, 47.5213377 ], + [ 8.5714603, 47.5201345 ], + [ 8.5743504, 47.5188269 ], + [ 8.5771354, 47.5174186 ], + [ 8.5798076, 47.5159134 ], + [ 8.5823597, 47.5143154 ], + [ 8.5847847, 47.5126291 ], + [ 8.6131684, 47.4918166 ], + [ 8.6154214, 47.4900757 ], + [ 8.6175065, 47.4882864 ], + [ 8.6197436, 47.4866873 ], + [ 8.6219982, 47.4848965 ], + [ 8.6241114, 47.483028 ], + [ 8.6260772, 47.4810872 ], + [ 8.6278904, 47.4790792 ], + [ 8.6295459, 47.4770096 ], + [ 8.6310393, 47.4748841 ], + [ 8.6323664, 47.4727085 ], + [ 8.6335237, 47.4704887 ], + [ 8.634508, 47.468231 ], + [ 8.6353166, 47.4659413 ], + [ 8.6359473, 47.4636262 ], + [ 8.6363984, 47.4612918 ], + [ 8.6366688, 47.4589446 ], + [ 8.6367576, 47.456591 ], + [ 8.6366646, 47.4542375 ], + [ 8.6363902, 47.4518905 ], + [ 8.6359352, 47.4495564 ], + [ 8.6353007, 47.4472417 ], + [ 8.6344885, 47.4449527 ], + [ 8.633501, 47.4426957 ], + [ 8.6323408, 47.4404768 ], + [ 8.6310111, 47.4383021 ], + [ 8.6295156, 47.4361776 ], + [ 8.6278584, 47.4341091 ], + [ 8.626044, 47.4321022 ], + [ 8.6240775, 47.4301625 ], + [ 8.6219643, 47.4282953 ], + [ 8.61971, 47.4265056 ], + [ 8.617321, 47.4247984 ], + [ 8.6148037, 47.423178300000004 ], + [ 8.6121651, 47.4216498 ], + [ 8.6094125, 47.420217 ], + [ 8.6065532, 47.4188839 ], + [ 8.6035952, 47.4176541 ], + [ 8.6005465, 47.416531 ], + [ 8.5984554, 47.4158542 ], + [ 8.5967526, 47.4148319 ], + [ 8.5940379, 47.4133663 ], + [ 8.5912142, 47.4119992 ], + [ 8.588289, 47.4107342 ], + [ 8.5852704, 47.4095747 ], + [ 8.5821667, 47.408524 ], + [ 8.5789863, 47.407585 ], + [ 8.5757381, 47.4067601 ], + [ 8.5724307, 47.4060517 ], + [ 8.5690734, 47.4054616 ], + [ 8.5656753, 47.4049916 ], + [ 8.5622456, 47.4046428 ], + [ 8.5587937, 47.4044162 ], + [ 8.5553292, 47.4043126 ], + [ 8.5518614, 47.404332 ], + [ 8.5488195, 47.4044573 ], + [ 8.5457417, 47.4044667 ], + [ 8.542336, 47.4045963 ], + [ 8.5389446, 47.4048446 ], + [ 8.5355764, 47.4052111 ], + [ 8.5322405, 47.4056946 ], + [ 8.5289455, 47.4062941 ], + [ 8.5257003, 47.4070077 ], + [ 8.5225135, 47.4078338 ], + [ 8.5193934, 47.4087701 ], + [ 8.5163483, 47.409814 ], + [ 8.5133863, 47.410963 ], + [ 8.5105152, 47.4122138 ], + [ 8.5077426, 47.4135632 ], + [ 8.5050759, 47.4150077 ], + [ 8.5025222, 47.4165434 ], + [ 8.5000881, 47.4181662 ], + [ 8.4977802, 47.4198719 ], + [ 8.4956046, 47.4216559 ], + [ 8.4935671, 47.4235135 ], + [ 8.491673, 47.4254398 ], + [ 8.4899274, 47.427429599999996 ], + [ 8.4895847, 47.4278705 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZH001", + "country" : "CHE", + "name" : [ + { + "text" : "LSZH Zürich", + "lang" : "de-CH" + }, + { + "text" : "LSZH Zürich", + "lang" : "fr-CH" + }, + { + "text" : "LSZH Zürich", + "lang" : "it-CH" + }, + { + "text" : "LSZH Zürich", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Flughafen Zürich AG / Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Flughafen Zürich AG / Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Flughafen Zürich AG / Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Flughafen Zürich AG / Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Skyguide Special Flight Office", + "lang" : "de-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "it-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.skyguide.ch/services/special-flights", + "email" : "drones@zurich-airport.com", + "phone" : "0041438162211", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7482315, 47.4359073 ], + [ 7.7476217, 47.4362267 ], + [ 7.7482755999999995, 47.4365529 ], + [ 7.7489042999999995, 47.4368664 ], + [ 7.7497519, 47.4371687 ], + [ 7.7502313, 47.4374001 ], + [ 7.7511576, 47.4367484 ], + [ 7.7510583, 47.4365695 ], + [ 7.7508481, 47.4363201 ], + [ 7.7504769, 47.4358503 ], + [ 7.7503972999999995, 47.4358038 ], + [ 7.7504001, 47.4356901 ], + [ 7.7503983, 47.435485 ], + [ 7.7504036, 47.435441 ], + [ 7.7504141, 47.4353974 ], + [ 7.7504299, 47.4353546 ], + [ 7.7504508, 47.4353127 ], + [ 7.7504101, 47.4352322 ], + [ 7.749639, 47.4354587 ], + [ 7.7489402, 47.435664 ], + [ 7.7482315, 47.4359073 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns211", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Tanneboden - Allmet", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Tanneboden - Allmet", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Tanneboden - Allmet", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Tanneboden - Allmet", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.9788799, 46.3318675 ], + [ 6.9791647, 46.3312057 ], + [ 6.9784384, 46.3306315 ], + [ 6.9785897, 46.3299511 ], + [ 6.9795481, 46.3290249 ], + [ 6.9794742, 46.328393 ], + [ 6.979324, 46.3281855 ], + [ 6.9787499, 46.3282093 ], + [ 6.9780769, 46.3280932 ], + [ 6.9776448, 46.327907 ], + [ 6.9771046, 46.3275936 ], + [ 6.9766178, 46.3272731 ], + [ 6.9757829000000005, 46.3286317 ], + [ 6.975827, 46.3297095 ], + [ 6.97653, 46.3313281 ], + [ 6.9775231, 46.3318341 ], + [ 6.9788799, 46.3318675 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00001", + "country" : "CHE", + "name" : [ + { + "text" : "Roc de Veyges", + "lang" : "de-CH" + }, + { + "text" : "Roc de Veyges", + "lang" : "fr-CH" + }, + { + "text" : "Roc de Veyges", + "lang" : "it-CH" + }, + { + "text" : "Roc de Veyges", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "startDateTime" : "2025-01-01T00:00:00+01:00", + "endDateTime" : "2025-06-01T00:00:00+02:00" + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Generaldirektion für Umwelt", + "lang" : "de-CH" + }, + { + "text" : "Direction générale de l'environnement", + "lang" : "fr-CH" + }, + { + "text" : "Direzione generale dell'Ambiente", + "lang" : "it-CH" + }, + { + "text" : "Environment Department", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.dge@vd.ch", + "phone" : "0041213164422", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.5145328, 47.1731044 ], + [ 8.5145245, 47.1729632 ], + [ 8.514505400000001, 47.1728226 ], + [ 8.5144756, 47.1726828 ], + [ 8.514435, 47.1725442 ], + [ 8.5143839, 47.1724073 ], + [ 8.5143224, 47.1722724 ], + [ 8.5142505, 47.1721399 ], + [ 8.5141686, 47.1720101 ], + [ 8.5140769, 47.1718835 ], + [ 8.5139756, 47.1717603 ], + [ 8.5138649, 47.1716408 ], + [ 8.5137452, 47.1715255 ], + [ 8.5136169, 47.1714146 ], + [ 8.5134802, 47.1713085 ], + [ 8.5133355, 47.1712073 ], + [ 8.5131833, 47.1711115 ], + [ 8.513024, 47.1710212 ], + [ 8.5128579, 47.1709368 ], + [ 8.5126856, 47.1708583 ], + [ 8.5125075, 47.1707862 ], + [ 8.5123241, 47.1707205 ], + [ 8.5121359, 47.1706614 ], + [ 8.5119434, 47.1706091 ], + [ 8.5117472, 47.1705638 ], + [ 8.5115478, 47.1705255 ], + [ 8.5113457, 47.1704944 ], + [ 8.5111415, 47.1704706 ], + [ 8.5109358, 47.1704541 ], + [ 8.510729, 47.1704449 ], + [ 8.5105219, 47.1704431 ], + [ 8.510314900000001, 47.1704488 ], + [ 8.5101086, 47.1704618 ], + [ 8.5099036, 47.1704821 ], + [ 8.5097004, 47.1705098 ], + [ 8.5094997, 47.1705446 ], + [ 8.5093018, 47.1705866 ], + [ 8.5091075, 47.1706356 ], + [ 8.508917199999999, 47.1706914 ], + [ 8.5087315, 47.170754 ], + [ 8.5085508, 47.170823 ], + [ 8.5083756, 47.1708985 ], + [ 8.5082065, 47.1709801 ], + [ 8.5080439, 47.1710676 ], + [ 8.5078882, 47.1711608 ], + [ 8.5077399, 47.1712595 ], + [ 8.5075994, 47.1713633 ], + [ 8.507467, 47.1714719 ], + [ 8.5073431, 47.1715852 ], + [ 8.5072281, 47.1717027 ], + [ 8.5071223, 47.1718241 ], + [ 8.5070259, 47.1719492 ], + [ 8.506939299999999, 47.1720775 ], + [ 8.5068626, 47.1722088 ], + [ 8.5067961, 47.1723425 ], + [ 8.50674, 47.1724785 ], + [ 8.5066944, 47.1726163 ], + [ 8.5066594, 47.1727556 ], + [ 8.5066351, 47.1728959 ], + [ 8.5066217, 47.1730369 ], + [ 8.5066191, 47.1731781 ], + [ 8.5066273, 47.1733193 ], + [ 8.5066464, 47.17346 ], + [ 8.5066762, 47.1735998 ], + [ 8.5067167, 47.1737383 ], + [ 8.5067679, 47.1738752 ], + [ 8.5068294, 47.1740101 ], + [ 8.5069012, 47.1741426 ], + [ 8.5069831, 47.1742724 ], + [ 8.5070748, 47.1743991 ], + [ 8.5071761, 47.1745223 ], + [ 8.5072868, 47.1746417 ], + [ 8.5074065, 47.1747571 ], + [ 8.5075348, 47.174868 ], + [ 8.5076715, 47.1749741 ], + [ 8.5078161, 47.1750753 ], + [ 8.5079684, 47.1751711 ], + [ 8.5081277, 47.1752614 ], + [ 8.5082938, 47.1753459 ], + [ 8.5084661, 47.1754243 ], + [ 8.508644199999999, 47.1754964 ], + [ 8.5088276, 47.1755622 ], + [ 8.5090159, 47.1756212 ], + [ 8.5092083, 47.1756735 ], + [ 8.5094046, 47.1757188 ], + [ 8.509604, 47.1757571 ], + [ 8.5098061, 47.1757882 ], + [ 8.5100103, 47.1758121 ], + [ 8.5102161, 47.1758286 ], + [ 8.5104228, 47.1758377 ], + [ 8.51063, 47.1758395 ], + [ 8.510837, 47.1758339 ], + [ 8.5110433, 47.1758209 ], + [ 8.5112484, 47.1758005 ], + [ 8.5114515, 47.1757729 ], + [ 8.5116523, 47.175738 ], + [ 8.5118502, 47.1756961 ], + [ 8.5120445, 47.1756471 ], + [ 8.5122348, 47.1755912 ], + [ 8.5124206, 47.1755287 ], + [ 8.5126013, 47.1754596 ], + [ 8.5127764, 47.1753841 ], + [ 8.5129456, 47.1753025 ], + [ 8.5131082, 47.175215 ], + [ 8.5132639, 47.1751218 ], + [ 8.5134122, 47.1750231 ], + [ 8.5135527, 47.1749193 ], + [ 8.5136851, 47.1748107 ], + [ 8.513809, 47.1746974 ], + [ 8.513924, 47.1745799 ], + [ 8.5140298, 47.1744584 ], + [ 8.5141261, 47.1743334 ], + [ 8.5142128, 47.174205 ], + [ 8.5142894, 47.1740738 ], + [ 8.5143559, 47.17394 ], + [ 8.514412, 47.173804 ], + [ 8.5144576, 47.1736662 ], + [ 8.5144926, 47.1735269 ], + [ 8.514516799999999, 47.1733866 ], + [ 8.5145302, 47.1732457 ], + [ 8.5145328, 47.1731044 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "ZUG0001", + "country" : "CHE", + "name" : [ + { + "text" : "Kantonale Strafanstalt Zug", + "lang" : "de-CH" + }, + { + "text" : "Kantonale Strafanstalt Zug", + "lang" : "fr-CH" + }, + { + "text" : "Kantonale Strafanstalt Zug", + "lang" : "it-CH" + }, + { + "text" : "Kantonale Strafanstalt Zug", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Justizvollzug des Kantons Zug", + "lang" : "de-CH" + }, + { + "text" : "Amt für Justizvollzug des Kantons Zug", + "lang" : "fr-CH" + }, + { + "text" : "Amt für Justizvollzug des Kantons Zug", + "lang" : "it-CH" + }, + { + "text" : "Amt für Justizvollzug des Kantons Zug", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Kantonale Strafanstalt Zug", + "lang" : "de-CH" + }, + { + "text" : "Kantonale Strafanstalt Zug", + "lang" : "fr-CH" + }, + { + "text" : "Kantonale Strafanstalt Zug", + "lang" : "it-CH" + }, + { + "text" : "Kantonale Strafanstalt Zug", + "lang" : "en-GB" + } + ], + "siteURL" : "https://zg.ch/de/sicherheitsdirektion/amt-fuer-justizvollzug/strafanstalt-zug", + "email" : "strafanstalt@zg.ch", + "phone" : "0041417236000", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.1156468, 46.3813637 ], + [ 7.1162943, 46.3837305 ], + [ 7.1188829, 46.3860722 ], + [ 7.1182135, 46.3873666 ], + [ 7.1182973, 46.388145 ], + [ 7.119609, 46.389919 ], + [ 7.1198938, 46.3903318 ], + [ 7.1204158, 46.391554 ], + [ 7.120811, 46.3917683 ], + [ 7.121406, 46.3918465 ], + [ 7.1224028, 46.3910253 ], + [ 7.1230672, 46.3905692 ], + [ 7.1239526, 46.3900985 ], + [ 7.1245938, 46.3896128 ], + [ 7.1255927, 46.3886233 ], + [ 7.1260591, 46.3879994 ], + [ 7.1259522, 46.3873883 ], + [ 7.124811, 46.386455 ], + [ 7.1231641, 46.3853214 ], + [ 7.1209441, 46.3841548 ], + [ 7.1204418, 46.3833752 ], + [ 7.1194097, 46.3827012 ], + [ 7.1156468, 46.3813637 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00052", + "country" : "CHE", + "name" : [ + { + "text" : "Lioson", + "lang" : "de-CH" + }, + { + "text" : "Lioson", + "lang" : "fr-CH" + }, + { + "text" : "Lioson", + "lang" : "it-CH" + }, + { + "text" : "Lioson", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "startDateTime" : "2024-11-15T00:00:00+01:00", + "endDateTime" : "2025-04-15T00:00:00+02:00" + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Generaldirektion für Umwelt", + "lang" : "de-CH" + }, + { + "text" : "Direction générale de l'environnement", + "lang" : "fr-CH" + }, + { + "text" : "Direzione generale dell'Ambiente", + "lang" : "it-CH" + }, + { + "text" : "Environment Department", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.dge@vd.ch", + "phone" : "0041213164422", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8514163, 47.4754501 ], + [ 7.8513737, 47.4756227 ], + [ 7.8513359, 47.475781 ], + [ 7.8512988, 47.4759122 ], + [ 7.8512332, 47.4760784 ], + [ 7.8511464, 47.4762277 ], + [ 7.851142, 47.4763089 ], + [ 7.8511600999999995, 47.4763477 ], + [ 7.8511913, 47.4764035 ], + [ 7.8511944, 47.4763978 ], + [ 7.8512004, 47.476378 ], + [ 7.8511945999999995, 47.476307 ], + [ 7.8514655, 47.476311 ], + [ 7.8518115, 47.4763181 ], + [ 7.8523027, 47.4763252 ], + [ 7.8522762, 47.47627 ], + [ 7.8520592, 47.4757911 ], + [ 7.8519697, 47.4755932 ], + [ 7.8519583, 47.4755543 ], + [ 7.8514163, 47.4754501 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns166", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Warteckweiher", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Warteckweiher", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Warteckweiher", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Warteckweiher", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8767261, 47.3997775 ], + [ 7.8765903999999995, 47.3997371 ], + [ 7.8764645, 47.3997107 ], + [ 7.8763551, 47.3997158 ], + [ 7.8762273, 47.3997464 ], + [ 7.8760948, 47.3997737 ], + [ 7.8760042, 47.3997962 ], + [ 7.8759391, 47.3998091 ], + [ 7.8758391, 47.3998174 ], + [ 7.8757157, 47.3998163 ], + [ 7.8755992, 47.3998072 ], + [ 7.875471, 47.3997935 ], + [ 7.8753497, 47.3997655 ], + [ 7.8751305, 47.3997189 ], + [ 7.8749766999999995, 47.3997068 ], + [ 7.8748579, 47.3997041 ], + [ 7.8746577, 47.3997049 ], + [ 7.8744506, 47.399712 ], + [ 7.8742947, 47.3997284 ], + [ 7.8741321, 47.3997685 ], + [ 7.8740067, 47.3998196 ], + [ 7.8738510999999995, 47.3998565 ], + [ 7.8737186, 47.3998839 ], + [ 7.8735906, 47.399897 ], + [ 7.8734999, 47.39991 ], + [ 7.8733955, 47.3999452 ], + [ 7.8733051, 47.3999961 ], + [ 7.8731915, 47.4000534 ], + [ 7.8731451, 47.4000757 ], + [ 7.8729302, 47.4001623 ], + [ 7.872559, 47.4002445 ], + [ 7.8721437, 47.4003874 ], + [ 7.8719216, 47.4004994 ], + [ 7.8717149, 47.400692 ], + [ 7.8716416, 47.4008236 ], + [ 7.8715086, 47.4009352 ], + [ 7.8713163999999995, 47.4010773 ], + [ 7.8712732, 47.4012491 ], + [ 7.8713638, 47.4014104 ], + [ 7.871439, 47.4015212 ], + [ 7.8716925, 47.4015909 ], + [ 7.8720349, 47.40163 ], + [ 7.872318, 47.4016895 ], + [ 7.8725422, 47.4018301 ], + [ 7.8727818, 47.4020211 ], + [ 7.8730354, 47.402111 ], + [ 7.8733785, 47.4021418 ], + [ 7.8733853, 47.4021252 ], + [ 7.8735971, 47.4021101 ], + [ 7.8739275, 47.4020852 ], + [ 7.8742044, 47.4020683 ], + [ 7.8744163, 47.402066 ], + [ 7.8745397, 47.4020702 ], + [ 7.8747471, 47.4020868 ], + [ 7.8749381, 47.4021019 ], + [ 7.8751245999999995, 47.4021202 ], + [ 7.8753297, 47.4021495 ], + [ 7.8754836, 47.4021742 ], + [ 7.8756909, 47.4021892 ], + [ 7.8758446, 47.4021981 ], + [ 7.8759239, 47.4022041 ], + [ 7.8760334, 47.4022164 ], + [ 7.8761616, 47.402238 ], + [ 7.8763645, 47.402271999999996 ], + [ 7.8766862, 47.4023245 ], + [ 7.8767866, 47.4023605 ], + [ 7.8768895, 47.4024091 ], + [ 7.8769324, 47.4024362 ], + [ 7.877321, 47.4023046 ], + [ 7.8780888000000004, 47.4020432 ], + [ 7.8782939, 47.4019749 ], + [ 7.8789955, 47.4018555 ], + [ 7.8796112, 47.4017538 ], + [ 7.8798083, 47.4017207 ], + [ 7.8777096, 47.4012589 ], + [ 7.8776837, 47.4012196 ], + [ 7.8776472, 47.4011662 ], + [ 7.8776294, 47.4011401 ], + [ 7.8775379, 47.4009981 ], + [ 7.8774852, 47.400918 ], + [ 7.8772579, 47.4005763 ], + [ 7.8769046, 47.4000448 ], + [ 7.8767261, 47.3997775 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr023", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Vorderer Wisenberg", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Vorderer Wisenberg", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Vorderer Wisenberg", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Vorderer Wisenberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.218549, 46.4429006 ], + [ 6.2182936, 46.4429036 ], + [ 6.218039, 46.4429182 ], + [ 6.2177863, 46.4429443 ], + [ 6.2175367, 46.4429817 ], + [ 6.2172911, 46.4430303 ], + [ 6.2170506, 46.4430899 ], + [ 6.2168163, 46.4431603 ], + [ 6.2165891, 46.4432411 ], + [ 6.2163701, 46.443332 ], + [ 6.2161602, 46.4434326 ], + [ 6.2159602, 46.4435425 ], + [ 6.215771, 46.4436612 ], + [ 6.2155935, 46.4437882 ], + [ 6.2154284, 46.4439229 ], + [ 6.2152763, 46.4440649 ], + [ 6.2151381, 46.4442133 ], + [ 6.2150141, 46.4443678 ], + [ 6.2149051, 46.4445275 ], + [ 6.2148114, 46.4446918 ], + [ 6.2147334, 46.4448599 ], + [ 6.2146715, 46.4450313 ], + [ 6.214626, 46.445205 ], + [ 6.2146066, 46.44531 ], + [ 6.2145937, 46.4453927 ], + [ 6.2145841, 46.4454632 ], + [ 6.2145717, 46.4456396 ], + [ 6.2145761, 46.4458161 ], + [ 6.2145971, 46.4459921 ], + [ 6.2146348, 46.4461668 ], + [ 6.2146889, 46.4463394 ], + [ 6.2147593, 46.4465092 ], + [ 6.2148455, 46.4466754 ], + [ 6.2149473, 46.4468374 ], + [ 6.2150642, 46.4469944 ], + [ 6.2151957, 46.4471458 ], + [ 6.2153413, 46.4472909 ], + [ 6.2155003, 46.4474292 ], + [ 6.215672, 46.4475599 ], + [ 6.2158557, 46.4476827 ], + [ 6.2160506, 46.4477968 ], + [ 6.2162559, 46.4479019 ], + [ 6.2164708, 46.4479975 ], + [ 6.2166942, 46.4480831 ], + [ 6.2169252, 46.4481585 ], + [ 6.2171629, 46.4482233 ], + [ 6.2174062, 46.4482772 ], + [ 6.2176541, 46.44832 ], + [ 6.2179055, 46.4483515 ], + [ 6.2179998, 46.4483603 ], + [ 6.2181187, 46.4483703 ], + [ 6.2182783, 46.4483816 ], + [ 6.2185334, 46.4483901 ], + [ 6.2187889, 46.4483871 ], + [ 6.2190435, 46.4483725 ], + [ 6.2192962, 46.4483465 ], + [ 6.2195459, 46.448309 ], + [ 6.2197915, 46.4482604 ], + [ 6.220032, 46.4482008 ], + [ 6.2202663, 46.4481304 ], + [ 6.2204935, 46.4480496 ], + [ 6.2207125, 46.4479587 ], + [ 6.2209225, 46.4478581 ], + [ 6.2211225, 46.4477482 ], + [ 6.2213116, 46.4476295 ], + [ 6.2214892, 46.4475025 ], + [ 6.2216543, 46.4473677 ], + [ 6.2218063, 46.4472258 ], + [ 6.2219446, 46.4470773 ], + [ 6.2220685, 46.4469228 ], + [ 6.2221775, 46.4467631 ], + [ 6.2222712, 46.4465988 ], + [ 6.2223492, 46.4464307 ], + [ 6.222411, 46.4462593 ], + [ 6.2224566, 46.4460856 ], + [ 6.2224693, 46.4460204 ], + [ 6.2224842, 46.4459361 ], + [ 6.2225005, 46.4458258 ], + [ 6.2225128, 46.4456494 ], + [ 6.2225084, 46.4454729 ], + [ 6.2224873, 46.4452969 ], + [ 6.2224496, 46.4451222 ], + [ 6.2223955, 46.4449496 ], + [ 6.2223251, 46.4447799 ], + [ 6.2222389, 46.4446136 ], + [ 6.2221371, 46.4444517 ], + [ 6.2220201, 46.4442947 ], + [ 6.2218886, 46.4441433 ], + [ 6.2217431, 46.4439981 ], + [ 6.2215841, 46.4438599 ], + [ 6.2214124, 46.4437292 ], + [ 6.2212286, 46.4436064 ], + [ 6.2210336999999996, 46.4434923 ], + [ 6.2208284, 46.4433872 ], + [ 6.2206136, 46.4432916 ], + [ 6.2203902, 46.443206 ], + [ 6.2201592, 46.4431306 ], + [ 6.2199215, 46.4430658 ], + [ 6.2196782, 46.443012 ], + [ 6.2194304, 46.4429692 ], + [ 6.219179, 46.4429377 ], + [ 6.219005, 46.4429227 ], + [ 6.218884, 46.4429142 ], + [ 6.2188042, 46.4429091 ], + [ 6.218549, 46.4429006 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00038", + "country" : "CHE", + "name" : [ + { + "text" : "Clinique de Genolier", + "lang" : "de-CH" + }, + { + "text" : "Clinique de Genolier", + "lang" : "fr-CH" + }, + { + "text" : "Clinique de Genolier", + "lang" : "it-CH" + }, + { + "text" : "Clinique de Genolier", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kantonspolizei Waadt", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale vaudoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Vaud", + "lang" : "it-CH" + }, + { + "text" : "Vaud Cantonal Police", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.pcv@vd.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.6316729, 47.0001108 ], + [ 8.6316644, 46.9999696 ], + [ 8.6316451, 46.999829 ], + [ 8.631615, 46.9996892 ], + [ 8.6315743, 46.9995507 ], + [ 8.631523, 46.9994138 ], + [ 8.6314614, 46.999279 ], + [ 8.6313895, 46.9991466 ], + [ 8.6313076, 46.9990169 ], + [ 8.6312158, 46.9988903 ], + [ 8.6311146, 46.9987672 ], + [ 8.631004, 46.9986479 ], + [ 8.6308845, 46.9985326 ], + [ 8.6307563, 46.9984219 ], + [ 8.6306198, 46.9983159 ], + [ 8.6304754, 46.9982149 ], + [ 8.6303235, 46.9981192 ], + [ 8.6301644, 46.9980291 ], + [ 8.6299987, 46.9979448 ], + [ 8.6298268, 46.9978665 ], + [ 8.6296491, 46.9977946 ], + [ 8.6294661, 46.997729 ], + [ 8.6292784, 46.9976702 ], + [ 8.6290865, 46.9976181 ], + [ 8.6288908, 46.9975729 ], + [ 8.6286919, 46.9975349 ], + [ 8.6284904, 46.997504 ], + [ 8.6282868, 46.9974803 ], + [ 8.6280817, 46.997464 ], + [ 8.6278757, 46.9974551 ], + [ 8.6276692, 46.9974535 ], + [ 8.6274628, 46.9974594 ], + [ 8.6272573, 46.9974726 ], + [ 8.627053, 46.9974931 ], + [ 8.6268505, 46.997521 ], + [ 8.6266505, 46.997556 ], + [ 8.626453399999999, 46.9975982 ], + [ 8.6262598, 46.9976474 ], + [ 8.626070200000001, 46.9977034 ], + [ 8.625885199999999, 46.9977662 ], + [ 8.6257053, 46.9978354 ], + [ 8.6255308, 46.9979111 ], + [ 8.6253625, 46.9979929 ], + [ 8.6252006, 46.9980805 ], + [ 8.6250456, 46.9981739 ], + [ 8.624898, 46.9982727 ], + [ 8.6247581, 46.9983766 ], + [ 8.6246264, 46.9984854 ], + [ 8.6245031, 46.9985988 ], + [ 8.6243888, 46.9987164 ], + [ 8.6242835, 46.998838 ], + [ 8.6241878, 46.9989632 ], + [ 8.6241017, 46.9990916 ], + [ 8.6240256, 46.9992229 ], + [ 8.6239596, 46.9993568 ], + [ 8.6239039, 46.9994928 ], + [ 8.6238587, 46.9996307 ], + [ 8.6238242, 46.99977 ], + [ 8.6238003, 46.9999103 ], + [ 8.6237872, 47.0000513 ], + [ 8.6237849, 47.0001926 ], + [ 8.6237935, 47.0003337 ], + [ 8.6238128, 47.0004744 ], + [ 8.6238428, 47.0006142 ], + [ 8.6238835, 47.0007527 ], + [ 8.6239348, 47.0008895 ], + [ 8.6239964, 47.0010244 ], + [ 8.6240683, 47.0011568 ], + [ 8.6241502, 47.0012865 ], + [ 8.6242419, 47.0014131 ], + [ 8.6243431, 47.0015362 ], + [ 8.6244537, 47.0016556 ], + [ 8.6245732, 47.0017708 ], + [ 8.6247014, 47.0018815 ], + [ 8.6248379, 47.0019876 ], + [ 8.6249823, 47.0020886 ], + [ 8.6251342, 47.0021842 ], + [ 8.6252933, 47.0022744 ], + [ 8.625459, 47.0023587 ], + [ 8.6256309, 47.0024369 ], + [ 8.6258086, 47.0025089 ], + [ 8.6259916, 47.0025744 ], + [ 8.6261793, 47.0026333 ], + [ 8.6263713, 47.0026854 ], + [ 8.626567, 47.0027305 ], + [ 8.6267658, 47.0027686 ], + [ 8.6269674, 47.0027995 ], + [ 8.627171, 47.0028231 ], + [ 8.6273761, 47.0028395 ], + [ 8.627582199999999, 47.0028484 ], + [ 8.6277887, 47.00285 ], + [ 8.6279951, 47.0028441 ], + [ 8.6282007, 47.0028309 ], + [ 8.628405, 47.0028104 ], + [ 8.6286075, 47.0027825 ], + [ 8.6288075, 47.0027474 ], + [ 8.6290046, 47.0027053 ], + [ 8.6291982, 47.0026561 ], + [ 8.6293878, 47.0026001 ], + [ 8.6295728, 47.0025373 ], + [ 8.6297528, 47.002468 ], + [ 8.629927200000001, 47.0023924 ], + [ 8.6300956, 47.0023106 ], + [ 8.6302575, 47.0022229 ], + [ 8.6304125, 47.0021295 ], + [ 8.6305601, 47.0020307 ], + [ 8.630700000000001, 47.0019268 ], + [ 8.6308317, 47.001818 ], + [ 8.6309549, 47.0017046 ], + [ 8.6310693, 47.001587 ], + [ 8.6311745, 47.0014654 ], + [ 8.6312703, 47.0013402 ], + [ 8.6313563, 47.0012118 ], + [ 8.6314325, 47.0010805 ], + [ 8.6314984, 47.0009466 ], + [ 8.6315541, 47.0008105 ], + [ 8.6315992, 47.0006727 ], + [ 8.6316338, 47.0005334 ], + [ 8.6316576, 47.0003931 ], + [ 8.6316707, 47.0002521 ], + [ 8.6316729, 47.0001108 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0055", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Ingenbohl", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Ingenbohl", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Ingenbohl", + "lang" : "it-CH" + }, + { + "text" : "Substation Ingenbohl", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 10.3363557, 46.8050195 ], + [ 10.3363427, 46.8048785 ], + [ 10.336319, 46.8047382 ], + [ 10.3362847, 46.8045989 ], + [ 10.3362397, 46.804461 ], + [ 10.3361843, 46.804325 ], + [ 10.3361186, 46.8041911 ], + [ 10.3360428, 46.8040597 ], + [ 10.3359571, 46.8039313 ], + [ 10.3358618, 46.8038061 ], + [ 10.335757, 46.8036845 ], + [ 10.3356431, 46.8035669 ], + [ 10.3355203, 46.8034535 ], + [ 10.3353891, 46.8033446 ], + [ 10.3352498, 46.8032406 ], + [ 10.3351028, 46.8031418 ], + [ 10.3349484, 46.8030484 ], + [ 10.3347871, 46.8029607 ], + [ 10.3346194, 46.8028789 ], + [ 10.3344456, 46.8028032 ], + [ 10.3342664, 46.8027339 ], + [ 10.334082, 46.8026711 ], + [ 10.3338932, 46.802615 ], + [ 10.3337003, 46.802565799999996 ], + [ 10.333504, 46.8025236 ], + [ 10.3333047, 46.8024885 ], + [ 10.333103, 46.8024606 ], + [ 10.3328994, 46.80244 ], + [ 10.3326946, 46.8024267 ], + [ 10.332489, 46.8024208 ], + [ 10.3322833, 46.8024224 ], + [ 10.3320779, 46.8024313 ], + [ 10.3318736, 46.8024475 ], + [ 10.3316707, 46.8024711 ], + [ 10.3314699, 46.802502 ], + [ 10.3312718, 46.80254 ], + [ 10.3310768, 46.8025851 ], + [ 10.3308855, 46.8026371 ], + [ 10.3306984, 46.802696 ], + [ 10.3305161, 46.8027615 ], + [ 10.330339, 46.8028334 ], + [ 10.3301677, 46.8029116 ], + [ 10.330002499999999, 46.8029959 ], + [ 10.329844, 46.803086 ], + [ 10.3296926, 46.8031816 ], + [ 10.3295487, 46.8032826 ], + [ 10.3294127, 46.8033886 ], + [ 10.3292849, 46.8034993 ], + [ 10.3291657, 46.8036145 ], + [ 10.3290555, 46.8037338 ], + [ 10.3289545, 46.8038569 ], + [ 10.3288631, 46.8039835 ], + [ 10.3287814, 46.8041131 ], + [ 10.3287097, 46.8042456 ], + [ 10.3286482, 46.8043804 ], + [ 10.3285971, 46.8045172 ], + [ 10.3285565, 46.8046557 ], + [ 10.3285264, 46.8047955 ], + [ 10.3285071, 46.8049362 ], + [ 10.3284985, 46.8050773 ], + [ 10.3285007, 46.8052186 ], + [ 10.3285137, 46.8053596 ], + [ 10.3285374, 46.8055 ], + [ 10.3285717, 46.8056393 ], + [ 10.3286167, 46.8057771 ], + [ 10.328672, 46.8059132 ], + [ 10.3287377, 46.8060471 ], + [ 10.3288135, 46.8061784 ], + [ 10.3288992, 46.8063069 ], + [ 10.3289945, 46.8064321 ], + [ 10.3290993, 46.8065537 ], + [ 10.3292132, 46.8066713 ], + [ 10.3293359, 46.8067848 ], + [ 10.3294671, 46.8068936 ], + [ 10.3296064, 46.8069976 ], + [ 10.3297535, 46.8070964 ], + [ 10.3299079, 46.8071898 ], + [ 10.3300691, 46.8072776 ], + [ 10.3302369, 46.8073594 ], + [ 10.3304106, 46.807435 ], + [ 10.3305899, 46.8075044 ], + [ 10.3307743, 46.8075672 ], + [ 10.3309631, 46.8076233 ], + [ 10.331156, 46.8076725 ], + [ 10.3313524, 46.8077147 ], + [ 10.3315517, 46.8077498 ], + [ 10.3317534, 46.8077777 ], + [ 10.331957, 46.8077983 ], + [ 10.3321618, 46.8078116 ], + [ 10.3323674, 46.8078174 ], + [ 10.3325732, 46.8078159 ], + [ 10.3327786, 46.807807 ], + [ 10.332983, 46.8077908 ], + [ 10.3331858, 46.8077672 ], + [ 10.3333866, 46.8077363 ], + [ 10.3335848, 46.8076983 ], + [ 10.3337798, 46.8076532 ], + [ 10.3339711, 46.8076011 ], + [ 10.3341582, 46.8075423 ], + [ 10.3343405, 46.8074768 ], + [ 10.3345176, 46.8074048 ], + [ 10.334689, 46.8073266 ], + [ 10.3348541, 46.8072424 ], + [ 10.3350126, 46.8071523 ], + [ 10.335164, 46.8070566 ], + [ 10.335308, 46.8069556 ], + [ 10.335444, 46.8068496 ], + [ 10.3355718, 46.8067389 ], + [ 10.3356909, 46.8066237 ], + [ 10.3358011, 46.8065044 ], + [ 10.3359021, 46.8063813 ], + [ 10.3359935, 46.8062547 ], + [ 10.3360752, 46.806125 ], + [ 10.3361469, 46.8059926 ], + [ 10.3362083, 46.8058578 ], + [ 10.3362595, 46.8057209 ], + [ 10.3363001, 46.8055824 ], + [ 10.3363301, 46.8054426 ], + [ 10.3363494, 46.805302 ], + [ 10.3363579, 46.8051608 ], + [ 10.3363557, 46.8050195 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0092", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Pradella B", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Pradella B", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Pradella B", + "lang" : "it-CH" + }, + { + "text" : "Substation Pradella B", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.1040382, 46.7230408 ], + [ 8.1039941, 46.722843 ], + [ 8.1039394, 46.7227183 ], + [ 8.1038114, 46.7226155 ], + [ 8.1036487, 46.7225462 ], + [ 8.1034787, 46.7224824 ], + [ 8.103357, 46.7224304 ], + [ 8.1031629, 46.722338 ], + [ 8.103026, 46.7222409 ], + [ 8.1028236, 46.7221316 ], + [ 8.1026857, 46.7220906 ], + [ 8.1024968, 46.7220886 ], + [ 8.1022195, 46.7220744 ], + [ 8.1019817, 46.7220832 ], + [ 8.1016715, 46.7220517 ], + [ 8.1014427, 46.7219986 ], + [ 8.1013217, 46.7219296 ], + [ 8.1011523, 46.7218489 ], + [ 8.1009978, 46.7217853 ], + [ 8.1008598, 46.7217331 ], + [ 8.1007219, 46.7216922 ], + [ 8.1005517, 46.7216114 ], + [ 8.1000134, 46.7211772 ], + [ 8.0998127, 46.7210117 ], + [ 8.0995618, 46.7208906 ], + [ 8.0993769, 46.7207421 ], + [ 8.0992346, 46.7205376 ], + [ 8.0991723, 46.7203903 ], + [ 8.0990523, 46.7202763 ], + [ 8.0987752, 46.7198788 ], + [ 8.0986424, 46.7195842 ], + [ 8.0985655, 46.7193806 ], + [ 8.0984951, 46.7192389 ], + [ 8.0984074, 46.7191478 ], + [ 8.0983883, 46.7189276 ], + [ 8.0983303, 46.7185944 ], + [ 8.0982712, 46.718312 ], + [ 8.0981438, 46.7181866 ], + [ 8.0979649, 46.7181283 ], + [ 8.0978677, 46.718071 ], + [ 8.097822, 46.7179464 ], + [ 8.0977345, 46.7178102 ], + [ 8.0975983, 46.7177016 ], + [ 8.0971718, 46.7173871 ], + [ 8.0969347, 46.7173845 ], + [ 8.0968866, 46.7173276 ], + [ 8.0969135, 46.717249 ], + [ 8.0970214, 46.7171825 ], + [ 8.0977388, 46.7166208 ], + [ 8.1085097, 46.7181273 ], + [ 8.1126137, 46.7151999 ], + [ 8.1129284, 46.7125874 ], + [ 8.1129823, 46.7123907 ], + [ 8.1312458, 46.7084034 ], + [ 8.1404242, 46.7176022 ], + [ 8.1403805, 46.7177595 ], + [ 8.140302, 46.7179448 ], + [ 8.1402498, 46.7180851 ], + [ 8.1402054, 46.7182538 ], + [ 8.1401935, 46.7184003 ], + [ 8.1402553, 46.71857 ], + [ 8.1402914, 46.7187621 ], + [ 8.1403375, 46.7189147 ], + [ 8.140302, 46.7190159 ], + [ 8.1402673, 46.7191114 ], + [ 8.1403046, 46.7192752 ], + [ 8.1403177, 46.719405 ], + [ 8.1402646, 46.719596 ], + [ 8.1402205, 46.7197197 ], + [ 8.1402748, 46.7198781 ], + [ 8.1403703, 46.7199917 ], + [ 8.1404712, 46.720207 ], + [ 8.1407675, 46.720165 ], + [ 8.1409713, 46.7201896 ], + [ 8.1412079, 46.7202145 ], + [ 8.1415107, 46.7202402 ], + [ 8.141893, 46.7203399 ], + [ 8.1421123, 46.7204154 ], + [ 8.1422679, 46.720434 ], + [ 8.1423588, 46.7203897 ], + [ 8.1424813, 46.7203798 ], + [ 8.1426211, 46.7203756 ], + [ 8.142818, 46.7203662 ], + [ 8.1429476, 46.7204014 ], + [ 8.143145, 46.7203697 ], + [ 8.1433342, 46.7203321 ], + [ 8.1435966, 46.7203292 ], + [ 8.1437426, 46.7203644 ], + [ 8.143938, 46.7204284 ], + [ 8.1441167, 46.7204698 ], + [ 8.1443143, 46.7204492 ], + [ 8.1444225, 46.7203432 ], + [ 8.1444906, 46.7202424 ], + [ 8.1448167, 46.7202909 ], + [ 8.1451685, 46.7203171 ], + [ 8.1456895, 46.7204576 ], + [ 8.1458035, 46.720487 ], + [ 8.1459499, 46.7204941 ], + [ 8.1461072, 46.7204507 ], + [ 8.1463209, 46.7204134 ], + [ 8.1465647, 46.7204948 ], + [ 8.146727, 46.7205245 ], + [ 8.1469316, 46.7205379 ], + [ 8.1471781, 46.7205123 ], + [ 8.1473917, 46.7204638 ], + [ 8.1476066, 46.7203926 ], + [ 8.1479047, 46.720249 ], + [ 8.1481514, 46.7201727 ], + [ 8.1483658, 46.7201298 ], + [ 8.1486197, 46.7200985 ], + [ 8.1488574, 46.720084 ], + [ 8.1490302, 46.7200463 ], + [ 8.1493019, 46.720004 ], + [ 8.1495484, 46.7199727 ], + [ 8.149737, 46.7199577 ], + [ 8.1499418, 46.719926 ], + [ 8.1501392, 46.7198941 ], + [ 8.1503349, 46.7199187 ], + [ 8.1505051, 46.7199937 ], + [ 8.1507507, 46.7200187 ], + [ 8.1510205, 46.7200158 ], + [ 8.1513002, 46.7199679 ], + [ 8.1515062, 46.7199024 ], + [ 8.1517886, 46.7197418 ], + [ 8.1523865, 46.7193363 ], + [ 8.152538, 46.7195351 ], + [ 8.152652, 46.7195701 ], + [ 8.1527824, 46.7195996 ], + [ 8.1529632, 46.7195451 ], + [ 8.1530701, 46.7195292 ], + [ 8.1531689, 46.7195247 ], + [ 8.1532342, 46.719514 ], + [ 8.1533072, 46.7195317 ], + [ 8.1535051, 46.7194773 ], + [ 8.1537849, 46.7194294 ], + [ 8.1540308, 46.719415 ], + [ 8.1542461, 46.7193156 ], + [ 8.1542475, 46.7192368 ], + [ 8.1542981, 46.7191697 ], + [ 8.1544143, 46.7191144 ], + [ 8.1547117, 46.7189821 ], + [ 8.1550664, 46.7188504 ], + [ 8.1553482, 46.7187123 ], + [ 8.1554718, 46.7186629 ], + [ 8.1555542, 46.7186468 ], + [ 8.1556934, 46.7186652 ], + [ 8.1559064, 46.7186335 ], + [ 8.1561871, 46.7185348 ], + [ 8.1566101, 46.7183136 ], + [ 8.1570485, 46.7180926 ], + [ 8.1576431, 46.7178618 ], + [ 8.1583628, 46.7175196 ], + [ 8.158546, 46.7174031 ], + [ 8.1586853, 46.7173706 ], + [ 8.1588997, 46.717322 ], + [ 8.159097, 46.7172846 ], + [ 8.1592446, 46.7172578 ], + [ 8.1594089, 46.717254 ], + [ 8.1595473, 46.7172722 ], + [ 8.1597356, 46.7172966 ], + [ 8.1599077, 46.7172702 ], + [ 8.1600566, 46.7172153 ], + [ 8.1602223, 46.7171324 ], + [ 8.1604613, 46.7170333 ], + [ 8.1606353, 46.7169618 ], + [ 8.1608759, 46.7168008 ], + [ 8.1610409, 46.7167348 ], + [ 8.1611561, 46.7167246 ], + [ 8.1613197, 46.716732 ], + [ 8.1614189, 46.7166934 ], + [ 8.1614854, 46.7166546 ], + [ 8.161724, 46.7165895 ], + [ 8.1620139, 46.7164458 ], + [ 8.1623946, 46.7162411 ], + [ 8.1626278, 46.7160799 ], + [ 8.1627617, 46.715946 ], + [ 8.1627985, 46.7157604 ], + [ 8.1628527, 46.7155354 ], + [ 8.1629796, 46.7153675 ], + [ 8.1631631, 46.7152172 ], + [ 8.1638152, 46.7149587 ], + [ 8.1641204, 46.7148547 ], + [ 8.164335, 46.7147666 ], + [ 8.1644037, 46.714649 ], + [ 8.1644722, 46.7145144 ], + [ 8.1645808, 46.7143858 ], + [ 8.1648294, 46.71427 ], + [ 8.1650534, 46.7141481 ], + [ 8.1654746, 46.7139832 ], + [ 8.1658042, 46.7138738 ], + [ 8.1660189, 46.7137969 ], + [ 8.1661267, 46.7137248 ], + [ 8.166236, 46.7135906 ], + [ 8.1663389, 46.7133999 ], + [ 8.1663075, 46.7133151 ], + [ 8.1662703, 46.7131625 ], + [ 8.1663045, 46.7130896 ], + [ 8.1663803, 46.7130114 ], + [ 8.1664712, 46.7129673 ], + [ 8.1665714, 46.7128781 ], + [ 8.1666791, 46.7128058 ], + [ 8.1668198, 46.7127508 ], + [ 8.1669357, 46.7126787 ], + [ 8.1670621, 46.7125391 ], + [ 8.1671698, 46.7124613 ], + [ 8.1672695, 46.7124002 ], + [ 8.1674189, 46.7123228 ], + [ 8.1675365, 46.7121942 ], + [ 8.1676927, 46.7121395 ], + [ 8.167848, 46.7121411 ], + [ 8.1679953, 46.7121538 ], + [ 8.1681504, 46.7121948 ], + [ 8.168345, 46.7122644 ], + [ 8.1685077, 46.7123224 ], + [ 8.1686373, 46.7123575 ], + [ 8.1687934, 46.7123534 ], + [ 8.1689833, 46.7122538 ], + [ 8.1691255, 46.7121313 ], + [ 8.1692675, 46.7119974 ], + [ 8.1693751, 46.7119703 ], + [ 8.1694415, 46.7119259 ], + [ 8.1695083, 46.7118476 ], + [ 8.169652, 46.7116573 ], + [ 8.1698131, 46.7114165 ], + [ 8.1699739, 46.7111588 ], + [ 8.1701088, 46.7109855 ], + [ 8.1702166, 46.7109188 ], + [ 8.1704487, 46.7107916 ], + [ 8.1707463, 46.7106761 ], + [ 8.1711261, 46.7105333 ], + [ 8.1716958, 46.710291 ], + [ 8.1719115, 46.7101691 ], + [ 8.1720777, 46.7100693 ], + [ 8.1721621, 46.7099574 ], + [ 8.1723286, 46.7098238 ], + [ 8.1725203, 46.7096734 ], + [ 8.1726296, 46.7095393 ], + [ 8.1727225, 46.7093993 ], + [ 8.1728079, 46.7092479 ], + [ 8.172926, 46.7090912 ], + [ 8.1730594, 46.7089854 ], + [ 8.1733006, 46.708813 ], + [ 8.1736327, 46.7085909 ], + [ 8.1737589, 46.7084344 ], + [ 8.1738431, 46.7083167 ], + [ 8.1739138, 46.7081032 ], + [ 8.1740159, 46.7079183 ], + [ 8.1741078, 46.707829 ], + [ 8.1742325, 46.70774 ], + [ 8.1743086, 46.7076281 ], + [ 8.1743966, 46.7073696 ], + [ 8.174441999999999, 46.7071558 ], + [ 8.1744047, 46.7070032 ], + [ 8.1743494, 46.7069013 ], + [ 8.1743443, 46.7067659 ], + [ 8.1743304, 46.7066474 ], + [ 8.1742758, 46.7065396 ], + [ 8.1742777, 46.7064383 ], + [ 8.1743789, 46.706304 ], + [ 8.174612400000001, 46.706109 ], + [ 8.1749263, 46.7059881 ], + [ 8.1751912, 46.705878 ], + [ 8.1754465, 46.7057791 ], + [ 8.1757656, 46.7058047 ], + [ 8.1757395, 46.7055058 ], + [ 8.1756577, 46.7051441 ], + [ 8.1755404, 46.7048725 ], + [ 8.1754219, 46.7046965 ], + [ 8.1752598, 46.7046159 ], + [ 8.1751632, 46.7045418 ], + [ 8.1751499, 46.7044062 ], + [ 8.1751211, 46.7042144 ], + [ 8.1751825, 46.7040401 ], + [ 8.1753358, 46.7037711 ], + [ 8.1755131, 46.7035304 ], + [ 8.1756153, 46.7033511 ], + [ 8.175659, 46.7032049 ], + [ 8.1756391, 46.7030018 ], + [ 8.1752874, 46.7022654 ], + [ 8.175162, 46.7019993 ], + [ 8.1750774, 46.7017842 ], + [ 8.1750977, 46.7015928 ], + [ 8.1751267, 46.7013844 ], + [ 8.1751727, 46.7011594 ], + [ 8.1751123, 46.7009277 ], + [ 8.1750004, 46.7008139 ], + [ 8.1748231, 46.7006993 ], + [ 8.1746038, 46.7006183 ], + [ 8.1743921, 46.7005541 ], + [ 8.1741475, 46.7005348 ], + [ 8.173878, 46.7004926 ], + [ 8.1736444, 46.7003211 ], + [ 8.1733722, 46.7000704 ], + [ 8.1731555, 46.6998822 ], + [ 8.1730266, 46.6997794 ], + [ 8.1728563, 46.6996989 ], + [ 8.1726621, 46.699601 ], + [ 8.1725583, 46.699476 ], + [ 8.1724894, 46.699278 ], + [ 8.1724374, 46.6990577 ], + [ 8.1723842, 46.6988711 ], + [ 8.1722732, 46.6987065 ], + [ 8.1721858, 46.6985873 ], + [ 8.172131, 46.6984627 ], + [ 8.1722261, 46.6982438 ], + [ 8.172336, 46.6980927 ], + [ 8.1725122, 46.6978859 ], + [ 8.1726885, 46.697696 ], + [ 8.1728237, 46.6974774 ], + [ 8.1729849, 46.6972536 ], + [ 8.1731856, 46.6970471 ], + [ 8.1733936, 46.6969025 ], + [ 8.1738712, 46.6967438 ], + [ 8.17402, 46.6966889 ], + [ 8.1741527, 46.6965944 ], + [ 8.1742442, 46.6965332 ], + [ 8.1743843, 46.6965008 ], + [ 8.1745647, 46.6964858 ], + [ 8.1747618, 46.696437 ], + [ 8.1749526, 46.6963487 ], + [ 8.1751104, 46.6962319 ], + [ 8.175195, 46.6960861 ], + [ 8.1752646, 46.6959177 ], + [ 8.1752917, 46.6958052 ], + [ 8.1753684, 46.6956763 ], + [ 8.175486, 46.6955479 ], + [ 8.1756024, 46.6954589 ], + [ 8.1758257, 46.695354 ], + [ 8.1761139, 46.6952723 ], + [ 8.1764515, 46.6951628 ], + [ 8.1767167, 46.6950132 ], + [ 8.1769251, 46.6948405 ], + [ 8.1770426, 46.6947065 ], + [ 8.1771776, 46.6945387 ], + [ 8.1773348, 46.6944445 ], + [ 8.1775086, 46.6943617 ], + [ 8.1777565, 46.6942683 ], + [ 8.1780767, 46.6941982 ], + [ 8.1783563, 46.6941445 ], + [ 8.1785623, 46.6940902 ], + [ 8.1786461, 46.6940066 ], + [ 8.1787957, 46.6938896 ], + [ 8.1789705, 46.6937673 ], + [ 8.1791446, 46.6936506 ], + [ 8.1793595, 46.6935344 ], + [ 8.179583, 46.6934464 ], + [ 8.1797654, 46.6933356 ], + [ 8.17994, 46.6932019 ], + [ 8.1801394, 46.6930798 ], + [ 8.1803713, 46.6929525 ], + [ 8.1806701, 46.6927525 ], + [ 8.1808792, 46.692563 ], + [ 8.1810481, 46.6923109 ], + [ 8.1811323, 46.6921935 ], + [ 8.1812079, 46.692104 ], + [ 8.1813161, 46.6920149 ], + [ 8.1814252, 46.6919201 ], + [ 8.1815184, 46.6917518 ], + [ 8.1815971, 46.6915329 ], + [ 8.1817014, 46.6912746 ], + [ 8.1818041, 46.6910726 ], + [ 8.1818637, 46.6909549 ], + [ 8.1819389, 46.6908935 ], + [ 8.1820717, 46.6908103 ], + [ 8.1822033, 46.6907553 ], + [ 8.1823857, 46.6906443 ], + [ 8.1825774, 46.6905053 ], + [ 8.1827356, 46.6903602 ], + [ 8.1828874, 46.6901758 ], + [ 8.1829983, 46.6899795 ], + [ 8.1830833, 46.6898057 ], + [ 8.1831793, 46.6895416 ], + [ 8.1832437, 46.6892322 ], + [ 8.1832778, 46.6891592 ], + [ 8.1833366, 46.6890978 ], + [ 8.1837902, 46.6885724 ], + [ 8.1839403, 46.6884385 ], + [ 8.1841148, 46.6882938 ], + [ 8.1843881, 46.6881498 ], + [ 8.1846286, 46.6879944 ], + [ 8.184803, 46.6879003 ], + [ 8.1849612, 46.6877608 ], + [ 8.188349, 46.6839833 ], + [ 8.1884022, 46.6838091 ], + [ 8.1884231, 46.683612 ], + [ 8.1884294, 46.683302 ], + [ 8.1883936, 46.6830761 ], + [ 8.1883087, 46.6828498 ], + [ 8.1881654, 46.6826511 ], + [ 8.1879892, 46.6824915 ], + [ 8.1877152, 46.6822916 ], + [ 8.1875467, 46.6821601 ], + [ 8.1873785, 46.6819895 ], + [ 8.1872672, 46.6818586 ], + [ 8.1871295, 46.681412 ], + [ 8.1870353, 46.6812193 ], + [ 8.1869081, 46.6810658 ], + [ 8.1867967, 46.6809239 ], + [ 8.1866345, 46.680832 ], + [ 8.1864393, 46.6807794 ], + [ 8.1862274, 46.6807547 ], + [ 8.1859904, 46.6807467 ], + [ 8.1856712, 46.6807605 ], + [ 8.185246, 46.6807338 ], + [ 8.1848379, 46.6807016 ], + [ 8.1843806, 46.6806576 ], + [ 8.1839562, 46.6806253 ], + [ 8.1836804, 46.6805267 ], + [ 8.1834447, 46.6804399 ], + [ 8.1832755, 46.6803142 ], + [ 8.183083, 46.68016 ], + [ 8.1829144, 46.6800174 ], + [ 8.1830373, 46.6799848 ], + [ 8.1831698, 46.6799353 ], + [ 8.1833024, 46.6798409 ], + [ 8.1834282, 46.679718 ], + [ 8.183563, 46.6795447 ], + [ 8.1836992, 46.6792923 ], + [ 8.1837936, 46.6790903 ], + [ 8.1837797, 46.6789717 ], + [ 8.1837991, 46.6788423 ], + [ 8.1838588, 46.6787245 ], + [ 8.1839603, 46.6785677 ], + [ 8.1840537, 46.6784107 ], + [ 8.1842619, 46.6782268 ], + [ 8.1845451, 46.6780322 ], + [ 8.1847185, 46.6779268 ], + [ 8.1848857, 46.6777931 ], + [ 8.1849795, 46.6776025 ], + [ 8.1850084, 46.6773941 ], + [ 8.1849529, 46.6773372 ], + [ 8.1848148, 46.6772738 ], + [ 8.1846458, 46.6771651 ], + [ 8.1844604, 46.6770449 ], + [ 8.1843555, 46.6769649 ], + [ 8.1843498, 46.6768464 ], + [ 8.1843528, 46.6767112 ], + [ 8.1843067, 46.6765641 ], + [ 8.1842289, 46.6763773 ], + [ 8.184175, 46.6762584 ], + [ 8.1840947, 46.6761843 ], + [ 8.1839246, 46.6761094 ], + [ 8.1837379, 46.6760173 ], + [ 8.1835521, 46.6759309 ], + [ 8.1833998, 46.6757884 ], + [ 8.1833533, 46.6756753 ], + [ 8.1832076, 46.6755892 ], + [ 8.1830237, 46.675407 ], + [ 8.1827999, 46.6751681 ], + [ 8.1825999, 46.6749462 ], + [ 8.1824412, 46.6747473 ], + [ 8.1822897, 46.6745429 ], + [ 8.182253, 46.6743734 ], + [ 8.1822892, 46.6742158 ], + [ 8.1823264, 46.6740077 ], + [ 8.1823871, 46.6738504 ], + [ 8.1823172, 46.6736975 ], + [ 8.1821979, 46.6735216 ], + [ 8.1821513, 46.6733971 ], + [ 8.1822116, 46.6732681 ], + [ 8.1823051, 46.6731169 ], + [ 8.1823734, 46.6729765 ], + [ 8.1823769, 46.6728131 ], + [ 8.1822493, 46.6726822 ], + [ 8.1820718, 46.6725508 ], + [ 8.1817885, 46.6724409 ], + [ 8.1815199, 46.6723874 ], + [ 8.1811525, 46.6723444 ], + [ 8.1807367, 46.6722783 ], + [ 8.1803874, 46.6721789 ], + [ 8.1799645, 46.6720733 ], + [ 8.1799705, 46.6717972 ], + [ 8.1799259, 46.6715825 ], + [ 8.1798895, 46.6713736 ], + [ 8.1797383, 46.6711861 ], + [ 8.1795217, 46.6709979 ], + [ 8.1792753, 46.6706628 ], + [ 8.1791973, 46.6705099 ], + [ 8.1790382, 46.6702885 ], + [ 8.1789854, 46.6700737 ], + [ 8.1787612, 46.6698629 ], + [ 8.1786591, 46.6696816 ], + [ 8.1786216, 46.669512 ], + [ 8.1785685, 46.6693312 ], + [ 8.1784729, 46.6692118 ], + [ 8.1783295, 46.6690526 ], + [ 8.1782596, 46.6688997 ], + [ 8.1779631, 46.6686037 ], + [ 8.1776902, 46.6683585 ], + [ 8.17741, 46.6681133 ], + [ 8.1771514, 46.6679586 ], + [ 8.176966, 46.6678383 ], + [ 8.1768144, 46.6676789 ], + [ 8.1766647, 46.6674238 ], + [ 8.176595, 46.6672258 ], + [ 8.1764845, 46.6670331 ], + [ 8.1763155, 46.666913 ], + [ 8.1760407, 46.6667693 ], + [ 8.1663775, 46.6614527 ], + [ 8.1501087, 46.6651833 ], + [ 8.141178, 46.6634066 ], + [ 8.1224241, 46.6542551 ], + [ 8.1073165, 46.6498853 ], + [ 8.1072943, 46.6501387 ], + [ 8.107119, 46.650289 ], + [ 8.1070107, 46.6503781 ], + [ 8.1069509, 46.6504959 ], + [ 8.1068906, 46.6506361 ], + [ 8.1067067, 46.6508146 ], + [ 8.1065313, 46.6509593 ], + [ 8.106348, 46.6511209 ], + [ 8.106221, 46.6512886 ], + [ 8.1061355, 46.6514399 ], + [ 8.1059913, 46.6516583 ], + [ 8.1057722, 46.651966 ], + [ 8.1055527, 46.6522399 ], + [ 8.1053912, 46.6525201 ], + [ 8.1052611, 46.6528287 ], + [ 8.1051146, 46.6531316 ], + [ 8.104896, 46.6534112 ], + [ 8.1046546, 46.6535722 ], + [ 8.1045043, 46.6537002 ], + [ 8.1043707, 46.653851 ], + [ 8.1042526, 46.6540076 ], + [ 8.1041818, 46.6542323 ], + [ 8.1040533, 46.6544677 ], + [ 8.1039325, 46.654737 ], + [ 8.1037979, 46.6548821 ], + [ 8.1036096, 46.6549028 ], + [ 8.1033009, 46.6548318 ], + [ 8.1033858, 46.65503 ], + [ 8.1033984, 46.6551937 ], + [ 8.103186, 46.6551858 ], + [ 8.1032874, 46.6553953 ], + [ 8.1030008, 46.655398 ], + [ 8.1028121, 46.6554524 ], + [ 8.1025494, 46.6554778 ], + [ 8.1022221, 46.6554856 ], + [ 8.1020823, 46.6555348 ], + [ 8.1020229, 46.6556187 ], + [ 8.1019139, 46.6557247 ], + [ 8.1017555, 46.6558526 ], + [ 8.1015884, 46.6560088 ], + [ 8.1012818, 46.6561802 ], + [ 8.1010913, 46.656291 ], + [ 8.1009171, 46.6564075 ], + [ 8.1007341, 46.6565296 ], + [ 8.1005739, 46.656714 ], + [ 8.1003922, 46.6568134 ], + [ 8.1001269, 46.6569572 ], + [ 8.1000344, 46.657069 ], + [ 8.1000551, 46.6572271 ], + [ 8.1000828, 46.6574247 ], + [ 8.1000786, 46.6576163 ], + [ 8.0999446, 46.657739 ], + [ 8.0997535, 46.6578722 ], + [ 8.0975873, 46.6592246 ], + [ 8.0974218, 46.6593188 ], + [ 8.09729, 46.6593568 ], + [ 8.0969784, 46.6593816 ], + [ 8.0964626, 46.6594101 ], + [ 8.0958805, 46.6594827 ], + [ 8.0955357, 46.6595411 ], + [ 8.0952621, 46.6596735 ], + [ 8.0951364, 46.6598131 ], + [ 8.0950923, 46.6599423 ], + [ 8.0951122, 46.6601679 ], + [ 8.0952297, 46.6603609 ], + [ 8.0953486, 46.6605369 ], + [ 8.0954831, 46.6607187 ], + [ 8.095553, 46.6608942 ], + [ 8.095565, 46.6610747 ], + [ 8.0956166, 46.6612895 ], + [ 8.095596, 46.6614754 ], + [ 8.0956567, 46.6616959 ], + [ 8.0957094, 46.6618712 ], + [ 8.0958021, 46.6621033 ], + [ 8.0958393, 46.6622729 ], + [ 8.0958746, 46.662493 ], + [ 8.095884999999999, 46.6627412 ], + [ 8.0958879, 46.6629781 ], + [ 8.095848, 46.6632596 ], + [ 8.0958526, 46.6634342 ], + [ 8.0958978, 46.6635927 ], + [ 8.0959344, 46.6637848 ], + [ 8.0959198, 46.6640551 ], + [ 8.0958529, 46.664466 ], + [ 8.0958397, 46.6646575 ], + [ 8.0957629, 46.6647864 ], + [ 8.0955893, 46.6648803 ], + [ 8.095349, 46.6650018 ], + [ 8.0951023, 46.6650669 ], + [ 8.0949134, 46.66511 ], + [ 8.0947325, 46.6651474 ], + [ 8.0945751, 46.6652359 ], + [ 8.0943011, 46.6653966 ], + [ 8.0940778, 46.665507 ], + [ 8.0937809, 46.6656052 ], + [ 8.0934612, 46.6656469 ], + [ 8.0929926, 46.6657264 ], + [ 8.0926055, 46.6658632 ], + [ 8.0923722, 46.6660186 ], + [ 8.0920101, 46.6661331 ], + [ 8.0919566, 46.6663017 ], + [ 8.0917982, 46.6664353 ], + [ 8.0916686, 46.6663944 ], + [ 8.0914561, 46.6663752 ], + [ 8.0912839, 46.6663903 ], + [ 8.090975, 46.6663081 ], + [ 8.0907883, 46.6662666 ], + [ 8.0905904, 46.6663152 ], + [ 8.0904452, 46.6662573 ], + [ 8.0901535, 46.6661132 ], + [ 8.0897647, 46.6659738 ], + [ 8.0893436, 46.6658002 ], + [ 8.0891328, 46.6657189 ], + [ 8.0889806, 46.6655651 ], + [ 8.0887409, 46.6653257 ], + [ 8.0884774, 46.6650805 ], + [ 8.088283, 46.6650052 ], + [ 8.0881515, 46.6650094 ], + [ 8.0880525, 46.665059 ], + [ 8.0879686, 46.6651484 ], + [ 8.0878279, 46.6651975 ], + [ 8.0876303, 46.6652632 ], + [ 8.0873265, 46.6653331 ], + [ 8.0870306, 46.6653807 ], + [ 8.0867838, 46.66544 ], + [ 8.0865856, 46.6655224 ], + [ 8.0864053, 46.6655431 ], + [ 8.0863154, 46.6655364 ], + [ 8.0862265, 46.6654792 ], + [ 8.086025, 46.6653642 ], + [ 8.0856916, 46.6652818 ], + [ 8.0852521, 46.6651981 ], + [ 8.0850798, 46.6652019 ], + [ 8.0850216, 46.665252 ], + [ 8.0849628, 46.6653189 ], + [ 8.0848636, 46.6653573 ], + [ 8.084765, 46.6653788 ], + [ 8.0846262, 46.6653774 ], + [ 8.0845035, 46.6653648 ], + [ 8.0843166, 46.6653064 ], + [ 8.0840911, 46.6651631 ], + [ 8.0839142, 46.6650484 ], + [ 8.0837278, 46.6649617 ], + [ 8.0834599, 46.6648969 ], + [ 8.0831913, 46.664832 ], + [ 8.0829397, 46.6647617 ], + [ 8.0826881, 46.6646857 ], + [ 8.0824613, 46.6645704 ], + [ 8.0822425, 46.664506 ], + [ 8.0819821, 46.6644525 ], + [ 8.0816226, 46.6644374 ], + [ 8.0812467, 46.6644221 ], + [ 8.0809295, 46.6643228 ], + [ 8.0806927, 46.6643258 ], + [ 8.0804863, 46.6644139 ], + [ 8.0802874, 46.6645131 ], + [ 8.0800641, 46.6646178 ], + [ 8.0798418, 46.6646775 ], + [ 8.0795297, 46.6647361 ], + [ 8.0792262, 46.664761 ], + [ 8.079039, 46.6647421 ], + [ 8.0788847, 46.664684 ], + [ 8.0787219, 46.664654 ], + [ 8.0786063, 46.6646867 ], + [ 8.0784821, 46.6647529 ], + [ 8.0783102, 46.664785 ], + [ 8.0782533, 46.6647392 ], + [ 8.0781977, 46.664671 ], + [ 8.0780939, 46.6645909 ], + [ 8.0779801, 46.6645671 ], + [ 8.077792, 46.6645426 ], + [ 8.0776775, 46.6645356 ], + [ 8.0775889, 46.6645008 ], + [ 8.0774989, 46.6644829 ], + [ 8.0774004, 46.6645101 ], + [ 8.0772774, 46.664537 ], + [ 8.0771122, 46.6645859 ], + [ 8.0769891, 46.6646071 ], + [ 8.0768275, 46.6645433 ], + [ 8.0766323, 46.6644736 ], + [ 8.0764373, 46.6644207 ], + [ 8.0762249, 46.6644128 ], + [ 8.0760697, 46.6644167 ], + [ 8.0758588, 46.6643299 ], + [ 8.0756726, 46.6642602 ], + [ 8.0754929, 46.6642583 ], + [ 8.0753119, 46.6642789 ], + [ 8.0752483, 46.6642219 ], + [ 8.0751841, 46.664176 ], + [ 8.0750145, 46.6640615 ], + [ 8.0748458, 46.6639525 ], + [ 8.0746438, 46.66386 ], + [ 8.0744318, 46.6638184 ], + [ 8.0741715, 46.6637705 ], + [ 8.073812, 46.6637552 ], + [ 8.073632, 46.6637307 ], + [ 8.0734698, 46.6636895 ], + [ 8.0732981, 46.6636708 ], + [ 8.0730293, 46.6636565 ], + [ 8.0726126, 46.6636407 ], + [ 8.0718858, 46.6635764 ], + [ 8.0715666, 46.6635899 ], + [ 8.0713045, 46.6635927 ], + [ 8.0711237, 46.6636301 ], + [ 8.0709428, 46.6636677 ], + [ 8.0707289, 46.6637442 ], + [ 8.0705224, 46.663821 ], + [ 8.0703574, 46.6638868 ], + [ 8.0701922, 46.6639413 ], + [ 8.0699543, 46.6639896 ], + [ 8.0698142, 46.6640162 ], + [ 8.0694938, 46.664069 ], + [ 8.0692804, 46.6641174 ], + [ 8.0691655, 46.6641387 ], + [ 8.0690419, 46.6641826 ], + [ 8.0687694, 46.6642754 ], + [ 8.0685547, 46.6643576 ], + [ 8.0683004, 46.6643943 ], + [ 8.0681375, 46.6643644 ], + [ 8.0679996, 46.6643065 ], + [ 8.0677806, 46.6642251 ], + [ 8.0673269, 46.6640454 ], + [ 8.0670614, 46.6638959 ], + [ 8.066796, 46.6636901 ], + [ 8.0665211, 46.6635744 ], + [ 8.0662029, 46.6635314 ], + [ 8.0657791, 46.6634647 ], + [ 8.0654277, 46.6634496 ], + [ 8.0650693, 46.6633837 ], + [ 8.0647926, 46.66333 ], + [ 8.0646559, 46.6632326 ], + [ 8.0645176, 46.6632029 ], + [ 8.0643548, 46.6631843 ], + [ 8.0641185, 46.6631591 ], + [ 8.0638903, 46.6631228 ], + [ 8.0635977, 46.6630351 ], + [ 8.0631522, 46.6628609 ], + [ 8.0628215, 46.6626544 ], + [ 8.0626599, 46.6625851 ], + [ 8.0625898, 46.6624546 ], + [ 8.0625511, 46.662364 ], + [ 8.0625044, 46.6622733 ], + [ 8.0624237, 46.6622216 ], + [ 8.062343, 46.6621588 ], + [ 8.0622635, 46.6620677 ], + [ 8.0622015, 46.6619317 ], + [ 8.0621308, 46.6618181 ], + [ 8.0620257, 46.6617718 ], + [ 8.0618943, 46.6617761 ], + [ 8.0613218, 46.6617698 ], + [ 8.0607669, 46.6617412 ], + [ 8.060244, 46.6617185 ], + [ 8.0596651, 46.6616501 ], + [ 8.0595033, 46.6615694 ], + [ 8.059456, 46.6615069 ], + [ 8.0593917, 46.6614555 ], + [ 8.0593182, 46.6614546 ], + [ 8.0592533, 46.6614257 ], + [ 8.0591978, 46.6613574 ], + [ 8.0591265, 46.6612608 ], + [ 8.0589172, 46.6611008 ], + [ 8.0587165, 46.6609745 ], + [ 8.0585856, 46.6609505 ], + [ 8.0583657, 46.6609311 ], + [ 8.0581288, 46.6609229 ], + [ 8.0577692, 46.6608964 ], + [ 8.0574034, 46.6608304 ], + [ 8.0570214, 46.6607078 ], + [ 8.0567476, 46.6605413 ], + [ 8.0564491, 46.6603633 ], + [ 8.05636, 46.660351 ], + [ 8.0559931, 46.6606233 ], + [ 8.0558276, 46.6607116 ], + [ 8.0557377, 46.6607049 ], + [ 8.055528, 46.6605842 ], + [ 8.0553461, 46.6606668 ], + [ 8.0552399, 46.6606656 ], + [ 8.0550286, 46.6606126 ], + [ 8.054703, 46.6605583 ], + [ 8.0529335, 46.661001 ], + [ 8.0527843, 46.6610951 ], + [ 8.052593, 46.6612227 ], + [ 8.0524006, 46.6613953 ], + [ 8.0521756, 46.6615676 ], + [ 8.0519826, 46.6617628 ], + [ 8.0518383, 46.661998 ], + [ 8.0516773, 46.6622048 ], + [ 8.0514938, 46.6623719 ], + [ 8.0512784, 46.6624653 ], + [ 8.0509243, 46.6625573 ], + [ 8.0507769, 46.662595 ], + [ 8.0506933, 46.6626448 ], + [ 8.0506264, 46.6627174 ], + [ 8.0503947, 46.6628163 ], + [ 8.0501544, 46.6629377 ], + [ 8.0498914, 46.6630081 ], + [ 8.0495791, 46.6630553 ], + [ 8.0492997, 46.6631143 ], + [ 8.0490618, 46.6631624 ], + [ 8.0488225, 46.6632386 ], + [ 8.0485501, 46.663337 ], + [ 8.0484253, 46.6634259 ], + [ 8.048217, 46.6635645 ], + [ 8.0480329, 46.6637541 ], + [ 8.047792, 46.6638925 ], + [ 8.0474875, 46.6639793 ], + [ 8.0472902, 46.6640108 ], + [ 8.0471024, 46.6640143 ], + [ 8.04675, 46.6640499 ], + [ 8.046527, 46.6641151 ], + [ 8.0464846, 46.6641936 ], + [ 8.046498, 46.6642952 ], + [ 8.0466292, 46.6646349 ], + [ 8.0467302, 46.6648276 ], + [ 8.0467835, 46.6649918 ], + [ 8.0468125, 46.6651724 ], + [ 8.0467349, 46.6653182 ], + [ 8.0466509, 46.6653962 ], + [ 8.0464924, 46.665541 ], + [ 8.0462924, 46.665691 ], + [ 8.0459856, 46.6658679 ], + [ 8.0457856, 46.666018 ], + [ 8.0456928, 46.6661128 ], + [ 8.0456726, 46.6662817 ], + [ 8.0456589, 46.6665126 ], + [ 8.0455699, 46.6668049 ], + [ 8.0454867, 46.6671816 ], + [ 8.0453945, 46.6672652 ], + [ 8.045272, 46.6672581 ], + [ 8.0451508, 46.6672286 ], + [ 8.0449305, 46.6671754 ], + [ 8.0445907, 46.6670307 ], + [ 8.0440139, 46.6668664 ], + [ 8.043679, 46.6668627 ], + [ 8.0434316, 46.6669389 ], + [ 8.0431754, 46.6670375 ], + [ 8.0429689, 46.6671197 ], + [ 8.0427653, 46.6671006 ], + [ 8.0424466, 46.66708 ], + [ 8.0420066, 46.6670301 ], + [ 8.0417299, 46.6669707 ], + [ 8.0414526, 46.666928 ], + [ 8.0411683, 46.6668516 ], + [ 8.0408905, 46.6668428 ], + [ 8.0405865, 46.6668959 ], + [ 8.040217, 46.6669425 ], + [ 8.0397993, 46.6669772 ], + [ 8.0394306, 46.6670182 ], + [ 8.0391679, 46.6670435 ], + [ 8.0389701, 46.6671089 ], + [ 8.0387384, 46.6672022 ], + [ 8.0385814, 46.6672624 ], + [ 8.0383515, 46.6672994 ], + [ 8.0379576, 46.6673513 ], + [ 8.0375552, 46.6674425 ], + [ 8.0371926, 46.6675232 ], + [ 8.0369966, 46.667521 ], + [ 8.0368332, 46.6675135 ], + [ 8.0366779, 46.667506 ], + [ 8.0365135, 46.667555 ], + [ 8.0363402, 46.6676151 ], + [ 8.0362077, 46.6676756 ], + [ 8.0360683, 46.6677022 ], + [ 8.0358798, 46.667717 ], + [ 8.0356505, 46.6677314 ], + [ 8.0354865, 46.6677464 ], + [ 8.0353703, 46.6677958 ], + [ 8.03518, 46.6678727 ], + [ 8.0350401, 46.6679218 ], + [ 8.0349175, 46.6679149 ], + [ 8.0347383, 46.6678902 ], + [ 8.0345912, 46.6678773 ], + [ 8.0343695, 46.66792 ], + [ 8.0341227, 46.6679848 ], + [ 8.0339244, 46.6680672 ], + [ 8.0337516, 46.6681046 ], + [ 8.0334376, 46.6682196 ], + [ 8.0332398, 46.6682737 ], + [ 8.0330268, 46.6682938 ], + [ 8.0327478, 46.6683245 ], + [ 8.032379, 46.6683543 ], + [ 8.0320668, 46.6684128 ], + [ 8.0317296, 46.6684992 ], + [ 8.0315096, 46.6684686 ], + [ 8.031289, 46.6684604 ], + [ 8.0310357, 46.6684463 ], + [ 8.0307082, 46.6684483 ], + [ 8.03042, 46.6685352 ], + [ 8.0301242, 46.6685994 ], + [ 8.0298937, 46.668659 ], + [ 8.029656, 46.6686563 ], + [ 8.0294203, 46.6686141 ], + [ 8.029168, 46.6685437 ], + [ 8.0290239, 46.6684349 ], + [ 8.0286169, 46.6683402 ], + [ 8.0282216, 46.6681158 ], + [ 8.0280041, 46.6680119 ], + [ 8.02776, 46.6679527 ], + [ 8.0275393, 46.6679277 ], + [ 8.0272855, 46.667953 ], + [ 8.0270633, 46.6680181 ], + [ 8.0268979, 46.6680615 ], + [ 8.0267178, 46.6680932 ], + [ 8.026562, 46.6681083 ], + [ 8.0263892, 46.6681403 ], + [ 8.0262328, 46.6681779 ], + [ 8.0261412, 46.6682502 ], + [ 8.0259847, 46.6682766 ], + [ 8.0258056, 46.6682521 ], + [ 8.0256165, 46.6682894 ], + [ 8.0255079, 46.668367 ], + [ 8.0254253, 46.6684282 ], + [ 8.0252373, 46.6684204 ], + [ 8.0250089, 46.6683727 ], + [ 8.0247889, 46.6683421 ], + [ 8.0246326, 46.6683854 ], + [ 8.0245479, 46.6684916 ], + [ 8.0244461, 46.6686651 ], + [ 8.0243993, 46.6688733 ], + [ 8.0242811, 46.669041 ], + [ 8.0241463, 46.6691861 ], + [ 8.0235113, 46.6693819 ], + [ 8.0231485, 46.6695187 ], + [ 8.0230394, 46.6696246 ], + [ 8.0229788, 46.6697593 ], + [ 8.0228937, 46.6698935 ], + [ 8.0227933, 46.669977 ], + [ 8.0226282, 46.6700484 ], + [ 8.0224455, 46.6701422 ], + [ 8.0222787, 46.6702813 ], + [ 8.022005, 46.6704248 ], + [ 8.021715, 46.6705737 ], + [ 8.0214742, 46.6707345 ], + [ 8.0213891, 46.6708687 ], + [ 8.0214094, 46.6710099 ], + [ 8.0214726, 46.6711178 ], + [ 8.0214621, 46.6712022 ], + [ 8.0213366, 46.671308 ], + [ 8.0212041, 46.6713684 ], + [ 8.0208925, 46.6714044 ], + [ 8.0204992, 46.6714394 ], + [ 8.020114, 46.6714689 ], + [ 8.0196872, 46.6715091 ], + [ 8.0193916, 46.6715847 ], + [ 8.0192351, 46.6716167 ], + [ 8.0189894, 46.6716309 ], + [ 8.0186602, 46.6717061 ], + [ 8.0184448, 46.6718052 ], + [ 8.0182867, 46.671916 ], + [ 8.0181865, 46.6720165 ], + [ 8.0179569, 46.6720082 ], + [ 8.0177294, 46.6719717 ], + [ 8.0174761, 46.6719577 ], + [ 8.0171084, 46.6719421 ], + [ 8.0167015, 46.671853 ], + [ 8.0166658, 46.6716496 ], + [ 8.016419, 46.6717145 ], + [ 8.0161972, 46.6717457 ], + [ 8.0159258, 46.6718047 ], + [ 8.0155493, 46.6718061 ], + [ 8.0153456, 46.6717813 ], + [ 8.0152498, 46.6716843 ], + [ 8.0151622, 46.6715817 ], + [ 8.0150321, 46.6715578 ], + [ 8.0148687, 46.6715559 ], + [ 8.0147129, 46.6715767 ], + [ 8.0145149, 46.6716196 ], + [ 8.0142448, 46.6716447 ], + [ 8.0140323, 46.671631 ], + [ 8.0138045, 46.6715664 ], + [ 8.0135839, 46.6715582 ], + [ 8.0133324, 46.6714877 ], + [ 8.0131624, 46.6714068 ], + [ 8.0130995, 46.6713272 ], + [ 8.0130931, 46.6712595 ], + [ 8.013111, 46.6711807 ], + [ 8.0130964, 46.6711128 ], + [ 8.0129575, 46.6711 ], + [ 8.0127778, 46.6711036 ], + [ 8.0125722, 46.6711295 ], + [ 8.0122688, 46.6711711 ], + [ 8.0119981, 46.6712131 ], + [ 8.0116693, 46.6712489 ], + [ 8.0113099, 46.6712448 ], + [ 8.0109999, 46.6712018 ], + [ 8.0109154, 46.6713248 ], + [ 8.0107853, 46.6713007 ], + [ 8.0106918, 46.6714238 ], + [ 8.0105833, 46.6715071 ], + [ 8.0104344, 46.6715618 ], + [ 8.0101805, 46.6715758 ], + [ 8.009862, 46.6715834 ], + [ 8.0095841, 46.6715577 ], + [ 8.0091277, 46.6715017 ], + [ 8.0085913, 46.671366 ], + [ 8.0080379, 46.6712469 ], + [ 8.0074033, 46.6710987 ], + [ 8.0071675, 46.6710452 ], + [ 8.0070205, 46.6710435 ], + [ 8.0068646, 46.6710586 ], + [ 8.0067672, 46.6710351 ], + [ 8.0067606, 46.670956 ], + [ 8.0067957, 46.6708719 ], + [ 8.006798, 46.6707816 ], + [ 8.0066493, 46.6708532 ], + [ 8.0065575, 46.670903 ], + [ 8.006476, 46.6709189 ], + [ 8.0063691, 46.6709289 ], + [ 8.0063294, 46.6708777 ], + [ 8.0062582, 46.6707867 ], + [ 8.0061619, 46.670718 ], + [ 8.0059704, 46.6708342 ], + [ 8.0058023, 46.670697 ], + [ 8.0057417, 46.6708428 ], + [ 8.0055806, 46.6707395 ], + [ 8.0055923, 46.67092 ], + [ 8.0053483, 46.6708666 ], + [ 8.0053295, 46.6709452 ], + [ 8.0053437, 46.6710469 ], + [ 8.005398, 46.6711715 ], + [ 8.0053395, 46.671199 ], + [ 8.0052414, 46.6711924 ], + [ 8.0050957, 46.6711568 ], + [ 8.0048516, 46.6710863 ], + [ 8.0045586, 46.6710379 ], + [ 8.00415, 46.6710107 ], + [ 8.0036755, 46.6710165 ], + [ 8.0033404, 46.6710013 ], + [ 8.0030364, 46.6710599 ], + [ 8.0020903, 46.6715903 ], + [ 8.0016912, 46.6718506 ], + [ 8.001491, 46.6719949 ], + [ 8.0014379, 46.6721521 ], + [ 8.0014253, 46.6723549 ], + [ 8.0013027, 46.6726693 ], + [ 8.0011865, 46.6730345 ], + [ 8.000965, 46.6737253 ], + [ 8.0008448, 46.6739494 ], + [ 8.0007287, 46.6740157 ], + [ 8.0006381, 46.674026 ], + [ 8.0004839, 46.6739621 ], + [ 8.0004063, 46.6741191 ], + [ 8.0000958, 46.6741156 ], + [ 8.0001467, 46.6743755 ], + [ 7.9999434, 46.6743055 ], + [ 7.9997562, 46.6742921 ], + [ 7.9998104, 46.6743941 ], + [ 7.9999055, 46.674508 ], + [ 7.999967, 46.6746891 ], + [ 7.9998123, 46.6746591 ], + [ 7.9998474, 46.6748907 ], + [ 7.9999868, 46.6748585 ], + [ 8.0002086, 46.6748216 ], + [ 8.0004245, 46.6746943 ], + [ 8.0005758, 46.6745551 ], + [ 8.0007542, 46.674269699999996 ], + [ 8.0009405, 46.6740463 ], + [ 8.0011657, 46.6738685 ], + [ 8.0013163, 46.6737406 ], + [ 8.0014563, 46.6736859 ], + [ 8.001653, 46.6736712 ], + [ 8.0018567, 46.6737018 ], + [ 8.0021504, 46.6737446 ], + [ 8.0024108, 46.6738095 ], + [ 8.0027696, 46.6738307 ], + [ 8.0030229, 46.6738391 ], + [ 8.0033592, 46.6738204 ], + [ 8.0037368, 46.6737571 ], + [ 8.0041653, 46.6736549 ], + [ 8.0045359, 46.673552 ], + [ 8.0048733, 46.673477 ], + [ 8.005258, 46.6734702 ], + [ 8.0057411, 46.6734306 ], + [ 8.0055905, 46.6735585 ], + [ 8.0054393, 46.673709 ], + [ 8.00538, 46.6738155 ], + [ 8.0053613, 46.6738998 ], + [ 8.0054079, 46.6739848 ], + [ 8.0055452, 46.674071 ], + [ 8.0056736, 46.6741571 ], + [ 8.0058037, 46.6741811 ], + [ 8.005944, 46.6741601 ], + [ 8.0060587, 46.674122 ], + [ 8.0062806, 46.6740907 ], + [ 8.0064523, 46.6741095 ], + [ 8.0066548, 46.6741795 ], + [ 8.006784, 46.6742656 ], + [ 8.0069636, 46.674262 ], + [ 8.007283, 46.67426 ], + [ 8.007545, 46.6742462 ], + [ 8.0076657, 46.6743039 ], + [ 8.0077482, 46.6742991 ], + [ 8.0080522, 46.6742351 ], + [ 8.0085044, 46.674133 ], + [ 8.0088074, 46.6741253 ], + [ 8.009086, 46.6741284 ], + [ 8.0093387, 46.6741539 ], + [ 8.0095255, 46.6742124 ], + [ 8.0097345, 46.6743557 ], + [ 8.0099021, 46.6745211 ], + [ 8.0100686, 46.6747428 ], + [ 8.010204, 46.6748797 ], + [ 8.0105489, 46.6751317 ], + [ 8.0106874, 46.6751671 ], + [ 8.0107925, 46.675219 ], + [ 8.0109209, 46.6753107 ], + [ 8.0110826, 46.6753858 ], + [ 8.0112951, 46.6753939 ], + [ 8.0114276, 46.675339 ], + [ 8.0116674, 46.675229 ], + [ 8.0118571, 46.6751691 ], + [ 8.0121596, 46.6751895 ], + [ 8.0123375, 46.6752536 ], + [ 8.0124491, 46.6753788 ], + [ 8.0125514, 46.6755491 ], + [ 8.0126359, 46.6757418 ], + [ 8.0128113, 46.6759467 ], + [ 8.0129215, 46.6760946 ], + [ 8.0128489, 46.6764095 ], + [ 8.0127084, 46.6767911 ], + [ 8.0126256, 46.6771511 ], + [ 8.012569, 46.6774323 ], + [ 8.0125539, 46.6777027 ], + [ 8.0124986, 46.6779557 ], + [ 8.0124128, 46.678107 ], + [ 8.0122617, 46.6782688 ], + [ 8.0120827, 46.6785655 ], + [ 8.0118424, 46.6790082 ], + [ 8.0114439, 46.6798718 ], + [ 8.0115019, 46.6801768 ], + [ 8.0115964, 46.6803132 ], + [ 8.0118628, 46.6804741 ], + [ 8.0120303, 46.6806283 ], + [ 8.0120842, 46.6807811 ], + [ 8.0121273, 46.6809958 ], + [ 8.0121466, 46.6811989 ], + [ 8.0122146, 46.6814422 ], + [ 8.0122258, 46.6816509 ], + [ 8.0122701, 46.681826 ], + [ 8.0123252, 46.6819339 ], + [ 8.0124525, 46.6820762 ], + [ 8.0125646, 46.6821677 ], + [ 8.0127169, 46.6822765 ], + [ 8.012943, 46.6824088 ], + [ 8.0131439, 46.6825576 ], + [ 8.0133104, 46.6827682 ], + [ 8.0134201, 46.6829498 ], + [ 8.0134044, 46.6832372 ], + [ 8.0133744, 46.6834848 ], + [ 8.0133277, 46.6837042 ], + [ 8.0133453, 46.6839749 ], + [ 8.0134954, 46.6841852 ], + [ 8.0138312, 46.6844878 ], + [ 8.0140889, 46.6846768 ], + [ 8.0143062, 46.6848258 ], + [ 8.0143774, 46.6849168 ], + [ 8.0144159, 46.6850018 ], + [ 8.0144125, 46.6851484 ], + [ 8.0144656, 46.6852956 ], + [ 8.0146404, 46.685523 ], + [ 8.0147011, 46.6856929 ], + [ 8.0147858, 46.6859024 ], + [ 8.0148712, 46.686095 ], + [ 8.0149395, 46.6862931 ], + [ 8.0150261, 46.6864463 ], + [ 8.0151797, 46.6865213 ], + [ 8.0153571, 46.6866079 ], + [ 8.015519, 46.6866943 ], + [ 8.0157852, 46.6868383 ], + [ 8.0160357, 46.6869596 ], + [ 8.0162607, 46.6871368 ], + [ 8.0166473, 46.6873836 ], + [ 8.0171653, 46.6876094 ], + [ 8.0174478, 46.6877422 ], + [ 8.0176676, 46.687818 ], + [ 8.0177802, 46.6878813 ], + [ 8.0179152, 46.688052 ], + [ 8.0179946, 46.6881431 ], + [ 8.0180992, 46.6882231 ], + [ 8.0182365, 46.688298 ], + [ 8.018332, 46.6883723 ], + [ 8.0184129, 46.6884409 ], + [ 8.0186622, 46.6886072 ], + [ 8.0188963, 46.688717 ], + [ 8.0191404, 46.6887761 ], + [ 8.0193676, 46.6888632 ], + [ 8.0195871, 46.6889052 ], + [ 8.0197653, 46.6889974 ], + [ 8.0199837, 46.6890902 ], + [ 8.0202021, 46.6891941 ], + [ 8.0204789, 46.6892479 ], + [ 8.0206966, 46.6893632 ], + [ 8.0208976, 46.6895063 ], + [ 8.021067, 46.6896098 ], + [ 8.0213918, 46.6897262 ], + [ 8.0216024, 46.689785 ], + [ 8.0218454, 46.6898892 ], + [ 8.0223903, 46.6900306 ], + [ 8.02292, 46.6901324 ], + [ 8.0235221, 46.6902689 ], + [ 8.0235459, 46.6902805 ], + [ 8.0235759, 46.6904105 ], + [ 8.0237113, 46.6905416 ], + [ 8.0239812, 46.6905616 ], + [ 8.0242586, 46.6905986 ], + [ 8.0245037, 46.6905956 ], + [ 8.0247169, 46.6905924 ], + [ 8.0249695, 46.6906066 ], + [ 8.0251081, 46.6906476 ], + [ 8.025247, 46.6906492 ], + [ 8.0254105, 46.6906566 ], + [ 8.0256708, 46.6907047 ], + [ 8.0258828, 46.6907353 ], + [ 8.0262086, 46.6907953 ], + [ 8.0265193, 46.6908102 ], + [ 8.0268785, 46.6908592 ], + [ 8.0271628, 46.6909245 ], + [ 8.027407, 46.6909893 ], + [ 8.0275297, 46.6910019 ], + [ 8.0276288, 46.6909523 ], + [ 8.0278261, 46.6909094 ], + [ 8.0279744, 46.6908717 ], + [ 8.0281239, 46.6908001 ], + [ 8.028282, 46.6906891 ], + [ 8.0285389, 46.690568 ], + [ 8.0290238, 46.690455 ], + [ 8.0292861, 46.690458 ], + [ 8.0295478, 46.6904721 ], + [ 8.0297356, 46.690463 ], + [ 8.0299799, 46.6905334 ], + [ 8.0303137, 46.6905767 ], + [ 8.0306222, 46.6906928 ], + [ 8.0308406, 46.6907911 ], + [ 8.030968, 46.6909335 ], + [ 8.0310306, 46.6910469 ], + [ 8.0311521, 46.6911047 ], + [ 8.0311663, 46.6912007 ], + [ 8.0311878, 46.6912967 ], + [ 8.0313339, 46.6913604 ], + [ 8.0315612, 46.6914419 ], + [ 8.0317889, 46.6914951 ], + [ 8.0320078, 46.6915653 ], + [ 8.0322443, 46.6915961 ], + [ 8.032405, 46.6917162 ], + [ 8.0324682, 46.6918185 ], + [ 8.0325372, 46.691994 ], + [ 8.0325637, 46.6922536 ], + [ 8.0325553, 46.6925975 ], + [ 8.0326361, 46.6929591 ], + [ 8.0327846, 46.6932371 ], + [ 8.0329856, 46.6933802 ], + [ 8.0333693, 46.6934239 ], + [ 8.0337863, 46.6934455 ], + [ 8.034031, 46.6934822 ], + [ 8.0343753, 46.6934353 ], + [ 8.03477, 46.6933608 ], + [ 8.0348086, 46.693457 ], + [ 8.0348228, 46.693553 ], + [ 8.0349029, 46.6936272 ], + [ 8.0348924, 46.6937173 ], + [ 8.0348406, 46.6938351 ], + [ 8.0347285, 46.6940425 ], + [ 8.0346435, 46.6941879 ], + [ 8.034615, 46.6943399 ], + [ 8.0346116, 46.6944751 ], + [ 8.0346731, 46.694645 ], + [ 8.0347994, 46.6948324 ], + [ 8.0348686, 46.6950249 ], + [ 8.0348715, 46.6952166 ], + [ 8.034859, 46.6954137 ], + [ 8.0347721, 46.6956044 ], + [ 8.0346258, 46.6958959 ], + [ 8.0344294, 46.6962433 ], + [ 8.0343075, 46.6965181 ], + [ 8.0342114, 46.6967707 ], + [ 8.0341329, 46.696984 ], + [ 8.0342018, 46.6971539 ], + [ 8.0343738, 46.6974829 ], + [ 8.0345457, 46.6978061 ], + [ 8.034575, 46.6979417 ], + [ 8.0345087, 46.6980029 ], + [ 8.0343761, 46.6980635 ], + [ 8.0341454, 46.6981116 ], + [ 8.0341514, 46.6982075 ], + [ 8.0343502, 46.6984465 ], + [ 8.0345342, 46.6986065 ], + [ 8.0346277, 46.6987879 ], + [ 8.034681, 46.6989519 ], + [ 8.0346924, 46.6991663 ], + [ 8.034737, 46.6993585 ], + [ 8.0347726, 46.6995506 ], + [ 8.0348177, 46.699709 ], + [ 8.0349698, 46.6998628 ], + [ 8.0351043, 46.7000561 ], + [ 8.0352953, 46.7002555 ], + [ 8.0354387, 46.7004375 ], + [ 8.0356558, 46.700564 ], + [ 8.0359317, 46.7006798 ], + [ 8.0362238, 46.7007845 ], + [ 8.0364667, 46.7008718 ], + [ 8.0366532, 46.7009641 ], + [ 8.0368706, 46.7011131 ], + [ 8.0370313, 46.7012333 ], + [ 8.0371814, 46.7014323 ], + [ 8.0372752, 46.7016307 ], + [ 8.0373594, 46.7018571 ], + [ 8.0374279, 46.7020664 ], + [ 8.037449, 46.7021963 ], + [ 8.0375268, 46.7023607 ], + [ 8.037662, 46.7025369 ], + [ 8.0378939, 46.7027425 ], + [ 8.0381686, 46.7028978 ], + [ 8.0384834, 46.7030592 ], + [ 8.0388568, 46.7031986 ], + [ 8.0394589, 46.7033238 ], + [ 8.0400787, 46.7034265 ], + [ 8.0404064, 46.7034245 ], + [ 8.0405879, 46.7033533 ], + [ 8.0407614, 46.7032988 ], + [ 8.0410258, 46.7031947 ], + [ 8.041331, 46.7030854 ], + [ 8.041561, 46.7030429 ], + [ 8.0418718, 46.7030632 ], + [ 8.0424354, 46.7031033 ], + [ 8.0424363, 46.703402 ], + [ 8.0426068, 46.7034547 ], + [ 8.0427605, 46.7035298 ], + [ 8.0428733, 46.7036042 ], + [ 8.0430352, 46.7036794 ], + [ 8.0433536, 46.7037223 ], + [ 8.0435229, 46.7038088 ], + [ 8.043661, 46.703878 ], + [ 8.0437236, 46.7039971 ], + [ 8.0437686, 46.7041498 ], + [ 8.0437636, 46.7043527 ], + [ 8.0437339, 46.7045497 ], + [ 8.0437348, 46.7048484 ], + [ 8.0437777, 46.7051026 ], + [ 8.0438555, 46.7052613 ], + [ 8.0440023, 46.7053024 ], + [ 8.0441073, 46.705343 ], + [ 8.0442044, 46.7054006 ], + [ 8.0442611, 46.7054294 ], + [ 8.0442665, 46.7055421 ], + [ 8.0442554, 46.7056435 ], + [ 8.0442347, 46.7058405 ], + [ 8.044379, 46.7059492 ], + [ 8.0444761, 46.7060124 ], + [ 8.0444825, 46.7060689 ], + [ 8.0444715, 46.7061815 ], + [ 8.0445009, 46.7063228 ], + [ 8.0446037, 46.706459100000004 ], + [ 8.0446321, 46.7066511 ], + [ 8.0446679, 46.7068545 ], + [ 8.0446378, 46.7070909 ], + [ 8.0445737, 46.7073496 ], + [ 8.0456995, 46.7075199 ], + [ 8.0458629, 46.7075161 ], + [ 8.0460206, 46.7074445 ], + [ 8.0461525, 46.7073954 ], + [ 8.0463156, 46.7074365 ], + [ 8.0464446, 46.7074944 ], + [ 8.0465847, 46.7074564 ], + [ 8.0467494, 46.7074189 ], + [ 8.0469287, 46.7074434 ], + [ 8.0471671, 46.7074234 ], + [ 8.0472476, 46.7074583 ], + [ 8.0473207, 46.7074929 ], + [ 8.0474182, 46.7075108 ], + [ 8.0475328, 46.7075234 ], + [ 8.0477213, 46.707503 ], + [ 8.0479841, 46.7074664 ], + [ 8.0482294, 46.7074747 ], + [ 8.0485081, 46.7074722 ], + [ 8.0487855, 46.7075035 ], + [ 8.0490799, 46.7075236 ], + [ 8.0494157, 46.7075104 ], + [ 8.0499634, 46.7075221 ], + [ 8.0503009, 46.7074413 ], + [ 8.0503327, 46.7075037 ], + [ 8.0504449, 46.7076007 ], + [ 8.0505741, 46.7076754 ], + [ 8.050761, 46.7077226 ], + [ 8.0509402, 46.7077415 ], + [ 8.0510956, 46.7077545 ], + [ 8.0512179, 46.7077954 ], + [ 8.0512978, 46.7078526 ], + [ 8.0513944, 46.7079382 ], + [ 8.0515394, 46.708035699999996 ], + [ 8.0517105, 46.7080601 ], + [ 8.0518664, 46.7080449 ], + [ 8.0519068, 46.7080735 ], + [ 8.0519284, 46.7081753 ], + [ 8.0519834, 46.7082717 ], + [ 8.0520559, 46.7083175 ], + [ 8.0521692, 46.7083696 ], + [ 8.0523568, 46.7083998 ], + [ 8.0526344, 46.708448 ], + [ 8.052844, 46.7085518 ], + [ 8.0530306, 46.708644 ], + [ 8.0531667, 46.7087526 ], + [ 8.0532772, 46.7089117 ], + [ 8.0533802, 46.7090538 ], + [ 8.053509, 46.709168 ], + [ 8.0535965, 46.7092479 ], + [ 8.0536201, 46.7093046 ], + [ 8.053723, 46.7094465 ], + [ 8.0538837, 46.7095554 ], + [ 8.0540128, 46.7096245 ], + [ 8.0540778, 46.7096591 ], + [ 8.0541403, 46.7097668 ], + [ 8.0542287, 46.7098468 ], + [ 8.0544572, 46.7098887 ], + [ 8.0546685, 46.7099249 ], + [ 8.0548146, 46.7099773 ], + [ 8.0549859, 46.7100185 ], + [ 8.0550818, 46.7101154 ], + [ 8.0552087, 46.7102747 ], + [ 8.0553385, 46.7103382 ], + [ 8.0554207, 46.7103053 ], + [ 8.0555457, 46.7102277 ], + [ 8.055836, 46.710383 ], + [ 8.0561195, 46.7105159 ], + [ 8.0563517, 46.7107326 ], + [ 8.056554, 46.710842 ], + [ 8.0567153, 46.7109339 ], + [ 8.0568863, 46.7109528 ], + [ 8.0570571, 46.7110223 ], + [ 8.0572779, 46.7110304 ], + [ 8.0574112, 46.7112517 ], + [ 8.057537, 46.711456 ], + [ 8.0576478, 46.7116375 ], + [ 8.0577927, 46.7117237 ], + [ 8.0577256, 46.7117906 ], + [ 8.0576106, 46.7118119 ], + [ 8.0574207, 46.7118662 ], + [ 8.057231699999999, 46.7119149 ], + [ 8.0571793, 46.7120496 ], + [ 8.0571181, 46.7122068 ], + [ 8.0570395, 46.7124088 ], + [ 8.056945, 46.7125769 ], + [ 8.0567531, 46.7127383 ], + [ 8.0566005, 46.7129678 ], + [ 8.0566357, 46.713188 ], + [ 8.0567366, 46.7134315 ], + [ 8.0568619, 46.713664 ], + [ 8.0570256, 46.7139758 ], + [ 8.0572006, 46.714192 ], + [ 8.0573996, 46.7144366 ], + [ 8.0575254, 46.7146409 ], + [ 8.0576033, 46.7148052 ], + [ 8.057565, 46.7150303 ], + [ 8.0574455, 46.7152263 ], + [ 8.0572611, 46.7153991 ], + [ 8.0575398, 46.7154021 ], + [ 8.0578015, 46.7154106 ], + [ 8.058096, 46.7154252 ], + [ 8.0584481, 46.715412 ], + [ 8.0587255, 46.715432 ], + [ 8.0589798, 46.7154405 ], + [ 8.059249, 46.715466 ], + [ 8.0595354, 46.7154861 ], + [ 8.0599278, 46.7154903 ], + [ 8.06028, 46.7154829 ], + [ 8.0605499, 46.7154915 ], + [ 8.0606889, 46.7154986 ], + [ 8.0609974, 46.7155978 ], + [ 8.0614195, 46.715766 ], + [ 8.061728, 46.7158651 ], + [ 8.062152, 46.7159149 ], + [ 8.062600400000001, 46.7160213 ], + [ 8.063074, 46.7160434 ], + [ 8.0638941, 46.7159959 ], + [ 8.0643046, 46.7159328 ], + [ 8.0646329, 46.7159082 ], + [ 8.0649497, 46.7160188 ], + [ 8.0652326, 46.7161628 ], + [ 8.0657272, 46.7163767 ], + [ 8.0659461, 46.7164355 ], + [ 8.0661838, 46.7164212 ], + [ 8.0667511, 46.7163428 ], + [ 8.0672113, 46.7162745 ], + [ 8.0674728, 46.7162662 ], + [ 8.0676996, 46.7163701 ], + [ 8.0680318, 46.7165316 ], + [ 8.0687115, 46.716849 ], + [ 8.0689613, 46.7170266 ], + [ 8.0691313, 46.717090400000004 ], + [ 8.069277, 46.7171821 ], + [ 8.0693893, 46.7172735 ], + [ 8.0695577, 46.7174164 ], + [ 8.0697893, 46.7176444 ], + [ 8.0699912, 46.7177818 ], + [ 8.0700963, 46.7178224 ], + [ 8.070275, 46.7178695 ], + [ 8.0705859, 46.7178897 ], + [ 8.0709195, 46.7179667 ], + [ 8.0712047, 46.7180262 ], + [ 8.0713023, 46.7180554 ], + [ 8.071334, 46.7181065 ], + [ 8.0713732, 46.7181746 ], + [ 8.0714041, 46.7182312 ], + [ 8.0714751, 46.7183561 ], + [ 8.0715297, 46.7184807 ], + [ 8.0715509, 46.7186163 ], + [ 8.0716281, 46.7187862 ], + [ 8.0716898, 46.7189559 ], + [ 8.071687, 46.7190687 ], + [ 8.0716768, 46.7191701 ], + [ 8.0716499, 46.7192486 ], + [ 8.0716325, 46.7192992 ], + [ 8.0716298, 46.7194176 ], + [ 8.0716598, 46.7195307 ], + [ 8.0717305, 46.7196385 ], + [ 8.0718423, 46.7197581 ], + [ 8.0719793, 46.7198723 ], + [ 8.0721084, 46.7199302 ], + [ 8.0722049, 46.7200044 ], + [ 8.0722594, 46.7201178 ], + [ 8.0724251, 46.7203733 ], + [ 8.0728189, 46.7207045 ], + [ 8.0730445, 46.7208423 ], + [ 8.0731477, 46.72099 ], + [ 8.0733166, 46.7211046 ], + [ 8.0735749, 46.7212426 ], + [ 8.0737447, 46.7213572 ], + [ 8.0739159, 46.7213873 ], + [ 8.074093, 46.7214964 ], + [ 8.0739108, 46.7219227 ], + [ 8.0737991, 46.7221583 ], + [ 8.0736948, 46.7223939 ], + [ 8.0735754, 46.7225956 ], + [ 8.0734735, 46.7227635 ], + [ 8.0733965, 46.7228868 ], + [ 8.073302, 46.7230549 ], + [ 8.0732214, 46.723364 ], + [ 8.0731694, 46.7238089 ], + [ 8.0742622, 46.7243337 ], + [ 8.0745055, 46.7244435 ], + [ 8.0746255, 46.7245632 ], + [ 8.0747289, 46.7246658 ], + [ 8.07494, 46.7247526 ], + [ 8.075174, 46.7249073 ], + [ 8.0753003, 46.7250778 ], + [ 8.0754536, 46.7251809 ], + [ 8.0758691, 46.7252644 ], + [ 8.0762036, 46.7253356 ], + [ 8.0765617, 46.7254071 ], + [ 8.0766611, 46.7253744 ], + [ 8.0770346, 46.7251586 ], + [ 8.0772177, 46.7253635 ], + [ 8.0771223, 46.725588 ], + [ 8.0771026, 46.7257232 ], + [ 8.0771426, 46.7257855 ], + [ 8.0772238, 46.7258089 ], + [ 8.0773613, 46.7258838 ], + [ 8.0775401, 46.7259365 ], + [ 8.0777021, 46.7260171 ], + [ 8.0778143, 46.7260973 ], + [ 8.0779855, 46.7261216 ], + [ 8.0783287, 46.7261761 ], + [ 8.0787278, 46.7262537 ], + [ 8.0790947, 46.7263084 ], + [ 8.0795256, 46.7264484 ], + [ 8.0796635, 46.7264893 ], + [ 8.0798038, 46.7264625 ], + [ 8.079952, 46.7264079 ], + [ 8.0805187, 46.7263464 ], + [ 8.0809619, 46.7262891 ], + [ 8.0812248, 46.7262524 ], + [ 8.0813792, 46.7263161 ], + [ 8.0814016, 46.7264123 ], + [ 8.0814061, 46.7265757 ], + [ 8.0814272, 46.7267056 ], + [ 8.0817729, 46.7269686 ], + [ 8.0821542, 46.727125 ], + [ 8.082536, 46.7272587 ], + [ 8.0828049, 46.727318 ], + [ 8.0828554, 46.727234 ], + [ 8.0828926, 46.7270653 ], + [ 8.0829623, 46.7268743 ], + [ 8.083168, 46.7268484 ], + [ 8.0833483, 46.7268165 ], + [ 8.0834864, 46.7268801 ], + [ 8.0836081, 46.7269321 ], + [ 8.0837783, 46.7270128 ], + [ 8.0840128, 46.7271394 ], + [ 8.0843911, 46.7273915 ], + [ 8.084762, 46.7276379 ], + [ 8.0850037, 46.7278152 ], + [ 8.08523, 46.7279361 ], + [ 8.0854329, 46.7280115 ], + [ 8.0856444, 46.7280588 ], + [ 8.0859057, 46.7280956 ], + [ 8.0861593, 46.7281038 ], + [ 8.0864887, 46.7280284 ], + [ 8.0866767, 46.7280248 ], + [ 8.0870319, 46.7279215 ], + [ 8.0872948, 46.7278849 ], + [ 8.0874829, 46.7278926 ], + [ 8.087736, 46.7279292 ], + [ 8.0879234, 46.7279424 ], + [ 8.0880695, 46.7279891 ], + [ 8.0882022, 46.7279397 ], + [ 8.088382, 46.727936 ], + [ 8.088677, 46.7279223 ], + [ 8.0890801, 46.7278477 ], + [ 8.0895504, 46.7277287 ], + [ 8.0897729, 46.7276691 ], + [ 8.0899119, 46.7276705 ], + [ 8.0899676, 46.7277444 ], + [ 8.089997, 46.72788 ], + [ 8.0900586, 46.7280386 ], + [ 8.0902036, 46.7281303 ], + [ 8.0905391, 46.7281509 ], + [ 8.0914312, 46.7281548 ], + [ 8.0926775, 46.728106 ], + [ 8.0927222, 46.7282869 ], + [ 8.0927679, 46.7284113 ], + [ 8.0929529, 46.72856 ], + [ 8.0930494, 46.7286286 ], + [ 8.09313, 46.7286746 ], + [ 8.0932862, 46.7286707 ], + [ 8.093518, 46.7285716 ], + [ 8.0938883, 46.7284967 ], + [ 8.0942442, 46.7283088 ], + [ 8.0943696, 46.728203 ], + [ 8.094561, 46.7280754 ], + [ 8.094718, 46.7280094 ], + [ 8.0949575, 46.7279387 ], + [ 8.0953032, 46.7278578 ], + [ 8.0955594, 46.7277478 ], + [ 8.095673, 46.7278055 ], + [ 8.0958192, 46.7278634 ], + [ 8.0959807, 46.7279608 ], + [ 8.0961097, 46.7280187 ], + [ 8.0962466, 46.7281159 ], + [ 8.096359, 46.7282129 ], + [ 8.0964382, 46.7283378 ], + [ 8.0965413, 46.7284741 ], + [ 8.0966858, 46.7285884 ], + [ 8.0967987, 46.728663 ], + [ 8.0968958, 46.7287147 ], + [ 8.0970349, 46.7287219 ], + [ 8.0971256, 46.7287171 ], + [ 8.0972304, 46.7287916 ], + [ 8.0973928, 46.7288327 ], + [ 8.0975062, 46.7288791 ], + [ 8.0977107, 46.7288925 ], + [ 8.0978911, 46.7288662 ], + [ 8.0979561, 46.7288951 ], + [ 8.0980374, 46.7289297 ], + [ 8.0982219, 46.7291008 ], + [ 8.0982175, 46.7292756 ], + [ 8.0981712, 46.7295062 ], + [ 8.1047903, 46.7266057 ], + [ 8.1047596, 46.7265038 ], + [ 8.1046816, 46.7263396 ], + [ 8.1046857, 46.726148 ], + [ 8.1047713, 46.7259967 ], + [ 8.1047558, 46.7256019 ], + [ 8.1047748, 46.7251511 ], + [ 8.1048205, 46.7249431 ], + [ 8.1048815, 46.7247859 ], + [ 8.1048219, 46.7245315 ], + [ 8.1047779, 46.7243451 ], + [ 8.1048389, 46.7241879 ], + [ 8.1049408, 46.7240312 ], + [ 8.1048386, 46.7238327 ], + [ 8.1046792, 46.7236394 ], + [ 8.1044136, 46.7234505 ], + [ 8.1040907, 46.7232499 ], + [ 8.1040024, 46.7231812 ], + [ 8.1040382, 46.7230408 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "JBG0031", + "country" : "CHE", + "name" : [ + { + "text" : "Eidgenössisches Jagdbanngebiet Schwarzhorn", + "lang" : "de-CH" + }, + { + "text" : "District franc fédéral Schwarzhorn", + "lang" : "fr-CH" + }, + { + "text" : "Bandita federale di caccia Schwarzhorn", + "lang" : "it-CH" + }, + { + "text" : "Federal Game Reserve Schwarzhorn", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7519126, 47.5213577 ], + [ 7.7518413, 47.5213612 ], + [ 7.751037, 47.5218446 ], + [ 7.7507666, 47.5219953 ], + [ 7.7507341, 47.5221978 ], + [ 7.7505607, 47.5222737 ], + [ 7.7503712, 47.5226165 ], + [ 7.7504758, 47.5227328 ], + [ 7.7504608, 47.5229182 ], + [ 7.7505144999999995, 47.5231047 ], + [ 7.7509084999999995, 47.522737 ], + [ 7.7511583, 47.5224704 ], + [ 7.7512508, 47.5223707 ], + [ 7.751531, 47.5219799 ], + [ 7.7517858, 47.5215635 ], + [ 7.7519126, 47.5213577 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns040", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Weiher Brüel", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Weiher Brüel", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Weiher Brüel", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Weiher Brüel", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7580421, 46.3624795 ], + [ 7.7578002999999995, 46.362365 ], + [ 7.7576628, 46.362319 ], + [ 7.757517, 46.3622448 ], + [ 7.7572825, 46.3621417 ], + [ 7.756725, 46.3619348 ], + [ 7.7566932, 46.3628799 ], + [ 7.7566734, 46.3631048 ], + [ 7.7567116, 46.3632513 ], + [ 7.7568391, 46.3633929 ], + [ 7.7570056, 46.3636643 ], + [ 7.7570527, 46.3637996 ], + [ 7.7570422, 46.3639459 ], + [ 7.7569905, 46.3641311 ], + [ 7.7569219, 46.3643388 ], + [ 7.7568539, 46.3645071 ], + [ 7.7567696999999995, 46.3646921 ], + [ 7.7567179, 46.3648718 ], + [ 7.7566825, 46.3650571 ], + [ 7.7566114, 46.3653942 ], + [ 7.7565586, 46.3656638 ], + [ 7.7564887, 46.3659333 ], + [ 7.7566994, 46.3659912 ], + [ 7.7566321, 46.3661483 ], + [ 7.7565072, 46.3663162 ], + [ 7.7564066, 46.3664672 ], + [ 7.7562574, 46.3666462 ], + [ 7.756125, 46.3667802 ], + [ 7.7560657, 46.366926 ], + [ 7.7560297, 46.3671565 ], + [ 7.7559691, 46.3673472 ], + [ 7.7559257, 46.3675607 ], + [ 7.7558494, 46.367712 ], + [ 7.7557578, 46.3678745 ], + [ 7.7556248, 46.3680479 ], + [ 7.7556236, 46.3681211 ], + [ 7.7556623, 46.3682114 ], + [ 7.7554888, 46.3683901 ], + [ 7.7553737, 46.3684342 ], + [ 7.7552477, 46.3686921 ], + [ 7.7551135, 46.3689442 ], + [ 7.7548452, 46.3694373 ], + [ 7.7546767, 46.3697961 ], + [ 7.7546238, 46.3700488 ], + [ 7.754401, 46.3706941 ], + [ 7.7543313, 46.3710031 ], + [ 7.7543207, 46.3711381 ], + [ 7.7543521, 46.3712282 ], + [ 7.7544397, 46.371347 ], + [ 7.7545754, 46.3715 ], + [ 7.7546874, 46.371619 ], + [ 7.754815, 46.3717663 ], + [ 7.7549595, 46.3718969 ], + [ 7.755039, 46.3720099 ], + [ 7.7550942, 46.3721454 ], + [ 7.7551155, 46.3723143 ], + [ 7.7551194, 46.3725732 ], + [ 7.7551189, 46.3726182 ], + [ 7.755084, 46.3727586 ], + [ 7.755066, 46.3728767 ], + [ 7.7550311, 46.3730283 ], + [ 7.7550287, 46.3731745 ], + [ 7.7550418, 46.3733265 ], + [ 7.7550477, 46.3734897 ], + [ 7.7550457999999995, 46.3735854 ], + [ 7.7549946, 46.3737257 ], + [ 7.7549367, 46.3738209 ], + [ 7.7548204, 46.3739381 ], + [ 7.7546973, 46.3739991 ], + [ 7.7545579, 46.3740543 ], + [ 7.7544668, 46.3741661 ], + [ 7.7544325, 46.3742671 ], + [ 7.7544308, 46.3744021 ], + [ 7.7544357999999995, 46.3745598 ], + [ 7.7544421, 46.3746723 ], + [ 7.7544904, 46.374729 ], + [ 7.7545543, 46.3748195 ], + [ 7.7545842, 46.3749379 ], + [ 7.754575, 46.3750277 ], + [ 7.7544838, 46.3751339 ], + [ 7.7544163, 46.3752516 ], + [ 7.7544477, 46.3753363 ], + [ 7.7544872, 46.3754378 ], + [ 7.7545991999999995, 46.3755512 ], + [ 7.7547517, 46.3756537 ], + [ 7.754775, 46.3757495 ], + [ 7.7547725, 46.3758788 ], + [ 7.7547383, 46.3760079 ], + [ 7.7546703, 46.3761875 ], + [ 7.754586, 46.3763557 ], + [ 7.754493, 46.3765519 ], + [ 7.7543925, 46.3767368 ], + [ 7.7543413999999995, 46.3768884 ], + [ 7.7543383, 46.3770458 ], + [ 7.7543522, 46.3771978 ], + [ 7.7543749, 46.377333 ], + [ 7.7543806, 46.377485 ], + [ 7.7543625, 46.3775693 ], + [ 7.7543695, 46.3776594 ], + [ 7.7544322, 46.3778229 ], + [ 7.7544778, 46.3779808 ], + [ 7.7544599, 46.3781214 ], + [ 7.7544574, 46.3782507 ], + [ 7.7544231, 46.3783574 ], + [ 7.7544532, 46.3785039 ], + [ 7.7544759, 46.3786278 ], + [ 7.7545292, 46.3788478 ], + [ 7.7545912999999995, 46.3790507 ], + [ 7.7546526, 46.3792594 ], + [ 7.7547309, 46.3794401 ], + [ 7.7548098, 46.3796037 ], + [ 7.7549131, 46.3797678 ], + [ 7.7549919, 46.3799033 ], + [ 7.7550145, 46.380016 ], + [ 7.7550216, 46.3801173 ], + [ 7.7550747, 46.3803146 ], + [ 7.7551687, 46.3805462 ], + [ 7.7552315, 46.380721 ], + [ 7.7553102, 46.3808511 ], + [ 7.7554317, 46.3809251 ], + [ 7.7556413, 46.3810561 ], + [ 7.7557294, 46.3811186 ], + [ 7.7558007, 46.3812317 ], + [ 7.755824, 46.3813331 ], + [ 7.7558216, 46.3814682 ], + [ 7.7558023, 46.3816368 ], + [ 7.7557756, 46.3817942 ], + [ 7.75579, 46.3819069 ], + [ 7.7558283, 46.3820477 ], + [ 7.7559716, 46.3822402 ], + [ 7.7562038, 46.3825007 ], + [ 7.7562432999999995, 46.3825911 ], + [ 7.7562896, 46.3827152 ], + [ 7.756361, 46.3828395 ], + [ 7.7563085, 46.3830417 ], + [ 7.7563462, 46.3832333 ], + [ 7.7564665, 46.3833748 ], + [ 7.7566343, 46.3835843 ], + [ 7.7566633, 46.3836917 ], + [ 7.7566874, 46.3837816 ], + [ 7.7566997, 46.3840686 ], + [ 7.7567199, 46.3843276 ], + [ 7.7565964, 46.3848836 ], + [ 7.7571596, 46.3847754 ], + [ 7.7572461, 46.3849786 ], + [ 7.7573019, 46.3850635 ], + [ 7.7573088, 46.3851423 ], + [ 7.7572751, 46.3852094 ], + [ 7.7572089, 46.3852765 ], + [ 7.7571501, 46.3853661 ], + [ 7.7571158, 46.3854783 ], + [ 7.7571221999999995, 46.3855909 ], + [ 7.7570967, 46.3856808 ], + [ 7.7570542, 46.3857761 ], + [ 7.7569467, 46.3858652 ], + [ 7.7568887, 46.3859493 ], + [ 7.756805, 46.3860836 ], + [ 7.7567951, 46.3862017 ], + [ 7.7568494999999995, 46.3863316 ], + [ 7.7569204, 46.3865009 ], + [ 7.7570475, 46.3867043 ], + [ 7.7571264, 46.3868457 ], + [ 7.7572633, 46.3869254 ], + [ 7.7574092, 46.3869996 ], + [ 7.7575786, 46.3870684 ], + [ 7.7576993, 46.3871426 ], + [ 7.757772, 46.3872162 ], + [ 7.7578515, 46.3873238 ], + [ 7.7579309, 46.3874312 ], + [ 7.7580272, 46.3875051 ], + [ 7.7581556, 46.3876411 ], + [ 7.7582032, 46.3877203 ], + [ 7.7582578, 46.3878782 ], + [ 7.7583373, 46.3880082 ], + [ 7.7586018, 46.388224 ], + [ 7.7588429, 46.3884565 ], + [ 7.7589617, 46.3886263 ], + [ 7.7590326, 46.3887956 ], + [ 7.7590471999999995, 46.3889195 ], + [ 7.7590202, 46.3890317 ], + [ 7.7589065999999995, 46.3890534 ], + [ 7.7588007999999995, 46.3890245 ], + [ 7.7585784, 46.3892028 ], + [ 7.7586091, 46.3893099 ], + [ 7.7586881, 46.3894681 ], + [ 7.7587918, 46.3895701 ], + [ 7.7589528, 46.3897177 ], + [ 7.7590154, 46.3898588 ], + [ 7.759063, 46.3899379 ], + [ 7.7592074, 46.3900459 ], + [ 7.7593847, 46.3901991 ], + [ 7.7593833, 46.3902497 ], + [ 7.7593571, 46.3903509 ], + [ 7.7592734, 46.3904908 ], + [ 7.7592392, 46.3906031 ], + [ 7.7592293, 46.3907212 ], + [ 7.7592919, 46.390868 ], + [ 7.7593965, 46.3909701 ], + [ 7.7595416, 46.3910499 ], + [ 7.7595879, 46.3911853 ], + [ 7.7596824, 46.3913773 ], + [ 7.7598021, 46.3915526 ], + [ 7.7598579, 46.3916374 ], + [ 7.7598811, 46.3917164 ], + [ 7.7599605, 46.3918183 ], + [ 7.7600725, 46.3919317 ], + [ 7.7601776000000005, 46.3919887 ], + [ 7.7602008, 46.3920564 ], + [ 7.7602564, 46.3921243 ], + [ 7.7603535, 46.3921926 ], + [ 7.7604092, 46.3922661 ], + [ 7.7604886, 46.3923736 ], + [ 7.7605687, 46.3924473 ], + [ 7.7607384, 46.3925668 ], + [ 7.7609485, 46.3926359 ], + [ 7.7611273, 46.3926542 ], + [ 7.7612155, 46.3927336 ], + [ 7.7612389, 46.3928351 ], + [ 7.7613107, 46.3928862 ], + [ 7.7614084, 46.3929151 ], + [ 7.7615058999999995, 46.3929158 ], + [ 7.7616271999999995, 46.3929617 ], + [ 7.7617731, 46.3930303 ], + [ 7.7618775, 46.3930986 ], + [ 7.7620645, 46.3931169 ], + [ 7.7623085, 46.393147 ], + [ 7.7625116, 46.3931542 ], + [ 7.7627486999999995, 46.3931165 ], + [ 7.7629769, 46.3930901 ], + [ 7.7631889, 46.3930804 ], + [ 7.7633515, 46.3931041 ], + [ 7.7634892, 46.3931559 ], + [ 7.7635686, 46.3932521 ], + [ 7.7636319, 46.3933764 ], + [ 7.7637765, 46.3935069 ], + [ 7.7639536, 46.3936376 ], + [ 7.764235, 46.3938254 ], + [ 7.7643884, 46.3939221 ], + [ 7.7644204, 46.3939731 ], + [ 7.7645894, 46.3941037 ], + [ 7.7648308, 46.3942575 ], + [ 7.7650248, 46.3943602 ], + [ 7.7651631, 46.3943837 ], + [ 7.7654232, 46.3944025 ], + [ 7.7656996, 46.3944159 ], + [ 7.7660336, 46.3944185 ], + [ 7.766113, 46.3945147 ], + [ 7.7662989, 46.3946286 ], + [ 7.766581, 46.3947826 ], + [ 7.7667587000000005, 46.3948684 ], + [ 7.7668727, 46.394903 ], + [ 7.7669609, 46.3949824 ], + [ 7.7669920999999995, 46.395039 ], + [ 7.767016, 46.3950954 ], + [ 7.7670474, 46.3951801 ], + [ 7.7670862, 46.3952703 ], + [ 7.7671738, 46.3953835 ], + [ 7.7672302, 46.3954345 ], + [ 7.7672947, 46.3954914 ], + [ 7.7673505, 46.3955705 ], + [ 7.7673574, 46.3956381 ], + [ 7.7673725000000005, 46.3957225 ], + [ 7.7674114, 46.3958298 ], + [ 7.7674258, 46.3959255 ], + [ 7.7674734, 46.3960158 ], + [ 7.7675861, 46.3961011 ], + [ 7.7677156, 46.3961471 ], + [ 7.7679751, 46.396194 ], + [ 7.768333, 46.3962417 ], + [ 7.768617, 46.3963059 ], + [ 7.7689097, 46.3963304 ], + [ 7.7690961, 46.3963825 ], + [ 7.7691937, 46.3964002 ], + [ 7.7693318, 46.3963956 ], + [ 7.7694464, 46.3963907 ], + [ 7.7697227, 46.3963929 ], + [ 7.7699185, 46.3963943 ], + [ 7.7701387, 46.3963848 ], + [ 7.7703426, 46.3963638 ], + [ 7.7705295, 46.3963594 ], + [ 7.7707485, 46.3964287 ], + [ 7.7710162, 46.3964813 ], + [ 7.7712841, 46.3965677 ], + [ 7.7716487, 46.3966605 ], + [ 7.7718101, 46.396746 ], + [ 7.7719316, 46.3968031 ], + [ 7.7721088, 46.3969339 ], + [ 7.7723984, 46.3971274 ], + [ 7.7726163, 46.397264 ], + [ 7.7727696, 46.3973439 ], + [ 7.7729235, 46.3973957 ], + [ 7.7730611, 46.3974417 ], + [ 7.7731902, 46.3975552 ], + [ 7.7734293, 46.397844 ], + [ 7.7738226, 46.3982125 ], + [ 7.7739272, 46.3983146 ], + [ 7.7740725, 46.398417 ], + [ 7.7742413, 46.3985083 ], + [ 7.7743708, 46.3985655 ], + [ 7.7745573, 46.3986288 ], + [ 7.7747432, 46.398737 ], + [ 7.7748483, 46.3987772 ], + [ 7.775002, 46.3988065 ], + [ 7.7751646999999995, 46.3988359 ], + [ 7.775343, 46.3988821 ], + [ 7.7756837999999995, 46.398941 ], + [ 7.775919, 46.3990047 ], + [ 7.7761468, 46.3990514 ], + [ 7.7763568, 46.3991149 ], + [ 7.7764945, 46.3991778 ], + [ 7.7766634, 46.3992859 ], + [ 7.7767843, 46.3993882 ], + [ 7.7770250999999995, 46.3995812 ], + [ 7.7771541, 46.3996778 ], + [ 7.7772831, 46.3997745 ], + [ 7.7774614, 46.3998264 ], + [ 7.7776808, 46.3998393 ], + [ 7.7779411, 46.399875 ], + [ 7.7781686, 46.3998824 ], + [ 7.7784607999999995, 46.3999465 ], + [ 7.7786872, 46.4000325 ], + [ 7.7788087, 46.4001065 ], + [ 7.7790095, 46.4002544 ], + [ 7.7792034999999995, 46.4003515 ], + [ 7.7793893, 46.4004428 ], + [ 7.7796658999999995, 46.4004842 ], + [ 7.7804464, 46.400552 ], + [ 7.780531, 46.4003107 ], + [ 7.7806247, 46.4000806 ], + [ 7.7807088, 46.3998957 ], + [ 7.7809006, 46.3996439 ], + [ 7.7810736, 46.3994989 ], + [ 7.7812866, 46.3993936 ], + [ 7.7815649, 46.3993168 ], + [ 7.7817781, 46.3992452 ], + [ 7.7820718, 46.3991687 ], + [ 7.782293, 46.3990803 ], + [ 7.7824098, 46.3989068 ], + [ 7.7825185, 46.3987501 ], + [ 7.7825689, 46.3986266 ], + [ 7.78253, 46.3985138 ], + [ 7.7825074, 46.398418 ], + [ 7.7825011, 46.3983167 ], + [ 7.782479, 46.3981646 ], + [ 7.7824812, 46.3980071 ], + [ 7.7824911, 46.3979002 ], + [ 7.7825667, 46.397777 ], + [ 7.7826158, 46.3976946 ], + [ 7.7826503, 46.3976371 ], + [ 7.7827020000000005, 46.3974574 ], + [ 7.7828104, 46.3972557 ], + [ 7.7829702, 46.396953 ], + [ 7.7829794, 46.396863 ], + [ 7.7830388, 46.3967454 ], + [ 7.7831055, 46.3966389 ], + [ 7.7831497, 46.3964256 ], + [ 7.7832094, 46.396229 ], + [ 7.7832611, 46.3960606 ], + [ 7.7832478, 46.3958917 ], + [ 7.7832325, 46.3957848 ], + [ 7.7832193, 46.3956215 ], + [ 7.7832216, 46.3954808 ], + [ 7.7832389, 46.3953797 ], + [ 7.783307, 46.3952339 ], + [ 7.7833662, 46.3950881 ], + [ 7.7834248, 46.3949704 ], + [ 7.7834997999999995, 46.3948866 ], + [ 7.7835659, 46.394797 ], + [ 7.7836157, 46.3947186 ], + [ 7.7836593, 46.3945446 ], + [ 7.7837599, 46.3943877 ], + [ 7.7838597, 46.3942309 ], + [ 7.7839759, 46.3941193 ], + [ 7.7840339, 46.3940353 ], + [ 7.7840275, 46.3939228 ], + [ 7.7840775, 46.3938612 ], + [ 7.7841517, 46.393783 ], + [ 7.7842605, 46.393632 ], + [ 7.7843677, 46.3935033 ], + [ 7.7844752, 46.3934084 ], + [ 7.7847639, 46.3932024 ], + [ 7.7848138, 46.393124 ], + [ 7.7848475, 46.3930455 ], + [ 7.7849067, 46.3929053 ], + [ 7.7850391, 46.3927769 ], + [ 7.7851634, 46.3926427 ], + [ 7.785222, 46.3925306 ], + [ 7.785387, 46.3924137 ], + [ 7.7856162, 46.3923028 ], + [ 7.7857488, 46.3921856 ], + [ 7.7859468, 46.3920183 ], + [ 7.7860803, 46.3918055 ], + [ 7.7861227, 46.3917046 ], + [ 7.7861650000000004, 46.3915923 ], + [ 7.786176, 46.3914068 ], + [ 7.7862608, 46.3911936 ], + [ 7.7863119, 46.3910589 ], + [ 7.7863171, 46.390727 ], + [ 7.7863117, 46.390518900000004 ], + [ 7.7863078, 46.3902881 ], + [ 7.7863506000000005, 46.3901197 ], + [ 7.7864099, 46.389985 ], + [ 7.7865421999999995, 46.3898453 ], + [ 7.7866996, 46.3896833 ], + [ 7.7867116, 46.3896522 ], + [ 7.7867676, 46.3895094 ], + [ 7.7868437, 46.3893468 ], + [ 7.7869836, 46.3892354 ], + [ 7.7872146, 46.3890289 ], + [ 7.7873389, 46.3888947 ], + [ 7.7874144, 46.3887602 ], + [ 7.7875974, 46.388531 ], + [ 7.787746, 46.3884026 ], + [ 7.7878778, 46.388291 ], + [ 7.7880596, 46.3881348 ], + [ 7.7882989, 46.3879453 ], + [ 7.7885536, 46.3877559 ], + [ 7.7888086, 46.3876059 ], + [ 7.7890228, 46.3874443 ], + [ 7.7892614, 46.3872659 ], + [ 7.7894176, 46.3871715 ], + [ 7.7896395, 46.3870661 ], + [ 7.789942, 46.3869839 ], + [ 7.7903427, 46.3868686 ], + [ 7.7904907, 46.3867742 ], + [ 7.7905418, 46.3866339 ], + [ 7.7906086, 46.3865386 ], + [ 7.7906828, 46.3864492 ], + [ 7.790889, 46.3862932 ], + [ 7.7909477, 46.3862036 ], + [ 7.7911933, 46.3861098 ], + [ 7.7913976, 46.3860437 ], + [ 7.7915452, 46.3859941 ], + [ 7.7917095, 46.385911 ], + [ 7.7918251, 46.3858105 ], + [ 7.7920136, 46.3856937 ], + [ 7.7922685, 46.3855324 ], + [ 7.7924996, 46.3853315 ], + [ 7.7927882, 46.3851199 ], + [ 7.7932162, 46.384836 ], + [ 7.7936758, 46.3845524 ], + [ 7.7939720999999995, 46.3843857 ], + [ 7.7941937, 46.3842411 ], + [ 7.7944236, 46.3841078 ], + [ 7.7946212, 46.384008 ], + [ 7.7948342, 46.3839026 ], + [ 7.7949503, 46.3837684 ], + [ 7.7950908, 46.3836457 ], + [ 7.7951419, 46.3834997 ], + [ 7.7952098, 46.3833314 ], + [ 7.7952363, 46.3831628 ], + [ 7.7952153, 46.3829319 ], + [ 7.7950608, 46.3824076 ], + [ 7.7952077, 46.3823862 ], + [ 7.7953547, 46.382376 ], + [ 7.7955427, 46.3823098 ], + [ 7.7956584, 46.3822318 ], + [ 7.7957739, 46.3821257 ], + [ 7.7959306, 46.3819919 ], + [ 7.7961117, 46.3818638 ], + [ 7.7963085, 46.3817696 ], + [ 7.7964554, 46.3817425 ], + [ 7.7967168000000004, 46.381705 ], + [ 7.7969273999999995, 46.381746 ], + [ 7.7971221, 46.3818205 ], + [ 7.7973734, 46.3818673 ], + [ 7.7975262, 46.3819865 ], + [ 7.7977597, 46.382174 ], + [ 7.7980495, 46.3823786 ], + [ 7.7982909, 46.382521 ], + [ 7.7984287, 46.3825895 ], + [ 7.7985917, 46.3825513 ], + [ 7.7987149, 46.3824959 ], + [ 7.7988623, 46.3824408 ], + [ 7.7989935, 46.3823685 ], + [ 7.7991667, 46.3822685 ], + [ 7.7993134, 46.3822133 ], + [ 7.7994933, 46.3821584 ], + [ 7.7996978, 46.3821205 ], + [ 7.7998302, 46.3819864 ], + [ 7.7999944, 46.3818751 ], + [ 7.8001424, 46.3817804 ], + [ 7.8003718, 46.381709 ], + [ 7.8007475, 46.3816329 ], + [ 7.8009844, 46.3815839 ], + [ 7.8011479999999995, 46.3815064 ], + [ 7.8012311, 46.3814282 ], + [ 7.8012234, 46.3813606 ], + [ 7.801152, 46.3812532 ], + [ 7.8010724, 46.3811458 ], + [ 7.8009121, 46.3809758 ], + [ 7.800785, 46.3808005 ], + [ 7.8006902, 46.3805917 ], + [ 7.8006768, 46.3804059 ], + [ 7.8006069, 46.3801634 ], + [ 7.8005791, 46.3798875 ], + [ 7.8006167, 46.3795614 ], + [ 7.8006613, 46.3793086 ], + [ 7.8007622, 46.3790898 ], + [ 7.8008794, 46.3788825 ], + [ 7.8010286, 46.3787092 ], + [ 7.8011928, 46.3786035 ], + [ 7.8012678, 46.3785196 ], + [ 7.8013669, 46.3784079 ], + [ 7.8014667, 46.3782622 ], + [ 7.8015416, 46.3781615 ], + [ 7.8016572, 46.3780835 ], + [ 7.8017883, 46.3780114 ], + [ 7.801985, 46.3779059 ], + [ 7.8021013, 46.3777998 ], + [ 7.8021437, 46.3776931 ], + [ 7.8022033, 46.3775024 ], + [ 7.8022717, 46.377289 ], + [ 7.8024289, 46.3771045 ], + [ 7.8027657999999995, 46.3769438 ], + [ 7.8029857, 46.3769172 ], + [ 7.803124, 46.3769407 ], + [ 7.8032941000000005, 46.3769813 ], + [ 7.8034397, 46.3770105 ], + [ 7.8035699, 46.3770508 ], + [ 7.8037962, 46.37712 ], + [ 7.8039589, 46.3771549 ], + [ 7.8041865999999995, 46.3771846 ], + [ 7.8044472, 46.3771696 ], + [ 7.8046922, 46.3771207 ], + [ 7.8049365, 46.3770775 ], + [ 7.8051566999999995, 46.3770903 ], + [ 7.8053748, 46.3771538 ], + [ 7.8055044, 46.377211 ], + [ 7.8056345, 46.3772345 ], + [ 7.8058133, 46.377247 ], + [ 7.8059603, 46.3772424 ], + [ 7.8062204, 46.3772555 ], + [ 7.8064399, 46.3772851 ], + [ 7.8066093, 46.3773426 ], + [ 7.8068197, 46.3774679 ], + [ 7.8069717, 46.3775984 ], + [ 7.8072052, 46.377769 ], + [ 7.8074224999999995, 46.3779562 ], + [ 7.807599, 46.378098 ], + [ 7.8078251, 46.3782572 ], + [ 7.8080828, 46.378411 ], + [ 7.8082518, 46.3785247 ], + [ 7.8086013, 46.378561 ], + [ 7.8090402999999995, 46.3785979 ], + [ 7.8092923, 46.3786221 ], + [ 7.8094956, 46.3786461 ], + [ 7.8097638, 46.3786648 ], + [ 7.8099839, 46.3786609 ], + [ 7.8101634, 46.3786565 ], + [ 7.8103589, 46.3786185 ], + [ 7.8105883, 46.378547 ], + [ 7.8108101, 46.3784305 ], + [ 7.8110568, 46.378269 ], + [ 7.8113121, 46.3780571 ], + [ 7.8116584, 46.3777388 ], + [ 7.8118164, 46.3775543 ], + [ 7.811876, 46.377369 ], + [ 7.8118701, 46.3772227 ], + [ 7.8118061, 46.3771322 ], + [ 7.8117929, 46.3769746 ], + [ 7.8118339, 46.376913 ], + [ 7.8118763, 46.3768233 ], + [ 7.8119431, 46.3767281 ], + [ 7.8119929, 46.3766496 ], + [ 7.812019, 46.3765486 ], + [ 7.8120699, 46.3763914 ], + [ 7.8121297, 46.376223 ], + [ 7.812229, 46.3761281 ], + [ 7.8123930999999995, 46.3760224 ], + [ 7.8125087, 46.3759388 ], + [ 7.8125754, 46.3758267 ], + [ 7.8126674, 46.3756305 ], + [ 7.8127771, 46.3753893 ], + [ 7.8128779999999995, 46.3751818 ], + [ 7.8130106999999995, 46.3749971 ], + [ 7.8131194, 46.3748517 ], + [ 7.8132192, 46.3747172 ], + [ 7.8134008, 46.3745442 ], + [ 7.8135424, 46.3743426 ], + [ 7.8136902, 46.3742312 ], + [ 7.8138544, 46.374131 ], + [ 7.8140263, 46.374076 ], + [ 7.8141656, 46.3740207 ], + [ 7.8142318, 46.3739536 ], + [ 7.8142498, 46.3738581 ], + [ 7.814227, 46.3737286 ], + [ 7.8141961, 46.3736102 ], + [ 7.8140927, 46.3734632 ], + [ 7.8140043, 46.3733669 ], + [ 7.8139081, 46.3733099 ], + [ 7.8138105, 46.373298 ], + [ 7.8136716, 46.3732971 ], + [ 7.8135585, 46.3732681 ], + [ 7.8134296, 46.373194 ], + [ 7.8126043, 46.3728336 ], + [ 7.812631, 46.3727045 ], + [ 7.8126647, 46.3726428 ], + [ 7.8126827, 46.3725361 ], + [ 7.8126673, 46.372429 ], + [ 7.8126685, 46.3723672 ], + [ 7.8126695, 46.3722827 ], + [ 7.8127032, 46.3722212 ], + [ 7.8127775, 46.3721598 ], + [ 7.8128273, 46.3720757 ], + [ 7.8129184, 46.3719751 ], + [ 7.8130746, 46.3718917 ], + [ 7.8131245, 46.3718247 ], + [ 7.8131175, 46.3717458 ], + [ 7.8130942, 46.3716669 ], + [ 7.8130797, 46.3715767 ], + [ 7.8130977, 46.37147 ], + [ 7.8131893, 46.3713243 ], + [ 7.8132722999999995, 46.3712237 ], + [ 7.8134201, 46.3711122 ], + [ 7.8136336, 46.3709786 ], + [ 7.8138073, 46.3708336 ], + [ 7.8139872, 46.3707786 ], + [ 7.8140295, 46.370672 ], + [ 7.8140554, 46.3705428 ], + [ 7.8140746, 46.3703742 ], + [ 7.8140768, 46.3702222 ], + [ 7.8140307, 46.370025 ], + [ 7.8140493, 46.3698844 ], + [ 7.8140509, 46.369772 ], + [ 7.8141414000000005, 46.369705 ], + [ 7.8142581, 46.369554 ], + [ 7.8144316, 46.3693808 ], + [ 7.8146051, 46.3692245 ], + [ 7.8147780000000004, 46.369085 ], + [ 7.8148777, 46.3689451 ], + [ 7.8148869, 46.3688664 ], + [ 7.814921, 46.3687485 ], + [ 7.8149633, 46.3686419 ], + [ 7.8150793, 46.3685021 ], + [ 7.815171, 46.3683733 ], + [ 7.8152394, 46.3681656 ], + [ 7.8153507, 46.3678119 ], + [ 7.8154499, 46.3677169 ], + [ 7.8155079, 46.3676386 ], + [ 7.8156227, 46.3675606 ], + [ 7.8157457, 46.3675053 ], + [ 7.8158607, 46.3674498 ], + [ 7.8159918, 46.3673889 ], + [ 7.8160673, 46.3672657 ], + [ 7.8161259, 46.3671591 ], + [ 7.8161588, 46.3671032 ], + [ 7.8162088, 46.3670528 ], + [ 7.816308, 46.3669523 ], + [ 7.8164315, 46.3668461 ], + [ 7.816572, 46.3667178 ], + [ 7.8166055, 46.3666336 ], + [ 7.8166065, 46.3665493 ], + [ 7.8166413, 46.3664032 ], + [ 7.8166592999999995, 46.3663077 ], + [ 7.8167016, 46.3662011 ], + [ 7.8167764, 46.3661059 ], + [ 7.8168744, 46.366056 ], + [ 7.8170631, 46.3659786 ], + [ 7.8172361, 46.3658673 ], + [ 7.8173927, 46.3657334 ], + [ 7.8175736, 46.3655771 ], + [ 7.8177389999999995, 46.3654207 ], + [ 7.8178549, 46.3652753 ], + [ 7.8180093, 46.3652875 ], + [ 7.8182132, 46.3652946 ], + [ 7.81836, 46.3652619 ], + [ 7.8184823, 46.3652178 ], + [ 7.8186136, 46.3651738 ], + [ 7.8187448, 46.3651128 ], + [ 7.8189079, 46.365097 ], + [ 7.819176, 46.3651046 ], + [ 7.8193224, 46.3651393 ], + [ 7.8194524, 46.3651516 ], + [ 7.8196069, 46.3651695 ], + [ 7.8197367, 46.3651536 ], + [ 7.8198599, 46.3651151 ], + [ 7.8199417, 46.3650817 ], + [ 7.8200648, 46.3650264 ], + [ 7.8201789, 46.3649709 ], + [ 7.8204077, 46.3649331 ], + [ 7.8206108, 46.3649458 ], + [ 7.8208307999999995, 46.3649306 ], + [ 7.8211808, 46.3649217 ], + [ 7.8214496, 46.364918 ], + [ 7.8216695, 46.3648857 ], + [ 7.8219065, 46.364865 ], + [ 7.822012, 46.3648545 ], + [ 7.8220539, 46.364804 ], + [ 7.8220948, 46.3647425 ], + [ 7.822218, 46.3646983 ], + [ 7.8224948, 46.3646777 ], + [ 7.8226824, 46.3646734 ], + [ 7.8228531, 46.3646916 ], + [ 7.8229831, 46.3647038 ], + [ 7.823105, 46.3647102 ], + [ 7.823211, 46.3646659 ], + [ 7.8232947, 46.364554 ], + [ 7.8234095, 46.3644704 ], + [ 7.823573, 46.3644041 ], + [ 7.82381, 46.3643775 ], + [ 7.8239486, 46.3643391 ], + [ 7.8240304, 46.3643003 ], + [ 7.8241454, 46.3642562 ], + [ 7.8243416, 46.3642069 ], + [ 7.8245616, 46.3641915 ], + [ 7.8246834, 46.3641924 ], + [ 7.824911, 46.3642165 ], + [ 7.8249923, 46.3642339 ], + [ 7.8250899, 46.3642458 ], + [ 7.825456, 46.3642259 ], + [ 7.8257985, 46.364189 ], + [ 7.8262542, 46.3641921 ], + [ 7.8266612, 46.3642063 ], + [ 7.8268968999999995, 46.3642304 ], + [ 7.8271892, 46.3642268 ], + [ 7.8274911, 46.3641952 ], + [ 7.8276948, 46.3641685 ], + [ 7.8279722, 46.3641253 ], + [ 7.8282422, 46.3640598 ], + [ 7.8285028, 46.3640447 ], + [ 7.8287964, 46.3639905 ], + [ 7.8293427, 46.3639437 ], + [ 7.8296195, 46.3639174 ], + [ 7.8300106, 46.3638752 ], + [ 7.8304675, 46.3638276 ], + [ 7.831143, 46.3637986 ], + [ 7.8316967, 46.3637687 ], + [ 7.8320554, 46.3637206 ], + [ 7.8323498, 46.363672 ], + [ 7.8329008, 46.3638221 ], + [ 7.8332897, 46.3639204 ], + [ 7.8336143, 46.3640014 ], + [ 7.8338484, 46.3641324 ], + [ 7.8346388000000005, 46.3646105 ], + [ 7.8349515, 46.364382 ], + [ 7.835116, 46.3642313 ], + [ 7.835256, 46.3641535 ], + [ 7.8355339, 46.3640654 ], + [ 7.8357218, 46.3639991 ], + [ 7.836186, 46.3638379 ], + [ 7.8362228, 46.3639782 ], + [ 7.836257, 46.3641018 ], + [ 7.8362506, 46.36422 ], + [ 7.8362038, 46.3643779 ], + [ 7.8361485, 46.3644739 ], + [ 7.8361341, 46.3646205 ], + [ 7.836087, 46.3647277 ], + [ 7.8359982, 46.3648016 ], + [ 7.835943, 46.3649257 ], + [ 7.8358871, 46.3650443 ], + [ 7.8358319, 46.3651686 ], + [ 7.8357768, 46.3652871 ], + [ 7.8357302, 46.3654675 ], + [ 7.8357242, 46.3656477 ], + [ 7.835768, 46.3658612 ], + [ 7.8357546, 46.3660301 ], + [ 7.8357564, 46.3661652 ], + [ 7.8358072, 46.3663393 ], + [ 7.8358099, 46.3664856 ], + [ 7.8357537, 46.3665816 ], + [ 7.835731, 46.3666887 ], + [ 7.8357411, 46.3668462 ], + [ 7.8358187, 46.3671269 ], + [ 7.8360442, 46.3675305 ], + [ 7.8361588, 46.3675409 ], + [ 7.8364282, 46.3676234 ], + [ 7.836724, 46.3677561 ], + [ 7.8370679, 46.3679112 ], + [ 7.8374205, 46.368038 ], + [ 7.837667, 46.368205 ], + [ 7.8380849, 46.3683706 ], + [ 7.8384374999999995, 46.3684975 ], + [ 7.8386742, 46.3685464 ], + [ 7.8388943, 46.3685391 ], + [ 7.8390241, 46.3685212 ], + [ 7.8392036, 46.3685199 ], + [ 7.8394724, 46.368518 ], + [ 7.8398235, 46.3685378 ], + [ 7.8401005, 46.3685413 ], + [ 7.8404019, 46.3685504 ], + [ 7.8407283, 46.368548 ], + [ 7.8411514, 46.3685335 ], + [ 7.8416241, 46.3685413 ], + [ 7.8419833, 46.3685611 ], + [ 7.8423844, 46.3686537 ], + [ 7.8430388, 46.3688401 ], + [ 7.8443249999999995, 46.3693426 ], + [ 7.8450048, 46.3695626 ], + [ 7.8457094, 46.369833 ], + [ 7.846202, 46.3700994 ], + [ 7.8464659999999995, 46.3703225 ], + [ 7.8465888, 46.3703385 ], + [ 7.8466945, 46.3703602 ], + [ 7.8468418, 46.3703928 ], + [ 7.8469728, 46.3704313 ], + [ 7.8471457000000004, 46.3705201 ], + [ 7.8472933, 46.3705977 ], + [ 7.8474988, 46.3707143 ], + [ 7.8477612, 46.3708194 ], + [ 7.847891, 46.3708071 ], + [ 7.8479805, 46.3708233 ], + [ 7.8481449, 46.3708726 ], + [ 7.84826, 46.3709393 ], + [ 7.8484483, 46.3710392 ], + [ 7.8485387, 46.3710611 ], + [ 7.8486373, 46.3711109 ], + [ 7.848727, 46.3711609 ], + [ 7.8489813999999996, 46.3712885 ], + [ 7.8493759, 46.3714712 ], + [ 7.8496795, 46.3716546 ], + [ 7.8499349, 46.3718102 ], + [ 7.8501487, 46.3719436 ], + [ 7.8503372, 46.3720548 ], + [ 7.8505265, 46.3721771 ], + [ 7.8506094, 46.3722835 ], + [ 7.8506756, 46.3723448 ], + [ 7.8507501, 46.3724175 ], + [ 7.8508084, 46.3724959 ], + [ 7.8509399, 46.3725904 ], + [ 7.8510712, 46.3726682 ], + [ 7.8513094, 46.3728072 ], + [ 7.8516627, 46.3730071 ], + [ 7.8520658999999995, 46.3732684 ], + [ 7.8525756, 46.3735348 ], + [ 7.852994, 46.3737511 ], + [ 7.8534214, 46.3739897 ], + [ 7.8537493, 46.3741617 ], + [ 7.8540279, 46.3742665 ], + [ 7.854241, 46.3743044 ], + [ 7.8544449, 46.3743141 ], + [ 7.8546075, 46.3743296 ], + [ 7.8548126, 46.3743788 ], + [ 7.8550332, 46.3744502 ], + [ 7.8553525, 46.3745547 ], + [ 7.8557619, 46.3746641 ], + [ 7.856146, 46.3747625 ], + [ 7.8568161, 46.3748587 ], + [ 7.8570362, 46.374857 ], + [ 7.8571577999999995, 46.3748168 ], + [ 7.8573614, 46.3747871 ], + [ 7.8575398, 46.3747406 ], + [ 7.8577676, 46.374694 ], + [ 7.8580107, 46.3746077 ], + [ 7.8582539, 46.3745439 ], + [ 7.8585627, 46.3744684 ], + [ 7.8588075, 46.374506 ], + [ 7.8586148, 46.3746874 ], + [ 7.8584952999999995, 46.3748797 ], + [ 7.8583756000000005, 46.375055 ], + [ 7.8582965, 46.3752302 ], + [ 7.8582495, 46.3753431 ], + [ 7.8582108999999996, 46.375501 ], + [ 7.8581968, 46.3756811 ], + [ 7.8582066, 46.3757936 ], + [ 7.8582328, 46.3759172 ], + [ 7.8582763, 46.3760857 ], + [ 7.8583352, 46.3762372 ], + [ 7.8583464, 46.3764284 ], + [ 7.8583902, 46.3766363 ], + [ 7.8583842, 46.3767995 ], + [ 7.8583699, 46.3769517 ], + [ 7.8583485, 46.3771206 ], + [ 7.8582941, 46.3773348 ], + [ 7.8582487, 46.3775603 ], + [ 7.8581703, 46.3778142 ], + [ 7.8580927, 46.3780735 ], + [ 7.8580556999999995, 46.3783383 ], + [ 7.8579764999999995, 46.3784908 ], + [ 7.8579539, 46.3786149 ], + [ 7.8579151, 46.3787503 ], + [ 7.8578507, 46.3788295 ], + [ 7.8577873, 46.37892 ], + [ 7.8577475, 46.3790272 ], + [ 7.8577084, 46.3791176 ], + [ 7.8577021, 46.3792583 ], + [ 7.8576378, 46.3793376 ], + [ 7.8575501, 46.3794508 ], + [ 7.8575353, 46.3795353 ], + [ 7.8575362, 46.3796479 ], + [ 7.8574731, 46.379789099999996 ], + [ 7.8574179, 46.3798964 ], + [ 7.8573869, 46.3799923 ], + [ 7.8573713, 46.3800768 ], + [ 7.8573083, 46.3802236 ], + [ 7.8572369, 46.380348 ], + [ 7.857182, 46.3804947 ], + [ 7.8571999, 46.3806071 ], + [ 7.8572249, 46.3806857 ], + [ 7.8572831999999995, 46.380764 ], + [ 7.8573334, 46.3808424 ], + [ 7.8573757, 46.3809547 ], + [ 7.8573947, 46.3811065 ], + [ 7.8574053, 46.3813258 ], + [ 7.857449, 46.3815056 ], + [ 7.8575092, 46.3817303 ], + [ 7.8575194, 46.381899 ], + [ 7.8575223, 46.3820566 ], + [ 7.8575161, 46.3822086 ], + [ 7.8575183, 46.3823886 ], + [ 7.8576771, 46.3826406 ], + [ 7.8577116, 46.3827979 ], + [ 7.8577385, 46.3829215 ], + [ 7.8577002, 46.3831075 ], + [ 7.8576939, 46.3832483 ], + [ 7.8576475, 46.3834456 ], + [ 7.8575359, 46.3836096 ], + [ 7.8574807, 46.3837227 ], + [ 7.8573851, 46.3838696 ], + [ 7.8572735, 46.3840336 ], + [ 7.8571283, 46.3841755 ], + [ 7.8570735, 46.3843335 ], + [ 7.8570522, 46.3845194 ], + [ 7.8570705, 46.3846824 ], + [ 7.8571048, 46.384806 ], + [ 7.8571647, 46.3849968 ], + [ 7.8572397, 46.3851369 ], + [ 7.8572992, 46.3852659 ], + [ 7.8573324, 46.3853557 ], + [ 7.857327, 46.3854964 ], + [ 7.8572802, 46.385643 ], + [ 7.8571919, 46.3857845 ], + [ 7.857072, 46.3859317 ], + [ 7.8570093, 46.3861291 ], + [ 7.8569006, 46.386462 ], + [ 7.8568478, 46.386783199999996 ], + [ 7.8568741, 46.3869293 ], + [ 7.857054, 46.3869673 ], + [ 7.8572996, 46.3870049 ], + [ 7.8575525, 46.3870311 ], + [ 7.8577563, 46.3870126 ], + [ 7.8579916999999995, 46.3869883 ], + [ 7.8583172, 46.3869464 ], + [ 7.8586102, 46.3869047 ], + [ 7.858903, 46.3868463 ], + [ 7.8591057, 46.3867884 ], + [ 7.8593418, 46.3867416 ], + [ 7.8596348, 46.3867057 ], + [ 7.8598627, 46.3866589 ], + [ 7.8599749, 46.3865623 ], + [ 7.8600471, 46.3864379 ], + [ 7.8601509, 46.3863134 ], + [ 7.8602562, 46.3862732 ], + [ 7.8605073999999995, 46.3861812 ], + [ 7.8608489, 46.3861111 ], + [ 7.8612324000000005, 46.3861193 ], + [ 7.8612976, 46.3861414 ], + [ 7.8614379, 46.3862134 ], + [ 7.8615358, 46.3862634 ], + [ 7.8616912, 46.386296 ], + [ 7.8619034, 46.3863168 ], + [ 7.8621722, 46.3862978 ], + [ 7.8623598, 46.3862908 ], + [ 7.8625641, 46.38634 ], + [ 7.8627356, 46.3863498 ], + [ 7.8629883, 46.3863479 ], + [ 7.8631918, 46.3862901 ], + [ 7.8634188, 46.386232 ], + [ 7.8636387, 46.3862022 ], + [ 7.8638093, 46.3861897 ], + [ 7.8639723, 46.3861546 ], + [ 7.8641425, 46.3861083 ], + [ 7.8643452, 46.3860561 ], + [ 7.864573, 46.3859925 ], + [ 7.8648081, 46.3859232 ], + [ 7.8650848, 46.3858817 ], + [ 7.8652966, 46.3858519 ], + [ 7.8654994, 46.3857997 ], + [ 7.8656947, 46.3857419 ], + [ 7.8659298, 46.3856782 ], + [ 7.8661335, 46.3856485 ], + [ 7.8662796, 46.3856305 ], + [ 7.8664752, 46.3856064 ], + [ 7.8666293, 46.3855715 ], + [ 7.866841, 46.3855305 ], + [ 7.8670679, 46.3854556 ], + [ 7.867311, 46.385375 ], + [ 7.8676202, 46.3853276 ], + [ 7.8679456, 46.3852799 ], + [ 7.8682561, 46.3853001 ], + [ 7.8685739, 46.3853145 ], + [ 7.8688114, 46.3853465 ], + [ 7.8691036, 46.3853104 ], + [ 7.869584, 46.3852447 ], + [ 7.8697301, 46.3852268 ], + [ 7.8699013, 46.3851917 ], + [ 7.8700634, 46.3851511 ], + [ 7.8702416, 46.3850765 ], + [ 7.8704775, 46.3850128 ], + [ 7.8707369, 46.384949 ], + [ 7.8709728, 46.3848796 ], + [ 7.8712243, 46.3848325 ], + [ 7.8714198, 46.3847917 ], + [ 7.8717205, 46.3847106 ], + [ 7.8720043, 46.3846408 ], + [ 7.8723049, 46.3845315 ], + [ 7.8726384, 46.3844784 ], + [ 7.8728978, 46.3844088 ], + [ 7.8730999, 46.3842891 ], + [ 7.8732779, 46.3841976 ], + [ 7.8734315, 46.3841007 ], + [ 7.8736505, 46.3840541 ], + [ 7.8739837999999995, 46.3839839 ], + [ 7.8747058, 46.3837475 ], + [ 7.874974, 46.3836498 ], + [ 7.8751275, 46.3835529 ], + [ 7.8752814, 46.3834956 ], + [ 7.8754840999999995, 46.3834377 ], + [ 7.875646, 46.3833633 ], + [ 7.8758157, 46.383255 ], + [ 7.8759286, 46.3831529 ], + [ 7.8760407, 46.3830507 ], + [ 7.8761379, 46.3830049 ], + [ 7.8762848, 46.3829869 ], + [ 7.8764628, 46.3829067 ], + [ 7.8766, 46.3827875 ], + [ 7.8769105, 46.3823011 ], + [ 7.8774907, 46.3824203 ], + [ 7.8778921, 46.3825298 ], + [ 7.8781694, 46.382567 ], + [ 7.8784718, 46.3825871 ], + [ 7.8787974, 46.3825678 ], + [ 7.8790744, 46.3825599 ], + [ 7.8793188, 46.3825411 ], + [ 7.8797011, 46.3824987 ], + [ 7.8799049, 46.3824804 ], + [ 7.8799854, 46.3823953 ], + [ 7.8801312, 46.3823434 ], + [ 7.8803583, 46.3822911 ], + [ 7.880513, 46.3822336 ], + [ 7.8806574, 46.3821142 ], + [ 7.8808026, 46.381978 ], + [ 7.8808819, 46.381848 ], + [ 7.8809868, 46.3817572 ], + [ 7.8811324, 46.3816772 ], + [ 7.8812863, 46.3816198 ], + [ 7.8814566, 46.3815847 ], + [ 7.8817497, 46.3815598 ], + [ 7.8820926, 46.3815741 ], + [ 7.8823778, 46.3815775 ], + [ 7.8827452000000005, 46.3816027 ], + [ 7.8830141, 46.3815949 ], + [ 7.8831925, 46.3815598 ], + [ 7.8833462999999995, 46.3814912 ], + [ 7.8835822, 46.3814218 ], + [ 7.8838658, 46.3813351 ], + [ 7.8840112, 46.3812382 ], + [ 7.8840914, 46.3811082 ], + [ 7.8842435, 46.3809326 ], + [ 7.8844202, 46.3807793 ], + [ 7.8845737, 46.3806767 ], + [ 7.8846529, 46.3805298 ], + [ 7.8848067, 46.3804611 ], + [ 7.8851238, 46.3803911 ], + [ 7.8854652, 46.3803209 ], + [ 7.8857984, 46.3802338 ], + [ 7.886179, 46.380079 ], + [ 7.8974206, 46.375201 ], + [ 7.8977318, 46.3753054 ], + [ 7.8980443, 46.3754661 ], + [ 7.8983895, 46.3756491 ], + [ 7.8987104, 46.3758491 ], + [ 7.8990979, 46.3761386 ], + [ 7.8994358, 46.3764172 ], + [ 7.8997165, 46.3766626 ], + [ 7.8998492, 46.3767909 ], + [ 7.9000566, 46.3770144 ], + [ 7.9002794, 46.3772321 ], + [ 7.9004123, 46.3773942 ], + [ 7.9005114, 46.3774891 ], + [ 7.9006849, 46.377634 ], + [ 7.9008255, 46.3777398 ], + [ 7.900999, 46.3778903 ], + [ 7.9011647, 46.3780748 ], + [ 7.9013221, 46.378248 ], + [ 7.9014415, 46.3786241 ], + [ 7.9015015, 46.3788036 ], + [ 7.9015602, 46.3789213 ], + [ 7.9016267, 46.3790108 ], + [ 7.9016768, 46.3790667 ], + [ 7.9017841, 46.3791784 ], + [ 7.9019995, 46.3793736 ], + [ 7.9021732, 46.3795466 ], + [ 7.9023383, 46.3796691 ], + [ 7.9024947, 46.3798086 ], + [ 7.9026109, 46.3799145 ], + [ 7.9026858, 46.3800265 ], + [ 7.902728, 46.3801162 ], + [ 7.9027867, 46.3802396 ], + [ 7.9028375, 46.3803798 ], + [ 7.9029138, 46.3805705 ], + [ 7.9030145, 46.3807499 ], + [ 7.9030664999999996, 46.3809407 ], + [ 7.9031418, 46.3811033 ], + [ 7.9032504, 46.3812656 ], + [ 7.9033996, 46.3814164 ], + [ 7.9036221, 46.3816059 ], + [ 7.9041178, 46.3819959 ], + [ 7.9043158, 46.3821631 ], + [ 7.9044811, 46.3823026 ], + [ 7.9046615, 46.3823967 ], + [ 7.9048105, 46.3825362 ], + [ 7.9049841999999995, 46.3827092 ], + [ 7.9051743, 46.3828878 ], + [ 7.9053153, 46.3830442 ], + [ 7.9053984, 46.3831562 ], + [ 7.9054405, 46.3832346 ], + [ 7.9054581, 46.3833076 ], + [ 7.9054922, 46.3833918 ], + [ 7.9055252, 46.3834534 ], + [ 7.9055596, 46.3835769 ], + [ 7.9056191, 46.3836946 ], + [ 7.905686, 46.3838291 ], + [ 7.905769, 46.3839297 ], + [ 7.9059021, 46.3841032 ], + [ 7.9060347, 46.3842259 ], + [ 7.9060932, 46.3843211 ], + [ 7.9061517, 46.3844107 ], + [ 7.9062345, 46.3844944 ], + [ 7.9063503, 46.3846454 ], + [ 7.9065493, 46.3848238 ], + [ 7.9067961, 46.3849964 ], + [ 7.9069449, 46.3851077 ], + [ 7.9069638, 46.3853158 ], + [ 7.9070235, 46.385456 ], + [ 7.907147, 46.3855506 ], + [ 7.9073109, 46.3856281 ], + [ 7.9075652, 46.3857161 ], + [ 7.9078781, 46.3859218 ], + [ 7.9080012, 46.3859658 ], + [ 7.9080839, 46.3860439 ], + [ 7.9080939, 46.3861621 ], + [ 7.9080703, 46.3862523 ], + [ 7.9079986, 46.3863261 ], + [ 7.9078288, 46.3864231 ], + [ 7.9077237, 46.3864801 ], + [ 7.9075218, 46.3866225 ], + [ 7.9074098, 46.3867304 ], + [ 7.907273, 46.3868833 ], + [ 7.9071127, 46.3870422 ], + [ 7.9069997999999995, 46.3871445 ], + [ 7.9069534, 46.3873249 ], + [ 7.9069728999999995, 46.3875048 ], + [ 7.9070238, 46.3876675 ], + [ 7.9070591, 46.387808 ], + [ 7.9071256, 46.3878863 ], + [ 7.9072317, 46.387936 ], + [ 7.9073887, 46.388053 ], + [ 7.9075365, 46.3881362 ], + [ 7.907726, 46.3882585 ], + [ 7.9078248, 46.3883083 ], + [ 7.9079726, 46.3883972 ], + [ 7.9081297, 46.3885253 ], + [ 7.9083195, 46.3886758 ], + [ 7.9084268, 46.3887761 ], + [ 7.9085597, 46.3889271 ], + [ 7.9086845, 46.389078 ], + [ 7.9087043999999995, 46.3893085 ], + [ 7.9087698, 46.3893531 ], + [ 7.9088687, 46.3894197 ], + [ 7.9089673, 46.3894528 ], + [ 7.9090904, 46.3895024 ], + [ 7.9091733, 46.3895974 ], + [ 7.9092074, 46.3896872 ], + [ 7.909209, 46.3897884 ], + [ 7.9091613, 46.3899013 ], + [ 7.9091223, 46.3899974 ], + [ 7.9091066, 46.390065 ], + [ 7.9090753, 46.3901103 ], + [ 7.9090599, 46.3902061 ], + [ 7.9090777, 46.3902903 ], + [ 7.9090953, 46.3903577 ], + [ 7.9091295, 46.3904532 ], + [ 7.9091639, 46.3905767 ], + [ 7.9091903, 46.3907172 ], + [ 7.9092002, 46.3908296 ], + [ 7.9091941, 46.3909703 ], + [ 7.9091879, 46.3910998 ], + [ 7.9091656, 46.3912464 ], + [ 7.9091352, 46.3913929 ], + [ 7.9091208, 46.3915168 ], + [ 7.9090673, 46.3917255 ], + [ 7.9090045, 46.3918835 ], + [ 7.90896, 46.3921821 ], + [ 7.9089944, 46.3923056 ], + [ 7.9090283, 46.3923842 ], + [ 7.9090869, 46.3924907 ], + [ 7.9091535, 46.3925746 ], + [ 7.9091378, 46.3926421 ], + [ 7.9091068, 46.3927212 ], + [ 7.9091156, 46.3927943 ], + [ 7.9091416, 46.3928898 ], + [ 7.9091431, 46.3929741 ], + [ 7.9091192, 46.3930193 ], + [ 7.9090881, 46.3930984 ], + [ 7.9090481, 46.3931718 ], + [ 7.9089757, 46.3932513 ], + [ 7.9089447, 46.3933302 ], + [ 7.9089224, 46.3934824 ], + [ 7.9089083, 46.3936288 ], + [ 7.9089266, 46.3937751 ], + [ 7.9089607, 46.3938704 ], + [ 7.9089945, 46.3939264 ], + [ 7.9090203, 46.3939937 ], + [ 7.9090628, 46.3941172 ], + [ 7.9090959, 46.3941845 ], + [ 7.9091219, 46.3942742 ], + [ 7.9091884, 46.3943581 ], + [ 7.9092712, 46.3944419 ], + [ 7.9093295999999995, 46.3945258 ], + [ 7.9094206, 46.3946207 ], + [ 7.9095356, 46.3946704 ], + [ 7.9095615, 46.3947434 ], + [ 7.9095793, 46.3948333 ], + [ 7.909581, 46.3949346 ], + [ 7.9096075, 46.3950807 ], + [ 7.9096486, 46.3951366 ], + [ 7.9097311, 46.3951922 ], + [ 7.909781, 46.3952312 ], + [ 7.909814, 46.3952873 ], + [ 7.9098481, 46.395377 ], + [ 7.9098658, 46.3954444 ], + [ 7.9099067, 46.3954835 ], + [ 7.909957, 46.3955618 ], + [ 7.9100073, 46.3956516 ], + [ 7.9100816, 46.3956847 ], + [ 7.9101886, 46.3957513 ], + [ 7.9102388999999995, 46.3958409 ], + [ 7.9102722, 46.3959251 ], + [ 7.9102981, 46.396015 ], + [ 7.9103079, 46.3961161 ], + [ 7.9102934, 46.3962232 ], + [ 7.9102941, 46.3962964 ], + [ 7.9103119, 46.3963863 ], + [ 7.9103621, 46.396459 ], + [ 7.9104205, 46.3965374 ], + [ 7.9104788, 46.3966101 ], + [ 7.9105053, 46.3967618 ], + [ 7.9104907, 46.3968519 ], + [ 7.9104589999999995, 46.3969534 ], + [ 7.9104042, 46.3971002 ], + [ 7.9104223, 46.3972182 ], + [ 7.9104414, 46.3973588 ], + [ 7.9105001999999995, 46.3974878 ], + [ 7.9105512000000004, 46.3976448 ], + [ 7.9105546, 46.3978588 ], + [ 7.9105174, 46.3980672 ], + [ 7.9105688, 46.3982694 ], + [ 7.9106127, 46.3984604 ], + [ 7.9105735, 46.3985394 ], + [ 7.9105741, 46.3986014 ], + [ 7.9106158, 46.398634799999996 ], + [ 7.9106325, 46.3986797 ], + [ 7.9106501, 46.3987471 ], + [ 7.9106764, 46.3988707 ], + [ 7.9107033, 46.3990674 ], + [ 7.9106807, 46.3991858 ], + [ 7.9106741, 46.399259 ], + [ 7.9107163, 46.3993544 ], + [ 7.9107426, 46.399478 ], + [ 7.9107117, 46.3995738 ], + [ 7.9107219, 46.3997145 ], + [ 7.9107145, 46.399799 ], + [ 7.910724, 46.3998664 ], + [ 7.9106597999999995, 46.3999625 ], + [ 7.9105801, 46.400042 ], + [ 7.9104513, 46.4001893 ], + [ 7.9104366, 46.4002738 ], + [ 7.9103816, 46.4003925 ], + [ 7.9102365, 46.4005344 ], + [ 7.9102314, 46.4006976 ], + [ 7.9102160999999995, 46.4008103 ], + [ 7.9101284, 46.4009123 ], + [ 7.9099672, 46.4010598 ], + [ 7.9098476, 46.4012297 ], + [ 7.909793, 46.4014045 ], + [ 7.9098209, 46.4016182 ], + [ 7.909847, 46.4017249 ], + [ 7.9098403, 46.4018038 ], + [ 7.9098085, 46.4018771 ], + [ 7.9097937, 46.4019504 ], + [ 7.9098025, 46.4020291 ], + [ 7.9098286, 46.4021415 ], + [ 7.9098964, 46.402276 ], + [ 7.9099550999999995, 46.4023824 ], + [ 7.9100802, 46.4025615 ], + [ 7.9100736, 46.4026517 ], + [ 7.9102492, 46.4029429 ], + [ 7.9104331, 46.4032509 ], + [ 7.910633, 46.4035194 ], + [ 7.9107746, 46.4037264 ], + [ 7.9108429000000005, 46.4039172 ], + [ 7.910926, 46.4040404 ], + [ 7.9109523, 46.4041696 ], + [ 7.9109862, 46.4042368 ], + [ 7.9110298, 46.4043884 ], + [ 7.9110887, 46.4045229 ], + [ 7.911173, 46.4046911 ], + [ 7.9112236, 46.404809 ], + [ 7.9112244, 46.4048989 ], + [ 7.9111937, 46.4050118 ], + [ 7.9111061, 46.405125 ], + [ 7.911042, 46.4052324 ], + [ 7.9110274, 46.4053282 ], + [ 7.9110533, 46.4054068 ], + [ 7.9110872, 46.4054798 ], + [ 7.9112772, 46.4056357 ], + [ 7.9114007, 46.4057361 ], + [ 7.9116232, 46.4058918 ], + [ 7.9118144, 46.4061097 ], + [ 7.9118069, 46.4061829 ], + [ 7.9118003, 46.4062618 ], + [ 7.9117606, 46.4063635 ], + [ 7.9117134, 46.4064538 ], + [ 7.9117298, 46.4064762 ], + [ 7.911829, 46.4065711 ], + [ 7.9118711, 46.4066439 ], + [ 7.9118485, 46.4067567 ], + [ 7.9117938, 46.4069146 ], + [ 7.9117389, 46.4070502 ], + [ 7.9117242999999995, 46.4071516 ], + [ 7.9116858, 46.4072982 ], + [ 7.9116717, 46.4074559 ], + [ 7.9116576, 46.4076079 ], + [ 7.9116112, 46.4077884 ], + [ 7.9115398, 46.4079016 ], + [ 7.9114443, 46.4080317 ], + [ 7.9113167, 46.4082241 ], + [ 7.9111638, 46.4084054 ], + [ 7.9110436, 46.408502 ], + [ 7.9109304, 46.4085761 ], + [ 7.9108253, 46.4086332 ], + [ 7.910654, 46.4086684 ], + [ 7.9105243, 46.408697599999996 ], + [ 7.9103866, 46.4087549 ], + [ 7.9102165, 46.4088238 ], + [ 7.9099888, 46.4089101 ], + [ 7.9096063999999995, 46.4089526 ], + [ 7.909329, 46.4089267 ], + [ 7.9092503, 46.4091355 ], + [ 7.9091968999999995, 46.4093498 ], + [ 7.909134, 46.4094967 ], + [ 7.9090530999999995, 46.4095479 ], + [ 7.9089968, 46.4096103 ], + [ 7.9089404, 46.4096782 ], + [ 7.9088191, 46.4097468 ], + [ 7.9085922, 46.4098218 ], + [ 7.9083977, 46.4098965 ], + [ 7.9083007, 46.4099536 ], + [ 7.908204, 46.41005 ], + [ 7.908131, 46.4100674 ], + [ 7.9080083, 46.4100685 ], + [ 7.9078945, 46.4100694 ], + [ 7.9077566, 46.4101043 ], + [ 7.9076351, 46.4101503 ], + [ 7.9075137, 46.4102131 ], + [ 7.9073911, 46.4102366 ], + [ 7.9071881, 46.4102552 ], + [ 7.9069845999999995, 46.4103187 ], + [ 7.90679, 46.4103766 ], + [ 7.906562, 46.410417699999996 ], + [ 7.9061555, 46.4105054 ], + [ 7.9061307, 46.4104549 ], + [ 7.9060236, 46.4103827 ], + [ 7.9059083999999995, 46.4103105 ], + [ 7.9058174999999995, 46.4102381 ], + [ 7.9057265999999995, 46.4101544 ], + [ 7.9056683, 46.4100873 ], + [ 7.9056103, 46.4100539 ], + [ 7.9054221, 46.4099992 ], + [ 7.905242, 46.40995 ], + [ 7.9050364, 46.4098616 ], + [ 7.9048725, 46.4097954 ], + [ 7.9047898, 46.4097229 ], + [ 7.9047232, 46.4096334 ], + [ 7.9046325, 46.4095834 ], + [ 7.9045026, 46.4095957 ], + [ 7.9043079, 46.4096424 ], + [ 7.9040154, 46.4097573 ], + [ 7.903855, 46.4099161 ], + [ 7.9036148, 46.4102388 ], + [ 7.9035598, 46.4103686 ], + [ 7.9034718999999996, 46.4104537 ], + [ 7.9033829, 46.4104995 ], + [ 7.903293, 46.4105397 ], + [ 7.9032379, 46.4106526 ], + [ 7.9032557, 46.4107425 ], + [ 7.9032412999999995, 46.4108664 ], + [ 7.9033066, 46.4108941 ], + [ 7.9034135, 46.4109438 ], + [ 7.9034718, 46.4110109 ], + [ 7.9035383, 46.4110836 ], + [ 7.9035806, 46.4111845 ], + [ 7.9035579, 46.4112859 ], + [ 7.9034774, 46.4113766 ], + [ 7.9034145, 46.4115348 ], + [ 7.9033675, 46.4116477 ], + [ 7.903378, 46.4118277 ], + [ 7.9033959, 46.4119288 ], + [ 7.9034786, 46.4119957 ], + [ 7.903382, 46.4121089 ], + [ 7.9033513, 46.4122274 ], + [ 7.9033529, 46.4123175 ], + [ 7.9034274, 46.4123788 ], + [ 7.9037169, 46.4126747 ], + [ 7.9038317, 46.412702 ], + [ 7.903987, 46.4127006 ], + [ 7.9041334, 46.4127107 ], + [ 7.9043209999999995, 46.412698 ], + [ 7.9044426, 46.4126576 ], + [ 7.9046042, 46.4125494 ], + [ 7.9046684, 46.4124476 ], + [ 7.9047817, 46.4123904 ], + [ 7.9049359, 46.4123667 ], + [ 7.905221, 46.4123363 ], + [ 7.9055954, 46.4122938 ], + [ 7.905921, 46.4122575 ], + [ 7.9061085, 46.4122278 ], + [ 7.9061567, 46.41216 ], + [ 7.9062283, 46.4120693 ], + [ 7.9064078, 46.412051 ], + [ 7.9066604, 46.4120377 ], + [ 7.9069863, 46.4120238 ], + [ 7.9073932, 46.4119868 ], + [ 7.9078253, 46.4119495 ], + [ 7.9081265, 46.4119021 ], + [ 7.9084024, 46.4118548 ], + [ 7.9085412999999996, 46.4118368 ], + [ 7.9087357, 46.4117564 ], + [ 7.9088826999999995, 46.411744 ], + [ 7.9089967, 46.4117713 ], + [ 7.9091201, 46.411849 ], + [ 7.9093745, 46.4119371 ], + [ 7.9095961, 46.4119972 ], + [ 7.909744, 46.412086 ], + [ 7.9099258, 46.4122364 ], + [ 7.9099517, 46.4123207 ], + [ 7.9100512, 46.4124549 ], + [ 7.9101259, 46.4125332 ], + [ 7.9103072999999995, 46.4126442 ], + [ 7.9105847, 46.4126645 ], + [ 7.9108618, 46.4126623 ], + [ 7.9111805, 46.4126597 ], + [ 7.9113689, 46.4127313 ], + [ 7.9115248, 46.4128088 ], + [ 7.9117224, 46.4129142 ], + [ 7.9119108, 46.4129802 ], + [ 7.9120172, 46.4129793 ], + [ 7.9121958, 46.4129498 ], + [ 7.9124144, 46.4128467 ], + [ 7.9126746, 46.4127601 ], + [ 7.9127958, 46.412686 ], + [ 7.9129908, 46.4126676 ], + [ 7.9130892, 46.412678 ], + [ 7.9132285, 46.4127106 ], + [ 7.9134735, 46.4127425 ], + [ 7.913645, 46.412741 ], + [ 7.9139465, 46.412733 ], + [ 7.9142236, 46.4127307 ], + [ 7.9144765, 46.4127343 ], + [ 7.9148104, 46.4127204 ], + [ 7.9151198, 46.4126785 ], + [ 7.9153639, 46.4126145 ], + [ 7.915576, 46.4126129 ], + [ 7.9158045999999995, 46.4126335 ], + [ 7.9159763, 46.4126547 ], + [ 7.9161888, 46.4126923 ], + [ 7.9164171, 46.4126792 ], + [ 7.9166615, 46.4126491 ], + [ 7.916921, 46.4125794 ], + [ 7.9172299, 46.4124869 ], + [ 7.917546, 46.4123773 ], + [ 7.9177891, 46.412291 ], + [ 7.9179685, 46.4122614 ], + [ 7.9181887, 46.4122596 ], + [ 7.9184738, 46.4122292 ], + [ 7.918702, 46.4122104 ], + [ 7.9189372, 46.4121522 ], + [ 7.9191166, 46.412117 ], + [ 7.9193845, 46.4120866 ], + [ 7.9196373, 46.4120845 ], + [ 7.9198263, 46.4121336 ], + [ 7.9200552, 46.4121881 ], + [ 7.9202688, 46.4122595 ], + [ 7.9204976, 46.4122971 ], + [ 7.9206598, 46.412262 ], + [ 7.9208543, 46.4121872 ], + [ 7.9210904, 46.4121458 ], + [ 7.9215554, 46.412142 ], + [ 7.9220363, 46.4121101 ], + [ 7.9223543, 46.4121243 ], + [ 7.9225342, 46.4121622 ], + [ 7.922772, 46.4122053 ], + [ 7.923132, 46.4122923 ], + [ 7.92345, 46.412312299999996 ], + [ 7.9236959, 46.4123553 ], + [ 7.9239977, 46.412381 ], + [ 7.9243002, 46.4123954 ], + [ 7.9245858, 46.4124268 ], + [ 7.9248725, 46.4124863 ], + [ 7.9251258, 46.4125462 ], + [ 7.9254127, 46.4126338 ], + [ 7.9256263, 46.4126997 ], + [ 7.9257174, 46.4127946 ], + [ 7.9258168, 46.4129176 ], + [ 7.9259577, 46.4130402 ], + [ 7.9260393, 46.4130677 ], + [ 7.9261623, 46.4130948 ], + [ 7.9264311, 46.4130701 ], + [ 7.9266268, 46.4130459 ], + [ 7.9267067, 46.4129833 ], + [ 7.9268521, 46.4128753 ], + [ 7.9269891, 46.4127503 ], + [ 7.9271833, 46.4126475 ], + [ 7.9273941, 46.4125895 ], + [ 7.9276454, 46.4125086 ], + [ 7.9279867, 46.4124101 ], + [ 7.9281567, 46.41233 ], + [ 7.9282536, 46.412256 ], + [ 7.9283748, 46.4121762 ], + [ 7.9284802, 46.4121529 ], + [ 7.9287327, 46.4121114 ], + [ 7.9290093, 46.4120527 ], + [ 7.9292281, 46.4119722 ], + [ 7.9294955, 46.41188 ], + [ 7.9298124, 46.4117816 ], + [ 7.9301691, 46.4116775 ], + [ 7.930421, 46.4115797 ], + [ 7.9306718, 46.4114482 ], + [ 7.9309471, 46.4113222 ], + [ 7.931271, 46.41119 ], + [ 7.9316271, 46.4110239 ], + [ 7.9319037, 46.4109541 ], + [ 7.9322355, 46.4107938 ], + [ 7.9324861, 46.4106454 ], + [ 7.9328422, 46.4104736 ], + [ 7.9331092, 46.4103307 ], + [ 7.9333504, 46.4101317 ], + [ 7.9334953, 46.4099786 ], + [ 7.9338173, 46.4097284 ], + [ 7.9342178, 46.4092524 ], + [ 7.9344608999999995, 46.4091715 ], + [ 7.9347117, 46.4090401 ], + [ 7.9349867, 46.4088914 ], + [ 7.9352858, 46.4087144 ], + [ 7.9355766, 46.4085207 ], + [ 7.9358419, 46.4082878 ], + [ 7.9361151, 46.4080323 ], + [ 7.9364688, 46.4076861 ], + [ 7.9366938, 46.4074928 ], + [ 7.9367665, 46.4074472 ], + [ 7.9368632, 46.4073621 ], + [ 7.9369906, 46.4071584 ], + [ 7.9370614, 46.4069946 ], + [ 7.9374885, 46.4066815 ], + [ 7.9376988, 46.4065617 ], + [ 7.9379401, 46.4063796 ], + [ 7.9381661, 46.4062088 ], + [ 7.9383101, 46.40605 ], + [ 7.9385947, 46.4059745 ], + [ 7.9389673, 46.4058308 ], + [ 7.9391853, 46.405677 ], + [ 7.939298, 46.4055579 ], + [ 7.9393042, 46.4054397 ], + [ 7.9393185, 46.40531 ], + [ 7.939242, 46.4051193 ], + [ 7.9391575, 46.4049457 ], + [ 7.9390892, 46.4047717 ], + [ 7.9390284, 46.4045246 ], + [ 7.9390667, 46.4043554 ], + [ 7.9391358, 46.4040905 ], + [ 7.9392303, 46.4038533 ], + [ 7.9393567, 46.4036328 ], + [ 7.939524, 46.4033612 ], + [ 7.9397792, 46.4030046 ], + [ 7.9398499, 46.4028296 ], + [ 7.9399207, 46.4026602 ], + [ 7.9399757, 46.402547 ], + [ 7.9399892, 46.4023276 ], + [ 7.9399934, 46.4020799 ], + [ 7.9399638, 46.4017819 ], + [ 7.9399014999999995, 46.4014615 ], + [ 7.9398669, 46.4013213 ], + [ 7.9399542, 46.4011741 ], + [ 7.9399678, 46.4009771 ], + [ 7.9400144, 46.4008303 ], + [ 7.9399723, 46.4007632 ], + [ 7.9399055, 46.4006568 ], + [ 7.9398469, 46.4005616 ], + [ 7.9397953, 46.4004327 ], + [ 7.9397926, 46.4002189 ], + [ 7.9398308, 46.4000496 ], + [ 7.9398858, 46.399931 ], + [ 7.9398907, 46.3997566 ], + [ 7.9398556, 46.3995599 ], + [ 7.9397791, 46.3993747 ], + [ 7.9397120999999995, 46.3992516 ], + [ 7.9396601, 46.3990719 ], + [ 7.9396337, 46.3989427 ], + [ 7.9396059999999995, 46.3987628 ], + [ 7.9396524, 46.3985936 ], + [ 7.9396096, 46.3984364 ], + [ 7.9395429, 46.3983468 ], + [ 7.9394589, 46.3982238 ], + [ 7.9393187, 46.3980899 ], + [ 7.9391855, 46.3979279 ], + [ 7.9390449, 46.3978277 ], + [ 7.9388722, 46.3976997 ], + [ 7.9386890999999995, 46.3974987 ], + [ 7.9385316, 46.3973367 ], + [ 7.9383816, 46.3971073 ], + [ 7.9382562, 46.3969001 ], + [ 7.9381297, 46.3966704 ], + [ 7.937996, 46.3964408 ], + [ 7.9378465, 46.3962675 ], + [ 7.9376792, 46.3960157 ], + [ 7.9374807, 46.3958091 ], + [ 7.9373151, 46.3956529 ], + [ 7.9370594, 46.3955031 ], + [ 7.9368121, 46.395297 ], + [ 7.9365735, 46.3951583 ], + [ 7.9365382, 46.3950235 ], + [ 7.9364713, 46.3949115 ], + [ 7.9363302000000004, 46.3947664 ], + [ 7.9360912, 46.3945713 ], + [ 7.9359656, 46.3943417 ], + [ 7.9358876, 46.3940779 ], + [ 7.9358835, 46.393807699999996 ], + [ 7.9359035, 46.3935038 ], + [ 7.9359573, 46.3933457 ], + [ 7.936102, 46.3931757 ], + [ 7.9363263, 46.3929149 ], + [ 7.9365894, 46.3925413 ], + [ 7.9369723, 46.3920316 ], + [ 7.9375447, 46.391087 ], + [ 7.9376482, 46.3909456 ], + [ 7.9377691, 46.3908433 ], + [ 7.9379713, 46.3907346 ], + [ 7.9381981, 46.3906652 ], + [ 7.9383669999999995, 46.3904725 ], + [ 7.9384623, 46.3903254 ], + [ 7.9385317, 46.3900884 ], + [ 7.9385533, 46.3898743 ], + [ 7.9385819, 46.3896265 ], + [ 7.9386516, 46.3894346 ], + [ 7.9386572, 46.3892489 ], + [ 7.938655, 46.3891026 ], + [ 7.9386821, 46.388776 ], + [ 7.9387205, 46.3886237 ], + [ 7.9387928, 46.3885274 ], + [ 7.9388321, 46.3884709 ], + [ 7.9389532, 46.3883911 ], + [ 7.9390581000000005, 46.3883113 ], + [ 7.9391709, 46.3882092 ], + [ 7.9392504, 46.3881072 ], + [ 7.9392982, 46.3879999 ], + [ 7.9393288, 46.387887 ], + [ 7.9393271, 46.3877858 ], + [ 7.9393332, 46.3876564 ], + [ 7.9393732, 46.387594 ], + [ 7.9394611, 46.3875201 ], + [ 7.939509, 46.3874241 ], + [ 7.939491, 46.3873173 ], + [ 7.9394484, 46.3871994 ], + [ 7.9393641, 46.3870427 ], + [ 7.9392888, 46.386897 ], + [ 7.9391805, 46.3867796 ], + [ 7.9390404, 46.3866457 ], + [ 7.9389495, 46.3865677 ], + [ 7.9388261, 46.3864956 ], + [ 7.9387422, 46.3863838 ], + [ 7.9386348, 46.3862833 ], + [ 7.9385174, 46.3860592 ], + [ 7.9384492, 46.3858854 ], + [ 7.9383982, 46.3857226 ], + [ 7.9382879, 46.3854816 ], + [ 7.9382277, 46.3853019 ], + [ 7.9383985, 46.3852274 ], + [ 7.9385025, 46.385142 ], + [ 7.9386395, 46.3850228 ], + [ 7.9386943, 46.3848815 ], + [ 7.938716, 46.3846845 ], + [ 7.9387612999999995, 46.3844871 ], + [ 7.9387266, 46.3843355 ], + [ 7.9379757, 46.3837789 ], + [ 7.9376468, 46.3836184 ], + [ 7.9375558, 46.3835291 ], + [ 7.9375297, 46.3834281 ], + [ 7.9375775, 46.3833207 ], + [ 7.9376808, 46.3831624 ], + [ 7.9377922, 46.3829869 ], + [ 7.9378629, 46.3828119 ], + [ 7.9379656, 46.382586 ], + [ 7.9380437, 46.3824166 ], + [ 7.9381062, 46.3822359 ], + [ 7.9381851, 46.3820721 ], + [ 7.9383864, 46.3818791 ], + [ 7.9385948, 46.3816522 ], + [ 7.9389222, 46.3812162 ], + [ 7.9391145, 46.3810176 ], + [ 7.9392585, 46.3808532 ], + [ 7.939354, 46.3807342 ], + [ 7.939376, 46.3805653 ], + [ 7.9394141, 46.3803735 ], + [ 7.9393701, 46.3801882 ], + [ 7.9393096, 46.3799637 ], + [ 7.9392673, 46.3798739 ], + [ 7.9392252, 46.3797955 ], + [ 7.9391341, 46.3797006 ], + [ 7.939059, 46.3795661 ], + [ 7.9389748, 46.3794262 ], + [ 7.9388492, 46.3791965 ], + [ 7.9387416, 46.379068 ], + [ 7.938633, 46.3789169 ], + [ 7.9385487999999995, 46.3787656 ], + [ 7.9384493, 46.378637 ], + [ 7.938357, 46.3784916 ], + [ 7.9382737, 46.3783627 ], + [ 7.9382394, 46.3782448 ], + [ 7.9382698, 46.3781096 ], + [ 7.9383242, 46.3779346 ], + [ 7.9383859, 46.377754 ], + [ 7.9384401, 46.3775453 ], + [ 7.9384446, 46.3773315 ], + [ 7.938418, 46.3771742 ], + [ 7.9384001, 46.3770842 ], + [ 7.9383498, 46.3770058 ], + [ 7.9383491, 46.3769215 ], + [ 7.9383554, 46.3768201 ], + [ 7.9384268, 46.3767182 ], + [ 7.9385069999999995, 46.3766106 ], + [ 7.9386347, 46.3764464 ], + [ 7.9387381999999995, 46.3763105 ], + [ 7.9388991, 46.3761348 ], + [ 7.9390189, 46.3759986 ], + [ 7.9391381, 46.3758063 ], + [ 7.9392736, 46.3756083 ], + [ 7.93949, 46.3753813 ], + [ 7.9396338, 46.3752056 ], + [ 7.9396898, 46.3751151 ], + [ 7.9397286, 46.3750022 ], + [ 7.9397667, 46.3748219 ], + [ 7.9397874, 46.3745966 ], + [ 7.9398342, 46.3744668 ], + [ 7.9398742, 46.3744045 ], + [ 7.9399792, 46.3743361 ], + [ 7.9400517, 46.3742736 ], + [ 7.9400992, 46.3742226 ], + [ 7.9401048, 46.3740481 ], + [ 7.9401094, 46.3738398 ], + [ 7.9400905999999996, 46.3736486 ], + [ 7.9401453, 46.3735019 ], + [ 7.9402007, 46.3734283 ], + [ 7.9402895000000004, 46.3733656 ], + [ 7.9404347, 46.3732631 ], + [ 7.9406044, 46.3731604 ], + [ 7.9408388, 46.3730403 ], + [ 7.9411703, 46.3728742 ], + [ 7.9414774, 46.3727029 ], + [ 7.9417522, 46.3725543 ], + [ 7.942132, 46.3723429 ], + [ 7.9423096, 46.3722232 ], + [ 7.94247, 46.3720924 ], + [ 7.942615, 46.3719618 ], + [ 7.942718, 46.371764 ], + [ 7.9427392, 46.3716063 ], + [ 7.9427768, 46.3713639 ], + [ 7.9428446, 46.3710538 ], + [ 7.9428116, 46.3710035 ], + [ 7.942873, 46.3707836 ], + [ 7.942927, 46.3705692 ], + [ 7.9429311, 46.3703047 ], + [ 7.942935, 46.3700233 ], + [ 7.9430364, 46.3697466 ], + [ 7.9432387, 46.3691428 ], + [ 7.9433157, 46.3688664 ], + [ 7.9433283, 46.3686412 ], + [ 7.9432773999999995, 46.368501 ], + [ 7.9432661, 46.3683322 ], + [ 7.9432866, 46.3680901 ], + [ 7.9433568999999995, 46.3678699 ], + [ 7.9434262, 46.3676387 ], + [ 7.9434982, 46.3675199 ], + [ 7.9436821, 46.3672989 ], + [ 7.9439872, 46.3669981 ], + [ 7.9445189, 46.3666222 ], + [ 7.9446625, 46.3664353 ], + [ 7.9447654, 46.3662263 ], + [ 7.9448754, 46.3660058 ], + [ 7.9449136, 46.3658367 ], + [ 7.944863, 46.3657246 ], + [ 7.9448042999999995, 46.3656068 ], + [ 7.9447864, 46.3655225 ], + [ 7.9448089, 46.3654098 ], + [ 7.9448717, 46.3652629 ], + [ 7.9449181, 46.3650938 ], + [ 7.9449478, 46.3648797 ], + [ 7.9449521, 46.3646433 ], + [ 7.9449567, 46.3644463 ], + [ 7.9448961, 46.3642161 ], + [ 7.9448922, 46.3639742 ], + [ 7.9449529, 46.3636866 ], + [ 7.9450313999999995, 46.3634833 ], + [ 7.9451023, 46.3633365 ], + [ 7.9451816, 46.3632177 ], + [ 7.9453592, 46.363098 ], + [ 7.945511, 46.3629223 ], + [ 7.9456302, 46.3627186 ], + [ 7.945733, 46.3625096 ], + [ 7.9458193999999995, 46.3622893 ], + [ 7.9458969, 46.3620579 ], + [ 7.9459268, 46.361872 ], + [ 7.9460057, 46.3617081 ], + [ 7.9461396, 46.3614426 ], + [ 7.9462893999999995, 46.3611261 ], + [ 7.9464402, 46.3608434 ], + [ 7.9465743, 46.3605947 ], + [ 7.9466691, 46.3603913 ], + [ 7.9468434, 46.3601028 ], + [ 7.9470333, 46.3597412 ], + [ 7.9471508, 46.3594532 ], + [ 7.9473579999999995, 46.3591194 ], + [ 7.9475086, 46.3588986 ], + [ 7.9477586, 46.3587108 ], + [ 7.9479589, 46.3585065 ], + [ 7.948144, 46.3583306 ], + [ 7.9482717, 46.3581719 ], + [ 7.9483669, 46.3580192 ], + [ 7.9484616, 46.3578158 ], + [ 7.9485483, 46.3576237 ], + [ 7.9486746, 46.3574088 ], + [ 7.9488273, 46.3572331 ], + [ 7.9489387, 46.3570802 ], + [ 7.9489936, 46.3569615 ], + [ 7.9489830999999995, 46.3567927 ], + [ 7.9489569, 46.3566861 ], + [ 7.9489309, 46.3565907 ], + [ 7.9488315, 46.3564789 ], + [ 7.9487973, 46.3563723 ], + [ 7.9488115, 46.3562427 ], + [ 7.948816, 46.3560344 ], + [ 7.9488541, 46.3558484 ], + [ 7.9489562, 46.3556562 ], + [ 7.9490754, 46.3554638 ], + [ 7.9491135, 46.3552834 ], + [ 7.9492022, 46.3552151 ], + [ 7.9492246, 46.3550968 ], + [ 7.9491817, 46.354934 ], + [ 7.9491457, 46.3547373 ], + [ 7.9491598, 46.3545964 ], + [ 7.9492145, 46.3544497 ], + [ 7.9492832, 46.3541565 ], + [ 7.9493769, 46.3539362 ], + [ 7.9494377, 46.35366 ], + [ 7.9494354, 46.3534968 ], + [ 7.9494489, 46.3532941 ], + [ 7.9493884, 46.3530751 ], + [ 7.9493604, 46.3528615 ], + [ 7.9492917, 46.3526426 ], + [ 7.9491971, 46.3523339 ], + [ 7.9490844, 46.3519183 ], + [ 7.9490742999999995, 46.351789 ], + [ 7.9490721, 46.3516484 ], + [ 7.9491091, 46.3514341 ], + [ 7.9491149, 46.3512765 ], + [ 7.9492175, 46.3510506 ], + [ 7.9493028, 46.350791 ], + [ 7.9494445, 46.3504915 ], + [ 7.9496182, 46.3501355 ], + [ 7.9497695, 46.3499091 ], + [ 7.9499696, 46.3496823 ], + [ 7.9502429, 46.3494718 ], + [ 7.9505736, 46.3492383 ], + [ 7.9511215, 46.3488791 ], + [ 7.9513134, 46.3486467 ], + [ 7.9515059, 46.3479641 ], + [ 7.9516596, 46.3473831 ], + [ 7.9517202, 46.3471013 ], + [ 7.9518143, 46.3468304 ], + [ 7.9518447, 46.3466895 ], + [ 7.9518737, 46.3464923 ], + [ 7.9518387, 46.3463125 ], + [ 7.9517786, 46.3461385 ], + [ 7.9517591, 46.3459699 ], + [ 7.9517488, 46.3458236 ], + [ 7.9516976, 46.3456383 ], + [ 7.9516456, 46.3454642 ], + [ 7.9516597, 46.3453234 ], + [ 7.9517142, 46.3451599 ], + [ 7.9517351, 46.3449627 ], + [ 7.9518215, 46.3447425 ], + [ 7.9519161, 46.3445278 ], + [ 7.9520029999999995, 46.344363799999996 ], + [ 7.9521143, 46.3441941 ], + [ 7.9522817, 46.3439563 ], + [ 7.9524014, 46.3438146 ], + [ 7.9525466, 46.3437177 ], + [ 7.9526841, 46.3436659 ], + [ 7.9529122, 46.3436584 ], + [ 7.9531483, 46.3436451 ], + [ 7.9533347, 46.3436097 ], + [ 7.9535057, 46.3435746 ], + [ 7.9536511999999995, 46.3435058 ], + [ 7.9538208, 46.34342 ], + [ 7.9539488, 46.3433006 ], + [ 7.9540451, 46.3431817 ], + [ 7.9541157, 46.3430067 ], + [ 7.9541683, 46.3427305 ], + [ 7.9541888, 46.3424996 ], + [ 7.9541692, 46.3423084 ], + [ 7.9541829, 46.3421281 ], + [ 7.9541872, 46.3418918 ], + [ 7.9541837, 46.3416949 ], + [ 7.9541891, 46.3414922 ], + [ 7.9542019, 46.3413007 ], + [ 7.9542314, 46.3410754 ], + [ 7.9542345999999995, 46.3408108 ], + [ 7.9542303, 46.340529599999996 ], + [ 7.9541861, 46.3403217 ], + [ 7.9541353, 46.3401814 ], + [ 7.9540751, 46.3399963 ], + [ 7.9539906, 46.3398169 ], + [ 7.9538411, 46.3396325 ], + [ 7.9536996, 46.339431 ], + [ 7.9535417, 46.3392185 ], + [ 7.9534085, 46.3390396 ], + [ 7.9532834999999995, 46.3388605 ], + [ 7.9532148, 46.3386417 ], + [ 7.9531624999999995, 46.3384282 ], + [ 7.953134, 46.3381584 ], + [ 7.9532051, 46.3380395 ], + [ 7.9533097, 46.3379431 ], + [ 7.9534291, 46.3377732 ], + [ 7.953565, 46.3376427 ], + [ 7.9536611, 46.3375011 ], + [ 7.953732, 46.3373654 ], + [ 7.9538435, 46.3372182 ], + [ 7.9539462, 46.3370091 ], + [ 7.9540157, 46.336806 ], + [ 7.9540782, 46.3366254 ], + [ 7.9540921, 46.3364676 ], + [ 7.9540899, 46.3363158 ], + [ 7.9540539, 46.3361191 ], + [ 7.9538708, 46.3358955 ], + [ 7.9536961999999995, 46.3356269 ], + [ 7.953447, 46.3353701 ], + [ 7.9532148, 46.3351132 ], + [ 7.9530083, 46.3349012 ], + [ 7.952877, 46.3348403 ], + [ 7.9527538, 46.3347626 ], + [ 7.9525322, 46.3346743 ], + [ 7.952409, 46.3346078 ], + [ 7.9523425, 46.3345353 ], + [ 7.9523165, 46.3344455 ], + [ 7.9522981999999995, 46.3343105 ], + [ 7.9523203, 46.3341584 ], + [ 7.9523504, 46.3339893 ], + [ 7.9524208, 46.3337974 ], + [ 7.9525158, 46.3336222 ], + [ 7.9525773, 46.3334303 ], + [ 7.9526799, 46.33321 ], + [ 7.9527329, 46.3329788 ], + [ 7.9527292, 46.3327537 ], + [ 7.9528053, 46.3323873 ], + [ 7.9528174, 46.3321227 ], + [ 7.9527005, 46.3319492 ], + [ 7.952592, 46.3318038 ], + [ 7.9526871, 46.3316512 ], + [ 7.9527595, 46.3315773 ], + [ 7.9528153, 46.3314756 ], + [ 7.9528609, 46.3313177 ], + [ 7.9528016, 46.331138 ], + [ 7.952739, 46.3307841 ], + [ 7.9526427, 46.3303797 ], + [ 7.952532, 46.3300936 ], + [ 7.952439, 46.3298637 ], + [ 7.9522801, 46.3296286 ], + [ 7.9521059, 46.3293992 ], + [ 7.9518905, 46.3291873 ], + [ 7.9515354, 46.3288864 ], + [ 7.9496313999999995, 46.3274111 ], + [ 7.9492612, 46.3272172 ], + [ 7.9490649, 46.3271402 ], + [ 7.9485159, 46.3269308 ], + [ 7.9476869, 46.3265495 ], + [ 7.9465962, 46.3260353 ], + [ 7.9461039, 46.3258087 ], + [ 7.9460149, 46.3258319 ], + [ 7.9459101, 46.3259061 ], + [ 7.9458877999999995, 46.3260468 ], + [ 7.9458737, 46.326182 ], + [ 7.9458421, 46.3262723 ], + [ 7.9457462, 46.3263519 ], + [ 7.9456657, 46.3264201 ], + [ 7.9454718, 46.3265175 ], + [ 7.9453266, 46.3266086 ], + [ 7.9452795, 46.3266991 ], + [ 7.9452411, 46.3268457 ], + [ 7.9451691, 46.3269588 ], + [ 7.9450967, 46.3270326 ], + [ 7.9450335, 46.3271232 ], + [ 7.9450114, 46.3272809 ], + [ 7.944973, 46.3274332 ], + [ 7.9449591, 46.3275965 ], + [ 7.9449608, 46.3276865 ], + [ 7.9449708999999995, 46.3278159 ], + [ 7.944958, 46.3279961 ], + [ 7.9450007, 46.3281421 ], + [ 7.945035, 46.3282487 ], + [ 7.9450614, 46.3283892 ], + [ 7.9450226, 46.3284851 ], + [ 7.9449422, 46.3285703 ], + [ 7.9448225, 46.3287007 ], + [ 7.944653, 46.328809 ], + [ 7.9445485, 46.3289112 ], + [ 7.9444355, 46.3289853 ], + [ 7.9443884, 46.3290645 ], + [ 7.9443739, 46.3291659 ], + [ 7.944342, 46.3292281 ], + [ 7.9442615, 46.3293019 ], + [ 7.9441891, 46.3293756 ], + [ 7.9441825999999995, 46.3294545 ], + [ 7.9441926, 46.3295782 ], + [ 7.9442692, 46.3297802 ], + [ 7.9443373, 46.3299484 ], + [ 7.9443555, 46.3300776 ], + [ 7.9443187, 46.3303144 ], + [ 7.9441716, 46.3302931 ], + [ 7.9415896, 46.3282494 ], + [ 7.9413634, 46.3283581 ], + [ 7.9411531, 46.3284443 ], + [ 7.9408940999999995, 46.328514 ], + [ 7.9406502, 46.3285667 ], + [ 7.9403577, 46.3286141 ], + [ 7.9400895, 46.3286614 ], + [ 7.9399277, 46.328719 ], + [ 7.939758, 46.3288048 ], + [ 7.9396204, 46.328851 ], + [ 7.9394009, 46.3288923 ], + [ 7.939182, 46.3289222 ], + [ 7.9390029, 46.3289519 ], + [ 7.938775, 46.3289762 ], + [ 7.9385562, 46.3290118 ], + [ 7.9383447, 46.3290473 ], + [ 7.9382234, 46.3290933 ], + [ 7.9380941, 46.3291564 ], + [ 7.9379646, 46.3292024 ], + [ 7.9378919, 46.3292312 ], + [ 7.9377127, 46.3292552 ], + [ 7.9375263, 46.3292906 ], + [ 7.9373715, 46.3293087 ], + [ 7.9371934, 46.3293665 ], + [ 7.9370074, 46.3294356 ], + [ 7.9368217, 46.3295441 ], + [ 7.9366034, 46.3296415 ], + [ 7.9364487, 46.3296766 ], + [ 7.936246, 46.3296952 ], + [ 7.9361006, 46.3297695 ], + [ 7.9359541, 46.3298213 ], + [ 7.9357924, 46.3298846 ], + [ 7.9355738, 46.3299483 ], + [ 7.9352733, 46.3300184 ], + [ 7.9349162, 46.3301057 ], + [ 7.9345034, 46.330233 ], + [ 7.9339672, 46.3303556 ], + [ 7.9338763, 46.3302663 ], + [ 7.9337364, 46.3301494 ], + [ 7.9335065, 46.330033 ], + [ 7.9332359, 46.3299114 ], + [ 7.9330225, 46.3298232 ], + [ 7.9327357, 46.3297075 ], + [ 7.9324331, 46.3296368 ], + [ 7.9321225, 46.3295718 ], + [ 7.9318859, 46.3295287 ], + [ 7.9317143, 46.3294908 ], + [ 7.9315022, 46.3294533 ], + [ 7.9312806, 46.329365 ], + [ 7.9310424, 46.3292318 ], + [ 7.930731, 46.3290825 ], + [ 7.9301551, 46.3287553 ], + [ 7.9294904, 46.3283949 ], + [ 7.9290308, 46.3281905 ], + [ 7.9286536, 46.3280304 ], + [ 7.9282278999999996, 46.3278933 ], + [ 7.9277203, 46.3276836 ], + [ 7.9273106, 46.3275126 ], + [ 7.9267785, 46.327365 ], + [ 7.926149, 46.3272182 ], + [ 7.9256354, 46.3271437 ], + [ 7.9252922, 46.3270734 ], + [ 7.9249982, 46.3270477 ], + [ 7.9248009, 46.3269479 ], + [ 7.9245719999999995, 46.3268542 ], + [ 7.9243507, 46.3267885 ], + [ 7.9240072999999995, 46.3266845 ], + [ 7.9234003, 46.3264192 ], + [ 7.9230663, 46.3263657 ], + [ 7.9228465, 46.3263844 ], + [ 7.9226512, 46.3264198 ], + [ 7.9224312999999995, 46.3264272 ], + [ 7.9222044, 46.3264572 ], + [ 7.9220328, 46.3264249 ], + [ 7.9219262, 46.3263921 ], + [ 7.9218193, 46.3263197 ], + [ 7.9216464, 46.3262255 ], + [ 7.9213933999999995, 46.3261544 ], + [ 7.9212638, 46.3261893 ], + [ 7.921167, 46.3262519 ], + [ 7.9210949, 46.326365 ], + [ 7.9209831, 46.3264728 ], + [ 7.920814, 46.3266263 ], + [ 7.920678, 46.3267512 ], + [ 7.9204764, 46.3269048 ], + [ 7.9202582, 46.3270079 ], + [ 7.9199835, 46.3271509 ], + [ 7.9198061, 46.3272761 ], + [ 7.9196541, 46.3274405 ], + [ 7.9195983, 46.3275479 ], + [ 7.9196, 46.3276548 ], + [ 7.9196343, 46.3277671 ], + [ 7.9196767, 46.327885 ], + [ 7.9196959, 46.3280368 ], + [ 7.919641, 46.3281611 ], + [ 7.9195366, 46.3282857 ], + [ 7.9192716, 46.328513 ], + [ 7.9192417, 46.3287102 ], + [ 7.9192124, 46.3288905 ], + [ 7.9191403, 46.3289923 ], + [ 7.9190757, 46.3290268 ], + [ 7.9189864, 46.3290273 ], + [ 7.918799, 46.3290402 ], + [ 7.9186115, 46.3290305 ], + [ 7.9183509, 46.329026999999996 ], + [ 7.9181389, 46.3290118 ], + [ 7.9178942, 46.3289632 ], + [ 7.9176812, 46.3289256 ], + [ 7.9175429, 46.3288817 ], + [ 7.9173228, 46.3288723 ], + [ 7.9172083, 46.3288619 ], + [ 7.9169879, 46.3288131 ], + [ 7.9168327, 46.3287918 ], + [ 7.9166045, 46.3287768 ], + [ 7.9164333, 46.3287782 ], + [ 7.9161643, 46.3287354 ], + [ 7.9158538, 46.3286872 ], + [ 7.9156243, 46.3286103 ], + [ 7.9153953999999995, 46.3285109 ], + [ 7.9152469, 46.3284276 ], + [ 7.9150913, 46.3283558 ], + [ 7.9149522999999995, 46.3283344 ], + [ 7.9146998, 46.3283252 ], + [ 7.9141128, 46.3283018 ], + [ 7.9126628, 46.3282518 ], + [ 7.9123526, 46.3282318 ], + [ 7.9120175, 46.32815 ], + [ 7.911732, 46.328068 ], + [ 7.9113147, 46.3279644 ], + [ 7.910865, 46.3278668 ], + [ 7.9104244999999995, 46.3277859 ], + [ 7.9099991, 46.3276825 ], + [ 7.9095493, 46.3275736 ], + [ 7.9091073, 46.3274139 ], + [ 7.9086151000000005, 46.3271928 ], + [ 7.9084366, 46.3271886 ], + [ 7.9083619, 46.3270991 ], + [ 7.9082701, 46.3269874 ], + [ 7.9081465, 46.3268645 ], + [ 7.9080703, 46.3266906 ], + [ 7.9079774, 46.3264608 ], + [ 7.9079255, 46.3262698 ], + [ 7.9079314, 46.3261066 ], + [ 7.9079861, 46.3259599 ], + [ 7.9080648, 46.3257679 ], + [ 7.9081679, 46.3255814 ], + [ 7.9081487, 46.3254352 ], + [ 7.9081144, 46.3253116 ], + [ 7.9080544, 46.3251264 ], + [ 7.9080031, 46.3249242 ], + [ 7.9078853, 46.324717 ], + [ 7.9078183, 46.3245656 ], + [ 7.907824, 46.3243797 ], + [ 7.9078772, 46.3241544 ], + [ 7.9079462, 46.3238724 ], + [ 7.9079681, 46.3236809 ], + [ 7.9080311, 46.3235509 ], + [ 7.9081727, 46.3232178 ], + [ 7.9082721, 46.3227949 ], + [ 7.9082949, 46.3227103 ], + [ 7.9082608, 46.3226205 ], + [ 7.9082845, 46.3225416 ], + [ 7.9082908, 46.322429 ], + [ 7.9083054, 46.3223275 ], + [ 7.908336, 46.3222091 ], + [ 7.9083341, 46.3220853 ], + [ 7.9082508, 46.3219229 ], + [ 7.908167, 46.3218053 ], + [ 7.9080269, 46.3216601 ], + [ 7.9078782, 46.3215376 ], + [ 7.9076622, 46.3212354 ], + [ 7.9072235, 46.3208 ], + [ 7.9071015, 46.3207785 ], + [ 7.9069287, 46.3206843 ], + [ 7.9066822, 46.3205231 ], + [ 7.9064929, 46.3204008 ], + [ 7.9062148, 46.3203355 ], + [ 7.906003, 46.3203429 ], + [ 7.9058082, 46.3203388 ], + [ 7.9056615, 46.3203625 ], + [ 7.9055079, 46.3204313 ], + [ 7.9053302, 46.3205284 ], + [ 7.9051688, 46.3206366 ], + [ 7.904967, 46.3207564 ], + [ 7.9047984, 46.3208816 ], + [ 7.904653, 46.3209615 ], + [ 7.904443, 46.3210759 ], + [ 7.9042896, 46.3211671 ], + [ 7.9041849, 46.3212692 ], + [ 7.9040737, 46.3214503 ], + [ 7.904019, 46.3216083 ], + [ 7.9038751, 46.3217671 ], + [ 7.9037457, 46.3218243 ], + [ 7.903615, 46.3218085 ], + [ 7.9034104, 46.3217089 ], + [ 7.9031469, 46.3215534 ], + [ 7.902959, 46.3215043 ], + [ 7.9028378, 46.3215616 ], + [ 7.9026925, 46.3216584 ], + [ 7.9025636, 46.3217607 ], + [ 7.9023871, 46.3219084 ], + [ 7.9022423, 46.3220616 ], + [ 7.9021322, 46.3222876 ], + [ 7.9020128, 46.322463 ], + [ 7.9019328, 46.3225987 ], + [ 7.9017558999999995, 46.3226958 ], + [ 7.9016269999999995, 46.3228151 ], + [ 7.9015478, 46.3229395 ], + [ 7.9015322, 46.3230184 ], + [ 7.9014689, 46.3231202 ], + [ 7.9013804, 46.3232053 ], + [ 7.9012594, 46.3232907 ], + [ 7.9011058, 46.3233595 ], + [ 7.90092, 46.3234622 ], + [ 7.9007582, 46.3235311 ], + [ 7.9005799, 46.3235607 ], + [ 7.9003347, 46.3235401 ], + [ 7.9001228, 46.3235363 ], + [ 7.8998878, 46.3235775 ], + [ 7.8997342, 46.323652 ], + [ 7.8995644, 46.3237321 ], + [ 7.8994016, 46.3237615 ], + [ 7.8992303, 46.3237628 ], + [ 7.8989939, 46.3237367 ], + [ 7.8988062, 46.3237044 ], + [ 7.8986763, 46.3237054 ], + [ 7.8984485, 46.3237298 ], + [ 7.8982695, 46.3237706 ], + [ 7.8980182, 46.323812 ], + [ 7.8977676, 46.3239209 ], + [ 7.8975484, 46.3240183 ], + [ 7.8973866, 46.324076 ], + [ 7.8971839, 46.3241 ], + [ 7.8969966, 46.324124 ], + [ 7.896704, 46.3241658 ], + [ 7.8963467, 46.3242361 ], + [ 7.8960472, 46.3243285 ], + [ 7.8956821999999995, 46.3244552 ], + [ 7.8954482, 46.3246147 ], + [ 7.8952152, 46.3247966 ], + [ 7.8949082, 46.3249622 ], + [ 7.8946418, 46.3251387 ], + [ 7.894417, 46.3253318 ], + [ 7.8943086000000005, 46.3251865 ], + [ 7.8942584, 46.3251024 ], + [ 7.8941431, 46.3250021 ], + [ 7.8939955, 46.3249076 ], + [ 7.8938399, 46.3248468 ], + [ 7.8936588, 46.3247301 ], + [ 7.8933884, 46.324614 ], + [ 7.8932248, 46.3245591 ], + [ 7.8930195, 46.3244707 ], + [ 7.8929124, 46.3243815 ], + [ 7.892789, 46.3242755 ], + [ 7.8926809, 46.3241639 ], + [ 7.8925412, 46.3240468 ], + [ 7.8923439, 46.3239359 ], + [ 7.8921303, 46.3238306 ], + [ 7.8917287, 46.3236423 ], + [ 7.8914499, 46.3234927 ], + [ 7.8912361, 46.3233593 ], + [ 7.8910958, 46.3232704 ], + [ 7.8909386, 46.3231085 ], + [ 7.8908394, 46.3229798 ], + [ 7.8908621, 46.3228839 ], + [ 7.8908604, 46.3227827 ], + [ 7.8908666, 46.3226476 ], + [ 7.8908322, 46.3225128 ], + [ 7.8907653, 46.322367 ], + [ 7.8907072, 46.3223111 ], + [ 7.8905841, 46.3222502 ], + [ 7.8904451, 46.3222176 ], + [ 7.8903142, 46.3221905 ], + [ 7.8901021, 46.3221471 ], + [ 7.8900116, 46.3220972 ], + [ 7.8898722, 46.3220307 ], + [ 7.889741, 46.321953 ], + [ 7.8895269, 46.3217802 ], + [ 7.8893037, 46.3215794 ], + [ 7.8890734, 46.3214068 ], + [ 7.8889663, 46.3213063 ], + [ 7.8888096, 46.321195 ], + [ 7.8887029, 46.3211564 ], + [ 7.8885558, 46.3211295 ], + [ 7.8883274, 46.3210863 ], + [ 7.8881963, 46.3210255 ], + [ 7.8880161, 46.3209256 ], + [ 7.8877785, 46.3208486 ], + [ 7.8878994, 46.3207408 ], + [ 7.8879383999999995, 46.320656 ], + [ 7.8879773, 46.3205432 ], + [ 7.8879916, 46.3204135 ], + [ 7.8879329, 46.320279 ], + [ 7.8878308, 46.3200041 ], + [ 7.8876326, 46.3197805 ], + [ 7.8872275, 46.319373 ], + [ 7.8866498, 46.3188822 ], + [ 7.8861978, 46.318582 ], + [ 7.8858201999999995, 46.3183542 ], + [ 7.8855727, 46.3181535 ], + [ 7.8853585, 46.3179583 ], + [ 7.8851761, 46.3177909 ], + [ 7.8850024, 46.317584 ], + [ 7.8848613, 46.3173938 ], + [ 7.8848189, 46.3172703 ], + [ 7.8847506, 46.3170514 ], + [ 7.884674, 46.3168213 ], + [ 7.8845967, 46.3165968 ], + [ 7.8845039, 46.3163612 ], + [ 7.8843791, 46.316182 ], + [ 7.884189, 46.3159529 ], + [ 7.8844464, 46.3157819 ], + [ 7.8845676000000005, 46.3157135 ], + [ 7.8847211999999995, 46.3156447 ], + [ 7.8849245, 46.3155982 ], + [ 7.8850459, 46.3155634 ], + [ 7.8852250999999995, 46.3155507 ], + [ 7.8853874, 46.3155495 ], + [ 7.8855830000000005, 46.3155592 ], + [ 7.8857705, 46.3155634 ], + [ 7.8859908, 46.3156122 ], + [ 7.8861945, 46.3156219 ], + [ 7.8864966, 46.3156533 ], + [ 7.8867895, 46.3156454 ], + [ 7.8871969, 46.3156478 ], + [ 7.8868932, 46.3155264 ], + [ 7.8865986, 46.3154274 ], + [ 7.8863779, 46.3153222 ], + [ 7.8861645, 46.3152226 ], + [ 7.8859673, 46.3151228 ], + [ 7.8856404, 46.3150354 ], + [ 7.8852566, 46.3149371 ], + [ 7.8850273, 46.314877 ], + [ 7.8848234, 46.3148505 ], + [ 7.8846841, 46.3147839 ], + [ 7.8844313, 46.3147241 ], + [ 7.8843325, 46.3146516 ], + [ 7.8842014, 46.3145965 ], + [ 7.8840369, 46.314519 ], + [ 7.883857, 46.3144472 ], + [ 7.883677, 46.3143642 ], + [ 7.8835216, 46.3143092 ], + [ 7.8833652, 46.3142373 ], + [ 7.8831773, 46.3141825 ], + [ 7.8830221, 46.3141499 ], + [ 7.8827938, 46.3141179 ], + [ 7.8826789999999995, 46.3140737 ], + [ 7.8825153, 46.3140019 ], + [ 7.8823264, 46.3139189 ], + [ 7.882179, 46.3138526 ], + [ 7.882033, 46.3138594 ], + [ 7.8818458, 46.313889 ], + [ 7.8815938, 46.3139304 ], + [ 7.8813996, 46.3139995 ], + [ 7.8812618, 46.3140061 ], + [ 7.8810421, 46.314036 ], + [ 7.8808223, 46.3140433 ], + [ 7.8806267, 46.3140392 ], + [ 7.8804554, 46.3140293 ], + [ 7.8803576, 46.3139793 ], + [ 7.8802348, 46.3139354 ], + [ 7.8801363, 46.3139024 ], + [ 7.8800055, 46.3138809 ], + [ 7.8798759, 46.3139044 ], + [ 7.8797382, 46.3139392 ], + [ 7.879601, 46.3140359 ], + [ 7.8797401, 46.3140687 ], + [ 7.8798306, 46.3141242 ], + [ 7.8798889, 46.3142139 ], + [ 7.8799706, 46.3142751 ], + [ 7.8800694, 46.3143531 ], + [ 7.8801613, 46.3144874 ], + [ 7.8802201, 46.3146333 ], + [ 7.8802946, 46.3147171 ], + [ 7.8804258, 46.3147836 ], + [ 7.880673, 46.3149448 ], + [ 7.880764, 46.3150623 ], + [ 7.8807498, 46.3152144 ], + [ 7.8806785999999995, 46.3153332 ], + [ 7.8805983, 46.3154407 ], + [ 7.8805756, 46.3155422 ], + [ 7.8806182, 46.3156938 ], + [ 7.8806453, 46.3158286 ], + [ 7.8806473, 46.3159806 ], + [ 7.8806086, 46.3161103 ], + [ 7.8806104999999995, 46.3162453 ], + [ 7.8806695, 46.3164081 ], + [ 7.8807133, 46.3166103 ], + [ 7.8807001, 46.3167848 ], + [ 7.8806686, 46.3168977 ], + [ 7.88063, 46.3170442 ], + [ 7.8806412, 46.3172299 ], + [ 7.8806676, 46.3173816 ], + [ 7.8806867, 46.3175333 ], + [ 7.8807130999999995, 46.3176852 ], + [ 7.8807556, 46.3178254 ], + [ 7.8808077, 46.3180445 ], + [ 7.8808755, 46.318196 ], + [ 7.880983, 46.3183471 ], + [ 7.8810334, 46.3184536 ], + [ 7.881035, 46.3185493 ], + [ 7.8809879, 46.3186453 ], + [ 7.8809805, 46.3187354 ], + [ 7.8809821, 46.3188367 ], + [ 7.8810084, 46.3189772 ], + [ 7.8810357, 46.3191402 ], + [ 7.8810375, 46.3192639 ], + [ 7.8810072, 46.3194217 ], + [ 7.8809928, 46.3195513 ], + [ 7.8809376, 46.319653 ], + [ 7.8808978, 46.3197434 ], + [ 7.880801, 46.3198116 ], + [ 7.8807456, 46.3198853 ], + [ 7.8807302, 46.3199866 ], + [ 7.8807399, 46.3200878 ], + [ 7.8807497, 46.3201891 ], + [ 7.8807108, 46.3203019 ], + [ 7.8807126, 46.3204257 ], + [ 7.8806743, 46.3206061 ], + [ 7.8806773, 46.3207749 ], + [ 7.8806701, 46.3208819 ], + [ 7.880631, 46.3209722 ], + [ 7.8806248, 46.3211018 ], + [ 7.8806428, 46.3212254 ], + [ 7.8806772, 46.3213545 ], + [ 7.8806788, 46.3214614 ], + [ 7.8806318, 46.3215687 ], + [ 7.880642, 46.3217263 ], + [ 7.8807428999999996, 46.3219505 ], + [ 7.8809357, 46.3223148 ], + [ 7.8810346, 46.3223985 ], + [ 7.8811171, 46.3224654 ], + [ 7.8811418, 46.3225158 ], + [ 7.8810865, 46.3226007 ], + [ 7.8810059, 46.3226687 ], + [ 7.8809829, 46.3227309 ], + [ 7.8809998, 46.3228095 ], + [ 7.8810257, 46.3228994 ], + [ 7.8810351, 46.3229668 ], + [ 7.8810277, 46.3230513 ], + [ 7.8810537, 46.3231524 ], + [ 7.8810389, 46.3232313 ], + [ 7.8810405, 46.3233213 ], + [ 7.8810753, 46.3235179 ], + [ 7.8811513, 46.3236805 ], + [ 7.8811692, 46.3237818 ], + [ 7.881113, 46.3238554 ], + [ 7.8810404, 46.3239177 ], + [ 7.8809607, 46.3239916 ], + [ 7.8809372, 46.3240987 ], + [ 7.8809391, 46.3242337 ], + [ 7.8809828, 46.3244135 ], + [ 7.881017, 46.3245256 ], + [ 7.880986, 46.3246048 ], + [ 7.8809299, 46.3247009 ], + [ 7.8808991, 46.3248025 ], + [ 7.880933, 46.324881 ], + [ 7.8809834, 46.3249874 ], + [ 7.8810582, 46.3251107 ], + [ 7.8811169, 46.3252396 ], + [ 7.8811431, 46.3253689 ], + [ 7.8811623, 46.3255263 ], + [ 7.8811886, 46.3256668 ], + [ 7.8813697, 46.3257835 ], + [ 7.8814027, 46.3258508 ], + [ 7.8813715, 46.325913 ], + [ 7.8813316, 46.3259921 ], + [ 7.8813005, 46.3260543 ], + [ 7.8812283, 46.3261617 ], + [ 7.8811974, 46.326252 ], + [ 7.8811575, 46.3263367 ], + [ 7.8811346, 46.3264157 ], + [ 7.8811027, 46.3264891 ], + [ 7.880999, 46.326608 ], + [ 7.8809591999999995, 46.3267096 ], + [ 7.8809442, 46.3267604 ], + [ 7.8809459, 46.3268673 ], + [ 7.8809059999999995, 46.3269521 ], + [ 7.8808674, 46.3270931 ], + [ 7.8808207, 46.3272396 ], + [ 7.880782, 46.3273751 ], + [ 7.8807838, 46.3274932 ], + [ 7.8807856, 46.3276114 ], + [ 7.8807952, 46.3277014 ], + [ 7.8807798, 46.3278028 ], + [ 7.8807583, 46.3279549 ], + [ 7.8807267, 46.3280564 ], + [ 7.8807364, 46.3281577 ], + [ 7.8807385, 46.3283095 ], + [ 7.8807319, 46.3283941 ], + [ 7.8806524, 46.3285072 ], + [ 7.8806207, 46.3286031 ], + [ 7.8806388, 46.3287325 ], + [ 7.8806727, 46.328799599999996 ], + [ 7.8807067, 46.3288951 ], + [ 7.8807735, 46.329024 ], + [ 7.8808158, 46.3291362 ], + [ 7.8808985, 46.3292312 ], + [ 7.8809902, 46.3293205 ], + [ 7.8810151, 46.3293879 ], + [ 7.8810246, 46.3294666 ], + [ 7.8809777, 46.3295795 ], + [ 7.8809214999999995, 46.329653 ], + [ 7.880825, 46.3297664 ], + [ 7.8807536, 46.3298684 ], + [ 7.8807799, 46.3300144 ], + [ 7.8808559, 46.3301714 ], + [ 7.8808737, 46.3302668 ], + [ 7.8808826, 46.3303625 ], + [ 7.8808761, 46.3304582 ], + [ 7.8808279, 46.3305204 ], + [ 7.880789, 46.3306333 ], + [ 7.8807419, 46.330735 ], + [ 7.8807345, 46.3308195 ], + [ 7.8807361, 46.3309207 ], + [ 7.8807133, 46.3310054 ], + [ 7.8806652, 46.3310788 ], + [ 7.880634, 46.3311298 ], + [ 7.8806104999999995, 46.3312425 ], + [ 7.8805729, 46.3314116 ], + [ 7.8805494, 46.3315188 ], + [ 7.88052, 46.3316877 ], + [ 7.8804976, 46.3318286 ], + [ 7.8804659, 46.3319301 ], + [ 7.8804106, 46.3320151 ], + [ 7.8803625, 46.3320885 ], + [ 7.8802739, 46.3321736 ], + [ 7.8801699, 46.3322533 ], + [ 7.8801220999999995, 46.3323718 ], + [ 7.8800916, 46.3325128 ], + [ 7.8800464, 46.3327381 ], + [ 7.8800662, 46.3329799 ], + [ 7.8800211000000004, 46.3332335 ], + [ 7.8800145, 46.333318 ], + [ 7.8800234, 46.333408 ], + [ 7.8801073, 46.3335424 ], + [ 7.8801737, 46.333632 ], + [ 7.8801583, 46.3337334 ], + [ 7.8801355, 46.3338236 ], + [ 7.8801531, 46.333891 ], + [ 7.8802357, 46.3339635 ], + [ 7.8802374, 46.3340704 ], + [ 7.8801974999999995, 46.3341663 ], + [ 7.8800846, 46.3342516 ], + [ 7.8799886, 46.3343312 ], + [ 7.8798517, 46.3344617 ], + [ 7.8798129, 46.3345746 ], + [ 7.8798145, 46.3346758 ], + [ 7.8798477, 46.3347656 ], + [ 7.8799313, 46.3348662 ], + [ 7.8800384, 46.3349667 ], + [ 7.8800401, 46.3350735 ], + [ 7.8800406, 46.3351355 ], + [ 7.8799933, 46.3352034 ], + [ 7.8799371, 46.335277 ], + [ 7.8798404, 46.3353678 ], + [ 7.8798013000000005, 46.3354582 ], + [ 7.8797951, 46.3355933 ], + [ 7.8797481, 46.3357006 ], + [ 7.8797248, 46.3358301 ], + [ 7.8797023, 46.3359542 ], + [ 7.8797212, 46.3360891 ], + [ 7.8797557, 46.3362351 ], + [ 7.8798063, 46.3363753 ], + [ 7.8798244, 46.3364991 ], + [ 7.8798258, 46.3365722 ], + [ 7.8797951, 46.3366963 ], + [ 7.8797401, 46.3368205 ], + [ 7.879742, 46.3369499 ], + [ 7.8797101, 46.3370176 ], + [ 7.8796698, 46.3370573 ], + [ 7.879647, 46.3371476 ], + [ 7.8796326, 46.3372715 ], + [ 7.879633, 46.3373277 ], + [ 7.879602, 46.3374012 ], + [ 7.8795378, 46.3374973 ], + [ 7.8794735, 46.337571 ], + [ 7.8794103, 46.3376841 ], + [ 7.8793634, 46.3378138 ], + [ 7.8793331, 46.3379829 ], + [ 7.879319, 46.3381462 ], + [ 7.8793141, 46.3383432 ], + [ 7.879332, 46.33845 ], + [ 7.879358, 46.3385511 ], + [ 7.8794245, 46.3386461 ], + [ 7.8794829, 46.3387301 ], + [ 7.8795087, 46.33882 ], + [ 7.8795511, 46.3389322 ], + [ 7.8795771, 46.3390446 ], + [ 7.8796194, 46.3391511 ], + [ 7.8796862999999995, 46.3392969 ], + [ 7.8797366, 46.3393923 ], + [ 7.8797302, 46.3395048 ], + [ 7.8796498, 46.3396011 ], + [ 7.8796435, 46.3397249 ], + [ 7.8797357, 46.3398819 ], + [ 7.8794652, 46.3397544 ], + [ 7.8795117999999995, 46.3396022 ], + [ 7.8795262, 46.3394727 ], + [ 7.8794501, 46.3392988 ], + [ 7.879351, 46.3391926 ], + [ 7.8792427, 46.3390472 ], + [ 7.8791355, 46.3389354 ], + [ 7.8790434, 46.3387899 ], + [ 7.8788937, 46.3385491 ], + [ 7.8787773, 46.3384093 ], + [ 7.8787347, 46.3382633 ], + [ 7.8787085, 46.3381397 ], + [ 7.8787064, 46.3379821 ], + [ 7.8787278, 46.3378188 ], + [ 7.8787824, 46.3376383 ], + [ 7.8787802, 46.3374639 ], + [ 7.8787527, 46.3372839 ], + [ 7.8786941, 46.337155 ], + [ 7.8785696, 46.3370209 ], + [ 7.8785518, 46.336931 ], + [ 7.8785837, 46.3368575 ], + [ 7.878574, 46.3367564 ], + [ 7.8785478, 46.3366328 ], + [ 7.8784811999999995, 46.3365264 ], + [ 7.8783971, 46.3363638 ], + [ 7.8782492, 46.3362468 ], + [ 7.8781327, 46.3360901 ], + [ 7.8780063, 46.3358267 ], + [ 7.877922, 46.335636 ], + [ 7.8778466, 46.3354509 ], + [ 7.8778439, 46.3353158 ], + [ 7.8778501, 46.3351807 ], + [ 7.8779061, 46.3350677 ], + [ 7.8779283, 46.33491 ], + [ 7.8779105, 46.3348088 ], + [ 7.877909, 46.3347245 ], + [ 7.8779894, 46.3346338 ], + [ 7.8781027, 46.3345878 ], + [ 7.8782319, 46.3345137 ], + [ 7.8783193, 46.334378 ], + [ 7.8783743, 46.3342482 ], + [ 7.8783967, 46.3341129 ], + [ 7.8783867999999995, 46.3339836 ], + [ 7.8783117, 46.3338322 ], + [ 7.8781713, 46.3337432 ], + [ 7.8782195999999995, 46.3336865 ], + [ 7.8782828, 46.3335679 ], + [ 7.8783051, 46.3334214 ], + [ 7.8783027, 46.3332188 ], + [ 7.8782754, 46.3330615 ], + [ 7.8781924, 46.3329383 ], + [ 7.8781178, 46.3328433 ], + [ 7.8780757, 46.3327535 ], + [ 7.8780821, 46.3326409 ], + [ 7.8780965, 46.332517 ], + [ 7.8780865, 46.3323765 ], + [ 7.8780024, 46.3322195 ], + [ 7.8779522, 46.3321355 ], + [ 7.8779271, 46.3320456 ], + [ 7.8779664, 46.3319777 ], + [ 7.8780632, 46.3319038 ], + [ 7.8781113, 46.3318303 ], + [ 7.8781015, 46.3317235 ], + [ 7.878035, 46.3316339 ], + [ 7.8780497, 46.3315438 ], + [ 7.878137, 46.3314025 ], + [ 7.8782157, 46.3311992 ], + [ 7.8782625, 46.3310582 ], + [ 7.8782834, 46.3308329 ], + [ 7.8782571, 46.3306868 ], + [ 7.8781647, 46.3305074 ], + [ 7.8780979, 46.3303786 ], + [ 7.8780476, 46.3302776 ], + [ 7.8780375, 46.3301258 ], + [ 7.8779859, 46.3299686 ], + [ 7.877927, 46.3298171 ], + [ 7.8778767, 46.3297219 ], + [ 7.8778669, 46.329615 ], + [ 7.8779219, 46.3294908 ], + [ 7.8779608, 46.3293836 ], + [ 7.8779406, 46.3290911 ], + [ 7.8779309, 46.3289899 ], + [ 7.8779709, 46.3289164 ], + [ 7.8779772999999995, 46.3288095 ], + [ 7.8779674, 46.3286913 ], + [ 7.8779331, 46.3285622 ], + [ 7.8779314, 46.3284497 ], + [ 7.8779623999999995, 46.3283706 ], + [ 7.877978, 46.3282861 ], + [ 7.8780008, 46.3282015 ], + [ 7.878057, 46.3281279 ], + [ 7.8781206, 46.3280543 ], + [ 7.8781767, 46.3279694 ], + [ 7.8781995, 46.3278792 ], + [ 7.8781813, 46.3277331 ], + [ 7.8781395, 46.3276827 ], + [ 7.8781147, 46.3276266 ], + [ 7.8780808, 46.3275537 ], + [ 7.8780804, 46.3274974 ], + [ 7.8780949, 46.3273848 ], + [ 7.8781013, 46.3272778 ], + [ 7.878051, 46.3271826 ], + [ 7.8779022, 46.327043 ], + [ 7.8778369, 46.3269985 ], + [ 7.8778275, 46.3269367 ], + [ 7.8778417, 46.3267902 ], + [ 7.877848, 46.3266664 ], + [ 7.8778059, 46.3265766 ], + [ 7.8777147, 46.3264367 ], + [ 7.8765830999999995, 46.3265074 ], + [ 7.8757947, 46.3265698 ], + [ 7.8753313, 46.3266747 ], + [ 7.8749588, 46.3267733 ], + [ 7.8746666, 46.3268711 ], + [ 7.874521, 46.3269398 ], + [ 7.8743514, 46.3270369 ], + [ 7.8742233, 46.327156 ], + [ 7.8740704, 46.3273148 ], + [ 7.8739179, 46.3274285 ], + [ 7.8737724, 46.3275084 ], + [ 7.8736179, 46.327566 ], + [ 7.8733832, 46.3276578 ], + [ 7.8730755, 46.3277445 ], + [ 7.8728481, 46.3278251 ], + [ 7.8726617999999995, 46.3278772 ], + [ 7.8723936, 46.3279242 ], + [ 7.8721747, 46.3279597 ], + [ 7.8720361, 46.3279777 ], + [ 7.8718984, 46.3280125 ], + [ 7.871785, 46.3280471 ], + [ 7.8715749, 46.3281557 ], + [ 7.8714294, 46.3282412 ], + [ 7.8712596, 46.3283157 ], + [ 7.8708445, 46.328375199999996 ], + [ 7.8704137, 46.3283898 ], + [ 7.8697121, 46.3283445 ], + [ 7.8697658, 46.3286705 ], + [ 7.8698838, 46.3289229 ], + [ 7.8699625, 46.3293274 ], + [ 7.8700257, 46.3297208 ], + [ 7.8700717000000004, 46.3300975 ], + [ 7.87015, 46.3304514 ], + [ 7.8701244, 46.3309075 ], + [ 7.8700262, 46.3309083 ], + [ 7.8696735, 46.3307477 ], + [ 7.8694526, 46.3306313 ], + [ 7.8692552, 46.3305091 ], + [ 7.8690902, 46.3303808 ], + [ 7.8685960999999995, 46.3299963 ], + [ 7.8684584, 46.3300255 ], + [ 7.8680997999999995, 46.3300508 ], + [ 7.86793, 46.3301253 ], + [ 7.8678907, 46.3301931 ], + [ 7.8678749, 46.3302438 ], + [ 7.867827, 46.3303399 ], + [ 7.8677311, 46.330436399999996 ], + [ 7.8676506, 46.3305213 ], + [ 7.8676348, 46.3305721 ], + [ 7.8676522, 46.330617 ], + [ 7.8676862, 46.3307012 ], + [ 7.8677283, 46.3307965 ], + [ 7.8677372, 46.3308921 ], + [ 7.8677222, 46.3309485 ], + [ 7.8676412, 46.3309659 ], + [ 7.8674862999999995, 46.3309897 ], + [ 7.8673487, 46.3310302 ], + [ 7.8672763, 46.3311208 ], + [ 7.8672775999999995, 46.331177 ], + [ 7.8672861, 46.3312332 ], + [ 7.8673038, 46.3313119 ], + [ 7.8672881, 46.3313739 ], + [ 7.8672328, 46.33147 ], + [ 7.8671619, 46.3316394 ], + [ 7.8671074999999995, 46.3318424 ], + [ 7.8669877, 46.3319896 ], + [ 7.8669584, 46.3321867 ], + [ 7.8669605, 46.3323499 ], + [ 7.8670284, 46.3325126 ], + [ 7.8671032, 46.3326359 ], + [ 7.8671878, 46.3328715 ], + [ 7.8672801, 46.3330453 ], + [ 7.8673143, 46.3331577 ], + [ 7.8673246, 46.3333319 ], + [ 7.8673421999999995, 46.3334106 ], + [ 7.867368, 46.3334892 ], + [ 7.8674996, 46.3336063 ], + [ 7.8675429, 46.3337355 ], + [ 7.8675608, 46.3338479 ], + [ 7.867594, 46.3339377 ], + [ 7.8676776, 46.3340439 ], + [ 7.8678091, 46.3341554 ], + [ 7.8675062, 46.3340228 ], + [ 7.8673752, 46.3339843 ], + [ 7.8671792, 46.3339408 ], + [ 7.8669349, 46.3339483 ], + [ 7.8667639, 46.3339722 ], + [ 7.8665374, 46.3340752 ], + [ 7.8664002, 46.3341832 ], + [ 7.8663123, 46.3342571 ], + [ 7.8662302, 46.3342296 ], + [ 7.8661639999999995, 46.3341794 ], + [ 7.8661057, 46.3340898 ], + [ 7.8660391, 46.333989 ], + [ 7.8658914, 46.3338832 ], + [ 7.8656584, 46.3335698 ], + [ 7.8655095, 46.3334191 ], + [ 7.8653037999999995, 46.3332687 ], + [ 7.865164, 46.3331403 ], + [ 7.8649747, 46.3330237 ], + [ 7.8647449, 46.3329073 ], + [ 7.8645324, 46.3328188 ], + [ 7.8642623, 46.3327365 ], + [ 7.8640746, 46.3327154 ], + [ 7.8636493, 46.3326117 ], + [ 7.8634287, 46.3325347 ], + [ 7.8631829, 46.3324465 ], + [ 7.8629047, 46.3323642 ], + [ 7.8626585, 46.3322366 ], + [ 7.8624368, 46.3321202 ], + [ 7.8622649, 46.3320371 ], + [ 7.8620356000000005, 46.3319769 ], + [ 7.8617992, 46.3319505 ], + [ 7.8614642, 46.33188 ], + [ 7.8611698, 46.3318091 ], + [ 7.8609169, 46.3317436 ], + [ 7.8607281, 46.3316775 ], + [ 7.8605723, 46.3315773 ], + [ 7.8603588, 46.3314777 ], + [ 7.8600802, 46.331339 ], + [ 7.859834, 46.3312002 ], + [ 7.8594664, 46.3311074 ], + [ 7.8590577, 46.3310486 ], + [ 7.8585611, 46.3310749 ], + [ 7.8583587, 46.3311384 ], + [ 7.8581809, 46.3312354 ], + [ 7.8580113, 46.3313492 ], + [ 7.857817, 46.3314126 ], + [ 7.8575254999999995, 46.3315049 ], + [ 7.8572979, 46.3315685 ], + [ 7.8571117, 46.3316206 ], + [ 7.8568596, 46.3316675 ], + [ 7.8565751, 46.3317203 ], + [ 7.8563806, 46.3317612 ], + [ 7.8561447, 46.3317911 ], + [ 7.8558765, 46.3318551 ], + [ 7.8557064, 46.3318958 ], + [ 7.8554878, 46.3319649 ], + [ 7.8552119, 46.3320796 ], + [ 7.8549207, 46.3322169 ], + [ 7.8545308, 46.3322817 ], + [ 7.8541491, 46.3323578 ], + [ 7.853866, 46.3324838 ], + [ 7.853649, 46.3326542 ], + [ 7.8535447, 46.3328239 ], + [ 7.8534991, 46.3330155 ], + [ 7.8534684, 46.3331396 ], + [ 7.853349, 46.3333375 ], + [ 7.8531729, 46.3335526 ], + [ 7.853037, 46.3337281 ], + [ 7.8529892, 46.3338354 ], + [ 7.8529989, 46.3339422 ], + [ 7.8530166, 46.3340321 ], + [ 7.853075, 46.3341273 ], + [ 7.853109, 46.3342284 ], + [ 7.8531513, 46.3343407 ], + [ 7.8531936, 46.3344585 ], + [ 7.8531804, 46.3346387 ], + [ 7.8531744, 46.3348188 ], + [ 7.8531604999999995, 46.3350215 ], + [ 7.8532025, 46.3350943 ], + [ 7.8532606, 46.3351614 ], + [ 7.8533105, 46.3352117 ], + [ 7.8533679, 46.3352845 ], + [ 7.8534433, 46.3353795 ], + [ 7.8534776, 46.3355087 ], + [ 7.8535213, 46.3357109 ], + [ 7.8535321, 46.3359472 ], + [ 7.8534942, 46.3360938 ], + [ 7.8533881999999995, 46.3361396 ], + [ 7.8532989, 46.3361291 ], + [ 7.8531933, 46.3361299 ], + [ 7.8530223, 46.3361593 ], + [ 7.8528106, 46.3361834 ], + [ 7.8525674, 46.336219 ], + [ 7.8523076, 46.3363167 ], + [ 7.8519679, 46.3364768 ], + [ 7.8519886, 46.3362178 ], + [ 7.8519626, 46.3360998 ], + [ 7.8518801, 46.3360329 ], + [ 7.8517729, 46.3359268 ], + [ 7.851592, 46.3358325 ], + [ 7.8514523, 46.3357098 ], + [ 7.8513119, 46.3356095 ], + [ 7.8511966, 46.3354978 ], + [ 7.851057, 46.335392 ], + [ 7.8508028, 46.3352588 ], + [ 7.8506381, 46.33517 ], + [ 7.8505065, 46.3350416 ], + [ 7.8504564, 46.3349632 ], + [ 7.8503887, 46.3348118 ], + [ 7.8503138, 46.3346829 ], + [ 7.8502877, 46.3345593 ], + [ 7.8501887, 46.3344588 ], + [ 7.8500727, 46.3343526 ], + [ 7.8499331, 46.3342469 ], + [ 7.8498171, 46.334152 ], + [ 7.8497353, 46.3340739 ], + [ 7.849522, 46.3339798 ], + [ 7.8494396, 46.3339354 ], + [ 7.8493163, 46.3338294 ], + [ 7.8491839, 46.3337122 ], + [ 7.8490119, 46.3336066 ], + [ 7.8487577, 46.3334904 ], + [ 7.8486417, 46.3333956 ], + [ 7.8485105, 46.3333177 ], + [ 7.8484198, 46.3332453 ], + [ 7.8482803, 46.3331451 ], + [ 7.8481733, 46.3330558 ], + [ 7.8480584, 46.3329948 ], + [ 7.8479271, 46.3329114 ], + [ 7.8477867, 46.3328111 ], + [ 7.8476476, 46.3327672 ], + [ 7.84755, 46.332751 ], + [ 7.8473786, 46.3327242 ], + [ 7.8471329, 46.3326472 ], + [ 7.8466411, 46.3324484 ], + [ 7.8463465, 46.332338 ], + [ 7.8460842, 46.3322218 ], + [ 7.8459124, 46.3321443 ], + [ 7.8457327, 46.3321007 ], + [ 7.8456019999999995, 46.3320961 ], + [ 7.8454639, 46.3320801 ], + [ 7.8453478, 46.3319798 ], + [ 7.8452572, 46.3319129 ], + [ 7.8450935, 46.3318353 ], + [ 7.8449704, 46.3317575 ], + [ 7.8447973, 46.3316294 ], + [ 7.8446567, 46.3314841 ], + [ 7.844509, 46.3313895 ], + [ 7.8443455, 46.3313345 ], + [ 7.8441821, 46.3313019 ], + [ 7.8440272, 46.3313199 ], + [ 7.8438152, 46.3313047 ], + [ 7.8436447, 46.3312947 ], + [ 7.8434327, 46.3312738 ], + [ 7.8432613, 46.3312581 ], + [ 7.8430902, 46.3312707 ], + [ 7.8429038, 46.331306 ], + [ 7.8427329, 46.3313635 ], + [ 7.8425301, 46.3313762 ], + [ 7.8423020999999995, 46.3313836 ], + [ 7.8420323, 46.3313462 ], + [ 7.8417472, 46.3313202 ], + [ 7.8415192, 46.3313219 ], + [ 7.8412344, 46.3313352 ], + [ 7.8411032, 46.3312632 ], + [ 7.8409223, 46.3311744 ], + [ 7.8407845, 46.3311923 ], + [ 7.8406294, 46.3311935 ], + [ 7.8404174, 46.3311669 ], + [ 7.8402458, 46.3311231 ], + [ 7.8400585, 46.3311528 ], + [ 7.8398967, 46.3312159 ], + [ 7.8397593, 46.3313013 ], + [ 7.839581, 46.3313307 ], + [ 7.8394015, 46.3313208 ], + [ 7.8392626, 46.331305 ], + [ 7.8391233, 46.3312384 ], + [ 7.838935, 46.331133 ], + [ 7.8387301, 46.3310726 ], + [ 7.8385423, 46.3310289 ], + [ 7.8383626, 46.3309853 ], + [ 7.8380685, 46.3309537 ], + [ 7.8376931, 46.3308946 ], + [ 7.8372282, 46.3308138 ], + [ 7.8367297, 46.3306824 ], + [ 7.8364681, 46.3306449 ], + [ 7.836256, 46.3306183 ], + [ 7.8361182, 46.3306362 ], + [ 7.8358986, 46.3306886 ], + [ 7.8357282999999995, 46.3307067 ], + [ 7.8355073, 46.3306746 ], + [ 7.8352869, 46.3306142 ], + [ 7.8350006, 46.3305376 ], + [ 7.8346979999999995, 46.3304499 ], + [ 7.8343389, 46.3304018 ], + [ 7.8339646, 46.3303822 ], + [ 7.8335812, 46.3303399 ], + [ 7.8331965, 46.3302302 ], + [ 7.8325655, 46.3299536 ], + [ 7.8317297, 46.3295377 ], + [ 7.8315762, 46.3296345 ], + [ 7.8314554, 46.3297592 ], + [ 7.8313841, 46.3299005 ], + [ 7.8312241, 46.3300985 ], + [ 7.8308424, 46.3301915 ], + [ 7.8307725999999995, 46.3301839 ], + [ 7.8306433, 46.330155 ], + [ 7.8305308, 46.3300811 ], + [ 7.8303692, 46.3299617 ], + [ 7.830169, 46.3297803 ], + [ 7.830025, 46.3296106 ], + [ 7.8299136, 46.3294747 ], + [ 7.8297434, 46.3293891 ], + [ 7.8294846, 46.3292974 ], + [ 7.8292502, 46.3292113 ], + [ 7.8289827, 46.329142 ], + [ 7.8287482, 46.329039 ], + [ 7.8284908, 46.3289022 ], + [ 7.8282742, 46.3286981 ], + [ 7.8280501000000005, 46.3284547 ], + [ 7.827899, 46.3282061 ], + [ 7.8276185, 46.3279171 ], + [ 7.8272952, 46.3277686 ], + [ 7.8270532, 46.3276318 ], + [ 7.8267956, 46.3274725 ], + [ 7.8265947, 46.3272967 ], + [ 7.8263788, 46.3270701 ], + [ 7.8261455, 46.3268941 ], + [ 7.8258966, 46.3267067 ], + [ 7.8253882, 46.3264388 ], + [ 7.8248565, 46.3260749 ], + [ 7.8242686, 46.3256938 ], + [ 7.8236969, 46.3253016 ], + [ 7.8233592, 46.3250516 ], + [ 7.8228673, 46.3248119 ], + [ 7.8222045, 46.3244978 ], + [ 7.8215749, 46.3241783 ], + [ 7.8210677, 46.3238427 ], + [ 7.8207538, 46.3236324 ], + [ 7.8204731, 46.323411 ], + [ 7.8202321999999995, 46.3231956 ], + [ 7.8200237, 46.3229803 ], + [ 7.8197513999999995, 46.3226859 ], + [ 7.81952, 46.3224367 ], + [ 7.8192709, 46.3222155 ], + [ 7.8191032, 46.3220231 ], + [ 7.818943, 46.3218531 ], + [ 7.8187899, 46.3217733 ], + [ 7.8185316, 46.3216251 ], + [ 7.8182578, 46.3214713 ], + [ 7.8178875, 46.3212042 ], + [ 7.817453, 46.32092 ], + [ 7.8170566, 46.3207427 ], + [ 7.8165572, 46.3204691 ], + [ 7.8159119, 46.3200932 ], + [ 7.8146318, 46.3198084 ], + [ 7.8144697, 46.3203025 ], + [ 7.8143689, 46.3205155 ], + [ 7.8143175, 46.3207064 ], + [ 7.8142815, 46.3208974 ], + [ 7.8142461999999995, 46.3210772 ], + [ 7.8142271999999995, 46.3212685 ], + [ 7.8142408, 46.3214654 ], + [ 7.8142385, 46.3216061 ], + [ 7.8142751, 46.3218482 ], + [ 7.8143367, 46.3220738 ], + [ 7.8143752, 46.3222428 ], + [ 7.8143893, 46.3224004 ], + [ 7.8144669, 46.3225979 ], + [ 7.814489, 46.3227499 ], + [ 7.8144863, 46.3229412 ], + [ 7.8144754, 46.3231156 ], + [ 7.8144802, 46.3233407 ], + [ 7.8144729, 46.3238245 ], + [ 7.8145027, 46.3240216 ], + [ 7.8145577, 46.324112 ], + [ 7.814646, 46.3242082 ], + [ 7.8147256, 46.3243269 ], + [ 7.8147402, 46.3244509 ], + [ 7.8147228, 46.3245183 ], + [ 7.8147294, 46.3246421 ], + [ 7.8147843, 46.3247212 ], + [ 7.8148646, 46.3248287 ], + [ 7.8148465, 46.3249129 ], + [ 7.8148443, 46.3250648 ], + [ 7.8148751999999995, 46.3252001 ], + [ 7.8145405, 46.3252651 ], + [ 7.8142819, 46.3251846 ], + [ 7.81403, 46.3251378 ], + [ 7.8140614, 46.3252168 ], + [ 7.8141171, 46.325296 ], + [ 7.8142454, 46.3254319 ], + [ 7.8143819, 46.3255623 ], + [ 7.8145083, 46.3257714 ], + [ 7.8145398, 46.3258728 ], + [ 7.8145439, 46.3261036 ], + [ 7.814468, 46.3262774 ], + [ 7.8143364, 46.3263834 ], + [ 7.8140268, 46.3264487 ], + [ 7.8139553, 46.3263188 ], + [ 7.8138915, 46.3262452 ], + [ 7.8137389, 46.3261261 ], + [ 7.8135693, 46.3260123 ], + [ 7.813401, 46.3258479 ], + [ 7.8132972, 46.3257347 ], + [ 7.8132021, 46.3255933 ], + [ 7.8130732, 46.3255023 ], + [ 7.8128956, 46.3254055 ], + [ 7.8127175, 46.3253536 ], + [ 7.8126206, 46.3252967 ], + [ 7.8125006, 46.3252057 ], + [ 7.8124043, 46.3251207 ], + [ 7.8123808, 46.3250136 ], + [ 7.8123832, 46.3248899 ], + [ 7.8123518, 46.3248052 ], + [ 7.8122643, 46.3247033 ], + [ 7.8121677, 46.3245901 ], + [ 7.8120796, 46.3245276 ], + [ 7.8120563, 46.3244375 ], + [ 7.8120662, 46.3243475 ], + [ 7.8120753, 46.3242575 ], + [ 7.812012, 46.3241333 ], + [ 7.8119651, 46.3240373 ], + [ 7.8119423999999995, 46.3239247 ], + [ 7.8119115, 46.3238007 ], + [ 7.8118326, 46.3236594 ], + [ 7.8117529999999995, 46.3235295 ], + [ 7.811666, 46.3233769 ], + [ 7.8116757, 46.3232646 ], + [ 7.8116938, 46.323169 ], + [ 7.8116954, 46.3230564 ], + [ 7.8116228, 46.3229941 ], + [ 7.8115027999999995, 46.3228919 ], + [ 7.8114482, 46.3227453 ], + [ 7.8114341, 46.3225764 ], + [ 7.8113806, 46.322351 ], + [ 7.8113353, 46.3221425 ], + [ 7.8112319, 46.321973 ], + [ 7.8111768, 46.3218601 ], + [ 7.8111622, 46.3217418 ], + [ 7.8111894, 46.3215675 ], + [ 7.811071, 46.3213473 ], + [ 7.8108740999999995, 46.3209127 ], + [ 7.8106475, 46.3213612 ], + [ 7.8105722, 46.3215012 ], + [ 7.8105537, 46.3216531 ], + [ 7.8106576, 46.3217775 ], + [ 7.8104767, 46.3218945 ], + [ 7.8104688, 46.3219281 ], + [ 7.810474, 46.3221026 ], + [ 7.8106283, 46.322115 ], + [ 7.8107862, 46.3224199 ], + [ 7.8103155, 46.3228891 ], + [ 7.8100591999999995, 46.3231517 ], + [ 7.8099834, 46.3233368 ], + [ 7.8099329, 46.3234378 ], + [ 7.8097039, 46.3235318 ], + [ 7.8097185, 46.3236556 ], + [ 7.8096281, 46.3237225 ], + [ 7.8095694, 46.3238009 ], + [ 7.8095343, 46.3240088 ], + [ 7.8092959, 46.3241646 ], + [ 7.8093424, 46.3243168 ], + [ 7.8093006, 46.3243785 ], + [ 7.8092178, 46.3244849 ], + [ 7.8091262, 46.3246247 ], + [ 7.8089597, 46.3248486 ], + [ 7.808704, 46.3250774 ], + [ 7.8085222, 46.3253069 ], + [ 7.8082896, 46.3256034 ], + [ 7.8080979, 46.3259339 ], + [ 7.8079385, 46.3262367 ], + [ 7.8078202, 46.3265114 ], + [ 7.8077832, 46.3267981 ], + [ 7.8076679, 46.3269042 ], + [ 7.8075361999999995, 46.3269989 ], + [ 7.8074703, 46.3270885 ], + [ 7.8074523, 46.327184 ], + [ 7.8075064, 46.3273869 ], + [ 7.8075928, 46.3275564 ], + [ 7.8076543, 46.3277706 ], + [ 7.8076992, 46.3280465 ], + [ 7.8077115, 46.3283055 ], + [ 7.8076744, 46.3285809 ], + [ 7.8075887, 46.3288785 ], + [ 7.807336, 46.3294337 ], + [ 7.80712, 46.3297753 ], + [ 7.8069618, 46.3300161 ], + [ 7.8069988, 46.3302077 ], + [ 7.807151, 46.3304 ], + [ 7.8073274, 46.3305532 ], + [ 7.8075456, 46.3306561 ], + [ 7.8077875, 46.3307759 ], + [ 7.8082564, 46.3309818 ], + [ 7.8089328, 46.3313861 ], + [ 7.8091106, 46.3315055 ], + [ 7.8092056, 46.33163 ], + [ 7.8092364, 46.3317427 ], + [ 7.8092585, 46.3318948 ], + [ 7.8092564, 46.3320635 ], + [ 7.809285, 46.3323169 ], + [ 7.8092972, 46.3325702 ], + [ 7.8093107, 46.332756 ], + [ 7.8092271, 46.3328791 ], + [ 7.8091682, 46.3330532 ], + [ 7.8091566, 46.3332556 ], + [ 7.8090806, 46.3334238 ], + [ 7.8089572, 46.3335299 ], + [ 7.8087937, 46.3336075 ], + [ 7.8086127, 46.3337187 ], + [ 7.8085048, 46.333853 ], + [ 7.808437, 46.334027 ], + [ 7.8084924, 46.3341679 ], + [ 7.8085875, 46.3343149 ], + [ 7.8086102, 46.3344219 ], + [ 7.8086403, 46.3345572 ], + [ 7.8086296, 46.334771 ], + [ 7.8085785, 46.3349001 ], + [ 7.8085675, 46.3350744 ], + [ 7.8085242, 46.3352653 ], + [ 7.8084088, 46.3353714 ], + [ 7.808294, 46.3354325 ], + [ 7.8080903, 46.3354366 ], + [ 7.8080318, 46.3355487 ], + [ 7.8078734, 46.3357784 ], + [ 7.8077851, 46.3356877 ], + [ 7.8076795, 46.3356757 ], + [ 7.8075265, 46.3356183 ], + [ 7.8074295, 46.3355501 ], + [ 7.8073575, 46.3354764 ], + [ 7.8073255, 46.3354255 ], + [ 7.8073284, 46.3352568 ], + [ 7.807315, 46.3350654 ], + [ 7.8073178, 46.3348797 ], + [ 7.8072712, 46.3347219 ], + [ 7.8072254999999995, 46.3345528 ], + [ 7.8071053, 46.3344281 ], + [ 7.8070494, 46.334332 ], + [ 7.8068726, 46.3342352 ], + [ 7.8066781, 46.3341606 ], + [ 7.8065332, 46.3340921 ], + [ 7.8062824, 46.3339778 ], + [ 7.8061537, 46.3339037 ], + [ 7.8060409, 46.333796 ], + [ 7.8059702, 46.333666 ], + [ 7.8058988, 46.3335474 ], + [ 7.8058361, 46.3334007 ], + [ 7.8057735, 46.3332539 ], + [ 7.8056868, 46.3330395 ], + [ 7.8056408, 46.3328479 ], + [ 7.8055939, 46.3327519 ], + [ 7.8054249, 46.3326044 ], + [ 7.8051336, 46.332501 ], + [ 7.804463, 46.3322374 ], + [ 7.8043476, 46.3323266 ], + [ 7.8043373, 46.3324953 ], + [ 7.8043507, 46.332664199999996 ], + [ 7.804316, 46.3328158 ], + [ 7.8042736999999995, 46.3329225 ], + [ 7.8043039, 46.3330747 ], + [ 7.8043578, 46.3332437 ], + [ 7.8043969, 46.3333791 ], + [ 7.8044914, 46.3335542 ], + [ 7.8045217000000005, 46.3337232 ], + [ 7.8045194, 46.3338639 ], + [ 7.8045404, 46.3340834 ], + [ 7.8044882, 46.3342799 ], + [ 7.8045253, 46.3344996 ], + [ 7.8044256, 46.3346397 ], + [ 7.8044025, 46.334572 ], + [ 7.8043637, 46.334476 ], + [ 7.8042657, 46.334509 ], + [ 7.8042071, 46.3346155 ], + [ 7.8041716, 46.3347615 ], + [ 7.8041538, 46.3348965 ], + [ 7.8041672, 46.3350767 ], + [ 7.8042143, 46.3352008 ], + [ 7.8043256, 46.3353366 ], + [ 7.8043645999999995, 46.3354606 ], + [ 7.8041371999999996, 46.3354421 ], + [ 7.8042092, 46.335527 ], + [ 7.8042724, 46.3356343 ], + [ 7.8042625, 46.3357243 ], + [ 7.8042528, 46.3358537 ], + [ 7.8042262000000004, 46.3359998 ], + [ 7.8042238, 46.3361347 ], + [ 7.8042210999999995, 46.3363373 ], + [ 7.8042438, 46.3364556 ], + [ 7.8042559, 46.3366807 ], + [ 7.804245, 46.3368719 ], + [ 7.8041859, 46.3370066 ], + [ 7.8041018, 46.3371803 ], + [ 7.8040422, 46.3373713 ], + [ 7.8040151, 46.3375624 ], + [ 7.8039634, 46.3377252 ], + [ 7.8038963, 46.3378935 ], + [ 7.8037792, 46.3380952 ], + [ 7.8036962, 46.3381845 ], + [ 7.8036132, 46.3382797 ], + [ 7.8034977, 46.3383745 ], + [ 7.8033836999999995, 46.3384356 ], + [ 7.8031787999999995, 46.3385072 ], + [ 7.8030552, 46.3385907 ], + [ 7.8029724, 46.338714 ], + [ 7.8028807, 46.3388482 ], + [ 7.8027165, 46.3389372 ], + [ 7.8025611, 46.3389978 ], + [ 7.8025839, 46.3391331 ], + [ 7.8026615, 46.339325 ], + [ 7.8027331, 46.3394774 ], + [ 7.8028438, 46.3396414 ], + [ 7.8029641, 46.3397828 ], + [ 7.8029857, 46.3399687 ], + [ 7.8030072, 46.3401545 ], + [ 7.8030541, 46.3402504 ], + [ 7.8030936, 46.3403352 ], + [ 7.8031406, 46.3404368 ], + [ 7.8031635, 46.3405776 ], + [ 7.8031856, 46.3407296 ], + [ 7.8032406, 46.3408257 ], + [ 7.8032395999999995, 46.3409213 ], + [ 7.8032366, 46.3410733 ], + [ 7.8031701, 46.3412022 ], + [ 7.8031033, 46.3412917 ], + [ 7.8029797, 46.3413809 ], + [ 7.8028806, 46.3414983 ], + [ 7.8029032, 46.3415997 ], + [ 7.8029752, 46.3416734 ], + [ 7.8030647, 46.3417077 ], + [ 7.8031766000000005, 46.3418098 ], + [ 7.8033043, 46.3419628 ], + [ 7.8033845, 46.3420646 ], + [ 7.8034877, 46.3422059 ], + [ 7.8035511, 46.3423246 ], + [ 7.8036625, 46.3424773 ], + [ 7.8037989, 46.3425964 ], + [ 7.8039035, 46.3427041 ], + [ 7.8040481, 46.3428345 ], + [ 7.8042065, 46.3430888 ], + [ 7.8039233, 46.3429856 ], + [ 7.8036808, 46.342905 ], + [ 7.8034694, 46.3428641 ], + [ 7.8032744, 46.3428402 ], + [ 7.80304, 46.3427485 ], + [ 7.8027162, 46.3426448 ], + [ 7.8024823, 46.3425137 ], + [ 7.8021922, 46.3423485 ], + [ 7.8018865, 46.3421494 ], + [ 7.8016298, 46.3418831 ], + [ 7.8015107, 46.3416853 ], + [ 7.8013998, 46.3414876 ], + [ 7.8013047, 46.3413462 ], + [ 7.8011932, 46.3411879 ], + [ 7.8010974, 46.3410635 ], + [ 7.8009936, 46.3409558 ], + [ 7.8008328, 46.3408253 ], + [ 7.8007039, 46.3407287 ], + [ 7.8006246, 46.340638 ], + [ 7.8005368, 46.3405024 ], + [ 7.8004734, 46.3403726 ], + [ 7.8004362, 46.3401473 ], + [ 7.8004228, 46.3399615 ], + [ 7.8004095, 46.3398038 ], + [ 7.8003625, 46.3396853 ], + [ 7.8002592, 46.3395384 ], + [ 7.8002126, 46.3393635 ], + [ 7.8001436, 46.3391211 ], + [ 7.8000902, 46.3388957 ], + [ 7.7999787, 46.3387317 ], + [ 7.7998335999999995, 46.3386519 ], + [ 7.799656, 46.338555 ], + [ 7.7995184, 46.3384865 ], + [ 7.7993315, 46.3384627 ], + [ 7.7991047, 46.3384046 ], + [ 7.7990404, 46.3383818 ], + [ 7.7989353999999995, 46.338336 ], + [ 7.7987903, 46.3382505 ], + [ 7.7985634, 46.3381869 ], + [ 7.7983771, 46.338135 ], + [ 7.7982652, 46.3380272 ], + [ 7.7981694, 46.3379029 ], + [ 7.7980075, 46.3378397 ], + [ 7.7977887, 46.3377819 ], + [ 7.7976606, 46.3376741 ], + [ 7.7975717, 46.3376228 ], + [ 7.7974005, 46.3376215 ], + [ 7.7971813, 46.33762 ], + [ 7.7969776, 46.3376241 ], + [ 7.7967338, 46.3375943 ], + [ 7.7964833, 46.3375249 ], + [ 7.7962726, 46.3374446 ], + [ 7.7960302, 46.337369699999996 ], + [ 7.7957065, 46.3372717 ], + [ 7.7955039, 46.3372084 ], + [ 7.7953421, 46.3371677 ], + [ 7.7951715, 46.3371497 ], + [ 7.7950327, 46.337143 ], + [ 7.7948784, 46.3371419 ], + [ 7.7947322, 46.337124 ], + [ 7.7945948, 46.3370893 ], + [ 7.7944654, 46.3370377 ], + [ 7.7943198, 46.3369916 ], + [ 7.7941497, 46.3369285 ], + [ 7.793956, 46.3368539 ], + [ 7.7938016, 46.3368247 ], + [ 7.7935248999999995, 46.3368339 ], + [ 7.7932964, 46.3368997 ], + [ 7.7930753, 46.336977 ], + [ 7.7926587, 46.3370751 ], + [ 7.7923565, 46.3371686 ], + [ 7.792121, 46.3371613 ], + [ 7.7920077, 46.3370873 ], + [ 7.7918464, 46.3369905 ], + [ 7.7916944, 46.3368375 ], + [ 7.7915016999999995, 46.3366672 ], + [ 7.7913816, 46.3365426 ], + [ 7.791254, 46.3363954 ], + [ 7.79116, 46.3361753 ], + [ 7.791081, 46.3360059 ], + [ 7.7909795, 46.335752 ], + [ 7.7909249, 46.335594 ], + [ 7.7908449, 46.3355203 ], + [ 7.790716, 46.3354294 ], + [ 7.7905634, 46.3352933 ], + [ 7.7904359, 46.3351629 ], + [ 7.7902827, 46.3350718 ], + [ 7.7901945, 46.3349811 ], + [ 7.7901475, 46.3348682 ], + [ 7.7900116, 46.3346872 ], + [ 7.7898672, 46.3345849 ], + [ 7.7897459, 46.3345333 ], + [ 7.789649, 46.334482 ], + [ 7.7895771, 46.3344027 ], + [ 7.7894888, 46.3343064 ], + [ 7.789377, 46.3342213 ], + [ 7.7892312, 46.3341357 ], + [ 7.7889725, 46.3340495 ], + [ 7.7886481, 46.3339739 ], + [ 7.7884296, 46.3339386 ], + [ 7.7882514, 46.3338754 ], + [ 7.78805, 46.3337389 ], + [ 7.7877594, 46.3335962 ], + [ 7.7874929999999996, 46.3334591 ], + [ 7.7872187, 46.3333277 ], + [ 7.7870419, 46.3332307 ], + [ 7.7868068, 46.3331503 ], + [ 7.7866132, 46.3330814 ], + [ 7.7864505, 46.3330352 ], + [ 7.7862332, 46.3329323 ], + [ 7.7860405, 46.3327509 ], + [ 7.7857845999999995, 46.332462 ], + [ 7.7854405, 46.3320994 ], + [ 7.7852874, 46.3320083 ], + [ 7.7851987, 46.3319852 ], + [ 7.7850843, 46.3319843 ], + [ 7.7849782, 46.3320172 ], + [ 7.7848882, 46.3320448 ], + [ 7.7848484, 46.3320332 ], + [ 7.7847346, 46.3320154 ], + [ 7.7846203, 46.3320315 ], + [ 7.7845785, 46.3320987 ], + [ 7.7845124, 46.3321714 ], + [ 7.7844624, 46.3322216 ], + [ 7.7843969, 46.332255 ], + [ 7.7842834, 46.3322709 ], + [ 7.7841857999999995, 46.3322422 ], + [ 7.784016, 46.3322127 ], + [ 7.7838209, 46.3321776 ], + [ 7.7835529, 46.3321475 ], + [ 7.7832930000000005, 46.3321174 ], + [ 7.7830175, 46.332076 ], + [ 7.7827327, 46.3320795 ], + [ 7.782464, 46.3320775 ], + [ 7.7821143, 46.3320975 ], + [ 7.7817326, 46.3320721 ], + [ 7.7814163, 46.3319854 ], + [ 7.780907, 46.3317961 ], + [ 7.7808008, 46.3318177 ], + [ 7.7806941, 46.3318844 ], + [ 7.7805792, 46.3319511 ], + [ 7.7804637, 46.3320347 ], + [ 7.7802428, 46.3321399 ], + [ 7.7799736, 46.3321886 ], + [ 7.7797775, 46.3322377 ], + [ 7.7795901, 46.3322588 ], + [ 7.7792978, 46.3322455 ], + [ 7.7790135, 46.3322039 ], + [ 7.7787372999999995, 46.3321682 ], + [ 7.7784618, 46.3321155 ], + [ 7.7780807, 46.3320564 ], + [ 7.7777076, 46.3319749 ], + [ 7.7773097, 46.3319382 ], + [ 7.7769923, 46.3319301 ], + [ 7.7766999, 46.3319112 ], + [ 7.7762927, 46.3319532 ], + [ 7.776088, 46.3320529 ], + [ 7.7758257, 46.3321578 ], + [ 7.775792, 46.3322251 ], + [ 7.7755483, 46.3322008 ], + [ 7.7754097, 46.3322279 ], + [ 7.7752304, 46.3322433 ], + [ 7.7749786, 46.3322134 ], + [ 7.7747513, 46.3322117 ], + [ 7.7744339, 46.3322093 ], + [ 7.774196, 46.3323257 ], + [ 7.7739014, 46.3324642 ], + [ 7.7734418, 46.332697 ], + [ 7.7732459, 46.3327743 ], + [ 7.7730659, 46.3328068 ], + [ 7.7729517, 46.3328453 ], + [ 7.7729505, 46.3329184 ], + [ 7.7729818, 46.332997399999996 ], + [ 7.7728351, 46.3330244 ], + [ 7.772607, 46.3330283 ], + [ 7.7723953, 46.333038 ], + [ 7.7722736, 46.3330595 ], + [ 7.7721105, 46.3330696 ], + [ 7.771923, 46.3330683 ], + [ 7.7717601, 46.3330952 ], + [ 7.7716784, 46.3331396 ], + [ 7.7714486, 46.3332672 ], + [ 7.7715205, 46.3333353 ], + [ 7.7714063, 46.3333851 ], + [ 7.7712995, 46.3334349 ], + [ 7.7711439, 46.3334731 ], + [ 7.7710135000000005, 46.3335228 ], + [ 7.7708898, 46.3336006 ], + [ 7.7707344, 46.3336783 ], + [ 7.7706362, 46.333683 ], + [ 7.7705309, 46.3337049 ], + [ 7.7703997000000005, 46.3337657 ], + [ 7.7702267, 46.3338713 ], + [ 7.7700213, 46.3339935 ], + [ 7.7697585, 46.3341604 ], + [ 7.7695376, 46.3342712 ], + [ 7.7692678, 46.3343592 ], + [ 7.7690472, 46.3343969 ], + [ 7.7688922, 46.3344014 ], + [ 7.7687861, 46.3344344 ], + [ 7.7686801, 46.3344899 ], + [ 7.7685488, 46.3345282 ], + [ 7.7683452, 46.3345436 ], + [ 7.7678262, 46.3344834 ], + [ 7.7680011, 46.3346872 ], + [ 7.7674425, 46.3345368 ], + [ 7.7672158, 46.3344844 ], + [ 7.766899, 46.3344482 ], + [ 7.7665977999999996, 46.334446 ], + [ 7.7664083, 46.3346415 ], + [ 7.7665039, 46.3347492 ], + [ 7.7667133, 46.3348801 ], + [ 7.7667845, 46.3349764 ], + [ 7.7667028, 46.3350264 ], + [ 7.7665955, 46.3351324 ], + [ 7.7665356, 46.3353008 ], + [ 7.7665564, 46.3355148 ], + [ 7.7665947, 46.3356838 ], + [ 7.7667459999999995, 46.335865 ], + [ 7.7670185, 46.3361034 ], + [ 7.7672681, 46.3363022 ], + [ 7.7674368, 46.3364159 ], + [ 7.7676143, 46.3364905 ], + [ 7.7678661, 46.3365318 ], + [ 7.7678638, 46.3366724 ], + [ 7.7680012, 46.3367185 ], + [ 7.7681225, 46.3367756 ], + [ 7.7681937, 46.3368718 ], + [ 7.7681921, 46.3370012 ], + [ 7.7680305, 46.3370035 ], + [ 7.7679066, 46.337044 ], + [ 7.767806, 46.337056 ], + [ 7.7676698, 46.3370817 ], + [ 7.7675339999999995, 46.3370503 ], + [ 7.7674099, 46.3370629 ], + [ 7.7673191, 46.3370769 ], + [ 7.7672463, 46.3371179 ], + [ 7.7670799, 46.337131 ], + [ 7.7669525, 46.3372734 ], + [ 7.7666416, 46.3373951 ], + [ 7.7664352999999995, 46.3375206 ], + [ 7.7661956, 46.3376059 ], + [ 7.7660222999999995, 46.3375541 ], + [ 7.7658087, 46.3375308 ], + [ 7.7656518, 46.3376277 ], + [ 7.76542, 46.3378216 ], + [ 7.7652466, 46.3378785 ], + [ 7.7650324, 46.3378895 ], + [ 7.7649, 46.3380151 ], + [ 7.7647017, 46.3381005 ], + [ 7.7644952, 46.3381858 ], + [ 7.7643378, 46.3383455 ], + [ 7.7642386, 46.3385855 ], + [ 7.7641468, 46.3388483 ], + [ 7.764055, 46.3390996 ], + [ 7.7639713, 46.339351 ], + [ 7.7639949, 46.3396369 ], + [ 7.7641427, 46.3399173 ], + [ 7.7641579, 46.3401459 ], + [ 7.7642068, 46.3403176 ], + [ 7.7642965, 46.3405177 ], + [ 7.7643121, 46.3406951 ], + [ 7.7642296, 46.3408778 ], + [ 7.7641293000000005, 46.3410662 ], + [ 7.7640468, 46.3412547 ], + [ 7.7640212, 46.3414605 ], + [ 7.7640697, 46.3416892 ], + [ 7.764225, 46.3420039 ], + [ 7.7643725, 46.3422271 ], + [ 7.7645776, 46.3424618 ], + [ 7.7647335, 46.342605 ], + [ 7.7648727, 46.3427997 ], + [ 7.7649543, 46.3429999 ], + [ 7.7649779, 46.3432857 ], + [ 7.7650018, 46.3434744 ], + [ 7.7650915, 46.3436747 ], + [ 7.7652967, 46.3439208 ], + [ 7.7655102, 46.3441786 ], + [ 7.7654435, 46.3442927 ], + [ 7.7651715, 46.3442923 ], + [ 7.7649166, 46.3442917 ], + [ 7.764627, 46.3444684 ], + [ 7.7643376, 46.3446736 ], + [ 7.7641395, 46.344799 ], + [ 7.7640397, 46.344959 ], + [ 7.7639316, 46.3452045 ], + [ 7.7637989, 46.3455415 ], + [ 7.7636493, 46.3457813 ], + [ 7.7634261, 46.3459238 ], + [ 7.7631866, 46.3460721 ], + [ 7.7629307, 46.3461687 ], + [ 7.7627331, 46.346117 ], + [ 7.7623782, 46.3460991 ], + [ 7.762263, 46.346116 ], + [ 7.7620971, 46.3463444 ], + [ 7.7621044, 46.3464873 ], + [ 7.7622773, 46.3467449 ], + [ 7.7623997, 46.3469851 ], + [ 7.7622912, 46.3473109 ], + [ 7.7621405, 46.3477736 ], + [ 7.7620655, 46.3479963 ], + [ 7.7619831, 46.3480705 ], + [ 7.761869, 46.3478473 ], + [ 7.761754, 46.3476241 ], + [ 7.7617548, 46.3474869 ], + [ 7.7614583, 46.3473321 ], + [ 7.7613933, 46.347189 ], + [ 7.7612612, 46.3470859 ], + [ 7.7608578999999995, 46.3469766 ], + [ 7.7606443, 46.3468333 ], + [ 7.7606287, 46.3466675 ], + [ 7.7604315, 46.3465413 ], + [ 7.7603072, 46.346541 ], + [ 7.7601832, 46.3467066 ], + [ 7.7601414, 46.3469181 ], + [ 7.7602556, 46.3471469 ], + [ 7.7602052, 46.3474155 ], + [ 7.7600722, 46.347701 ], + [ 7.7599064, 46.347958 ], + [ 7.7597816, 46.3481293 ], + [ 7.7597231, 46.3482664 ], + [ 7.759748, 46.3483578 ], + [ 7.7599121, 46.3485067 ], + [ 7.7600597, 46.3486213 ], + [ 7.7601748, 46.3487188 ], + [ 7.7601661, 46.3489017 ], + [ 7.7601247, 46.3490331 ], + [ 7.7600252, 46.34909 ], + [ 7.7598188, 46.3490725 ], + [ 7.7595717, 46.3490148 ], + [ 7.759358, 46.3489916 ], + [ 7.759209, 46.3490599 ], + [ 7.7590523000000005, 46.3490654 ], + [ 7.7590275, 46.3491225 ], + [ 7.7590932, 46.3492426 ], + [ 7.7591995, 46.3495057 ], + [ 7.7592064, 46.3497173 ], + [ 7.7592881, 46.3499461 ], + [ 7.759287, 46.3502949 ], + [ 7.7593105, 46.3505635 ], + [ 7.7593584, 46.3508381 ], + [ 7.7593903, 46.3511524 ], + [ 7.7594223, 46.3513412 ], + [ 7.7596096, 46.351856 ], + [ 7.7596271, 46.3520603 ], + [ 7.7596804, 46.3522857 ], + [ 7.759726, 46.3524436 ], + [ 7.7597638, 46.3526521 ], + [ 7.7597833, 46.3529279 ], + [ 7.7598449, 46.3531816 ], + [ 7.7598812, 46.3534238 ], + [ 7.7598939, 46.3536433 ], + [ 7.7598579999999995, 46.3538849 ], + [ 7.7598537, 46.3541212 ], + [ 7.7598265, 46.3543235 ], + [ 7.7598546, 46.3545488 ], + [ 7.7598686, 46.3547177 ], + [ 7.7599137, 46.3549207 ], + [ 7.7599589, 46.355146 ], + [ 7.7600047, 46.3553546 ], + [ 7.7600968, 46.3556815 ], + [ 7.760272, 46.3559248 ], + [ 7.7604061, 46.3562072 ], + [ 7.7605521, 46.3567371 ], + [ 7.7606136, 46.3569627 ], + [ 7.7606106, 46.3571427 ], + [ 7.7605832, 46.3573226 ], + [ 7.7605641, 46.3575137 ], + [ 7.7604286, 46.3578053 ], + [ 7.7603102, 46.3581137 ], + [ 7.7601185, 46.3583712 ], + [ 7.7599444, 46.3585836 ], + [ 7.7597927, 46.3588863 ], + [ 7.7595914, 46.359301 ], + [ 7.7593422, 46.359603 ], + [ 7.7591249, 46.3599277 ], + [ 7.7590053, 46.3602981 ], + [ 7.7589174, 46.3606744 ], + [ 7.7587638, 46.3606564 ], + [ 7.7587439, 46.3608587 ], + [ 7.7586973, 46.3612185 ], + [ 7.7585783, 46.3615496 ], + [ 7.7584679, 46.3618413 ], + [ 7.7582913, 46.3621888 ], + [ 7.7580421, 46.3624795 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "JBG0002", + "country" : "CHE", + "name" : [ + { + "text" : "Eidgenössisches Jagdbanngebiet Alpjuhorn", + "lang" : "de-CH" + }, + { + "text" : "District franc fédéral Alpjuhorn", + "lang" : "fr-CH" + }, + { + "text" : "Bandita federale di caccia Alpjuhorn", + "lang" : "it-CH" + }, + { + "text" : "Federal Game Reserve Alpjuhorn", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.3479507, 47.3667675 ], + [ 7.3479454, 47.3666263 ], + [ 7.3479294, 47.3664854 ], + [ 7.3479025, 47.3663453 ], + [ 7.3478648, 47.3662064 ], + [ 7.3478165, 47.366069 ], + [ 7.3477577, 47.3659335 ], + [ 7.3476885, 47.3658003 ], + [ 7.3476092, 47.3656697 ], + [ 7.3475199, 47.3655421 ], + [ 7.3474209, 47.3654179 ], + [ 7.3473125, 47.3652974 ], + [ 7.347195, 47.3651809 ], + [ 7.3470686, 47.3650687 ], + [ 7.3469337, 47.3649612 ], + [ 7.3467908, 47.3648586 ], + [ 7.3466402, 47.3647612 ], + [ 7.3464823, 47.3646693 ], + [ 7.3463175, 47.3645832 ], + [ 7.3461463, 47.364503 ], + [ 7.3459691, 47.3644291 ], + [ 7.3457865, 47.3643615 ], + [ 7.345599, 47.3643005 ], + [ 7.345407, 47.3642463 ], + [ 7.3452111, 47.364199 ], + [ 7.3450119, 47.3641587 ], + [ 7.3448098, 47.3641256 ], + [ 7.3446054, 47.3640996 ], + [ 7.3443993, 47.364081 ], + [ 7.3441921, 47.3640698 ], + [ 7.3439841999999995, 47.3640659 ], + [ 7.3437764, 47.3640694 ], + [ 7.3435691, 47.3640803 ], + [ 7.343363, 47.3640986 ], + [ 7.3431585, 47.3641241 ], + [ 7.3429563, 47.3641569 ], + [ 7.3427569, 47.3641969 ], + [ 7.3425608, 47.3642438 ], + [ 7.3423686, 47.3642977 ], + [ 7.3421809, 47.3643584 ], + [ 7.341998, 47.3644256 ], + [ 7.3418206999999995, 47.3644993 ], + [ 7.3416492, 47.3645791 ], + [ 7.3414841, 47.364665 ], + [ 7.3413258, 47.3647566 ], + [ 7.3411748, 47.3648537 ], + [ 7.3410315, 47.364956 ], + [ 7.3408963, 47.3650633 ], + [ 7.3407695, 47.3651753 ], + [ 7.3406515, 47.3652916 ], + [ 7.3405427, 47.365412 ], + [ 7.3404433000000004, 47.365536 ], + [ 7.3403535, 47.3656634 ], + [ 7.3402737, 47.3657939 ], + [ 7.3402041, 47.365927 ], + [ 7.3401448, 47.3660624 ], + [ 7.340096, 47.3661997 ], + [ 7.3400578, 47.3663386 ], + [ 7.3400304, 47.3664786 ], + [ 7.3400139, 47.3666194 ], + [ 7.3400081, 47.3667606 ], + [ 7.3400133, 47.3669018 ], + [ 7.3400294, 47.3670427 ], + [ 7.3400562, 47.3671828 ], + [ 7.3400939, 47.3673217 ], + [ 7.3401422, 47.3674591 ], + [ 7.340201, 47.3675946 ], + [ 7.3402701, 47.3677278 ], + [ 7.3403494, 47.3678584 ], + [ 7.3404387, 47.367986 ], + [ 7.3405377, 47.3681102 ], + [ 7.3406461, 47.3682308 ], + [ 7.3407636, 47.3683473 ], + [ 7.34089, 47.3684595 ], + [ 7.3410248, 47.368567 ], + [ 7.3411678, 47.3686696 ], + [ 7.3413184, 47.368767 ], + [ 7.3414763, 47.3688588 ], + [ 7.3416411, 47.368945 ], + [ 7.3418123, 47.3690251 ], + [ 7.3419895, 47.3690991 ], + [ 7.3421721, 47.3691667 ], + [ 7.3423596, 47.3692277 ], + [ 7.3425516, 47.3692819 ], + [ 7.3427475, 47.3693292 ], + [ 7.3429468, 47.3693695 ], + [ 7.3431489, 47.3694027 ], + [ 7.3433533, 47.3694286 ], + [ 7.3435595, 47.3694472 ], + [ 7.3437667, 47.3694585 ], + [ 7.3439746, 47.3694623 ], + [ 7.3441824, 47.3694588 ], + [ 7.3443897, 47.3694479 ], + [ 7.3445959, 47.3694297 ], + [ 7.3448004000000005, 47.3694041 ], + [ 7.3450026, 47.3693713 ], + [ 7.3452020000000005, 47.3693313 ], + [ 7.3453981, 47.3692843 ], + [ 7.3455903, 47.3692304 ], + [ 7.3457781, 47.3691698 ], + [ 7.3459609, 47.3691025 ], + [ 7.3461383, 47.3690289 ], + [ 7.3463098, 47.368949 ], + [ 7.3464749, 47.3688632 ], + [ 7.3466332, 47.3687715 ], + [ 7.3467842, 47.3686744 ], + [ 7.3469275, 47.3685721 ], + [ 7.3470627, 47.3684648 ], + [ 7.3471895, 47.3683528 ], + [ 7.3473074, 47.3682365 ], + [ 7.3474163, 47.3681161 ], + [ 7.3475157, 47.3679921 ], + [ 7.3476054, 47.3678646 ], + [ 7.3476852, 47.3677342 ], + [ 7.3477548, 47.3676011 ], + [ 7.3478141, 47.3674657 ], + [ 7.3478629, 47.3673284 ], + [ 7.347901, 47.3671895 ], + [ 7.3479284, 47.3670495 ], + [ 7.347945, 47.3669087 ], + [ 7.3479507, 47.3667675 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "DEL0001", + "country" : "CHE", + "name" : [ + { + "text" : "Prison de Delémont", + "lang" : "de-CH" + }, + { + "text" : "Prison de Delémont", + "lang" : "fr-CH" + }, + { + "text" : "Prison de Delémont", + "lang" : "it-CH" + }, + { + "text" : "Prison de Delémont", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Service juridique", + "lang" : "de-CH" + }, + { + "text" : "Service juridique", + "lang" : "fr-CH" + }, + { + "text" : "Service juridique", + "lang" : "it-CH" + }, + { + "text" : "Service juridique", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Service juridique", + "lang" : "de-CH" + }, + { + "text" : "Service juridique", + "lang" : "fr-CH" + }, + { + "text" : "Service juridique", + "lang" : "it-CH" + }, + { + "text" : "Service juridique", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.jura.ch/fr/Autorites/Administration/DIN/JUR/Prison-de-Delemont/Prison-de-Delemont.html", + "email" : "secr.jur@jura.ch", + "phone" : "0041324205630", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4413603, 47.4099127 ], + [ 7.4411476, 47.4099356 ], + [ 7.4411072, 47.4099399 ], + [ 7.440896, 47.4099731 ], + [ 7.4405417, 47.410043 ], + [ 7.4392728, 47.4103125 ], + [ 7.4391307, 47.4103092 ], + [ 7.4390355, 47.4102731 ], + [ 7.4390424, 47.410232 ], + [ 7.4390338, 47.4102015 ], + [ 7.4389946, 47.4101557 ], + [ 7.4389133, 47.4100511 ], + [ 7.4388688, 47.4099791 ], + [ 7.4388354, 47.4099016 ], + [ 7.438795, 47.4098331 ], + [ 7.4387362, 47.4097497 ], + [ 7.4387137, 47.4097133 ], + [ 7.4383913, 47.4091581 ], + [ 7.4382717, 47.4092111 ], + [ 7.4381928, 47.4092235 ], + [ 7.4380771, 47.4092418 ], + [ 7.4385551, 47.4099734 ], + [ 7.4384409, 47.4099932 ], + [ 7.438246, 47.4100167 ], + [ 7.4379611, 47.410048 ], + [ 7.4377015, 47.410077 ], + [ 7.437532, 47.4101083 ], + [ 7.437588, 47.4106607 ], + [ 7.4375892, 47.4106708 ], + [ 7.4379891, 47.4105957 ], + [ 7.4382927, 47.4105278 ], + [ 7.438298, 47.4105411 ], + [ 7.4384363, 47.4111615 ], + [ 7.4364765, 47.4116727 ], + [ 7.436075, 47.4118121 ], + [ 7.4352745, 47.412083 ], + [ 7.4345316, 47.4123257 ], + [ 7.4341071, 47.4124415 ], + [ 7.4339087, 47.4125245 ], + [ 7.4329108, 47.4128293 ], + [ 7.432084, 47.4130381 ], + [ 7.4326208, 47.413895 ], + [ 7.4333911, 47.4136691 ], + [ 7.4334761, 47.4136357 ], + [ 7.433511, 47.413622 ], + [ 7.433675, 47.4135576 ], + [ 7.4337722, 47.4135229 ], + [ 7.4342488, 47.4133527 ], + [ 7.4344814, 47.4132809 ], + [ 7.4346461999999995, 47.4132302 ], + [ 7.4349454, 47.4131677 ], + [ 7.4351167, 47.4131554 ], + [ 7.4353660999999995, 47.4130529 ], + [ 7.4359445, 47.4129426 ], + [ 7.4361447, 47.4129489 ], + [ 7.4362772, 47.4129109 ], + [ 7.4366898, 47.4128138 ], + [ 7.4369655, 47.412835 ], + [ 7.437283, 47.412866 ], + [ 7.4374315, 47.4128492 ], + [ 7.4375701, 47.4128018 ], + [ 7.4380375, 47.4127514 ], + [ 7.4377774, 47.4126428 ], + [ 7.4378243, 47.4126239 ], + [ 7.4379607, 47.4126595 ], + [ 7.4380529, 47.412666 ], + [ 7.4380991, 47.4126685 ], + [ 7.4383264, 47.4126021 ], + [ 7.4387096, 47.4125166 ], + [ 7.4392921, 47.4123456 ], + [ 7.4399272, 47.4120926 ], + [ 7.4405885, 47.4118183 ], + [ 7.4410661, 47.411658 ], + [ 7.4418062, 47.4114584 ], + [ 7.4425672, 47.411291 ], + [ 7.443979, 47.4110237 ], + [ 7.4444566, 47.4109239 ], + [ 7.4453382999999995, 47.4105463 ], + [ 7.4462619, 47.410165 ], + [ 7.4468182, 47.4100403 ], + [ 7.4474324, 47.4100228 ], + [ 7.4473461, 47.4094533 ], + [ 7.4480352, 47.4089448 ], + [ 7.4482316, 47.4086842 ], + [ 7.4481748, 47.4086819 ], + [ 7.4479206, 47.4086704 ], + [ 7.4478748, 47.4086685 ], + [ 7.4474204, 47.4086501 ], + [ 7.4473568, 47.4086686 ], + [ 7.4472495, 47.4086998 ], + [ 7.4468977, 47.4087338 ], + [ 7.4467377, 47.4087528 ], + [ 7.44672, 47.4087549 ], + [ 7.4466984, 47.4087061 ], + [ 7.4465046, 47.4087335 ], + [ 7.446237, 47.4087829 ], + [ 7.4460236, 47.4088322 ], + [ 7.4457999, 47.4088941 ], + [ 7.4455138, 47.4089708 ], + [ 7.4452901, 47.4090468 ], + [ 7.4451505000000004, 47.4090907 ], + [ 7.4450813, 47.4091055 ], + [ 7.4448518, 47.4091517 ], + [ 7.4446684, 47.4091948 ], + [ 7.4444780999999995, 47.4092434 ], + [ 7.444342, 47.4092888 ], + [ 7.4441816, 47.4093405 ], + [ 7.4436361, 47.4095002 ], + [ 7.4435526, 47.4095239 ], + [ 7.4431966, 47.4096342 ], + [ 7.4430308, 47.4096756 ], + [ 7.4428387, 47.4097147 ], + [ 7.4424355, 47.409787 ], + [ 7.4421213, 47.4098143 ], + [ 7.4418351, 47.4098439 ], + [ 7.4415959, 47.4098807 ], + [ 7.4413603, 47.4099127 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns119", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Liesbergweid - Tannig", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Liesbergweid - Tannig", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Liesbergweid - Tannig", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Liesbergweid - Tannig", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.6013922, 46.8890489 ], + [ 8.601389, 46.889051 ], + [ 8.602301, 46.8899221 ], + [ 8.6028637, 46.8904595 ], + [ 8.6013897, 46.892867 ], + [ 8.6035651, 46.8953286 ], + [ 8.6083277, 46.898657 ], + [ 8.6106556, 46.900039 ], + [ 8.611646499999999, 46.9003262 ], + [ 8.6124499, 46.9005591 ], + [ 8.6146428, 46.9008505 ], + [ 8.618116, 46.9012259 ], + [ 8.6192679, 46.9009069 ], + [ 8.6199134, 46.9007282 ], + [ 8.6201131, 46.9001647 ], + [ 8.6202738, 46.8997112 ], + [ 8.6202745, 46.8997093 ], + [ 8.6202738, 46.8997073 ], + [ 8.6203121, 46.8997011 ], + [ 8.6202827, 46.8996159 ], + [ 8.6201563, 46.8995993 ], + [ 8.6200384, 46.8996284 ], + [ 8.6199373, 46.8996344 ], + [ 8.6198362, 46.8995872 ], + [ 8.6197417, 46.899526 ], + [ 8.619636, 46.8994586 ], + [ 8.6195568, 46.8993723 ], + [ 8.6195222, 46.8992786 ], + [ 8.6193633, 46.8992127 ], + [ 8.619229, 46.8991888 ], + [ 8.6190938, 46.8991446 ], + [ 8.6189922, 46.8990826 ], + [ 8.6188771, 46.8990183 ], + [ 8.6187472, 46.8989511 ], + [ 8.6186317, 46.8989033 ], + [ 8.6186286, 46.8989023 ], + [ 8.6186718, 46.8988418 ], + [ 8.6191271, 46.8980272 ], + [ 8.619358, 46.8976472 ], + [ 8.6196918, 46.8970919 ], + [ 8.6198504, 46.8968281 ], + [ 8.6202707, 46.8961333 ], + [ 8.6202739, 46.8961315 ], + [ 8.6203937, 46.8960654 ], + [ 8.620557699999999, 46.895777 ], + [ 8.6205571, 46.8957084 ], + [ 8.6205333, 46.8956893 ], + [ 8.6206227, 46.8955593 ], + [ 8.6207418, 46.8953693 ], + [ 8.6213459, 46.894373 ], + [ 8.6215072, 46.89411 ], + [ 8.6215483, 46.8940423 ], + [ 8.6219022, 46.8934548 ], + [ 8.6220074, 46.8932786 ], + [ 8.6221159, 46.8931045 ], + [ 8.6222243, 46.8930102 ], + [ 8.6223245, 46.8929106 ], + [ 8.6223565, 46.8928643 ], + [ 8.6223724, 46.8928128 ], + [ 8.6223844, 46.8927385 ], + [ 8.622374, 46.8926543 ], + [ 8.6224111, 46.8925841 ], + [ 8.622434, 46.8925437 ], + [ 8.6226491, 46.8921863 ], + [ 8.6228125, 46.8922333 ], + [ 8.6231562, 46.8916881 ], + [ 8.6231146, 46.8916009 ], + [ 8.6233178, 46.8912217 ], + [ 8.6237062, 46.8905823 ], + [ 8.6243731, 46.8895229 ], + [ 8.624564, 46.8895464 ], + [ 8.624586, 46.8895194 ], + [ 8.6244357, 46.8894136 ], + [ 8.6248804, 46.8887073 ], + [ 8.6252988, 46.8880343 ], + [ 8.625373, 46.8879151 ], + [ 8.6257341, 46.887334 ], + [ 8.6256085, 46.8872197 ], + [ 8.6256024, 46.8871573 ], + [ 8.6255587, 46.8872278 ], + [ 8.6249988, 46.8881368 ], + [ 8.6242823, 46.889325 ], + [ 8.624212, 46.8894377 ], + [ 8.6241889, 46.8894435 ], + [ 8.6241136, 46.8894653 ], + [ 8.6240392, 46.8895584 ], + [ 8.6240356, 46.8897313 ], + [ 8.6235954, 46.8904564 ], + [ 8.6230055, 46.891426 ], + [ 8.622375, 46.8924543 ], + [ 8.6220685, 46.8929593 ], + [ 8.6219164, 46.89321 ], + [ 8.6216449, 46.8936479 ], + [ 8.6214225, 46.8940079 ], + [ 8.6214164, 46.8940063 ], + [ 8.6211643, 46.8944202 ], + [ 8.6209194, 46.8948189 ], + [ 8.6206566, 46.8952388 ], + [ 8.6205897, 46.89537 ], + [ 8.6204618, 46.8955735 ], + [ 8.6204196, 46.8956422 ], + [ 8.6203749, 46.8956742 ], + [ 8.6202266, 46.8958899 ], + [ 8.620079, 46.8958667 ], + [ 8.6200435, 46.8959357 ], + [ 8.6198921, 46.8961832 ], + [ 8.6197855, 46.896351 ], + [ 8.619523, 46.8967716 ], + [ 8.6193245, 46.8970899 ], + [ 8.6192771, 46.8971641 ], + [ 8.619275, 46.8971665 ], + [ 8.6192728, 46.8971688 ], + [ 8.6192703, 46.897171 ], + [ 8.6192676, 46.897173 ], + [ 8.6192648, 46.897175 ], + [ 8.6192617, 46.8971768 ], + [ 8.6192585, 46.8971784 ], + [ 8.6192551, 46.8971799 ], + [ 8.6192516, 46.8971813 ], + [ 8.6192479, 46.8971825 ], + [ 8.6192442, 46.8971835 ], + [ 8.6192403, 46.8971843 ], + [ 8.6192364, 46.897185 ], + [ 8.6192324, 46.8971855 ], + [ 8.6192284, 46.8971858 ], + [ 8.6192244, 46.8971859 ], + [ 8.6192204, 46.8971858 ], + [ 8.6192164, 46.8971856 ], + [ 8.6192124, 46.8971852 ], + [ 8.6192085, 46.8971845 ], + [ 8.6191784, 46.8971735 ], + [ 8.6190488, 46.8971271 ], + [ 8.6189411, 46.8970904 ], + [ 8.6187813, 46.8970326 ], + [ 8.6187162, 46.8970121 ], + [ 8.6185729, 46.8969672 ], + [ 8.6184706, 46.8969361 ], + [ 8.6183822, 46.8969072 ], + [ 8.6182995, 46.8968835 ], + [ 8.6181797, 46.8968606 ], + [ 8.6180263, 46.8968327 ], + [ 8.6179357, 46.8968152 ], + [ 8.6178248, 46.8967962 ], + [ 8.6176861, 46.8967719 ], + [ 8.6175246, 46.8967337 ], + [ 8.617394, 46.8967017 ], + [ 8.6172673, 46.8966703 ], + [ 8.6171644, 46.8966537 ], + [ 8.6169757, 46.8966167 ], + [ 8.6168038, 46.8965816 ], + [ 8.6166856, 46.8965611 ], + [ 8.6165692, 46.8965391 ], + [ 8.6164364, 46.8965134 ], + [ 8.6163324, 46.8964926 ], + [ 8.616299399999999, 46.8964505 ], + [ 8.6156808, 46.8962366 ], + [ 8.615069, 46.89575 ], + [ 8.6148964, 46.8956876 ], + [ 8.6150009, 46.8954077 ], + [ 8.6153844, 46.894713 ], + [ 8.6154223, 46.8946451 ], + [ 8.6156539, 46.8942295 ], + [ 8.6159235, 46.8937457 ], + [ 8.6159696, 46.893706 ], + [ 8.6162562, 46.8935577 ], + [ 8.6164895, 46.8934585 ], + [ 8.6165182, 46.893416 ], + [ 8.6169817, 46.892261 ], + [ 8.6167019, 46.8921427 ], + [ 8.6163516, 46.8920009 ], + [ 8.6159459, 46.8918455 ], + [ 8.6158553, 46.8918136 ], + [ 8.6156418, 46.8917375 ], + [ 8.6153389, 46.8916313 ], + [ 8.6150615, 46.8915375 ], + [ 8.614334, 46.8912982 ], + [ 8.6142273, 46.8912617 ], + [ 8.6138963, 46.8911549 ], + [ 8.6127296, 46.890772 ], + [ 8.6122472, 46.8906159 ], + [ 8.6115866, 46.8903996 ], + [ 8.6108024, 46.890142 ], + [ 8.6105411, 46.8900499 ], + [ 8.6102833, 46.8899473 ], + [ 8.610019, 46.8898555 ], + [ 8.6086571, 46.8894128 ], + [ 8.6081425, 46.8892429 ], + [ 8.6081224, 46.8892363 ], + [ 8.606977, 46.8888611 ], + [ 8.6064369, 46.8886848 ], + [ 8.6062863, 46.8886356 ], + [ 8.6060683, 46.8885654 ], + [ 8.6057641, 46.8884701 ], + [ 8.6056127, 46.8884242 ], + [ 8.6054603, 46.8883798 ], + [ 8.6051529, 46.8882956 ], + [ 8.604872499999999, 46.8882235 ], + [ 8.6046176, 46.8881669 ], + [ 8.6044884, 46.8881428 ], + [ 8.6043574, 46.8881214 ], + [ 8.6039616, 46.8880543 ], + [ 8.6037657, 46.8880301 ], + [ 8.6032537, 46.8879924 ], + [ 8.6027392, 46.8879792 ], + [ 8.6027543, 46.8882722 ], + [ 8.6027435, 46.8883639 ], + [ 8.6027233, 46.8884548 ], + [ 8.6027227, 46.8884575 ], + [ 8.6027223, 46.8884603 ], + [ 8.6027222, 46.8884631 ], + [ 8.6027223, 46.8884658 ], + [ 8.6027227, 46.8884686 ], + [ 8.6027233, 46.8884713 ], + [ 8.6027348, 46.8885231 ], + [ 8.6027415, 46.8885753 ], + [ 8.602743199999999, 46.8886278 ], + [ 8.6027371, 46.8886377 ], + [ 8.6027318, 46.8886479 ], + [ 8.6027274, 46.8886582 ], + [ 8.602724, 46.8886688 ], + [ 8.6027215, 46.8886794 ], + [ 8.6027131, 46.8887349 ], + [ 8.6026945, 46.8887361 ], + [ 8.6026777, 46.8887365 ], + [ 8.6026609, 46.8887364 ], + [ 8.6026442, 46.8887356 ], + [ 8.6026282, 46.8887343 ], + [ 8.6026124, 46.8887323 ], + [ 8.6025968, 46.8887297 ], + [ 8.6025504, 46.8887208 ], + [ 8.6024555, 46.8887007 ], + [ 8.6023608, 46.88868 ], + [ 8.6022982, 46.8886677 ], + [ 8.6022349, 46.888657 ], + [ 8.6021854, 46.8886284 ], + [ 8.6020329, 46.8882892 ], + [ 8.6019495, 46.8880894 ], + [ 8.6017279, 46.8881485 ], + [ 8.6018808, 46.8883827 ], + [ 8.6019269, 46.8885595 ], + [ 8.6019305, 46.8885775 ], + [ 8.6019323, 46.8885956 ], + [ 8.6019323, 46.8886138 ], + [ 8.6019305, 46.888632 ], + [ 8.6019269, 46.88865 ], + [ 8.6019215, 46.8886678 ], + [ 8.6019221, 46.8886677 ], + [ 8.601921, 46.8886682 ], + [ 8.6019196, 46.8886688 ], + [ 8.6019181, 46.8886694 ], + [ 8.6019167, 46.88867 ], + [ 8.6019152, 46.8886706 ], + [ 8.6019138, 46.8886711 ], + [ 8.6018996, 46.8886771 ], + [ 8.60172, 46.8887536 ], + [ 8.6017071, 46.8887608 ], + [ 8.6016943, 46.8887683 ], + [ 8.6016818, 46.888776 ], + [ 8.6016695, 46.888784 ], + [ 8.6016575, 46.8887921 ], + [ 8.6016458, 46.8888004 ], + [ 8.6016343, 46.8888089 ], + [ 8.6016232, 46.8888176 ], + [ 8.6016124, 46.8888265 ], + [ 8.6016019, 46.8888355 ], + [ 8.6015917, 46.8888447 ], + [ 8.6015818, 46.8888541 ], + [ 8.6015722, 46.8888636 ], + [ 8.601563, 46.8888733 ], + [ 8.6015542, 46.8888832 ], + [ 8.6015456, 46.8888931 ], + [ 8.6014765, 46.8889714 ], + [ 8.6014735, 46.8889753 ], + [ 8.6014704, 46.8889792 ], + [ 8.6014672, 46.888983 ], + [ 8.601464, 46.8889868 ], + [ 8.6014606, 46.8889906 ], + [ 8.6014572, 46.8889944 ], + [ 8.6014537, 46.8889981 ], + [ 8.6014501, 46.8890017 ], + [ 8.6014465, 46.8890054 ], + [ 8.6014427, 46.889009 ], + [ 8.6014389, 46.8890125 ], + [ 8.601435, 46.889016 ], + [ 8.6014311, 46.8890195 ], + [ 8.601427, 46.8890229 ], + [ 8.6014229, 46.8890263 ], + [ 8.6014187, 46.8890297 ], + [ 8.6014145, 46.889033 ], + [ 8.6014102, 46.8890363 ], + [ 8.6014058, 46.8890395 ], + [ 8.6014013, 46.8890427 ], + [ 8.6013968, 46.8890458 ], + [ 8.6013922, 46.8890489 ] + ], + [ + [ 8.6042123, 46.888177999999996 ], + [ 8.6040536, 46.8885103 ], + [ 8.6039767, 46.888613 ], + [ 8.6038627, 46.8887685 ], + [ 8.6037933, 46.8889314 ], + [ 8.6038208, 46.8889899 ], + [ 8.6038076, 46.8890271 ], + [ 8.6037968, 46.8890576 ], + [ 8.6037298, 46.8890447 ], + [ 8.6036966, 46.8890384 ], + [ 8.6035963, 46.8890191 ], + [ 8.6035881, 46.889017 ], + [ 8.6035798, 46.8890149 ], + [ 8.6035715, 46.8890129 ], + [ 8.6035631, 46.889010999999996 ], + [ 8.6035547, 46.8890092 ], + [ 8.6035463, 46.8890075 ], + [ 8.6035378, 46.8890059 ], + [ 8.6035293, 46.8890044 ], + [ 8.6035208, 46.8890029 ], + [ 8.6035122, 46.8890016 ], + [ 8.6035036, 46.8890003 ], + [ 8.603495, 46.8889991 ], + [ 8.6034863, 46.888998 ], + [ 8.6034776, 46.888997 ], + [ 8.6034689, 46.8889961 ], + [ 8.6034602, 46.8889953 ], + [ 8.6034549, 46.8889949 ], + [ 8.6034496, 46.8889946 ], + [ 8.6034443, 46.8889944 ], + [ 8.603439, 46.8889943 ], + [ 8.6034337, 46.8889943 ], + [ 8.6034284, 46.8889943 ], + [ 8.6034231, 46.8889945 ], + [ 8.6034178, 46.8889948 ], + [ 8.6034125, 46.8889952 ], + [ 8.6034073, 46.8889956 ], + [ 8.603401999999999, 46.8889962 ], + [ 8.6033968, 46.8889969 ], + [ 8.6033916, 46.8889976 ], + [ 8.6033865, 46.8889985 ], + [ 8.6033762, 46.8890005 ], + [ 8.6033559, 46.8890044 ], + [ 8.6033457, 46.8890062 ], + [ 8.6033354, 46.8890077 ], + [ 8.603325, 46.8890091 ], + [ 8.6033146, 46.8890103 ], + [ 8.6033041, 46.8890113 ], + [ 8.6032937, 46.8890122 ], + [ 8.6032846, 46.8890128 ], + [ 8.6032756, 46.8890133 ], + [ 8.6032569, 46.8890144 ], + [ 8.6032242, 46.8890155 ], + [ 8.6032103, 46.8890157 ], + [ 8.6031964, 46.8890156 ], + [ 8.603182499999999, 46.8890152 ], + [ 8.6031623, 46.8890144 ], + [ 8.6031583, 46.8890141 ], + [ 8.6031422, 46.8890132 ], + [ 8.6031222, 46.8890116 ], + [ 8.6031022, 46.8890098 ], + [ 8.6030415, 46.8886396 ], + [ 8.6029842, 46.8884604 ], + [ 8.602968, 46.8883556 ], + [ 8.6029591, 46.8882504 ], + [ 8.6032065, 46.8881585 ], + [ 8.6037996, 46.8881552 ], + [ 8.6042123, 46.888177999999996 ] + ], + [ + [ 8.6080143, 46.8942463 ], + [ 8.6081649, 46.8941925 ], + [ 8.6083954, 46.894114 ], + [ 8.6084727, 46.8940862 ], + [ 8.608623099999999, 46.8940214 ], + [ 8.6088167, 46.8939327 ], + [ 8.6090599, 46.8938235 ], + [ 8.6091668, 46.8937751 ], + [ 8.6092823, 46.8937645 ], + [ 8.6092888, 46.8937357 ], + [ 8.6093088, 46.8937351 ], + [ 8.6093574, 46.8937393 ], + [ 8.6094054, 46.8937459 ], + [ 8.6094585, 46.8937562 ], + [ 8.6095123, 46.8937642 ], + [ 8.6095318, 46.8937693 ], + [ 8.6096305, 46.8937667 ], + [ 8.6099242, 46.8937249 ], + [ 8.6100558, 46.8937133 ], + [ 8.6103529, 46.8936557 ], + [ 8.6104274, 46.8936281 ], + [ 8.6104997, 46.8935978 ], + [ 8.6105696, 46.8935649 ], + [ 8.6106421, 46.8935267 ], + [ 8.6107113, 46.8934858 ], + [ 8.6107771, 46.8934423 ], + [ 8.6109093, 46.8933055 ], + [ 8.611124, 46.8930948 ], + [ 8.611243, 46.8930112 ], + [ 8.6113859, 46.8929846 ], + [ 8.6115469, 46.892948 ], + [ 8.6116735, 46.8929093 ], + [ 8.6116999, 46.8929503 ], + [ 8.6119475, 46.892944 ], + [ 8.6120919, 46.8929234 ], + [ 8.6122161, 46.8928833 ], + [ 8.6124511, 46.8927762 ], + [ 8.6124548, 46.8927733 ], + [ 8.6124569, 46.8927713 ], + [ 8.6125119, 46.8927241 ], + [ 8.6124522, 46.8927005 ], + [ 8.6124492, 46.8926982 ], + [ 8.6124452, 46.8926955 ], + [ 8.6124408, 46.892693 ], + [ 8.6124362, 46.8926907 ], + [ 8.6124314, 46.8926886 ], + [ 8.6124264, 46.8926867 ], + [ 8.6124212, 46.8926851 ], + [ 8.6124159, 46.8926837 ], + [ 8.6124104, 46.8926826 ], + [ 8.6124049, 46.8926818 ], + [ 8.6124041, 46.8926817 ], + [ 8.6122685, 46.8926291 ], + [ 8.6121763, 46.8926819 ], + [ 8.6120971, 46.8927175 ], + [ 8.611926, 46.8927951 ], + [ 8.6118556, 46.8928066 ], + [ 8.6119587, 46.8927621 ], + [ 8.6113579, 46.8928596 ], + [ 8.6108868, 46.8931074 ], + [ 8.6107496, 46.893277 ], + [ 8.6105707, 46.8933919 ], + [ 8.6099919, 46.8936042 ], + [ 8.6096608, 46.8936743 ], + [ 8.609547599999999, 46.8936672 ], + [ 8.6093439, 46.8935613 ], + [ 8.6094509, 46.8934644 ], + [ 8.6096185, 46.8933346 ], + [ 8.6097483, 46.8932232 ], + [ 8.6100311, 46.8930133 ], + [ 8.6101199, 46.8929349 ], + [ 8.6102723, 46.8927959 ], + [ 8.6104637, 46.8926395 ], + [ 8.610717, 46.8924741 ], + [ 8.6107095, 46.8923343 ], + [ 8.6106799, 46.8921996 ], + [ 8.6106105, 46.8919619 ], + [ 8.6106025, 46.891971 ], + [ 8.6106345, 46.8919328 ], + [ 8.6106631, 46.8918933 ], + [ 8.6106881, 46.8918526 ], + [ 8.6106997, 46.8918357 ], + [ 8.6107126, 46.8918192 ], + [ 8.6107267, 46.8918032 ], + [ 8.6107421, 46.8917877 ], + [ 8.6107816, 46.8917516 ], + [ 8.6108246, 46.8917175 ], + [ 8.6108679, 46.8916855 ], + [ 8.6109089, 46.8916522 ], + [ 8.6109476, 46.891617600000004 ], + [ 8.6109677, 46.8916005 ], + [ 8.6109863, 46.8915826 ], + [ 8.6110031, 46.891564 ], + [ 8.6110183, 46.8915447 ], + [ 8.6110419, 46.8915129 ], + [ 8.6110628, 46.8914803 ], + [ 8.611081, 46.8914469 ], + [ 8.6111368, 46.8913705 ], + [ 8.6111805, 46.89132 ], + [ 8.6112196, 46.8912678 ], + [ 8.6112282, 46.891251 ], + [ 8.6112384, 46.8912347 ], + [ 8.6112503, 46.8912189 ], + [ 8.6112507, 46.8912171 ], + [ 8.6112513, 46.8912153 ], + [ 8.6112521, 46.8912135 ], + [ 8.611253, 46.8912118 ], + [ 8.6112541, 46.8912101 ], + [ 8.6112554, 46.8912085 ], + [ 8.6112568, 46.8912069 ], + [ 8.6112584, 46.8912054 ], + [ 8.6112602, 46.891204 ], + [ 8.6112621, 46.8912027 ], + [ 8.6112641, 46.8912014 ], + [ 8.6112662, 46.8912003 ], + [ 8.6112684, 46.8911993 ], + [ 8.6112707, 46.8911984 ], + [ 8.6112732, 46.8911975 ], + [ 8.6112757, 46.8911969 ], + [ 8.6112782, 46.8911963 ], + [ 8.6112808, 46.8911958 ], + [ 8.6112835, 46.8911955 ], + [ 8.6112862, 46.8911953 ], + [ 8.6112889, 46.8911952 ], + [ 8.6113126, 46.8911947 ], + [ 8.6113363, 46.8911953 ], + [ 8.6113599, 46.8911968 ], + [ 8.6113833, 46.8911993 ], + [ 8.6114065, 46.8912028 ], + [ 8.6114293, 46.8912073 ], + [ 8.6115159, 46.891221 ], + [ 8.6116034, 46.8912321 ], + [ 8.6116385, 46.8912332 ], + [ 8.6116737, 46.8912326 ], + [ 8.6117087, 46.8912303 ], + [ 8.6117434, 46.8912264 ], + [ 8.6117776, 46.8912208 ], + [ 8.6118112, 46.8912136 ], + [ 8.611844, 46.8912049 ], + [ 8.6119123, 46.8911825 ], + [ 8.6119793, 46.8911583 ], + [ 8.6121364, 46.8910978 ], + [ 8.6121509, 46.8910913 ], + [ 8.612166, 46.8910854 ], + [ 8.6121816, 46.8910802 ], + [ 8.6121977, 46.8910757 ], + [ 8.6122141, 46.8910719 ], + [ 8.6122309, 46.8910689 ], + [ 8.6122387, 46.8910737 ], + [ 8.6122469, 46.8910782 ], + [ 8.6122556, 46.8910823 ], + [ 8.6122647, 46.8910859 ], + [ 8.6122741, 46.8910891 ], + [ 8.6122838, 46.8910918 ], + [ 8.6122938, 46.8910941 ], + [ 8.6123039, 46.8910959 ], + [ 8.6123143, 46.8910973 ], + [ 8.6123247, 46.8910981 ], + [ 8.6123352, 46.8910985 ], + [ 8.6123457, 46.8910983 ], + [ 8.6123562, 46.8910977 ], + [ 8.6123665, 46.8910966 ], + [ 8.6123768, 46.891095 ], + [ 8.6123868, 46.8910929 ], + [ 8.6123967, 46.8910903 ], + [ 8.6124062, 46.8910873 ], + [ 8.6124154, 46.8910838 ], + [ 8.6124243, 46.89108 ], + [ 8.6124327, 46.8910757 ], + [ 8.6124651, 46.8910608 ], + [ 8.6125109, 46.8910384 ], + [ 8.6125735, 46.8910097 ], + [ 8.6126143, 46.8909784 ], + [ 8.6126884, 46.8909152 ], + [ 8.6127197, 46.890878 ], + [ 8.6127228, 46.8908495 ], + [ 8.6132672, 46.8910419 ], + [ 8.613591, 46.8911454 ], + [ 8.6136039, 46.8911328 ], + [ 8.6139894, 46.8912676 ], + [ 8.6140374, 46.8912819 ], + [ 8.6140817, 46.8912917 ], + [ 8.6141489, 46.8913275 ], + [ 8.6142139, 46.891356 ], + [ 8.6149562, 46.8916044 ], + [ 8.6151748, 46.8916683 ], + [ 8.6153215, 46.8917182 ], + [ 8.6150452, 46.8921826 ], + [ 8.6147833, 46.8926202 ], + [ 8.614488, 46.8930699 ], + [ 8.6142924, 46.8933942 ], + [ 8.6140971, 46.8934864 ], + [ 8.6136804, 46.8936168 ], + [ 8.6127081, 46.8938668 ], + [ 8.6124681, 46.8939142 ], + [ 8.6125143, 46.893969 ], + [ 8.6124775, 46.8939975 ], + [ 8.6124581, 46.8940081 ], + [ 8.6124087, 46.8940137 ], + [ 8.6123612, 46.8940565 ], + [ 8.612335, 46.8941179 ], + [ 8.6123273, 46.8941628 ], + [ 8.6123226, 46.8942522 ], + [ 8.6123769, 46.8942948 ], + [ 8.6124173, 46.894322 ], + [ 8.612478, 46.8943561 ], + [ 8.6124695, 46.8943826 ], + [ 8.6124371, 46.8944242 ], + [ 8.6123862, 46.8944605 ], + [ 8.61233, 46.8944913 ], + [ 8.6122492, 46.8945173 ], + [ 8.6121568, 46.8945291 ], + [ 8.6120803, 46.8945294 ], + [ 8.6120134, 46.8945217 ], + [ 8.6119869, 46.8945263 ], + [ 8.6119831, 46.8945248 ], + [ 8.6119579, 46.8944437 ], + [ 8.6116757, 46.8944636 ], + [ 8.6116638, 46.8944645 ], + [ 8.6115527, 46.8944723 ], + [ 8.611447, 46.8944746 ], + [ 8.6113442, 46.8944783 ], + [ 8.6111503, 46.8944974 ], + [ 8.6110804, 46.8945001 ], + [ 8.6110232, 46.894498 ], + [ 8.6109025, 46.894501 ], + [ 8.6108822, 46.8945023 ], + [ 8.6107823, 46.8945006 ], + [ 8.6107314, 46.8945018 ], + [ 8.6107265, 46.8945013 ], + [ 8.610637, 46.8943908 ], + [ 8.610566, 46.8944011 ], + [ 8.610308, 46.8944924 ], + [ 8.6102191, 46.8945384 ], + [ 8.6101439, 46.8945893 ], + [ 8.6100238, 46.8946355 ], + [ 8.6098721, 46.8946845 ], + [ 8.6096326, 46.89474 ], + [ 8.6095094, 46.8947737 ], + [ 8.6093812, 46.8948065 ], + [ 8.609263200000001, 46.8948353 ], + [ 8.6091776, 46.8948596 ], + [ 8.6090298, 46.894906399999996 ], + [ 8.6087792, 46.8949779 ], + [ 8.6084859, 46.8950296 ], + [ 8.6081489, 46.8947441 ], + [ 8.6076798, 46.894335 ], + [ 8.60778, 46.8942922 ], + [ 8.6080143, 46.8942463 ] + ], + [ + [ 8.6112441, 46.8966643 ], + [ 8.6111371, 46.896582 ], + [ 8.6109934, 46.8964704 ], + [ 8.61075, 46.8962546 ], + [ 8.6100175, 46.8956145 ], + [ 8.6099357, 46.8955652 ], + [ 8.6100125, 46.8954796 ], + [ 8.6101533, 46.895366 ], + [ 8.6102338, 46.8953461 ], + [ 8.6103224, 46.8953143 ], + [ 8.6104296, 46.8952814 ], + [ 8.6105293, 46.8952534 ], + [ 8.610598, 46.8952322 ], + [ 8.6109115, 46.8951632 ], + [ 8.6109378, 46.8951529 ], + [ 8.611036, 46.8951017 ], + [ 8.6110691, 46.8950831 ], + [ 8.6111041, 46.8950662 ], + [ 8.6111406, 46.8950509 ], + [ 8.6111786, 46.8950375 ], + [ 8.6112178, 46.8950258 ], + [ 8.6112581, 46.895016 ], + [ 8.6112993, 46.8950082 ], + [ 8.6115499, 46.8949442 ], + [ 8.6118265, 46.8948599 ], + [ 8.6122105, 46.894755 ], + [ 8.6127875, 46.8946096 ], + [ 8.6129162, 46.8945944 ], + [ 8.613046, 46.8945842 ], + [ 8.6130602, 46.8945447 ], + [ 8.6141001, 46.8942529 ], + [ 8.6146781, 46.8941171 ], + [ 8.6139755, 46.8953989 ], + [ 8.6139842, 46.8954014 ], + [ 8.6139643, 46.8954201 ], + [ 8.6139374, 46.8954331 ], + [ 8.6139085, 46.895444499999996 ], + [ 8.6138765, 46.895452399999996 ], + [ 8.6137634, 46.8954699 ], + [ 8.6136933, 46.8954944 ], + [ 8.613593999999999, 46.8955388 ], + [ 8.6134764, 46.8956006 ], + [ 8.6133739, 46.8956625 ], + [ 8.6132961, 46.8957159 ], + [ 8.6131944, 46.895788 ], + [ 8.6131176, 46.8958465 ], + [ 8.6129581, 46.8959782 ], + [ 8.6128574, 46.8960643 ], + [ 8.6126615, 46.8962491 ], + [ 8.6125923, 46.8963164 ], + [ 8.6125205, 46.8963963 ], + [ 8.612419599999999, 46.8965084 ], + [ 8.6123606, 46.8965692 ], + [ 8.6123198, 46.8966083 ], + [ 8.6122546, 46.8966658 ], + [ 8.6121864, 46.8967214 ], + [ 8.6121323, 46.8967618 ], + [ 8.6120702, 46.8968036 ], + [ 8.6120004, 46.8968478 ], + [ 8.6119114, 46.8968955 ], + [ 8.6118213, 46.8969423 ], + [ 8.6117162, 46.8969996 ], + [ 8.6116964, 46.8970113 ], + [ 8.611650000000001, 46.8969715 ], + [ 8.6115307, 46.896875 ], + [ 8.6113472, 46.896746 ], + [ 8.6112441, 46.8966643 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "KTUR0-0", + "country" : "CHE", + "name" : [ + { + "text" : "Reussdelta", + "lang" : "de-CH" + }, + { + "text" : "Reussdelta", + "lang" : "fr-CH" + }, + { + "text" : "Reussdelta", + "lang" : "it-CH" + }, + { + "text" : "Reussdelta", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Uri", + "lang" : "de-CH" + }, + { + "text" : "Canton d'Uri", + "lang" : "fr-CH" + }, + { + "text" : "Cantone Uri", + "lang" : "it-CH" + }, + { + "text" : "Canton Uri", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Amt für Raumentwicklung", + "lang" : "de-CH" + }, + { + "text" : "Office du développement territorial", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio per lo sviluppo territoriale", + "lang" : "it-CH" + }, + { + "text" : "Office of Spatial Development", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ur.ch/aemter/847", + "email" : "raumplanung@ur.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.2000422, 46.4273379 ], + [ 7.2000028, 46.4273362 ], + [ 7.1997031, 46.4274444 ], + [ 7.1995403, 46.4274954 ], + [ 7.1994188, 46.4276085 ], + [ 7.199313, 46.4276991 ], + [ 7.1991669, 46.4277842 ], + [ 7.1990278, 46.4277615 ], + [ 7.1989303, 46.4277451 ], + [ 7.1988327, 46.4277502 ], + [ 7.198661, 46.4277508 ], + [ 7.1984177, 46.4277575 ], + [ 7.1981494999999995, 46.4277974 ], + [ 7.1979126, 46.4278256 ], + [ 7.197694, 46.4278432 ], + [ 7.1975391, 46.4278608 ], + [ 7.1973765, 46.4278605 ], + [ 7.1972451, 46.4278611 ], + [ 7.1970345, 46.4278274 ], + [ 7.196864, 46.427845 ], + [ 7.1967494, 46.4278735 ], + [ 7.1966113, 46.4279128 ], + [ 7.1964237, 46.4279754 ], + [ 7.1962453, 46.4280209 ], + [ 7.1960825, 46.4280556 ], + [ 7.1959691, 46.4281004 ], + [ 7.1958062, 46.4281747 ], + [ 7.1957085, 46.4282023 ], + [ 7.1955042, 46.4282091 ], + [ 7.1953415, 46.4282258 ], + [ 7.1951553, 46.4282605 ], + [ 7.1949757, 46.4282718 ], + [ 7.1948702, 46.4283121 ], + [ 7.1947165, 46.4283513 ], + [ 7.1945939, 46.4284194 ], + [ 7.1944152, 46.4285216 ], + [ 7.1941803, 46.428674 ], + [ 7.1938379, 46.4290079 ], + [ 7.1937254, 46.4291543 ], + [ 7.1935542, 46.4293239 ], + [ 7.193425, 46.4294199 ], + [ 7.1932945, 46.4294943 ], + [ 7.1931405, 46.4296073 ], + [ 7.1930191, 46.4296916 ], + [ 7.1929043, 46.4297768 ], + [ 7.1927257, 46.4298394 ], + [ 7.1925392, 46.4299415 ], + [ 7.192328, 46.4300427 ], + [ 7.1921326, 46.4301053 ], + [ 7.1919945, 46.4301338 ], + [ 7.1918161, 46.4301739 ], + [ 7.1916285, 46.430231 ], + [ 7.1914331, 46.4302936 ], + [ 7.1912378, 46.4303165 ], + [ 7.1910908, 46.4303108 ], + [ 7.1909609, 46.4302718 ], + [ 7.1908299, 46.4301924 ], + [ 7.1907003, 46.4300743 ], + [ 7.1906018, 46.4299958 ], + [ 7.1905923, 46.4298095 ], + [ 7.1905603, 46.4296745 ], + [ 7.1904372, 46.4295726 ], + [ 7.1903396, 46.4295733 ], + [ 7.1902419, 46.4296019 ], + [ 7.1900712, 46.4296636 ], + [ 7.1899905, 46.4296814 ], + [ 7.1897955, 46.4296531 ], + [ 7.1896563, 46.429642 ], + [ 7.1894858, 46.4296542 ], + [ 7.189388, 46.4297052 ], + [ 7.1892333, 46.429687799999996 ], + [ 7.1890786, 46.4296551 ], + [ 7.1889082, 46.4296439 ], + [ 7.1887769, 46.4296274 ], + [ 7.188687, 46.4296614 ], + [ 7.1885657, 46.4297232 ], + [ 7.1884846, 46.4298139 ], + [ 7.1883475, 46.429937699999996 ], + [ 7.1881924, 46.429995 ], + [ 7.1881117, 46.4299948 ], + [ 7.1879805, 46.4299612 ], + [ 7.1878011, 46.4299275 ], + [ 7.1875007, 46.4298945 ], + [ 7.18719, 46.4298443 ], + [ 7.1869378, 46.429806 ], + [ 7.1867103, 46.4297668 ], + [ 7.1865385, 46.4297781 ], + [ 7.1864017, 46.4298291 ], + [ 7.1862622, 46.4298971 ], + [ 7.1861003, 46.4300218 ], + [ 7.1859382, 46.4301851 ], + [ 7.1857424, 46.4303214 ], + [ 7.185638, 46.4303779 ], + [ 7.1855223, 46.430356 ], + [ 7.1854575, 46.4303163 ], + [ 7.185377, 46.4302882 ], + [ 7.1852054, 46.4302546 ], + [ 7.1850103, 46.4302379 ], + [ 7.1847982, 46.4302384 ], + [ 7.1846604, 46.4302273 ], + [ 7.1844406, 46.4302169 ], + [ 7.1842285, 46.4302173 ], + [ 7.1840658, 46.430234 ], + [ 7.1838537, 46.4302398 ], + [ 7.183691, 46.4302521 ], + [ 7.1835453, 46.430258 ], + [ 7.1834307, 46.4302749 ], + [ 7.1832761, 46.4302412 ], + [ 7.1831293, 46.4301968 ], + [ 7.182967, 46.4301182 ], + [ 7.1827956, 46.4300503 ], + [ 7.1825759, 46.4300174 ], + [ 7.1823638, 46.4300179 ], + [ 7.182153, 46.4300291 ], + [ 7.1820543, 46.4299839 ], + [ 7.1819883, 46.4299226 ], + [ 7.1818261, 46.4298268 ], + [ 7.1815088, 46.4298099 ], + [ 7.1812801, 46.4297482 ], + [ 7.1810277, 46.4297432 ], + [ 7.1808807, 46.4297329 ], + [ 7.1806777, 46.4297559 ], + [ 7.1805072, 46.4297726 ], + [ 7.1803275, 46.4297955 ], + [ 7.1801324, 46.4297906 ], + [ 7.1799371, 46.4298189 ], + [ 7.1797172, 46.4298247 ], + [ 7.1795546, 46.4298199 ], + [ 7.1793595, 46.429814 ], + [ 7.1791229, 46.4297757 ], + [ 7.1789447, 46.4297753 ], + [ 7.1786674999999995, 46.4297818 ], + [ 7.1784151, 46.4297992 ], + [ 7.1781872, 46.4298338 ], + [ 7.1780245, 46.4298622 ], + [ 7.1778539, 46.429896 ], + [ 7.177634, 46.4298964 ], + [ 7.1774624, 46.4298627 ], + [ 7.1772428999999995, 46.4297956 ], + [ 7.1770636, 46.4297511 ], + [ 7.1768114, 46.4297065 ], + [ 7.1765255, 46.4296446 ], + [ 7.1761029, 46.4295951 ], + [ 7.1757439, 46.4295781 ], + [ 7.175476, 46.4295505 ], + [ 7.1752876, 46.4295005 ], + [ 7.1750757, 46.4294668 ], + [ 7.1749053, 46.4294619 ], + [ 7.1747504, 46.4294786 ], + [ 7.1745877, 46.4295016 ], + [ 7.1744666, 46.4295193 ], + [ 7.1743274, 46.4295244 ], + [ 7.1742142, 46.4295304 ], + [ 7.1740516, 46.4295309 ], + [ 7.1739124, 46.4295198 ], + [ 7.1737823, 46.4295141 ], + [ 7.1735782, 46.4294866 ], + [ 7.173391, 46.4294646 ], + [ 7.1732778, 46.4294643 ], + [ 7.1731308, 46.4294649 ], + [ 7.1729927, 46.4294934 ], + [ 7.1728625, 46.4295272 ], + [ 7.1727244, 46.4295611 ], + [ 7.1726265, 46.4296238 ], + [ 7.1725119, 46.4296524 ], + [ 7.1722842, 46.4296635 ], + [ 7.1720656, 46.4296585 ], + [ 7.171861, 46.4297327 ], + [ 7.171724, 46.4298115 ], + [ 7.171561, 46.4298966 ], + [ 7.1713655, 46.4299528 ], + [ 7.1704289, 46.4299326 ], + [ 7.1704205, 46.4297967 ], + [ 7.1697376, 46.4297645 ], + [ 7.1698101, 46.4295776 ], + [ 7.1695095, 46.4296012 ], + [ 7.1694522, 46.429601 ], + [ 7.1693612, 46.42959 ], + [ 7.1692885, 46.4295674 ], + [ 7.1692405, 46.4295448 ], + [ 7.1691823, 46.4294771 ], + [ 7.1691253, 46.4294095 ], + [ 7.1690271, 46.4292744 ], + [ 7.1689133, 46.4291509 ], + [ 7.1688068, 46.4291056 ], + [ 7.1687341, 46.4290776 ], + [ 7.1686365, 46.4290782 ], + [ 7.1685063, 46.4291067 ], + [ 7.1684007, 46.4291406 ], + [ 7.1682951, 46.4291917 ], + [ 7.1682376, 46.4292428 ], + [ 7.1681489, 46.429293 ], + [ 7.1680187, 46.4293214 ], + [ 7.1678067, 46.429311 ], + [ 7.1671958, 46.4291881 ], + [ 7.1668451, 46.4290865 ], + [ 7.1666748, 46.4290474 ], + [ 7.1665607, 46.4289743 ], + [ 7.1664544, 46.4289012 ], + [ 7.1663481, 46.4288173 ], + [ 7.166259, 46.4286929 ], + [ 7.1661764, 46.4285686 ], + [ 7.1660873, 46.4284226 ], + [ 7.1660369, 46.4283604 ], + [ 7.1659486, 46.4283215 ], + [ 7.165867, 46.4282647 ], + [ 7.165801, 46.4281862 ], + [ 7.1657026, 46.4280961 ], + [ 7.1656221, 46.4280734 ], + [ 7.1654584, 46.4280289 ], + [ 7.1652063, 46.4279617 ], + [ 7.1650025, 46.4278776 ], + [ 7.1646931, 46.4278264 ], + [ 7.1641966, 46.4280024 ], + [ 7.1640182, 46.4280371 ], + [ 7.1638632, 46.4280763 ], + [ 7.1637342, 46.4281102 ], + [ 7.1636275, 46.4281108 ], + [ 7.1635209, 46.4280998 ], + [ 7.1634077, 46.4280941 ], + [ 7.1633025, 46.4280722 ], + [ 7.1631792, 46.4280099 ], + [ 7.1630573, 46.4279421 ], + [ 7.1628778, 46.4279201 ], + [ 7.1627556, 46.427909 ], + [ 7.1626423, 46.4279321 ], + [ 7.1625289, 46.4279768 ], + [ 7.1623985, 46.428034 ], + [ 7.1622356, 46.4280966 ], + [ 7.1620963, 46.4281188 ], + [ 7.1618531, 46.4280966 ], + [ 7.1616984, 46.4280746 ], + [ 7.1615035, 46.4280238 ], + [ 7.1613398, 46.4279793 ], + [ 7.1612343, 46.4280024 ], + [ 7.1611197, 46.4280363 ], + [ 7.1610063, 46.4280756 ], + [ 7.1608345, 46.4280878 ], + [ 7.1606484, 46.428099 ], + [ 7.1604689, 46.4280878 ], + [ 7.1602818, 46.4280486 ], + [ 7.1600857, 46.4279816 ], + [ 7.1599806, 46.4279256 ], + [ 7.1597934, 46.4278972 ], + [ 7.1596544, 46.427869 ], + [ 7.1595804, 46.4278247 ], + [ 7.1594508, 46.4277398 ], + [ 7.1592873, 46.4276666 ], + [ 7.1591248, 46.4276275 ], + [ 7.1589622, 46.4276334 ], + [ 7.1588152, 46.4276222 ], + [ 7.1586931, 46.4275886 ], + [ 7.1585958, 46.4275326 ], + [ 7.1584895, 46.4274766 ], + [ 7.1583506, 46.4274088 ], + [ 7.1581804, 46.4273589 ], + [ 7.1579686, 46.4273251 ], + [ 7.1578139, 46.4273031 ], + [ 7.1576019, 46.4272864 ], + [ 7.1574069, 46.4272526 ], + [ 7.1570974, 46.4272473 ], + [ 7.1569024, 46.4272199 ], + [ 7.1567385, 46.4272141 ], + [ 7.1565263, 46.4272369 ], + [ 7.1564052, 46.42726 ], + [ 7.1562504, 46.4272659 ], + [ 7.1560956000000004, 46.4272601 ], + [ 7.1559822, 46.4272886 ], + [ 7.1558428, 46.4273288 ], + [ 7.1557373, 46.4273627 ], + [ 7.1555915, 46.427374 ], + [ 7.155412, 46.4273745 ], + [ 7.155152, 46.4273351 ], + [ 7.154867, 46.4273587 ], + [ 7.1545991, 46.4273472 ], + [ 7.1543454, 46.4273484 ], + [ 7.1541178, 46.4273316 ], + [ 7.1539302, 46.427377 ], + [ 7.1536465, 46.4273889 ], + [ 7.1535401, 46.4273383 ], + [ 7.1534258, 46.4273047 ], + [ 7.153231, 46.4272538 ], + [ 7.1530518, 46.4271922 ], + [ 7.1528229, 46.4271817 ], + [ 7.1527739, 46.4270971 ], + [ 7.1524085, 46.4270691 ], + [ 7.1523823, 46.4266004 ], + [ 7.1521874, 46.4265558 ], + [ 7.1521778, 46.4263984 ], + [ 7.1520726, 46.4263702 ], + [ 7.1518762, 46.4263706 ], + [ 7.1517303, 46.4264044 ], + [ 7.1507151, 46.4269812 ], + [ 7.1507303, 46.4268238 ], + [ 7.1506336, 46.426891 ], + [ 7.1505436, 46.4269421 ], + [ 7.1504132, 46.4269993 ], + [ 7.150275, 46.4270556 ], + [ 7.1501043, 46.4271119 ], + [ 7.149901, 46.4271743 ], + [ 7.1496888, 46.4272088 ], + [ 7.1495104, 46.4272318 ], + [ 7.1495183, 46.4272147 ], + [ 7.1495342, 46.4271581 ], + [ 7.1495672, 46.4270853 ], + [ 7.1496313, 46.4270171 ], + [ 7.1496238, 46.4269604 ], + [ 7.1495184, 46.4269556 ], + [ 7.1487041, 46.427182 ], + [ 7.1487938, 46.4274413 ], + [ 7.1486399, 46.4275093 ], + [ 7.1486406, 46.4276164 ], + [ 7.148258, 46.427888 ], + [ 7.1481351, 46.4277698 ], + [ 7.1479313, 46.4276802 ], + [ 7.147884, 46.4277646 ], + [ 7.1478187, 46.4278158 ], + [ 7.1477208, 46.4278776 ], + [ 7.147688, 46.4279171 ], + [ 7.1477371, 46.4279964 ], + [ 7.1478029, 46.4280811 ], + [ 7.1477623, 46.4281377 ], + [ 7.1476649, 46.4281095 ], + [ 7.1475415, 46.4280759 ], + [ 7.1473062, 46.4280312 ], + [ 7.14711, 46.4280028 ], + [ 7.1470214, 46.428026 ], + [ 7.146948, 46.4281158 ], + [ 7.1468747, 46.428201 ], + [ 7.1467936, 46.4282908 ], + [ 7.1466474, 46.4283705 ], + [ 7.1467211, 46.4284606 ], + [ 7.1467948, 46.4285508 ], + [ 7.1468191, 46.42863 ], + [ 7.1468277, 46.42872 ], + [ 7.1468687, 46.4288379 ], + [ 7.1468762, 46.4288892 ], + [ 7.1468929, 46.4289342 ], + [ 7.1469251, 46.4289964 ], + [ 7.1469740999999996, 46.4290694 ], + [ 7.1470244, 46.4291595 ], + [ 7.1470405, 46.4293007 ], + [ 7.1470735, 46.4294475 ], + [ 7.1470899, 46.4295599 ], + [ 7.1470579, 46.4296957 ], + [ 7.1470003, 46.4297522 ], + [ 7.1469275, 46.429752 ], + [ 7.1468951, 46.4297241 ], + [ 7.1468942, 46.4296449 ], + [ 7.1469193, 46.4295829 ], + [ 7.1469356, 46.429448 ], + [ 7.1469506, 46.4293347 ], + [ 7.1469344, 46.4291934 ], + [ 7.1468686, 46.4290925 ], + [ 7.1467795, 46.4289735 ], + [ 7.1466563, 46.4289066 ], + [ 7.1465756, 46.4289118 ], + [ 7.146535, 46.4289459 ], + [ 7.1464788, 46.4290024 ], + [ 7.1464213, 46.4290419 ], + [ 7.1463159, 46.4290479 ], + [ 7.1462184, 46.4290368 ], + [ 7.1461363, 46.4290654 ], + [ 7.1459658, 46.4290821 ], + [ 7.1457616999999995, 46.4290429 ], + [ 7.1455174, 46.4289981 ], + [ 7.1451991, 46.42892 ], + [ 7.145134, 46.4289315 ], + [ 7.1450778, 46.4289709 ], + [ 7.1449722, 46.4290165 ], + [ 7.1448903, 46.4289992 ], + [ 7.1448411, 46.4289604 ], + [ 7.1448169, 46.4288641 ], + [ 7.144768, 46.428774 ], + [ 7.144719, 46.4286893 ], + [ 7.1446531, 46.4286046 ], + [ 7.1445558, 46.4285486 ], + [ 7.1444495, 46.4284871 ], + [ 7.1443277, 46.4283914 ], + [ 7.1442058, 46.4283174 ], + [ 7.1440589, 46.4283071 ], + [ 7.1439936, 46.4283573 ], + [ 7.1439776, 46.4284202 ], + [ 7.1440032, 46.4285039 ], + [ 7.1440509, 46.4285778 ], + [ 7.1441168, 46.4286626 ], + [ 7.1442633, 46.4287466 ], + [ 7.1443929, 46.4288477 ], + [ 7.1445238, 46.4289326 ], + [ 7.1446301, 46.4290057 ], + [ 7.1446869, 46.4290904 ], + [ 7.1447125, 46.4291688 ], + [ 7.1447119, 46.4292704 ], + [ 7.1447206, 46.429355 ], + [ 7.1446549, 46.4294628 ], + [ 7.1445663, 46.4295021 ], + [ 7.144509, 46.4294966 ], + [ 7.1444273, 46.4294568 ], + [ 7.1443377, 46.4294233 ], + [ 7.144265, 46.4293952 ], + [ 7.1442328, 46.4293393 ], + [ 7.1442318, 46.4292773 ], + [ 7.1442309999999996, 46.4291981 ], + [ 7.1441665, 46.4290963 ], + [ 7.1440524, 46.4290123 ], + [ 7.1439221, 46.429057 ], + [ 7.1437996, 46.4290917 ], + [ 7.143711, 46.429114 ], + [ 7.143637, 46.4290976 ], + [ 7.1435318, 46.4290523 ], + [ 7.1434332, 46.4290071 ], + [ 7.1432864, 46.428968 ], + [ 7.1431486, 46.4289515 ], + [ 7.1430508, 46.4289908 ], + [ 7.1429933, 46.4290302 ], + [ 7.1428304, 46.4290928 ], + [ 7.1427182, 46.4291555 ], + [ 7.1425307, 46.4291838 ], + [ 7.1423107, 46.4292012 ], + [ 7.1420673, 46.4292239 ], + [ 7.1416673, 46.4293371 ], + [ 7.1414404, 46.4294337 ], + [ 7.1413905, 46.4295181 ], + [ 7.141399, 46.4296144 ], + [ 7.1413595, 46.4297105 ], + [ 7.1412538, 46.4297723 ], + [ 7.1411234, 46.4298233 ], + [ 7.1410333, 46.4298797 ], + [ 7.1409368, 46.4299199 ], + [ 7.1408388, 46.4300042 ], + [ 7.1407576, 46.4300895 ], + [ 7.1406599, 46.4301234 ], + [ 7.1405543, 46.4301519 ], + [ 7.1403994, 46.4301686 ], + [ 7.1402042, 46.4301915 ], + [ 7.1400495, 46.4301641 ], + [ 7.1399429, 46.4301413 ], + [ 7.139822, 46.4301248 ], + [ 7.1396663, 46.4300515 ], + [ 7.1395691, 46.4299784 ], + [ 7.1394707, 46.429899 ], + [ 7.1393241, 46.4298266 ], + [ 7.1392512, 46.4298435 ], + [ 7.1391377, 46.4298999 ], + [ 7.1390319, 46.4299617 ], + [ 7.1389419, 46.4300019 ], + [ 7.1387881, 46.4300528 ], + [ 7.1386489, 46.4300641 ], + [ 7.1385109, 46.4300754 ], + [ 7.1383717, 46.4300814 ], + [ 7.1381933, 46.430104299999996 ], + [ 7.1380552, 46.4301327 ], + [ 7.1378845, 46.4301898 ], + [ 7.1377619, 46.4302462 ], + [ 7.1376564, 46.4302576 ], + [ 7.1375094, 46.4302581 ], + [ 7.1373625, 46.4302352 ], + [ 7.1372579, 46.4303312 ], + [ 7.1371443, 46.4304109 ], + [ 7.1370385, 46.4304781 ], + [ 7.1369081, 46.430529 ], + [ 7.136753, 46.4305808 ], + [ 7.1366476, 46.4305922 ], + [ 7.1366318, 46.4306318 ], + [ 7.1365987, 46.4307333 ], + [ 7.1366072, 46.4308341 ], + [ 7.1366326, 46.4309529 ], + [ 7.1367048, 46.4310601 ], + [ 7.1367952, 46.4311782 ], + [ 7.1369337999999996, 46.4312964 ], + [ 7.1370398999999995, 46.4313921 ], + [ 7.1370887, 46.4315164 ], + [ 7.1370319, 46.4316628 ], + [ 7.1369919, 46.4318327 ], + [ 7.1378573, 46.4329766 ], + [ 7.1388293, 46.4329513 ], + [ 7.1392574, 46.4329407 ], + [ 7.1395916, 46.4329794 ], + [ 7.1400882, 46.4330464 ], + [ 7.1403405, 46.4330632 ], + [ 7.1406095, 46.4331251 ], + [ 7.1408785, 46.4331861 ], + [ 7.1411149, 46.4332542 ], + [ 7.1413422, 46.4333214 ], + [ 7.141546, 46.4334163 ], + [ 7.1417095, 46.4334842 ], + [ 7.1419534, 46.4336135 ], + [ 7.1421662, 46.4337148 ], + [ 7.1424426, 46.4338613 ], + [ 7.1427447, 46.4340582 ], + [ 7.1430457, 46.4341984 ], + [ 7.1434372, 46.4344684 ], + [ 7.1436008, 46.4345309 ], + [ 7.1437958, 46.4345584 ], + [ 7.1440001, 46.434558 ], + [ 7.14413, 46.4345863 ], + [ 7.1443093, 46.4346308 ], + [ 7.1445612, 46.4347268 ], + [ 7.1447405, 46.434783 ], + [ 7.1450093, 46.4348836 ], + [ 7.1453106, 46.4349797 ], + [ 7.1454651, 46.4350413 ], + [ 7.1456526, 46.4350184 ], + [ 7.1458231, 46.4350125 ], + [ 7.146044, 46.4350689 ], + [ 7.1462061, 46.435153 ], + [ 7.1463128, 46.4351586 ], + [ 7.1464261, 46.4351302 ], + [ 7.1465889, 46.4351072 ], + [ 7.1467201, 46.4351408 ], + [ 7.1468748, 46.4351799 ], + [ 7.1469801, 46.4351856 ], + [ 7.1471431, 46.435123 ], + [ 7.147436, 46.4350887 ], + [ 7.1477055, 46.435066 ], + [ 7.1479565, 46.4350882 ], + [ 7.1482099, 46.4351383 ], + [ 7.1484373, 46.4352055 ], + [ 7.1487151, 46.4353124 ], + [ 7.1490086, 46.4354193 ], + [ 7.1493512, 46.4355992 ], + [ 7.1496604, 46.4356773 ], + [ 7.1498959, 46.435677 ], + [ 7.1501158, 46.4356767 ], + [ 7.1503279, 46.4356763 ], + [ 7.1505633, 46.4356931 ], + [ 7.1508155, 46.4357324 ], + [ 7.1509871, 46.4357653 ], + [ 7.1511419, 46.435771 ], + [ 7.1512564, 46.4357767 ], + [ 7.1513866, 46.4357483 ], + [ 7.1515001, 46.4356919 ], + [ 7.1516383, 46.435641 ], + [ 7.1517596, 46.4355837 ], + [ 7.1519473, 46.4355329 ], + [ 7.1521022, 46.4355153 ], + [ 7.1523702, 46.4355268 ], + [ 7.1527213, 46.4355538 ], + [ 7.1532584, 46.4356154 ], + [ 7.153495, 46.435643 ], + [ 7.1537068, 46.4356939 ], + [ 7.1538209, 46.4357724 ], + [ 7.1539348, 46.4358798 ], + [ 7.1540331, 46.4359979 ], + [ 7.1540495, 46.4360933 ], + [ 7.1540413, 46.4361778 ], + [ 7.1540006, 46.4362515 ], + [ 7.1539274, 46.4362971 ], + [ 7.1538217, 46.4363706 ], + [ 7.1537002, 46.4364666 ], + [ 7.153602, 46.4365743 ], + [ 7.1535051, 46.4366982 ], + [ 7.1535146, 46.4368619 ], + [ 7.1536036, 46.4370025 ], + [ 7.1537095, 46.4371548 ], + [ 7.1538403, 46.437273 ], + [ 7.1539542, 46.4373974 ], + [ 7.1541589, 46.4375544 ], + [ 7.1544519, 46.4377576 ], + [ 7.1548675, 46.4379088 ], + [ 7.1547055, 46.4380281 ], + [ 7.1545423, 46.4381356 ], + [ 7.1544208, 46.4382316 ], + [ 7.1542655, 46.438322 ], + [ 7.1540713, 46.4383845 ], + [ 7.1539006, 46.4384354 ], + [ 7.1537218, 46.4385375 ], + [ 7.1536483, 46.438656 ], + [ 7.1536081, 46.4388754 ], + [ 7.1536002, 46.4391408 ], + [ 7.1536262, 46.4393837 ], + [ 7.1536100000000005, 46.4395024 ], + [ 7.153561, 46.4396543 ], + [ 7.1534874, 46.4398017 ], + [ 7.153407, 46.4399931 ], + [ 7.1533419, 46.4402475 ], + [ 7.1532457, 46.4404784 ], + [ 7.1531407, 46.4406428 ], + [ 7.1530265, 46.440835 ], + [ 7.1529542, 46.440976 ], + [ 7.1527995, 46.441179 ], + [ 7.152662, 46.4413486 ], + [ 7.1525568, 46.441558 ], + [ 7.1524997, 46.4417719 ], + [ 7.1524675, 46.4419634 ], + [ 7.1524599, 46.4421559 ], + [ 7.1524678999999995, 46.4423817 ], + [ 7.1525184, 46.4426688 ], + [ 7.1528287, 46.4433002 ], + [ 7.1530328, 46.4435706 ], + [ 7.1532698, 46.4437907 ], + [ 7.1533594, 46.4438296 ], + [ 7.1535062, 46.443880300000004 ], + [ 7.1537415, 46.4439142 ], + [ 7.1540184, 46.4439815 ], + [ 7.1544018, 46.4440652 ], + [ 7.1546463, 46.4441045 ], + [ 7.1549723, 46.4442277 ], + [ 7.1553074, 46.4443455 ], + [ 7.1556323, 46.4444182 ], + [ 7.1560641, 46.4444742 ], + [ 7.1565286, 46.4444906 ], + [ 7.1568616, 46.4445122 ], + [ 7.1570012, 46.444687 ], + [ 7.157156, 46.4447153 ], + [ 7.1573264, 46.4447202 ], + [ 7.1574902, 46.4447539 ], + [ 7.1575798, 46.4447937 ], + [ 7.1576862, 46.4448551 ], + [ 7.1578327999999996, 46.4449455 ], + [ 7.1579791, 46.4450862 ], + [ 7.1580606, 46.44517 ], + [ 7.158224, 46.4452829 ], + [ 7.1584029, 46.4454183 ], + [ 7.1585663, 46.4455365 ], + [ 7.1586892, 46.4456663 ], + [ 7.1588526, 46.4457783 ], + [ 7.1589589, 46.4458577 ], + [ 7.1589989, 46.4459307 ], + [ 7.1589672, 46.4460269 ], + [ 7.1589588, 46.4461339 ], + [ 7.1589674, 46.4462239 ], + [ 7.159058, 46.4463311 ], + [ 7.1591224, 46.4464491 ], + [ 7.1591232, 46.4465508 ], + [ 7.159115, 46.4466353 ], + [ 7.1590663, 46.4467261 ], + [ 7.1589615, 46.446867 ], + [ 7.1589205, 46.4469911 ], + [ 7.1588638, 46.4471322 ], + [ 7.1588396, 46.4472958 ], + [ 7.1588973, 46.447448 ], + [ 7.1589707, 46.4476011 ], + [ 7.1591832, 46.4477753 ], + [ 7.1593944, 46.4479557 ], + [ 7.1596733, 46.4481354 ], + [ 7.1600146, 46.4483377 ], + [ 7.1604066, 46.4485348 ], + [ 7.1606922, 46.4486642 ], + [ 7.1608468, 46.4487149 ], + [ 7.1610342, 46.4487253 ], + [ 7.1613023, 46.4487196 ], + [ 7.1615143, 46.4487471 ], + [ 7.1617431, 46.4487981 ], + [ 7.1619872, 46.4489048 ], + [ 7.162264, 46.4489829 ], + [ 7.1625906, 46.4490052 ], + [ 7.1627621, 46.4490551 ], + [ 7.1627526, 46.4491397 ], + [ 7.162696, 46.4492583 ], + [ 7.1625581, 46.4495017 ], + [ 7.162486, 46.4495978 ], + [ 7.1625181, 46.4496824 ], + [ 7.1625438, 46.4497608 ], + [ 7.1626904, 46.4498511 ], + [ 7.1628046, 46.4499017 ], + [ 7.1629829, 46.4499067 ], + [ 7.163178, 46.4499296 ], + [ 7.1633012, 46.4500253 ], + [ 7.1633751, 46.4500758 ], + [ 7.1635377, 46.4501032 ], + [ 7.1636754, 46.4501368 ], + [ 7.1637652, 46.4501371 ], + [ 7.1638954, 46.4501428 ], + [ 7.1640998, 46.4503736 ], + [ 7.1642395, 46.4505367 ], + [ 7.1644517, 46.4507846 ], + [ 7.1645902, 46.4509424 ], + [ 7.1648096, 46.4510437 ], + [ 7.1650138, 46.4510828 ], + [ 7.1653065, 46.4511105 ], + [ 7.1656003, 46.4511607 ], + [ 7.1656418, 46.4512004 ], + [ 7.1657805, 46.4513123 ], + [ 7.1659025, 46.4513854 ], + [ 7.1660246, 46.4514361 ], + [ 7.1661792, 46.4514815 ], + [ 7.1662858, 46.4515096 ], + [ 7.1663181, 46.4515484 ], + [ 7.1664075, 46.4516277 ], + [ 7.1664902999999995, 46.4517287 ], + [ 7.1666771, 46.451847 ], + [ 7.1668967, 46.4519204 ], + [ 7.1671175, 46.4520154 ], + [ 7.1674033, 46.452133 ], + [ 7.167598, 46.4522288 ], + [ 7.1677042, 46.4523307 ], + [ 7.1677453, 46.4524379 ], + [ 7.1678435, 46.4525838 ], + [ 7.1679495, 46.4527307 ], + [ 7.1680973, 46.4528435 ], + [ 7.1682284, 46.4529158 ], + [ 7.1683987, 46.4529666 ], + [ 7.1685378, 46.4529948 ], + [ 7.168717, 46.4530681 ], + [ 7.1688714000000004, 46.4531629 ], + [ 7.1690437, 46.4533207 ], + [ 7.1692055, 46.453501 ], + [ 7.1693089, 46.4536641 ], + [ 7.1693954, 46.4538002 ], + [ 7.1696542, 46.4535741 ], + [ 7.169752, 46.4535338 ], + [ 7.1698665, 46.4535395 ], + [ 7.1700371, 46.4535336 ], + [ 7.1702411999999995, 46.4535728 ], + [ 7.1704362, 46.453629 ], + [ 7.1706894, 46.4537412 ], + [ 7.1709257, 46.4538704 ], + [ 7.1710803, 46.4539211 ], + [ 7.1712026, 46.4539268 ], + [ 7.171325, 46.4539208 ], + [ 7.171471, 46.453886 ], + [ 7.1716259, 46.453881 ], + [ 7.171765, 46.4538975 ], + [ 7.1718782, 46.4539248 ], + [ 7.1719759, 46.4538971 ], + [ 7.1721062, 46.453874 ], + [ 7.1723102, 46.4539303 ], + [ 7.1725636, 46.4540307 ], + [ 7.1728569, 46.4541889 ], + [ 7.1729549, 46.4541207 ], + [ 7.1730595, 46.454013 ], + [ 7.1731251, 46.4539061 ], + [ 7.1732389, 46.4537931 ], + [ 7.1733694, 46.4537367 ], + [ 7.1735391, 46.4536345 ], + [ 7.1736766, 46.4534594 ], + [ 7.1738644, 46.4533744 ], + [ 7.1739789, 46.4533801 ], + [ 7.1742066, 46.4534076 ], + [ 7.1744094, 46.4534468 ], + [ 7.1745071, 46.4534299 ], + [ 7.1745895, 46.4533446 ], + [ 7.1746785, 46.4532603 ], + [ 7.174817, 46.4531527 ], + [ 7.1749462, 46.4530675 ], + [ 7.1750686, 46.4530615 ], + [ 7.1752636, 46.4531069 ], + [ 7.1753429, 46.4531368 ], + [ 7.1756884, 46.4532698 ], + [ 7.1759897, 46.4534154 ], + [ 7.1760479, 46.4534893 ], + [ 7.1760227, 46.4535792 ], + [ 7.1759907, 46.4537311 ], + [ 7.1759508, 46.4539235 ], + [ 7.1759097, 46.4540755 ], + [ 7.1758049, 46.4542003 ], + [ 7.1756834, 46.4542962 ], + [ 7.1755692, 46.4545056 ], + [ 7.1754639, 46.4547365 ], + [ 7.1753746, 46.4549117 ], + [ 7.1751966, 46.4551038 ], + [ 7.1748549, 46.4552514 ], + [ 7.1750106, 46.4553355 ], + [ 7.1751237, 46.4553753 ], + [ 7.1752458, 46.4554197 ], + [ 7.1754668, 46.4554876 ], + [ 7.1756787, 46.455543 ], + [ 7.1758577, 46.4556559 ], + [ 7.1759966, 46.4557453 ], + [ 7.1761839, 46.4557619 ], + [ 7.1764282999999995, 46.4558299 ], + [ 7.1765909, 46.4558465 ], + [ 7.1767131, 46.4558801 ], + [ 7.1768442, 46.4559532 ], + [ 7.1769752, 46.4560597 ], + [ 7.1771295, 46.4561779 ], + [ 7.1773007, 46.4562961 ], + [ 7.1775134, 46.456454 ], + [ 7.1778314, 46.4566338 ], + [ 7.1781248, 46.4567964 ], + [ 7.1786313, 46.4570332 ], + [ 7.1796921, 46.4575898 ], + [ 7.1799854, 46.4577641 ], + [ 7.1802946, 46.4578925 ], + [ 7.180556, 46.4579435 ], + [ 7.1807679, 46.4579935 ], + [ 7.18089, 46.4580495 ], + [ 7.1810368, 46.4581227 ], + [ 7.1812483, 46.4582518 ], + [ 7.1815259, 46.4584495 ], + [ 7.1817543, 46.4586119 ], + [ 7.1819916, 46.458787 ], + [ 7.1821395, 46.4589051 ], + [ 7.1823265, 46.4589838 ], + [ 7.1824733, 46.459057 ], + [ 7.1826437, 46.4590844 ], + [ 7.1830925, 46.4591349 ], + [ 7.1832395, 46.4591622 ], + [ 7.1833200999999995, 46.4591849 ], + [ 7.1834589, 46.459286 ], + [ 7.183638, 46.4593925 ], + [ 7.1837691, 46.459472 ], + [ 7.1838508, 46.459545 ], + [ 7.1839245, 46.4596351 ], + [ 7.1840881, 46.4597417 ], + [ 7.1842671, 46.4598716 ], + [ 7.1844059, 46.4599781 ], + [ 7.184594, 46.460108 ], + [ 7.1846915, 46.4601415 ], + [ 7.1848139, 46.4601355 ], + [ 7.1849125, 46.4601915 ], + [ 7.1850177, 46.4602538 ], + [ 7.1852459, 46.460445 ], + [ 7.1853859, 46.4605578 ], + [ 7.1855233, 46.4606984 ], + [ 7.185606, 46.4608164 ], + [ 7.1856393, 46.4609461 ], + [ 7.1857039, 46.4610479 ], + [ 7.1858193, 46.4611264 ], + [ 7.1858425, 46.4611939 ], + [ 7.1858357, 46.4612505 ], + [ 7.1858678, 46.4613352 ], + [ 7.1859327, 46.4613911 ], + [ 7.185991, 46.4614479 ], + [ 7.1860648, 46.4615263 ], + [ 7.1861462, 46.461656 ], + [ 7.1861131, 46.4617801 ], + [ 7.1860982, 46.4619105 ], + [ 7.1861957, 46.4619386 ], + [ 7.1863427, 46.4619488 ], + [ 7.1865055, 46.4619321 ], + [ 7.1867009, 46.4618975 ], + [ 7.1868715, 46.4618916 ], + [ 7.1870587, 46.4619477 ], + [ 7.18719, 46.4619813 ], + [ 7.1873202, 46.461987 ], + [ 7.1874177, 46.461998 ], + [ 7.1874986, 46.4619694 ], + [ 7.1876379, 46.461958 ], + [ 7.187841, 46.461963 ], + [ 7.1880607, 46.4620138 ], + [ 7.1882244, 46.4620871 ], + [ 7.1883868, 46.4621657 ], + [ 7.1885906, 46.4622777 ], + [ 7.188788, 46.4623906 ], + [ 7.1889425, 46.4624746 ], + [ 7.1890646, 46.4625306 ], + [ 7.1892363, 46.4625589 ], + [ 7.1893741, 46.4625979 ], + [ 7.1894559, 46.4626367 ], + [ 7.1896196, 46.4627216 ], + [ 7.1897495, 46.4627777 ], + [ 7.1898638, 46.462822 ], + [ 7.1900914, 46.4628783 ], + [ 7.1906467, 46.4630019 ], + [ 7.1909393999999995, 46.463052 ], + [ 7.1910292, 46.4630405 ], + [ 7.1910283, 46.4629721 ], + [ 7.1910287, 46.4628822 ], + [ 7.1909954, 46.4627579 ], + [ 7.1909295, 46.4626454 ], + [ 7.1909243, 46.4626364 ], + [ 7.1908314, 46.4624706 ], + [ 7.1907501, 46.4623076 ], + [ 7.1906934, 46.4621888 ], + [ 7.1906512, 46.4620312 ], + [ 7.1906506, 46.4618621 ], + [ 7.1906086, 46.4616587 ], + [ 7.1905519, 46.4615345 ], + [ 7.1904706, 46.4613886 ], + [ 7.1903958, 46.4612301 ], + [ 7.1903792, 46.4611518 ], + [ 7.1903708, 46.4610051 ], + [ 7.1904107, 46.4608181 ], + [ 7.1904688, 46.4606491 ], + [ 7.1905492, 46.4604289 ], + [ 7.1906701, 46.4601692 ], + [ 7.190881, 46.4598809 ], + [ 7.1910516, 46.4595934 ], + [ 7.191214, 46.4593725 ], + [ 7.1914582, 46.459203 ], + [ 7.1915548, 46.4591465 ], + [ 7.1915708, 46.4590449 ], + [ 7.1915298, 46.4589207 ], + [ 7.1915291, 46.4587848 ], + [ 7.1915295, 46.4586832 ], + [ 7.1915861, 46.4585646 ], + [ 7.1916674, 46.4584235 ], + [ 7.1917563, 46.4583337 ], + [ 7.1918051, 46.4582088 ], + [ 7.1917886, 46.458108 ], + [ 7.1919822, 46.4578926 ], + [ 7.1922593, 46.4579372 ], + [ 7.1923079, 46.4578357 ], + [ 7.1930178, 46.4580261 ], + [ 7.1932284, 46.4577999 ], + [ 7.1932936, 46.4577722 ], + [ 7.1933502, 46.4576248 ], + [ 7.193398, 46.4574162 ], + [ 7.1934047, 46.4570887 ], + [ 7.19338, 46.4568008 ], + [ 7.1933462, 46.4565075 ], + [ 7.1932978, 46.4562708 ], + [ 7.1932309, 46.4560853 ], + [ 7.1931741, 46.455989 ], + [ 7.1932473, 46.4559208 ], + [ 7.1933606, 46.4559156 ], + [ 7.1935727, 46.455926 ], + [ 7.1938097, 46.4559085 ], + [ 7.1939724, 46.4559088 ], + [ 7.194126, 46.4558912 ], + [ 7.1942899, 46.4559302 ], + [ 7.1944199, 46.4559638 ], + [ 7.1945265, 46.4559865 ], + [ 7.1946566, 46.4559976 ], + [ 7.194835, 46.45598 ], + [ 7.1950068, 46.4559794 ], + [ 7.1951864, 46.4559906 ], + [ 7.1954049, 46.4560298 ], + [ 7.1956182, 46.4560689 ], + [ 7.1957976, 46.456108 ], + [ 7.1959509, 46.4561866 ], + [ 7.196155, 46.4562374 ], + [ 7.1964645, 46.4563037 ], + [ 7.1967428, 46.4563601 ], + [ 7.1969706, 46.4563597 ], + [ 7.197231, 46.4563422 ], + [ 7.197728, 46.4563802 ], + [ 7.198087, 46.4564475 ], + [ 7.1983392, 46.4565146 ], + [ 7.1984771, 46.4565203 ], + [ 7.198575, 46.4564576 ], + [ 7.1987943, 46.4563276 ], + [ 7.1991286, 46.4563661 ], + [ 7.1994136, 46.4563829 ], + [ 7.1994864, 46.4563992 ], + [ 7.1995122, 46.4564559 ], + [ 7.1995198, 46.4565009 ], + [ 7.1995115, 46.456608 ], + [ 7.1995045, 46.4567267 ], + [ 7.1994813, 46.4569578 ], + [ 7.1997336, 46.4570195 ], + [ 7.1997917, 46.4571267 ], + [ 7.2000273, 46.4571146 ], + [ 7.1999707, 46.457262 ], + [ 7.2000928, 46.4573351 ], + [ 7.2003372, 46.4574022 ], + [ 7.2009897, 46.4576096 ], + [ 7.201095, 46.4576287 ], + [ 7.2012017, 46.4576487 ], + [ 7.2013972, 46.4575862 ], + [ 7.2016409, 46.457512 ], + [ 7.2018365, 46.4574387 ], + [ 7.2020216, 46.457386 ], + [ 7.202048, 46.4573024 ], + [ 7.2021292, 46.4571784 ], + [ 7.202152, 46.4570201 ], + [ 7.2021438, 46.4568231 ], + [ 7.2021926, 46.4566757 ], + [ 7.2023629, 46.4564161 ], + [ 7.2024105, 46.4562578 ], + [ 7.2025243, 46.4561393 ], + [ 7.202581, 46.4559703 ], + [ 7.2026209, 46.4557779 ], + [ 7.2026282, 46.4555863 ], + [ 7.2026769999999996, 46.4554281 ], + [ 7.2027743, 46.455225 ], + [ 7.2028713, 46.4550552 ], + [ 7.2029266, 46.4549024 ], + [ 7.2028946, 46.4547953 ], + [ 7.202796, 46.4547114 ], + [ 7.2026661, 46.4546553 ], + [ 7.2025036, 46.4546163 ], + [ 7.2021358, 46.4544869 ], + [ 7.2017211, 46.4543691 ], + [ 7.2013376, 46.4542738 ], + [ 7.2007588, 46.4541683 ], + [ 7.2004247, 46.4540902 ], + [ 7.2001712, 46.454006 ], + [ 7.1999674, 46.4538823 ], + [ 7.1996909, 46.4537189 ], + [ 7.1993796, 46.4534772 ], + [ 7.1990696, 46.4532463 ], + [ 7.1988012, 46.4530217 ], + [ 7.1985068, 46.4527683 ], + [ 7.1983021, 46.4525708 ], + [ 7.1981144, 46.4523456 ], + [ 7.1979759, 46.4521707 ], + [ 7.1979087, 46.4520582 ], + [ 7.1978283, 46.4519797 ], + [ 7.1977298, 46.4519004 ], + [ 7.1976237, 46.4517544 ], + [ 7.1974931, 46.4515742 ], + [ 7.1973446, 46.4512977 ], + [ 7.1972391, 46.4510213 ], + [ 7.1971556, 46.4507963 ], + [ 7.1971072, 46.4505596 ], + [ 7.1971147, 46.4503275 ], + [ 7.1971376, 46.4501476 ], + [ 7.1972429, 46.4498987 ], + [ 7.1973724, 46.4497352 ], + [ 7.1974783, 46.4496275 ], + [ 7.1975103, 46.4494756 ], + [ 7.1974939, 46.4493397 ], + [ 7.1974361, 46.4491821 ], + [ 7.1973951, 46.44903 ], + [ 7.1973451, 46.4488662 ], + [ 7.1973526, 46.4486521 ], + [ 7.1974338, 46.4485272 ], + [ 7.1975307, 46.4484033 ], + [ 7.1975065, 46.4482674 ], + [ 7.1974329, 46.448144 ], + [ 7.1973918, 46.4480306 ], + [ 7.1972529, 46.4479349 ], + [ 7.1970646, 46.4478455 ], + [ 7.1968453, 46.4477164 ], + [ 7.1966985, 46.4476432 ], + [ 7.1965104, 46.4475142 ], + [ 7.1963146, 46.4473671 ], + [ 7.196168, 46.4472606 ], + [ 7.1960864, 46.4471705 ], + [ 7.1960362, 46.4470409 ], + [ 7.1959719, 46.4468716 ], + [ 7.1958649, 46.4466519 ], + [ 7.1957824, 46.4464772 ], + [ 7.1957083, 46.4461784 ], + [ 7.1956429, 46.4459417 ], + [ 7.1956414, 46.4457159 ], + [ 7.1956653, 46.4455972 ], + [ 7.1957544, 46.4454615 ], + [ 7.1959335, 46.4452919 ], + [ 7.1960225, 46.4451787 ], + [ 7.1961361, 46.4450773 ], + [ 7.1961926, 46.4449641 ], + [ 7.1962166, 46.44484 ], + [ 7.1962093, 46.444733 ], + [ 7.1961433, 46.4446536 ], + [ 7.1960864, 46.4445582 ], + [ 7.1961427, 46.4444962 ], + [ 7.1962081, 46.4444226 ], + [ 7.1963217, 46.4443266 ], + [ 7.1964263, 46.4442189 ], + [ 7.1965076, 46.4440886 ], + [ 7.1965315, 46.4439816 ], + [ 7.1965072, 46.4438745 ], + [ 7.1964258, 46.4437565 ], + [ 7.1963521, 46.4436547 ], + [ 7.1962705, 46.4435592 ], + [ 7.196189, 46.4434465 ], + [ 7.196188, 46.4433899 ], + [ 7.1962533, 46.4433387 ], + [ 7.1963018, 46.4432435 ], + [ 7.1963087, 46.4431751 ], + [ 7.1963011, 46.443113 ], + [ 7.1963496, 46.443034 ], + [ 7.1964475, 46.4429667 ], + [ 7.1966419, 46.4428646 ], + [ 7.1968297, 46.4427795 ], + [ 7.196658, 46.4427513 ], + [ 7.1964864, 46.4427239 ], + [ 7.1963004, 46.4426902 ], + [ 7.1960884, 46.442679 ], + [ 7.1959662, 46.44264 ], + [ 7.1959171, 46.4425617 ], + [ 7.1958521, 46.4425444 ], + [ 7.195713, 46.4425226 ], + [ 7.1955988, 46.4424602 ], + [ 7.1954364, 46.4423987 ], + [ 7.194817, 46.4424001 ], + [ 7.1948246, 46.4421572 ], + [ 7.1948733, 46.4420215 ], + [ 7.19497, 46.4419254 ], + [ 7.1950916, 46.4418016 ], + [ 7.1952134, 46.4416426 ], + [ 7.1953104, 46.4414791 ], + [ 7.1953188, 46.4413379 ], + [ 7.1952197, 46.4411128 ], + [ 7.1950969, 46.4409209 ], + [ 7.1950078, 46.4407633 ], + [ 7.194958, 46.4406166 ], + [ 7.194951, 46.4406149 ], + [ 7.1936867, 46.437605 ], + [ 7.1931456, 46.4363167 ], + [ 7.1925415, 46.4352231 ], + [ 7.1928173, 46.4337612 ], + [ 7.1932421, 46.4333744 ], + [ 7.1948266, 46.4324077 ], + [ 7.195541, 46.4316273 ], + [ 7.1960728, 46.4313406 ], + [ 7.1960774, 46.4313381 ], + [ 7.1960788, 46.4313378 ], + [ 7.1960834, 46.4313354 ], + [ 7.196553, 46.431225 ], + [ 7.1969236, 46.4306065 ], + [ 7.1983625, 46.4298567 ], + [ 7.1991499, 46.4292621 ], + [ 7.1997148, 46.4285934 ], + [ 7.199928, 46.4281949 ], + [ 7.2000422, 46.4273379 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00018", + "country" : "CHE", + "name" : [ + { + "text" : "District franc fédéral Pierreuse-Gummfluh", + "lang" : "de-CH" + }, + { + "text" : "District franc fédéral Pierreuse-Gummfluh", + "lang" : "fr-CH" + }, + { + "text" : "District franc fédéral Pierreuse-Gummfluh", + "lang" : "it-CH" + }, + { + "text" : "District franc fédéral Pierreuse-Gummfluh", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "startDateTime" : "2024-11-15T00:00:00+01:00", + "endDateTime" : "2025-04-15T00:00:00+02:00" + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Generaldirektion für Umwelt", + "lang" : "de-CH" + }, + { + "text" : "Direction générale de l'environnement", + "lang" : "fr-CH" + }, + { + "text" : "Direzione generale dell'Ambiente", + "lang" : "it-CH" + }, + { + "text" : "Environment Department", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.dge@vd.ch", + "phone" : "0041213164422", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.6369188, 46.5245375 ], + [ 6.6369246, 46.5247141 ], + [ 6.6369302, 46.5247728 ], + [ 6.636932, 46.5247883 ], + [ 6.6369488, 46.5249056 ], + [ 6.6369879, 46.5250801 ], + [ 6.6370435, 46.5252525 ], + [ 6.6370491, 46.5252676 ], + [ 6.637069, 46.5253146 ], + [ 6.6371104, 46.525443 ], + [ 6.6371161, 46.5254584 ], + [ 6.6371877999999995, 46.5256279 ], + [ 6.6372755, 46.5257938 ], + [ 6.6373426, 46.5259021 ], + [ 6.6373521, 46.5259165 ], + [ 6.6373882, 46.5259698 ], + [ 6.6375065, 46.5261264 ], + [ 6.6376394, 46.5262773 ], + [ 6.6376867, 46.5263262 ], + [ 6.6376997, 46.5263393 ], + [ 6.6377992, 46.526435 ], + [ 6.6379595, 46.5265726 ], + [ 6.6381325, 46.5267027 ], + [ 6.6381326, 46.5267028 ], + [ 6.6381486, 46.5267141 ], + [ 6.6383335, 46.5268361 ], + [ 6.6385296, 46.5269495 ], + [ 6.6386661, 46.5270201 ], + [ 6.6386847, 46.5270293 ], + [ 6.6387547, 46.527063 ], + [ 6.6389705, 46.5271578 ], + [ 6.6391949, 46.5272426 ], + [ 6.6392714999999995, 46.5272686 ], + [ 6.6392922, 46.5272755 ], + [ 6.6394476000000004, 46.527324 ], + [ 6.6396861, 46.5273879 ], + [ 6.6399302, 46.5274409 ], + [ 6.6399523, 46.5274451 ], + [ 6.6402008, 46.527487 ], + [ 6.6404528, 46.5275175 ], + [ 6.6406221, 46.5275315 ], + [ 6.6406449, 46.527533 ], + [ 6.64073, 46.5275381 ], + [ 6.6409856, 46.5275457 ], + [ 6.6412414, 46.5275417 ], + [ 6.6413266, 46.5275378 ], + [ 6.6413495000000005, 46.5275366 ], + [ 6.6415192, 46.527525 ], + [ 6.641772, 46.527498 ], + [ 6.6420218, 46.5274597 ], + [ 6.642044, 46.5274557 ], + [ 6.6422896, 46.5274062 ], + [ 6.6425298999999995, 46.5273456 ], + [ 6.6426868, 46.5272993 ], + [ 6.6427076, 46.5272928 ], + [ 6.6427849, 46.5272679 ], + [ 6.6430118, 46.5271862 ], + [ 6.6432304, 46.5270945 ], + [ 6.6433013, 46.5270617 ], + [ 6.6433202, 46.5270528 ], + [ 6.6434588, 46.5269841 ], + [ 6.6436582, 46.5268735 ], + [ 6.6438466, 46.5267542 ], + [ 6.643863, 46.5267431 ], + [ 6.6438631, 46.526743 ], + [ 6.6440399, 46.5266154 ], + [ 6.6442042, 46.52648 ], + [ 6.6443065, 46.5263857 ], + [ 6.6443198, 46.5263728 ], + [ 6.6443687, 46.5263246 ], + [ 6.644506, 46.5261756 ], + [ 6.6446289, 46.5260207 ], + [ 6.6446665, 46.525968 ], + [ 6.6446764, 46.5259537 ], + [ 6.6447467, 46.5258464 ], + [ 6.6448393, 46.5256817 ], + [ 6.644916, 46.5255133 ], + [ 6.644916, 46.5255132 ], + [ 6.6449222, 46.525498 ], + [ 6.6449828, 46.5253264 ], + [ 6.645027, 46.5251525 ], + [ 6.6450473, 46.5250355 ], + [ 6.6450495, 46.5250198 ], + [ 6.6450569, 46.5249612 ], + [ 6.6450679, 46.5247848 ], + [ 6.6450621, 46.5246082 ], + [ 6.6450564, 46.5245496 ], + [ 6.6450547, 46.5245338 ], + [ 6.6450378, 46.5244165 ], + [ 6.6449987, 46.524242 ], + [ 6.6449432, 46.5240697 ], + [ 6.6449374, 46.5240544 ], + [ 6.6449374, 46.5240543 ], + [ 6.6449034000000005, 46.5239739 ], + [ 6.6448729, 46.5238794 ], + [ 6.6448673, 46.5238643 ], + [ 6.6447955, 46.5236948 ], + [ 6.6447078, 46.5235289 ], + [ 6.6446406, 46.5234205 ], + [ 6.6446313, 46.5234063 ], + [ 6.6445951999999995, 46.5233531 ], + [ 6.6444769, 46.5231965 ], + [ 6.644344, 46.5230456 ], + [ 6.6442966, 46.5229966 ], + [ 6.6442838, 46.5229838 ], + [ 6.6441843, 46.5228881 ], + [ 6.6440241, 46.5227505 ], + [ 6.6438511, 46.5226204 ], + [ 6.6438352, 46.5226092 ], + [ 6.6436503, 46.5224872 ], + [ 6.6434542, 46.5223738 ], + [ 6.6433176, 46.5223032 ], + [ 6.6432991999999995, 46.5222941 ], + [ 6.6432293, 46.5222604 ], + [ 6.6430135, 46.5221656 ], + [ 6.6427891, 46.5220808 ], + [ 6.6427125, 46.5220547 ], + [ 6.6426921, 46.522048 ], + [ 6.6425367, 46.5219995 ], + [ 6.6422982, 46.5219356 ], + [ 6.6420541, 46.5218826 ], + [ 6.6420324, 46.5218784 ], + [ 6.6417838, 46.5218366 ], + [ 6.6415318, 46.5218061 ], + [ 6.6413626, 46.5217921 ], + [ 6.6413401, 46.5217905 ], + [ 6.641255, 46.5217854 ], + [ 6.6409994, 46.521777900000004 ], + [ 6.6407436, 46.5217818 ], + [ 6.6406583, 46.5217857 ], + [ 6.6406358, 46.5217869 ], + [ 6.6404662, 46.5217986 ], + [ 6.6402134, 46.5218256 ], + [ 6.6399637, 46.5218639 ], + [ 6.6399417, 46.5218678 ], + [ 6.6396961999999995, 46.5219173 ], + [ 6.6394558, 46.5219778 ], + [ 6.639299, 46.5220241 ], + [ 6.6392784, 46.5220306 ], + [ 6.6392011, 46.5220555 ], + [ 6.6389743, 46.5221372 ], + [ 6.6387556, 46.5222289 ], + [ 6.6386848, 46.5222616 ], + [ 6.6386661, 46.5222705 ], + [ 6.6385275, 46.522339099999996 ], + [ 6.6383281, 46.5224498 ], + [ 6.6381396, 46.5225691 ], + [ 6.6381234, 46.5225801 ], + [ 6.6379466, 46.5227077 ], + [ 6.6377823, 46.5228431 ], + [ 6.63768, 46.5229373 ], + [ 6.6376669, 46.52295 ], + [ 6.637618, 46.5229983 ], + [ 6.6374807, 46.5231473 ], + [ 6.6373578, 46.5233022 ], + [ 6.6373202, 46.5233549 ], + [ 6.6373104, 46.523369 ], + [ 6.63724, 46.5234764 ], + [ 6.6371475, 46.523641 ], + [ 6.6370707, 46.5238095 ], + [ 6.6370646, 46.5238245 ], + [ 6.637004, 46.5239961 ], + [ 6.6369597, 46.52417 ], + [ 6.6369394, 46.5242869 ], + [ 6.6369372, 46.5243025 ], + [ 6.6369298, 46.5243611 ], + [ 6.6369188, 46.5245375 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00033", + "country" : "CHE", + "name" : [ + { + "text" : "CHUV", + "lang" : "de-CH" + }, + { + "text" : "CHUV", + "lang" : "fr-CH" + }, + { + "text" : "CHUV", + "lang" : "it-CH" + }, + { + "text" : "CHUV", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kantonspolizei Waadt", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale vaudoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Vaud", + "lang" : "it-CH" + }, + { + "text" : "Vaud Cantonal Police", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.pcv@vd.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.414369, 47.0907621 ], + [ 8.4149151, 47.09016 ], + [ 8.4146663, 47.0900613 ], + [ 8.4145051, 47.0902067 ], + [ 8.4144576, 47.0902463 ], + [ 8.4144403, 47.0902521 ], + [ 8.4144189, 47.0902547 ], + [ 8.4144004, 47.090254 ], + [ 8.4143821, 47.09025 ], + [ 8.4141453, 47.0901324 ], + [ 8.413951, 47.0903354 ], + [ 8.4139635, 47.0903522 ], + [ 8.4140128, 47.0904092 ], + [ 8.4141055, 47.090449 ], + [ 8.4140591, 47.0905036 ], + [ 8.4141153, 47.0905272 ], + [ 8.4140779, 47.0905694 ], + [ 8.4141287, 47.0905913 ], + [ 8.4141108, 47.0906111 ], + [ 8.414136599999999, 47.0906214 ], + [ 8.4141083, 47.0906516 ], + [ 8.414369, 47.0907621 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSXN002", + "country" : "CHE", + "name" : [ + { + "text" : "LSXN Haltikon (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSXN Haltikon (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSXN Haltikon (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSXN Haltikon (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Heliswiss International AG", + "lang" : "de-CH" + }, + { + "text" : "Heliswiss International AG", + "lang" : "fr-CH" + }, + { + "text" : "Heliswiss International AG", + "lang" : "it-CH" + }, + { + "text" : "Heliswiss International AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "DPFO", + "lang" : "de-CH" + }, + { + "text" : "DPFO", + "lang" : "fr-CH" + }, + { + "text" : "DPFO", + "lang" : "it-CH" + }, + { + "text" : "DPFO", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Sandra Werder", + "lang" : "de-CH" + }, + { + "text" : "Sandra Werder", + "lang" : "fr-CH" + }, + { + "text" : "Sandra Werder", + "lang" : "it-CH" + }, + { + "text" : "Sandra Werder", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.heliswissinternational.com/en/", + "email" : "info@heliswiss.com", + "phone" : "0041418543223", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P02DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7365589, 47.4375898 ], + [ 7.7365576, 47.4376398 ], + [ 7.7365693, 47.4376805 ], + [ 7.7365809, 47.437765 ], + [ 7.7365538, 47.4378507 ], + [ 7.7365429, 47.4378683 ], + [ 7.7365611, 47.4379018 ], + [ 7.7366258, 47.4380203 ], + [ 7.7367028, 47.4382255 ], + [ 7.7367188, 47.4383945 ], + [ 7.7367128, 47.4385401 ], + [ 7.7367107, 47.4385943 ], + [ 7.7367675, 47.4386025 ], + [ 7.7367346999999995, 47.4388722 ], + [ 7.7366453, 47.4392473 ], + [ 7.736698, 47.4392437 ], + [ 7.7371461, 47.4392132 ], + [ 7.7375656, 47.4391738 ], + [ 7.7379787, 47.4391332 ], + [ 7.7382634, 47.4391053 ], + [ 7.7383752999999995, 47.4390696 ], + [ 7.7382995999999995, 47.4388987 ], + [ 7.738225, 47.4386722 ], + [ 7.7381559, 47.438447 ], + [ 7.7380848, 47.4382341 ], + [ 7.7379627, 47.4379617 ], + [ 7.737815, 47.4377153 ], + [ 7.7377417, 47.4374514 ], + [ 7.7376837, 47.4371647 ], + [ 7.7377304, 47.436933 ], + [ 7.7378189, 47.4365312 ], + [ 7.737872, 47.4363685 ], + [ 7.7380595, 47.4358229 ], + [ 7.7379764, 47.4357107 ], + [ 7.7379001, 47.4356093 ], + [ 7.7378476, 47.4355308 ], + [ 7.7378163, 47.4355941 ], + [ 7.737742, 47.4356283 ], + [ 7.7376462, 47.4357433 ], + [ 7.7373588, 47.4358834 ], + [ 7.7372001, 47.4360005 ], + [ 7.7371574, 47.4360454 ], + [ 7.7370158, 47.4361563 ], + [ 7.73689, 47.4362769 ], + [ 7.7368727, 47.4363152 ], + [ 7.7368805, 47.4363777 ], + [ 7.7368327, 47.4364424 ], + [ 7.7368117, 47.4365096 ], + [ 7.7367794, 47.4365488 ], + [ 7.7367354, 47.4366313 ], + [ 7.7367303, 47.4367253 ], + [ 7.7367325000000005, 47.436795 ], + [ 7.7367232999999995, 47.4368277 ], + [ 7.7366866, 47.4368606 ], + [ 7.7366654, 47.4369186 ], + [ 7.7366613, 47.4369778 ], + [ 7.73664, 47.4370237 ], + [ 7.736598, 47.4370709 ], + [ 7.7365911, 47.4371604 ], + [ 7.7365706, 47.4371828 ], + [ 7.7365685, 47.4372104 ], + [ 7.7366024, 47.4373031 ], + [ 7.7366039, 47.4373382 ], + [ 7.7365899, 47.437393 ], + [ 7.7365673, 47.4374351 ], + [ 7.7365598, 47.4374722 ], + [ 7.7365441, 47.4375074 ], + [ 7.7365455999999995, 47.4375424 ], + [ 7.7365589, 47.4375898 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns207", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Wildenstein", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Wildenstein", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Wildenstein", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Wildenstein", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.0882148, 47.1833103 ], + [ 7.0909772, 47.1841696 ], + [ 7.0925546, 47.1846619 ], + [ 7.0940183, 47.1851997 ], + [ 7.0947024, 47.184277 ], + [ 7.087366, 47.1817777 ], + [ 7.0868175, 47.182528 ], + [ 7.0883946, 47.1830545 ], + [ 7.0882148, 47.1833103 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZJ002", + "country" : "CHE", + "name" : [ + { + "text" : "LSZJ Courtelary (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSZJ Courtelary (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSZJ Courtelary (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSZJ Courtelary (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Segelfluggruppe Biel", + "lang" : "de-CH" + }, + { + "text" : "Groupe de vol à voile Courtelary", + "lang" : "fr-CH" + }, + { + "text" : "Groupe de vol à voile Courtelary", + "lang" : "it-CH" + }, + { + "text" : "Groupe de vol à voile Courtelary", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleiter", + "lang" : "de-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "fr-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "it-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Cédric Bassin", + "lang" : "de-CH" + }, + { + "text" : "Cédric Bassin", + "lang" : "fr-CH" + }, + { + "text" : "Cédric Bassin", + "lang" : "it-CH" + }, + { + "text" : "Cédric Bassin", + "lang" : "en-GB" + } + ], + "siteURL" : "https://lszj.ch/fr/kontakt-ppr/", + "email" : "chefdaerodrome@lszj.ch", + "phone" : "0041329441280", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.0995608, 47.0624597 ], + [ 8.0995481, 47.0622079 ], + [ 8.0995161, 47.0619569 ], + [ 8.0994649, 47.0617074 ], + [ 8.0993946, 47.06146 ], + [ 8.0993055, 47.0612156 ], + [ 8.0991979, 47.0609746 ], + [ 8.0990719, 47.0607378 ], + [ 8.0989279, 47.0605059 ], + [ 8.0987664, 47.0602794 ], + [ 8.0985878, 47.060059 ], + [ 8.0983925, 47.0598453 ], + [ 8.0981811, 47.0596389 ], + [ 8.0979542, 47.0594403 ], + [ 8.0977125, 47.0592501 ], + [ 8.0974564, 47.0590688 ], + [ 8.0971869, 47.0588969 ], + [ 8.0969046, 47.0587349 ], + [ 8.0966102, 47.0585832 ], + [ 8.0963046, 47.0584423 ], + [ 8.0959887, 47.0583124 ], + [ 8.0956632, 47.0581941 ], + [ 8.0953292, 47.0580875 ], + [ 8.0949874, 47.057993 ], + [ 8.0946389, 47.0579109 ], + [ 8.0942845, 47.0578414 ], + [ 8.0939253, 47.0577846 ], + [ 8.0935623, 47.0577408 ], + [ 8.0931964, 47.05771 ], + [ 8.0928286, 47.0576923 ], + [ 8.09246, 47.0576878 ], + [ 8.0920916, 47.0576965 ], + [ 8.0917243, 47.0577184 ], + [ 8.0913592, 47.0577533 ], + [ 8.0909973, 47.0578013 ], + [ 8.0906395, 47.0578621 ], + [ 8.0902869, 47.0579357 ], + [ 8.0899404, 47.0580218 ], + [ 8.089601, 47.0581201 ], + [ 8.0892696, 47.0582305 ], + [ 8.088947, 47.0583525 ], + [ 8.0886343, 47.0584859 ], + [ 8.0883322, 47.0586303 ], + [ 8.0880416, 47.0587853 ], + [ 8.0877632, 47.0589506 ], + [ 8.0874979, 47.0591255 ], + [ 8.0872464, 47.0593097 ], + [ 8.0870092, 47.0595026 ], + [ 8.0867872, 47.0597037 ], + [ 8.0865809, 47.0599125 ], + [ 8.0863909, 47.0601284 ], + [ 8.0862176, 47.0603508 ], + [ 8.0860617, 47.0605791 ], + [ 8.0859234, 47.0608127 ], + [ 8.0858032, 47.0610508 ], + [ 8.0857014, 47.061293 ], + [ 8.0856183, 47.0615384 ], + [ 8.0855541, 47.0617865 ], + [ 8.085509, 47.0620366 ], + [ 8.0854831, 47.0622879 ], + [ 8.0854765, 47.0625398 ], + [ 8.0854891, 47.0627916 ], + [ 8.0855211, 47.0630426 ], + [ 8.0855722, 47.0632921 ], + [ 8.0856424, 47.0635395 ], + [ 8.0857314, 47.0637839 ], + [ 8.0858391, 47.0640249 ], + [ 8.085965, 47.0642617 ], + [ 8.0861089, 47.0644937 ], + [ 8.0862704, 47.0647202 ], + [ 8.086449, 47.0649406 ], + [ 8.0866442, 47.0651543 ], + [ 8.0868556, 47.0653607 ], + [ 8.0870824, 47.0655593 ], + [ 8.0873242, 47.0657496 ], + [ 8.0875802, 47.0659309 ], + [ 8.0878498, 47.0661028 ], + [ 8.0881321, 47.0662648 ], + [ 8.0884265, 47.0664165 ], + [ 8.0887321, 47.0665575 ], + [ 8.0890481, 47.0666874 ], + [ 8.0893736, 47.0668058 ], + [ 8.0897077, 47.0669123 ], + [ 8.0900495, 47.0670068 ], + [ 8.0903981, 47.0670889 ], + [ 8.0907525, 47.0671585 ], + [ 8.0911117, 47.0672153 ], + [ 8.0914748, 47.0672591 ], + [ 8.0918408, 47.0672899 ], + [ 8.0922086, 47.0673076 ], + [ 8.0925773, 47.0673121 ], + [ 8.0929458, 47.0673034 ], + [ 8.0933132, 47.0672815 ], + [ 8.0936783, 47.0672466 ], + [ 8.0940403, 47.0671986 ], + [ 8.0943981, 47.0671377 ], + [ 8.0947508, 47.0670642 ], + [ 8.0950973, 47.0669781 ], + [ 8.0954368, 47.0668797 ], + [ 8.0957683, 47.0667694 ], + [ 8.0960908, 47.0666473 ], + [ 8.0964036, 47.0665139 ], + [ 8.0967057, 47.0663694 ], + [ 8.0969963, 47.0662144 ], + [ 8.0972747, 47.0660492 ], + [ 8.09754, 47.0658742 ], + [ 8.0977916, 47.06569 ], + [ 8.0980287, 47.0654971 ], + [ 8.0982507, 47.0652959 ], + [ 8.098457, 47.0650871 ], + [ 8.098647, 47.0648712 ], + [ 8.0988202, 47.0646487 ], + [ 8.0989761, 47.0644204 ], + [ 8.0991143, 47.0641869 ], + [ 8.0992345, 47.0639487 ], + [ 8.0993362, 47.0637065 ], + [ 8.0994193, 47.0634611 ], + [ 8.0994834, 47.0632129 ], + [ 8.0995285, 47.0629629 ], + [ 8.0995543, 47.0627116 ], + [ 8.0995608, 47.0624597 ] + ] + ], + "layer" : { + "upper" : 2000, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "EVA0001", + "country" : "CHE", + "name" : [ + { + "text" : "Kompressorenstation Ruswil", + "lang" : "de-CH" + }, + { + "text" : "Kompressorenstation Ruswil", + "lang" : "fr-CH" + }, + { + "text" : "Kompressorenstation Ruswil", + "lang" : "it-CH" + }, + { + "text" : "Kompressorenstation Ruswil", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Transitgas AG", + "lang" : "de-CH" + }, + { + "text" : "Transitgas AG", + "lang" : "fr-CH" + }, + { + "text" : "Transitgas AG", + "lang" : "it-CH" + }, + { + "text" : "Transitgas AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Technik", + "lang" : "de-CH" + }, + { + "text" : "Technik", + "lang" : "fr-CH" + }, + { + "text" : "Technik", + "lang" : "it-CH" + }, + { + "text" : "Technik", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.transitgas.ch/en/contact/", + "email" : "info@transitgas.ch", + "phone" : "0041414926010", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8802371, 47.5004118 ], + [ 7.8802418, 47.5004215 ], + [ 7.8802457, 47.5004313 ], + [ 7.8802489, 47.5004413 ], + [ 7.8805048, 47.5005139 ], + [ 7.880909, 47.5005226 ], + [ 7.8820594, 47.5006037 ], + [ 7.8826345, 47.5006901 ], + [ 7.8829923, 47.5006873 ], + [ 7.8832583, 47.5005753 ], + [ 7.8837598, 47.500225 ], + [ 7.8838053, 47.5001311 ], + [ 7.8838844, 47.5001744 ], + [ 7.8841452, 47.5001099 ], + [ 7.8846053, 47.5000346 ], + [ 7.8848404, 47.5000019 ], + [ 7.8850441, 47.4999428 ], + [ 7.8852725, 47.4999587 ], + [ 7.8854539, 47.4999729 ], + [ 7.8857692, 47.500039 ], + [ 7.8860151, 47.5000857 ], + [ 7.88687, 47.5001829 ], + [ 7.887042, 47.5002105 ], + [ 7.8871305, 47.5002247 ], + [ 7.8876358, 47.5003343 ], + [ 7.8881318, 47.5004031 ], + [ 7.8887979999999995, 47.5003398 ], + [ 7.8894518, 47.5003582 ], + [ 7.890057, 47.5003224 ], + [ 7.890108, 47.5003118 ], + [ 7.8901932, 47.5001964 ], + [ 7.8902249, 47.5001283 ], + [ 7.8899929, 47.5000075 ], + [ 7.8899805, 47.499948 ], + [ 7.8896384, 47.499948 ], + [ 7.8894623, 47.5000458 ], + [ 7.8892529, 47.5000568 ], + [ 7.8891083, 47.5000471 ], + [ 7.8888445, 47.5000343 ], + [ 7.8885676, 47.5000677 ], + [ 7.8882432, 47.5000724 ], + [ 7.8876484, 47.5000283 ], + [ 7.8871044999999995, 47.4998991 ], + [ 7.886921, 47.4997973 ], + [ 7.8867742, 47.4997894 ], + [ 7.8866344, 47.4996227 ], + [ 7.8866257, 47.4996124 ], + [ 7.8859597, 47.4995429 ], + [ 7.8859527, 47.499542 ], + [ 7.8859457, 47.4995415 ], + [ 7.8859385, 47.4995414 ], + [ 7.8859314, 47.4995417 ], + [ 7.8859244, 47.4995424 ], + [ 7.8859161, 47.4995437 ], + [ 7.885908, 47.499545499999996 ], + [ 7.8859003, 47.4995479 ], + [ 7.8858929, 47.4995507 ], + [ 7.8858709, 47.4995569 ], + [ 7.8858484, 47.4995621 ], + [ 7.8858254, 47.4995664 ], + [ 7.8858087999999995, 47.4995689 ], + [ 7.885792, 47.4995708 ], + [ 7.8857751, 47.4995723 ], + [ 7.8857476, 47.4995741 ], + [ 7.8857282, 47.4995752 ], + [ 7.8857087, 47.4995756 ], + [ 7.8856892, 47.4995751 ], + [ 7.8856671, 47.4995735 ], + [ 7.8856453, 47.4995709 ], + [ 7.8856238, 47.4995672 ], + [ 7.8855863, 47.4995577 ], + [ 7.8855428, 47.4995517 ], + [ 7.8854988, 47.4995474 ], + [ 7.8854546, 47.4995448 ], + [ 7.8854057, 47.4995438 ], + [ 7.8853568, 47.4995452 ], + [ 7.8853082, 47.4995489 ], + [ 7.8847517, 47.4996061 ], + [ 7.8839071, 47.4996931 ], + [ 7.8835328, 47.4997041 ], + [ 7.8833492, 47.5000632 ], + [ 7.8831776, 47.500342 ], + [ 7.8831102, 47.5004105 ], + [ 7.8829416, 47.5004462 ], + [ 7.8827123, 47.5004658 ], + [ 7.8824344, 47.5004815 ], + [ 7.8824039, 47.5004808 ], + [ 7.8819395, 47.5004707 ], + [ 7.8813762, 47.5004492 ], + [ 7.8809354, 47.5004502 ], + [ 7.8806714, 47.5004632 ], + [ 7.8805321, 47.5004492 ], + [ 7.8803566, 47.5003941 ], + [ 7.8803005, 47.5004007 ], + [ 7.8802316999999995, 47.5004023 ], + [ 7.8802371, 47.5004118 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns087", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Allmetgraben", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Allmetgraben", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Allmetgraben", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Allmetgraben", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4865428, 46.9204886 ], + [ 7.4861713, 46.9206272 ], + [ 7.4857947, 46.9208127 ], + [ 7.4849797, 46.9211126 ], + [ 7.4845675, 46.9212423 ], + [ 7.4839743, 46.9214251 ], + [ 7.4832248, 46.921626 ], + [ 7.4824083, 46.9218179 ], + [ 7.4819685, 46.9218981 ], + [ 7.4818649, 46.9219602 ], + [ 7.483189, 46.9228215 ], + [ 7.484366, 46.923519 ], + [ 7.4846443, 46.9234038 ], + [ 7.4861851999999995, 46.9243603 ], + [ 7.4883088, 46.9234904 ], + [ 7.4901015, 46.9227286 ], + [ 7.4891538, 46.9215678 ], + [ 7.4891195, 46.9214455 ], + [ 7.4893138, 46.9214004 ], + [ 7.4948457, 46.9170972 ], + [ 7.495023, 46.9172033 ], + [ 7.4951437, 46.9171177 ], + [ 7.494948, 46.916991 ], + [ 7.4968552, 46.9155121 ], + [ 7.496926, 46.9154869 ], + [ 7.497035, 46.9155084 ], + [ 7.4982815, 46.9161168 ], + [ 7.4985165, 46.9161185 ], + [ 7.4986529, 46.9159961 ], + [ 7.498974, 46.9156001 ], + [ 7.4998457, 46.91445 ], + [ 7.5017001, 46.9151201 ], + [ 7.5017532, 46.9145102 ], + [ 7.5017581, 46.9141944 ], + [ 7.5018408, 46.9142079 ], + [ 7.5018867, 46.9141656 ], + [ 7.5018918, 46.9140531 ], + [ 7.5018601, 46.9138831 ], + [ 7.501915, 46.9137104 ], + [ 7.5021479, 46.9130302 ], + [ 7.5023418, 46.9127252 ], + [ 7.5026343, 46.9124767 ], + [ 7.5033335, 46.912068 ], + [ 7.5036142, 46.9119491 ], + [ 7.5039093999999995, 46.9118194 ], + [ 7.5042187, 46.9113829 ], + [ 7.5041675, 46.9113596 ], + [ 7.5042265, 46.9113083 ], + [ 7.5046147, 46.9109707 ], + [ 7.5054971, 46.9102173 ], + [ 7.5055705, 46.9101435 ], + [ 7.5056111, 46.9100041 ], + [ 7.5061455, 46.9101881 ], + [ 7.5063292, 46.9101089 ], + [ 7.5067754, 46.9100295 ], + [ 7.5056092, 46.9095588 ], + [ 7.5055068, 46.9095705 ], + [ 7.5053586, 46.9096318 ], + [ 7.5047464999999995, 46.9093083 ], + [ 7.5073781, 46.9071281 ], + [ 7.5079157, 46.906780499999996 ], + [ 7.5074809, 46.9064741 ], + [ 7.5068124, 46.9060922 ], + [ 7.5062738, 46.9057813 ], + [ 7.5057012, 46.9054488 ], + [ 7.5054445, 46.905887 ], + [ 7.5050932, 46.9062983 ], + [ 7.5048612, 46.9065197 ], + [ 7.5047758, 46.9064757 ], + [ 7.5024982, 46.9083264 ], + [ 7.4991131, 46.9071724 ], + [ 7.4999132, 46.9054979 ], + [ 7.4979821, 46.9050384 ], + [ 7.497204, 46.9065347 ], + [ 7.4950622, 46.9107392 ], + [ 7.493578, 46.9136616 ], + [ 7.4933042, 46.9142095 ], + [ 7.4928116, 46.9151939 ], + [ 7.492594, 46.9155781 ], + [ 7.4921365, 46.9162403 ], + [ 7.4916514, 46.9168675 ], + [ 7.4909564, 46.9176181 ], + [ 7.4899753, 46.9184748 ], + [ 7.4895804, 46.9187305 ], + [ 7.4890044, 46.9191517 ], + [ 7.4875611, 46.9199934 ], + [ 7.4865428, 46.9204886 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZB002", + "country" : "CHE", + "name" : [ + { + "text" : "LSZB Bern-Belp 1 (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSZB Bern-Belp 1 (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSZB Bern-Belp 1 (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSZB Bern-Belp 1 (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Special Flight Office (SFO)", + "lang" : "de-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "fr-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "it-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "en-GB" + } + ], + "siteURL" : "https://skyguide.ch/services/special-flights", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5903952, 47.5499892 ], + [ 7.5903894, 47.549848 ], + [ 7.5903726, 47.5497072 ], + [ 7.590345, 47.5495672 ], + [ 7.5903066, 47.5494284 ], + [ 7.5902575, 47.5492911 ], + [ 7.5901978, 47.5491557 ], + [ 7.5901278, 47.5490227 ], + [ 7.5900476, 47.5488923 ], + [ 7.5899574, 47.5487649 ], + [ 7.5898575, 47.5486409 ], + [ 7.5897482, 47.5485206 ], + [ 7.5896296, 47.5484043 ], + [ 7.5895022999999995, 47.5482924 ], + [ 7.5893665, 47.5481852 ], + [ 7.5892226, 47.5480829 ], + [ 7.589071, 47.5479858 ], + [ 7.5889121, 47.5478943 ], + [ 7.5887463, 47.5478085 ], + [ 7.5885741, 47.5477287 ], + [ 7.5883959999999995, 47.5476552 ], + [ 7.5882125, 47.547588 ], + [ 7.588024, 47.5475274 ], + [ 7.5878311, 47.547473600000004 ], + [ 7.5876342999999995, 47.5474267 ], + [ 7.5874342, 47.5473869 ], + [ 7.5872312, 47.5473541 ], + [ 7.587026, 47.5473287 ], + [ 7.5868191, 47.5473105 ], + [ 7.5866111, 47.547299699999996 ], + [ 7.5864025, 47.5472962 ], + [ 7.5861939, 47.5473002 ], + [ 7.585986, 47.5473115 ], + [ 7.5857792, 47.5473302 ], + [ 7.5855741, 47.5473562 ], + [ 7.5853713, 47.5473895 ], + [ 7.5851714, 47.5474299 ], + [ 7.5849748, 47.5474773 ], + [ 7.5847822, 47.5475316 ], + [ 7.584594, 47.5475926 ], + [ 7.5844109, 47.5476602 ], + [ 7.5842332, 47.5477343 ], + [ 7.5840615, 47.5478145 ], + [ 7.5838962, 47.5479007 ], + [ 7.5837378, 47.5479926 ], + [ 7.5835867, 47.5480901 ], + [ 7.5834433, 47.5481927 ], + [ 7.5833081, 47.5483003 ], + [ 7.5831814, 47.5484125 ], + [ 7.5830636, 47.5485291 ], + [ 7.5829549, 47.5486496 ], + [ 7.5828556, 47.5487739 ], + [ 7.5827662, 47.5489015 ], + [ 7.5826867, 47.5490321 ], + [ 7.5826174, 47.5491653 ], + [ 7.5825585, 47.5493009 ], + [ 7.5825101, 47.5494383 ], + [ 7.5824725, 47.5495772 ], + [ 7.5824456, 47.5497173 ], + [ 7.5824297, 47.5498581 ], + [ 7.5824245999999995, 47.5499993 ], + [ 7.5824304, 47.5501405 ], + [ 7.5824472, 47.5502813 ], + [ 7.5824748, 47.5504214 ], + [ 7.5825132, 47.5505602 ], + [ 7.5825623, 47.5506975 ], + [ 7.5826219, 47.5508329 ], + [ 7.5826919, 47.5509659 ], + [ 7.5827721, 47.5510963 ], + [ 7.5828623, 47.5512237 ], + [ 7.5829621, 47.5513477 ], + [ 7.5830715, 47.551468 ], + [ 7.58319, 47.5515843 ], + [ 7.5833173, 47.5516962 ], + [ 7.5834531, 47.5518035 ], + [ 7.583597, 47.5519057 ], + [ 7.5837486, 47.5520028 ], + [ 7.5839076, 47.5520943 ], + [ 7.5840733, 47.5521801 ], + [ 7.5842455, 47.5522599 ], + [ 7.5844236, 47.5523335 ], + [ 7.5846072, 47.5524007 ], + [ 7.5847957, 47.5524612 ], + [ 7.5849886, 47.5525151 ], + [ 7.5851854, 47.552562 ], + [ 7.5853856, 47.5526018 ], + [ 7.5855885, 47.5526346 ], + [ 7.5857938, 47.55266 ], + [ 7.5860007, 47.5526782 ], + [ 7.5862088, 47.552689 ], + [ 7.5864173, 47.5526925 ], + [ 7.5866259, 47.5526885 ], + [ 7.5868339, 47.5526772 ], + [ 7.5870407, 47.5526585 ], + [ 7.5872458, 47.5526325 ], + [ 7.5874486, 47.5525992 ], + [ 7.5876486, 47.5525589 ], + [ 7.5878451, 47.5525115 ], + [ 7.5880378, 47.5524572 ], + [ 7.5882259, 47.5523961 ], + [ 7.5884091, 47.5523285 ], + [ 7.5885868, 47.5522544 ], + [ 7.5887585, 47.5521742 ], + [ 7.5889238, 47.552088 ], + [ 7.5890822, 47.5519961 ], + [ 7.5892333, 47.5518986 ], + [ 7.5893766, 47.551796 ], + [ 7.5895119, 47.5516884 ], + [ 7.5896386, 47.5515762 ], + [ 7.5897564, 47.5514596 ], + [ 7.5898651, 47.551339 ], + [ 7.5899643, 47.5512147 ], + [ 7.5900538, 47.5510871 ], + [ 7.5901333, 47.5509565 ], + [ 7.5902025, 47.5508233 ], + [ 7.5902614, 47.5506877 ], + [ 7.5903097, 47.5505503 ], + [ 7.5903474, 47.5504114 ], + [ 7.5903742, 47.5502713 ], + [ 7.5903902, 47.5501305 ], + [ 7.5903952, 47.5499892 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LOH0001", + "country" : "CHE", + "name" : [ + { + "text" : "Untersuchungsgefängnis Basel-Stadt", + "lang" : "de-CH" + }, + { + "text" : "Untersuchungsgefängnis Basel-Stadt", + "lang" : "fr-CH" + }, + { + "text" : "Untersuchungsgefängnis Basel-Stadt", + "lang" : "it-CH" + }, + { + "text" : "Untersuchungsgefängnis Basel-Stadt", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Untersuchungsgefängnis Basel-Stadt", + "lang" : "de-CH" + }, + { + "text" : "Untersuchungsgefängnis Basel-Stadt", + "lang" : "fr-CH" + }, + { + "text" : "Untersuchungsgefängnis Basel-Stadt", + "lang" : "it-CH" + }, + { + "text" : "Untersuchungsgefängnis Basel-Stadt", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Leitung", + "lang" : "de-CH" + }, + { + "text" : "Leitung", + "lang" : "fr-CH" + }, + { + "text" : "Leitung", + "lang" : "it-CH" + }, + { + "text" : "Leitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Christian Kreidler", + "lang" : "de-CH" + }, + { + "text" : "Christian Kreidler", + "lang" : "fr-CH" + }, + { + "text" : "Christian Kreidler", + "lang" : "it-CH" + }, + { + "text" : "Christian Kreidler", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.bdm.bs.ch/Ueber-uns/Organisation/Amt-fuer-Justizvollzug/Untersuchungsgefaengnis.html", + "email" : "info.ug@jsd.bs.ch", + "phone" : "0041612675200", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6302848999999995, 47.4926965 ], + [ 7.6302011, 47.4927414 ], + [ 7.6302064, 47.4927942 ], + [ 7.6303021, 47.4929764 ], + [ 7.6303368, 47.4930449 ], + [ 7.6304612, 47.4934109 ], + [ 7.6307407, 47.4933791 ], + [ 7.6307776, 47.4935216 ], + [ 7.6307561, 47.4935241 ], + [ 7.6308231, 47.4939798 ], + [ 7.6306764000000005, 47.4939988 ], + [ 7.6306434, 47.4940809 ], + [ 7.6306458, 47.4941007 ], + [ 7.6306475, 47.4941204 ], + [ 7.6306615, 47.4943123 ], + [ 7.6306646, 47.4943642 ], + [ 7.630669, 47.494416 ], + [ 7.6307096, 47.4949216 ], + [ 7.6307218, 47.4950488 ], + [ 7.6307241, 47.4950925 ], + [ 7.6307253, 47.4951362 ], + [ 7.6307205, 47.4954104 ], + [ 7.6325164, 47.4956407 ], + [ 7.6325997, 47.4955634 ], + [ 7.6327055999999995, 47.4954384 ], + [ 7.632836, 47.4952825 ], + [ 7.6329532, 47.495164 ], + [ 7.6330175, 47.4950918 ], + [ 7.6330685, 47.4950132 ], + [ 7.6330817, 47.4949823 ], + [ 7.6330987, 47.494954 ], + [ 7.6331175, 47.494918 ], + [ 7.6331477, 47.4948716 ], + [ 7.6331893, 47.4948239 ], + [ 7.6332233, 47.4947724 ], + [ 7.6332781, 47.4946977 ], + [ 7.6333385, 47.4946255 ], + [ 7.6333915, 47.494565 ], + [ 7.6334634, 47.4944967 ], + [ 7.6335353, 47.4944271 ], + [ 7.633631, 47.4944835 ], + [ 7.633836, 47.4945886 ], + [ 7.6340268, 47.4947173 ], + [ 7.6342087, 47.494844 ], + [ 7.6343937, 47.4949768 ], + [ 7.6345607, 47.4950995 ], + [ 7.6346442, 47.4951598 ], + [ 7.6347515999999995, 47.4952443 ], + [ 7.634859, 47.4953167 ], + [ 7.6349276, 47.495369 ], + [ 7.6350051, 47.4954052 ], + [ 7.6351064, 47.4954614 ], + [ 7.6351779, 47.4954976 ], + [ 7.635321, 47.495578 ], + [ 7.635485, 47.4956684 ], + [ 7.6355803, 47.4957227 ], + [ 7.6356877, 47.495781 ], + [ 7.6357681, 47.4958131 ], + [ 7.6358187, 47.4958312 ], + [ 7.6358843, 47.4958593 ], + [ 7.6359409, 47.4958915 ], + [ 7.6360154, 47.4959296 ], + [ 7.6360928999999995, 47.4959597 ], + [ 7.6362418, 47.4960038 ], + [ 7.6363430999999995, 47.49604 ], + [ 7.636486, 47.4960881 ], + [ 7.6366319, 47.4961342 ], + [ 7.636757, 47.4961743 ], + [ 7.6369298, 47.4962264 ], + [ 7.6370161, 47.4962565 ], + [ 7.6371115, 47.4962987 ], + [ 7.6372634, 47.496363 ], + [ 7.6373588, 47.4964051 ], + [ 7.6374913, 47.4964574 ], + [ 7.6375262, 47.4964383 ], + [ 7.6375592, 47.4964289 ], + [ 7.6375934, 47.4964216 ], + [ 7.6376283, 47.4964164 ], + [ 7.6376638, 47.4964134 ], + [ 7.6377195, 47.4964105 ], + [ 7.6377752999999995, 47.4964105 ], + [ 7.6382297, 47.4964284 ], + [ 7.6382699, 47.4964295 ], + [ 7.6383101, 47.4964319 ], + [ 7.6385482, 47.4964471 ], + [ 7.6386779, 47.496455 ], + [ 7.6388082, 47.4964581 ], + [ 7.6390022, 47.4964573 ], + [ 7.6390625, 47.496455 ], + [ 7.6391229, 47.4964555 ], + [ 7.6392047, 47.4964566 ], + [ 7.6392863, 47.4964612 ], + [ 7.6393705, 47.4964666 ], + [ 7.6394534, 47.4964774 ], + [ 7.6396482, 47.4965205 ], + [ 7.6399498999999995, 47.4965864 ], + [ 7.6401188, 47.4966197 ], + [ 7.6402889, 47.4966498 ], + [ 7.6404903, 47.4966937 ], + [ 7.6406905, 47.4967401 ], + [ 7.6407828, 47.4967647 ], + [ 7.6408713, 47.4967949 ], + [ 7.6409555000000005, 47.4968304 ], + [ 7.6410346, 47.496871 ], + [ 7.6413644, 47.497058 ], + [ 7.641564, 47.4971702 ], + [ 7.6417644, 47.4972817 ], + [ 7.6418684, 47.4973332 ], + [ 7.6419744, 47.4973827 ], + [ 7.6420047, 47.497395 ], + [ 7.6420365, 47.4974057 ], + [ 7.6423097, 47.4974872 ], + [ 7.6426113, 47.4975669 ], + [ 7.6428955, 47.4976445 ], + [ 7.6431176, 47.4977094 ], + [ 7.6439743, 47.4964795 ], + [ 7.643861, 47.4964407 ], + [ 7.6437425999999995, 47.4964103 ], + [ 7.6436128, 47.4963778 ], + [ 7.6435235, 47.496351 ], + [ 7.643437, 47.4963199 ], + [ 7.6433507, 47.4962869 ], + [ 7.6432698, 47.4962539 ], + [ 7.6430931, 47.496178 ], + [ 7.6429871, 47.4961406 ], + [ 7.6429186, 47.4961082 ], + [ 7.6428547, 47.4960732 ], + [ 7.6427935, 47.4960369 ], + [ 7.642598, 47.4959078 ], + [ 7.6425034, 47.4958474 ], + [ 7.6424095, 47.4957894 ], + [ 7.6423117, 47.4957325 ], + [ 7.6422471, 47.4957 ], + [ 7.6421791, 47.4956701 ], + [ 7.6421078, 47.495644 ], + [ 7.6420361, 47.4956215 ], + [ 7.6419377, 47.4955949 ], + [ 7.6418349, 47.4955713 ], + [ 7.6417322, 47.4955524 ], + [ 7.6414534, 47.4955052 ], + [ 7.6410867, 47.4954464 ], + [ 7.6409427, 47.4954234 ], + [ 7.6407014, 47.4954108 ], + [ 7.6406647, 47.4954099 ], + [ 7.6406281, 47.4954114 ], + [ 7.6405918, 47.4954152 ], + [ 7.6405563, 47.4954214 ], + [ 7.6404291, 47.4954431 ], + [ 7.6403879, 47.4954469 ], + [ 7.6403463, 47.4954474 ], + [ 7.6403049, 47.4954445 ], + [ 7.6402643, 47.4954384 ], + [ 7.6402251, 47.495429 ], + [ 7.6401878, 47.4954165 ], + [ 7.6397167, 47.4951726 ], + [ 7.6396142000000005, 47.4951433 ], + [ 7.6386996, 47.494865 ], + [ 7.6383999, 47.4947665 ], + [ 7.6381735, 47.4946919 ], + [ 7.6380623, 47.4946656 ], + [ 7.6372186, 47.4943352 ], + [ 7.6369136, 47.4942181 ], + [ 7.6367594, 47.4941597 ], + [ 7.6367104999999995, 47.4941467 ], + [ 7.6364827, 47.49404 ], + [ 7.6362623, 47.4939007 ], + [ 7.635724, 47.493525 ], + [ 7.635474, 47.4933229 ], + [ 7.6352741, 47.4932142 ], + [ 7.634824, 47.4929969 ], + [ 7.6334976, 47.4925306 ], + [ 7.633214, 47.4924463 ], + [ 7.6322943, 47.4922199 ], + [ 7.6317926, 47.4921373 ], + [ 7.6314992, 47.49211 ], + [ 7.631341, 47.4921151 ], + [ 7.6312304, 47.4921585 ], + [ 7.6308927, 47.4924029 ], + [ 7.6305177, 47.4925994 ], + [ 7.6302848999999995, 47.4926965 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr115", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Gstüd", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Gstüd", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Gstüd", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Gstüd", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4156157, 47.4064078 ], + [ 7.4158615, 47.4062416 ], + [ 7.4170188, 47.4059758 ], + [ 7.4170396, 47.4059709 ], + [ 7.4183578, 47.4058867 ], + [ 7.4184024, 47.4054851 ], + [ 7.4184289, 47.4054159 ], + [ 7.4184664, 47.4053178 ], + [ 7.4184746, 47.4052961 ], + [ 7.4185166, 47.4051863 ], + [ 7.4192976999999996, 47.4048794 ], + [ 7.4195001, 47.4047999 ], + [ 7.4200633, 47.40463 ], + [ 7.4201363, 47.4045523 ], + [ 7.4201706, 47.4045158 ], + [ 7.4201828, 47.4044816 ], + [ 7.4202851, 47.4044611 ], + [ 7.4203685, 47.4044456 ], + [ 7.4204004999999995, 47.4044324 ], + [ 7.4204075, 47.4044125 ], + [ 7.4203983000000004, 47.4043923 ], + [ 7.4203855, 47.4043814 ], + [ 7.4202525999999995, 47.4043827 ], + [ 7.4199969, 47.4043833 ], + [ 7.4197604, 47.40438 ], + [ 7.4195906, 47.4043722 ], + [ 7.419546, 47.4044169 ], + [ 7.4194698, 47.4044461 ], + [ 7.4193704, 47.4044551 ], + [ 7.4192644, 47.4044191 ], + [ 7.4190425, 47.404473 ], + [ 7.4189034, 47.4044617 ], + [ 7.418804, 47.404473 ], + [ 7.4185656, 47.4044504 ], + [ 7.4185159, 47.404347 ], + [ 7.4184928, 47.4042773 ], + [ 7.4185165, 47.4042471 ], + [ 7.4183835, 47.404221 ], + [ 7.4183173, 47.404212 ], + [ 7.4182643, 47.404203 ], + [ 7.4181779, 47.404195 ], + [ 7.4180722, 47.4041895 ], + [ 7.4179861, 47.4041895 ], + [ 7.417847, 47.4041984 ], + [ 7.4176547, 47.4042205 ], + [ 7.4173301, 47.4042658 ], + [ 7.4165618, 47.4043826 ], + [ 7.4163697, 47.404405 ], + [ 7.4161114, 47.404432 ], + [ 7.4159855, 47.4044499 ], + [ 7.4158928, 47.4044679 ], + [ 7.415747, 47.4044993 ], + [ 7.415588, 47.4045398 ], + [ 7.4152634, 47.4046297 ], + [ 7.4149325, 47.4047295 ], + [ 7.4148602, 47.4047533 ], + [ 7.4148601, 47.4047603 ], + [ 7.4148594, 47.4048023 ], + [ 7.4147779, 47.4048998 ], + [ 7.4146998, 47.4050224 ], + [ 7.4146281, 47.4052005 ], + [ 7.4146082, 47.4052858 ], + [ 7.4145666, 47.4054428 ], + [ 7.4145632, 47.4056356 ], + [ 7.4143978, 47.4056554 ], + [ 7.414303, 47.4056611 ], + [ 7.414144, 47.4056708 ], + [ 7.4137834, 47.4057233 ], + [ 7.4133148, 47.4058097 ], + [ 7.4128298, 47.4058991 ], + [ 7.4124024, 47.4059899 ], + [ 7.4124474, 47.4061107 ], + [ 7.4124519, 47.4061227 ], + [ 7.4124586, 47.4061323 ], + [ 7.4125383, 47.4062466 ], + [ 7.4126294999999995, 47.406388 ], + [ 7.4127463, 47.4065482 ], + [ 7.4128372, 47.4067041 ], + [ 7.4129918, 47.4067059 ], + [ 7.4130887, 47.4067047 ], + [ 7.4132754, 47.4067059 ], + [ 7.4133445, 47.4066934 ], + [ 7.4134282, 47.4066828 ], + [ 7.4135328, 47.406653 ], + [ 7.4136342, 47.406617 ], + [ 7.4137445, 47.4065866 ], + [ 7.4137786, 47.4065736 ], + [ 7.4138935, 47.4065431 ], + [ 7.4139897, 47.4065216 ], + [ 7.4140425, 47.4065078 ], + [ 7.4141101, 47.406478 ], + [ 7.4141405, 47.4064623 ], + [ 7.4142054, 47.4064491 ], + [ 7.4143832, 47.4064014 ], + [ 7.4143891, 47.4064164 ], + [ 7.4153888, 47.4064228 ], + [ 7.4153986, 47.4064229 ], + [ 7.4154031, 47.4064217 ], + [ 7.4155905, 47.4064233 ], + [ 7.4156157, 47.4064078 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns121", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Erhollen - Chlummen", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Erhollen - Chlummen", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Erhollen - Chlummen", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Erhollen - Chlummen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4777173, 46.8875553 ], + [ 7.4777847, 46.8877013 ], + [ 7.4779301, 46.8879334 ], + [ 7.478805, 46.8878303 ], + [ 7.4789281, 46.887344 ], + [ 7.4789578, 46.8866932 ], + [ 7.4802795, 46.8865692 ], + [ 7.480308, 46.8859843 ], + [ 7.4803138, 46.8859127 ], + [ 7.4797366, 46.8859619 ], + [ 7.4789568, 46.8859021 ], + [ 7.478952, 46.8857843 ], + [ 7.4788869, 46.885702 ], + [ 7.4788349, 46.8857083 ], + [ 7.4783988, 46.8857614 ], + [ 7.4777398999999996, 46.8858426 ], + [ 7.4776958, 46.8862016 ], + [ 7.4776875, 46.886267 ], + [ 7.477437, 46.886303 ], + [ 7.4773376, 46.8863173 ], + [ 7.4774899, 46.8868798 ], + [ 7.477619, 46.887346 ], + [ 7.4777173, 46.8875553 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VBS_25", + "country" : "CHE", + "name" : [ + { + "text" : "VBS_25 Zimmerwald", + "lang" : "de-CH" + }, + { + "text" : "VBS_25 Zimmerwald", + "lang" : "fr-CH" + }, + { + "text" : "VBS_25 Zimmerwald", + "lang" : "it-CH" + }, + { + "text" : "VBS_25 Zimmerwald", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "regulationExemption" : "YES", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Eidgenössisches Departement für Verteidigung, Bevölkerungsschutz und Sport (VBS)", + "lang" : "de-CH" + }, + { + "text" : "Département fédéral de la défense, de la protection de la population et des sports (DDPS)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento federale della difesa, della protezione della popolazione e dello sport (DDPS)", + "lang" : "it-CH" + }, + { + "text" : "Federal Department of Defence, Civil Protection and Sport (DDPS)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Lageverfolgungszentrum der Armee LVZ A", + "lang" : "de-CH" + }, + { + "text" : "Centre de suivi de la situation de l’armée, CSS A", + "lang" : "fr-CH" + }, + { + "text" : "Centro di monitoraggio della situazione dell’esercito, Centro mon sit Es", + "lang" : "it-CH" + }, + { + "text" : "Joint Operation Center, JOC", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vtg.admin.ch/en/joint-operations-command", + "email" : "lvz.op@vtg.admin.ch", + "phone" : "+41 58 464 96 43", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6048129, 47.5070843 ], + [ 7.6048241, 47.5070932 ], + [ 7.6051763999999995, 47.5077823 ], + [ 7.6055387, 47.5083588 ], + [ 7.6060721000000004, 47.5087986 ], + [ 7.6064924, 47.5089552 ], + [ 7.6065479, 47.5089966 ], + [ 7.6065806, 47.5089884 ], + [ 7.6066172, 47.5089785 ], + [ 7.6066534, 47.5089681 ], + [ 7.6066893, 47.5089572 ], + [ 7.6067241, 47.5089459 ], + [ 7.6067585, 47.5089341 ], + [ 7.6067925, 47.5089218 ], + [ 7.606826, 47.5089089 ], + [ 7.606837, 47.5089217 ], + [ 7.6068812999999995, 47.5089036 ], + [ 7.6069252, 47.508885 ], + [ 7.6069687, 47.5088659 ], + [ 7.6070116, 47.5088463 ], + [ 7.6070541, 47.5088262 ], + [ 7.607096, 47.5088057 ], + [ 7.6071299, 47.5087884 ], + [ 7.6071635, 47.5087709 ], + [ 7.6071967, 47.508753 ], + [ 7.6072295, 47.5087348 ], + [ 7.607262, 47.5087163 ], + [ 7.6072941, 47.5086975 ], + [ 7.6073257, 47.5086784 ], + [ 7.607357, 47.508659 ], + [ 7.6073965, 47.5086326 ], + [ 7.6074353, 47.5086058 ], + [ 7.6074734, 47.5085785 ], + [ 7.6075107, 47.5085508 ], + [ 7.6075473, 47.5085226 ], + [ 7.6075832, 47.5084939 ], + [ 7.6076176, 47.5084653 ], + [ 7.6076513, 47.5084363 ], + [ 7.6076843, 47.5084069 ], + [ 7.6077164, 47.5083771 ], + [ 7.6077478, 47.5083469 ], + [ 7.6077783, 47.5083164 ], + [ 7.607799, 47.5082948 ], + [ 7.6078192, 47.5082731 ], + [ 7.6078389, 47.5082511 ], + [ 7.607858, 47.5082289 ], + [ 7.6078719, 47.5082115 ], + [ 7.6078505, 47.5081844 ], + [ 7.6077983, 47.5081276 ], + [ 7.6077821, 47.5080625 ], + [ 7.607714, 47.5080193 ], + [ 7.6075659, 47.5079843 ], + [ 7.6073899, 47.5079683 ], + [ 7.6072578, 47.5079278 ], + [ 7.6072498, 47.5079278 ], + [ 7.6071656, 47.5078521 ], + [ 7.6070092, 47.5077087 ], + [ 7.6067966, 47.5075193 ], + [ 7.6066402, 47.5073976 ], + [ 7.6065119, 47.5072758 ], + [ 7.6064277, 47.5072272 ], + [ 7.6061837, 47.5071923 ], + [ 7.6057835, 47.5071089 ], + [ 7.6054953, 47.5070443 ], + [ 7.6053752, 47.5069984 ], + [ 7.6052389, 47.5068793 ], + [ 7.6050867, 47.5067956 ], + [ 7.6049344, 47.5067036 ], + [ 7.6048662, 47.5066441 ], + [ 7.6047218, 47.5064899 ], + [ 7.6046737, 47.5064547 ], + [ 7.6045977, 47.5064467 ], + [ 7.6045298, 47.5064847 ], + [ 7.60449, 47.5065498 ], + [ 7.6044903999999995, 47.5066636 ], + [ 7.6045347, 47.5067801 ], + [ 7.604599, 47.5068911 ], + [ 7.6048129, 47.5070843 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr070", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Wissgrien", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Wissgrien", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Wissgrien", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Wissgrien", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6770852, 47.3919985 ], + [ 7.6775893, 47.3918329 ], + [ 7.6776271, 47.3918388 ], + [ 7.6776525, 47.3918448 ], + [ 7.6776731, 47.3918512 ], + [ 7.6777198, 47.3918668 ], + [ 7.6778031, 47.3918947 ], + [ 7.6779188, 47.3919335 ], + [ 7.6779934999999995, 47.391962 ], + [ 7.6781267, 47.3920228 ], + [ 7.6782045, 47.3920559 ], + [ 7.6782895, 47.3920838 ], + [ 7.6784061999999995, 47.3921163 ], + [ 7.678557, 47.3921553 ], + [ 7.67873, 47.3921932 ], + [ 7.6789779, 47.3922398 ], + [ 7.6791254, 47.392265 ], + [ 7.6791806000000005, 47.3922741 ], + [ 7.6792178, 47.3922775 ], + [ 7.6792545, 47.392278 ], + [ 7.6792896, 47.3922761 ], + [ 7.6793567, 47.3922703 ], + [ 7.6794708, 47.3922609 ], + [ 7.6795539999999995, 47.392254 ], + [ 7.6795892, 47.3922538 ], + [ 7.6796267, 47.3922583 ], + [ 7.6796592, 47.3922665 ], + [ 7.6798573, 47.3923165 ], + [ 7.6799233000000005, 47.3923237 ], + [ 7.6801207, 47.3923219 ], + [ 7.6801974, 47.3923319 ], + [ 7.6802852, 47.3923518 ], + [ 7.6803625, 47.3923559 ], + [ 7.6804521, 47.3923543 ], + [ 7.6805151, 47.392358 ], + [ 7.6807668, 47.3923944 ], + [ 7.6808484, 47.3924016 ], + [ 7.6816075999999995, 47.3924203 ], + [ 7.6821651, 47.3923911 ], + [ 7.6825742, 47.3923525 ], + [ 7.6827007, 47.3923556 ], + [ 7.6830668, 47.3923379 ], + [ 7.6835093, 47.3923315 ], + [ 7.6837733, 47.3923394 ], + [ 7.6839655, 47.3923702 ], + [ 7.6841512, 47.3924198 ], + [ 7.684299, 47.3923123 ], + [ 7.6845408, 47.392166 ], + [ 7.6849241, 47.3920632 ], + [ 7.6851443, 47.3920778 ], + [ 7.6851494, 47.3919468 ], + [ 7.6851969, 47.3914744 ], + [ 7.6851976, 47.3914361 ], + [ 7.6848689, 47.3913991 ], + [ 7.6840363, 47.3913111 ], + [ 7.683633, 47.3912913 ], + [ 7.6833316, 47.3912761 ], + [ 7.6830637, 47.3912363 ], + [ 7.6827597999999995, 47.3911262 ], + [ 7.6825553, 47.3910725 ], + [ 7.6823628, 47.3910419 ], + [ 7.6821879, 47.391032 ], + [ 7.6818907, 47.3910273 ], + [ 7.6819457, 47.3911353 ], + [ 7.6819102, 47.3911356 ], + [ 7.6817914, 47.3911339 ], + [ 7.6812237, 47.391197 ], + [ 7.6812316, 47.3912703 ], + [ 7.6803735, 47.3914136 ], + [ 7.6800748, 47.3914513 ], + [ 7.6795992, 47.3915231 ], + [ 7.6789195, 47.3915905 ], + [ 7.6786097, 47.3916144 ], + [ 7.67832, 47.39159 ], + [ 7.6780517, 47.3915675 ], + [ 7.678021, 47.3915649 ], + [ 7.6777401, 47.3915411 ], + [ 7.6775359, 47.3915238 ], + [ 7.6774418, 47.3915482 ], + [ 7.6771934, 47.3916129 ], + [ 7.6770493, 47.39163 ], + [ 7.6769704999999995, 47.3916566 ], + [ 7.6769028, 47.3916798 ], + [ 7.6768864, 47.3916798 ], + [ 7.6766961, 47.3916843 ], + [ 7.6767703, 47.3917576 ], + [ 7.6770402, 47.3919603 ], + [ 7.6770852, 47.3919985 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns240", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Deixberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Deixberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Deixberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Deixberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.825185, 47.3935337 ], + [ 7.8239019, 47.39419 ], + [ 7.8239146999999996, 47.3942886 ], + [ 7.8239322, 47.3946464 ], + [ 7.8239936, 47.3948905 ], + [ 7.8241922, 47.3949478 ], + [ 7.8242522999999995, 47.3949007 ], + [ 7.8243443, 47.3949298 ], + [ 7.8245819, 47.3950584 ], + [ 7.8248631, 47.3952295 ], + [ 7.825124, 47.3953877 ], + [ 7.8252763, 47.3954833 ], + [ 7.8255225, 47.39559 ], + [ 7.8255979, 47.3956237 ], + [ 7.8262854, 47.3955181 ], + [ 7.8262194, 47.3954192 ], + [ 7.8259537, 47.3950786 ], + [ 7.8259565, 47.394586 ], + [ 7.8259902, 47.394413 ], + [ 7.8261971, 47.3941544 ], + [ 7.8263481, 47.3940135 ], + [ 7.8264195999999995, 47.3938921 ], + [ 7.8269793, 47.393744 ], + [ 7.8270509, 47.3937967 ], + [ 7.8270707999999996, 47.3937913 ], + [ 7.8275868, 47.3936363 ], + [ 7.827727, 47.3935947 ], + [ 7.8279025, 47.3934964 ], + [ 7.8280132, 47.3934055 ], + [ 7.8280353, 47.3933873 ], + [ 7.828063, 47.3933645 ], + [ 7.8281206999999995, 47.3933102 ], + [ 7.8282209, 47.3932115 ], + [ 7.8284357, 47.393178 ], + [ 7.828574, 47.3930847 ], + [ 7.8288539, 47.3931951 ], + [ 7.8291143, 47.3933008 ], + [ 7.8292117999999995, 47.393356 ], + [ 7.82924, 47.3933778 ], + [ 7.8292616, 47.3933806 ], + [ 7.8293089, 47.3933702 ], + [ 7.8294234, 47.3932722 ], + [ 7.8296971, 47.3930383 ], + [ 7.8298852, 47.3929248 ], + [ 7.8300935, 47.3927273 ], + [ 7.8301471, 47.3926812 ], + [ 7.8301745, 47.3926607 ], + [ 7.8302824, 47.392578 ], + [ 7.8303754, 47.3924385 ], + [ 7.830501, 47.3924495 ], + [ 7.8307794, 47.3923191 ], + [ 7.8309794, 47.392416 ], + [ 7.831309, 47.3925442 ], + [ 7.83151, 47.3926985 ], + [ 7.8315944, 47.3927645 ], + [ 7.831859, 47.392739399999996 ], + [ 7.8324902, 47.3924041 ], + [ 7.8323669, 47.3920227 ], + [ 7.8326759, 47.3917729 ], + [ 7.8330128, 47.3919435 ], + [ 7.8331542, 47.3919531 ], + [ 7.8334073, 47.3921925 ], + [ 7.8337665, 47.3922764 ], + [ 7.8338485, 47.3923413 ], + [ 7.8341158, 47.3924133 ], + [ 7.834164, 47.392428699999996 ], + [ 7.8344531, 47.3925458 ], + [ 7.8345229, 47.3925924 ], + [ 7.8345678, 47.3925724 ], + [ 7.8358038, 47.3920145 ], + [ 7.8358185, 47.3919591 ], + [ 7.8355505999999995, 47.3919395 ], + [ 7.8352369, 47.3918796 ], + [ 7.8350025, 47.3917184 ], + [ 7.8346987, 47.391579 ], + [ 7.8343631, 47.3914734 ], + [ 7.8339302, 47.3913803 ], + [ 7.8335908, 47.3912288 ], + [ 7.8328282, 47.3910855 ], + [ 7.8323903999999995, 47.3910664 ], + [ 7.8321205, 47.3910267 ], + [ 7.832105, 47.3910619 ], + [ 7.831887, 47.3910185 ], + [ 7.8315521, 47.3909512 ], + [ 7.8310692, 47.390674 ], + [ 7.8309908, 47.3907254 ], + [ 7.830501, 47.3910464 ], + [ 7.8302338, 47.3913028 ], + [ 7.8300256, 47.3914508 ], + [ 7.8297827, 47.3916215 ], + [ 7.8295459, 47.3918316 ], + [ 7.8288913, 47.3923491 ], + [ 7.8285983, 47.3923218 ], + [ 7.828328, 47.392244 ], + [ 7.8283114, 47.3922516 ], + [ 7.8283005, 47.3922481 ], + [ 7.8282839, 47.3922422 ], + [ 7.8282678, 47.3922358 ], + [ 7.8282521, 47.3922289 ], + [ 7.828221, 47.3922132 ], + [ 7.8281988, 47.3922006 ], + [ 7.8281895, 47.3921944 ], + [ 7.8281796, 47.3921887 ], + [ 7.8281692, 47.3921834 ], + [ 7.8281583999999995, 47.3921785 ], + [ 7.8281472, 47.3921741 ], + [ 7.8281355999999995, 47.3921701 ], + [ 7.8281236, 47.3921667 ], + [ 7.828006, 47.3921453 ], + [ 7.8278345, 47.3921163 ], + [ 7.8277134, 47.3920965 ], + [ 7.8275615, 47.3920734 ], + [ 7.8274292, 47.3920531 ], + [ 7.8270772, 47.3919973 ], + [ 7.8267602, 47.3919479 ], + [ 7.8266822, 47.3919332 ], + [ 7.8265188, 47.3918923 ], + [ 7.8264028, 47.3918616 ], + [ 7.8263561, 47.3918526 ], + [ 7.8260133, 47.3917566 ], + [ 7.8253886999999995, 47.3919392 ], + [ 7.8250454, 47.3916817 ], + [ 7.8248949, 47.3917285 ], + [ 7.8249277, 47.3917633 ], + [ 7.8250974, 47.3919438 ], + [ 7.8251948, 47.3922459 ], + [ 7.8252684, 47.3923219 ], + [ 7.8254038999999995, 47.3923003 ], + [ 7.8255344000000004, 47.3924533 ], + [ 7.8256937, 47.3925014 ], + [ 7.8257705, 47.3925719 ], + [ 7.8258159, 47.3927408 ], + [ 7.8258623, 47.3927666 ], + [ 7.8258683, 47.392936399999996 ], + [ 7.8259301, 47.3929791 ], + [ 7.8262488999999995, 47.3929614 ], + [ 7.8264249, 47.3929746 ], + [ 7.82663, 47.3929885 ], + [ 7.8265607, 47.3930614 ], + [ 7.8264127, 47.3931867 ], + [ 7.8263915, 47.3932012 ], + [ 7.8263568, 47.3932197 ], + [ 7.8262951, 47.3932514 ], + [ 7.8262595, 47.3932664 ], + [ 7.8261709, 47.3932955 ], + [ 7.8261047, 47.3933189 ], + [ 7.8257493, 47.3934361 ], + [ 7.8254615, 47.3935313 ], + [ 7.8254204, 47.3935411 ], + [ 7.8254071, 47.3935449 ], + [ 7.8253924999999995, 47.393548 ], + [ 7.8253781, 47.3935505 ], + [ 7.8253634, 47.3935525 ], + [ 7.8253487, 47.3935538 ], + [ 7.8253338, 47.3935544 ], + [ 7.825319, 47.3935545 ], + [ 7.8253041, 47.3935539 ], + [ 7.8252893, 47.3935527 ], + [ 7.8252747, 47.3935509 ], + [ 7.8252603, 47.3935484 ], + [ 7.825185, 47.3935337 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns044", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Schanz - Walten", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Schanz - Walten", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Schanz - Walten", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Schanz - Walten", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.0599927, 46.6426866 ], + [ 7.060442, 46.6431571 ], + [ 7.0626799, 46.6421679 ], + [ 7.0643779, 46.6407536 ], + [ 7.0622962, 46.6399711 ], + [ 7.0619313, 46.6397885 ], + [ 7.0617288, 46.6395561 ], + [ 7.0611949, 46.6381311 ], + [ 7.0551946, 46.641472 ], + [ 7.0572131, 46.643482 ], + [ 7.057791, 46.643282 ], + [ 7.0590745, 46.6428057 ], + [ 7.0599927, 46.6426866 ] + ] + ], + "layer" : { + "upper" : 300, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "FR009", + "country" : "CHE", + "name" : [ + { + "text" : "HFR Riaz", + "lang" : "de-CH" + }, + { + "text" : "HFR Riaz", + "lang" : "fr-CH" + }, + { + "text" : "HFR Riaz", + "lang" : "it-CH" + }, + { + "text" : "HFR Riaz", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Freiburger Spital (HFR)", + "lang" : "de-CH" + }, + { + "text" : "Hôpital fribourgeois (HFR)", + "lang" : "fr-CH" + }, + { + "text" : "Hôpital fribourgeois (HFR)", + "lang" : "it-CH" + }, + { + "text" : "Hôpital fribourgeois (HFR)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Die Generaldirektion", + "lang" : "de-CH" + }, + { + "text" : "La direction générale", + "lang" : "fr-CH" + }, + { + "text" : "La direction générale", + "lang" : "it-CH" + }, + { + "text" : "La direction générale", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Sébastien Ruffieux, secrétaire général", + "lang" : "de-CH" + }, + { + "text" : "Sébastien Ruffieux, secrétaire général", + "lang" : "fr-CH" + }, + { + "text" : "Sébastien Ruffieux, secrétaire général", + "lang" : "it-CH" + }, + { + "text" : "Sébastien Ruffieux, secrétaire général", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.fr.ch/police-et-securite/criminalite-ordre-public-et-circulation/drones-legislation-et-demandes-de-derogation", + "email" : "sg@h-fr.ch", + "phone" : "0041263060110", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.0749698, 47.419694 ], + [ 7.0749653, 47.4195528 ], + [ 7.07495, 47.4194119 ], + [ 7.0749238, 47.4192718 ], + [ 7.0748868, 47.4191328 ], + [ 7.0748391, 47.4189952 ], + [ 7.0747809, 47.4188596 ], + [ 7.0747124, 47.4187262 ], + [ 7.0746336, 47.4185955 ], + [ 7.0745449, 47.4184677 ], + [ 7.0744464, 47.4183432 ], + [ 7.0743385, 47.4182225 ], + [ 7.0742214, 47.4181057 ], + [ 7.0740955, 47.4179932 ], + [ 7.073961, 47.4178854 ], + [ 7.0738185, 47.4177824 ], + [ 7.0736682, 47.4176847 ], + [ 7.0735105, 47.4175925 ], + [ 7.073346, 47.417506 ], + [ 7.073175, 47.4174254 ], + [ 7.0729981, 47.417351 ], + [ 7.0728157, 47.417283 ], + [ 7.0726282, 47.4172216 ], + [ 7.0724363, 47.417167 ], + [ 7.0722404, 47.4171192 ], + [ 7.0720412, 47.4170784 ], + [ 7.071839, 47.4170448 ], + [ 7.0716345, 47.4170184 ], + [ 7.0714283, 47.4169993 ], + [ 7.0712209, 47.4169875 ], + [ 7.0710129, 47.4169831 ], + [ 7.0708048, 47.4169862 ], + [ 7.0705972, 47.4169966 ], + [ 7.0703908, 47.4170143 ], + [ 7.0701859, 47.4170394 ], + [ 7.0699833, 47.4170717 ], + [ 7.0697835, 47.4171112 ], + [ 7.069587, 47.4171577 ], + [ 7.0693943, 47.4172111 ], + [ 7.0692061, 47.4172713 ], + [ 7.0690227, 47.4173382 ], + [ 7.0688447, 47.4174114 ], + [ 7.0686726, 47.4174908 ], + [ 7.0685069, 47.4175763 ], + [ 7.068348, 47.4176675 ], + [ 7.0681964, 47.4177643 ], + [ 7.0680524, 47.4178663 ], + [ 7.0679165, 47.4179733 ], + [ 7.067789, 47.4180849 ], + [ 7.0676703, 47.4182009 ], + [ 7.0675607, 47.418321 ], + [ 7.0674605, 47.4184449 ], + [ 7.0673701, 47.4185721 ], + [ 7.0672895, 47.4187023 ], + [ 7.0672191, 47.4188353 ], + [ 7.067159, 47.4189705 ], + [ 7.0671095, 47.4191077 ], + [ 7.0670706, 47.4192465 ], + [ 7.0670425, 47.4193865 ], + [ 7.0670252, 47.4195273 ], + [ 7.0670187, 47.4196685 ], + [ 7.0670232, 47.4198097 ], + [ 7.0670385, 47.4199506 ], + [ 7.0670647, 47.4200907 ], + [ 7.0671017, 47.4202297 ], + [ 7.0671493, 47.4203672 ], + [ 7.0672075, 47.4205028 ], + [ 7.067276, 47.4206362 ], + [ 7.0673548, 47.420767 ], + [ 7.0674435, 47.4208948 ], + [ 7.0675419, 47.4210192 ], + [ 7.0676499, 47.42114 ], + [ 7.0677669, 47.4212568 ], + [ 7.0678929, 47.4213693 ], + [ 7.0680273, 47.4214772 ], + [ 7.0681699, 47.4215801 ], + [ 7.0683202, 47.4216778 ], + [ 7.0684778, 47.4217701 ], + [ 7.0686424, 47.4218566 ], + [ 7.0688133, 47.4219372 ], + [ 7.0689903, 47.422011499999996 ], + [ 7.0691728, 47.4220795 ], + [ 7.0693602, 47.422141 ], + [ 7.0695521, 47.4221956 ], + [ 7.069748, 47.4222434 ], + [ 7.0699473, 47.4222842 ], + [ 7.0701495, 47.4223178 ], + [ 7.070354, 47.4223442 ], + [ 7.0705602, 47.4223633 ], + [ 7.0707676, 47.4223751 ], + [ 7.0709757, 47.4223794 ], + [ 7.0711838, 47.4223764 ], + [ 7.0713913999999995, 47.422366 ], + [ 7.0715979, 47.4223482 ], + [ 7.0718027, 47.4223231 ], + [ 7.0720053, 47.4222908 ], + [ 7.0722052, 47.4222513 ], + [ 7.0724017, 47.4222048 ], + [ 7.0725944, 47.4221514 ], + [ 7.0727827, 47.4220911 ], + [ 7.0729661, 47.4220243 ], + [ 7.073144, 47.4219511 ], + [ 7.0733160999999996, 47.4218716 ], + [ 7.0734818, 47.4217862 ], + [ 7.0736407, 47.4216949 ], + [ 7.0737924, 47.4215982 ], + [ 7.0739363, 47.4214962 ], + [ 7.0740723, 47.4213892 ], + [ 7.0741997, 47.4212775 ], + [ 7.0743184, 47.4211615 ], + [ 7.074428, 47.4210414 ], + [ 7.0745282, 47.4209175 ], + [ 7.0746186, 47.4207903 ], + [ 7.0746992, 47.4206601 ], + [ 7.0747696, 47.4205271 ], + [ 7.0748296, 47.4203919 ], + [ 7.0748791, 47.4202547 ], + [ 7.074918, 47.4201159 ], + [ 7.0749461, 47.419976 ], + [ 7.0749634, 47.4198352 ], + [ 7.0749698, 47.419694 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "MPO0001", + "country" : "CHE", + "name" : [ + { + "text" : "Prison de Porrentruy, l'Orangerie", + "lang" : "de-CH" + }, + { + "text" : "Prison de Porrentruy, l'Orangerie", + "lang" : "fr-CH" + }, + { + "text" : "Prison de Porrentruy, l'Orangerie", + "lang" : "it-CH" + }, + { + "text" : "Prison de Porrentruy, l'Orangerie", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Service juridique", + "lang" : "de-CH" + }, + { + "text" : "Service juridique", + "lang" : "fr-CH" + }, + { + "text" : "Service juridique", + "lang" : "it-CH" + }, + { + "text" : "Service juridique", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Service juridique", + "lang" : "de-CH" + }, + { + "text" : "Service juridique", + "lang" : "fr-CH" + }, + { + "text" : "Service juridique", + "lang" : "it-CH" + }, + { + "text" : "Service juridique", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.jura.ch/fr/Autorites/Administration/DIN/JUR/Prison-de-Porrentruy/Prison-de-Porrentruy.html", + "email" : "secr.jur@jura.ch", + "phone" : "0041324205630", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4937142, 47.4412498 ], + [ 7.4937248, 47.4412433 ], + [ 7.4937501, 47.4412304 ], + [ 7.4938999, 47.4411501 ], + [ 7.4938974, 47.4411425 ], + [ 7.4936179, 47.4406883 ], + [ 7.4939897, 47.4404812 ], + [ 7.4941332, 47.440242 ], + [ 7.4942009, 47.4401269 ], + [ 7.4945141, 47.4401063 ], + [ 7.4951082, 47.4402157 ], + [ 7.4955878, 47.4402695 ], + [ 7.4956800999999995, 47.440262 ], + [ 7.495955, 47.4402397 ], + [ 7.4960695, 47.4402305 ], + [ 7.4961827, 47.4402203 ], + [ 7.4962057, 47.440174 ], + [ 7.4961842, 47.4401566 ], + [ 7.4961603, 47.4401177 ], + [ 7.4961881, 47.4400527 ], + [ 7.4962546, 47.4399752 ], + [ 7.4963342, 47.4398745 ], + [ 7.4963812, 47.4397489 ], + [ 7.4963922, 47.439614 ], + [ 7.4963524, 47.4395164 ], + [ 7.4961749, 47.4393995 ], + [ 7.4960131, 47.4392548 ], + [ 7.4958679, 47.4390669 ], + [ 7.4959497, 47.4389532 ], + [ 7.495819, 47.4388274 ], + [ 7.4957501, 47.438884 ], + [ 7.4955878, 47.4389889 ], + [ 7.4954347, 47.4390632 ], + [ 7.49537, 47.4390678 ], + [ 7.4951433, 47.4391304 ], + [ 7.4948173, 47.4392607 ], + [ 7.494587, 47.439011 ], + [ 7.4944796, 47.4388512 ], + [ 7.4942984, 47.4387775 ], + [ 7.4942391, 47.4386765 ], + [ 7.4943073, 47.4386333 ], + [ 7.4944498, 47.4385057 ], + [ 7.4944818, 47.4384206 ], + [ 7.4945661999999995, 47.4383729 ], + [ 7.4946528, 47.4383074 ], + [ 7.4947822, 47.4381882 ], + [ 7.4949037, 47.4380649 ], + [ 7.4949062, 47.4379974 ], + [ 7.4949213, 47.4379348 ], + [ 7.4949683, 47.437847 ], + [ 7.4949826, 47.437764 ], + [ 7.4950699, 47.4376484 ], + [ 7.4951765, 47.4375139 ], + [ 7.495255, 47.4373749 ], + [ 7.4954149, 47.437228 ], + [ 7.4955109, 47.4370713 ], + [ 7.4956713, 47.4369191 ], + [ 7.4957842, 47.4368112 ], + [ 7.4959112, 47.4366974 ], + [ 7.4960223, 47.4365983 ], + [ 7.4961013, 47.4365153 ], + [ 7.4961453, 47.4364709 ], + [ 7.4959982, 47.4363762 ], + [ 7.4959369, 47.4364203 ], + [ 7.4957426, 47.436552 ], + [ 7.4955455, 47.4366728 ], + [ 7.4953745, 47.4367606 ], + [ 7.4950593, 47.4369101 ], + [ 7.4947182, 47.4370684 ], + [ 7.4943338, 47.4372635 ], + [ 7.494053, 47.4374297 ], + [ 7.4939504, 47.43749 ], + [ 7.4937843, 47.4375837 ], + [ 7.4937451, 47.4376033 ], + [ 7.4934896, 47.4377307 ], + [ 7.493159, 47.4378502 ], + [ 7.4928001, 47.4379737 ], + [ 7.4924276, 47.4381084 ], + [ 7.4922045, 47.4381865 ], + [ 7.4922257, 47.4382435 ], + [ 7.4917822, 47.4383799 ], + [ 7.4914056, 47.4384591 ], + [ 7.491409, 47.4384734 ], + [ 7.4907783, 47.4386101 ], + [ 7.4906982, 47.4386039 ], + [ 7.4904989, 47.4386232 ], + [ 7.4901231, 47.4387135 ], + [ 7.4896622, 47.4387668 ], + [ 7.4892471, 47.4387904 ], + [ 7.4888038, 47.4388045 ], + [ 7.4884636, 47.438808 ], + [ 7.48833, 47.4388084 ], + [ 7.488341, 47.4388341 ], + [ 7.4883896, 47.4388915 ], + [ 7.4884543, 47.4389724 ], + [ 7.4885071, 47.4390827 ], + [ 7.4884705, 47.4390899 ], + [ 7.4866026, 47.4395392 ], + [ 7.4853399, 47.4399123 ], + [ 7.4853414, 47.4400385 ], + [ 7.4853477999999996, 47.4403492 ], + [ 7.4853823, 47.4406751 ], + [ 7.4856535, 47.4406599 ], + [ 7.4858835, 47.4406361 ], + [ 7.4861426, 47.4405988 ], + [ 7.4861679, 47.4406444 ], + [ 7.4862329, 47.4406259 ], + [ 7.4863229, 47.4406003 ], + [ 7.486439, 47.4405712 ], + [ 7.4864828, 47.4405603 ], + [ 7.4865249, 47.4405465 ], + [ 7.4865649, 47.4405302 ], + [ 7.4865945, 47.4405156 ], + [ 7.4866224, 47.4404996 ], + [ 7.4866486, 47.4404822 ], + [ 7.4867468, 47.4404113 ], + [ 7.4868727, 47.4403299 ], + [ 7.487083, 47.4402463 ], + [ 7.4874335, 47.4401207 ], + [ 7.4878391, 47.4399685 ], + [ 7.4880007, 47.4399092 ], + [ 7.4882748, 47.4406707 ], + [ 7.4883216, 47.4406618 ], + [ 7.4884976, 47.440623 ], + [ 7.4888017, 47.4405767 ], + [ 7.4888115, 47.4405442 ], + [ 7.4887857, 47.4403919 ], + [ 7.4889426, 47.4403294 ], + [ 7.4892511, 47.4402173 ], + [ 7.4895262, 47.4401234 ], + [ 7.4898029, 47.4400668 ], + [ 7.4901171, 47.4399592 ], + [ 7.4901971, 47.4399786 ], + [ 7.4903171, 47.4399291 ], + [ 7.4904874, 47.4398362 ], + [ 7.490622, 47.4397919 ], + [ 7.4908935, 47.4397326 ], + [ 7.4911932, 47.439663 ], + [ 7.4914788, 47.439601 ], + [ 7.4917133, 47.4395715 ], + [ 7.4917625, 47.4395653 ], + [ 7.4920194, 47.4395505 ], + [ 7.4921848, 47.4394878 ], + [ 7.4922945, 47.4393876 ], + [ 7.4924335, 47.4393612 ], + [ 7.4926177, 47.4393667 ], + [ 7.492783, 47.4393853 ], + [ 7.4929987, 47.4394028 ], + [ 7.4932742, 47.4393823 ], + [ 7.4934278, 47.4393797 ], + [ 7.4934811, 47.4394074 ], + [ 7.493477, 47.4394562 ], + [ 7.4934024, 47.4395268 ], + [ 7.4933126, 47.4396101 ], + [ 7.4931723, 47.4397045 ], + [ 7.4930201, 47.4397849 ], + [ 7.4928013, 47.4398792 ], + [ 7.4925920999999995, 47.4400089 ], + [ 7.4923269, 47.4401103 ], + [ 7.4920153, 47.4401677 ], + [ 7.4918855, 47.4401996 ], + [ 7.4917841, 47.4401721 ], + [ 7.4917139, 47.4401747 ], + [ 7.4917242, 47.4403102 ], + [ 7.4918649, 47.4405152 ], + [ 7.4919597, 47.4406576 ], + [ 7.4919777, 47.4407651 ], + [ 7.4920764, 47.440804 ], + [ 7.4923528, 47.4408347 ], + [ 7.4926007, 47.44085 ], + [ 7.4928565, 47.4409079 ], + [ 7.4930448, 47.4409639 ], + [ 7.4933339, 47.4410436 ], + [ 7.4934941, 47.441168 ], + [ 7.4937153, 47.4412918 ], + [ 7.4937142, 47.4412498 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns015", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Hag", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Hag", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Hag", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Hag", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.1868662, 46.461894 ], + [ 7.1870539, 46.4619501 ], + [ 7.1871846999999995, 46.4619837 ], + [ 7.1873148, 46.461989 ], + [ 7.1874124, 46.4620001 ], + [ 7.1874939, 46.4619717 ], + [ 7.1876323, 46.4619602 ], + [ 7.1878357, 46.4619654 ], + [ 7.1880559, 46.4620158 ], + [ 7.1882191, 46.4620889 ], + [ 7.1883823, 46.4621675 ], + [ 7.188586, 46.4622798 ], + [ 7.1887824, 46.4623923 ], + [ 7.1889374, 46.4624767 ], + [ 7.18906, 46.4625329 ], + [ 7.1892307, 46.4625607 ], + [ 7.1893696, 46.4625999 ], + [ 7.1894508, 46.4626393 ], + [ 7.189614, 46.4627236 ], + [ 7.1897447, 46.4627798 ], + [ 7.1898584, 46.4628246 ], + [ 7.1900868, 46.4628806 ], + [ 7.1906411, 46.4630037 ], + [ 7.1909346, 46.4630538 ], + [ 7.1910242, 46.4630424 ], + [ 7.1910237, 46.4629746 ], + [ 7.1910241, 46.4628844 ], + [ 7.1909905, 46.4627603 ], + [ 7.1909251, 46.4626476 ], + [ 7.1908266, 46.462473 ], + [ 7.1907452, 46.4623095 ], + [ 7.190688, 46.4621911 ], + [ 7.1906464, 46.4620332 ], + [ 7.1906455, 46.461864 ], + [ 7.1906041, 46.4616609 ], + [ 7.190547, 46.461537 ], + [ 7.1904654, 46.4613905 ], + [ 7.1903913, 46.4612326 ], + [ 7.1903746, 46.4611536 ], + [ 7.1903663, 46.461007 ], + [ 7.1904062, 46.4608207 ], + [ 7.1904631, 46.4606513 ], + [ 7.1905439, 46.4604311 ], + [ 7.1906655, 46.4601713 ], + [ 7.1908759, 46.4598832 ], + [ 7.1910464, 46.4595952 ], + [ 7.1912085, 46.4593748 ], + [ 7.1914525, 46.4592051 ], + [ 7.1915496, 46.4591485 ], + [ 7.1915655, 46.4590469 ], + [ 7.1915246, 46.4589229 ], + [ 7.1915244, 46.4587875 ], + [ 7.1915241, 46.4586859 ], + [ 7.1915807, 46.4585673 ], + [ 7.1916619, 46.458426 ], + [ 7.191751, 46.4583357 ], + [ 7.1917996, 46.4582114 ], + [ 7.191783, 46.4581099 ], + [ 7.1919776, 46.4578951 ], + [ 7.1922548, 46.4579397 ], + [ 7.1923032, 46.4578381 ], + [ 7.1930126, 46.4580285 ], + [ 7.1932235, 46.4578024 ], + [ 7.1932887, 46.457774 ], + [ 7.1933447, 46.4576273 ], + [ 7.1933929, 46.4574184 ], + [ 7.1934000000000005, 46.4570912 ], + [ 7.1933753, 46.4568034 ], + [ 7.1933416, 46.4565102 ], + [ 7.1932923, 46.4562734 ], + [ 7.1932264, 46.4560873 ], + [ 7.1931691, 46.4559914 ], + [ 7.1932418, 46.4559235 ], + [ 7.1933557, 46.4559178 ], + [ 7.193568, 46.4559286 ], + [ 7.193804, 46.4559111 ], + [ 7.1939667, 46.4559109 ], + [ 7.1941213, 46.4558937 ], + [ 7.1942847, 46.4559328 ], + [ 7.1944147, 46.4559664 ], + [ 7.1945212, 46.4559887 ], + [ 7.1946513, 46.4559997 ], + [ 7.1948303, 46.4559825 ], + [ 7.1950012, 46.4559822 ], + [ 7.1951809, 46.4559931 ], + [ 7.1954004, 46.4560321 ], + [ 7.1956125, 46.4560712 ], + [ 7.1957922, 46.4561102 ], + [ 7.1959464, 46.456189 ], + [ 7.1961503, 46.4562393 ], + [ 7.19646, 46.4563065 ], + [ 7.1967372, 46.4563623 ], + [ 7.1969658, 46.4563618 ], + [ 7.1972262, 46.4563444 ], + [ 7.1977231, 46.4563828 ], + [ 7.1980815, 46.4564498 ], + [ 7.1983342, 46.4565169 ], + [ 7.1984725, 46.4565223 ], + [ 7.1985704, 46.4564601 ], + [ 7.1987898, 46.4563298 ], + [ 7.199124, 46.4563686 ], + [ 7.1994087, 46.456385 ], + [ 7.1994818, 46.4564017 ], + [ 7.1995068, 46.4564581 ], + [ 7.1995147, 46.4565033 ], + [ 7.1995069, 46.4566105 ], + [ 7.1994999, 46.456729 ], + [ 7.1994761, 46.4569603 ], + [ 7.1997288, 46.4570218 ], + [ 7.1997861, 46.4571289 ], + [ 7.2000221, 46.4571172 ], + [ 7.1999653, 46.4572639 ], + [ 7.2000878, 46.4573371 ], + [ 7.2003324, 46.4574042 ], + [ 7.2009847, 46.4576117 ], + [ 7.2011969, 46.4576508 ], + [ 7.2013916, 46.457588200000004 ], + [ 7.201636, 46.4575144 ], + [ 7.2018316, 46.4574407 ], + [ 7.2020429, 46.4573048 ], + [ 7.2021239, 46.4571804 ], + [ 7.2021474, 46.4570225 ], + [ 7.2021385, 46.456825 ], + [ 7.2021871, 46.4566782 ], + [ 7.2023575, 46.4564184 ], + [ 7.2024054, 46.4562603 ], + [ 7.2025189, 46.4561416 ], + [ 7.2025758, 46.4559722 ], + [ 7.2026157, 46.4557803 ], + [ 7.202623, 46.4555884 ], + [ 7.2026717, 46.4554304 ], + [ 7.2027686, 46.4552271 ], + [ 7.2028661, 46.4550577 ], + [ 7.2029221, 46.4549051 ], + [ 7.2028891999999995, 46.454798 ], + [ 7.2027912, 46.4547136 ], + [ 7.2026612, 46.4546575 ], + [ 7.2024979, 46.4546184 ], + [ 7.2021308, 46.4544893 ], + [ 7.2017156, 46.4543718 ], + [ 7.2013321, 46.4542766 ], + [ 7.2007533, 46.4541706 ], + [ 7.2004193, 46.4540923 ], + [ 7.2001667, 46.4540081 ], + [ 7.1999623, 46.4538844 ], + [ 7.1996856, 46.4537215 ], + [ 7.1993751, 46.4534795 ], + [ 7.1990646, 46.4532488 ], + [ 7.1987955, 46.4530238 ], + [ 7.1985013, 46.4527704 ], + [ 7.1982972, 46.4525734 ], + [ 7.1981086, 46.4523481 ], + [ 7.1979703, 46.4521735 ], + [ 7.1979041, 46.4520608 ], + [ 7.1978231, 46.451982 ], + [ 7.197725, 46.4519031 ], + [ 7.1976183, 46.4517567 ], + [ 7.1974873, 46.4515764 ], + [ 7.1973397, 46.4513003 ], + [ 7.1972336, 46.451024 ], + [ 7.1971508, 46.4507985 ], + [ 7.1971014, 46.4505617 ], + [ 7.1971089, 46.4503304 ], + [ 7.1971325, 46.4501497 ], + [ 7.1972377, 46.4499013 ], + [ 7.1973678, 46.4497374 ], + [ 7.1974732, 46.44963 ], + [ 7.1975048, 46.4494777 ], + [ 7.1974883, 46.4493423 ], + [ 7.1974313, 46.4491845 ], + [ 7.1973896, 46.4490322 ], + [ 7.1973399, 46.4488686 ], + [ 7.1973474, 46.4486543 ], + [ 7.1974285, 46.4485299 ], + [ 7.1975258, 46.4484056 ], + [ 7.1975012, 46.4482703 ], + [ 7.1974277, 46.4481463 ], + [ 7.1973868, 46.4480335 ], + [ 7.1972481, 46.4479379 ], + [ 7.1970598, 46.447848 ], + [ 7.1968399, 46.4477188 ], + [ 7.196693, 46.4476457 ], + [ 7.1965057, 46.4475164 ], + [ 7.1963095, 46.44737 ], + [ 7.1961628, 46.4472631 ], + [ 7.196081, 46.4471731 ], + [ 7.1960312, 46.4470434 ], + [ 7.1959661, 46.4468743 ], + [ 7.1958597, 46.4466544 ], + [ 7.1957775, 46.4464796 ], + [ 7.1957032, 46.4461808 ], + [ 7.1956376, 46.4459439 ], + [ 7.1956361, 46.4457184 ], + [ 7.1956602, 46.4455998 ], + [ 7.1957495, 46.4454642 ], + [ 7.1959284, 46.4452945 ], + [ 7.1960176, 46.4451816 ], + [ 7.1961311, 46.4450798 ], + [ 7.1961877, 46.4449669 ], + [ 7.1962118, 46.4448427 ], + [ 7.1962034, 46.4447354 ], + [ 7.1961378, 46.4446566 ], + [ 7.1960805, 46.4445609 ], + [ 7.1961377, 46.4444986 ], + [ 7.1962023, 46.4444252 ], + [ 7.1963158, 46.444329 ], + [ 7.1964212, 46.4442216 ], + [ 7.1965023, 46.4440916 ], + [ 7.1965264, 46.4439844 ], + [ 7.1965016, 46.4438773 ], + [ 7.19642, 46.443759 ], + [ 7.1963465, 46.4436575 ], + [ 7.1962647, 46.4435618 ], + [ 7.1961831, 46.4434492 ], + [ 7.1961825, 46.4433928 ], + [ 7.1962478, 46.4433418 ], + [ 7.1962962, 46.4432457 ], + [ 7.1963039, 46.4431781 ], + [ 7.196296, 46.443116 ], + [ 7.1963443, 46.443037 ], + [ 7.1964422, 46.442969 ], + [ 7.1966371, 46.4428671 ], + [ 7.1968237, 46.4427821 ], + [ 7.196653, 46.4427543 ], + [ 7.1964816, 46.4427264 ], + [ 7.1962946, 46.4426929 ], + [ 7.1960824, 46.4426821 ], + [ 7.1959606, 46.4426427 ], + [ 7.1959113, 46.4425639 ], + [ 7.1958463, 46.4425471 ], + [ 7.1957074, 46.4425248 ], + [ 7.1955938, 46.442463 ], + [ 7.1954306, 46.4424013 ], + [ 7.1948116, 46.4424026 ], + [ 7.1948192, 46.4421599 ], + [ 7.1948678, 46.4420243 ], + [ 7.194965, 46.4419283 ], + [ 7.1950868, 46.4418039 ], + [ 7.1952079, 46.4416457 ], + [ 7.1953054, 46.4414819 ], + [ 7.1953133, 46.4413408 ], + [ 7.1952143, 46.4411154 ], + [ 7.1950916, 46.4409237 ], + [ 7.195002, 46.440765999999996 ], + [ 7.1949392, 46.4406174 ], + [ 7.1931373, 46.4362326 ], + [ 7.1926206, 46.4353949 ], + [ 7.1924662999999995, 46.4349898 ], + [ 7.1924289, 46.4346299 ], + [ 7.1926262, 46.4341625 ], + [ 7.1929276, 46.4336684 ], + [ 7.1932154, 46.4333272 ], + [ 7.1937372, 46.4330405 ], + [ 7.1943629, 46.432772 ], + [ 7.1948852, 46.4323413 ], + [ 7.1952774, 46.4319194 ], + [ 7.1956039, 46.4316502 ], + [ 7.1964776, 46.4312023 ], + [ 7.1967394, 46.4308431 ], + [ 7.1968708, 46.4305465 ], + [ 7.1973009, 46.4303675 ], + [ 7.197953, 46.4300091 ], + [ 7.1990885, 46.4291839 ], + [ 7.1994545, 46.4287979 ], + [ 7.1999806, 46.4274766 ], + [ 7.1999967, 46.4273386 ], + [ 7.199697, 46.4274471 ], + [ 7.1995342, 46.4274982 ], + [ 7.1994125, 46.4276112 ], + [ 7.1993072, 46.4277018 ], + [ 7.1991605, 46.4277867 ], + [ 7.1990224, 46.4277644 ], + [ 7.1989249, 46.427747600000004 ], + [ 7.1988273, 46.4277535 ], + [ 7.1986557, 46.4277538 ], + [ 7.1984118, 46.42776 ], + [ 7.1981433, 46.4278001 ], + [ 7.1979073, 46.4278287 ], + [ 7.1976877, 46.4278461 ], + [ 7.1975332, 46.4278633 ], + [ 7.1973706, 46.4278636 ], + [ 7.1972396, 46.4278639 ], + [ 7.1970284, 46.4278304 ], + [ 7.1968576, 46.4278478 ], + [ 7.1967436, 46.4278762 ], + [ 7.1966052, 46.427916 ], + [ 7.1964179, 46.4279784 ], + [ 7.1962396, 46.428024 ], + [ 7.1960768999999996, 46.4280581 ], + [ 7.1959628, 46.4281035 ], + [ 7.1957999, 46.4281771 ], + [ 7.195703, 46.4282055 ], + [ 7.1954989, 46.4282116 ], + [ 7.1953362, 46.4282288 ], + [ 7.195149, 46.4282631 ], + [ 7.1949701, 46.4282746 ], + [ 7.1948642, 46.4283145 ], + [ 7.1947104, 46.4283542 ], + [ 7.1945881, 46.4284221 ], + [ 7.1944096, 46.428524 ], + [ 7.1941739, 46.4286769 ], + [ 7.1938325, 46.4290104 ], + [ 7.1937196, 46.4291573 ], + [ 7.1935489, 46.429327 ], + [ 7.1934192, 46.4294231 ], + [ 7.1932888, 46.4294968 ], + [ 7.1931346, 46.4296099 ], + [ 7.1930131, 46.4296948 ], + [ 7.1928989, 46.4297796 ], + [ 7.1927205, 46.429842 ], + [ 7.192533, 46.4299439 ], + [ 7.192322, 46.4300459 ], + [ 7.1921265, 46.4301083 ], + [ 7.1919882, 46.4301368 ], + [ 7.1918099, 46.4301767 ], + [ 7.1916226, 46.4302334 ], + [ 7.1914272, 46.430296 ], + [ 7.191232, 46.4303189 ], + [ 7.1910856, 46.4303135 ], + [ 7.1909549, 46.4302743 ], + [ 7.1908243, 46.4301956 ], + [ 7.1906939, 46.4300773 ], + [ 7.1905959, 46.4299986 ], + [ 7.190587, 46.4298124 ], + [ 7.1905543, 46.429677 ], + [ 7.190432, 46.4295757 ], + [ 7.1903344, 46.4295759 ], + [ 7.1902367, 46.4296043 ], + [ 7.1900657, 46.4296667 ], + [ 7.1899843, 46.4296838 ], + [ 7.1897892, 46.4296559 ], + [ 7.1896511, 46.4296449 ], + [ 7.1894794, 46.4296566 ], + [ 7.1893825, 46.4297076 ], + [ 7.1892272, 46.4296909 ], + [ 7.1890729, 46.429657399999996 ], + [ 7.1889022, 46.4296465 ], + [ 7.1887713, 46.4296298 ], + [ 7.1886817, 46.4296637 ], + [ 7.1885603, 46.4297261 ], + [ 7.1884794, 46.4298165 ], + [ 7.1883414, 46.4299408 ], + [ 7.1881866, 46.4299976 ], + [ 7.1881053, 46.4299978 ], + [ 7.1879746, 46.4299642 ], + [ 7.1877958, 46.4299306 ], + [ 7.1874943, 46.4298973 ], + [ 7.1871848, 46.4298472 ], + [ 7.1869321, 46.4298082 ], + [ 7.1867046, 46.4297692 ], + [ 7.1865329, 46.4297808 ], + [ 7.1863953, 46.4298318 ], + [ 7.1862567, 46.4298998 ], + [ 7.1860944, 46.4300242 ], + [ 7.1859318, 46.4301882 ], + [ 7.1857368, 46.4303239 ], + [ 7.1856317, 46.4303806 ], + [ 7.1855171, 46.4303583 ], + [ 7.1854523, 46.4303189 ], + [ 7.1853711, 46.4302908 ], + [ 7.1851997, 46.4302572 ], + [ 7.1850046, 46.4302407 ], + [ 7.1847923, 46.4302411 ], + [ 7.1846542, 46.4302301 ], + [ 7.1844347, 46.4302192 ], + [ 7.1842225, 46.4302197 ], + [ 7.1840598, 46.4302369 ], + [ 7.1838483, 46.4302429 ], + [ 7.1836856000000004, 46.4302545 ], + [ 7.1835392, 46.4302605 ], + [ 7.1834253, 46.4302777 ], + [ 7.1832702, 46.430244 ], + [ 7.183124, 46.4301992 ], + [ 7.1829609, 46.4301204 ], + [ 7.1827897, 46.4300531 ], + [ 7.1825695, 46.4300197 ], + [ 7.1823581, 46.4300201 ], + [ 7.1821466, 46.4300317 ], + [ 7.1820484, 46.4299868 ], + [ 7.1819829, 46.4299249 ], + [ 7.1818199, 46.4298293 ], + [ 7.1815028, 46.4298129 ], + [ 7.1812746, 46.4297513 ], + [ 7.1810218, 46.4297462 ], + [ 7.1808755, 46.4297352 ], + [ 7.1806721, 46.429758 ], + [ 7.1805012, 46.4297754 ], + [ 7.1803222, 46.4297983 ], + [ 7.1801271, 46.4297929 ], + [ 7.1799318, 46.4298216 ], + [ 7.1797114, 46.4298277 ], + [ 7.1795489, 46.4298222 ], + [ 7.1793537, 46.429817 ], + [ 7.1791173, 46.4297779 ], + [ 7.1789384, 46.4297782 ], + [ 7.1786611, 46.4297845 ], + [ 7.1784089, 46.4298019 ], + [ 7.1781811, 46.4298361 ], + [ 7.1780183, 46.4298646 ], + [ 7.1778474, 46.4298988 ], + [ 7.1776279, 46.4298991 ], + [ 7.1774565, 46.4298656 ], + [ 7.1772364, 46.4297983 ], + [ 7.1770578, 46.4297535 ], + [ 7.1768051, 46.4297089 ], + [ 7.17652, 46.4296474 ], + [ 7.1760966, 46.4295973 ], + [ 7.1757381, 46.429581 ], + [ 7.1754699, 46.4295534 ], + [ 7.1752823, 46.4295029 ], + [ 7.1750702, 46.4294694 ], + [ 7.1748995, 46.4294641 ], + [ 7.1747449, 46.4294813 ], + [ 7.1745822, 46.4295042 ], + [ 7.1744602, 46.4295214 ], + [ 7.1743219, 46.4295272 ], + [ 7.174208, 46.429533 ], + [ 7.1740454, 46.4295333 ], + [ 7.1739064, 46.4295223 ], + [ 7.1737763, 46.4295169 ], + [ 7.1735724, 46.429489 ], + [ 7.1733855, 46.4294668 ], + [ 7.1732716, 46.4294671 ], + [ 7.1731253, 46.4294673 ], + [ 7.1729869, 46.4294958 ], + [ 7.1728566, 46.4295298 ], + [ 7.1727182, 46.4295639 ], + [ 7.1726204, 46.4296262 ], + [ 7.1725064, 46.4296546 ], + [ 7.1722786, 46.4296663 ], + [ 7.1720591, 46.429661 ], + [ 7.1718555, 46.4297347 ], + [ 7.1717177, 46.429814 ], + [ 7.1715546, 46.4298989 ], + [ 7.17136, 46.4299556 ], + [ 7.1704234, 46.4299348 ], + [ 7.1704151, 46.4297995 ], + [ 7.1697314, 46.4297668 ], + [ 7.1698039, 46.4295804 ], + [ 7.1695029, 46.4296036 ], + [ 7.169446, 46.4296036 ], + [ 7.1693558, 46.4295926 ], + [ 7.1692828, 46.42957 ], + [ 7.1692341, 46.4295476 ], + [ 7.1691767, 46.42948 ], + [ 7.1691193, 46.4294124 ], + [ 7.1690216, 46.4292772 ], + [ 7.1689074999999995, 46.4291532 ], + [ 7.1688012, 46.4291083 ], + [ 7.1687282, 46.4290803 ], + [ 7.1686306, 46.4290805 ], + [ 7.1685004, 46.4291088 ], + [ 7.1683945, 46.4291429 ], + [ 7.1682886, 46.4291939 ], + [ 7.1682322, 46.4292448 ], + [ 7.1681425, 46.4292956 ], + [ 7.1680123, 46.4293241 ], + [ 7.1678009, 46.4293132 ], + [ 7.16719, 46.4291901 ], + [ 7.1668393, 46.4290892 ], + [ 7.1666687, 46.42905 ], + [ 7.1665545, 46.4289769 ], + [ 7.1664483, 46.4289037 ], + [ 7.1663422, 46.4288192 ], + [ 7.1662526, 46.4286953 ], + [ 7.1661703, 46.4285713 ], + [ 7.1660807, 46.4284248 ], + [ 7.1660315, 46.4283628 ], + [ 7.1659422, 46.4283235 ], + [ 7.1658604, 46.4282672 ], + [ 7.1657949, 46.4281884 ], + [ 7.165697, 46.4280982 ], + [ 7.1656158, 46.4280758 ], + [ 7.1654526, 46.428031 ], + [ 7.1652000000000005, 46.4279637 ], + [ 7.1649964, 46.4278795 ], + [ 7.1646868, 46.4278291 ], + [ 7.1641908, 46.428005 ], + [ 7.1640117, 46.4280391 ], + [ 7.163857, 46.4280788 ], + [ 7.1637276, 46.4281129 ], + [ 7.163621, 46.4281131 ], + [ 7.1635154, 46.428102 ], + [ 7.1634016, 46.4280965 ], + [ 7.163296, 46.4280742 ], + [ 7.1631735, 46.4280123 ], + [ 7.1630511, 46.4279449 ], + [ 7.1628723, 46.4279226 ], + [ 7.1627496, 46.4279115 ], + [ 7.1626357, 46.4279343 ], + [ 7.1625224, 46.4279796 ], + [ 7.162392, 46.4280363 ], + [ 7.1622291, 46.4280986 ], + [ 7.1620907, 46.4281214 ], + [ 7.1618469, 46.4280992 ], + [ 7.1616917, 46.4280769 ], + [ 7.1614968, 46.4280265 ], + [ 7.1613336, 46.4279817 ], + [ 7.1612278, 46.4280043 ], + [ 7.1611138, 46.4280385 ], + [ 7.1609998, 46.4280781 ], + [ 7.160829, 46.4280897 ], + [ 7.1606419, 46.4281013 ], + [ 7.160463, 46.4280903 ], + [ 7.1602754, 46.4280512 ], + [ 7.1600798, 46.4279838 ], + [ 7.1599744, 46.4279276 ], + [ 7.1597867, 46.4278997 ], + [ 7.1596486, 46.4278717 ], + [ 7.1595749, 46.4278267 ], + [ 7.1594444, 46.4277423 ], + [ 7.1592813, 46.4276692 ], + [ 7.1591189, 46.42763 ], + [ 7.1589554, 46.427636 ], + [ 7.1588092, 46.4276249 ], + [ 7.1586874, 46.4275913 ], + [ 7.1585893, 46.427535 ], + [ 7.158483, 46.4274788 ], + [ 7.1583442999999995, 46.4274112 ], + [ 7.1581739, 46.4273608 ], + [ 7.1579618, 46.4273274 ], + [ 7.1578074, 46.427305 ], + [ 7.1575953, 46.4272884 ], + [ 7.1574003, 46.4272548 ], + [ 7.1570906, 46.4272497 ], + [ 7.1568956, 46.427222 ], + [ 7.1567322, 46.4272165 ], + [ 7.1565206, 46.4272394 ], + [ 7.1563986, 46.4272622 ], + [ 7.156244, 46.4272681 ], + [ 7.1560896, 46.4272627 ], + [ 7.1559756, 46.4272912 ], + [ 7.1558372, 46.4273309 ], + [ 7.1557313, 46.4273649 ], + [ 7.1555849, 46.4273764 ], + [ 7.155406, 46.4273768 ], + [ 7.1551452, 46.4273376 ], + [ 7.1548605, 46.4273606 ], + [ 7.1545922, 46.4273499 ], + [ 7.1543393, 46.4273503 ], + [ 7.1541118, 46.4273337 ], + [ 7.1539245, 46.4273792 ], + [ 7.1536399, 46.4273909 ], + [ 7.1535336, 46.4273403 ], + [ 7.1534191, 46.4273067 ], + [ 7.1532243, 46.4272562 ], + [ 7.1530449, 46.4271944 ], + [ 7.1528165, 46.4271836 ], + [ 7.1527681, 46.427099 ], + [ 7.1524016, 46.4270714 ], + [ 7.1523756, 46.4266031 ], + [ 7.1521807, 46.4265583 ], + [ 7.1521717, 46.4264003 ], + [ 7.1520662, 46.4263723 ], + [ 7.1518702, 46.4263726 ], + [ 7.1517245, 46.4264068 ], + [ 7.1507084, 46.4269838 ], + [ 7.1507238, 46.4268259 ], + [ 7.1506267, 46.4268937 ], + [ 7.150537, 46.4269446 ], + [ 7.1504066, 46.4270013 ], + [ 7.1502689, 46.4270579 ], + [ 7.1500978, 46.4271145 ], + [ 7.1498942, 46.427177 ], + [ 7.1496827, 46.4272112 ], + [ 7.1495037, 46.427234 ], + [ 7.1495119, 46.4272171 ], + [ 7.1495284, 46.4271607 ], + [ 7.1495605, 46.4270873 ], + [ 7.1496251, 46.4270194 ], + [ 7.1496173, 46.4269631 ], + [ 7.1495116, 46.4269576 ], + [ 7.1486981, 46.4271846 ], + [ 7.1487878, 46.427444 ], + [ 7.1486338, 46.427512 ], + [ 7.148634, 46.4276191 ], + [ 7.1482521, 46.4278906 ], + [ 7.1481291, 46.4277722 ], + [ 7.1479255, 46.4276823 ], + [ 7.1478771, 46.4277671 ], + [ 7.1478118, 46.427818 ], + [ 7.1477147, 46.4278801 ], + [ 7.1476819, 46.4279197 ], + [ 7.1477311, 46.4279986 ], + [ 7.1477965, 46.4280832 ], + [ 7.1477556, 46.4281395 ], + [ 7.1476581, 46.4281116 ], + [ 7.1475355, 46.4280778 ], + [ 7.1473, 46.4280331 ], + [ 7.1471042, 46.4280052 ], + [ 7.1470146, 46.428028 ], + [ 7.1469418, 46.4281183 ], + [ 7.1468689, 46.428203 ], + [ 7.1467872, 46.4282935 ], + [ 7.1466412, 46.4283727 ], + [ 7.1467147, 46.4284628 ], + [ 7.1467882, 46.428553 ], + [ 7.146813, 46.428632 ], + [ 7.1468215, 46.4287223 ], + [ 7.1468623000000004, 46.4288406 ], + [ 7.1468701, 46.4288914 ], + [ 7.1468869999999995, 46.4289365 ], + [ 7.1469192, 46.4289986 ], + [ 7.1469684, 46.4290718 ], + [ 7.1470175, 46.429162 ], + [ 7.1470338, 46.4293031 ], + [ 7.1470672, 46.4294496 ], + [ 7.1470837, 46.4295625 ], + [ 7.1470512, 46.429698 ], + [ 7.146994, 46.4297545 ], + [ 7.1469208, 46.4297545 ], + [ 7.1468884, 46.4297265 ], + [ 7.1468881, 46.4296475 ], + [ 7.1469128, 46.4295853 ], + [ 7.146929, 46.42945 ], + [ 7.1469442, 46.429337 ], + [ 7.1469279, 46.429196 ], + [ 7.1468625, 46.4290946 ], + [ 7.1467729, 46.4289762 ], + [ 7.1466505, 46.4289087 ], + [ 7.1465692, 46.4289145 ], + [ 7.1465283, 46.4289484 ], + [ 7.1464719, 46.4290049 ], + [ 7.1464148, 46.4290445 ], + [ 7.1463091, 46.4290503 ], + [ 7.1462116, 46.4290392 ], + [ 7.1461301, 46.4290676 ], + [ 7.1459592, 46.4290847 ], + [ 7.1457554, 46.4290455 ], + [ 7.1455108, 46.4290007 ], + [ 7.1451933, 46.428922299999996 ], + [ 7.1451282, 46.4289337 ], + [ 7.1450711, 46.4289733 ], + [ 7.144966, 46.4290186 ], + [ 7.1448839, 46.4290018 ], + [ 7.1448354, 46.4289624 ], + [ 7.1448107, 46.4288665 ], + [ 7.1447616, 46.4287763 ], + [ 7.1447124, 46.4286917 ], + [ 7.144647, 46.4286072 ], + [ 7.1445497, 46.428551 ], + [ 7.1444436, 46.428489 ], + [ 7.1443213, 46.4283934 ], + [ 7.1441989, 46.4283201 ], + [ 7.1440526, 46.4283092 ], + [ 7.1439873, 46.42836 ], + [ 7.1439715, 46.4284221 ], + [ 7.1439963, 46.4285067 ], + [ 7.1440446, 46.4285799 ], + [ 7.1441101, 46.4286645 ], + [ 7.1442568, 46.4287488 ], + [ 7.1443871, 46.4288502 ], + [ 7.1445176, 46.4289346 ], + [ 7.1446237, 46.4290078 ], + [ 7.144681, 46.4290923 ], + [ 7.1447058, 46.4291714 ], + [ 7.144706, 46.4292729 ], + [ 7.1447145, 46.4293575 ], + [ 7.1446489, 46.4294649 ], + [ 7.14456, 46.4295044 ], + [ 7.1445032, 46.4294989 ], + [ 7.1444212, 46.4294595 ], + [ 7.144332, 46.4294258 ], + [ 7.1442581, 46.4293977 ], + [ 7.1442259, 46.4293414 ], + [ 7.1442254, 46.4292792 ], + [ 7.1442251, 46.4292004 ], + [ 7.1441597, 46.4290989 ], + [ 7.1440456, 46.4290144 ], + [ 7.143916, 46.4290597 ], + [ 7.1437939, 46.4290938 ], + [ 7.1437043, 46.4291165 ], + [ 7.1436312, 46.4290997 ], + [ 7.1435249, 46.4290547 ], + [ 7.1434268, 46.4290097 ], + [ 7.1432807, 46.4289705 ], + [ 7.1431425, 46.4289538 ], + [ 7.1430447, 46.4289933 ], + [ 7.1429876, 46.429033 ], + [ 7.1428246, 46.4290952 ], + [ 7.1427113, 46.4291575 ], + [ 7.1425241, 46.4291861 ], + [ 7.1423045, 46.4292034 ], + [ 7.1420604, 46.4292262 ], + [ 7.1416614, 46.4293397 ], + [ 7.141434, 46.429436 ], + [ 7.1413847, 46.4295207 ], + [ 7.1413931, 46.4296166 ], + [ 7.1413528, 46.4297125 ], + [ 7.1412476, 46.4297748 ], + [ 7.1411172, 46.4298257 ], + [ 7.1410274, 46.4298823 ], + [ 7.1409304, 46.429922 ], + [ 7.1408324, 46.4300067 ], + [ 7.1407514, 46.4300916 ], + [ 7.1406537, 46.4301255 ], + [ 7.1405478, 46.4301539 ], + [ 7.1403932, 46.430171 ], + [ 7.1401979, 46.430194 ], + [ 7.1400436, 46.430166 ], + [ 7.1399372, 46.4301435 ], + [ 7.1398153, 46.4301268 ], + [ 7.1396604, 46.4300537 ], + [ 7.1395624, 46.4299805 ], + [ 7.1394645, 46.4299016 ], + [ 7.1393177, 46.4298286 ], + [ 7.1392444, 46.4298455 ], + [ 7.1391311, 46.4299022 ], + [ 7.139025, 46.4299644 ], + [ 7.1389354, 46.430004 ], + [ 7.1387814, 46.430055 ], + [ 7.1386431, 46.4300666 ], + [ 7.1385048, 46.430078 ], + [ 7.1383657, 46.4300838 ], + [ 7.1381867, 46.4301067 ], + [ 7.1380483, 46.4301351 ], + [ 7.1378781, 46.4301918 ], + [ 7.1377558, 46.430248399999996 ], + [ 7.13765, 46.4302599 ], + [ 7.1375036, 46.4302601 ], + [ 7.1373566, 46.4302377 ], + [ 7.1372512, 46.4303339 ], + [ 7.1371377, 46.430413 ], + [ 7.1370316, 46.4304809 ], + [ 7.136902, 46.4305318 ], + [ 7.1367472, 46.4305829 ], + [ 7.1366415, 46.4305943 ], + [ 7.136625, 46.4306338 ], + [ 7.1365927, 46.4307354 ], + [ 7.1366011, 46.4308369 ], + [ 7.1366256, 46.4309554 ], + [ 7.136699, 46.4310625 ], + [ 7.1367895, 46.4311808 ], + [ 7.1369278, 46.4312991 ], + [ 7.1370338, 46.4313948 ], + [ 7.1370828, 46.4315189 ], + [ 7.1370258, 46.4316656 ], + [ 7.1369859, 46.431835 ], + [ 7.1378512, 46.432979 ], + [ 7.1392517, 46.4329431 ], + [ 7.1395849, 46.432982 ], + [ 7.1400822, 46.433049 ], + [ 7.1403342, 46.4330655 ], + [ 7.1406031, 46.4331272 ], + [ 7.1408719, 46.4331888 ], + [ 7.1411081, 46.4332562 ], + [ 7.1413363, 46.4333236 ], + [ 7.1415399, 46.4334191 ], + [ 7.1417029, 46.4334866 ], + [ 7.1419478, 46.433616 ], + [ 7.1421595, 46.4337172 ], + [ 7.1424368, 46.4338634 ], + [ 7.1427382, 46.4340604 ], + [ 7.14304, 46.434201 ], + [ 7.1434313, 46.4344712 ], + [ 7.1435944, 46.434533 ], + [ 7.1437894, 46.434561 ], + [ 7.1439935, 46.4345606 ], + [ 7.1441235, 46.4345885 ], + [ 7.1443029, 46.4346334 ], + [ 7.1445553, 46.434729 ], + [ 7.1447348, 46.4347851 ], + [ 7.1450034, 46.4348863 ], + [ 7.1453046, 46.4349816 ], + [ 7.1454595, 46.4350435 ], + [ 7.1456467, 46.4350206 ], + [ 7.1458175, 46.435014699999996 ], + [ 7.1460376, 46.4350708 ], + [ 7.1462006, 46.4351552 ], + [ 7.1463063, 46.4351606 ], + [ 7.1464203, 46.4351323 ], + [ 7.146583, 46.4351093 ], + [ 7.1467138, 46.435143 ], + [ 7.1468681, 46.4351823 ], + [ 7.1469746, 46.4351878 ], + [ 7.1471367, 46.4351254 ], + [ 7.1474297, 46.4350911 ], + [ 7.147699, 46.4350681 ], + [ 7.1479509, 46.4350902 ], + [ 7.1482036, 46.4351406 ], + [ 7.1484317, 46.435208 ], + [ 7.1487085, 46.4353147 ], + [ 7.1490023, 46.4354214 ], + [ 7.1493445, 46.4356015 ], + [ 7.1496539, 46.4356799 ], + [ 7.1498897, 46.4356795 ], + [ 7.1501101, 46.4356792 ], + [ 7.1503216, 46.4356789 ], + [ 7.1505573, 46.4356954 ], + [ 7.15081, 46.4357345 ], + [ 7.1509814, 46.435768 ], + [ 7.1511359, 46.4357734 ], + [ 7.1512497, 46.4357789 ], + [ 7.15138, 46.4357504 ], + [ 7.1514941, 46.4356938 ], + [ 7.1516319, 46.4356429 ], + [ 7.1517541, 46.4355862 ], + [ 7.1519414, 46.4355351 ], + [ 7.152096, 46.435518 ], + [ 7.1523643, 46.4355288 ], + [ 7.1527147, 46.4355565 ], + [ 7.1532527, 46.4356176 ], + [ 7.1534884, 46.4356454 ], + [ 7.1537004, 46.4356959 ], + [ 7.1538146, 46.4357746 ], + [ 7.1539287, 46.4358817 ], + [ 7.1540265, 46.436 ], + [ 7.1540431, 46.4360959 ], + [ 7.1540353, 46.4361805 ], + [ 7.1539951, 46.4362539 ], + [ 7.1539217, 46.4362991 ], + [ 7.1538156, 46.4363727 ], + [ 7.1536939, 46.4364688 ], + [ 7.1535965, 46.4365762 ], + [ 7.1534991, 46.4367005 ], + [ 7.153508, 46.4368641 ], + [ 7.1535975, 46.4370049 ], + [ 7.1537041, 46.4371571 ], + [ 7.1538344, 46.4372754 ], + [ 7.1539484, 46.4373993 ], + [ 7.1541525, 46.437557 ], + [ 7.1544458, 46.4377596 ], + [ 7.1548614, 46.4379111 ], + [ 7.154699, 46.4380299 ], + [ 7.1545366, 46.4381375 ], + [ 7.1544149, 46.4382336 ], + [ 7.1542599, 46.4383241 ], + [ 7.1540652, 46.4383865 ], + [ 7.1538942, 46.4384375 ], + [ 7.1537155, 46.4385394 ], + [ 7.1536425, 46.4386579 ], + [ 7.1536023, 46.4388781 ], + [ 7.1535944, 46.4391433 ], + [ 7.15362, 46.4393858 ], + [ 7.1536039, 46.4395043 ], + [ 7.1535551, 46.4396568 ], + [ 7.153482, 46.4398035 ], + [ 7.1534013, 46.4399956 ], + [ 7.1533365, 46.4402495 ], + [ 7.1532393, 46.4404809 ], + [ 7.1531343, 46.4406448 ], + [ 7.1530203, 46.4408368 ], + [ 7.152948, 46.4409779 ], + [ 7.1527932, 46.4411813 ], + [ 7.1526556, 46.4413508 ], + [ 7.1525504, 46.4415598 ], + [ 7.1524932, 46.4417743 ], + [ 7.1524613, 46.441966 ], + [ 7.1524538, 46.4421579 ], + [ 7.1524623, 46.4423836 ], + [ 7.152512, 46.4426712 ], + [ 7.1528227, 46.4433027 ], + [ 7.153027, 46.4435732 ], + [ 7.1532641, 46.4437928 ], + [ 7.1533534, 46.4438321 ], + [ 7.1535004, 46.4438826 ], + [ 7.153736, 46.4439161 ], + [ 7.154013, 46.4439834 ], + [ 7.1543965, 46.4440673 ], + [ 7.1546403, 46.4441064 ], + [ 7.1549666, 46.4442299 ], + [ 7.1553011, 46.4443479 ], + [ 7.1556269, 46.4444208 ], + [ 7.1560585, 46.4444764 ], + [ 7.1565228, 46.4444926 ], + [ 7.1568562, 46.4445145 ], + [ 7.1569951, 46.4446893 ], + [ 7.1571503, 46.4447172 ], + [ 7.1573211, 46.4447226 ], + [ 7.1574844, 46.4447561 ], + [ 7.1575737, 46.4447954 ], + [ 7.1576799, 46.4448574 ], + [ 7.1578267, 46.4449473 ], + [ 7.1579732, 46.4450882 ], + [ 7.1580549, 46.4451726 ], + [ 7.1582186, 46.4452852 ], + [ 7.1583976, 46.4454203 ], + [ 7.1585605, 46.4455385 ], + [ 7.1586835, 46.4456681 ], + [ 7.1588464, 46.4457807 ], + [ 7.1589525, 46.4458595 ], + [ 7.1589936, 46.4459327 ], + [ 7.1589614, 46.4460287 ], + [ 7.1589535, 46.446136 ], + [ 7.158962, 46.4462262 ], + [ 7.1590517, 46.4463333 ], + [ 7.159117, 46.4464516 ], + [ 7.1591173, 46.4465531 ], + [ 7.1591096, 46.4466377 ], + [ 7.1590603, 46.4467281 ], + [ 7.1589555, 46.4468694 ], + [ 7.1589149, 46.4469936 ], + [ 7.1588581, 46.4471347 ], + [ 7.1588337, 46.4472983 ], + [ 7.1588914, 46.4474506 ], + [ 7.1589647, 46.4476028 ], + [ 7.1591769, 46.4477774 ], + [ 7.1593891, 46.4479575 ], + [ 7.1596671, 46.4481376 ], + [ 7.1600093, 46.4483401 ], + [ 7.1604004, 46.4485369 ], + [ 7.1606861, 46.4486662 ], + [ 7.1608412, 46.4487167 ], + [ 7.1610282, 46.4487276 ], + [ 7.1612966, 46.4487215 ], + [ 7.1615088, 46.4487494 ], + [ 7.1617371, 46.4487998 ], + [ 7.1619814, 46.4489066 ], + [ 7.1622584, 46.448985 ], + [ 7.1625844, 46.4490071 ], + [ 7.1627558, 46.4490575 ], + [ 7.1627473, 46.4491422 ], + [ 7.1626905, 46.449260699999996 ], + [ 7.1625526, 46.4495037 ], + [ 7.1624797000000004, 46.4495997 ], + [ 7.1625127, 46.4496842 ], + [ 7.1625375, 46.4497631 ], + [ 7.1626843000000004, 46.4498532 ], + [ 7.1627987, 46.4499038 ], + [ 7.1629776, 46.4499091 ], + [ 7.1631727, 46.4499314 ], + [ 7.1632951, 46.4500271 ], + [ 7.1633688, 46.4500777 ], + [ 7.1635314, 46.4501056 ], + [ 7.1636703, 46.4501392 ], + [ 7.1637598, 46.4501391 ], + [ 7.1638899, 46.4501445 ], + [ 7.1640945, 46.4503754 ], + [ 7.1642336, 46.4505388 ], + [ 7.1644455, 46.4507867 ], + [ 7.1645846, 46.4509444 ], + [ 7.1648045, 46.4510456 ], + [ 7.1650085, 46.4510847 ], + [ 7.1653012, 46.4511124 ], + [ 7.1655946, 46.4511628 ], + [ 7.1656359, 46.4512021 ], + [ 7.1657744, 46.4513147 ], + [ 7.1658969, 46.4513878 ], + [ 7.1660195, 46.4514384 ], + [ 7.1661738, 46.4514832 ], + [ 7.1662802, 46.4515113 ], + [ 7.1663126, 46.4515508 ], + [ 7.1664025, 46.4516295 ], + [ 7.1664841, 46.4517309 ], + [ 7.1666714, 46.4518492 ], + [ 7.1668915, 46.4519221 ], + [ 7.1671123, 46.4520177 ], + [ 7.1673972, 46.4521356 ], + [ 7.1675927999999995, 46.4522312 ], + [ 7.1676988999999995, 46.4523325 ], + [ 7.1677398, 46.4524397 ], + [ 7.1678383, 46.4525861 ], + [ 7.1679442, 46.4527327 ], + [ 7.1680916, 46.4528452 ], + [ 7.1682222, 46.4529183 ], + [ 7.1683928, 46.4529688 ], + [ 7.1685318, 46.4529968 ], + [ 7.1687112, 46.4530699 ], + [ 7.1688661, 46.4531654 ], + [ 7.1690378, 46.4533231 ], + [ 7.1692004, 46.4535034 ], + [ 7.1693893, 46.4538022 ], + [ 7.1696491, 46.4535759 ], + [ 7.1697469, 46.4535362 ], + [ 7.1698608, 46.4535417 ], + [ 7.1700316, 46.4535358 ], + [ 7.1702356, 46.4535749 ], + [ 7.1704305999999995, 46.4536311 ], + [ 7.1706838, 46.4537434 ], + [ 7.1709199, 46.4538727 ], + [ 7.171075, 46.4539233 ], + [ 7.171197, 46.4539286 ], + [ 7.1713191, 46.4539227 ], + [ 7.1714657, 46.4538886 ], + [ 7.1716203, 46.4538828 ], + [ 7.1717593, 46.4538994 ], + [ 7.171873, 46.4539274 ], + [ 7.1719708, 46.4538991 ], + [ 7.1721011, 46.4538762 ], + [ 7.172305, 46.4539322 ], + [ 7.1725575, 46.4540333 ], + [ 7.1728512, 46.4541909 ], + [ 7.1729492, 46.4541229 ], + [ 7.1730546, 46.4540155 ], + [ 7.1731194, 46.4539083 ], + [ 7.173233, 46.4537953 ], + [ 7.1733635, 46.4537385 ], + [ 7.173534, 46.4536367 ], + [ 7.1736715, 46.4534615 ], + [ 7.173859, 46.4533766 ], + [ 7.1739729, 46.453382 ], + [ 7.1742014, 46.4534098 ], + [ 7.1744045, 46.4534489 ], + [ 7.1745022, 46.4534318 ], + [ 7.174584, 46.453347 ], + [ 7.1746731, 46.4532623 ], + [ 7.1748111, 46.4531548 ], + [ 7.1749408, 46.45307 ], + [ 7.1750637, 46.4530641 ], + [ 7.1752587, 46.4531088 ], + [ 7.1756826, 46.4532717 ], + [ 7.1759845, 46.4534179 ], + [ 7.1760419, 46.4534911 ], + [ 7.1760179, 46.4535814 ], + [ 7.1759854, 46.4537337 ], + [ 7.1759454, 46.4539256 ], + [ 7.1759048, 46.454078 ], + [ 7.1757992999999995, 46.4542025 ], + [ 7.1756776, 46.4542986 ], + [ 7.1755643, 46.4545075 ], + [ 7.1754591, 46.454739000000004 ], + [ 7.1753695, 46.4549141 ], + [ 7.1751913, 46.4551062 ], + [ 7.1748497, 46.4552536 ], + [ 7.1750047, 46.4553378 ], + [ 7.1751184, 46.4553772 ], + [ 7.175241, 46.455422 ], + [ 7.1754611, 46.4554894 ], + [ 7.1756732, 46.4555454 ], + [ 7.1758524, 46.4556579 ], + [ 7.1759911, 46.4557479 ], + [ 7.1761789, 46.4557645 ], + [ 7.1764235, 46.4558318 ], + [ 7.1765861, 46.4558484 ], + [ 7.176708, 46.455882 ], + [ 7.1768386, 46.4559551 ], + [ 7.1769699, 46.4560621 ], + [ 7.1771247, 46.4561802 ], + [ 7.1772958, 46.4562984 ], + [ 7.1775081, 46.456456 ], + [ 7.1778262, 46.456636 ], + [ 7.1781199, 46.456799 ], + [ 7.1786256, 46.457035 ], + [ 7.1796862, 46.4575917 ], + [ 7.1799799, 46.4577659 ], + [ 7.1802893, 46.4578951 ], + [ 7.1805502, 46.4579455 ], + [ 7.1807623, 46.4579959 ], + [ 7.1808849, 46.4580521 ], + [ 7.1810318, 46.4581251 ], + [ 7.1812435, 46.4582545 ], + [ 7.1815208, 46.4584514 ], + [ 7.1817494, 46.4586146 ], + [ 7.1819862, 46.458789 ], + [ 7.1821337, 46.4589073 ], + [ 7.1823212, 46.4589858 ], + [ 7.1824682, 46.459059 ], + [ 7.1826389, 46.4590868 ], + [ 7.1830869, 46.4591367 ], + [ 7.183234, 46.4591647 ], + [ 7.1833153, 46.4591871 ], + [ 7.1834539, 46.4592883 ], + [ 7.1836332, 46.4593951 ], + [ 7.1837639, 46.459474 ], + [ 7.1838457, 46.4595471 ], + [ 7.1839193, 46.4596373 ], + [ 7.1840823, 46.4597442 ], + [ 7.1842623, 46.4598736 ], + [ 7.1844009, 46.4599805 ], + [ 7.1845883, 46.4601099 ], + [ 7.1846866, 46.4601436 ], + [ 7.1848086, 46.4601377 ], + [ 7.1849068, 46.460194 ], + [ 7.1850123, 46.4602558 ], + [ 7.1852408, 46.4604472 ], + [ 7.1853802, 46.4605598 ], + [ 7.1855187, 46.4607005 ], + [ 7.1856011, 46.4608189 ], + [ 7.1856339, 46.4609485 ], + [ 7.1856993, 46.4610499 ], + [ 7.1858137, 46.4611287 ], + [ 7.1858378, 46.4611964 ], + [ 7.1858302, 46.4612529 ], + [ 7.1858631, 46.4613374 ], + [ 7.185928, 46.4613936 ], + [ 7.1859855, 46.46145 ], + [ 7.1860591, 46.4615289 ], + [ 7.1861407, 46.4616583 ], + [ 7.1861084, 46.4617827 ], + [ 7.1860931, 46.4619124 ], + [ 7.1861906, 46.4619404 ], + [ 7.186337, 46.4619514 ], + [ 7.1864998, 46.4619342 ], + [ 7.1866953, 46.4618999 ], + [ 7.1868662, 46.461894 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "JBG0027", + "country" : "CHE", + "name" : [ + { + "text" : "Eidgenössisches Jagdbanngebiet Pierreuse-Gummfluh", + "lang" : "de-CH" + }, + { + "text" : "District franc fédéral Pierreuse-Gummfluh", + "lang" : "fr-CH" + }, + { + "text" : "Bandita federale di caccia Pierreuse-Gummfluh", + "lang" : "it-CH" + }, + { + "text" : "Federal Game Reserve Pierreuse-Gummfluh", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5406344, 47.4955147 ], + [ 7.5406303, 47.4955294 ], + [ 7.5407076, 47.4955424 ], + [ 7.540786, 47.4955717 ], + [ 7.5408861, 47.4955958 ], + [ 7.5411471, 47.4957131 ], + [ 7.5413054, 47.4957737 ], + [ 7.5413707, 47.4957818 ], + [ 7.5417285, 47.4958826 ], + [ 7.541923, 47.4959116 ], + [ 7.5420576, 47.4959498 ], + [ 7.5422071, 47.4959901 ], + [ 7.5422303, 47.4959943 ], + [ 7.5423493, 47.496 ], + [ 7.5426400000000005, 47.4960463 ], + [ 7.5429718999999995, 47.4961035 ], + [ 7.5431044, 47.4960987 ], + [ 7.5431584, 47.4960815 ], + [ 7.5445396, 47.4957385 ], + [ 7.5446959, 47.4957002 ], + [ 7.544714, 47.4957459 ], + [ 7.5447024, 47.4957519 ], + [ 7.544767, 47.4959187 ], + [ 7.5447859, 47.4959675 ], + [ 7.5449041, 47.4962547 ], + [ 7.5449228, 47.4963745 ], + [ 7.5449253, 47.4963907 ], + [ 7.5449493, 47.4964894 ], + [ 7.5447623, 47.4965084 ], + [ 7.5447849, 47.4968456 ], + [ 7.5449463, 47.4969686 ], + [ 7.5450736, 47.4970279 ], + [ 7.5451705, 47.4970509 ], + [ 7.5451733, 47.4970421 ], + [ 7.5454361, 47.4970788 ], + [ 7.5454334, 47.4970876 ], + [ 7.5456900000000005, 47.4972075 ], + [ 7.546019, 47.4973491 ], + [ 7.5466809999999995, 47.4975445 ], + [ 7.5473559, 47.4977431 ], + [ 7.5475501, 47.4977914 ], + [ 7.5477494, 47.4978219 ], + [ 7.5483491, 47.4978798 ], + [ 7.5483518, 47.4978672 ], + [ 7.5483547, 47.4978538 ], + [ 7.5483607, 47.4978256 ], + [ 7.5480266, 47.4977771 ], + [ 7.5476493, 47.4977447 ], + [ 7.547256, 47.4975886 ], + [ 7.5470423, 47.4975305 ], + [ 7.5466474, 47.4974602 ], + [ 7.5462384, 47.4973456 ], + [ 7.5456062, 47.4970692 ], + [ 7.5451474, 47.4969294 ], + [ 7.5450591, 47.4968553 ], + [ 7.5449801, 47.4967511 ], + [ 7.5449855, 47.4966105 ], + [ 7.5450183, 47.4965298 ], + [ 7.5449909, 47.4963833 ], + [ 7.5449789, 47.4963316 ], + [ 7.544963, 47.4962472 ], + [ 7.5448631, 47.4959536 ], + [ 7.5447777, 47.4957129 ], + [ 7.5448103, 47.495696 ], + [ 7.5448385, 47.4956617 ], + [ 7.5451096, 47.4956418 ], + [ 7.5453774, 47.4955461 ], + [ 7.5455199, 47.4955439 ], + [ 7.5457996, 47.4954602 ], + [ 7.5460479, 47.4954608 ], + [ 7.5461217, 47.4955122 ], + [ 7.5462467, 47.4955591 ], + [ 7.5463388, 47.4956254 ], + [ 7.5464969, 47.4956562 ], + [ 7.5465461, 47.4956962 ], + [ 7.5468732, 47.4958419 ], + [ 7.546995, 47.4958674 ], + [ 7.5473426, 47.496044499999996 ], + [ 7.5474235, 47.4961029 ], + [ 7.5476763, 47.4962072 ], + [ 7.5477933, 47.4962737 ], + [ 7.5479101, 47.4963773 ], + [ 7.5481192, 47.4963657 ], + [ 7.5483478999999996, 47.4962968 ], + [ 7.5486993, 47.4963013 ], + [ 7.5488884, 47.4962635 ], + [ 7.5493397, 47.4963516 ], + [ 7.5492243, 47.496377 ], + [ 7.5492211000000005, 47.4963779 ], + [ 7.549218, 47.496379 ], + [ 7.5492151, 47.4963802 ], + [ 7.5492123, 47.4963817 ], + [ 7.5492098, 47.4963832 ], + [ 7.5492074, 47.496385 ], + [ 7.5492053, 47.4963869 ], + [ 7.5492035, 47.4963888 ], + [ 7.5492018, 47.4963909 ], + [ 7.5492004999999995, 47.4963931 ], + [ 7.5491995, 47.4963953 ], + [ 7.5491987, 47.4963976 ], + [ 7.5491982, 47.4964 ], + [ 7.5491981, 47.4964023 ], + [ 7.5491982, 47.4964047 ], + [ 7.5491987, 47.496407 ], + [ 7.5491994, 47.4964093 ], + [ 7.5492004999999995, 47.4964116 ], + [ 7.5492208, 47.4964495 ], + [ 7.5496609, 47.4965761 ], + [ 7.5496609, 47.4965771 ], + [ 7.5496698, 47.4965775 ], + [ 7.5496734, 47.4965777 ], + [ 7.5496771, 47.4965776 ], + [ 7.5496808, 47.4965773 ], + [ 7.5496844, 47.4965768 ], + [ 7.5497122, 47.4965891 ], + [ 7.5497146, 47.4964265 ], + [ 7.5497306, 47.496405 ], + [ 7.5497125, 47.4964 ], + [ 7.5497125, 47.4963611 ], + [ 7.5494305, 47.4962822 ], + [ 7.5493505, 47.49622 ], + [ 7.5490607, 47.4961851 ], + [ 7.5489346, 47.4961585 ], + [ 7.5488161, 47.4961514 ], + [ 7.5486149000000005, 47.4962008 ], + [ 7.5483539, 47.4962081 ], + [ 7.5482142, 47.4962281 ], + [ 7.5481873, 47.496232 ], + [ 7.5481117, 47.4962492 ], + [ 7.5481072000000005, 47.49625 ], + [ 7.5481025, 47.4962506 ], + [ 7.5480978, 47.4962509 ], + [ 7.5480656, 47.4962535 ], + [ 7.5480014, 47.4962586 ], + [ 7.5479802, 47.4962616 ], + [ 7.5478929, 47.4962251 ], + [ 7.5477892, 47.4961377 ], + [ 7.5475185, 47.4960141 ], + [ 7.5473074, 47.4958935 ], + [ 7.5471717, 47.4958165 ], + [ 7.5469885, 47.4957564 ], + [ 7.5467008, 47.4956208 ], + [ 7.5464798, 47.495528 ], + [ 7.5463585, 47.4954705 ], + [ 7.5461276999999995, 47.4953804 ], + [ 7.5458975, 47.4953634 ], + [ 7.5458749, 47.4953601 ], + [ 7.5458533, 47.4953571 ], + [ 7.5457522, 47.4953428 ], + [ 7.5456497, 47.4951634 ], + [ 7.5455978, 47.4951287 ], + [ 7.5455479, 47.4951133 ], + [ 7.5455374, 47.4951273 ], + [ 7.5452987, 47.4950526 ], + [ 7.5452634, 47.4950995 ], + [ 7.5452346, 47.4951368 ], + [ 7.5452741, 47.495176 ], + [ 7.5453864, 47.4951901 ], + [ 7.5454931, 47.4952021 ], + [ 7.5455719, 47.4952841 ], + [ 7.545596, 47.4953737 ], + [ 7.5454958, 47.4954335 ], + [ 7.5453209, 47.4954483 ], + [ 7.5452043, 47.495517 ], + [ 7.5449044, 47.4955816 ], + [ 7.5448426, 47.4955858 ], + [ 7.5446718, 47.4956161 ], + [ 7.5446137, 47.4956446 ], + [ 7.5442873, 47.4957146 ], + [ 7.5440458, 47.4957493 ], + [ 7.543767, 47.4958336 ], + [ 7.5435838, 47.4958804 ], + [ 7.5434476, 47.4959229 ], + [ 7.5432635999999995, 47.4959744 ], + [ 7.5431642, 47.4959997 ], + [ 7.543031, 47.4960403 ], + [ 7.5429498, 47.4960314 ], + [ 7.5427705, 47.4959729 ], + [ 7.5426573, 47.4959642 ], + [ 7.5424896, 47.4959241 ], + [ 7.5423739, 47.4959134 ], + [ 7.542155, 47.4958695 ], + [ 7.5420589, 47.4958658 ], + [ 7.5418481, 47.4958019 ], + [ 7.5417718, 47.4958083 ], + [ 7.5416763, 47.4957791 ], + [ 7.5414132, 47.4956984 ], + [ 7.541347, 47.4956952 ], + [ 7.5412463, 47.495664 ], + [ 7.541131, 47.495607 ], + [ 7.5410501, 47.4955591 ], + [ 7.5409211, 47.4955128 ], + [ 7.5408251, 47.4954889 ], + [ 7.5407671, 47.4954793 ], + [ 7.5406499, 47.4954589 ], + [ 7.5406426, 47.4954851 ], + [ 7.5406344, 47.4955147 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns161", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Schlifbach - Grossmattbach", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Schlifbach - Grossmattbach", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Schlifbach - Grossmattbach", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Schlifbach - Grossmattbach", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.9407971, 47.427395 ], + [ 7.9405653, 47.4274187 ], + [ 7.9403682, 47.4274655 ], + [ 7.9402197999999995, 47.427539 ], + [ 7.9397102, 47.4278699 ], + [ 7.9396914, 47.4278842 ], + [ 7.9396731, 47.4278989 ], + [ 7.9396555, 47.4279139 ], + [ 7.9396387, 47.4279294 ], + [ 7.9396225, 47.4279451 ], + [ 7.939607, 47.4279612 ], + [ 7.9395923, 47.4279776 ], + [ 7.9395783, 47.4279943 ], + [ 7.9395651, 47.4280113 ], + [ 7.9395526, 47.4280286 ], + [ 7.9395413999999995, 47.4280452 ], + [ 7.9395309, 47.4280621 ], + [ 7.9395211, 47.4280791 ], + [ 7.939512, 47.4280964 ], + [ 7.9395036999999995, 47.4281138 ], + [ 7.9394960999999995, 47.4281314 ], + [ 7.9394893, 47.4281491 ], + [ 7.9394833, 47.4281669 ], + [ 7.939478, 47.4281849 ], + [ 7.9394735, 47.4282029 ], + [ 7.9394228, 47.4284843 ], + [ 7.9394215, 47.4286874 ], + [ 7.9394225, 47.4287027 ], + [ 7.9394226, 47.4287179 ], + [ 7.9394219, 47.4287332 ], + [ 7.9394203999999995, 47.4287484 ], + [ 7.939418, 47.4287636 ], + [ 7.9394148, 47.4287787 ], + [ 7.9394107, 47.4287937 ], + [ 7.9394058, 47.428808599999996 ], + [ 7.9394001, 47.4288233 ], + [ 7.9394083, 47.4289612 ], + [ 7.9394368, 47.4291901 ], + [ 7.939478, 47.4292947 ], + [ 7.9395822, 47.4294635 ], + [ 7.9396434, 47.4296272 ], + [ 7.9396941, 47.4297142 ], + [ 7.9398076, 47.4298294 ], + [ 7.9401027, 47.4301701 ], + [ 7.9401933, 47.4303044 ], + [ 7.9403568, 47.4304274 ], + [ 7.9405211, 47.4306817 ], + [ 7.9405706, 47.4309049 ], + [ 7.9407025, 47.4310049 ], + [ 7.9409193, 47.431111 ], + [ 7.9411677, 47.4312788 ], + [ 7.9415089, 47.4314701 ], + [ 7.9418976, 47.4317213 ], + [ 7.9421773, 47.4319348 ], + [ 7.9423032, 47.4321302 ], + [ 7.9424688, 47.4324752 ], + [ 7.9425752, 47.4325791 ], + [ 7.9416018, 47.4327034 ], + [ 7.9410175, 47.4327342 ], + [ 7.9405955, 47.4327009 ], + [ 7.9400029, 47.4329251 ], + [ 7.9397416, 47.4330262 ], + [ 7.9396973, 47.4331103 ], + [ 7.9389112, 47.4332576 ], + [ 7.9384931, 47.4332695 ], + [ 7.9385074, 47.4332747 ], + [ 7.9385213, 47.4332804 ], + [ 7.9385347, 47.4332866 ], + [ 7.9385476, 47.4332932 ], + [ 7.93856, 47.4333003 ], + [ 7.9388807, 47.433483 ], + [ 7.9393225, 47.4337221 ], + [ 7.9397795, 47.4339197 ], + [ 7.9403354, 47.4340825 ], + [ 7.940681, 47.4341403 ], + [ 7.9407067, 47.4341441 ], + [ 7.9407322, 47.4341485 ], + [ 7.9407575, 47.4341534 ], + [ 7.9407826, 47.4341589 ], + [ 7.9408074, 47.4341649 ], + [ 7.9408319, 47.4341714 ], + [ 7.9408560999999995, 47.4341784 ], + [ 7.94088, 47.4341859 ], + [ 7.9409035, 47.434194 ], + [ 7.9409267, 47.4342025 ], + [ 7.9413449, 47.434409 ], + [ 7.9414455, 47.4344931 ], + [ 7.9415811, 47.4346484 ], + [ 7.9416723, 47.4347315 ], + [ 7.9417228, 47.4347721 ], + [ 7.9421653, 47.4350982 ], + [ 7.9423329, 47.4352097 ], + [ 7.9425906, 47.4353003 ], + [ 7.9427924, 47.435299 ], + [ 7.9431438, 47.4353098 ], + [ 7.9434295, 47.435312 ], + [ 7.9434897, 47.4353119 ], + [ 7.9435341, 47.4353118 ], + [ 7.943549, 47.4352718 ], + [ 7.9437603, 47.4352169 ], + [ 7.9438024, 47.4352875 ], + [ 7.9438423, 47.4353704 ], + [ 7.9438764, 47.4354141 ], + [ 7.9439197, 47.43548 ], + [ 7.9440963, 47.4357611 ], + [ 7.9443587, 47.4359105 ], + [ 7.9452817, 47.4356636 ], + [ 7.9453304, 47.4356498 ], + [ 7.9454186, 47.4357896 ], + [ 7.9455199, 47.4360387 ], + [ 7.9463405, 47.4361235 ], + [ 7.9470316, 47.4361697 ], + [ 7.9469985, 47.4363485 ], + [ 7.9470288, 47.4365364 ], + [ 7.9471004, 47.436701 ], + [ 7.9471988, 47.4368691 ], + [ 7.9472524, 47.4368537 ], + [ 7.9476986, 47.4366793 ], + [ 7.94764, 47.4365953 ], + [ 7.9475119, 47.4364661 ], + [ 7.9474813, 47.4363759 ], + [ 7.9474651, 47.4362763 ], + [ 7.947466, 47.4362178 ], + [ 7.9475057, 47.4361647 ], + [ 7.9475236, 47.4361178 ], + [ 7.947503, 47.4360153 ], + [ 7.9473969, 47.4357738 ], + [ 7.9473477, 47.435617 ], + [ 7.9471999, 47.4353861 ], + [ 7.9471635, 47.4352795 ], + [ 7.9471225, 47.4352555 ], + [ 7.9470898, 47.4350458 ], + [ 7.9471258, 47.4350424 ], + [ 7.9471386, 47.4349914 ], + [ 7.9471325, 47.4349419 ], + [ 7.9471542, 47.4348646 ], + [ 7.947118, 47.4347529 ], + [ 7.9470925, 47.4347142 ], + [ 7.9470392, 47.434703999999996 ], + [ 7.9469833, 47.4347034 ], + [ 7.9469902, 47.4345504 ], + [ 7.9473465, 47.4345813 ], + [ 7.9475065, 47.4345631 ], + [ 7.9476468, 47.4344811 ], + [ 7.9476931, 47.4345059 ], + [ 7.9481738, 47.4345812 ], + [ 7.9483466, 47.434481 ], + [ 7.9493988, 47.4340113 ], + [ 7.9495067, 47.4339277 ], + [ 7.9495497, 47.4338242 ], + [ 7.9495968, 47.4335887 ], + [ 7.9496573, 47.4335038 ], + [ 7.9497636, 47.433451 ], + [ 7.9500968, 47.4337435 ], + [ 7.9503094, 47.4339321 ], + [ 7.9504000999999995, 47.4340135 ], + [ 7.9511108, 47.4343566 ], + [ 7.9512593, 47.4340778 ], + [ 7.9512773, 47.434044 ], + [ 7.9515304, 47.4335687 ], + [ 7.9515787, 47.4334782 ], + [ 7.9517798, 47.4331006 ], + [ 7.9518021, 47.4330588 ], + [ 7.9519475, 47.4327859 ], + [ 7.95113, 47.4325558 ], + [ 7.9506016, 47.4321553 ], + [ 7.9500402999999995, 47.4317183 ], + [ 7.9507986, 47.431023 ], + [ 7.9516926, 47.4302189 ], + [ 7.9527922, 47.4292292 ], + [ 7.9541378, 47.428002 ], + [ 7.9546126, 47.4275691 ], + [ 7.9551192, 47.4271081 ], + [ 7.9548422, 47.4268424 ], + [ 7.9549179, 47.4268169 ], + [ 7.9550288, 47.4267697 ], + [ 7.9551847, 47.4267072 ], + [ 7.9552985, 47.4266349 ], + [ 7.9553241, 47.4265728 ], + [ 7.9552673, 47.4265333 ], + [ 7.9551603, 47.4264164 ], + [ 7.9548489, 47.4262966 ], + [ 7.9544928, 47.4262152 ], + [ 7.9539246, 47.4260461 ], + [ 7.9535462, 47.4259649 ], + [ 7.9531628, 47.4261006 ], + [ 7.9523582, 47.4261553 ], + [ 7.9518403, 47.42607 ], + [ 7.9511927, 47.4257046 ], + [ 7.9508475999999995, 47.4254765 ], + [ 7.9506423, 47.4251472 ], + [ 7.9502719, 47.4251497 ], + [ 7.9502445, 47.4251489 ], + [ 7.9502171, 47.4251476 ], + [ 7.9501898, 47.4251457 ], + [ 7.9501626, 47.4251434 ], + [ 7.9501355, 47.4251405 ], + [ 7.9501085, 47.4251371 ], + [ 7.9500817, 47.4251332 ], + [ 7.9500551, 47.4251288 ], + [ 7.9500286, 47.4251238 ], + [ 7.9500143, 47.4251206 ], + [ 7.9500003, 47.4251168 ], + [ 7.9499867, 47.4251124 ], + [ 7.9499735, 47.4251075 ], + [ 7.9499609, 47.425102 ], + [ 7.9499487, 47.4250959 ], + [ 7.9499372, 47.4250894 ], + [ 7.9499262, 47.4250823 ], + [ 7.949916, 47.4250748 ], + [ 7.9499065, 47.4250669 ], + [ 7.9498977, 47.4250586 ], + [ 7.9498897, 47.4250499 ], + [ 7.9498826, 47.4250409 ], + [ 7.9498763, 47.4250316 ], + [ 7.9498708, 47.4250221 ], + [ 7.9498663, 47.4250124 ], + [ 7.9498627, 47.4250024 ], + [ 7.94986, 47.4249924 ], + [ 7.9498581999999995, 47.4249822 ], + [ 7.9498574, 47.424972 ], + [ 7.9498597, 47.4249588 ], + [ 7.9498627, 47.4249456 ], + [ 7.9498667, 47.4249325 ], + [ 7.9498714, 47.4249196 ], + [ 7.949877, 47.4249068 ], + [ 7.9498834, 47.4248941 ], + [ 7.9498906, 47.4248817 ], + [ 7.9498986, 47.4248695 ], + [ 7.9499074, 47.4248576 ], + [ 7.9499169, 47.4248459 ], + [ 7.9499272, 47.4248345 ], + [ 7.9499374, 47.4248238 ], + [ 7.9499483, 47.4248133 ], + [ 7.9499599, 47.4248031 ], + [ 7.949972, 47.4247933 ], + [ 7.9499848, 47.4247839 ], + [ 7.9499981, 47.4247748 ], + [ 7.950012, 47.4247661 ], + [ 7.9500264, 47.4247578 ], + [ 7.9500413, 47.4247499 ], + [ 7.9500566, 47.4247425 ], + [ 7.9513126, 47.424334 ], + [ 7.9513395, 47.4243259 ], + [ 7.9513660999999995, 47.4243171 ], + [ 7.9513922, 47.4243078 ], + [ 7.9514178, 47.4242979 ], + [ 7.951443, 47.4242875 ], + [ 7.9514677, 47.4242766 ], + [ 7.9514919, 47.4242651 ], + [ 7.9515155, 47.4242531 ], + [ 7.9515386, 47.4242406 ], + [ 7.951561, 47.4242276 ], + [ 7.9515829, 47.4242141 ], + [ 7.9517363, 47.4241156 ], + [ 7.9516194, 47.4239391 ], + [ 7.9512121, 47.4236545 ], + [ 7.9509833, 47.4233164 ], + [ 7.9505945, 47.4230555 ], + [ 7.9501671, 47.4228517 ], + [ 7.9497558, 47.4228254 ], + [ 7.9494864, 47.4227916 ], + [ 7.9492616, 47.4228036 ], + [ 7.9491178, 47.4228438 ], + [ 7.949109, 47.4228468 ], + [ 7.9491005999999995, 47.4228504 ], + [ 7.9490928, 47.4228544 ], + [ 7.9490855, 47.422859 ], + [ 7.9490789, 47.422864 ], + [ 7.949073, 47.4228694 ], + [ 7.9490679, 47.4228751 ], + [ 7.9490636, 47.4228812 ], + [ 7.9490601, 47.4228874 ], + [ 7.9490575, 47.4228939 ], + [ 7.9490558, 47.4229005 ], + [ 7.9490551, 47.4229072 ], + [ 7.9490552, 47.4229139 ], + [ 7.9490563, 47.4229206 ], + [ 7.9490704999999995, 47.4229257 ], + [ 7.9490842, 47.4229314 ], + [ 7.9490974, 47.4229377 ], + [ 7.94911, 47.4229444 ], + [ 7.949122, 47.4229517 ], + [ 7.9491333, 47.4229595 ], + [ 7.9491439, 47.4229677 ], + [ 7.9491537999999995, 47.4229763 ], + [ 7.9491628, 47.4229854 ], + [ 7.949171, 47.4229948 ], + [ 7.9491784, 47.4230045 ], + [ 7.9491849, 47.4230145 ], + [ 7.9491905, 47.4230247 ], + [ 7.9491951, 47.4230352 ], + [ 7.9491988, 47.4230458 ], + [ 7.9492016, 47.4230565 ], + [ 7.9492034, 47.4230674 ], + [ 7.9492042, 47.4230783 ], + [ 7.9492041, 47.4230892 ], + [ 7.9492028999999995, 47.4231001 ], + [ 7.9492008, 47.4231109 ], + [ 7.9491978, 47.4231216 ], + [ 7.9491937, 47.4231322 ], + [ 7.9491195999999995, 47.423367 ], + [ 7.9490504, 47.423707 ], + [ 7.9489856, 47.4238721 ], + [ 7.9489119, 47.4239806 ], + [ 7.9487913, 47.4240704 ], + [ 7.9485322, 47.4242132 ], + [ 7.9481577, 47.4244514 ], + [ 7.9479431, 47.4246211 ], + [ 7.9477523, 47.4248091 ], + [ 7.9476154, 47.4250092 ], + [ 7.9475491, 47.4251585 ], + [ 7.9475098, 47.425326 ], + [ 7.9475042, 47.4254782 ], + [ 7.9475239, 47.4256543 ], + [ 7.94758, 47.4257999 ], + [ 7.9476802, 47.4259491 ], + [ 7.9477937999999995, 47.4260767 ], + [ 7.9479273, 47.4261835 ], + [ 7.9481069, 47.4263258 ], + [ 7.9481181, 47.426336 ], + [ 7.9481286, 47.4263465 ], + [ 7.9481382, 47.4263574 ], + [ 7.9481471, 47.4263686 ], + [ 7.948155, 47.4263801 ], + [ 7.9481622, 47.4263919 ], + [ 7.9481684, 47.4264039 ], + [ 7.9481737, 47.4264161 ], + [ 7.9481782, 47.4264285 ], + [ 7.9481816, 47.426441 ], + [ 7.9481842, 47.4264535 ], + [ 7.9481858, 47.4264662 ], + [ 7.9481865, 47.4264789 ], + [ 7.9481862, 47.4264916 ], + [ 7.948185, 47.4265043 ], + [ 7.9481828, 47.426517 ], + [ 7.9481797, 47.4265295 ], + [ 7.9482098, 47.4266924 ], + [ 7.9484859, 47.42675 ], + [ 7.9488232, 47.4267678 ], + [ 7.9490007, 47.42697 ], + [ 7.9488115, 47.4275467 ], + [ 7.9488009, 47.4275874 ], + [ 7.948566, 47.4275764 ], + [ 7.9481345999999995, 47.4275023 ], + [ 7.9478486, 47.4274411 ], + [ 7.9476726, 47.4274237 ], + [ 7.9475176, 47.4274459 ], + [ 7.9472662, 47.4275332 ], + [ 7.947035, 47.4275937 ], + [ 7.9467275, 47.4276269 ], + [ 7.9462249, 47.4276468 ], + [ 7.9460573, 47.4277004 ], + [ 7.9459734, 47.4277796 ], + [ 7.9459132, 47.4277818 ], + [ 7.9458683, 47.4276116 ], + [ 7.9458573999999995, 47.4275101 ], + [ 7.94594, 47.4274012 ], + [ 7.9460847999999995, 47.4273104 ], + [ 7.9454193, 47.4267648 ], + [ 7.9450724, 47.4268333 ], + [ 7.9448511, 47.4269048 ], + [ 7.9442727, 47.4271804 ], + [ 7.943983, 47.4273036 ], + [ 7.9439587, 47.4273121 ], + [ 7.943934, 47.4273201 ], + [ 7.9439089, 47.4273275 ], + [ 7.9438835, 47.4273343 ], + [ 7.9438577, 47.4273406 ], + [ 7.9438317, 47.427346299999996 ], + [ 7.9438054, 47.4273514 ], + [ 7.9437789, 47.427356 ], + [ 7.9437528, 47.42736 ], + [ 7.9437265, 47.4273634 ], + [ 7.9437, 47.4273663 ], + [ 7.9436735, 47.4273685 ], + [ 7.9436468, 47.4273702 ], + [ 7.9436201, 47.4273714 ], + [ 7.9435933, 47.4273719 ], + [ 7.9435666, 47.4273718 ], + [ 7.943325, 47.4273571 ], + [ 7.9432988, 47.427358 ], + [ 7.9432727, 47.4273596 ], + [ 7.9432466, 47.4273617 ], + [ 7.9432206, 47.4273644 ], + [ 7.9431948, 47.4273677 ], + [ 7.9431691, 47.4273715 ], + [ 7.9431437, 47.4273758 ], + [ 7.943119, 47.4273803 ], + [ 7.9430946, 47.4273853 ], + [ 7.9430704, 47.4273908 ], + [ 7.9430465, 47.4273969 ], + [ 7.9430228, 47.4274034 ], + [ 7.9429995, 47.4274104 ], + [ 7.9429765, 47.4274179 ], + [ 7.9429539, 47.4274259 ], + [ 7.9426644, 47.4275517 ], + [ 7.9424686, 47.4276321 ], + [ 7.9424481, 47.4276396 ], + [ 7.9424273, 47.4276466 ], + [ 7.9424060999999995, 47.4276531 ], + [ 7.9423846, 47.4276592 ], + [ 7.9423628, 47.4276648 ], + [ 7.9423407, 47.4276699 ], + [ 7.9423184, 47.4276744 ], + [ 7.9422958999999995, 47.4276785 ], + [ 7.9422738, 47.427682 ], + [ 7.9422516, 47.4276849 ], + [ 7.9422293, 47.4276874 ], + [ 7.9422068, 47.4276894 ], + [ 7.9421843, 47.4276908 ], + [ 7.9421617, 47.4276918 ], + [ 7.9421391, 47.4276923 ], + [ 7.9421164, 47.4276923 ], + [ 7.942091, 47.4276915 ], + [ 7.9420657, 47.42769 ], + [ 7.9420405, 47.427688 ], + [ 7.9420154, 47.4276853 ], + [ 7.9419905, 47.427682 ], + [ 7.9419657, 47.427678 ], + [ 7.9419412, 47.4276735 ], + [ 7.941917, 47.4276684 ], + [ 7.9415016, 47.4275837 ], + [ 7.940982, 47.4274362 ], + [ 7.9407971, 47.427395 ] + ], + [ + [ 7.9473511, 47.4322464 ], + [ 7.9471233, 47.4321578 ], + [ 7.9470575, 47.4320293 ], + [ 7.9470548999999995, 47.4320181 ], + [ 7.9470532, 47.4320067 ], + [ 7.9470525, 47.4319953 ], + [ 7.9470528, 47.4319838 ], + [ 7.947054, 47.4319725 ], + [ 7.9470562, 47.4319611 ], + [ 7.9470594, 47.4319499 ], + [ 7.9470635, 47.4319388 ], + [ 7.9470685, 47.4319279 ], + [ 7.9470745, 47.4319172 ], + [ 7.9470814, 47.4319068 ], + [ 7.9470890999999995, 47.4318967 ], + [ 7.9470977, 47.4318868 ], + [ 7.9471071, 47.4318774 ], + [ 7.9471173, 47.4318683 ], + [ 7.9471283, 47.4318596 ], + [ 7.94714, 47.4318514 ], + [ 7.9473838, 47.4317268 ], + [ 7.9477791, 47.4314555 ], + [ 7.9479308, 47.4313975 ], + [ 7.9480729, 47.4314409 ], + [ 7.9482606, 47.431454 ], + [ 7.9494778, 47.4315422 ], + [ 7.949589, 47.4318414 ], + [ 7.9488737, 47.4320784 ], + [ 7.9485845, 47.432176 ], + [ 7.9487916, 47.4322447 ], + [ 7.9489689, 47.4323279 ], + [ 7.9491291, 47.4324363 ], + [ 7.9490894, 47.4324602 ], + [ 7.9486314, 47.4326001 ], + [ 7.9481093, 47.4327595 ], + [ 7.9480501, 47.4327649 ], + [ 7.9480141, 47.432533 ], + [ 7.9479176, 47.4324276 ], + [ 7.9477851, 47.432359 ], + [ 7.9473511, 47.4322464 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns279", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Rumpel - Chlapfen", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Rumpel - Chlapfen", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Rumpel - Chlapfen", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Rumpel - Chlapfen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6302736, 47.5482519 ], + [ 7.6309064, 47.5481311 ], + [ 7.632815, 47.5477266 ], + [ 7.6329228, 47.5476554 ], + [ 7.6330367, 47.5475509 ], + [ 7.6330672, 47.5474365 ], + [ 7.6330322, 47.547235 ], + [ 7.6328654, 47.5467534 ], + [ 7.6326215, 47.5460491 ], + [ 7.632584, 47.54601 ], + [ 7.632573, 47.5459867 ], + [ 7.6325088, 47.5458504 ], + [ 7.6314346, 47.546107 ], + [ 7.6310972, 47.546189 ], + [ 7.6304042, 47.5463575 ], + [ 7.6303804, 47.5463633 ], + [ 7.6303813, 47.546384 ], + [ 7.6303554, 47.5463845 ], + [ 7.6303529999999995, 47.5464295 ], + [ 7.6303374999999996, 47.5464728 ], + [ 7.6303128000000005, 47.5465149 ], + [ 7.6300475, 47.5469135 ], + [ 7.6300025, 47.5469883 ], + [ 7.6299755000000005, 47.5470487 ], + [ 7.6299566, 47.5471102 ], + [ 7.629946, 47.5471728 ], + [ 7.6299434, 47.5472356 ], + [ 7.6301151, 47.5478699 ], + [ 7.6303057, 47.5478459 ], + [ 7.6303444, 47.5479879 ], + [ 7.6301541, 47.5480116 ], + [ 7.6302176, 47.5482472 ], + [ 7.6302232, 47.5482498 ], + [ 7.6302291, 47.548252 ], + [ 7.6302354999999995, 47.5482537 ], + [ 7.6302421, 47.5482547 ], + [ 7.6302488, 47.5482553 ], + [ 7.6302556, 47.5482552 ], + [ 7.6302603, 47.5482548 ], + [ 7.6302649, 47.5482541 ], + [ 7.6302693, 47.5482531 ], + [ 7.6302736, 47.5482519 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns306", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Muttenzer Hard", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Muttenzer Hard", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Muttenzer Hard", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Muttenzer Hard", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.9333098, 47.191864699999996 ], + [ 8.9251893, 47.1920545 ], + [ 8.9165062, 47.1918514 ], + [ 8.9127186, 47.1917358 ], + [ 8.9097056, 47.1917137 ], + [ 8.9085655, 47.1922455 ], + [ 8.9053914, 47.1932081 ], + [ 8.9043912, 47.1931916 ], + [ 8.8986453, 47.1934986 ], + [ 8.8973631, 47.1939107 ], + [ 8.8959535, 47.1954579 ], + [ 8.8919827, 47.1960119 ], + [ 8.8859866, 47.1968431 ], + [ 8.8827227, 47.19719 ], + [ 8.8824645, 47.195448 ], + [ 8.8828297, 47.1943099 ], + [ 8.8826043, 47.1918297 ], + [ 8.8707431, 47.1887528 ], + [ 8.8691538, 47.1914984 ], + [ 8.8687634, 47.1936804 ], + [ 8.8596499, 47.1977628 ], + [ 8.8581156, 47.198389 ], + [ 8.8532594, 47.1981789 ], + [ 8.849436, 47.1958418 ], + [ 8.8480463, 47.194442 ], + [ 8.8470714, 47.1937567 ], + [ 8.8452401, 47.1931269 ], + [ 8.843513699999999, 47.1927206 ], + [ 8.8417957, 47.1926292 ], + [ 8.8395693, 47.193286 ], + [ 8.8371449, 47.1939452 ], + [ 8.8346316, 47.1949878 ], + [ 8.8329964, 47.1955474 ], + [ 8.8318831, 47.1958757 ], + [ 8.8311209, 47.19575 ], + [ 8.8298639, 47.1956303 ], + [ 8.8282047, 47.195268 ], + [ 8.8264443, 47.1948169 ], + [ 8.8253616, 47.1950549 ], + [ 8.8236326, 47.1958179 ], + [ 8.8226946, 47.1965488 ], + [ 8.8209481, 47.1966373 ], + [ 8.820613, 47.1964389 ], + [ 8.8194215, 47.1962958 ], + [ 8.8176536, 47.1968343 ], + [ 8.8170043, 47.1985288 ], + [ 8.8164974, 47.2006265 ], + [ 8.8156432, 47.2007716 ], + [ 8.8129543, 47.2014335 ], + [ 8.8109882, 47.2019742 ], + [ 8.8093821, 47.2023982 ], + [ 8.8076603, 47.2021713 ], + [ 8.8061781, 47.2022788 ], + [ 8.8041551, 47.20318 ], + [ 8.8029105, 47.2041955 ], + [ 8.7998116, 47.2056131 ], + [ 8.799177, 47.2076537 ], + [ 8.800101699999999, 47.209747899999996 ], + [ 8.8047149, 47.2115284 ], + [ 8.8072263, 47.2135789 ], + [ 8.8096187, 47.2154846 ], + [ 8.8117802, 47.217393 ], + [ 8.8142331, 47.219073 ], + [ 8.8179934, 47.2202424 ], + [ 8.8210683, 47.2204305 ], + [ 8.8231982, 47.2198201 ], + [ 8.828070499999999, 47.2167702 ], + [ 8.831874299999999, 47.2158022 ], + [ 8.8340104, 47.215439 ], + [ 8.8377721, 47.2153933 ], + [ 8.8403123, 47.2153399 ], + [ 8.8417975, 47.2147034 ], + [ 8.8465866, 47.2135654 ], + [ 8.8497156, 47.2145616 ], + [ 8.8526056, 47.2165053 ], + [ 8.8537068, 47.218201 ], + [ 8.8568397, 47.219332 ], + [ 8.8581717, 47.2197654 ], + [ 8.860017299999999, 47.2196526 ], + [ 8.8640613, 47.2178034 ], + [ 8.8714193, 47.2164526 ], + [ 8.8785129, 47.2151047 ], + [ 8.8831556, 47.2159012 ], + [ 8.888744299999999, 47.2174952 ], + [ 8.8952475, 47.2187176 ], + [ 8.8993189, 47.2203303 ], + [ 8.9051896, 47.2207392 ], + [ 8.9117322, 47.2221626 ], + [ 8.9184277, 47.2231338 ], + [ 8.922784, 47.2242697 ], + [ 8.927481, 47.2245914 ], + [ 8.9324831, 47.2244907 ], + [ 8.9348362, 47.2184461 ], + [ 8.936589099999999, 47.2045488 ], + [ 8.935159, 47.1959039 ], + [ 8.9333098, 47.191864699999996 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSPV001", + "country" : "CHE", + "name" : [ + { + "text" : "LSPV Wangen-Lachen", + "lang" : "de-CH" + }, + { + "text" : "LSPV Wangen-Lachen", + "lang" : "fr-CH" + }, + { + "text" : "LSPV Wangen-Lachen", + "lang" : "it-CH" + }, + { + "text" : "LSPV Wangen-Lachen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "ASFG Ausserschwyzer Fluggemeinschaft Wangen", + "lang" : "de-CH" + }, + { + "text" : "ASFG Ausserschwyzer Fluggemeinschaft Wangen", + "lang" : "fr-CH" + }, + { + "text" : "ASFG Ausserschwyzer Fluggemeinschaft Wangen", + "lang" : "it-CH" + }, + { + "text" : "ASFG Ausserschwyzer Fluggemeinschaft Wangen", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.flugplatzwangen.ch/flugplatz/drohnenbewilligung/", + "email" : "drohnen@flugplatzwangen.ch", + "phone" : "0041554404217", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.2012068, 47.3941988 ], + [ 8.2010678, 47.3941546 ], + [ 8.2009862, 47.3941472 ], + [ 8.2009066, 47.3941627 ], + [ 8.200908, 47.3941828 ], + [ 8.2009789, 47.394268 ], + [ 8.201017, 47.3943787 ], + [ 8.2009999, 47.3944931 ], + [ 8.2009828, 47.3946361 ], + [ 8.2010396, 47.3946855 ], + [ 8.2007267, 47.3948513 ], + [ 8.2003194, 47.3947521 ], + [ 8.2001226, 47.3951675 ], + [ 8.2009483, 47.3953477 ], + [ 8.2008757, 47.3954917 ], + [ 8.2011044, 47.3958251 ], + [ 8.2013301, 47.3961534 ], + [ 8.2017745, 47.3962246 ], + [ 8.2023024, 47.3963097 ], + [ 8.2023556, 47.3963121 ], + [ 8.2023766, 47.3967687 ], + [ 8.2024342, 47.3972553 ], + [ 8.2026531, 47.3977176 ], + [ 8.2027276, 47.3981831 ], + [ 8.2028788, 47.3990133 ], + [ 8.2029404, 47.3993472 ], + [ 8.2032767, 47.399492 ], + [ 8.2036078, 47.3996441 ], + [ 8.2039411, 47.399807 ], + [ 8.2042619, 47.3999741 ], + [ 8.2045709, 47.4001442 ], + [ 8.2048834, 47.4003252 ], + [ 8.2050013, 47.4003936 ], + [ 8.2049976, 47.4004551 ], + [ 8.2051556, 47.4005655 ], + [ 8.2056072, 47.4008273 ], + [ 8.2061451, 47.4012294 ], + [ 8.2066238, 47.4016858 ], + [ 8.2066789, 47.4016598 ], + [ 8.2070191, 47.4015053 ], + [ 8.2073473, 47.4015427 ], + [ 8.2073182, 47.4014892 ], + [ 8.2074488, 47.4014519 ], + [ 8.2069985, 47.4007056 ], + [ 8.2060689, 47.3991536 ], + [ 8.2055735, 47.3983263 ], + [ 8.2050712, 47.3974877 ], + [ 8.2045711, 47.3966537 ], + [ 8.204495, 47.3965778 ], + [ 8.2042238, 47.3961713 ], + [ 8.2041283, 47.3959416 ], + [ 8.2041566, 47.3958969 ], + [ 8.2040962, 47.395742 ], + [ 8.2036994, 47.3956531 ], + [ 8.2031379, 47.3955142 ], + [ 8.2032659, 47.3952948 ], + [ 8.2032778, 47.3952745 ], + [ 8.2032735, 47.3952557 ], + [ 8.2028713, 47.3949872 ], + [ 8.2025777, 47.39482 ], + [ 8.2022603, 47.3946511 ], + [ 8.2019315, 47.3944926 ], + [ 8.2015807, 47.394341 ], + [ 8.2012068, 47.3941988 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VBS_12", + "country" : "CHE", + "name" : [ + { + "text" : "VBS_12 Othmarsingen", + "lang" : "de-CH" + }, + { + "text" : "VBS_12 Othmarsingen", + "lang" : "fr-CH" + }, + { + "text" : "VBS_12 Othmarsingen", + "lang" : "it-CH" + }, + { + "text" : "VBS_12 Othmarsingen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "regulationExemption" : "YES", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Eidgenössisches Departement für Verteidigung, Bevölkerungsschutz und Sport (VBS)", + "lang" : "de-CH" + }, + { + "text" : "Département fédéral de la défense, de la protection de la population et des sports (DDPS)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento federale della difesa, della protezione della popolazione e dello sport (DDPS)", + "lang" : "it-CH" + }, + { + "text" : "Federal Department of Defence, Civil Protection and Sport (DDPS)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Lageverfolgungszentrum der Armee LVZ A", + "lang" : "de-CH" + }, + { + "text" : "Centre de suivi de la situation de l’armée, CSS A", + "lang" : "fr-CH" + }, + { + "text" : "Centro di monitoraggio della situazione dell’esercito, Centro mon sit Es", + "lang" : "it-CH" + }, + { + "text" : "Joint Operation Center, JOC", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vtg.admin.ch/en/joint-operations-command", + "email" : "lvz.op@vtg.admin.ch", + "phone" : "+41 58 464 96 43", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.0653989, 46.1107689 ], + [ 7.0653945, 46.1106277 ], + [ 7.0653795, 46.1104868 ], + [ 7.065354, 46.1103466 ], + [ 7.0653179, 46.1102076 ], + [ 7.0652714, 46.11007 ], + [ 7.0652147, 46.1099344 ], + [ 7.0651478, 46.109801 ], + [ 7.065071, 46.1096702 ], + [ 7.0649844, 46.1095424 ], + [ 7.0648883, 46.1094179 ], + [ 7.064783, 46.1092971 ], + [ 7.0646687, 46.1091803 ], + [ 7.0645459, 46.1090678 ], + [ 7.0644147, 46.1089599 ], + [ 7.0642755, 46.1088569 ], + [ 7.0641289, 46.1087592 ], + [ 7.063975, 46.1086669 ], + [ 7.0638145, 46.1085804 ], + [ 7.0636476, 46.1084998 ], + [ 7.0634749, 46.1084254 ], + [ 7.0632969, 46.1083574 ], + [ 7.063114, 46.1082959 ], + [ 7.0629267, 46.1082413 ], + [ 7.0627355, 46.1081935 ], + [ 7.0625411, 46.1081527 ], + [ 7.0623438, 46.108119 ], + [ 7.0621442, 46.1080926 ], + [ 7.061943, 46.1080735 ], + [ 7.0617405, 46.1080617 ], + [ 7.0615375, 46.1080574 ], + [ 7.0613344, 46.1080604 ], + [ 7.0611318, 46.1080708 ], + [ 7.0609303, 46.1080885 ], + [ 7.0607304, 46.1081136 ], + [ 7.0605326999999996, 46.1081459 ], + [ 7.0603376, 46.1081854 ], + [ 7.0601458, 46.1082319 ], + [ 7.0599578, 46.1082854 ], + [ 7.059774, 46.1083456 ], + [ 7.0595951, 46.1084124 ], + [ 7.0594213, 46.1084856 ], + [ 7.0592534, 46.1085651 ], + [ 7.0590916, 46.1086505 ], + [ 7.0589365, 46.1087418 ], + [ 7.0587885, 46.1088385 ], + [ 7.058648, 46.1089405 ], + [ 7.0585153, 46.1090475 ], + [ 7.0583909, 46.1091592 ], + [ 7.058275, 46.1092752 ], + [ 7.058168, 46.1093954 ], + [ 7.0580702, 46.1095192 ], + [ 7.0579819, 46.1096464 ], + [ 7.0579032, 46.1097767 ], + [ 7.0578345, 46.1099096 ], + [ 7.0577758, 46.1100449 ], + [ 7.0577275, 46.1101821 ], + [ 7.0576895, 46.1103209 ], + [ 7.057662, 46.1104609 ], + [ 7.057645, 46.1106017 ], + [ 7.0576387, 46.1107429 ], + [ 7.0576431, 46.1108842 ], + [ 7.057658, 46.1110251 ], + [ 7.0576834999999996, 46.1111652 ], + [ 7.0577196, 46.1113043 ], + [ 7.0577661, 46.1114418 ], + [ 7.0578228, 46.1115775 ], + [ 7.0578897, 46.1117109 ], + [ 7.0579665, 46.1118417 ], + [ 7.0580531, 46.1119695 ], + [ 7.0581491, 46.112094 ], + [ 7.0582544, 46.1122148 ], + [ 7.0583687, 46.1123316 ], + [ 7.0584916, 46.1124441 ], + [ 7.0586227, 46.112552 ], + [ 7.0587619, 46.112655 ], + [ 7.0589085, 46.1127527 ], + [ 7.0590624, 46.112845 ], + [ 7.0592229, 46.1129315 ], + [ 7.0593898, 46.1130121 ], + [ 7.0595625, 46.1130865 ], + [ 7.0597405, 46.1131546 ], + [ 7.0599235, 46.113216 ], + [ 7.0601108, 46.1132707 ], + [ 7.0603019, 46.1133185 ], + [ 7.0604964, 46.1133593 ], + [ 7.0606937, 46.1133929 ], + [ 7.0608933, 46.1134194 ], + [ 7.0610946, 46.1134385 ], + [ 7.061297, 46.1134502 ], + [ 7.0615001, 46.1134546 ], + [ 7.0617032, 46.1134516 ], + [ 7.0619058, 46.1134412 ], + [ 7.0621073, 46.1134234 ], + [ 7.0623072, 46.1133983 ], + [ 7.062505, 46.113366 ], + [ 7.0627001, 46.1133265 ], + [ 7.0628919, 46.11328 ], + [ 7.0630799, 46.1132266 ], + [ 7.0632637, 46.1131664 ], + [ 7.0634427, 46.1130996 ], + [ 7.0636164, 46.1130263 ], + [ 7.0637844, 46.1129468 ], + [ 7.0639461, 46.1128614 ], + [ 7.0641013, 46.1127701 ], + [ 7.0642493, 46.1126734 ], + [ 7.0643898, 46.1125714 ], + [ 7.0645225, 46.1124644 ], + [ 7.0646469, 46.1123527 ], + [ 7.0647628, 46.1122366 ], + [ 7.0648698, 46.1121165 ], + [ 7.0649675, 46.1119927 ], + [ 7.0650559, 46.1118654 ], + [ 7.0651345, 46.1117352 ], + [ 7.0652032, 46.1116022 ], + [ 7.0652619, 46.111467 ], + [ 7.0653102, 46.1113297 ], + [ 7.0653482, 46.1111909 ], + [ 7.0653757, 46.1110509 ], + [ 7.0653926, 46.1109102 ], + [ 7.0653989, 46.1107689 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0010", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Bâtiaz", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Bâtiaz", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Bâtiaz", + "lang" : "it-CH" + }, + { + "text" : "Substation Bâtiaz", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.2103615, 47.0180439 ], + [ 9.2108284, 47.0184781 ], + [ 9.2109728, 47.0188057 ], + [ 9.2113614, 47.0195658 ], + [ 9.2114351, 47.0202243 ], + [ 9.2116852, 47.0208318 ], + [ 9.211833, 47.0213016 ], + [ 9.2120796, 47.0213517 ], + [ 9.2126239, 47.0216102 ], + [ 9.2126753, 47.0216901 ], + [ 9.2126775, 47.0217085 ], + [ 9.212687, 47.0217754 ], + [ 9.2127451, 47.0217737 ], + [ 9.2127946, 47.0217688 ], + [ 9.2128275, 47.0217642 ], + [ 9.2128479, 47.0217555 ], + [ 9.2128761, 47.0217325 ], + [ 9.2128949, 47.0217146 ], + [ 9.2129028, 47.0217071 ], + [ 9.2129192, 47.0217019 ], + [ 9.2129416, 47.0217023 ], + [ 9.212944, 47.0217023 ], + [ 9.2129814, 47.0217068 ], + [ 9.2130225, 47.0216986 ], + [ 9.2130387, 47.0216909 ], + [ 9.2130454, 47.0216824 ], + [ 9.2130475, 47.0216746 ], + [ 9.2130528, 47.0216548 ], + [ 9.2130566, 47.0216447 ], + [ 9.21307, 47.021632 ], + [ 9.2130997, 47.021614 ], + [ 9.2131433, 47.0215975 ], + [ 9.2131706, 47.0215896 ], + [ 9.2131925, 47.0215867 ], + [ 9.2132229, 47.0215896 ], + [ 9.2132425, 47.0215968 ], + [ 9.2132676, 47.021609 ], + [ 9.2133013, 47.0216285 ], + [ 9.2133181, 47.0216358 ], + [ 9.2133847, 47.0216489 ], + [ 9.2134151, 47.0216543 ], + [ 9.2134401, 47.0216581 ], + [ 9.2134568, 47.0216654 ], + [ 9.2134709, 47.0216752 ], + [ 9.2134905, 47.0216841 ], + [ 9.213521, 47.0216903 ], + [ 9.2135432, 47.0216958 ], + [ 9.2135836, 47.0217085 ], + [ 9.2136157, 47.0217231 ], + [ 9.2136394, 47.0217319 ], + [ 9.2136588, 47.0217358 ], + [ 9.2136797, 47.0217413 ], + [ 9.213702, 47.021751 ], + [ 9.2137218, 47.0217649 ], + [ 9.2137456, 47.0217762 ], + [ 9.2137708, 47.0217892 ], + [ 9.2137936, 47.0218155 ], + [ 9.2137942, 47.0218175 ], + [ 9.2137947, 47.0218194 ], + [ 9.2137999, 47.0218388 ], + [ 9.2137957, 47.0218814 ], + [ 9.2137879, 47.021915 ], + [ 9.213784799999999, 47.0219283 ], + [ 9.2137863, 47.0219759 ], + [ 9.2137904, 47.0220175 ], + [ 9.2138288, 47.0221004 ], + [ 9.2138493, 47.022136 ], + [ 9.2138663, 47.0221508 ], + [ 9.2139041, 47.0221702 ], + [ 9.2139461, 47.0221921 ], + [ 9.213966, 47.0222093 ], + [ 9.2140047, 47.0222588 ], + [ 9.2140571, 47.0223031 ], + [ 9.2140963, 47.0223234 ], + [ 9.2141173, 47.0223314 ], + [ 9.2141302, 47.0223328 ], + [ 9.2141311, 47.0223329 ], + [ 9.214153, 47.0223292 ], + [ 9.2141967, 47.0223169 ], + [ 9.2142324, 47.0223138 ], + [ 9.2142905, 47.022318 ], + [ 9.2143183, 47.0223267 ], + [ 9.2143476, 47.0223396 ], + [ 9.2143632, 47.0223511 ], + [ 9.2144069, 47.0223838 ], + [ 9.2144393, 47.022405 ], + [ 9.214452, 47.0224157 ], + [ 9.2144665, 47.022438 ], + [ 9.2144755, 47.0224656 ], + [ 9.2144787, 47.0224753 ], + [ 9.2144853, 47.0225095 ], + [ 9.2144914, 47.0225286 ], + [ 9.2145, 47.0225393 ], + [ 9.2145113, 47.0225466 ], + [ 9.2145308, 47.0225538 ], + [ 9.2145612, 47.0225576 ], + [ 9.2145862, 47.022563 ], + [ 9.2146058, 47.0225727 ], + [ 9.2146298, 47.0225924 ], + [ 9.2146457, 47.0226139 ], + [ 9.2146627, 47.0226303 ], + [ 9.2146797, 47.0226434 ], + [ 9.2147176, 47.0226662 ], + [ 9.2147765, 47.022697 ], + [ 9.2147822, 47.0227001 ], + [ 9.2148101, 47.0227149 ], + [ 9.214841, 47.0227328 ], + [ 9.2148509, 47.022741 ], + [ 9.2148641, 47.0227666 ], + [ 9.2148799, 47.0227873 ], + [ 9.2148956, 47.0228029 ], + [ 9.2149111, 47.0228143 ], + [ 9.2149517, 47.0228346 ], + [ 9.2149617, 47.0228388 ], + [ 9.2149922, 47.0228515 ], + [ 9.2150273, 47.022871 ], + [ 9.215061, 47.0228939 ], + [ 9.2150905, 47.0229109 ], + [ 9.2151201, 47.0229314 ], + [ 9.2151399, 47.0229478 ], + [ 9.2151556, 47.022965 ], + [ 9.2151756, 47.0229881 ], + [ 9.2151791, 47.0229935 ], + [ 9.2151873, 47.0230063 ], + [ 9.2152188, 47.023045 ], + [ 9.2152444, 47.0230705 ], + [ 9.2152725, 47.0230876 ], + [ 9.2153018, 47.0231005 ], + [ 9.215309, 47.0231096 ], + [ 9.215314, 47.0231346 ], + [ 9.2153211, 47.0231428 ], + [ 9.2153379, 47.0231501 ], + [ 9.2153574, 47.0231564 ], + [ 9.2153645, 47.0231647 ], + [ 9.2153691, 47.023178 ], + [ 9.215377, 47.0232121 ], + [ 9.215392, 47.0232511 ], + [ 9.2154112, 47.02329 ], + [ 9.2154259, 47.0233182 ], + [ 9.2154561, 47.0233578 ], + [ 9.2154864, 47.0234024 ], + [ 9.2155151, 47.0234378 ], + [ 9.215531, 47.0234626 ], + [ 9.215544, 47.0234791 ], + [ 9.2155864, 47.0235135 ], + [ 9.2156206, 47.0235489 ], + [ 9.2156491, 47.0235777 ], + [ 9.2156789, 47.0236048 ], + [ 9.2156973, 47.0236212 ], + [ 9.2157157, 47.0236312 ], + [ 9.2157211, 47.0236342 ], + [ 9.2157406, 47.0236389 ], + [ 9.2157697, 47.0236451 ], + [ 9.2158102, 47.0236637 ], + [ 9.2158187, 47.0236702 ], + [ 9.215823199999999, 47.0236819 ], + [ 9.2158214, 47.0237119 ], + [ 9.2158251, 47.0237312 ], + [ 9.215828, 47.0237469 ], + [ 9.2158385, 47.0237718 ], + [ 9.2158528, 47.0237891 ], + [ 9.2158697, 47.0238013 ], + [ 9.215916, 47.0238273 ], + [ 9.2159483, 47.0238452 ], + [ 9.215952, 47.0238484 ], + [ 9.2159596, 47.0238551 ], + [ 9.2159755, 47.0238774 ], + [ 9.2159854, 47.0238872 ], + [ 9.2159994, 47.0238928 ], + [ 9.2160229, 47.0238958 ], + [ 9.2160644, 47.0239002 ], + [ 9.216085, 47.0238991 ], + [ 9.2161166, 47.0238944 ], + [ 9.2161252, 47.0238929 ], + [ 9.2161431, 47.0238896 ], + [ 9.2161467, 47.023889 ], + [ 9.2161702, 47.0238894 ], + [ 9.2161937, 47.0238916 ], + [ 9.2162239, 47.0238986 ], + [ 9.2162242, 47.0238986 ], + [ 9.2162478, 47.0239041 ], + [ 9.2162837, 47.0239078 ], + [ 9.2163039, 47.0239075 ], + [ 9.2163099, 47.0239074 ], + [ 9.2163333, 47.0239053 ], + [ 9.2163655, 47.0239042 ], + [ 9.2163732, 47.0239039 ], + [ 9.2164062, 47.0239026 ], + [ 9.2164528, 47.0238952 ], + [ 9.2165309, 47.0238798 ], + [ 9.2165636, 47.0238741 ], + [ 9.2165884, 47.0238698 ], + [ 9.216603, 47.023868 ], + [ 9.2166275, 47.0238651 ], + [ 9.2166283, 47.023865 ], + [ 9.2166531, 47.0238663 ], + [ 9.2166767, 47.0238734 ], + [ 9.2166991, 47.0238831 ], + [ 9.2167316, 47.0239093 ], + [ 9.216757, 47.0239343 ], + [ 9.2167601, 47.0239373 ], + [ 9.2167798, 47.023952 ], + [ 9.2168007, 47.0239592 ], + [ 9.2168269, 47.0239588 ], + [ 9.216857, 47.0239525 ], + [ 9.2168589, 47.0239518 ], + [ 9.2169033, 47.0239343 ], + [ 9.2169319, 47.0239238 ], + [ 9.2169565, 47.0239193 ], + [ 9.2169744, 47.023919 ], + [ 9.2170035, 47.0239228 ], + [ 9.2170243, 47.0239275 ], + [ 9.2170509, 47.0239396 ], + [ 9.2170772, 47.0239597 ], + [ 9.217082, 47.0239633 ], + [ 9.2171199, 47.0239853 ], + [ 9.2171631, 47.0240021 ], + [ 9.217209, 47.0240156 ], + [ 9.2172407, 47.0240168 ], + [ 9.2172737, 47.024013 ], + [ 9.2173052, 47.0240075 ], + [ 9.2173183, 47.024005 ], + [ 9.2173381, 47.0240012 ], + [ 9.217367, 47.0239999 ], + [ 9.2173836, 47.0240038 ], + [ 9.2174352, 47.0240206 ], + [ 9.2174677, 47.0240341 ], + [ 9.2174789, 47.0240362 ], + [ 9.2174894, 47.024043 ], + [ 9.2175441, 47.0240656 ], + [ 9.2176224, 47.0241029 ], + [ 9.2176885, 47.0241453 ], + [ 9.2177503, 47.024181 ], + [ 9.2177701, 47.0241974 ], + [ 9.2177818, 47.0242173 ], + [ 9.2177895, 47.0242368 ], + [ 9.2177922, 47.0242438 ], + [ 9.2178081, 47.0242653 ], + [ 9.2178238, 47.0242826 ], + [ 9.2178548, 47.0243038 ], + [ 9.2179039, 47.0243331 ], + [ 9.2179656, 47.0243647 ], + [ 9.2180089, 47.0243841 ], + [ 9.2180458, 47.024396 ], + [ 9.2180535, 47.0243984 ], + [ 9.2180711, 47.0244039 ], + [ 9.2180715, 47.024404 ], + [ 9.2180989, 47.0244264 ], + [ 9.2181197, 47.0244434 ], + [ 9.2181324, 47.0244557 ], + [ 9.2181399, 47.0244723 ], + [ 9.2181484, 47.0244821 ], + [ 9.2181624, 47.0244894 ], + [ 9.2182152, 47.0245012 ], + [ 9.2182291, 47.0245051 ], + [ 9.2182432, 47.0245149 ], + [ 9.2182586, 47.024523 ], + [ 9.2182878, 47.0245301 ], + [ 9.2183141, 47.0245339 ], + [ 9.2183252, 47.0245387 ], + [ 9.2183623, 47.0245766 ], + [ 9.2183821, 47.0245921 ], + [ 9.2184086, 47.0246026 ], + [ 9.2184279, 47.0246039 ], + [ 9.2184515, 47.024602 ], + [ 9.218452599999999, 47.0246019 ], + [ 9.2184773, 47.024599 ], + [ 9.2184939, 47.0246004 ], + [ 9.2185106, 47.024606 ], + [ 9.2185207, 47.0246192 ], + [ 9.2185339, 47.0246432 ], + [ 9.2185542, 47.0246771 ], + [ 9.2185597, 47.0246886 ], + [ 9.2185705, 47.0247111 ], + [ 9.2185839, 47.0247443 ], + [ 9.2185943, 47.0247667 ], + [ 9.2186128, 47.0247847 ], + [ 9.2186309, 47.0247928 ], + [ 9.2186698, 47.0248022 ], + [ 9.2186935, 47.0248102 ], + [ 9.2187268, 47.0248164 ], + [ 9.2187502, 47.0248177 ], + [ 9.2187777, 47.024814 ], + [ 9.2188167, 47.0248091 ], + [ 9.218831, 47.0248073 ], + [ 9.2188873, 47.0248078 ], + [ 9.2189493, 47.0248325 ], + [ 9.2190448, 47.0248459 ], + [ 9.2190619, 47.0248513 ], + [ 9.21909, 47.0248602 ], + [ 9.2191319, 47.0248826 ], + [ 9.2191705, 47.0249032 ], + [ 9.2192083, 47.0249218 ], + [ 9.2192208, 47.0249266 ], + [ 9.2192334, 47.0249314 ], + [ 9.219264, 47.0249401 ], + [ 9.2192931, 47.0249472 ], + [ 9.2193211, 47.0249593 ], + [ 9.2193309, 47.0249658 ], + [ 9.2193531, 47.0249705 ], + [ 9.219378, 47.024971 ], + [ 9.2194151, 47.0249687 ], + [ 9.2194344, 47.0249684 ], + [ 9.2194662, 47.0249721 ], + [ 9.2194966, 47.0249767 ], + [ 9.2195123, 47.0249749 ], + [ 9.2195296, 47.0249728 ], + [ 9.2195927, 47.0249644 ], + [ 9.2196465, 47.0249644 ], + [ 9.2197002, 47.0249653 ], + [ 9.2197637, 47.0249693 ], + [ 9.2198177, 47.0249752 ], + [ 9.2198551, 47.0249813 ], + [ 9.2198814, 47.0249859 ], + [ 9.2199089, 47.0249838 ], + [ 9.2199446, 47.0249808 ], + [ 9.2199805, 47.0249819 ], + [ 9.2199916, 47.0249842 ], + [ 9.2200046, 47.0249902 ], + [ 9.2200196, 47.0249971 ], + [ 9.2200376, 47.0250002 ], + [ 9.2200642, 47.0249973 ], + [ 9.2200911, 47.0249944 ], + [ 9.2201016, 47.0249928 ], + [ 9.2201158, 47.0249907 ], + [ 9.2201724, 47.0249923 ], + [ 9.2202206, 47.0249933 ], + [ 9.2203004, 47.0249887 ], + [ 9.2203376, 47.024989 ], + [ 9.2203667, 47.0249927 ], + [ 9.2204069, 47.0250005 ], + [ 9.2204614, 47.0250085 ], + [ 9.2204996, 47.0250141 ], + [ 9.2205674, 47.0250231 ], + [ 9.2206076, 47.0250283 ], + [ 9.2206167, 47.0250289 ], + [ 9.2206697, 47.0250324 ], + [ 9.2206974, 47.0250361 ], + [ 9.2207155, 47.0250434 ], + [ 9.2207325, 47.0250565 ], + [ 9.2207373, 47.0250611 ], + [ 9.2207453, 47.0250688 ], + [ 9.220769, 47.0250776 ], + [ 9.2208217, 47.0250885 ], + [ 9.2208715, 47.0250961 ], + [ 9.2209241, 47.0251028 ], + [ 9.2209396, 47.0251072 ], + [ 9.2209575, 47.0251123 ], + [ 9.2210006, 47.025125 ], + [ 9.2210279, 47.0251326 ], + [ 9.2211063, 47.0251543 ], + [ 9.2211509, 47.0251711 ], + [ 9.2211942, 47.0251897 ], + [ 9.2212264, 47.025205 ], + [ 9.2212491, 47.0252272 ], + [ 9.221286, 47.0252584 ], + [ 9.2212954, 47.025267 ], + [ 9.2213129, 47.025283 ], + [ 9.2213203, 47.0252971 ], + [ 9.2213208, 47.0253121 ], + [ 9.2213266, 47.025322 ], + [ 9.2213364, 47.0253286 ], + [ 9.2213531, 47.0253325 ], + [ 9.2214129, 47.0253491 ], + [ 9.2214352, 47.025358 ], + [ 9.2214522, 47.0253719 ], + [ 9.2214638, 47.0253909 ], + [ 9.2214724, 47.0254008 ], + [ 9.2214849, 47.0254039 ], + [ 9.2215249, 47.0254058 ], + [ 9.2215388, 47.025409 ], + [ 9.2215667, 47.0254194 ], + [ 9.2215807, 47.025425 ], + [ 9.2215932, 47.0254242 ], + [ 9.2215985, 47.0254226 ], + [ 9.2216282, 47.0254135 ], + [ 9.2216676, 47.0254103 ], + [ 9.2216927, 47.025415 ], + [ 9.2217158, 47.0254236 ], + [ 9.2217313, 47.0254333 ], + [ 9.2217413, 47.0254397 ], + [ 9.2217962, 47.0254656 ], + [ 9.2218235, 47.0254739 ], + [ 9.2218634, 47.0254861 ], + [ 9.2218988, 47.0254894 ], + [ 9.221923, 47.0254878 ], + [ 9.2219237, 47.0254877 ], + [ 9.2220022, 47.0254738 ], + [ 9.2220271, 47.0254708 ], + [ 9.2220481, 47.0254769 ], + [ 9.2220838, 47.0254903 ], + [ 9.2221089, 47.0254937 ], + [ 9.2221297, 47.0254934 ], + [ 9.2221546, 47.025493 ], + [ 9.2222168, 47.0254882 ], + [ 9.2222876, 47.0254922 ], + [ 9.222344, 47.0255002 ], + [ 9.2223714, 47.0255112 ], + [ 9.2223991, 47.0255324 ], + [ 9.2224225, 47.0255486 ], + [ 9.222452, 47.0255609 ], + [ 9.2224632, 47.025569 ], + [ 9.2224796, 47.0255808 ], + [ 9.2224925, 47.0255933 ], + [ 9.222543, 47.0256116 ], + [ 9.2226057, 47.0256234 ], + [ 9.2226641, 47.0256288 ], + [ 9.2227202, 47.0256292 ], + [ 9.2228011, 47.0256241 ], + [ 9.2228446, 47.0256196 ], + [ 9.2228887, 47.0256144 ], + [ 9.2229067, 47.0256122 ], + [ 9.2229358, 47.0256117 ], + [ 9.223073, 47.0256108 ], + [ 9.2231499, 47.0256096 ], + [ 9.2232063, 47.0256189 ], + [ 9.2232438, 47.0256209 ], + [ 9.2232727, 47.0256166 ], + [ 9.2233038, 47.0256148 ], + [ 9.2233269, 47.0256195 ], + [ 9.2233417, 47.0256295 ], + [ 9.2233484, 47.0256434 ], + [ 9.2233655, 47.0256545 ], + [ 9.2233675, 47.0256558 ], + [ 9.2234053, 47.025668 ], + [ 9.2234222, 47.0256766 ], + [ 9.2234459, 47.0257004 ], + [ 9.2234608, 47.0257129 ], + [ 9.2234818, 47.0257202 ], + [ 9.2235422, 47.0257289 ], + [ 9.2235696, 47.0257328 ], + [ 9.2236155, 47.0257398 ], + [ 9.2236596, 47.0257543 ], + [ 9.2236953, 47.0257652 ], + [ 9.2237309, 47.0257723 ], + [ 9.2237768, 47.0257779 ], + [ 9.2237977, 47.0257776 ], + [ 9.2238142, 47.0257773 ], + [ 9.2238433, 47.0257769 ], + [ 9.2238725, 47.0257815 ], + [ 9.2239042, 47.0257963 ], + [ 9.2239337, 47.0258098 ], + [ 9.2239446, 47.0258167 ], + [ 9.2239804, 47.0258396 ], + [ 9.2240082, 47.0258621 ], + [ 9.2240313, 47.0258707 ], + [ 9.2240605, 47.025874 ], + [ 9.2240979, 47.0258722 ], + [ 9.2241376, 47.0258779 ], + [ 9.2242065, 47.0258883 ], + [ 9.2242358, 47.0258942 ], + [ 9.2242745, 47.0259047 ], + [ 9.2242756, 47.025905 ], + [ 9.2242804, 47.025907 ], + [ 9.2243589, 47.0259374 ], + [ 9.2243682, 47.0259404 ], + [ 9.2244352, 47.0259559 ], + [ 9.224471, 47.0259694 ], + [ 9.2244921, 47.025978 ], + [ 9.2245296, 47.0259812 ], + [ 9.2245528, 47.0259923 ], + [ 9.2245764, 47.0260135 ], + [ 9.2246121, 47.0260257 ], + [ 9.2246372, 47.0260317 ], + [ 9.2246542, 47.0260403 ], + [ 9.2246621, 47.0260457 ], + [ 9.2246636, 47.0260462 ], + [ 9.2248761, 47.0261647 ], + [ 9.2249488, 47.0262052 ], + [ 9.2251332, 47.0265068 ], + [ 9.2252399, 47.0266174 ], + [ 9.2254217, 47.0267312 ], + [ 9.2255662, 47.026807 ], + [ 9.2258001, 47.026842 ], + [ 9.2259852, 47.026829 ], + [ 9.2263539, 47.0267598 ], + [ 9.2268839, 47.0268556 ], + [ 9.227396, 47.0270835 ], + [ 9.2276202, 47.0272424 ], + [ 9.2280525, 47.027299 ], + [ 9.2282435, 47.0274436 ], + [ 9.2282855, 47.0273291 ], + [ 9.2282979, 47.0272912 ], + [ 9.2283112, 47.0272534 ], + [ 9.2283254, 47.0272158 ], + [ 9.2283406, 47.0271784 ], + [ 9.2283566, 47.0271412 ], + [ 9.2283736, 47.0271041 ], + [ 9.2283807, 47.0270894 ], + [ 9.2283882, 47.0270747 ], + [ 9.228396, 47.0270601 ], + [ 9.2284042, 47.0270457 ], + [ 9.2284127, 47.0270313 ], + [ 9.2284216, 47.027017 ], + [ 9.2284307, 47.0270028 ], + [ 9.2284403, 47.0269887 ], + [ 9.2284502, 47.0269747 ], + [ 9.2284604, 47.0269609 ], + [ 9.2284699, 47.0269484 ], + [ 9.2284798, 47.026936 ], + [ 9.22849, 47.0269237 ], + [ 9.2285004, 47.0269115 ], + [ 9.2285111, 47.0268995 ], + [ 9.2285222, 47.0268875 ], + [ 9.2285334, 47.0268757 ], + [ 9.228545, 47.0268641 ], + [ 9.2285569, 47.0268525 ], + [ 9.228569, 47.0268411 ], + [ 9.2285813, 47.0268298 ], + [ 9.2285926, 47.0268198 ], + [ 9.2286042, 47.0268099 ], + [ 9.228616, 47.0268002 ], + [ 9.228628, 47.0267907 ], + [ 9.2286402, 47.0267812 ], + [ 9.2286527, 47.0267719 ], + [ 9.2286654, 47.0267628 ], + [ 9.2286783, 47.0267537 ], + [ 9.2286915, 47.0267449 ], + [ 9.2287048, 47.0267362 ], + [ 9.2287184, 47.0267276 ], + [ 9.2287321, 47.0267192 ], + [ 9.2287561, 47.0267051 ], + [ 9.2287803, 47.0266912 ], + [ 9.2288049, 47.0266776 ], + [ 9.2288297, 47.0266643 ], + [ 9.2288549, 47.0266513 ], + [ 9.2288804, 47.0266385 ], + [ 9.2289062, 47.026626 ], + [ 9.2289352, 47.0266122 ], + [ 9.2289685, 47.0266013 ], + [ 9.2289751, 47.0265993 ], + [ 9.2289817, 47.0265973 ], + [ 9.2289883, 47.0265954 ], + [ 9.228995, 47.0265935 ], + [ 9.2290017, 47.0265918 ], + [ 9.2290085, 47.0265901 ], + [ 9.2290153, 47.0265885 ], + [ 9.2290222, 47.026587 ], + [ 9.2290291, 47.0265855 ], + [ 9.229036, 47.0265841 ], + [ 9.229341, 47.0265095 ], + [ 9.2294595, 47.0264424 ], + [ 9.2294673, 47.0264373 ], + [ 9.2294749, 47.0264321 ], + [ 9.2294824, 47.0264268 ], + [ 9.2294897, 47.0264214 ], + [ 9.229497, 47.026416 ], + [ 9.229504, 47.0264104 ], + [ 9.229511, 47.0264048 ], + [ 9.2295178, 47.0263991 ], + [ 9.2295244, 47.0263933 ], + [ 9.2295309, 47.0263875 ], + [ 9.2295373, 47.0263816 ], + [ 9.2295435, 47.0263755 ], + [ 9.2295495, 47.0263695 ], + [ 9.2295554, 47.0263633 ], + [ 9.2295612, 47.0263571 ], + [ 9.2295668, 47.0263508 ], + [ 9.2295722, 47.0263445 ], + [ 9.2295775, 47.0263381 ], + [ 9.2295826, 47.0263316 ], + [ 9.2295947, 47.0263163 ], + [ 9.2296071, 47.0263011 ], + [ 9.22962, 47.0262861 ], + [ 9.2296331, 47.0262712 ], + [ 9.2296467, 47.0262565 ], + [ 9.2296606, 47.0262419 ], + [ 9.2296749, 47.0262275 ], + [ 9.2296895, 47.0262133 ], + [ 9.2297068, 47.0261971 ], + [ 9.2297244, 47.0261812 ], + [ 9.2297424, 47.0261654 ], + [ 9.2297608, 47.0261499 ], + [ 9.2297796, 47.0261346 ], + [ 9.2297901, 47.0261261 ], + [ 9.2298004, 47.0261174 ], + [ 9.2298104, 47.0261087 ], + [ 9.2298202, 47.0260998 ], + [ 9.2298298, 47.0260909 ], + [ 9.2298392, 47.0260818 ], + [ 9.2298483, 47.0260726 ], + [ 9.2298573, 47.0260633 ], + [ 9.229866, 47.0260539 ], + [ 9.2300481, 47.0258173 ], + [ 9.2300782, 47.0258144 ], + [ 9.2302842, 47.0257947 ], + [ 9.2304447, 47.0256744 ], + [ 9.2304975, 47.0256561 ], + [ 9.2305507, 47.0256384 ], + [ 9.2306044, 47.0256213 ], + [ 9.2306584, 47.0256048 ], + [ 9.2307129, 47.0255889 ], + [ 9.2307677, 47.0255737 ], + [ 9.230823000000001, 47.0255591 ], + [ 9.2308785, 47.0255451 ], + [ 9.2309344, 47.0255318 ], + [ 9.2309906, 47.0255191 ], + [ 9.2310864, 47.0254973 ], + [ 9.2311817, 47.0254744 ], + [ 9.2312765, 47.0254504 ], + [ 9.2313706, 47.0254253 ], + [ 9.2314641, 47.0253992 ], + [ 9.231915, 47.0252676 ], + [ 9.232027, 47.0252334 ], + [ 9.2321381, 47.0251981 ], + [ 9.2322483, 47.0251614 ], + [ 9.2323577, 47.0251234 ], + [ 9.2324357, 47.0250952 ], + [ 9.2325131, 47.0250661 ], + [ 9.2325898, 47.0250361 ], + [ 9.2326657, 47.0250052 ], + [ 9.2327408, 47.0249735 ], + [ 9.2331158, 47.0248141 ], + [ 9.2333121, 47.0247327 ], + [ 9.2335098, 47.0246527 ], + [ 9.2335662, 47.0246297 ], + [ 9.233622, 47.0246061 ], + [ 9.2336773, 47.0245819 ], + [ 9.2337321, 47.0245571 ], + [ 9.2337862, 47.0245317 ], + [ 9.2338398, 47.0245058 ], + [ 9.2338927, 47.0244792 ], + [ 9.2344478, 47.0242 ], + [ 9.2348168, 47.0241433 ], + [ 9.234847, 47.0241407 ], + [ 9.2348771, 47.0241377 ], + [ 9.2349071, 47.0241344 ], + [ 9.234937, 47.0241308 ], + [ 9.2349669, 47.0241269 ], + [ 9.2351162, 47.024107 ], + [ 9.2351598, 47.024101 ], + [ 9.2352034, 47.0240945 ], + [ 9.2352467, 47.0240875 ], + [ 9.2352899, 47.02408 ], + [ 9.2353091, 47.0240767 ], + [ 9.2353284, 47.0240736 ], + [ 9.2353477, 47.0240707 ], + [ 9.2353672, 47.0240681 ], + [ 9.2353867, 47.0240656 ], + [ 9.2354062, 47.0240634 ], + [ 9.2354258, 47.0240614 ], + [ 9.2354454, 47.0240597 ], + [ 9.2354651, 47.0240582 ], + [ 9.235484, 47.0240569 ], + [ 9.2355029, 47.0240559 ], + [ 9.2355219, 47.0240551 ], + [ 9.2355408, 47.0240544 ], + [ 9.2355598, 47.024054 ], + [ 9.2355788, 47.0240539 ], + [ 9.2355978, 47.0240539 ], + [ 9.2356167, 47.0240541 ], + [ 9.2356357, 47.0240546 ], + [ 9.2358063, 47.0240575 ], + [ 9.2358275, 47.0240577 ], + [ 9.2358487, 47.0240582 ], + [ 9.2358698, 47.0240589 ], + [ 9.235891, 47.0240598 ], + [ 9.2359121, 47.024061 ], + [ 9.2359332, 47.0240624 ], + [ 9.2359542, 47.024064 ], + [ 9.2359752, 47.0240659 ], + [ 9.2359833, 47.0240666 ], + [ 9.2359913, 47.0240672 ], + [ 9.2359994, 47.0240677 ], + [ 9.2360075, 47.0240682 ], + [ 9.2360155, 47.0240685 ], + [ 9.2360236, 47.0240688 ], + [ 9.2360318, 47.0240689 ], + [ 9.2360398, 47.024069 ], + [ 9.236048, 47.024069 ], + [ 9.2360561, 47.0240689 ], + [ 9.2360642, 47.0240687 ], + [ 9.2360723, 47.0240684 ], + [ 9.2360803, 47.024068 ], + [ 9.2360884, 47.0240675 ], + [ 9.2360965, 47.0240669 ], + [ 9.2361045, 47.0240662 ], + [ 9.2361125, 47.0240654 ], + [ 9.2361206, 47.0240646 ], + [ 9.2361285, 47.0240636 ], + [ 9.2361365, 47.0240626 ], + [ 9.2361444, 47.0240615 ], + [ 9.2361512, 47.0240605 ], + [ 9.2361579, 47.0240595 ], + [ 9.2361646, 47.0240584 ], + [ 9.2361712, 47.0240572 ], + [ 9.2361779, 47.0240559 ], + [ 9.2361844, 47.0240546 ], + [ 9.236191, 47.0240532 ], + [ 9.2361975, 47.0240517 ], + [ 9.236204, 47.0240501 ], + [ 9.2362104, 47.0240485 ], + [ 9.2362168, 47.0240467 ], + [ 9.2362232, 47.0240449 ], + [ 9.2362295, 47.024043 ], + [ 9.2362357, 47.0240411 ], + [ 9.236242, 47.0240391 ], + [ 9.2362481, 47.024037 ], + [ 9.2362542, 47.0240348 ], + [ 9.2362603, 47.0240325 ], + [ 9.2362662, 47.0240302 ], + [ 9.2362722, 47.0240278 ], + [ 9.236278, 47.0240254 ], + [ 9.2362838, 47.0240228 ], + [ 9.2362895, 47.0240202 ], + [ 9.2362952, 47.0240176 ], + [ 9.2363008, 47.0240148 ], + [ 9.2363063, 47.024012 ], + [ 9.2363118, 47.0240092 ], + [ 9.2363172, 47.0240062 ], + [ 9.2363225, 47.0240032 ], + [ 9.2363277, 47.0240002 ], + [ 9.2363328, 47.0239971 ], + [ 9.2363379, 47.0239939 ], + [ 9.2363429, 47.0239906 ], + [ 9.2363478, 47.0239873 ], + [ 9.2363526, 47.023984 ], + [ 9.2363573, 47.0239806 ], + [ 9.2365016, 47.0229928 ], + [ 9.2365017, 47.0229898 ], + [ 9.2365018, 47.0229867 ], + [ 9.2365017, 47.0229837 ], + [ 9.2365016, 47.0229807 ], + [ 9.2365014, 47.0229776 ], + [ 9.2365012, 47.0229746 ], + [ 9.2365009, 47.0229716 ], + [ 9.2365004, 47.0229686 ], + [ 9.2365, 47.0229655 ], + [ 9.2364994, 47.0229625 ], + [ 9.2364988, 47.0229595 ], + [ 9.2364981, 47.0229565 ], + [ 9.2364973, 47.0229535 ], + [ 9.2364964, 47.0229506 ], + [ 9.2364955, 47.0229476 ], + [ 9.2364945, 47.0229446 ], + [ 9.2364934, 47.0229417 ], + [ 9.2364923, 47.0229388 ], + [ 9.236491, 47.0229358 ], + [ 9.2364897, 47.0229329 ], + [ 9.2364884, 47.0229301 ], + [ 9.2364869, 47.0229272 ], + [ 9.2364854, 47.0229243 ], + [ 9.2364838, 47.0229215 ], + [ 9.2364822, 47.0229187 ], + [ 9.2364804, 47.0229159 ], + [ 9.2364786, 47.0229131 ], + [ 9.2364768, 47.0229104 ], + [ 9.2364748, 47.0229076 ], + [ 9.2364728, 47.0229049 ], + [ 9.2364708, 47.0229022 ], + [ 9.2364686, 47.0228996 ], + [ 9.2364664, 47.0228969 ], + [ 9.2364642, 47.0228943 ], + [ 9.2364618, 47.0228917 ], + [ 9.2364594, 47.0228892 ], + [ 9.2364567, 47.0228862 ], + [ 9.236454, 47.0228832 ], + [ 9.2364513, 47.0228802 ], + [ 9.2364488, 47.0228772 ], + [ 9.2364463, 47.0228741 ], + [ 9.2364439, 47.022871 ], + [ 9.2364416, 47.0228678 ], + [ 9.2364394, 47.0228647 ], + [ 9.2364373, 47.0228615 ], + [ 9.2364352, 47.0228583 ], + [ 9.2364332, 47.022855 ], + [ 9.2364313, 47.0228518 ], + [ 9.2364295, 47.0228485 ], + [ 9.2364277, 47.0228452 ], + [ 9.2364261, 47.0228419 ], + [ 9.2364245, 47.0228385 ], + [ 9.236423, 47.0228352 ], + [ 9.2364217, 47.0228318 ], + [ 9.2364203, 47.0228284 ], + [ 9.236419099999999, 47.022825 ], + [ 9.236418, 47.0228215 ], + [ 9.2364169, 47.0228181 ], + [ 9.236416, 47.0228147 ], + [ 9.2364151, 47.0228112 ], + [ 9.2364143, 47.0228077 ], + [ 9.2364136, 47.0228043 ], + [ 9.236413, 47.0228008 ], + [ 9.2364125, 47.0227973 ], + [ 9.236412, 47.0227938 ], + [ 9.2364117, 47.0227903 ], + [ 9.2364114, 47.0227868 ], + [ 9.2364086, 47.0227282 ], + [ 9.2364071, 47.0226697 ], + [ 9.2364069, 47.0226111 ], + [ 9.2364082, 47.0225526 ], + [ 9.2364107, 47.0224941 ], + [ 9.2364132, 47.0224575 ], + [ 9.2364165, 47.0224209 ], + [ 9.2364206, 47.0223845 ], + [ 9.2364256, 47.022348 ], + [ 9.2364314, 47.0223116 ], + [ 9.236438, 47.0222753 ], + [ 9.2364455, 47.022239 ], + [ 9.2364538, 47.0222029 ], + [ 9.2365577, 47.0219868 ], + [ 9.2366517, 47.0217916 ], + [ 9.236656, 47.0217868 ], + [ 9.2366606, 47.021782 ], + [ 9.2366652, 47.0217773 ], + [ 9.2366699, 47.0217727 ], + [ 9.2366748, 47.0217681 ], + [ 9.2366798, 47.0217636 ], + [ 9.2366849, 47.0217591 ], + [ 9.2366901, 47.0217547 ], + [ 9.2366954, 47.0217504 ], + [ 9.2367008, 47.0217461 ], + [ 9.2367064, 47.0217419 ], + [ 9.236712, 47.0217378 ], + [ 9.2367177, 47.0217337 ], + [ 9.2367236, 47.0217297 ], + [ 9.2367295, 47.0217257 ], + [ 9.2367355, 47.0217219 ], + [ 9.2367417, 47.0217181 ], + [ 9.2367479, 47.0217143 ], + [ 9.2367542, 47.0217107 ], + [ 9.2367607, 47.0217071 ], + [ 9.2367672, 47.0217036 ], + [ 9.2367737, 47.0217002 ], + [ 9.2367804, 47.0216969 ], + [ 9.2367872, 47.0216936 ], + [ 9.236794, 47.0216904 ], + [ 9.2368009, 47.0216873 ], + [ 9.2368079, 47.0216843 ], + [ 9.236815, 47.0216813 ], + [ 9.2368395, 47.0216711 ], + [ 9.2368638, 47.0216606 ], + [ 9.2368878, 47.0216498 ], + [ 9.2369115, 47.0216388 ], + [ 9.2369349, 47.0216274 ], + [ 9.236958, 47.0216158 ], + [ 9.2369809, 47.0216039 ], + [ 9.2370034, 47.0215918 ], + [ 9.2370606, 47.0215608 ], + [ 9.2371184, 47.0215303 ], + [ 9.2371769, 47.0215004 ], + [ 9.2373493, 47.0214081 ], + [ 9.2374679, 47.0213417 ], + [ 9.2375879, 47.0212765 ], + [ 9.2376098, 47.0212646 ], + [ 9.2376313, 47.0212524 ], + [ 9.2376526, 47.0212401 ], + [ 9.2376735, 47.0212274 ], + [ 9.2376942, 47.0212146 ], + [ 9.2377145, 47.0212015 ], + [ 9.2377345, 47.0211882 ], + [ 9.2377542, 47.0211746 ], + [ 9.2377735, 47.0211609 ], + [ 9.2377925, 47.0211469 ], + [ 9.2378112, 47.0211327 ], + [ 9.2378277, 47.0211196 ], + [ 9.237844, 47.0211064 ], + [ 9.2378599, 47.0210929 ], + [ 9.2378755, 47.0210793 ], + [ 9.2378907, 47.0210655 ], + [ 9.2379056, 47.0210515 ], + [ 9.2379201, 47.0210374 ], + [ 9.2379343, 47.0210231 ], + [ 9.2379481, 47.0210086 ], + [ 9.2379615, 47.0209939 ], + [ 9.2379746, 47.0209791 ], + [ 9.2379873, 47.0209642 ], + [ 9.2380127, 47.0209343 ], + [ 9.2380387, 47.0209047 ], + [ 9.2380653, 47.0208754 ], + [ 9.2380927, 47.0208463 ], + [ 9.2381207, 47.0208176 ], + [ 9.2381494, 47.0207892 ], + [ 9.2381886, 47.0207503 ], + [ 9.2382271, 47.0207111 ], + [ 9.2382649, 47.0206716 ], + [ 9.2383525, 47.0205821 ], + [ 9.238523, 47.0205047 ], + [ 9.238533, 47.0205017 ], + [ 9.2385429, 47.0204987 ], + [ 9.2385527, 47.0204955 ], + [ 9.2385625, 47.0204922 ], + [ 9.2385722, 47.0204888 ], + [ 9.2385818, 47.0204853 ], + [ 9.2385913, 47.0204817 ], + [ 9.2386007, 47.020478 ], + [ 9.2386101, 47.0204741 ], + [ 9.2386193, 47.0204702 ], + [ 9.2386284, 47.0204661 ], + [ 9.2386374, 47.020462 ], + [ 9.2386464, 47.0204577 ], + [ 9.2386552, 47.0204534 ], + [ 9.2386799, 47.0204411 ], + [ 9.2387049, 47.0204291 ], + [ 9.2387302, 47.0204174 ], + [ 9.2387557, 47.0204059 ], + [ 9.2387815, 47.0203947 ], + [ 9.2388076, 47.0203838 ], + [ 9.2388124, 47.0203818 ], + [ 9.2388171, 47.0203797 ], + [ 9.2388218, 47.0203776 ], + [ 9.2388264, 47.0203754 ], + [ 9.238831, 47.0203732 ], + [ 9.2388355, 47.0203709 ], + [ 9.23884, 47.0203686 ], + [ 9.2388444, 47.0203662 ], + [ 9.2388488, 47.0203637 ], + [ 9.238853, 47.0203613 ], + [ 9.2388573, 47.0203587 ], + [ 9.2388614, 47.0203561 ], + [ 9.2388655, 47.0203535 ], + [ 9.2388695, 47.0203508 ], + [ 9.2388735, 47.0203481 ], + [ 9.2388774, 47.0203453 ], + [ 9.2388812, 47.0203424 ], + [ 9.238885, 47.0203396 ], + [ 9.2388886, 47.0203367 ], + [ 9.2388922, 47.0203337 ], + [ 9.2388958, 47.0203307 ], + [ 9.2388992, 47.0203277 ], + [ 9.2389026, 47.0203246 ], + [ 9.2389059, 47.0203215 ], + [ 9.2389091, 47.0203183 ], + [ 9.2389122, 47.0203151 ], + [ 9.2389153, 47.0203119 ], + [ 9.2389182, 47.0203086 ], + [ 9.2389211, 47.0203053 ], + [ 9.2389239, 47.020302 ], + [ 9.2389266, 47.0202986 ], + [ 9.2389293, 47.0202952 ], + [ 9.2389318, 47.0202918 ], + [ 9.2389353, 47.0202874 ], + [ 9.2389387, 47.020283 ], + [ 9.2389419, 47.0202785 ], + [ 9.238945, 47.020274 ], + [ 9.238948, 47.0202694 ], + [ 9.2389509, 47.0202649 ], + [ 9.2389537, 47.0202602 ], + [ 9.2389564, 47.0202556 ], + [ 9.2389589, 47.0202509 ], + [ 9.2389614, 47.0202462 ], + [ 9.2389637, 47.0202415 ], + [ 9.2389659, 47.0202367 ], + [ 9.2389679, 47.0202319 ], + [ 9.2389699, 47.0202271 ], + [ 9.2389717, 47.0202223 ], + [ 9.2389734, 47.0202174 ], + [ 9.238975, 47.0202126 ], + [ 9.2389764, 47.0202077 ], + [ 9.2389778, 47.0202028 ], + [ 9.2389789, 47.0201979 ], + [ 9.23898, 47.0201929 ], + [ 9.238981, 47.020188 ], + [ 9.2389818, 47.020183 ], + [ 9.2389825, 47.020178 ], + [ 9.2389831, 47.0201731 ], + [ 9.2389835, 47.0201681 ], + [ 9.2389839, 47.0201631 ], + [ 9.2389841, 47.0201581 ], + [ 9.2389841, 47.0201531 ], + [ 9.2389841, 47.0201481 ], + [ 9.2389839, 47.0201431 ], + [ 9.2389836, 47.0201382 ], + [ 9.2389832, 47.0201332 ], + [ 9.2389826, 47.0201282 ], + [ 9.2389819, 47.0201232 ], + [ 9.2389811, 47.0201183 ], + [ 9.2389801, 47.0201133 ], + [ 9.2389597, 47.0200351 ], + [ 9.238959, 47.0200296 ], + [ 9.2389582, 47.0200241 ], + [ 9.2389572, 47.0200187 ], + [ 9.2389561, 47.0200132 ], + [ 9.2389548, 47.0200077 ], + [ 9.2389534, 47.0200023 ], + [ 9.2389519, 47.0199969 ], + [ 9.2389503, 47.0199915 ], + [ 9.2389485, 47.0199861 ], + [ 9.2389465, 47.0199808 ], + [ 9.2389445, 47.0199754 ], + [ 9.2389423, 47.0199701 ], + [ 9.2389399, 47.0199648 ], + [ 9.2389375, 47.0199596 ], + [ 9.2389349, 47.0199544 ], + [ 9.2389321, 47.0199492 ], + [ 9.2389293, 47.019944 ], + [ 9.2389263, 47.0199389 ], + [ 9.2389232, 47.0199338 ], + [ 9.2389199, 47.0199288 ], + [ 9.2389166, 47.0199238 ], + [ 9.2389131, 47.0199188 ], + [ 9.2389094, 47.0199139 ], + [ 9.2389069, 47.0199104 ], + [ 9.2389044, 47.0199069 ], + [ 9.2389021, 47.0199034 ], + [ 9.2388998, 47.0198999 ], + [ 9.2388976, 47.0198963 ], + [ 9.2388955, 47.0198927 ], + [ 9.2388935, 47.0198891 ], + [ 9.2388916, 47.0198854 ], + [ 9.2388898, 47.0198818 ], + [ 9.238888, 47.0198781 ], + [ 9.2388864, 47.0198744 ], + [ 9.2388848, 47.0198706 ], + [ 9.2388834, 47.0198669 ], + [ 9.238882, 47.0198631 ], + [ 9.2388807, 47.0198594 ], + [ 9.2388796, 47.0198556 ], + [ 9.2388785, 47.0198518 ], + [ 9.2388775, 47.019848 ], + [ 9.2388766, 47.0198442 ], + [ 9.2388758, 47.0198403 ], + [ 9.2388752, 47.0198365 ], + [ 9.2388746, 47.0198326 ], + [ 9.2388741, 47.0198288 ], + [ 9.2388736, 47.0198249 ], + [ 9.2388733, 47.019821 ], + [ 9.2388731, 47.0198172 ], + [ 9.238873, 47.0198133 ], + [ 9.238873, 47.0198094 ], + [ 9.2388731, 47.0198056 ], + [ 9.2388733, 47.0198017 ], + [ 9.2388736, 47.0197978 ], + [ 9.2388739, 47.019794 ], + [ 9.2388744, 47.0197901 ], + [ 9.2388753, 47.0197839 ], + [ 9.2388764, 47.0197776 ], + [ 9.2388776, 47.0197714 ], + [ 9.238879, 47.0197652 ], + [ 9.2388805, 47.019759 ], + [ 9.2388822, 47.0197528 ], + [ 9.2388841, 47.0197467 ], + [ 9.2388861, 47.0197405 ], + [ 9.2388883, 47.0197344 ], + [ 9.2388906, 47.0197283 ], + [ 9.238893, 47.0197223 ], + [ 9.2388957, 47.0197163 ], + [ 9.2388984, 47.0197103 ], + [ 9.2389014, 47.0197043 ], + [ 9.2389045, 47.0196984 ], + [ 9.2389077, 47.0196925 ], + [ 9.2389111, 47.0196867 ], + [ 9.2389146, 47.0196809 ], + [ 9.2389182, 47.0196751 ], + [ 9.2389221, 47.0196694 ], + [ 9.238926, 47.0196637 ], + [ 9.2389301, 47.0196581 ], + [ 9.2389343, 47.0196525 ], + [ 9.2389387, 47.019647 ], + [ 9.2389432, 47.0196415 ], + [ 9.2389499, 47.0196333 ], + [ 9.2389567, 47.0196251 ], + [ 9.2389638, 47.0196169 ], + [ 9.238971, 47.0196089 ], + [ 9.2389784, 47.0196009 ], + [ 9.2389861, 47.0195931 ], + [ 9.2389939, 47.0195853 ], + [ 9.2390019, 47.0195776 ], + [ 9.2390101, 47.01957 ], + [ 9.2390185, 47.0195625 ], + [ 9.2390271, 47.0195551 ], + [ 9.2390359, 47.0195478 ], + [ 9.2390448, 47.0195406 ], + [ 9.2390737, 47.0195169 ], + [ 9.2391031, 47.0194936 ], + [ 9.2391331, 47.0194705 ], + [ 9.2391637, 47.0194479 ], + [ 9.2391947, 47.0194255 ], + [ 9.2392262, 47.0194035 ], + [ 9.2392583, 47.0193818 ], + [ 9.2392909, 47.0193605 ], + [ 9.2393239, 47.0193395 ], + [ 9.2393574, 47.0193189 ], + [ 9.2394088, 47.0192873 ], + [ 9.2394594, 47.0192551 ], + [ 9.2395093, 47.0192224 ], + [ 9.2395583, 47.0191891 ], + [ 9.2396065, 47.0191553 ], + [ 9.2396539, 47.0191209 ], + [ 9.2397005, 47.019086 ], + [ 9.2397141, 47.0190755 ], + [ 9.2397274, 47.0190648 ], + [ 9.2397404, 47.019054 ], + [ 9.239753199999999, 47.019043 ], + [ 9.2397657, 47.0190318 ], + [ 9.2397779, 47.0190206 ], + [ 9.2397898, 47.0190091 ], + [ 9.2398015, 47.0189976 ], + [ 9.2398144, 47.0189842 ], + [ 9.2398271, 47.0189707 ], + [ 9.2398395, 47.0189571 ], + [ 9.2398515, 47.0189433 ], + [ 9.2398632, 47.0189294 ], + [ 9.2398746, 47.0189154 ], + [ 9.2398857, 47.0189013 ], + [ 9.2398946, 47.0188895 ], + [ 9.2399032, 47.0188776 ], + [ 9.2399115, 47.0188656 ], + [ 9.2399195, 47.0188535 ], + [ 9.2399272, 47.0188414 ], + [ 9.2399346, 47.0188291 ], + [ 9.2399417, 47.0188168 ], + [ 9.2399485, 47.0188044 ], + [ 9.239955, 47.0187919 ], + [ 9.2399613, 47.0187793 ], + [ 9.2399716, 47.0187584 ], + [ 9.2399825, 47.0187376 ], + [ 9.2399939, 47.0187169 ], + [ 9.2400058, 47.0186964 ], + [ 9.2400182, 47.018676 ], + [ 9.2400312, 47.0186558 ], + [ 9.2400465, 47.0186329 ], + [ 9.2400623, 47.0186102 ], + [ 9.2400786, 47.0185876 ], + [ 9.2400955, 47.0185653 ], + [ 9.2401128, 47.0185431 ], + [ 9.2401302, 47.0185209 ], + [ 9.240147, 47.0184986 ], + [ 9.2401634, 47.018476 ], + [ 9.2401791, 47.0184533 ], + [ 9.2401944, 47.0184304 ], + [ 9.2402088, 47.0184086 ], + [ 9.2402238, 47.0183871 ], + [ 9.2402393, 47.0183657 ], + [ 9.2402902, 47.0183023 ], + [ 9.2401267, 47.0180556 ], + [ 9.2404701, 47.0178235 ], + [ 9.2410671, 47.0177754 ], + [ 9.2418528, 47.0164926 ], + [ 9.2418358, 47.0162607 ], + [ 9.2419802, 47.0161081 ], + [ 9.2419934, 47.0160974 ], + [ 9.2420064, 47.0160866 ], + [ 9.2420191, 47.0160756 ], + [ 9.2420315, 47.0160645 ], + [ 9.2420437, 47.0160532 ], + [ 9.2420556, 47.0160418 ], + [ 9.2420673, 47.0160303 ], + [ 9.2420787, 47.0160186 ], + [ 9.2420898, 47.0160069 ], + [ 9.2421006, 47.015995 ], + [ 9.2421112, 47.015983 ], + [ 9.242217, 47.0158597 ], + [ 9.24223, 47.0158442 ], + [ 9.2422426, 47.0158285 ], + [ 9.2422549, 47.0158127 ], + [ 9.2422667, 47.0157968 ], + [ 9.2422781, 47.0157807 ], + [ 9.2422891, 47.0157645 ], + [ 9.2422997, 47.0157481 ], + [ 9.2423099, 47.0157317 ], + [ 9.2423124, 47.0157275 ], + [ 9.2423148, 47.0157232 ], + [ 9.242317, 47.015719 ], + [ 9.2423192, 47.0157147 ], + [ 9.2423213, 47.0157104 ], + [ 9.2423233, 47.015706 ], + [ 9.2423251, 47.0157017 ], + [ 9.2423269, 47.0156973 ], + [ 9.2423285, 47.0156929 ], + [ 9.24233, 47.0156885 ], + [ 9.2423315, 47.0156841 ], + [ 9.2423328, 47.0156796 ], + [ 9.242334, 47.0156752 ], + [ 9.2423351, 47.0156707 ], + [ 9.2423361, 47.0156662 ], + [ 9.242337, 47.0156617 ], + [ 9.2423377, 47.0156572 ], + [ 9.2423384, 47.0156527 ], + [ 9.242339, 47.0156482 ], + [ 9.2423394, 47.0156436 ], + [ 9.2423397, 47.0156391 ], + [ 9.24234, 47.0156353 ], + [ 9.2423404, 47.0156315 ], + [ 9.2423409, 47.0156277 ], + [ 9.2423414, 47.0156239 ], + [ 9.2423421, 47.0156201 ], + [ 9.2423429, 47.0156163 ], + [ 9.2423437, 47.0156125 ], + [ 9.2423446, 47.0156087 ], + [ 9.2423457, 47.015605 ], + [ 9.2423468, 47.0156012 ], + [ 9.242348, 47.0155975 ], + [ 9.2423494, 47.0155938 ], + [ 9.2423508, 47.0155901 ], + [ 9.2423522, 47.0155864 ], + [ 9.2423538, 47.0155827 ], + [ 9.2423555, 47.0155791 ], + [ 9.2423573, 47.0155755 ], + [ 9.2423592, 47.0155719 ], + [ 9.2423611, 47.0155683 ], + [ 9.2423631, 47.0155648 ], + [ 9.2423653, 47.0155612 ], + [ 9.2423675, 47.0155577 ], + [ 9.2423698, 47.0155542 ], + [ 9.2423722, 47.0155508 ], + [ 9.2423747, 47.0155473 ], + [ 9.2423822, 47.0155374 ], + [ 9.24239, 47.0155275 ], + [ 9.242398, 47.0155177 ], + [ 9.2424063, 47.015508 ], + [ 9.2424148, 47.0154984 ], + [ 9.2424236, 47.0154889 ], + [ 9.2424326, 47.0154795 ], + [ 9.2424418, 47.0154702 ], + [ 9.2424513, 47.015461 ], + [ 9.242461, 47.0154519 ], + [ 9.2424709, 47.015443 ], + [ 9.242481, 47.0154341 ], + [ 9.2424914, 47.0154254 ], + [ 9.242502, 47.0154168 ], + [ 9.2425128, 47.0154084 ], + [ 9.2425238, 47.0154 ], + [ 9.242535, 47.0153918 ], + [ 9.2425427, 47.0153862 ], + [ 9.2425502, 47.0153806 ], + [ 9.2425576, 47.0153748 ], + [ 9.2425649, 47.0153689 ], + [ 9.2425719, 47.015363 ], + [ 9.2425789, 47.015357 ], + [ 9.2425857, 47.0153509 ], + [ 9.2425923, 47.0153447 ], + [ 9.2425988, 47.0153385 ], + [ 9.2426052, 47.0153321 ], + [ 9.2426114, 47.0153257 ], + [ 9.2426174, 47.0153193 ], + [ 9.2426233, 47.0153127 ], + [ 9.242629, 47.0153061 ], + [ 9.2426345, 47.0152995 ], + [ 9.2426399, 47.0152927 ], + [ 9.2426451, 47.0152859 ], + [ 9.2426501, 47.0152791 ], + [ 9.242655, 47.0152722 ], + [ 9.2426597, 47.0152652 ], + [ 9.2426642, 47.0152582 ], + [ 9.2426686, 47.0152511 ], + [ 9.2426728, 47.015244 ], + [ 9.2426768, 47.0152369 ], + [ 9.2426806, 47.0152297 ], + [ 9.2427047, 47.0151818 ], + [ 9.2427277, 47.0151336 ], + [ 9.2427494, 47.0150853 ], + [ 9.24277, 47.0150366 ], + [ 9.2427894, 47.0149878 ], + [ 9.2428076, 47.0149387 ], + [ 9.2428131, 47.0149221 ], + [ 9.2428182, 47.0149055 ], + [ 9.2428228, 47.0148888 ], + [ 9.242827, 47.0148721 ], + [ 9.2428308, 47.0148554 ], + [ 9.2428342, 47.0148386 ], + [ 9.2428371, 47.0148217 ], + [ 9.2428397, 47.0148048 ], + [ 9.2428418, 47.0147879 ], + [ 9.2428434, 47.014771 ], + [ 9.2428447, 47.0147541 ], + [ 9.2428455, 47.0147371 ], + [ 9.2428459, 47.0147201 ], + [ 9.2428459, 47.0147032 ], + [ 9.2428455, 47.0146862 ], + [ 9.2428446, 47.0146692 ], + [ 9.2428433, 47.0146523 ], + [ 9.2428351, 47.0146088 ], + [ 9.2427803, 47.0143162 ], + [ 9.2427688, 47.0142814 ], + [ 9.2427565, 47.0142469 ], + [ 9.2427434, 47.0142124 ], + [ 9.2427295, 47.0141781 ], + [ 9.2427148, 47.014144 ], + [ 9.2426733, 47.014048 ], + [ 9.2426339, 47.0139516 ], + [ 9.2425967, 47.0138548 ], + [ 9.2425615, 47.0137577 ], + [ 9.2425286, 47.0136602 ], + [ 9.2424663, 47.0134766 ], + [ 9.2424454, 47.0134154 ], + [ 9.2424257, 47.013354 ], + [ 9.2424073, 47.0132925 ], + [ 9.2423333, 47.01304 ], + [ 9.2423213, 47.0129979 ], + [ 9.2423103, 47.0129556 ], + [ 9.2423002, 47.0129133 ], + [ 9.2422911, 47.0128708 ], + [ 9.2422831, 47.0128282 ], + [ 9.242276, 47.0127856 ], + [ 9.2422636, 47.0126979 ], + [ 9.2422534, 47.0126102 ], + [ 9.2422454, 47.0125223 ], + [ 9.2422429, 47.0124846 ], + [ 9.2422413, 47.0124468 ], + [ 9.2422407, 47.0124091 ], + [ 9.242241, 47.0123713 ], + [ 9.2422422, 47.0123335 ], + [ 9.2422444, 47.0122958 ], + [ 9.2422474, 47.0122581 ], + [ 9.2423015, 47.0117619 ], + [ 9.2424145, 47.01133 ], + [ 9.242403, 47.0109383 ], + [ 9.2423856, 47.0108279 ], + [ 9.2423654, 47.0107177 ], + [ 9.2423424, 47.0106077 ], + [ 9.2423414, 47.0106036 ], + [ 9.2423403, 47.0105995 ], + [ 9.2423392, 47.0105955 ], + [ 9.2423379, 47.0105914 ], + [ 9.2423365, 47.0105874 ], + [ 9.242335, 47.0105833 ], + [ 9.2423335, 47.0105793 ], + [ 9.2423318, 47.0105753 ], + [ 9.24233, 47.0105714 ], + [ 9.2423281, 47.0105674 ], + [ 9.2423261, 47.0105635 ], + [ 9.2423241, 47.0105596 ], + [ 9.2423219, 47.0105557 ], + [ 9.2423196, 47.0105519 ], + [ 9.2423172, 47.0105481 ], + [ 9.2423148, 47.0105443 ], + [ 9.2423122, 47.0105405 ], + [ 9.2423095, 47.0105368 ], + [ 9.2423068, 47.0105331 ], + [ 9.2423039, 47.0105294 ], + [ 9.242301, 47.0105258 ], + [ 9.242298, 47.0105222 ], + [ 9.2422949, 47.0105186 ], + [ 9.2422916, 47.0105151 ], + [ 9.2422884, 47.0105116 ], + [ 9.242285, 47.0105082 ], + [ 9.2422814, 47.0105046 ], + [ 9.242278, 47.010501 ], + [ 9.2422747, 47.0104973 ], + [ 9.2422714, 47.0104936 ], + [ 9.2422683, 47.0104899 ], + [ 9.2422652, 47.0104861 ], + [ 9.2422623, 47.0104823 ], + [ 9.2422594, 47.0104785 ], + [ 9.2422566, 47.0104746 ], + [ 9.2422539, 47.0104707 ], + [ 9.2422514, 47.0104668 ], + [ 9.2422489, 47.0104628 ], + [ 9.2422465, 47.0104588 ], + [ 9.2422442, 47.0104548 ], + [ 9.242242, 47.0104507 ], + [ 9.2422399, 47.0104467 ], + [ 9.242238, 47.0104426 ], + [ 9.2422361, 47.0104385 ], + [ 9.2422343, 47.0104343 ], + [ 9.2422326, 47.0104302 ], + [ 9.2422311, 47.010426 ], + [ 9.2422296, 47.0104218 ], + [ 9.2422282, 47.0104176 ], + [ 9.242227, 47.0104134 ], + [ 9.2422258, 47.0104091 ], + [ 9.2422223, 47.0103945 ], + [ 9.242219, 47.0103799 ], + [ 9.2422161, 47.0103653 ], + [ 9.2422135, 47.0103506 ], + [ 9.2422113, 47.0103359 ], + [ 9.2422094, 47.0103211 ], + [ 9.2422078, 47.0103064 ], + [ 9.2422066, 47.0102916 ], + [ 9.2422058, 47.0102768 ], + [ 9.2422052, 47.010262 ], + [ 9.242205, 47.0102436 ], + [ 9.2422052, 47.0102251 ], + [ 9.2422058, 47.0102066 ], + [ 9.2422068, 47.0101881 ], + [ 9.2422083, 47.0101697 ], + [ 9.2422101, 47.0101512 ], + [ 9.2422124, 47.0101328 ], + [ 9.2422151, 47.0101144 ], + [ 9.2422268, 47.0100451 ], + [ 9.2422401, 47.0099759 ], + [ 9.242255, 47.0099069 ], + [ 9.2422714, 47.009838 ], + [ 9.2422895, 47.0097693 ], + [ 9.242309, 47.0097009 ], + [ 9.2423315, 47.0096185 ], + [ 9.2423521, 47.009536 ], + [ 9.2423709, 47.0094533 ], + [ 9.2423878, 47.0093704 ], + [ 9.2424029, 47.0092873 ], + [ 9.2424041, 47.0092802 ], + [ 9.242405, 47.0092731 ], + [ 9.2424058, 47.009266 ], + [ 9.2424064, 47.0092589 ], + [ 9.2424068, 47.0092518 ], + [ 9.242407, 47.0092446 ], + [ 9.2424071, 47.0092375 ], + [ 9.242407, 47.0092304 ], + [ 9.2424067, 47.0092233 ], + [ 9.2424063, 47.0092162 ], + [ 9.2424056, 47.0092091 ], + [ 9.2424049, 47.0092019 ], + [ 9.2424039, 47.0091949 ], + [ 9.2424027, 47.0091878 ], + [ 9.2423987, 47.009163 ], + [ 9.2423952, 47.0091383 ], + [ 9.2423924, 47.0091135 ], + [ 9.2423901, 47.0090887 ], + [ 9.242388, 47.0090653 ], + [ 9.2423853, 47.009042 ], + [ 9.242382, 47.0090187 ], + [ 9.2423782, 47.0089955 ], + [ 9.2423739, 47.0089723 ], + [ 9.242369, 47.0089491 ], + [ 9.2423635, 47.008926 ], + [ 9.2423383, 47.0087489 ], + [ 9.2424262, 47.008586 ], + [ 9.2424365, 47.0085671 ], + [ 9.2424473, 47.0085482 ], + [ 9.2424585, 47.0085295 ], + [ 9.2424702, 47.0085109 ], + [ 9.2424823, 47.0084925 ], + [ 9.2424949, 47.0084742 ], + [ 9.242508, 47.008456 ], + [ 9.2425215, 47.008438 ], + [ 9.2425354, 47.0084202 ], + [ 9.2425411, 47.0084131 ], + [ 9.2425471, 47.0084061 ], + [ 9.2425532, 47.0083992 ], + [ 9.2425594, 47.0083924 ], + [ 9.2425659, 47.0083856 ], + [ 9.2425725, 47.008379 ], + [ 9.2425792, 47.0083724 ], + [ 9.2425862, 47.0083658 ], + [ 9.2425933, 47.0083594 ], + [ 9.2426006, 47.0083531 ], + [ 9.242608, 47.0083468 ], + [ 9.2426156, 47.0083406 ], + [ 9.2426233, 47.0083345 ], + [ 9.2426312, 47.0083285 ], + [ 9.2426393, 47.0083226 ], + [ 9.2426475, 47.0083168 ], + [ 9.2426558, 47.0083111 ], + [ 9.2426643, 47.0083055 ], + [ 9.2426729, 47.0083 ], + [ 9.2426817, 47.0082946 ], + [ 9.2426906, 47.0082893 ], + [ 9.2426996, 47.0082841 ], + [ 9.2427088, 47.0082791 ], + [ 9.2428617, 47.0081585 ], + [ 9.2428666, 47.0081493 ], + [ 9.2428713, 47.0081399 ], + [ 9.2428758, 47.0081305 ], + [ 9.24288, 47.008121 ], + [ 9.242884, 47.0081115 ], + [ 9.2428878, 47.008102 ], + [ 9.2428914, 47.0080924 ], + [ 9.2428947, 47.0080828 ], + [ 9.2428977, 47.0080731 ], + [ 9.2429005, 47.0080634 ], + [ 9.2429031, 47.0080537 ], + [ 9.242905499999999, 47.0080439 ], + [ 9.2429076, 47.0080341 ], + [ 9.2429094, 47.0080243 ], + [ 9.242911, 47.0080145 ], + [ 9.2429124, 47.0080047 ], + [ 9.2429136, 47.0079948 ], + [ 9.2429144, 47.0079849 ], + [ 9.2429151, 47.0079751 ], + [ 9.2429155, 47.0079652 ], + [ 9.2429156, 47.0079553 ], + [ 9.2429155, 47.0079454 ], + [ 9.2429152, 47.0079355 ], + [ 9.2429146, 47.0079256 ], + [ 9.2429066, 47.0077193 ], + [ 9.2429057, 47.0077044 ], + [ 9.2429045, 47.0076895 ], + [ 9.2429029, 47.0076747 ], + [ 9.242901, 47.0076599 ], + [ 9.2428986, 47.0076451 ], + [ 9.2428959, 47.0076303 ], + [ 9.2428928, 47.0076156 ], + [ 9.2428893, 47.0076009 ], + [ 9.2428855, 47.0075862 ], + [ 9.2428813, 47.0075716 ], + [ 9.2428767, 47.0075571 ], + [ 9.2428249, 47.0072594 ], + [ 9.2430146, 47.0070799 ], + [ 9.2430676, 47.0070298 ], + [ 9.243072, 47.0070249 ], + [ 9.2430762, 47.0070198 ], + [ 9.2430804, 47.0070147 ], + [ 9.2430844, 47.0070096 ], + [ 9.2430883, 47.0070044 ], + [ 9.243092, 47.0069992 ], + [ 9.2430957, 47.0069939 ], + [ 9.2430992, 47.0069886 ], + [ 9.243102499999999, 47.0069832 ], + [ 9.2431058, 47.0069778 ], + [ 9.2431089, 47.0069724 ], + [ 9.2431118, 47.006967 ], + [ 9.2431147, 47.0069615 ], + [ 9.2431173, 47.0069559 ], + [ 9.2431199, 47.0069504 ], + [ 9.2431223, 47.0069448 ], + [ 9.2431275, 47.006932 ], + [ 9.2431325, 47.0069191 ], + [ 9.2431371, 47.0069062 ], + [ 9.2431415, 47.0068933 ], + [ 9.2431455, 47.0068803 ], + [ 9.2431493, 47.0068673 ], + [ 9.2431528, 47.0068542 ], + [ 9.2431567, 47.0068383 ], + [ 9.2431601, 47.0068223 ], + [ 9.2431632, 47.0068064 ], + [ 9.2431659, 47.0067903 ], + [ 9.2431681, 47.0067743 ], + [ 9.24317, 47.0067582 ], + [ 9.2431715, 47.0067421 ], + [ 9.2431726, 47.006726 ], + [ 9.2431733, 47.0067099 ], + [ 9.2431736, 47.0066937 ], + [ 9.2431741, 47.0066758 ], + [ 9.243175, 47.0066579 ], + [ 9.2431764, 47.00664 ], + [ 9.2431783, 47.0066221 ], + [ 9.2431806, 47.0066043 ], + [ 9.2431834, 47.0065865 ], + [ 9.2431866, 47.0065687 ], + [ 9.2431902, 47.0065509 ], + [ 9.2431943, 47.0065332 ], + [ 9.2432001, 47.0065108 ], + [ 9.2432063, 47.0064884 ], + [ 9.2432131, 47.006466 ], + [ 9.2432204, 47.0064438 ], + [ 9.2432282, 47.0064216 ], + [ 9.2432365, 47.0063995 ], + [ 9.2432452, 47.0063775 ], + [ 9.2432545, 47.0063556 ], + [ 9.2432669, 47.0063264 ], + [ 9.2432786, 47.006297 ], + [ 9.2432895, 47.0062676 ], + [ 9.2432997, 47.006238 ], + [ 9.2433091, 47.0062082 ], + [ 9.2433178, 47.0061784 ], + [ 9.2433194, 47.0061757 ], + [ 9.243321, 47.006173 ], + [ 9.2433225, 47.0061702 ], + [ 9.2433239, 47.0061674 ], + [ 9.2433253, 47.0061646 ], + [ 9.2433266, 47.0061618 ], + [ 9.2433278, 47.006159 ], + [ 9.243329, 47.0061562 ], + [ 9.24333, 47.0061533 ], + [ 9.243331, 47.0061505 ], + [ 9.243332, 47.0061476 ], + [ 9.2433328, 47.0061447 ], + [ 9.2433336, 47.0061418 ], + [ 9.2433343, 47.0061389 ], + [ 9.2433349, 47.006136 ], + [ 9.2433355, 47.0061331 ], + [ 9.243336, 47.0061302 ], + [ 9.2433364, 47.0061272 ], + [ 9.2433368, 47.0061243 ], + [ 9.243337, 47.0061214 ], + [ 9.2433372, 47.0061184 ], + [ 9.2433373, 47.0061155 ], + [ 9.2433374, 47.0061125 ], + [ 9.2433373, 47.0061096 ], + [ 9.2433372, 47.0061067 ], + [ 9.2433371, 47.0061037 ], + [ 9.2433368, 47.0061008 ], + [ 9.2433365, 47.0060979 ], + [ 9.2433361, 47.0060949 ], + [ 9.2433356, 47.006092 ], + [ 9.2433351, 47.0060891 ], + [ 9.2433344, 47.0060862 ], + [ 9.2433337, 47.0060833 ], + [ 9.243333, 47.0060804 ], + [ 9.2433321, 47.0060775 ], + [ 9.2433312, 47.0060746 ], + [ 9.2433302, 47.0060718 ], + [ 9.2433292, 47.0060689 ], + [ 9.2433289, 47.0060643 ], + [ 9.2433287, 47.0060597 ], + [ 9.2433287, 47.0060551 ], + [ 9.2433288, 47.0060505 ], + [ 9.243329, 47.0060459 ], + [ 9.2433293, 47.0060413 ], + [ 9.2433297, 47.0060367 ], + [ 9.2433303, 47.0060321 ], + [ 9.2433309, 47.0060275 ], + [ 9.2433317, 47.0060229 ], + [ 9.2433326, 47.0060184 ], + [ 9.2433336, 47.0060138 ], + [ 9.2433347, 47.0060093 ], + [ 9.2433359, 47.0060047 ], + [ 9.2433372, 47.0060002 ], + [ 9.2433387, 47.0059957 ], + [ 9.2433402, 47.0059912 ], + [ 9.2433419, 47.0059868 ], + [ 9.2433437, 47.0059823 ], + [ 9.2433456, 47.0059779 ], + [ 9.2433476, 47.0059735 ], + [ 9.2433497, 47.0059691 ], + [ 9.2433519, 47.0059648 ], + [ 9.2433542, 47.0059604 ], + [ 9.243417, 47.0058977 ], + [ 9.2435486, 47.0057595 ], + [ 9.2437051, 47.005676 ], + [ 9.2437939, 47.0056236 ], + [ 9.2438003, 47.0056199 ], + [ 9.2438065, 47.005616 ], + [ 9.2438127, 47.0056121 ], + [ 9.2438188, 47.0056082 ], + [ 9.2438247, 47.0056041 ], + [ 9.2438306, 47.0056 ], + [ 9.2438363, 47.0055959 ], + [ 9.243842, 47.0055916 ], + [ 9.2438476, 47.0055873 ], + [ 9.243853, 47.0055829 ], + [ 9.2438584, 47.0055785 ], + [ 9.2438636, 47.005574 ], + [ 9.2438687, 47.0055695 ], + [ 9.2438737, 47.0055649 ], + [ 9.243889, 47.0055502 ], + [ 9.243904, 47.0055354 ], + [ 9.2439186, 47.0055205 ], + [ 9.2439328, 47.0055053 ], + [ 9.2439466, 47.00549 ], + [ 9.2439601, 47.0054746 ], + [ 9.2439731, 47.005459 ], + [ 9.2439858, 47.0054432 ], + [ 9.2439981, 47.0054273 ], + [ 9.24401, 47.0054112 ], + [ 9.2440199, 47.0053979 ], + [ 9.2440301, 47.0053846 ], + [ 9.2440407, 47.0053715 ], + [ 9.2440516, 47.0053584 ], + [ 9.2440628, 47.0053456 ], + [ 9.2440743, 47.0053328 ], + [ 9.2440862, 47.0053202 ], + [ 9.2440983, 47.0053077 ], + [ 9.2441108, 47.0052954 ], + [ 9.2441236, 47.0052832 ], + [ 9.2441367, 47.0052711 ], + [ 9.24415, 47.0052593 ], + [ 9.2441528, 47.0052569 ], + [ 9.2441556, 47.0052546 ], + [ 9.2441584, 47.0052523 ], + [ 9.2441613, 47.0052501 ], + [ 9.2441643, 47.0052479 ], + [ 9.2441673, 47.0052457 ], + [ 9.2441704, 47.0052435 ], + [ 9.2441735, 47.0052414 ], + [ 9.2441767, 47.0052394 ], + [ 9.2441799, 47.0052373 ], + [ 9.2441832, 47.0052353 ], + [ 9.2441865, 47.0052334 ], + [ 9.2441899, 47.0052315 ], + [ 9.2441933, 47.0052296 ], + [ 9.2441967, 47.0052277 ], + [ 9.2442002, 47.0052259 ], + [ 9.2442038, 47.0052242 ], + [ 9.2442074, 47.0052225 ], + [ 9.244211, 47.0052208 ], + [ 9.2442147, 47.0052192 ], + [ 9.2442184, 47.0052176 ], + [ 9.2442222, 47.005216 ], + [ 9.244226, 47.0052145 ], + [ 9.2442298, 47.0052131 ], + [ 9.2442337, 47.0052117 ], + [ 9.2442376, 47.0052103 ], + [ 9.2442415, 47.005209 ], + [ 9.2442464, 47.0052074 ], + [ 9.2442511, 47.0052057 ], + [ 9.2442559, 47.005204 ], + [ 9.2442606, 47.0052022 ], + [ 9.2442652, 47.0052004 ], + [ 9.2442698, 47.0051985 ], + [ 9.2442743, 47.0051965 ], + [ 9.2442788, 47.0051945 ], + [ 9.2442833, 47.0051925 ], + [ 9.2442877, 47.0051904 ], + [ 9.244292, 47.0051882 ], + [ 9.2442963, 47.005186 ], + [ 9.2443006, 47.0051838 ], + [ 9.2443047, 47.0051815 ], + [ 9.2443089, 47.0051791 ], + [ 9.2443129, 47.0051767 ], + [ 9.2443169, 47.0051743 ], + [ 9.2443209, 47.0051718 ], + [ 9.2443248, 47.0051693 ], + [ 9.2443286, 47.0051667 ], + [ 9.2443323, 47.0051641 ], + [ 9.244336, 47.0051614 ], + [ 9.2443439, 47.0051555 ], + [ 9.2443516, 47.0051495 ], + [ 9.2443592, 47.0051434 ], + [ 9.2443666, 47.0051373 ], + [ 9.2443738, 47.005131 ], + [ 9.2443809, 47.0051247 ], + [ 9.2443879, 47.0051183 ], + [ 9.2443947, 47.0051118 ], + [ 9.2444013, 47.0051052 ], + [ 9.2444077, 47.0050986 ], + [ 9.244414, 47.0050918 ], + [ 9.2444364, 47.0050669 ], + [ 9.2444583, 47.0050418 ], + [ 9.2444796, 47.0050165 ], + [ 9.244568, 47.0049258 ], + [ 9.2446855, 47.0041187 ], + [ 9.2447094, 47.0039294 ], + [ 9.2447162, 47.0038819 ], + [ 9.2447229, 47.0038423 ], + [ 9.2447305, 47.0038027 ], + [ 9.244739, 47.0037633 ], + [ 9.2447405, 47.0037567 ], + [ 9.2447423, 47.0037501 ], + [ 9.2447442, 47.0037436 ], + [ 9.2447462, 47.0037371 ], + [ 9.2447485, 47.0037306 ], + [ 9.2447509, 47.0037241 ], + [ 9.2447534, 47.0037177 ], + [ 9.2447561, 47.0037112 ], + [ 9.244759, 47.0037049 ], + [ 9.244762099999999, 47.0036985 ], + [ 9.2447653, 47.0036922 ], + [ 9.2447686, 47.003686 ], + [ 9.2447721, 47.0036797 ], + [ 9.2447758, 47.0036736 ], + [ 9.2447796, 47.0036674 ], + [ 9.2447836, 47.0036613 ], + [ 9.2447877, 47.0036553 ], + [ 9.244792, 47.0036493 ], + [ 9.2447953, 47.0036449 ], + [ 9.2447987, 47.0036405 ], + [ 9.2448022, 47.0036362 ], + [ 9.2448058, 47.0036319 ], + [ 9.2448096, 47.0036276 ], + [ 9.2448134, 47.0036234 ], + [ 9.2448173, 47.0036193 ], + [ 9.2448214, 47.0036152 ], + [ 9.2448255, 47.0036111 ], + [ 9.2448297, 47.0036071 ], + [ 9.2448341, 47.0036031 ], + [ 9.2448385, 47.0035992 ], + [ 9.244843, 47.0035954 ], + [ 9.2448477, 47.0035915 ], + [ 9.2448524, 47.0035878 ], + [ 9.2448572, 47.0035841 ], + [ 9.2448621, 47.0035805 ], + [ 9.2448671, 47.0035769 ], + [ 9.2448722, 47.0035734 ], + [ 9.2448774, 47.0035699 ], + [ 9.2448879, 47.0035631 ], + [ 9.2448986, 47.0035565 ], + [ 9.2449094, 47.0035499 ], + [ 9.2449203, 47.0035435 ], + [ 9.2449314, 47.0035372 ], + [ 9.2449427, 47.0035311 ], + [ 9.2449541, 47.0035251 ], + [ 9.2449657, 47.0035192 ], + [ 9.2449774, 47.0035134 ], + [ 9.2449892, 47.0035078 ], + [ 9.2450037, 47.0035011 ], + [ 9.2450183, 47.0034947 ], + [ 9.245033, 47.0034884 ], + [ 9.2450479, 47.0034822 ], + [ 9.2450629, 47.0034763 ], + [ 9.2450781, 47.0034705 ], + [ 9.2450934, 47.0034648 ], + [ 9.2451089, 47.0034594 ], + [ 9.2451244, 47.0034541 ], + [ 9.2451401, 47.003449 ], + [ 9.2451559, 47.0034441 ], + [ 9.2451719, 47.0034393 ], + [ 9.2451879, 47.0034347 ], + [ 9.2452041, 47.0034303 ], + [ 9.2452203, 47.0034261 ], + [ 9.2452356, 47.0034222 ], + [ 9.2452507, 47.003418 ], + [ 9.2452657, 47.0034137 ], + [ 9.2452807, 47.0034092 ], + [ 9.2452955, 47.0034046 ], + [ 9.2453102, 47.0033997 ], + [ 9.2453247, 47.0033947 ], + [ 9.2453392, 47.0033895 ], + [ 9.2453535, 47.0033842 ], + [ 9.2453676, 47.0033787 ], + [ 9.2453817, 47.003373 ], + [ 9.2453955, 47.0033671 ], + [ 9.2454093, 47.0033611 ], + [ 9.2454228, 47.0033549 ], + [ 9.2454363, 47.0033486 ], + [ 9.2454495, 47.0033421 ], + [ 9.2454732, 47.0033301 ], + [ 9.2454966, 47.0033178 ], + [ 9.2455197, 47.0033052 ], + [ 9.245542499999999, 47.0032924 ], + [ 9.245565, 47.0032793 ], + [ 9.2455872, 47.0032659 ], + [ 9.245609, 47.0032523 ], + [ 9.2456305, 47.0032385 ], + [ 9.2456516, 47.0032244 ], + [ 9.2456783, 47.0032059 ], + [ 9.2457046, 47.0031872 ], + [ 9.2457304, 47.0031682 ], + [ 9.2457557, 47.0031488 ], + [ 9.2457805, 47.0031292 ], + [ 9.2458049, 47.0031093 ], + [ 9.2458287, 47.0030891 ], + [ 9.2458413, 47.003078 ], + [ 9.2458537, 47.0030667 ], + [ 9.2458659, 47.0030554 ], + [ 9.2458778, 47.0030439 ], + [ 9.2458894, 47.0030322 ], + [ 9.2459007, 47.0030205 ], + [ 9.2459117, 47.0030086 ], + [ 9.2459225, 47.0029966 ], + [ 9.245933, 47.0029845 ], + [ 9.2459432, 47.0029722 ], + [ 9.2459531, 47.0029599 ], + [ 9.2459743, 47.0029326 ], + [ 9.245995, 47.002905 ], + [ 9.246015, 47.0028773 ], + [ 9.2460345, 47.0028493 ], + [ 9.2460533, 47.0028212 ], + [ 9.246075, 47.0027875 ], + [ 9.246095799999999, 47.0027535 ], + [ 9.2461158, 47.0027193 ], + [ 9.2461349, 47.0026849 ], + [ 9.2461532, 47.0026503 ], + [ 9.2461706, 47.0026155 ], + [ 9.2461872, 47.0025805 ], + [ 9.246204, 47.0025455 ], + [ 9.2462216, 47.0025107 ], + [ 9.2462399, 47.0024761 ], + [ 9.2462591, 47.0024417 ], + [ 9.246279, 47.0024075 ], + [ 9.2462997, 47.0023735 ], + [ 9.2463212, 47.0023397 ], + [ 9.2463277, 47.0023299 ], + [ 9.2463344, 47.0023202 ], + [ 9.2463414, 47.0023106 ], + [ 9.2463486, 47.002301 ], + [ 9.246356, 47.0022915 ], + [ 9.2463636, 47.0022821 ], + [ 9.2463714, 47.0022728 ], + [ 9.2463795, 47.0022636 ], + [ 9.2463878, 47.0022545 ], + [ 9.2463963, 47.0022454 ], + [ 9.246405, 47.0022365 ], + [ 9.2464139, 47.0022276 ], + [ 9.2464231, 47.0022189 ], + [ 9.2464322, 47.0022101 ], + [ 9.2464411, 47.0022012 ], + [ 9.2464498, 47.0021923 ], + [ 9.2464582, 47.0021832 ], + [ 9.2464664, 47.002174 ], + [ 9.2464744, 47.0021648 ], + [ 9.246482199999999, 47.0021554 ], + [ 9.2464897, 47.002146 ], + [ 9.246497, 47.0021364 ], + [ 9.246504, 47.0021268 ], + [ 9.2465108, 47.0021171 ], + [ 9.2465173, 47.0021073 ], + [ 9.2465236, 47.0020975 ], + [ 9.2465354, 47.0020782 ], + [ 9.2465467, 47.0020588 ], + [ 9.2465575, 47.0020393 ], + [ 9.2465679, 47.0020197 ], + [ 9.2465779, 47.0019999 ], + [ 9.2465873, 47.0019801 ], + [ 9.2465963, 47.0019601 ], + [ 9.2466049, 47.0019401 ], + [ 9.246613, 47.0019199 ], + [ 9.2466206, 47.0018997 ], + [ 9.2466282, 47.0018795 ], + [ 9.2466363, 47.0018594 ], + [ 9.246645, 47.0018393 ], + [ 9.246654, 47.0018194 ], + [ 9.2466636, 47.0017996 ], + [ 9.2466737, 47.0017799 ], + [ 9.2466842, 47.0017603 ], + [ 9.2466953, 47.0017408 ], + [ 9.2467067, 47.0017214 ], + [ 9.2467187, 47.0017022 ], + [ 9.2467398, 47.0016698 ], + [ 9.2467616, 47.0016376 ], + [ 9.2467842, 47.0016057 ], + [ 9.2468075, 47.001574 ], + [ 9.2468315, 47.0015426 ], + [ 9.2468563, 47.0015114 ], + [ 9.2468817, 47.0014805 ], + [ 9.2469411, 47.0014085 ], + [ 9.2469991, 47.0013359 ], + [ 9.2470555, 47.0012627 ], + [ 9.2470993, 47.0012037 ], + [ 9.2471419, 47.0011443 ], + [ 9.2471832, 47.0010845 ], + [ 9.2472009, 47.0010589 ], + [ 9.2472192, 47.0010334 ], + [ 9.2472381, 47.0010082 ], + [ 9.2472576, 47.0009831 ], + [ 9.2472776, 47.0009583 ], + [ 9.2472983, 47.0009337 ], + [ 9.2473194, 47.0009093 ], + [ 9.2473282, 47.0008996 ], + [ 9.2473373, 47.0008899 ], + [ 9.2473466, 47.0008804 ], + [ 9.2473561, 47.0008709 ], + [ 9.2473658, 47.0008616 ], + [ 9.2473758, 47.0008524 ], + [ 9.247386, 47.0008433 ], + [ 9.2473965, 47.0008344 ], + [ 9.2474072, 47.0008255 ], + [ 9.2474235, 47.0008125 ], + [ 9.24744, 47.0007996 ], + [ 9.2474569, 47.0007868 ], + [ 9.247474, 47.0007743 ], + [ 9.2474914, 47.0007619 ], + [ 9.2475091, 47.0007497 ], + [ 9.2475259, 47.0007384 ], + [ 9.2475431, 47.0007273 ], + [ 9.2475605, 47.0007164 ], + [ 9.2475782, 47.0007058 ], + [ 9.247596099999999, 47.0006953 ], + [ 9.2476143, 47.0006851 ], + [ 9.2476328, 47.0006751 ], + [ 9.2476515, 47.0006653 ], + [ 9.2476705, 47.0006557 ], + [ 9.2476897, 47.0006463 ], + [ 9.2477091, 47.0006372 ], + [ 9.2477288, 47.0006283 ], + [ 9.2477487, 47.0006197 ], + [ 9.2477688, 47.0006112 ], + [ 9.2477772, 47.0006077 ], + [ 9.2477856, 47.0006041 ], + [ 9.2477939, 47.0006004 ], + [ 9.2478021, 47.0005965 ], + [ 9.2478102, 47.0005926 ], + [ 9.2478183, 47.0005887 ], + [ 9.2478262, 47.0005846 ], + [ 9.247834, 47.0005804 ], + [ 9.2478418, 47.0005762 ], + [ 9.2478494, 47.0005718 ], + [ 9.2479854, 47.0004265 ], + [ 9.2481527, 47.0002911 ], + [ 9.2482201, 47.0002004 ], + [ 9.2483892, 46.9998142 ], + [ 9.2486023, 46.9993271 ], + [ 9.2496825, 46.9979553 ], + [ 9.2497311, 46.9978203 ], + [ 9.2497401, 46.997214 ], + [ 9.2495044, 46.996182 ], + [ 9.2495134, 46.9960217 ], + [ 9.2498819, 46.9952116 ], + [ 9.2475393, 46.9946439 ], + [ 9.2468733, 46.9933895 ], + [ 9.24632, 46.9930773 ], + [ 9.2461893, 46.9929327 ], + [ 9.2459072, 46.9924919 ], + [ 9.2458247, 46.9923771 ], + [ 9.2455838, 46.9921996 ], + [ 9.2455588, 46.992196 ], + [ 9.2453743, 46.9915674 ], + [ 9.2454718, 46.9911992 ], + [ 9.2452729, 46.9909921 ], + [ 9.2452037, 46.9910285 ], + [ 9.2451953, 46.9910232 ], + [ 9.2449501, 46.9910332 ], + [ 9.244753, 46.9910211 ], + [ 9.2446604, 46.9910154 ], + [ 9.2441353, 46.9910087 ], + [ 9.2440961, 46.9910008 ], + [ 9.244026, 46.9909866 ], + [ 9.2439783, 46.990976 ], + [ 9.2439304, 46.9909586 ], + [ 9.2438646, 46.9909454 ], + [ 9.2438017, 46.9909368 ], + [ 9.2437301, 46.9909189 ], + [ 9.2436584, 46.9908962 ], + [ 9.243513, 46.9908597 ], + [ 9.2435073, 46.9908583 ], + [ 9.2434898, 46.9908557 ], + [ 9.2434617, 46.990851 ], + [ 9.2434498, 46.99085 ], + [ 9.2434243, 46.9908463 ], + [ 9.243124, 46.9908029 ], + [ 9.2430033, 46.990779 ], + [ 9.242817, 46.9907422 ], + [ 9.2426427, 46.9907077 ], + [ 9.2425152, 46.9906952 ], + [ 9.2424754, 46.9906913 ], + [ 9.2424199, 46.9906858 ], + [ 9.2421893, 46.9907001 ], + [ 9.2419435, 46.9907253 ], + [ 9.2418527, 46.9907587 ], + [ 9.2417945, 46.990761 ], + [ 9.2416886, 46.9907493 ], + [ 9.2416683, 46.9907481 ], + [ 9.2416631, 46.9907478 ], + [ 9.2416342, 46.9907462 ], + [ 9.2415505, 46.9907413 ], + [ 9.2414558, 46.9906481 ], + [ 9.241397, 46.9906129 ], + [ 9.24139, 46.9906087 ], + [ 9.2413792, 46.9906023 ], + [ 9.2413228, 46.9905685 ], + [ 9.241209, 46.9905246 ], + [ 9.2411316, 46.9904947 ], + [ 9.2409441, 46.9903886 ], + [ 9.2408449, 46.9903529 ], + [ 9.2408126, 46.9903413 ], + [ 9.2408019, 46.9903375 ], + [ 9.2406628, 46.99031 ], + [ 9.240635, 46.9902888 ], + [ 9.2405273, 46.9902067 ], + [ 9.2404866, 46.990168 ], + [ 9.2403952, 46.9900811 ], + [ 9.2403461, 46.990051199999996 ], + [ 9.2403228, 46.9900347 ], + [ 9.2403077, 46.9900241 ], + [ 9.2402764, 46.9900036 ], + [ 9.2402684, 46.9899983 ], + [ 9.2402519, 46.989977 ], + [ 9.240239, 46.9899603 ], + [ 9.2402245, 46.9899547 ], + [ 9.2401894, 46.9899412 ], + [ 9.2401709, 46.9899165 ], + [ 9.2401565, 46.9898993 ], + [ 9.2401514, 46.9898933 ], + [ 9.2401447, 46.9898898 ], + [ 9.2401316, 46.9898828 ], + [ 9.2401058, 46.9898691 ], + [ 9.2400799, 46.9898403 ], + [ 9.2400767, 46.9898344 ], + [ 9.2400599, 46.9898036 ], + [ 9.2400024, 46.9897639 ], + [ 9.2399532, 46.9897255 ], + [ 9.2399284, 46.9897126 ], + [ 9.2399214, 46.9897089 ], + [ 9.2398574, 46.9896608 ], + [ 9.239846, 46.9896552 ], + [ 9.239814, 46.9896394 ], + [ 9.2397664, 46.9896152 ], + [ 9.2397215, 46.9895811 ], + [ 9.239689, 46.9895424 ], + [ 9.2396709, 46.9895007 ], + [ 9.2396426, 46.9894634 ], + [ 9.2395925, 46.9894271 ], + [ 9.2395504, 46.9894025 ], + [ 9.23949, 46.9893942 ], + [ 9.239422, 46.9893768 ], + [ 9.2393682, 46.9893486 ], + [ 9.239298, 46.989327 ], + [ 9.2392549, 46.9893113 ], + [ 9.2392124, 46.9892787 ], + [ 9.2391682, 46.9892609 ], + [ 9.2391139, 46.9892483 ], + [ 9.2390592, 46.989225 ], + [ 9.23902, 46.9892022 ], + [ 9.238972799999999, 46.9891845 ], + [ 9.2389109, 46.9891628 ], + [ 9.238877, 46.9891434 ], + [ 9.2388338, 46.9891228 ], + [ 9.2388174, 46.9890982 ], + [ 9.2388233, 46.9890563 ], + [ 9.2388207, 46.9890435 ], + [ 9.2388158, 46.9890195 ], + [ 9.2387792, 46.9889796 ], + [ 9.2386991, 46.9889404 ], + [ 9.2386627, 46.9889055 ], + [ 9.2386357, 46.9888754 ], + [ 9.2385887, 46.9888538 ], + [ 9.238581, 46.9888475 ], + [ 9.2385751, 46.9888281 ], + [ 9.2385356, 46.9887968 ], + [ 9.23851, 46.988777 ], + [ 9.2384952, 46.9887655 ], + [ 9.2384591, 46.988742 ], + [ 9.2384139, 46.9887221 ], + [ 9.2383797, 46.9886936 ], + [ 9.2383489, 46.988639 ], + [ 9.2383625, 46.9886378 ], + [ 9.2383213, 46.9886137 ], + [ 9.2382614, 46.988559 ], + [ 9.2381335, 46.988504 ], + [ 9.2380822, 46.9884819 ], + [ 9.2380721, 46.9884774 ], + [ 9.2379192, 46.9884088 ], + [ 9.2378121, 46.9883634 ], + [ 9.2377845, 46.988353599999996 ], + [ 9.2377346, 46.9883358 ], + [ 9.2377123, 46.9883279 ], + [ 9.2376691, 46.9882686 ], + [ 9.2375694, 46.9882373 ], + [ 9.2373926, 46.9881645 ], + [ 9.2372581, 46.9881223 ], + [ 9.2371108, 46.9881104 ], + [ 9.2370907, 46.9881099 ], + [ 9.2369752, 46.9881068 ], + [ 9.2369751, 46.9881068 ], + [ 9.2368676, 46.9880995 ], + [ 9.2368394, 46.9880976 ], + [ 9.2367306, 46.9880665 ], + [ 9.2366101, 46.9880327 ], + [ 9.2365784, 46.9880292 ], + [ 9.2364985, 46.9880316 ], + [ 9.2364342, 46.9880336 ], + [ 9.2363797, 46.9880474 ], + [ 9.2362946, 46.988038 ], + [ 9.236201, 46.9880094 ], + [ 9.2360999, 46.9879895 ], + [ 9.2359872, 46.9879824 ], + [ 9.235963, 46.9879809 ], + [ 9.2359338, 46.9879823 ], + [ 9.235869, 46.9879856 ], + [ 9.2358072, 46.9879865 ], + [ 9.2357608, 46.9879873 ], + [ 9.235721, 46.987982099999996 ], + [ 9.2357057, 46.9879801 ], + [ 9.2356646, 46.9879748 ], + [ 9.235589300000001, 46.987976 ], + [ 9.2355427, 46.9879819 ], + [ 9.2355127, 46.9879858 ], + [ 9.2354608, 46.9879823 ], + [ 9.2354439, 46.9879781 ], + [ 9.2354085, 46.9879692 ], + [ 9.2353966, 46.9879727 ], + [ 9.2353861, 46.9879757 ], + [ 9.2353541, 46.987985 ], + [ 9.2353011, 46.9879955 ], + [ 9.2352472, 46.9879781 ], + [ 9.2351978, 46.9879574 ], + [ 9.2351631, 46.9879526 ], + [ 9.23513, 46.9879477 ], + [ 9.2351132, 46.9879147 ], + [ 9.235113, 46.9879082 ], + [ 9.235112, 46.9878793 ], + [ 9.2350936, 46.9878463 ], + [ 9.2350804, 46.9878324 ], + [ 9.2350781, 46.98783 ], + [ 9.2350562, 46.9878071 ], + [ 9.234983, 46.9877782 ], + [ 9.2349219, 46.9877351 ], + [ 9.2348516, 46.9876965 ], + [ 9.2347238, 46.9876781 ], + [ 9.2346412, 46.9876493 ], + [ 9.2346032, 46.987648899999996 ], + [ 9.2345533, 46.9876485 ], + [ 9.2344902, 46.9876471 ], + [ 9.2344685, 46.9876466 ], + [ 9.2344641, 46.9876488 ], + [ 9.2344598, 46.9876509 ], + [ 9.2344216, 46.9876697 ], + [ 9.2344191, 46.987671 ], + [ 9.2344083, 46.9876763 ], + [ 9.234206, 46.9877517 ], + [ 9.2340341, 46.9878151 ], + [ 9.2338785, 46.9878881 ], + [ 9.2337566, 46.9879349 ], + [ 9.2336926, 46.987937 ], + [ 9.2336266, 46.9879252 ], + [ 9.2335615, 46.9879422 ], + [ 9.2335122, 46.9879644 ], + [ 9.2334612, 46.9879834 ], + [ 9.2334001, 46.9879769 ], + [ 9.2333146, 46.9879921 ], + [ 9.2332908, 46.9879979 ], + [ 9.2332495, 46.9880081 ], + [ 9.2332218, 46.9880453 ], + [ 9.2332212, 46.9880461 ], + [ 9.2332181, 46.9880503 ], + [ 9.2331697, 46.9880992 ], + [ 9.2331207, 46.988131 ], + [ 9.233045, 46.9881557 ], + [ 9.232992, 46.9881608 ], + [ 9.2328931, 46.9881474 ], + [ 9.2327948, 46.9881072 ], + [ 9.2326798, 46.9880812 ], + [ 9.2326286, 46.9880456 ], + [ 9.232536, 46.9879861 ], + [ 9.2325117, 46.9879734 ], + [ 9.2324707, 46.9879518 ], + [ 9.2324122, 46.987929199999996 ], + [ 9.2323973, 46.9879267 ], + [ 9.2323744, 46.987923 ], + [ 9.2323417, 46.9879284 ], + [ 9.2323107, 46.9879336 ], + [ 9.2322581, 46.9879483 ], + [ 9.2322029, 46.9879644 ], + [ 9.2321961, 46.9879664 ], + [ 9.2321509, 46.9879692 ], + [ 9.2321174, 46.9879562 ], + [ 9.2321034, 46.9879507 ], + [ 9.2320684, 46.987932 ], + [ 9.232007, 46.9879202 ], + [ 9.2319427, 46.9879126 ], + [ 9.231863, 46.9878981 ], + [ 9.2318462, 46.9878937 ], + [ 9.2318117, 46.9878847 ], + [ 9.2317996, 46.9878738 ], + [ 9.2317805, 46.9878566 ], + [ 9.2317717, 46.9878523 ], + [ 9.2317289, 46.9878312 ], + [ 9.2317285, 46.987831 ], + [ 9.2317099, 46.987822800000004 ], + [ 9.2316787, 46.9878089 ], + [ 9.2316497, 46.987801 ], + [ 9.2316292, 46.9877954 ], + [ 9.2315894, 46.9877582 ], + [ 9.2315388, 46.9877133 ], + [ 9.2314813, 46.9876785 ], + [ 9.2314336, 46.9876557 ], + [ 9.2314004, 46.9876315 ], + [ 9.2313876, 46.9876221 ], + [ 9.2313616, 46.9876055 ], + [ 9.2313449, 46.9875949 ], + [ 9.2312897, 46.9875851 ], + [ 9.2312819, 46.9875838 ], + [ 9.2312555, 46.9875835 ], + [ 9.2312255, 46.9875832 ], + [ 9.2311777, 46.987589 ], + [ 9.2311283, 46.9875817 ], + [ 9.2311159, 46.9875799 ], + [ 9.2310423, 46.9875961 ], + [ 9.2309788, 46.9876103 ], + [ 9.2309652, 46.9876128 ], + [ 9.2308756, 46.9876051 ], + [ 9.2308072, 46.9876197 ], + [ 9.2307445, 46.9876468 ], + [ 9.23073, 46.9876531 ], + [ 9.2306656, 46.9876612 ], + [ 9.2306131, 46.9876513 ], + [ 9.2305429, 46.9876446 ], + [ 9.2304683, 46.9876586 ], + [ 9.2303699, 46.9876494 ], + [ 9.2302792, 46.987653 ], + [ 9.230228, 46.9876509 ], + [ 9.2301833, 46.9876252 ], + [ 9.2301699, 46.9876215 ], + [ 9.2301443, 46.9876144 ], + [ 9.230057, 46.9875951 ], + [ 9.2300063, 46.9875759 ], + [ 9.2299207, 46.9875765 ], + [ 9.2299073, 46.987578 ], + [ 9.2299042, 46.9875783 ], + [ 9.2298459, 46.9875848 ], + [ 9.2297809, 46.9875779 ], + [ 9.2297041, 46.987557699999996 ], + [ 9.2296649, 46.9875398 ], + [ 9.2295967, 46.9875308 ], + [ 9.2295343, 46.9875221 ], + [ 9.2295003, 46.9875173 ], + [ 9.2294107, 46.9875249 ], + [ 9.2293636, 46.9875264 ], + [ 9.2293125, 46.9875137 ], + [ 9.2292317, 46.9874935 ], + [ 9.2290404, 46.9874103 ], + [ 9.2289767, 46.9873841 ], + [ 9.2288733, 46.9873442 ], + [ 9.2288634, 46.9873421 ], + [ 9.2286125, 46.9873027 ], + [ 9.2283899, 46.9872667 ], + [ 9.2283885, 46.9872664 ], + [ 9.228114, 46.9872437 ], + [ 9.227888, 46.9872202 ], + [ 9.227767, 46.9872 ], + [ 9.2277492, 46.987197 ], + [ 9.2276905, 46.9871784 ], + [ 9.227629199999999, 46.9871591 ], + [ 9.2275152, 46.9870955 ], + [ 9.2275038, 46.9870892 ], + [ 9.227473700000001, 46.9870724 ], + [ 9.2274129, 46.9870434 ], + [ 9.2273605, 46.9870184 ], + [ 9.227289, 46.9870016 ], + [ 9.2272721, 46.9869976 ], + [ 9.2271944, 46.9869793 ], + [ 9.227189599999999, 46.9869782 ], + [ 9.2271703, 46.9869789 ], + [ 9.2271315, 46.9869803 ], + [ 9.2270445, 46.9869836 ], + [ 9.2269253, 46.9869696 ], + [ 9.2268554, 46.9869532 ], + [ 9.2267788, 46.9869353 ], + [ 9.2267245, 46.9869274 ], + [ 9.2266698, 46.9869194 ], + [ 9.2265622, 46.9869037 ], + [ 9.2262044, 46.9868489 ], + [ 9.2260641, 46.9868187 ], + [ 9.2260458, 46.9868148 ], + [ 9.2259226, 46.986753 ], + [ 9.225799, 46.986677 ], + [ 9.2257091, 46.9865972 ], + [ 9.2256465, 46.9865361 ], + [ 9.2255309, 46.9864838 ], + [ 9.2253885, 46.9864271 ], + [ 9.2252706, 46.9863764 ], + [ 9.2251394, 46.9862925 ], + [ 9.2250905, 46.986239 ], + [ 9.2250363, 46.9861795 ], + [ 9.2249007, 46.9860383 ], + [ 9.2248535, 46.9859984 ], + [ 9.2248235, 46.9859731 ], + [ 9.2247906, 46.9859556 ], + [ 9.2247472, 46.9859326 ], + [ 9.2247009, 46.9858887 ], + [ 9.2246972, 46.9858853 ], + [ 9.2246401, 46.9858529 ], + [ 9.2246129, 46.9858374 ], + [ 9.2245276, 46.9858088 ], + [ 9.2244614, 46.9857801 ], + [ 9.2244468, 46.9857738 ], + [ 9.2243717, 46.9857528 ], + [ 9.2243611, 46.9857499 ], + [ 9.224338, 46.9857434 ], + [ 9.2243098, 46.9857383 ], + [ 9.2242673, 46.9857306 ], + [ 9.2242563, 46.9857287 ], + [ 9.2241592, 46.9857216 ], + [ 9.2240697, 46.9857048 ], + [ 9.224032, 46.9857028 ], + [ 9.2239633, 46.985699 ], + [ 9.2239055, 46.985692 ], + [ 9.223877, 46.9856886 ], + [ 9.223818, 46.985695 ], + [ 9.2237852, 46.9856986 ], + [ 9.2237053, 46.9856913 ], + [ 9.2236272, 46.9856893 ], + [ 9.2235281, 46.9856684 ], + [ 9.2234591, 46.9856609 ], + [ 9.2234275, 46.9856528 ], + [ 9.2234229, 46.9856516 ], + [ 9.223404, 46.9856468 ], + [ 9.2232719, 46.9856189 ], + [ 9.223235, 46.9856137 ], + [ 9.2231966, 46.9856084 ], + [ 9.2231224, 46.985586 ], + [ 9.2230363, 46.9855655 ], + [ 9.2230044, 46.9855579 ], + [ 9.2229775, 46.9855542 ], + [ 9.2229103, 46.985545 ], + [ 9.2228851, 46.9855416 ], + [ 9.2228109, 46.9855393 ], + [ 9.2227223, 46.985526899999996 ], + [ 9.2226728, 46.9855198 ], + [ 9.2226487, 46.9855164 ], + [ 9.2225813, 46.9855063 ], + [ 9.2225119, 46.9854869 ], + [ 9.2224526, 46.9854769 ], + [ 9.2224511, 46.9854769 ], + [ 9.2223956, 46.9854764 ], + [ 9.2223829, 46.985481300000004 ], + [ 9.2223611, 46.9854898 ], + [ 9.2223586, 46.9854907 ], + [ 9.2223371, 46.9855139 ], + [ 9.2223063, 46.9855481 ], + [ 9.2222943, 46.9855558 ], + [ 9.2222919, 46.985557299999996 ], + [ 9.2222901, 46.9855585 ], + [ 9.2222743, 46.9855686 ], + [ 9.2222276, 46.9855757 ], + [ 9.2222156, 46.9855776 ], + [ 9.2222091, 46.985576 ], + [ 9.2221764, 46.9855682 ], + [ 9.2221504, 46.9855586 ], + [ 9.2221136, 46.9855388 ], + [ 9.2221034, 46.9855347 ], + [ 9.2220869, 46.9855282 ], + [ 9.2220814, 46.9855279 ], + [ 9.2220648, 46.9855268 ], + [ 9.2220458, 46.9855256 ], + [ 9.2220269, 46.9855265 ], + [ 9.2219931, 46.9855283 ], + [ 9.2219389, 46.9855267 ], + [ 9.2219344, 46.9855249 ], + [ 9.2219044, 46.9855125 ], + [ 9.2218896, 46.9854972 ], + [ 9.2218814, 46.9854887 ], + [ 9.2218625, 46.9854828 ], + [ 9.2218378, 46.9854751 ], + [ 9.2218011, 46.9854566 ], + [ 9.2217498, 46.9854375 ], + [ 9.2217114, 46.9854309 ], + [ 9.2216615, 46.9854076 ], + [ 9.2216576, 46.9854057 ], + [ 9.2216511, 46.985418 ], + [ 9.2216441, 46.9854314 ], + [ 9.2216322, 46.985454 ], + [ 9.2216032, 46.9855092 ], + [ 9.2216063, 46.9856011 ], + [ 9.2216586, 46.9856719 ], + [ 9.2216645, 46.9856825 ], + [ 9.2216782, 46.985707 ], + [ 9.2216835, 46.9857164 ], + [ 9.2216912, 46.9857371 ], + [ 9.2216945, 46.985746 ], + [ 9.221699, 46.9857579 ], + [ 9.2216908, 46.9857944 ], + [ 9.2216649, 46.9858129 ], + [ 9.2216171, 46.985834 ], + [ 9.2216175, 46.9858463 ], + [ 9.2216186, 46.9858767 ], + [ 9.2216191, 46.9858775 ], + [ 9.2216463, 46.9859137 ], + [ 9.2216894, 46.9859446 ], + [ 9.221692000000001, 46.9859465 ], + [ 9.2216959, 46.9859493 ], + [ 9.2217428, 46.9859967 ], + [ 9.221782, 46.9860463 ], + [ 9.2218175, 46.9860821 ], + [ 9.2218645, 46.9860846 ], + [ 9.2219263, 46.9861114 ], + [ 9.221951, 46.9861302 ], + [ 9.2219664, 46.9861418 ], + [ 9.2219896, 46.9861831 ], + [ 9.2219938, 46.98621 ], + [ 9.2219956, 46.9862215 ], + [ 9.2220112, 46.9862694 ], + [ 9.2220278, 46.9863109 ], + [ 9.2220282, 46.9863119 ], + [ 9.2220279, 46.9863124 ], + [ 9.2220059, 46.9863454 ], + [ 9.222003, 46.9863572 ], + [ 9.2219963, 46.986384 ], + [ 9.2220015, 46.9864582 ], + [ 9.2220087, 46.986556 ], + [ 9.2220317, 46.9866889 ], + [ 9.2220357, 46.9867125 ], + [ 9.2220505, 46.9868237 ], + [ 9.2220595, 46.9868918 ], + [ 9.2220542, 46.9869065 ], + [ 9.2220424, 46.9869387 ], + [ 9.2220406, 46.9869439 ], + [ 9.2220359, 46.9869565 ], + [ 9.2219489, 46.9870195 ], + [ 9.2218872, 46.9870714 ], + [ 9.2218521, 46.9871457 ], + [ 9.2218489, 46.9872302 ], + [ 9.2218562, 46.9872703 ], + [ 9.2218632, 46.9873627 ], + [ 9.2218466, 46.9874118 ], + [ 9.2218362, 46.9874423 ], + [ 9.2218266, 46.987452 ], + [ 9.2218154, 46.9874634 ], + [ 9.2217169, 46.9875635 ], + [ 9.2216834, 46.9875976 ], + [ 9.2216236, 46.9876614 ], + [ 9.2215908, 46.9877255 ], + [ 9.2215853, 46.9877327 ], + [ 9.2215857, 46.9877401 ], + [ 9.2215772, 46.9878163 ], + [ 9.2215966, 46.987923 ], + [ 9.2216015, 46.98795 ], + [ 9.2215989, 46.9879619 ], + [ 9.2215723, 46.9880845 ], + [ 9.2215697, 46.988102 ], + [ 9.2215661, 46.9881259 ], + [ 9.2215465, 46.9882566 ], + [ 9.221546, 46.988259 ], + [ 9.2215254, 46.9883223 ], + [ 9.22145, 46.988506 ], + [ 9.221409, 46.9885912 ], + [ 9.2213608, 46.9886948 ], + [ 9.2213443, 46.9887646 ], + [ 9.2213554, 46.9887968 ], + [ 9.2213661, 46.9888278 ], + [ 9.2213686, 46.9888349 ], + [ 9.2213804, 46.9889086 ], + [ 9.2213785, 46.9890093 ], + [ 9.2213169, 46.989129 ], + [ 9.2212584, 46.989284 ], + [ 9.2212135, 46.9893736 ], + [ 9.2212083, 46.9893838 ], + [ 9.2211788, 46.9894474 ], + [ 9.2211701, 46.9894664 ], + [ 9.2211561, 46.9895058 ], + [ 9.2211494, 46.9895247 ], + [ 9.2211451, 46.9895331 ], + [ 9.2211148, 46.989593 ], + [ 9.2210624, 46.9896843 ], + [ 9.221013899999999, 46.9897685 ], + [ 9.2209119, 46.9899044 ], + [ 9.2208735, 46.9899856 ], + [ 9.2208684, 46.9900045 ], + [ 9.2208351, 46.9901276 ], + [ 9.2208074, 46.9902213 ], + [ 9.220796, 46.9902626 ], + [ 9.2207919, 46.9902772 ], + [ 9.2207743, 46.9903406 ], + [ 9.2207367, 46.990443 ], + [ 9.220687999999999, 46.990554 ], + [ 9.2206813, 46.9905992 ], + [ 9.2206611, 46.9907344 ], + [ 9.220665, 46.9907747 ], + [ 9.2206693, 46.9908189 ], + [ 9.2206722, 46.99085 ], + [ 9.2207423, 46.991079 ], + [ 9.2208088, 46.9911363 ], + [ 9.220874, 46.9911705 ], + [ 9.2208831, 46.9911753 ], + [ 9.2209054, 46.9911888 ], + [ 9.2209919, 46.9912413 ], + [ 9.220996, 46.9912575 ], + [ 9.2210085, 46.9913077 ], + [ 9.2210183, 46.9913473 ], + [ 9.2209998, 46.9914672 ], + [ 9.2209981, 46.991478 ], + [ 9.220998, 46.9914781 ], + [ 9.2209755, 46.9915471 ], + [ 9.2209638, 46.9915827 ], + [ 9.2209639, 46.9916309 ], + [ 9.220964, 46.9916696 ], + [ 9.2209641, 46.991692 ], + [ 9.2210054, 46.9917996 ], + [ 9.2210136, 46.9918117 ], + [ 9.2210839, 46.9919149 ], + [ 9.2211996, 46.9920747 ], + [ 9.2212364, 46.992133 ], + [ 9.2212379, 46.9921354 ], + [ 9.2212533, 46.9921598 ], + [ 9.2213043, 46.9922778 ], + [ 9.221319, 46.9923444 ], + [ 9.2213334, 46.9924094 ], + [ 9.2213503, 46.9924517 ], + [ 9.2213872, 46.992544 ], + [ 9.2213937, 46.9925603 ], + [ 9.2214532, 46.9926706 ], + [ 9.2215221, 46.9927984 ], + [ 9.2215543, 46.9928639 ], + [ 9.2215551, 46.9928656 ], + [ 9.2215875, 46.9929313 ], + [ 9.2215847, 46.9929559 ], + [ 9.2215823, 46.9929766 ], + [ 9.2215798, 46.9929993 ], + [ 9.2216254, 46.9931244 ], + [ 9.2217105, 46.9932677 ], + [ 9.2217516, 46.9933814 ], + [ 9.2217638, 46.9934153 ], + [ 9.2217836, 46.9934701 ], + [ 9.2218327, 46.9935227 ], + [ 9.2218354, 46.9935256 ], + [ 9.2218353, 46.9935282 ], + [ 9.2218288, 46.9936712 ], + [ 9.2218498, 46.9937664 ], + [ 9.2218816, 46.9938249 ], + [ 9.2219002, 46.9938592 ], + [ 9.2219567, 46.9939447 ], + [ 9.2219937, 46.9939751 ], + [ 9.2220771, 46.9940443 ], + [ 9.2221287, 46.9940968 ], + [ 9.222169, 46.9941379 ], + [ 9.222227, 46.9942708 ], + [ 9.2222752, 46.9944427 ], + [ 9.2223381, 46.9945924 ], + [ 9.2223806, 46.9946823 ], + [ 9.2224303, 46.9947548 ], + [ 9.2224913, 46.9948355 ], + [ 9.2225222, 46.9948685 ], + [ 9.2225381, 46.9948806 ], + [ 9.2226018, 46.9949288 ], + [ 9.2226211, 46.9949434 ], + [ 9.2227602, 46.9950331 ], + [ 9.2228979, 46.9951245 ], + [ 9.223034, 46.9952107 ], + [ 9.2232043, 46.9953437 ], + [ 9.223321, 46.995438899999996 ], + [ 9.223444, 46.9955555 ], + [ 9.2235471, 46.9956286 ], + [ 9.2237028, 46.9957085 ], + [ 9.2237981, 46.9957606 ], + [ 9.2238096, 46.9957669 ], + [ 9.2238649, 46.995791 ], + [ 9.2238968, 46.995805 ], + [ 9.2239746, 46.9958389 ], + [ 9.2241517, 46.9958947 ], + [ 9.2242811, 46.9959359 ], + [ 9.2242879, 46.995938 ], + [ 9.2243157, 46.9959533 ], + [ 9.2243446, 46.995969099999996 ], + [ 9.2243776, 46.9959872 ], + [ 9.2244716, 46.9960448 ], + [ 9.2244771, 46.9960494 ], + [ 9.2244958, 46.996065 ], + [ 9.2245101, 46.996077 ], + [ 9.2245179, 46.9960834 ], + [ 9.2245535, 46.9961061 ], + [ 9.2245911, 46.9961301 ], + [ 9.2246472, 46.9961531 ], + [ 9.2246637, 46.9961599 ], + [ 9.2247258, 46.9961726 ], + [ 9.2247337, 46.9961742 ], + [ 9.2247528, 46.9961753 ], + [ 9.2247915, 46.9961773 ], + [ 9.2249365, 46.9961852 ], + [ 9.2251124, 46.9961881 ], + [ 9.2251142, 46.9961884 ], + [ 9.2251574, 46.9961966 ], + [ 9.2251742, 46.9961998 ], + [ 9.2252321, 46.9962199 ], + [ 9.2252433, 46.9962276 ], + [ 9.2252618, 46.9962404 ], + [ 9.225274, 46.9962488 ], + [ 9.2253083, 46.9962932 ], + [ 9.2253098, 46.9963382 ], + [ 9.2253019, 46.9964057 ], + [ 9.2253017, 46.9964074 ], + [ 9.225301, 46.9964123 ], + [ 9.2252944, 46.9964573 ], + [ 9.225292, 46.9964733 ], + [ 9.2252812, 46.9965157 ], + [ 9.2252831, 46.996532 ], + [ 9.2252866, 46.9965623 ], + [ 9.225287, 46.9965662 ], + [ 9.225294, 46.9965879 ], + [ 9.2253031, 46.9966165 ], + [ 9.2253062, 46.996653 ], + [ 9.2253064, 46.9966561 ], + [ 9.2253099, 46.9966965 ], + [ 9.2252967, 46.9967404 ], + [ 9.2252934, 46.9967515 ], + [ 9.2252631, 46.9967855 ], + [ 9.2252595, 46.9967895 ], + [ 9.225254, 46.9967957 ], + [ 9.2252361, 46.9968243 ], + [ 9.2252327, 46.9968297 ], + [ 9.2252396, 46.9968521 ], + [ 9.2252474, 46.996862899999996 ], + [ 9.2252482, 46.9968641 ], + [ 9.2252546, 46.996873 ], + [ 9.2252618, 46.9968783 ], + [ 9.2252792, 46.9968913 ], + [ 9.2253323, 46.9969308 ], + [ 9.2253931, 46.9969748 ], + [ 9.2254179, 46.9969856 ], + [ 9.2255261, 46.9970328 ], + [ 9.2255426, 46.9970399 ], + [ 9.2255764, 46.9970629 ], + [ 9.2256054, 46.9970825 ], + [ 9.2256113, 46.9970884 ], + [ 9.2256915, 46.997169 ], + [ 9.2256923, 46.9971697 ], + [ 9.2256925, 46.99717 ], + [ 9.2258738, 46.9973948 ], + [ 9.2259037, 46.9974349 ], + [ 9.2259149, 46.9974614 ], + [ 9.2259264, 46.9975004 ], + [ 9.2259396, 46.9975282 ], + [ 9.2259655, 46.9975684 ], + [ 9.2259769, 46.9975777 ], + [ 9.2260064, 46.9976019 ], + [ 9.2260075, 46.9976027 ], + [ 9.2260234, 46.9976111 ], + [ 9.226049100000001, 46.9976245 ], + [ 9.2260621, 46.99763 ], + [ 9.226103, 46.9976474 ], + [ 9.2261198, 46.9976612 ], + [ 9.2261306, 46.9976792 ], + [ 9.2261402, 46.9977085 ], + [ 9.2261443, 46.997721 ], + [ 9.2261608, 46.9977852 ], + [ 9.2261716, 46.997862 ], + [ 9.2261808, 46.9979543 ], + [ 9.226184, 46.9979865 ], + [ 9.2261993, 46.9980185 ], + [ 9.2262213, 46.9980629 ], + [ 9.2262453, 46.9981005 ], + [ 9.2262515, 46.9981101 ], + [ 9.2262549, 46.9981252 ], + [ 9.2262579, 46.9981384 ], + [ 9.2262587, 46.9981422 ], + [ 9.2262612, 46.9981615 ], + [ 9.226267, 46.9982051 ], + [ 9.2262747, 46.9982378 ], + [ 9.2262789, 46.9982553 ], + [ 9.2262835, 46.9982639 ], + [ 9.2263029, 46.9982997 ], + [ 9.2263067, 46.9983143 ], + [ 9.2263169, 46.9983527 ], + [ 9.2263232, 46.9984157 ], + [ 9.2263184, 46.998455 ], + [ 9.2263051, 46.9984918 ], + [ 9.2262885, 46.9985381 ], + [ 9.2262805, 46.9985694 ], + [ 9.2262741, 46.9985943 ], + [ 9.2262792, 46.998625 ], + [ 9.2262902, 46.9986459 ], + [ 9.2262945, 46.9986542 ], + [ 9.2262961, 46.9986577 ], + [ 9.2263071, 46.9986828 ], + [ 9.2263122, 46.9986945 ], + [ 9.226309, 46.9987198 ], + [ 9.2263077, 46.9987237 ], + [ 9.2262979, 46.9987536 ], + [ 9.2263011, 46.9987858 ], + [ 9.2263142, 46.9988136 ], + [ 9.2263152, 46.9988147 ], + [ 9.2263398, 46.998844 ], + [ 9.2264111, 46.9988975 ], + [ 9.2264129, 46.9988992 ], + [ 9.2264512, 46.998936 ], + [ 9.2264826, 46.9989594 ], + [ 9.226543, 46.9989842 ], + [ 9.2265494, 46.9989884 ], + [ 9.2265741, 46.9990069 ], + [ 9.2265848, 46.99903 ], + [ 9.2265895, 46.9990403 ], + [ 9.2266018, 46.9990933 ], + [ 9.2266208, 46.9991393 ], + [ 9.2266507, 46.9991891 ], + [ 9.226666699999999, 46.9992137 ], + [ 9.2266678, 46.9992153 ], + [ 9.226696, 46.9992353 ], + [ 9.2267217, 46.9992536 ], + [ 9.2267511, 46.9992807 ], + [ 9.226753, 46.9992824 ], + [ 9.2267761, 46.9993086 ], + [ 9.2267953, 46.999339 ], + [ 9.2268092, 46.9993745 ], + [ 9.2268196, 46.999401399999996 ], + [ 9.2268173, 46.9994545 ], + [ 9.2268195, 46.9994674 ], + [ 9.2268228, 46.9994874 ], + [ 9.2268248, 46.999499 ], + [ 9.226838, 46.9995323 ], + [ 9.2268594, 46.9995669 ], + [ 9.2268891, 46.9996097 ], + [ 9.2269035, 46.9996245 ], + [ 9.2269331, 46.9996551 ], + [ 9.2269544, 46.9996855 ], + [ 9.226984999999999, 46.9997548 ], + [ 9.2269903, 46.9997708 ], + [ 9.2270068, 46.9998211 ], + [ 9.2270119, 46.9998367 ], + [ 9.2270437, 46.9998795 ], + [ 9.227077, 46.9999055 ], + [ 9.2271159, 46.9999203 ], + [ 9.2271852, 46.9999304 ], + [ 9.2272334, 46.9999365 ], + [ 9.2272441, 46.9999379 ], + [ 9.2273075, 46.9999551 ], + [ 9.2273583, 47.0000036 ], + [ 9.2273765, 47.000021 ], + [ 9.2273935, 47.0000445 ], + [ 9.2273929, 47.0000569 ], + [ 9.2273923, 47.000071 ], + [ 9.227389, 47.0000934 ], + [ 9.2273921, 47.0001268 ], + [ 9.2273929, 47.0001282 ], + [ 9.2274024, 47.0001442 ], + [ 9.2274044, 47.0001476 ], + [ 9.2274135, 47.0001628 ], + [ 9.2274577, 47.0002138 ], + [ 9.2274899, 47.0002705 ], + [ 9.2274956, 47.0003206 ], + [ 9.2274871, 47.0003558 ], + [ 9.227483, 47.0003724 ], + [ 9.2274604, 47.0004432 ], + [ 9.227442, 47.0004877 ], + [ 9.227432, 47.000512 ], + [ 9.2274276, 47.0005243 ], + [ 9.2274152, 47.0005593 ], + [ 9.2274111, 47.0005958 ], + [ 9.2274104, 47.0006023 ], + [ 9.2274122, 47.0006618 ], + [ 9.2274098, 47.0007158 ], + [ 9.2273993, 47.0007699 ], + [ 9.2273846, 47.0008227 ], + [ 9.2273679, 47.0008728 ], + [ 9.2273623, 47.0008832 ], + [ 9.2273494, 47.0009076 ], + [ 9.2273486, 47.000909 ], + [ 9.2273092, 47.0009511 ], + [ 9.2273002, 47.0009604 ], + [ 9.2272777, 47.0009835 ], + [ 9.2272438, 47.0010061 ], + [ 9.2271781, 47.0010528 ], + [ 9.2271167, 47.0011077 ], + [ 9.2270971, 47.0011343 ], + [ 9.2270819, 47.0011691 ], + [ 9.2270746, 47.0011955 ], + [ 9.2270531, 47.0012235 ], + [ 9.2270092, 47.0012533 ], + [ 9.2270059, 47.0012551 ], + [ 9.2269787, 47.0012698 ], + [ 9.2268484, 47.0013295 ], + [ 9.226808, 47.001348 ], + [ 9.2267221, 47.0013544 ], + [ 9.2266902, 47.0013568 ], + [ 9.2266418, 47.0013718 ], + [ 9.2266105, 47.0013815 ], + [ 9.2265726, 47.0014159 ], + [ 9.2265448, 47.0014411 ], + [ 9.2265165, 47.0014804 ], + [ 9.2265126, 47.0015218 ], + [ 9.2265124, 47.0015235 ], + [ 9.2265119, 47.0015237 ], + [ 9.2264332, 47.0015639 ], + [ 9.2264235, 47.0015689 ], + [ 9.2263313, 47.0016394 ], + [ 9.2261961, 47.0017338 ], + [ 9.2260739, 47.0018341 ], + [ 9.2259896, 47.0018905 ], + [ 9.2259551, 47.0019136 ], + [ 9.2258737, 47.0019692 ], + [ 9.2258103, 47.0020538 ], + [ 9.2256927, 47.0021256 ], + [ 9.2256334, 47.0021533 ], + [ 9.2256259, 47.0021569 ], + [ 9.2256205, 47.0021572 ], + [ 9.2255525, 47.0021616 ], + [ 9.2255256, 47.0021754 ], + [ 9.2254622, 47.0022079 ], + [ 9.2253637, 47.0022226 ], + [ 9.2253163, 47.0022785 ], + [ 9.2252896, 47.0022898 ], + [ 9.2252592, 47.0023027 ], + [ 9.2252224, 47.0023024 ], + [ 9.2251926, 47.0023021 ], + [ 9.225103, 47.0023269 ], + [ 9.2250241, 47.0023756 ], + [ 9.2248984, 47.00242 ], + [ 9.2247948, 47.0024545 ], + [ 9.2247838, 47.0024582 ], + [ 9.2247454, 47.0024808 ], + [ 9.2247192, 47.0024963 ], + [ 9.2246492, 47.0025302 ], + [ 9.2245799, 47.0025307 ], + [ 9.2245686, 47.0025308 ], + [ 9.2245594, 47.0025385 ], + [ 9.2245302, 47.0025633 ], + [ 9.2244789, 47.0025917 ], + [ 9.2243724, 47.0026211 ], + [ 9.2243156, 47.0026548 ], + [ 9.2243002, 47.002667 ], + [ 9.2242665, 47.0026935 ], + [ 9.2242373, 47.0027164 ], + [ 9.224186, 47.0027853 ], + [ 9.2241512, 47.0028143 ], + [ 9.2240995, 47.0028574 ], + [ 9.2239977, 47.0029358 ], + [ 9.2238952, 47.0030348 ], + [ 9.2238045, 47.0031087 ], + [ 9.2237604, 47.0031286 ], + [ 9.2237137, 47.0031497 ], + [ 9.2237015, 47.0031552 ], + [ 9.223674, 47.0031949 ], + [ 9.2236652, 47.0032075 ], + [ 9.2236642, 47.0032461 ], + [ 9.2236634, 47.0032729 ], + [ 9.2236196, 47.0033133 ], + [ 9.2235432, 47.0033525 ], + [ 9.2234842, 47.0033743 ], + [ 9.2234162, 47.0033994 ], + [ 9.2234081, 47.0034052 ], + [ 9.22331, 47.0034757 ], + [ 9.2232725, 47.0035026 ], + [ 9.2232245, 47.003537 ], + [ 9.223143, 47.0036271 ], + [ 9.2230438, 47.0037011 ], + [ 9.2229281, 47.0037488 ], + [ 9.2228833, 47.0037811 ], + [ 9.2228302, 47.0038193 ], + [ 9.2227582, 47.0038263 ], + [ 9.2227118, 47.0038308 ], + [ 9.222652, 47.0038603 ], + [ 9.2226075, 47.0039196 ], + [ 9.2225932, 47.0039357 ], + [ 9.2225206, 47.0040175 ], + [ 9.2224152, 47.0041166 ], + [ 9.2222579, 47.0041873 ], + [ 9.2221122, 47.004226 ], + [ 9.2220262, 47.0042714 ], + [ 9.2220026, 47.0043059 ], + [ 9.2219779, 47.0043421 ], + [ 9.2219698, 47.0043541 ], + [ 9.2218926, 47.0044123 ], + [ 9.2218328, 47.0044483 ], + [ 9.2217999, 47.0044681 ], + [ 9.2217844, 47.0045011 ], + [ 9.2217697, 47.0045323 ], + [ 9.221742, 47.0045887 ], + [ 9.2216389, 47.0047093 ], + [ 9.2216286, 47.0047159 ], + [ 9.2215272, 47.0047815 ], + [ 9.2215076, 47.0047942 ], + [ 9.2214302, 47.0048455 ], + [ 9.2214129, 47.0048612 ], + [ 9.2213878, 47.0048841 ], + [ 9.2213811, 47.0049341 ], + [ 9.2213455, 47.0050036 ], + [ 9.2213039, 47.005068 ], + [ 9.2212619, 47.0051186 ], + [ 9.2212679, 47.005165 ], + [ 9.2212428, 47.0052136 ], + [ 9.2211961, 47.0052532 ], + [ 9.221174, 47.0053069 ], + [ 9.2211462, 47.005359 ], + [ 9.2211278, 47.0053981 ], + [ 9.2210863, 47.0054628 ], + [ 9.221077, 47.0054773 ], + [ 9.2210611, 47.0054834 ], + [ 9.2210412, 47.0054911 ], + [ 9.2210142, 47.0055016 ], + [ 9.2209178, 47.005531 ], + [ 9.2209036, 47.0055354 ], + [ 9.2207932, 47.0055726 ], + [ 9.2207351, 47.0056121 ], + [ 9.2206814, 47.0056486 ], + [ 9.220612, 47.0057255 ], + [ 9.2205543, 47.0057665 ], + [ 9.2204989, 47.0058058 ], + [ 9.2204534, 47.0058485 ], + [ 9.2204048, 47.0058942 ], + [ 9.2204046, 47.0058943 ], + [ 9.2202968, 47.0059668 ], + [ 9.2202671, 47.0059887 ], + [ 9.2202073, 47.0060329 ], + [ 9.2201941, 47.0060474 ], + [ 9.2201461, 47.0061002 ], + [ 9.2200929, 47.006148 ], + [ 9.2200731, 47.0061658 ], + [ 9.2200611, 47.0061766 ], + [ 9.2199648, 47.0062514 ], + [ 9.2198984, 47.006293 ], + [ 9.2198347, 47.0063707 ], + [ 9.219745, 47.0064317 ], + [ 9.2196631, 47.0064744 ], + [ 9.2195507, 47.0065349 ], + [ 9.2194511, 47.0065986 ], + [ 9.219406, 47.0066396 ], + [ 9.2193996, 47.0066454 ], + [ 9.219369, 47.0066731 ], + [ 9.2192535, 47.0067664 ], + [ 9.2191536, 47.0068576 ], + [ 9.2191108, 47.0069255 ], + [ 9.2191096, 47.0069308 ], + [ 9.2190998, 47.006975 ], + [ 9.2190484, 47.0070417 ], + [ 9.2190483, 47.0070418 ], + [ 9.219008, 47.0070823 ], + [ 9.2189651, 47.0071253 ], + [ 9.2189534, 47.0071371 ], + [ 9.2189447, 47.007154 ], + [ 9.2189365, 47.0071698 ], + [ 9.2189313, 47.0071799 ], + [ 9.218908, 47.0072251 ], + [ 9.2188788, 47.0072464 ], + [ 9.2188773, 47.0072475 ], + [ 9.2188631, 47.0072579 ], + [ 9.2188559, 47.0072894 ], + [ 9.218838, 47.0073686 ], + [ 9.2188272, 47.0073994 ], + [ 9.2188267, 47.0074013 ], + [ 9.2188263, 47.0074019 ], + [ 9.2188027, 47.0074696 ], + [ 9.2187333, 47.0075539 ], + [ 9.2186983, 47.0075964 ], + [ 9.2186343, 47.0076748 ], + [ 9.218606, 47.0077503 ], + [ 9.2186057, 47.0077509 ], + [ 9.2185095, 47.0078554 ], + [ 9.2184652, 47.0079183 ], + [ 9.218452599999999, 47.0079361 ], + [ 9.2183705, 47.0080412 ], + [ 9.2183375, 47.0081051 ], + [ 9.2183252, 47.0081293 ], + [ 9.2183155, 47.0081482 ], + [ 9.2182846, 47.008176 ], + [ 9.2182259, 47.0082287 ], + [ 9.2181286, 47.0082673 ], + [ 9.2179489, 47.0083072 ], + [ 9.2178925, 47.0083328 ], + [ 9.2178179, 47.0083686 ], + [ 9.2176425, 47.0083894 ], + [ 9.2176419, 47.0083897 ], + [ 9.217612, 47.0084323 ], + [ 9.2175894, 47.0084644 ], + [ 9.2174817, 47.0085649 ], + [ 9.2174634, 47.0085808 ], + [ 9.2174549, 47.0085951 ], + [ 9.2174213, 47.0086173 ], + [ 9.2173781, 47.0086546 ], + [ 9.2172966, 47.0087298 ], + [ 9.2172508, 47.0087719 ], + [ 9.2172236, 47.0088407 ], + [ 9.2171585, 47.0089421 ], + [ 9.2171502, 47.0089737 ], + [ 9.2171331, 47.009038 ], + [ 9.217119, 47.0090518 ], + [ 9.2170771, 47.0090926 ], + [ 9.2170618, 47.0091075 ], + [ 9.2170565, 47.0091262 ], + [ 9.2170044, 47.009211 ], + [ 9.2169618, 47.0093287 ], + [ 9.2170037, 47.0094451 ], + [ 9.2169322, 47.009582 ], + [ 9.2168188, 47.009729 ], + [ 9.2166438, 47.0099946 ], + [ 9.2165041, 47.0101774 ], + [ 9.2163349, 47.0103613 ], + [ 9.2162418, 47.0105462 ], + [ 9.2156295, 47.0108231 ], + [ 9.2155745, 47.0109482 ], + [ 9.2155625, 47.0110344 ], + [ 9.2154308, 47.0111719 ], + [ 9.2154359, 47.0112281 ], + [ 9.2153995, 47.0112468 ], + [ 9.2153697, 47.0112696 ], + [ 9.2150994, 47.0113687 ], + [ 9.2149365, 47.0113763 ], + [ 9.2148207, 47.0113527 ], + [ 9.2147432, 47.0115873 ], + [ 9.2148119, 47.0118704 ], + [ 9.2147555, 47.0122949 ], + [ 9.2146187, 47.0127562 ], + [ 9.2145261, 47.0129834 ], + [ 9.2145193, 47.0132271 ], + [ 9.2143092, 47.0138278 ], + [ 9.2136297, 47.0148125 ], + [ 9.2129974, 47.0149846 ], + [ 9.2112665, 47.016244 ], + [ 9.2107626, 47.01716 ], + [ 9.2104308, 47.0177733 ], + [ 9.2103615, 47.0180439 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "JBG0010", + "country" : "CHE", + "name" : [ + { + "text" : "Eidgenössisches Jagdbanngebiet Chrauchtal", + "lang" : "de-CH" + }, + { + "text" : "District franc fédéral Chrauchtal", + "lang" : "fr-CH" + }, + { + "text" : "Bandita federale di caccia Chrauchtal", + "lang" : "it-CH" + }, + { + "text" : "Federal Game Reserve Chrauchtal", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.1586312, 46.2671138 ], + [ 6.1588321, 46.267024 ], + [ 6.1600781, 46.267622 ], + [ 6.1615622, 46.2678442 ], + [ 6.1628266, 46.2676846 ], + [ 6.1635526, 46.2684654 ], + [ 6.1648012, 46.2690646 ], + [ 6.1662854, 46.2692867 ], + [ 6.1677792, 46.2690981 ], + [ 6.1690551, 46.268527399999996 ], + [ 6.169919, 46.2676614 ], + [ 6.1702393, 46.2666322 ], + [ 6.1699672, 46.2655962 ], + [ 6.1691443, 46.2647113 ], + [ 6.1678958, 46.2641122 ], + [ 6.1664118, 46.2638901 ], + [ 6.1651474, 46.2640497 ], + [ 6.1644214, 46.263269 ], + [ 6.163173, 46.2626698 ], + [ 6.161689, 46.2624476 ], + [ 6.160412, 46.2626088 ], + [ 6.1602592, 46.2619963 ], + [ 6.160153, 46.2618568 ], + [ 6.1600888, 46.261606 ], + [ 6.159516, 46.2608608 ], + [ 6.1594964, 46.2608428 ], + [ 6.1594962, 46.2608427 ], + [ 6.1594954, 46.2608419 ], + [ 6.1594944, 46.260841 ], + [ 6.1594943, 46.2608409 ], + [ 6.1594917, 46.2608385 ], + [ 6.1594912, 46.2608381 ], + [ 6.159489, 46.260836 ], + [ 6.1594866, 46.2608338 ], + [ 6.1594862, 46.2608335 ], + [ 6.159486, 46.2608333 ], + [ 6.1594845, 46.2608319 ], + [ 6.1594844, 46.2608318 ], + [ 6.1594824, 46.26083 ], + [ 6.1594811, 46.2608288 ], + [ 6.159479, 46.2608269 ], + [ 6.1594779, 46.2608259 ], + [ 6.1594771, 46.2608251 ], + [ 6.1594765, 46.2608246 ], + [ 6.1594741, 46.2608223 ], + [ 6.1594412, 46.2607921 ], + [ 6.1594152, 46.2607683 ], + [ 6.1594151, 46.2607682 ], + [ 6.159415, 46.2607681 ], + [ 6.1594128, 46.2607661 ], + [ 6.1594119, 46.2607652 ], + [ 6.1594103, 46.2607638 ], + [ 6.1594103, 46.2607637 ], + [ 6.1594099, 46.2607633 ], + [ 6.1594074, 46.2607611 ], + [ 6.1594072, 46.260761 ], + [ 6.1594052, 46.260759 ], + [ 6.1594033, 46.2607574 ], + [ 6.1594027, 46.2607568 ], + [ 6.159401, 46.2607552 ], + [ 6.1593999, 46.2607542 ], + [ 6.1593997, 46.260754 ], + [ 6.1593995, 46.2607538 ], + [ 6.1593992, 46.2607535 ], + [ 6.1593975, 46.260752 ], + [ 6.1593952, 46.2607499 ], + [ 6.1593947, 46.2607494 ], + [ 6.1593926, 46.2607475 ], + [ 6.159373, 46.2607295 ], + [ 6.1584904, 46.2601408 ], + [ 6.1582301, 46.2600537 ], + [ 6.157834, 46.2597971 ], + [ 6.1566467, 46.2594333 ], + [ 6.155353, 46.2593605 ], + [ 6.1540968, 46.259587 ], + [ 6.1530179, 46.2600875 ], + [ 6.1529565999999996, 46.2601276 ], + [ 6.1521207, 46.2609218 ], + [ 6.1517505, 46.2618711 ], + [ 6.151778, 46.2620568 ], + [ 6.1518126, 46.2628935 ], + [ 6.1518171, 46.2629008 ], + [ 6.151191, 46.2631807 ], + [ 6.1503268, 46.2640465 ], + [ 6.1502799, 46.2641972 ], + [ 6.1500376, 46.26444 ], + [ 6.1497169, 46.2654692 ], + [ 6.1499886, 46.2665052 ], + [ 6.1508112, 46.2673902 ], + [ 6.1520596, 46.2679895 ], + [ 6.1535437, 46.2682119 ], + [ 6.1541457, 46.2681359 ], + [ 6.1544718, 46.2681847 ], + [ 6.1559656, 46.2679963 ], + [ 6.1572417, 46.2674257 ], + [ 6.1573975, 46.2672695 ], + [ 6.1586312, 46.2671138 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-15", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.9539869, 46.7916953 ], + [ 7.9539814, 46.791714 ], + [ 7.9539846, 46.7920558 ], + [ 7.9533978, 46.7923283 ], + [ 7.9529843, 46.7929149 ], + [ 7.9526581, 46.7930513 ], + [ 7.9524889, 46.79316 ], + [ 7.9527951, 46.7936804 ], + [ 7.9534163, 46.7942623 ], + [ 7.9536138, 46.7943693 ], + [ 7.9540523, 46.795024 ], + [ 7.9539227, 46.7951595 ], + [ 7.9538595, 46.7954027 ], + [ 7.9538625, 46.7957175 ], + [ 7.9537335, 46.795925 ], + [ 7.9525632, 46.7968298 ], + [ 7.951786, 46.7977509 ], + [ 7.9514019, 46.7986791 ], + [ 7.9510791, 46.7991753 ], + [ 7.9508475999999995, 46.7996261 ], + [ 7.9508534, 46.7996324 ], + [ 7.9510684, 46.7997657 ], + [ 7.9512094, 46.7998771 ], + [ 7.9512686, 46.7999891 ], + [ 7.9512956, 46.8001578 ], + [ 7.9512895, 46.8002929 ], + [ 7.9513814, 46.8003934 ], + [ 7.9515552, 46.8005045 ], + [ 7.9517942, 46.800587 ], + [ 7.9520753, 46.8006971 ], + [ 7.9522247, 46.8008254 ], + [ 7.9523496, 46.8009593 ], + [ 7.952368, 46.8010775 ], + [ 7.9524125, 46.8012853 ], + [ 7.9524554, 46.801403 ], + [ 7.9525377, 46.8014475 ], + [ 7.9526208, 46.8014918 ], + [ 7.9526786, 46.8015362 ], + [ 7.9527525, 46.8015581 ], + [ 7.9529668000000004, 46.8016239 ], + [ 7.9531486, 46.8017123 ], + [ 7.9533218, 46.801756 ], + [ 7.9534943, 46.8018165 ], + [ 7.9535937, 46.801855 ], + [ 7.9537186, 46.8019891 ], + [ 7.9538694, 46.8021735 ], + [ 7.9540275, 46.8023523 ], + [ 7.9541769, 46.8024747 ], + [ 7.9544486, 46.802551199999996 ], + [ 7.9548037, 46.8026947 ], + [ 7.9549367, 46.8028117 ], + [ 7.9551268, 46.802917 ], + [ 7.9553971, 46.8029261 ], + [ 7.9557818, 46.8029059 ], + [ 7.956127, 46.8029593 ], + [ 7.9563172, 46.8030758 ], + [ 7.9564664, 46.8031703 ], + [ 7.9566137, 46.8031634 ], + [ 7.9569735999999995, 46.8031267 ], + [ 7.9574082, 46.8031061 ], + [ 7.9577519, 46.8030863 ], + [ 7.957924, 46.8031073 ], + [ 7.9579746, 46.8031688 ], + [ 7.9579192, 46.8032875 ], + [ 7.9579784, 46.803394 ], + [ 7.9580692, 46.803472 ], + [ 7.9582018, 46.8035553 ], + [ 7.9583749, 46.8035875 ], + [ 7.9584486, 46.8035925 ], + [ 7.958604, 46.8035688 ], + [ 7.9587594, 46.8035561 ], + [ 7.9589969, 46.8035542 ], + [ 7.9591771, 46.8035639 ], + [ 7.9594146, 46.8035675 ], + [ 7.9596038, 46.8035772 ], + [ 7.9597838, 46.8035644 ], + [ 7.9598982, 46.8035353 ], + [ 7.9600361, 46.8034892 ], + [ 7.9601176, 46.8034434 ], + [ 7.960208, 46.8034877 ], + [ 7.9603155999999995, 46.8035205 ], + [ 7.9604308, 46.8035814 ], + [ 7.960555, 46.8036366 ], + [ 7.9606534, 46.8036472 ], + [ 7.9608754, 46.8036565 ], + [ 7.9610888, 46.803711 ], + [ 7.9612118, 46.8037268 ], + [ 7.961269, 46.8037207 ], + [ 7.961408, 46.8037026 ], + [ 7.9615962, 46.8036898 ], + [ 7.9617611, 46.8037166 ], + [ 7.9618927, 46.8037773 ], + [ 7.9619842, 46.8038384 ], + [ 7.962084, 46.8039164 ], + [ 7.9622155, 46.8039716 ], + [ 7.9624135, 46.8040375 ], + [ 7.9626608, 46.8041254 ], + [ 7.9628341, 46.8041745 ], + [ 7.9630124, 46.8040718 ], + [ 7.9630939, 46.8040317 ], + [ 7.9632002, 46.8040139 ], + [ 7.9633312, 46.8040127 ], + [ 7.9634703, 46.8040115 ], + [ 7.9635686, 46.8040108 ], + [ 7.9636832, 46.8040099 ], + [ 7.9637816, 46.8040259 ], + [ 7.9638563, 46.8040421 ], + [ 7.963971, 46.8040468 ], + [ 7.9640695, 46.8040684 ], + [ 7.9642006, 46.8040842 ], + [ 7.9642906, 46.8040722 ], + [ 7.9643803, 46.8040377 ], + [ 7.9644537, 46.8040089 ], + [ 7.9645848, 46.8040191 ], + [ 7.9647814, 46.804023 ], + [ 7.9649708, 46.8040551 ], + [ 7.9651019, 46.8040653 ], + [ 7.9652004, 46.8040813 ], + [ 7.9652985, 46.8040692 ], + [ 7.9653637, 46.8040405 ], + [ 7.9655114, 46.8040675 ], + [ 7.9656586, 46.8040549 ], + [ 7.9657895, 46.804037 ], + [ 7.9658806, 46.8040643 ], + [ 7.9659875, 46.8041085 ], + [ 7.9660939, 46.804102 ], + [ 7.9662084, 46.8040952 ], + [ 7.9663066, 46.804088899999996 ], + [ 7.9663886, 46.8040937 ], + [ 7.9665206, 46.8041152 ], + [ 7.9666598, 46.804114 ], + [ 7.9667977, 46.8040678 ], + [ 7.9669685, 46.8039481 ], + [ 7.9671056, 46.8038176 ], + [ 7.9672939, 46.803816 ], + [ 7.9673252, 46.8037481 ], + [ 7.9674882, 46.8036736 ], + [ 7.9677012, 46.8036886 ], + [ 7.9678581, 46.8037323 ], + [ 7.9681850999999995, 46.8036846 ], + [ 7.9686023, 46.8036416 ], + [ 7.9689377, 46.8036163 ], + [ 7.9691591, 46.8036425 ], + [ 7.9693652, 46.8037083 ], + [ 7.9695126, 46.8037071 ], + [ 7.9696766, 46.8037281 ], + [ 7.969907, 46.8037599 ], + [ 7.9701691, 46.803769 ], + [ 7.9705143, 46.8038223 ], + [ 7.970702, 46.8037588 ], + [ 7.9708003, 46.8037579 ], + [ 7.9708904, 46.8037628 ], + [ 7.970981, 46.8038127 ], + [ 7.9710399, 46.803891 ], + [ 7.9711909, 46.8040979 ], + [ 7.9713338, 46.8043048 ], + [ 7.9715648, 46.804393 ], + [ 7.9717793, 46.8044755 ], + [ 7.9724836, 46.8044921 ], + [ 7.9729758, 46.8044934 ], + [ 7.9732383, 46.8045476 ], + [ 7.9733456, 46.8045466 ], + [ 7.9734694, 46.8046412 ], + [ 7.9735283, 46.8047251 ], + [ 7.97353, 46.8048095 ], + [ 7.9734852, 46.80508 ], + [ 7.9733681999999995, 46.8054243 ], + [ 7.9732172, 46.8057182 ], + [ 7.9731062, 46.8059218 ], + [ 7.9730511, 46.8060629 ], + [ 7.9730942, 46.8061977 ], + [ 7.9732123, 46.8063767 ], + [ 7.9733617, 46.8064937 ], + [ 7.9735669, 46.8065425 ], + [ 7.9738461, 46.8065402 ], + [ 7.9739935, 46.8065502 ], + [ 7.9741671, 46.806633 ], + [ 7.9743492, 46.8067384 ], + [ 7.9745308999999995, 46.8068214 ], + [ 7.9746477, 46.8069497 ], + [ 7.9748158, 46.8072183 ], + [ 7.9750114, 46.807622 ], + [ 7.9752102, 46.8077665 ], + [ 7.9755069, 46.8078766 ], + [ 7.9757298, 46.807976 ], + [ 7.9760932, 46.8081249 ], + [ 7.9762093, 46.8081801 ], + [ 7.9762838, 46.8082694 ], + [ 7.9763771, 46.8084207 ], + [ 7.9765121, 46.8086615 ], + [ 7.9766124, 46.8087788 ], + [ 7.976712, 46.8088341 ], + [ 7.9768761999999995, 46.8088778 ], + [ 7.9769994, 46.8089105 ], + [ 7.9770825, 46.8089548 ], + [ 7.9771564, 46.8089655 ], + [ 7.9772546, 46.8089646 ], + [ 7.9773624, 46.8090144 ], + [ 7.9784138, 46.8091798 ], + [ 7.9785461, 46.8092236 ], + [ 7.9787843, 46.8092947 ], + [ 7.9791045, 46.8092919 ], + [ 7.9792931, 46.8093184 ], + [ 7.9794256, 46.8093792 ], + [ 7.979557, 46.8094175 ], + [ 7.9797209, 46.8094329 ], + [ 7.9798516, 46.8093982 ], + [ 7.9800871, 46.8092835 ], + [ 7.9805277, 46.8091278 ], + [ 7.9807732, 46.8091144 ], + [ 7.98125, 46.8092116 ], + [ 7.981587, 46.8092594 ], + [ 7.9818676, 46.8093864 ], + [ 7.9821808999999995, 46.8095243 ], + [ 7.9825037, 46.8097017 ], + [ 7.9828348, 46.8098902 ], + [ 7.9834051, 46.8101666 ], + [ 7.9836852, 46.8102542 ], + [ 7.9838998, 46.8103367 ], + [ 7.9841211, 46.8103517 ], + [ 7.9845302, 46.8103201 ], + [ 7.985013, 46.8102877 ], + [ 7.9852353, 46.8103307 ], + [ 7.9853843, 46.8104027 ], + [ 7.9855088, 46.810486 ], + [ 7.985634, 46.8106426 ], + [ 7.9857931, 46.8108211 ], + [ 7.9859327, 46.810865 ], + [ 7.9860966, 46.8108748 ], + [ 7.9861698, 46.8108236 ], + [ 7.9862253, 46.8107274 ], + [ 7.9862234, 46.8106149 ], + [ 7.9861802, 46.8104801 ], + [ 7.9862041, 46.8104124 ], + [ 7.9862928, 46.8103611 ], + [ 7.9864151, 46.8103037 ], + [ 7.986579, 46.8103191 ], + [ 7.9867605, 46.8103683 ], + [ 7.9870312, 46.810416599999996 ], + [ 7.9873517, 46.8104419 ], + [ 7.9877038, 46.8104388 ], + [ 7.9880554, 46.8103907 ], + [ 7.988121, 46.8104014 ], + [ 7.9881969, 46.8105358 ], + [ 7.9882824, 46.8107264 ], + [ 7.9883823, 46.8108044 ], + [ 7.9886278, 46.8107966 ], + [ 7.9888896, 46.8107662 ], + [ 7.9890695, 46.8107422 ], + [ 7.9892007, 46.8107635 ], + [ 7.9892103, 46.8108196 ], + [ 7.9892447, 46.8109038 ], + [ 7.9892798, 46.8110498 ], + [ 7.9893391, 46.8111618 ], + [ 7.9894212, 46.8111836 ], + [ 7.9895769, 46.811188 ], + [ 7.9897975, 46.8111409 ], + [ 7.9900832, 46.8110541 ], + [ 7.9904171999999996, 46.8109611 ], + [ 7.9905829, 46.8110666 ], + [ 7.9906988, 46.8111106 ], + [ 7.9908134, 46.8111096 ], + [ 7.9909184, 46.8110468 ], + [ 7.990926, 46.8109904 ], + [ 7.990908, 46.8109118 ], + [ 7.9908897, 46.8107994 ], + [ 7.9908888, 46.8107206 ], + [ 7.9909445, 46.8106413 ], + [ 7.9910504, 46.8105842 ], + [ 7.9912211, 46.8105433 ], + [ 7.9913926, 46.8104912 ], + [ 7.9915801, 46.8104107 ], + [ 7.9917091, 46.8102971 ], + [ 7.9917888999999995, 46.8101726 ], + [ 7.9918197, 46.8100653 ], + [ 7.991801, 46.8099135 ], + [ 7.991855, 46.8097555 ], + [ 7.9919934, 46.8096698 ], + [ 7.9921565999999995, 46.8096178 ], + [ 7.9923531, 46.809616 ], + [ 7.992575, 46.8096872 ], + [ 7.9927729, 46.8097418 ], + [ 7.9929133, 46.80978 ], + [ 7.9930607, 46.8097788 ], + [ 7.9932241, 46.8097491 ], + [ 7.9933371, 46.8096693 ], + [ 7.9933601, 46.8095904 ], + [ 7.9933267, 46.8095344 ], + [ 7.993227, 46.8094734 ], + [ 7.9931597, 46.8093726 ], + [ 7.9930674, 46.8092384 ], + [ 7.9930328, 46.8091374 ], + [ 7.9930471999999995, 46.8090304 ], + [ 7.9931531, 46.8089732 ], + [ 7.9932921, 46.8089551 ], + [ 7.9936516, 46.8088787 ], + [ 7.9938151, 46.8088491 ], + [ 7.9938958, 46.8088091 ], + [ 7.9939931, 46.8087182 ], + [ 7.9940079, 46.8086449 ], + [ 7.9939745, 46.8085832 ], + [ 7.993948, 46.8084765 ], + [ 7.9939791, 46.8083919 ], + [ 7.9940266, 46.8083183 ], + [ 7.9941391, 46.8081879 ], + [ 7.9943081, 46.8079838 ], + [ 7.9945008, 46.8077683 ], + [ 7.9947517999999995, 46.8075691 ], + [ 7.9949692, 46.8073702 ], + [ 7.9951565, 46.807273 ], + [ 7.9953267, 46.8071814 ], + [ 7.9955126, 46.8070334 ], + [ 7.9956005999999995, 46.8069033 ], + [ 7.9956981, 46.8068293 ], + [ 7.9958112, 46.8067607 ], + [ 7.9959732, 46.8066749 ], + [ 7.9961933, 46.8065772 ], + [ 7.9963554, 46.806497 ], + [ 7.9964526, 46.8063949 ], + [ 7.9964832, 46.8062652 ], + [ 7.9965538, 46.8061295 ], + [ 7.9966677, 46.8060497 ], + [ 7.9968298, 46.8059695 ], + [ 7.997075, 46.8059279 ], + [ 7.997205, 46.8058368 ], + [ 7.9975259, 46.8054343 ], + [ 7.9975898999999995, 46.8053663 ], + [ 7.9977369, 46.8053312 ], + [ 7.997843, 46.805291 ], + [ 7.997915, 46.8052115 ], + [ 7.9979372, 46.805065 ], + [ 7.9978844, 46.8048685 ], + [ 7.9978329, 46.804717 ], + [ 7.9978309, 46.8046044 ], + [ 7.9978959, 46.8045532 ], + [ 7.9980173, 46.8044958 ], + [ 7.9981557, 46.8044215 ], + [ 7.9982849, 46.8043247 ], + [ 7.9983155, 46.804195 ], + [ 7.9983052, 46.8040713 ], + [ 7.9982548, 46.8040267 ], + [ 7.9980256, 46.8040287 ], + [ 7.9978785, 46.8040581 ], + [ 7.9977146, 46.8040484 ], + [ 7.9975012, 46.8039939 ], + [ 7.9973918, 46.803871 ], + [ 7.9973571, 46.8037589 ], + [ 7.9973643, 46.8036687 ], + [ 7.9974281, 46.8035837 ], + [ 7.9975737, 46.8034868 ], + [ 7.9977365, 46.8033954 ], + [ 7.9978163, 46.8032765 ], + [ 7.997847, 46.803158 ], + [ 7.9978773, 46.8030001 ], + [ 7.9979572, 46.8028869 ], + [ 7.998062, 46.8028129 ], + [ 7.9981597, 46.8027556 ], + [ 7.9982236, 46.8026819 ], + [ 7.9982637, 46.8025971 ], + [ 7.9982783, 46.8025069 ], + [ 7.9981862, 46.8023952 ], + [ 7.9980698, 46.802295 ], + [ 7.9979619, 46.8022396 ], + [ 7.9979039, 46.8021726 ], + [ 7.9979187, 46.8020938 ], + [ 7.9979591, 46.8020483 ], + [ 7.9981389, 46.802013 ], + [ 7.9983016, 46.801989 ], + [ 7.9984569, 46.8019652 ], + [ 7.9985548, 46.8019362 ], + [ 7.9986113, 46.8018569 ], + [ 7.998577, 46.801784 ], + [ 7.998511, 46.8017396 ], + [ 7.9984196, 46.8016841 ], + [ 7.9982708, 46.8016236 ], + [ 7.9981556, 46.8015682 ], + [ 7.998102, 46.8012986 ], + [ 7.9981235999999996, 46.8011689 ], + [ 7.9981801, 46.8010952 ], + [ 7.9982698, 46.8010608 ], + [ 7.9983352, 46.8010489 ], + [ 7.9983925, 46.8010484 ], + [ 7.9984581, 46.801059 ], + [ 7.9985646, 46.8010638 ], + [ 7.9986299, 46.8010464 ], + [ 7.9987113999999995, 46.8010118 ], + [ 7.9987426, 46.8009384 ], + [ 7.9987736, 46.800848 ], + [ 7.9987398, 46.8007471 ], + [ 7.9986223, 46.8006243 ], + [ 7.9985303, 46.8005238 ], + [ 7.998456, 46.8004625 ], + [ 7.9984375, 46.8003389 ], + [ 7.9984848, 46.8002372 ], + [ 7.9985333999999995, 46.8001861 ], + [ 7.9985823, 46.8001688 ], + [ 7.9986643, 46.8001794 ], + [ 7.9987709, 46.8002009 ], + [ 7.998853, 46.8002171 ], + [ 7.998927, 46.8002446 ], + [ 7.9990345, 46.8002718 ], + [ 7.9990997, 46.800243 ], + [ 7.9991555, 46.8001806 ], + [ 7.999162, 46.8000905 ], + [ 7.999202, 46.8000058 ], + [ 7.9992652, 46.7998646 ], + [ 7.9993534, 46.7997569 ], + [ 7.9993843, 46.7996609 ], + [ 7.9994069, 46.7995538 ], + [ 7.9993967, 46.7994412 ], + [ 7.9993459, 46.7993517 ], + [ 7.9993109, 46.7992169 ], + [ 7.9992845, 46.7991159 ], + [ 7.9992917, 46.7990257 ], + [ 7.9993558, 46.7989689 ], + [ 7.9994613999999995, 46.7988949 ], + [ 7.9995663, 46.7988207 ], + [ 7.9996718, 46.7987298 ], + [ 7.9997519, 46.798639 ], + [ 7.999791, 46.798543 ], + [ 7.9998051, 46.7984078 ], + [ 7.9998605, 46.7982948 ], + [ 7.9999399, 46.7981365 ], + [ 8.0000607, 46.7980229 ], + [ 8.0001747, 46.7979713 ], + [ 8.0002964, 46.7979364 ], + [ 8.0004435, 46.7979182 ], + [ 8.0005492, 46.7978442 ], + [ 8.0007266, 46.7976624 ], + [ 8.0009439, 46.7974636 ], + [ 8.0011363, 46.7972255 ], + [ 8.0012076, 46.7970786 ], + [ 8.0012052, 46.7969267 ], + [ 8.001211, 46.7967803 ], + [ 8.0012502, 46.7966899 ], + [ 8.0013222, 46.7966049 ], + [ 8.0014607, 46.7965361 ], + [ 8.0016146, 46.7964616 ], + [ 8.0016464, 46.7963713 ], + [ 8.0017343, 46.7962411 ], + [ 8.0019188, 46.7960368 ], + [ 8.0019428, 46.7959859 ], + [ 8.0018759, 46.7959247 ], + [ 8.0018087, 46.7958408 ], + [ 8.0017422, 46.7957457 ], + [ 8.0017569, 46.7956668 ], + [ 8.0018056, 46.7956213 ], + [ 8.0018124, 46.795565 ], + [ 8.0017953, 46.7955033 ], + [ 8.0018103, 46.7954468 ], + [ 8.0018671, 46.7953957 ], + [ 8.0019803, 46.7953441 ], + [ 8.002086, 46.7952756 ], + [ 8.0021265, 46.7952302 ], + [ 8.0021251, 46.7951796 ], + [ 8.0020836, 46.7951236 ], + [ 8.0020411, 46.7950509 ], + [ 8.0020733, 46.7949944 ], + [ 8.0021456, 46.794943 ], + [ 8.0022677, 46.7948801 ], + [ 8.0023072, 46.7948178 ], + [ 8.0023558, 46.7947723 ], + [ 8.0024538, 46.794749 ], + [ 8.0025343, 46.794692 ], + [ 8.002615, 46.7945787 ], + [ 8.0026541, 46.7944883 ], + [ 8.0026365, 46.7944434 ], + [ 8.0026114, 46.7943931 ], + [ 8.0026189, 46.7943311 ], + [ 8.0026424, 46.7943027 ], + [ 8.0026993, 46.7942684 ], + [ 8.0028055, 46.7942506 ], + [ 8.002887, 46.7942105 ], + [ 8.0029101, 46.7941541 ], + [ 8.0028932, 46.7940979 ], + [ 8.0029164, 46.7940471 ], + [ 8.0029487, 46.7940074 ], + [ 8.0030221, 46.7939787 ], + [ 8.0031447, 46.7939606 ], + [ 8.0032512, 46.793965299999996 ], + [ 8.0033493, 46.7939588 ], + [ 8.0034471, 46.7939185 ], + [ 8.0035286, 46.7938841 ], + [ 8.0036187, 46.7938832 ], + [ 8.0037004, 46.7938713 ], + [ 8.0037401, 46.793826 ], + [ 8.0038462, 46.7938026 ], + [ 8.004011, 46.7938235 ], + [ 8.0040607, 46.7938794 ], + [ 8.0041112, 46.7939296 ], + [ 8.0042012, 46.7939288 ], + [ 8.0044139, 46.7939157 ], + [ 8.0046187, 46.7939251 ], + [ 8.0047253, 46.7939466 ], + [ 8.0048656, 46.7939736 ], + [ 8.0050131, 46.7939836 ], + [ 8.0051035, 46.7940221 ], + [ 8.0051784, 46.7940609 ], + [ 8.0052529, 46.7941333 ], + [ 8.00532, 46.7942116 ], + [ 8.00542, 46.7943008 ], + [ 8.0055197, 46.7943673 ], + [ 8.0056109, 46.7944734 ], + [ 8.0057038, 46.7945852 ], + [ 8.0057945, 46.7946464 ], + [ 8.0058777, 46.7946963 ], + [ 8.0059437, 46.7947462 ], + [ 8.006034, 46.7947736 ], + [ 8.0061747, 46.7948398 ], + [ 8.0062744, 46.7948953 ], + [ 8.0063401, 46.7949172 ], + [ 8.0064712, 46.7949273 ], + [ 8.0065612, 46.7949265 ], + [ 8.0066433, 46.7949427 ], + [ 8.0067837, 46.7949865 ], + [ 8.0070397, 46.7951193 ], + [ 8.0072965, 46.795246399999996 ], + [ 8.0074858, 46.7953404 ], + [ 8.0075769, 46.7953677 ], + [ 8.007659, 46.7953839 ], + [ 8.0077247, 46.7954115 ], + [ 8.0078081, 46.7954727 ], + [ 8.0079311, 46.795494 ], + [ 8.0079886, 46.7955104 ], + [ 8.0080632, 46.795521 ], + [ 8.0081372, 46.7955485 ], + [ 8.0082518, 46.7955475 ], + [ 8.0083581, 46.7955409 ], + [ 8.0084237, 46.7955515 ], + [ 8.0084823, 46.7955905 ], + [ 8.0085563, 46.7956292 ], + [ 8.0086222, 46.7956624 ], + [ 8.008737, 46.7956783 ], + [ 8.0088609, 46.7957052 ], + [ 8.0089839, 46.7957267 ], + [ 8.0090903, 46.7957257 ], + [ 8.0091724, 46.7957475 ], + [ 8.0092882, 46.7957803 ], + [ 8.0094522, 46.795806999999996 ], + [ 8.0095751, 46.7958171 ], + [ 8.0097316, 46.795827 ], + [ 8.0098789, 46.79582 ], + [ 8.0100835, 46.7958126 ], + [ 8.010583, 46.7958307 ], + [ 8.010609, 46.795881 ], + [ 8.0106667, 46.7959256 ], + [ 8.0107568, 46.7959247 ], + [ 8.0108222, 46.7959186 ], + [ 8.0109446, 46.7958837 ], + [ 8.0110503, 46.7958153 ], + [ 8.0111482, 46.795775 ], + [ 8.0112466, 46.795791 ], + [ 8.0113286, 46.7958072 ], + [ 8.0114282, 46.7958626 ], + [ 8.0115187, 46.7959011 ], + [ 8.0116414, 46.7958888 ], + [ 8.0117166, 46.7959612 ], + [ 8.011831, 46.7959378 ], + [ 8.0118975, 46.7960272 ], + [ 8.0119481, 46.7960887 ], + [ 8.0120238, 46.7962061 ], + [ 8.0120498, 46.7962678 ], + [ 8.0121403, 46.7963064 ], + [ 8.0122716, 46.7963335 ], + [ 8.0124037, 46.7963603 ], + [ 8.0125515, 46.796404 ], + [ 8.0126494, 46.796375 ], + [ 8.0127312, 46.7963631 ], + [ 8.0127724, 46.7963908 ], + [ 8.0128229, 46.7964466 ], + [ 8.0129215, 46.796474 ], + [ 8.0130769, 46.7964669 ], + [ 8.0131752, 46.7964717 ], + [ 8.0132747, 46.7965102 ], + [ 8.0133738, 46.7965881 ], + [ 8.013506, 46.7966262 ], + [ 8.0136782, 46.7966529 ], + [ 8.0139168, 46.7966902 ], + [ 8.0142364, 46.7967211 ], + [ 8.0144588, 46.7967641 ], + [ 8.0147794, 46.7968176 ], + [ 8.0150757, 46.796888 ], + [ 8.0154055, 46.7970202 ], + [ 8.0156446, 46.7971025 ], + [ 8.0158166, 46.7971121 ], + [ 8.0161042, 46.7971377 ], + [ 8.0164075, 46.7971744 ], + [ 8.0166952, 46.7972055 ], + [ 8.0170554, 46.7971967 ], + [ 8.0175711, 46.7971921 ], + [ 8.0181454, 46.7972321 ], + [ 8.0186624, 46.7972668 ], + [ 8.0192202, 46.7972955 ], + [ 8.0192595, 46.797216399999996 ], + [ 8.0192331, 46.797121 ], + [ 8.019147, 46.7968854 ], + [ 8.0189766, 46.796493 ], + [ 8.0188051, 46.796078 ], + [ 8.0188207, 46.7960047 ], + [ 8.0188415, 46.795802 ], + [ 8.0188124, 46.7955377 ], + [ 8.0188091, 46.7953859 ], + [ 8.0188657, 46.7953177 ], + [ 8.0189704, 46.7952324 ], + [ 8.0190676, 46.7951303 ], + [ 8.0191298, 46.7949778 ], + [ 8.019094, 46.7947698 ], + [ 8.0192396, 46.7946841 ], + [ 8.0191884, 46.7945663 ], + [ 8.0193105, 46.7945091 ], + [ 8.0191683, 46.7943753 ], + [ 8.0192825, 46.7943348 ], + [ 8.0192069, 46.7942399 ], + [ 8.0191242, 46.7941617 ], + [ 8.0191717, 46.7940825 ], + [ 8.0190628, 46.7939259 ], + [ 8.0190596, 46.7937854 ], + [ 8.0191737, 46.7937336 ], + [ 8.0193108, 46.7936198 ], + [ 8.0194317, 46.793523 ], + [ 8.019684699999999, 46.7934533 ], + [ 8.0199221, 46.7934511 ], + [ 8.0201674, 46.7934208 ], + [ 8.0203387, 46.793363 ], + [ 8.0204444, 46.7933002 ], + [ 8.0205309, 46.7931192 ], + [ 8.0206654, 46.7928367 ], + [ 8.0207637, 46.7923912 ], + [ 8.020878, 46.792362 ], + [ 8.0209252, 46.7922603 ], + [ 8.0208591, 46.7922103 ], + [ 8.0209635, 46.7920967 ], + [ 8.021094, 46.7920505 ], + [ 8.0210595, 46.7919665 ], + [ 8.0211413, 46.7919544 ], + [ 8.0212554, 46.7919085 ], + [ 8.0212864, 46.7918293 ], + [ 8.0212517, 46.7917228 ], + [ 8.0211437, 46.7916505 ], + [ 8.0210371, 46.7916346 ], + [ 8.0209535, 46.7915454 ], + [ 8.0208938, 46.7913995 ], + [ 8.0208445, 46.7909328 ], + [ 8.0207731, 46.7906127 ], + [ 8.0208216, 46.790556 ], + [ 8.0209519, 46.7904929 ], + [ 8.0210583, 46.7904863 ], + [ 8.0212389, 46.7905411 ], + [ 8.0213385, 46.7905907 ], + [ 8.0213874, 46.7905679 ], + [ 8.0215163, 46.7904542 ], + [ 8.021678, 46.7903457 ], + [ 8.0217921, 46.7902997 ], + [ 8.02189, 46.7902651 ], + [ 8.0219374, 46.7901858 ], + [ 8.0219439, 46.7901013 ], + [ 8.0218776, 46.7900232 ], + [ 8.0219411, 46.7899157 ], + [ 8.0219475, 46.7898312 ], + [ 8.0219287, 46.7896851 ], + [ 8.0219598, 46.7896059 ], + [ 8.0221479, 46.7895874 ], + [ 8.0207884, 46.7891438 ], + [ 8.0206835, 46.7890562 ], + [ 8.0201997, 46.7889047 ], + [ 8.020196, 46.7885629 ], + [ 8.0184884, 46.7881038 ], + [ 8.0175698, 46.7879285 ], + [ 8.0173762, 46.7881993 ], + [ 8.0165495, 46.7880416 ], + [ 8.0160613, 46.7877112 ], + [ 8.0158627, 46.7875053 ], + [ 8.0154939, 46.7873093 ], + [ 8.0149657, 46.7869072 ], + [ 8.0146757, 46.7867287 ], + [ 8.0143475, 46.7866584 ], + [ 8.0137561, 46.786463499999996 ], + [ 8.0128381, 46.7863511 ], + [ 8.0124438, 46.7862182 ], + [ 8.0106945, 46.7855073 ], + [ 8.0102347, 46.7853747 ], + [ 8.0093525, 46.7849293 ], + [ 8.0088923, 46.7847517 ], + [ 8.0078418, 46.7844871 ], + [ 8.0069461, 46.7839968 ], + [ 8.0066574, 46.7839352 ], + [ 8.0056712, 46.7835533 ], + [ 8.0053674, 46.7833119 ], + [ 8.0049472, 46.7831971 ], + [ 8.0040298, 46.7831386 ], + [ 8.0035968, 46.7830508 ], + [ 8.0026798, 46.7830284 ], + [ 8.0020634, 46.7829414 ], + [ 8.0006876, 46.7828583 ], + [ 8.0002543, 46.7827524 ], + [ 7.9989165, 46.7825521 ], + [ 7.9986144, 46.7824636 ], + [ 7.9982195, 46.7822677 ], + [ 7.9979306, 46.7821971 ], + [ 7.9969481, 46.7821569 ], + [ 7.9965139, 46.7819612 ], + [ 7.9960544, 46.7818464 ], + [ 7.9956333, 46.7816506 ], + [ 7.9949344, 46.7811772 ], + [ 7.9948666, 46.7809527 ], + [ 7.9949241, 46.7801878 ], + [ 7.9948543, 46.7797653 ], + [ 7.9945892, 46.7794517 ], + [ 7.9944952, 46.7792273 ], + [ 7.9939277, 46.7787983 ], + [ 7.9934026, 46.7786659 ], + [ 7.9926165, 46.7786247 ], + [ 7.9911688, 46.7779121 ], + [ 7.9898910999999995, 46.7771806 ], + [ 7.9889934, 46.7764653 ], + [ 7.9875857, 46.7758154 ], + [ 7.9864031, 46.7753982 ], + [ 7.9852867, 46.7750618 ], + [ 7.9845917, 46.7749571 ], + [ 7.9845022, 46.7750121 ], + [ 7.9832339999999995, 46.7739012 ], + [ 7.9828833, 46.7736165 ], + [ 7.9824659, 46.7732883 ], + [ 7.9820846, 46.7730495 ], + [ 7.9820283, 46.7729043 ], + [ 7.9819486, 46.7727822 ], + [ 7.9783786, 46.7718416 ], + [ 7.9772435999999995, 46.770781 ], + [ 7.9767168999999996, 46.7702357 ], + [ 7.9762518, 46.7697903 ], + [ 7.9758765, 46.7694949 ], + [ 7.9755104, 46.7692162 ], + [ 7.9751557, 46.769005 ], + [ 7.9747813, 46.7688843 ], + [ 7.9743089, 46.7687772 ], + [ 7.9737282, 46.7686388 ], + [ 7.9732539, 46.7684979 ], + [ 7.9728878, 46.7683883 ], + [ 7.9725798999999995, 46.7682773 ], + [ 7.9723428, 46.7681306 ], + [ 7.9721271, 46.767916 ], + [ 7.9719748, 46.7676605 ], + [ 7.9718817, 46.7674317 ], + [ 7.9718541, 46.7672069 ], + [ 7.9718102, 46.7669883 ], + [ 7.9716149, 46.7668464 ], + [ 7.9712529, 46.7666465 ], + [ 7.9707919, 46.7664433 ], + [ 7.9702714, 46.7661907 ], + [ 7.9701692, 46.7661143 ], + [ 7.9702838, 46.7659482 ], + [ 7.9703042, 46.7656941 ], + [ 7.9703093, 46.7654686 ], + [ 7.9701796, 46.765342 ], + [ 7.9703084, 46.7652939 ], + [ 7.9705037999999995, 46.7652725 ], + [ 7.9702869, 46.7651819 ], + [ 7.970107, 46.7650338 ], + [ 7.970059, 46.7648942 ], + [ 7.9701368, 46.7648134 ], + [ 7.9703289, 46.7648765 ], + [ 7.9705365, 46.7649448 ], + [ 7.9707308, 46.7649008 ], + [ 7.9706337, 46.7647566 ], + [ 7.9704874, 46.764608 ], + [ 7.9704324, 46.7645021 ], + [ 7.9705693, 46.7644538 ], + [ 7.9708054, 46.7644145 ], + [ 7.9707594, 46.7643141 ], + [ 7.9705591, 46.7642399 ], + [ 7.9704528, 46.7640847 ], + [ 7.970461, 46.7639154 ], + [ 7.9704272, 46.7637303 ], + [ 7.9700398, 46.7636888 ], + [ 7.9699641, 46.7634821 ], + [ 7.9698548, 46.7632593 ], + [ 7.9696913, 46.7631054 ], + [ 7.9695645, 46.7628605 ], + [ 7.9693631, 46.7626004 ], + [ 7.9690973, 46.7623645 ], + [ 7.9688448, 46.762224 ], + [ 7.9685811, 46.7620385 ], + [ 7.9684206, 46.761941 ], + [ 7.9681916, 46.7617773 ], + [ 7.9679453, 46.7616085 ], + [ 7.967796, 46.7615726 ], + [ 7.9677122, 46.7613717 ], + [ 7.9675557999999995, 46.7611895 ], + [ 7.9674333, 46.7610402 ], + [ 7.9675396, 46.7608687 ], + [ 7.9674088, 46.7603815 ], + [ 7.9672587, 46.7598329 ], + [ 7.9672065, 46.7596032 ], + [ 7.9673344, 46.7595437 ], + [ 7.9675185, 46.7594605 ], + [ 7.9673446, 46.7594195 ], + [ 7.9672701, 46.7592466 ], + [ 7.9670871, 46.759189 ], + [ 7.9669111, 46.7590974 ], + [ 7.9667804, 46.7589483 ], + [ 7.9665484, 46.7587284 ], + [ 7.9666198999999995, 46.7586873 ], + [ 7.9668153, 46.7586658 ], + [ 7.9667857, 46.758565 ], + [ 7.9662653, 46.7583069 ], + [ 7.9662276, 46.7582176 ], + [ 7.965977, 46.7581109 ], + [ 7.9658666, 46.7580289 ], + [ 7.9658789, 46.7579554 ], + [ 7.965974, 46.7578856 ], + [ 7.9661653, 46.7577908 ], + [ 7.9659945, 46.7576428 ], + [ 7.9659118, 46.7574644 ], + [ 7.9658659, 46.7572007 ], + [ 7.9659334, 46.7570752 ], + [ 7.9662278, 46.7570682 ], + [ 7.9665375, 46.7570326 ], + [ 7.9664088, 46.756923 ], + [ 7.9661409, 46.7567941 ], + [ 7.965869, 46.7566033 ], + [ 7.9658027, 46.7564246 ], + [ 7.9657885, 46.7561432 ], + [ 7.9657956, 46.755788 ], + [ 7.9657231, 46.7554798 ], + [ 7.9655781999999995, 46.7552128 ], + [ 7.9654953, 46.7550232 ], + [ 7.9654597, 46.75481 ], + [ 7.9653156, 46.7545428 ], + [ 7.9650928, 46.7543509 ], + [ 7.9649803, 46.7542183 ], + [ 7.965008, 46.7539585 ], + [ 7.9649723, 46.7537396 ], + [ 7.9649622, 46.753368 ], + [ 7.9649061, 46.753065 ], + [ 7.9646783, 46.7527717 ], + [ 7.9644492, 46.7526081 ], + [ 7.9646588, 46.7525355 ], + [ 7.9649204000000005, 46.7525237 ], + [ 7.9653059, 46.7525427 ], + [ 7.9656126, 46.75262 ], + [ 7.9657772, 46.752633 ], + [ 7.965856, 46.7525748 ], + [ 7.9657915, 46.7524242 ], + [ 7.9655964, 46.7521302 ], + [ 7.9654123, 46.7518753 ], + [ 7.9653552, 46.7517189 ], + [ 7.9654738, 46.7516316 ], + [ 7.9653542, 46.7515329 ], + [ 7.9651814, 46.7515202 ], + [ 7.9649781, 46.7515532 ], + [ 7.9647328, 46.7515646 ], + [ 7.9645518, 46.7515463 ], + [ 7.9644015, 46.7514878 ], + [ 7.964243, 46.7514241 ], + [ 7.9640715, 46.751445 ], + [ 7.9638537, 46.7515065 ], + [ 7.9636645999999995, 46.7514941 ], + [ 7.9634181, 46.7514717 ], + [ 7.9630932, 46.7513667 ], + [ 7.9629542, 46.7512066 ], + [ 7.9628806999999995, 46.7510505 ], + [ 7.9626967, 46.7509704 ], + [ 7.9624206, 46.7508417 ], + [ 7.9622622, 46.7507891 ], + [ 7.9621212, 46.7507586 ], + [ 7.9619105999999995, 46.7508086 ], + [ 7.9617011, 46.7508756 ], + [ 7.9614721, 46.750881 ], + [ 7.9612258, 46.7508756 ], + [ 7.9610397, 46.7509194 ], + [ 7.9607627, 46.7509485 ], + [ 7.9604253, 46.7509058 ], + [ 7.9599785999999995, 46.7508149 ], + [ 7.9596975, 46.7507708 ], + [ 7.9595279, 46.7508198 ], + [ 7.9594429, 46.750912 ], + [ 7.9594255, 46.7510589 ], + [ 7.9594029, 46.7512679 ], + [ 7.9593641, 46.751483 ], + [ 7.9591217, 46.751545 ], + [ 7.958907, 46.751674 ], + [ 7.9587506999999995, 46.7516608 ], + [ 7.9585391, 46.751525 ], + [ 7.9582571, 46.7512893 ], + [ 7.9579996, 46.7510531 ], + [ 7.957739, 46.7509185 ], + [ 7.9574292, 46.7507679 ], + [ 7.9571737, 46.7505712 ], + [ 7.957047, 46.7504953 ], + [ 7.9567925, 46.75049 ], + [ 7.9565401, 46.7501804 ], + [ 7.9563266, 46.7500107 ], + [ 7.9561253, 46.7499197 ], + [ 7.9558852, 46.749869 ], + [ 7.9554659999999995, 46.7498282 ], + [ 7.9551002, 46.7497298 ], + [ 7.9549805, 46.7496142 ], + [ 7.9550981, 46.7495157 ], + [ 7.955037, 46.7492804 ], + [ 7.9549134, 46.749103 ], + [ 7.9547346, 46.7489607 ], + [ 7.9546109, 46.7487777 ], + [ 7.9543248, 46.748621 ], + [ 7.9539855, 46.7485558 ], + [ 7.9536472, 46.7485018 ], + [ 7.9534386999999995, 46.7484278 ], + [ 7.9533457, 46.7483681 ], + [ 7.9534081, 46.7482989 ], + [ 7.9534787, 46.748241 ], + [ 7.9534745000000004, 46.7481509 ], + [ 7.95367, 46.7479773 ], + [ 7.9535975, 46.7478325 ], + [ 7.9536076, 46.747697 ], + [ 7.9536671, 46.7475829 ], + [ 7.9538481, 46.7474378 ], + [ 7.9540372999999995, 46.7472925 ], + [ 7.9541161, 46.7470596 ], + [ 7.9543288, 46.7468967 ], + [ 7.9545751, 46.7470713 ], + [ 7.9546741999999995, 46.7470859 ], + [ 7.9547785, 46.747044 ], + [ 7.9548153, 46.7469586 ], + [ 7.9549102, 46.7468831 ], + [ 7.9550902, 46.7468788 ], + [ 7.9552465, 46.746892 ], + [ 7.9555749, 46.7465913 ], + [ 7.9551057, 46.7463657 ], + [ 7.9549116, 46.7462576 ], + [ 7.9547654, 46.7461089 ], + [ 7.9546287, 46.7458305 ], + [ 7.9544357, 46.7454067 ], + [ 7.9542172, 46.7449667 ], + [ 7.9540702, 46.7446434 ], + [ 7.9539394, 46.7444887 ], + [ 7.9537371, 46.7443695 ], + [ 7.9534939, 46.7442569 ], + [ 7.9532537, 46.7442005 ], + [ 7.9530065, 46.7441782 ], + [ 7.9528685, 46.7441983 ], + [ 7.9527315, 46.7442466 ], + [ 7.9525208, 46.7442797 ], + [ 7.9522725, 46.7442293 ], + [ 7.9520447, 46.7440994 ], + [ 7.9517443, 46.7438135 ], + [ 7.951204, 46.743336 ], + [ 7.9509995, 46.7431605 ], + [ 7.9506778, 46.742954 ], + [ 7.9506391, 46.7428365 ], + [ 7.9505942, 46.7425953 ], + [ 7.9505811, 46.7421618 ], + [ 7.950474, 46.741984 ], + [ 7.9503145, 46.7418976 ], + [ 7.9500928, 46.7418972 ], + [ 7.9496676, 46.7419015 ], + [ 7.949082, 46.7419886 ], + [ 7.9485799, 46.7420905 ], + [ 7.9484636, 46.7420651 ], + [ 7.9481467, 46.7419372 ], + [ 7.947977, 46.7419863 ], + [ 7.9478432, 46.7421078 ], + [ 7.9476274, 46.7422144 ], + [ 7.9473667, 46.7422261 ], + [ 7.9471256, 46.7421642 ], + [ 7.9468833, 46.7420572 ], + [ 7.9466669, 46.7418256 ], + [ 7.9463942, 46.7416178 ], + [ 7.9459864, 46.7414809 ], + [ 7.9455307, 46.7413733 ], + [ 7.9453488, 46.7413381 ], + [ 7.9452025, 46.7413528 ], + [ 7.945131, 46.7413941 ], + [ 7.9450359, 46.7414638 ], + [ 7.9449081, 46.7415232 ], + [ 7.9447467, 46.7415833 ], + [ 7.9445515, 46.7416104 ], + [ 7.9444491, 46.7416861 ], + [ 7.9441622, 46.7415237 ], + [ 7.9437218, 46.7413933 ], + [ 7.943227, 46.741309 ], + [ 7.9431811, 46.7412144 ], + [ 7.943265, 46.7410885 ], + [ 7.9431414, 46.7409054 ], + [ 7.9429935, 46.7407398 ], + [ 7.9428136, 46.7405694 ], + [ 7.9427913, 46.7404572 ], + [ 7.9428742, 46.7403144 ], + [ 7.9428947, 46.7402294 ], + [ 7.9429826, 46.7401879 ], + [ 7.9430817, 46.7402025 ], + [ 7.9432227, 46.7402387 ], + [ 7.9433372, 46.7402359 ], + [ 7.9434578, 46.7401936 ], + [ 7.9435191, 46.7400964 ], + [ 7.9434866, 46.739945 ], + [ 7.9435438, 46.739769 ], + [ 7.9436698, 46.739512500000004 ], + [ 7.9439326999999995, 46.7391965 ], + [ 7.9439717, 46.7389983 ], + [ 7.9438778, 46.7387469 ], + [ 7.9437276, 46.7385195 ], + [ 7.9434906, 46.7383617 ], + [ 7.9430922, 46.7382639 ], + [ 7.9426783, 46.7381721 ], + [ 7.9425966, 46.7379995 ], + [ 7.9431229, 46.738049 ], + [ 7.9434019, 46.7380651 ], + [ 7.9437607, 46.7380397 ], + [ 7.9434664999999995, 46.7378832 ], + [ 7.9433388, 46.7377792 ], + [ 7.9432336, 46.7376408 ], + [ 7.9432072, 46.7374386 ], + [ 7.943194, 46.7371684 ], + [ 7.9430878, 46.7370075 ], + [ 7.9432238, 46.736948 ], + [ 7.9430064, 46.7366994 ], + [ 7.9432854, 46.7367099 ], + [ 7.9428666, 46.736178699999996 ], + [ 7.9427002, 46.735963 ], + [ 7.9426422, 46.7357896 ], + [ 7.9424748, 46.7355513 ], + [ 7.9422633, 46.7354153 ], + [ 7.9419883, 46.7353035 ], + [ 7.9416534, 46.7351649 ], + [ 7.9414337, 46.7350178 ], + [ 7.941209, 46.7349498 ], + [ 7.9409801, 46.7349552 ], + [ 7.940704, 46.7349955 ], + [ 7.9403035, 46.7350106 ], + [ 7.939957, 46.7349567 ], + [ 7.9397424999999995, 46.7349222 ], + [ 7.9395565999999995, 46.7349829 ], + [ 7.9393407, 46.7350782 ], + [ 7.9391683, 46.7349076 ], + [ 7.939014, 46.734759 ], + [ 7.938965, 46.7345967 ], + [ 7.9388396, 46.7343912 ], + [ 7.9386027, 46.7342334 ], + [ 7.9383248, 46.7340821 ], + [ 7.9380428, 46.7340042 ], + [ 7.93787, 46.7339801 ], + [ 7.9377487, 46.7336787 ], + [ 7.937704, 46.7334487 ], + [ 7.9375783, 46.7332093 ], + [ 7.9375102, 46.7330024 ], + [ 7.9373711, 46.7329944 ], + [ 7.9372015, 46.7330435 ], + [ 7.9369889, 46.7330485 ], + [ 7.9367397, 46.7329867 ], + [ 7.936522, 46.7328735 ], + [ 7.9364138, 46.7328422 ], + [ 7.9362042, 46.732909 ], + [ 7.9359447, 46.7329602 ], + [ 7.9356985, 46.7329547 ], + [ 7.9355146, 46.7328801 ], + [ 7.9354686999999995, 46.7327798 ], + [ 7.9355536, 46.7326708 ], + [ 7.9356568, 46.7326008 ], + [ 7.9355843, 46.7324559 ], + [ 7.9355518, 46.7323045 ], + [ 7.9356193, 46.7321734 ], + [ 7.9354672, 46.7320811 ], + [ 7.9351924, 46.7319918 ], + [ 7.934842, 46.7318591 ], + [ 7.9345948, 46.7316452 ], + [ 7.9343385, 46.7314314 ], + [ 7.9343414, 46.7316567 ], + [ 7.9341248, 46.7315829 ], + [ 7.9338717, 46.7312676 ], + [ 7.9337442, 46.7310115 ], + [ 7.9336207, 46.7308284 ], + [ 7.9333265, 46.7306662 ], + [ 7.9331803999999995, 46.7306922 ], + [ 7.9330291, 46.7307802 ], + [ 7.9328235, 46.7309203 ], + [ 7.9324335, 46.7306589 ], + [ 7.932319, 46.730656 ], + [ 7.9322119, 46.7304782 ], + [ 7.9320463, 46.7304369 ], + [ 7.9318809, 46.7304126 ], + [ 7.9317154, 46.7303714 ], + [ 7.9309969, 46.7305797 ], + [ 7.9306493, 46.7306612 ], + [ 7.9304123, 46.7306724 ], + [ 7.9302448, 46.7305973 ], + [ 7.9301417, 46.7304984 ], + [ 7.9300223, 46.7304053 ], + [ 7.929679, 46.730419 ], + [ 7.9295687, 46.730168 ], + [ 7.9291561999999995, 46.7299409 ], + [ 7.9287557, 46.7297757 ], + [ 7.9285045, 46.7296688 ], + [ 7.9282074, 46.7294616 ], + [ 7.9279602, 46.7292532 ], + [ 7.9277182, 46.7291576 ], + [ 7.9274823, 46.7290222 ], + [ 7.9272873, 46.7288971 ], + [ 7.9270258, 46.7287286 ], + [ 7.9267183, 46.7286343 ], + [ 7.9264619, 46.728584 ], + [ 7.9262719, 46.7285489 ], + [ 7.9260492, 46.7285146 ], + [ 7.9258408, 46.7284349 ], + [ 7.925753, 46.728313 ], + [ 7.9257778, 46.7281548 ], + [ 7.9258669, 46.7279724 ], + [ 7.9258435, 46.727832 ], + [ 7.9256708, 46.7278079 ], + [ 7.925437, 46.7277232 ], + [ 7.9252594, 46.7276089 ], + [ 7.9251336, 46.7275386 ], + [ 7.9250202, 46.7275582 ], + [ 7.9249241999999995, 46.7276112 ], + [ 7.9248209, 46.7276812 ], + [ 7.9247012, 46.7277347 ], + [ 7.9244907, 46.7277847 ], + [ 7.9241585, 46.7278488 ], + [ 7.9238745, 46.7279117 ], + [ 7.9237231999999995, 46.7279885 ], + [ 7.9235912, 46.7281325 ], + [ 7.923445, 46.728333 ], + [ 7.9232813, 46.7284946 ], + [ 7.9230849, 46.7286626 ], + [ 7.9228048, 46.7287987 ], + [ 7.9225248, 46.7289349 ], + [ 7.9224224, 46.7290049 ], + [ 7.9222833, 46.7291827 ], + [ 7.9221249, 46.7292936 ], + [ 7.9218816, 46.729333 ], + [ 7.9216364, 46.7293443 ], + [ 7.9214289, 46.7292815 ], + [ 7.9212197, 46.7291962 ], + [ 7.921041, 46.7290595 ], + [ 7.9208746, 46.7288267 ], + [ 7.9207992, 46.7286258 ], + [ 7.9207924, 46.7283216 ], + [ 7.9209818, 46.7280128 ], + [ 7.9204222, 46.7277893 ], + [ 7.9200617, 46.7276118 ], + [ 7.919835, 46.7274987 ], + [ 7.9195683, 46.7273922 ], + [ 7.9194489, 46.7272936 ], + [ 7.9194327, 46.7271305 ], + [ 7.9192645, 46.7268752 ], + [ 7.9190286, 46.7267342 ], + [ 7.9187406, 46.7267184 ], + [ 7.918576, 46.7266883 ], + [ 7.9184966, 46.7265831 ], + [ 7.9179479, 46.7263988 ], + [ 7.9176078, 46.7263052 ], + [ 7.9173721, 46.7261811 ], + [ 7.9170871, 46.7260357 ], + [ 7.9167421000000004, 46.7258577 ], + [ 7.9167299, 46.7257791 ], + [ 7.9166155, 46.725776 ], + [ 7.916167, 46.7256344 ], + [ 7.9160702, 46.7255127 ], + [ 7.9158802, 46.7254776 ], + [ 7.9156002999999995, 46.7254446 ], + [ 7.9154029999999995, 46.7254155 ], + [ 7.9152377, 46.7253912 ], + [ 7.9150875, 46.725327 ], + [ 7.9147093, 46.7254598 ], + [ 7.914553, 46.7254409 ], + [ 7.9145898, 46.7253555 ], + [ 7.9145776, 46.7252713 ], + [ 7.914541, 46.7251989 ], + [ 7.9144092, 46.7251793 ], + [ 7.9142232, 46.7252231 ], + [ 7.9141303, 46.725169 ], + [ 7.9139567, 46.7251336 ], + [ 7.9137934, 46.7249796 ], + [ 7.9134657, 46.7248068 ], + [ 7.9131868999999995, 46.7246218 ], + [ 7.9129135, 46.7243971 ], + [ 7.9127826, 46.7243888 ], + [ 7.9125171, 46.7243161 ], + [ 7.9122015, 46.7242276 ], + [ 7.9120465, 46.7240735 ], + [ 7.9119045, 46.7240092 ], + [ 7.9117318999999995, 46.7240075 ], + [ 7.911501, 46.7239622 ], + [ 7.9112772, 46.7238998 ], + [ 7.9109739, 46.7238955 ], + [ 7.9107531, 46.723895 ], + [ 7.9105429, 46.7237873 ], + [ 7.9103234, 46.7236458 ], + [ 7.9097153, 46.7237613 ], + [ 7.9098679, 46.7235437 ], + [ 7.9091066, 46.7228627 ], + [ 7.9089381, 46.7227707 ], + [ 7.9087635, 46.7227185 ], + [ 7.9084879, 46.7226121 ], + [ 7.9081855999999995, 46.7224389 ], + [ 7.9077171, 46.7222468 ], + [ 7.9074698, 46.7222075 ], + [ 7.9073168, 46.7220928 ], + [ 7.9070663, 46.7221549 ], + [ 7.9065445, 46.7220317 ], + [ 7.9062748, 46.7220436 ], + [ 7.9057786, 46.7217678 ], + [ 7.9054703, 46.7216566 ], + [ 7.9052416, 46.7214928 ], + [ 7.9044918, 46.7213862 ], + [ 7.904391, 46.7211744 ], + [ 7.9041418, 46.7210957 ], + [ 7.9038253, 46.7209847 ], + [ 7.9034035, 46.7208931 ], + [ 7.9031933, 46.7207851 ], + [ 7.9029277, 46.7207124 ], + [ 7.9021792, 46.7204592 ], + [ 7.9010908, 46.7199548 ], + [ 7.90081, 46.7199049 ], + [ 7.9005128, 46.7198554 ], + [ 7.9003248, 46.7198598 ], + [ 7.900046, 46.7198549 ], + [ 7.8997508, 46.7198449 ], + [ 7.8994606, 46.7197558 ], + [ 7.8992586, 46.7196478 ], + [ 7.8990941, 46.7196291 ], + [ 7.8988244, 46.7196352 ], + [ 7.8985672000000005, 46.7195736 ], + [ 7.8980596, 46.7193937 ], + [ 7.8976257, 46.7192234 ], + [ 7.8973348, 46.71914 ], + [ 7.8969938, 46.7190295 ], + [ 7.8968109, 46.7189605 ], + [ 7.8967088, 46.7188784 ], + [ 7.8965355, 46.7186907 ], + [ 7.8963336, 46.7184024 ], + [ 7.8960795, 46.7182224 ], + [ 7.8958794, 46.7181481 ], + [ 7.8955587, 46.7181217 ], + [ 7.8953217, 46.7181272 ], + [ 7.8951217, 46.7180585 ], + [ 7.8949849, 46.7179376 ], + [ 7.8948852, 46.7177428 ], + [ 7.8948373, 46.7175861 ], + [ 7.8947240999999995, 46.7174478 ], + [ 7.8945702, 46.7173218 ], + [ 7.8944079, 46.7171735 ], + [ 7.8942569, 46.7171093 ], + [ 7.8940953, 46.7171413 ], + [ 7.8937867, 46.7171878 ], + [ 7.8934599, 46.7172121 ], + [ 7.8931422, 46.7172421 ], + [ 7.8928233, 46.7172381 ], + [ 7.8926478, 46.7171634 ], + [ 7.8925856, 46.7170632 ], + [ 7.8925787, 46.7169226 ], + [ 7.8925482, 46.7167937 ], + [ 7.8924136, 46.7167236 ], + [ 7.8920736, 46.7166412 ], + [ 7.8917018, 46.7165596 ], + [ 7.8914109, 46.7164705 ], + [ 7.8912405, 46.716328 ], + [ 7.8910537, 46.7161858 ], + [ 7.8909171, 46.7160819 ], + [ 7.8907618, 46.7160742 ], + [ 7.8905801, 46.7160502 ], + [ 7.89039, 46.7159982 ], + [ 7.8900684, 46.715955 ], + [ 7.8897641, 46.7159338 ], + [ 7.8894358, 46.7160709 ], + [ 7.8891936, 46.7161441 ], + [ 7.8890403, 46.716187 ], + [ 7.8889036, 46.7160663 ], + [ 7.8887814, 46.7159169 ], + [ 7.8886673, 46.7157618 ], + [ 7.8884527, 46.7157105 ], + [ 7.8882473, 46.7156926 ], + [ 7.8880473, 46.7156239 ], + [ 7.8878842, 46.71547 ], + [ 7.8877507, 46.7152419 ], + [ 7.8874483, 46.7152545 ], + [ 7.8869754, 46.7152993 ], + [ 7.8864, 46.7154138 ], + [ 7.8868081, 46.7157313 ], + [ 7.8858927, 46.7157467 ], + [ 7.8860855999999995, 46.715838 ], + [ 7.8863704, 46.7159836 ], + [ 7.8865336, 46.7161432 ], + [ 7.8863139, 46.7161709 ], + [ 7.885988, 46.7161953 ], + [ 7.8856836, 46.7161573 ], + [ 7.8854212, 46.7161576 ], + [ 7.8851206, 46.7161926 ], + [ 7.8848399, 46.7161541 ], + [ 7.884614, 46.7162156 ], + [ 7.8843423999999995, 46.716188 ], + [ 7.8843401, 46.7163063 ], + [ 7.8841992, 46.7162758 ], + [ 7.8840246, 46.7162179 ], + [ 7.8839552, 46.7161237 ], + [ 7.8837889, 46.7160768 ], + [ 7.8837601, 46.7161564 ], + [ 7.8832943, 46.7161727 ], + [ 7.8828131, 46.7162062 ], + [ 7.8821635, 46.7161422 ], + [ 7.8814744, 46.7159495 ], + [ 7.8813222, 46.7158347 ], + [ 7.8811478, 46.7157937 ], + [ 7.8810925, 46.7158287 ], + [ 7.8809522, 46.7159728 ], + [ 7.8807114, 46.7159107 ], + [ 7.8807028, 46.7160574 ], + [ 7.8802687, 46.7160561 ], + [ 7.879661, 46.7160194 ], + [ 7.8795383999999995, 46.7160109 ], + [ 7.8793636, 46.7161275 ], + [ 7.878765, 46.7161018 ], + [ 7.8785542, 46.7163152 ], + [ 7.8783334, 46.716309 ], + [ 7.8780615, 46.7164503 ], + [ 7.8777876, 46.7165468 ], + [ 7.8777574999999995, 46.7167559 ], + [ 7.8777154, 46.7169147 ], + [ 7.8775169, 46.7170319 ], + [ 7.8771959, 46.7171632 ], + [ 7.876923, 46.7172765 ], + [ 7.8767255, 46.7174276 ], + [ 7.8762467, 46.7178554 ], + [ 7.8760682, 46.7182202 ], + [ 7.8762643, 46.71821 ], + [ 7.876745, 46.7185146 ], + [ 7.8769390999999995, 46.7184538 ], + [ 7.8768499, 46.7186473 ], + [ 7.876764, 46.7187394 ], + [ 7.8768168, 46.7188058 ], + [ 7.8769557, 46.718797 ], + [ 7.8770793, 46.7188168 ], + [ 7.8771804, 46.7188764 ], + [ 7.8773579, 46.7189907 ], + [ 7.877507, 46.7190267 ], + [ 7.8775591, 46.7191045 ], + [ 7.8776732, 46.7192595 ], + [ 7.8777505, 46.7193254 ], + [ 7.8780782, 46.7195095 ], + [ 7.8784539, 46.7196642 ], + [ 7.8788841, 46.7195812 ], + [ 7.8794134, 46.7195352 ], + [ 7.8792424, 46.7197138 ], + [ 7.8791003, 46.7198353 ], + [ 7.8789182, 46.7199635 ], + [ 7.8787063, 46.720143 ], + [ 7.878559, 46.7203155 ], + [ 7.8784389, 46.7205322 ], + [ 7.8782292, 46.7207793 ], + [ 7.8780673, 46.7209802 ], + [ 7.8779065, 46.721215 ], + [ 7.8777495, 46.7215115 ], + [ 7.8776542, 46.7217504 ], + [ 7.8775923, 46.7219828 ], + [ 7.8775103, 46.7221594 ], + [ 7.8774058, 46.7223702 ], + [ 7.8772193999999995, 46.7225717 ], + [ 7.8769013999999995, 46.7227761 ], + [ 7.8762784, 46.7230834 ], + [ 7.8765522, 46.7231729 ], + [ 7.8768124, 46.7233021 ], + [ 7.8769655, 46.7234282 ], + [ 7.8771215, 46.723605 ], + [ 7.8772264, 46.7237322 ], + [ 7.8773684, 46.7238022 ], + [ 7.8775164, 46.7238045 ], + [ 7.8777269, 46.7237602 ], + [ 7.8779539, 46.7237155 ], + [ 7.8781736, 46.7236936 ], + [ 7.8783473, 46.7237347 ], + [ 7.8784492, 46.7238 ], + [ 7.8785676, 46.7238818 ], + [ 7.8787678, 46.7239673 ], + [ 7.8790885, 46.7239994 ], + [ 7.8797011999999995, 46.7241375 ], + [ 7.8798431, 46.7242019 ], + [ 7.8799389, 46.724318 ], + [ 7.8799928, 46.7244126 ], + [ 7.8801357, 46.7244882 ], + [ 7.8804247, 46.724538 ], + [ 7.8807628, 46.724592200000004 ], + [ 7.8810211, 46.724682 ], + [ 7.881204, 46.7247455 ], + [ 7.8813521, 46.7247646 ], + [ 7.8815319, 46.7247604 ], + [ 7.8817474, 46.7248175 ], + [ 7.881933, 46.7249203 ], + [ 7.8820635, 46.7250808 ], + [ 7.8822787, 46.7253012 ], + [ 7.8825074, 46.7254705 ], + [ 7.8827093999999995, 46.7255786 ], + [ 7.8829177999999995, 46.7256584 ], + [ 7.8830463, 46.7257793 ], + [ 7.8832196, 46.725967 ], + [ 7.8834327, 46.7261424 ], + [ 7.8836074, 46.7262004 ], + [ 7.8840783, 46.7263022 ], + [ 7.8844981, 46.726343299999996 ], + [ 7.8846809, 46.7264011 ], + [ 7.8847757, 46.7264946 ], + [ 7.8848716, 46.726622 ], + [ 7.8850531, 46.7268151 ], + [ 7.8852489, 46.7269684 ], + [ 7.8854775, 46.7271265 ], + [ 7.885737, 46.7272558 ], + [ 7.8858809, 46.7273539 ], + [ 7.8860503, 46.7274683 ], + [ 7.8862994, 46.7275358 ], + [ 7.8866824, 46.7276736 ], + [ 7.8872519, 46.727931 ], + [ 7.8875623, 46.7280872 ], + [ 7.8878471999999995, 46.7282328 ], + [ 7.8880513, 46.7283858 ], + [ 7.8881806999999995, 46.7285125 ], + [ 7.8883054, 46.7285603 ], + [ 7.8893557, 46.7286151 ], + [ 7.8894053, 46.728783 ], + [ 7.889533, 46.7288927 ], + [ 7.8896625, 46.7290306 ], + [ 7.8898829, 46.7291833 ], + [ 7.890087, 46.7293364 ], + [ 7.8901646, 46.7294248 ], + [ 7.890194, 46.7295198 ], + [ 7.8902889, 46.7296191 ], + [ 7.8904246, 46.729723 ], + [ 7.8905604, 46.7298213 ], + [ 7.8907215, 46.7299302 ], + [ 7.8908973, 46.730022 ], + [ 7.8910176, 46.7301319 ], + [ 7.8913084, 46.7303957 ], + [ 7.8914248, 46.7304269 ], + [ 7.8915023, 46.7304982 ], + [ 7.891588, 46.7305864 ], + [ 7.8917401, 46.7306788 ], + [ 7.8919076, 46.7307593 ], + [ 7.8920015, 46.7308418 ], + [ 7.8921434999999995, 46.7309061 ], + [ 7.8922853, 46.7309535 ], + [ 7.8924581, 46.7309777 ], + [ 7.8926052, 46.7309743 ], + [ 7.892694, 46.7309329 ], + [ 7.8927718, 46.7308522 ], + [ 7.8929856, 46.7307064 ], + [ 7.8933333, 46.7306252 ], + [ 7.893703, 46.7306448 ], + [ 7.8940422, 46.7307158 ], + [ 7.8942352, 46.7308185 ], + [ 7.8943781, 46.7308941 ], + [ 7.8945609999999995, 46.7309575 ], + [ 7.8948356, 46.7310413 ], + [ 7.8950685, 46.7311205 ], + [ 7.8953288, 46.7312498 ], + [ 7.895668, 46.7313264 ], + [ 7.8958017, 46.7313741 ], + [ 7.8958455, 46.731435 ], + [ 7.8959649, 46.7315393 ], + [ 7.8962069, 46.7316295 ], + [ 7.8963284, 46.7317845 ], + [ 7.8964916, 46.7319329 ], + [ 7.8966601, 46.7320304 ], + [ 7.8968132, 46.7321565 ], + [ 7.8969368, 46.7321648 ], + [ 7.8970766999999995, 46.7321786 ], + [ 7.897186, 46.7322437 ], + [ 7.897289, 46.7323314 ], + [ 7.8974045, 46.7323625 ], + [ 7.8975372, 46.7323876 ], + [ 7.8975994, 46.7324933 ], + [ 7.8977075, 46.7326992 ], + [ 7.8977758, 46.7327484 ], + [ 7.8979606, 46.7328511 ], + [ 7.8981872, 46.7329586 ], + [ 7.8984045, 46.7332185 ], + [ 7.8986881, 46.7334936 ], + [ 7.8985143, 46.7336272 ], + [ 7.8984303, 46.7337532 ], + [ 7.8984425, 46.7338373 ], + [ 7.8985139, 46.7339596 ], + [ 7.8985645, 46.7341501 ], + [ 7.8985614, 46.7342629 ], + [ 7.8985938, 46.7344143 ], + [ 7.8987011, 46.7344398 ], + [ 7.8987604, 46.7344892 ], + [ 7.8987899, 46.73459 ], + [ 7.8988183, 46.7346626 ], + [ 7.898904, 46.7347395 ], + [ 7.898997, 46.7348049 ], + [ 7.8990091, 46.7348836 ], + [ 7.8989895, 46.7349854 ], + [ 7.8989964, 46.7351261 ], + [ 7.8990577, 46.7352148 ], + [ 7.8992219, 46.73538 ], + [ 7.8994168, 46.7355164 ], + [ 7.8994862, 46.7355994 ], + [ 7.8995393, 46.7356826 ], + [ 7.8995985, 46.7357208 ], + [ 7.8996823, 46.7357639 ], + [ 7.8997587, 46.7358128 ], + [ 7.89977, 46.7358858 ], + [ 7.8997903, 46.7359698 ], + [ 7.8998433, 46.7360418 ], + [ 7.8999198, 46.7361021 ], + [ 7.9000618, 46.7361552 ], + [ 7.9003192, 46.7362337 ], + [ 7.9006275, 46.7363337 ], + [ 7.900787, 46.7364258 ], + [ 7.9008991, 46.7365358 ], + [ 7.9009778, 46.7366467 ], + [ 7.9010461, 46.7367015 ], + [ 7.9011462, 46.7367386 ], + [ 7.9012535, 46.7367531 ], + [ 7.9012972999999995, 46.7368084 ], + [ 7.9013821, 46.7368796 ], + [ 7.901436, 46.7369685 ], + [ 7.9015044, 46.7370233 ], + [ 7.9015565, 46.7370954 ], + [ 7.9016269, 46.7371952 ], + [ 7.9017318, 46.7373224 ], + [ 7.9018115, 46.7374557 ], + [ 7.901801, 46.7375686 ], + [ 7.9018387, 46.7376693 ], + [ 7.9020325, 46.7379521 ], + [ 7.9021336, 46.7380174 ], + [ 7.9022929, 46.738087 ], + [ 7.902493, 46.7381612 ], + [ 7.9026289, 46.7382651 ], + [ 7.9027166, 46.7383814 ], + [ 7.902851, 46.7387952 ], + [ 7.9028334000000005, 46.7389422 ], + [ 7.9027605, 46.7391129 ], + [ 7.9028083, 46.7392527 ], + [ 7.9028706, 46.7393639 ], + [ 7.9029183, 46.739498 ], + [ 7.9029488, 46.7396212 ], + [ 7.9029804, 46.7397726 ], + [ 7.9030425, 46.7398613 ], + [ 7.9031518, 46.7399265 ], + [ 7.9032365, 46.7399752 ], + [ 7.9033141, 46.740058 ], + [ 7.9033816, 46.740107 ], + [ 7.9034725, 46.7401218 ], + [ 7.9036042, 46.7401245 ], + [ 7.9036972, 46.7401956 ], + [ 7.9038246999999995, 46.7402827 ], + [ 7.9040731, 46.7403503 ], + [ 7.9042805, 46.7404074 ], + [ 7.904309, 46.7404913 ], + [ 7.9043466, 46.7405806 ], + [ 7.9043578, 46.740648 ], + [ 7.9044272, 46.7407252 ], + [ 7.9045445, 46.7407732 ], + [ 7.9046222, 46.7408615 ], + [ 7.904668, 46.7409564 ], + [ 7.9047394, 46.7410899 ], + [ 7.9048107, 46.7412009 ], + [ 7.9049301, 46.7412939 ], + [ 7.9049933, 46.7414109 ], + [ 7.9049984, 46.7415233 ], + [ 7.9050432, 46.7416069 ], + [ 7.9051697999999995, 46.7416716 ], + [ 7.9052954, 46.7417307 ], + [ 7.9053384, 46.741786 ], + [ 7.9053504, 46.7418533 ], + [ 7.9053453, 46.7419267 ], + [ 7.9054046, 46.7419647 ], + [ 7.9054792, 46.7419856 ], + [ 7.9055219999999995, 46.7420183 ], + [ 7.9055523999999995, 46.7421304 ], + [ 7.9055993, 46.7422589 ], + [ 7.9057606, 46.7423735 ], + [ 7.905974, 46.74256 ], + [ 7.9060271, 46.7426377 ], + [ 7.9060464, 46.7426993 ], + [ 7.9060596, 46.7428061 ], + [ 7.9061207, 46.7428722 ], + [ 7.9061962999999995, 46.7429156 ], + [ 7.9062536, 46.7429198 ], + [ 7.9063189, 46.7429127 ], + [ 7.906417, 46.7429048 ], + [ 7.9064926, 46.7429425 ], + [ 7.9065783, 46.7430194 ], + [ 7.9068214999999995, 46.7431434 ], + [ 7.9071065, 46.7432832 ], + [ 7.9072842, 46.7433974 ], + [ 7.9074055, 46.7435299 ], + [ 7.9074513, 46.7436246 ], + [ 7.9074473, 46.7437261 ], + [ 7.9074195, 46.7438225 ], + [ 7.9073928, 46.7439528 ], + [ 7.9075122, 46.7440345 ], + [ 7.9075907999999995, 46.7441397 ], + [ 7.9076621, 46.7442564 ], + [ 7.9076927, 46.7443853 ], + [ 7.9076598, 46.7445551 ], + [ 7.9076052, 46.7447649 ], + [ 7.9075888, 46.7449456 ], + [ 7.9076539, 46.7451017 ], + [ 7.9077518, 46.7452572 ], + [ 7.907864, 46.745373 ], + [ 7.9080611, 46.7455487 ], + [ 7.9082898, 46.7457069 ], + [ 7.9085032, 46.7458823 ], + [ 7.908642, 46.7460424 ], + [ 7.9087052, 46.746165 ], + [ 7.9087511, 46.7462653 ], + [ 7.9087552, 46.746361 ], + [ 7.9087703, 46.7465015 ], + [ 7.9087619, 46.746665 ], + [ 7.9102806, 46.7467369 ], + [ 7.9104594, 46.7467046 ], + [ 7.9106374, 46.746661 ], + [ 7.9108951, 46.7465818 ], + [ 7.91117, 46.7464966 ], + [ 7.911393, 46.7463731 ], + [ 7.9115844, 46.7462728 ], + [ 7.9116948, 46.7461802 ], + [ 7.9118236, 46.7461321 ], + [ 7.9119372, 46.7461182 ], + [ 7.9119890999999996, 46.7461677 ], + [ 7.9120577, 46.7462394 ], + [ 7.9121199, 46.7463393 ], + [ 7.9122739, 46.7464653 ], + [ 7.9124027, 46.7465976 ], + [ 7.9125730999999995, 46.7467233 ], + [ 7.9126733, 46.7467717 ], + [ 7.9128634, 46.7468067 ], + [ 7.9131853, 46.7468555 ], + [ 7.913549, 46.7469204 ], + [ 7.9139638, 46.747029 ], + [ 7.9142735, 46.7471797 ], + [ 7.9144266, 46.7472944 ], + [ 7.9144388, 46.7473786 ], + [ 7.9143844, 46.747425 ], + [ 7.9142985, 46.7475114 ], + [ 7.914138, 46.7475828 ], + [ 7.9139641, 46.7477165 ], + [ 7.9137144, 46.7479645 ], + [ 7.9207242, 46.7526361 ], + [ 7.9249198, 46.7533554 ], + [ 7.9280285, 46.7542803 ], + [ 7.9299932, 46.7532597 ], + [ 7.9301374, 46.7532 ], + [ 7.9302693, 46.7532194 ], + [ 7.9304501, 46.7532209 ], + [ 7.9305432, 46.7532919 ], + [ 7.9306462, 46.753379699999996 ], + [ 7.9307248999999995, 46.7534849 ], + [ 7.9308106, 46.7535561 ], + [ 7.9308555, 46.7536341 ], + [ 7.9309016, 46.753751199999996 ], + [ 7.9310527, 46.7538154 ], + [ 7.9310782, 46.7540119 ], + [ 7.9314162, 46.7542126 ], + [ 7.931543, 46.7542941 ], + [ 7.9315573, 46.7544234 ], + [ 7.9316195, 46.7545233 ], + [ 7.9318188, 46.7545807 ], + [ 7.9319739, 46.7547235 ], + [ 7.9321037, 46.7548726 ], + [ 7.9321434, 46.7550126 ], + [ 7.9321515, 46.7551814 ], + [ 7.9325927, 46.7556557 ], + [ 7.9327141999999995, 46.755788 ], + [ 7.9328491, 46.7558693 ], + [ 7.9329868999999995, 46.7560014 ], + [ 7.9330849, 46.7561625 ], + [ 7.9330746, 46.7562867 ], + [ 7.9329662, 46.7564189 ], + [ 7.9329435, 46.7566222 ], + [ 7.933018, 46.7568008 ], + [ 7.9331242, 46.7569617 ], + [ 7.9332018, 46.7572134 ], + [ 7.933181, 46.757445 ], + [ 7.9332072, 46.7578106 ], + [ 7.9333462, 46.758151 ], + [ 7.9335452, 46.7583606 ], + [ 7.9336321, 46.7584598 ], + [ 7.9337136, 46.7586102 ], + [ 7.9338241, 46.7587033 ], + [ 7.9339365, 46.75865 ], + [ 7.9340081, 46.7586033 ], + [ 7.9340971, 46.7585843 ], + [ 7.9341962, 46.7586044 ], + [ 7.9342556, 46.7586538 ], + [ 7.9343342, 46.7587534 ], + [ 7.9344586, 46.7589364 ], + [ 7.9346314, 46.759124 ], + [ 7.934763, 46.7592955 ], + [ 7.9348714, 46.7593438 ], + [ 7.9350115, 46.759363 ], + [ 7.935174, 46.759331 ], + [ 7.9353529, 46.7592987 ], + [ 7.9355963, 46.7592591 ], + [ 7.9358581, 46.7592531 ], + [ 7.9361545, 46.7592855 ], + [ 7.9364766, 46.7593401 ], + [ 7.9367024, 46.7594306 ], + [ 7.9369038, 46.759532899999996 ], + [ 7.9371297, 46.759629 ], + [ 7.9373217, 46.7596978 ], + [ 7.9375548, 46.7597769 ], + [ 7.9377562, 46.7598735 ], + [ 7.9379103, 46.7599995 ], + [ 7.9380462, 46.7600977 ], + [ 7.9381873, 46.7601339 ], + [ 7.938264, 46.7601997 ], + [ 7.9383181, 46.7603055 ], + [ 7.938315, 46.7604127 ], + [ 7.9382902, 46.7605597 ], + [ 7.9382871999999995, 46.7606725 ], + [ 7.9383268, 46.7608011 ], + [ 7.9383593999999995, 46.7609637 ], + [ 7.9383441, 46.7611669 ], + [ 7.9383685, 46.7613299 ], + [ 7.9384062, 46.7614247 ], + [ 7.9385246, 46.7614896 ], + [ 7.9386158, 46.7615268 ], + [ 7.9387495, 46.7615688 ], + [ 7.9387955, 46.7616691 ], + [ 7.9388568, 46.7617578 ], + [ 7.9388955, 46.7618697 ], + [ 7.9389017, 46.7620048 ], + [ 7.9389833, 46.7621606 ], + [ 7.9391058999999995, 46.7623211 ], + [ 7.9392775, 46.7624748 ], + [ 7.9394369, 46.7625444 ], + [ 7.9395862, 46.7625973 ], + [ 7.9397293, 46.7626727 ], + [ 7.939815, 46.7627384 ], + [ 7.939901, 46.7628322 ], + [ 7.940005, 46.7629367 ], + [ 7.9401135, 46.7629905 ], + [ 7.9403129, 46.7630478 ], + [ 7.940503, 46.7630828 ], + [ 7.9406931, 46.7631122 ], + [ 7.9408372, 46.7632047 ], + [ 7.9410243, 46.7633524 ], + [ 7.9411949, 46.7634836 ], + [ 7.9414453, 46.7635736 ], + [ 7.9416518, 46.7636081 ], + [ 7.9419872, 46.763606 ], + [ 7.9422345, 46.7636283 ], + [ 7.942343, 46.7636765 ], + [ 7.9423961, 46.7637598 ], + [ 7.9424449, 46.763905199999996 ], + [ 7.942454, 46.7640908 ], + [ 7.9424203, 46.7642494 ], + [ 7.9424364, 46.7644011 ], + [ 7.9424108, 46.7645426 ], + [ 7.9422533, 46.7646758 ], + [ 7.9420721, 46.7648154 ], + [ 7.9419873, 46.76493 ], + [ 7.941975, 46.7650148 ], + [ 7.9420526, 46.7650863 ], + [ 7.9422019, 46.7651278 ], + [ 7.9424104, 46.7652074 ], + [ 7.9425227, 46.765312 ], + [ 7.942577, 46.7654289 ], + [ 7.9425318, 46.7655032 ], + [ 7.9424398, 46.765635 ], + [ 7.9423516, 46.7658287 ], + [ 7.9423627, 46.7660538 ], + [ 7.9423769, 46.7663464 ], + [ 7.9424156, 46.7664639 ], + [ 7.942436, 46.7665422 ], + [ 7.9425556, 46.7666466 ], + [ 7.9427088999999995, 46.7667669 ], + [ 7.9428295, 46.7668824 ], + [ 7.9430675, 46.7670515 ], + [ 7.9432729, 46.767227 ], + [ 7.9433609, 46.7673602 ], + [ 7.9435111, 46.767582 ], + [ 7.9436447999999995, 46.767793 ], + [ 7.9437622, 46.76801 ], + [ 7.9438165, 46.768127 ], + [ 7.9437978, 46.7682345 ], + [ 7.9439307, 46.76844 ], + [ 7.9440216, 46.7686293 ], + [ 7.9441471, 46.7688348 ], + [ 7.9442485, 46.7689114 ], + [ 7.9443914, 46.7689701 ], + [ 7.9445499, 46.7690283 ], + [ 7.944692, 46.769087 ], + [ 7.9448014, 46.7691464 ], + [ 7.9448618, 46.7692182 ], + [ 7.9448657, 46.7692857 ], + [ 7.9448473, 46.7694158 ], + [ 7.9448125, 46.7695461 ], + [ 7.9448205, 46.7696981 ], + [ 7.9448746, 46.7697926 ], + [ 7.9449678, 46.7698692 ], + [ 7.9450954, 46.7699509 ], + [ 7.9456229, 46.7701864 ], + [ 7.9458406, 46.7702771 ], + [ 7.9459685, 46.7703867 ], + [ 7.9460644, 46.7704972 ], + [ 7.9461033, 46.7706315 ], + [ 7.9461615, 46.7708105 ], + [ 7.946197, 46.7710237 ], + [ 7.9462041, 46.7711644 ], + [ 7.9462472, 46.7712197 ], + [ 7.9463105, 46.7713366 ], + [ 7.9463748, 46.7714816 ], + [ 7.9464217999999995, 46.7715989 ], + [ 7.946488, 46.7717719 ], + [ 7.9464962, 46.7719464 ], + [ 7.9465421, 46.7720411 ], + [ 7.9466443, 46.772112 ], + [ 7.9467384, 46.7722055 ], + [ 7.9467780999999995, 46.7723286 ], + [ 7.9467761, 46.7724695 ], + [ 7.9468024, 46.7726549 ], + [ 7.9468412, 46.7727778 ], + [ 7.9469598, 46.7728539 ], + [ 7.9471039999999995, 46.7729633 ], + [ 7.9472717, 46.7730382 ], + [ 7.9474086, 46.7731589 ], + [ 7.9474975, 46.7732921 ], + [ 7.9475475, 46.7734826 ], + [ 7.9477162, 46.773749 ], + [ 7.9479061, 46.7739305 ], + [ 7.9480504, 46.7740454 ], + [ 7.9482957, 46.7741975 ], + [ 7.9483447, 46.774354 ], + [ 7.9483968, 46.7745839 ], + [ 7.9483578, 46.7747876 ], + [ 7.94833, 46.775053 ], + [ 7.9483707, 46.7752042 ], + [ 7.9484759, 46.7753426 ], + [ 7.9486212, 46.7754688 ], + [ 7.9487837, 46.7756114 ], + [ 7.9489472, 46.7757598 ], + [ 7.9490535, 46.7759263 ], + [ 7.9491689, 46.7760983 ], + [ 7.9491943, 46.7762779 ], + [ 7.9490932, 46.7763987 ], + [ 7.948911, 46.7765212 ], + [ 7.948548, 46.7766425 ], + [ 7.9483914, 46.776787 ], + [ 7.9479081, 46.7776041 ], + [ 7.9479071, 46.7777619 ], + [ 7.947957, 46.7779298 ], + [ 7.9480786, 46.7780733 ], + [ 7.9482422, 46.778233 ], + [ 7.948373, 46.7783933 ], + [ 7.9484363, 46.7785101 ], + [ 7.9484373, 46.7786961 ], + [ 7.948252, 46.7789201 ], + [ 7.9481365, 46.7790806 ], + [ 7.9480771, 46.7792059 ], + [ 7.9480688, 46.7793696 ], + [ 7.9481135, 46.7795995 ], + [ 7.948137, 46.7797454 ], + [ 7.9480847, 46.7798425 ], + [ 7.9480745, 46.780147 ], + [ 7.9480948, 46.7803832 ], + [ 7.9481959, 46.7806061 ], + [ 7.9482479999999995, 46.7808359 ], + [ 7.9481988, 46.781000399999996 ], + [ 7.9481251, 46.7811656 ], + [ 7.9480227, 46.7812413 ], + [ 7.9478078, 46.7813647 ], + [ 7.9476349, 46.7815208 ], + [ 7.9474302, 46.7816833 ], + [ 7.9473554, 46.781826 ], + [ 7.9472755, 46.7820364 ], + [ 7.9471516, 46.7823435 ], + [ 7.9471279, 46.7826934 ], + [ 7.9472105, 46.7830408 ], + [ 7.9473657, 46.7833527 ], + [ 7.9476367, 46.7837012 ], + [ 7.9477511, 46.7838563 ], + [ 7.9477297, 46.78393 ], + [ 7.9475895, 46.7840799 ], + [ 7.9474656, 46.7842237 ], + [ 7.9474256, 46.7844049 ], + [ 7.9474653, 46.7845335 ], + [ 7.9475809, 46.7847337 ], + [ 7.9477638, 46.7851125 ], + [ 7.9479089, 46.7852274 ], + [ 7.9480141, 46.7853545 ], + [ 7.9480683, 46.7854603 ], + [ 7.9480753, 46.7856009 ], + [ 7.9480507, 46.7857705 ], + [ 7.947981, 46.7860088 ], + [ 7.947939, 46.7861619 ], + [ 7.9479971, 46.7863353 ], + [ 7.9480842, 46.7864515 ], + [ 7.9482231, 46.7866004 ], + [ 7.94835, 46.7866876 ], + [ 7.9485133999999995, 46.7868302 ], + [ 7.9487077, 46.7871242 ], + [ 7.9488774, 46.7874021 ], + [ 7.9490726, 46.7877017 ], + [ 7.949278, 46.7880463 ], + [ 7.9494232, 46.7881668 ], + [ 7.9496952, 46.7883575 ], + [ 7.9499835, 46.7885536 ], + [ 7.9502892, 46.7887605 ], + [ 7.9505112, 46.7887834 ], + [ 7.9508835, 46.7888536 ], + [ 7.9511751, 46.7889538 ], + [ 7.9514736, 46.7891835 ], + [ 7.9518436999999995, 46.7895353 ], + [ 7.9519879, 46.7896446 ], + [ 7.9520964, 46.7896815 ], + [ 7.9522701, 46.7897056 ], + [ 7.9525985, 46.7897204 ], + [ 7.9530925, 46.7897595 ], + [ 7.9534607, 46.7899087 ], + [ 7.9536561, 46.7900618 ], + [ 7.9537889, 46.7902446 ], + [ 7.9537869, 46.7903855 ], + [ 7.9536772, 46.7906417 ], + [ 7.9536393, 46.790873500000004 ], + [ 7.9539869, 46.7916953 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "JBG0003", + "country" : "CHE", + "name" : [ + { + "text" : "Eidgenössisches Jagdbanngebiet Augstmatthorn", + "lang" : "de-CH" + }, + { + "text" : "District franc fédéral Augstmatthorn", + "lang" : "fr-CH" + }, + { + "text" : "Bandita federale di caccia Augstmatthorn", + "lang" : "it-CH" + }, + { + "text" : "Federal Game Reserve Augstmatthorn", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.974811, 46.3318139 ], + [ 8.9748017, 46.3316727 ], + [ 8.9747817, 46.3315321 ], + [ 8.9747512, 46.3313924 ], + [ 8.9747101, 46.331254 ], + [ 8.9746586, 46.3311173 ], + [ 8.9745968, 46.3309827 ], + [ 8.974525, 46.3308504 ], + [ 8.9744433, 46.330721 ], + [ 8.9743519, 46.3305947 ], + [ 8.9742511, 46.3304718 ], + [ 8.9741411, 46.3303528 ], + [ 8.9740223, 46.330238 ], + [ 8.973895, 46.3301276 ], + [ 8.9737595, 46.330022 ], + [ 8.9736163, 46.3299214 ], + [ 8.9734656, 46.3298262 ], + [ 8.973308, 46.3297366 ], + [ 8.9731438, 46.3296528 ], + [ 8.9729734, 46.329575 ], + [ 8.9727975, 46.3295036 ], + [ 8.9726164, 46.3294386 ], + [ 8.9724306, 46.3293803 ], + [ 8.9722407, 46.3293288 ], + [ 8.9720471, 46.3292842 ], + [ 8.9718505, 46.3292467 ], + [ 8.9716513, 46.3292165 ], + [ 8.97145, 46.3291934 ], + [ 8.9712474, 46.3291777 ], + [ 8.9710437, 46.3291694 ], + [ 8.9708398, 46.3291685 ], + [ 8.970636, 46.3291749 ], + [ 8.9704331, 46.3291887 ], + [ 8.9702314, 46.3292099 ], + [ 8.9700316, 46.3292384 ], + [ 8.9698343, 46.329274 ], + [ 8.9696399, 46.3293168 ], + [ 8.969449000000001, 46.3293665 ], + [ 8.9692621, 46.3294231 ], + [ 8.9690798, 46.3294865 ], + [ 8.9689025, 46.3295563 ], + [ 8.9687307, 46.3296324 ], + [ 8.9685649, 46.3297147 ], + [ 8.9684055, 46.3298029 ], + [ 8.9682531, 46.3298967 ], + [ 8.9681079, 46.329996 ], + [ 8.9679704, 46.3301003 ], + [ 8.967841, 46.3302095 ], + [ 8.96772, 46.3303233 ], + [ 8.9676078, 46.3304413 ], + [ 8.9675046, 46.3305631 ], + [ 8.9674108, 46.3306886 ], + [ 8.9673266, 46.3308173 ], + [ 8.9672522, 46.3309488 ], + [ 8.9671879, 46.3310829 ], + [ 8.9671338, 46.3312191 ], + [ 8.9670901, 46.3313571 ], + [ 8.9670568, 46.3314965 ], + [ 8.9670341, 46.3316369 ], + [ 8.9670221, 46.331778 ], + [ 8.967020699999999, 46.3319193 ], + [ 8.96703, 46.3320604 ], + [ 8.96705, 46.332201 ], + [ 8.9670805, 46.3323407 ], + [ 8.9671216, 46.3324791 ], + [ 8.9671731, 46.3326158 ], + [ 8.9672348, 46.3327505 ], + [ 8.9673066, 46.3328827 ], + [ 8.9673883, 46.3330122 ], + [ 8.9674797, 46.3331385 ], + [ 8.9675805, 46.3332613 ], + [ 8.9676905, 46.3333803 ], + [ 8.9678093, 46.3334952 ], + [ 8.9679366, 46.3336056 ], + [ 8.968072, 46.3337112 ], + [ 8.9682153, 46.3338118 ], + [ 8.968366, 46.333907 ], + [ 8.9685236, 46.3339967 ], + [ 8.9686878, 46.3340805 ], + [ 8.9688581, 46.3341582 ], + [ 8.9690341, 46.3342297 ], + [ 8.9692152, 46.3342946 ], + [ 8.969401, 46.334353 ], + [ 8.969591, 46.3344045 ], + [ 8.9697845, 46.334449 ], + [ 8.9699812, 46.3344865 ], + [ 8.9701804, 46.3345168 ], + [ 8.9703817, 46.3345398 ], + [ 8.9705844, 46.3345555 ], + [ 8.970788, 46.3345639 ], + [ 8.970992, 46.3345648 ], + [ 8.971195699999999, 46.3345584 ], + [ 8.9713987, 46.3345445 ], + [ 8.9716004, 46.3345233 ], + [ 8.9718002, 46.3344949 ], + [ 8.9719976, 46.3344592 ], + [ 8.972192, 46.3344165 ], + [ 8.9723829, 46.3343667 ], + [ 8.9725698, 46.3343101 ], + [ 8.9727521, 46.3342468 ], + [ 8.9729294, 46.334177 ], + [ 8.9731012, 46.3341008 ], + [ 8.9732671, 46.3340185 ], + [ 8.9734264, 46.3339303 ], + [ 8.9735789, 46.3338365 ], + [ 8.9737241, 46.3337372 ], + [ 8.9738616, 46.3336329 ], + [ 8.973991, 46.3335236 ], + [ 8.974112, 46.3334099 ], + [ 8.9742242, 46.3332919 ], + [ 8.9743273, 46.33317 ], + [ 8.9744211, 46.3330446 ], + [ 8.9745053, 46.3329159 ], + [ 8.9745797, 46.3327843 ], + [ 8.974644, 46.3326502 ], + [ 8.9746981, 46.332514 ], + [ 8.9747418, 46.332376 ], + [ 8.974775, 46.3322366 ], + [ 8.9747977, 46.3320962 ], + [ 8.9748097, 46.3319551 ], + [ 8.974811, 46.3318139 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0057", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Iragna", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Iragna", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Iragna", + "lang" : "it-CH" + }, + { + "text" : "Substation Iragna", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.4303792, 46.7345405 ], + [ 9.4303686, 46.7343994 ], + [ 9.4303473, 46.7342589 ], + [ 9.4303153, 46.7341193 ], + [ 9.4302727, 46.7339811 ], + [ 9.4302197, 46.7338446 ], + [ 9.4301563, 46.7337102 ], + [ 9.4300828, 46.7335782 ], + [ 9.4299994, 46.7334491 ], + [ 9.4299063, 46.7333232 ], + [ 9.4298037, 46.7332008 ], + [ 9.4296919, 46.7330822 ], + [ 9.4295712, 46.7329679 ], + [ 9.429442, 46.732858 ], + [ 9.4293047, 46.7327529 ], + [ 9.4291595, 46.7326529 ], + [ 9.4290069, 46.7325583 ], + [ 9.4288473, 46.7324693 ], + [ 9.4286812, 46.7323862 ], + [ 9.4285089, 46.7323091 ], + [ 9.4283311, 46.7322384 ], + [ 9.428148, 46.7321741 ], + [ 9.4279604, 46.7321166 ], + [ 9.4277686, 46.7320658 ], + [ 9.4275733, 46.732022 ], + [ 9.4273748, 46.7319854 ], + [ 9.4271739, 46.7319559 ], + [ 9.4269709, 46.7319337 ], + [ 9.4267666, 46.7319188 ], + [ 9.4265614, 46.7319113 ], + [ 9.4263559, 46.7319112 ], + [ 9.4261507, 46.7319184 ], + [ 9.4259464, 46.7319331 ], + [ 9.4257434, 46.7319551 ], + [ 9.4255424, 46.7319843 ], + [ 9.4253438, 46.7320208 ], + [ 9.4251484, 46.7320643 ], + [ 9.4249565, 46.7321149 ], + [ 9.4247687, 46.7321722 ], + [ 9.4245855, 46.7322362 ], + [ 9.4244075, 46.7323068 ], + [ 9.4242351, 46.7323836 ], + [ 9.4240687, 46.7324666 ], + [ 9.4239089, 46.7325554 ], + [ 9.4237561, 46.7326498 ], + [ 9.4236107, 46.7327497 ], + [ 9.4234731, 46.7328546 ], + [ 9.4233436, 46.7329643 ], + [ 9.4232227, 46.7330785 ], + [ 9.4231106, 46.733197 ], + [ 9.4230077, 46.7333193 ], + [ 9.4229143, 46.7334451 ], + [ 9.4228306, 46.7335741 ], + [ 9.4227567, 46.733706 ], + [ 9.4226931, 46.7338403 ], + [ 9.4226397, 46.7339767 ], + [ 9.4225968, 46.7341149 ], + [ 9.4225645, 46.7342544 ], + [ 9.4225428, 46.7343949 ], + [ 9.4225319, 46.734536 ], + [ 9.4225317, 46.7346773 ], + [ 9.4225423, 46.7348184 ], + [ 9.4225636, 46.7349589 ], + [ 9.4225956, 46.7350985 ], + [ 9.4226381, 46.7352367 ], + [ 9.4226911, 46.7353732 ], + [ 9.4227545, 46.7355076 ], + [ 9.4228279, 46.7356396 ], + [ 9.422911299999999, 46.7357687 ], + [ 9.4230045, 46.7358947 ], + [ 9.4231071, 46.7360171 ], + [ 9.4232188, 46.7361356 ], + [ 9.4233395, 46.73625 ], + [ 9.4234687, 46.7363599 ], + [ 9.423606, 46.736465 ], + [ 9.4237512, 46.736565 ], + [ 9.4239038, 46.7366596 ], + [ 9.4240634, 46.7367486 ], + [ 9.4242296, 46.7368317 ], + [ 9.4244018, 46.7369088 ], + [ 9.4245797, 46.7369795 ], + [ 9.4247627, 46.7370438 ], + [ 9.4249504, 46.7371014 ], + [ 9.4251421, 46.7371521 ], + [ 9.4253375, 46.7371959 ], + [ 9.425536, 46.7372326 ], + [ 9.425737, 46.7372621 ], + [ 9.4259399, 46.7372843 ], + [ 9.4261443, 46.7372992 ], + [ 9.4263495, 46.7373067 ], + [ 9.426555, 46.7373068 ], + [ 9.4267602, 46.7372995 ], + [ 9.4269646, 46.7372849 ], + [ 9.4271676, 46.7372629 ], + [ 9.4273686, 46.7372336 ], + [ 9.4275672, 46.7371972 ], + [ 9.4277626, 46.7371536 ], + [ 9.4279546, 46.7371031 ], + [ 9.4281424, 46.7370457 ], + [ 9.4283255, 46.7369817 ], + [ 9.428503599999999, 46.7369111 ], + [ 9.428676, 46.7368343 ], + [ 9.4288424, 46.7367513 ], + [ 9.4290022, 46.7366625 ], + [ 9.429155, 46.736568 ], + [ 9.4293004, 46.7364682 ], + [ 9.429438, 46.7363633 ], + [ 9.4295675, 46.7362536 ], + [ 9.4296884, 46.7361393 ], + [ 9.4298005, 46.7360209 ], + [ 9.4299034, 46.7358986 ], + [ 9.4299968, 46.7357727 ], + [ 9.4300805, 46.7356437 ], + [ 9.4301543, 46.7355118 ], + [ 9.430218, 46.7353775 ], + [ 9.4302713, 46.7352411 ], + [ 9.4303142, 46.7351029 ], + [ 9.4303465, 46.7349634 ], + [ 9.4303681, 46.7348229 ], + [ 9.430379, 46.7346818 ], + [ 9.4303792, 46.7345405 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "REA0001", + "country" : "CHE", + "name" : [ + { + "text" : "JVA Realta", + "lang" : "de-CH" + }, + { + "text" : "JVA Realta", + "lang" : "fr-CH" + }, + { + "text" : "JVA Realta", + "lang" : "it-CH" + }, + { + "text" : "JVA Realta", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Justizvollzugsanstalt Realta", + "lang" : "de-CH" + }, + { + "text" : "Établissement pénitentiaire Realta", + "lang" : "fr-CH" + }, + { + "text" : "Penitenziario Realta", + "lang" : "it-CH" + }, + { + "text" : "Realta prison", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Betreuung und Sicherheit", + "lang" : "de-CH" + }, + { + "text" : "Entretien et sécurité", + "lang" : "fr-CH" + }, + { + "text" : "Cura & sicurezza", + "lang" : "it-CH" + }, + { + "text" : "Care & Security", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Beat Trepp", + "lang" : "de-CH" + }, + { + "text" : "Beat Trepp", + "lang" : "fr-CH" + }, + { + "text" : "Beat Trepp", + "lang" : "it-CH" + }, + { + "text" : "Beat Trepp", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ajv.gr.ch", + "email" : "info@realta.gr.ch", + "phone" : "0041812574646", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8283114, 47.3922516 ], + [ 7.828328, 47.392244 ], + [ 7.8285983, 47.3923218 ], + [ 7.8288913, 47.3923491 ], + [ 7.8295459, 47.3918316 ], + [ 7.8297827, 47.3916215 ], + [ 7.8300256, 47.3914508 ], + [ 7.8302338, 47.3913028 ], + [ 7.830501, 47.3910464 ], + [ 7.8309908, 47.3907254 ], + [ 7.8310692, 47.390674 ], + [ 7.8315521, 47.3909512 ], + [ 7.831887, 47.3910185 ], + [ 7.832105, 47.3910619 ], + [ 7.8321205, 47.3910267 ], + [ 7.8323903999999995, 47.3910664 ], + [ 7.8328282, 47.3910855 ], + [ 7.8335908, 47.3912288 ], + [ 7.8339302, 47.3913803 ], + [ 7.8343631, 47.3914734 ], + [ 7.8346987, 47.391579 ], + [ 7.8350025, 47.3917184 ], + [ 7.8352369, 47.3918796 ], + [ 7.8355505999999995, 47.3919395 ], + [ 7.8358185, 47.3919591 ], + [ 7.8358038, 47.3920145 ], + [ 7.8362935, 47.3921358 ], + [ 7.8367602, 47.392195 ], + [ 7.8370445, 47.3922252 ], + [ 7.8373472, 47.392299 ], + [ 7.8373842, 47.3923182 ], + [ 7.8374349, 47.3923014 ], + [ 7.8375433999999995, 47.3923311 ], + [ 7.8376228999999995, 47.3923657 ], + [ 7.8378175, 47.392451 ], + [ 7.8380316, 47.3925471 ], + [ 7.8381746, 47.3925784 ], + [ 7.8383078, 47.392591 ], + [ 7.8384736, 47.3925917 ], + [ 7.8386154, 47.3925597 ], + [ 7.8386963, 47.3924684 ], + [ 7.8387595999999995, 47.3924495 ], + [ 7.8387797, 47.392451 ], + [ 7.8388, 47.3924514 ], + [ 7.8388203, 47.3924505 ], + [ 7.8388404, 47.3924485 ], + [ 7.8388602, 47.3924452 ], + [ 7.8388794, 47.3924409 ], + [ 7.8388632, 47.3924095 ], + [ 7.838882, 47.3923661 ], + [ 7.8389275, 47.3922792 ], + [ 7.8389051, 47.3922627 ], + [ 7.8387964, 47.392192 ], + [ 7.838742, 47.3921587 ], + [ 7.8385856, 47.3920833 ], + [ 7.8384701, 47.3920334 ], + [ 7.8382728, 47.3919482 ], + [ 7.8380864, 47.3918795 ], + [ 7.8379370999999995, 47.3918343 ], + [ 7.8379403, 47.3918283 ], + [ 7.8379428, 47.3918221 ], + [ 7.8379445, 47.3918158 ], + [ 7.8379454, 47.3918095 ], + [ 7.8379455, 47.3918031 ], + [ 7.8379448, 47.3917967 ], + [ 7.8379433, 47.3917904 ], + [ 7.8379373999999995, 47.3917787 ], + [ 7.83793, 47.3917675 ], + [ 7.8379211, 47.3917567 ], + [ 7.8379107999999995, 47.3917466 ], + [ 7.8378992, 47.3917371 ], + [ 7.8378863, 47.3917284 ], + [ 7.8378723, 47.3917205 ], + [ 7.8378574, 47.3917135 ], + [ 7.8377869, 47.3916878 ], + [ 7.8376923, 47.3916545 ], + [ 7.8376523, 47.3916396 ], + [ 7.8376248, 47.3916282 ], + [ 7.8376199, 47.391625 ], + [ 7.8376154, 47.3916216 ], + [ 7.8376114, 47.3916179 ], + [ 7.8376079, 47.391614 ], + [ 7.8376049, 47.3916099 ], + [ 7.8376024, 47.3916056 ], + [ 7.8376003999999995, 47.3916012 ], + [ 7.837599, 47.3915967 ], + [ 7.8375982, 47.3915922 ], + [ 7.837598, 47.3915876 ], + [ 7.8375983, 47.391583 ], + [ 7.8375993, 47.3915785 ], + [ 7.8376002, 47.3915754 ], + [ 7.8376016, 47.3915724 ], + [ 7.8376033, 47.3915694 ], + [ 7.8376054, 47.3915666 ], + [ 7.8376078, 47.3915639 ], + [ 7.8376517, 47.3915137 ], + [ 7.8376082, 47.3914941 ], + [ 7.8375628, 47.3914693 ], + [ 7.8375211, 47.3914418 ], + [ 7.8374833, 47.3914118 ], + [ 7.8374498, 47.3913795 ], + [ 7.8374208, 47.3913452 ], + [ 7.8373521, 47.3912543 ], + [ 7.8373391, 47.3912344 ], + [ 7.8373286, 47.3912137 ], + [ 7.8373207, 47.3911926 ], + [ 7.8373155, 47.391171 ], + [ 7.837313, 47.3911493 ], + [ 7.8373131, 47.3911274 ], + [ 7.8373179, 47.391073 ], + [ 7.8373287, 47.3910275 ], + [ 7.8373433, 47.3909806 ], + [ 7.8373981, 47.3908395 ], + [ 7.8374, 47.3908262 ], + [ 7.8374003, 47.3908128 ], + [ 7.8373989, 47.3907995 ], + [ 7.8373959, 47.3907862 ], + [ 7.8373912, 47.3907732 ], + [ 7.8373849, 47.3907605 ], + [ 7.837377, 47.3907483 ], + [ 7.8373676, 47.3907365 ], + [ 7.8373568, 47.3907253 ], + [ 7.8373447, 47.3907147 ], + [ 7.8373311999999995, 47.3907049 ], + [ 7.8373166, 47.3906959 ], + [ 7.8373009, 47.3906878 ], + [ 7.8372843, 47.3906806 ], + [ 7.8372668, 47.3906744 ], + [ 7.8370931, 47.3906256 ], + [ 7.8369347, 47.3905787 ], + [ 7.8367959, 47.390534 ], + [ 7.8365066, 47.390445 ], + [ 7.836375, 47.3904071 ], + [ 7.8362233, 47.3903718 ], + [ 7.8360844, 47.3903402 ], + [ 7.8359702, 47.3903196 ], + [ 7.8358111, 47.3902936 ], + [ 7.8356213, 47.3902528 ], + [ 7.8355036, 47.3902281 ], + [ 7.8353575, 47.390205 ], + [ 7.8352331, 47.3901786 ], + [ 7.8351115, 47.3901523 ], + [ 7.8349333, 47.3901123 ], + [ 7.834834, 47.3900917 ], + [ 7.8347175, 47.3900677 ], + [ 7.8346079, 47.390046 ], + [ 7.8345384, 47.390029 ], + [ 7.8344704, 47.3900094 ], + [ 7.834404, 47.3899874 ], + [ 7.8343384, 47.3899671 ], + [ 7.8342314, 47.389934 ], + [ 7.8341265, 47.3898953 ], + [ 7.8340015, 47.3898411 ], + [ 7.8337911, 47.3897446 ], + [ 7.8336328, 47.3896708 ], + [ 7.8333379999999995, 47.3895364 ], + [ 7.8331529, 47.3894429 ], + [ 7.8330725, 47.3894051 ], + [ 7.8329605, 47.3893593 ], + [ 7.8328728, 47.3893249 ], + [ 7.8327974, 47.3892937 ], + [ 7.8326416, 47.3892348 ], + [ 7.8325329, 47.3891936 ], + [ 7.8324226, 47.3891544 ], + [ 7.8323108, 47.3891172 ], + [ 7.8322586, 47.3891024 ], + [ 7.8321507, 47.3890775 ], + [ 7.8321155000000005, 47.3890706 ], + [ 7.8320796, 47.3890659 ], + [ 7.8320431, 47.3890635 ], + [ 7.8320065, 47.3890635 ], + [ 7.83197, 47.3890658 ], + [ 7.8319271, 47.38907 ], + [ 7.8319107, 47.3890712 ], + [ 7.8318946, 47.3890732 ], + [ 7.8318788, 47.3890763 ], + [ 7.8318634, 47.3890802 ], + [ 7.8318486, 47.3890851 ], + [ 7.8318344, 47.3890908 ], + [ 7.8318211, 47.3890973 ], + [ 7.8318086000000005, 47.3891046 ], + [ 7.8317972000000005, 47.3891126 ], + [ 7.8317868, 47.3891213 ], + [ 7.8317775, 47.3891305 ], + [ 7.8310607, 47.3883461 ], + [ 7.8303164, 47.3868062 ], + [ 7.8288655, 47.3847376 ], + [ 7.8286595, 47.384425 ], + [ 7.8283301, 47.3844357 ], + [ 7.8281867, 47.3845065 ], + [ 7.8281382, 47.3846224 ], + [ 7.8281126, 47.3850158 ], + [ 7.8281388, 47.3851043 ], + [ 7.8282126, 47.3852291 ], + [ 7.8282494, 47.3854715 ], + [ 7.8282256, 47.3856684 ], + [ 7.828164, 47.3858 ], + [ 7.8280268, 47.3859038 ], + [ 7.8276806, 47.3861209 ], + [ 7.8276309, 47.3862016 ], + [ 7.8276243999999995, 47.3862898 ], + [ 7.8278308, 47.386466 ], + [ 7.8278263, 47.3866407 ], + [ 7.8276398, 47.3868236 ], + [ 7.8275103, 47.3872094 ], + [ 7.8269988, 47.3873863 ], + [ 7.8269458, 47.3873844 ], + [ 7.8269424, 47.3872828 ], + [ 7.8269217, 47.3871814 ], + [ 7.8268851999999995, 47.3870827 ], + [ 7.8268127, 47.3869427 ], + [ 7.8258605, 47.3872488 ], + [ 7.8256616999999995, 47.3871254 ], + [ 7.825497, 47.3871181 ], + [ 7.8253524, 47.3870068 ], + [ 7.8253208, 47.386982 ], + [ 7.8249867, 47.3866692 ], + [ 7.8249433, 47.3866546 ], + [ 7.8247173, 47.3865766 ], + [ 7.8242715, 47.3865352 ], + [ 7.8239653, 47.3865682 ], + [ 7.8236045, 47.3865184 ], + [ 7.823424, 47.3864078 ], + [ 7.8230044, 47.3863559 ], + [ 7.822972, 47.3864969 ], + [ 7.8227514, 47.3867603 ], + [ 7.8224795, 47.3868459 ], + [ 7.8222892, 47.386915 ], + [ 7.8222475, 47.3870348 ], + [ 7.8221747, 47.3871407 ], + [ 7.8221418, 47.3871616 ], + [ 7.8220969, 47.3871612 ], + [ 7.8220668, 47.3871785 ], + [ 7.8219821, 47.3872883 ], + [ 7.8219401, 47.3873326 ], + [ 7.8218818, 47.387364 ], + [ 7.821819, 47.3873827 ], + [ 7.8218142, 47.3873854 ], + [ 7.82181, 47.3873885 ], + [ 7.8218064, 47.3873919 ], + [ 7.8218035, 47.3873957 ], + [ 7.8218013, 47.3873996 ], + [ 7.8218, 47.3874038 ], + [ 7.8217994, 47.387408 ], + [ 7.8217997, 47.3874122 ], + [ 7.8218008, 47.3874164 ], + [ 7.8218171, 47.3875126 ], + [ 7.8218504, 47.387626 ], + [ 7.8218587, 47.3876999 ], + [ 7.8218148, 47.387713 ], + [ 7.8214106999999995, 47.3875046 ], + [ 7.8209857, 47.3872819 ], + [ 7.8203505, 47.3871528 ], + [ 7.8202909, 47.3872465 ], + [ 7.8199938, 47.3872548 ], + [ 7.8196939, 47.3872633 ], + [ 7.8196882, 47.3872634 ], + [ 7.8195941, 47.3873194 ], + [ 7.8193496, 47.3875368 ], + [ 7.8193022, 47.3875131 ], + [ 7.8193084, 47.3875048 ], + [ 7.8193139, 47.3874962 ], + [ 7.8193184, 47.3874874 ], + [ 7.819322, 47.3874785 ], + [ 7.8193247, 47.3874694 ], + [ 7.8193265, 47.3874601 ], + [ 7.8193273, 47.3874508 ], + [ 7.8193272, 47.3874415 ], + [ 7.8193262, 47.3874323 ], + [ 7.8193242, 47.3874231 ], + [ 7.8193213, 47.387414 ], + [ 7.8193174, 47.387405 ], + [ 7.8193127, 47.3873963 ], + [ 7.8193071, 47.3873878 ], + [ 7.8193006, 47.3873796 ], + [ 7.8192933, 47.3873717 ], + [ 7.8192853, 47.3873642 ], + [ 7.8192765, 47.3873571 ], + [ 7.819267, 47.3873504 ], + [ 7.8184924, 47.3868596 ], + [ 7.8184831, 47.3868542 ], + [ 7.8184732, 47.3868493 ], + [ 7.8184628, 47.3868449 ], + [ 7.818452, 47.386841 ], + [ 7.8184407, 47.3868377 ], + [ 7.8184292, 47.386835 ], + [ 7.8184173, 47.3868328 ], + [ 7.8184053, 47.3868313 ], + [ 7.8183931, 47.3868303 ], + [ 7.8183809, 47.38683 ], + [ 7.8183687, 47.3868303 ], + [ 7.8183565, 47.3868312 ], + [ 7.8183444, 47.3868327 ], + [ 7.8176061, 47.387343 ], + [ 7.8176242, 47.3878353 ], + [ 7.8177324, 47.387944 ], + [ 7.8177855, 47.3879632 ], + [ 7.8177446, 47.3880374 ], + [ 7.817704, 47.3883421 ], + [ 7.8177832, 47.3886767 ], + [ 7.8178211, 47.3887867 ], + [ 7.817894, 47.3887789 ], + [ 7.8180986, 47.3887362 ], + [ 7.8183079, 47.3886565 ], + [ 7.8186219, 47.3885761 ], + [ 7.8185994, 47.3884585 ], + [ 7.8186, 47.3883239 ], + [ 7.8186307, 47.3881902 ], + [ 7.8186941, 47.3880525 ], + [ 7.8187423, 47.3879974 ], + [ 7.8187932, 47.388018 ], + [ 7.8188196, 47.3880921 ], + [ 7.8191401, 47.3888651 ], + [ 7.8192224, 47.3893556 ], + [ 7.8192844, 47.3895225 ], + [ 7.8196198, 47.3901517 ], + [ 7.8197297, 47.3902932 ], + [ 7.8199412, 47.3905071 ], + [ 7.8200346, 47.3906872 ], + [ 7.8200383, 47.3908788 ], + [ 7.8199331, 47.3911994 ], + [ 7.8199091, 47.3912634 ], + [ 7.8198910999999995, 47.3913007 ], + [ 7.8198665, 47.3913437 ], + [ 7.819864, 47.3913482 ], + [ 7.8198531, 47.3913639 ], + [ 7.8198398000000005, 47.3913789 ], + [ 7.8198243, 47.3913928 ], + [ 7.8198069, 47.3914054 ], + [ 7.8197875, 47.3914169 ], + [ 7.8197664, 47.3914268 ], + [ 7.8197618, 47.3914293 ], + [ 7.8197475, 47.3914377 ], + [ 7.8197349, 47.391447 ], + [ 7.8197236, 47.3914573 ], + [ 7.819714, 47.3914682 ], + [ 7.8197062, 47.3914798 ], + [ 7.8195609, 47.3917071 ], + [ 7.8195352, 47.3917482 ], + [ 7.8194446, 47.3918362 ], + [ 7.8191887, 47.3920192 ], + [ 7.8189444, 47.3922701 ], + [ 7.8188051, 47.3923691 ], + [ 7.818699, 47.3924162 ], + [ 7.8185629, 47.3924567 ], + [ 7.8183734, 47.392459 ], + [ 7.8182775, 47.392484 ], + [ 7.8182157, 47.3925409 ], + [ 7.8181864, 47.3926091 ], + [ 7.8187024, 47.3927685 ], + [ 7.8186874, 47.3928032 ], + [ 7.8193222, 47.3929647 ], + [ 7.8198518, 47.3930206 ], + [ 7.8207148, 47.39308 ], + [ 7.821057, 47.3930804 ], + [ 7.8217286, 47.3930523 ], + [ 7.8227607, 47.3929434 ], + [ 7.8230512, 47.3929256 ], + [ 7.8233732, 47.3929548 ], + [ 7.8237368, 47.3929726 ], + [ 7.8238437, 47.3929279 ], + [ 7.8238859, 47.3928523 ], + [ 7.8239865, 47.3925105 ], + [ 7.8241161, 47.3922546 ], + [ 7.82419, 47.3920663 ], + [ 7.8245369, 47.39184 ], + [ 7.8250454, 47.3916817 ], + [ 7.8253886999999995, 47.3919392 ], + [ 7.8260133, 47.3917566 ], + [ 7.8263561, 47.3918526 ], + [ 7.8264028, 47.3918616 ], + [ 7.8265188, 47.3918923 ], + [ 7.8266822, 47.3919332 ], + [ 7.8267602, 47.3919479 ], + [ 7.8270772, 47.3919973 ], + [ 7.8274292, 47.3920531 ], + [ 7.8275615, 47.3920734 ], + [ 7.8277134, 47.3920965 ], + [ 7.8278345, 47.3921163 ], + [ 7.828006, 47.3921453 ], + [ 7.8281236, 47.3921667 ], + [ 7.8281355999999995, 47.3921701 ], + [ 7.8281472, 47.3921741 ], + [ 7.8281583999999995, 47.3921785 ], + [ 7.8281692, 47.3921834 ], + [ 7.8281796, 47.3921887 ], + [ 7.8281895, 47.3921944 ], + [ 7.8281988, 47.3922006 ], + [ 7.828221, 47.3922132 ], + [ 7.8282521, 47.3922289 ], + [ 7.8282678, 47.3922358 ], + [ 7.8282839, 47.3922422 ], + [ 7.8283005, 47.3922481 ], + [ 7.8283114, 47.3922516 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns181", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Schanz - Walten", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Schanz - Walten", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Schanz - Walten", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Schanz - Walten", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4177988, 47.4040322 ], + [ 7.4177114, 47.4037509 ], + [ 7.4176383999999995, 47.4035639 ], + [ 7.4176081, 47.4034863 ], + [ 7.4180530000000005, 47.4035199 ], + [ 7.4182527, 47.4035451 ], + [ 7.4186039, 47.4035933 ], + [ 7.4188722, 47.4036127 ], + [ 7.4189038, 47.4036188 ], + [ 7.4188989, 47.403704 ], + [ 7.4188745, 47.4041274 ], + [ 7.4188705, 47.4041966 ], + [ 7.4192114, 47.4042262 ], + [ 7.4196206, 47.4042608 ], + [ 7.4197443, 47.4042208 ], + [ 7.4198544, 47.4041822 ], + [ 7.4199554, 47.4041328 ], + [ 7.4200967, 47.4040539 ], + [ 7.4201221, 47.40404 ], + [ 7.4201322, 47.4040426 ], + [ 7.4202621, 47.4040065 ], + [ 7.4204265, 47.4039792 ], + [ 7.4206584, 47.4039507 ], + [ 7.4208687, 47.4039123 ], + [ 7.4209391, 47.4039 ], + [ 7.4211766, 47.4038524 ], + [ 7.4214413, 47.403785 ], + [ 7.4216584, 47.4037154 ], + [ 7.4218548, 47.403631 ], + [ 7.4220257, 47.403522 ], + [ 7.4222295, 47.403373 ], + [ 7.4222487, 47.4033599 ], + [ 7.4224673, 47.4032104 ], + [ 7.4227209, 47.4030322 ], + [ 7.4229007, 47.4029327 ], + [ 7.4229618, 47.4029051 ], + [ 7.4230792, 47.4028522 ], + [ 7.4232872, 47.4027506 ], + [ 7.423393, 47.4026997 ], + [ 7.423505, 47.4026552 ], + [ 7.4236222, 47.4026176 ], + [ 7.4238049, 47.4025617 ], + [ 7.4239095, 47.4025297 ], + [ 7.4240917, 47.4024669 ], + [ 7.4242775, 47.4023882 ], + [ 7.4245354, 47.4022757 ], + [ 7.4247878, 47.4021773 ], + [ 7.424926, 47.4021274 ], + [ 7.4251158, 47.4020703 ], + [ 7.4251439, 47.402059 ], + [ 7.4251704, 47.4020461 ], + [ 7.4251953, 47.4020317 ], + [ 7.4252183, 47.402016 ], + [ 7.4253292, 47.4018822 ], + [ 7.4253744, 47.4017906 ], + [ 7.4254683, 47.4014165 ], + [ 7.4255053, 47.4012593 ], + [ 7.4254916, 47.401227 ], + [ 7.4255592, 47.4008958 ], + [ 7.4253964, 47.4008996 ], + [ 7.4253528, 47.4008971 ], + [ 7.4251091, 47.4008119 ], + [ 7.4249656, 47.4005184 ], + [ 7.4254475, 47.4004361 ], + [ 7.4254497, 47.4004219 ], + [ 7.4254527, 47.4004079 ], + [ 7.4254565, 47.4003939 ], + [ 7.4254609, 47.40038 ], + [ 7.4254660999999995, 47.4003663 ], + [ 7.425472, 47.4003526 ], + [ 7.4254787, 47.4003392 ], + [ 7.425486, 47.4003259 ], + [ 7.4254939, 47.4003129 ], + [ 7.4255025, 47.4003002 ], + [ 7.4255117, 47.4002876 ], + [ 7.4255215, 47.4002753 ], + [ 7.4255689, 47.4001889 ], + [ 7.4256014, 47.4001366 ], + [ 7.4256156, 47.4000899 ], + [ 7.4256221, 47.400047 ], + [ 7.4256217, 47.3999899 ], + [ 7.4256152, 47.3999764 ], + [ 7.4256037, 47.3999529 ], + [ 7.4255714, 47.399863 ], + [ 7.4255359, 47.3997709 ], + [ 7.4255035, 47.3996747 ], + [ 7.4254902, 47.3995897 ], + [ 7.4254949, 47.3995151 ], + [ 7.4255143, 47.3994443 ], + [ 7.4255369, 47.399385 ], + [ 7.4255661, 47.3993311 ], + [ 7.4255464, 47.3992823 ], + [ 7.4254721, 47.3992201 ], + [ 7.425406, 47.399195 ], + [ 7.4253398, 47.3991844 ], + [ 7.4251712, 47.3991818 ], + [ 7.4249628, 47.3992144 ], + [ 7.4247358, 47.3992495 ], + [ 7.4245013, 47.3992795 ], + [ 7.4242808, 47.3993111 ], + [ 7.4240761, 47.3993439 ], + [ 7.4239370000000005, 47.3993641 ], + [ 7.4237377, 47.3994285 ], + [ 7.4235287, 47.3994777 ], + [ 7.4233793, 47.3994901 ], + [ 7.4232712, 47.3995022 ], + [ 7.4231792, 47.3994945 ], + [ 7.4231048, 47.3994857 ], + [ 7.4231584, 47.3997108 ], + [ 7.4226158, 47.3997327 ], + [ 7.4222589, 47.3997492 ], + [ 7.4217858, 47.399786399999996 ], + [ 7.4215188, 47.3998138 ], + [ 7.4212595, 47.3998426 ], + [ 7.4210408, 47.3998682 ], + [ 7.4208666, 47.399888 ], + [ 7.4206622, 47.3999072 ], + [ 7.4204105, 47.3999199 ], + [ 7.4202001, 47.3999293 ], + [ 7.419946, 47.3999327 ], + [ 7.419754, 47.3999327 ], + [ 7.4195073, 47.3999311 ], + [ 7.4193576, 47.3999324 ], + [ 7.4192895, 47.3999349 ], + [ 7.4192276, 47.3999401 ], + [ 7.4191879, 47.3999539 ], + [ 7.4191528, 47.399981 ], + [ 7.4191407, 47.4000055 ], + [ 7.4191598, 47.4000652 ], + [ 7.4190848, 47.4001279 ], + [ 7.4188637, 47.400204 ], + [ 7.418686, 47.4002586 ], + [ 7.4184007, 47.4003436 ], + [ 7.4180224, 47.4004577 ], + [ 7.4175849, 47.400604 ], + [ 7.4171856, 47.4007389 ], + [ 7.416723, 47.4008954 ], + [ 7.4161346, 47.4011037 ], + [ 7.4161616, 47.4011869 ], + [ 7.4166142, 47.4020981 ], + [ 7.4166865, 47.40207 ], + [ 7.4167356, 47.4021417 ], + [ 7.4169305, 47.4024269 ], + [ 7.4170147, 47.402538 ], + [ 7.4170394, 47.4025714 ], + [ 7.4171081, 47.402766 ], + [ 7.4171754, 47.4029335 ], + [ 7.4172066, 47.4030097 ], + [ 7.4172363, 47.4030822 ], + [ 7.4172413, 47.4030936 ], + [ 7.4171875, 47.4031083 ], + [ 7.4170754, 47.4031388 ], + [ 7.4170376000000005, 47.4030316 ], + [ 7.416874, 47.4026247 ], + [ 7.41677, 47.4024708 ], + [ 7.4165411, 47.4021267 ], + [ 7.4163932, 47.4021858 ], + [ 7.4165738, 47.4024624 ], + [ 7.4166595, 47.4025978 ], + [ 7.4161112, 47.4029314 ], + [ 7.4162089, 47.4029817 ], + [ 7.4162415, 47.4030828 ], + [ 7.4162251999999995, 47.4031816 ], + [ 7.4161907, 47.4032307 ], + [ 7.4161036, 47.4033437 ], + [ 7.416078, 47.4034037 ], + [ 7.4160625, 47.4034401 ], + [ 7.4160435, 47.403541 ], + [ 7.4160506999999996, 47.4036451 ], + [ 7.4160456, 47.4036464 ], + [ 7.416046, 47.403661 ], + [ 7.4160741, 47.40381 ], + [ 7.416092, 47.4038935 ], + [ 7.4163044, 47.403845 ], + [ 7.4166264, 47.4037658 ], + [ 7.4166327, 47.4037818 ], + [ 7.4167728, 47.40414 ], + [ 7.41683, 47.4042864 ], + [ 7.4173511, 47.4041933 ], + [ 7.4175049, 47.4041629 ], + [ 7.4176395, 47.4041363 ], + [ 7.41782, 47.4041006 ], + [ 7.4177988, 47.4040322 ] + ], + [ + [ 7.4189776, 47.4023562 ], + [ 7.4190447, 47.4025557 ], + [ 7.4188097, 47.402532 ], + [ 7.4187066999999995, 47.4023335 ], + [ 7.4184225, 47.4018239 ], + [ 7.4182836, 47.4015751 ], + [ 7.4182212, 47.4015661 ], + [ 7.4181532, 47.4015566 ], + [ 7.4180741, 47.4014504 ], + [ 7.4178302, 47.4011234 ], + [ 7.4176514000000005, 47.4008836 ], + [ 7.4175493, 47.4007468 ], + [ 7.4177538, 47.4006778 ], + [ 7.4179954, 47.4005963 ], + [ 7.4182841, 47.4005212 ], + [ 7.4183637000000004, 47.4006263 ], + [ 7.418674, 47.4010361 ], + [ 7.41879, 47.4011967 ], + [ 7.4188959, 47.4013487 ], + [ 7.4186499, 47.4013748 ], + [ 7.4189028, 47.4016784 ], + [ 7.4190039, 47.4018091 ], + [ 7.4187546, 47.401857 ], + [ 7.4188035, 47.4019884 ], + [ 7.4188541, 47.4021245 ], + [ 7.4188726, 47.4021743 ], + [ 7.4189161, 47.4022502 ], + [ 7.4189776, 47.4023562 ] + ], + [ + [ 7.4173408, 47.4013529 ], + [ 7.4174062, 47.4014359 ], + [ 7.4174045, 47.4014357 ], + [ 7.4173618, 47.4014297 ], + [ 7.4170318, 47.4013831 ], + [ 7.4168231, 47.4011142 ], + [ 7.4167406, 47.4010079 ], + [ 7.4170113, 47.4009242 ], + [ 7.4171062, 47.4010478 ], + [ 7.4173385, 47.4013499 ], + [ 7.4173408, 47.4013529 ] + ], + [ + [ 7.4196975, 47.4027297 ], + [ 7.4196641, 47.4025695 ], + [ 7.4198369, 47.4025112 ], + [ 7.4199453, 47.4024733 ], + [ 7.4200603, 47.4024331 ], + [ 7.4202406, 47.4023712 ], + [ 7.4203776999999995, 47.402324 ], + [ 7.4205203, 47.4022765 ], + [ 7.4205261, 47.4022761 ], + [ 7.4205433, 47.4024582 ], + [ 7.4205501, 47.4027005 ], + [ 7.420543, 47.4027027 ], + [ 7.4205294, 47.4027068 ], + [ 7.4203586999999995, 47.4027592 ], + [ 7.420131, 47.4028472 ], + [ 7.4197571, 47.4029919 ], + [ 7.4197738, 47.403042 ], + [ 7.419195, 47.4030815 ], + [ 7.4185457, 47.403018 ], + [ 7.4185404, 47.4029665 ], + [ 7.4185351, 47.4029151 ], + [ 7.4192158, 47.4029422 ], + [ 7.4197329, 47.402905 ], + [ 7.4196975, 47.4027297 ] + ], + [ + [ 7.4169476, 47.4031736 ], + [ 7.4169725, 47.4032329 ], + [ 7.4171043, 47.4035675 ], + [ 7.4171328, 47.4036405 ], + [ 7.4167698, 47.4037305 ], + [ 7.416738, 47.4036598 ], + [ 7.416661, 47.4034886 ], + [ 7.4165656, 47.4032772 ], + [ 7.4169034, 47.4031857 ], + [ 7.4169476, 47.4031736 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns246", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Andil", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Andil", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Andil", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Andil", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.1529688, 46.5050782 ], + [ 7.1523881, 46.5052588 ], + [ 7.1521289, 46.5053091 ], + [ 7.1517638, 46.5053729 ], + [ 7.1514053, 46.5054026 ], + [ 7.1511039, 46.5054312 ], + [ 7.1507922, 46.5054037 ], + [ 7.1504568, 46.5053992 ], + [ 7.1502191, 46.5053815 ], + [ 7.1500147, 46.50538 ], + [ 7.1498518, 46.5053945 ], + [ 7.149714, 46.5054254 ], + [ 7.149454, 46.5054644 ], + [ 7.1491608, 46.5054873 ], + [ 7.1488356, 46.5055333 ], + [ 7.1485364, 46.5056012 ], + [ 7.1482098, 46.5056191 ], + [ 7.14781, 46.5056272 ], + [ 7.1472731, 46.505683 ], + [ 7.1469991, 46.5055928 ], + [ 7.1468252, 46.5055344 ], + [ 7.1465853, 46.5054773 ], + [ 7.1463144, 46.5054321 ], + [ 7.1460508, 46.5053923 ], + [ 7.1457064, 46.5053767 ], + [ 7.1453214, 46.5053563 ], + [ 7.1449867, 46.505363 ], + [ 7.1446099, 46.5053312 ], + [ 7.1441345, 46.505307 ], + [ 7.1439404, 46.5053616 ], + [ 7.143853, 46.505414 ], + [ 7.1438063, 46.505471299999996 ], + [ 7.1437529, 46.5055569 ], + [ 7.1437564, 46.5056525 ], + [ 7.1437215, 46.505777 ], + [ 7.1436784, 46.5059244 ], + [ 7.1436086, 46.5060216 ], + [ 7.1435486, 46.5061354 ], + [ 7.143384, 46.5063076 ], + [ 7.1432261, 46.5064347 ], + [ 7.1430408, 46.5065117 ], + [ 7.1428585, 46.5066448 ], + [ 7.1426489, 46.5067167 ], + [ 7.1424244, 46.5068113 ], + [ 7.1422148, 46.5068831 ], + [ 7.1419488, 46.5069786 ], + [ 7.1417148, 46.507034 ], + [ 7.141503, 46.5070495 ], + [ 7.1412511, 46.507094 ], + [ 7.1409822, 46.5071219 ], + [ 7.1407956, 46.5071538 ], + [ 7.140543, 46.5071757 ], + [ 7.1403815999999996, 46.5072128 ], + [ 7.1402438, 46.5072382 ], + [ 7.1400912, 46.5073032 ], + [ 7.1399148, 46.5073911 ], + [ 7.1396815, 46.5074747 ], + [ 7.1394481, 46.5075583 ], + [ 7.1393348, 46.507583 ], + [ 7.1391792, 46.5075918 ], + [ 7.1389052, 46.5076705 ], + [ 7.1386148, 46.5077609 ], + [ 7.1382776, 46.507914 ], + [ 7.1380634, 46.5080705 ], + [ 7.1377435, 46.5080487 ], + [ 7.1374577, 46.5080431 ], + [ 7.1373695, 46.5080956 ], + [ 7.1371606, 46.5081787 ], + [ 7.1369531, 46.5082897 ], + [ 7.1367863, 46.508417 ], + [ 7.1366344, 46.5084933 ], + [ 7.1364654, 46.5085642 ], + [ 7.1363105000000004, 46.5086026 ], + [ 7.1363282, 46.5086442 ], + [ 7.1364526999999995, 46.5096791 ], + [ 7.1363594, 46.5100566 ], + [ 7.136513, 46.5105518 ], + [ 7.1367456, 46.5108943 ], + [ 7.1369362, 46.5117674 ], + [ 7.1369596, 46.5122442 ], + [ 7.137279, 46.5133695 ], + [ 7.1376019, 46.5138831 ], + [ 7.1384822, 46.514920000000004 ], + [ 7.1389616, 46.515416 ], + [ 7.1392845, 46.5159386 ], + [ 7.1395434, 46.5162541 ], + [ 7.1399685999999996, 46.5171279 ], + [ 7.1399925, 46.5175147 ], + [ 7.139768, 46.5180539 ], + [ 7.1398952, 46.5186119 ], + [ 7.1403096999999995, 46.5190628 ], + [ 7.1403082, 46.5193327 ], + [ 7.1404759, 46.519648 ], + [ 7.1404998, 46.5200528 ], + [ 7.1406021, 46.5203949 ], + [ 7.1416391, 46.5214052 ], + [ 7.1420285, 46.5217031 ], + [ 7.1436547, 46.5222021 ], + [ 7.1439369, 46.5230304 ], + [ 7.1441926, 46.5239576 ], + [ 7.1443862, 46.524291 ], + [ 7.1444158, 46.5260452 ], + [ 7.1445049, 46.5264322 ], + [ 7.1446993, 46.5266306 ], + [ 7.1453231, 46.5269741 ], + [ 7.1458432, 46.5272003 ], + [ 7.1464939, 46.5273819 ], + [ 7.1469756, 46.5274731 ], + [ 7.1472352, 46.5276717 ], + [ 7.1478586, 46.5280781 ], + [ 7.1482715, 46.5284012 ], + [ 7.1481454, 46.528525 ], + [ 7.1480917999999996, 46.5286366 ], + [ 7.1480555, 46.5287373 ], + [ 7.1479828, 46.528916100000004 ], + [ 7.1479374, 46.5290393 ], + [ 7.1479498, 46.5291577 ], + [ 7.1479685, 46.529310100000004 ], + [ 7.1479954, 46.529457 ], + [ 7.1480294, 46.5296435 ], + [ 7.1480789, 46.5298303 ], + [ 7.1480876, 46.5300389 ], + [ 7.148089, 46.5302247 ], + [ 7.1480518, 46.5303366 ], + [ 7.1480124, 46.5305274 ], + [ 7.1479489, 46.530684 ], + [ 7.1479034, 46.5308014 ], + [ 7.1478417, 46.5309242 ], + [ 7.1477283, 46.5311079 ], + [ 7.1476311, 46.5312975 ], + [ 7.1474362, 46.5314855 ], + [ 7.1472658, 46.5316739 ], + [ 7.1471117, 46.5318513 ], + [ 7.1470671, 46.5319462 ], + [ 7.1470623, 46.5320868 ], + [ 7.1470467, 46.5322723 ], + [ 7.1470544, 46.5324922 ], + [ 7.1469968999999995, 46.5327332 ], + [ 7.1469267, 46.53307 ], + [ 7.146909, 46.5333174 ], + [ 7.146877, 46.5335139 ], + [ 7.1469379, 46.5338529 ], + [ 7.1469131, 46.5340777 ], + [ 7.1468666, 46.534229 ], + [ 7.1467896, 46.534312 ], + [ 7.1466728, 46.5343662 ], + [ 7.1464338, 46.5344236 ], + [ 7.1461206, 46.5344855 ], + [ 7.1458155, 46.5345701 ], + [ 7.1455818, 46.534684 ], + [ 7.1454378, 46.5348108 ], + [ 7.1452883, 46.5348813 ], + [ 7.1450584, 46.5348997 ], + [ 7.1448664, 46.5350032 ], + [ 7.1446709, 46.5349994 ], + [ 7.1444229, 46.5350681 ], + [ 7.1442274, 46.5350532 ], + [ 7.1439866, 46.5351502 ], + [ 7.1438093, 46.5350907 ], + [ 7.1436465, 46.5350707 ], + [ 7.1434981, 46.5350849 ], + [ 7.1433386, 46.5351946 ], + [ 7.1432768, 46.535323 ], + [ 7.1431436999999995, 46.5353825 ], + [ 7.1429311, 46.5353786 ], + [ 7.1427572, 46.5354373 ], + [ 7.1423454, 46.5355199 ], + [ 7.1420067, 46.535615 ], + [ 7.1416347, 46.5357207 ], + [ 7.1413793, 46.535789199999996 ], + [ 7.1411384, 46.5358862 ], + [ 7.140911, 46.5360453 ], + [ 7.1406437, 46.5362037 ], + [ 7.1404651, 46.5363863 ], + [ 7.1403171, 46.5366313 ], + [ 7.1402027, 46.5368488 ], + [ 7.1401741, 46.5371581 ], + [ 7.1401104, 46.5373258 ], + [ 7.1400017, 46.5373858 ], + [ 7.1398403, 46.5375462 ], + [ 7.1397531, 46.5377078 ], + [ 7.1397924, 46.5379563 ], + [ 7.1398428, 46.5381262 ], + [ 7.1398371, 46.5382782 ], + [ 7.1398558, 46.5384306 ], + [ 7.1398563, 46.538639 ], + [ 7.1398975, 46.5388425 ], + [ 7.1399561, 46.5390125 ], + [ 7.1400868, 46.5392402 ], + [ 7.1402908, 46.5394748 ], + [ 7.1404787, 46.5396754 ], + [ 7.1407091, 46.5398543 ], + [ 7.1410037, 46.5400738 ], + [ 7.1412983, 46.5402762 ], + [ 7.141546, 46.5404273 ], + [ 7.1417611, 46.5405777 ], + [ 7.1420294, 46.5408192 ], + [ 7.142427, 46.5411305 ], + [ 7.1428706, 46.5414935 ], + [ 7.1431816, 46.541702 ], + [ 7.1434609, 46.5418817 ], + [ 7.1439553, 46.5422119 ], + [ 7.144315, 46.5424381 ], + [ 7.1445474, 46.5425494 ], + [ 7.1447817, 46.5426269 ], + [ 7.145072, 46.5427336 ], + [ 7.1454562, 46.5429491 ], + [ 7.1460004, 46.5432632 ], + [ 7.1464418, 46.5434684 ], + [ 7.1468269, 46.5436783 ], + [ 7.147042, 46.5438231 ], + [ 7.1472409, 46.5439675 ], + [ 7.1473981, 46.5441224 ], + [ 7.1475361, 46.544367199999996 ], + [ 7.1522908, 46.5531215 ], + [ 7.1521111, 46.553338 ], + [ 7.151958, 46.5534815 ], + [ 7.151784, 46.5535459 ], + [ 7.1516853, 46.5535723 ], + [ 7.1516326, 46.5536727 ], + [ 7.1515455, 46.553795 ], + [ 7.1514004, 46.5539612 ], + [ 7.151317, 46.5540161 ], + [ 7.1512644, 46.554094 ], + [ 7.1511945, 46.5542165 ], + [ 7.1511092, 46.5543164 ], + [ 7.1510177, 46.5543597 ], + [ 7.1508817, 46.5544811 ], + [ 7.1507375, 46.5546305 ], + [ 7.1506077, 46.5548141 ], + [ 7.1503802, 46.554990000000004 ], + [ 7.1502044, 46.5550995 ], + [ 7.1500215, 46.5551693 ], + [ 7.1499199, 46.5552576 ], + [ 7.1497738, 46.5554464 ], + [ 7.1494946, 46.5556946 ], + [ 7.1491085, 46.5559635 ], + [ 7.1489825, 46.5560569 ], + [ 7.1488953, 46.5562018 ], + [ 7.1488001, 46.5563239 ], + [ 7.1487565, 46.5563907 ], + [ 7.1487354, 46.5565255 ], + [ 7.148679, 46.5567159 ], + [ 7.1486622, 46.5569522 ], + [ 7.1486772, 46.5572001 ], + [ 7.1486797, 46.5573467 ], + [ 7.1486135, 46.5573736 ], + [ 7.1485321, 46.5573552 ], + [ 7.1484036, 46.5573078 ], + [ 7.1482958, 46.5573452 ], + [ 7.1482921, 46.557424 ], + [ 7.1483199, 46.5575597 ], + [ 7.1483784, 46.5577353 ], + [ 7.1484388, 46.5578829 ], + [ 7.1484043, 46.5579217 ], + [ 7.1483607, 46.557994 ], + [ 7.1483579, 46.5580729 ], + [ 7.1483622, 46.5581687 ], + [ 7.1483757, 46.5582365 ], + [ 7.1483493, 46.5583036 ], + [ 7.1482976, 46.5583703 ], + [ 7.1482459, 46.5584425 ], + [ 7.1481841, 46.5585483 ], + [ 7.1481802, 46.5586665 ], + [ 7.1482172, 46.5587631 ], + [ 7.1482623, 46.5588596 ], + [ 7.1483337, 46.5589229 ], + [ 7.148387, 46.5590196 ], + [ 7.1484076, 46.5591381 ], + [ 7.1484028, 46.5592619 ], + [ 7.1484116, 46.5594537 ], + [ 7.148403, 46.5596787 ], + [ 7.1484352, 46.5599046 ], + [ 7.1484864, 46.5600802 ], + [ 7.1485695, 46.5602506 ], + [ 7.1486289, 46.5604095 ], + [ 7.1486855, 46.5606526 ], + [ 7.1486862, 46.5612833 ], + [ 7.1488027, 46.5614375 ], + [ 7.148912, 46.5615803 ], + [ 7.1489389, 46.5617385 ], + [ 7.1488825, 46.5619233 ], + [ 7.1488432, 46.5620972 ], + [ 7.1488855000000004, 46.562267 ], + [ 7.1489522, 46.5624483 ], + [ 7.1490279, 46.5626187 ], + [ 7.149128, 46.5627895 ], + [ 7.1492518, 46.5629663 ], + [ 7.1493041, 46.563091299999996 ], + [ 7.1493419, 46.563182 ], + [ 7.1493444, 46.5633341 ], + [ 7.1493459, 46.5635087 ], + [ 7.1494715, 46.5636518 ], + [ 7.1497265, 46.5638255 ], + [ 7.1500811, 46.5639727 ], + [ 7.1504267, 46.5641312 ], + [ 7.1507642, 46.5642782 ], + [ 7.1511415, 46.5644652 ], + [ 7.1517113, 46.564763 ], + [ 7.1518469, 46.5648611 ], + [ 7.1520215, 46.5649939 ], + [ 7.1522132, 46.5651213 ], + [ 7.152346, 46.5652814 ], + [ 7.152486, 46.5654698 ], + [ 7.1525863, 46.5656293 ], + [ 7.1526476, 46.5657487 ], + [ 7.1527152, 46.5659077 ], + [ 7.1527503, 46.5660491 ], + [ 7.1528975, 46.5662658 ], + [ 7.1530141, 46.5664313 ], + [ 7.153155, 46.5666085 ], + [ 7.1532155, 46.5667278 ], + [ 7.1532198, 46.5668293 ], + [ 7.1531906, 46.5669583 ], + [ 7.1531849, 46.5671046 ], + [ 7.1532118, 46.5672627 ], + [ 7.153265, 46.5673763 ], + [ 7.1533653, 46.5675358 ], + [ 7.1534655, 46.5676954 ], + [ 7.1535313, 46.567887999999996 ], + [ 7.1536233, 46.5680644 ], + [ 7.1537255, 46.5681619 ], + [ 7.153853, 46.56826 ], + [ 7.1539696, 46.5684086 ], + [ 7.1541303, 46.5687043 ], + [ 7.1542693, 46.5689379 ], + [ 7.1544338, 46.5691154 ], + [ 7.1546155, 46.5692877 ], + [ 7.1548605, 46.5695118 ], + [ 7.1549627, 46.5696264 ], + [ 7.1550159, 46.5697399 ], + [ 7.1550917, 46.5698989 ], + [ 7.1550932, 46.5700793 ], + [ 7.15511, 46.5702879 ], + [ 7.1551577, 46.5705253 ], + [ 7.1552814, 46.5707191 ], + [ 7.1554396, 46.5708571 ], + [ 7.1556721, 46.5709966 ], + [ 7.1559046, 46.5711078 ], + [ 7.156186, 46.5712424 ], + [ 7.1563107, 46.5714136 ], + [ 7.1563629, 46.5715498 ], + [ 7.1564777, 46.5717434 ], + [ 7.1566287, 46.5718587 ], + [ 7.1568439999999995, 46.5720147 ], + [ 7.1570285, 46.5721251 ], + [ 7.1572021, 46.5722916 ], + [ 7.1573014, 46.5724624 ], + [ 7.1573302, 46.5725812 ], + [ 7.1572857, 46.5726761 ], + [ 7.1571903, 46.5728152 ], + [ 7.1572869, 46.5730648 ], + [ 7.1574231, 46.57336 ], + [ 7.1575268, 46.5736379 ], + [ 7.1575925, 46.5738699 ], + [ 7.1576319999999996, 46.5741073 ], + [ 7.1576805, 46.5743503 ], + [ 7.157767, 46.5746447 ], + [ 7.1578552, 46.574928 ], + [ 7.1579037, 46.5751597 ], + [ 7.157927, 46.575391 ], + [ 7.1579338, 46.5756446 ], + [ 7.1579416, 46.5758757 ], + [ 7.1579303, 46.5761739 ], + [ 7.1579361, 46.5764556 ], + [ 7.1579947, 46.5766369 ], + [ 7.1581674, 46.5768316 ], + [ 7.1584325, 46.5769659 ], + [ 7.1586967, 46.5771059 ], + [ 7.1590587, 46.5772702 ], + [ 7.1595021, 46.5774585 ], + [ 7.1598722, 46.5776229 ], + [ 7.1602079, 46.5778205 ], + [ 7.1604241, 46.577954 ], + [ 7.1605887, 46.5781429 ], + [ 7.1607169, 46.5784268 ], + [ 7.1609029, 46.5787118 ], + [ 7.1610646, 46.578985 ], + [ 7.1612435, 46.5792304 ], + [ 7.1614896, 46.5794208 ], + [ 7.1617058, 46.5795486 ], + [ 7.1619547, 46.5796714 ], + [ 7.1621394, 46.5797593 ], + [ 7.162303, 46.5799763 ], + [ 7.1624175, 46.5802093 ], + [ 7.1625827, 46.5805952 ], + [ 7.162631, 46.580399 ], + [ 7.1626549, 46.580191 ], + [ 7.1627376, 46.5799617 ], + [ 7.1628031, 46.5797488 ], + [ 7.1629114, 46.5794636 ], + [ 7.163024, 46.5792967 ], + [ 7.1631474, 46.5790793 ], + [ 7.1633026, 46.5788569 ], + [ 7.1634406, 46.5786623 ], + [ 7.1636383, 46.5784237 ], + [ 7.163828, 46.5781624 ], + [ 7.1640086, 46.5779236 ], + [ 7.1642327, 46.5776235 ], + [ 7.1644795, 46.577369 ], + [ 7.1646835, 46.5771643 ], + [ 7.1647392, 46.5771178 ], + [ 7.1649508, 46.5770264 ], + [ 7.1651214, 46.5769964 ], + [ 7.165276, 46.576898 ], + [ 7.1653865, 46.5768072 ], + [ 7.1655525, 46.5767087 ], + [ 7.1657073, 46.5765763 ], + [ 7.1659609, 46.5765693 ], + [ 7.1660558, 46.5765043 ], + [ 7.1661753, 46.5764131 ], + [ 7.1662704999999995, 46.5763005 ], + [ 7.1663648, 46.5761829 ], + [ 7.166495, 46.5760847 ], + [ 7.1666013, 46.5760209 ], + [ 7.1666846, 46.5759862 ], + [ 7.1667899, 46.5759713 ], + [ 7.1668806, 46.5759302 ], + [ 7.1669867, 46.575903 ], + [ 7.1670399, 46.5758665 ], + [ 7.167107, 46.5758209 ], + [ 7.1671464, 46.5757662 ], + [ 7.1671468, 46.5756839 ], + [ 7.1672003, 46.5755925 ], + [ 7.1672008, 46.5754828 ], + [ 7.167255, 46.5754189 ], + [ 7.1673213, 46.5753551 ], + [ 7.1674277, 46.575273 ], + [ 7.1675209, 46.5752275 ], + [ 7.1676003999999995, 46.5751362 ], + [ 7.1676938, 46.5750632 ], + [ 7.1678141, 46.5749721 ], + [ 7.1679464, 46.5749268 ], + [ 7.1680795, 46.5748813 ], + [ 7.1681456, 46.5748631 ], + [ 7.1681857, 46.5748358 ], + [ 7.168239, 46.574781 ], + [ 7.1683063, 46.5746989 ], + [ 7.1683987, 46.5746351 ], + [ 7.1685451, 46.5745532 ], + [ 7.1687312, 46.5744987 ], + [ 7.1688774, 46.5744533 ], + [ 7.1690367, 46.5743898 ], + [ 7.169236, 46.574317 ], + [ 7.1693953, 46.5742534 ], + [ 7.1696086, 46.5741533 ], + [ 7.169768, 46.5740622 ], + [ 7.1699275, 46.5739621 ], + [ 7.170087, 46.5738618 ], + [ 7.1702204, 46.5737523 ], + [ 7.1703229, 46.5736365 ], + [ 7.1704524, 46.5735023 ], + [ 7.1705639, 46.573389399999996 ], + [ 7.1706605, 46.5733053 ], + [ 7.1707801, 46.5731867 ], + [ 7.1709266, 46.5730681 ], + [ 7.1709932, 46.5729676 ], + [ 7.1711008, 46.5727941 ], + [ 7.1712854, 46.572569 ], + [ 7.1713934, 46.5724931 ], + [ 7.1715537, 46.5723837 ], + [ 7.1716993, 46.5722827 ], + [ 7.171931, 46.5720967 ], + [ 7.1720856, 46.5719916 ], + [ 7.172259, 46.5718641 ], + [ 7.1724315, 46.5717822 ], + [ 7.1726015, 46.571698 ], + [ 7.1727507, 46.5716823 ], + [ 7.1728567, 46.5716917 ], + [ 7.1728665, 46.5716917 ], + [ 7.1728892, 46.5717157 ], + [ 7.1730133, 46.571684 ], + [ 7.173236, 46.5716375 ], + [ 7.1735667, 46.5715421 ], + [ 7.1738873, 46.5714972 ], + [ 7.1737638, 46.5710838 ], + [ 7.1740744, 46.5710838 ], + [ 7.1740374, 46.5709818 ], + [ 7.1743643, 46.5709878 ], + [ 7.1746514, 46.5709648 ], + [ 7.1748578, 46.5709234 ], + [ 7.1749685, 46.5708072 ], + [ 7.1751189, 46.5707254 ], + [ 7.1754142, 46.5706858 ], + [ 7.1756931, 46.5706739 ], + [ 7.175846, 46.570733 ], + [ 7.1759889, 46.5708482 ], + [ 7.1761418, 46.5709354 ], + [ 7.1763572, 46.5710689 ], + [ 7.1764838, 46.5711782 ], + [ 7.1766531, 46.5712433 ], + [ 7.1768721, 46.5713091 ], + [ 7.1770821, 46.5713636 ], + [ 7.1772686, 46.5714177 ], + [ 7.1774685, 46.5715452 ], + [ 7.1776206, 46.5716268 ], + [ 7.1778123, 46.5717654 ], + [ 7.1781988, 46.5719188 ], + [ 7.1785455, 46.5720546 ], + [ 7.1790125, 46.5722489 ], + [ 7.1794071, 46.5724194 ], + [ 7.1798026, 46.572573 ], + [ 7.1800586, 46.5727296 ], + [ 7.1803628, 46.5728928 ], + [ 7.1806567, 46.5731346 ], + [ 7.1809761, 46.5733545 ], + [ 7.1812223, 46.5735334 ], + [ 7.1814702, 46.5736843 ], + [ 7.1816927, 46.5738686 ], + [ 7.1819244, 46.5740136 ], + [ 7.1820428, 46.5741396 ], + [ 7.1821269, 46.5742819 ], + [ 7.1822038, 46.5744184 ], + [ 7.1822696, 46.5746336 ], + [ 7.1823128, 46.5748034 ], + [ 7.1823806, 46.5749566 ], + [ 7.1825371, 46.5751341 ], + [ 7.182775, 46.5753354 ], + [ 7.1830518, 46.5755995 ], + [ 7.1832978, 46.5758123 ], + [ 7.1835584, 46.576048 ], + [ 7.1837675, 46.5761418 ], + [ 7.1839358, 46.5762462 ], + [ 7.1841041, 46.5763393 ], + [ 7.184295, 46.5764948 ], + [ 7.1845809, 46.5767084 ], + [ 7.1850459, 46.5771786 ], + [ 7.1854412, 46.5775574 ], + [ 7.1856268, 46.5776282 ], + [ 7.1857544, 46.5777207 ], + [ 7.1858638, 46.5778635 ], + [ 7.1860275, 46.5780748 ], + [ 7.1861595, 46.5782631 ], + [ 7.1862435, 46.5784278 ], + [ 7.1862777, 46.5786087 ], + [ 7.1862568, 46.5787153 ], + [ 7.1862358, 46.57885 ], + [ 7.1861497, 46.5789612 ], + [ 7.1860109, 46.5791839 ], + [ 7.1858793, 46.5794125 ], + [ 7.1858166, 46.579569 ], + [ 7.1857613, 46.57972 ], + [ 7.1857547, 46.5799002 ], + [ 7.1858469, 46.5800595 ], + [ 7.1859463, 46.5802527 ], + [ 7.186062, 46.580452 ], + [ 7.1861217, 46.5805882 ], + [ 7.1861423, 46.5807069 ], + [ 7.1860978, 46.5808074 ], + [ 7.1858184, 46.581281 ], + [ 7.1857059, 46.5814424 ], + [ 7.185579, 46.5815583 ], + [ 7.1853969, 46.5816113 ], + [ 7.1851406, 46.5816687 ], + [ 7.1848543, 46.5816804 ], + [ 7.1844623, 46.5816452 ], + [ 7.1840638, 46.5815985 ], + [ 7.1837133, 46.5815585 ], + [ 7.1835413, 46.5815666 ], + [ 7.1832188, 46.5816509 ], + [ 7.1829298, 46.581719 ], + [ 7.1826164, 46.5817808 ], + [ 7.1824333, 46.5818789 ], + [ 7.1821995, 46.5820042 ], + [ 7.1819005, 46.5821058 ], + [ 7.1817745, 46.5821993 ], + [ 7.1817463, 46.5822945 ], + [ 7.1818657, 46.5823924 ], + [ 7.1820024, 46.5824568 ], + [ 7.1821943, 46.5825672 ], + [ 7.1824523, 46.5826732 ], + [ 7.1827257, 46.5827966 ], + [ 7.1829683, 46.5828854 ], + [ 7.1832516, 46.582975 ], + [ 7.1835695, 46.5830089 ], + [ 7.183852, 46.5830983 ], + [ 7.1841273, 46.5831822 ], + [ 7.1843717, 46.5832148 ], + [ 7.1847847, 46.583318 ], + [ 7.1850436, 46.5833959 ], + [ 7.1852781, 46.5834677 ], + [ 7.1855035, 46.5835787 ], + [ 7.1856737, 46.5836212 ], + [ 7.1859028, 46.5836254 ], + [ 7.1862025, 46.5837095 ], + [ 7.186428, 46.5837925 ], + [ 7.1867847, 46.583889 ], + [ 7.1880531, 46.5843285 ], + [ 7.1884651999999996, 46.5844543 ], + [ 7.1886362, 46.5844912 ], + [ 7.1888808, 46.5845011 ], + [ 7.1891271, 46.5844888 ], + [ 7.1895212, 46.5844564 ], + [ 7.1898735, 46.5844458 ], + [ 7.1902394, 46.5844919 ], + [ 7.1906867, 46.5845675 ], + [ 7.1910526, 46.5846303 ], + [ 7.1913532, 46.5846865 ], + [ 7.1916231, 46.5847025 ], + [ 7.1920406, 46.5846875 ], + [ 7.1924437, 46.5846384 ], + [ 7.1927706, 46.5846499 ], + [ 7.1931084, 46.5847968 ], + [ 7.1933946, 46.5848019 ], + [ 7.1939506, 46.5848176 ], + [ 7.1945883, 46.584829 ], + [ 7.1950366, 46.5848652 ], + [ 7.195607, 46.5849486 ], + [ 7.1961052, 46.5849688 ], + [ 7.1964294, 46.5850366 ], + [ 7.1967265, 46.58498 ], + [ 7.1969819, 46.5849395 ], + [ 7.1971024, 46.5849923 ], + [ 7.1973739, 46.5851718 ], + [ 7.1976283, 46.5853623 ], + [ 7.1977876, 46.5854946 ], + [ 7.1979016, 46.5855135 ], + [ 7.1982731, 46.5854189 ], + [ 7.198349, 46.5855778 ], + [ 7.1984494, 46.5857486 ], + [ 7.1985172, 46.5858963 ], + [ 7.1986321, 46.5861179 ], + [ 7.1987488, 46.5862777 ], + [ 7.198784, 46.5864191 ], + [ 7.198763, 46.5865539 ], + [ 7.1987322, 46.5867111 ], + [ 7.1987791, 46.5867851 ], + [ 7.1988569, 46.5868992 ], + [ 7.1988758, 46.5870459 ], + [ 7.1988549, 46.5871751 ], + [ 7.1988005, 46.5873036 ], + [ 7.1987469, 46.587437800000004 ], + [ 7.1987576, 46.5875901 ], + [ 7.1988798, 46.5878174 ], + [ 7.1989855, 46.5880672 ], + [ 7.1990496, 46.5883217 ], + [ 7.1990205, 46.588445 ], + [ 7.198918, 46.5885615 ], + [ 7.1987404, 46.588716 ], + [ 7.1986379, 46.5888381 ], + [ 7.1986215, 46.5890406 ], + [ 7.1986041, 46.5892881 ], + [ 7.1985259, 46.589647 ], + [ 7.1985647, 46.5897096 ], + [ 7.1986589, 46.5898015 ], + [ 7.1987521, 46.5899327 ], + [ 7.1988126, 46.5900802 ], + [ 7.1988407, 46.5901989 ], + [ 7.198836, 46.5903227 ], + [ 7.1988386, 46.5904692 ], + [ 7.1988502, 46.5906102 ], + [ 7.1988936, 46.5907743 ], + [ 7.1989677, 46.5909784 ], + [ 7.1990798, 46.5912564 ], + [ 7.1990941, 46.5915381 ], + [ 7.1991029, 46.5917411 ], + [ 7.1991282, 46.5919386 ], + [ 7.1992041, 46.592092 ], + [ 7.1992584, 46.5921776 ], + [ 7.1992556, 46.5922675 ], + [ 7.1992093, 46.5924019 ], + [ 7.1991548, 46.5925529 ], + [ 7.1991655, 46.5927051 ], + [ 7.199228, 46.5927907 ], + [ 7.1993302, 46.5929052 ], + [ 7.1994479, 46.5930425 ], + [ 7.1995166, 46.5931676 ], + [ 7.1995193, 46.5933084 ], + [ 7.1995146, 46.5934379 ], + [ 7.1995561, 46.5936414 ], + [ 7.1996058, 46.5938506 ], + [ 7.1997858, 46.5940847 ], + [ 7.199927, 46.594245 ], + [ 7.1999948, 46.5944039 ], + [ 7.2000281, 46.5946129 ], + [ 7.2000805, 46.5949573 ], + [ 7.2001925, 46.5952634 ], + [ 7.2003373, 46.5955363 ], + [ 7.2005355, 46.5957201 ], + [ 7.2007654, 46.5959213 ], + [ 7.2010262, 46.5961569 ], + [ 7.2013113, 46.596421 ], + [ 7.2015647, 46.596662 ], + [ 7.2016725, 46.5968274 ], + [ 7.2017003, 46.5969798 ], + [ 7.2017772, 46.5971108 ], + [ 7.2018623, 46.5972362 ], + [ 7.2018976, 46.5973832 ], + [ 7.2019002, 46.5975353 ], + [ 7.2018864, 46.5976984 ], + [ 7.2018247, 46.5978211 ], + [ 7.2017521, 46.5980113 ], + [ 7.2017039, 46.598213200000004 ], + [ 7.2016476, 46.5984037 ], + [ 7.2016394, 46.598612 ], + [ 7.2016482, 46.5988262 ], + [ 7.2016144, 46.5990846 ], + [ 7.201598, 46.5992982 ], + [ 7.2015743, 46.5995005 ], + [ 7.2014365, 46.5996783 ], + [ 7.2012506, 46.5998327 ], + [ 7.2011626, 46.6 ], + [ 7.2011335, 46.6001234 ], + [ 7.2011605, 46.6002928 ], + [ 7.2011766999999995, 46.6005016 ], + [ 7.2013015, 46.600684 ], + [ 7.2014581, 46.6008727 ], + [ 7.2017361, 46.6010859 ], + [ 7.2018954, 46.6012127 ], + [ 7.201957, 46.6013096 ], + [ 7.2019858, 46.6014339 ], + [ 7.2020618, 46.6015874 ], + [ 7.2022683, 46.6017544 ], + [ 7.2024991, 46.6019387 ], + [ 7.2027971, 46.6020623 ], + [ 7.203137, 46.6019501 ], + [ 7.2034451, 46.6018035 ], + [ 7.2037932, 46.6016802 ], + [ 7.2041909, 46.6015578 ], + [ 7.2048018, 46.6014054 ], + [ 7.2058746, 46.6011767 ], + [ 7.2090622, 46.6006365 ], + [ 7.2105182, 46.600426 ], + [ 7.2110456, 46.6003284 ], + [ 7.2114008, 46.600239 ], + [ 7.2118819, 46.600073 ], + [ 7.2123549, 46.5999012 ], + [ 7.212838, 46.5996675 ], + [ 7.2134043, 46.5994074 ], + [ 7.2138964, 46.5991458 ], + [ 7.2141719, 46.5990042 ], + [ 7.214538, 46.5988418 ], + [ 7.2148859, 46.5987353 ], + [ 7.2152574, 46.5986461 ], + [ 7.2156289, 46.5985514 ], + [ 7.2159587, 46.5984897 ], + [ 7.2163447, 46.5984458 ], + [ 7.2169843, 46.5984065 ], + [ 7.2180497, 46.5983634 ], + [ 7.2192873, 46.5983179 ], + [ 7.2209605, 46.5982292 ], + [ 7.2216237, 46.5982184 ], + [ 7.2220585, 46.5981923 ], + [ 7.2225097, 46.5981721 ], + [ 7.222911, 46.5981511 ], + [ 7.2234121, 46.5980981 ], + [ 7.2238968, 46.5980502 ], + [ 7.2245037, 46.5980159 ], + [ 7.22507, 46.597964 ], + [ 7.2256371, 46.5979065 ], + [ 7.2262758, 46.5978895 ], + [ 7.2266444, 46.5979017 ], + [ 7.226986, 46.5979585 ], + [ 7.227304, 46.5979866 ], + [ 7.2276057, 46.5980144 ], + [ 7.2280215, 46.5980612 ], + [ 7.2284291, 46.5980965 ], + [ 7.2288612, 46.5981491 ], + [ 7.2291448, 46.5982162 ], + [ 7.2295271, 46.5982847 ], + [ 7.2299429, 46.5983429 ], + [ 7.2302518, 46.5983933 ], + [ 7.2306911, 46.5984686 ], + [ 7.2314766, 46.5986908 ], + [ 7.2321252, 46.5988544 ], + [ 7.2325555, 46.598952 ], + [ 7.2328391, 46.5990302 ], + [ 7.2330673, 46.5990624 ], + [ 7.2332404, 46.599026 ], + [ 7.2335276, 46.5990029 ], + [ 7.2338474, 46.5989859 ], + [ 7.2341002, 46.599013 ], + [ 7.2343203, 46.5990337 ], + [ 7.2346219, 46.599084 ], + [ 7.2383417, 46.599645 ], + [ 7.2382412, 46.5994743 ], + [ 7.2381035, 46.5992184 ], + [ 7.2379232, 46.5989956 ], + [ 7.2377104, 46.5987723 ], + [ 7.2375446, 46.5986004 ], + [ 7.2373544, 46.5984338 ], + [ 7.2373018, 46.5983034 ], + [ 7.2372584, 46.5981337 ], + [ 7.2372638, 46.597993 ], + [ 7.2372955, 46.5977964 ], + [ 7.2373246, 46.5976618 ], + [ 7.2373228, 46.5974983 ], + [ 7.2372630000000004, 46.5973397 ], + [ 7.2372277, 46.5971701 ], + [ 7.2372105, 46.5969784 ], + [ 7.2372087, 46.5968037 ], + [ 7.2372965, 46.5966475 ], + [ 7.237457, 46.5964984 ], + [ 7.2376436, 46.5963271 ], + [ 7.2377713, 46.5961941 ], + [ 7.2378157, 46.5960823 ], + [ 7.2378302, 46.5959193 ], + [ 7.2378122, 46.5957274 ], + [ 7.2378348, 46.5955701 ], + [ 7.2378004, 46.5953837 ], + [ 7.2377569, 46.5952365 ], + [ 7.2376809, 46.5950663 ], + [ 7.2376319, 46.5948458 ], + [ 7.2377026, 46.594695 ], + [ 7.237748, 46.5945663 ], + [ 7.2378187, 46.5944155 ], + [ 7.2378649, 46.5942754 ], + [ 7.2378286, 46.5941622 ], + [ 7.2378159, 46.5940549 ], + [ 7.2377607, 46.5939864 ], + [ 7.2377154, 46.5938899 ], + [ 7.2376628, 46.593765 ], + [ 7.2376583, 46.5936637 ], + [ 7.2376792, 46.5935289 ], + [ 7.2377, 46.5934166 ], + [ 7.2376312, 46.5932745 ], + [ 7.2375524, 46.5931999 ], + [ 7.2374573, 46.5931026 ], + [ 7.2373803, 46.592983 ], + [ 7.2373785, 46.5928027 ], + [ 7.2374338, 46.5926234 ], + [ 7.2375416, 46.592355 ], + [ 7.2376259, 46.5920637 ], + [ 7.2377065, 46.5916596 ], + [ 7.2377464, 46.5914633 ], + [ 7.2378089, 46.5913123 ], + [ 7.2379195, 46.5912016 ], + [ 7.2380056, 46.5910736 ], + [ 7.2380599, 46.5909282 ], + [ 7.2380989, 46.5907543 ], + [ 7.2381134, 46.5905742 ], + [ 7.238175, 46.5904627 ], + [ 7.238271, 46.5903068 ], + [ 7.2383679, 46.5901169 ], + [ 7.2383888, 46.5899765 ], + [ 7.2383707, 46.5898185 ], + [ 7.2383662, 46.5897002 ], + [ 7.2383861, 46.5896049 ], + [ 7.2384396, 46.5894875 ], + [ 7.2384948, 46.589325099999996 ], + [ 7.2385909, 46.5891466 ], + [ 7.2386516, 46.5890464 ], + [ 7.2386977, 46.5889176 ], + [ 7.2387603, 46.5887724 ], + [ 7.2388798, 46.5886392 ], + [ 7.2390401, 46.5885013 ], + [ 7.2391915000000004, 46.58838 ], + [ 7.2392785, 46.5882295 ], + [ 7.2394269, 46.5879899 ], + [ 7.2395837, 46.5877281 ], + [ 7.2398309, 46.5876761 ], + [ 7.2400538, 46.587618 ], + [ 7.2402368, 46.5875312 ], + [ 7.2404043, 46.5874383 ], + [ 7.2405982, 46.5872784 ], + [ 7.2408345, 46.5870798 ], + [ 7.2410285, 46.586903 ], + [ 7.2412141, 46.5867486 ], + [ 7.2413463, 46.5864975 ], + [ 7.2414841, 46.5862972 ], + [ 7.241696, 46.5860981 ], + [ 7.2419904, 46.5858725 ], + [ 7.2423109, 46.5856246 ], + [ 7.242935, 46.5851006 ], + [ 7.2430872, 46.584968 ], + [ 7.2431397, 46.5848676 ], + [ 7.2431533, 46.5847159 ], + [ 7.243214, 46.5846155 ], + [ 7.2433489, 46.5845221 ], + [ 7.2435799, 46.5844585 ], + [ 7.2437538, 46.5844165 ], + [ 7.243896, 46.5843177 ], + [ 7.2441052, 46.5841974 ], + [ 7.2442166, 46.5840418 ], + [ 7.244434, 46.5839161 ], + [ 7.2446088, 46.5838346 ], + [ 7.2447826, 46.5837869 ], + [ 7.2449973, 46.5837344 ], + [ 7.2452518, 46.5837163 ], + [ 7.2454628, 46.583765 ], + [ 7.2455661, 46.5838401 ], + [ 7.2456621, 46.583898 ], + [ 7.2457753, 46.5839508 ], + [ 7.2459048, 46.5839755 ], + [ 7.2460606, 46.5839727 ], + [ 7.24624, 46.5839758 ], + [ 7.2464374, 46.5839511 ], + [ 7.246643, 46.5839322 ], + [ 7.2467272, 46.5838716 ], + [ 7.246787, 46.5837938 ], + [ 7.2469047, 46.5837058 ], + [ 7.2470242, 46.5835727 ], + [ 7.2471836, 46.5834517 ], + [ 7.2473268, 46.5833358 ], + [ 7.2474698, 46.583237 ], + [ 7.2476455, 46.5831275 ], + [ 7.2478484, 46.5829508 ], + [ 7.2479507, 46.5828286 ], + [ 7.2479879, 46.5826998 ], + [ 7.2479607, 46.5825529 ], + [ 7.2479806, 46.5824575 ], + [ 7.2480648, 46.5823802 ], + [ 7.2481653, 46.5823144 ], + [ 7.2482595, 46.5822034 ], + [ 7.2483455, 46.5820979 ], + [ 7.2484405, 46.5819643 ], + [ 7.2485592, 46.5818369 ], + [ 7.2487204, 46.5816876 ], + [ 7.2488082, 46.5815259 ], + [ 7.248781, 46.5813677 ], + [ 7.2488028, 46.5812161 ], + [ 7.2488399, 46.5810929 ], + [ 7.2489259, 46.5809705 ], + [ 7.2490291, 46.5808427 ], + [ 7.2490744, 46.5807197 ], + [ 7.2490309, 46.5805556 ], + [ 7.2489313, 46.5803623 ], + [ 7.248914, 46.5801705 ], + [ 7.2488389, 46.5799835 ], + [ 7.2488289, 46.579803 ], + [ 7.2488596, 46.5796403 ], + [ 7.2488905, 46.5794493 ], + [ 7.248913, 46.5792921 ], + [ 7.2488949, 46.579106 ], + [ 7.2488532, 46.5789024 ], + [ 7.2488613, 46.5786886 ], + [ 7.2488939, 46.5784639 ], + [ 7.2488912, 46.5783118 ], + [ 7.2490506, 46.5782019 ], + [ 7.2491928, 46.5780974 ], + [ 7.2492389, 46.5779744 ], + [ 7.2492516, 46.5778451 ], + [ 7.2492634, 46.5777327 ], + [ 7.249324, 46.5776435 ], + [ 7.2494091, 46.577555 ], + [ 7.2494299, 46.5774371 ], + [ 7.24941, 46.5773016 ], + [ 7.2493909, 46.5771548 ], + [ 7.24942, 46.5770146 ], + [ 7.2494661, 46.5768857 ], + [ 7.2495259, 46.576808 ], + [ 7.2495548, 46.5766959 ], + [ 7.2495593, 46.5765664 ], + [ 7.2495638, 46.5764426 ], + [ 7.2494887, 46.5762442 ], + [ 7.2495349, 46.5760986 ], + [ 7.2496489, 46.5758978 ], + [ 7.2496914, 46.5756227 ], + [ 7.2495619, 46.575581 ], + [ 7.2494016, 46.5754937 ], + [ 7.2492341, 46.5753726 ], + [ 7.2492395, 46.5752317 ], + [ 7.2491815, 46.5750167 ], + [ 7.249052, 46.5747555 ], + [ 7.248812, 46.5743739 ], + [ 7.2485792, 46.574032 ], + [ 7.2482777, 46.5737508 ], + [ 7.2481183, 46.5736467 ], + [ 7.2479807, 46.5736048 ], + [ 7.2478512, 46.5735632 ], + [ 7.2477072, 46.5734762 ], + [ 7.2476049, 46.5733618 ], + [ 7.2474138, 46.5732176 ], + [ 7.2473295, 46.5730642 ], + [ 7.2471783, 46.5729432 ], + [ 7.2470334, 46.5728899 ], + [ 7.2468777, 46.572876 ], + [ 7.2467491, 46.5728231 ], + [ 7.2466531, 46.5727707 ], + [ 7.2465671, 46.5726621 ], + [ 7.2464964, 46.5725764 ], + [ 7.2463841, 46.5725182 ], + [ 7.2462782, 46.5724938 ], + [ 7.2462148, 46.5724476 ], + [ 7.2461351, 46.5723844 ], + [ 7.246022, 46.5723429 ], + [ 7.2458925, 46.5723012 ], + [ 7.2458626, 46.5722331 ], + [ 7.2458091, 46.5721308 ], + [ 7.2457231, 46.5720167 ], + [ 7.2455619, 46.5719519 ], + [ 7.2454406, 46.571916 ], + [ 7.2452939, 46.5718909 ], + [ 7.245159, 46.5717872 ], + [ 7.2450729, 46.5716787 ], + [ 7.2449951, 46.5715591 ], + [ 7.2448032, 46.5714262 ], + [ 7.244555, 46.5712866 ], + [ 7.2442753, 46.5711016 ], + [ 7.2440109, 46.5709449 ], + [ 7.2437546, 46.5707996 ], + [ 7.2434594, 46.5705861 ], + [ 7.2432701999999995, 46.5704026 ], + [ 7.2431035, 46.5702644 ], + [ 7.2429967, 46.5702627 ], + [ 7.2428184, 46.5702145 ], + [ 7.242429, 46.5699148 ], + [ 7.2423186, 46.569789 ], + [ 7.2421909, 46.5697023 ], + [ 7.2419727, 46.5696308 ], + [ 7.2418767, 46.5695729 ], + [ 7.2417499, 46.5694636 ], + [ 7.2416059, 46.5693766 ], + [ 7.2414204, 46.5692889 ], + [ 7.2412103, 46.5692289 ], + [ 7.2410093, 46.5691352 ], + [ 7.2408734, 46.5690484 ], + [ 7.2408436, 46.5689578 ], + [ 7.2407096, 46.5688259 ], + [ 7.2406073, 46.5687171 ], + [ 7.2403918, 46.5685725 ], + [ 7.2402153, 46.5684624 ], + [ 7.2399916, 46.5683233 ], + [ 7.2398739, 46.5681918 ], + [ 7.2396766, 46.5679856 ], + [ 7.2395116999999995, 46.5678024 ], + [ 7.239328, 46.5676809 ], + [ 7.2390781, 46.5675752 ], + [ 7.2387431, 46.567558 ], + [ 7.2384715, 46.5676039 ], + [ 7.2382333, 46.5676336 ], + [ 7.2380785, 46.5676139 ], + [ 7.2379092, 46.5675547 ], + [ 7.237691, 46.5674888 ], + [ 7.2373895, 46.5674498 ], + [ 7.236983, 46.5673695 ], + [ 7.2367802, 46.5673321 ], + [ 7.236514, 46.5672373 ], + [ 7.2362795, 46.56716 ], + [ 7.2361002, 46.56714 ], + [ 7.2359708, 46.5670927 ], + [ 7.2358503, 46.5670455 ], + [ 7.2357299, 46.5669757 ], + [ 7.2355769, 46.5669167 ], + [ 7.2353977, 46.5668967 ], + [ 7.2351188, 46.5669143 ], + [ 7.2349233, 46.5668828 ], + [ 7.2348191, 46.5668358 ], + [ 7.2347974, 46.5667566 ], + [ 7.2347196, 46.5666314 ], + [ 7.234601, 46.5665335 ], + [ 7.2343592, 46.5664335 ], + [ 7.2342053, 46.5663914 ], + [ 7.2341103, 46.5662941 ], + [ 7.2339817, 46.566241 ], + [ 7.2338605, 46.5661938 ], + [ 7.2336739, 46.5661624 ], + [ 7.2334865, 46.566131 ], + [ 7.233367, 46.5660556 ], + [ 7.233281, 46.5659415 ], + [ 7.2332285, 46.5658167 ], + [ 7.2331824, 46.5657202 ], + [ 7.2330538, 46.5656616 ], + [ 7.2329334, 46.5656087 ], + [ 7.2328284, 46.5655675 ], + [ 7.2327886, 46.5655217 ], + [ 7.2327171, 46.5654641 ], + [ 7.2326292, 46.5654232 ], + [ 7.232508, 46.565376 ], + [ 7.232412, 46.5653235 ], + [ 7.2323079, 46.5652486 ], + [ 7.2321866, 46.565207 ], + [ 7.2320571, 46.565171 ], + [ 7.2318932, 46.565185 ], + [ 7.2317864, 46.5652112 ], + [ 7.231628, 46.565276 ], + [ 7.2315148, 46.5652403 ], + [ 7.2313663, 46.5652715 ], + [ 7.2313075, 46.5653211 ], + [ 7.2311843, 46.565347 ], + [ 7.2311019, 46.5653625 ], + [ 7.2309942, 46.5653831 ], + [ 7.2308556, 46.565392 ], + [ 7.2307398, 46.5654124 ], + [ 7.2306727, 46.5654732 ], + [ 7.2306202, 46.5655623 ], + [ 7.2305205, 46.5656057 ], + [ 7.2304301, 46.565604 ], + [ 7.2303177, 46.5655626 ], + [ 7.2301457, 46.5655652 ], + [ 7.2300136, 46.5655968 ], + [ 7.2298144, 46.5656664 ], + [ 7.2296976, 46.5657376 ], + [ 7.2295491, 46.5657744 ], + [ 7.2293698, 46.5657543 ], + [ 7.2292476, 46.5657408 ], + [ 7.2291398, 46.5657784 ], + [ 7.2290312, 46.565844 ], + [ 7.2288591, 46.5658635 ], + [ 7.2287197, 46.5658555 ], + [ 7.2284236, 46.5659122 ], + [ 7.228142, 46.5660085 ], + [ 7.2278632, 46.5657953 ], + [ 7.2277436999999995, 46.5657087 ], + [ 7.2276369, 46.5657124 ], + [ 7.227521, 46.5657611 ], + [ 7.2274232, 46.5657481 ], + [ 7.22731, 46.565718 ], + [ 7.2272304, 46.565660199999996 ], + [ 7.227216, 46.5655924 ], + [ 7.2272513, 46.5655254 ], + [ 7.2273038, 46.5654419 ], + [ 7.227273, 46.5653963 ], + [ 7.2272088, 46.5653501 ], + [ 7.2270966, 46.5652806 ], + [ 7.2269843, 46.5652166 ], + [ 7.2268629, 46.5654172 ], + [ 7.2268185, 46.5652924 ], + [ 7.2266546, 46.5653065 ], + [ 7.2265742, 46.5652488 ], + [ 7.2265451, 46.5651694 ], + [ 7.2265225, 46.5651071 ], + [ 7.2264601, 46.5650327 ], + [ 7.2263542, 46.565008399999996 ], + [ 7.2261922, 46.564966 ], + [ 7.2260953, 46.5649249 ], + [ 7.2260166, 46.5648447 ], + [ 7.2259704, 46.5647707 ], + [ 7.2258337, 46.5647007 ], + [ 7.2255911, 46.5646176 ], + [ 7.225372, 46.5645912 ], + [ 7.2250769, 46.5645916 ], + [ 7.2247899, 46.5646147 ], + [ 7.2245263, 46.5646776 ], + [ 7.2243616, 46.5646972 ], + [ 7.2241914, 46.5646491 ], + [ 7.2240791, 46.5646077 ], + [ 7.2239506, 46.5645379 ], + [ 7.2239036, 46.5644695 ], + [ 7.2237759, 46.5643883 ], + [ 7.2236881, 46.5643305 ], + [ 7.223642, 46.5642509 ], + [ 7.2235053, 46.5641921 ], + [ 7.2232636, 46.564092 ], + [ 7.22303, 46.5639866 ], + [ 7.222877, 46.5639275 ], + [ 7.2222398, 46.5636685 ], + [ 7.221427, 46.5633105 ], + [ 7.221121, 46.56317 ], + [ 7.2209128, 46.5630536 ], + [ 7.220797, 46.562877 ], + [ 7.2207381999999996, 46.5626845 ], + [ 7.2207609999999995, 46.5625104 ], + [ 7.2208072, 46.5623703 ], + [ 7.2206705, 46.5623003 ], + [ 7.2204913, 46.5622747 ], + [ 7.2202405, 46.5622139 ], + [ 7.2199888, 46.56217 ], + [ 7.2197453, 46.562115 ], + [ 7.2194846, 46.5620823 ], + [ 7.2192067, 46.5620773 ], + [ 7.2188645, 46.562043 ], + [ 7.21862, 46.5620219 ], + [ 7.2183774, 46.56195 ], + [ 7.2181693, 46.561828 ], + [ 7.2179919, 46.5617516 ], + [ 7.2178136, 46.5616977 ], + [ 7.2176425, 46.5616835 ], + [ 7.2174071, 46.5616455 ], + [ 7.2171872, 46.5616078 ], + [ 7.2170595, 46.5615268 ], + [ 7.2168586, 46.5614387 ], + [ 7.2165907, 46.5613663 ], + [ 7.2163481, 46.5613001 ], + [ 7.2161453, 46.5612514 ], + [ 7.2159832999999995, 46.5612091 ], + [ 7.2158629, 46.561145 ], + [ 7.2157598, 46.5610531 ], + [ 7.2155588, 46.5609595 ], + [ 7.2153262, 46.5608483 ], + [ 7.2150673, 46.5607648 ], + [ 7.2147433, 46.5606803 ], + [ 7.2144781, 46.5605403 ], + [ 7.2141333, 46.5603541 ], + [ 7.2139505, 46.5602156 ], + [ 7.2138048, 46.5601681 ], + [ 7.2136762, 46.5601264 ], + [ 7.213563, 46.5600904 ], + [ 7.2133948, 46.5599748 ], + [ 7.2132663, 46.5599163 ], + [ 7.2131368, 46.5598858 ], + [ 7.2130317999999995, 46.5598389 ], + [ 7.2128717, 46.559746 ], + [ 7.2127178, 46.5597038 ], + [ 7.2124435, 46.5596144 ], + [ 7.2119928, 46.5594205 ], + [ 7.2115402, 46.5592717 ], + [ 7.2112732, 46.5591881 ], + [ 7.2111158, 46.5590163 ], + [ 7.2108996, 46.5588829 ], + [ 7.2106598, 46.5587324 ], + [ 7.2104597, 46.5586218 ], + [ 7.2103049, 46.5586133 ], + [ 7.2102008, 46.5585552 ], + [ 7.2102028, 46.5584819 ], + [ 7.2102218, 46.5584204 ], + [ 7.2100788, 46.5583108 ], + [ 7.2098707, 46.5581719 ], + [ 7.2096843, 46.5581292 ], + [ 7.2095303, 46.5581039 ], + [ 7.2093765, 46.5580675 ], + [ 7.2091575, 46.5580072 ], + [ 7.2090434, 46.5579882 ], + [ 7.2089673, 46.5580602 ], + [ 7.2088677, 46.5581147 ], + [ 7.2087527, 46.5581182 ], + [ 7.2086694, 46.5581618 ], + [ 7.2086105, 46.5582114 ], + [ 7.2085273, 46.5582437 ], + [ 7.2084051, 46.5582304 ], + [ 7.2082439, 46.5581655 ], + [ 7.2080033, 46.5580317 ], + [ 7.2077698, 46.5579262 ], + [ 7.2075363, 46.5578374 ], + [ 7.2075209, 46.5578034 ], + [ 7.2073689, 46.5577162 ], + [ 7.2071679, 46.5576283 ], + [ 7.2070404, 46.5575245 ], + [ 7.2068395, 46.5574308 ], + [ 7.2066385, 46.5573541 ], + [ 7.2065263999999996, 46.5572788 ], + [ 7.2063246, 46.557202 ], + [ 7.206034, 46.5571123 ], + [ 7.2059237, 46.5569921 ], + [ 7.2057889, 46.5568771 ], + [ 7.2056306, 46.5567334 ], + [ 7.2055039, 46.5566186 ], + [ 7.2053093, 46.5565756 ], + [ 7.2050812, 46.5565492 ], + [ 7.2044122, 46.5565146 ], + [ 7.2039778, 46.5565293 ], + [ 7.2037976, 46.5565374 ], + [ 7.2037062, 46.5565809 ], + [ 7.2035386, 46.5566848 ], + [ 7.2013913, 46.5579248 ], + [ 7.2013134, 46.558036 ], + [ 7.2013096, 46.5581486 ], + [ 7.2014638, 46.559058 ], + [ 7.2014971, 46.5592671 ], + [ 7.2014853, 46.5593625 ], + [ 7.2013847, 46.5594396 ], + [ 7.2012895, 46.5595731 ], + [ 7.2012072, 46.5595885 ], + [ 7.2010687, 46.5595747 ], + [ 7.2009454999999996, 46.5595895 ], + [ 7.2008713, 46.5596106 ], + [ 7.2007536, 46.5596817 ], + [ 7.2006692, 46.5597704 ], + [ 7.2006167, 46.5598595 ], + [ 7.200613, 46.5599438 ], + [ 7.2006093, 46.560062 ], + [ 7.2006047, 46.5601802 ], + [ 7.2005602, 46.5602808 ], + [ 7.2005004, 46.5603474 ], + [ 7.200456, 46.560448 ], + [ 7.2004757999999995, 46.5605609 ], + [ 7.2004875, 46.5606906 ], + [ 7.2004828, 46.5608201 ], + [ 7.2004628, 46.5609267 ], + [ 7.2004519, 46.5610054 ], + [ 7.200383, 46.5610886 ], + [ 7.2002834, 46.561132 ], + [ 7.2001096, 46.5611851 ], + [ 7.199952, 46.561233 ], + [ 7.1998098, 46.5613262 ], + [ 7.1997002, 46.5614086 ], + [ 7.1995689, 46.5614232 ], + [ 7.1993652, 46.5614139 ], + [ 7.1991615, 46.5613934 ], + [ 7.198908, 46.5613944 ], + [ 7.1987523, 46.561403 ], + [ 7.1986853, 46.5614356 ], + [ 7.1986336, 46.5615191 ], + [ 7.1986372, 46.5616262 ], + [ 7.1987566, 46.5617184 ], + [ 7.1989005, 46.561811 ], + [ 7.1989791, 46.5619025 ], + [ 7.199008, 46.5620045 ], + [ 7.1989862, 46.5621449 ], + [ 7.1989643, 46.5623021 ], + [ 7.1989986, 46.5624661 ], + [ 7.1990519, 46.5625797 ], + [ 7.1991948, 46.5627118 ], + [ 7.199355, 46.5627991 ], + [ 7.1994654, 46.5628969 ], + [ 7.1995197, 46.5629767 ], + [ 7.1995476, 46.5631066 ], + [ 7.1994715, 46.5631786 ], + [ 7.1993013, 46.5631473 ], + [ 7.1990995, 46.5630705 ], + [ 7.1987601, 46.562963 ], + [ 7.1984695, 46.5628622 ], + [ 7.1981129, 46.5627599 ], + [ 7.1976921, 46.5626398 ], + [ 7.1972486, 46.5624742 ], + [ 7.1968368, 46.562326 ], + [ 7.1964268, 46.5621385 ], + [ 7.1960548, 46.5620192 ], + [ 7.1958376, 46.5619251 ], + [ 7.1957273, 46.5618105 ], + [ 7.1955772, 46.5616558 ], + [ 7.1954116, 46.5614951 ], + [ 7.195294, 46.5613634 ], + [ 7.19521, 46.5612099 ], + [ 7.1950445, 46.5610267 ], + [ 7.1948925, 46.5609395 ], + [ 7.1947549, 46.5609088 ], + [ 7.1945829, 46.5609058 ], + [ 7.1944208, 46.5608748 ], + [ 7.1942833, 46.5608273 ], + [ 7.1941322, 46.5607118 ], + [ 7.1939956, 46.5606362 ], + [ 7.1938273, 46.5605431 ], + [ 7.1935522, 46.5604649 ], + [ 7.1933675, 46.5603828 ], + [ 7.1931666, 46.5602947 ], + [ 7.1929485, 46.5602176 ], + [ 7.1927711, 46.5601524 ], + [ 7.1925938, 46.560076 ], + [ 7.1924083, 46.560005 ], + [ 7.1922472, 46.5599347 ], + [ 7.19203, 46.5598462 ], + [ 7.1918427, 46.5598091 ], + [ 7.1916562, 46.5597719 ], + [ 7.1914534, 46.5597345 ], + [ 7.1912924, 46.559664 ], + [ 7.1910924, 46.5595478 ], + [ 7.190916, 46.5594432 ], + [ 7.1907061, 46.5593607 ], + [ 7.1904482, 46.5592603 ], + [ 7.190174, 46.5591653 ], + [ 7.1899568, 46.5590599 ], + [ 7.1897632, 46.558989 ], + [ 7.1896039, 46.5588902 ], + [ 7.1894103, 46.5588024 ], + [ 7.1892175, 46.55872 ], + [ 7.1890484, 46.5586381 ], + [ 7.1888963, 46.5585622 ], + [ 7.1886945, 46.5584798 ], + [ 7.188509, 46.5584144 ], + [ 7.1882583, 46.5583423 ], + [ 7.1880873, 46.5583054 ], + [ 7.1878854, 46.5582567 ], + [ 7.1877642, 46.5582152 ], + [ 7.1875724, 46.5580991 ], + [ 7.1873634, 46.5579939 ], + [ 7.1871236, 46.5578432 ], + [ 7.1869056, 46.5577604 ], + [ 7.1866658, 46.5576154 ], + [ 7.1864506, 46.5574651 ], + [ 7.1862344, 46.5573316 ], + [ 7.18601, 46.5572093 ], + [ 7.1857774, 46.5570981 ], + [ 7.1855848, 46.5569876 ], + [ 7.1853522, 46.5568707 ], + [ 7.1851595, 46.556771499999996 ], + [ 7.1848646, 46.5565748 ], + [ 7.1847624, 46.5564715 ], + [ 7.1846828, 46.5564082 ], + [ 7.1845933, 46.556384 ], + [ 7.1844901, 46.556309 ], + [ 7.184331, 46.5561879 ], + [ 7.1842216, 46.5560395 ], + [ 7.1840769, 46.5559748 ], + [ 7.183952, 46.5558262 ], + [ 7.1837919, 46.5557389 ], + [ 7.1835911, 46.5556282 ], + [ 7.1833586, 46.5555113 ], + [ 7.1831668, 46.5553952 ], + [ 7.1829009, 46.5552722 ], + [ 7.1826276, 46.5551602 ], + [ 7.1823769, 46.5550825 ], + [ 7.1821, 46.555038 ], + [ 7.1818963, 46.5550287 ], + [ 7.1817678, 46.5549757 ], + [ 7.1815969, 46.5549333 ], + [ 7.1813859, 46.5549013 ], + [ 7.1810836, 46.5548846 ], + [ 7.1808908, 46.5548079 ], + [ 7.1806259, 46.5546566 ], + [ 7.1803435, 46.5545727 ], + [ 7.180195, 46.5546094 ], + [ 7.1799407, 46.5546105 ], + [ 7.1797941, 46.5545965 ], + [ 7.1796085, 46.5545425 ], + [ 7.1794222, 46.5544828 ], + [ 7.179205, 46.5543945 ], + [ 7.1790448, 46.5543127 ], + [ 7.178893, 46.554203 ], + [ 7.1786958, 46.5540248 ], + [ 7.1785041, 46.5538918 ], + [ 7.1783458, 46.5537594 ], + [ 7.1781876, 46.5536157 ], + [ 7.1780284, 46.5534946 ], + [ 7.1778132, 46.5533443 ], + [ 7.1776305, 46.5532002 ], + [ 7.1774316, 46.5530446 ], + [ 7.1772162999999995, 46.5529055 ], + [ 7.1771088, 46.5527121 ], + [ 7.1769299, 46.5524667 ], + [ 7.1767356, 46.5522041 ], + [ 7.1766163, 46.5521006 ], + [ 7.1763947, 46.551922 ], + [ 7.1759398, 46.5516152 ], + [ 7.1755627, 46.5514112 ], + [ 7.1750579, 46.5511375 ], + [ 7.1746853, 46.5508322 ], + [ 7.180031, 46.5493577 ], + [ 7.1804683, 46.549253 ], + [ 7.1807735, 46.5491685 ], + [ 7.1810297, 46.5490942 ], + [ 7.1906847, 46.5450007 ], + [ 7.1910507, 46.5453441 ], + [ 7.1920487, 46.5466237 ], + [ 7.1933941, 46.5460689 ], + [ 7.1937211, 46.5458447 ], + [ 7.1943353, 46.5455312 ], + [ 7.1958126, 46.5446348 ], + [ 7.1978385, 46.5434877 ], + [ 7.200806, 46.5416498 ], + [ 7.2009831, 46.5399231 ], + [ 7.2040213, 46.5367539 ], + [ 7.2065461, 46.5346722 ], + [ 7.2078155, 46.5335053 ], + [ 7.2088355, 46.5327428 ], + [ 7.2088299, 46.5327108 ], + [ 7.2086817, 46.5325111 ], + [ 7.2084061, 46.5321902 ], + [ 7.208066, 46.5318931 ], + [ 7.2077549, 46.531691 ], + [ 7.2075245, 46.5316508 ], + [ 7.2073111, 46.5316326 ], + [ 7.2071933, 46.5315619 ], + [ 7.2069903, 46.5314084 ], + [ 7.2068355, 46.5312314 ], + [ 7.2066584, 46.5311111 ], + [ 7.2064569, 46.530997 ], + [ 7.2062332, 46.5309227 ], + [ 7.2060405, 46.5308197 ], + [ 7.2058961, 46.5306876 ], + [ 7.2056242, 46.530462299999996 ], + [ 7.2051812, 46.530049 ], + [ 7.2048915000000004, 46.5297846 ], + [ 7.2048115, 46.5296343 ], + [ 7.2048062999999996, 46.5295217 ], + [ 7.2048248, 46.5293805 ], + [ 7.2048678, 46.5292445 ], + [ 7.2048619, 46.5291094 ], + [ 7.204796, 46.5289024 ], + [ 7.2047137, 46.5287014 ], + [ 7.2045656, 46.528496 ], + [ 7.2043885, 46.5283757 ], + [ 7.204147, 46.5282738 ], + [ 7.2039159, 46.5282165 ], + [ 7.2035544, 46.5281789 ], + [ 7.2032269, 46.5281801 ], + [ 7.2031269, 46.5281371 ], + [ 7.2029751, 46.5280276 ], + [ 7.2027321, 46.5278917 ], + [ 7.2025387, 46.5277719 ], + [ 7.2023121, 46.5276358 ], + [ 7.2021602, 46.5275262 ], + [ 7.2020084, 46.5274111 ], + [ 7.201878, 46.5272392 ], + [ 7.2018129, 46.527049 ], + [ 7.2017942999999995, 46.5268241 ], + [ 7.2018358, 46.526643 ], + [ 7.2018107, 46.5264408 ], + [ 7.2017684, 46.5262277 ], + [ 7.2016455, 46.526033 ], + [ 7.2014884, 46.5258054 ], + [ 7.20143, 46.5255756 ], + [ 7.2013618, 46.5253292 ], + [ 7.2012004, 46.5251806 ], + [ 7.201047, 46.525043 ], + [ 7.2008388, 46.5249683 ], + [ 7.2006626, 46.524848 ], + [ 7.2003752, 46.5246344 ], + [ 7.2000693, 46.5243647 ], + [ 7.1996404, 46.5241032 ], + [ 7.1992419, 46.5237791 ], + [ 7.1989205, 46.5235323 ], + [ 7.1986975, 46.5232947 ], + [ 7.1984598, 46.5230856 ], + [ 7.1982946, 46.5228636 ], + [ 7.1981576, 46.5225341 ], + [ 7.1979725, 46.5222225 ], + [ 7.1977948, 46.521894 ], + [ 7.1975282, 46.521584 ], + [ 7.1972142, 46.5213202 ], + [ 7.1967432, 46.5210089 ], + [ 7.1964765, 46.5207102 ], + [ 7.1962543, 46.5204951 ], + [ 7.1959455, 46.5201636 ], + [ 7.1957085, 46.5199713 ], + [ 7.1953301, 46.5197313 ], + [ 7.1950383, 46.5196021 ], + [ 7.1947028, 46.5194063 ], + [ 7.1945147, 46.5192186 ], + [ 7.1942651, 46.5189309 ], + [ 7.1941178, 46.5187312 ], + [ 7.1938905, 46.5185726 ], + [ 7.1935898, 46.5184266 ], + [ 7.1929981, 46.5181629 ], + [ 7.1924641, 46.5179204 ], + [ 7.1921034, 46.5177193 ], + [ 7.1913429, 46.517138 ], + [ 7.190769, 46.5167273 ], + [ 7.1903706, 46.5164031 ], + [ 7.1900715, 46.516094 ], + [ 7.1898302, 46.5158004 ], + [ 7.1897036, 46.515527 ], + [ 7.1895318, 46.5153335 ], + [ 7.189269, 46.5151191 ], + [ 7.1890498, 46.5149604 ], + [ 7.1863775, 46.513089 ], + [ 7.1855787, 46.5123844 ], + [ 7.1853366, 46.5122654 ], + [ 7.1851048, 46.5120168 ], + [ 7.1847658, 46.5117364 ], + [ 7.1843519, 46.5114295 ], + [ 7.1839751, 46.5112119 ], + [ 7.1835471, 46.5109616 ], + [ 7.1830858, 46.5106838 ], + [ 7.1825586, 46.510413 ], + [ 7.1821492, 46.5101961 ], + [ 7.1818857, 46.5099593 ], + [ 7.1816008, 46.5096046 ], + [ 7.1813461, 46.5092099 ], + [ 7.1762436, 46.5095451 ], + [ 7.1762095, 46.5097034 ], + [ 7.1761473, 46.5097723 ], + [ 7.1760406, 46.5097744 ], + [ 7.1759414, 46.5097371 ], + [ 7.1758318, 46.5096661 ], + [ 7.1756875, 46.509534 ], + [ 7.1755158, 46.5093459 ], + [ 7.1752678, 46.5090975 ], + [ 7.1750607, 46.5088314 ], + [ 7.174943, 46.5085748 ], + [ 7.1748224, 46.5084363 ], + [ 7.1747143, 46.5083822 ], + [ 7.1746366, 46.5082938 ], + [ 7.174573, 46.5081486 ], + [ 7.1744287, 46.508022 ], + [ 7.1743294, 46.5079959 ], + [ 7.1741836, 46.5080157 ], + [ 7.1740554, 46.5080803 ], + [ 7.1739872, 46.5082055 ], + [ 7.1739353, 46.5083361 ], + [ 7.1738634, 46.508377 ], + [ 7.1737516, 46.5084244 ], + [ 7.1736479, 46.5084829 ], + [ 7.1735294, 46.5085866 ], + [ 7.1734175, 46.5086396 ], + [ 7.1733346000000004, 46.5086188 ], + [ 7.1732828, 46.5085578 ], + [ 7.1732725, 46.5084961 ], + [ 7.1732762, 46.5083947 ], + [ 7.1732948, 46.5082591 ], + [ 7.1732904, 46.5081578 ], + [ 7.1732009, 46.5079795 ], + [ 7.1731388, 46.5078568 ], + [ 7.1731152, 46.5076883 ], + [ 7.1731005, 46.5075365 ], + [ 7.1732005, 46.5073936 ], + [ 7.1733013, 46.5072622 ], + [ 7.1732732, 46.5071894 ], + [ 7.1731991, 46.5071797 ], + [ 7.1730681, 46.5071655 ], + [ 7.1729926, 46.5071164 ], + [ 7.1729564, 46.5070382 ], + [ 7.172892, 46.5068706 ], + [ 7.1728018, 46.5066809 ], + [ 7.1726864, 46.506458 ], + [ 7.1725362, 46.506202 ], + [ 7.1724379, 46.5060068 ], + [ 7.1723262, 46.505874 ], + [ 7.17223, 46.5057238 ], + [ 7.1721759, 46.5056236 ], + [ 7.1721472, 46.5055171 ], + [ 7.1721332, 46.505371 ], + [ 7.1721599, 46.5052409 ], + [ 7.1721607, 46.5050775 ], + [ 7.1721475, 46.5049426 ], + [ 7.172109, 46.5048252 ], + [ 7.1719766, 46.5047772 ], + [ 7.1718388, 46.5048081 ], + [ 7.1717284, 46.5048948 ], + [ 7.1716106, 46.5050155 ], + [ 7.1715069, 46.505074 ], + [ 7.1713373, 46.5051112 ], + [ 7.1710255, 46.5051007 ], + [ 7.1709292, 46.5053166 ], + [ 7.1705713, 46.5057407 ], + [ 7.1701037, 46.506274 ], + [ 7.169925, 46.5065029 ], + [ 7.169865, 46.5066224 ], + [ 7.1698294, 46.506747 ], + [ 7.16977, 46.5068891 ], + [ 7.1696848, 46.5069922 ], + [ 7.169521, 46.5071813 ], + [ 7.1693736, 46.5073589 ], + [ 7.1693305, 46.5075118 ], + [ 7.16928, 46.5076649 ], + [ 7.1692533, 46.5078007 ], + [ 7.1691755, 46.5078868 ], + [ 7.1690155, 46.5079801 ], + [ 7.1690117, 46.5080816 ], + [ 7.1691004, 46.5082487 ], + [ 7.1692069, 46.5084437 ], + [ 7.1693801, 46.5086712 ], + [ 7.1695288, 46.5088933 ], + [ 7.1694828, 46.5089676 ], + [ 7.1694687, 46.5090185 ], + [ 7.1694413, 46.5091316 ], + [ 7.1694435, 46.5091824 ], + [ 7.1693316, 46.5092466 ], + [ 7.1692094, 46.5092659 ], + [ 7.169088, 46.5092796 ], + [ 7.1689842, 46.5093381 ], + [ 7.1686924, 46.5094117 ], + [ 7.1684665, 46.5094782 ], + [ 7.1682317, 46.5095337 ], + [ 7.1679629, 46.5095447 ], + [ 7.1674622, 46.509509800000004 ], + [ 7.1670928, 46.5094666 ], + [ 7.167001, 46.5094179 ], + [ 7.1669396, 46.5093233 ], + [ 7.1668434, 46.5091788 ], + [ 7.1666095, 46.509054 ], + [ 7.1663866, 46.5090136 ], + [ 7.1660667, 46.5089806 ], + [ 7.1656402, 46.5089556 ], + [ 7.1652322, 46.5089582 ], + [ 7.1648412, 46.5089886 ], + [ 7.1646538, 46.5090092 ], + [ 7.1645078, 46.509046 ], + [ 7.1643804, 46.5091163 ], + [ 7.1642796, 46.5092535 ], + [ 7.1642128, 46.5094068 ], + [ 7.1641468, 46.5095828 ], + [ 7.1640408, 46.5097765 ], + [ 7.1639762, 46.5099862 ], + [ 7.163856, 46.5102307 ], + [ 7.1637411, 46.5104189 ], + [ 7.1636039, 46.510647 ], + [ 7.1634556, 46.5108246 ], + [ 7.1633475, 46.5109563 ], + [ 7.1631362, 46.5111803 ], + [ 7.162908, 46.5113876 ], + [ 7.1626464, 46.5115845 ], + [ 7.1623833, 46.5117476 ], + [ 7.1621315, 46.5117808 ], + [ 7.1619182, 46.5117682 ], + [ 7.1618176, 46.5117082 ], + [ 7.1617228, 46.5115975 ], + [ 7.1616696, 46.5114973 ], + [ 7.1616749, 46.5114183 ], + [ 7.1617186, 46.5113047 ], + [ 7.1618439, 46.5111784 ], + [ 7.1619936, 46.5110458 ], + [ 7.16211, 46.5108857 ], + [ 7.1622086, 46.5107148 ], + [ 7.1623073, 46.5105325 ], + [ 7.1623644, 46.5103455 ], + [ 7.162472, 46.5101744 ], + [ 7.162589, 46.5100536 ], + [ 7.1626914, 46.5099503 ], + [ 7.1627722, 46.5097458 ], + [ 7.1627879, 46.5095372 ], + [ 7.1627133, 46.5093133 ], + [ 7.1625246, 46.50912 ], + [ 7.1623427, 46.5088648 ], + [ 7.1621125, 46.5086553 ], + [ 7.1618423, 46.508458 ], + [ 7.1615797, 46.5082269 ], + [ 7.1613653, 46.5077975 ], + [ 7.161224, 46.5075638 ], + [ 7.1610435, 46.5073479 ], + [ 7.1608134, 46.5071216 ], + [ 7.1605337, 46.5068907 ], + [ 7.1602518, 46.5066092 ], + [ 7.1599387, 46.5063621 ], + [ 7.1596116, 46.5061603 ], + [ 7.159249, 46.5058973 ], + [ 7.1589654, 46.5057791 ], + [ 7.1587079, 46.5056774 ], + [ 7.1584406, 46.5055476 ], + [ 7.1581217, 46.50534 ], + [ 7.1579433, 46.5051916 ], + [ 7.1578228, 46.5050364 ], + [ 7.1577341, 46.5048748 ], + [ 7.1576372, 46.5047247 ], + [ 7.1574796, 46.5046546 ], + [ 7.1572353, 46.5044963 ], + [ 7.1568564, 46.5042336 ], + [ 7.1565538, 46.5040257 ], + [ 7.1562333, 46.5038013 ], + [ 7.1558344, 46.5036461 ], + [ 7.155416, 46.5036151 ], + [ 7.155313, 46.5036847 ], + [ 7.1552026, 46.5037827 ], + [ 7.1550493, 46.5038308 ], + [ 7.1548938, 46.5038227 ], + [ 7.1547939, 46.5037797 ], + [ 7.154654, 46.5037543 ], + [ 7.1545066, 46.5037461 ], + [ 7.1543918, 46.5037428 ], + [ 7.1542504, 46.503695 ], + [ 7.1541149, 46.5037709 ], + [ 7.1539807, 46.5038863 ], + [ 7.1538177, 46.5040754 ], + [ 7.1535805, 46.5042773 ], + [ 7.1534099, 46.5045004 ], + [ 7.1533173, 46.504615 ], + [ 7.1532668, 46.5047737 ], + [ 7.1532238, 46.5049096 ], + [ 7.1530793, 46.5049746 ], + [ 7.1529688, 46.5050782 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "JBG0019", + "country" : "CHE", + "name" : [ + { + "text" : "Eidgenössisches Jagdbanngebiet Hochmatt-Motélon", + "lang" : "de-CH" + }, + { + "text" : "District franc fédéral Hochmatt-Motélon", + "lang" : "fr-CH" + }, + { + "text" : "Bandita federale di caccia Hochmatt-Motélon", + "lang" : "it-CH" + }, + { + "text" : "Federal Game Reserve Hochmatt-Motélon", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7607105, 47.3550513 ], + [ 7.7605032, 47.3552866 ], + [ 7.7604354, 47.3554102 ], + [ 7.7604394, 47.3555206 ], + [ 7.7606744, 47.356043 ], + [ 7.7611432, 47.3570444 ], + [ 7.7615104, 47.3578383 ], + [ 7.761594, 47.3580663 ], + [ 7.7616492, 47.358074 ], + [ 7.7616575, 47.3579112 ], + [ 7.7617008, 47.3572814 ], + [ 7.7617113, 47.357198 ], + [ 7.7617458, 47.3564486 ], + [ 7.7617401, 47.3557657 ], + [ 7.761524, 47.3556419 ], + [ 7.7611609999999995, 47.3554351 ], + [ 7.7607315, 47.3551829 ], + [ 7.7607105, 47.3550513 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns094", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Seilhüslifluh", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Seilhüslifluh", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Seilhüslifluh", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Seilhüslifluh", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.776046, 47.3598357 ], + [ 7.7760636, 47.3599004 ], + [ 7.7761525, 47.3600165 ], + [ 7.7761636, 47.3600848 ], + [ 7.7761496, 47.3601793 ], + [ 7.7762018, 47.3602519 ], + [ 7.7762458, 47.3602932 ], + [ 7.7763445, 47.3603947 ], + [ 7.7764017, 47.3604296 ], + [ 7.7764272, 47.3604718 ], + [ 7.7764316, 47.3605395 ], + [ 7.7765191, 47.3606195 ], + [ 7.7766307999999995, 47.3606841 ], + [ 7.7766879, 47.3607069 ], + [ 7.7770147, 47.3604277 ], + [ 7.7766893, 47.3596793 ], + [ 7.7766236, 47.3597144 ], + [ 7.7762785999999995, 47.3599018 ], + [ 7.7761154, 47.3598439 ], + [ 7.7760703, 47.3598273 ], + [ 7.776046, 47.3598357 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns128", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Schöntalweiher", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Schöntalweiher", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Schöntalweiher", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Schöntalweiher", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7528717, 47.3535426 ], + [ 7.7525716, 47.3534302 ], + [ 7.7522175, 47.3532412 ], + [ 7.7518005, 47.3529985 ], + [ 7.7518352, 47.3530497 ], + [ 7.7518526, 47.3530928 ], + [ 7.7518545, 47.3531232 ], + [ 7.7519029, 47.3531825 ], + [ 7.7519616, 47.3532337 ], + [ 7.7520185999999995, 47.3532896 ], + [ 7.7521256, 47.3533826 ], + [ 7.7523616, 47.3535162 ], + [ 7.7525649, 47.3536311 ], + [ 7.7527042999999995, 47.3536879 ], + [ 7.7530984, 47.3538478 ], + [ 7.7533013, 47.3539291 ], + [ 7.7534042, 47.3539705 ], + [ 7.7540584, 47.3542427 ], + [ 7.7556894, 47.3544603 ], + [ 7.7586637, 47.3548313 ], + [ 7.7592899, 47.3547596 ], + [ 7.7593001, 47.3547327 ], + [ 7.75936, 47.3546952 ], + [ 7.7594539000000005, 47.3546098 ], + [ 7.7594736, 47.3544674 ], + [ 7.7593636, 47.3544389 ], + [ 7.7591208, 47.3543202 ], + [ 7.7587832, 47.354145 ], + [ 7.7586211, 47.3540299 ], + [ 7.7582224, 47.353688 ], + [ 7.7580221, 47.353482 ], + [ 7.7580010999999995, 47.3534167 ], + [ 7.7578066, 47.3530524 ], + [ 7.7574729, 47.3530551 ], + [ 7.7567822, 47.3531303 ], + [ 7.75678, 47.3531189 ], + [ 7.7564131, 47.3531562 ], + [ 7.7559721, 47.3531994 ], + [ 7.7555876999999995, 47.3532343 ], + [ 7.7554522, 47.3532499 ], + [ 7.755444, 47.3532298 ], + [ 7.7552187, 47.3531868 ], + [ 7.7549707, 47.3531156 ], + [ 7.7548226, 47.3530579 ], + [ 7.7545967000000005, 47.3529766 ], + [ 7.7541543, 47.3528484 ], + [ 7.7538564, 47.3527399 ], + [ 7.7535743, 47.3526172 ], + [ 7.753295, 47.3524795 ], + [ 7.7531171, 47.352385 ], + [ 7.7529464, 47.3522869 ], + [ 7.7528797, 47.3522301 ], + [ 7.7526634, 47.3522973 ], + [ 7.7527243, 47.3524015 ], + [ 7.7527791, 47.3525098 ], + [ 7.7527946, 47.3525737 ], + [ 7.7528027999999996, 47.3526457 ], + [ 7.7527762, 47.352836 ], + [ 7.7533238, 47.3530036 ], + [ 7.7535882, 47.3531474 ], + [ 7.7540479, 47.3533423 ], + [ 7.7544807, 47.3534673 ], + [ 7.7543898, 47.3537048 ], + [ 7.7540206, 47.3537065 ], + [ 7.7536275, 47.3536866 ], + [ 7.7532103, 47.3536378 ], + [ 7.7528717, 47.3535426 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns348", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Helfenbergrüttenen", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Helfenbergrüttenen", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Helfenbergrüttenen", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Helfenbergrüttenen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.2335621, 47.5776285 ], + [ 8.2300199, 47.576746299999996 ], + [ 8.2278492, 47.5779761 ], + [ 8.2256327, 47.5778616 ], + [ 8.2253632, 47.5779506 ], + [ 8.2251883, 47.5780319 ], + [ 8.2250045, 47.5782473 ], + [ 8.2216756, 47.5829702 ], + [ 8.2215329, 47.5832033 ], + [ 8.2214306, 47.5834791 ], + [ 8.2213659, 47.5838284 ], + [ 8.2213027, 47.584274 ], + [ 8.2212709, 47.5845946 ], + [ 8.2256149, 47.5861822 ], + [ 8.2274037, 47.5864525 ], + [ 8.2274163, 47.5868527 ], + [ 8.2272885, 47.5873077 ], + [ 8.227165, 47.5876692 ], + [ 8.227045, 47.5880865 ], + [ 8.2268588, 47.5883658 ], + [ 8.2265987, 47.5885868 ], + [ 8.226115, 47.5887503 ], + [ 8.2256417, 47.5888802 ], + [ 8.2252113, 47.5889931 ], + [ 8.2247334, 47.5891006 ], + [ 8.22442, 47.5891988 ], + [ 8.22433, 47.5892399 ], + [ 8.2234767, 47.5899751 ], + [ 8.2229499, 47.5895829 ], + [ 8.2225363, 47.5899303 ], + [ 8.2221017, 47.590212 ], + [ 8.221684, 47.5903976 ], + [ 8.2213379, 47.590541 ], + [ 8.2209823, 47.5907089 ], + [ 8.220605, 47.5908759 ], + [ 8.2201533, 47.5910158 ], + [ 8.2198464, 47.5911095 ], + [ 8.2196977, 47.5911114 ], + [ 8.2193129, 47.591105 ], + [ 8.2190232, 47.591071 ], + [ 8.2185821, 47.5911369 ], + [ 8.2178191, 47.5912356 ], + [ 8.2182046, 47.5910333 ], + [ 8.218533, 47.5889782 ], + [ 8.2188518, 47.588968 ], + [ 8.2191317, 47.5879356 ], + [ 8.2185973, 47.5881254 ], + [ 8.2181221, 47.5876988 ], + [ 8.2181619, 47.587402 ], + [ 8.2185272, 47.5871919 ], + [ 8.2183825, 47.5870959 ], + [ 8.218188, 47.5870332 ], + [ 8.2179686, 47.5870346 ], + [ 8.2178104, 47.5870766 ], + [ 8.21766, 47.5871339 ], + [ 8.2174051, 47.5872892 ], + [ 8.2167677, 47.5876619 ], + [ 8.2157624, 47.5882212 ], + [ 8.214959, 47.5886206 ], + [ 8.2145991, 47.5888379 ], + [ 8.214382, 47.5889929 ], + [ 8.214143, 47.5891992 ], + [ 8.213633, 47.5894943 ], + [ 8.2135432, 47.5895614 ], + [ 8.2134843, 47.5896743 ], + [ 8.2134484, 47.5898025 ], + [ 8.2134427, 47.5899305 ], + [ 8.2133827, 47.5902317 ], + [ 8.2133324, 47.5905275 ], + [ 8.2132987, 47.5909446 ], + [ 8.2132382, 47.5914618 ], + [ 8.2132349, 47.5917586 ], + [ 8.2132671, 47.5918863 ], + [ 8.2133834, 47.5920851 ], + [ 8.2136713, 47.5926307 ], + [ 8.2138499, 47.5929518 ], + [ 8.2139817, 47.5931659 ], + [ 8.2142387, 47.5935764 ], + [ 8.2144777, 47.5939812 ], + [ 8.2145251, 47.594114 ], + [ 8.2146991, 47.5944899 ], + [ 8.2148041, 47.5946756 ], + [ 8.2150898, 47.5950649 ], + [ 8.2171904, 47.5975394 ], + [ 8.2175525, 47.5977492 ], + [ 8.2177967, 47.5978538 ], + [ 8.2180849, 47.5980084 ], + [ 8.2183055, 47.5981443 ], + [ 8.2185321, 47.5982994 ], + [ 8.2187708, 47.5985325 ], + [ 8.2189778, 47.5987657 ], + [ 8.2192058, 47.5991791 ], + [ 8.2194783, 47.5996258 ], + [ 8.2196199, 47.5999273 ], + [ 8.2197261, 47.6001964 ], + [ 8.2198004, 47.6004486 ], + [ 8.2199001, 47.6007852 ], + [ 8.2199858, 47.6011255 ], + [ 8.2202971, 47.6019498 ], + [ 8.2206942, 47.602046 ], + [ 8.2217082, 47.6047475 ], + [ 8.2219573, 47.6047332 ], + [ 8.2222981, 47.6055788 ], + [ 8.2251289, 47.6041046 ], + [ 8.225725, 47.6039513 ], + [ 8.2273812, 47.6037062 ], + [ 8.2273177, 47.6035717 ], + [ 8.2273413, 47.6034816 ], + [ 8.2274115, 47.6033389 ], + [ 8.2275076, 47.6032095 ], + [ 8.2275325, 47.6031464 ], + [ 8.2273581, 47.6028789 ], + [ 8.2267206, 47.603044 ], + [ 8.2262922, 47.6031908 ], + [ 8.2261228, 47.6030852 ], + [ 8.2260845, 47.6029126 ], + [ 8.2260448, 47.6026475 ], + [ 8.2260309, 47.6024408 ], + [ 8.2260103, 47.6022835 ], + [ 8.225961999999999, 47.6021093 ], + [ 8.2259434, 47.6020304 ], + [ 8.225842, 47.6019752 ], + [ 8.2257213, 47.6018537 ], + [ 8.2255067, 47.6018965 ], + [ 8.2254564, 47.6015309 ], + [ 8.2254329, 47.6012899 ], + [ 8.2254308, 47.6009796 ], + [ 8.2254064, 47.6006841 ], + [ 8.2253651, 47.6004191 ], + [ 8.2253434, 47.6001899 ], + [ 8.2253313, 47.5999921 ], + [ 8.2252644, 47.5997972 ], + [ 8.2251861, 47.5996179 ], + [ 8.2250732, 47.599455 ], + [ 8.2249773, 47.599266 ], + [ 8.2249117, 47.5990416 ], + [ 8.2249125, 47.5987599 ], + [ 8.2250208, 47.5984444 ], + [ 8.2252323, 47.5982504 ], + [ 8.2255429, 47.5980667 ], + [ 8.2257134, 47.5979594 ], + [ 8.2258919, 47.5978376 ], + [ 8.2260522, 47.5976108 ], + [ 8.226124, 47.5974071 ], + [ 8.2261999, 47.5971486 ], + [ 8.2262506, 47.5969745 ], + [ 8.226337, 47.5967527 ], + [ 8.2264404, 47.5966053 ], + [ 8.2265632, 47.5964805 ], + [ 8.2268663, 47.5963525 ], + [ 8.2272215, 47.5962132 ], + [ 8.2274974, 47.5961579 ], + [ 8.2275422, 47.5961489 ], + [ 8.227738, 47.5961042 ], + [ 8.2278047, 47.5963927 ], + [ 8.2277658, 47.5966282 ], + [ 8.2280485, 47.5964681 ], + [ 8.2284704, 47.5962696 ], + [ 8.2292663, 47.5960156 ], + [ 8.2299749, 47.5957583 ], + [ 8.2310516, 47.5953864 ], + [ 8.2314361, 47.5952624 ], + [ 8.2324376, 47.5948823 ], + [ 8.2327725, 47.5947461 ], + [ 8.2332384, 47.5945605 ], + [ 8.2337776, 47.5943851 ], + [ 8.2341769, 47.5941935 ], + [ 8.2349778, 47.5939031 ], + [ 8.2361314, 47.5934438 ], + [ 8.2367196, 47.5931964 ], + [ 8.2371174, 47.5930248 ], + [ 8.2374475, 47.5928437 ], + [ 8.238055, 47.5924806 ], + [ 8.2385258, 47.5921516 ], + [ 8.238841, 47.5918943 ], + [ 8.2390583, 47.5916808 ], + [ 8.2395826, 47.5910492 ], + [ 8.239781, 47.5907377 ], + [ 8.239972, 47.5904231 ], + [ 8.2401593, 47.5900521 ], + [ 8.240532, 47.5892083 ], + [ 8.2412292, 47.5876228 ], + [ 8.2413744, 47.5872972 ], + [ 8.2415716, 47.5869602 ], + [ 8.2418078, 47.5866454 ], + [ 8.2414004, 47.5865326 ], + [ 8.2408134, 47.5860114 ], + [ 8.2418237, 47.5850772 ], + [ 8.2414874, 47.5848718 ], + [ 8.2421609, 47.5842457 ], + [ 8.2403678, 47.5831937 ], + [ 8.2406389, 47.5829917 ], + [ 8.2413154, 47.5826711 ], + [ 8.241807, 47.5822717 ], + [ 8.2431538, 47.5811771 ], + [ 8.2444358, 47.5802517 ], + [ 8.2450811, 47.579909 ], + [ 8.245451, 47.5796465 ], + [ 8.2457057, 47.5794657 ], + [ 8.2458485, 47.5793478 ], + [ 8.2460397, 47.5791904 ], + [ 8.2463818, 47.5789081 ], + [ 8.2466903, 47.578653 ], + [ 8.2468478, 47.5785234 ], + [ 8.2476578, 47.5779742 ], + [ 8.248292, 47.577508 ], + [ 8.249199, 47.5768411 ], + [ 8.2497752, 47.576499 ], + [ 8.2502348, 47.5761287 ], + [ 8.2507509, 47.5757659 ], + [ 8.2512276, 47.5754303 ], + [ 8.2518676, 47.5748564 ], + [ 8.2523306, 47.5744981 ], + [ 8.2525195, 47.5743518 ], + [ 8.2528915, 47.5740175 ], + [ 8.2532143, 47.573728 ], + [ 8.2515413, 47.5730806 ], + [ 8.2506612, 47.5733791 ], + [ 8.250079, 47.5736564 ], + [ 8.2493301, 47.5739539 ], + [ 8.2479297, 47.574455 ], + [ 8.2449046, 47.5733797 ], + [ 8.2457831, 47.5723229 ], + [ 8.2452987, 47.5720413 ], + [ 8.244543, 47.5729271 ], + [ 8.2443077, 47.5731328 ], + [ 8.2440305, 47.5733163 ], + [ 8.2438181, 47.5734384 ], + [ 8.243704, 47.5735291 ], + [ 8.2438301, 47.5736291 ], + [ 8.2422299, 47.5752564 ], + [ 8.2393153, 47.5763272 ], + [ 8.2376471, 47.575824 ], + [ 8.2372306, 47.5764098 ], + [ 8.2381825, 47.5768403 ], + [ 8.236623699999999, 47.5778719 ], + [ 8.2356061, 47.5775425 ], + [ 8.235358, 47.5778385 ], + [ 8.2336824, 47.5773983 ], + [ 8.2335621, 47.5776285 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "WZV0018", + "country" : "CHE", + "name" : [ + { + "text" : "Wasser- und Zugvogelreservat Klingnauerstausee", + "lang" : "de-CH" + }, + { + "text" : "Réserve d'oiseaux d'eau et de migrateurs Klingnauerstausee", + "lang" : "fr-CH" + }, + { + "text" : "Riserva di uccelli acquatici e migratori Klingnauerstausee", + "lang" : "it-CH" + }, + { + "text" : "Water Bird and Migratory Bird Reserves Klingnauerstausee", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8439282, 47.3790873 ], + [ 7.8439785, 47.3791359 ], + [ 7.8440945, 47.3791928 ], + [ 7.8445044, 47.3793378 ], + [ 7.84457, 47.3793418 ], + [ 7.8445884, 47.3793191 ], + [ 7.844607, 47.3792886 ], + [ 7.8445943, 47.3792525 ], + [ 7.8443562, 47.379143 ], + [ 7.8441247, 47.3790718 ], + [ 7.8439685, 47.3790469 ], + [ 7.8439282, 47.3790873 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns051", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Hecken-Komplex Schmutzberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Hecken-Komplex Schmutzberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Hecken-Komplex Schmutzberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Hecken-Komplex Schmutzberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.9162147, 46.1621008 ], + [ 8.9162056, 46.1619597 ], + [ 8.9161858, 46.1618191 ], + [ 8.9161555, 46.1616794 ], + [ 8.9161146, 46.1615409 ], + [ 8.9160635, 46.1614042 ], + [ 8.9160021, 46.1612695 ], + [ 8.9159306, 46.1611373 ], + [ 8.9158493, 46.1610078 ], + [ 8.9157583, 46.1608814 ], + [ 8.9156579, 46.1607585 ], + [ 8.9155484, 46.1606395 ], + [ 8.9154301, 46.1605246 ], + [ 8.9153033, 46.1604141 ], + [ 8.9151684, 46.1603084 ], + [ 8.9150257, 46.1602078 ], + [ 8.9148756, 46.1601125 ], + [ 8.9147185, 46.1600228 ], + [ 8.9145549, 46.1599389 ], + [ 8.9143852, 46.1598611 ], + [ 8.9142099, 46.1597895 ], + [ 8.9140294, 46.1597244 ], + [ 8.9138443, 46.159666 ], + [ 8.913655, 46.1596144 ], + [ 8.9134621, 46.1595698 ], + [ 8.9132661, 46.1595322 ], + [ 8.9130676, 46.1595018 ], + [ 8.912867, 46.1594787 ], + [ 8.9126649, 46.1594629 ], + [ 8.912462, 46.1594544 ], + [ 8.9122587, 46.1594534 ], + [ 8.9120556, 46.1594597 ], + [ 8.9118532, 46.1594735 ], + [ 8.9116522, 46.1594945 ], + [ 8.911453, 46.1595229 ], + [ 8.9112562, 46.1595584 ], + [ 8.9110624, 46.1596011 ], + [ 8.910872, 46.1596508 ], + [ 8.9106857, 46.1597073 ], + [ 8.9105038, 46.1597705 ], + [ 8.910327, 46.1598402 ], + [ 8.9101556, 46.1599163 ], + [ 8.9099903, 46.1599985 ], + [ 8.9098313, 46.1600866 ], + [ 8.9096792, 46.1601803 ], + [ 8.9095344, 46.1602795 ], + [ 8.9093972, 46.1603838 ], + [ 8.9092681, 46.1604929 ], + [ 8.9091473, 46.1606066 ], + [ 8.9090353, 46.1607245 ], + [ 8.9089324, 46.1608463 ], + [ 8.9088387, 46.1609717 ], + [ 8.9087546, 46.1611004 ], + [ 8.9086804, 46.1612319 ], + [ 8.9086161, 46.1613659 ], + [ 8.908562, 46.1615021 ], + [ 8.9085183, 46.1616401 ], + [ 8.9084849, 46.1617795 ], + [ 8.9084622, 46.1619199 ], + [ 8.90845, 46.1620609 ], + [ 8.9084485, 46.1622022 ], + [ 8.9084577, 46.1623434 ], + [ 8.9084774, 46.162484 ], + [ 8.9085077, 46.1626237 ], + [ 8.9085485, 46.1627621 ], + [ 8.9085997, 46.1628988 ], + [ 8.9086611, 46.1630335 ], + [ 8.9087325, 46.1631658 ], + [ 8.9088138, 46.1632953 ], + [ 8.9089048, 46.1634217 ], + [ 8.9090052, 46.1635445 ], + [ 8.9091146, 46.1636636 ], + [ 8.9092329, 46.1637785 ], + [ 8.9093597, 46.163889 ], + [ 8.9094946, 46.1639947 ], + [ 8.9096374, 46.1640953 ], + [ 8.909787399999999, 46.1641906 ], + [ 8.9099445, 46.1642804 ], + [ 8.9101081, 46.1643642 ], + [ 8.9102778, 46.1644421 ], + [ 8.9104532, 46.1645136 ], + [ 8.9106337, 46.1645787 ], + [ 8.9108188, 46.1646371 ], + [ 8.9110081, 46.1646887 ], + [ 8.911201, 46.1647334 ], + [ 8.911397000000001, 46.164771 ], + [ 8.9115956, 46.1648014 ], + [ 8.9117962, 46.1648245 ], + [ 8.9119983, 46.1648403 ], + [ 8.9122012, 46.1648487 ], + [ 8.9124046, 46.1648498 ], + [ 8.9126077, 46.1648434 ], + [ 8.9128101, 46.1648297 ], + [ 8.9130112, 46.1648086 ], + [ 8.9132104, 46.1647803 ], + [ 8.9134072, 46.1647447 ], + [ 8.913601, 46.1647021 ], + [ 8.9137914, 46.1646524 ], + [ 8.9139777, 46.1645959 ], + [ 8.9141596, 46.1645327 ], + [ 8.9143364, 46.1644629 ], + [ 8.914507799999999, 46.1643869 ], + [ 8.9146732, 46.1643046 ], + [ 8.9148321, 46.1642165 ], + [ 8.9149842, 46.1641228 ], + [ 8.9151291, 46.1640236 ], + [ 8.9152662, 46.1639193 ], + [ 8.9153954, 46.1638102 ], + [ 8.9155161, 46.1636965 ], + [ 8.9156281, 46.1635786 ], + [ 8.915731, 46.1634567 ], + [ 8.9158247, 46.1633313 ], + [ 8.9159087, 46.1632027 ], + [ 8.915983, 46.1630711 ], + [ 8.9160473, 46.1629371 ], + [ 8.9161013, 46.1628009 ], + [ 8.9161451, 46.1626629 ], + [ 8.9161783, 46.1625235 ], + [ 8.9162011, 46.1623831 ], + [ 8.9162132, 46.1622421 ], + [ 8.9162147, 46.1621008 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0067", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Magadino", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Magadino", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Magadino", + "lang" : "it-CH" + }, + { + "text" : "Substation Magadino", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.5216951, 47.4377364 ], + [ 9.5331402, 47.4252932 ], + [ 9.5133585, 47.4279894 ], + [ 9.4856984, 47.4189456 ], + [ 9.4810495, 47.4152491 ], + [ 9.487541, 47.4117152 ], + [ 9.5347329, 47.4186064 ], + [ 9.5382222, 47.4129647 ], + [ 9.5055262, 47.4038371 ], + [ 9.5326546, 47.3927316 ], + [ 9.5243934, 47.3847835 ], + [ 9.4634358, 47.3912667 ], + [ 9.4492721, 47.3810775 ], + [ 9.4425237, 47.3847937 ], + [ 9.4579294, 47.3928027 ], + [ 9.4585409, 47.3949513 ], + [ 9.4601039, 47.401222 ], + [ 9.4710825, 47.4111062 ], + [ 9.4652683, 47.4115682 ], + [ 9.4456995, 47.4057918 ], + [ 9.4108119, 47.3941567 ], + [ 9.4083764, 47.3999563 ], + [ 9.4496387, 47.4118413 ], + [ 9.4525803, 47.4195276 ], + [ 9.4122096, 47.4247226 ], + [ 9.4334909, 47.4407317 ], + [ 9.4756512, 47.419663 ], + [ 9.5216951, 47.4377364 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSXT001", + "country" : "CHE", + "name" : [ + { + "text" : "LSXT Trogen", + "lang" : "de-CH" + }, + { + "text" : "LSXT Trogen", + "lang" : "fr-CH" + }, + { + "text" : "LSXT Trogen", + "lang" : "it-CH" + }, + { + "text" : "LSXT Trogen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Stiftung Helimission", + "lang" : "de-CH" + }, + { + "text" : "Stiftung Helimission", + "lang" : "fr-CH" + }, + { + "text" : "Stiftung Helimission", + "lang" : "it-CH" + }, + { + "text" : "Stiftung Helimission", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Basis St. Gallen", + "lang" : "de-CH" + }, + { + "text" : "Basis St. Gallen", + "lang" : "fr-CH" + }, + { + "text" : "Basis St. Gallen", + "lang" : "it-CH" + }, + { + "text" : "Basis St. Gallen", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.helimission.org/en/", + "email" : "info@hm-int.org", + "phone" : "0041713437171", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P01DT12H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.2902025, 46.4231428 ], + [ 6.2899472, 46.423146 ], + [ 6.2896927, 46.4231608 ], + [ 6.2894401, 46.423187 ], + [ 6.2891905999999995, 46.4232246 ], + [ 6.2889452, 46.4232733 ], + [ 6.2887049, 46.4233331 ], + [ 6.2884706999999995, 46.4234036 ], + [ 6.2882438, 46.4234846 ], + [ 6.288025, 46.4235756 ], + [ 6.2878152, 46.4236764 ], + [ 6.2876155, 46.4237864 ], + [ 6.2874265, 46.4239052 ], + [ 6.2872492, 46.4240323 ], + [ 6.2870844, 46.4241671 ], + [ 6.2869326, 46.4243092 ], + [ 6.2867945, 46.4244577 ], + [ 6.2866709, 46.4246122 ], + [ 6.2865746, 46.4247521 ], + [ 6.2864696, 46.4249167 ], + [ 6.286457, 46.4249366 ], + [ 6.2863636, 46.425101 ], + [ 6.2862859, 46.4252692 ], + [ 6.2862242, 46.4254406 ], + [ 6.2861789, 46.4256144 ], + [ 6.2861501, 46.4257898 ], + [ 6.286138, 46.4259662 ], + [ 6.2861426, 46.4261428 ], + [ 6.2861639, 46.4263188 ], + [ 6.2862018, 46.4264934 ], + [ 6.2862561, 46.426666 ], + [ 6.2863267, 46.4268357 ], + [ 6.2864131, 46.4270019 ], + [ 6.2865151, 46.4271638 ], + [ 6.2866321, 46.4273207 ], + [ 6.2867638, 46.4274721 ], + [ 6.2869095, 46.4276171 ], + [ 6.2870686, 46.4277553 ], + [ 6.2872404, 46.4278859 ], + [ 6.2874242, 46.4280085 ], + [ 6.2876193, 46.4281225 ], + [ 6.2878246, 46.4282275 ], + [ 6.2880395, 46.4283229 ], + [ 6.288263, 46.4284085 ], + [ 6.2884653, 46.428475 ], + [ 6.2887033, 46.4285476 ], + [ 6.2887321, 46.4285563 ], + [ 6.2889698, 46.4286209 ], + [ 6.2892131, 46.4286747 ], + [ 6.2894609, 46.4287173 ], + [ 6.2897122, 46.4287486 ], + [ 6.289966, 46.4287685 ], + [ 6.2902211, 46.4287769 ], + [ 6.2904765, 46.4287737 ], + [ 6.290731, 46.4287589 ], + [ 6.2909835, 46.4287327 ], + [ 6.2912331, 46.4286952 ], + [ 6.2914786, 46.4286464 ], + [ 6.2917189, 46.4285866 ], + [ 6.291953, 46.4285161 ], + [ 6.29218, 46.4284351 ], + [ 6.2923988, 46.4283441 ], + [ 6.2926086, 46.4282433 ], + [ 6.2928084, 46.4281333 ], + [ 6.2929973, 46.4280145 ], + [ 6.2931746, 46.4278874 ], + [ 6.2933395, 46.4277525 ], + [ 6.2934912, 46.4276105 ], + [ 6.2936293, 46.4274619 ], + [ 6.2937529, 46.4273074 ], + [ 6.2938492, 46.4271675 ], + [ 6.2939542, 46.4270029 ], + [ 6.2939667, 46.426983 ], + [ 6.2940602, 46.4268186 ], + [ 6.2941379, 46.4266504 ], + [ 6.2941995, 46.426479 ], + [ 6.2942447999999995, 46.4263052 ], + [ 6.2942735, 46.4261297 ], + [ 6.2942856, 46.4259533 ], + [ 6.294281, 46.4257768 ], + [ 6.2942596, 46.4256008 ], + [ 6.2942217, 46.4254262 ], + [ 6.2941674, 46.4252536 ], + [ 6.2940968, 46.4250839 ], + [ 6.2940104, 46.4249177 ], + [ 6.2939084, 46.4247558 ], + [ 6.2937913, 46.4245989 ], + [ 6.2936596, 46.4244475 ], + [ 6.2935139, 46.4243025 ], + [ 6.2933548, 46.4241644 ], + [ 6.293183, 46.4240337 ], + [ 6.2929992, 46.4239111 ], + [ 6.2928042, 46.4237971 ], + [ 6.2925988, 46.4236922 ], + [ 6.2923839, 46.4235967 ], + [ 6.2921605, 46.4235112 ], + [ 6.2919582, 46.4234447 ], + [ 6.2917202, 46.4233721 ], + [ 6.2916914, 46.4233634 ], + [ 6.2914537, 46.4232988 ], + [ 6.2912105, 46.423245 ], + [ 6.2909626, 46.4232024 ], + [ 6.2907113, 46.4231711 ], + [ 6.2904576, 46.4231512 ], + [ 6.2902025, 46.4231428 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00028", + "country" : "CHE", + "name" : [ + { + "text" : "Clinique La Lignère", + "lang" : "de-CH" + }, + { + "text" : "Clinique La Lignère", + "lang" : "fr-CH" + }, + { + "text" : "Clinique La Lignère", + "lang" : "it-CH" + }, + { + "text" : "Clinique La Lignère", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kantonspolizei Waadt", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale vaudoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Vaud", + "lang" : "it-CH" + }, + { + "text" : "Vaud Cantonal Police", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.pcv@vd.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.317817699999999, 47.1039545 ], + [ 8.3177249, 47.1037546 ], + [ 8.3136449, 47.0949551 ], + [ 8.3116407, 47.0953185 ], + [ 8.3106333, 47.0937952 ], + [ 8.3020073, 47.0874233 ], + [ 8.3024927, 47.0868969 ], + [ 8.2972822, 47.0834179 ], + [ 8.2976607, 47.0829581 ], + [ 8.2967645, 47.0822568 ], + [ 8.2961857, 47.0825454 ], + [ 8.2959855, 47.0823805 ], + [ 8.2944445, 47.0811254 ], + [ 8.2945465, 47.0807522 ], + [ 8.2942278, 47.0803408 ], + [ 8.2915491, 47.0785868 ], + [ 8.2901395, 47.079791 ], + [ 8.2888392, 47.0806678 ], + [ 8.2891999, 47.0809935 ], + [ 8.2895931, 47.0807908 ], + [ 8.2920055, 47.0820251 ], + [ 8.293712, 47.0837486 ], + [ 8.2940223, 47.0839657 ], + [ 8.2935355, 47.0843229 ], + [ 8.2933164, 47.0847077 ], + [ 8.2948142, 47.0866279 ], + [ 8.2957248, 47.088396 ], + [ 8.2964709, 47.0883526 ], + [ 8.2962518, 47.0891503 ], + [ 8.2954884, 47.0896697 ], + [ 8.2959912, 47.0899825 ], + [ 8.2951099, 47.0904677 ], + [ 8.2953193, 47.0912064 ], + [ 8.2940274, 47.0915453 ], + [ 8.2943517, 47.0934642 ], + [ 8.2942581, 47.0934528 ], + [ 8.2937437, 47.0933903 ], + [ 8.2934385, 47.0933532 ], + [ 8.2923265, 47.0937626 ], + [ 8.2924548, 47.0938215 ], + [ 8.2929034, 47.0939919 ], + [ 8.2935873, 47.0942646 ], + [ 8.2939354, 47.0943877 ], + [ 8.2944457, 47.0945917 ], + [ 8.294815, 47.0947331 ], + [ 8.2947916, 47.0951857 ], + [ 8.2947914, 47.0952755 ], + [ 8.2947717, 47.0957444 ], + [ 8.2947459, 47.0959997 ], + [ 8.2947217, 47.0963982 ], + [ 8.294455899999999, 47.0963598 ], + [ 8.2942865, 47.0963926 ], + [ 8.2941979, 47.0964499 ], + [ 8.2940031, 47.0967095 ], + [ 8.2938888, 47.096893 ], + [ 8.2938783, 47.097063 ], + [ 8.2938987, 47.0971861 ], + [ 8.2939265, 47.097275 ], + [ 8.293964, 47.0973943 ], + [ 8.2940366, 47.0974046 ], + [ 8.2941928, 47.0974129 ], + [ 8.2943939, 47.0974235 ], + [ 8.2945678, 47.0972612 ], + [ 8.2947401, 47.0971602 ], + [ 8.2954975, 47.096534 ], + [ 8.2958061, 47.0962788 ], + [ 8.2959751, 47.0953951 ], + [ 8.297236, 47.0946051 ], + [ 8.2976535, 47.0943436 ], + [ 8.2983316, 47.094737 ], + [ 8.2997554, 47.0948964 ], + [ 8.3004091, 47.0954959 ], + [ 8.3010036, 47.0956021 ], + [ 8.303688, 47.0937217 ], + [ 8.3079004, 47.0968958 ], + [ 8.3083525, 47.0978054 ], + [ 8.3078729, 47.098777 ], + [ 8.310044, 47.0993578 ], + [ 8.3171639, 47.1037688 ], + [ 8.3171643, 47.1039523 ], + [ 8.3165261, 47.1037602 ], + [ 8.3175148, 47.1050858 ], + [ 8.3183776, 47.1051565 ], + [ 8.317817699999999, 47.1039545 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSME002", + "country" : "CHE", + "name" : [ + { + "text" : "LSME Emmen (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSME Emmen (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSME Emmen (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSME Emmen (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Special Flight Office (SFO)", + "lang" : "de-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "fr-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "it-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "en-GB" + } + ], + "siteURL" : "https://skyguide.ch/services/special-flights", + "email" : "specialflight@skyguide.ch", + "phone" : "0041439316236", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.3400105, 47.3436533 ], + [ 8.3401015, 47.3434773 ], + [ 8.3401898, 47.3433407 ], + [ 8.3402664, 47.3432175 ], + [ 8.340336, 47.3430915 ], + [ 8.3403909, 47.3429862 ], + [ 8.3405028, 47.3428076 ], + [ 8.3406181, 47.3426386 ], + [ 8.3407668, 47.342435 ], + [ 8.3408662, 47.3423119 ], + [ 8.3409519, 47.3422246 ], + [ 8.3410386, 47.3421478 ], + [ 8.3411228, 47.3420978 ], + [ 8.3412029, 47.3420631 ], + [ 8.3413581, 47.3420139 ], + [ 8.3417111, 47.3418817 ], + [ 8.3418472, 47.34183 ], + [ 8.3419624, 47.3418012 ], + [ 8.342075, 47.3418 ], + [ 8.3422074, 47.3418153 ], + [ 8.342338699999999, 47.3418304 ], + [ 8.3424122, 47.3418389 ], + [ 8.342477, 47.3418464 ], + [ 8.3425555, 47.3418453 ], + [ 8.3426246, 47.3418488 ], + [ 8.3426612, 47.341866 ], + [ 8.3427058, 47.3419033 ], + [ 8.3427423, 47.341944 ], + [ 8.3427869, 47.34198 ], + [ 8.3428615, 47.3420238 ], + [ 8.3429223, 47.3420487 ], + [ 8.3430082, 47.3420652 ], + [ 8.3431389, 47.3420737 ], + [ 8.3433458, 47.3420925 ], + [ 8.3433899, 47.34211 ], + [ 8.3434626, 47.3421515 ], + [ 8.3435507, 47.3421797 ], + [ 8.3436449, 47.3421992 ], + [ 8.3438388, 47.3422281 ], + [ 8.3439934, 47.3422562 ], + [ 8.3441016, 47.342280099999996 ], + [ 8.3442189, 47.3423087 ], + [ 8.3443286, 47.3423407 ], + [ 8.3443965, 47.3423709 ], + [ 8.344462, 47.3424071 ], + [ 8.3445583, 47.3424544 ], + [ 8.3446385, 47.3425057 ], + [ 8.3446953, 47.3425471 ], + [ 8.3447335, 47.342586 ], + [ 8.34481, 47.342636 ], + [ 8.3448546, 47.3426742 ], + [ 8.3449226, 47.3427515 ], + [ 8.3449782, 47.3428147 ], + [ 8.3450246, 47.3428841 ], + [ 8.3450436, 47.3429648 ], + [ 8.3450434, 47.343024 ], + [ 8.3450159, 47.3430945 ], + [ 8.3450147, 47.3431738 ], + [ 8.3450186, 47.3433544 ], + [ 8.3450144, 47.3434286 ], + [ 8.3453754, 47.3434287 ], + [ 8.3453907, 47.3434336 ], + [ 8.3453964, 47.3434439 ], + [ 8.3453991, 47.3434645 ], + [ 8.3457196, 47.3434613 ], + [ 8.3457167, 47.3435327 ], + [ 8.346084, 47.3435293 ], + [ 8.3464525, 47.3435258 ], + [ 8.3464531, 47.3434541 ], + [ 8.3464575, 47.3434301 ], + [ 8.3464744, 47.3434201 ], + [ 8.346633, 47.3434185 ], + [ 8.3467313, 47.3434133 ], + [ 8.3467136, 47.3431999 ], + [ 8.3467276, 47.3429873 ], + [ 8.3467152, 47.3428376 ], + [ 8.3466905, 47.3427976 ], + [ 8.3466476, 47.3427812 ], + [ 8.346572, 47.3427753 ], + [ 8.3465142, 47.3427346 ], + [ 8.3464777, 47.3426701 ], + [ 8.3464011, 47.3424752 ], + [ 8.3462354, 47.342241 ], + [ 8.3459948, 47.3419717 ], + [ 8.345888, 47.3418677 ], + [ 8.3457999, 47.3418116 ], + [ 8.3451676, 47.3414201 ], + [ 8.3449783, 47.3412902 ], + [ 8.344906, 47.3412423 ], + [ 8.3448298, 47.3412097 ], + [ 8.3447528, 47.3412069 ], + [ 8.3446716, 47.3412329 ], + [ 8.3445626, 47.3412771 ], + [ 8.3444725, 47.341284 ], + [ 8.3444058, 47.3412334 ], + [ 8.3444103, 47.3411605 ], + [ 8.3444609, 47.3411181 ], + [ 8.3445269, 47.3410887 ], + [ 8.3445235, 47.341029 ], + [ 8.3444523, 47.3409964 ], + [ 8.3443295, 47.3409714 ], + [ 8.3442316, 47.3409592 ], + [ 8.3440876, 47.3409238 ], + [ 8.3439177, 47.340863 ], + [ 8.3437467, 47.34082 ], + [ 8.3435465, 47.3407953 ], + [ 8.3434175, 47.3407911 ], + [ 8.3432785, 47.3407623 ], + [ 8.3431004, 47.3407379 ], + [ 8.3430007, 47.3407189 ], + [ 8.3428347, 47.3406831 ], + [ 8.3426584, 47.340619 ], + [ 8.3425321, 47.3406013 ], + [ 8.3424173, 47.3405958 ], + [ 8.3423479, 47.3405853 ], + [ 8.3422505, 47.3405327 ], + [ 8.3421508, 47.3405102 ], + [ 8.3419587, 47.3404955 ], + [ 8.341538, 47.3405044 ], + [ 8.3412877, 47.3405394 ], + [ 8.3410826, 47.3406132 ], + [ 8.3409046, 47.3406486 ], + [ 8.3407137, 47.3406741 ], + [ 8.3405803, 47.3406788 ], + [ 8.3404949, 47.3407122 ], + [ 8.3404146, 47.3407566 ], + [ 8.3403325, 47.3408481 ], + [ 8.3402452, 47.3409765 ], + [ 8.3402562, 47.3410301 ], + [ 8.3402964, 47.3411113 ], + [ 8.3403188, 47.3412296 ], + [ 8.3403472, 47.3413389 ], + [ 8.3403458, 47.3413971 ], + [ 8.340108, 47.3416926 ], + [ 8.339797, 47.3420575 ], + [ 8.3396866, 47.3422036 ], + [ 8.3396261, 47.3422696 ], + [ 8.339498, 47.3424091 ], + [ 8.3394075, 47.3425116 ], + [ 8.3393673, 47.342557 ], + [ 8.3392652, 47.3426621 ], + [ 8.3391813, 47.3427961 ], + [ 8.3390114, 47.342998 ], + [ 8.3388851, 47.3431336 ], + [ 8.3388001, 47.3431814 ], + [ 8.3387246, 47.3432303 ], + [ 8.3386842, 47.3432978 ], + [ 8.3386565, 47.3433708 ], + [ 8.3386148, 47.3433936 ], + [ 8.3385489, 47.3433977 ], + [ 8.3384359, 47.3434 ], + [ 8.3382516, 47.3434869 ], + [ 8.3381436, 47.3435003 ], + [ 8.3380758, 47.3434932 ], + [ 8.3380322, 47.3434545 ], + [ 8.3380047, 47.3433743 ], + [ 8.3379688, 47.3432774 ], + [ 8.3379194, 47.3432007 ], + [ 8.3378191, 47.3431045 ], + [ 8.3377222, 47.343016 ], + [ 8.3376678, 47.3429305 ], + [ 8.3375364, 47.3426892 ], + [ 8.3373708, 47.3423498 ], + [ 8.3372643, 47.3420993 ], + [ 8.3372092, 47.34178 ], + [ 8.3371714, 47.3414628 ], + [ 8.3371892, 47.3412714 ], + [ 8.3372812, 47.3408812 ], + [ 8.3373297, 47.3407644 ], + [ 8.3374025, 47.3406432 ], + [ 8.3374574, 47.3405721 ], + [ 8.3374947, 47.3405207 ], + [ 8.3375061, 47.3404688 ], + [ 8.3375029, 47.3404204 ], + [ 8.3375172, 47.3403638 ], + [ 8.337578, 47.3402469 ], + [ 8.3376672, 47.3401009 ], + [ 8.3377513, 47.3400001 ], + [ 8.337792199999999, 47.3399376 ], + [ 8.3378258, 47.3398464 ], + [ 8.3379239, 47.3397073 ], + [ 8.3379949, 47.3396101 ], + [ 8.3380419, 47.3395382 ], + [ 8.3381865, 47.3393742 ], + [ 8.3382926, 47.3392456 ], + [ 8.3384615, 47.3391175 ], + [ 8.3385652, 47.3390661 ], + [ 8.3386664, 47.3390337 ], + [ 8.3388364, 47.338995 ], + [ 8.3389724, 47.3389712 ], + [ 8.3390541, 47.3389189 ], + [ 8.339211, 47.3388625 ], + [ 8.3394228, 47.3387682 ], + [ 8.3395227, 47.338725 ], + [ 8.339679199999999, 47.338654 ], + [ 8.3398503, 47.3385449 ], + [ 8.3399748, 47.3384552 ], + [ 8.340047, 47.3383471 ], + [ 8.3401455, 47.3382801 ], + [ 8.3402555, 47.3382308 ], + [ 8.3403857, 47.3381644 ], + [ 8.3405481, 47.3380439 ], + [ 8.3407638, 47.3379307 ], + [ 8.3409175, 47.3378536 ], + [ 8.3411883, 47.3377511 ], + [ 8.3413456, 47.3376997 ], + [ 8.3415386, 47.337629 ], + [ 8.3417753, 47.3375445 ], + [ 8.3420091, 47.3374824 ], + [ 8.3422774, 47.3374122 ], + [ 8.3425738, 47.3373429 ], + [ 8.3427501, 47.3373035 ], + [ 8.3430372, 47.3372353 ], + [ 8.3432633, 47.3371777 ], + [ 8.3434471, 47.3371149 ], + [ 8.343734, 47.3370412 ], + [ 8.3439975, 47.3369699 ], + [ 8.3442052, 47.3369325 ], + [ 8.344372, 47.3368832 ], + [ 8.3444829, 47.3368656 ], + [ 8.3446169, 47.3368254 ], + [ 8.3447085, 47.3367779 ], + [ 8.3447943, 47.3367571 ], + [ 8.3449307, 47.3366757 ], + [ 8.3451222, 47.3366073 ], + [ 8.3453319, 47.3365075 ], + [ 8.3454855, 47.336426 ], + [ 8.3457233, 47.3363193 ], + [ 8.3461959, 47.336029 ], + [ 8.3462982, 47.3359691 ], + [ 8.3463938, 47.3358836 ], + [ 8.3465002, 47.3357925 ], + [ 8.3466953, 47.335665 ], + [ 8.3467494, 47.3356256 ], + [ 8.3468556, 47.3356046 ], + [ 8.3470441, 47.3355473 ], + [ 8.3472198, 47.3354712 ], + [ 8.3472927, 47.3354316 ], + [ 8.3473682, 47.3353586 ], + [ 8.3474781, 47.3352886 ], + [ 8.3476394, 47.3351981 ], + [ 8.3478154, 47.3350518 ], + [ 8.3479616, 47.3349113 ], + [ 8.3480806, 47.3348201 ], + [ 8.348181199999999, 47.3347778 ], + [ 8.3482281, 47.3347546 ], + [ 8.348253, 47.3347232 ], + [ 8.3482777, 47.3346891 ], + [ 8.3483285, 47.3346644 ], + [ 8.3483832, 47.3346369 ], + [ 8.3484347, 47.334603 ], + [ 8.3484675, 47.3345716 ], + [ 8.3485174, 47.3345505 ], + [ 8.3485492, 47.33455 ], + [ 8.3485672, 47.334585 ], + [ 8.3485584, 47.3346851 ], + [ 8.348535, 47.3347608 ], + [ 8.3485033, 47.3347937 ], + [ 8.3485077, 47.334838 ], + [ 8.3484699, 47.3348998 ], + [ 8.3484687, 47.3349238 ], + [ 8.3484814, 47.3349497 ], + [ 8.3485185, 47.3349611 ], + [ 8.3486152, 47.3349415 ], + [ 8.3487017, 47.3348846 ], + [ 8.3487431, 47.3348143 ], + [ 8.3487448, 47.334741 ], + [ 8.3487369, 47.3346488 ], + [ 8.348694, 47.334548 ], + [ 8.3486684, 47.3344927 ], + [ 8.3486759, 47.3344475 ], + [ 8.3487183, 47.3343925 ], + [ 8.3488347, 47.3343325 ], + [ 8.348926, 47.3343221 ], + [ 8.3490069, 47.3343358 ], + [ 8.3490982, 47.3343683 ], + [ 8.3491557, 47.3343985 ], + [ 8.3491714, 47.3344243 ], + [ 8.349166, 47.334473 ], + [ 8.3491543, 47.3345098 ], + [ 8.3491838, 47.3345319 ], + [ 8.3492154, 47.3345259 ], + [ 8.3492732, 47.334505300000004 ], + [ 8.3493384, 47.3344615 ], + [ 8.3493618, 47.3344182 ], + [ 8.3493385, 47.3343706 ], + [ 8.3492692, 47.3343131 ], + [ 8.3491893, 47.3342677 ], + [ 8.3491259, 47.3342309 ], + [ 8.3491248, 47.3341752 ], + [ 8.3491727, 47.3341336 ], + [ 8.3493439, 47.3340709 ], + [ 8.3495458, 47.3339778 ], + [ 8.3497307, 47.3338938 ], + [ 8.3498249, 47.3338438 ], + [ 8.3499418, 47.3337818 ], + [ 8.3501486, 47.3336976 ], + [ 8.3504206, 47.3335749 ], + [ 8.3508181, 47.33338 ], + [ 8.3510374, 47.3332946 ], + [ 8.351272699999999, 47.333228 ], + [ 8.3513789, 47.3331924 ], + [ 8.3514363, 47.3331731 ], + [ 8.3515447, 47.3331053 ], + [ 8.3517296, 47.3330247 ], + [ 8.3518993, 47.3329631 ], + [ 8.3519715, 47.3329199 ], + [ 8.3521659, 47.3328038 ], + [ 8.352584, 47.3326253 ], + [ 8.3526563, 47.33259 ], + [ 8.3527905, 47.3325244 ], + [ 8.3529301, 47.3324453 ], + [ 8.353098899999999, 47.3323358 ], + [ 8.353286, 47.3322016 ], + [ 8.3534633, 47.3320464 ], + [ 8.3537083, 47.3318227 ], + [ 8.3539159, 47.3316081 ], + [ 8.3540096, 47.331506 ], + [ 8.3541236, 47.3314003 ], + [ 8.354154, 47.3313499 ], + [ 8.3542773, 47.3312386 ], + [ 8.354424, 47.3311226 ], + [ 8.3545225, 47.3310271 ], + [ 8.3546687, 47.3308878 ], + [ 8.3548003, 47.3307997 ], + [ 8.3549414, 47.3307206 ], + [ 8.3550469, 47.3306629 ], + [ 8.3552026, 47.3306114 ], + [ 8.3553913, 47.3305652 ], + [ 8.3556382, 47.3305297 ], + [ 8.3558682, 47.3305132 ], + [ 8.3560888, 47.3304991 ], + [ 8.3563458, 47.3305025 ], + [ 8.3565356, 47.3305186 ], + [ 8.3566833, 47.3305408 ], + [ 8.3568294, 47.3305651 ], + [ 8.3571573, 47.3305901 ], + [ 8.3573581, 47.3306062 ], + [ 8.3575686, 47.3306356 ], + [ 8.3578573, 47.3306576 ], + [ 8.358066, 47.330677 ], + [ 8.3583028, 47.3306846 ], + [ 8.3586679, 47.3306963 ], + [ 8.3587918, 47.3307053 ], + [ 8.3588589, 47.3306924 ], + [ 8.3589438, 47.3307084 ], + [ 8.3592086, 47.3307106 ], + [ 8.3594532, 47.3307185 ], + [ 8.3596584, 47.3307189 ], + [ 8.3598559, 47.3307092 ], + [ 8.3601067, 47.3306996 ], + [ 8.3603483, 47.3306586 ], + [ 8.3605378, 47.3306364 ], + [ 8.3607348, 47.3306304 ], + [ 8.360909, 47.3306226 ], + [ 8.3610222, 47.3306214 ], + [ 8.3611646, 47.3306323 ], + [ 8.3614276, 47.33067 ], + [ 8.3615744, 47.3306962 ], + [ 8.361804, 47.3307396 ], + [ 8.3619921, 47.3307821 ], + [ 8.3621414, 47.3308255 ], + [ 8.3622531, 47.3308624 ], + [ 8.3623492, 47.3309061 ], + [ 8.3624869, 47.33098 ], + [ 8.3626974, 47.3310959 ], + [ 8.362745199999999, 47.3311231 ], + [ 8.3628645, 47.3311945 ], + [ 8.3629599, 47.3312396 ], + [ 8.3630089, 47.3312707 ], + [ 8.363033, 47.3313055 ], + [ 8.3630578, 47.3313211 ], + [ 8.3630799, 47.3313124 ], + [ 8.363114, 47.3312876 ], + [ 8.3632682, 47.331382 ], + [ 8.3633203, 47.3314309 ], + [ 8.3633939, 47.331451 ], + [ 8.363439, 47.3314822 ], + [ 8.363445, 47.3315298 ], + [ 8.3634392, 47.3315551 ], + [ 8.36358, 47.3316483 ], + [ 8.3636677, 47.3317022 ], + [ 8.3637593, 47.3317585 ], + [ 8.3638492, 47.3317882 ], + [ 8.3639671, 47.3318013 ], + [ 8.3641144, 47.3317917 ], + [ 8.3642033, 47.3317715 ], + [ 8.3643495, 47.331707 ], + [ 8.364452, 47.331656100000004 ], + [ 8.3645903, 47.3316242 ], + [ 8.364716, 47.3315975 ], + [ 8.3648471, 47.3314894 ], + [ 8.364938, 47.3314254 ], + [ 8.3649951, 47.3313708 ], + [ 8.3650299, 47.3313359 ], + [ 8.3650636, 47.3313223 ], + [ 8.3651078, 47.3313331 ], + [ 8.365212, 47.3313698 ], + [ 8.3652787, 47.3313732 ], + [ 8.365359, 47.3313459 ], + [ 8.3654262, 47.3313015 ], + [ 8.3655248, 47.331271 ], + [ 8.365587, 47.3312643 ], + [ 8.3656848, 47.3312623 ], + [ 8.3657973, 47.3312154 ], + [ 8.3658638, 47.3312066 ], + [ 8.3659843, 47.3312075 ], + [ 8.3660931, 47.3311902 ], + [ 8.3662172, 47.3311523 ], + [ 8.3662515, 47.331097 ], + [ 8.3663061, 47.331057799999996 ], + [ 8.3663962, 47.331027399999996 ], + [ 8.3664607, 47.3309901 ], + [ 8.366585, 47.3309655 ], + [ 8.3666515, 47.3309271 ], + [ 8.3666302, 47.3309182 ], + [ 8.3665787, 47.3309103 ], + [ 8.3665466, 47.3308904 ], + [ 8.3665312, 47.3308584 ], + [ 8.3665554, 47.3308127 ], + [ 8.3665815, 47.3307946 ], + [ 8.3666281, 47.3307947 ], + [ 8.3666584, 47.3307536 ], + [ 8.3667068, 47.3307412 ], + [ 8.3667396, 47.3307607 ], + [ 8.3667495, 47.3307877 ], + [ 8.3667412, 47.330814 ], + [ 8.3667231, 47.3308233 ], + [ 8.3666684, 47.3308205 ], + [ 8.366651, 47.3308299 ], + [ 8.3666622, 47.3308573 ], + [ 8.366666, 47.3308816 ], + [ 8.3666588, 47.3308945 ], + [ 8.3666865, 47.3309069 ], + [ 8.3667196, 47.3308878 ], + [ 8.3668415, 47.3308144 ], + [ 8.3669266, 47.3307474 ], + [ 8.3669936, 47.3306927 ], + [ 8.3670178, 47.3306253 ], + [ 8.3670304, 47.3305438 ], + [ 8.3670094, 47.3304839 ], + [ 8.3670801, 47.3303295 ], + [ 8.3671604, 47.3302279 ], + [ 8.3672356, 47.3300898 ], + [ 8.3672841, 47.3299559 ], + [ 8.3672877, 47.3298511 ], + [ 8.3672759, 47.3297565 ], + [ 8.3672613, 47.3296599 ], + [ 8.3672596, 47.3295714 ], + [ 8.3672863, 47.3294866 ], + [ 8.3673407, 47.3294403 ], + [ 8.3673957, 47.3294286 ], + [ 8.3675269, 47.3293957 ], + [ 8.3676409, 47.3293519 ], + [ 8.3677477, 47.329304 ], + [ 8.3679358, 47.3292818 ], + [ 8.3680002, 47.3292394 ], + [ 8.3680771, 47.3291857 ], + [ 8.3681883, 47.3291419 ], + [ 8.3683222, 47.329105 ], + [ 8.3684821, 47.3290871 ], + [ 8.3686289, 47.3290541 ], + [ 8.3688532, 47.328998 ], + [ 8.3690057, 47.328968 ], + [ 8.369119, 47.3289638 ], + [ 8.3692093, 47.3289395 ], + [ 8.3693284, 47.3288681 ], + [ 8.3694787, 47.3287974 ], + [ 8.3696518, 47.3287357 ], + [ 8.3697572, 47.3286838 ], + [ 8.3698213, 47.3286292 ], + [ 8.3698545, 47.3285128 ], + [ 8.3698892, 47.3284778 ], + [ 8.36993, 47.3284591 ], + [ 8.3699252, 47.3284317 ], + [ 8.3698667, 47.3284149 ], + [ 8.3698688, 47.3283773 ], + [ 8.3699177, 47.3283391 ], + [ 8.3699656, 47.3283234 ], + [ 8.3700478, 47.3283216 ], + [ 8.370124, 47.3283045 ], + [ 8.3701643, 47.3282634 ], + [ 8.3701464, 47.3282198 ], + [ 8.3703122, 47.3281418 ], + [ 8.3705144, 47.3280606 ], + [ 8.3705485, 47.3280469 ], + [ 8.3706985, 47.327962 ], + [ 8.3708004, 47.3278805 ], + [ 8.3708497, 47.3277925 ], + [ 8.3708924, 47.3276526 ], + [ 8.3709266, 47.3275159 ], + [ 8.3709246, 47.3274161 ], + [ 8.3709255, 47.3273174 ], + [ 8.3709516, 47.3272744 ], + [ 8.3710092, 47.3272504 ], + [ 8.3711349, 47.3272217 ], + [ 8.3712433, 47.327184 ], + [ 8.3713353, 47.3271077 ], + [ 8.3713907, 47.32704 ], + [ 8.3714074, 47.3269492 ], + [ 8.3714427, 47.3268705 ], + [ 8.371517, 47.3268178 ], + [ 8.3715853, 47.3267694 ], + [ 8.3716585, 47.3267112 ], + [ 8.3717123, 47.3266683 ], + [ 8.3718367, 47.3265755 ], + [ 8.3719088, 47.3265402 ], + [ 8.3719448, 47.3265225 ], + [ 8.3720146, 47.3264689 ], + [ 8.3720258, 47.3263874 ], + [ 8.3720251, 47.3262785 ], + [ 8.3720265, 47.3262082 ], + [ 8.3720383, 47.3261582 ], + [ 8.3720361, 47.3261185 ], + [ 8.3721074, 47.3260659 ], + [ 8.3721858, 47.3260142 ], + [ 8.372270199999999, 47.3259839 ], + [ 8.3723558, 47.3259383 ], + [ 8.3725113, 47.3259133 ], + [ 8.3727297, 47.3259204 ], + [ 8.3728546, 47.3259313 ], + [ 8.3729562, 47.3259069 ], + [ 8.3730772, 47.3258589 ], + [ 8.3731585, 47.3258113 ], + [ 8.3732018, 47.3257698 ], + [ 8.3731639, 47.3257468 ], + [ 8.3731648, 47.3257155 ], + [ 8.3732138, 47.3256783 ], + [ 8.3732612, 47.3256732 ], + [ 8.3733045, 47.325699 ], + [ 8.3732519, 47.325739 ], + [ 8.3732731, 47.3257483 ], + [ 8.3733309, 47.3257576 ], + [ 8.3733502, 47.3257499 ], + [ 8.3733385, 47.3257066 ], + [ 8.373369, 47.3256593 ], + [ 8.3733909, 47.3256339 ], + [ 8.3733827, 47.325617 ], + [ 8.3733723, 47.3255955 ], + [ 8.3733806, 47.3255744 ], + [ 8.3733889, 47.3255526 ], + [ 8.373414499999999, 47.3255229 ], + [ 8.3734577, 47.3255029 ], + [ 8.3734936, 47.3254599 ], + [ 8.3735059, 47.325443 ], + [ 8.3735141, 47.3254142 ], + [ 8.3735485, 47.3253929 ], + [ 8.3735897, 47.3253678 ], + [ 8.373618, 47.3253267 ], + [ 8.3736299, 47.3252962 ], + [ 8.3736517, 47.325275 ], + [ 8.3736775, 47.3252586 ], + [ 8.3737053, 47.3252458 ], + [ 8.3737253, 47.3252295 ], + [ 8.3737365, 47.3252014 ], + [ 8.3737458, 47.3251852 ], + [ 8.3737696, 47.3251661 ], + [ 8.3737786, 47.3251268 ], + [ 8.3738201, 47.3250704 ], + [ 8.3738277, 47.3250066 ], + [ 8.3738398, 47.3249827 ], + [ 8.3738519, 47.3249573 ], + [ 8.373864, 47.3249327 ], + [ 8.3738772, 47.324913 ], + [ 8.373901, 47.324889 ], + [ 8.3739296, 47.324867 ], + [ 8.3739436, 47.3248389 ], + [ 8.3739606, 47.3248156 ], + [ 8.3739814, 47.324793 ], + [ 8.374007, 47.3247655 ], + [ 8.3740364, 47.324733 ], + [ 8.3740504, 47.3247048 ], + [ 8.3740675, 47.3246872 ], + [ 8.3741028, 47.324663 ], + [ 8.3741371, 47.3246319 ], + [ 8.3741984, 47.3246033 ], + [ 8.3742309, 47.3245834 ], + [ 8.3742712, 47.3245634 ], + [ 8.3743057, 47.3245435 ], + [ 8.3743311, 47.3245076 ], + [ 8.3743443, 47.3244906 ], + [ 8.3744183, 47.3244668 ], + [ 8.3744528, 47.3244525 ], + [ 8.37446, 47.3244231 ], + [ 8.374467899999999, 47.3243768 ], + [ 8.374477, 47.3243466 ], + [ 8.3744782, 47.3243053 ], + [ 8.3744787, 47.3242779 ], + [ 8.3744868, 47.3242422 ], + [ 8.3744927, 47.3241966 ], + [ 8.3744945, 47.3241357 ], + [ 8.3745075, 47.3241047 ], + [ 8.3745222, 47.3240647 ], + [ 8.3745332, 47.3240296 ], + [ 8.3745414, 47.3240001 ], + [ 8.3745405, 47.3239511 ], + [ 8.3745372, 47.3239266 ], + [ 8.3745358, 47.3239028 ], + [ 8.3745439, 47.3238698 ], + [ 8.3745598, 47.3238424 ], + [ 8.3745911, 47.3238099 ], + [ 8.3746205, 47.3237774 ], + [ 8.374649, 47.3237498 ], + [ 8.3746776, 47.3237279 ], + [ 8.37471, 47.3237023 ], + [ 8.3747454, 47.3236782 ], + [ 8.3747797, 47.3236534 ], + [ 8.3748024, 47.3236231 ], + [ 8.3748375, 47.3235877 ], + [ 8.3748574, 47.323563 ], + [ 8.3748724, 47.3235419 ], + [ 8.374871, 47.323516 ], + [ 8.3748804, 47.3234977 ], + [ 8.374879, 47.3234781 ], + [ 8.3748564, 47.3234559 ], + [ 8.3748665, 47.3234278 ], + [ 8.3748827, 47.3234137 ], + [ 8.3748469, 47.3234098 ], + [ 8.3748306, 47.3234183 ], + [ 8.374807, 47.3233948 ], + [ 8.3747804, 47.3233719 ], + [ 8.3747733, 47.3233524 ], + [ 8.3747471, 47.3233442 ], + [ 8.3747302, 47.3233192 ], + [ 8.3747125, 47.3233032 ], + [ 8.3747093, 47.3232857 ], + [ 8.3746908, 47.3232789 ], + [ 8.3747078, 47.3232578 ], + [ 8.3747229, 47.3232359 ], + [ 8.3747342, 47.3232183 ], + [ 8.3747619, 47.3231991 ], + [ 8.3747846, 47.3231695 ], + [ 8.3747937, 47.3231414 ], + [ 8.3747913, 47.3231176 ], + [ 8.3748075, 47.3231028 ], + [ 8.3748339, 47.3230675 ], + [ 8.3748587, 47.3230477 ], + [ 8.374880600000001, 47.3230251 ], + [ 8.3748848, 47.3229907 ], + [ 8.374896, 47.3229689 ], + [ 8.3749041, 47.3229381 ], + [ 8.3749165, 47.3229246 ], + [ 8.3749082, 47.3228974 ], + [ 8.3749052, 47.322889 ], + [ 8.3749048, 47.3228694 ], + [ 8.3749173, 47.322863 ], + [ 8.374916, 47.3228483 ], + [ 8.3749184, 47.3228175 ], + [ 8.3749034, 47.3227917 ], + [ 8.3748971, 47.3227631 ], + [ 8.3748824, 47.3227492 ], + [ 8.3748607, 47.3227298 ], + [ 8.374813, 47.3227078 ], + [ 8.374778, 47.3226998 ], + [ 8.3747325, 47.3226967 ], + [ 8.374686, 47.3226873 ], + [ 8.3746581, 47.3226974 ], + [ 8.3746587, 47.3227282 ], + [ 8.3746563, 47.3227576 ], + [ 8.3746547, 47.3227744 ], + [ 8.3746512, 47.3227983 ], + [ 8.3746172, 47.3227867 ], + [ 8.3745921, 47.3227883 ], + [ 8.3745752, 47.3228144 ], + [ 8.3745601, 47.3228383 ], + [ 8.3745673, 47.32286 ], + [ 8.3745725, 47.3228795 ], + [ 8.3745864, 47.3229004 ], + [ 8.3745704, 47.3229278 ], + [ 8.374566, 47.322951 ], + [ 8.3745493, 47.3229904 ], + [ 8.3745391, 47.3230143 ], + [ 8.3745395, 47.3230339 ], + [ 8.3745066, 47.3230342 ], + [ 8.3744952, 47.3230427 ], + [ 8.3744994, 47.3230629 ], + [ 8.3745026, 47.3230825 ], + [ 8.3744792, 47.3231198 ], + [ 8.37443, 47.323128 ], + [ 8.3743963, 47.3231339 ], + [ 8.3743762, 47.3231446 ], + [ 8.3743841, 47.3231578 ], + [ 8.3743815, 47.323174 ], + [ 8.3743508, 47.3231841 ], + [ 8.3743229, 47.3231955 ], + [ 8.3743397, 47.323215 ], + [ 8.3743353, 47.3232367 ], + [ 8.3743425, 47.323264 ], + [ 8.3743506, 47.3232835 ], + [ 8.3743722, 47.3232987 ], + [ 8.3744033, 47.323311 ], + [ 8.3744317, 47.3233282 ], + [ 8.374466, 47.3233545 ], + [ 8.3744945, 47.3233802 ], + [ 8.374513199999999, 47.3234003 ], + [ 8.3745223, 47.3234198 ], + [ 8.374512, 47.3234416 ], + [ 8.3745277, 47.3234541 ], + [ 8.3745416, 47.3234756 ], + [ 8.3745536, 47.3234944 ], + [ 8.3745592, 47.323542 ], + [ 8.3745403, 47.3235646 ], + [ 8.3745013, 47.3235965 ], + [ 8.3744585, 47.3236354 ], + [ 8.3744177, 47.3236778 ], + [ 8.3743748, 47.323716 ], + [ 8.3743367, 47.3237471 ], + [ 8.3743065, 47.3237838 ], + [ 8.3742636, 47.3238199 ], + [ 8.3742063, 47.3238604 ], + [ 8.3741664, 47.3238993 ], + [ 8.3741303, 47.3239242 ], + [ 8.374088799999999, 47.3239371 ], + [ 8.374051, 47.3239332 ], + [ 8.3740177, 47.3239069 ], + [ 8.3740019, 47.3238903 ], + [ 8.3739543, 47.323876 ], + [ 8.3739188, 47.3238883 ], + [ 8.373886, 47.3238956 ], + [ 8.3738278, 47.3238828 ], + [ 8.3737785, 47.323884 ], + [ 8.3737507, 47.323894 ], + [ 8.3737085, 47.3239168 ], + [ 8.3736684, 47.3239438 ], + [ 8.3736255, 47.3239757 ], + [ 8.3736057, 47.3240067 ], + [ 8.3735638, 47.3240393 ], + [ 8.3735333, 47.3240606 ], + [ 8.3735017, 47.3240826 ], + [ 8.3734781, 47.3241129 ], + [ 8.373443, 47.3241489 ], + [ 8.3734147, 47.324187 ], + [ 8.3733755, 47.3242105 ], + [ 8.3733364, 47.3242431 ], + [ 8.373308, 47.3242755 ], + [ 8.3732612, 47.3243089 ], + [ 8.3732259, 47.324333 ], + [ 8.3731878, 47.3243649 ], + [ 8.3731468, 47.3243961 ], + [ 8.3731059, 47.3244329 ], + [ 8.3730614, 47.3244736 ], + [ 8.372843, 47.3246121 ], + [ 8.372663, 47.3247585 ], + [ 8.3725763, 47.3248224 ], + [ 8.3724942, 47.3248975 ], + [ 8.3724146, 47.3249614 ], + [ 8.3723615, 47.3249996 ], + [ 8.3723021, 47.3250063 ], + [ 8.372226, 47.3250274 ], + [ 8.3721691, 47.3250168 ], + [ 8.3721528, 47.3249833 ], + [ 8.3721493, 47.3249467 ], + [ 8.3721981, 47.3249045 ], + [ 8.3723115, 47.3248321 ], + [ 8.3724766, 47.3247247 ], + [ 8.3727072, 47.3245554 ], + [ 8.3728927, 47.3244009 ], + [ 8.3730571, 47.3242548 ], + [ 8.3731769, 47.3241436 ], + [ 8.3733059, 47.3239988 ], + [ 8.373446, 47.3238448 ], + [ 8.3734779, 47.3238084 ], + [ 8.3735819, 47.3236897 ], + [ 8.3736098, 47.3236533 ], + [ 8.373619099999999, 47.3236412 ], + [ 8.3736786, 47.3235636 ], + [ 8.3737469, 47.3234316 ], + [ 8.3738102, 47.323306 ], + [ 8.3738247, 47.3232771 ], + [ 8.3739474, 47.3230998 ], + [ 8.3739919, 47.3229853 ], + [ 8.3740433, 47.3228586 ], + [ 8.3741278, 47.3226857 ], + [ 8.3741925, 47.3225161 ], + [ 8.374196, 47.3225071 ], + [ 8.3742613, 47.3223403 ], + [ 8.3742762, 47.3222333 ], + [ 8.3742421, 47.3221838 ], + [ 8.3742375, 47.3221756 ], + [ 8.3742146, 47.3221337 ], + [ 8.374194899999999, 47.3220883 ], + [ 8.3742075, 47.3220535 ], + [ 8.3742568, 47.3220192 ], + [ 8.3742469, 47.3219635 ], + [ 8.3742049, 47.3219096 ], + [ 8.3742073, 47.3218607 ], + [ 8.3742476, 47.3218187 ], + [ 8.3742778, 47.3217735 ], + [ 8.3742385, 47.3216873 ], + [ 8.3742039, 47.3216098 ], + [ 8.3741874, 47.3215564 ], + [ 8.3742008, 47.3215012 ], + [ 8.3742045, 47.3214599 ], + [ 8.3742063, 47.3214398 ], + [ 8.3741733, 47.321396 ], + [ 8.3741255, 47.3213256 ], + [ 8.3741037, 47.3212865 ], + [ 8.3741163, 47.3212462 ], + [ 8.3741459, 47.3211673 ], + [ 8.3741446, 47.3210965 ], + [ 8.3741555, 47.3210248 ], + [ 8.3741706, 47.3209444 ], + [ 8.3741866, 47.3209088 ], + [ 8.3741864, 47.3208388 ], + [ 8.3741711, 47.3207862 ], + [ 8.3741507, 47.3207022 ], + [ 8.3741277, 47.3206591 ], + [ 8.3741174, 47.3206524 ], + [ 8.3740649, 47.320618 ], + [ 8.3740516, 47.3205599 ], + [ 8.3740361, 47.3204987 ], + [ 8.3740227, 47.3204335 ], + [ 8.3740092, 47.3203604 ], + [ 8.3739969, 47.3202323 ], + [ 8.3739951, 47.3201347 ], + [ 8.3739796, 47.3200727 ], + [ 8.3739614, 47.3199879 ], + [ 8.3739479, 47.3199211 ], + [ 8.3739403, 47.3198637 ], + [ 8.3739268, 47.319797 ], + [ 8.3739191, 47.3197373 ], + [ 8.3739051, 47.3196962 ], + [ 8.3739004, 47.3196824 ], + [ 8.373883, 47.31964 ], + [ 8.3738658, 47.3196142 ], + [ 8.3738725, 47.3195559 ], + [ 8.3738796, 47.3195149 ], + [ 8.3738634, 47.3194789 ], + [ 8.3738471, 47.3194342 ], + [ 8.373854, 47.3193901 ], + [ 8.3738586, 47.3193389 ], + [ 8.3738421, 47.3192855 ], + [ 8.3738256, 47.3192322 ], + [ 8.3738182, 47.3191685 ], + [ 8.3738222, 47.3191191 ], + [ 8.3738275, 47.319054 ], + [ 8.3738321, 47.3190476 ], + [ 8.3738574, 47.3190123 ], + [ 8.3738247, 47.3189659 ], + [ 8.3738327, 47.3187601 ], + [ 8.3739919, 47.3184565 ], + [ 8.3741891, 47.3181289 ], + [ 8.3745034, 47.3176908 ], + [ 8.3747367, 47.3174223 ], + [ 8.3748092, 47.3173226 ], + [ 8.3748881, 47.3172141 ], + [ 8.3749516, 47.3172083 ], + [ 8.3750306, 47.3172378 ], + [ 8.3750971, 47.317168 ], + [ 8.3750546, 47.317119 ], + [ 8.3750439, 47.3171067 ], + [ 8.3750534, 47.3170509 ], + [ 8.375146, 47.3169434 ], + [ 8.3753408, 47.3167628 ], + [ 8.3754893, 47.3166342 ], + [ 8.3755477, 47.3165848 ], + [ 8.3755884, 47.3165528 ], + [ 8.3756196, 47.3165202 ], + [ 8.3756695, 47.3164731 ], + [ 8.375709, 47.3164307 ], + [ 8.375764, 47.3163753 ], + [ 8.376016, 47.3161351 ], + [ 8.3764101, 47.3157357 ], + [ 8.376553, 47.3155791 ], + [ 8.3767223, 47.3153949 ], + [ 8.3770147, 47.3151361 ], + [ 8.3770562, 47.3150906 ], + [ 8.3771261, 47.3150313 ], + [ 8.3771855, 47.3149826 ], + [ 8.3772226, 47.3149296 ], + [ 8.3772737, 47.3148878 ], + [ 8.3773191, 47.314825 ], + [ 8.3773458, 47.3147819 ], + [ 8.3774087, 47.3146918 ], + [ 8.3774565, 47.3146448 ], + [ 8.3775105, 47.3145856 ], + [ 8.3775907, 47.3145165 ], + [ 8.3776416, 47.3144641 ], + [ 8.3776745, 47.3144134 ], + [ 8.3777006, 47.3143364 ], + [ 8.3777428, 47.3142736 ], + [ 8.3777746, 47.3142229 ], + [ 8.3778261, 47.3141495 ], + [ 8.3778559, 47.3141026 ], + [ 8.3778998, 47.3140691 ], + [ 8.3779523, 47.3140431 ], + [ 8.37799, 47.313966 ], + [ 8.3780216, 47.313904 ], + [ 8.378046, 47.3138496 ], + [ 8.3780798, 47.3137952 ], + [ 8.3780927, 47.3137491 ], + [ 8.3781248, 47.3136586 ], + [ 8.378127, 47.3136096 ], + [ 8.378129, 47.3135524 ], + [ 8.3781392, 47.3134793 ], + [ 8.3781348, 47.3134191 ], + [ 8.3781466, 47.313371599999996 ], + [ 8.37817, 47.3133232 ], + [ 8.3781827, 47.3132704 ], + [ 8.3781828, 47.313265 ], + [ 8.3781839, 47.313223 ], + [ 8.3781739, 47.3131508 ], + [ 8.3781658, 47.313062 ], + [ 8.3781567, 47.3129801 ], + [ 8.378156, 47.3129447 ], + [ 8.378146, 47.3128703 ], + [ 8.3781293, 47.3127778 ], + [ 8.3781023, 47.3127012 ], + [ 8.3780957, 47.3126403 ], + [ 8.3781019, 47.3125236 ], + [ 8.3780972, 47.3124484 ], + [ 8.3780753, 47.3123657 ], + [ 8.3780793, 47.3122964 ], + [ 8.3780785, 47.3122084 ], + [ 8.3780548, 47.3121363 ], + [ 8.378044, 47.3120732 ], + [ 8.3780753, 47.3119931 ], + [ 8.37807, 47.3119883 ], + [ 8.378031, 47.3119528 ], + [ 8.3779905, 47.3118914 ], + [ 8.3779592, 47.3118119 ], + [ 8.3779435, 47.3117149 ], + [ 8.377898, 47.3116174 ], + [ 8.37787, 47.3115423 ], + [ 8.3778218, 47.3114674 ], + [ 8.3778051, 47.3113765 ], + [ 8.3777829, 47.311324 ], + [ 8.3777822, 47.3112397 ], + [ 8.3777837, 47.3111531 ], + [ 8.3777309, 47.3110624 ], + [ 8.3777182, 47.3110076 ], + [ 8.3776732, 47.3109357 ], + [ 8.3776218, 47.3108238 ], + [ 8.3776056, 47.3107879 ], + [ 8.3775759, 47.310734 ], + [ 8.3775444, 47.3106476 ], + [ 8.3774819, 47.3105947 ], + [ 8.3774704, 47.3104999 ], + [ 8.3774537, 47.3104617 ], + [ 8.3774493, 47.3104558 ], + [ 8.3773971, 47.3103869 ], + [ 8.3773528, 47.3103451 ], + [ 8.3773231, 47.3102949 ], + [ 8.3773023, 47.3102085 ], + [ 8.3772627, 47.310138 ], + [ 8.377223, 47.3100608 ], + [ 8.3771577, 47.3100335 ], + [ 8.3771071, 47.3099925 ], + [ 8.3771314, 47.3099343 ], + [ 8.377157799999999, 47.3098784 ], + [ 8.3771337, 47.3098417 ], + [ 8.3771112, 47.3097772 ], + [ 8.3771054, 47.3097012 ], + [ 8.377043, 47.309655 ], + [ 8.3770171, 47.3095799 ], + [ 8.3770056, 47.3095364 ], + [ 8.3769507, 47.3094397 ], + [ 8.3768801, 47.3093567 ], + [ 8.3768433, 47.3092697 ], + [ 8.3768294, 47.3092111 ], + [ 8.3768135, 47.309157 ], + [ 8.3767874, 47.3090187 ], + [ 8.3767561, 47.3089376 ], + [ 8.3767321, 47.3088558 ], + [ 8.3767655, 47.3087706 ], + [ 8.3767232, 47.3086767 ], + [ 8.3767029, 47.3086144 ], + [ 8.3766768, 47.3085318 ], + [ 8.3766633, 47.3084408 ], + [ 8.3766391, 47.3083454 ], + [ 8.3766365, 47.3082881 ], + [ 8.3766354, 47.3082641 ], + [ 8.3766107, 47.3081966 ], + [ 8.3765812, 47.308102 ], + [ 8.3765521, 47.3080269 ], + [ 8.3765522, 47.3079268 ], + [ 8.376567, 47.3078725 ], + [ 8.3765788, 47.307817 ], + [ 8.3765806, 47.3078084 ], + [ 8.3765742, 47.3077008 ], + [ 8.3765582, 47.307591 ], + [ 8.3765462, 47.3075572 ], + [ 8.3765312, 47.3075152 ], + [ 8.3764594, 47.3074247 ], + [ 8.3764077, 47.3072791 ], + [ 8.3763518, 47.3071885 ], + [ 8.3763304, 47.3070727 ], + [ 8.3763295, 47.3069779 ], + [ 8.3763059, 47.3068553 ], + [ 8.3762879, 47.3067554 ], + [ 8.3762862, 47.3066146 ], + [ 8.3762523, 47.3065125 ], + [ 8.3762363, 47.3064562 ], + [ 8.3761924, 47.3063828 ], + [ 8.3761831, 47.3062865 ], + [ 8.3761627, 47.3062212 ], + [ 8.3761159, 47.3061086 ], + [ 8.3761054, 47.3060821 ], + [ 8.3760868, 47.3060351 ], + [ 8.376085, 47.3059455 ], + [ 8.376068, 47.3058357 ], + [ 8.376051499999999, 47.3057568 ], + [ 8.3760473, 47.3057283 ], + [ 8.3760294, 47.3056072 ], + [ 8.3759944, 47.3054983 ], + [ 8.3759396, 47.3053046 ], + [ 8.3759159, 47.3051836 ], + [ 8.3759068, 47.3050481 ], + [ 8.3758596, 47.3049153 ], + [ 8.3758446, 47.3048002 ], + [ 8.3758304, 47.3047528 ], + [ 8.3758063, 47.3046715 ], + [ 8.3758048, 47.3046666 ], + [ 8.3757669, 47.3045765 ], + [ 8.3757357, 47.3044992 ], + [ 8.3757148, 47.3043571 ], + [ 8.3756775, 47.3042407 ], + [ 8.375653, 47.3041318 ], + [ 8.3756403, 47.3040258 ], + [ 8.3756201, 47.3039183 ], + [ 8.3756063, 47.3038107 ], + [ 8.3755591, 47.3036809 ], + [ 8.3755448, 47.3035515 ], + [ 8.3755223, 47.3034305 ], + [ 8.3754943, 47.303308 ], + [ 8.3755067, 47.3031822 ], + [ 8.3754879, 47.303092 ], + [ 8.3754588, 47.3029628 ], + [ 8.3755027, 47.302827 ], + [ 8.3755023, 47.3027577 ], + [ 8.3754921, 47.3026712 ], + [ 8.3754937, 47.3025395 ], + [ 8.3755189, 47.3024241 ], + [ 8.375537, 47.3023178 ], + [ 8.3755383, 47.3022252 ], + [ 8.3755528, 47.3021558 ], + [ 8.3755992, 47.3020388 ], + [ 8.3755961, 47.3019387 ], + [ 8.3756394, 47.3018277 ], + [ 8.3756368, 47.3018152 ], + [ 8.3756125, 47.3017 ], + [ 8.3756402, 47.3016041 ], + [ 8.3757079, 47.3014365 ], + [ 8.3757502, 47.3013262 ], + [ 8.3757896, 47.3012288 ], + [ 8.3757802, 47.3011325 ], + [ 8.3757628, 47.301007 ], + [ 8.3757521, 47.3008964 ], + [ 8.375773, 47.3007765 ], + [ 8.3757973, 47.3006627 ], + [ 8.3758111, 47.3005602 ], + [ 8.3758449, 47.3005005 ], + [ 8.3758949, 47.3004067 ], + [ 8.3759203, 47.3002981 ], + [ 8.3759175, 47.3002116 ], + [ 8.3759199, 47.3001205 ], + [ 8.375934, 47.2999811 ], + [ 8.3759664, 47.2998419 ], + [ 8.3759692, 47.299830299999996 ], + [ 8.3759888, 47.2997815 ], + [ 8.3760075, 47.2997351 ], + [ 8.3760494, 47.2996178 ], + [ 8.3760633, 47.299580399999996 ], + [ 8.3760812, 47.2995321 ], + [ 8.3761599, 47.2994266 ], + [ 8.3762059, 47.2993427 ], + [ 8.376226, 47.2993051 ], + [ 8.3762625, 47.299237 ], + [ 8.3763127, 47.2991485 ], + [ 8.3763588, 47.2990684 ], + [ 8.3764195, 47.2989806 ], + [ 8.3764979, 47.2988715 ], + [ 8.3765561, 47.2987851 ], + [ 8.3766029, 47.2987156 ], + [ 8.3766295, 47.2986939 ], + [ 8.3766728, 47.2986586 ], + [ 8.3767277, 47.2985949 ], + [ 8.3767847, 47.2985305 ], + [ 8.3768386, 47.2984691 ], + [ 8.3769017, 47.2983956 ], + [ 8.3769128, 47.2983599 ], + [ 8.3769326, 47.298296 ], + [ 8.3769788, 47.2982241 ], + [ 8.3770278, 47.2981793 ], + [ 8.3770793, 47.2981066 ], + [ 8.3771177, 47.2980602 ], + [ 8.3771705, 47.2980192 ], + [ 8.3772197, 47.2979671 ], + [ 8.3772598, 47.2978526 ], + [ 8.3772451, 47.2977664 ], + [ 8.3772796, 47.2977394 ], + [ 8.3774064, 47.2977354 ], + [ 8.3775248, 47.2977522 ], + [ 8.3776109, 47.2977243 ], + [ 8.377648, 47.2976547 ], + [ 8.377726299999999, 47.2975566 ], + [ 8.377804, 47.2974727 ], + [ 8.3778623, 47.2974293 ], + [ 8.3779513, 47.2973577 ], + [ 8.3780582, 47.2972955 ], + [ 8.3781451, 47.2972327 ], + [ 8.3782308, 47.2971667 ], + [ 8.3783379, 47.2971165 ], + [ 8.3784041, 47.2970785 ], + [ 8.3784834, 47.2970277 ], + [ 8.3785892, 47.2969655 ], + [ 8.3786861, 47.2969027 ], + [ 8.3788295, 47.2968234 ], + [ 8.3789069, 47.2967926 ], + [ 8.3790119, 47.2967551 ], + [ 8.3791124, 47.2967072 ], + [ 8.3792275, 47.296676 ], + [ 8.3792663, 47.296662 ], + [ 8.3793337, 47.2966377 ], + [ 8.3794114, 47.2966058 ], + [ 8.3794486, 47.2965906 ], + [ 8.3795372, 47.2965675 ], + [ 8.3795694, 47.2965546 ], + [ 8.3796389, 47.2965269 ], + [ 8.3797128, 47.2964865 ], + [ 8.3797931, 47.2964309 ], + [ 8.3798288, 47.2964139 ], + [ 8.3798969, 47.2963815 ], + [ 8.3799249, 47.2963715 ], + [ 8.3800163, 47.2963391 ], + [ 8.3800339, 47.2963258 ], + [ 8.380052599999999, 47.2963117 ], + [ 8.3800925, 47.2962695 ], + [ 8.3801095, 47.2962515 ], + [ 8.3801645, 47.2962105 ], + [ 8.3802952, 47.2961759 ], + [ 8.3803569, 47.296142 ], + [ 8.380424, 47.2960905 ], + [ 8.3805159, 47.2960627 ], + [ 8.380641, 47.2960156 ], + [ 8.3806873, 47.2959912 ], + [ 8.3807479, 47.2959562 ], + [ 8.3808252, 47.2959299 ], + [ 8.3809026, 47.2959061 ], + [ 8.3809701, 47.2958928 ], + [ 8.3810363, 47.2958658 ], + [ 8.3812127, 47.2958228 ], + [ 8.3812855, 47.2957839 ], + [ 8.3813581, 47.29573 ], + [ 8.381404, 47.2956771 ], + [ 8.3815444, 47.2956234 ], + [ 8.3816194, 47.2955837 ], + [ 8.3816691, 47.2955618 ], + [ 8.3817631, 47.29553 ], + [ 8.3818459, 47.2954943 ], + [ 8.3819106, 47.2954341 ], + [ 8.3820198, 47.2953726 ], + [ 8.3821126, 47.2953368 ], + [ 8.3821975, 47.2952868 ], + [ 8.382287999999999, 47.2952414 ], + [ 8.3823607, 47.2951986 ], + [ 8.3824558, 47.2951628 ], + [ 8.3825467, 47.2951445 ], + [ 8.3826795, 47.295106 ], + [ 8.3827409, 47.2950426 ], + [ 8.3827945, 47.294988 ], + [ 8.3828793, 47.2949324 ], + [ 8.3829656, 47.2949014 ], + [ 8.383077, 47.2948448 ], + [ 8.383162, 47.2948059 ], + [ 8.3832758, 47.2947595 ], + [ 8.3833608, 47.294715 ], + [ 8.3834767, 47.2946599 ], + [ 8.3835584, 47.294621 ], + [ 8.3836211, 47.2945775 ], + [ 8.3837006, 47.2945379 ], + [ 8.3837965, 47.2944869 ], + [ 8.3838443, 47.2944117 ], + [ 8.3838717, 47.2943804 ], + [ 8.3839367, 47.2943441 ], + [ 8.384013, 47.2943171 ], + [ 8.3840816, 47.2942919 ], + [ 8.3841342, 47.2942429 ], + [ 8.3842157, 47.2941897 ], + [ 8.3843028, 47.2941396 ], + [ 8.3843724, 47.294112 ], + [ 8.3844013, 47.2940844 ], + [ 8.3844415, 47.2940461 ], + [ 8.3845275, 47.2939984 ], + [ 8.3845992, 47.2939604 ], + [ 8.384635, 47.2939268 ], + [ 8.3846617, 47.2939018 ], + [ 8.3846775, 47.2938889 ], + [ 8.3847111, 47.2938616 ], + [ 8.3847803, 47.2938021 ], + [ 8.3848264, 47.2937651 ], + [ 8.3849297, 47.2937102 ], + [ 8.384993, 47.2936717 ], + [ 8.385032, 47.2936106 ], + [ 8.3851267, 47.2935501 ], + [ 8.3851818, 47.2935178 ], + [ 8.38526, 47.2934678 ], + [ 8.3853474, 47.2934408 ], + [ 8.3854068, 47.2933933 ], + [ 8.3854563, 47.293361 ], + [ 8.385509, 47.2933136 ], + [ 8.3855414, 47.2932505 ], + [ 8.3856048, 47.2931767 ], + [ 8.3856876, 47.2931394 ], + [ 8.3857838, 47.2931028 ], + [ 8.3858585, 47.2930449 ], + [ 8.3859121, 47.2929831 ], + [ 8.385939, 47.292924 ], + [ 8.385985699999999, 47.2928472 ], + [ 8.3860535, 47.2927695 ], + [ 8.3861219, 47.2927355 ], + [ 8.3862062, 47.2927113 ], + [ 8.3862599, 47.292668 ], + [ 8.3863425, 47.2926014 ], + [ 8.3864394, 47.2925577 ], + [ 8.3864955, 47.2925198 ], + [ 8.3865152, 47.2925017 ], + [ 8.3865361, 47.2924824 ], + [ 8.3865635, 47.2924571 ], + [ 8.386629, 47.2923746 ], + [ 8.3867147, 47.2923071 ], + [ 8.3867687, 47.2922724 ], + [ 8.3868224, 47.2922242 ], + [ 8.3868662, 47.2921784 ], + [ 8.386922, 47.2921199 ], + [ 8.3869761, 47.2920947 ], + [ 8.3870368, 47.2920592 ], + [ 8.3870858, 47.2919959 ], + [ 8.3872038, 47.291928 ], + [ 8.3872686, 47.291879 ], + [ 8.3873275, 47.2918029 ], + [ 8.3873838, 47.2917753 ], + [ 8.3874522, 47.2917365 ], + [ 8.3875247, 47.2916794 ], + [ 8.3876128, 47.2916222 ], + [ 8.3876628, 47.2915461 ], + [ 8.3876972, 47.2914679 ], + [ 8.3877484, 47.2913958 ], + [ 8.3878341, 47.2913274 ], + [ 8.3879211, 47.2912758 ], + [ 8.3880047, 47.2912114 ], + [ 8.3880404, 47.2911474 ], + [ 8.3880519, 47.2911281 ], + [ 8.3880784, 47.2910834 ], + [ 8.3881533, 47.2910414 ], + [ 8.3882291, 47.2909771 ], + [ 8.3882936, 47.290901 ], + [ 8.3883382, 47.2908401 ], + [ 8.3884176, 47.2907917 ], + [ 8.3884814, 47.2907498 ], + [ 8.3885503, 47.2906759 ], + [ 8.3886339, 47.29061 ], + [ 8.3886608, 47.290554 ], + [ 8.3887, 47.2905004 ], + [ 8.3887484, 47.290461 ], + [ 8.3887969, 47.2904272 ], + [ 8.3888375, 47.2903989 ], + [ 8.3888976, 47.2903292 ], + [ 8.3889496, 47.2902924 ], + [ 8.3889636, 47.2902825 ], + [ 8.3890117, 47.2902272 ], + [ 8.389083, 47.2901661 ], + [ 8.389086, 47.2901629 ], + [ 8.3886464, 47.2900271 ], + [ 8.3881804, 47.2898831 ], + [ 8.3881199, 47.2899559 ], + [ 8.3880829, 47.2900022 ], + [ 8.3880316, 47.2900653 ], + [ 8.3879646, 47.2901149 ], + [ 8.3878786, 47.290156 ], + [ 8.3878149, 47.2902049 ], + [ 8.3877326, 47.2902713 ], + [ 8.3876935, 47.2903279 ], + [ 8.3876579, 47.2903933 ], + [ 8.38763, 47.2904545 ], + [ 8.3876131, 47.2905126 ], + [ 8.3875504, 47.2905527 ], + [ 8.387459, 47.2906089 ], + [ 8.387391, 47.2906626 ], + [ 8.3873449, 47.2906994 ], + [ 8.3873156, 47.2907433 ], + [ 8.3873161, 47.2907758 ], + [ 8.3872603, 47.2908294 ], + [ 8.3872476, 47.2908691 ], + [ 8.3872038, 47.2909075 ], + [ 8.387138, 47.2909643 ], + [ 8.3870534, 47.291026 ], + [ 8.3870018, 47.2910645 ], + [ 8.3869414, 47.2911101 ], + [ 8.3868646, 47.2911757 ], + [ 8.3867882, 47.291262 ], + [ 8.386719, 47.2913149 ], + [ 8.3866332, 47.2913694 ], + [ 8.3865784, 47.2914198 ], + [ 8.3865041, 47.2914989 ], + [ 8.3864504, 47.2915509 ], + [ 8.3863911, 47.2915941 ], + [ 8.3863054, 47.2916574 ], + [ 8.3862572, 47.291699 ], + [ 8.3862025, 47.2917565 ], + [ 8.386094, 47.2918509 ], + [ 8.3860382, 47.2919045 ], + [ 8.3859671, 47.2919756 ], + [ 8.3859266, 47.2920062 ], + [ 8.3858792, 47.2920421 ], + [ 8.3858131, 47.2920815 ], + [ 8.385778, 47.2921041 ], + [ 8.3857709, 47.2921086 ], + [ 8.3857394, 47.2921288 ], + [ 8.3856572, 47.2922032 ], + [ 8.385577, 47.2922593 ], + [ 8.3855109, 47.2922963 ], + [ 8.3854579, 47.2923189 ], + [ 8.3853948, 47.2923344 ], + [ 8.3853296, 47.2923594 ], + [ 8.3852701, 47.2923932 ], + [ 8.3852064, 47.2924389 ], + [ 8.385166, 47.2924883 ], + [ 8.3851373, 47.2925132 ], + [ 8.3850824, 47.2925389 ], + [ 8.3850465, 47.2925876 ], + [ 8.3850184, 47.2926402 ], + [ 8.3849923, 47.2926922 ], + [ 8.3849753, 47.2927262 ], + [ 8.3849629, 47.2927802 ], + [ 8.3849215, 47.2928337 ], + [ 8.3848612, 47.2928849 ], + [ 8.3847996, 47.2929266 ], + [ 8.3847556, 47.2929578 ], + [ 8.384712799999999, 47.2929915 ], + [ 8.3846456, 47.29303 ], + [ 8.384568699999999, 47.293083 ], + [ 8.3845171, 47.2931278 ], + [ 8.3844325, 47.2931871 ], + [ 8.3843652, 47.2932201 ], + [ 8.3843049, 47.2932745 ], + [ 8.3842225, 47.2933314 ], + [ 8.3841497, 47.2933708 ], + [ 8.3840959, 47.2934077 ], + [ 8.3839988, 47.293456 ], + [ 8.3839141, 47.2935089 ], + [ 8.3838391, 47.2935499 ], + [ 8.3837411, 47.2936069 ], + [ 8.3836642, 47.2936654 ], + [ 8.383583699999999, 47.2937065 ], + [ 8.3834945, 47.2937563 ], + [ 8.3833787, 47.2938142 ], + [ 8.3832308, 47.2938787 ], + [ 8.3831072, 47.2939351 ], + [ 8.3829859, 47.2939979 ], + [ 8.3828965, 47.2940406 ], + [ 8.3828051, 47.294096 ], + [ 8.3826639, 47.2941612 ], + [ 8.3825392, 47.2942169 ], + [ 8.3824609, 47.2942587 ], + [ 8.3823849, 47.2943036 ], + [ 8.382269, 47.2943544 ], + [ 8.3821874, 47.2943939 ], + [ 8.3820914, 47.2944374 ], + [ 8.3820274, 47.2944696 ], + [ 8.3819525, 47.294513 ], + [ 8.3818544, 47.2945652 ], + [ 8.3817937, 47.2945942 ], + [ 8.3816712, 47.2946491 ], + [ 8.3815919, 47.2946917 ], + [ 8.3815191, 47.2947303 ], + [ 8.3814443, 47.2947784 ], + [ 8.3813706, 47.2948257 ], + [ 8.3812921, 47.2948564 ], + [ 8.3812126, 47.2948879 ], + [ 8.3811385, 47.2949123 ], + [ 8.3810723, 47.2949429 ], + [ 8.3809475, 47.2949953 ], + [ 8.3808339, 47.2950525 ], + [ 8.3807092, 47.2951089 ], + [ 8.3806276, 47.2951523 ], + [ 8.380537, 47.2951886 ], + [ 8.3804313, 47.2952513 ], + [ 8.3803189, 47.2953124 ], + [ 8.3802097, 47.2953639 ], + [ 8.3801633, 47.2953849 ], + [ 8.3800805, 47.2954188 ], + [ 8.3800023, 47.2954677 ], + [ 8.3799274, 47.2955103 ], + [ 8.3798635, 47.2955433 ], + [ 8.3797896, 47.2955835 ], + [ 8.3796671, 47.2956375 ], + [ 8.3795425, 47.2957034 ], + [ 8.3794234, 47.2957638 ], + [ 8.3793097, 47.295813 ], + [ 8.3792204, 47.2958596 ], + [ 8.3791255, 47.2959024 ], + [ 8.3790416, 47.2959418 ], + [ 8.378938, 47.2959941 ], + [ 8.3788619, 47.2960343 ], + [ 8.3787571, 47.296085 ], + [ 8.3786489, 47.2961342 ], + [ 8.3785243, 47.2961938 ], + [ 8.3784096, 47.2962509 ], + [ 8.3783335, 47.2962904 ], + [ 8.3782573, 47.2963266 ], + [ 8.3781836, 47.2963731 ], + [ 8.3781265, 47.2964188 ], + [ 8.3780826, 47.296454 ], + [ 8.3780209, 47.2964854 ], + [ 8.3779544, 47.2964993 ], + [ 8.3779114, 47.2965242 ], + [ 8.37782, 47.2965796 ], + [ 8.3777817, 47.2966188 ], + [ 8.3776978, 47.2966558 ], + [ 8.3776186, 47.2967056 ], + [ 8.377548, 47.2967434 ], + [ 8.3774887, 47.2967882 ], + [ 8.3774105, 47.2968316 ], + [ 8.3773424, 47.2968845 ], + [ 8.377262, 47.2969303 ], + [ 8.3771962, 47.2969863 ], + [ 8.3771369, 47.2970335 ], + [ 8.3770689, 47.2970927 ], + [ 8.3770393, 47.2971207 ], + [ 8.3769712, 47.2971735 ], + [ 8.3768722, 47.2972401 ], + [ 8.3768143, 47.2973 ], + [ 8.3767551, 47.2973544 ], + [ 8.3766675, 47.2974104 ], + [ 8.3766197, 47.2974623 ], + [ 8.3765384, 47.2975259 ], + [ 8.3764645, 47.2975969 ], + [ 8.3763957, 47.2976558 ], + [ 8.3763479, 47.2976994 ], + [ 8.3762783, 47.2977719 ], + [ 8.3762148, 47.2978284 ], + [ 8.3762044, 47.2978377 ], + [ 8.3762008, 47.297844 ], + [ 8.3761695, 47.2978992 ], + [ 8.3761516, 47.2979583 ], + [ 8.3761021, 47.2980283 ], + [ 8.3760526, 47.2980991 ], + [ 8.3760391, 47.2981673 ], + [ 8.376001, 47.2982243 ], + [ 8.3759209, 47.2982992 ], + [ 8.3758747, 47.2983737 ], + [ 8.375825, 47.2984332 ], + [ 8.375769, 47.298495 ], + [ 8.3757173, 47.298564999999996 ], + [ 8.3756365, 47.2986558 ], + [ 8.3756313, 47.2986819 ], + [ 8.375621, 47.2987337 ], + [ 8.375606, 47.2987713 ], + [ 8.3755786, 47.2988399 ], + [ 8.3755283, 47.2989266 ], + [ 8.3755073, 47.298991 ], + [ 8.3754927, 47.2990561 ], + [ 8.3754497, 47.2991336 ], + [ 8.3754134, 47.2991733 ], + [ 8.375363, 47.2992524 ], + [ 8.3753402, 47.2993335 ], + [ 8.375316, 47.2993972 ], + [ 8.3752891, 47.2994873 ], + [ 8.3752565, 47.2995527 ], + [ 8.3752273, 47.299633 ], + [ 8.3752045, 47.2997179 ], + [ 8.3751823, 47.299771 ], + [ 8.3751477, 47.2998469 ], + [ 8.3751096, 47.2999047 ], + [ 8.3751051, 47.299931 ], + [ 8.3750972, 47.2999766 ], + [ 8.3750961, 47.3000295 ], + [ 8.3751146, 47.3001109 ], + [ 8.3751036, 47.3002009 ], + [ 8.3750966, 47.3002757 ], + [ 8.375089299999999, 47.3003392 ], + [ 8.3750882, 47.3003921 ], + [ 8.3750753, 47.3004338 ], + [ 8.3750574, 47.3004982 ], + [ 8.3750023, 47.3005524 ], + [ 8.3749728, 47.3006132 ], + [ 8.3749591, 47.3006752 ], + [ 8.3749254, 47.3007406 ], + [ 8.3749426, 47.3008084 ], + [ 8.3749481, 47.3008748 ], + [ 8.3749326, 47.3009505 ], + [ 8.3749093, 47.3010074 ], + [ 8.3748862, 47.3010726 ], + [ 8.3748782, 47.3011505 ], + [ 8.374883, 47.301238 ], + [ 8.3749036, 47.3013126 ], + [ 8.3748881, 47.3013898 ], + [ 8.374845, 47.3014612 ], + [ 8.3748282, 47.3015271 ], + [ 8.3748389, 47.3015667 ], + [ 8.3748476, 47.3015987 ], + [ 8.3748364, 47.3016774 ], + [ 8.3748039, 47.3017487 ], + [ 8.374785, 47.3018139 ], + [ 8.3747513, 47.3018792 ], + [ 8.3747528, 47.3019577 ], + [ 8.3747421, 47.3020115 ], + [ 8.3747432, 47.3020674 ], + [ 8.3747248, 47.3021559 ], + [ 8.3747229, 47.3022239 ], + [ 8.3747099, 47.3023192 ], + [ 8.3747027, 47.302385 ], + [ 8.3747167, 47.3024551 ], + [ 8.3747044, 47.3025323 ], + [ 8.3746518, 47.3026046 ], + [ 8.3746451, 47.30261 ], + [ 8.3746017, 47.3026452 ], + [ 8.3745798, 47.3027157 ], + [ 8.3745753, 47.3027944 ], + [ 8.3745735, 47.3028275 ], + [ 8.3745686, 47.302906899999996 ], + [ 8.3745764, 47.3029808 ], + [ 8.374573999999999, 47.303079 ], + [ 8.3745774, 47.3031447 ], + [ 8.3745766, 47.3031512 ], + [ 8.3745692, 47.303212 ], + [ 8.3745845, 47.3032927 ], + [ 8.3746312, 47.3033563 ], + [ 8.3746511, 47.3034528 ], + [ 8.374651, 47.3035072 ], + [ 8.374654, 47.3036039 ], + [ 8.3746533, 47.3036801 ], + [ 8.374653, 47.3036904 ], + [ 8.3746507, 47.3037663 ], + [ 8.3746761, 47.3038226 ], + [ 8.3746868, 47.3038814 ], + [ 8.3746977, 47.3039523 ], + [ 8.3747176, 47.3040503 ], + [ 8.374732, 47.3041377 ], + [ 8.3747446, 47.3041552 ], + [ 8.3747679, 47.3041872 ], + [ 8.3747837, 47.3042437 ], + [ 8.3747841, 47.3043147 ], + [ 8.374783, 47.3043721 ], + [ 8.374801, 47.3044255 ], + [ 8.3748046, 47.3044315 ], + [ 8.374824, 47.3044646 ], + [ 8.3748305, 47.3045302 ], + [ 8.3748368, 47.304583 ], + [ 8.3748622, 47.3046915 ], + [ 8.3748818, 47.3047713 ], + [ 8.3748979, 47.3048935 ], + [ 8.3749135, 47.3049379 ], + [ 8.3749245, 47.3050103 ], + [ 8.3749208, 47.3050965 ], + [ 8.3749212, 47.3051735 ], + [ 8.3749271, 47.3052036 ], + [ 8.3749492, 47.305251 ], + [ 8.3749654, 47.3052857 ], + [ 8.3749808, 47.3053508 ], + [ 8.3750074, 47.3054127 ], + [ 8.3750328, 47.3054691 ], + [ 8.3750449, 47.3055468 ], + [ 8.3750617, 47.3055957 ], + [ 8.3750789, 47.3056546 ], + [ 8.3750821, 47.3056657 ], + [ 8.3750997, 47.3057516 ], + [ 8.3751176, 47.3058043 ], + [ 8.3751197, 47.3058602 ], + [ 8.3751355, 47.3059083 ], + [ 8.3751607, 47.3059549 ], + [ 8.3751775, 47.3060008 ], + [ 8.3751773, 47.3060438 ], + [ 8.375195, 47.3060859 ], + [ 8.3752038, 47.3061568 ], + [ 8.3751832, 47.3061858 ], + [ 8.3751804, 47.3062062 ], + [ 8.3752051, 47.3062278 ], + [ 8.375221, 47.3062813 ], + [ 8.3752221, 47.3063402 ], + [ 8.3752403, 47.3064034 ], + [ 8.3752336, 47.3064443 ], + [ 8.3752342, 47.3064593 ], + [ 8.3752358, 47.3065024 ], + [ 8.375238, 47.3065677 ], + [ 8.3752535, 47.3066072 ], + [ 8.3752664, 47.3066402 ], + [ 8.3752881, 47.3066959 ], + [ 8.3753204, 47.3067681 ], + [ 8.375355, 47.3068427 ], + [ 8.3753814, 47.3069309 ], + [ 8.3754094, 47.3069934 ], + [ 8.3754131, 47.3070666 ], + [ 8.3754221, 47.3071361 ], + [ 8.3754323, 47.3072138 ], + [ 8.3754401, 47.307275 ], + [ 8.3754402, 47.3073286 ], + [ 8.3754729, 47.3073654 ], + [ 8.3754954, 47.3074204 ], + [ 8.3755308, 47.3074844 ], + [ 8.3755197, 47.307557 ], + [ 8.3755272, 47.3076567 ], + [ 8.3755589, 47.3077441 ], + [ 8.375571, 47.3078105 ], + [ 8.3755884, 47.3078746 ], + [ 8.3756135, 47.307953 ], + [ 8.3756267, 47.3080224 ], + [ 8.3756409, 47.3080843 ], + [ 8.3756104, 47.308138 ], + [ 8.3756061, 47.3081457 ], + [ 8.3756154, 47.3081545 ], + [ 8.3756473, 47.3081847 ], + [ 8.3756836, 47.3082388 ], + [ 8.375685, 47.3082985 ], + [ 8.375706600000001, 47.3083626 ], + [ 8.3757272, 47.3084297 ], + [ 8.3757359, 47.3084863 ], + [ 8.3757609, 47.3085579 ], + [ 8.3757606, 47.3085926 ], + [ 8.3757551, 47.308632 ], + [ 8.3757863, 47.308699 ], + [ 8.3757929, 47.3087571 ], + [ 8.37581, 47.3088076 ], + [ 8.3758274, 47.3088717 ], + [ 8.3758361, 47.3089313 ], + [ 8.3758744, 47.3089779 ], + [ 8.3758711, 47.3090195 ], + [ 8.3758863, 47.3090859 ], + [ 8.375895, 47.3091395 ], + [ 8.3759035, 47.3091893 ], + [ 8.3759315, 47.309254 ], + [ 8.3759623, 47.309309 ], + [ 8.3759815, 47.3093577 ], + [ 8.376036299999999, 47.3094233 ], + [ 8.3760676, 47.3094911 ], + [ 8.3760814, 47.3095363 ], + [ 8.3760918, 47.3095763 ], + [ 8.3760959, 47.3096155 ], + [ 8.3761217, 47.3096766 ], + [ 8.3761371, 47.309749 ], + [ 8.376166, 47.3098032 ], + [ 8.3762023, 47.3098604 ], + [ 8.3762334, 47.3099198 ], + [ 8.3762602, 47.3099748 ], + [ 8.3763053, 47.3100447 ], + [ 8.3763369, 47.3101269 ], + [ 8.3763648, 47.3101848 ], + [ 8.376403700000001, 47.3102609 ], + [ 8.37644, 47.310318 ], + [ 8.3764736, 47.3103949 ], + [ 8.3764846, 47.3104575 ], + [ 8.3765037, 47.3105027 ], + [ 8.3765456, 47.3105712 ], + [ 8.3765781, 47.310645 ], + [ 8.3766187, 47.3107036 ], + [ 8.3766563, 47.3107661 ], + [ 8.3766627, 47.3108182 ], + [ 8.3766791, 47.310857 ], + [ 8.3766852, 47.3108716 ], + [ 8.3767098, 47.3109251 ], + [ 8.3767171, 47.3109349 ], + [ 8.3767536, 47.3109837 ], + [ 8.3767888, 47.3110349 ], + [ 8.3768385, 47.3111176 ], + [ 8.3768655, 47.3112196 ], + [ 8.3768887, 47.3112697 ], + [ 8.3769265, 47.311346 ], + [ 8.3769764, 47.3114378 ], + [ 8.3770122, 47.3115184 ], + [ 8.3770221, 47.3115833 ], + [ 8.377036, 47.3116353 ], + [ 8.3770544, 47.3116949 ], + [ 8.3770843, 47.3117483 ], + [ 8.3771181, 47.3117851 ], + [ 8.3771443, 47.3118166 ], + [ 8.3771838, 47.311873 ], + [ 8.3771861, 47.3119259 ], + [ 8.3771883, 47.311981 ], + [ 8.3772057, 47.3120451 ], + [ 8.3772405, 47.3120796 ], + [ 8.3772724, 47.3121255 ], + [ 8.3772525, 47.3121876 ], + [ 8.3772452, 47.3122435 ], + [ 8.3772464, 47.3122964 ], + [ 8.3772714, 47.3123711 ], + [ 8.3772829, 47.3124103 ], + [ 8.3772983, 47.3124819 ], + [ 8.3773011, 47.3125597 ], + [ 8.3773138, 47.3126035 ], + [ 8.3773267, 47.3126593 ], + [ 8.377322, 47.3127326 ], + [ 8.3772966, 47.3127864 ], + [ 8.377279, 47.3128583 ], + [ 8.3772736, 47.3128999 ], + [ 8.3772767, 47.3129444 ], + [ 8.3772876, 47.3130004 ], + [ 8.3772831, 47.3130241 ], + [ 8.3772747, 47.3130676 ], + [ 8.3772654, 47.3131276 ], + [ 8.3772386, 47.3131942 ], + [ 8.3772213, 47.3132428 ], + [ 8.3771938, 47.313285 ], + [ 8.3771504, 47.313342 ], + [ 8.3771681, 47.3134067 ], + [ 8.3771537, 47.313455 ], + [ 8.3771647, 47.3135051 ], + [ 8.3771516, 47.3135399 ], + [ 8.3771334, 47.3135593 ], + [ 8.3771153, 47.3135787 ], + [ 8.3771015, 47.3136309 ], + [ 8.3770922, 47.3136892 ], + [ 8.3770815, 47.3137346 ], + [ 8.3770447, 47.3138021 ], + [ 8.3770371, 47.3138422 ], + [ 8.3770202, 47.3138997 ], + [ 8.3769979, 47.3139467 ], + [ 8.3769672, 47.3139983 ], + [ 8.376915, 47.3140425 ], + [ 8.376875, 47.3141108 ], + [ 8.3768126, 47.3141731 ], + [ 8.3767767, 47.3142323 ], + [ 8.3767681, 47.3142461 ], + [ 8.3767469, 47.3142801 ], + [ 8.376714400000001, 47.3143124 ], + [ 8.3766949, 47.3143319 ], + [ 8.376650099999999, 47.3143752 ], + [ 8.3766148, 47.314414 ], + [ 8.3765718, 47.3144873 ], + [ 8.3765676, 47.3144944 ], + [ 8.3765622, 47.3144989 ], + [ 8.3765206, 47.3145333 ], + [ 8.3764856, 47.3145804 ], + [ 8.3764548, 47.3146342 ], + [ 8.3763905, 47.3147065 ], + [ 8.3763346, 47.3147527 ], + [ 8.3763205, 47.3147644 ], + [ 8.376271299999999, 47.3147987 ], + [ 8.3762139, 47.3148527 ], + [ 8.3761745, 47.3148976 ], + [ 8.3761244, 47.314938 ], + [ 8.3760691, 47.3149882 ], + [ 8.3760468, 47.3150352 ], + [ 8.3760137, 47.3150808 ], + [ 8.3759594, 47.315125 ], + [ 8.3758978, 47.3151753 ], + [ 8.3758122, 47.3152499 ], + [ 8.3757482, 47.3152904 ], + [ 8.3756832, 47.3153309 ], + [ 8.375654, 47.3153576 ], + [ 8.3756135, 47.3154009 ], + [ 8.3755834, 47.3154374 ], + [ 8.3755489, 47.3154633 ], + [ 8.3754697, 47.3154873 ], + [ 8.375435, 47.3155064 ], + [ 8.3753904, 47.3155543 ], + [ 8.375359, 47.315581 ], + [ 8.3753097, 47.3156108 ], + [ 8.3752627, 47.3156325 ], + [ 8.375249, 47.3156379 ], + [ 8.3752159, 47.3156507 ], + [ 8.3751562, 47.3156912 ], + [ 8.3751209, 47.3157277 ], + [ 8.3750846, 47.3157725 ], + [ 8.375047, 47.3158007 ], + [ 8.3749954, 47.3158245 ], + [ 8.3749537, 47.3158529 ], + [ 8.3749472, 47.3158573 ], + [ 8.3749445, 47.3158624 ], + [ 8.3749257, 47.3158983 ], + [ 8.3748888, 47.3159605 ], + [ 8.3748517, 47.3159974 ], + [ 8.3747687, 47.3160447 ], + [ 8.3747552, 47.3160583 ], + [ 8.3747142, 47.3160996 ], + [ 8.3746594, 47.3161427 ], + [ 8.3745745, 47.3162258 ], + [ 8.3745455, 47.3162754 ], + [ 8.3745175, 47.316323 ], + [ 8.3744505, 47.3163752 ], + [ 8.3744403, 47.3163842 ], + [ 8.374323799999999, 47.3164867 ], + [ 8.3742331, 47.3165928 ], + [ 8.3740742, 47.3167397 ], + [ 8.3739404, 47.3168715 ], + [ 8.3739215, 47.3168995 ], + [ 8.3738891, 47.3169254 ], + [ 8.3738529, 47.316971 ], + [ 8.3737985, 47.3170114 ], + [ 8.3737623, 47.3170593 ], + [ 8.3737187, 47.317131 ], + [ 8.3737161, 47.3171351 ], + [ 8.3736829, 47.3171694 ], + [ 8.3736445, 47.3172135 ], + [ 8.3736049, 47.3172515 ], + [ 8.3735952, 47.3172593 ], + [ 8.3735589, 47.3172881 ], + [ 8.3735185, 47.3173352 ], + [ 8.3734651, 47.3173756 ], + [ 8.3734299, 47.3174182 ], + [ 8.3733531, 47.3175026 ], + [ 8.3733035, 47.3175679 ], + [ 8.3732824, 47.31761 ], + [ 8.373277, 47.317621 ], + [ 8.3732494, 47.317674 ], + [ 8.3732134, 47.3177279 ], + [ 8.3731942, 47.3177719 ], + [ 8.3731435, 47.3178395 ], + [ 8.3731066, 47.3179002 ], + [ 8.3730654, 47.3179609 ], + [ 8.3730259, 47.3180197 ], + [ 8.3730232, 47.3180239 ], + [ 8.3729868, 47.3181095 ], + [ 8.3729473, 47.3181997 ], + [ 8.3729043, 47.3182771 ], + [ 8.3728733, 47.3183672 ], + [ 8.3728298, 47.3184687 ], + [ 8.3727957, 47.3185611 ], + [ 8.372782, 47.318661 ], + [ 8.372777, 47.3187252 ], + [ 8.3727658, 47.3187928 ], + [ 8.3727577, 47.3188509 ], + [ 8.3727473, 47.3189377 ], + [ 8.3727437, 47.3189911 ], + [ 8.3727474, 47.3190311 ], + [ 8.37278, 47.3190603 ], + [ 8.3727887, 47.3191163 ], + [ 8.3727901, 47.319179 ], + [ 8.3727673, 47.3192119 ], + [ 8.3726994, 47.3192561 ], + [ 8.3726935, 47.3192796 ], + [ 8.372703, 47.3193241 ], + [ 8.3727124, 47.3194094 ], + [ 8.372714, 47.3194571 ], + [ 8.3727144, 47.3194993 ], + [ 8.3727507, 47.3195256 ], + [ 8.3727517, 47.3196392 ], + [ 8.3727313, 47.3196533 ], + [ 8.3727303, 47.3196797 ], + [ 8.3727427, 47.3197193 ], + [ 8.3727637, 47.319787 ], + [ 8.372791, 47.3198758 ], + [ 8.3728034, 47.3199286 ], + [ 8.372827, 47.3200113 ], + [ 8.3728602, 47.3200912 ], + [ 8.3728873, 47.3201695 ], + [ 8.3729071, 47.3202367 ], + [ 8.372914399999999, 47.3202617 ], + [ 8.372933, 47.3203559 ], + [ 8.3729418, 47.3204633 ], + [ 8.3729687, 47.3205548 ], + [ 8.3729897, 47.3206333 ], + [ 8.3730538, 47.320691 ], + [ 8.373047, 47.3207632 ], + [ 8.3730515, 47.3208457 ], + [ 8.373085, 47.3208998 ], + [ 8.373141799999999, 47.3209661 ], + [ 8.3731556, 47.3211404 ], + [ 8.3731614, 47.3211891 ], + [ 8.3731658, 47.3212261 ], + [ 8.3731766, 47.3213542 ], + [ 8.3731785, 47.3214378 ], + [ 8.3731825, 47.3214598 ], + [ 8.3731975, 47.3215416 ], + [ 8.3732005, 47.3216217 ], + [ 8.3732, 47.3216966 ], + [ 8.3732031, 47.3217855 ], + [ 8.373199, 47.3218692 ], + [ 8.3731796, 47.3219712 ], + [ 8.3731782, 47.3219784 ], + [ 8.3731648, 47.3221035 ], + [ 8.3731616, 47.3221244 ], + [ 8.3731488, 47.3222067 ], + [ 8.3731545, 47.3223512 ], + [ 8.373156, 47.3225018 ], + [ 8.373149, 47.3225752 ], + [ 8.3731085, 47.3226804 ], + [ 8.3730603, 47.3228224 ], + [ 8.3730102, 47.3229441 ], + [ 8.3728223, 47.32325 ], + [ 8.372793, 47.3232752 ], + [ 8.3727586, 47.3232931 ], + [ 8.3727206, 47.323299 ], + [ 8.3727072, 47.3233194 ], + [ 8.372694599999999, 47.3233386 ], + [ 8.3727101, 47.3233448 ], + [ 8.3727004, 47.3233837 ], + [ 8.3726523, 47.3234741 ], + [ 8.3726244, 47.3235189 ], + [ 8.3725807, 47.3235845 ], + [ 8.3725163, 47.3236589 ], + [ 8.3724376, 47.3237461 ], + [ 8.3723724, 47.3238096 ], + [ 8.3722583, 47.3239298 ], + [ 8.3721795, 47.3240107 ], + [ 8.372103, 47.3240788 ], + [ 8.3719847, 47.3241778 ], + [ 8.3719154, 47.3242291 ], + [ 8.371763, 47.3243329 ], + [ 8.3716519, 47.3244114 ], + [ 8.3716069, 47.3244394 ], + [ 8.3715347, 47.3244629 ], + [ 8.371483, 47.3244611 ], + [ 8.3715117, 47.3244923 ], + [ 8.371452, 47.324545 ], + [ 8.371347, 47.3246195 ], + [ 8.3712294, 47.3246959 ], + [ 8.3711404, 47.3247556 ], + [ 8.3710271, 47.3248246 ], + [ 8.3709529, 47.3248692 ], + [ 8.37084, 47.3249341 ], + [ 8.3707329, 47.3249982 ], + [ 8.3706069, 47.3250697 ], + [ 8.3704651, 47.325141 ], + [ 8.3702184, 47.3252685 ], + [ 8.3701364, 47.3253032 ], + [ 8.3700767, 47.3253457 ], + [ 8.3699575, 47.3254117 ], + [ 8.3698739, 47.3254564 ], + [ 8.3697344, 47.3255195 ], + [ 8.3696294, 47.3255722 ], + [ 8.3694997, 47.3256442 ], + [ 8.3693471, 47.3257152 ], + [ 8.3691544, 47.3258021 ], + [ 8.3690006, 47.3258754 ], + [ 8.36865, 47.3260475 ], + [ 8.3683823, 47.3261944 ], + [ 8.3681102, 47.3263409 ], + [ 8.3679816, 47.3264088 ], + [ 8.3678569, 47.3264821 ], + [ 8.3677477, 47.326543 ], + [ 8.3676692, 47.3265912 ], + [ 8.3675656, 47.3266479 ], + [ 8.3674341, 47.3267236 ], + [ 8.3672706, 47.3268151 ], + [ 8.3671127, 47.326902 ], + [ 8.3669352, 47.3270132 ], + [ 8.3668665, 47.3270477 ], + [ 8.3667249, 47.3271262 ], + [ 8.3666146, 47.327193 ], + [ 8.366501, 47.3272552 ], + [ 8.3664372, 47.3272856 ], + [ 8.3664062, 47.3272842 ], + [ 8.3663741, 47.3272906 ], + [ 8.3663605, 47.3273061 ], + [ 8.3663648, 47.3273233 ], + [ 8.3663387, 47.3273436 ], + [ 8.3662759, 47.3273866 ], + [ 8.3661894, 47.3274403 ], + [ 8.3661407, 47.3274691 ], + [ 8.366091, 47.3275042 ], + [ 8.366035, 47.3275385 ], + [ 8.3659434, 47.3275973 ], + [ 8.3658568, 47.3276501 ], + [ 8.3657782, 47.3276929 ], + [ 8.3656692, 47.3277601 ], + [ 8.3656179, 47.3277853 ], + [ 8.3654572, 47.3278845 ], + [ 8.3651797, 47.3280663 ], + [ 8.3651036, 47.3281113 ], + [ 8.3650202, 47.3281659 ], + [ 8.3649311, 47.328222 ], + [ 8.3648638, 47.3282587 ], + [ 8.3647727, 47.3283103 ], + [ 8.3646954, 47.3283553 ], + [ 8.3646154, 47.3283976 ], + [ 8.3645345, 47.3284477 ], + [ 8.36436, 47.3285525 ], + [ 8.3642726, 47.3286003 ], + [ 8.3641734, 47.3286579 ], + [ 8.3641114, 47.3286832 ], + [ 8.3640369, 47.3287155 ], + [ 8.3639463, 47.3287585 ], + [ 8.36388, 47.3287911 ], + [ 8.363806199999999, 47.3288248 ], + [ 8.3637313, 47.3288643 ], + [ 8.3636952, 47.3288884 ], + [ 8.3636464, 47.3289117 ], + [ 8.3636104, 47.3289145 ], + [ 8.3635794, 47.3289145 ], + [ 8.3635569, 47.3289266 ], + [ 8.3635428, 47.3289421 ], + [ 8.3635232, 47.3289673 ], + [ 8.3634745, 47.3289925 ], + [ 8.3634102, 47.3290287 ], + [ 8.3632863, 47.3290857 ], + [ 8.3632434, 47.3291121 ], + [ 8.3632104, 47.3291348 ], + [ 8.363147, 47.3291565 ], + [ 8.3630914, 47.3291831 ], + [ 8.3630399, 47.3292214 ], + [ 8.3629784, 47.3292431 ], + [ 8.3628972, 47.3292864 ], + [ 8.3626807, 47.3293813 ], + [ 8.362540599999999, 47.3294458 ], + [ 8.362431, 47.3294917 ], + [ 8.3623092, 47.329532 ], + [ 8.3621819, 47.3295786 ], + [ 8.3620658, 47.329616 ], + [ 8.3619604, 47.3296528 ], + [ 8.3618748, 47.3296708 ], + [ 8.3617868, 47.3296952 ], + [ 8.3617157, 47.3297111 ], + [ 8.3616698, 47.3297258 ], + [ 8.3616249, 47.3297486 ], + [ 8.3615061, 47.3297811 ], + [ 8.3613551, 47.3298168 ], + [ 8.3610686, 47.329877 ], + [ 8.3609615, 47.329898 ], + [ 8.3608279, 47.3299185 ], + [ 8.3606632, 47.3299421 ], + [ 8.3602964, 47.3299804 ], + [ 8.3601929, 47.3299896 ], + [ 8.3600583, 47.3299988 ], + [ 8.3599843, 47.3300021 ], + [ 8.3599216, 47.3300034 ], + [ 8.3598643, 47.3300142 ], + [ 8.3597797, 47.3300231 ], + [ 8.3596691, 47.3300297 ], + [ 8.3596159, 47.33003 ], + [ 8.359561, 47.3300371 ], + [ 8.3595009, 47.3300352 ], + [ 8.3594528, 47.3300382 ], + [ 8.359392, 47.3300368 ], + [ 8.3593029, 47.3300413 ], + [ 8.3592288, 47.3300423 ], + [ 8.358933799999999, 47.3300402 ], + [ 8.3587894, 47.3300377 ], + [ 8.3586051, 47.3300377 ], + [ 8.3585057, 47.3300359 ], + [ 8.3582635, 47.3300204 ], + [ 8.358138, 47.3300149 ], + [ 8.3579686, 47.3300006 ], + [ 8.3578824, 47.3299964 ], + [ 8.3577942, 47.3299873 ], + [ 8.3577033, 47.3299759 ], + [ 8.357648, 47.3299667 ], + [ 8.3575455, 47.3299673 ], + [ 8.3574647, 47.3299521 ], + [ 8.3574308, 47.329939 ], + [ 8.3573668, 47.3299368 ], + [ 8.3572856, 47.3299316 ], + [ 8.3571728, 47.3299269 ], + [ 8.3570852, 47.3299168 ], + [ 8.3570184, 47.3299047 ], + [ 8.3569823, 47.3298794 ], + [ 8.3569682, 47.3298501 ], + [ 8.356946, 47.3298487 ], + [ 8.3569466, 47.3297957 ], + [ 8.3569349, 47.3297864 ], + [ 8.3569161, 47.3297912 ], + [ 8.3568987, 47.329805 ], + [ 8.3568803, 47.3298297 ], + [ 8.356887799999999, 47.3298499 ], + [ 8.3568864, 47.3298676 ], + [ 8.3568752, 47.3298737 ], + [ 8.3568499, 47.3298749 ], + [ 8.3568162, 47.3298691 ], + [ 8.3567567, 47.3298717 ], + [ 8.3567061, 47.329872 ], + [ 8.3564619, 47.3298542 ], + [ 8.3563551, 47.3298385 ], + [ 8.3563068, 47.3298297 ], + [ 8.3562449, 47.3298107 ], + [ 8.356211, 47.3297958 ], + [ 8.3561838, 47.3298003 ], + [ 8.3561442, 47.3298085 ], + [ 8.3560853, 47.3298089 ], + [ 8.3559788, 47.3298023 ], + [ 8.3558577, 47.3297936 ], + [ 8.3557785, 47.3297943 ], + [ 8.3556748, 47.329798 ], + [ 8.3555919, 47.3297983 ], + [ 8.3554975, 47.329796 ], + [ 8.3552793, 47.3298028 ], + [ 8.3551101, 47.3298219 ], + [ 8.3550423, 47.3298414 ], + [ 8.3549292, 47.3298779 ], + [ 8.3548526, 47.3299003 ], + [ 8.3547624, 47.3299351 ], + [ 8.3546776, 47.3299612 ], + [ 8.3546255, 47.3299809 ], + [ 8.3545336, 47.3300225 ], + [ 8.3544526, 47.3300504 ], + [ 8.3543787, 47.3300804 ], + [ 8.3543169, 47.3301125 ], + [ 8.3542883, 47.3301328 ], + [ 8.3542496, 47.3301556 ], + [ 8.3541397, 47.3302119 ], + [ 8.3540932, 47.3302275 ], + [ 8.3540358, 47.3302578 ], + [ 8.3539651, 47.330292299999996 ], + [ 8.3539098, 47.3303329 ], + [ 8.3538709, 47.3303674 ], + [ 8.3538602, 47.3303956 ], + [ 8.3538616, 47.3304245 ], + [ 8.3538442, 47.3304619 ], + [ 8.3537845, 47.330527 ], + [ 8.3537263, 47.3306007 ], + [ 8.3536761, 47.3306431 ], + [ 8.3536359, 47.3306808 ], + [ 8.3536096, 47.3307147 ], + [ 8.3535715, 47.3307835 ], + [ 8.3535354, 47.3308325 ], + [ 8.3535056, 47.3308768 ], + [ 8.3534774, 47.3309152 ], + [ 8.3534616, 47.3309385 ], + [ 8.3534143, 47.330994 ], + [ 8.3533398, 47.3310765 ], + [ 8.3532718, 47.3311382 ], + [ 8.3532069, 47.3311993 ], + [ 8.3531195, 47.3312725 ], + [ 8.3529941, 47.3313648 ], + [ 8.3529363, 47.3314059 ], + [ 8.3528796, 47.3314416 ], + [ 8.3527801, 47.3315131 ], + [ 8.3527498, 47.3315407 ], + [ 8.3527198, 47.3315543 ], + [ 8.3526655, 47.3315854 ], + [ 8.3525917, 47.3316448 ], + [ 8.3524973, 47.3317114 ], + [ 8.3524145, 47.3317655 ], + [ 8.3523114, 47.3318186 ], + [ 8.352223, 47.3318542 ], + [ 8.3521371, 47.3318853 ], + [ 8.3520084, 47.3319279 ], + [ 8.3519048, 47.3319606 ], + [ 8.3518268, 47.3319776 ], + [ 8.3517372, 47.331992 ], + [ 8.3516716, 47.3320001 ], + [ 8.3516132, 47.3320191 ], + [ 8.3514534, 47.3321046 ], + [ 8.3513457, 47.3321732 ], + [ 8.3513021, 47.3322023 ], + [ 8.3511514, 47.3322497 ], + [ 8.3510914, 47.3322573 ], + [ 8.3510379, 47.3322676 ], + [ 8.3510073, 47.3322844 ], + [ 8.3509975, 47.3323211 ], + [ 8.3509649, 47.3323578 ], + [ 8.3508691, 47.3323977 ], + [ 8.3507976, 47.3324258 ], + [ 8.3507062, 47.3324633 ], + [ 8.3506209, 47.3324949 ], + [ 8.3505512, 47.3325158 ], + [ 8.3504547, 47.3325538 ], + [ 8.3503798, 47.3325735 ], + [ 8.3502775, 47.3326071 ], + [ 8.350182, 47.3326347 ], + [ 8.3500935, 47.3326662 ], + [ 8.3500589, 47.3326989 ], + [ 8.3500014, 47.3327241 ], + [ 8.3499174, 47.332757 ], + [ 8.3498361, 47.3327962 ], + [ 8.349701, 47.3328366 ], + [ 8.3496616, 47.3328539 ], + [ 8.3496444, 47.3328759 ], + [ 8.3495897, 47.3329119 ], + [ 8.3495263, 47.3329337 ], + [ 8.3493796, 47.333015 ], + [ 8.3493241, 47.3330493 ], + [ 8.3492542, 47.3330847 ], + [ 8.3491828, 47.333116 ], + [ 8.3490982, 47.3331484 ], + [ 8.349057, 47.333173 ], + [ 8.3490295, 47.3332119 ], + [ 8.348993, 47.3332672 ], + [ 8.348935, 47.3333255 ], + [ 8.3488212, 47.3334072 ], + [ 8.3487435, 47.3334594 ], + [ 8.348671, 47.3334953 ], + [ 8.3485822, 47.3335405 ], + [ 8.3485075, 47.3335642 ], + [ 8.3484474, 47.3335886 ], + [ 8.3484138, 47.3336112 ], + [ 8.3483641, 47.3336472 ], + [ 8.3483026, 47.3336708 ], + [ 8.3482159, 47.3337204 ], + [ 8.3481551, 47.333767 ], + [ 8.348101400000001, 47.3338198 ], + [ 8.3479996, 47.3338765 ], + [ 8.3479346, 47.3339068 ], + [ 8.3478728, 47.3339403 ], + [ 8.3478312, 47.3339721 ], + [ 8.3477716, 47.3339956 ], + [ 8.3477156, 47.3340077 ], + [ 8.3476519, 47.334043 ], + [ 8.3476046, 47.3340718 ], + [ 8.3475487, 47.3341133 ], + [ 8.3474814, 47.3341559 ], + [ 8.3474357, 47.3341755 ], + [ 8.3473753, 47.3341918 ], + [ 8.3473414, 47.3342067 ], + [ 8.347319, 47.3342166 ], + [ 8.3471704, 47.3343228 ], + [ 8.3471094, 47.3343621 ], + [ 8.3470555, 47.3344059 ], + [ 8.3469348, 47.3345135 ], + [ 8.3468969, 47.3345661 ], + [ 8.3468549, 47.3346319 ], + [ 8.3468119, 47.3346814 ], + [ 8.3466993, 47.3347581 ], + [ 8.3466018, 47.3348319 ], + [ 8.3465409, 47.3348767 ], + [ 8.3464714, 47.3349311 ], + [ 8.3462751, 47.3350525 ], + [ 8.3462066, 47.3350716 ], + [ 8.3461475, 47.3350864 ], + [ 8.3460974, 47.3351098 ], + [ 8.3460583, 47.3351406 ], + [ 8.3460077, 47.3351662 ], + [ 8.3459544, 47.3351851 ], + [ 8.3459308, 47.3352013 ], + [ 8.3459192, 47.3352218 ], + [ 8.3458841, 47.3352594 ], + [ 8.3458094, 47.3353067 ], + [ 8.3457425, 47.3353398 ], + [ 8.3456898, 47.3353586 ], + [ 8.3456354, 47.3353865 ], + [ 8.3456114, 47.33541 ], + [ 8.3455524, 47.3354303 ], + [ 8.3455079, 47.335449 ], + [ 8.3454395, 47.3354957 ], + [ 8.3453847, 47.3355078 ], + [ 8.3453147, 47.3355169 ], + [ 8.34526, 47.335534 ], + [ 8.3452175, 47.3355527 ], + [ 8.3451845, 47.3355744 ], + [ 8.3451607, 47.3355865 ], + [ 8.3450984, 47.3355992 ], + [ 8.345045, 47.3356172 ], + [ 8.3449868, 47.3356424 ], + [ 8.344872, 47.3357074 ], + [ 8.3447509, 47.3357526 ], + [ 8.3446844, 47.3357992 ], + [ 8.3446503, 47.3358269 ], + [ 8.3445929, 47.335858 ], + [ 8.3445619, 47.3358856 ], + [ 8.3445319, 47.335925 ], + [ 8.3444876, 47.3359487 ], + [ 8.3444429, 47.3359602 ], + [ 8.3443532, 47.3359678 ], + [ 8.344286199999999, 47.3359701 ], + [ 8.3442024, 47.3359894 ], + [ 8.3441726, 47.3360111 ], + [ 8.344142399999999, 47.3360174 ], + [ 8.3441004, 47.336009 ], + [ 8.3440394, 47.3360252 ], + [ 8.3439987, 47.3360443 ], + [ 8.3439734, 47.3360664 ], + [ 8.3439375, 47.3360755 ], + [ 8.3439007, 47.3360743 ], + [ 8.3438402, 47.3360851 ], + [ 8.3437461, 47.3361158 ], + [ 8.3436627, 47.3361473 ], + [ 8.3435949, 47.3361954 ], + [ 8.3435457, 47.3362286 ], + [ 8.3434312, 47.3362801 ], + [ 8.3431637, 47.3363635 ], + [ 8.3430132, 47.3363969 ], + [ 8.3428567, 47.3364154 ], + [ 8.3427287, 47.3364367 ], + [ 8.3425708, 47.3364756 ], + [ 8.3424419, 47.3365095 ], + [ 8.3423414, 47.3365422 ], + [ 8.3422124, 47.336573 ], + [ 8.3421319, 47.3365936 ], + [ 8.3420495, 47.336616 ], + [ 8.3419735, 47.3366153 ], + [ 8.3418219, 47.3366283 ], + [ 8.3417149, 47.3366506 ], + [ 8.3416341, 47.3366599 ], + [ 8.3415566, 47.3366746 ], + [ 8.3414453, 47.3367319 ], + [ 8.3413729, 47.3367718 ], + [ 8.3413054, 47.3368035 ], + [ 8.3411903, 47.3368355 ], + [ 8.3410835, 47.3368669 ], + [ 8.3410396, 47.3368811 ], + [ 8.3409809, 47.3369136 ], + [ 8.3408959, 47.3369587 ], + [ 8.3407967, 47.3369886 ], + [ 8.3404723, 47.337081 ], + [ 8.3403443, 47.3371227 ], + [ 8.3400918, 47.3371927 ], + [ 8.3400278, 47.3372018 ], + [ 8.3399243, 47.3372128 ], + [ 8.3398588, 47.3372255 ], + [ 8.3397972, 47.3372458 ], + [ 8.3397515, 47.3372646 ], + [ 8.3396634, 47.3373093 ], + [ 8.339547, 47.3373621 ], + [ 8.3394811, 47.3373874 ], + [ 8.3394242, 47.3374127 ], + [ 8.3393653, 47.3374619 ], + [ 8.3392836, 47.3375084 ], + [ 8.3392247, 47.3375336 ], + [ 8.3391718, 47.3375462 ], + [ 8.3390755, 47.3375665 ], + [ 8.3389747, 47.3376105 ], + [ 8.3388951, 47.3376415 ], + [ 8.3387805, 47.3376942 ], + [ 8.3385905, 47.3377879 ], + [ 8.3384468, 47.3378619 ], + [ 8.3382765, 47.3379358 ], + [ 8.3381189, 47.3380123 ], + [ 8.3379814, 47.3380835 ], + [ 8.3378515, 47.3381532 ], + [ 8.3376955, 47.3382401 ], + [ 8.337578, 47.3383001 ], + [ 8.3374981, 47.3383451 ], + [ 8.3374136, 47.3384337 ], + [ 8.3373163, 47.3385134 ], + [ 8.3371932, 47.3386025 ], + [ 8.3369566, 47.3387348 ], + [ 8.3368517, 47.3387915 ], + [ 8.3367747, 47.3388492 ], + [ 8.3366848, 47.3389238 ], + [ 8.3366056, 47.3389964 ], + [ 8.3365428, 47.3390643 ], + [ 8.3364885, 47.3391198 ], + [ 8.336431900000001, 47.3391844 ], + [ 8.3363781, 47.3392599 ], + [ 8.3362961, 47.3393692 ], + [ 8.3362602, 47.3394512 ], + [ 8.3362139, 47.3395704 ], + [ 8.3361651, 47.3396422 ], + [ 8.336103, 47.3397408 ], + [ 8.3360626, 47.339817 ], + [ 8.3360241, 47.3398986 ], + [ 8.335975, 47.3399567 ], + [ 8.3359205, 47.3400317 ], + [ 8.335873, 47.3401044 ], + [ 8.3358225, 47.3402069 ], + [ 8.3357883, 47.3403301 ], + [ 8.3357624, 47.3404056 ], + [ 8.3356489, 47.3406222 ], + [ 8.3356066, 47.3407273 ], + [ 8.3355882, 47.3408009 ], + [ 8.3355885, 47.3408855 ], + [ 8.3355976, 47.3409669 ], + [ 8.3355943, 47.3411104 ], + [ 8.3355759, 47.3411591 ], + [ 8.3355629, 47.341219 ], + [ 8.3355654, 47.3412665 ], + [ 8.3355759, 47.3413062 ], + [ 8.335613500000001, 47.3413898 ], + [ 8.3356358, 47.3414674 ], + [ 8.3356461, 47.3415732 ], + [ 8.3356682, 47.3416471 ], + [ 8.3357321, 47.3417426 ], + [ 8.3357747, 47.341899 ], + [ 8.335814599999999, 47.3421185 ], + [ 8.3358338, 47.3422082 ], + [ 8.3358635, 47.3423472 ], + [ 8.3358931, 47.3424641 ], + [ 8.3358866, 47.3425302 ], + [ 8.335878, 47.3425901 ], + [ 8.3358987, 47.3426812 ], + [ 8.3359298, 47.3427504 ], + [ 8.3359835, 47.342853 ], + [ 8.3360698, 47.3430314 ], + [ 8.3360988, 47.3431256 ], + [ 8.3361439, 47.3432037 ], + [ 8.3361995, 47.3432496 ], + [ 8.3362556, 47.3433126 ], + [ 8.3363192, 47.3433737 ], + [ 8.3363777, 47.3434802 ], + [ 8.3364452, 47.3435711 ], + [ 8.3365092, 47.3436462 ], + [ 8.3365602, 47.3437089 ], + [ 8.3366485, 47.3437941 ], + [ 8.3368238, 47.3439369 ], + [ 8.3369558, 47.3440491 ], + [ 8.3370379, 47.3441127 ], + [ 8.3371151, 47.3441826 ], + [ 8.3372335, 47.3442588 ], + [ 8.3373402, 47.3443207 ], + [ 8.3374884, 47.3444181 ], + [ 8.3375222, 47.3444534 ], + [ 8.3375461, 47.3444965 ], + [ 8.3376441, 47.3445653 ], + [ 8.3377768, 47.3446508 ], + [ 8.3378788, 47.3447028 ], + [ 8.3379926, 47.3447433 ], + [ 8.338108, 47.3447756 ], + [ 8.3382067, 47.3447964 ], + [ 8.3383767, 47.3448075 ], + [ 8.3385508, 47.3448055 ], + [ 8.3386976, 47.3447795 ], + [ 8.33886, 47.3447405 ], + [ 8.3389938, 47.3446974 ], + [ 8.3391347, 47.3446384 ], + [ 8.3392641, 47.3445705 ], + [ 8.3393651, 47.3445111 ], + [ 8.3394763, 47.3444267 ], + [ 8.3396636, 47.3442258 ], + [ 8.3397416, 47.3441315 ], + [ 8.3398243, 47.3440226 ], + [ 8.3399228, 47.3438383 ], + [ 8.3400105, 47.3436533 ] + ], + [ + [ 8.3880484, 47.2901686 ], + [ 8.3881167, 47.2901756 ], + [ 8.3881257, 47.2901984 ], + [ 8.3881054, 47.29022 ], + [ 8.3880454, 47.2902451 ], + [ 8.3879985, 47.2902876 ], + [ 8.3878868, 47.2904103 ], + [ 8.3878399, 47.2904161 ], + [ 8.3877887, 47.2903853 ], + [ 8.3877877, 47.2903486 ], + [ 8.3878264, 47.2902771 ], + [ 8.3879035, 47.2902251 ], + [ 8.3879754, 47.290177 ], + [ 8.3880484, 47.2901686 ] + ], + [ + [ 8.3717382, 47.3256273 ], + [ 8.371826, 47.3255768 ], + [ 8.3718876, 47.3255124 ], + [ 8.3719691, 47.325454 ], + [ 8.3720093, 47.3254323 ], + [ 8.3720566, 47.3254549 ], + [ 8.3721255, 47.3255127 ], + [ 8.3721714, 47.3255937 ], + [ 8.3721798, 47.3256441 ], + [ 8.3721568, 47.3256656 ], + [ 8.3720768, 47.3256735 ], + [ 8.3720145, 47.3257025 ], + [ 8.3719586, 47.3257464 ], + [ 8.3719104, 47.3258018 ], + [ 8.3718799, 47.3258198 ], + [ 8.3718306, 47.3258203 ], + [ 8.3717844, 47.3258545 ], + [ 8.3717386, 47.3259063 ], + [ 8.3716808, 47.3260477 ], + [ 8.3716203, 47.3261697 ], + [ 8.3715572, 47.3262199 ], + [ 8.3715219, 47.3261822 ], + [ 8.3715008, 47.3261098 ], + [ 8.3715107, 47.3260432 ], + [ 8.3715243, 47.3259829 ], + [ 8.3715665, 47.3259328 ], + [ 8.3716083, 47.3258642 ], + [ 8.3716385, 47.3257674 ], + [ 8.3716729, 47.3256953 ], + [ 8.3717382, 47.3256273 ] + ], + [ + [ 8.3711399, 47.3257989 ], + [ 8.371068, 47.3258422 ], + [ 8.3709927, 47.3258376 ], + [ 8.3708985, 47.3258085 ], + [ 8.3708444, 47.325817 ], + [ 8.3708491, 47.3258692 ], + [ 8.3708461, 47.3259091 ], + [ 8.3708093, 47.3259174 ], + [ 8.3707619, 47.325886 ], + [ 8.3707178, 47.3258369 ], + [ 8.370732, 47.3258048 ], + [ 8.370781, 47.3257875 ], + [ 8.3708877, 47.325759 ], + [ 8.3709537, 47.3257317 ], + [ 8.3709639, 47.3256856 ], + [ 8.3710104, 47.3256638 ], + [ 8.3710615, 47.3256314 ], + [ 8.3711183, 47.3256379 ], + [ 8.3711535, 47.3256739 ], + [ 8.3711532, 47.3257217 ], + [ 8.3711399, 47.3257989 ] + ], + [ + [ 8.3650875, 47.3290546 ], + [ 8.3649817, 47.3291108 ], + [ 8.3649074, 47.3291554 ], + [ 8.3648482, 47.3291522 ], + [ 8.3648458, 47.3291296 ], + [ 8.3648802, 47.3291065 ], + [ 8.364937, 47.3290886 ], + [ 8.3650028, 47.3290433 ], + [ 8.3650928, 47.3289925 ], + [ 8.3651913, 47.3289469 ], + [ 8.3653013, 47.3288883 ], + [ 8.3653631, 47.3288544 ], + [ 8.3654174, 47.3288176 ], + [ 8.3654992, 47.3287805 ], + [ 8.3656149, 47.3287498 ], + [ 8.3657096, 47.32873 ], + [ 8.3657335, 47.3287033 ], + [ 8.3657883, 47.3287005 ], + [ 8.3658303, 47.3286804 ], + [ 8.3658913, 47.3286685 ], + [ 8.3659398, 47.3286612 ], + [ 8.3659891, 47.328641 ], + [ 8.3660146, 47.3285863 ], + [ 8.3660606, 47.3285548 ], + [ 8.3661152, 47.3285361 ], + [ 8.366152, 47.3285267 ], + [ 8.366159, 47.3285024 ], + [ 8.3662156, 47.3284769 ], + [ 8.3662802, 47.3284211 ], + [ 8.3663503, 47.328378 ], + [ 8.3664139, 47.3283297 ], + [ 8.3665236, 47.3282545 ], + [ 8.3666206, 47.328181 ], + [ 8.3666949, 47.3281378 ], + [ 8.3667385, 47.3281533 ], + [ 8.3667454, 47.328188 ], + [ 8.3668119, 47.3281859 ], + [ 8.3669189, 47.3281425 ], + [ 8.3669832, 47.3281335 ], + [ 8.3670453, 47.3280535 ], + [ 8.3671091, 47.3280188 ], + [ 8.3671084, 47.3279742 ], + [ 8.3671044, 47.3279198 ], + [ 8.3671756, 47.3278827 ], + [ 8.3672571, 47.3278297 ], + [ 8.367419, 47.3277162 ], + [ 8.3675988, 47.3276032 ], + [ 8.367656, 47.3275505 ], + [ 8.3677019, 47.327513 ], + [ 8.367793, 47.3274674 ], + [ 8.3679103, 47.327405 ], + [ 8.3680077, 47.3273526 ], + [ 8.3681279, 47.3272773 ], + [ 8.3681538, 47.327243 ], + [ 8.3681772, 47.3271913 ], + [ 8.3682714, 47.327136 ], + [ 8.3683771, 47.3270782 ], + [ 8.3684255, 47.3270633 ], + [ 8.3684564, 47.3270191 ], + [ 8.3685787, 47.32694 ], + [ 8.368672, 47.3268937 ], + [ 8.368767, 47.3268293 ], + [ 8.3688833, 47.3267699 ], + [ 8.3689795, 47.3267114 ], + [ 8.369083, 47.3266416 ], + [ 8.369193899999999, 47.3265784 ], + [ 8.3692716, 47.3265482 ], + [ 8.3693988, 47.3265167 ], + [ 8.3695811, 47.3264233 ], + [ 8.3698522, 47.3262724 ], + [ 8.3700028, 47.3261817 ], + [ 8.3700826, 47.3261559 ], + [ 8.3701251, 47.326104 ], + [ 8.3701455, 47.3260585 ], + [ 8.3702557, 47.326015 ], + [ 8.3703337, 47.3259416 ], + [ 8.3703985, 47.3259032 ], + [ 8.3705037, 47.3258787 ], + [ 8.3705779, 47.3258916 ], + [ 8.3705585, 47.3259356 ], + [ 8.3704914, 47.3259665 ], + [ 8.370426, 47.326033 ], + [ 8.3704299, 47.3260776 ], + [ 8.3704947, 47.3261057 ], + [ 8.3705375, 47.3261393 ], + [ 8.3705287, 47.3261825 ], + [ 8.3704796, 47.3262133 ], + [ 8.3703669, 47.3262318 ], + [ 8.3702722, 47.3262561 ], + [ 8.3702287, 47.3262414 ], + [ 8.3701934, 47.3262138 ], + [ 8.370093, 47.3262118 ], + [ 8.370048, 47.3262342 ], + [ 8.3700006, 47.3262407 ], + [ 8.3699505, 47.3262813 ], + [ 8.3698582, 47.3263192 ], + [ 8.3697629, 47.3263701 ], + [ 8.3696898, 47.3264223 ], + [ 8.3696199, 47.3264744 ], + [ 8.3694939, 47.3265172 ], + [ 8.3693984, 47.3265552 ], + [ 8.3693853, 47.3265917 ], + [ 8.3693324, 47.3266512 ], + [ 8.3692232, 47.3266939 ], + [ 8.3691377, 47.3267605 ], + [ 8.3690075, 47.3268707 ], + [ 8.3688629, 47.3269463 ], + [ 8.3688055, 47.3269847 ], + [ 8.368793, 47.3270635 ], + [ 8.3687459, 47.3271547 ], + [ 8.3686382, 47.3272231 ], + [ 8.3686442, 47.3272639 ], + [ 8.3685944, 47.3273869 ], + [ 8.3684855, 47.3275075 ], + [ 8.3684449, 47.327545 ], + [ 8.368431, 47.3275383 ], + [ 8.3684523, 47.3274814 ], + [ 8.3684472, 47.327427 ], + [ 8.3684266, 47.3273939 ], + [ 8.3683923, 47.3273609 ], + [ 8.3683586, 47.3273718 ], + [ 8.368378, 47.3273943 ], + [ 8.3683425, 47.3274166 ], + [ 8.368344, 47.3274454 ], + [ 8.3683742, 47.3274814 ], + [ 8.3683566, 47.3275753 ], + [ 8.3683193, 47.3276143 ], + [ 8.3682873, 47.3275987 ], + [ 8.3682642, 47.3276057 ], + [ 8.3683021, 47.3276621 ], + [ 8.3682623, 47.3277487 ], + [ 8.3681719, 47.3278434 ], + [ 8.3680999, 47.3278971 ], + [ 8.3680375, 47.3279544 ], + [ 8.3680111, 47.3279554 ], + [ 8.3679855, 47.3279368 ], + [ 8.3679571, 47.3278796 ], + [ 8.3679285, 47.3278088 ], + [ 8.3679008, 47.3277939 ], + [ 8.3678915, 47.327741 ], + [ 8.3678647, 47.3277209 ], + [ 8.3677543, 47.3277492 ], + [ 8.3676579, 47.327794 ], + [ 8.3675773, 47.3278447 ], + [ 8.3675982, 47.3278914 ], + [ 8.3675828, 47.3279196 ], + [ 8.3676202, 47.3279457 ], + [ 8.3676583, 47.3279552 ], + [ 8.3677033, 47.3279895 ], + [ 8.3677604, 47.3280638 ], + [ 8.3678346, 47.3280805 ], + [ 8.3678162, 47.3281147 ], + [ 8.3677796, 47.3281393 ], + [ 8.3677321, 47.3282063 ], + [ 8.3676985, 47.3282823 ], + [ 8.3676281, 47.32837 ], + [ 8.3675301, 47.3284519 ], + [ 8.3674433, 47.3285034 ], + [ 8.367327, 47.3285628 ], + [ 8.3672608, 47.3285839 ], + [ 8.3672061, 47.328595 ], + [ 8.367174200000001, 47.3285802 ], + [ 8.3671535, 47.3285463 ], + [ 8.3671526, 47.3284873 ], + [ 8.3671907, 47.3284287 ], + [ 8.3672258, 47.3283777 ], + [ 8.3672536, 47.3283328 ], + [ 8.3672078, 47.3283106 ], + [ 8.3671424, 47.3283127 ], + [ 8.3670858, 47.3283382 ], + [ 8.3670075, 47.3283995 ], + [ 8.3669524, 47.328453 ], + [ 8.3669139, 47.3284882 ], + [ 8.3669377, 47.3285228 ], + [ 8.3669596, 47.3285717 ], + [ 8.3669453, 47.3286021 ], + [ 8.3669732, 47.3286298 ], + [ 8.366996, 47.3286682 ], + [ 8.3669049, 47.3287137 ], + [ 8.3668293, 47.3287402 ], + [ 8.366769099999999, 47.3287407 ], + [ 8.3666766, 47.3287674 ], + [ 8.3665903, 47.3287871 ], + [ 8.3665064, 47.3288228 ], + [ 8.366357, 47.3288605 ], + [ 8.366243, 47.3288639 ], + [ 8.3661921, 47.3288493 ], + [ 8.3661938, 47.3288273 ], + [ 8.3662453, 47.3288079 ], + [ 8.3662937, 47.3287969 ], + [ 8.3663554, 47.3287615 ], + [ 8.3663567, 47.32871 ], + [ 8.3663287, 47.3286747 ], + [ 8.3662964, 47.328638 ], + [ 8.3662289, 47.3286477 ], + [ 8.3661593, 47.328653 ], + [ 8.3661136, 47.3286345 ], + [ 8.3660086, 47.3286711 ], + [ 8.3659435, 47.3286937 ], + [ 8.3658778, 47.3287442 ], + [ 8.3658501, 47.3287967 ], + [ 8.3658157, 47.328828 ], + [ 8.3657473, 47.3288401 ], + [ 8.3656819, 47.3288452 ], + [ 8.365614, 47.3288293 ], + [ 8.3655486, 47.3288329 ], + [ 8.365457, 47.3288512 ], + [ 8.3653951, 47.3288768 ], + [ 8.3652812, 47.3289528 ], + [ 8.3652257, 47.3289783 ], + [ 8.3651956, 47.3290157 ], + [ 8.3651318, 47.3290556 ], + [ 8.3650875, 47.3290546 ] + ], + [ + [ 8.3713188, 47.3266667 ], + [ 8.3713358, 47.3267065 ], + [ 8.3713093, 47.3267582 ], + [ 8.3712271, 47.3267705 ], + [ 8.3711966, 47.3267451 ], + [ 8.3712108, 47.3267086 ], + [ 8.3712603, 47.3266797 ], + [ 8.3713188, 47.3266667 ] + ], + [ + [ 8.3698056, 47.3275066 ], + [ 8.3698903, 47.32748 ], + [ 8.3700487, 47.3274066 ], + [ 8.3701772, 47.3273459 ], + [ 8.37033, 47.3272955 ], + [ 8.3703882, 47.327263 ], + [ 8.370443, 47.3272385 ], + [ 8.3705427, 47.3272365 ], + [ 8.3706367, 47.3272531 ], + [ 8.3707189, 47.3272795 ], + [ 8.3707739, 47.3273087 ], + [ 8.3708127, 47.3273507 ], + [ 8.3708364, 47.3274052 ], + [ 8.3708462, 47.3274632 ], + [ 8.3708357, 47.3275251 ], + [ 8.3708135, 47.3275635 ], + [ 8.370773, 47.3276129 ], + [ 8.3707201, 47.3276482 ], + [ 8.3706325, 47.3277194 ], + [ 8.3705746, 47.3277618 ], + [ 8.3704976, 47.3278206 ], + [ 8.3703899, 47.3279107 ], + [ 8.3703279, 47.3279349 ], + [ 8.3702583, 47.3279293 ], + [ 8.3701738, 47.3279108 ], + [ 8.3700112, 47.3278888 ], + [ 8.3698651, 47.3278472 ], + [ 8.3697682, 47.3278094 ], + [ 8.3697347, 47.3277505 ], + [ 8.3697118, 47.3276863 ], + [ 8.3697226, 47.3276287 ], + [ 8.3696992, 47.3275998 ], + [ 8.3696853, 47.3275628 ], + [ 8.3697231, 47.327527 ], + [ 8.3698056, 47.3275066 ] + ], + [ + [ 8.367283, 47.3292057 ], + [ 8.3672657, 47.3291575 ], + [ 8.3672586, 47.3291334 ], + [ 8.3672656, 47.3291086 ], + [ 8.3672834, 47.3290866 ], + [ 8.3673369, 47.3290879 ], + [ 8.3673643, 47.3290964 ], + [ 8.3673987, 47.3290861 ], + [ 8.3674275, 47.329084 ], + [ 8.3674782, 47.3291065 ], + [ 8.3675369, 47.3291177 ], + [ 8.3675766, 47.3291279 ], + [ 8.3676187, 47.3291351 ], + [ 8.3676572, 47.3291642 ], + [ 8.3676642, 47.3291907 ], + [ 8.3676722, 47.3292183 ], + [ 8.3676296, 47.3292364 ], + [ 8.3675894, 47.3292457 ], + [ 8.3675411, 47.3292586 ], + [ 8.3675227, 47.3292941 ], + [ 8.3674771, 47.3293241 ], + [ 8.3674305, 47.3293393 ], + [ 8.3674024, 47.3293378 ], + [ 8.367378800000001, 47.3293079 ], + [ 8.3673833, 47.3292808 ], + [ 8.3673615, 47.3292615 ], + [ 8.3673253, 47.3292625 ], + [ 8.3673028, 47.3292497 ], + [ 8.367283, 47.3292057 ] + ], + [ + [ 8.3648984, 47.3303707 ], + [ 8.3649268, 47.3303355 ], + [ 8.36496, 47.3302957 ], + [ 8.364995799999999, 47.3302552 ], + [ 8.3650332, 47.3302194 ], + [ 8.3650408, 47.3301815 ], + [ 8.3650645, 47.3301606 ], + [ 8.3650682, 47.3301352 ], + [ 8.3650403, 47.330107 ], + [ 8.3649887, 47.3300997 ], + [ 8.3649114, 47.3300944 ], + [ 8.3648642, 47.3300966 ], + [ 8.3648033, 47.3300799 ], + [ 8.3647172, 47.3300865 ], + [ 8.3646568, 47.3300977 ], + [ 8.3645873, 47.3301065 ], + [ 8.3645647, 47.3300966 ], + [ 8.3645604, 47.3300854 ], + [ 8.3645453, 47.3300779 ], + [ 8.3645264, 47.3300449 ], + [ 8.3644991, 47.3300014 ], + [ 8.3644755, 47.3299401 ], + [ 8.364469, 47.3299046 ], + [ 8.3645004, 47.3298955 ], + [ 8.3645443, 47.3298958 ], + [ 8.3645673, 47.3299275 ], + [ 8.3646028, 47.3299136 ], + [ 8.3646465, 47.3299038 ], + [ 8.3646574, 47.3298665 ], + [ 8.3646787, 47.3298486 ], + [ 8.3647375, 47.3298434 ], + [ 8.3647997, 47.3298429 ], + [ 8.3648594, 47.3298448 ], + [ 8.3648755, 47.3298618 ], + [ 8.364907, 47.3298609 ], + [ 8.364961, 47.3298629 ], + [ 8.3650657, 47.3298744 ], + [ 8.3651292, 47.329897 ], + [ 8.365185, 47.3299084 ], + [ 8.3652621, 47.3299077 ], + [ 8.3653625, 47.3299099 ], + [ 8.3653686, 47.3299235 ], + [ 8.3653423, 47.3299373 ], + [ 8.3653295, 47.3299604 ], + [ 8.3653576, 47.3299992 ], + [ 8.3653223, 47.3300202 ], + [ 8.3653035, 47.3300813 ], + [ 8.3652966, 47.3301528 ], + [ 8.3652821, 47.330221 ], + [ 8.3652304, 47.3303361 ], + [ 8.3651748, 47.3304216 ], + [ 8.3651245, 47.3304829 ], + [ 8.3650618, 47.3305449 ], + [ 8.3649999, 47.3306046 ], + [ 8.3649808, 47.3306017 ], + [ 8.3649664, 47.3305421 ], + [ 8.3649357, 47.3304975 ], + [ 8.3649034, 47.3304575 ], + [ 8.3648747, 47.3304341 ], + [ 8.3648809, 47.3304092 ], + [ 8.3648984, 47.3303707 ] + ], + [ + [ 8.36443, 47.3300788 ], + [ 8.3644655, 47.3301128 ], + [ 8.3644635, 47.3301388 ], + [ 8.3644498, 47.3301626 ], + [ 8.3644253, 47.3301799 ], + [ 8.3643929, 47.3301784 ], + [ 8.3643606, 47.3301834 ], + [ 8.3643179, 47.3302038 ], + [ 8.3642908, 47.33022 ], + [ 8.3642963, 47.3302483 ], + [ 8.3642834, 47.3302668 ], + [ 8.3642521, 47.3302741 ], + [ 8.3642129, 47.330265 ], + [ 8.3641554, 47.3302519 ], + [ 8.3641106, 47.330251 ], + [ 8.3640759, 47.3302572 ], + [ 8.3640557, 47.3302863 ], + [ 8.3640374, 47.3303279 ], + [ 8.3640038, 47.3303524 ], + [ 8.3639536, 47.3303705 ], + [ 8.3639072, 47.3303744 ], + [ 8.3638665, 47.3303718 ], + [ 8.3638272, 47.3303573 ], + [ 8.3637879, 47.3303405 ], + [ 8.3637435, 47.330316 ], + [ 8.3637224, 47.3302955 ], + [ 8.3637162, 47.3302743 ], + [ 8.3637272, 47.3302446 ], + [ 8.3637251, 47.3302204 ], + [ 8.3637573, 47.3302125 ], + [ 8.3637693, 47.3301881 ], + [ 8.3638029, 47.3301648 ], + [ 8.3638597, 47.3301431 ], + [ 8.3638618, 47.3301235 ], + [ 8.363884, 47.3301121 ], + [ 8.3639288, 47.3301118 ], + [ 8.3639692, 47.3301002 ], + [ 8.3639821, 47.3300812 ], + [ 8.3640343, 47.3300754 ], + [ 8.3640685, 47.3300444 ], + [ 8.364118, 47.3300293 ], + [ 8.3641716, 47.3300117 ], + [ 8.364216, 47.3299924 ], + [ 8.364234, 47.3299775 ], + [ 8.3642007, 47.3299736 ], + [ 8.364208, 47.3299623 ], + [ 8.364255, 47.3299472 ], + [ 8.3643021, 47.3299409 ], + [ 8.3643518, 47.3299369 ], + [ 8.3643726, 47.3299793 ], + [ 8.3643881, 47.3300141 ], + [ 8.3644085, 47.3300399 ], + [ 8.36443, 47.3300788 ] + ], + [ + [ 8.3633616, 47.3303002 ], + [ 8.3634127, 47.3303252 ], + [ 8.3634446, 47.3303468 ], + [ 8.3634984, 47.3303375 ], + [ 8.3635367, 47.3303443 ], + [ 8.363557, 47.3303211 ], + [ 8.3635999, 47.3303089 ], + [ 8.3636482, 47.3303221 ], + [ 8.3636876, 47.3303443 ], + [ 8.3636991, 47.3303814 ], + [ 8.3636822, 47.3304082 ], + [ 8.3636472, 47.3304457 ], + [ 8.3636086, 47.3304637 ], + [ 8.3636069, 47.3305046 ], + [ 8.3636273, 47.3305298 ], + [ 8.3636596, 47.3305296 ], + [ 8.3637151, 47.3305238 ], + [ 8.3637649, 47.3305281 ], + [ 8.3638126, 47.3305455 ], + [ 8.36388, 47.3305568 ], + [ 8.3639005, 47.3305465 ], + [ 8.3639031, 47.3305075 ], + [ 8.3639226, 47.3304884 ], + [ 8.3640003, 47.3304736 ], + [ 8.3640616, 47.330469 ], + [ 8.364111, 47.3304922 ], + [ 8.3641579, 47.3305185 ], + [ 8.3642065, 47.3305411 ], + [ 8.3642122, 47.3305777 ], + [ 8.3642298, 47.3305888 ], + [ 8.364269, 47.3305986 ], + [ 8.3643218, 47.3305857 ], + [ 8.3643713, 47.3305723 ], + [ 8.364424, 47.33055 ], + [ 8.3644971, 47.3305098 ], + [ 8.3645688, 47.3304862 ], + [ 8.3646517, 47.3304838 ], + [ 8.3647273, 47.3304903 ], + [ 8.3647999, 47.3305104 ], + [ 8.3648598, 47.3305217 ], + [ 8.3648786, 47.3305505 ], + [ 8.3648801, 47.3305836 ], + [ 8.3648626, 47.330624 ], + [ 8.3648659, 47.3306689 ], + [ 8.3648441, 47.3306974 ], + [ 8.364739, 47.3307592 ], + [ 8.3646624, 47.3307846 ], + [ 8.3645824, 47.3308089 ], + [ 8.3644824, 47.3308322 ], + [ 8.3644316, 47.3308622 ], + [ 8.3643968, 47.3309091 ], + [ 8.3643579, 47.3309154 ], + [ 8.3643238, 47.3309511 ], + [ 8.3642635, 47.3309664 ], + [ 8.3641909, 47.3309876 ], + [ 8.3641154, 47.3309894 ], + [ 8.36402, 47.3309855 ], + [ 8.3638759, 47.3310014 ], + [ 8.3637492, 47.3310142 ], + [ 8.3636655, 47.3310143 ], + [ 8.3635341, 47.3309964 ], + [ 8.363473, 47.3309703 ], + [ 8.3634698, 47.3309337 ], + [ 8.3635004, 47.3309252 ], + [ 8.3635762, 47.3309009 ], + [ 8.3636711, 47.3308747 ], + [ 8.3637222, 47.3308572 ], + [ 8.3636941, 47.330816 ], + [ 8.3635789, 47.3307803 ], + [ 8.3634472, 47.3307459 ], + [ 8.3633785, 47.3307127 ], + [ 8.3633069, 47.3306536 ], + [ 8.3632569, 47.3305966 ], + [ 8.3632278, 47.3305478 ], + [ 8.3632385, 47.3305022 ], + [ 8.3632817, 47.3304599 ], + [ 8.3632934, 47.3304225 ], + [ 8.3632523, 47.3303956 ], + [ 8.3632531, 47.3303501 ], + [ 8.3632972, 47.3303131 ], + [ 8.3633616, 47.3303002 ] + ], + [ + [ 8.3389711, 47.3433747 ], + [ 8.3389979, 47.3433519 ], + [ 8.3390459, 47.3433243 ], + [ 8.339083, 47.3433103 ], + [ 8.3390893, 47.3432818 ], + [ 8.339095, 47.3432604 ], + [ 8.3391064, 47.3432191 ], + [ 8.3391219, 47.3431849 ], + [ 8.3391617, 47.3431618 ], + [ 8.33921, 47.3431643 ], + [ 8.3392608, 47.3432038 ], + [ 8.3392496, 47.3432551 ], + [ 8.3392502, 47.3432921 ], + [ 8.339201599999999, 47.3434328 ], + [ 8.3391819, 47.343485 ], + [ 8.3391557, 47.3435283 ], + [ 8.3391172, 47.3435799 ], + [ 8.3390715, 47.3435985 ], + [ 8.338984, 47.3435971 ], + [ 8.3389131, 47.3435669 ], + [ 8.3388855, 47.3435218 ], + [ 8.3389021, 47.3434911 ], + [ 8.3389483, 47.3434474 ], + [ 8.3389759, 47.3434112 ], + [ 8.3389711, 47.3433747 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "KTAG401", + "country" : "CHE", + "name" : [ + { + "text" : "Reuss", + "lang" : "de-CH" + }, + { + "text" : "Reuss", + "lang" : "fr-CH" + }, + { + "text" : "Reuss", + "lang" : "it-CH" + }, + { + "text" : "Reuss", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "regulationExemption" : "NO", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "schedule" : [ + { + "day" : [ "ANY" ], + "startTime" : "00:00:00.00+01:00", + "endTime" : "00:00:00.00+01:00" + } + ] + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Aargau", + "lang" : "de-CH" + }, + { + "text" : "Canton d'Argovie", + "lang" : "fr-CH" + }, + { + "text" : "Canton Argovia", + "lang" : "it-CH" + }, + { + "text" : "Canton of Aargau", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Departement Bau, Verkehr und Umwelt (BVU)", + "lang" : "de-CH" + }, + { + "text" : "Département de la construction, des transports et de l'environnement (CTE)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento delle costruzioni, dei trasporti e dell'ambiente (CTA)", + "lang" : "it-CH" + }, + { + "text" : "Department of Civil Engineering,Transport and Environment (CTE)", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Sektion Gewässernutzung", + "lang" : "de-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "fr-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "it-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ag.ch/de/verwaltung/bvu/umwelt-natur-landschaft/hochwasserschutz-gewaesser/gewaessernutzung", + "email" : "alg@ag.ch", + "phone" : "0041 62 835 34 50", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8484204, 47.5280924 ], + [ 7.8482194, 47.5280213 ], + [ 7.8480198, 47.5279343 ], + [ 7.84791, 47.5278836 ], + [ 7.8477894, 47.5278432 ], + [ 7.847583, 47.5277318 ], + [ 7.8475687, 47.5278412 ], + [ 7.8473068, 47.527810099999996 ], + [ 7.8468145, 47.5278052 ], + [ 7.8475998, 47.5279181 ], + [ 7.8478691, 47.5279774 ], + [ 7.8482581, 47.528096 ], + [ 7.8484213, 47.5281275 ], + [ 7.8484204, 47.5280924 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns075", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Sonnenberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Sonnenberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Sonnenberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Sonnenberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.7713094, 46.6753829 ], + [ 8.7713005, 46.6752418 ], + [ 8.7712809, 46.6751011 ], + [ 8.7712507, 46.6749614 ], + [ 8.7712099, 46.6748229 ], + [ 8.7711586, 46.6746861 ], + [ 8.7710969, 46.6745514 ], + [ 8.7710251, 46.674419 ], + [ 8.7709434, 46.6742894 ], + [ 8.7708519, 46.6741629 ], + [ 8.7707509, 46.6740399 ], + [ 8.7706407, 46.6739207 ], + [ 8.7705216, 46.6738057 ], + [ 8.7703939, 46.6736951 ], + [ 8.7702579, 46.6735892 ], + [ 8.7701141, 46.6734884 ], + [ 8.7699629, 46.6733929 ], + [ 8.7698046, 46.673303 ], + [ 8.7696396, 46.6732189 ], + [ 8.7694685, 46.6731408 ], + [ 8.7692917, 46.6730691 ], + [ 8.7691097, 46.6730038 ], + [ 8.768923, 46.6729451 ], + [ 8.768732, 46.6728933 ], + [ 8.7685374, 46.6728484 ], + [ 8.7683397, 46.6728105 ], + [ 8.7681393, 46.6727799 ], + [ 8.7679369, 46.6727565 ], + [ 8.7677329, 46.6727404 ], + [ 8.7675281, 46.6727317 ], + [ 8.7673228, 46.6727304 ], + [ 8.7671178, 46.6727365 ], + [ 8.7669134, 46.67275 ], + [ 8.766710400000001, 46.6727708 ], + [ 8.7665093, 46.6727989 ], + [ 8.7663105, 46.6728342 ], + [ 8.7661147, 46.6728766 ], + [ 8.7659225, 46.672926 ], + [ 8.7657342, 46.6729823 ], + [ 8.7655504, 46.6730453 ], + [ 8.7653717, 46.6731148 ], + [ 8.7651986, 46.6731906 ], + [ 8.7650314, 46.6732726 ], + [ 8.7648707, 46.6733605 ], + [ 8.7647169, 46.673454 ], + [ 8.7645704, 46.673553 ], + [ 8.7644317, 46.6736571 ], + [ 8.764301, 46.6737661 ], + [ 8.7641788, 46.6738796 ], + [ 8.7640654, 46.6739974 ], + [ 8.7639612, 46.6741191 ], + [ 8.7638663, 46.6742444 ], + [ 8.7637811, 46.6743729 ], + [ 8.7637057, 46.6745043 ], + [ 8.7636405, 46.6746383 ], + [ 8.7635855, 46.6747744 ], + [ 8.763541, 46.6749123 ], + [ 8.763507, 46.6750517 ], + [ 8.7634836, 46.675192 ], + [ 8.763471, 46.675333 ], + [ 8.7634691, 46.6754743 ], + [ 8.7634779, 46.6756155 ], + [ 8.7634975, 46.6757561 ], + [ 8.7635277, 46.6758959 ], + [ 8.7635685, 46.6760343 ], + [ 8.7636198, 46.6761711 ], + [ 8.7636814, 46.6763059 ], + [ 8.7637532, 46.6764383 ], + [ 8.763834899999999, 46.6765679 ], + [ 8.7639264, 46.6766943 ], + [ 8.7640274, 46.6768174 ], + [ 8.7641376, 46.6769366 ], + [ 8.7642567, 46.6770516 ], + [ 8.7643844, 46.6771622 ], + [ 8.7645203, 46.6772681 ], + [ 8.7646641, 46.6773689 ], + [ 8.7648154, 46.6774644 ], + [ 8.7649737, 46.6775544 ], + [ 8.7651386, 46.6776385 ], + [ 8.7653098, 46.6777165 ], + [ 8.7654866, 46.6777883 ], + [ 8.7656686, 46.6778536 ], + [ 8.7658553, 46.6779123 ], + [ 8.7660463, 46.6779641 ], + [ 8.7662409, 46.678009 ], + [ 8.7664387, 46.6780468 ], + [ 8.7666391, 46.6780775 ], + [ 8.7668415, 46.6781009 ], + [ 8.7670455, 46.678117 ], + [ 8.7672504, 46.6781257 ], + [ 8.7674556, 46.678127 ], + [ 8.7676607, 46.6781209 ], + [ 8.7678651, 46.6781074 ], + [ 8.7680681, 46.6780866 ], + [ 8.7682693, 46.6780585 ], + [ 8.768468, 46.6780232 ], + [ 8.7686638, 46.6779808 ], + [ 8.7688561, 46.6779314 ], + [ 8.7690444, 46.6778751 ], + [ 8.7692282, 46.6778121 ], + [ 8.7694069, 46.6777426 ], + [ 8.7695801, 46.6776667 ], + [ 8.7697472, 46.6775847 ], + [ 8.7699079, 46.6774969 ], + [ 8.7700618, 46.6774033 ], + [ 8.7702082, 46.6773043 ], + [ 8.770347, 46.6772002 ], + [ 8.7704776, 46.6770912 ], + [ 8.7705998, 46.6769777 ], + [ 8.7707132, 46.6768599 ], + [ 8.7708175, 46.6767382 ], + [ 8.770912299999999, 46.6766129 ], + [ 8.7709975, 46.6764844 ], + [ 8.7710729, 46.6763529 ], + [ 8.7711381, 46.676219 ], + [ 8.771193, 46.6760829 ], + [ 8.7712375, 46.6759449 ], + [ 8.7712715, 46.6758056 ], + [ 8.771294900000001, 46.6756652 ], + [ 8.7713075, 46.6755242 ], + [ 8.7713094, 46.6753829 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0107", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Sedrun", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Sedrun", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Sedrun", + "lang" : "it-CH" + }, + { + "text" : "Substation Sedrun", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.1876842, 47.5990879 ], + [ 8.1876767, 47.5989467 ], + [ 8.1876583, 47.598806 ], + [ 8.1876291, 47.5986661 ], + [ 8.1875891, 47.5985275 ], + [ 8.1875384, 47.5983905 ], + [ 8.1874772, 47.5982554 ], + [ 8.1874056, 47.5981227 ], + [ 8.1873238, 47.5979927 ], + [ 8.1872321, 47.5978658 ], + [ 8.1871307, 47.5977423 ], + [ 8.1870199, 47.5976226 ], + [ 8.1869, 47.597507 ], + [ 8.1867713, 47.5973957 ], + [ 8.1866342, 47.5972892 ], + [ 8.186489, 47.5971877 ], + [ 8.1863361, 47.5970914 ], + [ 8.1861761, 47.5970007 ], + [ 8.1860092, 47.5969158 ], + [ 8.185836, 47.5968369 ], + [ 8.1856569, 47.5967642 ], + [ 8.1854724, 47.596698 ], + [ 8.1852831, 47.5966384 ], + [ 8.1850894, 47.5965856 ], + [ 8.1848919, 47.5965397 ], + [ 8.1846911, 47.5965009 ], + [ 8.1844876, 47.5964692 ], + [ 8.1842819, 47.5964448 ], + [ 8.1840746, 47.5964277 ], + [ 8.1838663, 47.5964179 ], + [ 8.1836575, 47.5964156 ], + [ 8.1834488, 47.5964206 ], + [ 8.1832408, 47.596433 ], + [ 8.183034, 47.5964528 ], + [ 8.182829, 47.5964799 ], + [ 8.1826264, 47.5965141 ], + [ 8.1824268, 47.5965555 ], + [ 8.1822306, 47.596604 ], + [ 8.1820384, 47.5966592 ], + [ 8.1818508, 47.5967213 ], + [ 8.1816682, 47.5967898 ], + [ 8.1814912, 47.5968648 ], + [ 8.1813202, 47.5969459 ], + [ 8.181155799999999, 47.5970329 ], + [ 8.1809983, 47.5971257 ], + [ 8.1808482, 47.5972239 ], + [ 8.1807059, 47.5973273 ], + [ 8.1805717, 47.5974355 ], + [ 8.1804462, 47.5975484 ], + [ 8.1803295, 47.5976656 ], + [ 8.1802221, 47.5977867 ], + [ 8.1801242, 47.5979115 ], + [ 8.1800361, 47.5980395 ], + [ 8.179958, 47.5981705 ], + [ 8.1798901, 47.5983041 ], + [ 8.1798327, 47.5984399 ], + [ 8.1797859, 47.5985776 ], + [ 8.1797498, 47.5987167 ], + [ 8.1797244, 47.5988569 ], + [ 8.17971, 47.5989978 ], + [ 8.1797065, 47.5991391 ], + [ 8.179714, 47.5992802 ], + [ 8.1797323, 47.599421 ], + [ 8.1797615, 47.5995608 ], + [ 8.1798015, 47.5996995 ], + [ 8.1798522, 47.5998365 ], + [ 8.1799134, 47.5999715 ], + [ 8.179985, 47.6001042 ], + [ 8.1800667, 47.6002342 ], + [ 8.1801584, 47.6003611 ], + [ 8.1802598, 47.6004846 ], + [ 8.1803706, 47.6006044 ], + [ 8.1804905, 47.60072 ], + [ 8.1806192, 47.6008313 ], + [ 8.1807563, 47.6009378 ], + [ 8.1809015, 47.6010394 ], + [ 8.1810544, 47.6011356 ], + [ 8.1812144, 47.6012263 ], + [ 8.1813813, 47.6013113 ], + [ 8.1815545, 47.6013902 ], + [ 8.1817336, 47.6014628 ], + [ 8.1819181, 47.601529 ], + [ 8.1821075, 47.6015887 ], + [ 8.1823012, 47.6016415 ], + [ 8.1824987, 47.6016874 ], + [ 8.1826995, 47.6017262 ], + [ 8.182903, 47.6017579 ], + [ 8.1831087, 47.601782299999996 ], + [ 8.183316, 47.6017994 ], + [ 8.1835244, 47.6018091 ], + [ 8.1837332, 47.6018115 ], + [ 8.1839419, 47.6018065 ], + [ 8.18415, 47.601794 ], + [ 8.1843568, 47.6017743 ], + [ 8.1845618, 47.6017472 ], + [ 8.1847644, 47.6017129 ], + [ 8.184964, 47.6016715 ], + [ 8.1851602, 47.6016231 ], + [ 8.1853524, 47.6015678 ], + [ 8.18554, 47.6015058 ], + [ 8.1857226, 47.6014372 ], + [ 8.1858997, 47.6013623 ], + [ 8.1860706, 47.6012812 ], + [ 8.1862351, 47.6011941 ], + [ 8.1863926, 47.6011013 ], + [ 8.1865427, 47.6010031 ], + [ 8.186685, 47.6008998 ], + [ 8.1868192, 47.6007915 ], + [ 8.1869447, 47.6006786 ], + [ 8.1870614, 47.6005614 ], + [ 8.1871688, 47.6004403 ], + [ 8.1872667, 47.6003155 ], + [ 8.1873548, 47.6001874 ], + [ 8.1874329, 47.6000564 ], + [ 8.1875007, 47.5999228 ], + [ 8.1875581, 47.599787 ], + [ 8.1876049, 47.5996494 ], + [ 8.187641, 47.5995102 ], + [ 8.1876663, 47.59937 ], + [ 8.1876807, 47.5992291 ], + [ 8.1876842, 47.5990879 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0062", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Leibstadt", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Leibstadt", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Leibstadt", + "lang" : "it-CH" + }, + { + "text" : "Substation Leibstadt", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8786508, 46.2381479 ], + [ 7.8786442999999995, 46.2380067 ], + [ 7.8786272, 46.2378659 ], + [ 7.8785995, 46.237726 ], + [ 7.8785613, 46.2375872 ], + [ 7.8785126, 46.23745 ], + [ 7.8784537, 46.2373148 ], + [ 7.8783847, 46.2371818 ], + [ 7.8783057, 46.2370516 ], + [ 7.878217, 46.2369244 ], + [ 7.8781189, 46.2368007 ], + [ 7.8780114999999995, 46.2366806 ], + [ 7.8778952, 46.2365646 ], + [ 7.8777704, 46.236453 ], + [ 7.8776373, 46.2363461 ], + [ 7.8774963, 46.2362441 ], + [ 7.8773478, 46.2361475 ], + [ 7.8771923, 46.2360563 ], + [ 7.8770301, 46.2359709 ], + [ 7.8768616, 46.2358915 ], + [ 7.8766874, 46.2358184 ], + [ 7.876508, 46.2357517 ], + [ 7.8763237, 46.2356916 ], + [ 7.8761352, 46.2356382 ], + [ 7.8759429, 46.2355918 ], + [ 7.8757473000000005, 46.2355524 ], + [ 7.8755491, 46.2355202 ], + [ 7.8753487, 46.2354952 ], + [ 7.8751467, 46.2354776 ], + [ 7.8749436, 46.2354673 ], + [ 7.8747401, 46.2354644 ], + [ 7.8745366, 46.2354688 ], + [ 7.8743337, 46.2354807 ], + [ 7.8741319999999995, 46.2354999 ], + [ 7.873932, 46.2355264 ], + [ 7.8737343, 46.2355602 ], + [ 7.8735394, 46.2356011 ], + [ 7.8733478, 46.235649 ], + [ 7.8731601, 46.2357037 ], + [ 7.8729769, 46.2357653 ], + [ 7.8727985, 46.2358334 ], + [ 7.8726255, 46.2359079 ], + [ 7.8724583, 46.2359885 ], + [ 7.8722975, 46.2360752 ], + [ 7.8721434, 46.2361675 ], + [ 7.8719964000000004, 46.2362653 ], + [ 7.8718571, 46.2363683 ], + [ 7.8717257, 46.2364763 ], + [ 7.8716027, 46.2365888 ], + [ 7.8714883, 46.2367057 ], + [ 7.8713828, 46.2368266 ], + [ 7.8712867, 46.2369511 ], + [ 7.8712, 46.237079 ], + [ 7.8711231999999995, 46.2372098 ], + [ 7.8710562, 46.2373433 ], + [ 7.8709995, 46.2374789 ], + [ 7.8709530999999995, 46.2376165 ], + [ 7.870917, 46.2377556 ], + [ 7.8708916, 46.2378957 ], + [ 7.8708767, 46.2380366 ], + [ 7.8708725, 46.2381779 ], + [ 7.870879, 46.2383191 ], + [ 7.870896, 46.2384599 ], + [ 7.8709237, 46.2385999 ], + [ 7.8709620000000005, 46.2387387 ], + [ 7.8710106, 46.2388759 ], + [ 7.8710695, 46.2390111 ], + [ 7.8711385, 46.239144 ], + [ 7.8712175, 46.2392743 ], + [ 7.8713061, 46.2394014 ], + [ 7.8714043, 46.2395252 ], + [ 7.8715116, 46.2396453 ], + [ 7.8716279, 46.2397613 ], + [ 7.8717527, 46.2398729 ], + [ 7.8718858, 46.2399798 ], + [ 7.8720268, 46.2400818 ], + [ 7.8721753, 46.2401785 ], + [ 7.8723308, 46.2402696 ], + [ 7.872493, 46.240355 ], + [ 7.8726614999999995, 46.2404344 ], + [ 7.8728356999999995, 46.2405076 ], + [ 7.8730152, 46.2405743 ], + [ 7.8731994, 46.2406344 ], + [ 7.873388, 46.2406877 ], + [ 7.8735803, 46.2407342 ], + [ 7.8737759, 46.2407736 ], + [ 7.8739741, 46.2408058 ], + [ 7.8741746, 46.2408308 ], + [ 7.8743766, 46.2408484 ], + [ 7.8745797, 46.2408587 ], + [ 7.8747831999999995, 46.2408616 ], + [ 7.8749868, 46.2408572 ], + [ 7.8751897, 46.2408453 ], + [ 7.8753914, 46.2408261 ], + [ 7.8755914, 46.2407995 ], + [ 7.8757891, 46.2407658 ], + [ 7.875984, 46.2407249 ], + [ 7.8761756, 46.240677 ], + [ 7.8763632999999995, 46.2406222 ], + [ 7.8765466, 46.2405607 ], + [ 7.876725, 46.2404926 ], + [ 7.876898, 46.2404181 ], + [ 7.8770652, 46.2403374 ], + [ 7.877226, 46.2402508 ], + [ 7.8773801, 46.2401584 ], + [ 7.877527, 46.2400606 ], + [ 7.8776664, 46.2399576 ], + [ 7.8777978, 46.2398496 ], + [ 7.8779208, 46.2397371 ], + [ 7.8780352, 46.2396202 ], + [ 7.8781406, 46.2394993 ], + [ 7.8782368, 46.2393747 ], + [ 7.8783234, 46.2392469 ], + [ 7.8784003, 46.2391161 ], + [ 7.8784672, 46.2389826 ], + [ 7.8785239, 46.2388469 ], + [ 7.8785703, 46.2387094 ], + [ 7.8786062999999995, 46.2385703 ], + [ 7.8786318, 46.2384301 ], + [ 7.8786466, 46.2382892 ], + [ 7.8786508, 46.2381479 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0115", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Stalden", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Stalden", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Stalden", + "lang" : "it-CH" + }, + { + "text" : "Substation Stalden", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.1989319, 47.3057076 ], + [ 8.1989762, 47.3057709 ], + [ 8.1990009, 47.3058134 ], + [ 8.1990254, 47.3059228 ], + [ 8.1990263, 47.3059929 ], + [ 8.1990141, 47.3060467 ], + [ 8.1989816, 47.306115 ], + [ 8.198943, 47.3062136 ], + [ 8.1989119, 47.3063212 ], + [ 8.1988124, 47.3065079 ], + [ 8.1987566, 47.3065599 ], + [ 8.1986645, 47.3066744 ], + [ 8.198645, 47.3067414 ], + [ 8.1986437, 47.3067853 ], + [ 8.1986225, 47.3068706 ], + [ 8.198588, 47.3069252 ], + [ 8.198536, 47.3070637 ], + [ 8.1985129, 47.3071392 ], + [ 8.1985077, 47.3072415 ], + [ 8.1984721, 47.3073538 ], + [ 8.19846, 47.3074161 ], + [ 8.198454, 47.30746 ], + [ 8.1984595, 47.3075229 ], + [ 8.1984578, 47.3076114 ], + [ 8.1984557, 47.307734 ], + [ 8.1984587, 47.3078264 ], + [ 8.1984419, 47.3078862 ], + [ 8.1984169, 47.3079636 ], + [ 8.198378, 47.3080333 ], + [ 8.198338, 47.3080912 ], + [ 8.1983127, 47.3081391 ], + [ 8.1983363, 47.3081771 ], + [ 8.1983514, 47.3081967 ], + [ 8.1983483, 47.3082452 ], + [ 8.1983312, 47.3082852 ], + [ 8.198301, 47.3083188 ], + [ 8.1983044, 47.308364 ], + [ 8.1983156, 47.3084439 ], + [ 8.1983427, 47.3085323 ], + [ 8.1983527, 47.3085899 ], + [ 8.1983714, 47.3086777 ], + [ 8.1983527, 47.3087354 ], + [ 8.1983324, 47.3088155 ], + [ 8.1983165, 47.3088752 ], + [ 8.1982949, 47.3089258 ], + [ 8.1982715, 47.3089803 ], + [ 8.1982482, 47.3090381 ], + [ 8.1982481, 47.309105 ], + [ 8.1982708, 47.3092097 ], + [ 8.1982714, 47.3092582 ], + [ 8.1982713, 47.3093245 ], + [ 8.1982722, 47.30947 ], + [ 8.1982789, 47.3095545 ], + [ 8.1983273, 47.3096473 ], + [ 8.1983781, 47.309708 ], + [ 8.1984584, 47.3097581 ], + [ 8.1985321, 47.3097931 ], + [ 8.1985773, 47.3098131 ], + [ 8.1986347, 47.3098503 ], + [ 8.1986398, 47.3098857 ], + [ 8.1986087, 47.3099153 ], + [ 8.1985858, 47.3099351 ], + [ 8.198591799999999, 47.3099705 ], + [ 8.1986266, 47.3100142 ], + [ 8.1986773, 47.3100644 ], + [ 8.1987513, 47.3101283 ], + [ 8.1988566, 47.3102002 ], + [ 8.1989746, 47.3102601 ], + [ 8.1990501, 47.3102954 ], + [ 8.1991288, 47.3103568 ], + [ 8.199151, 47.3104017 ], + [ 8.1991986, 47.3104483 ], + [ 8.19923, 47.31048 ], + [ 8.1992587, 47.3105241 ], + [ 8.1992841, 47.3105898 ], + [ 8.1993148, 47.3106411 ], + [ 8.1993566, 47.3107411 ], + [ 8.1993804, 47.3108296 ], + [ 8.1994062, 47.3109239 ], + [ 8.1994429, 47.3109928 ], + [ 8.1994436, 47.3110423 ], + [ 8.1994598, 47.3111236 ], + [ 8.1994664, 47.3111868 ], + [ 8.1994496, 47.311254 ], + [ 8.1994302, 47.3113317 ], + [ 8.1994272, 47.3113806 ], + [ 8.1994444, 47.3114639 ], + [ 8.199464, 47.311527 ], + [ 8.1995055, 47.3116055 ], + [ 8.1995396, 47.3116874 ], + [ 8.1995543, 47.3117355 ], + [ 8.1995409, 47.3118379 ], + [ 8.1995383, 47.3119174 ], + [ 8.1995325, 47.3119618 ], + [ 8.1995041, 47.3120095 ], + [ 8.199493499999999, 47.3120474 ], + [ 8.1994917, 47.3121178 ], + [ 8.1994767, 47.3121778 ], + [ 8.1994664, 47.3122417 ], + [ 8.1994599, 47.3123069 ], + [ 8.1994628, 47.3123708 ], + [ 8.1994722, 47.3124352 ], + [ 8.1994713, 47.3124997 ], + [ 8.1994758, 47.3125525 ], + [ 8.1995091, 47.312583599999996 ], + [ 8.1995096, 47.3126174 ], + [ 8.1995178, 47.3126617 ], + [ 8.1995625, 47.3127109 ], + [ 8.1995679, 47.3127578 ], + [ 8.1995541, 47.3128328 ], + [ 8.1995547, 47.3128791 ], + [ 8.1995712, 47.3129142 ], + [ 8.1996352, 47.3129985 ], + [ 8.1996719, 47.3130693 ], + [ 8.1997234, 47.313125 ], + [ 8.1997879, 47.313181900000004 ], + [ 8.1998205, 47.3132319 ], + [ 8.1998841, 47.3132836 ], + [ 8.1999533, 47.3133405 ], + [ 8.2000439, 47.3133803 ], + [ 8.2001626, 47.3134278 ], + [ 8.2002851, 47.3134707 ], + [ 8.200365, 47.313491 ], + [ 8.2004893, 47.313528 ], + [ 8.2005168, 47.3135526 ], + [ 8.2005059, 47.3135794 ], + [ 8.2004696, 47.3135926 ], + [ 8.2004051, 47.3135976 ], + [ 8.2003295, 47.3136176 ], + [ 8.2002357, 47.3136769 ], + [ 8.2001261, 47.3137401 ], + [ 8.2000437, 47.3138052 ], + [ 8.1999624, 47.31388 ], + [ 8.1999285, 47.3139271 ], + [ 8.1998411, 47.3139726 ], + [ 8.1997276, 47.3140222 ], + [ 8.1996223, 47.314062 ], + [ 8.199535, 47.3141101 ], + [ 8.1994915, 47.3141443 ], + [ 8.199476, 47.3141776 ], + [ 8.1994842, 47.3142212 ], + [ 8.1995055, 47.3142686 ], + [ 8.1995186, 47.3143285 ], + [ 8.1995362, 47.3143753 ], + [ 8.199579, 47.3144213 ], + [ 8.1996556, 47.3144645 ], + [ 8.1997275, 47.3145109 ], + [ 8.1997696, 47.3145706 ], + [ 8.1997666, 47.3146221 ], + [ 8.1997514, 47.3146711 ], + [ 8.1997185, 47.3147221 ], + [ 8.1996847, 47.3147829 ], + [ 8.1996507, 47.3148867 ], + [ 8.1996232, 47.3149892 ], + [ 8.1996111, 47.3150551 ], + [ 8.1995981, 47.3151282 ], + [ 8.1995988, 47.3151718 ], + [ 8.1996145, 47.3152173 ], + [ 8.1996445, 47.3152803 ], + [ 8.199685, 47.3153609 ], + [ 8.1997179, 47.3154284 ], + [ 8.1997611, 47.3154972 ], + [ 8.1998125, 47.315549 ], + [ 8.199893, 47.3156065 ], + [ 8.1999599, 47.3156328 ], + [ 8.200004, 47.315639 ], + [ 8.2000455, 47.315657 ], + [ 8.2000941, 47.3157062 ], + [ 8.2001614, 47.3157638 ], + [ 8.2002371, 47.3158135 ], + [ 8.2003079, 47.3158469 ], + [ 8.2003972, 47.3158596 ], + [ 8.200468, 47.3158708 ], + [ 8.200588400000001, 47.3159113 ], + [ 8.2006797, 47.3159377 ], + [ 8.2007693, 47.3159493 ], + [ 8.2008651, 47.3159455 ], + [ 8.200979, 47.3159411 ], + [ 8.2010673, 47.3159649 ], + [ 8.2011535, 47.3159852 ], + [ 8.2012395, 47.3160407 ], + [ 8.2013238, 47.3161202 ], + [ 8.2013535, 47.3161731 ], + [ 8.2013906, 47.3162351 ], + [ 8.201443, 47.3163001 ], + [ 8.2014913, 47.3163467 ], + [ 8.2015737, 47.3164085 ], + [ 8.2017162, 47.316487 ], + [ 8.2018277, 47.3165365 ], + [ 8.2019639, 47.3165753 ], + [ 8.20209, 47.3165877 ], + [ 8.202163, 47.3166177 ], + [ 8.2022528, 47.3166236 ], + [ 8.2023501, 47.3166163 ], + [ 8.202436, 47.3166157 ], + [ 8.2025644, 47.316648 ], + [ 8.2026759, 47.3167207 ], + [ 8.202751, 47.3167666 ], + [ 8.2027902, 47.3168296 ], + [ 8.2028051, 47.3168954 ], + [ 8.2028088, 47.3169433 ], + [ 8.2028555, 47.3169808 ], + [ 8.2028765, 47.3170235 ], + [ 8.2028713, 47.3170593 ], + [ 8.2028477, 47.3171084 ], + [ 8.2028614, 47.3171522 ], + [ 8.2029134, 47.3172039 ], + [ 8.2029214, 47.3172911 ], + [ 8.2029402, 47.3173737 ], + [ 8.2029685, 47.3174694 ], + [ 8.2029858, 47.3175974 ], + [ 8.2029941, 47.3176596 ], + [ 8.2029601, 47.3176977 ], + [ 8.2029067, 47.3177343 ], + [ 8.2028177, 47.3177615 ], + [ 8.202683, 47.3177702 ], + [ 8.2025371, 47.3177544 ], + [ 8.2024414, 47.3177653 ], + [ 8.2023381, 47.3177936 ], + [ 8.2022395, 47.3178076 ], + [ 8.2021288, 47.3178263 ], + [ 8.2020214, 47.3178705 ], + [ 8.2019256, 47.3179263 ], + [ 8.2018895, 47.3179699 ], + [ 8.2018617, 47.3180394 ], + [ 8.2036299, 47.317809 ], + [ 8.2032552, 47.3161912 ], + [ 8.2007317, 47.3149855 ], + [ 8.20108, 47.3136748 ], + [ 8.2003926, 47.3116219 ], + [ 8.1997845, 47.3095732 ], + [ 8.1995728, 47.3074262 ], + [ 8.1999139, 47.3057821 ], + [ 8.1989319, 47.3057076 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "KTAG101", + "country" : "CHE", + "name" : [ + { + "text" : "Hallwilersee, Boniswiler Ried", + "lang" : "de-CH" + }, + { + "text" : "Hallwilersee, Boniswiler Ried", + "lang" : "fr-CH" + }, + { + "text" : "Hallwilersee, Boniswiler Ried", + "lang" : "it-CH" + }, + { + "text" : "Hallwilersee, Boniswiler Ried", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "regulationExemption" : "NO", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "schedule" : [ + { + "day" : [ "ANY" ], + "startTime" : "00:00:00.00+01:00", + "endTime" : "00:00:00.00+01:00" + } + ] + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Aargau", + "lang" : "de-CH" + }, + { + "text" : "Canton d'Argovie", + "lang" : "fr-CH" + }, + { + "text" : "Canton Argovia", + "lang" : "it-CH" + }, + { + "text" : "Canton of Aargau", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Departement Bau, Verkehr und Umwelt (BVU)", + "lang" : "de-CH" + }, + { + "text" : "Département de la construction, des transports et de l'environnement (CTE)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento delle costruzioni, dei trasporti e dell'ambiente (CTA)", + "lang" : "it-CH" + }, + { + "text" : "Department of Civil Engineering,Transport and Environment (CTE)", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Sektion Gewässernutzung", + "lang" : "de-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "fr-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "it-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ag.ch/de/verwaltung/bvu/umwelt-natur-landschaft/hochwasserschutz-gewaesser/gewaessernutzung", + "email" : "alg@ag.ch", + "phone" : "0041 62 835 34 50", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7377114, 47.5272537 ], + [ 7.7376404999999995, 47.5272926 ], + [ 7.7375575, 47.5274094 ], + [ 7.7374716, 47.5274838 ], + [ 7.7373297, 47.5275724 ], + [ 7.7370754999999996, 47.527718 ], + [ 7.7369604, 47.5278014 ], + [ 7.7368583, 47.5278946 ], + [ 7.7366325, 47.5281205 ], + [ 7.736455, 47.5282712 ], + [ 7.7362605, 47.5284265 ], + [ 7.7360593, 47.5286118 ], + [ 7.7359508, 47.5286974 ], + [ 7.7358317, 47.5287765 ], + [ 7.7356974, 47.5288426 ], + [ 7.7354874, 47.5289242 ], + [ 7.7352927000000005, 47.5290426 ], + [ 7.7351306, 47.5291538 ], + [ 7.7352834999999995, 47.5291645 ], + [ 7.7355584, 47.5290986 ], + [ 7.735561, 47.5290888 ], + [ 7.7355647, 47.5290791 ], + [ 7.7355692, 47.5290697 ], + [ 7.7355747, 47.5290604 ], + [ 7.735581, 47.5290514 ], + [ 7.7355882, 47.5290427 ], + [ 7.7355962, 47.5290343 ], + [ 7.735605, 47.5290263 ], + [ 7.7356145, 47.5290187 ], + [ 7.7356248, 47.5290116 ], + [ 7.7356357, 47.5290049 ], + [ 7.7356472, 47.5289987 ], + [ 7.7356593, 47.528993 ], + [ 7.735672, 47.5289879 ], + [ 7.7356850999999995, 47.5289833 ], + [ 7.7358782, 47.5289219 ], + [ 7.7360112, 47.5288458 ], + [ 7.7362009, 47.5287328 ], + [ 7.7362436, 47.5286949 ], + [ 7.7362991999999995, 47.5286208 ], + [ 7.7363387, 47.5285647 ], + [ 7.7364005, 47.5284955 ], + [ 7.7364891, 47.5284347 ], + [ 7.7365904, 47.5284089 ], + [ 7.736671, 47.5283815 ], + [ 7.7366961, 47.5283612 ], + [ 7.7367061, 47.5282989 ], + [ 7.7367293, 47.5282386 ], + [ 7.7368178, 47.528164 ], + [ 7.736961, 47.5280935 ], + [ 7.7370068, 47.5280556 ], + [ 7.7370263999999995, 47.5280099 ], + [ 7.7370352, 47.5279341 ], + [ 7.7371224, 47.5278276 ], + [ 7.7371918, 47.5277994 ], + [ 7.7373, 47.5276969 ], + [ 7.7373791, 47.5276878 ], + [ 7.7375161, 47.5277104 ], + [ 7.737572, 47.5277465 ], + [ 7.7376133, 47.5277466 ], + [ 7.7376337, 47.5277392 ], + [ 7.7376938, 47.5276636 ], + [ 7.7377106, 47.5275754 ], + [ 7.7377067, 47.5275446 ], + [ 7.7376857, 47.5275116 ], + [ 7.7376988, 47.5274891 ], + [ 7.7377295, 47.5274718 ], + [ 7.7377931, 47.5274493 ], + [ 7.7379102, 47.527359 ], + [ 7.7379824, 47.5273293 ], + [ 7.7380594, 47.5273363 ], + [ 7.7381685000000004, 47.5273722 ], + [ 7.7382577, 47.5274065 ], + [ 7.7383898, 47.5274016 ], + [ 7.7384958, 47.5273701 ], + [ 7.7385831, 47.5273013 ], + [ 7.7386478, 47.5272512 ], + [ 7.7386875, 47.5272196 ], + [ 7.7385345999999995, 47.5271936 ], + [ 7.7384488000000005, 47.527181 ], + [ 7.7381709, 47.5272078 ], + [ 7.7377114, 47.5272537 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns283", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Schnüeren", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Schnüeren", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Schnüeren", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Schnüeren", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4737417, 47.4394288 ], + [ 7.4738357, 47.4393053 ], + [ 7.4738662, 47.4392604 ], + [ 7.4738909, 47.4392138 ], + [ 7.4739024, 47.4391838 ], + [ 7.4741163, 47.4391906 ], + [ 7.4741198, 47.4391454 ], + [ 7.4741303, 47.4390023 ], + [ 7.4741501, 47.438958 ], + [ 7.4742428, 47.4389617 ], + [ 7.4744003, 47.4390059 ], + [ 7.4744557, 47.439006 ], + [ 7.4745232999999995, 47.4389023 ], + [ 7.4746063, 47.4387195 ], + [ 7.4747797, 47.4383893 ], + [ 7.4748146, 47.4382383 ], + [ 7.4746694, 47.4382274 ], + [ 7.4744402, 47.4382178 ], + [ 7.4743728, 47.438204999999996 ], + [ 7.4742558, 47.4381927 ], + [ 7.4742655, 47.438157 ], + [ 7.4742738, 47.4381398 ], + [ 7.4742844, 47.4381231 ], + [ 7.4742971, 47.4381071 ], + [ 7.4739221, 47.4380264 ], + [ 7.4733318, 47.4379073 ], + [ 7.4729705, 47.4379111 ], + [ 7.4726325, 47.4379287 ], + [ 7.4725228, 47.4379334 ], + [ 7.472724, 47.4383586 ], + [ 7.4727585, 47.4384412 ], + [ 7.4727948, 47.4384422 ], + [ 7.4731321, 47.4383681 ], + [ 7.4732269, 47.4385319 ], + [ 7.4732761, 47.4386848 ], + [ 7.4732136, 47.4388424 ], + [ 7.4732153, 47.4388514 ], + [ 7.4732159, 47.4389996 ], + [ 7.4732876, 47.4391878 ], + [ 7.4733815, 47.4392203 ], + [ 7.4735556, 47.4392358 ], + [ 7.4736313, 47.4393703 ], + [ 7.4737417, 47.4394288 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns331", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Forstweid", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Forstweid", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Forstweid", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Forstweid", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7445181, 47.4722775 ], + [ 7.7445423, 47.472326 ], + [ 7.7445793, 47.4724291 ], + [ 7.7445901, 47.4724451 ], + [ 7.7445994, 47.4724616 ], + [ 7.744607, 47.4724785 ], + [ 7.7446097, 47.4724855 ], + [ 7.7446152999999995, 47.472501199999996 ], + [ 7.7446237, 47.4725245 ], + [ 7.7446303, 47.4725423 ], + [ 7.7446366, 47.472559 ], + [ 7.7446427, 47.4725739 ], + [ 7.7446469, 47.4725837 ], + [ 7.7446532999999995, 47.4725973 ], + [ 7.7446617, 47.4726147 ], + [ 7.7446706, 47.4726325 ], + [ 7.74468, 47.4726506 ], + [ 7.7447036, 47.4726955 ], + [ 7.7447047, 47.4726976 ], + [ 7.7447376, 47.4727618 ], + [ 7.7447749, 47.4728339 ], + [ 7.7447753, 47.4728347 ], + [ 7.7447978, 47.4728786 ], + [ 7.7448238, 47.4729289 ], + [ 7.7448332, 47.4729466 ], + [ 7.7448481000000005, 47.4729737 ], + [ 7.7448571, 47.4729898 ], + [ 7.7448827, 47.4730344 ], + [ 7.744903, 47.4730687 ], + [ 7.7449335, 47.4731193 ], + [ 7.7449411999999995, 47.4731316 ], + [ 7.7449490999999995, 47.4731436 ], + [ 7.7449572, 47.4731556 ], + [ 7.7449682, 47.4731712 ], + [ 7.7450138, 47.4732346 ], + [ 7.7450487, 47.4732826 ], + [ 7.7450616, 47.4732998 ], + [ 7.7450738999999995, 47.4733156 ], + [ 7.7450829, 47.4733268 ], + [ 7.7450878, 47.4733328 ], + [ 7.7450942, 47.4733403 ], + [ 7.7451039999999995, 47.4733514 ], + [ 7.7451211, 47.4733704 ], + [ 7.7451621, 47.4734158 ], + [ 7.7452191, 47.4734782 ], + [ 7.7452369, 47.4734973 ], + [ 7.7452475, 47.4735083 ], + [ 7.7452617, 47.4735223 ], + [ 7.7452778, 47.4735376 ], + [ 7.7452923, 47.4735511 ], + [ 7.74531, 47.4735675 ], + [ 7.7453739, 47.4736255 ], + [ 7.745375, 47.4736265 ], + [ 7.7454025, 47.4736517 ], + [ 7.7454198, 47.4736672 ], + [ 7.7454298999999995, 47.4736761 ], + [ 7.7454395, 47.4736842 ], + [ 7.7454502, 47.4736931 ], + [ 7.7454778, 47.473715 ], + [ 7.7455289, 47.4737544 ], + [ 7.7455499, 47.4737704 ], + [ 7.7455508, 47.4737711 ], + [ 7.7455513, 47.4737715 ], + [ 7.7455768, 47.473791 ], + [ 7.7456119, 47.4738176 ], + [ 7.7456172, 47.4738214 ], + [ 7.7456317, 47.4738318 ], + [ 7.7456379, 47.473836 ], + [ 7.7456536, 47.4738466 ], + [ 7.7456946, 47.4738732 ], + [ 7.7456954, 47.4738738 ], + [ 7.7457476, 47.4739079 ], + [ 7.7457645, 47.4739189 ], + [ 7.7458156, 47.4739514 ], + [ 7.7458661, 47.4739829 ], + [ 7.7458724, 47.4739867 ], + [ 7.7458811999999995, 47.4739919 ], + [ 7.7458981, 47.4740016 ], + [ 7.7459188, 47.4740134 ], + [ 7.7459578, 47.474035 ], + [ 7.7460421, 47.4740814 ], + [ 7.7460448, 47.4740829 ], + [ 7.7460985, 47.474113 ], + [ 7.7461363, 47.4741308 ], + [ 7.7461607, 47.474142 ], + [ 7.7461776, 47.4741495 ], + [ 7.746235, 47.4741743 ], + [ 7.7462846, 47.4741957 ], + [ 7.7463383, 47.4742187 ], + [ 7.7463893, 47.4742401 ], + [ 7.7465079, 47.4742893 ], + [ 7.7465103, 47.4742903 ], + [ 7.746543, 47.4743042 ], + [ 7.7465473, 47.474306 ], + [ 7.7465732, 47.4743172 ], + [ 7.7465759, 47.4743184 ], + [ 7.7466124, 47.4743345 ], + [ 7.7466152, 47.4743357 ], + [ 7.7466159, 47.4743361 ], + [ 7.7466573, 47.4743548 ], + [ 7.7467378, 47.4743906 ], + [ 7.7468018, 47.4744188 ], + [ 7.7468035, 47.4744195 ], + [ 7.7468979000000004, 47.4744615 ], + [ 7.7469525, 47.4744857 ], + [ 7.7469551, 47.4744868 ], + [ 7.7469558, 47.4744871 ], + [ 7.7469783, 47.4744973 ], + [ 7.7469849, 47.4745003 ], + [ 7.7469922, 47.4745038 ], + [ 7.7469968, 47.474506 ], + [ 7.7470164, 47.4745155 ], + [ 7.7470222, 47.4745183 ], + [ 7.747056, 47.4745354 ], + [ 7.7470569, 47.4745359 ], + [ 7.7471367, 47.4745763 ], + [ 7.747138, 47.474577 ], + [ 7.7472441, 47.4746313 ], + [ 7.7472453, 47.4746319 ], + [ 7.747248, 47.4746333 ], + [ 7.7472886, 47.4746547 ], + [ 7.7472902, 47.4746555 ], + [ 7.7473094, 47.4746657 ], + [ 7.7473125, 47.4746674 ], + [ 7.7473214, 47.4746722 ], + [ 7.747325, 47.4746742 ], + [ 7.7473563, 47.4746915 ], + [ 7.7473591, 47.4746931 ], + [ 7.7474129, 47.4747235 ], + [ 7.7474139, 47.4747241 ], + [ 7.747517, 47.4747829 ], + [ 7.7475211999999996, 47.4747853 ], + [ 7.747552, 47.4748033 ], + [ 7.7475529, 47.4748039 ], + [ 7.7475543, 47.4748047 ], + [ 7.7475996, 47.4748317 ], + [ 7.7476027, 47.4748335 ], + [ 7.7476123, 47.4748394 ], + [ 7.7476164, 47.4748419 ], + [ 7.7476261, 47.474848 ], + [ 7.7476291, 47.4748499 ], + [ 7.7476386999999995, 47.474856 ], + [ 7.7476418, 47.474858 ], + [ 7.7476609, 47.4748705 ], + [ 7.7476643, 47.4748727 ], + [ 7.7477117, 47.4749044 ], + [ 7.7477127, 47.4749051 ], + [ 7.7477129, 47.4749052 ], + [ 7.7478546999999995, 47.4750007 ], + [ 7.7478565, 47.4750019 ], + [ 7.7478846, 47.4750211 ], + [ 7.7478877, 47.4750232 ], + [ 7.7479061, 47.4750361 ], + [ 7.7479107, 47.4750393 ], + [ 7.7479572, 47.4750729 ], + [ 7.7479718, 47.4750833 ], + [ 7.7479887, 47.4750744 ], + [ 7.7480389, 47.4750475 ], + [ 7.7480587, 47.4750368 ], + [ 7.7480604, 47.4750358 ], + [ 7.7480781, 47.4750263 ], + [ 7.7480907, 47.4750194 ], + [ 7.7480934, 47.4750179 ], + [ 7.7481368, 47.4749945 ], + [ 7.7481724, 47.4749749 ], + [ 7.7481849, 47.4749677 ], + [ 7.7482068, 47.474955 ], + [ 7.7482105, 47.4749529 ], + [ 7.7482277, 47.4749432 ], + [ 7.7482451999999995, 47.4749329 ], + [ 7.7482711, 47.4749171 ], + [ 7.7482993, 47.4748994 ], + [ 7.7483018, 47.4748978 ], + [ 7.7483047, 47.474896 ], + [ 7.7483134, 47.4748906 ], + [ 7.748317, 47.4748884 ], + [ 7.748326, 47.474883 ], + [ 7.7483265, 47.4748827 ], + [ 7.7483315, 47.4748798 ], + [ 7.7483406, 47.4748745 ], + [ 7.7483473, 47.4748707 ], + [ 7.748355, 47.4748664 ], + [ 7.74836, 47.4748637 ], + [ 7.7483678, 47.4748595 ], + [ 7.7483712, 47.4748577 ], + [ 7.7483719, 47.4748573 ], + [ 7.7483787, 47.4748538 ], + [ 7.7483781, 47.474843 ], + [ 7.7483788, 47.4748254 ], + [ 7.7483813, 47.4748078 ], + [ 7.7483854, 47.4747904 ], + [ 7.7483912, 47.4747732 ], + [ 7.7484009, 47.4747474 ], + [ 7.7484014, 47.4747461 ], + [ 7.7484018, 47.474745 ], + [ 7.7484101, 47.4747234 ], + [ 7.7484105, 47.4747225 ], + [ 7.7484109, 47.4747214 ], + [ 7.7484164, 47.4747074 ], + [ 7.7484169, 47.4747061 ], + [ 7.7484342999999996, 47.4746632 ], + [ 7.7484345999999995, 47.4746623 ], + [ 7.7484528, 47.4746178 ], + [ 7.748454, 47.4746151 ], + [ 7.7484607, 47.4745994 ], + [ 7.7484614, 47.4745977 ], + [ 7.748478, 47.4745597 ], + [ 7.7484828, 47.4745483 ], + [ 7.748502, 47.4745012 ], + [ 7.7485174, 47.4744623 ], + [ 7.7485184, 47.4744598 ], + [ 7.7485315, 47.4744281 ], + [ 7.7485327, 47.4744254 ], + [ 7.7485423, 47.4744029 ], + [ 7.7485433, 47.4744006 ], + [ 7.7485633, 47.4743556 ], + [ 7.7485724, 47.4743346 ], + [ 7.7485728, 47.4743337 ], + [ 7.7485926, 47.4742889 ], + [ 7.7486014, 47.4742681 ], + [ 7.7486027, 47.4742653 ], + [ 7.7486155, 47.4742365 ], + [ 7.748631, 47.4742004 ], + [ 7.7486314, 47.4741995 ], + [ 7.748641, 47.4741774 ], + [ 7.7486429, 47.4741731 ], + [ 7.7486591, 47.4741328 ], + [ 7.7486674, 47.4741117 ], + [ 7.7486681, 47.4741102 ], + [ 7.7486781, 47.4740853 ], + [ 7.7486961999999995, 47.4740396 ], + [ 7.7487129, 47.4739954 ], + [ 7.7487132, 47.4739945 ], + [ 7.7487227, 47.4739697 ], + [ 7.748729, 47.4739531 ], + [ 7.7487337, 47.4739402 ], + [ 7.7487393, 47.4739237 ], + [ 7.7487417, 47.4739161 ], + [ 7.7487463, 47.4739005 ], + [ 7.748749, 47.4738906 ], + [ 7.7487518, 47.4738793 ], + [ 7.7487563, 47.4738592 ], + [ 7.7487566, 47.4738579 ], + [ 7.7487574, 47.4738528 ], + [ 7.7487474, 47.4738411 ], + [ 7.7487317000000004, 47.4738233 ], + [ 7.7487083, 47.4737974 ], + [ 7.7486786, 47.473765 ], + [ 7.7486776, 47.4737639 ], + [ 7.7486404, 47.4737229 ], + [ 7.7486211, 47.4737018 ], + [ 7.7486103, 47.4736901 ], + [ 7.7485614, 47.4736384 ], + [ 7.7485608, 47.4736378 ], + [ 7.7485283, 47.4736032 ], + [ 7.7485093, 47.4735833 ], + [ 7.748499, 47.4735727 ], + [ 7.7484955, 47.4735693 ], + [ 7.7484924, 47.4735663 ], + [ 7.7484902, 47.4735643 ], + [ 7.7484725999999995, 47.4735484 ], + [ 7.7484607, 47.4735378 ], + [ 7.7484484, 47.473527 ], + [ 7.748439, 47.4735192 ], + [ 7.7484287, 47.4735108 ], + [ 7.7484085, 47.4734948 ], + [ 7.7484064, 47.4734932 ], + [ 7.7483899, 47.4734799 ], + [ 7.7483716, 47.4734655 ], + [ 7.7483688, 47.4734633 ], + [ 7.7483541, 47.4734514 ], + [ 7.7483372, 47.4734383 ], + [ 7.7483214, 47.4734262 ], + [ 7.7483153, 47.4734216 ], + [ 7.7482694, 47.4733883 ], + [ 7.7482203, 47.4733534 ], + [ 7.7481769, 47.4733235 ], + [ 7.7481731, 47.4733208 ], + [ 7.7481603, 47.4733117 ], + [ 7.7481558, 47.4733084 ], + [ 7.7481496, 47.4733038 ], + [ 7.7481442, 47.4732998 ], + [ 7.748136, 47.4732935 ], + [ 7.7481358, 47.4732934 ], + [ 7.7481311999999996, 47.4732898 ], + [ 7.7481194, 47.4732804 ], + [ 7.7481157, 47.4732774 ], + [ 7.7481079, 47.473271 ], + [ 7.7481046, 47.4732684 ], + [ 7.7480856, 47.4732524 ], + [ 7.7480805, 47.473248 ], + [ 7.7480797, 47.4732473 ], + [ 7.7480723, 47.4732407 ], + [ 7.7480671, 47.4732361 ], + [ 7.7480431, 47.4732139 ], + [ 7.748041, 47.4732119 ], + [ 7.7480165, 47.4731889 ], + [ 7.7480149, 47.4731873 ], + [ 7.7480017, 47.4731748 ], + [ 7.7479869, 47.473161 ], + [ 7.747977, 47.4731521 ], + [ 7.7479493999999995, 47.4731277 ], + [ 7.7479445, 47.4731235 ], + [ 7.7479289, 47.4731103 ], + [ 7.7479268, 47.4731085 ], + [ 7.7479192, 47.473102 ], + [ 7.747917, 47.4731001 ], + [ 7.7479169, 47.4731 ], + [ 7.7479040999999995, 47.4730888 ], + [ 7.747883, 47.4730707 ], + [ 7.7478807, 47.4730686 ], + [ 7.7478805, 47.4730685 ], + [ 7.747875, 47.4730637 ], + [ 7.7478705, 47.4730596 ], + [ 7.7478615, 47.4730514 ], + [ 7.7478584, 47.4730485 ], + [ 7.7478555, 47.4730458 ], + [ 7.7478497, 47.4730453 ], + [ 7.7478439, 47.4730448 ], + [ 7.7478438, 47.4730448 ], + [ 7.7478374, 47.4730442 ], + [ 7.7478358, 47.4730441 ], + [ 7.7478351, 47.4730441 ], + [ 7.747816, 47.4730441 ], + [ 7.7477778, 47.4730442 ], + [ 7.7477575, 47.4730443 ], + [ 7.7477559, 47.4730443 ], + [ 7.7477539, 47.4730445 ], + [ 7.7477488, 47.473045 ], + [ 7.7477468, 47.4730452 ], + [ 7.7477369, 47.473046 ], + [ 7.7477317, 47.4730464 ], + [ 7.747723, 47.473047 ], + [ 7.7477177, 47.4730473 ], + [ 7.7477118, 47.4730476 ], + [ 7.7477065, 47.4730479 ], + [ 7.7477052, 47.473048 ], + [ 7.7477029, 47.4730481 ], + [ 7.7476936, 47.4730485 ], + [ 7.7476892, 47.473049 ], + [ 7.7476842, 47.4730495 ], + [ 7.747679, 47.47305 ], + [ 7.7476702, 47.4730509 ], + [ 7.7476614, 47.4730521 ], + [ 7.7476537, 47.473053 ], + [ 7.7476488, 47.4730536 ], + [ 7.7476414, 47.4730544 ], + [ 7.7476316, 47.4730554 ], + [ 7.747622, 47.4730567 ], + [ 7.7476138, 47.4730577 ], + [ 7.7476089, 47.4730583 ], + [ 7.7476008, 47.4730592 ], + [ 7.7475897, 47.4730603 ], + [ 7.7475784999999995, 47.4730617 ], + [ 7.7475678, 47.4730629 ], + [ 7.7475626, 47.4730635 ], + [ 7.7475548, 47.4730643 ], + [ 7.7475537, 47.4730644 ], + [ 7.7475485, 47.4730648 ], + [ 7.7475444, 47.4730652 ], + [ 7.7475341, 47.473066 ], + [ 7.7475235, 47.4730672 ], + [ 7.7475135, 47.4730682 ], + [ 7.7475106, 47.4730685 ], + [ 7.7475055, 47.4730689 ], + [ 7.7474941, 47.4730698 ], + [ 7.7474889000000005, 47.4730701 ], + [ 7.7474782, 47.4730708 ], + [ 7.7474677, 47.4730713 ], + [ 7.7474667, 47.4730713 ], + [ 7.7474625, 47.4730715 ], + [ 7.7474558, 47.4730718 ], + [ 7.747451, 47.4730723 ], + [ 7.7474454999999995, 47.4730728 ], + [ 7.7474416, 47.4730732 ], + [ 7.7474343, 47.4730738 ], + [ 7.7474288, 47.4730743 ], + [ 7.7474214, 47.4730748 ], + [ 7.7474158, 47.4730752 ], + [ 7.7474124, 47.4730754 ], + [ 7.7474036, 47.4730759 ], + [ 7.7473978, 47.4730765 ], + [ 7.7473887999999995, 47.4730775 ], + [ 7.7473835, 47.473078 ], + [ 7.7473822, 47.4730781 ], + [ 7.7473745, 47.4730787 ], + [ 7.7473691, 47.4730792 ], + [ 7.7473634, 47.4730796 ], + [ 7.7473534, 47.4730803 ], + [ 7.7473464, 47.4730811 ], + [ 7.7473371, 47.473082 ], + [ 7.7473317, 47.4730826 ], + [ 7.7473293, 47.4730828 ], + [ 7.7473225, 47.4730834 ], + [ 7.7473171, 47.4730838 ], + [ 7.7473105, 47.4730843 ], + [ 7.7472977, 47.4730852 ], + [ 7.7472871, 47.4730863 ], + [ 7.7472809, 47.4730869 ], + [ 7.747274, 47.4730875 ], + [ 7.7472683, 47.4730879 ], + [ 7.7472562, 47.4730888 ], + [ 7.7472503, 47.4730891 ], + [ 7.7472435, 47.4730895 ], + [ 7.7472415, 47.4730895 ], + [ 7.7472356, 47.4730898 ], + [ 7.7472289, 47.4730901 ], + [ 7.7472229, 47.4730903 ], + [ 7.7472182, 47.4730904 ], + [ 7.7472121, 47.4730905 ], + [ 7.7472078, 47.4730906 ], + [ 7.7471955, 47.4730908 ], + [ 7.7471935, 47.4730909 ], + [ 7.7471768, 47.4730911 ], + [ 7.7471687, 47.4730912 ], + [ 7.7471676, 47.4730913 ], + [ 7.7471548, 47.4730919 ], + [ 7.7471536, 47.473092 ], + [ 7.7471469, 47.473092199999996 ], + [ 7.7471406, 47.4730925 ], + [ 7.7471354, 47.4730926 ], + [ 7.7471291, 47.4730928 ], + [ 7.7471239, 47.4730929 ], + [ 7.7471112, 47.4730931 ], + [ 7.7471069, 47.4730932 ], + [ 7.7470942, 47.4730933 ], + [ 7.7470919, 47.4730934 ], + [ 7.7470792, 47.4730934 ], + [ 7.7470776, 47.4730934 ], + [ 7.7470199, 47.4730937 ], + [ 7.747019, 47.4730937 ], + [ 7.7470175999999995, 47.4730937 ], + [ 7.746992, 47.4730937 ], + [ 7.7469869, 47.4730937 ], + [ 7.7469741, 47.4730936 ], + [ 7.7469689, 47.4730935 ], + [ 7.7469626, 47.4730934 ], + [ 7.7469574, 47.4730933 ], + [ 7.7469511, 47.4730931 ], + [ 7.7469441, 47.4730929 ], + [ 7.7469379, 47.4730926 ], + [ 7.7469358, 47.4730926 ], + [ 7.7469286, 47.473092199999996 ], + [ 7.7469224, 47.4730919 ], + [ 7.7469101, 47.4730911 ], + [ 7.746904, 47.4730906 ], + [ 7.7468975, 47.4730901 ], + [ 7.7468908, 47.4730895 ], + [ 7.7468791, 47.4730883 ], + [ 7.7468628, 47.4730871 ], + [ 7.7468561, 47.4730866 ], + [ 7.7468509, 47.4730861 ], + [ 7.7468465, 47.4730857 ], + [ 7.7468288, 47.4730841 ], + [ 7.7468173, 47.4730833 ], + [ 7.7468142, 47.473083 ], + [ 7.746809, 47.4730826 ], + [ 7.7468031, 47.4730821 ], + [ 7.7468017, 47.473082 ], + [ 7.7467965, 47.4730816 ], + [ 7.7467876, 47.4730807 ], + [ 7.7467707, 47.4730789 ], + [ 7.7467643, 47.4730782 ], + [ 7.7467459, 47.4730761 ], + [ 7.7467369, 47.473075 ], + [ 7.7467323, 47.4730744 ], + [ 7.7467226, 47.473073 ], + [ 7.7467153, 47.4730719 ], + [ 7.7467093, 47.473071 ], + [ 7.746694, 47.4730685 ], + [ 7.7466891, 47.4730677 ], + [ 7.7466851, 47.473067 ], + [ 7.7466802999999995, 47.4730662 ], + [ 7.7466771, 47.4730656 ], + [ 7.7466669, 47.4730637 ], + [ 7.7466617, 47.4730627 ], + [ 7.7466405, 47.4730586 ], + [ 7.7466318, 47.473057 ], + [ 7.746626, 47.4730559 ], + [ 7.7466159, 47.473054 ], + [ 7.7466132, 47.4730534 ], + [ 7.7466004, 47.4730509 ], + [ 7.7465951, 47.4730499 ], + [ 7.7465862, 47.4730483 ], + [ 7.7465809, 47.4730473 ], + [ 7.7465737, 47.4730459 ], + [ 7.7465706999999995, 47.4730453 ], + [ 7.7465546, 47.4730421 ], + [ 7.7465482, 47.4730409 ], + [ 7.7465387, 47.4730392 ], + [ 7.7465311, 47.4730377 ], + [ 7.7465209999999995, 47.4730358 ], + [ 7.7465154, 47.4730346 ], + [ 7.7465054, 47.4730325 ], + [ 7.7465021, 47.4730318 ], + [ 7.7464921, 47.4730297 ], + [ 7.7464894, 47.4730291 ], + [ 7.7464694, 47.4730247 ], + [ 7.7464671, 47.4730242 ], + [ 7.7464374, 47.4730175 ], + [ 7.7464361, 47.4730172 ], + [ 7.7464349, 47.4730169 ], + [ 7.7464247, 47.4730146 ], + [ 7.746422, 47.473014 ], + [ 7.746412, 47.4730116 ], + [ 7.7464078, 47.4730106 ], + [ 7.746398, 47.4730082 ], + [ 7.7463931, 47.473007 ], + [ 7.7463887, 47.4730059 ], + [ 7.7463809, 47.473004 ], + [ 7.7463727, 47.473002 ], + [ 7.7463632, 47.4729996 ], + [ 7.7463423, 47.4729944 ], + [ 7.7463374, 47.4729931 ], + [ 7.7463207, 47.4729888 ], + [ 7.7463184, 47.4729882 ], + [ 7.7463018, 47.4729838 ], + [ 7.7463006, 47.4729835 ], + [ 7.746284, 47.4729791 ], + [ 7.7462822, 47.4729786 ], + [ 7.7462656, 47.4729741 ], + [ 7.7462621, 47.4729732 ], + [ 7.7462613000000005, 47.4729729 ], + [ 7.7462477, 47.4729691 ], + [ 7.7462428, 47.4729677 ], + [ 7.746236, 47.4729658 ], + [ 7.7462283, 47.4729635 ], + [ 7.7462187, 47.4729605 ], + [ 7.7462125, 47.4729586 ], + [ 7.7462097, 47.4729577 ], + [ 7.7462056, 47.4729563 ], + [ 7.7462021, 47.4729552 ], + [ 7.7461982, 47.4729538 ], + [ 7.7461922, 47.4729518 ], + [ 7.7461856000000004, 47.4729494 ], + [ 7.7461823, 47.4729482 ], + [ 7.7461692, 47.4729435 ], + [ 7.7461643, 47.4729417 ], + [ 7.7461488, 47.4729359 ], + [ 7.7461459, 47.4729348 ], + [ 7.7461428, 47.4729337 ], + [ 7.7461298, 47.4729289 ], + [ 7.7461225, 47.4729261 ], + [ 7.7461217, 47.4729258 ], + [ 7.7461114, 47.4729218 ], + [ 7.7461057, 47.4729196 ], + [ 7.746103, 47.4729185 ], + [ 7.7460929, 47.4729142 ], + [ 7.7460879, 47.4729121 ], + [ 7.7460824, 47.4729096 ], + [ 7.746077, 47.4729072 ], + [ 7.7460647, 47.4729014 ], + [ 7.7460594, 47.4728989 ], + [ 7.7460496, 47.4728942 ], + [ 7.7460429, 47.4728909 ], + [ 7.7460298, 47.4728843 ], + [ 7.7460185, 47.4728787 ], + [ 7.7460168, 47.4728779 ], + [ 7.7460056, 47.4728723 ], + [ 7.7460004, 47.4728698 ], + [ 7.7459894, 47.4728646 ], + [ 7.7459871, 47.4728634 ], + [ 7.7459772000000005, 47.4728587 ], + [ 7.7459724, 47.4728564 ], + [ 7.7459676, 47.472854 ], + [ 7.745965, 47.4728527 ], + [ 7.7459492999999995, 47.4728448 ], + [ 7.7459476, 47.4728439 ], + [ 7.7459415, 47.4728408 ], + [ 7.7459393, 47.4728397 ], + [ 7.7459362, 47.4728381 ], + [ 7.7459315, 47.4728356 ], + [ 7.745925, 47.4728321 ], + [ 7.7459131, 47.4728256 ], + [ 7.7459061, 47.4728216 ], + [ 7.7459014, 47.4728189 ], + [ 7.7458978, 47.4728168 ], + [ 7.7458948, 47.472815 ], + [ 7.7458901000000004, 47.4728122 ], + [ 7.7458852, 47.4728093 ], + [ 7.7458806, 47.4728064 ], + [ 7.7458758, 47.4728033 ], + [ 7.7458666, 47.4727974 ], + [ 7.7458623, 47.4727946 ], + [ 7.7458487, 47.4727856 ], + [ 7.7458466999999995, 47.4727842 ], + [ 7.7458465, 47.4727841 ], + [ 7.7457877, 47.4727445 ], + [ 7.7457856, 47.4727431 ], + [ 7.7457767, 47.472737 ], + [ 7.7457736, 47.4727348 ], + [ 7.7457648, 47.4727287 ], + [ 7.745761, 47.472726 ], + [ 7.7457566, 47.4727229 ], + [ 7.745753, 47.4727202 ], + [ 7.7457488, 47.4727171 ], + [ 7.7457439, 47.4727134 ], + [ 7.7457398, 47.4727103 ], + [ 7.7457396, 47.4727102 ], + [ 7.745736, 47.4727073 ], + [ 7.7457232, 47.4726972 ], + [ 7.7457197, 47.4726944 ], + [ 7.7457162, 47.4726916 ], + [ 7.7457119, 47.472688 ], + [ 7.7457085, 47.4726852 ], + [ 7.7457038, 47.4726812 ], + [ 7.7456871, 47.4726666 ], + [ 7.7456866, 47.4726662 ], + [ 7.7456859, 47.4726655 ], + [ 7.7456748, 47.4726557 ], + [ 7.7456666, 47.4726489 ], + [ 7.7456641, 47.4726468 ], + [ 7.7456608, 47.472644 ], + [ 7.7456585, 47.4726421 ], + [ 7.7456504, 47.4726351 ], + [ 7.7456498, 47.4726345 ], + [ 7.7456409, 47.4726272 ], + [ 7.7456375, 47.4726243 ], + [ 7.7456341, 47.4726215 ], + [ 7.7456313, 47.4726191 ], + [ 7.7456192999999995, 47.4726086 ], + [ 7.7456034, 47.4725952 ], + [ 7.7456012, 47.4725933 ], + [ 7.74559, 47.4725836 ], + [ 7.7455888, 47.4725825 ], + [ 7.7455868, 47.4725807 ], + [ 7.7455814, 47.4725759 ], + [ 7.7455755, 47.4725705 ], + [ 7.7455684, 47.4725638 ], + [ 7.7455645, 47.4725601 ], + [ 7.7455576, 47.4725534 ], + [ 7.7455549999999995, 47.4725508 ], + [ 7.7455415, 47.4725374 ], + [ 7.7455408, 47.4725366 ], + [ 7.7455403, 47.4725361 ], + [ 7.7454854, 47.4724806 ], + [ 7.7454461, 47.4724411 ], + [ 7.7454339999999995, 47.4724289 ], + [ 7.7454286, 47.4724236 ], + [ 7.7454217, 47.472417 ], + [ 7.7454178, 47.4724132 ], + [ 7.7454174, 47.4724127 ], + [ 7.7454149, 47.4724102 ], + [ 7.7454113, 47.4724065 ], + [ 7.7454024, 47.4723972 ], + [ 7.7453975, 47.4723921 ], + [ 7.7453534, 47.4723474 ], + [ 7.7453517, 47.4723457 ], + [ 7.7453451, 47.4723389 ], + [ 7.745343, 47.4723368 ], + [ 7.7453366, 47.47233 ], + [ 7.7453342, 47.4723274 ], + [ 7.7453331, 47.4723263 ], + [ 7.7453302, 47.4723233 ], + [ 7.7453283, 47.4723214 ], + [ 7.7453259, 47.4723189 ], + [ 7.7453229, 47.4723158 ], + [ 7.7453214, 47.4723141 ], + [ 7.7453159, 47.4723086 ], + [ 7.745313, 47.4723055 ], + [ 7.7453106, 47.472303 ], + [ 7.7453067, 47.4722989 ], + [ 7.7452949, 47.4722859 ], + [ 7.7452927, 47.4722835 ], + [ 7.7452889, 47.4722792 ], + [ 7.7452855, 47.4722753 ], + [ 7.7452853, 47.4722751 ], + [ 7.7452809, 47.47227 ], + [ 7.7452749, 47.4722627 ], + [ 7.7452678, 47.4722538 ], + [ 7.7452644, 47.4722495 ], + [ 7.7452576, 47.4722405 ], + [ 7.7452559999999995, 47.4722384 ], + [ 7.7452493, 47.4722294 ], + [ 7.7452483999999995, 47.4722282 ], + [ 7.7452418, 47.4722192 ], + [ 7.7452415, 47.4722189 ], + [ 7.7452407, 47.4722178 ], + [ 7.7452342, 47.4722088 ], + [ 7.7452323, 47.4722062 ], + [ 7.7452259, 47.4721972 ], + [ 7.7452228, 47.4721926 ], + [ 7.7452174, 47.4721846 ], + [ 7.7452133, 47.4721788 ], + [ 7.7452038, 47.4721656 ], + [ 7.7452024, 47.4721637 ], + [ 7.745196, 47.4721546 ], + [ 7.7451932, 47.4721505 ], + [ 7.7451877, 47.4721425 ], + [ 7.745184, 47.4721373 ], + [ 7.7451786, 47.47213 ], + [ 7.7451685999999995, 47.4721164 ], + [ 7.745168, 47.4721156 ], + [ 7.7451672, 47.4721145 ], + [ 7.7451607, 47.4721055 ], + [ 7.7451579, 47.4721015 ], + [ 7.7451515, 47.4720925 ], + [ 7.7451468, 47.4720853 ], + [ 7.7451426, 47.4720788 ], + [ 7.7451416, 47.4720772 ], + [ 7.7451371, 47.4720703 ], + [ 7.7451295, 47.4720591 ], + [ 7.745127, 47.4720553 ], + [ 7.7451228, 47.4720488 ], + [ 7.7451206, 47.4720454 ], + [ 7.7451189, 47.4720427 ], + [ 7.7451178, 47.472041 ], + [ 7.7451142, 47.472035 ], + [ 7.745112, 47.4720311 ], + [ 7.7451095, 47.4720266 ], + [ 7.745108, 47.4720239 ], + [ 7.7451048, 47.4720179 ], + [ 7.7451046, 47.4720174 ], + [ 7.7451026, 47.4720134 ], + [ 7.7451008, 47.4720097 ], + [ 7.7450994, 47.4720069 ], + [ 7.7450962, 47.4719998 ], + [ 7.7450932, 47.4719931 ], + [ 7.7450913, 47.4719888 ], + [ 7.7450892, 47.4719843 ], + [ 7.7450868, 47.4719793 ], + [ 7.7450776, 47.4719605 ], + [ 7.7450597, 47.4719246 ], + [ 7.7450589999999995, 47.4719233 ], + [ 7.7450557, 47.4719165 ], + [ 7.7450548999999995, 47.4719148 ], + [ 7.7450507, 47.471906 ], + [ 7.7450497, 47.471904 ], + [ 7.7450475, 47.4718992 ], + [ 7.745046, 47.4718958 ], + [ 7.745043, 47.471889 ], + [ 7.7450409, 47.4718843 ], + [ 7.7450384, 47.4718782 ], + [ 7.7450374, 47.471876 ], + [ 7.7450363, 47.4718737 ], + [ 7.7450331, 47.4718669 ], + [ 7.7450222, 47.4718448 ], + [ 7.7450216, 47.4718434 ], + [ 7.7450183, 47.4718366 ], + [ 7.7450173, 47.4718345 ], + [ 7.7450141, 47.4718277 ], + [ 7.7450127, 47.4718246 ], + [ 7.745011, 47.4718207 ], + [ 7.7450105, 47.4718195 ], + [ 7.7450092, 47.4718167 ], + [ 7.7450075, 47.4718126 ], + [ 7.7450051, 47.471807 ], + [ 7.7450039, 47.4718043 ], + [ 7.7450022, 47.4718007 ], + [ 7.7449884, 47.4717724 ], + [ 7.7449872, 47.4717698 ], + [ 7.744984, 47.471763 ], + [ 7.7449822, 47.4717592 ], + [ 7.7449791999999995, 47.4717523 ], + [ 7.7449768, 47.4717468 ], + [ 7.7449741, 47.4717403 ], + [ 7.7449677, 47.4717252 ], + [ 7.7449657, 47.4717205 ], + [ 7.7449655, 47.4717201 ], + [ 7.7449628, 47.4717132 ], + [ 7.7449603, 47.4717066 ], + [ 7.7449593, 47.4717039 ], + [ 7.7449578, 47.4716995 ], + [ 7.744955, 47.4716911 ], + [ 7.7449537, 47.4716872 ], + [ 7.7449528999999995, 47.4716844 ], + [ 7.7449523, 47.4716825 ], + [ 7.7449521, 47.4716818 ], + [ 7.7449496, 47.4716733 ], + [ 7.7449484, 47.4716693 ], + [ 7.7449459, 47.47166 ], + [ 7.7449438, 47.4716532 ], + [ 7.7449433, 47.4716515 ], + [ 7.7449424, 47.4716485 ], + [ 7.7449397, 47.4716389 ], + [ 7.7449373999999995, 47.4716318 ], + [ 7.7449366, 47.471629 ], + [ 7.7449359, 47.4716267 ], + [ 7.7449331, 47.4716169 ], + [ 7.7449308, 47.4716096 ], + [ 7.7449297999999995, 47.4716065 ], + [ 7.7449291, 47.471604 ], + [ 7.7449262, 47.4715937 ], + [ 7.7449238, 47.471586 ], + [ 7.7449232, 47.471584 ], + [ 7.7449223, 47.4715812 ], + [ 7.7449215, 47.4715781 ], + [ 7.7449206, 47.4715749 ], + [ 7.7449185, 47.4715671 ], + [ 7.744916, 47.4715583 ], + [ 7.744914, 47.4715512 ], + [ 7.7449076, 47.47153 ], + [ 7.744904, 47.4715184 ], + [ 7.7449016, 47.471511 ], + [ 7.7448989, 47.4715035 ], + [ 7.7448979, 47.4715006 ], + [ 7.744897, 47.4714979 ], + [ 7.7448964, 47.471496 ], + [ 7.7448912, 47.47148 ], + [ 7.7448892, 47.471474 ], + [ 7.7448858, 47.4714647 ], + [ 7.7448852, 47.4714631 ], + [ 7.7448827, 47.471456 ], + [ 7.7448795, 47.4714473 ], + [ 7.7448778, 47.4714423 ], + [ 7.744874, 47.4714312 ], + [ 7.7448733, 47.471429 ], + [ 7.7448709000000004, 47.4714216 ], + [ 7.7448686, 47.4714149 ], + [ 7.7448685, 47.4714146 ], + [ 7.7448656, 47.4714065 ], + [ 7.7448646, 47.4714038 ], + [ 7.74486, 47.4713906 ], + [ 7.7448595000000005, 47.4713891 ], + [ 7.7448578, 47.4713841 ], + [ 7.7448561, 47.4713789 ], + [ 7.7448552, 47.4713758 ], + [ 7.7448547, 47.4713742 ], + [ 7.744854, 47.4713717 ], + [ 7.7448515, 47.4713632 ], + [ 7.7448489, 47.4713542 ], + [ 7.7448469, 47.471347 ], + [ 7.744846, 47.4713436 ], + [ 7.7448447, 47.4713378 ], + [ 7.7448422, 47.4713266 ], + [ 7.7448391999999995, 47.4713147 ], + [ 7.7448387, 47.4713126 ], + [ 7.7448362, 47.4713018 ], + [ 7.744833, 47.4712895 ], + [ 7.7448324, 47.4712872 ], + [ 7.7448299, 47.4712769 ], + [ 7.7448235, 47.4712537 ], + [ 7.7448227, 47.4712504 ], + [ 7.7447508, 47.4710109 ], + [ 7.7447467, 47.4710044 ], + [ 7.7447458000000005, 47.471003 ], + [ 7.7447443, 47.4710004 ], + [ 7.7447423, 47.4709972 ], + [ 7.74474, 47.4709932 ], + [ 7.7447381, 47.47099 ], + [ 7.7447347, 47.4709838 ], + [ 7.7447325, 47.4709797 ], + [ 7.7447305, 47.4709758 ], + [ 7.7447282, 47.4709712 ], + [ 7.7447263, 47.4709671 ], + [ 7.7447245, 47.4709632 ], + [ 7.7447232, 47.4709603 ], + [ 7.7447203, 47.4709536 ], + [ 7.7447191, 47.4709509 ], + [ 7.7447185, 47.4709493 ], + [ 7.7447175999999995, 47.4709471 ], + [ 7.7447158, 47.4709424 ], + [ 7.7447122, 47.4709334 ], + [ 7.7447104, 47.4709287 ], + [ 7.7447086, 47.4709237 ], + [ 7.7447031, 47.4709101 ], + [ 7.7447028, 47.4709093 ], + [ 7.7447008, 47.4709041 ], + [ 7.7446985, 47.4708981 ], + [ 7.7446955, 47.4708904 ], + [ 7.7446944, 47.4708875 ], + [ 7.7446933, 47.4708848 ], + [ 7.7446931, 47.4708842 ], + [ 7.7446918, 47.4708815 ], + [ 7.7446847, 47.4708667 ], + [ 7.744684, 47.4708654 ], + [ 7.7446808, 47.4708587 ], + [ 7.7446794, 47.4708556 ], + [ 7.7446763, 47.4708488 ], + [ 7.7446745, 47.4708448 ], + [ 7.7446727, 47.4708406 ], + [ 7.7446719, 47.4708389 ], + [ 7.7446683, 47.470831 ], + [ 7.7446656, 47.4708248 ], + [ 7.7446649, 47.4708233 ], + [ 7.7446619, 47.470817 ], + [ 7.7446596, 47.4708122 ], + [ 7.7446435000000005, 47.4707798 ], + [ 7.7446379, 47.4707686 ], + [ 7.744636, 47.470765 ], + [ 7.7446352, 47.4707637 ], + [ 7.7446334, 47.4707605 ], + [ 7.7446297, 47.470754 ], + [ 7.7446292, 47.4707531 ], + [ 7.7446284, 47.4707518 ], + [ 7.7446258, 47.4707478 ], + [ 7.7446226, 47.4707428 ], + [ 7.7446226, 47.4707427 ], + [ 7.7446214, 47.4707408 ], + [ 7.7446201, 47.4707387 ], + [ 7.7446173, 47.4707341 ], + [ 7.7446164, 47.4707325 ], + [ 7.7446117999999995, 47.4707247 ], + [ 7.7446101, 47.470722 ], + [ 7.744609, 47.4707204 ], + [ 7.7446075, 47.4707178 ], + [ 7.7446063, 47.4707159 ], + [ 7.7436062, 47.4709454 ], + [ 7.7436108, 47.4709517 ], + [ 7.7436117, 47.4709528 ], + [ 7.7436126, 47.4709541 ], + [ 7.7436145, 47.4709567 ], + [ 7.7436194, 47.4709637 ], + [ 7.7436238, 47.4709702 ], + [ 7.7436264, 47.4709742 ], + [ 7.7436340999999995, 47.4709862 ], + [ 7.7436356, 47.4709884 ], + [ 7.7436387, 47.4709928 ], + [ 7.7436433000000005, 47.4709991 ], + [ 7.74366, 47.4710214 ], + [ 7.7436608, 47.4710226 ], + [ 7.7436674, 47.4710316 ], + [ 7.7436675, 47.4710318 ], + [ 7.7436692, 47.4710341 ], + [ 7.7436757, 47.4710431 ], + [ 7.7436789, 47.4710477 ], + [ 7.7436874, 47.4710601 ], + [ 7.7436913, 47.4710655 ], + [ 7.7437008, 47.4710784 ], + [ 7.7437011, 47.4710789 ], + [ 7.743702, 47.47108 ], + [ 7.7437085, 47.471089 ], + [ 7.7437118, 47.4710937 ], + [ 7.7437181, 47.4711028 ], + [ 7.7437242, 47.4711121 ], + [ 7.7437283, 47.4711186 ], + [ 7.7437289, 47.4711196 ], + [ 7.7437307, 47.4711226 ], + [ 7.7437356, 47.4711309 ], + [ 7.7437377, 47.4711342 ], + [ 7.7437385, 47.4711354 ], + [ 7.7437414, 47.4711402 ], + [ 7.7437491, 47.4711534 ], + [ 7.7437536, 47.4711608 ], + [ 7.7437559, 47.4711647 ], + [ 7.7437624, 47.4711758 ], + [ 7.7437667, 47.4711829 ], + [ 7.743769, 47.4711867 ], + [ 7.7437763, 47.4711991 ], + [ 7.743778, 47.4712018 ], + [ 7.7437786, 47.4712028 ], + [ 7.7437804, 47.4712058 ], + [ 7.7437816, 47.4712077 ], + [ 7.7437827, 47.4712096 ], + [ 7.7437901, 47.4712223 ], + [ 7.743792, 47.4712253 ], + [ 7.7437946, 47.4712297 ], + [ 7.7437957, 47.4712316 ], + [ 7.7437968, 47.4712335 ], + [ 7.7437995, 47.4712382 ], + [ 7.7438009999999995, 47.4712409 ], + [ 7.7438061, 47.47125 ], + [ 7.7438071, 47.4712517 ], + [ 7.7438103, 47.4712569 ], + [ 7.7438125, 47.4712606 ], + [ 7.7438196999999995, 47.4712728 ], + [ 7.7438213000000005, 47.4712754 ], + [ 7.7438221, 47.4712767 ], + [ 7.7438237, 47.4712794 ], + [ 7.7438249, 47.4712813 ], + [ 7.7438258, 47.4712829 ], + [ 7.7438286, 47.4712876 ], + [ 7.7438296, 47.4712894 ], + [ 7.7438347, 47.4712982 ], + [ 7.7438371, 47.4713021 ], + [ 7.7438418, 47.4713104 ], + [ 7.7438455, 47.4713173 ], + [ 7.7438484, 47.4713228 ], + [ 7.7438497, 47.4713254 ], + [ 7.7438533, 47.4713327 ], + [ 7.7438563, 47.4713392 ], + [ 7.7438592, 47.4713455 ], + [ 7.7438614, 47.4713508 ], + [ 7.7438635, 47.4713557 ], + [ 7.7438642, 47.4713571 ], + [ 7.7438654, 47.4713593 ], + [ 7.7438661, 47.4713608 ], + [ 7.7438677, 47.4713634 ], + [ 7.7438692, 47.471366 ], + [ 7.7438746, 47.4713753 ], + [ 7.7438797, 47.4713847 ], + [ 7.7438813, 47.4713877 ], + [ 7.7438829, 47.4713901 ], + [ 7.7438986, 47.4714115 ], + [ 7.7439004, 47.4714139 ], + [ 7.7439067999999995, 47.471423 ], + [ 7.7439102, 47.4714279 ], + [ 7.7439324, 47.4714605 ], + [ 7.7439362, 47.4714659 ], + [ 7.7439412, 47.4714727 ], + [ 7.7439467, 47.4714801 ], + [ 7.7439523, 47.4714875 ], + [ 7.7439576, 47.4714944 ], + [ 7.7439642, 47.4715029 ], + [ 7.7439662, 47.4715054 ], + [ 7.7439682, 47.471508 ], + [ 7.7439713999999995, 47.4715123 ], + [ 7.7439722, 47.4715133 ], + [ 7.7439801, 47.4715242 ], + [ 7.7439818, 47.4715266 ], + [ 7.7439867, 47.4715336 ], + [ 7.7439986, 47.4715498 ], + [ 7.7440241, 47.4715845 ], + [ 7.7440302, 47.4715927 ], + [ 7.7440332, 47.4715966 ], + [ 7.7440356, 47.4715991 ], + [ 7.7440397, 47.4716033 ], + [ 7.7440429, 47.4716067 ], + [ 7.7440469, 47.471611 ], + [ 7.7440511, 47.4716155 ], + [ 7.7440556, 47.4716206 ], + [ 7.7440592, 47.4716247 ], + [ 7.7440618, 47.4716278 ], + [ 7.7440692, 47.4716366 ], + [ 7.7440725, 47.4716408 ], + [ 7.7440819, 47.471652399999996 ], + [ 7.7440888999999995, 47.4716611 ], + [ 7.7440902, 47.4716626 ], + [ 7.7440923, 47.4716652 ], + [ 7.7440949, 47.4716686 ], + [ 7.7441018, 47.4716775 ], + [ 7.7441037, 47.4716799 ], + [ 7.7441105, 47.4716889 ], + [ 7.7441113999999995, 47.471690100000004 ], + [ 7.7441181, 47.4716991 ], + [ 7.7441184, 47.4716996 ], + [ 7.7441406, 47.4717295 ], + [ 7.7441524, 47.4717451 ], + [ 7.7441567, 47.4717507 ], + [ 7.744165, 47.471761 ], + [ 7.7441680999999996, 47.4717648 ], + [ 7.744175, 47.4717737 ], + [ 7.7441768, 47.471776 ], + [ 7.7441835, 47.4717849 ], + [ 7.7441846, 47.4717864 ], + [ 7.744198, 47.4718043 ], + [ 7.7441986, 47.471805 ], + [ 7.7442279, 47.4718445 ], + [ 7.7442402, 47.471861 ], + [ 7.7442458, 47.4718683 ], + [ 7.7442504, 47.4718743 ], + [ 7.7442589, 47.4718848 ], + [ 7.7442618, 47.4718885 ], + [ 7.7442686, 47.4718972 ], + [ 7.7442702, 47.4718993 ], + [ 7.744277, 47.4719082 ], + [ 7.7442781, 47.4719096 ], + [ 7.7442915, 47.4719276 ], + [ 7.7442921, 47.4719283 ], + [ 7.7443279, 47.4719766 ], + [ 7.7443403, 47.4719931 ], + [ 7.7443456, 47.472 ], + [ 7.7443501999999995, 47.4720059 ], + [ 7.744355, 47.4720118 ], + [ 7.7443577999999995, 47.4720153 ], + [ 7.7443647, 47.4720242 ], + [ 7.7443665, 47.4720265 ], + [ 7.7443734, 47.4720354 ], + [ 7.7443743, 47.4720366 ], + [ 7.7443811, 47.4720456 ], + [ 7.7443817, 47.472046399999996 ], + [ 7.7443951, 47.4720643 ], + [ 7.7443957999999995, 47.4720653 ], + [ 7.7444025, 47.4720742 ], + [ 7.7444033, 47.4720753 ], + [ 7.7444036, 47.4720757 ], + [ 7.7444101, 47.4720847 ], + [ 7.7444123, 47.4720877 ], + [ 7.7444187, 47.4720967 ], + [ 7.7444222, 47.4721018 ], + [ 7.7444266, 47.4721082 ], + [ 7.744428, 47.4721105 ], + [ 7.744431, 47.4721151 ], + [ 7.7444332, 47.4721183 ], + [ 7.7444361, 47.4721229 ], + [ 7.7444374, 47.4721251 ], + [ 7.7444389000000005, 47.4721275 ], + [ 7.7444428, 47.472134 ], + [ 7.7444446, 47.472137 ], + [ 7.7444473, 47.4721417 ], + [ 7.7444500000000005, 47.4721464 ], + [ 7.7444536, 47.4721531 ], + [ 7.7444554, 47.4721564 ], + [ 7.7444574, 47.4721603 ], + [ 7.7444582, 47.4721618 ], + [ 7.7444631, 47.4721712 ], + [ 7.7444637, 47.4721724 ], + [ 7.7444721, 47.4721888 ], + [ 7.7444745, 47.4721934 ], + [ 7.7444779, 47.4721998 ], + [ 7.7444787, 47.4722014 ], + [ 7.7444823, 47.4722082 ], + [ 7.7444828999999995, 47.4722092 ], + [ 7.7444918, 47.4722263 ], + [ 7.7444985, 47.4722391 ], + [ 7.7444995, 47.4722409 ], + [ 7.7445063, 47.4722541 ], + [ 7.7445073, 47.4722559 ], + [ 7.7445075, 47.4722563 ], + [ 7.7445176, 47.4722765 ], + [ 7.7445181, 47.4722775 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr145", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Bättlete", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Bättlete", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Bättlete", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Bättlete", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6688472, 47.4089782 ], + [ 7.6688427, 47.4088931 ], + [ 7.6687008, 47.4089676 ], + [ 7.6685647, 47.4088459 ], + [ 7.6685903, 47.4088265 ], + [ 7.6689115, 47.408598 ], + [ 7.6692423, 47.4083433 ], + [ 7.6692697, 47.4083223 ], + [ 7.6692965, 47.4083009 ], + [ 7.6693226, 47.4082791 ], + [ 7.6693481, 47.4082569 ], + [ 7.6693728, 47.4082344 ], + [ 7.6693968, 47.4082115 ], + [ 7.6694201, 47.4081883 ], + [ 7.6694427, 47.4081648 ], + [ 7.6694645999999995, 47.408141 ], + [ 7.6694857, 47.4081168 ], + [ 7.669506, 47.4080923 ], + [ 7.6696778, 47.4078322 ], + [ 7.6696876, 47.4078165 ], + [ 7.6696982, 47.4078011 ], + [ 7.6697097, 47.4077859 ], + [ 7.669722, 47.407771 ], + [ 7.6697351, 47.4077565 ], + [ 7.6697489999999995, 47.4077423 ], + [ 7.6697637, 47.4077285 ], + [ 7.6697792, 47.4077151 ], + [ 7.6697953, 47.407702 ], + [ 7.6698122, 47.4076894 ], + [ 7.6698298, 47.4076772 ], + [ 7.6698481, 47.4076655 ], + [ 7.669867, 47.4076543 ], + [ 7.6698865, 47.4076436 ], + [ 7.6699066, 47.4076333 ], + [ 7.6699272, 47.4076236 ], + [ 7.6699484, 47.4076144 ], + [ 7.6702039, 47.4075189 ], + [ 7.6701908, 47.4075026 ], + [ 7.6701485, 47.4074498 ], + [ 7.6697521, 47.407581 ], + [ 7.6695074, 47.4073965 ], + [ 7.6700099, 47.4072186 ], + [ 7.6701576, 47.4071662 ], + [ 7.6709987, 47.4069159 ], + [ 7.6713487, 47.4068118 ], + [ 7.6714, 47.4067074 ], + [ 7.6714089, 47.4066934 ], + [ 7.6714185, 47.4066797 ], + [ 7.6714286, 47.4066662 ], + [ 7.6714395, 47.4066529 ], + [ 7.6714428, 47.406649 ], + [ 7.6714461, 47.4066452 ], + [ 7.6714495, 47.4066414 ], + [ 7.6711725, 47.4064212 ], + [ 7.6706183, 47.4064558 ], + [ 7.6700496000000005, 47.4063006 ], + [ 7.6693544, 47.4065337 ], + [ 7.6687466, 47.4065878 ], + [ 7.668026, 47.406628 ], + [ 7.6675944, 47.4066932 ], + [ 7.6674585, 47.4066351 ], + [ 7.6675879, 47.4061211 ], + [ 7.6681173000000005, 47.4060257 ], + [ 7.6687014, 47.4058937 ], + [ 7.6693033, 47.4057798 ], + [ 7.6694548000000005, 47.4056686 ], + [ 7.6695779, 47.4052139 ], + [ 7.6695776, 47.404919 ], + [ 7.6695734, 47.4043153 ], + [ 7.6695717, 47.4031929 ], + [ 7.6696057, 47.4026799 ], + [ 7.6696686, 47.4024076 ], + [ 7.669699, 47.4023118 ], + [ 7.6687251, 47.4022871 ], + [ 7.6685868, 47.4023186 ], + [ 7.6683162, 47.4024249 ], + [ 7.668219, 47.4023994 ], + [ 7.6681293, 47.4024389 ], + [ 7.6680468, 47.4024556 ], + [ 7.6679594, 47.4024939 ], + [ 7.6677922, 47.4025178 ], + [ 7.6675772, 47.4025942 ], + [ 7.6674073, 47.4026549 ], + [ 7.6672172, 47.4026946 ], + [ 7.6670065, 47.402727 ], + [ 7.6669078, 47.4026252 ], + [ 7.6666841, 47.4026876 ], + [ 7.6666416, 47.4026161 ], + [ 7.666397, 47.4026406 ], + [ 7.666377, 47.4026669 ], + [ 7.6662804, 47.4027785 ], + [ 7.666128, 47.4029504 ], + [ 7.6660905, 47.4029957 ], + [ 7.6660758, 47.4030163 ], + [ 7.6660636, 47.4030376 ], + [ 7.666054, 47.4030596 ], + [ 7.6660471999999995, 47.403082 ], + [ 7.6660432, 47.4031047 ], + [ 7.6660419, 47.4031275 ], + [ 7.6660433999999995, 47.4031504 ], + [ 7.6660477, 47.4031731 ], + [ 7.6660547999999995, 47.4031954 ], + [ 7.6660646, 47.4032173 ], + [ 7.6662294, 47.403491700000004 ], + [ 7.6662767, 47.4035368 ], + [ 7.6663302, 47.4035787 ], + [ 7.6663894, 47.4036168 ], + [ 7.6664537, 47.403650999999996 ], + [ 7.6667065999999995, 47.4037644 ], + [ 7.6668266, 47.4038412 ], + [ 7.6671583, 47.4040614 ], + [ 7.6671976, 47.4040868 ], + [ 7.6672335, 47.4041145 ], + [ 7.6672655, 47.4041443 ], + [ 7.6672934, 47.4041759 ], + [ 7.6673169, 47.4042091 ], + [ 7.6673729, 47.4043221 ], + [ 7.6673874, 47.4043534 ], + [ 7.6673986, 47.4043853 ], + [ 7.6674066, 47.4044176 ], + [ 7.6674097, 47.4044345 ], + [ 7.6674106, 47.4044516 ], + [ 7.6674094, 47.4044687 ], + [ 7.6674061, 47.4044856 ], + [ 7.6674008, 47.4045023 ], + [ 7.6673934, 47.4045186 ], + [ 7.667384, 47.4045345 ], + [ 7.6673727, 47.4045498 ], + [ 7.6673596, 47.4045643 ], + [ 7.6673344, 47.4045865 ], + [ 7.6673065000000005, 47.4046072 ], + [ 7.6672762, 47.4046262 ], + [ 7.6672435, 47.4046433 ], + [ 7.6672089, 47.4046585 ], + [ 7.6671724, 47.4046717 ], + [ 7.6670089, 47.4047196 ], + [ 7.6668432, 47.404764 ], + [ 7.6666755, 47.4048049 ], + [ 7.6666012, 47.4048224 ], + [ 7.6665261000000005, 47.4048382 ], + [ 7.6664501, 47.4048522 ], + [ 7.6663815, 47.4048632 ], + [ 7.666312, 47.4048711 ], + [ 7.6662418, 47.404876 ], + [ 7.6661383, 47.4048799 ], + [ 7.6660865, 47.4048874 ], + [ 7.6660353, 47.4048966 ], + [ 7.6659848, 47.4049075 ], + [ 7.6657354, 47.4049879 ], + [ 7.6655682, 47.4050596 ], + [ 7.665289, 47.4051875 ], + [ 7.6649719, 47.4054186 ], + [ 7.6646894, 47.4055967 ], + [ 7.6642922, 47.4057933 ], + [ 7.6635959, 47.4060243 ], + [ 7.6634820999999995, 47.4060512 ], + [ 7.6632969, 47.4060801 ], + [ 7.66296, 47.4061129 ], + [ 7.6626613, 47.406187 ], + [ 7.6620227, 47.4063109 ], + [ 7.6619512, 47.406326 ], + [ 7.6615599, 47.4064088 ], + [ 7.6615179, 47.406424 ], + [ 7.6612939, 47.406505 ], + [ 7.6611869, 47.406557 ], + [ 7.6611323, 47.406583499999996 ], + [ 7.6611156000000005, 47.4065934 ], + [ 7.6611003, 47.4066042 ], + [ 7.6610864, 47.4066159 ], + [ 7.6610741, 47.4066284 ], + [ 7.6610636, 47.4066416 ], + [ 7.6610548, 47.4066554 ], + [ 7.6610479, 47.4066697 ], + [ 7.6610428, 47.4066843 ], + [ 7.6610398, 47.4066992 ], + [ 7.6610385999999995, 47.4067142 ], + [ 7.661033, 47.4067426 ], + [ 7.6609952, 47.4068939 ], + [ 7.6609886, 47.4069964 ], + [ 7.6610159, 47.4071492 ], + [ 7.6610324, 47.4073427 ], + [ 7.661051, 47.4073712 ], + [ 7.6610932, 47.4074196 ], + [ 7.6611599, 47.4074727 ], + [ 7.6612149, 47.4075045 ], + [ 7.661298, 47.407547 ], + [ 7.661482, 47.407639 ], + [ 7.6616918, 47.4077201 ], + [ 7.6619323999999995, 47.4078417 ], + [ 7.6620175, 47.4078782 ], + [ 7.6621124, 47.407912 ], + [ 7.6622422, 47.407948 ], + [ 7.6623301, 47.4079664 ], + [ 7.6627886, 47.4080456 ], + [ 7.6630237999999995, 47.4081004 ], + [ 7.6630959, 47.4081139 ], + [ 7.6634411, 47.4081246 ], + [ 7.6637477, 47.4080699 ], + [ 7.6638818, 47.408058 ], + [ 7.6639655, 47.4080661 ], + [ 7.6642622, 47.4080292 ], + [ 7.6646457, 47.4080007 ], + [ 7.6647637, 47.4079892 ], + [ 7.6649574, 47.4079962 ], + [ 7.6658119, 47.408096 ], + [ 7.6657824, 47.4081445 ], + [ 7.6658389, 47.4081309 ], + [ 7.6663534, 47.4080074 ], + [ 7.6666199, 47.4083365 ], + [ 7.6669129, 47.4086982 ], + [ 7.6673922, 47.4093011 ], + [ 7.6674389, 47.4093598 ], + [ 7.6673165999999995, 47.4093954 ], + [ 7.6671243, 47.4097903 ], + [ 7.6671651, 47.4098056 ], + [ 7.6672296, 47.4098655 ], + [ 7.6672447, 47.4098988 ], + [ 7.667245, 47.4099452 ], + [ 7.6672269, 47.4099675 ], + [ 7.6674887, 47.4098351 ], + [ 7.6688559, 47.4091433 ], + [ 7.6688472, 47.4089782 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns109", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Binzenberg - Chüeweid", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Binzenberg - Chüeweid", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Binzenberg - Chüeweid", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Binzenberg - Chüeweid", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.1945151, 46.3475849 ], + [ 6.1948851, 46.3486162 ], + [ 6.1947664, 46.3486004 ], + [ 6.1946545, 46.3486011 ], + [ 6.1944596, 46.3485776 ], + [ 6.1943128, 46.3485708 ], + [ 6.1941815, 46.3485861 ], + [ 6.1939537, 46.3486292 ], + [ 6.1939673, 46.3486527 ], + [ 6.1938322, 46.3487038 ], + [ 6.1937305, 46.3487253 ], + [ 6.1935697, 46.348767 ], + [ 6.1934299, 46.3488198 ], + [ 6.1933867, 46.3488619 ], + [ 6.1933851, 46.3488616 ], + [ 6.1933386, 46.3488586 ], + [ 6.193326, 46.3488561 ], + [ 6.1932327, 46.3488363 ], + [ 6.1932343, 46.3488514 ], + [ 6.1931751, 46.3488338 ], + [ 6.193088, 46.3488446 ], + [ 6.1928847, 46.34882 ], + [ 6.1927921, 46.3487841 ], + [ 6.1925755, 46.3487481 ], + [ 6.1924315, 46.348723 ], + [ 6.1923742, 46.3486916 ], + [ 6.1922726, 46.348697 ], + [ 6.1921074, 46.3486801 ], + [ 6.1920205, 46.348666 ], + [ 6.1919486, 46.3486693 ], + [ 6.1918313, 46.3486447 ], + [ 6.1917383, 46.3486269 ], + [ 6.1916768, 46.3486232 ], + [ 6.1916199, 46.3485916 ], + [ 6.1914498, 46.3486014 ], + [ 6.1912001, 46.3486808 ], + [ 6.1911649, 46.3487021 ], + [ 6.1910827, 46.348709 ], + [ 6.1909454, 46.3487872 ], + [ 6.1908936, 46.348812 ], + [ 6.1907871, 46.3489092 ], + [ 6.1907644, 46.3489381 ], + [ 6.1907328, 46.3489989 ], + [ 6.1907005999999996, 46.3490415 ], + [ 6.1906582, 46.3490947 ], + [ 6.1906264, 46.3491162 ], + [ 6.1905862, 46.3491276 ], + [ 6.1905745, 46.3491313 ], + [ 6.1904126999999995, 46.3491363 ], + [ 6.1903233, 46.3491449 ], + [ 6.1902441, 46.3491847 ], + [ 6.1901954, 46.3492194 ], + [ 6.190193, 46.3492389 ], + [ 6.1901437, 46.3492923 ], + [ 6.1899716, 46.349336 ], + [ 6.1898941, 46.3493452 ], + [ 6.1898551, 46.3493873 ], + [ 6.1898094, 46.3494733 ], + [ 6.1897066, 46.3495242 ], + [ 6.1896284, 46.3495334 ], + [ 6.1895308, 46.3495345 ], + [ 6.1894881, 46.3495818 ], + [ 6.1893709, 46.3496826 ], + [ 6.1892403, 46.3497697 ], + [ 6.1891846, 46.349847 ], + [ 6.1890597, 46.3499481 ], + [ 6.1889894, 46.3500079 ], + [ 6.1888903, 46.3500315 ], + [ 6.1888092, 46.350125 ], + [ 6.1887436, 46.3501128 ], + [ 6.188716, 46.3500727 ], + [ 6.18862, 46.3500364 ], + [ 6.1885011, 46.3499828 ], + [ 6.1883932, 46.3499928 ], + [ 6.1882745, 46.3499826 ], + [ 6.1882294, 46.349944 ], + [ 6.188127, 46.3499205 ], + [ 6.1880563, 46.3499339 ], + [ 6.1878917, 46.3499139 ], + [ 6.1878208, 46.3498609 ], + [ 6.1877293, 46.349834 ], + [ 6.1876752, 46.3497672 ], + [ 6.1875606, 46.3497728 ], + [ 6.1874816, 46.3497728 ], + [ 6.18741, 46.3497195 ], + [ 6.1873411, 46.3496825 ], + [ 6.1872574, 46.3495732 ], + [ 6.1871838, 46.3495371 ], + [ 6.1870901, 46.3495713 ], + [ 6.1870463, 46.3494934 ], + [ 6.1870046, 46.349501599999996 ], + [ 6.1868692, 46.349528 ], + [ 6.1867441, 46.3494912 ], + [ 6.1865326, 46.3495342 ], + [ 6.1862681, 46.3495373 ], + [ 6.1844429, 46.3501883 ], + [ 6.1856295, 46.3503654 ], + [ 6.1862641, 46.3502853 ], + [ 6.1863428, 46.3505841 ], + [ 6.1870958, 46.3513921 ], + [ 6.1868299, 46.3522463 ], + [ 6.1869856, 46.3528377 ], + [ 6.1859892, 46.3529635 ], + [ 6.1847114, 46.3535345 ], + [ 6.1838464, 46.3544005 ], + [ 6.1835259, 46.3554298 ], + [ 6.1837987, 46.3564657 ], + [ 6.1846232, 46.3573505 ], + [ 6.1858741, 46.3579494 ], + [ 6.1873608, 46.3581713 ], + [ 6.1888569, 46.3579824 ], + [ 6.1901348, 46.3574115 ], + [ 6.1909997, 46.3565454 ], + [ 6.1913201, 46.355516 ], + [ 6.1912648, 46.355306 ], + [ 6.1913805, 46.3553232 ], + [ 6.1928765, 46.3551343 ], + [ 6.1941543, 46.3545632 ], + [ 6.1950191, 46.3536971 ], + [ 6.1950332, 46.3536518 ], + [ 6.1952532, 46.3536846 ], + [ 6.1967492, 46.3534956 ], + [ 6.1980268, 46.3529245 ], + [ 6.1988916, 46.3520584 ], + [ 6.1990089, 46.3516812 ], + [ 6.1990784, 46.3516117 ], + [ 6.1991233, 46.3514672 ], + [ 6.2006035, 46.351688 ], + [ 6.2013707, 46.351591 ], + [ 6.2015177, 46.3517486 ], + [ 6.2027686, 46.3523474 ], + [ 6.2042552, 46.3525691 ], + [ 6.2057511, 46.3523799 ], + [ 6.2070286, 46.3518088 ], + [ 6.2078932, 46.3509426 ], + [ 6.2082133, 46.3499132 ], + [ 6.2079401, 46.3488773 ], + [ 6.2071153, 46.3479927 ], + [ 6.2058644, 46.347394 ], + [ 6.204378, 46.3471724 ], + [ 6.2036108, 46.3472694 ], + [ 6.2034639, 46.3471117 ], + [ 6.2022131, 46.346513 ], + [ 6.2018405, 46.3464574 ], + [ 6.2012748, 46.3461866 ], + [ 6.1997883, 46.3459648 ], + [ 6.1982925, 46.3461539 ], + [ 6.1970151, 46.346725 ], + [ 6.1961963, 46.3475451 ], + [ 6.1955698, 46.3474516 ], + [ 6.1945151, 46.3475849 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE72", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.1818356, 46.3474942 ], + [ 6.1820379, 46.3472899 ], + [ 6.1828067, 46.346766 ], + [ 6.1835802, 46.3462384 ], + [ 6.1837867, 46.3461183 ], + [ 6.1840128, 46.346015 ], + [ 6.18403, 46.3460329 ], + [ 6.184428, 46.3458457 ], + [ 6.1838096, 46.3453581 ], + [ 6.1829807, 46.3457285 ], + [ 6.1821158, 46.3465946 ], + [ 6.1818356, 46.3474942 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE71", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.915378, 47.5656714 ], + [ 8.9153686, 47.5655302 ], + [ 8.9153483, 47.5653897 ], + [ 8.9153172, 47.56525 ], + [ 8.9152753, 47.5651116 ], + [ 8.9152228, 47.5649749 ], + [ 8.9151597, 47.5648402 ], + [ 8.9150864, 47.564708 ], + [ 8.9150029, 47.5645785 ], + [ 8.9149095, 47.5644522 ], + [ 8.9148065, 47.5643294 ], + [ 8.9146941, 47.5642103 ], + [ 8.9145727, 47.5640955 ], + [ 8.9144425, 47.563985 ], + [ 8.914304, 47.5638794 ], + [ 8.9141576, 47.5637787 ], + [ 8.9140035, 47.5636835 ], + [ 8.9138423, 47.5635938 ], + [ 8.9136743, 47.5635099 ], + [ 8.9135002, 47.5634321 ], + [ 8.9133202, 47.5633606 ], + [ 8.9131349, 47.5632955 ], + [ 8.9129449, 47.5632371 ], + [ 8.9127506, 47.5631855 ], + [ 8.9125526, 47.5631409 ], + [ 8.9123515, 47.5631033 ], + [ 8.9121476, 47.5630729 ], + [ 8.9119418, 47.5630498 ], + [ 8.9117344, 47.563034 ], + [ 8.9115261, 47.5630255 ], + [ 8.9113174, 47.5630245 ], + [ 8.9111089, 47.5630308 ], + [ 8.9109012, 47.5630446 ], + [ 8.9106948, 47.5630656 ], + [ 8.9104904, 47.563094 ], + [ 8.9102884, 47.5631295 ], + [ 8.9100894, 47.5631722 ], + [ 8.909894, 47.5632218 ], + [ 8.9097028, 47.5632783 ], + [ 8.9095161, 47.5633415 ], + [ 8.9093346, 47.5634112 ], + [ 8.9091587, 47.5634873 ], + [ 8.908989, 47.5635694 ], + [ 8.9088258, 47.5636575 ], + [ 8.9086697, 47.5637513 ], + [ 8.908521, 47.5638504 ], + [ 8.9083802, 47.5639547 ], + [ 8.9082477, 47.5640638 ], + [ 8.9081238, 47.5641774 ], + [ 8.9080088, 47.5642953 ], + [ 8.9079031, 47.5644171 ], + [ 8.907807, 47.5645425 ], + [ 8.9077207, 47.5646711 ], + [ 8.9076444, 47.5648026 ], + [ 8.9075784, 47.5649366 ], + [ 8.9075229, 47.5650728 ], + [ 8.907478, 47.5652107 ], + [ 8.9074438, 47.5653501 ], + [ 8.9074205, 47.5654904 ], + [ 8.907408, 47.5656314 ], + [ 8.9074065, 47.5657727 ], + [ 8.9074158, 47.5659138 ], + [ 8.9074361, 47.5660544 ], + [ 8.9074672, 47.5661941 ], + [ 8.9075091, 47.5663324 ], + [ 8.9075616, 47.5664692 ], + [ 8.9076246, 47.5666038 ], + [ 8.907698, 47.5667361 ], + [ 8.9077814, 47.5668655 ], + [ 8.9078748, 47.5669919 ], + [ 8.9079778, 47.5671147 ], + [ 8.9080902, 47.5672337 ], + [ 8.9082116, 47.5673486 ], + [ 8.9083417, 47.5674591 ], + [ 8.9084802, 47.5675647 ], + [ 8.9086267, 47.5676654 ], + [ 8.9087808, 47.5677607 ], + [ 8.908942, 47.5678504 ], + [ 8.9091099, 47.5679342 ], + [ 8.9092841, 47.568012 ], + [ 8.9094641, 47.5680836 ], + [ 8.9096494, 47.5681486 ], + [ 8.9098394, 47.5682071 ], + [ 8.9100337, 47.5682586 ], + [ 8.9102317, 47.5683033 ], + [ 8.9104329, 47.5683409 ], + [ 8.9106368, 47.5683713 ], + [ 8.9108426, 47.5683944 ], + [ 8.9110501, 47.5684102 ], + [ 8.9112584, 47.5684186 ], + [ 8.9114671, 47.5684197 ], + [ 8.9116756, 47.5684133 ], + [ 8.9118834, 47.5683996 ], + [ 8.9120897, 47.5683785 ], + [ 8.9122942, 47.5683502 ], + [ 8.9124962, 47.5683146 ], + [ 8.9126952, 47.568272 ], + [ 8.9128906, 47.5682223 ], + [ 8.9130819, 47.5681658 ], + [ 8.9132685, 47.5681026 ], + [ 8.9134501, 47.5680329 ], + [ 8.9136259, 47.5679569 ], + [ 8.9137957, 47.5678747 ], + [ 8.9139589, 47.5677866 ], + [ 8.914115, 47.5676928 ], + [ 8.9142637, 47.5675937 ], + [ 8.9144044, 47.5674894 ], + [ 8.914537, 47.567380299999996 ], + [ 8.9146609, 47.5672667 ], + [ 8.9147759, 47.5671488 ], + [ 8.9148815, 47.567027 ], + [ 8.9149777, 47.5669016 ], + [ 8.915064, 47.566773 ], + [ 8.9151402, 47.5666415 ], + [ 8.9152061, 47.5665074 ], + [ 8.915261600000001, 47.5663713 ], + [ 8.9153065, 47.5662333 ], + [ 8.9153407, 47.566094 ], + [ 8.915364, 47.5659536 ], + [ 8.9153765, 47.5658126 ], + [ 8.915378, 47.5656714 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "FKG0001", + "country" : "CHE", + "name" : [ + { + "text" : "Kantonalgefängnis Frauenfeld", + "lang" : "de-CH" + }, + { + "text" : "Kantonalgefängnis Frauenfeld", + "lang" : "fr-CH" + }, + { + "text" : "Kantonalgefängnis Frauenfeld", + "lang" : "it-CH" + }, + { + "text" : "Kantonalgefängnis Frauenfeld", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Justizvollzug", + "lang" : "de-CH" + }, + { + "text" : "Amt für Justizvollzug", + "lang" : "fr-CH" + }, + { + "text" : "Amt für Justizvollzug", + "lang" : "it-CH" + }, + { + "text" : "Amt für Justizvollzug", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Amtsleitung", + "lang" : "de-CH" + }, + { + "text" : "Amtsleitung", + "lang" : "fr-CH" + }, + { + "text" : "Amtsleitung", + "lang" : "it-CH" + }, + { + "text" : "Amtsleitung", + "lang" : "en-GB" + } + ], + "siteURL" : "https://ajv.tg.ch/", + "email" : "ajv@tg.ch", + "phone" : "0041583453460", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8621941, 47.5040399 ], + [ 7.8621765, 47.5040742 ], + [ 7.8621815999999995, 47.5040992 ], + [ 7.862186, 47.5041244 ], + [ 7.8621896, 47.5041495 ], + [ 7.8621926, 47.5041748 ], + [ 7.8622186, 47.5042508 ], + [ 7.8621455000000005, 47.5043502 ], + [ 7.8621202, 47.5043845 ], + [ 7.8621061, 47.5044037 ], + [ 7.8620106, 47.5043954 ], + [ 7.8616629, 47.504013 ], + [ 7.861395, 47.5037565 ], + [ 7.8613795, 47.5037416 ], + [ 7.8613386, 47.5037064 ], + [ 7.860892, 47.5033212 ], + [ 7.8604008, 47.5029678 ], + [ 7.860142, 47.5027873 ], + [ 7.8599382, 47.5025524 ], + [ 7.8598447, 47.5023593 ], + [ 7.8598285, 47.5023089 ], + [ 7.8597173, 47.5019636 ], + [ 7.8596632, 47.5019489 ], + [ 7.8596262, 47.5019388 ], + [ 7.8596099, 47.5019963 ], + [ 7.8595998, 47.5020545 ], + [ 7.8595959, 47.502113 ], + [ 7.8595965, 47.5021294 ], + [ 7.859597, 47.5021414 ], + [ 7.8595977, 47.5021601 ], + [ 7.8595980999999995, 47.5021699 ], + [ 7.8596062, 47.5022265 ], + [ 7.8596132, 47.5022546 ], + [ 7.8596201, 47.5022827 ], + [ 7.8596412, 47.5023416 ], + [ 7.8596769, 47.5024412 ], + [ 7.8597904, 47.502768 ], + [ 7.8597912, 47.5027703 ], + [ 7.8598068, 47.502814 ], + [ 7.8598256, 47.5028596 ], + [ 7.8598306000000004, 47.5028702 ], + [ 7.8598468, 47.5029047 ], + [ 7.8598586, 47.5029264 ], + [ 7.8598703, 47.5029481 ], + [ 7.8598961, 47.5029909 ], + [ 7.8599241, 47.5030331 ], + [ 7.8599547, 47.5030753 ], + [ 7.8599877, 47.5031165 ], + [ 7.8600232, 47.5031568 ], + [ 7.8602509, 47.5033793 ], + [ 7.8602996, 47.5034298 ], + [ 7.8603472, 47.5034807 ], + [ 7.8603936999999995, 47.5035321 ], + [ 7.8604386, 47.503584000000004 ], + [ 7.8604824, 47.5036362 ], + [ 7.8605251, 47.5036889 ], + [ 7.8606807, 47.5039013 ], + [ 7.8608266, 47.5041003 ], + [ 7.8609254, 47.5042351 ], + [ 7.8610408, 47.5043926 ], + [ 7.8611787, 47.5045808 ], + [ 7.8612079999999995, 47.5046208 ], + [ 7.8612395, 47.5046638 ], + [ 7.8613167, 47.5047691 ], + [ 7.8613301, 47.5047837 ], + [ 7.8613682, 47.5048252 ], + [ 7.8613979, 47.5048514 ], + [ 7.8614275, 47.5048777 ], + [ 7.8614941, 47.504926 ], + [ 7.8615666, 47.5049694 ], + [ 7.8616449, 47.505008 ], + [ 7.8617283, 47.5050412 ], + [ 7.8617308999999995, 47.5050419 ], + [ 7.8617984, 47.5050608 ], + [ 7.8618177, 47.5050662 ], + [ 7.8619582, 47.5051055 ], + [ 7.8622372, 47.5051361 ], + [ 7.8624695, 47.5051156 ], + [ 7.8625174, 47.5051113 ], + [ 7.8626418000000005, 47.5051024 ], + [ 7.8626436, 47.5050899 ], + [ 7.8626537, 47.5050193 ], + [ 7.8627825, 47.5049482 ], + [ 7.8627133, 47.5049021 ], + [ 7.8627557, 47.5048418 ], + [ 7.8629007, 47.5046356 ], + [ 7.862935, 47.504659 ], + [ 7.8629671, 47.5046808 ], + [ 7.8629735, 47.5046766 ], + [ 7.8630321, 47.5046379 ], + [ 7.8630738000000004, 47.5045689 ], + [ 7.8630961, 47.504532 ], + [ 7.8631029, 47.5045208 ], + [ 7.8630897, 47.504516699999996 ], + [ 7.8629609, 47.5044765 ], + [ 7.8629541, 47.5044018 ], + [ 7.8629271, 47.5041043 ], + [ 7.8629227, 47.5040551 ], + [ 7.8628295, 47.5040375 ], + [ 7.862708, 47.5040146 ], + [ 7.8626929, 47.5040117 ], + [ 7.8626705, 47.5039958 ], + [ 7.8626461, 47.5039784 ], + [ 7.8631098999999995, 47.504025 ], + [ 7.863184, 47.504033 ], + [ 7.8632967, 47.5040451 ], + [ 7.8632304, 47.5038003 ], + [ 7.8631775, 47.5036753 ], + [ 7.8631347, 47.5035894 ], + [ 7.862933, 47.5031544 ], + [ 7.862829, 47.5028117 ], + [ 7.8627674, 47.5025109 ], + [ 7.8627633, 47.5024546 ], + [ 7.86273, 47.5022759 ], + [ 7.8626892999999995, 47.5021344 ], + [ 7.8626155, 47.5019897 ], + [ 7.862535, 47.5018434 ], + [ 7.8624122, 47.5015944 ], + [ 7.8623743, 47.5015194 ], + [ 7.8623161, 47.5014467 ], + [ 7.8621983, 47.5014168 ], + [ 7.862105, 47.501462 ], + [ 7.8620921, 47.501532 ], + [ 7.8621446, 47.5017491 ], + [ 7.8622105, 47.5019995 ], + [ 7.8622519, 47.5021311 ], + [ 7.8622892, 47.5022763 ], + [ 7.8622726, 47.5024125 ], + [ 7.8622347, 47.5024918 ], + [ 7.8621996, 47.5025645 ], + [ 7.8620969, 47.5031205 ], + [ 7.8620369, 47.5034454 ], + [ 7.8620318000000005, 47.5034742 ], + [ 7.8620263999999995, 47.503515 ], + [ 7.8620231, 47.503556 ], + [ 7.8620219, 47.503597 ], + [ 7.8620228999999995, 47.503638 ], + [ 7.8620246, 47.503667899999996 ], + [ 7.8620288, 47.5037088 ], + [ 7.8620352, 47.5037496 ], + [ 7.8620436, 47.5037903 ], + [ 7.8620489, 47.5038105 ], + [ 7.8620542, 47.5038307 ], + [ 7.8620931, 47.5039476 ], + [ 7.8621425, 47.5039543 ], + [ 7.8622358, 47.5039588 ], + [ 7.8622336, 47.5039631 ], + [ 7.8622328, 47.5039645 ], + [ 7.8622172, 47.503995 ], + [ 7.8621941, 47.5040399 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr060", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Uf Eck", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Uf Eck", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Uf Eck", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Uf Eck", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.6384695, 46.833474 ], + [ 8.6380035, 46.8333268 ], + [ 8.6379472, 46.8334462 ], + [ 8.6378871, 46.8335755 ], + [ 8.6378583, 46.833636 ], + [ 8.637837, 46.8336812 ], + [ 8.6378118, 46.8337832 ], + [ 8.637817, 46.833784 ], + [ 8.6378009, 46.8338849 ], + [ 8.6378016, 46.8339722 ], + [ 8.637814, 46.8340584 ], + [ 8.6378892, 46.8343176 ], + [ 8.6380944, 46.8343479 ], + [ 8.6380737, 46.8344183 ], + [ 8.6391653, 46.8345795 ], + [ 8.6391811, 46.8345821 ], + [ 8.6392337, 46.8345878 ], + [ 8.6392312, 46.8345923 ], + [ 8.6397973, 46.834642099999996 ], + [ 8.6398117, 46.8346429 ], + [ 8.6398238, 46.8346422 ], + [ 8.6398321, 46.8346406 ], + [ 8.6398393, 46.8346396 ], + [ 8.6398477, 46.8346375 ], + [ 8.639855, 46.8346358 ], + [ 8.639865499999999, 46.8346325 ], + [ 8.6398733, 46.8346296 ], + [ 8.6398802, 46.8346269 ], + [ 8.6398873, 46.8346232 ], + [ 8.6398923, 46.8346204 ], + [ 8.6398972, 46.8346168 ], + [ 8.6399039, 46.8346121 ], + [ 8.6399083, 46.8346082 ], + [ 8.6399115, 46.8346046 ], + [ 8.6399148, 46.834601 ], + [ 8.6399178, 46.8345967 ], + [ 8.6399204, 46.8345921 ], + [ 8.6399227, 46.8345856 ], + [ 8.6399242, 46.8345798 ], + [ 8.6399243, 46.834576 ], + [ 8.6399492, 46.8345776 ], + [ 8.6399829, 46.834323499999996 ], + [ 8.6400301, 46.8339731 ], + [ 8.6400416, 46.8338992 ], + [ 8.6400395, 46.8339016 ], + [ 8.6400377, 46.8339038 ], + [ 8.6400346, 46.8339065 ], + [ 8.6400309, 46.8339094 ], + [ 8.6400268, 46.8339118 ], + [ 8.6400225, 46.833914 ], + [ 8.6400187, 46.8339156 ], + [ 8.6400154, 46.8339169 ], + [ 8.6400111, 46.8339183 ], + [ 8.6400075, 46.8339194 ], + [ 8.6400041, 46.8339203 ], + [ 8.6399999, 46.8339211 ], + [ 8.639995, 46.8339219 ], + [ 8.6399905, 46.8339225 ], + [ 8.6399858, 46.833923 ], + [ 8.6399831, 46.8339232 ], + [ 8.6399799, 46.8339233 ], + [ 8.6399766, 46.8339233 ], + [ 8.6393606, 46.8338721 ], + [ 8.6394153, 46.8335594 ], + [ 8.6394224, 46.8335242 ], + [ 8.6395669, 46.8328363 ], + [ 8.6391405, 46.8327598 ], + [ 8.6390813, 46.8327487 ], + [ 8.6389958, 46.8329718 ], + [ 8.6387326, 46.8329242 ], + [ 8.6384695, 46.833474 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSXE002", + "country" : "CHE", + "name" : [ + { + "text" : "LSXE Erstfeld (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSXE Erstfeld (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSXE Erstfeld (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSXE Erstfeld (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swiss Helicopter AG", + "lang" : "de-CH" + }, + { + "text" : "Swiss Helicopter AG", + "lang" : "fr-CH" + }, + { + "text" : "Swiss Helicopter AG", + "lang" : "it-CH" + }, + { + "text" : "Swiss Helicopter AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Basis Erstfeld", + "lang" : "de-CH" + }, + { + "text" : "Basis Erstfeld", + "lang" : "fr-CH" + }, + { + "text" : "Basis Erstfeld", + "lang" : "it-CH" + }, + { + "text" : "Basis Erstfeld", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Markus Lerch", + "lang" : "de-CH" + }, + { + "text" : "Markus Lerch", + "lang" : "fr-CH" + }, + { + "text" : "Markus Lerch", + "lang" : "it-CH" + }, + { + "text" : "Markus Lerch", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swisshelicopter.ch/en/about-us/helicopter-bases/erstfeld", + "email" : "markus.lerch@swisshelicopter.ch", + "phone" : "0041418820050", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P02DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.5879124, 46.6672765 ], + [ 8.587904, 46.6671353 ], + [ 8.5878849, 46.6669946 ], + [ 8.5878552, 46.6668549 ], + [ 8.5878148, 46.6667163 ], + [ 8.587764, 46.6665794 ], + [ 8.5877028, 46.6664446 ], + [ 8.5876315, 46.6663121 ], + [ 8.5875502, 46.6661824 ], + [ 8.5874591, 46.6660558 ], + [ 8.5873586, 46.6659326 ], + [ 8.5872488, 46.6658132 ], + [ 8.5871301, 46.665698 ], + [ 8.5870028, 46.6655872 ], + [ 8.5868672, 46.6654811 ], + [ 8.5867238, 46.66538 ], + [ 8.5865729, 46.6652843 ], + [ 8.5864149, 46.6651941 ], + [ 8.5862503, 46.6651097 ], + [ 8.5860795, 46.6650314 ], + [ 8.5859029, 46.6649594 ], + [ 8.5857211, 46.6648938 ], + [ 8.5855346, 46.6648348 ], + [ 8.5853439, 46.6647827 ], + [ 8.5851495, 46.6647375 ], + [ 8.5849519, 46.6646993 ], + [ 8.5847517, 46.6646684 ], + [ 8.584549299999999, 46.6646446 ], + [ 8.5843455, 46.6646282 ], + [ 8.5841407, 46.6646192 ], + [ 8.583935499999999, 46.6646176 ], + [ 8.5837304, 46.6646233 ], + [ 8.5835261, 46.6646365 ], + [ 8.5833231, 46.664657 ], + [ 8.5831218, 46.6646847 ], + [ 8.582923, 46.6647197 ], + [ 8.5827271, 46.6647618 ], + [ 8.5825347, 46.6648109 ], + [ 8.5823462, 46.6648669 ], + [ 8.5821623, 46.6649295 ], + [ 8.5819834, 46.6649988 ], + [ 8.58181, 46.6650743 ], + [ 8.5816426, 46.665156 ], + [ 8.5814816, 46.6652437 ], + [ 8.5813275, 46.665337 ], + [ 8.5811807, 46.6654357 ], + [ 8.5810416, 46.6655396 ], + [ 8.5809106, 46.6656484 ], + [ 8.5807881, 46.6657617 ], + [ 8.5806743, 46.6658793 ], + [ 8.5805696, 46.6660008 ], + [ 8.5804743, 46.666126 ], + [ 8.5803887, 46.6662543 ], + [ 8.5803129, 46.6663856 ], + [ 8.5802472, 46.6665195 ], + [ 8.5801918, 46.6666555 ], + [ 8.5801468, 46.6667934 ], + [ 8.5801123, 46.6669327 ], + [ 8.5800885, 46.667073 ], + [ 8.5800754, 46.667214 ], + [ 8.580073, 46.6673553 ], + [ 8.5800814, 46.6674964 ], + [ 8.5801004, 46.6676371 ], + [ 8.5801302, 46.6677769 ], + [ 8.5801705, 46.6679154 ], + [ 8.5802213, 46.6680523 ], + [ 8.5802825, 46.6681872 ], + [ 8.5803538, 46.6683197 ], + [ 8.5804351, 46.6684494 ], + [ 8.5805261, 46.668576 ], + [ 8.5806267, 46.6686992 ], + [ 8.5807364, 46.6688186 ], + [ 8.5808551, 46.6689338 ], + [ 8.5809824, 46.6690446 ], + [ 8.581118, 46.6691507 ], + [ 8.5812614, 46.6692518 ], + [ 8.5814123, 46.6693475 ], + [ 8.5815703, 46.6694377 ], + [ 8.581735, 46.6695221 ], + [ 8.5819058, 46.6696004 ], + [ 8.5820823, 46.6696725 ], + [ 8.5822641, 46.669738100000004 ], + [ 8.5824506, 46.669797 ], + [ 8.5826414, 46.6698492 ], + [ 8.5828358, 46.6698944 ], + [ 8.5830334, 46.6699326 ], + [ 8.5832337, 46.6699635 ], + [ 8.583436, 46.6699873 ], + [ 8.5836399, 46.6700036 ], + [ 8.5838447, 46.6700127 ], + [ 8.5840499, 46.6700143 ], + [ 8.584255, 46.6700085 ], + [ 8.5844594, 46.6699954 ], + [ 8.5846624, 46.6699749 ], + [ 8.5848637, 46.6699471 ], + [ 8.5850625, 46.6699122 ], + [ 8.5852584, 46.6698701 ], + [ 8.5854509, 46.669821 ], + [ 8.5856393, 46.669765 ], + [ 8.5858233, 46.6697023 ], + [ 8.5860022, 46.6696331 ], + [ 8.5861756, 46.6695575 ], + [ 8.586343, 46.6694758 ], + [ 8.586504, 46.6693882 ], + [ 8.5866581, 46.6692948 ], + [ 8.5868049, 46.6691961 ], + [ 8.586944, 46.6690922 ], + [ 8.587075, 46.6689834 ], + [ 8.5871975, 46.6688701 ], + [ 8.5873113, 46.6687525 ], + [ 8.587416, 46.668631 ], + [ 8.5875112, 46.6685058 ], + [ 8.5875969, 46.6683774 ], + [ 8.5876726, 46.6682461 ], + [ 8.5877383, 46.6681123 ], + [ 8.5877937, 46.6679762 ], + [ 8.5878387, 46.6678384 ], + [ 8.5878731, 46.6676991 ], + [ 8.5878969, 46.6675588 ], + [ 8.58791, 46.6674178 ], + [ 8.5879124, 46.6672765 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0047", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Göschenen", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Göschenen", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Göschenen", + "lang" : "it-CH" + }, + { + "text" : "Substation Göschenen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5516234, 47.5204267 ], + [ 7.5516344, 47.5204139 ], + [ 7.5515668, 47.5203032 ], + [ 7.5514448, 47.5200936 ], + [ 7.5513456, 47.5199225 ], + [ 7.5512734, 47.519804 ], + [ 7.5511967, 47.5196731 ], + [ 7.5511576, 47.5196073 ], + [ 7.5510859, 47.519554 ], + [ 7.55101, 47.5195008 ], + [ 7.550934, 47.5194535 ], + [ 7.5508928, 47.5194323 ], + [ 7.5508489999999995, 47.5194143 ], + [ 7.5508608, 47.5193751 ], + [ 7.5508083, 47.5193121 ], + [ 7.5507445, 47.5192554 ], + [ 7.5506757, 47.5192028 ], + [ 7.5505679, 47.519148799999996 ], + [ 7.5504692, 47.5191367 ], + [ 7.5503067, 47.5190131 ], + [ 7.5501503, 47.5189164 ], + [ 7.5501138999999995, 47.5188938 ], + [ 7.5500603, 47.5188623 ], + [ 7.5499975, 47.5188254 ], + [ 7.5499416, 47.5187934 ], + [ 7.5498902999999995, 47.5187633 ], + [ 7.5498494, 47.5187395 ], + [ 7.5498072, 47.5187152 ], + [ 7.5497643, 47.5186906 ], + [ 7.5497427, 47.5186773 ], + [ 7.5496052, 47.5188344 ], + [ 7.5495529, 47.5188826 ], + [ 7.5494984, 47.5189233 ], + [ 7.5487321, 47.5193708 ], + [ 7.5480081, 47.5197924 ], + [ 7.5473127, 47.5201963 ], + [ 7.5472856, 47.5202393 ], + [ 7.5476079, 47.5205227 ], + [ 7.5481898, 47.5210344 ], + [ 7.5487739, 47.5215489 ], + [ 7.5492509, 47.5219684 ], + [ 7.5493398, 47.5219698 ], + [ 7.5494041, 47.5220257 ], + [ 7.5497685, 47.5218371 ], + [ 7.5498878, 47.5217756 ], + [ 7.5498693, 47.521759 ], + [ 7.5499539, 47.5217155 ], + [ 7.5499723, 47.5217321 ], + [ 7.5500309, 47.5217019 ], + [ 7.5508234, 47.5212917 ], + [ 7.5508063, 47.5212766 ], + [ 7.5508904999999995, 47.5212328 ], + [ 7.5509078, 47.521248 ], + [ 7.5510251, 47.5211873 ], + [ 7.5509587, 47.5211284 ], + [ 7.5509579, 47.5211144 ], + [ 7.5509581, 47.5210385 ], + [ 7.5509583, 47.5210016 ], + [ 7.5511007, 47.5210188 ], + [ 7.5516234, 47.5204267 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns288", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Ziegelei Oberwil", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Ziegelei Oberwil", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Ziegelei Oberwil", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Ziegelei Oberwil", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.2415546, 47.5409235 ], + [ 8.2415357, 47.5405706 ], + [ 8.2414894, 47.5402189 ], + [ 8.2414161, 47.5398692 ], + [ 8.2413158, 47.5395227 ], + [ 8.2411889, 47.5391802 ], + [ 8.2410356, 47.5388426 ], + [ 8.2408565, 47.5385109 ], + [ 8.2406521, 47.5381861 ], + [ 8.2404228, 47.5378689 ], + [ 8.2401693, 47.5375603 ], + [ 8.2398923, 47.5372611 ], + [ 8.2395925, 47.5369721 ], + [ 8.2392708, 47.5366941 ], + [ 8.2389281, 47.536428 ], + [ 8.2385653, 47.5361743 ], + [ 8.2381834, 47.5359338 ], + [ 8.2377835, 47.5357072 ], + [ 8.2373666, 47.5354951 ], + [ 8.2369338, 47.5352981 ], + [ 8.2364864, 47.5351166 ], + [ 8.2360257, 47.5349513 ], + [ 8.2355527, 47.5348025 ], + [ 8.235069, 47.5346707 ], + [ 8.2345757, 47.5345562 ], + [ 8.2340742, 47.5344593 ], + [ 8.2335659, 47.5343803 ], + [ 8.2330523, 47.5343195 ], + [ 8.2325346, 47.534277 ], + [ 8.2320144, 47.5342528 ], + [ 8.231493, 47.5342471 ], + [ 8.2309719, 47.5342599 ], + [ 8.2304525, 47.5342912 ], + [ 8.2299362, 47.5343408 ], + [ 8.2294244, 47.5344087 ], + [ 8.2289186, 47.5344946 ], + [ 8.2284201, 47.5345983 ], + [ 8.2279304, 47.5347195 ], + [ 8.2274506, 47.5348579 ], + [ 8.2269822, 47.5350131 ], + [ 8.2265265, 47.5351847 ], + [ 8.2260846, 47.5353723 ], + [ 8.2256578, 47.5355752 ], + [ 8.2252473, 47.535793 ], + [ 8.2248542, 47.536025 ], + [ 8.2244796, 47.5362707 ], + [ 8.224124400000001, 47.5365292 ], + [ 8.2237897, 47.5368001 ], + [ 8.2234764, 47.5370824 ], + [ 8.2231853, 47.5373754 ], + [ 8.2229173, 47.5376783 ], + [ 8.2226731, 47.5379903 ], + [ 8.2224533, 47.5383106 ], + [ 8.2222585, 47.5386382 ], + [ 8.2220894, 47.5389722 ], + [ 8.2219462, 47.5393118 ], + [ 8.2218296, 47.539656 ], + [ 8.2217396, 47.5400038 ], + [ 8.2216767, 47.5403544 ], + [ 8.221641, 47.5407067 ], + [ 8.2216325, 47.5410598 ], + [ 8.2216514, 47.5414127 ], + [ 8.2216975, 47.5417645 ], + [ 8.2217707, 47.5421141 ], + [ 8.2218709, 47.5424607 ], + [ 8.2219977, 47.5428033 ], + [ 8.2221508, 47.5431408 ], + [ 8.2223298, 47.5434725 ], + [ 8.2225342, 47.5437974 ], + [ 8.2227634, 47.5441146 ], + [ 8.2230169, 47.5444233 ], + [ 8.2232938, 47.5447225 ], + [ 8.2235935, 47.5450116 ], + [ 8.2239151, 47.5452896 ], + [ 8.2242578, 47.5455558 ], + [ 8.2246206, 47.5458095 ], + [ 8.2250025, 47.54605 ], + [ 8.2254025, 47.5462767 ], + [ 8.2258195, 47.5464888 ], + [ 8.2262523, 47.5466859 ], + [ 8.2266997, 47.5468674 ], + [ 8.2271605, 47.5470328 ], + [ 8.2276336, 47.5471816 ], + [ 8.2281174, 47.5473135 ], + [ 8.2286108, 47.547428 ], + [ 8.2291124, 47.5475249 ], + [ 8.2296208, 47.5476038 ], + [ 8.2301346, 47.5476647 ], + [ 8.2306524, 47.5477072 ], + [ 8.2311727, 47.5477314 ], + [ 8.2316942, 47.5477371 ], + [ 8.2322155, 47.5477243 ], + [ 8.232735, 47.547693 ], + [ 8.2332515, 47.5476434 ], + [ 8.2337633, 47.5475755 ], + [ 8.2342692, 47.5474896 ], + [ 8.2347678, 47.5473859 ], + [ 8.2352577, 47.5472646 ], + [ 8.2357375, 47.5471262 ], + [ 8.236206, 47.5469709 ], + [ 8.2366618, 47.5467992 ], + [ 8.2371038, 47.5466117 ], + [ 8.2375306, 47.5464087 ], + [ 8.2379411, 47.5461909 ], + [ 8.2383343, 47.5459588 ], + [ 8.2387089, 47.5457131 ], + [ 8.2390641, 47.5454545 ], + [ 8.2393987, 47.5451836 ], + [ 8.239712, 47.5449013 ], + [ 8.240003, 47.5446082 ], + [ 8.240271, 47.5443053 ], + [ 8.2405152, 47.5439932 ], + [ 8.2407349, 47.5436729 ], + [ 8.2409295, 47.5433453 ], + [ 8.2410986, 47.5430112 ], + [ 8.2412416, 47.5426716 ], + [ 8.2413581, 47.5423274 ], + [ 8.2414479, 47.5419795 ], + [ 8.2415107, 47.541629 ], + [ 8.2415463, 47.5412766 ], + [ 8.2415546, 47.5409235 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "ENSI005", + "country" : "CHE", + "name" : [ + { + "text" : "ZZL Würenlingen", + "lang" : "de-CH" + }, + { + "text" : "ZZL Würenlingen", + "lang" : "fr-CH" + }, + { + "text" : "ZZL Würenlingen", + "lang" : "it-CH" + }, + { + "text" : "ZZL Würenlingen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "ZWILAG Zwischenlager Würenlingen AG", + "lang" : "de-CH" + }, + { + "text" : "ZWILAG Zwischenlager Würenlingen AG", + "lang" : "fr-CH" + }, + { + "text" : "ZWILAG Zwischenlager Würenlingen AG", + "lang" : "it-CH" + }, + { + "text" : "ZWILAG Zwischenlager Würenlingen AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Sicherung", + "lang" : "de-CH" + }, + { + "text" : "Sicherung", + "lang" : "fr-CH" + }, + { + "text" : "Sicherung", + "lang" : "it-CH" + }, + { + "text" : "Sicherung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Sicherungsbeauftragte", + "lang" : "de-CH" + }, + { + "text" : "Sicherungsbeauftragte", + "lang" : "fr-CH" + }, + { + "text" : "Sicherungsbeauftragte", + "lang" : "it-CH" + }, + { + "text" : "Sicherungsbeauftragte", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.zwilag.ch", + "email" : "drohne@zwilag.ch", + "phone" : "0041562974711", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8977157, 46.3010755 ], + [ 7.8976068999999995, 46.2987219 ], + [ 7.8973206, 46.2963755 ], + [ 7.8968576, 46.2940427 ], + [ 7.896219, 46.2917299 ], + [ 7.8954069, 46.2894435 ], + [ 7.8944232, 46.2871896 ], + [ 7.8932709, 46.2849745 ], + [ 7.891953, 46.2828042 ], + [ 7.8904733, 46.2806847 ], + [ 7.8888357, 46.2786217 ], + [ 7.8870447, 46.276621 ], + [ 7.8851053, 46.274688 ], + [ 7.8830229, 46.272828 ], + [ 7.880803, 46.2710461 ], + [ 7.8784519, 46.2693471 ], + [ 7.8759759, 46.2677357 ], + [ 7.8733818, 46.2662164 ], + [ 7.8706768, 46.2647932 ], + [ 7.8678682, 46.2634701 ], + [ 7.8649638, 46.2622507 ], + [ 7.8619714, 46.2611383 ], + [ 7.8588994, 46.260136 ], + [ 7.8557559999999995, 46.2592464 ], + [ 7.8525499, 46.2584721 ], + [ 7.8492899, 46.2578152 ], + [ 7.8459848, 46.2572774 ], + [ 7.8426438, 46.2568603 ], + [ 7.8392759, 46.2565649 ], + [ 7.8358903, 46.256392 ], + [ 7.8324964, 46.2563422 ], + [ 7.8291033, 46.2564156 ], + [ 7.8257204, 46.256612 ], + [ 7.8223569, 46.2569308 ], + [ 7.8190221, 46.2573712 ], + [ 7.8157249, 46.2579319 ], + [ 7.8124745, 46.2586115 ], + [ 7.8092798, 46.259408 ], + [ 7.8061494, 46.2603194 ], + [ 7.8030919999999995, 46.261343 ], + [ 7.8001159, 46.2624761 ], + [ 7.7972292, 46.2637157 ], + [ 7.7944399, 46.2650583 ], + [ 7.7917556, 46.2665002 ], + [ 7.7891836, 46.2680375 ], + [ 7.786731, 46.269666 ], + [ 7.7844045, 46.2713812 ], + [ 7.7822105, 46.2731785 ], + [ 7.780155, 46.2750529 ], + [ 7.7782437, 46.2769993 ], + [ 7.7764818, 46.2790123 ], + [ 7.7748741, 46.2810866 ], + [ 7.773425, 46.2832162 ], + [ 7.7721386, 46.2853956 ], + [ 7.7710183, 46.2876186 ], + [ 7.7700674, 46.2898792 ], + [ 7.7692882999999995, 46.2921712 ], + [ 7.7686833, 46.2944884 ], + [ 7.768254, 46.2968243 ], + [ 7.7680016, 46.2991725 ], + [ 7.7679269, 46.3015267 ], + [ 7.7680301, 46.3038804 ], + [ 7.7683109, 46.3062272 ], + [ 7.7687685, 46.3085605 ], + [ 7.7694018, 46.310874 ], + [ 7.7702089999999995, 46.3131614 ], + [ 7.7711879, 46.3154164 ], + [ 7.7723359, 46.3176327 ], + [ 7.7736499, 46.3198044 ], + [ 7.7751262, 46.3219254 ], + [ 7.7767608, 46.32399 ], + [ 7.7785492, 46.3259925 ], + [ 7.7804866, 46.3279273 ], + [ 7.7825676999999995, 46.3297892 ], + [ 7.7847867, 46.3315731 ], + [ 7.7871376, 46.333274 ], + [ 7.789614, 46.3348873 ], + [ 7.792209, 46.3364086 ], + [ 7.7949155, 46.3378336 ], + [ 7.7977261, 46.3391585 ], + [ 7.8006332, 46.3403797 ], + [ 7.8036286, 46.3414937 ], + [ 7.8067043, 46.3424975 ], + [ 7.8098516, 46.3433884 ], + [ 7.8130621, 46.3441639 ], + [ 7.8163269, 46.3448219 ], + [ 7.819637, 46.3453606 ], + [ 7.8229833, 46.3457784 ], + [ 7.8263567, 46.3460743 ], + [ 7.8297478, 46.3462474 ], + [ 7.8331474, 46.3462973 ], + [ 7.8365461, 46.3462238 ], + [ 7.8399345, 46.3460271 ], + [ 7.8433034, 46.3457078 ], + [ 7.8466435, 46.3452667 ], + [ 7.8499456, 46.344705 ], + [ 7.8532007, 46.3440244 ], + [ 7.8563998, 46.3432266 ], + [ 7.8595341, 46.3423139 ], + [ 7.862595, 46.3412887 ], + [ 7.8655741, 46.3401539 ], + [ 7.8684633, 46.3389126 ], + [ 7.8712546, 46.3375682 ], + [ 7.8739403, 46.3361244 ], + [ 7.8765131, 46.3345852 ], + [ 7.8789659, 46.3329547 ], + [ 7.881292, 46.3312376 ], + [ 7.8834851, 46.3294384 ], + [ 7.8855391, 46.3275621 ], + [ 7.8874483, 46.3256139 ], + [ 7.8892077, 46.3235991 ], + [ 7.8908123, 46.3215232 ], + [ 7.8922578, 46.319392 ], + [ 7.8935402, 46.3172113 ], + [ 7.894656, 46.3149871 ], + [ 7.8956022, 46.3127254 ], + [ 7.8963763, 46.3104326 ], + [ 7.896976, 46.3081148 ], + [ 7.8973998, 46.3057784 ], + [ 7.8976466, 46.3034298 ], + [ 7.8977157, 46.3010755 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSER001", + "country" : "CHE", + "name" : [ + { + "text" : "LSER Raron", + "lang" : "de-CH" + }, + { + "text" : "LSER Raron", + "lang" : "fr-CH" + }, + { + "text" : "LSER Raron", + "lang" : "it-CH" + }, + { + "text" : "LSER Raron", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Air Zermatt AG", + "lang" : "de-CH" + }, + { + "text" : "Air Zermatt AG", + "lang" : "fr-CH" + }, + { + "text" : "Air Zermatt AG", + "lang" : "it-CH" + }, + { + "text" : "Air Zermatt AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.air-zermatt.ch/en/air-zermatt/contact", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.4496876, 47.3682061 ], + [ 8.4496795, 47.3680649 ], + [ 8.4496605, 47.3679242 ], + [ 8.4496307, 47.3677844 ], + [ 8.4495902, 47.3676459 ], + [ 8.449539, 47.3675089 ], + [ 8.4494774, 47.367374 ], + [ 8.4494055, 47.3672415 ], + [ 8.4493234, 47.3671117 ], + [ 8.4492315, 47.366985 ], + [ 8.449129899999999, 47.3668617 ], + [ 8.449019, 47.3667422 ], + [ 8.448899, 47.3666268 ], + [ 8.4487704, 47.3665159 ], + [ 8.4486333, 47.3664096 ], + [ 8.4484882, 47.3663084 ], + [ 8.4483356, 47.3662125 ], + [ 8.4481757, 47.3661222 ], + [ 8.4480092, 47.3660376 ], + [ 8.4478363, 47.3659591 ], + [ 8.4476576, 47.3658869 ], + [ 8.4474736, 47.3658211 ], + [ 8.4472848, 47.3657619 ], + [ 8.4470917, 47.3657095 ], + [ 8.4468949, 47.3656641 ], + [ 8.4466948, 47.3656257 ], + [ 8.446492, 47.3655945 ], + [ 8.4462871, 47.3655705 ], + [ 8.4460806, 47.3655539 ], + [ 8.4458731, 47.3655446 ], + [ 8.4456652, 47.3655427 ], + [ 8.4454575, 47.3655483 ], + [ 8.4452504, 47.3655611 ], + [ 8.4450446, 47.3655814 ], + [ 8.4448407, 47.3656089 ], + [ 8.4446392, 47.3656436 ], + [ 8.4444406, 47.3656855 ], + [ 8.4442455, 47.3657344 ], + [ 8.4440544, 47.3657901 ], + [ 8.4438679, 47.3658525 ], + [ 8.4436865, 47.3659215 ], + [ 8.4435106, 47.3659969 ], + [ 8.4433408, 47.3660784 ], + [ 8.443177500000001, 47.3661658 ], + [ 8.4430211, 47.3662589 ], + [ 8.4428721, 47.3663575 ], + [ 8.442731, 47.3664612 ], + [ 8.442598, 47.3665698 ], + [ 8.4424735, 47.3666829 ], + [ 8.4423579, 47.3668003 ], + [ 8.4422516, 47.3669217 ], + [ 8.4421547, 47.3670467 ], + [ 8.4420676, 47.367175 ], + [ 8.4419905, 47.3673062 ], + [ 8.441923599999999, 47.3674399 ], + [ 8.4418671, 47.3675759 ], + [ 8.4418212, 47.3677137 ], + [ 8.4417859, 47.3678529 ], + [ 8.4417614, 47.3679932 ], + [ 8.4417478, 47.3681341 ], + [ 8.441745, 47.3682754 ], + [ 8.4417531, 47.3684165 ], + [ 8.4417721, 47.3685572 ], + [ 8.4418018, 47.368697 ], + [ 8.4418423, 47.3688356 ], + [ 8.4418935, 47.3689725 ], + [ 8.4419551, 47.3691074 ], + [ 8.442027, 47.36924 ], + [ 8.442109, 47.3693698 ], + [ 8.4422009, 47.3694965 ], + [ 8.4423025, 47.3696198 ], + [ 8.4424134, 47.3697393 ], + [ 8.4425334, 47.3698547 ], + [ 8.442662, 47.3699656 ], + [ 8.4427991, 47.3700719 ], + [ 8.4429442, 47.3701731 ], + [ 8.4430968, 47.370269 ], + [ 8.4432566, 47.3703594 ], + [ 8.4434232, 47.3704439 ], + [ 8.4435961, 47.3705224 ], + [ 8.4437748, 47.3705947 ], + [ 8.4439588, 47.3706605 ], + [ 8.4441476, 47.3707197 ], + [ 8.4443407, 47.370772 ], + [ 8.4445376, 47.3708175 ], + [ 8.4447377, 47.3708559 ], + [ 8.4449405, 47.3708871 ], + [ 8.4451454, 47.370911 ], + [ 8.4453519, 47.3709277 ], + [ 8.4455594, 47.3709369 ], + [ 8.4457674, 47.3709388 ], + [ 8.4459751, 47.3709333 ], + [ 8.446182199999999, 47.3709204 ], + [ 8.446388, 47.3709002 ], + [ 8.446592, 47.3708727 ], + [ 8.4467935, 47.3708379 ], + [ 8.4469921, 47.3707961 ], + [ 8.4471872, 47.3707472 ], + [ 8.4473783, 47.3706915 ], + [ 8.4475648, 47.370629 ], + [ 8.4477463, 47.37056 ], + [ 8.4479222, 47.3704847 ], + [ 8.448092, 47.3704031 ], + [ 8.4482553, 47.3703157 ], + [ 8.4484117, 47.3702226 ], + [ 8.4485607, 47.370124 ], + [ 8.4487018, 47.3700203 ], + [ 8.4488348, 47.3699117 ], + [ 8.4489593, 47.3697986 ], + [ 8.4490749, 47.3696811 ], + [ 8.4491812, 47.3695597 ], + [ 8.449278, 47.3694347 ], + [ 8.4493651, 47.3693064 ], + [ 8.4494422, 47.3691753 ], + [ 8.4495091, 47.3690415 ], + [ 8.4495656, 47.3689055 ], + [ 8.4496115, 47.3687678 ], + [ 8.4496468, 47.3686285 ], + [ 8.4496712, 47.3684883 ], + [ 8.4496849, 47.3683473 ], + [ 8.4496876, 47.3682061 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "MZU0001", + "country" : "CHE", + "name" : [ + { + "text" : "Massnahmenzentrum Uitikon", + "lang" : "de-CH" + }, + { + "text" : "Massnahmenzentrum Uitikon", + "lang" : "fr-CH" + }, + { + "text" : "Massnahmenzentrum Uitikon", + "lang" : "it-CH" + }, + { + "text" : "Massnahmenzentrum Uitikon", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "de-CH" + }, + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "fr-CH" + }, + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "it-CH" + }, + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "de-CH" + }, + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "fr-CH" + }, + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "it-CH" + }, + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Reno Berner", + "lang" : "de-CH" + }, + { + "text" : "Reno Berner", + "lang" : "fr-CH" + }, + { + "text" : "Reno Berner", + "lang" : "it-CH" + }, + { + "text" : "Reno Berner", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.zh.ch/de/direktion-der-justiz-und-des-innern/justizvollzug-wiedereingliederung.html", + "email" : "sicherheit-juwe@ji.zh.ch", + "phone" : "0041432583400", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT12H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.0525982, 46.3120911 ], + [ 9.0556727, 46.3059644 ], + [ 9.0567042, 46.3037208 ], + [ 9.0575649, 46.3014428 ], + [ 9.0582522, 46.2991367 ], + [ 9.0587645, 46.2968088 ], + [ 9.0591002, 46.2944656 ], + [ 9.0592586, 46.2921133 ], + [ 9.0592391, 46.2897586 ], + [ 9.0590419, 46.2874078 ], + [ 9.0586675, 46.2850673 ], + [ 9.0581171, 46.2827437 ], + [ 9.057392, 46.2804432 ], + [ 9.0564943, 46.2781722 ], + [ 9.0554265, 46.2759368 ], + [ 9.0541916, 46.2737433 ], + [ 9.0527929, 46.2715975 ], + [ 9.0512343, 46.2695054 ], + [ 9.04952, 46.2674728 ], + [ 9.0476549, 46.2655051 ], + [ 9.045644, 46.2636078 ], + [ 9.0434928, 46.261786 ], + [ 9.0412072, 46.2600448 ], + [ 9.0387935, 46.2583889 ], + [ 9.0362583, 46.2568228 ], + [ 9.0336086, 46.2553508 ], + [ 9.0308516, 46.253977 ], + [ 9.0279949, 46.2527051 ], + [ 9.0250462, 46.2515385 ], + [ 9.0220137, 46.2504805 ], + [ 9.0189057, 46.249534 ], + [ 9.0157306, 46.2487016 ], + [ 9.0124971, 46.2479855 ], + [ 9.0092141, 46.2473877 ], + [ 9.0058906, 46.2469098 ], + [ 9.0025357, 46.2465531 ], + [ 8.9991584, 46.2463186 ], + [ 8.9957682, 46.246207 ], + [ 8.9923741, 46.2462185 ], + [ 8.9889856, 46.2463532 ], + [ 8.9856118, 46.2466106 ], + [ 8.9822621, 46.2469901 ], + [ 8.9789455, 46.2474905 ], + [ 8.9756711, 46.2481106 ], + [ 8.9724479, 46.2488487 ], + [ 8.9692847, 46.2497027 ], + [ 8.9661902, 46.2506703 ], + [ 8.9631727, 46.2517488 ], + [ 8.9602407, 46.2529353 ], + [ 8.957402, 46.2542266 ], + [ 8.9546646, 46.2556191 ], + [ 8.9520357, 46.257109 ], + [ 8.9495228, 46.2586923 ], + [ 8.9471326, 46.2603645 ], + [ 8.9448718, 46.2621212 ], + [ 8.9427464, 46.2639575 ], + [ 8.9407623, 46.2658684 ], + [ 8.9389251, 46.2678487 ], + [ 8.9372397, 46.2698929 ], + [ 8.9357107, 46.2719954 ], + [ 8.9343424, 46.2741506 ], + [ 8.9331385, 46.2763524 ], + [ 8.9300519, 46.2824758 ], + [ 8.9290155, 46.2847182 ], + [ 8.9281498, 46.2869952 ], + [ 8.927457, 46.2893005 ], + [ 8.9269392, 46.2916278 ], + [ 8.9265978, 46.2939707 ], + [ 8.9264337, 46.2963227 ], + [ 8.9264474, 46.2986775 ], + [ 8.9266389, 46.3010285 ], + [ 8.9270077, 46.3033694 ], + [ 8.9275528, 46.3056937 ], + [ 8.9282727, 46.307995 ], + [ 8.9291655, 46.310267 ], + [ 8.9302288, 46.3125036 ], + [ 8.9314596, 46.3146985 ], + [ 8.9328546, 46.3168457 ], + [ 8.93441, 46.3189394 ], + [ 8.9361215, 46.3209738 ], + [ 8.9379845, 46.3229433 ], + [ 8.9399939, 46.3248426 ], + [ 8.9421441, 46.3266663 ], + [ 8.9444293, 46.3284095 ], + [ 8.9468433, 46.3300675 ], + [ 8.9493793, 46.3316356 ], + [ 8.9520304, 46.3331095 ], + [ 8.9547894, 46.3344853 ], + [ 8.9576488, 46.3357591 ], + [ 8.9606006, 46.3369274 ], + [ 8.9636367, 46.337987 ], + [ 8.9667488, 46.338935 ], + [ 8.9699285, 46.3397688 ], + [ 8.9731668, 46.3404862 ], + [ 8.976455, 46.341085 ], + [ 8.979784, 46.3415638 ], + [ 8.9831447, 46.3419211 ], + [ 8.9865278, 46.3421561 ], + [ 8.989924, 46.342268 ], + [ 8.9933241, 46.3422565 ], + [ 8.9967186, 46.3421217 ], + [ 9.0000982, 46.341864 ], + [ 9.0034537, 46.341484 ], + [ 9.0067759, 46.3409828 ], + [ 9.0100555, 46.3403618 ], + [ 9.0132836, 46.3396227 ], + [ 9.0164513, 46.3387675 ], + [ 9.01955, 46.3377985 ], + [ 9.0225711, 46.3367185 ], + [ 9.0255063, 46.3355303 ], + [ 9.0283476, 46.3342373 ], + [ 9.0310871, 46.332843 ], + [ 9.0337174, 46.3313513 ], + [ 9.0362313, 46.3297662 ], + [ 9.0386218, 46.328092 ], + [ 9.0408824, 46.3263335 ], + [ 9.0430069, 46.3244953 ], + [ 9.0449894, 46.3225826 ], + [ 9.0468247, 46.3206006 ], + [ 9.0485076, 46.3185548 ], + [ 9.0500335, 46.3164507 ], + [ 9.0513983, 46.3142942 ], + [ 9.0525982, 46.3120911 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSPR001", + "country" : "CHE", + "name" : [ + { + "text" : "LSPR Lodrino", + "lang" : "de-CH" + }, + { + "text" : "LSPR Lodrino", + "lang" : "fr-CH" + }, + { + "text" : "LSPR Lodrino", + "lang" : "it-CH" + }, + { + "text" : "LSPR Lodrino", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Riviera Airport", + "lang" : "de-CH" + }, + { + "text" : "Riviera Airport", + "lang" : "fr-CH" + }, + { + "text" : "Riviera Airport", + "lang" : "it-CH" + }, + { + "text" : "Riviera Airport", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleiter", + "lang" : "de-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "fr-CH" + }, + { + "text" : "Capo d'aerodromo", + "lang" : "it-CH" + }, + { + "text" : "Capo d'aerodromo", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.riviera-airport.swiss/drones/", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.1330815, 46.7992012 ], + [ 7.129393, 46.8041181 ], + [ 7.1304381, 46.8046483 ], + [ 7.1317212, 46.8053968 ], + [ 7.1345922, 46.8071409 ], + [ 7.1409091, 46.8061543 ], + [ 7.1410428, 46.8057451 ], + [ 7.1412582, 46.8052683 ], + [ 7.1413041, 46.8047906 ], + [ 7.1415004, 46.8045661 ], + [ 7.14182, 46.8043881 ], + [ 7.1420437, 46.8042433 ], + [ 7.1422401, 46.8040998 ], + [ 7.1424532, 46.8038767 ], + [ 7.1428079, 46.803366 ], + [ 7.1443185, 46.7996439 ], + [ 7.1443871, 46.7995119 ], + [ 7.1440605999999995, 46.799323 ], + [ 7.1438824, 46.7992836 ], + [ 7.1430295, 46.7990608 ], + [ 7.1428155, 46.7989429 ], + [ 7.1428201, 46.7987916 ], + [ 7.1430382, 46.798609 ], + [ 7.1415658, 46.7984927 ], + [ 7.1401268, 46.7984875 ], + [ 7.13923, 46.7985129 ], + [ 7.1377006, 46.7985982 ], + [ 7.135289, 46.7988517 ], + [ 7.1335514, 46.799058 ], + [ 7.1331875, 46.7991289 ], + [ 7.1330815, 46.7992012 ] + ] + ], + "layer" : { + "upper" : 300, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "FR007", + "country" : "CHE", + "name" : [ + { + "text" : "HFR Villars-sur-Glâne", + "lang" : "de-CH" + }, + { + "text" : "HFR Villars-sur-Glâne", + "lang" : "fr-CH" + }, + { + "text" : "HFR Villars-sur-Glâne", + "lang" : "it-CH" + }, + { + "text" : "HFR Villars-sur-Glâne", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Freiburger Spital (HFR)", + "lang" : "de-CH" + }, + { + "text" : "Hôpital fribourgeois (HFR)", + "lang" : "fr-CH" + }, + { + "text" : "Hôpital fribourgeois (HFR)", + "lang" : "it-CH" + }, + { + "text" : "Hôpital fribourgeois (HFR)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Die Generaldirektion", + "lang" : "de-CH" + }, + { + "text" : "La direction générale", + "lang" : "fr-CH" + }, + { + "text" : "La direction générale", + "lang" : "it-CH" + }, + { + "text" : "La direction générale", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Sébastien Ruffieux, secrétaire général", + "lang" : "de-CH" + }, + { + "text" : "Sébastien Ruffieux, secrétaire général", + "lang" : "fr-CH" + }, + { + "text" : "Sébastien Ruffieux, secrétaire général", + "lang" : "it-CH" + }, + { + "text" : "Sébastien Ruffieux, secrétaire général", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.fr.ch/police-et-securite/criminalite-ordre-public-et-circulation/drones-legislation-et-demandes-de-derogation", + "email" : "sg@h-fr.ch", + "phone" : "0041263060110", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.532595, 47.4898795 ], + [ 9.5325702, 47.4898989 ], + [ 9.5397392, 47.4905373 ], + [ 9.553973, 47.502286 ], + [ 9.5563689, 47.5029793 ], + [ 9.5606996, 47.5042323 ], + [ 9.5610101, 47.5043221 ], + [ 9.5615857, 47.5044886 ], + [ 9.5618261, 47.5045581 ], + [ 9.5617797, 47.5041642 ], + [ 9.5617628, 47.5040205 ], + [ 9.5617403, 47.5038294 ], + [ 9.5617192, 47.5036502 ], + [ 9.5617019, 47.5035031 ], + [ 9.5616823, 47.5033361 ], + [ 9.5616685, 47.5032194 ], + [ 9.5616278, 47.502873 ], + [ 9.5616071, 47.5026977 ], + [ 9.5615952, 47.5025958 ], + [ 9.5615722, 47.5024011 ], + [ 9.5615343, 47.5020785 ], + [ 9.5615091, 47.5018643 ], + [ 9.5614832, 47.5016449 ], + [ 9.5614583, 47.5014328 ], + [ 9.5614393, 47.5012713 ], + [ 9.5614192, 47.501101 ], + [ 9.5614066, 47.5009937 ], + [ 9.5613867, 47.5008245 ], + [ 9.5613672, 47.5006587 ], + [ 9.5613496, 47.5005092 ], + [ 9.5613222, 47.5002769 ], + [ 9.561307, 47.5001473 ], + [ 9.561287, 47.4999685 ], + [ 9.561261, 47.4996007 ], + [ 9.5612568, 47.4994637 ], + [ 9.5612596, 47.4991023 ], + [ 9.5612688, 47.4989203 ], + [ 9.5612927, 47.4986433 ], + [ 9.5613166, 47.4984497 ], + [ 9.5613377, 47.4983086 ], + [ 9.5613661, 47.4981456 ], + [ 9.5613969, 47.4979909 ], + [ 9.5614292, 47.4978467 ], + [ 9.5614644, 47.4977041 ], + [ 9.5615047, 47.4975549 ], + [ 9.5615561, 47.4973822 ], + [ 9.5616029, 47.4972376 ], + [ 9.5616705, 47.4970456 ], + [ 9.5617279, 47.4968951 ], + [ 9.5617825, 47.4967605 ], + [ 9.5618484, 47.4966077 ], + [ 9.561916, 47.4964601 ], + [ 9.5620019, 47.4962839 ], + [ 9.5620744, 47.4961434 ], + [ 9.5622537, 47.4958232 ], + [ 9.5623401, 47.4956803 ], + [ 9.5625753, 47.4953214 ], + [ 9.5630107, 47.494745 ], + [ 9.5631977, 47.494524 ], + [ 9.563449, 47.4942472 ], + [ 9.5636809, 47.4940093 ], + [ 9.5640144, 47.4936924 ], + [ 9.5643036, 47.4934384 ], + [ 9.5647284, 47.4930951 ], + [ 9.5650737, 47.4928387 ], + [ 9.5655268, 47.4925292 ], + [ 9.5659628, 47.4922566 ], + [ 9.5665489, 47.4919244 ], + [ 9.5671685, 47.4915896 ], + [ 9.5674513, 47.4914368 ], + [ 9.567862, 47.4912148 ], + [ 9.5683769, 47.4909365 ], + [ 9.5692514, 47.4904639 ], + [ 9.5696385, 47.4902547 ], + [ 9.5699732, 47.4900738 ], + [ 9.570611, 47.4897291 ], + [ 9.5709824, 47.4895283 ], + [ 9.5713802, 47.4893133 ], + [ 9.5720031, 47.4889767 ], + [ 9.5726309, 47.4886373 ], + [ 9.5734351, 47.4882027 ], + [ 9.5743133, 47.487728 ], + [ 9.5748914, 47.4874155 ], + [ 9.575686900000001, 47.4869855 ], + [ 9.576395, 47.4866027 ], + [ 9.5766774, 47.4864501 ], + [ 9.5772154, 47.4861592 ], + [ 9.5778638, 47.4858086 ], + [ 9.5784253, 47.4855049 ], + [ 9.5790151, 47.4851828 ], + [ 9.5799625, 47.4846017 ], + [ 9.5807328, 47.4840524 ], + [ 9.5814887, 47.4834284 ], + [ 9.5821768, 47.4827586 ], + [ 9.5824828, 47.4824218 ], + [ 9.5827851, 47.4820592 ], + [ 9.5829959, 47.4817854 ], + [ 9.5831562, 47.4815632 ], + [ 9.583231, 47.4814549 ], + [ 9.5833551, 47.4812681 ], + [ 9.5834668, 47.4810915 ], + [ 9.5835496, 47.4809585 ], + [ 9.583695, 47.480725 ], + [ 9.5838311, 47.4805065 ], + [ 9.5839778, 47.4802709 ], + [ 9.5840694, 47.4801239 ], + [ 9.5841797, 47.4799467 ], + [ 9.584276299999999, 47.4797916 ], + [ 9.5843812, 47.4796231 ], + [ 9.5845191, 47.4794016 ], + [ 9.5847773, 47.4789871 ], + [ 9.5847962, 47.4789567 ], + [ 9.5848116, 47.4789319 ], + [ 9.5848332, 47.4788973 ], + [ 9.5848644, 47.4788472 ], + [ 9.5848908, 47.4788048 ], + [ 9.5849059, 47.4787805 ], + [ 9.584921, 47.4787563 ], + [ 9.5849577, 47.4786973 ], + [ 9.5849998, 47.4786298 ], + [ 9.5850513, 47.4785471 ], + [ 9.5851405, 47.4784038 ], + [ 9.5851702, 47.4783561 ], + [ 9.5852747, 47.4781883 ], + [ 9.5853285, 47.4781019 ], + [ 9.585354, 47.478061 ], + [ 9.5853654, 47.4780426 ], + [ 9.5856082, 47.4776527 ], + [ 9.5853682, 47.477583 ], + [ 9.5852356, 47.4775373 ], + [ 9.5851087, 47.4776863 ], + [ 9.5849397, 47.4778685 ], + [ 9.5844398, 47.4783276 ], + [ 9.5841411, 47.478597 ], + [ 9.5839133, 47.4787757 ], + [ 9.5835986, 47.4789889 ], + [ 9.5832362, 47.4792142 ], + [ 9.5829042, 47.479395 ], + [ 9.5829973, 47.4795387 ], + [ 9.5829821, 47.4796513 ], + [ 9.5829313, 47.4798175 ], + [ 9.5828649, 47.4799583 ], + [ 9.582683, 47.4801496 ], + [ 9.5825468, 47.4803052 ], + [ 9.5823319, 47.480510699999996 ], + [ 9.5818116, 47.4810022 ], + [ 9.5813845, 47.4814009 ], + [ 9.5811254, 47.4816315 ], + [ 9.5807897, 47.4819047 ], + [ 9.5807074, 47.4819933 ], + [ 9.5806276, 47.4820681 ], + [ 9.5805614, 47.4820401 ], + [ 9.5804848, 47.4819941 ], + [ 9.5804243, 47.4819614 ], + [ 9.580411, 47.4819558 ], + [ 9.580388, 47.4819504 ], + [ 9.580368, 47.4819486 ], + [ 9.5803482, 47.4819499 ], + [ 9.580328399999999, 47.4819533 ], + [ 9.5803033, 47.4819639 ], + [ 9.5802865, 47.4819771 ], + [ 9.5802739, 47.4819908 ], + [ 9.5797007, 47.4827573 ], + [ 9.5795867, 47.4829066 ], + [ 9.5793722, 47.4831488 ], + [ 9.579138, 47.4833298 ], + [ 9.5784775, 47.4838357 ], + [ 9.5783651, 47.4839284 ], + [ 9.5782463, 47.4840389 ], + [ 9.5781663, 47.48411 ], + [ 9.5781275, 47.4841403 ], + [ 9.5779756, 47.4842438 ], + [ 9.5775579, 47.484564 ], + [ 9.5770022, 47.4849033 ], + [ 9.5768363, 47.4849915 ], + [ 9.5764009, 47.4852129 ], + [ 9.5759697, 47.4854223 ], + [ 9.5758924, 47.4854606 ], + [ 9.57576, 47.4855276 ], + [ 9.575535, 47.4856376 ], + [ 9.5754304, 47.4856842 ], + [ 9.5753472, 47.4857215 ], + [ 9.5746273, 47.4860345 ], + [ 9.5745147, 47.4860834 ], + [ 9.5743779, 47.4861444 ], + [ 9.5741971, 47.4862252 ], + [ 9.5739144, 47.4863555 ], + [ 9.5737605, 47.4864274 ], + [ 9.5736958, 47.4864575 ], + [ 9.5734453, 47.4865749 ], + [ 9.5733239, 47.4866317 ], + [ 9.573229, 47.4866761 ], + [ 9.5731119, 47.4867313 ], + [ 9.5728848, 47.4868457 ], + [ 9.5726635, 47.4869568 ], + [ 9.572503, 47.4870375 ], + [ 9.5723969, 47.4871039 ], + [ 9.5723228, 47.4870973 ], + [ 9.572288, 47.4870496 ], + [ 9.5720739, 47.4871534 ], + [ 9.5718052, 47.4872872 ], + [ 9.5716136, 47.48738 ], + [ 9.5714282, 47.4874721 ], + [ 9.5712035, 47.487599 ], + [ 9.5711578, 47.4876283 ], + [ 9.5711037, 47.4876621 ], + [ 9.5710006, 47.4877289 ], + [ 9.5709311, 47.4877844 ], + [ 9.5708722, 47.4878241 ], + [ 9.5708299, 47.487848 ], + [ 9.5707398, 47.4878937 ], + [ 9.5705152, 47.4879853 ], + [ 9.5703706, 47.4880531 ], + [ 9.5701861, 47.4881459 ], + [ 9.5700615, 47.488222 ], + [ 9.5702488, 47.4883566 ], + [ 9.5702644, 47.488389 ], + [ 9.5702682, 47.4884399 ], + [ 9.5702904, 47.4884608 ], + [ 9.5704342, 47.4885599 ], + [ 9.570544, 47.4886528 ], + [ 9.5709207, 47.488982 ], + [ 9.5710858, 47.4891231 ], + [ 9.5711013, 47.4891386 ], + [ 9.5711083, 47.4891566 ], + [ 9.571106499999999, 47.4891738 ], + [ 9.5710922, 47.4892031 ], + [ 9.5710693, 47.4892299 ], + [ 9.5710579, 47.4892398 ], + [ 9.5709964, 47.4892762 ], + [ 9.5707285, 47.4894222 ], + [ 9.567955, 47.4909157 ], + [ 9.5679042, 47.4909434 ], + [ 9.5678608, 47.4909607 ], + [ 9.5678204, 47.490969 ], + [ 9.5677986, 47.4909687 ], + [ 9.5677517, 47.4909563 ], + [ 9.5676952, 47.490917 ], + [ 9.567537699999999, 47.4907781 ], + [ 9.5674901, 47.4907416 ], + [ 9.5674266, 47.4907153 ], + [ 9.567376, 47.490707 ], + [ 9.5673589, 47.4907081 ], + [ 9.5672995, 47.490727 ], + [ 9.5670757, 47.4908197 ], + [ 9.5670178, 47.49085 ], + [ 9.5669897, 47.490869 ], + [ 9.5668984, 47.4909288 ], + [ 9.5668369, 47.4909733 ], + [ 9.5667916, 47.4910189 ], + [ 9.566625, 47.4911988 ], + [ 9.5665716, 47.4912437 ], + [ 9.5664236, 47.4913396 ], + [ 9.5663324, 47.4914291 ], + [ 9.5659046, 47.4917346 ], + [ 9.565764099999999, 47.4918172 ], + [ 9.5656549, 47.4918922 ], + [ 9.5655732, 47.4919291 ], + [ 9.5655215, 47.4919664 ], + [ 9.5652825, 47.4921332 ], + [ 9.5650456, 47.492306 ], + [ 9.5649166, 47.4923943 ], + [ 9.5648115, 47.4924791 ], + [ 9.5647064, 47.4925639 ], + [ 9.56462, 47.4926371 ], + [ 9.5645406, 47.4927042 ], + [ 9.5645398, 47.4927394 ], + [ 9.5642388, 47.4930029 ], + [ 9.5638705, 47.4933254 ], + [ 9.5636043, 47.493225 ], + [ 9.5635701, 47.4932228 ], + [ 9.5635525, 47.4932274 ], + [ 9.5633581, 47.493482 ], + [ 9.5631158, 47.493765 ], + [ 9.5629678, 47.4939669 ], + [ 9.5628056, 47.4941801 ], + [ 9.5624365, 47.4946771 ], + [ 9.5623112, 47.4948788 ], + [ 9.5621963, 47.4950756 ], + [ 9.5620261, 47.4954427 ], + [ 9.5617751, 47.4959788 ], + [ 9.5616067, 47.4963117 ], + [ 9.5615372, 47.4966239 ], + [ 9.5614924, 47.496731 ], + [ 9.5614476, 47.4968382 ], + [ 9.5613535, 47.4970415 ], + [ 9.5613261, 47.4970921 ], + [ 9.5613109, 47.4971164 ], + [ 9.5611731, 47.4972542 ], + [ 9.561119, 47.4973436 ], + [ 9.5610922, 47.4974022 ], + [ 9.5610483, 47.4975019 ], + [ 9.5609994, 47.4976131 ], + [ 9.5609196, 47.4977816 ], + [ 9.560861, 47.4978834 ], + [ 9.5611161, 47.4981479 ], + [ 9.5611413, 47.4982459 ], + [ 9.5608036, 47.4982185 ], + [ 9.5606265, 47.4984834 ], + [ 9.5605891, 47.4987805 ], + [ 9.560456, 47.498772 ], + [ 9.5603153, 47.4987658 ], + [ 9.560211, 47.4988567 ], + [ 9.5601092, 47.4989356 ], + [ 9.559751, 47.4991641 ], + [ 9.5596902, 47.4992091 ], + [ 9.5592127, 47.499552 ], + [ 9.5590287, 47.4996768 ], + [ 9.5587915, 47.4998397 ], + [ 9.558648699999999, 47.4999532 ], + [ 9.5583444, 47.500155 ], + [ 9.5580442, 47.5002995 ], + [ 9.5577212, 47.5004046 ], + [ 9.5576274, 47.500436 ], + [ 9.5575819, 47.5004512 ], + [ 9.5575413, 47.5004636 ], + [ 9.5574571, 47.5004888 ], + [ 9.5573993, 47.5005062 ], + [ 9.557327, 47.500537800000004 ], + [ 9.5572402, 47.5005758 ], + [ 9.5571457, 47.5006273 ], + [ 9.5571033, 47.5006389 ], + [ 9.5570785, 47.500626 ], + [ 9.5570285, 47.5006605 ], + [ 9.557042599999999, 47.5006971 ], + [ 9.5570313, 47.5007308 ], + [ 9.5567555, 47.5008386 ], + [ 9.5567252, 47.5008505 ], + [ 9.5566398, 47.5008839 ], + [ 9.5565971, 47.5008998 ], + [ 9.5563818, 47.5009818 ], + [ 9.5562971, 47.5010081 ], + [ 9.5561976, 47.5010335 ], + [ 9.5558318, 47.5011018 ], + [ 9.555738, 47.5011187 ], + [ 9.5556683, 47.5011279 ], + [ 9.5555976, 47.5011323 ], + [ 9.5555403, 47.5011271 ], + [ 9.5554425, 47.5011025 ], + [ 9.5553512, 47.5010724 ], + [ 9.5552699, 47.5010321 ], + [ 9.555089, 47.5009316 ], + [ 9.5550701, 47.5009187 ], + [ 9.5550611, 47.5009065 ], + [ 9.5550601, 47.5008967 ], + [ 9.5550784, 47.5008796 ], + [ 9.555087, 47.5008738 ], + [ 9.5551047, 47.500865 ], + [ 9.5551653, 47.5008456 ], + [ 9.5551754, 47.5008161 ], + [ 9.5552238, 47.5007762 ], + [ 9.5552491, 47.5007618 ], + [ 9.55515, 47.500617 ], + [ 9.5550841, 47.5005462 ], + [ 9.5550277, 47.5005009 ], + [ 9.554986, 47.5004454 ], + [ 9.5553554, 47.5001959 ], + [ 9.5554335, 47.5001442 ], + [ 9.5554526, 47.5001319 ], + [ 9.555697, 47.4999908 ], + [ 9.5559898, 47.4998291 ], + [ 9.5562827, 47.4996674 ], + [ 9.5567993, 47.4993781 ], + [ 9.557277599999999, 47.4991103 ], + [ 9.5571061, 47.4989825 ], + [ 9.5566099, 47.4986395 ], + [ 9.5565525, 47.4985745 ], + [ 9.5565606, 47.4985253 ], + [ 9.5566204, 47.4984445 ], + [ 9.5567002, 47.4983807 ], + [ 9.5575907, 47.4978145 ], + [ 9.55765, 47.497768 ], + [ 9.5576828, 47.4977221 ], + [ 9.5577144, 47.4976665 ], + [ 9.5577445, 47.4976291 ], + [ 9.5578277, 47.4975607 ], + [ 9.5581921, 47.4973384 ], + [ 9.5582688, 47.4973737 ], + [ 9.5583356, 47.4974076 ], + [ 9.5587816, 47.4977166 ], + [ 9.5588581, 47.4976681 ], + [ 9.5589963, 47.497583 ], + [ 9.5592194, 47.4974456 ], + [ 9.5597123, 47.497114 ], + [ 9.5598692, 47.4970078 ], + [ 9.5599272, 47.496991 ], + [ 9.5599362, 47.4969809 ], + [ 9.5600347, 47.4969115 ], + [ 9.5602166, 47.4970301 ], + [ 9.5606346, 47.4973028 ], + [ 9.5607034, 47.4972417 ], + [ 9.5607096, 47.4972308 ], + [ 9.5607603, 47.4971046 ], + [ 9.5608834, 47.4968251 ], + [ 9.5609375, 47.4967118 ], + [ 9.5609908, 47.4965934 ], + [ 9.561039300000001, 47.4964699 ], + [ 9.5616318, 47.4951957 ], + [ 9.5608502, 47.4948033 ], + [ 9.5605152, 47.4945208 ], + [ 9.5607222, 47.4944212 ], + [ 9.560582, 47.4942691 ], + [ 9.5604197, 47.4940448 ], + [ 9.5602936, 47.4938029 ], + [ 9.5600453, 47.4932959 ], + [ 9.5600186, 47.4932406 ], + [ 9.5599866, 47.4931999 ], + [ 9.559865, 47.4931029 ], + [ 9.5597105, 47.4930213 ], + [ 9.5595333, 47.492943 ], + [ 9.559403, 47.4928867 ], + [ 9.5592718, 47.4928255 ], + [ 9.5592017, 47.4927893 ], + [ 9.5591552, 47.4927555 ], + [ 9.5590358, 47.492732 ], + [ 9.5588394, 47.4927038 ], + [ 9.5585352, 47.4926714 ], + [ 9.5582177, 47.4926522 ], + [ 9.5579943, 47.4926477 ], + [ 9.5578795, 47.4926485 ], + [ 9.5576875, 47.4926539 ], + [ 9.5576102, 47.4926564 ], + [ 9.5574472, 47.4926615 ], + [ 9.5572842, 47.4926667 ], + [ 9.5571547, 47.4926693 ], + [ 9.5569621, 47.492673 ], + [ 9.5566467, 47.4926722 ], + [ 9.5564999, 47.4926711 ], + [ 9.5563753, 47.4926678 ], + [ 9.5562512, 47.4926593 ], + [ 9.5561299, 47.492646 ], + [ 9.55601, 47.4926279 ], + [ 9.5558881, 47.4926095 ], + [ 9.5557662, 47.4925912 ], + [ 9.5556315, 47.4925742 ], + [ 9.5554962, 47.4925599 ], + [ 9.5553755, 47.4925495 ], + [ 9.5552545, 47.4925414 ], + [ 9.5551265, 47.4925351 ], + [ 9.5549985, 47.4925289 ], + [ 9.5548758, 47.4925235 ], + [ 9.5548758, 47.4925237 ], + [ 9.5548718, 47.4925236 ], + [ 9.5547186, 47.4925201 ], + [ 9.5545195, 47.4925051 ], + [ 9.5544653, 47.4924954 ], + [ 9.5542899, 47.4924422 ], + [ 9.5541084, 47.4923836 ], + [ 9.5539476, 47.492333 ], + [ 9.5538493, 47.4923026 ], + [ 9.5534399, 47.4921804 ], + [ 9.5533501, 47.4921552 ], + [ 9.5532514, 47.4921306 ], + [ 9.5531635, 47.4921119 ], + [ 9.5530793, 47.4920995 ], + [ 9.5530261, 47.4920924 ], + [ 9.5529482, 47.4920843 ], + [ 9.5529084, 47.4920801 ], + [ 9.5527693, 47.4920656 ], + [ 9.5526822, 47.4920512 ], + [ 9.5526599, 47.4920893 ], + [ 9.5526547, 47.4921012 ], + [ 9.5523455, 47.4920787 ], + [ 9.5522872, 47.492075 ], + [ 9.5519986, 47.4920724 ], + [ 9.5518389, 47.4920744 ], + [ 9.5517928, 47.492075 ], + [ 9.5517522, 47.4920754 ], + [ 9.5517022, 47.4920757 ], + [ 9.5516556, 47.4920751 ], + [ 9.5516063, 47.4920744 ], + [ 9.551554, 47.4920737 ], + [ 9.5514909, 47.4920729 ], + [ 9.5513427, 47.4920709 ], + [ 9.551334, 47.492071 ], + [ 9.5513099, 47.4920708 ], + [ 9.5512764, 47.4920698 ], + [ 9.5512451, 47.492068 ], + [ 9.551216, 47.4920655 ], + [ 9.5511577, 47.4920594 ], + [ 9.5510944, 47.4920528 ], + [ 9.5509855, 47.4920414 ], + [ 9.5509496, 47.4920377 ], + [ 9.5509072, 47.4920268 ], + [ 9.5508348, 47.4920082 ], + [ 9.5507707, 47.4919839 ], + [ 9.5506863, 47.4919162 ], + [ 9.5506429, 47.4918779 ], + [ 9.5506139, 47.4918535 ], + [ 9.5504947, 47.4919481 ], + [ 9.5504702, 47.4919671 ], + [ 9.5506723, 47.4920897 ], + [ 9.5504769, 47.492263 ], + [ 9.5502593, 47.4924565 ], + [ 9.5500945, 47.4923576 ], + [ 9.5500086, 47.492306 ], + [ 9.549921, 47.492251 ], + [ 9.5498431, 47.4922066 ], + [ 9.5496879, 47.4921124 ], + [ 9.549608899999999, 47.4921077 ], + [ 9.5495765, 47.4921061 ], + [ 9.5495676, 47.4921297 ], + [ 9.54956, 47.4921372 ], + [ 9.5495385, 47.4921582 ], + [ 9.5495211, 47.4921752 ], + [ 9.5495039, 47.4921919 ], + [ 9.549487599999999, 47.4922078 ], + [ 9.5494684, 47.4922252 ], + [ 9.5494666, 47.4922295 ], + [ 9.5494976, 47.4924251 ], + [ 9.5495005, 47.4924562 ], + [ 9.5495044, 47.4924907 ], + [ 9.5495064, 47.4925087 ], + [ 9.5495069, 47.492555 ], + [ 9.5495007, 47.4926021 ], + [ 9.5494974, 47.4926186 ], + [ 9.5494959, 47.4926253 ], + [ 9.549495199999999, 47.4926283 ], + [ 9.5494927, 47.4926328 ], + [ 9.5494923, 47.4926334 ], + [ 9.5494889, 47.4926384 ], + [ 9.5494846, 47.4926431 ], + [ 9.5494839, 47.4926439 ], + [ 9.5494828, 47.4926448 ], + [ 9.5494799, 47.4926473 ], + [ 9.5494781, 47.4926488 ], + [ 9.5494768, 47.4926496 ], + [ 9.5494675, 47.4926551 ], + [ 9.549457, 47.4926594 ], + [ 9.5494567, 47.4926596 ], + [ 9.5494526, 47.4926611 ], + [ 9.5494487, 47.4926618 ], + [ 9.5494412, 47.4926634 ], + [ 9.5494401, 47.4926636 ], + [ 9.5494315, 47.4926647 ], + [ 9.5494276, 47.4926647 ], + [ 9.5494191, 47.4926647 ], + [ 9.5494106, 47.4926639 ], + [ 9.5493881, 47.492662 ], + [ 9.5493879, 47.492662 ], + [ 9.5493878, 47.492662 ], + [ 9.549369, 47.4926589 ], + [ 9.5493508, 47.4926545 ], + [ 9.5493507, 47.4926545 ], + [ 9.5493506, 47.4926544 ], + [ 9.5493295, 47.4926474 ], + [ 9.5493227, 47.4926451 ], + [ 9.5493155, 47.4926414 ], + [ 9.5493151, 47.4926412 ], + [ 9.5492944, 47.4926298 ], + [ 9.5492763, 47.4926165 ], + [ 9.5492612, 47.4926015 ], + [ 9.5492573, 47.4925974 ], + [ 9.5492548, 47.4925936 ], + [ 9.5492488, 47.4925845 ], + [ 9.549247, 47.4925817 ], + [ 9.5492459, 47.4925791 ], + [ 9.5492383, 47.4925597 ], + [ 9.5492347, 47.4925359 ], + [ 9.549230099999999, 47.4925059 ], + [ 9.5492285, 47.4924951 ], + [ 9.5492242, 47.4924671 ], + [ 9.5492208, 47.4924452 ], + [ 9.5492197, 47.4924381 ], + [ 9.5492155, 47.4924129 ], + [ 9.5491983, 47.4923626 ], + [ 9.5491715, 47.4923163 ], + [ 9.5491549, 47.4922948 ], + [ 9.5491419, 47.4922801 ], + [ 9.5491314, 47.4922659 ], + [ 9.549131, 47.4922654 ], + [ 9.5491082, 47.4922374 ], + [ 9.5490578, 47.4921858 ], + [ 9.5490318, 47.4921633 ], + [ 9.5490129, 47.4921482 ], + [ 9.5489795, 47.4921224 ], + [ 9.5489442, 47.4920922 ], + [ 9.54891, 47.4920603 ], + [ 9.5488392, 47.4919853 ], + [ 9.5487125, 47.4918465 ], + [ 9.5486571, 47.4917855 ], + [ 9.5485998, 47.4917222 ], + [ 9.5485418, 47.4916782 ], + [ 9.5484817, 47.4916633 ], + [ 9.5482685, 47.4916687 ], + [ 9.5482348, 47.4916696 ], + [ 9.5479579, 47.4915031 ], + [ 9.5478975, 47.4912777 ], + [ 9.5479458, 47.4911223 ], + [ 9.5479249, 47.4910565 ], + [ 9.5473398, 47.4909917 ], + [ 9.5471983, 47.4909854 ], + [ 9.5470055, 47.4910213 ], + [ 9.54686, 47.491063 ], + [ 9.5466146, 47.4911412 ], + [ 9.5465389, 47.4911728 ], + [ 9.5464896, 47.491214 ], + [ 9.5460324, 47.4910777 ], + [ 9.5459328, 47.4908979 ], + [ 9.5458553, 47.4906372 ], + [ 9.545805099999999, 47.4904972 ], + [ 9.545723, 47.4903148 ], + [ 9.5456491, 47.4899873 ], + [ 9.5456215, 47.4899414 ], + [ 9.5455886, 47.4898995 ], + [ 9.5455495, 47.4898602 ], + [ 9.5454911, 47.489854 ], + [ 9.545444700000001, 47.4898218 ], + [ 9.545206499999999, 47.4893646 ], + [ 9.545191299999999, 47.489329 ], + [ 9.5451127, 47.488986 ], + [ 9.544914200000001, 47.4888588 ], + [ 9.5447942, 47.4888225 ], + [ 9.5447594, 47.4887797 ], + [ 9.5446721, 47.488578 ], + [ 9.5446295, 47.4885483 ], + [ 9.5444961, 47.4885056 ], + [ 9.5444, 47.4884097 ], + [ 9.5443486, 47.4883418 ], + [ 9.5442669, 47.4883025 ], + [ 9.5442024, 47.4882331 ], + [ 9.5441433, 47.4880999 ], + [ 9.5440863, 47.4880479 ], + [ 9.5440661, 47.4879963 ], + [ 9.5440717, 47.4879196 ], + [ 9.5440917, 47.4878369 ], + [ 9.5441928, 47.4876233 ], + [ 9.5443643, 47.4873874 ], + [ 9.5443596, 47.4872461 ], + [ 9.544266799999999, 47.4870384 ], + [ 9.5439647, 47.4867213 ], + [ 9.5439698, 47.4866536 ], + [ 9.5438977, 47.4864628 ], + [ 9.5438992, 47.4864376 ], + [ 9.5439042, 47.4863183 ], + [ 9.5438722, 47.4862113 ], + [ 9.5438072, 47.4860913 ], + [ 9.5437374, 47.485927 ], + [ 9.5437444, 47.4859032 ], + [ 9.5438299, 47.4858475 ], + [ 9.5439124, 47.4858111 ], + [ 9.5440312, 47.4857889 ], + [ 9.5441843, 47.4857912 ], + [ 9.5441917, 47.4857266 ], + [ 9.5441541, 47.4857192 ], + [ 9.5440795, 47.4856849 ], + [ 9.5440369, 47.4856426 ], + [ 9.5439988, 47.4855684 ], + [ 9.5437909, 47.4853888 ], + [ 9.5436446, 47.485239 ], + [ 9.5435381, 47.4851191 ], + [ 9.5433966, 47.4850143 ], + [ 9.543301, 47.484948 ], + [ 9.5432177, 47.4849128 ], + [ 9.5433049, 47.484495 ], + [ 9.5433082, 47.4844696 ], + [ 9.543282, 47.4843887 ], + [ 9.5432719, 47.4843118 ], + [ 9.543284, 47.4842852 ], + [ 9.5432802, 47.4842415 ], + [ 9.5433425, 47.4841694 ], + [ 9.5431328, 47.4840187 ], + [ 9.5430057, 47.4839721 ], + [ 9.5429229, 47.4839288 ], + [ 9.5426921, 47.4838909 ], + [ 9.5426538, 47.4838859 ], + [ 9.5426209, 47.4838727 ], + [ 9.5424407, 47.4838734 ], + [ 9.5423128, 47.4839009 ], + [ 9.5422832, 47.4839129 ], + [ 9.5421075, 47.4840477 ], + [ 9.5421044, 47.4840458 ], + [ 9.5419616, 47.4841455 ], + [ 9.5418366, 47.4842319 ], + [ 9.5418286, 47.4842549 ], + [ 9.5418238, 47.484251 ], + [ 9.5418148, 47.4842378 ], + [ 9.5417871, 47.484174 ], + [ 9.5417273, 47.4840878 ], + [ 9.5416591, 47.4840287 ], + [ 9.5416165, 47.4840032 ], + [ 9.5411402, 47.4838824 ], + [ 9.5409084, 47.4838306 ], + [ 9.5405698, 47.4837471 ], + [ 9.5405077, 47.4837273 ], + [ 9.5405144, 47.4837221 ], + [ 9.5403575, 47.4836583 ], + [ 9.5402472, 47.4835523 ], + [ 9.540242899999999, 47.4834444 ], + [ 9.5404036, 47.4831446 ], + [ 9.5403905, 47.482812 ], + [ 9.5400472, 47.4825213 ], + [ 9.539168, 47.4821054 ], + [ 9.5382964, 47.4818783 ], + [ 9.538224, 47.4817267 ], + [ 9.5380506, 47.4817028 ], + [ 9.5379328, 47.4820828 ], + [ 9.533386, 47.4812115 ], + [ 9.533362, 47.481275 ], + [ 9.5330559, 47.4812535 ], + [ 9.5326694, 47.4815484 ], + [ 9.5319909, 47.4828563 ], + [ 9.5314264, 47.4826775 ], + [ 9.5323716, 47.4814009 ], + [ 9.5323655, 47.481248 ], + [ 9.5322552, 47.481142 ], + [ 9.5313457, 47.4806277 ], + [ 9.5306784, 47.4805318 ], + [ 9.5307641, 47.4803503 ], + [ 9.530496, 47.4802832 ], + [ 9.5303169, 47.4807902 ], + [ 9.5302506, 47.4807914 ], + [ 9.5301868, 47.4808556 ], + [ 9.5301159, 47.4808252 ], + [ 9.53003, 47.4808542 ], + [ 9.5299622, 47.4808614 ], + [ 9.5298595, 47.4810122 ], + [ 9.5298214, 47.4810988 ], + [ 9.5298182, 47.4812075 ], + [ 9.5296854, 47.4812674 ], + [ 9.529663, 47.4813308 ], + [ 9.5295178, 47.4814768 ], + [ 9.5294209, 47.4815646 ], + [ 9.5293562, 47.4816288 ], + [ 9.5292795, 47.481619 ], + [ 9.5292853, 47.481556 ], + [ 9.529397, 47.4814222 ], + [ 9.5294516, 47.4813124 ], + [ 9.5294892, 47.4812144 ], + [ 9.5294796, 47.4811803 ], + [ 9.5294174, 47.4811188 ], + [ 9.5293045, 47.4810526 ], + [ 9.5291171, 47.4810108 ], + [ 9.528572, 47.4809024 ], + [ 9.5281211, 47.4808262 ], + [ 9.5279855, 47.4807948 ], + [ 9.5278464, 47.4805291 ], + [ 9.5277742, 47.480422 ], + [ 9.5276844, 47.4803096 ], + [ 9.5274951, 47.4802221 ], + [ 9.5272977, 47.4801578 ], + [ 9.5271708, 47.4801376 ], + [ 9.5269842, 47.4801187 ], + [ 9.5267319, 47.4801355 ], + [ 9.5266236, 47.4801663 ], + [ 9.5264619, 47.4803355 ], + [ 9.52635, 47.4804636 ], + [ 9.5262763, 47.4805109 ], + [ 9.5261297, 47.4804511 ], + [ 9.5259858, 47.4804428 ], + [ 9.5257834, 47.4804414 ], + [ 9.5257111, 47.4805229 ], + [ 9.525665, 47.4806154 ], + [ 9.5256021, 47.4807254 ], + [ 9.5254943, 47.4807677 ], + [ 9.5253348, 47.4807825 ], + [ 9.5252661, 47.4807439 ], + [ 9.5250863, 47.4806849 ], + [ 9.5250019, 47.48067 ], + [ 9.5248702, 47.4806546 ], + [ 9.5248677, 47.4805917 ], + [ 9.5246617, 47.4804155 ], + [ 9.5241023, 47.4803626 ], + [ 9.5240987, 47.4802727 ], + [ 9.5219694, 47.4801221 ], + [ 9.5212358, 47.4800274 ], + [ 9.520172, 47.4799745 ], + [ 9.5175719, 47.4796614 ], + [ 9.5173218, 47.4800528 ], + [ 9.5164887, 47.480023 ], + [ 9.5160365, 47.4796589 ], + [ 9.51507, 47.4795479 ], + [ 9.5150276, 47.4795869 ], + [ 9.5149806, 47.479573 ], + [ 9.5149178, 47.4796641 ], + [ 9.511456, 47.4793753 ], + [ 9.511462, 47.4793784 ], + [ 9.5112494, 47.4793942 ], + [ 9.5109296, 47.4794238 ], + [ 9.5102015, 47.4793649 ], + [ 9.5094771, 47.4792933 ], + [ 9.50922, 47.4792941 ], + [ 9.5089834, 47.4792877 ], + [ 9.5087139, 47.4793105 ], + [ 9.5083864, 47.4793345 ], + [ 9.5081095, 47.4793804 ], + [ 9.5077734, 47.4793989 ], + [ 9.5075109, 47.4793873 ], + [ 9.5071566, 47.4793834 ], + [ 9.5066153, 47.479349 ], + [ 9.5060313, 47.4793042 ], + [ 9.5057853, 47.4792922 ], + [ 9.5056327, 47.4792726 ], + [ 9.5054834, 47.4791442 ], + [ 9.5047658, 47.4790343 ], + [ 9.5047675, 47.4790361 ], + [ 9.5046747, 47.4790377 ], + [ 9.5043655, 47.4789353 ], + [ 9.5035387, 47.4788331 ], + [ 9.5026673, 47.4786057 ], + [ 9.5020031, 47.4785906 ], + [ 9.5020068, 47.4785768 ], + [ 9.501958, 47.478601 ], + [ 9.5018863, 47.4786997 ], + [ 9.5013879, 47.4786816 ], + [ 9.500814, 47.4786822 ], + [ 9.5003279, 47.4785724 ], + [ 9.4997946, 47.4785321 ], + [ 9.4991322, 47.4784317 ], + [ 9.4987768, 47.4781648 ], + [ 9.4985318, 47.4780497 ], + [ 9.4970842, 47.4783633 ], + [ 9.4965627, 47.4786065 ], + [ 9.4964556, 47.4785815 ], + [ 9.4944639, 47.4790247 ], + [ 9.4947249, 47.4794903 ], + [ 9.4939076, 47.4793302 ], + [ 9.4933475, 47.4792618 ], + [ 9.4932638, 47.4792636 ], + [ 9.4926141, 47.4794488 ], + [ 9.492375299999999, 47.4795795 ], + [ 9.4920942, 47.4797112 ], + [ 9.491945, 47.4797771 ], + [ 9.4917598, 47.4797925 ], + [ 9.4914357, 47.4797134 ], + [ 9.4911966, 47.4796442 ], + [ 9.4909317, 47.4796348 ], + [ 9.4909225, 47.4796334 ], + [ 9.4889765, 47.4797579 ], + [ 9.4888452, 47.4797962 ], + [ 9.4887744, 47.4796805 ], + [ 9.4869488, 47.4798298 ], + [ 9.4856019, 47.4800066 ], + [ 9.4852086, 47.4801305 ], + [ 9.4853135, 47.4804436 ], + [ 9.4847261, 47.4806969 ], + [ 9.4829904, 47.4811144 ], + [ 9.4829921, 47.4811594 ], + [ 9.482886, 47.4811612 ], + [ 9.4825859, 47.4809506 ], + [ 9.4821905, 47.4810206 ], + [ 9.4817974, 47.4811535 ], + [ 9.481211, 47.4814337 ], + [ 9.4792721, 47.4827815 ], + [ 9.4792934, 47.4828835 ], + [ 9.4793451, 47.4829327 ], + [ 9.4793058, 47.4829907 ], + [ 9.4790099, 47.4831684 ], + [ 9.4789537, 47.4832381 ], + [ 9.4790016, 47.4833629 ], + [ 9.4789277, 47.4834044 ], + [ 9.4788298, 47.4836637 ], + [ 9.4788008, 47.4837729 ], + [ 9.4788372, 47.4838351 ], + [ 9.4788638, 47.4838574 ], + [ 9.4788739, 47.4839029 ], + [ 9.4788669, 47.4839373 ], + [ 9.4788377, 47.4840409 ], + [ 9.4788229, 47.4840868 ], + [ 9.478791, 47.4841218 ], + [ 9.4787368, 47.4842219 ], + [ 9.4786725, 47.4842958 ], + [ 9.4785598, 47.4844297 ], + [ 9.4783578, 47.4846338 ], + [ 9.4781878, 47.4847861 ], + [ 9.4780653, 47.4848801 ], + [ 9.4778959, 47.4850494 ], + [ 9.4778134, 47.4851026 ], + [ 9.4776148, 47.485181 ], + [ 9.4774808, 47.4852123 ], + [ 9.4772808, 47.4853409 ], + [ 9.4772408, 47.4855089 ], + [ 9.4771951, 47.485702 ], + [ 9.4770224, 47.4857182 ], + [ 9.4769399, 47.4859895 ], + [ 9.4767478, 47.4861728 ], + [ 9.4767547, 47.4870224 ], + [ 9.4767514, 47.4870224 ], + [ 9.4767638, 47.4873024 ], + [ 9.4767734, 47.4873136 ], + [ 9.4768826, 47.4874999 ], + [ 9.4769662, 47.4876696 ], + [ 9.4770255, 47.4878742 ], + [ 9.4770339, 47.4880512 ], + [ 9.4770111, 47.4882975 ], + [ 9.4769679, 47.4884699 ], + [ 9.4769001, 47.4886485 ], + [ 9.4768632, 47.4887693 ], + [ 9.4771132, 47.4888841 ], + [ 9.4770498, 47.4889827 ], + [ 9.4772217, 47.4890535 ], + [ 9.4771707, 47.4892374 ], + [ 9.4771923, 47.4893455 ], + [ 9.4772498, 47.4894816 ], + [ 9.47733, 47.4895828 ], + [ 9.4773232, 47.489623 ], + [ 9.4773003, 47.4896748 ], + [ 9.4913651, 47.4956465 ], + [ 9.4915829, 47.4954191 ], + [ 9.491893, 47.495178 ], + [ 9.492539, 47.4947187 ], + [ 9.4932621, 47.4942807 ], + [ 9.4940737, 47.493749 ], + [ 9.4948073, 47.4933679 ], + [ 9.4955936, 47.49302 ], + [ 9.4962749, 47.4927883 ], + [ 9.4971961, 47.4924317 ], + [ 9.4978955, 47.4922171 ], + [ 9.4985992, 47.4919223 ], + [ 9.4996078, 47.4916381 ], + [ 9.5005015, 47.4914307 ], + [ 9.5015141, 47.4912493 ], + [ 9.5026796, 47.4910761 ], + [ 9.5051735, 47.4908008 ], + [ 9.5073304, 47.4905439 ], + [ 9.5089192, 47.490396 ], + [ 9.5107745, 47.4901912 ], + [ 9.5124805, 47.4900294 ], + [ 9.5148686, 47.4898303 ], + [ 9.5168271, 47.4896575 ], + [ 9.5186938, 47.4895094 ], + [ 9.520359599999999, 47.4894055 ], + [ 9.5214382, 47.4893655 ], + [ 9.5228459, 47.4893413 ], + [ 9.5246516, 47.4893317 ], + [ 9.52601, 47.48932 ], + [ 9.5268816, 47.4893758 ], + [ 9.5277539, 47.4894488 ], + [ 9.5289486, 47.4895548 ], + [ 9.5302287, 47.489682 ], + [ 9.5314138, 47.4897539 ], + [ 9.532595, 47.4898795 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "WZV0031", + "country" : "CHE", + "name" : [ + { + "text" : "Wasser- und Zugvogelreservat Rorschacher Bucht / Arbon", + "lang" : "de-CH" + }, + { + "text" : "Réserve d'oiseaux d'eau et de migrateurs Rorschacher Bucht / Arbon", + "lang" : "fr-CH" + }, + { + "text" : "Riserva di uccelli acquatici e migratori Rorschacher Bucht / Arbon", + "lang" : "it-CH" + }, + { + "text" : "Water Bird and Migratory Bird Reserves Rorschacher Bucht / Arbon", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5046707, 47.4546308 ], + [ 7.5135335, 47.4567721 ], + [ 7.5150311, 47.4574535 ], + [ 7.5152976, 47.4580289 ], + [ 7.5194392, 47.4584728 ], + [ 7.5197865, 47.458481 ], + [ 7.5204743, 47.4585174 ], + [ 7.5213602999999996, 47.4585262 ], + [ 7.5216288, 47.4585308 ], + [ 7.5220831, 47.4585257 ], + [ 7.5224937, 47.4585337 ], + [ 7.5232445, 47.4585237 ], + [ 7.5238112, 47.4585268 ], + [ 7.5242971, 47.4585288 ], + [ 7.5248288, 47.4585261 ], + [ 7.5252848, 47.4585246 ], + [ 7.5256357, 47.4585314 ], + [ 7.5259621, 47.4585467 ], + [ 7.5263674, 47.458575 ], + [ 7.5267113, 47.4585913 ], + [ 7.5274149999999995, 47.4586527 ], + [ 7.5283868, 47.4587394 ], + [ 7.5309143, 47.4589644 ], + [ 7.5325401, 47.4591281 ], + [ 7.5342243, 47.4592418 ], + [ 7.537877, 47.4594881 ], + [ 7.5402646, 47.4594163 ], + [ 7.5402056, 47.4589054 ], + [ 7.5400335, 47.4586407 ], + [ 7.5396701, 47.4587498 ], + [ 7.5396301, 47.4587406 ], + [ 7.5394085, 47.4586854 ], + [ 7.538428, 47.4584645 ], + [ 7.5379732, 47.45836 ], + [ 7.537364, 47.4582504 ], + [ 7.5369685, 47.4581894 ], + [ 7.5369139, 47.4581838 ], + [ 7.5358868999999995, 47.4580327 ], + [ 7.5358671, 47.4581417 ], + [ 7.5358238, 47.4583802 ], + [ 7.5352684, 47.4582774 ], + [ 7.534793, 47.4581894 ], + [ 7.5346032, 47.4581543 ], + [ 7.5342135, 47.4580821 ], + [ 7.5341274, 47.4582947 ], + [ 7.5339115, 47.458274 ], + [ 7.5334743, 47.458232 ], + [ 7.5333304, 47.4582182 ], + [ 7.5332018, 47.4582058 ], + [ 7.5331382, 47.4581997 ], + [ 7.5330439, 47.4581907 ], + [ 7.532672, 47.4581264 ], + [ 7.5326003, 47.4581139 ], + [ 7.5325527, 47.4581054 ], + [ 7.5322696, 47.4580554 ], + [ 7.5317209, 47.4579613 ], + [ 7.5317155, 47.4579574 ], + [ 7.5310384, 47.4578395 ], + [ 7.5307354, 47.4577876 ], + [ 7.530507, 47.4577142 ], + [ 7.5298887, 47.4575199 ], + [ 7.5291114, 47.4572694 ], + [ 7.5287648, 47.4571619 ], + [ 7.5279661, 47.4569145 ], + [ 7.5274515, 47.4567542 ], + [ 7.5272422, 47.4567233 ], + [ 7.5271824, 47.4567149 ], + [ 7.5271161, 47.4567011 ], + [ 7.5268458, 47.4566646 ], + [ 7.5262047, 47.456578 ], + [ 7.526167, 47.4565703 ], + [ 7.5261296, 47.456562 ], + [ 7.5260242, 47.4565458 ], + [ 7.5259406, 47.4565308 ], + [ 7.5252291, 47.4563748 ], + [ 7.5247998, 47.4562849 ], + [ 7.524342, 47.4561869 ], + [ 7.5235971, 47.456047 ], + [ 7.5224176, 47.4558254 ], + [ 7.5223793, 47.4558182 ], + [ 7.5223391, 47.4558904 ], + [ 7.5223108, 47.4559415 ], + [ 7.5222831, 47.4559913 ], + [ 7.5221566, 47.4562191 ], + [ 7.5220972, 47.4562047 ], + [ 7.5210975, 47.4560074 ], + [ 7.5205649, 47.4559027 ], + [ 7.5205468, 47.4559261 ], + [ 7.5204884, 47.4559861 ], + [ 7.5204722, 47.4560046 ], + [ 7.5203883000000005, 47.4560888 ], + [ 7.5184398, 47.4555755 ], + [ 7.5179726, 47.455386 ], + [ 7.5175266, 47.4552063 ], + [ 7.5166408, 47.4548333 ], + [ 7.5155025, 47.4544835 ], + [ 7.51537, 47.4544428 ], + [ 7.5153504, 47.454557 ], + [ 7.5149456, 47.4546585 ], + [ 7.5146792, 47.4546745 ], + [ 7.5142427, 47.4546177 ], + [ 7.5133935, 47.4544182 ], + [ 7.5129266, 47.4546253 ], + [ 7.5124585, 47.4547219 ], + [ 7.5123224, 47.4546851 ], + [ 7.5117728, 47.4545268 ], + [ 7.5117541, 47.4545233 ], + [ 7.5117351, 47.4545203 ], + [ 7.511716, 47.4545179 ], + [ 7.5116968, 47.4545159 ], + [ 7.5116775, 47.4545145 ], + [ 7.5115681, 47.4544952 ], + [ 7.5110425, 47.4544169 ], + [ 7.5105816, 47.4543513 ], + [ 7.5105712, 47.4543488 ], + [ 7.5105195, 47.4543296 ], + [ 7.5102037, 47.4542264 ], + [ 7.5100323, 47.4541704 ], + [ 7.5096527, 47.4540464 ], + [ 7.5094297999999995, 47.4537332 ], + [ 7.509529, 47.4535226 ], + [ 7.5095948, 47.4533841 ], + [ 7.5096032, 47.4533665 ], + [ 7.5096144, 47.453346 ], + [ 7.5096177, 47.4533351 ], + [ 7.5088684, 47.4531052 ], + [ 7.5083692, 47.4529039 ], + [ 7.507657, 47.4526472 ], + [ 7.5075771, 47.4526141 ], + [ 7.5074655, 47.4525678 ], + [ 7.5072906, 47.4524991 ], + [ 7.5071033, 47.4524317 ], + [ 7.5068762, 47.4523501 ], + [ 7.5066971, 47.4522823 ], + [ 7.5065391, 47.4522291 ], + [ 7.5064043, 47.4521884 ], + [ 7.5060978, 47.4520975 ], + [ 7.5059044, 47.4520403 ], + [ 7.5057959, 47.4520084 ], + [ 7.5056998, 47.4519826 ], + [ 7.5056206, 47.4519584 ], + [ 7.5054694, 47.4519146 ], + [ 7.5053219, 47.4518735 ], + [ 7.505196, 47.4518388 ], + [ 7.5050951, 47.4518048 ], + [ 7.5049803, 47.4517654 ], + [ 7.5048291, 47.4517197 ], + [ 7.5046702, 47.4516791 ], + [ 7.5046191, 47.451669 ], + [ 7.5046707, 47.4546308 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns194", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Blauenweid", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Blauenweid", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Blauenweid", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Blauenweid", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.0505047, 47.3936606 ], + [ 8.0504977, 47.3935194 ], + [ 8.0504797, 47.3933787 ], + [ 8.050451, 47.3932388 ], + [ 8.0504115, 47.3931001 ], + [ 8.0503613, 47.392963 ], + [ 8.0503007, 47.3928278 ], + [ 8.0502297, 47.392695 ], + [ 8.0501486, 47.392564899999996 ], + [ 8.0500576, 47.3924379 ], + [ 8.0499569, 47.3923143 ], + [ 8.0498468, 47.3921944 ], + [ 8.0497277, 47.3920786 ], + [ 8.0495997, 47.3919672 ], + [ 8.0494634, 47.3918605 ], + [ 8.049319, 47.3917588 ], + [ 8.049167, 47.3916624 ], + [ 8.0490078, 47.3915715 ], + [ 8.0488418, 47.3914864 ], + [ 8.0486694, 47.3914073 ], + [ 8.0484912, 47.3913344 ], + [ 8.0483076, 47.3912679 ], + [ 8.0481192, 47.3912081 ], + [ 8.0479264, 47.3911551 ], + [ 8.0477298, 47.391109 ], + [ 8.0475299, 47.3910699 ], + [ 8.0473272, 47.391038 ], + [ 8.0471224, 47.3910133 ], + [ 8.0469159, 47.390996 ], + [ 8.0467084, 47.390986 ], + [ 8.0465004, 47.3909834 ], + [ 8.0462925, 47.3909882 ], + [ 8.0460853, 47.3910003 ], + [ 8.0458792, 47.3910199 ], + [ 8.045675, 47.3910467 ], + [ 8.0454731, 47.3910807 ], + [ 8.0452741, 47.3911219 ], + [ 8.0450786, 47.3911701 ], + [ 8.044887, 47.3912251 ], + [ 8.0446999, 47.3912869 ], + [ 8.0445179, 47.3913553 ], + [ 8.0443414, 47.39143 ], + [ 8.0441708, 47.3915109 ], + [ 8.0440068, 47.3915978 ], + [ 8.0438496, 47.3916904 ], + [ 8.0436998, 47.3917884 ], + [ 8.0435578, 47.3918916 ], + [ 8.0434239, 47.3919997 ], + [ 8.0432986, 47.3921125 ], + [ 8.0431821, 47.3922295 ], + [ 8.0430747, 47.3923505 ], + [ 8.0429769, 47.3924752 ], + [ 8.0428888, 47.3926031 ], + [ 8.0428106, 47.3927341 ], + [ 8.0427427, 47.3928676 ], + [ 8.0426852, 47.3930033 ], + [ 8.0426381, 47.393141 ], + [ 8.0426018, 47.39328 ], + [ 8.0425762, 47.3934202 ], + [ 8.0425615, 47.3935611 ], + [ 8.0425577, 47.3937024 ], + [ 8.0425647, 47.3938436 ], + [ 8.0425826, 47.3939843 ], + [ 8.0426114, 47.3941242 ], + [ 8.0426509, 47.3942629 ], + [ 8.042701, 47.3944 ], + [ 8.0427616, 47.3945352 ], + [ 8.0428326, 47.394668 ], + [ 8.0429137, 47.394798 ], + [ 8.0430047, 47.3949251 ], + [ 8.0431053, 47.3950487 ], + [ 8.0432154, 47.3951686 ], + [ 8.0433345, 47.3952844 ], + [ 8.0434625, 47.3953958 ], + [ 8.0435988, 47.3955025 ], + [ 8.0437432, 47.3956042 ], + [ 8.0438952, 47.3957007 ], + [ 8.0440544, 47.3957916 ], + [ 8.0442204, 47.3958767 ], + [ 8.0443928, 47.3959558 ], + [ 8.044571, 47.3960287 ], + [ 8.0447546, 47.3960951 ], + [ 8.0449431, 47.396155 ], + [ 8.0451359, 47.396208 ], + [ 8.0453325, 47.3962541 ], + [ 8.0455325, 47.3962932 ], + [ 8.0457351, 47.3963251 ], + [ 8.04594, 47.3963498 ], + [ 8.0461464, 47.3963671 ], + [ 8.046354, 47.3963771 ], + [ 8.046562, 47.3963797 ], + [ 8.0467699, 47.396375 ], + [ 8.0469772, 47.3963628 ], + [ 8.0471832, 47.3963433 ], + [ 8.0473875, 47.3963164 ], + [ 8.0475894, 47.3962824 ], + [ 8.0477884, 47.3962412 ], + [ 8.047984, 47.396193 ], + [ 8.0481756, 47.396138 ], + [ 8.0483626, 47.3960762 ], + [ 8.0485447, 47.3960078 ], + [ 8.0487212, 47.395933 ], + [ 8.0488918, 47.3958521 ], + [ 8.0490558, 47.3957653 ], + [ 8.049213, 47.3956727 ], + [ 8.0493628, 47.3955746 ], + [ 8.0495048, 47.3954714 ], + [ 8.0496387, 47.3953633 ], + [ 8.049764, 47.3952506 ], + [ 8.0498805, 47.3951335 ], + [ 8.0499879, 47.3950125 ], + [ 8.0500857, 47.3948878 ], + [ 8.0501738, 47.3947599 ], + [ 8.0502519, 47.3946289 ], + [ 8.0503198, 47.3944954 ], + [ 8.0503773, 47.3943596 ], + [ 8.0504243, 47.394222 ], + [ 8.0504607, 47.3940829 ], + [ 8.0504862, 47.3939427 ], + [ 8.0505009, 47.3938018 ], + [ 8.0505047, 47.3936606 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "AAR0001", + "country" : "CHE", + "name" : [ + { + "text" : "Bezirksgefängnis Aarau Amtshaus", + "lang" : "de-CH" + }, + { + "text" : "Bezirksgefängnis Aarau Amtshaus", + "lang" : "fr-CH" + }, + { + "text" : "Bezirksgefängnis Aarau Amtshaus", + "lang" : "it-CH" + }, + { + "text" : "Bezirksgefängnis Aarau Amtshaus", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Bezirksgefängnis Aarau", + "lang" : "de-CH" + }, + { + "text" : "Bezirksgefängnis Aarau", + "lang" : "fr-CH" + }, + { + "text" : "Bezirksgefängnis Aarau", + "lang" : "it-CH" + }, + { + "text" : "Bezirksgefängnis Aarau", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Gefängnisleitung", + "lang" : "de-CH" + }, + { + "text" : "Gefängnisleitung", + "lang" : "fr-CH" + }, + { + "text" : "Gefängnisleitung", + "lang" : "it-CH" + }, + { + "text" : "Gefängnisleitung", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ag.ch/de/verwaltung/dvi/strafverfolgung-strafvollzug/strafvollzug/bezirksgefaengnisse", + "email" : "justizvollzug@ag.ch", + "phone" : "0041628365602", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.9795849, 47.3666502 ], + [ 7.979578, 47.366509 ], + [ 7.9795603, 47.3663683 ], + [ 7.9795317, 47.3662284 ], + [ 7.9794924, 47.3660896 ], + [ 7.9794425, 47.3659525 ], + [ 7.979382, 47.3658173 ], + [ 7.9793113, 47.3656845 ], + [ 7.9792304, 47.3655544 ], + [ 7.9791396, 47.3654273 ], + [ 7.9790391, 47.3653036 ], + [ 7.9789293, 47.3651837 ], + [ 7.9788103, 47.3650678 ], + [ 7.9786826, 47.3649563 ], + [ 7.9785465, 47.3648495 ], + [ 7.9784024, 47.3647477 ], + [ 7.9782506, 47.3646512 ], + [ 7.9780915, 47.3645602 ], + [ 7.9779257, 47.364475 ], + [ 7.9777536, 47.3643958 ], + [ 7.9775755, 47.3643228 ], + [ 7.9773921, 47.3642562 ], + [ 7.9772039, 47.3641963 ], + [ 7.9770112, 47.3641431 ], + [ 7.9768148, 47.3640969 ], + [ 7.976615, 47.3640577 ], + [ 7.9764125, 47.3640257 ], + [ 7.9762078, 47.3640009 ], + [ 7.9760015, 47.3639834 ], + [ 7.9757941, 47.3639733 ], + [ 7.9755862, 47.3639705 ], + [ 7.9753784, 47.3639752 ], + [ 7.9751712999999995, 47.3639872 ], + [ 7.9749653, 47.3640066 ], + [ 7.9747611, 47.3640333 ], + [ 7.9745593, 47.3640672 ], + [ 7.9743604, 47.3641083 ], + [ 7.9741649, 47.3641563 ], + [ 7.9739733, 47.3642113 ], + [ 7.9737863, 47.364273 ], + [ 7.9736042, 47.3643412 ], + [ 7.9734277, 47.3644159 ], + [ 7.9732571, 47.3644967 ], + [ 7.973093, 47.3645834 ], + [ 7.9729358999999995, 47.3646759 ], + [ 7.972786, 47.3647738 ], + [ 7.9726439, 47.364877 ], + [ 7.97251, 47.364985 ], + [ 7.9723845, 47.3650976 ], + [ 7.9722679, 47.3652146 ], + [ 7.9721605, 47.3653356 ], + [ 7.9720625, 47.3654602 ], + [ 7.9719743, 47.3655881 ], + [ 7.971896, 47.365719 ], + [ 7.9718279, 47.3658524 ], + [ 7.9717702, 47.3659881 ], + [ 7.9717231, 47.3661257 ], + [ 7.9716866, 47.3662648 ], + [ 7.9716608, 47.366405 ], + [ 7.9716459, 47.3665459 ], + [ 7.9716419, 47.3666871 ], + [ 7.9716488, 47.3668283 ], + [ 7.9716664999999995, 47.3669691 ], + [ 7.971695, 47.367109 ], + [ 7.9717343, 47.3672477 ], + [ 7.9717842, 47.3673849 ], + [ 7.9718446, 47.36752 ], + [ 7.9719154, 47.3676529 ], + [ 7.9719961999999995, 47.367783 ], + [ 7.972087, 47.3679101 ], + [ 7.9721875, 47.3680338 ], + [ 7.9722973, 47.3681537 ], + [ 7.9724163, 47.3682696 ], + [ 7.972544, 47.3683811 ], + [ 7.9726801, 47.3684879 ], + [ 7.9728242, 47.3685897 ], + [ 7.972976, 47.3686862 ], + [ 7.9731351, 47.3687772 ], + [ 7.9733009, 47.3688625 ], + [ 7.973473, 47.3689417 ], + [ 7.9736511, 47.3690147 ], + [ 7.9738345, 47.3690812 ], + [ 7.9740228, 47.3691412 ], + [ 7.9742154, 47.3691944 ], + [ 7.9744119, 47.3692406 ], + [ 7.9746117, 47.3692798 ], + [ 7.9748142, 47.3693118 ], + [ 7.9750189, 47.3693366 ], + [ 7.9752252, 47.3693541 ], + [ 7.9754325999999995, 47.3693642 ], + [ 7.9756405, 47.369367 ], + [ 7.9758484, 47.3693623 ], + [ 7.9760556, 47.3693503 ], + [ 7.9762615, 47.3693309 ], + [ 7.9764657, 47.3693042 ], + [ 7.9766676, 47.3692703 ], + [ 7.9768665, 47.3692292 ], + [ 7.9770620999999995, 47.3691811 ], + [ 7.9772536, 47.3691262 ], + [ 7.9774407, 47.3690645 ], + [ 7.9776226999999995, 47.3689962 ], + [ 7.9777993, 47.3689216 ], + [ 7.9779698, 47.3688408 ], + [ 7.9781339, 47.368754 ], + [ 7.9782911, 47.3686615 ], + [ 7.978441, 47.3685636 ], + [ 7.978583, 47.3684605 ], + [ 7.978717, 47.3683524 ], + [ 7.9788424, 47.3682398 ], + [ 7.978959, 47.3681228 ], + [ 7.9790665, 47.3680018 ], + [ 7.9791644, 47.3678772 ], + [ 7.9792526, 47.3677493 ], + [ 7.9793309, 47.3676184 ], + [ 7.9793989, 47.3674849 ], + [ 7.9794566, 47.3673492 ], + [ 7.9795038, 47.3672116 ], + [ 7.9795403, 47.3670726 ], + [ 7.979566, 47.3669324 ], + [ 7.9795809, 47.3667915 ], + [ 7.9795849, 47.3666502 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0048", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Gösgen", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Gösgen", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Gösgen", + "lang" : "it-CH" + }, + { + "text" : "Substation Gösgen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.9533708999999995, 47.4490271 ], + [ 7.9533864, 47.44908 ], + [ 7.9539445, 47.4509809 ], + [ 7.9539402, 47.4510169 ], + [ 7.9547176, 47.4512135 ], + [ 7.9544311, 47.4513566 ], + [ 7.9538008, 47.4517672 ], + [ 7.953971, 47.4519468 ], + [ 7.9543329, 47.4525407 ], + [ 7.9546969999999995, 47.4531368 ], + [ 7.9547369, 47.4531137 ], + [ 7.9547726, 47.4531402 ], + [ 7.9546925, 47.4531875 ], + [ 7.9547366, 47.453233 ], + [ 7.9547683, 47.4532671 ], + [ 7.9549405, 47.4534528 ], + [ 7.9549593, 47.4535087 ], + [ 7.9549827, 47.4535614 ], + [ 7.9550244, 47.4535985 ], + [ 7.9550979, 47.453623 ], + [ 7.9551759, 47.4536413 ], + [ 7.9552539, 47.4536503 ], + [ 7.955327, 47.4536344 ], + [ 7.9553818, 47.4536062 ], + [ 7.9555606999999995, 47.4536179 ], + [ 7.9562301, 47.4536771 ], + [ 7.9563363, 47.4536878 ], + [ 7.9565134, 47.4537058 ], + [ 7.9564623, 47.4535368 ], + [ 7.9566555, 47.4533461 ], + [ 7.95652, 47.4531389 ], + [ 7.9563338, 47.4526837 ], + [ 7.9559037, 47.4524706 ], + [ 7.9559557, 47.4523104 ], + [ 7.9559546, 47.4518822 ], + [ 7.9559502, 47.4517461 ], + [ 7.9556311, 47.4513969 ], + [ 7.9563191, 47.451094 ], + [ 7.9563492, 47.4510808 ], + [ 7.9560132, 47.4509134 ], + [ 7.9556748, 47.4507107 ], + [ 7.9555777, 47.4504856 ], + [ 7.9554454, 47.450197 ], + [ 7.9551796, 47.449948 ], + [ 7.9547977, 47.449594 ], + [ 7.9546104, 47.4492459 ], + [ 7.9543307, 47.4491635 ], + [ 7.9542821, 47.4490633 ], + [ 7.9539957999999995, 47.4490998 ], + [ 7.9537769, 47.4491256 ], + [ 7.953599, 47.4491465 ], + [ 7.9533708999999995, 47.4490271 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns302", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Neulingen", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Neulingen", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Neulingen", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Neulingen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.0921984, 47.3139068 ], + [ 8.092079, 47.3115537 ], + [ 8.0917786, 47.3092081 ], + [ 8.0912983, 47.3068764 ], + [ 8.0906392, 47.304565 ], + [ 8.0898033, 47.3022803 ], + [ 8.0887928, 47.3000284 ], + [ 8.0876105, 47.2978155 ], + [ 8.0862597, 47.2956478 ], + [ 8.0847441, 47.2935311 ], + [ 8.0830679, 47.2914712 ], + [ 8.0812357, 47.2894739 ], + [ 8.0792525, 47.2875444 ], + [ 8.0771237, 47.2856882 ], + [ 8.0748552, 47.2839103 ], + [ 8.0724533, 47.2822156 ], + [ 8.0699244, 47.2806087 ], + [ 8.0672756, 47.279094 ], + [ 8.0645141, 47.2776757 ], + [ 8.0616474, 47.2763575 ], + [ 8.0586835, 47.2751432 ], + [ 8.0556303, 47.274036100000004 ], + [ 8.0524963, 47.2730392 ], + [ 8.0492901, 47.2721551 ], + [ 8.0460203, 47.2713864 ], + [ 8.042696, 47.2707351 ], + [ 8.0393263, 47.2702031 ], + [ 8.0359203, 47.2697917 ], + [ 8.0324874, 47.2695021 ], + [ 8.029037, 47.269335 ], + [ 8.0255785, 47.269291 ], + [ 8.0221213, 47.2693702 ], + [ 8.0186749, 47.2695723 ], + [ 8.0152488, 47.2698968 ], + [ 8.0118522, 47.2703428 ], + [ 8.0084945, 47.2709091 ], + [ 8.0051849, 47.2715942 ], + [ 8.0019324, 47.2723961 ], + [ 7.9987459, 47.2733126 ], + [ 7.9956341, 47.2743413 ], + [ 7.9926056, 47.2754794 ], + [ 7.9896686, 47.2767237 ], + [ 7.9868312, 47.2780709 ], + [ 7.9841011, 47.2795171 ], + [ 7.9814859, 47.2810586 ], + [ 7.9789926, 47.2826911 ], + [ 7.9766281, 47.2844101 ], + [ 7.974399, 47.2862108 ], + [ 7.9723112, 47.2880885 ], + [ 7.9703706, 47.2900379 ], + [ 7.9685824, 47.2920537 ], + [ 7.9669517, 47.2941304 ], + [ 7.9654828, 47.2962622 ], + [ 7.9641798, 47.2984435 ], + [ 7.9630463, 47.3006681 ], + [ 7.9620854, 47.30293 ], + [ 7.9612998, 47.3052231 ], + [ 7.9606916, 47.3075409 ], + [ 7.9602626, 47.3098772 ], + [ 7.9600139, 47.3122256 ], + [ 7.9599462, 47.3145796 ], + [ 7.9600598, 47.3169328 ], + [ 7.9603544, 47.3192787 ], + [ 7.9608291, 47.3216109 ], + [ 7.9614828, 47.3239231 ], + [ 7.9623136, 47.3262088 ], + [ 7.9633192, 47.3284618 ], + [ 7.964497, 47.3306759 ], + [ 7.9658437, 47.332845 ], + [ 7.9673557, 47.3349632 ], + [ 7.9690288, 47.3370247 ], + [ 7.9708585, 47.3390239 ], + [ 7.9728397, 47.3409551 ], + [ 7.9749669999999995, 47.3428132 ], + [ 7.9772347, 47.3445931 ], + [ 7.9796364, 47.3462897 ], + [ 7.9821656, 47.3478986 ], + [ 7.9848154000000005, 47.3494152 ], + [ 7.9875786, 47.3508355 ], + [ 7.9904474, 47.3521554 ], + [ 7.9934141, 47.3533714 ], + [ 7.9964705, 47.3544802 ], + [ 7.9996083, 47.3554786 ], + [ 8.0028187, 47.356364 ], + [ 8.006093, 47.3571339 ], + [ 8.0094222, 47.3577862 ], + [ 8.0127972, 47.3583192 ], + [ 8.0162087, 47.3587313 ], + [ 8.0196472, 47.3590213 ], + [ 8.0231034, 47.3591886 ], + [ 8.0265678, 47.3592327 ], + [ 8.0300308, 47.3591534 ], + [ 8.0334829, 47.358950899999996 ], + [ 8.0369147, 47.3586259 ], + [ 8.0403167, 47.3581792 ], + [ 8.0436795, 47.357612 ], + [ 8.046994, 47.3569259 ], + [ 8.050251, 47.3561227 ], + [ 8.0534415, 47.3552047 ], + [ 8.0565569, 47.3541745 ], + [ 8.0595885, 47.3530348 ], + [ 8.0625281, 47.3517887 ], + [ 8.0653675, 47.3504397 ], + [ 8.068099, 47.3489915 ], + [ 8.0707151, 47.3474481 ], + [ 8.0732086, 47.3458137 ], + [ 8.0755727, 47.3440928 ], + [ 8.0778009, 47.3422901 ], + [ 8.079887, 47.3404105 ], + [ 8.0818255, 47.3384593 ], + [ 8.0836109, 47.3364418 ], + [ 8.0852384, 47.3343635 ], + [ 8.0867036, 47.3322301 ], + [ 8.0880024, 47.3300475 ], + [ 8.0891313, 47.3278217 ], + [ 8.0900872, 47.3255587 ], + [ 8.0908676, 47.3232648 ], + [ 8.0914703, 47.3209463 ], + [ 8.0918937, 47.3186095 ], + [ 8.0921366, 47.3162609 ], + [ 8.0921984, 47.3139068 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSXH001", + "country" : "CHE", + "name" : [ + { + "text" : "LSXH Holziken", + "lang" : "de-CH" + }, + { + "text" : "LSXH Holziken", + "lang" : "fr-CH" + }, + { + "text" : "LSXH Holziken", + "lang" : "it-CH" + }, + { + "text" : "LSXH Holziken", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Rose Helicopter AG", + "lang" : "de-CH" + }, + { + "text" : "Rose Helicopter AG", + "lang" : "fr-CH" + }, + { + "text" : "Rose Helicopter AG", + "lang" : "it-CH" + }, + { + "text" : "Rose Helicopter AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Lukas Fischer", + "lang" : "de-CH" + }, + { + "text" : "Lukas Fischer", + "lang" : "fr-CH" + }, + { + "text" : "Lukas Fischer", + "lang" : "it-CH" + }, + { + "text" : "Lukas Fischer", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.roseheli.ch", + "email" : "info@roseheli.ch", + "phone" : "0041627214444", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6738352, 47.4876498 ], + [ 7.6738406, 47.4876485 ], + [ 7.6741821, 47.4873721 ], + [ 7.6741724, 47.4873628 ], + [ 7.6741659, 47.4873578 ], + [ 7.6741595, 47.4873527 ], + [ 7.6741523, 47.4873469 ], + [ 7.6741448, 47.487341 ], + [ 7.6741443, 47.4873406 ], + [ 7.674129, 47.4873299 ], + [ 7.6741261, 47.4873279 ], + [ 7.6741193, 47.487323 ], + [ 7.6741151, 47.48732 ], + [ 7.6741118, 47.4873175 ], + [ 7.6741069, 47.4873138 ], + [ 7.6741008, 47.4873091 ], + [ 7.6740978, 47.487307 ], + [ 7.6740862, 47.4872987 ], + [ 7.6740836, 47.4872969 ], + [ 7.6740773, 47.4872923 ], + [ 7.6740738, 47.4872898 ], + [ 7.6740707, 47.4872875 ], + [ 7.6740666, 47.4872844 ], + [ 7.6740615, 47.4872805 ], + [ 7.6740613, 47.4872804 ], + [ 7.6740563, 47.4872769 ], + [ 7.674037, 47.4872637 ], + [ 7.6740354, 47.4872626 ], + [ 7.6740283, 47.4872577 ], + [ 7.6740248, 47.4872553 ], + [ 7.6740178, 47.4872503 ], + [ 7.6740135, 47.4872472 ], + [ 7.67401, 47.4872447 ], + [ 7.674006, 47.4872417 ], + [ 7.6740026, 47.4872392 ], + [ 7.6739998, 47.487237 ], + [ 7.6739973, 47.4872351 ], + [ 7.6739941, 47.4872326 ], + [ 7.6739912, 47.4872303 ], + [ 7.6739775, 47.4872193 ], + [ 7.6739627, 47.4872087 ], + [ 7.6739591, 47.4872061 ], + [ 7.6739557, 47.4872036 ], + [ 7.6739517, 47.4872007 ], + [ 7.6739484000000004, 47.4871981 ], + [ 7.6739465, 47.4871967 ], + [ 7.6739429, 47.4871939 ], + [ 7.6739397, 47.4871914 ], + [ 7.6739356, 47.4871881 ], + [ 7.6739249, 47.4871793 ], + [ 7.6739196, 47.487175 ], + [ 7.6739064, 47.487163699999996 ], + [ 7.6739027, 47.4871605 ], + [ 7.6739025, 47.4871603 ], + [ 7.6738997, 47.4871579 ], + [ 7.6738962, 47.4871547 ], + [ 7.6738885, 47.4871478 ], + [ 7.6738791, 47.4871394 ], + [ 7.6738751, 47.4871358 ], + [ 7.6738676, 47.487129 ], + [ 7.673861, 47.487123 ], + [ 7.6738578, 47.4871202 ], + [ 7.6738551, 47.4871177 ], + [ 7.6738503, 47.4871132 ], + [ 7.6738433, 47.4871066 ], + [ 7.6738387, 47.4871021 ], + [ 7.673832, 47.4870953 ], + [ 7.6738312, 47.4870945 ], + [ 7.6738287, 47.487092 ], + [ 7.6738246, 47.4870877 ], + [ 7.6738231, 47.4870861 ], + [ 7.6738207, 47.4870836 ], + [ 7.6738174, 47.4870802 ], + [ 7.6738135, 47.4870759 ], + [ 7.6738108, 47.4870729 ], + [ 7.6738085, 47.4870704 ], + [ 7.6738046, 47.4870659 ], + [ 7.6738043000000005, 47.4870656 ], + [ 7.6738026999999995, 47.4870638 ], + [ 7.6737952, 47.4870553 ], + [ 7.6737929, 47.4870528 ], + [ 7.6737891, 47.4870484 ], + [ 7.6737869, 47.487046 ], + [ 7.6737864, 47.4870454 ], + [ 7.6737843, 47.4870428 ], + [ 7.6737805, 47.4870384 ], + [ 7.6737733, 47.4870295 ], + [ 7.6737717, 47.4870276 ], + [ 7.6737714, 47.4870271 ], + [ 7.6737638, 47.4870183 ], + [ 7.6737595, 47.4870131 ], + [ 7.6737559, 47.4870086 ], + [ 7.6737507, 47.4870019 ], + [ 7.6737487, 47.4869993 ], + [ 7.6737464, 47.4869963 ], + [ 7.6737416, 47.4869895 ], + [ 7.6737397, 47.4869867 ], + [ 7.6737385, 47.4869849 ], + [ 7.673733, 47.4869767 ], + [ 7.6737295, 47.4869713 ], + [ 7.6737282, 47.4869692 ], + [ 7.6737266, 47.4869669 ], + [ 7.6737264, 47.4869665 ], + [ 7.673724, 47.4869633 ], + [ 7.6737225, 47.4869612 ], + [ 7.6737162, 47.4869521 ], + [ 7.6737125, 47.4869468 ], + [ 7.6737082, 47.4869403 ], + [ 7.673706, 47.4869369 ], + [ 7.6737041999999995, 47.4869342 ], + [ 7.6737021, 47.4869308 ], + [ 7.6736981, 47.4869241 ], + [ 7.6736964, 47.486921 ], + [ 7.6736942, 47.4869176 ], + [ 7.6736916, 47.4869135 ], + [ 7.6736884, 47.4869085 ], + [ 7.673687, 47.4869063 ], + [ 7.673685, 47.486903 ], + [ 7.6736831, 47.4868999 ], + [ 7.6736815, 47.4868973 ], + [ 7.6736801, 47.4868951 ], + [ 7.6736788, 47.486893 ], + [ 7.6736775999999995, 47.4868912 ], + [ 7.6736757, 47.4868882 ], + [ 7.6736699, 47.4868789 ], + [ 7.6736687, 47.4868769 ], + [ 7.6736636, 47.4868683 ], + [ 7.6736618, 47.486865 ], + [ 7.6736554, 47.4868547 ], + [ 7.6736553, 47.4868545 ], + [ 7.6736497, 47.486845 ], + [ 7.673648, 47.4868419 ], + [ 7.6736419, 47.4868319 ], + [ 7.6736364, 47.4868225 ], + [ 7.6736348, 47.4868197 ], + [ 7.6736287999999995, 47.48681 ], + [ 7.6736286, 47.4868096 ], + [ 7.6736241, 47.486802 ], + [ 7.6736233, 47.4868006 ], + [ 7.6736219, 47.4867985 ], + [ 7.6736198, 47.4867955 ], + [ 7.6736135999999995, 47.4867864 ], + [ 7.6736085, 47.4867785 ], + [ 7.6736064, 47.486775 ], + [ 7.6736043, 47.4867718 ], + [ 7.6736015, 47.4867674 ], + [ 7.6736006, 47.4867659 ], + [ 7.6735986, 47.486763 ], + [ 7.6735962, 47.4867597 ], + [ 7.6735935, 47.4867556 ], + [ 7.6735873, 47.4867465 ], + [ 7.6735818, 47.486738 ], + [ 7.6735796, 47.4867345 ], + [ 7.6735775, 47.4867312 ], + [ 7.6735747, 47.4867269 ], + [ 7.6735738, 47.4867253 ], + [ 7.6735717, 47.4867223 ], + [ 7.6735694, 47.486719 ], + [ 7.6735666, 47.4867151 ], + [ 7.6735605, 47.4867059 ], + [ 7.6735551, 47.4866976 ], + [ 7.6735529, 47.4866941 ], + [ 7.6735509, 47.486691 ], + [ 7.6735482, 47.4866869 ], + [ 7.6735475, 47.4866857 ], + [ 7.6735459, 47.4866833 ], + [ 7.6735372, 47.4866712 ], + [ 7.6735343, 47.486667 ], + [ 7.6735299, 47.4866606 ], + [ 7.6735287, 47.4866588 ], + [ 7.6735269, 47.4866562 ], + [ 7.6735218, 47.4866484 ], + [ 7.6735196, 47.4866448 ], + [ 7.6735175, 47.4866415 ], + [ 7.6735147999999995, 47.4866374 ], + [ 7.6735142, 47.4866364 ], + [ 7.6735129, 47.4866345 ], + [ 7.6735093, 47.4866295 ], + [ 7.6735065, 47.4866258 ], + [ 7.6735050000000005, 47.4866238 ], + [ 7.6735042, 47.4866227 ], + [ 7.6735028, 47.4866207 ], + [ 7.6735001, 47.4866171 ], + [ 7.6734984, 47.4866148 ], + [ 7.6734971, 47.4866131 ], + [ 7.6734953, 47.4866105 ], + [ 7.6734922999999995, 47.4866065 ], + [ 7.6734918, 47.4866058 ], + [ 7.6734884999999995, 47.4866012 ], + [ 7.6734822, 47.4865921 ], + [ 7.6734767999999995, 47.4865842 ], + [ 7.673475, 47.4865813 ], + [ 7.6734734, 47.4865789 ], + [ 7.6734721, 47.4865771 ], + [ 7.673466, 47.4865679 ], + [ 7.6734617, 47.4865612 ], + [ 7.6734599, 47.4865583 ], + [ 7.6734580999999995, 47.4865557 ], + [ 7.673456, 47.4865523 ], + [ 7.6734518, 47.4865458 ], + [ 7.6734504, 47.4865436 ], + [ 7.6734487, 47.4865409 ], + [ 7.6734482, 47.4865401 ], + [ 7.6734431, 47.4865313 ], + [ 7.6734413, 47.486528 ], + [ 7.6734349, 47.4865178 ], + [ 7.6734349, 47.4865176 ], + [ 7.6734297, 47.4865089 ], + [ 7.6734284, 47.4865065 ], + [ 7.6734268, 47.486504 ], + [ 7.6734244, 47.4865002 ], + [ 7.6734212, 47.4864953 ], + [ 7.6734200999999995, 47.4864935 ], + [ 7.6734182, 47.4864903 ], + [ 7.6734164, 47.4864875 ], + [ 7.6734143, 47.4864841 ], + [ 7.6734137, 47.4864831 ], + [ 7.6734124, 47.486481 ], + [ 7.6734051999999995, 47.4864701 ], + [ 7.6734012, 47.4864638 ], + [ 7.6734007, 47.486463 ], + [ 7.6733985, 47.4864594 ], + [ 7.6733964, 47.4864562 ], + [ 7.6733942, 47.4864527 ], + [ 7.6733933, 47.4864512 ], + [ 7.6733919, 47.4864489 ], + [ 7.6733906, 47.4864469 ], + [ 7.673389, 47.4864444 ], + [ 7.6733849, 47.4864379 ], + [ 7.6733837, 47.486436 ], + [ 7.673382, 47.4864333 ], + [ 7.6733814, 47.4864323 ], + [ 7.6733765, 47.4864239 ], + [ 7.6733744999999995, 47.4864205 ], + [ 7.6733738, 47.4864194 ], + [ 7.6733737, 47.4864191 ], + [ 7.6733724, 47.4864171 ], + [ 7.6733668, 47.4864078 ], + [ 7.673361, 47.4863975 ], + [ 7.6733595999999995, 47.4863949 ], + [ 7.6733575, 47.4863907 ], + [ 7.6733561, 47.4863881 ], + [ 7.6733545, 47.4863851 ], + [ 7.6733518, 47.48638 ], + [ 7.6733502, 47.4863767 ], + [ 7.6733501, 47.4863763 ], + [ 7.6733478, 47.4863716 ], + [ 7.6733465, 47.4863693 ], + [ 7.6733451, 47.4863665 ], + [ 7.6733428, 47.4863618 ], + [ 7.6733407, 47.4863575 ], + [ 7.6733397, 47.4863555 ], + [ 7.6733384000000004, 47.486353 ], + [ 7.6733362, 47.4863484 ], + [ 7.6733341, 47.486344 ], + [ 7.6733331, 47.4863421 ], + [ 7.6733318, 47.4863395 ], + [ 7.6733302, 47.4863364 ], + [ 7.6733296, 47.4863351 ], + [ 7.6733276, 47.486331 ], + [ 7.6733267, 47.4863292 ], + [ 7.6733251, 47.4863261 ], + [ 7.6733232000000005, 47.4863222 ], + [ 7.6733212, 47.4863181 ], + [ 7.6733202, 47.4863163 ], + [ 7.6733183, 47.4863126 ], + [ 7.6733167, 47.4863094 ], + [ 7.6733146, 47.4863051 ], + [ 7.6733136, 47.4863032 ], + [ 7.6733115, 47.4862992 ], + [ 7.6733097, 47.4862954 ], + [ 7.6733072, 47.4862903 ], + [ 7.6733058, 47.4862875 ], + [ 7.6733048, 47.4862857 ], + [ 7.6733018, 47.4862793 ], + [ 7.6733005, 47.4862767 ], + [ 7.6732986, 47.4862724 ], + [ 7.6732938, 47.4862614 ], + [ 7.6732911, 47.4862551 ], + [ 7.673288, 47.4862469 ], + [ 7.673287, 47.4862438 ], + [ 7.6732841, 47.4862349 ], + [ 7.6732834, 47.4862327 ], + [ 7.6732826, 47.4862296 ], + [ 7.6732809, 47.4862233 ], + [ 7.6732800999999995, 47.4862202 ], + [ 7.6732794, 47.4862174 ], + [ 7.673278, 47.4862112 ], + [ 7.6732766, 47.486205 ], + [ 7.6732762, 47.4862027 ], + [ 7.6732756, 47.4861997 ], + [ 7.6732743, 47.4861918 ], + [ 7.6732739, 47.4861888 ], + [ 7.6732732, 47.4861831 ], + [ 7.6732729, 47.48618 ], + [ 7.6732727, 47.4861784 ], + [ 7.6732723, 47.4861746 ], + [ 7.6732715, 47.4861641 ], + [ 7.6732715, 47.486164 ], + [ 7.673271, 47.4861609 ], + [ 7.6732700000000005, 47.4861536 ], + [ 7.6732685, 47.4861406 ], + [ 7.673268, 47.4861374 ], + [ 7.6732676, 47.4861342 ], + [ 7.6732671, 47.4861306 ], + [ 7.6732664, 47.486125 ], + [ 7.6732664, 47.4861245 ], + [ 7.673266, 47.4861208 ], + [ 7.6732656, 47.4861161 ], + [ 7.6732654, 47.4861124 ], + [ 7.6732651, 47.4861088 ], + [ 7.6732648999999995, 47.4861051 ], + [ 7.6732648, 47.4861023 ], + [ 7.6732647, 47.4860985 ], + [ 7.6732645999999995, 47.486095 ], + [ 7.6732644, 47.4860874 ], + [ 7.6732644, 47.4860848 ], + [ 7.6732644, 47.4860832 ], + [ 7.6732644, 47.4860756 ], + [ 7.6732645, 47.486072 ], + [ 7.6732645999999995, 47.4860682 ], + [ 7.6732647, 47.4860651 ], + [ 7.6732648, 47.4860613 ], + [ 7.673265, 47.4860574 ], + [ 7.6732653, 47.4860537 ], + [ 7.6732657, 47.4860485 ], + [ 7.673266, 47.4860449 ], + [ 7.673266, 47.4860445 ], + [ 7.6732667, 47.4860382 ], + [ 7.6732672, 47.486034599999996 ], + [ 7.6732678, 47.48603 ], + [ 7.6732685, 47.4860253 ], + [ 7.6732696, 47.4860175 ], + [ 7.6732702, 47.4860135 ], + [ 7.6732707, 47.4860105 ], + [ 7.6732716, 47.4860056 ], + [ 7.6732716, 47.4860053 ], + [ 7.6732721999999995, 47.4860024 ], + [ 7.6732729, 47.4859988 ], + [ 7.6732756, 47.4859863 ], + [ 7.673277, 47.4859798 ], + [ 7.6732778, 47.4859766 ], + [ 7.6732796, 47.4859699 ], + [ 7.6732821, 47.4859614 ], + [ 7.6732822, 47.485961 ], + [ 7.6732837, 47.485956 ], + [ 7.6732846, 47.4859532 ], + [ 7.6732869, 47.4859465 ], + [ 7.6732933, 47.4859285 ], + [ 7.6732952999999995, 47.4859231 ], + [ 7.6732957, 47.4859223 ], + [ 7.6733016, 47.4859071 ], + [ 7.6733031, 47.4859036 ], + [ 7.6733036, 47.4859023 ], + [ 7.6733042000000005, 47.485901 ], + [ 7.6733072, 47.485894 ], + [ 7.6733079, 47.4858926 ], + [ 7.6733087, 47.4858905 ], + [ 7.6733101999999995, 47.4858868 ], + [ 7.6733138, 47.4858783 ], + [ 7.6733155, 47.4858741 ], + [ 7.6733175, 47.4858693 ], + [ 7.6733187, 47.4858666 ], + [ 7.6733227, 47.4858579 ], + [ 7.6733242, 47.4858549 ], + [ 7.6733266, 47.4858495 ], + [ 7.6733296, 47.4858433 ], + [ 7.6733308000000005, 47.485841 ], + [ 7.6733318, 47.4858388 ], + [ 7.6733339, 47.4858344 ], + [ 7.6733361, 47.4858298 ], + [ 7.6733376, 47.485827 ], + [ 7.6733386, 47.485825 ], + [ 7.6733405, 47.4858207 ], + [ 7.6733427, 47.4858163 ], + [ 7.6733442, 47.4858134 ], + [ 7.6733452, 47.4858115 ], + [ 7.6733471, 47.485807199999996 ], + [ 7.6733493, 47.4858028 ], + [ 7.6733509, 47.4857996 ], + [ 7.6733519999999995, 47.4857974 ], + [ 7.6733542, 47.4857928 ], + [ 7.6733559, 47.4857893 ], + [ 7.6733587, 47.4857839 ], + [ 7.6733602, 47.4857811 ], + [ 7.6733614, 47.4857786 ], + [ 7.6733614, 47.4857785 ], + [ 7.6733633999999995, 47.4857746 ], + [ 7.6733648, 47.485772 ], + [ 7.6733703, 47.485762 ], + [ 7.6733758, 47.4857528 ], + [ 7.6733762, 47.485752 ], + [ 7.6733798, 47.485745 ], + [ 7.673381, 47.4857428 ], + [ 7.673382, 47.4857409 ], + [ 7.6733838, 47.4857375 ], + [ 7.6733851, 47.4857349 ], + [ 7.6733907, 47.485725 ], + [ 7.6733963, 47.4857157 ], + [ 7.6733972, 47.4857141 ], + [ 7.6733972999999995, 47.485714 ], + [ 7.6733977, 47.4857133 ], + [ 7.6733993, 47.4857103 ], + [ 7.6734047, 47.4857008 ], + [ 7.6734048, 47.4857007 ], + [ 7.6734075, 47.4856962 ], + [ 7.6734091, 47.4856936 ], + [ 7.6734093, 47.4856932 ], + [ 7.6734127999999995, 47.4856866 ], + [ 7.6734139, 47.4856845 ], + [ 7.6734148, 47.4856827 ], + [ 7.6734165, 47.4856794 ], + [ 7.6734179000000005, 47.4856767 ], + [ 7.6734231, 47.4856675 ], + [ 7.6734281, 47.4856589 ], + [ 7.6734282, 47.4856587 ], + [ 7.6734311, 47.4856532 ], + [ 7.6734317, 47.4856519 ], + [ 7.6734335, 47.4856483 ], + [ 7.6734349, 47.4856453 ], + [ 7.6734371, 47.485641 ], + [ 7.6734383, 47.4856388 ], + [ 7.6734405, 47.4856342 ], + [ 7.6734416, 47.4856318 ], + [ 7.6734451, 47.4856251 ], + [ 7.6734466, 47.4856223 ], + [ 7.6734483, 47.485619 ], + [ 7.6734487, 47.4856181 ], + [ 7.6734499, 47.4856154 ], + [ 7.673451, 47.485613 ], + [ 7.6734546, 47.4856052 ], + [ 7.673456, 47.4856025 ], + [ 7.6734583, 47.4855974 ], + [ 7.6734612, 47.4855913 ], + [ 7.6734623, 47.4855891 ], + [ 7.6734634, 47.485587 ], + [ 7.6734655, 47.4855825 ], + [ 7.6734678, 47.4855777 ], + [ 7.6734691999999995, 47.4855749 ], + [ 7.6734702, 47.4855731 ], + [ 7.6734721, 47.4855688 ], + [ 7.6734743, 47.4855642 ], + [ 7.6734755, 47.4855618 ], + [ 7.6734763, 47.4855604 ], + [ 7.6734781, 47.4855565 ], + [ 7.6734807, 47.4855509 ], + [ 7.6734808999999995, 47.4855506 ], + [ 7.6734813, 47.4855496 ], + [ 7.673483, 47.4855455 ], + [ 7.6734861, 47.4855387 ], + [ 7.6734869, 47.4855368 ], + [ 7.6734907, 47.4855284 ], + [ 7.6734922999999995, 47.4855249 ], + [ 7.6734948, 47.4855188 ], + [ 7.6734985, 47.4855103 ], + [ 7.6734989, 47.4855095 ], + [ 7.6734994, 47.4855083 ], + [ 7.6735005, 47.4855057 ], + [ 7.6735038, 47.4854976 ], + [ 7.6735062, 47.4854913 ], + [ 7.6735063, 47.4854911 ], + [ 7.6735088000000005, 47.4854851 ], + [ 7.6735104, 47.4854803 ], + [ 7.6735116, 47.4854772 ], + [ 7.6735131, 47.4854732 ], + [ 7.6735147, 47.4854692 ], + [ 7.6735149, 47.4854688 ], + [ 7.6735153, 47.4854675 ], + [ 7.6735175, 47.4854613 ], + [ 7.6735185999999995, 47.4854582 ], + [ 7.6735198, 47.4854552 ], + [ 7.6735223, 47.485449 ], + [ 7.6735231, 47.4854472 ], + [ 7.6735247, 47.485443 ], + [ 7.673525, 47.4854417 ], + [ 7.6735256, 47.4854394 ], + [ 7.6735261999999995, 47.4854374 ], + [ 7.6735272, 47.4854343 ], + [ 7.6735295, 47.4854269 ], + [ 7.6735325, 47.4854185 ], + [ 7.6735347, 47.4854117 ], + [ 7.6735356, 47.4854089 ], + [ 7.6735373, 47.4854038 ], + [ 7.6735379, 47.4854017 ], + [ 7.6735387, 47.4853989 ], + [ 7.6735393, 47.485397 ], + [ 7.6735402, 47.4853938 ], + [ 7.6735428, 47.4853858 ], + [ 7.6735459, 47.4853769 ], + [ 7.6735484, 47.4853696 ], + [ 7.6735499, 47.4853652 ], + [ 7.6735524, 47.4853583 ], + [ 7.6735541, 47.4853531 ], + [ 7.6735561, 47.4853462 ], + [ 7.6735565999999995, 47.4853445 ], + [ 7.6735600999999996, 47.4853333 ], + [ 7.6735613, 47.4853298 ], + [ 7.6735629, 47.4853248 ], + [ 7.6735635, 47.4853228 ], + [ 7.6735645, 47.4853189 ], + [ 7.6735654, 47.4853158 ], + [ 7.6735657, 47.4853148 ], + [ 7.6735671, 47.4853101 ], + [ 7.6735692, 47.4853034 ], + [ 7.6735702, 47.4852997 ], + [ 7.6735714, 47.4852954 ], + [ 7.6735717, 47.4852944 ], + [ 7.6735726, 47.4852912 ], + [ 7.673575, 47.4852838 ], + [ 7.6735766, 47.4852789 ], + [ 7.6735772, 47.4852772 ], + [ 7.6735818, 47.4852641 ], + [ 7.6735843, 47.4852571 ], + [ 7.6735878, 47.4852482 ], + [ 7.6735896, 47.4852436 ], + [ 7.6735903, 47.4852418 ], + [ 7.673591, 47.48524 ], + [ 7.6735921, 47.4852373 ], + [ 7.6735944, 47.4852318 ], + [ 7.6735945999999995, 47.4852311 ], + [ 7.6735967, 47.4852254 ], + [ 7.6735979, 47.4852224 ], + [ 7.6735983, 47.4852212 ], + [ 7.6736015, 47.4852134 ], + [ 7.6736023, 47.4852117 ], + [ 7.6736066, 47.4852007 ], + [ 7.6736084, 47.4851955 ], + [ 7.6736096, 47.4851922 ], + [ 7.6736122, 47.4851855 ], + [ 7.6736139, 47.4851804 ], + [ 7.6736147, 47.4851778 ], + [ 7.6736158, 47.4851748 ], + [ 7.6736164, 47.4851727 ], + [ 7.6736173, 47.4851694 ], + [ 7.6736177, 47.4851679 ], + [ 7.6736187000000005, 47.4851648 ], + [ 7.6736208, 47.4851582 ], + [ 7.6736217, 47.4851553 ], + [ 7.6736224, 47.4851533 ], + [ 7.6736245, 47.4851473 ], + [ 7.673627, 47.48514 ], + [ 7.6736292, 47.4851338 ], + [ 7.6736322, 47.4851256 ], + [ 7.6736346, 47.485119 ], + [ 7.6736368, 47.485113 ], + [ 7.673637, 47.4851125 ], + [ 7.673643, 47.4850973 ], + [ 7.6736487, 47.4850838 ], + [ 7.6732, 47.4850241 ], + [ 7.6728214999999995, 47.4849737 ], + [ 7.6725662, 47.4851477 ], + [ 7.6721260000000004, 47.4852405 ], + [ 7.672059, 47.4854015 ], + [ 7.6721959, 47.4857228 ], + [ 7.6723331, 47.4860901 ], + [ 7.6722754, 47.4861163 ], + [ 7.6722671, 47.48612 ], + [ 7.6721492, 47.4861736 ], + [ 7.6719106, 47.4864753 ], + [ 7.6719017, 47.4864866 ], + [ 7.6718972, 47.4864923 ], + [ 7.6719052, 47.486558 ], + [ 7.6719079, 47.4865805 ], + [ 7.6719116, 47.4866109 ], + [ 7.6719214000000004, 47.4866913 ], + [ 7.6719291, 47.4867546 ], + [ 7.671941, 47.4868522 ], + [ 7.6719411, 47.486852999999996 ], + [ 7.6719412, 47.4868537 ], + [ 7.6719438, 47.486875 ], + [ 7.6719522, 47.4869442 ], + [ 7.6719574999999995, 47.4869773 ], + [ 7.6719877, 47.4871641 ], + [ 7.6720051, 47.4872727 ], + [ 7.6720089, 47.487296 ], + [ 7.6720231, 47.487384 ], + [ 7.6722526, 47.4874187 ], + [ 7.6725367, 47.4874616 ], + [ 7.6730503, 47.4875392 ], + [ 7.6732131, 47.4875621 ], + [ 7.6732498, 47.4875673 ], + [ 7.6733725, 47.4875846 ], + [ 7.6734427, 47.4875945 ], + [ 7.6735052, 47.4876033 ], + [ 7.6737535999999995, 47.4876383 ], + [ 7.6738352, 47.4876498 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr151", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Riffengraben", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Riffengraben", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Riffengraben", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Riffengraben", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8337412, 47.3704691 ], + [ 7.8337777, 47.3705342 ], + [ 7.8339898, 47.3705142 ], + [ 7.8340998, 47.3705427 ], + [ 7.8342211, 47.3706673 ], + [ 7.8342274, 47.3710571 ], + [ 7.8341524, 47.3714494 ], + [ 7.8341776, 47.3715071 ], + [ 7.8342591, 47.371514 ], + [ 7.8343188999999995, 47.3714561 ], + [ 7.8344152, 47.3710877 ], + [ 7.8344305, 47.3707943 ], + [ 7.8344261, 47.3706402 ], + [ 7.8342649, 47.370381 ], + [ 7.8341088, 47.3703261 ], + [ 7.8337413, 47.3703996 ], + [ 7.8337412, 47.3704691 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns196", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Hecken-Komplex Schmutzberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Hecken-Komplex Schmutzberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Hecken-Komplex Schmutzberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Hecken-Komplex Schmutzberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8940190999999995, 47.4166279 ], + [ 7.8941238, 47.4164562 ], + [ 7.8940363, 47.4163896 ], + [ 7.8939384, 47.4164226 ], + [ 7.8938814, 47.4164726 ], + [ 7.8936557, 47.4163844 ], + [ 7.8929228, 47.4163459 ], + [ 7.8926399, 47.416305 ], + [ 7.8924855, 47.4162834 ], + [ 7.8924275999999995, 47.416276 ], + [ 7.8923958, 47.416272 ], + [ 7.8922635, 47.4162539 ], + [ 7.892248, 47.4162518 ], + [ 7.8918788, 47.4161868 ], + [ 7.8914494, 47.4161125 ], + [ 7.8913359, 47.4160914 ], + [ 7.8910934, 47.4160451 ], + [ 7.8908225, 47.4160038 ], + [ 7.8905532, 47.4159426 ], + [ 7.8904619, 47.4159077 ], + [ 7.8903706, 47.4158728 ], + [ 7.8902608999999995, 47.4161911 ], + [ 7.8902617, 47.416477 ], + [ 7.8902617, 47.4165033 ], + [ 7.8902458, 47.4165036 ], + [ 7.8899203, 47.4165061 ], + [ 7.8897816, 47.416510099999996 ], + [ 7.8897818, 47.4166221 ], + [ 7.8896676, 47.4166936 ], + [ 7.8895215, 47.416772 ], + [ 7.889349, 47.4168068 ], + [ 7.8890134, 47.4168229 ], + [ 7.888982, 47.4169234 ], + [ 7.8889572999999995, 47.417002600000004 ], + [ 7.8888888, 47.4172009 ], + [ 7.8888843, 47.4172748 ], + [ 7.8889258, 47.4173588 ], + [ 7.8889826, 47.4174544 ], + [ 7.8889886, 47.4174659 ], + [ 7.8889952, 47.4174773 ], + [ 7.8890024, 47.4174885 ], + [ 7.8890101, 47.4174996 ], + [ 7.8890184, 47.4175104 ], + [ 7.8890272, 47.4175211 ], + [ 7.8890365, 47.4175316 ], + [ 7.8890464, 47.4175418 ], + [ 7.889057, 47.4175507 ], + [ 7.8890682, 47.4175592 ], + [ 7.88908, 47.4175674 ], + [ 7.8890923, 47.4175752 ], + [ 7.8891051999999995, 47.4175826 ], + [ 7.8891185, 47.4175896 ], + [ 7.8891269, 47.4175948 ], + [ 7.8891358, 47.4175996 ], + [ 7.8891452, 47.4176041 ], + [ 7.8891549, 47.4176082 ], + [ 7.8891649, 47.4176119 ], + [ 7.8891753, 47.4176152 ], + [ 7.8891859, 47.417618 ], + [ 7.8891968, 47.4176204 ], + [ 7.889208, 47.4176224 ], + [ 7.8892194, 47.4176239 ], + [ 7.8892309, 47.4176249 ], + [ 7.8892425, 47.4176254 ], + [ 7.8892541, 47.4176255 ], + [ 7.8892657, 47.417625 ], + [ 7.8892772, 47.4176241 ], + [ 7.8892886, 47.4176227 ], + [ 7.8892999, 47.4176209 ], + [ 7.8893109, 47.4176185 ], + [ 7.8893254, 47.4176164 ], + [ 7.8893398, 47.4176139 ], + [ 7.8893539, 47.417611 ], + [ 7.8893679, 47.4176077 ], + [ 7.8893816999999995, 47.4176039 ], + [ 7.8893951, 47.4175998 ], + [ 7.8894839, 47.4175685 ], + [ 7.8895777, 47.4175353 ], + [ 7.8899317, 47.4173348 ], + [ 7.890261, 47.4171471 ], + [ 7.8903256, 47.4170142 ], + [ 7.8903349, 47.4169421 ], + [ 7.8904335, 47.4169322 ], + [ 7.890684, 47.4169069 ], + [ 7.8907409, 47.4169009 ], + [ 7.890999, 47.4168962 ], + [ 7.8913709999999995, 47.4168741 ], + [ 7.8917093, 47.4168695 ], + [ 7.8918398, 47.4168785 ], + [ 7.89204, 47.4168923 ], + [ 7.8922622, 47.4168912 ], + [ 7.8924003, 47.4168787 ], + [ 7.8924116, 47.4168709 ], + [ 7.8924229, 47.4168632 ], + [ 7.8924413, 47.4167968 ], + [ 7.8924653, 47.4166955 ], + [ 7.8924828, 47.4166332 ], + [ 7.892483, 47.4166326 ], + [ 7.8924882, 47.416603 ], + [ 7.8925722, 47.4166192 ], + [ 7.8929019, 47.4166781 ], + [ 7.8930881, 47.4167122 ], + [ 7.8932296, 47.4167369 ], + [ 7.8935343, 47.4167886 ], + [ 7.89383, 47.4168371 ], + [ 7.8941289, 47.4168804 ], + [ 7.8944130999999995, 47.4169287 ], + [ 7.8944682, 47.4169386 ], + [ 7.8947076, 47.4169861 ], + [ 7.8947197, 47.4169888 ], + [ 7.8947319, 47.4169909 ], + [ 7.8947444, 47.4169924 ], + [ 7.8947571, 47.4169932 ], + [ 7.8947697, 47.4169935 ], + [ 7.8947824, 47.4169931 ], + [ 7.894795, 47.416992 ], + [ 7.8948073999999995, 47.4169904 ], + [ 7.8948316, 47.4169852 ], + [ 7.8949004, 47.4169611 ], + [ 7.8949189, 47.4169464 ], + [ 7.894938, 47.4168941 ], + [ 7.8948908, 47.4168501 ], + [ 7.8948573, 47.416819 ], + [ 7.8940190999999995, 47.4166279 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr069", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Wolstel", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Wolstel", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Wolstel", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Wolstel", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.0100985, 46.2106256 ], + [ 7.0101054, 46.2108021 ], + [ 7.010129, 46.210978 ], + [ 7.010169, 46.2111524 ], + [ 7.0102255, 46.2113246 ], + [ 7.010298, 46.2114938 ], + [ 7.0103863, 46.2116595 ], + [ 7.01049, 46.2118207 ], + [ 7.0106087, 46.2119769 ], + [ 7.0107418, 46.2121274 ], + [ 7.0108888, 46.2122715 ], + [ 7.0110491, 46.2124086 ], + [ 7.0110905, 46.2124412 ], + [ 7.011138, 46.2125261 ], + [ 7.0111566, 46.2125572 ], + [ 7.0112431, 46.2128386 ], + [ 7.0112845, 46.2129596 ], + [ 7.011357, 46.2131289 ], + [ 7.0114453, 46.2132945 ], + [ 7.0115491, 46.2134558 ], + [ 7.0116677, 46.213612 ], + [ 7.0117775, 46.2137376 ], + [ 7.0118383, 46.2138286 ], + [ 7.0118383, 46.2138287 ], + [ 7.011957, 46.2139849 ], + [ 7.0120902, 46.2141353 ], + [ 7.0122372, 46.2142794 ], + [ 7.0123976, 46.2144166 ], + [ 7.0125704, 46.2145461 ], + [ 7.0127552, 46.2146675 ], + [ 7.0129509, 46.2147803 ], + [ 7.0131569, 46.2148839 ], + [ 7.0133722, 46.214978 ], + [ 7.0135959, 46.2150621 ], + [ 7.013827, 46.2151358 ], + [ 7.0140646, 46.215199 ], + [ 7.0143077, 46.2152511 ], + [ 7.0144088, 46.2152693 ], + [ 7.0161252, 46.2158709 ], + [ 7.016139, 46.2158757 ], + [ 7.0163701, 46.2159494 ], + [ 7.0166077, 46.2160125 ], + [ 7.0168508, 46.2160647 ], + [ 7.0170982, 46.2161057 ], + [ 7.017349, 46.2161354 ], + [ 7.017602, 46.2161537 ], + [ 7.0178562, 46.2161604 ], + [ 7.0179433, 46.21616 ], + [ 7.0268965, 46.2160539 ], + [ 7.0270636, 46.2160494 ], + [ 7.0270637, 46.2160494 ], + [ 7.027317, 46.216033 ], + [ 7.0275682, 46.2160052 ], + [ 7.0278163, 46.215966 ], + [ 7.0280601, 46.2159156 ], + [ 7.0282987, 46.2158542 ], + [ 7.0285309, 46.2157822 ], + [ 7.0287559, 46.2156998 ], + [ 7.0289727, 46.2156073 ], + [ 7.0291802, 46.2155052 ], + [ 7.0293777, 46.2153939 ], + [ 7.0295643, 46.2152738 ], + [ 7.0297392, 46.2151456 ], + [ 7.0299016, 46.2150097 ], + [ 7.0300508, 46.2148666 ], + [ 7.0301863, 46.2147172 ], + [ 7.0303074, 46.2145619 ], + [ 7.0304136, 46.2144014 ], + [ 7.0305044, 46.2142364 ], + [ 7.0305795, 46.2140677 ], + [ 7.0306386, 46.2138959 ], + [ 7.0306813, 46.2137219 ], + [ 7.0307076, 46.2135462 ], + [ 7.0307125, 46.2134902 ], + [ 7.030761, 46.2128156 ], + [ 7.0307607, 46.2127866 ], + [ 7.0307657, 46.2126952 ], + [ 7.0307587, 46.2125187 ], + [ 7.0307351, 46.2123429 ], + [ 7.030695, 46.2121685 ], + [ 7.0306385, 46.2119963 ], + [ 7.030566, 46.211827 ], + [ 7.0304776, 46.2116614 ], + [ 7.0304389, 46.2116013 ], + [ 7.0305102, 46.2104811 ], + [ 7.0305139, 46.2103759 ], + [ 7.030507, 46.2101994 ], + [ 7.0304833, 46.2100236 ], + [ 7.0304432, 46.2098492 ], + [ 7.0303868, 46.209677 ], + [ 7.0303142, 46.2095077 ], + [ 7.0302258, 46.2093421 ], + [ 7.0302021, 46.2093027 ], + [ 7.0285653, 46.2066394 ], + [ 7.0287699, 46.2053096 ], + [ 7.0287822, 46.2052135 ], + [ 7.0287918, 46.2050371 ], + [ 7.0287849, 46.2048605 ], + [ 7.0287613, 46.2046847 ], + [ 7.0287211, 46.2045103 ], + [ 7.0286647, 46.2043381 ], + [ 7.0285921, 46.2041689 ], + [ 7.0285038, 46.2040033 ], + [ 7.0284, 46.203842 ], + [ 7.0282813, 46.2036858 ], + [ 7.0281481, 46.2035354 ], + [ 7.0280011, 46.2033913 ], + [ 7.0278408, 46.2032542 ], + [ 7.0276679, 46.2031247 ], + [ 7.0274832, 46.2030033 ], + [ 7.0272874, 46.2028905 ], + [ 7.0270814, 46.2027869 ], + [ 7.0268662, 46.2026929 ], + [ 7.0266425, 46.2026088 ], + [ 7.0264114, 46.2025351 ], + [ 7.0261738, 46.202472 ], + [ 7.0259309, 46.2024199 ], + [ 7.0256835, 46.2023789 ], + [ 7.0254328, 46.2023492 ], + [ 7.0253041, 46.2023384 ], + [ 7.0244506, 46.2022773 ], + [ 7.0232161, 46.2021887 ], + [ 7.0223996, 46.2021298 ], + [ 7.0223812, 46.2021285 ], + [ 7.0216198, 46.2020762 ], + [ 7.0215242, 46.2020705 ], + [ 7.0209851, 46.2020428 ], + [ 7.0209728, 46.2020421 ], + [ 7.0207187, 46.2020354 ], + [ 7.0204644, 46.2020403 ], + [ 7.0202112, 46.2020566 ], + [ 7.01996, 46.2020845 ], + [ 7.019712, 46.2021236 ], + [ 7.0194683, 46.202174 ], + [ 7.0192298, 46.2022353 ], + [ 7.0189975, 46.2023073 ], + [ 7.0188984, 46.2023421 ], + [ 7.0185062, 46.2024843 ], + [ 7.0183886, 46.2025161 ], + [ 7.0181564, 46.2025881 ], + [ 7.0179314, 46.2026705 ], + [ 7.0177147, 46.2027629 ], + [ 7.0175072, 46.202865 ], + [ 7.017504, 46.2028667 ], + [ 7.0173514, 46.2029473 ], + [ 7.0171571, 46.2030569 ], + [ 7.0169706, 46.2031769 ], + [ 7.0167957, 46.2033052 ], + [ 7.0167031, 46.2033804 ], + [ 7.0165941, 46.2034724 ], + [ 7.016539, 46.2035202 ], + [ 7.0164423, 46.2035502 ], + [ 7.0162173, 46.2036326 ], + [ 7.0162169, 46.2036328 ], + [ 7.0159471, 46.2037396 ], + [ 7.0157308, 46.2038319 ], + [ 7.0155233, 46.203934 ], + [ 7.0153258, 46.2040453 ], + [ 7.0151392, 46.2041653 ], + [ 7.0149643, 46.2042935 ], + [ 7.0148019, 46.2044294 ], + [ 7.0147076, 46.2045175 ], + [ 7.014545, 46.2046758 ], + [ 7.0144901, 46.2047307 ], + [ 7.0143546, 46.2048802 ], + [ 7.014267, 46.20499 ], + [ 7.0141933, 46.2050877 ], + [ 7.0141598, 46.2051332 ], + [ 7.0140883, 46.2052381 ], + [ 7.0140444, 46.2052969 ], + [ 7.0138964, 46.2054388 ], + [ 7.0137609, 46.2055882 ], + [ 7.0136573, 46.2057196 ], + [ 7.0136453, 46.2057296 ], + [ 7.0135326, 46.2058033 ], + [ 7.0134647, 46.2058488 ], + [ 7.0134508, 46.2058584 ], + [ 7.0134427, 46.2058621 ], + [ 7.0132352, 46.2059642 ], + [ 7.0130377, 46.2060754 ], + [ 7.0129559, 46.2061261 ], + [ 7.012787, 46.2062222 ], + [ 7.0126004, 46.2063422 ], + [ 7.0124256, 46.2064704 ], + [ 7.0122631, 46.2066064 ], + [ 7.0121138, 46.2067493 ], + [ 7.0119783, 46.2068988 ], + [ 7.0118572, 46.2070541 ], + [ 7.011751, 46.2072145 ], + [ 7.0116601, 46.2073795 ], + [ 7.0115883, 46.2075396 ], + [ 7.0115328, 46.2076307 ], + [ 7.0115315, 46.2076329 ], + [ 7.0114308, 46.2076976 ], + [ 7.011256, 46.2078259 ], + [ 7.0110935, 46.2079618 ], + [ 7.0109442, 46.2081047 ], + [ 7.0108087, 46.2082542 ], + [ 7.0106876, 46.2084095 ], + [ 7.0105814, 46.2085699 ], + [ 7.0104905, 46.2087349 ], + [ 7.0104153, 46.2089036 ], + [ 7.0103562, 46.2090753 ], + [ 7.0103134, 46.2092494 ], + [ 7.010287, 46.2094251 ], + [ 7.0102773, 46.2096015 ], + [ 7.0102843, 46.2097781 ], + [ 7.0102873, 46.2098096 ], + [ 7.0102365, 46.2099276 ], + [ 7.0101774, 46.2100994 ], + [ 7.0101345, 46.2102735 ], + [ 7.0101082, 46.2104491 ], + [ 7.0100985, 46.2106256 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00047", + "country" : "CHE", + "name" : [ + { + "text" : "Académie de police de Savatan", + "lang" : "de-CH" + }, + { + "text" : "Académie de police de Savatan", + "lang" : "fr-CH" + }, + { + "text" : "Académie de police de Savatan", + "lang" : "it-CH" + }, + { + "text" : "Académie de police de Savatan", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kantonspolizei Waadt", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale vaudoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Vaud", + "lang" : "it-CH" + }, + { + "text" : "Vaud Cantonal Police", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.pcv@vd.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.60986, 46.7676262 ], + [ 7.6100121, 46.7676498 ], + [ 7.6100517, 46.7675576 ], + [ 7.6101236, 46.767574 ], + [ 7.6102388, 46.7675933 ], + [ 7.6103567, 46.7676043 ], + [ 7.610475, 46.7676054 ], + [ 7.6105952, 46.7675981 ], + [ 7.6105998, 46.7676208 ], + [ 7.6112247, 46.767504 ], + [ 7.6118976, 46.7673781 ], + [ 7.6118653, 46.7673493 ], + [ 7.6122936, 46.7672613 ], + [ 7.6122909, 46.7672561 ], + [ 7.6124278, 46.767228 ], + [ 7.6124523, 46.7672231 ], + [ 7.6124766, 46.7672179 ], + [ 7.6125009, 46.7672126 ], + [ 7.6125251, 46.767207 ], + [ 7.6125492, 46.767201299999996 ], + [ 7.6125732, 46.7671954 ], + [ 7.6125971, 46.7671893 ], + [ 7.6126195, 46.7671834 ], + [ 7.6126419, 46.7671773 ], + [ 7.6126641, 46.7671711 ], + [ 7.6126863, 46.7671646 ], + [ 7.6127082999999995, 46.7671581 ], + [ 7.6127303, 46.7671513 ], + [ 7.6127521, 46.7671444 ], + [ 7.6127734, 46.7671374 ], + [ 7.6127945, 46.7671302 ], + [ 7.6128156, 46.7671229 ], + [ 7.6128365, 46.7671153 ], + [ 7.6128573, 46.7671077 ], + [ 7.612878, 46.7670998 ], + [ 7.6128985, 46.7670918 ], + [ 7.6129187, 46.7670836 ], + [ 7.6129387, 46.7670754 ], + [ 7.6129586, 46.7670669 ], + [ 7.6129783, 46.7670584 ], + [ 7.6129979, 46.7670496 ], + [ 7.6130174, 46.7670407 ], + [ 7.6130367, 46.7670317 ], + [ 7.6131302, 46.7669846 ], + [ 7.6132325, 46.7669268 ], + [ 7.6133192, 46.7668739 ], + [ 7.6134065, 46.7668215 ], + [ 7.613479, 46.7667824 ], + [ 7.6135577, 46.7667481 ], + [ 7.6136016, 46.7667338 ], + [ 7.6136429, 46.7667203 ], + [ 7.613728, 46.7667008 ], + [ 7.6138164, 46.7666888 ], + [ 7.6139037, 46.7666842 ], + [ 7.6139924, 46.7666862 ], + [ 7.6140875999999995, 46.7666969 ], + [ 7.6141842, 46.7667165 ], + [ 7.6143041, 46.7667499 ], + [ 7.6152312, 46.7670345 ], + [ 7.6157249, 46.7671861 ], + [ 7.6161726, 46.7673235 ], + [ 7.616196, 46.767333 ], + [ 7.6162517, 46.7673557 ], + [ 7.6162895, 46.767371 ], + [ 7.6165214, 46.7671772 ], + [ 7.6165841, 46.7671248 ], + [ 7.6165966, 46.7671136 ], + [ 7.6167967999999995, 46.7669453 ], + [ 7.6168305, 46.7669188 ], + [ 7.6169167, 46.766851 ], + [ 7.617049, 46.7667221 ], + [ 7.6172143, 46.7665702 ], + [ 7.6173063, 46.7664834 ], + [ 7.6175386, 46.7663273 ], + [ 7.6176402, 46.7662605 ], + [ 7.6176818, 46.7662719 ], + [ 7.6179508, 46.7655966 ], + [ 7.618069, 46.765286 ], + [ 7.6179115, 46.765231 ], + [ 7.6179012, 46.765262 ], + [ 7.6174244, 46.7650964 ], + [ 7.6171824, 46.7648444 ], + [ 7.6173559, 46.7646013 ], + [ 7.6168806, 46.7645027 ], + [ 7.6164950000000005, 46.7644259 ], + [ 7.61643, 46.764488 ], + [ 7.6158949, 46.7643808 ], + [ 7.6158735, 46.7643421 ], + [ 7.6161457, 46.7641486 ], + [ 7.6163386, 46.7640118 ], + [ 7.6165613, 46.7638556 ], + [ 7.6167824, 46.7636956 ], + [ 7.6170574, 46.7635011 ], + [ 7.6172688, 46.7633359 ], + [ 7.6176244, 46.7630548 ], + [ 7.6178128, 46.7629044 ], + [ 7.6179497, 46.7627942 ], + [ 7.6180717, 46.7626982 ], + [ 7.6181235, 46.7626574 ], + [ 7.6181756, 46.7626164 ], + [ 7.618253, 46.7625556 ], + [ 7.618466, 46.762386 ], + [ 7.6185705, 46.7622846 ], + [ 7.6185869, 46.7622904 ], + [ 7.6186294, 46.7622563 ], + [ 7.6184313, 46.7621702 ], + [ 7.6184343, 46.7621593 ], + [ 7.6171837, 46.761958 ], + [ 7.6167791000000005, 46.761912 ], + [ 7.6163445, 46.7618805 ], + [ 7.6160825, 46.7618872 ], + [ 7.6155607, 46.761925 ], + [ 7.6152062, 46.7619882 ], + [ 7.6149649, 46.7620621 ], + [ 7.6144843, 46.7622609 ], + [ 7.6142413, 46.7624306 ], + [ 7.6140459, 46.7626241 ], + [ 7.6134869, 46.7633267 ], + [ 7.6131864, 46.7637278 ], + [ 7.6127758, 46.7643255 ], + [ 7.6122999, 46.7650556 ], + [ 7.6117488, 46.7658884 ], + [ 7.6114897, 46.7661625 ], + [ 7.611219, 46.766409 ], + [ 7.6107144, 46.7667599 ], + [ 7.6098666, 46.7673512 ], + [ 7.6096354, 46.7674991 ], + [ 7.60986, 46.7676262 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VBS_13", + "country" : "CHE", + "name" : [ + { + "text" : "VBS_13 Thun", + "lang" : "de-CH" + }, + { + "text" : "VBS_13 Thun", + "lang" : "fr-CH" + }, + { + "text" : "VBS_13 Thun", + "lang" : "it-CH" + }, + { + "text" : "VBS_13 Thun", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "regulationExemption" : "YES", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Eidgenössisches Departement für Verteidigung, Bevölkerungsschutz und Sport (VBS)", + "lang" : "de-CH" + }, + { + "text" : "Département fédéral de la défense, de la protection de la population et des sports (DDPS)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento federale della difesa, della protezione della popolazione e dello sport (DDPS)", + "lang" : "it-CH" + }, + { + "text" : "Federal Department of Defence, Civil Protection and Sport (DDPS)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Lageverfolgungszentrum der Armee LVZ A", + "lang" : "de-CH" + }, + { + "text" : "Centre de suivi de la situation de l’armée, CSS A", + "lang" : "fr-CH" + }, + { + "text" : "Centro di monitoraggio della situazione dell’esercito, Centro mon sit Es", + "lang" : "it-CH" + }, + { + "text" : "Joint Operation Center, JOC", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vtg.admin.ch/en/joint-operations-command", + "email" : "lvz.op@vtg.admin.ch", + "phone" : "+41 58 464 96 43", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4795016, 46.2678951 ], + [ 7.4815624, 46.2684002 ], + [ 7.4851048, 46.269301 ], + [ 7.4855637999999995, 46.2696763 ], + [ 7.4867355, 46.2681218 ], + [ 7.4859819, 46.2676745 ], + [ 7.4819911, 46.2659884 ], + [ 7.4807455, 46.2659167 ], + [ 7.4795016, 46.2678951 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "CEP0001", + "country" : "CHE", + "name" : [ + { + "text" : "Centre éducatif de Pramont", + "lang" : "de-CH" + }, + { + "text" : "Centre éducatif de Pramont", + "lang" : "fr-CH" + }, + { + "text" : "Centre éducatif de Pramont", + "lang" : "it-CH" + }, + { + "text" : "Centre éducatif de Pramont", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Dienststelle für Straf-und Massnahmenvollzug", + "lang" : "de-CH" + }, + { + "text" : "Service de l'application des peines et mesures", + "lang" : "fr-CH" + }, + { + "text" : "Service de l'application des peines et mesures", + "lang" : "it-CH" + }, + { + "text" : "Service de l'application des peines et mesures", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Dienststelle für Straf-und Massnahmenvollzug", + "lang" : "de-CH" + }, + { + "text" : "Service de l'application des peines et mesures", + "lang" : "fr-CH" + }, + { + "text" : "Service de l'application des peines et mesures", + "lang" : "it-CH" + }, + { + "text" : "Service de l'application des peines et mesures", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vs.ch/web/addict", + "email" : "SAPEM-DIRECTION@admin.vs.ch", + "phone" : "0041276065166", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8258206, 47.4636871 ], + [ 7.8263047, 47.4637619 ], + [ 7.8268091, 47.4638844 ], + [ 7.8268093, 47.4638955 ], + [ 7.8268103, 47.4640517 ], + [ 7.8271424, 47.4640529 ], + [ 7.8273437999999995, 47.4640547 ], + [ 7.8274149, 47.4640671 ], + [ 7.8274853, 47.4640733 ], + [ 7.8275508, 47.4640739 ], + [ 7.8276128, 47.4640672 ], + [ 7.8276416, 47.4640574 ], + [ 7.8278168, 47.464059 ], + [ 7.8282468, 47.4640619 ], + [ 7.8287289, 47.4640645 ], + [ 7.8287616, 47.4640646 ], + [ 7.8286895, 47.4637726 ], + [ 7.8286711, 47.4636988 ], + [ 7.8286876, 47.4636968 ], + [ 7.8286833, 47.4636831 ], + [ 7.828666, 47.4636288 ], + [ 7.8286416, 47.4635537 ], + [ 7.8285176, 47.4635988 ], + [ 7.8284359, 47.4636204 ], + [ 7.8283887, 47.4636365 ], + [ 7.8280806, 47.463695799999996 ], + [ 7.8280718, 47.4637018 ], + [ 7.8278589, 47.4637278 ], + [ 7.8277828, 47.4637359 ], + [ 7.8275566, 47.4637454 ], + [ 7.8273378000000005, 47.4637449 ], + [ 7.8270339, 47.4637376 ], + [ 7.8268071, 47.4637121 ], + [ 7.8267252, 47.4637029 ], + [ 7.826615, 47.4637065 ], + [ 7.8263400999999995, 47.4636763 ], + [ 7.8260857, 47.4636407 ], + [ 7.8258301, 47.4636042 ], + [ 7.8258222, 47.463674 ], + [ 7.8258206, 47.4636871 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns041", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Wolfsloch", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Wolfsloch", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Wolfsloch", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Wolfsloch", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8283685, 47.43937 ], + [ 7.8287674, 47.4394907 ], + [ 7.8290782, 47.4398112 ], + [ 7.8292488, 47.4399289 ], + [ 7.82985, 47.4399104 ], + [ 7.8300952, 47.4396787 ], + [ 7.8303265, 47.4394602 ], + [ 7.8304586, 47.4393354 ], + [ 7.8305118, 47.4392593 ], + [ 7.8305447, 47.4391538 ], + [ 7.8305429, 47.4390438 ], + [ 7.8305102, 47.4389364 ], + [ 7.830446, 47.4388374 ], + [ 7.8303457, 47.4387526 ], + [ 7.8302602, 47.4387028 ], + [ 7.8301622, 47.4386762 ], + [ 7.8297889, 47.4386155 ], + [ 7.8298506, 47.4385252 ], + [ 7.8298567, 47.4385061 ], + [ 7.829878, 47.4384388 ], + [ 7.8294284, 47.438641 ], + [ 7.8288662, 47.4388979 ], + [ 7.8286025, 47.4390624 ], + [ 7.8284017, 47.4393184 ], + [ 7.8283685, 47.43937 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr137", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Holden", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Holden", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Holden", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Holden", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8315386, 47.4468279 ], + [ 7.8315738, 47.4463169 ], + [ 7.8315779, 47.4462578 ], + [ 7.8315813, 47.446209 ], + [ 7.8315529, 47.4461927 ], + [ 7.8313866, 47.4460973 ], + [ 7.831319, 47.4460585 ], + [ 7.8311087, 47.446089 ], + [ 7.8312595, 47.4464498 ], + [ 7.8312748, 47.4464865 ], + [ 7.8312801, 47.4464933 ], + [ 7.8315386, 47.4468279 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr107", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Dubenrain", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Dubenrain", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Dubenrain", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Dubenrain", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.864423, 47.4294968 ], + [ 7.8642616, 47.4295987 ], + [ 7.8640563, 47.4298653 ], + [ 7.8636087, 47.4299785 ], + [ 7.8631964, 47.4302547 ], + [ 7.8631782, 47.4302643 ], + [ 7.8629063, 47.4304078 ], + [ 7.8624773999999995, 47.4307112 ], + [ 7.8623059, 47.4308313 ], + [ 7.8622630000000004, 47.4308899 ], + [ 7.8621557, 47.4310067 ], + [ 7.8621448, 47.4310107 ], + [ 7.8621381, 47.4310155 ], + [ 7.8621309, 47.4310199 ], + [ 7.8621236, 47.431024 ], + [ 7.8621156, 47.4310277 ], + [ 7.8619593, 47.4311037 ], + [ 7.8619511, 47.4311076 ], + [ 7.8619430999999995, 47.4311117 ], + [ 7.8619353, 47.4311162 ], + [ 7.8619277, 47.4311207 ], + [ 7.8619205, 47.4311254 ], + [ 7.8619162, 47.4311328 ], + [ 7.8619004, 47.4311405 ], + [ 7.861707, 47.4312985 ], + [ 7.8616968, 47.4313036 ], + [ 7.8616863, 47.4313081 ], + [ 7.8616753, 47.4313122 ], + [ 7.8616638, 47.4313158 ], + [ 7.8616516, 47.4313187 ], + [ 7.8616391, 47.4313211 ], + [ 7.8616262, 47.4313228 ], + [ 7.8616133999999995, 47.431324 ], + [ 7.861549, 47.4313746 ], + [ 7.8614557, 47.431448 ], + [ 7.860966, 47.431706 ], + [ 7.8603425, 47.4320791 ], + [ 7.8603071, 47.4321055 ], + [ 7.8603266, 47.432096 ], + [ 7.8606427, 47.4319578 ], + [ 7.8613297, 47.4316966 ], + [ 7.861674, 47.4315647 ], + [ 7.861947, 47.4314602 ], + [ 7.8623281, 47.4312758 ], + [ 7.8627932, 47.4309952 ], + [ 7.8634494, 47.4306098 ], + [ 7.8636326, 47.4305214 ], + [ 7.8639971, 47.4304587 ], + [ 7.8641584, 47.4303855 ], + [ 7.8644531, 47.4301684 ], + [ 7.8648613, 47.4298776 ], + [ 7.8649407, 47.429821 ], + [ 7.8649371, 47.4298188 ], + [ 7.8650228, 47.4297523 ], + [ 7.8655116, 47.4293576 ], + [ 7.8658266, 47.4291305 ], + [ 7.8661639, 47.4289236 ], + [ 7.8664667999999995, 47.4287763 ], + [ 7.8668539, 47.4286044 ], + [ 7.8672517, 47.4284818 ], + [ 7.8675916, 47.4284024 ], + [ 7.868001, 47.4283456 ], + [ 7.8684716, 47.4283159 ], + [ 7.8689195, 47.4283246 ], + [ 7.8692988, 47.428386 ], + [ 7.8694386, 47.428425 ], + [ 7.869636, 47.4279883 ], + [ 7.8701047, 47.4280915 ], + [ 7.8702659, 47.428127 ], + [ 7.8704865, 47.4281686 ], + [ 7.8705744, 47.4281852 ], + [ 7.870567, 47.4282618 ], + [ 7.8705265, 47.4286789 ], + [ 7.870874, 47.4287265 ], + [ 7.8712728, 47.4287993 ], + [ 7.8714637, 47.4288455 ], + [ 7.8716232999999995, 47.4288934 ], + [ 7.8716246, 47.4288834 ], + [ 7.8718131, 47.4285475 ], + [ 7.8718197, 47.4284271 ], + [ 7.8721456, 47.4287361 ], + [ 7.8720588, 47.4289733 ], + [ 7.8721146, 47.4289865 ], + [ 7.8722439, 47.4291297 ], + [ 7.8727253, 47.4293052 ], + [ 7.8728663999999995, 47.4293666 ], + [ 7.8729948, 47.4294408 ], + [ 7.8731144, 47.4295242 ], + [ 7.8732122, 47.4296186 ], + [ 7.8735862999999995, 47.4300202 ], + [ 7.8739976, 47.430445399999996 ], + [ 7.8742061, 47.4304862 ], + [ 7.8744364000000004, 47.430665 ], + [ 7.8746547, 47.4304069 ], + [ 7.8748491, 47.4300427 ], + [ 7.8748657, 47.4300115 ], + [ 7.8748695, 47.4300045 ], + [ 7.8749632, 47.4296521 ], + [ 7.8748034, 47.4295721 ], + [ 7.8745651, 47.4290293 ], + [ 7.8743889, 47.4286786 ], + [ 7.8743309, 47.4284243 ], + [ 7.8743349, 47.4281766 ], + [ 7.8744734, 47.4282143 ], + [ 7.8746755, 47.4282145 ], + [ 7.8748818, 47.428643 ], + [ 7.8752892, 47.4285308 ], + [ 7.8756103, 47.4284425 ], + [ 7.8757301, 47.4283851 ], + [ 7.8758256, 47.4283938 ], + [ 7.8760387, 47.4282933 ], + [ 7.8761836, 47.4281745 ], + [ 7.8762012, 47.4281524 ], + [ 7.8768229, 47.4281213 ], + [ 7.8768433, 47.4280495 ], + [ 7.8768716, 47.427924 ], + [ 7.8769464, 47.4278394 ], + [ 7.8771169, 47.4277974 ], + [ 7.8772704000000004, 47.4278012 ], + [ 7.877446, 47.4277234 ], + [ 7.8777664, 47.4275635 ], + [ 7.8779395, 47.4273165 ], + [ 7.8781536, 47.4272696 ], + [ 7.8785368, 47.427288 ], + [ 7.8787607, 47.4273537 ], + [ 7.8788009, 47.4273474 ], + [ 7.8788084, 47.4273561 ], + [ 7.8788154, 47.4273651 ], + [ 7.8788217, 47.4273743 ], + [ 7.8788273, 47.4273836 ], + [ 7.8788323, 47.4273932 ], + [ 7.8788366, 47.4274029 ], + [ 7.8788403, 47.4274127 ], + [ 7.8788433, 47.4274226 ], + [ 7.8788456, 47.4274326 ], + [ 7.8788579, 47.4274936 ], + [ 7.8788713, 47.4275545 ], + [ 7.8788854, 47.4276152 ], + [ 7.8789006, 47.427676 ], + [ 7.879141, 47.4279729 ], + [ 7.8792463999999995, 47.4280598 ], + [ 7.8792674, 47.4280731 ], + [ 7.8792909, 47.4280512 ], + [ 7.8794799, 47.4281548 ], + [ 7.8796166, 47.4279482 ], + [ 7.8796429, 47.4279085 ], + [ 7.8795715, 47.4278635 ], + [ 7.879536, 47.4277616 ], + [ 7.8794830000000005, 47.4276892 ], + [ 7.8794442, 47.4275744 ], + [ 7.8794476, 47.42754 ], + [ 7.879847, 47.4272125 ], + [ 7.88007, 47.4273506 ], + [ 7.8801842, 47.427459 ], + [ 7.8803084, 47.4275657 ], + [ 7.8807532, 47.4275669 ], + [ 7.8812553, 47.4275675 ], + [ 7.8812441, 47.4276233 ], + [ 7.8812736, 47.4276136 ], + [ 7.8812838, 47.4276096 ], + [ 7.8812935, 47.4276051 ], + [ 7.8813024, 47.4276 ], + [ 7.8813109, 47.4275944 ], + [ 7.8813186, 47.4275884 ], + [ 7.8813256, 47.427582 ], + [ 7.8813318, 47.4275751 ], + [ 7.8813372, 47.4275681 ], + [ 7.8813416, 47.4275607 ], + [ 7.8813451, 47.4275531 ], + [ 7.8813478, 47.4275454 ], + [ 7.8813495, 47.4275375 ], + [ 7.8813504, 47.4275296 ], + [ 7.8813502, 47.4275216 ], + [ 7.881349, 47.4275136 ], + [ 7.881347, 47.4275058 ], + [ 7.881344, 47.4274981 ], + [ 7.88134, 47.4274906 ], + [ 7.8813354, 47.4274837 ], + [ 7.88133, 47.427477 ], + [ 7.881324, 47.4274707 ], + [ 7.8813173, 47.4274647 ], + [ 7.88131, 47.4274589 ], + [ 7.881302, 47.4274537 ], + [ 7.8812936, 47.4274487 ], + [ 7.8812847, 47.4274442 ], + [ 7.8812753, 47.4274402 ], + [ 7.8812654, 47.4274365 ], + [ 7.8812552, 47.4274334 ], + [ 7.8812447, 47.4274308 ], + [ 7.8812339, 47.4274288 ], + [ 7.8812231, 47.4274272 ], + [ 7.8812119, 47.4274262 ], + [ 7.8812008, 47.4274258 ], + [ 7.8811853, 47.4274252 ], + [ 7.8811698, 47.427424 ], + [ 7.8811544, 47.4274223 ], + [ 7.8811392, 47.4274199 ], + [ 7.8811242, 47.4274169 ], + [ 7.8811096, 47.4274134 ], + [ 7.8810953, 47.4274092 ], + [ 7.8810813, 47.4274045 ], + [ 7.8810677, 47.427399199999996 ], + [ 7.8810547, 47.4273935 ], + [ 7.8810421, 47.4273872 ], + [ 7.8810301, 47.4273805 ], + [ 7.8810188, 47.4273732 ], + [ 7.881008, 47.4273656 ], + [ 7.8809978, 47.4273576 ], + [ 7.8809885, 47.4273491 ], + [ 7.8809799, 47.4273403 ], + [ 7.880972, 47.4273312 ], + [ 7.8809649, 47.4273217 ], + [ 7.8809586, 47.427312 ], + [ 7.8808274, 47.4270918 ], + [ 7.8808184, 47.4270777 ], + [ 7.8808086, 47.4270638 ], + [ 7.8807979, 47.4270502 ], + [ 7.8807863, 47.4270369 ], + [ 7.8807738, 47.427024 ], + [ 7.8807606, 47.4270115 ], + [ 7.8807466999999995, 47.4269993 ], + [ 7.8807319, 47.4269876 ], + [ 7.8807164, 47.4269762 ], + [ 7.8807003, 47.4269654 ], + [ 7.8806834, 47.426955 ], + [ 7.8806659, 47.4269452 ], + [ 7.8806478, 47.4269358 ], + [ 7.8806292, 47.4269271 ], + [ 7.8806101, 47.4269188 ], + [ 7.8805903, 47.4269111 ], + [ 7.8805702, 47.426904 ], + [ 7.8805496, 47.4268975 ], + [ 7.8802207, 47.4267993 ], + [ 7.8801806, 47.426787 ], + [ 7.880141, 47.4267739 ], + [ 7.8801018, 47.4267603 ], + [ 7.880063, 47.426746 ], + [ 7.8800248, 47.4267312 ], + [ 7.879987, 47.4267157 ], + [ 7.8799499, 47.4266997 ], + [ 7.8799133, 47.4266831 ], + [ 7.8798773, 47.4266659 ], + [ 7.8798419, 47.4266481 ], + [ 7.879807, 47.4266297 ], + [ 7.8797729, 47.4266109 ], + [ 7.8797394, 47.4265915 ], + [ 7.8797066000000004, 47.4265716 ], + [ 7.8796745, 47.4265511 ], + [ 7.879643, 47.4265302 ], + [ 7.8796124, 47.4265087 ], + [ 7.8795824, 47.4264868 ], + [ 7.8795532999999995, 47.4264644 ], + [ 7.8795249, 47.4264415 ], + [ 7.8794972, 47.4264182 ], + [ 7.8794704, 47.4263945 ], + [ 7.8794445, 47.4263703 ], + [ 7.8794194, 47.4263457 ], + [ 7.879395, 47.4263208 ], + [ 7.8793716, 47.4262955 ], + [ 7.8793565999999995, 47.4262781 ], + [ 7.8793424, 47.4262604 ], + [ 7.8793292, 47.4262423 ], + [ 7.879317, 47.4262239 ], + [ 7.8793058, 47.4262052 ], + [ 7.8792953, 47.4261863 ], + [ 7.8792860000000005, 47.4261672 ], + [ 7.8792776, 47.4261478 ], + [ 7.8792703, 47.4261283 ], + [ 7.8792639, 47.4261085 ], + [ 7.8792587, 47.4260887 ], + [ 7.8792544, 47.4260687 ], + [ 7.8792512, 47.4260487 ], + [ 7.8792491, 47.4260285 ], + [ 7.8792478, 47.4260084 ], + [ 7.8792478, 47.4259882 ], + [ 7.8792488, 47.425968 ], + [ 7.8792508, 47.4259479 ], + [ 7.8792538, 47.4259279 ], + [ 7.8792579, 47.4259079 ], + [ 7.879263, 47.425888 ], + [ 7.8792691999999995, 47.4258682 ], + [ 7.8792763, 47.4258486 ], + [ 7.8792845, 47.4258292 ], + [ 7.8792938, 47.4258101 ], + [ 7.879304, 47.4257911 ], + [ 7.8793150999999995, 47.4257724 ], + [ 7.8793271, 47.425754 ], + [ 7.8793402, 47.4257359 ], + [ 7.8793542, 47.425718 ], + [ 7.8793691, 47.4257006 ], + [ 7.879385, 47.4256835 ], + [ 7.8797133, 47.4253419 ], + [ 7.8797308, 47.4253231 ], + [ 7.8797473, 47.4253041 ], + [ 7.8797629, 47.4252847 ], + [ 7.8797778, 47.425265 ], + [ 7.8797916, 47.4252449 ], + [ 7.8798046, 47.4252246 ], + [ 7.8799738, 47.4249481 ], + [ 7.879987, 47.4249273 ], + [ 7.8800012, 47.4249068 ], + [ 7.8800162, 47.4248866 ], + [ 7.8800321, 47.4248668 ], + [ 7.8800489, 47.4248473 ], + [ 7.8800666, 47.4248282 ], + [ 7.8800852, 47.4248094 ], + [ 7.8801045, 47.424791 ], + [ 7.8801246, 47.424773 ], + [ 7.8801456, 47.4247554 ], + [ 7.8801673, 47.4247382 ], + [ 7.8801897, 47.4247216 ], + [ 7.8805111, 47.4244895 ], + [ 7.8809054, 47.4241856 ], + [ 7.8809182, 47.4241761 ], + [ 7.8809319, 47.4241672 ], + [ 7.8809461, 47.4241586 ], + [ 7.880961, 47.4241505 ], + [ 7.8809765, 47.424143 ], + [ 7.8809926, 47.424136 ], + [ 7.8810091, 47.4241297 ], + [ 7.881026, 47.4241237 ], + [ 7.8810434, 47.4241185 ], + [ 7.8810611999999995, 47.4241138 ], + [ 7.8810792, 47.4241098 ], + [ 7.8810976, 47.4241063 ], + [ 7.8811161, 47.4241035 ], + [ 7.8811349, 47.4241014 ], + [ 7.8811538, 47.4240999 ], + [ 7.8811728, 47.424099 ], + [ 7.8811919, 47.4240987 ], + [ 7.8812108, 47.4240992 ], + [ 7.8812298, 47.4241002 ], + [ 7.8812487, 47.424102 ], + [ 7.8812674, 47.4241044 ], + [ 7.8812859, 47.4241074 ], + [ 7.8813042, 47.424111 ], + [ 7.8813221, 47.4241152 ], + [ 7.8813398, 47.4241201 ], + [ 7.8813571, 47.4241255 ], + [ 7.8813738, 47.4241316 ], + [ 7.8813902, 47.4241382 ], + [ 7.881406, 47.4241454 ], + [ 7.8814212999999995, 47.4241531 ], + [ 7.8814361, 47.4241613 ], + [ 7.8814501, 47.42417 ], + [ 7.8814635, 47.4241792 ], + [ 7.8814762, 47.4241888 ], + [ 7.8814882, 47.4241988 ], + [ 7.8814994, 47.4242093 ], + [ 7.8815099, 47.42422 ], + [ 7.8815195, 47.4242312 ], + [ 7.8816359, 47.4243742 ], + [ 7.881696, 47.4244026 ], + [ 7.8818190999999995, 47.4244471 ], + [ 7.8818246, 47.4244537 ], + [ 7.8818296, 47.4244605 ], + [ 7.881834, 47.4244674 ], + [ 7.8818379, 47.4244745 ], + [ 7.8818411, 47.4244818 ], + [ 7.8818438, 47.424489 ], + [ 7.8818459999999995, 47.4244965 ], + [ 7.8818476, 47.4245039 ], + [ 7.8818489, 47.4245113 ], + [ 7.8818497999999995, 47.4245187 ], + [ 7.8818499, 47.4245261 ], + [ 7.8818493, 47.4245335 ], + [ 7.8818481, 47.4245409 ], + [ 7.8818462, 47.4245482 ], + [ 7.8818436, 47.4245554 ], + [ 7.8818404, 47.4245625 ], + [ 7.8818921, 47.4245353 ], + [ 7.881897, 47.4243244 ], + [ 7.8819125, 47.4243174 ], + [ 7.8816457, 47.4243055 ], + [ 7.8814677, 47.4240683 ], + [ 7.8814344, 47.4238222 ], + [ 7.8813666, 47.4234154 ], + [ 7.8813612, 47.4233833 ], + [ 7.881107, 47.4233946 ], + [ 7.8808371, 47.4233933 ], + [ 7.880672, 47.4234434 ], + [ 7.8803905, 47.423584 ], + [ 7.8802239, 47.4236786 ], + [ 7.8798851, 47.423746 ], + [ 7.8798922000000005, 47.423794 ], + [ 7.879808, 47.4237801 ], + [ 7.8797422, 47.423772 ], + [ 7.879626, 47.4237929 ], + [ 7.8795643, 47.4238294 ], + [ 7.8794383, 47.4239224 ], + [ 7.8793628, 47.423931 ], + [ 7.8792928, 47.4239081 ], + [ 7.8792409, 47.4238775 ], + [ 7.8790949999999995, 47.4239185 ], + [ 7.8790319, 47.4238639 ], + [ 7.8787728999999995, 47.4236399 ], + [ 7.8788784, 47.4235493 ], + [ 7.8787774, 47.4235022 ], + [ 7.8786197, 47.4234272 ], + [ 7.8786013, 47.4234482 ], + [ 7.8785833, 47.4234695 ], + [ 7.878566, 47.4234908 ], + [ 7.8785494, 47.4235125 ], + [ 7.8785331, 47.4235344 ], + [ 7.8785175, 47.4235564 ], + [ 7.8785026, 47.4235787 ], + [ 7.8784882, 47.423601 ], + [ 7.8784813, 47.4236129 ], + [ 7.8784751, 47.423625 ], + [ 7.87847, 47.4236373 ], + [ 7.8784656, 47.4236497 ], + [ 7.8784619, 47.4236622 ], + [ 7.8784594, 47.4236748 ], + [ 7.8784575, 47.4236876 ], + [ 7.8784567, 47.4237003 ], + [ 7.8784501, 47.4238949 ], + [ 7.8784492, 47.4239059 ], + [ 7.8784475, 47.4239169 ], + [ 7.8784451, 47.4239279 ], + [ 7.8784416, 47.4239387 ], + [ 7.8784373, 47.4239493 ], + [ 7.8784322, 47.4239599 ], + [ 7.8784263, 47.4239701 ], + [ 7.8784197, 47.4239802 ], + [ 7.8784122, 47.4239901 ], + [ 7.8784039, 47.4239996 ], + [ 7.8783948, 47.4240089 ], + [ 7.8783851, 47.4240177 ], + [ 7.8783747, 47.4240263 ], + [ 7.8783636, 47.4240344 ], + [ 7.8781993, 47.424149 ], + [ 7.8781789, 47.4241637 ], + [ 7.878159, 47.4241787 ], + [ 7.8781399, 47.424194 ], + [ 7.8781213999999995, 47.4242097 ], + [ 7.8781035, 47.4242258 ], + [ 7.8780862, 47.4242423 ], + [ 7.8780698000000005, 47.424259 ], + [ 7.8780539, 47.424276 ], + [ 7.8780388, 47.4242934 ], + [ 7.8780244, 47.424311 ], + [ 7.878003, 47.4243388 ], + [ 7.8779823, 47.4243669 ], + [ 7.8779625, 47.4243952 ], + [ 7.8779433999999995, 47.4244238 ], + [ 7.8779252, 47.4244525 ], + [ 7.8779077, 47.4244816 ], + [ 7.8778984, 47.4244968 ], + [ 7.8778884, 47.4245118 ], + [ 7.8778775, 47.4245265 ], + [ 7.8778659, 47.4245409 ], + [ 7.8778536, 47.4245552 ], + [ 7.8778406, 47.424569 ], + [ 7.8778268, 47.4245826 ], + [ 7.8778124, 47.4245958 ], + [ 7.8777973, 47.4246087 ], + [ 7.8777816, 47.4246212 ], + [ 7.8777653, 47.4246334 ], + [ 7.8777483, 47.4246451 ], + [ 7.8777308, 47.4246565 ], + [ 7.8777127, 47.4246674 ], + [ 7.877694, 47.424678 ], + [ 7.8776749, 47.4246881 ], + [ 7.8776351, 47.4247076 ], + [ 7.877595, 47.4247268 ], + [ 7.8775541, 47.4247452 ], + [ 7.8775127, 47.424763 ], + [ 7.8774707, 47.4247804 ], + [ 7.8774283, 47.424797 ], + [ 7.8773852, 47.4248131 ], + [ 7.8773418, 47.4248285 ], + [ 7.8772979, 47.4248434 ], + [ 7.8772535, 47.4248575 ], + [ 7.8772085, 47.4248711 ], + [ 7.8771633, 47.4248839 ], + [ 7.8771177, 47.4248961 ], + [ 7.8770716, 47.4249077 ], + [ 7.8770252, 47.4249186 ], + [ 7.8769785, 47.4249289 ], + [ 7.8769314999999995, 47.4249384 ], + [ 7.8768843, 47.4249473 ], + [ 7.8768650000000004, 47.4249504 ], + [ 7.8768454, 47.424953 ], + [ 7.8768258, 47.4249548 ], + [ 7.8768059, 47.4249563 ], + [ 7.8767862, 47.424957 ], + [ 7.8767663, 47.4249572 ], + [ 7.8764536, 47.4249542 ], + [ 7.8764351, 47.4249544 ], + [ 7.8764164999999995, 47.4249551 ], + [ 7.876398, 47.4249564 ], + [ 7.8763797, 47.4249583 ], + [ 7.8763614, 47.4249608 ], + [ 7.8763434, 47.4249638 ], + [ 7.8763255999999995, 47.4249674 ], + [ 7.876308, 47.4249716 ], + [ 7.8762908, 47.4249764 ], + [ 7.8762739, 47.4249815 ], + [ 7.8762574, 47.4249874 ], + [ 7.8762414, 47.4249937 ], + [ 7.8762257, 47.4250005 ], + [ 7.8762106, 47.4250078 ], + [ 7.8761558, 47.4250359 ], + [ 7.8761016999999995, 47.4250644 ], + [ 7.8760483, 47.4250935 ], + [ 7.8759954, 47.4251231 ], + [ 7.8759429999999995, 47.4251531 ], + [ 7.8758913, 47.4251836 ], + [ 7.8758696, 47.425197 ], + [ 7.8758482, 47.4252109 ], + [ 7.8758275, 47.4252251 ], + [ 7.8758075, 47.4252397 ], + [ 7.875788, 47.425254699999996 ], + [ 7.875769, 47.4252701 ], + [ 7.8757509, 47.4252857 ], + [ 7.8757333, 47.4253018 ], + [ 7.8755053, 47.4255157 ], + [ 7.8754783, 47.4255417 ], + [ 7.8754518000000004, 47.4255681 ], + [ 7.8754261, 47.4255947 ], + [ 7.8754010999999995, 47.4256216 ], + [ 7.875377, 47.425649 ], + [ 7.8753535, 47.4256765 ], + [ 7.8752154999999995, 47.4258424 ], + [ 7.8751996, 47.4258609 ], + [ 7.8751831, 47.4258792 ], + [ 7.8751659, 47.425897 ], + [ 7.8751479, 47.4259146 ], + [ 7.8751293, 47.425932 ], + [ 7.8751101, 47.425949 ], + [ 7.8750902, 47.4259656 ], + [ 7.8750698, 47.4259819 ], + [ 7.8750487, 47.4259978 ], + [ 7.8750271, 47.4260133 ], + [ 7.8750049, 47.4260285 ], + [ 7.8749821, 47.4260433 ], + [ 7.8749587, 47.4260577 ], + [ 7.8749347, 47.4260717 ], + [ 7.874514, 47.4263114 ], + [ 7.8744896, 47.4263249 ], + [ 7.8744648, 47.426338 ], + [ 7.8744395, 47.4263507 ], + [ 7.8744136000000005, 47.4263629 ], + [ 7.8743873, 47.4263747 ], + [ 7.8743606, 47.4263859 ], + [ 7.8743335, 47.4263968 ], + [ 7.8743061, 47.4264072 ], + [ 7.8742782, 47.4264171 ], + [ 7.8742499, 47.4264265 ], + [ 7.8742213, 47.4264354 ], + [ 7.8741924, 47.4264438 ], + [ 7.8741632, 47.4264517 ], + [ 7.8741335, 47.4264591 ], + [ 7.8740977999999995, 47.4264673 ], + [ 7.8740618, 47.4264749 ], + [ 7.8740255999999995, 47.426482 ], + [ 7.873989, 47.4264884 ], + [ 7.8739522, 47.4264941 ], + [ 7.8739152, 47.4264992 ], + [ 7.8738825, 47.4265031 ], + [ 7.8738498, 47.4265066 ], + [ 7.8738168, 47.4265096 ], + [ 7.8737838, 47.4265121 ], + [ 7.8737508, 47.426514 ], + [ 7.8737177, 47.4265155 ], + [ 7.8736852, 47.4265163 ], + [ 7.8736529, 47.4265168 ], + [ 7.8736204, 47.4265167 ], + [ 7.8735881, 47.4265162 ], + [ 7.8735557, 47.4265153 ], + [ 7.8735234, 47.4265138 ], + [ 7.8734912, 47.4265118 ], + [ 7.8734589, 47.4265093 ], + [ 7.8734357, 47.4265071 ], + [ 7.8734126, 47.4265042 ], + [ 7.8733898, 47.4265006 ], + [ 7.8733672, 47.4264964 ], + [ 7.8733449, 47.4264916 ], + [ 7.8733228, 47.4264862 ], + [ 7.8733012, 47.4264801 ], + [ 7.87328, 47.4264736 ], + [ 7.8730507, 47.4263982 ], + [ 7.8730355, 47.4263935 ], + [ 7.8730198, 47.4263895 ], + [ 7.8730038, 47.4263861 ], + [ 7.8729876999999995, 47.4263834 ], + [ 7.8729712, 47.4263813 ], + [ 7.8729546, 47.4263799 ], + [ 7.8729379, 47.4263792 ], + [ 7.8729212, 47.4263791 ], + [ 7.8729045, 47.4263797 ], + [ 7.8728878, 47.4263811 ], + [ 7.8728714, 47.4263831 ], + [ 7.8728551, 47.4263856 ], + [ 7.8728391, 47.4263889 ], + [ 7.8728234, 47.4263927 ], + [ 7.8728082, 47.4263973 ], + [ 7.8727932, 47.4264025 ], + [ 7.8727788, 47.4264082 ], + [ 7.8727649, 47.4264144 ], + [ 7.8727515, 47.4264213 ], + [ 7.8727389, 47.4264287 ], + [ 7.8727269, 47.4264365 ], + [ 7.8727155, 47.4264449 ], + [ 7.872705, 47.4264537 ], + [ 7.8726951, 47.4264629 ], + [ 7.8726862, 47.4264725 ], + [ 7.8726781, 47.4264824 ], + [ 7.8726709, 47.4264926 ], + [ 7.8726646, 47.4265031 ], + [ 7.8726592, 47.4265139 ], + [ 7.8726547, 47.4265249 ], + [ 7.8726474, 47.4265463 ], + [ 7.872641, 47.4265679 ], + [ 7.8726353, 47.4265897 ], + [ 7.8726306, 47.4266115 ], + [ 7.8726266, 47.4266333 ], + [ 7.8726234, 47.4266553 ], + [ 7.8726216, 47.4266656 ], + [ 7.8726189, 47.4266758 ], + [ 7.8726152, 47.4266859 ], + [ 7.8726105, 47.4266958 ], + [ 7.872605, 47.4267056 ], + [ 7.8725985, 47.4267149 ], + [ 7.8725911, 47.426724 ], + [ 7.8725828, 47.4267328 ], + [ 7.8725739, 47.4267412 ], + [ 7.872564, 47.4267492 ], + [ 7.8725535, 47.4267567 ], + [ 7.8725423, 47.4267638 ], + [ 7.8725304, 47.4267704 ], + [ 7.872518, 47.4267765 ], + [ 7.8725049, 47.4267819 ], + [ 7.8724913999999995, 47.4267868 ], + [ 7.8724774, 47.4267911 ], + [ 7.8724631, 47.4267949 ], + [ 7.8724484, 47.4267979 ], + [ 7.8724336, 47.4268003 ], + [ 7.8724185, 47.426802 ], + [ 7.8724033, 47.4268032 ], + [ 7.8723879, 47.4268036 ], + [ 7.8723725, 47.4268033 ], + [ 7.8723367, 47.4268017 ], + [ 7.8723009, 47.4267995 ], + [ 7.8722653, 47.4267967 ], + [ 7.8722297, 47.4267933 ], + [ 7.8721942, 47.4267893 ], + [ 7.8721589, 47.4267848 ], + [ 7.8721236999999995, 47.4267797 ], + [ 7.8720888, 47.426774 ], + [ 7.872054, 47.4267677 ], + [ 7.8720195, 47.4267609 ], + [ 7.8719853, 47.4267536 ], + [ 7.8719513, 47.4267456 ], + [ 7.8719288, 47.4267398 ], + [ 7.8719065, 47.4267335 ], + [ 7.8718846, 47.4267267 ], + [ 7.871863, 47.4267194 ], + [ 7.8718418, 47.4267116 ], + [ 7.871821, 47.4267033 ], + [ 7.8718007, 47.4266944 ], + [ 7.8717809, 47.4266853 ], + [ 7.8717428, 47.4266665 ], + [ 7.8717054, 47.4266473 ], + [ 7.8716685, 47.4266277 ], + [ 7.8716321, 47.4266076 ], + [ 7.8715964, 47.4265869 ], + [ 7.8715611, 47.4265659 ], + [ 7.8715264, 47.4265444 ], + [ 7.8714925000000004, 47.4265225 ], + [ 7.871459, 47.4265 ], + [ 7.8714262999999995, 47.4264772 ], + [ 7.8713942, 47.426454 ], + [ 7.8713627, 47.4264304 ], + [ 7.8713542, 47.4264238 ], + [ 7.8713459, 47.426417 ], + [ 7.8713379, 47.4264101 ], + [ 7.8713302, 47.4264031 ], + [ 7.8713206, 47.4263948 ], + [ 7.8713104, 47.4263871 ], + [ 7.8712995, 47.4263798 ], + [ 7.8712879000000004, 47.4263729 ], + [ 7.8712757, 47.4263667 ], + [ 7.8712629, 47.4263609 ], + [ 7.8712496, 47.4263556 ], + [ 7.8712358, 47.426351 ], + [ 7.8712216999999995, 47.426347 ], + [ 7.8712071, 47.4263436 ], + [ 7.8711924, 47.4263407 ], + [ 7.8711774, 47.4263387 ], + [ 7.8711621, 47.4263372 ], + [ 7.8711469, 47.4263364 ], + [ 7.8711315, 47.4263363 ], + [ 7.8711161, 47.4263368 ], + [ 7.8711009, 47.4263379 ], + [ 7.8710857999999995, 47.4263398 ], + [ 7.8710708, 47.4263423 ], + [ 7.8710562, 47.4263454 ], + [ 7.8704524, 47.4264879 ], + [ 7.8704408, 47.4264902 ], + [ 7.8704289, 47.426492 ], + [ 7.8704168, 47.4264932 ], + [ 7.8704046, 47.4264937 ], + [ 7.8703924, 47.4264935 ], + [ 7.8703804, 47.4264927 ], + [ 7.8703683, 47.4264912 ], + [ 7.8703565, 47.4264891 ], + [ 7.870345, 47.4264865 ], + [ 7.8703339, 47.4264831 ], + [ 7.8703231, 47.4264792 ], + [ 7.8703129, 47.4264747 ], + [ 7.8703032, 47.4264697 ], + [ 7.8702941, 47.4264643 ], + [ 7.8702857, 47.4264583 ], + [ 7.870278, 47.4264519 ], + [ 7.870271, 47.4264451 ], + [ 7.8702649000000005, 47.4264379 ], + [ 7.8702596, 47.4264305 ], + [ 7.8702552, 47.4264228 ], + [ 7.8702517, 47.4264149 ], + [ 7.8702491, 47.4264068 ], + [ 7.8702475, 47.4263986 ], + [ 7.8702469, 47.4263903 ], + [ 7.8702471, 47.426382 ], + [ 7.8702475, 47.4263733 ], + [ 7.8706676, 47.4260761 ], + [ 7.871221, 47.4256792 ], + [ 7.8717898, 47.4252811 ], + [ 7.8723126, 47.4249815 ], + [ 7.8727599, 47.4247235 ], + [ 7.8732099, 47.4244677 ], + [ 7.8737437, 47.4241088 ], + [ 7.8745113, 47.4235724 ], + [ 7.8751767, 47.4231183 ], + [ 7.873952, 47.4229366 ], + [ 7.8734773, 47.4230875 ], + [ 7.872968, 47.4231914 ], + [ 7.8721007, 47.4234511 ], + [ 7.8716333, 47.4236425 ], + [ 7.8710111, 47.4239189 ], + [ 7.8709627, 47.4239405 ], + [ 7.8709543, 47.423943 ], + [ 7.8709686, 47.4239722 ], + [ 7.870951, 47.4240182 ], + [ 7.8709223999999995, 47.4240263 ], + [ 7.8708851, 47.4240363 ], + [ 7.8708746, 47.4240869 ], + [ 7.8708827, 47.4241685 ], + [ 7.8708966, 47.4242299 ], + [ 7.8709289, 47.4243294 ], + [ 7.8709264999999995, 47.4243339 ], + [ 7.8709235, 47.4243382 ], + [ 7.8709286, 47.4243495 ], + [ 7.8709019, 47.4243671 ], + [ 7.870832, 47.4243736 ], + [ 7.8707812, 47.4243961 ], + [ 7.870742, 47.4244243 ], + [ 7.8707065, 47.4244603 ], + [ 7.8705454, 47.4245403 ], + [ 7.8705063, 47.4245777 ], + [ 7.8704709, 47.4246243 ], + [ 7.8704052, 47.4247029 ], + [ 7.8703414, 47.4247949 ], + [ 7.8702949, 47.4248502 ], + [ 7.87029, 47.4248681 ], + [ 7.8702692, 47.4249509 ], + [ 7.870263, 47.4249486 ], + [ 7.8702508, 47.4249492 ], + [ 7.8701901, 47.4249352 ], + [ 7.8699217, 47.4248713 ], + [ 7.8698092, 47.4250397 ], + [ 7.8696285, 47.425215 ], + [ 7.8694261, 47.4253413 ], + [ 7.8692144, 47.4253968 ], + [ 7.8689488, 47.425449 ], + [ 7.868652, 47.4254747 ], + [ 7.8683667, 47.4254536 ], + [ 7.8679126, 47.4253828 ], + [ 7.8676963, 47.4253175 ], + [ 7.8675944, 47.4254158 ], + [ 7.8676957, 47.4257435 ], + [ 7.8677106, 47.4258876 ], + [ 7.8675576, 47.4259945 ], + [ 7.8673225, 47.4260134 ], + [ 7.8670886, 47.4261933 ], + [ 7.8670024, 47.4263371 ], + [ 7.8669148, 47.4264738 ], + [ 7.8666577, 47.4266157 ], + [ 7.8665009999999995, 47.4268054 ], + [ 7.8661066, 47.4269109 ], + [ 7.8656308, 47.4269018 ], + [ 7.8652795, 47.4270095 ], + [ 7.8658771, 47.4275877 ], + [ 7.8660406, 47.4274654 ], + [ 7.8664048, 47.4273764 ], + [ 7.866415, 47.4273978 ], + [ 7.8664191, 47.4274092 ], + [ 7.866442, 47.427461 ], + [ 7.8664599, 47.4275015 ], + [ 7.8665544, 47.4277138 ], + [ 7.8666488, 47.4279257 ], + [ 7.8663024, 47.4280878 ], + [ 7.865878, 47.428329 ], + [ 7.865572, 47.428532 ], + [ 7.8652267, 47.4288015 ], + [ 7.8649588, 47.4290028 ], + [ 7.8648035, 47.4291725 ], + [ 7.8646817, 47.4293232 ], + [ 7.864423, 47.4294968 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns085", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Chrindel", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Chrindel", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Chrindel", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Chrindel", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.3043425, 46.0355813 ], + [ 7.3043376, 46.03544 ], + [ 7.304322, 46.0352991 ], + [ 7.3042959, 46.035159 ], + [ 7.3042592, 46.0350201 ], + [ 7.3042122, 46.0348826 ], + [ 7.3041549, 46.0347471 ], + [ 7.3040876, 46.0346138 ], + [ 7.3040103, 46.0344832 ], + [ 7.3039232, 46.0343556 ], + [ 7.3038268, 46.0342313 ], + [ 7.3037211, 46.0341107 ], + [ 7.3036065, 46.0339941 ], + [ 7.3034832, 46.0338819 ], + [ 7.3033518, 46.0337743 ], + [ 7.3032124, 46.0336717 ], + [ 7.3030655, 46.0335742 ], + [ 7.3029115000000004, 46.0334823 ], + [ 7.3027508, 46.0333961 ], + [ 7.3025838, 46.0333159 ], + [ 7.302411, 46.0332418 ], + [ 7.3022329, 46.0331742 ], + [ 7.30205, 46.0331131 ], + [ 7.3018627, 46.0330588 ], + [ 7.3016716, 46.0330114 ], + [ 7.3014772, 46.0329711 ], + [ 7.3012801, 46.0329379 ], + [ 7.3010807, 46.0329119 ], + [ 7.3008796, 46.0328932 ], + [ 7.3006774, 46.0328818 ], + [ 7.3004746, 46.0328779 ], + [ 7.3002718, 46.0328813 ], + [ 7.3000696, 46.0328922 ], + [ 7.2998684, 46.0329104 ], + [ 7.2996689, 46.0329359 ], + [ 7.2994716, 46.0329686 ], + [ 7.299277, 46.0330085 ], + [ 7.2990857, 46.0330554 ], + [ 7.2988981, 46.0331092 ], + [ 7.2987149, 46.0331698 ], + [ 7.2985364, 46.033237 ], + [ 7.2983633, 46.0333106 ], + [ 7.2981959, 46.0333905 ], + [ 7.2980347, 46.0334763 ], + [ 7.2978802, 46.0335678 ], + [ 7.2977329, 46.0336649 ], + [ 7.297593, 46.0337672 ], + [ 7.2974609, 46.0338745 ], + [ 7.2973371, 46.0339864 ], + [ 7.2972219, 46.0341027 ], + [ 7.2971156, 46.034223 ], + [ 7.2970185, 46.0343471 ], + [ 7.2969308999999996, 46.0344745 ], + [ 7.2968529, 46.0346049 ], + [ 7.2967848, 46.034738 ], + [ 7.2967269, 46.0348734 ], + [ 7.2966791, 46.0350107 ], + [ 7.2966418, 46.0351496 ], + [ 7.296615, 46.0352896 ], + [ 7.2965987, 46.0354304 ], + [ 7.296593, 46.0355717 ], + [ 7.2965979, 46.0357129 ], + [ 7.2966135, 46.0358538 ], + [ 7.2966396, 46.0359939 ], + [ 7.2966762, 46.0361329 ], + [ 7.2967232, 46.0362703 ], + [ 7.2967805, 46.0364058 ], + [ 7.2968478, 46.0365391 ], + [ 7.2969251, 46.0366697 ], + [ 7.2970121, 46.0367974 ], + [ 7.2971086, 46.0369217 ], + [ 7.2972143, 46.0370423 ], + [ 7.2973289, 46.0371588 ], + [ 7.2974521, 46.0372711 ], + [ 7.2975836, 46.0373787 ], + [ 7.2977229, 46.0374813 ], + [ 7.2978698, 46.0375788 ], + [ 7.2980239000000005, 46.0376707 ], + [ 7.2981846, 46.0377569 ], + [ 7.2983516, 46.0378372 ], + [ 7.2985243, 46.0379112 ], + [ 7.2987025, 46.0379788 ], + [ 7.2988854, 46.0380399 ], + [ 7.2990727, 46.0380942 ], + [ 7.2992638, 46.0381416 ], + [ 7.2994582, 46.038182 ], + [ 7.2996554, 46.0382152 ], + [ 7.2998548, 46.0382412 ], + [ 7.3000559, 46.0382599 ], + [ 7.3002581, 46.0382712 ], + [ 7.3004609, 46.0382752 ], + [ 7.3006637, 46.0382717 ], + [ 7.300866, 46.0382609 ], + [ 7.3010671, 46.0382427 ], + [ 7.3012667, 46.0382172 ], + [ 7.301464, 46.0381845 ], + [ 7.3016586, 46.0381446 ], + [ 7.30185, 46.0380976 ], + [ 7.3020376, 46.0380438 ], + [ 7.3022208, 46.0379832 ], + [ 7.3023993, 46.037916 ], + [ 7.3025724, 46.0378424 ], + [ 7.3027398, 46.0377626 ], + [ 7.302901, 46.0376768 ], + [ 7.3030555, 46.0375852 ], + [ 7.3032029, 46.0374881 ], + [ 7.3033428, 46.0373858 ], + [ 7.3034748, 46.0372785 ], + [ 7.3035986, 46.0371666 ], + [ 7.3037137, 46.0370503 ], + [ 7.30382, 46.0369299 ], + [ 7.3039171, 46.0368059 ], + [ 7.3040047999999995, 46.0366785 ], + [ 7.3040828, 46.036548 ], + [ 7.3041508, 46.036415 ], + [ 7.3042088, 46.0362796 ], + [ 7.3042564, 46.0361422 ], + [ 7.3042938, 46.0360034 ], + [ 7.3043206, 46.0358633 ], + [ 7.3043369, 46.0357225 ], + [ 7.3043425, 46.0355813 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0037", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Fionnay GD", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Fionnay GD", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Fionnay GD", + "lang" : "it-CH" + }, + { + "text" : "Substation Fionnay GD", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5618571, 46.2869143 ], + [ 7.5618514999999995, 46.286773 ], + [ 7.5618352, 46.2866322 ], + [ 7.5618083, 46.2864921 ], + [ 7.5617708, 46.2863533 ], + [ 7.5617229, 46.2862159 ], + [ 7.5616648, 46.2860805 ], + [ 7.5615964, 46.2859474 ], + [ 7.5615182, 46.285817 ], + [ 7.5614301, 46.2856895 ], + [ 7.5613326, 46.2855655 ], + [ 7.5612259, 46.2854451 ], + [ 7.5611102, 46.2853288 ], + [ 7.5609859, 46.2852169 ], + [ 7.5608533, 46.2851096 ], + [ 7.5607128, 46.2850072 ], + [ 7.5605647000000005, 46.2849101 ], + [ 7.5604095000000004, 46.2848185 ], + [ 7.5602477, 46.2847327 ], + [ 7.5600796, 46.2846529 ], + [ 7.5599056000000004, 46.2845792 ], + [ 7.5597264, 46.284512 ], + [ 7.5595423, 46.2844514 ], + [ 7.5593539, 46.2843975 ], + [ 7.5591617, 46.2843505 ], + [ 7.5589662, 46.2843106 ], + [ 7.558768, 46.2842778 ], + [ 7.5585676, 46.2842523 ], + [ 7.5583655, 46.2842341 ], + [ 7.5581623, 46.2842232 ], + [ 7.5579586, 46.2842197 ], + [ 7.5577549, 46.2842236 ], + [ 7.5575517, 46.2842349 ], + [ 7.5573498, 46.2842536 ], + [ 7.5571494, 46.2842795 ], + [ 7.5569513, 46.2843127 ], + [ 7.556756, 46.284353 ], + [ 7.556564, 46.2844004 ], + [ 7.5563759, 46.2844547 ], + [ 7.5561921, 46.2845157 ], + [ 7.5560130999999995, 46.2845833 ], + [ 7.5558395, 46.2846573 ], + [ 7.5556716999999995, 46.2847375 ], + [ 7.5555103, 46.2848237 ], + [ 7.5553555, 46.2849156 ], + [ 7.5552079, 46.285013 ], + [ 7.5550678, 46.2851156 ], + [ 7.5549357, 46.2852232 ], + [ 7.5548119, 46.2853354 ], + [ 7.5546967, 46.285452 ], + [ 7.5545905, 46.2855725 ], + [ 7.5544934999999995, 46.2856968 ], + [ 7.554406, 46.2858244 ], + [ 7.5543283, 46.285955 ], + [ 7.5542606, 46.2860883 ], + [ 7.554203, 46.2862238 ], + [ 7.5541557, 46.2863612 ], + [ 7.5541188, 46.2865002 ], + [ 7.5540925, 46.2866403 ], + [ 7.5540768, 46.2867812 ], + [ 7.5540718, 46.2869224 ], + [ 7.5540774, 46.2870636 ], + [ 7.5540937, 46.2872045 ], + [ 7.5541206, 46.2873445 ], + [ 7.554158, 46.2874834 ], + [ 7.5542059, 46.2876207 ], + [ 7.5542641, 46.2877561 ], + [ 7.5543324, 46.2878893 ], + [ 7.5544107, 46.2880197 ], + [ 7.5544987, 46.2881471 ], + [ 7.5545962, 46.2882712 ], + [ 7.5547029, 46.2883916 ], + [ 7.5548186, 46.2885079 ], + [ 7.5549429, 46.2886199 ], + [ 7.5550755, 46.2887272 ], + [ 7.555216, 46.2888295 ], + [ 7.555364, 46.2889266 ], + [ 7.5555192, 46.2890182 ], + [ 7.5556811, 46.289104 ], + [ 7.5558492, 46.2891839 ], + [ 7.5560231, 46.2892575 ], + [ 7.5562024, 46.2893248 ], + [ 7.5563865, 46.2893854 ], + [ 7.5565749, 46.2894393 ], + [ 7.5567671, 46.2894862 ], + [ 7.5569626, 46.2895262 ], + [ 7.5571608, 46.2895589 ], + [ 7.5573613, 46.2895845 ], + [ 7.5575634, 46.2896027 ], + [ 7.5577666, 46.2896136 ], + [ 7.5579704, 46.2896171 ], + [ 7.5581741000000005, 46.2896132 ], + [ 7.5583772, 46.2896019 ], + [ 7.5585793, 46.2895832 ], + [ 7.5587796, 46.2895573 ], + [ 7.5589777, 46.2895241 ], + [ 7.5591729999999995, 46.2894837 ], + [ 7.559365, 46.2894364 ], + [ 7.5595532, 46.2893821 ], + [ 7.559737, 46.2893211 ], + [ 7.559916, 46.2892535 ], + [ 7.5600895999999995, 46.2891795 ], + [ 7.5602574, 46.2890993 ], + [ 7.5604189, 46.2890131 ], + [ 7.5605736, 46.2889211 ], + [ 7.5607213, 46.2888237 ], + [ 7.5608613, 46.2887211 ], + [ 7.5609934, 46.2886135 ], + [ 7.5611173, 46.2885013 ], + [ 7.5612324, 46.2883847 ], + [ 7.5613387, 46.2882642 ], + [ 7.5614356, 46.2881399 ], + [ 7.5615231, 46.2880123 ], + [ 7.5616008, 46.2878816 ], + [ 7.5616685, 46.2877484 ], + [ 7.5617261, 46.2876129 ], + [ 7.5617733, 46.2874754 ], + [ 7.5618102, 46.2873365 ], + [ 7.5618365, 46.2871964 ], + [ 7.5618521, 46.2870555 ], + [ 7.5618571, 46.2869143 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0028", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Chippis", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Chippis", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Chippis", + "lang" : "it-CH" + }, + { + "text" : "Substation Chippis", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.5267704, 47.4645266 ], + [ 8.524259, 47.4641787 ], + [ 8.5241285, 47.4641494 ], + [ 8.5235914, 47.4667576 ], + [ 8.5227104, 47.4710384 ], + [ 8.5250181, 47.4721798 ], + [ 8.5265443, 47.465144 ], + [ 8.5267704, 47.4645266 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZH002", + "country" : "CHE", + "name" : [ + { + "text" : "LSZH Zürich (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSZH Zürich (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSZH Zürich (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSZH Zürich (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Flughafen Zürich AG / Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Flughafen Zürich AG / Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Flughafen Zürich AG / Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Flughafen Zürich AG / Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Skyguide Special Flight Office", + "lang" : "de-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "it-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.skyguide.ch/services/special-flights", + "email" : "drones@zurich-airport.com", + "phone" : "0041438162211", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7199357, 47.4741551 ], + [ 7.7200294, 47.4741888 ], + [ 7.7200983, 47.4742118 ], + [ 7.7201301, 47.4742275 ], + [ 7.7202058000000005, 47.4742951 ], + [ 7.7203161, 47.4744036 ], + [ 7.7203341, 47.4744142 ], + [ 7.7204361, 47.4744639 ], + [ 7.7204649, 47.4745181 ], + [ 7.7204892, 47.4745348 ], + [ 7.7205279, 47.4745497 ], + [ 7.7205624, 47.4745574 ], + [ 7.7206297, 47.4745712 ], + [ 7.7207424, 47.4746145 ], + [ 7.7207813, 47.4746344 ], + [ 7.7208949, 47.4747461 ], + [ 7.7209465999999995, 47.4747875 ], + [ 7.7209818, 47.474809 ], + [ 7.7210415, 47.4748162 ], + [ 7.7211078, 47.4748161 ], + [ 7.7211675, 47.4748161 ], + [ 7.7212474, 47.4748103 ], + [ 7.7214061, 47.474798 ], + [ 7.7216875, 47.474753 ], + [ 7.7218038, 47.4747727 ], + [ 7.7218873, 47.4747861 ], + [ 7.7220027, 47.4747933 ], + [ 7.7220739, 47.4747798 ], + [ 7.7221697, 47.4747913 ], + [ 7.7222121, 47.4748003 ], + [ 7.7222666, 47.4748033 ], + [ 7.7223054, 47.4747972 ], + [ 7.7223216, 47.4747636 ], + [ 7.7223313000000005, 47.47466 ], + [ 7.7223457, 47.4746443 ], + [ 7.7223725, 47.4746304 ], + [ 7.7223991, 47.4746293 ], + [ 7.7224535, 47.4746323 ], + [ 7.7226155, 47.4746626 ], + [ 7.7227784, 47.4746919 ], + [ 7.7228854, 47.474716 ], + [ 7.7229624, 47.4747534 ], + [ 7.723005, 47.4747901 ], + [ 7.7230061, 47.4748045 ], + [ 7.7230122, 47.4748137 ], + [ 7.7230281, 47.4747903 ], + [ 7.723076, 47.4747198 ], + [ 7.7222972, 47.4745357 ], + [ 7.7221418, 47.4745383 ], + [ 7.7218751999999995, 47.4745778 ], + [ 7.7216262, 47.4745038 ], + [ 7.7211152, 47.4742209 ], + [ 7.7204663, 47.4737428 ], + [ 7.7204383, 47.4737635 ], + [ 7.7199685, 47.4741295 ], + [ 7.7199357, 47.4741551 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns129", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Spinnler-Weiher", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Spinnler-Weiher", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Spinnler-Weiher", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Spinnler-Weiher", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.577177, 47.5264414 ], + [ 7.5772393000000005, 47.5268722 ], + [ 7.5773985, 47.5268662 ], + [ 7.5774650999999995, 47.5268623 ], + [ 7.5775316, 47.5268578 ], + [ 7.5775981, 47.5268529 ], + [ 7.5776645, 47.5268473 ], + [ 7.5777304999999995, 47.5268414 ], + [ 7.5777964, 47.5268349 ], + [ 7.5778622, 47.5268278 ], + [ 7.5779278, 47.5268203 ], + [ 7.5779936, 47.5268123 ], + [ 7.5780592, 47.5268037 ], + [ 7.5781247, 47.5267946 ], + [ 7.57819, 47.526785 ], + [ 7.5797319, 47.5265582 ], + [ 7.5806468, 47.5264237 ], + [ 7.5806849, 47.5264187 ], + [ 7.5807231, 47.5264142 ], + [ 7.5807614, 47.5264102 ], + [ 7.5807998, 47.5264067 ], + [ 7.5808383, 47.5264037 ], + [ 7.5808769, 47.5264012 ], + [ 7.5809156, 47.5263992 ], + [ 7.5809539, 47.5263978 ], + [ 7.5809923, 47.5263969 ], + [ 7.5810307, 47.5263965 ], + [ 7.5810692, 47.5263966 ], + [ 7.5811076, 47.5263972 ], + [ 7.5811459, 47.5263983 ], + [ 7.5811843, 47.5263999 ], + [ 7.5812229, 47.5264017 ], + [ 7.5812614, 47.5264041 ], + [ 7.5812998, 47.5264069 ], + [ 7.5813381, 47.5264103 ], + [ 7.5813764, 47.5264141 ], + [ 7.5814145, 47.5264184 ], + [ 7.5814525, 47.5264233 ], + [ 7.5814902, 47.5264286 ], + [ 7.5815278, 47.5264345 ], + [ 7.5815652, 47.5264408 ], + [ 7.5816023999999995, 47.5264477 ], + [ 7.5816394, 47.526455 ], + [ 7.5816761, 47.5264628 ], + [ 7.5817127, 47.5264711 ], + [ 7.5819904000000005, 47.5265366 ], + [ 7.5821078, 47.5265593 ], + [ 7.5821254, 47.5265623 ], + [ 7.5821433, 47.5265649 ], + [ 7.5821612, 47.5265669 ], + [ 7.5821793, 47.5265685 ], + [ 7.5821974, 47.5265696 ], + [ 7.582213, 47.5265703 ], + [ 7.5822286, 47.5265707 ], + [ 7.5822443, 47.5265707 ], + [ 7.5822599, 47.5265703 ], + [ 7.5822755, 47.5265696 ], + [ 7.5822902, 47.5265685 ], + [ 7.5823048, 47.526567 ], + [ 7.5823194, 47.5265653 ], + [ 7.5823338, 47.5265632 ], + [ 7.5825492, 47.5265309 ], + [ 7.582723, 47.5265079 ], + [ 7.5827311, 47.5265051 ], + [ 7.5827388, 47.5265018 ], + [ 7.582746, 47.526498 ], + [ 7.5827526, 47.5264938 ], + [ 7.5827587, 47.5264892 ], + [ 7.5827643, 47.5264851 ], + [ 7.5827694999999995, 47.5264806 ], + [ 7.5827741, 47.5264759 ], + [ 7.5827781, 47.5264709 ], + [ 7.5827814, 47.5264658 ], + [ 7.5827709, 47.52624 ], + [ 7.5827647, 47.5260805 ], + [ 7.5827647, 47.5260722 ], + [ 7.5827638, 47.5260639 ], + [ 7.582762, 47.5260556 ], + [ 7.5827594, 47.5260474 ], + [ 7.582756, 47.5260394 ], + [ 7.5827517, 47.5260316 ], + [ 7.5827466, 47.526024 ], + [ 7.5827407000000004, 47.5260167 ], + [ 7.5827341, 47.5260097 ], + [ 7.5827267, 47.526003 ], + [ 7.5827186, 47.5259964 ], + [ 7.5827099, 47.5259902 ], + [ 7.5827005, 47.5259845 ], + [ 7.5826905, 47.5259793 ], + [ 7.58268, 47.5259745 ], + [ 7.582669, 47.5259703 ], + [ 7.5826576, 47.5259667 ], + [ 7.5826458, 47.5259636 ], + [ 7.5826337, 47.5259611 ], + [ 7.5826214, 47.5259593 ], + [ 7.582592, 47.525953200000004 ], + [ 7.5825627, 47.5259468 ], + [ 7.5825336, 47.5259399 ], + [ 7.5825048, 47.5259326 ], + [ 7.5824762, 47.5259249 ], + [ 7.5824659, 47.525938 ], + [ 7.5822889, 47.5261676 ], + [ 7.5819183, 47.5260356 ], + [ 7.5818484, 47.5258957 ], + [ 7.581973, 47.5256981 ], + [ 7.5817589, 47.5256195 ], + [ 7.5816055, 47.525728 ], + [ 7.581137, 47.5258298 ], + [ 7.5809303, 47.5255928 ], + [ 7.5807337, 47.5254541 ], + [ 7.5800929, 47.5257953 ], + [ 7.5798266, 47.5258794 ], + [ 7.5797315, 47.5259095 ], + [ 7.5791501, 47.5259583 ], + [ 7.5785519, 47.5259285 ], + [ 7.5783442, 47.5258871 ], + [ 7.5781768, 47.5258564 ], + [ 7.5783225, 47.5256457 ], + [ 7.5789836, 47.5253237 ], + [ 7.5788496, 47.5253147 ], + [ 7.578638, 47.5252965 ], + [ 7.5784796, 47.5252774 ], + [ 7.5784474, 47.5252907 ], + [ 7.5781196, 47.5254264 ], + [ 7.5776592, 47.5257633 ], + [ 7.577177, 47.5264414 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns137", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Känelgraben - Bammertsgraben", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Känelgraben - Bammertsgraben", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Känelgraben - Bammertsgraben", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Känelgraben - Bammertsgraben", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.1105406, 47.6632159 ], + [ 9.1100653, 47.6631336 ], + [ 9.1091222, 47.6631022 ], + [ 9.1085181, 47.6629473 ], + [ 9.1075769, 47.6628672 ], + [ 9.1070655, 47.6628296 ], + [ 9.1063686, 47.6628961 ], + [ 9.1055373, 47.66298 ], + [ 9.1047101, 47.6631386 ], + [ 9.1040925, 47.6633229 ], + [ 9.103149, 47.6638079 ], + [ 9.1018153, 47.6644791 ], + [ 9.1012568, 47.6647165 ], + [ 9.1008787, 47.6648684 ], + [ 9.1005714, 47.6649403 ], + [ 9.0999353, 47.6650393 ], + [ 9.099405, 47.6651144 ], + [ 9.0991219, 47.6651364 ], + [ 9.0986708, 47.6671803 ], + [ 9.098454, 47.6671683 ], + [ 9.0982016, 47.6670819 ], + [ 9.0979725, 47.6669952 ], + [ 9.0976858, 47.6669032 ], + [ 9.0973701, 47.6668922 ], + [ 9.0968976, 47.6669549 ], + [ 9.0964932, 47.6670892 ], + [ 9.0959516, 47.6673623 ], + [ 9.0955215, 47.6676599 ], + [ 9.0948227, 47.6681764 ], + [ 9.0939986, 47.6687872 ], + [ 9.0936351, 47.6690848 ], + [ 9.093338, 47.6694595 ], + [ 9.0931788, 47.6696939 ], + [ 9.0928689, 47.6701363 ], + [ 9.0927357, 47.6704297 ], + [ 9.0927448, 47.670722 ], + [ 9.092687, 47.6710033 ], + [ 9.092639, 47.6712514 ], + [ 9.092588, 47.6715374 ], + [ 9.0924247, 47.6718537 ], + [ 9.0919337, 47.6724679 ], + [ 9.0912496, 47.6731405 ], + [ 9.0906441, 47.6737959 ], + [ 9.0901992, 47.6741556 ], + [ 9.0897119, 47.674544 ], + [ 9.089111, 47.6748404 ], + [ 9.0883185, 47.6750541 ], + [ 9.0873698, 47.6752475 ], + [ 9.0860335, 47.675451699999996 ], + [ 9.0854785, 47.6755675 ], + [ 9.0855317, 47.6788824 ], + [ 9.0857, 47.679687799999996 ], + [ 9.0860838, 47.6797434 ], + [ 9.0864696, 47.6797923 ], + [ 9.0868572, 47.6798345 ], + [ 9.0872462, 47.6798699 ], + [ 9.0876365, 47.6798987 ], + [ 9.0880277, 47.6799207 ], + [ 9.0884196, 47.6799359 ], + [ 9.088812, 47.6799443 ], + [ 9.0892045, 47.6799459 ], + [ 9.089597, 47.6799407 ], + [ 9.0899892, 47.6799287 ], + [ 9.0903808, 47.6799099 ], + [ 9.0907715, 47.6798844 ], + [ 9.0911581, 47.6798532 ], + [ 9.0915436, 47.6798168 ], + [ 9.0919281, 47.6797755 ], + [ 9.0923113, 47.679729 ], + [ 9.092693, 47.6796776 ], + [ 9.0930732, 47.6796211 ], + [ 9.0934518, 47.6795596 ], + [ 9.0938284, 47.6794931 ], + [ 9.0942031, 47.6794217 ], + [ 9.0945756, 47.6793454 ], + [ 9.0949459, 47.6792642 ], + [ 9.0953137, 47.6791781 ], + [ 9.0959076, 47.6790314 ], + [ 9.0964981, 47.6788786 ], + [ 9.0970851, 47.6787198 ], + [ 9.0976685, 47.6785551 ], + [ 9.0982482, 47.6783844 ], + [ 9.098824, 47.6782079 ], + [ 9.0993958, 47.6780255 ], + [ 9.0999634, 47.6778373 ], + [ 9.1005268, 47.6776433 ], + [ 9.1010857, 47.6774436 ], + [ 9.1016402, 47.6772383 ], + [ 9.10219, 47.6770273 ], + [ 9.102735, 47.6768107 ], + [ 9.1032751, 47.676588699999996 ], + [ 9.1038102, 47.6763611 ], + [ 9.1043401, 47.6761281 ], + [ 9.1048648, 47.6758898 ], + [ 9.1053841, 47.6756461 ], + [ 9.1058979, 47.6753972 ], + [ 9.1064061, 47.6751431 ], + [ 9.1069085, 47.6748838 ], + [ 9.1074051, 47.6746194 ], + [ 9.1078958, 47.67435 ], + [ 9.1083803, 47.6740757 ], + [ 9.1088587, 47.6737964 ], + [ 9.1093308, 47.6735123 ], + [ 9.1097965, 47.6732234 ], + [ 9.1102557, 47.6729298 ], + [ 9.1107082, 47.6726316 ], + [ 9.1111541, 47.6723288 ], + [ 9.1115931, 47.6720215 ], + [ 9.1123273, 47.6714932 ], + [ 9.1126363, 47.6712812 ], + [ 9.112952, 47.6710738 ], + [ 9.1132744, 47.6708711 ], + [ 9.1136031, 47.6706732 ], + [ 9.1139382, 47.6704801 ], + [ 9.1142795, 47.6702921 ], + [ 9.1146266, 47.670109 ], + [ 9.1149797, 47.6699312 ], + [ 9.1153383, 47.6697585 ], + [ 9.1157024, 47.6695912 ], + [ 9.1160719, 47.6694292 ], + [ 9.1164464, 47.6692728 ], + [ 9.1168259, 47.6691218 ], + [ 9.1172102, 47.6689765 ], + [ 9.1175991, 47.6688369 ], + [ 9.1179923, 47.668703 ], + [ 9.1183898, 47.6685749 ], + [ 9.1187913, 47.6684527 ], + [ 9.1191967, 47.6683364 ], + [ 9.1196057, 47.6682261 ], + [ 9.1200181, 47.6681218 ], + [ 9.1204339, 47.6680237 ], + [ 9.1208526, 47.6679316 ], + [ 9.1212743, 47.6678458 ], + [ 9.1216986, 47.6677661 ], + [ 9.1221254, 47.6676927 ], + [ 9.1225544, 47.6676256 ], + [ 9.1229855, 47.6675648 ], + [ 9.1234185, 47.6675104 ], + [ 9.1238531, 47.6674623 ], + [ 9.1254272, 47.6673178 ], + [ 9.1257323, 47.6672831 ], + [ 9.1260361, 47.6672434 ], + [ 9.1263383, 47.6671985 ], + [ 9.1266388, 47.6671486 ], + [ 9.1269374, 47.6670938 ], + [ 9.1272338, 47.6670339 ], + [ 9.127528, 47.6669691 ], + [ 9.1278197, 47.6668995 ], + [ 9.1281088, 47.6668249 ], + [ 9.1283951, 47.6667456 ], + [ 9.1289263, 47.666589 ], + [ 9.1291779, 47.6665225 ], + [ 9.1294329, 47.6664621 ], + [ 9.1296908, 47.6664078 ], + [ 9.1299515, 47.6663598 ], + [ 9.1302145, 47.6663181 ], + [ 9.1304796, 47.6662827 ], + [ 9.1307463, 47.6662538 ], + [ 9.1310144, 47.6662312 ], + [ 9.1315415, 47.666199399999996 ], + [ 9.1317984, 47.6661767 ], + [ 9.1320537, 47.6661472 ], + [ 9.132307, 47.6661108 ], + [ 9.132558, 47.6660677 ], + [ 9.1328063, 47.6660178 ], + [ 9.1330514, 47.6659614 ], + [ 9.1332931, 47.6658984 ], + [ 9.1335309, 47.665829 ], + [ 9.1337643, 47.6657533 ], + [ 9.1339932, 47.6656714 ], + [ 9.1344383, 47.6654965 ], + [ 9.1346646, 47.6654158 ], + [ 9.1348955, 47.6653415 ], + [ 9.1351308, 47.6652736 ], + [ 9.13537, 47.6652122 ], + [ 9.1359774, 47.6650777 ], + [ 9.1363392, 47.6649919 ], + [ 9.1366978, 47.6649003 ], + [ 9.137053, 47.6648029 ], + [ 9.1374047, 47.6646998 ], + [ 9.1377526, 47.664591 ], + [ 9.1380965, 47.6644765 ], + [ 9.1385849, 47.6643064 ], + [ 9.1387377, 47.6642622 ], + [ 9.1388941, 47.6642242 ], + [ 9.1390536, 47.6641926 ], + [ 9.1392155, 47.6641674 ], + [ 9.1393794, 47.6641488 ], + [ 9.1395446, 47.6641368 ], + [ 9.1397106, 47.6641315 ], + [ 9.1398768, 47.6641328 ], + [ 9.1400425, 47.6641408 ], + [ 9.1402073, 47.6641554 ], + [ 9.1403705, 47.6641766 ], + [ 9.1405315, 47.6642043 ], + [ 9.1406899, 47.6642385 ], + [ 9.1408449, 47.6642789 ], + [ 9.1409961, 47.6643255 ], + [ 9.1430265, 47.6650009 ], + [ 9.1432444, 47.665076 ], + [ 9.1434591, 47.6651552 ], + [ 9.1436704, 47.6652385 ], + [ 9.1438782, 47.6653258 ], + [ 9.1440822, 47.665417 ], + [ 9.1442823, 47.6655121 ], + [ 9.1444784, 47.665611 ], + [ 9.1446702, 47.6657136 ], + [ 9.1448577, 47.6658198 ], + [ 9.1452855, 47.6660773 ], + [ 9.1455354, 47.6662212 ], + [ 9.14579, 47.6663612 ], + [ 9.1460493, 47.6664972 ], + [ 9.1463131, 47.6666292 ], + [ 9.1465814, 47.6667571 ], + [ 9.1468538, 47.6668808 ], + [ 9.1471304, 47.6670003 ], + [ 9.147411, 47.6671155 ], + [ 9.1476954, 47.6672264 ], + [ 9.1479834, 47.6673328 ], + [ 9.148275, 47.6674348 ], + [ 9.148441, 47.6674878 ], + [ 9.1486107, 47.6675352 ], + [ 9.1487836, 47.6675769 ], + [ 9.1489594, 47.6676128 ], + [ 9.1491375, 47.6676428 ], + [ 9.1493177, 47.6676669 ], + [ 9.1494993, 47.667685 ], + [ 9.1496821, 47.667697 ], + [ 9.1498655, 47.6677028 ], + [ 9.1500491, 47.6677026 ], + [ 9.1502325, 47.6676963 ], + [ 9.1504152, 47.6676839 ], + [ 9.1505968, 47.6676654 ], + [ 9.1507768, 47.6676409 ], + [ 9.1566907, 47.6660678 ], + [ 9.1573321, 47.6658972 ], + [ 9.1578374, 47.6657628 ], + [ 9.1594251, 47.6642665 ], + [ 9.1600489, 47.6634797 ], + [ 9.159989, 47.6633342 ], + [ 9.1599111, 47.6631451 ], + [ 9.1595862, 47.6630856 ], + [ 9.1430123, 47.6601862 ], + [ 9.1346594, 47.6599191 ], + [ 9.1338008, 47.6596393 ], + [ 9.1258732, 47.6606454 ], + [ 9.1255335, 47.6607178 ], + [ 9.1249473, 47.6608387 ], + [ 9.1240226, 47.661122 ], + [ 9.1231411, 47.6614567 ], + [ 9.1222367, 47.6617776 ], + [ 9.1210756, 47.6621388 ], + [ 9.1195433, 47.6624463 ], + [ 9.1118749, 47.6632523 ], + [ 9.1110877, 47.6632799 ], + [ 9.1105406, 47.6632159 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "WZV0009", + "country" : "CHE", + "name" : [ + { + "text" : "Wasser- und Zugvogelreservat Ermatinger Becken", + "lang" : "de-CH" + }, + { + "text" : "Réserve d'oiseaux d'eau et de migrateurs Ermatinger Becken", + "lang" : "fr-CH" + }, + { + "text" : "Riserva di uccelli acquatici e migratori Ermatinger Becken", + "lang" : "it-CH" + }, + { + "text" : "Water Bird and Migratory Bird Reserves Ermatinger Becken", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4965836, 47.4359302 ], + [ 7.4966076, 47.4360963 ], + [ 7.4965295, 47.4361704 ], + [ 7.4964069, 47.4362684 ], + [ 7.4963125999999995, 47.4363451 ], + [ 7.4962151, 47.4364549 ], + [ 7.4961453, 47.4364709 ], + [ 7.4961013, 47.4365153 ], + [ 7.4960223, 47.4365983 ], + [ 7.4959112, 47.4366974 ], + [ 7.4957842, 47.4368112 ], + [ 7.4956713, 47.4369191 ], + [ 7.4955109, 47.4370713 ], + [ 7.4954149, 47.437228 ], + [ 7.495255, 47.4373749 ], + [ 7.4951765, 47.4375139 ], + [ 7.4950699, 47.4376484 ], + [ 7.4949826, 47.437764 ], + [ 7.4949683, 47.437847 ], + [ 7.4949213, 47.4379348 ], + [ 7.4949062, 47.4379974 ], + [ 7.4949037, 47.4380649 ], + [ 7.4947822, 47.4381882 ], + [ 7.4946528, 47.4383074 ], + [ 7.4945661999999995, 47.4383729 ], + [ 7.4944818, 47.4384206 ], + [ 7.4944498, 47.4385057 ], + [ 7.4943073, 47.4386333 ], + [ 7.4942391, 47.4386765 ], + [ 7.4942984, 47.4387775 ], + [ 7.4944796, 47.4388512 ], + [ 7.494587, 47.439011 ], + [ 7.4948173, 47.4392607 ], + [ 7.4951433, 47.4391304 ], + [ 7.49537, 47.4390678 ], + [ 7.4954347, 47.4390632 ], + [ 7.4955878, 47.4389889 ], + [ 7.4957501, 47.438884 ], + [ 7.495819, 47.4388274 ], + [ 7.4959497, 47.4389532 ], + [ 7.4958679, 47.4390669 ], + [ 7.4960131, 47.4392548 ], + [ 7.4961749, 47.4393995 ], + [ 7.4963524, 47.4395164 ], + [ 7.4963922, 47.439614 ], + [ 7.4963812, 47.4397489 ], + [ 7.4963342, 47.4398745 ], + [ 7.4962546, 47.4399752 ], + [ 7.4961881, 47.4400527 ], + [ 7.4961603, 47.4401177 ], + [ 7.4961842, 47.4401566 ], + [ 7.4962057, 47.440174 ], + [ 7.4962486, 47.4401636 ], + [ 7.496301, 47.4401353 ], + [ 7.4963168, 47.4401413 ], + [ 7.4963838, 47.4401359 ], + [ 7.496468, 47.4400752 ], + [ 7.4965398, 47.4399876 ], + [ 7.4966102, 47.4398727 ], + [ 7.4966566, 47.4397541 ], + [ 7.4966921, 47.4395812 ], + [ 7.4967148, 47.439375 ], + [ 7.4967599, 47.4391968 ], + [ 7.4967913, 47.4391329 ], + [ 7.4964614, 47.4390935 ], + [ 7.4964328, 47.43909 ], + [ 7.4964354, 47.4389391 ], + [ 7.4964722, 47.4387276 ], + [ 7.4965462, 47.4385095 ], + [ 7.496655, 47.4382735 ], + [ 7.4967542, 47.438027 ], + [ 7.4968356, 47.4377986 ], + [ 7.4968657, 47.437715 ], + [ 7.4969054, 47.4375403 ], + [ 7.4969549, 47.4374223 ], + [ 7.4969856, 47.4373371 ], + [ 7.4970649, 47.4371135 ], + [ 7.4971632, 47.4368338 ], + [ 7.4972812, 47.436571 ], + [ 7.497433, 47.4362914 ], + [ 7.4975498, 47.4361312 ], + [ 7.4976638, 47.4361584 ], + [ 7.497946, 47.4360347 ], + [ 7.4981416, 47.4359241 ], + [ 7.4983663, 47.4358498 ], + [ 7.4986859, 47.4355451 ], + [ 7.4992462, 47.4351209 ], + [ 7.4999597, 47.4347303 ], + [ 7.5006883, 47.4343843 ], + [ 7.5020876, 47.4337735 ], + [ 7.5025381, 47.4335507 ], + [ 7.5025414999999995, 47.4335456 ], + [ 7.5025442, 47.4335404 ], + [ 7.502546, 47.433535 ], + [ 7.502547, 47.4335295 ], + [ 7.5025472, 47.433524 ], + [ 7.5025465, 47.4335185 ], + [ 7.502545, 47.433513 ], + [ 7.5025427, 47.4335077 ], + [ 7.5025396, 47.4335026 ], + [ 7.5025358, 47.4334977 ], + [ 7.5024791, 47.4334457 ], + [ 7.502472, 47.4334422 ], + [ 7.5024645, 47.4334392 ], + [ 7.5024566, 47.4334366 ], + [ 7.5024483, 47.4334346 ], + [ 7.5024398, 47.4334331 ], + [ 7.5024312, 47.4334321 ], + [ 7.5024224, 47.4334317 ], + [ 7.5024062, 47.4334326 ], + [ 7.5023900999999995, 47.433434 ], + [ 7.5023741, 47.4334359 ], + [ 7.5023582, 47.4334384 ], + [ 7.5023426, 47.4334414 ], + [ 7.5023271000000005, 47.4334449 ], + [ 7.5021366, 47.4334879 ], + [ 7.5011745, 47.4337083 ], + [ 7.5001944, 47.4339293 ], + [ 7.4999386, 47.434 ], + [ 7.4987785, 47.4345398 ], + [ 7.4980467, 47.4349589 ], + [ 7.4969781, 47.4355985 ], + [ 7.4967951, 47.4357253 ], + [ 7.4966179, 47.4358838 ], + [ 7.496582, 47.4359181 ], + [ 7.4965836, 47.4359302 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns286", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Dittinger Weide und Dittinger Wald", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Dittinger Weide und Dittinger Wald", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Dittinger Weide und Dittinger Wald", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Dittinger Weide und Dittinger Wald", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8623761, 47.4023075 ], + [ 7.8624224, 47.4021518 ], + [ 7.8623812, 47.4021341 ], + [ 7.8622481, 47.4021359 ], + [ 7.8621654, 47.4021732 ], + [ 7.8618672, 47.4027402 ], + [ 7.8617482, 47.4032316 ], + [ 7.8618997, 47.4033039 ], + [ 7.8619549, 47.4033588 ], + [ 7.8622812, 47.4033861 ], + [ 7.8628412999999995, 47.4033011 ], + [ 7.8628658, 47.4032581 ], + [ 7.8626491, 47.403098 ], + [ 7.8625153, 47.4030058 ], + [ 7.8624534, 47.4028857 ], + [ 7.8624184, 47.4027586 ], + [ 7.8623761, 47.4023075 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns344", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Homberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Homberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Homberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Homberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5689744, 47.4356701 ], + [ 7.5689893999999995, 47.4355582 ], + [ 7.5690055, 47.4355054 ], + [ 7.5690134, 47.4354637 ], + [ 7.5690281, 47.4354315 ], + [ 7.5690295, 47.4354268 ], + [ 7.5690346, 47.4354172 ], + [ 7.5690764999999995, 47.4353252 ], + [ 7.5691379, 47.4350898 ], + [ 7.5691558, 47.4349128 ], + [ 7.5692005, 47.4346592 ], + [ 7.5692062, 47.434496 ], + [ 7.569206, 47.4344878 ], + [ 7.5691649, 47.4342901 ], + [ 7.5691439, 47.4342423 ], + [ 7.5691425, 47.4342393 ], + [ 7.5691333, 47.4342149 ], + [ 7.5691213, 47.434187 ], + [ 7.5683187, 47.4341786 ], + [ 7.5665067, 47.434284 ], + [ 7.5657584, 47.436736 ], + [ 7.5680385, 47.4367052 ], + [ 7.5681978, 47.4364666 ], + [ 7.5684109, 47.4360895 ], + [ 7.5685538, 47.4359659 ], + [ 7.5687455, 47.4358858 ], + [ 7.5689075, 47.4359154 ], + [ 7.5689645, 47.4357222 ], + [ 7.5689744, 47.4356701 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr110", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Unter der Hollen", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Unter der Hollen", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Unter der Hollen", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Unter der Hollen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7042245, 47.3991842 ], + [ 7.7041369, 47.3992564 ], + [ 7.7041094999999995, 47.3992789 ], + [ 7.7040945, 47.3992913 ], + [ 7.7039674, 47.399396 ], + [ 7.7035975, 47.3997008 ], + [ 7.7033784, 47.3998812 ], + [ 7.7032095, 47.4000203 ], + [ 7.7032072, 47.4000222 ], + [ 7.7031946, 47.4000326 ], + [ 7.703182, 47.4000429 ], + [ 7.7031748, 47.4000488 ], + [ 7.703169, 47.4000536 ], + [ 7.7031645, 47.4000573 ], + [ 7.7031429, 47.4000751 ], + [ 7.7029947, 47.4001974 ], + [ 7.7028419, 47.4003236 ], + [ 7.7026465, 47.4004849 ], + [ 7.7023721, 47.40071 ], + [ 7.7023545, 47.4007245 ], + [ 7.7022455, 47.4008139 ], + [ 7.7022993, 47.4008125 ], + [ 7.7024708, 47.4008079 ], + [ 7.7026392999999995, 47.4008034 ], + [ 7.7027348, 47.4007976 ], + [ 7.7027443, 47.4007965 ], + [ 7.702763, 47.4007937 ], + [ 7.7027816, 47.4007904 ], + [ 7.7027999, 47.4007867 ], + [ 7.7028181, 47.4007824 ], + [ 7.7028318, 47.4007788 ], + [ 7.7028599, 47.4007705 ], + [ 7.7029216, 47.4007512 ], + [ 7.7029121, 47.4007846 ], + [ 7.7028324999999995, 47.4010653 ], + [ 7.7028229, 47.4011172 ], + [ 7.7028336, 47.4011481 ], + [ 7.7028626, 47.4011825 ], + [ 7.7029129, 47.4011918 ], + [ 7.7030016, 47.4011773 ], + [ 7.703138, 47.4011084 ], + [ 7.7032605, 47.4010534 ], + [ 7.7033000000000005, 47.4010547 ], + [ 7.7034475, 47.4010652 ], + [ 7.7036338, 47.4010528 ], + [ 7.7037654, 47.4010997 ], + [ 7.7038139, 47.4010737 ], + [ 7.7039405, 47.4010706 ], + [ 7.7039634, 47.4010497 ], + [ 7.703987, 47.4010283 ], + [ 7.7039884, 47.401027 ], + [ 7.7040649, 47.4010491 ], + [ 7.7041646, 47.4010899 ], + [ 7.7043456, 47.4012216 ], + [ 7.7046007, 47.4013851 ], + [ 7.704702, 47.4013736 ], + [ 7.7048799, 47.4015166 ], + [ 7.7050048, 47.4015429 ], + [ 7.7050598, 47.4014959 ], + [ 7.705331, 47.4014993 ], + [ 7.7055863, 47.401444 ], + [ 7.705645, 47.4014313 ], + [ 7.7057584, 47.4014574 ], + [ 7.7058719, 47.4014797 ], + [ 7.7059884, 47.4014985 ], + [ 7.7066336, 47.4015924 ], + [ 7.7068431, 47.4014008 ], + [ 7.7070751, 47.4016648 ], + [ 7.7073062, 47.4018265 ], + [ 7.7076989000000005, 47.4019116 ], + [ 7.7076693, 47.4019808 ], + [ 7.7079193, 47.4020588 ], + [ 7.7079829, 47.4021152 ], + [ 7.7080684999999995, 47.4021746 ], + [ 7.7081502, 47.4022298 ], + [ 7.7081679, 47.4022417 ], + [ 7.7082063, 47.4022701 ], + [ 7.7082437, 47.4022733 ], + [ 7.7082784, 47.4022592 ], + [ 7.708277, 47.4022327 ], + [ 7.7082768, 47.402228 ], + [ 7.7082443, 47.4021714 ], + [ 7.7081814, 47.402119 ], + [ 7.7080950999999995, 47.4020853 ], + [ 7.7080876, 47.4020777 ], + [ 7.7080532, 47.4020429 ], + [ 7.7080244, 47.4020138 ], + [ 7.7080939, 47.4019841 ], + [ 7.7080986, 47.4019821 ], + [ 7.7081267, 47.4019701 ], + [ 7.7084036000000005, 47.4019017 ], + [ 7.7088635, 47.4019424 ], + [ 7.7090024, 47.4019715 ], + [ 7.709055, 47.4020248 ], + [ 7.7091159000000005, 47.4020506 ], + [ 7.7091657, 47.4020576 ], + [ 7.7093419, 47.402138 ], + [ 7.7093991, 47.4021517 ], + [ 7.7094764, 47.4021533 ], + [ 7.7095584, 47.4021705 ], + [ 7.70964, 47.4021777 ], + [ 7.7096443, 47.4021381 ], + [ 7.7096146, 47.4020503 ], + [ 7.709536, 47.4019667 ], + [ 7.7094686, 47.4018396 ], + [ 7.7094322, 47.4018144 ], + [ 7.7096488999999995, 47.401658 ], + [ 7.7096797, 47.4015988 ], + [ 7.709748, 47.4015297 ], + [ 7.7097581, 47.4014862 ], + [ 7.7097143, 47.4014106 ], + [ 7.709703, 47.401359 ], + [ 7.709721, 47.401305 ], + [ 7.7097911, 47.4012048 ], + [ 7.7098296, 47.4010061 ], + [ 7.7100521, 47.4007032 ], + [ 7.7102939, 47.4003798 ], + [ 7.7103538, 47.4003097 ], + [ 7.7104066, 47.4002595 ], + [ 7.7104283, 47.4002393 ], + [ 7.7104509, 47.4002197 ], + [ 7.7104743, 47.4002005 ], + [ 7.7104987, 47.4001819 ], + [ 7.7105239, 47.4001637 ], + [ 7.7105499, 47.4001461 ], + [ 7.710621, 47.4001117 ], + [ 7.7105557000000005, 47.3999784 ], + [ 7.7103442, 47.399993 ], + [ 7.7101435, 47.3998815 ], + [ 7.7099912, 47.4000071 ], + [ 7.7098510000000005, 47.400079 ], + [ 7.709518, 47.4003528 ], + [ 7.7093435, 47.4002467 ], + [ 7.7090982, 47.4001242 ], + [ 7.7086933, 47.4000427 ], + [ 7.7084012, 47.400034 ], + [ 7.7082925, 47.3998825 ], + [ 7.7082223, 47.3997094 ], + [ 7.7081812, 47.3995759 ], + [ 7.7081767, 47.3995614 ], + [ 7.708176, 47.3995591 ], + [ 7.7080765, 47.3994447 ], + [ 7.7080209, 47.3993981 ], + [ 7.7077879, 47.399395 ], + [ 7.7076168, 47.399424 ], + [ 7.7074832, 47.3994685 ], + [ 7.7070766, 47.3999347 ], + [ 7.7069442, 47.3999417 ], + [ 7.7068623, 47.3999022 ], + [ 7.7067553, 47.3998344 ], + [ 7.7066945, 47.3997626 ], + [ 7.7066697, 47.3996552 ], + [ 7.7066512, 47.3995857 ], + [ 7.7067703, 47.3995088 ], + [ 7.7068529, 47.3994355 ], + [ 7.7068639999999995, 47.3993667 ], + [ 7.7067499, 47.3992492 ], + [ 7.7066345, 47.3991681 ], + [ 7.7065073, 47.3992151 ], + [ 7.7065306, 47.3993373 ], + [ 7.7063922, 47.3993541 ], + [ 7.7058556, 47.3994249 ], + [ 7.7055538, 47.3994704 ], + [ 7.7055294, 47.399454 ], + [ 7.7054704, 47.3993514 ], + [ 7.7053712, 47.3992499 ], + [ 7.7052021, 47.3993007 ], + [ 7.7050039, 47.399367 ], + [ 7.7048822999999995, 47.3993944 ], + [ 7.7047361, 47.3994095 ], + [ 7.7045916, 47.3994053 ], + [ 7.7044717, 47.3993677 ], + [ 7.7043722, 47.3993024 ], + [ 7.7042499, 47.3992375 ], + [ 7.7042245, 47.3991842 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr022", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne March", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage March", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica March", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge March", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8512024, 47.4754108 ], + [ 7.8514002, 47.475447 ], + [ 7.8514163, 47.4754501 ], + [ 7.8519583, 47.4755543 ], + [ 7.8518867, 47.4753103 ], + [ 7.8518373, 47.4751661 ], + [ 7.851787, 47.4750696 ], + [ 7.8515038, 47.4746699 ], + [ 7.8514346, 47.4745819 ], + [ 7.8512269, 47.4746679 ], + [ 7.8512183, 47.4746715 ], + [ 7.851205, 47.474677 ], + [ 7.8509264, 47.4747913 ], + [ 7.8510632, 47.4750983 ], + [ 7.8512024, 47.4754108 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns160", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Warteckweiher", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Warteckweiher", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Warteckweiher", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Warteckweiher", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4554772, 47.4173333 ], + [ 7.4558669, 47.4180171 ], + [ 7.4559647, 47.4183913 ], + [ 7.4559168, 47.4187239 ], + [ 7.4555719, 47.4201227 ], + [ 7.4549567, 47.4198151 ], + [ 7.4549043, 47.4199913 ], + [ 7.4548838, 47.4200626 ], + [ 7.4548648, 47.4201341 ], + [ 7.4548472, 47.4202058 ], + [ 7.4547348, 47.4206822 ], + [ 7.4547309, 47.4206984 ], + [ 7.4547269, 47.4207146 ], + [ 7.4547229, 47.4207308 ], + [ 7.4546115, 47.4211722 ], + [ 7.4546053, 47.4211962 ], + [ 7.454599, 47.4212202 ], + [ 7.4545924, 47.4212441 ], + [ 7.4545724, 47.4213164 ], + [ 7.4545599, 47.4213628 ], + [ 7.4545516, 47.4213958 ], + [ 7.4542595, 47.4212709 ], + [ 7.4542221, 47.4213763 ], + [ 7.4542731, 47.4215056 ], + [ 7.4541417, 47.4217533 ], + [ 7.4538457, 47.4219358 ], + [ 7.4529797, 47.4222249 ], + [ 7.4529943, 47.4222269 ], + [ 7.4530881, 47.4222399 ], + [ 7.453182, 47.4222524 ], + [ 7.4532761, 47.4222646 ], + [ 7.4533287, 47.4222704 ], + [ 7.4533816999999996, 47.4222744 ], + [ 7.4534348999999995, 47.4222765 ], + [ 7.4536746, 47.4222822 ], + [ 7.4537806, 47.4222847 ], + [ 7.4539165, 47.4222879 ], + [ 7.453964, 47.4222893 ], + [ 7.4540115, 47.4222913 ], + [ 7.454059, 47.4222938 ], + [ 7.4542595, 47.4223058 ], + [ 7.4544227, 47.4223156 ], + [ 7.4546309, 47.422328 ], + [ 7.4547096, 47.4223319 ], + [ 7.4547885, 47.4223342 ], + [ 7.4548674, 47.4223349 ], + [ 7.4554783, 47.4223342 ], + [ 7.4555793, 47.4223341 ], + [ 7.45577, 47.4223339 ], + [ 7.4561914, 47.4223334 ], + [ 7.4565453, 47.422333 ], + [ 7.4574397999999995, 47.422332 ], + [ 7.4574911, 47.4223317 ], + [ 7.4575424, 47.4223311 ], + [ 7.4575937, 47.42233 ], + [ 7.4576307, 47.422329 ], + [ 7.4576676, 47.4223278 ], + [ 7.4577046, 47.4223264 ], + [ 7.4577356, 47.4223253 ], + [ 7.4577666, 47.4223244 ], + [ 7.4577976, 47.422324 ], + [ 7.4578048, 47.4223237 ], + [ 7.4578118, 47.422323 ], + [ 7.4578187, 47.4223218 ], + [ 7.4578255, 47.4223203 ], + [ 7.457832, 47.4223183 ], + [ 7.4578382, 47.4223159 ], + [ 7.4578441, 47.4223132 ], + [ 7.4578496, 47.4223101 ], + [ 7.4578547, 47.4223067 ], + [ 7.4578593, 47.4223031 ], + [ 7.4578634, 47.4222991 ], + [ 7.457867, 47.4222949 ], + [ 7.4578777, 47.422279 ], + [ 7.4578862, 47.4222625 ], + [ 7.4578921, 47.4222454 ], + [ 7.4578956, 47.4222281 ], + [ 7.4578992, 47.4222 ], + [ 7.4578997, 47.4221969 ], + [ 7.4579002, 47.4221937 ], + [ 7.4579007, 47.4221906 ], + [ 7.4579056, 47.422171 ], + [ 7.4579129, 47.4221519 ], + [ 7.4579224, 47.4221332 ], + [ 7.4579342, 47.422115 ], + [ 7.4579482, 47.4220977 ], + [ 7.4579642, 47.4220811 ], + [ 7.4579822, 47.4220655 ], + [ 7.4579917, 47.4220583 ], + [ 7.4580121, 47.4220445 ], + [ 7.4580426, 47.422027 ], + [ 7.4580752, 47.4220114 ], + [ 7.4581096, 47.4219976 ], + [ 7.4581456, 47.4219858 ], + [ 7.4581829, 47.4219761 ], + [ 7.4584461, 47.4219161 ], + [ 7.4585080999999995, 47.4219019 ], + [ 7.4585381, 47.4218885 ], + [ 7.4585661, 47.4218733 ], + [ 7.4585918, 47.4218563 ], + [ 7.458615, 47.4218377 ], + [ 7.4586508, 47.4218028 ], + [ 7.4586814, 47.4217657 ], + [ 7.4587066, 47.4217267 ], + [ 7.4587261, 47.4216863 ], + [ 7.4587717, 47.4215732 ], + [ 7.4587853, 47.4215385 ], + [ 7.4587912, 47.4215225 ], + [ 7.4581028, 47.4215624 ], + [ 7.4568464, 47.4216082 ], + [ 7.4565732, 47.4206734 ], + [ 7.4561352, 47.4194709 ], + [ 7.4565446, 47.4182555 ], + [ 7.4568945, 47.4171207 ], + [ 7.4571616, 47.4161606 ], + [ 7.4572727, 47.4153376 ], + [ 7.4571971999999995, 47.4153244 ], + [ 7.4569472, 47.4152807 ], + [ 7.4567601, 47.4156441 ], + [ 7.4566228, 47.4158892 ], + [ 7.4564944, 47.416145 ], + [ 7.4562912, 47.4163104 ], + [ 7.4560608, 47.4165333 ], + [ 7.4560421, 47.4165496 ], + [ 7.4558917, 47.4167337 ], + [ 7.4557906, 47.4168852 ], + [ 7.4557886, 47.4168877 ], + [ 7.4556809, 47.416928 ], + [ 7.4555368, 47.4169093 ], + [ 7.4554081, 47.416838 ], + [ 7.4553449, 47.4169058 ], + [ 7.4552808, 47.4169718 ], + [ 7.4552683, 47.4169841 ], + [ 7.4554772, 47.4173333 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns337", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Strickhübel", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Strickhübel", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Strickhübel", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Strickhübel", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.8639057, 46.4262838 ], + [ 9.863897399999999, 46.4263114 ], + [ 9.8637786, 46.4265093 ], + [ 9.8636003, 46.426803 ], + [ 9.8634554, 46.4270267 ], + [ 9.8633713, 46.4271861 ], + [ 9.8633616, 46.4273754 ], + [ 9.8633433, 46.4275775 ], + [ 9.8633659, 46.4278795 ], + [ 9.8633934, 46.4280869 ], + [ 9.8634188, 46.4284519 ], + [ 9.8634519, 46.4287853 ], + [ 9.8635215, 46.4291178 ], + [ 9.8636332, 46.4293739 ], + [ 9.8636986, 46.429612 ], + [ 9.863853, 46.4298041 ], + [ 9.8640384, 46.4300774 ], + [ 9.8644981, 46.4305718 ], + [ 9.8648384, 46.4308419 ], + [ 9.8650623, 46.4309568 ], + [ 9.8652117, 46.4310356 ], + [ 9.8654362, 46.4311631 ], + [ 9.8655417, 46.4312806 ], + [ 9.8655493, 46.4314506 ], + [ 9.8655467, 46.4315956 ], + [ 9.8655446, 46.4317533 ], + [ 9.8655972, 46.4319097 ], + [ 9.8657952, 46.4320567 ], + [ 9.8659468, 46.4321858 ], + [ 9.8661232, 46.4324594 ], + [ 9.8662133, 46.4326402 ], + [ 9.8662121, 46.4328167 ], + [ 9.8661929, 46.4329999 ], + [ 9.8663286, 46.4331798 ], + [ 9.8666711, 46.4335002 ], + [ 9.8669518, 46.4338661 ], + [ 9.8673284, 46.434337 ], + [ 9.8675958, 46.4348103 ], + [ 9.8677533, 46.4350716 ], + [ 9.8678381, 46.4353345 ], + [ 9.8679153, 46.4356354 ], + [ 9.8681267, 46.4358767 ], + [ 9.8685134, 46.4361646 ], + [ 9.8689903, 46.4364318 ], + [ 9.8693921, 46.43665 ], + [ 9.869859, 46.4368984 ], + [ 9.8702776, 46.4370849 ], + [ 9.8706291, 46.4371971 ], + [ 9.870879, 46.43728 ], + [ 9.8710025, 46.4373908 ], + [ 9.8710727, 46.4375342 ], + [ 9.8710451, 46.4377302 ], + [ 9.8710265, 46.437926 ], + [ 9.8710102, 46.4381721 ], + [ 9.8710747, 46.4383913 ], + [ 9.8711353, 46.4385224 ], + [ 9.8712158, 46.4386909 ], + [ 9.871286, 46.4388343 ], + [ 9.8712568, 46.4388699 ], + [ 9.8715845, 46.4393774 ], + [ 9.8717952, 46.4398122 ], + [ 9.8719889, 46.4400662 ], + [ 9.8720675, 46.440405 ], + [ 9.872323699999999, 46.4408004 ], + [ 9.8726396, 46.4412769 ], + [ 9.8728318, 46.4416792 ], + [ 9.8728862, 46.4420021 ], + [ 9.8731104, 46.4423927 ], + [ 9.8732306, 46.4426784 ], + [ 9.8733897, 46.4428672 ], + [ 9.8736001, 46.4431317 ], + [ 9.873726, 46.4434531 ], + [ 9.8739001, 46.44396 ], + [ 9.8741717, 46.4443551 ], + [ 9.8743616, 46.4446861 ], + [ 9.8744132, 46.4451298 ], + [ 9.8744563, 46.445744 ], + [ 9.8747203, 46.4461338 ], + [ 9.8749313, 46.4465905 ], + [ 9.8752421, 46.4469518 ], + [ 9.8755016, 46.4471313 ], + [ 9.875569, 46.4474527 ], + [ 9.8756642, 46.4478162 ], + [ 9.8760476, 46.4481063 ], + [ 9.8763886, 46.4484341 ], + [ 9.8765416, 46.4487049 ], + [ 9.8767359, 46.4492977 ], + [ 9.8769036, 46.4496961 ], + [ 9.8765973, 46.4503423 ], + [ 9.8764348, 46.4506381 ], + [ 9.876417, 46.4511289 ], + [ 9.8766134, 46.4515693 ], + [ 9.8765753, 46.4518992 ], + [ 9.8764884, 46.4521203 ], + [ 9.8764964, 46.4522967 ], + [ 9.8766103, 46.4524771 ], + [ 9.876741299999999, 46.452657 ], + [ 9.8769194, 46.4528908 ], + [ 9.8770223, 46.4532235 ], + [ 9.8772937, 46.4533761 ], + [ 9.877696199999999, 46.4535137 ], + [ 9.8779703, 46.453727 ], + [ 9.8781866, 46.4542097 ], + [ 9.8782764, 46.4544514 ], + [ 9.8784523, 46.4550325 ], + [ 9.8787436, 46.4554281 ], + [ 9.8789551, 46.4556246 ], + [ 9.8791438, 46.455712 ], + [ 9.8794943, 46.4558506 ], + [ 9.8801143, 46.4561175 ], + [ 9.8804391, 46.4562811 ], + [ 9.8807526, 46.456591 ], + [ 9.8810881, 46.4569919 ], + [ 9.8812492, 46.4572444 ], + [ 9.8814324, 46.4577886 ], + [ 9.8816443, 46.4581921 ], + [ 9.8818516, 46.4584922 ], + [ 9.8818802, 46.4587293 ], + [ 9.8818146, 46.4588464 ], + [ 9.8816165, 46.4589482 ], + [ 9.8817475, 46.4591097 ], + [ 9.8819007, 46.4591856 ], + [ 9.8823296, 46.4593104 ], + [ 9.8830004, 46.4595102 ], + [ 9.8833498, 46.4597871 ], + [ 9.8834312, 46.4604907 ], + [ 9.8836056, 46.4610729 ], + [ 9.8836514, 46.4619081 ], + [ 9.8839407, 46.4621124 ], + [ 9.8840767, 46.4623481 ], + [ 9.8840414, 46.4627928 ], + [ 9.8843942, 46.4635048 ], + [ 9.8848395, 46.4640463 ], + [ 9.8850185, 46.4643334 ], + [ 9.8849799, 46.4649389 ], + [ 9.885092, 46.4657096 ], + [ 9.8855842, 46.4662961 ], + [ 9.885588, 46.4668855 ], + [ 9.8853395, 46.4677481 ], + [ 9.8850214, 46.4680765 ], + [ 9.884848999999999, 46.4684247 ], + [ 9.8851374, 46.468916 ], + [ 9.8858011, 46.4691544 ], + [ 9.8861882, 46.469613 ], + [ 9.8863297, 46.4700616 ], + [ 9.8861572, 46.4708921 ], + [ 9.8859797, 46.4716306 ], + [ 9.8862076, 46.4722612 ], + [ 9.8873089, 46.4728498 ], + [ 9.8874605, 46.4730149 ], + [ 9.887487, 46.4733512 ], + [ 9.8880504, 46.4736201 ], + [ 9.888662, 46.4738942 ], + [ 9.8890102, 46.4740134 ], + [ 9.8890659, 46.4744348 ], + [ 9.8890541, 46.4749842 ], + [ 9.8895701, 46.4755731 ], + [ 9.8896631, 46.4762808 ], + [ 9.8898075, 46.4766453 ], + [ 9.8901059, 46.4768881 ], + [ 9.8903932, 46.4771565 ], + [ 9.8905877, 46.477389 ], + [ 9.8907887, 46.478052 ], + [ 9.8910511, 46.4784521 ], + [ 9.8915183, 46.4787715 ], + [ 9.892010299999999, 46.4790988 ], + [ 9.8920302, 46.4795378 ], + [ 9.8922968, 46.4802841 ], + [ 9.8932412, 46.4811593 ], + [ 9.8942435, 46.4816785 ], + [ 9.8950502, 46.4822102 ], + [ 9.8953694, 46.4824991 ], + [ 9.8954916, 46.4830373 ], + [ 9.8959963, 46.4836432 ], + [ 9.8968396, 46.4839038 ], + [ 9.8975536, 46.4839897 ], + [ 9.897832, 46.4842034 ], + [ 9.8978237, 46.4845585 ], + [ 9.8976205, 46.4849263 ], + [ 9.8973628, 46.4854557 ], + [ 9.8972897, 46.4859981 ], + [ 9.897302700000001, 46.4862852 ], + [ 9.8974692, 46.4863825 ], + [ 9.8975591, 46.4863169 ], + [ 9.897663099999999, 46.4862404 ], + [ 9.8977818, 46.4861637 ], + [ 9.8979768, 46.486064 ], + [ 9.8983724, 46.4859706 ], + [ 9.8988065, 46.4860778 ], + [ 9.8990478, 46.4863166 ], + [ 9.8991551, 46.4866536 ], + [ 9.8993107, 46.4870319 ], + [ 9.8994678, 46.4874421 ], + [ 9.8996048, 46.4877679 ], + [ 9.8998451, 46.4879853 ], + [ 9.9003114, 46.4881025 ], + [ 9.900878, 46.4880796 ], + [ 9.9015813, 46.4880007 ], + [ 9.9020531, 46.4879163 ], + [ 9.9022467, 46.4877849 ], + [ 9.9023889, 46.487527299999996 ], + [ 9.9026024, 46.4871726 ], + [ 9.902792999999999, 46.4869776 ], + [ 9.9037205, 46.4864379 ], + [ 9.9042816, 46.4862772 ], + [ 9.904695199999999, 46.4862577 ], + [ 9.9050362, 46.4861978 ], + [ 9.9052964, 46.486063 ], + [ 9.9051086, 46.4859283 ], + [ 9.9049324, 46.4857611 ], + [ 9.9047804, 46.4856062 ], + [ 9.9047569, 46.4855003 ], + [ 9.9051224, 46.485105 ], + [ 9.9055179, 46.4847575 ], + [ 9.9057294, 46.4845915 ], + [ 9.905847099999999, 46.4844954 ], + [ 9.9059713, 46.4845573 ], + [ 9.9060903, 46.4846128 ], + [ 9.906361, 46.4846037 ], + [ 9.9066054, 46.4845158 ], + [ 9.906831799999999, 46.4843718 ], + [ 9.9072149, 46.4840942 ], + [ 9.9075661, 46.4837954 ], + [ 9.9078204, 46.4835684 ], + [ 9.9080276, 46.4834335 ], + [ 9.9082807, 46.4833237 ], + [ 9.9088772, 46.4831718 ], + [ 9.909382, 46.4830608 ], + [ 9.9100098, 46.4828995 ], + [ 9.9105576, 46.4827876 ], + [ 9.910857, 46.482729 ], + [ 9.9109056, 46.4827043 ], + [ 9.9112136, 46.4825474 ], + [ 9.9117533, 46.4822402 ], + [ 9.9121813, 46.4819832 ], + [ 9.9128289, 46.4814892 ], + [ 9.9132039, 46.4811595 ], + [ 9.9134009, 46.4810107 ], + [ 9.9134408, 46.4809805 ], + [ 9.9137691, 46.4807344 ], + [ 9.914088, 46.4805493 ], + [ 9.9144481, 46.4803917 ], + [ 9.9147441, 46.4802592 ], + [ 9.9151217, 46.4800576 ], + [ 9.9154742, 46.4797892 ], + [ 9.9157062, 46.4796278 ], + [ 9.9157952, 46.4793825 ], + [ 9.9160374, 46.4791774 ], + [ 9.9165317, 46.4787148 ], + [ 9.9168106, 46.4784741 ], + [ 9.9169239, 46.4782111 ], + [ 9.9169991, 46.4779314 ], + [ 9.9170037, 46.4777488 ], + [ 9.9171841, 46.4775797 ], + [ 9.9171356, 46.4773375 ], + [ 9.9172741, 46.4770739 ], + [ 9.9173639, 46.4768286 ], + [ 9.9174012, 46.4765411 ], + [ 9.9173861, 46.4762278 ], + [ 9.9173955, 46.4758289 ], + [ 9.9174881, 46.475503 ], + [ 9.9177494, 46.4750923 ], + [ 9.9180522, 46.4748241 ], + [ 9.9183537, 46.4747054 ], + [ 9.9185194, 46.4745896 ], + [ 9.9187251, 46.4745478 ], + [ 9.9189121, 46.4745063 ], + [ 9.9189716, 46.4744178 ], + [ 9.9190196, 46.4742922 ], + [ 9.9192322, 46.4742065 ], + [ 9.9194143, 46.4740405 ], + [ 9.9196026, 46.4738308 ], + [ 9.9196918, 46.4736109 ], + [ 9.9197938, 46.4734717 ], + [ 9.9200108, 46.4732863 ], + [ 9.9201046, 46.4731658 ], + [ 9.9201174, 46.4730534 ], + [ 9.9201086, 46.4726675 ], + [ 9.9201826, 46.4725039 ], + [ 9.920275, 46.4723711 ], + [ 9.920342699999999, 46.4721609 ], + [ 9.9206323, 46.4717995 ], + [ 9.9209353, 46.4715188 ], + [ 9.921292, 46.4712369 ], + [ 9.9214026, 46.4710912 ], + [ 9.921501899999999, 46.4708959 ], + [ 9.921676, 46.4707675 ], + [ 9.9219769, 46.4706363 ], + [ 9.9222389, 46.4704562 ], + [ 9.9224272, 46.4702465 ], + [ 9.922416, 46.4700039 ], + [ 9.9224813, 46.4698467 ], + [ 9.9226192, 46.4697129 ], + [ 9.9226849, 46.4693689 ], + [ 9.9228492, 46.4690289 ], + [ 9.9229451, 46.4687589 ], + [ 9.9229919, 46.4685897 ], + [ 9.9232813, 46.4684215 ], + [ 9.923509, 46.4682732 ], + [ 9.9236019, 46.4681341 ], + [ 9.9237035, 46.4679885 ], + [ 9.9238677, 46.4674493 ], + [ 9.9239022, 46.4670124 ], + [ 9.9239377, 46.4668124 ], + [ 9.924027, 46.4665925 ], + [ 9.9241243, 46.4663535 ], + [ 9.9241792, 46.4661841 ], + [ 9.924252599999999, 46.4658151 ], + [ 9.9244157, 46.4654315 ], + [ 9.924631699999999, 46.4650468 ], + [ 9.9247821, 46.4647756 ], + [ 9.9249737, 46.4646406 ], + [ 9.9251225, 46.4645315 ], + [ 9.9252715, 46.4642479 ], + [ 9.9255041, 46.4640123 ], + [ 9.9258702, 46.4637426 ], + [ 9.9261135, 46.4635442 ], + [ 9.9263608, 46.4632398 ], + [ 9.9266145, 46.4628792 ], + [ 9.9270302, 46.4625026 ], + [ 9.9273124, 46.4621787 ], + [ 9.9274587, 46.4620135 ], + [ 9.9276869, 46.4618777 ], + [ 9.9279607, 46.4617595 ], + [ 9.9280642, 46.4616577 ], + [ 9.9282412, 46.4613983 ], + [ 9.92841, 46.4611392 ], + [ 9.9285979, 46.4609233 ], + [ 9.9288918, 46.4606427 ], + [ 9.9290661, 46.460520700000004 ], + [ 9.9291596, 46.460394 ], + [ 9.9293119, 46.4601664 ], + [ 9.9295177, 46.4599501 ], + [ 9.929775, 46.4596516 ], + [ 9.9299341, 46.4593928 ], + [ 9.9301636, 46.4591978 ], + [ 9.9306286, 46.4589197 ], + [ 9.930989199999999, 46.4587248 ], + [ 9.9314331, 46.4583789 ], + [ 9.931723, 46.4582043 ], + [ 9.9319019, 46.4579886 ], + [ 9.932027699999999, 46.4577864 ], + [ 9.932273, 46.4574385 ], + [ 9.9324458, 46.4572665 ], + [ 9.9326999, 46.4571114 ], + [ 9.9328104, 46.4569657 ], + [ 9.9326559, 46.4567386 ], + [ 9.932618699999999, 46.4565151 ], + [ 9.9326615, 46.4562775 ], + [ 9.932762, 46.455914 ], + [ 9.9329706, 46.4555481 ], + [ 9.9330699, 46.4551597 ], + [ 9.933072, 46.4550101 ], + [ 9.9331076, 46.454617 ], + [ 9.93314, 46.4543297 ], + [ 9.9334726, 46.4539175 ], + [ 9.9338061, 46.4535427 ], + [ 9.933959, 46.4533274 ], + [ 9.9340268, 46.4530519 ], + [ 9.9341307, 46.4527631 ], + [ 9.9343422, 46.4524595 ], + [ 9.934575, 46.4522301 ], + [ 9.9346575, 46.4520601 ], + [ 9.9346431, 46.4517489 ], + [ 9.9347788, 46.4513723 ], + [ 9.9348749, 46.4511085 ], + [ 9.9349165, 46.4508273 ], + [ 9.9348942, 46.450644 ], + [ 9.9349343, 46.4505434 ], + [ 9.9350759, 46.4504718 ], + [ 9.9351515, 46.4503642 ], + [ 9.9352444, 46.4502252 ], + [ 9.9354786, 46.4500269 ], + [ 9.9356966, 46.4498664 ], + [ 9.9358786, 46.4497191 ], + [ 9.9360543, 46.4494162 ], + [ 9.9362521, 46.4492063 ], + [ 9.9364166, 46.4490657 ], + [ 9.936499, 46.4488957 ], + [ 9.936593, 46.4486564 ], + [ 9.9366941, 46.4484138 ], + [ 9.9367998, 46.4481819 ], + [ 9.9368924, 46.4479481 ], + [ 9.9369357, 46.4478107 ], + [ 9.9369838, 46.4476191 ], + [ 9.9370016, 46.4473328 ], + [ 9.9370741, 46.4472121 ], + [ 9.9371245, 46.4471396 ], + [ 9.937114, 46.4470532 ], + [ 9.9369025, 46.4467373 ], + [ 9.9368703, 46.4466558 ], + [ 9.9368736, 46.4465344 ], + [ 9.9369665, 46.4464305 ], + [ 9.9370377, 46.4463499 ], + [ 9.9371381, 46.4462156 ], + [ 9.9371945, 46.4460801 ], + [ 9.9372005, 46.4455927 ], + [ 9.9370717, 46.4453227 ], + [ 9.9369786, 46.4451905 ], + [ 9.9368872, 46.4450967 ], + [ 9.9368153, 46.4449841 ], + [ 9.9367309, 46.4448668 ], + [ 9.9366429, 46.4448274 ], + [ 9.9364353, 46.4447908 ], + [ 9.9361962, 46.4446356 ], + [ 9.9359991, 46.4445253 ], + [ 9.9355802, 46.4443696 ], + [ 9.9354206, 46.4442082 ], + [ 9.9351131, 46.4437153 ], + [ 9.9350093, 46.443493 ], + [ 9.934806, 46.4432498 ], + [ 9.9346881, 46.4431287 ], + [ 9.9343479, 46.4429483 ], + [ 9.9341283, 46.4427926 ], + [ 9.9340023, 46.4426349 ], + [ 9.9339093, 46.4424903 ], + [ 9.9338215, 46.4424557 ], + [ 9.9338032, 46.4423415 ], + [ 9.9335615, 46.4421451 ], + [ 9.9333578, 46.4418928 ], + [ 9.9331118, 46.4415866 ], + [ 9.9327515, 46.4412553 ], + [ 9.932507, 46.4409811 ], + [ 9.9323588, 46.4407826 ], + [ 9.9322031, 46.4404239 ], + [ 9.9319498, 46.4401178 ], + [ 9.9317336, 46.4398751 ], + [ 9.9316805, 46.4397295 ], + [ 9.9315677, 46.4388686 ], + [ 9.9315232, 46.4387489 ], + [ 9.9314306, 46.4386469 ], + [ 9.9311987, 46.4384164 ], + [ 9.9310592, 46.4383209 ], + [ 9.9310026, 46.4379551 ], + [ 9.9309035, 46.437853 ], + [ 9.9307023, 46.4374412 ], + [ 9.9304278, 46.4369924 ], + [ 9.9302801, 46.4367163 ], + [ 9.9302267, 46.4364052 ], + [ 9.9301548, 46.4360616 ], + [ 9.9299611, 46.4358138 ], + [ 9.92968, 46.435557 ], + [ 9.9295767, 46.4353786 ], + [ 9.9293909, 46.4351252 ], + [ 9.9291491, 46.4346976 ], + [ 9.9290506, 46.4344478 ], + [ 9.9289337, 46.4339737 ], + [ 9.9287467, 46.4335176 ], + [ 9.9286626, 46.4332455 ], + [ 9.9286435, 46.4329884 ], + [ 9.928474, 46.4325922 ], + [ 9.928295, 46.4321305 ], + [ 9.928162799999999, 46.4318375 ], + [ 9.9279243, 46.4314811 ], + [ 9.9278385, 46.4311707 ], + [ 9.9278001, 46.4308484 ], + [ 9.9278999, 46.4304353 ], + [ 9.9279608, 46.4302039 ], + [ 9.9279538, 46.4300506 ], + [ 9.9278502, 46.4298667 ], + [ 9.9275212, 46.4296109 ], + [ 9.9274829, 46.4294693 ], + [ 9.9274993, 46.4292936 ], + [ 9.9274925, 46.4291458 ], + [ 9.9273613, 46.4288747 ], + [ 9.9271872, 46.4287143 ], + [ 9.9270962, 46.4286285 ], + [ 9.9271774, 46.4285007 ], + [ 9.9273967, 46.4284412 ], + [ 9.9274866, 46.4283966 ], + [ 9.9274609, 46.4282276 ], + [ 9.9273571, 46.4276845 ], + [ 9.9272591, 46.4272686 ], + [ 9.9272648, 46.426808 ], + [ 9.9272521, 46.4263538 ], + [ 9.9271272, 46.4261142 ], + [ 9.9270826, 46.4259031 ], + [ 9.9270799, 46.4254547 ], + [ 9.9271706, 46.4249499 ], + [ 9.9271053, 46.4244847 ], + [ 9.9269766, 46.4241604 ], + [ 9.9268221, 46.4238426 ], + [ 9.9267643, 46.4235409 ], + [ 9.9267356, 46.4233053 ], + [ 9.9267434, 46.4232808 ], + [ 9.9268427, 46.4233332 ], + [ 9.9269302, 46.4233434 ], + [ 9.9269453, 46.4232824 ], + [ 9.926952, 46.4232339 ], + [ 9.9269839, 46.4229908 ], + [ 9.9269737, 46.4225729 ], + [ 9.926847, 46.422097 ], + [ 9.9267456, 46.4216084 ], + [ 9.9266918, 46.4211975 ], + [ 9.9266483, 46.4208168 ], + [ 9.9265845, 46.4206672 ], + [ 9.926480699999999, 46.4203893 ], + [ 9.9263588, 46.4201618 ], + [ 9.9261983, 46.419944 ], + [ 9.9261594, 46.4198048 ], + [ 9.9262579, 46.4195226 ], + [ 9.9263933, 46.4193526 ], + [ 9.9265355, 46.4191732 ], + [ 9.9264642, 46.4191793 ], + [ 9.9263741, 46.4192174 ], + [ 9.9262975, 46.4192507 ], + [ 9.9262339, 46.4192838 ], + [ 9.926157, 46.4193261 ], + [ 9.926112700000001, 46.4193542 ], + [ 9.9260613, 46.4193688 ], + [ 9.9260467, 46.419333 ], + [ 9.9260706, 46.4192874 ], + [ 9.9261013, 46.419246 ], + [ 9.9261435, 46.4191728 ], + [ 9.9262194, 46.4191079 ], + [ 9.9262957, 46.4190702 ], + [ 9.9263599, 46.4190507 ], + [ 9.926421, 46.4189454 ], + [ 9.9263181, 46.4188484 ], + [ 9.9264133, 46.4187785 ], + [ 9.9263649, 46.4187344 ], + [ 9.9263297, 46.4186764 ], + [ 9.926481, 46.4185512 ], + [ 9.9266151, 46.418336 ], + [ 9.9267167, 46.4179995 ], + [ 9.9267912, 46.4177962 ], + [ 9.9268223, 46.4176229 ], + [ 9.9268119, 46.4173958 ], + [ 9.9267472, 46.416979 ], + [ 9.9266815, 46.4165577 ], + [ 9.9266743, 46.4162579 ], + [ 9.9266624, 46.4159991 ], + [ 9.9267826, 46.4156056 ], + [ 9.9267326, 46.4153839 ], + [ 9.9266417, 46.4152457 ], + [ 9.9265743, 46.4145388 ], + [ 9.9257607, 46.4130249 ], + [ 9.9241265, 46.4106041 ], + [ 9.9240076, 46.4103699 ], + [ 9.9239141, 46.4100855 ], + [ 9.923725, 46.4097033 ], + [ 9.923519, 46.4091286 ], + [ 9.9232455, 46.408468 ], + [ 9.9230323, 46.4079494 ], + [ 9.9228514, 46.4073367 ], + [ 9.922741, 46.4068968 ], + [ 9.922693, 46.40663 ], + [ 9.9225186, 46.4061603 ], + [ 9.9224257, 46.4059069 ], + [ 9.9219527, 46.389975 ], + [ 9.9213248, 46.3885823 ], + [ 9.9169185, 46.3866179 ], + [ 9.9132375, 46.3847759 ], + [ 9.9109905, 46.3838228 ], + [ 9.9094448, 46.3830278 ], + [ 9.9080223, 46.382293 ], + [ 9.9078983, 46.3817474 ], + [ 9.9075498, 46.381233 ], + [ 9.9074056, 46.3809211 ], + [ 9.9074051, 46.3809121 ], + [ 9.9064099, 46.3807503 ], + [ 9.9050845, 46.3801362 ], + [ 9.9038136, 46.3795395 ], + [ 9.9029516, 46.3794095 ], + [ 9.901549, 46.3788039 ], + [ 9.9007629, 46.3783728 ], + [ 9.9002972, 46.3780166 ], + [ 9.9001889, 46.3778303 ], + [ 9.9002648, 46.377555 ], + [ 9.8998933, 46.3774209 ], + [ 9.899261, 46.3769684 ], + [ 9.8983434, 46.3765791 ], + [ 9.8979162, 46.3767239 ], + [ 9.8974547, 46.3767897 ], + [ 9.8967533, 46.3768129 ], + [ 9.8963054, 46.3767562 ], + [ 9.8944455, 46.376034 ], + [ 9.8939228, 46.3756787 ], + [ 9.8910262, 46.3747796 ], + [ 9.8896476, 46.3743419 ], + [ 9.888653, 46.3738214 ], + [ 9.8872537, 46.3735196 ], + [ 9.8867085, 46.3732603 ], + [ 9.8861394, 46.3732381 ], + [ 9.8855618, 46.3733675 ], + [ 9.8848534, 46.3734769 ], + [ 9.88386, 46.3734228 ], + [ 9.8839648, 46.373022 ], + [ 9.8838754, 46.3726573 ], + [ 9.8838851, 46.3721895 ], + [ 9.8835547, 46.3715864 ], + [ 9.8825681, 46.3704751 ], + [ 9.8824782, 46.3700971 ], + [ 9.8820017, 46.3697434 ], + [ 9.8813957, 46.369071 ], + [ 9.880293, 46.3681925 ], + [ 9.8792465, 46.3678792 ], + [ 9.8787498, 46.367672 ], + [ 9.8784043, 46.3673939 ], + [ 9.8768374, 46.3665923 ], + [ 9.8763917, 46.3664396 ], + [ 9.876043899999999, 46.3661309 ], + [ 9.8748028, 46.3655125 ], + [ 9.874210399999999, 46.3657083 ], + [ 9.8735187, 46.3660484 ], + [ 9.8726313, 46.3664285 ], + [ 9.8716784, 46.3668332 ], + [ 9.8709254, 46.3672555 ], + [ 9.87016, 46.367747 ], + [ 9.86931, 46.3682178 ], + [ 9.8683432, 46.3686573 ], + [ 9.8676631, 46.3692037 ], + [ 9.8669144, 46.3697062 ], + [ 9.8660015, 46.3702246 ], + [ 9.8647321, 46.3708788 ], + [ 9.8635412, 46.3714507 ], + [ 9.8621818, 46.3722566 ], + [ 9.861031, 46.3729651 ], + [ 9.8599452, 46.3736373 ], + [ 9.8590262, 46.3743509 ], + [ 9.8581941, 46.3748441 ], + [ 9.8574971, 46.3753795 ], + [ 9.8560818, 46.3760836 ], + [ 9.8544598, 46.3772178 ], + [ 9.8533655, 46.378051 ], + [ 9.8524106, 46.3787081 ], + [ 9.8514021, 46.3792977 ], + [ 9.8507468, 46.3796943 ], + [ 9.8500345, 46.380253 ], + [ 9.8495341, 46.3807716 ], + [ 9.8490332, 46.3809687 ], + [ 9.8478403, 46.3818159 ], + [ 9.8467389, 46.3825114 ], + [ 9.846068, 46.3829427 ], + [ 9.845426, 46.3835683 ], + [ 9.8453264, 46.3847303 ], + [ 9.8452345, 46.3857199 ], + [ 9.8453877, 46.3869554 ], + [ 9.8456657, 46.3877628 ], + [ 9.8458617, 46.3888824 ], + [ 9.8459749, 46.3902796 ], + [ 9.8461911, 46.3914879 ], + [ 9.8460723, 46.3920708 ], + [ 9.8461353, 46.39219 ], + [ 9.8462437, 46.3924172 ], + [ 9.8463552, 46.3927132 ], + [ 9.8464324, 46.3930041 ], + [ 9.8465177, 46.3932603 ], + [ 9.8466379, 46.3935676 ], + [ 9.8467097, 46.3939215 ], + [ 9.847189, 46.3947021 ], + [ 9.8473081, 46.395076 ], + [ 9.8474265, 46.3956927 ], + [ 9.847999, 46.3970316 ], + [ 9.8485186, 46.3980047 ], + [ 9.8488775, 46.3990739 ], + [ 9.8492501, 46.3998099 ], + [ 9.8494971, 46.4003542 ], + [ 9.8533283, 46.4056884 ], + [ 9.8533489, 46.4065355 ], + [ 9.8532597, 46.4073446 ], + [ 9.8533959, 46.4075898 ], + [ 9.8533962, 46.40778 ], + [ 9.8533558, 46.4080057 ], + [ 9.8536135, 46.4081675 ], + [ 9.8538459, 46.4083833 ], + [ 9.8540019, 46.4085078 ], + [ 9.8539013, 46.4087138 ], + [ 9.8536308, 46.4091235 ], + [ 9.8534568, 46.4096348 ], + [ 9.8533716, 46.4099325 ], + [ 9.8534341, 46.410167 ], + [ 9.853466300000001, 46.4103783 ], + [ 9.8533926, 46.4105317 ], + [ 9.853336, 46.4106849 ], + [ 9.853417, 46.4108231 ], + [ 9.8536007, 46.4109311 ], + [ 9.8538474, 46.4110098 ], + [ 9.854089, 46.4111206 ], + [ 9.8543511, 46.4112909 ], + [ 9.8544904, 46.4114239 ], + [ 9.8546013, 46.4115775 ], + [ 9.8547299, 46.4118705 ], + [ 9.8547487, 46.4120381 ], + [ 9.8547088, 46.4124387 ], + [ 9.8546687, 46.4125796 ], + [ 9.854684, 46.4126671 ], + [ 9.8548194, 46.4127122 ], + [ 9.8550439, 46.4128234 ], + [ 9.8552399, 46.4129512 ], + [ 9.8553623, 46.4132323 ], + [ 9.8554344, 46.4135547 ], + [ 9.8555505, 46.413824 ], + [ 9.8557366, 46.413968 ], + [ 9.8559173, 46.4140081 ], + [ 9.8561433, 46.4140233 ], + [ 9.8563239, 46.4140435 ], + [ 9.8565075, 46.4141107 ], + [ 9.8565314, 46.4146481 ], + [ 9.8565222, 46.4150248 ], + [ 9.8566733, 46.4154102 ], + [ 9.8573615, 46.4157696 ], + [ 9.8580013, 46.4162203 ], + [ 9.8592191, 46.4168909 ], + [ 9.8601927, 46.4172987 ], + [ 9.8608616, 46.4178202 ], + [ 9.8612459, 46.4183299 ], + [ 9.8614456, 46.4187543 ], + [ 9.8616251, 46.4193041 ], + [ 9.8617177, 46.4196414 ], + [ 9.8619007, 46.4202519 ], + [ 9.8623431, 46.4208699 ], + [ 9.8625961, 46.4217776 ], + [ 9.8627752, 46.4224202 ], + [ 9.8636217, 46.4239617 ], + [ 9.8640461, 46.424993 ], + [ 9.864208099999999, 46.4254317 ], + [ 9.8639529, 46.4261274 ], + [ 9.8639057, 46.4262838 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "JBG0005", + "country" : "CHE", + "name" : [ + { + "text" : "Eidgenössisches Jagdbanngebiet Bernina-Albris", + "lang" : "de-CH" + }, + { + "text" : "District franc fédéral Bernina-Albris", + "lang" : "fr-CH" + }, + { + "text" : "Bandita federale di caccia Bernina-Albris", + "lang" : "it-CH" + }, + { + "text" : "Federal Game Reserve Bernina-Albris", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.6886446, 47.1870313 ], + [ 8.6886359, 47.1868901 ], + [ 8.6886163, 47.1867495 ], + [ 8.688586, 47.1866097 ], + [ 8.688545, 47.1864712 ], + [ 8.6884934, 47.1863344 ], + [ 8.6884314, 47.1861996 ], + [ 8.6883591, 47.1860672 ], + [ 8.6882768, 47.1859376 ], + [ 8.6881846, 47.1858111 ], + [ 8.6880829, 47.185688 ], + [ 8.6879718, 47.1855687 ], + [ 8.6878517, 47.1854536 ], + [ 8.687723, 47.1853429 ], + [ 8.6875859, 47.1852369 ], + [ 8.6874409, 47.185136 ], + [ 8.6872883, 47.1850404 ], + [ 8.6871286, 47.1849504 ], + [ 8.6869622, 47.1848662 ], + [ 8.686789600000001, 47.184788 ], + [ 8.6866112, 47.1847161 ], + [ 8.6864276, 47.1846507 ], + [ 8.6862391, 47.1845919 ], + [ 8.6860464, 47.18454 ], + [ 8.68585, 47.1844949 ], + [ 8.6856504, 47.1844569 ], + [ 8.6854482, 47.1844262 ], + [ 8.6852439, 47.1844026 ], + [ 8.685038, 47.1843864 ], + [ 8.6848312, 47.1843776 ], + [ 8.684624, 47.1843761 ], + [ 8.684417, 47.184382 ], + [ 8.6842107, 47.1843954 ], + [ 8.6840057, 47.184416 ], + [ 8.6838026, 47.184444 ], + [ 8.6836019, 47.1844791 ], + [ 8.6834041, 47.1845214 ], + [ 8.6832099, 47.1845707 ], + [ 8.6830198, 47.1846268 ], + [ 8.6828342, 47.1846896 ], + [ 8.6826536, 47.184759 ], + [ 8.6824787, 47.1848347 ], + [ 8.6823098, 47.1849166 ], + [ 8.6821474, 47.1850043 ], + [ 8.681992, 47.1850978 ], + [ 8.681844, 47.1851966 ], + [ 8.6817037, 47.1853006 ], + [ 8.6815717, 47.1854095 ], + [ 8.6814481, 47.1855229 ], + [ 8.6813335, 47.1856406 ], + [ 8.681228, 47.1857622 ], + [ 8.681132, 47.1858874 ], + [ 8.6810458, 47.1860159 ], + [ 8.6809695, 47.1861472 ], + [ 8.6809035, 47.1862811 ], + [ 8.6808478, 47.1864172 ], + [ 8.6808026, 47.1865551 ], + [ 8.680768, 47.1866944 ], + [ 8.6807443, 47.1868347 ], + [ 8.6807313, 47.1869757 ], + [ 8.6807291, 47.187117 ], + [ 8.6807378, 47.1872581 ], + [ 8.6807574, 47.1873988 ], + [ 8.6807876, 47.1875385 ], + [ 8.6808286, 47.187677 ], + [ 8.6808802, 47.1878138 ], + [ 8.6809422, 47.1879486 ], + [ 8.6810145, 47.188081 ], + [ 8.6810968, 47.1882107 ], + [ 8.6811889, 47.1883372 ], + [ 8.6812907, 47.1884603 ], + [ 8.6814018, 47.1885796 ], + [ 8.6815218, 47.1886947 ], + [ 8.6816506, 47.1888054 ], + [ 8.6817877, 47.1889114 ], + [ 8.6819327, 47.1890123 ], + [ 8.6820852, 47.1891079 ], + [ 8.6822449, 47.1891979 ], + [ 8.6824113, 47.1892821 ], + [ 8.682583900000001, 47.1893603 ], + [ 8.6827623, 47.1894322 ], + [ 8.682946, 47.1894976 ], + [ 8.6831345, 47.1895564 ], + [ 8.6833272, 47.1896084 ], + [ 8.683523600000001, 47.1896534 ], + [ 8.6837232, 47.1896914 ], + [ 8.6839254, 47.1897222 ], + [ 8.684129800000001, 47.1897457 ], + [ 8.6843357, 47.189762 ], + [ 8.6845425, 47.1897708 ], + [ 8.6847497, 47.1897723 ], + [ 8.6849568, 47.1897663 ], + [ 8.6851631, 47.189753 ], + [ 8.6853681, 47.1897323 ], + [ 8.6855713, 47.1897044 ], + [ 8.685772, 47.1896692 ], + [ 8.6859697, 47.189627 ], + [ 8.6861639, 47.1895777 ], + [ 8.686354099999999, 47.1895216 ], + [ 8.6865397, 47.1894587 ], + [ 8.6867203, 47.1893893 ], + [ 8.6868952, 47.1893136 ], + [ 8.6870641, 47.1892318 ], + [ 8.6872265, 47.189144 ], + [ 8.6873819, 47.1890505 ], + [ 8.68753, 47.1889517 ], + [ 8.6876702, 47.1888477 ], + [ 8.6878023, 47.1887388 ], + [ 8.6879258, 47.1886254 ], + [ 8.6880404, 47.1885077 ], + [ 8.6881459, 47.1883861 ], + [ 8.6882418, 47.1882609 ], + [ 8.6883281, 47.1881324 ], + [ 8.6884043, 47.188001 ], + [ 8.6884704, 47.1878671 ], + [ 8.6885261, 47.187731 ], + [ 8.6885712, 47.1875932 ], + [ 8.6886057, 47.1874539 ], + [ 8.6886295, 47.1873135 ], + [ 8.6886425, 47.1871725 ], + [ 8.6886446, 47.1870313 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0104", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Samstagern", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Samstagern", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Samstagern", + "lang" : "it-CH" + }, + { + "text" : "Substation Samstagern", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6531291, 47.4035893 ], + [ 7.6530435, 47.4035789 ], + [ 7.652972, 47.4035032 ], + [ 7.6528108, 47.4035636 ], + [ 7.6527005, 47.4037777 ], + [ 7.652249, 47.40381 ], + [ 7.6518739, 47.4038012 ], + [ 7.6514929, 47.4040771 ], + [ 7.6511671, 47.4041761 ], + [ 7.6509689, 47.4041721 ], + [ 7.6503688, 47.4040394 ], + [ 7.6499756, 47.404001 ], + [ 7.6497229, 47.4040555 ], + [ 7.6494768, 47.4040948 ], + [ 7.6492231, 47.4044388 ], + [ 7.6483872999999996, 47.404002 ], + [ 7.6481796, 47.4042028 ], + [ 7.6479297, 47.4044281 ], + [ 7.6481249, 47.4045355 ], + [ 7.6482995, 47.4045958 ], + [ 7.6484901, 47.4046487 ], + [ 7.6486595, 47.4046438 ], + [ 7.6486411, 47.4047384 ], + [ 7.6486908, 47.4047794 ], + [ 7.6487693, 47.4048655 ], + [ 7.6488618, 47.4049361 ], + [ 7.6489923, 47.4050748 ], + [ 7.6492309, 47.4052326 ], + [ 7.6493915999999995, 47.4053321 ], + [ 7.6494629, 47.4053836 ], + [ 7.6496619, 47.4055505 ], + [ 7.6497596, 47.4055817 ], + [ 7.6498855, 47.4056344 ], + [ 7.6500508, 47.4056935 ], + [ 7.6501955, 47.4058312 ], + [ 7.650298, 47.4059344 ], + [ 7.65036, 47.4059946 ], + [ 7.6503625, 47.4059969 ], + [ 7.6503647, 47.4059993 ], + [ 7.6503666, 47.4060018 ], + [ 7.6503681, 47.4060045 ], + [ 7.6503692999999995, 47.4060072 ], + [ 7.6503701, 47.40601 ], + [ 7.6503705, 47.4060129 ], + [ 7.6503706000000005, 47.4060157 ], + [ 7.6503703, 47.4060185 ], + [ 7.6503696, 47.4060213 ], + [ 7.6503685, 47.4060241 ], + [ 7.6503671, 47.4060268 ], + [ 7.6503654, 47.4060294 ], + [ 7.6503633, 47.4060318 ], + [ 7.6503609, 47.4060342 ], + [ 7.6503582, 47.4060364 ], + [ 7.6503553, 47.4060384 ], + [ 7.650352, 47.4060402 ], + [ 7.6503486, 47.4060418 ], + [ 7.6503449, 47.4060432 ], + [ 7.6503411, 47.4060444 ], + [ 7.6502494, 47.4060826 ], + [ 7.6501703, 47.4061158 ], + [ 7.6501853, 47.4061822 ], + [ 7.6500364, 47.4061946 ], + [ 7.6497344, 47.406219899999996 ], + [ 7.649668, 47.4062246 ], + [ 7.6494805, 47.4062418 ], + [ 7.6493991999999995, 47.406251 ], + [ 7.6492532, 47.4062772 ], + [ 7.6494451, 47.4065237 ], + [ 7.6495217, 47.4065957 ], + [ 7.6496554, 47.4068186 ], + [ 7.6496732, 47.406857 ], + [ 7.6496394, 47.4069659 ], + [ 7.649646, 47.4070254 ], + [ 7.6496954, 47.4070833 ], + [ 7.6497212999999995, 47.4071312 ], + [ 7.6498837, 47.4071236 ], + [ 7.6499609, 47.4071902 ], + [ 7.6502896, 47.4076047 ], + [ 7.6503456, 47.4076931 ], + [ 7.6503905, 47.4077104 ], + [ 7.6504417, 47.4076871 ], + [ 7.6504908, 47.4076623 ], + [ 7.6505697, 47.4076114 ], + [ 7.6506123, 47.4075838 ], + [ 7.6507019, 47.407527 ], + [ 7.6507295, 47.407446 ], + [ 7.6507985, 47.4072668 ], + [ 7.6507944, 47.407135 ], + [ 7.6507489, 47.4069827 ], + [ 7.6507681, 47.4069725 ], + [ 7.6512108, 47.4069329 ], + [ 7.6513542999999995, 47.40692 ], + [ 7.6513729, 47.4069094 ], + [ 7.6513928, 47.4068998 ], + [ 7.6514139, 47.4068915 ], + [ 7.651436, 47.4068845 ], + [ 7.6514589, 47.4068789 ], + [ 7.6514824, 47.4068746 ], + [ 7.6518334, 47.4068149 ], + [ 7.6520212, 47.4067901 ], + [ 7.6522114, 47.4067758 ], + [ 7.6524027, 47.406772 ], + [ 7.6526128, 47.4067724 ], + [ 7.6528218, 47.4067869 ], + [ 7.6530337, 47.4068161 ], + [ 7.6531129, 47.4068291 ], + [ 7.6531791, 47.4068443 ], + [ 7.6534746, 47.4069095 ], + [ 7.654004, 47.4069951 ], + [ 7.6544432, 47.4070646 ], + [ 7.6544608, 47.4070669 ], + [ 7.6544787, 47.4070683 ], + [ 7.6544966, 47.4070688 ], + [ 7.6545103999999995, 47.4070679 ], + [ 7.654524, 47.4070662 ], + [ 7.6545373, 47.4070636 ], + [ 7.6545503, 47.4070603 ], + [ 7.6545627, 47.4070562 ], + [ 7.6545746, 47.4070513 ], + [ 7.6545857, 47.4070458 ], + [ 7.6545961, 47.4070396 ], + [ 7.6546016, 47.4070339 ], + [ 7.6546063, 47.407028 ], + [ 7.6546102, 47.4070217 ], + [ 7.6546133, 47.4070153 ], + [ 7.6546155, 47.4070087 ], + [ 7.6546168, 47.407002 ], + [ 7.6546173, 47.4069952 ], + [ 7.6546168, 47.4069884 ], + [ 7.6546155, 47.4069817 ], + [ 7.6546133, 47.4069751 ], + [ 7.6546102, 47.4069687 ], + [ 7.6546091, 47.406966 ], + [ 7.6542282, 47.4061866 ], + [ 7.6542200000000005, 47.40617 ], + [ 7.6542143, 47.4061589 ], + [ 7.6542017, 47.4061338 ], + [ 7.6541121, 47.4059428 ], + [ 7.6540867, 47.4059 ], + [ 7.6540565, 47.4058588 ], + [ 7.6540213999999995, 47.4058193 ], + [ 7.6539819, 47.4057818 ], + [ 7.6539143, 47.4057215 ], + [ 7.6538927, 47.4057042 ], + [ 7.6538734999999996, 47.4056856 ], + [ 7.6538566, 47.405666 ], + [ 7.6538423, 47.4056455 ], + [ 7.6538307, 47.4056243 ], + [ 7.6538218, 47.4056024 ], + [ 7.6538157, 47.4055801 ], + [ 7.6538138, 47.4055452 ], + [ 7.6538144, 47.4055051 ], + [ 7.653828, 47.4054284 ], + [ 7.653839, 47.4053524 ], + [ 7.6538381, 47.405301 ], + [ 7.6538322, 47.4052497 ], + [ 7.6538214, 47.4051987 ], + [ 7.6537468, 47.4048825 ], + [ 7.6536481, 47.4044411 ], + [ 7.653595, 47.404173 ], + [ 7.6535606, 47.403997 ], + [ 7.6535546, 47.403968 ], + [ 7.6535382, 47.4039107 ], + [ 7.6535257, 47.4038704 ], + [ 7.6535105, 47.4038305 ], + [ 7.6534927, 47.4037912 ], + [ 7.6534786, 47.4037698 ], + [ 7.6534619, 47.4037493 ], + [ 7.6534428, 47.4037298 ], + [ 7.6534214, 47.4037114 ], + [ 7.6533978, 47.4036943 ], + [ 7.6533722, 47.4036785 ], + [ 7.6533082, 47.4036465 ], + [ 7.6532742, 47.4036344 ], + [ 7.6532396, 47.4036232 ], + [ 7.6532044, 47.4036128 ], + [ 7.6531291, 47.4035893 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns172", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Eichen", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Eichen", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Eichen", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Eichen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6713778999999995, 47.4889585 ], + [ 7.6715461, 47.4894296 ], + [ 7.6715358, 47.4894508 ], + [ 7.6716309, 47.4898375 ], + [ 7.6716632, 47.4900978 ], + [ 7.6716637, 47.4902034 ], + [ 7.6719127, 47.4901677 ], + [ 7.6722445, 47.4900896 ], + [ 7.6725347, 47.4899764 ], + [ 7.6728148, 47.4899337 ], + [ 7.673178, 47.4899259 ], + [ 7.6734787, 47.4898338 ], + [ 7.6734263, 47.4897143 ], + [ 7.6734566, 47.4895243 ], + [ 7.6734965, 47.4891794 ], + [ 7.6734541, 47.4889614 ], + [ 7.6733278, 47.4885887 ], + [ 7.6730979999999995, 47.4882585 ], + [ 7.6726087, 47.4879218 ], + [ 7.6719391, 47.4876327 ], + [ 7.6712353, 47.4871928 ], + [ 7.6710685, 47.4870454 ], + [ 7.670922, 47.4867642 ], + [ 7.6707128, 47.4864058 ], + [ 7.6706395, 47.4862652 ], + [ 7.6700566, 47.4858864 ], + [ 7.6696444, 47.4856178 ], + [ 7.6692141, 47.4858584 ], + [ 7.6686111, 47.4861956 ], + [ 7.6690942, 47.4865638 ], + [ 7.6692515, 47.4869294 ], + [ 7.6695641, 47.4872102 ], + [ 7.6700330999999995, 47.4876385 ], + [ 7.6703244, 47.4877997 ], + [ 7.6707093, 47.4879748 ], + [ 7.6709495, 47.4883121 ], + [ 7.6710126, 47.4885019 ], + [ 7.6711797, 47.4887338 ], + [ 7.6713778999999995, 47.4889585 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr040", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Under de Flüe", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Under de Flüe", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Under de Flüe", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Under de Flüe", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.1239623, 46.2106525 ], + [ 6.1239604, 46.2105113 ], + [ 6.1239478, 46.2103702 ], + [ 6.1239247, 46.2102299 ], + [ 6.1238909, 46.2100906 ], + [ 6.1238468, 46.2099527 ], + [ 6.1237922, 46.2098165 ], + [ 6.1237275, 46.2096826 ], + [ 6.1236528, 46.2095512 ], + [ 6.1235683, 46.2094226 ], + [ 6.1234742, 46.2092974 ], + [ 6.1233708, 46.2091757 ], + [ 6.1232584, 46.2090579 ], + [ 6.1231372, 46.2089444 ], + [ 6.1230076, 46.2088354 ], + [ 6.12287, 46.2087313 ], + [ 6.1227248, 46.2086324 ], + [ 6.1225723, 46.2085388 ], + [ 6.1224129, 46.208451 ], + [ 6.1222471, 46.208369 ], + [ 6.1220754, 46.2082932 ], + [ 6.1218982, 46.2082237 ], + [ 6.121716, 46.2081607 ], + [ 6.1215293, 46.2081045 ], + [ 6.1213387, 46.2080551 ], + [ 6.1211445, 46.2080127 ], + [ 6.1209475, 46.2079775 ], + [ 6.120748, 46.2079494 ], + [ 6.1205467, 46.2079286 ], + [ 6.1203441, 46.2079151 ], + [ 6.1201408, 46.207909 ], + [ 6.1199372, 46.2079104 ], + [ 6.1197341, 46.2079191 ], + [ 6.1195319, 46.2079351 ], + [ 6.1193312, 46.2079585 ], + [ 6.1191325, 46.2079892 ], + [ 6.1189364, 46.2080271 ], + [ 6.1187435, 46.208072 ], + [ 6.1185542, 46.2081238 ], + [ 6.118369, 46.2081825 ], + [ 6.1181885, 46.2082478 ], + [ 6.1180132, 46.2083196 ], + [ 6.1178436, 46.2083977 ], + [ 6.11768, 46.2084818 ], + [ 6.1175231, 46.2085717 ], + [ 6.1173731, 46.2086673 ], + [ 6.1172305, 46.2087681 ], + [ 6.1170957, 46.208874 ], + [ 6.1169691, 46.2089846 ], + [ 6.116851, 46.2090997 ], + [ 6.1167417, 46.2092189 ], + [ 6.1166416, 46.209342 ], + [ 6.1165509, 46.2094684 ], + [ 6.1164699, 46.209598 ], + [ 6.1163987, 46.2097304 ], + [ 6.1163376, 46.2098651 ], + [ 6.1162868, 46.2100019 ], + [ 6.1162463, 46.2101404 ], + [ 6.1162163, 46.2102801 ], + [ 6.116197, 46.2104207 ], + [ 6.1161882, 46.2105619 ], + [ 6.1161901, 46.2107032 ], + [ 6.1162026, 46.2108442 ], + [ 6.1162258, 46.2109845 ], + [ 6.1162595, 46.2111239 ], + [ 6.1163037, 46.2112618 ], + [ 6.1163582, 46.2113979 ], + [ 6.1164229, 46.2115319 ], + [ 6.1164976, 46.2116633 ], + [ 6.1165821, 46.2117919 ], + [ 6.1166761, 46.2119171 ], + [ 6.1167795, 46.2120389 ], + [ 6.116892, 46.2121566 ], + [ 6.1170132, 46.2122701 ], + [ 6.1171427, 46.212379 ], + [ 6.1172803, 46.2124831 ], + [ 6.1174256, 46.2125821 ], + [ 6.1175781, 46.2126756 ], + [ 6.1177375, 46.2127635 ], + [ 6.1179033, 46.2128454 ], + [ 6.118075, 46.2129213 ], + [ 6.1182522, 46.2129907 ], + [ 6.1184344, 46.2130537 ], + [ 6.1186211, 46.2131099 ], + [ 6.1188118, 46.2131593 ], + [ 6.119006, 46.2132017 ], + [ 6.1192031, 46.213237 ], + [ 6.1194026, 46.213265 ], + [ 6.1196039, 46.2132858 ], + [ 6.1198065, 46.2132992 ], + [ 6.1200099, 46.2133053 ], + [ 6.1202134, 46.213304 ], + [ 6.1204166, 46.2132952 ], + [ 6.1206188, 46.2132791 ], + [ 6.1208195, 46.2132557 ], + [ 6.1210182, 46.2132251 ], + [ 6.1212143, 46.2131872 ], + [ 6.1214072999999996, 46.2131423 ], + [ 6.1215966, 46.2130904 ], + [ 6.1217818, 46.2130317 ], + [ 6.1219623, 46.2129664 ], + [ 6.1221376, 46.2128946 ], + [ 6.1223072, 46.2128166 ], + [ 6.1224708, 46.2127325 ], + [ 6.1226277, 46.2126425 ], + [ 6.1227777, 46.212547 ], + [ 6.1229203, 46.2124462 ], + [ 6.123055, 46.2123403 ], + [ 6.1231816, 46.2122297 ], + [ 6.1232997, 46.2121146 ], + [ 6.123409, 46.2119954 ], + [ 6.1235091, 46.2118724 ], + [ 6.1235998, 46.2117459 ], + [ 6.1236808, 46.2116164 ], + [ 6.1237519, 46.211484 ], + [ 6.123813, 46.2113492 ], + [ 6.1238638, 46.2112124 ], + [ 6.1239043, 46.211073999999996 ], + [ 6.1239342, 46.2109343 ], + [ 6.1239536, 46.2107936 ], + [ 6.1239623, 46.2106525 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE30", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5513712, 47.5060603 ], + [ 7.5514028, 47.5060161 ], + [ 7.5513627, 47.5060146 ], + [ 7.5507789, 47.5059947 ], + [ 7.5509146, 47.5060715 ], + [ 7.5510497, 47.5061709 ], + [ 7.5511317, 47.5062636 ], + [ 7.5513006, 47.506283 ], + [ 7.5513814, 47.5061513 ], + [ 7.5513712, 47.5060603 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns192", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Birsig", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Birsig", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Birsig", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Birsig", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.8892172, 46.4773631 ], + [ 9.8890216, 46.4750122 ], + [ 9.8886482, 46.4726716 ], + [ 9.8880981, 46.4703477 ], + [ 9.8873727, 46.4680469 ], + [ 9.8864741, 46.4657754 ], + [ 9.8854048, 46.4635395 ], + [ 9.8841677, 46.4613454 ], + [ 9.8827662, 46.459199 ], + [ 9.8812043, 46.4571062 ], + [ 9.8794861, 46.4550728 ], + [ 9.8776164, 46.4531042 ], + [ 9.8756003, 46.4512059 ], + [ 9.8734434, 46.4493832 ], + [ 9.8711516, 46.4476409 ], + [ 9.8687312, 46.4459838 ], + [ 9.8661887, 46.4444166 ], + [ 9.8635313, 46.4429434 ], + [ 9.860766, 46.4415682 ], + [ 9.8579006, 46.440295 ], + [ 9.8549429, 46.4391271 ], + [ 9.8519009, 46.4380677 ], + [ 9.848783, 46.4371198 ], + [ 9.8455978, 46.4362858 ], + [ 9.8423538, 46.4355682 ], + [ 9.83906, 46.4349689 ], + [ 9.8357255, 46.4344894 ], + [ 9.8323593, 46.4341312 ], + [ 9.8289706, 46.4338951 ], + [ 9.8255687, 46.4337819 ], + [ 9.8221629, 46.4337919 ], + [ 9.8187625, 46.433925 ], + [ 9.8153768, 46.4341808 ], + [ 9.8120151, 46.4345587 ], + [ 9.8086865, 46.4350576 ], + [ 9.8054002, 46.4356762 ], + [ 9.8021651, 46.4364128 ], + [ 9.7989901, 46.4372653 ], + [ 9.7958839, 46.4382314 ], + [ 9.792855, 46.4393086 ], + [ 9.7899116, 46.4404937 ], + [ 9.7870619, 46.4417837 ], + [ 9.7843136, 46.4431749 ], + [ 9.7816742, 46.4446636 ], + [ 9.7791511, 46.4462457 ], + [ 9.776751, 46.4479168 ], + [ 9.7744806, 46.4496725 ], + [ 9.772346, 46.4515078 ], + [ 9.7703533, 46.4534177 ], + [ 9.7685077, 46.4553972 ], + [ 9.7668145, 46.4574406 ], + [ 9.7652781, 46.4595424 ], + [ 9.763902999999999, 46.461697 ], + [ 9.7626928, 46.4638982 ], + [ 9.7616509, 46.4661403 ], + [ 9.7607802, 46.4684169 ], + [ 9.760083, 46.4707219 ], + [ 9.7595613, 46.4730489 ], + [ 9.7592166, 46.4753916 ], + [ 9.7590498, 46.4777436 ], + [ 9.7590614, 46.4800984 ], + [ 9.7592513, 46.4824495 ], + [ 9.7596192, 46.4847905 ], + [ 9.760164, 46.487115 ], + [ 9.7608842, 46.4894167 ], + [ 9.7617779, 46.4916891 ], + [ 9.7628427, 46.4939261 ], + [ 9.7640756, 46.4961216 ], + [ 9.7654733, 46.4982694 ], + [ 9.767032, 46.5003638 ], + [ 9.7687474, 46.502399 ], + [ 9.7706149, 46.5043693 ], + [ 9.7726292, 46.5062694 ], + [ 9.774785, 46.5080941 ], + [ 9.7770763, 46.5098383 ], + [ 9.7794967, 46.5114973 ], + [ 9.7820398, 46.5130666 ], + [ 9.7846985, 46.5145417 ], + [ 9.7874655, 46.5159186 ], + [ 9.7903333, 46.5171937 ], + [ 9.7932939, 46.5183633 ], + [ 9.7963392, 46.5194242 ], + [ 9.7994609, 46.5203736 ], + [ 9.8026504, 46.5212088 ], + [ 9.805899, 46.5219276 ], + [ 9.8091977, 46.5225279 ], + [ 9.8125374, 46.5230081 ], + [ 9.815909, 46.5233669 ], + [ 9.8193033, 46.5236033 ], + [ 9.8227108, 46.5237167 ], + [ 9.8261223, 46.5237068 ], + [ 9.8295283, 46.5235735 ], + [ 9.8329195, 46.5233172 ], + [ 9.8362866, 46.5229387 ], + [ 9.8396203, 46.5224389 ], + [ 9.8429115, 46.5218194 ], + [ 9.8461511, 46.5210817 ], + [ 9.8493303, 46.5202278 ], + [ 9.8524402, 46.5192602 ], + [ 9.8554724, 46.5181815 ], + [ 9.8584186, 46.5169946 ], + [ 9.8612706, 46.5157029 ], + [ 9.8640206, 46.5143098 ], + [ 9.8666611, 46.5128192 ], + [ 9.8691848, 46.5112352 ], + [ 9.8715848, 46.5095621 ], + [ 9.8738546, 46.5078045 ], + [ 9.8759879, 46.5059673 ], + [ 9.8779789, 46.5040555 ], + [ 9.8798221, 46.5020743 ], + [ 9.8815125, 46.5000292 ], + [ 9.8830454, 46.4979258 ], + [ 9.8844168, 46.4957698 ], + [ 9.8856227, 46.4935673 ], + [ 9.886660000000001, 46.4913241 ], + [ 9.8875259, 46.4890465 ], + [ 9.8882178, 46.4867407 ], + [ 9.8887341, 46.4844131 ], + [ 9.8890733, 46.48207 ], + [ 9.8892345, 46.4797179 ], + [ 9.8892172, 46.4773631 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSXM001", + "country" : "CHE", + "name" : [ + { + "text" : "LSXM Winter-Heliport St. Moritz", + "lang" : "de-CH" + }, + { + "text" : "LSXM Winter-Heliport St. Moritz", + "lang" : "fr-CH" + }, + { + "text" : "LSXM Winter-Heliport St. Moritz", + "lang" : "it-CH" + }, + { + "text" : "LSXM Winter-Heliport St. Moritz", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "startDateTime" : "2024-12-15T00:00:00+01:00", + "endDateTime" : "2025-05-15T00:00:00+02:00" + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Engadin Airport", + "lang" : "de-CH" + }, + { + "text" : "Engadin Airport", + "lang" : "fr-CH" + }, + { + "text" : "Engadin Airport", + "lang" : "it-CH" + }, + { + "text" : "Engadin Airport", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "GL Safety Officer", + "lang" : "de-CH" + }, + { + "text" : "GL Safety Officer", + "lang" : "fr-CH" + }, + { + "text" : "GL Safety Officer", + "lang" : "it-CH" + }, + { + "text" : "GL Safety Officer", + "lang" : "en-GB" + } + ], + "siteURL" : "https://engadin-airport.ch/Drohnen.498.0.html", + "email" : "info@engadin-airport.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.0244637, 46.3759081 ], + [ 7.0261983, 46.3752865 ], + [ 7.0276709, 46.374932 ], + [ 7.0284072, 46.374681 ], + [ 7.0284124, 46.3739938 ], + [ 7.0281366, 46.373337 ], + [ 7.0273413, 46.3728123 ], + [ 7.0263692, 46.3726451 ], + [ 7.0258045, 46.3730766 ], + [ 7.0246078, 46.3740582 ], + [ 7.0240632, 46.3747434 ], + [ 7.0238157, 46.3749818 ], + [ 7.0237464, 46.3752101 ], + [ 7.0237521, 46.3754737 ], + [ 7.0239069, 46.3757963 ], + [ 7.0241452, 46.3759105 ], + [ 7.0244637, 46.3759081 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00021", + "country" : "CHE", + "name" : [ + { + "text" : "Tour de Famelon", + "lang" : "de-CH" + }, + { + "text" : "Tour de Famelon", + "lang" : "fr-CH" + }, + { + "text" : "Tour de Famelon", + "lang" : "it-CH" + }, + { + "text" : "Tour de Famelon", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "startDateTime" : "2024-11-15T00:00:00+01:00", + "endDateTime" : "2025-04-15T00:00:00+02:00" + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Generaldirektion für Umwelt", + "lang" : "de-CH" + }, + { + "text" : "Direction générale de l'environnement", + "lang" : "fr-CH" + }, + { + "text" : "Direzione generale dell'Ambiente", + "lang" : "it-CH" + }, + { + "text" : "Environment Department", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.dge@vd.ch", + "phone" : "0041213164422", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8120929, 47.4310049 ], + [ 7.8122687, 47.431433 ], + [ 7.8126394999999995, 47.4319378 ], + [ 7.8124576, 47.4319775 ], + [ 7.8124873, 47.4320297 ], + [ 7.8125708, 47.432206 ], + [ 7.8126233, 47.4324449 ], + [ 7.8126955, 47.4325927 ], + [ 7.8128509, 47.432841 ], + [ 7.8129859, 47.4328491 ], + [ 7.8132816, 47.4330582 ], + [ 7.8135065, 47.4332869 ], + [ 7.8138532, 47.4338716 ], + [ 7.8139629, 47.4339326 ], + [ 7.8141026, 47.4339072 ], + [ 7.8146538, 47.4336185 ], + [ 7.814794, 47.4336776 ], + [ 7.8148368, 47.4337976 ], + [ 7.8148007, 47.4340146 ], + [ 7.8147701, 47.4340915 ], + [ 7.8148786999999995, 47.4340863 ], + [ 7.8149654, 47.4341697 ], + [ 7.8150214, 47.4342634 ], + [ 7.8150366, 47.4343649 ], + [ 7.8150118, 47.4353072 ], + [ 7.8150298, 47.4354238 ], + [ 7.8150863, 47.4355339 ], + [ 7.8151755, 47.4356338 ], + [ 7.8152975, 47.4357188 ], + [ 7.8158862, 47.4360491 ], + [ 7.8161241, 47.4361381 ], + [ 7.8163778, 47.4361247 ], + [ 7.8165929, 47.4361282 ], + [ 7.8168006, 47.4361548 ], + [ 7.8173022, 47.4362508 ], + [ 7.8175025, 47.4362596 ], + [ 7.8177759, 47.4362141 ], + [ 7.8182634, 47.436167 ], + [ 7.8182796, 47.4362052 ], + [ 7.8183059, 47.4363938 ], + [ 7.8185812, 47.4366132 ], + [ 7.8189151, 47.4365719 ], + [ 7.8190067, 47.436633 ], + [ 7.8193393, 47.4365511 ], + [ 7.8208065, 47.4361587 ], + [ 7.8210419, 47.4360826 ], + [ 7.8214368, 47.4358964 ], + [ 7.8224968, 47.4354492 ], + [ 7.822795, 47.4352912 ], + [ 7.8228329, 47.435334 ], + [ 7.8229074, 47.4354183 ], + [ 7.82311, 47.4356455 ], + [ 7.8231434, 47.4356791 ], + [ 7.8225191, 47.4359695 ], + [ 7.8232278, 47.436645 ], + [ 7.8232619, 47.4366372 ], + [ 7.8236039, 47.4365211 ], + [ 7.8238404, 47.4364775 ], + [ 7.8239371, 47.4364504 ], + [ 7.8240082, 47.4364029 ], + [ 7.8242273, 47.4361857 ], + [ 7.8243801, 47.4361121 ], + [ 7.8249311, 47.4359781 ], + [ 7.8244233, 47.4353335 ], + [ 7.824641, 47.4353054 ], + [ 7.8247898, 47.4352637 ], + [ 7.8248314, 47.4352062 ], + [ 7.825088, 47.4351282 ], + [ 7.8254765, 47.4349836 ], + [ 7.8256388999999995, 47.4349059 ], + [ 7.825711, 47.4348582 ], + [ 7.825835, 47.4347755 ], + [ 7.8260486, 47.4346581 ], + [ 7.826479, 47.4344718 ], + [ 7.8266725, 47.4343771 ], + [ 7.8266389, 47.4343488 ], + [ 7.8268973, 47.4339953 ], + [ 7.825857, 47.4335437 ], + [ 7.8259482, 47.4334595 ], + [ 7.8258997, 47.4334393 ], + [ 7.8257955, 47.4333777 ], + [ 7.8250839, 47.4329572 ], + [ 7.8248041, 47.4329595 ], + [ 7.8246473, 47.4329423 ], + [ 7.8245002, 47.432902 ], + [ 7.8239814, 47.4326824 ], + [ 7.8239555, 47.4326983 ], + [ 7.8239146, 47.4327216 ], + [ 7.8237290999999995, 47.4325875 ], + [ 7.8236756, 47.4325491 ], + [ 7.8228951, 47.4322582 ], + [ 7.8227341, 47.4322352 ], + [ 7.8224328, 47.4322303 ], + [ 7.822135, 47.4322123 ], + [ 7.8219902999999995, 47.4322293 ], + [ 7.821555, 47.4323473 ], + [ 7.8214405, 47.432356 ], + [ 7.8213412, 47.432404 ], + [ 7.8211816, 47.4325197 ], + [ 7.8211614, 47.4326192 ], + [ 7.8212082, 47.432718 ], + [ 7.8212499, 47.4330339 ], + [ 7.8213387999999995, 47.4330776 ], + [ 7.8214483999999995, 47.4330903 ], + [ 7.8218064, 47.4330046 ], + [ 7.8219519, 47.4329943 ], + [ 7.8223203, 47.4330578 ], + [ 7.8229124, 47.4331848 ], + [ 7.8235133, 47.433283 ], + [ 7.8240616, 47.433362 ], + [ 7.8242669, 47.4334113 ], + [ 7.8240221, 47.4335151 ], + [ 7.8237549, 47.4338967 ], + [ 7.8234514, 47.433867 ], + [ 7.8231046, 47.4337709 ], + [ 7.8227086, 47.4335717 ], + [ 7.8224968, 47.4340398 ], + [ 7.8225994, 47.4343506 ], + [ 7.8224709, 47.4346672 ], + [ 7.8223252, 47.4347789 ], + [ 7.8220258, 47.4348884 ], + [ 7.8217689, 47.4350471 ], + [ 7.8215719, 47.4351058 ], + [ 7.8213308999999995, 47.4350652 ], + [ 7.8212093, 47.4350713 ], + [ 7.8207661, 47.4347534 ], + [ 7.8200498, 47.4350993 ], + [ 7.8200149, 47.4351132 ], + [ 7.8199585, 47.4351076 ], + [ 7.8202355, 47.4347828 ], + [ 7.8199809, 47.4344745 ], + [ 7.8199268, 47.4343066 ], + [ 7.8198118999999995, 47.4342476 ], + [ 7.8195751, 47.4341057 ], + [ 7.8194973, 47.4340106 ], + [ 7.8194274, 47.4339843 ], + [ 7.8192346, 47.4341899 ], + [ 7.8193036, 47.4339772 ], + [ 7.8193073, 47.4338751 ], + [ 7.8192872, 47.4337749 ], + [ 7.819228, 47.4336826 ], + [ 7.8190086, 47.4333931 ], + [ 7.8188312, 47.4331186 ], + [ 7.8187577, 47.4330329 ], + [ 7.8186523, 47.4329786 ], + [ 7.8184975, 47.4329706 ], + [ 7.8185008, 47.4329348 ], + [ 7.8181685, 47.4327688 ], + [ 7.8177756, 47.4325718 ], + [ 7.8174765, 47.4324218 ], + [ 7.8177183, 47.4322131 ], + [ 7.8177924999999995, 47.4320973 ], + [ 7.8177696999999995, 47.4320354 ], + [ 7.8177534, 47.4319937 ], + [ 7.817526, 47.4320001 ], + [ 7.8169174, 47.4321425 ], + [ 7.8164926, 47.4315052 ], + [ 7.8159097, 47.4316104 ], + [ 7.8156854, 47.4316261 ], + [ 7.8154739, 47.4315713 ], + [ 7.8153586, 47.4314366 ], + [ 7.8152253, 47.4311975 ], + [ 7.8152931, 47.4311793 ], + [ 7.815242, 47.4311126 ], + [ 7.8153749, 47.4311572 ], + [ 7.8155221, 47.4311531 ], + [ 7.8162277, 47.4308447 ], + [ 7.816559, 47.4306517 ], + [ 7.8168825, 47.4304447 ], + [ 7.8169402, 47.4303713 ], + [ 7.8168725, 47.4301989 ], + [ 7.8169934, 47.4300824 ], + [ 7.8171821999999995, 47.4295866 ], + [ 7.8172277, 47.4293774 ], + [ 7.8172319, 47.4291646 ], + [ 7.8172188, 47.4289534 ], + [ 7.8171164, 47.4288007 ], + [ 7.8169633, 47.4285827 ], + [ 7.8173483, 47.4281625 ], + [ 7.8171446, 47.4281242 ], + [ 7.8169786, 47.428033 ], + [ 7.8166956, 47.4277881 ], + [ 7.8165122, 47.4277067 ], + [ 7.8165374, 47.4276514 ], + [ 7.8165785, 47.4275959 ], + [ 7.8169907, 47.4270571 ], + [ 7.8168966, 47.4269808 ], + [ 7.8167729999999995, 47.4268873 ], + [ 7.8163663, 47.4266293 ], + [ 7.8162579, 47.4265896 ], + [ 7.8161392, 47.4265856 ], + [ 7.8159558, 47.4266088 ], + [ 7.8157491, 47.4266796 ], + [ 7.8156537, 47.4266441 ], + [ 7.814255, 47.4259949 ], + [ 7.8138611000000004, 47.4263481 ], + [ 7.8137135, 47.4262986 ], + [ 7.81296, 47.4266767 ], + [ 7.8127404, 47.4269793 ], + [ 7.8127441, 47.4270638 ], + [ 7.8128236, 47.4271258 ], + [ 7.8127508, 47.4272483 ], + [ 7.8126301, 47.4274305 ], + [ 7.8123073, 47.4280936 ], + [ 7.8122922, 47.4283646 ], + [ 7.8130375, 47.4285807 ], + [ 7.8130759, 47.4285976 ], + [ 7.8126616, 47.4290481 ], + [ 7.812415, 47.4293619 ], + [ 7.8122522, 47.4296929 ], + [ 7.8123256, 47.4297316 ], + [ 7.8123375, 47.4297396 ], + [ 7.8123482, 47.4297482 ], + [ 7.8123577, 47.4297576 ], + [ 7.8123659, 47.4297674 ], + [ 7.8123727, 47.4297778 ], + [ 7.8123781, 47.4297885 ], + [ 7.8123821, 47.4297995 ], + [ 7.8123845, 47.4298107 ], + [ 7.8123854, 47.429822 ], + [ 7.8123794, 47.4298481 ], + [ 7.812371, 47.4298738 ], + [ 7.8123602, 47.4298991 ], + [ 7.8123003, 47.4301374 ], + [ 7.8122918, 47.4301855 ], + [ 7.8122879, 47.4302339 ], + [ 7.8122886, 47.4302824 ], + [ 7.8122909, 47.4303093 ], + [ 7.8122947, 47.4303361 ], + [ 7.8122999, 47.4303628 ], + [ 7.8123033, 47.4303717 ], + [ 7.8123517, 47.4305265 ], + [ 7.8126025, 47.4305526 ], + [ 7.8124941, 47.4307392 ], + [ 7.8123985, 47.4307901 ], + [ 7.8122647, 47.4308507 ], + [ 7.8121066, 47.4308739 ], + [ 7.8120929, 47.4310049 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns215", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Tenniker Fluh - Sangeten", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Tenniker Fluh - Sangeten", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Tenniker Fluh - Sangeten", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Tenniker Fluh - Sangeten", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8069220999999995, 47.4113035 ], + [ 7.8070309, 47.4112202 ], + [ 7.8069201, 47.4110885 ], + [ 7.8069775, 47.4109335 ], + [ 7.8069723, 47.4108145 ], + [ 7.8069668, 47.4106904 ], + [ 7.8069023, 47.4105515 ], + [ 7.8067581, 47.4103433 ], + [ 7.8063666, 47.4104683 ], + [ 7.8065454, 47.4105835 ], + [ 7.8066309, 47.4106604 ], + [ 7.8066106, 47.4107811 ], + [ 7.8066373, 47.4108175 ], + [ 7.8066792, 47.4110035 ], + [ 7.806696, 47.4110675 ], + [ 7.8067533000000005, 47.4111091 ], + [ 7.8067754, 47.4111522 ], + [ 7.8067974, 47.4111949 ], + [ 7.8069220999999995, 47.4113035 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr125", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Holten", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Holten", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Holten", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Holten", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4062499, 47.4000623 ], + [ 7.406267, 47.4000585 ], + [ 7.4065408, 47.3999944 ], + [ 7.4067358, 47.3999314 ], + [ 7.407103, 47.39987 ], + [ 7.4073682, 47.3998239 ], + [ 7.4076674, 47.3997516 ], + [ 7.4078579, 47.3996747 ], + [ 7.4081707, 47.3995378 ], + [ 7.4085834, 47.3993117 ], + [ 7.4087738, 47.3992287 ], + [ 7.4091139, 47.3991057 ], + [ 7.4094675, 47.3989719 ], + [ 7.4097146, 47.3989042 ], + [ 7.4097837, 47.3988882 ], + [ 7.409847, 47.3988802 ], + [ 7.4103836, 47.3987769 ], + [ 7.4104015, 47.3987715 ], + [ 7.4106386, 47.3987 ], + [ 7.4106817, 47.398687 ], + [ 7.4110063, 47.3985207 ], + [ 7.4113248, 47.3983107 ], + [ 7.4113505, 47.398293699999996 ], + [ 7.4114355, 47.3982662 ], + [ 7.4115744, 47.3982212 ], + [ 7.4118753, 47.3981237 ], + [ 7.4120722, 47.3980707 ], + [ 7.4125573, 47.3979523 ], + [ 7.4130145, 47.3978418 ], + [ 7.4131374, 47.3978111 ], + [ 7.4134637, 47.3977111 ], + [ 7.4135777, 47.3976734 ], + [ 7.4136725, 47.3976402 ], + [ 7.4136921000000005, 47.3976345 ], + [ 7.4144348, 47.3975417 ], + [ 7.4150618, 47.3974919 ], + [ 7.4156492, 47.3975228 ], + [ 7.4159711999999995, 47.3975804 ], + [ 7.4160842, 47.3974555 ], + [ 7.4161004, 47.3974376 ], + [ 7.416101, 47.3974368 ], + [ 7.4161041, 47.3974324 ], + [ 7.416738, 47.3965228 ], + [ 7.4167446, 47.3965245 ], + [ 7.4169486, 47.3965768 ], + [ 7.4172301, 47.3965429 ], + [ 7.4175028, 47.3964177 ], + [ 7.4176775, 47.3963399 ], + [ 7.417699, 47.396331 ], + [ 7.4176212, 47.3962406 ], + [ 7.4178463, 47.3961507 ], + [ 7.4181222, 47.3960733 ], + [ 7.4184274, 47.3959844 ], + [ 7.4187048, 47.3959049 ], + [ 7.4188867, 47.395816 ], + [ 7.4190039, 47.3957406 ], + [ 7.4191149, 47.3957605 ], + [ 7.4191899, 47.3957984 ], + [ 7.4193991, 47.3956171 ], + [ 7.4194157, 47.3956027 ], + [ 7.4192658, 47.3955659 ], + [ 7.4190938, 47.3955134 ], + [ 7.4188825, 47.3954203 ], + [ 7.4187032, 47.3952956 ], + [ 7.4186132, 47.3951893 ], + [ 7.4185183, 47.3952011 ], + [ 7.4183602, 47.3952509 ], + [ 7.4183342, 47.3952521 ], + [ 7.4182878, 47.3952686 ], + [ 7.4182731, 47.3953059 ], + [ 7.4182314, 47.3952854 ], + [ 7.41818, 47.3952924 ], + [ 7.4180444, 47.3953121 ], + [ 7.4178909, 47.3953372 ], + [ 7.4177793, 47.3953758 ], + [ 7.417568, 47.3954503 ], + [ 7.4173798, 47.3954577 ], + [ 7.4172554, 47.3953793 ], + [ 7.4171754, 47.3955116 ], + [ 7.4169472, 47.3955356 ], + [ 7.4168126, 47.3955191 ], + [ 7.4167579, 47.395506 ], + [ 7.416716, 47.395506 ], + [ 7.416674, 47.3955872 ], + [ 7.4165138, 47.395625 ], + [ 7.4164975, 47.3956536 ], + [ 7.4163613, 47.3956788 ], + [ 7.4161685, 47.3956889 ], + [ 7.4161474, 47.395751 ], + [ 7.416111, 47.3957953 ], + [ 7.4160828, 47.3958287 ], + [ 7.4160623, 47.3958672 ], + [ 7.416047, 47.3959073 ], + [ 7.4160334, 47.3959602 ], + [ 7.41607, 47.3959852 ], + [ 7.4161205, 47.3959963 ], + [ 7.416169, 47.3960059 ], + [ 7.4161821, 47.3960391 ], + [ 7.4162061999999995, 47.3960916 ], + [ 7.4162185, 47.3961219 ], + [ 7.4162204, 47.3961321 ], + [ 7.4161247, 47.396161 ], + [ 7.4160123, 47.3961911 ], + [ 7.4158267, 47.3962148 ], + [ 7.4156599, 47.3961951 ], + [ 7.4155037, 47.3961524 ], + [ 7.4153908, 47.3960543 ], + [ 7.4152839, 47.3959569 ], + [ 7.415096, 47.3959881 ], + [ 7.4148648999999995, 47.3960321 ], + [ 7.4146367, 47.3960703 ], + [ 7.4146214, 47.3961275 ], + [ 7.4145983, 47.3961998 ], + [ 7.4145457, 47.3962681 ], + [ 7.414464, 47.3963377 ], + [ 7.4143267, 47.3964028 ], + [ 7.4142092, 47.3964253 ], + [ 7.4140571, 47.3964315 ], + [ 7.4139153, 47.3964196 ], + [ 7.4137462, 47.3963984 ], + [ 7.4136054, 47.3963742 ], + [ 7.4134975, 47.3963516 ], + [ 7.4134133, 47.3963541 ], + [ 7.4133852000000005, 47.3963739 ], + [ 7.4133241, 47.3964373 ], + [ 7.4132639, 47.3964521 ], + [ 7.4131593, 47.39658 ], + [ 7.413079, 47.3966818 ], + [ 7.4130247, 47.3966845 ], + [ 7.4129569, 47.3966576 ], + [ 7.4128684, 47.3967088 ], + [ 7.4127011, 47.3967937 ], + [ 7.4124994, 47.3968525 ], + [ 7.4122982, 47.396881 ], + [ 7.4120326, 47.3968769 ], + [ 7.4118524, 47.3968485 ], + [ 7.4117148, 47.3968185 ], + [ 7.4115808, 47.3968129 ], + [ 7.4114633, 47.3968455 ], + [ 7.4113657, 47.3968848 ], + [ 7.4112504999999995, 47.3969528 ], + [ 7.4111572, 47.3970192 ], + [ 7.4110771, 47.3970952 ], + [ 7.4109707, 47.3971588 ], + [ 7.410851, 47.3971871 ], + [ 7.4106884, 47.3971948 ], + [ 7.4105452, 47.3971774 ], + [ 7.4103636999999996, 47.3971678 ], + [ 7.4102344, 47.397164 ], + [ 7.4100876, 47.3971945 ], + [ 7.4100325, 47.3972739 ], + [ 7.4098687, 47.3975051 ], + [ 7.4096722, 47.3976517 ], + [ 7.4092821, 47.3978143 ], + [ 7.4087108, 47.3977088 ], + [ 7.4073818, 47.3977416 ], + [ 7.4061842, 47.3980076 ], + [ 7.4062119, 47.3980046 ], + [ 7.4054246, 47.3981771 ], + [ 7.4050863, 47.3982728 ], + [ 7.4051053, 47.3982821 ], + [ 7.4052061, 47.398355 ], + [ 7.4053827, 47.3984328 ], + [ 7.4056104, 47.3983749 ], + [ 7.40582, 47.3983328 ], + [ 7.4060813, 47.3983118 ], + [ 7.4063038, 47.3982732 ], + [ 7.4066919, 47.3981925 ], + [ 7.4070956, 47.3980978 ], + [ 7.4077218, 47.3979398 ], + [ 7.4081772, 47.3978996 ], + [ 7.4083971, 47.3978768 ], + [ 7.4086209, 47.3981978 ], + [ 7.4085896, 47.3982095 ], + [ 7.4085267, 47.3983588 ], + [ 7.4083694, 47.3984718 ], + [ 7.4081890999999995, 47.3985261 ], + [ 7.4072919, 47.3988105 ], + [ 7.4069697, 47.3989046 ], + [ 7.4067477, 47.3989517 ], + [ 7.4064703, 47.3989715 ], + [ 7.4061959, 47.3989839 ], + [ 7.405994, 47.3990278 ], + [ 7.4057103, 47.3991261 ], + [ 7.4054636, 47.3992276 ], + [ 7.4052031, 47.3993374 ], + [ 7.4050149, 47.3994524 ], + [ 7.4048623, 47.3995989 ], + [ 7.4047373, 47.3997412 ], + [ 7.4044383, 47.4000029 ], + [ 7.4044343, 47.40003 ], + [ 7.4044181, 47.4000639 ], + [ 7.4043388, 47.4001755 ], + [ 7.404281, 47.4002577 ], + [ 7.4043467, 47.4002977 ], + [ 7.4044732, 47.4002917 ], + [ 7.4045556999999995, 47.4002442 ], + [ 7.4046603, 47.4002644 ], + [ 7.4048351, 47.4003091 ], + [ 7.4049905, 47.4003712 ], + [ 7.4050723, 47.400427 ], + [ 7.4050763, 47.4004297 ], + [ 7.4050865, 47.4004367 ], + [ 7.4051496, 47.4004476 ], + [ 7.4051525, 47.4004611 ], + [ 7.4051569, 47.4004816 ], + [ 7.4062499, 47.4000623 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns009", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Hell", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Hell", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Hell", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Hell", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8316091, 47.4909419 ], + [ 7.8316484, 47.4909183 ], + [ 7.8319574, 47.4908042 ], + [ 7.8320748, 47.4907606 ], + [ 7.8322338, 47.4907632 ], + [ 7.8323545, 47.4907753 ], + [ 7.8324701999999995, 47.4908061 ], + [ 7.8325664, 47.4908421 ], + [ 7.8330824, 47.4910763 ], + [ 7.8333624, 47.4911059 ], + [ 7.833681, 47.4913289 ], + [ 7.8337767, 47.4913738 ], + [ 7.8339207, 47.4912602 ], + [ 7.8340682, 47.4911435 ], + [ 7.8341711, 47.4910775 ], + [ 7.8341846, 47.4910684 ], + [ 7.8341975999999995, 47.491059 ], + [ 7.8342099, 47.4910491 ], + [ 7.8342216, 47.4910389 ], + [ 7.8342326, 47.4910284 ], + [ 7.8342429, 47.4910175 ], + [ 7.8342525, 47.4910063 ], + [ 7.8342613, 47.4909949 ], + [ 7.8342694, 47.4909832 ], + [ 7.8342767, 47.4909712 ], + [ 7.8348967, 47.4912618 ], + [ 7.834943, 47.491281 ], + [ 7.8354079, 47.491492 ], + [ 7.8354462, 47.49151 ], + [ 7.8353368, 47.4915864 ], + [ 7.8351561, 47.4916856 ], + [ 7.834987, 47.4917965 ], + [ 7.8348518, 47.4918962 ], + [ 7.8348344999999995, 47.4919084 ], + [ 7.8348164, 47.4919203 ], + [ 7.8347978, 47.4919317 ], + [ 7.8347785, 47.4919426 ], + [ 7.8347587, 47.491953 ], + [ 7.8347383, 47.4919629 ], + [ 7.8347174, 47.4919723 ], + [ 7.834696, 47.4919812 ], + [ 7.8346742, 47.4919896 ], + [ 7.8346519, 47.4919974 ], + [ 7.8342683, 47.4921246 ], + [ 7.8342568, 47.4921287 ], + [ 7.8342457, 47.4921333 ], + [ 7.8342351, 47.4921384 ], + [ 7.8342249, 47.4921438 ], + [ 7.8342153, 47.4921497 ], + [ 7.8342062, 47.492156 ], + [ 7.8341977, 47.4921627 ], + [ 7.8341898, 47.4921697 ], + [ 7.8341826, 47.492177 ], + [ 7.8341674999999995, 47.4921939 ], + [ 7.834153, 47.492211 ], + [ 7.8341393, 47.4922284 ], + [ 7.8341263, 47.4922461 ], + [ 7.8341141, 47.4922641 ], + [ 7.8341027, 47.4922823 ], + [ 7.8340921, 47.4923006 ], + [ 7.8340822, 47.4923192 ], + [ 7.8340732, 47.492338 ], + [ 7.8340648999999996, 47.492357 ], + [ 7.8340575, 47.4923761 ], + [ 7.8340124, 47.4923687 ], + [ 7.833651, 47.4923093 ], + [ 7.8336407999999995, 47.4923328 ], + [ 7.8336315, 47.4923565 ], + [ 7.8336231, 47.4923803 ], + [ 7.8336156, 47.4924042 ], + [ 7.833609, 47.4924283 ], + [ 7.8336032, 47.4924525 ], + [ 7.8335984, 47.4924768 ], + [ 7.8335945, 47.4925011 ], + [ 7.8335928, 47.4925165 ], + [ 7.833592, 47.4925319 ], + [ 7.8335921, 47.4925472 ], + [ 7.833593, 47.4925626 ], + [ 7.8335947, 47.4925779 ], + [ 7.8335974, 47.4925932 ], + [ 7.8336008, 47.4926084 ], + [ 7.8336052, 47.4926235 ], + [ 7.8336103, 47.4926385 ], + [ 7.8336163, 47.4926533 ], + [ 7.8336232, 47.492668 ], + [ 7.8336308, 47.4926825 ], + [ 7.8336393, 47.4926968 ], + [ 7.8336485, 47.4927108 ], + [ 7.8336586, 47.4927246 ], + [ 7.8336702, 47.4927393 ], + [ 7.8336827, 47.4927536 ], + [ 7.8336959, 47.4927676 ], + [ 7.8337099, 47.4927813 ], + [ 7.8337247, 47.4927946 ], + [ 7.8337402, 47.4928075 ], + [ 7.8337564, 47.49282 ], + [ 7.8337733, 47.4928321 ], + [ 7.8341061, 47.4930612 ], + [ 7.8345591, 47.4934605 ], + [ 7.8345787, 47.4934773 ], + [ 7.834599, 47.4934938 ], + [ 7.8346198, 47.4935098 ], + [ 7.8346412999999995, 47.4935255 ], + [ 7.8346633, 47.4935409 ], + [ 7.834686, 47.4935558 ], + [ 7.8347425, 47.4935616 ], + [ 7.8349649, 47.4937049 ], + [ 7.8350037, 47.4937243 ], + [ 7.835043, 47.4937432 ], + [ 7.8350828, 47.4937616 ], + [ 7.8351231, 47.4937795 ], + [ 7.8351638999999995, 47.4937969 ], + [ 7.8352051, 47.4938138 ], + [ 7.8352468, 47.4938302 ], + [ 7.8352889, 47.4938462 ], + [ 7.8353314, 47.4938616 ], + [ 7.8353743, 47.4938765 ], + [ 7.8354177, 47.4938908 ], + [ 7.8354613, 47.4939047 ], + [ 7.8355054, 47.4939179 ], + [ 7.8355498, 47.4939307 ], + [ 7.8355736, 47.4939369 ], + [ 7.8355976, 47.4939426 ], + [ 7.8356219, 47.4939478 ], + [ 7.8356464, 47.4939525 ], + [ 7.8356712, 47.4939565 ], + [ 7.8356961, 47.49396 ], + [ 7.8357212, 47.493963 ], + [ 7.8358497, 47.4939768 ], + [ 7.8358851, 47.493981 ], + [ 7.8359203, 47.4939859 ], + [ 7.8359553, 47.4939914 ], + [ 7.8359901, 47.4939975 ], + [ 7.8360246, 47.4940042 ], + [ 7.8360588, 47.4940116 ], + [ 7.8360928, 47.4940196 ], + [ 7.8361263999999995, 47.4940282 ], + [ 7.8361597, 47.4940373 ], + [ 7.8361926, 47.4940471 ], + [ 7.8362251, 47.4940575 ], + [ 7.8362572, 47.4940684 ], + [ 7.8362889, 47.49408 ], + [ 7.83632, 47.494092 ], + [ 7.8363507, 47.4941047 ], + [ 7.8367494, 47.4942736 ], + [ 7.8366985, 47.4938344 ], + [ 7.8366584, 47.4934935 ], + [ 7.8368455, 47.4934065 ], + [ 7.8372599, 47.4932237 ], + [ 7.8369659, 47.492916 ], + [ 7.8364834, 47.4924102 ], + [ 7.8362726, 47.4921899 ], + [ 7.8363195999999995, 47.4914456 ], + [ 7.8362795, 47.4914473 ], + [ 7.8362815, 47.4914111 ], + [ 7.8364088, 47.4914111 ], + [ 7.8362587999999995, 47.4908362 ], + [ 7.836211, 47.4906543 ], + [ 7.8358792, 47.4904038 ], + [ 7.8358331, 47.4904198 ], + [ 7.8357651, 47.4903075 ], + [ 7.8357601, 47.4902984 ], + [ 7.8357559, 47.4902891 ], + [ 7.8357525, 47.4902796 ], + [ 7.8357498, 47.4902701 ], + [ 7.8357479, 47.4902604 ], + [ 7.8357468, 47.4902507 ], + [ 7.8357465, 47.490241 ], + [ 7.835747, 47.4902313 ], + [ 7.8357483, 47.4902216 ], + [ 7.8357503, 47.4902119 ], + [ 7.8357532, 47.4902024 ], + [ 7.8357603000000005, 47.4901831 ], + [ 7.8357683, 47.4901641 ], + [ 7.8357772, 47.4901451 ], + [ 7.835787, 47.4901264 ], + [ 7.8357976, 47.4901079 ], + [ 7.8358091, 47.4900896 ], + [ 7.8358214, 47.4900716 ], + [ 7.8358346, 47.4900539 ], + [ 7.8358486, 47.4900364 ], + [ 7.8358633, 47.4900193 ], + [ 7.8358789, 47.4900025 ], + [ 7.8358953, 47.489986 ], + [ 7.8359124, 47.4899699 ], + [ 7.8359302, 47.4899542 ], + [ 7.835942, 47.4899443 ], + [ 7.8359542, 47.4899348 ], + [ 7.8359669, 47.4899256 ], + [ 7.8359801000000004, 47.4899167 ], + [ 7.8359938, 47.4899082 ], + [ 7.8360079, 47.4898999 ], + [ 7.8360240999999995, 47.4898913 ], + [ 7.8360408, 47.4898832 ], + [ 7.8360579, 47.4898754 ], + [ 7.8360754, 47.4898682 ], + [ 7.8360934, 47.4898614 ], + [ 7.8361118, 47.4898552 ], + [ 7.8361305, 47.4898494 ], + [ 7.8361495, 47.4898441 ], + [ 7.8361688, 47.4898394 ], + [ 7.8361884, 47.4898351 ], + [ 7.8362088, 47.4898313 ], + [ 7.8362294, 47.4898281 ], + [ 7.8362502, 47.4898255 ], + [ 7.8362712, 47.4898234 ], + [ 7.8362922, 47.4898219 ], + [ 7.8363134, 47.489821 ], + [ 7.8363344999999995, 47.4898207 ], + [ 7.8363557, 47.489821 ], + [ 7.8363768, 47.4898218 ], + [ 7.8363979, 47.4898233 ], + [ 7.8364188, 47.4898253 ], + [ 7.8364396, 47.4898279 ], + [ 7.8364603, 47.4898311 ], + [ 7.8364807, 47.4898348 ], + [ 7.8365009, 47.4898391 ], + [ 7.8367351, 47.4898929 ], + [ 7.8367725, 47.4899012 ], + [ 7.8368102, 47.4899089 ], + [ 7.8368481, 47.489916 ], + [ 7.8368863, 47.4899225 ], + [ 7.8369247, 47.4899283 ], + [ 7.8369633, 47.4899335 ], + [ 7.837002, 47.4899381 ], + [ 7.837041, 47.4899421 ], + [ 7.83708, 47.4899455 ], + [ 7.8371191, 47.4899482 ], + [ 7.8377772, 47.4899902 ], + [ 7.837401, 47.4891625 ], + [ 7.8368171, 47.4892155 ], + [ 7.8367705999999995, 47.48922 ], + [ 7.8367346, 47.4890888 ], + [ 7.8361364, 47.4892841 ], + [ 7.8356904, 47.488798 ], + [ 7.8353527, 47.4889242 ], + [ 7.835328, 47.4889331 ], + [ 7.835303, 47.4889415 ], + [ 7.8352775999999995, 47.4889494 ], + [ 7.8352518, 47.4889567 ], + [ 7.8352257, 47.4889636 ], + [ 7.8351994, 47.4889699 ], + [ 7.8351727, 47.4889756 ], + [ 7.8351459, 47.4889808 ], + [ 7.8351182, 47.4889856 ], + [ 7.8350904, 47.4889898 ], + [ 7.8350623, 47.4889934 ], + [ 7.8350341, 47.4889964 ], + [ 7.8350058, 47.4889989 ], + [ 7.8349774, 47.4890007 ], + [ 7.8349489, 47.489002 ], + [ 7.8349204, 47.4890027 ], + [ 7.8350025, 47.4891926 ], + [ 7.8348617, 47.4892285 ], + [ 7.8346824999999995, 47.4892742 ], + [ 7.834646, 47.4892518 ], + [ 7.8343678, 47.4891835 ], + [ 7.8343515, 47.4891792 ], + [ 7.8343356, 47.4891743 ], + [ 7.83432, 47.489169 ], + [ 7.8343048, 47.4891631 ], + [ 7.83429, 47.4891568 ], + [ 7.8342757, 47.48915 ], + [ 7.8342619, 47.4891428 ], + [ 7.8342485, 47.4891351 ], + [ 7.8342358, 47.489127 ], + [ 7.8342236, 47.4891185 ], + [ 7.8341663, 47.4890771 ], + [ 7.8341617, 47.4890733 ], + [ 7.8341579, 47.4890691 ], + [ 7.834155, 47.4890646 ], + [ 7.834153, 47.4890599 ], + [ 7.8341519, 47.4890551 ], + [ 7.8341518, 47.4890502 ], + [ 7.8341527, 47.4890453 ], + [ 7.8341545, 47.4890406 ], + [ 7.8341573, 47.489036 ], + [ 7.8341609, 47.4890318 ], + [ 7.8341653, 47.489027899999996 ], + [ 7.8341705, 47.4890245 ], + [ 7.8341763, 47.4890216 ], + [ 7.8341826, 47.4890192 ], + [ 7.8341893, 47.4890174 ], + [ 7.8341964, 47.4890163 ], + [ 7.8339685, 47.4890208 ], + [ 7.833967, 47.4890209 ], + [ 7.8338792, 47.4890223 ], + [ 7.833833, 47.4890248 ], + [ 7.8337869, 47.4890278 ], + [ 7.8337409000000005, 47.4890316 ], + [ 7.8336951, 47.4890359 ], + [ 7.8336493, 47.4890409 ], + [ 7.8336038, 47.4890464 ], + [ 7.8335584, 47.4890526 ], + [ 7.8335132, 47.4890595 ], + [ 7.8334682, 47.4890669 ], + [ 7.8334234, 47.4890749 ], + [ 7.8333789, 47.4890836 ], + [ 7.8333346, 47.4890928 ], + [ 7.8332907, 47.4891027 ], + [ 7.8332682, 47.4891081 ], + [ 7.833246, 47.4891142 ], + [ 7.8332242, 47.4891208 ], + [ 7.8332029, 47.4891281 ], + [ 7.833182, 47.489136 ], + [ 7.8331616, 47.4891444 ], + [ 7.8331418, 47.4891534 ], + [ 7.8331225, 47.4891629 ], + [ 7.8331038, 47.489173 ], + [ 7.8330858, 47.4891836 ], + [ 7.8330684, 47.4891947 ], + [ 7.8330517, 47.4892063 ], + [ 7.8330357, 47.4892183 ], + [ 7.8330204, 47.4892308 ], + [ 7.833006, 47.4892437 ], + [ 7.8329923, 47.489257 ], + [ 7.8329795, 47.4892706 ], + [ 7.8329675, 47.4892846 ], + [ 7.8329564, 47.489299 ], + [ 7.8329461, 47.4893136 ], + [ 7.8329368, 47.4893285 ], + [ 7.8329284, 47.4893436 ], + [ 7.8329208999999995, 47.489359 ], + [ 7.8329144, 47.4893746 ], + [ 7.8329088, 47.4893903 ], + [ 7.8329041, 47.4894062 ], + [ 7.8329005, 47.4894222 ], + [ 7.8328836, 47.4895089 ], + [ 7.8328587, 47.4896343 ], + [ 7.8328163, 47.4897134 ], + [ 7.8325724, 47.4899763 ], + [ 7.8322255, 47.4903086 ], + [ 7.8319753, 47.4905589 ], + [ 7.831701, 47.4908461 ], + [ 7.8316091, 47.4909419 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns185", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Firmach - Heidengräbern", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Firmach - Heidengräbern", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Firmach - Heidengräbern", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Firmach - Heidengräbern", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7438149, 47.3864628 ], + [ 7.7440299, 47.3862492 ], + [ 7.7441637, 47.3860611 ], + [ 7.7442731, 47.3859146 ], + [ 7.7442795, 47.3859065 ], + [ 7.7442863, 47.3858985 ], + [ 7.7442936, 47.3858907 ], + [ 7.7443012, 47.3858831 ], + [ 7.7443094, 47.3858757 ], + [ 7.7443181, 47.3858685 ], + [ 7.74437, 47.3858266 ], + [ 7.7443798, 47.3858183 ], + [ 7.7443889, 47.3858097 ], + [ 7.7443973, 47.3858008 ], + [ 7.744405, 47.3857915 ], + [ 7.7444121, 47.385782 ], + [ 7.7444182999999995, 47.3857723 ], + [ 7.7444239, 47.3857624 ], + [ 7.7444288, 47.3857523 ], + [ 7.7444328, 47.3857419 ], + [ 7.7444361, 47.3857316 ], + [ 7.7444393, 47.3857213 ], + [ 7.7444434, 47.3857111 ], + [ 7.744448, 47.3857011 ], + [ 7.7444533, 47.3856912 ], + [ 7.7444595, 47.3856816 ], + [ 7.7444663, 47.3856721 ], + [ 7.744474, 47.385663 ], + [ 7.7444821, 47.385654099999996 ], + [ 7.7444866, 47.3856491 ], + [ 7.7444903, 47.3856438 ], + [ 7.7444934, 47.3856384 ], + [ 7.7444955, 47.3856328 ], + [ 7.7444968, 47.3856271 ], + [ 7.7444977, 47.3856213 ], + [ 7.7444975, 47.3856155 ], + [ 7.7444967, 47.3856097 ], + [ 7.7444951, 47.3856041 ], + [ 7.7444927, 47.3855985 ], + [ 7.7445406, 47.3855737 ], + [ 7.7447945, 47.3847668 ], + [ 7.7449913, 47.3847044 ], + [ 7.7454703, 47.3845436 ], + [ 7.7458654, 47.3844044 ], + [ 7.746308, 47.3841436 ], + [ 7.7464686, 47.3840649 ], + [ 7.7466777, 47.3839637 ], + [ 7.7469572, 47.3837307 ], + [ 7.7470792, 47.3835706 ], + [ 7.7471664, 47.3835163 ], + [ 7.7471676, 47.3834738 ], + [ 7.7470759000000005, 47.3832043 ], + [ 7.7474305, 47.3831436 ], + [ 7.7474214, 47.3831296 ], + [ 7.7474016, 47.3830988 ], + [ 7.7473521, 47.38303 ], + [ 7.7473887, 47.3830132 ], + [ 7.7473361, 47.3829571 ], + [ 7.7472855, 47.3829024 ], + [ 7.7472309, 47.3828441 ], + [ 7.7471758, 47.3827853 ], + [ 7.7470843, 47.3826679 ], + [ 7.7470333, 47.3826226 ], + [ 7.747058, 47.3826086 ], + [ 7.7470314, 47.3825863 ], + [ 7.7470343, 47.3825848 ], + [ 7.7469742, 47.3825329 ], + [ 7.746943, 47.3825049 ], + [ 7.7469301999999995, 47.382513 ], + [ 7.7468962999999995, 47.3824884 ], + [ 7.7468593, 47.3824618 ], + [ 7.7467923, 47.3824111 ], + [ 7.7467308, 47.3823655 ], + [ 7.7467041, 47.3823787 ], + [ 7.7466382, 47.3823319 ], + [ 7.7466238, 47.3823412 ], + [ 7.7465873, 47.3823151 ], + [ 7.7465088, 47.3822645 ], + [ 7.7464337, 47.3822207 ], + [ 7.746442, 47.3822121 ], + [ 7.7464346, 47.3822088 ], + [ 7.7463439, 47.3822965 ], + [ 7.7461589, 47.382204 ], + [ 7.7460168, 47.3822291 ], + [ 7.7460809, 47.3823481 ], + [ 7.7456482, 47.382347 ], + [ 7.7456242, 47.3826508 ], + [ 7.7448429999999995, 47.3826987 ], + [ 7.7444662, 47.3827635 ], + [ 7.7442953, 47.3827951 ], + [ 7.743969, 47.3828556 ], + [ 7.7438948, 47.3828698 ], + [ 7.7435048, 47.3829551 ], + [ 7.7429892, 47.3830619 ], + [ 7.7426638, 47.3830695 ], + [ 7.7422626999999995, 47.3830787 ], + [ 7.7420023, 47.3830849 ], + [ 7.7417503, 47.3830924 ], + [ 7.7417084, 47.3830937 ], + [ 7.7417175, 47.3830515 ], + [ 7.7417723, 47.3827972 ], + [ 7.7411852, 47.382781 ], + [ 7.7404763, 47.3828889 ], + [ 7.7400249, 47.3828534 ], + [ 7.7394739, 47.3830026 ], + [ 7.7389433, 47.3831098 ], + [ 7.7383051, 47.3831409 ], + [ 7.7382438, 47.3832782 ], + [ 7.7378624, 47.383264 ], + [ 7.7377541, 47.383032 ], + [ 7.7373691, 47.3831866 ], + [ 7.7374261, 47.3828887 ], + [ 7.7370822, 47.3829276 ], + [ 7.7364386, 47.3829523 ], + [ 7.7360415, 47.3830016 ], + [ 7.7356414000000004, 47.3829989 ], + [ 7.7355415, 47.3828873 ], + [ 7.7351266, 47.3827499 ], + [ 7.7348135, 47.3829009 ], + [ 7.7343038, 47.3830023 ], + [ 7.7344887, 47.3831506 ], + [ 7.7340237, 47.3831666 ], + [ 7.7337411, 47.3831942 ], + [ 7.7321624, 47.3837063 ], + [ 7.7301032, 47.3836516 ], + [ 7.7289837, 47.3840299 ], + [ 7.7277813, 47.3839844 ], + [ 7.7276104, 47.3847732 ], + [ 7.7275976, 47.384804 ], + [ 7.7277346, 47.3849715 ], + [ 7.7276333, 47.3852012 ], + [ 7.7275918, 47.3862373 ], + [ 7.7276765, 47.3862361 ], + [ 7.7279672, 47.386232 ], + [ 7.728351, 47.3861037 ], + [ 7.7287502, 47.3859694 ], + [ 7.7293122, 47.3859111 ], + [ 7.7297456, 47.3859205 ], + [ 7.7301229, 47.3859311 ], + [ 7.7306853, 47.385924 ], + [ 7.7312141, 47.3858634 ], + [ 7.7320439, 47.3857252 ], + [ 7.7324777000000005, 47.3854889 ], + [ 7.7332314, 47.3854022 ], + [ 7.7335578, 47.3853639 ], + [ 7.7340427, 47.3853128 ], + [ 7.7345448999999995, 47.3852979 ], + [ 7.7350475, 47.3852857 ], + [ 7.7354743, 47.385359 ], + [ 7.7356972, 47.3853967 ], + [ 7.7361394, 47.3854223 ], + [ 7.7365816, 47.3854484 ], + [ 7.7370227, 47.3854745 ], + [ 7.7375263, 47.3854575 ], + [ 7.7380154, 47.3854417 ], + [ 7.7388675, 47.3853837 ], + [ 7.7394203, 47.3852895 ], + [ 7.7396956, 47.385687 ], + [ 7.7397235, 47.3857207 ], + [ 7.7398177, 47.3859293 ], + [ 7.7400319, 47.3861638 ], + [ 7.740117, 47.3863494 ], + [ 7.7402806, 47.3865416 ], + [ 7.7412068, 47.38644 ], + [ 7.7421497, 47.3862911 ], + [ 7.7422273, 47.3864331 ], + [ 7.7419142, 47.3866478 ], + [ 7.7422173999999995, 47.3867481 ], + [ 7.7425507, 47.38686 ], + [ 7.7429096, 47.3869407 ], + [ 7.742954, 47.3868719 ], + [ 7.7432528, 47.3867005 ], + [ 7.7438149, 47.3864628 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns224", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Richtiflue", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Richtiflue", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Richtiflue", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Richtiflue", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5205981, 47.4417322 ], + [ 7.5205999, 47.4417359 ], + [ 7.5206533, 47.4418494 ], + [ 7.5211717, 47.4420644 ], + [ 7.5212865, 47.4421679 ], + [ 7.5217907, 47.4421624 ], + [ 7.5226238, 47.4423277 ], + [ 7.5232275, 47.4424205 ], + [ 7.5235638, 47.4425343 ], + [ 7.5245266, 47.4425906 ], + [ 7.5254891, 47.4425173 ], + [ 7.5267659, 47.4426313 ], + [ 7.5267912, 47.442503 ], + [ 7.5219077, 47.441876 ], + [ 7.5216522999999995, 47.4418373 ], + [ 7.5211472, 47.4417973 ], + [ 7.5205981, 47.4417322 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr089", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Egglen", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Egglen", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Egglen", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Egglen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.905361599999999, 46.14332 ], + [ 8.9053459, 46.1430996 ], + [ 8.9065304, 46.1431341 ], + [ 8.9067362, 46.1426183 ], + [ 8.9069158, 46.1421682 ], + [ 8.9070724, 46.1422355 ], + [ 8.9074431, 46.1422055 ], + [ 8.9077689, 46.1421678 ], + [ 8.9079383, 46.1421423 ], + [ 8.9083454, 46.1420776 ], + [ 8.908598, 46.1421079 ], + [ 8.9087069, 46.1409318 ], + [ 8.9082956, 46.1409219 ], + [ 8.9073554, 46.1408992 ], + [ 8.9063389, 46.1409036 ], + [ 8.905998199999999, 46.1406993 ], + [ 8.9057567, 46.1405738 ], + [ 8.9056257, 46.1403633 ], + [ 8.9054648, 46.1402899 ], + [ 8.9052437, 46.1405257 ], + [ 8.9051848, 46.1405969 ], + [ 8.9051296, 46.1406697 ], + [ 8.9046111, 46.141393 ], + [ 8.9044934, 46.1415571 ], + [ 8.9043681, 46.141731300000004 ], + [ 8.9043024, 46.1419146 ], + [ 8.9041265, 46.142237 ], + [ 8.9040366, 46.1423562 ], + [ 8.9039284, 46.1424091 ], + [ 8.9038081, 46.1424201 ], + [ 8.9036553, 46.1424431 ], + [ 8.9035716, 46.142488 ], + [ 8.9034515, 46.1425028 ], + [ 8.9033672, 46.142424 ], + [ 8.9033544, 46.1424014 ], + [ 8.903314, 46.1423756 ], + [ 8.9032633, 46.1423301 ], + [ 8.9031952, 46.1422434 ], + [ 8.9031079, 46.142155 ], + [ 8.9030672, 46.1421301 ], + [ 8.9039764, 46.140791 ], + [ 8.9040295, 46.1407128 ], + [ 8.9042891, 46.1405454 ], + [ 8.904333, 46.1405279 ], + [ 8.9047741, 46.1401817 ], + [ 8.905126, 46.1397902 ], + [ 8.9054927, 46.1393419 ], + [ 8.9055784, 46.1392372 ], + [ 8.905593, 46.139218 ], + [ 8.9054248, 46.1391981 ], + [ 8.9053301, 46.1391869 ], + [ 8.9053908, 46.1391301 ], + [ 8.9053472, 46.1390417 ], + [ 8.905111999999999, 46.138986 ], + [ 8.9048975, 46.1389171 ], + [ 8.9047097, 46.1387797 ], + [ 8.904401, 46.138724 ], + [ 8.9041322, 46.1387327 ], + [ 8.9040853, 46.1386883 ], + [ 8.9034937, 46.1381274 ], + [ 8.903746, 46.1379703 ], + [ 8.9039181, 46.1378767 ], + [ 8.9040534, 46.1378372 ], + [ 8.9042399, 46.1377828 ], + [ 8.9041455, 46.1377476 ], + [ 8.9041223, 46.1377422 ], + [ 8.9040947, 46.1377441 ], + [ 8.9040617, 46.1376868 ], + [ 8.9038966, 46.1377642 ], + [ 8.9036821, 46.1378375 ], + [ 8.9034494, 46.1379066 ], + [ 8.9032138, 46.1379665 ], + [ 8.9027402, 46.1380715 ], + [ 8.9025753, 46.1379425 ], + [ 8.9022401, 46.1379303 ], + [ 8.9018893, 46.1377749 ], + [ 8.9017626, 46.1378019 ], + [ 8.9014712, 46.1377606 ], + [ 8.9008939, 46.1375499 ], + [ 8.9008419, 46.1375651 ], + [ 8.9000252, 46.1378043 ], + [ 8.8992441, 46.137257 ], + [ 8.899193, 46.137221 ], + [ 8.8989229, 46.1373886 ], + [ 8.8988802, 46.1375284 ], + [ 8.8987927, 46.1375775 ], + [ 8.8986449, 46.1374918 ], + [ 8.8991614, 46.1371986 ], + [ 8.8991199, 46.1371694 ], + [ 8.8979083, 46.1363221 ], + [ 8.8968381, 46.1364123 ], + [ 8.8962464, 46.1375619 ], + [ 8.8957119, 46.1379012 ], + [ 8.8948947, 46.1380269 ], + [ 8.8949398, 46.1390505 ], + [ 8.8949996, 46.1404089 ], + [ 8.896221, 46.1418835 ], + [ 8.8968927, 46.1418553 ], + [ 8.8979668, 46.1418102 ], + [ 8.8988072, 46.1417741 ], + [ 8.8991713, 46.1417581 ], + [ 8.8993437, 46.1416697 ], + [ 8.8998355, 46.1414147 ], + [ 8.9013449, 46.1430389 ], + [ 8.9014138, 46.143005 ], + [ 8.901481799999999, 46.1429919 ], + [ 8.901726, 46.14301 ], + [ 8.9019231, 46.1430341 ], + [ 8.9019273, 46.1430649 ], + [ 8.9023521, 46.1430351 ], + [ 8.9025522, 46.1429716 ], + [ 8.9037915, 46.1438991 ], + [ 8.9053998, 46.1438571 ], + [ 8.905361599999999, 46.14332 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VBS_8-1", + "country" : "CHE", + "name" : [ + { + "text" : "VBS_8 Monte Ceneri 1", + "lang" : "de-CH" + }, + { + "text" : "VBS_8 Monte Ceneri 1", + "lang" : "fr-CH" + }, + { + "text" : "VBS_8 Monte Ceneri 1", + "lang" : "it-CH" + }, + { + "text" : "VBS_8 Monte Ceneri 1", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "regulationExemption" : "YES", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Eidgenössisches Departement für Verteidigung, Bevölkerungsschutz und Sport (VBS)", + "lang" : "de-CH" + }, + { + "text" : "Département fédéral de la défense, de la protection de la population et des sports (DDPS)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento federale della difesa, della protezione della popolazione e dello sport (DDPS)", + "lang" : "it-CH" + }, + { + "text" : "Federal Department of Defence, Civil Protection and Sport (DDPS)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Lageverfolgungszentrum der Armee LVZ A", + "lang" : "de-CH" + }, + { + "text" : "Centre de suivi de la situation de l’armée, CSS A", + "lang" : "fr-CH" + }, + { + "text" : "Centro di monitoraggio della situazione dell’esercito, Centro mon sit Es", + "lang" : "it-CH" + }, + { + "text" : "Joint Operation Center, JOC", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vtg.admin.ch/en/joint-operations-command", + "email" : "lvz.op@vtg.admin.ch", + "phone" : "+41 58 464 96 43", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5377883, 47.4564259 ], + [ 7.5377885, 47.4564037 ], + [ 7.5377401, 47.456396 ], + [ 7.5375816, 47.456362 ], + [ 7.5357377, 47.4562705 ], + [ 7.5355684, 47.4562908 ], + [ 7.5355517, 47.4563399 ], + [ 7.535406, 47.456769 ], + [ 7.5353699, 47.4568628 ], + [ 7.5355875999999995, 47.4568725 ], + [ 7.5376444, 47.4569633 ], + [ 7.5376471, 47.4569533 ], + [ 7.5376531, 47.456931 ], + [ 7.5377883, 47.4564259 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns193", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Blauenweid", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Blauenweid", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Blauenweid", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Blauenweid", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.6539526, 47.4444457 ], + [ 8.6829847, 47.438124 ], + [ 8.6862596, 47.4373456 ], + [ 8.6894699, 47.4364519 ], + [ 8.6926068, 47.4354453 ], + [ 8.6956616, 47.4343287 ], + [ 8.6986259, 47.433105 ], + [ 8.7014917, 47.4317777 ], + [ 8.704251, 47.4303503 ], + [ 8.7068962, 47.4288268 ], + [ 8.7094202, 47.4272114 ], + [ 8.711816, 47.4255086 ], + [ 8.7140771, 47.4237229 ], + [ 8.7161972, 47.4218594 ], + [ 8.7181705, 47.419923 ], + [ 8.7199917, 47.4179192 ], + [ 8.7216557, 47.4158534 ], + [ 8.7231581, 47.4137313 ], + [ 8.7244946, 47.4115587 ], + [ 8.7256617, 47.4093417 ], + [ 8.7266562, 47.4070861 ], + [ 8.7274754, 47.4047984 ], + [ 8.728117, 47.4024846 ], + [ 8.7285793, 47.4001512 ], + [ 8.7288611, 47.3978046 ], + [ 8.7289616, 47.3954512 ], + [ 8.7288806, 47.3930974 ], + [ 8.7286184, 47.3907498 ], + [ 8.7281755, 47.3884146 ], + [ 8.7275534, 47.3860984 ], + [ 8.7267537, 47.3838075 ], + [ 8.7257787, 47.3815482 ], + [ 8.7246309, 47.3793266 ], + [ 8.7233137, 47.3771488 ], + [ 8.7218306, 47.3750208 ], + [ 8.7201857, 47.3729484 ], + [ 8.7183835, 47.3709373 ], + [ 8.716429, 47.368993 ], + [ 8.7143275, 47.3671209 ], + [ 8.7120849, 47.3653259 ], + [ 8.7097072, 47.3636132 ], + [ 8.707201, 47.3619872 ], + [ 8.7045731, 47.3604526 ], + [ 8.7018307, 47.3590134 ], + [ 8.6989815, 47.3576737 ], + [ 8.6960331, 47.3564371 ], + [ 8.6929936, 47.3553069 ], + [ 8.6898713, 47.3542863 ], + [ 8.6866749, 47.3533781 ], + [ 8.6834129, 47.3525846 ], + [ 8.6800945, 47.3519082 ], + [ 8.6767285, 47.3513507 ], + [ 8.6733243, 47.3509135 ], + [ 8.6698912, 47.3505979 ], + [ 8.6664384, 47.3504047 ], + [ 8.6629756, 47.3503346 ], + [ 8.659512, 47.3503875 ], + [ 8.6560573, 47.3505635 ], + [ 8.6526209, 47.350862 ], + [ 8.6492121, 47.3512823 ], + [ 8.6458402, 47.3518231 ], + [ 8.6425146, 47.352483 ], + [ 8.6135244, 47.3587946 ], + [ 8.6103063, 47.3595573 ], + [ 8.6071502, 47.3604315 ], + [ 8.6040644, 47.3614148 ], + [ 8.6010571, 47.3625047 ], + [ 8.5981362, 47.3636982 ], + [ 8.595309499999999, 47.3649923 ], + [ 8.5925844, 47.3663834 ], + [ 8.5899682, 47.3678679 ], + [ 8.5874678, 47.3694419 ], + [ 8.5850898, 47.3711013 ], + [ 8.5828406, 47.3728415 ], + [ 8.5807261, 47.374658 ], + [ 8.5787519, 47.3765461 ], + [ 8.5769233, 47.3785006 ], + [ 8.5752451, 47.3805165 ], + [ 8.5737218, 47.3825884 ], + [ 8.5723574, 47.3847107 ], + [ 8.5711556, 47.3868779 ], + [ 8.5701196, 47.3890843 ], + [ 8.5692521, 47.3913239 ], + [ 8.5685555, 47.3935909 ], + [ 8.5680316, 47.3958793 ], + [ 8.5676819, 47.3981829 ], + [ 8.567507299999999, 47.4004957 ], + [ 8.5675082, 47.4028115 ], + [ 8.5676847, 47.4051242 ], + [ 8.5680364, 47.4074277 ], + [ 8.5685624, 47.4097158 ], + [ 8.5692612, 47.4119825 ], + [ 8.570131, 47.4142217 ], + [ 8.5711696, 47.4164276 ], + [ 8.5723742, 47.4185943 ], + [ 8.5737417, 47.420716 ], + [ 8.5752684, 47.4227871 ], + [ 8.5769502, 47.424802 ], + [ 8.5787829, 47.4267555 ], + [ 8.5807614, 47.4286424 ], + [ 8.5828805, 47.4304576 ], + [ 8.5851348, 47.4321963 ], + [ 8.587518, 47.4338539 ], + [ 8.5900241, 47.4354261 ], + [ 8.5926462, 47.4369085 ], + [ 8.5953775, 47.4382973 ], + [ 8.5982106, 47.4395889 ], + [ 8.6011382, 47.4407797 ], + [ 8.604152299999999, 47.4418666 ], + [ 8.607245, 47.4428466 ], + [ 8.6104081, 47.4437173 ], + [ 8.6136332, 47.4444763 ], + [ 8.6169117, 47.4451216 ], + [ 8.6202349, 47.4456514 ], + [ 8.6235939, 47.4460644 ], + [ 8.6269798, 47.4463594 ], + [ 8.6303837, 47.4465357 ], + [ 8.6337964, 47.4465928 ], + [ 8.637209, 47.4465305 ], + [ 8.6406123, 47.446349 ], + [ 8.6439972, 47.4460489 ], + [ 8.6473549, 47.4456308 ], + [ 8.6506763, 47.4450959 ], + [ 8.6539526, 47.4444457 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSMD-01", + "country" : "CHE", + "name" : [ + { + "text" : "LSMD Dübendorf", + "lang" : "de-CH" + }, + { + "text" : "LSMD Dübendorf", + "lang" : "fr-CH" + }, + { + "text" : "LSMD Dübendorf", + "lang" : "it-CH" + }, + { + "text" : "LSMD Dübendorf", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Special Flight Office (SFO)", + "lang" : "de-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "fr-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "it-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "en-GB" + } + ], + "siteURL" : "https://skyguide.ch/services/special-flights", + "email" : "specialflight@skyguide.ch", + "phone" : "0041439316236", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7406714999999995, 47.3946495 ], + [ 7.7404402999999995, 47.3946227 ], + [ 7.7404393, 47.3946282 ], + [ 7.7400698, 47.3945903 ], + [ 7.7399672, 47.3945912 ], + [ 7.7398828, 47.3948967 ], + [ 7.7397079, 47.3950992 ], + [ 7.7396337, 47.3953637 ], + [ 7.7392802, 47.3953842 ], + [ 7.7388943999999995, 47.3952764 ], + [ 7.738775, 47.3952212 ], + [ 7.7386705, 47.3953459 ], + [ 7.7382216, 47.3952318 ], + [ 7.7379204, 47.3951905 ], + [ 7.7376379, 47.3952315 ], + [ 7.7373934, 47.3953497 ], + [ 7.7370798, 47.3955456 ], + [ 7.7371061, 47.3955822 ], + [ 7.7371346, 47.395622 ], + [ 7.737389, 47.3955395 ], + [ 7.7377752, 47.395469 ], + [ 7.7381159, 47.3955283 ], + [ 7.7384112, 47.3956573 ], + [ 7.7386506, 47.3957857 ], + [ 7.7392218, 47.3960255 ], + [ 7.7393087, 47.3960462 ], + [ 7.7394106, 47.3960427 ], + [ 7.7398281, 47.3959998 ], + [ 7.7403484, 47.3959236 ], + [ 7.7410501, 47.3957923 ], + [ 7.7412735, 47.3957379 ], + [ 7.7417031, 47.39568 ], + [ 7.7418732, 47.395681 ], + [ 7.7424384, 47.3957189 ], + [ 7.7430371000000004, 47.3957466 ], + [ 7.7431721, 47.3957411 ], + [ 7.743401, 47.3957329 ], + [ 7.7436294, 47.3957058 ], + [ 7.7437351, 47.3956978 ], + [ 7.7438449, 47.3957036 ], + [ 7.7441675, 47.3957116 ], + [ 7.7443344, 47.3957067 ], + [ 7.7443116, 47.3955652 ], + [ 7.7443881, 47.3955523 ], + [ 7.7443341, 47.395225 ], + [ 7.7441078999999995, 47.3952252 ], + [ 7.7440508, 47.3952151 ], + [ 7.7440387, 47.3952343 ], + [ 7.7440231, 47.3952312 ], + [ 7.7440341, 47.3952122 ], + [ 7.7437725, 47.3951661 ], + [ 7.7435672, 47.3951202 ], + [ 7.7432808, 47.3950496 ], + [ 7.7432426, 47.3950438 ], + [ 7.7432061999999995, 47.3950389 ], + [ 7.7430836, 47.3950315 ], + [ 7.7429859, 47.3950194 ], + [ 7.742927, 47.3950166 ], + [ 7.7427681, 47.3950136 ], + [ 7.7425946, 47.3950012 ], + [ 7.7425603, 47.3949988 ], + [ 7.7425262, 47.394996 ], + [ 7.7424921, 47.3949928 ], + [ 7.7424581, 47.3949893 ], + [ 7.7424242, 47.3949853 ], + [ 7.7423953999999995, 47.3949814 ], + [ 7.7423668, 47.3949769 ], + [ 7.7423383999999995, 47.3949718 ], + [ 7.7423103, 47.3949662 ], + [ 7.7422824, 47.39496 ], + [ 7.7422547999999995, 47.3949532 ], + [ 7.7422301000000004, 47.3949482 ], + [ 7.7415872, 47.3947663 ], + [ 7.7414857999999995, 47.3947473 ], + [ 7.7414269, 47.3947437 ], + [ 7.7414302, 47.394735 ], + [ 7.7409972, 47.3947005 ], + [ 7.7410024, 47.3946827 ], + [ 7.7409148, 47.3946745 ], + [ 7.7408538, 47.3946688 ], + [ 7.7407929, 47.3946628 ], + [ 7.7407321, 47.3946563 ], + [ 7.7406714999999995, 47.3946495 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns102", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Thommeten", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Thommeten", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Thommeten", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Thommeten", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.1285987, 46.314065 ], + [ 6.1289264, 46.3138479 ], + [ 6.1291677, 46.3136686 ], + [ 6.129746, 46.313154 ], + [ 6.1298635, 46.3131565 ], + [ 6.1299612, 46.3131158 ], + [ 6.1298086, 46.3129405 ], + [ 6.1297567, 46.3128669 ], + [ 6.1298512, 46.3128432 ], + [ 6.1299008, 46.3128172 ], + [ 6.1304498, 46.312484 ], + [ 6.1336951, 46.3105121 ], + [ 6.1337166, 46.3104045 ], + [ 6.1338036, 46.3103654 ], + [ 6.1335808, 46.3101273 ], + [ 6.1346852, 46.3088891 ], + [ 6.1360668, 46.3080273 ], + [ 6.1378679, 46.3070263 ], + [ 6.1375772, 46.306666 ], + [ 6.1375782, 46.3066654 ], + [ 6.137573, 46.3066607 ], + [ 6.1375601, 46.3066447 ], + [ 6.1375573, 46.3066423 ], + [ 6.1375404, 46.3066315 ], + [ 6.1375164, 46.30661 ], + [ 6.1374205, 46.3065239 ], + [ 6.1374122, 46.3065122 ], + [ 6.1374094, 46.3065096 ], + [ 6.1373907, 46.3064972 ], + [ 6.1373893, 46.306496 ], + [ 6.1373891, 46.3064961 ], + [ 6.1365218, 46.3059215 ], + [ 6.1360739, 46.305773 ], + [ 6.1359126, 46.3056758 ], + [ 6.1354735, 46.3055739 ], + [ 6.1354141, 46.3055542 ], + [ 6.1353724, 46.3055504 ], + [ 6.1344729000000005, 46.3053416 ], + [ 6.1329582, 46.3054144 ], + [ 6.1315988, 46.3058831 ], + [ 6.1315955, 46.3058848 ], + [ 6.1315715, 46.305904 ], + [ 6.1315195, 46.3059318 ], + [ 6.1314922, 46.3059408 ], + [ 6.1314888, 46.3059425 ], + [ 6.1314563, 46.3059656 ], + [ 6.1314373, 46.3059758 ], + [ 6.131439, 46.3059773 ], + [ 6.131366, 46.3060163 ], + [ 6.1312743, 46.3060836 ], + [ 6.1311737, 46.3061185 ], + [ 6.1310321, 46.3061946 ], + [ 6.1309428, 46.3062607 ], + [ 6.1308387, 46.3062966 ], + [ 6.1306978, 46.306372 ], + [ 6.1298616, 46.3069872 ], + [ 6.1293408, 46.3077514 ], + [ 6.1292271, 46.3083699 ], + [ 6.1285487, 46.3083437 ], + [ 6.1273605, 46.3085642 ], + [ 6.1269715, 46.3087404 ], + [ 6.1268459, 46.3087636 ], + [ 6.1258196, 46.3092266 ], + [ 6.1256845, 46.3093112 ], + [ 6.1247832, 46.3101481 ], + [ 6.1244077, 46.3111593 ], + [ 6.1246144, 46.3121937 ], + [ 6.1253723, 46.3130963 ], + [ 6.1254666, 46.3131705 ], + [ 6.1264137, 46.3137129 ], + [ 6.1275577, 46.3140239 ], + [ 6.1285987, 46.314065 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-33", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.9043624999999995, 47.3212362 ], + [ 7.9043558, 47.321095 ], + [ 7.9043383, 47.3209542 ], + [ 7.90431, 47.3208143 ], + [ 7.9042709, 47.3206755 ], + [ 7.9042212, 47.3205384 ], + [ 7.904161, 47.3204031 ], + [ 7.9040905, 47.3202703 ], + [ 7.9040099, 47.3201401 ], + [ 7.9039193, 47.3200129 ], + [ 7.9038191, 47.3198892 ], + [ 7.9037095, 47.3197692 ], + [ 7.9035909, 47.3196532 ], + [ 7.9034634, 47.3195417 ], + [ 7.9033276, 47.3194348 ], + [ 7.9031837, 47.3193329 ], + [ 7.9030321, 47.3192363 ], + [ 7.9028734, 47.3191451 ], + [ 7.9027078, 47.3190598 ], + [ 7.9025359, 47.3189805 ], + [ 7.9023582, 47.3189074 ], + [ 7.902175, 47.3188407 ], + [ 7.901987, 47.3187806 ], + [ 7.9017946, 47.3187274 ], + [ 7.9015984, 47.318681 ], + [ 7.9013988, 47.3186417 ], + [ 7.9011965, 47.3186095 ], + [ 7.9009921, 47.3185846 ], + [ 7.9007859, 47.3185669 ], + [ 7.9005788, 47.3185567 ], + [ 7.9003711, 47.3185538 ], + [ 7.9001634, 47.3185584 ], + [ 7.8999564, 47.3185703 ], + [ 7.8997506, 47.3185895 ], + [ 7.8995466, 47.3186161 ], + [ 7.8993449, 47.3186499 ], + [ 7.899146, 47.3186908 ], + [ 7.8989506, 47.3187387 ], + [ 7.8987592, 47.3187935 ], + [ 7.8985722, 47.3188551 ], + [ 7.8983902, 47.3189232 ], + [ 7.8982137, 47.3189978 ], + [ 7.8980432, 47.3190785 ], + [ 7.8978791, 47.3191651 ], + [ 7.8977219, 47.3192575 ], + [ 7.8975721, 47.3193553 ], + [ 7.89743, 47.3194584 ], + [ 7.897296, 47.3195663 ], + [ 7.8971705, 47.3196789 ], + [ 7.8970538, 47.3197958 ], + [ 7.8969463, 47.3199167 ], + [ 7.8968482, 47.3200412 ], + [ 7.8967599, 47.320169 ], + [ 7.8966815, 47.3202999 ], + [ 7.8966133, 47.3204333 ], + [ 7.8965555, 47.320569 ], + [ 7.8965081999999995, 47.3207065 ], + [ 7.8964715, 47.3208456 ], + [ 7.8964456, 47.3209858 ], + [ 7.8964305, 47.3211267 ], + [ 7.8964262, 47.3212679 ], + [ 7.8964329, 47.3214091 ], + [ 7.8964504, 47.3215499 ], + [ 7.8964787, 47.3216898 ], + [ 7.8965178, 47.3218286 ], + [ 7.8965674, 47.3219657 ], + [ 7.8966276, 47.3221009 ], + [ 7.8966981, 47.3222338 ], + [ 7.8967787, 47.322364 ], + [ 7.8968693, 47.3224912 ], + [ 7.8969694, 47.3226149 ], + [ 7.897079, 47.3227349 ], + [ 7.8971976999999995, 47.3228509 ], + [ 7.8973251, 47.3229625 ], + [ 7.897461, 47.3230693 ], + [ 7.8976049, 47.3231713 ], + [ 7.8977564000000005, 47.3232679 ], + [ 7.8979152, 47.323359 ], + [ 7.8980806999999995, 47.3234444 ], + [ 7.8982526, 47.3235237 ], + [ 7.8984304, 47.3235968 ], + [ 7.8986136, 47.3236635 ], + [ 7.8988016, 47.3237235 ], + [ 7.898994, 47.3237768 ], + [ 7.8991903, 47.3238232 ], + [ 7.8993898, 47.3238625 ], + [ 7.8995921, 47.3238947 ], + [ 7.8997966, 47.323919599999996 ], + [ 7.9000028, 47.3239373 ], + [ 7.90021, 47.3239475 ], + [ 7.9004177, 47.3239504 ], + [ 7.9006254, 47.3239459 ], + [ 7.9008324, 47.3239339 ], + [ 7.9010382, 47.3239147 ], + [ 7.9012423, 47.3238881 ], + [ 7.901444, 47.3238543 ], + [ 7.9016428, 47.3238134 ], + [ 7.9018383, 47.3237655 ], + [ 7.9020297, 47.3237106 ], + [ 7.9022167, 47.3236491 ], + [ 7.9023987, 47.3235809 ], + [ 7.9025752, 47.3235064 ], + [ 7.9027458, 47.3234257 ], + [ 7.9029098, 47.3233391 ], + [ 7.903067, 47.3232467 ], + [ 7.9032169, 47.3231488 ], + [ 7.903359, 47.3230458 ], + [ 7.903493, 47.3229378 ], + [ 7.9036185, 47.3228252 ], + [ 7.9037351000000005, 47.3227083 ], + [ 7.9038426, 47.3225875 ], + [ 7.9039407, 47.3224629 ], + [ 7.9040289999999995, 47.322335 ], + [ 7.9041074, 47.3222042 ], + [ 7.9041756, 47.3220708 ], + [ 7.9042334, 47.3219351 ], + [ 7.9042807, 47.3217975 ], + [ 7.9043173, 47.3216585 ], + [ 7.9043432, 47.3215183 ], + [ 7.9043583, 47.3213774 ], + [ 7.9043624999999995, 47.3212362 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "ABG0001", + "country" : "CHE", + "name" : [ + { + "text" : "Jugendheim Aarburg", + "lang" : "de-CH" + }, + { + "text" : "Jugendheim Aarburg", + "lang" : "fr-CH" + }, + { + "text" : "Jugendheim Aarburg", + "lang" : "it-CH" + }, + { + "text" : "Jugendheim Aarburg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Jugendheim Aarburg", + "lang" : "de-CH" + }, + { + "text" : "Jugendheim Aarburg", + "lang" : "fr-CH" + }, + { + "text" : "Jugendheim Aarburg", + "lang" : "it-CH" + }, + { + "text" : "Jugendheim Aarburg", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Direktion", + "lang" : "de-CH" + }, + { + "text" : "Direktion", + "lang" : "fr-CH" + }, + { + "text" : "Direktion", + "lang" : "it-CH" + }, + { + "text" : "Direktion", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ag.ch/de/verwaltung/dvi/strafverfolgung-strafvollzug/strafvollzug/jugendheim-aarburg", + "email" : "jugendheim@ag.ch", + "phone" : "0041627870101", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7192241, 47.5353009 ], + [ 7.7193191, 47.5351851 ], + [ 7.7193584, 47.5351206 ], + [ 7.719428, 47.5349978 ], + [ 7.7194301, 47.534984 ], + [ 7.7194316, 47.5349702 ], + [ 7.7194323, 47.5349563 ], + [ 7.7194323, 47.5349424 ], + [ 7.7194316, 47.5349285 ], + [ 7.7194302, 47.5349147 ], + [ 7.7194281, 47.5349009 ], + [ 7.7194251, 47.534887 ], + [ 7.7194214, 47.5348731 ], + [ 7.719417, 47.5348594 ], + [ 7.7194119, 47.5348458 ], + [ 7.7194061, 47.5348323 ], + [ 7.7193995, 47.534819 ], + [ 7.7193923, 47.5348058 ], + [ 7.7193844, 47.5347928 ], + [ 7.7193758, 47.53478 ], + [ 7.7193679, 47.5347691 ], + [ 7.7193591999999995, 47.5347585 ], + [ 7.7193497, 47.5347481 ], + [ 7.7193395, 47.5347382 ], + [ 7.7193286, 47.5347285 ], + [ 7.719317, 47.5347193 ], + [ 7.7193047, 47.5347105 ], + [ 7.7192918, 47.534702 ], + [ 7.7192783, 47.5346941 ], + [ 7.7192642, 47.5346866 ], + [ 7.7192492999999995, 47.5346795 ], + [ 7.719234, 47.534673 ], + [ 7.7192181, 47.5346671 ], + [ 7.7192019, 47.5346616 ], + [ 7.7191852, 47.5346568 ], + [ 7.7191683, 47.5346525 ], + [ 7.719151, 47.5346487 ], + [ 7.7191335, 47.5346456 ], + [ 7.7191157, 47.5346431 ], + [ 7.7190978, 47.5346412 ], + [ 7.7190746, 47.5346402 ], + [ 7.7190514, 47.5346396 ], + [ 7.7190281, 47.5346394 ], + [ 7.7190048, 47.5346398 ], + [ 7.7189816, 47.5346407 ], + [ 7.7189584, 47.534642 ], + [ 7.7189353, 47.5346438 ], + [ 7.7189122999999995, 47.5346461 ], + [ 7.7188869, 47.5346493 ], + [ 7.7188617, 47.534653 ], + [ 7.7188365999999995, 47.5346573 ], + [ 7.7188118, 47.5346622 ], + [ 7.7187873, 47.5346676 ], + [ 7.7187631, 47.5346736 ], + [ 7.7187391, 47.5346802 ], + [ 7.7185366, 47.5347496 ], + [ 7.7183875, 47.5347999 ], + [ 7.7183288, 47.5348197 ], + [ 7.7183588, 47.534829 ], + [ 7.7183775, 47.5348347 ], + [ 7.7186921, 47.5347365 ], + [ 7.7187532999999995, 47.5347634 ], + [ 7.7187703, 47.534758 ], + [ 7.7187877, 47.5347533 ], + [ 7.7188055, 47.5347491 ], + [ 7.7188235, 47.5347457 ], + [ 7.7188418, 47.5347428 ], + [ 7.7188604, 47.5347407 ], + [ 7.718879, 47.5347392 ], + [ 7.7188977, 47.5347384 ], + [ 7.7189165, 47.5347382 ], + [ 7.7189353, 47.5347388 ], + [ 7.718954, 47.53474 ], + [ 7.7189725, 47.5347419 ], + [ 7.7189909, 47.5347445 ], + [ 7.7190091, 47.5347477 ], + [ 7.719027, 47.5347516 ], + [ 7.7190445, 47.5347561 ], + [ 7.7190617, 47.5347612 ], + [ 7.7190785, 47.534767 ], + [ 7.7190947, 47.5347734 ], + [ 7.7191105, 47.5347803 ], + [ 7.7191257, 47.5347878 ], + [ 7.7191402, 47.5347958 ], + [ 7.7191541, 47.5348044 ], + [ 7.7191673, 47.5348134 ], + [ 7.7191798, 47.5348229 ], + [ 7.7191916, 47.5348328 ], + [ 7.7192025, 47.5348432 ], + [ 7.7192126, 47.5348539 ], + [ 7.7192218, 47.534864999999996 ], + [ 7.7192301, 47.5348764 ], + [ 7.7192376, 47.534888 ], + [ 7.7192441, 47.5349 ], + [ 7.7192495999999995, 47.5349121 ], + [ 7.7192542, 47.5349244 ], + [ 7.7192579, 47.5349369 ], + [ 7.7192605, 47.5349495 ], + [ 7.7192621, 47.5349622 ], + [ 7.7192627, 47.5349749 ], + [ 7.7192624, 47.5349876 ], + [ 7.7192679, 47.5349901 ], + [ 7.7190654, 47.535201 ], + [ 7.7191341, 47.5352307 ], + [ 7.7191212, 47.5352442 ], + [ 7.7192241, 47.5353009 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns163", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Ergolz", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Ergolz", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Ergolz", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Ergolz", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.2466104, 46.2233167 ], + [ 6.246974, 46.2235459 ], + [ 6.2468592, 46.2239187 ], + [ 6.2468579, 46.2239815 ], + [ 6.2468568, 46.2240351 ], + [ 6.2470302, 46.2248717 ], + [ 6.247568, 46.2256301 ], + [ 6.2475945, 46.2256491 ], + [ 6.2475793, 46.225669 ], + [ 6.2473706, 46.2265016 ], + [ 6.2473684, 46.2266053 ], + [ 6.2476416, 46.2276402 ], + [ 6.2484641, 46.2285239 ], + [ 6.2497111, 46.2291222 ], + [ 6.251193, 46.229344 ], + [ 6.2519724, 46.2293529 ], + [ 6.2521102, 46.2293393 ], + [ 6.2527664, 46.2293465 ], + [ 6.2539711, 46.2292276 ], + [ 6.2550639, 46.2288561 ], + [ 6.2551505, 46.2287979 ], + [ 6.2554194, 46.2287061 ], + [ 6.2562919, 46.2281172 ], + [ 6.2563534, 46.2280363 ], + [ 6.2570334, 46.2277479 ], + [ 6.2579256, 46.2268994 ], + [ 6.2579697, 46.2267736 ], + [ 6.2582202, 46.2266085 ], + [ 6.2583181, 46.2265197 ], + [ 6.2583182, 46.2265196 ], + [ 6.258324, 46.2265144 ], + [ 6.2586372, 46.2260725 ], + [ 6.2590593, 46.225538 ], + [ 6.2590974, 46.2253978 ], + [ 6.2591403, 46.2253433 ], + [ 6.2593661, 46.2245117 ], + [ 6.2593635, 46.2244977 ], + [ 6.2602486, 46.2241005 ], + [ 6.2610214, 46.2233233 ], + [ 6.2609098, 46.2241401 ], + [ 6.2609124, 46.2241578 ], + [ 6.2612237, 46.2249749 ], + [ 6.2618839, 46.2256852 ], + [ 6.2628283, 46.2262188 ], + [ 6.2639642, 46.2265235 ], + [ 6.2651802, 46.2265694 ], + [ 6.2652032, 46.2265677 ], + [ 6.2663919, 46.2263466 ], + [ 6.2674214, 46.2258788 ], + [ 6.2681887, 46.2252111 ], + [ 6.268617, 46.2244104 ], + [ 6.2686633, 46.2235569 ], + [ 6.2686602, 46.223539099999996 ], + [ 6.2681938, 46.222548 ], + [ 6.2672209, 46.2217536 ], + [ 6.2658868, 46.2212744 ], + [ 6.2643906, 46.2211819 ], + [ 6.2643682, 46.2211836 ], + [ 6.2629235, 46.2214953 ], + [ 6.2617595999999995, 46.2221662 ], + [ 6.2612222, 46.222872 ], + [ 6.2614286, 46.2222044 ], + [ 6.261155, 46.2211686 ], + [ 6.2603313, 46.2202844 ], + [ 6.2590828, 46.2196863 ], + [ 6.2588963, 46.2196585 ], + [ 6.2590434, 46.2191827 ], + [ 6.2587699, 46.218147 ], + [ 6.2579462, 46.2172628 ], + [ 6.2566977999999995, 46.2166646 ], + [ 6.2562711, 46.216601 ], + [ 6.2554269, 46.2161965 ], + [ 6.2539438, 46.2159755 ], + [ 6.2524518, 46.2161653 ], + [ 6.2511779, 46.216737 ], + [ 6.2503161, 46.2176035 ], + [ 6.2500876, 46.2183421 ], + [ 6.249461, 46.2183524 ], + [ 6.2491649, 46.2183535 ], + [ 6.2491345, 46.2183578 ], + [ 6.2486489, 46.2183659 ], + [ 6.2486078, 46.2183721 ], + [ 6.2472544, 46.2187752 ], + [ 6.2462140999999995, 46.2194989 ], + [ 6.2461906, 46.219523 ], + [ 6.2457281, 46.2201724 ], + [ 6.245531, 46.2208839 ], + [ 6.2456138, 46.2216061 ], + [ 6.2456664, 46.221774 ], + [ 6.2458752, 46.2221073 ], + [ 6.2459169, 46.2222351 ], + [ 6.2459333, 46.2222635 ], + [ 6.2459372, 46.2222942 ], + [ 6.2459631, 46.222366 ], + [ 6.2461601, 46.2226554 ], + [ 6.2463762, 46.2230286 ], + [ 6.2464629, 46.2231001 ], + [ 6.2466104, 46.2233167 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-4", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.1180911, 47.3101869 ], + [ 8.1180838, 47.3100457 ], + [ 8.1180657, 47.309905 ], + [ 8.1180368, 47.3097651 ], + [ 8.1179972, 47.3096264 ], + [ 8.117947, 47.3094894 ], + [ 8.1178863, 47.3093543 ], + [ 8.1178153, 47.3092215 ], + [ 8.1177341, 47.3090915 ], + [ 8.1176431, 47.3089645 ], + [ 8.1175424, 47.3088409 ], + [ 8.1174323, 47.3087211 ], + [ 8.1173132, 47.3086054 ], + [ 8.1171854, 47.3084941 ], + [ 8.1170491, 47.3083874 ], + [ 8.1169048, 47.3082858 ], + [ 8.1167529, 47.3081895 ], + [ 8.1165938, 47.3080986 ], + [ 8.116428, 47.3080136 ], + [ 8.1162558, 47.3079346 ], + [ 8.1160778, 47.3078618 ], + [ 8.1158944, 47.3077955 ], + [ 8.1157061, 47.3077358 ], + [ 8.1155136, 47.3076829 ], + [ 8.1153172, 47.3076369 ], + [ 8.1151175, 47.3075979 ], + [ 8.1149152, 47.3075661 ], + [ 8.1147106, 47.3075416 ], + [ 8.1145045, 47.3075243 ], + [ 8.1142973, 47.3075145 ], + [ 8.1140896, 47.307512 ], + [ 8.113882, 47.3075169 ], + [ 8.1136751, 47.3075292 ], + [ 8.1134694, 47.3075488 ], + [ 8.1132655, 47.3075758 ], + [ 8.113064, 47.3076099 ], + [ 8.1128654, 47.3076512 ], + [ 8.1126702, 47.3076995 ], + [ 8.112479, 47.3077547 ], + [ 8.1122923, 47.3078166 ], + [ 8.1121106, 47.3078851 ], + [ 8.111934399999999, 47.3079599 ], + [ 8.1117643, 47.3080409 ], + [ 8.1116006, 47.3081279 ], + [ 8.1114438, 47.3082205 ], + [ 8.1112944, 47.3083187 ], + [ 8.1111527, 47.308422 ], + [ 8.1110192, 47.3085302 ], + [ 8.1108941, 47.308643000000004 ], + [ 8.110778, 47.3087601 ], + [ 8.110671, 47.3088812 ], + [ 8.1105734, 47.3090059 ], + [ 8.1104856, 47.3091339 ], + [ 8.1104078, 47.3092649 ], + [ 8.1103401, 47.3093984 ], + [ 8.1102828, 47.3095342 ], + [ 8.1102361, 47.3096719 ], + [ 8.1101999, 47.309811 ], + [ 8.1101746, 47.3099512 ], + [ 8.1101601, 47.3100921 ], + [ 8.1101564, 47.3102334 ], + [ 8.1101636, 47.3103746 ], + [ 8.1101817, 47.3105153 ], + [ 8.1102106, 47.3106552 ], + [ 8.1102502, 47.3107939 ], + [ 8.1103004, 47.3109309 ], + [ 8.1103611, 47.311066 ], + [ 8.1104321, 47.3111988 ], + [ 8.1105132, 47.3113288 ], + [ 8.1106042, 47.3114558 ], + [ 8.1107049, 47.3115794 ], + [ 8.110815, 47.3116992 ], + [ 8.1109341, 47.3118149 ], + [ 8.1110619, 47.3119263 ], + [ 8.1111982, 47.3120329 ], + [ 8.1113425, 47.3121345 ], + [ 8.1114944, 47.3122309 ], + [ 8.1116535, 47.3123217 ], + [ 8.1118193, 47.3124068 ], + [ 8.1119915, 47.3124858 ], + [ 8.1121696, 47.3125585 ], + [ 8.112353, 47.3126249 ], + [ 8.1125412, 47.3126846 ], + [ 8.1127338, 47.3127375 ], + [ 8.1129302, 47.3127835 ], + [ 8.1131299, 47.3128225 ], + [ 8.1133323, 47.3128543 ], + [ 8.1135368, 47.3128789 ], + [ 8.113743, 47.3128961 ], + [ 8.1139502, 47.312906 ], + [ 8.1141579, 47.3129084 ], + [ 8.1143655, 47.3129035 ], + [ 8.1145724, 47.3128912 ], + [ 8.1147781, 47.3128716 ], + [ 8.114982, 47.3128446 ], + [ 8.1151836, 47.3128105 ], + [ 8.1153823, 47.3127692 ], + [ 8.1155775, 47.3127209 ], + [ 8.1157687, 47.3126657 ], + [ 8.1159554, 47.3126038 ], + [ 8.1161371, 47.3125353 ], + [ 8.1163132, 47.3124605 ], + [ 8.1164834, 47.3123794 ], + [ 8.1166471, 47.3122925 ], + [ 8.1168039, 47.3121998 ], + [ 8.1169533, 47.3121017 ], + [ 8.117095, 47.3119984 ], + [ 8.1172285, 47.3118902 ], + [ 8.1173536, 47.3117774 ], + [ 8.1174697, 47.3116602 ], + [ 8.1175767, 47.3115392 ], + [ 8.1176742, 47.3114144 ], + [ 8.117762, 47.3112864 ], + [ 8.1178399, 47.3111554 ], + [ 8.1179075, 47.3110219 ], + [ 8.1179648, 47.3108861 ], + [ 8.1180115, 47.3107484 ], + [ 8.1180476, 47.3106093 ], + [ 8.1180729, 47.3104691 ], + [ 8.1180874, 47.3103282 ], + [ 8.1180911, 47.3101869 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "UKU0001", + "country" : "CHE", + "name" : [ + { + "text" : "Bezirksgefängnis Kulm", + "lang" : "de-CH" + }, + { + "text" : "Bezirksgefängnis Kulm", + "lang" : "fr-CH" + }, + { + "text" : "Bezirksgefängnis Kulm", + "lang" : "it-CH" + }, + { + "text" : "Bezirksgefängnis Kulm", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Bezirksgefängnis Kulm", + "lang" : "de-CH" + }, + { + "text" : "Bezirksgefängnis Kulm", + "lang" : "fr-CH" + }, + { + "text" : "Bezirksgefängnis Kulm", + "lang" : "it-CH" + }, + { + "text" : "Bezirksgefängnis Kulm", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Gefängnisleitung", + "lang" : "de-CH" + }, + { + "text" : "Gefängnisleitung", + "lang" : "fr-CH" + }, + { + "text" : "Gefängnisleitung", + "lang" : "it-CH" + }, + { + "text" : "Gefängnisleitung", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ag.ch/de/verwaltung/dvi/strafverfolgung-strafvollzug/strafvollzug/bezirksgefaengnisse", + "email" : "justizvollzug@ag.ch", + "phone" : "0041627685580", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.1086002, 46.3270623 ], + [ 7.1075161, 46.3268351 ], + [ 7.1064889, 46.3266198 ], + [ 7.1037928, 46.3260541 ], + [ 7.1026516, 46.3254039 ], + [ 7.10032, 46.3240773 ], + [ 7.097355, 46.3233388 ], + [ 7.0987325, 46.3239934 ], + [ 7.0995801, 46.3244493 ], + [ 7.1002105, 46.3253876 ], + [ 7.1009477, 46.3264873 ], + [ 7.1010304, 46.3265505 ], + [ 7.1026356, 46.3277698 ], + [ 7.1039205, 46.3289322 ], + [ 7.1040543, 46.3289182 ], + [ 7.1042168, 46.3288899 ], + [ 7.1044314, 46.328842 ], + [ 7.1045354, 46.328818 ], + [ 7.1047668, 46.3287719 ], + [ 7.1048344, 46.3287667 ], + [ 7.1049226, 46.328776 ], + [ 7.1050419, 46.3288096 ], + [ 7.1051546, 46.328854 ], + [ 7.1053347, 46.3289103 ], + [ 7.1054579, 46.3289404 ], + [ 7.105546, 46.3289766 ], + [ 7.1057325, 46.3290563 ], + [ 7.1060602, 46.3292021 ], + [ 7.1063968, 46.3293614 ], + [ 7.1064991, 46.3294184 ], + [ 7.1065948, 46.3294682 ], + [ 7.1066415, 46.3294881 ], + [ 7.1067581, 46.3295271 ], + [ 7.106915, 46.3295609 ], + [ 7.1071951, 46.3296247 ], + [ 7.1075037, 46.3297056 ], + [ 7.1075828, 46.3297265 ], + [ 7.1077487, 46.3297729 ], + [ 7.1079641, 46.3298104 ], + [ 7.108038, 46.3298205 ], + [ 7.1084983, 46.3290932 ], + [ 7.1087922, 46.3288125 ], + [ 7.108991, 46.3285774 ], + [ 7.1092349, 46.3279718 ], + [ 7.1099883, 46.3273827 ], + [ 7.1086002, 46.3270623 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00041", + "country" : "CHE", + "name" : [ + { + "text" : "Secteur Perche", + "lang" : "de-CH" + }, + { + "text" : "Secteur Perche", + "lang" : "fr-CH" + }, + { + "text" : "Secteur Perche", + "lang" : "it-CH" + }, + { + "text" : "Secteur Perche", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "startDateTime" : "2024-11-15T00:00:00+01:00", + "endDateTime" : "2025-05-31T00:00:00+02:00" + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Generaldirektion für Umwelt", + "lang" : "de-CH" + }, + { + "text" : "Direction générale de l'environnement", + "lang" : "fr-CH" + }, + { + "text" : "Direzione generale dell'Ambiente", + "lang" : "it-CH" + }, + { + "text" : "Environment Department", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.dge@vd.ch", + "phone" : "0041213164422", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.9499168, 47.2149111 ], + [ 8.9493774, 47.2148608 ], + [ 8.9491938, 47.2149087 ], + [ 8.9490432, 47.2149221 ], + [ 8.9488581, 47.214913 ], + [ 8.9487059, 47.2148692 ], + [ 8.9485284, 47.2148372 ], + [ 8.9483418, 47.2147767 ], + [ 8.948137299999999, 47.2146649 ], + [ 8.9479669, 47.2145643 ], + [ 8.9477037, 47.2144762 ], + [ 8.947466, 47.2143878 ], + [ 8.9471026, 47.2142895 ], + [ 8.9468586, 47.2142982 ], + [ 8.946547, 47.2142507 ], + [ 8.9461007, 47.2142279 ], + [ 8.9457989, 47.2142373 ], + [ 8.9455907, 47.2143142 ], + [ 8.9453543, 47.2142715 ], + [ 8.945008, 47.2141958 ], + [ 8.9443152, 47.2140617 ], + [ 8.9437747, 47.2139428 ], + [ 8.943302, 47.213863 ], + [ 8.9427704, 47.2137669 ], + [ 8.942112999999999, 47.2136895 ], + [ 8.9416578, 47.2136437 ], + [ 8.9412121, 47.2136093 ], + [ 8.9407074, 47.2135928 ], + [ 8.9402706, 47.2136096 ], + [ 8.940027, 47.213607 ], + [ 8.9396007, 47.2136751 ], + [ 8.939324599999999, 47.2137187 ], + [ 8.9392478, 47.2136854 ], + [ 8.9388147, 47.2135136 ], + [ 8.9383991, 47.2133474 ], + [ 8.9381027, 47.2132825 ], + [ 8.9378407, 47.2132116 ], + [ 8.9375545, 47.2131866 ], + [ 8.9371329, 47.213129 ], + [ 8.9367706, 47.2130993 ], + [ 8.9364176, 47.213075 ], + [ 8.9360113, 47.2129773 ], + [ 8.935633, 47.2129649 ], + [ 8.9352378, 47.2129356 ], + [ 8.9349253, 47.2128881 ], + [ 8.9345369, 47.2128072 ], + [ 8.9342069, 47.2127199 ], + [ 8.9338768, 47.2126326 ], + [ 8.9335715, 47.2125449 ], + [ 8.9332488, 47.2123946 ], + [ 8.9329597, 47.212267 ], + [ 8.9326608, 47.2120821 ], + [ 8.9324155, 47.2120165 ], + [ 8.932086, 47.2119464 ], + [ 8.9317305, 47.2118651 ], + [ 8.931377, 47.2118238 ], + [ 8.9310491, 47.2118107 ], + [ 8.9305875, 47.2118279 ], + [ 8.930385, 47.211819 ], + [ 8.9301663, 47.2117874 ], + [ 8.9299049, 47.2117621 ], + [ 8.9295086, 47.2116985 ], + [ 8.929221, 47.2116221 ], + [ 8.9289756, 47.2115508 ], + [ 8.9287043, 47.2114686 ], + [ 8.9285019, 47.2114311 ], + [ 8.9283584, 47.2114043 ], + [ 8.9281985, 47.211412 ], + [ 8.9280207, 47.2113685 ], + [ 8.927882199999999, 47.2113402 ], + [ 8.9278357, 47.2113308 ], + [ 8.9277508, 47.2113032 ], + [ 8.9271536, 47.2111052 ], + [ 8.926634, 47.2109373 ], + [ 8.9262172, 47.2108134 ], + [ 8.9258673, 47.2106938 ], + [ 8.9254769, 47.2106036 ], + [ 8.9250797, 47.210531 ], + [ 8.9246976, 47.2104408 ], + [ 8.9243231, 47.2103274 ], + [ 8.9239564, 47.2101968 ], + [ 8.9238097, 47.2101135 ], + [ 8.9235694, 47.2099861 ], + [ 8.9233478, 47.20991 ], + [ 8.9229387, 47.2097687 ], + [ 8.9224355, 47.2095946 ], + [ 8.9220269, 47.2094704 ], + [ 8.9214512, 47.2093611 ], + [ 8.9206802, 47.2091978 ], + [ 8.9200527, 47.2090664 ], + [ 8.9194949, 47.2089737 ], + [ 8.919264, 47.208892 ], + [ 8.9189401, 47.2087835 ], + [ 8.9186239, 47.2086576 ], + [ 8.9183212, 47.2086347 ], + [ 8.9178824, 47.2085799 ], + [ 8.9175448, 47.2085461 ], + [ 8.9173055, 47.2084532 ], + [ 8.917036, 47.2084354 ], + [ 8.9166636, 47.2083679 ], + [ 8.9163253, 47.2083055 ], + [ 8.9159106, 47.2082273 ], + [ 8.9156049, 47.2081528 ], + [ 8.915096, 47.208042 ], + [ 8.9147593, 47.2080082 ], + [ 8.9142682, 47.2079143 ], + [ 8.9138582, 47.2077672 ], + [ 8.9133846, 47.2076786 ], + [ 8.9130104, 47.2075711 ], + [ 8.9123992, 47.2074277 ], + [ 8.9121718, 47.2074091 ], + [ 8.9118417, 47.2073466 ], + [ 8.9116476, 47.2073409 ], + [ 8.9113407, 47.207402 ], + [ 8.911088, 47.2073953 ], + [ 8.9106929, 47.2073684 ], + [ 8.9104817, 47.207338 ], + [ 8.9101538, 47.207327 ], + [ 8.9100314, 47.2073454 ], + [ 8.9099739, 47.2074451 ], + [ 8.9094266, 47.2081553 ], + [ 8.909908099999999, 47.2082323 ], + [ 8.9103823, 47.2083152 ], + [ 8.9110508, 47.2084402 ], + [ 8.911618, 47.2085441 ], + [ 8.912375, 47.2087649 ], + [ 8.9133432, 47.2090162 ], + [ 8.9145475, 47.2093031 ], + [ 8.9158869, 47.2095817 ], + [ 8.916982, 47.2098534 ], + [ 8.9186163, 47.210172299999996 ], + [ 8.9199232, 47.2104974 ], + [ 8.9210843, 47.2107391 ], + [ 8.922388399999999, 47.2109897 ], + [ 8.9233046, 47.2112074 ], + [ 8.9238218, 47.2114092 ], + [ 8.9241269, 47.211491 ], + [ 8.9249733, 47.2117491 ], + [ 8.9257868, 47.2120133 ], + [ 8.9265345, 47.2123126 ], + [ 8.9273512, 47.212691 ], + [ 8.9281342, 47.2130697 ], + [ 8.9288339, 47.2134839 ], + [ 8.9295088, 47.2138925 ], + [ 8.9301992, 47.2142667 ], + [ 8.9306524, 47.2145697 ], + [ 8.9312592, 47.2149335 ], + [ 8.9317642, 47.2152872 ], + [ 8.9321077, 47.2155572 ], + [ 8.9324525, 47.2158785 ], + [ 8.9331385, 47.2157672 ], + [ 8.9336895, 47.2156402 ], + [ 8.9342235, 47.2155251 ], + [ 8.9348404, 47.2153345 ], + [ 8.9356831, 47.2151354 ], + [ 8.9365835, 47.2148728 ], + [ 8.9374026, 47.214714 ], + [ 8.9380306, 47.2146261 ], + [ 8.9383235, 47.2145939 ], + [ 8.9387757, 47.2145369 ], + [ 8.9390108, 47.2145339 ], + [ 8.9392558, 47.214588 ], + [ 8.939400599999999, 47.2146604 ], + [ 8.9396179, 47.2146121 ], + [ 8.9397691, 47.2146159 ], + [ 8.939957, 47.2147277 ], + [ 8.9400698, 47.2148634 ], + [ 8.9402063, 47.214936 ], + [ 8.9404602, 47.2150128 ], + [ 8.9406885, 47.2150614 ], + [ 8.9406828, 47.2151529 ], + [ 8.940743, 47.2152093 ], + [ 8.9408109, 47.2152485 ], + [ 8.9410395, 47.2153085 ], + [ 8.94105, 47.2157082 ], + [ 8.9413668, 47.216527 ], + [ 8.9416446, 47.2171635 ], + [ 8.9420774, 47.2182608 ], + [ 8.9431577, 47.2181158 ], + [ 8.9455607, 47.217817 ], + [ 8.9472087, 47.2175793 ], + [ 8.9494278, 47.217317 ], + [ 8.9507426, 47.2171461 ], + [ 8.9517887, 47.2169901 ], + [ 8.9521555, 47.2168883 ], + [ 8.9519221, 47.2157256 ], + [ 8.9518764, 47.2156006 ], + [ 8.9518059, 47.2154986 ], + [ 8.9516106, 47.215421 ], + [ 8.9513562, 47.2153271 ], + [ 8.9510681, 47.2152336 ], + [ 8.9506868, 47.2151184 ], + [ 8.950289099999999, 47.2150034 ], + [ 8.9499168, 47.2149111 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "WZV0039", + "country" : "CHE", + "name" : [ + { + "text" : "Wasser- und Zugvogelreservat Zürich-Obersee: Guntliweid bis Bätzimatt", + "lang" : "de-CH" + }, + { + "text" : "Réserve d'oiseaux d'eau et de migrateurs Zürich-Obersee: Guntliweid bis Bätzimatt", + "lang" : "fr-CH" + }, + { + "text" : "Riserva di uccelli acquatici e migratori Zürich-Obersee: Guntliweid bis Bätzimatt", + "lang" : "it-CH" + }, + { + "text" : "Water Bird and Migratory Bird Reserves Zürich-Obersee: Guntliweid bis Bätzimatt", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.2987921, 46.6779419 ], + [ 7.2800986, 46.65716 ], + [ 7.2628302, 46.664196 ], + [ 7.282372, 46.6840148 ], + [ 7.2987921, 46.6779419 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSWS001", + "country" : "CHE", + "name" : [ + { + "text" : "LSWS Lac Noir", + "lang" : "de-CH" + }, + { + "text" : "LSWS Lac Noir", + "lang" : "fr-CH" + }, + { + "text" : "LSWS Lac Noir", + "lang" : "it-CH" + }, + { + "text" : "LSWS Lac Noir", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "startDateTime" : "2024-11-01T00:00:00+01:00", + "endDateTime" : "2025-04-01T00:00:00+02:00" + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Aérodrome Régional Fribourg Ecuvillens SA", + "lang" : "de-CH" + }, + { + "text" : "Aérodrome Régional Fribourg Ecuvillens SA", + "lang" : "fr-CH" + }, + { + "text" : "Aérodrome Régional Fribourg Ecuvillens SA", + "lang" : "it-CH" + }, + { + "text" : "Aérodrome Régional Fribourg Ecuvillens SA", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Chef d'aérodrome", + "lang" : "de-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "fr-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "it-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.aerodrome-ecuvillens.ch/index.php?page=./drones/drones_LSGE.htm", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6757553, 47.4114619 ], + [ 7.6756743, 47.411146 ], + [ 7.6753422, 47.4108944 ], + [ 7.6748104999999995, 47.4107091 ], + [ 7.6740551, 47.4102988 ], + [ 7.6731548, 47.4099333 ], + [ 7.6722253, 47.409385 ], + [ 7.6715313, 47.409225 ], + [ 7.6714401, 47.4092871 ], + [ 7.6722503, 47.4097636 ], + [ 7.6722537, 47.4100492 ], + [ 7.6726763, 47.4101845 ], + [ 7.6724423999999996, 47.4105758 ], + [ 7.6734057, 47.4108062 ], + [ 7.6730801, 47.4111412 ], + [ 7.6725046, 47.4109698 ], + [ 7.6721689, 47.4110238 ], + [ 7.6711686, 47.4107761 ], + [ 7.6706059, 47.4106497 ], + [ 7.6703048, 47.4107759 ], + [ 7.6692341, 47.4104504 ], + [ 7.6692246, 47.4106323 ], + [ 7.6693418, 47.410783 ], + [ 7.6697541000000005, 47.4109599 ], + [ 7.6709148, 47.4111999 ], + [ 7.6719259, 47.4113566 ], + [ 7.6729326, 47.4115022 ], + [ 7.6742479, 47.4115005 ], + [ 7.6748556, 47.4114688 ], + [ 7.6748636999999995, 47.4114683 ], + [ 7.6752562, 47.411765 ], + [ 7.6752994999999995, 47.411797 ], + [ 7.6757553, 47.4114619 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns071", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Widenholz", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Widenholz", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Widenholz", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Widenholz", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8990562, 47.344018 ], + [ 7.8990496, 47.3438768 ], + [ 7.8990321, 47.3437361 ], + [ 7.8990037, 47.3435961 ], + [ 7.8989647, 47.3434574 ], + [ 7.898915, 47.3433202 ], + [ 7.8988548, 47.343185 ], + [ 7.8987842, 47.3430521 ], + [ 7.8987036, 47.3429219 ], + [ 7.898613, 47.3427948 ], + [ 7.8985128, 47.342671 ], + [ 7.8984031, 47.342551 ], + [ 7.8982844, 47.3424351 ], + [ 7.8981569, 47.3423235 ], + [ 7.898021, 47.3422166 ], + [ 7.8978771, 47.3421147 ], + [ 7.8977255, 47.3420181 ], + [ 7.8975667, 47.341927 ], + [ 7.8974011, 47.3418416 ], + [ 7.8972291, 47.3417623 ], + [ 7.8970513, 47.3416892 ], + [ 7.8968679999999996, 47.3416225 ], + [ 7.8966799, 47.3415624 ], + [ 7.8964875, 47.3415091 ], + [ 7.8962912, 47.3414627 ], + [ 7.8960915, 47.3414234 ], + [ 7.8958892, 47.3413912 ], + [ 7.8956846, 47.3413663 ], + [ 7.8954784, 47.3413487 ], + [ 7.8952711, 47.3413384 ], + [ 7.8950633, 47.3413355 ], + [ 7.8948556, 47.3413401 ], + [ 7.8946485, 47.341352 ], + [ 7.8944426, 47.3413712 ], + [ 7.8942385, 47.3413978 ], + [ 7.8940367, 47.3414315 ], + [ 7.8938378, 47.3414724 ], + [ 7.8936422, 47.3415204 ], + [ 7.8934507, 47.3415752 ], + [ 7.8932636, 47.3416367 ], + [ 7.8930816, 47.3417049 ], + [ 7.892905, 47.3417794 ], + [ 7.8927344, 47.3418601 ], + [ 7.8925702, 47.3419467 ], + [ 7.892413, 47.3420391 ], + [ 7.8922631, 47.3421369 ], + [ 7.8921209, 47.3422399 ], + [ 7.8919868, 47.3423479 ], + [ 7.8918612, 47.3424605 ], + [ 7.8917445, 47.3425773 ], + [ 7.8916369, 47.3426982 ], + [ 7.8915388, 47.3428227 ], + [ 7.8914504, 47.3429506 ], + [ 7.891372, 47.3430814 ], + [ 7.8913037, 47.3432149 ], + [ 7.8912458, 47.3433505 ], + [ 7.8911985, 47.3434881 ], + [ 7.8911618, 47.3436271 ], + [ 7.8911358, 47.3437673 ], + [ 7.8911207, 47.3439082 ], + [ 7.8911165, 47.3440494 ], + [ 7.8911231, 47.3441906 ], + [ 7.8911406, 47.3443314 ], + [ 7.8911689, 47.3444713 ], + [ 7.891208, 47.3446101 ], + [ 7.8912577, 47.3447473 ], + [ 7.8913177999999995, 47.3448825 ], + [ 7.8913884, 47.3450154 ], + [ 7.891469, 47.3451456 ], + [ 7.8915596, 47.3452727 ], + [ 7.8916598, 47.3453965 ], + [ 7.8917694, 47.3455165 ], + [ 7.8918881, 47.3456325 ], + [ 7.8920156, 47.345744 ], + [ 7.8921515, 47.3458509 ], + [ 7.8922954, 47.3459528 ], + [ 7.892447, 47.3460495 ], + [ 7.8926058, 47.3461406 ], + [ 7.8927715, 47.3462259 ], + [ 7.8929434, 47.3463053 ], + [ 7.8931213, 47.3463784 ], + [ 7.8933045, 47.3464451 ], + [ 7.8934926, 47.3465052 ], + [ 7.8936851, 47.3465585 ], + [ 7.8938815, 47.3466049 ], + [ 7.8940811, 47.3466442 ], + [ 7.8942835, 47.3466764 ], + [ 7.8944881, 47.3467013 ], + [ 7.8946943, 47.3467189 ], + [ 7.8949016, 47.3467292 ], + [ 7.8951094, 47.3467321 ], + [ 7.8953172, 47.3467276 ], + [ 7.8955243, 47.3467156 ], + [ 7.8957302, 47.3466964 ], + [ 7.8959343, 47.3466698 ], + [ 7.8961362, 47.3466361 ], + [ 7.8963351, 47.3465951 ], + [ 7.8965306, 47.3465472 ], + [ 7.8967222, 47.3464924 ], + [ 7.8969093, 47.3464308 ], + [ 7.8970914, 47.3463627 ], + [ 7.8972679, 47.3462882 ], + [ 7.8974385, 47.3462075 ], + [ 7.8976027, 47.3461208 ], + [ 7.89776, 47.3460285 ], + [ 7.8979099, 47.3459306 ], + [ 7.8980521, 47.3458276 ], + [ 7.8981861, 47.3457196 ], + [ 7.8983117, 47.3456071 ], + [ 7.8984284, 47.3454902 ], + [ 7.898536, 47.3453693 ], + [ 7.8986341, 47.3452448 ], + [ 7.8987225, 47.3451169 ], + [ 7.8988009, 47.3449861 ], + [ 7.8988691, 47.3448526 ], + [ 7.898927, 47.3447169 ], + [ 7.8989743, 47.3445794 ], + [ 7.899011, 47.3444403 ], + [ 7.8990369, 47.3443002 ], + [ 7.899052, 47.3441593 ], + [ 7.8990562, 47.344018 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "OLT0001", + "country" : "CHE", + "name" : [ + { + "text" : "Untersuchungsgefängnis Olten", + "lang" : "de-CH" + }, + { + "text" : "Untersuchungsgefängnis Olten", + "lang" : "fr-CH" + }, + { + "text" : "Untersuchungsgefängnis Olten", + "lang" : "it-CH" + }, + { + "text" : "Untersuchungsgefängnis Olten", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Justizvollzug des Kantons Solothurn", + "lang" : "de-CH" + }, + { + "text" : "Amt für Justizvollzug des Kantons Solothurn", + "lang" : "fr-CH" + }, + { + "text" : "Amt für Justizvollzug des Kantons Solothurn", + "lang" : "it-CH" + }, + { + "text" : "Amt für Justizvollzug des Kantons Solothurn", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Amtsleitung", + "lang" : "de-CH" + }, + { + "text" : "Direction de l'office", + "lang" : "fr-CH" + }, + { + "text" : "Direzione dell'ufficio", + "lang" : "it-CH" + }, + { + "text" : "Head of Division", + "lang" : "en-GB" + } + ], + "siteURL" : "https://so.ch/verwaltung/departement-des-innern/amt-fuer-justizvollzug/", + "email" : "ajuv@ddi.so.ch", + "phone" : "0041326276336", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.0127103, 46.3782321 ], + [ 7.0131147, 46.3790396 ], + [ 7.0149874, 46.3799102 ], + [ 7.0158954, 46.379973 ], + [ 7.0176527, 46.3791421 ], + [ 7.018259, 46.378905 ], + [ 7.0193847, 46.3787293 ], + [ 7.0201875, 46.3782834 ], + [ 7.0211026, 46.3774205 ], + [ 7.0225659, 46.3767719 ], + [ 7.0228076, 46.3766162 ], + [ 7.0228988, 46.3764196 ], + [ 7.0229307, 46.3761552 ], + [ 7.0228497, 46.3758751 ], + [ 7.0227475, 46.3756463 ], + [ 7.0225876, 46.3754703 ], + [ 7.0216148, 46.3753929 ], + [ 7.0209511, 46.3746591 ], + [ 7.020935, 46.3738836 ], + [ 7.0213544, 46.3727508 ], + [ 7.0219879, 46.3718266 ], + [ 7.0219261, 46.371588 ], + [ 7.0210999, 46.3722128 ], + [ 7.0204899, 46.3727782 ], + [ 7.0188441, 46.373176 ], + [ 7.0183825, 46.3742115 ], + [ 7.0180839, 46.375002 ], + [ 7.0166606, 46.3760204 ], + [ 7.0155967, 46.3766138 ], + [ 7.0144272, 46.3769242 ], + [ 7.0133638, 46.3776075 ], + [ 7.0127103, 46.3782321 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00011", + "country" : "CHE", + "name" : [ + { + "text" : "Tour de Famelon", + "lang" : "de-CH" + }, + { + "text" : "Tour de Famelon", + "lang" : "fr-CH" + }, + { + "text" : "Tour de Famelon", + "lang" : "it-CH" + }, + { + "text" : "Tour de Famelon", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "startDateTime" : "2024-11-15T00:00:00+01:00", + "endDateTime" : "2025-04-15T00:00:00+02:00" + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Generaldirektion für Umwelt", + "lang" : "de-CH" + }, + { + "text" : "Direction générale de l'environnement", + "lang" : "fr-CH" + }, + { + "text" : "Direzione generale dell'Ambiente", + "lang" : "it-CH" + }, + { + "text" : "Environment Department", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.dge@vd.ch", + "phone" : "0041213164422", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8822799, 47.4688062 ], + [ 7.8822883, 47.4688061 ], + [ 7.8823221, 47.4688061 ], + [ 7.882356, 47.4688068 ], + [ 7.8823897, 47.4688081 ], + [ 7.8824235, 47.4688099 ], + [ 7.8824571, 47.4688123 ], + [ 7.8824907, 47.4688153 ], + [ 7.8825240999999995, 47.4688189 ], + [ 7.8825574, 47.468823 ], + [ 7.8825904, 47.4688278 ], + [ 7.8826234, 47.4688331 ], + [ 7.8826561, 47.4688389 ], + [ 7.8829083, 47.4688909 ], + [ 7.883046, 47.4689226 ], + [ 7.8834034, 47.4690211 ], + [ 7.8835152, 47.4690426 ], + [ 7.8836105, 47.4690613 ], + [ 7.8836202, 47.4690643 ], + [ 7.8836297, 47.4690677 ], + [ 7.8836388, 47.4690714 ], + [ 7.8836476, 47.4690756 ], + [ 7.883656, 47.4690801 ], + [ 7.8836639, 47.4690849 ], + [ 7.8836714, 47.4690901 ], + [ 7.8836835, 47.4690966 ], + [ 7.883696, 47.4691026 ], + [ 7.8837089, 47.4691083 ], + [ 7.8837221, 47.4691135 ], + [ 7.8837357, 47.4691184 ], + [ 7.8837496, 47.4691228 ], + [ 7.8837638, 47.4691268 ], + [ 7.8840274, 47.4691784 ], + [ 7.8840512, 47.4691821 ], + [ 7.8840752, 47.4691854 ], + [ 7.8840993, 47.4691882 ], + [ 7.8841235, 47.4691906 ], + [ 7.8841478, 47.4691925 ], + [ 7.8841721, 47.4691939 ], + [ 7.8844256999999995, 47.4692111 ], + [ 7.8845221, 47.4692126 ], + [ 7.8846185, 47.4692136 ], + [ 7.8847148, 47.4692141 ], + [ 7.8848112, 47.469214 ], + [ 7.8849076, 47.4692134 ], + [ 7.885004, 47.4692123 ], + [ 7.8851749, 47.4691979 ], + [ 7.8852466, 47.4691976 ], + [ 7.8853494, 47.4692075 ], + [ 7.885607, 47.4692045 ], + [ 7.8859715, 47.4692063 ], + [ 7.8862088, 47.4692163 ], + [ 7.8866361, 47.4692413 ], + [ 7.8868998999999995, 47.4692747 ], + [ 7.8874257, 47.4694073 ], + [ 7.8878278, 47.4695253 ], + [ 7.8878774, 47.469534 ], + [ 7.8878845, 47.4695345 ], + [ 7.8878916, 47.4695346 ], + [ 7.8878987, 47.4695342 ], + [ 7.8879057, 47.4695332 ], + [ 7.8879125, 47.4695318 ], + [ 7.887919, 47.4695298 ], + [ 7.8879252, 47.4695274 ], + [ 7.8879858, 47.4694981 ], + [ 7.8880375, 47.4694867 ], + [ 7.8881179, 47.469468 ], + [ 7.8881884, 47.4694508 ], + [ 7.8882908, 47.4694241 ], + [ 7.8883987, 47.4693971 ], + [ 7.8885213, 47.469367 ], + [ 7.8885499, 47.46936 ], + [ 7.8885673, 47.4693559 ], + [ 7.8885835, 47.4693532 ], + [ 7.8885973, 47.4693517 ], + [ 7.8886182, 47.4693509 ], + [ 7.8886401, 47.4693512 ], + [ 7.8886637, 47.4693522 ], + [ 7.8886879, 47.469354 ], + [ 7.8887149999999995, 47.4693571 ], + [ 7.8887385, 47.4693608 ], + [ 7.8887667, 47.4693665 ], + [ 7.8887931, 47.469373 ], + [ 7.8888106, 47.4693804 ], + [ 7.8888435999999995, 47.4693953 ], + [ 7.8888795, 47.4694128 ], + [ 7.8889086, 47.4694282 ], + [ 7.8889163, 47.4694317 ], + [ 7.8889315, 47.4694383 ], + [ 7.8889437000000004, 47.4694433 ], + [ 7.8889569999999996, 47.4694483 ], + [ 7.8889755, 47.4694545 ], + [ 7.8889903, 47.469459 ], + [ 7.8890025999999995, 47.4694624 ], + [ 7.8890169, 47.4694661 ], + [ 7.8890314, 47.4694692 ], + [ 7.8890392, 47.4694709 ], + [ 7.8890494, 47.4694729 ], + [ 7.8890776, 47.4694757 ], + [ 7.8891073, 47.4694783 ], + [ 7.8891324, 47.4694803 ], + [ 7.8891608, 47.4694821 ], + [ 7.8891819, 47.4694825 ], + [ 7.889216, 47.4694828 ], + [ 7.8892539, 47.4694827 ], + [ 7.889285, 47.4694823 ], + [ 7.8893183, 47.4694815 ], + [ 7.8893343, 47.4694797 ], + [ 7.889351, 47.469477499999996 ], + [ 7.8893687, 47.4694746 ], + [ 7.8893857, 47.4694713 ], + [ 7.8894001, 47.469468 ], + [ 7.889407, 47.4694652 ], + [ 7.889417, 47.4694606 ], + [ 7.8894234999999995, 47.469458 ], + [ 7.8894391, 47.4694401 ], + [ 7.8894629, 47.4693984 ], + [ 7.8894381, 47.4693968 ], + [ 7.8894371, 47.4694033 ], + [ 7.8894357, 47.4694116 ], + [ 7.8894321, 47.469422 ], + [ 7.8894261, 47.4694322 ], + [ 7.8894193999999995, 47.4694404 ], + [ 7.8894119, 47.4694478 ], + [ 7.8894049, 47.4694529 ], + [ 7.8893959, 47.4694576 ], + [ 7.8893845, 47.4694614 ], + [ 7.8893737, 47.4694634 ], + [ 7.8893572, 47.4694654 ], + [ 7.8893384, 47.4694677 ], + [ 7.8893189, 47.4694696 ], + [ 7.8892924, 47.4694717 ], + [ 7.8892629, 47.4694731 ], + [ 7.8892353, 47.4694736 ], + [ 7.8891997, 47.4694733 ], + [ 7.8891805, 47.4694729 ], + [ 7.889148, 47.4694704 ], + [ 7.8891194, 47.469468 ], + [ 7.8890774, 47.469464 ], + [ 7.8890489, 47.469461 ], + [ 7.8890241, 47.4694568 ], + [ 7.8890063, 47.4694522 ], + [ 7.8889869, 47.4694466 ], + [ 7.8889603, 47.4694375 ], + [ 7.8889363, 47.469428 ], + [ 7.8889157, 47.4694187 ], + [ 7.8888911, 47.4694061 ], + [ 7.8888688, 47.469393 ], + [ 7.8888549999999995, 47.4693851 ], + [ 7.888841, 47.4693781 ], + [ 7.8888273, 47.4693721 ], + [ 7.8888114, 47.469366 ], + [ 7.8887862, 47.4693581 ], + [ 7.8887691, 47.4693539 ], + [ 7.8887557, 47.4693513 ], + [ 7.8887356, 47.4693487 ], + [ 7.8887128, 47.4693461 ], + [ 7.8886875, 47.4693438 ], + [ 7.8886641, 47.4693421 ], + [ 7.8886387, 47.4693409 ], + [ 7.8886163, 47.4693404 ], + [ 7.8886037, 47.4693403 ], + [ 7.888592, 47.469341299999996 ], + [ 7.8885761, 47.4693432 ], + [ 7.8885582, 47.4693459 ], + [ 7.8885384, 47.4693497 ], + [ 7.8885156, 47.469355 ], + [ 7.8884874, 47.4693619 ], + [ 7.8884118, 47.4693807 ], + [ 7.8883282999999995, 47.4694025 ], + [ 7.8882582, 47.4694213 ], + [ 7.8881936, 47.4694374 ], + [ 7.8881296, 47.4694529 ], + [ 7.8880618, 47.4694685 ], + [ 7.8880011, 47.4694819 ], + [ 7.8879906, 47.4694842 ], + [ 7.8879225, 47.4695153 ], + [ 7.8879176, 47.4695178 ], + [ 7.8879122, 47.4695199 ], + [ 7.8879064, 47.4695214 ], + [ 7.8879003999999995, 47.4695225 ], + [ 7.8878942, 47.4695229 ], + [ 7.887888, 47.4695228 ], + [ 7.8878819, 47.4695222 ], + [ 7.8878451, 47.4695174 ], + [ 7.8874285, 47.4693969 ], + [ 7.8869041, 47.4692648 ], + [ 7.8866375, 47.4692309 ], + [ 7.8862094, 47.4692049 ], + [ 7.8859773, 47.469194 ], + [ 7.8856087, 47.4691922 ], + [ 7.8853489, 47.4691955 ], + [ 7.8852465, 47.4691881 ], + [ 7.8851748, 47.4691884 ], + [ 7.8850029, 47.4692005 ], + [ 7.8849073, 47.4692017 ], + [ 7.8848116, 47.4692022 ], + [ 7.8847159, 47.4692023 ], + [ 7.8846202, 47.4692018 ], + [ 7.8845246, 47.4692009 ], + [ 7.8844289, 47.4691993 ], + [ 7.884262, 47.4691881 ], + [ 7.8843153, 47.4688919 ], + [ 7.8843566, 47.4686288 ], + [ 7.8843607, 47.4686203 ], + [ 7.8842934, 47.4685823 ], + [ 7.8841924, 47.4685179 ], + [ 7.8840961, 47.4684864 ], + [ 7.8840683, 47.4684848 ], + [ 7.884048, 47.4684802 ], + [ 7.8840274, 47.4684761 ], + [ 7.8840126, 47.468474 ], + [ 7.8839977, 47.4684724 ], + [ 7.8839827, 47.4684714 ], + [ 7.8839676, 47.468471 ], + [ 7.8839524999999995, 47.4684712 ], + [ 7.8839375, 47.4684721 ], + [ 7.8839226, 47.4684735 ], + [ 7.8839095, 47.4684791 ], + [ 7.8838644, 47.4684899 ], + [ 7.8837717, 47.4685436 ], + [ 7.8837294, 47.4685745 ], + [ 7.8837043, 47.4685927 ], + [ 7.8836486, 47.4686183 ], + [ 7.883633, 47.4686183 ], + [ 7.8836186, 47.4686229 ], + [ 7.8836037999999995, 47.468627 ], + [ 7.8835888, 47.4686306 ], + [ 7.8835733999999995, 47.4686336 ], + [ 7.8835579, 47.468636 ], + [ 7.8835422, 47.4686378 ], + [ 7.8835263, 47.468639 ], + [ 7.8835104, 47.4686397 ], + [ 7.8834655, 47.4686264 ], + [ 7.8834474, 47.4686241 ], + [ 7.8834291, 47.4686229 ], + [ 7.8834107, 47.4686228 ], + [ 7.8833924, 47.468624 ], + [ 7.8833743, 47.4686262 ], + [ 7.8833566, 47.4686296 ], + [ 7.8833394, 47.4686341 ], + [ 7.8833097, 47.4686489 ], + [ 7.8832816999999995, 47.4686652 ], + [ 7.8832701, 47.4686768 ], + [ 7.8832582, 47.4686837 ], + [ 7.8832469, 47.4686911 ], + [ 7.8832362, 47.4686989 ], + [ 7.8832262, 47.4687071 ], + [ 7.8832185, 47.4687158 ], + [ 7.88321, 47.4687242 ], + [ 7.8832007, 47.4687322 ], + [ 7.8831906, 47.4687397 ], + [ 7.8831799, 47.4687468 ], + [ 7.8831685, 47.4687534 ], + [ 7.8831565, 47.4687594 ], + [ 7.8831439, 47.4687649 ], + [ 7.8831308, 47.4687699 ], + [ 7.8831173, 47.4687743 ], + [ 7.8831033999999995, 47.468778 ], + [ 7.8830891, 47.4687811 ], + [ 7.8830047, 47.4687804 ], + [ 7.8829591, 47.4687733 ], + [ 7.8829562, 47.4687799 ], + [ 7.8829434, 47.4688096 ], + [ 7.8829132, 47.4688797 ], + [ 7.8826611, 47.4688277 ], + [ 7.8826278, 47.4688218 ], + [ 7.8825944, 47.4688164 ], + [ 7.8825607, 47.4688116 ], + [ 7.8825269, 47.4688074 ], + [ 7.8824929, 47.4688037 ], + [ 7.8824588, 47.4688007 ], + [ 7.8824246, 47.4687982 ], + [ 7.8823904, 47.4687964 ], + [ 7.882356, 47.4687951 ], + [ 7.8823216, 47.4687945 ], + [ 7.8822873, 47.4687944 ], + [ 7.8822787, 47.4687945 ], + [ 7.8822799, 47.4688062 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns237", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Wischberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Wischberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Wischberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Wischberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.9902315, 47.1909193 ], + [ 8.990222, 47.1907782 ], + [ 8.9902016, 47.1906376 ], + [ 8.9901705, 47.1904979 ], + [ 8.9901287, 47.1903595 ], + [ 8.9900764, 47.1902229 ], + [ 8.9900136, 47.1900882 ], + [ 8.9899406, 47.189956 ], + [ 8.9898575, 47.1898266 ], + [ 8.9897646, 47.1897003 ], + [ 8.9896621, 47.1895775 ], + [ 8.9895504, 47.1894585 ], + [ 8.9894296, 47.1893437 ], + [ 8.9893003, 47.1892334 ], + [ 8.9891626, 47.1891278 ], + [ 8.989017, 47.1890272 ], + [ 8.9888639, 47.188932 ], + [ 8.9887037, 47.1888424 ], + [ 8.9885368, 47.1887587 ], + [ 8.9883637, 47.188681 ], + [ 8.9881849, 47.1886095 ], + [ 8.9880009, 47.1885446 ], + [ 8.9878121, 47.1884863 ], + [ 8.9876191, 47.1884348 ], + [ 8.9874224, 47.1883903 ], + [ 8.987222599999999, 47.1883529 ], + [ 8.9870202, 47.1883226 ], + [ 8.9868157, 47.1882996 ], + [ 8.9866098, 47.1882839 ], + [ 8.9864029, 47.1882756 ], + [ 8.9861957, 47.1882747 ], + [ 8.9859887, 47.1882812 ], + [ 8.9857824, 47.1882951 ], + [ 8.9855775, 47.1883162 ], + [ 8.9853746, 47.1883447 ], + [ 8.985174, 47.1883804 ], + [ 8.9849765, 47.1884232 ], + [ 8.984782599999999, 47.188473 ], + [ 8.9845927, 47.1885296 ], + [ 8.9844075, 47.1885929 ], + [ 8.9842273, 47.1886628 ], + [ 8.9840528, 47.1887389 ], + [ 8.9838844, 47.1888212 ], + [ 8.9837225, 47.1889094 ], + [ 8.9835676, 47.1890033 ], + [ 8.9834201, 47.1891025 ], + [ 8.9832804, 47.1892069 ], + [ 8.983149, 47.1893161 ], + [ 8.9830261, 47.1894298 ], + [ 8.9829121, 47.1895478 ], + [ 8.9828073, 47.1896697 ], + [ 8.982712, 47.1897952 ], + [ 8.9826265, 47.1899238 ], + [ 8.982551, 47.1900554 ], + [ 8.9824856, 47.1901895 ], + [ 8.9824307, 47.1903257 ], + [ 8.9823863, 47.1904637 ], + [ 8.9823525, 47.1906031 ], + [ 8.9823295, 47.1907435 ], + [ 8.9823173, 47.1908845 ], + [ 8.982316, 47.1910258 ], + [ 8.9823255, 47.1911669 ], + [ 8.9823458, 47.1913075 ], + [ 8.9823769, 47.1914471 ], + [ 8.9824187, 47.1915855 ], + [ 8.982471, 47.1917222 ], + [ 8.9825338, 47.1918569 ], + [ 8.9826068, 47.1919891 ], + [ 8.9826898, 47.1921185 ], + [ 8.9827827, 47.1922448 ], + [ 8.9828852, 47.1923676 ], + [ 8.9829969, 47.1924866 ], + [ 8.9831177, 47.1926014 ], + [ 8.983247, 47.1927118 ], + [ 8.9833847, 47.1928174 ], + [ 8.9835303, 47.1929179 ], + [ 8.9836834, 47.1930131 ], + [ 8.9838436, 47.1931027 ], + [ 8.9840105, 47.1931865 ], + [ 8.9841836, 47.1932642 ], + [ 8.9843624, 47.1933356 ], + [ 8.9845465, 47.1934006 ], + [ 8.9847352, 47.1934589 ], + [ 8.9849283, 47.1935104 ], + [ 8.9851249, 47.1935549 ], + [ 8.9853248, 47.1935923 ], + [ 8.9855272, 47.1936226 ], + [ 8.9857317, 47.1936456 ], + [ 8.9859377, 47.1936613 ], + [ 8.9861446, 47.1936696 ], + [ 8.9863518, 47.1936705 ], + [ 8.9865589, 47.193664 ], + [ 8.9867651, 47.1936501 ], + [ 8.98697, 47.1936289 ], + [ 8.987173, 47.1936005 ], + [ 8.9873736, 47.1935648 ], + [ 8.9875711, 47.193522 ], + [ 8.987765, 47.1934722 ], + [ 8.9879549, 47.1934156 ], + [ 8.9881402, 47.1933523 ], + [ 8.9883203, 47.1932824 ], + [ 8.9884949, 47.1932062 ], + [ 8.9886633, 47.1931239 ], + [ 8.9888252, 47.1930357 ], + [ 8.9889801, 47.1929419 ], + [ 8.9891276, 47.1928426 ], + [ 8.9892673, 47.1927382 ], + [ 8.9893987, 47.192629 ], + [ 8.9895216, 47.1925153 ], + [ 8.9896356, 47.1923973 ], + [ 8.9897404, 47.1922754 ], + [ 8.9898357, 47.1921499 ], + [ 8.9899212, 47.1920212 ], + [ 8.9899967, 47.1918897 ], + [ 8.990062, 47.1917556 ], + [ 8.9901169, 47.1916194 ], + [ 8.9901613, 47.1914814 ], + [ 8.990195, 47.191342 ], + [ 8.990218, 47.1912016 ], + [ 8.9902302, 47.1910606 ], + [ 8.9902315, 47.1909193 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0012", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Benken", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Benken", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Benken", + "lang" : "it-CH" + }, + { + "text" : "Substation Benken", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.821197699999999, 46.548967 ], + [ 9.8322213, 46.5625806 ], + [ 9.8339638, 46.5646056 ], + [ 9.8358578, 46.5665648 ], + [ 9.837898, 46.5684529 ], + [ 9.8400789, 46.5702647 ], + [ 9.8423943, 46.5719954 ], + [ 9.8448381, 46.57364 ], + [ 9.8474035, 46.5751941 ], + [ 9.8500835, 46.5766534 ], + [ 9.8528707, 46.5780139 ], + [ 9.8557575, 46.579272 ], + [ 9.8587359, 46.580424 ], + [ 9.8617978, 46.5814669 ], + [ 9.8649348, 46.5823978 ], + [ 9.8681382, 46.5832141 ], + [ 9.8713993, 46.5839136 ], + [ 9.8747091, 46.5844944 ], + [ 9.8780586, 46.5849548 ], + [ 9.8814384, 46.5852937 ], + [ 9.8848393, 46.58551 ], + [ 9.888252, 46.5856032 ], + [ 9.8916671, 46.5855731 ], + [ 9.8950753, 46.5854196 ], + [ 9.8984671, 46.5851433 ], + [ 9.9018332, 46.5847449 ], + [ 9.9051644, 46.5842255 ], + [ 9.9084515, 46.5835864 ], + [ 9.9116855, 46.5828296 ], + [ 9.9148576, 46.581957 ], + [ 9.9179589, 46.580971 ], + [ 9.9209811, 46.5798744 ], + [ 9.9239157, 46.5786702 ], + [ 9.9267548, 46.5773616 ], + [ 9.9294905, 46.5759523 ], + [ 9.9321154, 46.5744461 ], + [ 9.9346222, 46.5728473 ], + [ 9.9370042, 46.57116 ], + [ 9.9392546, 46.5693891 ], + [ 9.9413674, 46.5675394 ], + [ 9.9433368, 46.5656158 ], + [ 9.9451575, 46.5636238 ], + [ 9.9468243, 46.5615688 ], + [ 9.9483328, 46.5594564 ], + [ 9.9496789, 46.5572924 ], + [ 9.9508588, 46.5550828 ], + [ 9.9518694, 46.5528336 ], + [ 9.9527079, 46.5505509 ], + [ 9.953372, 46.5482412 ], + [ 9.95386, 46.5459106 ], + [ 9.9541705, 46.5435656 ], + [ 9.9543026, 46.5412126 ], + [ 9.9542561, 46.538858 ], + [ 9.9540311, 46.5365084 ], + [ 9.9536283, 46.53417 ], + [ 9.9530487, 46.5318495 ], + [ 9.9522939, 46.529553 ], + [ 9.9513662, 46.527287 ], + [ 9.950268, 46.5250575 ], + [ 9.9490023, 46.5228708 ], + [ 9.9475727, 46.5207328 ], + [ 9.945983, 46.5186493 ], + [ 9.9349398, 46.5050467 ], + [ 9.9331953, 46.5030233 ], + [ 9.9313, 46.5010657 ], + [ 9.9292591, 46.4991792 ], + [ 9.9270782, 46.4973691 ], + [ 9.9247632, 46.4956402 ], + [ 9.9223205, 46.4939973 ], + [ 9.9197568, 46.4924448 ], + [ 9.9170791, 46.4909872 ], + [ 9.9142947, 46.4896282 ], + [ 9.9114114, 46.4883717 ], + [ 9.9084369, 46.487221 ], + [ 9.9053794, 46.4861794 ], + [ 9.902247299999999, 46.4852496 ], + [ 9.8990492, 46.4844342 ], + [ 9.8957937, 46.4837355 ], + [ 9.8924898, 46.4831553 ], + [ 9.8891466, 46.4826953 ], + [ 9.8857731, 46.4823567 ], + [ 9.8823786, 46.4821404 ], + [ 9.8789725, 46.482047 ], + [ 9.8755639, 46.4820767 ], + [ 9.8721622, 46.4822296 ], + [ 9.8687767, 46.4825051 ], + [ 9.8654167, 46.4829026 ], + [ 9.8620913, 46.4834209 ], + [ 9.8588097, 46.4840585 ], + [ 9.8555809, 46.4848139 ], + [ 9.8524136, 46.4856849 ], + [ 9.8493165, 46.486669 ], + [ 9.8462981, 46.4877638 ], + [ 9.8433666, 46.488966 ], + [ 9.8405302, 46.4902725 ], + [ 9.8377964, 46.4916797 ], + [ 9.835173, 46.4931836 ], + [ 9.8326669, 46.4947803 ], + [ 9.8302851, 46.4964654 ], + [ 9.8280341, 46.4982342 ], + [ 9.8259201, 46.5000818 ], + [ 9.8239489, 46.5020033 ], + [ 9.8221259, 46.5039934 ], + [ 9.8204561, 46.5060466 ], + [ 9.8189441, 46.5081573 ], + [ 9.8175941, 46.5103197 ], + [ 9.8164097, 46.512528 ], + [ 9.8153942, 46.514776 ], + [ 9.8145505, 46.5170576 ], + [ 9.8138808, 46.5193666 ], + [ 9.8133871, 46.5216965 ], + [ 9.8130706, 46.5240412 ], + [ 9.8129324, 46.526394 ], + [ 9.8129727, 46.5287486 ], + [ 9.8131915, 46.5310986 ], + [ 9.8135883, 46.5334374 ], + [ 9.8141619, 46.5357586 ], + [ 9.8149109, 46.538056 ], + [ 9.8158331, 46.5403232 ], + [ 9.8169261, 46.5425539 ], + [ 9.8181869, 46.5447421 ], + [ 9.819612, 46.5468817 ], + [ 9.821197699999999, 46.548967 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZS001", + "country" : "CHE", + "name" : [ + { + "text" : "LSZS Samedan", + "lang" : "de-CH" + }, + { + "text" : "LSZS Samedan", + "lang" : "fr-CH" + }, + { + "text" : "LSZS Samedan", + "lang" : "it-CH" + }, + { + "text" : "LSZS Samedan", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Engadin Airport", + "lang" : "de-CH" + }, + { + "text" : "Engadin Airport", + "lang" : "fr-CH" + }, + { + "text" : "Engadin Airport", + "lang" : "it-CH" + }, + { + "text" : "Engadin Airport", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "GL Safety Officer", + "lang" : "de-CH" + }, + { + "text" : "GL Safety Officer", + "lang" : "fr-CH" + }, + { + "text" : "GL Safety Officer", + "lang" : "it-CH" + }, + { + "text" : "GL Safety Officer", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.engadin-airport.ch/en/drone/", + "email" : "info@engadin-airport.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.2785002, 46.9690722 ], + [ 7.2784878, 46.9687191 ], + [ 7.2784484, 46.968367 ], + [ 7.2783821, 46.9680167 ], + [ 7.2782891, 46.9676693 ], + [ 7.2781697, 46.9673257 ], + [ 7.2780241, 46.9669868 ], + [ 7.2778529, 46.9666536 ], + [ 7.2776565, 46.966327 ], + [ 7.2774353, 46.9660079 ], + [ 7.2771901, 46.9656972 ], + [ 7.2769214, 46.9653957 ], + [ 7.2766301, 46.9651042 ], + [ 7.2763168, 46.9648235 ], + [ 7.2759826, 46.9645544 ], + [ 7.2756282, 46.9642977 ], + [ 7.2752547, 46.9640541 ], + [ 7.2748631, 46.9638241 ], + [ 7.2744545, 46.9636085 ], + [ 7.2740299, 46.9634079 ], + [ 7.2735906, 46.9632227 ], + [ 7.2731377, 46.9630535 ], + [ 7.2726726, 46.9629008 ], + [ 7.2721964, 46.9627649 ], + [ 7.2717104, 46.9626463 ], + [ 7.2712161, 46.9625452 ], + [ 7.2707147, 46.962462 ], + [ 7.2702076, 46.9623969 ], + [ 7.2696963, 46.9623501 ], + [ 7.269182, 46.9623216 ], + [ 7.2686663, 46.9623116 ], + [ 7.2681506, 46.9623201 ], + [ 7.2676362, 46.962347 ], + [ 7.2671246, 46.9623923 ], + [ 7.2666171, 46.9624559 ], + [ 7.2661152, 46.9625376 ], + [ 7.2656202, 46.9626372 ], + [ 7.2651335, 46.9627544 ], + [ 7.2646564, 46.9628888 ], + [ 7.2641903, 46.9630401 ], + [ 7.2637363, 46.963208 ], + [ 7.2632958, 46.9633918 ], + [ 7.26287, 46.9635912 ], + [ 7.26246, 46.9638056 ], + [ 7.2620669, 46.9640344 ], + [ 7.2616919, 46.9642769 ], + [ 7.2613359, 46.9645326 ], + [ 7.2609999, 46.9648006 ], + [ 7.2606849, 46.9650804 ], + [ 7.2603917, 46.965371 ], + [ 7.2601211, 46.9656717 ], + [ 7.2598739, 46.9659817 ], + [ 7.2596507, 46.9663002 ], + [ 7.2594522, 46.9666262 ], + [ 7.2592789, 46.9669588 ], + [ 7.2591312, 46.9672973 ], + [ 7.2590096, 46.9676405 ], + [ 7.2589144, 46.9679876 ], + [ 7.2588459, 46.9683377 ], + [ 7.2588042, 46.9686897 ], + [ 7.2587895, 46.9690428 ], + [ 7.2588018, 46.9693959 ], + [ 7.2588411, 46.9697481 ], + [ 7.2589073, 46.9700984 ], + [ 7.2590001, 46.9704458 ], + [ 7.2591194, 46.9707894 ], + [ 7.2592649, 46.9711283 ], + [ 7.259436, 46.9714615 ], + [ 7.2596323, 46.9717881 ], + [ 7.2598534, 46.9721073 ], + [ 7.2600986, 46.972418 ], + [ 7.2603672, 46.9727196 ], + [ 7.2606585, 46.9730112 ], + [ 7.2609717, 46.9732919 ], + [ 7.2613059, 46.9735609 ], + [ 7.2616603, 46.9738177 ], + [ 7.2620338, 46.9740614 ], + [ 7.2624254, 46.9742914 ], + [ 7.262834, 46.974507 ], + [ 7.2632587, 46.9747078 ], + [ 7.263698, 46.974893 ], + [ 7.264151, 46.975062199999996 ], + [ 7.2646162, 46.975215 ], + [ 7.2650925, 46.9753509 ], + [ 7.2655785999999996, 46.9754695 ], + [ 7.2660730000000004, 46.9755706 ], + [ 7.2665745, 46.9756538 ], + [ 7.2670817, 46.9757189 ], + [ 7.2675932, 46.9757658 ], + [ 7.2681075, 46.9757943 ], + [ 7.2686234, 46.9758043 ], + [ 7.2691393, 46.9757958 ], + [ 7.2696538, 46.9757688 ], + [ 7.2701655, 46.9757235 ], + [ 7.2706731, 46.9756599 ], + [ 7.2711752, 46.9755782 ], + [ 7.2716703, 46.9754786 ], + [ 7.2721571, 46.9753614 ], + [ 7.2726342, 46.9752269 ], + [ 7.2731005, 46.9750756 ], + [ 7.2735545, 46.9749077 ], + [ 7.273995, 46.9747238 ], + [ 7.2744209, 46.9745243 ], + [ 7.2748308999999995, 46.9743099 ], + [ 7.275224, 46.9740811 ], + [ 7.2755991, 46.9738385 ], + [ 7.2759551, 46.9735828 ], + [ 7.276291, 46.9733147 ], + [ 7.276606, 46.973035 ], + [ 7.2768991, 46.9727443 ], + [ 7.2771697, 46.9724435 ], + [ 7.2774168, 46.9721335 ], + [ 7.2776399, 46.971815 ], + [ 7.2778384, 46.971489 ], + [ 7.2780116, 46.9711563 ], + [ 7.2781592, 46.9708178 ], + [ 7.2782807, 46.9704746 ], + [ 7.2783757, 46.9701274 ], + [ 7.2784441, 46.9697773 ], + [ 7.2784857, 46.9694253 ], + [ 7.2785002, 46.9690722 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "ENSI004", + "country" : "CHE", + "name" : [ + { + "text" : "KKA Mühleberg", + "lang" : "de-CH" + }, + { + "text" : "KKA Mühleberg", + "lang" : "fr-CH" + }, + { + "text" : "KKA Mühleberg", + "lang" : "it-CH" + }, + { + "text" : "KKA Mühleberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kernkraftwerk Mühleberg", + "lang" : "de-CH" + }, + { + "text" : "Kernkraftwerk Mühleberg", + "lang" : "fr-CH" + }, + { + "text" : "Kernkraftwerk Mühleberg", + "lang" : "it-CH" + }, + { + "text" : "Kernkraftwerk Mühleberg", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Sicherungsbeauftragter", + "lang" : "de-CH" + }, + { + "text" : "Sicherungsbeauftragter", + "lang" : "fr-CH" + }, + { + "text" : "Sicherungsbeauftragter", + "lang" : "it-CH" + }, + { + "text" : "Sicherungsbeauftragter", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Dieter Blattner", + "lang" : "de-CH" + }, + { + "text" : "Dieter Blattner", + "lang" : "fr-CH" + }, + { + "text" : "Dieter Blattner", + "lang" : "it-CH" + }, + { + "text" : "Dieter Blattner", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.bkw.ch", + "email" : "info@bkw.ch", + "phone" : "0041584777001", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.5673684, 46.6645423 ], + [ 9.5673575, 46.6644012 ], + [ 9.5673358, 46.6642607 ], + [ 9.5673035, 46.6641212 ], + [ 9.567260600000001, 46.663983 ], + [ 9.5672073, 46.6638466 ], + [ 9.5671437, 46.6637123 ], + [ 9.56707, 46.6635804 ], + [ 9.5669864, 46.6634514 ], + [ 9.566893, 46.6633256 ], + [ 9.5667903, 46.6632033 ], + [ 9.5666783, 46.6630849 ], + [ 9.5665575, 46.6629706 ], + [ 9.5664282, 46.6628609 ], + [ 9.5662908, 46.662756 ], + [ 9.5661455, 46.6626562 ], + [ 9.5659929, 46.6625618 ], + [ 9.5658333, 46.662473 ], + [ 9.5656672, 46.66239 ], + [ 9.565494900000001, 46.6623132 ], + [ 9.5653171, 46.6622427 ], + [ 9.5651342, 46.6621786 ], + [ 9.5649466, 46.6621213 ], + [ 9.564755, 46.6620708 ], + [ 9.5645598, 46.6620272 ], + [ 9.5643615, 46.6619908 ], + [ 9.5641607, 46.6619616 ], + [ 9.563958, 46.6619396 ], + [ 9.5637539, 46.6619249 ], + [ 9.563549, 46.6619177 ], + [ 9.5633437, 46.6619178 ], + [ 9.5631388, 46.6619253 ], + [ 9.5629347, 46.6619402 ], + [ 9.5627321, 46.6619624 ], + [ 9.5625314, 46.661992 ], + [ 9.5623332, 46.6620286 ], + [ 9.5621381, 46.6620724 ], + [ 9.5619466, 46.6621232 ], + [ 9.561759200000001, 46.6621807 ], + [ 9.5615764, 46.662245 ], + [ 9.5613988, 46.6623157 ], + [ 9.5612268, 46.6623928 ], + [ 9.5610609, 46.662476 ], + [ 9.5609015, 46.662565 ], + [ 9.5607491, 46.6626596 ], + [ 9.560604099999999, 46.6627596 ], + [ 9.560467, 46.6628647 ], + [ 9.5603379, 46.6629745 ], + [ 9.5602175, 46.6630889 ], + [ 9.5601059, 46.6632075 ], + [ 9.5600034, 46.6633299 ], + [ 9.5599104, 46.6634558 ], + [ 9.5598271, 46.6635849 ], + [ 9.5597537, 46.6637169 ], + [ 9.5596904, 46.6638513 ], + [ 9.559637500000001, 46.6639878 ], + [ 9.559595, 46.664126 ], + [ 9.5595631, 46.6642656 ], + [ 9.5595418, 46.6644061 ], + [ 9.5595312, 46.6645472 ], + [ 9.559531400000001, 46.6646885 ], + [ 9.5595423, 46.6648296 ], + [ 9.5595639, 46.6649701 ], + [ 9.5595962, 46.6651096 ], + [ 9.5596391, 46.6652478 ], + [ 9.5596924, 46.6653842 ], + [ 9.5597559, 46.6655186 ], + [ 9.5598297, 46.6656504 ], + [ 9.5599133, 46.6657794 ], + [ 9.5600066, 46.6659053 ], + [ 9.5601094, 46.6660276 ], + [ 9.5602213, 46.666146 ], + [ 9.5603421, 46.666260199999996 ], + [ 9.5604714, 46.6663699 ], + [ 9.5606088, 46.6664748 ], + [ 9.5607541, 46.6665747 ], + [ 9.5609067, 46.6666691 ], + [ 9.5610663, 46.6667579 ], + [ 9.5612325, 46.6668409 ], + [ 9.5614047, 46.6669177 ], + [ 9.5615825, 46.6669883 ], + [ 9.5617655, 46.6670523 ], + [ 9.561952999999999, 46.6671096 ], + [ 9.5621447, 46.6671601 ], + [ 9.5623399, 46.6672037 ], + [ 9.5625382, 46.6672401 ], + [ 9.562739, 46.6672694 ], + [ 9.5629418, 46.6672914 ], + [ 9.5631459, 46.667305999999996 ], + [ 9.5633508, 46.6673133 ], + [ 9.5635561, 46.6673131 ], + [ 9.563761, 46.6673056 ], + [ 9.5639651, 46.6672907 ], + [ 9.5641678, 46.6672685 ], + [ 9.5643685, 46.667239 ], + [ 9.5645667, 46.6672023 ], + [ 9.5647618, 46.6671585 ], + [ 9.564953299999999, 46.6671078 ], + [ 9.5651408, 46.6670502 ], + [ 9.5653235, 46.6669859 ], + [ 9.5655012, 46.6669152 ], + [ 9.565673199999999, 46.6668381 ], + [ 9.5658391, 46.6667549 ], + [ 9.5659985, 46.6666659 ], + [ 9.5661509, 46.6665713 ], + [ 9.5662959, 46.6664713 ], + [ 9.566433, 46.6663662 ], + [ 9.5665621, 46.6662563 ], + [ 9.5666825, 46.666142 ], + [ 9.5667941, 46.6660234 ], + [ 9.5668966, 46.665901 ], + [ 9.5669896, 46.665775 ], + [ 9.5670729, 46.6656459 ], + [ 9.5671462, 46.6655139 ], + [ 9.5672095, 46.6653795 ], + [ 9.5672624, 46.665243 ], + [ 9.5673049, 46.6651048 ], + [ 9.5673368, 46.6649652 ], + [ 9.567358, 46.6648247 ], + [ 9.5673686, 46.6646836 ], + [ 9.5673684, 46.6645423 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0118", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Tiefencastel", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Tiefencastel", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Tiefencastel", + "lang" : "it-CH" + }, + { + "text" : "Substation Tiefencastel", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.8416497, 46.4414068 ], + [ 8.8416407, 46.4412656 ], + [ 8.841621, 46.441125 ], + [ 8.8415907, 46.4409853 ], + [ 8.8415499, 46.4408468 ], + [ 8.8414986, 46.4407101 ], + [ 8.8414371, 46.4405753 ], + [ 8.8413654, 46.440443 ], + [ 8.8412839, 46.4403135 ], + [ 8.8411926, 46.4401871 ], + [ 8.8410919, 46.4400641 ], + [ 8.840982, 46.439945 ], + [ 8.8408632, 46.43983 ], + [ 8.840736, 46.4397195 ], + [ 8.8406005, 46.4396137 ], + [ 8.8404572, 46.439513 ], + [ 8.8403064, 46.4394176 ], + [ 8.8401487, 46.4393277 ], + [ 8.8399843, 46.4392437 ], + [ 8.8398139, 46.4391658 ], + [ 8.8396377, 46.4390941 ], + [ 8.8394564, 46.439029 ], + [ 8.8392704, 46.4389704 ], + [ 8.8390802, 46.4389187 ], + [ 8.8388864, 46.4388739 ], + [ 8.8386895, 46.4388362 ], + [ 8.8384899, 46.4388057 ], + [ 8.8382883, 46.4387824 ], + [ 8.8380853, 46.4387665 ], + [ 8.8378813, 46.4387579 ], + [ 8.8376769, 46.4387567 ], + [ 8.8374727, 46.4387629 ], + [ 8.837269299999999, 46.4387765 ], + [ 8.8370672, 46.4387975 ], + [ 8.836867, 46.4388257 ], + [ 8.8366691, 46.4388611 ], + [ 8.8364742, 46.4389036 ], + [ 8.8362828, 46.4389532 ], + [ 8.8360954, 46.4390096 ], + [ 8.8359126, 46.4390726 ], + [ 8.8357347, 46.4391423 ], + [ 8.8355624, 46.4392182 ], + [ 8.8353961, 46.4393003 ], + [ 8.8352362, 46.4393883 ], + [ 8.8350832, 46.439482 ], + [ 8.8349374, 46.439581 ], + [ 8.8347994, 46.4396852 ], + [ 8.8346695, 46.4397943 ], + [ 8.834548, 46.4399079 ], + [ 8.8344352, 46.4400257 ], + [ 8.8343316, 46.4401475 ], + [ 8.8342373, 46.4402728 ], + [ 8.8341526, 46.4404014 ], + [ 8.8340777, 46.4405329 ], + [ 8.8340129, 46.4406669 ], + [ 8.8339584, 46.440803 ], + [ 8.8339142, 46.440941 ], + [ 8.8338805, 46.4410803 ], + [ 8.8338575, 46.4412207 ], + [ 8.8338451, 46.4413618 ], + [ 8.8338434, 46.441503 ], + [ 8.8338523, 46.4416442 ], + [ 8.833872, 46.4417848 ], + [ 8.8339023, 46.4419245 ], + [ 8.833943099999999, 46.442063 ], + [ 8.8339943, 46.4421998 ], + [ 8.8340558, 46.4423345 ], + [ 8.8341275, 46.4424668 ], + [ 8.834209, 46.4425964 ], + [ 8.8343003, 46.4427228 ], + [ 8.834401, 46.4428457 ], + [ 8.8345109, 46.4429649 ], + [ 8.8346296, 46.4430799 ], + [ 8.8347569, 46.4431904 ], + [ 8.8348924, 46.4432962 ], + [ 8.8350357, 46.4433969 ], + [ 8.8351864, 46.4434923 ], + [ 8.8353442, 46.4435822 ], + [ 8.8355085, 46.4436662 ], + [ 8.835679, 46.4437441 ], + [ 8.8358552, 46.4438158 ], + [ 8.8360365, 46.443881 ], + [ 8.8362225, 46.4439395 ], + [ 8.8364127, 46.4439913 ], + [ 8.8366065, 46.444036 ], + [ 8.8368035, 46.4440738 ], + [ 8.8370031, 46.4441043 ], + [ 8.8372047, 46.4441276 ], + [ 8.8374077, 46.4441435 ], + [ 8.8376118, 46.4441521 ], + [ 8.8378161, 46.4441532 ], + [ 8.8380203, 46.444147 ], + [ 8.8382238, 46.4441334 ], + [ 8.8384259, 46.4441125 ], + [ 8.8386262, 46.4440843 ], + [ 8.838824, 46.4440488 ], + [ 8.8390189, 46.4440063 ], + [ 8.8392104, 46.4439568 ], + [ 8.8393978, 46.4439004 ], + [ 8.8395806, 46.4438373 ], + [ 8.8397585, 46.4437677 ], + [ 8.8399308, 46.4436917 ], + [ 8.8400972, 46.4436096 ], + [ 8.8402571, 46.4435216 ], + [ 8.8404101, 46.4434279 ], + [ 8.8405558, 46.4433289 ], + [ 8.8406938, 46.4432247 ], + [ 8.8408238, 46.4431156 ], + [ 8.8409453, 46.443002 ], + [ 8.841058, 46.4428842 ], + [ 8.8411617, 46.4427624 ], + [ 8.841256, 46.442637 ], + [ 8.8413406, 46.4425084 ], + [ 8.8414155, 46.442377 ], + [ 8.8414802, 46.442243 ], + [ 8.8415348, 46.4421068 ], + [ 8.8415789, 46.4419688 ], + [ 8.8416126, 46.4418295 ], + [ 8.8416356, 46.4416891 ], + [ 8.841648, 46.4415481 ], + [ 8.8416497, 46.4414068 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0061", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Lavorgo", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Lavorgo", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Lavorgo", + "lang" : "it-CH" + }, + { + "text" : "Substation Lavorgo", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.7015105, 47.5340745 ], + [ 8.7015017, 47.5339333 ], + [ 8.701482, 47.5337927 ], + [ 8.7014515, 47.533653 ], + [ 8.7014101, 47.5335145 ], + [ 8.7013582, 47.5333777 ], + [ 8.7012957, 47.5332429 ], + [ 8.701223, 47.5331105 ], + [ 8.7011401, 47.5329809 ], + [ 8.7010472, 47.5328544 ], + [ 8.7009448, 47.5327314 ], + [ 8.7008329, 47.5326121 ], + [ 8.7007121, 47.532497 ], + [ 8.7005824, 47.5323864 ], + [ 8.7004444, 47.5322804 ], + [ 8.7002985, 47.5321795 ], + [ 8.7001449, 47.532084 ], + [ 8.6999841, 47.531994 ], + [ 8.6998166, 47.5319098 ], + [ 8.6996429, 47.5318317 ], + [ 8.6994633, 47.5317598 ], + [ 8.6992784, 47.5316944 ], + [ 8.6990887, 47.5316356 ], + [ 8.6988948, 47.5315837 ], + [ 8.6986971, 47.5315387 ], + [ 8.6984962, 47.5315007 ], + [ 8.6982926, 47.53147 ], + [ 8.6980869, 47.5314465 ], + [ 8.697879799999999, 47.5314303 ], + [ 8.6976716, 47.5314215 ], + [ 8.697462999999999, 47.53142 ], + [ 8.6972546, 47.531426 ], + [ 8.697047, 47.5314393 ], + [ 8.6968407, 47.53146 ], + [ 8.6966362, 47.531488 ], + [ 8.6964342, 47.5315231 ], + [ 8.6962352, 47.5315654 ], + [ 8.6960397, 47.5316147 ], + [ 8.6958484, 47.5316709 ], + [ 8.6956616, 47.5317337 ], + [ 8.6954799, 47.5318031 ], + [ 8.6953038, 47.5318788 ], + [ 8.6951338, 47.5319607 ], + [ 8.6949704, 47.5320485 ], + [ 8.694814, 47.5321419 ], + [ 8.694665, 47.5322408 ], + [ 8.6945239, 47.5323448 ], + [ 8.694391, 47.5324536 ], + [ 8.6942667, 47.5325671 ], + [ 8.6941513, 47.5326847 ], + [ 8.6940452, 47.5328064 ], + [ 8.6939486, 47.5329316 ], + [ 8.6938618, 47.53306 ], + [ 8.6937851, 47.5331914 ], + [ 8.6937186, 47.5333253 ], + [ 8.6936626, 47.5334613 ], + [ 8.6936172, 47.5335992 ], + [ 8.6935824, 47.5337385 ], + [ 8.6935585, 47.5338788 ], + [ 8.693545499999999, 47.5340198 ], + [ 8.6935433, 47.534161 ], + [ 8.6935521, 47.5343022 ], + [ 8.6935718, 47.5344428 ], + [ 8.6936024, 47.5345825 ], + [ 8.693643699999999, 47.534721 ], + [ 8.6936956, 47.5348578 ], + [ 8.693758, 47.5349926 ], + [ 8.6938308, 47.535125 ], + [ 8.6939137, 47.5352546 ], + [ 8.6940065, 47.5353811 ], + [ 8.6941089, 47.5355041 ], + [ 8.6942207, 47.5356234 ], + [ 8.6943416, 47.5357385 ], + [ 8.6944712, 47.5358492 ], + [ 8.6946092, 47.5359551 ], + [ 8.6947552, 47.536056 ], + [ 8.6949088, 47.5361516 ], + [ 8.6950696, 47.5362416 ], + [ 8.6952371, 47.5363258 ], + [ 8.6954108, 47.5364039 ], + [ 8.6955904, 47.5364758 ], + [ 8.6957753, 47.5365412 ], + [ 8.695965, 47.5366 ], + [ 8.696159, 47.5366519 ], + [ 8.696356699999999, 47.5366969 ], + [ 8.6965576, 47.5367349 ], + [ 8.6967612, 47.5367656 ], + [ 8.6969669, 47.5367892 ], + [ 8.6971741, 47.5368053 ], + [ 8.6973823, 47.5368142 ], + [ 8.6975909, 47.5368156 ], + [ 8.6977993, 47.5368096 ], + [ 8.6980069, 47.5367963 ], + [ 8.698213299999999, 47.5367756 ], + [ 8.6984178, 47.5367476 ], + [ 8.6986198, 47.5367125 ], + [ 8.6988188, 47.5366702 ], + [ 8.6990143, 47.5366209 ], + [ 8.6992057, 47.5365647 ], + [ 8.6993925, 47.5365019 ], + [ 8.6995742, 47.5364325 ], + [ 8.6997503, 47.5363568 ], + [ 8.6999203, 47.5362749 ], + [ 8.7000837, 47.5361871 ], + [ 8.7002401, 47.5360937 ], + [ 8.7003891, 47.5359948 ], + [ 8.7005302, 47.5358908 ], + [ 8.7006631, 47.5357819 ], + [ 8.7007874, 47.5356685 ], + [ 8.7009028, 47.5355508 ], + [ 8.7010089, 47.5354292 ], + [ 8.7011054, 47.535304 ], + [ 8.7011922, 47.5351755 ], + [ 8.7012689, 47.5350441 ], + [ 8.7013354, 47.5349102 ], + [ 8.7013914, 47.5347742 ], + [ 8.7014368, 47.5346363 ], + [ 8.7014715, 47.534497 ], + [ 8.7014954, 47.534356700000004 ], + [ 8.7015084, 47.5342157 ], + [ 8.7015105, 47.5340745 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0095", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Riet", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Riet", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Riet", + "lang" : "it-CH" + }, + { + "text" : "Substation Riet", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.1248901, 47.1855837 ], + [ 8.1248829, 47.1854425 ], + [ 8.1248648, 47.1853017 ], + [ 8.124836, 47.1851618 ], + [ 8.1247964, 47.1850232 ], + [ 8.1247463, 47.1848861 ], + [ 8.1246857, 47.184751 ], + [ 8.1246149, 47.1846182 ], + [ 8.1245339, 47.1844882 ], + [ 8.124443, 47.1843612 ], + [ 8.1243426, 47.1842377 ], + [ 8.1242328, 47.1841179 ], + [ 8.1241139, 47.1840021 ], + [ 8.1239863, 47.1838908 ], + [ 8.1238504, 47.1837842 ], + [ 8.1237065, 47.1836826 ], + [ 8.1235549, 47.1835862 ], + [ 8.1233962, 47.1834954 ], + [ 8.1232307, 47.1834104 ], + [ 8.1230589, 47.1833314 ], + [ 8.1228813, 47.1832586 ], + [ 8.1226983, 47.1831923 ], + [ 8.1225105, 47.1831326 ], + [ 8.1223184, 47.1830797 ], + [ 8.1221225, 47.1830337 ], + [ 8.1219233, 47.1829947 ], + [ 8.1217214, 47.182963 ], + [ 8.1215173, 47.1829384 ], + [ 8.1213117, 47.1829212 ], + [ 8.1211049, 47.1829113 ], + [ 8.1208978, 47.1829089 ], + [ 8.1206907, 47.1829138 ], + [ 8.1204842, 47.1829261 ], + [ 8.1202791, 47.1829457 ], + [ 8.1200756, 47.1829727 ], + [ 8.1198746, 47.1830069 ], + [ 8.1196764, 47.1830482 ], + [ 8.1194817, 47.1830965 ], + [ 8.119291, 47.1831517 ], + [ 8.1191047, 47.1832136 ], + [ 8.1189235, 47.1832821 ], + [ 8.1187477, 47.1833569 ], + [ 8.118578, 47.183438 ], + [ 8.1184147, 47.1835249 ], + [ 8.1182583, 47.1836176 ], + [ 8.1181092, 47.1837157 ], + [ 8.1179679, 47.183819 ], + [ 8.1178347, 47.1839273 ], + [ 8.11771, 47.1840401 ], + [ 8.1175941, 47.1841572 ], + [ 8.1174873, 47.1842783 ], + [ 8.11739, 47.184403 ], + [ 8.1173024, 47.184531 ], + [ 8.1172248, 47.184662 ], + [ 8.1171573, 47.1847956 ], + [ 8.1171002, 47.1849314 ], + [ 8.1170536, 47.185069 ], + [ 8.1170176, 47.1852082 ], + [ 8.1169923, 47.1853484 ], + [ 8.1169778, 47.1854893 ], + [ 8.1169742, 47.1856306 ], + [ 8.1169814, 47.1857718 ], + [ 8.1169994, 47.1859125 ], + [ 8.1170283, 47.1860524 ], + [ 8.1170678, 47.1861911 ], + [ 8.1171179, 47.1863281 ], + [ 8.1171785, 47.1864632 ], + [ 8.1172493, 47.186596 ], + [ 8.1173303, 47.1867261 ], + [ 8.1174211, 47.186853 ], + [ 8.1175216, 47.1869766 ], + [ 8.1176314, 47.1870964 ], + [ 8.1177502, 47.187212099999996 ], + [ 8.1178778, 47.1873235 ], + [ 8.1180137, 47.1874301 ], + [ 8.1181577, 47.1875317 ], + [ 8.1183092, 47.1876281 ], + [ 8.118468, 47.1877189 ], + [ 8.1186334, 47.1878039 ], + [ 8.1188052, 47.1878829 ], + [ 8.1189829, 47.1879557 ], + [ 8.1191658, 47.188022 ], + [ 8.1193537, 47.1880817 ], + [ 8.1195458, 47.1881347 ], + [ 8.1197417, 47.1881807 ], + [ 8.1199409, 47.1882196 ], + [ 8.1201429, 47.1882514 ], + [ 8.1203469, 47.1882759 ], + [ 8.1205526, 47.1882932 ], + [ 8.1207594, 47.188303 ], + [ 8.1209666, 47.1883055 ], + [ 8.1211737, 47.1883006 ], + [ 8.1213801, 47.1882883 ], + [ 8.1215853, 47.1882686 ], + [ 8.1217888, 47.1882417 ], + [ 8.1219898, 47.1882075 ], + [ 8.122188, 47.1881662 ], + [ 8.1223827, 47.1881179 ], + [ 8.1225735, 47.1880627 ], + [ 8.1227598, 47.1880007 ], + [ 8.122941, 47.1879323 ], + [ 8.1231168, 47.1878574 ], + [ 8.1232865, 47.1877764 ], + [ 8.1234498, 47.1876894 ], + [ 8.1236062, 47.1875967 ], + [ 8.1237553, 47.1874986 ], + [ 8.1238966, 47.1873952 ], + [ 8.1240298, 47.187287 ], + [ 8.1241545, 47.1871742 ], + [ 8.1242704, 47.1870571 ], + [ 8.1243772, 47.186936 ], + [ 8.1244744, 47.1868112 ], + [ 8.124562, 47.1866832 ], + [ 8.1246396, 47.1865522 ], + [ 8.1247071, 47.1864186 ], + [ 8.1247642, 47.1862828 ], + [ 8.1248108, 47.1861452 ], + [ 8.1248468, 47.1860061 ], + [ 8.1248721, 47.1858658 ], + [ 8.1248865, 47.1857249 ], + [ 8.1248901, 47.1855837 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0116", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Sursee", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Sursee", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Sursee", + "lang" : "it-CH" + }, + { + "text" : "Substation Sursee", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.8436308, 46.9202035 ], + [ 8.8435105, 46.9200931 ], + [ 8.843435, 46.9200609 ], + [ 8.843382, 46.9199773 ], + [ 8.8433529, 46.9198707 ], + [ 8.8432896, 46.9197421 ], + [ 8.8432369, 46.91967 ], + [ 8.8431192, 46.9196273 ], + [ 8.8430044, 46.9196297 ], + [ 8.8429015, 46.9197109 ], + [ 8.842831499999999, 46.9197971 ], + [ 8.8427306, 46.9199235 ], + [ 8.8425977, 46.9200844 ], + [ 8.8425053, 46.9202217 ], + [ 8.8424929, 46.9203124 ], + [ 8.8424754, 46.9204595 ], + [ 8.842430199999999, 46.9205507 ], + [ 8.8423296, 46.9206884 ], + [ 8.8421701, 46.9208047 ], + [ 8.8419059, 46.9209627 ], + [ 8.8416596, 46.9211486 ], + [ 8.8414539, 46.9213166 ], + [ 8.8412413, 46.9215357 ], + [ 8.8411442, 46.9217466 ], + [ 8.8410672, 46.9220361 ], + [ 8.8409276, 46.9222197 ], + [ 8.8407883, 46.9222283 ], + [ 8.8405697, 46.922312 ], + [ 8.8403183, 46.9223963 ], + [ 8.8402189, 46.9225509 ], + [ 8.8401487, 46.9228177 ], + [ 8.8400866, 46.9230787 ], + [ 8.8400367, 46.9232435 ], + [ 8.8400324, 46.9235202 ], + [ 8.8399907, 46.923871 ], + [ 8.839987, 46.9241365 ], + [ 8.8401101, 46.9243257 ], + [ 8.8401681, 46.9245052 ], + [ 8.8402396, 46.9246335 ], + [ 8.8404088, 46.9247315 ], + [ 8.8404637, 46.9248546 ], + [ 8.8404963, 46.9250345 ], + [ 8.8405383, 46.9252311 ], + [ 8.8405185, 46.9253501 ], + [ 8.8404421, 46.9254759 ], + [ 8.8403836, 46.9256239 ], + [ 8.8402916, 46.9257783 ], + [ 8.8402665, 46.9259483 ], + [ 8.8402533, 46.9261968 ], + [ 8.8402144, 46.9264347 ], + [ 8.8402515, 46.9266936 ], + [ 8.8403337, 46.9268896 ], + [ 8.8403445, 46.927115 ], + [ 8.8403138, 46.9273529 ], + [ 8.8403257, 46.9276178 ], + [ 8.8402406, 46.9279132 ], + [ 8.8401106, 46.9281192 ], + [ 8.8400019, 46.9282627 ], + [ 8.8399115, 46.9284509 ], + [ 8.839903, 46.928626 ], + [ 8.8398771, 46.9287677 ], + [ 8.8397684, 46.9289112 ], + [ 8.8397273, 46.9290982 ], + [ 8.839735, 46.9292675 ], + [ 8.8397365, 46.929482 ], + [ 8.8397342, 46.9296118 ], + [ 8.8396563, 46.9297094 ], + [ 8.839529, 46.9298025 ], + [ 8.8393485, 46.9299925 ], + [ 8.8393014, 46.9300444 ], + [ 8.8392377, 46.9300909 ], + [ 8.8391004, 46.9301446 ], + [ 8.8389814, 46.9302374 ], + [ 8.8388453, 46.9303081 ], + [ 8.8387355, 46.9304403 ], + [ 8.8386322, 46.9306964 ], + [ 8.8385657, 46.9308559 ], + [ 8.8384485, 46.9309883 ], + [ 8.838186199999999, 46.9311913 ], + [ 8.8377113, 46.9314273 ], + [ 8.8376023, 46.9315593 ], + [ 8.8375337, 46.9316681 ], + [ 8.8374807, 46.9317764 ], + [ 8.837484, 46.9318385 ], + [ 8.8375132, 46.9319508 ], + [ 8.8376019, 46.9320787 ], + [ 8.8376754, 46.9322522 ], + [ 8.837731999999999, 46.9324091 ], + [ 8.8377626, 46.9325439 ], + [ 8.8377686, 46.9326792 ], + [ 8.8377789, 46.9327298 ], + [ 8.837727, 46.9328495 ], + [ 8.8376384, 46.9330715 ], + [ 8.8375011, 46.9333172 ], + [ 8.837451, 46.9334706 ], + [ 8.8374534, 46.9335327 ], + [ 8.8374726, 46.9335774 ], + [ 8.8375489, 46.9336379 ], + [ 8.8376258, 46.9336927 ], + [ 8.8377365, 46.9337807 ], + [ 8.8378504, 46.9339307 ], + [ 8.8378321, 46.9340778 ], + [ 8.8377828, 46.9342651 ], + [ 8.8377033, 46.9344927 ], + [ 8.8375479, 46.9347048 ], + [ 8.8372522, 46.934886 ], + [ 8.8369018, 46.9351419 ], + [ 8.8365952, 46.9354419 ], + [ 8.8363437, 46.9357126 ], + [ 8.8361991, 46.935964 ], + [ 8.8361085, 46.936141 ], + [ 8.8361305, 46.9362591 ], + [ 8.8361736, 46.9363089 ], + [ 8.8362413, 46.9363526 ], + [ 8.8363592, 46.9364066 ], + [ 8.8365417, 46.9364479 ], + [ 8.8366996, 46.9364897 ], + [ 8.8367537, 46.9365789 ], + [ 8.8367584, 46.9366973 ], + [ 8.8367475, 46.9368161 ], + [ 8.836727, 46.9369125 ], + [ 8.8367244, 46.937031 ], + [ 8.8366559, 46.9371454 ], + [ 8.8365715, 46.9372771 ], + [ 8.8364218, 46.9374213 ], + [ 8.8363047, 46.9375594 ], + [ 8.8361897, 46.937748 ], + [ 8.8361384, 46.9378902 ], + [ 8.8361437, 46.9379974 ], + [ 8.8361565, 46.93811 ], + [ 8.836155399999999, 46.9382569 ], + [ 8.8361507, 46.9383303 ], + [ 8.8361693, 46.9383807 ], + [ 8.836222, 46.938453 ], + [ 8.8362265, 46.9385601 ], + [ 8.8361893, 46.9386456 ], + [ 8.8361279, 46.9387485 ], + [ 8.8360221, 46.9389427 ], + [ 8.8359153, 46.9391256 ], + [ 8.835731299999999, 46.939248 ], + [ 8.8355529, 46.9393026 ], + [ 8.8353563, 46.9393181 ], + [ 8.8350759, 46.9393014 ], + [ 8.8349308, 46.9393722 ], + [ 8.8347455, 46.9394439 ], + [ 8.8346335, 46.9395253 ], + [ 8.8345882, 46.9396166 ], + [ 8.8345385, 46.939787 ], + [ 8.8344807, 46.9399632 ], + [ 8.8344548, 46.9401049 ], + [ 8.834379, 46.9402533 ], + [ 8.8342703, 46.9403966 ], + [ 8.8340841, 46.9404683 ], + [ 8.8339152, 46.9405397 ], + [ 8.8337961, 46.9406325 ], + [ 8.8337448, 46.9407747 ], + [ 8.8337021, 46.9409336 ], + [ 8.8336519, 46.9410872 ], + [ 8.8336346, 46.9412399 ], + [ 8.8336063, 46.9413534 ], + [ 8.8335138, 46.9414909 ], + [ 8.8334861, 46.941593 ], + [ 8.8333941, 46.9417475 ], + [ 8.8333492, 46.9418556 ], + [ 8.8333299, 46.9419633 ], + [ 8.8333015, 46.9420711 ], + [ 8.8332499, 46.942202 ], + [ 8.8331492, 46.9423397 ], + [ 8.8330485, 46.9424773 ], + [ 8.8329739, 46.9426426 ], + [ 8.832898, 46.9427853 ], + [ 8.8329017, 46.9428643 ], + [ 8.8329405, 46.9429989 ], + [ 8.8329699, 46.9430886 ], + [ 8.8330084, 46.943212 ], + [ 8.8329879, 46.9433084 ], + [ 8.8329612, 46.94345 ], + [ 8.8329259, 46.943575 ], + [ 8.8328228, 46.9438425 ], + [ 8.8327828, 46.9440409 ], + [ 8.8327483, 46.9441998 ], + [ 8.8327309, 46.9443525 ], + [ 8.8326881, 46.9445058 ], + [ 8.832656, 46.9446927 ], + [ 8.8325476, 46.9448474 ], + [ 8.8324283, 46.9449346 ], + [ 8.8323306, 46.9449649 ], + [ 8.8321993, 46.9449678 ], + [ 8.8320286, 46.9450053 ], + [ 8.8318572, 46.9450428 ], + [ 8.831631, 46.9451209 ], + [ 8.8314793, 46.9452258 ], + [ 8.831367, 46.9452959 ], + [ 8.831262, 46.9453319 ], + [ 8.8310899, 46.9453411 ], + [ 8.8308689, 46.9453684 ], + [ 8.830681, 46.9454063 ], + [ 8.83048, 46.9455065 ], + [ 8.8302728, 46.945652 ], + [ 8.8297765, 46.9459561 ], + [ 8.8293041, 46.9462313 ], + [ 8.8288141, 46.9464901 ], + [ 8.8282591, 46.9467784 ], + [ 8.8280149, 46.9468287 ], + [ 8.8278119, 46.9468838 ], + [ 8.8275771, 46.946979 ], + [ 8.8275071, 46.9470652 ], + [ 8.8274539, 46.9471679 ], + [ 8.8273871, 46.9473161 ], + [ 8.8273291, 46.9474866 ], + [ 8.8272946, 46.9476455 ], + [ 8.827238, 46.9478386 ], + [ 8.8271744, 46.9480769 ], + [ 8.8270857, 46.948299 ], + [ 8.8269982, 46.9485323 ], + [ 8.8268854, 46.9487774 ], + [ 8.8267735, 46.9490225 ], + [ 8.82661, 46.9492406 ], + [ 8.8264148, 46.9494704 ], + [ 8.8262442, 46.9496999 ], + [ 8.8264553, 46.9496388 ], + [ 8.8266106, 46.9496131 ], + [ 8.8267991, 46.9495979 ], + [ 8.8271054, 46.9496308 ], + [ 8.8273305, 46.9496995 ], + [ 8.8275226, 46.9497631 ], + [ 8.8276127, 46.9497555 ], + [ 8.8278097, 46.9497515 ], + [ 8.8281391, 46.9497558 ], + [ 8.8284161, 46.9497048 ], + [ 8.8286595, 46.9496206 ], + [ 8.8288916, 46.9494859 ], + [ 8.829436, 46.9493276 ], + [ 8.8296884, 46.9492772 ], + [ 8.8297995, 46.9491901 ], + [ 8.8298626, 46.949121 ], + [ 8.8298982, 46.9490074 ], + [ 8.8299737, 46.9488478 ], + [ 8.830048099999999, 46.9486768 ], + [ 8.8301934, 46.9486116 ], + [ 8.8304209, 46.9485504 ], + [ 8.8306259, 46.9485404 ], + [ 8.8308568, 46.9485468 ], + [ 8.8310232, 46.9485997 ], + [ 8.8311968, 46.9486131 ], + [ 8.8314186, 46.948614 ], + [ 8.8317636, 46.9485897 ], + [ 8.8321916, 46.9485976 ], + [ 8.8326446, 46.9486219 ], + [ 8.8331985, 46.9486723 ], + [ 8.8335878, 46.9487375 ], + [ 8.8339268, 46.9487641 ], + [ 8.8340441, 46.9488237 ], + [ 8.8341556, 46.9489117 ], + [ 8.8342342, 46.9490286 ], + [ 8.8343545, 46.9491389 ], + [ 8.8345855, 46.949151 ], + [ 8.8347578, 46.9491473 ], + [ 8.834989, 46.949165 ], + [ 8.8352462, 46.9492048 ], + [ 8.8354961, 46.9492785 ], + [ 8.8357968, 46.9493794 ], + [ 8.8360153, 46.9494764 ], + [ 8.8362172, 46.949568 ], + [ 8.836301, 46.9496001 ], + [ 8.8365408, 46.9496346 ], + [ 8.8368296, 46.9496567 ], + [ 8.837144200000001, 46.9496951 ], + [ 8.8375092, 46.9497721 ], + [ 8.8377517, 46.949846 ], + [ 8.8379358, 46.9499154 ], + [ 8.8380316, 46.9500321 ], + [ 8.8380608, 46.9501443 ], + [ 8.8380499, 46.9502631 ], + [ 8.8380163, 46.9504218 ], + [ 8.8379506, 46.9506096 ], + [ 8.8378861, 46.950814 ], + [ 8.8379104, 46.9509886 ], + [ 8.8379885, 46.9510886 ], + [ 8.8380716, 46.9512844 ], + [ 8.8381632, 46.9514913 ], + [ 8.8382278, 46.9516367 ], + [ 8.8382424, 46.9517888 ], + [ 8.8381962, 46.9520325 ], + [ 8.8381495, 46.9540882 ], + [ 8.8381164, 46.954264 ], + [ 8.8380557, 46.9543611 ], + [ 8.8379436, 46.9544426 ], + [ 8.837883399999999, 46.9545568 ], + [ 8.837807699999999, 46.9547108 ], + [ 8.8378312, 46.954857 ], + [ 8.8379006, 46.9549346 ], + [ 8.8379847, 46.954978 ], + [ 8.8380948, 46.9550434 ], + [ 8.838163999999999, 46.9551154 ], + [ 8.8382188, 46.9552326 ], + [ 8.8382808, 46.9553443 ], + [ 8.838300199999999, 46.9553947 ], + [ 8.8384095, 46.9554601 ], + [ 8.8384967, 46.9555599 ], + [ 8.8385482, 46.9556152 ], + [ 8.8386091, 46.9556816 ], + [ 8.8386852, 46.9557365 ], + [ 8.8388274, 46.955773 ], + [ 8.8389548, 46.955872 ], + [ 8.839050199999999, 46.9559715 ], + [ 8.8391397, 46.9561277 ], + [ 8.8392034, 46.9562731 ], + [ 8.8391171, 46.9563652 ], + [ 8.8390389, 46.9564515 ], + [ 8.8389612, 46.9565604 ], + [ 8.8389732, 46.9566393 ], + [ 8.8390112, 46.9567456 ], + [ 8.8390848, 46.9569191 ], + [ 8.8391923, 46.9571088 ], + [ 8.8389534, 46.9571082 ], + [ 8.8387483, 46.9571181 ], + [ 8.8385172, 46.9571062 ], + [ 8.8381889, 46.9571132 ], + [ 8.8378683, 46.9571311 ], + [ 8.8375155, 46.9571443 ], + [ 8.8371779, 46.9571401 ], + [ 8.8368626, 46.9570792 ], + [ 8.8365964, 46.9570114 ], + [ 8.8362893, 46.9569501 ], + [ 8.8362404, 46.9571544 ], + [ 8.8362599, 46.9573968 ], + [ 8.8362381, 46.9576343 ], + [ 8.836284299999999, 46.9579268 ], + [ 8.8363737, 46.9582693 ], + [ 8.8364543, 46.9585894 ], + [ 8.8365219, 46.9588194 ], + [ 8.8365398, 46.9590334 ], + [ 8.8365588, 46.9592589 ], + [ 8.8366256, 46.9594607 ], + [ 8.8366929, 46.9596795 ], + [ 8.8367254, 46.9598538 ], + [ 8.836707, 46.9600009 ], + [ 8.8367042, 46.9601138 ], + [ 8.8366834, 46.960199 ], + [ 8.8366567, 46.9603406 ], + [ 8.8366543, 46.9604705 ], + [ 8.8356025, 46.9601315 ], + [ 8.8352358, 46.9600207 ], + [ 8.8350015, 46.9599466 ], + [ 8.8346944, 46.9598854 ], + [ 8.8344875, 46.9598559 ], + [ 8.8342724, 46.9598266 ], + [ 8.8339861, 46.9598721 ], + [ 8.8337564, 46.9598827 ], + [ 8.8335614, 46.959932 ], + [ 8.8333913, 46.959992 ], + [ 8.8332275, 46.9600068 ], + [ 8.833071499999999, 46.9600101 ], + [ 8.8328734, 46.9600031 ], + [ 8.8327509, 46.960028199999996 ], + [ 8.832662599999999, 46.9600752 ], + [ 8.8325576, 46.9601113 ], + [ 8.8324592, 46.960119 ], + [ 8.8323033, 46.9601223 ], + [ 8.832122, 46.9601318 ], + [ 8.8318906, 46.9601085 ], + [ 8.8316343, 46.9600743 ], + [ 8.8313789, 46.9600741 ], + [ 8.831142700000001, 46.9601186 ], + [ 8.8309483, 46.9601905 ], + [ 8.8307389, 46.9602853 ], + [ 8.830536500000001, 46.9603686 ], + [ 8.8302696, 46.9604644 ], + [ 8.8299214, 46.9605904 ], + [ 8.8297344, 46.9606339 ], + [ 8.8295478, 46.9606886 ], + [ 8.8292679, 46.9606945 ], + [ 8.8289314, 46.9607017 ], + [ 8.8286025, 46.9607198 ], + [ 8.8284478, 46.96074 ], + [ 8.8283012, 46.9607883 ], + [ 8.8280752, 46.9608778 ], + [ 8.8278564, 46.9609614 ], + [ 8.8276162, 46.9611019 ], + [ 8.8273906, 46.9612083 ], + [ 8.8272242, 46.9613473 ], + [ 8.8269508, 46.9614772 ], + [ 8.8266697, 46.96163 ], + [ 8.8264952, 46.9617748 ], + [ 8.8263472, 46.9619585 ], + [ 8.826175, 46.9621598 ], + [ 8.8260267, 46.9625241 ], + [ 8.8259706, 46.9627341 ], + [ 8.8258984, 46.9629614 ], + [ 8.8259093, 46.9631927 ], + [ 8.8259569, 46.9633497 ], + [ 8.8260128, 46.9634785 ], + [ 8.8261093, 46.9636231 ], + [ 8.8261144, 46.9637247 ], + [ 8.8260372, 46.9638504 ], + [ 8.8259276, 46.9639656 ], + [ 8.8257599, 46.9640877 ], + [ 8.8256318, 46.9641525 ], + [ 8.8254806, 46.9642742 ], + [ 8.8252833, 46.9644591 ], + [ 8.8251038, 46.9646661 ], + [ 8.824915, 46.9648619 ], + [ 8.8247638, 46.9649837 ], + [ 8.8245957, 46.9650889 ], + [ 8.8244274, 46.9651883 ], + [ 8.824259099999999, 46.9652879 ], + [ 8.824107099999999, 46.9653814 ], + [ 8.8239305, 46.9654755 ], + [ 8.8238256, 46.9655172 ], + [ 8.8237097, 46.965514 ], + [ 8.8236868, 46.9655483 ], + [ 8.8236188, 46.9656852 ], + [ 8.8236266, 46.9658601 ], + [ 8.8235908, 46.9659681 ], + [ 8.8235308, 46.9660935 ], + [ 8.8234796, 46.9662414 ], + [ 8.823467, 46.9663264 ], + [ 8.8234155, 46.9664629 ], + [ 8.8234278, 46.9665586 ], + [ 8.8234691, 46.9667271 ], + [ 8.823441, 46.9668462 ], + [ 8.8233562, 46.9669666 ], + [ 8.8233209, 46.9670972 ], + [ 8.8233445, 46.967249 ], + [ 8.8233548, 46.9674859 ], + [ 8.8233601, 46.9677906 ], + [ 8.8232762, 46.9681028 ], + [ 8.8232265, 46.9684709 ], + [ 8.8231294, 46.9688793 ], + [ 8.8231528, 46.96902 ], + [ 8.8231729, 46.9690987 ], + [ 8.8232503, 46.9691704 ], + [ 8.8233369, 46.9692814 ], + [ 8.823375, 46.9693879 ], + [ 8.8233971, 46.9695116 ], + [ 8.8234335, 46.9695843 ], + [ 8.8234946, 46.969662 ], + [ 8.8236047, 46.9697274 ], + [ 8.8237402, 46.9698205 ], + [ 8.8239031, 46.9699582 ], + [ 8.8239727, 46.970047 ], + [ 8.8240529, 46.9701921 ], + [ 8.8241662, 46.9703196 ], + [ 8.8243148, 46.9705084 ], + [ 8.8244009, 46.970597 ], + [ 8.8244785, 46.9706743 ], + [ 8.8244969, 46.9707191 ], + [ 8.824484, 46.9707928 ], + [ 8.8244551, 46.9708836 ], + [ 8.8243919, 46.9709471 ], + [ 8.824311699999999, 46.9709939 ], + [ 8.8241903, 46.9710304 ], + [ 8.824069399999999, 46.9710893 ], + [ 8.8237814, 46.9711011 ], + [ 8.8235518, 46.9711172 ], + [ 8.8233532, 46.9710932 ], + [ 8.8231222, 46.9710867 ], + [ 8.8228498, 46.9710643 ], + [ 8.822667299999999, 46.9710285 ], + [ 8.8224868, 46.971038 ], + [ 8.8222899, 46.9710478 ], + [ 8.8219703, 46.9710771 ], + [ 8.8217559, 46.9710759 ], + [ 8.82171, 46.971144699999996 ], + [ 8.8216816, 46.9712525 ], + [ 8.8216708, 46.9713769 ], + [ 8.8216622, 46.9715521 ], + [ 8.8216527, 46.9716934 ], + [ 8.8216756, 46.971851 ], + [ 8.8217628, 46.9719508 ], + [ 8.8217982, 46.9720178 ], + [ 8.8218789, 46.9721515 ], + [ 8.8219242, 46.9722522 ], + [ 8.8219641, 46.9723982 ], + [ 8.8220107, 46.9725157 ], + [ 8.8220153, 46.9726341 ], + [ 8.8220223, 46.9727752 ], + [ 8.822053, 46.9729157 ], + [ 8.822099, 46.9730106 ], + [ 8.822187, 46.9731443 ], + [ 8.8222731, 46.9732328 ], + [ 8.8223703, 46.9733718 ], + [ 8.8224486, 46.9734774 ], + [ 8.8224955, 46.9736063 ], + [ 8.8224857, 46.9737363 ], + [ 8.8225006, 46.9738998 ], + [ 8.8225308, 46.9740233 ], + [ 8.8225838, 46.9741012 ], + [ 8.8226429, 46.9741338 ], + [ 8.8227675, 46.9741538 ], + [ 8.8229086, 46.9741791 ], + [ 8.8230171, 46.9742107 ], + [ 8.8231617, 46.9743092 ], + [ 8.8233139, 46.9744132 ], + [ 8.8234754, 46.9745283 ], + [ 8.8236634, 46.9746825 ], + [ 8.8239018, 46.9748468 ], + [ 8.8241291, 46.9749662 ], + [ 8.8243723, 46.9750628 ], + [ 8.8246337, 46.9751984 ], + [ 8.8247299, 46.9753261 ], + [ 8.8247702, 46.975489 ], + [ 8.8247602, 46.9756416 ], + [ 8.8246182, 46.9757745 ], + [ 8.8245803, 46.9760236 ], + [ 8.8246222, 46.9762147 ], + [ 8.8246615, 46.976372 ], + [ 8.8247869, 46.9765838 ], + [ 8.824926, 46.9767501 ], + [ 8.8250221, 46.976878 ], + [ 8.8251015, 46.9769949 ], + [ 8.8251131, 46.9770623 ], + [ 8.825081, 46.9770913 ], + [ 8.8250102, 46.9771492 ], + [ 8.824921, 46.9771962 ], + [ 8.8248423, 46.9772656 ], + [ 8.8247479, 46.9773636 ], + [ 8.8246979, 46.9775284 ], + [ 8.8246566, 46.9777099 ], + [ 8.8246416, 46.9779247 ], + [ 8.8246252, 46.9781171 ], + [ 8.8246787, 46.9783755 ], + [ 8.8246741, 46.9786409 ], + [ 8.824621, 46.9787493 ], + [ 8.8245341, 46.9788189 ], + [ 8.8243086, 46.9789309 ], + [ 8.8241162, 46.9790535 ], + [ 8.8238349, 46.9792006 ], + [ 8.8237321, 46.9792931 ], + [ 8.8236397, 46.9794362 ], + [ 8.8234807, 46.9795467 ], + [ 8.8232945, 46.9796241 ], + [ 8.8231016, 46.9797241 ], + [ 8.8230812, 46.9798261 ], + [ 8.823169, 46.9799485 ], + [ 8.8232991, 46.9800868 ], + [ 8.8234579, 46.9803206 ], + [ 8.8236412, 46.9805481 ], + [ 8.8238147, 46.9807421 ], + [ 8.8238887, 46.9809381 ], + [ 8.8238465, 46.9810857 ], + [ 8.8237753, 46.9811606 ], + [ 8.8235642, 46.9812271 ], + [ 8.8219772, 46.9816219 ], + [ 8.8218679, 46.9817483 ], + [ 8.8218804, 46.9818497 ], + [ 8.8219902, 46.9819039 ], + [ 8.8221434, 46.9820135 ], + [ 8.8222134, 46.9821136 ], + [ 8.8222659, 46.9821747 ], + [ 8.8221956, 46.9822551 ], + [ 8.8221082, 46.982336 ], + [ 8.8220547, 46.9824274 ], + [ 8.8220746, 46.9825004 ], + [ 8.8220866, 46.9825848 ], + [ 8.8221334, 46.982708 ], + [ 8.8222292, 46.9828246 ], + [ 8.8223579, 46.9829404 ], + [ 8.8224477, 46.9831078 ], + [ 8.8225285, 46.9832473 ], + [ 8.8225425, 46.9833769 ], + [ 8.8225135, 46.9834621 ], + [ 8.8224679, 46.9835421 ], + [ 8.8224556, 46.9836383 ], + [ 8.8224352, 46.9837404 ], + [ 8.8224001, 46.9838766 ], + [ 8.8223977, 46.9840064 ], + [ 8.8223389, 46.9841488 ], + [ 8.8222472, 46.9843202 ], + [ 8.8223034, 46.9844601 ], + [ 8.8223416, 46.9845722 ], + [ 8.8224394, 46.9847338 ], + [ 8.8225109, 46.9848621 ], + [ 8.8225561, 46.9849572 ], + [ 8.8225616, 46.9850756 ], + [ 8.8225187, 46.9852289 ], + [ 8.8224932, 46.9853875 ], + [ 8.8225319, 46.9855165 ], + [ 8.822652099999999, 46.9856212 ], + [ 8.8227805, 46.9857258 ], + [ 8.8229815, 46.9858119 ], + [ 8.8232267, 46.9859535 ], + [ 8.8234523, 46.9860334 ], + [ 8.823538, 46.9861051 ], + [ 8.8236522, 46.9862663 ], + [ 8.823765999999999, 46.9864107 ], + [ 8.8239291, 46.986554 ], + [ 8.8241403, 46.9866793 ], + [ 8.8243938, 46.9868264 ], + [ 8.8246205, 46.9869177 ], + [ 8.8248295, 46.9869922 ], + [ 8.8251139, 46.9870935 ], + [ 8.8253783, 46.9871162 ], + [ 8.8256399, 46.9870655 ], + [ 8.8259697, 46.9870756 ], + [ 8.8262981, 46.9870686 ], + [ 8.8265949, 46.9870736 ], + [ 8.8268942, 46.9871463 ], + [ 8.8270611, 46.9871824 ], + [ 8.8271559, 46.9872875 ], + [ 8.8272107, 46.9874049 ], + [ 8.8271933, 46.9875578 ], + [ 8.8271896, 46.9876707 ], + [ 8.8271228, 46.9878189 ], + [ 8.8269911, 46.9880024 ], + [ 8.8268824, 46.9881514 ], + [ 8.8267177, 46.9883298 ], + [ 8.8265232, 46.9884018 ], + [ 8.8263818, 46.9883651 ], + [ 8.8261813, 46.9883016 ], + [ 8.8259496, 46.9882726 ], + [ 8.8257453, 46.9883164 ], + [ 8.825585, 46.9884102 ], + [ 8.8258818, 46.9884152 ], + [ 8.8261561, 46.9884716 ], + [ 8.8264146, 46.9885564 ], + [ 8.8266984, 46.9886295 ], + [ 8.8269872, 46.988646 ], + [ 8.8272268, 46.9886634 ], + [ 8.8275772, 46.9885827 ], + [ 8.8279918, 46.9884724 ], + [ 8.8283419, 46.9883803 ], + [ 8.8285161, 46.9884105 ], + [ 8.8287066, 46.9884403 ], + [ 8.8288975, 46.9884815 ], + [ 8.8292086, 46.9886273 ], + [ 8.8294187, 46.9887132 ], + [ 8.829585, 46.9887549 ], + [ 8.8298363, 46.9888455 ], + [ 8.8300289, 46.9889205 ], + [ 8.8302125, 46.9889674 ], + [ 8.8303401, 46.989072 ], + [ 8.8304526, 46.9891938 ], + [ 8.8305576, 46.9893158 ], + [ 8.8306668, 46.9893755 ], + [ 8.8308016, 46.9894405 ], + [ 8.8309431, 46.989477 ], + [ 8.8311512, 46.9895178 ], + [ 8.8313502, 46.989553 ], + [ 8.8315059, 46.9895385 ], + [ 8.8316844, 46.9894839 ], + [ 8.8318776, 46.9893895 ], + [ 8.8321374, 46.9892993 ], + [ 8.832396, 46.9891979 ], + [ 8.8325744, 46.9891377 ], + [ 8.8327554, 46.9891452 ], + [ 8.8328656, 46.9892106 ], + [ 8.8330189, 46.9893258 ], + [ 8.8331883, 46.9894239 ], + [ 8.8333641, 46.9894879 ], + [ 8.833503499999999, 46.9894737 ], + [ 8.8337144, 46.9894014 ], + [ 8.8339977, 46.9892996 ], + [ 8.8341995, 46.9892219 ], + [ 8.8344257, 46.9892961 ], + [ 8.8346019, 46.9893714 ], + [ 8.8347776, 46.989429799999996 ], + [ 8.8349358, 46.9894772 ], + [ 8.8350866, 46.9895249 ], + [ 8.835116, 46.9896427 ], + [ 8.835201, 46.9896918 ], + [ 8.8352049, 46.9897765 ], + [ 8.8352414, 46.9898546 ], + [ 8.8353499, 46.9898862 ], + [ 8.8355156, 46.9899052 ], + [ 8.835625, 46.9899763 ], + [ 8.8356698, 46.9900545 ], + [ 8.8356748, 46.9901503 ], + [ 8.8356713, 46.990269 ], + [ 8.8357171, 46.9903583 ], + [ 8.8358283, 46.9904632 ], + [ 8.8358567, 46.9905417 ], + [ 8.8358536, 46.9906434 ], + [ 8.8358983, 46.9907214 ], + [ 8.83596, 46.9908161 ], + [ 8.8360298, 46.9909105 ], + [ 8.8361255, 46.9910214 ], + [ 8.8361625, 46.9911166 ], + [ 8.8361839, 46.9912122 ], + [ 8.8361967, 46.9913248 ], + [ 8.8362579, 46.9914024 ], + [ 8.8363103, 46.9914578 ], + [ 8.8362913, 46.9915824 ], + [ 8.8362792, 46.9916843 ], + [ 8.8363095, 46.9918078 ], + [ 8.8363658, 46.9919478 ], + [ 8.8364029, 46.9920486 ], + [ 8.8363598, 46.9921907 ], + [ 8.8363156, 46.9922931 ], + [ 8.8362693, 46.9923789 ], + [ 8.8363008, 46.9925136 ], + [ 8.8363702, 46.9925912 ], + [ 8.836456, 46.9926684 ], + [ 8.8365747, 46.9927449 ], + [ 8.8366294, 46.9928567 ], + [ 8.8366332, 46.9929412 ], + [ 8.8366215, 46.99306 ], + [ 8.83665, 46.9931442 ], + [ 8.8367375, 46.9932551 ], + [ 8.8367679, 46.9933787 ], + [ 8.8368142, 46.993485 ], + [ 8.8368781, 46.9936361 ], + [ 8.8369246, 46.9937479 ], + [ 8.8369532, 46.9938377 ], + [ 8.8370652, 46.9939426 ], + [ 8.8371351, 46.9940371 ], + [ 8.8371481, 46.9941272 ], + [ 8.8371772, 46.9942338 ], + [ 8.8371972, 46.9943068 ], + [ 8.837252, 46.994424 ], + [ 8.8373559, 46.9945348 ], + [ 8.8373852, 46.9946471 ], + [ 8.8374151, 46.9947537 ], + [ 8.8374615, 46.9948656 ], + [ 8.8375477, 46.9949541 ], + [ 8.8376103, 46.9950544 ], + [ 8.8376783, 46.9951093 ], + [ 8.8377559, 46.9951868 ], + [ 8.8378584, 46.995275 ], + [ 8.8379557, 46.995414 ], + [ 8.8379369, 46.9955442 ], + [ 8.837958, 46.9956567 ], + [ 8.838021, 46.9957739 ], + [ 8.8381656, 46.9958669 ], + [ 8.8382592, 46.9959269 ], + [ 8.8382866, 46.9959998 ], + [ 8.8382921, 46.9961182 ], + [ 8.8383079, 46.9962815 ], + [ 8.8383401, 46.9964446 ], + [ 8.8384282, 46.9965782 ], + [ 8.8385418, 46.9967112 ], + [ 8.8386853, 46.9967929 ], + [ 8.8388694, 46.9968568 ], + [ 8.8390852, 46.9969085 ], + [ 8.8392298, 46.9970015 ], + [ 8.8393501, 46.9971062 ], + [ 8.839412, 46.9972121 ], + [ 8.8394278, 46.9973755 ], + [ 8.8393698, 46.9975461 ], + [ 8.8393176, 46.9978464 ], + [ 8.8392655, 46.9981467 ], + [ 8.8392708, 46.9984458 ], + [ 8.839284, 46.9987334 ], + [ 8.839345, 46.9989917 ], + [ 8.8392503, 46.9996146 ], + [ 8.8393206, 46.9997261 ], + [ 8.8394783, 46.999751 ], + [ 8.8395964, 46.999805 ], + [ 8.839703, 46.9997971 ], + [ 8.8398326, 46.9997547 ], + [ 8.8400287, 46.9997111 ], + [ 8.8402258, 46.9997069 ], + [ 8.8404227, 46.9996914 ], + [ 8.8405966, 46.9997104 ], + [ 8.840795, 46.9997231 ], + [ 8.8409526, 46.9997479 ], + [ 8.8410924, 46.9997507 ], + [ 8.8413041, 46.9997066 ], + [ 8.8414592, 46.9996638 ], + [ 8.8415804, 46.9996161 ], + [ 8.841692, 46.999546 ], + [ 8.8417302, 46.9994661 ], + [ 8.8417004, 46.9993651 ], + [ 8.84167, 46.9992417 ], + [ 8.8417418, 46.9991893 ], + [ 8.8419385, 46.9991682 ], + [ 8.842112, 46.9991702 ], + [ 8.8422553, 46.9992462 ], + [ 8.8423623, 46.9992495 ], + [ 8.8425103, 46.999252 ], + [ 8.8426823, 46.9992315 ], + [ 8.8428627, 46.9992164 ], + [ 8.8429873, 46.9992362 ], + [ 8.8431372, 46.9992782 ], + [ 8.8432942, 46.9992805 ], + [ 8.843483299999999, 46.9992821 ], + [ 8.8437574, 46.9993271 ], + [ 8.8438248, 46.9993596 ], + [ 8.8440039, 46.9993276 ], + [ 8.8442825, 46.9992934 ], + [ 8.8445461, 46.9992878 ], + [ 8.8449232, 46.9992516 ], + [ 8.8451694, 46.999235 ], + [ 8.8454404, 46.9992293 ], + [ 8.8457763, 46.9991884 ], + [ 8.8460735, 46.9992046 ], + [ 8.8463211, 46.9992163 ], + [ 8.8466055, 46.9993119 ], + [ 8.8468129, 46.9993526 ], + [ 8.8471223, 46.9994589 ], + [ 8.8475293, 46.9995293 ], + [ 8.8479222, 46.9996564 ], + [ 8.8482583, 46.999813 ], + [ 8.8485283, 46.999954 ], + [ 8.8486793, 47.0000073 ], + [ 8.8488439, 47.0000151 ], + [ 8.8490257, 47.0000224 ], + [ 8.8491911, 47.0000302 ], + [ 8.849356, 47.0000493 ], + [ 8.8495541, 47.0000508 ], + [ 8.849671, 47.0000877 ], + [ 8.8497714, 47.0001251 ], + [ 8.8499295, 47.0001669 ], + [ 8.8499982, 47.0002162 ], + [ 8.850098299999999, 47.0002424 ], + [ 8.8502646, 47.0002839 ], + [ 8.8504227, 47.0003259 ], + [ 8.850507799999999, 47.0003748 ], + [ 8.8505514, 47.0004359 ], + [ 8.8506613, 47.0004901 ], + [ 8.8507453, 47.0005278 ], + [ 8.8508279, 47.000543 ], + [ 8.8509688, 47.0005568 ], + [ 8.8511099, 47.0005765 ], + [ 8.8511855, 47.0006087 ], + [ 8.8512701, 47.0006689 ], + [ 8.851395, 47.0007002 ], + [ 8.8515182, 47.0006977 ], + [ 8.851621699999999, 47.0007858 ], + [ 8.8517309, 47.0008454 ], + [ 8.8518783, 47.0008254 ], + [ 8.8520924, 47.0009959 ], + [ 8.8522078, 47.0010104 ], + [ 8.8524077, 47.0010456 ], + [ 8.8526251, 47.0011256 ], + [ 8.8527845, 47.0011843 ], + [ 8.8529898, 47.0011799 ], + [ 8.853212599999999, 47.0011809 ], + [ 8.8533949, 47.0012052 ], + [ 8.8535207, 47.0012703 ], + [ 8.8536227, 47.0013358 ], + [ 8.853842, 47.0014554 ], + [ 8.8540685, 47.0015352 ], + [ 8.8542857, 47.0016039 ], + [ 8.8545253, 47.0016214 ], + [ 8.8547717, 47.0016161 ], + [ 8.8551016, 47.0016261 ], + [ 8.8553163, 47.0016327 ], + [ 8.85523, 47.0019112 ], + [ 8.8554425, 47.0020534 ], + [ 8.8556944, 47.0021609 ], + [ 8.8559114, 47.002224 ], + [ 8.8560713, 47.0023053 ], + [ 8.8562913, 47.0024192 ], + [ 8.8563854, 47.0024962 ], + [ 8.8564157, 47.0026141 ], + [ 8.8565124, 47.0027588 ], + [ 8.8569066, 47.003089 ], + [ 8.8568863, 47.0031912 ], + [ 8.8569049, 47.0032416 ], + [ 8.8569737, 47.0032965 ], + [ 8.8572052, 47.0035004 ], + [ 8.8573948, 47.003677 ], + [ 8.8576033, 47.0039153 ], + [ 8.8577039, 47.0041446 ], + [ 8.8578157, 47.0044245 ], + [ 8.8579721, 47.0047768 ], + [ 8.8580988, 47.0050281 ], + [ 8.8583422, 47.0053107 ], + [ 8.8585116, 47.0054088 ], + [ 8.8586982, 47.0055346 ], + [ 8.8588614, 47.0056723 ], + [ 8.8589147, 47.0057615 ], + [ 8.8590027, 47.0058894 ], + [ 8.8591037, 47.0061017 ], + [ 8.8592024, 47.0062915 ], + [ 8.8592955, 47.0065154 ], + [ 8.859387, 47.0067109 ], + [ 8.8594467, 47.0069468 ], + [ 8.8595662, 47.0072096 ], + [ 8.859673, 47.0073935 ], + [ 8.8598713, 47.0075869 ], + [ 8.8600956, 47.0077966 ], + [ 8.861374099999999, 47.0085539 ], + [ 8.8613165, 47.0087358 ], + [ 8.8614165, 47.0089425 ], + [ 8.8615265, 47.0091829 ], + [ 8.8616556, 47.0094963 ], + [ 8.8618796, 47.009881 ], + [ 8.8622106, 47.0102747 ], + [ 8.8621984, 47.010371 ], + [ 8.8621596, 47.0104283 ], + [ 8.8620663, 47.0105375 ], + [ 8.8620955, 47.0106441 ], + [ 8.8621433, 47.0107729 ], + [ 8.8621991, 47.0109241 ], + [ 8.8623358, 47.0110284 ], + [ 8.862516, 47.0111882 ], + [ 8.8626369, 47.0113155 ], + [ 8.8628005, 47.0114701 ], + [ 8.8629733, 47.0116301 ], + [ 8.8630881, 47.0118026 ], + [ 8.8631436, 47.0119426 ], + [ 8.8631771, 47.0121226 ], + [ 8.8631443, 47.0123095 ], + [ 8.8631339, 47.0124451 ], + [ 8.8631414, 47.0126031 ], + [ 8.8632296, 47.0127366 ], + [ 8.8633125, 47.0129155 ], + [ 8.8632567, 47.0131369 ], + [ 8.8632356, 47.013397 ], + [ 8.8632048, 47.0136291 ], + [ 8.8632489, 47.0136789 ], + [ 8.8633334, 47.0137337 ], + [ 8.8633931, 47.0137831 ], + [ 8.8634804, 47.0138828 ], + [ 8.8635443, 47.0140282 ], + [ 8.8636499, 47.0141672 ], + [ 8.8637812, 47.0143449 ], + [ 8.8638966, 47.0145119 ], + [ 8.8639684, 47.0146458 ], + [ 8.8640294, 47.0147123 ], + [ 8.8641365, 47.0147212 ], + [ 8.8642266, 47.014708 ], + [ 8.864382299999999, 47.0146878 ], + [ 8.8645238, 47.0147242 ], + [ 8.8647345, 47.0148269 ], + [ 8.8649223, 47.014964 ], + [ 8.8648451, 47.01509 ], + [ 8.8648585, 47.0151913 ], + [ 8.8649136, 47.0153143 ], + [ 8.8649603, 47.0154318 ], + [ 8.8650481, 47.0155485 ], + [ 8.8649374, 47.0156525 ], + [ 8.8649417, 47.0157539 ], + [ 8.865023, 47.0159046 ], + [ 8.8651432, 47.0160036 ], + [ 8.865261, 47.0160745 ], + [ 8.8652127, 47.0162674 ], + [ 8.8654467, 47.0163472 ], + [ 8.8656118, 47.0165298 ], + [ 8.8656653, 47.0166248 ], + [ 8.8657381, 47.0167643 ], + [ 8.8659474, 47.0168445 ], + [ 8.8661289, 47.0170212 ], + [ 8.8666923, 47.0174607 ], + [ 8.8668864, 47.0175581 ], + [ 8.8670112, 47.0175837 ], + [ 8.8672103, 47.017619 ], + [ 8.8672791, 47.0176684 ], + [ 8.8673242, 47.0177576 ], + [ 8.8673034, 47.0178428 ], + [ 8.867284699999999, 47.0179731 ], + [ 8.8672029, 47.0181724 ], + [ 8.8671322, 47.0184222 ], + [ 8.8670668, 47.0186213 ], + [ 8.8670285, 47.0188478 ], + [ 8.8670606, 47.0190052 ], + [ 8.8671222, 47.0190942 ], + [ 8.8672006, 47.0191997 ], + [ 8.8672717, 47.0193055 ], + [ 8.8673351, 47.0194339 ], + [ 8.8674087, 47.0196017 ], + [ 8.867466499999999, 47.0199506 ], + [ 8.8676245, 47.020173 ], + [ 8.8678534, 47.0203091 ], + [ 8.8680625, 47.0203781 ], + [ 8.868263, 47.0204359 ], + [ 8.8684049, 47.0204836 ], + [ 8.8685429, 47.0206049 ], + [ 8.8685722, 47.0207171 ], + [ 8.8685529, 47.0208247 ], + [ 8.8685678, 47.0209825 ], + [ 8.8685831, 47.0211234 ], + [ 8.8686839, 47.021172 ], + [ 8.8687598, 47.0212155 ], + [ 8.8688047, 47.0212935 ], + [ 8.8688595, 47.0214053 ], + [ 8.8690294, 47.0215201 ], + [ 8.869191, 47.0216296 ], + [ 8.8694635, 47.021827 ], + [ 8.8699076, 47.0221674 ], + [ 8.8703658, 47.0226374 ], + [ 8.8705, 47.0226741 ], + [ 8.8707234, 47.0226975 ], + [ 8.8709963, 47.0227255 ], + [ 8.8711399, 47.0228071 ], + [ 8.871221, 47.0229465 ], + [ 8.8712025, 47.023088 ], + [ 8.871184, 47.0232239 ], + [ 8.8712411, 47.023392 ], + [ 8.8714265, 47.0236533 ], + [ 8.871698, 47.0241838 ], + [ 8.8718248, 47.0244351 ], + [ 8.8718304, 47.0245535 ], + [ 8.8718264, 47.0246496 ], + [ 8.8717719, 47.0248878 ], + [ 8.8717962, 47.0250566 ], + [ 8.8718683, 47.0252019 ], + [ 8.8719645, 47.025324 ], + [ 8.8719858, 47.0254138 ], + [ 8.8719801, 47.0256623 ], + [ 8.8720117, 47.0259834 ], + [ 8.8720706, 47.0261853 ], + [ 8.8721132, 47.0263933 ], + [ 8.872088399999999, 47.0265745 ], + [ 8.8720195, 47.0268582 ], + [ 8.8718941, 47.0271826 ], + [ 8.8717866, 47.0275293 ], + [ 8.8716168, 47.0284982 ], + [ 8.8746179, 47.0267628 ], + [ 8.8748602, 47.0264754 ], + [ 8.8751457, 47.0262378 ], + [ 8.8754231, 47.0260004 ], + [ 8.8758008, 47.0257948 ], + [ 8.8763451, 47.0254557 ], + [ 8.8765736, 47.025575 ], + [ 8.8768239, 47.0256486 ], + [ 8.8770393, 47.0256778 ], + [ 8.8774264, 47.0256694 ], + [ 8.8777644, 47.0256735 ], + [ 8.878123800000001, 47.025615 ], + [ 8.878473, 47.0255115 ], + [ 8.878692, 47.0254278 ], + [ 8.8789409, 47.0252982 ], + [ 8.8792136, 47.0251342 ], + [ 8.8795255, 47.02493 ], + [ 8.8797252, 47.0248015 ], + [ 8.8799487, 47.0246442 ], + [ 8.8801969, 47.0244865 ], + [ 8.8803367, 47.0243028 ], + [ 8.8805026, 47.0241412 ], + [ 8.8807542, 47.0238988 ], + [ 8.8809779, 47.0237471 ], + [ 8.8812225, 47.023516 ], + [ 8.881489, 47.0233974 ], + [ 8.8816997, 47.0233138 ], + [ 8.8818728, 47.0231464 ], + [ 8.8821191, 47.0229492 ], + [ 8.8823023, 47.0228211 ], + [ 8.8825894, 47.0226117 ], + [ 8.8830593, 47.0224434 ], + [ 8.8835723, 47.0223194 ], + [ 8.8841026, 47.0221951 ], + [ 8.8844337, 47.0220638 ], + [ 8.8846021, 47.0219642 ], + [ 8.8846881, 47.0218607 ], + [ 8.8847618, 47.0216672 ], + [ 8.8849432, 47.0215053 ], + [ 8.8851519, 47.0213765 ], + [ 8.885435, 47.0212632 ], + [ 8.8857497, 47.0211323 ], + [ 8.8861288, 47.0209547 ], + [ 8.8864609, 47.0208289 ], + [ 8.886484, 47.0206196 ], + [ 8.8863652, 47.0205431 ], + [ 8.8862771, 47.0204152 ], + [ 8.8861543, 47.0202542 ], + [ 8.8861076, 47.0201366 ], + [ 8.8861427, 47.020006 ], + [ 8.886209, 47.019841 ], + [ 8.8864192, 47.0195879 ], + [ 8.886704, 47.0193278 ], + [ 8.8868029, 47.0191507 ], + [ 8.8869589, 47.0189611 ], + [ 8.8868155, 47.0187045 ], + [ 8.8865379, 47.0182306 ], + [ 8.8860376, 47.0175753 ], + [ 8.885932799999999, 47.0174365 ], + [ 8.8857286, 47.0173054 ], + [ 8.885478299999999, 47.0172318 ], + [ 8.8852779, 47.0171796 ], + [ 8.8851769, 47.0171197 ], + [ 8.8851245, 47.0170701 ], + [ 8.8850378, 47.0169646 ], + [ 8.8849489, 47.0168367 ], + [ 8.8849263, 47.0167017 ], + [ 8.8848218, 47.0165742 ], + [ 8.8846561, 47.0163745 ], + [ 8.884466, 47.0161867 ], + [ 8.8842862, 47.0160438 ], + [ 8.8841074, 47.0159066 ], + [ 8.883923, 47.0158371 ], + [ 8.8836118, 47.0156971 ], + [ 8.8833173, 47.0155679 ], + [ 8.8830885, 47.0154374 ], + [ 8.8829101, 47.0153171 ], + [ 8.8828035, 47.0151444 ], + [ 8.8825832, 47.0148386 ], + [ 8.8822333, 47.0143946 ], + [ 8.8821295, 47.0142953 ], + [ 8.8820041, 47.0142471 ], + [ 8.881879, 47.0142103 ], + [ 8.881662, 47.0141528 ], + [ 8.8815522, 47.0141045 ], + [ 8.8815006, 47.0140492 ], + [ 8.8814292, 47.0139321 ], + [ 8.8813925, 47.0138539 ], + [ 8.8813049, 47.0137429 ], + [ 8.8812106, 47.0136602 ], + [ 8.8810178, 47.0135853 ], + [ 8.8808665, 47.0135209 ], + [ 8.8807802, 47.0134324 ], + [ 8.8807188, 47.0133491 ], + [ 8.8806144, 47.0132271 ], + [ 8.8804043, 47.013147 ], + [ 8.8801965, 47.013095 ], + [ 8.8797969, 47.0130019 ], + [ 8.8794901, 47.0129635 ], + [ 8.8793033, 47.0130183 ], + [ 8.8789985, 47.0130248 ], + [ 8.87874, 47.0129514 ], + [ 8.8789705, 47.012777 ], + [ 8.879058, 47.0127018 ], + [ 8.8791894, 47.0125127 ], + [ 8.8792822, 47.0123865 ], + [ 8.8794009, 47.0122767 ], + [ 8.8794547, 47.0121964 ], + [ 8.8794588, 47.0121061 ], + [ 8.8794859, 47.0119812 ], + [ 8.8794697, 47.0118067 ], + [ 8.8794337, 47.0115703 ], + [ 8.879457, 47.0113666 ], + [ 8.8795028, 47.0111116 ], + [ 8.8795568, 47.0108565 ], + [ 8.879686, 47.0106166 ], + [ 8.8797904, 47.0103715 ], + [ 8.8798771, 47.0101101 ], + [ 8.8799481, 47.0098769 ], + [ 8.8800592, 47.0096093 ], + [ 8.8802049, 47.0095553 ], + [ 8.8804999, 47.0095208 ], + [ 8.8807708, 47.0095036 ], + [ 8.8811236, 47.0094791 ], + [ 8.8814043, 47.0094957 ], + [ 8.8817414, 47.0094659 ], + [ 8.8820354, 47.0094256 ], + [ 8.882181, 47.009366 ], + [ 8.8824164, 47.0092875 ], + [ 8.8825844, 47.0091766 ], + [ 8.8827346, 47.0090436 ], + [ 8.8829913, 47.0089026 ], + [ 8.8831866, 47.0088588 ], + [ 8.8834358, 47.008893 ], + [ 8.8836744, 47.0088992 ], + [ 8.8839878, 47.0089093 ], + [ 8.8842768, 47.0089256 ], + [ 8.8845143, 47.0088922 ], + [ 8.8848335, 47.0088403 ], + [ 8.8851762, 47.0087764 ], + [ 8.8853889, 47.008738 ], + [ 8.8857302, 47.0086516 ], + [ 8.8860152, 47.0085833 ], + [ 8.886497, 47.0084939 ], + [ 8.8867362, 47.0084944 ], + [ 8.8870075, 47.0084942 ], + [ 8.8872, 47.0085633 ], + [ 8.8874693, 47.0086704 ], + [ 8.8877129, 47.0087724 ], + [ 8.8879486, 47.0088858 ], + [ 8.8881517, 47.0090113 ], + [ 8.8883292, 47.0090978 ], + [ 8.8884811, 47.0091849 ], + [ 8.8886064, 47.0092273 ], + [ 8.888651, 47.0092941 ], + [ 8.8887928, 47.0093417 ], + [ 8.888910599999999, 47.0093788 ], + [ 8.8889854, 47.009411 ], + [ 8.8890221, 47.0094892 ], + [ 8.8891173, 47.0095775 ], + [ 8.8892265, 47.0096316 ], + [ 8.8893774, 47.0096792 ], + [ 8.8896456, 47.0097806 ], + [ 8.8899292, 47.0098704 ], + [ 8.8902384, 47.0099653 ], + [ 8.8904617, 47.0099831 ], + [ 8.8906767, 47.0100011 ], + [ 8.8909, 47.0100188 ], + [ 8.8910742, 47.0100489 ], + [ 8.8912401, 47.0100735 ], + [ 8.8914141, 47.0100924 ], + [ 8.8916046, 47.0101164 ], + [ 8.891769, 47.0101129 ], + [ 8.8919823, 47.010097 ], + [ 8.8922302, 47.0101142 ], + [ 8.8924702, 47.0101428 ], + [ 8.8927195, 47.0101827 ], + [ 8.8930511, 47.0102263 ], + [ 8.8933829, 47.0102755 ], + [ 8.8936664, 47.0103597 ], + [ 8.8938132, 47.010317 ], + [ 8.8939608, 47.0103024 ], + [ 8.8941169, 47.0102991 ], + [ 8.8942483, 47.0102963 ], + [ 8.8943975, 47.01031 ], + [ 8.894521, 47.0103185 ], + [ 8.8946555, 47.0103664 ], + [ 8.8948386, 47.0104189 ], + [ 8.8949802, 47.0104554 ], + [ 8.8951807, 47.0105131 ], + [ 8.8954982, 47.0106135 ], + [ 8.8958221, 47.0106742 ], + [ 8.8960536, 47.0106918 ], + [ 8.8962782, 47.0107265 ], + [ 8.8964608, 47.010762 ], + [ 8.8967169, 47.010779 ], + [ 8.8969238, 47.0107971 ], + [ 8.897113, 47.0108043 ], + [ 8.8972783, 47.0108064 ], + [ 8.8974441, 47.0108254 ], + [ 8.8976263, 47.010844 ], + [ 8.897799599999999, 47.0108684 ], + [ 8.8979223, 47.0108488 ], + [ 8.8980884, 47.010879 ], + [ 8.8982049, 47.0108992 ], + [ 8.8984049, 47.0109399 ], + [ 8.8985465, 47.0109764 ], + [ 8.8987215, 47.0110347 ], + [ 8.8988871, 47.0110481 ], + [ 8.8990463, 47.0110954 ], + [ 8.8992129, 47.0111483 ], + [ 8.899397, 47.0112064 ], + [ 8.8995564, 47.0112649 ], + [ 8.8996882, 47.0112734 ], + [ 8.899837699999999, 47.0112984 ], + [ 8.8999478, 47.011358 ], + [ 8.9000401, 47.0113957 ], + [ 8.9001976, 47.0114147 ], + [ 8.9003209, 47.011412 ], + [ 8.9005336, 47.0113736 ], + [ 8.9008684, 47.0113211 ], + [ 8.9013498, 47.0112204 ], + [ 8.9018383, 47.0111082 ], + [ 8.9023449, 47.0110237 ], + [ 8.9026172, 47.0110291 ], + [ 8.9028633, 47.0110124 ], + [ 8.9031391, 47.0110855 ], + [ 8.9033735, 47.011182 ], + [ 8.903437199999999, 47.0111354 ], + [ 8.903615, 47.0110526 ], + [ 8.9038678, 47.0110076 ], + [ 8.9040801, 47.0109578 ], + [ 8.904217599999999, 47.010904 ], + [ 8.9042613, 47.0107902 ], + [ 8.9044257, 47.0107865 ], + [ 8.9044212, 47.0106851 ], + [ 8.9043495, 47.0105568 ], + [ 8.9042313, 47.0105029 ], + [ 8.9040715, 47.010433 ], + [ 8.9039197, 47.0103516 ], + [ 8.9038217, 47.0101957 ], + [ 8.9037067, 47.0100175 ], + [ 8.9035964, 47.0099521 ], + [ 8.9034035, 47.0098717 ], + [ 8.9032671, 47.0097843 ], + [ 8.9032014, 47.0096052 ], + [ 8.9031342, 47.0094033 ], + [ 8.9030938, 47.0092461 ], + [ 8.9030197, 47.0090615 ], + [ 8.9030413, 47.0088296 ], + [ 8.903049, 47.0086318 ], + [ 8.9030956, 47.0084107 ], + [ 8.9031939, 47.0082166 ], + [ 8.9032803, 47.0079493 ], + [ 8.9033174, 47.0076833 ], + [ 8.9033654, 47.0074846 ], + [ 8.903437, 47.007246 ], + [ 8.9035092, 47.0070299 ], + [ 8.9034586, 47.0066528 ], + [ 8.903437199999999, 47.0063823 ], + [ 8.9033677, 47.0061241 ], + [ 8.9032388, 47.0058278 ], + [ 8.9030675, 47.0055154 ], + [ 8.9028629, 47.0051868 ], + [ 8.9027011, 47.0048911 ], + [ 8.9024578, 47.0048005 ], + [ 8.9022387, 47.0046922 ], + [ 8.9019525, 47.0045686 ], + [ 8.9016753, 47.0044392 ], + [ 8.9015197, 47.0042788 ], + [ 8.9013078, 47.0039843 ], + [ 8.9009847, 47.0032292 ], + [ 8.9007583, 47.0027938 ], + [ 8.9012648, 47.0025288 ], + [ 8.9015455, 47.0023646 ], + [ 8.9019586, 47.0020507 ], + [ 8.9025741, 47.0016535 ], + [ 8.9025243, 47.0005821 ], + [ 8.9025194, 47.0003112 ], + [ 8.9025936, 47.0001403 ], + [ 8.9026859, 46.9999971 ], + [ 8.9027964, 46.9998931 ], + [ 8.9029727, 46.9997876 ], + [ 8.903174, 46.999693 ], + [ 8.9034345, 46.9996309 ], + [ 8.9036294, 46.9995758 ], + [ 8.9037992, 46.9995044 ], + [ 8.9040444, 46.9994539 ], + [ 8.904188, 46.9993547 ], + [ 8.904297, 46.9992226 ], + [ 8.904372, 46.9990798 ], + [ 8.9044801, 46.9989137 ], + [ 8.9045913, 46.9988323 ], + [ 8.9047105, 46.998745 ], + [ 8.9049277, 46.998633 ], + [ 8.9050808, 46.9985506 ], + [ 8.9052661, 46.9984732 ], + [ 8.9054752, 46.9983671 ], + [ 8.9056858, 46.9982835 ], + [ 8.9058998, 46.998115 ], + [ 8.9060909, 46.997981 ], + [ 8.9062713, 46.9977853 ], + [ 8.9063558, 46.9976592 ], + [ 8.9064768, 46.9974252 ], + [ 8.9064989, 46.9971818 ], + [ 8.9065693, 46.996932 ], + [ 8.9067015, 46.9967766 ], + [ 8.9068114, 46.9966501 ], + [ 8.9070125, 46.9965497 ], + [ 8.9071628, 46.9964279 ], + [ 8.9073287, 46.9962718 ], + [ 8.9073906, 46.9961915 ], + [ 8.9073532, 46.9960851 ], + [ 8.9073724, 46.9959775 ], + [ 8.9074504, 46.9958854 ], + [ 8.9075381, 46.9958158 ], + [ 8.9076006, 46.9957579 ], + [ 8.9076126, 46.995656 ], + [ 8.907588, 46.9954759 ], + [ 8.9075617, 46.9952677 ], + [ 8.9075438, 46.9950648 ], + [ 8.907628, 46.9949275 ], + [ 8.9077858, 46.9947773 ], + [ 8.9079274, 46.9946387 ], + [ 8.9080452, 46.9945288 ], + [ 8.9080753, 46.9944549 ], + [ 8.9080347, 46.9942921 ], + [ 8.907965, 46.9942089 ], + [ 8.9079435, 46.9941133 ], + [ 8.9078907, 46.9938661 ], + [ 8.9078905, 46.9936799 ], + [ 8.9079271, 46.9935774 ], + [ 8.9079378, 46.9934586 ], + [ 8.907907699999999, 46.9933464 ], + [ 8.9079195, 46.9932388 ], + [ 8.9079666, 46.993187 ], + [ 8.9080937, 46.9930883 ], + [ 8.908354, 46.9930205 ], + [ 8.9086317, 46.9929862 ], + [ 8.9089427, 46.9929399 ], + [ 8.9092109, 46.9928607 ], + [ 8.909437, 46.9927768 ], + [ 8.9097052, 46.9926975 ], + [ 8.9099045, 46.9925633 ], + [ 8.9100539, 46.9924076 ], + [ 8.9102572, 46.9921774 ], + [ 8.9105661, 46.992086 ], + [ 8.9108659, 46.9919891 ], + [ 8.9110015, 46.9919015 ], + [ 8.9111804, 46.9916831 ], + [ 8.911535, 46.9913367 ], + [ 8.9117257, 46.9911914 ], + [ 8.9119045, 46.9911479 ], + [ 8.9121075, 46.991087 ], + [ 8.9122093, 46.9909663 ], + [ 8.9123034, 46.9908626 ], + [ 8.9124636, 46.9907688 ], + [ 8.9126385, 46.9906465 ], + [ 8.9126935, 46.9905831 ], + [ 8.9128018, 46.9904283 ], + [ 8.9130017, 46.9903167 ], + [ 8.9131966, 46.9902617 ], + [ 8.9135305, 46.9901809 ], + [ 8.9137745, 46.9901192 ], + [ 8.914005, 46.9901029 ], + [ 8.9143502, 46.9901066 ], + [ 8.9145876, 46.9900731 ], + [ 8.9143872, 46.9896598 ], + [ 8.9142586, 46.9895554 ], + [ 8.9141542, 46.9894335 ], + [ 8.9140493, 46.9892947 ], + [ 8.9140194, 46.9891937 ], + [ 8.9140151, 46.9890978 ], + [ 8.9140277, 46.9890185 ], + [ 8.9141367, 46.9888863 ], + [ 8.9142641, 46.9887988 ], + [ 8.9143914, 46.9887058 ], + [ 8.9145777, 46.9886396 ], + [ 8.9147409, 46.9885964 ], + [ 8.9149298, 46.9885923 ], + [ 8.9151679, 46.9885871 ], + [ 8.9153761, 46.9886277 ], + [ 8.9155833, 46.9886627 ], + [ 8.9158869, 46.9886448 ], + [ 8.9161811, 46.9885876 ], + [ 8.9164821, 46.9885076 ], + [ 8.9169688, 46.9883671 ], + [ 8.9173616, 46.9881271 ], + [ 8.9176415, 46.9877878 ], + [ 8.9179162, 46.987319 ], + [ 8.9182142, 46.9868325 ], + [ 8.918247, 46.9866512 ], + [ 8.9177894, 46.9862097 ], + [ 8.917785, 46.9861081 ], + [ 8.9177401, 46.9860301 ], + [ 8.9176361, 46.9859251 ], + [ 8.9173675, 46.9858067 ], + [ 8.9170626, 46.9856272 ], + [ 8.9167843, 46.9854864 ], + [ 8.9165881, 46.985344 ], + [ 8.9163709, 46.9850948 ], + [ 8.9160641, 46.9848756 ], + [ 8.9157138, 46.9845954 ], + [ 8.9155447, 46.9845145 ], + [ 8.9153599, 46.9844281 ], + [ 8.915141, 46.9843257 ], + [ 8.914922, 46.9842176 ], + [ 8.9147006, 46.9840586 ], + [ 8.9145705, 46.983926 ], + [ 8.9144806, 46.9837643 ], + [ 8.9143697, 46.9836763 ], + [ 8.9142081, 46.9835671 ], + [ 8.9140552, 46.9834744 ], + [ 8.9138456, 46.9833829 ], + [ 8.9136101, 46.9832752 ], + [ 8.9133814, 46.9831447 ], + [ 8.9131949, 46.9830247 ], + [ 8.913037899999999, 46.9828417 ], + [ 8.912939, 46.9826519 ], + [ 8.9128492, 46.9824959 ], + [ 8.9127041, 46.9823862 ], + [ 8.9125265, 46.982294 ], + [ 8.9123339, 46.9822193 ], + [ 8.9121235, 46.9821278 ], + [ 8.9118975, 46.9820368 ], + [ 8.9116609, 46.9819178 ], + [ 8.9113837, 46.9817884 ], + [ 8.9112138, 46.9816735 ], + [ 8.9110408, 46.9815079 ], + [ 8.910870599999999, 46.9813819 ], + [ 8.9107206, 46.9813343 ], + [ 8.9105764, 46.9812584 ], + [ 8.9103511, 46.9811955 ], + [ 8.9101092, 46.9811219 ], + [ 8.9099499, 46.9810632 ], + [ 8.9098038, 46.9809196 ], + [ 8.909655, 46.9807366 ], + [ 8.9095408, 46.9805867 ], + [ 8.9093382, 46.9804781 ], + [ 8.9091286, 46.9803867 ], + [ 8.908826, 46.9802579 ], + [ 8.9081918, 46.9800798 ], + [ 8.9162878, 46.9740489 ], + [ 8.916302, 46.9724172 ], + [ 8.9162906, 46.9721803 ], + [ 8.9162675, 46.9720284 ], + [ 8.9163029, 46.9719091 ], + [ 8.9163874, 46.9717887 ], + [ 8.9193991, 46.9665178 ], + [ 8.919127, 46.9663318 ], + [ 8.9187962, 46.9661302 ], + [ 8.9183846, 46.9659472 ], + [ 8.917957, 46.9657817 ], + [ 8.9174121, 46.9655621 ], + [ 8.9168745, 46.9653368 ], + [ 8.9164134, 46.9651437 ], + [ 8.916117, 46.9649696 ], + [ 8.9160194, 46.964824899999996 ], + [ 8.9158899, 46.9646865 ], + [ 8.9157262, 46.9645264 ], + [ 8.9155299, 46.9643783 ], + [ 8.9153598, 46.9642579 ], + [ 8.9152559, 46.9641528 ], + [ 8.9151602, 46.9640476 ], + [ 8.9151391, 46.9639353 ], + [ 8.9150975, 46.9637667 ], + [ 8.9150056, 46.96356 ], + [ 8.9148821, 46.9633707 ], + [ 8.9146918, 46.9631717 ], + [ 8.9145191, 46.9630117 ], + [ 8.914298, 46.9628585 ], + [ 8.9141796, 46.9627933 ], + [ 8.9140115, 46.9627123 ], + [ 8.9138267, 46.962626 ], + [ 8.9136139, 46.9624726 ], + [ 8.9134592, 46.9623405 ], + [ 8.9133239, 46.9622588 ], + [ 8.9131461, 46.9621554 ], + [ 8.9130195, 46.9620904 ], + [ 8.912858, 46.961981 ], + [ 8.9126387, 46.9618617 ], + [ 8.912378499999999, 46.9617488 ], + [ 8.9120118, 46.961644 ], + [ 8.9116517, 46.9615107 ], + [ 8.9116848, 46.9613406 ], + [ 8.9117432, 46.9611925 ], + [ 8.9117348, 46.9610064 ], + [ 8.911676, 46.96081 ], + [ 8.9116103, 46.960631 ], + [ 8.9114896, 46.9605094 ], + [ 8.9113413, 46.9603433 ], + [ 8.9112448, 46.9602099 ], + [ 8.9111831, 46.9601152 ], + [ 8.9110817, 46.9598916 ], + [ 8.9109486, 46.95968 ], + [ 8.9108321, 46.9594738 ], + [ 8.9107834, 46.9593167 ], + [ 8.9106326, 46.9590885 ], + [ 8.9104932, 46.9589165 ], + [ 8.9103131, 46.9587568 ], + [ 8.9099838, 46.9585777 ], + [ 8.9097061, 46.9584539 ], + [ 8.9094479, 46.9583806 ], + [ 8.9094057, 46.9581895 ], + [ 8.9093481, 46.9580044 ], + [ 8.9092232, 46.9577926 ], + [ 8.9090585, 46.9576269 ], + [ 8.9088716, 46.9574898 ], + [ 8.9086986, 46.9573186 ], + [ 8.9085532, 46.9571976 ], + [ 8.9083751, 46.9570829 ], + [ 8.9081975, 46.9569853 ], + [ 8.90807, 46.9568864 ], + [ 8.9079951, 46.9567018 ], + [ 8.9079625, 46.9565275 ], + [ 8.9079624, 46.9563468 ], + [ 8.907943, 46.9561158 ], + [ 8.907939, 46.9558505 ], + [ 8.907978, 46.9556239 ], + [ 8.9080221, 46.9555269 ], + [ 8.908024, 46.9553858 ], + [ 8.908053, 46.9551255 ], + [ 8.9081062, 46.9548477 ], + [ 8.9081848, 46.9545976 ], + [ 8.9081795, 46.9543154 ], + [ 8.9082573, 46.9540372 ], + [ 8.9083381, 46.9538378 ], + [ 8.9084255, 46.9535818 ], + [ 8.9085084, 46.9534277 ], + [ 8.9086234, 46.9532502 ], + [ 8.9087313, 46.9530841 ], + [ 8.9088199, 46.9528676 ], + [ 8.9089216, 46.9525944 ], + [ 8.909168, 46.9516972 ], + [ 8.9162634, 46.9505543 ], + [ 8.9167139, 46.9508718 ], + [ 8.9170536, 46.9511014 ], + [ 8.9172762, 46.9512829 ], + [ 8.917607499999999, 46.951507 ], + [ 8.917989500000001, 46.9517527 ], + [ 8.9182683, 46.951916 ], + [ 8.9186547, 46.9520825 ], + [ 8.9190416, 46.952266 ], + [ 8.919433699999999, 46.9523703 ], + [ 8.9198332, 46.9524744 ], + [ 8.9205151, 46.9526345 ], + [ 8.9208464, 46.952678 ], + [ 8.9212337, 46.9526978 ], + [ 8.9216304, 46.9527286 ], + [ 8.9219842, 46.9527264 ], + [ 8.9223535, 46.9527184 ], + [ 8.922623699999999, 46.9526899 ], + [ 8.9230262, 46.9526642 ], + [ 8.923313, 46.9526409 ], + [ 8.9236248, 46.9526341 ], + [ 8.9239639, 46.9526604 ], + [ 8.9243776, 46.9527136 ], + [ 8.9246169, 46.9527252 ], + [ 8.9248981, 46.9527698 ], + [ 8.9252133, 46.952825 ], + [ 8.9255564, 46.952936 ], + [ 8.9260764, 46.9531504 ], + [ 8.926346, 46.95328 ], + [ 8.9265223, 46.9533608 ], + [ 8.9267252, 46.9534804 ], + [ 8.9270034, 46.9536212 ], + [ 8.9271734, 46.9537416 ], + [ 8.9273607, 46.9538617 ], + [ 8.927523, 46.9539992 ], + [ 8.9277472, 46.9542088 ], + [ 8.9279209, 46.9544025 ], + [ 8.9281586, 46.9545611 ], + [ 8.928378, 46.954686 ], + [ 8.9286538, 46.9547703 ], + [ 8.9289053, 46.9548664 ], + [ 8.9291243, 46.9549745 ], + [ 8.9291921, 46.9551988 ], + [ 8.9293139, 46.955326 ], + [ 8.9294416, 46.9554305 ], + [ 8.9295867, 46.9555402 ], + [ 8.9297317, 46.9556443 ], + [ 8.9299011, 46.9557422 ], + [ 8.930028, 46.9558184 ], + [ 8.9302284, 46.9558761 ], + [ 8.9303944, 46.9559119 ], + [ 8.930593, 46.9559358 ], + [ 8.9308159, 46.9559477 ], + [ 8.9310211, 46.9559432 ], + [ 8.9311955, 46.9559846 ], + [ 8.931273, 46.9560564 ], + [ 8.9313013, 46.9561291 ], + [ 8.9313159, 46.9562699 ], + [ 8.9313007, 46.9564621 ], + [ 8.9312744, 46.9566095 ], + [ 8.931239, 46.9567231 ], + [ 8.9311408, 46.9569117 ], + [ 8.9310485, 46.9570491 ], + [ 8.9309414, 46.9572152 ], + [ 8.9308408, 46.9573473 ], + [ 8.9307017, 46.9575422 ], + [ 8.9305132, 46.9577326 ], + [ 8.9302656, 46.9578963 ], + [ 8.9306504, 46.9582095 ], + [ 8.9307931, 46.9582629 ], + [ 8.9309669, 46.9582816 ], + [ 8.9311836, 46.9583333 ], + [ 8.9313007, 46.9583815 ], + [ 8.9313847, 46.9584191 ], + [ 8.9315628, 46.9585337 ], + [ 8.931667, 46.95865 ], + [ 8.9317201, 46.9587279 ], + [ 8.9317914, 46.9588392 ], + [ 8.9319014, 46.9588989 ], + [ 8.931969, 46.958937 ], + [ 8.9321431, 46.958967 ], + [ 8.9323013, 46.9590143 ], + [ 8.9324194, 46.9590682 ], + [ 8.9325691, 46.9591044 ], + [ 8.9327517, 46.9591455 ], + [ 8.9329401, 46.9591245 ], + [ 8.9331304, 46.9591484 ], + [ 8.9332736, 46.9592187 ], + [ 8.9333921, 46.9592839 ], + [ 8.933444699999999, 46.9593448 ], + [ 8.9335494, 46.9594779 ], + [ 8.93365, 46.9595209 ], + [ 8.9338322, 46.9595451 ], + [ 8.9340224, 46.9595636 ], + [ 8.9341801, 46.9595939 ], + [ 8.9343648, 46.9596801 ], + [ 8.9345093, 46.9597672 ], + [ 8.9346759, 46.95982 ], + [ 8.934845, 46.9599067 ], + [ 8.9350149, 46.9600216 ], + [ 8.9351152, 46.9600531 ], + [ 8.9352314, 46.9600675 ], + [ 8.9354554, 46.960119 ], + [ 8.9356083, 46.9602116 ], + [ 8.935803, 46.9603315 ], + [ 8.935956000000001, 46.9604297 ], + [ 8.9360836, 46.9605286 ], + [ 8.9362054, 46.9606557 ], + [ 8.9363426, 46.9607769 ], + [ 8.9364308, 46.9609048 ], + [ 8.9365512, 46.9610094 ], + [ 8.9366541, 46.9611087 ], + [ 8.9368257, 46.9612517 ], + [ 8.9369528, 46.9613337 ], + [ 8.9370696, 46.9613705 ], + [ 8.9371792, 46.9614134 ], + [ 8.9373534, 46.9614433 ], + [ 8.9375685, 46.9614725 ], + [ 8.9377525, 46.9615306 ], + [ 8.9379699, 46.9616104 ], + [ 8.938187, 46.9616789 ], + [ 8.938389, 46.9617649 ], + [ 8.9386059, 46.9618278 ], + [ 8.9388317, 46.9619131 ], + [ 8.9391145, 46.9619803 ], + [ 8.9394317, 46.9620748 ], + [ 8.9396314, 46.96211 ], + [ 8.9397746, 46.9621802 ], + [ 8.9398934, 46.9622566 ], + [ 8.9399964, 46.962356 ], + [ 8.9401316, 46.962432 ], + [ 8.9403046, 46.9625976 ], + [ 8.9404156, 46.962691 ], + [ 8.9405527, 46.9628066 ], + [ 8.940681099999999, 46.9629054 ], + [ 8.9408248, 46.9629925 ], + [ 8.9409275, 46.9630806 ], + [ 8.9410538, 46.9631342 ], + [ 8.9411732, 46.9632332 ], + [ 8.9412682, 46.9633102 ], + [ 8.9414729, 46.9634636 ], + [ 8.941652, 46.9636121 ], + [ 8.9417637, 46.9636999 ], + [ 8.9418924, 46.96381 ], + [ 8.9419457, 46.9638935 ], + [ 8.9419417, 46.963983999999996 ], + [ 8.9418969, 46.9640866 ], + [ 8.941903, 46.9642163 ], + [ 8.9419416, 46.964334 ], + [ 8.9420393, 46.9644786 ], + [ 8.94222, 46.9646552 ], + [ 8.9424246, 46.9648031 ], + [ 8.9426293, 46.9649567 ], + [ 8.9428087, 46.9650882 ], + [ 8.9429867, 46.9651972 ], + [ 8.9432076, 46.9653391 ], + [ 8.9434433, 46.965458 ], + [ 8.943646, 46.9655664 ], + [ 8.9437649, 46.9656485 ], + [ 8.9439019, 46.9657584 ], + [ 8.9440903, 46.9659179 ], + [ 8.9442923, 46.9660038 ], + [ 8.9444502, 46.9660398 ], + [ 8.944635, 46.966126 ], + [ 8.9447639, 46.9662418 ], + [ 8.9448365, 46.96637 ], + [ 8.9449025, 46.9665548 ], + [ 8.9449433, 46.9667233 ], + [ 8.9450333, 46.966885 ], + [ 8.9451923, 46.9669323 ], + [ 8.9453932, 46.9670068 ], + [ 8.9455852, 46.9670591 ], + [ 8.9456603, 46.9671295 ], + [ 8.9465049, 46.9677212 ], + [ 8.9475961, 46.9682017 ], + [ 8.9481355, 46.9686894 ], + [ 8.9488728, 46.9692015 ], + [ 8.9493377, 46.9693753 ], + [ 8.9497738, 46.9694595 ], + [ 8.9496201, 46.9686698 ], + [ 8.948584, 46.9682786 ], + [ 8.9492115, 46.9681624 ], + [ 8.9497944, 46.9678578 ], + [ 8.9499088, 46.9672535 ], + [ 8.94993, 46.9670733 ], + [ 8.9500589, 46.9669816 ], + [ 8.9509103, 46.9668804 ], + [ 8.951465, 46.9665132 ], + [ 8.9518758, 46.9661659 ], + [ 8.952303, 46.9659353 ], + [ 8.9525276, 46.9659773 ], + [ 8.9527628, 46.9659292 ], + [ 8.9528904, 46.9657926 ], + [ 8.9530997, 46.965295 ], + [ 8.953226, 46.9651134 ], + [ 8.9536125, 46.9648384 ], + [ 8.953775199999999, 46.9645483 ], + [ 8.9537269, 46.9642341 ], + [ 8.9538914, 46.964007 ], + [ 8.9546674, 46.9635648 ], + [ 8.9551471, 46.9633336 ], + [ 8.955531, 46.962968599999996 ], + [ 8.9561861, 46.9628969 ], + [ 8.9566395, 46.962666 ], + [ 8.9572591, 46.9622709 ], + [ 8.9584376, 46.9621203 ], + [ 8.959377, 46.9618829 ], + [ 8.9600283, 46.9616764 ], + [ 8.9603227, 46.9614025 ], + [ 8.9612729, 46.9615429 ], + [ 8.9617914, 46.961293 ], + [ 8.9624156, 46.9610598 ], + [ 8.9631335, 46.9608883 ], + [ 8.9641877, 46.9609912 ], + [ 8.9653293, 46.960931 ], + [ 8.9656237, 46.9606572 ], + [ 8.9659076, 46.9604735 ], + [ 8.9662983, 46.9603513 ], + [ 8.9667627, 46.960507 ], + [ 8.9669513, 46.9602076 ], + [ 8.9672089, 46.9600242 ], + [ 8.9679275, 46.9598797 ], + [ 8.9682897, 46.9596769 ], + [ 8.9688839, 46.9597769 ], + [ 8.9692123, 46.9597726 ], + [ 8.9694775, 46.959859 ], + [ 8.9698665, 46.9596738 ], + [ 8.9703494, 46.9595594 ], + [ 8.9706791, 46.9596 ], + [ 8.970922, 46.9598217 ], + [ 8.9712135, 46.9599077 ], + [ 8.971647, 46.9599019 ], + [ 8.9713282, 46.9593214 ], + [ 8.971254, 46.9590255 ], + [ 8.971287, 46.9588001 ], + [ 8.9711781, 46.9586666 ], + [ 8.971106, 46.9584427 ], + [ 8.9708822, 46.9584277 ], + [ 8.9705814, 46.9584767 ], + [ 8.9704492, 46.9584515 ], + [ 8.9704441, 46.9582716 ], + [ 8.9701127, 46.9581681 ], + [ 8.969519, 46.958086 ], + [ 8.9680923, 46.9573584 ], + [ 8.9674038, 46.9576375 ], + [ 8.9668337, 46.9569973 ], + [ 8.9662528, 46.9564382 ], + [ 8.9647959, 46.9560348 ], + [ 8.9643112, 46.9551596 ], + [ 8.962918, 46.9546833 ], + [ 8.9631081, 46.9544378 ], + [ 8.9623035, 46.9538637 ], + [ 8.962292, 46.953459 ], + [ 8.9620585, 46.9531023 ], + [ 8.9619175, 46.9527622 ], + [ 8.96185, 46.9517735 ], + [ 8.9616746, 46.951146 ], + [ 8.9616914, 46.9508129 ], + [ 8.9614893, 46.9506357 ], + [ 8.9616168, 46.950499 ], + [ 8.9615448, 46.9502751 ], + [ 8.9618655, 46.9500009 ], + [ 8.9616341, 46.9487893 ], + [ 8.9611832, 46.9477157 ], + [ 8.9611985, 46.9473286 ], + [ 8.9609748, 46.9473136 ], + [ 8.9606355, 46.9469312 ], + [ 8.9599369, 46.9468506 ], + [ 8.9598555, 46.9462938 ], + [ 8.9595106, 46.9457136 ], + [ 8.9592095, 46.9452858 ], + [ 8.9584977, 46.9447374 ], + [ 8.9580923, 46.9443379 ], + [ 8.9577386, 46.9434429 ], + [ 8.9572637, 46.9429094 ], + [ 8.9574924, 46.9426364 ], + [ 8.9570743, 46.9417873 ], + [ 8.9565505, 46.9409125 ], + [ 8.9564785, 46.9406886 ], + [ 8.9565741, 46.9403544 ], + [ 8.9565284, 46.9401301 ], + [ 8.956195, 46.9399546 ], + [ 8.956098, 46.9397759 ], + [ 8.9555199, 46.9393068 ], + [ 8.9552209, 46.9389508 ], + [ 8.9554734, 46.9385876 ], + [ 8.955905, 46.9375922 ], + [ 8.9559104, 46.9368544 ], + [ 8.9576293, 46.9358599 ], + [ 8.9583159, 46.9345912 ], + [ 8.9566103, 46.9346589 ], + [ 8.9569233, 46.9341149 ], + [ 8.9578419, 46.933158 ], + [ 8.9584831, 46.9326097 ], + [ 8.959823, 46.9312243 ], + [ 8.9608865, 46.931678 ], + [ 8.9617987, 46.931423 ], + [ 8.9626804, 46.9310243 ], + [ 8.963216, 46.9304594 ], + [ 8.963504499999999, 46.9299787 ], + [ 8.9637504, 46.9293906 ], + [ 8.9642153, 46.9286467 ], + [ 8.963859, 46.9276617 ], + [ 8.9635837, 46.9272156 ], + [ 8.9632839, 46.9268327 ], + [ 8.9629756, 46.9266119 ], + [ 8.9624449, 46.926421 ], + [ 8.9618521, 46.9263569 ], + [ 8.9616577, 46.9264495 ], + [ 8.9612634, 46.9264368 ], + [ 8.960939, 46.926576 ], + [ 8.9603437, 46.926422 ], + [ 8.959481, 46.9261006 ], + [ 8.9591901, 46.9260325 ], + [ 8.9587582, 46.9260832 ], + [ 8.9585414, 46.926311 ], + [ 8.957912, 46.9263464 ], + [ 8.957753199999999, 46.9263035 ], + [ 8.9579011, 46.9259596 ], + [ 8.957632199999999, 46.9257383 ], + [ 8.957276, 46.92568 ], + [ 8.9566252, 46.9258866 ], + [ 8.9560383, 46.9260294 ], + [ 8.9547255, 46.9260468 ], + [ 8.9544642, 46.9260952 ], + [ 8.953931, 46.9258144 ], + [ 8.9537495, 46.9254299 ], + [ 8.9535533, 46.9254595 ], + [ 8.9531931, 46.9252573 ], + [ 8.9528618, 46.9251538 ], + [ 8.9521661, 46.925163 ], + [ 8.9517473, 46.9252135 ], + [ 8.9515064, 46.9250547 ], + [ 8.9511532, 46.9251044 ], + [ 8.9503096, 46.9254574 ], + [ 8.9495462, 46.9253956 ], + [ 8.9491531, 46.9254277 ], + [ 8.9487618, 46.9255229 ], + [ 8.9482954, 46.9254257 ], + [ 8.9482098, 46.9255082 ], + [ 8.9480588, 46.9256244 ], + [ 8.9478537, 46.9258039 ], + [ 8.9477191, 46.9259199 ], + [ 8.9476062, 46.9259618 ], + [ 8.9474428, 46.9259882 ], + [ 8.9473691, 46.9259953 ], + [ 8.9472958, 46.926014 ], + [ 8.9471923, 46.9260727 ], + [ 8.947038899999999, 46.9261325 ], + [ 8.9468594, 46.9261705 ], + [ 8.9466788, 46.9261688 ], + [ 8.9464825, 46.9261957 ], + [ 8.9462797, 46.9262511 ], + [ 8.9461084, 46.9262886 ], + [ 8.9458955, 46.9263046 ], + [ 8.9456892, 46.9262979 ], + [ 8.9455414, 46.9262957 ], + [ 8.9454449, 46.9263373 ], + [ 8.9452921, 46.9264197 ], + [ 8.9451314, 46.9264853 ], + [ 8.9449614, 46.9265399 ], + [ 8.9447324, 46.9265675 ], + [ 8.9445461, 46.9266282 ], + [ 8.9443422, 46.9266722 ], + [ 8.9441596, 46.926806 ], + [ 8.944060799999999, 46.9269719 ], + [ 8.9437238, 46.9271601 ], + [ 8.9434676, 46.9273012 ], + [ 8.943365, 46.9273882 ], + [ 8.9433286, 46.9274962 ], + [ 8.9432517, 46.9275939 ], + [ 8.9431463, 46.9276414 ], + [ 8.9430762, 46.9277163 ], + [ 8.9430398, 46.9278245 ], + [ 8.9428692, 46.9278564 ], + [ 8.9426462, 46.9278388 ], + [ 8.9423102, 46.9278575 ], + [ 8.9419443, 46.9279504 ], + [ 8.9416164, 46.9281439 ], + [ 8.9411232, 46.9284991 ], + [ 8.9406442, 46.9288033 ], + [ 8.9401501, 46.9291303 ], + [ 8.9395832, 46.9294928 ], + [ 8.9393475, 46.929724 ], + [ 8.939303, 46.9296571 ], + [ 8.9391513, 46.9295758 ], + [ 8.9389689, 46.9295403 ], + [ 8.9386628, 46.9295132 ], + [ 8.9382935, 46.9295157 ], + [ 8.937907299999999, 46.9295299 ], + [ 8.9375367, 46.9295155 ], + [ 8.9371727, 46.9294727 ], + [ 8.9368825, 46.9294283 ], + [ 8.936514, 46.929459 ], + [ 8.9364528, 46.9293813 ], + [ 8.9363434, 46.929316 ], + [ 8.9360681, 46.9292431 ], + [ 8.9357304, 46.9292336 ], + [ 8.9354922, 46.9292276 ], + [ 8.9352843, 46.929187 ], + [ 8.9350329, 46.9290909 ], + [ 8.9348667, 46.9290494 ], + [ 8.93482, 46.9289319 ], + [ 8.9347162, 46.928477 ], + [ 8.9347121, 46.9282118 ], + [ 8.9346649, 46.9280773 ], + [ 8.9345367, 46.9279841 ], + [ 8.9343098, 46.9278819 ], + [ 8.9341108, 46.927841 ], + [ 8.9338147, 46.9278476 ], + [ 8.9336101, 46.9278691 ], + [ 8.9333864, 46.9278232 ], + [ 8.9331779, 46.9277657 ], + [ 8.9329453, 46.9277257 ], + [ 8.9326558, 46.9276756 ], + [ 8.9324085, 46.9276641 ], + [ 8.9322576, 46.927611 ], + [ 8.9321796, 46.9275224 ], + [ 8.9321169, 46.9274222 ], + [ 8.9320242, 46.9273621 ], + [ 8.9318797, 46.927275 ], + [ 8.931769, 46.927187 ], + [ 8.9315914, 46.9270894 ], + [ 8.9313592, 46.9270324 ], + [ 8.9310676, 46.9269655 ], + [ 8.930686099999999, 46.9268836 ], + [ 8.9302226, 46.9268316 ], + [ 8.9293329, 46.9266254 ], + [ 8.9290108, 46.9265816 ], + [ 8.9287306, 46.926571 ], + [ 8.9284033, 46.9266063 ], + [ 8.9280759, 46.9266417 ], + [ 8.9277225, 46.9266552 ], + [ 8.9274726, 46.9265817 ], + [ 8.9273044, 46.926495 ], + [ 8.9272203, 46.9264517 ], + [ 8.9270698, 46.9264098 ], + [ 8.926946300000001, 46.9263957 ], + [ 8.926716, 46.9264064 ], + [ 8.926388, 46.9264192 ], + [ 8.9262386, 46.9263886 ], + [ 8.9261466, 46.9263567 ], + [ 8.9260942, 46.9263015 ], + [ 8.9259096, 46.9262151 ], + [ 8.9256111, 46.9261653 ], + [ 8.9252697, 46.9260768 ], + [ 8.9250233, 46.9260709 ], + [ 8.9248677, 46.9260857 ], + [ 8.9246085, 46.9260011 ], + [ 8.9245802, 46.9259282 ], + [ 8.924601, 46.9258488 ], + [ 8.924445, 46.9258466 ], + [ 8.9242485, 46.9258622 ], + [ 8.9241027, 46.9259049 ], + [ 8.9239316, 46.9259481 ], + [ 8.923767999999999, 46.9259687 ], + [ 8.923543, 46.9259058 ], + [ 8.9233669, 46.9258308 ], + [ 8.9231478, 46.9257113 ], + [ 8.9228712, 46.9255932 ], + [ 8.9225447, 46.9254818 ], + [ 8.9222035, 46.925399 ], + [ 8.9218616, 46.9252936 ], + [ 8.9215223, 46.9252502 ], + [ 8.921272, 46.9251654 ], + [ 8.9210043, 46.9250697 ], + [ 8.9207695, 46.9249788 ], + [ 8.9204846, 46.9248553 ], + [ 8.9202501, 46.9247756 ], + [ 8.9200774, 46.9247625 ], + [ 8.9199023, 46.9247212 ], + [ 8.9197019, 46.9246579 ], + [ 8.9194308, 46.9246469 ], + [ 8.9191574, 46.9246133 ], + [ 8.9189162, 46.9245566 ], + [ 8.9185132, 46.924379 ], + [ 8.9182859, 46.9242598 ], + [ 8.9180266, 46.9241752 ], + [ 8.9177381, 46.9241589 ], + [ 8.9175392, 46.9241182 ], + [ 8.9173712, 46.9240371 ], + [ 8.9172016, 46.923928 ], + [ 8.917069, 46.9237333 ], + [ 8.916962999999999, 46.9235775 ], + [ 8.9167837, 46.923446 ], + [ 8.9166401, 46.9233588 ], + [ 8.9164786, 46.9232437 ], + [ 8.9162683, 46.9231468 ], + [ 8.9160347, 46.9230673 ], + [ 8.9157587, 46.9229716 ], + [ 8.915536, 46.9229596 ], + [ 8.9154384, 46.9228149 ], + [ 8.9151823, 46.9227811 ], + [ 8.9150721, 46.9227157 ], + [ 8.9149764, 46.9226049 ], + [ 8.9147552, 46.9224404 ], + [ 8.9144114, 46.9222955 ], + [ 8.9141535, 46.9222277 ], + [ 8.9139558, 46.9222321 ], + [ 8.9136203, 46.9222676 ], + [ 8.9132187, 46.9222877 ], + [ 8.9128992, 46.922306 ], + [ 8.9125879, 46.9223297 ], + [ 8.9123081, 46.9223302 ], + [ 8.9120604, 46.9223074 ], + [ 8.9117375, 46.9222636 ], + [ 8.9114635, 46.9222075 ], + [ 8.9111223, 46.9221246 ], + [ 8.9102444, 46.9218051 ], + [ 8.9099192, 46.921705 ], + [ 8.9095857, 46.921605 ], + [ 8.9093369, 46.9215709 ], + [ 8.9091314, 46.9215585 ], + [ 8.9089113, 46.921614 ], + [ 8.9086161, 46.9216205 ], + [ 8.9083708, 46.9216542 ], + [ 8.9080652, 46.9216156 ], + [ 8.9077341, 46.9215721 ], + [ 8.9075447, 46.9215762 ], + [ 8.907258, 46.9215993 ], + [ 8.9070447, 46.9215983 ], + [ 8.9068033, 46.9215358 ], + [ 8.9065948, 46.9214727 ], + [ 8.9063476, 46.9214667 ], + [ 8.9060117, 46.921491 ], + [ 8.905809099999999, 46.9215519 ], + [ 8.9057009, 46.921526 ], + [ 8.9055412, 46.9214505 ], + [ 8.905316299999999, 46.9213877 ], + [ 8.9050033, 46.9213775 ], + [ 8.9048227, 46.9213758 ], + [ 8.9046817, 46.9213507 ], + [ 8.9044922, 46.9213548 ], + [ 8.9042624, 46.9213541 ], + [ 8.9040092, 46.9213992 ], + [ 8.9037979, 46.9214433 ], + [ 8.9036916, 46.9214569 ], + [ 8.9034867, 46.9214671 ], + [ 8.9031, 46.9214642 ], + [ 8.9027074, 46.9215122 ], + [ 8.902254899999999, 46.9214996 ], + [ 8.9019504, 46.9215005 ], + [ 8.9017258, 46.921449 ], + [ 8.9015356, 46.9214248 ], + [ 8.9013696, 46.9213888 ], + [ 8.9011854, 46.9213139 ], + [ 8.9009833, 46.9212167 ], + [ 8.900766, 46.9211312 ], + [ 8.9004491, 46.9210364 ], + [ 8.9002325, 46.920979 ], + [ 8.900139, 46.9209189 ], + [ 8.899954, 46.9208157 ], + [ 8.8995993, 46.9206314 ], + [ 8.8990202, 46.9203675 ], + [ 8.8986277, 46.9202405 ], + [ 8.8982966, 46.9201969 ], + [ 8.8980566, 46.9201513 ], + [ 8.8979891, 46.9201132 ], + [ 8.897928199999999, 46.9200468 ], + [ 8.8978818, 46.9199406 ], + [ 8.897785, 46.9197903 ], + [ 8.8976922, 46.9195778 ], + [ 8.8976366, 46.9194322 ], + [ 8.8974995, 46.919311 ], + [ 8.8972225, 46.9192041 ], + [ 8.8969069, 46.9191263 ], + [ 8.8965411, 46.9190439 ], + [ 8.8961053, 46.919042 ], + [ 8.8957282, 46.919056 ], + [ 8.8955451, 46.9190203 ], + [ 8.8953529, 46.9189568 ], + [ 8.8935953, 46.9179336 ], + [ 8.8933103, 46.9178044 ], + [ 8.893002, 46.9177207 ], + [ 8.8927119, 46.9176762 ], + [ 8.8923821, 46.9176494 ], + [ 8.8920362, 46.9176344 ], + [ 8.8917668, 46.9176854 ], + [ 8.8915965, 46.9177286 ], + [ 8.8914059, 46.9176932 ], + [ 8.8910878, 46.9175815 ], + [ 8.8897338, 46.9172779 ], + [ 8.8894007, 46.9171891 ], + [ 8.8890999, 46.9170827 ], + [ 8.8887791, 46.9169034 ], + [ 8.888583, 46.9167496 ], + [ 8.8884441, 46.9165888 ], + [ 8.8883173, 46.9165126 ], + [ 8.8881574, 46.9164257 ], + [ 8.8878733, 46.9163302 ], + [ 8.8876221, 46.916234 ], + [ 8.8874688, 46.9161189 ], + [ 8.887389, 46.9159907 ], + [ 8.887311799999999, 46.9159246 ], + [ 8.8871427, 46.9158324 ], + [ 8.8869953, 46.9156605 ], + [ 8.8869215, 46.9154815 ], + [ 8.8867951, 46.9154165 ], + [ 8.8865806, 46.9154042 ], + [ 8.8863164, 46.915376 ], + [ 8.8860183, 46.9153373 ], + [ 8.885695, 46.9152766 ], + [ 8.8854387, 46.915237 ], + [ 8.8852797, 46.9151839 ], + [ 8.8851138, 46.915148 ], + [ 8.8849812, 46.9151283 ], + [ 8.8847516, 46.9151334 ], + [ 8.8844405, 46.9151626 ], + [ 8.8841396, 46.9152312 ], + [ 8.8837796, 46.9152728 ], + [ 8.8834788, 46.9153471 ], + [ 8.883052, 46.9153733 ], + [ 8.8826828, 46.9153755 ], + [ 8.8823062, 46.9154063 ], + [ 8.8819218, 46.9154541 ], + [ 8.8817847, 46.9153329 ], + [ 8.8816253, 46.9152629 ], + [ 8.8815237, 46.9152087 ], + [ 8.8812594, 46.9151749 ], + [ 8.8810615, 46.9151678 ], + [ 8.8808386, 46.9151501 ], + [ 8.8806008, 46.9151552 ], + [ 8.8803965, 46.9151879 ], + [ 8.8801574, 46.9151761 ], + [ 8.8799264, 46.9151585 ], + [ 8.8796439, 46.9150912 ], + [ 8.8794615, 46.9150499 ], + [ 8.8791974, 46.9150274 ], + [ 8.878893, 46.9150284 ], + [ 8.8786618, 46.9150051 ], + [ 8.8784448, 46.9149307 ], + [ 8.8781201, 46.9148475 ], + [ 8.8777268, 46.9148672 ], + [ 8.8773083, 46.9148987 ], + [ 8.8771481, 46.9148007 ], + [ 8.8770957, 46.914559 ], + [ 8.8768486, 46.9145531 ], + [ 8.8767219, 46.9144824 ], + [ 8.8765028, 46.9143572 ], + [ 8.876473, 46.9142563 ], + [ 8.876524, 46.9141084 ], + [ 8.8765492, 46.9139442 ], + [ 8.8764609, 46.913804999999996 ], + [ 8.8762607, 46.9137416 ], + [ 8.8760847, 46.9136664 ], + [ 8.8759633, 46.9135447 ], + [ 8.8759092, 46.9134273 ], + [ 8.8758607, 46.9132704 ], + [ 8.8757553, 46.9131315 ], + [ 8.8755037, 46.9128377 ], + [ 8.8752079, 46.9124828 ], + [ 8.8749834, 46.9122505 ], + [ 8.8747609, 46.9120634 ], + [ 8.8745221, 46.9118766 ], + [ 8.8742765, 46.9117126 ], + [ 8.8741319, 46.911614 ], + [ 8.8739423, 46.9114262 ], + [ 8.8737827, 46.9113506 ], + [ 8.873566499999999, 46.9113044 ], + [ 8.8732005, 46.9112107 ], + [ 8.872961, 46.9111819 ], + [ 8.8728242, 46.9112527 ], + [ 8.8726371, 46.911285 ], + [ 8.8724476, 46.9112834 ], + [ 8.8722575, 46.9112648 ], + [ 8.8719685, 46.9112259 ], + [ 8.8717354, 46.9111631 ], + [ 8.8715172, 46.911072 ], + [ 8.8712854, 46.9110261 ], + [ 8.8711608, 46.9110005 ], + [ 8.8710079, 46.9108966 ], + [ 8.8706349, 46.9110006 ], + [ 8.8704509, 46.9109311 ], + [ 8.870345, 46.9109616 ], + [ 8.8702371, 46.910947 ], + [ 8.8699866, 46.9108451 ], + [ 8.8697192, 46.910755 ], + [ 8.8692967, 46.9106963 ], + [ 8.8691875, 46.9108171 ], + [ 8.8688792, 46.9107334 ], + [ 8.868776, 46.9108034 ], + [ 8.8685351, 46.9107522 ], + [ 8.868543, 46.910927 ], + [ 8.8683569, 46.9109931 ], + [ 8.8684787, 46.9111316 ], + [ 8.8685907, 46.9112365 ], + [ 8.8687202, 46.9113861 ], + [ 8.8687275, 46.9115383 ], + [ 8.8687126, 46.9117475 ], + [ 8.8687435, 46.9118936 ], + [ 8.8688412, 46.9120495 ], + [ 8.8689002, 46.9122629 ], + [ 8.8689096, 46.9124603 ], + [ 8.868756, 46.9127006 ], + [ 8.8686445, 46.9129514 ], + [ 8.8684737, 46.9131639 ], + [ 8.8682689, 46.9133602 ], + [ 8.8683336, 46.9135112 ], + [ 8.8683975, 46.9136622 ], + [ 8.8683891, 46.9138375 ], + [ 8.8683286, 46.9139405 ], + [ 8.8681813, 46.9139548 ], + [ 8.8680036, 46.9138458 ], + [ 8.8679097, 46.9137687 ], + [ 8.8678792, 46.9136396 ], + [ 8.8678571, 46.9135215 ], + [ 8.8677554, 46.9132752 ], + [ 8.8676649, 46.9129272 ], + [ 8.867571, 46.9128502 ], + [ 8.8674605, 46.9127679 ], + [ 8.8673803, 46.9126229 ], + [ 8.8672826, 46.9124669 ], + [ 8.8672603, 46.9123376 ], + [ 8.867335, 46.9121836 ], + [ 8.8674006, 46.9119958 ], + [ 8.8674752, 46.9118418 ], + [ 8.8674489, 46.9116223 ], + [ 8.8673407, 46.9114101 ], + [ 8.8671757, 46.9112217 ], + [ 8.8669895, 46.9111014 ], + [ 8.8667871, 46.9109872 ], + [ 8.8665096, 46.9108577 ], + [ 8.8663666, 46.9107874 ], + [ 8.8662722, 46.9106934 ], + [ 8.8661341, 46.9105609 ], + [ 8.8660038, 46.9104112 ], + [ 8.8657331, 46.9102309 ], + [ 8.8654818, 46.910129 ], + [ 8.8650409, 46.9100256 ], + [ 8.8645606, 46.9099511 ], + [ 8.8642369, 46.9098733 ], + [ 8.8638472, 46.909814 ], + [ 8.8635749, 46.909786 ], + [ 8.8631919, 46.9098563 ], + [ 8.8629077, 46.9099357 ], + [ 8.8627172, 46.9099003 ], + [ 8.8625171, 46.9098426 ], + [ 8.8623373, 46.909869 ], + [ 8.8621134, 46.9098116 ], + [ 8.8619531, 46.909736 ], + [ 8.8618181, 46.90966 ], + [ 8.8615698, 46.9096088 ], + [ 8.8611885, 46.9095549 ], + [ 8.8608996, 46.9095215 ], + [ 8.8604636, 46.9095083 ], + [ 8.8598086, 46.9095618 ], + [ 8.8594406, 46.9096092 ], + [ 8.8590884, 46.9096337 ], + [ 8.8588664, 46.909644 ], + [ 8.8586778, 46.9096481 ], + [ 8.8585061, 46.9096744 ], + [ 8.8583032, 46.9097239 ], + [ 8.8580103, 46.9097867 ], + [ 8.857611, 46.9098629 ], + [ 8.8571204, 46.9099242 ], + [ 8.856357599999999, 46.9099687 ], + [ 8.8561136, 46.9100191 ], + [ 8.8558783, 46.9100862 ], + [ 8.8555973, 46.9102277 ], + [ 8.8553392, 46.9103348 ], + [ 8.8550792, 46.9104024 ], + [ 8.8548999, 46.9104458 ], + [ 8.8546946, 46.9104389 ], + [ 8.8543801, 46.9104005 ], + [ 8.8541166, 46.9103948 ], + [ 8.8540154, 46.9103236 ], + [ 8.853887, 46.9102135 ], + [ 8.8537082, 46.9100931 ], + [ 8.8535239, 46.9100123 ], + [ 8.8533322, 46.90996 ], + [ 8.8531801, 46.9098559 ], + [ 8.8528501, 46.9096598 ], + [ 8.852572, 46.9095076 ], + [ 8.8522776, 46.9093559 ], + [ 8.8520266, 46.9092652 ], + [ 8.8518228, 46.9091284 ], + [ 8.8519028, 46.9096123 ], + [ 8.8519241, 46.909894 ], + [ 8.8519264, 46.9101367 ], + [ 8.8517995, 46.9100547 ], + [ 8.8516461, 46.9099282 ], + [ 8.8514765, 46.9098132 ], + [ 8.8513313, 46.9096921 ], + [ 8.8512241, 46.9095138 ], + [ 8.8511656, 46.9093175 ], + [ 8.8509976, 46.9092307 ], + [ 8.8509784, 46.9095303 ], + [ 8.8509569, 46.9097735 ], + [ 8.8509587, 46.9099993 ], + [ 8.8509782, 46.9102416 ], + [ 8.8509885, 46.910478499999996 ], + [ 8.8510501, 46.9107312 ], + [ 8.8511242, 46.9109273 ], + [ 8.8511663, 46.9111238 ], + [ 8.8511604, 46.9111804 ], + [ 8.8511089, 46.9113114 ], + [ 8.8510871, 46.9115433 ], + [ 8.8510965, 46.9117463 ], + [ 8.8511185, 46.9120507 ], + [ 8.8509224, 46.9118968 ], + [ 8.8507677, 46.9117533 ], + [ 8.850605, 46.9116214 ], + [ 8.850583499999999, 46.9118645 ], + [ 8.8505915, 46.9120449 ], + [ 8.8506107, 46.9122761 ], + [ 8.8505776, 46.9124518 ], + [ 8.8505025, 46.9127808 ], + [ 8.8503563, 46.913179 ], + [ 8.8501675, 46.9135499 ], + [ 8.8500119, 46.9137509 ], + [ 8.8498274, 46.9138507 ], + [ 8.8495319, 46.9140321 ], + [ 8.8492138, 46.9142647 ], + [ 8.8489743, 46.9144221 ], + [ 8.8487548, 46.9144719 ], + [ 8.8484868, 46.9145454 ], + [ 8.8482415, 46.9145789 ], + [ 8.8480002, 46.9147026 ], + [ 8.8477868, 46.9147015 ], + [ 8.8476293, 46.9146709 ], + [ 8.8474521, 46.9145788 ], + [ 8.8472237, 46.9144426 ], + [ 8.8471318, 46.9144105 ], + [ 8.8470493, 46.9143954 ], + [ 8.8468597, 46.9143938 ], + [ 8.8466297, 46.9143818 ], + [ 8.8464667, 46.9144247 ], + [ 8.8463473, 46.9145063 ], + [ 8.846279599999999, 46.9146432 ], + [ 8.8462949, 46.9147897 ], + [ 8.8463502, 46.9149296 ], + [ 8.846381, 46.91507 ], + [ 8.8464129, 46.9152219 ], + [ 8.8464045, 46.9154026 ], + [ 8.8463562, 46.9155957 ], + [ 8.8462354, 46.9158409 ], + [ 8.8461217, 46.9160409 ], + [ 8.8460514, 46.9163021 ], + [ 8.8460244, 46.9164325 ], + [ 8.8459964, 46.9165516 ], + [ 8.8459608, 46.9166652 ], + [ 8.8458455, 46.9168372 ], + [ 8.8456667, 46.917061 ], + [ 8.845466, 46.917358899999996 ], + [ 8.8452294, 46.9175671 ], + [ 8.8449432, 46.9177933 ], + [ 8.8446553, 46.9179575 ], + [ 8.8444711, 46.9180687 ], + [ 8.8444261, 46.9181656 ], + [ 8.8444469, 46.9182724 ], + [ 8.8444915, 46.9183449 ], + [ 8.8445751, 46.9183714 ], + [ 8.844692, 46.9184197 ], + [ 8.8447954, 46.9185135 ], + [ 8.8448899, 46.918613 ], + [ 8.844954, 46.9187415 ], + [ 8.844921, 46.9189228 ], + [ 8.8448719, 46.9191159 ], + [ 8.8447786, 46.9192194 ], + [ 8.8445707, 46.919365 ], + [ 8.8443074, 46.9195286 ], + [ 8.8440127, 46.9197438 ], + [ 8.8438059, 46.9199006 ], + [ 8.8436726, 46.9200445 ], + [ 8.8436308, 46.9202035 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "JBG0032", + "country" : "CHE", + "name" : [ + { + "text" : "Eidgenössisches Jagdbanngebiet Silbern-Jägern-Bödmerenwald", + "lang" : "de-CH" + }, + { + "text" : "District franc fédéral Silbern-Jägern-Bödmerenwald", + "lang" : "fr-CH" + }, + { + "text" : "Bandita federale di caccia Silbern-Jägern-Bödmerenwald", + "lang" : "it-CH" + }, + { + "text" : "Federal Game Reserve Silbern-Jägern-Bödmerenwald", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.3101742, 47.3452205 ], + [ 8.310273, 47.3452011 ], + [ 8.3103345, 47.3451747 ], + [ 8.310349800000001, 47.3451298 ], + [ 8.3103805, 47.3450369 ], + [ 8.310421999999999, 47.3449672 ], + [ 8.3104698, 47.3449208 ], + [ 8.3105231, 47.3448677 ], + [ 8.3105527, 47.3448168 ], + [ 8.3105418, 47.3447949 ], + [ 8.3105441, 47.3447648 ], + [ 8.3105617, 47.3447374 ], + [ 8.3105713, 47.3446919 ], + [ 8.3105928, 47.3446691 ], + [ 8.3106463, 47.3446734 ], + [ 8.3106703, 47.3446345 ], + [ 8.3106555, 47.3446072 ], + [ 8.3106053, 47.3445769 ], + [ 8.3105332, 47.3445467 ], + [ 8.3105308, 47.3445234 ], + [ 8.3105178, 47.3444908 ], + [ 8.3104794, 47.3444757 ], + [ 8.3104494, 47.3444512 ], + [ 8.3104306, 47.344418 ], + [ 8.3103731, 47.3444017 ], + [ 8.310293099999999, 47.3444082 ], + [ 8.3102495, 47.3444219 ], + [ 8.3102101, 47.3444575 ], + [ 8.3101427, 47.3444747 ], + [ 8.31007, 47.3444658 ], + [ 8.310046, 47.344454 ], + [ 8.3100376, 47.3444127 ], + [ 8.3100254, 47.3443767 ], + [ 8.3099868, 47.3443516 ], + [ 8.3099533, 47.3443432 ], + [ 8.3098837, 47.344347 ], + [ 8.3098286, 47.3443561 ], + [ 8.3098041, 47.3443736 ], + [ 8.3097546, 47.3443806 ], + [ 8.309721, 47.3443648 ], + [ 8.3096687, 47.3443725 ], + [ 8.3095666, 47.3443753 ], + [ 8.3094991, 47.3443837 ], + [ 8.309426, 47.3444009 ], + [ 8.3093808, 47.3444313 ], + [ 8.3093281, 47.3444703 ], + [ 8.309287, 47.3445153 ], + [ 8.3092847, 47.344542 ], + [ 8.3092691, 47.3445775 ], + [ 8.3092344, 47.3446051 ], + [ 8.3091966, 47.3446247 ], + [ 8.3091839, 47.3446562 ], + [ 8.3091703, 47.3446846 ], + [ 8.3091536, 47.3447198 ], + [ 8.3091206, 47.344788 ], + [ 8.3091016, 47.3448456 ], + [ 8.309106, 47.3448756 ], + [ 8.3091331, 47.3448941 ], + [ 8.3091896, 47.344909 ], + [ 8.3092385, 47.344918 ], + [ 8.3092572, 47.3449493 ], + [ 8.3092943, 47.3449957 ], + [ 8.309295, 47.3450297 ], + [ 8.3092729, 47.3450739 ], + [ 8.3092641, 47.3451147 ], + [ 8.309301, 47.3451451 ], + [ 8.3093731, 47.3451753 ], + [ 8.3094429, 47.3451855 ], + [ 8.309515, 47.3452137 ], + [ 8.3095905, 47.3452212 ], + [ 8.3097096, 47.3452177 ], + [ 8.3098527, 47.3452174 ], + [ 8.3099786, 47.3452185 ], + [ 8.310096, 47.345223 ], + [ 8.3101742, 47.3452205 ] + ], + [ + [ 8.309709699999999, 47.3445251 ], + [ 8.309740099999999, 47.3445189 ], + [ 8.3097794, 47.3445259 ], + [ 8.3098112, 47.3445464 ], + [ 8.3098561, 47.3445961 ], + [ 8.3098837, 47.3446473 ], + [ 8.3098547, 47.3446769 ], + [ 8.3098262, 47.3446791 ], + [ 8.3097892, 47.3446406 ], + [ 8.3097503, 47.3446035 ], + [ 8.3096953, 47.3445665 ], + [ 8.309692, 47.3445465 ], + [ 8.309709699999999, 47.3445251 ] + ], + [ + [ 8.3093495, 47.3446397 ], + [ 8.3093811, 47.3446468 ], + [ 8.3094272, 47.3446651 ], + [ 8.3094737, 47.3447042 ], + [ 8.3095001, 47.3447374 ], + [ 8.3094813, 47.3447522 ], + [ 8.3094808, 47.3447755 ], + [ 8.3094571, 47.3447817 ], + [ 8.3094283, 47.3447706 ], + [ 8.3093953, 47.3447421 ], + [ 8.3093355, 47.3447085 ], + [ 8.3093198, 47.3446812 ], + [ 8.3093335, 47.3446498 ], + [ 8.3093495, 47.3446397 ] + ], + [ + [ 8.3102629, 47.3448722 ], + [ 8.3103099, 47.3448886 ], + [ 8.3103209, 47.3449138 ], + [ 8.310311, 47.3449459 ], + [ 8.3102798, 47.3449608 ], + [ 8.3102353, 47.3449772 ], + [ 8.3101811, 47.3449849 ], + [ 8.3101505, 47.3449811 ], + [ 8.3101349, 47.3449625 ], + [ 8.3101372, 47.3449365 ], + [ 8.3101682, 47.3449096 ], + [ 8.3102172, 47.3448799 ], + [ 8.3102629, 47.3448722 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "KTAG601", + "country" : "CHE", + "name" : [ + { + "text" : "Cholmoos", + "lang" : "de-CH" + }, + { + "text" : "Cholmoos", + "lang" : "fr-CH" + }, + { + "text" : "Cholmoos", + "lang" : "it-CH" + }, + { + "text" : "Cholmoos", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "regulationExemption" : "NO", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "schedule" : [ + { + "day" : [ "ANY" ], + "startTime" : "00:00:00.00+01:00", + "endTime" : "00:00:00.00+01:00" + } + ] + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Aargau", + "lang" : "de-CH" + }, + { + "text" : "Canton d'Argovie", + "lang" : "fr-CH" + }, + { + "text" : "Canton Argovia", + "lang" : "it-CH" + }, + { + "text" : "Canton of Aargau", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Departement Bau, Verkehr und Umwelt (BVU)", + "lang" : "de-CH" + }, + { + "text" : "Département de la construction, des transports et de l'environnement (CTE)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento delle costruzioni, dei trasporti e dell'ambiente (CTA)", + "lang" : "it-CH" + }, + { + "text" : "Department of Civil Engineering,Transport and Environment (CTE)", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Sektion Gewässernutzung", + "lang" : "de-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "fr-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "it-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ag.ch/de/verwaltung/bvu/umwelt-natur-landschaft/hochwasserschutz-gewaesser/gewaessernutzung", + "email" : "alg@ag.ch", + "phone" : "0041 62 835 34 50", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8911528, 47.4118143 ], + [ 7.8913288, 47.4118474 ], + [ 7.8914893, 47.4118892 ], + [ 7.8915001, 47.4118896 ], + [ 7.8915109, 47.4118895 ], + [ 7.8915217, 47.4118891 ], + [ 7.8915361, 47.4118878 ], + [ 7.8915503, 47.4118858 ], + [ 7.8915641999999995, 47.4118831 ], + [ 7.891576, 47.4118797 ], + [ 7.8915872, 47.4118755 ], + [ 7.8915977, 47.4118705 ], + [ 7.8916053999999995, 47.4118661 ], + [ 7.8916127, 47.4118613 ], + [ 7.8916193, 47.4118561 ], + [ 7.8916254, 47.4118506 ], + [ 7.8916307, 47.4118448 ], + [ 7.8916384, 47.4118338 ], + [ 7.8916457, 47.4118227 ], + [ 7.8916526, 47.4118115 ], + [ 7.8916958, 47.4117087 ], + [ 7.8917231999999995, 47.4116325 ], + [ 7.8918695, 47.4112836 ], + [ 7.8919854, 47.4110572 ], + [ 7.8920041, 47.4109511 ], + [ 7.8920274, 47.4108344 ], + [ 7.8920178, 47.4107052 ], + [ 7.8920123, 47.4106753 ], + [ 7.8919595, 47.4106265 ], + [ 7.89189, 47.4105961 ], + [ 7.8918109, 47.4105773 ], + [ 7.8917286, 47.4105642 ], + [ 7.8916535, 47.4105798 ], + [ 7.8915853, 47.4106034 ], + [ 7.8915306, 47.4106324 ], + [ 7.8914618999999995, 47.4107145 ], + [ 7.8913281, 47.4108945 ], + [ 7.8912225, 47.411056 ], + [ 7.8910996, 47.4112726 ], + [ 7.8910305, 47.4114189 ], + [ 7.8909711, 47.4115478 ], + [ 7.8909551, 47.4116707 ], + [ 7.8909927, 47.411785 ], + [ 7.8910805, 47.4118067 ], + [ 7.8911528, 47.4118143 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns126", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Mapprach - Hofmatt", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Mapprach - Hofmatt", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Mapprach - Hofmatt", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Mapprach - Hofmatt", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8855184, 47.4086403 ], + [ 7.8854782, 47.4086748 ], + [ 7.8855004, 47.4087105 ], + [ 7.8855734, 47.4088596 ], + [ 7.8856661, 47.4090736 ], + [ 7.8857752, 47.4092703 ], + [ 7.8858753, 47.4094305 ], + [ 7.8859875, 47.4096192 ], + [ 7.8860689, 47.409759 ], + [ 7.886184, 47.409926 ], + [ 7.8862704, 47.4098488 ], + [ 7.8861987, 47.4097325 ], + [ 7.8860934, 47.4095598 ], + [ 7.8859812, 47.40937 ], + [ 7.8859018, 47.4092439 ], + [ 7.8858276, 47.4091223 ], + [ 7.8857562, 47.4089721 ], + [ 7.8856864, 47.4088253 ], + [ 7.8856181, 47.4086613 ], + [ 7.885606, 47.4086341 ], + [ 7.8855184, 47.4086403 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns179", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Mapprach - Hofmatt", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Mapprach - Hofmatt", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Mapprach - Hofmatt", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Mapprach - Hofmatt", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8345239, 47.392592 ], + [ 7.8346594, 47.3928133 ], + [ 7.8347042, 47.3930074 ], + [ 7.8347733999999996, 47.3931046 ], + [ 7.8349436, 47.3931191 ], + [ 7.8350808, 47.3929353 ], + [ 7.8350648, 47.3928336 ], + [ 7.8350862, 47.3927939 ], + [ 7.8352789, 47.3928326 ], + [ 7.8354269, 47.3929084 ], + [ 7.8353646, 47.3931504 ], + [ 7.8354625, 47.3933976 ], + [ 7.835482, 47.3935919 ], + [ 7.8354388, 47.3938078 ], + [ 7.8354678, 47.3939319 ], + [ 7.8354482, 47.3940502 ], + [ 7.8355318, 47.3942299 ], + [ 7.8356154, 47.3943478 ], + [ 7.8357544, 47.3943529 ], + [ 7.8359928, 47.3942191 ], + [ 7.8361366, 47.3940699 ], + [ 7.836469, 47.3942174 ], + [ 7.836558, 47.3942377 ], + [ 7.8372533, 47.3943178 ], + [ 7.8372786, 47.3942923 ], + [ 7.8368379, 47.3940885 ], + [ 7.8367603, 47.3939948 ], + [ 7.8367059, 47.3939288 ], + [ 7.8366196, 47.3938692 ], + [ 7.836489, 47.3937333 ], + [ 7.836307, 47.3936048 ], + [ 7.8362063, 47.393431 ], + [ 7.8360564, 47.3933669 ], + [ 7.8360178, 47.3933271 ], + [ 7.836013, 47.3932046 ], + [ 7.836040000000001, 47.3931504 ], + [ 7.8359917, 47.3930688 ], + [ 7.836161, 47.3928807 ], + [ 7.8363209, 47.3928353 ], + [ 7.8364817, 47.3928334 ], + [ 7.8367109, 47.3927801 ], + [ 7.8370304, 47.3928444 ], + [ 7.8371300999999995, 47.3929149 ], + [ 7.8373961, 47.3929828 ], + [ 7.8375822, 47.3930745 ], + [ 7.8377388, 47.3933299 ], + [ 7.8378488, 47.3934592 ], + [ 7.8380345, 47.3935835 ], + [ 7.8382397, 47.3937476 ], + [ 7.8384504, 47.3934958 ], + [ 7.8386389, 47.3932707 ], + [ 7.8388299, 47.3930425 ], + [ 7.8390003, 47.392839 ], + [ 7.8387405, 47.3927837 ], + [ 7.8384466, 47.3927211 ], + [ 7.8380641, 47.3926172 ], + [ 7.8377625, 47.3925045 ], + [ 7.8374945, 47.3923752 ], + [ 7.8373842, 47.3923182 ], + [ 7.8371317, 47.3922465 ], + [ 7.8366077, 47.3921757 ], + [ 7.8361984, 47.3921123 ], + [ 7.8358038, 47.3920145 ], + [ 7.8353242, 47.392231 ], + [ 7.8347979, 47.3924685 ], + [ 7.8345239, 47.392592 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr131", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Bürgisweid", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Bürgisweid", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Bürgisweid", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Bürgisweid", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8074837, 47.4172114 ], + [ 7.8078767, 47.4172138 ], + [ 7.8079307, 47.4167263 ], + [ 7.8080075, 47.416291 ], + [ 7.8081368, 47.4160092 ], + [ 7.8084215, 47.4153588 ], + [ 7.8085232, 47.4152132 ], + [ 7.8090401, 47.4136137 ], + [ 7.809027, 47.4129459 ], + [ 7.8089515, 47.4124877 ], + [ 7.8089227999999995, 47.4124663 ], + [ 7.8088961999999995, 47.4124668 ], + [ 7.8088742, 47.4125565 ], + [ 7.8088841, 47.4128082 ], + [ 7.8088856, 47.4131458 ], + [ 7.8088334, 47.4133981 ], + [ 7.8087149, 47.4136383 ], + [ 7.8086421, 47.4138187 ], + [ 7.8085854, 47.4141491 ], + [ 7.8085204, 47.414638 ], + [ 7.8084777, 47.4151103 ], + [ 7.8082027, 47.4153817 ], + [ 7.8080294, 47.4156793 ], + [ 7.8079438, 47.4157875 ], + [ 7.8076693, 47.4161342 ], + [ 7.8073917999999995, 47.416934 ], + [ 7.8074532, 47.4170501 ], + [ 7.8074837, 47.4172114 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr133", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Buechfeld", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Buechfeld", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Buechfeld", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Buechfeld", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8530607, 47.512442300000004 ], + [ 7.8530759, 47.5124275 ], + [ 7.8530893, 47.512411900000004 ], + [ 7.8531007, 47.5123956 ], + [ 7.8532344, 47.5122058 ], + [ 7.853328, 47.5120549 ], + [ 7.8533948, 47.5118717 ], + [ 7.853359, 47.5118712 ], + [ 7.8532653, 47.5118701 ], + [ 7.85304, 47.5121755 ], + [ 7.8530607, 47.512442300000004 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns042", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Seematten-Holl", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Seematten-Holl", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Seematten-Holl", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Seematten-Holl", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.3598659, 47.1599984 ], + [ 7.3604594, 47.1599681 ], + [ 7.3605319, 47.1599599 ], + [ 7.3605195, 47.158902 ], + [ 7.3605137, 47.1589031 ], + [ 7.3597949, 47.1589665 ], + [ 7.3592105, 47.1590084 ], + [ 7.3585322, 47.159016 ], + [ 7.3580549, 47.1590309 ], + [ 7.3574615, 47.1589982 ], + [ 7.3565542, 47.1589148 ], + [ 7.3559782, 47.1588324 ], + [ 7.3549821, 47.1586464 ], + [ 7.3540922, 47.1584793 ], + [ 7.3535089, 47.1583746 ], + [ 7.3530228, 47.158241 ], + [ 7.352638, 47.1581553 ], + [ 7.3522171, 47.1580183 ], + [ 7.3520458, 47.1579542 ], + [ 7.3519331, 47.1578184 ], + [ 7.3519738, 47.1576115 ], + [ 7.3520864, 47.1573129 ], + [ 7.3522549, 47.157089 ], + [ 7.3524886, 47.1568203 ], + [ 7.3527725, 47.1565812 ], + [ 7.3532765, 47.1562577 ], + [ 7.3536025, 47.1560116 ], + [ 7.3541256, 47.1556027 ], + [ 7.3545002, 47.1553691 ], + [ 7.3549556, 47.1550744 ], + [ 7.3554134, 47.1547959 ], + [ 7.3559182, 47.1545399 ], + [ 7.3564329, 47.1542317 ], + [ 7.3570234, 47.1539317 ], + [ 7.3574622, 47.1536865 ], + [ 7.357628, 47.1535975 ], + [ 7.3577377, 47.1535193 ], + [ 7.3578617, 47.153317 ], + [ 7.3578743, 47.1531596 ], + [ 7.3578664, 47.1529411 ], + [ 7.3575698, 47.1523094 ], + [ 7.3572698, 47.1517901 ], + [ 7.3571226, 47.1516021 ], + [ 7.3568113, 47.1514273 ], + [ 7.3563015, 47.1512668 ], + [ 7.355744, 47.1510092 ], + [ 7.3552915, 47.1510179 ], + [ 7.3538964, 47.1510393 ], + [ 7.353434, 47.151075 ], + [ 7.3527087, 47.1511337 ], + [ 7.3515457, 47.1512615 ], + [ 7.350461, 47.151436 ], + [ 7.349091, 47.1516077 ], + [ 7.3475653, 47.1518017 ], + [ 7.3465639, 47.1519017 ], + [ 7.3461608, 47.1519778 ], + [ 7.3457059000000005, 47.1519701 ], + [ 7.3448432, 47.1518688 ], + [ 7.3441512, 47.1517477 ], + [ 7.3434124, 47.151541 ], + [ 7.3424906, 47.1513217 ], + [ 7.3418729, 47.1511044 ], + [ 7.341276, 47.1508187 ], + [ 7.3406767, 47.1505007 ], + [ 7.3402841, 47.1502171 ], + [ 7.3399499, 47.1500234 ], + [ 7.3397115, 47.1497002 ], + [ 7.33935, 47.1491197 ], + [ 7.3389284, 47.148532 ], + [ 7.3385204, 47.1481287 ], + [ 7.338277, 47.1478531 ], + [ 7.3382363, 47.1475986 ], + [ 7.3382656, 47.1473396 ], + [ 7.3384672, 47.1470591 ], + [ 7.3387414, 47.1466968 ], + [ 7.3389692, 47.146473 ], + [ 7.3393174, 47.1462656 ], + [ 7.3396654, 47.1461103 ], + [ 7.340021, 47.1458488 ], + [ 7.3408791, 47.1452172 ], + [ 7.341295, 47.1449046 ], + [ 7.341634, 47.1446656 ], + [ 7.3418785, 47.1443672 ], + [ 7.3420948, 47.1441434 ], + [ 7.3423116, 47.1440662 ], + [ 7.3425926, 47.1440179 ], + [ 7.3429689, 47.1441711 ], + [ 7.3432975, 47.1442703 ], + [ 7.3437258, 47.1443741 ], + [ 7.3440068, 47.144341 ], + [ 7.3444015, 47.1443526 ], + [ 7.344582, 47.144319 ], + [ 7.3448779, 47.1442744 ], + [ 7.3451903, 47.1442075 ], + [ 7.3453379, 47.1441515 ], + [ 7.3454863, 47.1440732 ], + [ 7.3456341, 47.1439276 ], + [ 7.3459964, 47.1435355 ], + [ 7.3463416, 47.1430874 ], + [ 7.345586, 47.1431092 ], + [ 7.3450603, 47.14312 ], + [ 7.3442717, 47.1431529 ], + [ 7.343582, 47.1431861 ], + [ 7.3430555, 47.1431969 ], + [ 7.3425628, 47.1432188 ], + [ 7.3422669, 47.1432298 ], + [ 7.341925, 47.1432267 ], + [ 7.3409198, 47.1432024 ], + [ 7.3401115, 47.1432044 ], + [ 7.3391779, 47.1432261 ], + [ 7.3383458, 47.1431939 ], + [ 7.3375146, 47.143088 ], + [ 7.3369634999999995, 47.1430217 ], + [ 7.3361745, 47.1428591 ], + [ 7.335374, 47.1426705 ], + [ 7.3345694, 47.1424512 ], + [ 7.3338718, 47.1423012 ], + [ 7.3332540999999996, 47.1421738 ], + [ 7.3330205, 47.142367899999996 ], + [ 7.3322132, 47.1431462 ], + [ 7.3319813, 47.1433069 ], + [ 7.3311003, 47.1438304 ], + [ 7.3309913, 47.1439311 ], + [ 7.3308163, 47.1440992 ], + [ 7.3306017, 47.1442897 ], + [ 7.3306154, 47.1444309 ], + [ 7.3306142, 47.1446342 ], + [ 7.330592, 47.1449823 ], + [ 7.3306296, 47.1451289 ], + [ 7.3307284, 47.1452198 ], + [ 7.3310641, 47.1454576 ], + [ 7.3312452, 47.1455379 ], + [ 7.3314264, 47.1455551 ], + [ 7.3316242, 47.1455562 ], + [ 7.331789, 47.1455302 ], + [ 7.3319729, 47.1454675 ], + [ 7.3321049, 47.1454083 ], + [ 7.332287, 47.1453913 ], + [ 7.3326232000000005, 47.1454114 ], + [ 7.3329289, 47.1453837 ], + [ 7.3333583, 47.145341 ], + [ 7.3335066, 47.1453421 ], + [ 7.3337767, 47.1454178 ], + [ 7.333891, 47.1455763 ], + [ 7.3340528, 47.1458408 ], + [ 7.3342751, 47.145932 ], + [ 7.334719, 47.1460645 ], + [ 7.3349323, 47.1461268 ], + [ 7.3350367, 47.146251 ], + [ 7.3351811, 47.1465408 ], + [ 7.3352923, 47.1470248 ], + [ 7.3354127, 47.1473857 ], + [ 7.3354629, 47.1478516 ], + [ 7.3354863, 47.1481331 ], + [ 7.3355319, 47.1484219 ], + [ 7.3355134, 47.1486171 ], + [ 7.3354784, 47.1488194 ], + [ 7.3355084999999995, 47.149011 ], + [ 7.3355459, 47.1492432 ], + [ 7.3356179, 47.1495365 ], + [ 7.3357952, 47.1499091 ], + [ 7.3361866, 47.1503204 ], + [ 7.336453, 47.1506265 ], + [ 7.3370181, 47.1511812 ], + [ 7.3374574, 47.151589 ], + [ 7.3376278, 47.151698 ], + [ 7.3378024, 47.1517549 ], + [ 7.3381465, 47.1519261 ], + [ 7.3385301, 47.1521755 ], + [ 7.3388512, 47.152335 ], + [ 7.3393436, 47.1525298 ], + [ 7.3396896, 47.1526038 ], + [ 7.3400521, 47.1526689 ], + [ 7.34038, 47.1527205 ], + [ 7.3406016, 47.1527665 ], + [ 7.3408653, 47.152764 ], + [ 7.3410739, 47.1526904 ], + [ 7.3413706, 47.1526808 ], + [ 7.3416904, 47.1526901 ], + [ 7.3424648999999995, 47.1527735 ], + [ 7.3435285, 47.1529417 ], + [ 7.3443195, 47.1530251 ], + [ 7.3448139, 47.1530462 ], + [ 7.3453743, 47.1530601 ], + [ 7.3457698, 47.1530893 ], + [ 7.3459412, 47.1531245 ], + [ 7.346368, 47.153167 ], + [ 7.3468121, 47.1532197 ], + [ 7.3471681, 47.1532325 ], + [ 7.3475719, 47.153231 ], + [ 7.3482593, 47.153183 ], + [ 7.3489353, 47.1530854 ], + [ 7.3496623, 47.1529664 ], + [ 7.3502641, 47.1528409 ], + [ 7.3506606, 47.1527764 ], + [ 7.350992, 47.1527219 ], + [ 7.3513984, 47.1526448 ], + [ 7.3516853, 47.1526063 ], + [ 7.3521642, 47.1525527 ], + [ 7.3526933, 47.1525288 ], + [ 7.3534293, 47.152488 ], + [ 7.3544247, 47.1525095 ], + [ 7.3551994, 47.1525253 ], + [ 7.3554886, 47.1525562 ], + [ 7.3559044, 47.1527724 ], + [ 7.3561021, 47.1528633 ], + [ 7.3561009, 47.1530774 ], + [ 7.3560487, 47.1532393 ], + [ 7.3559423, 47.1533516 ], + [ 7.355666, 47.1534738 ], + [ 7.3549049, 47.153735 ], + [ 7.3545347, 47.1538831 ], + [ 7.3542345000000005, 47.1540232 ], + [ 7.3538617, 47.1541831 ], + [ 7.3536052, 47.1542944 ], + [ 7.353446, 47.1543789 ], + [ 7.3530456, 47.1548202 ], + [ 7.3527626, 47.155016 ], + [ 7.3522313, 47.1553557 ], + [ 7.3518824, 47.1555785 ], + [ 7.3514929, 47.1558579 ], + [ 7.3511933, 47.1561212 ], + [ 7.3508499, 47.1564394 ], + [ 7.350627, 47.1566858 ], + [ 7.3504246, 47.156977 ], + [ 7.3502734, 47.1571676 ], + [ 7.3500949, 47.1574814 ], + [ 7.3500452, 47.1576118 ], + [ 7.3500763, 47.157781 ], + [ 7.3500907, 47.1580283 ], + [ 7.3501638, 47.1581975 ], + [ 7.3503324, 47.1583947 ], + [ 7.350693, 47.1586063 ], + [ 7.351235, 47.1588226 ], + [ 7.3519032, 47.1589778 ], + [ 7.3524296, 47.1591266 ], + [ 7.3528719, 47.1593158 ], + [ 7.3532071, 47.159424 ], + [ 7.3537345, 47.1595279 ], + [ 7.3544596, 47.1596184 ], + [ 7.3551015, 47.1597053 ], + [ 7.3557105, 47.1597714 ], + [ 7.3564291, 47.1598475 ], + [ 7.357104, 47.1599307 ], + [ 7.3578969, 47.1599645 ], + [ 7.3585455, 47.1599946 ], + [ 7.3592222, 47.1599834 ], + [ 7.3598659, 47.1599984 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "WZV0016", + "country" : "CHE", + "name" : [ + { + "text" : "Wasser- und Zugvogelreservat Häftli bei Büren", + "lang" : "de-CH" + }, + { + "text" : "Réserve d'oiseaux d'eau et de migrateurs Häftli bei Büren", + "lang" : "fr-CH" + }, + { + "text" : "Riserva di uccelli acquatici e migratori Häftli bei Büren", + "lang" : "it-CH" + }, + { + "text" : "Water Bird and Migratory Bird Reserves Häftli bei Büren", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8425358, 47.4360241 ], + [ 7.8425212, 47.4364784 ], + [ 7.843133, 47.4364499 ], + [ 7.8435179999999995, 47.4364116 ], + [ 7.8438467, 47.4363456 ], + [ 7.8441205, 47.4362906 ], + [ 7.8441237, 47.4362877 ], + [ 7.8441884, 47.4362296 ], + [ 7.8441577, 47.4361374 ], + [ 7.8439776, 47.4360851 ], + [ 7.8427309, 47.4359205 ], + [ 7.842573, 47.4360044 ], + [ 7.8425358, 47.4360241 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr100", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Rottannehölzli", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Rottannehölzli", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Rottannehölzli", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Rottannehölzli", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.677359, 46.5828359 ], + [ 6.6775642, 46.5831394 ], + [ 6.6776252, 46.5832306 ], + [ 6.6776687, 46.583295 ], + [ 6.6777108, 46.5833643 ], + [ 6.6777487, 46.5834347 ], + [ 6.6777825, 46.583506 ], + [ 6.6778122, 46.5835783 ], + [ 6.6778375, 46.5836509 ], + [ 6.6778876, 46.5838219 ], + [ 6.6780412, 46.5843102 ], + [ 6.6781873, 46.5847548 ], + [ 6.678218, 46.584847 ], + [ 6.6782632, 46.5850004 ], + [ 6.6782892, 46.5851018 ], + [ 6.678305, 46.5851427 ], + [ 6.6783179, 46.5852107 ], + [ 6.678339, 46.5852088 ], + [ 6.6783864, 46.5852095 ], + [ 6.6785575999999995, 46.5852984 ], + [ 6.6787984, 46.5853208 ], + [ 6.6788169, 46.5853358 ], + [ 6.678738, 46.5857483 ], + [ 6.6784447, 46.5857209 ], + [ 6.6784887, 46.5858902 ], + [ 6.6788087, 46.5867228 ], + [ 6.6788575, 46.5870791 ], + [ 6.6787856, 46.5880762 ], + [ 6.6797441, 46.5906312 ], + [ 6.6807594, 46.5933375 ], + [ 6.6788161, 46.5942178 ], + [ 6.6736522, 46.5907205 ], + [ 6.6733208, 46.5894782 ], + [ 6.6734095, 46.5893105 ], + [ 6.6734696, 46.5889871 ], + [ 6.6737947, 46.5889451 ], + [ 6.6738104, 46.5887835 ], + [ 6.6736615, 46.5888263 ], + [ 6.6735596, 46.5887346 ], + [ 6.6725904, 46.588818 ], + [ 6.6725668, 46.5888061 ], + [ 6.6723303, 46.5888979 ], + [ 6.6719092, 46.5890498 ], + [ 6.6712128, 46.5892737 ], + [ 6.6709161, 46.5892941 ], + [ 6.6705353, 46.5893658 ], + [ 6.6701635, 46.5892884 ], + [ 6.6697641, 46.5889863 ], + [ 6.6694175, 46.5885704 ], + [ 6.6697285, 46.5881089 ], + [ 6.6698234, 46.5878182 ], + [ 6.6701294, 46.5875913 ], + [ 6.6712769, 46.5872013 ], + [ 6.6712491, 46.5871401 ], + [ 6.6712194, 46.5871362 ], + [ 6.6711845, 46.5871318 ], + [ 6.671122, 46.5871245 ], + [ 6.6710908, 46.5871212 ], + [ 6.6710595, 46.5871181 ], + [ 6.6710282, 46.5871153 ], + [ 6.6709961, 46.5871126 ], + [ 6.6708063, 46.5870975 ], + [ 6.6707556, 46.5870949 ], + [ 6.6707092, 46.587095 ], + [ 6.6706628, 46.5870976 ], + [ 6.6706169, 46.5871025 ], + [ 6.6705716, 46.5871099 ], + [ 6.6705221, 46.5871207 ], + [ 6.6703389, 46.5871655 ], + [ 6.6699414, 46.5872644 ], + [ 6.6694564, 46.5873931 ], + [ 6.6682189, 46.5877081 ], + [ 6.6681058, 46.5877389 ], + [ 6.6680718, 46.5877504 ], + [ 6.6680363, 46.5877645 ], + [ 6.6680019999999995, 46.5877799 ], + [ 6.6679691, 46.5877968 ], + [ 6.6679376999999995, 46.587815 ], + [ 6.6679102, 46.587833 ], + [ 6.6678915, 46.5878474 ], + [ 6.6678743, 46.5878632 ], + [ 6.6678589, 46.5878798 ], + [ 6.6678455, 46.5878972 ], + [ 6.6678341, 46.5879153 ], + [ 6.6678247, 46.5879344 ], + [ 6.6677903, 46.5880263 ], + [ 6.6677879, 46.5880346 ], + [ 6.6677854, 46.5880449 ], + [ 6.6677834, 46.5880552 ], + [ 6.6677818, 46.5880656 ], + [ 6.6677807, 46.588076 ], + [ 6.6677799, 46.5880903 ], + [ 6.6677728, 46.5881875 ], + [ 6.6677662, 46.5882906 ], + [ 6.6677655, 46.588309 ], + [ 6.6677612, 46.588354 ], + [ 6.6677532, 46.5883989 ], + [ 6.6677477, 46.5884216 ], + [ 6.6677168, 46.5885285 ], + [ 6.6677075, 46.5885541 ], + [ 6.6676958, 46.58858 ], + [ 6.6676821, 46.5886053 ], + [ 6.6676664, 46.5886301 ], + [ 6.6676486, 46.5886542 ], + [ 6.6676281, 46.5886786 ], + [ 6.6675877, 46.58872 ], + [ 6.6675414, 46.5887599 ], + [ 6.6674906, 46.5887971 ], + [ 6.6674356, 46.5888312 ], + [ 6.6673767, 46.5888622 ], + [ 6.6672845, 46.588903 ], + [ 6.6669301999999995, 46.5889578 ], + [ 6.6668047999999995, 46.588945 ], + [ 6.66672, 46.5889323 ], + [ 6.6666365, 46.5889158 ], + [ 6.6665548999999995, 46.5888956 ], + [ 6.6664753, 46.5888716 ], + [ 6.6663954, 46.5888431 ], + [ 6.6663339, 46.5888161 ], + [ 6.666277, 46.5887866 ], + [ 6.6662235, 46.5887541 ], + [ 6.6661738, 46.5887188 ], + [ 6.6661282, 46.5886811 ], + [ 6.6660906, 46.5886445 ], + [ 6.6659913, 46.5885416 ], + [ 6.6658371, 46.5883723 ], + [ 6.6655843, 46.5880731 ], + [ 6.6654586, 46.5879129 ], + [ 6.6653186, 46.5877695 ], + [ 6.6652158, 46.5876788 ], + [ 6.6652051, 46.5876701 ], + [ 6.6651983999999995, 46.5876656 ], + [ 6.6651910999999995, 46.5876615 ], + [ 6.6651834, 46.587658 ], + [ 6.6651751, 46.587655 ], + [ 6.6651665, 46.5876525 ], + [ 6.6651576, 46.5876506 ], + [ 6.6651485, 46.5876493 ], + [ 6.6651453, 46.5876491 ], + [ 6.6651547, 46.5877145 ], + [ 6.6651726, 46.5877563 ], + [ 6.6651242, 46.5878292 ], + [ 6.6651506, 46.5878725 ], + [ 6.6651353, 46.5879308 ], + [ 6.6650798, 46.5879766 ], + [ 6.6649924, 46.5881244 ], + [ 6.6649991, 46.5882012 ], + [ 6.6651016, 46.5883661 ], + [ 6.6651815, 46.5883786 ], + [ 6.6652272, 46.588421 ], + [ 6.6652278, 46.5885507 ], + [ 6.6652434, 46.5886464 ], + [ 6.6651633, 46.588734099999996 ], + [ 6.6649329, 46.5888588 ], + [ 6.6649445, 46.5888638 ], + [ 6.6649754, 46.5888775 ], + [ 6.6650137, 46.5888982 ], + [ 6.6650492, 46.5889211 ], + [ 6.6650815, 46.5889461 ], + [ 6.6651104, 46.5889731 ], + [ 6.6651356, 46.5890017 ], + [ 6.665157, 46.5890318 ], + [ 6.6651744, 46.5890631 ], + [ 6.6651875, 46.5890953 ], + [ 6.6651965, 46.5891282 ], + [ 6.665201, 46.5891616 ], + [ 6.6652012, 46.5891951 ], + [ 6.665197, 46.5892285 ], + [ 6.6651884, 46.5892615 ], + [ 6.6651755999999995, 46.5892938 ], + [ 6.6651586, 46.5893252 ], + [ 6.6651375, 46.5893554 ], + [ 6.6651106, 46.5893864 ], + [ 6.6650995, 46.5893963 ], + [ 6.6650742, 46.5894189 ], + [ 6.6650454, 46.5894437 ], + [ 6.6650159, 46.5894682 ], + [ 6.6649904, 46.5894887 ], + [ 6.6650436, 46.5896009 ], + [ 6.6649901, 46.589713 ], + [ 6.6651992, 46.5897589 ], + [ 6.665352, 46.5898446 ], + [ 6.6659589, 46.589749 ], + [ 6.6663472, 46.5898497 ], + [ 6.6667869, 46.5900239 ], + [ 6.6672123, 46.5901989 ], + [ 6.6670359999999995, 46.5904292 ], + [ 6.6671461, 46.5904673 ], + [ 6.6674168, 46.59051 ], + [ 6.6680449, 46.5904608 ], + [ 6.668701, 46.590545 ], + [ 6.6689031, 46.5905923 ], + [ 6.6690002, 46.590475 ], + [ 6.6694432, 46.590319 ], + [ 6.6697143, 46.5904647 ], + [ 6.6697792, 46.5905212 ], + [ 6.6700964, 46.5906314 ], + [ 6.6705564, 46.590714 ], + [ 6.6709557, 46.5908722 ], + [ 6.6711759, 46.5909112 ], + [ 6.6718722, 46.5910835 ], + [ 6.6722046, 46.59138 ], + [ 6.6723565, 46.591506 ], + [ 6.6725335, 46.5918061 ], + [ 6.6728258, 46.591896 ], + [ 6.6730154, 46.5920049 ], + [ 6.6731058, 46.592128 ], + [ 6.6731659, 46.5921935 ], + [ 6.6736143, 46.5924817 ], + [ 6.6739753, 46.5926774 ], + [ 6.674107, 46.5927616 ], + [ 6.6741787, 46.5929305 ], + [ 6.6741524, 46.5930299 ], + [ 6.6742377, 46.5931394 ], + [ 6.6742061, 46.5932514 ], + [ 6.6742516, 46.5933562 ], + [ 6.6742723999999995, 46.5934253 ], + [ 6.6742866, 46.5934376 ], + [ 6.6744205999999995, 46.5934427 ], + [ 6.6749985, 46.5937389 ], + [ 6.6752221, 46.5938517 ], + [ 6.6755217, 46.5940037 ], + [ 6.6759728, 46.5940585 ], + [ 6.6762521, 46.5940695 ], + [ 6.6769081, 46.5942673 ], + [ 6.6770445, 46.5944318 ], + [ 6.677246, 46.5945526 ], + [ 6.6772638, 46.5945963 ], + [ 6.6775977, 46.5945851 ], + [ 6.6778851, 46.5945811 ], + [ 6.6782503, 46.5947159 ], + [ 6.678553, 46.5948703 ], + [ 6.6789883, 46.5950021 ], + [ 6.6790445, 46.5950667 ], + [ 6.6792195, 46.5950691 ], + [ 6.6798001, 46.5950618 ], + [ 6.6799832, 46.5950366 ], + [ 6.6801813, 46.5949656 ], + [ 6.6805406, 46.5947405 ], + [ 6.6810331, 46.5944713 ], + [ 6.6813599, 46.5943285 ], + [ 6.6819868, 46.5943346 ], + [ 6.681999, 46.5943278 ], + [ 6.6820011, 46.5943252 ], + [ 6.681922, 46.5942308 ], + [ 6.681639, 46.5939493 ], + [ 6.6813771, 46.5936384 ], + [ 6.6813133, 46.5934821 ], + [ 6.6811603999999996, 46.5933194 ], + [ 6.6811771, 46.5930942 ], + [ 6.68092, 46.5927598 ], + [ 6.6808932, 46.5926242 ], + [ 6.6808997, 46.5925898 ], + [ 6.6808079, 46.5924036 ], + [ 6.6810431, 46.592174299999996 ], + [ 6.6810938, 46.5920874 ], + [ 6.6811816, 46.5920017 ], + [ 6.6812017, 46.5918902 ], + [ 6.6812848, 46.5917251 ], + [ 6.6813722, 46.5916667 ], + [ 6.6811793, 46.5915951 ], + [ 6.6811582, 46.5913187 ], + [ 6.6815061, 46.5911941 ], + [ 6.682102, 46.5912602 ], + [ 6.6828899, 46.5913468 ], + [ 6.6831789, 46.5912839 ], + [ 6.6837356, 46.5911893 ], + [ 6.6843338, 46.5909681 ], + [ 6.6849102, 46.5906706 ], + [ 6.6849968, 46.5906184 ], + [ 6.6859026, 46.5901719 ], + [ 6.6866295000000004, 46.5892209 ], + [ 6.6876628, 46.588171 ], + [ 6.6886751, 46.5878866 ], + [ 6.689245, 46.5873106 ], + [ 6.6904585, 46.5865879 ], + [ 6.6909671, 46.586274 ], + [ 6.6915204, 46.5859325 ], + [ 6.6922654, 46.5854774 ], + [ 6.6928964, 46.5850783 ], + [ 6.6933887, 46.5847963 ], + [ 6.6943312, 46.5842295 ], + [ 6.6950434, 46.5837939 ], + [ 6.6953731, 46.5835819 ], + [ 6.6962205, 46.5830765 ], + [ 6.6970436, 46.5825708 ], + [ 6.6971412, 46.5825112 ], + [ 6.6972362, 46.5824532 ], + [ 6.6978137, 46.5820926 ], + [ 6.6983551, 46.5817704 ], + [ 6.6991271999999995, 46.5812968 ], + [ 6.6994905, 46.5810929 ], + [ 6.700035, 46.580738 ], + [ 6.7004688, 46.5807551 ], + [ 6.7015058, 46.5808145 ], + [ 6.7028261, 46.580886 ], + [ 6.7031887999999995, 46.5809197 ], + [ 6.7032484, 46.5803541 ], + [ 6.7034541, 46.5800168 ], + [ 6.7038096, 46.5796729 ], + [ 6.7041079, 46.5793423 ], + [ 6.7039606, 46.579334 ], + [ 6.7031062, 46.5795763 ], + [ 6.7015055, 46.580033 ], + [ 6.7009685, 46.5802127 ], + [ 6.7007116, 46.5798495 ], + [ 6.7006917, 46.5798335 ], + [ 6.7005426, 46.5797432 ], + [ 6.7003359, 46.5794808 ], + [ 6.7002336, 46.5792997 ], + [ 6.6997967, 46.577785 ], + [ 6.6997911, 46.577769 ], + [ 6.6993821, 46.5765883 ], + [ 6.6992583, 46.5763532 ], + [ 6.6991268, 46.5761613 ], + [ 6.6989707, 46.5759337 ], + [ 6.6999331, 46.5757247 ], + [ 6.7001758, 46.5758245 ], + [ 6.7012435, 46.5761511 ], + [ 6.7014523, 46.5768048 ], + [ 6.7015898, 46.5771733 ], + [ 6.7016409, 46.5772485 ], + [ 6.7017213, 46.5773127 ], + [ 6.7019015, 46.577368 ], + [ 6.7028017, 46.5774718 ], + [ 6.7037793, 46.5776053 ], + [ 6.7042927, 46.5775974 ], + [ 6.7040311, 46.577038 ], + [ 6.7038511, 46.5767082 ], + [ 6.7033452, 46.5758226 ], + [ 6.7028463, 46.5750845 ], + [ 6.7024735, 46.574533 ], + [ 6.7016966, 46.5734001 ], + [ 6.7015542, 46.5733484 ], + [ 6.7013869, 46.5732875 ], + [ 6.7012432, 46.5733831 ], + [ 6.7012239000000005, 46.5733984 ], + [ 6.7012035999999995, 46.573413 ], + [ 6.7011824, 46.5734271 ], + [ 6.7011603, 46.5734405 ], + [ 6.7011374, 46.5734533 ], + [ 6.701115, 46.573465 ], + [ 6.7010923, 46.5734765 ], + [ 6.7010693, 46.5734876 ], + [ 6.701046, 46.5734985 ], + [ 6.7010224, 46.5735091 ], + [ 6.7009985, 46.5735194 ], + [ 6.7009746, 46.5735296 ], + [ 6.7009508, 46.5735399 ], + [ 6.7009272, 46.5735505 ], + [ 6.7009037, 46.5735611 ], + [ 6.7008803, 46.573572 ], + [ 6.7008571, 46.573583 ], + [ 6.7008431, 46.5735897 ], + [ 6.7008292, 46.5735965 ], + [ 6.7008153, 46.5736034 ], + [ 6.7008015, 46.5736104 ], + [ 6.7007878, 46.5736174 ], + [ 6.7007741, 46.5736244 ], + [ 6.7007605, 46.5736315 ], + [ 6.7007469, 46.5736386 ], + [ 6.7007332, 46.5736457 ], + [ 6.7007195, 46.5736527 ], + [ 6.7007059, 46.5736598 ], + [ 6.7006922, 46.5736668 ], + [ 6.7006841999999995, 46.573671 ], + [ 6.7006763, 46.5736752 ], + [ 6.7006686, 46.5736795 ], + [ 6.7006609, 46.573684 ], + [ 6.7006533, 46.5736885 ], + [ 6.7006459, 46.5736931 ], + [ 6.7006383, 46.5736976 ], + [ 6.7006305, 46.5737019 ], + [ 6.7006224, 46.5737059 ], + [ 6.700614, 46.5737097 ], + [ 6.7006054, 46.5737132 ], + [ 6.7005966, 46.5737165 ], + [ 6.70058, 46.5737221 ], + [ 6.7005631999999995, 46.5737275 ], + [ 6.7005462, 46.5737326 ], + [ 6.7005289999999995, 46.5737375 ], + [ 6.7005117, 46.573742 ], + [ 6.7004942, 46.5737463 ], + [ 6.7004767, 46.5737505 ], + [ 6.7004592, 46.5737548 ], + [ 6.7004418, 46.5737591 ], + [ 6.7004244, 46.5737636 ], + [ 6.7004071, 46.5737681 ], + [ 6.7003898, 46.5737726 ], + [ 6.700358, 46.573781 ], + [ 6.7003262, 46.5737894 ], + [ 6.7002944, 46.5737976 ], + [ 6.7002626, 46.5738058 ], + [ 6.7002308, 46.573814 ], + [ 6.7001989, 46.5738221 ], + [ 6.6998802, 46.573931 ], + [ 6.6997546, 46.5739687 ], + [ 6.6997501, 46.5739662 ], + [ 6.6996382, 46.5739024 ], + [ 6.6994605, 46.5737681 ], + [ 6.6993165, 46.5736825 ], + [ 6.6991701, 46.5736476 ], + [ 6.6990111, 46.5736388 ], + [ 6.6988126999999995, 46.5735896 ], + [ 6.6986318, 46.5734898 ], + [ 6.6984493, 46.5733306 ], + [ 6.6987065999999995, 46.5732478 ], + [ 6.6988804, 46.5731604 ], + [ 6.6990813, 46.5730912 ], + [ 6.6991592, 46.5730681 ], + [ 6.6992353, 46.5730424 ], + [ 6.6993094, 46.573014 ], + [ 6.6993164, 46.5730109 ], + [ 6.6993229, 46.5730074 ], + [ 6.6993289, 46.5730034 ], + [ 6.6993344, 46.5729991 ], + [ 6.6993576, 46.5729795 ], + [ 6.6993659999999995, 46.5729724 ], + [ 6.6993741, 46.5729653 ], + [ 6.6993821, 46.5729581 ], + [ 6.6993896, 46.5729508 ], + [ 6.6993967, 46.5729434 ], + [ 6.6994032, 46.5729357 ], + [ 6.6994139, 46.5729222 ], + [ 6.6994241, 46.5729086 ], + [ 6.6994337999999996, 46.5728948 ], + [ 6.6994432, 46.5728807 ], + [ 6.6994522, 46.5728666 ], + [ 6.699461, 46.5728524 ], + [ 6.6994693, 46.5728386 ], + [ 6.6994773, 46.5728247 ], + [ 6.6994851, 46.5728107 ], + [ 6.6994923, 46.5727968 ], + [ 6.6994988, 46.5727827 ], + [ 6.6995045, 46.5727685 ], + [ 6.69951, 46.5727533 ], + [ 6.6995149, 46.5727381 ], + [ 6.6995193, 46.5727228 ], + [ 6.699523, 46.5727075 ], + [ 6.6995259, 46.5726921 ], + [ 6.699528, 46.5726766 ], + [ 6.699529, 46.572664 ], + [ 6.6995291, 46.5726513 ], + [ 6.6995284999999996, 46.5726387 ], + [ 6.6995272, 46.572626 ], + [ 6.6995254, 46.5726132 ], + [ 6.699523, 46.5726005 ], + [ 6.6995211, 46.5725927 ], + [ 6.6995185, 46.5725849 ], + [ 6.6995152000000004, 46.5725773 ], + [ 6.6995115, 46.5725695 ], + [ 6.6995074, 46.5725617 ], + [ 6.6995032, 46.572554 ], + [ 6.6995026, 46.5725531 ], + [ 6.699502, 46.5725523 ], + [ 6.6995012, 46.5725515 ], + [ 6.6995003, 46.5725508 ], + [ 6.6994995, 46.5725502 ], + [ 6.6994985, 46.5725496 ], + [ 6.6994975, 46.5725492 ], + [ 6.6994963, 46.5725487 ], + [ 6.6994662, 46.5725388 ], + [ 6.6994359, 46.572529 ], + [ 6.6994056, 46.5725193 ], + [ 6.6993752, 46.5725099 ], + [ 6.6993445, 46.5725011 ], + [ 6.6993134, 46.5724929 ], + [ 6.6992774, 46.5724841 ], + [ 6.699241, 46.5724758 ], + [ 6.6992045000000005, 46.572468 ], + [ 6.6991676, 46.5724606 ], + [ 6.6991306999999995, 46.5724535 ], + [ 6.6990936, 46.5724465 ], + [ 6.6990692, 46.5724424 ], + [ 6.6990447, 46.5724388 ], + [ 6.6990199, 46.5724359 ], + [ 6.6989944, 46.5724329 ], + [ 6.6989691, 46.5724293 ], + [ 6.698944, 46.5724249 ], + [ 6.6989341, 46.5724228 ], + [ 6.6989243, 46.5724204 ], + [ 6.6989148, 46.5724175 ], + [ 6.6989057, 46.5724144 ], + [ 6.6988967, 46.5724111 ], + [ 6.6988879, 46.5724077 ], + [ 6.6988665, 46.5723992 ], + [ 6.6988453, 46.5723904 ], + [ 6.6988242, 46.5723815 ], + [ 6.6988033, 46.5723724 ], + [ 6.6987825999999995, 46.572363 ], + [ 6.6987621, 46.5723533 ], + [ 6.6987554, 46.5723499 ], + [ 6.6987489, 46.5723462 ], + [ 6.6987428, 46.5723422 ], + [ 6.6987372, 46.5723383 ], + [ 6.6987316, 46.5723342 ], + [ 6.6987263, 46.57233 ], + [ 6.698705, 46.5723128 ], + [ 6.6986840999999995, 46.5722953 ], + [ 6.6986633, 46.5722777 ], + [ 6.6986428, 46.5722601 ], + [ 6.6986223, 46.5722425 ], + [ 6.6986018, 46.5722249 ], + [ 6.6985955, 46.5722193 ], + [ 6.6985895, 46.5722135 ], + [ 6.6985837, 46.5722077 ], + [ 6.6985746, 46.5721956 ], + [ 6.6988579999999995, 46.5720556 ], + [ 6.6992224, 46.5718828 ], + [ 6.6996134, 46.5716999 ], + [ 6.6997433, 46.5716295 ], + [ 6.6998674, 46.5715683 ], + [ 6.6994289, 46.5706531 ], + [ 6.6994354, 46.5706471 ], + [ 6.6992782, 46.5705661 ], + [ 6.6987791, 46.5703084 ], + [ 6.698353, 46.5699622 ], + [ 6.6978643, 46.5698548 ], + [ 6.6966736000000004, 46.56984 ], + [ 6.6964326, 46.5698589 ], + [ 6.6962135, 46.5699044 ], + [ 6.6961013, 46.5699553 ], + [ 6.6959143999999995, 46.5701826 ], + [ 6.6958793, 46.5702155 ], + [ 6.6958242, 46.5702634 ], + [ 6.6957725, 46.5703053 ], + [ 6.695707, 46.5703577 ], + [ 6.6956741, 46.5703839 ], + [ 6.6956411, 46.57041 ], + [ 6.695608, 46.570436 ], + [ 6.6955141000000005, 46.5705093 ], + [ 6.6954196, 46.5705821 ], + [ 6.6955279999999995, 46.5706787 ], + [ 6.695635, 46.570776 ], + [ 6.6956879, 46.5708249 ], + [ 6.6957405, 46.570874 ], + [ 6.6957908, 46.5709209 ], + [ 6.6958109, 46.5709396 ], + [ 6.6958203, 46.5709493 ], + [ 6.6958294, 46.5709591 ], + [ 6.6958379, 46.5709692 ], + [ 6.6958459999999995, 46.5709795 ], + [ 6.6958535999999995, 46.5709899 ], + [ 6.6958685, 46.5710128 ], + [ 6.695882, 46.571036 ], + [ 6.6958939, 46.5710597 ], + [ 6.6959042, 46.5710838 ], + [ 6.6959129, 46.571108100000004 ], + [ 6.6959201, 46.5711327 ], + [ 6.6960168, 46.5713877 ], + [ 6.696127, 46.5716595 ], + [ 6.6962673, 46.5720878 ], + [ 6.6964024, 46.5724592 ], + [ 6.6964811, 46.572739 ], + [ 6.6965409000000005, 46.5728616 ], + [ 6.6966868, 46.5729872 ], + [ 6.6967128, 46.5730033 ], + [ 6.6967639, 46.5730348 ], + [ 6.6967921, 46.5730522 ], + [ 6.696912, 46.5731262 ], + [ 6.6970272, 46.5732173 ], + [ 6.6970758, 46.5732708 ], + [ 6.6971085, 46.573305500000004 ], + [ 6.6971807, 46.5734112 ], + [ 6.6972297, 46.5735534 ], + [ 6.6972348, 46.5736384 ], + [ 6.6972187, 46.5737139 ], + [ 6.6971916, 46.5737878 ], + [ 6.6971537, 46.5738595 ], + [ 6.697115, 46.573916 ], + [ 6.6970696, 46.5739701 ], + [ 6.6970179, 46.5740214 ], + [ 6.6969601, 46.5740695 ], + [ 6.6969206, 46.5740845 ], + [ 6.6958198, 46.5734343 ], + [ 6.6952447, 46.5730913 ], + [ 6.6951517, 46.5730359 ], + [ 6.6951327, 46.5730244 ], + [ 6.6951125000000005, 46.5730139 ], + [ 6.6950912, 46.5730047 ], + [ 6.6950688, 46.5729966 ], + [ 6.6950456, 46.5729897 ], + [ 6.6950217, 46.5729841 ], + [ 6.6949973, 46.5729799 ], + [ 6.6949724, 46.5729769 ], + [ 6.6949628, 46.5729767 ], + [ 6.6949438, 46.572978 ], + [ 6.6949346, 46.5729795 ], + [ 6.6949255, 46.5729817 ], + [ 6.6949168, 46.5729844 ], + [ 6.6949084, 46.5729876 ], + [ 6.6949006, 46.5729913 ], + [ 6.6948932, 46.5729955 ], + [ 6.6948803, 46.5730053 ], + [ 6.6948749, 46.5730107 ], + [ 6.6948702, 46.5730165 ], + [ 6.6948663, 46.5730225 ], + [ 6.6948633, 46.5730287 ], + [ 6.6948609999999995, 46.5730351 ], + [ 6.6948597, 46.5730417 ], + [ 6.6948591, 46.5730482 ], + [ 6.6948538, 46.573088 ], + [ 6.6948315, 46.5732533 ], + [ 6.6948016, 46.5733331 ], + [ 6.6945062, 46.5733956 ], + [ 6.6942728, 46.573445 ], + [ 6.6939034, 46.5735389 ], + [ 6.6936889, 46.5736188 ], + [ 6.6935828, 46.573643 ], + [ 6.69351, 46.5736865 ], + [ 6.6932576, 46.5740361 ], + [ 6.6929394, 46.57433 ], + [ 6.6928411, 46.574389 ], + [ 6.6927184, 46.5744288 ], + [ 6.6925891, 46.5744625 ], + [ 6.6925045, 46.5744774 ], + [ 6.6924062, 46.5744886 ], + [ 6.692333, 46.5744903 ], + [ 6.6922314, 46.574479 ], + [ 6.6921069, 46.5744269 ], + [ 6.6919064, 46.5743251 ], + [ 6.6917025, 46.5741994 ], + [ 6.6914859, 46.5740728 ], + [ 6.6912873, 46.5739252 ], + [ 6.6912259, 46.5738645 ], + [ 6.6911922, 46.5738134 ], + [ 6.6911226, 46.5735757 ], + [ 6.6910527, 46.5733278 ], + [ 6.6910255, 46.5732313 ], + [ 6.6909758, 46.5730547 ], + [ 6.6909157, 46.5728415 ], + [ 6.6908750999999995, 46.5726398 ], + [ 6.690875, 46.5726391 ], + [ 6.6902155, 46.5727036 ], + [ 6.6901454000000005, 46.5731153 ], + [ 6.6903055, 46.5735207 ], + [ 6.6903006, 46.5738764 ], + [ 6.6895509, 46.57403 ], + [ 6.6893917, 46.5740143 ], + [ 6.6893291999999995, 46.5741627 ], + [ 6.6893055, 46.5744011 ], + [ 6.6893577, 46.5744749 ], + [ 6.6894772, 46.5744757 ], + [ 6.6895133, 46.5748455 ], + [ 6.6897752, 46.5752682 ], + [ 6.689869, 46.5752976 ], + [ 6.6900307, 46.5754684 ], + [ 6.6900287, 46.575612 ], + [ 6.6900047, 46.5757763 ], + [ 6.6902572, 46.576245 ], + [ 6.6894712, 46.5763447 ], + [ 6.6895778, 46.5764412 ], + [ 6.6897378, 46.5766153 ], + [ 6.6898195, 46.5767542 ], + [ 6.6899736, 46.57728 ], + [ 6.6892999, 46.5772184 ], + [ 6.6887691, 46.577203 ], + [ 6.6886503, 46.5770985 ], + [ 6.6879183, 46.5760034 ], + [ 6.6875941999999995, 46.5754241 ], + [ 6.6874377, 46.5750834 ], + [ 6.6871254, 46.5745717 ], + [ 6.6863825, 46.5746027 ], + [ 6.6863313, 46.5745659 ], + [ 6.685861, 46.5742689 ], + [ 6.6857944, 46.5742458 ], + [ 6.6857061, 46.5741975 ], + [ 6.6854516, 46.5740242 ], + [ 6.6853317, 46.5739579 ], + [ 6.6852161, 46.5739146 ], + [ 6.6850515999999995, 46.5738755 ], + [ 6.6848585, 46.5738435 ], + [ 6.6847103, 46.5738083 ], + [ 6.6845559, 46.5737341 ], + [ 6.6844659, 46.5736841 ], + [ 6.6843622, 46.5736138 ], + [ 6.6841779, 46.5734973 ], + [ 6.6840536, 46.5734176 ], + [ 6.6839387, 46.5733645 ], + [ 6.6838391, 46.5733417 ], + [ 6.6837219999999995, 46.5733308 ], + [ 6.683671, 46.5733256 ], + [ 6.6835012, 46.5733126 ], + [ 6.6834247, 46.5733149 ], + [ 6.6833718, 46.5733385 ], + [ 6.6833522, 46.5733639 ], + [ 6.6835623, 46.5736369 ], + [ 6.6837476, 46.5739046 ], + [ 6.6850606, 46.5759676 ], + [ 6.6849994, 46.5760072 ], + [ 6.684972, 46.5760044 ], + [ 6.6848969, 46.5760648 ], + [ 6.6848032, 46.5761176 ], + [ 6.6842523, 46.5762784 ], + [ 6.683705, 46.5764147 ], + [ 6.6834781, 46.5765085 ], + [ 6.683333, 46.5766087 ], + [ 6.6832327, 46.5767295 ], + [ 6.6832043, 46.5768503 ], + [ 6.6832353, 46.5769824 ], + [ 6.6833, 46.5770987 ], + [ 6.6833645, 46.5772957 ], + [ 6.6833782, 46.57747 ], + [ 6.683378, 46.5776788 ], + [ 6.6833756, 46.5777146 ], + [ 6.6833165999999995, 46.5777521 ], + [ 6.6808105, 46.5793434 ], + [ 6.6807583, 46.5794122 ], + [ 6.680621, 46.5793157 ], + [ 6.6805197, 46.5792628 ], + [ 6.6804172, 46.5792194 ], + [ 6.6802861, 46.5791566 ], + [ 6.6802081, 46.579087 ], + [ 6.6800656, 46.5788606 ], + [ 6.6800055, 46.5787198 ], + [ 6.6799312, 46.5786025 ], + [ 6.6798215, 46.5784887 ], + [ 6.6797301000000004, 46.5783806 ], + [ 6.6796918, 46.5782576 ], + [ 6.6796578, 46.5779553 ], + [ 6.6796018, 46.5777523 ], + [ 6.6795656999999995, 46.5776512 ], + [ 6.6792888, 46.5772532 ], + [ 6.6792331, 46.5772129 ], + [ 6.6790559, 46.5771179 ], + [ 6.6789176, 46.5770387 ], + [ 6.6788133, 46.5769534 ], + [ 6.6787582, 46.5768922 ], + [ 6.6786528, 46.5767144 ], + [ 6.6784324999999995, 46.5763611 ], + [ 6.6782823, 46.5761799 ], + [ 6.6777863, 46.5757549 ], + [ 6.6776361, 46.5756192 ], + [ 6.6774343, 46.5754027 ], + [ 6.6774287999999995, 46.5754052 ], + [ 6.6773437, 46.5753147 ], + [ 6.6769058999999995, 46.5747613 ], + [ 6.6768131, 46.5746247 ], + [ 6.6767723, 46.5745146 ], + [ 6.6767578, 46.5744235 ], + [ 6.6767661, 46.5743518 ], + [ 6.6753288, 46.5744293 ], + [ 6.67542, 46.574511 ], + [ 6.6758555, 46.5749561 ], + [ 6.6759129999999995, 46.5750209 ], + [ 6.6759391, 46.5750543 ], + [ 6.6759635, 46.5750884 ], + [ 6.6760067, 46.5751583 ], + [ 6.6762593, 46.5756933 ], + [ 6.6763679, 46.5758539 ], + [ 6.6764305, 46.5759632 ], + [ 6.6764487, 46.5760523 ], + [ 6.6764527000000005, 46.5762274 ], + [ 6.6763915, 46.5763944 ], + [ 6.676231, 46.5766879 ], + [ 6.6762657999999995, 46.5771427 ], + [ 6.6766602, 46.5782432 ], + [ 6.6767756, 46.5783513 ], + [ 6.6766675, 46.5784437 ], + [ 6.6766181, 46.5784403 ], + [ 6.6765994, 46.578524 ], + [ 6.6749106, 46.5785476 ], + [ 6.6740695, 46.5785064 ], + [ 6.6731748, 46.5785969 ], + [ 6.6731169999999995, 46.5787587 ], + [ 6.6736149000000005, 46.5788502 ], + [ 6.6737166, 46.5788721 ], + [ 6.6738189, 46.5788994 ], + [ 6.6739185, 46.5789313 ], + [ 6.6740147, 46.5789676 ], + [ 6.6741082, 46.5790086 ], + [ 6.6742072, 46.5790595 ], + [ 6.6743515, 46.5791617 ], + [ 6.6744772999999995, 46.5792645 ], + [ 6.6745897, 46.5793703 ], + [ 6.6754501, 46.5802482 ], + [ 6.6754616, 46.5802606 ], + [ 6.6758079, 46.5806116 ], + [ 6.6760712, 46.5809265 ], + [ 6.6762305, 46.58115 ], + [ 6.6767749, 46.5819655 ], + [ 6.6773582000000005, 46.5828348 ], + [ 6.6768058, 46.5829954 ], + [ 6.6762282, 46.582136 ], + [ 6.6756874, 46.5813214 ], + [ 6.6756161, 46.581217 ], + [ 6.6755426, 46.5811176 ], + [ 6.6753025, 46.5808331 ], + [ 6.6751563, 46.5806873 ], + [ 6.6750512, 46.5805769 ], + [ 6.6742107, 46.5797261 ], + [ 6.6735602, 46.5799526 ], + [ 6.6726693, 46.5791782 ], + [ 6.6727286, 46.5791188 ], + [ 6.672617, 46.5790994 ], + [ 6.6721408, 46.5790155 ], + [ 6.6717303999999995, 46.5789414 ], + [ 6.6715482999999995, 46.5788784 ], + [ 6.6715146, 46.5788555 ], + [ 6.6714747, 46.5788362 ], + [ 6.6713864, 46.5787876 ], + [ 6.6713826, 46.5787855 ], + [ 6.6713751, 46.5787817 ], + [ 6.6713676, 46.5787779 ], + [ 6.671361, 46.5787748 ], + [ 6.6713489, 46.5787689 ], + [ 6.6713344, 46.5787612 ], + [ 6.6713204, 46.5787531 ], + [ 6.6713069, 46.5787447 ], + [ 6.6712938, 46.5787359 ], + [ 6.6712821, 46.5787272 ], + [ 6.6712542, 46.5787055 ], + [ 6.6712278, 46.5786838 ], + [ 6.6712022, 46.5786617 ], + [ 6.6711773, 46.5786391 ], + [ 6.6711532, 46.5786162 ], + [ 6.671114, 46.5785769 ], + [ 6.6710408999999995, 46.5784447 ], + [ 6.6710287, 46.5784069 ], + [ 6.6710212, 46.5783783 ], + [ 6.6710153, 46.5783495 ], + [ 6.6710109, 46.5783189 ], + [ 6.6710076, 46.5782652 ], + [ 6.6710083000000004, 46.5781859 ], + [ 6.6710095, 46.578147 ], + [ 6.671016, 46.5780333 ], + [ 6.6710282, 46.5778154 ], + [ 6.6710308, 46.5777101 ], + [ 6.6710306, 46.5776038 ], + [ 6.6710286, 46.577497 ], + [ 6.6710278, 46.5774681 ], + [ 6.6710256999999995, 46.577442 ], + [ 6.6710222, 46.577416 ], + [ 6.6710145, 46.5773877 ], + [ 6.671011, 46.5773643 ], + [ 6.6710031, 46.577338 ], + [ 6.670994, 46.5773115 ], + [ 6.6709838, 46.577284 ], + [ 6.6709731, 46.5772567 ], + [ 6.6709610999999995, 46.577228 ], + [ 6.6709368, 46.5771752 ], + [ 6.6708917, 46.577084 ], + [ 6.6708416, 46.5769897 ], + [ 6.6707902, 46.5768895 ], + [ 6.6707668, 46.5768354 ], + [ 6.6707286, 46.5767248 ], + [ 6.6706752, 46.5764509 ], + [ 6.6706483, 46.576318 ], + [ 6.6706256, 46.5762258 ], + [ 6.6705726, 46.5760665 ], + [ 6.6705143, 46.5759029 ], + [ 6.6704292, 46.5756643 ], + [ 6.6703455, 46.5754229 ], + [ 6.6703138, 46.575318 ], + [ 6.6702893, 46.5752146 ], + [ 6.6702812, 46.5751798 ], + [ 6.6702661, 46.5751099 ], + [ 6.6702441, 46.5749952 ], + [ 6.6702443, 46.5748611 ], + [ 6.6702463, 46.5748169 ], + [ 6.6702509, 46.574772 ], + [ 6.6702582, 46.5747273 ], + [ 6.6702685, 46.5746801 ], + [ 6.6702732000000005, 46.5746658 ], + [ 6.6702718999999995, 46.5746659 ], + [ 6.6702267, 46.5746854 ], + [ 6.6700973999999995, 46.5747525 ], + [ 6.6700386, 46.5747857 ], + [ 6.6699779, 46.5748231 ], + [ 6.6698468, 46.5749042 ], + [ 6.6697216, 46.574985 ], + [ 6.6695127, 46.5751304 ], + [ 6.6692938999999996, 46.5752809 ], + [ 6.6691849, 46.5753482 ], + [ 6.6691472, 46.5753709 ], + [ 6.6691033, 46.5753946 ], + [ 6.6690576, 46.5754167 ], + [ 6.6690102, 46.5754369 ], + [ 6.6689613, 46.5754554 ], + [ 6.6689069, 46.5754733 ], + [ 6.6688843, 46.5754792 ], + [ 6.6688826, 46.5754797 ], + [ 6.6688796, 46.575481 ], + [ 6.6688769, 46.5754826 ], + [ 6.6688758, 46.5754836 ], + [ 6.6688391, 46.5755562 ], + [ 6.6687989, 46.5760839 ], + [ 6.6687359, 46.576513 ], + [ 6.6686854, 46.5768174 ], + [ 6.6686025, 46.5772931 ], + [ 6.6685733, 46.5774298 ], + [ 6.6685175999999995, 46.5776197 ], + [ 6.6683954, 46.5778607 ], + [ 6.6681927, 46.5782003 ], + [ 6.6678356, 46.578161 ], + [ 6.6677173, 46.5780346 ], + [ 6.6672913, 46.577981199999996 ], + [ 6.6673417, 46.5777612 ], + [ 6.6670316, 46.5777573 ], + [ 6.6666077, 46.5778077 ], + [ 6.6663742, 46.5778858 ], + [ 6.665982, 46.5779257 ], + [ 6.6656805, 46.5783019 ], + [ 6.6643621, 46.5782217 ], + [ 6.664256, 46.578011 ], + [ 6.6642132, 46.577867499999996 ], + [ 6.6641768, 46.5776628 ], + [ 6.6641118, 46.5772794 ], + [ 6.6639926, 46.5765572 ], + [ 6.6641851, 46.5765319 ], + [ 6.6641893, 46.5764181 ], + [ 6.6640634, 46.5759889 ], + [ 6.6638968, 46.5757641 ], + [ 6.6638605, 46.5757152 ], + [ 6.6638339, 46.5756792 ], + [ 6.6638064, 46.5756421 ], + [ 6.6637279, 46.5755362 ], + [ 6.6636367, 46.5754131 ], + [ 6.6636058, 46.5753715 ], + [ 6.6635802, 46.5753372 ], + [ 6.6635229, 46.5752734 ], + [ 6.6634713, 46.5752192 ], + [ 6.6634307, 46.5751765 ], + [ 6.6633735, 46.5751705 ], + [ 6.6631968, 46.5751607 ], + [ 6.6630259, 46.5751457 ], + [ 6.6628461, 46.5751434 ], + [ 6.6627329, 46.5751613 ], + [ 6.6627305, 46.5751522 ], + [ 6.6620732, 46.5752592 ], + [ 6.6616733, 46.5753143 ], + [ 6.6614099, 46.5753191 ], + [ 6.6612296, 46.5752994 ], + [ 6.6611481999999995, 46.5753157 ], + [ 6.6608146999999995, 46.575212 ], + [ 6.6607058, 46.5751643 ], + [ 6.6601469, 46.5750004 ], + [ 6.6599995, 46.5749428 ], + [ 6.6594589, 46.5749959 ], + [ 6.658761, 46.5747249 ], + [ 6.6586012, 46.5747919 ], + [ 6.6578968, 46.5750098 ], + [ 6.6576681, 46.574905 ], + [ 6.6576839, 46.5752291 ], + [ 6.6576203, 46.5753505 ], + [ 6.6574603, 46.5756564 ], + [ 6.6575109, 46.5758703 ], + [ 6.6575115, 46.5759605 ], + [ 6.6574175, 46.5762359 ], + [ 6.6573741, 46.5763708 ], + [ 6.6573261, 46.5764907 ], + [ 6.6572433, 46.5767873 ], + [ 6.6571901, 46.5769138 ], + [ 6.6574248, 46.5769985 ], + [ 6.6572569, 46.5772032 ], + [ 6.6572192999999995, 46.5772757 ], + [ 6.6571432, 46.5774178 ], + [ 6.6571133, 46.5774746 ], + [ 6.6570858, 46.5775269 ], + [ 6.6570612, 46.5775796 ], + [ 6.6570429, 46.5776267 ], + [ 6.6570396, 46.5776543 ], + [ 6.6570636, 46.5776679 ], + [ 6.6569752, 46.5778921 ], + [ 6.6569668, 46.5780026 ], + [ 6.6569081, 46.5780582 ], + [ 6.6569052, 46.5780805 ], + [ 6.6568936, 46.5781245 ], + [ 6.6569075, 46.5782003 ], + [ 6.6568859, 46.578235 ], + [ 6.6568848, 46.5782721 ], + [ 6.656889, 46.5782768 ], + [ 6.6568905, 46.5783713 ], + [ 6.6569284, 46.5784172 ], + [ 6.6568761, 46.5785376 ], + [ 6.6568799, 46.5785912 ], + [ 6.6568681, 46.5786244 ], + [ 6.6568814, 46.5787069 ], + [ 6.6568418, 46.578757 ], + [ 6.6568262, 46.5788682 ], + [ 6.6567979, 46.5789039 ], + [ 6.6567984, 46.5789794 ], + [ 6.6568109, 46.5790112 ], + [ 6.6567372, 46.5791279 ], + [ 6.6567196, 46.5792169 ], + [ 6.6565787, 46.5793375 ], + [ 6.656525, 46.5794277 ], + [ 6.6565085, 46.579486 ], + [ 6.6564782000000005, 46.579557199999996 ], + [ 6.6564763, 46.5795785 ], + [ 6.656483, 46.579632 ], + [ 6.6564251, 46.5798175 ], + [ 6.6563669, 46.579854 ], + [ 6.6563445, 46.5799008 ], + [ 6.656224, 46.580014 ], + [ 6.6562124, 46.5800257 ], + [ 6.6561874, 46.5800706 ], + [ 6.656108, 46.5801687 ], + [ 6.6559854, 46.5802448 ], + [ 6.6559646, 46.5802676 ], + [ 6.6559696, 46.580288 ], + [ 6.6559674, 46.5802959 ], + [ 6.6559726999999995, 46.5803061 ], + [ 6.6560166, 46.5805015 ], + [ 6.6560054, 46.5805248 ], + [ 6.6560331999999995, 46.5806037 ], + [ 6.6559839, 46.5806951 ], + [ 6.6559943, 46.5807063 ], + [ 6.6559635, 46.5807329 ], + [ 6.6558547, 46.5809349 ], + [ 6.6558471, 46.5809362 ], + [ 6.655849, 46.581004 ], + [ 6.6557513, 46.5810466 ], + [ 6.6556703, 46.5811524 ], + [ 6.6554357, 46.5812909 ], + [ 6.6553381, 46.5813306 ], + [ 6.6551053, 46.5814217 ], + [ 6.6551002, 46.5814312 ], + [ 6.6550861, 46.5815253 ], + [ 6.6550044, 46.581695 ], + [ 6.6549618, 46.581822700000004 ], + [ 6.6549178, 46.5818802 ], + [ 6.6548713, 46.5820446 ], + [ 6.6546433, 46.5822107 ], + [ 6.65459, 46.5822403 ], + [ 6.654536, 46.582273 ], + [ 6.6545116, 46.5822902 ], + [ 6.6544545, 46.5823501 ], + [ 6.6543377, 46.5824438 ], + [ 6.6543298, 46.5824961 ], + [ 6.6542867, 46.5826317 ], + [ 6.6543536, 46.5827736 ], + [ 6.6542061, 46.5829044 ], + [ 6.6542503, 46.5830493 ], + [ 6.6542624, 46.5830902 ], + [ 6.6542715999999995, 46.5831227 ], + [ 6.6543054, 46.5832311 ], + [ 6.6543165, 46.58328 ], + [ 6.654329, 46.5833159 ], + [ 6.6548576, 46.5832379 ], + [ 6.655008, 46.5841788 ], + [ 6.6551621, 46.5846392 ], + [ 6.6553207, 46.5849983 ], + [ 6.6552879, 46.5854367 ], + [ 6.6553269, 46.5858994 ], + [ 6.6555056, 46.5861894 ], + [ 6.6557416, 46.5865777 ], + [ 6.6558214, 46.5867366 ], + [ 6.6559287, 46.5869392 ], + [ 6.6560626, 46.5871392 ], + [ 6.6560786, 46.587234 ], + [ 6.6563883, 46.5872132 ], + [ 6.6569476, 46.5869942 ], + [ 6.6572485, 46.5868541 ], + [ 6.657317, 46.5868021 ], + [ 6.6574743, 46.5864704 ], + [ 6.6580058, 46.5862452 ], + [ 6.658936, 46.5862818 ], + [ 6.6594523, 46.5863512 ], + [ 6.6598661, 46.5863703 ], + [ 6.6605239, 46.5863928 ], + [ 6.6614023, 46.5865055 ], + [ 6.6614748, 46.5869163 ], + [ 6.6615251, 46.586975 ], + [ 6.6615424999999995, 46.5869949 ], + [ 6.6615606, 46.5870146 ], + [ 6.6615792, 46.587034 ], + [ 6.6615983, 46.5870531 ], + [ 6.661618, 46.587072 ], + [ 6.6616382, 46.5870906 ], + [ 6.6617825, 46.5873471 ], + [ 6.6618072, 46.5873473 ], + [ 6.6619247, 46.5873499 ], + [ 6.6620009, 46.5873526 ], + [ 6.6620764999999995, 46.587356 ], + [ 6.662152, 46.5873601 ], + [ 6.6622274, 46.5873649 ], + [ 6.6623025, 46.5873705 ], + [ 6.6623681999999995, 46.5873759 ], + [ 6.662434, 46.5873821 ], + [ 6.6624998, 46.5873889 ], + [ 6.6625653, 46.5873965 ], + [ 6.6626307, 46.5874048 ], + [ 6.662703, 46.5874147 ], + [ 6.6631488, 46.5874991 ], + [ 6.6631947, 46.5875161 ], + [ 6.6632159, 46.5875242 ], + [ 6.6632369, 46.5875324 ], + [ 6.6632578, 46.5875407 ], + [ 6.6632786, 46.5875493 ], + [ 6.6632993, 46.587558 ], + [ 6.6633513, 46.5875808 ], + [ 6.6634014, 46.5876035 ], + [ 6.6634526, 46.5876274 ], + [ 6.6635128, 46.587657 ], + [ 6.6635663, 46.5876827 ], + [ 6.6636553, 46.5877217 ], + [ 6.6636816, 46.5877327 ], + [ 6.6637086, 46.5877435 ], + [ 6.6637359, 46.5877541 ], + [ 6.6637633, 46.5877642 ], + [ 6.6637911, 46.5877741 ], + [ 6.6638172, 46.587783 ], + [ 6.6638421, 46.5877908 ], + [ 6.6638678, 46.5877983 ], + [ 6.6638939, 46.5878052 ], + [ 6.6639202, 46.5878116 ], + [ 6.6639468, 46.5878176 ], + [ 6.6639753, 46.5878233 ], + [ 6.6639888, 46.5878258 ], + [ 6.6640016, 46.5878281 ], + [ 6.6640145, 46.5878301 ], + [ 6.6640274, 46.587832 ], + [ 6.6640404, 46.5878337 ], + [ 6.6640494, 46.5878347 ], + [ 6.6640553, 46.5878352 ], + [ 6.6640598, 46.5878354 ], + [ 6.6640644, 46.5878353 ], + [ 6.6640689, 46.5878351 ], + [ 6.6640733999999995, 46.5878347 ], + [ 6.664075, 46.5878345 ], + [ 6.664332, 46.5877836 ], + [ 6.6643546, 46.5877389 ], + [ 6.6643798, 46.5876753 ], + [ 6.6644124, 46.5876021 ], + [ 6.6644599, 46.587512 ], + [ 6.664477, 46.5874828 ], + [ 6.6645003, 46.5874509 ], + [ 6.6645273, 46.5874205 ], + [ 6.6645578, 46.5873917 ], + [ 6.6645916, 46.5873647 ], + [ 6.6646285, 46.5873398 ], + [ 6.6646681999999995, 46.5873169 ], + [ 6.6647082, 46.5872976 ], + [ 6.6647383, 46.5872848 ], + [ 6.6647703, 46.5872731 ], + [ 6.6648033, 46.5872628 ], + [ 6.6648372, 46.5872541 ], + [ 6.6648718, 46.5872469 ], + [ 6.6649045000000005, 46.5872417 ], + [ 6.6649417, 46.587237 ], + [ 6.6649764000000005, 46.5872333 ], + [ 6.6650112, 46.5872301 ], + [ 6.6650462, 46.5872275 ], + [ 6.6651202, 46.5872239 ], + [ 6.6651673, 46.5872238 ], + [ 6.6652183, 46.5872267 ], + [ 6.6652687, 46.5872326 ], + [ 6.6653182, 46.5872414 ], + [ 6.6653665, 46.587253 ], + [ 6.6654122000000005, 46.5872672 ], + [ 6.6654615, 46.5872857 ], + [ 6.6655079, 46.5873062 ], + [ 6.6655522, 46.5873288 ], + [ 6.6655940000000005, 46.5873536 ], + [ 6.6656332, 46.5873803 ], + [ 6.6656679, 46.5874075 ], + [ 6.6658148, 46.5875352 ], + [ 6.6659988, 46.5877241 ], + [ 6.6661079, 46.5878671 ], + [ 6.66633, 46.5881333 ], + [ 6.6664999, 46.5883202 ], + [ 6.6665253, 46.588348 ], + [ 6.6665494, 46.588372 ], + [ 6.666575, 46.5883953 ], + [ 6.666602, 46.5884179 ], + [ 6.6666304, 46.5884396 ], + [ 6.666655, 46.588457 ], + [ 6.6666703, 46.5884659 ], + [ 6.6666898, 46.5884757 ], + [ 6.6667102, 46.5884846 ], + [ 6.6667314, 46.5884926 ], + [ 6.6667533, 46.5884996 ], + [ 6.6667762, 46.5885057 ], + [ 6.6668458, 46.5885207 ], + [ 6.66686, 46.5885237 ], + [ 6.6668652, 46.5885244 ], + [ 6.6668705, 46.5885249 ], + [ 6.6668759, 46.588525 ], + [ 6.6668812, 46.5885248 ], + [ 6.6668861, 46.5885243 ], + [ 6.6669181, 46.5885192 ], + [ 6.6669502, 46.5885121 ], + [ 6.6669812, 46.5885032 ], + [ 6.6670111, 46.5884925 ], + [ 6.6670396, 46.5884802 ], + [ 6.6670569, 46.5884712 ], + [ 6.6670797, 46.5884544 ], + [ 6.6670823, 46.5884516 ], + [ 6.6670894, 46.5884423 ], + [ 6.6670951, 46.5884325 ], + [ 6.6670995, 46.5884225 ], + [ 6.6671024, 46.5884122 ], + [ 6.6671048, 46.5883957 ], + [ 6.6671334, 46.5881181 ], + [ 6.6671547, 46.5880955 ], + [ 6.6671555, 46.5880832 ], + [ 6.66716, 46.5880433 ], + [ 6.6671665, 46.5880036 ], + [ 6.6671748, 46.587964 ], + [ 6.6671851, 46.5879247 ], + [ 6.6671967, 46.5878872 ], + [ 6.667207, 46.5878566 ], + [ 6.667221, 46.587823 ], + [ 6.6672378, 46.58779 ], + [ 6.6672571, 46.5877577 ], + [ 6.6672789, 46.5877262 ], + [ 6.6673038, 46.5876948 ], + [ 6.6673236, 46.5876733 ], + [ 6.6673404, 46.5876555 ], + [ 6.6673576, 46.587638 ], + [ 6.6673751, 46.5876206 ], + [ 6.6673931, 46.5876034 ], + [ 6.6674124, 46.5875855 ], + [ 6.6674346, 46.587566 ], + [ 6.6674592, 46.5875462 ], + [ 6.6674849, 46.5875272 ], + [ 6.6675138, 46.5875075 ], + [ 6.6675678, 46.5874751 ], + [ 6.6676275, 46.5874444 ], + [ 6.6676579, 46.5874298 ], + [ 6.6676971, 46.587413 ], + [ 6.6677614, 46.5873877 ], + [ 6.6678303, 46.5873645 ], + [ 6.6679013, 46.5873443 ], + [ 6.6679636, 46.5873297 ], + [ 6.6692472, 46.5870065 ], + [ 6.6702981, 46.5867381 ], + [ 6.6704379, 46.5867063 ], + [ 6.6704997, 46.5866951 ], + [ 6.6705621, 46.5866865 ], + [ 6.6706251, 46.5866806 ], + [ 6.6706886, 46.5866772 ], + [ 6.6707522, 46.5866765 ], + [ 6.6708123, 46.5866783 ], + [ 6.6708883, 46.5866823 ], + [ 6.6709622, 46.5866871 ], + [ 6.6710359, 46.5866929 ], + [ 6.6711094, 46.5866995 ], + [ 6.6711828, 46.5867071 ], + [ 6.6712568, 46.5867156 ], + [ 6.6714742000000005, 46.5867445 ], + [ 6.6715201, 46.586751 ], + [ 6.6715554, 46.5867542 ], + [ 6.6715909, 46.5867557 ], + [ 6.6716264, 46.5867554 ], + [ 6.6716619, 46.5867532 ], + [ 6.6716978000000005, 46.5867493 ], + [ 6.6717395, 46.5867427 ], + [ 6.6717825, 46.5867343 ], + [ 6.6718247999999996, 46.5867244 ], + [ 6.6718664, 46.586713 ], + [ 6.6719071, 46.5867002 ], + [ 6.6719414, 46.5866879 ], + [ 6.6724797, 46.5864463 ], + [ 6.6725956, 46.586394 ], + [ 6.6727245, 46.5863671 ], + [ 6.6728296, 46.5863513 ], + [ 6.6729361, 46.5863414 ], + [ 6.6730435, 46.5863373 ], + [ 6.673151, 46.5863392 ], + [ 6.6731591, 46.5863398 ], + [ 6.6738797, 46.5860337 ], + [ 6.6738578, 46.5853048 ], + [ 6.6738272, 46.5842869 ], + [ 6.6738588, 46.5837776 ], + [ 6.6739412, 46.5834043 ], + [ 6.6741873, 46.5834302 ], + [ 6.6742859, 46.5834138 ], + [ 6.674698, 46.5833781 ], + [ 6.6749051999999995, 46.583328 ], + [ 6.6756626, 46.583411 ], + [ 6.675623, 46.5831923 ], + [ 6.6768064, 46.5829963 ], + [ 6.677359, 46.5828359 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00048", + "country" : "CHE", + "name" : [ + { + "text" : "Lausanne : zone centrale du Parc naturel du Jorat", + "lang" : "de-CH" + }, + { + "text" : "Lausanne : zone centrale du Parc naturel du Jorat", + "lang" : "fr-CH" + }, + { + "text" : "Lausanne : zone centrale du Parc naturel du Jorat", + "lang" : "it-CH" + }, + { + "text" : "Lausanne : zone centrale du Parc naturel du Jorat", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Generaldirektion für Umwelt", + "lang" : "de-CH" + }, + { + "text" : "Direction générale de l'environnement", + "lang" : "fr-CH" + }, + { + "text" : "Direzione generale dell'Ambiente", + "lang" : "it-CH" + }, + { + "text" : "Environment Department", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.dge@vd.ch", + "phone" : "0041213164422", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.4406625, 47.1403896 ], + [ 8.4406067, 47.1403915 ], + [ 8.440551, 47.1403938 ], + [ 8.4404954, 47.1403966 ], + [ 8.4404397, 47.1403998 ], + [ 8.4403842, 47.1404035 ], + [ 8.4403287, 47.1404077 ], + [ 8.4402627, 47.1404136 ], + [ 8.4401968, 47.1404197 ], + [ 8.4401309, 47.1404261 ], + [ 8.440065, 47.1404327 ], + [ 8.4399993, 47.1404395 ], + [ 8.4399335, 47.1404467 ], + [ 8.4398678, 47.140454 ], + [ 8.4398013, 47.1404617 ], + [ 8.4397349, 47.1404697 ], + [ 8.4396685, 47.1404779 ], + [ 8.4396022, 47.1404863 ], + [ 8.439536, 47.1404951 ], + [ 8.4394698, 47.140504 ], + [ 8.4394037, 47.1405132 ], + [ 8.4389138, 47.1405783 ], + [ 8.4389149, 47.1405823 ], + [ 8.439024, 47.1409748 ], + [ 8.4383135, 47.1411345 ], + [ 8.4382507, 47.1411855 ], + [ 8.4382193, 47.1412098 ], + [ 8.4382285, 47.1412272 ], + [ 8.438186, 47.1412772 ], + [ 8.4379859, 47.1414354 ], + [ 8.4376686, 47.1417056 ], + [ 8.4376616, 47.1417596 ], + [ 8.4371013, 47.1422976 ], + [ 8.4367921, 47.1425193 ], + [ 8.4367202, 47.14254 ], + [ 8.4365636, 47.1425763 ], + [ 8.4365324, 47.1426043 ], + [ 8.4361232, 47.1425194 ], + [ 8.4361335, 47.1425395 ], + [ 8.4362281, 47.1427259 ], + [ 8.4368387, 47.1428789 ], + [ 8.4369635, 47.143106 ], + [ 8.4370221, 47.1431557 ], + [ 8.4370691, 47.143152 ], + [ 8.4371539, 47.1431757 ], + [ 8.4372849, 47.1432449 ], + [ 8.4372124, 47.1433729 ], + [ 8.4382054, 47.1436199 ], + [ 8.4395796, 47.1439465 ], + [ 8.4403004, 47.144105 ], + [ 8.4403058, 47.144067 ], + [ 8.4405709, 47.1434858 ], + [ 8.4406285, 47.1433382 ], + [ 8.4404862, 47.1430104 ], + [ 8.4409385, 47.1420131 ], + [ 8.4409733, 47.1419604 ], + [ 8.4411632, 47.1415411 ], + [ 8.4411888, 47.1413891 ], + [ 8.4412263, 47.1411438 ], + [ 8.4412654, 47.1408865 ], + [ 8.4412799, 47.1404824 ], + [ 8.4412803, 47.1404772 ], + [ 8.4412811, 47.1404721 ], + [ 8.4412825, 47.1404671 ], + [ 8.4412843, 47.1404621 ], + [ 8.4412866, 47.1404572 ], + [ 8.4412894, 47.1404524 ], + [ 8.4412926, 47.1404477 ], + [ 8.4412963, 47.1404432 ], + [ 8.4413004, 47.1404389 ], + [ 8.4413049, 47.1404348 ], + [ 8.4413097, 47.1404308 ], + [ 8.441315, 47.1404271 ], + [ 8.4413205, 47.1404237 ], + [ 8.4413275, 47.1404199 ], + [ 8.4413349, 47.1404166 ], + [ 8.4413426, 47.1404135 ], + [ 8.4413506, 47.1404109 ], + [ 8.4413588, 47.1404086 ], + [ 8.4413673, 47.1404068 ], + [ 8.4413759, 47.1404053 ], + [ 8.4413847, 47.1404043 ], + [ 8.4413935, 47.1404037 ], + [ 8.4414024, 47.1404035 ], + [ 8.4414113, 47.1404037 ], + [ 8.4413682, 47.1404013 ], + [ 8.441324999999999, 47.1403991 ], + [ 8.4412818, 47.1403971 ], + [ 8.4412386, 47.1403952 ], + [ 8.4411954, 47.1403936 ], + [ 8.4411522, 47.1403921 ], + [ 8.441109, 47.1403908 ], + [ 8.4410532, 47.1403891 ], + [ 8.4409974, 47.1403878 ], + [ 8.4409416, 47.140387 ], + [ 8.4408857, 47.1403866 ], + [ 8.4408299, 47.1403867 ], + [ 8.4407741, 47.1403872 ], + [ 8.4407183, 47.1403882 ], + [ 8.4406625, 47.1403896 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VBS_34", + "country" : "CHE", + "name" : [ + { + "text" : "VBS_34 Rotkreuz", + "lang" : "de-CH" + }, + { + "text" : "VBS_34 Rotkreuz", + "lang" : "fr-CH" + }, + { + "text" : "VBS_34 Rotkreuz", + "lang" : "it-CH" + }, + { + "text" : "VBS_34 Rotkreuz", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "regulationExemption" : "YES", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Eidgenössisches Departement für Verteidigung, Bevölkerungsschutz und Sport (VBS)", + "lang" : "de-CH" + }, + { + "text" : "Département fédéral de la défense, de la protection de la population et des sports (DDPS)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento federale della difesa, della protezione della popolazione e dello sport (DDPS)", + "lang" : "it-CH" + }, + { + "text" : "Federal Department of Defence, Civil Protection and Sport (DDPS)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Lageverfolgungszentrum der Armee LVZ A", + "lang" : "de-CH" + }, + { + "text" : "Centre de suivi de la situation de l’armée, CSS A", + "lang" : "fr-CH" + }, + { + "text" : "Centro di monitoraggio della situazione dell’esercito, Centro mon sit Es", + "lang" : "it-CH" + }, + { + "text" : "Joint Operation Center, JOC", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vtg.admin.ch/en/joint-operations-command", + "email" : "lvz.op@vtg.admin.ch", + "phone" : "+41 58 464 96 43", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.1237206, 46.2864395 ], + [ 6.1236893, 46.2864654 ], + [ 6.1236462, 46.2864819 ], + [ 6.1231539, 46.2869091 ], + [ 6.1227721, 46.2872254 ], + [ 6.1227603, 46.2872505 ], + [ 6.1226992, 46.2873035 ], + [ 6.1224062, 46.2880046 ], + [ 6.1223146, 46.2881997 ], + [ 6.1223165, 46.2882193 ], + [ 6.1222771, 46.2883136 ], + [ 6.1224013, 46.2890924 ], + [ 6.1224139, 46.2892221 ], + [ 6.1224166, 46.289229 ], + [ 6.122423, 46.2892278 ], + [ 6.1224439, 46.2893589 ], + [ 6.1224586, 46.2893911 ], + [ 6.12255, 46.2895069 ], + [ 6.122544, 46.2895085 ], + [ 6.1225476, 46.2895152 ], + [ 6.1226404, 46.2896213 ], + [ 6.1231819, 46.2903069 ], + [ 6.1232956, 46.2903707 ], + [ 6.1233122, 46.2903896 ], + [ 6.1235539, 46.2905156 ], + [ 6.1243526, 46.2909638 ], + [ 6.1244544, 46.2909849 ], + [ 6.1244912, 46.2910041 ], + [ 6.125048, 46.2911082 ], + [ 6.1257954, 46.2912635 ], + [ 6.1258561, 46.2912593 ], + [ 6.1259154, 46.2912704 ], + [ 6.1270204, 46.2911797 ], + [ 6.1272943, 46.291161 ], + [ 6.1273191, 46.2911558 ], + [ 6.1273189, 46.2911553 ], + [ 6.1273802, 46.2911502 ], + [ 6.127481, 46.291128 ], + [ 6.1288078, 46.2906204 ], + [ 6.1297545, 46.2898 ], + [ 6.1301775, 46.2887912 ], + [ 6.1300129, 46.2877469 ], + [ 6.1299922, 46.2877012 ], + [ 6.1292648, 46.2867796 ], + [ 6.1280849, 46.2861203 ], + [ 6.1266314, 46.2858233 ], + [ 6.1251244, 46.2859336 ], + [ 6.1250232, 46.2859554 ], + [ 6.1237206, 46.2864395 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-46", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.4523225, 47.2742016 ], + [ 8.4523144, 47.2740605 ], + [ 8.4522954, 47.2739198 ], + [ 8.4522657, 47.27378 ], + [ 8.4522252, 47.2736414 ], + [ 8.4521742, 47.2735045 ], + [ 8.4521126, 47.2733696 ], + [ 8.4520408, 47.273237 ], + [ 8.4519589, 47.2731072 ], + [ 8.4518672, 47.2729805 ], + [ 8.4517658, 47.2728572 ], + [ 8.4516551, 47.2727378 ], + [ 8.4515353, 47.2726224 ], + [ 8.4514068, 47.2725114 ], + [ 8.451270000000001, 47.2724052 ], + [ 8.4511252, 47.272304 ], + [ 8.4509728, 47.2722081 ], + [ 8.4508132, 47.2721177 ], + [ 8.450647, 47.2720332 ], + [ 8.4504744, 47.2719547 ], + [ 8.4502961, 47.2718824 ], + [ 8.4501124, 47.2718166 ], + [ 8.4499239, 47.2717574 ], + [ 8.4497311, 47.2717051 ], + [ 8.4495346, 47.2716596 ], + [ 8.4493349, 47.2716212 ], + [ 8.4491324, 47.27159 ], + [ 8.4489279, 47.2715661 ], + [ 8.4487218, 47.2715495 ], + [ 8.4485147, 47.2715402 ], + [ 8.4483071, 47.2715383 ], + [ 8.4480997, 47.2715438 ], + [ 8.447893, 47.2715567 ], + [ 8.4476876, 47.271577 ], + [ 8.447484, 47.2716045 ], + [ 8.4472828, 47.2716392 ], + [ 8.4470846, 47.2716811 ], + [ 8.4468899, 47.27173 ], + [ 8.4466991, 47.2717857 ], + [ 8.446513, 47.2718481 ], + [ 8.4463319, 47.2719171 ], + [ 8.4461563, 47.2719925 ], + [ 8.4459868, 47.272074 ], + [ 8.4458237, 47.2721614 ], + [ 8.4456676, 47.2722546 ], + [ 8.4455189, 47.2723531 ], + [ 8.445378, 47.2724568 ], + [ 8.4452452, 47.2725654 ], + [ 8.445121, 47.2726786 ], + [ 8.4450056, 47.272796 ], + [ 8.4448995, 47.2729174 ], + [ 8.4448028, 47.2730424 ], + [ 8.4447158, 47.2731707 ], + [ 8.4446389, 47.2733019 ], + [ 8.4445721, 47.2734357 ], + [ 8.4445157, 47.2735716 ], + [ 8.4444698, 47.2737094 ], + [ 8.4444346, 47.2738486 ], + [ 8.4444102, 47.2739889 ], + [ 8.4443965, 47.2741299 ], + [ 8.4443938, 47.2742711 ], + [ 8.4444018, 47.2744123 ], + [ 8.4444208, 47.274553 ], + [ 8.4444505, 47.2746928 ], + [ 8.444491, 47.2748313 ], + [ 8.444542, 47.2749683 ], + [ 8.4446035, 47.2751032 ], + [ 8.4446753, 47.2752357 ], + [ 8.4447572, 47.2753656 ], + [ 8.4448489, 47.2754923 ], + [ 8.4449503, 47.2756155 ], + [ 8.445061, 47.275735 ], + [ 8.4451808, 47.2758504 ], + [ 8.4453092, 47.2759614 ], + [ 8.4454461, 47.2760676 ], + [ 8.4455909, 47.2761688 ], + [ 8.4457433, 47.2762648 ], + [ 8.4459028, 47.2763551 ], + [ 8.4460691, 47.2764397 ], + [ 8.4462417, 47.2765182 ], + [ 8.44642, 47.2765904 ], + [ 8.4466037, 47.2766562 ], + [ 8.4467922, 47.2767154 ], + [ 8.446985, 47.2767678 ], + [ 8.4471815, 47.2768132 ], + [ 8.4473813, 47.2768516 ], + [ 8.4475838, 47.2768828 ], + [ 8.4477883, 47.2769068 ], + [ 8.4479944, 47.2769234 ], + [ 8.4482016, 47.2769327 ], + [ 8.4484091, 47.2769346 ], + [ 8.4486165, 47.2769291 ], + [ 8.4488233, 47.2769162 ], + [ 8.4490287, 47.2768959 ], + [ 8.4492323, 47.2768684 ], + [ 8.4494335, 47.2768337 ], + [ 8.4496317, 47.2767918 ], + [ 8.4498265, 47.2767429 ], + [ 8.4500172, 47.2766872 ], + [ 8.4502034, 47.2766247 ], + [ 8.4503845, 47.2765557 ], + [ 8.4505601, 47.2764804 ], + [ 8.4507297, 47.2763988 ], + [ 8.4508927, 47.2763114 ], + [ 8.4510488, 47.2762183 ], + [ 8.4511975, 47.2761197 ], + [ 8.4513384, 47.276016 ], + [ 8.4514712, 47.2759074 ], + [ 8.4515954, 47.2757942 ], + [ 8.4517108, 47.2756768 ], + [ 8.4518169, 47.2755554 ], + [ 8.4519136, 47.2754304 ], + [ 8.4520006, 47.2753021 ], + [ 8.4520775, 47.2751709 ], + [ 8.4521443, 47.2750371 ], + [ 8.4522006, 47.2749012 ], + [ 8.4522465, 47.2747634 ], + [ 8.4522817, 47.2746242 ], + [ 8.4523061, 47.2744839 ], + [ 8.4523197, 47.2743429 ], + [ 8.4523225, 47.2742016 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "AFF0001", + "country" : "CHE", + "name" : [ + { + "text" : "Gefängnis Affoltern", + "lang" : "de-CH" + }, + { + "text" : "Gefängnis Affoltern", + "lang" : "fr-CH" + }, + { + "text" : "Gefängnis Affoltern", + "lang" : "it-CH" + }, + { + "text" : "Gefängnis Affoltern", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "de-CH" + }, + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "fr-CH" + }, + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "it-CH" + }, + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "de-CH" + }, + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "fr-CH" + }, + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "it-CH" + }, + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Reno Berner", + "lang" : "de-CH" + }, + { + "text" : "Reno Berner", + "lang" : "fr-CH" + }, + { + "text" : "Reno Berner", + "lang" : "it-CH" + }, + { + "text" : "Reno Berner", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.zh.ch/de/direktion-der-justiz-und-des-innern/justizvollzug-wiedereingliederung.html", + "email" : "sicherheit-juwe@ji.zh.ch", + "phone" : "0041432583400", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT12H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6220982, 47.534968 ], + [ 7.622121, 47.535281 ], + [ 7.6221593, 47.5358204 ], + [ 7.6221975, 47.5363599 ], + [ 7.6222066, 47.5364762 ], + [ 7.6222908, 47.5364728 ], + [ 7.622327, 47.5363338 ], + [ 7.6223405, 47.5363339 ], + [ 7.622331, 47.5361959 ], + [ 7.6223168, 47.5361968 ], + [ 7.6223094, 47.5361428 ], + [ 7.6223272, 47.5361417 ], + [ 7.6223251, 47.5361124 ], + [ 7.6223561, 47.5359708 ], + [ 7.6223279999999995, 47.5355615 ], + [ 7.6223291, 47.5354667 ], + [ 7.622305, 47.535305 ], + [ 7.6223076, 47.5352633 ], + [ 7.6223608, 47.5352141 ], + [ 7.6226009, 47.5350834 ], + [ 7.6226347, 47.5350667 ], + [ 7.6226607, 47.5350561 ], + [ 7.622699, 47.5350418 ], + [ 7.6228657, 47.5350048 ], + [ 7.622932, 47.5349912 ], + [ 7.6229971, 47.5349819 ], + [ 7.6230648, 47.5349761 ], + [ 7.6231186, 47.5349765 ], + [ 7.6231234, 47.5349768 ], + [ 7.6231195, 47.534952 ], + [ 7.6231137, 47.5349505 ], + [ 7.6231089, 47.5349492 ], + [ 7.6231039, 47.5349482 ], + [ 7.6230988, 47.5349475 ], + [ 7.6230958, 47.5349473 ], + [ 7.622926, 47.5349491 ], + [ 7.6228637, 47.5349508 ], + [ 7.6225135, 47.5349584 ], + [ 7.6222636, 47.5349642 ], + [ 7.6222306, 47.534965 ], + [ 7.6221851, 47.534966 ], + [ 7.6220982, 47.534968 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns143", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt In den Weiden", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé In den Weiden", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto In den Weiden", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object In den Weiden", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5599962, 47.471693 ], + [ 7.5605025, 47.4716196 ], + [ 7.560663, 47.4718795 ], + [ 7.561496, 47.4727023 ], + [ 7.5618635, 47.4726477 ], + [ 7.5621675, 47.472745 ], + [ 7.5629825, 47.4726574 ], + [ 7.5631118, 47.473275 ], + [ 7.5633182, 47.4738977 ], + [ 7.563479, 47.4743093 ], + [ 7.5637189, 47.4743633 ], + [ 7.5639587, 47.4743413 ], + [ 7.5642142, 47.4742435 ], + [ 7.5645975, 47.4741347 ], + [ 7.5650771, 47.4741234 ], + [ 7.5658598999999995, 47.4739491 ], + [ 7.5661955, 47.4739162 ], + [ 7.5674419, 47.473774 ], + [ 7.5675532, 47.4735246 ], + [ 7.5680487, 47.4735349 ], + [ 7.5691514, 47.4734361 ], + [ 7.5694709, 47.4733599 ], + [ 7.5694382000000004, 47.4730673 ], + [ 7.569325, 47.4725312 ], + [ 7.5693368, 47.4725309 ], + [ 7.5693622, 47.4723554 ], + [ 7.5693239, 47.4720841 ], + [ 7.5691225, 47.4715415 ], + [ 7.5690221, 47.4714059 ], + [ 7.5685026, 47.4712453 ], + [ 7.5682645, 47.4710717 ], + [ 7.5679656, 47.470778 ], + [ 7.5678966, 47.4706721 ], + [ 7.5678017, 47.4702269 ], + [ 7.5676565, 47.4696673 ], + [ 7.5675411, 47.4693451 ], + [ 7.5674595, 47.4692222 ], + [ 7.5673717, 47.469146 ], + [ 7.5673274, 47.468917 ], + [ 7.5674145, 47.4687218 ], + [ 7.5676388, 47.4683866 ], + [ 7.5677822, 47.4681786 ], + [ 7.5679694, 47.4680215 ], + [ 7.5679569, 47.4680159 ], + [ 7.5681178, 47.4678825 ], + [ 7.5671231, 47.4674211 ], + [ 7.5676044000000005, 47.4670804 ], + [ 7.5679186, 47.4668539 ], + [ 7.568156, 47.4667179 ], + [ 7.5681557999999995, 47.4666713 ], + [ 7.5678925, 47.4663663 ], + [ 7.5676733, 47.466252 ], + [ 7.5671479, 47.4662483 ], + [ 7.56661, 47.466215 ], + [ 7.566185, 47.466313 ], + [ 7.5652724, 47.4665091 ], + [ 7.5649517, 47.4666352 ], + [ 7.5645705, 47.4667841 ], + [ 7.5640645, 47.4670264 ], + [ 7.5640645, 47.4670265 ], + [ 7.5639259, 47.4671153 ], + [ 7.5639912, 47.4674267 ], + [ 7.5637834, 47.4675583 ], + [ 7.5634606, 47.4676462 ], + [ 7.5630085000000005, 47.4676759 ], + [ 7.5625202, 47.4675645 ], + [ 7.561759, 47.4673755 ], + [ 7.5617379, 47.4675799 ], + [ 7.5615875, 47.4676872 ], + [ 7.5612789, 47.4677118 ], + [ 7.5613372, 47.4680836 ], + [ 7.561244, 47.4681275 ], + [ 7.5608708, 47.4681522 ], + [ 7.560505, 47.4682597 ], + [ 7.5605023, 47.4682574 ], + [ 7.5593588, 47.468462 ], + [ 7.5593521, 47.4684935 ], + [ 7.559414, 47.4690489 ], + [ 7.5594079, 47.4690666 ], + [ 7.5594189, 47.4691261 ], + [ 7.5594471, 47.4692507 ], + [ 7.5594868, 47.4694665 ], + [ 7.5595384, 47.4697375 ], + [ 7.5595607000000005, 47.4698468 ], + [ 7.559589, 47.4699693 ], + [ 7.5596358, 47.470185 ], + [ 7.559694, 47.4704591 ], + [ 7.5597049, 47.4704684 ], + [ 7.5599885, 47.470493 ], + [ 7.5601488, 47.4706771 ], + [ 7.5602775, 47.4710346 ], + [ 7.5598493, 47.4711394 ], + [ 7.5598534, 47.4711555 ], + [ 7.5598868, 47.4712618 ], + [ 7.5599054, 47.4713437 ], + [ 7.5599681, 47.4715901 ], + [ 7.5599962, 47.471693 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr119", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Tschöpperli", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Tschöpperli", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Tschöpperli", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Tschöpperli", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.8327276999999995, 47.1014748 ], + [ 6.8328573, 47.1015294 ], + [ 6.8330742, 47.101594 ], + [ 6.8330819, 47.1015957 ], + [ 6.8333122, 47.1016328 ], + [ 6.8333203000000005, 47.1016336 ], + [ 6.8335565, 47.1016419 ], + [ 6.8335647, 47.1016417 ], + [ 6.8337993, 47.1016211 ], + [ 6.8338073, 47.1016199 ], + [ 6.8340328, 47.1015709 ], + [ 6.8340403, 47.1015687 ], + [ 6.8342493, 47.101493 ], + [ 6.8342561, 47.1014899 ], + [ 6.8344419, 47.1013899 ], + [ 6.8344477999999995, 47.1013861 ], + [ 6.8346044, 47.101265 ], + [ 6.8346092, 47.1012605 ], + [ 6.8346317, 47.1012389 ], + [ 6.8348025, 47.1010698 ], + [ 6.8348844, 47.1009944 ], + [ 6.8348835999999995, 47.100994 ], + [ 6.8349324, 47.1009475 ], + [ 6.8349347, 47.1009451 ], + [ 6.8349941, 47.1008763 ], + [ 6.8349961, 47.1008738 ], + [ 6.8350463999999995, 47.1008016 ], + [ 6.8350480000000005, 47.100799 ], + [ 6.8351266, 47.100624 ], + [ 6.8351517, 47.1004419 ], + [ 6.8351223999999995, 47.10026 ], + [ 6.8350786, 47.100121 ], + [ 6.8349917, 47.0998449 ], + [ 6.8349136999999995, 47.0996781 ], + [ 6.8347898, 47.0995248 ], + [ 6.8346248, 47.0993908 ], + [ 6.8344248, 47.0992811 ], + [ 6.8341975, 47.0992 ], + [ 6.8340542, 47.0991604 ], + [ 6.833838, 47.0991151 ], + [ 6.8336136, 47.0990956 ], + [ 6.8333876, 47.0991027 ], + [ 6.8329686, 47.0991406 ], + [ 6.8329319, 47.0991392 ], + [ 6.8326901, 47.0991608 ], + [ 6.8324582, 47.0992124 ], + [ 6.8322442, 47.0992924 ], + [ 6.8320555, 47.099398 ], + [ 6.8318986, 47.0995254 ], + [ 6.8315842, 47.099835 ], + [ 6.8314588, 47.0999886 ], + [ 6.8313796, 47.1001559 ], + [ 6.8313496, 47.1003305 ], + [ 6.8313699, 47.1005058 ], + [ 6.8314398, 47.1006751 ], + [ 6.8315565, 47.1008318 ], + [ 6.8317157, 47.10097 ], + [ 6.8319112, 47.1010845 ], + [ 6.8327276999999995, 47.1014748 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "NE04", + "country" : "CHE", + "name" : [ + { + "text" : "EDPR La Promenade", + "lang" : "de-CH" + }, + { + "text" : "EDPR La Promenade", + "lang" : "fr-CH" + }, + { + "text" : "EDPR La Promenade", + "lang" : "it-CH" + }, + { + "text" : "EDPR La Promenade", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "regulationExemption" : "YES", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Police Neuchâteloise", + "lang" : "de-CH" + }, + { + "text" : "Police Neuchâteloise", + "lang" : "fr-CH" + }, + { + "text" : "Police Neuchâteloise", + "lang" : "it-CH" + }, + { + "text" : "Police Neuchâteloise", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "PN - Rens et opérations", + "lang" : "de-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "fr-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "it-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "PN - Rens et opérations", + "lang" : "de-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "fr-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "it-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ne.ch/autorites/DESC/PONE/Pages/Drones.aspx", + "email" : "Police.Neuchateloise@ne.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8329409, 47.4486955 ], + [ 7.8329205, 47.4486838 ], + [ 7.8319583999999995, 47.448135 ], + [ 7.8317612, 47.4489092 ], + [ 7.8318171, 47.4488952 ], + [ 7.8318746, 47.4489398 ], + [ 7.8319683, 47.4490124 ], + [ 7.8320381999999995, 47.4490814 ], + [ 7.8320755, 47.4491182 ], + [ 7.8322073, 47.4491186 ], + [ 7.8323917, 47.4491161 ], + [ 7.8325015, 47.4490801 ], + [ 7.8326539, 47.4490158 ], + [ 7.8327665, 47.4489683 ], + [ 7.8327909, 47.4489383 ], + [ 7.8328134, 47.4489106 ], + [ 7.832852, 47.448863 ], + [ 7.8328841, 47.44882 ], + [ 7.8328980999999995, 47.4488012 ], + [ 7.8329254, 47.4487647 ], + [ 7.8329661999999995, 47.44871 ], + [ 7.8329409, 47.4486955 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr099", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Dubenrain", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Dubenrain", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Dubenrain", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Dubenrain", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8372682, 47.3763923 ], + [ 7.8372852, 47.376419 ], + [ 7.8378755, 47.3765582 ], + [ 7.8381573, 47.3767212 ], + [ 7.8382358, 47.3767266 ], + [ 7.8382804, 47.3766807 ], + [ 7.8382718, 47.3766521 ], + [ 7.8380069, 47.3765004 ], + [ 7.8373349999999995, 47.3763273 ], + [ 7.8372874, 47.3763466 ], + [ 7.8372682, 47.3763923 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns199", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Hecken-Komplex Schmutzberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Hecken-Komplex Schmutzberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Hecken-Komplex Schmutzberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Hecken-Komplex Schmutzberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.2289397, 46.2674538 ], + [ 6.2288858, 46.2674823 ], + [ 6.2281628, 46.2676096 ], + [ 6.2280592, 46.2676439 ], + [ 6.2270556, 46.268122 ], + [ 6.2270052, 46.2681675 ], + [ 6.2269921, 46.2681738 ], + [ 6.2262504, 46.2688442 ], + [ 6.225844, 46.2696409 ], + [ 6.2258237, 46.2701928 ], + [ 6.2257799, 46.2704021 ], + [ 6.2261523, 46.2714217 ], + [ 6.2262778, 46.2716046 ], + [ 6.2267704, 46.2721024 ], + [ 6.2256603, 46.2722432 ], + [ 6.2248437, 46.2726091 ], + [ 6.2247631, 46.2726193 ], + [ 6.2234876, 46.2731906 ], + [ 6.2233856, 46.273293 ], + [ 6.2231471, 46.2723881 ], + [ 6.2223231, 46.2715036 ], + [ 6.2210739, 46.2709051 ], + [ 6.2195895, 46.2706836 ], + [ 6.2180958, 46.270873 ], + [ 6.2168203, 46.2714442 ], + [ 6.2159571, 46.2723105 ], + [ 6.2156377, 46.2733399 ], + [ 6.2159106, 46.2743758 ], + [ 6.2163039, 46.274798 ], + [ 6.2160994, 46.2752949 ], + [ 6.2162719, 46.2763393 ], + [ 6.2162977, 46.276395 ], + [ 6.2168462, 46.277149 ], + [ 6.2177041, 46.2777486 ], + [ 6.2187873, 46.2781349 ], + [ 6.2199896, 46.2782702 ], + [ 6.2211933, 46.2781411 ], + [ 6.2212469, 46.2781291 ], + [ 6.2225738, 46.2776183 ], + [ 6.2233451, 46.2769454 ], + [ 6.2234022, 46.2770067 ], + [ 6.2245349, 46.2775493 ], + [ 6.2242198, 46.2776904 ], + [ 6.2233566, 46.2785568 ], + [ 6.2230373, 46.2795862 ], + [ 6.2233104, 46.280622 ], + [ 6.2241345, 46.2815065 ], + [ 6.225384, 46.282105 ], + [ 6.2268688, 46.2823264 ], + [ 6.2274163, 46.2822569 ], + [ 6.2280761, 46.2825729 ], + [ 6.2295609, 46.2827943 ], + [ 6.2310548, 46.2826048 ], + [ 6.2323304, 46.2820334 ], + [ 6.2331935, 46.281167 ], + [ 6.2335127, 46.2801375 ], + [ 6.2332394, 46.2791017 ], + [ 6.2324152, 46.2782173 ], + [ 6.2311657, 46.2776189 ], + [ 6.229681, 46.2773976 ], + [ 6.2291336, 46.277467 ], + [ 6.2286185, 46.2772203 ], + [ 6.2298029, 46.2766897 ], + [ 6.2306659, 46.2758233 ], + [ 6.2309851, 46.2747938 ], + [ 6.2307119, 46.273758 ], + [ 6.2305377, 46.2735711 ], + [ 6.2306951, 46.2735871 ], + [ 6.2321674, 46.2733297 ], + [ 6.2324017, 46.2732525 ], + [ 6.2324031, 46.2732521 ], + [ 6.2330249, 46.2729569 ], + [ 6.2332282, 46.2729208 ], + [ 6.233268, 46.2729089 ], + [ 6.2345178, 46.272311 ], + [ 6.2353426, 46.271427 ], + [ 6.2354849, 46.2708896 ], + [ 6.2356551, 46.2704628 ], + [ 6.2356011, 46.2696193 ], + [ 6.2351738, 46.2688286 ], + [ 6.2351488, 46.2687979 ], + [ 6.234157, 46.2680008 ], + [ 6.2338663, 46.2678994 ], + [ 6.2328572, 46.2674784 ], + [ 6.2321682, 46.2674068 ], + [ 6.2319348, 46.2673132 ], + [ 6.2304335, 46.2671744 ], + [ 6.2289696, 46.2674437 ], + [ 6.2289397, 46.2674538 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-5", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.3983114, 46.5877455 ], + [ 6.39783, 46.5880128 ], + [ 6.401959, 46.5935041 ], + [ 6.4020506, 46.5934231 ], + [ 6.4023584, 46.593774 ], + [ 6.4024648, 46.593802 ], + [ 6.4026285, 46.5937081 ], + [ 6.403716, 46.5933465 ], + [ 6.4037509, 46.593295499999996 ], + [ 6.4037787999999995, 46.5930637 ], + [ 6.4036309, 46.5928833 ], + [ 6.4037651, 46.5927595 ], + [ 6.4033937, 46.5925924 ], + [ 6.4032145, 46.5922741 ], + [ 6.4030473, 46.5921475 ], + [ 6.4031731, 46.592119 ], + [ 6.4029097, 46.5917693 ], + [ 6.4036216, 46.5915284 ], + [ 6.403104, 46.5906897 ], + [ 6.4028354, 46.5902015 ], + [ 6.401809, 46.5905789 ], + [ 6.4003127, 46.5886491 ], + [ 6.3995771999999995, 46.5877463 ], + [ 6.3992413, 46.5874365 ], + [ 6.399001, 46.587446 ], + [ 6.3983114, 46.5877455 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSTR002", + "country" : "CHE", + "name" : [ + { + "text" : "LSTR Montricher (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSTR Montricher (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSTR Montricher (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSTR Montricher (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Fondation pour l'exploitation du terrain de vol à voile de Montricher", + "lang" : "de-CH" + }, + { + "text" : "Fondation pour l'exploitation du terrain de vol à voile de Montricher", + "lang" : "fr-CH" + }, + { + "text" : "Fondation pour l'exploitation du terrain de vol à voile de Montricher", + "lang" : "it-CH" + }, + { + "text" : "Fondation pour l'exploitation du terrain de vol à voile de Montricher", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Chef d'aérodrome", + "lang" : "de-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "fr-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "it-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Didier Kuttel", + "lang" : "de-CH" + }, + { + "text" : "Didier Kuttel", + "lang" : "fr-CH" + }, + { + "text" : "Didier Kuttel", + "lang" : "it-CH" + }, + { + "text" : "Didier Kuttel", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.lstr.ch", + "email" : "chef.aerodrome@lstr.ch", + "phone" : "0041799487937", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P02DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6359652, 47.3821842 ], + [ 7.6349579, 47.3816215 ], + [ 7.6345878, 47.3817168 ], + [ 7.6343796, 47.3818459 ], + [ 7.6341808, 47.3820155 ], + [ 7.6333231, 47.3829171 ], + [ 7.6330658, 47.3839905 ], + [ 7.6329083, 47.3846475 ], + [ 7.6333115, 47.3853427 ], + [ 7.6350599, 47.3856671 ], + [ 7.6362638, 47.3857796 ], + [ 7.6372573, 47.3860717 ], + [ 7.6372512, 47.3860517 ], + [ 7.6372478, 47.3860315 ], + [ 7.6372472, 47.3860111 ], + [ 7.6372494, 47.3859908 ], + [ 7.6372544, 47.3859707 ], + [ 7.6372605, 47.3859545 ], + [ 7.637355, 47.3859927 ], + [ 7.6374306, 47.3860269 ], + [ 7.6376555, 47.3860445 ], + [ 7.6378536, 47.386078 ], + [ 7.6381507, 47.3861281 ], + [ 7.638359, 47.3861536 ], + [ 7.6383936, 47.3860978 ], + [ 7.638456, 47.3860577 ], + [ 7.6385397, 47.3860378 ], + [ 7.6386146, 47.3860384 ], + [ 7.6386603, 47.3860717 ], + [ 7.6386622, 47.3860865 ], + [ 7.6386668, 47.3861227 ], + [ 7.63868, 47.386199 ], + [ 7.6397135, 47.3863873 ], + [ 7.6401007, 47.3863544 ], + [ 7.6403929, 47.3864249 ], + [ 7.640534, 47.3864474 ], + [ 7.6412109, 47.3861145 ], + [ 7.6422345, 47.3862162 ], + [ 7.6427542, 47.3862801 ], + [ 7.6432507, 47.3863635 ], + [ 7.6438982, 47.3864932 ], + [ 7.6444302, 47.3865797 ], + [ 7.6450244, 47.3866609 ], + [ 7.6452183, 47.3866804 ], + [ 7.6455316, 47.3866998 ], + [ 7.6459838, 47.3866836 ], + [ 7.6464492, 47.3866546 ], + [ 7.6466445, 47.3866593 ], + [ 7.646964, 47.3867231 ], + [ 7.6473009, 47.3868105 ], + [ 7.647658, 47.3869034 ], + [ 7.6481114, 47.3870032 ], + [ 7.6484402, 47.3870407 ], + [ 7.6489204, 47.3870663 ], + [ 7.6491188, 47.3870756 ], + [ 7.649243, 47.387323 ], + [ 7.6492767, 47.3873103 ], + [ 7.6493119, 47.3872998 ], + [ 7.6493484, 47.3872914 ], + [ 7.6493858, 47.3872853 ], + [ 7.6494239, 47.3872814 ], + [ 7.6494624, 47.3872799 ], + [ 7.6496526, 47.3872878 ], + [ 7.6496783, 47.3872885 ], + [ 7.6497039000000004, 47.3872878 ], + [ 7.6497293, 47.3872856 ], + [ 7.6497544, 47.3872818 ], + [ 7.6497788, 47.3872766 ], + [ 7.6498025, 47.3872699 ], + [ 7.6498253, 47.3872618 ], + [ 7.6498469, 47.3872525 ], + [ 7.6498672, 47.3872419 ], + [ 7.6498861, 47.3872301 ], + [ 7.6499034, 47.3872172 ], + [ 7.6499189, 47.3872034 ], + [ 7.6499326, 47.3871886 ], + [ 7.6500539, 47.3870392 ], + [ 7.6501158, 47.3869588 ], + [ 7.649972, 47.3867201 ], + [ 7.6497425, 47.3862637 ], + [ 7.6495294, 47.3858664 ], + [ 7.6494505, 47.3857318 ], + [ 7.649353, 47.3855894 ], + [ 7.6492611, 47.3855123 ], + [ 7.6491361, 47.3854316 ], + [ 7.6489431, 47.3853365 ], + [ 7.6487341, 47.3852499 ], + [ 7.6484073, 47.3851624 ], + [ 7.6479162, 47.3850853 ], + [ 7.6468327, 47.3847611 ], + [ 7.6462892, 47.3845823 ], + [ 7.6460657, 47.3845187 ], + [ 7.6456816, 47.3844033 ], + [ 7.6456642, 47.3843978 ], + [ 7.6456463, 47.3843934 ], + [ 7.6456278, 47.38439 ], + [ 7.6456089, 47.3843877 ], + [ 7.6455899, 47.3843866 ], + [ 7.6455708, 47.3843865 ], + [ 7.6455517, 47.3843876 ], + [ 7.6455328, 47.3843899 ], + [ 7.6455143, 47.3843932 ], + [ 7.6454963, 47.3843976 ], + [ 7.6453424, 47.3844308 ], + [ 7.645234, 47.3844536 ], + [ 7.6451281, 47.3844628 ], + [ 7.6450215, 47.3844672 ], + [ 7.6449146, 47.3844665 ], + [ 7.6443444, 47.3844451 ], + [ 7.643714, 47.3844163 ], + [ 7.6434842, 47.3844021 ], + [ 7.6432567, 47.3843762 ], + [ 7.6430327, 47.3843386 ], + [ 7.6423632999999995, 47.3842091 ], + [ 7.642374, 47.3841824 ], + [ 7.6424227, 47.3840745 ], + [ 7.642545, 47.3839353 ], + [ 7.6425436, 47.3839153 ], + [ 7.6425567999999995, 47.3838859 ], + [ 7.6427051, 47.3835888 ], + [ 7.6427376, 47.3835208 ], + [ 7.6429386, 47.3835328 ], + [ 7.643237, 47.3835399 ], + [ 7.6435821, 47.3835372 ], + [ 7.64381, 47.3835356 ], + [ 7.6438526, 47.3833931 ], + [ 7.644078, 47.3834092 ], + [ 7.6442927, 47.3834771 ], + [ 7.6445028, 47.3834897 ], + [ 7.6449895, 47.3834042 ], + [ 7.645276, 47.383321 ], + [ 7.64555, 47.3831853 ], + [ 7.6461112, 47.3829685 ], + [ 7.6464548, 47.382852 ], + [ 7.646955, 47.382719 ], + [ 7.6469000000000005, 47.382637 ], + [ 7.6460801, 47.3823383 ], + [ 7.6461116, 47.3822333 ], + [ 7.6460929, 47.3821896 ], + [ 7.6460478, 47.3821726 ], + [ 7.6460756, 47.382109 ], + [ 7.6459368, 47.3820908 ], + [ 7.6458870999999995, 47.3820887 ], + [ 7.6458209, 47.3822163 ], + [ 7.6457618, 47.3822736 ], + [ 7.6457242999999995, 47.3823248 ], + [ 7.6456286, 47.3823658 ], + [ 7.6455143, 47.3825513 ], + [ 7.6454397, 47.3826019 ], + [ 7.6454113, 47.3826728 ], + [ 7.6452989, 47.3826875 ], + [ 7.6451849, 47.3826695 ], + [ 7.6450952, 47.382654 ], + [ 7.6449714, 47.38265 ], + [ 7.644952, 47.3827058 ], + [ 7.6450564, 47.3828754 ], + [ 7.6448058, 47.3829492 ], + [ 7.6447953, 47.3829164 ], + [ 7.6447506, 47.3829009 ], + [ 7.6446958, 47.3829266 ], + [ 7.6443949, 47.3831724 ], + [ 7.644178, 47.3831488 ], + [ 7.644012, 47.3830872 ], + [ 7.6438873, 47.3831036 ], + [ 7.6437184, 47.3831042 ], + [ 7.6434616, 47.383244 ], + [ 7.6433346, 47.38328 ], + [ 7.6430478, 47.3832728 ], + [ 7.6425263, 47.3832207 ], + [ 7.6423629, 47.3831978 ], + [ 7.6420528999999995, 47.3831795 ], + [ 7.641474, 47.3832064 ], + [ 7.6415394, 47.3830282 ], + [ 7.6413747, 47.3829207 ], + [ 7.6414041, 47.3828044 ], + [ 7.6413911, 47.3827678 ], + [ 7.6413171, 47.3827586 ], + [ 7.6411975, 47.3828795 ], + [ 7.6410735, 47.3831068 ], + [ 7.6408567, 47.383070000000004 ], + [ 7.6409728999999995, 47.3828209 ], + [ 7.6411468, 47.3825267 ], + [ 7.6413471, 47.3822782 ], + [ 7.6414848, 47.3821226 ], + [ 7.6411126, 47.3820633 ], + [ 7.6410319, 47.3822385 ], + [ 7.6403918, 47.3821288 ], + [ 7.6403406, 47.382248 ], + [ 7.6410283, 47.3823524 ], + [ 7.6408698, 47.3826188 ], + [ 7.6407644999999995, 47.38283 ], + [ 7.6406985, 47.3830727 ], + [ 7.6405196, 47.3832126 ], + [ 7.6404629, 47.383205 ], + [ 7.6401662, 47.3832031 ], + [ 7.6399733, 47.3831505 ], + [ 7.6398638, 47.3830927 ], + [ 7.639746, 47.3830965 ], + [ 7.6396902, 47.3830845 ], + [ 7.6393215, 47.3830647 ], + [ 7.6390662, 47.3830281 ], + [ 7.6385641, 47.3829355 ], + [ 7.6381444, 47.3828651 ], + [ 7.6375235, 47.382737 ], + [ 7.63721, 47.3826487 ], + [ 7.6367851, 47.3824065 ], + [ 7.6366092, 47.3823499 ], + [ 7.6361921, 47.3822463 ], + [ 7.6359652, 47.3821842 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns238", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Riedberg - Stierenberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Riedberg - Stierenberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Riedberg - Stierenberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Riedberg - Stierenberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5344799, 47.5413917 ], + [ 7.5345024, 47.541456 ], + [ 7.5345469, 47.5414855 ], + [ 7.5346955, 47.5415577 ], + [ 7.5347404000000004, 47.541572 ], + [ 7.5347893, 47.5415974 ], + [ 7.534803, 47.5416221 ], + [ 7.5348076, 47.5416303 ], + [ 7.534818, 47.541668 ], + [ 7.5347354, 47.5416671 ], + [ 7.5346399, 47.5416807 ], + [ 7.5346617, 47.5417513 ], + [ 7.5345359, 47.5417691 ], + [ 7.5346587, 47.5421754 ], + [ 7.5344985, 47.5421976 ], + [ 7.5343671, 47.5422157 ], + [ 7.5342596, 47.5422293 ], + [ 7.534247, 47.5422382 ], + [ 7.5342358, 47.5422479 ], + [ 7.5342258, 47.5422582 ], + [ 7.5342153, 47.5422677 ], + [ 7.5342379, 47.5423421 ], + [ 7.5343407, 47.5426852 ], + [ 7.534496, 47.5426632 ], + [ 7.5349494, 47.5425989 ], + [ 7.534953, 47.5426186 ], + [ 7.5349762, 47.5427359 ], + [ 7.5351168, 47.5428457 ], + [ 7.5352749, 47.5429749 ], + [ 7.5353110999999995, 47.543013 ], + [ 7.5353467, 47.5430449 ], + [ 7.5353229, 47.543152 ], + [ 7.5352733, 47.5432259 ], + [ 7.5351053, 47.5432746 ], + [ 7.5349445, 47.5432851 ], + [ 7.534863, 47.5432822 ], + [ 7.5348391, 47.5432793 ], + [ 7.5346948000000005, 47.5433755 ], + [ 7.5345093, 47.5434439 ], + [ 7.5345042, 47.5435315 ], + [ 7.5346857, 47.5440231 ], + [ 7.5348529, 47.5444808 ], + [ 7.534927, 47.544952 ], + [ 7.5350104, 47.5454973 ], + [ 7.5350308, 47.5459882 ], + [ 7.5350876, 47.5467236 ], + [ 7.5351282, 47.5472413 ], + [ 7.5355619, 47.5472286 ], + [ 7.5357689, 47.5472226 ], + [ 7.5358428, 47.5468052 ], + [ 7.5359035, 47.5468118 ], + [ 7.53624, 47.5466863 ], + [ 7.5363865, 47.5466317 ], + [ 7.5365625, 47.5465125 ], + [ 7.536738, 47.5463933 ], + [ 7.5366661, 47.5462502 ], + [ 7.5367486, 47.5460443 ], + [ 7.5367718, 47.5459862 ], + [ 7.536784, 47.5459685 ], + [ 7.5368652, 47.5458467 ], + [ 7.5368744, 47.545833 ], + [ 7.5369291, 47.5456399 ], + [ 7.5369323, 47.5456259 ], + [ 7.5369691, 47.545466 ], + [ 7.5369721, 47.5454528 ], + [ 7.5369746, 47.5453725 ], + [ 7.5369767, 47.5453071 ], + [ 7.5369353, 47.5452098 ], + [ 7.5368995, 47.5451256 ], + [ 7.5367168, 47.5448688 ], + [ 7.5366203, 47.5447331 ], + [ 7.536631, 47.5446789 ], + [ 7.5366447999999995, 47.5446093 ], + [ 7.5366715, 47.5445785 ], + [ 7.5367282, 47.5445133 ], + [ 7.5368292, 47.5443972 ], + [ 7.5368606, 47.5443551 ], + [ 7.5369558, 47.5442274 ], + [ 7.5369946, 47.5441754 ], + [ 7.5370536, 47.5440946 ], + [ 7.5370968, 47.5440353 ], + [ 7.5371032, 47.5440266 ], + [ 7.5372694, 47.543956 ], + [ 7.5373651, 47.5439153 ], + [ 7.5374408, 47.5438539 ], + [ 7.5375227, 47.5437875 ], + [ 7.5375522, 47.5437636 ], + [ 7.537796, 47.5436409 ], + [ 7.5377986, 47.5436396 ], + [ 7.5376605, 47.5434849 ], + [ 7.5374382, 47.5434986 ], + [ 7.5373698000000005, 47.5435029 ], + [ 7.5370509, 47.5434838 ], + [ 7.5367564, 47.5432141 ], + [ 7.5365175, 47.5429322 ], + [ 7.5363433, 47.542667 ], + [ 7.5361682, 47.5424217 ], + [ 7.5361072, 47.5423606 ], + [ 7.5360847, 47.5423381 ], + [ 7.5358105, 47.5420641 ], + [ 7.5355, 47.5416757 ], + [ 7.5356867, 47.5415726 ], + [ 7.5358124, 47.5415031 ], + [ 7.5358189, 47.5414995 ], + [ 7.5359142, 47.5414476 ], + [ 7.535981, 47.5414113 ], + [ 7.5360496, 47.541374 ], + [ 7.5360807, 47.5413571 ], + [ 7.5366819, 47.5411987 ], + [ 7.5372952, 47.5410631 ], + [ 7.5372283, 47.5409252 ], + [ 7.5372316999999995, 47.5409197 ], + [ 7.5371591, 47.5407271 ], + [ 7.5380241, 47.5406549 ], + [ 7.5379928, 47.5406258 ], + [ 7.5378807, 47.5405219 ], + [ 7.537638, 47.5402945 ], + [ 7.5375463, 47.5402087 ], + [ 7.5372028, 47.5398872 ], + [ 7.5371524999999995, 47.5398401 ], + [ 7.5369243, 47.5396303 ], + [ 7.5367072, 47.5394105 ], + [ 7.5369323, 47.5393173 ], + [ 7.5367963, 47.5391518 ], + [ 7.5367753, 47.5391273 ], + [ 7.5366328, 47.5389328 ], + [ 7.5364559, 47.5385899 ], + [ 7.5362365, 47.5381405 ], + [ 7.5361997, 47.5381029 ], + [ 7.5361706, 47.538073 ], + [ 7.5359646, 47.5378598 ], + [ 7.5353962, 47.5373749 ], + [ 7.5350114, 47.5370182 ], + [ 7.5349804, 47.5369955 ], + [ 7.5349842, 47.5369928 ], + [ 7.5351747, 47.5368835 ], + [ 7.5352192, 47.536858 ], + [ 7.5338652, 47.5358358 ], + [ 7.5338269, 47.5358592 ], + [ 7.5337353, 47.5359153 ], + [ 7.5336793, 47.5358662 ], + [ 7.5337542, 47.5358223 ], + [ 7.5335938, 47.5357134 ], + [ 7.5336563, 47.5356791 ], + [ 7.5335649, 47.5356201 ], + [ 7.533562, 47.5356182 ], + [ 7.5333607, 47.5354925 ], + [ 7.5332637, 47.5356064 ], + [ 7.5330756, 47.5355335 ], + [ 7.5327674, 47.5354139 ], + [ 7.5327831, 47.5352665 ], + [ 7.5329327, 47.5350695 ], + [ 7.5330537, 47.5349448 ], + [ 7.533401, 47.5348109 ], + [ 7.5336082, 47.5347201 ], + [ 7.532958, 47.5343464 ], + [ 7.5321868, 47.533841699999996 ], + [ 7.5316418, 47.5335147 ], + [ 7.5315666, 47.5334348 ], + [ 7.531492, 47.5333556 ], + [ 7.5311535, 47.533167 ], + [ 7.5305395, 47.5325364 ], + [ 7.5281716, 47.5316585 ], + [ 7.5279837, 47.5317737 ], + [ 7.5275692, 47.5321633 ], + [ 7.5269061, 47.5327694 ], + [ 7.5267844, 47.5328811 ], + [ 7.5267459, 47.5328797 ], + [ 7.5266843, 47.5328708 ], + [ 7.5266511, 47.5328695 ], + [ 7.5266266, 47.5328718 ], + [ 7.526576, 47.5328605 ], + [ 7.5265076, 47.5328364 ], + [ 7.5264578, 47.5327963 ], + [ 7.5263966, 47.5327656 ], + [ 7.5263316, 47.5327445 ], + [ 7.5262851, 47.5327058 ], + [ 7.5261881, 47.5326537 ], + [ 7.5261586, 47.5326435 ], + [ 7.5260576, 47.532584 ], + [ 7.5259897, 47.5325615 ], + [ 7.5259545, 47.5324631 ], + [ 7.5258942, 47.5324253 ], + [ 7.5258725, 47.5323906 ], + [ 7.5257877, 47.5323401 ], + [ 7.5256654, 47.5322826 ], + [ 7.5256289, 47.53221 ], + [ 7.5256001, 47.5322007 ], + [ 7.5255664, 47.5322064 ], + [ 7.5254593, 47.5321808 ], + [ 7.5254173, 47.5321671 ], + [ 7.5253027, 47.5321497 ], + [ 7.5252739, 47.532161 ], + [ 7.5251795, 47.5321436 ], + [ 7.525158, 47.5321501 ], + [ 7.5251177, 47.5321831 ], + [ 7.5250829, 47.5321636 ], + [ 7.5250454, 47.5321315 ], + [ 7.5249983, 47.5321196 ], + [ 7.5249752999999995, 47.5320948 ], + [ 7.5249326, 47.5320953 ], + [ 7.5248974, 47.5320792 ], + [ 7.5248337, 47.532074 ], + [ 7.5246604, 47.5319743 ], + [ 7.5246023, 47.5319306 ], + [ 7.5245235, 47.5319214 ], + [ 7.5244882, 47.5318819 ], + [ 7.5244419, 47.5318833 ], + [ 7.5244213, 47.531883 ], + [ 7.5244043, 47.5318652 ], + [ 7.5243788, 47.531881 ], + [ 7.5242753, 47.5319447 ], + [ 7.5240669, 47.5320732 ], + [ 7.5242804, 47.5321165 ], + [ 7.5254799, 47.5327299 ], + [ 7.5256942, 47.5327638 ], + [ 7.5261829, 47.532997 ], + [ 7.5266256, 47.5332313 ], + [ 7.526713, 47.5332183 ], + [ 7.5269818, 47.5329624 ], + [ 7.5270336, 47.532913 ], + [ 7.5270524, 47.5328952 ], + [ 7.5270889, 47.5329099 ], + [ 7.5271314, 47.5329407 ], + [ 7.5270197, 47.5329806 ], + [ 7.5267508, 47.5332365 ], + [ 7.5267854, 47.5333336 ], + [ 7.5268821, 47.5334068 ], + [ 7.5270667, 47.5335963 ], + [ 7.5273006, 47.5338197 ], + [ 7.5277005, 47.5342403 ], + [ 7.5277424, 47.534235 ], + [ 7.527768, 47.5342239 ], + [ 7.527794, 47.5342133 ], + [ 7.5278206, 47.5342032 ], + [ 7.5278475, 47.5341937 ], + [ 7.5278749, 47.5341848 ], + [ 7.5279027, 47.5341765 ], + [ 7.5279309, 47.5341687 ], + [ 7.5279594, 47.5341615 ], + [ 7.5279882, 47.534155 ], + [ 7.5280173, 47.534149 ], + [ 7.5280466, 47.5341436 ], + [ 7.5284247, 47.5340795 ], + [ 7.5284539, 47.5340615 ], + [ 7.5284759999999995, 47.5340543 ], + [ 7.5285543, 47.5340284 ], + [ 7.5286016, 47.5340898 ], + [ 7.5285362, 47.5341077 ], + [ 7.5284922, 47.5341197 ], + [ 7.5284444, 47.5341215 ], + [ 7.5280621, 47.5341857 ], + [ 7.528032, 47.5341914 ], + [ 7.5280021, 47.5341977 ], + [ 7.5279726, 47.5342046 ], + [ 7.5279434, 47.5342121 ], + [ 7.5279146, 47.5342203 ], + [ 7.5278861, 47.534229 ], + [ 7.527858, 47.5342383 ], + [ 7.5278304, 47.5342482 ], + [ 7.5278033, 47.5342586 ], + [ 7.5277766, 47.5342696 ], + [ 7.5277504, 47.5342812 ], + [ 7.5277248, 47.5342933 ], + [ 7.5276997, 47.5343059 ], + [ 7.5276752, 47.5343191 ], + [ 7.5275856, 47.5343634 ], + [ 7.5271791, 47.5345647 ], + [ 7.5271612999999995, 47.5345745 ], + [ 7.5271438, 47.5345846 ], + [ 7.5271267, 47.534595 ], + [ 7.52711, 47.5346056 ], + [ 7.5270938, 47.5346166 ], + [ 7.5270745, 47.5346302 ], + [ 7.5270559, 47.5346443 ], + [ 7.527038, 47.5346587 ], + [ 7.5270206, 47.5346735 ], + [ 7.527004, 47.5346886 ], + [ 7.526988, 47.5347041 ], + [ 7.5269727, 47.5347198 ], + [ 7.5269582, 47.5347359 ], + [ 7.5269443, 47.5347523 ], + [ 7.5267454, 47.5349717 ], + [ 7.5267262, 47.5349913 ], + [ 7.5267064999999995, 47.5350105 ], + [ 7.5266862, 47.5350295 ], + [ 7.5266653, 47.5350483 ], + [ 7.526644, 47.5350668 ], + [ 7.526622, 47.5350849 ], + [ 7.5265996, 47.5351028 ], + [ 7.5261587, 47.5354076 ], + [ 7.5261251, 47.5354311 ], + [ 7.5260921, 47.5354549 ], + [ 7.5260597, 47.5354792 ], + [ 7.5260279, 47.5355038 ], + [ 7.5259968, 47.5355287 ], + [ 7.5259663, 47.535554 ], + [ 7.5259364, 47.5355797 ], + [ 7.5259070999999995, 47.5356057 ], + [ 7.5256859, 47.5358089 ], + [ 7.5256554, 47.535838 ], + [ 7.5256243, 47.5358668 ], + [ 7.5255924, 47.5358953 ], + [ 7.5255599, 47.5359233 ], + [ 7.5255267, 47.535951 ], + [ 7.5254928, 47.5359784 ], + [ 7.5254583, 47.5360053 ], + [ 7.525423, 47.5360319 ], + [ 7.5253872, 47.536058 ], + [ 7.5253507, 47.5360838 ], + [ 7.5253006, 47.5361086 ], + [ 7.5253195999999996, 47.5361324 ], + [ 7.5260858, 47.535968 ], + [ 7.5260941, 47.535994 ], + [ 7.5262741, 47.5365607 ], + [ 7.5263594, 47.5369593 ], + [ 7.5264307, 47.5373425 ], + [ 7.5264357, 47.5373692 ], + [ 7.5264538, 47.5374666 ], + [ 7.5265964, 47.5374649 ], + [ 7.5267073, 47.5379351 ], + [ 7.5268133, 47.5384022 ], + [ 7.5268867, 47.5383908 ], + [ 7.5269706, 47.5383784 ], + [ 7.5269996, 47.5385155 ], + [ 7.5270285999999995, 47.538745 ], + [ 7.5270656, 47.5391384 ], + [ 7.5271824, 47.5395165 ], + [ 7.5279109, 47.5393047 ], + [ 7.5279854, 47.539283 ], + [ 7.5280897, 47.5392526 ], + [ 7.5281632, 47.5392352 ], + [ 7.5282804, 47.5391972 ], + [ 7.5285125, 47.5391296 ], + [ 7.5287064, 47.5390733 ], + [ 7.5287881, 47.5390495 ], + [ 7.5290711, 47.5389672 ], + [ 7.5292345, 47.5389196 ], + [ 7.5293181, 47.5388953 ], + [ 7.5293574, 47.5388839 ], + [ 7.5294318, 47.5388623 ], + [ 7.5295098, 47.5388395 ], + [ 7.5298767, 47.5394248 ], + [ 7.5300349, 47.5393554 ], + [ 7.5301279999999995, 47.5393146 ], + [ 7.5301772, 47.539293 ], + [ 7.5301914, 47.5392868 ], + [ 7.5303547, 47.5392147 ], + [ 7.5305545, 47.5391265 ], + [ 7.5302424, 47.5386262 ], + [ 7.5302329, 47.538611 ], + [ 7.5304616, 47.5385392 ], + [ 7.5303403, 47.5381799 ], + [ 7.5300329, 47.5383006 ], + [ 7.5290528, 47.5372697 ], + [ 7.5295082, 47.5370526 ], + [ 7.5294311, 47.5369754 ], + [ 7.5293961, 47.5369401 ], + [ 7.5294085, 47.5369369 ], + [ 7.5294456, 47.5369265 ], + [ 7.5294822, 47.5369156 ], + [ 7.5295185, 47.536904 ], + [ 7.5298484, 47.5367871 ], + [ 7.5298680000000004, 47.5367796 ], + [ 7.529888, 47.5367726 ], + [ 7.5299084, 47.5367663 ], + [ 7.5299293, 47.5367605 ], + [ 7.5299504, 47.5367554 ], + [ 7.5299719, 47.5367509 ], + [ 7.5299937, 47.5367471 ], + [ 7.5300156000000005, 47.5367439 ], + [ 7.5300378, 47.5367413 ], + [ 7.5300601, 47.5367394 ], + [ 7.5300825, 47.5367381 ], + [ 7.530105, 47.5367375 ], + [ 7.5301275, 47.5367376 ], + [ 7.5301499, 47.5367383 ], + [ 7.5301723, 47.5367397 ], + [ 7.5301946, 47.5367417 ], + [ 7.5302167, 47.5367444 ], + [ 7.5302387, 47.5367478 ], + [ 7.5302662, 47.536751699999996 ], + [ 7.5302935, 47.5367562 ], + [ 7.5303205, 47.5367614 ], + [ 7.5303473, 47.5367672 ], + [ 7.5303737, 47.5367737 ], + [ 7.5303998, 47.5367807 ], + [ 7.5304256, 47.5367884 ], + [ 7.5304509, 47.5367966 ], + [ 7.5304758, 47.5368055 ], + [ 7.5305002, 47.5368149 ], + [ 7.5305241, 47.5368249 ], + [ 7.5305475, 47.5368354 ], + [ 7.5305704, 47.5368465 ], + [ 7.5305926, 47.5368581 ], + [ 7.5306143, 47.5368703 ], + [ 7.5306353, 47.5368829 ], + [ 7.5306557, 47.536896 ], + [ 7.5306754, 47.5369096 ], + [ 7.530701, 47.5369344 ], + [ 7.5308014, 47.5370318 ], + [ 7.531222, 47.5375106 ], + [ 7.5318634, 47.5380722 ], + [ 7.5322039, 47.5382684 ], + [ 7.5324175, 47.5383927 ], + [ 7.5325887, 47.5385169 ], + [ 7.5327474, 47.5386552 ], + [ 7.5327775, 47.5386814 ], + [ 7.532902, 47.5388626 ], + [ 7.5330326, 47.5391405 ], + [ 7.5332128, 47.5395272 ], + [ 7.5332544, 47.5396163 ], + [ 7.5334435, 47.5400211 ], + [ 7.5336966, 47.540562 ], + [ 7.5337945, 47.5408891 ], + [ 7.5339206, 47.5412827 ], + [ 7.533969, 47.54146 ], + [ 7.5339697999999995, 47.5414627 ], + [ 7.5340081, 47.5414574 ], + [ 7.5344324, 47.5413983 ], + [ 7.5344799, 47.5413917 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns268", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Allschwilerwald", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Allschwilerwald", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Allschwilerwald", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Allschwilerwald", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.3136839, 46.4866421 ], + [ 7.3136001, 46.484288 ], + [ 7.3133381, 46.4819402 ], + [ 7.3128987, 46.4796051 ], + [ 7.3122829, 46.4772891 ], + [ 7.3114926, 46.4749985 ], + [ 7.31053, 46.4727396 ], + [ 7.3093976, 46.4705186 ], + [ 7.3080986, 46.4683415 ], + [ 7.3066367, 46.4662144 ], + [ 7.3050157, 46.4641431 ], + [ 7.3032403, 46.4621332 ], + [ 7.3013151, 46.4601902 ], + [ 7.2992456, 46.4583195 ], + [ 7.2970374, 46.4565262 ], + [ 7.2946966, 46.4548151 ], + [ 7.2922296, 46.453191 ], + [ 7.2896431, 46.4516583 ], + [ 7.2869442, 46.4502212 ], + [ 7.2841404, 46.4488836 ], + [ 7.2812392, 46.4476493 ], + [ 7.2782487, 46.4465214 ], + [ 7.275177, 46.4455033 ], + [ 7.2720326, 46.4445975 ], + [ 7.2688239, 46.4438067 ], + [ 7.2655599, 46.4431329 ], + [ 7.2622494, 46.4425781 ], + [ 7.2589016, 46.4421437 ], + [ 7.2555254, 46.4418309 ], + [ 7.2521302, 46.4416406 ], + [ 7.2487253, 46.4415733 ], + [ 7.24532, 46.4416291 ], + [ 7.2419235, 46.441808 ], + [ 7.2385452, 46.4421094 ], + [ 7.2351943, 46.4425326 ], + [ 7.2318799, 46.4430763 ], + [ 7.2286112, 46.443739 ], + [ 7.225397, 46.444519 ], + [ 7.2222463, 46.4454142 ], + [ 7.2191674, 46.446422 ], + [ 7.216169, 46.4475397 ], + [ 7.2132591999999995, 46.4487644 ], + [ 7.210446, 46.4500925 ], + [ 7.207737, 46.4515205 ], + [ 7.2051397999999995, 46.4530444 ], + [ 7.2026613, 46.4546602 ], + [ 7.2003085, 46.4563634 ], + [ 7.1980877, 46.4581493 ], + [ 7.1960049999999995, 46.460013000000004 ], + [ 7.1940662, 46.4619495 ], + [ 7.1922766, 46.4639534 ], + [ 7.1906411, 46.4660192 ], + [ 7.1891642000000004, 46.4681414 ], + [ 7.1878499, 46.470314 ], + [ 7.1867019, 46.4725312 ], + [ 7.1857233, 46.4747868 ], + [ 7.1849169, 46.4770747 ], + [ 7.1842848, 46.4793887 ], + [ 7.1838289, 46.4817223 ], + [ 7.1835503, 46.4840692 ], + [ 7.1834499, 46.4864229 ], + [ 7.1835281, 46.4887771 ], + [ 7.1837845, 46.4911252 ], + [ 7.1842185, 46.4934608 ], + [ 7.1848289, 46.4957776 ], + [ 7.1856142, 46.498069 ], + [ 7.186572, 46.500329 ], + [ 7.1877, 46.5025512 ], + [ 7.1889949, 46.5047296 ], + [ 7.1904533, 46.506858199999996 ], + [ 7.1920711, 46.5089312 ], + [ 7.193844, 46.5109428 ], + [ 7.1957671, 46.5128876 ], + [ 7.1978351, 46.5147602 ], + [ 7.2000424, 46.5165555 ], + [ 7.2023829, 46.5182685 ], + [ 7.2048502, 46.5198945 ], + [ 7.2074376, 46.5214292 ], + [ 7.2101379, 46.5228682 ], + [ 7.2129437, 46.5242076 ], + [ 7.2158474, 46.5254437 ], + [ 7.218841, 46.5265731 ], + [ 7.2219162, 46.5275928 ], + [ 7.2250646, 46.5285 ], + [ 7.2282776, 46.529292 ], + [ 7.2315464, 46.5299669 ], + [ 7.2348619, 46.5305226 ], + [ 7.2382151, 46.5309577 ], + [ 7.2415967, 46.531271 ], + [ 7.2449974, 46.5314616 ], + [ 7.248408, 46.5315291 ], + [ 7.251819, 46.5314731 ], + [ 7.2552211, 46.5312939 ], + [ 7.2586049, 46.530992 ], + [ 7.2619611, 46.5305682 ], + [ 7.2652805, 46.5300236 ], + [ 7.268554, 46.5293598 ], + [ 7.2717725, 46.5285786 ], + [ 7.2749274, 46.527682 ], + [ 7.2780097, 46.5266727 ], + [ 7.2810113, 46.5255533 ], + [ 7.2839237, 46.524327 ], + [ 7.2867389, 46.5229971 ], + [ 7.2894494, 46.5215672 ], + [ 7.2920476, 46.5200413 ], + [ 7.2945263, 46.5184236 ], + [ 7.2968789, 46.5167184 ], + [ 7.2990989, 46.5149306 ], + [ 7.3011801, 46.513065 ], + [ 7.3031169, 46.5111267 ], + [ 7.3049039, 46.5091211 ], + [ 7.3065364, 46.5070536 ], + [ 7.3080098, 46.5049299 ], + [ 7.3093201, 46.5027559 ], + [ 7.3104637, 46.5005375 ], + [ 7.3114375, 46.4982808 ], + [ 7.3122389, 46.495992 ], + [ 7.3128657, 46.4936773 ], + [ 7.3133162, 46.4913432 ], + [ 7.3135892, 46.488996 ], + [ 7.3136839, 46.4866421 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSGK001", + "country" : "CHE", + "name" : [ + { + "text" : "LSGK Saanen", + "lang" : "de-CH" + }, + { + "text" : "LSGK Saanen", + "lang" : "fr-CH" + }, + { + "text" : "LSGK Saanen", + "lang" : "it-CH" + }, + { + "text" : "LSGK Saanen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Gstaad Airport", + "lang" : "de-CH" + }, + { + "text" : "Gstaad Airport", + "lang" : "fr-CH" + }, + { + "text" : "Gstaad Airport", + "lang" : "it-CH" + }, + { + "text" : "Gstaad Airport", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Thomas Rösti", + "lang" : "de-CH" + }, + { + "text" : "Thomas Rösti", + "lang" : "fr-CH" + }, + { + "text" : "Thomas Rösti", + "lang" : "it-CH" + }, + { + "text" : "Thomas Rösti", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.gstaad-airport.ch/en/", + "email" : "info@gstaad-airport.ch", + "phone" : "0041337483322", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.1810254, 47.486146 ], + [ 8.181018, 47.4860048 ], + [ 8.1809997, 47.4858641 ], + [ 8.1809705, 47.4857242 ], + [ 8.1809306, 47.4855856 ], + [ 8.1808801, 47.4854485 ], + [ 8.180819, 47.4853135 ], + [ 8.1807476, 47.4851808 ], + [ 8.180666, 47.4850508 ], + [ 8.1805745, 47.4849239 ], + [ 8.1804734, 47.4848004 ], + [ 8.1803628, 47.4846806 ], + [ 8.1802432, 47.484565 ], + [ 8.1801147, 47.4844537 ], + [ 8.1799779, 47.4843472 ], + [ 8.179833, 47.4842456 ], + [ 8.1796805, 47.4841494 ], + [ 8.1795208, 47.4840586 ], + [ 8.1793543, 47.4839737 ], + [ 8.1791815, 47.4838948 ], + [ 8.1790028, 47.4838221 ], + [ 8.1788187, 47.4837559 ], + [ 8.1786298, 47.4836963 ], + [ 8.1784365, 47.4836435 ], + [ 8.1782394, 47.4835976 ], + [ 8.1780391, 47.4835587 ], + [ 8.177836, 47.483527 ], + [ 8.1776307, 47.4835026 ], + [ 8.1774239, 47.4834855 ], + [ 8.177216, 47.4834757 ], + [ 8.1770077, 47.4834734 ], + [ 8.1767994, 47.4834784 ], + [ 8.1765918, 47.4834908 ], + [ 8.1763855, 47.4835105 ], + [ 8.176181, 47.4835376 ], + [ 8.1759788, 47.4835719 ], + [ 8.1757796, 47.4836133 ], + [ 8.1755838, 47.4836617 ], + [ 8.175392, 47.4837169 ], + [ 8.1752048, 47.4837789 ], + [ 8.1750226, 47.4838475 ], + [ 8.1748459, 47.4839224 ], + [ 8.1746753, 47.4840035 ], + [ 8.1745112, 47.4840906 ], + [ 8.174354, 47.4841833 ], + [ 8.1742042, 47.4842815 ], + [ 8.1740622, 47.4843849 ], + [ 8.1739283, 47.4844932 ], + [ 8.173803, 47.484606 ], + [ 8.1736866, 47.4847232 ], + [ 8.1735794, 47.4848443 ], + [ 8.1734817, 47.4849691 ], + [ 8.1733937, 47.4850972 ], + [ 8.1733158, 47.4852282 ], + [ 8.1732481, 47.4853618 ], + [ 8.1731907, 47.4854976 ], + [ 8.173144, 47.4856352 ], + [ 8.1731079, 47.4857744 ], + [ 8.1730827, 47.4859146 ], + [ 8.1730683, 47.4860555 ], + [ 8.1730648, 47.4861967 ], + [ 8.1730722, 47.4863379 ], + [ 8.1730905, 47.4864786 ], + [ 8.1731196, 47.4866185 ], + [ 8.1731595, 47.4867572 ], + [ 8.17321, 47.4868942 ], + [ 8.1732711, 47.4870292 ], + [ 8.1733425, 47.487162 ], + [ 8.173424, 47.487292 ], + [ 8.1735155, 47.4874189 ], + [ 8.1736167, 47.4875424 ], + [ 8.1737272, 47.4876621 ], + [ 8.1738469, 47.4877778 ], + [ 8.1739753, 47.4878891 ], + [ 8.1741121, 47.4879956 ], + [ 8.174257, 47.4880972 ], + [ 8.1744095, 47.4881934 ], + [ 8.1745692, 47.4882842 ], + [ 8.1747357, 47.4883691 ], + [ 8.1749086, 47.488448 ], + [ 8.1750873, 47.4885207 ], + [ 8.1752713, 47.4885869 ], + [ 8.1754603, 47.4886465 ], + [ 8.1756536, 47.4886994 ], + [ 8.1758507, 47.4887453 ], + [ 8.176051, 47.4887841 ], + [ 8.1762541, 47.4888158 ], + [ 8.1764594, 47.4888402 ], + [ 8.1766663, 47.4888574 ], + [ 8.1768742, 47.4888671 ], + [ 8.1770825, 47.4888695 ], + [ 8.1772908, 47.4888645 ], + [ 8.1774984, 47.4888521 ], + [ 8.1777048, 47.4888323 ], + [ 8.1779093, 47.4888052 ], + [ 8.1781115, 47.488771 ], + [ 8.1783108, 47.4887296 ], + [ 8.1785065, 47.4886812 ], + [ 8.1786983, 47.4886259 ], + [ 8.1788856, 47.4885639 ], + [ 8.1790678, 47.4884953 ], + [ 8.1792444, 47.4884204 ], + [ 8.1794151, 47.4883393 ], + [ 8.1795792, 47.4882522 ], + [ 8.1797364, 47.4881595 ], + [ 8.1798862, 47.4880613 ], + [ 8.1800282, 47.4879579 ], + [ 8.1801621, 47.4878496 ], + [ 8.1802874, 47.4877367 ], + [ 8.1804038, 47.4876196 ], + [ 8.180511, 47.4874984 ], + [ 8.1806087, 47.4873737 ], + [ 8.1806966, 47.4872456 ], + [ 8.1807745, 47.4871146 ], + [ 8.1808423, 47.486981 ], + [ 8.1808996, 47.4868452 ], + [ 8.1809463, 47.4867075 ], + [ 8.1809823, 47.4865684 ], + [ 8.1810076, 47.4864281 ], + [ 8.181022, 47.4862872 ], + [ 8.1810254, 47.486146 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0096", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Riniken Nord", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Riniken Nord", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Riniken Nord", + "lang" : "it-CH" + }, + { + "text" : "Substation Riniken Nord", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.1383716, 46.2968437 ], + [ 6.1381333, 46.2970822 ], + [ 6.1378584, 46.2970415 ], + [ 6.1376292, 46.2970707 ], + [ 6.1373389, 46.2970615 ], + [ 6.1367191, 46.2971862 ], + [ 6.1363685, 46.2972307 ], + [ 6.1362627, 46.297278 ], + [ 6.1361194, 46.2973068 ], + [ 6.1351807, 46.2977616 ], + [ 6.1350955, 46.2977996 ], + [ 6.1350935, 46.2978009 ], + [ 6.1350878, 46.2978065 ], + [ 6.1350786, 46.297811 ], + [ 6.1350656, 46.2978198 ], + [ 6.1343376, 46.2984978 ], + [ 6.134294, 46.2985875 ], + [ 6.1342526, 46.2986282 ], + [ 6.1341986, 46.2987834 ], + [ 6.1339479, 46.2992986 ], + [ 6.1339446, 46.299514 ], + [ 6.1339105, 46.299612 ], + [ 6.1339407, 46.29976 ], + [ 6.1339347, 46.3001438 ], + [ 6.1340887, 46.3004844 ], + [ 6.1341152, 46.300614 ], + [ 6.1341865, 46.3007007 ], + [ 6.1342993, 46.3009503 ], + [ 6.1347639, 46.3014032 ], + [ 6.134838, 46.3014932 ], + [ 6.1348648, 46.3015151 ], + [ 6.1348995, 46.3015354 ], + [ 6.1350059, 46.3016391 ], + [ 6.1350349, 46.3016595 ], + [ 6.1356669, 46.3019842 ], + [ 6.1358326, 46.3020811 ], + [ 6.1358815, 46.3020944 ], + [ 6.136017, 46.302164 ], + [ 6.1368233, 46.3023508 ], + [ 6.1370113, 46.302402 ], + [ 6.1370497, 46.3024033 ], + [ 6.1371765, 46.3024326 ], + [ 6.138077, 46.3024371 ], + [ 6.1382762, 46.3024437 ], + [ 6.1383036, 46.3024383 ], + [ 6.1383989, 46.3024388 ], + [ 6.1388674, 46.3023355 ], + [ 6.138872, 46.3023391 ], + [ 6.1402331, 46.3028056 ], + [ 6.1417482, 46.3028758 ], + [ 6.1431867, 46.302539 ], + [ 6.1432466, 46.3025151 ], + [ 6.1441954, 46.3019842 ], + [ 6.1448133, 46.3013263 ], + [ 6.1457702, 46.3010918 ], + [ 6.1467398, 46.3005752 ], + [ 6.1467783, 46.3005469 ], + [ 6.1475869, 46.2996561 ], + [ 6.1478422, 46.2986185 ], + [ 6.1475056, 46.2975922 ], + [ 6.1466282, 46.2967332 ], + [ 6.1465794, 46.2967012 ], + [ 6.1455743, 46.2962232 ], + [ 6.1444054, 46.2959841 ], + [ 6.143187, 46.2960072 ], + [ 6.1422179, 46.2962461 ], + [ 6.1411431, 46.2960851 ], + [ 6.1396485, 46.2962733 ], + [ 6.1383716, 46.2968437 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-27", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.746475, 47.4370407 ], + [ 7.7465156, 47.4369938 ], + [ 7.7464772, 47.4369752 ], + [ 7.7464348, 47.4370246 ], + [ 7.7461277, 47.4373753 ], + [ 7.7456519, 47.4377269 ], + [ 7.7453257, 47.4376875 ], + [ 7.7449945, 47.4376366 ], + [ 7.744781, 47.4375148 ], + [ 7.7444207, 47.4372384 ], + [ 7.7438526, 47.4375376 ], + [ 7.7435449, 47.4373712 ], + [ 7.7431777, 47.4370594 ], + [ 7.7429551, 47.4367734 ], + [ 7.742601, 47.4364596 ], + [ 7.7425028000000005, 47.436351 ], + [ 7.7424638, 47.4363675 ], + [ 7.7425616999999995, 47.4364767 ], + [ 7.742915, 47.4367897 ], + [ 7.7431380999999995, 47.437076 ], + [ 7.7435118, 47.437393900000004 ], + [ 7.7438519, 47.4375772 ], + [ 7.7444147999999995, 47.4372816 ], + [ 7.7447484, 47.4375376 ], + [ 7.7449739, 47.437665 ], + [ 7.7453164, 47.4377186 ], + [ 7.7456689, 47.4377611 ], + [ 7.7461662, 47.4373933 ], + [ 7.746475, 47.4370407 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns209", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Wildenstein", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Wildenstein", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Wildenstein", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Wildenstein", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5343465, 47.4774965 ], + [ 7.5345561, 47.4773492 ], + [ 7.5347105, 47.4772109 ], + [ 7.5349753, 47.4770344 ], + [ 7.5350443, 47.4769685 ], + [ 7.5350666, 47.476966 ], + [ 7.5351461, 47.4769558 ], + [ 7.5354035, 47.4769228 ], + [ 7.5367439, 47.476679 ], + [ 7.5374316, 47.4765737 ], + [ 7.5378392, 47.4768161 ], + [ 7.5385628, 47.477082 ], + [ 7.5385858, 47.4770921 ], + [ 7.5392092, 47.477367 ], + [ 7.5392121, 47.4773906 ], + [ 7.5392289, 47.477386 ], + [ 7.5393558, 47.4774359 ], + [ 7.5397305, 47.4775833 ], + [ 7.5397544, 47.477596 ], + [ 7.5398496999999995, 47.4776467 ], + [ 7.5401093, 47.4777854 ], + [ 7.5405323, 47.4780435 ], + [ 7.5406604, 47.4780936 ], + [ 7.5408142, 47.4781509 ], + [ 7.5408533, 47.4777765 ], + [ 7.5409509, 47.477678 ], + [ 7.5409956000000005, 47.4776264 ], + [ 7.5414626, 47.4777687 ], + [ 7.5415975, 47.4778025 ], + [ 7.5416853, 47.4778244 ], + [ 7.541773, 47.4778463 ], + [ 7.5418219, 47.4778586 ], + [ 7.5418591, 47.4778592 ], + [ 7.5419434, 47.4778606 ], + [ 7.5420277, 47.4778619 ], + [ 7.542151, 47.4778639 ], + [ 7.5421486, 47.4778414 ], + [ 7.5422524, 47.477836 ], + [ 7.542267, 47.4777553 ], + [ 7.5423496, 47.4776992 ], + [ 7.5426443, 47.4777105 ], + [ 7.5425577, 47.4776128 ], + [ 7.542746, 47.4775526 ], + [ 7.5428596, 47.477517 ], + [ 7.5429089000000005, 47.4775563 ], + [ 7.5434199, 47.477322 ], + [ 7.5431034, 47.4771128 ], + [ 7.543142, 47.4770308 ], + [ 7.5431996, 47.4769082 ], + [ 7.5430373, 47.4765987 ], + [ 7.5430277, 47.4765824 ], + [ 7.543014, 47.476559 ], + [ 7.5423068, 47.476728 ], + [ 7.5420066, 47.4767642 ], + [ 7.5417573, 47.4767526 ], + [ 7.5415141, 47.4767063 ], + [ 7.5408786, 47.4765058 ], + [ 7.5405066, 47.4764186 ], + [ 7.5397847, 47.4763408 ], + [ 7.5394891, 47.4762977 ], + [ 7.5389664, 47.4762175 ], + [ 7.5389432, 47.4762143 ], + [ 7.5389202, 47.4762106 ], + [ 7.5388974, 47.4762064 ], + [ 7.5388748, 47.4762017 ], + [ 7.5388524, 47.4761965 ], + [ 7.5388302, 47.4761909 ], + [ 7.5388084, 47.4761847 ], + [ 7.5387868000000005, 47.4761781 ], + [ 7.5387656, 47.4761711 ], + [ 7.5387415, 47.4761628 ], + [ 7.5387178, 47.476154 ], + [ 7.5386946, 47.4761446 ], + [ 7.5386719, 47.4761347 ], + [ 7.5386497, 47.4761241 ], + [ 7.5386282, 47.4761131 ], + [ 7.5386071999999995, 47.4761015 ], + [ 7.5385869, 47.4760894 ], + [ 7.5385673, 47.4760768 ], + [ 7.5385483, 47.4760638 ], + [ 7.5385301, 47.4760503 ], + [ 7.5385124999999995, 47.4760363 ], + [ 7.5384958, 47.4760219 ], + [ 7.5384798, 47.4760071 ], + [ 7.5384647000000005, 47.475992 ], + [ 7.5384503, 47.4759764 ], + [ 7.5384367999999995, 47.4759605 ], + [ 7.5384242, 47.4759443 ], + [ 7.5384124, 47.4759278 ], + [ 7.5384016, 47.4759111 ], + [ 7.538396, 47.4759001 ], + [ 7.5383905, 47.4758892 ], + [ 7.5383851, 47.4758782 ], + [ 7.5383256, 47.4758129 ], + [ 7.5383184, 47.4758121 ], + [ 7.5383292, 47.4757589 ], + [ 7.5383359, 47.4757051 ], + [ 7.5383374, 47.4756934 ], + [ 7.5383367, 47.4756784 ], + [ 7.538335, 47.4756634 ], + [ 7.5383324, 47.4756485 ], + [ 7.5383289, 47.4756337 ], + [ 7.5383245, 47.4756189 ], + [ 7.5383192, 47.4756043 ], + [ 7.538313, 47.4755899 ], + [ 7.5383059, 47.4755757 ], + [ 7.5382979, 47.4755616 ], + [ 7.5382891, 47.4755478 ], + [ 7.5382795, 47.4755343 ], + [ 7.538269, 47.4755211 ], + [ 7.5382577, 47.4755081 ], + [ 7.5382456, 47.4754955 ], + [ 7.5382327, 47.4754833 ], + [ 7.5382182, 47.4754713 ], + [ 7.5382031, 47.4754596 ], + [ 7.5381873, 47.4754484 ], + [ 7.5381709, 47.4754376 ], + [ 7.5381539, 47.4754272 ], + [ 7.5381363, 47.4754173 ], + [ 7.5381181999999995, 47.4754078 ], + [ 7.5380996, 47.4753987 ], + [ 7.5380804999999995, 47.4753902 ], + [ 7.5380609, 47.4753821 ], + [ 7.5380364, 47.4753727 ], + [ 7.5380114, 47.4753639 ], + [ 7.537986, 47.4753556 ], + [ 7.5379601, 47.4753479 ], + [ 7.537934, 47.4753408 ], + [ 7.5379074, 47.4753343 ], + [ 7.5378806, 47.4753284 ], + [ 7.5378535, 47.4753231 ], + [ 7.5378262, 47.4753184 ], + [ 7.5377986, 47.4753143 ], + [ 7.5377709, 47.4753108 ], + [ 7.537743, 47.475308 ], + [ 7.537715, 47.4753058 ], + [ 7.5376869, 47.4753042 ], + [ 7.5376587, 47.4753033 ], + [ 7.5376305, 47.475303 ], + [ 7.5376023, 47.4753034 ], + [ 7.5375629, 47.4753052 ], + [ 7.5375233999999995, 47.4753075 ], + [ 7.5374841, 47.4753104 ], + [ 7.5374448, 47.4753138 ], + [ 7.5374057, 47.4753177 ], + [ 7.5373666, 47.4753222 ], + [ 7.5373278, 47.4753272 ], + [ 7.537289, 47.4753328 ], + [ 7.5369163, 47.475382 ], + [ 7.5368664, 47.4753889 ], + [ 7.5368163, 47.4753953 ], + [ 7.536766, 47.475401 ], + [ 7.5367156, 47.4754061 ], + [ 7.5366651000000005, 47.4754106 ], + [ 7.5366145, 47.4754145 ], + [ 7.5365638, 47.4754178 ], + [ 7.5365129, 47.4754205 ], + [ 7.5364621, 47.4754225 ], + [ 7.5364112, 47.4754239 ], + [ 7.5363602, 47.4754247 ], + [ 7.5363093, 47.4754249 ], + [ 7.5362583, 47.4754244 ], + [ 7.5362074, 47.4754234 ], + [ 7.5361995, 47.4754231 ], + [ 7.5360958, 47.4754659 ], + [ 7.5357803, 47.4756422 ], + [ 7.5353877, 47.4759519 ], + [ 7.5351494, 47.4761282 ], + [ 7.5350479, 47.4761875 ], + [ 7.534988, 47.4762093 ], + [ 7.5348988, 47.4762626 ], + [ 7.5348536, 47.4762857 ], + [ 7.5348357, 47.4762948 ], + [ 7.5347854, 47.4763261 ], + [ 7.5347865, 47.4762805 ], + [ 7.5347729999999995, 47.4762311 ], + [ 7.5347548, 47.4761985 ], + [ 7.5346827, 47.4760831 ], + [ 7.5345876, 47.4759249 ], + [ 7.5345106, 47.4758052 ], + [ 7.5346896999999995, 47.4753773 ], + [ 7.5347303, 47.4752801 ], + [ 7.5339701, 47.4751977 ], + [ 7.5332042999999995, 47.4751146 ], + [ 7.5327145, 47.4750615 ], + [ 7.5326523, 47.4750545 ], + [ 7.53259, 47.475048 ], + [ 7.5325275, 47.4750419 ], + [ 7.532465, 47.4750362 ], + [ 7.531925, 47.4749878 ], + [ 7.5318728, 47.474983 ], + [ 7.5318207, 47.4749776 ], + [ 7.5317688, 47.4749717 ], + [ 7.5317169, 47.4749653 ], + [ 7.5316653, 47.4749583 ], + [ 7.5316138, 47.4749507 ], + [ 7.5315625, 47.4749426 ], + [ 7.5315114, 47.4749339 ], + [ 7.5314605, 47.4749248 ], + [ 7.5314098, 47.474915 ], + [ 7.5313593, 47.4749048 ], + [ 7.5313349, 47.4750308 ], + [ 7.5312373, 47.4755762 ], + [ 7.5311951, 47.4758116 ], + [ 7.5315093, 47.4758118 ], + [ 7.5318442999999995, 47.475789 ], + [ 7.5321973, 47.4757885 ], + [ 7.5331927, 47.4758582 ], + [ 7.5336698, 47.4759073 ], + [ 7.5340678, 47.4759504 ], + [ 7.5344574, 47.4759575 ], + [ 7.5344662, 47.4759848 ], + [ 7.5344792, 47.4760164 ], + [ 7.5346473, 47.4764257 ], + [ 7.534384, 47.4766248 ], + [ 7.5342443, 47.4766709 ], + [ 7.5339765, 47.4767592 ], + [ 7.5336535, 47.4768657 ], + [ 7.5336235, 47.4768756 ], + [ 7.5334731999999995, 47.4769252 ], + [ 7.5334242, 47.4769413 ], + [ 7.5331644, 47.4769948 ], + [ 7.5331513, 47.4769974 ], + [ 7.5328436, 47.4770607 ], + [ 7.532326, 47.4771672 ], + [ 7.5318236, 47.4772705 ], + [ 7.5317342, 47.4772889 ], + [ 7.5316754, 47.4772959 ], + [ 7.5315448, 47.4773116 ], + [ 7.5313557, 47.4773342 ], + [ 7.5311126, 47.4773632 ], + [ 7.5310842000000005, 47.4773666 ], + [ 7.5309206, 47.4773862 ], + [ 7.5306019, 47.4773274 ], + [ 7.5304332, 47.4772963 ], + [ 7.5302366, 47.47726 ], + [ 7.530056, 47.4772267 ], + [ 7.5299408, 47.4772159 ], + [ 7.5293076, 47.4771567 ], + [ 7.5291502, 47.477142 ], + [ 7.5290463, 47.4771322 ], + [ 7.5288826, 47.4771169 ], + [ 7.5288166, 47.4771107 ], + [ 7.5289941, 47.4776069 ], + [ 7.5291027, 47.4779109 ], + [ 7.5291192, 47.4779569 ], + [ 7.5297678999999995, 47.4780028 ], + [ 7.530322, 47.478327 ], + [ 7.5311006, 47.4783057 ], + [ 7.5317209, 47.4783017 ], + [ 7.5331011, 47.478295 ], + [ 7.533489, 47.4780095 ], + [ 7.53353, 47.4779827 ], + [ 7.5341133, 47.4776277 ], + [ 7.5343465, 47.4774965 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns327", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Büttenenloch - Stapflen", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Büttenenloch - Stapflen", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Büttenenloch - Stapflen", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Büttenenloch - Stapflen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5325689, 47.4546772 ], + [ 7.5325625, 47.4547001 ], + [ 7.5325552, 47.454723 ], + [ 7.5325471, 47.4547457 ], + [ 7.5325381, 47.4547683 ], + [ 7.5325283, 47.4547907 ], + [ 7.5325177, 47.4548129 ], + [ 7.5324552, 47.4550044 ], + [ 7.5325447, 47.4550224 ], + [ 7.533285, 47.4551713 ], + [ 7.5341147, 47.4553725 ], + [ 7.5343585, 47.4554343 ], + [ 7.5344113, 47.4552837 ], + [ 7.5344294, 47.4552326 ], + [ 7.5344429, 47.4551942 ], + [ 7.5344804, 47.4550879 ], + [ 7.5345039, 47.4550214 ], + [ 7.5345989, 47.4547746 ], + [ 7.5343702, 47.4547036 ], + [ 7.5336796, 47.4544895 ], + [ 7.5336123, 47.4545949 ], + [ 7.5335397, 47.4545738 ], + [ 7.5327721, 47.4543402 ], + [ 7.5327129, 47.4543221 ], + [ 7.5326925, 47.454316 ], + [ 7.5326006, 47.4545715 ], + [ 7.5325793, 47.4546309 ], + [ 7.5325745, 47.4546541 ], + [ 7.5325689, 47.4546772 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns132", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Blauenweid", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Blauenweid", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Blauenweid", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Blauenweid", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5406107, 47.4449578 ], + [ 7.5408335, 47.444672 ], + [ 7.5398504, 47.4445365 ], + [ 7.5392548, 47.4444787 ], + [ 7.5389894, 47.4444789 ], + [ 7.5387292, 47.4445408 ], + [ 7.5406107, 47.4449578 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr065", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Egglen", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Egglen", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Egglen", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Egglen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8425362, 47.4360115 ], + [ 7.8425235, 47.4363875 ], + [ 7.8425212, 47.4364784 ], + [ 7.843133, 47.4364499 ], + [ 7.8435179999999995, 47.4364116 ], + [ 7.8441205, 47.4362906 ], + [ 7.8441884, 47.4362296 ], + [ 7.8441578, 47.4361374 ], + [ 7.8439776, 47.4360851 ], + [ 7.8427309, 47.4359205 ], + [ 7.8425362, 47.4360115 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns064", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Rüti", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Rüti", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Rüti", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Rüti", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8238237999999996, 47.4621273 ], + [ 7.8238173, 47.4619861 ], + [ 7.8238, 47.4618454 ], + [ 7.8237718, 47.4617054 ], + [ 7.8237328, 47.4615666 ], + [ 7.8236832, 47.4614294 ], + [ 7.8236229999999995, 47.4612942 ], + [ 7.8235525, 47.4611613 ], + [ 7.8234718999999995, 47.461031 ], + [ 7.8233813, 47.4609038 ], + [ 7.823281, 47.46078 ], + [ 7.8231713, 47.4606599 ], + [ 7.8230525, 47.4605439 ], + [ 7.8229249, 47.4604322 ], + [ 7.8227888, 47.4603253 ], + [ 7.8226447, 47.4602233 ], + [ 7.8224929, 47.4601266 ], + [ 7.8223339, 47.4600353 ], + [ 7.822168, 47.4599499 ], + [ 7.8219958, 47.4598704 ], + [ 7.8218176, 47.4597972 ], + [ 7.8216341, 47.4597304 ], + [ 7.8214457, 47.4596702 ], + [ 7.8212528, 47.4596168 ], + [ 7.8210561, 47.4595703 ], + [ 7.8208561, 47.4595308 ], + [ 7.8206534, 47.4594985 ], + [ 7.8204484, 47.4594735 ], + [ 7.8202418, 47.4594557 ], + [ 7.820034, 47.4594453 ], + [ 7.8198258, 47.4594423 ], + [ 7.8196176, 47.4594467 ], + [ 7.81941, 47.4594585 ], + [ 7.8192036, 47.4594776 ], + [ 7.818999, 47.459504 ], + [ 7.8187967, 47.4595376 ], + [ 7.8185973, 47.4595784 ], + [ 7.8184013, 47.4596262 ], + [ 7.8182092, 47.4596809 ], + [ 7.8180217, 47.4597423 ], + [ 7.8178391, 47.4598103 ], + [ 7.817662, 47.4598847 ], + [ 7.8174909, 47.4599653 ], + [ 7.8173262999999995, 47.4600518 ], + [ 7.8171686, 47.4601441 ], + [ 7.8170182, 47.4602418 ], + [ 7.8168755, 47.4603448 ], + [ 7.816741, 47.460452599999996 ], + [ 7.816615, 47.4605651 ], + [ 7.8164979, 47.4606819 ], + [ 7.8163899, 47.4608027 ], + [ 7.8162914, 47.4609272 ], + [ 7.8162026000000004, 47.461055 ], + [ 7.8161238, 47.4611857 ], + [ 7.8160552, 47.4613191 ], + [ 7.815997, 47.4614548 ], + [ 7.8159494, 47.4615923 ], + [ 7.8159124, 47.4617313 ], + [ 7.8158862, 47.4618714 ], + [ 7.8158709, 47.4620123 ], + [ 7.8158664, 47.4621535 ], + [ 7.8158729000000005, 47.4622947 ], + [ 7.8158902, 47.4624355 ], + [ 7.8159184, 47.4625755 ], + [ 7.8159573, 47.4627142 ], + [ 7.8160069, 47.4628515 ], + [ 7.8160671, 47.4629867 ], + [ 7.8161375, 47.4631196 ], + [ 7.8162182, 47.4632499 ], + [ 7.8163088, 47.4633771 ], + [ 7.816409, 47.4635009 ], + [ 7.8165187, 47.463621 ], + [ 7.8166375, 47.463737 ], + [ 7.8167651, 47.4638487 ], + [ 7.8169012, 47.4639557 ], + [ 7.8170453, 47.4640576 ], + [ 7.8171971, 47.4641544 ], + [ 7.8173562, 47.4642456 ], + [ 7.817522, 47.4643311 ], + [ 7.8176943, 47.4644105 ], + [ 7.8178724, 47.4644837 ], + [ 7.818056, 47.4645506 ], + [ 7.8182444, 47.4646107 ], + [ 7.8184373, 47.4646642 ], + [ 7.8186339, 47.4647107 ], + [ 7.818834, 47.4647502 ], + [ 7.8190368, 47.4647825 ], + [ 7.8192418, 47.4648075 ], + [ 7.8194484, 47.4648253 ], + [ 7.8196562, 47.4648357 ], + [ 7.8198644, 47.4648387 ], + [ 7.8200727, 47.4648343 ], + [ 7.8202802, 47.4648226 ], + [ 7.8204866, 47.4648034 ], + [ 7.8206913, 47.464777 ], + [ 7.8208936, 47.4647434 ], + [ 7.821093, 47.4647026 ], + [ 7.8212890999999996, 47.4646548 ], + [ 7.8214811, 47.4646001 ], + [ 7.8216687, 47.4645387 ], + [ 7.8218513, 47.4644707 ], + [ 7.8220284, 47.4643963 ], + [ 7.8221995, 47.4643157 ], + [ 7.8223641, 47.4642291 ], + [ 7.8225218, 47.4641369 ], + [ 7.8226721999999995, 47.4640391 ], + [ 7.8228149, 47.4639362 ], + [ 7.8229494, 47.4638283 ], + [ 7.8230754000000005, 47.4637158 ], + [ 7.8231925, 47.463599 ], + [ 7.8233005, 47.4634782 ], + [ 7.823399, 47.4633537 ], + [ 7.8234878, 47.4632259 ], + [ 7.8235665, 47.4630952 ], + [ 7.8236351, 47.4629618 ], + [ 7.8236933, 47.4628261 ], + [ 7.8237409, 47.4626886 ], + [ 7.8237779, 47.4625496 ], + [ 7.8238041, 47.4624094 ], + [ 7.8238194, 47.4622686 ], + [ 7.8238237999999996, 47.4621273 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SIS0001", + "country" : "CHE", + "name" : [ + { + "text" : "Gefängnis Sissach", + "lang" : "de-CH" + }, + { + "text" : "Gefängnis Sissach", + "lang" : "fr-CH" + }, + { + "text" : "Gefängnis Sissach", + "lang" : "it-CH" + }, + { + "text" : "Gefängnis Sissach", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Justizvollzug Basel-Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Amt für Justizvollzug Basel-Landschaft", + "lang" : "fr-CH" + }, + { + "text" : "Amt für Justizvollzug Basel-Landschaft", + "lang" : "it-CH" + }, + { + "text" : "Amt für Justizvollzug Basel-Landschaft", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Amtsleitung", + "lang" : "de-CH" + }, + { + "text" : "Amtsleitung", + "lang" : "fr-CH" + }, + { + "text" : "Amtsleitung", + "lang" : "it-CH" + }, + { + "text" : "Amtsleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Nicolas Pozar", + "lang" : "de-CH" + }, + { + "text" : "Nicolas Pozar", + "lang" : "fr-CH" + }, + { + "text" : "Nicolas Pozar", + "lang" : "it-CH" + }, + { + "text" : "Nicolas Pozar", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/sicherheitsdirektion/bv-sid/justizvollzug", + "email" : "kanzlei.ajv@bl.ch", + "phone" : "0041615529045", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P21DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.0004588, 46.3509763 ], + [ 7.0004284, 46.3508579 ], + [ 7.0003414, 46.3507609 ], + [ 7.0002319, 46.3507086 ], + [ 7.0002254, 46.3507085 ], + [ 7.0002151, 46.3507013 ], + [ 7.0002112, 46.3506995 ], + [ 7.0001995, 46.3506995 ], + [ 7.0001735, 46.3506994 ], + [ 7.0001606, 46.3506903 ], + [ 7.0001476, 46.3506903 ], + [ 7.0001216, 46.3506902 ], + [ 7.0001087, 46.3506811 ], + [ 7.0000957, 46.3506811 ], + [ 7.0000697, 46.350681 ], + [ 7.0000568, 46.3506719 ], + [ 7.0000438, 46.3506719 ], + [ 7.0000178, 46.3506718 ], + [ 7.0000049, 46.3506627 ], + [ 6.9999918999999995, 46.3506627 ], + [ 6.999966, 46.3506536 ], + [ 6.999953, 46.3506535 ], + [ 6.9999400000000005, 46.3506535 ], + [ 6.9999271, 46.3506444 ], + [ 6.9999011, 46.3506443 ], + [ 6.9998881, 46.3506443 ], + [ 6.9998752, 46.3506352 ], + [ 6.9998492, 46.3506351 ], + [ 6.9998363, 46.3506351 ], + [ 6.9998233, 46.350635 ], + [ 6.9997974, 46.3506259 ], + [ 6.9997844, 46.3506259 ], + [ 6.9997714, 46.3506258 ], + [ 6.9997454999999995, 46.3506167 ], + [ 6.9997325, 46.3506167 ], + [ 6.9997195, 46.3506166 ], + [ 6.9996935, 46.3506165 ], + [ 6.9996806, 46.3506075 ], + [ 6.9996676, 46.3506074 ], + [ 6.9996416, 46.3506073 ], + [ 6.9996286, 46.3506073 ], + [ 6.9996157, 46.3505982 ], + [ 6.9995897, 46.3505981 ], + [ 6.9995767, 46.3505981 ], + [ 6.9995636999999995, 46.350598 ], + [ 6.9995378, 46.3505979 ], + [ 6.9995248, 46.3505889 ], + [ 6.9995119, 46.3505888 ], + [ 6.9994859, 46.3505887 ], + [ 6.9994729, 46.3505887 ], + [ 6.9994599, 46.3505886 ], + [ 6.999434, 46.3505795 ], + [ 6.999421, 46.3505795 ], + [ 6.999408, 46.3505794 ], + [ 6.999382, 46.3505793 ], + [ 6.999369, 46.3505793 ], + [ 6.9993561, 46.3505702 ], + [ 6.9993301, 46.3505701 ], + [ 6.9993171, 46.3505701 ], + [ 6.9993041, 46.35057 ], + [ 6.9992782, 46.350569899999996 ], + [ 6.9992652, 46.3505609 ], + [ 6.9992523, 46.3505608 ], + [ 6.9992263, 46.3505607 ], + [ 6.9992133, 46.3505607 ], + [ 6.9992004, 46.3505516 ], + [ 6.9991744, 46.3505515 ], + [ 6.9991614, 46.3505515 ], + [ 6.9991484, 46.3505514 ], + [ 6.9991225, 46.3505423 ], + [ 6.9991095, 46.3505423 ], + [ 6.9990835, 46.3505422 ], + [ 6.9990706, 46.3505331 ], + [ 6.9990576, 46.3505331 ], + [ 6.9990316, 46.350533 ], + [ 6.9990187, 46.3505239 ], + [ 6.9990057, 46.3505239 ], + [ 6.9989797, 46.3505238 ], + [ 6.9989668, 46.3505147 ], + [ 6.9989408, 46.3505146 ], + [ 6.9989279, 46.3505056 ], + [ 6.9989149, 46.3505055 ], + [ 6.998889, 46.3505054 ], + [ 6.998876, 46.3504964 ], + [ 6.9988501, 46.3504963 ], + [ 6.9988371, 46.3504873 ], + [ 6.9988242, 46.3504872 ], + [ 6.9987981999999995, 46.3504871 ], + [ 6.9987853, 46.3504781 ], + [ 6.9987723, 46.350478 ], + [ 6.9987463, 46.3504779 ], + [ 6.9987333, 46.3504779 ], + [ 6.9987203000000004, 46.3504778 ], + [ 6.9986942, 46.3504867 ], + [ 6.9986813, 46.350486599999996 ], + [ 6.9986683, 46.350486599999996 ], + [ 6.9986552, 46.3504955 ], + [ 6.9986422, 46.3504955 ], + [ 6.9986291, 46.3505044 ], + [ 6.9986161, 46.3505134 ], + [ 6.998603, 46.3505223 ], + [ 6.99859, 46.3505313 ], + [ 6.9985769, 46.3505402 ], + [ 6.9985638, 46.3505492 ], + [ 6.9985508, 46.3505581 ], + [ 6.9985377, 46.3505671 ], + [ 6.9985246, 46.350576 ], + [ 6.9985116, 46.3505849 ], + [ 6.9984985, 46.3505939 ], + [ 6.9984854, 46.3506028 ], + [ 6.9984724, 46.3506118 ], + [ 6.9984593, 46.3506207 ], + [ 6.9984462, 46.3506387 ], + [ 6.9984201, 46.3506476 ], + [ 6.9984071, 46.3506565 ], + [ 6.998394, 46.3506654 ], + [ 6.9983809, 46.3506744 ], + [ 6.9983679, 46.3506743 ], + [ 6.9983549, 46.3506833 ], + [ 6.9983418, 46.3506922 ], + [ 6.9983287999999995, 46.3507012 ], + [ 6.9983027, 46.3507101 ], + [ 6.9982896, 46.350719 ], + [ 6.9982766, 46.350719 ], + [ 6.9982636, 46.3507279 ], + [ 6.9982375, 46.3507368 ], + [ 6.9982245, 46.3507368 ], + [ 6.9982115, 46.3507457 ], + [ 6.9981984, 46.3507546 ], + [ 6.9981724, 46.3507545 ], + [ 6.9981594, 46.3507635 ], + [ 6.9981463999999995, 46.3507634 ], + [ 6.9981203999999995, 46.3507633 ], + [ 6.9981073, 46.3507723 ], + [ 6.9980943, 46.3507722 ], + [ 6.9980813, 46.3507722 ], + [ 6.9980554, 46.3507721 ], + [ 6.9980423, 46.350781 ], + [ 6.9980163, 46.3507809 ], + [ 6.9980033, 46.3507809 ], + [ 6.9979903, 46.3507808 ], + [ 6.9979644, 46.3507807 ], + [ 6.9979514, 46.3507807 ], + [ 6.9979384, 46.3507806 ], + [ 6.9979124, 46.3507805 ], + [ 6.9978995, 46.3507715 ], + [ 6.9978735, 46.3507714 ], + [ 6.9978605, 46.3507713 ], + [ 6.9978476, 46.3507623 ], + [ 6.9978216, 46.3507622 ], + [ 6.9978086, 46.3507621 ], + [ 6.9977957, 46.3507531 ], + [ 6.9977697, 46.350753 ], + [ 6.9977568, 46.3507439 ], + [ 6.9977439, 46.3507349 ], + [ 6.9977309, 46.3507348 ], + [ 6.997697, 46.3507527 ], + [ 6.9975027999999995, 46.350832 ], + [ 6.9975015, 46.3508329 ], + [ 6.9974948999999995, 46.3508338 ], + [ 6.9976592, 46.3510782 ], + [ 6.9978959, 46.3513751 ], + [ 6.998409, 46.3520158 ], + [ 6.9988699, 46.3531726 ], + [ 6.9996594, 46.3541814 ], + [ 6.9998683, 46.354543 ], + [ 6.999538, 46.3557012 ], + [ 6.9995521, 46.3557256 ], + [ 6.9996777, 46.3564088 ], + [ 6.9996415, 46.3570294 ], + [ 6.999719, 46.3570936 ], + [ 6.9997319000000005, 46.3571026 ], + [ 6.9997318, 46.3571116 ], + [ 6.9997447, 46.3571207 ], + [ 6.9997577, 46.3571297 ], + [ 6.9997706, 46.3571388 ], + [ 6.9997834999999995, 46.3571478 ], + [ 6.9997964, 46.3571568 ], + [ 6.9998094, 46.3571569 ], + [ 6.9998353, 46.357166 ], + [ 6.9998482, 46.357175 ], + [ 6.9998612, 46.3571751 ], + [ 6.9998872, 46.3571752 ], + [ 6.9999001, 46.3571842 ], + [ 6.9999131, 46.3571843 ], + [ 6.9999391, 46.3571844 ], + [ 6.9999521, 46.3571844 ], + [ 6.9999652, 46.3571755 ], + [ 6.9999782, 46.3571755 ], + [ 6.9999911, 46.3571756 ], + [ 7.0000042, 46.3571667 ], + [ 7.0000173, 46.3571577 ], + [ 7.0000303, 46.3571488 ], + [ 7.0000433, 46.3571488 ], + [ 7.0000434, 46.3571398 ], + [ 7.0000565, 46.3571219 ], + [ 7.0000696, 46.3571129 ], + [ 7.0000697, 46.3571039 ], + [ 7.0000827, 46.357095 ], + [ 7.0000959, 46.3570771 ], + [ 7.000096, 46.3570681 ], + [ 7.000109, 46.3570591 ], + [ 7.0001092, 46.357041100000004 ], + [ 7.0001222, 46.3570322 ], + [ 7.0001224, 46.3570142 ], + [ 7.0001355, 46.3569962 ], + [ 7.0001356, 46.3569872 ], + [ 7.0001487, 46.3569693 ], + [ 7.0001489, 46.3569513 ], + [ 7.0001619, 46.3569424 ], + [ 7.0001621, 46.3569244 ], + [ 7.0001622, 46.3569064 ], + [ 7.0001753, 46.3568974 ], + [ 7.0001754, 46.3568795 ], + [ 7.0001885, 46.3568705 ], + [ 7.0001887, 46.3568525 ], + [ 7.0002018, 46.3568346 ], + [ 7.0002019, 46.3568256 ], + [ 7.000215, 46.3568076 ], + [ 7.0002151, 46.3567986 ], + [ 7.0002152, 46.3567807 ], + [ 7.0002283, 46.3567717 ], + [ 7.0002284, 46.3567627 ], + [ 7.0002415, 46.3567448 ], + [ 7.0002546, 46.3567358 ], + [ 7.0002547, 46.3567178 ], + [ 7.0002678, 46.3567089 ], + [ 7.0002678, 46.3566999 ], + [ 7.000281, 46.356682 ], + [ 7.0002811, 46.356673 ], + [ 7.0002941, 46.356664 ], + [ 7.0002942, 46.356655 ], + [ 7.0003073, 46.3566371 ], + [ 7.0003074, 46.3566281 ], + [ 7.0003205, 46.3566191 ], + [ 7.0003205, 46.3566101 ], + [ 7.0003337, 46.3565922 ], + [ 7.0003467, 46.3565833 ], + [ 7.0003468, 46.3565743 ], + [ 7.0003599, 46.3565653 ], + [ 7.00036, 46.3565563 ], + [ 7.000373, 46.3565474 ], + [ 7.0003732, 46.3565294 ], + [ 7.0003862, 46.3565204 ], + [ 7.0003993, 46.3565115 ], + [ 7.0003994, 46.3565025 ], + [ 7.0004124, 46.3564936 ], + [ 7.0004125, 46.3564846 ], + [ 7.0004256, 46.3564756 ], + [ 7.0004257, 46.3564576 ], + [ 7.0004388, 46.3564487 ], + [ 7.0004518, 46.3564397 ], + [ 7.0004519, 46.3564307 ], + [ 7.000465, 46.3564218 ], + [ 7.0004651, 46.3564128 ], + [ 7.0004781, 46.3564039 ], + [ 7.0004783, 46.3563859 ], + [ 7.0004913, 46.3563769 ], + [ 7.0004914, 46.3563679 ], + [ 7.0005045, 46.356359 ], + [ 7.0005175, 46.35635 ], + [ 7.0005176, 46.356341 ], + [ 7.0005307, 46.3563231 ], + [ 7.0005308, 46.3563141 ], + [ 7.0005439, 46.3563052 ], + [ 7.000544, 46.3562962 ], + [ 7.0005571, 46.3562782 ], + [ 7.0005572, 46.3562692 ], + [ 7.0005702, 46.3562603 ], + [ 7.0005703, 46.3562513 ], + [ 7.0005834, 46.3562423 ], + [ 7.0005835, 46.3562243 ], + [ 7.0005966, 46.356215399999996 ], + [ 7.0005966, 46.3562064 ], + [ 7.0006097, 46.3561975 ], + [ 7.0006099, 46.3561795 ], + [ 7.0006229, 46.3561705 ], + [ 7.000623, 46.3561615 ], + [ 7.0006231, 46.3561435 ], + [ 7.0006362, 46.3561346 ], + [ 7.0006363, 46.3561256 ], + [ 7.0006493, 46.3561167 ], + [ 7.0006495, 46.3560987 ], + [ 7.0006626, 46.3560897 ], + [ 7.0006626, 46.3560807 ], + [ 7.0006758, 46.3560628 ], + [ 7.0006758, 46.3560538 ], + [ 7.0006889, 46.3560448 ], + [ 7.000689, 46.3560268 ], + [ 7.0007021, 46.3560179 ], + [ 7.0007022, 46.3560089 ], + [ 7.0007023, 46.3559909 ], + [ 7.0007154, 46.355982 ], + [ 7.0007155, 46.355973 ], + [ 7.0007285, 46.355964 ], + [ 7.0007287, 46.355946 ], + [ 7.0007417, 46.3559371 ], + [ 7.0007418, 46.3559281 ], + [ 7.0007549, 46.3559102 ], + [ 7.000755, 46.3559012 ], + [ 7.0007681, 46.3558922 ], + [ 7.0007682, 46.3558742 ], + [ 7.0007813, 46.3558653 ], + [ 7.0007814, 46.3558563 ], + [ 7.0007945, 46.3558383 ], + [ 7.0007946, 46.3558293 ], + [ 7.0008076, 46.3558204 ], + [ 7.0008078, 46.3558024 ], + [ 7.0008209, 46.3557935 ], + [ 7.0008209, 46.3557845 ], + [ 7.0008341, 46.3557665 ], + [ 7.0008341, 46.3557575 ], + [ 7.0008472, 46.3557486 ], + [ 7.0008473, 46.3557396 ], + [ 7.0008604, 46.3557217 ], + [ 7.0008605, 46.3557127 ], + [ 7.0008735, 46.3557037 ], + [ 7.0008737, 46.3556857 ], + [ 7.0008868, 46.3556768 ], + [ 7.0008868, 46.3556678 ], + [ 7.0008999, 46.3556588 ], + [ 7.0009, 46.3556408 ], + [ 7.0009131, 46.3556319 ], + [ 7.0009132, 46.3556229 ], + [ 7.0009263, 46.355605 ], + [ 7.0009394, 46.355596 ], + [ 7.0009395, 46.355587 ], + [ 7.0009525, 46.3555781 ], + [ 7.0009527, 46.3555601 ], + [ 7.0009657, 46.3555511 ], + [ 7.0009658, 46.3555421 ], + [ 7.0009789, 46.355533199999996 ], + [ 7.000992, 46.3555153 ], + [ 7.0009921, 46.3555063 ], + [ 7.0010051, 46.3554973 ], + [ 7.0010052, 46.3554883 ], + [ 7.0010183, 46.3554704 ], + [ 7.0010314, 46.3554614 ], + [ 7.0010315, 46.3554524 ], + [ 7.0010446, 46.3554435 ], + [ 7.0010576, 46.3554346 ], + [ 7.0010578, 46.3554166 ], + [ 7.0010708, 46.3554076 ], + [ 7.0010709, 46.3553986 ], + [ 7.001084, 46.3553897 ], + [ 7.001097, 46.3553807 ], + [ 7.0010972, 46.3553627 ], + [ 7.0011102, 46.3553538 ], + [ 7.0011233, 46.3553449 ], + [ 7.0011364, 46.3553359 ], + [ 7.0011364, 46.3553269 ], + [ 7.0011495, 46.355318 ], + [ 7.0011626, 46.3553 ], + [ 7.0011627, 46.355291 ], + [ 7.0011758, 46.3552821 ], + [ 7.0011888, 46.3552731 ], + [ 7.0011889, 46.3552641 ], + [ 7.001202, 46.3552552 ], + [ 7.0012151, 46.3552373 ], + [ 7.0012282, 46.3552283 ], + [ 7.0012283, 46.3552193 ], + [ 7.0012413, 46.3552104 ], + [ 7.0012544, 46.3552014 ], + [ 7.0012674, 46.3551925 ], + [ 7.0012805, 46.3551835 ], + [ 7.0012806, 46.3551745 ], + [ 7.0012937, 46.3551566 ], + [ 7.0013068, 46.3551477 ], + [ 7.0013198, 46.3551387 ], + [ 7.0013329, 46.3551298 ], + [ 7.001333, 46.3551208 ], + [ 7.001346, 46.3551118 ], + [ 7.0013591, 46.3551029 ], + [ 7.0013722, 46.3550939 ], + [ 7.0013852, 46.355085 ], + [ 7.0013983, 46.355076 ], + [ 7.0013984, 46.355067 ], + [ 7.0014115, 46.3550491 ], + [ 7.0014246, 46.3550402 ], + [ 7.0014376, 46.3550312 ], + [ 7.0014507, 46.3550223 ], + [ 7.0014638, 46.3550133 ], + [ 7.0014768, 46.3550044 ], + [ 7.0014899, 46.3549954 ], + [ 7.00149, 46.3549864 ], + [ 7.001503, 46.3549775 ], + [ 7.0015161, 46.3549685 ], + [ 7.0015292, 46.3549596 ], + [ 7.0015422, 46.3549507 ], + [ 7.0015553, 46.3549417 ], + [ 7.0015684, 46.3549328 ], + [ 7.0015814, 46.3549238 ], + [ 7.0015945, 46.3549149 ], + [ 7.0016076, 46.3549059 ], + [ 7.0016076, 46.3548969 ], + [ 7.0016207, 46.354888 ], + [ 7.0016338, 46.354879 ], + [ 7.0016468, 46.3548701 ], + [ 7.0016599, 46.3548612 ], + [ 7.001673, 46.3548432 ], + [ 7.0016861, 46.3548343 ], + [ 7.0016991, 46.3548253 ], + [ 7.0017122, 46.3548164 ], + [ 7.0017253, 46.3548074 ], + [ 7.0017253, 46.3547984 ], + [ 7.0017384, 46.3547895 ], + [ 7.0017515, 46.3547805 ], + [ 7.0017645, 46.3547716 ], + [ 7.0017776, 46.3547627 ], + [ 7.0017907, 46.3547537 ], + [ 7.0018037, 46.3547448 ], + [ 7.0018168, 46.3547358 ], + [ 7.0018169, 46.3547268 ], + [ 7.0018299, 46.3547179 ], + [ 7.001843, 46.3547089 ], + [ 7.0018561, 46.3547 ], + [ 7.0018691, 46.354691 ], + [ 7.0018822, 46.3546821 ], + [ 7.0018953, 46.3546642 ], + [ 7.0018954, 46.3546552 ], + [ 7.0019085, 46.3546462 ], + [ 7.0019215, 46.3546373 ], + [ 7.0019346, 46.3546283 ], + [ 7.0019477, 46.3546194 ], + [ 7.0019477, 46.3546104 ], + [ 7.0019608, 46.3546014 ], + [ 7.0019739, 46.3545925 ], + [ 7.001987, 46.3545746 ], + [ 7.0020001, 46.3545656 ], + [ 7.0020001, 46.3545566 ], + [ 7.0020132, 46.3545477 ], + [ 7.0020263, 46.3545387 ], + [ 7.0020393, 46.3545298 ], + [ 7.0020394, 46.3545208 ], + [ 7.0020525, 46.3545028 ], + [ 7.0020656, 46.3544939 ], + [ 7.0020657, 46.3544849 ], + [ 7.0020787, 46.354476 ], + [ 7.0020918, 46.354467 ], + [ 7.0021049, 46.3544581 ], + [ 7.002105, 46.3544401 ], + [ 7.0021181, 46.3544311 ], + [ 7.0021311, 46.3544222 ], + [ 7.0021312, 46.3544132 ], + [ 7.0021443, 46.3544042 ], + [ 7.0021573, 46.3543953 ], + [ 7.0021575, 46.3543773 ], + [ 7.0021705, 46.3543684 ], + [ 7.0021836, 46.3543594 ], + [ 7.0021837, 46.3543504 ], + [ 7.0021968, 46.3543325 ], + [ 7.0021969, 46.3543235 ], + [ 7.00221, 46.3543145 ], + [ 7.002223, 46.3543056 ], + [ 7.0022231, 46.3542966 ], + [ 7.0022362, 46.3542787 ], + [ 7.0022493, 46.3542697 ], + [ 7.0022494, 46.3542607 ], + [ 7.0022624, 46.3542518 ], + [ 7.0022756, 46.3542338 ], + [ 7.0022756, 46.3542248 ], + [ 7.0022887, 46.3542159 ], + [ 7.0022888, 46.3542069 ], + [ 7.0023018, 46.3541979 ], + [ 7.002315, 46.35418 ], + [ 7.002315, 46.354171 ], + [ 7.0023281, 46.3541621 ], + [ 7.0023282, 46.3541531 ], + [ 7.0023413, 46.3541351 ], + [ 7.0023544, 46.3541262 ], + [ 7.0023545, 46.3541172 ], + [ 7.0023675, 46.3541082 ], + [ 7.0023806, 46.3540993 ], + [ 7.0023807, 46.3540813 ], + [ 7.0023938, 46.3540724 ], + [ 7.0023939, 46.3540634 ], + [ 7.0024069, 46.3540544 ], + [ 7.0024201, 46.3540365 ], + [ 7.0024201, 46.3540275 ], + [ 7.0024332, 46.3540185 ], + [ 7.0024463, 46.3540096 ], + [ 7.0024463, 46.3540006 ], + [ 7.0024595, 46.3539827 ], + [ 7.0024725, 46.3539737 ], + [ 7.0024726, 46.3539647 ], + [ 7.0024857, 46.3539558 ], + [ 7.0024988, 46.3539378 ], + [ 7.0024989, 46.3539288 ], + [ 7.0025119, 46.3539199 ], + [ 7.002525, 46.3539109 ], + [ 7.0025251, 46.353902 ], + [ 7.0025382, 46.353884 ], + [ 7.0025513, 46.3538751 ], + [ 7.0025514, 46.3538661 ], + [ 7.0025644, 46.3538571 ], + [ 7.0025775, 46.3538482 ], + [ 7.0025776, 46.3538392 ], + [ 7.0025907, 46.3538212 ], + [ 7.0026038, 46.3538123 ], + [ 7.0026038, 46.3538033 ], + [ 7.0026169, 46.3537944 ], + [ 7.00263, 46.3537854 ], + [ 7.0026431, 46.3537675 ], + [ 7.0026432, 46.3537585 ], + [ 7.0026562, 46.3537495 ], + [ 7.0026693, 46.3537406 ], + [ 7.0026694, 46.3537316 ], + [ 7.0026824, 46.3537226 ], + [ 7.0026956, 46.3537047 ], + [ 7.0026956, 46.3536957 ], + [ 7.0027087, 46.3536868 ], + [ 7.0027218, 46.3536778 ], + [ 7.0027348, 46.3536689 ], + [ 7.002735, 46.3536509 ], + [ 7.002748, 46.3536419 ], + [ 7.0027611, 46.353633 ], + [ 7.0027612, 46.353624 ], + [ 7.0027742, 46.353615 ], + [ 7.0027873, 46.3536061 ], + [ 7.0028004, 46.3535882 ], + [ 7.0028005, 46.3535792 ], + [ 7.0028136, 46.3535702 ], + [ 7.0028266, 46.3535613 ], + [ 7.0028267, 46.3535523 ], + [ 7.0028398, 46.3535433 ], + [ 7.0028529, 46.3535254 ], + [ 7.002866, 46.3535164 ], + [ 7.002866, 46.3535075 ], + [ 7.0028791, 46.3534985 ], + [ 7.0028922, 46.3534896 ], + [ 7.0028922, 46.3534806 ], + [ 7.0029054, 46.3534626 ], + [ 7.0029184, 46.3534537 ], + [ 7.0029185, 46.3534447 ], + [ 7.0029316, 46.3534357 ], + [ 7.0029446, 46.3534268 ], + [ 7.0029577, 46.3534178 ], + [ 7.0029578, 46.3533999 ], + [ 7.0029709, 46.3533909 ], + [ 7.002984, 46.353382 ], + [ 7.002984, 46.353373 ], + [ 7.0029971, 46.353364 ], + [ 7.0030102, 46.3533461 ], + [ 7.0030103, 46.3533371 ], + [ 7.0030234, 46.3533281 ], + [ 7.0030364, 46.3533192 ], + [ 7.0030365, 46.3533102 ], + [ 7.0030496, 46.3533013 ], + [ 7.0030627, 46.3532833 ], + [ 7.0030628, 46.3532743 ], + [ 7.0030759, 46.3532654 ], + [ 7.0030889, 46.3532564 ], + [ 7.003089, 46.3532474 ], + [ 7.0031021, 46.3532295 ], + [ 7.0031152, 46.3532205 ], + [ 7.0031153, 46.3532116 ], + [ 7.0031283, 46.3532026 ], + [ 7.0031414, 46.3531937 ], + [ 7.0031415, 46.3531757 ], + [ 7.0031546, 46.3531667 ], + [ 7.0031677, 46.3531578 ], + [ 7.0031677, 46.3531488 ], + [ 7.0031808, 46.3531398 ], + [ 7.0031939, 46.3531309 ], + [ 7.003194, 46.3531129 ], + [ 7.0032071, 46.353104 ], + [ 7.0032201, 46.353095 ], + [ 7.0032202, 46.353086 ], + [ 7.0032333, 46.3530771 ], + [ 7.0032463, 46.3530681 ], + [ 7.0032465, 46.3530501 ], + [ 7.0032595, 46.3530412 ], + [ 7.0032726, 46.3530322 ], + [ 7.0032857, 46.3530233 ], + [ 7.0032857, 46.3530143 ], + [ 7.0032988, 46.3530054 ], + [ 7.0033119, 46.3529874 ], + [ 7.003312, 46.3529784 ], + [ 7.0033251, 46.3529695 ], + [ 7.0033381, 46.3529605 ], + [ 7.0033512, 46.3529516 ], + [ 7.0033513, 46.3529426 ], + [ 7.0033644, 46.3529246 ], + [ 7.0033775, 46.3529157 ], + [ 7.0033905, 46.3529068 ], + [ 7.0034036, 46.3528978 ], + [ 7.0034037, 46.3528888 ], + [ 7.0034167, 46.3528799 ], + [ 7.0034298, 46.3528709 ], + [ 7.0034429, 46.352862 ], + [ 7.003456, 46.352844 ], + [ 7.0034561, 46.352835 ], + [ 7.0034691, 46.3528261 ], + [ 7.0034822, 46.3528172 ], + [ 7.0034953, 46.3528082 ], + [ 7.0035083, 46.3527993 ], + [ 7.0035214, 46.3527903 ], + [ 7.0035215, 46.3527813 ], + [ 7.0035345, 46.3527724 ], + [ 7.0035477, 46.3527544 ], + [ 7.0035607, 46.3527455 ], + [ 7.0035738, 46.3527365 ], + [ 7.0035868, 46.3527276 ], + [ 7.0035999, 46.3527187 ], + [ 7.003613, 46.3527097 ], + [ 7.003626, 46.3527008 ], + [ 7.0036391, 46.3526918 ], + [ 7.0036522, 46.3526829 ], + [ 7.0036652, 46.3526739 ], + [ 7.0036783, 46.352665 ], + [ 7.0036914, 46.352656 ], + [ 7.0037044, 46.3526471 ], + [ 7.0037175, 46.3526381 ], + [ 7.0037305, 46.3526292 ], + [ 7.0037436, 46.3526203 ], + [ 7.0037567, 46.3526113 ], + [ 7.0037697, 46.3526024 ], + [ 7.0037828, 46.3525934 ], + [ 7.0037959, 46.3525845 ], + [ 7.0038089, 46.3525755 ], + [ 7.003822, 46.3525666 ], + [ 7.0038351, 46.3525576 ], + [ 7.0038482, 46.3525397 ], + [ 7.0038613, 46.3525307 ], + [ 7.0038743, 46.3525218 ], + [ 7.0038874, 46.3525129 ], + [ 7.0039004, 46.3525039 ], + [ 7.0039135, 46.352495 ], + [ 7.0039396, 46.3524861 ], + [ 7.0039526, 46.3524771 ], + [ 7.0039657, 46.3524682 ], + [ 7.0039787, 46.3524592 ], + [ 7.0039918, 46.3524503 ], + [ 7.0040049, 46.3524413 ], + [ 7.0040179, 46.3524324 ], + [ 7.004031, 46.3524235 ], + [ 7.0040441, 46.3524145 ], + [ 7.0040571, 46.3524056 ], + [ 7.0040702, 46.3523966 ], + [ 7.0040833, 46.3523877 ], + [ 7.0040963, 46.3523787 ], + [ 7.0041094, 46.3523698 ], + [ 7.0041224, 46.3523608 ], + [ 7.0041355, 46.3523519 ], + [ 7.0041486, 46.3523429 ], + [ 7.0041616, 46.352334 ], + [ 7.0041747, 46.3523251 ], + [ 7.0041878, 46.3523161 ], + [ 7.0042008, 46.3523072 ], + [ 7.0042139, 46.3522982 ], + [ 7.0042269, 46.3522893 ], + [ 7.00424, 46.3522803 ], + [ 7.0042531, 46.3522714 ], + [ 7.0042661, 46.3522624 ], + [ 7.0042792, 46.3522535 ], + [ 7.0042793, 46.3522445 ], + [ 7.0042923, 46.3522355 ], + [ 7.0043054, 46.3522266 ], + [ 7.0043185, 46.3522087 ], + [ 7.0043316, 46.3521997 ], + [ 7.0043447, 46.3521908 ], + [ 7.0043447, 46.3521818 ], + [ 7.0043578, 46.3521728 ], + [ 7.0043709, 46.3521639 ], + [ 7.0043839, 46.3521549 ], + [ 7.004384, 46.3521459 ], + [ 7.0043971, 46.352137 ], + [ 7.0044102, 46.3521191 ], + [ 7.0044103, 46.3521101 ], + [ 7.0044233, 46.3521011 ], + [ 7.0044234, 46.3520921 ], + [ 7.0044365, 46.3520832 ], + [ 7.0044495, 46.3520742 ], + [ 7.0044496, 46.3520652 ], + [ 7.0044627, 46.3520473 ], + [ 7.0044628, 46.3520383 ], + [ 7.0044759, 46.3520294 ], + [ 7.0044759, 46.3520204 ], + [ 7.0044761, 46.3520024 ], + [ 7.0044891, 46.3519934 ], + [ 7.0044892, 46.3519844 ], + [ 7.0044893, 46.3519754 ], + [ 7.0045024, 46.3519575 ], + [ 7.0045025, 46.3519485 ], + [ 7.0045026, 46.3519395 ], + [ 7.0045026, 46.3519305 ], + [ 7.0045158, 46.3519126 ], + [ 7.0045159, 46.3519036 ], + [ 7.0045159, 46.3518946 ], + [ 7.0045161, 46.3518766 ], + [ 7.0045161, 46.3518676 ], + [ 7.0045162, 46.3518586 ], + [ 7.0045164, 46.3518406 ], + [ 7.0045164, 46.3518316 ], + [ 7.0045165, 46.3518226 ], + [ 7.0045166, 46.3518046 ], + [ 7.0045167, 46.3517956 ], + [ 7.0045169, 46.3517776 ], + [ 7.0045169, 46.3517686 ], + [ 7.004517, 46.3517596 ], + [ 7.0045042, 46.3517416 ], + [ 7.0045042, 46.3517326 ], + [ 7.0045043, 46.3517236 ], + [ 7.0045044, 46.3517056 ], + [ 7.0045045, 46.3516966 ], + [ 7.0044917, 46.3516786 ], + [ 7.0044917, 46.3516696 ], + [ 7.0044918, 46.3516606 ], + [ 7.004492, 46.3516426 ], + [ 7.004479, 46.3516335 ], + [ 7.0044791, 46.3516246 ], + [ 7.0044793, 46.3516066 ], + [ 7.0044663, 46.3515975 ], + [ 7.0044665, 46.3515795 ], + [ 7.0044666, 46.3515705 ], + [ 7.0044536, 46.3515615 ], + [ 7.0044538, 46.3515435 ], + [ 7.0044539, 46.3515345 ], + [ 7.0044409, 46.3515255 ], + [ 7.0044411, 46.3515075 ], + [ 7.0044282, 46.3514984 ], + [ 7.0044282, 46.3514894 ], + [ 7.0044283, 46.3514804 ], + [ 7.0044155, 46.3514624 ], + [ 7.0044155, 46.3514534 ], + [ 7.0044026, 46.3514443 ], + [ 7.0044028, 46.3514264 ], + [ 7.0044028, 46.3514174 ], + [ 7.0043899, 46.3514083 ], + [ 7.0043901, 46.3513903 ], + [ 7.0043771, 46.3513813 ], + [ 7.0043772, 46.3513723 ], + [ 7.0043643, 46.3513632 ], + [ 7.0043644, 46.3513452 ], + [ 7.0043645, 46.3513362 ], + [ 7.0043516, 46.3513272 ], + [ 7.0043517, 46.3513092 ], + [ 7.0043388, 46.3513002 ], + [ 7.0043389, 46.3512912 ], + [ 7.004326, 46.3512731 ], + [ 7.0043261, 46.3512641 ], + [ 7.0043262, 46.3512551 ], + [ 7.0043133, 46.3512461 ], + [ 7.0043134, 46.3512281 ], + [ 7.0043005, 46.3512191 ], + [ 7.0043006, 46.3512101 ], + [ 7.0042877, 46.351192 ], + [ 7.0042878, 46.351183 ], + [ 7.0042749, 46.351174 ], + [ 7.004275, 46.351156 ], + [ 7.0042621, 46.3511469 ], + [ 7.0042622, 46.3511379 ], + [ 7.0042492, 46.3511289 ], + [ 7.0042494, 46.3511109 ], + [ 7.0042365, 46.3511019 ], + [ 7.0042365, 46.3510929 ], + [ 7.0042236, 46.3510838 ], + [ 7.0042107, 46.3510748 ], + [ 7.0042108, 46.3510568 ], + [ 7.0041979, 46.3510477 ], + [ 7.004185, 46.3510387 ], + [ 7.0041851, 46.3510297 ], + [ 7.0041722, 46.3510207 ], + [ 7.0041592, 46.3510116 ], + [ 7.0041464, 46.3509936 ], + [ 7.0041465, 46.3509846 ], + [ 7.0041336, 46.3509755 ], + [ 7.0041206, 46.3509665 ], + [ 7.0041077, 46.3509574 ], + [ 7.0041078, 46.3509484 ], + [ 7.0040949, 46.3509394 ], + [ 7.004082, 46.3509214 ], + [ 7.0040691, 46.3509123 ], + [ 7.0040562, 46.3509033 ], + [ 7.0040563, 46.3508943 ], + [ 7.0040433, 46.3508852 ], + [ 7.0040304, 46.3508762 ], + [ 7.0040175, 46.3508671 ], + [ 7.0040046, 46.3508581 ], + [ 7.0039917, 46.350849 ], + [ 7.0039917, 46.35084 ], + [ 7.0039788, 46.350831 ], + [ 7.003966, 46.350813 ], + [ 7.0039531, 46.3508039 ], + [ 7.0039401, 46.3507949 ], + [ 7.0039311, 46.3507885 ], + [ 7.0036648, 46.3507803 ], + [ 7.0029853, 46.3507885 ], + [ 7.0024979, 46.350819 ], + [ 7.0024979, 46.3508253 ], + [ 7.0024977, 46.3508433 ], + [ 7.0024977, 46.3508523 ], + [ 7.0024976, 46.3508613 ], + [ 7.0024845, 46.3508702 ], + [ 7.0024845, 46.3508792 ], + [ 7.0024714, 46.3508882 ], + [ 7.0024583, 46.3508971 ], + [ 7.0024583, 46.3509061 ], + [ 7.0024452, 46.350915 ], + [ 7.0024321, 46.350924 ], + [ 7.0024191, 46.3509329 ], + [ 7.002406, 46.3509419 ], + [ 7.0023929, 46.3509508 ], + [ 7.0023669, 46.3509597 ], + [ 7.0023539, 46.3509597 ], + [ 7.0023408, 46.3509686 ], + [ 7.0023278, 46.3509776 ], + [ 7.0023018, 46.3509775 ], + [ 7.0022887, 46.3509864 ], + [ 7.0022757, 46.3509864 ], + [ 7.0022498, 46.3509863 ], + [ 7.0022367, 46.3509952 ], + [ 7.0022107, 46.3509951 ], + [ 7.0021977, 46.3509951 ], + [ 7.0021847, 46.350995 ], + [ 7.0021587, 46.3509949 ], + [ 7.0021458, 46.3509949 ], + [ 7.0021328, 46.3509948 ], + [ 7.0021068, 46.3509947 ], + [ 7.0020938, 46.3509947 ], + [ 7.0020678, 46.3509946 ], + [ 7.0020548, 46.3509945 ], + [ 7.0020418, 46.3509945 ], + [ 7.0020159, 46.3509944 ], + [ 7.0020029, 46.3509853 ], + [ 7.0019899, 46.3509853 ], + [ 7.001964, 46.3509852 ], + [ 7.001951, 46.3509851 ], + [ 7.0019381, 46.3509761 ], + [ 7.0019121, 46.350976 ], + [ 7.0018991, 46.3509759 ], + [ 7.0018732, 46.3509668 ], + [ 7.0018602, 46.3509668 ], + [ 7.0018472, 46.3509667 ], + [ 7.0018212, 46.3509666 ], + [ 7.0018083, 46.3509576 ], + [ 7.0017953, 46.3509575 ], + [ 7.0017693, 46.3509574 ], + [ 7.0017564, 46.3509484 ], + [ 7.0017434, 46.3509483 ], + [ 7.0017174, 46.3509482 ], + [ 7.0017044, 46.3509482 ], + [ 7.0016915, 46.3509391 ], + [ 7.0016655, 46.350939 ], + [ 7.0016525, 46.350939 ], + [ 7.0016461, 46.3509345 ], + [ 7.0012192, 46.3510291 ], + [ 7.0009509, 46.3511198 ], + [ 7.0006864, 46.3513724 ], + [ 7.0006315, 46.3514109 ], + [ 7.0002845, 46.3515913 ], + [ 7.0001, 46.3517507 ], + [ 6.9999527, 46.3519786 ], + [ 6.9998186, 46.3523325 ], + [ 6.999791, 46.3523774 ], + [ 6.9996956, 46.3524427 ], + [ 6.999602, 46.3524689 ], + [ 6.9995323, 46.352478 ], + [ 6.9994514, 46.3524785 ], + [ 6.9993773, 46.3524684 ], + [ 6.9993528, 46.3524439 ], + [ 6.9993262, 46.3523916 ], + [ 6.9993109, 46.3523379 ], + [ 6.9993071, 46.3522855 ], + [ 6.9993153, 46.3522406 ], + [ 6.9994547, 46.3518723 ], + [ 6.9994692, 46.3518445 ], + [ 6.9996389, 46.3515825 ], + [ 6.999652, 46.3515654 ], + [ 6.999673, 46.3515439 ], + [ 6.9998993, 46.3513487 ], + [ 6.9999462999999995, 46.3513174 ], + [ 7.0002882, 46.3511397 ], + [ 7.0004588, 46.3509763 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00055", + "country" : "CHE", + "name" : [ + { + "text" : "La Riondaz", + "lang" : "de-CH" + }, + { + "text" : "La Riondaz", + "lang" : "fr-CH" + }, + { + "text" : "La Riondaz", + "lang" : "it-CH" + }, + { + "text" : "La Riondaz", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "startDateTime" : "2024-11-15T00:00:00+01:00", + "endDateTime" : "2025-04-15T00:00:00+02:00" + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Generaldirektion für Umwelt", + "lang" : "de-CH" + }, + { + "text" : "Direction générale de l'environnement", + "lang" : "fr-CH" + }, + { + "text" : "Direzione generale dell'Ambiente", + "lang" : "it-CH" + }, + { + "text" : "Environment Department", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.dge@vd.ch", + "phone" : "0041213164422", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.1409829, 46.3287605 ], + [ 7.1407743, 46.3295933 ], + [ 7.1404084, 46.329774 ], + [ 7.1392268, 46.330459 ], + [ 7.1392725, 46.3315827 ], + [ 7.1407042, 46.3328909 ], + [ 7.1412496, 46.3335994 ], + [ 7.1415588, 46.3345241 ], + [ 7.1415542, 46.3353759 ], + [ 7.1418663, 46.3357753 ], + [ 7.1429086999999996, 46.3363393 ], + [ 7.143509, 46.3367574 ], + [ 7.1435649, 46.3369825 ], + [ 7.1430802, 46.3375047 ], + [ 7.1427904, 46.3382542 ], + [ 7.1427023, 46.33846 ], + [ 7.1423444, 46.3393019 ], + [ 7.1423579, 46.3394351 ], + [ 7.1417519, 46.3400452 ], + [ 7.1417464, 46.3403511 ], + [ 7.141773, 46.3404591 ], + [ 7.1418388, 46.3405402 ], + [ 7.1421175, 46.3408873 ], + [ 7.1421762, 46.341071 ], + [ 7.1423046, 46.3415921 ], + [ 7.1423995, 46.3420395 ], + [ 7.1425046, 46.3422943 ], + [ 7.1425317, 46.3425706 ], + [ 7.1425018, 46.3428053 ], + [ 7.1424334, 46.3429643 ], + [ 7.1423137, 46.3432402 ], + [ 7.1422851, 46.343492 ], + [ 7.1425743, 46.3442871 ], + [ 7.1426858, 46.344559 ], + [ 7.1427962, 46.3445647 ], + [ 7.1429442, 46.3445732 ], + [ 7.1429622, 46.3446038 ], + [ 7.1430272, 46.3445986 ], + [ 7.1431519, 46.3446034 ], + [ 7.1432752, 46.3446226 ], + [ 7.1433791, 46.3446265 ], + [ 7.1435038, 46.3446196 ], + [ 7.1436559, 46.3446047 ], + [ 7.1438729, 46.3445918 ], + [ 7.1440314, 46.3445787 ], + [ 7.1441523, 46.3445638 ], + [ 7.1442484, 46.3445559 ], + [ 7.1444603, 46.3445421 ], + [ 7.1445772, 46.3445406 ], + [ 7.1446213, 46.3445407 ], + [ 7.1447422, 46.3445311 ], + [ 7.1448748, 46.3445018 ], + [ 7.1450466, 46.3444473 ], + [ 7.145243, 46.3443894 ], + [ 7.1453784, 46.3443457 ], + [ 7.1454865, 46.3442947 ], + [ 7.1455725, 46.3442337 ], + [ 7.1456613, 46.3441494 ], + [ 7.1457476, 46.3440426 ], + [ 7.1458546, 46.3439601 ], + [ 7.1459524, 46.343883 ], + [ 7.1460399, 46.3437905 ], + [ 7.1461354, 46.3436783 ], + [ 7.1462306, 46.3435994 ], + [ 7.146361, 46.3435017 ], + [ 7.1465227, 46.3433924 ], + [ 7.1468352, 46.3432556 ], + [ 7.1469706, 46.3431938 ], + [ 7.1471205, 46.3430863 ], + [ 7.1471976, 46.343001 ], + [ 7.147275, 46.3428645 ], + [ 7.1473353, 46.3427657 ], + [ 7.1474214, 46.3426966 ], + [ 7.1475725, 46.342608 ], + [ 7.147656, 46.3425407 ], + [ 7.1477489, 46.3424285 ], + [ 7.1478404, 46.3423163 ], + [ 7.1480208, 46.3420937 ], + [ 7.1480887, 46.3420291 ], + [ 7.1481408, 46.341995 ], + [ 7.1481154, 46.3418951 ], + [ 7.1480848, 46.3417961 ], + [ 7.1480502, 46.341697 ], + [ 7.1480002, 46.3415809 ], + [ 7.1479771, 46.3415277 ], + [ 7.1479605, 46.3414746 ], + [ 7.1479491, 46.3414197 ], + [ 7.1479441, 46.3413783 ], + [ 7.1479445, 46.3413118 ], + [ 7.1479539, 46.3412452 ], + [ 7.1479712, 46.3411796 ], + [ 7.1479975, 46.3411158 ], + [ 7.148012, 46.341078 ], + [ 7.1480304, 46.3410412 ], + [ 7.1480539, 46.3410053 ], + [ 7.1480814, 46.3409703 ], + [ 7.1481128, 46.340938 ], + [ 7.148148, 46.3409075 ], + [ 7.1481871, 46.3408788 ], + [ 7.1482288, 46.3408528 ], + [ 7.1482614, 46.3408358 ], + [ 7.1482952, 46.3408197 ], + [ 7.1483304, 46.3408054 ], + [ 7.1484761, 46.3407527 ], + [ 7.1486206, 46.3406973 ], + [ 7.1487625, 46.3406383 ], + [ 7.1488483, 46.3406133 ], + [ 7.1489355, 46.3405919 ], + [ 7.1490252, 46.3405742 ], + [ 7.1490863000000004, 46.3405644 ], + [ 7.1491474, 46.3405556 ], + [ 7.1492098, 46.3405486 ], + [ 7.1493228, 46.340539 ], + [ 7.1494346, 46.3405213 ], + [ 7.1495426, 46.3404963 ], + [ 7.1496479, 46.3404651 ], + [ 7.1497429, 46.3404348 ], + [ 7.1498353, 46.3404008 ], + [ 7.1499251, 46.3403642 ], + [ 7.1500006, 46.3403284 ], + [ 7.1500736, 46.3402908 ], + [ 7.1501452, 46.3402505 ], + [ 7.1502769, 46.3401627 ], + [ 7.1503969, 46.3400667 ], + [ 7.1505026, 46.3399636 ], + [ 7.1505836, 46.3398783 ], + [ 7.1506516, 46.3397876 ], + [ 7.150708, 46.3396933 ], + [ 7.1507448, 46.339616 ], + [ 7.1507712, 46.3395379 ], + [ 7.1507911, 46.3394578 ], + [ 7.1507899, 46.3394353 ], + [ 7.1507742, 46.3392149 ], + [ 7.1507403, 46.3389953 ], + [ 7.1506882, 46.3387775 ], + [ 7.1505985, 46.3385407 ], + [ 7.150558, 46.3383436 ], + [ 7.1505428, 46.3382833 ], + [ 7.1505184, 46.3382238 ], + [ 7.1504862, 46.3381662 ], + [ 7.1504463, 46.3380968 ], + [ 7.1504156, 46.3380239 ], + [ 7.1503952, 46.3379501 ], + [ 7.1503839, 46.3378754 ], + [ 7.1503823, 46.3376873 ], + [ 7.1503824, 46.337673 ], + [ 7.1503798, 46.3376595 ], + [ 7.1503773, 46.337646 ], + [ 7.1503722, 46.3376324 ], + [ 7.1503628, 46.337562 ], + [ 7.150353, 46.3375519 ], + [ 7.1502324, 46.3374887 ], + [ 7.1500651, 46.3374198 ], + [ 7.1499225, 46.3373489 ], + [ 7.1497883, 46.3372515 ], + [ 7.1496981, 46.3371465 ], + [ 7.1495453, 46.3369462 ], + [ 7.1493705, 46.336723 ], + [ 7.1492148, 46.3365417 ], + [ 7.1491299, 46.3364863 ], + [ 7.1490119, 46.3364498 ], + [ 7.1487565, 46.3363882 ], + [ 7.1486468, 46.3363479 ], + [ 7.1485481, 46.3362867 ], + [ 7.1484497, 46.3361875 ], + [ 7.1483022, 46.3360195 ], + [ 7.1481654, 46.3358859 ], + [ 7.1480204, 46.3357656 ], + [ 7.1479247, 46.3356701 ], + [ 7.1478482, 46.3355785 ], + [ 7.1477691, 46.335466 ], + [ 7.1476734, 46.3353724 ], + [ 7.1475556, 46.3352922 ], + [ 7.1474214, 46.3351985 ], + [ 7.1473312, 46.3351069 ], + [ 7.1472384, 46.3349886 ], + [ 7.1471564, 46.3348989 ], + [ 7.1470442, 46.3348015 ], + [ 7.1468826, 46.3346849 ], + [ 7.1466444, 46.334511 ], + [ 7.1464964, 46.3344231 ], + [ 7.1463675, 46.3343713 ], + [ 7.1462, 46.3343309 ], + [ 7.1459446, 46.3342884 ], + [ 7.1457825, 46.3342708 ], + [ 7.1455599, 46.3342588 ], + [ 7.1453786, 46.3342507 ], + [ 7.1452412, 46.3342294 ], + [ 7.145115, 46.3341872 ], + [ 7.1450889, 46.3341647 ], + [ 7.1450329, 46.3341165 ], + [ 7.1450058, 46.3340555 ], + [ 7.1450007, 46.3339793 ], + [ 7.1450231, 46.333907 ], + [ 7.1450896, 46.3338044 ], + [ 7.1451728, 46.3336675 ], + [ 7.1452064, 46.3335591 ], + [ 7.1452181, 46.3334182 ], + [ 7.1451968, 46.3332963 ], + [ 7.1451396, 46.3331971 ], + [ 7.1450384, 46.333115 ], + [ 7.1449342, 46.3330557 ], + [ 7.1448163, 46.3330116 ], + [ 7.1446542, 46.3329864 ], + [ 7.1443629, 46.3329647 ], + [ 7.1442396, 46.3329444 ], + [ 7.1442289, 46.3329427 ], + [ 7.1441982, 46.3329376 ], + [ 7.1441634, 46.3329224 ], + [ 7.1441429, 46.3329135 ], + [ 7.1440885, 46.3328897 ], + [ 7.1440201, 46.3328324 ], + [ 7.1439953, 46.3327934 ], + [ 7.1439765, 46.3327637 ], + [ 7.1439468, 46.332659 ], + [ 7.1439173, 46.3325123 ], + [ 7.1438909, 46.3323161 ], + [ 7.1438695, 46.3322037 ], + [ 7.1438434, 46.3321615 ], + [ 7.1438151, 46.3321159 ], + [ 7.143722, 46.3320338 ], + [ 7.1435659, 46.3319268 ], + [ 7.143462, 46.3318389 ], + [ 7.143361, 46.3317111 ], + [ 7.1433066, 46.3315948 ], + [ 7.1432935, 46.3314786 ], + [ 7.1432892, 46.3312653 ], + [ 7.1432927, 46.3311206 ], + [ 7.1432712, 46.3310311 ], + [ 7.1432005, 46.3308919 ], + [ 7.1430504, 46.3306992 ], + [ 7.1429247, 46.3305618 ], + [ 7.1428728, 46.3304912 ], + [ 7.1428376, 46.3303978 ], + [ 7.1428171, 46.3303266 ], + [ 7.1427161, 46.3300014 ], + [ 7.1426371, 46.3298558 ], + [ 7.1426127, 46.3298107 ], + [ 7.1425149, 46.3295986 ], + [ 7.142379, 46.3293246 ], + [ 7.1422755, 46.3291472 ], + [ 7.1421827, 46.3290289 ], + [ 7.1420842, 46.328943 ], + [ 7.1419335, 46.3288474 ], + [ 7.1418129, 46.3287919 ], + [ 7.1416949, 46.3287535 ], + [ 7.1415247, 46.3287207 ], + [ 7.141324, 46.328716299999996 ], + [ 7.1411068, 46.3287329 ], + [ 7.1409829, 46.3287605 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00050", + "country" : "CHE", + "name" : [ + { + "text" : "La Jorasse", + "lang" : "de-CH" + }, + { + "text" : "La Jorasse", + "lang" : "fr-CH" + }, + { + "text" : "La Jorasse", + "lang" : "it-CH" + }, + { + "text" : "La Jorasse", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "startDateTime" : "2024-11-15T00:00:00+01:00", + "endDateTime" : "2025-04-15T00:00:00+02:00" + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Generaldirektion für Umwelt", + "lang" : "de-CH" + }, + { + "text" : "Direction générale de l'environnement", + "lang" : "fr-CH" + }, + { + "text" : "Direzione generale dell'Ambiente", + "lang" : "it-CH" + }, + { + "text" : "Environment Department", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.dge@vd.ch", + "phone" : "0041213164422", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5380571, 47.4931546 ], + [ 7.5380771, 47.4931128 ], + [ 7.5376894, 47.4929477 ], + [ 7.5375542, 47.49289 ], + [ 7.5372357, 47.4928328 ], + [ 7.537048, 47.4928333 ], + [ 7.5367948, 47.4928378 ], + [ 7.5367371, 47.4928515 ], + [ 7.5367334, 47.4928734 ], + [ 7.5367864, 47.4928962 ], + [ 7.5371324, 47.4928967 ], + [ 7.5374681, 47.4929882 ], + [ 7.5376271, 47.4931013 ], + [ 7.5382126, 47.4932807 ], + [ 7.5383022, 47.4933189 ], + [ 7.5383034, 47.4933186 ], + [ 7.5383063, 47.4933185 ], + [ 7.5383091, 47.4933185 ], + [ 7.5383128, 47.4933188 ], + [ 7.5383174, 47.4933205 ], + [ 7.5383366, 47.4933288 ], + [ 7.5383531, 47.4933369 ], + [ 7.5383716, 47.4933474 ], + [ 7.5383855, 47.4933545 ], + [ 7.5384601, 47.4933863 ], + [ 7.538467, 47.4933823 ], + [ 7.5384727, 47.4933805 ], + [ 7.5384762, 47.493379 ], + [ 7.5384827, 47.4933774 ], + [ 7.5384892, 47.4933768 ], + [ 7.5384934999999995, 47.4933772 ], + [ 7.5385006, 47.4933785 ], + [ 7.5385051, 47.4933799 ], + [ 7.538509, 47.4933821 ], + [ 7.5385116, 47.4933843 ], + [ 7.5385136, 47.4933868 ], + [ 7.5385157, 47.4933907 ], + [ 7.5385175, 47.4933951 ], + [ 7.5385197999999995, 47.4933993 ], + [ 7.5385241, 47.4934051 ], + [ 7.5385301, 47.4934126 ], + [ 7.5385367, 47.4934189 ], + [ 7.5385846, 47.4934394 ], + [ 7.5386425, 47.4934529 ], + [ 7.5389479, 47.4935237 ], + [ 7.5388, 47.493553 ], + [ 7.5387728, 47.4935512 ], + [ 7.5387384, 47.4935495 ], + [ 7.538701, 47.4935479 ], + [ 7.5386933, 47.4935473 ], + [ 7.5385100000000005, 47.4935171 ], + [ 7.5382763, 47.4935101 ], + [ 7.5381571, 47.4935295 ], + [ 7.5380402, 47.4935462 ], + [ 7.5376037, 47.4935625 ], + [ 7.5372834, 47.4935276 ], + [ 7.5372252, 47.4935894 ], + [ 7.5370768, 47.4935646 ], + [ 7.5369073, 47.4935582 ], + [ 7.5366192, 47.4935475 ], + [ 7.5364554, 47.4935405 ], + [ 7.5363098, 47.4935362 ], + [ 7.5362086, 47.4935305 ], + [ 7.5360503, 47.493522 ], + [ 7.5358519, 47.4935106 ], + [ 7.5356205, 47.4934971 ], + [ 7.5354707, 47.4934887 ], + [ 7.5354696, 47.4934808 ], + [ 7.5354455, 47.4934824 ], + [ 7.5354213, 47.493484 ], + [ 7.5354215, 47.4934859 ], + [ 7.5352778, 47.4934779 ], + [ 7.5349476, 47.4934819 ], + [ 7.5349413, 47.4935696 ], + [ 7.5366003, 47.4936211 ], + [ 7.5372891, 47.4936616 ], + [ 7.5383033, 47.4936291 ], + [ 7.5384407, 47.4936295 ], + [ 7.5385787, 47.4936452 ], + [ 7.5390261, 47.4937097 ], + [ 7.5391566999999995, 47.4937314 ], + [ 7.539287, 47.4937572 ], + [ 7.5400735999999995, 47.493928 ], + [ 7.5402192, 47.4939131 ], + [ 7.5404903, 47.4939795 ], + [ 7.5405999, 47.4940423 ], + [ 7.5407723, 47.4940139 ], + [ 7.5409582, 47.4941201 ], + [ 7.5410211, 47.4941338 ], + [ 7.5410464, 47.4941383 ], + [ 7.5410534, 47.4941357 ], + [ 7.5410582, 47.4941351 ], + [ 7.541063, 47.4941343 ], + [ 7.5410676, 47.4941331 ], + [ 7.541072, 47.4941316 ], + [ 7.5410769, 47.4941296 ], + [ 7.5410815, 47.4941273 ], + [ 7.5410858, 47.4941248 ], + [ 7.5410884, 47.494123 ], + [ 7.5410908, 47.4941211 ], + [ 7.541093, 47.494119 ], + [ 7.5411034, 47.4940982 ], + [ 7.5411165, 47.4940709 ], + [ 7.5410418, 47.4940756 ], + [ 7.5409526, 47.4940131 ], + [ 7.5407644, 47.4939164 ], + [ 7.5406426, 47.4939296 ], + [ 7.5404686, 47.4938817 ], + [ 7.5401321, 47.4938026 ], + [ 7.540016, 47.4938197 ], + [ 7.5397518, 47.4937591 ], + [ 7.5395862000000005, 47.4937372 ], + [ 7.5394936999999995, 47.4936855 ], + [ 7.5394293, 47.49368 ], + [ 7.5394173, 47.493705 ], + [ 7.5392657, 47.4937026 ], + [ 7.5391899, 47.493658 ], + [ 7.5391291, 47.4935929 ], + [ 7.5390456, 47.4935621 ], + [ 7.538958, 47.493485 ], + [ 7.5387059, 47.4933811 ], + [ 7.5386419, 47.4933807 ], + [ 7.5385897, 47.493358 ], + [ 7.538315, 47.4932532 ], + [ 7.5380571, 47.4931546 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns148", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Schlifbach - Grossmattbach", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Schlifbach - Grossmattbach", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Schlifbach - Grossmattbach", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Schlifbach - Grossmattbach", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8286595, 47.384425 ], + [ 7.8288655, 47.3847376 ], + [ 7.8297498999999995, 47.3849062 ], + [ 7.829991, 47.385098 ], + [ 7.8302284, 47.3850117 ], + [ 7.8307079, 47.3848619 ], + [ 7.8308422, 47.3847721 ], + [ 7.8309552, 47.3846294 ], + [ 7.8306705, 47.3844563 ], + [ 7.8301159, 47.3841745 ], + [ 7.8299814, 47.3841302 ], + [ 7.8298322, 47.3841351 ], + [ 7.8297626000000005, 47.3841556 ], + [ 7.8297426, 47.3842816 ], + [ 7.8296653, 47.3843432 ], + [ 7.8294961, 47.3843616 ], + [ 7.8291973, 47.3843513 ], + [ 7.8289648, 47.3843691 ], + [ 7.8286595, 47.384425 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns043", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Schanz - Walten", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Schanz - Walten", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Schanz - Walten", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Schanz - Walten", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8189135, 47.416053 ], + [ 7.8190943, 47.4163015 ], + [ 7.8193304, 47.4164834 ], + [ 7.8195327, 47.4166024 ], + [ 7.8198006, 47.4167036 ], + [ 7.8201944999999995, 47.4167897 ], + [ 7.8203474, 47.4168876 ], + [ 7.8203475000000005, 47.4169297 ], + [ 7.8210095, 47.4173264 ], + [ 7.8213497, 47.4176084 ], + [ 7.8219022, 47.4179708 ], + [ 7.8223036, 47.4183336 ], + [ 7.8225613, 47.4187841 ], + [ 7.8226835, 47.4190343 ], + [ 7.8229138, 47.4190347 ], + [ 7.8234664, 47.4192831 ], + [ 7.823919, 47.4195285 ], + [ 7.8240788, 47.4194604 ], + [ 7.8244193, 47.4193735 ], + [ 7.8250422, 47.4194575 ], + [ 7.8251731, 47.4194874 ], + [ 7.824991, 47.4192127 ], + [ 7.8248154, 47.4188625 ], + [ 7.8247599, 47.4184964 ], + [ 7.8247371999999995, 47.4180529 ], + [ 7.8246707, 47.4174338 ], + [ 7.8249072, 47.4174283 ], + [ 7.8250114, 47.417426 ], + [ 7.8249154999999995, 47.4171782 ], + [ 7.8248304, 47.416695 ], + [ 7.8248569, 47.4162375 ], + [ 7.8249137, 47.4156325 ], + [ 7.8248467999999995, 47.4153912 ], + [ 7.8246594, 47.4152578 ], + [ 7.8245217, 47.4151793 ], + [ 7.8232752, 47.4143955 ], + [ 7.8232273, 47.4143721 ], + [ 7.8231025, 47.414427 ], + [ 7.8229659, 47.4144634 ], + [ 7.8228148, 47.4144856 ], + [ 7.8226298, 47.4145129 ], + [ 7.8225197, 47.4145406 ], + [ 7.822407, 47.4145632 ], + [ 7.8222298, 47.414567 ], + [ 7.8218302, 47.4146511 ], + [ 7.8217646, 47.4146945 ], + [ 7.821826, 47.4148408 ], + [ 7.8219101, 47.4148878 ], + [ 7.8219787, 47.4148922 ], + [ 7.8218345, 47.4152531 ], + [ 7.8217872, 47.4154283 ], + [ 7.8217777, 47.4155395 ], + [ 7.8217555, 47.4158523 ], + [ 7.821732, 47.4159449 ], + [ 7.8216722, 47.4160251 ], + [ 7.821644, 47.4160151 ], + [ 7.8216273, 47.4160259 ], + [ 7.8206175, 47.4164016 ], + [ 7.8206478, 47.4165087 ], + [ 7.8203469, 47.4165265 ], + [ 7.8202756, 47.4163142 ], + [ 7.8202532, 47.4162475 ], + [ 7.820151, 47.4160582 ], + [ 7.8200624, 47.4159516 ], + [ 7.8198452, 47.4156999 ], + [ 7.8197873, 47.4154682 ], + [ 7.8200331, 47.4151514 ], + [ 7.8199881, 47.4150209 ], + [ 7.8199156, 47.4150275 ], + [ 7.8195939, 47.4152209 ], + [ 7.8194231, 47.4153915 ], + [ 7.8193813, 47.4154332 ], + [ 7.8193292, 47.4155515 ], + [ 7.8189135, 47.416053 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr132", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Chilpen", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Chilpen", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Chilpen", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Chilpen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5328401, 47.4434292 ], + [ 7.5329233, 47.4434432 ], + [ 7.5365804, 47.4440645 ], + [ 7.538178, 47.4444186 ], + [ 7.5382503, 47.4444017 ], + [ 7.5382718, 47.4444114 ], + [ 7.5389963, 47.4443524 ], + [ 7.5401443, 47.4444438 ], + [ 7.5406824, 47.4444482 ], + [ 7.541213, 47.444331 ], + [ 7.5414496, 47.4442237 ], + [ 7.5420071, 47.4438903 ], + [ 7.5424801, 47.4435744 ], + [ 7.5425029, 47.4435609 ], + [ 7.5429445, 47.4434106 ], + [ 7.5431992, 47.4433255 ], + [ 7.5430524, 47.4428591 ], + [ 7.5429374, 47.4426119 ], + [ 7.5425408, 47.4422659 ], + [ 7.5421549, 47.4420471 ], + [ 7.5412377, 47.4418642 ], + [ 7.5402999, 47.4417448 ], + [ 7.5394559999999995, 47.4417809 ], + [ 7.5393519, 47.4418092 ], + [ 7.5379354, 47.4419942 ], + [ 7.5372979, 47.4420796 ], + [ 7.5359123, 47.4420666 ], + [ 7.5349122, 47.4421311 ], + [ 7.5337769, 47.4423016 ], + [ 7.5327859, 47.4424258 ], + [ 7.5319477, 47.442419 ], + [ 7.5303845, 47.4422082 ], + [ 7.5293529, 47.442096 ], + [ 7.5273209, 47.4418148 ], + [ 7.52582, 47.4414272 ], + [ 7.5246008, 47.4411963 ], + [ 7.5234959, 47.440879 ], + [ 7.5223808, 47.4405901 ], + [ 7.521745, 47.4404138 ], + [ 7.5209632, 47.4401175 ], + [ 7.5206824, 47.4404499 ], + [ 7.5204329, 47.4407752 ], + [ 7.5203499, 47.4409944 ], + [ 7.5203189, 47.4411923 ], + [ 7.5204132, 47.4415103 ], + [ 7.5205801, 47.4416939 ], + [ 7.5205981, 47.4417322 ], + [ 7.5211472, 47.4417973 ], + [ 7.5216522999999995, 47.4418373 ], + [ 7.5219077, 47.441876 ], + [ 7.5267912, 47.442503 ], + [ 7.5268038, 47.4424395 ], + [ 7.5280214999999995, 47.4425976 ], + [ 7.5302029, 47.4429327 ], + [ 7.5329154, 47.4434211 ], + [ 7.5328401, 47.4434292 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr006", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Egglen", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Egglen", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Egglen", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Egglen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.9798408, 47.362293 ], + [ 6.9777682, 47.3639222 ], + [ 6.9756425, 47.3657816 ], + [ 6.9736627, 47.367714 ], + [ 6.9718344, 47.3697142 ], + [ 6.9701625, 47.3717765 ], + [ 6.9686517, 47.3738955 ], + [ 6.967306, 47.3760652 ], + [ 6.9661293, 47.3782798 ], + [ 6.9651248, 47.3805332 ], + [ 6.9642951, 47.3828192 ], + [ 6.9636427, 47.3851315 ], + [ 6.9631694, 47.3874639 ], + [ 6.9628764, 47.3898099 ], + [ 6.9627645, 47.3921631 ], + [ 6.9628342, 47.394517 ], + [ 6.9630852, 47.3968652 ], + [ 6.9635169, 47.3992013 ], + [ 6.9641282, 47.4015188 ], + [ 6.9649173, 47.4038115 ], + [ 6.9658821, 47.4060729 ], + [ 6.96702, 47.408297 ], + [ 6.968328, 47.4104775 ], + [ 6.9698023, 47.4126086 ], + [ 6.9714390999999996, 47.4146844 ], + [ 6.9732338, 47.4166991 ], + [ 6.9751815, 47.4186473 ], + [ 6.977277, 47.4205236 ], + [ 6.9795144, 47.4223229 ], + [ 6.9818876, 47.4240402 ], + [ 6.9843902, 47.4256707 ], + [ 6.9870152, 47.4272101 ], + [ 6.9897555, 47.4286541 ], + [ 6.9926034999999995, 47.4299987 ], + [ 6.9955514999999995, 47.4312403 ], + [ 6.9985914, 47.4323753 ], + [ 7.0017147, 47.4334008 ], + [ 7.004913, 47.4343139 ], + [ 7.0081774, 47.4351121 ], + [ 7.011499, 47.4357931 ], + [ 7.0148687, 47.4363552 ], + [ 7.0182771, 47.4367967 ], + [ 7.021715, 47.4371165 ], + [ 7.0251729, 47.4373137 ], + [ 7.0286412, 47.4373877 ], + [ 7.0321105, 47.4373383 ], + [ 7.0355712, 47.4371658 ], + [ 7.0390139, 47.4368704 ], + [ 7.042429, 47.4364532 ], + [ 7.0458071, 47.4359151 ], + [ 7.0491391, 47.4352577 ], + [ 7.0524157, 47.4344828 ], + [ 7.0556279, 47.4335926 ], + [ 7.0587669, 47.4325894 ], + [ 7.0618241, 47.431476 ], + [ 7.0647911, 47.4302555 ], + [ 7.0676598, 47.4289312 ], + [ 7.0704223, 47.4275068 ], + [ 7.073071, 47.4259861 ], + [ 7.0755986, 47.4243734 ], + [ 7.0779982, 47.4226731 ], + [ 7.0802633, 47.4208899 ], + [ 7.0823876, 47.4190286 ], + [ 7.0843653, 47.4170944 ], + [ 7.0861911, 47.4150925 ], + [ 7.0878598, 47.4130285 ], + [ 7.089367, 47.410908 ], + [ 7.0907085, 47.4087369 ], + [ 7.0918807, 47.406521 ], + [ 7.0928804, 47.4042666 ], + [ 7.0937048, 47.4019797 ], + [ 7.0943518, 47.3996666 ], + [ 7.0948195, 47.3973337 ], + [ 7.0951067, 47.3949874 ], + [ 7.0952127, 47.3926341 ], + [ 7.0951372, 47.3902802 ], + [ 7.0948804, 47.3879323 ], + [ 7.094443, 47.3855967 ], + [ 7.0938263, 47.3832798 ], + [ 7.0930319, 47.3809881 ], + [ 7.0920622, 47.3787277 ], + [ 7.0909197, 47.3765048 ], + [ 7.0896075, 47.3743256 ], + [ 7.0881295, 47.3721961 ], + [ 7.0864894, 47.3701219 ], + [ 7.084692, 47.3681089 ], + [ 7.0827421, 47.3661625 ], + [ 7.0806451, 47.3642881 ], + [ 7.0784067, 47.3624908 ], + [ 7.0760331, 47.3607755 ], + [ 7.0735308, 47.3591469 ], + [ 7.0709067, 47.3576094 ], + [ 7.0681678, 47.3561673 ], + [ 7.0653218, 47.3548245 ], + [ 7.0623764, 47.3535847 ], + [ 7.0593397, 47.3524513 ], + [ 7.05622, 47.3514274 ], + [ 7.0530258, 47.3505157 ], + [ 7.0505005, 47.3498984 ], + [ 7.050516, 47.3499356 ], + [ 7.0511638, 47.3506668 ], + [ 7.0512124, 47.3506819 ], + [ 7.0517077, 47.3509134 ], + [ 7.0527876, 47.3513318 ], + [ 7.0528188, 47.3515474 ], + [ 7.0527802, 47.3518657 ], + [ 7.0526567, 47.3523163 ], + [ 7.0524696, 47.3528627 ], + [ 7.0522861, 47.3532584 ], + [ 7.0520209, 47.3536699 ], + [ 7.0517687, 47.3543435 ], + [ 7.0516313, 47.3547734 ], + [ 7.0515687, 47.3558013 ], + [ 7.051936, 47.3565987 ], + [ 7.0518403, 47.3567944 ], + [ 7.0506553, 47.3578847 ], + [ 7.0503923, 47.3584378 ], + [ 7.0500747, 47.3589785 ], + [ 7.0499415, 47.3595651 ], + [ 7.0500721, 47.3603329 ], + [ 7.0499586, 47.3608724 ], + [ 7.0499365, 47.3614304 ], + [ 7.0493934, 47.36185 ], + [ 7.0491395, 47.3618831 ], + [ 7.0485497, 47.3623355 ], + [ 7.0483524, 47.3621955 ], + [ 7.0481856, 47.3624033 ], + [ 7.0467776, 47.3624432 ], + [ 7.0468961, 47.3626133 ], + [ 7.0463719, 47.3628705 ], + [ 7.0462697, 47.3629883 ], + [ 7.0457961, 47.3632358 ], + [ 7.0450432, 47.3636074 ], + [ 7.0444969, 47.3638475 ], + [ 7.0438241, 47.3640071 ], + [ 7.0431273, 47.364269 ], + [ 7.0422527, 47.3642077 ], + [ 7.0411904, 47.3641846 ], + [ 7.0400407, 47.3641363 ], + [ 7.0395888, 47.3640191 ], + [ 7.0382417, 47.3639762 ], + [ 7.037754, 47.3637272 ], + [ 7.0364054, 47.3636356 ], + [ 7.0356404, 47.3635015 ], + [ 7.0348405, 47.3633466 ], + [ 7.0345869, 47.364066 ], + [ 7.0343848, 47.3646635 ], + [ 7.0343983, 47.3650461 ], + [ 7.0343166, 47.3653912 ], + [ 7.0343047, 47.3658008 ], + [ 7.0343797, 47.3670032 ], + [ 7.034218, 47.3675572 ], + [ 7.0341512999999996, 47.3679976 ], + [ 7.0341495, 47.3684082 ], + [ 7.0341182, 47.3691339 ], + [ 7.0340791, 47.3696672 ], + [ 7.0325268, 47.3697029 ], + [ 7.0315865, 47.3695879 ], + [ 7.0305413, 47.3694784 ], + [ 7.0293885, 47.3691225 ], + [ 7.0279461, 47.3693827 ], + [ 7.0274128, 47.3694463 ], + [ 7.0257347, 47.3696945 ], + [ 7.0244432, 47.3698649 ], + [ 7.0244267, 47.3700728 ], + [ 7.024059, 47.3699587 ], + [ 7.0232969, 47.3700327 ], + [ 7.0218404, 47.3701357 ], + [ 7.0209895, 47.370303 ], + [ 7.0201399, 47.3703379 ], + [ 7.0194948, 47.3706609 ], + [ 7.0190703, 47.3707628 ], + [ 7.0182924, 47.3713576 ], + [ 7.018226, 47.3717229 ], + [ 7.0181806, 47.3726277 ], + [ 7.0155687, 47.3729188 ], + [ 7.0152246, 47.3726219 ], + [ 7.0148719, 47.3723553 ], + [ 7.0145238, 47.3720701 ], + [ 7.0142325, 47.3718232 ], + [ 7.0139496, 47.3716804 ], + [ 7.0131132, 47.3714341 ], + [ 7.0121921, 47.3724818 ], + [ 7.0121695, 47.3728867 ], + [ 7.0118422, 47.3726847 ], + [ 7.0115149, 47.3724253 ], + [ 7.0109977, 47.3719733 ], + [ 7.0106672, 47.3716035 ], + [ 7.0103734, 47.3713108 ], + [ 7.009356, 47.3704695 ], + [ 7.0088457, 47.3699075 ], + [ 7.0083435, 47.3693214 ], + [ 7.0081811, 47.3688522 ], + [ 7.0074035, 47.3681195 ], + [ 7.0069065, 47.368116 ], + [ 7.0066095, 47.3679986 ], + [ 7.0065067, 47.3677593 ], + [ 7.0054633, 47.3674023 ], + [ 7.0043795, 47.3671797 ], + [ 7.0034773, 47.3667988 ], + [ 7.0019302, 47.3661297 ], + [ 7.0003708, 47.3652521 ], + [ 6.998793, 47.3645025 ], + [ 6.9963798, 47.3636132 ], + [ 6.9954835, 47.3633833 ], + [ 6.9943453, 47.3632268 ], + [ 6.9930579, 47.363373 ], + [ 6.991274, 47.3635186 ], + [ 6.9903594, 47.3635872 ], + [ 6.9894514999999995, 47.3636397 ], + [ 6.9874791, 47.3638008 ], + [ 6.9860062, 47.3638071 ], + [ 6.9842838, 47.3636674 ], + [ 6.9824614, 47.3632768 ], + [ 6.9808602, 47.3627517 ], + [ 6.9798408, 47.362293 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZQ001", + "country" : "CHE", + "name" : [ + { + "text" : "LSZQ Bressaucourt", + "lang" : "de-CH" + }, + { + "text" : "LSZQ Bressaucourt", + "lang" : "fr-CH" + }, + { + "text" : "LSZQ Bressaucourt", + "lang" : "it-CH" + }, + { + "text" : "LSZQ Bressaucourt", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Aérodrome du Jura", + "lang" : "de-CH" + }, + { + "text" : "Aérodrome du Jura", + "lang" : "fr-CH" + }, + { + "text" : "Aérodrome du Jura", + "lang" : "it-CH" + }, + { + "text" : "Aérodrome du Jura", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Chef d'aérodrome", + "lang" : "de-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "fr-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "it-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Serge Crelier", + "lang" : "de-CH" + }, + { + "text" : "Serge Crelier", + "lang" : "fr-CH" + }, + { + "text" : "Serge Crelier", + "lang" : "it-CH" + }, + { + "text" : "Serge Crelier", + "lang" : "en-GB" + } + ], + "siteURL" : "https://aerojura.ch/contact", + "email" : "info@aerojura.ch", + "phone" : "0041324666073", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7885526, 47.4183574 ], + [ 7.7882453, 47.4184367 ], + [ 7.7880806, 47.4184665 ], + [ 7.7881101, 47.4185115 ], + [ 7.7878258, 47.4186795 ], + [ 7.7876379, 47.4188389 ], + [ 7.7870785, 47.4194723 ], + [ 7.7872543, 47.4195486 ], + [ 7.7876353, 47.4197378 ], + [ 7.7877497, 47.4197562 ], + [ 7.7880451, 47.4197213 ], + [ 7.7882085, 47.4200303 ], + [ 7.7882151, 47.4200506 ], + [ 7.7882465, 47.4200861 ], + [ 7.7882792, 47.4201276 ], + [ 7.7883044, 47.4201641 ], + [ 7.7883224, 47.4201952 ], + [ 7.7883598, 47.4202642 ], + [ 7.7883947, 47.4203184 ], + [ 7.7884288999999995, 47.4199513 ], + [ 7.7886669, 47.4195923 ], + [ 7.7888649999999995, 47.4191977 ], + [ 7.7890504, 47.4187799 ], + [ 7.7891342, 47.4185668 ], + [ 7.7891169, 47.4184887 ], + [ 7.7888677, 47.4183968 ], + [ 7.7885526, 47.4183574 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr088", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Eich", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Eich", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Eich", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Eich", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8339253, 47.3721682 ], + [ 7.83395, 47.3722959 ], + [ 7.8340792, 47.372407 ], + [ 7.8342767, 47.3724976 ], + [ 7.8343811, 47.3724851 ], + [ 7.8344039, 47.3724592 ], + [ 7.8343685, 47.3723987 ], + [ 7.8343053, 47.3723213 ], + [ 7.8341669, 47.3721735 ], + [ 7.8342282, 47.3719867 ], + [ 7.8341826, 47.3718793 ], + [ 7.8340811, 47.3718716 ], + [ 7.8339891, 47.3719226 ], + [ 7.8339253, 47.3721682 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns197", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Hecken-Komplex Schmutzberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Hecken-Komplex Schmutzberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Hecken-Komplex Schmutzberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Hecken-Komplex Schmutzberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7010611, 47.4995992 ], + [ 7.700988, 47.4996982 ], + [ 7.7010032, 47.4997362 ], + [ 7.7010197, 47.4997437 ], + [ 7.7011807999999995, 47.4998175 ], + [ 7.7012534, 47.4998508 ], + [ 7.7014372, 47.4997842 ], + [ 7.70148, 47.4997682 ], + [ 7.7014829, 47.499767 ], + [ 7.7014876999999995, 47.4997651 ], + [ 7.7014883, 47.4997648 ], + [ 7.7014893, 47.4997641 ], + [ 7.7016185, 47.4996705 ], + [ 7.7016865, 47.4996212 ], + [ 7.7015916, 47.4994412 ], + [ 7.701535, 47.499463 ], + [ 7.7015264, 47.4994285 ], + [ 7.7014848, 47.4994289 ], + [ 7.7014583, 47.4994494 ], + [ 7.7012839, 47.4995578 ], + [ 7.7011271, 47.4995579 ], + [ 7.7010611, 47.4995992 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr108", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Rüti", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Rüti", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Rüti", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Rüti", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.1427223, 46.3374003 ], + [ 7.1427215, 46.3373113 ], + [ 7.1426986, 46.337224 ], + [ 7.1426896, 46.3372033 ], + [ 7.1426742, 46.3371717 ], + [ 7.1426575, 46.3371402 ], + [ 7.1426382, 46.3371096 ], + [ 7.1426176, 46.3370798 ], + [ 7.1425957, 46.3370501 ], + [ 7.1425208, 46.3369581 ], + [ 7.1424408, 46.336868 ], + [ 7.1423569, 46.3367805 ], + [ 7.142269, 46.3366948 ], + [ 7.142176, 46.3366118 ], + [ 7.1421411, 46.336582 ], + [ 7.1421049, 46.3365522 ], + [ 7.1420687, 46.3365233 ], + [ 7.1420325, 46.3364945 ], + [ 7.1419949, 46.3364665 ], + [ 7.1419536, 46.3364349 ], + [ 7.1419122, 46.3364042 ], + [ 7.1418708, 46.3363735 ], + [ 7.1418294, 46.3363419 ], + [ 7.141788, 46.3363112 ], + [ 7.141713, 46.3362588 ], + [ 7.141634, 46.3362092 ], + [ 7.1415498, 46.336164 ], + [ 7.1414617, 46.3361223 ], + [ 7.1413697, 46.3360843 ], + [ 7.1412842, 46.3360508 ], + [ 7.1411987, 46.3360173 ], + [ 7.1411158, 46.335982 ], + [ 7.1410328, 46.3359449 ], + [ 7.1409499, 46.3359078 ], + [ 7.1409072, 46.335887 ], + [ 7.1408644, 46.3358653 ], + [ 7.140823, 46.3358427 ], + [ 7.1407829, 46.3358192 ], + [ 7.140744, 46.3357948 ], + [ 7.140704, 46.3357641 ], + [ 7.140673, 46.3357298 ], + [ 7.1406511, 46.3356929 ], + [ 7.1406383, 46.3356533 ], + [ 7.140636, 46.3356128 ], + [ 7.140644, 46.3355723 ], + [ 7.1406545, 46.3355463 ], + [ 7.1406755, 46.3355032 ], + [ 7.1406965, 46.33546 ], + [ 7.1407163, 46.3354169 ], + [ 7.1407347, 46.3353729 ], + [ 7.1407518, 46.3353288 ], + [ 7.1407677, 46.3352659 ], + [ 7.1407681, 46.3352021 ], + [ 7.1407656, 46.3351886 ], + [ 7.1407569, 46.3351085 ], + [ 7.1407561, 46.3350284 ], + [ 7.1407656, 46.3349484 ], + [ 7.1407842, 46.3348693 ], + [ 7.1408132, 46.334792 ], + [ 7.1408357, 46.3347129 ], + [ 7.1408388, 46.3346328 ], + [ 7.1408223, 46.3345536 ], + [ 7.1408121, 46.3345266 ], + [ 7.1407992, 46.3344978 ], + [ 7.1407569, 46.3344032 ], + [ 7.1407004, 46.3342798 ], + [ 7.140644, 46.3341564 ], + [ 7.1405861999999996, 46.3340339 ], + [ 7.1405258, 46.3339114 ], + [ 7.1405002, 46.3338583 ], + [ 7.1404732, 46.333806 ], + [ 7.1404462, 46.3337538 ], + [ 7.1404179, 46.3337015 ], + [ 7.1403883, 46.3336493 ], + [ 7.1403704, 46.3336106 ], + [ 7.1403576, 46.33357 ], + [ 7.1403513, 46.3335287 ], + [ 7.1403516, 46.3334873 ], + [ 7.1403583, 46.3334468 ], + [ 7.1403649, 46.3334207 ], + [ 7.1403702, 46.3333947 ], + [ 7.1403756, 46.3333677 ], + [ 7.1403809, 46.3333416 ], + [ 7.1403863, 46.3333155 ], + [ 7.1403906, 46.3332355 ], + [ 7.1403755, 46.3331563 ], + [ 7.1403408, 46.3330806 ], + [ 7.1403305, 46.3330635 ], + [ 7.1403047, 46.3330275 ], + [ 7.1402764, 46.3329932 ], + [ 7.1402441, 46.3329589 ], + [ 7.1402105, 46.3329265 ], + [ 7.1401743, 46.3328958 ], + [ 7.1401342, 46.3328642 ], + [ 7.1400941, 46.3328326 ], + [ 7.1400514, 46.3328019 ], + [ 7.1400088, 46.3327721 ], + [ 7.1399648, 46.3327432 ], + [ 7.1399518, 46.3327351 ], + [ 7.1398457, 46.3326655 ], + [ 7.1397241, 46.3325887 ], + [ 7.1396024, 46.3325129 ], + [ 7.1394807, 46.3324379 ], + [ 7.1393565, 46.3323629 ], + [ 7.1389138, 46.3320981 ], + [ 7.1388646, 46.3320656 ], + [ 7.1388207, 46.3320295 ], + [ 7.1387832, 46.3319898 ], + [ 7.138751, 46.3319475 ], + [ 7.1387279, 46.3319033 ], + [ 7.1387125, 46.3318754 ], + [ 7.1386931, 46.3318493 ], + [ 7.1386712, 46.331824 ], + [ 7.1386453, 46.3318006 ], + [ 7.1386169, 46.3317789 ], + [ 7.1385004, 46.331703 ], + [ 7.1383814, 46.331628 ], + [ 7.138261, 46.3315566 ], + [ 7.1368615, 46.3312435 ], + [ 7.136659, 46.3312321 ], + [ 7.1362526, 46.3312112 ], + [ 7.134868, 46.3312651 ], + [ 7.1344186, 46.3312801 ], + [ 7.1343536, 46.3312844 ], + [ 7.134106, 46.3314511 ], + [ 7.1339877, 46.3316918 ], + [ 7.1340549, 46.3322174 ], + [ 7.1339675, 46.3322855 ], + [ 7.1339476, 46.3325895 ], + [ 7.1338774, 46.3326127 ], + [ 7.1338629000000005, 46.3326495 ], + [ 7.1341021, 46.3328283 ], + [ 7.1363253, 46.3344859 ], + [ 7.1393957, 46.3367763 ], + [ 7.1394803, 46.3367441 ], + [ 7.1397661, 46.3367305 ], + [ 7.1399291, 46.3368442 ], + [ 7.1400533, 46.3369318 ], + [ 7.1400572, 46.3369381 ], + [ 7.1403325, 46.3371827 ], + [ 7.1403044, 46.3373229 ], + [ 7.140283, 46.337438 ], + [ 7.1409854, 46.3379634 ], + [ 7.1409945, 46.3379634 ], + [ 7.1410036, 46.3379635 ], + [ 7.1410114, 46.3379635 ], + [ 7.1410204, 46.3379635 ], + [ 7.1410295, 46.3379635 ], + [ 7.1410386, 46.3379635 ], + [ 7.1410464, 46.3379636 ], + [ 7.1410555, 46.3379627 ], + [ 7.1410646, 46.3379627 ], + [ 7.1410724, 46.3379618 ], + [ 7.1410815, 46.3379619 ], + [ 7.1410906, 46.337961 ], + [ 7.1410984, 46.337961 ], + [ 7.1411075, 46.3379601 ], + [ 7.1411153, 46.3379592 ], + [ 7.1411244, 46.3379584 ], + [ 7.1411335, 46.3379575 ], + [ 7.1411413, 46.3379566 ], + [ 7.1411504, 46.3379557 ], + [ 7.1411582, 46.3379549 ], + [ 7.1411673, 46.3379531 ], + [ 7.1411751, 46.3379522 ], + [ 7.1411842, 46.3379513 ], + [ 7.141192, 46.3379496 ], + [ 7.1412011, 46.3379478 ], + [ 7.1412089, 46.3379469 ], + [ 7.141218, 46.3379451 ], + [ 7.1412258, 46.3379433 ], + [ 7.1412336, 46.3379425 ], + [ 7.1412414, 46.3379407 ], + [ 7.1412492, 46.3379398 ], + [ 7.1412583, 46.3379389 ], + [ 7.1412661, 46.3379381 ], + [ 7.1412739, 46.3379363 ], + [ 7.1412817, 46.3379354 ], + [ 7.1412895, 46.3379345 ], + [ 7.1412984999999995, 46.3379345 ], + [ 7.1413063, 46.3379337 ], + [ 7.1413141, 46.3379328 ], + [ 7.1413219, 46.3379319 ], + [ 7.141331, 46.3379319 ], + [ 7.1413388, 46.3379311 ], + [ 7.1413466, 46.3379311 ], + [ 7.1413557, 46.3379311 ], + [ 7.1413635, 46.3379302 ], + [ 7.1413713, 46.3379302 ], + [ 7.1413791, 46.3379303 ], + [ 7.1413882, 46.3379303 ], + [ 7.141396, 46.3379303 ], + [ 7.1414038, 46.3379303 ], + [ 7.1414129, 46.3379303 ], + [ 7.1414206, 46.3379313 ], + [ 7.1414284, 46.3379313 ], + [ 7.1414375, 46.3379322 ], + [ 7.1414453, 46.3379322 ], + [ 7.1414531, 46.3379332 ], + [ 7.1414609, 46.3379332 ], + [ 7.14147, 46.3379341 ], + [ 7.1414778, 46.337935 ], + [ 7.1414856, 46.3379359 ], + [ 7.1414933, 46.3379369 ], + [ 7.1415024, 46.3379378 ], + [ 7.1415102, 46.3379387 ], + [ 7.141518, 46.3379396 ], + [ 7.1415258, 46.3379414 ], + [ 7.1415336, 46.3379424 ], + [ 7.1415414, 46.3379442 ], + [ 7.1415492, 46.3379451 ], + [ 7.1417295, 46.337978 ], + [ 7.1417373, 46.3379798 ], + [ 7.1417451, 46.3379807 ], + [ 7.1417542, 46.3379825 ], + [ 7.1417619, 46.3379834 ], + [ 7.141771, 46.3379844 ], + [ 7.1417801, 46.3379853 ], + [ 7.1417879, 46.3379871 ], + [ 7.141797, 46.337988 ], + [ 7.1418048, 46.337989 ], + [ 7.1418139, 46.3379899 ], + [ 7.141823, 46.3379899 ], + [ 7.1418307, 46.3379908 ], + [ 7.1418398, 46.3379917 ], + [ 7.1418476, 46.3379918 ], + [ 7.1418567, 46.3379927 ], + [ 7.1418658, 46.3379927 ], + [ 7.1418736, 46.3379936 ], + [ 7.1418827, 46.3379937 ], + [ 7.1418918, 46.3379937 ], + [ 7.1418996, 46.3379937 ], + [ 7.1419086, 46.3379937 ], + [ 7.1419177, 46.3379937 ], + [ 7.1419255, 46.3379938 ], + [ 7.1419346, 46.3379938 ], + [ 7.1419437, 46.3379938 ], + [ 7.1419515, 46.3379929 ], + [ 7.1419606, 46.337993 ], + [ 7.1419697, 46.3379921 ], + [ 7.1419775, 46.3379921 ], + [ 7.1419866, 46.3379912 ], + [ 7.1419944, 46.3379903 ], + [ 7.1420035, 46.3379904 ], + [ 7.1420126, 46.3379895 ], + [ 7.1420204, 46.3379886 ], + [ 7.1420295, 46.3379877 ], + [ 7.1420373, 46.3379869 ], + [ 7.1420464, 46.3379851 ], + [ 7.1420542, 46.3379842 ], + [ 7.1420633, 46.3379833 ], + [ 7.1420711, 46.3379816 ], + [ 7.1420802, 46.3379807 ], + [ 7.142088, 46.3379789 ], + [ 7.1420971, 46.3379771 ], + [ 7.1421049, 46.3379762 ], + [ 7.142114, 46.3379745 ], + [ 7.1421218, 46.3379727 ], + [ 7.1421296, 46.3379709 ], + [ 7.1421387, 46.3379691 ], + [ 7.1421465, 46.3379674 ], + [ 7.1421543, 46.3379656 ], + [ 7.1421634, 46.3379629 ], + [ 7.1421712, 46.3379611 ], + [ 7.142179, 46.3379593 ], + [ 7.1421868, 46.3379567 ], + [ 7.1421946, 46.337954 ], + [ 7.1422037, 46.3379522 ], + [ 7.1422115, 46.3379495 ], + [ 7.1422193, 46.3379469 ], + [ 7.1422271, 46.3379442 ], + [ 7.1422349, 46.3379415 ], + [ 7.1422427, 46.3379388 ], + [ 7.1422505, 46.3379361 ], + [ 7.1422571, 46.3379335 ], + [ 7.1422649, 46.3379308 ], + [ 7.1422727, 46.3379281 ], + [ 7.1422805, 46.3379245 ], + [ 7.142287, 46.3379219 ], + [ 7.1422948, 46.3379183 ], + [ 7.1423026, 46.3379156 ], + [ 7.1423091, 46.337912 ], + [ 7.1423169, 46.3379093 ], + [ 7.1423234, 46.3379058 ], + [ 7.1424277, 46.3378368 ], + [ 7.1424681, 46.3378117 ], + [ 7.1425046, 46.337783 ], + [ 7.1425412, 46.3377498 ], + [ 7.1425739, 46.3377139 ], + [ 7.1426052, 46.337678 ], + [ 7.1426314, 46.3376403 ], + [ 7.142655, 46.3376017 ], + [ 7.1426747, 46.3375621 ], + [ 7.1426918, 46.3375226 ], + [ 7.142705, 46.3374822 ], + [ 7.1427156, 46.3374417 ], + [ 7.1427223, 46.3374003 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00013", + "country" : "CHE", + "name" : [ + { + "text" : "La Jorasse", + "lang" : "de-CH" + }, + { + "text" : "La Jorasse", + "lang" : "fr-CH" + }, + { + "text" : "La Jorasse", + "lang" : "it-CH" + }, + { + "text" : "La Jorasse", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "startDateTime" : "2024-11-15T00:00:00+01:00", + "endDateTime" : "2025-04-15T00:00:00+02:00" + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Generaldirektion für Umwelt", + "lang" : "de-CH" + }, + { + "text" : "Direction générale de l'environnement", + "lang" : "fr-CH" + }, + { + "text" : "Direzione generale dell'Ambiente", + "lang" : "it-CH" + }, + { + "text" : "Environment Department", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.dge@vd.ch", + "phone" : "0041213164422", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.2668511, 46.7105052 ], + [ 8.2667254, 46.708152 ], + [ 8.2664208, 46.7058066 ], + [ 8.2659383, 46.7034754 ], + [ 8.2652791, 46.7011647 ], + [ 8.2644451, 46.6988809 ], + [ 8.2634386, 46.6966303 ], + [ 8.262262400000001, 46.694419 ], + [ 8.2609197, 46.6922531 ], + [ 8.2594142, 46.6901385 ], + [ 8.257750099999999, 46.6880809 ], + [ 8.2559319, 46.6860861 ], + [ 8.2539646, 46.6841595 ], + [ 8.2518537, 46.6823063 ], + [ 8.2496048, 46.6805316 ], + [ 8.2472242, 46.6788404 ], + [ 8.2447185, 46.6772371 ], + [ 8.2420944, 46.6757263 ], + [ 8.2393591, 46.674312 ], + [ 8.2365202, 46.672998 ], + [ 8.2335855, 46.6717881 ], + [ 8.2305629, 46.6706855 ], + [ 8.2274607, 46.6696932 ], + [ 8.2242874, 46.6688139 ], + [ 8.2210518, 46.6680501 ], + [ 8.2177625, 46.6674038 ], + [ 8.2144287, 46.6668768 ], + [ 8.2110595, 46.6664706 ], + [ 8.2076641, 46.6661861 ], + [ 8.2042517, 46.6660243 ], + [ 8.2008317, 46.6659856 ], + [ 8.1974134, 46.6660701 ], + [ 8.1940062, 46.6662774 ], + [ 8.1906194, 46.6666072 ], + [ 8.1872623, 46.6670584 ], + [ 8.183944, 46.6676299 ], + [ 8.1806736, 46.66832 ], + [ 8.17746, 46.669127 ], + [ 8.1743122, 46.6700485 ], + [ 8.1712385, 46.6710821 ], + [ 8.1682476, 46.6722249 ], + [ 8.1653475, 46.6734738 ], + [ 8.1625462, 46.6748254 ], + [ 8.1598513, 46.676276 ], + [ 8.1572703, 46.6778217 ], + [ 8.1548103, 46.6794581 ], + [ 8.1524778, 46.6811809 ], + [ 8.1502795, 46.6829853 ], + [ 8.1482212, 46.6848663 ], + [ 8.1463086, 46.6868189 ], + [ 8.144547, 46.6888376 ], + [ 8.1429413, 46.690917 ], + [ 8.1414958, 46.6930514 ], + [ 8.1402145, 46.6952348 ], + [ 8.1391009, 46.6974614 ], + [ 8.1381581, 46.6997251 ], + [ 8.1373888, 46.7020196 ], + [ 8.136795, 46.7043386 ], + [ 8.1363784, 46.7066759 ], + [ 8.1361401, 46.7090249 ], + [ 8.1360809, 46.7113793 ], + [ 8.136201, 46.7137326 ], + [ 8.1364999, 46.7160783 ], + [ 8.1369769, 46.7184101 ], + [ 8.1376308, 46.7207215 ], + [ 8.1384598, 46.7230062 ], + [ 8.1394615, 46.7252579 ], + [ 8.1406334, 46.7274704 ], + [ 8.1419721, 46.7296378 ], + [ 8.1434741, 46.731754 ], + [ 8.1451352, 46.7338132 ], + [ 8.1469509, 46.7358097 ], + [ 8.1489163, 46.7377382 ], + [ 8.1510259, 46.7395933 ], + [ 8.1532739, 46.7413698 ], + [ 8.1556543, 46.7430631 ], + [ 8.1581605, 46.7446683 ], + [ 8.1607856, 46.746181 ], + [ 8.1635224, 46.7475972 ], + [ 8.1663635, 46.7489129 ], + [ 8.1693009, 46.7501246 ], + [ 8.1723267, 46.7512288 ], + [ 8.1754326, 46.7522226 ], + [ 8.17861, 46.7531032 ], + [ 8.1818501, 46.7538682 ], + [ 8.1851442, 46.7545156 ], + [ 8.1884831, 46.7550434 ], + [ 8.1918577, 46.7554504 ], + [ 8.1952587, 46.7557352 ], + [ 8.1986768, 46.7558973 ], + [ 8.2021025, 46.7559361 ], + [ 8.2055264, 46.7558515 ], + [ 8.2089392, 46.7556438 ], + [ 8.2123315, 46.7553135 ], + [ 8.215694, 46.7548615 ], + [ 8.2190173, 46.7542891 ], + [ 8.2222924, 46.7535979 ], + [ 8.2255103, 46.7527897 ], + [ 8.2286621, 46.7518668 ], + [ 8.2317393, 46.7508317 ], + [ 8.2347332, 46.7496872 ], + [ 8.2376358, 46.7484365 ], + [ 8.2404391, 46.7470831 ], + [ 8.2431353, 46.7456306 ], + [ 8.2457171, 46.744083 ], + [ 8.2481773, 46.7424446 ], + [ 8.2505094, 46.7407199 ], + [ 8.2527067, 46.7389136 ], + [ 8.2547634, 46.7370307 ], + [ 8.2566738, 46.7350763 ], + [ 8.2584327, 46.7330558 ], + [ 8.2600353, 46.7309748 ], + [ 8.2614771, 46.728839 ], + [ 8.2627543, 46.7266541 ], + [ 8.2638634, 46.7244263 ], + [ 8.2648013, 46.7221616 ], + [ 8.2655655, 46.7198663 ], + [ 8.2661539, 46.7175466 ], + [ 8.266565, 46.7152089 ], + [ 8.2667976, 46.7128596 ], + [ 8.2668511, 46.7105052 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSXC001", + "country" : "CHE", + "name" : [ + { + "text" : "LSXC Schattenhalb", + "lang" : "de-CH" + }, + { + "text" : "LSXC Schattenhalb", + "lang" : "fr-CH" + }, + { + "text" : "LSXC Schattenhalb", + "lang" : "it-CH" + }, + { + "text" : "LSXC Schattenhalb", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swiss Helicopter AG", + "lang" : "de-CH" + }, + { + "text" : "Swiss Helicopter AG", + "lang" : "fr-CH" + }, + { + "text" : "Swiss Helicopter AG", + "lang" : "it-CH" + }, + { + "text" : "Swiss Helicopter AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Basis Schattenhalb", + "lang" : "de-CH" + }, + { + "text" : "Basis Schattenhalb", + "lang" : "fr-CH" + }, + { + "text" : "Basis Schattenhalb", + "lang" : "it-CH" + }, + { + "text" : "Basis Schattenhalb", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Martin Burgener", + "lang" : "de-CH" + }, + { + "text" : "Martin Burgener", + "lang" : "fr-CH" + }, + { + "text" : "Martin Burgener", + "lang" : "it-CH" + }, + { + "text" : "Martin Burgener", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swisshelicopter.ch/en/about-us/helicopter-bases/schattenhalb-meiringen", + "email" : "berneroberland@swisshelicopter.ch", + "phone" : "0041338289000", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P02DT12H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.7222853, 46.1330051 ], + [ 8.7222766, 46.1328639 ], + [ 8.7222574, 46.1327233 ], + [ 8.7222275, 46.1325835 ], + [ 8.7221872, 46.132445 ], + [ 8.7221366, 46.1323082 ], + [ 8.7220757, 46.1321734 ], + [ 8.7220047, 46.132041 ], + [ 8.7219239, 46.1319114 ], + [ 8.7218334, 46.1317849 ], + [ 8.7217335, 46.1316619 ], + [ 8.7216245, 46.1315426 ], + [ 8.721506699999999, 46.1314275 ], + [ 8.7213804, 46.1313168 ], + [ 8.7212459, 46.1312109 ], + [ 8.7211036, 46.13111 ], + [ 8.7209539, 46.1310145 ], + [ 8.7207973, 46.1309245 ], + [ 8.7206341, 46.1308403 ], + [ 8.7204647, 46.1307622 ], + [ 8.7202898, 46.1306903 ], + [ 8.7201096, 46.130625 ], + [ 8.7199248, 46.1305662 ], + [ 8.7197358, 46.1305143 ], + [ 8.7195432, 46.1304693 ], + [ 8.7193474, 46.1304314 ], + [ 8.7191491, 46.1304007 ], + [ 8.7189487, 46.1303772 ], + [ 8.7187468, 46.130361 ], + [ 8.718544, 46.1303523 ], + [ 8.7183408, 46.1303509 ], + [ 8.7181377, 46.1303569 ], + [ 8.7179354, 46.1303702 ], + [ 8.7177344, 46.130391 ], + [ 8.7175352, 46.130419 ], + [ 8.7173384, 46.1304542 ], + [ 8.7171446, 46.1304965 ], + [ 8.7169541, 46.1305459 ], + [ 8.7167677, 46.130602 ], + [ 8.7165857, 46.1306649 ], + [ 8.7164087, 46.1307344 ], + [ 8.7162372, 46.1308101 ], + [ 8.7160716, 46.1308921 ], + [ 8.7159125, 46.1309799 ], + [ 8.7157601, 46.1310734 ], + [ 8.715615, 46.1311723 ], + [ 8.7154775, 46.1312763 ], + [ 8.7153481, 46.1313852 ], + [ 8.715227, 46.1314987 ], + [ 8.7151146, 46.1316164 ], + [ 8.7150113, 46.1317381 ], + [ 8.7149172, 46.1318633 ], + [ 8.7148327, 46.1319918 ], + [ 8.7147581, 46.1321232 ], + [ 8.7146933, 46.1322572 ], + [ 8.7146388, 46.1323933 ], + [ 8.7145946, 46.1325312 ], + [ 8.7145608, 46.1326705 ], + [ 8.7145375, 46.1328108 ], + [ 8.7145249, 46.1329519 ], + [ 8.7145229, 46.1330931 ], + [ 8.7145315, 46.1332343 ], + [ 8.7145507, 46.1333749 ], + [ 8.7145805, 46.1335147 ], + [ 8.7146208, 46.1336532 ], + [ 8.7146715, 46.13379 ], + [ 8.714732399999999, 46.1339248 ], + [ 8.7148033, 46.1340572 ], + [ 8.7148841, 46.1341868 ], + [ 8.7149746, 46.1343134 ], + [ 8.7150744, 46.1344364 ], + [ 8.7151834, 46.1345557 ], + [ 8.7153013, 46.1346708 ], + [ 8.7154276, 46.1347815 ], + [ 8.7155621, 46.1348874 ], + [ 8.7157043, 46.1349883 ], + [ 8.715854, 46.1350838 ], + [ 8.7160107, 46.1351738 ], + [ 8.7161739, 46.135258 ], + [ 8.7163432, 46.1353361 ], + [ 8.7165182, 46.135408 ], + [ 8.7166984, 46.1354734 ], + [ 8.7168832, 46.1355321 ], + [ 8.7170722, 46.135584 ], + [ 8.7172649, 46.135629 ], + [ 8.7174607, 46.1356669 ], + [ 8.717659, 46.1356977 ], + [ 8.7178594, 46.1357212 ], + [ 8.7180613, 46.1357373 ], + [ 8.7182642, 46.1357461 ], + [ 8.7184674, 46.1357475 ], + [ 8.7186704, 46.1357415 ], + [ 8.7188728, 46.1357281 ], + [ 8.7190738, 46.1357074 ], + [ 8.719273, 46.1356794 ], + [ 8.7194698, 46.1356442 ], + [ 8.7196637, 46.1356018 ], + [ 8.7198541, 46.1355525 ], + [ 8.7200406, 46.1354963 ], + [ 8.7202226, 46.1354334 ], + [ 8.7203996, 46.135364 ], + [ 8.7205711, 46.1352882 ], + [ 8.7207367, 46.1352063 ], + [ 8.7208959, 46.1351184 ], + [ 8.7210482, 46.1350249 ], + [ 8.7211934, 46.134926 ], + [ 8.7213308, 46.134822 ], + [ 8.7214603, 46.134713 ], + [ 8.7215813, 46.1345996 ], + [ 8.7216937, 46.1344818 ], + [ 8.721797, 46.1343602 ], + [ 8.7218911, 46.1342349 ], + [ 8.7219755, 46.1341064 ], + [ 8.7220502, 46.133975 ], + [ 8.7221149, 46.1338411 ], + [ 8.7221694, 46.133705 ], + [ 8.7222136, 46.1335671 ], + [ 8.7222474, 46.1334277 ], + [ 8.7222706, 46.1332874 ], + [ 8.7222833, 46.1331464 ], + [ 8.7222853, 46.1330051 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0123", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Verbano", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Verbano", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Verbano", + "lang" : "it-CH" + }, + { + "text" : "Substation Verbano", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7390068, 47.5270164 ], + [ 7.7395699, 47.5269464 ], + [ 7.739323, 47.5267517 ], + [ 7.7390068, 47.5270164 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns294", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Schnüeren", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Schnüeren", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Schnüeren", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Schnüeren", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6164172, 47.4430814 ], + [ 7.6163484, 47.4431496 ], + [ 7.6163074, 47.4431891 ], + [ 7.6162624999999995, 47.4432094 ], + [ 7.6162136, 47.4432171 ], + [ 7.6161553, 47.4432138 ], + [ 7.6161141, 47.4432014 ], + [ 7.6129036, 47.4431707 ], + [ 7.6129033, 47.4431807 ], + [ 7.612905, 47.4432176 ], + [ 7.6129128, 47.4432341 ], + [ 7.6129297000000005, 47.443261 ], + [ 7.6129318, 47.4432845 ], + [ 7.6129275, 47.4433027 ], + [ 7.6129058, 47.4433175 ], + [ 7.6128771, 47.4433251 ], + [ 7.6128461, 47.4433424 ], + [ 7.6128241, 47.4433604 ], + [ 7.6128045, 47.4433851 ], + [ 7.6128029, 47.4434027 ], + [ 7.6128062, 47.4434303 ], + [ 7.6128105, 47.4434467 ], + [ 7.6128233, 47.4434828 ], + [ 7.6128654000000004, 47.4435945 ], + [ 7.6129385, 47.443791 ], + [ 7.612988, 47.4439395 ], + [ 7.6129968, 47.4439696 ], + [ 7.6130335, 47.4440951 ], + [ 7.6131053, 47.4442594 ], + [ 7.6131329999999995, 47.4443329 ], + [ 7.6131691, 47.4445045 ], + [ 7.6131849, 47.4445571 ], + [ 7.6132231, 47.4446418 ], + [ 7.6134308, 47.4449568 ], + [ 7.6134886999999996, 47.4449994 ], + [ 7.6136122, 47.4450649 ], + [ 7.613698, 47.4451146 ], + [ 7.6137622, 47.4451545 ], + [ 7.6138068, 47.4451994 ], + [ 7.6138429, 47.4452684 ], + [ 7.6138492, 47.4453116 ], + [ 7.613838, 47.4453604 ], + [ 7.6138338, 47.4453839 ], + [ 7.6138436, 47.4454048 ], + [ 7.613861, 47.4454193 ], + [ 7.6138813, 47.4454287 ], + [ 7.6139018, 47.445437 ], + [ 7.6140056, 47.44548 ], + [ 7.6140864, 47.4455135 ], + [ 7.6141763000000005, 47.4455761 ], + [ 7.6142695, 47.445658 ], + [ 7.6143132, 47.4457101 ], + [ 7.614329, 47.4457289 ], + [ 7.6143729, 47.4457854 ], + [ 7.6143973, 47.4458364 ], + [ 7.6144239, 47.4458573 ], + [ 7.6145783, 47.445979 ], + [ 7.6145849, 47.4460719 ], + [ 7.6145988, 47.446267 ], + [ 7.6143364, 47.446444 ], + [ 7.6144425, 47.4465092 ], + [ 7.6145135, 47.4465536 ], + [ 7.6145937, 47.4466006 ], + [ 7.6147466, 47.4466914 ], + [ 7.6149236, 47.4468149 ], + [ 7.61506, 47.4469477 ], + [ 7.6152928, 47.4472124 ], + [ 7.6153493999999995, 47.4472657 ], + [ 7.61544, 47.4473176 ], + [ 7.6155938, 47.4473724 ], + [ 7.6157915, 47.4474246 ], + [ 7.6159791, 47.4474932 ], + [ 7.6161714, 47.4475679 ], + [ 7.6162605, 47.4476279 ], + [ 7.6163007, 47.4476609 ], + [ 7.6163427, 47.4476802 ], + [ 7.6164075, 47.4476894 ], + [ 7.616458, 47.4476746 ], + [ 7.6165462, 47.4477784 ], + [ 7.6164731, 47.4478186 ], + [ 7.6165487, 47.447895 ], + [ 7.6166384, 47.4480074 ], + [ 7.6166763, 47.4480568 ], + [ 7.6167115, 47.4481013 ], + [ 7.6167556, 47.4481658 ], + [ 7.6167852, 47.4482204 ], + [ 7.6168088, 47.4482827 ], + [ 7.616826, 47.4483354 ], + [ 7.6168691, 47.4484492 ], + [ 7.6168946, 47.4485354 ], + [ 7.6169344, 47.4486146 ], + [ 7.6170009, 47.4487001 ], + [ 7.6170766, 47.4487761 ], + [ 7.6171394, 47.4488384 ], + [ 7.6171859, 47.4488846 ], + [ 7.617217, 47.4489172 ], + [ 7.6172584, 47.4489746 ], + [ 7.617318, 47.4490816 ], + [ 7.6173953999999995, 47.4492327 ], + [ 7.6174545, 47.4493814 ], + [ 7.6175148, 47.4495031 ], + [ 7.617551, 47.4495514 ], + [ 7.6176009, 47.4495968 ], + [ 7.6176476, 47.4496336 ], + [ 7.6177295, 47.4496856 ], + [ 7.6177817, 47.4497265 ], + [ 7.6178425, 47.4497815 ], + [ 7.6178787, 47.4498249 ], + [ 7.6179129, 47.4498776 ], + [ 7.6179273, 47.4499219 ], + [ 7.6179273, 47.4499663 ], + [ 7.6179198, 47.4499909 ], + [ 7.6178944, 47.4500236 ], + [ 7.6178623, 47.4500495 ], + [ 7.617807, 47.4500696 ], + [ 7.6176987, 47.4500899 ], + [ 7.6175434, 47.4501073 ], + [ 7.6173904, 47.4501281 ], + [ 7.6172497, 47.4501501 ], + [ 7.6171129, 47.4501715 ], + [ 7.6170193, 47.4501837 ], + [ 7.6168952, 47.4502004 ], + [ 7.6167939, 47.450208 ], + [ 7.6167108, 47.4502169 ], + [ 7.6166396, 47.4502254 ], + [ 7.6165726, 47.4502352 ], + [ 7.6165179, 47.4502458 ], + [ 7.6164821, 47.4502547 ], + [ 7.6164361, 47.4502741 ], + [ 7.6163305999999995, 47.450328999999996 ], + [ 7.6161916, 47.4504139 ], + [ 7.6159994, 47.4505157 ], + [ 7.6158715, 47.4505812 ], + [ 7.6158047, 47.4506164 ], + [ 7.6157474, 47.4506559 ], + [ 7.6156863, 47.450712 ], + [ 7.6156431, 47.4507736 ], + [ 7.6155859, 47.4508742 ], + [ 7.6155239, 47.451013 ], + [ 7.615507, 47.4510447 ], + [ 7.6155034, 47.4510579 ], + [ 7.6155038, 47.4510855 ], + [ 7.6155451, 47.4511443 ], + [ 7.615555, 47.4511608 ], + [ 7.6155759, 47.4512189 ], + [ 7.6155872, 47.4512695 ], + [ 7.6155925, 47.4513292 ], + [ 7.6155865, 47.4514457 ], + [ 7.615578, 47.4515805 ], + [ 7.6155757, 47.4517038 ], + [ 7.6155681, 47.4517831 ], + [ 7.6155353, 47.4520798 ], + [ 7.6155007999999995, 47.4523109 ], + [ 7.6154881, 47.452512 ], + [ 7.6154754, 47.4526666 ], + [ 7.6154661, 47.4527844 ], + [ 7.6154457, 47.4529682 ], + [ 7.6154565, 47.4529862 ], + [ 7.6154845, 47.453017 ], + [ 7.6155099, 47.4530633 ], + [ 7.615549, 47.4531649 ], + [ 7.6156284, 47.4533004 ], + [ 7.6157649, 47.453468 ], + [ 7.6159128, 47.4536097 ], + [ 7.6160394, 47.4537085 ], + [ 7.6162101, 47.4538285 ], + [ 7.6163126, 47.4538855 ], + [ 7.6165093, 47.4540003 ], + [ 7.6167442, 47.453876 ], + [ 7.6173739, 47.4535256 ], + [ 7.618018, 47.453161 ], + [ 7.6187451, 47.4529081 ], + [ 7.6195457, 47.4526295 ], + [ 7.6201019, 47.4523885 ], + [ 7.620292, 47.4523046 ], + [ 7.6202683, 47.4522559 ], + [ 7.6199195, 47.4512782 ], + [ 7.6199122, 47.4512576 ], + [ 7.6199029, 47.4512316 ], + [ 7.6200913, 47.4511086 ], + [ 7.6199833, 47.450639699999996 ], + [ 7.6194463, 47.4495936 ], + [ 7.6188651, 47.4490125 ], + [ 7.6185341, 47.4481435 ], + [ 7.6185945, 47.4479542 ], + [ 7.6184473, 47.4477771 ], + [ 7.6185118, 47.4476558 ], + [ 7.6172786, 47.4468016 ], + [ 7.6164708999999995, 47.4452384 ], + [ 7.6165315, 47.4444693 ], + [ 7.616441, 47.4440876 ], + [ 7.6164553999999995, 47.4434257 ], + [ 7.6164599, 47.4430389 ], + [ 7.6164172, 47.4430814 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns309", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Falkeflue", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Falkeflue", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Falkeflue", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Falkeflue", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.5574487, 47.3581924 ], + [ 9.5574376, 47.3580513 ], + [ 9.5574157, 47.3579108 ], + [ 9.557383, 47.3577713 ], + [ 9.5573397, 47.3576332 ], + [ 9.5572857, 47.3574967 ], + [ 9.5572213, 47.3573624 ], + [ 9.5571466, 47.3572306 ], + [ 9.5570619, 47.3571016 ], + [ 9.5569674, 47.3569757 ], + [ 9.5568633, 47.3568535 ], + [ 9.556750000000001, 47.356735 ], + [ 9.5566276, 47.3566208 ], + [ 9.5564967, 47.3565111 ], + [ 9.5563575, 47.3564062 ], + [ 9.5562103, 47.3563064 ], + [ 9.5560557, 47.3562119 ], + [ 9.5558941, 47.3561231 ], + [ 9.5557258, 47.3560402 ], + [ 9.5555514, 47.3559633 ], + [ 9.555371300000001, 47.3558928 ], + [ 9.555185999999999, 47.3558288 ], + [ 9.554996, 47.3557714 ], + [ 9.5548019, 47.3557209 ], + [ 9.5546041, 47.355677299999996 ], + [ 9.5544033, 47.3556409 ], + [ 9.5541999, 47.3556116 ], + [ 9.5539945, 47.3555896 ], + [ 9.5537878, 47.355575 ], + [ 9.5535802, 47.3555677 ], + [ 9.5533723, 47.3555678 ], + [ 9.5531647, 47.3555753 ], + [ 9.552958, 47.3555902 ], + [ 9.5527527, 47.3556124 ], + [ 9.5525494, 47.3556418 ], + [ 9.5523486, 47.3556785 ], + [ 9.552151, 47.3557223 ], + [ 9.551957, 47.355773 ], + [ 9.5517671, 47.3558305 ], + [ 9.551582, 47.3558948 ], + [ 9.551402, 47.3559655 ], + [ 9.5512278, 47.3560425 ], + [ 9.5510597, 47.3561256 ], + [ 9.5508982, 47.3562146 ], + [ 9.5507438, 47.3563092 ], + [ 9.5505969, 47.3564092 ], + [ 9.5504579, 47.3565143 ], + [ 9.5503272, 47.3566241 ], + [ 9.5502052, 47.3567385 ], + [ 9.5500921, 47.356857 ], + [ 9.5499883, 47.3569794 ], + [ 9.549894, 47.3571053 ], + [ 9.5498096, 47.3572344 ], + [ 9.5497352, 47.3573663 ], + [ 9.5496711, 47.3575007 ], + [ 9.5496175, 47.3576372 ], + [ 9.549574400000001, 47.3577754 ], + [ 9.549542, 47.3579149 ], + [ 9.5495204, 47.3580554 ], + [ 9.5495097, 47.3581965 ], + [ 9.5495099, 47.3583378 ], + [ 9.5495209, 47.3584789 ], + [ 9.5495428, 47.3586193 ], + [ 9.5495754, 47.3587589 ], + [ 9.5496188, 47.358897 ], + [ 9.5496727, 47.3590335 ], + [ 9.5497371, 47.3591678 ], + [ 9.5498118, 47.3592996 ], + [ 9.5498965, 47.3594286 ], + [ 9.549991, 47.3595545 ], + [ 9.550095, 47.3596768 ], + [ 9.5502084, 47.3597952 ], + [ 9.5503307, 47.3599094 ], + [ 9.5504617, 47.3600191 ], + [ 9.5506009, 47.360124 ], + [ 9.550748, 47.3602239 ], + [ 9.5509026, 47.3603183 ], + [ 9.5510643, 47.3604071 ], + [ 9.5512326, 47.3604901 ], + [ 9.551407, 47.3605669 ], + [ 9.5515871, 47.3606375 ], + [ 9.5517724, 47.3607015 ], + [ 9.5519624, 47.3607589 ], + [ 9.5521566, 47.3608094 ], + [ 9.5523543, 47.360853 ], + [ 9.5525552, 47.3608894 ], + [ 9.5527586, 47.3609187 ], + [ 9.5529639, 47.3609407 ], + [ 9.5531707, 47.3609554 ], + [ 9.5533783, 47.3609626 ], + [ 9.5535863, 47.3609625 ], + [ 9.5537939, 47.360955 ], + [ 9.5540006, 47.3609402 ], + [ 9.5542059, 47.360918 ], + [ 9.5544092, 47.3608885 ], + [ 9.55461, 47.3608518 ], + [ 9.5548077, 47.360808 ], + [ 9.5550017, 47.3607573 ], + [ 9.5551916, 47.3606998 ], + [ 9.5553767, 47.3606355 ], + [ 9.5555567, 47.3605648 ], + [ 9.555731, 47.3604878 ], + [ 9.5558991, 47.3604046 ], + [ 9.5560605, 47.3603156 ], + [ 9.5562149, 47.360221 ], + [ 9.5563618, 47.360121 ], + [ 9.5565008, 47.360016 ], + [ 9.5566315, 47.3599061 ], + [ 9.5567536, 47.359791799999996 ], + [ 9.5568667, 47.3596732 ], + [ 9.5569705, 47.3595508 ], + [ 9.5570647, 47.3594249 ], + [ 9.5571491, 47.3592958 ], + [ 9.5572234, 47.3591639 ], + [ 9.5572875, 47.3590295 ], + [ 9.5573412, 47.358893 ], + [ 9.5573842, 47.3587548 ], + [ 9.5574166, 47.3586152 ], + [ 9.5574381, 47.3584747 ], + [ 9.5574488, 47.3583337 ], + [ 9.5574487, 47.3581924 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "ALS0001", + "country" : "CHE", + "name" : [ + { + "text" : "Regionalgefängnis Altstätten St. Gallen", + "lang" : "de-CH" + }, + { + "text" : "Regionalgefängnis Altstätten St. Gallen", + "lang" : "fr-CH" + }, + { + "text" : "Regionalgefängnis Altstätten St. Gallen", + "lang" : "it-CH" + }, + { + "text" : "Regionalgefängnis Altstätten St. Gallen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Justizvollzug", + "lang" : "de-CH" + }, + { + "text" : "Amt für Justizvollzug", + "lang" : "fr-CH" + }, + { + "text" : "Amt für Justizvollzug", + "lang" : "it-CH" + }, + { + "text" : "Amt für Justizvollzug", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Regionalgefängnis Altstätten St. Gallen", + "lang" : "de-CH" + }, + { + "text" : "Regionalgefängnis Altstätten St. Gallen", + "lang" : "fr-CH" + }, + { + "text" : "Regionalgefängnis Altstätten St. Gallen", + "lang" : "it-CH" + }, + { + "text" : "Regionalgefängnis Altstätten St. Gallen", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.sg.ch/sicherheit/justizvollzug/rgal.html", + "email" : "zentrale.rgal@sg.ch", + "phone" : "0041582281640", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8087329, 47.4405754 ], + [ 7.8086394, 47.4405498 ], + [ 7.8086310999999995, 47.4407119 ], + [ 7.8087896, 47.4407567 ], + [ 7.808777, 47.4407206 ], + [ 7.8087651000000005, 47.4406844 ], + [ 7.8087537, 47.4406481 ], + [ 7.808743, 47.4406118 ], + [ 7.8087329, 47.4405754 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns096", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Zelgli", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Zelgli", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Zelgli", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Zelgli", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.4366033, 47.4819446 ], + [ 9.4365926, 47.4818035 ], + [ 9.4365709, 47.481663 ], + [ 9.4365385, 47.4815235 ], + [ 9.4364953, 47.4813853 ], + [ 9.4364415, 47.4812488 ], + [ 9.4363773, 47.4811144 ], + [ 9.4363027, 47.4809825 ], + [ 9.4362181, 47.4808534 ], + [ 9.4361237, 47.4807275 ], + [ 9.4360196, 47.4806051 ], + [ 9.4359062, 47.4804866 ], + [ 9.4357839, 47.4803723 ], + [ 9.4356529, 47.4802624 ], + [ 9.4355135, 47.4801574 ], + [ 9.4353663, 47.4800574 ], + [ 9.4352116, 47.4799628 ], + [ 9.4350497, 47.4798738 ], + [ 9.4348812, 47.4797907 ], + [ 9.4347066, 47.4797137 ], + [ 9.4345262, 47.479643 ], + [ 9.4343406, 47.4795788 ], + [ 9.4341503, 47.4795212 ], + [ 9.4339558, 47.4794705 ], + [ 9.4337577, 47.4794267 ], + [ 9.4335565, 47.4793901 ], + [ 9.4333527, 47.4793606 ], + [ 9.4331469, 47.4793384 ], + [ 9.4329397, 47.4793235 ], + [ 9.4327316, 47.479316 ], + [ 9.4325233, 47.4793159 ], + [ 9.4323152, 47.4793232 ], + [ 9.4321079, 47.4793379 ], + [ 9.4319021, 47.4793598 ], + [ 9.4316983, 47.4793891 ], + [ 9.431497, 47.4794256 ], + [ 9.4312987, 47.4794691 ], + [ 9.4311042, 47.4795196 ], + [ 9.4309137, 47.479577 ], + [ 9.430728, 47.479641 ], + [ 9.4305475, 47.4797116 ], + [ 9.4303726, 47.4797884 ], + [ 9.4302039, 47.4798713 ], + [ 9.430041899999999, 47.4799601 ], + [ 9.429887, 47.4800546 ], + [ 9.4297395, 47.4801544 ], + [ 9.4295999, 47.4802593 ], + [ 9.4294687, 47.480369 ], + [ 9.4293461, 47.4804832 ], + [ 9.4292324, 47.4806016 ], + [ 9.4291281, 47.4807239 ], + [ 9.4290334, 47.4808497 ], + [ 9.4289484, 47.4809787 ], + [ 9.4288736, 47.4811106 ], + [ 9.4288091, 47.4812449 ], + [ 9.428755, 47.4813813 ], + [ 9.4287115, 47.4815194 ], + [ 9.4286787, 47.4816589 ], + [ 9.4286568, 47.4817994 ], + [ 9.4286457, 47.4819405 ], + [ 9.4286455, 47.4820817 ], + [ 9.4286563, 47.4822228 ], + [ 9.4286779, 47.4823633 ], + [ 9.4287103, 47.4825028 ], + [ 9.4287535, 47.482641 ], + [ 9.4288072, 47.4827775 ], + [ 9.4288715, 47.4829119 ], + [ 9.428946, 47.4830438 ], + [ 9.4290306, 47.4831729 ], + [ 9.429124999999999, 47.4832988 ], + [ 9.4292291, 47.4834212 ], + [ 9.4293424, 47.4835398 ], + [ 9.4294648, 47.4836541 ], + [ 9.4295958, 47.4837639 ], + [ 9.4297351, 47.483869 ], + [ 9.4298824, 47.483969 ], + [ 9.4300371, 47.4840636 ], + [ 9.4301989, 47.4841526 ], + [ 9.4303674, 47.4842357 ], + [ 9.4305421, 47.4843127 ], + [ 9.4307225, 47.4843834 ], + [ 9.4309081, 47.4844477 ], + [ 9.4310984, 47.4845052 ], + [ 9.4312929, 47.4845559 ], + [ 9.431491, 47.4845997 ], + [ 9.4316923, 47.4846364 ], + [ 9.4318961, 47.4846658 ], + [ 9.4321019, 47.4846881 ], + [ 9.4323091, 47.4847029 ], + [ 9.4325172, 47.4847104 ], + [ 9.4327256, 47.4847105 ], + [ 9.4329337, 47.4847032 ], + [ 9.433140999999999, 47.4846886 ], + [ 9.4333468, 47.4846666 ], + [ 9.4335507, 47.4846373 ], + [ 9.433752, 47.4846009 ], + [ 9.4339503, 47.4845573 ], + [ 9.4341449, 47.4845068 ], + [ 9.4343353, 47.4844494 ], + [ 9.434521, 47.4843854 ], + [ 9.4347016, 47.4843149 ], + [ 9.4348764, 47.484238 ], + [ 9.4350451, 47.4841551 ], + [ 9.4352072, 47.4840662 ], + [ 9.4353621, 47.4839718 ], + [ 9.4355096, 47.483872 ], + [ 9.4356491, 47.4837671 ], + [ 9.4357804, 47.4836574 ], + [ 9.435903, 47.4835431 ], + [ 9.4360166, 47.4834247 ], + [ 9.4361209, 47.4833024 ], + [ 9.4362157, 47.4831766 ], + [ 9.4363006, 47.4830476 ], + [ 9.4363754, 47.4829158 ], + [ 9.4364399, 47.4827815 ], + [ 9.436494, 47.482645 ], + [ 9.4365375, 47.4825069 ], + [ 9.4365702, 47.4823674 ], + [ 9.4365921, 47.4822269 ], + [ 9.4366032, 47.4820858 ], + [ 9.4366033, 47.4819446 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0075", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Mörschwil", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Mörschwil", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Mörschwil", + "lang" : "it-CH" + }, + { + "text" : "Substation Mörschwil", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7050994, 47.4635077 ], + [ 7.705397, 47.4638367 ], + [ 7.7055966, 47.4640199 ], + [ 7.7058893, 47.4642154 ], + [ 7.706104, 47.4643359 ], + [ 7.7062608, 47.4644091 ], + [ 7.706348, 47.4644381 ], + [ 7.7064104, 47.4644598 ], + [ 7.7064461, 47.4644643 ], + [ 7.7064783, 47.4644628 ], + [ 7.706493, 47.4644568 ], + [ 7.7065083, 47.4644433 ], + [ 7.7065173, 47.4644289 ], + [ 7.7065742, 47.4643971 ], + [ 7.7065937, 47.4644118 ], + [ 7.7066123, 47.4644271 ], + [ 7.7066302, 47.4644427 ], + [ 7.7066471, 47.4644588 ], + [ 7.7066631999999995, 47.4644754 ], + [ 7.7066785, 47.4644923 ], + [ 7.7066928, 47.4645095 ], + [ 7.7067061, 47.4645271 ], + [ 7.7067185, 47.4645451 ], + [ 7.70673, 47.4645633 ], + [ 7.7067404, 47.4645818 ], + [ 7.7067467, 47.4645939 ], + [ 7.7067477, 47.4647401 ], + [ 7.7067796, 47.464901 ], + [ 7.7068337, 47.4650356 ], + [ 7.7068645, 47.4650995 ], + [ 7.7069282, 47.4651878 ], + [ 7.7070137, 47.4653015 ], + [ 7.7070661, 47.4653612 ], + [ 7.7071355, 47.4654368 ], + [ 7.7072326, 47.4655376 ], + [ 7.707314, 47.4656271 ], + [ 7.7073496, 47.465661 ], + [ 7.7074134, 47.4657233 ], + [ 7.707506, 47.4658072 ], + [ 7.7075995, 47.4658919 ], + [ 7.7077185, 47.4660014 ], + [ 7.7078114, 47.4660716 ], + [ 7.7079039, 47.4661417 ], + [ 7.7080186, 47.4662245 ], + [ 7.7081633, 47.4663179 ], + [ 7.7082657, 47.4663801 ], + [ 7.7083569, 47.4664378 ], + [ 7.7084466, 47.4664914 ], + [ 7.7085913999999995, 47.4665646 ], + [ 7.7087143000000005, 47.4666187 ], + [ 7.708913, 47.4667055 ], + [ 7.7090543, 47.4667699 ], + [ 7.7091471, 47.466806 ], + [ 7.709214, 47.4668239 ], + [ 7.7092457, 47.4668311 ], + [ 7.7093324, 47.4668371 ], + [ 7.7099211, 47.4669145 ], + [ 7.7102025, 47.4661117 ], + [ 7.710106, 47.4656005 ], + [ 7.7100436, 47.465593 ], + [ 7.7099566, 47.465581 ], + [ 7.709792, 47.4655487 ], + [ 7.7096425, 47.4655138 ], + [ 7.7093755, 47.4654189 ], + [ 7.7093044, 47.4653889 ], + [ 7.7092494, 47.4653583 ], + [ 7.7091802, 47.4653065 ], + [ 7.7091023, 47.4652317 ], + [ 7.7090643, 47.4651998 ], + [ 7.7090396, 47.4651704 ], + [ 7.7082086, 47.4655306 ], + [ 7.70816, 47.4654661 ], + [ 7.7080942, 47.4653797 ], + [ 7.7080406, 47.465283 ], + [ 7.7080168, 47.4652281 ], + [ 7.7079687, 47.4651013 ], + [ 7.7079445, 47.4649469 ], + [ 7.707952, 47.4648597 ], + [ 7.7079877, 47.4647486 ], + [ 7.7076944, 47.4647022 ], + [ 7.7076465, 47.4646932 ], + [ 7.7076647, 47.4646519 ], + [ 7.7079168, 47.464183 ], + [ 7.7079289, 47.4641449 ], + [ 7.7079314, 47.4641109 ], + [ 7.7079301000000005, 47.4640677 ], + [ 7.7079213, 47.4640327 ], + [ 7.7079054, 47.4639989 ], + [ 7.7078865, 47.463971 ], + [ 7.7078536, 47.4639294 ], + [ 7.7077255000000005, 47.463782 ], + [ 7.7075742, 47.4635901 ], + [ 7.7075075, 47.4635068 ], + [ 7.7091558, 47.4632081 ], + [ 7.7093678, 47.463218499999996 ], + [ 7.7094831, 47.4632241 ], + [ 7.7094906, 47.4632244 ], + [ 7.7095873, 47.4632304 ], + [ 7.7100709, 47.4632603 ], + [ 7.7103027, 47.4629916 ], + [ 7.7106626, 47.4627647 ], + [ 7.710536, 47.4626516 ], + [ 7.7104201, 47.4625038 ], + [ 7.7065349, 47.4627609 ], + [ 7.7065109, 47.4628016 ], + [ 7.7064895, 47.4628219 ], + [ 7.7064416, 47.4628607 ], + [ 7.7063481, 47.4629281 ], + [ 7.7062567, 47.463004 ], + [ 7.7061948000000005, 47.4630701 ], + [ 7.7061468, 47.4631268 ], + [ 7.7060601, 47.4632732 ], + [ 7.7060311, 47.4633495 ], + [ 7.7060142, 47.4634235 ], + [ 7.7060081, 47.4634517 ], + [ 7.7059675, 47.4634537 ], + [ 7.7050994, 47.4635077 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns222", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Stellihübel - Furtboden", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Stellihübel - Furtboden", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Stellihübel - Furtboden", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Stellihübel - Furtboden", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.9280481, 46.9925202 ], + [ 6.9282807, 46.9924626 ], + [ 6.9284935, 46.9923763 ], + [ 6.9286788, 46.9922642 ], + [ 6.9286971, 46.9922508 ], + [ 6.9288399, 46.9921466 ], + [ 6.9289921, 46.9920119 ], + [ 6.928993, 46.9920107 ], + [ 6.9290055, 46.9919996 ], + [ 6.9290469, 46.9919437 ], + [ 6.9291084, 46.9918736 ], + [ 6.9291938, 46.9917148 ], + [ 6.9292342, 46.991548 ], + [ 6.9292283, 46.9913789 ], + [ 6.9291762, 46.9912135 ], + [ 6.9290798, 46.9910578 ], + [ 6.9289425, 46.9909172 ], + [ 6.928929, 46.9909078 ], + [ 6.9287672, 46.9907768 ], + [ 6.9285519, 46.9906621 ], + [ 6.9284707, 46.9906275 ], + [ 6.928439, 46.9906139 ], + [ 6.9281964, 46.9905323 ], + [ 6.9279345, 46.9904864 ], + [ 6.9276644, 46.9904781 ], + [ 6.9273976, 46.9905078 ], + [ 6.9271452, 46.9905742 ], + [ 6.9269181, 46.9906745 ], + [ 6.9267258, 46.9908045 ], + [ 6.926684, 46.990839199999996 ], + [ 6.9266675, 46.9908561 ], + [ 6.9266608, 46.9908615 ], + [ 6.9266485, 46.9908717 ], + [ 6.9265235, 46.9909763 ], + [ 6.9263839, 46.9911191 ], + [ 6.9262866, 46.9912775 ], + [ 6.926235, 46.9914456 ], + [ 6.9262311, 46.9916174 ], + [ 6.926275, 46.9917865 ], + [ 6.9263651, 46.9919469 ], + [ 6.9264981, 46.9920926 ], + [ 6.9266691, 46.9922183 ], + [ 6.9267318, 46.9922564 ], + [ 6.9267557, 46.9922705 ], + [ 6.9268057, 46.9922994 ], + [ 6.9268187999999995, 46.9923057 ], + [ 6.926844, 46.9923207 ], + [ 6.9268726, 46.9923373 ], + [ 6.9268830999999995, 46.9923432 ], + [ 6.9270879, 46.9924381 ], + [ 6.9273150999999995, 46.9925051 ], + [ 6.9275566, 46.9925418 ], + [ 6.9278037999999995, 46.9925469 ], + [ 6.9280481, 46.9925202 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "NE07", + "country" : "CHE", + "name" : [ + { + "text" : "Tribunal cantonal", + "lang" : "de-CH" + }, + { + "text" : "Tribunal cantonal", + "lang" : "fr-CH" + }, + { + "text" : "Tribunal cantonal", + "lang" : "it-CH" + }, + { + "text" : "Tribunal cantonal", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "regulationExemption" : "YES", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Police Neuchâteloise", + "lang" : "de-CH" + }, + { + "text" : "Police Neuchâteloise", + "lang" : "fr-CH" + }, + { + "text" : "Police Neuchâteloise", + "lang" : "it-CH" + }, + { + "text" : "Police Neuchâteloise", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "PN - Rens et opérations", + "lang" : "de-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "fr-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "it-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "PN - Rens et opérations", + "lang" : "de-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "fr-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "it-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ne.ch/autorites/DESC/PONE/Pages/Drones.aspx", + "email" : "Police.Neuchateloise@ne.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8249647, 47.5065108 ], + [ 7.8255464, 47.5065748 ], + [ 7.825546, 47.5065382 ], + [ 7.8255465, 47.5065016 ], + [ 7.8255479, 47.506465 ], + [ 7.8255502, 47.5064284 ], + [ 7.8255533, 47.5063919 ], + [ 7.8255574, 47.5063554 ], + [ 7.8255623, 47.5063189 ], + [ 7.8255681, 47.5062825 ], + [ 7.8255748, 47.5062462 ], + [ 7.8255824, 47.5062099 ], + [ 7.8255943, 47.5061593 ], + [ 7.8256068, 47.5061087 ], + [ 7.8256201, 47.5060582 ], + [ 7.825634, 47.5060077 ], + [ 7.8256486, 47.5059574 ], + [ 7.8256639, 47.5059071 ], + [ 7.8256798, 47.505857 ], + [ 7.8257065, 47.5057773 ], + [ 7.8257226, 47.5057276 ], + [ 7.8257378, 47.5056779 ], + [ 7.8257521, 47.505628 ], + [ 7.8257655, 47.505578 ], + [ 7.825778, 47.5055279 ], + [ 7.8257896, 47.5054777 ], + [ 7.8258003, 47.5054274 ], + [ 7.8258101, 47.5053771 ], + [ 7.825819, 47.5053266 ], + [ 7.825827, 47.5052761 ], + [ 7.8258341, 47.5052255 ], + [ 7.8258403, 47.5051748 ], + [ 7.8258456, 47.5051241 ], + [ 7.82585, 47.5050734 ], + [ 7.8258605, 47.5049427 ], + [ 7.8258634, 47.5049016 ], + [ 7.8258657, 47.5048605 ], + [ 7.8258674, 47.5048194 ], + [ 7.8258686, 47.5047783 ], + [ 7.8257762, 47.5047675 ], + [ 7.825721, 47.5049341 ], + [ 7.8255128, 47.5053424 ], + [ 7.8254099, 47.5055652 ], + [ 7.8252882, 47.5058251 ], + [ 7.825056, 47.506254 ], + [ 7.8249647, 47.5065108 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns257", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Rotenrüti", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Rotenrüti", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Rotenrüti", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Rotenrüti", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.7988371999999995, 46.9665784 ], + [ 6.7984868, 46.9666207 ], + [ 6.7985106, 46.9664144 ], + [ 6.798558, 46.9662277 ], + [ 6.7985847, 46.9659164 ], + [ 6.7987246, 46.9656213 ], + [ 6.7989777, 46.9654048 ], + [ 6.7992522, 46.9652507 ], + [ 6.7992704, 46.9652422 ], + [ 6.799481, 46.9651429 ], + [ 6.7997095, 46.9650507 ], + [ 6.800007, 46.9648966 ], + [ 6.8002138, 46.9647732 ], + [ 6.8006248, 46.9646042 ], + [ 6.799903, 46.9632896 ], + [ 6.8001502, 46.9625257 ], + [ 6.8001883, 46.9622942 ], + [ 6.8001937, 46.9621194 ], + [ 6.8001667999999995, 46.9619673 ], + [ 6.8000985, 46.9617647 ], + [ 6.799937, 46.9613992 ], + [ 6.7998266, 46.9611575 ], + [ 6.7996668, 46.9609217 ], + [ 6.7995819, 46.9607362 ], + [ 6.7994248, 46.9606245 ], + [ 6.7992257, 46.9605187 ], + [ 6.7990925, 46.9603955 ], + [ 6.7990087, 46.9602551 ], + [ 6.7988421, 46.9601153 ], + [ 6.798643, 46.9600038 ], + [ 6.7984603, 46.9598358 ], + [ 6.7982938, 46.9596791 ], + [ 6.7981007, 46.9594097 ], + [ 6.7979158, 46.9591458 ], + [ 6.7977815, 46.9589099 ], + [ 6.7976067, 46.9587645 ], + [ 6.7973742999999995, 46.9586251 ], + [ 6.7970442, 46.9584864 ], + [ 6.7967130000000004, 46.958308099999996 ], + [ 6.7962904, 46.9580797 ], + [ 6.7960408, 46.9578728 ], + [ 6.7958334, 46.9576994 ], + [ 6.7956672000000005, 46.9575934 ], + [ 6.7954687, 46.9575101 ], + [ 6.7952126, 46.9574273 ], + [ 6.7948830000000005, 46.9573224 ], + [ 6.7944379, 46.9572577 ], + [ 6.7940994, 46.9571359 ], + [ 6.7938266, 46.9570138 ], + [ 6.7936278, 46.9568853 ], + [ 6.7934286, 46.9567175 ], + [ 6.7932542, 46.9566115 ], + [ 6.7931466, 46.9565446 ], + [ 6.7927919, 46.9564737 ], + [ 6.7924299, 46.9563972 ], + [ 6.792091, 46.9563036 ], + [ 6.7918101, 46.9561814 ], + [ 6.7916523, 46.9560529 ], + [ 6.7915109000000005, 46.9559297 ], + [ 6.7912866, 46.9557395 ], + [ 6.7910543, 46.9556 ], + [ 6.7907892, 46.9554497 ], + [ 6.7905487, 46.9553046 ], + [ 6.7903674, 46.9552213 ], + [ 6.790234, 46.9551206 ], + [ 6.790159, 46.9550084 ], + [ 6.7900897, 46.9547662 ], + [ 6.7899479, 46.9546093 ], + [ 6.7897656, 46.9545429 ], + [ 6.7895425, 46.9544486 ], + [ 6.789377, 46.9543537 ], + [ 6.7892608, 46.9542586 ], + [ 6.7891595, 46.9540788 ], + [ 6.7890829, 46.9538933 ], + [ 6.7889233, 46.9536463 ], + [ 6.7888144, 46.9534891 ], + [ 6.788698, 46.9533996 ], + [ 6.7885159999999996, 46.9533106 ], + [ 6.788194, 46.9531887 ], + [ 6.7879708999999995, 46.9531 ], + [ 6.7878217, 46.9530107 ], + [ 6.7876802, 46.9528989 ], + [ 6.7876045, 46.9527753 ], + [ 6.7875358, 46.9525558 ], + [ 6.7874847, 46.9524321 ], + [ 6.7873847, 46.9523482 ], + [ 6.787228, 46.9522703 ], + [ 6.7871036, 46.9521696 ], + [ 6.7869133, 46.9520919 ], + [ 6.7868133, 46.952008 ], + [ 6.7867712000000004, 46.9518955 ], + [ 6.7866956, 46.9518283 ], + [ 6.7864888, 46.9516832 ], + [ 6.786157, 46.9514936 ], + [ 6.7859747, 46.9513595 ], + [ 6.7858016, 46.9513437 ], + [ 6.7855550000000004, 46.9513059 ], + [ 6.785324, 46.9512567 ], + [ 6.7851425, 46.9511903 ], + [ 6.7849519, 46.9510675 ], + [ 6.7847771, 46.9509276 ], + [ 6.7846019, 46.9507484 ], + [ 6.7844839, 46.9505291 ], + [ 6.7843656, 46.9502649 ], + [ 6.7842228, 46.9500628 ], + [ 6.7840398, 46.9499174 ], + [ 6.7838658, 46.9497833 ], + [ 6.7836419, 46.9496268 ], + [ 6.7835078, 46.9494473 ], + [ 6.7833643, 46.9491662 ], + [ 6.7832768, 46.9487946 ], + [ 6.7831855, 46.9487445 ], + [ 6.7830781, 46.9486661 ], + [ 6.7829453, 46.9485768 ], + [ 6.7827955, 46.9484763 ], + [ 6.7826632, 46.9484153 ], + [ 6.7824905, 46.9483769 ], + [ 6.7823576, 46.9483044 ], + [ 6.7822831, 46.9482148 ], + [ 6.7822567, 46.9480908 ], + [ 6.782254, 46.9479104 ], + [ 6.7822277, 46.9477808 ], + [ 6.7821515, 46.9476348 ], + [ 6.7820083, 46.9473932 ], + [ 6.7818739, 46.9471741 ], + [ 6.7817817, 46.9470564 ], + [ 6.7817553, 46.9469324 ], + [ 6.7817449, 46.9467803 ], + [ 6.7817179, 46.9466338 ], + [ 6.781642, 46.9464707 ], + [ 6.7815326, 46.9462796 ], + [ 6.7814806999999995, 46.9460996 ], + [ 6.7814954, 46.9459698 ], + [ 6.7815177, 46.9458287 ], + [ 6.7815562, 46.945631 ], + [ 6.7815576, 46.9445763 ], + [ 6.7815563999999995, 46.943877 ], + [ 6.7814564, 46.9431953 ], + [ 6.7813876, 46.9429814 ], + [ 6.7813275, 46.9427958 ], + [ 6.7812836, 46.9426211 ], + [ 6.7812984, 46.9424913 ], + [ 6.7812634, 46.9423281 ], + [ 6.7812361, 46.9421477 ], + [ 6.7812342999999995, 46.9420294 ], + [ 6.7812221, 46.9417531 ], + [ 6.7811522, 46.9414265 ], + [ 6.7810977999999995, 46.9411111 ], + [ 6.7809961, 46.9408974 ], + [ 6.7808961, 46.9407571 ], + [ 6.7808284, 46.9406503 ], + [ 6.7806747, 46.9402002 ], + [ 6.7806145, 46.9400201 ], + [ 6.780464, 46.9398407 ], + [ 6.780355, 46.9396948 ], + [ 6.7802963, 46.9395937 ], + [ 6.7802454, 46.9394643 ], + [ 6.7800773, 46.9391778 ], + [ 6.7798496, 46.9388015 ], + [ 6.7795233, 46.9383694 ], + [ 6.7793139, 46.9380438 ], + [ 6.7790713, 46.9377407 ], + [ 6.7788203, 46.9373928 ], + [ 6.7785606, 46.9370843 ], + [ 6.7784024, 46.9369332 ], + [ 6.7782034, 46.9367596 ], + [ 6.7780876, 46.9366983 ], + [ 6.7779551, 46.9366597 ], + [ 6.7778071, 46.9366156 ], + [ 6.7777397, 46.9364919 ], + [ 6.7777045, 46.9363456 ], + [ 6.7777188, 46.9361877 ], + [ 6.7776255, 46.9359683 ], + [ 6.7764885, 46.9339795 ], + [ 6.7761359, 46.9334235 ], + [ 6.7759782, 46.9332948 ], + [ 6.7757052, 46.9331386 ], + [ 6.7754560999999995, 46.9329712 ], + [ 6.7752407, 46.9328034 ], + [ 6.774967, 46.9326361 ], + [ 6.7747852, 46.93253 ], + [ 6.7745608, 46.9323623 ], + [ 6.7742631, 46.9322064 ], + [ 6.773784, 46.9319953 ], + [ 6.7732227, 46.9317904 ], + [ 6.7724552, 46.9315304 ], + [ 6.7719696, 46.9314433 ], + [ 6.7715833, 46.9314234 ], + [ 6.7712386, 46.9314201 ], + [ 6.7708943, 46.9314506 ], + [ 6.7704515, 46.9314817 ], + [ 6.7699423, 46.9315132 ], + [ 6.7694009, 46.9315562 ], + [ 6.7688356, 46.9316051 ], + [ 6.7684993, 46.9316524 ], + [ 6.7681148, 46.9317508 ], + [ 6.7677874, 46.9318095 ], + [ 6.767583, 46.9318784 ], + [ 6.767379, 46.9319812 ], + [ 6.7671997, 46.9320726 ], + [ 6.7670443, 46.9321583 ], + [ 6.7667836, 46.9322671 ], + [ 6.7665296999999995, 46.9323591 ], + [ 6.7662531, 46.9324906 ], + [ 6.7659506, 46.9325941 ], + [ 6.7656971, 46.9327141 ], + [ 6.7654779, 46.9328454 ], + [ 6.7651924999999995, 46.9330221 ], + [ 6.7650299, 46.9331585 ], + [ 6.7648919, 46.9332327 ], + [ 6.7647208, 46.9333297 ], + [ 6.7643851999999995, 46.9334504 ], + [ 6.7640996, 46.9335819 ], + [ 6.7638300000000005, 46.933674 ], + [ 6.7635856, 46.933794 ], + [ 6.7633005, 46.9339482 ], + [ 6.7630394, 46.9340796 ], + [ 6.7627872, 46.9342334 ], + [ 6.7625758, 46.9343984 ], + [ 6.7623393, 46.9345353 ], + [ 6.7621927, 46.9346378 ], + [ 6.7619720999999995, 46.93469 ], + [ 6.7616608, 46.934771 ], + [ 6.7613671, 46.9348856 ], + [ 6.7610973, 46.9350002 ], + [ 6.7608529, 46.9351146 ], + [ 6.7605511, 46.9352857 ], + [ 6.7601605, 46.9355422 ], + [ 6.7597935, 46.935742 ], + [ 6.7595161, 46.9358678 ], + [ 6.7592716, 46.9359878 ], + [ 6.7590918, 46.9360567 ], + [ 6.7588129, 46.9361035 ], + [ 6.7584615, 46.9361792 ], + [ 6.758183, 46.9362599 ], + [ 6.7579293, 46.9363292 ], + [ 6.7577409, 46.93637 ], + [ 6.7574878, 46.9364562 ], + [ 6.7572915, 46.9365252 ], + [ 6.756973, 46.9366569 ], + [ 6.7566628, 46.9367831 ], + [ 6.7562879, 46.9369604 ], + [ 6.7560833, 46.9370405 ], + [ 6.7558705, 46.9371153 ], + [ 6.7557321, 46.9371613 ], + [ 6.7554531, 46.9372195 ], + [ 6.7552243, 46.9372661 ], + [ 6.754986, 46.9372846 ], + [ 6.7547074, 46.9373089 ], + [ 6.7545105, 46.9373045 ], + [ 6.7542224, 46.9373008 ], + [ 6.7539926999999995, 46.937291 ], + [ 6.7536062999999995, 46.9372766 ], + [ 6.7533104, 46.9372446 ], + [ 6.7530391, 46.9372126 ], + [ 6.7528009, 46.9372198 ], + [ 6.7526530000000005, 46.9372376 ], + [ 6.7524483, 46.9372559 ], + [ 6.7523168, 46.9372736 ], + [ 6.7521697, 46.9372858 ], + [ 6.7519309, 46.9372817 ], + [ 6.7516433, 46.9372385 ], + [ 6.7514213, 46.9372061 ], + [ 6.751199, 46.9371906 ], + [ 6.7510851, 46.9372421 ], + [ 6.7510031999999995, 46.9372877 ], + [ 6.7508482999999995, 46.9373394 ], + [ 6.7507337, 46.9373797 ], + [ 6.7505366, 46.937381 ], + [ 6.7503313, 46.9373879 ], + [ 6.7501173, 46.9373724 ], + [ 6.7499447, 46.9373284 ], + [ 6.7497711, 46.9372899 ], + [ 6.7496072, 46.9372684 ], + [ 6.7493684, 46.9372643 ], + [ 6.7489986, 46.9372386 ], + [ 6.7485464, 46.9371681 ], + [ 6.7483649, 46.9371129 ], + [ 6.7482809, 46.9370063 ], + [ 6.7481808, 46.9368772 ], + [ 6.7480806, 46.9367482 ], + [ 6.7479809, 46.936653 ], + [ 6.7477335, 46.9365529 ], + [ 6.7474948, 46.9365376 ], + [ 6.7428346999999995, 46.9368775 ], + [ 6.7421769, 46.9368366 ], + [ 6.7419632, 46.9367984 ], + [ 6.7417077, 46.9367494 ], + [ 6.7414613, 46.9367002 ], + [ 6.7412219, 46.9366171 ], + [ 6.7409579, 46.9365285 ], + [ 6.7406687, 46.9364233 ], + [ 6.7402736, 46.9363185 ], + [ 6.7398779, 46.9362027 ], + [ 6.7394579, 46.9361151 ], + [ 6.7390948, 46.9360159 ], + [ 6.7387162, 46.9359055 ], + [ 6.738427, 46.9358001 ], + [ 6.7380889, 46.9356725 ], + [ 6.7377751, 46.9355618 ], + [ 6.7376267, 46.9354894 ], + [ 6.7374687, 46.9353945 ], + [ 6.7373115, 46.9353053 ], + [ 6.7371288, 46.9351486 ], + [ 6.7370038, 46.9349857 ], + [ 6.7369286, 46.934896 ], + [ 6.736797, 46.9348574 ], + [ 6.7366890999999995, 46.9348185 ], + [ 6.7365243, 46.9347463 ], + [ 6.7363506, 46.9346572 ], + [ 6.7359617, 46.9344003 ], + [ 6.7354893, 46.9341212 ], + [ 6.7350682, 46.9339377 ], + [ 6.734812, 46.9338209 ], + [ 6.7345486999999995, 46.9337436 ], + [ 6.7343084, 46.9336097 ], + [ 6.7340441, 46.9334817 ], + [ 6.7336877, 46.9332471 ], + [ 6.7335057, 46.9331128 ], + [ 6.7333487, 46.9330687 ], + [ 6.7331347, 46.9330476 ], + [ 6.7328554, 46.9330043 ], + [ 6.7327399, 46.9329879 ], + [ 6.732558, 46.932899 ], + [ 6.7323766, 46.932838 ], + [ 6.7321539999999995, 46.9327323 ], + [ 6.7319306999999995, 46.9326096 ], + [ 6.7316824, 46.9324588 ], + [ 6.7315324, 46.9323189 ], + [ 6.7313836, 46.9322125 ], + [ 6.7311929, 46.9321123 ], + [ 6.7308216, 46.931951 ], + [ 6.7302522, 46.9317459 ], + [ 6.7298811, 46.9316356 ], + [ 6.7295765, 46.931581 ], + [ 6.7292893, 46.9315772 ], + [ 6.7289198, 46.9315852 ], + [ 6.7286652, 46.9316036 ], + [ 6.7285258, 46.9315933 ], + [ 6.7284023, 46.9315546 ], + [ 6.7281792, 46.9314882 ], + [ 6.7277341, 46.9313219 ], + [ 6.7271816, 46.9311449 ], + [ 6.7267369, 46.9310742 ], + [ 6.726597, 46.9310413 ], + [ 6.7265301, 46.9309459 ], + [ 6.7264216999999995, 46.9308281 ], + [ 6.7262732, 46.9307614 ], + [ 6.7261417, 46.930717 ], + [ 6.7259188, 46.9306846 ], + [ 6.7257223, 46.930714 ], + [ 6.7255427999999995, 46.9307602 ], + [ 6.7253707, 46.9308008 ], + [ 6.7251492, 46.9308529 ], + [ 6.7248379, 46.9308718 ], + [ 6.7245588, 46.9308792 ], + [ 6.7244112, 46.9309308 ], + [ 6.7242481, 46.9309712 ], + [ 6.7240924, 46.9310174 ], + [ 6.7238712, 46.9310527 ], + [ 6.723557, 46.9310362 ], + [ 6.7232558000000004, 46.9310341 ], + [ 6.7229264, 46.931122 ], + [ 6.7219753, 46.9315388 ], + [ 6.7216434, 46.9318065 ], + [ 6.7205784, 46.9328793 ], + [ 6.7203754, 46.9333278 ], + [ 6.7202608999999995, 46.9340288 ], + [ 6.7204223, 46.9347224 ], + [ 6.7205771, 46.9349303 ], + [ 6.7207042, 46.9352459 ], + [ 6.7208612, 46.9361461 ], + [ 6.7208602, 46.9363386 ], + [ 6.7207647999999995, 46.9365366 ], + [ 6.7206028, 46.9367407 ], + [ 6.7203912, 46.9369111 ], + [ 6.7202677, 46.9368838 ], + [ 6.7200873, 46.9368679 ], + [ 6.7199322, 46.9369252 ], + [ 6.7198507, 46.9370047 ], + [ 6.7197794, 46.9371799 ], + [ 6.7196818, 46.9372935 ], + [ 6.7195359, 46.9374015 ], + [ 6.719422, 46.9375093 ], + [ 6.7192919, 46.9376004 ], + [ 6.7192279, 46.9377192 ], + [ 6.7191717, 46.9378661 ], + [ 6.7190762, 46.9380697 ], + [ 6.7189409, 46.9383695 ], + [ 6.7187627, 46.9386187 ], + [ 6.7185276, 46.9388232 ], + [ 6.7183062, 46.9388697 ], + [ 6.7185609, 46.9395224 ], + [ 6.7187212, 46.9398034 ], + [ 6.7189222, 46.9401179 ], + [ 6.7191634, 46.9403758 ], + [ 6.7193545, 46.94051 ], + [ 6.7195695, 46.9406384 ], + [ 6.7191429, 46.9406806 ], + [ 6.7188313, 46.9407163 ], + [ 6.7190138, 46.9408788 ], + [ 6.7192368, 46.9409564 ], + [ 6.7188429, 46.9410095 ], + [ 6.7186378, 46.9409995 ], + [ 6.7183991, 46.9409896 ], + [ 6.7184164, 46.9410459 ], + [ 6.7184752, 46.9411246 ], + [ 6.7185664, 46.9411804 ], + [ 6.7186653, 46.9412136 ], + [ 6.7188549, 46.94128 ], + [ 6.7186264, 46.9413605 ], + [ 6.7185030999999995, 46.9413726 ], + [ 6.7183384, 46.941351 ], + [ 6.7181408, 46.9413353 ], + [ 6.7181918, 46.9414478 ], + [ 6.7182579, 46.9414756 ], + [ 6.7183655, 46.9415368 ], + [ 6.7185049, 46.9415473 ], + [ 6.7186949, 46.94158 ], + [ 6.7188998, 46.9416014 ], + [ 6.7185808, 46.9416991 ], + [ 6.7184506, 46.9417394 ], + [ 6.7182954, 46.9418025 ], + [ 6.7181467999999995, 46.9418034 ], + [ 6.7179576999999995, 46.9417651 ], + [ 6.7177682999999995, 46.9416873 ], + [ 6.7178104, 46.9417885 ], + [ 6.7178608, 46.9418897 ], + [ 6.7179687, 46.9419792 ], + [ 6.7180925, 46.9420518 ], + [ 6.7182496, 46.9420903 ], + [ 6.7184467, 46.942089 ], + [ 6.7186191, 46.942088 ], + [ 6.7184561, 46.942185 ], + [ 6.7182589, 46.9421973 ], + [ 6.7180953, 46.9422097 ], + [ 6.7178568, 46.942183 ], + [ 6.717593, 46.9421451 ], + [ 6.7173956, 46.9421125 ], + [ 6.7176945, 46.9423532 ], + [ 6.7179095, 46.9424758 ], + [ 6.7182642, 46.9425922 ], + [ 6.718495, 46.9426471 ], + [ 6.7188314, 46.9426564 ], + [ 6.7190783, 46.9426773 ], + [ 6.7190539, 46.9427169 ], + [ 6.7188907, 46.9427631 ], + [ 6.7187433, 46.9428035 ], + [ 6.7184808, 46.9428502 ], + [ 6.7182356, 46.9428913 ], + [ 6.7179808, 46.9429098 ], + [ 6.7176852, 46.9429172 ], + [ 6.7173559, 46.9428628 ], + [ 6.717002, 46.9428086 ], + [ 6.7166734, 46.9427655 ], + [ 6.7167724, 46.9428494 ], + [ 6.7168968, 46.9429445 ], + [ 6.7170622, 46.9430338 ], + [ 6.7172448, 46.9431286 ], + [ 6.7174757, 46.9432342 ], + [ 6.7176817, 46.9433007 ], + [ 6.7178556, 46.9433729 ], + [ 6.7179624, 46.9434231 ], + [ 6.7182102, 46.9434948 ], + [ 6.7184086, 46.9435725 ], + [ 6.7186386, 46.9436275 ], + [ 6.7188614, 46.9436656 ], + [ 6.7191246, 46.9436866 ], + [ 6.7193462, 46.9436908 ], + [ 6.7191662, 46.9437653 ], + [ 6.719011, 46.9438339 ], + [ 6.7189374, 46.9438682 ], + [ 6.7187075, 46.9438753 ], + [ 6.718478, 46.9439106 ], + [ 6.7182566999999995, 46.9439457 ], + [ 6.718093, 46.9439693 ], + [ 6.7179129, 46.943993 ], + [ 6.7177238, 46.9440111 ], + [ 6.7175191, 46.9440348 ], + [ 6.7173138, 46.9440418 ], + [ 6.7170922, 46.9440375 ], + [ 6.7168042, 46.9440223 ], + [ 6.7165164, 46.9439959 ], + [ 6.7161543, 46.9439417 ], + [ 6.7158499, 46.9438702 ], + [ 6.7156693, 46.9438713 ], + [ 6.7156859, 46.9439164 ], + [ 6.715728, 46.9439612 ], + [ 6.7158103, 46.9440059 ], + [ 6.7159589, 46.9440614 ], + [ 6.7161402, 46.9441335 ], + [ 6.7162647, 46.9442173 ], + [ 6.7163563, 46.944307 ], + [ 6.7164648, 46.9444192 ], + [ 6.7165808, 46.94452 ], + [ 6.716664, 46.944621 ], + [ 6.7168551999999995, 46.9447496 ], + [ 6.7170372, 46.9448894 ], + [ 6.7171703, 46.9450013 ], + [ 6.7173361, 46.9451244 ], + [ 6.7174198, 46.945248 ], + [ 6.717275, 46.9455139 ], + [ 6.7172207, 46.9457681 ], + [ 6.7171261, 46.9460225 ], + [ 6.7170494, 46.9464798 ], + [ 6.717771, 46.9463624 ], + [ 6.7180569, 46.9462817 ], + [ 6.7181635, 46.9462304 ], + [ 6.7182449, 46.9461622 ], + [ 6.7183502, 46.9460882 ], + [ 6.7184729, 46.9459972 ], + [ 6.7186194, 46.9459061 ], + [ 6.71875, 46.9458432 ], + [ 6.7189545, 46.9457744 ], + [ 6.719143, 46.9457393 ], + [ 6.7192906, 46.9457496 ], + [ 6.7194303, 46.9457376 ], + [ 6.719726, 46.94573 ], + [ 6.7199881999999995, 46.945706 ], + [ 6.720243, 46.9457438 ], + [ 6.7204651, 46.9457707 ], + [ 6.7206303, 46.9458203 ], + [ 6.7208118, 46.9458757 ], + [ 6.7209853, 46.945976 ], + [ 6.7211262, 46.9460599 ], + [ 6.7212838999999995, 46.9461772 ], + [ 6.7214823, 46.9462607 ], + [ 6.7216394, 46.9463612 ], + [ 6.7217632, 46.9464338 ], + [ 6.721896, 46.9465119 ], + [ 6.7220455999999995, 46.9466238 ], + [ 6.72212, 46.9467022 ], + [ 6.7221792, 46.9468203 ], + [ 6.7222793, 46.9469494 ], + [ 6.7223711999999995, 46.9470166 ], + [ 6.7224454, 46.9470499 ], + [ 6.7225612, 46.9471112 ], + [ 6.7227256, 46.9471553 ], + [ 6.722915, 46.9471767 ], + [ 6.7230715, 46.9471983 ], + [ 6.7233426, 46.9471853 ], + [ 6.7235724, 46.9471895 ], + [ 6.723917, 46.9472043 ], + [ 6.7241146, 46.9472257 ], + [ 6.7243531, 46.9472581 ], + [ 6.724633, 46.9472619 ], + [ 6.7248633, 46.9472887 ], + [ 6.7250274, 46.947299 ], + [ 6.7252164, 46.9472865 ], + [ 6.7254042, 46.9472402 ], + [ 6.7255929, 46.9471882 ], + [ 6.7258789, 46.9471019 ], + [ 6.7261897, 46.9470041 ], + [ 6.7265011999999995, 46.9469175 ], + [ 6.7266644, 46.9468715 ], + [ 6.726894, 46.9468305 ], + [ 6.7270747, 46.9468237 ], + [ 6.7272476999999995, 46.9468395 ], + [ 6.7273876999999995, 46.9468726 ], + [ 6.7275605, 46.9468997 ], + [ 6.7277003, 46.946944 ], + [ 6.7277916, 46.9469942 ], + [ 6.7278419, 46.9470445 ], + [ 6.7278672, 46.9471177 ], + [ 6.7278435, 46.9471686 ], + [ 6.7278521, 46.9472588 ], + [ 6.7278946, 46.9473375 ], + [ 6.7279292, 46.9474501 ], + [ 6.7280043, 46.9475511 ], + [ 6.7280622999999995, 46.9476297 ], + [ 6.7281129, 46.947714 ], + [ 6.7281727, 46.947849 ], + [ 6.728248, 46.9479895 ], + [ 6.7282994, 46.9481414 ], + [ 6.7283676, 46.9483215 ], + [ 6.7284524999999995, 46.9485465 ], + [ 6.7285702, 46.9487658 ], + [ 6.7286544, 46.9489232 ], + [ 6.7287555, 46.9490974 ], + [ 6.7288564, 46.9492885 ], + [ 6.7290486, 46.9495354 ], + [ 6.7292076, 46.9497431 ], + [ 6.7293330000000005, 46.9498777 ], + [ 6.7294996, 46.9500683 ], + [ 6.7297319, 46.9502643 ], + [ 6.7300234, 46.9505727 ], + [ 6.7305154, 46.9511167 ], + [ 6.7306071, 46.951195 ], + [ 6.7306154, 46.9512514 ], + [ 6.7306086, 46.9513304 ], + [ 6.730552, 46.9513871 ], + [ 6.7304952, 46.9514664 ], + [ 6.7303647, 46.9515237 ], + [ 6.7302018, 46.9516093 ], + [ 6.7299646, 46.9517292 ], + [ 6.7297854, 46.9518036 ], + [ 6.7296127, 46.9518216 ], + [ 6.7294156, 46.9518284 ], + [ 6.7292773, 46.9519196 ], + [ 6.7290816, 46.9519998 ], + [ 6.7289679, 46.9520964 ], + [ 6.7288046, 46.9522102 ], + [ 6.7286816, 46.9521941 ], + [ 6.7285176, 46.9522458 ], + [ 6.7283799, 46.9523539 ], + [ 6.7282501, 46.9524787 ], + [ 6.7281199, 46.9525755 ], + [ 6.7279554, 46.9525991 ], + [ 6.7277758, 46.9526453 ], + [ 6.7276039, 46.9527253 ], + [ 6.7275642, 46.9528101 ], + [ 6.7277623, 46.9529174 ], + [ 6.7279917000000005, 46.9528978 ], + [ 6.7282976, 46.9528578 ], + [ 6.7287569, 46.9527771 ], + [ 6.7292623, 46.9526756 ], + [ 6.7292173, 46.9537211 ], + [ 6.7292307000000005, 46.9538884 ], + [ 6.7292746999999995, 46.9540352 ], + [ 6.7293035, 46.9541607 ], + [ 6.7293932, 46.9543287 ], + [ 6.7294371, 46.954423 ], + [ 6.7294671, 46.9545174 ], + [ 6.7294958, 46.9546431 ], + [ 6.7295248999999995, 46.9547373 ], + [ 6.7295536, 46.954863 ], + [ 6.7295676, 46.9549886 ], + [ 6.7296122, 46.9550934 ], + [ 6.7296559, 46.9551983 ], + [ 6.7297152, 46.9553763 ], + [ 6.7297282, 46.9555124 ], + [ 6.7297418, 46.9556589 ], + [ 6.72974, 46.9557948 ], + [ 6.7297384000000005, 46.9559203 ], + [ 6.7297363, 46.9560771 ], + [ 6.7297038, 46.9562338 ], + [ 6.7296097, 46.9564005 ], + [ 6.7295632, 46.9566242 ], + [ 6.7298038, 46.9563097 ], + [ 6.7300223, 46.9560546 ], + [ 6.7303391999999995, 46.9558158 ], + [ 6.7306251, 46.9556785 ], + [ 6.7308861, 46.9555642 ], + [ 6.7311153, 46.955495 ], + [ 6.7314188, 46.9554536 ], + [ 6.7316404, 46.9554579 ], + [ 6.7318381, 46.9554736 ], + [ 6.7320104, 46.9554838 ], + [ 6.7321339, 46.9554604 ], + [ 6.7323629, 46.9554083 ], + [ 6.7326008, 46.9553617 ], + [ 6.732822, 46.9553377 ], + [ 6.7330279, 46.9553533 ], + [ 6.7332669, 46.9554082 ], + [ 6.7334651, 46.9555084 ], + [ 6.7337619, 46.9556081 ], + [ 6.7340262, 46.9556741 ], + [ 6.7342812, 46.9557064 ], + [ 6.7345439, 46.9557103 ], + [ 6.7347584, 46.955754 ], + [ 6.7350388, 46.9558539 ], + [ 6.7353772, 46.9559645 ], + [ 6.7359707, 46.9561074 ], + [ 6.7362836, 46.9561619 ], + [ 6.7365133, 46.956183 ], + [ 6.7368429, 46.9562147 ], + [ 6.7370804, 46.956201899999996 ], + [ 6.7373926, 46.9561886 ], + [ 6.737672, 46.9561756 ], + [ 6.7380075999999995, 46.9561283 ], + [ 6.7384175, 46.9560524 ], + [ 6.7387213, 46.9559941 ], + [ 6.7390733, 46.9559524 ], + [ 6.7393117, 46.9559284 ], + [ 6.7396644, 46.9558979 ], + [ 6.7399929, 46.9558901 ], + [ 6.7404287, 46.9559043 ], + [ 6.7408481, 46.9559243 ], + [ 6.7412748, 46.955944 ], + [ 6.7417439, 46.9559919 ], + [ 6.7422206, 46.956017 ], + [ 6.7426817, 46.9560479 ], + [ 6.7429038, 46.9560747 ], + [ 6.7431255, 46.956079 ], + [ 6.7434539000000004, 46.9560825 ], + [ 6.7440946, 46.9560672 ], + [ 6.7450138, 46.9559766 ], + [ 6.7456204, 46.9559277 ], + [ 6.746056, 46.9558966 ], + [ 6.7464829, 46.9559053 ], + [ 6.7468198, 46.9558862 ], + [ 6.7469841, 46.9558795 ], + [ 6.7475417, 46.9558138 ], + [ 6.748083, 46.9557935 ], + [ 6.7484948, 46.9558303 ], + [ 6.7487908, 46.9558567 ], + [ 6.7491114, 46.955894 ], + [ 6.7493356, 46.9560223 ], + [ 6.7496087, 46.9561728 ], + [ 6.7499973, 46.9564128 ], + [ 6.7504864, 46.9566917 ], + [ 6.7508428, 46.9569488 ], + [ 6.7511081, 46.9571333 ], + [ 6.7513905, 46.9573288 ], + [ 6.751539, 46.9574068 ], + [ 6.7518625, 46.9575964 ], + [ 6.7524499, 46.9578972 ], + [ 6.7531275, 46.9582087 ], + [ 6.7535243, 46.9583866 ], + [ 6.7537802, 46.9584751 ], + [ 6.7540192999999995, 46.9585244 ], + [ 6.754595, 46.9585884 ], + [ 6.7552949, 46.9586966 ], + [ 6.7555504, 46.9587458 ], + [ 6.7558049, 46.9587553 ], + [ 6.7559768, 46.9587317 ], + [ 6.7561573, 46.9586797 ], + [ 6.7563285, 46.9585884 ], + [ 6.7564753, 46.9584747 ], + [ 6.7566944, 46.9582927 ], + [ 6.7569304, 46.9581333 ], + [ 6.757151, 46.9580303 ], + [ 6.7574133, 46.9580062 ], + [ 6.7576191, 46.9580274 ], + [ 6.7578498, 46.9580935 ], + [ 6.7581304, 46.9581763 ], + [ 6.7584273, 46.9582703 ], + [ 6.7587485, 46.9583245 ], + [ 6.759086, 46.95839 ], + [ 6.7594567, 46.9584327 ], + [ 6.7596295, 46.9584655 ], + [ 6.7598023, 46.9585038 ], + [ 6.759984, 46.9585533 ], + [ 6.7602649, 46.9586756 ], + [ 6.7607028, 46.9588532 ], + [ 6.7613646, 46.9591816 ], + [ 6.7624488, 46.9597499 ], + [ 6.76311, 46.9600613 ], + [ 6.7635234, 46.9602334 ], + [ 6.7639107, 46.9603268 ], + [ 6.7641918, 46.9604321 ], + [ 6.7642989, 46.9604709 ], + [ 6.7645466, 46.9605595 ], + [ 6.7649101, 46.960715 ], + [ 6.765125, 46.9607982 ], + [ 6.7653406, 46.9608983 ], + [ 6.7656623, 46.9610428 ], + [ 6.7659773, 46.9612043 ], + [ 6.7662669, 46.9613547 ], + [ 6.7665481, 46.961522 ], + [ 6.7669543999999995, 46.9617393 ], + [ 6.7672844, 46.9618781 ], + [ 6.7675244, 46.9619949 ], + [ 6.7677808, 46.9621117 ], + [ 6.7680377, 46.9622567 ], + [ 6.7683188, 46.9623677 ], + [ 6.7686411, 46.9625347 ], + [ 6.7690962, 46.9627855 ], + [ 6.7693619, 46.9629473 ], + [ 6.7696766, 46.9631313 ], + [ 6.7699006, 46.9632765 ], + [ 6.7701158, 46.9634048 ], + [ 6.7702071, 46.9634606 ], + [ 6.7703898, 46.9636341 ], + [ 6.7705739, 46.9638191 ], + [ 6.7707401, 46.9639928 ], + [ 6.7708654, 46.9641499 ], + [ 6.7710407, 46.9643179 ], + [ 6.7711816, 46.9644129 ], + [ 6.771355, 46.9644681 ], + [ 6.7715109, 46.9644784 ], + [ 6.7716753, 46.9644716 ], + [ 6.7718723, 46.964476 ], + [ 6.772152, 46.9645024 ], + [ 6.7723749, 46.964546 ], + [ 6.7726473, 46.9646344 ], + [ 6.7728375, 46.964729 ], + [ 6.7730528, 46.9648461 ], + [ 6.773383, 46.9649791 ], + [ 6.7737547, 46.9650727 ], + [ 6.7740019, 46.965133 ], + [ 6.774298, 46.965165 ], + [ 6.7745771999999995, 46.9651687 ], + [ 6.7748478, 46.9651386 ], + [ 6.7751838, 46.9650631 ], + [ 6.7756913, 46.9649356 ], + [ 6.7762489, 46.9648079 ], + [ 6.7765924, 46.964721 ], + [ 6.7768553, 46.9647193 ], + [ 6.7769786, 46.9647072 ], + [ 6.7771433, 46.96474 ], + [ 6.7772668, 46.9647786 ], + [ 6.7773747, 46.964823 ], + [ 6.7775403, 46.9649121 ], + [ 6.7776641, 46.9649902 ], + [ 6.777814, 46.9650907 ], + [ 6.7779962, 46.9652361 ], + [ 6.7781634, 46.965393 ], + [ 6.7782883, 46.9655219 ], + [ 6.7783804, 46.9656453 ], + [ 6.7784969, 46.9657855 ], + [ 6.7786301, 46.9659087 ], + [ 6.7789125, 46.9661212 ], + [ 6.7803401999999995, 46.9670985 ], + [ 6.78078, 46.9674001 ], + [ 6.7810781, 46.9676011 ], + [ 6.7812197, 46.9677074 ], + [ 6.7814179, 46.9678188 ], + [ 6.7816165, 46.9678964 ], + [ 6.7819227, 46.968041 ], + [ 6.7823843, 46.9681732 ], + [ 6.7828554, 46.9683392 ], + [ 6.7834491, 46.9684819 ], + [ 6.7836227000000004, 46.9685259 ], + [ 6.7837463, 46.9685588 ], + [ 6.7838777, 46.968558 ], + [ 6.7840244, 46.9685176 ], + [ 6.7841886, 46.9684544 ], + [ 6.7843921, 46.9683402 ], + [ 6.7846204, 46.9682089 ], + [ 6.7848412, 46.968151 ], + [ 6.7850879, 46.9681269 ], + [ 6.7855144, 46.9681071 ], + [ 6.7856953, 46.968089 ], + [ 6.7858427, 46.9680598 ], + [ 6.7859573, 46.9680195 ], + [ 6.7860961, 46.9679565 ], + [ 6.7862677, 46.9678878 ], + [ 6.7863572, 46.9678307 ], + [ 6.7864629999999995, 46.9677736 ], + [ 6.7865776, 46.967739 ], + [ 6.78675, 46.9677379 ], + [ 6.7869389, 46.9677422 ], + [ 6.7870468, 46.9677865 ], + [ 6.7871463, 46.9678423 ], + [ 6.7872537, 46.9679262 ], + [ 6.7873942, 46.9679872 ], + [ 6.7875021, 46.9680317 ], + [ 6.7876421, 46.9680702 ], + [ 6.7877898, 46.9680748 ], + [ 6.7880037, 46.9680452 ], + [ 6.7881751999999995, 46.9679932 ], + [ 6.7884943, 46.9678896 ], + [ 6.788706, 46.9677697 ], + [ 6.7889516, 46.967706 ], + [ 6.7892217, 46.9676422 ], + [ 6.7895336, 46.9675949 ], + [ 6.7898947, 46.9675473 ], + [ 6.7903044, 46.9674939 ], + [ 6.7906002999999995, 46.9674749 ], + [ 6.790953, 46.9674443 ], + [ 6.7913144, 46.9674418 ], + [ 6.7916844, 46.9674732 ], + [ 6.7920876, 46.9674761 ], + [ 6.7926386999999995, 46.9675513 ], + [ 6.7930674, 46.967616 ], + [ 6.7936441, 46.9677418 ], + [ 6.7941639, 46.9678849 ], + [ 6.7946257, 46.9680059 ], + [ 6.794923, 46.9680772 ], + [ 6.7951454, 46.9681547 ], + [ 6.7953684, 46.9681926 ], + [ 6.7957635, 46.9682519 ], + [ 6.7961253, 46.9682889 ], + [ 6.7964472, 46.9683657 ], + [ 6.7968107, 46.9685268 ], + [ 6.7967511, 46.968358 ], + [ 6.7969541, 46.96821 ], + [ 6.7971777, 46.9683325 ], + [ 6.79731, 46.9683993 ], + [ 6.7974497, 46.968387 ], + [ 6.7974488, 46.968325 ], + [ 6.7974145, 46.9682407 ], + [ 6.79724, 46.9680669 ], + [ 6.7972297, 46.9679655 ], + [ 6.797131, 46.9679099 ], + [ 6.7969449, 46.9675445 ], + [ 6.797067, 46.9674929 ], + [ 6.797225, 46.9676047 ], + [ 6.797454, 46.9675523 ], + [ 6.7975293, 46.967642 ], + [ 6.7975864, 46.9676079 ], + [ 6.7980982999999995, 46.9677904 ], + [ 6.7983375, 46.9678451 ], + [ 6.7983759, 46.9676532 ], + [ 6.7984389, 46.9674722 ], + [ 6.7984777, 46.967314 ], + [ 6.7985892, 46.9670596 ], + [ 6.7987418, 46.9667934 ], + [ 6.7988371999999995, 46.9665784 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "JBG0012", + "country" : "CHE", + "name" : [ + { + "text" : "Eidgenössisches Jagdbanngebiet Creux-du-Van", + "lang" : "de-CH" + }, + { + "text" : "District franc fédéral Creux-du-Van", + "lang" : "fr-CH" + }, + { + "text" : "Bandita federale di caccia Creux-du-Van", + "lang" : "it-CH" + }, + { + "text" : "Federal Game Reserve Creux-du-Van", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.7928324, 46.1502523 ], + [ 6.7917872, 46.1515489 ], + [ 6.7916283, 46.1518448 ], + [ 6.7915852, 46.1522044 ], + [ 6.7914543, 46.1523296 ], + [ 6.7911924, 46.15258 ], + [ 6.7908664, 46.152785 ], + [ 6.7903395, 46.1535466 ], + [ 6.7903461, 46.1536046 ], + [ 6.7904332, 46.1543748 ], + [ 6.7904305, 46.1545997 ], + [ 6.7902294, 46.1551833 ], + [ 6.7904454, 46.1554552 ], + [ 6.7905738, 46.155617 ], + [ 6.790629, 46.155731 ], + [ 6.7908012, 46.1560861 ], + [ 6.7908233, 46.1564011 ], + [ 6.7912484, 46.156583499999996 ], + [ 6.7910744, 46.1570593 ], + [ 6.7916505, 46.1576023 ], + [ 6.791835, 46.1578012 ], + [ 6.7919445, 46.1579189 ], + [ 6.7917703, 46.1584127 ], + [ 6.791547, 46.1586812 ], + [ 6.7917000000000005, 46.15888 ], + [ 6.792213, 46.1592878 ], + [ 6.7925693, 46.1598116 ], + [ 6.7922561, 46.1611142 ], + [ 6.7917616, 46.1624158 ], + [ 6.7916270999999995, 46.1628378 ], + [ 6.7916891, 46.1630631 ], + [ 6.7922648, 46.1636511 ], + [ 6.7933189, 46.1642869 ], + [ 6.7938966, 46.164695 ], + [ 6.7942139, 46.1652366 ], + [ 6.7946612, 46.1657339 ], + [ 6.794899, 46.1658801 ], + [ 6.7956971, 46.1655176 ], + [ 6.7963284999999996, 46.1650867 ], + [ 6.7966688, 46.1647729 ], + [ 6.7971936, 46.1643954 ], + [ 6.7976568, 46.1640886 ], + [ 6.7982298, 46.1638085 ], + [ 6.7986995, 46.1635053 ], + [ 6.7989026, 46.1632968 ], + [ 6.7990817, 46.1632025 ], + [ 6.7991527, 46.1630832 ], + [ 6.799632, 46.1628547 ], + [ 6.8000755, 46.1626423 ], + [ 6.8004573, 46.1624448 ], + [ 6.8005767, 46.1624067 ], + [ 6.8009267, 46.1623665 ], + [ 6.8012242, 46.1623178 ], + [ 6.8014981, 46.1622168 ], + [ 6.801801, 46.1620529 ], + [ 6.8020818, 46.1619187 ], + [ 6.8024151, 46.1617848 ], + [ 6.802874, 46.1617064 ], + [ 6.8033271, 46.1616351 ], + [ 6.8036187, 46.1616062 ], + [ 6.8039587, 46.1615281 ], + [ 6.8042267, 46.1613713 ], + [ 6.8044433, 46.1612546 ], + [ 6.8046157, 46.161046 ], + [ 6.8047503, 46.1608839 ], + [ 6.8048256, 46.1608061 ], + [ 6.8049879, 46.1607656 ], + [ 6.8052041, 46.1607551 ], + [ 6.8054632999999995, 46.1607323 ], + [ 6.8056404, 46.1607333 ], + [ 6.8062656, 46.1605497 ], + [ 6.8064503, 46.1604644 ], + [ 6.8065727, 46.1603751 ], + [ 6.8066059, 46.160235 ], + [ 6.8066616, 46.1601049 ], + [ 6.8067581, 46.1600154 ], + [ 6.8069523, 46.1599482 ], + [ 6.8070649, 46.1599326 ], + [ 6.807205, 46.1599262 ], + [ 6.8073723, 46.1598696 ], + [ 6.8074858, 46.1597802 ], + [ 6.8077764, 46.1597648 ], + [ 6.808352, 46.1598157 ], + [ 6.8086272, 46.1598001 ], + [ 6.8088534, 46.1597672 ], + [ 6.8091022, 46.1597263 ], + [ 6.8091511, 46.1596258 ], + [ 6.8091126, 46.1595311 ], + [ 6.8089737, 46.1595016 ], + [ 6.8087961, 46.1594673 ], + [ 6.8086444, 46.1594331 ], + [ 6.8084733, 46.1593999 ], + [ 6.8083597000000005, 46.1593614 ], + [ 6.808209, 46.1593048 ], + [ 6.8082071, 46.1591851 ], + [ 6.808182, 46.1591175 ], + [ 6.8081667, 46.1590455 ], + [ 6.8082322, 46.1589784 ], + [ 6.80841, 46.1589272 ], + [ 6.8085652, 46.1589388 ], + [ 6.808662, 46.158961 ], + [ 6.8087056, 46.1589712 ], + [ 6.8087589, 46.158984 ], + [ 6.8088944, 46.1590136 ], + [ 6.8090239, 46.1590134 ], + [ 6.8091209, 46.1590184 ], + [ 6.8092658, 46.1590183 ], + [ 6.8095093, 46.1590188 ], + [ 6.8096377, 46.1589746 ], + [ 6.8096964, 46.1588615 ], + [ 6.8097347, 46.1587673 ], + [ 6.8098897, 46.1586548 ], + [ 6.8101498, 46.1585591 ], + [ 6.8103283, 46.1585097 ], + [ 6.8105711, 46.1584355 ], + [ 6.8107379, 46.1583573 ], + [ 6.8107709, 46.1582972 ], + [ 6.8107329, 46.1582295 ], + [ 6.8106093, 46.1581389 ], + [ 6.8104806, 46.158076 ], + [ 6.8103499, 46.1580421 ], + [ 6.8101823, 46.1579808 ], + [ 6.8101026000000005, 46.1579516 ], + [ 6.8100114, 46.1579961 ], + [ 6.8098339, 46.1580257 ], + [ 6.8100068, 46.1577667 ], + [ 6.8101675, 46.1575804 ], + [ 6.8103698, 46.1573737 ], + [ 6.8105472, 46.1572101 ], + [ 6.8106608, 46.1570417 ], + [ 6.8107255, 46.1569071 ], + [ 6.8108162, 46.1568284 ], + [ 6.8109141, 46.1567606 ], + [ 6.8110169, 46.156682 ], + [ 6.8112202, 46.1566606 ], + [ 6.8113988, 46.1566832 ], + [ 6.8116248, 46.1566611 ], + [ 6.8117286, 46.1566383 ], + [ 6.8118262, 46.1565939 ], + [ 6.8119329, 46.1565333 ], + [ 6.8119708, 46.1564768 ], + [ 6.8119974, 46.156414 ], + [ 6.8120046, 46.1562791 ], + [ 6.8120147, 46.1561739 ], + [ 6.8121267, 46.1560729 ], + [ 6.8121501, 46.1560091 ], + [ 6.812371, 46.1559312 ], + [ 6.8125231, 46.1558637 ], + [ 6.8125956, 46.1558263 ], + [ 6.8126513, 46.1557627 ], + [ 6.8126936, 46.155673 ], + [ 6.81283, 46.1556288 ], + [ 6.8129279, 46.155561 ], + [ 6.8130071999999995, 46.1554895 ], + [ 6.8131695, 46.155449 ], + [ 6.8132187, 46.155388 ], + [ 6.8132196, 46.1553098 ], + [ 6.8131465, 46.1551906 ], + [ 6.8130501, 46.1551344 ], + [ 6.8131152, 46.1550285 ], + [ 6.8133656, 46.1549993 ], + [ 6.8136396, 46.1550224 ], + [ 6.8138505, 46.1550407 ], + [ 6.814125, 46.1550234 ], + [ 6.8144735999999995, 46.1549632 ], + [ 6.8147, 46.1549006 ], + [ 6.8148453, 46.1548627 ], + [ 6.8149106, 46.1548064 ], + [ 6.8149334, 46.1547274 ], + [ 6.8149263, 46.1546374 ], + [ 6.8149660999999995, 46.1545594 ], + [ 6.8150077, 46.1544579 ], + [ 6.8148628, 46.1542484 ], + [ 6.8146439999999995, 46.1540007 ], + [ 6.814499, 46.1538047 ], + [ 6.8143864, 46.1536808 ], + [ 6.8142575999999995, 46.1536244 ], + [ 6.8140795, 46.1535613 ], + [ 6.813814, 46.153433 ], + [ 6.8135946, 46.1533697 ], + [ 6.8133786, 46.1533019 ], + [ 6.8132235, 46.1532785 ], + [ 6.8130301, 46.1532109 ], + [ 6.8129001, 46.1531211 ], + [ 6.8127716, 46.1530376 ], + [ 6.812667, 46.1529921 ], + [ 6.8124965, 46.1529695 ], + [ 6.8123186, 46.1528948 ], + [ 6.8121834, 46.1528338 ], + [ 6.8120384, 46.1527781 ], + [ 6.8119247, 46.1527478 ], + [ 6.8116900000000005, 46.1526808 ], + [ 6.81157, 46.1526351 ], + [ 6.8113337, 46.1525745 ], + [ 6.8111181, 46.15254 ], + [ 6.8108659, 46.152517 ], + [ 6.810698, 46.1524827 ], + [ 6.8106079, 46.1524427 ], + [ 6.8105837000000005, 46.1523634 ], + [ 6.8106237, 46.1522628 ], + [ 6.810667, 46.1521569 ], + [ 6.8106404, 46.1520785 ], + [ 6.8105595999999995, 46.1520043 ], + [ 6.8103332, 46.1519203 ], + [ 6.810085, 46.1517669 ], + [ 6.8098925999999995, 46.1516155 ], + [ 6.8097626, 46.1515194 ], + [ 6.8095909, 46.151469 ], + [ 6.8094073999999996, 46.1513834 ], + [ 6.8092455, 46.1512593 ], + [ 6.8091072, 46.1511128 ], + [ 6.8090361999999995, 46.1510233 ], + [ 6.8089728, 46.1509105 ], + [ 6.8089246, 46.1508095 ], + [ 6.8089071, 46.1507194 ], + [ 6.8089794999999995, 46.1506137 ], + [ 6.8090442, 46.1505466 ], + [ 6.8091086, 46.1504273 ], + [ 6.8092058, 46.1503487 ], + [ 6.8093123, 46.150378 ], + [ 6.8095063, 46.1503899 ], + [ 6.8096589, 46.1503449 ], + [ 6.8097565, 46.1503005 ], + [ 6.8099011, 46.1503831 ], + [ 6.8100788, 46.1504849 ], + [ 6.8102815, 46.1505076 ], + [ 6.8104758, 46.1505033 ], + [ 6.810848, 46.1504973 ], + [ 6.8111939, 46.1504533 ], + [ 6.8114365, 46.1503926 ], + [ 6.8116558, 46.1503146 ], + [ 6.8118025, 46.1502183 ], + [ 6.8120275, 46.1500721 ], + [ 6.8123427, 46.1499605 ], + [ 6.8126655, 46.1498822 ], + [ 6.812934, 46.1498216 ], + [ 6.8132638, 46.1497704 ], + [ 6.8133444, 46.1497996 ], + [ 6.8135316, 46.1498447 ], + [ 6.8136998, 46.1498457 ], + [ 6.8138938, 46.1497892 ], + [ 6.8140069, 46.1497332 ], + [ 6.8142119, 46.1497046 ], + [ 6.8145348, 46.1496263 ], + [ 6.8147835, 46.1495252 ], + [ 6.8149141, 46.1494197 ], + [ 6.8149615, 46.149312 ], + [ 6.8149618, 46.1492113 ], + [ 6.8149626, 46.1491393 ], + [ 6.8149945, 46.1490423 ], + [ 6.8152142, 46.1489977 ], + [ 6.8154634, 46.1489262 ], + [ 6.8156416, 46.14883 ], + [ 6.8157382, 46.1487352 ], + [ 6.8157818, 46.1486005 ], + [ 6.8157812, 46.1485106 ], + [ 6.815765, 46.148443 ], + [ 6.8157976, 46.1483469 ], + [ 6.8159108, 46.1482855 ], + [ 6.8160563, 46.1482188 ], + [ 6.8161117, 46.1481174 ], + [ 6.8161119, 46.148032 ], + [ 6.8160484, 46.1479264 ], + [ 6.8159447, 46.1477954 ], + [ 6.8158214, 46.1476832 ], + [ 6.815661, 46.1475662 ], + [ 6.8155425, 46.1474531 ], + [ 6.8154445, 46.1473968 ], + [ 6.8155574, 46.1473569 ], + [ 6.8156871, 46.1472623 ], + [ 6.8157847, 46.1472178 ], + [ 6.8159149, 46.1471502 ], + [ 6.8160022, 46.1470832 ], + [ 6.8161949, 46.1470654 ], + [ 6.81643, 46.1470946 ], + [ 6.8167859, 46.1471001 ], + [ 6.816971, 46.1471065 ], + [ 6.8171482999999995, 46.1471004 ], + [ 6.8172939, 46.1470957 ], + [ 6.8173908, 46.147108 ], + [ 6.8176002, 46.147191 ], + [ 6.8179073, 46.1472881 ], + [ 6.818111, 46.1473782 ], + [ 6.8183378999999995, 46.1474803 ], + [ 6.8185854, 46.1476265 ], + [ 6.818772, 46.147721 ], + [ 6.8188868, 46.1477954 ], + [ 6.8190474, 46.1479016 ], + [ 6.8191024, 46.1479693 ], + [ 6.8191922, 46.1480481 ], + [ 6.8193276, 46.1480929 ], + [ 6.8194669, 46.1480712 ], + [ 6.8196288, 46.1479929 ], + [ 6.8197334, 46.1478982 ], + [ 6.8198391, 46.1477863 ], + [ 6.8199846, 46.1476449 ], + [ 6.8200658, 46.1475545 ], + [ 6.8201862, 46.1474202 ], + [ 6.8202665, 46.1473299 ], + [ 6.8202995, 46.1472697 ], + [ 6.8203481, 46.1471954 ], + [ 6.8203901, 46.1470562 ], + [ 6.8205593, 46.1469779 ], + [ 6.8206714, 46.1470046 ], + [ 6.8208343, 46.1470496 ], + [ 6.8210703, 46.1470005 ], + [ 6.8211725, 46.1469786 ], + [ 6.8212376, 46.1469385 ], + [ 6.8212317, 46.1468215 ], + [ 6.8211835, 46.1467195 ], + [ 6.8211404, 46.1465961 ], + [ 6.8211414999999995, 46.1464278 ], + [ 6.8211037999999995, 46.146326 ], + [ 6.8209897, 46.1461841 ], + [ 6.820926, 46.146101 ], + [ 6.8208946, 46.1459479 ], + [ 6.8209102999999995, 46.1457753 ], + [ 6.8209438, 46.1455991 ], + [ 6.8209499000000005, 46.1454147 ], + [ 6.8209824, 46.145262 ], + [ 6.821047, 46.1451337 ], + [ 6.8210649, 46.1449809 ], + [ 6.8210416, 46.1448189 ], + [ 6.820968, 46.1446772 ], + [ 6.8208492, 46.1445983 ], + [ 6.8207035, 46.1445372 ], + [ 6.8205256, 46.1444633 ], + [ 6.8203553, 46.1444292 ], + [ 6.8202413, 46.1444249 ], + [ 6.820169, 46.1443795 ], + [ 6.8201279, 46.1442938 ], + [ 6.8200803, 46.1441434 ], + [ 6.8200736, 46.1440129 ], + [ 6.8201064, 46.1439069 ], + [ 6.8201555, 46.143783 ], + [ 6.8202205, 46.1436197 ], + [ 6.8203337, 46.1435475 ], + [ 6.8205284, 46.1434288 ], + [ 6.8206402, 46.1433386 ], + [ 6.8207059, 46.1432553 ], + [ 6.8207232, 46.1431591 ], + [ 6.8207604, 46.1430127 ], + [ 6.8209875, 46.1429573 ], + [ 6.8212722, 46.1428896 ], + [ 6.8215953, 46.1427852 ], + [ 6.822039, 46.1426059 ], + [ 6.8227022, 46.1423298 ], + [ 6.82289, 46.142168 ], + [ 6.8229226, 46.1420782 ], + [ 6.8229784, 46.1419364 ], + [ 6.8231489, 46.1418024 ], + [ 6.8233017, 46.1417421 ], + [ 6.8234876, 46.1416117 ], + [ 6.8235926, 46.1414836 ], + [ 6.8237062, 46.141308 ], + [ 6.8237711999999995, 46.1410681 ], + [ 6.8238042, 46.140865 ], + [ 6.8238535, 46.1406566 ], + [ 6.8238539, 46.1403975 ], + [ 6.8237734, 46.1402963 ], + [ 6.8235881, 46.1401612 ], + [ 6.8233697, 46.1400215 ], + [ 6.8231438, 46.1398971 ], + [ 6.8229918, 46.1398224 ], + [ 6.8228681, 46.1397435 ], + [ 6.822685, 46.1396309 ], + [ 6.8225073, 46.1396039 ], + [ 6.8223943, 46.1395862 ], + [ 6.8223374, 46.1394689 ], + [ 6.8222646000000005, 46.1393273 ], + [ 6.8221207, 46.1392483 ], + [ 6.8219427, 46.1391807 ], + [ 6.8218372, 46.1390676 ], + [ 6.8217246, 46.1389393 ], + [ 6.8216202, 46.1388083 ], + [ 6.8215072, 46.1387141 ], + [ 6.8213791, 46.1386018 ], + [ 6.8212979, 46.1384143 ], + [ 6.8212413, 46.1382008 ], + [ 6.8212032, 46.1379199 ], + [ 6.8211759, 46.1377578 ], + [ 6.8212028, 46.1376006 ], + [ 6.8213542, 46.1374431 ], + [ 6.8214947, 46.1373197 ], + [ 6.8214534, 46.1371845 ], + [ 6.8213565, 46.1370274 ], + [ 6.8212544, 46.136829 ], + [ 6.8211727, 46.1366109 ], + [ 6.8211645, 46.1364129 ], + [ 6.8211409, 46.136285 ], + [ 6.8211818, 46.1360307 ], + [ 6.8212296, 46.1358015 ], + [ 6.8212885, 46.1355311 ], + [ 6.8213536, 46.1353515 ], + [ 6.8214252, 46.135172 ], + [ 6.821522, 46.1349854 ], + [ 6.8216134, 46.1348348 ], + [ 6.8216689, 46.1347226 ], + [ 6.8218304, 46.1345319 ], + [ 6.8218636, 46.1344574 ], + [ 6.8219446, 46.1343679 ], + [ 6.8220173, 46.1343116 ], + [ 6.8221051, 46.1342662 ], + [ 6.8223313, 46.134289 ], + [ 6.8225024, 46.1343188 ], + [ 6.8228096, 46.1343304 ], + [ 6.8229942, 46.1343125 ], + [ 6.8231018, 46.1342411 ], + [ 6.8231235, 46.1341108 ], + [ 6.8231336, 46.1340047 ], + [ 6.8231888, 46.1338413 ], + [ 6.8232378, 46.1337282 ], + [ 6.8233937000000005, 46.1336004 ], + [ 6.8236029, 46.1334774 ], + [ 6.8237715, 46.1333695 ], + [ 6.8239982, 46.1332079 ], + [ 6.8242414, 46.1330167 ], + [ 6.8243478, 46.1328257 ], + [ 6.8244851, 46.1326285 ], + [ 6.824592, 46.1325455 ], + [ 6.8246136, 46.1323539 ], + [ 6.8244625, 46.1320545 ], + [ 6.824367, 46.1318407 ], + [ 6.8242595999999995, 46.1316162 ], + [ 6.8242002, 46.1315718 ], + [ 6.8240241, 46.1314889 ], + [ 6.8238564, 46.1314412 ], + [ 6.8236371, 46.1313789 ], + [ 6.8231463, 46.1313042 ], + [ 6.8227323, 46.1313019 ], + [ 6.8216957, 46.1314312 ], + [ 6.8216827, 46.1314307 ], + [ 6.8215979, 46.1314268 ], + [ 6.820105, 46.1313595 ], + [ 6.8194596, 46.131221 ], + [ 6.8188782, 46.1311458 ], + [ 6.8184654, 46.1310356 ], + [ 6.8184566, 46.1310276 ], + [ 6.8184542, 46.1310256 ], + [ 6.8178891, 46.1305107 ], + [ 6.8171192, 46.1299487 ], + [ 6.8166948, 46.1297214 ], + [ 6.8152767999999995, 46.1292638 ], + [ 6.8149272, 46.1292798 ], + [ 6.8146633, 46.1297282 ], + [ 6.8142954, 46.1302209 ], + [ 6.8140346, 46.1303994 ], + [ 6.8138143, 46.1304251 ], + [ 6.8136192, 46.130514 ], + [ 6.8135757, 46.1309186 ], + [ 6.8134412, 46.1313676 ], + [ 6.8128911, 46.1319493 ], + [ 6.8125912, 46.1321455 ], + [ 6.8122678, 46.1321437 ], + [ 6.811361, 46.1322286 ], + [ 6.8111011999999995, 46.1323171 ], + [ 6.8109428, 46.1325861 ], + [ 6.8110678, 46.1329737 ], + [ 6.8110647, 46.1332435 ], + [ 6.8109322, 46.1335126 ], + [ 6.8104731, 46.1340498 ], + [ 6.8098249, 46.1341542 ], + [ 6.8096546, 46.1343331 ], + [ 6.8093261, 46.1347631 ], + [ 6.8090378, 46.1350763 ], + [ 6.8082526, 46.1358366 ], + [ 6.80721, 46.1364784 ], + [ 6.807197, 46.1364774 ], + [ 6.8071712, 46.1364755 ], + [ 6.8069514, 46.136459 ], + [ 6.8061398, 46.1361396 ], + [ 6.8057284, 46.1359124 ], + [ 6.8053418, 46.1357753 ], + [ 6.8051087, 46.1357219 ], + [ 6.8050191, 46.1357015 ], + [ 6.8047854, 46.1357721 ], + [ 6.8042391, 46.1360119 ], + [ 6.8040445, 46.1360558 ], + [ 6.8039415, 46.1360103 ], + [ 6.8038144, 46.1358116 ], + [ 6.8034281, 46.1356475 ], + [ 6.8031699, 46.1356011 ], + [ 6.8025873, 46.1356248 ], + [ 6.8022855, 46.135492 ], + [ 6.8021109, 46.1354152 ], + [ 6.801788, 46.1353684 ], + [ 6.801775, 46.1353693 ], + [ 6.8014642, 46.1353935 ], + [ 6.800038, 46.1356283 ], + [ 6.8000251, 46.1356293 ], + [ 6.7991573, 46.1356953 ], + [ 6.7987031, 46.1358006 ], + [ 6.7980913, 46.136112 ], + [ 6.7977884, 46.1365601 ], + [ 6.7975887, 46.1370357 ], + [ 6.7974535, 46.1375297 ], + [ 6.7973605, 46.1377271 ], + [ 6.7972911, 46.1381315 ], + [ 6.7967922, 46.1387404 ], + [ 6.7963089, 46.1391155 ], + [ 6.7962677, 46.1393222 ], + [ 6.7963284, 46.1396553 ], + [ 6.7964533, 46.1400429 ], + [ 6.7964458, 46.1406725 ], + [ 6.7965072, 46.1409608 ], + [ 6.7962983999999995, 46.142201 ], + [ 6.7958785, 46.1426934 ], + [ 6.7951798, 46.1437689 ], + [ 6.7950211, 46.1440559 ], + [ 6.7949133, 46.1444151 ], + [ 6.7949091, 46.1447749 ], + [ 6.7946414, 46.14552 ], + [ 6.7945712, 46.1459874 ], + [ 6.7947274, 46.1470048 ], + [ 6.7945516999999995, 46.1476335 ], + [ 6.7944588, 46.1478309 ], + [ 6.7941584, 46.1480541 ], + [ 6.7937376, 46.1486184 ], + [ 6.7933445, 46.149021 ], + [ 6.7931715, 46.1494248 ], + [ 6.7931683, 46.1496947 ], + [ 6.7931009, 46.1499192 ], + [ 6.7928324, 46.1502523 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "WZV0008", + "country" : "CHE", + "name" : [ + { + "text" : "Wasser- und Zugvogelreservat Col de Bretolet", + "lang" : "de-CH" + }, + { + "text" : "Réserve d'oiseaux d'eau et de migrateurs Col de Bretolet", + "lang" : "fr-CH" + }, + { + "text" : "Riserva di uccelli acquatici e migratori Col de Bretolet", + "lang" : "it-CH" + }, + { + "text" : "Water Bird and Migratory Bird Reserves Col de Bretolet", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4851874, 47.4001315 ], + [ 7.485444, 47.4001694 ], + [ 7.4855976, 47.4001977 ], + [ 7.4857413, 47.4001955 ], + [ 7.4860181, 47.4001871 ], + [ 7.4863395, 47.4001777 ], + [ 7.4866662, 47.4001701 ], + [ 7.4869527, 47.400168 ], + [ 7.48721, 47.4001565 ], + [ 7.4873819, 47.400186 ], + [ 7.4875982, 47.4002278 ], + [ 7.487866, 47.4002849 ], + [ 7.4882669, 47.4003574 ], + [ 7.4887829, 47.4004398 ], + [ 7.4893392, 47.4005587 ], + [ 7.489815, 47.4006632 ], + [ 7.4899731, 47.4007138 ], + [ 7.490434, 47.4003207 ], + [ 7.4905101, 47.4002563 ], + [ 7.4905956, 47.4001924 ], + [ 7.4907475, 47.4001065 ], + [ 7.4909248, 47.4000144 ], + [ 7.4911121, 47.399921 ], + [ 7.4912576, 47.3998383 ], + [ 7.4913859, 47.3997513 ], + [ 7.4915817, 47.3996442 ], + [ 7.4917477, 47.3995453 ], + [ 7.4919, 47.3994504 ], + [ 7.4919623, 47.3994106 ], + [ 7.4920319, 47.3993719 ], + [ 7.492098, 47.3993434 ], + [ 7.4921322, 47.3993305 ], + [ 7.4921658, 47.3993188 ], + [ 7.4922, 47.399308 ], + [ 7.4922347, 47.399298 ], + [ 7.4922315, 47.3992803 ], + [ 7.491947, 47.3992177 ], + [ 7.4917644, 47.3991684 ], + [ 7.4916797, 47.3991403 ], + [ 7.4915516, 47.3990923 ], + [ 7.4914263, 47.3990343 ], + [ 7.4913238, 47.3989649 ], + [ 7.4912575, 47.3989018 ], + [ 7.4911913, 47.3988169 ], + [ 7.4911322, 47.3987336 ], + [ 7.4892209, 47.398732 ], + [ 7.4888631, 47.3987482 ], + [ 7.4882636, 47.3987929 ], + [ 7.4876048, 47.3988423 ], + [ 7.4870391, 47.398926 ], + [ 7.4866195, 47.3989838 ], + [ 7.4862578, 47.3990664 ], + [ 7.48592, 47.3991337 ], + [ 7.4856635, 47.3992103 ], + [ 7.4854883, 47.3993019 ], + [ 7.4854083, 47.3993483 ], + [ 7.485338, 47.3993887 ], + [ 7.4850553, 47.399545 ], + [ 7.4847473, 47.3997217 ], + [ 7.4847178, 47.3997384 ], + [ 7.4845637, 47.3998256 ], + [ 7.4842775, 47.39992 ], + [ 7.4841328, 47.399994 ], + [ 7.4841277999999996, 47.40001 ], + [ 7.4841249, 47.4000263 ], + [ 7.4841241, 47.4000426 ], + [ 7.4841251, 47.4000571 ], + [ 7.4841277999999996, 47.4000715 ], + [ 7.4841321, 47.4000857 ], + [ 7.4841365, 47.400096 ], + [ 7.4841422, 47.400106 ], + [ 7.4841491, 47.4001156 ], + [ 7.4841572, 47.4001248 ], + [ 7.4841664, 47.4001335 ], + [ 7.4843062, 47.4001329 ], + [ 7.4843942, 47.4001425 ], + [ 7.484569, 47.4001489 ], + [ 7.4848686, 47.4001419 ], + [ 7.4851874, 47.4001315 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns326", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Hüttenboden", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Hüttenboden", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Hüttenboden", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Hüttenboden", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7319396, 47.3733439 ], + [ 7.7319454, 47.3733505 ], + [ 7.731952, 47.3733567 ], + [ 7.7319594, 47.3733624 ], + [ 7.7319675, 47.3733677 ], + [ 7.7319762, 47.3733726 ], + [ 7.7319855, 47.3733768 ], + [ 7.7319953, 47.3733806 ], + [ 7.7320056, 47.3733837 ], + [ 7.7320162, 47.3733862 ], + [ 7.7320271, 47.373388 ], + [ 7.7320382, 47.3733892 ], + [ 7.7320495000000005, 47.3733898 ], + [ 7.7320607, 47.3733896 ], + [ 7.7320719, 47.3733889 ], + [ 7.7320829, 47.3733874 ], + [ 7.7321614, 47.3733718 ], + [ 7.7322372999999995, 47.3733511 ], + [ 7.7323097, 47.3733253 ], + [ 7.7323606, 47.3733059 ], + [ 7.7324127, 47.373288 ], + [ 7.7324658, 47.3732716 ], + [ 7.7325283, 47.3732555 ], + [ 7.7325925, 47.3732432 ], + [ 7.7326581, 47.3732348 ], + [ 7.7327246, 47.3732302 ], + [ 7.733212, 47.3732114 ], + [ 7.733289, 47.3732105 ], + [ 7.7333658, 47.3732139 ], + [ 7.733442, 47.3732214 ], + [ 7.7335171, 47.3732332 ], + [ 7.7335905, 47.3732489 ], + [ 7.7336618, 47.3732687 ], + [ 7.7336934, 47.3732797 ], + [ 7.7337236, 47.3732925 ], + [ 7.7337519, 47.3733071 ], + [ 7.7337782, 47.3733233 ], + [ 7.7338023, 47.3733411 ], + [ 7.733824, 47.3733602 ], + [ 7.7338432, 47.3733806 ], + [ 7.7338523, 47.3733925 ], + [ 7.7338598, 47.3734049 ], + [ 7.7338657, 47.3734177 ], + [ 7.7338698, 47.3734305 ], + [ 7.7338723, 47.3734434 ], + [ 7.7338731, 47.3734564 ], + [ 7.7338723, 47.3734694 ], + [ 7.7338713, 47.373476 ], + [ 7.7338698, 47.3734826 ], + [ 7.7338679, 47.3734891 ], + [ 7.7338631, 47.3735014 ], + [ 7.7338568, 47.3735133 ], + [ 7.7338491, 47.3735249 ], + [ 7.73384, 47.373536 ], + [ 7.7338295, 47.3735465 ], + [ 7.7338178, 47.3735564 ], + [ 7.7338049, 47.3735655 ], + [ 7.7337909, 47.373574 ], + [ 7.7335753, 47.3736932 ], + [ 7.7333598, 47.3738125 ], + [ 7.7331444, 47.3739318 ], + [ 7.733105, 47.3739556 ], + [ 7.7330686, 47.3739815 ], + [ 7.7330354, 47.3740093 ], + [ 7.7330057, 47.374039 ], + [ 7.7329798, 47.3740701 ], + [ 7.7329577, 47.3741026 ], + [ 7.7329396, 47.3741363 ], + [ 7.7329256, 47.3741708 ], + [ 7.7329226, 47.3741799 ], + [ 7.7329305, 47.3741851 ], + [ 7.7333204, 47.3742594 ], + [ 7.7335361, 47.3742525 ], + [ 7.7341752, 47.3746006 ], + [ 7.7348945, 47.3743621 ], + [ 7.7356274, 47.3746302 ], + [ 7.7360935, 47.3748675 ], + [ 7.7372377, 47.3749948 ], + [ 7.7381359, 47.3749116 ], + [ 7.7386738, 47.3750418 ], + [ 7.7387022, 47.3750647 ], + [ 7.7387269, 47.3750375 ], + [ 7.7387526, 47.3750107 ], + [ 7.7387793, 47.3749843 ], + [ 7.7387836, 47.3749801 ], + [ 7.738788, 47.374976 ], + [ 7.7387923, 47.3749718 ], + [ 7.7388362, 47.3749321 ], + [ 7.7388822, 47.3748935 ], + [ 7.7389302, 47.374856 ], + [ 7.7389451000000005, 47.3748458 ], + [ 7.7389612, 47.3748364 ], + [ 7.7389784, 47.374828 ], + [ 7.7389966, 47.3748207 ], + [ 7.7390156999999995, 47.3748144 ], + [ 7.7390355, 47.3748092 ], + [ 7.7390558, 47.3748051 ], + [ 7.7390766, 47.3748023 ], + [ 7.7390977, 47.3748007 ], + [ 7.7391189, 47.3748003 ], + [ 7.73914, 47.3748011 ], + [ 7.739161, 47.3748031 ], + [ 7.7391817, 47.3748063 ], + [ 7.7392018, 47.3748107 ], + [ 7.7392176, 47.374814 ], + [ 7.7392336, 47.3748164 ], + [ 7.73925, 47.3748178 ], + [ 7.7392664, 47.3748184 ], + [ 7.7392828, 47.3748179 ], + [ 7.7392992, 47.3748166 ], + [ 7.7393153, 47.3748143 ], + [ 7.739331, 47.3748111 ], + [ 7.7393615, 47.374803 ], + [ 7.7393906, 47.3747929 ], + [ 7.7394184, 47.3747811 ], + [ 7.7394444, 47.3747676 ], + [ 7.7394684, 47.3747526 ], + [ 7.7394904, 47.3747361 ], + [ 7.73951, 47.3747183 ], + [ 7.7395271999999995, 47.3746994 ], + [ 7.7395417, 47.3746795 ], + [ 7.7395841999999995, 47.374608 ], + [ 7.7396203, 47.3745349 ], + [ 7.7396498, 47.3744605 ], + [ 7.739672, 47.3744022 ], + [ 7.7396875, 47.3743429 ], + [ 7.7396962, 47.374283 ], + [ 7.739698, 47.3742228 ], + [ 7.7396991, 47.3741974 ], + [ 7.7397035, 47.3741722 ], + [ 7.7397114, 47.3741474 ], + [ 7.7397226, 47.3741232 ], + [ 7.7397369, 47.3740998 ], + [ 7.7396815, 47.3740673 ], + [ 7.7394885, 47.373939 ], + [ 7.7393753, 47.3738541 ], + [ 7.7392456, 47.3737231 ], + [ 7.7391404, 47.373576 ], + [ 7.7389775, 47.3733043 ], + [ 7.7388663, 47.3731245 ], + [ 7.7387501, 47.3729494 ], + [ 7.7386045, 47.3727452 ], + [ 7.7384688, 47.3725848 ], + [ 7.7383029, 47.3724214 ], + [ 7.7381184, 47.3722513 ], + [ 7.7379892, 47.3721338 ], + [ 7.7379012, 47.372051 ], + [ 7.7378107, 47.3719457 ], + [ 7.7377133, 47.3718291 ], + [ 7.7374469999999995, 47.371461 ], + [ 7.737152, 47.371091 ], + [ 7.7371357, 47.3710717 ], + [ 7.7370592, 47.3711095 ], + [ 7.7367565, 47.3709255 ], + [ 7.7363307, 47.3708238 ], + [ 7.7358926, 47.3706715 ], + [ 7.7355146999999995, 47.3707699 ], + [ 7.7350117, 47.3707811 ], + [ 7.7346257, 47.3707118 ], + [ 7.7339001, 47.3707194 ], + [ 7.7340839, 47.3718841 ], + [ 7.7341252, 47.3718884 ], + [ 7.7341659, 47.371895 ], + [ 7.7342056, 47.3719038 ], + [ 7.7342441, 47.3719149 ], + [ 7.7342702, 47.3719226 ], + [ 7.7342953, 47.3719319 ], + [ 7.734319, 47.3719426 ], + [ 7.7343412, 47.3719546 ], + [ 7.7343619, 47.371968 ], + [ 7.7343807, 47.3719825 ], + [ 7.7343976, 47.3719981 ], + [ 7.7344114, 47.3720094 ], + [ 7.7344238, 47.3720214 ], + [ 7.7344345, 47.3720341 ], + [ 7.7344436, 47.3720475 ], + [ 7.7344508, 47.3720613 ], + [ 7.7344563, 47.3720755 ], + [ 7.7344599, 47.3720899 ], + [ 7.7344617, 47.3721045 ], + [ 7.7344615, 47.3721192 ], + [ 7.7344595, 47.3721338 ], + [ 7.7344556, 47.3721482 ], + [ 7.7344487, 47.3721662 ], + [ 7.7344397, 47.3721837 ], + [ 7.7344285, 47.3722006 ], + [ 7.7344154, 47.3722169 ], + [ 7.7344003, 47.3722323 ], + [ 7.7343834000000005, 47.3722469 ], + [ 7.7343648, 47.3722604 ], + [ 7.7343446, 47.3722729 ], + [ 7.7343229000000004, 47.3722842 ], + [ 7.7342951, 47.3722985 ], + [ 7.7342656, 47.3723111 ], + [ 7.7342345, 47.3723218 ], + [ 7.7342022, 47.3723306 ], + [ 7.7341688, 47.3723374 ], + [ 7.7341347, 47.3723422 ], + [ 7.7341001, 47.3723449 ], + [ 7.7340652, 47.3723455 ], + [ 7.7339401, 47.372351 ], + [ 7.7338148, 47.3723548 ], + [ 7.7336894, 47.372357 ], + [ 7.7335377, 47.3723678 ], + [ 7.7333881, 47.3723877 ], + [ 7.7332415, 47.3724163 ], + [ 7.7331154, 47.3724513 ], + [ 7.7329938, 47.3724931 ], + [ 7.7328776, 47.3725414 ], + [ 7.7327854, 47.3725898 ], + [ 7.7326986, 47.3726426 ], + [ 7.7326177, 47.3726995 ], + [ 7.7324686, 47.3728299 ], + [ 7.7323074, 47.3729535 ], + [ 7.7321347, 47.3730697 ], + [ 7.7320842, 47.3731045 ], + [ 7.7320384, 47.3731423 ], + [ 7.7319977, 47.3731827 ], + [ 7.7319625, 47.3732254 ], + [ 7.7319331, 47.3732701 ], + [ 7.7319294, 47.3732773 ], + [ 7.7319267, 47.3732847 ], + [ 7.7319249, 47.3732922 ], + [ 7.7319241, 47.3732998 ], + [ 7.7319243, 47.3733075 ], + [ 7.7319255, 47.3733151 ], + [ 7.7319276, 47.3733226 ], + [ 7.7319306999999995, 47.3733299 ], + [ 7.7319347, 47.3733371 ], + [ 7.7319396, 47.3733439 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns081", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Dürrenberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Dürrenberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Dürrenberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Dürrenberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7385026, 47.4215385 ], + [ 7.7385765, 47.4219483 ], + [ 7.7387078, 47.4222676 ], + [ 7.7390381999999995, 47.4224713 ], + [ 7.739275, 47.4226527 ], + [ 7.7394675, 47.4228553 ], + [ 7.7395023, 47.422892 ], + [ 7.7395274, 47.423036 ], + [ 7.7395629, 47.4232628 ], + [ 7.7395932, 47.4234744 ], + [ 7.7397329, 47.4236902 ], + [ 7.7398404, 47.4238564 ], + [ 7.7399867, 47.4240824 ], + [ 7.7402359, 47.4244596 ], + [ 7.7405633, 47.4247834 ], + [ 7.7405709, 47.4247891 ], + [ 7.7405881999999995, 47.4247769 ], + [ 7.7408041, 47.4246231 ], + [ 7.7410578999999995, 47.4244559 ], + [ 7.7412934, 47.4243085 ], + [ 7.7410641, 47.4240079 ], + [ 7.740996, 47.4238151 ], + [ 7.7410568, 47.423653 ], + [ 7.7411727, 47.423381 ], + [ 7.7412714, 47.4232162 ], + [ 7.7414586, 47.423268 ], + [ 7.7416515, 47.4233224 ], + [ 7.7420085, 47.4231075 ], + [ 7.7424288, 47.423256 ], + [ 7.7426577, 47.4232499 ], + [ 7.7429996, 47.4231452 ], + [ 7.7431618, 47.4234065 ], + [ 7.7432616, 47.4235669 ], + [ 7.7433742, 47.4237478 ], + [ 7.7438579, 47.4235221 ], + [ 7.744059, 47.4236258 ], + [ 7.7442237, 47.4234916 ], + [ 7.7444427000000005, 47.4233104 ], + [ 7.7446879, 47.4231013 ], + [ 7.7443825, 47.4231112 ], + [ 7.7440236, 47.4230484 ], + [ 7.7438846, 47.4230192 ], + [ 7.7439549, 47.4229159 ], + [ 7.7440381, 47.422799 ], + [ 7.7441933, 47.4225724 ], + [ 7.7442274, 47.422502 ], + [ 7.7444466, 47.422025 ], + [ 7.7444801, 47.4219441 ], + [ 7.7444685, 47.421865 ], + [ 7.7445273, 47.4217281 ], + [ 7.7446108, 47.4215221 ], + [ 7.7446497, 47.4215309 ], + [ 7.744913, 47.4211003 ], + [ 7.7448729, 47.4210887 ], + [ 7.74435, 47.4209378 ], + [ 7.7436778, 47.4207594 ], + [ 7.7431616, 47.4206189 ], + [ 7.7424891, 47.4204388 ], + [ 7.7424849, 47.4204667 ], + [ 7.7421284, 47.4204139 ], + [ 7.7420691, 47.4202506 ], + [ 7.7418808, 47.4200394 ], + [ 7.7417724, 47.4198664 ], + [ 7.741238, 47.4195602 ], + [ 7.7408044, 47.4193339 ], + [ 7.7408003, 47.419209 ], + [ 7.7407961, 47.4190039 ], + [ 7.7407834, 47.4188907 ], + [ 7.7408301999999996, 47.4187564 ], + [ 7.7409089, 47.4185774 ], + [ 7.7410252, 47.4184684 ], + [ 7.7412928, 47.418101 ], + [ 7.7410213, 47.4179194 ], + [ 7.7407632, 47.4177486 ], + [ 7.7403257, 47.417978 ], + [ 7.7397879, 47.4182659 ], + [ 7.7394244, 47.4184712 ], + [ 7.7390697, 47.4186705 ], + [ 7.7392281, 47.4187426 ], + [ 7.7390783, 47.419377 ], + [ 7.7389491, 47.4199044 ], + [ 7.7388373, 47.4203696 ], + [ 7.7388145, 47.4209409 ], + [ 7.7386783, 47.4215136 ], + [ 7.7385026, 47.4215385 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns210", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Tannenboden - Allmet", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Tannenboden - Allmet", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Tannenboden - Allmet", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Tannenboden - Allmet", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6763889, 47.3807126 ], + [ 7.6766403, 47.3810694 ], + [ 7.677201, 47.3811744 ], + [ 7.6771465, 47.3814536 ], + [ 7.6770962, 47.3818141 ], + [ 7.6770481, 47.3821983 ], + [ 7.6772291, 47.3821948 ], + [ 7.6775052, 47.3822435 ], + [ 7.6776301, 47.382287 ], + [ 7.6777128, 47.3823687 ], + [ 7.6778298, 47.3822878 ], + [ 7.6779585, 47.3821881 ], + [ 7.6780496, 47.3821745 ], + [ 7.6780641, 47.3821703 ], + [ 7.678079, 47.3821667 ], + [ 7.6780941, 47.3821637 ], + [ 7.6781095, 47.3821613 ], + [ 7.6781251, 47.3821596 ], + [ 7.6781424, 47.3821577 ], + [ 7.6781596, 47.3821551 ], + [ 7.6781766000000005, 47.382152 ], + [ 7.6781933, 47.3821482 ], + [ 7.6782097, 47.3821438 ], + [ 7.6783233, 47.3821284 ], + [ 7.6785672, 47.3821086 ], + [ 7.6786187, 47.3821627 ], + [ 7.6789714, 47.3825371 ], + [ 7.6792721, 47.3827356 ], + [ 7.6795916, 47.3829093 ], + [ 7.679805, 47.3830205 ], + [ 7.6801753999999995, 47.3828039 ], + [ 7.6804967, 47.3825935 ], + [ 7.6808684, 47.3824325 ], + [ 7.6813399, 47.3824616 ], + [ 7.6816941, 47.3824746 ], + [ 7.6815101, 47.3822666 ], + [ 7.681017, 47.3817192 ], + [ 7.6809655, 47.381662 ], + [ 7.6810271, 47.3816713 ], + [ 7.6810995, 47.3816962 ], + [ 7.6811769, 47.3817187 ], + [ 7.6813062, 47.3817242 ], + [ 7.6813825, 47.3816851 ], + [ 7.6814902, 47.3816175 ], + [ 7.6815555, 47.3815299 ], + [ 7.6815768, 47.3815065 ], + [ 7.6816251, 47.3815135 ], + [ 7.6818501999999995, 47.3814584 ], + [ 7.6820601, 47.3813573 ], + [ 7.6823267, 47.3810878 ], + [ 7.6825148, 47.380992 ], + [ 7.6823403, 47.3810002 ], + [ 7.6822052, 47.3810066 ], + [ 7.6818153, 47.3810039 ], + [ 7.6814454, 47.3810025 ], + [ 7.6815574, 47.3805662 ], + [ 7.6815819, 47.3802371 ], + [ 7.6815917, 47.3801388 ], + [ 7.6818328000000005, 47.3801391 ], + [ 7.6823678, 47.3801469 ], + [ 7.6828179, 47.3802047 ], + [ 7.6829548, 47.3802401 ], + [ 7.683124, 47.3802815 ], + [ 7.6831533, 47.3805192 ], + [ 7.6831762, 47.3807928 ], + [ 7.6835388, 47.3807777 ], + [ 7.6841026, 47.3807602 ], + [ 7.684323, 47.3809286 ], + [ 7.6848475, 47.3809444 ], + [ 7.6850466, 47.3810291 ], + [ 7.6852958000000005, 47.3811904 ], + [ 7.6856309, 47.3813376 ], + [ 7.685849, 47.3815106 ], + [ 7.6862037, 47.3816986 ], + [ 7.6865468, 47.3818109 ], + [ 7.6865845, 47.3817955 ], + [ 7.6870261, 47.3818751 ], + [ 7.6876333, 47.3817732 ], + [ 7.6880847, 47.3816842 ], + [ 7.688119, 47.3818539 ], + [ 7.6885795, 47.3818223 ], + [ 7.6891129, 47.3817714 ], + [ 7.6892164, 47.3822061 ], + [ 7.689316, 47.382417 ], + [ 7.68943, 47.3826645 ], + [ 7.6896195, 47.3830523 ], + [ 7.6896276, 47.3832639 ], + [ 7.6891716, 47.3833372 ], + [ 7.6887336, 47.3834077 ], + [ 7.6882257, 47.3834427 ], + [ 7.6879442000000004, 47.3836129 ], + [ 7.6880098, 47.3837358 ], + [ 7.6879681, 47.3837892 ], + [ 7.6880628, 47.3838058 ], + [ 7.6884855, 47.3836955 ], + [ 7.6889445, 47.3836331 ], + [ 7.6892929, 47.3835765 ], + [ 7.6898206, 47.3834806 ], + [ 7.6903315, 47.3833575 ], + [ 7.6911045, 47.3831589 ], + [ 7.6919128, 47.3829442 ], + [ 7.6926733, 47.382738 ], + [ 7.6935295, 47.3824976 ], + [ 7.6936692, 47.3824558 ], + [ 7.6937569, 47.3807214 ], + [ 7.693755, 47.3806848 ], + [ 7.693755, 47.3806805 ], + [ 7.6937555, 47.3806762 ], + [ 7.6937566, 47.380672 ], + [ 7.6937583, 47.3806679 ], + [ 7.6937604, 47.3806639 ], + [ 7.6937631, 47.38066 ], + [ 7.6937662, 47.3806563 ], + [ 7.6937698, 47.3806528 ], + [ 7.6937739, 47.3806495 ], + [ 7.6937783, 47.3806465 ], + [ 7.6937832, 47.3806438 ], + [ 7.6937883, 47.3806413 ], + [ 7.6938889, 47.3806119 ], + [ 7.6939146, 47.3806011 ], + [ 7.6939389, 47.380589 ], + [ 7.6939617, 47.3805756 ], + [ 7.6939828, 47.380561 ], + [ 7.6940021, 47.3805453 ], + [ 7.6940674, 47.3805053 ], + [ 7.6941353, 47.3804666 ], + [ 7.6942034, 47.3804297 ], + [ 7.6944296, 47.3802928 ], + [ 7.6946089, 47.3801811 ], + [ 7.6948033, 47.3800663 ], + [ 7.6951404, 47.3798041 ], + [ 7.6952518, 47.37968 ], + [ 7.6953614, 47.3795397 ], + [ 7.6955652, 47.3793285 ], + [ 7.6957692, 47.37914 ], + [ 7.6959674, 47.3790129 ], + [ 7.6962139, 47.3788915 ], + [ 7.6964628, 47.3787394 ], + [ 7.696594, 47.3786748 ], + [ 7.6968691, 47.378561 ], + [ 7.6969864, 47.3785146 ], + [ 7.6971294, 47.3784465 ], + [ 7.6972857, 47.3783742 ], + [ 7.697431, 47.3783274 ], + [ 7.6975469, 47.3783084 ], + [ 7.6976386, 47.3782896 ], + [ 7.697745, 47.3782689 ], + [ 7.6978071, 47.3782461 ], + [ 7.6978054, 47.3782373 ], + [ 7.6978043, 47.3782317 ], + [ 7.6977381, 47.3779798 ], + [ 7.6976765, 47.3778122 ], + [ 7.697562, 47.3776039 ], + [ 7.6974364, 47.3773907 ], + [ 7.6973281, 47.3771716 ], + [ 7.6972695, 47.3769917 ], + [ 7.6972213, 47.376745 ], + [ 7.6972021, 47.3765254 ], + [ 7.6972218, 47.3762056 ], + [ 7.6972532000000005, 47.3760332 ], + [ 7.6973115, 47.3757141 ], + [ 7.6973755, 47.3754703 ], + [ 7.6974349, 47.3751892 ], + [ 7.6974737, 47.3750343 ], + [ 7.6975238, 47.3748344 ], + [ 7.6974432, 47.3748333 ], + [ 7.6974141, 47.3748877 ], + [ 7.6973627, 47.3749595 ], + [ 7.6973053, 47.3750292 ], + [ 7.6972419, 47.3750965 ], + [ 7.6970636, 47.3752591 ], + [ 7.6970513, 47.3752696 ], + [ 7.6970377, 47.3752793 ], + [ 7.6970231, 47.3752882 ], + [ 7.6970073, 47.3752963 ], + [ 7.6969906, 47.3753035 ], + [ 7.6969518, 47.3753227 ], + [ 7.6969159, 47.3753445 ], + [ 7.6968833, 47.3753685 ], + [ 7.6968734, 47.3753762 ], + [ 7.6968645, 47.3753845 ], + [ 7.6968566, 47.3753933 ], + [ 7.6968498, 47.3754024 ], + [ 7.6968442, 47.375412 ], + [ 7.6968397, 47.3754218 ], + [ 7.6968365, 47.3754318 ], + [ 7.6968311, 47.3754473 ], + [ 7.6968236, 47.3754624 ], + [ 7.6968143, 47.375477 ], + [ 7.6968031, 47.375491 ], + [ 7.6967472, 47.3755708 ], + [ 7.6966814, 47.3756471 ], + [ 7.6966062, 47.3757192 ], + [ 7.6965667, 47.3757541 ], + [ 7.6965259, 47.3757882 ], + [ 7.6964837, 47.3758215 ], + [ 7.6964635, 47.3758387 ], + [ 7.6964456, 47.375857 ], + [ 7.6964302, 47.3758764 ], + [ 7.6964174, 47.3758966 ], + [ 7.6964073, 47.3759175 ], + [ 7.6964, 47.3759389 ], + [ 7.696395, 47.3759567 ], + [ 7.6963878, 47.3759741 ], + [ 7.6963786, 47.375991 ], + [ 7.6963673, 47.3760074 ], + [ 7.6963539999999995, 47.3760231 ], + [ 7.6963389, 47.376038 ], + [ 7.696322, 47.376052 ], + [ 7.6963035, 47.376065 ], + [ 7.6961919, 47.3761351 ], + [ 7.6960738, 47.3762002 ], + [ 7.6959496, 47.3762598 ], + [ 7.6958808, 47.3762918 ], + [ 7.6958078, 47.3763193 ], + [ 7.6957315, 47.376342 ], + [ 7.6956523, 47.3763599 ], + [ 7.6956093, 47.3763721 ], + [ 7.6955671, 47.3763857 ], + [ 7.6955259, 47.3764005 ], + [ 7.6955162999999995, 47.3764069 ], + [ 7.6955075, 47.3764138 ], + [ 7.6954994, 47.3764211 ], + [ 7.6954964, 47.3764241 ], + [ 7.6954881, 47.3764335 ], + [ 7.6954811, 47.3764433 ], + [ 7.6954754, 47.3764536 ], + [ 7.6954711, 47.3764641 ], + [ 7.6954683, 47.3764749 ], + [ 7.6954668999999996, 47.3764858 ], + [ 7.6954668999999996, 47.3764968 ], + [ 7.6954684, 47.3765077 ], + [ 7.6954714, 47.3765184 ], + [ 7.6954758, 47.3765289 ], + [ 7.6954816, 47.3765392 ], + [ 7.6954887, 47.376549 ], + [ 7.6955001, 47.376565 ], + [ 7.6955232, 47.3765971 ], + [ 7.695544, 47.3766256 ], + [ 7.6957162, 47.3768625 ], + [ 7.6957377000000005, 47.3769331 ], + [ 7.6957265, 47.3770074 ], + [ 7.6956915, 47.3770783 ], + [ 7.6956643, 47.3771331 ], + [ 7.6956416, 47.377174 ], + [ 7.6955486, 47.3772903 ], + [ 7.6954602, 47.3774165 ], + [ 7.6953631, 47.3775685 ], + [ 7.6953443, 47.3776057 ], + [ 7.6953389, 47.3776124 ], + [ 7.6953327, 47.3776189 ], + [ 7.6953257, 47.3776249 ], + [ 7.6953179, 47.3776305 ], + [ 7.6953095, 47.3776356 ], + [ 7.6953005, 47.3776402 ], + [ 7.6952909, 47.3776443 ], + [ 7.6952809, 47.3776479 ], + [ 7.6952704, 47.3776508 ], + [ 7.6952596, 47.3776531 ], + [ 7.6952486, 47.3776548 ], + [ 7.6952108, 47.3776617 ], + [ 7.6951722, 47.3776662 ], + [ 7.6951331, 47.3776682 ], + [ 7.694845, 47.3776731 ], + [ 7.694741, 47.3776829 ], + [ 7.6946379, 47.3776963 ], + [ 7.6945359, 47.3777132 ], + [ 7.694465, 47.3777273 ], + [ 7.694396, 47.3777451 ], + [ 7.6943292, 47.3777665 ], + [ 7.694265, 47.3777914 ], + [ 7.6941207, 47.3778458 ], + [ 7.6938908, 47.3779988 ], + [ 7.6938151, 47.3780611 ], + [ 7.6936389, 47.3782572 ], + [ 7.6936333, 47.3782697 ], + [ 7.6936295, 47.3782825 ], + [ 7.6936275, 47.3782956 ], + [ 7.6936273, 47.3783086 ], + [ 7.6936289, 47.3783217 ], + [ 7.6936304, 47.3783337 ], + [ 7.6936302, 47.3783458 ], + [ 7.6936285, 47.3783578 ], + [ 7.6936251, 47.3783696 ], + [ 7.6936202, 47.3783812 ], + [ 7.6936138, 47.3783925 ], + [ 7.6936059, 47.3784033 ], + [ 7.6933494, 47.3787504 ], + [ 7.6931815, 47.3789564 ], + [ 7.693138, 47.3789928 ], + [ 7.6930945, 47.3790175 ], + [ 7.6929734, 47.3790563 ], + [ 7.692446, 47.3792 ], + [ 7.6923758, 47.3792284 ], + [ 7.6923085, 47.3792599 ], + [ 7.6922444, 47.3792943 ], + [ 7.6922147, 47.3793138 ], + [ 7.6921876000000005, 47.379335 ], + [ 7.6921631999999995, 47.3793576 ], + [ 7.6921417, 47.3793816 ], + [ 7.692104, 47.3794162 ], + [ 7.6920621, 47.3794485 ], + [ 7.6920163, 47.3794782 ], + [ 7.691732, 47.3796429 ], + [ 7.6916922, 47.3796607 ], + [ 7.6916503, 47.3796761 ], + [ 7.6916066, 47.379689 ], + [ 7.6914361, 47.3797346 ], + [ 7.6913233, 47.3797933 ], + [ 7.6912746, 47.3798483 ], + [ 7.6912203, 47.3799258 ], + [ 7.6911984, 47.3799462 ], + [ 7.6911738, 47.3799651 ], + [ 7.6911467, 47.3799823 ], + [ 7.6911173, 47.3799977 ], + [ 7.6910141, 47.3800449 ], + [ 7.6909043, 47.3800848 ], + [ 7.6907892, 47.3801169 ], + [ 7.6903844, 47.3802109 ], + [ 7.6903177, 47.3802178 ], + [ 7.6902504, 47.3802206 ], + [ 7.6901829, 47.3802192 ], + [ 7.6900881, 47.3802122 ], + [ 7.6899927, 47.3802109 ], + [ 7.6898975, 47.3802152 ], + [ 7.6898033, 47.3802252 ], + [ 7.6897107, 47.3802407 ], + [ 7.689662, 47.3802525 ], + [ 7.6896148, 47.3802668 ], + [ 7.6895695, 47.3802837 ], + [ 7.6895264, 47.3803031 ], + [ 7.6894857, 47.3803247 ], + [ 7.6894477, 47.3803485 ], + [ 7.6894231, 47.3803654 ], + [ 7.6894009, 47.3803837 ], + [ 7.6893812, 47.3804033 ], + [ 7.6893643, 47.380424 ], + [ 7.6893503, 47.3804458 ], + [ 7.6893393, 47.3804683 ], + [ 7.6893313, 47.3804914 ], + [ 7.6893118, 47.3805463 ], + [ 7.6892987, 47.3806022 ], + [ 7.6892922, 47.3806586 ], + [ 7.6892908, 47.3806866 ], + [ 7.6892857, 47.3807144 ], + [ 7.6892768, 47.3807417 ], + [ 7.6892643, 47.3807684 ], + [ 7.6892483, 47.3807942 ], + [ 7.6892289, 47.3808189 ], + [ 7.6892063, 47.3808423 ], + [ 7.6891451, 47.3808972 ], + [ 7.6890807, 47.3809504 ], + [ 7.6890131, 47.3810017 ], + [ 7.6889992, 47.3810133 ], + [ 7.688984, 47.3810241 ], + [ 7.6889677, 47.3810342 ], + [ 7.6889453, 47.3810458 ], + [ 7.6889214, 47.3810559 ], + [ 7.6888962, 47.3810644 ], + [ 7.6888699, 47.3810712 ], + [ 7.6888338, 47.3810744 ], + [ 7.6887974, 47.3810755 ], + [ 7.6887611, 47.3810743 ], + [ 7.688725, 47.381071 ], + [ 7.6886895, 47.3810655 ], + [ 7.6885811, 47.3810501 ], + [ 7.6884727999999996, 47.3810345 ], + [ 7.6883645, 47.3810188 ], + [ 7.688258, 47.3810026 ], + [ 7.68815, 47.380992 ], + [ 7.6880410999999995, 47.3809869 ], + [ 7.6879784, 47.3809872 ], + [ 7.6879158, 47.38099 ], + [ 7.6878536, 47.3809953 ], + [ 7.6878006, 47.3809989 ], + [ 7.6877474, 47.3809991 ], + [ 7.6876943, 47.380996 ], + [ 7.6876777, 47.3809939 ], + [ 7.6876125, 47.3806837 ], + [ 7.6874500999999995, 47.380712 ], + [ 7.6873263, 47.3806476 ], + [ 7.6873062, 47.3804201 ], + [ 7.6873313, 47.3802013 ], + [ 7.6870857, 47.3798832 ], + [ 7.6867863, 47.3797458 ], + [ 7.6867826, 47.3797698 ], + [ 7.6863705, 47.3796436 ], + [ 7.6861277999999995, 47.3796428 ], + [ 7.6858531, 47.3797138 ], + [ 7.6858088, 47.3797301 ], + [ 7.6857155, 47.3797155 ], + [ 7.6858463, 47.3794862 ], + [ 7.6857872, 47.3793264 ], + [ 7.6860372, 47.3790744 ], + [ 7.6864091, 47.3788082 ], + [ 7.6865988, 47.3785606 ], + [ 7.6861114, 47.378152 ], + [ 7.6857701, 47.3779163 ], + [ 7.6853941, 47.3777899 ], + [ 7.6851272, 47.377714 ], + [ 7.6846985, 47.3776717 ], + [ 7.6841141, 47.3775632 ], + [ 7.6837778, 47.3774965 ], + [ 7.6833579, 47.3776067 ], + [ 7.682944, 47.3777363 ], + [ 7.682785, 47.3779053 ], + [ 7.6825098, 47.3780798 ], + [ 7.6820123, 47.3780263 ], + [ 7.6816301, 47.3780523 ], + [ 7.6815423, 47.3785612 ], + [ 7.68091, 47.3785312 ], + [ 7.6802902, 47.3783814 ], + [ 7.6796912, 47.3781625 ], + [ 7.6794259, 47.3780705 ], + [ 7.6792441, 47.3779675 ], + [ 7.6791229, 47.37788 ], + [ 7.678819, 47.3777316 ], + [ 7.6786449999999995, 47.3776692 ], + [ 7.6783885, 47.3776868 ], + [ 7.6783298, 47.3775942 ], + [ 7.6775354, 47.3772729 ], + [ 7.6775017, 47.3770917 ], + [ 7.6773704, 47.377005 ], + [ 7.6772655, 47.3770508 ], + [ 7.6772704, 47.377349 ], + [ 7.677324, 47.3774589 ], + [ 7.6776307, 47.3776037 ], + [ 7.6778897, 47.377676 ], + [ 7.6781421, 47.3778884 ], + [ 7.6778359, 47.3783669 ], + [ 7.6777691, 47.3786919 ], + [ 7.6772934, 47.3789069 ], + [ 7.6771813, 47.379036 ], + [ 7.6781618, 47.3801781 ], + [ 7.6779962, 47.3802855 ], + [ 7.6775585, 47.380578 ], + [ 7.6773074999999995, 47.3808141 ], + [ 7.6763889, 47.3807126 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns256", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Bürtenflue - Ängiberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Bürtenflue - Ängiberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Bürtenflue - Ängiberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Bürtenflue - Ängiberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5488142, 47.5351864 ], + [ 7.5489109, 47.5352396 ], + [ 7.548929, 47.5352943 ], + [ 7.5489384, 47.5353229 ], + [ 7.5489805, 47.5355005 ], + [ 7.5490978, 47.5356485 ], + [ 7.5491452, 47.5357083 ], + [ 7.5491912, 47.5359321 ], + [ 7.5493781, 47.5360198 ], + [ 7.5494427, 47.536069499999996 ], + [ 7.5495516, 47.5361534 ], + [ 7.5500157, 47.5366128 ], + [ 7.550053, 47.5366481 ], + [ 7.5500456, 47.5366752 ], + [ 7.5500872999999995, 47.536679 ], + [ 7.5500814, 47.536713 ], + [ 7.5503401, 47.5365642 ], + [ 7.5505788, 47.5364136 ], + [ 7.5506429, 47.5362909 ], + [ 7.5509049, 47.53616 ], + [ 7.550946, 47.53614 ], + [ 7.5512147, 47.5360317 ], + [ 7.5513898, 47.5359514 ], + [ 7.5516098, 47.5358508 ], + [ 7.5516723, 47.5358267 ], + [ 7.5517278999999995, 47.5357925 ], + [ 7.5519324999999995, 47.5356434 ], + [ 7.5519393, 47.5356393 ], + [ 7.5520603, 47.5355646 ], + [ 7.5520961, 47.535512 ], + [ 7.5521493, 47.5354339 ], + [ 7.5522678, 47.5353666 ], + [ 7.552404, 47.5353025 ], + [ 7.5524575, 47.5352829 ], + [ 7.5526807, 47.5352395 ], + [ 7.5527705, 47.5352224 ], + [ 7.5527067, 47.5351314 ], + [ 7.5525353, 47.5348909 ], + [ 7.5524234, 47.5347307 ], + [ 7.5522978, 47.5345505 ], + [ 7.5522274, 47.5345733 ], + [ 7.5519415, 47.5346805 ], + [ 7.5517430999999995, 47.5347648 ], + [ 7.5511667, 47.5350136 ], + [ 7.5508423, 47.5351517 ], + [ 7.5507646, 47.5351634 ], + [ 7.5506957, 47.5351319 ], + [ 7.5504552, 47.5348921 ], + [ 7.5504227, 47.5348752 ], + [ 7.5503822, 47.534875 ], + [ 7.5501074, 47.5349329 ], + [ 7.5500571, 47.5349621 ], + [ 7.550027, 47.535001 ], + [ 7.5499944, 47.5349431 ], + [ 7.549883, 47.5349661 ], + [ 7.5491494, 47.5351178 ], + [ 7.5488539, 47.5351783 ], + [ 7.5488142, 47.5351864 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns135", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Herzogenmatt", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Herzogenmatt", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Herzogenmatt", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Herzogenmatt", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.0456277, 46.3516493 ], + [ 8.0456208, 46.3515081 ], + [ 8.0456033, 46.3513673 ], + [ 8.0455751, 46.3512274 ], + [ 8.0455363, 46.3510887 ], + [ 8.0454872, 46.3509515 ], + [ 8.0454277, 46.3508164 ], + [ 8.0453581, 46.350683599999996 ], + [ 8.0452786, 46.3505535 ], + [ 8.0451893, 46.3504264 ], + [ 8.0450906, 46.3503028 ], + [ 8.0449826, 46.3501829 ], + [ 8.0448658, 46.3500671 ], + [ 8.0447403, 46.3499556 ], + [ 8.0446066, 46.3498489 ], + [ 8.044465, 46.3497472 ], + [ 8.0443159, 46.3496507 ], + [ 8.0441598, 46.3495598 ], + [ 8.043997, 46.3494746 ], + [ 8.0438279, 46.3493955 ], + [ 8.0436531, 46.3493226 ], + [ 8.0434731, 46.3492562 ], + [ 8.0432883, 46.3491963 ], + [ 8.0430992, 46.3491433 ], + [ 8.0429063, 46.3490971 ], + [ 8.0427103, 46.349058 ], + [ 8.0425115, 46.3490261 ], + [ 8.0423106, 46.3490014 ], + [ 8.0421081, 46.3489841 ], + [ 8.0419046, 46.3489741 ], + [ 8.0417006, 46.3489715 ], + [ 8.0414967, 46.3489762 ], + [ 8.0412934, 46.3489884 ], + [ 8.0410913, 46.3490079 ], + [ 8.040891, 46.3490347 ], + [ 8.040693, 46.3490688 ], + [ 8.0404978, 46.3491099 ], + [ 8.040306, 46.3491581 ], + [ 8.0401181, 46.3492132 ], + [ 8.0399346, 46.349275 ], + [ 8.0397561, 46.3493434 ], + [ 8.0395829, 46.3494181 ], + [ 8.0394157, 46.349499 ], + [ 8.0392548, 46.3495859 ], + [ 8.0391006, 46.3496785 ], + [ 8.0389537, 46.3497765 ], + [ 8.0388144, 46.3498797 ], + [ 8.0386831, 46.3499878 ], + [ 8.0385601, 46.3501006 ], + [ 8.0384458, 46.3502176 ], + [ 8.0383406, 46.3503387 ], + [ 8.0382446, 46.3504633 ], + [ 8.0381581, 46.3505913 ], + [ 8.0380815, 46.3507223 ], + [ 8.0380149, 46.3508558 ], + [ 8.0379584, 46.3509916 ], + [ 8.0379123, 46.3511292 ], + [ 8.0378766, 46.3512683 ], + [ 8.0378516, 46.3514085 ], + [ 8.0378371, 46.3515495 ], + [ 8.0378333, 46.3516907 ], + [ 8.0378402, 46.3518319 ], + [ 8.0378578, 46.3519727 ], + [ 8.037886, 46.3521126 ], + [ 8.0379247, 46.3522514 ], + [ 8.0379738, 46.3523885 ], + [ 8.0380333, 46.3525236 ], + [ 8.0381028, 46.3526565 ], + [ 8.0381824, 46.3527866 ], + [ 8.0382716, 46.3529136 ], + [ 8.0383703, 46.3530373 ], + [ 8.0384783, 46.3531572 ], + [ 8.0385951, 46.353273 ], + [ 8.0387206, 46.3533844 ], + [ 8.0388543, 46.3534912 ], + [ 8.0389959, 46.3535929 ], + [ 8.0391449, 46.3536894 ], + [ 8.0393011, 46.3537803 ], + [ 8.0394639, 46.3538655 ], + [ 8.039633, 46.3539446 ], + [ 8.0398078, 46.3540175 ], + [ 8.0399878, 46.3540839 ], + [ 8.0401727, 46.3541438 ], + [ 8.0403618, 46.3541969 ], + [ 8.0405546, 46.354243 ], + [ 8.0407507, 46.3542821 ], + [ 8.0409495, 46.354314 ], + [ 8.0411504, 46.3543387 ], + [ 8.0413529, 46.3543561 ], + [ 8.0415565, 46.3543661 ], + [ 8.0417605, 46.3543687 ], + [ 8.0419644, 46.3543639 ], + [ 8.0421677, 46.3543517 ], + [ 8.0423698, 46.3543322 ], + [ 8.0425701, 46.3543054 ], + [ 8.0427682, 46.3542714 ], + [ 8.0429634, 46.3542302 ], + [ 8.0431552, 46.354182 ], + [ 8.0433431, 46.3541269 ], + [ 8.0435266, 46.3540651 ], + [ 8.0437051, 46.3539968 ], + [ 8.0438783, 46.353922 ], + [ 8.0440456, 46.3538411 ], + [ 8.0442065, 46.3537542 ], + [ 8.0443606, 46.3536616 ], + [ 8.0445075, 46.3535636 ], + [ 8.0446468, 46.3534604 ], + [ 8.0447782, 46.3533522 ], + [ 8.0449011, 46.3532395 ], + [ 8.0450154, 46.3531224 ], + [ 8.0451207, 46.3530014 ], + [ 8.0452166, 46.3528767 ], + [ 8.0453031, 46.3527487 ], + [ 8.0453797, 46.3526178 ], + [ 8.0454463, 46.3524842 ], + [ 8.0455028, 46.3523484 ], + [ 8.0455488, 46.3522108 ], + [ 8.0455845, 46.3520717 ], + [ 8.0456096, 46.3519315 ], + [ 8.045624, 46.3517905 ], + [ 8.0456277, 46.3516493 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0074", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Mörel", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Mörel", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Mörel", + "lang" : "it-CH" + }, + { + "text" : "Substation Mörel", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.327069, 46.5919984 ], + [ 8.3270613, 46.5918572 ], + [ 8.3270429, 46.5917165 ], + [ 8.3270139, 46.5915767 ], + [ 8.3269742, 46.591438 ], + [ 8.3269242, 46.591301 ], + [ 8.3268637, 46.591166 ], + [ 8.3267931, 46.5910334 ], + [ 8.3267126, 46.5909035 ], + [ 8.3266223, 46.5907767 ], + [ 8.3265224, 46.5906533 ], + [ 8.3264134, 46.5905336 ], + [ 8.3262954, 46.5904181 ], + [ 8.3261688, 46.590307 ], + [ 8.3260339, 46.5902006 ], + [ 8.3258912, 46.5900992 ], + [ 8.325741, 46.5900031 ], + [ 8.3255836, 46.5899126 ], + [ 8.3254196, 46.5898279 ], + [ 8.3252495, 46.5897492 ], + [ 8.3250735, 46.5896767 ], + [ 8.3248923, 46.5896107 ], + [ 8.3247064, 46.5895513 ], + [ 8.3245161, 46.5894987 ], + [ 8.3243222, 46.5894531 ], + [ 8.3241251, 46.5894145 ], + [ 8.323925299999999, 46.589383 ], + [ 8.3237233, 46.5893589 ], + [ 8.3235199, 46.589342 ], + [ 8.3233154, 46.5893325 ], + [ 8.3231105, 46.5893304 ], + [ 8.3229057, 46.5893357 ], + [ 8.3227016, 46.5893484 ], + [ 8.3224987, 46.5893684 ], + [ 8.3222976, 46.5893957 ], + [ 8.3220989, 46.5894302 ], + [ 8.3219031, 46.5894719 ], + [ 8.3217107, 46.5895205 ], + [ 8.3215222, 46.5895761 ], + [ 8.3213383, 46.5896383 ], + [ 8.3211593, 46.5897071 ], + [ 8.3209857, 46.5897823 ], + [ 8.3208182, 46.5898636 ], + [ 8.320657, 46.5899509 ], + [ 8.3205027, 46.5900438 ], + [ 8.3203556, 46.5901422 ], + [ 8.3202162, 46.5902458 ], + [ 8.3200849, 46.5903543 ], + [ 8.3199619, 46.5904673 ], + [ 8.3198478, 46.5905846 ], + [ 8.3197426, 46.5907059 ], + [ 8.3196469, 46.5908309 ], + [ 8.3195607, 46.590959 ], + [ 8.3194844, 46.5910902 ], + [ 8.3194182, 46.5912239 ], + [ 8.3193622, 46.5913598 ], + [ 8.3193166, 46.5914975 ], + [ 8.3192815, 46.5916367 ], + [ 8.319257, 46.591777 ], + [ 8.3192432, 46.591918 ], + [ 8.3192402, 46.5920592 ], + [ 8.3192478, 46.5922004 ], + [ 8.3192662, 46.5923412 ], + [ 8.3192952, 46.592481 ], + [ 8.3193349, 46.5926196 ], + [ 8.3193849, 46.5927566 ], + [ 8.3194453, 46.5928916 ], + [ 8.3195159, 46.5930243 ], + [ 8.3195965, 46.5931542 ], + [ 8.3196868, 46.593281 ], + [ 8.3197866, 46.5934044 ], + [ 8.3198956, 46.5935241 ], + [ 8.3200136, 46.5936396 ], + [ 8.3201402, 46.5937507 ], + [ 8.320275, 46.5938571 ], + [ 8.3204178, 46.5939585 ], + [ 8.320568, 46.5940546 ], + [ 8.3207254, 46.5941451 ], + [ 8.3208894, 46.5942299 ], + [ 8.3210596, 46.5943086 ], + [ 8.3212355, 46.5943811 ], + [ 8.3214167, 46.5944471 ], + [ 8.3216027, 46.5945065 ], + [ 8.3217929, 46.5945591 ], + [ 8.3219869, 46.5946047 ], + [ 8.322184, 46.5946433 ], + [ 8.3223839, 46.5946747 ], + [ 8.3225858, 46.5946989 ], + [ 8.3227893, 46.5947158 ], + [ 8.3229938, 46.5947253 ], + [ 8.3231987, 46.5947274 ], + [ 8.3234035, 46.5947221 ], + [ 8.3236077, 46.5947094 ], + [ 8.3238105, 46.5946894 ], + [ 8.3240116, 46.5946621 ], + [ 8.3242104, 46.5946276 ], + [ 8.3244062, 46.5945859 ], + [ 8.3245986, 46.5945373 ], + [ 8.3247871, 46.5944817 ], + [ 8.3249711, 46.5944195 ], + [ 8.3251501, 46.5943506 ], + [ 8.3253236, 46.5942755 ], + [ 8.3254912, 46.5941941 ], + [ 8.3256524, 46.5941069 ], + [ 8.3258067, 46.5940139 ], + [ 8.3259538, 46.5939155 ], + [ 8.3260932, 46.5938119 ], + [ 8.3262245, 46.5937034 ], + [ 8.3263474, 46.5935904 ], + [ 8.3264616, 46.5934731 ], + [ 8.3265667, 46.5933518 ], + [ 8.3266625, 46.5932268 ], + [ 8.3267486, 46.5930986 ], + [ 8.3268249, 46.5929675 ], + [ 8.3268911, 46.5928338 ], + [ 8.3269471, 46.5926979 ], + [ 8.3269927, 46.5925601 ], + [ 8.3270277, 46.5924209 ], + [ 8.3270522, 46.5922807 ], + [ 8.327066, 46.5921397 ], + [ 8.327069, 46.5919984 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0049", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Grimsel", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Grimsel", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Grimsel", + "lang" : "it-CH" + }, + { + "text" : "Substation Grimsel", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8635269, 47.3939751 ], + [ 7.863526, 47.3940238 ], + [ 7.8639561, 47.3941951 ], + [ 7.8645706, 47.3942755 ], + [ 7.8639927, 47.3944375 ], + [ 7.8636884, 47.3946069 ], + [ 7.863639, 47.394657 ], + [ 7.8639198, 47.3946878 ], + [ 7.8642515, 47.3948407 ], + [ 7.8642968, 47.3947951 ], + [ 7.8644082, 47.3948416 ], + [ 7.8644563, 47.394862 ], + [ 7.8647881, 47.3947841 ], + [ 7.8651282, 47.3949448 ], + [ 7.8655722, 47.3950904 ], + [ 7.8662723, 47.3949517 ], + [ 7.8665715, 47.3949827 ], + [ 7.8667741, 47.3947164 ], + [ 7.8667485, 47.3944505 ], + [ 7.8668688, 47.3940163 ], + [ 7.866871, 47.3938406 ], + [ 7.8666427, 47.3934723 ], + [ 7.8666844, 47.393104 ], + [ 7.8669463, 47.3931839 ], + [ 7.8672073000000005, 47.3932697 ], + [ 7.8674715, 47.3928575 ], + [ 7.8666778, 47.3925615 ], + [ 7.866332, 47.3925334 ], + [ 7.866321, 47.392361 ], + [ 7.8668224, 47.3918877 ], + [ 7.86698, 47.3915771 ], + [ 7.8672059, 47.3914456 ], + [ 7.8672333, 47.3914106 ], + [ 7.8673882, 47.3912122 ], + [ 7.8675633, 47.39109 ], + [ 7.8677489, 47.3910724 ], + [ 7.8679283, 47.3910657 ], + [ 7.8679924, 47.3910727 ], + [ 7.8682333, 47.3910987 ], + [ 7.8683954, 47.3911227 ], + [ 7.8686727, 47.3911636 ], + [ 7.8688253, 47.3904603 ], + [ 7.868392, 47.3903493 ], + [ 7.8681135, 47.3903247 ], + [ 7.8681137, 47.3903427 ], + [ 7.8678384999999995, 47.3903769 ], + [ 7.8676079, 47.3903668 ], + [ 7.8674102999999995, 47.3903725 ], + [ 7.8665371, 47.3908195 ], + [ 7.8663272, 47.3909462 ], + [ 7.8660406, 47.3911064 ], + [ 7.8657496, 47.3912344 ], + [ 7.8652593, 47.3915169 ], + [ 7.8650098, 47.3917077 ], + [ 7.8649924, 47.3917957 ], + [ 7.8648874, 47.3917614 ], + [ 7.8648198, 47.3917392 ], + [ 7.8647972, 47.3917568 ], + [ 7.8647775, 47.3919084 ], + [ 7.8647746, 47.3919303 ], + [ 7.8647697999999995, 47.3919521 ], + [ 7.8647632, 47.3919736 ], + [ 7.8647098, 47.3921322 ], + [ 7.8646721, 47.3921178 ], + [ 7.8646767, 47.3921049 ], + [ 7.8646172, 47.3920319 ], + [ 7.864529, 47.3919933 ], + [ 7.8643377999999995, 47.3919852 ], + [ 7.8642841, 47.3920162 ], + [ 7.8642641, 47.3920361 ], + [ 7.8642599, 47.3920559 ], + [ 7.8642581, 47.3920824 ], + [ 7.8642532, 47.392146 ], + [ 7.8642402, 47.3921964 ], + [ 7.8642251, 47.3922302 ], + [ 7.8642076, 47.3922551 ], + [ 7.8641328, 47.3923389 ], + [ 7.8646315, 47.392517 ], + [ 7.8645884, 47.3928057 ], + [ 7.8642164, 47.3932297 ], + [ 7.8638395, 47.393386 ], + [ 7.8637486, 47.3935416 ], + [ 7.8636118, 47.3937341 ], + [ 7.8635779, 47.3938044 ], + [ 7.8635269, 47.3939751 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns320", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Bitzenhalde", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Bitzenhalde", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Bitzenhalde", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Bitzenhalde", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.1530483, 46.2110494 ], + [ 6.1530991, 46.2111485 ], + [ 6.1531176, 46.2111872 ], + [ 6.1530887, 46.2113138 ], + [ 6.1532406, 46.2115886 ], + [ 6.1526039, 46.2138577 ], + [ 6.1527329, 46.2138771 ], + [ 6.1526632, 46.2140833 ], + [ 6.1525991, 46.2140555 ], + [ 6.1522006, 46.2155624 ], + [ 6.1520706, 46.215579 ], + [ 6.1515068, 46.217489 ], + [ 6.1518578999999995, 46.2179878 ], + [ 6.1519849, 46.2180973 ], + [ 6.1521149, 46.2180808 ], + [ 6.1524476, 46.2188043 ], + [ 6.1523696, 46.2193613 ], + [ 6.1529792, 46.21989 ], + [ 6.1531094, 46.2198645 ], + [ 6.1536942, 46.2208879 ], + [ 6.1536593, 46.2212654 ], + [ 6.1534569, 46.221605 ], + [ 6.153152, 46.2218894 ], + [ 6.1521609999999995, 46.2226879 ], + [ 6.152007, 46.2226232 ], + [ 6.1517684, 46.2228454 ], + [ 6.1518965, 46.2229098 ], + [ 6.1513674, 46.2233536 ], + [ 6.1512218, 46.2240267 ], + [ 6.1512838, 46.2241445 ], + [ 6.1512564, 46.2242071 ], + [ 6.1509945, 46.224321 ], + [ 6.1500652, 46.225255 ], + [ 6.1497359, 46.2254762 ], + [ 6.1496944, 46.2255837 ], + [ 6.1495617, 46.2257171 ], + [ 6.1490241, 46.2265205 ], + [ 6.1491129, 46.2271513 ], + [ 6.1494337, 46.2272898 ], + [ 6.1491966, 46.227449 ], + [ 6.1492567, 46.2276476 ], + [ 6.1495163, 46.2276326 ], + [ 6.1495078, 46.2279924 ], + [ 6.1497417, 46.227968 ], + [ 6.1497952, 46.2284455 ], + [ 6.1495619, 46.2284428 ], + [ 6.1497725, 46.2294077 ], + [ 6.1499015, 46.2294362 ], + [ 6.1499599, 46.2297067 ], + [ 6.1499185, 46.2298142 ], + [ 6.150228, 46.2304294 ], + [ 6.1503178, 46.2310152 ], + [ 6.1501489, 46.2310312 ], + [ 6.1501776, 46.2314633 ], + [ 6.1506567, 46.2314868 ], + [ 6.1505866, 46.2317109 ], + [ 6.1499895, 46.2322888 ], + [ 6.15005, 46.2324694 ], + [ 6.1506853, 46.2330164 ], + [ 6.1508722, 46.2333334 ], + [ 6.1509041, 46.2336306 ], + [ 6.1507586, 46.2343036 ], + [ 6.1504573, 46.2344351 ], + [ 6.1504552, 46.2345251 ], + [ 6.1506885, 46.2345277 ], + [ 6.1502752, 46.2355575 ], + [ 6.1502677, 46.2358723 ], + [ 6.1504717, 46.2365673 ], + [ 6.1505726, 46.2366854 ], + [ 6.1507018, 46.2367049 ], + [ 6.1508216000000004, 46.2371201 ], + [ 6.1510637, 46.23894 ], + [ 6.1511617, 46.2391842 ], + [ 6.1509932, 46.2391822 ], + [ 6.1510552, 46.2392999 ], + [ 6.1512503, 46.2392751 ], + [ 6.1512216, 46.2393918 ], + [ 6.1511168, 46.2394355 ], + [ 6.1511158, 46.2394805 ], + [ 6.1513739, 46.2395284 ], + [ 6.1513639, 46.2399512 ], + [ 6.1516514, 46.2404043 ], + [ 6.1518053, 46.240478 ], + [ 6.1521803, 46.2410671 ], + [ 6.1520492, 46.2411286 ], + [ 6.1520443, 46.2413355 ], + [ 6.1524299, 46.2421047 ], + [ 6.1524526999999996, 46.24215 ], + [ 6.1525106, 46.2421056 ], + [ 6.1525452, 46.242079 ], + [ 6.1525834, 46.2421064 ], + [ 6.1526051, 46.2422867 ], + [ 6.1529839, 46.2427138 ], + [ 6.1530816999999995, 46.2429669 ], + [ 6.152941, 46.2434331 ], + [ 6.152556, 46.2443556 ], + [ 6.1527241, 46.2443755 ], + [ 6.1527187, 46.2446004 ], + [ 6.1528096, 46.2446014 ], + [ 6.1528721, 46.2446921 ], + [ 6.1531309, 46.2447221 ], + [ 6.1532234, 46.245191 ], + [ 6.1533082, 46.2454439 ], + [ 6.1535645, 46.2455727 ], + [ 6.1537965, 46.2456293 ], + [ 6.1539204, 46.2458737 ], + [ 6.1537147, 46.2463483 ], + [ 6.1533417, 46.2467669 ], + [ 6.1530771, 46.2469889 ], + [ 6.152027, 46.2475168 ], + [ 6.1516958, 46.24781 ], + [ 6.1514935, 46.2481407 ], + [ 6.1515951, 46.2482318 ], + [ 6.1518155, 46.2482343 ], + [ 6.151849, 46.2484596 ], + [ 6.151713, 46.248728 ], + [ 6.1514752999999995, 46.2489052 ], + [ 6.1514249, 46.2499394 ], + [ 6.1515245, 46.2512003 ], + [ 6.1517721, 46.251698 ], + [ 6.1518611, 46.251771 ], + [ 6.1520573, 46.2517012 ], + [ 6.1523723, 46.2520917 ], + [ 6.1524716999999995, 46.2522728 ], + [ 6.1524685, 46.2524078 ], + [ 6.153512, 46.2532474 ], + [ 6.1538308, 46.253476 ], + [ 6.1540653, 46.2534336 ], + [ 6.1542017, 46.2531473 ], + [ 6.1544892, 46.2530606 ], + [ 6.1546217, 46.2529451 ], + [ 6.1547233, 46.2530362 ], + [ 6.15446, 46.2531952 ], + [ 6.1543531, 46.2533289 ], + [ 6.1543235, 46.2534816 ], + [ 6.1546634000000005, 46.2539174 ], + [ 6.1553431, 46.25424 ], + [ 6.1555557, 46.2545753 ], + [ 6.1556768, 46.2549366 ], + [ 6.1561593, 46.255374 ], + [ 6.1562843, 46.2555733 ], + [ 6.1564091, 46.2557817 ], + [ 6.1566513, 46.2565043 ], + [ 6.157516, 46.2583317 ], + [ 6.1581045, 46.2592201 ], + [ 6.1584197, 46.2596015 ], + [ 6.1591216, 46.2600863 ], + [ 6.1598259, 46.2604721 ], + [ 6.1604647, 46.2608841 ], + [ 6.1608846, 46.2612307 ], + [ 6.1615743, 46.2622282 ], + [ 6.1617029, 46.2622746 ], + [ 6.1616598, 46.2624541 ], + [ 6.1617838, 46.2626984 ], + [ 6.1620108, 46.2629708 ], + [ 6.1623308, 46.2631544 ], + [ 6.1639415, 46.2636042 ], + [ 6.1643555, 46.2636538 ], + [ 6.1648483, 46.2636593 ], + [ 6.1650068, 46.2635441 ], + [ 6.1651991, 46.2636362 ], + [ 6.1655006, 46.2635046 ], + [ 6.1657215, 46.2634891 ], + [ 6.1658491, 46.2635805 ], + [ 6.1656908, 46.2636867 ], + [ 6.1656898, 46.2637316 ], + [ 6.1661384, 46.2639616 ], + [ 6.1663318, 46.2640088 ], + [ 6.1664241, 46.2639468 ], + [ 6.1663072, 46.2634057 ], + [ 6.1660187, 46.2635374 ], + [ 6.1659556, 46.2634647 ], + [ 6.1662882, 46.2631086 ], + [ 6.1663574, 46.2629294 ], + [ 6.1663221, 46.2627761 ], + [ 6.166108, 46.2625037 ], + [ 6.1661739, 46.2624595 ], + [ 6.1663891, 46.2626868 ], + [ 6.1665444, 46.2632464 ], + [ 6.1664992, 46.2635158 ], + [ 6.1667447, 46.2641034 ], + [ 6.1668453, 46.2642395 ], + [ 6.1667351, 46.2645082 ], + [ 6.1668546, 46.2649414 ], + [ 6.1670876, 46.264962 ], + [ 6.1675369, 46.2662537 ], + [ 6.1675673, 46.2666139 ], + [ 6.1680779, 46.2680592 ], + [ 6.168173, 46.2684202 ], + [ 6.1681295, 46.2686176 ], + [ 6.1684181, 46.2690258 ], + [ 6.1684153, 46.2691427 ], + [ 6.1682446, 46.2692308 ], + [ 6.1681766, 46.269365 ], + [ 6.1682789, 46.269429099999996 ], + [ 6.168504, 46.2692337 ], + [ 6.1686305, 46.2693701 ], + [ 6.1685636, 46.2694593 ], + [ 6.1685982, 46.2696396 ], + [ 6.1687539, 46.2696414 ], + [ 6.1689462, 46.2697335 ], + [ 6.1689156, 46.2699311 ], + [ 6.1691329, 46.2700685 ], + [ 6.1693215, 46.2703225 ], + [ 6.1701108, 46.271501 ], + [ 6.1697834, 46.2716323 ], + [ 6.1697398, 46.2718298 ], + [ 6.1696474, 46.2719007 ], + [ 6.1697997, 46.2720374 ], + [ 6.170258, 46.2718626 ], + [ 6.1708199, 46.2727866 ], + [ 6.1706642, 46.2727849 ], + [ 6.1705361, 46.2727204 ], + [ 6.170377, 46.2723137 ], + [ 6.1702262, 46.2721051 ], + [ 6.1699943, 46.2720395 ], + [ 6.1699679, 46.2720572 ], + [ 6.1703075, 46.2725109 ], + [ 6.1702741, 46.2728255 ], + [ 6.1703252, 46.2734109 ], + [ 6.1704127, 46.2735468 ], + [ 6.1706721, 46.2735497 ], + [ 6.1709067, 46.2735074 ], + [ 6.1709848, 46.2740481 ], + [ 6.1711471, 46.2743198 ], + [ 6.1710412, 46.2744086 ], + [ 6.1709498, 46.2744346 ], + [ 6.1708824, 46.2745418 ], + [ 6.1709042, 46.2747218 ], + [ 6.1713975, 46.2747095 ], + [ 6.1712646, 46.2748429 ], + [ 6.1708914, 46.2749402 ], + [ 6.1704664, 46.2756886 ], + [ 6.1706217, 46.2757084 ], + [ 6.1703517, 46.2761552 ], + [ 6.1705446, 46.2762294 ], + [ 6.1704482, 46.2764712 ], + [ 6.170253, 46.276496 ], + [ 6.1696668, 46.277704 ], + [ 6.1695379, 46.2776756 ], + [ 6.1691839, 46.2778335 ], + [ 6.1690464, 46.2781649 ], + [ 6.1686471, 46.2785921 ], + [ 6.1686446, 46.2787001 ], + [ 6.1678425, 46.2797077 ], + [ 6.1678352, 46.2800225 ], + [ 6.1676672, 46.2799936 ], + [ 6.1676407, 46.2800565 ], + [ 6.1674428, 46.2800543 ], + [ 6.1661395, 46.2823226 ], + [ 6.1657646, 46.2917903 ], + [ 6.1658243, 46.2918545 ], + [ 6.1658424, 46.2923834 ], + [ 6.1659226, 46.2928706 ], + [ 6.166125, 46.2933382 ], + [ 6.1663882, 46.2938275 ], + [ 6.1670855, 46.2951438 ], + [ 6.1678745, 46.2961545 ], + [ 6.1681283, 46.2965023 ], + [ 6.1684077, 46.2968686 ], + [ 6.1688688, 46.2973095 ], + [ 6.169101, 46.2974573 ], + [ 6.1692789, 46.2976773 ], + [ 6.169355, 46.297787 ], + [ 6.1695605, 46.2979708 ], + [ 6.170025, 46.2982483 ], + [ 6.1704891, 46.2985621 ], + [ 6.1711604, 46.298987 ], + [ 6.1716512, 46.2992647 ], + [ 6.1732818, 46.3000815 ], + [ 6.1734116, 46.3001374 ], + [ 6.1739851, 46.3002347 ], + [ 6.1750813, 46.3004101 ], + [ 6.1752893, 46.3004669 ], + [ 6.1754453, 46.300523 ], + [ 6.1758617, 46.3006183 ], + [ 6.1763291, 46.300787 ], + [ 6.1767187, 46.3009365 ], + [ 6.1771317, 46.301177 ], + [ 6.1776726, 46.3015641 ], + [ 6.1780589, 46.3018406 ], + [ 6.1781601, 46.3019869 ], + [ 6.1783618, 46.302334 ], + [ 6.1784362, 46.3025163 ], + [ 6.1784324, 46.302679499999996 ], + [ 6.1779583, 46.3028013 ], + [ 6.1785486, 46.303298 ], + [ 6.1790123, 46.3036297 ], + [ 6.1793721, 46.303924 ], + [ 6.1798099, 46.3042374 ], + [ 6.1800643, 46.3045669 ], + [ 6.1801266, 46.3046419 ], + [ 6.180166, 46.3046951 ], + [ 6.1805343, 46.3046265 ], + [ 6.1807703, 46.3046109 ], + [ 6.1809269, 46.3046309 ], + [ 6.1811624, 46.3046335 ], + [ 6.1813981, 46.3046361 ], + [ 6.1815931, 46.3046248 ], + [ 6.1819225, 46.3046056 ], + [ 6.1937234, 46.3007076 ], + [ 6.1812379, 46.2899015 ], + [ 6.1809447, 46.2900025 ], + [ 6.1800549, 46.2897023 ], + [ 6.179919, 46.2896669 ], + [ 6.1794412, 46.2895443 ], + [ 6.1774021, 46.2891488 ], + [ 6.1770713, 46.2891247 ], + [ 6.1771242, 46.2890087 ], + [ 6.1770601, 46.288383 ], + [ 6.17684, 46.2877746 ], + [ 6.1764709, 46.2872016 ], + [ 6.1759639, 46.2866816 ], + [ 6.1753348, 46.2862308 ], + [ 6.1748953, 46.28601 ], + [ 6.1746881, 46.2854372 ], + [ 6.174319, 46.2848643 ], + [ 6.1741471, 46.2846882 ], + [ 6.1740205, 46.28424 ], + [ 6.1738613, 46.2838333 ], + [ 6.1737576, 46.2836002 ], + [ 6.1736269, 46.2833971 ], + [ 6.1736111, 46.2832417 ], + [ 6.1733909, 46.2826334 ], + [ 6.1732886, 46.2824453 ], + [ 6.1729516, 46.2818747 ], + [ 6.1726848, 46.2814899 ], + [ 6.1726092, 46.2814123 ], + [ 6.1726822, 46.2813082 ], + [ 6.1728812, 46.2808243 ], + [ 6.1731879, 46.2804393 ], + [ 6.1733209, 46.2802407 ], + [ 6.1735875, 46.2800615 ], + [ 6.1741185, 46.2795536 ], + [ 6.174514, 46.2789894 ], + [ 6.1745853, 46.2788516 ], + [ 6.1747936, 46.2784221 ], + [ 6.1748998, 46.2783207 ], + [ 6.1752953, 46.2777565 ], + [ 6.1754496, 46.2774306 ], + [ 6.1755898, 46.2772097 ], + [ 6.1757521, 46.2769098 ], + [ 6.1760438, 46.2763959 ], + [ 6.1762535, 46.2760642 ], + [ 6.1763848, 46.2757532 ], + [ 6.1765212, 46.2752376 ], + [ 6.176553, 46.2749885 ], + [ 6.1765861, 46.2747676 ], + [ 6.1765221, 46.2741419 ], + [ 6.1763018, 46.2735337 ], + [ 6.1760745, 46.2731809 ], + [ 6.17607, 46.2731482 ], + [ 6.1759942, 46.2729372 ], + [ 6.1760082, 46.2728448 ], + [ 6.1759442, 46.2722191 ], + [ 6.1757241, 46.2716108 ], + [ 6.1756009, 46.2713876 ], + [ 6.1751033, 46.2705694 ], + [ 6.1750149, 46.2703253 ], + [ 6.1748166, 46.2699842 ], + [ 6.174027, 46.2688058 ], + [ 6.1739345, 46.2686749 ], + [ 6.17385, 46.2685578 ], + [ 6.1734813, 46.267985 ], + [ 6.1733408, 46.2678411 ], + [ 6.1732743, 46.2677728 ], + [ 6.1731811, 46.2674108 ], + [ 6.1731171, 46.2672022 ], + [ 6.1727189, 46.2660755 ], + [ 6.172716, 46.2660429 ], + [ 6.1725802, 46.2654089 ], + [ 6.1721307, 46.2641173 ], + [ 6.1719779, 46.263766 ], + [ 6.1719684, 46.2636723 ], + [ 6.1717484, 46.2630639 ], + [ 6.171657, 46.2629153 ], + [ 6.1716386, 46.2625652 ], + [ 6.1714831, 46.2620056 ], + [ 6.1712921, 46.2615112 ], + [ 6.1709232, 46.2609385 ], + [ 6.1707258, 46.2607121 ], + [ 6.1705106, 46.2604847 ], + [ 6.1702014, 46.2601915 ], + [ 6.1695727, 46.259741 ], + [ 6.1688405, 46.2593729 ], + [ 6.1680273, 46.2590986 ], + [ 6.1671579, 46.2589264 ], + [ 6.1662586, 46.2588615 ], + [ 6.1653565, 46.258906 ], + [ 6.164919, 46.2589822 ], + [ 6.1648565, 46.2589152 ], + [ 6.1644366, 46.2585686 ], + [ 6.163998, 46.2582484 ], + [ 6.1633591, 46.2578363 ], + [ 6.1630414, 46.2576475 ], + [ 6.1626192, 46.2574162 ], + [ 6.1623527, 46.257014 ], + [ 6.1616515, 46.2555326 ], + [ 6.1614615, 46.2549654 ], + [ 6.1611992, 46.2544004 ], + [ 6.1610412, 46.2541373 ], + [ 6.1609162, 46.253938 ], + [ 6.1604036, 46.2533338 ], + [ 6.160304, 46.253126 ], + [ 6.1600914, 46.2527907 ], + [ 6.1598772, 46.2524913 ], + [ 6.1598396, 46.252453 ], + [ 6.1596258, 46.2518605 ], + [ 6.1592572, 46.2512877 ], + [ 6.1588262, 46.2508341 ], + [ 6.1587246, 46.2507428 ], + [ 6.1586491, 46.2506769 ], + [ 6.1580206, 46.2502263 ], + [ 6.1572886, 46.2498581 ], + [ 6.1567419, 46.249653 ], + [ 6.1568229, 46.2494452 ], + [ 6.1570733, 46.2492824 ], + [ 6.1573379, 46.2490603 ], + [ 6.157753, 46.2486587 ], + [ 6.158126, 46.2482401 ], + [ 6.1586811, 46.2473846 ], + [ 6.1588868, 46.2469101 ], + [ 6.1590126, 46.2465564 ], + [ 6.1591059, 46.2459324 ], + [ 6.159042, 46.2453068 ], + [ 6.1588125, 46.2446792 ], + [ 6.1586886, 46.2444348 ], + [ 6.1583296, 46.2438813 ], + [ 6.1581576, 46.2437043 ], + [ 6.1581734, 46.2436497 ], + [ 6.1582668, 46.2430259 ], + [ 6.158203, 46.2424001 ], + [ 6.1580907, 46.2420351 ], + [ 6.157993, 46.2417821 ], + [ 6.1575129, 46.2410091 ], + [ 6.1574848, 46.2409314 ], + [ 6.1573187, 46.2406733 ], + [ 6.1573013, 46.2405005 ], + [ 6.1570814, 46.2398922 ], + [ 6.1569234999999995, 46.2396131 ], + [ 6.1565484, 46.239024 ], + [ 6.1564853, 46.2389358 ], + [ 6.1562749, 46.2383535 ], + [ 6.1562014, 46.2382393 ], + [ 6.1561638, 46.2381352 ], + [ 6.1559848, 46.2367893 ], + [ 6.1559058, 46.2364134 ], + [ 6.1557859, 46.2359982 ], + [ 6.155635, 46.2356131 ], + [ 6.1556837, 46.2354928 ], + [ 6.1557794, 46.2352105 ], + [ 6.155792, 46.2351259 ], + [ 6.1558495, 46.2349864 ], + [ 6.1558862, 46.2348375 ], + [ 6.1560317, 46.2341644 ], + [ 6.1560744, 46.2333636 ], + [ 6.1560426, 46.2330663 ], + [ 6.1557474, 46.2321694 ], + [ 6.1558407, 46.2315456 ], + [ 6.1557767, 46.2309201 ], + [ 6.1555569, 46.2303119 ], + [ 6.1553791, 46.2300355 ], + [ 6.1551227, 46.2292434 ], + [ 6.1550867, 46.2291721 ], + [ 6.1550287, 46.2289029 ], + [ 6.1550213, 46.2288695 ], + [ 6.1549524, 46.2286797 ], + [ 6.1549789, 46.2285044 ], + [ 6.1549638, 46.2281662 ], + [ 6.1549102, 46.2276888 ], + [ 6.1548615, 46.2274014 ], + [ 6.154693, 46.2269355 ], + [ 6.1548399, 46.226788 ], + [ 6.1551724, 46.2265645 ], + [ 6.1557029, 46.2260567 ], + [ 6.1560982, 46.2254926 ], + [ 6.1562172, 46.225252 ], + [ 6.1562446, 46.2251893 ], + [ 6.1563772, 46.2248036 ], + [ 6.1570791, 46.2242379 ], + [ 6.1573111, 46.2240371 ], + [ 6.1576159, 46.2237526 ], + [ 6.1582466, 46.2229807 ], + [ 6.158449, 46.2226411 ], + [ 6.1588326, 46.2214953 ], + [ 6.1588674, 46.2211177 ], + [ 6.1588771, 46.2209467 ], + [ 6.1588134, 46.2203211 ], + [ 6.1585937, 46.2197127 ], + [ 6.1585122, 46.2195605 ], + [ 6.1579272, 46.2185372 ], + [ 6.1576404, 46.2181165 ], + [ 6.1574625, 46.2179336 ], + [ 6.1573855, 46.2177097 ], + [ 6.1570528, 46.2169861 ], + [ 6.1570078, 46.216896 ], + [ 6.1570414, 46.2168484 ], + [ 6.1572898, 46.2162453 ], + [ 6.1572986, 46.2162121 ], + [ 6.1575474, 46.2152714 ], + [ 6.1577094, 46.214905 ], + [ 6.157779, 46.2146989 ], + [ 6.1578221, 46.21456 ], + [ 6.1579152, 46.213936 ], + [ 6.1579011, 46.2137976 ], + [ 6.1581905, 46.2127651 ], + [ 6.1581657, 46.212159 ], + [ 6.1579159, 46.2113583 ], + [ 6.1574877, 46.2105142 ], + [ 6.1570971, 46.2099865 ], + [ 6.1570478, 46.2099451 ], + [ 6.1570013, 46.2098402 ], + [ 6.1568802, 46.2096472 ], + [ 6.1567952, 46.2095112 ], + [ 6.1565487, 46.2090874 ], + [ 6.1561793, 46.2084697 ], + [ 6.1559786, 46.2081857 ], + [ 6.1560648, 46.2074418 ], + [ 6.1579142000000004, 46.2056976 ], + [ 6.1532963, 46.2034815 ], + [ 6.1465697, 46.2049963 ], + [ 6.1465224, 46.2049284 ], + [ 6.1461325, 46.2049256 ], + [ 6.1461245, 46.2048733 ], + [ 6.1459125, 46.2049168 ], + [ 6.1457927, 46.2049271 ], + [ 6.1455663, 46.2049146 ], + [ 6.1452334, 46.2048667 ], + [ 6.1450049, 46.2048712 ], + [ 6.1447236, 46.2048356 ], + [ 6.1444228, 46.2047763 ], + [ 6.1441973, 46.2047233 ], + [ 6.1439651, 46.2046307 ], + [ 6.1437446, 46.2045913 ], + [ 6.1435445, 46.2045602 ], + [ 6.1433081, 46.2045242 ], + [ 6.1430434, 46.2044842 ], + [ 6.1427752, 46.2044415 ], + [ 6.1425736, 46.2044015 ], + [ 6.1422674, 46.2043242 ], + [ 6.1418955, 46.204265 ], + [ 6.1416429, 46.204263 ], + [ 6.1413924, 46.2042907 ], + [ 6.1412205, 46.2043167 ], + [ 6.1411483, 46.2043042 ], + [ 6.1410845, 46.2042657 ], + [ 6.1407025, 46.2042559 ], + [ 6.1401679, 46.204229 ], + [ 6.1397129, 46.2042373 ], + [ 6.1391451, 46.2042613 ], + [ 6.1385129, 46.204245 ], + [ 6.1379129, 46.2042407 ], + [ 6.1375664, 46.2042719 ], + [ 6.1371763, 46.20428 ], + [ 6.1368268, 46.2042659 ], + [ 6.1366153, 46.2042644 ], + [ 6.1363823, 46.2042554 ], + [ 6.1362533, 46.2042323 ], + [ 6.1361949, 46.2041867 ], + [ 6.1359526, 46.2041911 ], + [ 6.1356703, 46.2041779 ], + [ 6.135419, 46.2040743 ], + [ 6.1352432, 46.2039373 ], + [ 6.1348573, 46.2036683 ], + [ 6.1344653, 46.2034695 ], + [ 6.1340528, 46.2033242 ], + [ 6.1335682, 46.2031738 ], + [ 6.1332298, 46.2030646 ], + [ 6.1328424, 46.2029603 ], + [ 6.1325361, 46.2028677 ], + [ 6.1321161, 46.2027738 ], + [ 6.13177, 46.2027266 ], + [ 6.1313315, 46.2026936 ], + [ 6.1307716, 46.202689 ], + [ 6.1302777, 46.2026923 ], + [ 6.1296941, 46.2027144 ], + [ 6.1291656, 46.2027101 ], + [ 6.1286949, 46.2026615 ], + [ 6.1281382, 46.2025894 ], + [ 6.127701, 46.2025475 ], + [ 6.1269897, 46.2024339 ], + [ 6.1264454, 46.2023844 ], + [ 6.1258564, 46.2022893 ], + [ 6.1250223, 46.2022167 ], + [ 6.1244678, 46.2020483 ], + [ 6.123755, 46.2018277 ], + [ 6.1219875, 46.2013492 ], + [ 6.1215901, 46.201116 ], + [ 6.1211898, 46.200621 ], + [ 6.1212853, 46.1985997 ], + [ 6.1211165, 46.1985599 ], + [ 6.1207142, 46.1993847 ], + [ 6.1191335, 46.1992772 ], + [ 6.1178919, 46.1998647 ], + [ 6.1152844, 46.1996229 ], + [ 6.1150187, 46.200568 ], + [ 6.1129789, 46.2003777 ], + [ 6.1126474, 46.2002064 ], + [ 6.1125861, 46.2000636 ], + [ 6.1112882, 46.2006799 ], + [ 6.1107063, 46.2005327 ], + [ 6.1112799, 46.197692 ], + [ 6.1098656, 46.1974549 ], + [ 6.1096965, 46.1973341 ], + [ 6.1091725, 46.1972353 ], + [ 6.1077183999999995, 46.196896 ], + [ 6.1073207, 46.1968815 ], + [ 6.1068512, 46.1968552 ], + [ 6.1065205, 46.1968009 ], + [ 6.106181, 46.1967079 ], + [ 6.1060046, 46.196605 ], + [ 6.1057878, 46.1964117 ], + [ 6.1056532, 46.196304 ], + [ 6.1054292, 46.1961268 ], + [ 6.1052127, 46.1958768 ], + [ 6.1049981, 46.1956943 ], + [ 6.1047264, 46.1955301 ], + [ 6.1045379, 46.1954873 ], + [ 6.104442, 46.1954377 ], + [ 6.1044919, 46.1953186 ], + [ 6.1038315, 46.1950876 ], + [ 6.1030366, 46.1946932 ], + [ 6.1028789, 46.1948316 ], + [ 6.1026154, 46.1947009 ], + [ 6.1023663, 46.1944846 ], + [ 6.1021685, 46.194269 ], + [ 6.1020003, 46.1940421 ], + [ 6.101869, 46.1937519 ], + [ 6.1017752, 46.1935663 ], + [ 6.1016543, 46.1934075 ], + [ 6.1015266, 46.1932871 ], + [ 6.1013821, 46.1932134 ], + [ 6.1012942, 46.1932465 ], + [ 6.1011554, 46.1932117 ], + [ 6.1011573, 46.193137 ], + [ 6.1012064, 46.193036 ], + [ 6.1011045, 46.1929637 ], + [ 6.1008204, 46.1928749 ], + [ 6.1006372, 46.1927836 ], + [ 6.1005081, 46.1927146 ], + [ 6.1003697, 46.1926463 ], + [ 6.1002421, 46.1925207 ], + [ 6.1002286, 46.1923747 ], + [ 6.1002259, 46.1921715 ], + [ 6.1002681, 46.1919911 ], + [ 6.1002378, 46.1918064 ], + [ 6.1001121, 46.1916474 ], + [ 6.0999619, 46.1914809 ], + [ 6.0998723, 46.1913909 ], + [ 6.0996802, 46.1912986 ], + [ 6.0994469, 46.1912356 ], + [ 6.0991803, 46.1910759 ], + [ 6.0991437, 46.1909855 ], + [ 6.0991505, 46.1909064 ], + [ 6.0988777, 46.1907916 ], + [ 6.0982477, 46.1906447 ], + [ 6.0980613, 46.190153 ], + [ 6.098211, 46.1899289 ], + [ 6.0983696, 46.189732 ], + [ 6.0984363, 46.1896086 ], + [ 6.0985055, 46.189379 ], + [ 6.0985152, 46.189147 ], + [ 6.0985198, 46.1888942 ], + [ 6.0985661, 46.1886572 ], + [ 6.0985847, 46.1884775 ], + [ 6.0986767, 46.1882123 ], + [ 6.0987546, 46.1880386 ], + [ 6.0989534, 46.1878079 ], + [ 6.099134, 46.1876246 ], + [ 6.0992407, 46.1875018 ], + [ 6.0994305, 46.1873681 ], + [ 6.0990792, 46.1874324 ], + [ 6.0987475, 46.187486 ], + [ 6.0984633, 46.1874547 ], + [ 6.098221, 46.1874141 ], + [ 6.0979137, 46.1873151 ], + [ 6.0976395, 46.1872408 ], + [ 6.0974396, 46.1871529 ], + [ 6.0973117, 46.1870839 ], + [ 6.0970051, 46.1870101 ], + [ 6.0961818, 46.1886829 ], + [ 6.0943255, 46.1881939 ], + [ 6.0945157, 46.1878848 ], + [ 6.0938155, 46.18771 ], + [ 6.0936074, 46.1879451 ], + [ 6.0935493, 46.1880974 ], + [ 6.0934813, 46.1882819 ], + [ 6.0933485, 46.1884612 ], + [ 6.0932322, 46.1886631 ], + [ 6.0931305, 46.1888949 ], + [ 6.093053, 46.1891018 ], + [ 6.0929611, 46.1893598 ], + [ 6.0928268, 46.1896075 ], + [ 6.0927501, 46.1897756 ], + [ 6.0926824, 46.189944 ], + [ 6.0926819, 46.1899665 ], + [ 6.0928533, 46.1903699 ], + [ 6.0927531, 46.1905377 ], + [ 6.0925582, 46.1905633 ], + [ 6.0922747, 46.1906175 ], + [ 6.0919389, 46.1907232 ], + [ 6.0916719, 46.1908451 ], + [ 6.0912372, 46.1910216 ], + [ 6.0908608, 46.1912141 ], + [ 6.0905107, 46.1914331 ], + [ 6.0900149, 46.190989 ], + [ 6.0897613, 46.191093 ], + [ 6.0895735, 46.1911879 ], + [ 6.089449, 46.1912925 ], + [ 6.089398, 46.1914278 ], + [ 6.0893949, 46.1916491 ], + [ 6.0894183, 46.1917502 ], + [ 6.0892393, 46.1918208 ], + [ 6.0890498, 46.1918869 ], + [ 6.088807, 46.1918966 ], + [ 6.0884594, 46.1918709 ], + [ 6.0881917, 46.1917966 ], + [ 6.087887, 46.1916365 ], + [ 6.0876304, 46.1914921 ], + [ 6.0874049, 46.1913887 ], + [ 6.0872106, 46.1913422 ], + [ 6.0869686, 46.1912727 ], + [ 6.0867227, 46.1911123 ], + [ 6.0865955, 46.1909084 ], + [ 6.0864377, 46.1906888 ], + [ 6.0862842, 46.1905628 ], + [ 6.086139, 46.1905053 ], + [ 6.0858415, 46.1904396 ], + [ 6.0856811, 46.1903775 ], + [ 6.0855049, 46.1902179 ], + [ 6.0853945, 46.1900141 ], + [ 6.0852732, 46.1898938 ], + [ 6.0850578, 46.1898131 ], + [ 6.0848547, 46.1897395 ], + [ 6.0847842, 46.189709 ], + [ 6.0848345, 46.189563 ], + [ 6.0848548, 46.1893833 ], + [ 6.0847608, 46.189186 ], + [ 6.0846552, 46.1890723 ], + [ 6.0844235, 46.1889462 ], + [ 6.0843017, 46.1888935 ], + [ 6.084108, 46.1888246 ], + [ 6.0839922, 46.1889995 ], + [ 6.0838588, 46.1892057 ], + [ 6.0837355, 46.1894255 ], + [ 6.0837065, 46.1895989 ], + [ 6.0837816, 46.1899155 ], + [ 6.0839202, 46.190385 ], + [ 6.0840203, 46.1907408 ], + [ 6.0841111, 46.1911583 ], + [ 6.0842152, 46.1916625 ], + [ 6.084275, 46.1920051 ], + [ 6.0843452, 46.1926825 ], + [ 6.084351, 46.1932305 ], + [ 6.084409, 46.1940318 ], + [ 6.0844948, 46.1946797 ], + [ 6.0845689, 46.1951538 ], + [ 6.0846729, 46.1956615 ], + [ 6.0849716, 46.1962013 ], + [ 6.0864538, 46.1987049 ], + [ 6.0868367, 46.1986788 ], + [ 6.0873127, 46.1987169 ], + [ 6.0875169, 46.1987258 ], + [ 6.0876301999999995, 46.1987648 ], + [ 6.0876989, 46.1988619 ], + [ 6.0876902, 46.1990022 ], + [ 6.0876603, 46.1992726 ], + [ 6.0876224, 46.199543 ], + [ 6.0875692, 46.1998087 ], + [ 6.0875325, 46.200079 ], + [ 6.0874907, 46.2002405 ], + [ 6.0875041, 46.2003827 ], + [ 6.0874184, 46.2006525 ], + [ 6.0872429, 46.2008699 ], + [ 6.0869648, 46.2010143 ], + [ 6.0867192, 46.201148 ], + [ 6.0865723, 46.2012092 ], + [ 6.0863882, 46.2012196 ], + [ 6.0862494, 46.2011208 ], + [ 6.086188, 46.2009356 ], + [ 6.0860464, 46.2006909 ], + [ 6.0858486, 46.2004708 ], + [ 6.0821778, 46.1984033 ], + [ 6.0803572, 46.198305 ], + [ 6.0799581, 46.198301 ], + [ 6.079496, 46.198388 ], + [ 6.0790645, 46.198445 ], + [ 6.0787979, 46.1984831 ], + [ 6.0781791, 46.1986179 ], + [ 6.0777477, 46.1986099 ], + [ 6.0775784, 46.1986466 ], + [ 6.077402, 46.1987513 ], + [ 6.077268, 46.1988308 ], + [ 6.0769873, 46.1990586 ], + [ 6.0766504, 46.199266 ], + [ 6.0763135, 46.1995714 ], + [ 6.0760719, 46.1999031 ], + [ 6.0758469999999996, 46.2003008 ], + [ 6.0753216, 46.2001119 ], + [ 6.0753917, 46.1998572 ], + [ 6.0747108, 46.1994792 ], + [ 6.0749523, 46.1989918 ], + [ 6.0741123, 46.1988043 ], + [ 6.0752078, 46.1978891 ], + [ 6.0757248, 46.1974248 ], + [ 6.0755977, 46.1972767 ], + [ 6.0745093, 46.1964511 ], + [ 6.0736445, 46.1958055 ], + [ 6.0732039, 46.1955949 ], + [ 6.0727059, 46.1953533 ], + [ 6.0722235, 46.1951171 ], + [ 6.0698009, 46.1940251 ], + [ 6.0709224, 46.1924903 ], + [ 6.07109, 46.1925707 ], + [ 6.0713279, 46.1924827 ], + [ 6.0715145, 46.1924346 ], + [ 6.0717574, 46.1924024 ], + [ 6.071904, 46.192352 ], + [ 6.072079, 46.1922363 ], + [ 6.0721353, 46.1921236 ], + [ 6.071514, 46.1914692 ], + [ 6.0721058, 46.1910229 ], + [ 6.0726296, 46.1913163 ], + [ 6.0728986, 46.190759 ], + [ 6.0722956, 46.1903774 ], + [ 6.0721951, 46.1905121 ], + [ 6.0720576, 46.1906166 ], + [ 6.0718859, 46.1905884 ], + [ 6.0717851, 46.1904747 ], + [ 6.0717894, 46.190204 ], + [ 6.0718578, 46.1899457 ], + [ 6.0719258, 46.1898152 ], + [ 6.0720268, 46.1896193 ], + [ 6.0721578, 46.189513 ], + [ 6.0724178, 46.1894765 ], + [ 6.0728655, 46.1892822 ], + [ 6.0684635, 46.1869779 ], + [ 6.0657171, 46.1878973 ], + [ 6.0654598, 46.1877826 ], + [ 6.0652594, 46.1876227 ], + [ 6.0650279, 46.1874903 ], + [ 6.0647227, 46.1873256 ], + [ 6.0644314, 46.18726 ], + [ 6.0641736, 46.1872082 ], + [ 6.0638535, 46.1869614 ], + [ 6.0637167, 46.1867871 ], + [ 6.063503, 46.1866386 ], + [ 6.0632613, 46.1865125 ], + [ 6.0628591, 46.1863284 ], + [ 6.0624779, 46.1862465 ], + [ 6.0621068, 46.1861636 ], + [ 6.0617675, 46.1861163 ], + [ 6.0614108, 46.1860723 ], + [ 6.0611935, 46.1860706 ], + [ 6.0608604, 46.1860674 ], + [ 6.0605189, 46.18611 ], + [ 6.0601054, 46.1862146 ], + [ 6.0598284, 46.1863138 ], + [ 6.059387, 46.1865126 ], + [ 6.0590826, 46.1867014 ], + [ 6.0586835, 46.1869286 ], + [ 6.058387, 46.1871741 ], + [ 6.0581559, 46.1873971 ], + [ 6.0579569, 46.1876277 ], + [ 6.057765, 46.1879015 ], + [ 6.0575912, 46.1881594 ], + [ 6.0574758, 46.1883225 ], + [ 6.0579965, 46.1885233 ], + [ 6.0582185, 46.1884081 ], + [ 6.0591649, 46.1889848 ], + [ 6.0588741, 46.1893726 ], + [ 6.0588535, 46.189564 ], + [ 6.0585522, 46.1897465 ], + [ 6.05867, 46.1899045 ], + [ 6.0587413, 46.1900637 ], + [ 6.0587285, 46.1902615 ], + [ 6.058687, 46.190367 ], + [ 6.0572575, 46.1914598 ], + [ 6.0554343, 46.1913313 ], + [ 6.0551303, 46.1911711 ], + [ 6.0548277, 46.1913554 ], + [ 6.0544275, 46.1914423 ], + [ 6.0539576, 46.1914383 ], + [ 6.0534663, 46.1914008 ], + [ 6.0531959, 46.1914317 ], + [ 6.0528645, 46.1914744 ], + [ 6.0524656, 46.1915316 ], + [ 6.0522048999999996, 46.1915922 ], + [ 6.0519694, 46.1916856 ], + [ 6.0516667, 46.1917575 ], + [ 6.0512694, 46.1918435 ], + [ 6.0510249, 46.1918872 ], + [ 6.0507824, 46.1918852 ], + [ 6.050529, 46.1919162 ], + [ 6.0500425, 46.1919013 ], + [ 6.0497777, 46.1918692 ], + [ 6.0495406, 46.1918672 ], + [ 6.0492908, 46.1918605 ], + [ 6.049233, 46.191849 ], + [ 6.0491767, 46.1919095 ], + [ 6.0489522, 46.1921397 ], + [ 6.0487061, 46.1922771 ], + [ 6.0485114, 46.1923385 ], + [ 6.0479838, 46.1924517 ], + [ 6.0475929, 46.1925386 ], + [ 6.0473715, 46.1925818 ], + [ 6.0470402, 46.1926191 ], + [ 6.0466499, 46.1926835 ], + [ 6.0463413, 46.1927481 ], + [ 6.045998, 46.1928401 ], + [ 6.0455913, 46.1929448 ], + [ 6.0452819, 46.1930436 ], + [ 6.0451027, 46.1930981 ], + [ 6.044734, 46.1932348 ], + [ 6.0444174, 46.1933451 ], + [ 6.0441625, 46.1934329 ], + [ 6.0440955, 46.1935184 ], + [ 6.0440772, 46.1936306 ], + [ 6.0441074, 46.1937596 ], + [ 6.0414338, 46.1946046 ], + [ 6.0413239, 46.1943892 ], + [ 6.041155, 46.1944059 ], + [ 6.0408465, 46.1944705 ], + [ 6.0405363, 46.194536 ], + [ 6.0403747, 46.1945231 ], + [ 6.0402358, 46.1945377 ], + [ 6.0400671, 46.1945472 ], + [ 6.0399205, 46.1945525 ], + [ 6.0396834, 46.1945398 ], + [ 6.037133, 46.1962923 ], + [ 6.0346489, 46.1974201 ], + [ 6.0332016, 46.196704 ], + [ 6.032389, 46.1971752 ], + [ 6.0315091, 46.1965876 ], + [ 6.0313163, 46.1964619 ], + [ 6.0311847, 46.1961948 ], + [ 6.0311471, 46.1958966 ], + [ 6.0311165, 46.1954796 ], + [ 6.0310864, 46.1947801 ], + [ 6.0312059, 46.1935742 ], + [ 6.031783, 46.19355 ], + [ 6.0320337, 46.1935143 ], + [ 6.032376, 46.1934089 ], + [ 6.0327017, 46.1932941 ], + [ 6.032963, 46.1932065 ], + [ 6.0332665, 46.1931347 ], + [ 6.0334021, 46.1931085 ], + [ 6.0334165, 46.1928433 ], + [ 6.0334543, 46.1925387 ], + [ 6.0334498, 46.1923083 ], + [ 6.0334458, 46.1921167 ], + [ 6.033359, 46.1919131 ], + [ 6.0333618, 46.1917441 ], + [ 6.0334384, 46.1916478 ], + [ 6.0336175, 46.1915772 ], + [ 6.0338686, 46.191494 ], + [ 6.0340166, 46.1914229 ], + [ 6.0341893, 46.1913684 ], + [ 6.0344547, 46.1913754 ], + [ 6.0346591, 46.1913769 ], + [ 6.0348772, 46.1913626 ], + [ 6.0350393, 46.1913124 ], + [ 6.0352038, 46.1912118 ], + [ 6.0354098, 46.1911083 ], + [ 6.0356766, 46.1910585 ], + [ 6.0358828, 46.1909432 ], + [ 6.0361191, 46.1907761 ], + [ 6.0363104, 46.1906426 ], + [ 6.0363989, 46.190524 ], + [ 6.0362966, 46.1904733 ], + [ 6.0362166, 46.1904156 ], + [ 6.0361594, 46.1903753 ], + [ 6.0361059, 46.1902847 ], + [ 6.0364052, 46.1901858 ], + [ 6.0367626, 46.1901435 ], + [ 6.0369839, 46.1901004 ], + [ 6.0371541, 46.1900296 ], + [ 6.0371987, 46.189906 ], + [ 6.0372499, 46.189787 ], + [ 6.0374621, 46.189642 ], + [ 6.0377081, 46.1894931 ], + [ 6.0379536, 46.1893755 ], + [ 6.038232, 46.1892206 ], + [ 6.038446, 46.1890758 ], + [ 6.0386006, 46.1889481 ], + [ 6.0387658, 46.1887738 ], + [ 6.0389414, 46.1885457 ], + [ 6.0390579, 46.1883438 ], + [ 6.0391329, 46.1881981 ], + [ 6.039281, 46.1880299 ], + [ 6.0394886, 46.1878786 ], + [ 6.0396748, 46.1877855 ], + [ 6.0399941, 46.1877094 ], + [ 6.0403841, 46.1876558 ], + [ 6.0407468, 46.1877089 ], + [ 6.0409652, 46.1877781 ], + [ 6.0413838, 46.1879399 ], + [ 6.0416753, 46.1879832 ], + [ 6.0419898, 46.1879907 ], + [ 6.0423236, 46.187966 ], + [ 6.0426484, 46.1879285 ], + [ 6.042174, 46.1858156 ], + [ 6.041853, 46.185305 ], + [ 6.0415689, 46.1848635 ], + [ 6.0423575, 46.1843289 ], + [ 6.0421165, 46.1841756 ], + [ 6.0418759, 46.1840044 ], + [ 6.0416909, 46.1838492 ], + [ 6.0414834, 46.1836558 ], + [ 6.0413717, 46.18356 ], + [ 6.0413082, 46.1834584 ], + [ 6.0413593, 46.1833458 ], + [ 6.0408625, 46.1830192 ], + [ 6.0401515, 46.1825506 ], + [ 6.0394485, 46.181976 ], + [ 6.0388486, 46.1814224 ], + [ 6.0381298, 46.1808187 ], + [ 6.0375496, 46.1802565 ], + [ 6.0367105, 46.1794983 ], + [ 6.0356976, 46.1786391 ], + [ 6.035034, 46.1780469 ], + [ 6.0345336, 46.1776142 ], + [ 6.0339297, 46.1772702 ], + [ 6.0333837, 46.1769998 ], + [ 6.0333604, 46.1769941 ], + [ 6.0326188, 46.1768238 ], + [ 6.027455, 46.1755781 ], + [ 6.0272144, 46.1755651 ], + [ 6.0266016, 46.1763195 ], + [ 6.0263393, 46.1766005 ], + [ 6.026143, 46.1767718 ], + [ 6.0259607, 46.1767164 ], + [ 6.0258019, 46.1766451 ], + [ 6.0256429, 46.1765802 ], + [ 6.0255993, 46.1764662 ], + [ 6.0256437, 46.1763435 ], + [ 6.0257085, 46.1762021 ], + [ 6.0256988, 46.1760779 ], + [ 6.0256682, 46.1760101 ], + [ 6.025415, 46.17588 ], + [ 6.0252786, 46.1757983 ], + [ 6.0252127, 46.1756904 ], + [ 6.0251109, 46.1755757 ], + [ 6.025016, 46.1755331 ], + [ 6.0248697, 46.1755249 ], + [ 6.0247726, 46.1755229 ], + [ 6.0247054, 46.1755706 ], + [ 6.0245839, 46.1756203 ], + [ 6.0244194, 46.1756615 ], + [ 6.0243266, 46.1756936 ], + [ 6.0243022, 46.1757427 ], + [ 6.0241787, 46.1757629 ], + [ 6.0240795, 46.1757823 ], + [ 6.0239593, 46.1757754 ], + [ 6.023872, 46.1756987 ], + [ 6.0238534, 46.1756156 ], + [ 6.0238839, 46.1754398 ], + [ 6.0238802, 46.1753839 ], + [ 6.0237897, 46.1753764 ], + [ 6.0236981, 46.1754581 ], + [ 6.0236372, 46.1755132 ], + [ 6.0234748, 46.1755327 ], + [ 6.023408, 46.1755606 ], + [ 6.0233751, 46.1755818 ], + [ 6.0234047, 46.1756434 ], + [ 6.0234753, 46.1757127 ], + [ 6.0235462, 46.1757261 ], + [ 6.0237003, 46.1757749 ], + [ 6.0238411, 46.1758909 ], + [ 6.0238776, 46.1759318 ], + [ 6.0237883, 46.1759747 ], + [ 6.0236243, 46.1760096 ], + [ 6.0235148, 46.1760747 ], + [ 6.0233823, 46.1761469 ], + [ 6.0230748, 46.1761287 ], + [ 6.0229222, 46.1761142 ], + [ 6.0225749, 46.1764265 ], + [ 6.022384, 46.1765465 ], + [ 6.0222394, 46.1765168 ], + [ 6.0221674, 46.1764511 ], + [ 6.0220662, 46.1764111 ], + [ 6.0219093, 46.176419 ], + [ 6.0217498, 46.1763747 ], + [ 6.0212832, 46.1761386 ], + [ 6.0209455, 46.1760173 ], + [ 6.0190051, 46.1753387 ], + [ 6.0177263, 46.1752101 ], + [ 6.0172304, 46.1750167 ], + [ 6.0168547, 46.1747087 ], + [ 6.0163662, 46.1743769 ], + [ 6.015647, 46.1739485 ], + [ 6.0148491, 46.1735083 ], + [ 6.0143686, 46.1731523 ], + [ 6.0141654, 46.1729986 ], + [ 6.0149013, 46.1726975 ], + [ 6.0153319, 46.1725149 ], + [ 6.0156529, 46.172375 ], + [ 6.016015, 46.1722077 ], + [ 6.016349, 46.1720617 ], + [ 6.0166152, 46.1718356 ], + [ 6.0169009, 46.1715585 ], + [ 6.0172502, 46.171275 ], + [ 6.0175177, 46.1710427 ], + [ 6.0178443, 46.1706869 ], + [ 6.0181831, 46.1702638 ], + [ 6.0185951, 46.1698597 ], + [ 6.0188691, 46.1696266 ], + [ 6.0191827, 46.1692706 ], + [ 6.0193912, 46.1688791 ], + [ 6.0195204, 46.1685812 ], + [ 6.0197749, 46.1682578 ], + [ 6.0199451, 46.1679973 ], + [ 6.0201208, 46.167609 ], + [ 6.0202141, 46.1672611 ], + [ 6.0203744, 46.1668187 ], + [ 6.0204917, 46.1664935 ], + [ 6.0204973, 46.1663245 ], + [ 6.020461, 46.166181 ], + [ 6.0204275, 46.1660222 ], + [ 6.0204225, 46.1658755 ], + [ 6.0204213, 46.165718 ], + [ 6.0204436, 46.165515 ], + [ 6.0204485, 46.1653747 ], + [ 6.0203869, 46.1652992 ], + [ 6.0202646, 46.1652707 ], + [ 6.0200731, 46.1651657 ], + [ 6.0199069, 46.1650835 ], + [ 6.0196743, 46.1649717 ], + [ 6.0194494, 46.1649068 ], + [ 6.0191747, 46.1648575 ], + [ 6.0190771, 46.1648778 ], + [ 6.0192236, 46.1651676 ], + [ 6.0192854, 46.1654239 ], + [ 6.0192928, 46.165639 ], + [ 6.0193404, 46.165798 ], + [ 6.0192977, 46.1658992 ], + [ 6.0191128, 46.1660344 ], + [ 6.0189643, 46.1662233 ], + [ 6.0188758, 46.1663904 ], + [ 6.018919, 46.166516 ], + [ 6.0188137, 46.1666892 ], + [ 6.0186572, 46.166923 ], + [ 6.0185691, 46.1670721 ], + [ 6.0185626, 46.1672259 ], + [ 6.0185025, 46.1673412 ], + [ 6.0184146, 46.1674868 ], + [ 6.0182591, 46.1676926 ], + [ 6.0181295, 46.16804 ], + [ 6.0180822, 46.1681743 ], + [ 6.0180126, 46.1682518 ], + [ 6.0179083, 46.1682766 ], + [ 6.0174511, 46.1681377 ], + [ 6.0172987, 46.1682698 ], + [ 6.0176116, 46.1683943 ], + [ 6.017093, 46.1688636 ], + [ 6.0168449, 46.1691898 ], + [ 6.0163601, 46.1695014 ], + [ 6.0158394, 46.169698 ], + [ 6.0152401, 46.1698947 ], + [ 6.0143844, 46.1701799 ], + [ 6.0136981, 46.170424 ], + [ 6.0132301, 46.1705882 ], + [ 6.0127334, 46.1708095 ], + [ 6.0123564, 46.1710153 ], + [ 6.012073, 46.1712051 ], + [ 6.0116212, 46.1709988 ], + [ 6.0110069, 46.1714597 ], + [ 6.010784, 46.1717187 ], + [ 6.0109982, 46.171994 ], + [ 6.0106823, 46.1725244 ], + [ 6.010202, 46.1733083 ], + [ 6.010077, 46.1735829 ], + [ 6.00991, 46.1740244 ], + [ 6.009741, 46.1745459 ], + [ 6.010429, 46.1748883 ], + [ 6.0103611, 46.1749594 ], + [ 6.0102958, 46.1750315 ], + [ 6.010201, 46.1751382 ], + [ 6.0100626, 46.175231 ], + [ 6.0098977, 46.1752846 ], + [ 6.0097253, 46.1752996 ], + [ 6.0094134, 46.1752317 ], + [ 6.0090755, 46.1751358 ], + [ 6.0085034, 46.1749746 ], + [ 6.008023, 46.1748201 ], + [ 6.0077172, 46.1747181 ], + [ 6.0073338, 46.1745873 ], + [ 6.0069889, 46.1744983 ], + [ 6.0067063, 46.1744075 ], + [ 6.0064457, 46.1742682 ], + [ 6.0062124, 46.1741393 ], + [ 6.0059512, 46.1740181 ], + [ 6.0056192, 46.1739339 ], + [ 6.005387, 46.1738959 ], + [ 6.005167, 46.1738922 ], + [ 6.0049082, 46.1738808 ], + [ 6.004699, 46.1739096 ], + [ 6.004543, 46.1739318 ], + [ 6.0042804, 46.1740239 ], + [ 6.0042461, 46.1740469 ], + [ 6.0041472, 46.1741121 ], + [ 6.0039724, 46.1742044 ], + [ 6.0038884, 46.1742933 ], + [ 6.003801, 46.1744721 ], + [ 6.0037565, 46.1746299 ], + [ 6.0036107, 46.1748144 ], + [ 6.0035256, 46.1749419 ], + [ 6.0034498, 46.1750714 ], + [ 6.0032552, 46.1750843 ], + [ 6.0030595, 46.1750871 ], + [ 6.002987, 46.175034 ], + [ 6.0028528, 46.1749648 ], + [ 6.0026121, 46.174915 ], + [ 6.0023522, 46.1749 ], + [ 6.002061, 46.17489 ], + [ 6.001989, 46.1748099 ], + [ 6.0018613, 46.1747444 ], + [ 6.0016115, 46.1747476 ], + [ 6.001391, 46.1747592 ], + [ 6.0011614, 46.1748119 ], + [ 6.0009882, 46.1749447 ], + [ 6.0007643, 46.1750427 ], + [ 6.00048, 46.1751119 ], + [ 6.0000455, 46.1751955 ], + [ 5.9996633, 46.175295 ], + [ 5.999221, 46.1754116 ], + [ 5.9988463, 46.1754851 ], + [ 5.9985832, 46.1755772 ], + [ 5.9983862, 46.1756349 ], + [ 5.9980428, 46.1757493 ], + [ 5.9978774, 46.1758183 ], + [ 5.9975562, 46.1759212 ], + [ 5.9974269, 46.1759124 ], + [ 5.9971418, 46.1759646 ], + [ 5.9967903, 46.176033 ], + [ 5.9965216, 46.1761078 ], + [ 5.9961838, 46.1761917 ], + [ 5.9957922, 46.1762649 ], + [ 5.9953953, 46.176285 ], + [ 5.9951674, 46.1763334 ], + [ 5.9949705, 46.1763903 ], + [ 5.9946922, 46.1764767 ], + [ 5.9943649, 46.1765571 ], + [ 5.9939800000000005, 46.1766223 ], + [ 5.9936796999999995, 46.1766626 ], + [ 5.9934425000000005, 46.1766658 ], + [ 5.9931364, 46.1766422 ], + [ 5.9928784, 46.1766037 ], + [ 5.9925889, 46.1765316 ], + [ 5.9923099, 46.1763985 ], + [ 5.9920765, 46.1763154 ], + [ 5.9918683, 46.1762488 ], + [ 5.9917566, 46.1761673 ], + [ 5.9916632, 46.1760761 ], + [ 5.9916004, 46.1760024 ], + [ 5.9914438, 46.1758466 ], + [ 5.9913355, 46.1756859 ], + [ 5.9912225, 46.1754928 ], + [ 5.9911319, 46.1753063 ], + [ 5.9910305, 46.175117 ], + [ 5.9909977, 46.1749357 ], + [ 5.9909721, 46.1747392 ], + [ 5.9909514, 46.1745914 ], + [ 5.9909823, 46.1744497 ], + [ 5.9910182, 46.1743152 ], + [ 5.9910101000000004, 46.1740847 ], + [ 5.9910277, 46.1737574 ], + [ 5.9910975, 46.1734316 ], + [ 5.9911766, 46.1730306 ], + [ 5.9912858, 46.1726829 ], + [ 5.9913621, 46.1723411 ], + [ 5.9914452, 46.1719814 ], + [ 5.9914543, 46.1717035 ], + [ 5.991423, 46.1715115 ], + [ 5.9914305, 46.171274 ], + [ 5.9913720999999995, 46.1710771 ], + [ 5.991288, 46.1708952 ], + [ 5.991198, 46.1706682 ], + [ 5.9911249, 46.1704523 ], + [ 5.9910678, 46.1702077 ], + [ 5.9909722, 46.1699573 ], + [ 5.9908842, 46.1697033 ], + [ 5.9907496, 46.1695586 ], + [ 5.9905684, 46.1694655 ], + [ 5.9903508, 46.1693708 ], + [ 5.9901578, 46.1693233 ], + [ 5.9899408, 46.1692918 ], + [ 5.989754, 46.1692552 ], + [ 5.9895618, 46.1691771 ], + [ 5.9894452, 46.169092 ], + [ 5.9893348, 46.1689998 ], + [ 5.9892419, 46.1688851 ], + [ 5.9891655, 46.168742 ], + [ 5.9890967, 46.1685603 ], + [ 5.9889411, 46.168372 ], + [ 5.9887683, 46.168189 ], + [ 5.9885625000000005, 46.1680433 ], + [ 5.988381, 46.1679609 ], + [ 5.9881954, 46.1678793 ], + [ 5.9879544, 46.167825 ], + [ 5.9876737, 46.1677754 ], + [ 5.987471, 46.1677423 ], + [ 5.9872544, 46.1677161 ], + [ 5.987002, 46.1677119 ], + [ 5.9866913, 46.1677593 ], + [ 5.9864784, 46.1678167 ], + [ 5.9863292, 46.1679337 ], + [ 5.9860912, 46.1680583 ], + [ 5.9859472, 46.1681753 ], + [ 5.9858381, 46.168325 ], + [ 5.9857279, 46.168436 ], + [ 5.9855595, 46.1686318 ], + [ 5.985356, 46.1688766 ], + [ 5.9851949, 46.1691337 ], + [ 5.9850804, 46.1693616 ], + [ 5.9849683, 46.1695743 ], + [ 5.9848652, 46.1697493 ], + [ 5.9848425, 46.1699632 ], + [ 5.9847791, 46.1701135 ], + [ 5.984733, 46.1702928 ], + [ 5.9847015, 46.1704571 ], + [ 5.984665, 46.170615 ], + [ 5.9846031, 46.1707941 ], + [ 5.9845202, 46.1710343 ], + [ 5.9844723, 46.1712819 ], + [ 5.9844252000000004, 46.1714396 ], + [ 5.9844041, 46.1715923 ], + [ 5.984360000000001, 46.171743 ], + [ 5.9843285, 46.1719116 ], + [ 5.9842354, 46.1720454 ], + [ 5.9841565, 46.1721973 ], + [ 5.984102, 46.1723433 ], + [ 5.9840746, 46.1724897 ], + [ 5.9840758, 46.1726416 ], + [ 5.9839419, 46.172567 ], + [ 5.9838804, 46.1724862 ], + [ 5.9837859, 46.1723879 ], + [ 5.9837004, 46.17224 ], + [ 5.9836992, 46.1721042 ], + [ 5.9836773999999995, 46.1719527 ], + [ 5.9837119, 46.1717211 ], + [ 5.9837727, 46.1715366 ], + [ 5.9838219, 46.1713275 ], + [ 5.9838637, 46.1710798 ], + [ 5.9838939, 46.1708768 ], + [ 5.9838264, 46.1707355 ], + [ 5.9838605, 46.170673 ], + [ 5.9837847, 46.170537 ], + [ 5.9836092, 46.1704278 ], + [ 5.9834368, 46.1702941 ], + [ 5.9832312, 46.1701277 ], + [ 5.9830637, 46.170005 ], + [ 5.9828659, 46.1698955 ], + [ 5.982731, 46.1697471 ], + [ 5.9826318, 46.1696441 ], + [ 5.9826037, 46.1694853 ], + [ 5.9826138, 46.1693947 ], + [ 5.9826038, 46.1692416 ], + [ 5.9825363, 46.1691004 ], + [ 5.9824827, 46.1689683 ], + [ 5.982373, 46.168849 ], + [ 5.982232, 46.1687042 ], + [ 5.9821311999999995, 46.1685967 ], + [ 5.9821453, 46.1684052 ], + [ 5.9821748, 46.1682697 ], + [ 5.9821544, 46.1681228 ], + [ 5.9820746, 46.1679005 ], + [ 5.9820551, 46.1677193 ], + [ 5.9819942, 46.1675782 ], + [ 5.9819984999999996, 46.1674658 ], + [ 5.9821104, 46.1673475 ], + [ 5.9820072, 46.1672328 ], + [ 5.9819568, 46.1670855 ], + [ 5.9818315, 46.1669319 ], + [ 5.9817203, 46.1668674 ], + [ 5.9815835, 46.1668037 ], + [ 5.9814336, 46.1667495 ], + [ 5.9813451, 46.1666754 ], + [ 5.9812986, 46.1666119 ], + [ 5.9812626, 46.1665052 ], + [ 5.9812113, 46.1662895 ], + [ 5.981148, 46.1660521 ], + [ 5.9810671, 46.1657793 ], + [ 5.9809602, 46.1655746 ], + [ 5.9808709, 46.16537 ], + [ 5.9807572, 46.1651761 ], + [ 5.9805861, 46.164974 ], + [ 5.9804934, 46.1648101 ], + [ 5.9803225, 46.1646197 ], + [ 5.9801671, 46.1644252 ], + [ 5.9799625, 46.1642372 ], + [ 5.9797421, 46.1640526 ], + [ 5.9795123, 46.1638382 ], + [ 5.9793035, 46.1636159 ], + [ 5.978994, 46.1633285 ], + [ 5.9788626, 46.1632026 ], + [ 5.9786344, 46.1629775 ], + [ 5.9784591, 46.1626918 ], + [ 5.9782755, 46.1625372 ], + [ 5.9779962, 46.1621944 ], + [ 5.9779143, 46.1620053 ], + [ 5.977945, 46.1617799 ], + [ 5.9777971, 46.1616538 ], + [ 5.9777202, 46.1615169 ], + [ 5.9776524, 46.161346 ], + [ 5.9777235, 46.1609754 ], + [ 5.9776991, 46.1607213 ], + [ 5.9774997, 46.1605721 ], + [ 5.9773043, 46.1604328 ], + [ 5.9770988, 46.1602646 ], + [ 5.9768331, 46.1599894 ], + [ 5.9768849, 46.1599001 ], + [ 5.9772197, 46.1597695 ], + [ 5.9771723, 46.1597464 ], + [ 5.9770893, 46.1596094 ], + [ 5.977011, 46.1595409 ], + [ 5.9768096, 46.1594196 ], + [ 5.9767097, 46.1593273 ], + [ 5.976607, 46.1592064 ], + [ 5.9765415, 46.1590364 ], + [ 5.9764971, 46.1589107 ], + [ 5.976671, 46.158751 ], + [ 5.9767393, 46.1586619 ], + [ 5.9768183, 46.1585217 ], + [ 5.9769387, 46.15832 ], + [ 5.9767453, 46.1582895 ], + [ 5.976574, 46.1582648 ], + [ 5.9762881, 46.1581064 ], + [ 5.9762563, 46.1578909 ], + [ 5.9760362, 46.1576955 ], + [ 5.9757522, 46.1574831 ], + [ 5.9755219, 46.1575628 ], + [ 5.9753986, 46.1573976 ], + [ 5.9752104, 46.1571738 ], + [ 5.9750077, 46.1569443 ], + [ 5.9751807, 46.1568341 ], + [ 5.9751758, 46.156773 ], + [ 5.9750273, 46.1565605 ], + [ 5.9748537, 46.1564115 ], + [ 5.9746483, 46.1562569 ], + [ 5.9740953999999995, 46.1558294 ], + [ 5.9739259, 46.1555897 ], + [ 5.973734, 46.1553083 ], + [ 5.9734764, 46.1549766 ], + [ 5.9732427, 46.1547019 ], + [ 5.9730405, 46.1544681 ], + [ 5.9727236999999995, 46.1542641 ], + [ 5.9725283, 46.1540691 ], + [ 5.9726377, 46.1539085 ], + [ 5.9725781, 46.1537648 ], + [ 5.9724833, 46.1536799 ], + [ 5.9723574, 46.1535919 ], + [ 5.9722173, 46.1534163 ], + [ 5.9721214, 46.1531776 ], + [ 5.9719762, 46.1528923 ], + [ 5.9717847, 46.1527927 ], + [ 5.9716795, 46.1528534 ], + [ 5.9715866, 46.1528908 ], + [ 5.9714493, 46.1529404 ], + [ 5.9712519, 46.1530161 ], + [ 5.9710922, 46.1529383 ], + [ 5.9709525, 46.1527963 ], + [ 5.9707545, 46.1525894 ], + [ 5.9705335, 46.1522518 ], + [ 5.9703489, 46.1521361 ], + [ 5.9701909, 46.1519928 ], + [ 5.970047, 46.151747 ], + [ 5.9698844, 46.1514913 ], + [ 5.9697139, 46.1512443 ], + [ 5.9697004, 46.1509805 ], + [ 5.9695764, 46.1508206 ], + [ 5.9693582, 46.1507529 ], + [ 5.9691817, 46.150712 ], + [ 5.9690481, 46.1506238 ], + [ 5.9689132, 46.150497 ], + [ 5.9687537, 46.1504113 ], + [ 5.9685011, 46.1502262 ], + [ 5.9683382, 46.1500703 ], + [ 5.9682474, 46.149899 ], + [ 5.9681635, 46.1496946 ], + [ 5.9680177, 46.1494732 ], + [ 5.9678643000000005, 46.1492264 ], + [ 5.9678685, 46.149114 ], + [ 5.9678801, 46.1489675 ], + [ 5.967789, 46.1487919 ], + [ 5.9678101, 46.1486392 ], + [ 5.9678476, 46.148493 ], + [ 5.9679357, 46.1483025 ], + [ 5.9679985, 46.1481746 ], + [ 5.9678427, 46.1481493 ], + [ 5.9676314, 46.1480214 ], + [ 5.9675846, 46.1479236 ], + [ 5.9674606, 46.1477709 ], + [ 5.9673517, 46.1476372 ], + [ 5.9672157, 46.1475338 ], + [ 5.9671565, 46.1473927 ], + [ 5.9671237, 46.1472113 ], + [ 5.9671346, 46.1470919 ], + [ 5.9672186, 46.1470101 ], + [ 5.9673492, 46.1469668 ], + [ 5.9676286, 46.1471639 ], + [ 5.9677907999999995, 46.1471481 ], + [ 5.9679849, 46.1471516 ], + [ 5.96817, 46.1471395 ], + [ 5.9683906, 46.1471199 ], + [ 5.9687003, 46.147069 ], + [ 5.968986, 46.1469882 ], + [ 5.969315, 46.1468315 ], + [ 5.9695957, 46.1467002 ], + [ 5.9700255, 46.1464484 ], + [ 5.9701685, 46.1463378 ], + [ 5.9702886, 46.1461414 ], + [ 5.9703672, 46.145923 ], + [ 5.9704598, 46.1456093 ], + [ 5.9705112, 46.1453275 ], + [ 5.9705925, 46.1450577 ], + [ 5.9707297, 46.1448121 ], + [ 5.9709481, 46.1445837 ], + [ 5.971233, 46.14434 ], + [ 5.9715919, 46.144082 ], + [ 5.9717518, 46.1438636 ], + [ 5.9719487, 46.1436134 ], + [ 5.9721412, 46.1433909 ], + [ 5.9723691, 46.1431402 ], + [ 5.9725693, 46.1429736 ], + [ 5.9727264, 46.1428479 ], + [ 5.9730068, 46.142722 ], + [ 5.9734734, 46.1426057 ], + [ 5.9738962, 46.1425743 ], + [ 5.9742726, 46.1424901 ], + [ 5.9745741, 46.1423942 ], + [ 5.9749438999999995, 46.1422694 ], + [ 5.9750818, 46.1422442 ], + [ 5.9754348, 46.1423523 ], + [ 5.9757385, 46.1424587 ], + [ 5.9759785, 46.142542 ], + [ 5.9761969, 46.142606 ], + [ 5.9763927, 46.142587 ], + [ 5.9765603, 46.1426125 ], + [ 5.9767699, 46.1426565 ], + [ 5.9769898999999995, 46.1426604 ], + [ 5.9772223, 46.1426804 ], + [ 5.9774272, 46.1426723 ], + [ 5.9775794, 46.1426977 ], + [ 5.9778943, 46.1427774 ], + [ 5.9782848, 46.1428786 ], + [ 5.9785196, 46.1429618 ], + [ 5.9787979, 46.1430526 ], + [ 5.9790862, 46.1431589 ], + [ 5.9793047999999995, 46.1432121 ], + [ 5.9795862, 46.1432508 ], + [ 5.9798376, 46.1432884 ], + [ 5.9803522000000005, 46.1433994 ], + [ 5.9806017, 46.1434214 ], + [ 5.9806761, 46.1433883 ], + [ 5.9808563, 46.1433402 ], + [ 5.9811084999999995, 46.1432832 ], + [ 5.9814356, 46.1432137 ], + [ 5.9817598, 46.1431927 ], + [ 5.9820115, 46.1432192 ], + [ 5.9821774, 46.143306 ], + [ 5.9824147, 46.1434747 ], + [ 5.9825834, 46.1435497 ], + [ 5.982759, 46.1438192 ], + [ 5.9828364, 46.1439219 ], + [ 5.9829449, 46.1440699 ], + [ 5.983014, 46.1442517 ], + [ 5.9831559, 46.1443606 ], + [ 5.9834326, 46.1445234 ], + [ 5.9836784, 46.1447146 ], + [ 5.9839953, 46.1449228 ], + [ 5.9840786, 46.1450598 ], + [ 5.9841814, 46.1451745 ], + [ 5.9842639, 46.1453276 ], + [ 5.9843665999999995, 46.1454648 ], + [ 5.9843946, 46.1455848 ], + [ 5.9844596, 46.1457548 ], + [ 5.984497, 46.1459137 ], + [ 5.9846442, 46.1460676 ], + [ 5.9847808, 46.1461485 ], + [ 5.9851649, 46.1463092 ], + [ 5.9854803, 46.1465507 ], + [ 5.9856444, 46.146667 ], + [ 5.9858353, 46.1467874 ], + [ 5.9861951, 46.1466876 ], + [ 5.9863425, 46.1466563 ], + [ 5.9864601, 46.146522 ], + [ 5.98658, 46.1463327 ], + [ 5.9868052, 46.1462006 ], + [ 5.9868877, 46.1461567 ], + [ 5.9871197, 46.1459961 ], + [ 5.9873687, 46.1458382 ], + [ 5.9876676, 46.1456558 ], + [ 5.9879969, 46.1454872 ], + [ 5.9882934, 46.1453346 ], + [ 5.9884987, 46.1452023 ], + [ 5.9888877, 46.145039 ], + [ 5.9892725, 46.1448693 ], + [ 5.9898118, 46.1447432 ], + [ 5.9903192, 46.1446004 ], + [ 5.9907958, 46.144398699999996 ], + [ 5.9907996, 46.1445903 ], + [ 5.9907804, 46.1446873 ], + [ 5.9907812, 46.1448456 ], + [ 5.9908344, 46.1449858 ], + [ 5.9909588, 46.1451304 ], + [ 5.9910675, 46.1452722 ], + [ 5.9911583, 46.1451725 ], + [ 5.9912914, 46.1450797 ], + [ 5.991429, 46.1448791 ], + [ 5.9916254, 46.1447961 ], + [ 5.9917323, 46.1448048 ], + [ 5.9918507, 46.1448405 ], + [ 5.9919256999999995, 46.1450339 ], + [ 5.9919146, 46.145158 ], + [ 5.9919334, 46.1452752 ], + [ 5.9919774, 46.1454296 ], + [ 5.9921011, 46.1455895 ], + [ 5.992176, 46.1457498 ], + [ 5.9922382, 46.145845 ], + [ 5.9927352, 46.145989 ], + [ 5.9928953, 46.146055 ], + [ 5.9932166, 46.1461391 ], + [ 5.993571, 46.1462013 ], + [ 5.9938416, 46.1461544 ], + [ 5.9942056, 46.1461447 ], + [ 5.9946862, 46.1461229 ], + [ 5.9950187, 46.1460786 ], + [ 5.9955345, 46.1459566 ], + [ 5.9960467, 46.1458749 ], + [ 5.9965609, 46.1458113 ], + [ 5.9970165, 46.145774 ], + [ 5.997505, 46.1457029 ], + [ 5.9979455, 46.1456428 ], + [ 5.9981303, 46.1456002 ], + [ 5.9983516, 46.1455976 ], + [ 5.9985557, 46.1455103 ], + [ 5.9987874, 46.1453792 ], + [ 5.9989798, 46.1454455 ], + [ 5.9991335, 46.1455041 ], + [ 5.9993362, 46.1454285 ], + [ 5.9995917, 46.1453543 ], + [ 5.9998283, 46.1452611 ], + [ 6.0000742, 46.1451752 ], + [ 6.0005199, 46.1449631 ], + [ 6.0008638, 46.1448218 ], + [ 6.0013004, 46.14466 ], + [ 6.001683, 46.1445875 ], + [ 6.0020063, 46.1445979 ], + [ 6.0023571, 46.1445916 ], + [ 6.0029661, 46.1445229 ], + [ 6.003486, 46.1444863 ], + [ 6.0038748, 46.1444661 ], + [ 6.0042653, 46.144427 ], + [ 6.0045538, 46.1443353 ], + [ 6.0047735, 46.1442553 ], + [ 6.0051997, 46.1441311 ], + [ 6.0056576, 46.1440101 ], + [ 6.0060095, 46.1439642 ], + [ 6.0065157, 46.1438663 ], + [ 6.007011, 46.1437781 ], + [ 6.0073361, 46.1437219 ], + [ 6.0077943, 46.1436171 ], + [ 6.0083568, 46.1435469 ], + [ 6.0087145, 46.1435235 ], + [ 6.0089746, 46.1435241 ], + [ 6.0092337, 46.1435166 ], + [ 6.0095309, 46.1435375 ], + [ 6.009838, 46.1435764 ], + [ 6.0101607, 46.1436111 ], + [ 6.0103897, 46.1435627 ], + [ 6.0106816, 46.1435403 ], + [ 6.0110486, 46.1435171 ], + [ 6.0113582, 46.1434957 ], + [ 6.0118133, 46.1434809 ], + [ 6.0121691, 46.1434863 ], + [ 6.0126603, 46.1435104 ], + [ 6.0129493, 46.1435942 ], + [ 6.0132168, 46.1436506 ], + [ 6.013481, 46.1436998 ], + [ 6.013655, 46.1438316 ], + [ 6.0136522, 46.1439395 ], + [ 6.0136143, 46.1440902 ], + [ 6.0134751, 46.14437 ], + [ 6.0133477, 46.1445826 ], + [ 6.013671, 46.1445947 ], + [ 6.0139378, 46.1445882 ], + [ 6.014305, 46.1445605 ], + [ 6.014571, 46.144535 ], + [ 6.0148908, 46.1444842 ], + [ 6.0151742, 46.1444391 ], + [ 6.0155435, 46.1443818 ], + [ 6.0159567, 46.1443095 ], + [ 6.0163246, 46.1442549 ], + [ 6.0167904, 46.1441086 ], + [ 6.0173565, 46.1439493 ], + [ 6.0178987, 46.1437546 ], + [ 6.0182324, 46.1436652 ], + [ 6.0185858, 46.1435626 ], + [ 6.0187393, 46.1435384 ], + [ 6.0189488, 46.1435419 ], + [ 6.0191694, 46.1435843 ], + [ 6.0194487, 46.14364 ], + [ 6.0196535, 46.1436326 ], + [ 6.0201621, 46.14363 ], + [ 6.0204401, 46.1435435 ], + [ 6.0208536, 46.1436225 ], + [ 6.0211442, 46.1436459 ], + [ 6.0213552, 46.1436539 ], + [ 6.0215885, 46.1436416 ], + [ 6.021809, 46.1436227 ], + [ 6.0219895, 46.1435917 ], + [ 6.0222241, 46.1435281 ], + [ 6.0222923, 46.1434552 ], + [ 6.0222468, 46.1433592 ], + [ 6.0221634, 46.1432376 ], + [ 6.0219583, 46.1430497 ], + [ 6.0217603, 46.1428547 ], + [ 6.0217966, 46.1427535 ], + [ 6.0219286, 46.1426993 ], + [ 6.0222538, 46.1426368 ], + [ 6.022796, 46.1424421 ], + [ 6.023217, 46.1422457 ], + [ 6.023809, 46.1420192 ], + [ 6.0243175, 46.1418348 ], + [ 6.024549, 46.1416857 ], + [ 6.0248475, 46.1415167 ], + [ 6.0252011, 46.1412971 ], + [ 6.0256047, 46.1411608 ], + [ 6.0261805, 46.1410754 ], + [ 6.0265815, 46.1410371 ], + [ 6.0271581, 46.1409562 ], + [ 6.0277045, 46.140909 ], + [ 6.0279465, 46.1409057 ], + [ 6.0281957, 46.1409332 ], + [ 6.0286881, 46.1407558 ], + [ 6.0289932, 46.14063 ], + [ 6.0292626, 46.140815 ], + [ 6.029478, 46.1409042 ], + [ 6.0300292, 46.1411549 ], + [ 6.0302005, 46.1410896 ], + [ 6.0304745, 46.1409544 ], + [ 6.0310486, 46.1407312 ], + [ 6.0315585, 46.1405315 ], + [ 6.0320551, 46.1403973 ], + [ 6.0323442, 46.1402741 ], + [ 6.0327972, 46.1400259 ], + [ 6.033194, 46.1397907 ], + [ 6.0335605, 46.139492 ], + [ 6.0338923, 46.1392651 ], + [ 6.0343655, 46.1389857 ], + [ 6.0346549, 46.1387581 ], + [ 6.0348336, 46.1385579 ], + [ 6.0354671, 46.1377219 ], + [ 6.0358554, 46.137277 ], + [ 6.0361523, 46.1371008 ], + [ 6.0362991, 46.1370034 ], + [ 6.0362855, 46.136984 ], + [ 6.0361924, 46.1368268 ], + [ 6.036106, 46.1366237 ], + [ 6.0359764, 46.1360754 ], + [ 6.0358864, 46.1360821 ], + [ 6.0355969, 46.1351287 ], + [ 6.0354664, 46.1348211 ], + [ 6.0354619, 46.1346399 ], + [ 6.0354253, 46.1344588 ], + [ 6.0353939, 46.134333 ], + [ 6.0353324, 46.1343914 ], + [ 6.0350709, 46.1345995 ], + [ 6.0349383, 46.1347242 ], + [ 6.0348578, 46.1348682 ], + [ 6.0348227, 46.135165 ], + [ 6.0347576, 46.135354 ], + [ 6.0346723, 46.1355159 ], + [ 6.0346554, 46.1355809 ], + [ 6.0345597, 46.1357271 ], + [ 6.0343567, 46.1358941 ], + [ 6.034284, 46.1360453 ], + [ 6.0342818, 46.1361585 ], + [ 6.0344329, 46.1363158 ], + [ 6.0345565, 46.1365332 ], + [ 6.0346281, 46.1366815 ], + [ 6.0345928, 46.1367519 ], + [ 6.034423, 46.1368537 ], + [ 6.0343395, 46.1368776 ], + [ 6.0342806, 46.1368336 ], + [ 6.0341652, 46.1367689 ], + [ 6.0340134, 46.1367395 ], + [ 6.0338094, 46.1366004 ], + [ 6.0336681, 46.1365301 ], + [ 6.0335221, 46.1365303 ], + [ 6.0334835, 46.1365418 ], + [ 6.0334317, 46.1366181 ], + [ 6.033535, 46.1367331 ], + [ 6.0335946, 46.1367854 ], + [ 6.0336772, 46.1369723 ], + [ 6.0336475, 46.1370995 ], + [ 6.0335588, 46.137184 ], + [ 6.0334513, 46.1372199 ], + [ 6.0334136, 46.1372556 ], + [ 6.033405, 46.1372844 ], + [ 6.0334151, 46.1373045 ], + [ 6.0334078, 46.1374154 ], + [ 6.0334407, 46.1375397 ], + [ 6.0335433, 46.1376632 ], + [ 6.0336668, 46.1378612 ], + [ 6.0336748, 46.1379279 ], + [ 6.0336354, 46.1379735 ], + [ 6.0334806, 46.1379918 ], + [ 6.0333862, 46.1379826 ], + [ 6.033217, 46.1378622 ], + [ 6.0330845, 46.1377738 ], + [ 6.032908, 46.1377064 ], + [ 6.0327465, 46.1377229 ], + [ 6.0325581, 46.1378118 ], + [ 6.032531, 46.1378362 ], + [ 6.0324771, 46.1379172 ], + [ 6.0325442, 46.1380154 ], + [ 6.032621, 46.1380653 ], + [ 6.0328507, 46.1383019 ], + [ 6.0330261, 46.1385872 ], + [ 6.0330297, 46.1386675 ], + [ 6.0330094, 46.1387082 ], + [ 6.0329772, 46.1387344 ], + [ 6.0327483, 46.1387702 ], + [ 6.0326269, 46.1387127 ], + [ 6.0325358, 46.1386229 ], + [ 6.0322511, 46.1385065 ], + [ 6.0319896, 46.138386 ], + [ 6.0318758, 46.1383079 ], + [ 6.0318649, 46.138285 ], + [ 6.0316004, 46.1380468 ], + [ 6.0315147, 46.1379839 ], + [ 6.0314861, 46.1379741 ], + [ 6.0314511, 46.1379838 ], + [ 6.0314035, 46.1380272 ], + [ 6.0314046, 46.1380668 ], + [ 6.0314559, 46.1381036 ], + [ 6.0314819, 46.1382168 ], + [ 6.0316172, 46.1384553 ], + [ 6.0316568, 46.1385693 ], + [ 6.0316729, 46.1386676 ], + [ 6.0316684, 46.138686 ], + [ 6.0316302, 46.1387636 ], + [ 6.0315774, 46.1388483 ], + [ 6.0315546, 46.1388944 ], + [ 6.0315386, 46.1389662 ], + [ 6.0315694, 46.139076 ], + [ 6.0316186, 46.1391118 ], + [ 6.0316972, 46.1392162 ], + [ 6.0317026, 46.1392862 ], + [ 6.0316553, 46.1393961 ], + [ 6.0315859, 46.139445 ], + [ 6.031491, 46.1394746 ], + [ 6.0312302, 46.1394758 ], + [ 6.0309103, 46.1394498 ], + [ 6.030805, 46.1394052 ], + [ 6.0307356, 46.1393338 ], + [ 6.0307278, 46.1392539 ], + [ 6.0306381, 46.1391367 ], + [ 6.0305151, 46.1390737 ], + [ 6.0304778, 46.1390693 ], + [ 6.0303257, 46.1390833 ], + [ 6.030056, 46.1391157 ], + [ 6.0299206, 46.1391576 ], + [ 6.0298546, 46.1392131 ], + [ 6.0298812, 46.139351 ], + [ 6.0299467, 46.1394498 ], + [ 6.0299504, 46.1395121 ], + [ 6.0299068, 46.1395664 ], + [ 6.0298335, 46.1396138 ], + [ 6.0296527, 46.139614 ], + [ 6.0294069, 46.1395003 ], + [ 6.029316, 46.1393984 ], + [ 6.0292907, 46.1393775 ], + [ 6.0292076, 46.1393556 ], + [ 6.0290366, 46.1393767 ], + [ 6.0288999, 46.1394986 ], + [ 6.0288572, 46.1395974 ], + [ 6.028811, 46.1396574 ], + [ 6.0287636, 46.1396918 ], + [ 6.0287009, 46.1397114 ], + [ 6.0286262, 46.1397592 ], + [ 6.0285508, 46.1397864 ], + [ 6.0284688, 46.1397665 ], + [ 6.0283805, 46.1397028 ], + [ 6.0282758, 46.139708 ], + [ 6.0282263, 46.1397355 ], + [ 6.028308, 46.1401236 ], + [ 6.028341, 46.1401552 ], + [ 6.0284035, 46.1401661 ], + [ 6.0284903, 46.1402081 ], + [ 6.0285216, 46.1403146 ], + [ 6.0285044, 46.1403728 ], + [ 6.0284521, 46.1404375 ], + [ 6.0282974, 46.1404452 ], + [ 6.0280306, 46.1403845 ], + [ 6.0279595, 46.1402729 ], + [ 6.0278773, 46.1402034 ], + [ 6.0276953, 46.1401372 ], + [ 6.027512, 46.1400989 ], + [ 6.0274335, 46.1400636 ], + [ 6.0272929, 46.1400327 ], + [ 6.0271843, 46.1400385 ], + [ 6.0268572, 46.1400832 ], + [ 6.0267158, 46.1400805 ], + [ 6.0265938, 46.1400933 ], + [ 6.0264379, 46.1400838 ], + [ 6.0262355, 46.1401075 ], + [ 6.026185, 46.1401212 ], + [ 6.0259472, 46.1402581 ], + [ 6.0258546, 46.1403017 ], + [ 6.0257533, 46.1403267 ], + [ 6.0255664, 46.1403373 ], + [ 6.0253122, 46.1404009 ], + [ 6.0252466, 46.1404107 ], + [ 6.0250435, 46.1404081 ], + [ 6.0249917, 46.1403971 ], + [ 6.024738, 46.1404044 ], + [ 6.024531, 46.1403996 ], + [ 6.0243578, 46.1403771 ], + [ 6.0240822, 46.1403687 ], + [ 6.0239589, 46.1403708 ], + [ 6.0239024, 46.1403817 ], + [ 6.0238241, 46.1404289 ], + [ 6.0237622, 46.1405506 ], + [ 6.0236711, 46.1406513 ], + [ 6.0236302, 46.140718 ], + [ 6.0235791, 46.1407618 ], + [ 6.0235223, 46.1408347 ], + [ 6.023427, 46.1409026 ], + [ 6.0233712, 46.1409668 ], + [ 6.0232887999999996, 46.1410298 ], + [ 6.0232311, 46.1410554 ], + [ 6.0231564, 46.1411715 ], + [ 6.0230937, 46.1412292 ], + [ 6.0230147, 46.1413129 ], + [ 6.0229244, 46.1413889 ], + [ 6.0228611, 46.1414174 ], + [ 6.0227244, 46.1415652 ], + [ 6.0226556, 46.1416056 ], + [ 6.0225259, 46.1416575 ], + [ 6.0224338, 46.1416788 ], + [ 6.022336, 46.1416755 ], + [ 6.0222074, 46.1416597 ], + [ 6.0219179, 46.1416085 ], + [ 6.0218112, 46.1415941 ], + [ 6.0217312, 46.1415715 ], + [ 6.0216074, 46.1415197 ], + [ 6.0215721, 46.1414851 ], + [ 6.021541, 46.141432 ], + [ 6.0214874, 46.141297 ], + [ 6.0214583, 46.1412383 ], + [ 6.021373, 46.1411389 ], + [ 6.02133, 46.1411188 ], + [ 6.0212852, 46.1411095 ], + [ 6.0212274, 46.1411097 ], + [ 6.0211695, 46.1411296 ], + [ 6.0210292, 46.1412271 ], + [ 6.0209477, 46.1412756 ], + [ 6.0208865, 46.1413459 ], + [ 6.0208317, 46.1413948 ], + [ 6.0207557, 46.1414523 ], + [ 6.0206689, 46.1414939 ], + [ 6.0206226, 46.1415399 ], + [ 6.0205701, 46.1416055 ], + [ 6.020552, 46.1416355 ], + [ 6.0205265, 46.1416917 ], + [ 6.0205085, 46.1417861 ], + [ 6.0204843, 46.1418174 ], + [ 6.0202919, 46.1419912 ], + [ 6.0202548, 46.1420155 ], + [ 6.0201534, 46.1420617 ], + [ 6.0200533, 46.1420892 ], + [ 6.0199985, 46.1420957 ], + [ 6.0199601, 46.1420982 ], + [ 6.0197867, 46.1420889 ], + [ 6.0197195, 46.14208 ], + [ 6.0196422, 46.1420642 ], + [ 6.0195219, 46.1420216 ], + [ 6.019463, 46.1419912 ], + [ 6.0192444, 46.1419509 ], + [ 6.0192151, 46.1419612 ], + [ 6.0191883, 46.1419769 ], + [ 6.0192652, 46.1420894 ], + [ 6.0192305, 46.1420947 ], + [ 6.0190336, 46.1421075 ], + [ 6.0188575, 46.1421415 ], + [ 6.018633, 46.1421926 ], + [ 6.0184952, 46.1421872 ], + [ 6.0183718, 46.1422226 ], + [ 6.0183203, 46.1422621 ], + [ 6.0183008, 46.142344 ], + [ 6.0182616, 46.142388 ], + [ 6.0181631, 46.1423996 ], + [ 6.0180875, 46.1424648 ], + [ 6.0180433, 46.1424913 ], + [ 6.0179118, 46.142549 ], + [ 6.0177809, 46.1426143 ], + [ 6.0176752, 46.1426731 ], + [ 6.0171786, 46.1428386 ], + [ 6.0170681, 46.1428426 ], + [ 6.0169378, 46.1428177 ], + [ 6.0166266, 46.1427729 ], + [ 6.0164811, 46.1427826 ], + [ 6.0162515, 46.1427824 ], + [ 6.01589, 46.142757 ], + [ 6.015532, 46.1427849 ], + [ 6.0154044, 46.1428131 ], + [ 6.0153277, 46.1428672 ], + [ 6.0152969, 46.1429259 ], + [ 6.0152195, 46.1429884 ], + [ 6.015106, 46.1430571 ], + [ 6.0150125, 46.1430757 ], + [ 6.0149321, 46.1430754 ], + [ 6.0147617, 46.1430211 ], + [ 6.0146891, 46.1429169 ], + [ 6.0146762, 46.1428348 ], + [ 6.0145419, 46.1426557 ], + [ 6.0144575, 46.1424561 ], + [ 6.0143276, 46.1423641 ], + [ 6.014248, 46.1423462 ], + [ 6.0141737, 46.1423605 ], + [ 6.0139416, 46.1424414 ], + [ 6.013769, 46.1425386 ], + [ 6.0136252, 46.1425338 ], + [ 6.0135172, 46.1424459 ], + [ 6.0133295, 46.1422049 ], + [ 6.0132451, 46.142154 ], + [ 6.013081, 46.1420997 ], + [ 6.0129837, 46.1421165 ], + [ 6.0128964, 46.1421151 ], + [ 6.0128111, 46.142125 ], + [ 6.01274, 46.1421432 ], + [ 6.0127324, 46.14216 ], + [ 6.0126892, 46.142191 ], + [ 6.0126585, 46.1422009 ], + [ 6.0125742, 46.1422024 ], + [ 6.0124609, 46.1421839 ], + [ 6.0123799, 46.1421449 ], + [ 6.0123647, 46.1421471 ], + [ 6.0123257, 46.1421361 ], + [ 6.0122907, 46.1421208 ], + [ 6.0122626, 46.1421267 ], + [ 6.0121941, 46.142119 ], + [ 6.0121079, 46.1421182 ], + [ 6.0120255, 46.1421249 ], + [ 6.0119573, 46.142133 ], + [ 6.0119064, 46.1421451 ], + [ 6.0117376, 46.1421688 ], + [ 6.0116596, 46.1421744 ], + [ 6.0115181, 46.1421736 ], + [ 6.0114273, 46.1421684 ], + [ 6.0112977, 46.1421495 ], + [ 6.0111549, 46.142111 ], + [ 6.0110394, 46.1420315 ], + [ 6.0110063, 46.1419838 ], + [ 6.0109496, 46.1419353 ], + [ 6.0109145, 46.1419286 ], + [ 6.0108565, 46.1419467 ], + [ 6.0107866, 46.1419862 ], + [ 6.0107326, 46.1420654 ], + [ 6.0107236, 46.1421164 ], + [ 6.0106987, 46.1421571 ], + [ 6.010676, 46.1421613 ], + [ 6.0106391, 46.1421896 ], + [ 6.0105774, 46.1422242 ], + [ 6.010515, 46.142247 ], + [ 6.010495, 46.1422482 ], + [ 6.0104753, 46.1422406 ], + [ 6.0104163, 46.1422289 ], + [ 6.0103633, 46.1422278 ], + [ 6.0102655, 46.1422195 ], + [ 6.010251, 46.1422131 ], + [ 6.0101708, 46.1421959 ], + [ 6.0101244, 46.142213 ], + [ 6.010022, 46.1421844 ], + [ 6.0099188, 46.1421612 ], + [ 6.0098723, 46.1421582 ], + [ 6.0098403, 46.1421507 ], + [ 6.0097305, 46.1421029 ], + [ 6.009708, 46.1421086 ], + [ 6.0096034, 46.1420922 ], + [ 6.0095636, 46.1421102 ], + [ 6.009516, 46.1421529 ], + [ 6.0094582, 46.1422635 ], + [ 6.0095069, 46.1422855 ], + [ 6.0095162, 46.1423113 ], + [ 6.0095136, 46.1423532 ], + [ 6.0095238, 46.1424303 ], + [ 6.0094869, 46.1424686 ], + [ 6.0093944, 46.1425261 ], + [ 6.0092663, 46.1425911 ], + [ 6.0092135, 46.1426272 ], + [ 6.0091484, 46.1426415 ], + [ 6.0090433, 46.1426497 ], + [ 6.0090167, 46.1426586 ], + [ 6.0090029, 46.1426689 ], + [ 6.0089292, 46.1426936 ], + [ 6.0088814, 46.1427198 ], + [ 6.0087843, 46.1427609 ], + [ 6.0086463, 46.1428009 ], + [ 6.0085712, 46.1428116 ], + [ 6.0085478, 46.142819 ], + [ 6.0084425, 46.1428123 ], + [ 6.0082661, 46.1427851 ], + [ 6.0080501, 46.1426939 ], + [ 6.0079452, 46.1426721 ], + [ 6.0076921, 46.1425951 ], + [ 6.0075421, 46.1425249 ], + [ 6.0074448, 46.1424718 ], + [ 6.0073562, 46.1423909 ], + [ 6.0073104, 46.1423612 ], + [ 6.0072193, 46.1423229 ], + [ 6.007145, 46.1422772 ], + [ 6.007062, 46.1422365 ], + [ 6.0067413, 46.1421322 ], + [ 6.0065728, 46.1421022 ], + [ 6.0065219, 46.1420963 ], + [ 6.0065009, 46.1421068 ], + [ 6.0064455, 46.1421111 ], + [ 6.0061616, 46.1421237 ], + [ 6.0060264, 46.1421606 ], + [ 6.0059847, 46.1421806 ], + [ 6.006005, 46.1422594 ], + [ 6.0059828, 46.1422772 ], + [ 6.0059616, 46.1423028 ], + [ 6.00593, 46.1423194 ], + [ 6.0059002, 46.1423157 ], + [ 6.0058068, 46.1423323 ], + [ 6.0057091, 46.1423411 ], + [ 6.0056398, 46.1423208 ], + [ 6.005564, 46.142325 ], + [ 6.0054727, 46.1423064 ], + [ 6.0052884, 46.1422903 ], + [ 6.0052868, 46.1422817 ], + [ 6.0052482, 46.1422778 ], + [ 6.0052394, 46.142269 ], + [ 6.0051874, 46.1422673 ], + [ 6.0051923, 46.1422752 ], + [ 6.0051638, 46.1422748 ], + [ 6.0051551, 46.1422677 ], + [ 6.0050526, 46.1422431 ], + [ 6.0049386, 46.1421975 ], + [ 6.0045538, 46.1419921 ], + [ 6.0043511, 46.1419257 ], + [ 6.0041107, 46.1419304 ], + [ 6.0039826, 46.1419513 ], + [ 6.0039584, 46.1419744 ], + [ 6.0038685, 46.1420055 ], + [ 6.0037545, 46.1420151 ], + [ 6.0036769, 46.1419865 ], + [ 6.0035826, 46.1419311 ], + [ 6.0032673, 46.1417808 ], + [ 6.0032293, 46.1417766 ], + [ 6.0031536, 46.1417925 ], + [ 6.0031078, 46.1418145 ], + [ 6.0031008, 46.1418489 ], + [ 6.0030529, 46.1418739 ], + [ 6.0029853, 46.1419253 ], + [ 6.0029332, 46.1419504 ], + [ 6.0028756, 46.141961 ], + [ 6.0028203, 46.141986 ], + [ 6.0028106, 46.1420074 ], + [ 6.0027487, 46.1420548 ], + [ 6.0027451, 46.1420754 ], + [ 6.0026791, 46.1421245 ], + [ 6.0025678, 46.1421812 ], + [ 6.002414, 46.1422123 ], + [ 6.0023698, 46.1422158 ], + [ 6.0020967, 46.1422841 ], + [ 6.0019779, 46.1422942 ], + [ 6.0019523, 46.1423019 ], + [ 6.0017968, 46.1422848 ], + [ 6.0017205, 46.1422682 ], + [ 6.0016986, 46.1422701 ], + [ 6.0016937, 46.1422472 ], + [ 6.0015551, 46.1422075 ], + [ 6.0014559, 46.1421865 ], + [ 6.0013743, 46.1421646 ], + [ 6.0013051, 46.142163 ], + [ 6.0012813, 46.1421701 ], + [ 6.0012532, 46.1421858 ], + [ 6.0012255, 46.142194 ], + [ 6.0012138, 46.1421923 ], + [ 6.0011097, 46.1422821 ], + [ 6.0011053, 46.1422922 ], + [ 6.0010214, 46.1423533 ], + [ 6.0009462, 46.1424512 ], + [ 6.0008911, 46.1425513 ], + [ 6.0007882, 46.1426386 ], + [ 6.0007534, 46.1426573 ], + [ 6.0006909, 46.1426743 ], + [ 6.0006147, 46.1426706 ], + [ 6.0005946, 46.1426562 ], + [ 6.0005772, 46.1426331 ], + [ 6.0005307, 46.1426005 ], + [ 6.0005394, 46.1425941 ], + [ 6.0005518, 46.1425917 ], + [ 6.0005263, 46.1425381 ], + [ 6.000503, 46.1425418 ], + [ 6.0004966, 46.1425581 ], + [ 6.0004076, 46.1425542 ], + [ 6.0003999, 46.1425476 ], + [ 6.0003663, 46.1425599 ], + [ 6.0002805, 46.1425783 ], + [ 6.0002682, 46.1425979 ], + [ 6.0002151, 46.142622 ], + [ 6.0002049, 46.1426283 ], + [ 6.0002023, 46.1426397 ], + [ 6.0001201, 46.1426877 ], + [ 5.9999880999999995, 46.1428665 ], + [ 6.0000124, 46.1429775 ], + [ 5.9999927, 46.1430118 ], + [ 5.9999931, 46.1430463 ], + [ 5.9999313, 46.1431172 ], + [ 5.9998987, 46.1431265 ], + [ 5.9998711, 46.1431447 ], + [ 5.9998565, 46.1431462 ], + [ 5.9998342000000005, 46.1431324 ], + [ 5.9998003, 46.143128 ], + [ 5.9996687, 46.143093 ], + [ 5.9996107, 46.1430904 ], + [ 5.9995996, 46.143077 ], + [ 5.999602, 46.1430664 ], + [ 5.9996189, 46.1430604 ], + [ 5.9995471, 46.1430107 ], + [ 5.9994944, 46.1429458 ], + [ 5.9992105, 46.1428951 ], + [ 5.9991944, 46.1429091 ], + [ 5.9991886999999995, 46.1429276 ], + [ 5.9991082, 46.1429286 ], + [ 5.9990412, 46.1429183 ], + [ 5.9989544, 46.1429104 ], + [ 5.9989425999999995, 46.1429028 ], + [ 5.9986852, 46.1428569 ], + [ 5.9986818, 46.1428794 ], + [ 5.998672, 46.1428857 ], + [ 5.9986714, 46.1429111 ], + [ 5.998612, 46.1429463 ], + [ 5.9985612, 46.1429605 ], + [ 5.9985541, 46.1429546 ], + [ 5.9984611999999995, 46.1430075 ], + [ 5.9984493, 46.1430034 ], + [ 5.9982638, 46.1430268 ], + [ 5.9981215, 46.1430373 ], + [ 5.9980636, 46.1430233 ], + [ 5.9980356, 46.1430053 ], + [ 5.9980389, 46.1429827 ], + [ 5.9979226, 46.1429604 ], + [ 5.9979038, 46.1429503 ], + [ 5.9978255, 46.1429397 ], + [ 5.9976776, 46.1428915 ], + [ 5.9975865, 46.1428574 ], + [ 5.997515, 46.142819 ], + [ 5.9974507, 46.142799 ], + [ 5.9973659, 46.1427845 ], + [ 5.9972948, 46.1428104 ], + [ 5.9971444, 46.1428475 ], + [ 5.9970703, 46.142871 ], + [ 5.9969394, 46.14296 ], + [ 5.9969341, 46.1429857 ], + [ 5.996885, 46.1430812 ], + [ 5.9969117, 46.1431349 ], + [ 5.9968955, 46.1431944 ], + [ 5.9969214, 46.1432675 ], + [ 5.9968417, 46.1433452 ], + [ 5.9967386, 46.1435519 ], + [ 5.9967202, 46.1436064 ], + [ 5.9966593, 46.1436668 ], + [ 5.9965931999999995, 46.1437009 ], + [ 5.9964036, 46.143778 ], + [ 5.9962654, 46.1438001 ], + [ 5.9961333, 46.1438024 ], + [ 5.9960912, 46.1437822 ], + [ 5.9960674, 46.1437912 ], + [ 5.9958587, 46.143831 ], + [ 5.995777, 46.1438634 ], + [ 5.9957758, 46.1438931 ], + [ 5.995707, 46.1439264 ], + [ 5.9957002, 46.1439212 ], + [ 5.9956088, 46.1439561 ], + [ 5.9955988, 46.1439748 ], + [ 5.9955475, 46.143967 ], + [ 5.9952979, 46.1440269 ], + [ 5.9950231, 46.1440351 ], + [ 5.9949464, 46.1440204 ], + [ 5.9948443, 46.1439658 ], + [ 5.9948065, 46.1438916 ], + [ 5.9948224, 46.1438367 ], + [ 5.9948065, 46.1437639 ], + [ 5.9948248, 46.1437354 ], + [ 5.994811, 46.1436947 ], + [ 5.9948172, 46.1436465 ], + [ 5.9947828, 46.1436023 ], + [ 5.9947544, 46.1435905 ], + [ 5.9947098, 46.1435985 ], + [ 5.9946215, 46.1436411 ], + [ 5.994562, 46.1437059 ], + [ 5.9945187, 46.1437448 ], + [ 5.994478, 46.1438259 ], + [ 5.9942629, 46.1440373 ], + [ 5.9942557, 46.1440596 ], + [ 5.9941999, 46.144136 ], + [ 5.9941934, 46.1441338 ], + [ 5.9941507, 46.1442198 ], + [ 5.9941315, 46.1442331 ], + [ 5.9941192999999995, 46.1442993 ], + [ 5.994122, 46.1443633 ], + [ 5.9941495, 46.1444069 ], + [ 5.9941973, 46.144433 ], + [ 5.9942238, 46.1444791 ], + [ 5.9942014, 46.1444882 ], + [ 5.9941957, 46.1445402 ], + [ 5.9941692, 46.1445482 ], + [ 5.9941476, 46.1445634 ], + [ 5.9941014, 46.1445694 ], + [ 5.9940721, 46.1445633 ], + [ 5.994009, 46.1445334 ], + [ 5.9939464000000005, 46.1444807 ], + [ 5.9937857, 46.1444448 ], + [ 5.9937866, 46.1444377 ], + [ 5.9937724, 46.1444308 ], + [ 5.9937675, 46.1444339 ], + [ 5.9936613, 46.1443763 ], + [ 5.9936385, 46.1443698 ], + [ 5.9936298, 46.144356 ], + [ 5.9933479, 46.1442101 ], + [ 5.9933151, 46.1441998 ], + [ 5.9932158, 46.1441389 ], + [ 5.9930024, 46.144049 ], + [ 5.9928294, 46.144009 ], + [ 5.9926051, 46.1439629 ], + [ 5.9921953, 46.1439166 ], + [ 5.9921281, 46.1439136 ], + [ 5.9917625, 46.1438088 ], + [ 5.9911332999999996, 46.1435781 ], + [ 5.990884, 46.1434925 ], + [ 5.9905527, 46.1433527 ], + [ 5.99035, 46.1433033 ], + [ 5.9901737, 46.1433696 ], + [ 5.990021, 46.1434449 ], + [ 5.9899273, 46.1434452 ], + [ 5.9896232, 46.1435105 ], + [ 5.9892658, 46.1436443 ], + [ 5.9891659, 46.1436951 ], + [ 5.9891293, 46.1437474 ], + [ 5.9889796, 46.1438392 ], + [ 5.9889323, 46.1438419 ], + [ 5.9888639999999995, 46.1438249 ], + [ 5.9888017, 46.1437811 ], + [ 5.9887408, 46.1436268 ], + [ 5.9886671, 46.1434852 ], + [ 5.9886352, 46.1433805 ], + [ 5.9885841, 46.1433048 ], + [ 5.988541, 46.1432788 ], + [ 5.9885024, 46.1432705 ], + [ 5.9883942999999995, 46.1432719 ], + [ 5.9882533, 46.1432943 ], + [ 5.9881177, 46.1433278 ], + [ 5.9880007, 46.1433233 ], + [ 5.9878993, 46.1432878 ], + [ 5.9878398, 46.1431818 ], + [ 5.9877123, 46.1430358 ], + [ 5.9876349, 46.1429811 ], + [ 5.9875868, 46.14296 ], + [ 5.9870851, 46.1425905 ], + [ 5.9869899, 46.1425676 ], + [ 5.9868996, 46.1425861 ], + [ 5.9868707, 46.1426054 ], + [ 5.9867105, 46.1427439 ], + [ 5.9866733, 46.1428155 ], + [ 5.986549, 46.1429343 ], + [ 5.9863879, 46.1429094 ], + [ 5.9862645, 46.1428301 ], + [ 5.9861603, 46.1428059 ], + [ 5.9859535, 46.1428716 ], + [ 5.9857524, 46.1430684 ], + [ 5.98561, 46.1432989 ], + [ 5.9855379, 46.143368 ], + [ 5.9854809, 46.1434095 ], + [ 5.9852046, 46.143391 ], + [ 5.9850704, 46.1433341 ], + [ 5.9849238, 46.1433596 ], + [ 5.9846797, 46.1432831 ], + [ 5.9840305, 46.1432022 ], + [ 5.9838451, 46.1431579 ], + [ 5.9837047, 46.1430758 ], + [ 5.9835443, 46.1430112 ], + [ 5.9835034, 46.1429889 ], + [ 5.9834923, 46.1429267 ], + [ 5.9833921, 46.1428069 ], + [ 5.9833294, 46.1427205 ], + [ 5.9832155, 46.142607 ], + [ 5.9831216, 46.1425438 ], + [ 5.9830126, 46.1425173 ], + [ 5.9829227, 46.1424723 ], + [ 5.9827615, 46.1424072 ], + [ 5.9824458, 46.1422907 ], + [ 5.9823367, 46.1415447 ], + [ 5.9829267999999995, 46.1413182 ], + [ 5.9828675, 46.1410117 ], + [ 5.9826995, 46.1406219 ], + [ 5.98264, 46.1406354 ], + [ 5.9819052, 46.1406664 ], + [ 5.9818176, 46.1405564 ], + [ 5.9817716999999995, 46.1404721 ], + [ 5.9817053, 46.1403354 ], + [ 5.9816458, 46.1402042 ], + [ 5.9815528, 46.1400509 ], + [ 5.981403, 46.1398906 ], + [ 5.9813044, 46.1397535 ], + [ 5.9811378, 46.1395975 ], + [ 5.9810078, 46.1394213 ], + [ 5.9809119, 46.1393787 ], + [ 5.9806864, 46.1395395 ], + [ 5.9805305, 46.1396049 ], + [ 5.9803673, 46.1396586 ], + [ 5.9801447, 46.1397115 ], + [ 5.9799587, 46.1397352 ], + [ 5.9797329, 46.1397089 ], + [ 5.9795402, 46.1396605 ], + [ 5.9793071, 46.1395729 ], + [ 5.9790502, 46.1395012 ], + [ 5.9788521, 46.1394069 ], + [ 5.978661, 46.139291 ], + [ 5.9785353, 46.1391985 ], + [ 5.978441, 46.1390957 ], + [ 5.9784278, 46.1389983 ], + [ 5.9781680999999995, 46.1392262 ], + [ 5.9779371, 46.1393509 ], + [ 5.9777005, 46.1394369 ], + [ 5.9775916, 46.1394877 ], + [ 5.9775395, 46.1394079 ], + [ 5.9775463, 46.1392046 ], + [ 5.9775218, 46.138956 ], + [ 5.9774354, 46.1388415 ], + [ 5.9772188, 46.1388199 ], + [ 5.9770719, 46.1388395 ], + [ 5.9768444, 46.1388761 ], + [ 5.9766066, 46.1389225 ], + [ 5.976306, 46.138969 ], + [ 5.9760775, 46.1389993 ], + [ 5.9758014, 46.1390219 ], + [ 5.975451, 46.1390605 ], + [ 5.9753935, 46.1391164 ], + [ 5.9753416999999995, 46.139212 ], + [ 5.9752782, 46.1393623 ], + [ 5.9752195, 46.1394857 ], + [ 5.9751656, 46.1396092 ], + [ 5.9750551, 46.139715699999996 ], + [ 5.9749546, 46.1397972 ], + [ 5.9748684999999995, 46.1399607 ], + [ 5.9748136, 46.1401409 ], + [ 5.9746872, 46.140312 ], + [ 5.9746007, 46.1404917 ], + [ 5.9744581, 46.1406014 ], + [ 5.9743477, 46.1407538 ], + [ 5.9741871, 46.140902 ], + [ 5.9740824, 46.1409456 ], + [ 5.9738593, 46.1410156 ], + [ 5.973673, 46.1410509 ], + [ 5.9734501, 46.1411155 ], + [ 5.9732045, 46.1411969 ], + [ 5.9729277, 46.1412482 ], + [ 5.9727695, 46.1411148 ], + [ 5.9726296, 46.1409726 ], + [ 5.9725614, 46.1408628 ], + [ 5.9724848, 46.1407215 ], + [ 5.9723825, 46.1405843 ], + [ 5.972274, 46.1404812 ], + [ 5.9721575, 46.1405292 ], + [ 5.9719095, 46.1406943 ], + [ 5.9716217, 46.1408542 ], + [ 5.9713612, 46.1410641 ], + [ 5.9711733, 46.1411624 ], + [ 5.9709226, 46.1413993 ], + [ 5.970723, 46.1415434 ], + [ 5.970489, 46.1417311 ], + [ 5.9703108, 46.1419087 ], + [ 5.9700859, 46.1421307 ], + [ 5.9699422, 46.1422863 ], + [ 5.9697977, 46.1424985 ], + [ 5.9696485, 46.1426198 ], + [ 5.9694851, 46.1426348 ], + [ 5.9693133, 46.1426596 ], + [ 5.9692566, 46.1427101 ], + [ 5.9690805000000005, 46.1428086 ], + [ 5.9688422, 46.1429557 ], + [ 5.9685356, 46.143093 ], + [ 5.9683487, 46.143158 ], + [ 5.968085, 46.1432886 ], + [ 5.9678602, 46.1434198 ], + [ 5.9677697, 46.1435085 ], + [ 5.9677500000000006, 46.1436262 ], + [ 5.9678401, 46.1438199 ], + [ 5.9679495, 46.1441443 ], + [ 5.9680222, 46.1443711 ], + [ 5.9679287, 46.1445273 ], + [ 5.9678765, 46.1446282 ], + [ 5.9678941, 46.1448022 ], + [ 5.9678654, 46.1449556 ], + [ 5.9679658, 46.1450702 ], + [ 5.9681155, 46.1452306 ], + [ 5.9682296, 46.1454129 ], + [ 5.9683060999999995, 46.1455614 ], + [ 5.9682782, 46.145678 ], + [ 5.9682262999999995, 46.1457746 ], + [ 5.9681493, 46.1458562 ], + [ 5.9680318, 46.1459852 ], + [ 5.9679149, 46.1460899 ], + [ 5.9677924, 46.1461279 ], + [ 5.9675709999999995, 46.1461807 ], + [ 5.9673265, 46.1462154 ], + [ 5.9671242, 46.1462343 ], + [ 5.9669038, 46.1462485 ], + [ 5.9666924, 46.1462611 ], + [ 5.9664667, 46.1462302 ], + [ 5.9663062, 46.1461822 ], + [ 5.9661100000000005, 46.1460591 ], + [ 5.965865, 46.1458472 ], + [ 5.9656748, 46.1457016 ], + [ 5.9655272, 46.1455477 ], + [ 5.9654737, 46.1454156 ], + [ 5.9654654, 46.1452014 ], + [ 5.9654543, 46.1450429 ], + [ 5.9657602, 46.1449353 ], + [ 5.9656264, 46.1447528 ], + [ 5.9655264, 46.1446219 ], + [ 5.9653447, 46.1444432 ], + [ 5.9652974, 46.1442347 ], + [ 5.9652767, 46.1440878 ], + [ 5.9652666, 46.1438888 ], + [ 5.965255, 46.1437483 ], + [ 5.9652382, 46.1435952 ], + [ 5.9652841, 46.1433924 ], + [ 5.9652997, 46.1432343 ], + [ 5.9652560999999995, 46.1430826 ], + [ 5.9651968, 46.1429234 ], + [ 5.9651742, 46.1428035 ], + [ 5.9651894, 46.142675 ], + [ 5.9651925, 46.1425617 ], + [ 5.9652287, 46.1424614 ], + [ 5.9652493, 46.1423304 ], + [ 5.9652921, 46.1422301 ], + [ 5.9653706, 46.1421071 ], + [ 5.9654139, 46.1419834 ], + [ 5.9654165, 46.1418889 ], + [ 5.9653732999999995, 46.1417678 ], + [ 5.9653878, 46.1416061 ], + [ 5.9654322, 46.1414421 ], + [ 5.9655285, 46.1412921 ], + [ 5.9656488, 46.1410912 ], + [ 5.9657416, 46.140917 ], + [ 5.9659113999999995, 46.1407123 ], + [ 5.9661656, 46.1404043 ], + [ 5.9662968, 46.1401586 ], + [ 5.9666008999999995, 46.1398136 ], + [ 5.9667599, 46.1395907 ], + [ 5.9669379, 46.1394247 ], + [ 5.9671199, 46.1393371 ], + [ 5.9672706, 46.1391771 ], + [ 5.9672822, 46.1390307 ], + [ 5.9672825, 46.1388211 ], + [ 5.9673116, 46.1386586 ], + [ 5.9674527, 46.1386164 ], + [ 5.9676316, 46.1385962 ], + [ 5.9678843, 46.1384924 ], + [ 5.9681425, 46.1383231 ], + [ 5.9683771, 46.1381282 ], + [ 5.9682564, 46.1380474 ], + [ 5.9680888, 46.1380219 ], + [ 5.9679163, 46.1380304 ], + [ 5.9675926, 46.1380361 ], + [ 5.9673496, 46.1380158 ], + [ 5.967118, 46.1379669 ], + [ 5.9669655, 46.1378624 ], + [ 5.9668235, 46.1377634 ], + [ 5.9667151, 46.1376099 ], + [ 5.9665702, 46.1374047 ], + [ 5.9664947999999995, 46.1372336 ], + [ 5.9663894, 46.1370172 ], + [ 5.9662565, 46.1368059 ], + [ 5.9660964, 46.1365609 ], + [ 5.965933, 46.1363257 ], + [ 5.9658526, 46.1361394 ], + [ 5.965757, 46.1360859 ], + [ 5.965619, 46.1360274 ], + [ 5.9654912, 46.1359682 ], + [ 5.9653403, 46.1359393 ], + [ 5.9651797, 46.1358957 ], + [ 5.9649624, 46.1357975 ], + [ 5.9648457, 46.1357204 ], + [ 5.9647098, 46.1356124 ], + [ 5.9645851, 46.1354975 ], + [ 5.9644847, 46.1353829 ], + [ 5.9644075999999995, 46.1352568 ], + [ 5.9641278, 46.1349409 ], + [ 5.9639618, 46.1347569 ], + [ 5.9637885, 46.1346144 ], + [ 5.9635546, 46.1343621 ], + [ 5.9632414, 46.1340296 ], + [ 5.9629382, 46.1337126 ], + [ 5.9626886, 46.1334151 ], + [ 5.9625159, 46.1332383 ], + [ 5.962397, 46.1331504 ], + [ 5.9621515, 46.1330293 ], + [ 5.9619466, 46.1328611 ], + [ 5.9617749, 46.1326429 ], + [ 5.9616109, 46.1324437 ], + [ 5.9614971, 46.1322551 ], + [ 5.9613475, 46.1320939 ], + [ 5.9610635, 46.1318706 ], + [ 5.9607331, 46.1315595 ], + [ 5.9604924, 46.1313233 ], + [ 5.960430000000001, 46.1312388 ], + [ 5.9606667, 46.130954 ], + [ 5.9610592, 46.1307945 ], + [ 5.9611257, 46.1307644 ], + [ 5.9611468, 46.1307247 ], + [ 5.9610861, 46.1306099 ], + [ 5.9609509, 46.1305629 ], + [ 5.9606362, 46.1303465 ], + [ 5.9605687, 46.1302501 ], + [ 5.9598864, 46.1298317 ], + [ 5.958791, 46.1293979 ], + [ 5.957382, 46.1285504 ], + [ 5.9573313, 46.1285755 ], + [ 5.9568463, 46.1287568 ], + [ 5.9564457, 46.1318026 ], + [ 5.9559019, 46.1323556 ], + [ 5.9571235, 46.133275 ], + [ 5.9573792, 46.1334569 ], + [ 5.9576493, 46.1336284 ], + [ 5.9579328, 46.133789 ], + [ 5.9582291, 46.1339383 ], + [ 5.9585369, 46.1340756 ], + [ 5.9588554, 46.1342007 ], + [ 5.9623313, 46.1354753 ], + [ 5.9625094999999995, 46.1355329 ], + [ 5.9626917, 46.1355841 ], + [ 5.9631362, 46.1356922 ], + [ 5.9633573, 46.13575 ], + [ 5.9635738, 46.1358158 ], + [ 5.963785, 46.1358893 ], + [ 5.9639904999999995, 46.1359704 ], + [ 5.9641895, 46.1360589 ], + [ 5.9643817, 46.1361544 ], + [ 5.9649244, 46.1364393 ], + [ 5.9650783, 46.1365267 ], + [ 5.9652221999999995, 46.1366221 ], + [ 5.965355, 46.1367249 ], + [ 5.9654761, 46.1368345 ], + [ 5.9655848, 46.1369502 ], + [ 5.9656803, 46.1370714 ], + [ 5.9661669, 46.1377488 ], + [ 5.9662562999999995, 46.1378878 ], + [ 5.9663286, 46.1380315 ], + [ 5.9663831, 46.1381789 ], + [ 5.9664193999999995, 46.138329 ], + [ 5.9664374, 46.1384807 ], + [ 5.9664369, 46.1386329 ], + [ 5.9664178, 46.1387845 ], + [ 5.9663805, 46.1389345 ], + [ 5.9663249, 46.1390817 ], + [ 5.9662517, 46.1392252 ], + [ 5.9658385, 46.1399377 ], + [ 5.9657312, 46.1401096 ], + [ 5.9656728, 46.140194 ], + [ 5.9655465, 46.1403597 ], + [ 5.9654788, 46.1404407 ], + [ 5.9647705, 46.1412641 ], + [ 5.9646258, 46.1414578 ], + [ 5.9645308, 46.1416108 ], + [ 5.9644746, 46.1417159 ], + [ 5.9644247, 46.1418225 ], + [ 5.9643813, 46.1419305 ], + [ 5.9643443, 46.1420396 ], + [ 5.9641006, 46.143019 ], + [ 5.9640465, 46.1433117 ], + [ 5.964027, 46.1436066 ], + [ 5.9640424, 46.1439015 ], + [ 5.9640925, 46.1441945 ], + [ 5.964177, 46.1444838 ], + [ 5.9642953, 46.1447672 ], + [ 5.9647448999999995, 46.1456998 ], + [ 5.964881, 46.1459559 ], + [ 5.9650391, 46.1462057 ], + [ 5.9652188, 46.1464485 ], + [ 5.9654193, 46.1466832 ], + [ 5.9656399, 46.146909 ], + [ 5.9658798, 46.1471251 ], + [ 5.9665058, 46.1476548 ], + [ 5.9665935, 46.147735 ], + [ 5.9666724, 46.1478195 ], + [ 5.9667419, 46.1479078 ], + [ 5.9668018, 46.1479995 ], + [ 5.9668517, 46.148094 ], + [ 5.9668913, 46.1481909 ], + [ 5.9672997, 46.1493521 ], + [ 5.9673409, 46.1494558 ], + [ 5.967391, 46.1495577 ], + [ 5.9674498, 46.1496572 ], + [ 5.9687809, 46.1517332 ], + [ 5.9689049, 46.1519091 ], + [ 5.9690468, 46.1520782 ], + [ 5.9692061, 46.1522397 ], + [ 5.9718624, 46.1547346 ], + [ 5.9722176, 46.1550823 ], + [ 5.9725527, 46.1554395 ], + [ 5.9728673, 46.1558057 ], + [ 5.9731608, 46.1561802 ], + [ 5.9734328, 46.1565624 ], + [ 5.9736829, 46.1569519 ], + [ 5.9745878, 46.1584449 ], + [ 5.9746143, 46.1585057 ], + [ 5.9746483999999995, 46.1586304 ], + [ 5.9746559999999995, 46.1586937 ], + [ 5.9746553, 46.1589027 ], + [ 5.9746626, 46.1589654 ], + [ 5.9746961, 46.1590889 ], + [ 5.974722, 46.1591491 ], + [ 5.9757832, 46.1609201 ], + [ 5.9764016, 46.1619487 ], + [ 5.9764834, 46.1620755 ], + [ 5.9765744, 46.1621992 ], + [ 5.9766745, 46.1623195 ], + [ 5.9797648, 46.1658203 ], + [ 5.9799171, 46.1660069 ], + [ 5.9800508, 46.1662002 ], + [ 5.9801652999999995, 46.1663994 ], + [ 5.98026, 46.1666035 ], + [ 5.9803344, 46.1668117 ], + [ 5.9803882999999995, 46.1670229 ], + [ 5.9809826, 46.1699243 ], + [ 5.9809955, 46.1700051 ], + [ 5.9810056, 46.1701673 ], + [ 5.9809944999999995, 46.1703296 ], + [ 5.9809149, 46.1707239 ], + [ 5.9808987, 46.1708297 ], + [ 5.9808946, 46.170936 ], + [ 5.9809025, 46.1710423 ], + [ 5.9809224, 46.1711478 ], + [ 5.9809542, 46.1712518 ], + [ 5.9809978, 46.1713538 ], + [ 5.9818222, 46.1730388 ], + [ 5.9818756, 46.1731336 ], + [ 5.9819411, 46.1732246 ], + [ 5.9820182, 46.1733112 ], + [ 5.9821063, 46.1733926 ], + [ 5.9822045, 46.1734681 ], + [ 5.9823122, 46.1735371 ], + [ 5.9824285, 46.173599 ], + [ 5.9825523, 46.1736534 ], + [ 5.9826827, 46.1736998 ], + [ 5.9828187, 46.1737379 ], + [ 5.982959, 46.1737672 ], + [ 5.9831025, 46.1737876 ], + [ 5.9832482, 46.1737988 ], + [ 5.9833947, 46.1738009 ], + [ 5.9835408, 46.1737938 ], + [ 5.9836855, 46.1737775 ], + [ 5.9838274, 46.1737522 ], + [ 5.9839655, 46.1737181 ], + [ 5.9840985, 46.1736755 ], + [ 5.9842255, 46.1736246 ], + [ 5.9845065, 46.1735 ], + [ 5.9847709, 46.1733717 ], + [ 5.9850191, 46.1732286 ], + [ 5.9852494, 46.1730717 ], + [ 5.9854601, 46.172902 ], + [ 5.9856498, 46.1727208 ], + [ 5.9858173, 46.1725293 ], + [ 5.9859613, 46.1723287 ], + [ 5.9860808, 46.1721206 ], + [ 5.9861751, 46.1719063 ], + [ 5.9862435, 46.1716873 ], + [ 5.9863833, 46.1711281 ], + [ 5.9864017, 46.1710701 ], + [ 5.9864272, 46.1710135 ], + [ 5.9864598, 46.1709586 ], + [ 5.9864993, 46.170906 ], + [ 5.9865452, 46.170856 ], + [ 5.9865973, 46.170809 ], + [ 5.9866551, 46.1707653 ], + [ 5.9867182, 46.1707253 ], + [ 5.9867862, 46.1706894 ], + [ 5.9868584, 46.1706577 ], + [ 5.9869344, 46.1706306 ], + [ 5.9870135, 46.1706082 ], + [ 5.9870951, 46.1705907 ], + [ 5.9871786, 46.1705783 ], + [ 5.9872634, 46.170571 ], + [ 5.9873487999999995, 46.1705689 ], + [ 5.987434, 46.170572 ], + [ 5.9875186, 46.1705803 ], + [ 5.9876018, 46.1705938 ], + [ 5.987683, 46.1706123 ], + [ 5.9877614999999995, 46.1706357 ], + [ 5.9878367, 46.1706637 ], + [ 5.9879081, 46.1706963 ], + [ 5.9879751, 46.1707331 ], + [ 5.9880372, 46.1707738 ], + [ 5.9880939, 46.1708182 ], + [ 5.9881448, 46.1708659 ], + [ 5.9881895, 46.1709165 ], + [ 5.9885109, 46.1713192 ], + [ 5.9886115, 46.171456 ], + [ 5.9886984, 46.1715973 ], + [ 5.9887711, 46.1717424 ], + [ 5.9888295, 46.1718906 ], + [ 5.9888731, 46.1720412 ], + [ 5.9889019, 46.1721936 ], + [ 5.9890518, 46.1732729 ], + [ 5.989079, 46.1734349 ], + [ 5.9891157, 46.173596 ], + [ 5.9891616, 46.173756 ], + [ 5.9892168, 46.1739145 ], + [ 5.9892812, 46.1740714 ], + [ 5.9893546, 46.1742263 ], + [ 5.9899757, 46.1754541 ], + [ 5.9901042, 46.1756734 ], + [ 5.9902622, 46.1758831 ], + [ 5.9904483, 46.1760814 ], + [ 5.9906609, 46.1762664 ], + [ 5.990898, 46.1764364 ], + [ 5.9911574, 46.17659 ], + [ 5.9914366999999995, 46.1767256 ], + [ 5.9917334, 46.176842 ], + [ 5.9914199, 46.1771615 ], + [ 5.9914741, 46.1771881 ], + [ 5.9914254, 46.1772402 ], + [ 5.9913392, 46.1772874 ], + [ 5.9913218, 46.1772923 ], + [ 5.9913918, 46.177306 ], + [ 5.9916989, 46.1774155 ], + [ 5.9918859, 46.1774457 ], + [ 5.9923108, 46.1775385 ], + [ 5.9928064, 46.1775467 ], + [ 5.993268, 46.1775427 ], + [ 5.9937502, 46.1774724 ], + [ 5.9940912, 46.1774489 ], + [ 5.9944834, 46.1773755 ], + [ 5.9948573, 46.1773327 ], + [ 5.9953297, 46.1772956 ], + [ 5.9958246, 46.1772408 ], + [ 5.9961988, 46.1772015 ], + [ 5.9965834000000005, 46.1771515 ], + [ 5.9969729, 46.1771195 ], + [ 5.9972841, 46.1770569 ], + [ 5.9976327, 46.1769885 ], + [ 5.9980249, 46.1769162 ], + [ 5.9983457, 46.1768266 ], + [ 5.9986128999999995, 46.1768129 ], + [ 5.9989222, 46.17678 ], + [ 5.9993902, 46.1766519 ], + [ 5.9999692, 46.1765036 ], + [ 6.0005021, 46.1763881 ], + [ 6.0007963, 46.1763297 ], + [ 6.0010884, 46.1763011 ], + [ 6.0013662, 46.176238 ], + [ 6.001879, 46.1761447 ], + [ 6.0022224, 46.176078 ], + [ 6.002476, 46.1760371 ], + [ 6.0027216, 46.175962 ], + [ 6.0029839, 46.1758879 ], + [ 6.0032779, 46.1758359 ], + [ 6.0034423, 46.1757983 ], + [ 6.0037836, 46.1757658 ], + [ 6.0042284, 46.1757507 ], + [ 6.0045691, 46.175738 ], + [ 6.0047744, 46.1757191 ], + [ 6.0050006, 46.1757335 ], + [ 6.0051788, 46.1757664 ], + [ 6.0054256, 46.1758272 ], + [ 6.005635, 46.1759027 ], + [ 6.0058687, 46.1759696 ], + [ 6.0061263, 46.1760233 ], + [ 6.0063747, 46.1760912 ], + [ 6.0066078, 46.176185 ], + [ 6.0067835, 46.1762448 ], + [ 6.0068621, 46.1763178 ], + [ 6.006893, 46.1763749 ], + [ 6.0070284, 46.1763955 ], + [ 6.0071832, 46.1764209 ], + [ 6.0074406, 46.1764808 ], + [ 6.0077201, 46.1765807 ], + [ 6.0079926, 46.1766714 ], + [ 6.0082966, 46.176777799999996 ], + [ 6.0085538, 46.1768494 ], + [ 6.0085694, 46.176856 ], + [ 6.008558, 46.1768747 ], + [ 6.0082512, 46.177381 ], + [ 6.0078454, 46.1781776 ], + [ 6.0075883, 46.1787988 ], + [ 6.0074895, 46.1791575 ], + [ 6.0074089, 46.1793697 ], + [ 6.0072318, 46.1794556 ], + [ 6.0071022, 46.1794576 ], + [ 6.0067734, 46.1794003 ], + [ 6.0064897, 46.1793535 ], + [ 6.0063557, 46.179323 ], + [ 6.0063793, 46.1795042 ], + [ 6.0068103, 46.1808 ], + [ 6.0069259, 46.1810894 ], + [ 6.007017, 46.1812264 ], + [ 6.0071491, 46.1813756 ], + [ 6.0072923, 46.1815934 ], + [ 6.0074436, 46.1818004 ], + [ 6.007511, 46.1819479 ], + [ 6.007582, 46.1822952 ], + [ 6.0076088, 46.182616 ], + [ 6.0076013, 46.1829047 ], + [ 6.0076653, 46.1832716 ], + [ 6.0077476, 46.1835894 ], + [ 6.0077472, 46.1838035 ], + [ 6.0077086, 46.1839334 ], + [ 6.0075923, 46.1839869 ], + [ 6.0074625, 46.1839952 ], + [ 6.0073012, 46.1839732 ], + [ 6.0071016, 46.1838628 ], + [ 6.0069499, 46.1838303 ], + [ 6.0066587, 46.1838194 ], + [ 6.0064516, 46.1838591 ], + [ 6.0062942, 46.1840855 ], + [ 6.0059562, 46.1849127 ], + [ 6.0057224, 46.1857257 ], + [ 6.0056181, 46.1859988 ], + [ 6.0054732, 46.1861832 ], + [ 6.0052115, 46.1863464 ], + [ 6.0048793, 46.1865077 ], + [ 6.003536, 46.1871015 ], + [ 6.0031515, 46.1873405 ], + [ 6.0028797, 46.1875781 ], + [ 6.002495, 46.1880141 ], + [ 6.0020702, 46.188563 ], + [ 6.0017684, 46.1889515 ], + [ 6.0014939, 46.1893852 ], + [ 6.0011975, 46.1898178 ], + [ 6.0008378, 46.1901929 ], + [ 6.0003711, 46.1907916 ], + [ 6.0006313, 46.1911017 ], + [ 6.0004349, 46.1914744 ], + [ 6.000716, 46.1917173 ], + [ 6.0007691, 46.1918196 ], + [ 6.0006666, 46.1919308 ], + [ 6.0004704, 46.1920947 ], + [ 6.0002561, 46.1923565 ], + [ 6.0001475, 46.1925954 ], + [ 6.0000898, 46.1929275 ], + [ 6.0001137, 46.193429 ], + [ 6.0001489, 46.194366 ], + [ 6.0001726, 46.1952345 ], + [ 6.0001223, 46.1956173 ], + [ 6.0000464, 46.1960392 ], + [ 5.9999098, 46.1964918 ], + [ 5.9997638, 46.1966239 ], + [ 5.9996398, 46.1967186 ], + [ 5.9994838, 46.1967373 ], + [ 5.9992411, 46.1966973 ], + [ 5.9977757, 46.1964547 ], + [ 5.9976707, 46.1964632 ], + [ 5.9978785, 46.1965351 ], + [ 5.9981246, 46.1966318 ], + [ 5.9982727, 46.1967704 ], + [ 5.9983542, 46.196919 ], + [ 5.9983958, 46.1970618 ], + [ 5.9982321, 46.1974186 ], + [ 5.9980399, 46.1976896 ], + [ 5.9977986, 46.1978422 ], + [ 5.9976335, 46.197913 ], + [ 5.9975086, 46.1979367 ], + [ 5.9973143, 46.1979323 ], + [ 5.9969117, 46.1978624 ], + [ 5.9965885, 46.1978367 ], + [ 5.9963923999999995, 46.1978549 ], + [ 5.9962756, 46.1979082 ], + [ 5.9962657, 46.1979936 ], + [ 5.9971906, 46.1981396 ], + [ 5.997313, 46.1981644 ], + [ 5.99744, 46.1982173 ], + [ 5.9974637, 46.1984093 ], + [ 5.997453, 46.1992998 ], + [ 5.9973013, 46.1997361 ], + [ 5.9970793, 46.2000922 ], + [ 5.9966448, 46.200353 ], + [ 5.9961614, 46.2006077 ], + [ 5.9955559, 46.2009033 ], + [ 5.995093, 46.2010728 ], + [ 5.9946167, 46.2011972 ], + [ 5.9941571, 46.2012768 ], + [ 5.9938217, 46.2013147 ], + [ 5.9936366, 46.2013168 ], + [ 5.9934792, 46.2013401 ], + [ 5.993437, 46.201407 ], + [ 5.9934612, 46.2015765 ], + [ 5.9935315, 46.2018103 ], + [ 5.9934973, 46.2019673 ], + [ 5.9933943, 46.2020938 ], + [ 5.9932849, 46.202204 ], + [ 5.9930753, 46.2021544 ], + [ 5.9926808, 46.2020658 ], + [ 5.9922269, 46.202033 ], + [ 5.9918542, 46.2020246 ], + [ 5.9913745, 46.202077 ], + [ 5.9909578, 46.2021121 ], + [ 5.9905352, 46.2021022 ], + [ 5.9900269, 46.2020795 ], + [ 5.9895634, 46.2020573 ], + [ 5.9894112, 46.2020428 ], + [ 5.9886163, 46.2018103 ], + [ 5.9885325, 46.2018875 ], + [ 5.988474, 46.2019579 ], + [ 5.9883316, 46.2019956 ], + [ 5.9880984, 46.2019944 ], + [ 5.9878554, 46.2019661 ], + [ 5.9876512, 46.2019572 ], + [ 5.9875001999999995, 46.2019238 ], + [ 5.9873238, 46.2016903 ], + [ 5.9867501, 46.2013383 ], + [ 5.9863195, 46.2011636 ], + [ 5.9858562, 46.201002 ], + [ 5.9853091, 46.2009105 ], + [ 5.9848306000000004, 46.2008764 ], + [ 5.9843258, 46.2008987 ], + [ 5.983976, 46.2009473 ], + [ 5.9838626, 46.2009332 ], + [ 5.9837622, 46.2008113 ], + [ 5.983624, 46.2006504 ], + [ 5.9835608, 46.2005883 ], + [ 5.9832084, 46.2006864 ], + [ 5.9827557, 46.2007885 ], + [ 5.9824231999999995, 46.200821 ], + [ 5.9822766, 46.2008219 ], + [ 5.9821329, 46.2007742 ], + [ 5.9819901, 46.2006914 ], + [ 5.981868, 46.200553 ], + [ 5.9817005, 46.2003196 ], + [ 5.9815553, 46.2000838 ], + [ 5.981477, 46.1999128 ], + [ 5.9814311, 46.1998393 ], + [ 5.9812756, 46.1998409 ], + [ 5.9805065, 46.199965 ], + [ 5.9803123, 46.1999598 ], + [ 5.9802315, 46.1999246 ], + [ 5.9801334, 46.19981 ], + [ 5.9800464, 46.1997288 ], + [ 5.9799543, 46.1996295 ], + [ 5.9798482, 46.1996785 ], + [ 5.9796339, 46.1997414 ], + [ 5.979438, 46.1997533 ], + [ 5.9792531, 46.1996879 ], + [ 5.9790332, 46.1995249 ], + [ 5.9788478, 46.1993399 ], + [ 5.9786635, 46.1991144 ], + [ 5.9785126, 46.1988857 ], + [ 5.9784544, 46.1987492 ], + [ 5.978368, 46.1985437 ], + [ 5.9781563, 46.1982235 ], + [ 5.9779209, 46.1979091 ], + [ 5.9776573, 46.1976429 ], + [ 5.9773155, 46.1973416 ], + [ 5.977175, 46.1972192 ], + [ 5.9770643, 46.1971558 ], + [ 5.976903, 46.1971293 ], + [ 5.9760515, 46.1970806 ], + [ 5.9758109, 46.1970297 ], + [ 5.9754885, 46.1969725 ], + [ 5.9752104, 46.1968915 ], + [ 5.9749771, 46.196803 ], + [ 5.9748827, 46.1967487 ], + [ 5.9748536, 46.1966692 ], + [ 5.975021, 46.1965715 ], + [ 5.9751056, 46.1965168 ], + [ 5.9751176, 46.196445 ], + [ 5.9749711, 46.1962613 ], + [ 5.9748158, 46.1961046 ], + [ 5.9746448, 46.1959602 ], + [ 5.9743391, 46.1957619 ], + [ 5.9740245, 46.1955671 ], + [ 5.9736514, 46.1953625 ], + [ 5.9733662, 46.1950853 ], + [ 5.9732118, 46.1949123 ], + [ 5.9731123, 46.1947563 ], + [ 5.9731176, 46.1946511 ], + [ 5.9730822, 46.1945642 ], + [ 5.9729452, 46.1945112 ], + [ 5.9727969, 46.19444 ], + [ 5.9727247, 46.1943706 ], + [ 5.9727585, 46.1942253 ], + [ 5.9728638, 46.1940584 ], + [ 5.9729589, 46.1938959 ], + [ 5.9729801, 46.1938296 ], + [ 5.9729765, 46.1938258 ], + [ 5.9718682, 46.1941815 ], + [ 5.9673684, 46.1957473 ], + [ 5.9637266, 46.1970078 ], + [ 5.9637369, 46.197041 ], + [ 5.9637604, 46.197046 ], + [ 5.9638317999999995, 46.1970885 ], + [ 5.9638026, 46.1971047 ], + [ 5.9637545, 46.1971585 ], + [ 5.9637576, 46.1972057 ], + [ 5.9638734, 46.1973002 ], + [ 5.9639584, 46.1973345 ], + [ 5.9639664, 46.1973533 ], + [ 5.9639597, 46.197364 ], + [ 5.963864, 46.1973951 ], + [ 5.9638523, 46.1974284 ], + [ 5.9639061, 46.1974542 ], + [ 5.9639273, 46.1974716 ], + [ 5.9639396, 46.1974903 ], + [ 5.9639661, 46.197505 ], + [ 5.9640293, 46.1975271 ], + [ 5.9640736, 46.1975669 ], + [ 5.9640838, 46.1975832 ], + [ 5.9641025, 46.1976388 ], + [ 5.9640761, 46.1976576 ], + [ 5.9640587, 46.1976794 ], + [ 5.9640547999999995, 46.1976933 ], + [ 5.9640661999999995, 46.1977203 ], + [ 5.9640939, 46.1977224 ], + [ 5.9641623, 46.1977011 ], + [ 5.9641639, 46.1976896 ], + [ 5.9641782, 46.1976745 ], + [ 5.9642257, 46.1976858 ], + [ 5.9642591, 46.1977453 ], + [ 5.9642513, 46.1977884 ], + [ 5.964258, 46.1978164 ], + [ 5.9642831, 46.1978432 ], + [ 5.9643139, 46.1978518 ], + [ 5.9643546, 46.1978758 ], + [ 5.9644188, 46.197924 ], + [ 5.9644575, 46.1979619 ], + [ 5.964466, 46.1979966 ], + [ 5.9644563999999995, 46.1980462 ], + [ 5.9644680999999995, 46.1980621 ], + [ 5.9644807, 46.1981041 ], + [ 5.9644829999999995, 46.1981183 ], + [ 5.9644782, 46.1981331 ], + [ 5.9645109, 46.1981864 ], + [ 5.9645697, 46.198211 ], + [ 5.96463, 46.1982192 ], + [ 5.964648, 46.1982361 ], + [ 5.9646501999999995, 46.1982828 ], + [ 5.9646301, 46.1983114 ], + [ 5.9645959, 46.1983314 ], + [ 5.9645893, 46.1983444 ], + [ 5.964595, 46.1983896 ], + [ 5.9646249000000005, 46.1983936 ], + [ 5.9646555, 46.1984124 ], + [ 5.9646608, 46.1984741 ], + [ 5.9646399, 46.1985235 ], + [ 5.9646504, 46.1985765 ], + [ 5.9646671, 46.198602 ], + [ 5.9646694, 46.198711 ], + [ 5.9646564, 46.1987913 ], + [ 5.9646787, 46.1988234 ], + [ 5.9647453, 46.1988687 ], + [ 5.9648636, 46.1989689 ], + [ 5.9649393, 46.1989933 ], + [ 5.9649735, 46.1989863 ], + [ 5.9649998, 46.1989945 ], + [ 5.9650967, 46.1990064 ], + [ 5.9651568, 46.1989949 ], + [ 5.9651891, 46.1990062 ], + [ 5.9652385, 46.1990319 ], + [ 5.9652818, 46.1991116 ], + [ 5.965408, 46.1992946 ], + [ 5.9654443, 46.1993261 ], + [ 5.9654647, 46.1993611 ], + [ 5.9655448, 46.1994617 ], + [ 5.9656353, 46.1995323 ], + [ 5.9657376, 46.1995673 ], + [ 5.9659153, 46.1996435 ], + [ 5.9660485, 46.1996871 ], + [ 5.9660914, 46.1996929 ], + [ 5.9662324, 46.199638 ], + [ 5.9662444, 46.1996269 ], + [ 5.9662762, 46.1996293 ], + [ 5.9663009, 46.1996448 ], + [ 5.966354, 46.1996902 ], + [ 5.9663937, 46.199713 ], + [ 5.9664836, 46.1997794 ], + [ 5.9665862, 46.1998181 ], + [ 5.9666341, 46.1998402 ], + [ 5.9666771999999995, 46.1998774 ], + [ 5.9666989, 46.1999151 ], + [ 5.9667033, 46.1999415 ], + [ 5.9667445, 46.1999842 ], + [ 5.966781, 46.2000034 ], + [ 5.9668551, 46.1999997 ], + [ 5.9668725, 46.1999932 ], + [ 5.9669366, 46.1999405 ], + [ 5.9670274, 46.1998783 ], + [ 5.9671427, 46.199887 ], + [ 5.9672667, 46.1999432 ], + [ 5.9673332, 46.2000377 ], + [ 5.9674096, 46.2001001 ], + [ 5.9674911999999996, 46.2001312 ], + [ 5.9675545, 46.2001789 ], + [ 5.9675443999999995, 46.2002355 ], + [ 5.9675286, 46.2002542 ], + [ 5.9675556, 46.2002724 ], + [ 5.9675927, 46.2002821 ], + [ 5.9677502, 46.200235 ], + [ 5.9677633, 46.2002047 ], + [ 5.9677467, 46.2001343 ], + [ 5.9677787, 46.2001081 ], + [ 5.967822, 46.2000935 ], + [ 5.9678942, 46.2001159 ], + [ 5.9679465, 46.2001487 ], + [ 5.9679866, 46.2002083 ], + [ 5.9680175, 46.2002365 ], + [ 5.9680494, 46.2002443 ], + [ 5.9681223, 46.2002464 ], + [ 5.9681285, 46.2002026 ], + [ 5.9681169, 46.2001604 ], + [ 5.9681318999999995, 46.2000229 ], + [ 5.9681799, 46.2000159 ], + [ 5.9682122, 46.2000176 ], + [ 5.9682451, 46.200038 ], + [ 5.9683108, 46.2001167 ], + [ 5.9683483, 46.2001415 ], + [ 5.9684428, 46.2001867 ], + [ 5.9685289, 46.2002175 ], + [ 5.9686223, 46.2002668 ], + [ 5.968657, 46.2003079 ], + [ 5.9686957, 46.2003667 ], + [ 5.9687176, 46.2004371 ], + [ 5.9687241, 46.2005104 ], + [ 5.9687324, 46.2005405 ], + [ 5.9687261, 46.200607 ], + [ 5.9687503, 46.200632 ], + [ 5.9687852, 46.2006368 ], + [ 5.9690065, 46.2005564 ], + [ 5.9690476, 46.2005216 ], + [ 5.9691043, 46.2005139 ], + [ 5.9691595, 46.2005332 ], + [ 5.9691939, 46.2005835 ], + [ 5.9691773, 46.2007112 ], + [ 5.9691839, 46.2007601 ], + [ 5.9692108, 46.2008046 ], + [ 5.9692573, 46.2009059 ], + [ 5.9692827, 46.2009982 ], + [ 5.9692748, 46.2010725 ], + [ 5.9692525, 46.2011258 ], + [ 5.9692351, 46.2011922 ], + [ 5.9692461, 46.2012191 ], + [ 5.9692969, 46.2012321 ], + [ 5.9693469, 46.2012259 ], + [ 5.9693781, 46.2012093 ], + [ 5.9694739, 46.2011812 ], + [ 5.9695333999999995, 46.201156 ], + [ 5.969575, 46.2011014 ], + [ 5.9696812, 46.2010705 ], + [ 5.9697098, 46.2010348 ], + [ 5.9697652, 46.2010411 ], + [ 5.9698343, 46.2011559 ], + [ 5.9699525, 46.2012027 ], + [ 5.9700285, 46.201221 ], + [ 5.9701251, 46.201283 ], + [ 5.9701958, 46.2013525 ], + [ 5.9702953999999995, 46.2014258 ], + [ 5.970321, 46.2014501 ], + [ 5.9703636, 46.201469 ], + [ 5.970395, 46.2014764 ], + [ 5.9704515, 46.2014645 ], + [ 5.970467, 46.2014702 ], + [ 5.9704821, 46.2015116 ], + [ 5.9704552, 46.201625 ], + [ 5.9704783, 46.2016887 ], + [ 5.970518, 46.201726 ], + [ 5.9705896, 46.2017085 ], + [ 5.9706153, 46.2016744 ], + [ 5.9708193, 46.2015911 ], + [ 5.9708427, 46.2015641 ], + [ 5.9708875, 46.2015407 ], + [ 5.9709607, 46.2015403 ], + [ 5.9710167, 46.2015649 ], + [ 5.971039, 46.2016169 ], + [ 5.9710772, 46.2016444 ], + [ 5.9711203, 46.2016501 ], + [ 5.9711822, 46.2016414 ], + [ 5.9713549, 46.2015702 ], + [ 5.9714271, 46.2015909 ], + [ 5.9715278, 46.2015903 ], + [ 5.9715708, 46.2016112 ], + [ 5.9716552, 46.2016731 ], + [ 5.9717082999999995, 46.2017023 ], + [ 5.971766, 46.2017689 ], + [ 5.9719701, 46.2019659 ], + [ 5.9720404, 46.2020858 ], + [ 5.9720916, 46.2021316 ], + [ 5.972107, 46.2021552 ], + [ 5.97215, 46.2021821 ], + [ 5.9722029, 46.2021828 ], + [ 5.9722301, 46.2021634 ], + [ 5.97224, 46.2021621 ], + [ 5.9722791, 46.2021655 ], + [ 5.9723071999999995, 46.2021615 ], + [ 5.9723203, 46.2021303 ], + [ 5.9723652, 46.202117 ], + [ 5.9724183, 46.2021256 ], + [ 5.9724626999999995, 46.2021274 ], + [ 5.9726224, 46.202159 ], + [ 5.9726835, 46.2021736 ], + [ 5.9727383, 46.2021949 ], + [ 5.972728, 46.202241 ], + [ 5.972718, 46.2022513 ], + [ 5.9726834, 46.2022703 ], + [ 5.972641, 46.2022602 ], + [ 5.972604, 46.2022646 ], + [ 5.9725705, 46.2022849 ], + [ 5.9725605999999996, 46.2023112 ], + [ 5.9725544, 46.2023538 ], + [ 5.9725317, 46.2023803 ], + [ 5.9725421, 46.2024022 ], + [ 5.9725968, 46.2024162 ], + [ 5.972651, 46.2024233 ], + [ 5.9727795, 46.2024125 ], + [ 5.9728058, 46.2024131 ], + [ 5.9728737, 46.2024198 ], + [ 5.9730032, 46.2024393 ], + [ 5.9730887, 46.202459 ], + [ 5.9732644, 46.2024915 ], + [ 5.9733932, 46.2025336 ], + [ 5.9734299, 46.2025752 ], + [ 5.9734437, 46.2026281 ], + [ 5.9733996, 46.2026861 ], + [ 5.973397, 46.2027096 ], + [ 5.9734308, 46.2027358 ], + [ 5.9734853, 46.20275 ], + [ 5.9735182, 46.2027778 ], + [ 5.9734437, 46.2028164 ], + [ 5.9733903999999995, 46.2028345 ], + [ 5.973278, 46.2028609 ], + [ 5.9732529, 46.2029313 ], + [ 5.9732074, 46.202973 ], + [ 5.9731551, 46.2029907 ], + [ 5.9731026, 46.2030219 ], + [ 5.9730527, 46.2030877 ], + [ 5.9730359, 46.2031724 ], + [ 5.9729928, 46.2032316 ], + [ 5.9729186, 46.2032552 ], + [ 5.9728858, 46.2032896 ], + [ 5.972831, 46.2033278 ], + [ 5.9727823, 46.2033398 ], + [ 5.9727757, 46.2033557 ], + [ 5.9727813, 46.2033723 ], + [ 5.9728131, 46.2034013 ], + [ 5.9728364, 46.2034129 ], + [ 5.9728746, 46.2034437 ], + [ 5.9728823, 46.2034627 ], + [ 5.972876, 46.203484 ], + [ 5.9728476, 46.2035014 ], + [ 5.972835, 46.2035206 ], + [ 5.9728316, 46.2036002 ], + [ 5.9728088, 46.2036172 ], + [ 5.9726951, 46.2036508 ], + [ 5.9726626, 46.2036568 ], + [ 5.9726194, 46.2036814 ], + [ 5.9725793, 46.2036963 ], + [ 5.9725522, 46.2037152 ], + [ 5.9724974, 46.2037411 ], + [ 5.9723777, 46.2037656 ], + [ 5.9723439, 46.2037889 ], + [ 5.9721767, 46.203851 ], + [ 5.972082, 46.2038567 ], + [ 5.9720227, 46.2038792 ], + [ 5.9719472, 46.2039342 ], + [ 5.9719207, 46.2039664 ], + [ 5.9719103, 46.2039961 ], + [ 5.9718883, 46.2040158 ], + [ 5.9717609, 46.2040817 ], + [ 5.9717101, 46.2041296 ], + [ 5.9716313, 46.204175 ], + [ 5.9715931, 46.2041884 ], + [ 5.9715239, 46.2042541 ], + [ 5.9714107, 46.2042789 ], + [ 5.9713560999999995, 46.2043258 ], + [ 5.9712092, 46.2043327 ], + [ 5.9711167, 46.204298 ], + [ 5.9709269, 46.2043303 ], + [ 5.9708448, 46.2043652 ], + [ 5.9707455, 46.2043834 ], + [ 5.9707503, 46.2044304 ], + [ 5.970732, 46.2044493 ], + [ 5.9707125, 46.2044561 ], + [ 5.9706835, 46.2044553 ], + [ 5.9706553, 46.204461 ], + [ 5.9706491, 46.2045054 ], + [ 5.9706765, 46.2045919 ], + [ 5.9707471, 46.2046694 ], + [ 5.9707639, 46.2047018 ], + [ 5.970732, 46.2047487 ], + [ 5.9707224, 46.2047815 ], + [ 5.9707253, 46.2048108 ], + [ 5.9708176, 46.2048774 ], + [ 5.9708245, 46.2049047 ], + [ 5.9708184, 46.2049234 ], + [ 5.9707796, 46.2049523 ], + [ 5.9707026, 46.2049746 ], + [ 5.9706329, 46.2050021 ], + [ 5.9705879, 46.2050297 ], + [ 5.9705657, 46.2050523 ], + [ 5.9705272, 46.2050784 ], + [ 5.9704975, 46.2050918 ], + [ 5.9704708, 46.2051109 ], + [ 5.970434, 46.2051222 ], + [ 5.9703531, 46.2051668 ], + [ 5.9702619, 46.2052028 ], + [ 5.97022, 46.2052238 ], + [ 5.9701871, 46.2052629 ], + [ 5.9701863, 46.2053023 ], + [ 5.9700985, 46.2055102 ], + [ 5.9700902, 46.2055378 ], + [ 5.9700898, 46.2055772 ], + [ 5.9700385, 46.2056767 ], + [ 5.9699583, 46.2057672 ], + [ 5.9699174, 46.2058489 ], + [ 5.9698147, 46.2058928 ], + [ 5.969774, 46.2059693 ], + [ 5.9697623, 46.2060009 ], + [ 5.9699314999999995, 46.2060244 ], + [ 5.9702459999999995, 46.2060807 ], + [ 5.9703963, 46.2061366 ], + [ 5.9705551, 46.206208 ], + [ 5.9706814, 46.2062717 ], + [ 5.9707773, 46.2063188 ], + [ 5.9709221, 46.2063405 ], + [ 5.9710303, 46.2063086 ], + [ 5.9711824, 46.2061927 ], + [ 5.9713391, 46.2061021 ], + [ 5.9714665, 46.2060489 ], + [ 5.9715676, 46.2060844 ], + [ 5.9718433, 46.2062984 ], + [ 5.9722524, 46.2066979 ], + [ 5.9726576, 46.2070504 ], + [ 5.9727621, 46.2071094 ], + [ 5.9729509, 46.2070344 ], + [ 5.9741589, 46.2061044 ], + [ 5.974266, 46.2060347 ], + [ 5.9743908999999995, 46.2060148 ], + [ 5.974763, 46.2060457 ], + [ 5.9753348, 46.2060927 ], + [ 5.9757029, 46.2060947 ], + [ 5.975856, 46.206076 ], + [ 5.9759797, 46.206056 ], + [ 5.9760488, 46.2060012 ], + [ 5.9761047, 46.2058516 ], + [ 5.9760602, 46.2054219 ], + [ 5.9759986, 46.2050189 ], + [ 5.975981, 46.204845 ], + [ 5.9760023, 46.2047328 ], + [ 5.9760053, 46.2046654 ], + [ 5.9761159, 46.2046048 ], + [ 5.9762721, 46.2045357 ], + [ 5.9766769, 46.2044214 ], + [ 5.9769382, 46.2043869 ], + [ 5.9771433, 46.2043347 ], + [ 5.9773076, 46.2042891 ], + [ 5.9774007000000005, 46.2042507 ], + [ 5.9774429, 46.2041685 ], + [ 5.9774737, 46.2040942 ], + [ 5.9775312, 46.2040167 ], + [ 5.9776413999999995, 46.203974 ], + [ 5.9778035, 46.2039671 ], + [ 5.9800438, 46.2043074 ], + [ 5.9801378, 46.2041853 ], + [ 5.9802556, 46.2040978 ], + [ 5.9804547, 46.2040122 ], + [ 5.9808686, 46.2038574 ], + [ 5.9823217, 46.2033561 ], + [ 5.9825786, 46.2032837 ], + [ 5.9827199, 46.2031965 ], + [ 5.9829196, 46.2030885 ], + [ 5.9833413, 46.2029742 ], + [ 5.98367, 46.2028912 ], + [ 5.9839985, 46.2028136 ], + [ 5.9843250999999995, 46.2027709 ], + [ 5.9846675, 46.2027501 ], + [ 5.9850085, 46.2027465 ], + [ 5.9853489, 46.2027653 ], + [ 5.9855959, 46.2028278 ], + [ 5.9858461, 46.2028788 ], + [ 5.9861394, 46.2030049 ], + [ 5.9864472, 46.2032193 ], + [ 5.9866826, 46.2035292 ], + [ 5.9869993, 46.2038931 ], + [ 5.9873289, 46.2042617 ], + [ 5.9875234, 46.2044513 ], + [ 5.9876337, 46.2045508 ], + [ 5.9877824, 46.2046103 ], + [ 5.9879535, 46.2046485 ], + [ 5.9880641, 46.2046886 ], + [ 5.9881792, 46.2047936 ], + [ 5.9882542999999995, 46.2049367 ], + [ 5.9891728, 46.204755 ], + [ 5.9893937, 46.2047309 ], + [ 5.9895397, 46.2047526 ], + [ 5.9896339, 46.2048041 ], + [ 5.9897335, 46.2049152 ], + [ 5.9900594, 46.2054295 ], + [ 5.9902839, 46.2058075 ], + [ 5.9904576, 46.2060481 ], + [ 5.990522, 46.2062461 ], + [ 5.990425, 46.2063906 ], + [ 5.9902578, 46.2064946 ], + [ 5.9901495, 46.2065598 ], + [ 5.9898771, 46.206621 ], + [ 5.9896306, 46.2066872 ], + [ 5.9894141, 46.2067906 ], + [ 5.9893249, 46.2069738 ], + [ 5.9891114, 46.2073409 ], + [ 5.9888449, 46.2080113 ], + [ 5.9887395, 46.2081674 ], + [ 5.9886886, 46.2082406 ], + [ 5.9885949, 46.208288 ], + [ 5.9884642, 46.2082845 ], + [ 5.9880919, 46.2082599 ], + [ 5.9876318, 46.2082612 ], + [ 5.9871417000000005, 46.2083107 ], + [ 5.9866491, 46.2084231 ], + [ 5.986156, 46.2085356 ], + [ 5.9858947, 46.2085709 ], + [ 5.9855779, 46.2085452 ], + [ 5.9851523, 46.2084678 ], + [ 5.9829785, 46.2077524 ], + [ 5.9827559, 46.2076569 ], + [ 5.9826612, 46.2076097 ], + [ 5.9825583, 46.2073817 ], + [ 5.98247, 46.207206 ], + [ 5.9824579, 46.2071087 ], + [ 5.9823177, 46.2069765 ], + [ 5.9821617, 46.2068601 ], + [ 5.9820422, 46.2067714 ], + [ 5.9819393, 46.2067422 ], + [ 5.981872, 46.2067908 ], + [ 5.981881, 46.2069375 ], + [ 5.982066, 46.2071333 ], + [ 5.9821235999999995, 46.207315 ], + [ 5.9821073, 46.2074388 ], + [ 5.9820632, 46.2075282 ], + [ 5.9819351, 46.207622 ], + [ 5.9817706, 46.2076748 ], + [ 5.9815691, 46.2076965 ], + [ 5.9813882, 46.207722 ], + [ 5.9809661, 46.207712 ], + [ 5.9806913999999995, 46.2076995 ], + [ 5.9805600000000005, 46.2077186 ], + [ 5.9805924, 46.2080536 ], + [ 5.980626, 46.2083582 ], + [ 5.9807508, 46.2084858 ], + [ 5.9810195, 46.2086161 ], + [ 5.9835739, 46.2098637 ], + [ 5.9837178, 46.2099077 ], + [ 5.9838211, 46.2099208 ], + [ 5.9839531, 46.2098902 ], + [ 5.9845081, 46.2098243 ], + [ 5.985089, 46.2097589 ], + [ 5.9854218, 46.2097326 ], + [ 5.9857076, 46.2097507 ], + [ 5.9863611, 46.2097879 ], + [ 5.9867827, 46.209814 ], + [ 5.9870027, 46.2098259 ], + [ 5.9870992, 46.209855 ], + [ 5.9872004, 46.2099022 ], + [ 5.9873028999999995, 46.2099899 ], + [ 5.9874003, 46.2101396 ], + [ 5.9875343999999995, 46.2102546 ], + [ 5.9877763, 46.2104188 ], + [ 5.9884066, 46.210686 ], + [ 5.9891308, 46.2109463 ], + [ 5.9898348, 46.2111812 ], + [ 5.9905029, 46.2113427 ], + [ 5.9907749, 46.2114055 ], + [ 5.9910644, 46.2114866 ], + [ 5.9914856, 46.2116252 ], + [ 5.9917728, 46.211744 ], + [ 5.9919933, 46.2118918 ], + [ 5.9921974, 46.2120139 ], + [ 5.9923073, 46.2121179 ], + [ 5.9923171, 46.2122305 ], + [ 5.9922899, 46.2123274 ], + [ 5.9921292, 46.2124297 ], + [ 5.9909932999999995, 46.2130756 ], + [ 5.9909012, 46.213168 ], + [ 5.9908643999999995, 46.2132458 ], + [ 5.9908964000000005, 46.2134117 ], + [ 5.9911028, 46.2141763 ], + [ 5.9912323, 46.2147098 ], + [ 5.9912594, 46.2149585 ], + [ 5.9912922, 46.2151352 ], + [ 5.9914372, 46.2152892 ], + [ 5.9914713, 46.2154644 ], + [ 5.9914784999999995, 46.2154617 ], + [ 5.9915258, 46.2154521 ], + [ 5.9916193, 46.215463 ], + [ 5.9918568, 46.2155284 ], + [ 5.9919454, 46.2155338 ], + [ 5.9920493, 46.2155003 ], + [ 5.9921312, 46.2154505 ], + [ 5.9921657, 46.2154221 ], + [ 5.9922368, 46.2153768 ], + [ 5.9923986, 46.2152886 ], + [ 5.9924162, 46.2152839 ], + [ 5.9924766, 46.2152459 ], + [ 5.9925059, 46.2152343 ], + [ 5.9926209, 46.215224 ], + [ 5.9926354, 46.2152303 ], + [ 5.9927752, 46.2152213 ], + [ 5.9929988, 46.2156046 ], + [ 5.9932727, 46.2162826 ], + [ 5.99334, 46.2166935 ], + [ 5.993654, 46.2173135 ], + [ 5.9935510999999995, 46.2178985 ], + [ 5.9934275, 46.2181848 ], + [ 5.9929065999999995, 46.2190361 ], + [ 5.9915927, 46.2198112 ], + [ 5.9914100999999995, 46.2200062 ], + [ 5.9912666, 46.2202624 ], + [ 5.991079, 46.2208101 ], + [ 5.9908973, 46.2211291 ], + [ 5.9906578, 46.2214266 ], + [ 5.9901864, 46.2217188 ], + [ 5.9928512, 46.2229539 ], + [ 5.9929153, 46.2229622 ], + [ 5.9929444, 46.2229607 ], + [ 5.992972, 46.2229541 ], + [ 5.9929906, 46.2229412 ], + [ 5.9930673, 46.2229083 ], + [ 5.9931151, 46.2228941 ], + [ 5.9931671, 46.2228895 ], + [ 5.9932242, 46.2228657 ], + [ 5.9932932, 46.2228119 ], + [ 5.9933344, 46.2228019 ], + [ 5.9933651, 46.2227799 ], + [ 5.9933951, 46.2227757 ], + [ 5.9934092, 46.2227618 ], + [ 5.9934213, 46.2227118 ], + [ 5.9934724, 46.222691 ], + [ 5.9935316, 46.2226839 ], + [ 5.9936196, 46.2226836 ], + [ 5.9937092, 46.22267 ], + [ 5.9937635, 46.2226429 ], + [ 5.9938982, 46.2225949 ], + [ 5.9939948, 46.222573 ], + [ 5.9940502, 46.2225177 ], + [ 5.9940656, 46.2225084 ], + [ 5.9941187, 46.2224861 ], + [ 5.9941787, 46.2224777 ], + [ 5.9942782999999995, 46.2224297 ], + [ 5.9943615999999995, 46.2224258 ], + [ 5.9946069, 46.2224358 ], + [ 5.9946945, 46.2224472 ], + [ 5.9948426999999995, 46.222519 ], + [ 5.9949281, 46.2225054 ], + [ 5.9950213, 46.222517 ], + [ 5.9950443, 46.2225231 ], + [ 5.9951169, 46.2225654 ], + [ 5.9951811, 46.222591 ], + [ 5.9952684, 46.2225942 ], + [ 5.9955096, 46.222547 ], + [ 5.9957953, 46.2224728 ], + [ 5.9961227, 46.2223553 ], + [ 5.9963726, 46.2223534 ], + [ 5.9965533, 46.2223084 ], + [ 5.9967725, 46.2222905 ], + [ 5.9968486, 46.2223148 ], + [ 5.9970293, 46.2223406 ], + [ 5.9972843, 46.2222987 ], + [ 5.9973743, 46.2222998 ], + [ 5.9974798, 46.2222665 ], + [ 5.9975689, 46.2222682 ], + [ 5.9976686, 46.2222291 ], + [ 5.9977709, 46.2222043 ], + [ 5.9978118, 46.2221663 ], + [ 5.9978470999999995, 46.2221512 ], + [ 5.9978911, 46.2221425 ], + [ 5.9979482, 46.2221427 ], + [ 5.9980179, 46.2221376 ], + [ 5.998069, 46.2221079 ], + [ 5.9981329, 46.2220835 ], + [ 5.9983454, 46.2219824 ], + [ 5.9984825, 46.2219264 ], + [ 5.9986123, 46.2218475 ], + [ 5.9986856, 46.2217477 ], + [ 5.9987682, 46.2216805 ], + [ 5.9988198, 46.2216587 ], + [ 5.9988604, 46.2216336 ], + [ 5.9989801, 46.2216296 ], + [ 5.9990993, 46.221618 ], + [ 5.9991482, 46.2215925 ], + [ 5.999163, 46.2215545 ], + [ 5.9992146, 46.2214892 ], + [ 5.9992323, 46.2214552 ], + [ 5.9992535, 46.2214298 ], + [ 5.9993528, 46.2213576 ], + [ 5.9994807, 46.2211958 ], + [ 5.9995036, 46.2211212 ], + [ 5.9995027, 46.2210921 ], + [ 5.9995742, 46.2210954 ], + [ 6.0000252, 46.2200551 ], + [ 6.0000356, 46.220031 ], + [ 6.0001701, 46.2200703 ], + [ 6.0002939, 46.2201251 ], + [ 6.0003736, 46.2201404 ], + [ 6.0006537, 46.2202338 ], + [ 6.0011113, 46.2203933 ], + [ 6.0013278, 46.2204274 ], + [ 6.0015391, 46.2205001 ], + [ 6.0016573, 46.2205924 ], + [ 6.0017954, 46.220721 ], + [ 6.0020138, 46.2211223 ], + [ 6.0021434, 46.2212858 ], + [ 6.002316, 46.2215284 ], + [ 6.0025261, 46.2217746 ], + [ 6.0025686, 46.2219072 ], + [ 6.0026094, 46.2219706 ], + [ 6.00275, 46.2221247 ], + [ 6.002781, 46.2221441 ], + [ 6.0028531, 46.2222231 ], + [ 6.0029067, 46.2223109 ], + [ 6.0030582, 46.2224204 ], + [ 6.0031216, 46.2224874 ], + [ 6.0031936, 46.2225294 ], + [ 6.0032123, 46.2225607 ], + [ 6.0035147, 46.2227755 ], + [ 6.0036439, 46.2228217 ], + [ 6.003777, 46.2229047 ], + [ 6.0040387, 46.2230297 ], + [ 6.0040688, 46.2230292 ], + [ 6.0043125, 46.2231752 ], + [ 6.0044137, 46.2232514 ], + [ 6.0046059, 46.2233499 ], + [ 6.0047534, 46.2233958 ], + [ 6.0048734, 46.2234468 ], + [ 6.0050996, 46.2234975 ], + [ 6.0052303, 46.2235388 ], + [ 6.0053404, 46.2235602 ], + [ 6.005462, 46.2236098 ], + [ 6.0055523, 46.2236285 ], + [ 6.0056521, 46.2236396 ], + [ 6.0057434, 46.223684 ], + [ 6.0058041, 46.2237035 ], + [ 6.0058301, 46.2237069 ], + [ 6.0058619, 46.2236993 ], + [ 6.0059429, 46.2237165 ], + [ 6.0060343, 46.2237219 ], + [ 6.0060984, 46.2237165 ], + [ 6.006124, 46.2237311 ], + [ 6.0062112, 46.2237307 ], + [ 6.0062568, 46.2237428 ], + [ 6.0064305, 46.2237486 ], + [ 6.0065597, 46.2237723 ], + [ 6.0066388, 46.2238049 ], + [ 6.0068684, 46.223837 ], + [ 6.0069121, 46.2238536 ], + [ 6.007011, 46.2238493 ], + [ 6.0070433, 46.2238301 ], + [ 6.0071079, 46.2238382 ], + [ 6.0071567, 46.223872 ], + [ 6.0071888, 46.2238809 ], + [ 6.0072403, 46.2239357 ], + [ 6.0072433, 46.2239664 ], + [ 6.0072097, 46.2239777 ], + [ 6.007136, 46.224239 ], + [ 6.0070461, 46.2243727 ], + [ 6.0070148, 46.2244496 ], + [ 6.0070021, 46.2244969 ], + [ 6.0070016, 46.2245879 ], + [ 6.007029, 46.2246469 ], + [ 6.0070377, 46.2249968 ], + [ 6.0070238, 46.2250334 ], + [ 6.0069929, 46.2253687 ], + [ 6.006975, 46.2253884 ], + [ 6.0069701, 46.2255491 ], + [ 6.0069495, 46.2255989 ], + [ 6.0068878, 46.2256934 ], + [ 6.0066912, 46.2259159 ], + [ 6.0066266, 46.2260206 ], + [ 6.0065939, 46.2261904 ], + [ 6.0065717, 46.226232 ], + [ 6.0065806, 46.2263522 ], + [ 6.0065593, 46.2264691 ], + [ 6.0065711, 46.226541 ], + [ 6.006618, 46.2266148 ], + [ 6.0067215, 46.2266743 ], + [ 6.0067787, 46.2266884 ], + [ 6.0069037, 46.2266698 ], + [ 6.0071479, 46.2265727 ], + [ 6.0071778, 46.226554 ], + [ 6.0073358, 46.2265181 ], + [ 6.0074307, 46.2264736 ], + [ 6.0075239, 46.2264566 ], + [ 6.0077426, 46.2263951 ], + [ 6.0079041, 46.2263871 ], + [ 6.0080609, 46.2264017 ], + [ 6.008205, 46.2264357 ], + [ 6.008286, 46.2264692 ], + [ 6.0084642, 46.2265711 ], + [ 6.0085737, 46.2266258 ], + [ 6.0086044, 46.2266482 ], + [ 6.0086883, 46.2266765 ], + [ 6.0088389, 46.226753 ], + [ 6.0090439, 46.2268269 ], + [ 6.0091359, 46.2268888 ], + [ 6.0092088, 46.2269212 ], + [ 6.0094019, 46.2270334 ], + [ 6.0094845, 46.2270984 ], + [ 6.0096572, 46.2272172 ], + [ 6.0097472, 46.2272702 ], + [ 6.0099266, 46.2274204 ], + [ 6.0099801, 46.2274783 ], + [ 6.0100562, 46.2275938 ], + [ 6.0101138, 46.227705 ], + [ 6.0102122, 46.2278191 ], + [ 6.0102572, 46.2278813 ], + [ 6.0102669, 46.227937 ], + [ 6.0102575, 46.2279822 ], + [ 6.0103125, 46.2279777 ], + [ 6.0105453, 46.2279986 ], + [ 6.0108243, 46.2279437 ], + [ 6.0111054, 46.2278537 ], + [ 6.0113294, 46.2277638 ], + [ 6.0114795, 46.2276776 ], + [ 6.0115932, 46.2274811 ], + [ 6.0116365, 46.2272684 ], + [ 6.0118421, 46.2270469 ], + [ 6.0121855, 46.2268515 ], + [ 6.0124758, 46.2267077 ], + [ 6.0127731, 46.2266017 ], + [ 6.0131107, 46.2265348 ], + [ 6.0134038, 46.2265259 ], + [ 6.0137333, 46.226567 ], + [ 6.0139047, 46.2265935 ], + [ 6.0140495, 46.2266196 ], + [ 6.0141539999999996, 46.2264797 ], + [ 6.016834, 46.2237891 ], + [ 6.0154177, 46.2228382 ], + [ 6.0151745, 46.2228154 ], + [ 6.0148723, 46.2228152 ], + [ 6.0145312, 46.2228297 ], + [ 6.0142321, 46.2228224 ], + [ 6.0140297, 46.2227667 ], + [ 6.0138343, 46.2226671 ], + [ 6.0136286, 46.222543 ], + [ 6.013411, 46.222346 ], + [ 6.0132029, 46.2220779 ], + [ 6.0130497, 46.2218825 ], + [ 6.01296, 46.2217042 ], + [ 6.0129351, 46.2215572 ], + [ 6.0130482, 46.2214426 ], + [ 6.0132201, 46.2213791 ], + [ 6.0135166, 46.2212838 ], + [ 6.0138737, 46.2211678 ], + [ 6.0142413, 46.2210798 ], + [ 6.014514, 46.2210184 ], + [ 6.0146954, 46.2209766 ], + [ 6.0149011, 46.2208803 ], + [ 6.0149798, 46.220803 ], + [ 6.0150216, 46.220736 ], + [ 6.0144599, 46.2201144 ], + [ 6.0139162, 46.2195947 ], + [ 6.0137132, 46.2194275 ], + [ 6.0136075, 46.2193956 ], + [ 6.0134433, 46.2194331 ], + [ 6.0130046, 46.219648 ], + [ 6.0122282, 46.2200476 ], + [ 6.0113436, 46.220524 ], + [ 6.0109845, 46.2207633 ], + [ 6.0108846, 46.2208223 ], + [ 6.010753, 46.2208485 ], + [ 6.0105848, 46.2207924 ], + [ 6.0100311, 46.2203473 ], + [ 6.0096931, 46.2199489 ], + [ 6.0095644, 46.2197161 ], + [ 6.0095341, 46.2195285 ], + [ 6.0095839, 46.2193104 ], + [ 6.0097605, 46.2190033 ], + [ 6.0099941, 46.2187443 ], + [ 6.0101368, 46.2186014 ], + [ 6.0101992, 46.21854 ], + [ 6.010428, 46.2185114 ], + [ 6.0106636, 46.2184713 ], + [ 6.0108257, 46.2184706 ], + [ 6.0109228, 46.2184727 ], + [ 6.0109865, 46.2183773 ], + [ 6.0109245, 46.2183152 ], + [ 6.0108134, 46.2182563 ], + [ 6.0106111, 46.2182061 ], + [ 6.0100849, 46.2182056 ], + [ 6.0097742, 46.2182369 ], + [ 6.0095195, 46.2182643 ], + [ 6.0093894, 46.2182842 ], + [ 6.0092927, 46.2182659 ], + [ 6.0091914, 46.2182187 ], + [ 6.0089421, 46.2179987 ], + [ 6.0085277, 46.217486 ], + [ 6.0083898, 46.2173098 ], + [ 6.0083218, 46.2171838 ], + [ 6.0083757, 46.2170613 ], + [ 6.0085704, 46.2169414 ], + [ 6.0088423, 46.2168171 ], + [ 6.0090109, 46.2167031 ], + [ 6.0090318, 46.2166026 ], + [ 6.0088642, 46.2163666 ], + [ 6.008402, 46.2158596 ], + [ 6.0082873, 46.2157394 ], + [ 6.0081908, 46.2157147 ], + [ 6.0080282, 46.2157379 ], + [ 6.0075724, 46.2158626 ], + [ 6.0071741, 46.2159331 ], + [ 6.0069454, 46.2159392 ], + [ 6.0067416, 46.2159114 ], + [ 6.0065481, 46.2157677 ], + [ 6.0062019, 46.2153351 ], + [ 6.0061119, 46.2151711 ], + [ 6.0061322, 46.2150742 ], + [ 6.0062344, 46.2149937 ], + [ 6.0063512, 46.2149438 ], + [ 6.0061573, 46.2149242 ], + [ 6.0057498, 46.214937 ], + [ 6.0055153, 46.2149359 ], + [ 6.0050912, 46.2147982 ], + [ 6.0046629, 46.2145742 ], + [ 6.0043117, 46.2143178 ], + [ 6.003998, 46.2140782 ], + [ 6.00374, 46.213831 ], + [ 6.0036317, 46.2137153 ], + [ 6.0034922, 46.2134419 ], + [ 6.003413, 46.2132079 ], + [ 6.0034245, 46.2129713 ], + [ 6.0034392, 46.2128582 ], + [ 6.0035474, 46.2127778 ], + [ 6.0036952, 46.2127355 ], + [ 6.0039613, 46.21281 ], + [ 6.0043905, 46.2129999 ], + [ 6.0049462, 46.2132606 ], + [ 6.0054016, 46.2133951 ], + [ 6.0079759, 46.2097327 ], + [ 6.0025005, 46.2075587 ], + [ 6.002428, 46.2073608 ], + [ 6.0000922, 46.2071835 ], + [ 6.0003277, 46.2063201 ], + [ 6.0004529, 46.2060859 ], + [ 6.0005626, 46.205965 ], + [ 6.0008629, 46.2056827 ], + [ 6.0025142, 46.2044423 ], + [ 6.0027408, 46.2042554 ], + [ 6.0029566, 46.2040278 ], + [ 6.0031687, 46.2037956 ], + [ 6.0033115, 46.2035401 ], + [ 6.0054364, 46.1990775 ], + [ 6.005571, 46.1987941 ], + [ 6.0057826, 46.1986294 ], + [ 6.0059844, 46.1984925 ], + [ 6.0061085, 46.198405 ], + [ 6.0061607, 46.1983453 ], + [ 6.0062402, 46.1982277 ], + [ 6.0062538, 46.1979641 ], + [ 6.0062334, 46.197505 ], + [ 6.0061682, 46.1970301 ], + [ 6.006111, 46.1966793 ], + [ 6.0061198, 46.196495 ], + [ 6.0061548, 46.1963084 ], + [ 6.0062686, 46.1961038 ], + [ 6.0066203, 46.1955405 ], + [ 6.0067772, 46.1953031 ], + [ 6.0069133, 46.1950512 ], + [ 6.0069424, 46.1949273 ], + [ 6.006983, 46.1947552 ], + [ 6.0069999, 46.1946024 ], + [ 6.0069959, 46.1944665 ], + [ 6.0069719, 46.194297 ], + [ 6.0070877, 46.1941258 ], + [ 6.0072638, 46.1939723 ], + [ 6.0074645, 46.1938408 ], + [ 6.0076786, 46.1937833 ], + [ 6.0077739, 46.1937017 ], + [ 6.0078613, 46.1935732 ], + [ 6.0079498, 46.1934124 ], + [ 6.0079912, 46.1932267 ], + [ 6.0080489, 46.1930475 ], + [ 6.0081805, 46.192809 ], + [ 6.0084823, 46.1924663 ], + [ 6.0086723, 46.1922447 ], + [ 6.0089041, 46.1918032 ], + [ 6.0090245, 46.1914565 ], + [ 6.0091146, 46.1911428 ], + [ 6.0092083, 46.1908695 ], + [ 6.0092661, 46.1906912 ], + [ 6.0094067, 46.1904681 ], + [ 6.0097322, 46.1902545 ], + [ 6.0104946, 46.1897873 ], + [ 6.0100858, 46.1893223 ], + [ 6.01001, 46.1892008 ], + [ 6.0100154, 46.1890884 ], + [ 6.0101512, 46.1889561 ], + [ 6.0107125, 46.1886419 ], + [ 6.0111796, 46.1883663 ], + [ 6.0116246, 46.1880605 ], + [ 6.0120074, 46.1878323 ], + [ 6.0122729, 46.1875901 ], + [ 6.0125401, 46.1872353 ], + [ 6.0126992, 46.1868487 ], + [ 6.012777, 46.1863503 ], + [ 6.0128572, 46.1857025 ], + [ 6.0128499, 46.1851896 ], + [ 6.0129188, 46.1846435 ], + [ 6.0129349, 46.1842784 ], + [ 6.0129394, 46.1839969 ], + [ 6.0128391, 46.1835773 ], + [ 6.0127119, 46.1831905 ], + [ 6.0125739, 46.1828154 ], + [ 6.0122758, 46.1824814 ], + [ 6.0119481, 46.1821804 ], + [ 6.0115464, 46.1818937 ], + [ 6.0109631, 46.1815489 ], + [ 6.0103294, 46.1812188 ], + [ 6.0096531, 46.1809781 ], + [ 6.0094637, 46.1808425 ], + [ 6.0093544, 46.1807611 ], + [ 6.0092693, 46.1806421 ], + [ 6.0092211, 46.1805056 ], + [ 6.0092715, 46.1802633 ], + [ 6.0095901, 46.1795664 ], + [ 6.0107167, 46.1797814 ], + [ 6.0116862, 46.1799528 ], + [ 6.012493, 46.1801178 ], + [ 6.0132498, 46.1804017 ], + [ 6.0139252, 46.1807172 ], + [ 6.0145572, 46.1810678 ], + [ 6.0152044, 46.181687 ], + [ 6.0156865, 46.1822662 ], + [ 6.0160843, 46.1831565 ], + [ 6.0165378, 46.1844571 ], + [ 6.0175707, 46.1873644 ], + [ 6.0177993, 46.1877884 ], + [ 6.0180734, 46.1882534 ], + [ 6.0185333, 46.1887935 ], + [ 6.019204, 46.1893572 ], + [ 6.0199979, 46.1899619 ], + [ 6.0208529, 46.1905557 ], + [ 6.0215816, 46.1911262 ], + [ 6.0220108, 46.191558 ], + [ 6.0221724, 46.1919317 ], + [ 6.0226333, 46.1924836 ], + [ 6.0231829, 46.1930636 ], + [ 6.02383, 46.1935432 ], + [ 6.0244066, 46.1938797 ], + [ 6.024592, 46.1940395 ], + [ 6.0244341, 46.1941797 ], + [ 6.0244566, 46.1944058 ], + [ 6.0245388, 46.1946362 ], + [ 6.0246803, 46.1949259 ], + [ 6.0247839, 46.1951305 ], + [ 6.0248628, 46.195226 ], + [ 6.0249794, 46.1953804 ], + [ 6.025004, 46.1954815 ], + [ 6.0247163, 46.1956299 ], + [ 6.0244915, 46.1955111 ], + [ 6.0242803, 46.1955651 ], + [ 6.0240934, 46.1956248 ], + [ 6.0239306, 46.1956571 ], + [ 6.0237849, 46.1956219 ], + [ 6.023577, 46.1955032 ], + [ 6.0232695, 46.195466 ], + [ 6.0230577, 46.1954985 ], + [ 6.0228627, 46.1955239 ], + [ 6.0228844, 46.195625 ], + [ 6.0227689, 46.195737 ], + [ 6.0224667, 46.1958986 ], + [ 6.0213261, 46.1966222 ], + [ 6.0222215, 46.198197 ], + [ 6.0227371, 46.1992508 ], + [ 6.0182696, 46.1997004 ], + [ 6.0183278, 46.2001069 ], + [ 6.0183936, 46.2006142 ], + [ 6.0184732, 46.200994 ], + [ 6.0185908, 46.2013608 ], + [ 6.0187968, 46.201599 ], + [ 6.0190999, 46.2019016 ], + [ 6.019387, 46.2021301 ], + [ 6.0197241, 46.2023134 ], + [ 6.0200769, 46.2025077 ], + [ 6.0203268, 46.2025558 ], + [ 6.0235717, 46.2011569 ], + [ 6.0265005, 46.2005737 ], + [ 6.0270107, 46.2005396 ], + [ 6.0278959, 46.2005363 ], + [ 6.028059, 46.2004924 ], + [ 6.0283426, 46.2003934 ], + [ 6.028631, 46.2002611 ], + [ 6.02889, 46.200268 ], + [ 6.0323647, 46.2009303 ], + [ 6.0329379, 46.200969 ], + [ 6.0335839, 46.2010877 ], + [ 6.0341275, 46.2011547 ], + [ 6.0346838, 46.201239 ], + [ 6.0350664, 46.2012689 ], + [ 6.0352675, 46.2012598 ], + [ 6.0353655, 46.2011818 ], + [ 6.0355148, 46.2010252 ], + [ 6.035648, 46.2008236 ], + [ 6.0358699, 46.2007085 ], + [ 6.0361491, 46.2005455 ], + [ 6.036417, 46.200458 ], + [ 6.036736, 46.2003369 ], + [ 6.0371344, 46.200205 ], + [ 6.0373146, 46.2001119 ], + [ 6.0375368, 46.1999896 ], + [ 6.037767, 46.1998566 ], + [ 6.0379216, 46.1997334 ], + [ 6.0381318, 46.1997127 ], + [ 6.0383203, 46.1997528 ], + [ 6.0384138, 46.1999411 ], + [ 6.0384589, 46.2000929 ], + [ 6.0386181, 46.200263 ], + [ 6.0389895, 46.2003675 ], + [ 6.0393359, 46.2004114 ], + [ 6.0396042, 46.2004634 ], + [ 6.0397329, 46.2004982 ], + [ 6.0399341, 46.2005295 ], + [ 6.0399698, 46.2003535 ], + [ 6.0400784, 46.2002083 ], + [ 6.0401944, 46.2001189 ], + [ 6.0404064, 46.2000036 ], + [ 6.040692, 46.1998191 ], + [ 6.0430346, 46.2003312 ], + [ 6.0430463, 46.2005725 ], + [ 6.043085, 46.2007871 ], + [ 6.0431307, 46.2009289 ], + [ 6.0432102, 46.2010019 ], + [ 6.0433953, 46.20097 ], + [ 6.0436341, 46.2008928 ], + [ 6.0440259, 46.2007276 ], + [ 6.044255, 46.2006342 ], + [ 6.0444027, 46.2005389 ], + [ 6.0444861, 46.2004157 ], + [ 6.0445373, 46.2002355 ], + [ 6.0445575, 46.1999992 ], + [ 6.044634, 46.1997519 ], + [ 6.0447023, 46.1995151 ], + [ 6.0447976, 46.199286 ], + [ 6.0448738, 46.1990323 ], + [ 6.0450081, 46.1987514 ], + [ 6.0452328, 46.1984825 ], + [ 6.0453675, 46.1982809 ], + [ 6.045523, 46.1980299 ], + [ 6.0456844, 46.1977377 ], + [ 6.0457674, 46.1975922 ], + [ 6.0458212, 46.1973149 ], + [ 6.0458655, 46.1970517 ], + [ 6.0458296, 46.1968254 ], + [ 6.0457864, 46.1966 ], + [ 6.0457553, 46.1964871 ], + [ 6.0457085, 46.1963966 ], + [ 6.047419, 46.195931 ], + [ 6.0483222, 46.1956678 ], + [ 6.04939, 46.1954137 ], + [ 6.0504361, 46.1952916 ], + [ 6.0514608, 46.1951494 ], + [ 6.0522685, 46.1949309 ], + [ 6.0530025, 46.1946934 ], + [ 6.0537074, 46.1945824 ], + [ 6.0544234, 46.1945138 ], + [ 6.0551195, 46.1944926 ], + [ 6.0556007, 46.1944635 ], + [ 6.0558169, 46.1944814 ], + [ 6.0558093, 46.1945713 ], + [ 6.0552612, 46.1953284 ], + [ 6.0564889, 46.1959148 ], + [ 6.0571888, 46.1953906 ], + [ 6.0586065, 46.1949671 ], + [ 6.0587174, 46.1951439 ], + [ 6.0614427, 46.1944909 ], + [ 6.0617178, 46.1950503 ], + [ 6.0633039, 46.1946693 ], + [ 6.065057, 46.1954851 ], + [ 6.0651645, 46.1958463 ], + [ 6.0653204, 46.1961865 ], + [ 6.0655574, 46.1965492 ], + [ 6.065859, 46.1969865 ], + [ 6.0661605, 46.1973619 ], + [ 6.0692616, 46.2017408 ], + [ 6.0689841, 46.2018552 ], + [ 6.0686672, 46.2019945 ], + [ 6.0683408, 46.202094 ], + [ 6.0682345, 46.2020854 ], + [ 6.0680669, 46.2020007 ], + [ 6.0678753, 46.2018462 ], + [ 6.067746, 46.2017888 ], + [ 6.0676169, 46.2021212 ], + [ 6.0667781, 46.2018931 ], + [ 6.0666789, 46.2019711 ], + [ 6.0663398, 46.2019454 ], + [ 6.0661747, 46.2020684 ], + [ 6.0654577, 46.2019382 ], + [ 6.065343, 46.2020232 ], + [ 6.0649531, 46.2020688 ], + [ 6.0649178, 46.2021818 ], + [ 6.0645623, 46.2021513 ], + [ 6.0642859, 46.2021606 ], + [ 6.0640634, 46.2022487 ], + [ 6.063844, 46.2023756 ], + [ 6.0637762, 46.2025438 ], + [ 6.0637944, 46.2027988 ], + [ 6.0640644, 46.2031394 ], + [ 6.0643599, 46.2034957 ], + [ 6.0646363, 46.2038365 ], + [ 6.0648197, 46.2040592 ], + [ 6.0651936, 46.2043894 ], + [ 6.0655137, 46.2046408 ], + [ 6.0658356, 46.2048346 ], + [ 6.0661663, 46.2049664 ], + [ 6.0663979, 46.2051438 ], + [ 6.0665548, 46.205394 ], + [ 6.0666806, 46.2055863 ], + [ 6.0667849, 46.205772 ], + [ 6.0669016, 46.2059758 ], + [ 6.0669952, 46.2061686 ], + [ 6.0671483, 46.2063118 ], + [ 6.0673328, 46.2063473 ], + [ 6.0675871, 46.2062821 ], + [ 6.0677832, 46.2061531 ], + [ 6.067902, 46.2062732 ], + [ 6.0679728, 46.2064478 ], + [ 6.067988, 46.206511 ], + [ 6.0681341, 46.2065281 ], + [ 6.0684621, 46.2066724 ], + [ 6.0691148, 46.2064797 ], + [ 6.0693374, 46.2066912 ], + [ 6.0693704, 46.2066691 ], + [ 6.0696439, 46.2068226 ], + [ 6.0708523, 46.2062921 ], + [ 6.0708172, 46.2064941 ], + [ 6.071025, 46.2066379 ], + [ 6.0717215, 46.206299 ], + [ 6.0720171, 46.206444 ], + [ 6.072477, 46.2061427 ], + [ 6.0723601, 46.2059433 ], + [ 6.0722893, 46.2057175 ], + [ 6.0722295, 46.2054685 ], + [ 6.0721996, 46.2052774 ], + [ 6.0722944, 46.2050473 ], + [ 6.0724113, 46.2048912 ], + [ 6.0725914, 46.2047342 ], + [ 6.0729845, 46.2045617 ], + [ 6.0734721, 46.2044488 ], + [ 6.0738524, 46.2044112 ], + [ 6.0741059, 46.204443 ], + [ 6.0744979, 46.2046196 ], + [ 6.0748927, 46.2048439 ], + [ 6.0752622, 46.2050319 ], + [ 6.0756378, 46.2052453 ], + [ 6.0759446, 46.2053651 ], + [ 6.0759973, 46.2037821 ], + [ 6.076495, 46.20352 ], + [ 6.0772807, 46.2034781 ], + [ 6.0774033, 46.2034716 ], + [ 6.0773889, 46.2033698 ], + [ 6.0777481, 46.2032553 ], + [ 6.0784231, 46.203205 ], + [ 6.0788606, 46.2032355 ], + [ 6.079102, 46.2033733 ], + [ 6.0793004, 46.203517 ], + [ 6.079428, 46.2035968 ], + [ 6.0796859, 46.2036936 ], + [ 6.0798948, 46.2038418 ], + [ 6.0806561, 46.2044349 ], + [ 6.0809761, 46.2046925 ], + [ 6.0811518, 46.2048674 ], + [ 6.0813576, 46.2051398 ], + [ 6.0815373, 46.2054011 ], + [ 6.0817139, 46.2055445 ], + [ 6.0819372, 46.2057308 ], + [ 6.082127, 46.2060264 ], + [ 6.0822619, 46.2062817 ], + [ 6.0823889, 46.2064794 ], + [ 6.0826176, 46.2067583 ], + [ 6.0827923, 46.2069791 ], + [ 6.0829012, 46.2072386 ], + [ 6.0830995, 46.2075568 ], + [ 6.083313, 46.2078292 ], + [ 6.0835773, 46.2080907 ], + [ 6.0837107, 46.2082497 ], + [ 6.0837022, 46.2083351 ], + [ 6.0836891, 46.2085985 ], + [ 6.0836321, 46.2086392 ], + [ 6.083156, 46.208459 ], + [ 6.0825302, 46.2086636 ], + [ 6.0822685, 46.2091392 ], + [ 6.0826496, 46.2096456 ], + [ 6.0826781, 46.2098708 ], + [ 6.0849712, 46.211998 ], + [ 6.0851479, 46.2120721 ], + [ 6.0855632, 46.2124315 ], + [ 6.0858543, 46.2124952 ], + [ 6.0860138, 46.212695 ], + [ 6.0861908, 46.2127754 ], + [ 6.0863248, 46.2128599 ], + [ 6.0866751, 46.2128964 ], + [ 6.088328, 46.2139141 ], + [ 6.0885292, 46.2138993 ], + [ 6.0888629, 46.2139295 ], + [ 6.0892019, 46.2139957 ], + [ 6.089509, 46.2141001 ], + [ 6.0899013, 46.2142722 ], + [ 6.0901841, 46.2144141 ], + [ 6.0903357, 46.2144717 ], + [ 6.0905231, 46.2145415 ], + [ 6.0909386, 46.2142919 ], + [ 6.0913078, 46.2141533 ], + [ 6.0913967, 46.2140635 ], + [ 6.0969947, 46.2158192 ], + [ 6.0973496, 46.2159799 ], + [ 6.0977355, 46.2161457 ], + [ 6.0980676, 46.2162953 ], + [ 6.0983088, 46.2163989 ], + [ 6.0985506, 46.2164684 ], + [ 6.0988109, 46.2164885 ], + [ 6.0990376, 46.2164274 ], + [ 6.0992914, 46.2162334 ], + [ 6.0994822, 46.2160701 ], + [ 6.0996698, 46.2159203 ], + [ 6.0998173, 46.2157682 ], + [ 6.0999753, 46.2156685 ], + [ 6.1000644, 46.2155857 ], + [ 6.1000327, 46.2155513 ], + [ 6.0999612, 46.2154991 ], + [ 6.099799, 46.2155044 ], + [ 6.0995778, 46.2155405 ], + [ 6.0993285, 46.2155618 ], + [ 6.0990099, 46.2155589 ], + [ 6.0987199, 46.2154952 ], + [ 6.0983317, 46.2154177 ], + [ 6.0979696, 46.2153199 ], + [ 6.0976639, 46.2152208 ], + [ 6.0972598, 46.2151 ], + [ 6.0970081, 46.2150079 ], + [ 6.0967505, 46.2148933 ], + [ 6.0985709, 46.2136951 ], + [ 6.0988712, 46.2137652 ], + [ 6.0993729, 46.2138548 ], + [ 6.0996789, 46.2140087 ], + [ 6.1000062, 46.2141916 ], + [ 6.1001925, 46.2143278 ], + [ 6.1003111, 46.2143967 ], + [ 6.1008481, 46.2142843 ], + [ 6.1009744, 46.2140861 ], + [ 6.100946, 46.2138724 ], + [ 6.1009732, 46.2136084 ], + [ 6.1010511, 46.2134059 ], + [ 6.1012505, 46.2130853 ], + [ 6.1014504, 46.2128116 ], + [ 6.1015993, 46.2125991 ], + [ 6.1017827, 46.2123746 ], + [ 6.1019813, 46.2120882 ], + [ 6.1021154, 46.2118028 ], + [ 6.1021749, 46.2115929 ], + [ 6.1022768, 46.2113009 ], + [ 6.1022973, 46.210997 ], + [ 6.1023125, 46.2106878 ], + [ 6.1022603, 46.2099593 ], + [ 6.0985257, 46.2086428 ], + [ 6.0982678, 46.2085389 ], + [ 6.097993, 46.2084808 ], + [ 6.0977776, 46.2083838 ], + [ 6.0975919, 46.2082925 ], + [ 6.0973928, 46.2081264 ], + [ 6.0973057, 46.2079337 ], + [ 6.0972599, 46.2077415 ], + [ 6.0972803, 46.2075383 ], + [ 6.0973485, 46.2073025 ], + [ 6.0973931, 46.2071744 ], + [ 6.0946585, 46.2053252 ], + [ 6.0944344, 46.2051696 ], + [ 6.0942995, 46.2050779 ], + [ 6.0942271, 46.2049601 ], + [ 6.0942457, 46.2048478 ], + [ 6.0942241, 46.2047233 ], + [ 6.0941203, 46.2045646 ], + [ 6.093993, 46.2044282 ], + [ 6.0938094, 46.2043072 ], + [ 6.0935996, 46.2042607 ], + [ 6.0934548, 46.2042365 ], + [ 6.0932778, 46.204174 ], + [ 6.0931076, 46.2040307 ], + [ 6.0929651, 46.2038715 ], + [ 6.0928631, 46.2037533 ], + [ 6.0927262, 46.2035771 ], + [ 6.092674, 46.2034478 ], + [ 6.0926828, 46.2032941 ], + [ 6.0926356, 46.2032216 ], + [ 6.0924107, 46.2031001 ], + [ 6.0921473, 46.2028954 ], + [ 6.0919096, 46.2026002 ], + [ 6.0918152, 46.2024416 ], + [ 6.0916571, 46.2021878 ], + [ 6.0915553, 46.2019051 ], + [ 6.0914894, 46.201593 ], + [ 6.0914438, 46.2013963 ], + [ 6.0913257, 46.20108 ], + [ 6.0912328, 46.2008134 ], + [ 6.0912951, 46.2006063 ], + [ 6.0914614, 46.2003816 ], + [ 6.0915939, 46.2002635 ], + [ 6.0917940999999995, 46.2002272 ], + [ 6.0919624, 46.200447 ], + [ 6.0921785, 46.2005161 ], + [ 6.0924977, 46.200492 ], + [ 6.0927937, 46.200573 ], + [ 6.0930852, 46.200625 ], + [ 6.0933546, 46.2005895 ], + [ 6.0936802, 46.2005241 ], + [ 6.0940446, 46.2004593 ], + [ 6.0946355, 46.2005994 ], + [ 6.0950577, 46.2009751 ], + [ 6.0953376, 46.2012826 ], + [ 6.095657, 46.2015779 ], + [ 6.0959513, 46.2018216 ], + [ 6.0962509, 46.2019214 ], + [ 6.0965249, 46.2020588 ], + [ 6.0973017, 46.2024936 ], + [ 6.0979124, 46.2028481 ], + [ 6.0981536, 46.2029338 ], + [ 6.0983223, 46.2030887 ], + [ 6.0989689, 46.2032403 ], + [ 6.0989501, 46.2033751 ], + [ 6.0994266, 46.2034023 ], + [ 6.0995591, 46.2032833 ], + [ 6.0998495, 46.2033309 ], + [ 6.0999965, 46.2032489 ], + [ 6.1000941, 46.2032312 ], + [ 6.1003153, 46.2031951 ], + [ 6.1002687, 46.2030821 ], + [ 6.1000599, 46.2029447 ], + [ 6.0999148, 46.2029322 ], + [ 6.0997257, 46.2029803 ], + [ 6.0996586, 46.2031217 ], + [ 6.0985386, 46.2027791 ], + [ 6.0983521, 46.2027211 ], + [ 6.0982177, 46.202607 ], + [ 6.0982263, 46.2024722 ], + [ 6.0982924, 46.2024226 ], + [ 6.0982772, 46.2023441 ], + [ 6.0979028, 46.2020293 ], + [ 6.0980857, 46.2018281 ], + [ 6.0979728, 46.2017711 ], + [ 6.0977603, 46.2018818 ], + [ 6.0975794, 46.2019588 ], + [ 6.0974728, 46.201981 ], + [ 6.0972874, 46.2020246 ], + [ 6.0971476, 46.2020302 ], + [ 6.0970362, 46.2019209 ], + [ 6.0970223, 46.2017966 ], + [ 6.0970236, 46.2016949 ], + [ 6.0970181, 46.2016049 ], + [ 6.0969875, 46.2015325 ], + [ 6.096876, 46.2014232 ], + [ 6.0967812, 46.2012827 ], + [ 6.0964731, 46.2012799 ], + [ 6.0961553, 46.2012257 ], + [ 6.0959307, 46.2011403 ], + [ 6.095732, 46.2010084 ], + [ 6.0955619, 46.2008598 ], + [ 6.0953965, 46.2006895 ], + [ 6.0952051, 46.2005252 ], + [ 6.0950352, 46.2003712 ], + [ 6.0948754, 46.2002344 ], + [ 6.0946593, 46.2001652 ], + [ 6.0943029, 46.2001169 ], + [ 6.0940355, 46.2000425 ], + [ 6.0939015, 46.1998989 ], + [ 6.0936853, 46.199638 ], + [ 6.0931797, 46.1994872 ], + [ 6.0929053, 46.1997403 ], + [ 6.0922996, 46.1997691 ], + [ 6.0919162, 46.1997473 ], + [ 6.091706, 46.1997187 ], + [ 6.0916594, 46.1996057 ], + [ 6.0917591, 46.1994594 ], + [ 6.091755, 46.199318 ], + [ 6.0916191, 46.1991473 ], + [ 6.0916365, 46.1990189 ], + [ 6.0917778, 46.1989684 ], + [ 6.0920591, 46.1989592 ], + [ 6.0920852, 46.1983801 ], + [ 6.0919238, 46.1983601 ], + [ 6.0919433, 46.1982101 ], + [ 6.0912635, 46.1981255 ], + [ 6.0911674, 46.1980344 ], + [ 6.0910227, 46.1979769 ], + [ 6.0908394, 46.1978398 ], + [ 6.090678, 46.1978163 ], + [ 6.0904105, 46.1977276 ], + [ 6.090089, 46.1975789 ], + [ 6.0897831, 46.1974295 ], + [ 6.0895903, 46.1973669 ], + [ 6.0892605, 46.1972406 ], + [ 6.0890369, 46.1970625 ], + [ 6.0888345, 46.1969665 ], + [ 6.0885589, 46.1969461 ], + [ 6.0883153, 46.1969504 ], + [ 6.0880865, 46.1967272 ], + [ 6.087919, 46.1964283 ], + [ 6.0878195, 46.1961905 ], + [ 6.0877484, 46.1959917 ], + [ 6.0877771, 46.1958121 ], + [ 6.0879515, 46.1954707 ], + [ 6.0879655, 46.1952225 ], + [ 6.0880172, 46.1950809 ], + [ 6.0882537, 46.1948796 ], + [ 6.088482, 46.194814 ], + [ 6.0886447, 46.1947367 ], + [ 6.0887393, 46.19453 ], + [ 6.0888127, 46.1943951 ], + [ 6.0889694, 46.1943448 ], + [ 6.0892607, 46.1943537 ], + [ 6.0894, 46.194224 ], + [ 6.089491, 46.1941639 ], + [ 6.089728, 46.1940084 ], + [ 6.0902115, 46.1937757 ], + [ 6.0905867, 46.193648 ], + [ 6.0908146, 46.1935544 ], + [ 6.091048, 46.1935455 ], + [ 6.0912522, 46.1936083 ], + [ 6.0915101, 46.1937185 ], + [ 6.0916698, 46.1938104 ], + [ 6.0918665, 46.1937146 ], + [ 6.0919819, 46.1935532 ], + [ 6.0922836, 46.193403 ], + [ 6.0925288, 46.1932763 ], + [ 6.0928151, 46.1932221 ], + [ 6.0929919, 46.1932621 ], + [ 6.0934198, 46.1932996 ], + [ 6.0938563, 46.1933479 ], + [ 6.094402, 46.1933527 ], + [ 6.0946631, 46.1932711 ], + [ 6.094842, 46.1932095 ], + [ 6.0950918, 46.1931549 ], + [ 6.0952447, 46.1933258 ], + [ 6.094876, 46.1934536 ], + [ 6.0947283, 46.1936147 ], + [ 6.0944929, 46.1937028 ], + [ 6.0943528, 46.1937695 ], + [ 6.0943025, 46.1938544 ], + [ 6.0943499, 46.193934 ], + [ 6.0944138, 46.1939682 ], + [ 6.0947172, 46.1938512 ], + [ 6.0960481, 46.193204 ], + [ 6.0977751, 46.1942663 ], + [ 6.0982177, 46.1939703 ], + [ 6.0983634, 46.1940053 ], + [ 6.0985013, 46.1939278 ], + [ 6.098638, 46.1940032 ], + [ 6.0981459, 46.1944202 ], + [ 6.0983857, 46.1946101 ], + [ 6.0989717, 46.194439 ], + [ 6.0994604, 46.1943251 ], + [ 6.099635, 46.1945071 ], + [ 6.0998906999999996, 46.1947396 ], + [ 6.1000236, 46.1949841 ], + [ 6.1001748, 46.1952108 ], + [ 6.1005475, 46.1956425 ], + [ 6.1009927, 46.1961462 ], + [ 6.1014796, 46.1967323 ], + [ 6.1017662, 46.1970325 ], + [ 6.1010784, 46.1974058 ], + [ 6.101642, 46.1980306 ], + [ 6.102027, 46.1979209 ], + [ 6.1033133, 46.1995096 ], + [ 6.1029607, 46.1996693 ], + [ 6.1031918, 46.1999715 ], + [ 6.1035486, 46.2003618 ], + [ 6.1039963, 46.2007602 ], + [ 6.1045345, 46.2010985 ], + [ 6.1050646, 46.2014071 ], + [ 6.1055037, 46.2017263 ], + [ 6.1060646, 46.2021036 ], + [ 6.1063621, 46.2023356 ], + [ 6.1068005, 46.2026845 ], + [ 6.1072766, 46.2029861 ], + [ 6.1076672, 46.2032255 ], + [ 6.1079245, 46.2033967 ], + [ 6.1082106, 46.2033093 ], + [ 6.108631, 46.2033915 ], + [ 6.1091164, 46.203526 ], + [ 6.1095842, 46.2036251 ], + [ 6.1098001, 46.203705 ], + [ 6.1099277, 46.2038307 ], + [ 6.109969, 46.2038986 ], + [ 6.1101299, 46.20394 ], + [ 6.1102992, 46.2039079 ], + [ 6.1105704, 46.2038356 ], + [ 6.1110237, 46.2038463 ], + [ 6.1113318, 46.2038642 ], + [ 6.1115909, 46.2038665 ], + [ 6.1117607, 46.2038117 ], + [ 6.1118205, 46.2037513 ], + [ 6.1124042, 46.2037266 ], + [ 6.1169498, 46.2038717 ], + [ 6.1170601, 46.2036967 ], + [ 6.1198631, 46.2038203 ], + [ 6.1198671, 46.2036017 ], + [ 6.1180122, 46.2030339 ], + [ 6.1199770000000004, 46.2022201 ], + [ 6.1210131, 46.2023527 ], + [ 6.1211371, 46.2017334 ], + [ 6.1216641, 46.2018052 ], + [ 6.1222459, 46.2019675 ], + [ 6.1226216, 46.2021915 ], + [ 6.1231691, 46.2024327 ], + [ 6.1236049, 46.202526 ], + [ 6.1241154, 46.2026363 ], + [ 6.1245039, 46.2027029 ], + [ 6.1247686, 46.2027887 ], + [ 6.1250417, 46.2029216 ], + [ 6.1252606, 46.2030293 ], + [ 6.1255088, 46.2031167 ], + [ 6.1259133, 46.2032151 ], + [ 6.1263978, 46.2033314 ], + [ 6.126893, 46.2034371 ], + [ 6.1273682, 46.2034966 ], + [ 6.1279017, 46.2035756 ], + [ 6.1283548, 46.2036509 ], + [ 6.1285271, 46.2036592 ], + [ 6.128722, 46.2036381 ], + [ 6.1289475, 46.2036964 ], + [ 6.1291257, 46.2037093 ], + [ 6.1294829, 46.2036783 ], + [ 6.1297109, 46.2036233 ], + [ 6.1299887, 46.2035627 ], + [ 6.1302696, 46.2035713 ], + [ 6.1306536, 46.2035523 ], + [ 6.1308974, 46.203502 ], + [ 6.1310765, 46.2034807 ], + [ 6.1313196, 46.2034601 ], + [ 6.1316436, 46.2034583 ], + [ 6.1318937, 46.2034487 ], + [ 6.1320982, 46.2034619 ], + [ 6.1323305, 46.2035023 ], + [ 6.1326155, 46.2035559 ], + [ 6.1329716, 46.2036195 ], + [ 6.1333103, 46.2037124 ], + [ 6.13356, 46.2037324 ], + [ 6.1338501, 46.2038473 ], + [ 6.1342294, 46.20402 ], + [ 6.13447, 46.2042018 ], + [ 6.1347902, 46.204408 ], + [ 6.1350306, 46.2046015 ], + [ 6.135244, 46.2048334 ], + [ 6.1354628, 46.2049996 ], + [ 6.135655, 46.2051359 ], + [ 6.1358798, 46.2052734 ], + [ 6.1360729, 46.2053917 ], + [ 6.1363205, 46.2054846 ], + [ 6.1365631, 46.2055378 ], + [ 6.1369193, 46.205541 ], + [ 6.1375837, 46.2055459 ], + [ 6.1381515, 46.205539 ], + [ 6.1387478, 46.2054308 ], + [ 6.1391705, 46.2053673 ], + [ 6.1398362, 46.2052598 ], + [ 6.140815, 46.2052899 ], + [ 6.1414304, 46.2053437 ], + [ 6.142061, 46.2054688 ], + [ 6.1425877, 46.2055513 ], + [ 6.1430627, 46.2056908 ], + [ 6.1437832, 46.2059034 ], + [ 6.1443469, 46.2060547 ], + [ 6.1448322, 46.2062006 ], + [ 6.1453328, 46.2063332 ], + [ 6.1460426, 46.2065258 ], + [ 6.1466955, 46.2066935 ], + [ 6.1474165, 46.2068412 ], + [ 6.1478918, 46.2068944 ], + [ 6.1484546, 46.2072778 ], + [ 6.1485617, 46.2072376 ], + [ 6.1487281, 46.2073745 ], + [ 6.1486224, 46.2074596 ], + [ 6.1497898, 46.2085103 ], + [ 6.1501386, 46.2084 ], + [ 6.1503719, 46.2086006 ], + [ 6.1505516, 46.2085676 ], + [ 6.1507035, 46.2086143 ], + [ 6.1508148, 46.2086713 ], + [ 6.1509067, 46.2086202 ], + [ 6.1510995, 46.2087906 ], + [ 6.1510725, 46.2088362 ], + [ 6.1511452, 46.208945 ], + [ 6.1511351, 46.2090007 ], + [ 6.1510346, 46.2091399 ], + [ 6.1530483, 46.2110494 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "WZV0028", + "country" : "CHE", + "name" : [ + { + "text" : "Wasser- und Zugvogelreservat Rhône-Verbois", + "lang" : "de-CH" + }, + { + "text" : "Réserve d'oiseaux d'eau et de migrateurs Rhône-Verbois", + "lang" : "fr-CH" + }, + { + "text" : "Riserva di uccelli acquatici e migratori Rhône-Verbois", + "lang" : "it-CH" + }, + { + "text" : "Water Bird and Migratory Bird Reserves Rhône-Verbois", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7675377, 47.468038 ], + [ 7.7674895, 47.4679574 ], + [ 7.7674061, 47.4679294 ], + [ 7.7672573, 47.4679258 ], + [ 7.7671266, 47.4679584 ], + [ 7.7670794999999995, 47.4680433 ], + [ 7.7669434, 47.4681728 ], + [ 7.7667892, 47.4682459 ], + [ 7.7666344, 47.4682382 ], + [ 7.7665033, 47.4682063 ], + [ 7.7663661, 47.4681502 ], + [ 7.7662945, 47.468106 ], + [ 7.7661812, 47.46807 ], + [ 7.766086, 47.4680784 ], + [ 7.7659731, 47.4680989 ], + [ 7.7658665, 47.4681799 ], + [ 7.7656643, 47.4681966 ], + [ 7.76548, 47.4682294 ], + [ 7.7649746, 47.4682913 ], + [ 7.7646786, 47.4683132 ], + [ 7.764356, 47.4683294 ], + [ 7.7639373, 47.4682082 ], + [ 7.7637948, 47.4683005 ], + [ 7.7637418, 47.4683151 ], + [ 7.7637379, 47.4683174 ], + [ 7.7637331, 47.4683175 ], + [ 7.7635754, 47.4683608 ], + [ 7.7635463, 47.4683688 ], + [ 7.7634165, 47.4683219 ], + [ 7.7633936, 47.4683222 ], + [ 7.7630882, 47.4682033 ], + [ 7.7627357, 47.4683104 ], + [ 7.7625227, 47.4683801 ], + [ 7.7625191000000004, 47.4683817 ], + [ 7.7623622999999995, 47.4684333 ], + [ 7.7623002, 47.4684538 ], + [ 7.7623701, 47.4685305 ], + [ 7.762707, 47.468899 ], + [ 7.7627957, 47.4689676 ], + [ 7.7631039, 47.4690744 ], + [ 7.763157, 47.4690928 ], + [ 7.7631581, 47.4690932 ], + [ 7.763295, 47.4691407 ], + [ 7.7638275, 47.4691851 ], + [ 7.7641515, 47.4691411 ], + [ 7.7643192, 47.4691183 ], + [ 7.7645071, 47.468744 ], + [ 7.7645359, 47.4687389 ], + [ 7.7646743, 47.4687148 ], + [ 7.7647823, 47.468696 ], + [ 7.7648261, 47.4686884 ], + [ 7.7648636, 47.4686743 ], + [ 7.7650494, 47.4686045 ], + [ 7.7650524, 47.4686034 ], + [ 7.7652809, 47.4686843 ], + [ 7.7654951, 47.46876 ], + [ 7.7656387, 47.4687633 ], + [ 7.7662856, 47.4687146 ], + [ 7.7663235, 47.4687117 ], + [ 7.7664228, 47.4687297 ], + [ 7.766744, 47.4689553 ], + [ 7.7668317, 47.468915 ], + [ 7.7669384, 47.4688661 ], + [ 7.7669722, 47.4688506 ], + [ 7.7669898, 47.4688261 ], + [ 7.7670151, 47.4687912 ], + [ 7.7670173, 47.4687887 ], + [ 7.7674696999999995, 47.4688094 ], + [ 7.7679552, 47.4687692 ], + [ 7.7679517, 47.4688812 ], + [ 7.7686561, 47.4689608 ], + [ 7.7690983, 47.4687499 ], + [ 7.769263, 47.4687242 ], + [ 7.7694343, 47.468767 ], + [ 7.7698599, 47.4685522 ], + [ 7.769747, 47.4683933 ], + [ 7.7697226, 47.4683801 ], + [ 7.7696243, 47.4683315 ], + [ 7.7695215, 47.4682891 ], + [ 7.7694513, 47.4682558 ], + [ 7.7693885, 47.4681972 ], + [ 7.7693418, 47.4681452 ], + [ 7.7693338, 47.4681399 ], + [ 7.7692869, 47.4681091 ], + [ 7.7692063000000005, 47.4680994 ], + [ 7.7691416, 47.4681126 ], + [ 7.7690107, 47.4681283 ], + [ 7.7689499, 47.4681505 ], + [ 7.7689041, 47.4681726 ], + [ 7.7688523, 47.4681656 ], + [ 7.7688217, 47.4681613 ], + [ 7.7689195, 47.4680427 ], + [ 7.7689866, 47.467916 ], + [ 7.7688401, 47.4679374 ], + [ 7.76868, 47.4680226 ], + [ 7.768496, 47.4680958 ], + [ 7.768288, 47.4681367 ], + [ 7.7681573, 47.4681653 ], + [ 7.7679194, 47.4681942 ], + [ 7.767723, 47.4681827 ], + [ 7.7676098, 47.4681588 ], + [ 7.7675678999999995, 47.4681145 ], + [ 7.7675377, 47.468038 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr146", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Höli", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Höli", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Höli", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Höli", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6312556, 47.5162517 ], + [ 7.6312359, 47.5166826 ], + [ 7.6312792, 47.5169196 ], + [ 7.6313221, 47.5170703 ], + [ 7.6313862, 47.5172067 ], + [ 7.6348152, 47.515549 ], + [ 7.6347793, 47.5141385 ], + [ 7.6324939, 47.5150155 ], + [ 7.6321967, 47.5150664 ], + [ 7.6319626, 47.5151263 ], + [ 7.6318772, 47.515164 ], + [ 7.6316532, 47.5152801 ], + [ 7.6315135, 47.5153589 ], + [ 7.6314767, 47.5154035 ], + [ 7.6313277, 47.515677 ], + [ 7.6312754, 47.515871 ], + [ 7.6312555, 47.5162373 ], + [ 7.6312556, 47.5162517 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr034", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Gruet", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Gruet", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Gruet", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Gruet", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4224921, 47.3980074 ], + [ 7.4225908, 47.3980599 ], + [ 7.4225629, 47.3980774 ], + [ 7.4225284, 47.3980991 ], + [ 7.422436, 47.3981569 ], + [ 7.4224274, 47.3981623 ], + [ 7.4223271, 47.3981927 ], + [ 7.4222482, 47.3982167 ], + [ 7.4222415999999996, 47.3982154 ], + [ 7.4220928, 47.398187 ], + [ 7.421934, 47.3981566 ], + [ 7.4219291, 47.398156 ], + [ 7.4218773, 47.3981502 ], + [ 7.4218116, 47.3981429 ], + [ 7.4217458, 47.3981355 ], + [ 7.4216561, 47.3982457 ], + [ 7.4215862, 47.3982862 ], + [ 7.4216331, 47.3983302 ], + [ 7.4216517, 47.3983475 ], + [ 7.4216574, 47.3983512 ], + [ 7.4217056, 47.3983822 ], + [ 7.4217408, 47.3984049 ], + [ 7.4218489, 47.3984501 ], + [ 7.421961, 47.3984849 ], + [ 7.4219949, 47.3984945 ], + [ 7.4221585, 47.398541 ], + [ 7.4224541, 47.3986021 ], + [ 7.4225014, 47.39861 ], + [ 7.4225224, 47.3986135 ], + [ 7.4227084, 47.3986443 ], + [ 7.4227899, 47.3986583 ], + [ 7.4228262, 47.3986646 ], + [ 7.4230068, 47.3986958 ], + [ 7.4230773, 47.3987099 ], + [ 7.4233316, 47.3987609 ], + [ 7.4234428, 47.3987798 ], + [ 7.4235051, 47.3987904 ], + [ 7.4235683, 47.3988012 ], + [ 7.4236075, 47.3988078 ], + [ 7.4236359, 47.3988106 ], + [ 7.4239781, 47.398844 ], + [ 7.4240221, 47.3988445 ], + [ 7.4240384, 47.3988446 ], + [ 7.4240533, 47.3988448 ], + [ 7.4241737, 47.3988462 ], + [ 7.4242317, 47.3988468 ], + [ 7.4242533, 47.3988471 ], + [ 7.4245522, 47.39882 ], + [ 7.4248098, 47.3987871 ], + [ 7.4249967, 47.3987549 ], + [ 7.42503, 47.3987248 ], + [ 7.4250823, 47.3987204 ], + [ 7.4250952, 47.398735 ], + [ 7.4251085, 47.39875 ], + [ 7.4252025, 47.3987681 ], + [ 7.4254117, 47.3988195 ], + [ 7.4254335, 47.3988196 ], + [ 7.4254444, 47.3988224 ], + [ 7.4254949, 47.3988354 ], + [ 7.4256554, 47.3988667 ], + [ 7.4257723, 47.3988785 ], + [ 7.4258748, 47.3988812 ], + [ 7.42598, 47.398881 ], + [ 7.4260926, 47.3988872 ], + [ 7.4261091, 47.3988914 ], + [ 7.4261715, 47.3989073 ], + [ 7.4261942, 47.3988785 ], + [ 7.4282423, 47.3982697 ], + [ 7.4283811, 47.3981469 ], + [ 7.4284977, 47.3980452 ], + [ 7.4286898, 47.3979337 ], + [ 7.4287944, 47.3978717 ], + [ 7.4288355, 47.3978663 ], + [ 7.4290117, 47.3977863 ], + [ 7.4290528, 47.3977647 ], + [ 7.4291574, 47.3977296 ], + [ 7.4292501, 47.3976783 ], + [ 7.4292872, 47.3976478 ], + [ 7.4293508, 47.3976172 ], + [ 7.4295072, 47.3975129 ], + [ 7.4296608, 47.397422 ], + [ 7.4298052, 47.3973726 ], + [ 7.4299933, 47.3972998 ], + [ 7.4301761, 47.3972566 ], + [ 7.4302887, 47.3972359 ], + [ 7.4303351, 47.3972125 ], + [ 7.4305206, 47.397065 ], + [ 7.4306107, 47.3969922 ], + [ 7.4306941, 47.396958 ], + [ 7.4308001, 47.3968861 ], + [ 7.4308594, 47.396864 ], + [ 7.4308364000000005, 47.3968493 ], + [ 7.4308174, 47.3968371 ], + [ 7.4314374, 47.3964769 ], + [ 7.4318556000000005, 47.3963229 ], + [ 7.4326474, 47.3959643 ], + [ 7.4329159, 47.3958427 ], + [ 7.4330152, 47.3959311 ], + [ 7.4330225, 47.3959284 ], + [ 7.4334767, 47.395763 ], + [ 7.433563, 47.3957315 ], + [ 7.4335709, 47.3957286 ], + [ 7.4336556, 47.3956081 ], + [ 7.4336983, 47.3955473 ], + [ 7.4337976999999995, 47.3954057 ], + [ 7.4337607, 47.3953532 ], + [ 7.4337397, 47.3953234 ], + [ 7.4337287, 47.3953079 ], + [ 7.4337477, 47.3952802 ], + [ 7.4337564, 47.3952675 ], + [ 7.4337962, 47.3952095 ], + [ 7.433833, 47.3951559 ], + [ 7.4338121, 47.3951407 ], + [ 7.4337781, 47.395116 ], + [ 7.4337588, 47.395102 ], + [ 7.433663, 47.3950725 ], + [ 7.4336472, 47.3950679 ], + [ 7.4333868, 47.3950103 ], + [ 7.4333594, 47.3950043 ], + [ 7.433095, 47.3950146 ], + [ 7.4330648, 47.3950191 ], + [ 7.4330345, 47.3950237 ], + [ 7.4327573, 47.3950895 ], + [ 7.4325139, 47.3951654 ], + [ 7.432252, 47.3952534 ], + [ 7.432243, 47.395256 ], + [ 7.4321648, 47.3952942 ], + [ 7.4320731, 47.3953444 ], + [ 7.4319223, 47.3954143 ], + [ 7.4318336, 47.3954784 ], + [ 7.4318144, 47.3954931 ], + [ 7.4317953, 47.3955078 ], + [ 7.4317493, 47.3955425 ], + [ 7.4316834, 47.3955976 ], + [ 7.4316155, 47.3956713 ], + [ 7.4315838, 47.3957059 ], + [ 7.4315255, 47.3957547 ], + [ 7.4314413, 47.3958327 ], + [ 7.4313836, 47.3958806 ], + [ 7.4313323, 47.3959328 ], + [ 7.4312803, 47.3959848 ], + [ 7.4312673, 47.3959963 ], + [ 7.4312549, 47.3960073 ], + [ 7.4311999, 47.3960519 ], + [ 7.431068, 47.3961605 ], + [ 7.4310243, 47.3961936 ], + [ 7.4309437, 47.3962539 ], + [ 7.4308591, 47.3963139 ], + [ 7.4307907, 47.3963558 ], + [ 7.430683, 47.3964235 ], + [ 7.4306648, 47.396434 ], + [ 7.4306466, 47.3964444 ], + [ 7.4305971, 47.3964679 ], + [ 7.4305025, 47.396513 ], + [ 7.4304121, 47.3965608 ], + [ 7.4303109, 47.3966155 ], + [ 7.4302664, 47.3966218 ], + [ 7.4301872, 47.396634 ], + [ 7.4301474, 47.3966402 ], + [ 7.4300234, 47.3966954 ], + [ 7.4297921, 47.3967831 ], + [ 7.4296134, 47.3968424 ], + [ 7.4294347, 47.3969017 ], + [ 7.4286955, 47.3971361 ], + [ 7.4286773, 47.3971419 ], + [ 7.428595, 47.3971679 ], + [ 7.4284817, 47.3972037 ], + [ 7.4281154, 47.3973193 ], + [ 7.4278548, 47.3973965 ], + [ 7.4276087, 47.3974839 ], + [ 7.4274591, 47.3975152 ], + [ 7.4273398, 47.3975459 ], + [ 7.4273611, 47.3976026 ], + [ 7.4273249, 47.3976192 ], + [ 7.4272145, 47.3976697 ], + [ 7.4271581, 47.3976955 ], + [ 7.4271109, 47.3977172 ], + [ 7.4269323, 47.3977538 ], + [ 7.4268029, 47.3977848 ], + [ 7.4263655, 47.3978895 ], + [ 7.4263369, 47.3978962 ], + [ 7.4263082, 47.3979026 ], + [ 7.4262469, 47.3979172 ], + [ 7.4261842, 47.3979319 ], + [ 7.4260583, 47.3979612 ], + [ 7.4260099, 47.3979725 ], + [ 7.4258352, 47.3980132 ], + [ 7.4253362, 47.3980549 ], + [ 7.4250573, 47.3980453 ], + [ 7.4243701, 47.3980675 ], + [ 7.4242912, 47.3980718 ], + [ 7.4241332, 47.3980802 ], + [ 7.4240543, 47.3980819 ], + [ 7.4239753, 47.3980788 ], + [ 7.4238973, 47.3980704 ], + [ 7.4238225, 47.398053 ], + [ 7.4237704, 47.3980378 ], + [ 7.4236008, 47.3980572 ], + [ 7.4234298, 47.3980089 ], + [ 7.4233139999999995, 47.3979762 ], + [ 7.4232589, 47.3979606 ], + [ 7.4231674, 47.3980194 ], + [ 7.4230608, 47.3980879 ], + [ 7.4230135, 47.3980692 ], + [ 7.4229514, 47.3980447 ], + [ 7.4229176, 47.3980364 ], + [ 7.4225581, 47.3979479 ], + [ 7.4224875, 47.3979306 ], + [ 7.4224921, 47.3980074 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr037", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Wuerbergli", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Wuerbergli", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Wuerbergli", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Wuerbergli", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.5104006, 47.2389836 ], + [ 8.5110995, 47.2393252 ], + [ 8.511647, 47.239357 ], + [ 8.5210438, 47.2392521 ], + [ 8.5210737, 47.2387741 ], + [ 8.5222028, 47.2387635 ], + [ 8.5222046, 47.2382031 ], + [ 8.520370400000001, 47.2382203 ], + [ 8.5200957, 47.2379611 ], + [ 8.5190035, 47.2379615 ], + [ 8.5178774, 47.2376644 ], + [ 8.514312499999999, 47.2377247 ], + [ 8.5136471, 47.2377372 ], + [ 8.5133084, 47.2376423 ], + [ 8.5131627, 47.2378856 ], + [ 8.5123063, 47.2381176 ], + [ 8.5110011, 47.2381064 ], + [ 8.5104098, 47.2383259 ], + [ 8.5104006, 47.2389836 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZN002", + "country" : "CHE", + "name" : [ + { + "text" : "LSZN Hausen am Albis (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSZN Hausen am Albis (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSZN Hausen am Albis (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSZN Hausen am Albis (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Flugplatzgenossenschaft Hausen Oberamt", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzgenossenschaft Hausen Oberamt", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzgenossenschaft Hausen Oberamt", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzgenossenschaft Hausen Oberamt", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Michael Ras", + "lang" : "de-CH" + }, + { + "text" : "Michael Ras", + "lang" : "fr-CH" + }, + { + "text" : "Michael Ras", + "lang" : "it-CH" + }, + { + "text" : "Michael Ras", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.fgho.ch/de/kontakt", + "email" : "office@fgho.ch", + "phone" : "0041794574479", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P02DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.9232212, 46.3814409 ], + [ 6.9234762, 46.3814363 ], + [ 6.9236561, 46.3814261 ], + [ 6.9237123, 46.381422 ], + [ 6.9237318, 46.3814206 ], + [ 6.9238663, 46.3814111 ], + [ 6.9239517, 46.3814044 ], + [ 6.9242038, 46.3813768 ], + [ 6.9244527, 46.3813378 ], + [ 6.9246973, 46.3812876 ], + [ 6.9249367, 46.3812265 ], + [ 6.9251698, 46.3811547 ], + [ 6.9253957, 46.3810725 ], + [ 6.9256132, 46.3809802 ], + [ 6.9258216, 46.3808783 ], + [ 6.9260199, 46.3807671 ], + [ 6.9262073, 46.3806473 ], + [ 6.9263829, 46.3805192 ], + [ 6.9265460999999995, 46.3803834 ], + [ 6.9266961, 46.3802405 ], + [ 6.9268323, 46.3800912 ], + [ 6.926954, 46.379936 ], + [ 6.9270608, 46.3797756 ], + [ 6.9271522999999995, 46.3796107 ], + [ 6.9272279, 46.3794421 ], + [ 6.9272875, 46.3792703 ], + [ 6.9273307, 46.3790963 ], + [ 6.9273574, 46.3789207 ], + [ 6.9273674, 46.3787442 ], + [ 6.9273606999999995, 46.3785677 ], + [ 6.927346, 46.3784437 ], + [ 6.9272245, 46.377646 ], + [ 6.9272228, 46.3776241 ], + [ 6.9272088, 46.3775047 ], + [ 6.9271954000000004, 46.3774158 ], + [ 6.9271861, 46.3773594 ], + [ 6.9271462, 46.3771849 ], + [ 6.9270899, 46.3770127 ], + [ 6.9270174, 46.3768434 ], + [ 6.9269291, 46.3766777 ], + [ 6.9268253, 46.3765164 ], + [ 6.9267065, 46.3763601 ], + [ 6.9265732, 46.3762095 ], + [ 6.9264259, 46.3760653 ], + [ 6.9262654, 46.375928 ], + [ 6.9260922, 46.3757984 ], + [ 6.9259071, 46.3756768 ], + [ 6.9257109, 46.3755639 ], + [ 6.9255045, 46.3754601 ], + [ 6.9252887, 46.3753658 ], + [ 6.9250644999999995, 46.3752816 ], + [ 6.9248328, 46.3752076 ], + [ 6.9245946, 46.3751443 ], + [ 6.924351, 46.375092 ], + [ 6.9241029, 46.3750507 ], + [ 6.9238514, 46.3750208 ], + [ 6.9235977, 46.3750024 ], + [ 6.9233427, 46.3749954 ], + [ 6.9230876, 46.375 ], + [ 6.9229113, 46.37501 ], + [ 6.9226057, 46.3750321 ], + [ 6.922528, 46.3750383 ], + [ 6.922276, 46.3750659 ], + [ 6.9220271, 46.3751049 ], + [ 6.9217825, 46.375155 ], + [ 6.9215431, 46.3752162 ], + [ 6.92131, 46.375288 ], + [ 6.9210842, 46.3753702 ], + [ 6.9208666, 46.3754625 ], + [ 6.9206582999999995, 46.3755644 ], + [ 6.92046, 46.3756755 ], + [ 6.9202726, 46.3757954 ], + [ 6.9200969, 46.3759234 ], + [ 6.9199338, 46.3760592 ], + [ 6.9197838, 46.3762021 ], + [ 6.9196476, 46.3763514 ], + [ 6.9195258, 46.3765066 ], + [ 6.9194189999999995, 46.376667 ], + [ 6.9193275, 46.3768318 ], + [ 6.9192519, 46.3770005 ], + [ 6.9191923, 46.3771722 ], + [ 6.919149, 46.3773462 ], + [ 6.9191223, 46.3775219 ], + [ 6.9191123, 46.3776983 ], + [ 6.919119, 46.3778749 ], + [ 6.9191334, 46.377997 ], + [ 6.9191468, 46.3780859 ], + [ 6.9191557, 46.3781396 ], + [ 6.9191956, 46.378314 ], + [ 6.9192519, 46.3784863 ], + [ 6.9193072, 46.3786191 ], + [ 6.919369, 46.3790251 ], + [ 6.9193776, 46.3790769 ], + [ 6.9194175, 46.3792513 ], + [ 6.9194738000000005, 46.3794235 ], + [ 6.9195463, 46.3795929 ], + [ 6.9196346, 46.3797586 ], + [ 6.9197383, 46.3799199 ], + [ 6.9198571, 46.3800762 ], + [ 6.9199904, 46.3802268 ], + [ 6.9201377, 46.380371 ], + [ 6.9202981999999995, 46.3805083 ], + [ 6.9204714, 46.380637899999996 ], + [ 6.9206565, 46.3807595 ], + [ 6.9208527, 46.3808724 ], + [ 6.9210591, 46.3809763 ], + [ 6.9212749, 46.3810705 ], + [ 6.9214991999999995, 46.3811548 ], + [ 6.9217309, 46.3812287 ], + [ 6.9219691, 46.381292 ], + [ 6.9222128, 46.3813444 ], + [ 6.9224609, 46.3813856 ], + [ 6.9227124, 46.3814155 ], + [ 6.9229662, 46.381434 ], + [ 6.9232212, 46.3814409 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00022", + "country" : "CHE", + "name" : [ + { + "text" : "Centre gendarmerie mobile - Région Est (Rennaz)", + "lang" : "de-CH" + }, + { + "text" : "Centre gendarmerie mobile - Région Est (Rennaz)", + "lang" : "fr-CH" + }, + { + "text" : "Centre gendarmerie mobile - Région Est (Rennaz)", + "lang" : "it-CH" + }, + { + "text" : "Centre gendarmerie mobile - Région Est (Rennaz)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kantonspolizei Waadt", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale vaudoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Vaud", + "lang" : "it-CH" + }, + { + "text" : "Vaud Cantonal Police", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.pcv@vd.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.8373591, 46.5447786 ], + [ 6.8373553, 46.5446373 ], + [ 6.8373408, 46.5444964 ], + [ 6.8373156999999996, 46.5443562 ], + [ 6.8372799, 46.5442171 ], + [ 6.8372336, 46.5440795 ], + [ 6.837177, 46.5439437 ], + [ 6.8371101, 46.5438101 ], + [ 6.8370332, 46.5436792 ], + [ 6.8369465, 46.5435512 ], + [ 6.8368502, 46.5434265 ], + [ 6.8367445, 46.5433055 ], + [ 6.8366298, 46.5431885 ], + [ 6.8365064, 46.5430757 ], + [ 6.8363747, 46.5429676 ], + [ 6.8362349, 46.5428643 ], + [ 6.8360874, 46.5427663 ], + [ 6.8359327, 46.5426737 ], + [ 6.8357713, 46.5425868 ], + [ 6.8356034, 46.5425059 ], + [ 6.8354297, 46.5424312 ], + [ 6.8352505, 46.5423628 ], + [ 6.8350663, 46.542301 ], + [ 6.8348778, 46.5422459 ], + [ 6.8346853, 46.5421977 ], + [ 6.8344894, 46.5421566 ], + [ 6.8342907, 46.5421225 ], + [ 6.8340897, 46.5420957 ], + [ 6.8338868999999995, 46.5420762 ], + [ 6.8336829, 46.542064 ], + [ 6.8334782, 46.5420592 ], + [ 6.8332735, 46.5420618 ], + [ 6.8330693, 46.5420718 ], + [ 6.8328661, 46.5420892 ], + [ 6.8326645, 46.5421139 ], + [ 6.832465, 46.5421458 ], + [ 6.8322682, 46.5421849 ], + [ 6.8320747, 46.542231 ], + [ 6.8318849, 46.5422841 ], + [ 6.8316994, 46.5423439 ], + [ 6.8315187, 46.5424103 ], + [ 6.8313433, 46.5424832 ], + [ 6.8311737, 46.5425623 ], + [ 6.8310103, 46.5426475 ], + [ 6.8308535, 46.5427384 ], + [ 6.8307039, 46.5428349 ], + [ 6.8305618, 46.5429366 ], + [ 6.8304276, 46.5430433 ], + [ 6.8303017, 46.5431547 ], + [ 6.8301844, 46.5432706 ], + [ 6.8300761, 46.5433904 ], + [ 6.8299769999999995, 46.5435141 ], + [ 6.8298874, 46.5436411 ], + [ 6.8298076, 46.5437712 ], + [ 6.8297377, 46.5439041 ], + [ 6.8296779999999995, 46.5440392 ], + [ 6.8296287, 46.5441763 ], + [ 6.8295898, 46.5443151 ], + [ 6.8295615, 46.544455 ], + [ 6.8295439, 46.5445957 ], + [ 6.8295369, 46.544737 ], + [ 6.8295407, 46.5448782 ], + [ 6.8295552, 46.5450191 ], + [ 6.8295803, 46.5451594 ], + [ 6.8296161, 46.5452985 ], + [ 6.8296623, 46.5454361 ], + [ 6.8297189, 46.5455719 ], + [ 6.8297858, 46.5457054 ], + [ 6.8298627, 46.5458364 ], + [ 6.8299494, 46.5459644 ], + [ 6.8300457, 46.5460891 ], + [ 6.8301513, 46.5462101 ], + [ 6.830266, 46.5463272 ], + [ 6.8303894, 46.5464399 ], + [ 6.8305212, 46.5465481 ], + [ 6.830661, 46.5466513 ], + [ 6.8308084000000004, 46.5467493 ], + [ 6.8309631, 46.5468419 ], + [ 6.8311246, 46.5469288 ], + [ 6.8312924, 46.5470098 ], + [ 6.8314661999999995, 46.5470845 ], + [ 6.8316454, 46.5471529 ], + [ 6.8318294999999996, 46.5472147 ], + [ 6.8320181, 46.5472698 ], + [ 6.8322106, 46.547318 ], + [ 6.8324065, 46.5473591 ], + [ 6.8326052, 46.5473932 ], + [ 6.8328063, 46.54742 ], + [ 6.8330091, 46.5474395 ], + [ 6.8332131, 46.5474517 ], + [ 6.8334178, 46.5474565 ], + [ 6.8336225, 46.5474539 ], + [ 6.8338268, 46.5474439 ], + [ 6.83403, 46.5474265 ], + [ 6.8342317, 46.5474019 ], + [ 6.8344311, 46.5473699 ], + [ 6.8346279, 46.5473309 ], + [ 6.8348215, 46.5472847 ], + [ 6.8350113, 46.5472317 ], + [ 6.8351968, 46.5471718 ], + [ 6.8353775, 46.5471053 ], + [ 6.8355529, 46.5470325 ], + [ 6.8357226, 46.5469533 ], + [ 6.835886, 46.5468682 ], + [ 6.8360427, 46.5467772 ], + [ 6.8361923, 46.5466808 ], + [ 6.8363344, 46.546579 ], + [ 6.8364686, 46.5464723 ], + [ 6.8365945, 46.5463609 ], + [ 6.8367118, 46.546245 ], + [ 6.8368201, 46.5461251 ], + [ 6.8369192, 46.5460015 ], + [ 6.8370087999999996, 46.5458744 ], + [ 6.8370885999999995, 46.5457443 ], + [ 6.8371584, 46.5456115 ], + [ 6.8372181, 46.5454764 ], + [ 6.8372674, 46.5453392 ], + [ 6.8373063, 46.5452005 ], + [ 6.8373346, 46.5450606 ], + [ 6.8373522, 46.5449198 ], + [ 6.8373591, 46.5447786 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "EDM0001", + "country" : "CHE", + "name" : [ + { + "text" : "Etablissement pour mineurs et jeunes adultes Aux Léchaires", + "lang" : "de-CH" + }, + { + "text" : "Etablissement pour mineurs et jeunes adultes Aux Léchaires", + "lang" : "fr-CH" + }, + { + "text" : "Etablissement pour mineurs et jeunes adultes Aux Léchaires", + "lang" : "it-CH" + }, + { + "text" : "Etablissement pour mineurs et jeunes adultes Aux Léchaires", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Direction du Service pénitentiaire Vaud", + "lang" : "de-CH" + }, + { + "text" : "Direction du Service pénitentiaire Vaud", + "lang" : "fr-CH" + }, + { + "text" : "Direction du Service pénitentiaire Vaud", + "lang" : "it-CH" + }, + { + "text" : "Direction du Service pénitentiaire Vaud", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/toutes-les-autorites/departements/departement-de-la-jeunesse-de-lenvironnement-et-de-la-securite-djes/service-penitentiaire-spen/", + "email" : "info.spen@vd.ch", + "phone" : "0041213164801", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6375942, 47.043907 ], + [ 7.6375601, 47.0437347 ], + [ 7.6375375, 47.0435878 ], + [ 7.6374827, 47.0434349 ], + [ 7.6374689, 47.0433824 ], + [ 7.6368405, 47.042678 ], + [ 7.636723, 47.0420131 ], + [ 7.6366361, 47.0414733 ], + [ 7.6366645, 47.0414714 ], + [ 7.6366596, 47.0414385 ], + [ 7.6366319, 47.0414407 ], + [ 7.6365538, 47.0407883 ], + [ 7.6369717999999995, 47.0407319 ], + [ 7.6369565999999995, 47.0406506 ], + [ 7.6368661, 47.0400941 ], + [ 7.636911, 47.039513 ], + [ 7.637209, 47.0392173 ], + [ 7.6372754, 47.0389424 ], + [ 7.637758, 47.0390066 ], + [ 7.6378625, 47.0383575 ], + [ 7.6371709, 47.0383784 ], + [ 7.6371158, 47.0380441 ], + [ 7.6373449, 47.0377431 ], + [ 7.637497, 47.0375181 ], + [ 7.6379613, 47.0371817 ], + [ 7.6378211, 47.0370856 ], + [ 7.6374243, 47.0370208 ], + [ 7.6373496, 47.0370553 ], + [ 7.6372398, 47.0370839 ], + [ 7.6370892, 47.0371088 ], + [ 7.6368067, 47.0370913 ], + [ 7.6365379, 47.0370641 ], + [ 7.6360317, 47.036985 ], + [ 7.6358114, 47.0369513 ], + [ 7.6355955, 47.0368915 ], + [ 7.6354044, 47.0368275 ], + [ 7.635267, 47.0370346 ], + [ 7.6354852, 47.0371007 ], + [ 7.6350104, 47.0378013 ], + [ 7.6348917, 47.0379557 ], + [ 7.6347918, 47.0381171 ], + [ 7.6345449, 47.0392298 ], + [ 7.6343221, 47.0402032 ], + [ 7.6342443, 47.0405991 ], + [ 7.6341789, 47.0408497 ], + [ 7.6340193, 47.0414609 ], + [ 7.6337504, 47.0431675 ], + [ 7.6336704, 47.0435627 ], + [ 7.6336341999999995, 47.0439521 ], + [ 7.6336285, 47.0443507 ], + [ 7.6336474, 47.0446332 ], + [ 7.6341794, 47.0447009 ], + [ 7.6340477, 47.0451089 ], + [ 7.6340212, 47.0452075 ], + [ 7.6339998, 47.0453089 ], + [ 7.6339848, 47.045411 ], + [ 7.6339791, 47.0455136 ], + [ 7.6339829, 47.0456162 ], + [ 7.6340018, 47.0457188 ], + [ 7.6340269, 47.0458173 ], + [ 7.6340633, 47.0459174 ], + [ 7.634107, 47.0460137 ], + [ 7.6341577, 47.0461097 ], + [ 7.6345594, 47.0467444 ], + [ 7.6345835, 47.0468013 ], + [ 7.6345966, 47.0468598 ], + [ 7.6346029, 47.0468342 ], + [ 7.63461, 47.0468088 ], + [ 7.634618, 47.0467834 ], + [ 7.6346267999999995, 47.0467582 ], + [ 7.6346366, 47.0467332 ], + [ 7.6346472, 47.0467083 ], + [ 7.6346586, 47.0466836 ], + [ 7.6346687, 47.0466634 ], + [ 7.6346794, 47.0466434 ], + [ 7.6346906, 47.0466234 ], + [ 7.6347024, 47.0466037 ], + [ 7.6347147, 47.0465841 ], + [ 7.6347276, 47.0465647 ], + [ 7.6347411, 47.0465454 ], + [ 7.6347361, 47.046546 ], + [ 7.6347312, 47.0465464 ], + [ 7.6347262, 47.0465465 ], + [ 7.6347211999999995, 47.0465465 ], + [ 7.6347163, 47.0465462 ], + [ 7.6347114, 47.0465457 ], + [ 7.6347065, 47.046545 ], + [ 7.6347017, 47.0465441 ], + [ 7.634697, 47.046543 ], + [ 7.6346924, 47.0465416 ], + [ 7.6346879, 47.0465401 ], + [ 7.6346836, 47.0465384 ], + [ 7.6346795, 47.0465365 ], + [ 7.6346755, 47.0465345 ], + [ 7.6346717, 47.0465323 ], + [ 7.6346608, 47.0465251 ], + [ 7.6346502, 47.0465177 ], + [ 7.6346401, 47.04651 ], + [ 7.6346304, 47.046502 ], + [ 7.6346211, 47.0464938 ], + [ 7.6346123, 47.0464854 ], + [ 7.6346039999999995, 47.0464768 ], + [ 7.634546, 47.046417 ], + [ 7.6345366, 47.0464073 ], + [ 7.6345275, 47.0463976 ], + [ 7.6345185, 47.0463877 ], + [ 7.6345097, 47.0463778 ], + [ 7.6345012, 47.0463678 ], + [ 7.6344928, 47.0463577 ], + [ 7.6344846, 47.0463476 ], + [ 7.6344757, 47.0463362 ], + [ 7.6344671, 47.0463248 ], + [ 7.6344588, 47.0463133 ], + [ 7.6344507, 47.0463017 ], + [ 7.6344428, 47.04629 ], + [ 7.6344352, 47.0462783 ], + [ 7.6344279, 47.0462664 ], + [ 7.6343421, 47.0461272 ], + [ 7.6343668000000005, 47.0461205 ], + [ 7.6343858, 47.0461011 ], + [ 7.6342831, 47.0460096 ], + [ 7.6342403999999995, 47.0459176 ], + [ 7.6342027, 47.0458246 ], + [ 7.6341771, 47.045729 ], + [ 7.6341567, 47.0456332 ], + [ 7.6341505, 47.0455379 ], + [ 7.6344319, 47.0446026 ], + [ 7.6346926, 47.0437357 ], + [ 7.6361339, 47.0438342 ], + [ 7.6375910000000005, 47.0439333 ], + [ 7.6375942, 47.043907 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VBS_18", + "country" : "CHE", + "name" : [ + { + "text" : "VBS_18 Burgdorf", + "lang" : "de-CH" + }, + { + "text" : "VBS_18 Burgdorf", + "lang" : "fr-CH" + }, + { + "text" : "VBS_18 Burgdorf", + "lang" : "it-CH" + }, + { + "text" : "VBS_18 Burgdorf", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "regulationExemption" : "YES", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Eidgenössisches Departement für Verteidigung, Bevölkerungsschutz und Sport (VBS)", + "lang" : "de-CH" + }, + { + "text" : "Département fédéral de la défense, de la protection de la population et des sports (DDPS)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento federale della difesa, della protezione della popolazione e dello sport (DDPS)", + "lang" : "it-CH" + }, + { + "text" : "Federal Department of Defence, Civil Protection and Sport (DDPS)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Lageverfolgungszentrum der Armee LVZ A", + "lang" : "de-CH" + }, + { + "text" : "Centre de suivi de la situation de l’armée, CSS A", + "lang" : "fr-CH" + }, + { + "text" : "Centro di monitoraggio della situazione dell’esercito, Centro mon sit Es", + "lang" : "it-CH" + }, + { + "text" : "Joint Operation Center, JOC", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vtg.admin.ch/en/joint-operations-command", + "email" : "lvz.op@vtg.admin.ch", + "phone" : "+41 58 464 96 43", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.1312066, 46.3167208 ], + [ 7.1325224, 46.315922 ], + [ 7.1328625, 46.315698 ], + [ 7.1339991, 46.3155887 ], + [ 7.1347229, 46.3154683 ], + [ 7.1354474, 46.3152246 ], + [ 7.1359209, 46.3150622 ], + [ 7.1364242, 46.3146749 ], + [ 7.1367651, 46.3145328 ], + [ 7.1372223, 46.3144936 ], + [ 7.1376207, 46.3145144 ], + [ 7.1380185, 46.3146486 ], + [ 7.1394491, 46.3146623 ], + [ 7.140526, 46.3147776 ], + [ 7.1420427, 46.3135294 ], + [ 7.1425331, 46.3124026 ], + [ 7.1431503, 46.3115784 ], + [ 7.1450434, 46.3095935 ], + [ 7.1460673, 46.3082181 ], + [ 7.1464266, 46.3070559 ], + [ 7.1461449, 46.3061061 ], + [ 7.1456862, 46.3049876 ], + [ 7.1430991, 46.3057464 ], + [ 7.1415257, 46.3067219 ], + [ 7.1403303, 46.3071775 ], + [ 7.1382849, 46.3075859 ], + [ 7.1371052, 46.308243 ], + [ 7.135817, 46.3088036 ], + [ 7.134529, 46.3090871 ], + [ 7.1327134, 46.3090003 ], + [ 7.1294528, 46.3096454 ], + [ 7.1286975, 46.3098395 ], + [ 7.1265701, 46.3104795 ], + [ 7.1262149, 46.3106251 ], + [ 7.1253652, 46.310737 ], + [ 7.1249048, 46.3108914 ], + [ 7.12409, 46.3110447 ], + [ 7.1238184, 46.3110925 ], + [ 7.1241813, 46.3114129 ], + [ 7.1244268, 46.3118301 ], + [ 7.1250847, 46.3123312 ], + [ 7.1265429, 46.3131682 ], + [ 7.1270372, 46.3134476 ], + [ 7.1281081, 46.3139255 ], + [ 7.129684, 46.3146243 ], + [ 7.1305078, 46.314954 ], + [ 7.1308375999999996, 46.3151753 ], + [ 7.1311423, 46.3154703 ], + [ 7.1312354, 46.3157647 ], + [ 7.1312066, 46.3167208 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00019", + "country" : "CHE", + "name" : [ + { + "text" : "Châtillon", + "lang" : "de-CH" + }, + { + "text" : "Châtillon", + "lang" : "fr-CH" + }, + { + "text" : "Châtillon", + "lang" : "it-CH" + }, + { + "text" : "Châtillon", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "startDateTime" : "2024-11-15T00:00:00+01:00", + "endDateTime" : "2025-04-15T00:00:00+02:00" + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Generaldirektion für Umwelt", + "lang" : "de-CH" + }, + { + "text" : "Direction générale de l'environnement", + "lang" : "fr-CH" + }, + { + "text" : "Direzione generale dell'Ambiente", + "lang" : "it-CH" + }, + { + "text" : "Environment Department", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.dge@vd.ch", + "phone" : "0041213164422", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6699624, 47.4087749 ], + [ 7.6699615, 47.4087856 ], + [ 7.6699605, 47.4087963 ], + [ 7.6699596, 47.4088071 ], + [ 7.6699591, 47.4088125 ], + [ 7.6699611, 47.4088103 ], + [ 7.6699882, 47.4087796 ], + [ 7.6699896, 47.4087781 ], + [ 7.6699901, 47.4087775 ], + [ 7.6699917, 47.4087753 ], + [ 7.6699956, 47.4087703 ], + [ 7.6699963, 47.4087693 ], + [ 7.6699969, 47.4087686 ], + [ 7.670066, 47.4086782 ], + [ 7.6701393, 47.4085731 ], + [ 7.6701435, 47.4085671 ], + [ 7.670233, 47.4084388 ], + [ 7.6703125, 47.4083249 ], + [ 7.6703871, 47.4082178 ], + [ 7.6705121, 47.4080406 ], + [ 7.6705577, 47.4079853 ], + [ 7.670622, 47.4079327 ], + [ 7.6706415, 47.4079209 ], + [ 7.6706741, 47.4079011 ], + [ 7.6707076, 47.4078859 ], + [ 7.6707418, 47.4078704 ], + [ 7.6707429, 47.4078699 ], + [ 7.6707439, 47.4078694 ], + [ 7.670745, 47.407869 ], + [ 7.6707461, 47.4078685 ], + [ 7.6707472, 47.407868 ], + [ 7.6707483, 47.4078676 ], + [ 7.6707493, 47.4078671 ], + [ 7.6707504, 47.4078667 ], + [ 7.6707515, 47.4078663 ], + [ 7.6707526999999995, 47.4078659 ], + [ 7.6707538, 47.4078654 ], + [ 7.6707549, 47.407865 ], + [ 7.670756, 47.4078646 ], + [ 7.6707571, 47.4078642 ], + [ 7.6707583, 47.4078638 ], + [ 7.6707594, 47.4078634 ], + [ 7.6707605, 47.407863 ], + [ 7.6707617, 47.4078627 ], + [ 7.6707628, 47.4078623 ], + [ 7.670764, 47.4078619 ], + [ 7.6707651, 47.4078616 ], + [ 7.6707663, 47.4078612 ], + [ 7.6707675, 47.4078609 ], + [ 7.6707686, 47.4078605 ], + [ 7.6707698, 47.4078602 ], + [ 7.670771, 47.4078598 ], + [ 7.6707722, 47.4078595 ], + [ 7.6707733000000005, 47.4078592 ], + [ 7.6707745, 47.4078589 ], + [ 7.6707757, 47.4078586 ], + [ 7.6707769, 47.4078583 ], + [ 7.6707781, 47.407858 ], + [ 7.6707792999999995, 47.4078577 ], + [ 7.6707805, 47.4078574 ], + [ 7.6707817, 47.4078572 ], + [ 7.670783, 47.4078569 ], + [ 7.6707842, 47.4078566 ], + [ 7.6707854, 47.4078564 ], + [ 7.6707866, 47.4078561 ], + [ 7.6707878, 47.4078559 ], + [ 7.670789, 47.4078557 ], + [ 7.6707903, 47.4078554 ], + [ 7.6707915, 47.4078552 ], + [ 7.6707927, 47.407855 ], + [ 7.670794, 47.4078548 ], + [ 7.6707952, 47.4078546 ], + [ 7.6707965, 47.4078544 ], + [ 7.6707977, 47.4078542 ], + [ 7.6707989, 47.407854 ], + [ 7.6708002, 47.4078538 ], + [ 7.6708014, 47.4078536 ], + [ 7.6708027, 47.4078535 ], + [ 7.6708039, 47.4078533 ], + [ 7.6708051, 47.4078532 ], + [ 7.6708064, 47.407853 ], + [ 7.6708076, 47.4078529 ], + [ 7.6708089, 47.4078528 ], + [ 7.6708101, 47.4078527 ], + [ 7.6708114, 47.4078525 ], + [ 7.6708126, 47.4078524 ], + [ 7.6708138, 47.4078523 ], + [ 7.6708151, 47.4078522 ], + [ 7.6708163, 47.4078521 ], + [ 7.6708176, 47.407852 ], + [ 7.6708189, 47.407852 ], + [ 7.6708201, 47.4078519 ], + [ 7.6708214, 47.4078518 ], + [ 7.6708226, 47.4078518 ], + [ 7.6708239, 47.4078517 ], + [ 7.6708251, 47.4078517 ], + [ 7.6708264, 47.4078516 ], + [ 7.6708276, 47.4078516 ], + [ 7.6708289, 47.4078516 ], + [ 7.6708302, 47.4078515 ], + [ 7.6708314, 47.4078515 ], + [ 7.6708327, 47.4078515 ], + [ 7.6708339, 47.4078515 ], + [ 7.6708352, 47.4078515 ], + [ 7.6708364, 47.4078515 ], + [ 7.6708377, 47.4078516 ], + [ 7.670839, 47.4078516 ], + [ 7.6708402, 47.4078516 ], + [ 7.6708415, 47.4078517 ], + [ 7.6708427, 47.4078517 ], + [ 7.670844, 47.4078518 ], + [ 7.6708452, 47.4078518 ], + [ 7.6708947, 47.4078528 ], + [ 7.6708974, 47.4078527 ], + [ 7.6709, 47.4078527 ], + [ 7.6709027, 47.4078526 ], + [ 7.6709054, 47.4078526 ], + [ 7.6709081, 47.4078525 ], + [ 7.6709107, 47.4078524 ], + [ 7.6709134, 47.4078523 ], + [ 7.6709161, 47.4078522 ], + [ 7.6709188, 47.4078521 ], + [ 7.6709215, 47.407852 ], + [ 7.6709241, 47.4078519 ], + [ 7.6709268, 47.4078518 ], + [ 7.6709295, 47.4078516 ], + [ 7.6709321, 47.4078515 ], + [ 7.6709347999999995, 47.4078514 ], + [ 7.6709375, 47.4078512 ], + [ 7.6709401, 47.4078511 ], + [ 7.6709428, 47.4078509 ], + [ 7.6709455, 47.4078507 ], + [ 7.6709481, 47.4078505 ], + [ 7.6709508, 47.4078504 ], + [ 7.6709534999999995, 47.4078502 ], + [ 7.6709561, 47.40785 ], + [ 7.6709588, 47.4078498 ], + [ 7.6709615, 47.4078496 ], + [ 7.6709641, 47.4078494 ], + [ 7.6709668, 47.4078491 ], + [ 7.6709694, 47.4078489 ], + [ 7.6709721, 47.4078487 ], + [ 7.6709747, 47.4078484 ], + [ 7.6709774, 47.4078482 ], + [ 7.67098, 47.4078479 ], + [ 7.6709827, 47.4078476 ], + [ 7.6709853, 47.4078474 ], + [ 7.6709879999999995, 47.4078471 ], + [ 7.6709906, 47.4078468 ], + [ 7.6709933, 47.4078465 ], + [ 7.6709959, 47.4078462 ], + [ 7.6709985, 47.4078459 ], + [ 7.6710012, 47.4078456 ], + [ 7.6710038, 47.4078453 ], + [ 7.6710064, 47.407845 ], + [ 7.671009, 47.4078447 ], + [ 7.6710117, 47.4078443 ], + [ 7.6710142999999995, 47.407844 ], + [ 7.6710169, 47.4078436 ], + [ 7.6710195, 47.4078433 ], + [ 7.6710221, 47.4078429 ], + [ 7.6710247, 47.4078426 ], + [ 7.6710273, 47.4078422 ], + [ 7.6710299, 47.4078418 ], + [ 7.6710325, 47.4078414 ], + [ 7.6710351, 47.407841 ], + [ 7.6710377, 47.4078406 ], + [ 7.6710403, 47.4078402 ], + [ 7.6710429, 47.4078398 ], + [ 7.6710455, 47.4078394 ], + [ 7.671048, 47.407839 ], + [ 7.6710506, 47.4078386 ], + [ 7.6710532, 47.4078381 ], + [ 7.671056, 47.4078378 ], + [ 7.6710588, 47.4078375 ], + [ 7.6710616, 47.4078372 ], + [ 7.6710644, 47.407837 ], + [ 7.6710671, 47.4078367 ], + [ 7.6710699, 47.4078364 ], + [ 7.6710727, 47.4078362 ], + [ 7.6710755, 47.4078359 ], + [ 7.6710783, 47.4078357 ], + [ 7.6710811, 47.4078354 ], + [ 7.6710839, 47.4078352 ], + [ 7.6710867, 47.407835 ], + [ 7.6710895, 47.4078347 ], + [ 7.6710923, 47.4078345 ], + [ 7.6710951, 47.4078343 ], + [ 7.6710979, 47.4078341 ], + [ 7.6711007, 47.4078339 ], + [ 7.6711035, 47.4078338 ], + [ 7.6711063, 47.4078336 ], + [ 7.6711091, 47.4078334 ], + [ 7.6711119, 47.4078332 ], + [ 7.6711148, 47.4078331 ], + [ 7.6711176, 47.4078329 ], + [ 7.6711203999999995, 47.4078328 ], + [ 7.6711232, 47.4078326 ], + [ 7.671126, 47.4078325 ], + [ 7.6711288, 47.4078324 ], + [ 7.671194, 47.4078314 ], + [ 7.6711963999999995, 47.4078188 ], + [ 7.6712611, 47.4074671 ], + [ 7.6712655, 47.4074432 ], + [ 7.6712682, 47.4074289 ], + [ 7.6711256, 47.4075012 ], + [ 7.6711227, 47.4075026 ], + [ 7.6711197, 47.407504 ], + [ 7.6711167, 47.4075054 ], + [ 7.6711138, 47.4075068 ], + [ 7.6711108, 47.4075082 ], + [ 7.6711078, 47.4075097 ], + [ 7.6711048, 47.407511 ], + [ 7.6711018, 47.4075124 ], + [ 7.6710988, 47.4075138 ], + [ 7.6710958, 47.4075152 ], + [ 7.6710928, 47.4075166 ], + [ 7.6710898, 47.4075179 ], + [ 7.6710867, 47.4075193 ], + [ 7.6710837, 47.4075207 ], + [ 7.6710807, 47.407522 ], + [ 7.6710776, 47.4075234 ], + [ 7.6710746, 47.4075247 ], + [ 7.6710715, 47.407526 ], + [ 7.6710685, 47.4075274 ], + [ 7.6710654, 47.4075287 ], + [ 7.6710623, 47.40753 ], + [ 7.6710593, 47.4075313 ], + [ 7.6710562, 47.4075326 ], + [ 7.6710531, 47.4075339 ], + [ 7.67105, 47.4075352 ], + [ 7.6710469, 47.4075365 ], + [ 7.6710438, 47.4075378 ], + [ 7.6710407, 47.4075391 ], + [ 7.6710376, 47.4075403 ], + [ 7.6710345, 47.4075416 ], + [ 7.6710314, 47.4075429 ], + [ 7.6710282, 47.4075441 ], + [ 7.6710251, 47.4075454 ], + [ 7.671022, 47.4075466 ], + [ 7.6710188, 47.4075478 ], + [ 7.6710157, 47.4075491 ], + [ 7.6710125, 47.4075503 ], + [ 7.6710094, 47.4075515 ], + [ 7.6710062, 47.4075527 ], + [ 7.671003, 47.4075539 ], + [ 7.6709999, 47.4075551 ], + [ 7.6709967, 47.4075563 ], + [ 7.6709935, 47.4075575 ], + [ 7.6709903, 47.4075587 ], + [ 7.6709871, 47.4075599 ], + [ 7.6709838999999995, 47.4075611 ], + [ 7.6709808, 47.4075622 ], + [ 7.6709775, 47.4075634 ], + [ 7.6709743, 47.4075645 ], + [ 7.6709711, 47.4075657 ], + [ 7.6709679, 47.4075668 ], + [ 7.6709647, 47.407568 ], + [ 7.6709615, 47.4075691 ], + [ 7.6709582, 47.4075702 ], + [ 7.670955, 47.4075713 ], + [ 7.6709517, 47.4075724 ], + [ 7.6709485, 47.4075736 ], + [ 7.6709452, 47.4075746 ], + [ 7.670942, 47.4075757 ], + [ 7.6709387, 47.4075768 ], + [ 7.6709355, 47.4075779 ], + [ 7.6709322, 47.407579 ], + [ 7.6709289, 47.4075801 ], + [ 7.6709257, 47.4075811 ], + [ 7.6709224, 47.4075822 ], + [ 7.6709191, 47.4075832 ], + [ 7.6709157999999995, 47.4075843 ], + [ 7.6709125, 47.4075853 ], + [ 7.6709092, 47.4075863 ], + [ 7.6709059, 47.4075874 ], + [ 7.6709026, 47.4075884 ], + [ 7.6708993, 47.4075894 ], + [ 7.670896, 47.4075904 ], + [ 7.6708927, 47.4075914 ], + [ 7.6708893, 47.4075924 ], + [ 7.670886, 47.4075934 ], + [ 7.6708827, 47.4075944 ], + [ 7.6708794000000005, 47.4075954 ], + [ 7.670876, 47.4075963 ], + [ 7.6708727, 47.4075973 ], + [ 7.6708693, 47.4075983 ], + [ 7.670866, 47.4075992 ], + [ 7.6708625999999995, 47.4076002 ], + [ 7.6708593, 47.4076011 ], + [ 7.6708559, 47.407602 ], + [ 7.670835, 47.4076079 ], + [ 7.670814, 47.4076138 ], + [ 7.6707931, 47.4076196 ], + [ 7.6707721, 47.4076255 ], + [ 7.6707471, 47.4076325 ], + [ 7.670722, 47.4076395 ], + [ 7.6706969, 47.4076465 ], + [ 7.6706719, 47.4076534 ], + [ 7.6706468, 47.4076604 ], + [ 7.6706217, 47.4076674 ], + [ 7.6705966, 47.4076743 ], + [ 7.6705716, 47.4076813 ], + [ 7.6705465, 47.4076883 ], + [ 7.6705214, 47.4076952 ], + [ 7.6704963, 47.4077021 ], + [ 7.6704712, 47.4077091 ], + [ 7.6704460999999995, 47.407716 ], + [ 7.670421, 47.4077229 ], + [ 7.6704188, 47.4077237 ], + [ 7.6704167, 47.4077245 ], + [ 7.6704145, 47.4077253 ], + [ 7.6704124, 47.4077261 ], + [ 7.6704103, 47.4077269 ], + [ 7.6704082, 47.4077277 ], + [ 7.6704061, 47.4077285 ], + [ 7.6704039999999996, 47.4077294 ], + [ 7.6704019, 47.4077302 ], + [ 7.6703998, 47.407731 ], + [ 7.6703977, 47.4077319 ], + [ 7.6703956, 47.4077327 ], + [ 7.6703935, 47.4077336 ], + [ 7.6703914, 47.4077344 ], + [ 7.6703894, 47.4077353 ], + [ 7.6703873, 47.4077362 ], + [ 7.6703852, 47.4077371 ], + [ 7.6703832, 47.4077379 ], + [ 7.6703811, 47.4077388 ], + [ 7.6703791, 47.4077397 ], + [ 7.670377, 47.4077406 ], + [ 7.670375, 47.4077415 ], + [ 7.670373, 47.4077425 ], + [ 7.670371, 47.4077434 ], + [ 7.6703689, 47.4077443 ], + [ 7.6703669, 47.4077452 ], + [ 7.6703649, 47.4077462 ], + [ 7.6703629, 47.4077471 ], + [ 7.6703609, 47.407748 ], + [ 7.6703589, 47.407749 ], + [ 7.670357, 47.4077499 ], + [ 7.670355, 47.4077509 ], + [ 7.670353, 47.4077519 ], + [ 7.670351, 47.4077529 ], + [ 7.6703491, 47.4077538 ], + [ 7.6703471, 47.4077548 ], + [ 7.6703452, 47.4077558 ], + [ 7.6703432, 47.4077568 ], + [ 7.6703413, 47.4077578 ], + [ 7.6703394, 47.4077588 ], + [ 7.6703374, 47.4077598 ], + [ 7.6703355, 47.4077608 ], + [ 7.6703336, 47.4077618 ], + [ 7.6703317, 47.4077629 ], + [ 7.6703298, 47.4077639 ], + [ 7.6703279, 47.4077649 ], + [ 7.670326, 47.407766 ], + [ 7.6703241, 47.407767 ], + [ 7.6703223, 47.4077681 ], + [ 7.6703204, 47.4077691 ], + [ 7.6703185, 47.4077702 ], + [ 7.6703167, 47.4077713 ], + [ 7.6703148, 47.4077723 ], + [ 7.670313, 47.4077734 ], + [ 7.6703111, 47.4077745 ], + [ 7.6703092999999996, 47.4077756 ], + [ 7.6703075, 47.4077767 ], + [ 7.6703057, 47.4077778 ], + [ 7.6703039, 47.4077789 ], + [ 7.6703019999999995, 47.40778 ], + [ 7.6703002, 47.4077811 ], + [ 7.6702985, 47.4077822 ], + [ 7.6702967, 47.4077833 ], + [ 7.6702949, 47.4077845 ], + [ 7.6702931, 47.4077856 ], + [ 7.6702914, 47.4077867 ], + [ 7.6702896, 47.4077879 ], + [ 7.6702878, 47.407789 ], + [ 7.6702861, 47.4077902 ], + [ 7.6702844, 47.4077913 ], + [ 7.6702826, 47.4077925 ], + [ 7.6702809, 47.4077936 ], + [ 7.6702791999999995, 47.4077948 ], + [ 7.6702775, 47.407796 ], + [ 7.6702758, 47.4077972 ], + [ 7.6702741, 47.4077984 ], + [ 7.6702724, 47.4077995 ], + [ 7.6702707, 47.4078007 ], + [ 7.670269, 47.4078019 ], + [ 7.6702674, 47.4078031 ], + [ 7.6702657, 47.4078044 ], + [ 7.6702641, 47.4078056 ], + [ 7.6702624, 47.4078068 ], + [ 7.6702608, 47.407808 ], + [ 7.6702592, 47.4078092 ], + [ 7.6702575, 47.4078105 ], + [ 7.6702559, 47.4078117 ], + [ 7.6702543, 47.4078129 ], + [ 7.6702527, 47.4078142 ], + [ 7.6702516, 47.4078151 ], + [ 7.6702505, 47.4078159 ], + [ 7.6702494, 47.4078168 ], + [ 7.6702483, 47.4078177 ], + [ 7.6702473, 47.4078186 ], + [ 7.6702462, 47.4078195 ], + [ 7.6702451, 47.4078204 ], + [ 7.6702441, 47.4078213 ], + [ 7.6702431, 47.4078222 ], + [ 7.670242, 47.4078232 ], + [ 7.670241, 47.4078241 ], + [ 7.67024, 47.407825 ], + [ 7.670239, 47.4078259 ], + [ 7.670238, 47.4078269 ], + [ 7.670237, 47.4078278 ], + [ 7.670236, 47.4078287 ], + [ 7.670235, 47.4078297 ], + [ 7.670234, 47.4078306 ], + [ 7.6702331, 47.4078316 ], + [ 7.6702321, 47.4078325 ], + [ 7.6702312, 47.4078335 ], + [ 7.6702302, 47.4078345 ], + [ 7.6702293, 47.4078354 ], + [ 7.6702284, 47.4078364 ], + [ 7.6702275, 47.4078374 ], + [ 7.6702266, 47.4078383 ], + [ 7.6702257, 47.4078393 ], + [ 7.6702248, 47.4078403 ], + [ 7.6702239, 47.4078413 ], + [ 7.670223, 47.4078423 ], + [ 7.6702221999999995, 47.4078433 ], + [ 7.6702213, 47.4078443 ], + [ 7.6702205, 47.4078453 ], + [ 7.6702196, 47.4078463 ], + [ 7.6702188, 47.4078473 ], + [ 7.670218, 47.4078483 ], + [ 7.6702172, 47.4078493 ], + [ 7.6702164, 47.4078503 ], + [ 7.6702156, 47.4078514 ], + [ 7.6702148, 47.4078524 ], + [ 7.670214, 47.4078534 ], + [ 7.6702132, 47.4078544 ], + [ 7.6702125, 47.4078555 ], + [ 7.6702117, 47.4078565 ], + [ 7.670211, 47.4078576 ], + [ 7.6702102, 47.4078586 ], + [ 7.6702095, 47.4078597 ], + [ 7.6702088, 47.4078608 ], + [ 7.670208, 47.4078618 ], + [ 7.6702072999999995, 47.4078629 ], + [ 7.6702066, 47.4078639 ], + [ 7.6702059, 47.407865 ], + [ 7.6702053, 47.4078661 ], + [ 7.6702046, 47.4078672 ], + [ 7.6702039, 47.4078683 ], + [ 7.6702033, 47.4078693 ], + [ 7.6702026, 47.4078704 ], + [ 7.670202, 47.4078715 ], + [ 7.6702014, 47.4078726 ], + [ 7.6702008, 47.4078737 ], + [ 7.6702002, 47.4078748 ], + [ 7.6701996, 47.4078759 ], + [ 7.670199, 47.407877 ], + [ 7.6701984, 47.4078781 ], + [ 7.6701979, 47.407879199999996 ], + [ 7.6701973, 47.4078803 ], + [ 7.6701968, 47.4078814 ], + [ 7.6701962, 47.4078825 ], + [ 7.6701957, 47.4078836 ], + [ 7.6701952, 47.4078847 ], + [ 7.6701947, 47.4078858 ], + [ 7.6701942, 47.407887 ], + [ 7.6701937000000004, 47.4078881 ], + [ 7.6701932, 47.4078892 ], + [ 7.6701927, 47.4078903 ], + [ 7.6701923, 47.4078915 ], + [ 7.6701918, 47.4078926 ], + [ 7.6701914, 47.4078937 ], + [ 7.6701909, 47.4078948 ], + [ 7.6701905, 47.407896 ], + [ 7.6701901, 47.4078971 ], + [ 7.6701897, 47.4078982 ], + [ 7.6701893, 47.4078994 ], + [ 7.6701889, 47.4079005 ], + [ 7.6701886, 47.4079017 ], + [ 7.6701882, 47.4079028 ], + [ 7.6701878, 47.4079039 ], + [ 7.6701875, 47.4079051 ], + [ 7.6701872, 47.4079062 ], + [ 7.6701869, 47.4079074 ], + [ 7.6701865, 47.4079085 ], + [ 7.6701862, 47.4079097 ], + [ 7.6701859, 47.4079108 ], + [ 7.6701857, 47.407912 ], + [ 7.6701854, 47.4079131 ], + [ 7.6701851, 47.4079143 ], + [ 7.6701849, 47.4079154 ], + [ 7.6701846, 47.4079166 ], + [ 7.6701844, 47.4079178 ], + [ 7.6701842, 47.4079189 ], + [ 7.6701839, 47.4079201 ], + [ 7.6701837, 47.4079212 ], + [ 7.6701835, 47.4079224 ], + [ 7.6701834, 47.4079236 ], + [ 7.6701832, 47.4079247 ], + [ 7.670183, 47.4079259 ], + [ 7.6701829, 47.4079271 ], + [ 7.6701827, 47.4079282 ], + [ 7.6701826, 47.4079294 ], + [ 7.6701825, 47.4079305 ], + [ 7.6701824, 47.4079317 ], + [ 7.6701822, 47.4079329 ], + [ 7.6701614, 47.4080854 ], + [ 7.6701489, 47.4081422 ], + [ 7.6701203, 47.4082232 ], + [ 7.6700795, 47.4083281 ], + [ 7.670053, 47.408397 ], + [ 7.6700159, 47.4084934 ], + [ 7.6699825, 47.4086035 ], + [ 7.6699704, 47.4086634 ], + [ 7.6699662, 47.4087321 ], + [ 7.6699653, 47.4087428 ], + [ 7.6699643, 47.4087535 ], + [ 7.6699633, 47.4087642 ], + [ 7.6699624, 47.4087749 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns108", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Binzenberg - Chüeweid", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Binzenberg - Chüeweid", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Binzenberg - Chüeweid", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Binzenberg - Chüeweid", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7202331, 47.433475 ], + [ 7.7207899, 47.4332767 ], + [ 7.7210954, 47.4331588 ], + [ 7.7210398, 47.432985 ], + [ 7.720909, 47.4325866 ], + [ 7.7207261, 47.4323223 ], + [ 7.720626, 47.432123 ], + [ 7.7204152, 47.431876 ], + [ 7.7202671, 47.4314857 ], + [ 7.7201985, 47.4313675 ], + [ 7.720091, 47.4311824 ], + [ 7.7198104, 47.4309061 ], + [ 7.7195339, 47.4306195 ], + [ 7.7193513, 47.4303654 ], + [ 7.7192566, 47.4301792 ], + [ 7.7191363, 47.4299532 ], + [ 7.7187356, 47.4301909 ], + [ 7.7186620999999995, 47.4302316 ], + [ 7.7186525, 47.4302479 ], + [ 7.7186314, 47.4302648 ], + [ 7.7186036, 47.4302873 ], + [ 7.7185782, 47.4303098 ], + [ 7.7185558, 47.4303306 ], + [ 7.718534, 47.4303641 ], + [ 7.7185078, 47.4303895 ], + [ 7.7184793, 47.4304167 ], + [ 7.71845, 47.4304497 ], + [ 7.7184011, 47.4304922 ], + [ 7.7183665999999995, 47.430525 ], + [ 7.7183326999999995, 47.4305694 ], + [ 7.7183112, 47.4306013 ], + [ 7.7182967, 47.4306391 ], + [ 7.7182843, 47.4306858 ], + [ 7.7182714, 47.4307433 ], + [ 7.7182561, 47.430793 ], + [ 7.7182386, 47.4308328 ], + [ 7.7182224999999995, 47.430888 ], + [ 7.7182098, 47.4309199 ], + [ 7.7181995, 47.4309487 ], + [ 7.7181874, 47.4309794 ], + [ 7.7181779, 47.4310117 ], + [ 7.7181729, 47.4310338 ], + [ 7.7181723, 47.4310473 ], + [ 7.7181741, 47.4310821 ], + [ 7.7181767, 47.431113 ], + [ 7.7181832, 47.4311293 ], + [ 7.7181927, 47.4311429 ], + [ 7.718205, 47.4311557 ], + [ 7.7182493999999995, 47.4311618 ], + [ 7.7182827, 47.4314582 ], + [ 7.7183865, 47.4317319 ], + [ 7.7185477, 47.4319417 ], + [ 7.7187061, 47.4321628 ], + [ 7.7187579, 47.4324009 ], + [ 7.7187949, 47.4326086 ], + [ 7.7188119, 47.4328571 ], + [ 7.7190871, 47.4329508 ], + [ 7.719429, 47.4331128 ], + [ 7.7195039, 47.4331526 ], + [ 7.7198306, 47.4333444 ], + [ 7.7202331, 47.433475 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns355", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Tannmatt", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Tannmatt", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Tannmatt", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Tannmatt", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.0114665, 46.3742737 ], + [ 7.0120242, 46.3747526 ], + [ 7.0128424, 46.3751587 ], + [ 7.0136009, 46.3748917 ], + [ 7.0151282, 46.3730461 ], + [ 7.0158557, 46.3712425 ], + [ 7.0188823, 46.3711017 ], + [ 7.0191505, 46.3708643 ], + [ 7.0192137, 46.3707674 ], + [ 7.0191529, 46.3705657 ], + [ 7.0190616, 46.3704412 ], + [ 7.0185743, 46.3700967 ], + [ 7.0184938, 46.3699191 ], + [ 7.0181414, 46.3696084 ], + [ 7.0178624, 46.369386 ], + [ 7.0173609, 46.369045 ], + [ 7.0169346, 46.3688761 ], + [ 7.0159839999999996, 46.3686306 ], + [ 7.0148822, 46.3685977 ], + [ 7.013795, 46.3693708 ], + [ 7.0122597, 46.3696052 ], + [ 7.0100111, 46.3696435 ], + [ 7.0080969, 46.3712788 ], + [ 7.0059143, 46.3739441 ], + [ 7.0069362, 46.3745516 ], + [ 7.0082588, 46.3752637 ], + [ 7.008937, 46.3756243 ], + [ 7.0095532, 46.3756042 ], + [ 7.0098171, 46.375105 ], + [ 7.0104166, 46.3744047 ], + [ 7.0114665, 46.3742737 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00010", + "country" : "CHE", + "name" : [ + { + "text" : "Tour de Famelon", + "lang" : "de-CH" + }, + { + "text" : "Tour de Famelon", + "lang" : "fr-CH" + }, + { + "text" : "Tour de Famelon", + "lang" : "it-CH" + }, + { + "text" : "Tour de Famelon", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "startDateTime" : "2024-11-15T00:00:00+01:00", + "endDateTime" : "2025-04-15T00:00:00+02:00" + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Generaldirektion für Umwelt", + "lang" : "de-CH" + }, + { + "text" : "Direction générale de l'environnement", + "lang" : "fr-CH" + }, + { + "text" : "Direzione generale dell'Ambiente", + "lang" : "it-CH" + }, + { + "text" : "Environment Department", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.dge@vd.ch", + "phone" : "0041213164422", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.5992185, 46.3504856 ], + [ 8.5992101, 46.3503444 ], + [ 8.5991911, 46.3502038 ], + [ 8.5991615, 46.350064 ], + [ 8.5991214, 46.3499254 ], + [ 8.5990708, 46.3497886 ], + [ 8.59901, 46.3496537 ], + [ 8.598939, 46.3495212 ], + [ 8.5988582, 46.3493915 ], + [ 8.5987676, 46.3492649 ], + [ 8.5986676, 46.3491417 ], + [ 8.5985584, 46.3490224 ], + [ 8.5984404, 46.3489071 ], + [ 8.5983138, 46.3487963 ], + [ 8.598179, 46.3486903 ], + [ 8.5980364, 46.3485892 ], + [ 8.5978864, 46.348493500000004 ], + [ 8.5977293, 46.3484033 ], + [ 8.5975656, 46.348319 ], + [ 8.5973958, 46.3482407 ], + [ 8.5972203, 46.3481687 ], + [ 8.5970395, 46.3481031 ], + [ 8.5968541, 46.3480441 ], + [ 8.5966645, 46.347992 ], + [ 8.5964712, 46.3479468 ], + [ 8.5962747, 46.3479087 ], + [ 8.5960756, 46.3478777 ], + [ 8.5958745, 46.347854 ], + [ 8.5956719, 46.3478377 ], + [ 8.5954682, 46.3478287 ], + [ 8.5952642, 46.347827 ], + [ 8.5950604, 46.3478328 ], + [ 8.5948572, 46.347846 ], + [ 8.5946554, 46.3478665 ], + [ 8.5944553, 46.3478943 ], + [ 8.5942577, 46.3479293 ], + [ 8.5940629, 46.3479714 ], + [ 8.5938716, 46.3480205 ], + [ 8.5936843, 46.3480765 ], + [ 8.5935014, 46.3481392 ], + [ 8.5933236, 46.3482084 ], + [ 8.5931512, 46.348284 ], + [ 8.5929848, 46.3483658 ], + [ 8.5928248, 46.3484534 ], + [ 8.5926716, 46.3485467 ], + [ 8.5925257, 46.3486455 ], + [ 8.5923874, 46.3487494 ], + [ 8.5922572, 46.3488582 ], + [ 8.5921354, 46.3489715 ], + [ 8.5920223, 46.3490891 ], + [ 8.5919183, 46.3492106 ], + [ 8.5918236, 46.3493358 ], + [ 8.5917384, 46.3494642 ], + [ 8.5916632, 46.3495955 ], + [ 8.5915979, 46.3497294 ], + [ 8.5915428, 46.3498654 ], + [ 8.5914981, 46.3500033 ], + [ 8.5914639, 46.3501426 ], + [ 8.5914402, 46.3502829 ], + [ 8.5914272, 46.3504239 ], + [ 8.5914248, 46.3505652 ], + [ 8.5914332, 46.3507063 ], + [ 8.591452199999999, 46.350847 ], + [ 8.5914818, 46.3509868 ], + [ 8.5915219, 46.3511253 ], + [ 8.5915724, 46.3512622 ], + [ 8.5916333, 46.3513971 ], + [ 8.5917042, 46.3515295 ], + [ 8.591785, 46.3516593 ], + [ 8.5918756, 46.3517859 ], + [ 8.5919756, 46.351909 ], + [ 8.592084700000001, 46.3520284 ], + [ 8.592202799999999, 46.3521437 ], + [ 8.5923293, 46.3522545 ], + [ 8.5924641, 46.3523606 ], + [ 8.5926067, 46.3524616 ], + [ 8.5927568, 46.3525573 ], + [ 8.5929139, 46.3526475 ], + [ 8.5930776, 46.3527319 ], + [ 8.5932474, 46.3528102 ], + [ 8.5934229, 46.3528822 ], + [ 8.5936037, 46.3529478 ], + [ 8.5937891, 46.3530067 ], + [ 8.5939788, 46.3530589 ], + [ 8.5941721, 46.3531041 ], + [ 8.5943685, 46.3531422 ], + [ 8.5945676, 46.3531731 ], + [ 8.5947688, 46.3531968 ], + [ 8.5949715, 46.3532132 ], + [ 8.5951751, 46.3532222 ], + [ 8.5953791, 46.3532238 ], + [ 8.595583, 46.3532181 ], + [ 8.5957862, 46.3532049 ], + [ 8.595988, 46.3531844 ], + [ 8.596188099999999, 46.3531566 ], + [ 8.5963858, 46.3531216 ], + [ 8.5965806, 46.3530795 ], + [ 8.5967719, 46.3530303 ], + [ 8.5969592, 46.3529744 ], + [ 8.5971421, 46.3529117 ], + [ 8.5973199, 46.3528424 ], + [ 8.5974923, 46.3527668 ], + [ 8.5976587, 46.3526851 ], + [ 8.5978188, 46.3525974 ], + [ 8.5979719, 46.3525041 ], + [ 8.5981179, 46.3524053 ], + [ 8.5982561, 46.3523014 ], + [ 8.5983863, 46.3521926 ], + [ 8.5985081, 46.3520793 ], + [ 8.5986212, 46.3519617 ], + [ 8.5987252, 46.3518401 ], + [ 8.5988199, 46.351715 ], + [ 8.598905, 46.3515866 ], + [ 8.598980300000001, 46.3514553 ], + [ 8.5990456, 46.3513214 ], + [ 8.5991006, 46.3511854 ], + [ 8.5991453, 46.3510475 ], + [ 8.5991795, 46.3509082 ], + [ 8.5992032, 46.3507679 ], + [ 8.5992162, 46.3506269 ], + [ 8.5992185, 46.3504856 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0023", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Cavergno", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Cavergno", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Cavergno", + "lang" : "it-CH" + }, + { + "text" : "Substation Cavergno", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8529321, 47.5154218 ], + [ 7.850657, 47.5147679 ], + [ 7.8506391, 47.51482 ], + [ 7.8505621, 47.514806 ], + [ 7.8503954, 47.5148347 ], + [ 7.8503568999999995, 47.5148697 ], + [ 7.8503371, 47.5148876 ], + [ 7.8503427, 47.5149027 ], + [ 7.8503659, 47.5149661 ], + [ 7.8503702, 47.5149776 ], + [ 7.8504178, 47.514991 ], + [ 7.8505073, 47.5150163 ], + [ 7.8505192, 47.5150197 ], + [ 7.8504897, 47.515071 ], + [ 7.8503355, 47.51534 ], + [ 7.8507431, 47.5154225 ], + [ 7.8508084, 47.5159198 ], + [ 7.850909, 47.5171194 ], + [ 7.850894, 47.5171382 ], + [ 7.8508127, 47.5172401 ], + [ 7.8503193, 47.5176636 ], + [ 7.8500122, 47.5180366 ], + [ 7.8499146, 47.518227 ], + [ 7.849881, 47.5182927 ], + [ 7.8497395, 47.5184964 ], + [ 7.8496387, 47.5186729 ], + [ 7.8495287, 47.5188409 ], + [ 7.8494892, 47.5189013 ], + [ 7.8492948, 47.5191572 ], + [ 7.8490611999999995, 47.5194169 ], + [ 7.8489854, 47.5194863 ], + [ 7.8489242, 47.5195423 ], + [ 7.8487143, 47.5197032 ], + [ 7.8486682, 47.5197319 ], + [ 7.8483967, 47.5199006 ], + [ 7.8483122, 47.5199573 ], + [ 7.8483179, 47.5199612 ], + [ 7.8481860999999995, 47.5200476 ], + [ 7.8479128, 47.5201465 ], + [ 7.847428, 47.5203169 ], + [ 7.8470842, 47.5203261 ], + [ 7.8466339, 47.5203599 ], + [ 7.8463973, 47.5204169 ], + [ 7.8455783, 47.5203074 ], + [ 7.8464504999999996, 47.5211797 ], + [ 7.8469192, 47.5220123 ], + [ 7.8470477, 47.5222846 ], + [ 7.8471169, 47.5224526 ], + [ 7.8471272, 47.5224775 ], + [ 7.8470968, 47.5226245 ], + [ 7.8470856, 47.5226786 ], + [ 7.8470904, 47.5227236 ], + [ 7.8472115, 47.522705 ], + [ 7.8476324, 47.5225407 ], + [ 7.8479697, 47.5224612 ], + [ 7.8483871, 47.5223874 ], + [ 7.8484729, 47.5223697 ], + [ 7.848706, 47.5219286 ], + [ 7.848904, 47.5217208 ], + [ 7.8495488, 47.5211358 ], + [ 7.8499762, 47.5207104 ], + [ 7.8503771, 47.5202343 ], + [ 7.8507632, 47.5197648 ], + [ 7.8511324, 47.5193263 ], + [ 7.8514603, 47.5188876 ], + [ 7.8515798, 47.5187182 ], + [ 7.8517282, 47.5185037 ], + [ 7.8519733, 47.5182672 ], + [ 7.8522742, 47.5180523 ], + [ 7.8524027, 47.5178614 ], + [ 7.852458, 47.5176203 ], + [ 7.8524399, 47.5174446 ], + [ 7.8523776, 47.517305 ], + [ 7.8522404, 47.5171693 ], + [ 7.8524702, 47.5167122 ], + [ 7.8526134, 47.5162554 ], + [ 7.8527697, 47.5161425 ], + [ 7.8528776, 47.5159417 ], + [ 7.8528789, 47.5159097 ], + [ 7.8528801999999995, 47.5158776 ], + [ 7.8529909, 47.5156242 ], + [ 7.8529321, 47.5154218 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr021", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Mettele", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Mettele", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Mettele", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Mettele", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.075055, 46.1684281 ], + [ 6.0751959, 46.1684689 ], + [ 6.0752433, 46.1685034 ], + [ 6.0753005, 46.1685312 ], + [ 6.0766869, 46.1689558 ], + [ 6.0775205, 46.1689689 ], + [ 6.0776877, 46.168985 ], + [ 6.0777851, 46.168973 ], + [ 6.0782015, 46.1689795 ], + [ 6.0785985, 46.1688726 ], + [ 6.0788843, 46.1688373 ], + [ 6.0792968, 46.1686844 ], + [ 6.079614, 46.1685989 ], + [ 6.0797235, 46.1685262 ], + [ 6.0799566, 46.1684398 ], + [ 6.0807996, 46.1678316 ], + [ 6.0808314, 46.1677999 ], + [ 6.0814396, 46.1668361 ], + [ 6.0814709, 46.1657839 ], + [ 6.0809207, 46.1648034 ], + [ 6.0806135, 46.1645808 ], + [ 6.0806095, 46.1645756 ], + [ 6.0805704, 46.1645495 ], + [ 6.0803671, 46.1644021 ], + [ 6.0802032, 46.1642151 ], + [ 6.07928, 46.1636645 ], + [ 6.0790694, 46.1635744 ], + [ 6.0776491, 46.1632077 ], + [ 6.076135, 46.1632465 ], + [ 6.0747574, 46.1636849 ], + [ 6.0737261, 46.1644561 ], + [ 6.073673, 46.1645159 ], + [ 6.0735807, 46.1646194 ], + [ 6.0731098, 46.1653991 ], + [ 6.0730093, 46.1662418 ], + [ 6.073289, 46.1670647 ], + [ 6.0739216, 46.1677871 ], + [ 6.0748448, 46.1683381 ], + [ 6.074846, 46.1683385 ], + [ 6.075055, 46.1684281 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-40", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4942334, 47.4382315 ], + [ 7.4938947, 47.4376128 ], + [ 7.4938669, 47.4375885 ], + [ 7.4938231, 47.4375805 ], + [ 7.4937262, 47.4374762 ], + [ 7.4935076, 47.4375932 ], + [ 7.493346, 47.4376571 ], + [ 7.4927457, 47.4379021 ], + [ 7.4927484, 47.4379911 ], + [ 7.4927127, 47.4380037 ], + [ 7.4921892, 47.4381946 ], + [ 7.4921401, 47.4380831 ], + [ 7.4915635, 47.4381445 ], + [ 7.4913169, 47.4381761 ], + [ 7.4913169, 47.4381402 ], + [ 7.4906979, 47.438216 ], + [ 7.4906983, 47.4386036 ], + [ 7.4904994, 47.4386235 ], + [ 7.490123, 47.4387136 ], + [ 7.4896617, 47.4387669 ], + [ 7.4888226, 47.4388032 ], + [ 7.4883295, 47.4388088 ], + [ 7.4882765, 47.4387945 ], + [ 7.4870436, 47.4388498 ], + [ 7.4862760999999995, 47.4388672 ], + [ 7.486475, 47.4389211 ], + [ 7.4865627, 47.4391333 ], + [ 7.4853486, 47.4394477 ], + [ 7.4853425, 47.440098 ], + [ 7.4853481, 47.4403489 ], + [ 7.4853828, 47.4406754 ], + [ 7.48564, 47.4406618 ], + [ 7.4858693, 47.4406365 ], + [ 7.4861424, 47.4405987 ], + [ 7.4861676, 47.4406445 ], + [ 7.4864406, 47.4405707 ], + [ 7.486544, 47.4405391 ], + [ 7.4866368, 47.4404905 ], + [ 7.4868726, 47.4403303 ], + [ 7.487029, 47.4402682 ], + [ 7.4878957, 47.4399459 ], + [ 7.4885848, 47.4397 ], + [ 7.4888446, 47.4396424 ], + [ 7.4935152, 47.4384935 ], + [ 7.4939194, 47.4384061 ], + [ 7.4941102, 47.4383574 ], + [ 7.4941870999999995, 47.4383223 ], + [ 7.4942281, 47.4382755 ], + [ 7.4942334, 47.4382315 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSPD002", + "country" : "CHE", + "name" : [ + { + "text" : "LSPD Dittingen (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSPD Dittingen (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSPD Dittingen (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSPD Dittingen (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Segelfluggruppe Dittingen", + "lang" : "de-CH" + }, + { + "text" : "Segelfluggruppe Dittingen", + "lang" : "fr-CH" + }, + { + "text" : "Segelfluggruppe Dittingen", + "lang" : "it-CH" + }, + { + "text" : "Segelfluggruppe Dittingen", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Philipp Glogg", + "lang" : "de-CH" + }, + { + "text" : "Philipp Glogg", + "lang" : "fr-CH" + }, + { + "text" : "Philipp Glogg", + "lang" : "it-CH" + }, + { + "text" : "Philipp Glogg", + "lang" : "en-GB" + } + ], + "siteURL" : "https://sg-dittingen.ch/e/index.php/c-buero#regelungen", + "email" : "info@sg-dittingen.ch", + "phone" : "0041796458361", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P01DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8472147, 47.4060983 ], + [ 7.8472114, 47.4060684 ], + [ 7.8473197, 47.4060749 ], + [ 7.8475513, 47.406089 ], + [ 7.8477113, 47.406075799999996 ], + [ 7.8483549, 47.4059623 ], + [ 7.8487781, 47.4059487 ], + [ 7.8488991, 47.4059692 ], + [ 7.8492603, 47.4060301 ], + [ 7.8494531, 47.4060184 ], + [ 7.8495551, 47.405968 ], + [ 7.8498611, 47.4059178 ], + [ 7.850426, 47.4059248 ], + [ 7.8507351, 47.405966 ], + [ 7.8509266, 47.4059764 ], + [ 7.8510968, 47.4059647 ], + [ 7.8514864, 47.4060167 ], + [ 7.8515543, 47.4059942 ], + [ 7.8516421, 47.4059542 ], + [ 7.8516632, 47.4058174 ], + [ 7.8516271, 47.4057157 ], + [ 7.8516156, 47.4056416 ], + [ 7.8514923, 47.4055547 ], + [ 7.8512813, 47.4053802 ], + [ 7.8508513, 47.4051314 ], + [ 7.8509704, 47.4052598 ], + [ 7.850818, 47.4054775 ], + [ 7.850565, 47.4053921 ], + [ 7.850555, 47.4053887 ], + [ 7.8503833, 47.4053316 ], + [ 7.8504741, 47.4052116 ], + [ 7.8506706, 47.4050896 ], + [ 7.8504828, 47.4050304 ], + [ 7.8504771, 47.405027 ], + [ 7.8504751, 47.405022 ], + [ 7.8504771, 47.4049749 ], + [ 7.8505635, 47.404846 ], + [ 7.8504931, 47.4047947 ], + [ 7.8504912000000004, 47.4047966 ], + [ 7.8504694, 47.4047963 ], + [ 7.8504482, 47.4047999 ], + [ 7.8504293, 47.4048072 ], + [ 7.8504138999999995, 47.4048177 ], + [ 7.8503586, 47.4049099 ], + [ 7.8503519, 47.4049199 ], + [ 7.8503395, 47.404927 ], + [ 7.8503238, 47.4049298 ], + [ 7.8503079, 47.4049278 ], + [ 7.8501432, 47.4049031 ], + [ 7.8500869, 47.4049001 ], + [ 7.849903, 47.4048434 ], + [ 7.8497129999999995, 47.4048016 ], + [ 7.8495308999999995, 47.4047784 ], + [ 7.8493145, 47.4047199 ], + [ 7.8491520999999995, 47.4046639 ], + [ 7.8490946, 47.4047033 ], + [ 7.8484815999999995, 47.4049565 ], + [ 7.8478842, 47.4052074 ], + [ 7.8469831, 47.4055712 ], + [ 7.8466708, 47.4056972 ], + [ 7.8461421, 47.4059452 ], + [ 7.846078, 47.405976 ], + [ 7.8469524, 47.406071 ], + [ 7.8472133, 47.4060982 ], + [ 7.8472147, 47.4060983 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr061", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Papur", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Papur", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Papur", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Papur", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.558835, 47.5405159 ], + [ 9.5618255, 47.5045585 ], + [ 9.5612987, 47.5000845 ], + [ 9.5612549, 47.4993162 ], + [ 9.5613034, 47.498548 ], + [ 9.561444, 47.497785 ], + [ 9.5616756, 47.4970323 ], + [ 9.5619967, 47.4962948 ], + [ 9.5624053, 47.4955775 ], + [ 9.5626683, 47.4952089 ], + [ 9.5628985, 47.4948851 ], + [ 9.5634732, 47.4942222 ], + [ 9.5641255, 47.4935931 ], + [ 9.5648512, 47.493002 ], + [ 9.5656453, 47.4924529 ], + [ 9.5665026, 47.4919494 ], + [ 9.5766773, 47.48645 ], + [ 9.5787171, 47.4853472 ], + [ 9.5792268, 47.4850609 ], + [ 9.5797185, 47.4847605 ], + [ 9.5801913, 47.4844465 ], + [ 9.5806445, 47.4841194 ], + [ 9.5810772, 47.4837799 ], + [ 9.5814887, 47.4834284 ], + [ 9.5818749, 47.4830658 ], + [ 9.5822386, 47.4826927 ], + [ 9.5825792, 47.4823097 ], + [ 9.5828961, 47.4819174 ], + [ 9.583188700000001, 47.4815166 ], + [ 9.5834566, 47.4811079 ], + [ 9.5929598, 47.465846 ], + [ 9.5932131, 47.4654726 ], + [ 9.5934871, 47.4651061 ], + [ 9.5937814, 47.4647469 ], + [ 9.5940201, 47.4644786 ], + [ 9.3858333, 47.4777777 ], + [ 9.3934069, 47.5201769 ], + [ 9.4473916, 47.5581552 ], + [ 9.4907311, 47.5547875 ], + [ 9.4956037, 47.5514551 ], + [ 9.498336, 47.551042 ], + [ 9.5069474, 47.5497394 ], + [ 9.5478266, 47.5435463 ], + [ 9.558835, 47.5405159 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 120, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "CTR0018", + "country" : "CHE", + "name" : [ + { + "text" : "CTR ST. GALLEN", + "lang" : "de-CH" + }, + { + "text" : "CTR ST. GALLEN", + "lang" : "fr-CH" + }, + { + "text" : "CTR ST. GALLEN", + "lang" : "it-CH" + }, + { + "text" : "CTR ST. GALLEN", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only permitted from an altitude of 120 m above ground with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Skyguide Special Flight Office", + "lang" : "de-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "it-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "en-GB" + } + ], + "siteURL" : "https://skyguide.ch/services/special-flights", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.5786945, 47.455918 ], + [ 8.578691899999999, 47.4557984 ], + [ 8.5786664, 47.455599 ], + [ 8.5786329, 47.4554572 ], + [ 8.5786243, 47.4553691 ], + [ 8.578304, 47.4548424 ], + [ 8.5772485, 47.453858 ], + [ 8.5766377, 47.4535105 ], + [ 8.5765108, 47.4531582 ], + [ 8.5763157, 47.4530261 ], + [ 8.5761663, 47.4529232 ], + [ 8.5759411, 47.45275 ], + [ 8.5753142, 47.4523964 ], + [ 8.5750407, 47.4522543 ], + [ 8.5745431, 47.452055 ], + [ 8.5722488, 47.4513057 ], + [ 8.5720084, 47.4512262 ], + [ 8.5715406, 47.45105 ], + [ 8.5710921, 47.4508511 ], + [ 8.5709758, 47.4508082 ], + [ 8.5703518, 47.4504005 ], + [ 8.5697399, 47.4498731 ], + [ 8.5692445, 47.4489649 ], + [ 8.5691557, 47.4485277 ], + [ 8.5691788, 47.4483044 ], + [ 8.5692295, 47.4481357 ], + [ 8.5693161, 47.4479055 ], + [ 8.56951, 47.4475429 ], + [ 8.5698024, 47.447075 ], + [ 8.5717653, 47.447098 ], + [ 8.572259, 47.4466201 ], + [ 8.5724464, 47.4463906 ], + [ 8.572905800000001, 47.4458599 ], + [ 8.5730927, 47.4456701 ], + [ 8.573345, 47.4454391 ], + [ 8.573893, 47.4449588 ], + [ 8.5730146, 47.4449935 ], + [ 8.5728305, 47.4450673 ], + [ 8.5715397, 47.445098 ], + [ 8.5712023, 47.445193 ], + [ 8.5710634, 47.4451467 ], + [ 8.5707665, 47.4451496 ], + [ 8.5703384, 47.4450962 ], + [ 8.5702903, 47.4440821 ], + [ 8.570036, 47.4434117 ], + [ 8.569735, 47.442911 ], + [ 8.5694036, 47.4424752 ], + [ 8.5689718, 47.4420621 ], + [ 8.5687281, 47.4419476 ], + [ 8.568604, 47.4418462 ], + [ 8.5685011, 47.4418121 ], + [ 8.5684263, 47.4417823 ], + [ 8.568228, 47.4416862 ], + [ 8.5680104, 47.4415534 ], + [ 8.5671129, 47.4411205 ], + [ 8.5666238, 47.4409382 ], + [ 8.5662269, 47.4408557 ], + [ 8.5656113, 47.4407727 ], + [ 8.5652157, 47.4406884 ], + [ 8.5648459, 47.4405687 ], + [ 8.5644272, 47.4403911 ], + [ 8.562676, 47.4392703 ], + [ 8.5615555, 47.4388863 ], + [ 8.5603334, 47.4388982 ], + [ 8.560032, 47.4388777 ], + [ 8.5596746, 47.4388416 ], + [ 8.5593894, 47.4387697 ], + [ 8.5589506, 47.4385824 ], + [ 8.5577608, 47.4378644 ], + [ 8.5569122, 47.4386138 ], + [ 8.5513916, 47.4431772 ], + [ 8.5501291, 47.4441788 ], + [ 8.5499565, 47.4441697 ], + [ 8.5474921, 47.4460985 ], + [ 8.546344, 47.4457246 ], + [ 8.5440234, 47.4490956 ], + [ 8.5391379, 47.4561908 ], + [ 8.5357302, 47.4568025 ], + [ 8.5315877, 47.457546 ], + [ 8.5314598, 47.4575796 ], + [ 8.5313359, 47.4576195 ], + [ 8.5312162, 47.4576647 ], + [ 8.5311032, 47.4577161 ], + [ 8.530892099999999, 47.457836 ], + [ 8.5307337, 47.4579373 ], + [ 8.5306079, 47.4580104 ], + [ 8.530478, 47.4580791 ], + [ 8.5303454, 47.4581443 ], + [ 8.5302074, 47.4582058 ], + [ 8.5296016, 47.4584175 ], + [ 8.527519999999999, 47.4585739 ], + [ 8.5274262, 47.4585927 ], + [ 8.5273352, 47.4586179 ], + [ 8.5272496, 47.4586493 ], + [ 8.5271682, 47.4586869 ], + [ 8.5270934, 47.458729 ], + [ 8.5270254, 47.4587764 ], + [ 8.5269642, 47.4588292 ], + [ 8.5269123, 47.4588845 ], + [ 8.5268684, 47.4589443 ], + [ 8.5268339, 47.4590067 ], + [ 8.5268086, 47.4590708 ], + [ 8.5267941, 47.4591357 ], + [ 8.5267888, 47.4592023 ], + [ 8.5267941, 47.4592688 ], + [ 8.5269344, 47.4601616 ], + [ 8.5269168, 47.4602068 ], + [ 8.5269542, 47.4602235 ], + [ 8.5269833, 47.4602835 ], + [ 8.5270217, 47.4603416 ], + [ 8.5270679, 47.460396 ], + [ 8.527122, 47.4604477 ], + [ 8.527184, 47.4604957 ], + [ 8.5273263, 47.460578 ], + [ 8.5274052, 47.4606114 ], + [ 8.5274893, 47.4606394 ], + [ 8.527576, 47.460662 ], + [ 8.5277582, 47.4606882 ], + [ 8.5278525, 47.4606918 ], + [ 8.5279453, 47.4606891 ], + [ 8.5282923, 47.4606678 ], + [ 8.5299266, 47.460549 ], + [ 8.5306693, 47.4604853 ], + [ 8.5306789, 47.4606939 ], + [ 8.5306814, 47.4609439 ], + [ 8.5306463, 47.4611709 ], + [ 8.5305211, 47.4614698 ], + [ 8.5303919, 47.4616393 ], + [ 8.5305719, 47.4616825 ], + [ 8.5321813, 47.4620316 ], + [ 8.5323232, 47.462033 ], + [ 8.5324159, 47.4620213 ], + [ 8.5331293, 47.461885 ], + [ 8.5336545, 47.460788 ], + [ 8.5368121, 47.4606164 ], + [ 8.543746, 47.4601274 ], + [ 8.543872, 47.4601368 ], + [ 8.5439254, 47.4601861 ], + [ 8.5439478, 47.4602534 ], + [ 8.5400917, 47.465874 ], + [ 8.5359583, 47.4718063 ], + [ 8.5354962, 47.4722763 ], + [ 8.5348949, 47.4723531 ], + [ 8.5345491, 47.4723599 ], + [ 8.5341625, 47.4723085 ], + [ 8.5337928, 47.4723291 ], + [ 8.5334553, 47.4724485 ], + [ 8.532656, 47.4743612 ], + [ 8.5330912, 47.47462 ], + [ 8.5328601, 47.4751092 ], + [ 8.5326555, 47.4753599 ], + [ 8.53248, 47.4754895 ], + [ 8.5303791, 47.4778516 ], + [ 8.5297628, 47.4787283 ], + [ 8.5293621, 47.479386 ], + [ 8.5282818, 47.4806509 ], + [ 8.5275682, 47.4813898 ], + [ 8.5270162, 47.481963 ], + [ 8.5271321, 47.4821625 ], + [ 8.5272926, 47.4824859 ], + [ 8.5277168, 47.483528 ], + [ 8.5277959, 47.4837585 ], + [ 8.527861099999999, 47.484053 ], + [ 8.5279573, 47.4843236 ], + [ 8.5280914, 47.4847497 ], + [ 8.5281364, 47.4849075 ], + [ 8.5281577, 47.4850864 ], + [ 8.5281599, 47.4853724 ], + [ 8.5282023, 47.4857427 ], + [ 8.5282477, 47.4859194 ], + [ 8.5283069, 47.4860888 ], + [ 8.5284073, 47.4862675 ], + [ 8.5285374, 47.486455 ], + [ 8.5271908, 47.4875443 ], + [ 8.528556, 47.4883997 ], + [ 8.5297403, 47.4875333 ], + [ 8.5314152, 47.4889744 ], + [ 8.5348592, 47.4873704 ], + [ 8.5332375, 47.4864654 ], + [ 8.5362106, 47.4842794 ], + [ 8.5364296, 47.484224 ], + [ 8.5369953, 47.4844497 ], + [ 8.5373707, 47.4840942 ], + [ 8.5376677, 47.4832419 ], + [ 8.5377384, 47.4831098 ], + [ 8.5378983, 47.4829838 ], + [ 8.5380901, 47.4828789 ], + [ 8.5384022, 47.4827587 ], + [ 8.5387754, 47.482549 ], + [ 8.5416946, 47.4804243 ], + [ 8.5418972, 47.4801308 ], + [ 8.5422001, 47.4793146 ], + [ 8.5424029, 47.4790066 ], + [ 8.5429233, 47.4786134 ], + [ 8.5430758, 47.4785298 ], + [ 8.5444271, 47.4783825 ], + [ 8.5444905, 47.478255 ], + [ 8.545272, 47.47771 ], + [ 8.546714099999999, 47.4766362 ], + [ 8.548388899999999, 47.4756347 ], + [ 8.548606, 47.4754833 ], + [ 8.5493602, 47.4746922 ], + [ 8.5494267, 47.4746932 ], + [ 8.5499463, 47.474252 ], + [ 8.5510941, 47.4734446 ], + [ 8.5522147, 47.472608 ], + [ 8.552881, 47.4720669 ], + [ 8.5530163, 47.4720402 ], + [ 8.5530902, 47.4720469 ], + [ 8.5531569, 47.4720697 ], + [ 8.5535315, 47.4723275 ], + [ 8.553698, 47.4723969 ], + [ 8.5537947, 47.4724081 ], + [ 8.5539495, 47.472394 ], + [ 8.5541866, 47.4722901 ], + [ 8.554405, 47.4722 ], + [ 8.5570968, 47.4712164 ], + [ 8.5575028, 47.4710279 ], + [ 8.5578751, 47.4708206 ], + [ 8.5586366, 47.4702919 ], + [ 8.5618056, 47.4680334 ], + [ 8.5626563, 47.4674255 ], + [ 8.5651346, 47.4656511 ], + [ 8.5652045, 47.4655952 ], + [ 8.5652461, 47.4655511 ], + [ 8.5652891, 47.4654852 ], + [ 8.5653205, 47.465403 ], + [ 8.5653265, 47.4653314 ], + [ 8.565313, 47.4652456 ], + [ 8.5650354, 47.464362 ], + [ 8.5650348, 47.4643152 ], + [ 8.5650537, 47.4642441 ], + [ 8.5650891, 47.4641805 ], + [ 8.5651246, 47.4641403 ], + [ 8.5651685, 47.4641034 ], + [ 8.5668858, 47.4628442 ], + [ 8.5670892, 47.4626779 ], + [ 8.567181399999999, 47.4625687 ], + [ 8.5672385, 47.4625194 ], + [ 8.5690522, 47.4611939 ], + [ 8.569147300000001, 47.4611495 ], + [ 8.5692482, 47.4611265 ], + [ 8.5693555, 47.4611151 ], + [ 8.570171, 47.4610858 ], + [ 8.5702788, 47.4610663 ], + [ 8.5703451, 47.4610457 ], + [ 8.57041, 47.4610191 ], + [ 8.5704686, 47.4609857 ], + [ 8.5710421, 47.4605715 ], + [ 8.5711214, 47.4605213 ], + [ 8.571175, 47.4604971 ], + [ 8.5712375, 47.4604765 ], + [ 8.5713101, 47.4604606 ], + [ 8.5713689, 47.4604539 ], + [ 8.5714803, 47.460446 ], + [ 8.5722839, 47.4603889 ], + [ 8.5728032, 47.4603485 ], + [ 8.5729842, 47.4603252 ], + [ 8.5731644, 47.460295 ], + [ 8.5733751, 47.4602509 ], + [ 8.573681, 47.4601658 ], + [ 8.5738471, 47.4601095 ], + [ 8.5739734, 47.4600606 ], + [ 8.5741604, 47.4599802 ], + [ 8.574599599999999, 47.4597756 ], + [ 8.5747829, 47.4596858 ], + [ 8.5749191, 47.4596093 ], + [ 8.5750502, 47.4595262 ], + [ 8.5751718, 47.4594393 ], + [ 8.5755924, 47.4590868 ], + [ 8.576452, 47.4590245 ], + [ 8.5779474, 47.4573826 ], + [ 8.5780847, 47.4572337 ], + [ 8.5781961, 47.4571085 ], + [ 8.5783267, 47.4569507 ], + [ 8.5784629, 47.456746 ], + [ 8.5785406, 47.4565969 ], + [ 8.578621, 47.4563901 ], + [ 8.5786555, 47.4562656 ], + [ 8.5786859, 47.4560764 ], + [ 8.5786945, 47.455918 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZH003", + "country" : "CHE", + "name" : [ + { + "text" : "LSZH Zürich (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSZH Zürich (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSZH Zürich (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSZH Zürich (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Flughafen Zürich AG / Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Flughafen Zürich AG / Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Flughafen Zürich AG / Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Flughafen Zürich AG / Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Skyguide Special Flight Office", + "lang" : "de-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "it-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.skyguide.ch/services/special-flights", + "email" : "drones@zurich-airport.com", + "phone" : "0041438162211", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.0632877, 46.7641216 ], + [ 9.0686727, 46.7646747 ], + [ 9.0741478, 46.766036 ], + [ 9.0946065, 46.7734788 ], + [ 9.1089986, 46.7793874 ], + [ 9.1181125, 46.7839549 ], + [ 9.121057799999999, 46.7901873 ], + [ 9.1293883, 46.7916163 ], + [ 9.1438936, 46.781166 ], + [ 9.1503401, 46.7668084 ], + [ 9.1335001, 46.7638971 ], + [ 9.1064887, 46.7543662 ], + [ 9.096027, 46.7504697 ], + [ 9.0958978, 46.7478507 ], + [ 9.1016649, 46.7390959 ], + [ 9.1125907, 46.7242702 ], + [ 9.1056834, 46.7166785 ], + [ 9.10062, 46.7158076 ], + [ 9.0876019, 46.7157492 ], + [ 9.0743734, 46.7173793 ], + [ 9.0631176, 46.7204643 ], + [ 9.0523047, 46.7252739 ], + [ 9.0447224, 46.7298796 ], + [ 9.0417916, 46.7325301 ], + [ 9.0366407, 46.7375508 ], + [ 9.0324325, 46.7435029 ], + [ 9.0288599, 46.7510655 ], + [ 9.027791, 46.7547693 ], + [ 9.0273297, 46.7635481 ], + [ 9.0286847, 46.7695349 ], + [ 9.0488996, 46.771186 ], + [ 9.0578772, 46.7648958 ], + [ 9.0632877, 46.7641216 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSXA001", + "country" : "CHE", + "name" : [ + { + "text" : "LSXA Tavanasa", + "lang" : "de-CH" + }, + { + "text" : "LSXA Tavanasa", + "lang" : "fr-CH" + }, + { + "text" : "LSXA Tavanasa", + "lang" : "it-CH" + }, + { + "text" : "LSXA Tavanasa", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swiss Helicopter AG", + "lang" : "de-CH" + }, + { + "text" : "Swiss Helicopter AG", + "lang" : "fr-CH" + }, + { + "text" : "Swiss Helicopter AG", + "lang" : "it-CH" + }, + { + "text" : "Swiss Helicopter AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Basis Tavanasa", + "lang" : "de-CH" + }, + { + "text" : "Basis Tavanasa", + "lang" : "fr-CH" + }, + { + "text" : "Basis Tavanasa", + "lang" : "it-CH" + }, + { + "text" : "Basis Tavanasa", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Tobias Herren", + "lang" : "de-CH" + }, + { + "text" : "Tobias Herren", + "lang" : "fr-CH" + }, + { + "text" : "Tobias Herren", + "lang" : "it-CH" + }, + { + "text" : "Tobias Herren", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swisshelicopter.ch/en/about-us/helicopter-bases/tavanasa", + "email" : "tavanasa@swisshelicopter.ch", + "phone" : "0041819362222", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P02DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.0277002, 46.3863228 ], + [ 8.0269433, 46.3780941 ], + [ 8.0269304, 46.3778073 ], + [ 8.0269121, 46.3776836 ], + [ 8.0268369, 46.3775659 ], + [ 8.0258111, 46.376071 ], + [ 8.0274125, 46.3732335 ], + [ 8.0273145, 46.3731835 ], + [ 8.0272374, 46.3729703 ], + [ 8.0271521, 46.3727402 ], + [ 8.0271092, 46.3726055 ], + [ 8.0269693, 46.3725108 ], + [ 8.0267568, 46.3724674 ], + [ 8.026626, 46.3724684 ], + [ 8.026423, 46.3724699 ], + [ 8.0261792, 46.3725337 ], + [ 8.0260254, 46.3725799 ], + [ 8.0258867, 46.3725977 ], + [ 8.0258454, 46.3725417 ], + [ 8.0258276, 46.3724687 ], + [ 8.0257932, 46.3723677 ], + [ 8.0257424, 46.3722499 ], + [ 8.0256432, 46.3721662 ], + [ 8.0255276, 46.3720658 ], + [ 8.0254039, 46.3719711 ], + [ 8.0252965, 46.3718762 ], + [ 8.0252781, 46.3717581 ], + [ 8.0253173, 46.3716228 ], + [ 8.0253474, 46.3714818 ], + [ 8.0253694, 46.3713354 ], + [ 8.0253348, 46.3712173 ], + [ 8.0253173, 46.3710994 ], + [ 8.0253801, 46.3709695 ], + [ 8.0254749, 46.3707999 ], + [ 8.0255061, 46.3706815 ], + [ 8.0254795, 46.3705466 ], + [ 8.0253619, 46.3703393 ], + [ 8.0251955, 46.3701266 ], + [ 8.0250282, 46.3698239 ], + [ 8.0248601, 46.3695325 ], + [ 8.024693, 46.3692468 ], + [ 8.0245007, 46.3689668 ], + [ 8.0243096, 46.368715 ], + [ 8.0241836, 46.3684852 ], + [ 8.0240505, 46.3683455 ], + [ 8.0239099, 46.3681833 ], + [ 8.0238834, 46.3680654 ], + [ 8.0238404, 46.3679194 ], + [ 8.0237852, 46.3675427 ], + [ 8.0237088, 46.3673125 ], + [ 8.0236405, 46.3671554 ], + [ 8.0235731, 46.3670039 ], + [ 8.0235719, 46.3668971 ], + [ 8.0236104, 46.366773 ], + [ 8.0236649, 46.3666262 ], + [ 8.023737, 46.3665412 ], + [ 8.0238092, 46.3664506 ], + [ 8.023865, 46.3663602 ], + [ 8.0239193, 46.366191 ], + [ 8.0239247, 46.3660164 ], + [ 8.0239708, 46.3658472 ], + [ 8.0240406, 46.3656159 ], + [ 8.0241182, 46.3653565 ], + [ 8.0241789, 46.365114 ], + [ 8.0242326, 46.3648997 ], + [ 8.024319, 46.3647021 ], + [ 8.024389, 46.3644876 ], + [ 8.0244761, 46.3642844 ], + [ 8.0245463, 46.3640925 ], + [ 8.024592, 46.3638839 ], + [ 8.024693, 46.363613 ], + [ 8.0247727, 46.3634716 ], + [ 8.0248541, 46.3634936 ], + [ 8.0248636, 46.3635385 ], + [ 8.024872, 46.3635666 ], + [ 8.0248648, 46.3636511 ], + [ 8.0248668, 46.3637637 ], + [ 8.0248608, 46.3638875 ], + [ 8.0248634, 46.3640451 ], + [ 8.0248735, 46.3641576 ], + [ 8.0248427, 46.3643153 ], + [ 8.024813, 46.3644957 ], + [ 8.0247912, 46.3646592 ], + [ 8.0248023, 46.364856 ], + [ 8.0248308, 46.3650866 ], + [ 8.0248826, 46.3653001 ], + [ 8.024929, 46.3656092 ], + [ 8.0250057, 46.3658676 ], + [ 8.0250348, 46.3661545 ], + [ 8.0252295, 46.3660629 ], + [ 8.0252277, 46.3659672 ], + [ 8.0251683, 46.3658101 ], + [ 8.0251735, 46.365613 ], + [ 8.0251694, 46.365388 ], + [ 8.0251982, 46.3651232 ], + [ 8.0252443, 46.3649483 ], + [ 8.0252986, 46.3647903 ], + [ 8.0253448, 46.3646324 ], + [ 8.025481, 46.3644626 ], + [ 8.0255935, 46.3643491 ], + [ 8.0257951, 46.3642182 ], + [ 8.0258752, 46.3641105 ], + [ 8.02593, 46.3640033 ], + [ 8.0259774, 46.3638791 ], + [ 8.0260236, 46.3637155 ], + [ 8.0259964, 46.3635356 ], + [ 8.0260428, 46.3633889 ], + [ 8.0260972, 46.3632365 ], + [ 8.0261106, 46.3630564 ], + [ 8.0260995, 46.3628537 ], + [ 8.026047, 46.3626572 ], + [ 8.025906, 46.3624613 ], + [ 8.025756, 46.3622542 ], + [ 8.0255658, 46.3620867 ], + [ 8.0253834, 46.3618912 ], + [ 8.0251847, 46.3616956 ], + [ 8.0249038, 46.3614783 ], + [ 8.0247372, 46.3612375 ], + [ 8.0245053, 46.3609691 ], + [ 8.0243885, 46.3608405 ], + [ 8.024313, 46.3606891 ], + [ 8.0242217, 46.3605829 ], + [ 8.0240818, 46.3604882 ], + [ 8.0239259, 46.3604106 ], + [ 8.0237521, 46.3602599 ], + [ 8.0236362, 46.3601313 ], + [ 8.0234696, 46.3598906 ], + [ 8.0233274, 46.3596609 ], + [ 8.0232511, 46.3595095 ], + [ 8.0230941, 46.3593363 ], + [ 8.0229694, 46.3592246 ], + [ 8.0228047, 46.3590795 ], + [ 8.0226566, 46.3589792 ], + [ 8.0224593, 46.3589076 ], + [ 8.0221803, 46.3587915 ], + [ 8.0219595, 46.35872 ], + [ 8.0218685, 46.3586418 ], + [ 8.021785, 46.3585019 ], + [ 8.0216445, 46.3583565 ], + [ 8.0215189, 46.3581549 ], + [ 8.0213365, 46.3579592 ], + [ 8.021195, 46.3577857 ], + [ 8.0209963, 46.357579 ], + [ 8.0207797, 46.3572993 ], + [ 8.0206376, 46.3570696 ], + [ 8.0203556, 46.3567509 ], + [ 8.0201323, 46.3565218 ], + [ 8.0199336, 46.3563094 ], + [ 8.0197677, 46.3561361 ], + [ 8.0196338, 46.3559177 ], + [ 8.0195082, 46.3557105 ], + [ 8.0193742, 46.3554806 ], + [ 8.0193715, 46.3553062 ], + [ 8.0193702, 46.3551768 ], + [ 8.0193032, 46.355059 ], + [ 8.0191699, 46.3548968 ], + [ 8.0189717, 46.3547408 ], + [ 8.0188074, 46.3546407 ], + [ 8.0186271, 46.3545576 ], + [ 8.0184299, 46.3544916 ], + [ 8.0181832, 46.3543527 ], + [ 8.0179374, 46.354225 ], + [ 8.0177882, 46.3540855 ], + [ 8.0176743, 46.3540639 ], + [ 8.0175433, 46.3540424 ], + [ 8.017355, 46.3539761 ], + [ 8.0171335, 46.3539103 ], + [ 8.01688, 46.3538165 ], + [ 8.0166585, 46.3537619 ], + [ 8.0164049, 46.3536568 ], + [ 8.0162153, 46.3535401 ], + [ 8.0159764, 46.353373 ], + [ 8.0156872, 46.3531331 ], + [ 8.0155314, 46.3530668 ], + [ 8.0153275, 46.3530571 ], + [ 8.015149, 46.353064 ], + [ 8.0149775, 46.3530485 ], + [ 8.0148217, 46.3529877 ], + [ 8.0146562, 46.3528426 ], + [ 8.0145156, 46.3526804 ], + [ 8.014176, 46.3523509 ], + [ 8.0138937, 46.3519928 ], + [ 8.01357, 46.351635 ], + [ 8.0130819, 46.3511603 ], + [ 8.0128506, 46.3509313 ], + [ 8.0125629, 46.350759 ], + [ 8.0121339, 46.3504245 ], + [ 8.0120345, 46.3503071 ], + [ 8.0120167, 46.350234 ], + [ 8.0120304, 46.3500764 ], + [ 8.0119809, 46.3499979 ], + [ 8.0117919, 46.3499374 ], + [ 8.0115149, 46.3499283 ], + [ 8.0112373, 46.3498572 ], + [ 8.0108685, 46.3497642 ], + [ 8.0105501, 46.3496766 ], + [ 8.0103771, 46.3495934 ], + [ 8.0101885, 46.3494936 ], + [ 8.0100898, 46.3494492 ], + [ 8.0098953, 46.3494901 ], + [ 8.0097081, 46.3495196 ], + [ 8.0094801, 46.3495326 ], + [ 8.00931, 46.3495788 ], + [ 8.0091718, 46.3496362 ], + [ 8.0088872, 46.3496777 ], + [ 8.0087327, 46.3496564 ], + [ 8.0086423, 46.3496233 ], + [ 8.0085113, 46.3496017 ], + [ 8.0084213, 46.3495348 ], + [ 8.0083224, 46.3494736 ], + [ 8.0081746, 46.3493903 ], + [ 8.008003, 46.3493635 ], + [ 8.007832, 46.3493985 ], + [ 8.0076456, 46.349428 ], + [ 8.0074341, 46.349469 ], + [ 8.0072721, 46.3495096 ], + [ 8.0070928, 46.3495222 ], + [ 8.0069134, 46.3495235 ], + [ 8.0067581, 46.3495022 ], + [ 8.0066367, 46.3495368 ], + [ 8.0064991, 46.3495829 ], + [ 8.0063764, 46.3495782 ], + [ 8.0061968, 46.349557 ], + [ 8.0060089, 46.3495303 ], + [ 8.0058209, 46.3494811 ], + [ 8.0055513, 46.3494099 ], + [ 8.0053541, 46.3493381 ], + [ 8.0051006, 46.3492443 ], + [ 8.0048628, 46.349173 ], + [ 8.0046253, 46.3490622 ], + [ 8.0044682, 46.3489452 ], + [ 8.0042878, 46.3488508 ], + [ 8.0040673, 46.3488073 ], + [ 8.0037973, 46.3487644 ], + [ 8.0035122, 46.3487552 ], + [ 8.0031045, 46.3487469 ], + [ 8.0031559, 46.3489267 ], + [ 8.0029772, 46.3489168 ], + [ 8.0027004, 46.3489244 ], + [ 8.0024157, 46.3489602 ], + [ 8.0020914, 46.3490809 ], + [ 8.0019097, 46.3489415 ], + [ 8.0017116, 46.3487854 ], + [ 8.0015386, 46.3486291 ], + [ 8.001373, 46.3484726 ], + [ 8.0012088, 46.348372499999996 ], + [ 8.0011252, 46.3482213 ], + [ 8.0010651, 46.3480642 ], + [ 8.0010059, 46.3479183 ], + [ 8.0009147, 46.3478063 ], + [ 8.0008071, 46.3476889 ], + [ 8.0006104, 46.3475891 ], + [ 7.9998465, 46.347212 ], + [ 7.9997418, 46.3472915 ], + [ 7.9996363, 46.3473035 ], + [ 7.9994979, 46.347344 ], + [ 7.999255, 46.3474076 ], + [ 7.9990033, 46.3474883 ], + [ 7.9987691, 46.3476082 ], + [ 7.9985512, 46.3477393 ], + [ 7.9984223, 46.347836 ], + [ 7.9983099, 46.3479605 ], + [ 7.9981728, 46.3480516 ], + [ 7.9980682, 46.3481481 ], + [ 7.9979318, 46.348301 ], + [ 7.99782, 46.3484032 ], + [ 7.9977642, 46.3485049 ], + [ 7.9977329, 46.3486177 ], + [ 7.9976614, 46.348697 ], + [ 7.9975891, 46.3487764 ], + [ 7.9975006, 46.3488558 ], + [ 7.9974126, 46.3489802 ], + [ 7.9973735999999995, 46.3490593 ], + [ 7.9973505, 46.3491833 ], + [ 7.9973279, 46.3492735 ], + [ 7.9973209999999995, 46.3493918 ], + [ 7.9973551, 46.3494703 ], + [ 7.9973733, 46.3495827 ], + [ 7.9974159, 46.3496949 ], + [ 7.9974588, 46.349841 ], + [ 7.9975096, 46.3499644 ], + [ 7.9975928, 46.350082 ], + [ 7.9976675, 46.3501545 ], + [ 7.9977252, 46.3502386 ], + [ 7.9977762, 46.3503845 ], + [ 7.9978023, 46.3504743 ], + [ 7.9978203, 46.35057 ], + [ 7.9978386, 46.3506879 ], + [ 7.9978475, 46.3507667 ], + [ 7.9978984, 46.3508958 ], + [ 7.9979572, 46.3510136 ], + [ 7.997951, 46.3511206 ], + [ 7.9979696, 46.3512723 ], + [ 7.9980779, 46.3514573 ], + [ 7.9981872, 46.3516646 ], + [ 7.9971939, 46.3517226 ], + [ 7.997138, 46.351813 ], + [ 7.9970348, 46.3519657 ], + [ 7.996932, 46.3521578 ], + [ 7.9968526, 46.3523273 ], + [ 7.9967907, 46.3525473 ], + [ 7.9967704, 46.3527838 ], + [ 7.9967728, 46.3529357 ], + [ 7.9968158, 46.3530929 ], + [ 7.9968748, 46.3532276 ], + [ 7.9969336, 46.3533397 ], + [ 7.9969601, 46.3534689 ], + [ 7.9969871999999995, 46.3536545 ], + [ 7.9969652, 46.353801 ], + [ 7.997008, 46.3539357 ], + [ 7.9970657, 46.3540254 ], + [ 7.9971322, 46.354098 ], + [ 7.9971507, 46.354233 ], + [ 7.9971852, 46.3543565 ], + [ 7.9972444, 46.3545024 ], + [ 7.9973276, 46.3546201 ], + [ 7.9973882, 46.3548278 ], + [ 7.9973908, 46.3549966 ], + [ 7.9973348, 46.3550815 ], + [ 7.9972297999999995, 46.3551329 ], + [ 7.9970748, 46.3551509 ], + [ 7.9968466, 46.355147 ], + [ 7.9967093, 46.355221 ], + [ 7.9965964, 46.3552951 ], + [ 7.9965092, 46.355419499999996 ], + [ 7.9963792, 46.3554993 ], + [ 7.9962578, 46.3555339 ], + [ 7.9961363, 46.3555687 ], + [ 7.9959342, 46.3556545 ], + [ 7.995773, 46.3557795 ], + [ 7.9956938, 46.3559714 ], + [ 7.9957539, 46.3561285 ], + [ 7.9958783, 46.3563077 ], + [ 7.9961516, 46.3565816 ], + [ 7.996374, 46.3567318 ], + [ 7.9965475999999995, 46.3568769 ], + [ 7.9966135, 46.3569665 ], + [ 7.996674, 46.3571573 ], + [ 7.9967662, 46.3573649 ], + [ 7.9968181, 46.3575164 ], + [ 7.9968109, 46.3576066 ], + [ 7.9967711, 46.3576856 ], + [ 7.9966592, 46.3577766 ], + [ 7.996579, 46.3578728 ], + [ 7.9965635, 46.3579518 ], + [ 7.9965736, 46.3580585 ], + [ 7.9966167, 46.3582271 ], + [ 7.9967016, 46.3584235 ], + [ 7.996802, 46.358631 ], + [ 7.9969111, 46.3588215 ], + [ 7.9970686, 46.3589724 ], + [ 7.9972092, 46.3591458 ], + [ 7.9972842, 46.3592465 ], + [ 7.9973106, 46.3593701 ], + [ 7.9973472, 46.3596119 ], + [ 7.9973101, 46.3598766 ], + [ 7.9972811, 46.3601301 ], + [ 7.9972444, 46.3603556 ], + [ 7.9971166, 46.3605703 ], + [ 7.9970053, 46.360723 ], + [ 7.9968926, 46.360814 ], + [ 7.9967225, 46.3608602 ], + [ 7.9964382, 46.3609355 ], + [ 7.9962851, 46.3610548 ], + [ 7.9962051, 46.3611735 ], + [ 7.9962415, 46.3613984 ], + [ 7.996285, 46.3616007 ], + [ 7.9963445, 46.3617803 ], + [ 7.9964437, 46.361864 ], + [ 7.9965752, 46.361942 ], + [ 7.9966905, 46.3620198 ], + [ 7.9967828, 46.3621487 ], + [ 7.9968003, 46.3622723 ], + [ 7.9968188, 46.3624129 ], + [ 7.996821, 46.3625479 ], + [ 7.9968636, 46.3626602 ], + [ 7.9969139, 46.362733 ], + [ 7.9970374, 46.3628221 ], + [ 7.997177, 46.3628886 ], + [ 7.9973491, 46.3629662 ], + [ 7.9975953, 46.3630545 ], + [ 7.9977673, 46.3631151 ], + [ 7.9980207, 46.3631919 ], + [ 7.9983075, 46.3632799 ], + [ 7.9984717, 46.36338 ], + [ 7.9986034, 46.3634691 ], + [ 7.9987767, 46.3635804 ], + [ 7.9990475, 46.363691 ], + [ 7.9992602999999995, 46.3637683 ], + [ 7.999408, 46.3638347 ], + [ 7.9994827, 46.3639129 ], + [ 7.9995413, 46.3640026 ], + [ 7.9996653, 46.3641366 ], + [ 7.9997565, 46.3642374 ], + [ 7.9998073, 46.3643608 ], + [ 7.9998664, 46.3645011 ], + [ 7.9999418, 46.3646411 ], + [ 8.0000506, 46.3648036 ], + [ 8.0001668, 46.364966 ], + [ 8.0003486, 46.365111 ], + [ 8.0004881, 46.3651719 ], + [ 8.0005711, 46.3652669 ], + [ 8.0006799, 46.3654912 ], + [ 8.0007906, 46.3657549 ], + [ 8.0009254, 46.3660635 ], + [ 8.0008546, 46.3662103 ], + [ 8.0008071, 46.3663233 ], + [ 8.0007928, 46.3664416 ], + [ 8.0007709, 46.3665994 ], + [ 8.0006913, 46.3667575 ], + [ 8.0006046, 46.366927 ], + [ 8.0005586, 46.3671187 ], + [ 8.0004629, 46.3672826 ], + [ 8.0004491, 46.3674459 ], + [ 8.0004528, 46.3676429 ], + [ 8.0004881, 46.3678339 ], + [ 8.0005151, 46.3680139 ], + [ 8.0006411, 46.368255 ], + [ 8.0007342, 46.3684626 ], + [ 8.0007851, 46.3685916 ], + [ 8.0008195, 46.3686983 ], + [ 8.0008866, 46.3688329 ], + [ 8.0010193, 46.369012 ], + [ 8.0012175, 46.3691738 ], + [ 8.0013507, 46.3693304 ], + [ 8.001549, 46.3694978 ], + [ 8.0017061, 46.3696879 ], + [ 8.0018399, 46.3698953 ], + [ 8.0019169, 46.3701142 ], + [ 8.0020347, 46.3703497 ], + [ 8.002177, 46.3706075 ], + [ 8.0024212, 46.3711236 ], + [ 8.0025922, 46.3710829 ], + [ 8.0027621, 46.3710197 ], + [ 8.0029239, 46.3709566 ], + [ 8.0030937, 46.3708822 ], + [ 8.0032145, 46.3707856 ], + [ 8.003351, 46.3706327 ], + [ 8.003463, 46.3704629 ], + [ 8.0035415, 46.3702823 ], + [ 8.0035922, 46.3703889 ], + [ 8.0036837, 46.3705176 ], + [ 8.0037917, 46.3706688 ], + [ 8.0039072, 46.3707636 ], + [ 8.0039088, 46.3708425 ], + [ 8.0038855, 46.3709383 ], + [ 8.0038956, 46.3710507 ], + [ 8.0039381, 46.3711629 ], + [ 8.003989, 46.3712864 ], + [ 8.0040561, 46.3714154 ], + [ 8.0041556, 46.3715272 ], + [ 8.0042876, 46.3716444 ], + [ 8.0043707, 46.3717451 ], + [ 8.004209, 46.3718252 ], + [ 8.0042014, 46.3718702 ], + [ 8.0041708, 46.3719717 ], + [ 8.0041635, 46.3720506 ], + [ 8.0041074, 46.3721299 ], + [ 8.0041251, 46.372186 ], + [ 8.0041676, 46.372287 ], + [ 8.0041518, 46.372332 ], + [ 8.0040627, 46.3723609 ], + [ 8.0039983, 46.3724121 ], + [ 8.003942, 46.3724687 ], + [ 8.0039345, 46.372525 ], + [ 8.0039363, 46.3726207 ], + [ 8.0038965, 46.3727054 ], + [ 8.0039391, 46.372812 ], + [ 8.0039563, 46.372902 ], + [ 8.0039417, 46.3729866 ], + [ 8.0040012, 46.3731662 ], + [ 8.004118, 46.3733004 ], + [ 8.0042499, 46.373412 ], + [ 8.0044063, 46.3735234 ], + [ 8.0045718, 46.3736629 ], + [ 8.0048293, 46.3739762 ], + [ 8.0048548, 46.3740885 ], + [ 8.0048081, 46.3742015 ], + [ 8.0047214, 46.3743879 ], + [ 8.0046495, 46.374501 ], + [ 8.0046178, 46.37458 ], + [ 8.0046197, 46.374687 ], + [ 8.0046947, 46.3747876 ], + [ 8.0047454, 46.3749055 ], + [ 8.0047639, 46.3750461 ], + [ 8.0047338, 46.3751926 ], + [ 8.0046783, 46.3753281 ], + [ 8.0045993, 46.3754638 ], + [ 8.0044946, 46.3755546 ], + [ 8.0043737, 46.3756512 ], + [ 8.0042207, 46.3757817 ], + [ 8.0040676, 46.3759011 ], + [ 8.0039389, 46.3760203 ], + [ 8.0038602, 46.3761896 ], + [ 8.0038306, 46.3763981 ], + [ 8.0037949, 46.3767192 ], + [ 8.0037361, 46.3771588 ], + [ 8.0037001, 46.3774572 ], + [ 8.0036219, 46.3776661 ], + [ 8.0034953, 46.3779203 ], + [ 8.0025939, 46.3786643 ], + [ 8.0023928, 46.3788628 ], + [ 8.0023624, 46.3789868 ], + [ 8.0024038, 46.3790597 ], + [ 8.0025029, 46.3791378 ], + [ 8.0026671, 46.3792323 ], + [ 8.0028324, 46.3793436 ], + [ 8.002932, 46.3794667 ], + [ 8.0029829, 46.3796014 ], + [ 8.0029688, 46.3797365 ], + [ 8.0030196, 46.3798544 ], + [ 8.0031269, 46.3799437 ], + [ 8.0032265, 46.3800611 ], + [ 8.0033016, 46.3801844 ], + [ 8.0033691, 46.3803415 ], + [ 8.0034285, 46.3805155 ], + [ 8.0035945, 46.3806945 ], + [ 8.0037601, 46.3808396 ], + [ 8.0038922, 46.3809737 ], + [ 8.0039758, 46.381125 ], + [ 8.0040683, 46.3812651 ], + [ 8.0041518, 46.3814109 ], + [ 8.0041787, 46.3815794 ], + [ 8.00424, 46.3818491 ], + [ 8.0042751, 46.382029 ], + [ 8.0043425, 46.3821749 ], + [ 8.0043927, 46.3822364 ], + [ 8.0045328, 46.3823536 ], + [ 8.0046239, 46.3824429 ], + [ 8.0047407, 46.3825828 ], + [ 8.0048405, 46.3827227 ], + [ 8.004883, 46.3828237 ], + [ 8.0049086, 46.3829474 ], + [ 8.0049363, 46.3831048 ], + [ 8.0049292, 46.3832061 ], + [ 8.0048992, 46.3833696 ], + [ 8.0048933, 46.3835047 ], + [ 8.004904, 46.3836734 ], + [ 8.0049146, 46.383831 ], + [ 8.0049983, 46.3839936 ], + [ 8.0051396, 46.3841446 ], + [ 8.0052228, 46.3842452 ], + [ 8.0052897, 46.3843573 ], + [ 8.0052826, 46.3844531 ], + [ 8.0052364, 46.3846223 ], + [ 8.0053434, 46.3846721 ], + [ 8.0054507, 46.3847613 ], + [ 8.0056073, 46.3848952 ], + [ 8.0057644, 46.385001 ], + [ 8.0060684, 46.3851677 ], + [ 8.0064064, 46.3854016 ], + [ 8.0066359, 46.3855237 ], + [ 8.0069247, 46.3857129 ], + [ 8.0071475, 46.3858802 ], + [ 8.0073704, 46.3860642 ], + [ 8.0075523, 46.3862092 ], + [ 8.0077333, 46.3863485 ], + [ 8.0079056, 46.3864374 ], + [ 8.0082089, 46.3865363 ], + [ 8.0083323, 46.386603 ], + [ 8.0084072, 46.3866925 ], + [ 8.0084498, 46.3868047 ], + [ 8.0085171, 46.3869506 ], + [ 8.008568, 46.387074 ], + [ 8.0086108, 46.3872089 ], + [ 8.0086289, 46.3873044 ], + [ 8.0086138, 46.3874114 ], + [ 8.0085588, 46.3875188 ], + [ 8.0085356, 46.3876315 ], + [ 8.0085622, 46.3877607 ], + [ 8.0085964, 46.3878449 ], + [ 8.0087122, 46.3879622 ], + [ 8.0088523, 46.3880738 ], + [ 8.0089594, 46.3881405 ], + [ 8.0091237, 46.3882293 ], + [ 8.0092631, 46.3882789 ], + [ 8.0093868, 46.3883681 ], + [ 8.0094613, 46.3884295 ], + [ 8.0095686, 46.3885131 ], + [ 8.0096594, 46.3885688 ], + [ 8.0097666, 46.388641 ], + [ 8.0098646, 46.3886854 ], + [ 8.0099391, 46.3887355 ], + [ 8.0100379, 46.3887854 ], + [ 8.0101696, 46.3888688 ], + [ 8.0102849, 46.3889412 ], + [ 8.0103677, 46.3890081 ], + [ 8.0105239, 46.3891026 ], + [ 8.0106557, 46.389203 ], + [ 8.0108036, 46.3892751 ], + [ 8.0109599, 46.3893865 ], + [ 8.0109941, 46.389465 ], + [ 8.0110121, 46.3895605 ], + [ 8.011063, 46.3896839 ], + [ 8.0111225, 46.3898579 ], + [ 8.0111651, 46.3899703 ], + [ 8.0111223, 46.3903758 ], + [ 8.0111569, 46.3904994 ], + [ 8.0111333, 46.3905783 ], + [ 8.0111188, 46.3906684 ], + [ 8.0111117, 46.3907586 ], + [ 8.0111377, 46.3908372 ], + [ 8.0112048, 46.3909605 ], + [ 8.0112634, 46.3910446 ], + [ 8.0113221, 46.3911397 ], + [ 8.0113555, 46.3912295 ], + [ 8.011398, 46.3913305 ], + [ 8.0114067, 46.3913868 ], + [ 8.0115062, 46.391493 ], + [ 8.0116065, 46.3916048 ], + [ 8.0117465, 46.3917106 ], + [ 8.011903, 46.3918278 ], + [ 8.0121333, 46.3919387 ], + [ 8.0123302, 46.3920384 ], + [ 8.0125849, 46.3921547 ], + [ 8.0128072, 46.3922713 ], + [ 8.0129226, 46.3923548 ], + [ 8.0130869, 46.3924493 ], + [ 8.0132514, 46.3925606 ], + [ 8.0135221, 46.3926486 ], + [ 8.0137107, 46.3927261 ], + [ 8.0140139, 46.3928195 ], + [ 8.0141696, 46.3928634 ], + [ 8.0143178, 46.3929692 ], + [ 8.0144426, 46.3930921 ], + [ 8.0145584, 46.3932038 ], + [ 8.0147407, 46.3933825 ], + [ 8.0149959, 46.3935439 ], + [ 8.0151523, 46.3936552 ], + [ 8.015399, 46.3937829 ], + [ 8.0156122, 46.3938826 ], + [ 8.0158672, 46.3940214 ], + [ 8.0163358, 46.3942261 ], + [ 8.0166058, 46.3943254 ], + [ 8.0167206, 46.3943471 ], + [ 8.0168523, 46.3944249 ], + [ 8.0170178, 46.3945531 ], + [ 8.0171906, 46.3946812 ], + [ 8.017397, 46.3948317 ], + [ 8.0175202, 46.3948814 ], + [ 8.0176517, 46.3949423 ], + [ 8.017767, 46.3950147 ], + [ 8.0178735, 46.3950927 ], + [ 8.0180145, 46.3952098 ], + [ 8.0181787, 46.3952874 ], + [ 8.0184415, 46.3953923 ], + [ 8.0187025, 46.3954129 ], + [ 8.0189149, 46.3954395 ], + [ 8.0191273, 46.3954659 ], + [ 8.0194205, 46.3954525 ], + [ 8.0198119, 46.395427 ], + [ 8.0200809, 46.3954251 ], + [ 8.0203662, 46.3954342 ], + [ 8.0206111, 46.3954605 ], + [ 8.0209384, 46.3955199 ], + [ 8.0212982, 46.3955791 ], + [ 8.0217084, 46.3957111 ], + [ 8.0221665, 46.3958428 ], + [ 8.0225849, 46.3959916 ], + [ 8.0231512, 46.3962012 ], + [ 8.0236516, 46.3964113 ], + [ 8.0244063, 46.3966983 ], + [ 8.0248004, 46.3968472 ], + [ 8.0251443, 46.3969347 ], + [ 8.0253812, 46.3969724 ], + [ 8.0255695, 46.3970216 ], + [ 8.0258061, 46.3970367 ], + [ 8.0260349, 46.3970799 ], + [ 8.0263701, 46.3971168 ], + [ 8.0267299, 46.3971703 ], + [ 8.0269665, 46.3971798 ], + [ 8.0272438, 46.3972003 ], + [ 8.027497, 46.3972378 ], + [ 8.0279226, 46.3972964 ], + [ 8.0282491, 46.3973502 ], + [ 8.0285686, 46.3974435 ], + [ 8.0289789, 46.3975867 ], + [ 8.0294287, 46.3976958 ], + [ 8.0297321, 46.3977948 ], + [ 8.0300275, 46.3979052 ], + [ 8.0303551, 46.3979927 ], + [ 8.0305271, 46.3980364 ], + [ 8.0306501, 46.3980694 ], + [ 8.0308137, 46.3980849 ], + [ 8.0311238, 46.3981332 ], + [ 8.0314104, 46.3981818 ], + [ 8.0317379, 46.3982581 ], + [ 8.0320494, 46.3983513 ], + [ 8.0323352, 46.3984055 ], + [ 8.0328026, 46.3985651 ], + [ 8.0330898, 46.3986699 ], + [ 8.0334261, 46.3988023 ], + [ 8.0339256, 46.3989281 ], + [ 8.0342374, 46.3990494 ], + [ 8.0344762, 46.3991827 ], + [ 8.0347394, 46.3993214 ], + [ 8.0349866, 46.3994884 ], + [ 8.0351848, 46.3996218 ], + [ 8.0353499, 46.3997839 ], + [ 8.0355162, 46.3999739 ], + [ 8.0356737, 46.4001079 ], + [ 8.0357981, 46.4002645 ], + [ 8.0359561, 46.4004377 ], + [ 8.0361467, 46.4006219 ], + [ 8.0363699, 46.4008172 ], + [ 8.036643, 46.4010459 ], + [ 8.0368821, 46.4012073 ], + [ 8.0371378, 46.4013967 ], + [ 8.0373688, 46.4015638 ], + [ 8.037632, 46.4017024 ], + [ 8.0378535, 46.4018133 ], + [ 8.038199, 46.4019627 ], + [ 8.0386571, 46.4020886 ], + [ 8.0391821, 46.4022365 ], + [ 8.0397063, 46.4023788 ], + [ 8.0401643, 46.4024934 ], + [ 8.0407208, 46.402613 ], + [ 8.0409666, 46.4026505 ], + [ 8.041203, 46.4026375 ], + [ 8.0414477, 46.4026468 ], + [ 8.041725, 46.4026559 ], + [ 8.0420019, 46.4026369 ], + [ 8.0422389, 46.4026745 ], + [ 8.0425423, 46.4027734 ], + [ 8.0428297, 46.4028894 ], + [ 8.0430519, 46.402989 ], + [ 8.0432736, 46.4031167 ], + [ 8.0434133, 46.4031831 ], + [ 8.0436595, 46.4032544 ], + [ 8.0438962, 46.4032695 ], + [ 8.0441169, 46.4033071 ], + [ 8.0443054, 46.4033733 ], + [ 8.0445352, 46.4034277 ], + [ 8.0450029, 46.4036042 ], + [ 8.0454783, 46.4037413 ], + [ 8.0461746, 46.4039384 ], + [ 8.0464849, 46.403998 ], + [ 8.0467719, 46.4040744 ], + [ 8.0470348, 46.404185 ], + [ 8.0473142, 46.4043066 ], + [ 8.0475936, 46.4044339 ], + [ 8.0479383, 46.4045887 ], + [ 8.0482758, 46.404755 ], + [ 8.0486613, 46.4049152 ], + [ 8.0491129, 46.4051029 ], + [ 8.0494085, 46.4052301 ], + [ 8.0497113, 46.4052671 ], + [ 8.0498916, 46.405322 ], + [ 8.0500477, 46.4053996 ], + [ 8.0502295, 46.4055163 ], + [ 8.0504831, 46.4055875 ], + [ 8.0507778, 46.4056302 ], + [ 8.0511948, 46.4057058 ], + [ 8.051784, 46.4058419 ], + [ 8.0522916, 46.4059504 ], + [ 8.0530056, 46.4061981 ], + [ 8.0532832, 46.4062352 ], + [ 8.0534632, 46.4062732 ], + [ 8.0537243, 46.4062824 ], + [ 8.054043, 46.4062912 ], + [ 8.054444, 46.4063894 ], + [ 8.0548042, 46.4064709 ], + [ 8.0550832, 46.4065644 ], + [ 8.0554115, 46.4066969 ], + [ 8.0557557, 46.4068011 ], + [ 8.0561249, 46.4069614 ], + [ 8.0564621, 46.4070938 ], + [ 8.0567989, 46.4072599 ], + [ 8.0571528, 46.4074261 ], + [ 8.0573999, 46.4075703 ], + [ 8.0578014, 46.4077136 ], + [ 8.0581217, 46.4078573 ], + [ 8.0584832, 46.4079782 ], + [ 8.0589514, 46.4081885 ], + [ 8.059304, 46.4083151 ], + [ 8.0595755, 46.4084592 ], + [ 8.0598644, 46.4086315 ], + [ 8.0601935, 46.4088315 ], + [ 8.0607229, 46.4092831 ], + [ 8.0609867, 46.4094555 ], + [ 8.0611292, 46.4096907 ], + [ 8.0613041, 46.4099201 ], + [ 8.0614219, 46.4101217 ], + [ 8.061598, 46.4103792 ], + [ 8.0617329, 46.4106539 ], + [ 8.0618171, 46.4108389 ], + [ 8.0619192, 46.411097 ], + [ 8.0620472, 46.4114055 ], + [ 8.0621498, 46.4117029 ], + [ 8.0622368, 46.4120569 ], + [ 8.0623407, 46.4123992 ], + [ 8.0624773, 46.4127528 ], + [ 8.0626064, 46.4131625 ], + [ 8.0627601, 46.413589 ], + [ 8.0629804, 46.4140825 ], + [ 8.0630315, 46.4142172 ], + [ 8.0631574, 46.4144187 ], + [ 8.0632657, 46.4145699 ], + [ 8.0633912, 46.4147434 ], + [ 8.0635159, 46.4149056 ], + [ 8.0636073, 46.4150061 ], + [ 8.0637492, 46.4151907 ], + [ 8.0638334, 46.4153701 ], + [ 8.0639021, 46.415544 ], + [ 8.0639294, 46.4157296 ], + [ 8.0640393, 46.4159482 ], + [ 8.0641241, 46.4161839 ], + [ 8.0642173, 46.4163745 ], + [ 8.0643672, 46.4165421 ], + [ 8.0644993, 46.416648 ], + [ 8.064664, 46.4167536 ], + [ 8.0649373, 46.4169822 ], + [ 8.0651773, 46.4172055 ], + [ 8.0653431, 46.4173392 ], + [ 8.0655419, 46.4175177 ], + [ 8.0657571, 46.417713 ], + [ 8.0659074, 46.4179145 ], + [ 8.066124, 46.4182222 ], + [ 8.0662335, 46.4184071 ], + [ 8.0663255, 46.4185583 ], + [ 8.066413, 46.4188896 ], + [ 8.0665258, 46.419294 ], + [ 8.0665883, 46.4196312 ], + [ 8.066648, 46.4198052 ], + [ 8.0667398, 46.4199395 ], + [ 8.0668326, 46.4200852 ], + [ 8.0669321, 46.4201857 ], + [ 8.0670319, 46.420303 ], + [ 8.0671238, 46.4204486 ], + [ 8.0672662, 46.420667 ], + [ 8.0674576, 46.4209075 ], + [ 8.0676238, 46.4210807 ], + [ 8.0677981, 46.4212481 ], + [ 8.06807, 46.4214148 ], + [ 8.0683007, 46.4215425 ], + [ 8.06863, 46.4217537 ], + [ 8.0687879, 46.4219044 ], + [ 8.0689217, 46.4220834 ], + [ 8.0690222, 46.4222684 ], + [ 8.0691501, 46.4225656 ], + [ 8.0693344, 46.4228906 ], + [ 8.0696032, 46.4233556 ], + [ 8.0696706, 46.4234845 ], + [ 8.0697052, 46.4235968 ], + [ 8.069774, 46.4237763 ], + [ 8.0698319, 46.423866 ], + [ 8.0699572, 46.4240113 ], + [ 8.0701478, 46.4241843 ], + [ 8.0704363, 46.4243789 ], + [ 8.0707175, 46.4245793 ], + [ 8.070899, 46.4247354 ], + [ 8.0710068, 46.4248472 ], + [ 8.0711145, 46.4249476 ], + [ 8.071355, 46.425137 ], + [ 8.0715041, 46.4253047 ], + [ 8.0719173, 46.4255997 ], + [ 8.0721332, 46.42584 ], + [ 8.0723323, 46.4260412 ], + [ 8.0724896, 46.4261412 ], + [ 8.0727618, 46.4263359 ], + [ 8.0729262, 46.426419 ], + [ 8.0731982, 46.426597 ], + [ 8.0734371, 46.426719 ], + [ 8.0737009, 46.4268914 ], + [ 8.0740476, 46.4271249 ], + [ 8.07455, 46.4273967 ], + [ 8.0750693, 46.4277191 ], + [ 8.0756792, 46.4280744 ], + [ 8.0764614, 46.4284903 ], + [ 8.0768, 46.4287183 ], + [ 8.0770717, 46.4288737 ], + [ 8.0773019, 46.4290125 ], + [ 8.0774417, 46.4290791 ], + [ 8.0775732, 46.4291286 ], + [ 8.0776313, 46.4291619 ], + [ 8.0777959, 46.4292563 ], + [ 8.077928, 46.4293621 ], + [ 8.0780842, 46.4294396 ], + [ 8.0782905, 46.4295506 ], + [ 8.0784957, 46.4296447 ], + [ 8.0786772, 46.4297332 ], + [ 8.0787769, 46.4298394 ], + [ 8.0788182, 46.4298953 ], + [ 8.0789338, 46.4299732 ], + [ 8.0791159, 46.4301125 ], + [ 8.0793465, 46.4302232 ], + [ 8.0796754, 46.4303949 ], + [ 8.080022, 46.4306173 ], + [ 8.0803022, 46.4307896 ], + [ 8.0806229, 46.4309559 ], + [ 8.0812598, 46.4314574 ], + [ 8.0814175, 46.4315855 ], + [ 8.0815743, 46.431708 ], + [ 8.0818059, 46.4319032 ], + [ 8.0819889, 46.43211 ], + [ 8.0821143, 46.4322665 ], + [ 8.0822569, 46.4324961 ], + [ 8.082382, 46.4326866 ], + [ 8.0825004, 46.4329388 ], + [ 8.0825937, 46.4331238 ], + [ 8.0827201, 46.4333592 ], + [ 8.0828549, 46.4336169 ], + [ 8.0829726, 46.4338074 ], + [ 8.0830728, 46.4339529 ], + [ 8.0831893, 46.4341096 ], + [ 8.08329, 46.4342327 ], + [ 8.0834557, 46.4344226 ], + [ 8.0836325, 46.4347251 ], + [ 8.0839634, 46.435471 ], + [ 8.0841983, 46.4358744 ], + [ 8.0843997, 46.4361879 ], + [ 8.0845764, 46.4364792 ], + [ 8.0847215, 46.4368552 ], + [ 8.0848912, 46.4372422 ], + [ 8.0849857, 46.4375284 ], + [ 8.0849804, 46.4376972 ], + [ 8.0849167, 46.4378103 ], + [ 8.0849683, 46.4379789 ], + [ 8.0850517, 46.4380851 ], + [ 8.0851523, 46.4381968 ], + [ 8.0852604, 46.4383254 ], + [ 8.08532, 46.4384825 ], + [ 8.0853812, 46.4387072 ], + [ 8.0854835, 46.4389652 ], + [ 8.0855623, 46.4393023 ], + [ 8.085691, 46.4396559 ], + [ 8.0858743, 46.4398851 ], + [ 8.0866243, 46.4393557 ], + [ 8.0871966, 46.4389233 ], + [ 8.0874848, 46.4386114 ], + [ 8.0877569, 46.4383109 ], + [ 8.087982, 46.4380952 ], + [ 8.0881978, 46.4378457 ], + [ 8.0884063, 46.4376021 ], + [ 8.0885815, 46.437353 ], + [ 8.0887324, 46.4371266 ], + [ 8.0889005, 46.4369001 ], + [ 8.0890119, 46.4367642 ], + [ 8.0890841, 46.4366792 ], + [ 8.0892202, 46.4365035 ], + [ 8.0893636, 46.4363166 ], + [ 8.0894999, 46.436158 ], + [ 8.0895786, 46.4360053 ], + [ 8.0897073, 46.4358917 ], + [ 8.089828, 46.4357783 ], + [ 8.0899324, 46.4356704 ], + [ 8.0899789, 46.4355462 ], + [ 8.0900996, 46.4354384 ], + [ 8.0902358, 46.4352684 ], + [ 8.0903798, 46.4351378 ], + [ 8.0904763, 46.4350469 ], + [ 8.0905883, 46.434894 ], + [ 8.0907573, 46.4347519 ], + [ 8.0909081, 46.4345087 ], + [ 8.0910436, 46.4343501 ], + [ 8.0910989, 46.4342145 ], + [ 8.0912022, 46.4340786 ], + [ 8.0912014, 46.434011 ], + [ 8.0912153, 46.433887 ], + [ 8.0912553, 46.4338248 ], + [ 8.0913113, 46.4337513 ], + [ 8.0914726, 46.4336373 ], + [ 8.0916817, 46.4334443 ], + [ 8.0921712, 46.4329675 ], + [ 8.0925155, 46.4325933 ], + [ 8.0928118, 46.4322814 ], + [ 8.093222, 46.4319065 ], + [ 8.0937216, 46.431531 ], + [ 8.094134, 46.4313419 ], + [ 8.0941395, 46.4311899 ], + [ 8.0941542, 46.4310603 ], + [ 8.0939163, 46.4310229 ], + [ 8.0943048, 46.4308059 ], + [ 8.094318, 46.43062 ], + [ 8.0940987, 46.4307005 ], + [ 8.0942506, 46.4304911 ], + [ 8.0942806, 46.4303502 ], + [ 8.0943188, 46.4302091 ], + [ 8.0942922, 46.4300968 ], + [ 8.094241, 46.4299678 ], + [ 8.0942055, 46.4297879 ], + [ 8.0940876, 46.4295806 ], + [ 8.0939459, 46.4293679 ], + [ 8.0937782, 46.4291441 ], + [ 8.0936526, 46.4289088 ], + [ 8.0935508, 46.4286957 ], + [ 8.0933555, 46.4282808 ], + [ 8.0933618, 46.4281288 ], + [ 8.0933257, 46.4279714 ], + [ 8.0932837, 46.4278592 ], + [ 8.0932167, 46.4277642 ], + [ 8.0931821, 46.4276575 ], + [ 8.0931555, 46.4275395 ], + [ 8.0932028, 46.4274152 ], + [ 8.093176, 46.4272861 ], + [ 8.0930914, 46.4271516 ], + [ 8.0929749, 46.426995 ], + [ 8.0928734, 46.4268045 ], + [ 8.0927731, 46.4266421 ], + [ 8.0926067, 46.426469 ], + [ 8.0924741, 46.4263237 ], + [ 8.092209, 46.4261232 ], + [ 8.0919544, 46.4259789 ], + [ 8.0916897, 46.4258009 ], + [ 8.0915092, 46.4257405 ], + [ 8.0912539, 46.4256019 ], + [ 8.0910567, 46.4254966 ], + [ 8.0908094, 46.4253522 ], + [ 8.0904959, 46.4251803 ], + [ 8.0900995, 46.4248683 ], + [ 8.0899096, 46.4247629 ], + [ 8.0898111, 46.4246849 ], + [ 8.0897682, 46.4245671 ], + [ 8.0897008, 46.4244382 ], + [ 8.0895672, 46.4242816 ], + [ 8.0893599, 46.4240807 ], + [ 8.0891269, 46.4238406 ], + [ 8.0888282, 46.4235447 ], + [ 8.0885885, 46.4233497 ], + [ 8.0883411, 46.4231941 ], + [ 8.088152, 46.4230886 ], + [ 8.0880045, 46.4230616 ], + [ 8.0877842, 46.4230635 ], + [ 8.08758, 46.4230538 ], + [ 8.0872706, 46.4230789 ], + [ 8.0868801, 46.4231327 ], + [ 8.0866676, 46.4231006 ], + [ 8.0865361, 46.4230567 ], + [ 8.0863704, 46.4229286 ], + [ 8.0861228, 46.4227617 ], + [ 8.0858664, 46.4225331 ], + [ 8.0854957, 46.4223277 ], + [ 8.0852075, 46.4221613 ], + [ 8.0850336, 46.4220332 ], + [ 8.0849091, 46.4218879 ], + [ 8.0847504, 46.421664 ], + [ 8.0845678, 46.4214854 ], + [ 8.0844093, 46.4212897 ], + [ 8.0842689, 46.4211727 ], + [ 8.0841295, 46.42114 ], + [ 8.0839822, 46.4211243 ], + [ 8.0837778, 46.4210977 ], + [ 8.0835412, 46.4210996 ], + [ 8.0834273, 46.4210893 ], + [ 8.0833441, 46.421 ], + [ 8.0832269, 46.420849 ], + [ 8.0831183, 46.4206753 ], + [ 8.0829437, 46.420491 ], + [ 8.0828508, 46.4203341 ], + [ 8.0827929, 46.4202502 ], + [ 8.08279, 46.4200757 ], + [ 8.0828115, 46.4199011 ], + [ 8.0828314, 46.4196589 ], + [ 8.0827519, 46.4192599 ], + [ 8.0827466, 46.4189504 ], + [ 8.0827011, 46.4186806 ], + [ 8.0826883, 46.4184218 ], + [ 8.0826441, 46.4181914 ], + [ 8.0825838, 46.4180399 ], + [ 8.0823702, 46.4179235 ], + [ 8.0822786, 46.4178117 ], + [ 8.0821629, 46.417722499999996 ], + [ 8.0820299, 46.4176053 ], + [ 8.0819461, 46.4174654 ], + [ 8.0819109, 46.417308 ], + [ 8.0819489, 46.4171501 ], + [ 8.0818568, 46.4169989 ], + [ 8.081707, 46.4168425 ], + [ 8.081466, 46.4165349 ], + [ 8.0811906, 46.416205 ], + [ 8.0808734, 46.4157854 ], + [ 8.080724, 46.4155896 ], + [ 8.0805654, 46.4153828 ], + [ 8.0804402, 46.415243 ], + [ 8.080315, 46.4150357 ], + [ 8.0801968, 46.4148004 ], + [ 8.0801442, 46.414615 ], + [ 8.0800353, 46.4144134 ], + [ 8.0799175, 46.4142116 ], + [ 8.0798242, 46.4140266 ], + [ 8.0797164, 46.4139149 ], + [ 8.0795681, 46.4138092 ], + [ 8.0794521, 46.4136976 ], + [ 8.0793931, 46.4135855 ], + [ 8.0792851, 46.4134625 ], + [ 8.0792098, 46.4133507 ], + [ 8.0791832, 46.4132326 ], + [ 8.0791401, 46.4130923 ], + [ 8.0791135, 46.4129686 ], + [ 8.0790459, 46.412823 ], + [ 8.0789299, 46.4127057 ], + [ 8.0788133, 46.4126053 ], + [ 8.0786974, 46.4124993 ], + [ 8.0786547, 46.4123927 ], + [ 8.0785225, 46.4122811 ], + [ 8.0782667, 46.4120975 ], + [ 8.0778696, 46.4117856 ], + [ 8.0778663, 46.4120614 ], + [ 8.0777506, 46.4119666 ], + [ 8.077619, 46.4119058 ], + [ 8.0775053, 46.4119123 ], + [ 8.0775068, 46.4120417 ], + [ 8.0774088, 46.4120031 ], + [ 8.0773093, 46.4119082 ], + [ 8.0772296, 46.412044 ], + [ 8.0771372, 46.411859 ], + [ 8.0769206, 46.4121027 ], + [ 8.0765864, 46.4116101 ], + [ 8.0765112, 46.4115095 ], + [ 8.0765024, 46.4114532 ], + [ 8.0765251, 46.4113742 ], + [ 8.076581, 46.411295 ], + [ 8.0766692, 46.4111874 ], + [ 8.076732, 46.4110631 ], + [ 8.0767457, 46.4109222 ], + [ 8.0767448, 46.4108435 ], + [ 8.0766855, 46.4107089 ], + [ 8.0766109, 46.4106532 ], + [ 8.0765212, 46.4106314 ], + [ 8.0764393, 46.4106434 ], + [ 8.0763501, 46.4106665 ], + [ 8.0762125, 46.4107127 ], + [ 8.076008999999999, 46.4107594 ], + [ 8.0759114, 46.4107544 ], + [ 8.0757637, 46.4107106 ], + [ 8.0755427, 46.4106449 ], + [ 8.0753207, 46.4105735 ], + [ 8.075132, 46.4104907 ], + [ 8.0749434, 46.4104189 ], + [ 8.0747539, 46.4103417 ], + [ 8.0745409, 46.4102702 ], + [ 8.0743609, 46.4102436 ], + [ 8.0741475, 46.4101384 ], + [ 8.0740568, 46.4100997 ], + [ 8.0739171, 46.4100389 ], + [ 8.0738034, 46.4100454 ], + [ 8.0736731, 46.4100914 ], + [ 8.0735112, 46.4101546 ], + [ 8.0734772, 46.4100987 ], + [ 8.0733472, 46.4100997 ], + [ 8.0732317, 46.4100218 ], + [ 8.0731493, 46.4099943 ], + [ 8.0730355, 46.4099953 ], + [ 8.0728634, 46.4099517 ], + [ 8.0727059, 46.4098235 ], + [ 8.0725411, 46.4097067 ], + [ 8.0724498, 46.4096116 ], + [ 8.0724316, 46.4095218 ], + [ 8.0724792, 46.40942 ], + [ 8.0725189, 46.4093353 ], + [ 8.0723712, 46.4092915 ], + [ 8.0724594, 46.4091839 ], + [ 8.0724415, 46.4091165 ], + [ 8.0723261, 46.4090498 ], + [ 8.0722514, 46.4089829 ], + [ 8.0722343, 46.4089099 ], + [ 8.0721998, 46.4088089 ], + [ 8.0721734, 46.4087077 ], + [ 8.0720251, 46.4086077 ], + [ 8.0719433, 46.4085633 ], + [ 8.0719006, 46.4084567 ], + [ 8.0718826, 46.4083781 ], + [ 8.071841299999999, 46.4083277 ], + [ 8.0716932, 46.4082389 ], + [ 8.0715357, 46.408122 ], + [ 8.0714116, 46.4080048 ], + [ 8.0712962, 46.4079326 ], + [ 8.0712292, 46.4078374 ], + [ 8.0712272, 46.4077305 ], + [ 8.0711699, 46.4076972 ], + [ 8.071071, 46.4076529 ], + [ 8.0709556, 46.4075864 ], + [ 8.0708476, 46.4074579 ], + [ 8.0707979, 46.4073794 ], + [ 8.0707964, 46.4073176 ], + [ 8.0708445, 46.4072608 ], + [ 8.0709092, 46.4072266 ], + [ 8.0709904, 46.4072204 ], + [ 8.0710642, 46.4072084 ], + [ 8.0711289, 46.4071854 ], + [ 8.0712509, 46.4071845 ], + [ 8.0713899, 46.407189 ], + [ 8.0715359, 46.4071597 ], + [ 8.0717559, 46.4071354 ], + [ 8.071893, 46.4070498 ], + [ 8.0718921, 46.406971 ], + [ 8.0717367, 46.4069554 ], + [ 8.0716137, 46.4069339 ], + [ 8.071532, 46.4068952 ], + [ 8.0714167, 46.4068342 ], + [ 8.0712692, 46.4068016 ], + [ 8.0710565, 46.4067583 ], + [ 8.0708683, 46.4067204 ], + [ 8.0706716, 46.4066488 ], + [ 8.070466, 46.4065829 ], + [ 8.0702529, 46.406500199999996 ], + [ 8.0700468, 46.4063892 ], + [ 8.0699067, 46.4062947 ], + [ 8.0697502, 46.4061834 ], + [ 8.0695941, 46.4061171 ], + [ 8.0694383, 46.4060621 ], + [ 8.0693071, 46.4060406 ], + [ 8.0692162, 46.4059738 ], + [ 8.0690521, 46.4059189 ], + [ 8.0688476, 46.4058699 ], + [ 8.0687564, 46.4057862 ], + [ 8.0686162, 46.4056803 ], + [ 8.068485, 46.4056532 ], + [ 8.0683789, 46.4056147 ], + [ 8.0683528, 46.4055362 ], + [ 8.0682778, 46.4054523 ], + [ 8.0681869, 46.4053911 ], + [ 8.0680564, 46.4053527 ], + [ 8.0679173, 46.4053427 ], + [ 8.0677534, 46.4052989 ], + [ 8.0676301, 46.4052493 ], + [ 8.0674982, 46.4051602 ], + [ 8.0673904, 46.4050429 ], + [ 8.0672992, 46.4049592 ], + [ 8.0671919, 46.404887 ], + [ 8.0670851, 46.4048596 ], + [ 8.0670037, 46.404849 ], + [ 8.0669938, 46.4047703 ], + [ 8.067108, 46.4047301 ], + [ 8.0670083, 46.4046127 ], + [ 8.0669415, 46.4045344 ], + [ 8.0668026, 46.4045356 ], + [ 8.0667035, 46.4044744 ], + [ 8.0665731, 46.4044417 ], + [ 8.0664666, 46.4044426 ], + [ 8.0663363, 46.4044211 ], + [ 8.0661469, 46.4043437 ], + [ 8.0659986, 46.4042436 ], + [ 8.0657838, 46.4040877 ], + [ 8.0655709, 46.4040164 ], + [ 8.0653498, 46.4039506 ], + [ 8.065455, 46.4039047 ], + [ 8.0655113, 46.4038535 ], + [ 8.0654366, 46.4037922 ], + [ 8.0653622, 46.4037534 ], + [ 8.065305, 46.4037258 ], + [ 8.0652138, 46.4036421 ], + [ 8.0650982, 46.4035586 ], + [ 8.0649924, 46.4035426 ], + [ 8.0648536, 46.4035605 ], + [ 8.064748, 46.4035614 ], + [ 8.0646327, 46.4035005 ], + [ 8.0644936, 46.4034959 ], + [ 8.0643061, 46.4035198 ], + [ 8.0641433, 46.4034987 ], + [ 8.0639299, 46.4034609 ], + [ 8.0638238, 46.4034168 ], + [ 8.0637244, 46.4033276 ], + [ 8.0635668, 46.4031937 ], + [ 8.0634024, 46.4030993 ], + [ 8.0633598, 46.403004 ], + [ 8.0633263, 46.4029142 ], + [ 8.0629907, 46.4028551 ], + [ 8.0629135, 46.4026417 ], + [ 8.0626848, 46.4026154 ], + [ 8.0625941, 46.4025767 ], + [ 8.0625206, 46.4025436 ], + [ 8.0624221, 46.4025331 ], + [ 8.0623486, 46.4025 ], + [ 8.0622904, 46.4024554 ], + [ 8.0622003, 46.4023942 ], + [ 8.062093, 46.4023275 ], + [ 8.061994, 46.4022664 ], + [ 8.0618709, 46.4022392 ], + [ 8.0617328, 46.4022403 ], + [ 8.0615532, 46.4022417 ], + [ 8.0613652, 46.4022207 ], + [ 8.0612824, 46.4021651 ], + [ 8.0612172, 46.4021431 ], + [ 8.0611184, 46.4021045 ], + [ 8.0610287, 46.4020827 ], + [ 8.0609619, 46.4019933 ], + [ 8.0608867, 46.4018869 ], + [ 8.0607789, 46.4017752 ], + [ 8.0604816, 46.401575 ], + [ 8.0602439, 46.4014755 ], + [ 8.0600964, 46.4014373 ], + [ 8.0599807, 46.4013425 ], + [ 8.0598811, 46.4012364 ], + [ 8.0597401, 46.4011306 ], + [ 8.0595842, 46.4010699 ], + [ 8.0594037, 46.4009926 ], + [ 8.0591741, 46.4008931 ], + [ 8.0589688, 46.4008441 ], + [ 8.0588208, 46.4007721 ], + [ 8.0587133, 46.4006829 ], + [ 8.0585813, 46.4005769 ], + [ 8.0583605, 46.4005337 ], + [ 8.058164, 46.400479 ], + [ 8.057976, 46.400458 ], + [ 8.0577477, 46.4004655 ], + [ 8.0575602, 46.4004838 ], + [ 8.0572836, 46.4005366 ], + [ 8.0570728, 46.4005777 ], + [ 8.0569822, 46.4005446 ], + [ 8.0569655, 46.4005053 ], + [ 8.0568825, 46.4004272 ], + [ 8.0567592, 46.400372 ], + [ 8.0565868, 46.4002945 ], + [ 8.0564062, 46.4002114 ], + [ 8.056176, 46.4001233 ], + [ 8.0560441, 46.400023 ], + [ 8.0558219, 46.3999234 ], + [ 8.0556169, 46.399835 ], + [ 8.0553219, 46.3997699 ], + [ 8.055101, 46.3997097 ], + [ 8.0548215, 46.3995712 ], + [ 8.0544608, 46.3994446 ], + [ 8.0541074, 46.3993123 ], + [ 8.053771, 46.3991742 ], + [ 8.0537299, 46.3991352 ], + [ 8.0536307, 46.3990572 ], + [ 8.0535723, 46.3989956 ], + [ 8.0534566, 46.398901 ], + [ 8.0533818, 46.3988227 ], + [ 8.0533079, 46.3987558 ], + [ 8.0532087, 46.3986777 ], + [ 8.0529944, 46.3985612 ], + [ 8.0528138, 46.3984726 ], + [ 8.0526822, 46.3984005 ], + [ 8.0526238, 46.3983391 ], + [ 8.0525325, 46.3982496 ], + [ 8.0523842, 46.3981382 ], + [ 8.0521792, 46.3980498 ], + [ 8.0519977, 46.3979555 ], + [ 8.0518091, 46.3978782 ], + [ 8.0516205, 46.3978009 ], + [ 8.0513905, 46.3977239 ], + [ 8.0512266, 46.3976745 ], + [ 8.0510302, 46.397631 ], + [ 8.0508906, 46.3975702 ], + [ 8.0508169, 46.3975201 ], + [ 8.0505624, 46.3974433 ], + [ 8.0503739, 46.3973717 ], + [ 8.0502101, 46.3973335 ], + [ 8.0500706, 46.3972839 ], + [ 8.0499225, 46.3971951 ], + [ 8.0498069, 46.3971059 ], + [ 8.0495519, 46.3969785 ], + [ 8.0494042, 46.3969234 ], + [ 8.049232, 46.3968571 ], + [ 8.0490759, 46.3967795 ], + [ 8.048928, 46.3967131 ], + [ 8.0487302, 46.3966134 ], + [ 8.0484996, 46.3964801 ], + [ 8.0482618, 46.3963637 ], + [ 8.0480234, 46.3962642 ], + [ 8.0479, 46.396209 ], + [ 8.0477278, 46.3961427 ], + [ 8.0475799, 46.3960707 ], + [ 8.0474073, 46.3959707 ], + [ 8.0472746, 46.3958704 ], + [ 8.0471347, 46.3957871 ], + [ 8.0469545, 46.3957322 ], + [ 8.0467658, 46.3956436 ], + [ 8.0466097, 46.3955717 ], + [ 8.0463468, 46.3954612 ], + [ 8.046118, 46.3954179 ], + [ 8.0459124, 46.3953463 ], + [ 8.0456, 46.3951686 ], + [ 8.0454519, 46.3950797 ], + [ 8.04532, 46.3949793 ], + [ 8.0452127, 46.3949015 ], + [ 8.0451707, 46.3948511 ], + [ 8.0450953, 46.3947222 ], + [ 8.0450134, 46.3946665 ], + [ 8.0449231, 46.3946561 ], + [ 8.0448178, 46.394685 ], + [ 8.0447267, 46.3946126 ], + [ 8.044644, 46.3945513 ], + [ 8.0445284, 46.3944565 ], + [ 8.0443637, 46.3943339 ], + [ 8.044264, 46.3942165 ], + [ 8.0441893, 46.3941438 ], + [ 8.0440496, 46.3940774 ], + [ 8.0439184, 46.3940446 ], + [ 8.0438863, 46.3940787 ], + [ 8.0438544, 46.3941352 ], + [ 8.0438143, 46.3941862 ], + [ 8.0437174, 46.3942432 ], + [ 8.043596, 46.3942835 ], + [ 8.0434157, 46.3942174 ], + [ 8.0433333, 46.3941899 ], + [ 8.0431128, 46.3941635 ], + [ 8.0428757, 46.394109 ], + [ 8.0428012, 46.3940533 ], + [ 8.0427601, 46.3940143 ], + [ 8.042653, 46.3939588 ], + [ 8.0425379, 46.3939091 ], + [ 8.042456, 46.3938477 ], + [ 8.0423568, 46.3937754 ], + [ 8.0422661, 46.393731 ], + [ 8.0420861, 46.3936931 ], + [ 8.0420034, 46.3936318 ], + [ 8.041954, 46.3935758 ], + [ 8.0418551, 46.3935259 ], + [ 8.0417482, 46.3934818 ], + [ 8.0415844, 46.3934436 ], + [ 8.0413466, 46.393316 ], + [ 8.0412066, 46.3932214 ], + [ 8.0411153, 46.3931264 ], + [ 8.0409998, 46.3930372 ], + [ 8.0408845, 46.3929707 ], + [ 8.0407691, 46.3928983 ], + [ 8.0406698, 46.3928147 ], + [ 8.0405788, 46.3927422 ], + [ 8.0404548, 46.3926193 ], + [ 8.0403454, 46.3924232 ], + [ 8.0402942, 46.3922772 ], + [ 8.0402354, 46.3921764 ], + [ 8.0401525, 46.3921039 ], + [ 8.0400695, 46.39202 ], + [ 8.0400684, 46.3919188 ], + [ 8.0400076, 46.391711 ], + [ 8.0398753, 46.3915769 ], + [ 8.0397683, 46.3915271 ], + [ 8.039670600000001, 46.3915165 ], + [ 8.0395393, 46.3914725 ], + [ 8.039416, 46.3914116 ], + [ 8.0392595, 46.3912947 ], + [ 8.0392007, 46.3911994 ], + [ 8.0391584, 46.3911209 ], + [ 8.0390748, 46.3909809 ], + [ 8.039016, 46.39088 ], + [ 8.0389002, 46.3907683 ], + [ 8.0387932, 46.3907184 ], + [ 8.0386539, 46.3906859 ], + [ 8.0385307, 46.3906417 ], + [ 8.0383991, 46.3905752 ], + [ 8.0382835, 46.3904747 ], + [ 8.0381434, 46.3903689 ], + [ 8.0379794, 46.3903138 ], + [ 8.0377672, 46.3902986 ], + [ 8.0375226, 46.3903005 ], + [ 8.0373668, 46.3902397 ], + [ 8.0371279, 46.3900896 ], + [ 8.0369132, 46.3899279 ], + [ 8.0366824, 46.3897721 ], + [ 8.0365174, 46.3896215 ], + [ 8.0363938, 46.3895323 ], + [ 8.0362946, 46.3894599 ], + [ 8.0360156, 46.3893551 ], + [ 8.0358518, 46.3893057 ], + [ 8.0356227, 46.3892343 ], + [ 8.0354334, 46.3891626 ], + [ 8.0352778, 46.3891299 ], + [ 8.0351382, 46.3890635 ], + [ 8.0349995, 46.3890139 ], + [ 8.0348022, 46.3889479 ], + [ 8.0346705, 46.3888701 ], + [ 8.0345223, 46.3887642 ], + [ 8.0343992, 46.3887314 ], + [ 8.0341703, 46.388677 ], + [ 8.0321431, 46.3878425 ], + [ 8.0319795, 46.3878212 ], + [ 8.0318903, 46.3878388 ], + [ 8.031751, 46.3878061 ], + [ 8.0316612, 46.3877617 ], + [ 8.0314973, 46.3877067 ], + [ 8.0312933, 46.3877026 ], + [ 8.0311139, 46.3877208 ], + [ 8.0309181, 46.3877224 ], + [ 8.0306409, 46.3877132 ], + [ 8.0303218, 46.3876593 ], + [ 8.029971, 46.3876002 ], + [ 8.0296342, 46.3874844 ], + [ 8.0292492, 46.3873411 ], + [ 8.0289622, 46.3872475 ], + [ 8.0288628, 46.387147 ], + [ 8.0287879, 46.3870575 ], + [ 8.028697, 46.3869963 ], + [ 8.028533, 46.38693 ], + [ 8.0284268, 46.3868744 ], + [ 8.0283184, 46.3867741 ], + [ 8.0281375, 46.3866403 ], + [ 8.0279065, 46.3864675 ], + [ 8.0277002, 46.3863228 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "JBG0001", + "country" : "CHE", + "name" : [ + { + "text" : "Eidgenössisches Jagdbanngebiet Aletschwald", + "lang" : "de-CH" + }, + { + "text" : "District franc fédéral Aletschwald", + "lang" : "fr-CH" + }, + { + "text" : "Bandita federale di caccia Aletschwald", + "lang" : "it-CH" + }, + { + "text" : "Federal Game Reserve Aletschwald", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6731428, 47.4846724 ], + [ 7.6730194, 47.4847732 ], + [ 7.6730096, 47.484789 ], + [ 7.6728637, 47.4850246 ], + [ 7.6721452, 47.4853531 ], + [ 7.6718736, 47.4854341 ], + [ 7.6720217, 47.485627 ], + [ 7.6722643999999995, 47.4860097 ], + [ 7.6720181, 47.4863998 ], + [ 7.6719037, 47.486497 ], + [ 7.6719509, 47.4868848 ], + [ 7.6719587, 47.486949 ], + [ 7.6720296, 47.4873888 ], + [ 7.6730568, 47.487544 ], + [ 7.6738418, 47.4876546 ], + [ 7.6742933, 47.4879455 ], + [ 7.6745585, 47.4883105 ], + [ 7.6748775, 47.4888172 ], + [ 7.6752391, 47.489114 ], + [ 7.6752564, 47.4891282 ], + [ 7.675473, 47.489306 ], + [ 7.6754767, 47.4893075 ], + [ 7.6754801, 47.4893103 ], + [ 7.6759463, 47.489498 ], + [ 7.6765592, 47.4897535 ], + [ 7.6769251, 47.4901218 ], + [ 7.6769307, 47.4901246 ], + [ 7.6773565999999995, 47.4903335 ], + [ 7.6777445, 47.4905413 ], + [ 7.678265, 47.490724 ], + [ 7.6782997, 47.4907362 ], + [ 7.6783186, 47.4907428 ], + [ 7.6785193, 47.4908133 ], + [ 7.6785187, 47.4908148 ], + [ 7.6782343, 47.4915398 ], + [ 7.6778489, 47.4921806 ], + [ 7.6777847, 47.492288 ], + [ 7.6777043, 47.4924227 ], + [ 7.6771624, 47.4923584 ], + [ 7.6766892, 47.4922348 ], + [ 7.6766881, 47.4922346 ], + [ 7.6762925, 47.4919745 ], + [ 7.6762858, 47.49197 ], + [ 7.6755605, 47.4921724 ], + [ 7.6754456, 47.4922056 ], + [ 7.6754678, 47.4922324 ], + [ 7.6755136, 47.4922876 ], + [ 7.6755203, 47.4923345 ], + [ 7.675497, 47.4923783 ], + [ 7.6752526, 47.4928355 ], + [ 7.6752117, 47.4929445 ], + [ 7.6751709, 47.4930534 ], + [ 7.6751632, 47.4930738 ], + [ 7.6750226999999995, 47.4934486 ], + [ 7.6749525, 47.4936686 ], + [ 7.6749507999999995, 47.4936802 ], + [ 7.6749286, 47.4938496 ], + [ 7.6749365, 47.493848 ], + [ 7.6752301, 47.4937894 ], + [ 7.6756405, 47.4937129 ], + [ 7.6758154, 47.4936966 ], + [ 7.6760637, 47.4937055 ], + [ 7.6761222, 47.4937049 ], + [ 7.6761208, 47.4936589 ], + [ 7.6761405, 47.4936308 ], + [ 7.6761809, 47.4935929 ], + [ 7.6761943, 47.4935914 ], + [ 7.6762185, 47.4935888 ], + [ 7.6763569, 47.4935425 ], + [ 7.6765542, 47.4934984 ], + [ 7.6766991, 47.4934872 ], + [ 7.6767521, 47.4934831 ], + [ 7.6768864, 47.493493 ], + [ 7.677134, 47.4935261 ], + [ 7.6773719, 47.4935248 ], + [ 7.6775394, 47.4935098 ], + [ 7.6777315999999995, 47.4934817 ], + [ 7.6779128, 47.4934786 ], + [ 7.6780178, 47.4934629 ], + [ 7.6781291, 47.4934369 ], + [ 7.6783794, 47.4933857 ], + [ 7.6785189, 47.493378 ], + [ 7.6788846, 47.4933543 ], + [ 7.6790472, 47.4933612 ], + [ 7.6792007, 47.4933791 ], + [ 7.6793669, 47.493396 ], + [ 7.6794781, 47.4934148 ], + [ 7.6795901, 47.4934447 ], + [ 7.6797146, 47.493459 ], + [ 7.6798702, 47.4934814 ], + [ 7.6799605, 47.4934756 ], + [ 7.6800485, 47.4934546 ], + [ 7.6801641, 47.4934458 ], + [ 7.6803057, 47.4934472 ], + [ 7.6804605, 47.4934577 ], + [ 7.6806095, 47.4934695 ], + [ 7.6807938, 47.493481 ], + [ 7.6809563, 47.4934959 ], + [ 7.6812305, 47.4935387 ], + [ 7.6814529, 47.4935859 ], + [ 7.6816197, 47.4936064 ], + [ 7.6817186, 47.4936251 ], + [ 7.6818376, 47.4936438 ], + [ 7.681898, 47.4936523 ], + [ 7.6820033, 47.4936672 ], + [ 7.6822305, 47.4937124 ], + [ 7.6823733, 47.4937344 ], + [ 7.6826383, 47.493771 ], + [ 7.6828775, 47.49378 ], + [ 7.6830142, 47.4938054 ], + [ 7.6837, 47.4936375 ], + [ 7.6840945, 47.4935725 ], + [ 7.684325, 47.4935209 ], + [ 7.6843725, 47.4934872 ], + [ 7.6843785, 47.493483 ], + [ 7.6844223, 47.4934519 ], + [ 7.6844952, 47.4934042 ], + [ 7.6845545, 47.4934127 ], + [ 7.6848122, 47.4933088 ], + [ 7.6848714000000005, 47.4933144 ], + [ 7.6850915, 47.493311 ], + [ 7.6850922, 47.4933155 ], + [ 7.6851082, 47.4934122 ], + [ 7.6851146, 47.4934111 ], + [ 7.6853453, 47.4933702 ], + [ 7.6857391, 47.4932432 ], + [ 7.6857327, 47.4932213 ], + [ 7.6857319, 47.4932132 ], + [ 7.6857318, 47.4932052 ], + [ 7.6857326, 47.4931971 ], + [ 7.6857343, 47.4931891 ], + [ 7.6857367, 47.4931811 ], + [ 7.68574, 47.4931734 ], + [ 7.6857441, 47.4931658 ], + [ 7.6857489999999995, 47.4931584 ], + [ 7.6857546, 47.4931512 ], + [ 7.685761, 47.4931444 ], + [ 7.6857732, 47.4931327 ], + [ 7.685786, 47.4931212 ], + [ 7.6857993, 47.49311 ], + [ 7.6858131, 47.4930992 ], + [ 7.6858275, 47.4930886 ], + [ 7.6859202, 47.493023 ], + [ 7.6861864, 47.4928427 ], + [ 7.6862945, 47.4927598 ], + [ 7.6863288, 47.4927334 ], + [ 7.6865718, 47.4925697 ], + [ 7.6866721, 47.4924934 ], + [ 7.6866746, 47.4924915 ], + [ 7.6866913, 47.4924788 ], + [ 7.6867734, 47.49245 ], + [ 7.6873007, 47.4923337 ], + [ 7.6876915, 47.4923137 ], + [ 7.6881484, 47.4924017 ], + [ 7.6888619, 47.4925575 ], + [ 7.6890487, 47.4926575 ], + [ 7.6892706, 47.4927055 ], + [ 7.6892744, 47.492709 ], + [ 7.6893964, 47.4928233 ], + [ 7.6895316000000005, 47.492811 ], + [ 7.6896177, 47.4928498 ], + [ 7.6897359, 47.4928566 ], + [ 7.6899327, 47.4928532 ], + [ 7.6901488, 47.4928687 ], + [ 7.6902117, 47.4928681 ], + [ 7.6905062, 47.4929735 ], + [ 7.6905821, 47.4930261 ], + [ 7.6907321, 47.4930973 ], + [ 7.6910351, 47.4931523 ], + [ 7.6915334, 47.4933634 ], + [ 7.6916198, 47.4933798 ], + [ 7.6916281, 47.4933809 ], + [ 7.6917454, 47.4933959 ], + [ 7.6918729, 47.4934008 ], + [ 7.6922296, 47.4934025 ], + [ 7.6923571, 47.4934109 ], + [ 7.6924816, 47.4934305 ], + [ 7.6928583, 47.4935155 ], + [ 7.6929948, 47.4935421 ], + [ 7.6930039, 47.4935435 ], + [ 7.6936364, 47.4936433 ], + [ 7.6944693, 47.4937739 ], + [ 7.6945271, 47.4935503 ], + [ 7.6945337, 47.4935179 ], + [ 7.6945504, 47.4931996 ], + [ 7.6943919, 47.4931938 ], + [ 7.6943266999999995, 47.4931914 ], + [ 7.6942665, 47.493184 ], + [ 7.6942064, 47.4931761 ], + [ 7.6941465, 47.4931678 ], + [ 7.6940867, 47.493159 ], + [ 7.6940271, 47.4931497 ], + [ 7.6939676, 47.49314 ], + [ 7.6939083, 47.4931298 ], + [ 7.6938492, 47.4931191 ], + [ 7.6938078999999995, 47.4931106 ], + [ 7.6937663, 47.4931026 ], + [ 7.6937536, 47.4931004 ], + [ 7.6937162, 47.4930939 ], + [ 7.6936826, 47.4930884 ], + [ 7.6936404, 47.4930822 ], + [ 7.693598, 47.4930766 ], + [ 7.6935554, 47.4930716 ], + [ 7.6935127, 47.4930672 ], + [ 7.6934999, 47.493065 ], + [ 7.6934677, 47.4930594 ], + [ 7.693423, 47.493051 ], + [ 7.6933784, 47.4930421 ], + [ 7.6933673, 47.4930397 ], + [ 7.6933342, 47.4930325 ], + [ 7.6932902, 47.4930223 ], + [ 7.6933887, 47.4927411 ], + [ 7.6935903, 47.492212 ], + [ 7.6935728, 47.4921948 ], + [ 7.6933194, 47.4919461 ], + [ 7.6928571, 47.4916044 ], + [ 7.6926535, 47.4913231 ], + [ 7.6924277, 47.4910952 ], + [ 7.6921004, 47.4907761 ], + [ 7.6918634, 47.4905481 ], + [ 7.691739, 47.4903885 ], + [ 7.6916035, 47.4902289 ], + [ 7.6914451, 47.4900084 ], + [ 7.6913879, 47.4897801 ], + [ 7.6913868, 47.4895592 ], + [ 7.6914534, 47.4893839 ], + [ 7.6915026, 47.489273 ], + [ 7.6915088, 47.489259 ], + [ 7.6909956, 47.4891546 ], + [ 7.6908449999999995, 47.4891075 ], + [ 7.6906448, 47.4890155 ], + [ 7.6903682, 47.4889078 ], + [ 7.6896496, 47.4886984 ], + [ 7.6888731, 47.488406 ], + [ 7.6884608, 47.4882335 ], + [ 7.688234, 47.4881136 ], + [ 7.6878092, 47.4879151 ], + [ 7.6872159, 47.4876246 ], + [ 7.6870151, 47.4875501 ], + [ 7.6866281, 47.4874371 ], + [ 7.6864683, 47.487397 ], + [ 7.6863146, 47.4873773 ], + [ 7.6861816, 47.4873886 ], + [ 7.685703, 47.4874781 ], + [ 7.6856034, 47.4874824 ], + [ 7.6854662, 47.4874612 ], + [ 7.6845299, 47.4872471 ], + [ 7.6839516, 47.4871091 ], + [ 7.6838342, 47.4870753 ], + [ 7.6837142, 47.4870193 ], + [ 7.6836011, 47.4869425 ], + [ 7.683355, 47.4867313 ], + [ 7.6832552, 47.486625 ], + [ 7.683223, 47.486575 ], + [ 7.6831904, 47.4865179 ], + [ 7.6830964, 47.4863569 ], + [ 7.6830447, 47.4862477 ], + [ 7.6830096999999995, 47.4861713 ], + [ 7.6830034, 47.4860956 ], + [ 7.6829545, 47.4860589 ], + [ 7.6826286, 47.4859781 ], + [ 7.6824273, 47.4859518 ], + [ 7.6822038, 47.4859591 ], + [ 7.6818311999999995, 47.4860228 ], + [ 7.6815136, 47.4860764 ], + [ 7.6812132, 47.4861322 ], + [ 7.6808745, 47.486188 ], + [ 7.6801482, 47.486364 ], + [ 7.6798072, 47.4864538 ], + [ 7.6794538, 47.4865391 ], + [ 7.679257, 47.486582 ], + [ 7.6790503999999995, 47.4865944 ], + [ 7.6789024999999995, 47.4865804 ], + [ 7.6785902, 47.4865389 ], + [ 7.6784783999999995, 47.4865089 ], + [ 7.6783479, 47.4864584 ], + [ 7.6782865000000005, 47.4864158 ], + [ 7.6782053999999995, 47.486267 ], + [ 7.6781952, 47.4862041 ], + [ 7.6782154, 47.4861124 ], + [ 7.6782451, 47.4859169 ], + [ 7.6782376, 47.4856429 ], + [ 7.678234, 47.4855717 ], + [ 7.6782698, 47.4854979 ], + [ 7.6783714, 47.48531 ], + [ 7.6785005, 47.4850579 ], + [ 7.6785833, 47.4849155 ], + [ 7.6787288, 47.4847201 ], + [ 7.6787572, 47.484697 ], + [ 7.6783126, 47.4848121 ], + [ 7.6778935, 47.4849028 ], + [ 7.6771287, 47.4850239 ], + [ 7.6770924, 47.4850297 ], + [ 7.6769864, 47.4850465 ], + [ 7.6765303, 47.4850038 ], + [ 7.6760644, 47.4849585 ], + [ 7.6753158, 47.4848863 ], + [ 7.6747425, 47.4848332 ], + [ 7.6741994, 47.4847804 ], + [ 7.6733339, 47.484692 ], + [ 7.6731428, 47.4846724 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns011", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Röserental", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Röserental", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Röserental", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Röserental", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5016935, 47.3902183 ], + [ 7.5019329, 47.3901298 ], + [ 7.502176, 47.3900904 ], + [ 7.5024209, 47.3900873 ], + [ 7.5025411, 47.3900845 ], + [ 7.5026524, 47.3900103 ], + [ 7.5029579, 47.3900007 ], + [ 7.5030999, 47.3899413 ], + [ 7.5033025, 47.389996 ], + [ 7.5034956, 47.3899652 ], + [ 7.5034633, 47.3899248 ], + [ 7.5032924, 47.3898043 ], + [ 7.5029506, 47.3898312 ], + [ 7.502528, 47.3898566 ], + [ 7.5023043, 47.3899192 ], + [ 7.5019647, 47.3899932 ], + [ 7.5015815, 47.3900695 ], + [ 7.5013893, 47.3901286 ], + [ 7.5014679, 47.3902543 ], + [ 7.5016935, 47.3902183 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns273", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Stürmen - Eggfels - Bännli", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Stürmen - Eggfels - Bännli", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Stürmen - Eggfels - Bännli", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Stürmen - Eggfels - Bännli", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5523458, 47.4901536 ], + [ 7.552433, 47.4901393 ], + [ 7.5523783, 47.4899866 ], + [ 7.5523488, 47.4899022 ], + [ 7.5523365, 47.4898674 ], + [ 7.5522662, 47.4896643 ], + [ 7.5522104, 47.489501 ], + [ 7.5520728, 47.4891022 ], + [ 7.5519362999999995, 47.4887062 ], + [ 7.5518681, 47.4885078 ], + [ 7.551822, 47.4883739 ], + [ 7.551803, 47.4883189 ], + [ 7.5515733, 47.4876492 ], + [ 7.5515139, 47.487671399999996 ], + [ 7.5517361, 47.488387 ], + [ 7.5519853, 47.4891161 ], + [ 7.5523458, 47.4901536 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns034", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Marbach", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Marbach", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Marbach", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Marbach", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5856798, 47.5006082 ], + [ 7.5856871, 47.5007297 ], + [ 7.5857429, 47.5011188 ], + [ 7.5858986999999996, 47.501003 ], + [ 7.5861637, 47.5008528 ], + [ 7.586792, 47.5006836 ], + [ 7.5872177, 47.5006082 ], + [ 7.5874055, 47.5004161 ], + [ 7.5856798, 47.5006082 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns038", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Buechloch-Weiher", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Buechloch-Weiher", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Buechloch-Weiher", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Buechloch-Weiher", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7036051, 47.4019187 ], + [ 7.7036269, 47.4020618 ], + [ 7.7037023, 47.4023777 ], + [ 7.7037373, 47.4024458 ], + [ 7.7038261, 47.4024884 ], + [ 7.7038581, 47.4024647 ], + [ 7.7039043, 47.4024306 ], + [ 7.7038833, 47.4024159 ], + [ 7.7038363, 47.4023512 ], + [ 7.7037786, 47.4022838 ], + [ 7.703758, 47.4022494 ], + [ 7.7037496, 47.4022288 ], + [ 7.7037451, 47.4021838 ], + [ 7.7037115, 47.4021032 ], + [ 7.7037083, 47.4020258 ], + [ 7.7037182, 47.4019562 ], + [ 7.7037444, 47.4019051 ], + [ 7.7036748, 47.4019116 ], + [ 7.7036051, 47.4019187 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns070", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Rifenstein - Horniflue", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Rifenstein - Horniflue", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Rifenstein - Horniflue", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Rifenstein - Horniflue", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5451838, 47.4951257 ], + [ 7.545215, 47.4950847 ], + [ 7.545232, 47.4950621 ], + [ 7.5452053, 47.4950566 ], + [ 7.5449965, 47.4949743 ], + [ 7.5449466, 47.4949589 ], + [ 7.544842, 47.4949541 ], + [ 7.5447682, 47.4949405 ], + [ 7.5447033, 47.4949172 ], + [ 7.5445793, 47.4948891 ], + [ 7.5442919, 47.4948613 ], + [ 7.5441214, 47.4947685 ], + [ 7.5440249999999995, 47.494741 ], + [ 7.5438288, 47.4946795 ], + [ 7.5437387000000005, 47.4946356 ], + [ 7.543346, 47.4945418 ], + [ 7.5432053, 47.4945053 ], + [ 7.5430801, 47.4944701 ], + [ 7.5429843, 47.4944265 ], + [ 7.5428055, 47.4943678 ], + [ 7.5426508, 47.494349 ], + [ 7.5423327, 47.4942604 ], + [ 7.5421299, 47.4942644 ], + [ 7.5419713, 47.4942321 ], + [ 7.5414905, 47.4941476 ], + [ 7.541448, 47.4941167 ], + [ 7.5411683, 47.4940646 ], + [ 7.5411529999999996, 47.4940963 ], + [ 7.5411428, 47.4941193 ], + [ 7.5411421, 47.4941225 ], + [ 7.5411418999999995, 47.4941257 ], + [ 7.5411421, 47.4941289 ], + [ 7.5411427, 47.4941321 ], + [ 7.5411438, 47.4941353 ], + [ 7.5411452, 47.4941383 ], + [ 7.541147, 47.4941413 ], + [ 7.5411491, 47.4941442 ], + [ 7.5411516, 47.494147 ], + [ 7.5411543, 47.4941496 ], + [ 7.5411608999999995, 47.4941537 ], + [ 7.5411671, 47.4941596 ], + [ 7.5418216000000005, 47.4942752 ], + [ 7.5427438, 47.4944297 ], + [ 7.543641, 47.4946799 ], + [ 7.5442492, 47.4949213 ], + [ 7.5451838, 47.4951257 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns151", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Schlifbach - Grossmattbach", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Schlifbach - Grossmattbach", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Schlifbach - Grossmattbach", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Schlifbach - Grossmattbach", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5341895999999995, 47.4955159 ], + [ 7.5342016, 47.4955446 ], + [ 7.5343489, 47.4955381 ], + [ 7.5344535, 47.4954523 ], + [ 7.5345726, 47.4953982 ], + [ 7.5347715, 47.4954025 ], + [ 7.5348535, 47.4953914 ], + [ 7.5349808, 47.4954562 ], + [ 7.5351902, 47.4954739 ], + [ 7.5354352, 47.4954335 ], + [ 7.5356636, 47.495361 ], + [ 7.5359388, 47.4953313 ], + [ 7.536121, 47.4953068 ], + [ 7.5365545, 47.4951817 ], + [ 7.5368093, 47.4951807 ], + [ 7.5368964, 47.4951436 ], + [ 7.5371453, 47.4950812 ], + [ 7.5372223, 47.4950182 ], + [ 7.5373204, 47.4950148 ], + [ 7.5374919, 47.4950934 ], + [ 7.5378977, 47.4951179 ], + [ 7.5380033, 47.4951109 ], + [ 7.5381778, 47.495134 ], + [ 7.5382954, 47.4952582 ], + [ 7.5383827, 47.4952959 ], + [ 7.5386703, 47.4954315 ], + [ 7.5390323, 47.4954083 ], + [ 7.5393901, 47.4954304 ], + [ 7.5395885, 47.4954414 ], + [ 7.539731, 47.4954312 ], + [ 7.5400808, 47.4954561 ], + [ 7.5401802, 47.4954592 ], + [ 7.5404617, 47.4954908 ], + [ 7.5405842, 47.4955244 ], + [ 7.5405879, 47.4955085 ], + [ 7.5405964, 47.4954807 ], + [ 7.5406093, 47.4954343 ], + [ 7.5405325, 47.4954114 ], + [ 7.5401763, 47.4953575 ], + [ 7.5396955, 47.4952994 ], + [ 7.5395875, 47.4953379 ], + [ 7.5394813, 47.4953118 ], + [ 7.5392928, 47.4952896 ], + [ 7.5390198, 47.4953141 ], + [ 7.5387147, 47.4953193 ], + [ 7.5383993, 47.4951828 ], + [ 7.5382653, 47.4950632 ], + [ 7.5380143, 47.495005 ], + [ 7.5378834, 47.4950082 ], + [ 7.5375584, 47.4950031 ], + [ 7.5374726, 47.4949789 ], + [ 7.5374771, 47.4949611 ], + [ 7.5373276, 47.4949281 ], + [ 7.5371653, 47.4949512 ], + [ 7.537073, 47.495012 ], + [ 7.5368285, 47.4950621 ], + [ 7.5367826, 47.4950946 ], + [ 7.5365242, 47.495074 ], + [ 7.5360843, 47.4952091 ], + [ 7.5356499, 47.4952918 ], + [ 7.5353846, 47.4953497 ], + [ 7.5351748, 47.4953719 ], + [ 7.5350321000000005, 47.4953728 ], + [ 7.5348637, 47.4953097 ], + [ 7.5347536, 47.4953301 ], + [ 7.5345424, 47.4953154 ], + [ 7.5343861, 47.4953819 ], + [ 7.5342734, 47.4954329 ], + [ 7.5341626999999995, 47.4954517 ], + [ 7.5341778, 47.4954878 ], + [ 7.5341895999999995, 47.4955159 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns162", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Schlifbach - Grossmattbach", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Schlifbach - Grossmattbach", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Schlifbach - Grossmattbach", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Schlifbach - Grossmattbach", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5660407, 47.4386246 ], + [ 7.5660609999999995, 47.4386194 ], + [ 7.5663979999999995, 47.4385397 ], + [ 7.5666454, 47.4384953 ], + [ 7.5668982, 47.4384419 ], + [ 7.5670256, 47.4384143 ], + [ 7.5674237, 47.4380284 ], + [ 7.5676827, 47.4378306 ], + [ 7.5680053, 47.4376203 ], + [ 7.5681412, 47.4375852 ], + [ 7.5684346, 47.4374412 ], + [ 7.5686057, 47.4372812 ], + [ 7.5686065, 47.4372724 ], + [ 7.5686082, 47.4372636 ], + [ 7.5686107, 47.4372549 ], + [ 7.5686141, 47.4372463 ], + [ 7.5686183, 47.4372379 ], + [ 7.5686232, 47.4372297 ], + [ 7.568628, 47.4372196 ], + [ 7.5686332, 47.4372096 ], + [ 7.5686391, 47.4371997 ], + [ 7.5686455, 47.4371901 ], + [ 7.5686525, 47.4371805 ], + [ 7.5687753, 47.4370508 ], + [ 7.5688859, 47.4369046 ], + [ 7.5688855, 47.4368776 ], + [ 7.5688525, 47.4368434 ], + [ 7.5686145, 47.4367352 ], + [ 7.5685643, 47.4366838 ], + [ 7.5685395, 47.436621 ], + [ 7.5685407, 47.4365639 ], + [ 7.5685692, 47.4365011 ], + [ 7.5686085, 47.4364439 ], + [ 7.5686288, 47.4364056 ], + [ 7.5685332, 47.4363852 ], + [ 7.5683173, 47.4363391 ], + [ 7.5686495, 47.4359532 ], + [ 7.5688617, 47.4354715 ], + [ 7.5688821, 47.4353683 ], + [ 7.5689523, 47.4352298 ], + [ 7.5689579, 47.435191 ], + [ 7.5689846, 47.4351463 ], + [ 7.569008, 47.4350664 ], + [ 7.569009, 47.4350108 ], + [ 7.5690456, 47.4348931 ], + [ 7.5690264, 47.434846 ], + [ 7.569062, 47.4347493 ], + [ 7.5690753, 47.434677 ], + [ 7.5691231, 47.4345364 ], + [ 7.569123, 47.4344649 ], + [ 7.5690562, 47.4343341 ], + [ 7.5690723, 47.4342734 ], + [ 7.5691439, 47.4342423 ], + [ 7.5691425, 47.4342393 ], + [ 7.5691333, 47.4342149 ], + [ 7.569132, 47.4342119 ], + [ 7.5691116, 47.4341645 ], + [ 7.5689333, 47.4342518 ], + [ 7.5688357, 47.4342344 ], + [ 7.5687551, 47.4341929 ], + [ 7.5686518, 47.4341184 ], + [ 7.5686337, 47.4340804 ], + [ 7.5685553, 47.4340054 ], + [ 7.5685215, 47.4339354 ], + [ 7.5684844, 47.4338966 ], + [ 7.5684293, 47.4338373 ], + [ 7.5683798, 47.4337646 ], + [ 7.5683539, 47.433688599999996 ], + [ 7.5683615, 47.4335889 ], + [ 7.5683485, 47.4333928 ], + [ 7.5683853, 47.4332552 ], + [ 7.5684677, 47.4330539 ], + [ 7.5685337, 47.4329625 ], + [ 7.5685783, 47.4329185 ], + [ 7.5685882, 47.432847 ], + [ 7.56871, 47.4326802 ], + [ 7.5687935, 47.4325115 ], + [ 7.5687832, 47.4324626 ], + [ 7.5687663, 47.432343 ], + [ 7.5687508, 47.4322745 ], + [ 7.5687549, 47.4321945 ], + [ 7.5687758, 47.4321374 ], + [ 7.5688497, 47.4320231 ], + [ 7.5689609, 47.431903 ], + [ 7.5690408, 47.431783 ], + [ 7.5691220999999995, 47.4315944 ], + [ 7.569137, 47.4314973 ], + [ 7.5691108, 47.4314117 ], + [ 7.5690931, 47.4312803 ], + [ 7.5690524, 47.4311262 ], + [ 7.5690574, 47.4310862 ], + [ 7.5690809, 47.4310405 ], + [ 7.5691137, 47.430949 ], + [ 7.5690949, 47.4308862 ], + [ 7.5691029, 47.4308462 ], + [ 7.5690887, 47.4307435 ], + [ 7.5691109, 47.4306749 ], + [ 7.5691793, 47.4305834 ], + [ 7.56916, 47.4304007 ], + [ 7.5690143, 47.4300239 ], + [ 7.5689781, 47.4298469 ], + [ 7.5689424, 47.4294529 ], + [ 7.5689116, 47.4293558 ], + [ 7.5687151, 47.4289791 ], + [ 7.5686273, 47.4288364 ], + [ 7.5685698, 47.428648 ], + [ 7.5685597, 47.4285738 ], + [ 7.5684269, 47.4283283 ], + [ 7.5683804, 47.4282884 ], + [ 7.5683426, 47.4282085 ], + [ 7.5683385, 47.4278829 ], + [ 7.5683567, 47.4274831 ], + [ 7.5683436, 47.4273975 ], + [ 7.5683218, 47.4273118 ], + [ 7.5681973, 47.4269978 ], + [ 7.5681314, 47.4269065 ], + [ 7.5680599, 47.4267924 ], + [ 7.5679265000000004, 47.4266212 ], + [ 7.5677986, 47.4265414 ], + [ 7.5677325, 47.4264672 ], + [ 7.5676317, 47.4263017 ], + [ 7.5675103, 47.4260734 ], + [ 7.5674834, 47.425992 ], + [ 7.5674786, 47.4259775 ], + [ 7.5674688, 47.4259478 ], + [ 7.5674703999999995, 47.4258564 ], + [ 7.5675368, 47.4256964 ], + [ 7.5677178, 47.4254392 ], + [ 7.5677984, 47.4253077 ], + [ 7.5678113, 47.4251992 ], + [ 7.5677972, 47.4250907 ], + [ 7.5677324, 47.4249594 ], + [ 7.5677326, 47.4248909 ], + [ 7.5677366, 47.4248737 ], + [ 7.5677631, 47.4248223 ], + [ 7.5677822, 47.4247994 ], + [ 7.5678716, 47.4247251 ], + [ 7.5680004, 47.4245936 ], + [ 7.5680795, 47.4245021 ], + [ 7.5681585, 47.4243935 ], + [ 7.5681874, 47.4243421 ], + [ 7.5682504, 47.4242107 ], + [ 7.5682723, 47.4241364 ], + [ 7.5682554, 47.4239479 ], + [ 7.5682558, 47.4238623 ], + [ 7.5682621999999995, 47.4237937 ], + [ 7.5682895, 47.4236909 ], + [ 7.5683363, 47.4235595 ], + [ 7.5683565999999995, 47.4235138 ], + [ 7.5683807, 47.4234852 ], + [ 7.5684556, 47.423428 ], + [ 7.5684823, 47.4234051 ], + [ 7.5685088, 47.4233537 ], + [ 7.5685107, 47.4232851 ], + [ 7.5684918, 47.423228 ], + [ 7.5684428, 47.4231139 ], + [ 7.5683509, 47.4229598 ], + [ 7.5682983, 47.4229027 ], + [ 7.5682463, 47.4228571 ], + [ 7.5681992000000005, 47.4227886 ], + [ 7.5681855, 47.4225601 ], + [ 7.5681913, 47.4224916 ], + [ 7.5682323, 47.422383 ], + [ 7.568286, 47.4222973 ], + [ 7.5683573, 47.422222 ], + [ 7.5684342000000004, 47.4221715 ], + [ 7.5685415, 47.4221199 ], + [ 7.5686406999999996, 47.4221113 ], + [ 7.5687339, 47.4221483 ], + [ 7.5688473, 47.4221825 ], + [ 7.5689252, 47.4221424 ], + [ 7.5690347, 47.4220509 ], + [ 7.5690969, 47.4219823 ], + [ 7.5691635, 47.4219194 ], + [ 7.5691851, 47.4218622 ], + [ 7.569182, 47.421788 ], + [ 7.5691562, 47.4216909 ], + [ 7.5691395, 47.4216453 ], + [ 7.5691438, 47.421611 ], + [ 7.5691557, 47.4215824 ], + [ 7.5691568, 47.4215596 ], + [ 7.5691728, 47.4215139 ], + [ 7.5692984, 47.4213424 ], + [ 7.5693329, 47.4213024 ], + [ 7.5693653, 47.4212566 ], + [ 7.5693844, 47.4212224 ], + [ 7.569418, 47.4211595 ], + [ 7.5694144, 47.4210458 ], + [ 7.5693927, 47.4209748 ], + [ 7.5693925, 47.4209725 ], + [ 7.5693895, 47.4209316 ], + [ 7.5693893, 47.4209288 ], + [ 7.5694155, 47.4208142 ], + [ 7.5694704999999995, 47.4207489 ], + [ 7.5699906, 47.420571 ], + [ 7.5703420999999995, 47.4203792 ], + [ 7.5704988, 47.4201736 ], + [ 7.5706603999999995, 47.4200154 ], + [ 7.5707550999999995, 47.4199271 ], + [ 7.5708431, 47.4198341 ], + [ 7.5711362, 47.4196261 ], + [ 7.57141, 47.4194829 ], + [ 7.5714971, 47.419393 ], + [ 7.5716742, 47.4193297 ], + [ 7.5718489, 47.4192962 ], + [ 7.5720428, 47.4192742 ], + [ 7.5724262, 47.4191687 ], + [ 7.5725469, 47.4191538 ], + [ 7.5726972, 47.419162299999996 ], + [ 7.5728416, 47.4191993 ], + [ 7.572986, 47.4192962 ], + [ 7.5731373, 47.4194172 ], + [ 7.5732520999999995, 47.4194677 ], + [ 7.5734019, 47.4194825 ], + [ 7.5739511, 47.4194984 ], + [ 7.5741716, 47.4194951 ], + [ 7.574372, 47.4194784 ], + [ 7.5744891, 47.419436 ], + [ 7.574643, 47.4193569 ], + [ 7.575354, 47.4190759 ], + [ 7.5756631, 47.4189802 ], + [ 7.5757956, 47.4189175 ], + [ 7.5759056000000005, 47.4188395 ], + [ 7.5758773999999995, 47.4188109 ], + [ 7.5757854, 47.4187175 ], + [ 7.5758195, 47.4185861 ], + [ 7.575837, 47.4185233 ], + [ 7.575888, 47.4185197 ], + [ 7.5760456, 47.4185639 ], + [ 7.57609, 47.4185321 ], + [ 7.5761237, 47.4185531 ], + [ 7.5761864, 47.4185922 ], + [ 7.5762345, 47.4185636 ], + [ 7.5764511, 47.4184275 ], + [ 7.5768493, 47.4182333 ], + [ 7.5771043, 47.4180703 ], + [ 7.577145, 47.4180161 ], + [ 7.5773707, 47.4179652 ], + [ 7.5776377, 47.4177988 ], + [ 7.578017, 47.4176985 ], + [ 7.5781228, 47.4176811 ], + [ 7.5783671, 47.417608 ], + [ 7.5784212, 47.4175851 ], + [ 7.5786616, 47.417411 ], + [ 7.5787603, 47.4173193 ], + [ 7.5788306, 47.4173074 ], + [ 7.5789452, 47.4172066 ], + [ 7.5789909, 47.4171583 ], + [ 7.5790299, 47.4171056 ], + [ 7.5790337, 47.4170493 ], + [ 7.5790389000000005, 47.4169333 ], + [ 7.5791007, 47.4166699 ], + [ 7.5791466, 47.41661 ], + [ 7.5792076999999995, 47.416572 ], + [ 7.5792478, 47.4165397 ], + [ 7.5792751, 47.4165079 ], + [ 7.5793288, 47.416337 ], + [ 7.5793779, 47.4162815 ], + [ 7.5793983, 47.4161273 ], + [ 7.5795019, 47.4159589 ], + [ 7.5796632, 47.4158501 ], + [ 7.5797325, 47.415798 ], + [ 7.5798068, 47.4157293 ], + [ 7.5798711, 47.4156738 ], + [ 7.5799717, 47.4156039 ], + [ 7.5800165, 47.415555 ], + [ 7.5800716, 47.4154727 ], + [ 7.5801438999999995, 47.4154027 ], + [ 7.5802088, 47.4153476 ], + [ 7.5803586, 47.4152013 ], + [ 7.5803731, 47.415159 ], + [ 7.580353, 47.4150893 ], + [ 7.5803674999999995, 47.4150192 ], + [ 7.5803944, 47.4149786 ], + [ 7.5804853, 47.4149404 ], + [ 7.5805793, 47.4149247 ], + [ 7.5806325999999995, 47.4149014 ], + [ 7.5806989, 47.4148274 ], + [ 7.5807158999999995, 47.4148 ], + [ 7.5807333, 47.4147516 ], + [ 7.5807476, 47.4147076 ], + [ 7.5806657, 47.4146882 ], + [ 7.5798548, 47.4145743 ], + [ 7.5796694, 47.4145487 ], + [ 7.5782217, 47.4143387 ], + [ 7.5776612, 47.414877 ], + [ 7.5775667, 47.4149557 ], + [ 7.5773358, 47.4151559 ], + [ 7.5771158, 47.4154774 ], + [ 7.577079, 47.4155071 ], + [ 7.5769479, 47.4156132 ], + [ 7.5766853, 47.4157778 ], + [ 7.5763282, 47.4159781 ], + [ 7.575908, 47.4161856 ], + [ 7.5754774000000005, 47.4164289 ], + [ 7.5753726, 47.4165718 ], + [ 7.57531, 47.4167789 ], + [ 7.5752263, 47.4169289 ], + [ 7.5747853, 47.417265 ], + [ 7.5742603, 47.4176011 ], + [ 7.5735876, 47.4177947 ], + [ 7.5733303, 47.4178195 ], + [ 7.5732203, 47.4177873 ], + [ 7.5731129, 47.4177588 ], + [ 7.5730046, 47.4177348 ], + [ 7.5729459, 47.4177092 ], + [ 7.5728869, 47.417676 ], + [ 7.5728221, 47.4176278 ], + [ 7.5727754, 47.4175908 ], + [ 7.5726857, 47.4175055 ], + [ 7.5725831, 47.4174117 ], + [ 7.5725507, 47.4173864 ], + [ 7.5725095, 47.4173745 ], + [ 7.5724789999999995, 47.4173664 ], + [ 7.5724378, 47.4173664 ], + [ 7.572369, 47.4173714 ], + [ 7.572189, 47.4174308 ], + [ 7.5720759, 47.4174702 ], + [ 7.5719494, 47.4175141 ], + [ 7.5718298, 47.4175634 ], + [ 7.5717237, 47.417628 ], + [ 7.5716194, 47.4176953 ], + [ 7.571459, 47.4177551 ], + [ 7.5713137, 47.4177916 ], + [ 7.571115, 47.4178345 ], + [ 7.571053, 47.4178436 ], + [ 7.5709551, 47.4178596 ], + [ 7.5708798999999996, 47.4178797 ], + [ 7.5708365, 47.4179144 ], + [ 7.5707624, 47.4179656 ], + [ 7.5706706, 47.4180232 ], + [ 7.5706050000000005, 47.4180552 ], + [ 7.570522, 47.4180977 ], + [ 7.5704704, 47.4181202 ], + [ 7.5704168, 47.4181396 ], + [ 7.5703723, 47.4181553 ], + [ 7.570315, 47.4181697 ], + [ 7.5702675, 47.4181775 ], + [ 7.5698561, 47.4188127 ], + [ 7.569405, 47.419313 ], + [ 7.5688282000000005, 47.4200204 ], + [ 7.5686855, 47.4203598 ], + [ 7.5682955, 47.4207595 ], + [ 7.5682742, 47.4207903 ], + [ 7.5675215, 47.4214946 ], + [ 7.5675552, 47.4215145 ], + [ 7.567586, 47.4215364 ], + [ 7.5676139, 47.4215601 ], + [ 7.5676384, 47.4215854 ], + [ 7.5676594, 47.4216121 ], + [ 7.5676767, 47.4216401 ], + [ 7.5676901999999995, 47.4216689 ], + [ 7.5676997, 47.4216985 ], + [ 7.5677159, 47.4217626 ], + [ 7.5677287, 47.4218677 ], + [ 7.5677396, 47.4220914 ], + [ 7.5677503999999995, 47.4222149 ], + [ 7.5677705, 47.4223524 ], + [ 7.5677932, 47.4224709 ], + [ 7.5678186, 47.4226791 ], + [ 7.5678358, 47.4227877 ], + [ 7.5676627, 47.4228004 ], + [ 7.5673404, 47.4228034 ], + [ 7.5674254, 47.4228348 ], + [ 7.567573, 47.4229703 ], + [ 7.5676891, 47.4231344 ], + [ 7.5676791, 47.4233414 ], + [ 7.5676269, 47.4234985 ], + [ 7.5676046, 47.4235406 ], + [ 7.5677086, 47.4236478 ], + [ 7.5677433, 47.4237177 ], + [ 7.5677515, 47.4237359 ], + [ 7.5677491, 47.4238441 ], + [ 7.5677274, 47.4239209 ], + [ 7.5676988, 47.4240221 ], + [ 7.5676323, 47.424149 ], + [ 7.5675736, 47.4242587 ], + [ 7.5674672, 47.4244313 ], + [ 7.5674529, 47.4244563 ], + [ 7.5674012, 47.4245471 ], + [ 7.5672574, 47.4247994 ], + [ 7.5671816, 47.4249536 ], + [ 7.5671549, 47.4249979 ], + [ 7.5670992, 47.4250811 ], + [ 7.5670705, 47.4251239 ], + [ 7.5670307999999995, 47.4251831 ], + [ 7.566967, 47.4253505 ], + [ 7.5669468, 47.4254035 ], + [ 7.5669274, 47.4254545 ], + [ 7.5668692, 47.4256431 ], + [ 7.5668463, 47.4257176 ], + [ 7.5667401, 47.426116 ], + [ 7.5665932, 47.4264039 ], + [ 7.5664448, 47.426592 ], + [ 7.5660952, 47.4268846 ], + [ 7.5655528, 47.4271099 ], + [ 7.5651024, 47.4272506 ], + [ 7.5648756, 47.4272869 ], + [ 7.5646282, 47.4273092 ], + [ 7.5648064, 47.427471 ], + [ 7.5651328, 47.4275635 ], + [ 7.5655581, 47.4276032 ], + [ 7.5657127, 47.4280911 ], + [ 7.5657557, 47.4284909 ], + [ 7.5657564, 47.4288031 ], + [ 7.5657568, 47.4289406 ], + [ 7.5657683, 47.4293904 ], + [ 7.5657369, 47.4294618 ], + [ 7.5654857, 47.4299904 ], + [ 7.5656018, 47.4301402 ], + [ 7.5656232, 47.4303186 ], + [ 7.5657393, 47.4304684 ], + [ 7.5659395, 47.4305967 ], + [ 7.5661189, 47.4308036 ], + [ 7.5663021, 47.4310577 ], + [ 7.5662941, 47.4310558 ], + [ 7.5663124, 47.4310818 ], + [ 7.5664109, 47.4312244 ], + [ 7.5665445, 47.4313433 ], + [ 7.5667623, 47.4315049 ], + [ 7.56691, 47.4316522 ], + [ 7.5668758, 47.432014 ], + [ 7.5668413999999995, 47.4323282 ], + [ 7.5667442, 47.4327138 ], + [ 7.566675, 47.4331327 ], + [ 7.5667669, 47.4334182 ], + [ 7.5669077, 47.4336607 ], + [ 7.5670277, 47.4339747 ], + [ 7.5671267, 47.4342935 ], + [ 7.5671698, 47.4347075 ], + [ 7.5670655, 47.4351027 ], + [ 7.5670104, 47.4355311 ], + [ 7.5668357, 47.4358216 ], + [ 7.5665002, 47.4363265 ], + [ 7.5661715, 47.4367457 ], + [ 7.5659691, 47.4370878 ], + [ 7.5671105, 47.4373311 ], + [ 7.5671524, 47.4373282 ], + [ 7.5671587, 47.4373272 ], + [ 7.5671809, 47.437335 ], + [ 7.5671836, 47.4373436 ], + [ 7.5671841, 47.4373555 ], + [ 7.56722, 47.437383 ], + [ 7.5672184, 47.4374712 ], + [ 7.5671842, 47.4375587 ], + [ 7.5671506, 47.4376083 ], + [ 7.5671066, 47.4376708 ], + [ 7.5670031, 47.4378202 ], + [ 7.5668617000000005, 47.437971 ], + [ 7.5667544, 47.4380377 ], + [ 7.5664521, 47.4382265 ], + [ 7.5663073, 47.4383382 ], + [ 7.5661728, 47.4384511 ], + [ 7.5660969, 47.4384933 ], + [ 7.5660426, 47.4385996 ], + [ 7.5660407, 47.4386246 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns349", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Chaltbrunnental - Birsmatte", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Chaltbrunnental - Birsmatte", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Chaltbrunnental - Birsmatte", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Chaltbrunnental - Birsmatte", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8458011, 47.4246681 ], + [ 7.8458228, 47.4248205 ], + [ 7.8458796, 47.425114 ], + [ 7.8458815, 47.4251239 ], + [ 7.8459739, 47.4253888 ], + [ 7.8459042, 47.4258401 ], + [ 7.8459014, 47.4258587 ], + [ 7.8458713, 47.4260536 ], + [ 7.8458575, 47.426143 ], + [ 7.8464651, 47.4261125 ], + [ 7.8468664, 47.4260999 ], + [ 7.8469274, 47.426087 ], + [ 7.8470323, 47.426326 ], + [ 7.847117, 47.4265878 ], + [ 7.847232, 47.426898 ], + [ 7.8472299, 47.4271416 ], + [ 7.8468213, 47.4275571 ], + [ 7.8467244, 47.4277841 ], + [ 7.8466427, 47.4282064 ], + [ 7.8466874, 47.4285683 ], + [ 7.8465464, 47.4291646 ], + [ 7.8464562, 47.4295509 ], + [ 7.8463531, 47.4299192 ], + [ 7.8463418, 47.4299578 ], + [ 7.846362, 47.4301205 ], + [ 7.8465824, 47.4304732 ], + [ 7.8467057, 47.4304559 ], + [ 7.8467869, 47.4304326 ], + [ 7.8467717, 47.4303624 ], + [ 7.8467511, 47.4302667 ], + [ 7.8467846, 47.4301993 ], + [ 7.8467405, 47.430145 ], + [ 7.8468001, 47.4300579 ], + [ 7.8468661, 47.4300328 ], + [ 7.8468843, 47.4299843 ], + [ 7.8470359, 47.4298935 ], + [ 7.8471405999999995, 47.4298527 ], + [ 7.8471162, 47.4295883 ], + [ 7.8471198, 47.4295879 ], + [ 7.8471234, 47.4295875 ], + [ 7.8471277, 47.4295381 ], + [ 7.8472361, 47.4290767 ], + [ 7.8471131, 47.429073 ], + [ 7.8470449, 47.4289305 ], + [ 7.8470013, 47.4287741 ], + [ 7.8469537, 47.4284785 ], + [ 7.8469397999999995, 47.428333 ], + [ 7.8469116, 47.4283296 ], + [ 7.8468231, 47.4280134 ], + [ 7.8469885, 47.4276644 ], + [ 7.84704, 47.4275557 ], + [ 7.8471312, 47.4274799 ], + [ 7.8472290000000005, 47.4273508 ], + [ 7.847239, 47.4273376 ], + [ 7.8472392, 47.4273373 ], + [ 7.8472392, 47.4273363 ], + [ 7.8472335, 47.427218 ], + [ 7.8472333, 47.4272133 ], + [ 7.847247, 47.427152 ], + [ 7.8472735, 47.4271005 ], + [ 7.8473609, 47.4269901 ], + [ 7.847378, 47.4268464 ], + [ 7.8473588, 47.4268289 ], + [ 7.8472751, 47.4267521 ], + [ 7.8472857, 47.4266882 ], + [ 7.8472207, 47.4265658 ], + [ 7.8470242, 47.4260293 ], + [ 7.8468712, 47.4260431 ], + [ 7.8468736, 47.4260147 ], + [ 7.846876, 47.4259863 ], + [ 7.8469484, 47.4259407 ], + [ 7.8470285, 47.4258904 ], + [ 7.8471753, 47.4257981 ], + [ 7.8471732, 47.425781 ], + [ 7.8471722, 47.4257729 ], + [ 7.8471667, 47.4257264 ], + [ 7.8473045, 47.4256975 ], + [ 7.8473023, 47.4256842 ], + [ 7.8470245, 47.4256357 ], + [ 7.847069, 47.4253548 ], + [ 7.8470611, 47.4253325 ], + [ 7.8470127, 47.4251974 ], + [ 7.8470238, 47.425151 ], + [ 7.8470752, 47.4250601 ], + [ 7.8471202, 47.4249863 ], + [ 7.8471352, 47.4248873 ], + [ 7.8472287, 47.4249086 ], + [ 7.8472453, 47.4248942 ], + [ 7.8472624, 47.4248767 ], + [ 7.8472733, 47.4248656 ], + [ 7.8473078, 47.4248304 ], + [ 7.8471975, 47.4247828 ], + [ 7.8469379, 47.4247389 ], + [ 7.8468844, 47.4247365 ], + [ 7.8468061, 47.4247129 ], + [ 7.8467824, 47.4245362 ], + [ 7.8467265, 47.4245423 ], + [ 7.8467427999999995, 47.4245007 ], + [ 7.8468298, 47.4242787 ], + [ 7.8467012, 47.4241577 ], + [ 7.8465499, 47.4239343 ], + [ 7.8465488, 47.4239322 ], + [ 7.8465021, 47.4238468 ], + [ 7.8464909, 47.4238263 ], + [ 7.8464706, 47.4238316 ], + [ 7.8464609, 47.4238146 ], + [ 7.8464827, 47.4238089 ], + [ 7.8463825, 47.4236915 ], + [ 7.8461885, 47.4235834 ], + [ 7.8461808, 47.4235286 ], + [ 7.8461688, 47.4233876 ], + [ 7.8461586, 47.4232681 ], + [ 7.8461414, 47.4231632 ], + [ 7.8461389, 47.4231544 ], + [ 7.8461124, 47.4230584 ], + [ 7.8461791, 47.4228537 ], + [ 7.8462776, 47.4226459 ], + [ 7.8463633999999995, 47.4225254 ], + [ 7.8463633, 47.4225212 ], + [ 7.8463562, 47.4222888 ], + [ 7.8463307, 47.4221872 ], + [ 7.8463081, 47.4220972 ], + [ 7.8461939, 47.4219251 ], + [ 7.8461894999999995, 47.4219016 ], + [ 7.8461572, 47.4217273 ], + [ 7.8457019, 47.4218174 ], + [ 7.8456126, 47.4218351 ], + [ 7.8451905, 47.4219176 ], + [ 7.8451805, 47.4219196 ], + [ 7.8453647, 47.4222025 ], + [ 7.8455778, 47.422511 ], + [ 7.8457246, 47.4228874 ], + [ 7.8458873, 47.4232835 ], + [ 7.846031, 47.423595 ], + [ 7.8459587, 47.4236038 ], + [ 7.8460763, 47.4238043 ], + [ 7.8460988, 47.4239852 ], + [ 7.8460614, 47.4242781 ], + [ 7.8460102, 47.4244007 ], + [ 7.845896, 47.4245003 ], + [ 7.8458011, 47.4246681 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr097", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Neuweg", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Neuweg", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Neuweg", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Neuweg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.681846, 46.5457352 ], + [ 6.6817896999999995, 46.5433808 ], + [ 6.6815548, 46.5410316 ], + [ 6.6811421, 46.5386941 ], + [ 6.6805528, 46.5363747 ], + [ 6.6797884, 46.5340798 ], + [ 6.6788511, 46.5318156 ], + [ 6.6777434, 46.5295884 ], + [ 6.6764685, 46.5274042 ], + [ 6.6750298, 46.525269 ], + [ 6.6734314, 46.5231887 ], + [ 6.6716774999999995, 46.521169 ], + [ 6.669773, 46.5192154 ], + [ 6.6677231, 46.5173332 ], + [ 6.6655335000000004, 46.5155277 ], + [ 6.6632102, 46.5138036 ], + [ 6.6607595, 46.5121658 ], + [ 6.6581881, 46.5106188 ], + [ 6.6555031, 46.5091667 ], + [ 6.6527119, 46.5078136 ], + [ 6.6498221, 46.5065631 ], + [ 6.6468416, 46.5054187 ], + [ 6.6437786, 46.5043834 ], + [ 6.6406414, 46.5034602 ], + [ 6.6374386, 46.5026515 ], + [ 6.634179, 46.5019596 ], + [ 6.6308715, 46.5013864 ], + [ 6.6275251, 46.5009334 ], + [ 6.624149, 46.5006018 ], + [ 6.6207525, 46.5003926 ], + [ 6.6173448, 46.5003063 ], + [ 6.6139352, 46.5003432 ], + [ 6.6105331, 46.5005032 ], + [ 6.6071477, 46.5007858 ], + [ 6.6037883, 46.5011902 ], + [ 6.6004642, 46.5017155 ], + [ 6.5971843, 46.50236 ], + [ 6.5939575999999995, 46.5031221 ], + [ 6.5907931, 46.5039997 ], + [ 6.5876993, 46.5049903 ], + [ 6.5846847, 46.5060913 ], + [ 6.5817575999999995, 46.5072997 ], + [ 6.5789259, 46.5086121 ], + [ 6.5761974, 46.510025 ], + [ 6.5735797, 46.5115345 ], + [ 6.5710798, 46.5131364 ], + [ 6.5687046, 46.5148264 ], + [ 6.5664606, 46.5165998 ], + [ 6.5643541, 46.5184519 ], + [ 6.5623906, 46.5203775 ], + [ 6.5605757, 46.5223714 ], + [ 6.5589144, 46.5244281 ], + [ 6.5574110999999995, 46.5265419 ], + [ 6.5560701, 46.5287072 ], + [ 6.554895, 46.5309179 ], + [ 6.5538891, 46.533168 ], + [ 6.5530551, 46.5354513 ], + [ 6.5523953, 46.5377617 ], + [ 6.5519117, 46.5400927 ], + [ 6.5516054, 46.5424379 ], + [ 6.5514774, 46.544791000000004 ], + [ 6.5515281, 46.5471456 ], + [ 6.5517574, 46.549495 ], + [ 6.5521645, 46.551833 ], + [ 6.5527485, 46.554153 ], + [ 6.5535078, 46.5564488 ], + [ 6.5544402999999996, 46.558714 ], + [ 6.5555435, 46.5609424 ], + [ 6.5568143, 46.563128 ], + [ 6.5582493, 46.5652646 ], + [ 6.5598446, 46.5673465 ], + [ 6.5615958, 46.5693679 ], + [ 6.5634982, 46.5713234 ], + [ 6.5655465, 46.5732074 ], + [ 6.5677351, 46.5750149 ], + [ 6.5700579999999995, 46.5767409 ], + [ 6.5725089, 46.5783806 ], + [ 6.575081, 46.5799296 ], + [ 6.5777673, 46.5813836 ], + [ 6.5805603999999995, 46.5827385 ], + [ 6.5834527, 46.5839908 ], + [ 6.5864362, 46.5851369 ], + [ 6.5895027, 46.5861736 ], + [ 6.5926439, 46.5870983 ], + [ 6.595851, 46.5879082 ], + [ 6.5991153, 46.5886012 ], + [ 6.6024278, 46.5891754 ], + [ 6.6057794, 46.5896291 ], + [ 6.6091609, 46.5899612 ], + [ 6.612563, 46.5901708 ], + [ 6.6159764, 46.590257199999996 ], + [ 6.6193916, 46.5902203 ], + [ 6.6227994, 46.59006 ], + [ 6.6261903, 46.589777 ], + [ 6.629555, 46.5893718 ], + [ 6.6328843, 46.5888458 ], + [ 6.636169, 46.5882002 ], + [ 6.6394001, 46.5874369 ], + [ 6.6425687, 46.586558 ], + [ 6.6456662, 46.5855658 ], + [ 6.648684, 46.5844632 ], + [ 6.6516138, 46.5832531 ], + [ 6.6544476, 46.5819389 ], + [ 6.6571776, 46.5805242 ], + [ 6.6597964, 46.5790128 ], + [ 6.6622967, 46.5774089 ], + [ 6.6646716999999995, 46.5757169 ], + [ 6.6669149, 46.5739415 ], + [ 6.6690202, 46.5720876 ], + [ 6.6709817000000005, 46.5701601 ], + [ 6.6727941, 46.5681645 ], + [ 6.6744524, 46.5661062 ], + [ 6.6759522, 46.5639908 ], + [ 6.6772893, 46.5618241 ], + [ 6.6784601, 46.5596122 ], + [ 6.6794613, 46.557361 ], + [ 6.6802903, 46.5550767 ], + [ 6.6809448, 46.5527656 ], + [ 6.681423, 46.5504341 ], + [ 6.6817237, 46.5480885 ], + [ 6.681846, 46.5457352 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSGL001", + "country" : "CHE", + "name" : [ + { + "text" : "LSGL Lausanne-la Blécherette", + "lang" : "de-CH" + }, + { + "text" : "LSGL Lausanne-la Blécherette", + "lang" : "fr-CH" + }, + { + "text" : "LSGL Lausanne-la Blécherette", + "lang" : "it-CH" + }, + { + "text" : "LSGL Lausanne-la Blécherette", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Aéroport de Lausanne-La Blécherette", + "lang" : "de-CH" + }, + { + "text" : "Aéroport de Lausanne-La Blécherette", + "lang" : "fr-CH" + }, + { + "text" : "Aéroport de Lausanne-La Blécherette", + "lang" : "it-CH" + }, + { + "text" : "Aéroport de Lausanne-La Blécherette", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Chef d'aérodrome", + "lang" : "de-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "fr-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "it-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.lausanne-airport.ch/", + "email" : "drones@lausanne-airport.ch", + "phone" : "0041216461551", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.8653095, 46.8368255 ], + [ 6.8652626, 46.8367717 ], + [ 6.8650057, 46.8368777 ], + [ 6.8645769, 46.8370373 ], + [ 6.8644172999999995, 46.8370967 ], + [ 6.8643363, 46.8371611 ], + [ 6.864333, 46.8372337 ], + [ 6.8646383, 46.8373516 ], + [ 6.864677, 46.8373202 ], + [ 6.8648706, 46.8374248 ], + [ 6.8649163, 46.8374058 ], + [ 6.8659012, 46.8369981 ], + [ 6.8656371, 46.836769 ], + [ 6.8654722, 46.8367531 ], + [ 6.8653096, 46.8368256 ], + [ 6.8653095, 46.8368255 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VBS_35", + "country" : "CHE", + "name" : [ + { + "text" : "VBS_35 Sevaz", + "lang" : "de-CH" + }, + { + "text" : "VBS_35 Sevaz", + "lang" : "fr-CH" + }, + { + "text" : "VBS_35 Sevaz", + "lang" : "it-CH" + }, + { + "text" : "VBS_35 Sevaz", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "regulationExemption" : "YES", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Eidgenössisches Departement für Verteidigung, Bevölkerungsschutz und Sport (VBS)", + "lang" : "de-CH" + }, + { + "text" : "Département fédéral de la défense, de la protection de la population et des sports (DDPS)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento federale della difesa, della protezione della popolazione e dello sport (DDPS)", + "lang" : "it-CH" + }, + { + "text" : "Federal Department of Defence, Civil Protection and Sport (DDPS)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Lageverfolgungszentrum der Armee LVZ A", + "lang" : "de-CH" + }, + { + "text" : "Centre de suivi de la situation de l’armée, CSS A", + "lang" : "fr-CH" + }, + { + "text" : "Centro di monitoraggio della situazione dell’esercito, Centro mon sit Es", + "lang" : "it-CH" + }, + { + "text" : "Joint Operation Center, JOC", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vtg.admin.ch/en/joint-operations-command", + "email" : "lvz.op@vtg.admin.ch", + "phone" : "+41 58 464 96 43", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5107429, 47.541006 ], + [ 7.5111992, 47.5406691 ], + [ 7.5116133, 47.5403635 ], + [ 7.5120885, 47.5400144 ], + [ 7.5121312, 47.5400303 ], + [ 7.5127011, 47.5402429 ], + [ 7.5134934, 47.5405498 ], + [ 7.5138537, 47.5407894 ], + [ 7.5139493, 47.5409251 ], + [ 7.5139894, 47.5409819 ], + [ 7.5140066, 47.5410063 ], + [ 7.5139515, 47.5410645 ], + [ 7.5139434, 47.5411057 ], + [ 7.5144668, 47.5414762 ], + [ 7.5149369, 47.54181 ], + [ 7.5151756, 47.5419397 ], + [ 7.5158379, 47.5421833 ], + [ 7.5165166, 47.5424355 ], + [ 7.5165814, 47.5423131 ], + [ 7.5166227, 47.5422403 ], + [ 7.5166858, 47.5420875 ], + [ 7.5164896, 47.5419746 ], + [ 7.5163847, 47.5418554 ], + [ 7.5164205, 47.5417039 ], + [ 7.5168428, 47.5412822 ], + [ 7.5167304999999995, 47.5410643 ], + [ 7.516207, 47.5404658 ], + [ 7.5160584, 47.5405166 ], + [ 7.5156537, 47.5406425 ], + [ 7.5156297, 47.5406196 ], + [ 7.5153833, 47.5403847 ], + [ 7.5151955, 47.5401737 ], + [ 7.5152198, 47.5399585 ], + [ 7.5150035, 47.5396972 ], + [ 7.5151321, 47.5396402 ], + [ 7.5158772, 47.540538 ], + [ 7.5160314, 47.5404871 ], + [ 7.5155234, 47.5398405 ], + [ 7.5153634, 47.5396119 ], + [ 7.5153233, 47.5395554 ], + [ 7.5151083, 47.5391852 ], + [ 7.5147895, 47.5387089 ], + [ 7.5147197, 47.5387344 ], + [ 7.5146872, 47.5387145 ], + [ 7.5143923, 47.5385339 ], + [ 7.514057, 47.5383334 ], + [ 7.5134158, 47.5377639 ], + [ 7.5132046, 47.5377905 ], + [ 7.5131148, 47.5378018 ], + [ 7.5128133, 47.5378401 ], + [ 7.5126501, 47.5376772 ], + [ 7.512561, 47.5375913 ], + [ 7.5123211, 47.5373594 ], + [ 7.5122642, 47.5373101 ], + [ 7.5120482, 47.5371508 ], + [ 7.5118884, 47.5370458 ], + [ 7.5116833, 47.5369112 ], + [ 7.5109907, 47.5374417 ], + [ 7.5105119, 47.5376781 ], + [ 7.5097864, 47.5379233 ], + [ 7.5092254, 47.5381713 ], + [ 7.5090958, 47.5382276 ], + [ 7.5091225999999995, 47.5383203 ], + [ 7.5092022, 47.5385952 ], + [ 7.5092856, 47.5389879 ], + [ 7.5094082, 47.5395612 ], + [ 7.5094560999999995, 47.5398426 ], + [ 7.5095031, 47.5401433 ], + [ 7.5098355, 47.5405939 ], + [ 7.5101838, 47.5407752 ], + [ 7.5107429, 47.541006 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns245", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Allschwilerwald", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Allschwilerwald", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Allschwilerwald", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Allschwilerwald", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.0793833, 47.224296 ], + [ 8.0764156, 47.2276577 ], + [ 8.0759862, 47.228191699999996 ], + [ 8.0761891, 47.2282634 ], + [ 8.0763123, 47.2283023 ], + [ 8.0765497, 47.2283882 ], + [ 8.0767406, 47.2284529 ], + [ 8.0769714, 47.2285379 ], + [ 8.077043, 47.2285636 ], + [ 8.0770853, 47.2285688 ], + [ 8.0771236, 47.228565 ], + [ 8.0771644, 47.2285557 ], + [ 8.0772544, 47.2284635 ], + [ 8.0774476, 47.2283896 ], + [ 8.0775405, 47.2283135 ], + [ 8.0777413, 47.2280974 ], + [ 8.0780998, 47.2277104 ], + [ 8.078427, 47.2273587 ], + [ 8.0784721, 47.2273764 ], + [ 8.0785592, 47.227376 ], + [ 8.0789544, 47.2275186 ], + [ 8.0796519, 47.2277612 ], + [ 8.0798396, 47.2275541 ], + [ 8.0799907, 47.2273851 ], + [ 8.0801284, 47.2271954 ], + [ 8.0802668, 47.2269563 ], + [ 8.0804213, 47.2266199 ], + [ 8.0805484, 47.2262108 ], + [ 8.0808064, 47.2252631 ], + [ 8.0811784, 47.2239172 ], + [ 8.0812622, 47.2236316 ], + [ 8.0811546, 47.2235773 ], + [ 8.0802975, 47.223234 ], + [ 8.0797884, 47.2238287 ], + [ 8.0793833, 47.224296 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSPN002", + "country" : "CHE", + "name" : [ + { + "text" : "LSPN Triengen (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSPN Triengen (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSPN Triengen (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSPN Triengen (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Triengen Airport", + "lang" : "de-CH" + }, + { + "text" : "Triengen Airport", + "lang" : "fr-CH" + }, + { + "text" : "Triengen Airport", + "lang" : "it-CH" + }, + { + "text" : "Triengen Airport", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Bruno Müller", + "lang" : "de-CH" + }, + { + "text" : "Bruno Müller", + "lang" : "fr-CH" + }, + { + "text" : "Bruno Müller", + "lang" : "it-CH" + }, + { + "text" : "Bruno Müller", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.flyingranch.ch/", + "email" : "info@flyingranch.ch", + "phone" : "0041419333880", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P01DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8019765, 47.4326004 ], + [ 7.8019677, 47.4326359 ], + [ 7.8025798, 47.4328015 ], + [ 7.8030591, 47.4326984 ], + [ 7.8031597, 47.4326717 ], + [ 7.8035474, 47.4325905 ], + [ 7.803933, 47.4325744 ], + [ 7.8041943, 47.432516 ], + [ 7.8041671, 47.4324217 ], + [ 7.8042119, 47.432065 ], + [ 7.8041391, 47.431761 ], + [ 7.8040172, 47.4314994 ], + [ 7.8038218, 47.4312627 ], + [ 7.8034367, 47.4308334 ], + [ 7.8031571, 47.4305277 ], + [ 7.8028793, 47.4302954 ], + [ 7.8027847999999995, 47.4302729 ], + [ 7.8026838, 47.4302732 ], + [ 7.8025763, 47.4303238 ], + [ 7.8025297, 47.4304062 ], + [ 7.8025103, 47.4305251 ], + [ 7.8024992, 47.4308726 ], + [ 7.8025225, 47.431316 ], + [ 7.8024841, 47.4316224 ], + [ 7.8024656, 47.4318693 ], + [ 7.8023668, 47.4321988 ], + [ 7.8023277, 47.4323909 ], + [ 7.802234, 47.4324872 ], + [ 7.8019765, 47.4326004 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr139", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Stuel", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Stuel", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Stuel", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Stuel", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.1454684, 46.2850941 ], + [ 6.145511, 46.2850862 ], + [ 6.1468717, 46.2846222 ], + [ 6.1478735, 46.2838331 ], + [ 6.1483643, 46.2828384 ], + [ 6.1482697, 46.2817892 ], + [ 6.1482551, 46.281751 ], + [ 6.147588, 46.2808051 ], + [ 6.1464497, 46.2801082 ], + [ 6.1450133, 46.2797663 ], + [ 6.1434977, 46.2798315 ], + [ 6.1434552, 46.2798393 ], + [ 6.1420932, 46.2803005 ], + [ 6.1410885, 46.2810874 ], + [ 6.1405935, 46.2820807 ], + [ 6.1406832, 46.2831298 ], + [ 6.1406976, 46.2831681 ], + [ 6.141188, 46.2839443 ], + [ 6.1420015, 46.284576799999996 ], + [ 6.1430577, 46.2850032 ], + [ 6.1442527, 46.2851815 ], + [ 6.1454684, 46.2850941 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-51", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.0701093, 46.390991 ], + [ 7.0713579, 46.3910949 ], + [ 7.0721505, 46.391164 ], + [ 7.0725104, 46.3911985 ], + [ 7.0729199, 46.3911998 ], + [ 7.0745568, 46.3907904 ], + [ 7.0747253, 46.3906749 ], + [ 7.0759824, 46.3895167 ], + [ 7.0770547, 46.3891621 ], + [ 7.077724, 46.3888053 ], + [ 7.0781444, 46.3885341 ], + [ 7.0781749, 46.3884487 ], + [ 7.0780522, 46.3881343 ], + [ 7.0781972, 46.388035 ], + [ 7.0784122, 46.3879565 ], + [ 7.0784885, 46.3878119 ], + [ 7.0786228, 46.3877538 ], + [ 7.0788674, 46.3877231 ], + [ 7.0790321, 46.3875959 ], + [ 7.079073, 46.3874926 ], + [ 7.079014, 46.3873854 ], + [ 7.0789798, 46.387244 ], + [ 7.0790707, 46.3870653 ], + [ 7.0791262, 46.3869341 ], + [ 7.0790676, 46.3867414 ], + [ 7.0788504, 46.386568 ], + [ 7.0789159, 46.386293 ], + [ 7.0791297, 46.3860166 ], + [ 7.0790001, 46.3859514 ], + [ 7.077291, 46.3855151 ], + [ 7.0756253, 46.3852012 ], + [ 7.0732492, 46.3838316 ], + [ 7.0722876, 46.3832005 ], + [ 7.0719739, 46.3830781 ], + [ 7.0705023, 46.3842373 ], + [ 7.06973, 46.3848411 ], + [ 7.0699524, 46.3851945 ], + [ 7.0700922, 46.3854837 ], + [ 7.0701449, 46.3857574 ], + [ 7.0701171, 46.3860208 ], + [ 7.0700126, 46.3862814 ], + [ 7.0698393, 46.3865435 ], + [ 7.0695328, 46.3868834 ], + [ 7.0691364, 46.3872465 ], + [ 7.0682591, 46.3879821 ], + [ 7.0679697, 46.3882789 ], + [ 7.0678174, 46.388503299999996 ], + [ 7.0677235, 46.3887297 ], + [ 7.0676882, 46.3889599 ], + [ 7.0677139, 46.3891948 ], + [ 7.067825, 46.3894767 ], + [ 7.067991, 46.3897246 ], + [ 7.0682052, 46.3899583 ], + [ 7.0684975, 46.3901878 ], + [ 7.068759, 46.3903397 ], + [ 7.069109, 46.3905019 ], + [ 7.0701093, 46.390991 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00051", + "country" : "CHE", + "name" : [ + { + "text" : "Le Larzey", + "lang" : "de-CH" + }, + { + "text" : "Le Larzey", + "lang" : "fr-CH" + }, + { + "text" : "Le Larzey", + "lang" : "it-CH" + }, + { + "text" : "Le Larzey", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "startDateTime" : "2024-11-15T00:00:00+01:00", + "endDateTime" : "2025-04-15T00:00:00+02:00" + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Generaldirektion für Umwelt", + "lang" : "de-CH" + }, + { + "text" : "Direction générale de l'environnement", + "lang" : "fr-CH" + }, + { + "text" : "Direzione generale dell'Ambiente", + "lang" : "it-CH" + }, + { + "text" : "Environment Department", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.dge@vd.ch", + "phone" : "0041213164422", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.9948367, 47.0067131 ], + [ 6.9949569, 47.0064976 ], + [ 6.9951541, 47.0065074 ], + [ 6.9953532, 47.0063814 ], + [ 6.9955069, 47.0062846 ], + [ 6.9956448, 47.0061973 ], + [ 6.9959605, 47.0059978 ], + [ 6.9959361, 47.0057638 ], + [ 6.9961014, 47.0056479 ], + [ 6.9962932, 47.0055133 ], + [ 6.9964995, 47.0055141 ], + [ 6.9966614, 47.0055147 ], + [ 6.9967803, 47.0054522 ], + [ 6.9967519, 47.0053083 ], + [ 6.9967164, 47.0051288 ], + [ 6.9966667, 47.004876 ], + [ 6.996988, 47.0048822 ], + [ 6.9972584, 47.0048873 ], + [ 6.9972028, 47.0050419 ], + [ 6.9971641, 47.0051478 ], + [ 6.9973717, 47.0051893 ], + [ 6.9975318, 47.0052212 ], + [ 6.9977412999999995, 47.005321 ], + [ 6.9980045, 47.005304 ], + [ 6.9981588, 47.0053267 ], + [ 6.9984478, 47.005369 ], + [ 6.9986349, 47.0053964 ], + [ 6.9988375, 47.0053526 ], + [ 6.9990433, 47.005308 ], + [ 6.9991588, 47.0052542 ], + [ 6.9992521, 47.0052107 ], + [ 6.9994261, 47.0051296 ], + [ 6.999283, 47.0049491 ], + [ 6.9996524, 47.0047976 ], + [ 6.9998488, 47.0049063 ], + [ 7.0000592, 47.0048981 ], + [ 7.0000366, 47.0047529 ], + [ 7.0000217, 47.0046594 ], + [ 6.9999967, 47.004502 ], + [ 7.0003517, 47.0045124 ], + [ 7.000508, 47.0045997 ], + [ 7.0006299, 47.0046678 ], + [ 7.0007575, 47.0047388 ], + [ 7.001047, 47.004713 ], + [ 7.001244, 47.0046392 ], + [ 7.0015218, 47.0045349 ], + [ 7.0019171, 47.0044464 ], + [ 7.0024945, 47.0045835 ], + [ 7.0022213, 47.0042227 ], + [ 7.0023277, 47.0040792 ], + [ 7.0026661, 47.0045122 ], + [ 7.0028763, 47.004531 ], + [ 7.0027841, 47.004457 ], + [ 7.0026281, 47.0043322 ], + [ 7.0028657, 47.0042251 ], + [ 7.0028671, 47.0040452 ], + [ 7.002973, 47.0039557 ], + [ 7.0031904, 47.0039058 ], + [ 7.0034341, 47.0038495 ], + [ 7.0035268, 47.0037779 ], + [ 7.0036031, 47.0035926 ], + [ 7.0036408, 47.0035025 ], + [ 7.0037012, 47.0033557 ], + [ 7.0038998, 47.0031766 ], + [ 7.0041681, 47.0030332 ], + [ 7.0044306, 47.002893 ], + [ 7.0046526, 47.0027746 ], + [ 7.0049154, 47.0027006 ], + [ 7.0052194, 47.0026149 ], + [ 7.005578, 47.0025797 ], + [ 7.0058379, 47.0025542 ], + [ 7.0060094, 47.0024829 ], + [ 7.0061417, 47.0023755 ], + [ 7.0063656, 47.0023313 ], + [ 7.0065684, 47.0023561 ], + [ 7.0067671, 47.0023802 ], + [ 7.0069453, 47.002402 ], + [ 7.0071276, 47.0024241 ], + [ 7.0076144, 47.002381 ], + [ 7.008127, 47.0024179 ], + [ 7.0085344, 47.0024474 ], + [ 7.0088747, 47.0025413 ], + [ 7.0091149, 47.0026075 ], + [ 7.0092953, 47.0026572 ], + [ 7.0095576, 47.0027481 ], + [ 7.0098959, 47.0027879 ], + [ 7.010065, 47.0028079 ], + [ 7.0103458, 47.002841 ], + [ 7.0106431, 47.0027696 ], + [ 7.0108992, 47.0027082 ], + [ 7.0111217, 47.0028349 ], + [ 7.0113575, 47.0028376 ], + [ 7.0124463, 47.0015175 ], + [ 7.0120497, 47.0013694 ], + [ 7.0117086, 47.0012674 ], + [ 7.0113774, 47.0011735 ], + [ 7.0108821, 47.0010331 ], + [ 7.0104625, 47.0008912 ], + [ 7.0099074, 47.0007353 ], + [ 7.0093605, 47.0005768 ], + [ 7.0089143, 47.0004752 ], + [ 7.0083793, 47.0003689 ], + [ 7.0078598, 47.0002841 ], + [ 7.0072568, 47.0001487 ], + [ 7.0068794, 47.0000807 ], + [ 7.0063348, 47.000041 ], + [ 7.0058083, 47.0000065 ], + [ 7.0053222, 46.9999615 ], + [ 7.0048712, 46.9999436 ], + [ 7.004679, 46.9999231 ], + [ 7.0040546, 46.9999072 ], + [ 7.0034719, 46.9999069 ], + [ 7.0028816, 46.9999424 ], + [ 7.0023576, 47.0000034 ], + [ 7.0015934, 47.0000904 ], + [ 7.0011194, 47.0001741 ], + [ 7.000457, 47.0002812 ], + [ 6.9999497999999996, 47.0003882 ], + [ 6.9993178, 47.0004955 ], + [ 6.9988111, 47.0006519 ], + [ 6.9984289, 47.0007628 ], + [ 6.9978261, 47.0010052 ], + [ 6.9973375, 47.0011571 ], + [ 6.9967006, 47.0013652 ], + [ 6.9961701, 47.0016069 ], + [ 6.995502, 47.0019057 ], + [ 6.9948767, 47.0021821 ], + [ 6.9941769, 47.0025312 ], + [ 6.9937073, 47.0028622 ], + [ 6.9932932999999995, 47.003143 ], + [ 6.9930008, 47.0033299 ], + [ 6.9926596, 47.0035427 ], + [ 6.9924339, 47.0037019 ], + [ 6.992094, 47.0039569 ], + [ 6.9916903999999995, 47.0042603 ], + [ 6.9912536, 47.004595 ], + [ 6.9908981, 47.0049427 ], + [ 6.9905541, 47.0052886 ], + [ 6.990239, 47.0056238 ], + [ 6.9899325, 47.0059131 ], + [ 6.989754, 47.0060222 ], + [ 6.9894264, 47.0063789 ], + [ 6.989251, 47.0066121 ], + [ 6.989098, 47.0068274 ], + [ 6.9933350999999995, 47.0085963 ], + [ 6.9933099, 47.0084613 ], + [ 6.9934552, 47.0083899 ], + [ 6.9937093, 47.0083767 ], + [ 6.9939477, 47.0083642 ], + [ 6.9940974, 47.0083564 ], + [ 6.9942577, 47.008348 ], + [ 6.9942993, 47.0080873 ], + [ 6.99425, 47.007992 ], + [ 6.9941424, 47.0077844 ], + [ 6.9940793, 47.0076637 ], + [ 6.9942067, 47.0075558 ], + [ 6.9942912, 47.0074846 ], + [ 6.9944075, 47.0073332 ], + [ 6.9944906, 47.0072245 ], + [ 6.9947116, 47.0071399 ], + [ 6.9948864, 47.0070731 ], + [ 6.9950323999999995, 47.0069027 ], + [ 6.9948367, 47.0067131 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "WZV0010", + "country" : "CHE", + "name" : [ + { + "text" : "Wasser- und Zugvogelreservat Fanel jusqu'à Chablais de Cudrefin, Pointe de Marin", + "lang" : "de-CH" + }, + { + "text" : "Réserve d'oiseaux d'eau et de migrateurs Fanel jusqu'à Chablais de Cudrefin, Pointe de Marin", + "lang" : "fr-CH" + }, + { + "text" : "Riserva di uccelli acquatici e migratori Fanel jusqu'à Chablais de Cudrefin, Pointe de Marin", + "lang" : "it-CH" + }, + { + "text" : "Water Bird and Migratory Bird Reserves Fanel jusqu'à Chablais de Cudrefin, Pointe de Marin", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6110804, 47.5012382 ], + [ 7.6110395, 47.5012469 ], + [ 7.6110305, 47.501249 ], + [ 7.6110213, 47.5012506 ], + [ 7.6110119, 47.5012516 ], + [ 7.6110025, 47.501252 ], + [ 7.610993, 47.5012518 ], + [ 7.6109835, 47.5012511 ], + [ 7.6109742, 47.5012498 ], + [ 7.6109651, 47.501248 ], + [ 7.6109563, 47.5012456 ], + [ 7.6109478, 47.5012427 ], + [ 7.6109398, 47.5012393 ], + [ 7.6109322, 47.5012354 ], + [ 7.6109251, 47.5012311 ], + [ 7.6109186, 47.5012264 ], + [ 7.6109127999999995, 47.5012213 ], + [ 7.6109077, 47.5012159 ], + [ 7.6109033, 47.5012102 ], + [ 7.6108997, 47.5012042 ], + [ 7.6108098, 47.5010194 ], + [ 7.6108054, 47.5010117 ], + [ 7.6108001, 47.5010044 ], + [ 7.6107937, 47.5009973 ], + [ 7.6107865, 47.5009907 ], + [ 7.6107785, 47.5009846 ], + [ 7.6107696, 47.500979 ], + [ 7.6107601, 47.5009739 ], + [ 7.6107499, 47.5009695 ], + [ 7.6107392, 47.5009657 ], + [ 7.610728, 47.5009625 ], + [ 7.6107164, 47.50096 ], + [ 7.6107046, 47.5009583 ], + [ 7.6106926, 47.5009573 ], + [ 7.6106804, 47.500957 ], + [ 7.6103831, 47.500985 ], + [ 7.610359, 47.5009913 ], + [ 7.6102993, 47.5009338 ], + [ 7.6102485, 47.5009394 ], + [ 7.6101656, 47.500946 ], + [ 7.6091622, 47.5010138 ], + [ 7.6090679, 47.5010191 ], + [ 7.6090504, 47.5008983 ], + [ 7.6087382, 47.500919 ], + [ 7.60804, 47.5009654 ], + [ 7.6077925, 47.5009818 ], + [ 7.607093, 47.5010289 ], + [ 7.6070968, 47.5010622 ], + [ 7.6070931999999996, 47.5010878 ], + [ 7.6070834, 47.5011175 ], + [ 7.6070751, 47.5011533 ], + [ 7.6070752, 47.5011911 ], + [ 7.6070852, 47.5012105 ], + [ 7.6070971, 47.5012273 ], + [ 7.6071083, 47.5012454 ], + [ 7.6071228, 47.5012759 ], + [ 7.6071288, 47.5012911 ], + [ 7.6071352, 47.5013062 ], + [ 7.6071421, 47.5013212 ], + [ 7.6072576, 47.5013017 ], + [ 7.6072790999999995, 47.5012978 ], + [ 7.607301, 47.501295 ], + [ 7.6073989, 47.5012813 ], + [ 7.6075903, 47.50126 ], + [ 7.6076942, 47.5012487 ], + [ 7.6077755, 47.5012376 ], + [ 7.6079124, 47.5012215 ], + [ 7.6080872, 47.5012056 ], + [ 7.6081513, 47.5012011 ], + [ 7.6082153, 47.5011956 ], + [ 7.608279, 47.5011891 ], + [ 7.6083501, 47.5011815 ], + [ 7.6085443999999995, 47.5011605 ], + [ 7.6087396, 47.501145 ], + [ 7.608851, 47.5011371 ], + [ 7.6088825, 47.5011358 ], + [ 7.608914, 47.5011359 ], + [ 7.6089455, 47.5011375 ], + [ 7.6089497999999995, 47.5011374 ], + [ 7.608954, 47.5011376 ], + [ 7.6089583, 47.501138 ], + [ 7.6089624, 47.5011387 ], + [ 7.6089664, 47.5011397 ], + [ 7.6089703, 47.5011409 ], + [ 7.608974, 47.5011423 ], + [ 7.6089772, 47.5011438 ], + [ 7.6089801, 47.5011455 ], + [ 7.6089828, 47.5011473 ], + [ 7.6089853, 47.5011493 ], + [ 7.6089876, 47.5011513 ], + [ 7.6089896, 47.5011536 ], + [ 7.6089913, 47.5011559 ], + [ 7.6089993, 47.5011647 ], + [ 7.6090062, 47.501174 ], + [ 7.609012, 47.5011836 ], + [ 7.6090165, 47.5011935 ], + [ 7.6090235, 47.501216 ], + [ 7.6091207, 47.5015165 ], + [ 7.6092878, 47.5019786 ], + [ 7.6094259, 47.5023644 ], + [ 7.6095838, 47.5028005 ], + [ 7.6096009, 47.5028595 ], + [ 7.6096219, 47.5029179 ], + [ 7.6096465, 47.5029756 ], + [ 7.6098253, 47.5033478 ], + [ 7.6099266, 47.5035249 ], + [ 7.6100429, 47.5036868 ], + [ 7.61006, 47.5037091 ], + [ 7.6106832, 47.5034846 ], + [ 7.6106806, 47.5034567 ], + [ 7.6106796, 47.5034476 ], + [ 7.6106792, 47.5034385 ], + [ 7.6106796, 47.5034294 ], + [ 7.6106806, 47.5034203 ], + [ 7.6106824, 47.5034113 ], + [ 7.6106847, 47.5034023 ], + [ 7.6106878, 47.5033935 ], + [ 7.6106918, 47.5033848 ], + [ 7.6106964999999995, 47.5033762 ], + [ 7.6107019000000005, 47.5033679 ], + [ 7.6107078, 47.5033597 ], + [ 7.6107143, 47.5033517 ], + [ 7.6107215, 47.503344 ], + [ 7.6107292, 47.5033365 ], + [ 7.6107994, 47.5032649 ], + [ 7.6108101, 47.5032545 ], + [ 7.6108214, 47.5032445 ], + [ 7.6108334, 47.5032348 ], + [ 7.6108461, 47.5032255 ], + [ 7.6108594, 47.5032166 ], + [ 7.6108733, 47.5032081 ], + [ 7.6108877, 47.5032001 ], + [ 7.6109027000000005, 47.5031926 ], + [ 7.6109182, 47.5031855 ], + [ 7.6109342, 47.503179 ], + [ 7.6109506, 47.5031729 ], + [ 7.6109674, 47.5031674 ], + [ 7.6109845, 47.5031624 ], + [ 7.611002, 47.503158 ], + [ 7.6110198, 47.5031541 ], + [ 7.6110386, 47.5031501 ], + [ 7.6110577, 47.5031468 ], + [ 7.611077, 47.503144 ], + [ 7.6110965, 47.5031419 ], + [ 7.6111161, 47.5031405 ], + [ 7.6111358, 47.5031398 ], + [ 7.6111555, 47.5031397 ], + [ 7.6111753, 47.5031402 ], + [ 7.6111949, 47.5031415 ], + [ 7.6112144, 47.5031434 ], + [ 7.6112338, 47.5031459 ], + [ 7.611253, 47.5031491 ], + [ 7.6112719, 47.5031529 ], + [ 7.6112905, 47.5031574 ], + [ 7.6113927, 47.503198 ], + [ 7.6114057, 47.5032018 ], + [ 7.6114189, 47.5032052 ], + [ 7.6114323, 47.5032081 ], + [ 7.611446, 47.5032105 ], + [ 7.6114598, 47.5032124 ], + [ 7.6114738, 47.5032138 ], + [ 7.6114879, 47.5032147 ], + [ 7.611502, 47.5032151 ], + [ 7.6115161, 47.503215 ], + [ 7.6115303, 47.5032141 ], + [ 7.6115443, 47.5032127 ], + [ 7.6115583, 47.5032108 ], + [ 7.6115721, 47.5032084 ], + [ 7.6115856, 47.5032054 ], + [ 7.6115989, 47.503202 ], + [ 7.611612, 47.5031981 ], + [ 7.6116247, 47.5031938 ], + [ 7.611637, 47.503189 ], + [ 7.6118442, 47.5031032 ], + [ 7.6119544999999995, 47.5030239 ], + [ 7.611933, 47.5029691 ], + [ 7.6119108, 47.5029144 ], + [ 7.6118879, 47.5028598 ], + [ 7.6118643, 47.5028053 ], + [ 7.6118385, 47.502748 ], + [ 7.6118120000000005, 47.5026909 ], + [ 7.6117848, 47.5026339 ], + [ 7.6117568, 47.5025771 ], + [ 7.6111823, 47.5014341 ], + [ 7.6111496, 47.50137 ], + [ 7.6111163, 47.5013061 ], + [ 7.6110826, 47.5012424 ], + [ 7.6110804, 47.5012382 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns149", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Reinacherheide", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Reinacherheide", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Reinacherheide", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Reinacherheide", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.1766268, 46.1717445 ], + [ 6.1763551, 46.1707086 ], + [ 6.1755335, 46.1698237 ], + [ 6.1742871, 46.1692247 ], + [ 6.1728056, 46.1690026 ], + [ 6.1713146, 46.1691913 ], + [ 6.170041, 46.1697621 ], + [ 6.1691786, 46.170628 ], + [ 6.1688589, 46.1716573 ], + [ 6.1691305, 46.1726932 ], + [ 6.169952, 46.1735781 ], + [ 6.1711985, 46.1741772 ], + [ 6.1726801, 46.1743993 ], + [ 6.1741713, 46.1742105 ], + [ 6.1754449, 46.1736397 ], + [ 6.1763072, 46.1727738 ], + [ 6.1766268, 46.1717445 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-55", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7332071, 47.4116385 ], + [ 7.7342928, 47.4112151 ], + [ 7.7346069, 47.4110937 ], + [ 7.7348572, 47.4110298 ], + [ 7.7348926, 47.4110146 ], + [ 7.7345557, 47.4107867 ], + [ 7.7342718999999995, 47.4107134 ], + [ 7.733871, 47.4106021 ], + [ 7.7334265, 47.4106071 ], + [ 7.7330435, 47.4106168 ], + [ 7.7327435, 47.4109635 ], + [ 7.7325431, 47.4112189 ], + [ 7.7324103, 47.4115574 ], + [ 7.7323394, 47.4117249 ], + [ 7.7327144, 47.411463 ], + [ 7.7330064, 47.4115177 ], + [ 7.7332071, 47.4116385 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns103", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Gugger", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Gugger", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Gugger", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Gugger", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7914261, 47.3770384 ], + [ 7.7916038, 47.3770989 ], + [ 7.7917434, 47.3771565 ], + [ 7.7919171, 47.3772093 ], + [ 7.7922068, 47.377247 ], + [ 7.7922526, 47.3772841 ], + [ 7.7923099, 47.3772942 ], + [ 7.7926391, 47.3771352 ], + [ 7.7926958, 47.3771324 ], + [ 7.7929368, 47.3771022 ], + [ 7.7930086, 47.3770778 ], + [ 7.7931121, 47.3770033 ], + [ 7.7932112, 47.3769742 ], + [ 7.7934816, 47.376934 ], + [ 7.7935303, 47.3769213 ], + [ 7.7936194, 47.3769262 ], + [ 7.7937411, 47.3769675 ], + [ 7.7941029, 47.3769484 ], + [ 7.7944819, 47.3766861 ], + [ 7.7951759, 47.3759801 ], + [ 7.7973842, 47.3755744 ], + [ 7.7976645, 47.3755094 ], + [ 7.7977392, 47.3754921 ], + [ 7.7980035999999995, 47.3755193 ], + [ 7.7980278, 47.3755033 ], + [ 7.7980772, 47.3754238 ], + [ 7.798152, 47.3752267 ], + [ 7.7981544, 47.3751362 ], + [ 7.7985176, 47.3749755 ], + [ 7.7985874, 47.374971 ], + [ 7.7986691, 47.3749845 ], + [ 7.7988768, 47.374887 ], + [ 7.7988976999999995, 47.3749213 ], + [ 7.7989762, 47.3749752 ], + [ 7.7990236, 47.3749732 ], + [ 7.79922, 47.3749016 ], + [ 7.7993266, 47.3748547 ], + [ 7.7993548, 47.3748214 ], + [ 7.7993443, 47.3747909 ], + [ 7.7992007, 47.3745826 ], + [ 7.7997502, 47.3743669 ], + [ 7.8000673, 47.3746653 ], + [ 7.8001303, 47.3746751 ], + [ 7.8003264, 47.3746136 ], + [ 7.8004513, 47.3745486 ], + [ 7.8004495, 47.3744843 ], + [ 7.8004138, 47.374379 ], + [ 7.8003824, 47.374338 ], + [ 7.8002367, 47.3742756 ], + [ 7.8002442, 47.3741919 ], + [ 7.8007822, 47.3740055 ], + [ 7.8009687, 47.3739835 ], + [ 7.8010122, 47.3739648 ], + [ 7.8010347, 47.3739305 ], + [ 7.8010556, 47.3738155 ], + [ 7.8010829, 47.3737714 ], + [ 7.8011568, 47.3737363 ], + [ 7.8013261, 47.3737963 ], + [ 7.8013680999999995, 47.3737809 ], + [ 7.8013688, 47.3736646 ], + [ 7.8017781, 47.3735053 ], + [ 7.8017689, 47.3734233 ], + [ 7.8018743, 47.3734019 ], + [ 7.8020476, 47.3735688 ], + [ 7.8021826999999995, 47.3735558 ], + [ 7.8022574, 47.3734472 ], + [ 7.8022002, 47.3733636 ], + [ 7.8023633, 47.3733121 ], + [ 7.8024061, 47.3732423 ], + [ 7.8025656, 47.3732304 ], + [ 7.8026797, 47.3733098 ], + [ 7.8027725, 47.373327 ], + [ 7.8030156, 47.3733011 ], + [ 7.8031579, 47.3733185 ], + [ 7.8032573, 47.3732963 ], + [ 7.8033252, 47.3732552 ], + [ 7.8033468, 47.3732122 ], + [ 7.8034048, 47.3731774 ], + [ 7.8035472, 47.3730953 ], + [ 7.8038858, 47.3729135 ], + [ 7.8039161, 47.3728929 ], + [ 7.8039309, 47.3728332 ], + [ 7.8038769, 47.3728167 ], + [ 7.8037843, 47.3727373 ], + [ 7.8016338, 47.3716927 ], + [ 7.8014703999999995, 47.3716427 ], + [ 7.8012486, 47.3715733 ], + [ 7.8011218, 47.3716369 ], + [ 7.8009461, 47.3717252 ], + [ 7.8005922, 47.3717117 ], + [ 7.8005289, 47.3717909 ], + [ 7.8004134, 47.3719356 ], + [ 7.8003492, 47.372016 ], + [ 7.8002643, 47.3719711 ], + [ 7.8000503, 47.3718579 ], + [ 7.7999732, 47.3718937 ], + [ 7.7998066, 47.3719709 ], + [ 7.7992118999999995, 47.3722448 ], + [ 7.7986162, 47.3725175 ], + [ 7.7985088000000005, 47.3725667 ], + [ 7.7980852, 47.3728549 ], + [ 7.79795, 47.3729469 ], + [ 7.7977837999999995, 47.3729877 ], + [ 7.7973615, 47.3730913 ], + [ 7.7969971000000005, 47.3731962 ], + [ 7.7965426, 47.37339 ], + [ 7.7962885, 47.3734495 ], + [ 7.7959587, 47.3735184 ], + [ 7.795561, 47.3735792 ], + [ 7.7951920999999995, 47.3736629 ], + [ 7.7948053999999996, 47.3738115 ], + [ 7.7944230999999995, 47.3739201 ], + [ 7.7941176, 47.3740212 ], + [ 7.7937441, 47.3741628 ], + [ 7.7934537, 47.3742585 ], + [ 7.7932279, 47.374333 ], + [ 7.7931363000000005, 47.3744457 ], + [ 7.7929269, 47.3746698 ], + [ 7.7925964, 47.3748612 ], + [ 7.7923667, 47.3749806 ], + [ 7.7920634, 47.3751496 ], + [ 7.7918589, 47.3754119 ], + [ 7.7917818, 47.3755318 ], + [ 7.7919526999999995, 47.3757501 ], + [ 7.791987, 47.3757937 ], + [ 7.7919531, 47.3759172 ], + [ 7.7919288, 47.3760056 ], + [ 7.7920098, 47.3761154 ], + [ 7.7919484, 47.3762031 ], + [ 7.7917886, 47.3764312 ], + [ 7.7917445999999995, 47.376494 ], + [ 7.7915538, 47.3765713 ], + [ 7.7914261, 47.3770384 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr136", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Lauchberg", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Lauchberg", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Lauchberg", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Lauchberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8657319999999995, 47.4098265 ], + [ 7.8656954, 47.409966 ], + [ 7.8656751, 47.4100825 ], + [ 7.8656634, 47.4103201 ], + [ 7.8656517, 47.4105831 ], + [ 7.8656415, 47.4108634 ], + [ 7.8657013, 47.4111618 ], + [ 7.8657471999999995, 47.4113484 ], + [ 7.8658687, 47.4113606 ], + [ 7.8663035, 47.4114237 ], + [ 7.8667379, 47.4112002 ], + [ 7.8671564, 47.4110207 ], + [ 7.8674561, 47.4114487 ], + [ 7.8674137, 47.4115315 ], + [ 7.8672795, 47.4116783 ], + [ 7.8673082999999995, 47.4117227 ], + [ 7.8673215, 47.4117271 ], + [ 7.8673319, 47.4117272 ], + [ 7.8673628, 47.4117276 ], + [ 7.867587, 47.4117219 ], + [ 7.8679186, 47.4119374 ], + [ 7.8681283, 47.4120731 ], + [ 7.8684731, 47.4121489 ], + [ 7.8687132, 47.4122024 ], + [ 7.8690012, 47.4121733 ], + [ 7.8694235, 47.4123126 ], + [ 7.8696716, 47.4121074 ], + [ 7.8699262, 47.4118973 ], + [ 7.8697844, 47.411804599999996 ], + [ 7.8695891, 47.4115486 ], + [ 7.8691642, 47.4111093 ], + [ 7.8692712, 47.4107538 ], + [ 7.8691997, 47.4104884 ], + [ 7.8692049, 47.4102603 ], + [ 7.8693754, 47.4099364 ], + [ 7.8695023, 47.4096862 ], + [ 7.869592, 47.4094465 ], + [ 7.8701139, 47.4088857 ], + [ 7.8695868, 47.4089114 ], + [ 7.8695243999999995, 47.4085386 ], + [ 7.869159, 47.4082709 ], + [ 7.8691495, 47.4082676 ], + [ 7.8690434, 47.4080049 ], + [ 7.8690771, 47.4077722 ], + [ 7.8689336, 47.4074017 ], + [ 7.8684813, 47.4079542 ], + [ 7.8682061999999995, 47.4080291 ], + [ 7.8680505, 47.4082423 ], + [ 7.8678581, 47.4083698 ], + [ 7.8675592, 47.4085782 ], + [ 7.8667058, 47.4088681 ], + [ 7.8664504, 47.4089791 ], + [ 7.8660823, 47.4091376 ], + [ 7.8658706, 47.4095425 ], + [ 7.8657319999999995, 47.4098265 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns248", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Teufleten", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Teufleten", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Teufleten", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Teufleten", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4977713999999995, 47.4294283 ], + [ 7.4979098, 47.4294056 ], + [ 7.4980713, 47.42944 ], + [ 7.4983181, 47.4294525 ], + [ 7.4984333, 47.429466 ], + [ 7.4984816, 47.4294675 ], + [ 7.4985542, 47.4294698 ], + [ 7.4987692, 47.4286003 ], + [ 7.4987539, 47.4285985 ], + [ 7.4986132, 47.4285827 ], + [ 7.4985762, 47.4285924 ], + [ 7.4985618, 47.4286023 ], + [ 7.4985269, 47.4286568 ], + [ 7.4983849, 47.428619 ], + [ 7.4983457, 47.4285786 ], + [ 7.4982544, 47.4285734 ], + [ 7.4980865, 47.4285641 ], + [ 7.4981025, 47.4286547 ], + [ 7.498465, 47.4287044 ], + [ 7.4984635, 47.4287243 ], + [ 7.4984127, 47.4288021 ], + [ 7.4983629, 47.428958 ], + [ 7.4983204, 47.4290165 ], + [ 7.4982781, 47.4290471 ], + [ 7.4982218, 47.4290663 ], + [ 7.4981401, 47.4290721 ], + [ 7.4980584, 47.4290606 ], + [ 7.4979991, 47.4290224 ], + [ 7.4979737, 47.4289727 ], + [ 7.4979652, 47.4289058 ], + [ 7.4979623, 47.4288388 ], + [ 7.497965, 47.428747 ], + [ 7.4979711, 47.4286992 ], + [ 7.4978264, 47.4286957 ], + [ 7.4978163, 47.4288051 ], + [ 7.4978006, 47.4290254 ], + [ 7.4977713999999995, 47.4294283 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns300", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Dittinger Weide und Dittinger Wald", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Dittinger Weide und Dittinger Wald", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Dittinger Weide und Dittinger Wald", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Dittinger Weide und Dittinger Wald", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8438117, 47.4505093 ], + [ 7.8438145, 47.450507 ], + [ 7.8435485, 47.4506094 ], + [ 7.8433737, 47.4506768 ], + [ 7.8433082, 47.4507019 ], + [ 7.8429908, 47.450877 ], + [ 7.8428178, 47.4509725 ], + [ 7.8427212, 47.4510258 ], + [ 7.8425762, 47.4511058 ], + [ 7.8425047, 47.4511453 ], + [ 7.8424161, 47.4511844 ], + [ 7.8425241, 47.4513579 ], + [ 7.8427882, 47.451743 ], + [ 7.8430146, 47.4520092 ], + [ 7.8431968, 47.4521704 ], + [ 7.8433478999999995, 47.4522611 ], + [ 7.8436593, 47.4523921 ], + [ 7.8441797, 47.4526581 ], + [ 7.8445098, 47.4529021 ], + [ 7.8449162, 47.4532025 ], + [ 7.8448899, 47.4529905 ], + [ 7.8448718, 47.4527785 ], + [ 7.8448385, 47.4527228 ], + [ 7.8448043, 47.4525555 ], + [ 7.8447784, 47.4523937 ], + [ 7.8446692, 47.4521039 ], + [ 7.8445944999999995, 47.4520148 ], + [ 7.8445355, 47.4518309 ], + [ 7.8445323, 47.4517592 ], + [ 7.8444823, 47.4516174 ], + [ 7.8444516, 47.4515302 ], + [ 7.8443534, 47.4512356 ], + [ 7.8442301, 47.4510221 ], + [ 7.8442479, 47.4508836 ], + [ 7.8442591, 47.4507968 ], + [ 7.844206, 47.4506429 ], + [ 7.8441369, 47.4505994 ], + [ 7.8441243, 47.4505915 ], + [ 7.8440931, 47.4505718 ], + [ 7.8440195, 47.4504288 ], + [ 7.8438117, 47.4505093 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr075", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Eiholde", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Eiholde", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Eiholde", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Eiholde", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.9932951, 46.3504925 ], + [ 6.9935451, 46.3512123 ], + [ 6.9939363, 46.3524606 ], + [ 6.9947147, 46.3538643 ], + [ 6.9955958, 46.3546243 ], + [ 6.9955677, 46.3553655 ], + [ 6.9953175, 46.3556191 ], + [ 6.9958115, 46.3560483 ], + [ 6.9960322, 46.3567158 ], + [ 6.996742, 46.3572952 ], + [ 6.9974699, 46.3575733 ], + [ 6.9979174, 46.3581553 ], + [ 6.9980588, 46.3588188 ], + [ 6.9983312, 46.3596673 ], + [ 6.9986209, 46.3599904 ], + [ 6.9990993, 46.3601308 ], + [ 6.9993487, 46.3601408 ], + [ 6.9996797, 46.3596914 ], + [ 6.9993441, 46.3589354 ], + [ 6.9994288000000005, 46.3585911 ], + [ 6.9995964, 46.357784 ], + [ 6.9996415, 46.3570294 ], + [ 6.9996777, 46.3564088 ], + [ 6.9995521, 46.3557256 ], + [ 6.999538, 46.3557012 ], + [ 6.9998683, 46.354543 ], + [ 6.9996594, 46.3541814 ], + [ 6.9988699, 46.3531726 ], + [ 6.998409, 46.3520158 ], + [ 6.9978959, 46.3513751 ], + [ 6.9976592, 46.3510782 ], + [ 6.9974948999999995, 46.3508338 ], + [ 6.9974533, 46.3508417 ], + [ 6.9974481, 46.3508417 ], + [ 6.9964987999999995, 46.3508056 ], + [ 6.9964767, 46.3508028 ], + [ 6.9964183, 46.3507909 ], + [ 6.9963963, 46.3507845 ], + [ 6.9963847, 46.3507781 ], + [ 6.9963575, 46.3507627 ], + [ 6.9963498, 46.3507582 ], + [ 6.9961211, 46.3505963 ], + [ 6.9961173, 46.3505936 ], + [ 6.9959443, 46.350458 ], + [ 6.9955467, 46.3503026 ], + [ 6.9949746, 46.3503714 ], + [ 6.9932951, 46.3504925 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00054", + "country" : "CHE", + "name" : [ + { + "text" : "La Riondaz", + "lang" : "de-CH" + }, + { + "text" : "La Riondaz", + "lang" : "fr-CH" + }, + { + "text" : "La Riondaz", + "lang" : "it-CH" + }, + { + "text" : "La Riondaz", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "startDateTime" : "2024-11-15T00:00:00+01:00", + "endDateTime" : "2025-04-15T00:00:00+02:00" + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Generaldirektion für Umwelt", + "lang" : "de-CH" + }, + { + "text" : "Direction générale de l'environnement", + "lang" : "fr-CH" + }, + { + "text" : "Direzione generale dell'Ambiente", + "lang" : "it-CH" + }, + { + "text" : "Environment Department", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.dge@vd.ch", + "phone" : "0041213164422", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.2587147, 46.4883448 ], + [ 7.2588713, 46.4878404 ], + [ 7.2582004, 46.4875011 ], + [ 7.2575686, 46.4871636 ], + [ 7.2566401, 46.4867618 ], + [ 7.2558363, 46.4864583 ], + [ 7.2548046, 46.4861463 ], + [ 7.2542008, 46.4859807 ], + [ 7.2529729, 46.4855604 ], + [ 7.2523861, 46.4853939 ], + [ 7.2516341, 46.4851912 ], + [ 7.2505528, 46.4849321 ], + [ 7.2487196, 46.4844325 ], + [ 7.2475681, 46.484131 ], + [ 7.2463849, 46.4839877 ], + [ 7.246075, 46.4839611 ], + [ 7.245747, 46.4839192 ], + [ 7.245164, 46.4838058 ], + [ 7.2446771, 46.4837447 ], + [ 7.2441329, 46.4837095 ], + [ 7.2437447, 46.4837548 ], + [ 7.2427959, 46.4839726 ], + [ 7.2421947, 46.4841794 ], + [ 7.2416005, 46.4843025 ], + [ 7.2409373, 46.484385 ], + [ 7.2400736, 46.4844608 ], + [ 7.2394128, 46.4846243 ], + [ 7.2389379, 46.484834 ], + [ 7.238493, 46.4850787 ], + [ 7.2383582, 46.4855922 ], + [ 7.2441977, 46.4863598 ], + [ 7.243993, 46.4871411 ], + [ 7.2446286, 46.4871188 ], + [ 7.2451898, 46.4871522 ], + [ 7.2454619, 46.4871958 ], + [ 7.2458276, 46.487254 ], + [ 7.2463299, 46.4873691 ], + [ 7.2470127, 46.4876285 ], + [ 7.2471939, 46.4875811 ], + [ 7.2474035, 46.4876156 ], + [ 7.248219, 46.4875594 ], + [ 7.2482818, 46.4874714 ], + [ 7.2484031, 46.4874185 ], + [ 7.2485269, 46.4874079 ], + [ 7.2486479, 46.487427 ], + [ 7.2487889, 46.4869586 ], + [ 7.2529311, 46.4875052 ], + [ 7.2528176, 46.4879206 ], + [ 7.2536226, 46.4879039 ], + [ 7.2536822, 46.4876044 ], + [ 7.2549241, 46.4877675 ], + [ 7.2549016, 46.4878853 ], + [ 7.255847, 46.4879192 ], + [ 7.2587147, 46.4883448 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSGK002", + "country" : "CHE", + "name" : [ + { + "text" : "LSGK Saanen (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSGK Saanen (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSGK Saanen (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSGK Saanen (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Gstaad Airport", + "lang" : "de-CH" + }, + { + "text" : "Gstaad Airport", + "lang" : "fr-CH" + }, + { + "text" : "Gstaad Airport", + "lang" : "it-CH" + }, + { + "text" : "Gstaad Airport", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Thomas Rösti", + "lang" : "de-CH" + }, + { + "text" : "Thomas Rösti", + "lang" : "fr-CH" + }, + { + "text" : "Thomas Rösti", + "lang" : "it-CH" + }, + { + "text" : "Thomas Rösti", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.gstaad-airport.ch/en/", + "email" : "info@gstaad-airport.ch", + "phone" : "0041337483322", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.9459067999999995, 47.5087228 ], + [ 7.947323, 47.5089837 ], + [ 7.9497208, 47.5094444 ], + [ 7.9515654, 47.5098032 ], + [ 7.9521426, 47.5099176 ], + [ 7.9529487, 47.5100831 ], + [ 7.9534779, 47.5101779 ], + [ 7.9538293, 47.5093102 ], + [ 7.9535102, 47.5091227 ], + [ 7.9537477, 47.5087026 ], + [ 7.9535801, 47.5085261 ], + [ 7.9533544, 47.5083868 ], + [ 7.9531876, 47.5082904 ], + [ 7.9529881, 47.508392 ], + [ 7.9529373, 47.5083491 ], + [ 7.9529411, 47.5083365 ], + [ 7.952941, 47.5083203 ], + [ 7.9529302, 47.5083113 ], + [ 7.952604, 47.5082058 ], + [ 7.9519521, 47.5079145 ], + [ 7.9517313, 47.5081395 ], + [ 7.9513562, 47.5080665 ], + [ 7.9507775, 47.5080682 ], + [ 7.9505089, 47.5082978 ], + [ 7.950184, 47.5083325 ], + [ 7.9482005000000004, 47.5081632 ], + [ 7.9479401, 47.5081391 ], + [ 7.9462569, 47.5078605 ], + [ 7.9428832, 47.5072222 ], + [ 7.9424901, 47.5080433 ], + [ 7.9459067999999995, 47.5087228 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZI002", + "country" : "CHE", + "name" : [ + { + "text" : "LSZI Fricktal-Schupfart (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSZI Fricktal-Schupfart (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSZI Fricktal-Schupfart (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSZI Fricktal-Schupfart (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Flugplatz Fricktal-Schupfart", + "lang" : "de-CH" + }, + { + "text" : "Flugplatz Fricktal-Schupfart", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatz Fricktal-Schupfart", + "lang" : "it-CH" + }, + { + "text" : "Flugplatz Fricktal-Schupfart", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Herbert Ebner", + "lang" : "de-CH" + }, + { + "text" : "Herbert Ebner", + "lang" : "fr-CH" + }, + { + "text" : "Herbert Ebner", + "lang" : "it-CH" + }, + { + "text" : "Herbert Ebner", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.aecs-fricktal.ch", + "email" : "flugplatzchef@fricktal.ch", + "phone" : "0041628712222", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.0960001, 47.5598895 ], + [ 9.0959902, 47.5597484 ], + [ 9.0959694, 47.5596078 ], + [ 9.0959378, 47.5594682 ], + [ 9.0958955, 47.5593299 ], + [ 9.0958425, 47.5591932 ], + [ 9.095779, 47.5590587 ], + [ 9.0957052, 47.5589265 ], + [ 9.0956213, 47.5587972 ], + [ 9.0955275, 47.558671 ], + [ 9.0954241, 47.5585483 ], + [ 9.0953113, 47.5584295 ], + [ 9.0951895, 47.5583148 ], + [ 9.095059, 47.5582046 ], + [ 9.0949201, 47.5580991 ], + [ 9.0947733, 47.5579987 ], + [ 9.094619, 47.5579037 ], + [ 9.0944575, 47.5578142 ], + [ 9.0942893, 47.5577306 ], + [ 9.0941148, 47.5576531 ], + [ 9.0939347, 47.5575818 ], + [ 9.0937492, 47.5575171 ], + [ 9.093559, 47.557459 ], + [ 9.0933646, 47.5574077 ], + [ 9.0931664, 47.5573633 ], + [ 9.0929652, 47.5573261 ], + [ 9.0927613, 47.557296 ], + [ 9.0925553, 47.5572732 ], + [ 9.0923479, 47.5572577 ], + [ 9.0921396, 47.5572496 ], + [ 9.0919309, 47.5572489 ], + [ 9.0917225, 47.5572556 ], + [ 9.0915148, 47.5572696 ], + [ 9.0913086, 47.557291 ], + [ 9.0911042, 47.5573196 ], + [ 9.0909024, 47.5573555 ], + [ 9.0907036, 47.5573985 ], + [ 9.0905084, 47.5574484 ], + [ 9.0903173, 47.5575052 ], + [ 9.0901309, 47.5575687 ], + [ 9.0899497, 47.5576387 ], + [ 9.0897741, 47.557715 ], + [ 9.0896046, 47.5577975 ], + [ 9.0894418, 47.5578858 ], + [ 9.089286, 47.5579798 ], + [ 9.0891377, 47.5580791 ], + [ 9.0889973, 47.5581836 ], + [ 9.0888651, 47.5582929 ], + [ 9.0887416, 47.5584068 ], + [ 9.088627, 47.5585249 ], + [ 9.0885217, 47.5586468 ], + [ 9.0884261, 47.5587724 ], + [ 9.0883402, 47.5589011 ], + [ 9.0882644, 47.5590327 ], + [ 9.0881989, 47.5591668 ], + [ 9.0881438, 47.5593031 ], + [ 9.0880994, 47.5594411 ], + [ 9.0880657, 47.5595805 ], + [ 9.0880428, 47.5597209 ], + [ 9.0880308, 47.5598619 ], + [ 9.0880298, 47.5600032 ], + [ 9.0880396, 47.5601443 ], + [ 9.0880603, 47.5602848 ], + [ 9.0880919, 47.5604245 ], + [ 9.0881343, 47.5605628 ], + [ 9.0881872, 47.5606994 ], + [ 9.0882507, 47.560834 ], + [ 9.0883245, 47.5609661 ], + [ 9.0884084, 47.5610955 ], + [ 9.0885022, 47.5612216 ], + [ 9.0886056, 47.5613443 ], + [ 9.0887183, 47.5614632 ], + [ 9.0888401, 47.5615779 ], + [ 9.0889706, 47.5616881 ], + [ 9.0891095, 47.5617936 ], + [ 9.0892563, 47.561894 ], + [ 9.0894106, 47.561989 ], + [ 9.0895722, 47.5620785 ], + [ 9.0897404, 47.5621621 ], + [ 9.0899148, 47.5622397 ], + [ 9.090095, 47.5623109 ], + [ 9.0902805, 47.5623757 ], + [ 9.0904707, 47.5624338 ], + [ 9.0906651, 47.5624851 ], + [ 9.0908633, 47.5625294 ], + [ 9.0910646, 47.5625667 ], + [ 9.0912685, 47.5625968 ], + [ 9.0914744, 47.5626196 ], + [ 9.0916819, 47.5626351 ], + [ 9.0918902, 47.5626432 ], + [ 9.0920989, 47.5626439 ], + [ 9.0923074, 47.5626372 ], + [ 9.092515, 47.5626232 ], + [ 9.0927213, 47.5626018 ], + [ 9.0929257, 47.5625731 ], + [ 9.0931275, 47.5625373 ], + [ 9.0933263, 47.5624943 ], + [ 9.0935215, 47.5624443 ], + [ 9.0937126, 47.5623875 ], + [ 9.0938991, 47.5623241 ], + [ 9.0940803, 47.5622541 ], + [ 9.0942559, 47.5621777 ], + [ 9.0944254, 47.5620953 ], + [ 9.0945882, 47.5620069 ], + [ 9.094744, 47.5619129 ], + [ 9.0948923, 47.5618136 ], + [ 9.0950328, 47.5617091 ], + [ 9.0951649, 47.5615998 ], + [ 9.0952884, 47.5614859 ], + [ 9.095403, 47.5613678 ], + [ 9.0955082, 47.5612458 ], + [ 9.0956039, 47.5611203 ], + [ 9.0956898, 47.5609916 ], + [ 9.0957655, 47.5608599 ], + [ 9.095831, 47.5607258 ], + [ 9.0958861, 47.5605896 ], + [ 9.0959305, 47.5604516 ], + [ 9.0959642, 47.5603121 ], + [ 9.095987, 47.5601717 ], + [ 9.095999, 47.5600307 ], + [ 9.0960001, 47.5598895 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0127", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Weinfelden", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Weinfelden", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Weinfelden", + "lang" : "it-CH" + }, + { + "text" : "Substation Weinfelden", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.2632642, 46.2507237 ], + [ 6.2630496, 46.2504934 ], + [ 6.2618004, 46.2498953 ], + [ 6.2615, 46.2498506 ], + [ 6.2613248, 46.2496627 ], + [ 6.2600756, 46.2490646 ], + [ 6.2591898, 46.2489327 ], + [ 6.2590258, 46.2483119 ], + [ 6.2582016, 46.2474276 ], + [ 6.2569525, 46.2468295 ], + [ 6.2554686, 46.2466085 ], + [ 6.2539758, 46.2467983 ], + [ 6.2527012, 46.24737 ], + [ 6.2518389, 46.2482366 ], + [ 6.2515203, 46.2492661 ], + [ 6.2517504, 46.2501374 ], + [ 6.2516787, 46.2502095 ], + [ 6.25136, 46.251239 ], + [ 6.2516336, 46.2522748 ], + [ 6.2524577, 46.2531591 ], + [ 6.2537068, 46.2537572 ], + [ 6.2544384, 46.2538662 ], + [ 6.2551279, 46.2541963 ], + [ 6.2552402, 46.254213 ], + [ 6.2558824, 46.2545206 ], + [ 6.2573666, 46.2547415 ], + [ 6.2582528, 46.2546289 ], + [ 6.2587152, 46.2548502 ], + [ 6.2601993, 46.2550712 ], + [ 6.2610534, 46.2549626 ], + [ 6.2616715, 46.2545612 ], + [ 6.2612485, 46.2536279 ], + [ 6.2610719, 46.253247 ], + [ 6.2609221999999995, 46.2528441 ], + [ 6.2609172, 46.2527649 ], + [ 6.260861, 46.2526614 ], + [ 6.2607132, 46.2524509 ], + [ 6.2606237, 46.2523502 ], + [ 6.2601774, 46.2518141 ], + [ 6.2601519, 46.2516792 ], + [ 6.2603698, 46.2515649 ], + [ 6.2607064, 46.2515068 ], + [ 6.2608098, 46.251482 ], + [ 6.2611922, 46.2513467 ], + [ 6.2613921999999995, 46.2512884 ], + [ 6.2619612, 46.2511756 ], + [ 6.2622236000000004, 46.2511422 ], + [ 6.2625658, 46.2510752 ], + [ 6.2627914, 46.2510058 ], + [ 6.2630143, 46.2509053 ], + [ 6.2632642, 46.2507237 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-29", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8806695, 47.4705692 ], + [ 7.8804537, 47.4707866 ], + [ 7.8804694, 47.4708065 ], + [ 7.8806356, 47.4709789 ], + [ 7.8808069, 47.4711317 ], + [ 7.8808579, 47.4711537 ], + [ 7.8808863, 47.4711684 ], + [ 7.880991, 47.4712157 ], + [ 7.8811036, 47.4712636 ], + [ 7.8819052, 47.4716086 ], + [ 7.8819509, 47.4716277 ], + [ 7.8819962, 47.4716473 ], + [ 7.8820411, 47.4716673 ], + [ 7.8820855, 47.4716877 ], + [ 7.8821295, 47.4717085 ], + [ 7.8821731, 47.4717298 ], + [ 7.8822163, 47.4717515 ], + [ 7.8822931, 47.4718006 ], + [ 7.8823733, 47.471876 ], + [ 7.8823879, 47.4718932 ], + [ 7.8825038, 47.4720236 ], + [ 7.8827957, 47.4723417 ], + [ 7.8829768, 47.4725394 ], + [ 7.8830696, 47.4726405 ], + [ 7.8833059, 47.4728984 ], + [ 7.8836093, 47.4732304 ], + [ 7.8836337, 47.4732584 ], + [ 7.8836574, 47.4732867 ], + [ 7.8836804, 47.4733152 ], + [ 7.8837026, 47.473344 ], + [ 7.883724, 47.4733731 ], + [ 7.8837447, 47.4734024 ], + [ 7.8837646, 47.473432 ], + [ 7.8837837, 47.4734618 ], + [ 7.883802, 47.4734919 ], + [ 7.8838196, 47.4735221 ], + [ 7.8838363, 47.4735526 ], + [ 7.8838523, 47.4735833 ], + [ 7.8839787999999995, 47.4738205 ], + [ 7.8839943, 47.4738481 ], + [ 7.8840104, 47.4738754 ], + [ 7.8840272, 47.4739026 ], + [ 7.8840447, 47.4739296 ], + [ 7.8840628, 47.4739563 ], + [ 7.8840816, 47.4739829 ], + [ 7.8841626, 47.4740912 ], + [ 7.8841828, 47.4741174 ], + [ 7.8842038, 47.4741434 ], + [ 7.8842256, 47.474169 ], + [ 7.8842481, 47.4741944 ], + [ 7.8842714, 47.4742194 ], + [ 7.8842954, 47.4742442 ], + [ 7.8843661, 47.4742985 ], + [ 7.8844645, 47.4743567 ], + [ 7.8845646, 47.4744217 ], + [ 7.8845757, 47.4744173 ], + [ 7.8846247, 47.4744476 ], + [ 7.8846546, 47.4745017 ], + [ 7.8846812, 47.4746086 ], + [ 7.8847046, 47.4746072 ], + [ 7.8847398, 47.4745832 ], + [ 7.8847469, 47.4745789 ], + [ 7.8847651, 47.4745677 ], + [ 7.8849152, 47.474476 ], + [ 7.8850845, 47.4747358 ], + [ 7.8855515, 47.4745742 ], + [ 7.885717, 47.4745157 ], + [ 7.8859557, 47.4744312 ], + [ 7.8859804, 47.4744259 ], + [ 7.8860273, 47.4744755 ], + [ 7.8861589, 47.4746843 ], + [ 7.8863684, 47.4750164 ], + [ 7.8864744, 47.4751579 ], + [ 7.8866213, 47.4752871 ], + [ 7.886772, 47.475367 ], + [ 7.8868960999999995, 47.4754049 ], + [ 7.8869897, 47.475429 ], + [ 7.8872564, 47.4754899 ], + [ 7.887382, 47.4755255 ], + [ 7.8875006, 47.4755662 ], + [ 7.8876105, 47.4756069 ], + [ 7.8877692, 47.4756767 ], + [ 7.8879161, 47.4757565 ], + [ 7.8881376, 47.475880599999996 ], + [ 7.8883141, 47.4759891 ], + [ 7.888325, 47.4759963 ], + [ 7.8883353, 47.4760039 ], + [ 7.8883449, 47.476012 ], + [ 7.8883538, 47.4760203 ], + [ 7.888362, 47.4760291 ], + [ 7.8883695, 47.4760381 ], + [ 7.8883762, 47.4760474 ], + [ 7.888382, 47.4760569 ], + [ 7.8883868, 47.4760645 ], + [ 7.888391, 47.4760722 ], + [ 7.8883947, 47.4760801 ], + [ 7.8883979, 47.476088 ], + [ 7.8884004999999995, 47.4760961 ], + [ 7.8889416, 47.4762032 ], + [ 7.8890299, 47.4762173 ], + [ 7.8893367, 47.4762637 ], + [ 7.889483, 47.4762956 ], + [ 7.8895327, 47.4763049 ], + [ 7.8896032, 47.4763175 ], + [ 7.8896974, 47.4763347 ], + [ 7.8899002, 47.4763245 ], + [ 7.8899527, 47.4763309 ], + [ 7.890228, 47.4763012 ], + [ 7.8902736, 47.4763018 ], + [ 7.8902792, 47.4763213 ], + [ 7.8902839, 47.4763408 ], + [ 7.8902877, 47.4763605 ], + [ 7.8902906, 47.4763802 ], + [ 7.8902926, 47.4764 ], + [ 7.8902936, 47.4764198 ], + [ 7.8902937, 47.4764396 ], + [ 7.8902929, 47.4764594 ], + [ 7.8902912, 47.4764791 ], + [ 7.8902884, 47.4764988 ], + [ 7.8902847, 47.4765184 ], + [ 7.8902801, 47.476538 ], + [ 7.8902746, 47.4765574 ], + [ 7.8902681, 47.4765767 ], + [ 7.8902608, 47.4765958 ], + [ 7.8902526, 47.4766148 ], + [ 7.8902435, 47.4766336 ], + [ 7.8902336, 47.4766522 ], + [ 7.8900565, 47.4769622 ], + [ 7.8900318, 47.4770186 ], + [ 7.8898825, 47.4774724 ], + [ 7.8898796, 47.4774807 ], + [ 7.8898774, 47.4774891 ], + [ 7.889876, 47.4774975 ], + [ 7.8898754, 47.477506 ], + [ 7.8898755, 47.4775145 ], + [ 7.8898764, 47.477523 ], + [ 7.8898781, 47.4775314 ], + [ 7.8898805, 47.4775398 ], + [ 7.8898836, 47.4775481 ], + [ 7.8898875, 47.4775563 ], + [ 7.8898921, 47.4775643 ], + [ 7.8898974, 47.4775721 ], + [ 7.8899034, 47.4775796 ], + [ 7.8899101, 47.4775869 ], + [ 7.8900296999999995, 47.4777167 ], + [ 7.8909968, 47.4776513 ], + [ 7.8909901, 47.4776229 ], + [ 7.8910512, 47.4772954 ], + [ 7.8912897, 47.4770116 ], + [ 7.8916008, 47.4766917 ], + [ 7.8918591, 47.4764513 ], + [ 7.8933900999999995, 47.4762142 ], + [ 7.8941764, 47.4760533 ], + [ 7.8939987, 47.4757957 ], + [ 7.8938279, 47.4755481 ], + [ 7.8936752, 47.475327 ], + [ 7.8936753, 47.4753268 ], + [ 7.893281, 47.4752441 ], + [ 7.8927737, 47.4751369 ], + [ 7.8923431, 47.4750437 ], + [ 7.8919971, 47.474966 ], + [ 7.8912829, 47.4748055 ], + [ 7.8912819, 47.4748052 ], + [ 7.8909446, 47.4747198 ], + [ 7.890198, 47.4745307 ], + [ 7.8901587, 47.4743832 ], + [ 7.8898647, 47.4742767 ], + [ 7.8895563, 47.4741516 ], + [ 7.8893153, 47.4740413 ], + [ 7.8891045, 47.4739266 ], + [ 7.8891678, 47.4737575 ], + [ 7.8892454, 47.4735875 ], + [ 7.8890195, 47.4734237 ], + [ 7.8886575, 47.4732421 ], + [ 7.8884462, 47.4731396 ], + [ 7.8881259, 47.4730466 ], + [ 7.8878415, 47.4729525 ], + [ 7.8877599, 47.4725907 ], + [ 7.8877759, 47.4723983 ], + [ 7.8877916, 47.472208 ], + [ 7.8878875, 47.4719581 ], + [ 7.8881402, 47.4719793 ], + [ 7.8887417, 47.4721435 ], + [ 7.8890417, 47.4722153 ], + [ 7.889049, 47.4722171 ], + [ 7.8896337, 47.472355 ], + [ 7.8897279, 47.4723774 ], + [ 7.890483, 47.4725643 ], + [ 7.8905097, 47.4725396 ], + [ 7.8903322, 47.4723686 ], + [ 7.8901185, 47.4721822 ], + [ 7.8902363, 47.471973 ], + [ 7.8900527, 47.4719107 ], + [ 7.889876, 47.4718486 ], + [ 7.8895233, 47.4717348 ], + [ 7.889581, 47.4714046 ], + [ 7.8895821999999995, 47.4714011 ], + [ 7.8896341, 47.471123 ], + [ 7.8897431000000005, 47.4707335 ], + [ 7.8893117, 47.4705892 ], + [ 7.8890635, 47.4704953 ], + [ 7.8888796, 47.4703944 ], + [ 7.8885791, 47.4702591 ], + [ 7.8884336, 47.4700155 ], + [ 7.8879501, 47.469868 ], + [ 7.8877587, 47.4701528 ], + [ 7.8876521, 47.4702957 ], + [ 7.8875093, 47.4704816 ], + [ 7.8873449, 47.4703574 ], + [ 7.887072, 47.4702658 ], + [ 7.886643, 47.4701591 ], + [ 7.8863192, 47.4700786 ], + [ 7.8859931, 47.4700143 ], + [ 7.8856496, 47.4699576 ], + [ 7.8854404, 47.469923 ], + [ 7.8853204, 47.4699032 ], + [ 7.8851268, 47.4698713 ], + [ 7.8850089, 47.4698527 ], + [ 7.8846786, 47.4698008 ], + [ 7.8841593, 47.4696743 ], + [ 7.8841924, 47.4692895 ], + [ 7.883922, 47.4692447 ], + [ 7.8833904, 47.4691135 ], + [ 7.8832759, 47.4693624 ], + [ 7.8828867, 47.4692528 ], + [ 7.8828744, 47.4692884 ], + [ 7.8828184, 47.4694275 ], + [ 7.8823299, 47.4694526 ], + [ 7.8821122, 47.4694591 ], + [ 7.8817046, 47.4694656 ], + [ 7.881603, 47.4694684 ], + [ 7.8814558, 47.4694829 ], + [ 7.8811923, 47.4695108 ], + [ 7.8809605, 47.4696145 ], + [ 7.8809038000000005, 47.4696424 ], + [ 7.8805521, 47.4697123 ], + [ 7.8803506, 47.4698384 ], + [ 7.8803964, 47.4701365 ], + [ 7.8803304999999995, 47.4702879 ], + [ 7.8803114, 47.4703271 ], + [ 7.8803049, 47.4703403 ], + [ 7.8806695, 47.4705692 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns239", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Wischberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Wischberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Wischberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Wischberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5777377, 47.4447946 ], + [ 7.5773693, 47.4450232 ], + [ 7.5774308999999995, 47.4451901 ], + [ 7.5775293, 47.4454438 ], + [ 7.5776295000000005, 47.4456918 ], + [ 7.5777299, 47.4459309 ], + [ 7.5777657, 47.4460527 ], + [ 7.5777965, 47.4461761 ], + [ 7.5779911, 47.4463162 ], + [ 7.5782385, 47.4465631 ], + [ 7.5783275, 47.4468044 ], + [ 7.5783456000000005, 47.4468459 ], + [ 7.5785742, 47.4470812 ], + [ 7.5785255, 47.4474364 ], + [ 7.5784368, 47.4479179 ], + [ 7.5781429, 47.4480703 ], + [ 7.5778923, 47.4483114 ], + [ 7.5778028, 47.4487918 ], + [ 7.5778245, 47.4490646 ], + [ 7.5778143, 47.4493299 ], + [ 7.5778524, 47.4497411 ], + [ 7.577857, 47.4500316 ], + [ 7.5779977, 47.450325 ], + [ 7.5777899, 47.4503467 ], + [ 7.5757245, 47.4505884 ], + [ 7.5748669, 47.4517582 ], + [ 7.57372, 47.452272 ], + [ 7.5726357, 47.4527062 ], + [ 7.5717662, 47.4525743 ], + [ 7.5710682, 47.4523815 ], + [ 7.5702248999999995, 47.4521871 ], + [ 7.5694946, 47.4529588 ], + [ 7.5693251, 47.4531704 ], + [ 7.5693321000000005, 47.4531736 ], + [ 7.5693428, 47.4531602 ], + [ 7.5696525999999995, 47.4533041 ], + [ 7.5706150999999995, 47.4536875 ], + [ 7.5712988, 47.4539738 ], + [ 7.5717586, 47.454202 ], + [ 7.5724981, 47.4543813 ], + [ 7.5728642, 47.4544441 ], + [ 7.5732076, 47.4540203 ], + [ 7.5734652, 47.4537329 ], + [ 7.5739260999999996, 47.4532636 ], + [ 7.5738817, 47.4534157 ], + [ 7.5739358, 47.4536644 ], + [ 7.5740891, 47.4538457 ], + [ 7.5742498, 47.4539439 ], + [ 7.5743798, 47.4539593 ], + [ 7.5748307, 47.4539899 ], + [ 7.5753273, 47.4539116 ], + [ 7.5755868, 47.4537921 ], + [ 7.5757315, 47.4536157 ], + [ 7.5762499, 47.4531175 ], + [ 7.5767345, 47.4527357 ], + [ 7.5771084, 47.4525279 ], + [ 7.5777114, 47.4522421 ], + [ 7.5780546, 47.4519877 ], + [ 7.5783518999999995, 47.4517075 ], + [ 7.5786646, 47.4514842 ], + [ 7.5788872, 47.4513275 ], + [ 7.5797217, 47.4514076 ], + [ 7.5797292, 47.4513453 ], + [ 7.5797824, 47.4512364 ], + [ 7.5799197, 47.4511378 ], + [ 7.5800415999999995, 47.4510236 ], + [ 7.5801022, 47.4508058 ], + [ 7.5801392, 47.4503652 ], + [ 7.5801167, 47.4499675 ], + [ 7.5801694, 47.4496721 ], + [ 7.5802071, 47.4495061 ], + [ 7.5800987, 47.4489569 ], + [ 7.5800827, 47.4486873 ], + [ 7.5800975, 47.4484814 ], + [ 7.5800511, 47.448269 ], + [ 7.5801119, 47.44816 ], + [ 7.5800734, 47.4480668 ], + [ 7.5798665, 47.4478131 ], + [ 7.5797514, 47.4476266 ], + [ 7.5798732, 47.446955 ], + [ 7.5798718, 47.4464056 ], + [ 7.5799073, 47.4460547 ], + [ 7.5798272, 47.445997 ], + [ 7.5794707, 47.4457977 ], + [ 7.5791056999999995, 47.4455547 ], + [ 7.5786611, 47.4453196 ], + [ 7.5782724, 47.4450825 ], + [ 7.5777377, 47.4447946 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr010", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Eggflue", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Eggflue", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Eggflue", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Eggflue", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.0098618, 46.1882388 ], + [ 6.0099235, 46.1883055 ], + [ 6.0098836, 46.1884329 ], + [ 6.0101522, 46.1894692 ], + [ 6.0109714, 46.1903552 ], + [ 6.0113628, 46.1905441 ], + [ 6.011399, 46.1906839 ], + [ 6.0122183, 46.19157 ], + [ 6.0134634, 46.1921708 ], + [ 6.0149449, 46.192395 ], + [ 6.0164371, 46.1922083 ], + [ 6.0177128, 46.1916393 ], + [ 6.0185779, 46.1907745 ], + [ 6.0187961, 46.1900789 ], + [ 6.0190307, 46.1900496 ], + [ 6.0203063, 46.1894805 ], + [ 6.0211713, 46.1886157 ], + [ 6.0214939, 46.1875869 ], + [ 6.0212251, 46.1865506 ], + [ 6.0204058, 46.1856646 ], + [ 6.0191607, 46.1850639 ], + [ 6.018721, 46.1849973 ], + [ 6.0190382, 46.1848943 ], + [ 6.0199264, 46.1843178 ], + [ 6.0199441, 46.184302 ], + [ 6.020625, 46.1833613 ], + [ 6.0207357, 46.1823112 ], + [ 6.0202596, 46.1813116 ], + [ 6.019269, 46.1805146 ], + [ 6.0192059, 46.1804805 ], + [ 6.0181422, 46.1800718 ], + [ 6.0169487, 46.1799115 ], + [ 6.0157423, 46.1800152 ], + [ 6.0146411, 46.1803728 ], + [ 6.0137529, 46.1809493 ], + [ 6.0137351, 46.1809651 ], + [ 6.0130542, 46.1819058 ], + [ 6.0129433, 46.1829558 ], + [ 6.0134193, 46.1839555 ], + [ 6.0143045, 46.1846677 ], + [ 6.0135488, 46.1845534 ], + [ 6.0120568, 46.18474 ], + [ 6.0119013, 46.1848093 ], + [ 6.0117041, 46.1840489 ], + [ 6.010885, 46.1831629 ], + [ 6.0096401, 46.182562 ], + [ 6.0081589, 46.1823378 ], + [ 6.006667, 46.1825243 ], + [ 6.0053913, 46.1830932 ], + [ 6.0045262, 46.1839579 ], + [ 6.0042032, 46.1849867 ], + [ 6.0044717, 46.186023 ], + [ 6.0052908, 46.1869091 ], + [ 6.0065358, 46.18751 ], + [ 6.0080171, 46.1877342 ], + [ 6.0095092, 46.1875477 ], + [ 6.0096647, 46.1874783 ], + [ 6.0098618, 46.1882388 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-13", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.2706495, 47.1895132 ], + [ 8.2705225, 47.1871602 ], + [ 8.2702151, 47.1848151 ], + [ 8.269728, 47.182484 ], + [ 8.2690628, 47.1801736 ], + [ 8.2682212, 47.17789 ], + [ 8.2672055, 47.1756396 ], + [ 8.2660186, 47.1734285 ], + [ 8.2646637, 47.1712628 ], + [ 8.2631446, 47.1691484 ], + [ 8.2614654, 47.1670911 ], + [ 8.2596308, 47.1650965 ], + [ 8.2576458, 47.1631701 ], + [ 8.2555158, 47.1613171 ], + [ 8.2532466, 47.1595427 ], + [ 8.2508446, 47.1578516 ], + [ 8.2483163, 47.1562486 ], + [ 8.2456686, 47.154738 ], + [ 8.2429088, 47.1533238 ], + [ 8.2400444, 47.1520101 ], + [ 8.2370833, 47.1508004 ], + [ 8.2340335, 47.1496979 ], + [ 8.2309035, 47.1487058 ], + [ 8.2277018, 47.1478267 ], + [ 8.2244371, 47.1470631 ], + [ 8.2211183, 47.1464169 ], + [ 8.2177547, 47.14589 ], + [ 8.2143553, 47.1454839 ], + [ 8.2109294, 47.1451996 ], + [ 8.2074864, 47.1450379 ], + [ 8.2040358, 47.1449993 ], + [ 8.2005869, 47.1450838 ], + [ 8.1971492, 47.1452913 ], + [ 8.1937321, 47.1456211 ], + [ 8.190345, 47.1460724 ], + [ 8.186997, 47.1466439 ], + [ 8.1836973, 47.1473341 ], + [ 8.1804551, 47.148141 ], + [ 8.1772791, 47.1490626 ], + [ 8.174178, 47.1500961 ], + [ 8.1711603, 47.1512389 ], + [ 8.1682343, 47.1524878 ], + [ 8.165408, 47.1538394 ], + [ 8.1626891, 47.15529 ], + [ 8.160085, 47.1568356 ], + [ 8.157603, 47.1584719 ], + [ 8.1552498, 47.1601946 ], + [ 8.1530318, 47.1619989 ], + [ 8.1509552, 47.1638798 ], + [ 8.1490256, 47.1658323 ], + [ 8.1472483, 47.1678509 ], + [ 8.1456283, 47.1699302 ], + [ 8.1441699, 47.1720644 ], + [ 8.1428772, 47.1742477 ], + [ 8.1417538, 47.1764742 ], + [ 8.1408027, 47.1787377 ], + [ 8.1400266, 47.181032 ], + [ 8.1394276, 47.1833508 ], + [ 8.1390074, 47.1856879 ], + [ 8.1387671, 47.1880367 ], + [ 8.1387075, 47.1903909 ], + [ 8.1388287, 47.192744 ], + [ 8.139130399999999, 47.1950896 ], + [ 8.1396119, 47.1974211 ], + [ 8.1402717, 47.1997323 ], + [ 8.1411082, 47.2020168 ], + [ 8.1421191, 47.2042683 ], + [ 8.1433015, 47.2064806 ], + [ 8.1446524, 47.2086477 ], + [ 8.1461679, 47.2107637 ], + [ 8.1478441, 47.2128227 ], + [ 8.1496761, 47.214819 ], + [ 8.1516592, 47.2167473 ], + [ 8.1537878, 47.2186021 ], + [ 8.1560561, 47.2203785 ], + [ 8.158458, 47.2220715 ], + [ 8.1609867, 47.2236765 ], + [ 8.1636354, 47.2251891 ], + [ 8.1663969, 47.2266051 ], + [ 8.1692634, 47.2279206 ], + [ 8.1722273, 47.2291321 ], + [ 8.1752803, 47.2302361 ], + [ 8.1784141, 47.2312297 ], + [ 8.18162, 47.2321102 ], + [ 8.1848893, 47.232875 ], + [ 8.1882129, 47.2335222 ], + [ 8.1915818, 47.2340499 ], + [ 8.1949867, 47.2344567 ], + [ 8.1984182, 47.2347415 ], + [ 8.2018669, 47.2349035 ], + [ 8.2053234, 47.2349422 ], + [ 8.2087781, 47.2348575 ], + [ 8.2122215, 47.2346497 ], + [ 8.2156441, 47.2343193 ], + [ 8.2190367, 47.2338673 ], + [ 8.2223898, 47.2332949 ], + [ 8.2256943, 47.2326036 ], + [ 8.228941, 47.2317954 ], + [ 8.232121, 47.2308724 ], + [ 8.2352257, 47.2298373 ], + [ 8.2382464, 47.2286929 ], + [ 8.241175, 47.2274422 ], + [ 8.2440032, 47.2260888 ], + [ 8.2467235, 47.2246363 ], + [ 8.2493284, 47.2230888 ], + [ 8.2518106, 47.2214505 ], + [ 8.2541634, 47.2197259 ], + [ 8.2563803, 47.2179197 ], + [ 8.2584554, 47.2160368 ], + [ 8.2603828, 47.2140826 ], + [ 8.2621573, 47.2120622 ], + [ 8.2637741, 47.2099813 ], + [ 8.2652287, 47.2078456 ], + [ 8.2665172, 47.2056609 ], + [ 8.267636, 47.2034333 ], + [ 8.2685822, 47.2011688 ], + [ 8.2693531, 47.1988736 ], + [ 8.2699466, 47.1965541 ], + [ 8.2703612, 47.1942166 ], + [ 8.2705957, 47.1918675 ], + [ 8.2706495, 47.1895132 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZO001", + "country" : "CHE", + "name" : [ + { + "text" : "LSZO Luzern-Beromünster", + "lang" : "de-CH" + }, + { + "text" : "LSZO Luzern-Beromünster", + "lang" : "fr-CH" + }, + { + "text" : "LSZO Luzern-Beromünster", + "lang" : "it-CH" + }, + { + "text" : "LSZO Luzern-Beromünster", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "FLUBAG Flugbetriebs AG Luzern Beromünster", + "lang" : "de-CH" + }, + { + "text" : "FLUBAG Flugbetriebs AG Luzern Beromünster", + "lang" : "fr-CH" + }, + { + "text" : "FLUBAG Flugbetriebs AG Luzern Beromünster", + "lang" : "it-CH" + }, + { + "text" : "FLUBAG Flugbetriebs AG Luzern Beromünster", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.flubag.ch", + "email" : "flubag@flubag.ch", + "phone" : "0041419301866", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P01DT12H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6420569, 47.3767624 ], + [ 7.6420403, 47.3769932 ], + [ 7.6422482, 47.3770186 ], + [ 7.6424627, 47.3770951 ], + [ 7.6425913, 47.3770748 ], + [ 7.6426586, 47.3770426 ], + [ 7.6427226, 47.3769156 ], + [ 7.6427093, 47.3768609 ], + [ 7.6426590999999995, 47.3767803 ], + [ 7.6427485, 47.3767238 ], + [ 7.6429341, 47.3767979 ], + [ 7.6429314, 47.3769268 ], + [ 7.6429867, 47.3769525 ], + [ 7.6430323, 47.3768786 ], + [ 7.6431146, 47.3768701 ], + [ 7.6433251, 47.3769571 ], + [ 7.6434036, 47.3769934 ], + [ 7.6434195, 47.377004 ], + [ 7.6434280999999995, 47.3770271 ], + [ 7.6434387, 47.3770507 ], + [ 7.6434955, 47.3771212 ], + [ 7.6435265, 47.3771513 ], + [ 7.6435429, 47.3771598 ], + [ 7.6435627, 47.3771632 ], + [ 7.6435792, 47.3771611 ], + [ 7.6436139, 47.377156 ], + [ 7.6437154, 47.3771248 ], + [ 7.6438308, 47.3770954 ], + [ 7.6438359, 47.3771127 ], + [ 7.6438535, 47.37713 ], + [ 7.6438754, 47.3771398 ], + [ 7.6438971, 47.3771412 ], + [ 7.6439215, 47.3771372 ], + [ 7.6439471999999995, 47.3771288 ], + [ 7.6439681, 47.3771161 ], + [ 7.6439839, 47.3771017 ], + [ 7.6439901, 47.3770847 ], + [ 7.6439883, 47.3770701 ], + [ 7.6439775, 47.3770548 ], + [ 7.643957, 47.3770338 ], + [ 7.6438413, 47.3769467 ], + [ 7.6437205, 47.3768719 ], + [ 7.643702, 47.3768643 ], + [ 7.6436774, 47.3768605 ], + [ 7.6436435, 47.376858 ], + [ 7.643601, 47.37686 ], + [ 7.6435617, 47.3768665 ], + [ 7.6435179, 47.376874 ], + [ 7.643498, 47.3768725 ], + [ 7.6434299, 47.3768354 ], + [ 7.6433457, 47.3767832 ], + [ 7.643306, 47.3767661 ], + [ 7.6432707, 47.3767516 ], + [ 7.6432375, 47.3767309 ], + [ 7.6432224, 47.3767147 ], + [ 7.6432124, 47.3766855 ], + [ 7.6432112, 47.3766736 ], + [ 7.6432211, 47.376669 ], + [ 7.6432893, 47.3766687 ], + [ 7.6434197, 47.3766783 ], + [ 7.6434821, 47.3766829 ], + [ 7.6436168, 47.3766839 ], + [ 7.6436854, 47.3766887 ], + [ 7.643776, 47.3767172 ], + [ 7.6438275, 47.3767208 ], + [ 7.643921, 47.3767341 ], + [ 7.6440198, 47.3767586 ], + [ 7.6441249, 47.3767895 ], + [ 7.6441598, 47.3768064 ], + [ 7.6441864, 47.376815 ], + [ 7.6442156, 47.3768184 ], + [ 7.6442374, 47.376819 ], + [ 7.6442906, 47.3768245 ], + [ 7.6443848, 47.3768403 ], + [ 7.6444211, 47.3768473 ], + [ 7.6444447, 47.3768563 ], + [ 7.6444611, 47.3768661 ], + [ 7.6444705, 47.3768832 ], + [ 7.644489, 47.3769044 ], + [ 7.6445162, 47.3769186 ], + [ 7.6445445, 47.3769263 ], + [ 7.6446178, 47.3769286 ], + [ 7.6446815, 47.3769374 ], + [ 7.6447528, 47.3769458 ], + [ 7.6448085, 47.3769485 ], + [ 7.6448841, 47.376947 ], + [ 7.6450519, 47.376937 ], + [ 7.6451404, 47.3769159 ], + [ 7.6453999, 47.3768928 ], + [ 7.6454334, 47.3768914 ], + [ 7.6454705, 47.3768956 ], + [ 7.6456183, 47.3769148 ], + [ 7.6457444, 47.3769361 ], + [ 7.6460467, 47.3769748 ], + [ 7.6462923, 47.3770417 ], + [ 7.6463582, 47.3770699 ], + [ 7.6464043, 47.3770929 ], + [ 7.646483, 47.3771654 ], + [ 7.6465217, 47.3771779 ], + [ 7.6465524, 47.3771776 ], + [ 7.6465773, 47.3771727 ], + [ 7.6465951, 47.3771648 ], + [ 7.6466058, 47.3771509 ], + [ 7.6466072, 47.3771321 ], + [ 7.6466036, 47.3771034 ], + [ 7.6465888, 47.3770631 ], + [ 7.6465668, 47.3770223 ], + [ 7.6465435, 47.3769896 ], + [ 7.6465117, 47.3769618 ], + [ 7.6464731, 47.3769344 ], + [ 7.6464595, 47.3769235 ], + [ 7.6464487, 47.3769117 ], + [ 7.6464441, 47.3768975 ], + [ 7.6464445, 47.3768396 ], + [ 7.6464495, 47.3768215 ], + [ 7.6464613, 47.3768061 ], + [ 7.6464799, 47.3767913 ], + [ 7.6465005, 47.3767828 ], + [ 7.6465281, 47.376776 ], + [ 7.6466001, 47.3767682 ], + [ 7.6466722, 47.3767606 ], + [ 7.646705, 47.376754 ], + [ 7.6467355999999995, 47.3767458 ], + [ 7.6467674, 47.376735 ], + [ 7.6468596, 47.3767044 ], + [ 7.6468798, 47.3767004 ], + [ 7.6469059, 47.3766992 ], + [ 7.6469274, 47.376703 ], + [ 7.6470697, 47.3767699 ], + [ 7.6471244, 47.3767641 ], + [ 7.6471877, 47.3767304 ], + [ 7.6472411000000005, 47.3767066 ], + [ 7.6472779, 47.3766831 ], + [ 7.6472925, 47.3766685 ], + [ 7.6473102, 47.3766435 ], + [ 7.647327, 47.3766081 ], + [ 7.6473419, 47.3765709 ], + [ 7.6473576, 47.3765393 ], + [ 7.6474024, 47.3764914 ], + [ 7.6474133, 47.3764752 ], + [ 7.6474172, 47.3764548 ], + [ 7.647416, 47.376424 ], + [ 7.6474233, 47.3764073 ], + [ 7.6476331, 47.3765771 ], + [ 7.6476669, 47.376603 ], + [ 7.6477006, 47.3766235 ], + [ 7.6477249, 47.3766372 ], + [ 7.6479851, 47.3767344 ], + [ 7.6482813, 47.3768479 ], + [ 7.6483768, 47.3769026 ], + [ 7.6485168, 47.3769584 ], + [ 7.6486426, 47.3770135 ], + [ 7.6487618, 47.3770518 ], + [ 7.6488648999999995, 47.3770825 ], + [ 7.6489545, 47.3771171 ], + [ 7.6490252, 47.3771466 ], + [ 7.64907, 47.377169 ], + [ 7.6491016, 47.3771879 ], + [ 7.6491555, 47.3772088 ], + [ 7.649197, 47.3772186 ], + [ 7.6492497, 47.377226 ], + [ 7.6492939, 47.3772339 ], + [ 7.6493412, 47.3772463 ], + [ 7.649734, 47.3773579 ], + [ 7.6500205999999995, 47.3774551 ], + [ 7.6500976, 47.377475 ], + [ 7.6503148, 47.3775154 ], + [ 7.6504776, 47.3775357 ], + [ 7.6505545, 47.3775479 ], + [ 7.6506327, 47.3775618 ], + [ 7.6506905, 47.377578 ], + [ 7.6507673, 47.3776033 ], + [ 7.65081, 47.3776134 ], + [ 7.6508715, 47.3776255 ], + [ 7.6509471, 47.3776352 ], + [ 7.6510625, 47.3776522 ], + [ 7.6511843, 47.3777022 ], + [ 7.6512051, 47.3777077 ], + [ 7.6512199, 47.3777083 ], + [ 7.6512395, 47.3777047 ], + [ 7.6513699, 47.3776552 ], + [ 7.6515406, 47.3775964 ], + [ 7.6515783, 47.3775854 ], + [ 7.6516468, 47.3775722 ], + [ 7.6516643, 47.377569 ], + [ 7.6516885, 47.3775646 ], + [ 7.6517163, 47.3775582 ], + [ 7.6517634999999995, 47.37754 ], + [ 7.6517745, 47.3775342 ], + [ 7.6517783999999995, 47.3775252 ], + [ 7.6517799, 47.377511 ], + [ 7.6517788, 47.377495 ], + [ 7.6517835, 47.3774838 ], + [ 7.651792, 47.377477999999996 ], + [ 7.6518025, 47.3774755 ], + [ 7.6518166, 47.3774766 ], + [ 7.6518359, 47.3774828 ], + [ 7.6518664, 47.3775028 ], + [ 7.6518934, 47.3775241 ], + [ 7.6518977, 47.3775314 ], + [ 7.6518946, 47.3775388 ], + [ 7.6518728, 47.3775546 ], + [ 7.6518604, 47.3775635 ], + [ 7.6518533, 47.3775727 ], + [ 7.6518534, 47.3775856 ], + [ 7.6518578999999995, 47.3775965 ], + [ 7.6518614, 47.3776004 ], + [ 7.6518668, 47.3776065 ], + [ 7.6518744, 47.3776151 ], + [ 7.6519772, 47.3777051 ], + [ 7.6521855, 47.3779765 ], + [ 7.6522916, 47.3780232 ], + [ 7.6523655999999995, 47.3780581 ], + [ 7.6524447, 47.3781011 ], + [ 7.6524949, 47.3781358 ], + [ 7.6525464, 47.3781794 ], + [ 7.6525759, 47.3781993 ], + [ 7.6525884, 47.3782076 ], + [ 7.6525938, 47.3782095 ], + [ 7.652602, 47.3782124 ], + [ 7.6526111, 47.3782156 ], + [ 7.6526333, 47.3782178 ], + [ 7.6526365, 47.3782172 ], + [ 7.6526501, 47.3782149 ], + [ 7.6526548, 47.3782141 ], + [ 7.6526768, 47.3782033 ], + [ 7.6526905, 47.3781869 ], + [ 7.6526885, 47.3781697 ], + [ 7.6526748, 47.3781356 ], + [ 7.6526084, 47.3780422 ], + [ 7.6525942, 47.3780263 ], + [ 7.6525732, 47.3780101 ], + [ 7.6524964, 47.3779651 ], + [ 7.6524276, 47.3779281 ], + [ 7.652408, 47.3779162 ], + [ 7.6523955, 47.3779045 ], + [ 7.6523883999999995, 47.3778912 ], + [ 7.6523861, 47.3778612 ], + [ 7.6525590999999995, 47.3779163 ], + [ 7.6527825, 47.3779747 ], + [ 7.6528343, 47.3780014 ], + [ 7.6528737, 47.3780179 ], + [ 7.6529136, 47.3780303 ], + [ 7.6530106, 47.3780346 ], + [ 7.6530957, 47.3780541 ], + [ 7.6532255, 47.3780698 ], + [ 7.6532865999999995, 47.3780855 ], + [ 7.6533536, 47.3780937 ], + [ 7.6534089, 47.3780983 ], + [ 7.6534579, 47.3781084 ], + [ 7.6535375, 47.3781164 ], + [ 7.6536583, 47.3781177 ], + [ 7.653787, 47.3781304 ], + [ 7.6540757, 47.3781695 ], + [ 7.6543918, 47.3781897 ], + [ 7.6545311, 47.3782242 ], + [ 7.6546955, 47.3782543 ], + [ 7.6548909, 47.3782732 ], + [ 7.6550205, 47.37829 ], + [ 7.6552045, 47.3783289 ], + [ 7.655309, 47.378341 ], + [ 7.6554774, 47.378379699999996 ], + [ 7.655538, 47.378385 ], + [ 7.6556627, 47.378422 ], + [ 7.6558267, 47.3784459 ], + [ 7.6559287, 47.378466 ], + [ 7.6560349, 47.3784729 ], + [ 7.6562299, 47.3785194 ], + [ 7.6563175, 47.378537 ], + [ 7.6563763, 47.3785514 ], + [ 7.6564193, 47.3785612 ], + [ 7.6564671, 47.3785687 ], + [ 7.6564513, 47.3782873 ], + [ 7.6564136, 47.3782559 ], + [ 7.6571388, 47.3783682 ], + [ 7.6576675, 47.3784018 ], + [ 7.6579713, 47.3784324 ], + [ 7.6584483, 47.3784492 ], + [ 7.6587892, 47.3784361 ], + [ 7.6592177, 47.3784198 ], + [ 7.6599099, 47.3783921 ], + [ 7.660449, 47.3783699 ], + [ 7.6609773, 47.378347 ], + [ 7.6613618, 47.378331 ], + [ 7.6617158, 47.3780345 ], + [ 7.6618359, 47.3778413 ], + [ 7.6619372, 47.3773487 ], + [ 7.6622942, 47.376918 ], + [ 7.6626813, 47.3765682 ], + [ 7.6628006, 47.3763184 ], + [ 7.6630237999999995, 47.3761151 ], + [ 7.6632118, 47.3759821 ], + [ 7.6637494, 47.3757671 ], + [ 7.6638991, 47.3757053 ], + [ 7.6643802, 47.3759602 ], + [ 7.6647593, 47.3761379 ], + [ 7.6652256, 47.3763327 ], + [ 7.6655486, 47.3761986 ], + [ 7.6659821, 47.3761682 ], + [ 7.6663461, 47.37614 ], + [ 7.6665953, 47.3761212 ], + [ 7.6673539, 47.376182 ], + [ 7.6676811, 47.3762789 ], + [ 7.6677154, 47.3763459 ], + [ 7.6679259, 47.3762762 ], + [ 7.6682544, 47.3762001 ], + [ 7.6686582, 47.3760953 ], + [ 7.6689013, 47.3759819 ], + [ 7.6691804999999995, 47.3757927 ], + [ 7.6696174, 47.3757977 ], + [ 7.6699691, 47.3758071 ], + [ 7.6703745, 47.3758336 ], + [ 7.670732, 47.3758473 ], + [ 7.6711219, 47.3759273 ], + [ 7.6714068, 47.3759993 ], + [ 7.6722000999999995, 47.3760292 ], + [ 7.6728622, 47.3760011 ], + [ 7.6732891, 47.3759814 ], + [ 7.6735137, 47.375968 ], + [ 7.6740464, 47.3759268 ], + [ 7.6745451, 47.3758878 ], + [ 7.6750241, 47.3758497 ], + [ 7.6751933999999995, 47.3758583 ], + [ 7.6752337, 47.37553 ], + [ 7.6756366, 47.3754828 ], + [ 7.6757976, 47.3751625 ], + [ 7.6754532, 47.3750769 ], + [ 7.6746776, 47.3749061 ], + [ 7.6738026, 47.3749294 ], + [ 7.673297, 47.3747868 ], + [ 7.6735237, 47.3746106 ], + [ 7.6734595, 47.3744375 ], + [ 7.6732688, 47.3741523 ], + [ 7.6733315, 47.3739996 ], + [ 7.6739738, 47.3740231 ], + [ 7.6746091, 47.374047 ], + [ 7.6748106, 47.3737738 ], + [ 7.6749713, 47.37355 ], + [ 7.6754484, 47.3736871 ], + [ 7.6758713, 47.3737213 ], + [ 7.6763805, 47.3737942 ], + [ 7.6768538, 47.3737865 ], + [ 7.6772562, 47.3737789 ], + [ 7.6775418, 47.3738141 ], + [ 7.6777345, 47.3738831 ], + [ 7.678605, 47.3740826 ], + [ 7.6790863, 47.3741704 ], + [ 7.6800638, 47.3741601 ], + [ 7.680643, 47.3741533 ], + [ 7.6817202, 47.3741881 ], + [ 7.6816852, 47.3738919 ], + [ 7.6817284, 47.3732582 ], + [ 7.6817324, 47.3732038 ], + [ 7.6811988, 47.3731978 ], + [ 7.6806281, 47.3732313 ], + [ 7.6802255, 47.373252 ], + [ 7.6795773, 47.3732305 ], + [ 7.6785461999999995, 47.3732219 ], + [ 7.6784301, 47.373233 ], + [ 7.678318, 47.3728121 ], + [ 7.6783038, 47.3724754 ], + [ 7.6784921, 47.3719055 ], + [ 7.6786666, 47.3714849 ], + [ 7.6787717, 47.3711377 ], + [ 7.678799, 47.371067 ], + [ 7.6788467, 47.3708829 ], + [ 7.6789453, 47.3705009 ], + [ 7.6773032, 47.370275 ], + [ 7.6758745, 47.3700788 ], + [ 7.6743711999999995, 47.3698719 ], + [ 7.6730874, 47.36974 ], + [ 7.6718734, 47.3696161 ], + [ 7.6705897, 47.3694834 ], + [ 7.6692959, 47.3693511 ], + [ 7.6682776, 47.369261 ], + [ 7.6669208, 47.3691129 ], + [ 7.6662396, 47.3690423 ], + [ 7.6654434, 47.3689672 ], + [ 7.6644803, 47.3688769 ], + [ 7.6629086, 47.3687356 ], + [ 7.6615581, 47.3686146 ], + [ 7.6601654, 47.3684892 ], + [ 7.6586107, 47.3683486 ], + [ 7.6572326, 47.36822 ], + [ 7.6556987, 47.3680814 ], + [ 7.6544931, 47.3679975 ], + [ 7.6533217, 47.3679181 ], + [ 7.6523384, 47.3678537 ], + [ 7.6511443, 47.3677547 ], + [ 7.650718, 47.3677205 ], + [ 7.6502607000000005, 47.3676848 ], + [ 7.6495674000000005, 47.3676406 ], + [ 7.6487982, 47.3675901 ], + [ 7.6481387, 47.3675608 ], + [ 7.6472847, 47.3675251 ], + [ 7.6465962, 47.3674584 ], + [ 7.6463898, 47.3674363 ], + [ 7.6455254, 47.3673488 ], + [ 7.6450363, 47.3672962 ], + [ 7.6445423, 47.3672456 ], + [ 7.6442098, 47.3672127 ], + [ 7.6441704999999995, 47.3673694 ], + [ 7.6441695, 47.367374 ], + [ 7.6441571, 47.3674326 ], + [ 7.6440463, 47.3679554 ], + [ 7.6440037, 47.3681675 ], + [ 7.6438547, 47.3688623 ], + [ 7.643803, 47.3691086 ], + [ 7.6438837, 47.3691829 ], + [ 7.6445966, 47.3698395 ], + [ 7.6441066, 47.3706769 ], + [ 7.6438331999999996, 47.3712666 ], + [ 7.6437326, 47.3714854 ], + [ 7.6436397, 47.3716887 ], + [ 7.6433994, 47.3716576 ], + [ 7.6433337, 47.3716491 ], + [ 7.6433163, 47.3719392 ], + [ 7.6431823, 47.372431399999996 ], + [ 7.6430934, 47.372762 ], + [ 7.6430443, 47.3729679 ], + [ 7.6428749, 47.3733158 ], + [ 7.642875, 47.3734084 ], + [ 7.6429034, 47.3737629 ], + [ 7.6429688, 47.3740645 ], + [ 7.6429609, 47.3742094 ], + [ 7.6430312, 47.3744412 ], + [ 7.6430578, 47.3747974 ], + [ 7.6431289, 47.3750957 ], + [ 7.6430084, 47.3753137 ], + [ 7.6431854999999995, 47.3754719 ], + [ 7.6430725, 47.3756192 ], + [ 7.6426742999999995, 47.3761657 ], + [ 7.64243, 47.3763757 ], + [ 7.6422297, 47.3765769 ], + [ 7.6420569, 47.3767624 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns182", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Bogental - Geitenberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Bogental - Geitenberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Bogental - Geitenberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Bogental - Geitenberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.5546022, 46.7345002 ], + [ 6.5545992, 46.7343589 ], + [ 6.5545854, 46.7342179 ], + [ 6.5545608, 46.7340776 ], + [ 6.5545257, 46.7339384 ], + [ 6.55448, 46.7338007 ], + [ 6.5544238, 46.7336648 ], + [ 6.5543574, 46.7335311 ], + [ 6.5542809, 46.7333999 ], + [ 6.5541946, 46.7332717 ], + [ 6.5540986, 46.7331468 ], + [ 6.5539932, 46.7330255 ], + [ 6.5538787, 46.7329082 ], + [ 6.5537555, 46.7327951 ], + [ 6.5536238, 46.7326867 ], + [ 6.553484, 46.7325831 ], + [ 6.5533366, 46.7324847 ], + [ 6.5531818, 46.7323917 ], + [ 6.5530202, 46.7323045 ], + [ 6.5528522, 46.7322231 ], + [ 6.5526782, 46.7321479 ], + [ 6.5524988, 46.7320791 ], + [ 6.5523143, 46.7320169 ], + [ 6.5521253999999995, 46.7319613 ], + [ 6.5519324999999995, 46.7319126 ], + [ 6.5517361, 46.731871 ], + [ 6.5515369, 46.7318365 ], + [ 6.5513353, 46.7318091 ], + [ 6.5511319, 46.7317891 ], + [ 6.5509272, 46.7317764 ], + [ 6.5507219, 46.7317711 ], + [ 6.5505164, 46.7317732 ], + [ 6.5503114, 46.7317827 ], + [ 6.5501074, 46.7317996 ], + [ 6.549905, 46.7318237 ], + [ 6.5497046, 46.7318552 ], + [ 6.549507, 46.7318937 ], + [ 6.5493125, 46.7319394 ], + [ 6.5491218, 46.731992 ], + [ 6.5489353, 46.7320513 ], + [ 6.5487535999999995, 46.7321174 ], + [ 6.5485772, 46.7321898 ], + [ 6.5484066, 46.7322685 ], + [ 6.5482422, 46.7323532 ], + [ 6.5480844000000005, 46.7324438 ], + [ 6.5479337, 46.7325398 ], + [ 6.5477906, 46.7326412 ], + [ 6.5476554, 46.7327476 ], + [ 6.5475285, 46.7328587 ], + [ 6.5474102, 46.7329742 ], + [ 6.5473008, 46.7330938 ], + [ 6.5472007, 46.7332172 ], + [ 6.5471101, 46.733344 ], + [ 6.5470293, 46.733474 ], + [ 6.5469585, 46.7336066 ], + [ 6.5468979, 46.7337416 ], + [ 6.5468477, 46.7338786 ], + [ 6.546808, 46.7340172 ], + [ 6.5467788, 46.7341571 ], + [ 6.5467604, 46.7342978 ], + [ 6.5467527, 46.734439 ], + [ 6.5467557, 46.7345802 ], + [ 6.5467695, 46.7347212 ], + [ 6.546794, 46.7348615 ], + [ 6.5468291, 46.7350007 ], + [ 6.5468748, 46.7351384 ], + [ 6.546931, 46.7352744 ], + [ 6.5469973, 46.7354081 ], + [ 6.5470738, 46.7355392 ], + [ 6.5471602, 46.7356674 ], + [ 6.5472562, 46.7357923 ], + [ 6.5473615, 46.7359136 ], + [ 6.547476, 46.736031 ], + [ 6.5475992, 46.736144 ], + [ 6.5477309, 46.7362525 ], + [ 6.5478707, 46.7363561 ], + [ 6.5480181, 46.7364545 ], + [ 6.5481729, 46.7365475 ], + [ 6.5483345, 46.7366348 ], + [ 6.5485025, 46.7367161 ], + [ 6.5486765, 46.7367913 ], + [ 6.5488558999999995, 46.7368601 ], + [ 6.5490404, 46.7369224 ], + [ 6.5492294, 46.7369779 ], + [ 6.5494223, 46.7370266 ], + [ 6.5496186, 46.7370683 ], + [ 6.5498179, 46.7371028 ], + [ 6.5500195, 46.7371301 ], + [ 6.550223, 46.7371501 ], + [ 6.5504276, 46.7371628 ], + [ 6.5506329999999995, 46.7371681 ], + [ 6.5508385, 46.737166 ], + [ 6.5510435000000005, 46.7371565 ], + [ 6.5512475, 46.7371397 ], + [ 6.55145, 46.7371155 ], + [ 6.5516504, 46.7370841 ], + [ 6.5518481, 46.7370455 ], + [ 6.5520425, 46.7369998 ], + [ 6.5522333, 46.7369473 ], + [ 6.5524197, 46.7368879 ], + [ 6.5526014, 46.7368219 ], + [ 6.5527779, 46.7367494 ], + [ 6.5529485, 46.7366707 ], + [ 6.5531129, 46.736586 ], + [ 6.5532707, 46.7364954 ], + [ 6.5534213999999995, 46.7363994 ], + [ 6.5535645, 46.736298 ], + [ 6.5536997, 46.7361916 ], + [ 6.5538266, 46.7360805 ], + [ 6.5539449, 46.7359649 ], + [ 6.5540543, 46.7358453 ], + [ 6.5541544, 46.7357219 ], + [ 6.5542449, 46.7355951 ], + [ 6.5543257, 46.7354652 ], + [ 6.5543965, 46.7353325 ], + [ 6.5544571, 46.7351975 ], + [ 6.5545073, 46.7350605 ], + [ 6.554547, 46.7349219 ], + [ 6.5545761, 46.7347821 ], + [ 6.5545945, 46.7346413 ], + [ 6.5546022, 46.7345002 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "EPO0001", + "country" : "CHE", + "name" : [ + { + "text" : "Etablissements de la Plaine de l'Orbe", + "lang" : "de-CH" + }, + { + "text" : "Etablissements de la Plaine de l'Orbe", + "lang" : "fr-CH" + }, + { + "text" : "Etablissements de la Plaine de l'Orbe", + "lang" : "it-CH" + }, + { + "text" : "Etablissements de la Plaine de l'Orbe", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Direction du Service pénitentiaire Vaud", + "lang" : "de-CH" + }, + { + "text" : "Direction du Service pénitentiaire Vaud", + "lang" : "fr-CH" + }, + { + "text" : "Direction du Service pénitentiaire Vaud", + "lang" : "it-CH" + }, + { + "text" : "Direction du Service pénitentiaire Vaud", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/toutes-les-autorites/departements/departement-de-la-jeunesse-de-lenvironnement-et-de-la-securite-djes/service-penitentiaire-spen/", + "email" : "info.spen@vd.ch", + "phone" : "0041213164801", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6740518, 47.5845524 ], + [ 7.6740835, 47.5845111 ], + [ 7.6861372, 47.5688284 ], + [ 7.6853787, 47.5664102 ], + [ 7.6853527, 47.5663437 ], + [ 7.6837628, 47.5683562 ], + [ 7.6834299, 47.568426 ], + [ 7.6835367, 47.569213 ], + [ 7.6835846, 47.5696202 ], + [ 7.6837234, 47.5705397 ], + [ 7.6835091, 47.5712583 ], + [ 7.6810312, 47.5704373 ], + [ 7.6791103, 47.5695047 ], + [ 7.6784499, 47.5689662 ], + [ 7.6776907, 47.5678107 ], + [ 7.6767525, 47.5669884 ], + [ 7.6757048999999995, 47.5659411 ], + [ 7.675153, 47.5654273 ], + [ 7.6772884, 47.5649378 ], + [ 7.6773248, 47.5637496 ], + [ 7.6756235, 47.5634856 ], + [ 7.6744619, 47.5634607 ], + [ 7.6724571, 47.56373 ], + [ 7.6723179, 47.565007 ], + [ 7.6723684, 47.5654448 ], + [ 7.6707079, 47.5658194 ], + [ 7.6702274, 47.5658367 ], + [ 7.6694721999999995, 47.5656665 ], + [ 7.6674949, 47.5653095 ], + [ 7.6661216, 47.5651403 ], + [ 7.6655579, 47.565065 ], + [ 7.6642348, 47.5654038 ], + [ 7.662281, 47.565069 ], + [ 7.6607454, 47.5647994 ], + [ 7.6587596, 47.5644824 ], + [ 7.6578998, 47.5638685 ], + [ 7.6567642, 47.5631341 ], + [ 7.6561637000000005, 47.5622833 ], + [ 7.6545441, 47.5623718 ], + [ 7.6527939, 47.5618374 ], + [ 7.6526504, 47.5617824 ], + [ 7.6503568, 47.5609023 ], + [ 7.6482841, 47.5599364 ], + [ 7.6465121, 47.5605019 ], + [ 7.6460728, 47.5607223 ], + [ 7.6440578, 47.5612897 ], + [ 7.6412671, 47.5612696 ], + [ 7.6401012999999995, 47.5620044 ], + [ 7.6383384, 47.5632316 ], + [ 7.6361267999999995, 47.5639226 ], + [ 7.6339646, 47.5612292 ], + [ 7.6339443, 47.5612039 ], + [ 7.6342716, 47.5611269 ], + [ 7.634595, 47.5610427 ], + [ 7.6349142, 47.5609514 ], + [ 7.6352288, 47.5608531 ], + [ 7.6355385, 47.5607479 ], + [ 7.6358429999999995, 47.5606359 ], + [ 7.6361419999999995, 47.5605173 ], + [ 7.636435, 47.5603921 ], + [ 7.6367218999999995, 47.5602606 ], + [ 7.6370023, 47.5601227 ], + [ 7.6372759, 47.5599788 ], + [ 7.6375424, 47.5598289 ], + [ 7.6378015999999995, 47.5596732 ], + [ 7.6380531, 47.5595119 ], + [ 7.6382967, 47.5593451 ], + [ 7.6385322, 47.559173 ], + [ 7.6403748, 47.5577814 ], + [ 7.6407167, 47.5575145 ], + [ 7.6410456, 47.5572402 ], + [ 7.6413609000000005, 47.5569587 ], + [ 7.6416626, 47.5566704 ], + [ 7.6419501, 47.5563755 ], + [ 7.6422231, 47.5560745 ], + [ 7.6447042, 47.553236 ], + [ 7.6449757, 47.552918 ], + [ 7.6452376, 47.552596199999996 ], + [ 7.6454897, 47.552271 ], + [ 7.6457319, 47.5519423 ], + [ 7.6459204, 47.5516798 ], + [ 7.6465321, 47.5508282 ], + [ 7.6466758, 47.5506341 ], + [ 7.6468264, 47.5504424 ], + [ 7.6469838, 47.5502532 ], + [ 7.6471479, 47.5500667 ], + [ 7.6473186, 47.5498828 ], + [ 7.6474958, 47.5497018 ], + [ 7.6476794, 47.5495238 ], + [ 7.6478693, 47.5493488 ], + [ 7.6480654, 47.549177 ], + [ 7.6482675, 47.5490084 ], + [ 7.6484756, 47.5488432 ], + [ 7.6486896, 47.5486814 ], + [ 7.6489092, 47.5485232 ], + [ 7.6491344, 47.5483686 ], + [ 7.6493651, 47.5482177 ], + [ 7.649601, 47.5480706 ], + [ 7.6499456, 47.547861 ], + [ 7.6501296, 47.5477527 ], + [ 7.6503186, 47.5476487 ], + [ 7.6505126, 47.5475488 ], + [ 7.6507113, 47.5474533 ], + [ 7.6509145, 47.5473623 ], + [ 7.651122, 47.5472758 ], + [ 7.6513335, 47.5471939 ], + [ 7.651549, 47.5471168 ], + [ 7.6519011, 47.5470035 ], + [ 7.6522614, 47.5469029 ], + [ 7.6526291, 47.5468151 ], + [ 7.6530031, 47.5467405 ], + [ 7.6533823, 47.5466793 ], + [ 7.6590424, 47.5458709 ], + [ 7.6592778, 47.5458318 ], + [ 7.6595089, 47.5457824 ], + [ 7.6597348, 47.5457229 ], + [ 7.6599544999999996, 47.5456536 ], + [ 7.6601669999999995, 47.5455747 ], + [ 7.6603715, 47.5454867 ], + [ 7.6605671, 47.5453898 ], + [ 7.660753, 47.5452845 ], + [ 7.6609283999999995, 47.5451712 ], + [ 7.6610924, 47.5450504 ], + [ 7.6612445000000005, 47.5449227 ], + [ 7.661384, 47.5447885 ], + [ 7.6615103, 47.5446484 ], + [ 7.6616228, 47.5445031 ], + [ 7.6617212, 47.5443532 ], + [ 7.6618049, 47.5441992 ], + [ 7.6639951, 47.5397243 ], + [ 7.6641632, 47.5394085 ], + [ 7.6643552, 47.539099 ], + [ 7.6645706, 47.5387967 ], + [ 7.6648089, 47.5385023 ], + [ 7.6650694, 47.5382167 ], + [ 7.6653514, 47.5379406 ], + [ 7.6656542, 47.5376748 ], + [ 7.6659769, 47.53742 ], + [ 7.6674302, 47.5363306 ], + [ 7.6677243, 47.5361225 ], + [ 7.6678809999999995, 47.5360236 ], + [ 7.6678198, 47.5359451 ], + [ 7.6678187, 47.5359456 ], + [ 7.6609827, 47.5286175 ], + [ 7.6533052999999995, 47.5216827 ], + [ 7.6448359, 47.5151853 ], + [ 7.6356286, 47.5091669 ], + [ 7.6257424, 47.5036657 ], + [ 7.6152407, 47.498717 ], + [ 7.6041905, 47.4943522 ], + [ 7.5926623, 47.4905991 ], + [ 7.5807296, 47.4874817 ], + [ 7.5684686, 47.4850197 ], + [ 7.5559573, 47.483229 ], + [ 7.5432754, 47.4821209 ], + [ 7.5305038, 47.4817024 ], + [ 7.5177236, 47.4819762 ], + [ 7.5050162, 47.4829406 ], + [ 7.4924626, 47.4845894 ], + [ 7.4916662, 47.4847396 ], + [ 7.4921882, 47.4854732 ], + [ 7.4925877, 47.4862365 ], + [ 7.4930283, 47.4870782 ], + [ 7.4933457, 47.4877992 ], + [ 7.4934703, 47.4880822 ], + [ 7.4935567, 47.4881699 ], + [ 7.4937994, 47.4884162 ], + [ 7.4940733999999996, 47.4884452 ], + [ 7.4946963, 47.4885466 ], + [ 7.4950523, 47.4885247 ], + [ 7.4955826, 47.4886147 ], + [ 7.4959256, 47.4886852 ], + [ 7.4965292, 47.4888319 ], + [ 7.496848, 47.4889857 ], + [ 7.4980982, 47.4889399 ], + [ 7.4981935, 47.4893862 ], + [ 7.498464, 47.4897982 ], + [ 7.4987124, 47.4898516 ], + [ 7.4988128, 47.4900781 ], + [ 7.4988876, 47.4901604 ], + [ 7.4994718, 47.4905434 ], + [ 7.499672, 47.4907195 ], + [ 7.499815, 47.490863 ], + [ 7.4999462999999995, 47.4910212 ], + [ 7.5010141, 47.4908508 ], + [ 7.5011712, 47.4905453 ], + [ 7.5024548, 47.4907742 ], + [ 7.5011436, 47.4935199 ], + [ 7.5018604, 47.493793 ], + [ 7.5042133, 47.4948512 ], + [ 7.5052406, 47.4954005 ], + [ 7.506673, 47.4959354 ], + [ 7.508414, 47.4964489 ], + [ 7.510946, 47.4969586 ], + [ 7.5110727, 47.4970317 ], + [ 7.5104609, 47.4983808 ], + [ 7.5099243, 47.4995394 ], + [ 7.509629, 47.5000917 ], + [ 7.5092993, 47.5007613 ], + [ 7.5087607, 47.5023472 ], + [ 7.5096466, 47.5025124 ], + [ 7.5104518, 47.5026325 ], + [ 7.5099463, 47.5049125 ], + [ 7.5103058, 47.5059926 ], + [ 7.5097935, 47.5072532 ], + [ 7.5096783, 47.5077149 ], + [ 7.5095446, 47.5081996 ], + [ 7.5093542, 47.5088899 ], + [ 7.5090552, 47.5092088 ], + [ 7.508301, 47.5100668 ], + [ 7.5079167, 47.5108173 ], + [ 7.5069115, 47.511075 ], + [ 7.5058942, 47.5113465 ], + [ 7.5039265, 47.5127014 ], + [ 7.5030887, 47.5139932 ], + [ 7.5022887, 47.5142902 ], + [ 7.5008991, 47.5148133 ], + [ 7.499088, 47.5162832 ], + [ 7.4985365, 47.518215 ], + [ 7.4982178, 47.5195208 ], + [ 7.4980409, 47.5203853 ], + [ 7.497876, 47.5212528 ], + [ 7.4985567, 47.5211284 ], + [ 7.4997583, 47.5205769 ], + [ 7.500795, 47.5187461 ], + [ 7.5012541, 47.5178302 ], + [ 7.5017028, 47.5169159 ], + [ 7.5025372, 47.5157162 ], + [ 7.5020432, 47.5154412 ], + [ 7.5022836999999996, 47.5149117 ], + [ 7.5044352, 47.5149146 ], + [ 7.5054647, 47.5146602 ], + [ 7.5063401, 47.5152431 ], + [ 7.508842, 47.5161849 ], + [ 7.5113023, 47.5170275 ], + [ 7.5123961999999995, 47.5171971 ], + [ 7.5136503999999995, 47.5173345 ], + [ 7.5148817999999995, 47.5173731 ], + [ 7.517465, 47.5172861 ], + [ 7.5176921, 47.5166459 ], + [ 7.5179808999999995, 47.5160863 ], + [ 7.518344, 47.5155958 ], + [ 7.5190847, 47.5148183 ], + [ 7.5207445, 47.5157238 ], + [ 7.5212468, 47.5147557 ], + [ 7.5221918, 47.5142011 ], + [ 7.5228509, 47.5144438 ], + [ 7.5237338000000005, 47.5153393 ], + [ 7.5237093999999995, 47.5164651 ], + [ 7.5236959, 47.5175871 ], + [ 7.5234616, 47.5186762 ], + [ 7.5246401, 47.5198347 ], + [ 7.5275888, 47.5217563 ], + [ 7.5281718, 47.5227141 ], + [ 7.5287641, 47.5237938 ], + [ 7.529693, 47.5251607 ], + [ 7.5309447, 47.5268387 ], + [ 7.5312309, 47.528164 ], + [ 7.5309618, 47.5290504 ], + [ 7.5304895, 47.5297648 ], + [ 7.5297627, 47.5306834 ], + [ 7.5279837, 47.5317737 ], + [ 7.5275692, 47.5321633 ], + [ 7.5267844, 47.5328811 ], + [ 7.5267459, 47.5328797 ], + [ 7.5266843, 47.5328708 ], + [ 7.5266266, 47.5328718 ], + [ 7.526576, 47.5328605 ], + [ 7.5265076, 47.5328364 ], + [ 7.5264578, 47.5327963 ], + [ 7.5263966, 47.5327656 ], + [ 7.5263316, 47.5327445 ], + [ 7.5262851, 47.5327058 ], + [ 7.5261881, 47.5326537 ], + [ 7.5261586, 47.5326435 ], + [ 7.5260576, 47.532584 ], + [ 7.5259897, 47.5325615 ], + [ 7.5259545, 47.5324631 ], + [ 7.5258942, 47.5324253 ], + [ 7.5258725, 47.5323906 ], + [ 7.5257877, 47.5323401 ], + [ 7.5256654, 47.5322826 ], + [ 7.5256289, 47.53221 ], + [ 7.5256001, 47.5322007 ], + [ 7.5255664, 47.5322064 ], + [ 7.5254593, 47.5321808 ], + [ 7.5254173, 47.5321671 ], + [ 7.5253027, 47.5321497 ], + [ 7.5252739, 47.532161 ], + [ 7.5251795, 47.5321436 ], + [ 7.525158, 47.5321501 ], + [ 7.5251177, 47.5321831 ], + [ 7.5250829, 47.5321636 ], + [ 7.5250454, 47.5321315 ], + [ 7.5249983, 47.5321196 ], + [ 7.5249752999999995, 47.5320948 ], + [ 7.5249326, 47.5320953 ], + [ 7.5248974, 47.5320792 ], + [ 7.5248337, 47.532074 ], + [ 7.5246604, 47.5319743 ], + [ 7.5246022, 47.5319306 ], + [ 7.5245235, 47.5319214 ], + [ 7.5244882, 47.5318819 ], + [ 7.5244213, 47.531883 ], + [ 7.5244043, 47.5318652 ], + [ 7.5211492, 47.5338704 ], + [ 7.5193596, 47.534723 ], + [ 7.5177311, 47.5340549 ], + [ 7.5157988, 47.5329516 ], + [ 7.5157861, 47.5329384 ], + [ 7.5142962, 47.5313723 ], + [ 7.5127355, 47.5307995 ], + [ 7.5126739, 47.5304808 ], + [ 7.5107578, 47.528995 ], + [ 7.5082131, 47.5281656 ], + [ 7.5076771, 47.5281231 ], + [ 7.5063866, 47.5286055 ], + [ 7.5051002, 47.5290275 ], + [ 7.5045697, 47.5288875 ], + [ 7.5023042, 47.5284098 ], + [ 7.5010153, 47.5290598 ], + [ 7.5005246, 47.5301374 ], + [ 7.5014441, 47.5321775 ], + [ 7.5004212, 47.5339066 ], + [ 7.4996614, 47.5350365 ], + [ 7.4992386, 47.5353277 ], + [ 7.4980440999999995, 47.5361575 ], + [ 7.4985365999999996, 47.5372004 ], + [ 7.4995037, 47.539273 ], + [ 7.4991807, 47.5401179 ], + [ 7.4992924, 47.5401435 ], + [ 7.4994238, 47.5401852 ], + [ 7.4994667, 47.5401784 ], + [ 7.499488, 47.5401468 ], + [ 7.4995199, 47.5401198 ], + [ 7.4995729, 47.5400978 ], + [ 7.4997027, 47.5400771 ], + [ 7.4997869, 47.5400767 ], + [ 7.5000806, 47.5401267 ], + [ 7.5002447, 47.540218 ], + [ 7.5002901, 47.5402333 ], + [ 7.5003228, 47.5402698 ], + [ 7.5003417, 47.5403586 ], + [ 7.5003421, 47.5404326 ], + [ 7.5003885, 47.5404926 ], + [ 7.5004674, 47.54054 ], + [ 7.5007096, 47.5406232 ], + [ 7.5007791, 47.5406805 ], + [ 7.5008669, 47.5408381 ], + [ 7.5009122999999995, 47.5408867 ], + [ 7.501067, 47.5409252 ], + [ 7.5011229, 47.5409536 ], + [ 7.5011317, 47.5410451 ], + [ 7.5011085, 47.5411122 ], + [ 7.5013162, 47.5412166 ], + [ 7.5014378, 47.5412509 ], + [ 7.5016428, 47.5413458 ], + [ 7.5016808, 47.5413673 ], + [ 7.5017162, 47.5413975 ], + [ 7.5017278, 47.5414228 ], + [ 7.5018233, 47.5414965 ], + [ 7.5019247, 47.5415579 ], + [ 7.5020345, 47.5415872 ], + [ 7.5021748, 47.5415894 ], + [ 7.502224, 47.5416028 ], + [ 7.5022267, 47.5416512 ], + [ 7.5021945, 47.5416554 ], + [ 7.5021766, 47.5416701 ], + [ 7.5022011, 47.5417369 ], + [ 7.5022767, 47.5417866 ], + [ 7.5025061, 47.5418453 ], + [ 7.5026373, 47.54187 ], + [ 7.5026725, 47.5418903 ], + [ 7.5026781, 47.5419256 ], + [ 7.5027679, 47.5420313 ], + [ 7.5027781000000004, 47.542086 ], + [ 7.5027419, 47.5421221 ], + [ 7.5027497, 47.542187 ], + [ 7.5027907, 47.5422262 ], + [ 7.5028212, 47.5422861 ], + [ 7.5028908, 47.5423361 ], + [ 7.5029361, 47.5423818 ], + [ 7.5029918, 47.5424089 ], + [ 7.5030597, 47.542434 ], + [ 7.5031901, 47.5424224 ], + [ 7.5032778, 47.5424419 ], + [ 7.5035176, 47.5425978 ], + [ 7.503707, 47.5426688 ], + [ 7.5039031, 47.5427805 ], + [ 7.5039518, 47.542873900000004 ], + [ 7.5039818, 47.5429203 ], + [ 7.5041053, 47.5429772 ], + [ 7.5042676, 47.5430316 ], + [ 7.5042313, 47.5431029 ], + [ 7.5041814, 47.5431266 ], + [ 7.5041652, 47.5431474 ], + [ 7.5041071, 47.5432599 ], + [ 7.5041009, 47.5433031 ], + [ 7.5041275, 47.5433479 ], + [ 7.5041842, 47.5433748 ], + [ 7.5042344, 47.5434119 ], + [ 7.5042704, 47.5434531 ], + [ 7.5042495, 47.5434817 ], + [ 7.5042521, 47.5435033 ], + [ 7.5042916, 47.5435169 ], + [ 7.5043343, 47.5435555 ], + [ 7.5044531, 47.543597 ], + [ 7.5045477, 47.5436168 ], + [ 7.5045634, 47.5436411 ], + [ 7.5045462, 47.543706 ], + [ 7.5045987, 47.5437374 ], + [ 7.5046641, 47.5437531 ], + [ 7.5048821, 47.5438243 ], + [ 7.504948, 47.5438571 ], + [ 7.5050801, 47.5439694 ], + [ 7.5050258, 47.5440034 ], + [ 7.5050278, 47.5440483 ], + [ 7.5051053, 47.5440953 ], + [ 7.5052672000000005, 47.544203 ], + [ 7.5053425, 47.5442226 ], + [ 7.5053928, 47.5442426 ], + [ 7.5053855, 47.5443286 ], + [ 7.5054605, 47.5443873 ], + [ 7.5055635, 47.5443979 ], + [ 7.5056503, 47.5444397 ], + [ 7.5056907, 47.5444654 ], + [ 7.5059367, 47.5445162 ], + [ 7.5059769, 47.5445811 ], + [ 7.5060364, 47.544639 ], + [ 7.5062639, 47.5447319 ], + [ 7.5064136, 47.5447663 ], + [ 7.5066118, 47.5447973 ], + [ 7.5067196, 47.5447875 ], + [ 7.506989, 47.5448056 ], + [ 7.5070392, 47.5448603 ], + [ 7.5071962, 47.5449345 ], + [ 7.5073256, 47.5449818 ], + [ 7.5074183, 47.5450402 ], + [ 7.5075017, 47.5450526 ], + [ 7.5075426, 47.5449798 ], + [ 7.5075484, 47.5449337 ], + [ 7.5076015, 47.5449183 ], + [ 7.5076368, 47.5448925 ], + [ 7.5077004, 47.5448773 ], + [ 7.5079065, 47.5448886 ], + [ 7.5079975999999995, 47.5449786 ], + [ 7.5080825, 47.5450297 ], + [ 7.5082074, 47.5450502 ], + [ 7.5082643000000004, 47.5450495 ], + [ 7.5083513, 47.5450615 ], + [ 7.5085065, 47.5450544 ], + [ 7.5085568, 47.545061 ], + [ 7.5086434, 47.5451174 ], + [ 7.5087015, 47.5451805 ], + [ 7.508709, 47.5452058 ], + [ 7.5087503, 47.5452418 ], + [ 7.5089778, 47.5452771 ], + [ 7.5090326, 47.5452916 ], + [ 7.5090908, 47.5453268 ], + [ 7.5092219, 47.5454622 ], + [ 7.5092327, 47.5455137 ], + [ 7.5092267, 47.5455862 ], + [ 7.5092322, 47.5456117 ], + [ 7.5092812, 47.5457085 ], + [ 7.5092780999999995, 47.5457304 ], + [ 7.5093461999999995, 47.5458394 ], + [ 7.5098338, 47.5453869 ], + [ 7.5109814, 47.5445121 ], + [ 7.5113059, 47.544566 ], + [ 7.5140095, 47.5450522 ], + [ 7.5167641, 47.5454136 ], + [ 7.5188629, 47.5463403 ], + [ 7.5222681, 47.5487063 ], + [ 7.5219049, 47.548927 ], + [ 7.5254286, 47.5509147 ], + [ 7.5247977, 47.5514779 ], + [ 7.5273233, 47.5527843 ], + [ 7.52962, 47.5536976 ], + [ 7.5307908, 47.5540596 ], + [ 7.5307094, 47.5542033 ], + [ 7.5331226000000004, 47.5547059 ], + [ 7.5342618, 47.5549432 ], + [ 7.5350106, 47.555113 ], + [ 7.5365298, 47.5554575 ], + [ 7.5379603, 47.5566494 ], + [ 7.539491, 47.5580031 ], + [ 7.5403671, 47.5572774 ], + [ 7.5438097, 47.5595871 ], + [ 7.5468618, 47.5614991 ], + [ 7.5496966, 47.5624241 ], + [ 7.5546595, 47.5643666 ], + [ 7.5572997, 47.5650307 ], + [ 7.5582650000000005, 47.5672471 ], + [ 7.5593353, 47.5693894 ], + [ 7.5564642, 47.5713871 ], + [ 7.5568956, 47.5724659 ], + [ 7.5624082, 47.5748755 ], + [ 7.5654375, 47.5762202 ], + [ 7.5664902, 47.5776694 ], + [ 7.5690791, 47.5774147 ], + [ 7.5716147, 47.5771124 ], + [ 7.5752538, 47.5761401 ], + [ 7.5764032, 47.576454 ], + [ 7.5788585, 47.5766687 ], + [ 7.5807642, 47.5762962 ], + [ 7.5846599, 47.5755212 ], + [ 7.5843971, 47.5785818 ], + [ 7.5847394, 47.5808568 ], + [ 7.5857254, 47.5840902 ], + [ 7.5869704, 47.5865515 ], + [ 7.5882543, 47.588521 ], + [ 7.5890451, 47.5899018 ], + [ 7.5931714, 47.5889797 ], + [ 7.5984685, 47.5876436 ], + [ 7.6019749999999995, 47.586146 ], + [ 7.6048224, 47.5849348 ], + [ 7.604586, 47.5828148 ], + [ 7.6040606, 47.5813388 ], + [ 7.6044691, 47.5812992 ], + [ 7.6047005, 47.5811761 ], + [ 7.6047687, 47.5804091 ], + [ 7.605339, 47.579888 ], + [ 7.6048884999999995, 47.5778789 ], + [ 7.6078589, 47.5781013 ], + [ 7.6094177, 47.5781859 ], + [ 7.6113252, 47.5781827 ], + [ 7.6132115, 47.5781612 ], + [ 7.6149813, 47.577998 ], + [ 7.6167153, 47.5776847 ], + [ 7.6191423, 47.5768749 ], + [ 7.6206029, 47.5775644 ], + [ 7.6223957, 47.5783608 ], + [ 7.6239583, 47.5791648 ], + [ 7.6245533, 47.5794211 ], + [ 7.625014, 47.5796196 ], + [ 7.6264436, 47.5804061 ], + [ 7.6280286, 47.5813702 ], + [ 7.6296149, 47.5825138 ], + [ 7.6311075, 47.5836546 ], + [ 7.632622, 47.5847831 ], + [ 7.6341102, 47.5858632 ], + [ 7.6348711, 47.5867725 ], + [ 7.6356338, 47.5875861 ], + [ 7.6364444, 47.5883771 ], + [ 7.6396376, 47.59037 ], + [ 7.6432475, 47.5913464 ], + [ 7.6418646, 47.5929128 ], + [ 7.641791, 47.594197199999996 ], + [ 7.6430536, 47.5950505 ], + [ 7.6444127, 47.5957457 ], + [ 7.6456773, 47.596961 ], + [ 7.6490224, 47.5962312 ], + [ 7.6510644, 47.5957223 ], + [ 7.6550724, 47.5954012 ], + [ 7.6616978, 47.593708 ], + [ 7.6646278, 47.5926712 ], + [ 7.6673378, 47.5919514 ], + [ 7.6683688, 47.5919427 ], + [ 7.66838, 47.5919281 ], + [ 7.6718807, 47.587376 ], + [ 7.6718872000000005, 47.5873675 ], + [ 7.6717499, 47.5872757 ], + [ 7.6720771, 47.5852449 ], + [ 7.6740518, 47.5845524 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 120, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "CTR0016", + "country" : "CHE", + "name" : [ + { + "text" : "CTR BALE", + "lang" : "de-CH" + }, + { + "text" : "CTR BALE", + "lang" : "fr-CH" + }, + { + "text" : "CTR BALE", + "lang" : "it-CH" + }, + { + "text" : "CTR BALE", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only permitted from an altitude of 120 m above ground with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Direction générale de l'aviation civile (DGAC)", + "lang" : "de-CH" + }, + { + "text" : "Direction générale de l'aviation civile (DGAC)", + "lang" : "fr-CH" + }, + { + "text" : "Direction générale de l'aviation civile (DGAC)", + "lang" : "it-CH" + }, + { + "text" : "French Civil Aviation Authority (DGAC)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "DGAC SUBDIVISION CONTRÔLE Bâle-Mulhouse", + "lang" : "de-CH" + }, + { + "text" : "DGAC SUBDIVISION CONTRÔLE Bâle-Mulhouse", + "lang" : "fr-CH" + }, + { + "text" : "DGAC SUBDIVISION CONTRÔLE Bâle-Mulhouse", + "lang" : "it-CH" + }, + { + "text" : "DGAC ATC OPERATIONS UNIT Bâle-Mulhouse", + "lang" : "en-GB" + } + ], + "siteURL" : "https://app.clearance.aero", + "email" : "bale.atm-procedures@aviation-civile.gouv.fr", + "phone" : "0033389907875", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4785176, 47.4327547 ], + [ 7.4785467, 47.4326274 ], + [ 7.4786823, 47.4326378 ], + [ 7.4790531, 47.4326638 ], + [ 7.4791679, 47.4326736 ], + [ 7.4791904, 47.4325212 ], + [ 7.4791991, 47.4324623 ], + [ 7.4792921, 47.432126 ], + [ 7.4795748, 47.4314471 ], + [ 7.4796534, 47.4312583 ], + [ 7.4797358, 47.4312084 ], + [ 7.4797027, 47.4312157 ], + [ 7.4797004, 47.43122 ], + [ 7.4795659, 47.4312516 ], + [ 7.4794502, 47.4312787 ], + [ 7.4794107, 47.4311883 ], + [ 7.4794086, 47.4311879 ], + [ 7.4793796, 47.4311849 ], + [ 7.4793503999999995, 47.4311837 ], + [ 7.4793212, 47.4311841 ], + [ 7.4792921, 47.4311863 ], + [ 7.4792634, 47.4311902 ], + [ 7.4788989, 47.4312509 ], + [ 7.4789459, 47.4313405 ], + [ 7.4784551, 47.4314588 ], + [ 7.4783975, 47.4313479 ], + [ 7.4782439, 47.4313852 ], + [ 7.4781902, 47.4313979 ], + [ 7.4781409, 47.4314087 ], + [ 7.478196, 47.4315213 ], + [ 7.4778061, 47.4316153 ], + [ 7.4776861, 47.4316295 ], + [ 7.4773912, 47.4316645 ], + [ 7.4767804, 47.4317369 ], + [ 7.4761142, 47.4318268 ], + [ 7.4759504, 47.4318492 ], + [ 7.4754818, 47.4320109 ], + [ 7.4751785, 47.4321156 ], + [ 7.4736869, 47.4323231 ], + [ 7.4736218, 47.4322828 ], + [ 7.4736108, 47.4322022 ], + [ 7.4736075, 47.4322001 ], + [ 7.4735416, 47.4322028 ], + [ 7.4735188, 47.4322309 ], + [ 7.4735118, 47.432274 ], + [ 7.4734931, 47.4322868 ], + [ 7.4734863, 47.4322916 ], + [ 7.4730143, 47.432611 ], + [ 7.4726582, 47.4328586 ], + [ 7.4723063, 47.4331044 ], + [ 7.4722445, 47.4331423 ], + [ 7.4724661, 47.433294599999996 ], + [ 7.4723204, 47.4333922 ], + [ 7.4716716, 47.4339239 ], + [ 7.4716183, 47.4340411 ], + [ 7.4714279999999995, 47.4344585 ], + [ 7.4713452, 47.434657 ], + [ 7.4711478, 47.4351305 ], + [ 7.4711136, 47.4352125 ], + [ 7.4705625, 47.4356128 ], + [ 7.4704859, 47.4356684 ], + [ 7.4704843, 47.4356806 ], + [ 7.4702778, 47.4360478 ], + [ 7.4702245, 47.4361425 ], + [ 7.4700756, 47.4363105 ], + [ 7.4699039, 47.4365138 ], + [ 7.4699039, 47.4365254 ], + [ 7.4699102, 47.4365789 ], + [ 7.4699595, 47.4369227 ], + [ 7.4707539, 47.4369811 ], + [ 7.4707947, 47.4369839 ], + [ 7.4708004, 47.4369731 ], + [ 7.4708158, 47.43695 ], + [ 7.4708341, 47.436928 ], + [ 7.4708887, 47.4368735 ], + [ 7.4709498, 47.4368223 ], + [ 7.471017, 47.4367748 ], + [ 7.4710898, 47.4367313 ], + [ 7.4711651, 47.4366934 ], + [ 7.4712174, 47.4367163 ], + [ 7.4712546, 47.4367316 ], + [ 7.4712664, 47.4367356 ], + [ 7.4713111, 47.4367462 ], + [ 7.4713667, 47.4367663 ], + [ 7.4714224, 47.4367865 ], + [ 7.4714833, 47.436808 ], + [ 7.471491, 47.4368108 ], + [ 7.4715378999999995, 47.4368321 ], + [ 7.4715804, 47.4368467 ], + [ 7.4716415, 47.436862 ], + [ 7.4717431, 47.4369029 ], + [ 7.4717644, 47.4369157 ], + [ 7.4718097, 47.4369372 ], + [ 7.4718682, 47.4369523 ], + [ 7.4719215, 47.4369657 ], + [ 7.4720414, 47.4369893 ], + [ 7.4721267, 47.436854 ], + [ 7.4724349, 47.4366703 ], + [ 7.4730562, 47.4364093 ], + [ 7.4734641, 47.4363995 ], + [ 7.4736823, 47.4363157 ], + [ 7.4738241, 47.4360031 ], + [ 7.473682, 47.4359162 ], + [ 7.4739226, 47.4356305 ], + [ 7.4739461, 47.4356001 ], + [ 7.4739672, 47.4355664 ], + [ 7.4739837, 47.4355328 ], + [ 7.4742697, 47.4348645 ], + [ 7.4743054, 47.4347922 ], + [ 7.4743499, 47.4347222 ], + [ 7.4744028, 47.4346549 ], + [ 7.4745308999999995, 47.4345068 ], + [ 7.4746239, 47.4344093 ], + [ 7.4747292, 47.4343178 ], + [ 7.474846, 47.4342329 ], + [ 7.4749072, 47.4342081 ], + [ 7.4749424, 47.4341964 ], + [ 7.4749523, 47.4341931 ], + [ 7.4749663, 47.4341481 ], + [ 7.4749923, 47.4341117 ], + [ 7.4750182, 47.4340785 ], + [ 7.4750458, 47.434042 ], + [ 7.4751252, 47.4339406 ], + [ 7.4751541, 47.4339089 ], + [ 7.4751849, 47.433876 ], + [ 7.4752194, 47.4338437 ], + [ 7.4752553, 47.4338164 ], + [ 7.4752959, 47.4337893 ], + [ 7.4753377, 47.4337631 ], + [ 7.4754206, 47.4337123 ], + [ 7.4754606, 47.4336883 ], + [ 7.4755044999999996, 47.4336651 ], + [ 7.4755511, 47.4336412 ], + [ 7.4756015, 47.4336167 ], + [ 7.475736, 47.4335536 ], + [ 7.4757824, 47.4335324 ], + [ 7.4758287, 47.4335127 ], + [ 7.4758742, 47.4334899 ], + [ 7.4759158, 47.4334657 ], + [ 7.4760357, 47.4333867 ], + [ 7.4760729, 47.4333607 ], + [ 7.4761132, 47.4333361 ], + [ 7.4761607, 47.4333114 ], + [ 7.476212, 47.4332893 ], + [ 7.4762625, 47.4332699 ], + [ 7.4763142, 47.4332496 ], + [ 7.4763632, 47.4332326 ], + [ 7.4764109, 47.433218 ], + [ 7.4764598, 47.4332032 ], + [ 7.4765131, 47.4331889 ], + [ 7.4765663, 47.4331783 ], + [ 7.4766218, 47.4331677 ], + [ 7.4766789, 47.4331578 ], + [ 7.4767361, 47.4331504 ], + [ 7.4767936, 47.4331444 ], + [ 7.4769087, 47.4331313 ], + [ 7.4769648, 47.4331231 ], + [ 7.4770202999999995, 47.4331107 ], + [ 7.4770719, 47.4331014 ], + [ 7.4771811, 47.4330802 ], + [ 7.4772354, 47.4330713 ], + [ 7.4772888, 47.4330613 ], + [ 7.4773454, 47.4330514 ], + [ 7.4773832, 47.433044 ], + [ 7.4774366, 47.4330358 ], + [ 7.4774891, 47.4330256 ], + [ 7.4775061, 47.4330219 ], + [ 7.4775406, 47.4330145 ], + [ 7.4776404, 47.432986 ], + [ 7.4776922, 47.4329738 ], + [ 7.4777411, 47.4329623 ], + [ 7.4778323, 47.4329478 ], + [ 7.4778854, 47.4329437 ], + [ 7.4779353, 47.432935 ], + [ 7.4779819, 47.432925 ], + [ 7.4780258, 47.4329132 ], + [ 7.4780684, 47.4328981 ], + [ 7.4781142, 47.4328831 ], + [ 7.4781565, 47.432871 ], + [ 7.4781979, 47.432862 ], + [ 7.4782388, 47.4328499 ], + [ 7.4782878, 47.432838 ], + [ 7.4783345, 47.4328247 ], + [ 7.4783778, 47.4328096 ], + [ 7.4784207, 47.4327938 ], + [ 7.4785091999999995, 47.4327587 ], + [ 7.4785176, 47.4327547 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns330", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Lange Rai", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Lange Rai", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Lange Rai", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Lange Rai", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7363501, 46.5932834 ], + [ 7.7365469000000004, 46.5933212 ], + [ 7.7368254, 46.5933978 ], + [ 7.7369734999999995, 46.5934866 ], + [ 7.7371308, 46.5936148 ], + [ 7.7373115, 46.5937035 ], + [ 7.737493, 46.5937865 ], + [ 7.7376493, 46.5938866 ], + [ 7.7378383, 46.5939808 ], + [ 7.7380107, 46.5940413 ], + [ 7.7380689, 46.5940972 ], + [ 7.7381282, 46.5942093 ], + [ 7.7381715, 46.5943612 ], + [ 7.7381902, 46.5945132 ], + [ 7.7382673, 46.5947323 ], + [ 7.7384003, 46.5948889 ], + [ 7.7385833, 46.5950903 ], + [ 7.7388304, 46.5952347 ], + [ 7.7390947, 46.5953903 ], + [ 7.739194, 46.5955021 ], + [ 7.7393022, 46.5956082 ], + [ 7.7394179, 46.5957257 ], + [ 7.7395587, 46.5958314 ], + [ 7.7396822, 46.5958812 ], + [ 7.7397813, 46.5959648 ], + [ 7.7398479, 46.5960601 ], + [ 7.739948, 46.596172 ], + [ 7.7400155, 46.5962897 ], + [ 7.740059, 46.5964697 ], + [ 7.7401208, 46.5967341 ], + [ 7.7401907, 46.5969984 ], + [ 7.7402505, 46.5971782 ], + [ 7.7403669, 46.5972843 ], + [ 7.7405314, 46.5973843 ], + [ 7.7407364, 46.5974389 ], + [ 7.740916, 46.5974712 ], + [ 7.7410312999999995, 46.5975322 ], + [ 7.7411885, 46.5976266 ], + [ 7.7412957, 46.597699 ], + [ 7.7413612, 46.5977435 ], + [ 7.7414286, 46.5978274 ], + [ 7.7414871, 46.5979341 ], + [ 7.7415722, 46.5981419 ], + [ 7.7416073, 46.5982937 ], + [ 7.7416668, 46.5984284 ], + [ 7.7417497, 46.5985236 ], + [ 7.7418744, 46.5986464 ], + [ 7.742033, 46.5988536 ], + [ 7.7422217, 46.5989083 ], + [ 7.7424595, 46.5990022 ], + [ 7.7427135, 46.5990451 ], + [ 7.7429428, 46.5990768 ], + [ 7.7430909, 46.5991544 ], + [ 7.7432155, 46.5992661 ], + [ 7.7432983, 46.5993499 ], + [ 7.7433884, 46.5993999 ], + [ 7.7434394, 46.5994783 ], + [ 7.7434989, 46.5996187 ], + [ 7.7435176, 46.5997595 ], + [ 7.7435026, 46.5998554 ], + [ 7.7434957, 46.599923 ], + [ 7.7435539, 46.5999846 ], + [ 7.7435798, 46.6000802 ], + [ 7.7435564, 46.6001254 ], + [ 7.7434179, 46.6001549 ], + [ 7.7431827, 46.600264 ], + [ 7.7428997, 46.6004185 ], + [ 7.7424548, 46.6006366 ], + [ 7.7432417000000004, 46.6013342 ], + [ 7.7434328, 46.6015073 ], + [ 7.7434747, 46.601569 ], + [ 7.7435941, 46.6019173 ], + [ 7.7437292, 46.6021529 ], + [ 7.7440544, 46.6020993 ], + [ 7.7440078, 46.6022293 ], + [ 7.7440498, 46.6023079 ], + [ 7.7440999, 46.6023695 ], + [ 7.7442724, 46.6024413 ], + [ 7.7444614, 46.6025354 ], + [ 7.7446664, 46.6025731 ], + [ 7.7447246, 46.6026346 ], + [ 7.7447096, 46.6027193 ], + [ 7.7446782, 46.6027927 ], + [ 7.744565, 46.6028332 ], + [ 7.7444185999999995, 46.6028965 ], + [ 7.7442147, 46.6029095 ], + [ 7.7442576, 46.6029881 ], + [ 7.7442914, 46.6030553 ], + [ 7.7442274, 46.6031404 ], + [ 7.7440809, 46.6031925 ], + [ 7.7438618, 46.6032564 ], + [ 7.7441251, 46.6033612 ], + [ 7.7442663, 46.603529 ], + [ 7.7443736, 46.6036126 ], + [ 7.7447722, 46.6039924 ], + [ 7.7446756, 46.6040721 ], + [ 7.7447747, 46.6041389 ], + [ 7.7447923, 46.6042289 ], + [ 7.74472, 46.6042859 ], + [ 7.744557, 46.6043098 ], + [ 7.7447970999999995, 46.6044995 ], + [ 7.7450943, 46.6046997 ], + [ 7.745374, 46.604827 ], + [ 7.745253, 46.6049125 ], + [ 7.7450574, 46.604948 ], + [ 7.7447068, 46.6049735 ], + [ 7.7449212, 46.6050957 ], + [ 7.7451427, 46.6051727 ], + [ 7.7452267, 46.6053185 ], + [ 7.7456762999999995, 46.6053316 ], + [ 7.7454982, 46.6054402 ], + [ 7.7454422, 46.6054857 ], + [ 7.7453388, 46.6056671 ], + [ 7.7451221, 46.6058605 ], + [ 7.7452691, 46.6058986 ], + [ 7.7455301, 46.6058851 ], + [ 7.7458213, 46.605736 ], + [ 7.7458738, 46.6059384 ], + [ 7.7462232, 46.6058284 ], + [ 7.7465482, 46.6057411 ], + [ 7.7468149, 46.6055923 ], + [ 7.7469906, 46.6053652 ], + [ 7.7472397, 46.6051321 ], + [ 7.7473362, 46.6050297 ], + [ 7.7474329, 46.6049557 ], + [ 7.7475623, 46.6049094 ], + [ 7.747766, 46.6048682 ], + [ 7.7479853, 46.6048325 ], + [ 7.7482204, 46.6047233 ], + [ 7.7483732, 46.604615 ], + [ 7.7484939, 46.6044787 ], + [ 7.7484915999999995, 46.604349 ], + [ 7.7484484, 46.6042254 ], + [ 7.7484461, 46.6041071 ], + [ 7.7485601, 46.6040667 ], + [ 7.7488526, 46.6040021 ], + [ 7.7490480999999996, 46.603961 ], + [ 7.7492754, 46.6039027 ], + [ 7.7494281, 46.6037886 ], + [ 7.7495082, 46.6036809 ], + [ 7.7495944, 46.6034829 ], + [ 7.7496572, 46.6033414 ], + [ 7.7497457, 46.6032618 ], + [ 7.7498585, 46.6031593 ], + [ 7.7500191, 46.6030058 ], + [ 7.7501145000000005, 46.6028471 ], + [ 7.7500862999999995, 46.6026389 ], + [ 7.750156, 46.6024072 ], + [ 7.7503063, 46.6021635 ], + [ 7.7504983, 46.6019364 ], + [ 7.7508216999999995, 46.6017195 ], + [ 7.7510642, 46.6016159 ], + [ 7.751127, 46.6014687 ], + [ 7.7512046, 46.6012089 ], + [ 7.7513387, 46.600971 ], + [ 7.7515643, 46.6007774 ], + [ 7.7519124, 46.6005884 ], + [ 7.7521618, 46.6004172 ], + [ 7.7522596, 46.600410600000004 ], + [ 7.7523748, 46.6004322 ], + [ 7.7525134, 46.6004254 ], + [ 7.7525694, 46.6003742 ], + [ 7.752757, 46.6003782 ], + [ 7.7527625, 46.6001977 ], + [ 7.7529093, 46.6001965 ], + [ 7.7530972, 46.6002399 ], + [ 7.7534662999999995, 46.6003213 ], + [ 7.7536144, 46.6003876 ], + [ 7.7537448, 46.600380799999996 ], + [ 7.7538007, 46.600307 ], + [ 7.7538214, 46.6000871 ], + [ 7.7539103, 46.6000694 ], + [ 7.7539251, 46.5999622 ], + [ 7.7540637, 46.5999441 ], + [ 7.7542095, 46.5999146 ], + [ 7.7543551, 46.5998345 ], + [ 7.7543220999999996, 46.599784 ], + [ 7.7542721, 46.599728 ], + [ 7.7543187, 46.5996093 ], + [ 7.7543989, 46.5995184 ], + [ 7.7545363, 46.5994327 ], + [ 7.7546956, 46.5992058 ], + [ 7.7548088, 46.5991711 ], + [ 7.7548712, 46.5989564 ], + [ 7.7549528, 46.5989669 ], + [ 7.7551717, 46.5988749 ], + [ 7.7554048, 46.5987038 ], + [ 7.7556071, 46.5985723 ], + [ 7.75567, 46.5984422 ], + [ 7.7557072, 46.5982558 ], + [ 7.7556813, 46.5981377 ], + [ 7.7555496, 46.5980881 ], + [ 7.7554424, 46.5980215 ], + [ 7.7553434, 46.597966 ], + [ 7.7553164, 46.5978196 ], + [ 7.7552824000000005, 46.5977185 ], + [ 7.755216, 46.5976628 ], + [ 7.7551008, 46.5976243 ], + [ 7.7549773, 46.5975691 ], + [ 7.754871, 46.5975192 ], + [ 7.754722, 46.5974304 ], + [ 7.7546555999999995, 46.5973634 ], + [ 7.7545806, 46.5972457 ], + [ 7.7544397, 46.5971285 ], + [ 7.7542753, 46.597051 ], + [ 7.7543709, 46.5969374 ], + [ 7.754352, 46.5967799 ], + [ 7.7541814, 46.5963361 ], + [ 7.7543435, 46.5962953 ], + [ 7.7544238, 46.5962101 ], + [ 7.7545377, 46.5961639 ], + [ 7.7546763, 46.5961514 ], + [ 7.7548067, 46.5961502 ], + [ 7.7549782, 46.5961714 ], + [ 7.7550921, 46.5961365 ], + [ 7.7551480999999995, 46.5960853 ], + [ 7.7551794, 46.5959949 ], + [ 7.7551852, 46.5958653 ], + [ 7.7552724, 46.5957179 ], + [ 7.7553677, 46.595553699999996 ], + [ 7.7554143, 46.5954348 ], + [ 7.7553966, 46.5953279 ], + [ 7.755329, 46.5952045 ], + [ 7.755302, 46.5950639 ], + [ 7.7553308, 46.594827 ], + [ 7.7553191, 46.5946355 ], + [ 7.7552327, 46.5943657 ], + [ 7.7552302, 46.5942191 ], + [ 7.7550878, 46.5939838 ], + [ 7.7549444, 46.5937369 ], + [ 7.7550167, 46.5936743 ], + [ 7.7551049, 46.5935666 ], + [ 7.7552575, 46.5934356 ], + [ 7.7553703, 46.5933331 ], + [ 7.7554658, 46.5932083 ], + [ 7.7555621, 46.5930835 ], + [ 7.7562753, 46.5932914 ], + [ 7.7563175, 46.5933924 ], + [ 7.7563837, 46.5934201 ], + [ 7.7564573, 46.5934588 ], + [ 7.7565971, 46.593514 ], + [ 7.7566553, 46.5935586 ], + [ 7.7566893, 46.5936597 ], + [ 7.7567395, 46.5937325 ], + [ 7.7568304, 46.5938051 ], + [ 7.7570271, 46.5938259 ], + [ 7.7576295, 46.5937698 ], + [ 7.7577449, 46.593842 ], + [ 7.7578439, 46.5938863 ], + [ 7.7579255, 46.5939025 ], + [ 7.7579905, 46.5938512 ], + [ 7.7580626, 46.5937773 ], + [ 7.7581665, 46.5936919 ], + [ 7.7582713, 46.5936177 ], + [ 7.7584099, 46.5936108 ], + [ 7.758532, 46.5935703 ], + [ 7.7586941, 46.5935295 ], + [ 7.7587825, 46.5934442 ], + [ 7.7588546, 46.5933646 ], + [ 7.7590734999999995, 46.5932895 ], + [ 7.7592599, 46.5932202 ], + [ 7.7593794, 46.5930218 ], + [ 7.7595621999999995, 46.5927498 ], + [ 7.7598186, 46.5929447 ], + [ 7.7601238, 46.5931223 ], + [ 7.7604446, 46.5933055 ], + [ 7.760708, 46.5934272 ], + [ 7.7609796, 46.5935714 ], + [ 7.7613908, 46.5937368 ], + [ 7.7618665, 46.5939073 ], + [ 7.7622277, 46.5940282 ], + [ 7.7625551999999995, 46.5940985 ], + [ 7.7628417, 46.5941411 ], + [ 7.7631027, 46.5941387 ], + [ 7.763388, 46.5941081 ], + [ 7.7636082, 46.594106 ], + [ 7.7637804, 46.5941328 ], + [ 7.763953, 46.5942102 ], + [ 7.7642655, 46.5943595 ], + [ 7.7644881, 46.5944872 ], + [ 7.7647759, 46.5946143 ], + [ 7.7650301, 46.5947021 ], + [ 7.7653424, 46.5948234 ], + [ 7.7655731, 46.5949397 ], + [ 7.7658856, 46.5951004 ], + [ 7.7661478, 46.5951657 ], + [ 7.7664019, 46.5952423 ], + [ 7.7666723, 46.5953076 ], + [ 7.767009, 46.595423 ], + [ 7.7672629, 46.5954489 ], + [ 7.7674589, 46.5954979 ], + [ 7.7676638, 46.5955299 ], + [ 7.7679342, 46.5955951 ], + [ 7.7681476, 46.5956834 ], + [ 7.7685587, 46.5958262 ], + [ 7.7689433999999995, 46.5959073 ], + [ 7.7695483, 46.5959922 ], + [ 7.7697859, 46.5960294 ], + [ 7.7700306, 46.5960442 ], + [ 7.7702751, 46.5960138 ], + [ 7.7705604, 46.5959888 ], + [ 7.7708539, 46.595958 ], + [ 7.7710975, 46.595922 ], + [ 7.7712607, 46.5959262 ], + [ 7.77144, 46.5959077 ], + [ 7.7715948, 46.5958837 ], + [ 7.7717813, 46.5958315 ], + [ 7.7719512, 46.5957454 ], + [ 7.7720801, 46.5956146 ], + [ 7.7721675999999995, 46.595518 ], + [ 7.772257, 46.5954665 ], + [ 7.7724108, 46.5954088 ], + [ 7.7726378, 46.5953223 ], + [ 7.7729125, 46.5951563 ], + [ 7.7731547, 46.5950246 ], + [ 7.7735192, 46.5948691 ], + [ 7.7737533, 46.594743 ], + [ 7.7738743, 46.5946518 ], + [ 7.7740268, 46.5945208 ], + [ 7.7741312, 46.5943958 ], + [ 7.7742908, 46.5942198 ], + [ 7.7744023, 46.5940553 ], + [ 7.7745548, 46.5939187 ], + [ 7.774692, 46.5938047 ], + [ 7.7748932, 46.5936451 ], + [ 7.7750632, 46.5935592 ], + [ 7.7751924, 46.5934903 ], + [ 7.7753055, 46.5934442 ], + [ 7.7754114, 46.5934207 ], + [ 7.7755255, 46.5934084 ], + [ 7.7756722, 46.5933846 ], + [ 7.7758343, 46.5933663 ], + [ 7.775981, 46.5933368 ], + [ 7.7761112, 46.5933018 ], + [ 7.776265, 46.593244 ], + [ 7.7763698, 46.5931698 ], + [ 7.7764909, 46.5931123 ], + [ 7.7766295, 46.5930998 ], + [ 7.7768332000000004, 46.5930642 ], + [ 7.7792629, 46.5929523 ], + [ 7.7795227, 46.5928936 ], + [ 7.7797998, 46.5928517 ], + [ 7.7800025999999995, 46.5928104 ], + [ 7.7802388, 46.5927633 ], + [ 7.7804334, 46.5927107 ], + [ 7.7807175, 46.5926293 ], + [ 7.7810657, 46.5924853 ], + [ 7.7813974, 46.5923189 ], + [ 7.7818419, 46.5920613 ], + [ 7.7821727, 46.5918892 ], + [ 7.7824635, 46.5917062 ], + [ 7.7828023, 46.5915003 ], + [ 7.7831012, 46.5913116 ], + [ 7.7833187, 46.5911462 ], + [ 7.7835435, 46.5909583 ], + [ 7.7837445, 46.5907648 ], + [ 7.7840959, 46.5903671 ], + [ 7.7843284, 46.5901227 ], + [ 7.7845855, 46.5899062 ], + [ 7.7849158, 46.589644 ], + [ 7.7851496000000004, 46.5894841 ], + [ 7.7853836, 46.5893468 ], + [ 7.7855932, 46.5892265 ], + [ 7.7858434, 46.5890721 ], + [ 7.7859806, 46.588975 ], + [ 7.7861003, 46.5888161 ], + [ 7.7861629, 46.5886634 ], + [ 7.7862174, 46.5885164 ], + [ 7.7862708, 46.5883187 ], + [ 7.7863006, 46.5881324 ], + [ 7.7863784, 46.5879345 ], + [ 7.786441, 46.5877705 ], + [ 7.7865119, 46.5876346 ], + [ 7.786599, 46.5874873 ], + [ 7.7867663, 46.5872604 ], + [ 7.7869011, 46.5870393 ], + [ 7.7870279, 46.5868521 ], + [ 7.7871627, 46.5866368 ], + [ 7.7872986, 46.5864608 ], + [ 7.7874344, 46.5862736 ], + [ 7.7876648, 46.5859616 ], + [ 7.7878959, 46.5856327 ], + [ 7.7881354, 46.5853375 ], + [ 7.7882622, 46.5851447 ], + [ 7.7883316, 46.584913 ], + [ 7.7884986, 46.5846409 ], + [ 7.7887068, 46.5844306 ], + [ 7.7888117, 46.5843788 ], + [ 7.7889826, 46.5843322 ], + [ 7.7892517, 46.5843298 ], + [ 7.7893661, 46.5843683 ], + [ 7.7894977999999995, 46.5844234 ], + [ 7.7896214, 46.5845012 ], + [ 7.7897789, 46.5846407 ], + [ 7.7900027, 46.5848247 ], + [ 7.7902512, 46.5850478 ], + [ 7.7903839, 46.5851424 ], + [ 7.7904900999999995, 46.5851753 ], + [ 7.790679, 46.585258 ], + [ 7.7909749, 46.5853625 ], + [ 7.791221, 46.5854617 ], + [ 7.791476, 46.5855496 ], + [ 7.7916731, 46.585638 ], + [ 7.7918302, 46.5857324 ], + [ 7.7920112, 46.5858434 ], + [ 7.7921849, 46.5859771 ], + [ 7.7923588, 46.5861277 ], + [ 7.7926073, 46.5863452 ], + [ 7.7929464, 46.5865845 ], + [ 7.7930947, 46.5866903 ], + [ 7.7932844, 46.5867618 ], + [ 7.7934735, 46.5868728 ], + [ 7.7937289, 46.5870282 ], + [ 7.7939854, 46.5872232 ], + [ 7.7941089, 46.5872671 ], + [ 7.7943537, 46.587293 ], + [ 7.7946076, 46.5873415 ], + [ 7.7948616, 46.5874068 ], + [ 7.7951238, 46.5874721 ], + [ 7.7954183, 46.5874807 ], + [ 7.7957364, 46.5875002 ], + [ 7.795981, 46.5874924 ], + [ 7.7962256, 46.5874901 ], + [ 7.7963816, 46.5875283 ], + [ 7.7965531, 46.5875661 ], + [ 7.7967256, 46.587621 ], + [ 7.7969796, 46.5876806 ], + [ 7.7971612, 46.5877748 ], + [ 7.797391, 46.5878628 ], + [ 7.7976206999999995, 46.5879509 ], + [ 7.7978828, 46.5880049 ], + [ 7.7980959, 46.588048 ], + [ 7.7983244, 46.5880684 ], + [ 7.79857, 46.5880887 ], + [ 7.7987658, 46.5881038 ], + [ 7.7989382, 46.5881474 ], + [ 7.7991025, 46.5882135 ], + [ 7.7993158, 46.5882736 ], + [ 7.7995208, 46.5883224 ], + [ 7.7997248, 46.5883431 ], + [ 7.8000102, 46.5883462 ], + [ 7.8002386, 46.5883497 ], + [ 7.8004912, 46.5883192 ], + [ 7.8007112, 46.5883002 ], + [ 7.8008826, 46.58831 ], + [ 7.8009896, 46.5883428 ], + [ 7.8010714, 46.5883871 ], + [ 7.8011378, 46.5884316 ], + [ 7.801244, 46.5884644 ], + [ 7.8013511, 46.588503 ], + [ 7.8014653, 46.5885076 ], + [ 7.8017191, 46.5885335 ], + [ 7.8020129, 46.5885646 ], + [ 7.8022504999999995, 46.588613 ], + [ 7.8024636, 46.5886506 ], + [ 7.8027166999999995, 46.5886877 ], + [ 7.8029136999999995, 46.5887592 ], + [ 7.8031268, 46.5888022 ], + [ 7.8033483, 46.5888735 ], + [ 7.8035044, 46.5889341 ], + [ 7.8042762, 46.5887354 ], + [ 7.8047233, 46.5886523 ], + [ 7.8051064, 46.5886206 ], + [ 7.8053676, 46.5886577 ], + [ 7.8056051, 46.5886893 ], + [ 7.8057846, 46.588699 ], + [ 7.8059395, 46.5886862 ], + [ 7.8060873, 46.5887244 ], + [ 7.806169, 46.5887519 ], + [ 7.8062355, 46.5888076 ], + [ 7.8062939, 46.5888803 ], + [ 7.8063524, 46.5889756 ], + [ 7.8063945, 46.589054 ], + [ 7.8064526, 46.5890704 ], + [ 7.806534, 46.5890584 ], + [ 7.8067288, 46.5890341 ], + [ 7.8069488, 46.5890095 ], + [ 7.8073073, 46.5889668 ], + [ 7.8076406, 46.5889298 ], + [ 7.8079504, 46.5889214 ], + [ 7.8083101, 46.588935 ], + [ 7.8086283, 46.5889546 ], + [ 7.8090047, 46.5890131 ], + [ 7.8093575, 46.5890887 ], + [ 7.8096443, 46.5891763 ], + [ 7.8099229999999995, 46.5892695 ], + [ 7.8100806, 46.5894146 ], + [ 7.8102961, 46.5895648 ], + [ 7.8105422, 46.5896527 ], + [ 7.8108207, 46.5897177 ], + [ 7.8111085, 46.5898278 ], + [ 7.8113639, 46.5899719 ], + [ 7.811554, 46.5900941 ], + [ 7.8118096999999995, 46.5902835 ], + [ 7.8120744, 46.5904727 ], + [ 7.8123227, 46.5906394 ], + [ 7.8126122, 46.5908734 ], + [ 7.8127956, 46.5910915 ], + [ 7.8129219, 46.5913214 ], + [ 7.8130698, 46.5913539 ], + [ 7.813275, 46.5914364 ], + [ 7.8135791999999995, 46.5915463 ], + [ 7.8141795, 46.5917944 ], + [ 7.8148537000000005, 46.5921038 ], + [ 7.8159403, 46.5926122 ], + [ 7.8163763, 46.5928055 ], + [ 7.8165734, 46.5928768 ], + [ 7.8168264, 46.5929026 ], + [ 7.8171199, 46.592883 ], + [ 7.8173806, 46.5928524 ], + [ 7.8176473, 46.5927259 ], + [ 7.8187072, 46.5922201 ], + [ 7.818998, 46.592054 ], + [ 7.8191588, 46.591951 ], + [ 7.8194017, 46.5918191 ], + [ 7.8196287, 46.591738 ], + [ 7.8198722, 46.5916907 ], + [ 7.820148, 46.591598 ], + [ 7.8204403, 46.591522 ], + [ 7.8207170999999995, 46.5914574 ], + [ 7.8209757, 46.591347999999996 ], + [ 7.8211946, 46.5912838 ], + [ 7.8213235999999995, 46.5911869 ], + [ 7.8214119, 46.5911015 ], + [ 7.8214991, 46.5909767 ], + [ 7.8215209, 46.5908413 ], + [ 7.8213772, 46.5901155 ], + [ 7.8212971, 46.5897443 ], + [ 7.8213174, 46.5895017 ], + [ 7.8213311, 46.5893607 ], + [ 7.8213776, 46.5892477 ], + [ 7.8214819, 46.5891283 ], + [ 7.8216505, 46.5889745 ], + [ 7.8217634, 46.5889172 ], + [ 7.8218601, 46.5888598 ], + [ 7.8219984, 46.5888135 ], + [ 7.8222665, 46.5887884 ], + [ 7.8224457, 46.588753 ], + [ 7.8225505, 46.5887069 ], + [ 7.8233483, 46.5881639 ], + [ 7.8236782, 46.5878791 ], + [ 7.8238468, 46.5877254 ], + [ 7.8241092, 46.5873621 ], + [ 7.8242673, 46.5871183 ], + [ 7.8244357, 46.5869476 ], + [ 7.8246367, 46.5867767 ], + [ 7.824789, 46.5866287 ], + [ 7.8249888, 46.5864071 ], + [ 7.8254988, 46.5853032 ], + [ 7.8255761, 46.5850546 ], + [ 7.8255887, 46.5848797 ], + [ 7.8255754, 46.5846093 ], + [ 7.8255384, 46.5843392 ], + [ 7.8254764, 46.5841143 ], + [ 7.8253347, 46.5839071 ], + [ 7.8251106, 46.5837063 ], + [ 7.8247795, 46.5834614 ], + [ 7.8245308, 46.583244 ], + [ 7.8243799, 46.5830086 ], + [ 7.8241547, 46.5827571 ], + [ 7.8239957, 46.5825219 ], + [ 7.8238682, 46.5822526 ], + [ 7.8238481, 46.5820725 ], + [ 7.823863, 46.5819822 ], + [ 7.8239106, 46.581914 ], + [ 7.824063, 46.581783 ], + [ 7.8242487, 46.5816403 ], + [ 7.8244256, 46.5815147 ], + [ 7.8245208, 46.5813729 ], + [ 7.8245343, 46.5812094 ], + [ 7.8245872, 46.580972 ], + [ 7.8247453, 46.580734 ], + [ 7.8243824, 46.5804837 ], + [ 7.8242411, 46.5803441 ], + [ 7.8241556, 46.5801251 ], + [ 7.8241353, 46.5799055 ], + [ 7.8241467, 46.5796743 ], + [ 7.824266, 46.5794873 ], + [ 7.8244087, 46.5792549 ], + [ 7.8246875, 46.5789028 ], + [ 7.8250559, 46.5785386 ], + [ 7.8253683, 46.57822 ], + [ 7.8257312, 46.5779969 ], + [ 7.8258604, 46.5779392 ], + [ 7.8259161, 46.5778599 ], + [ 7.8259867, 46.5776901 ], + [ 7.8260804, 46.5774525 ], + [ 7.8262057, 46.5771977 ], + [ 7.8263972, 46.5769536 ], + [ 7.8265321, 46.5767663 ], + [ 7.8265861999999995, 46.5765911 ], + [ 7.8264563, 46.575747 ], + [ 7.8263977, 46.5756516 ], + [ 7.8262567, 46.5755459 ], + [ 7.8261818, 46.5754451 ], + [ 7.8261629, 46.5753157 ], + [ 7.8261427999999995, 46.575113 ], + [ 7.8261385, 46.5748594 ], + [ 7.8260751, 46.57455 ], + [ 7.8260127, 46.5742519 ], + [ 7.8259378, 46.5741511 ], + [ 7.8258632, 46.5741011 ], + [ 7.8257408, 46.5740797 ], + [ 7.8256256, 46.5740527 ], + [ 7.8254936, 46.5739525 ], + [ 7.8253935, 46.5738519 ], + [ 7.8253011, 46.5737005 ], + [ 7.8252574, 46.5735263 ], + [ 7.8252222, 46.5733913 ], + [ 7.8251951, 46.5732451 ], + [ 7.8250934, 46.5730431 ], + [ 7.8249577, 46.5727682 ], + [ 7.8248638, 46.5725156 ], + [ 7.8247947, 46.5723189 ], + [ 7.8246996, 46.5720154 ], + [ 7.8246702, 46.5717677 ], + [ 7.8246893, 46.5714857 ], + [ 7.8247354, 46.5713049 ], + [ 7.824828, 46.5710392 ], + [ 7.8250019, 46.5707276 ], + [ 7.825048, 46.5705637 ], + [ 7.8250618, 46.5704453 ], + [ 7.8250182, 46.5702652 ], + [ 7.8249738, 46.5700966 ], + [ 7.8249371, 46.5698715 ], + [ 7.8249563, 46.5695952 ], + [ 7.8250336, 46.5693408 ], + [ 7.8250528, 46.5690588 ], + [ 7.8250653, 46.5688614 ], + [ 7.8251927, 46.5686687 ], + [ 7.8252869, 46.5684987 ], + [ 7.8253329, 46.5683292 ], + [ 7.8253126, 46.5681039 ], + [ 7.8251933, 46.567834500000004 ], + [ 7.8250994, 46.5675874 ], + [ 7.8251052, 46.5674915 ], + [ 7.8252015, 46.5673835 ], + [ 7.825305, 46.5672643 ], + [ 7.8253605, 46.5671623 ], + [ 7.8253266, 46.567095 ], + [ 7.8252517, 46.5669999 ], + [ 7.8251177, 46.5668434 ], + [ 7.8249753, 46.5666473 ], + [ 7.8248581999999995, 46.5664512 ], + [ 7.8247404, 46.5662889 ], + [ 7.8245746, 46.5661213 ], + [ 7.8244741, 46.5659701 ], + [ 7.824447, 46.5658295 ], + [ 7.8244269, 46.565638 ], + [ 7.8243835, 46.5655088 ], + [ 7.8242598999999995, 46.5654255 ], + [ 7.8241036, 46.5653368 ], + [ 7.8238647, 46.565215 ], + [ 7.8235617, 46.5651445 ], + [ 7.8232321, 46.5649785 ], + [ 7.822936, 46.5648461 ], + [ 7.8226642, 46.5646682 ], + [ 7.8223345, 46.5645078 ], + [ 7.8220792, 46.5643694 ], + [ 7.8217516, 46.5642654 ], + [ 7.8214963, 46.5641155 ], + [ 7.8213389, 46.5639987 ], + [ 7.821123, 46.5637809 ], + [ 7.8209726, 46.563602 ], + [ 7.8207823, 46.5634291 ], + [ 7.8206728, 46.5632723 ], + [ 7.8205557, 46.5630816 ], + [ 7.8204706, 46.5629246 ], + [ 7.8203702, 46.5627791 ], + [ 7.8201148, 46.5626236 ], + [ 7.819752, 46.5623904 ], + [ 7.8194727, 46.562314 ], + [ 7.8191545, 46.5622663 ], + [ 7.8189334, 46.562229 ], + [ 7.8187935, 46.5621682 ], + [ 7.8186607, 46.562045499999996 ], + [ 7.8185356, 46.5618833 ], + [ 7.8184743999999995, 46.5616358 ], + [ 7.8190449, 46.5616305 ], + [ 7.8192639, 46.561589 ], + [ 7.8195408, 46.5615581 ], + [ 7.8196873, 46.5615287 ], + [ 7.8198816, 46.5614592 ], + [ 7.8201083, 46.5613613 ], + [ 7.8203098, 46.5612692 ], + [ 7.8205131, 46.5611997 ], + [ 7.8207146, 46.5611076 ], + [ 7.8209658, 46.5610208 ], + [ 7.8212659, 46.5609165 ], + [ 7.8214611, 46.5608639 ], + [ 7.821574, 46.5608065 ], + [ 7.8216531, 46.5606931 ], + [ 7.8217647, 46.5605624 ], + [ 7.8219167, 46.5603919 ], + [ 7.8220931, 46.5602099 ], + [ 7.8223022, 46.5600501 ], + [ 7.8225673, 46.559839 ], + [ 7.8235387, 46.5590071 ], + [ 7.8231747, 46.5587174 ], + [ 7.8228624, 46.5585851 ], + [ 7.8225966, 46.5583339 ], + [ 7.8224146, 46.5581778 ], + [ 7.8223047, 46.5579705 ], + [ 7.8221706, 46.5577913 ], + [ 7.8220711, 46.5576738 ], + [ 7.821914, 46.5575795 ], + [ 7.8218066, 46.5574903 ], + [ 7.8217307, 46.5573671 ], + [ 7.8216141, 46.5572441 ], + [ 7.8214743, 46.5571778 ], + [ 7.8213494, 46.5570381 ], + [ 7.8211413, 46.5567639 ], + [ 7.8209326, 46.5565235 ], + [ 7.8207059, 46.5561649 ], + [ 7.8204874, 46.5558006 ], + [ 7.8204089, 46.5555308 ], + [ 7.8202025, 46.5553918 ], + [ 7.8199637, 46.5552758 ], + [ 7.8196269, 46.5551323 ], + [ 7.8192414, 46.5550176 ], + [ 7.8189044, 46.5548347 ], + [ 7.8185991, 46.5546516 ], + [ 7.8182437, 46.554407 ], + [ 7.8179708, 46.5541954 ], + [ 7.817722, 46.5539384 ], + [ 7.8175131, 46.5536585 ], + [ 7.8173533, 46.5534176 ], + [ 7.8172759, 46.5531929 ], + [ 7.8171428, 46.553042 ], + [ 7.8170101, 46.5529362 ], + [ 7.8167872, 46.5527635 ], + [ 7.8165971, 46.5526131 ], + [ 7.8163826, 46.5524799 ], + [ 7.8161275, 46.5523582 ], + [ 7.8159387, 46.5522754 ], + [ 7.8156838, 46.5521932 ], + [ 7.8154133, 46.5520887 ], + [ 7.8150115, 46.5519684 ], + [ 7.8147564, 46.5518355 ], + [ 7.8145676, 46.5517584 ], + [ 7.8143612000000005, 46.5516137 ], + [ 7.8142610999999995, 46.5515189 ], + [ 7.8141608, 46.5513845 ], + [ 7.8140602, 46.551222 ], + [ 7.8140085, 46.5510535 ], + [ 7.8139638, 46.550834 ], + [ 7.8139017, 46.5505753 ], + [ 7.8138327, 46.5503788 ], + [ 7.813724, 46.5502162 ], + [ 7.8136141, 46.5500088 ], + [ 7.8135464, 46.5498797 ], + [ 7.8134936, 46.5496717 ], + [ 7.8134812, 46.549407 ], + [ 7.8135237, 46.5490796 ], + [ 7.8135252, 46.548702 ], + [ 7.8135931, 46.5483915 ], + [ 7.813717, 46.5480408 ], + [ 7.8137429, 46.5476631 ], + [ 7.8135397, 46.5472649 ], + [ 7.8132885, 46.5468839 ], + [ 7.8131138, 46.5467334 ], + [ 7.8129425, 46.5466955 ], + [ 7.812754, 46.5466579 ], + [ 7.8125501, 46.5466372 ], + [ 7.8122813, 46.5466566 ], + [ 7.812053, 46.5466418 ], + [ 7.8118238, 46.5466044 ], + [ 7.8116106, 46.5465275 ], + [ 7.8113555, 46.5464002 ], + [ 7.8110748999999995, 46.5462395 ], + [ 7.8109022, 46.5461283 ], + [ 7.8106971, 46.546057 ], + [ 7.8105342, 46.5460584 ], + [ 7.810362, 46.5460318 ], + [ 7.8102386, 46.5459767 ], + [ 7.8100579, 46.5458769 ], + [ 7.8096696, 46.5455818 ], + [ 7.8089629, 46.54485 ], + [ 7.8083498, 46.5443146 ], + [ 7.8082004, 46.5441639 ], + [ 7.808108, 46.543995699999996 ], + [ 7.8080079, 46.5438894 ], + [ 7.8078596000000005, 46.5437782 ], + [ 7.807686, 46.5436445 ], + [ 7.8074693, 46.5434154 ], + [ 7.8072534000000005, 46.5431807 ], + [ 7.8069726, 46.5429973 ], + [ 7.8067255, 46.5428475 ], + [ 7.8064308, 46.5427656 ], + [ 7.8061921, 46.5426494 ], + [ 7.8066168, 46.5426794 ], + [ 7.8069417, 46.5426482 ], + [ 7.8071777, 46.5425953 ], + [ 7.8073884, 46.5425539 ], + [ 7.8076326, 46.5425123 ], + [ 7.8078024, 46.5424374 ], + [ 7.8079965, 46.5423454 ], + [ 7.808237, 46.542129 ], + [ 7.8085111, 46.5419462 ], + [ 7.8087681, 46.5417521 ], + [ 7.8089839, 46.5415022 ], + [ 7.80915, 46.5412471 ], + [ 7.8093078, 46.5409638 ], + [ 7.8093947, 46.5408053 ], + [ 7.8095873000000005, 46.5406118 ], + [ 7.8097601999999995, 46.5402834 ], + [ 7.8099655, 46.5399208 ], + [ 7.8101241, 46.5396488 ], + [ 7.8103062, 46.5393541 ], + [ 7.8107615, 46.5388652 ], + [ 7.8107342, 46.5386794 ], + [ 7.810756, 46.5385384 ], + [ 7.8108651, 46.5382894 ], + [ 7.8109192, 46.5380974 ], + [ 7.8108338, 46.5378896 ], + [ 7.8107742, 46.5377549 ], + [ 7.8107054, 46.5375752 ], + [ 7.8106304, 46.5374575 ], + [ 7.8106047, 46.5373845 ], + [ 7.8106837, 46.5372598 ], + [ 7.8107704, 46.5370842 ], + [ 7.810825, 46.5369654 ], + [ 7.8107085, 46.5368537 ], + [ 7.8105104999999995, 46.5367203 ], + [ 7.810353, 46.5365696 ], + [ 7.8102782, 46.5364745 ], + [ 7.8102432, 46.5363678 ], + [ 7.8102908, 46.536294 ], + [ 7.8103858, 46.5361297 ], + [ 7.8104565, 46.5359826 ], + [ 7.8105014, 46.5357623 ], + [ 7.8104854, 46.5353285 ], + [ 7.8104858, 46.5349227 ], + [ 7.8105864, 46.5346232 ], + [ 7.8107521, 46.5343117 ], + [ 7.8110062, 46.5339487 ], + [ 7.8113632, 46.5333874 ], + [ 7.8117545, 46.5329499 ], + [ 7.8121889, 46.5326246 ], + [ 7.8125503, 46.5323338 ], + [ 7.812807, 46.5321229 ], + [ 7.8128766, 46.5319363 ], + [ 7.8129609, 46.5311634 ], + [ 7.8129396, 46.5309157 ], + [ 7.8130835, 46.5307509 ], + [ 7.8132285, 46.5306369 ], + [ 7.8133634, 46.5304665 ], + [ 7.8133999, 46.5302126 ], + [ 7.8134938, 46.5300145 ], + [ 7.8136596, 46.5297199 ], + [ 7.8139571, 46.5295142 ], + [ 7.8142718, 46.5293141 ], + [ 7.8146832, 46.5290791 ], + [ 7.8150061, 46.5288958 ], + [ 7.8152153, 46.528753 ], + [ 7.815358, 46.5285431 ], + [ 7.8155821, 46.5283269 ], + [ 7.8168962, 46.527537 ], + [ 7.8173705, 46.5272113 ], + [ 7.8176434, 46.5269834 ], + [ 7.81795, 46.5267945 ], + [ 7.8182255, 46.5267018 ], + [ 7.8184997, 46.5265471 ], + [ 7.8186928, 46.5264326 ], + [ 7.8188458, 46.5263015 ], + [ 7.8189395, 46.5260808 ], + [ 7.8189604, 46.5259171 ], + [ 7.8191355, 46.5256901 ], + [ 7.8194095, 46.5255016 ], + [ 7.8197153, 46.5253128 ], + [ 7.8200229, 46.5251633 ], + [ 7.8200099, 46.5249268 ], + [ 7.8200698, 46.5246444 ], + [ 7.8201215, 46.5243565 ], + [ 7.82028, 46.5240789 ], + [ 7.8201891, 46.5240064 ], + [ 7.8200901, 46.523945499999996 ], + [ 7.819972, 46.5237155 ], + [ 7.8198937, 46.5234683 ], + [ 7.8197906, 46.5231817 ], + [ 7.8196957, 46.5228839 ], + [ 7.8196416, 46.5226027 ], + [ 7.8196373999999995, 46.5223548 ], + [ 7.819699, 46.5221964 ], + [ 7.8196962, 46.5220387 ], + [ 7.8196353, 46.5218363 ], + [ 7.8195986, 46.5215887 ], + [ 7.8196831, 46.5213343 ], + [ 7.8197755, 46.5210347 ], + [ 7.8198269, 46.5207073 ], + [ 7.8198296, 46.5203974 ], + [ 7.8197905, 46.520054 ], + [ 7.8198438, 46.5194166 ], + [ 7.8198898, 46.5192414 ], + [ 7.8200488, 46.5190315 ], + [ 7.8200693, 46.5188172 ], + [ 7.82009, 46.5186423 ], + [ 7.8202932, 46.5185784 ], + [ 7.8204712, 46.5185203 ], + [ 7.8207306, 46.5184671 ], + [ 7.8208677, 46.5183926 ], + [ 7.8209487, 46.5183356 ], + [ 7.8209625, 46.5182114 ], + [ 7.8210181, 46.5181207 ], + [ 7.8211226, 46.5180408 ], + [ 7.8212344, 46.5179552 ], + [ 7.821248, 46.5178086 ], + [ 7.8212126, 46.5176399 ], + [ 7.8213497, 46.5175654 ], + [ 7.8215598, 46.5174451 ], + [ 7.821777, 46.5172965 ], + [ 7.8219768, 46.5171086 ], + [ 7.8221765, 46.5169038 ], + [ 7.8223609, 46.5167218 ], + [ 7.8225118, 46.5165288 ], + [ 7.822722, 46.5164254 ], + [ 7.8228906, 46.5162999 ], + [ 7.8229366, 46.5161303 ], + [ 7.823091, 46.5160837 ], + [ 7.8231466, 46.5160044 ], + [ 7.8232108, 46.5159811 ], + [ 7.8232757, 46.5159411 ], + [ 7.8233641, 46.5158895 ], + [ 7.8234279, 46.5158157 ], + [ 7.8234915, 46.5157193 ], + [ 7.823588, 46.5156621 ], + [ 7.8236518, 46.515577 ], + [ 7.8237656, 46.5155478 ], + [ 7.8239031, 46.5155351 ], + [ 7.823976, 46.5154837 ], + [ 7.8240224, 46.5153536 ], + [ 7.8241757, 46.5152677 ], + [ 7.8244252, 46.5150907 ], + [ 7.8247877, 46.5148731 ], + [ 7.8249224, 46.5146915 ], + [ 7.8250077000000005, 46.5144315 ], + [ 7.8251272, 46.5142894 ], + [ 7.8252398, 46.5142038 ], + [ 7.8253757, 46.5140673 ], + [ 7.8255102999999995, 46.5138744 ], + [ 7.8257505, 46.5136467 ], + [ 7.8260571, 46.5134747 ], + [ 7.8262511, 46.5133715 ], + [ 7.8263708, 46.5132633 ], + [ 7.8264099, 46.5131445 ], + [ 7.8264072, 46.512998 ], + [ 7.8264208, 46.512857 ], + [ 7.8264916, 46.5127322 ], + [ 7.8266189, 46.5125452 ], + [ 7.8267049, 46.5123808 ], + [ 7.8267752999999995, 46.5122055 ], + [ 7.8267536, 46.5119014 ], + [ 7.826849, 46.5118046 ], + [ 7.8270021, 46.5117018 ], + [ 7.8271637, 46.511627 ], + [ 7.8271783, 46.5115085 ], + [ 7.8271676, 46.511379 ], + [ 7.827051, 46.5112448 ], + [ 7.8269019, 46.5111222 ], + [ 7.8267703, 46.5110502 ], + [ 7.8266226, 46.5110177 ], + [ 7.8264271999999995, 46.511014 ], + [ 7.826214, 46.5109258 ], + [ 7.8259916, 46.510804 ], + [ 7.8259156, 46.5106581 ], + [ 7.8258734, 46.5105628 ], + [ 7.8259279, 46.5104438 ], + [ 7.8258939, 46.510354 ], + [ 7.825673, 46.5103167 ], + [ 7.8254529, 46.5102962 ], + [ 7.8253867, 46.5102573 ], + [ 7.8253772, 46.5101785 ], + [ 7.8254326, 46.5100653 ], + [ 7.8254871999999995, 46.5099578 ], + [ 7.8255498, 46.5098331 ], + [ 7.8255237, 46.509715 ], + [ 7.8254059, 46.5095302 ], + [ 7.8252566, 46.5093793 ], + [ 7.8251739, 46.5093069 ], + [ 7.8251805999999995, 46.5092223 ], + [ 7.8252443, 46.5091315 ], + [ 7.8252745, 46.5090354 ], + [ 7.8252488, 46.5089624 ], + [ 7.8251811, 46.5088334 ], + [ 7.8250735, 46.5087048 ], + [ 7.8249314, 46.5085427 ], + [ 7.8248565, 46.508425 ], + [ 7.8248538, 46.5082786 ], + [ 7.8248435, 46.5081998 ], + [ 7.8247211, 46.508167 ], + [ 7.8245897, 46.5081288 ], + [ 7.8244906, 46.5080452 ], + [ 7.8244798, 46.5078932 ], + [ 7.8244052, 46.5078263 ], + [ 7.8242817, 46.5077542 ], + [ 7.8241174, 46.5076598 ], + [ 7.8240335, 46.507548 ], + [ 7.8240867, 46.5073614 ], + [ 7.8241505, 46.5068312 ], + [ 7.8241874, 46.5066335 ], + [ 7.8241449, 46.5064986 ], + [ 7.8240299, 46.5064772 ], + [ 7.8238425, 46.5064507 ], + [ 7.8236136, 46.5064417 ], + [ 7.823369, 46.5063988 ], + [ 7.8234003, 46.5063309 ], + [ 7.8234629, 46.5062007 ], + [ 7.8234776, 46.5060992 ], + [ 7.8234413, 46.5059191 ], + [ 7.8233245, 46.5057455 ], + [ 7.8230834, 46.505511 ], + [ 7.8229668, 46.5053656 ], + [ 7.8229384, 46.5051516 ], + [ 7.8230009, 46.5050158 ], + [ 7.823105, 46.5048795 ], + [ 7.8229698, 46.5046497 ], + [ 7.822705, 46.5043874 ], + [ 7.8224991, 46.5042935 ], + [ 7.8222614, 46.5041886 ], + [ 7.8220228, 46.5040668 ], + [ 7.8218076, 46.5039111 ], + [ 7.8217312, 46.5037033 ], + [ 7.8216787, 46.5035347 ], + [ 7.8216514, 46.5033602 ], + [ 7.8213652, 46.5033065 ], + [ 7.8211197, 46.5032469 ], + [ 7.8209545, 46.5031357 ], + [ 7.8207891, 46.5030076 ], + [ 7.8206885, 46.5028338 ], + [ 7.820523, 46.5026775 ], + [ 7.820184, 46.5024045 ], + [ 7.8199009, 46.5021029 ], + [ 7.8197924, 46.5019573 ], + [ 7.8198141, 46.5017937 ], + [ 7.8198194, 46.5016302 ], + [ 7.8197071, 46.5012874 ], + [ 7.8196053, 46.501046 ], + [ 7.8194932999999995, 46.500754 ], + [ 7.8192949, 46.500553 ], + [ 7.8189139999999995, 46.5002241 ], + [ 7.8186239, 46.4999618 ], + [ 7.8184474999999996, 46.4996536 ], + [ 7.8180977, 46.499234 ], + [ 7.8175105, 46.4987436 ], + [ 7.8167721, 46.4980403 ], + [ 7.8166461, 46.497833 ], + [ 7.8165305, 46.4977157 ], + [ 7.8163667, 46.4976946 ], + [ 7.8162525, 46.4976676 ], + [ 7.8161455, 46.4976234 ], + [ 7.8159407, 46.4975465 ], + [ 7.8156938, 46.4974023 ], + [ 7.8154554, 46.497303 ], + [ 7.8152503, 46.4971978 ], + [ 7.8151258, 46.497092 ], + [ 7.815059, 46.4969629 ], + [ 7.8149195, 46.4969247 ], + [ 7.8147472, 46.4968531 ], + [ 7.8144017, 46.4966928 ], + [ 7.8141723, 46.4965992 ], + [ 7.8138859, 46.4965004 ], + [ 7.8134521, 46.4964142 ], + [ 7.8130287, 46.4963957 ], + [ 7.8125566, 46.4964113 ], + [ 7.8119941, 46.4964277 ], + [ 7.8115138, 46.4964322 ], + [ 7.8109999, 46.4963919 ], + [ 7.8103054, 46.496263 ], + [ 7.8099133, 46.4961991 ], + [ 7.8094645, 46.4961581 ], + [ 7.8090981, 46.4961558 ], + [ 7.8088051, 46.4961754 ], + [ 7.8086437, 46.4962502 ], + [ 7.8084754, 46.4964039 ], + [ 7.8082349, 46.4965922 ], + [ 7.8081806, 46.4967505 ], + [ 7.8081331, 46.4968298 ], + [ 7.8079309, 46.4969162 ], + [ 7.8076322, 46.4970486 ], + [ 7.8070352, 46.4973697 ], + [ 7.8068574, 46.497439 ], + [ 7.8067913, 46.497417 ], + [ 7.8065864, 46.4973343 ], + [ 7.8063571, 46.497252 ], + [ 7.8060804, 46.4972658 ], + [ 7.8056571, 46.4972753 ], + [ 7.8053303, 46.4972276 ], + [ 7.8051255, 46.4971674 ], + [ 7.8049289, 46.4971073 ], + [ 7.8047334, 46.497081 ], + [ 7.8041298, 46.4970414 ], + [ 7.8035506, 46.4969903 ], + [ 7.8031588, 46.4969545 ], + [ 7.8028402, 46.4969123 ], + [ 7.802448, 46.4968313 ], + [ 7.8022363, 46.4968277 ], + [ 7.8019841, 46.4968525 ], + [ 7.8016018, 46.4968955 ], + [ 7.8012042, 46.4969781 ], + [ 7.801033, 46.4969401 ], + [ 7.8008473, 46.4970433 ], + [ 7.8005963, 46.4971358 ], + [ 7.8002393, 46.4971954 ], + [ 7.7999383, 46.4972321 ], + [ 7.7996575, 46.4969923 ], + [ 7.7994596, 46.4968701 ], + [ 7.7991489, 46.496794 ], + [ 7.7982038, 46.4968026 ], + [ 7.7978946, 46.4968337 ], + [ 7.7976028, 46.4968927 ], + [ 7.797383, 46.4969004 ], + [ 7.7971946, 46.4968457 ], + [ 7.7971035, 46.4967339 ], + [ 7.7970348, 46.4965654 ], + [ 7.7968721, 46.4965838 ], + [ 7.7967337, 46.4965794 ], + [ 7.7964813, 46.496576 ], + [ 7.7962359, 46.4965276 ], + [ 7.7959496, 46.4964457 ], + [ 7.7957271, 46.4962899 ], + [ 7.7956095, 46.4961105 ], + [ 7.7954533999999995, 46.4960219 ], + [ 7.7952824, 46.4960122 ], + [ 7.7951754, 46.4959511 ], + [ 7.7950089, 46.4957779 ], + [ 7.7947375999999995, 46.4956113 ], + [ 7.7944583, 46.4954899 ], + [ 7.7941069, 46.4954029 ], + [ 7.7937385, 46.4953443 ], + [ 7.7933231, 46.495303 ], + [ 7.7928988, 46.4952842 ], + [ 7.7925081, 46.4952878 ], + [ 7.7923112, 46.4951938 ], + [ 7.7921837, 46.4953584 ], + [ 7.7919993, 46.4955404 ], + [ 7.7917275, 46.4958078 ], + [ 7.7914639999999995, 46.4961032 ], + [ 7.7912646, 46.4963643 ], + [ 7.7910962999999995, 46.4965236 ], + [ 7.7909357, 46.496621 ], + [ 7.7906932, 46.4967583 ], + [ 7.7902991, 46.4970043 ], + [ 7.7898486, 46.4973296 ], + [ 7.7893669, 46.4977567 ], + [ 7.7887018, 46.4978811 ], + [ 7.7880683, 46.4979939 ], + [ 7.7875649, 46.4980774 ], + [ 7.7871825, 46.4981203 ], + [ 7.7866708, 46.4981756 ], + [ 7.7861988, 46.4982081 ], + [ 7.7854987, 46.4982313 ], + [ 7.7847, 46.498216 ], + [ 7.7835111999999995, 46.4982041 ], + [ 7.7817764, 46.4982254 ], + [ 7.7811335, 46.498265 ], + [ 7.7809966, 46.4983733 ], + [ 7.7808768, 46.4984871 ], + [ 7.7807493, 46.4986629 ], + [ 7.7806633, 46.4988385 ], + [ 7.780609, 46.499008 ], + [ 7.7805653, 46.4993071 ], + [ 7.7806366, 46.4996446 ], + [ 7.7807721999999995, 46.4999646 ], + [ 7.7809494, 46.5003069 ], + [ 7.7810929, 46.5006043 ], + [ 7.7811617, 46.5007952 ], + [ 7.7811386, 46.50088 ], + [ 7.781083, 46.500965 ], + [ 7.7810038, 46.5010615 ], + [ 7.7809077, 46.5011865 ], + [ 7.7809273999999995, 46.501344 ], + [ 7.7809313, 46.5015638 ], + [ 7.7808538, 46.5017955 ], + [ 7.7809702, 46.5019186 ], + [ 7.7810124, 46.5020309 ], + [ 7.7810241, 46.5022054 ], + [ 7.7809781000000005, 46.5024088 ], + [ 7.7808689, 46.502652 ], + [ 7.7807916, 46.502912 ], + [ 7.7806024, 46.5032519 ], + [ 7.7804133, 46.5036143 ], + [ 7.7802477, 46.5039483 ], + [ 7.78009, 46.5042372 ], + [ 7.7799821, 46.5045594 ], + [ 7.7799059, 46.5048756 ], + [ 7.7798635, 46.5052537 ], + [ 7.7798756000000004, 46.5054902 ], + [ 7.7799034, 46.5056478 ], + [ 7.779791, 46.5057615 ], + [ 7.7712072, 46.5105555 ], + [ 7.7707399, 46.5108471 ], + [ 7.7703936, 46.511087 ], + [ 7.7701112, 46.5112416 ], + [ 7.7697161, 46.5114818 ], + [ 7.7694269, 46.5117324 ], + [ 7.7693317, 46.5118797 ], + [ 7.7693017, 46.5120378 ], + [ 7.7691901, 46.5121684 ], + [ 7.7690703, 46.5122878 ], + [ 7.7689006, 46.5123739 ], + [ 7.7683823, 46.5125644 ], + [ 7.7678568, 46.5127945 ], + [ 7.7672581, 46.5130535 ], + [ 7.7660468, 46.5136673 ], + [ 7.7646345, 46.5144406 ], + [ 7.7644636, 46.5144759 ], + [ 7.7643426, 46.5145277 ], + [ 7.7641404, 46.514631 ], + [ 7.7638577, 46.5147462 ], + [ 7.7630813, 46.5151081 ], + [ 7.7626777, 46.515292 ], + [ 7.7625989, 46.5154561 ], + [ 7.7624956, 46.5156148 ], + [ 7.7623746, 46.5156722 ], + [ 7.7621803, 46.515736 ], + [ 7.7613047, 46.515986 ], + [ 7.7608338, 46.5161029 ], + [ 7.7604197, 46.5161686 ], + [ 7.7600466, 46.5162902 ], + [ 7.7598278, 46.5163428 ], + [ 7.7596568999999995, 46.5163613 ], + [ 7.7588021, 46.5164195 ], + [ 7.7578245, 46.5159604 ], + [ 7.7569807, 46.515669 ], + [ 7.7563664, 46.5154998 ], + [ 7.7561547, 46.5155016 ], + [ 7.7559676, 46.5155314 ], + [ 7.7557173, 46.5156294 ], + [ 7.7552394, 46.515797 ], + [ 7.7545745, 46.5160227 ], + [ 7.7541534, 46.5161447 ], + [ 7.7537880999999995, 46.5162155 ], + [ 7.7534543, 46.5162354 ], + [ 7.7532102, 46.5162713 ], + [ 7.7529742, 46.5163015 ], + [ 7.7526729, 46.5163041 ], + [ 7.7524775, 46.5163116 ], + [ 7.7523228, 46.5163185 ], + [ 7.7520621, 46.5163151 ], + [ 7.7518258, 46.5163003 ], + [ 7.7515806, 46.5162743 ], + [ 7.7513116, 46.5162484 ], + [ 7.7509684, 46.5161781 ], + [ 7.7507627, 46.5161011 ], + [ 7.7505823, 46.5160293 ], + [ 7.7504926, 46.5160133 ], + [ 7.7496927, 46.5164146 ], + [ 7.7494589, 46.516552 ], + [ 7.7492564999999995, 46.5166045 ], + [ 7.7490288, 46.5166741 ], + [ 7.7487206, 46.5167557 ], + [ 7.7481772, 46.5168732 ], + [ 7.7477146, 46.5170011 ], + [ 7.7470492, 46.5171478 ], + [ 7.7465212, 46.5172596 ], + [ 7.7455058999999995, 46.5174487 ], + [ 7.7452464, 46.517496 ], + [ 7.7448881, 46.5175104 ], + [ 7.7445543, 46.5175302 ], + [ 7.744188, 46.517572799999996 ], + [ 7.7437728, 46.5175989 ], + [ 7.7433258, 46.5176253 ], + [ 7.7428455, 46.517669 ], + [ 7.7425443, 46.5176885 ], + [ 7.7422675, 46.5177134 ], + [ 7.7420478, 46.5177435 ], + [ 7.7418035, 46.5177456 ], + [ 7.7416253, 46.5177753 ], + [ 7.7413975, 46.5178168 ], + [ 7.7412264, 46.5178126 ], + [ 7.7410227, 46.5177974 ], + [ 7.7408263, 46.5177766 ], + [ 7.7405565, 46.5177282 ], + [ 7.7403285, 46.5177359 ], + [ 7.7400851, 46.5177548 ], + [ 7.7392967, 46.5179081 ], + [ 7.7386638, 46.5180433 ], + [ 7.7381287, 46.5181888 ], + [ 7.7375275, 46.5183178 ], + [ 7.7372053, 46.5185236 ], + [ 7.7369707, 46.5186552 ], + [ 7.7366554, 46.5187932 ], + [ 7.7364043, 46.5188968 ], + [ 7.7361112, 46.5189106 ], + [ 7.7358668999999995, 46.5189127 ], + [ 7.7354841, 46.5189159 ], + [ 7.7351339, 46.5189133 ], + [ 7.7347999, 46.5189105 ], + [ 7.7345231, 46.5189355 ], + [ 7.7342637, 46.519011 ], + [ 7.7340126, 46.5191033 ], + [ 7.7336973, 46.51923 ], + [ 7.73343, 46.5193675 ], + [ 7.7332519, 46.5194029 ], + [ 7.7330238, 46.5193992 ], + [ 7.7328204, 46.5194347 ], + [ 7.7325774, 46.519544 ], + [ 7.7322285, 46.5196258 ], + [ 7.7319853, 46.5196899 ], + [ 7.7317736, 46.5197029 ], + [ 7.7315781, 46.5196934 ], + [ 7.7312107, 46.5196796 ], + [ 7.7308765, 46.5196429 ], + [ 7.7305834, 46.5196567 ], + [ 7.7300335, 46.519932 ], + [ 7.7297831, 46.52003 ], + [ 7.7296052, 46.5201103 ], + [ 7.7295403, 46.520156 ], + [ 7.7294611, 46.5202637 ], + [ 7.7293902, 46.5204109 ], + [ 7.7292637, 46.5206655 ], + [ 7.7290743, 46.5210448 ], + [ 7.7281644, 46.5231605 ], + [ 7.7279983, 46.523483 ], + [ 7.7278971, 46.5237488 ], + [ 7.7277959, 46.5240202 ], + [ 7.7277099, 46.5242351 ], + [ 7.7276812, 46.5245115 ], + [ 7.7276521, 46.5246978 ], + [ 7.727402, 46.5248464 ], + [ 7.7272009, 46.5250172 ], + [ 7.7270486, 46.5251706 ], + [ 7.72688, 46.5253355 ], + [ 7.7267521, 46.5254719 ], + [ 7.7266658, 46.5256417 ], + [ 7.7265869, 46.5258171 ], + [ 7.7265809999999995, 46.5259411 ], + [ 7.7266092, 46.5261719 ], + [ 7.7266197, 46.526324 ], + [ 7.725404, 46.526712 ], + [ 7.7250713, 46.526805 ], + [ 7.7247792, 46.5268695 ], + [ 7.7246085, 46.5269385 ], + [ 7.7233826, 46.5277154 ], + [ 7.723109, 46.5278868 ], + [ 7.722923, 46.5279899 ], + [ 7.7227765, 46.5280248 ], + [ 7.722582, 46.5280491 ], + [ 7.7222726, 46.5280912 ], + [ 7.7220309, 46.5287413 ], + [ 7.7179999, 46.5304379 ], + [ 7.7178313, 46.5305972 ], + [ 7.717638, 46.5307173 ], + [ 7.7162772, 46.5317488 ], + [ 7.7161501, 46.5319189 ], + [ 7.716127, 46.5320037 ], + [ 7.7161539, 46.5321782 ], + [ 7.7161818, 46.5323752 ], + [ 7.7162098, 46.5325891 ], + [ 7.716197, 46.5328033 ], + [ 7.7162007, 46.5330344 ], + [ 7.7160982, 46.5332325 ], + [ 7.715947, 46.5334536 ], + [ 7.7157643, 46.5337313 ], + [ 7.7154352, 46.5340609 ], + [ 7.7150978, 46.5343511 ], + [ 7.7149118, 46.5344711 ], + [ 7.7146127, 46.5346088 ], + [ 7.7144684, 46.5347397 ], + [ 7.714365, 46.5349096 ], + [ 7.7142625, 46.5351022 ], + [ 7.714201, 46.5353507 ], + [ 7.7141567, 46.5356046 ], + [ 7.7140858, 46.5357631 ], + [ 7.7126331, 46.5386608 ], + [ 7.7125726, 46.5389318 ], + [ 7.7130004, 46.5411882 ], + [ 7.7122927, 46.541256 ], + [ 7.7120157, 46.541281 ], + [ 7.7116421, 46.5413574 ], + [ 7.7112441, 46.5414452 ], + [ 7.7108299, 46.5415388 ], + [ 7.7105704, 46.54162 ], + [ 7.7102305, 46.5417523 ], + [ 7.7099072, 46.541958 ], + [ 7.7070736, 46.5441457 ], + [ 7.7062427, 46.5456743 ], + [ 7.7060367, 46.5460367 ], + [ 7.7059353999999995, 46.5463193 ], + [ 7.7057632, 46.5467546 ], + [ 7.7055597, 46.5472974 ], + [ 7.7054108, 46.5476762 ], + [ 7.7052933, 46.5479871 ], + [ 7.7052314, 46.5481568 ], + [ 7.7052268, 46.548371 ], + [ 7.7052955, 46.5485959 ], + [ 7.7053979, 46.5488599 ], + [ 7.7051709, 46.5489407 ], + [ 7.7045296, 46.5486078 ], + [ 7.7028408, 46.5485486 ], + [ 7.7018715, 46.5491258 ], + [ 7.7012906, 46.5494969 ], + [ 7.700952, 46.5497477 ], + [ 7.7007669, 46.5498957 ], + [ 7.7006561, 46.5500602 ], + [ 7.7003687, 46.5504513 ], + [ 7.7000813, 46.5508425 ], + [ 7.6999775, 46.5509674 ], + [ 7.6999043, 46.5509849 ], + [ 7.6998308, 46.5509517 ], + [ 7.6997074, 46.5508907 ], + [ 7.6994456, 46.5508421 ], + [ 7.6991757, 46.5508162 ], + [ 7.6987112, 46.5508032 ], + [ 7.6981408, 46.5508303 ], + [ 7.6963028, 46.5521305 ], + [ 7.6962575, 46.5528691 ], + [ 7.6962389, 46.5532468 ], + [ 7.6962223, 46.5536979 ], + [ 7.6962014, 46.5539291 ], + [ 7.6960991, 46.5541779 ], + [ 7.6959571, 46.5544833 ], + [ 7.6957601, 46.5548852 ], + [ 7.6955541, 46.5552701 ], + [ 7.6953785, 46.5555251 ], + [ 7.6952187, 46.5556898 ], + [ 7.6950278, 46.557523 ], + [ 7.6949359, 46.5579182 ], + [ 7.6949322, 46.5581663 ], + [ 7.6949348, 46.5583635 ], + [ 7.6948974, 46.5585723 ], + [ 7.6948599, 46.5587304 ], + [ 7.6947971, 46.5588888 ], + [ 7.6946305, 46.5591832 ], + [ 7.6938609, 46.5605194 ], + [ 7.6937411, 46.5606951 ], + [ 7.6936701, 46.5608535 ], + [ 7.6936887, 46.5609887 ], + [ 7.6937165, 46.5611801 ], + [ 7.6937619, 46.5614671 ], + [ 7.6937698999999995, 46.5619518 ], + [ 7.69377, 46.5624984 ], + [ 7.6937932, 46.5629264 ], + [ 7.6937978000000005, 46.563197 ], + [ 7.6937605, 46.5634114 ], + [ 7.6936905, 46.5636204 ], + [ 7.6928905, 46.5661349 ], + [ 7.6928056, 46.5664512 ], + [ 7.6927927, 46.5666654 ], + [ 7.6927962, 46.5668852 ], + [ 7.6928404, 46.5670878 ], + [ 7.6929007, 46.5672676 ], + [ 7.692951, 46.5673912 ], + [ 7.6930266, 46.5675033 ], + [ 7.693029, 46.5676724 ], + [ 7.6930498, 46.5679314 ], + [ 7.6930951, 46.5682016 ], + [ 7.6930894, 46.5683875 ], + [ 7.6930521, 46.5685963 ], + [ 7.6929983, 46.5687772 ], + [ 7.692952, 46.568986 ], + [ 7.6930438, 46.5690811 ], + [ 7.6931183, 46.5691481 ], + [ 7.6931756, 46.5691927 ], + [ 7.6931694, 46.5692773 ], + [ 7.6931298, 46.5693453 ], + [ 7.6930984, 46.5694245 ], + [ 7.6930192, 46.5695773 ], + [ 7.6929482, 46.5697356 ], + [ 7.6928853, 46.5698714 ], + [ 7.692855, 46.5700182 ], + [ 7.6928329, 46.5701706 ], + [ 7.6928108, 46.5703397 ], + [ 7.6927888, 46.5705034 ], + [ 7.6926779, 46.5706734 ], + [ 7.6926556999999995, 46.5708144 ], + [ 7.6926837, 46.5710285 ], + [ 7.6926872, 46.5712706 ], + [ 7.692715, 46.5714621 ], + [ 7.6927581, 46.5716026 ], + [ 7.6928654, 46.5717201 ], + [ 7.6929329, 46.5718379 ], + [ 7.6929352, 46.5719956 ], + [ 7.6928805, 46.5721539 ], + [ 7.6927848999999995, 46.5722673 ], + [ 7.6927219000000004, 46.5724031 ], + [ 7.6926581, 46.572522 ], + [ 7.6926196000000004, 46.5726632 ], + [ 7.6926228, 46.5728323 ], + [ 7.6926252, 46.57299 ], + [ 7.6926358, 46.5731534 ], + [ 7.6925564, 46.5732668 ], + [ 7.6924518, 46.5733917 ], + [ 7.6923318, 46.5735335 ], + [ 7.6921954, 46.5736473 ], + [ 7.6920582, 46.5737668 ], + [ 7.6919299, 46.5738805 ], + [ 7.6919149, 46.5739878 ], + [ 7.6919486, 46.5740495 ], + [ 7.6920312, 46.5740996 ], + [ 7.692171, 46.5741885 ], + [ 7.6924017, 46.5743501 ], + [ 7.6926088, 46.5745343 ], + [ 7.6928161, 46.5747468 ], + [ 7.6929744, 46.5749484 ], + [ 7.693092, 46.5751673 ], + [ 7.6932259, 46.5753691 ], + [ 7.6933363, 46.5756273 ], + [ 7.6934296, 46.5758746 ], + [ 7.6935391, 46.5760879 ], + [ 7.6936903, 46.5763345 ], + [ 7.6938885, 46.5765245 ], + [ 7.6940547, 46.576681 ], + [ 7.6942283, 46.5768373 ], + [ 7.6943447, 46.576966 ], + [ 7.6944590999999996, 46.5770101 ], + [ 7.6945335, 46.5770547 ], + [ 7.6945591, 46.5771277 ], + [ 7.6945767, 46.577229 ], + [ 7.6945392, 46.5773983 ], + [ 7.6948805, 46.5778465 ], + [ 7.6950167, 46.5776931 ], + [ 7.6951484, 46.5777766 ], + [ 7.6952413, 46.5779337 ], + [ 7.6953323000000005, 46.5780456 ], + [ 7.6953835, 46.578186099999996 ], + [ 7.6954172, 46.5782422 ], + [ 7.6956047, 46.5782407 ], + [ 7.6957107, 46.5782341 ], + [ 7.6959053, 46.5781818 ], + [ 7.6959319, 46.5782773 ], + [ 7.6960451, 46.5782539 ], + [ 7.6961335, 46.5781574 ], + [ 7.6962404, 46.5781847 ], + [ 7.6963068, 46.5782574 ], + [ 7.6963408, 46.5783755 ], + [ 7.6963268, 46.5785221 ], + [ 7.6963044, 46.5786124 ], + [ 7.6962813, 46.5787197 ], + [ 7.6962918, 46.5788661 ], + [ 7.6962697, 46.5790185 ], + [ 7.6963452, 46.5791249 ], + [ 7.6964779, 46.5792591 ], + [ 7.6965771, 46.5793711 ], + [ 7.6966363, 46.5794664 ], + [ 7.6966621, 46.5795845 ], + [ 7.6966981, 46.5797701 ], + [ 7.6967494, 46.5799219 ], + [ 7.6967272, 46.5800686 ], + [ 7.6966968, 46.5801873 ], + [ 7.6965595, 46.5802898 ], + [ 7.6964022, 46.5801333 ], + [ 7.6962439, 46.5799316 ], + [ 7.6960786, 46.5798034 ], + [ 7.6958979, 46.5797147 ], + [ 7.6956024, 46.579644 ], + [ 7.6952915, 46.5795845 ], + [ 7.695063, 46.5795413 ], + [ 7.6947614, 46.5795607 ], + [ 7.6944669, 46.5795349 ], + [ 7.6941326, 46.5795207 ], + [ 7.6938797, 46.5795058 ], + [ 7.6935934, 46.5794688 ], + [ 7.6933242, 46.5794485 ], + [ 7.6930543, 46.5794394 ], + [ 7.6927282, 46.5794589 ], + [ 7.6924277, 46.5795346 ], + [ 7.692063, 46.5796673 ], + [ 7.6917801, 46.5798443 ], + [ 7.6914992, 46.5801003 ], + [ 7.6913387, 46.5803101 ], + [ 7.6912196999999995, 46.580497 ], + [ 7.6910682999999995, 46.580718 ], + [ 7.690982, 46.5809159 ], + [ 7.6908949, 46.5811253 ], + [ 7.6908178, 46.5813682 ], + [ 7.6907887, 46.5816107 ], + [ 7.6907594, 46.581797 ], + [ 7.6907537999999995, 46.5819886 ], + [ 7.6907745, 46.5822365 ], + [ 7.6908353, 46.5825009 ], + [ 7.6908794, 46.5826977 ], + [ 7.6909899, 46.5829504 ], + [ 7.6911656, 46.5832195 ], + [ 7.6914149, 46.5835161 ], + [ 7.6937625, 46.5864444 ], + [ 7.6941539, 46.5869653 ], + [ 7.694246, 46.5871167 ], + [ 7.6942797, 46.587172699999996 ], + [ 7.6942728, 46.5872686 ], + [ 7.6942424, 46.5873871 ], + [ 7.6942774, 46.5875448 ], + [ 7.6943612, 46.5876906 ], + [ 7.6944276, 46.5877633 ], + [ 7.6944532, 46.5878251 ], + [ 7.694438, 46.5878928 ], + [ 7.6944312, 46.5879887 ], + [ 7.6944578, 46.5881125 ], + [ 7.6944847, 46.5882812 ], + [ 7.6945217, 46.5885064 ], + [ 7.6944858, 46.5888448 ], + [ 7.6944728, 46.589031 ], + [ 7.6944192000000005, 46.5892568 ], + [ 7.6943972, 46.5894317 ], + [ 7.6944077, 46.5895838 ], + [ 7.6944669999999995, 46.5897073 ], + [ 7.69456, 46.5898813 ], + [ 7.6946685, 46.5900606 ], + [ 7.6947453, 46.5902685 ], + [ 7.6948383, 46.5904481 ], + [ 7.6949152, 46.5906617 ], + [ 7.6950003, 46.5909032 ], + [ 7.6950447, 46.5911509 ], + [ 7.6950727, 46.5913704 ], + [ 7.6950761, 46.591579 ], + [ 7.6950724, 46.5918157 ], + [ 7.6950598, 46.592075 ], + [ 7.6950549, 46.592249699999996 ], + [ 7.6950503, 46.5924864 ], + [ 7.6950283, 46.5926726 ], + [ 7.6949745, 46.5928478 ], + [ 7.6948964, 46.593045599999996 ], + [ 7.6948173, 46.5932323 ], + [ 7.6947065, 46.5934305 ], + [ 7.6945551, 46.5936515 ], + [ 7.6944198, 46.5938554 ], + [ 7.6943418999999995, 46.5941041 ], + [ 7.6942709, 46.5942625 ], + [ 7.6942322999999995, 46.5943923 ], + [ 7.6942021, 46.5945618 ], + [ 7.6942462, 46.5947417 ], + [ 7.6942965999999995, 46.5948653 ], + [ 7.6943068, 46.5949554 ], + [ 7.6942825, 46.5950007 ], + [ 7.6942102, 46.595052 ], + [ 7.6940644, 46.5950983 ], + [ 7.6940729, 46.5951657 ], + [ 7.694067, 46.5952955 ], + [ 7.6940447, 46.595414 ], + [ 7.6940215, 46.5955099 ], + [ 7.6939098, 46.59568 ], + [ 7.6938559, 46.5958551 ], + [ 7.6938664, 46.5959959 ], + [ 7.6938759, 46.5961086 ], + [ 7.6938452999999996, 46.596199 ], + [ 7.6937814, 46.5963122 ], + [ 7.6936205, 46.5964262 ], + [ 7.6936786999999995, 46.5964934 ], + [ 7.6937045, 46.596606 ], + [ 7.6936986, 46.5967356 ], + [ 7.6936612, 46.5969275 ], + [ 7.6936077, 46.5971815 ], + [ 7.6934528, 46.5977182 ], + [ 7.6933118, 46.5980743 ], + [ 7.6932069, 46.5981485 ], + [ 7.6930765, 46.5981665 ], + [ 7.692905, 46.5981171 ], + [ 7.6926347, 46.5980461 ], + [ 7.6922899000000005, 46.597925 ], + [ 7.6919615, 46.5978318 ], + [ 7.6917158, 46.5977719 ], + [ 7.691216, 46.5976407 ], + [ 7.6908873, 46.59748 ], + [ 7.6907730999999995, 46.5974809 ], + [ 7.6907734, 46.5975317 ], + [ 7.6908245, 46.5976438 ], + [ 7.6908584, 46.5977395 ], + [ 7.6908115, 46.5978412 ], + [ 7.6908455, 46.5979593 ], + [ 7.6909046, 46.5980378 ], + [ 7.6909956, 46.5981327 ], + [ 7.6910295, 46.5982228 ], + [ 7.6910398, 46.5983409 ], + [ 7.6911401, 46.5985036 ], + [ 7.6913054, 46.5986319 ], + [ 7.691478, 46.5987318 ], + [ 7.6915534, 46.5988101 ], + [ 7.6915211, 46.5988781 ], + [ 7.6914404, 46.59889 ], + [ 7.6913008, 46.5988686 ], + [ 7.6911039, 46.598796899999996 ], + [ 7.6909151, 46.5987196 ], + [ 7.6908079, 46.5986472 ], + [ 7.6906925, 46.5985523 ], + [ 7.690031, 46.5985634 ], + [ 7.6898957, 46.5987449 ], + [ 7.6898082, 46.5988808 ], + [ 7.6896861, 46.5989212 ], + [ 7.6894016, 46.5989686 ], + [ 7.6890756, 46.599022 ], + [ 7.689078, 46.5991855 ], + [ 7.6890475, 46.5992984 ], + [ 7.6889672000000004, 46.5993948 ], + [ 7.688854, 46.5994239 ], + [ 7.6886666, 46.5994762 ], + [ 7.6885047, 46.5995677 ], + [ 7.6883916, 46.5996193 ], + [ 7.6883365999999995, 46.5997268 ], + [ 7.6883625, 46.5998562 ], + [ 7.6884299, 46.5999741 ], + [ 7.6885046, 46.6000749 ], + [ 7.6885555, 46.6001533 ], + [ 7.6885558, 46.6002153 ], + [ 7.688508, 46.6002777 ], + [ 7.6884439, 46.6003515 ], + [ 7.6883389, 46.6004088 ], + [ 7.688177, 46.6005002 ], + [ 7.6879916, 46.6006145 ], + [ 7.6879113, 46.6007109 ], + [ 7.6878891, 46.6008577 ], + [ 7.6878924, 46.6010436 ], + [ 7.6878541, 46.601213 ], + [ 7.6877911, 46.6013487 ], + [ 7.6877189999999995, 46.6014676 ], + [ 7.6876316, 46.6016149 ], + [ 7.6876257, 46.6017502 ], + [ 7.6876781, 46.6019697 ], + [ 7.6877978, 46.6022842 ], + [ 7.687587, 46.6023761 ], + [ 7.687629, 46.6024772 ], + [ 7.6877384, 46.6026623 ], + [ 7.687904, 46.6028413 ], + [ 7.6880529, 46.6029471 ], + [ 7.6880866999999995, 46.6030257 ], + [ 7.6880973, 46.6031834 ], + [ 7.6880926, 46.6034089 ], + [ 7.6881042, 46.6036231 ], + [ 7.6880806, 46.6036514 ], + [ 7.687991, 46.603669 ], + [ 7.6878117, 46.60371 ], + [ 7.6877474, 46.6037443 ], + [ 7.6876916, 46.6038406 ], + [ 7.6876124, 46.6039934 ], + [ 7.687477, 46.6041748 ], + [ 7.6873734, 46.6043672 ], + [ 7.6873606, 46.6045872 ], + [ 7.6873803, 46.6048011 ], + [ 7.6874313999999995, 46.604919 ], + [ 7.6876131, 46.605036 ], + [ 7.6878601, 46.6051861 ], + [ 7.6880735, 46.6052801 ], + [ 7.6884846, 46.6054515 ], + [ 7.6886733, 46.6055007 ], + [ 7.6889099, 46.6055157 ], + [ 7.6891301, 46.6055026 ], + [ 7.6893096, 46.6054956 ], + [ 7.6896348, 46.6054365 ], + [ 7.6899037, 46.6053722 ], + [ 7.6901871, 46.6052742 ], + [ 7.690399, 46.6052217 ], + [ 7.6906509, 46.6051858 ], + [ 7.6907324, 46.6051852 ], + [ 7.6908138, 46.6051281 ], + [ 7.6908943, 46.6050767 ], + [ 7.6909583, 46.6049917 ], + [ 7.6911447, 46.6049057 ], + [ 7.6913078, 46.6048931 ], + [ 7.6914141, 46.6049373 ], + [ 7.6915538, 46.6049812 ], + [ 7.6916773, 46.6050479 ], + [ 7.691808, 46.6050806 ], + [ 7.6919148, 46.6050797 ], + [ 7.6920535, 46.6050841 ], + [ 7.6921678, 46.6050888 ], + [ 7.6922495, 46.6051221 ], + [ 7.6924218, 46.6051601 ], + [ 7.6925116, 46.6051818 ], + [ 7.6926095, 46.6051698 ], + [ 7.692691, 46.6051692 ], + [ 7.6928541, 46.6051508 ], + [ 7.6930244, 46.6050987 ], + [ 7.6932282, 46.6050689 ], + [ 7.6934331, 46.6050954 ], + [ 7.6935626, 46.6050662 ], + [ 7.6936184999999995, 46.6049699 ], + [ 7.6936653, 46.6048624 ], + [ 7.6936721, 46.6047609 ], + [ 7.693727, 46.6046308 ], + [ 7.6937829, 46.6045571 ], + [ 7.6938644, 46.6045395 ], + [ 7.6939542, 46.6045558 ], + [ 7.6940042, 46.604606 ], + [ 7.6940217, 46.6046736 ], + [ 7.6940392, 46.6047466 ], + [ 7.6940332, 46.6048764 ], + [ 7.6940029, 46.6050118 ], + [ 7.6939073, 46.6051535 ], + [ 7.6938353, 46.6052837 ], + [ 7.6938131, 46.6054191 ], + [ 7.6938072, 46.6055545 ], + [ 7.6937514, 46.6056507 ], + [ 7.6936384, 46.6057305 ], + [ 7.6934926, 46.6057937 ], + [ 7.6932734, 46.6058406 ], + [ 7.6929974, 46.6059556 ], + [ 7.6928038, 46.6060699 ], + [ 7.6926348, 46.6062066 ], + [ 7.6925057, 46.6063485 ], + [ 7.6923693, 46.6064793 ], + [ 7.6922166, 46.6066213 ], + [ 7.6921116, 46.6066842 ], + [ 7.6918202, 46.6068219 ], + [ 7.6915289, 46.6069821 ], + [ 7.6912938, 46.6071192 ], + [ 7.6911176999999995, 46.6073179 ], + [ 7.6910558, 46.6075157 ], + [ 7.6910591, 46.6077129 ], + [ 7.6910779, 46.607893 ], + [ 7.6910475, 46.6080061 ], + [ 7.6907435, 46.6084312 ], + [ 7.6904231, 46.6088171 ], + [ 7.690127, 46.6091802 ], + [ 7.6899113, 46.609475 ], + [ 7.6897432, 46.6096398 ], + [ 7.6895732, 46.6097427 ], + [ 7.6892574, 46.6099087 ], + [ 7.6889814, 46.6100181 ], + [ 7.6887705, 46.6101043 ], + [ 7.688748, 46.6101833 ], + [ 7.6888053, 46.6102222 ], + [ 7.6889706, 46.6103336 ], + [ 7.6890871, 46.6104793 ], + [ 7.6891465, 46.6106084 ], + [ 7.6892142, 46.6107938 ], + [ 7.689242, 46.610974 ], + [ 7.6894051999999995, 46.6109951 ], + [ 7.6894552, 46.6110454 ], + [ 7.6894881, 46.6110846 ], + [ 7.6894891, 46.6111353 ], + [ 7.6894494, 46.6111808 ], + [ 7.6893435, 46.6112267 ], + [ 7.6892059, 46.6112899 ], + [ 7.6889867, 46.611348 ], + [ 7.6888727, 46.6113997 ], + [ 7.6887678, 46.6114737 ], + [ 7.6887457, 46.6116261 ], + [ 7.6887235, 46.6117671 ], + [ 7.6887267, 46.611925 ], + [ 7.6886627, 46.6120382 ], + [ 7.6885251, 46.6121012 ], + [ 7.6885273, 46.6122196 ], + [ 7.6884797, 46.6123214 ], + [ 7.6883758, 46.6124463 ], + [ 7.688046, 46.6127646 ], + [ 7.6879655, 46.6128273 ], + [ 7.6879074, 46.6127882 ], + [ 7.6878502, 46.6127605 ], + [ 7.6877686, 46.6127613 ], + [ 7.6877442, 46.6127783 ], + [ 7.687729, 46.6128517 ], + [ 7.6877303999999995, 46.6129644 ], + [ 7.6877896, 46.613071 ], + [ 7.6879051, 46.6131547 ], + [ 7.6877510000000004, 46.6131953 ], + [ 7.6875715, 46.6131968 ], + [ 7.6873992, 46.6131643 ], + [ 7.6872338, 46.6130305 ], + [ 7.6870847, 46.6128964 ], + [ 7.6869531, 46.6128356 ], + [ 7.6868634, 46.6128476 ], + [ 7.6868563, 46.6128983 ], + [ 7.6868574, 46.6129716 ], + [ 7.6869087, 46.6131232 ], + [ 7.6870182, 46.6133421 ], + [ 7.6871032, 46.6135387 ], + [ 7.6871627, 46.6137074 ], + [ 7.6871485, 46.6138145 ], + [ 7.6867476, 46.6137614 ], + [ 7.6868314, 46.6138734 ], + [ 7.687003, 46.6139284 ], + [ 7.6872008, 46.6140226 ], + [ 7.6874967, 46.6141386 ], + [ 7.6878092, 46.6142994 ], + [ 7.68795, 46.6144054 ], + [ 7.6880737, 46.6145283 ], + [ 7.688133, 46.6146461 ], + [ 7.688167, 46.6147474 ], + [ 7.688266, 46.6148199 ], + [ 7.6883161, 46.6148871 ], + [ 7.6883834, 46.6149824 ], + [ 7.6883848, 46.6150893 ], + [ 7.6883381, 46.6152419 ], + [ 7.6882760999999995, 46.6154172 ], + [ 7.6882459, 46.6155809 ], + [ 7.688346, 46.6157039 ], + [ 7.6885069, 46.6155617 ], + [ 7.6885863, 46.615454 ], + [ 7.688626, 46.6153748 ], + [ 7.6886738, 46.6153012 ], + [ 7.6888835, 46.6151416 ], + [ 7.689401, 46.6148219 ], + [ 7.6901679, 46.6142801 ], + [ 7.6907319, 46.613807800000004 ], + [ 7.6910608, 46.6134725 ], + [ 7.6913346, 46.6132223 ], + [ 7.6914721, 46.6131479 ], + [ 7.6917412, 46.6131289 ], + [ 7.6918881, 46.613122 ], + [ 7.6920991999999995, 46.6130753 ], + [ 7.6924415, 46.6130104 ], + [ 7.6928728, 46.6129392 ], + [ 7.6930838999999995, 46.6128868 ], + [ 7.6932782, 46.6127555 ], + [ 7.6934299, 46.6125626 ], + [ 7.6938496, 46.611759 ], + [ 7.694086, 46.6112105 ], + [ 7.6941711, 46.6109166 ], + [ 7.6941667, 46.6106631 ], + [ 7.694154, 46.6103983 ], + [ 7.6941748, 46.6101332 ], + [ 7.6942704, 46.6099972 ], + [ 7.6944008, 46.6099679 ], + [ 7.6945966, 46.6099776 ], + [ 7.6948587, 46.6100205 ], + [ 7.6950628, 46.6100414 ], + [ 7.6952586, 46.6100398 ], + [ 7.695544, 46.6100092 ], + [ 7.6958691, 46.6099333 ], + [ 7.6962828, 46.6097609 ], + [ 7.6965021, 46.6097365 ], + [ 7.6966896, 46.6096955 ], + [ 7.696925, 46.6096203 ], + [ 7.697037, 46.6094954 ], + [ 7.6971081, 46.609354 ], + [ 7.69713, 46.6091564 ], + [ 7.6971277, 46.6090268 ], + [ 7.6971416999999995, 46.6088802 ], + [ 7.6972362, 46.6086766 ], + [ 7.6973234999999995, 46.6084955 ], + [ 7.6973772, 46.6083034 ], + [ 7.6973994, 46.6081736 ], + [ 7.6973073, 46.6080223 ], + [ 7.6971266, 46.6079223 ], + [ 7.696897, 46.6078621 ], + [ 7.6966106, 46.607842 ], + [ 7.6963331, 46.6078217 ], + [ 7.6961689, 46.6077724 ], + [ 7.6961338999999995, 46.6076262 ], + [ 7.6961725, 46.6075019 ], + [ 7.6962925, 46.607343 ], + [ 7.6964288, 46.6071954 ], + [ 7.6966477, 46.6070752 ], + [ 7.6968586, 46.606989 ], + [ 7.6970767, 46.6068857 ], + [ 7.6972874000000004, 46.60676 ], + [ 7.6973411, 46.6065623 ], + [ 7.6973868, 46.6063759 ], + [ 7.6974169, 46.6062066 ], + [ 7.6975288, 46.6060592 ], + [ 7.6975997, 46.6058783 ], + [ 7.6975883, 46.6057036 ], + [ 7.6975522, 46.6055011 ], + [ 7.6976313, 46.6053201 ], + [ 7.6979051, 46.6050867 ], + [ 7.6981964, 46.6049266 ], + [ 7.6985879, 46.6049064 ], + [ 7.698758, 46.6048262 ], + [ 7.6989271, 46.6047063 ], + [ 7.6991285, 46.6045188 ], + [ 7.6992974, 46.6043765 ], + [ 7.6995224, 46.6041661 ], + [ 7.6997462, 46.6038825 ], + [ 7.7000047, 46.6037 ], + [ 7.7003765, 46.6034996 ], + [ 7.7008787, 46.6032701 ], + [ 7.7013411, 46.603069 ], + [ 7.7019248000000005, 46.6028162 ], + [ 7.7025167, 46.6025915 ], + [ 7.703124, 46.6023272 ], + [ 7.7037332, 46.6021362 ], + [ 7.7038463, 46.6020676 ], + [ 7.7039173, 46.6019204 ], + [ 7.703971, 46.6017115 ], + [ 7.7040173, 46.6015139 ], + [ 7.7040302, 46.6013053 ], + [ 7.7041096, 46.6012088 ], + [ 7.7042398, 46.60114 ], + [ 7.7044253, 46.6010484 ], + [ 7.7046432, 46.6009 ], + [ 7.7048621, 46.6007967 ], + [ 7.7050229, 46.6006377 ], + [ 7.7051429, 46.6004901 ], + [ 7.7051978, 46.6003713 ], + [ 7.7052768, 46.6001959 ], + [ 7.7053559, 46.600009299999996 ], + [ 7.7055309, 46.5997711 ], + [ 7.705723, 46.5995272 ], + [ 7.7059398, 46.5993168 ], + [ 7.7060014, 46.5990796 ], + [ 7.7060877, 46.5988872 ], + [ 7.7060679, 46.598679 ], + [ 7.7060992, 46.5985717 ], + [ 7.7061551, 46.5984866 ], + [ 7.7063405, 46.5983667 ], + [ 7.7065582, 46.5981959 ], + [ 7.7067005, 46.5979297 ], + [ 7.70674, 46.5978393 ], + [ 7.7067958999999995, 46.5977655 ], + [ 7.7069008, 46.5976971 ], + [ 7.7069903, 46.5976512 ], + [ 7.7070371, 46.5975551 ], + [ 7.7070439, 46.5974534 ], + [ 7.7070172, 46.5973184 ], + [ 7.7070146, 46.5971269 ], + [ 7.7070276, 46.5969521 ], + [ 7.7070253, 46.5968168 ], + [ 7.7070638, 46.596687 ], + [ 7.7071838, 46.5965394 ], + [ 7.7072894, 46.5964708 ], + [ 7.7074668, 46.5963792 ], + [ 7.7075888, 46.5963106 ], + [ 7.7077183, 46.5962645 ], + [ 7.707766, 46.5961851 ], + [ 7.7078463, 46.5960998 ], + [ 7.7079757, 46.5960369 ], + [ 7.7081376, 46.5959623 ], + [ 7.7083006, 46.595927 ], + [ 7.7084545, 46.5958694 ], + [ 7.7085685, 46.5958458 ], + [ 7.7086735, 46.5957999 ], + [ 7.7087050999999995, 46.5957602 ], + [ 7.7087284, 46.5956755 ], + [ 7.708776, 46.5955737 ], + [ 7.7087982, 46.5954607 ], + [ 7.7088296, 46.5953703 ], + [ 7.708869, 46.595263 ], + [ 7.7089006, 46.5952232 ], + [ 7.7089319, 46.5951216 ], + [ 7.7089868, 46.594997 ], + [ 7.7089853999999995, 46.5948843 ], + [ 7.7090087, 46.5948221 ], + [ 7.709081, 46.5947539 ], + [ 7.7091534, 46.5947138 ], + [ 7.7092676, 46.5947243 ], + [ 7.7093663, 46.5947291 ], + [ 7.7094561, 46.5947452 ], + [ 7.7095785, 46.5947554 ], + [ 7.7097171, 46.5947374 ], + [ 7.7098312, 46.5947139 ], + [ 7.7099849, 46.5946337 ], + [ 7.7101468, 46.5945534 ], + [ 7.7102753, 46.5944679 ], + [ 7.71038, 46.5943768 ], + [ 7.710445, 46.5943255 ], + [ 7.7105256, 46.5942966 ], + [ 7.7106316, 46.5942844 ], + [ 7.7107619, 46.5942496 ], + [ 7.7108669, 46.5942036 ], + [ 7.7109144, 46.5940905 ], + [ 7.7109368, 46.5939888 ], + [ 7.7109597999999995, 46.5938703 ], + [ 7.7109904, 46.5937798 ], + [ 7.7110544, 46.5937004 ], + [ 7.7112408, 46.5936312 ], + [ 7.7114352, 46.5935169 ], + [ 7.7115401, 46.5934541 ], + [ 7.7115796, 46.5933579 ], + [ 7.711618, 46.5932167 ], + [ 7.7116811, 46.5931148 ], + [ 7.7117787, 46.5930576 ], + [ 7.7119254999999995, 46.5930563 ], + [ 7.7121528, 46.593015 ], + [ 7.7123404, 46.5930078 ], + [ 7.7124626, 46.5929785 ], + [ 7.712535, 46.5929386 ], + [ 7.7126233, 46.5928363 ], + [ 7.7127271, 46.5927001 ], + [ 7.7128144, 46.5925529 ], + [ 7.712903, 46.5924901 ], + [ 7.7130578, 46.5924663 ], + [ 7.7132453, 46.5924422 ], + [ 7.7134082, 46.5924014 ], + [ 7.7134958000000005, 46.592310499999996 ], + [ 7.7135434, 46.5922144 ], + [ 7.7135992, 46.5921123 ], + [ 7.7136785, 46.5919934 ], + [ 7.7137751, 46.5918911 ], + [ 7.7139043, 46.5918055 ], + [ 7.714098, 46.5917136 ], + [ 7.714276, 46.5915939 ], + [ 7.7144205, 46.5914629 ], + [ 7.7145731, 46.5913265 ], + [ 7.714735, 46.5912405 ], + [ 7.7149304999999995, 46.5911882 ], + [ 7.7152555, 46.5911178 ], + [ 7.7155154, 46.5910593 ], + [ 7.7158404, 46.590972 ], + [ 7.7161081, 46.5908684 ], + [ 7.7163994, 46.590725 ], + [ 7.7166007, 46.5905485 ], + [ 7.7168092, 46.5903214 ], + [ 7.7170237, 46.590004 ], + [ 7.7172332, 46.5898389 ], + [ 7.7173869, 46.5897586 ], + [ 7.7176629, 46.589666 ], + [ 7.7178984, 46.5896247 ], + [ 7.7180938999999995, 46.589578 ], + [ 7.7182151999999995, 46.5895319 ], + [ 7.71832, 46.5894577 ], + [ 7.7183908, 46.5892711 ], + [ 7.7184442, 46.5890283 ], + [ 7.7184478, 46.5887859 ], + [ 7.7185013, 46.5885601 ], + [ 7.7185803, 46.5883848 ], + [ 7.7188391, 46.5882755 ], + [ 7.7191151, 46.5881829 ], + [ 7.7193503, 46.588102 ], + [ 7.719512, 46.5879767 ], + [ 7.719574, 46.587824 ], + [ 7.7196612, 46.5876712 ], + [ 7.7197659, 46.5875631 ], + [ 7.7199359, 46.5874885 ], + [ 7.7202364, 46.58739 ], + [ 7.720488, 46.5873317 ], + [ 7.7206428, 46.5872852 ], + [ 7.7207639, 46.5872109 ], + [ 7.7208351, 46.5871032 ], + [ 7.7209792, 46.5869105 ], + [ 7.7212203, 46.5866999 ], + [ 7.7216164, 46.5864993 ], + [ 7.7219086, 46.586384 ], + [ 7.7220148, 46.5864226 ], + [ 7.7222033, 46.5864492 ], + [ 7.7223908, 46.5864251 ], + [ 7.7226344000000005, 46.5863892 ], + [ 7.7228871, 46.5863588 ], + [ 7.7230259, 46.5863915 ], + [ 7.7231748, 46.5864804 ], + [ 7.7233718, 46.5865802 ], + [ 7.7236189, 46.5867247 ], + [ 7.7239239, 46.5868854 ], + [ 7.7243677, 46.5870677 ], + [ 7.7246219, 46.5871726 ], + [ 7.7247628, 46.5872954 ], + [ 7.7249855, 46.5874682 ], + [ 7.7256204, 46.5878573 ], + [ 7.7262902, 46.5883644 ], + [ 7.7272888, 46.5890661 ], + [ 7.7282524, 46.5896102 ], + [ 7.728623, 46.5898268 ], + [ 7.7289283, 46.5900441 ], + [ 7.7290541, 46.5902346 ], + [ 7.729335, 46.5904521 ], + [ 7.7295994, 46.5906358 ], + [ 7.7298384, 46.5907859 ], + [ 7.7300865, 46.5909811 ], + [ 7.73035, 46.5911536 ], + [ 7.7305806, 46.5912699 ], + [ 7.73081, 46.5913131 ], + [ 7.7310222, 46.5913395 ], + [ 7.7312271, 46.5913715 ], + [ 7.7315207, 46.5913803 ], + [ 7.7318072, 46.5914286 ], + [ 7.7319716, 46.5915173 ], + [ 7.7321778, 46.591634 ], + [ 7.7324167, 46.5917728 ], + [ 7.7326648, 46.5919624 ], + [ 7.7328700999999995, 46.5920733 ], + [ 7.7331589, 46.5922398 ], + [ 7.7333814, 46.592362 ], + [ 7.7336927, 46.5924721 ], + [ 7.7340209, 46.5925481 ], + [ 7.7343719, 46.5925959 ], + [ 7.7347482, 46.592649 ], + [ 7.7351814999999995, 46.5927016 ], + [ 7.7357792, 46.5928318 ], + [ 7.7359365, 46.5929545 ], + [ 7.7360703, 46.5931224 ], + [ 7.7361287999999995, 46.5932233 ], + [ 7.7362277, 46.5932676 ], + [ 7.7363501, 46.5932834 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "JBG0021", + "country" : "CHE", + "name" : [ + { + "text" : "Eidgenössisches Jagdbanngebiet Kiental", + "lang" : "de-CH" + }, + { + "text" : "District franc fédéral Kiental", + "lang" : "fr-CH" + }, + { + "text" : "Bandita federale di caccia Kiental", + "lang" : "it-CH" + }, + { + "text" : "Federal Game Reserve Kiental", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6124088, 46.8262078 ], + [ 7.6125062, 46.8262558 ], + [ 7.6128763, 46.8264095 ], + [ 7.6130873999999995, 46.8265357 ], + [ 7.6149923, 46.8283074 ], + [ 7.6152744, 46.8282542 ], + [ 7.615727, 46.8281661 ], + [ 7.6160109, 46.8281127 ], + [ 7.6159668, 46.8280691 ], + [ 7.6159117, 46.8279875 ], + [ 7.6158785, 46.8279011 ], + [ 7.615861, 46.8278035 ], + [ 7.6158576, 46.8276607 ], + [ 7.6158497, 46.8275175 ], + [ 7.6158173, 46.8273789 ], + [ 7.615715, 46.8271366 ], + [ 7.6155969, 46.8269048 ], + [ 7.6155479, 46.826769 ], + [ 7.6154985, 46.8267771 ], + [ 7.6150602, 46.8265151 ], + [ 7.6148719, 46.8262009 ], + [ 7.6143778, 46.8262889 ], + [ 7.6140025, 46.8263558 ], + [ 7.6135197, 46.8262585 ], + [ 7.6131942, 46.8263967 ], + [ 7.6129849, 46.8263137 ], + [ 7.612645, 46.8261751 ], + [ 7.6125359, 46.826127 ], + [ 7.6127179, 46.8259498 ], + [ 7.6128234, 46.826006 ], + [ 7.6128514, 46.8259838 ], + [ 7.6119587, 46.8255151 ], + [ 7.6119281, 46.8254727 ], + [ 7.6119587, 46.8254296 ], + [ 7.6116641, 46.8255856 ], + [ 7.6117264, 46.8255585 ], + [ 7.6118163, 46.8257113 ], + [ 7.6119269, 46.8258554 ], + [ 7.6120656, 46.8259875 ], + [ 7.6122293, 46.8261045 ], + [ 7.6124088, 46.8262078 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VBS_32", + "country" : "CHE", + "name" : [ + { + "text" : "VBS_32 Herbligen", + "lang" : "de-CH" + }, + { + "text" : "VBS_32 Herbligen", + "lang" : "fr-CH" + }, + { + "text" : "VBS_32 Herbligen", + "lang" : "it-CH" + }, + { + "text" : "VBS_32 Herbligen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "regulationExemption" : "YES", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Eidgenössisches Departement für Verteidigung, Bevölkerungsschutz und Sport (VBS)", + "lang" : "de-CH" + }, + { + "text" : "Département fédéral de la défense, de la protection de la population et des sports (DDPS)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento federale della difesa, della protezione della popolazione e dello sport (DDPS)", + "lang" : "it-CH" + }, + { + "text" : "Federal Department of Defence, Civil Protection and Sport (DDPS)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Lageverfolgungszentrum der Armee LVZ A", + "lang" : "de-CH" + }, + { + "text" : "Centre de suivi de la situation de l’armée, CSS A", + "lang" : "fr-CH" + }, + { + "text" : "Centro di monitoraggio della situazione dell’esercito, Centro mon sit Es", + "lang" : "it-CH" + }, + { + "text" : "Joint Operation Center, JOC", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vtg.admin.ch/en/joint-operations-command", + "email" : "lvz.op@vtg.admin.ch", + "phone" : "+41 58 464 96 43", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.579355, 47.1750458 ], + [ 7.5793492, 47.1749045 ], + [ 7.5793326, 47.1747637 ], + [ 7.5793052, 47.1746237 ], + [ 7.5792671, 47.1744848 ], + [ 7.5792184, 47.1743475 ], + [ 7.5791592, 47.1742121 ], + [ 7.5790896, 47.174079 ], + [ 7.57901, 47.1739486 ], + [ 7.5789205, 47.1738212 ], + [ 7.5788212999999995, 47.1736972 ], + [ 7.5787128, 47.1735769 ], + [ 7.5785951, 47.1734606 ], + [ 7.5784687, 47.1733486 ], + [ 7.5783339, 47.1732414 ], + [ 7.578191, 47.1731391 ], + [ 7.5780405, 47.173042 ], + [ 7.5778827, 47.1729505 ], + [ 7.5777181, 47.1728647 ], + [ 7.5775472, 47.1727848 ], + [ 7.5773703, 47.1727112 ], + [ 7.5771881, 47.172644 ], + [ 7.5770009, 47.1725834 ], + [ 7.5768094, 47.1725296 ], + [ 7.576614, 47.1724827 ], + [ 7.5764152, 47.1724428 ], + [ 7.5762137, 47.1724101 ], + [ 7.5760099, 47.1723846 ], + [ 7.5758045, 47.1723664 ], + [ 7.5755979, 47.1723555 ], + [ 7.5753908, 47.1723521 ], + [ 7.5751837, 47.172356 ], + [ 7.5749772, 47.1723673 ], + [ 7.5747719, 47.172386 ], + [ 7.5745682, 47.172412 ], + [ 7.5743669, 47.1724452 ], + [ 7.5741683, 47.1724856 ], + [ 7.5739732, 47.172533 ], + [ 7.5737819, 47.1725872 ], + [ 7.5735951, 47.1726483 ], + [ 7.5734132, 47.1727159 ], + [ 7.5732367, 47.1727899 ], + [ 7.5730661999999995, 47.1728701 ], + [ 7.572902, 47.1729563 ], + [ 7.5727447, 47.1730483 ], + [ 7.5725947, 47.1731457 ], + [ 7.5724523, 47.1732483 ], + [ 7.572318, 47.1733559 ], + [ 7.5721922, 47.1734681 ], + [ 7.5720751, 47.1735847 ], + [ 7.5719672, 47.1737053 ], + [ 7.5718686, 47.1738295 ], + [ 7.5717797000000004, 47.1739572 ], + [ 7.5717008, 47.1740878 ], + [ 7.571632, 47.174221 ], + [ 7.5715734999999995, 47.1743565 ], + [ 7.5715254, 47.174494 ], + [ 7.571488, 47.1746329 ], + [ 7.5714613, 47.174773 ], + [ 7.5714454, 47.1749139 ], + [ 7.5714403, 47.1750551 ], + [ 7.5714461, 47.1751963 ], + [ 7.5714627, 47.1753371 ], + [ 7.5714901, 47.1754772 ], + [ 7.5715281999999995, 47.175616 ], + [ 7.5715769, 47.1757533 ], + [ 7.5716361, 47.1758887 ], + [ 7.5717056, 47.1760218 ], + [ 7.5717852, 47.1761523 ], + [ 7.5718747, 47.1762797 ], + [ 7.5719739, 47.1764037 ], + [ 7.5720824, 47.176524 ], + [ 7.5722001, 47.1766403 ], + [ 7.5723265, 47.1767523 ], + [ 7.5724613, 47.1768595 ], + [ 7.5726042, 47.1769618 ], + [ 7.5727547, 47.1770589 ], + [ 7.5729125, 47.1771505 ], + [ 7.5730771, 47.1772363 ], + [ 7.5732479999999995, 47.1773161 ], + [ 7.5734249, 47.1773897 ], + [ 7.5736071, 47.1774569 ], + [ 7.5737943, 47.1775175 ], + [ 7.5739858, 47.1775714 ], + [ 7.5741813, 47.1776183 ], + [ 7.57438, 47.1776582 ], + [ 7.5745816, 47.1776909 ], + [ 7.5747854, 47.1777164 ], + [ 7.5749908, 47.1777346 ], + [ 7.5751974, 47.1777455 ], + [ 7.5754045, 47.1777489 ], + [ 7.5756116, 47.177745 ], + [ 7.5758182, 47.1777336 ], + [ 7.5760235, 47.177715 ], + [ 7.5762272, 47.177689 ], + [ 7.5764286, 47.1776558 ], + [ 7.5766271, 47.1776154 ], + [ 7.5768223, 47.177568 ], + [ 7.5770136, 47.1775137 ], + [ 7.5772005, 47.1774527 ], + [ 7.5773824, 47.177385 ], + [ 7.5775588, 47.177311 ], + [ 7.5777294, 47.1772308 ], + [ 7.5778935, 47.1771446 ], + [ 7.5780508, 47.1770526 ], + [ 7.5782009, 47.1769552 ], + [ 7.5783432, 47.1768526 ], + [ 7.5784775, 47.176745 ], + [ 7.5786034, 47.1766328 ], + [ 7.5787204, 47.1765162 ], + [ 7.5788284, 47.1763956 ], + [ 7.5789269, 47.1762713 ], + [ 7.5790158, 47.1761437 ], + [ 7.5790947, 47.1760131 ], + [ 7.5791635, 47.1758798 ], + [ 7.579222, 47.1757443 ], + [ 7.57927, 47.1756069 ], + [ 7.5793074, 47.1754679 ], + [ 7.5793341, 47.1753278 ], + [ 7.57935, 47.175187 ], + [ 7.579355, 47.1750458 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0043", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Gerlafingen", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Gerlafingen", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Gerlafingen", + "lang" : "it-CH" + }, + { + "text" : "Substation Gerlafingen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4918294, 47.3923795 ], + [ 7.4930189, 47.3929795 ], + [ 7.4939089, 47.3934272 ], + [ 7.494158, 47.3936049 ], + [ 7.4947022, 47.3934988 ], + [ 7.4947216, 47.3934947 ], + [ 7.4947403999999995, 47.3934894 ], + [ 7.4947588, 47.3934828 ], + [ 7.4947763, 47.3934752 ], + [ 7.4947927, 47.3934665 ], + [ 7.4948079, 47.3934568 ], + [ 7.4948217, 47.3934462 ], + [ 7.4948907, 47.3933027 ], + [ 7.4949211, 47.3932369 ], + [ 7.4952015, 47.3929891 ], + [ 7.4954622, 47.392643 ], + [ 7.495572, 47.3925182 ], + [ 7.4956891, 47.3924163 ], + [ 7.4957917, 47.3923412 ], + [ 7.4959187, 47.3922861 ], + [ 7.4961102, 47.3922584 ], + [ 7.4962874, 47.3922282 ], + [ 7.4965211, 47.3921638 ], + [ 7.496829, 47.3920759 ], + [ 7.4971003, 47.392002 ], + [ 7.4974292, 47.3919338 ], + [ 7.4976165, 47.3919042 ], + [ 7.4977896, 47.3918885 ], + [ 7.4979917, 47.3918745 ], + [ 7.4981919999999995, 47.3918587 ], + [ 7.4984173, 47.391826 ], + [ 7.4986762, 47.3917666 ], + [ 7.498782, 47.3920443 ], + [ 7.4988704, 47.3922488 ], + [ 7.4989305, 47.3923704 ], + [ 7.499014, 47.3925216 ], + [ 7.4992364, 47.3928807 ], + [ 7.4996104, 47.3928827 ], + [ 7.5000889, 47.3929074 ], + [ 7.5011266, 47.3929601 ], + [ 7.5012637, 47.392949 ], + [ 7.5014157, 47.3929428 ], + [ 7.5015602, 47.3929424 ], + [ 7.5016864, 47.3929591 ], + [ 7.5018552, 47.3929904 ], + [ 7.5020592, 47.3930367 ], + [ 7.5021712, 47.3930738 ], + [ 7.5023024, 47.3931135 ], + [ 7.5023891, 47.3931316 ], + [ 7.5024442, 47.3931383 ], + [ 7.5026019, 47.3931478 ], + [ 7.5027512, 47.3931564 ], + [ 7.5028943, 47.3931654 ], + [ 7.5031431, 47.3931796 ], + [ 7.5033142, 47.3931241 ], + [ 7.5035169, 47.3930578 ], + [ 7.5037398, 47.3929856 ], + [ 7.5039952, 47.3929081 ], + [ 7.5042307, 47.3928341 ], + [ 7.5044157, 47.3927831 ], + [ 7.504571, 47.3927452 ], + [ 7.5046883, 47.392721 ], + [ 7.5047974, 47.3926969 ], + [ 7.5049118, 47.3926683 ], + [ 7.5050292, 47.3926291 ], + [ 7.5051156, 47.392596 ], + [ 7.505214, 47.3925556 ], + [ 7.505305, 47.3925125 ], + [ 7.505472, 47.3924314 ], + [ 7.5056172, 47.3923659 ], + [ 7.5057996, 47.3922814 ], + [ 7.5059656, 47.3922071 ], + [ 7.5061541, 47.3921273 ], + [ 7.5063865, 47.3920134 ], + [ 7.5063325, 47.3917072 ], + [ 7.5064967, 47.3916236 ], + [ 7.5065828, 47.3916123 ], + [ 7.5068639, 47.3917057 ], + [ 7.5068853, 47.3916404 ], + [ 7.5069058, 47.391543 ], + [ 7.5069079, 47.3915294 ], + [ 7.5069239, 47.3914272 ], + [ 7.5069324, 47.3913275 ], + [ 7.5069278, 47.3912649 ], + [ 7.5069204, 47.3912091 ], + [ 7.5069246, 47.3911298 ], + [ 7.5069453, 47.3910899 ], + [ 7.5069765, 47.3910596 ], + [ 7.5070224, 47.3910225 ], + [ 7.5070567, 47.3909947 ], + [ 7.5070694, 47.3909712 ], + [ 7.5070537, 47.3909229 ], + [ 7.5070189, 47.3908685 ], + [ 7.5069182, 47.3906918 ], + [ 7.5068699, 47.3906212 ], + [ 7.5068275, 47.3905891 ], + [ 7.5066995, 47.3905142 ], + [ 7.5066006, 47.3904729 ], + [ 7.5064485, 47.390404 ], + [ 7.5063931, 47.3903758 ], + [ 7.5063541, 47.3903432 ], + [ 7.5063204, 47.3902845 ], + [ 7.5063188, 47.3902767 ], + [ 7.5061357, 47.3903415 ], + [ 7.505759, 47.3903748 ], + [ 7.505331, 47.3904926 ], + [ 7.5051871, 47.3904958 ], + [ 7.5048902, 47.3905883 ], + [ 7.5046602, 47.3906563 ], + [ 7.5045401, 47.3907149 ], + [ 7.5043578, 47.3907563 ], + [ 7.5042541, 47.3907604 ], + [ 7.504111, 47.3907442 ], + [ 7.5038305, 47.3907472 ], + [ 7.5036669, 47.3908015 ], + [ 7.5035067, 47.3908815 ], + [ 7.5031914, 47.3909075 ], + [ 7.5029152, 47.390913 ], + [ 7.5027263, 47.3909372 ], + [ 7.502623, 47.3909425 ], + [ 7.5024894, 47.3907779 ], + [ 7.5023337, 47.3907388 ], + [ 7.5021424, 47.3907353 ], + [ 7.5018946, 47.3907554 ], + [ 7.5013267, 47.3907397 ], + [ 7.5010428000000005, 47.3907743 ], + [ 7.5006585, 47.3908464 ], + [ 7.5004671, 47.3908884 ], + [ 7.5003623, 47.3907241 ], + [ 7.5002628, 47.3904937 ], + [ 7.5002711, 47.3902429 ], + [ 7.5002292, 47.3901953 ], + [ 7.500126, 47.3899399 ], + [ 7.5002068, 47.3898871 ], + [ 7.5001917, 47.3896999 ], + [ 7.5000369, 47.3894844 ], + [ 7.4998469, 47.3892973 ], + [ 7.4997358, 47.3890834 ], + [ 7.4997419, 47.3889627 ], + [ 7.4996368, 47.3886975 ], + [ 7.4995522, 47.3885514 ], + [ 7.4994275, 47.3885203 ], + [ 7.4993127, 47.3882485 ], + [ 7.4992556, 47.3881347 ], + [ 7.4991177, 47.3881248 ], + [ 7.4988943, 47.3878948 ], + [ 7.4986737, 47.387821 ], + [ 7.4984034, 47.3876608 ], + [ 7.4982099, 47.3875285 ], + [ 7.4979091, 47.3875492 ], + [ 7.4977232, 47.3875607 ], + [ 7.497554, 47.3875149 ], + [ 7.4971935, 47.3874678 ], + [ 7.4969068, 47.3874819 ], + [ 7.4965687, 47.3875307 ], + [ 7.4963228, 47.3876364 ], + [ 7.4961225, 47.3876873 ], + [ 7.4959422, 47.3876919 ], + [ 7.4957435, 47.3877368 ], + [ 7.495607, 47.3877466 ], + [ 7.4954611, 47.3876192 ], + [ 7.4952824, 47.3874874 ], + [ 7.4948849, 47.387001 ], + [ 7.4947935, 47.3869361 ], + [ 7.4945853, 47.3869665 ], + [ 7.4944624, 47.3869545 ], + [ 7.4943289, 47.3869455 ], + [ 7.4940193, 47.3869799 ], + [ 7.4938096, 47.3869873 ], + [ 7.4935165, 47.3870116 ], + [ 7.4933482, 47.3870387 ], + [ 7.4931853, 47.3870549 ], + [ 7.4929796, 47.3870782 ], + [ 7.4928118999999995, 47.3870947 ], + [ 7.4926292, 47.3871609 ], + [ 7.4924646, 47.3872165 ], + [ 7.4922976, 47.3872525 ], + [ 7.4922952, 47.3872442 ], + [ 7.4922872, 47.3872169 ], + [ 7.4922686, 47.3871952 ], + [ 7.4922222, 47.3872111 ], + [ 7.4920354, 47.3872782 ], + [ 7.4917561, 47.3873674 ], + [ 7.4915212, 47.3874453 ], + [ 7.4912498, 47.3875425 ], + [ 7.4911475, 47.3875888 ], + [ 7.4908209, 47.3880375 ], + [ 7.4908179, 47.388043 ], + [ 7.4904927, 47.3885979 ], + [ 7.4898275, 47.3899594 ], + [ 7.4895709, 47.3904821 ], + [ 7.4899755, 47.390829 ], + [ 7.4908615, 47.3915833 ], + [ 7.4913512, 47.3919861 ], + [ 7.4918294, 47.3923795 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns271", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Stürmen - Eggfels - Bännli", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Stürmen - Eggfels - Bännli", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Stürmen - Eggfels - Bännli", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Stürmen - Eggfels - Bännli", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8575532, 47.5136999 ], + [ 7.8576251, 47.5136981 ], + [ 7.8576339, 47.5137519 ], + [ 7.8576811, 47.5137966 ], + [ 7.8576968, 47.5138056 ], + [ 7.8577118, 47.5138152 ], + [ 7.8577261, 47.5138252 ], + [ 7.8577398, 47.5138356 ], + [ 7.8577528, 47.5138464 ], + [ 7.857765, 47.5138577 ], + [ 7.8577764, 47.5138693 ], + [ 7.8577870999999995, 47.5138812 ], + [ 7.8577969, 47.5138934 ], + [ 7.8578057, 47.5139054 ], + [ 7.8578138, 47.5139176 ], + [ 7.8578209999999995, 47.51393 ], + [ 7.8578275, 47.5139427 ], + [ 7.8578331, 47.5139555 ], + [ 7.8578379, 47.5139685 ], + [ 7.8578418, 47.5139816 ], + [ 7.8578449, 47.5139948 ], + [ 7.8578471, 47.514008 ], + [ 7.8579519, 47.5144898 ], + [ 7.8579563, 47.5145115 ], + [ 7.8579599, 47.5145331 ], + [ 7.8579627, 47.5145548 ], + [ 7.8579647999999995, 47.5145766 ], + [ 7.8579662, 47.5145984 ], + [ 7.8579667, 47.5146202 ], + [ 7.8579665, 47.514642 ], + [ 7.8579656, 47.5146638 ], + [ 7.8579641, 47.5146864 ], + [ 7.8579618, 47.5147089 ], + [ 7.8579587, 47.5147314 ], + [ 7.8579548, 47.5147539 ], + [ 7.8579501, 47.5147762 ], + [ 7.8579446, 47.5147985 ], + [ 7.8579381999999995, 47.5148207 ], + [ 7.8579311, 47.5148428 ], + [ 7.8578153, 47.5151013 ], + [ 7.8578782, 47.5151861 ], + [ 7.8578566, 47.5152292 ], + [ 7.8577358, 47.515276 ], + [ 7.8575832, 47.5156126 ], + [ 7.8575773, 47.5156262 ], + [ 7.8575723, 47.51564 ], + [ 7.857568, 47.515654 ], + [ 7.8575646, 47.515668 ], + [ 7.857562, 47.5156821 ], + [ 7.8575602, 47.5156963 ], + [ 7.8575593, 47.5157105 ], + [ 7.8575592, 47.5157247 ], + [ 7.8575599, 47.5157389 ], + [ 7.8575614, 47.5157531 ], + [ 7.8575628, 47.5157609 ], + [ 7.8575645, 47.5157686 ], + [ 7.8575664, 47.5157763 ], + [ 7.8575686000000005, 47.5157839 ], + [ 7.8575727, 47.5157967 ], + [ 7.8575775, 47.5158094 ], + [ 7.857583, 47.515822 ], + [ 7.8575892, 47.5158344 ], + [ 7.8575961, 47.5158466 ], + [ 7.8576037, 47.5158586 ], + [ 7.8576119, 47.5158705 ], + [ 7.8576209, 47.5158821 ], + [ 7.857901, 47.5162276 ], + [ 7.8580514, 47.5163762 ], + [ 7.8580617, 47.5163869 ], + [ 7.8580711, 47.5163978 ], + [ 7.8580798, 47.5164091 ], + [ 7.8580877000000005, 47.516420600000004 ], + [ 7.8580948, 47.5164323 ], + [ 7.8581011, 47.5164443 ], + [ 7.8581066, 47.5164565 ], + [ 7.8581112, 47.5164688 ], + [ 7.8581149, 47.5164812 ], + [ 7.8581177, 47.5164938 ], + [ 7.8581197, 47.5165064 ], + [ 7.8581208, 47.5165191 ], + [ 7.8581211, 47.5165318 ], + [ 7.8581204, 47.5165445 ], + [ 7.8581189, 47.5165571 ], + [ 7.8581164, 47.5165697 ], + [ 7.8580935, 47.516675 ], + [ 7.8580909, 47.5166882 ], + [ 7.8580891, 47.516701499999996 ], + [ 7.8580881, 47.5167149 ], + [ 7.8580879, 47.5167282 ], + [ 7.8580885, 47.5167416 ], + [ 7.8580898999999995, 47.5167549 ], + [ 7.8580922, 47.5167682 ], + [ 7.8580953000000004, 47.5167814 ], + [ 7.8580992, 47.5167945 ], + [ 7.8581039, 47.5168075 ], + [ 7.8581094, 47.5168203 ], + [ 7.8581156, 47.516833 ], + [ 7.8581227, 47.5168455 ], + [ 7.8581305, 47.5168578 ], + [ 7.8581389999999995, 47.5168699 ], + [ 7.8581483, 47.5168817 ], + [ 7.8581734999999995, 47.5169125 ], + [ 7.8602844, 47.5166275 ], + [ 7.8603085, 47.5166238 ], + [ 7.8602422, 47.5164729 ], + [ 7.8601898, 47.5163191 ], + [ 7.8600855, 47.5161242 ], + [ 7.860024, 47.5160281 ], + [ 7.8599686, 47.5159478 ], + [ 7.8599234, 47.5158833 ], + [ 7.8598862, 47.5158166 ], + [ 7.8598572, 47.515748 ], + [ 7.8598375, 47.5156817 ], + [ 7.8598256, 47.5156146 ], + [ 7.8598213999999995, 47.5155471 ], + [ 7.8597863, 47.5152384 ], + [ 7.8596468, 47.5142407 ], + [ 7.8596383, 47.5141707 ], + [ 7.8596329, 47.5141006 ], + [ 7.8596307, 47.5140304 ], + [ 7.8596322, 47.5139433 ], + [ 7.8596384, 47.5138563 ], + [ 7.8596494, 47.5137695 ], + [ 7.8596533, 47.5137331 ], + [ 7.8596595, 47.5136969 ], + [ 7.8596682, 47.513661 ], + [ 7.859685, 47.5136093 ], + [ 7.8597066, 47.5135585 ], + [ 7.8597331, 47.5135088 ], + [ 7.859777, 47.513458299999996 ], + [ 7.8598258, 47.5134099 ], + [ 7.8598793, 47.5133638 ], + [ 7.8599083, 47.5133411 ], + [ 7.8599385, 47.5133192 ], + [ 7.8599698, 47.5132979 ], + [ 7.8600065, 47.5132654 ], + [ 7.8600389, 47.513230899999996 ], + [ 7.8600669, 47.5131947 ], + [ 7.8600902, 47.5131569 ], + [ 7.8601086, 47.513118 ], + [ 7.8601221, 47.5130785 ], + [ 7.8601305, 47.5130383 ], + [ 7.8601339, 47.5129978 ], + [ 7.8601322, 47.5129572 ], + [ 7.8601255, 47.5129169 ], + [ 7.860128, 47.5128447 ], + [ 7.8601373, 47.5127728 ], + [ 7.8601533, 47.5127015 ], + [ 7.8601743, 47.5126356 ], + [ 7.8602009, 47.5125707 ], + [ 7.8602332, 47.512507 ], + [ 7.8602989, 47.5123775 ], + [ 7.860305, 47.512364 ], + [ 7.8603191, 47.5123362 ], + [ 7.8603318, 47.5123082 ], + [ 7.8603432, 47.5122799 ], + [ 7.8603556, 47.5122422 ], + [ 7.8603657, 47.5122042 ], + [ 7.8603734, 47.512166 ], + [ 7.8603804, 47.5121326 ], + [ 7.8603882, 47.5120993 ], + [ 7.8603967, 47.5120661 ], + [ 7.8604075, 47.5120279 ], + [ 7.8604192, 47.5119898 ], + [ 7.860432, 47.5119519 ], + [ 7.8604464, 47.5119132 ], + [ 7.8604647, 47.5118753 ], + [ 7.860487, 47.5118384 ], + [ 7.8605067, 47.5118109 ], + [ 7.8605286, 47.5117841 ], + [ 7.8605526999999995, 47.5117582 ], + [ 7.8605830999999995, 47.5117363 ], + [ 7.8606149, 47.5117153 ], + [ 7.8606479, 47.5116951 ], + [ 7.860777, 47.5116295 ], + [ 7.8608119, 47.5116081 ], + [ 7.8608443999999995, 47.511585 ], + [ 7.8608744, 47.5115604 ], + [ 7.860896, 47.5115383 ], + [ 7.860917, 47.5115159 ], + [ 7.8609374, 47.5114932 ], + [ 7.8609561, 47.5114716 ], + [ 7.8609743, 47.5114496 ], + [ 7.8609919999999995, 47.511427499999996 ], + [ 7.8610173, 47.5113944 ], + [ 7.8610404, 47.5113606 ], + [ 7.8610612, 47.5113261 ], + [ 7.8610769, 47.5112995 ], + [ 7.8610899, 47.5112723 ], + [ 7.8611005, 47.5112446 ], + [ 7.8611384, 47.5109243 ], + [ 7.8611403, 47.5109133 ], + [ 7.8611408, 47.5109023 ], + [ 7.8611401, 47.5108912 ], + [ 7.861138, 47.5108803 ], + [ 7.8611345, 47.5108694 ], + [ 7.8611298, 47.5108589 ], + [ 7.8611273, 47.5108517 ], + [ 7.8611239, 47.5108447 ], + [ 7.8611195, 47.510838 ], + [ 7.8619654, 47.5106701 ], + [ 7.8619452, 47.5104455 ], + [ 7.8619447000000005, 47.5104213 ], + [ 7.8619435, 47.5103972 ], + [ 7.8619415, 47.510373 ], + [ 7.8619388, 47.5103489 ], + [ 7.8619354999999995, 47.510326 ], + [ 7.8619315, 47.5103032 ], + [ 7.8619268, 47.5102804 ], + [ 7.8619214, 47.5102577 ], + [ 7.861809, 47.5100944 ], + [ 7.8618508, 47.5099179 ], + [ 7.8615759, 47.5098009 ], + [ 7.8614198, 47.5097683 ], + [ 7.8613086, 47.5097708 ], + [ 7.8611959, 47.5097827 ], + [ 7.8609871, 47.5098203 ], + [ 7.8608591, 47.5098534 ], + [ 7.860707, 47.5099195 ], + [ 7.8605142, 47.5100455 ], + [ 7.8603480999999995, 47.5101799 ], + [ 7.8601582, 47.5103921 ], + [ 7.8599653, 47.5106066 ], + [ 7.8598117, 47.5107424 ], + [ 7.8597649, 47.5107866 ], + [ 7.8596834, 47.5108735 ], + [ 7.8595834, 47.5110331 ], + [ 7.859459, 47.5112691 ], + [ 7.8594078, 47.5112562 ], + [ 7.8593402, 47.5111847 ], + [ 7.8591804, 47.5111794 ], + [ 7.8590055, 47.5112288 ], + [ 7.8588988, 47.5113938 ], + [ 7.8587475, 47.5113647 ], + [ 7.8586547, 47.5114467 ], + [ 7.8585362, 47.5115121 ], + [ 7.8583425, 47.5116017 ], + [ 7.8582352, 47.5116374 ], + [ 7.8581163, 47.5116464 ], + [ 7.8580769, 47.5116358 ], + [ 7.8580052, 47.5116172 ], + [ 7.8579536, 47.5115732 ], + [ 7.8578798, 47.51155 ], + [ 7.8578604, 47.5115549 ], + [ 7.8578408, 47.5115593 ], + [ 7.8578211, 47.5115635 ], + [ 7.8578012, 47.5115672 ], + [ 7.8578092999999996, 47.5117125 ], + [ 7.8577407, 47.5117222 ], + [ 7.8575626, 47.5117501 ], + [ 7.8575421, 47.5116894 ], + [ 7.8575267, 47.5116464 ], + [ 7.857482, 47.5116647 ], + [ 7.857415, 47.511808 ], + [ 7.8572082, 47.5123444 ], + [ 7.857012, 47.5128534 ], + [ 7.8570067, 47.5128727 ], + [ 7.8570022, 47.5128922 ], + [ 7.8569984, 47.5129117 ], + [ 7.8569953, 47.5129313 ], + [ 7.856993, 47.5129509 ], + [ 7.856992, 47.5129711 ], + [ 7.8569917, 47.5129914 ], + [ 7.8569922, 47.5130116 ], + [ 7.8569935, 47.5130319 ], + [ 7.8569956, 47.5130521 ], + [ 7.8569993, 47.5130822 ], + [ 7.8570022999999996, 47.5131123 ], + [ 7.8570048, 47.5131424 ], + [ 7.8570066, 47.5131726 ], + [ 7.8570079, 47.5132028 ], + [ 7.8570084, 47.513233 ], + [ 7.8570083, 47.5132632 ], + [ 7.8570076, 47.5132934 ], + [ 7.8570062, 47.5133236 ], + [ 7.8570043, 47.5133538 ], + [ 7.8569666, 47.5136246 ], + [ 7.8575532, 47.5136999 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns292", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Schönenberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Schönenberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Schönenberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Schönenberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.698432, 47.4141508 ], + [ 7.6984342, 47.414198999999996 ], + [ 7.6984791999999995, 47.4143722 ], + [ 7.6985947, 47.414761 ], + [ 7.6987875, 47.4152441 ], + [ 7.6988266, 47.4153461 ], + [ 7.7011781, 47.4155703 ], + [ 7.7006118, 47.4146768 ], + [ 7.7004805, 47.4142158 ], + [ 7.7004126, 47.4139182 ], + [ 7.700375, 47.4137542 ], + [ 7.7003069, 47.4135901 ], + [ 7.7002904999999995, 47.4135512 ], + [ 7.7002539, 47.4135888 ], + [ 7.7001562, 47.4136747 ], + [ 7.7000651, 47.4136987 ], + [ 7.6999461, 47.413737 ], + [ 7.6998621, 47.4137657 ], + [ 7.6998342, 47.4137944 ], + [ 7.6998344, 47.4138229 ], + [ 7.6998277999999996, 47.4139181 ], + [ 7.6997864, 47.4140467 ], + [ 7.6997731, 47.4141943 ], + [ 7.6997243, 47.4142468 ], + [ 7.6996544, 47.4143088 ], + [ 7.6995072, 47.4143187 ], + [ 7.699388, 47.4143046 ], + [ 7.6992126, 47.414286 ], + [ 7.6990582, 47.4142626 ], + [ 7.6988967, 47.4142106 ], + [ 7.698749, 47.41413 ], + [ 7.6986718, 47.4141064 ], + [ 7.6985035, 47.414102 ], + [ 7.698432, 47.4141508 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns352", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Arlisberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Arlisberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Arlisberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Arlisberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.6564269, 47.4669398 ], + [ 8.6564182, 47.4667986 ], + [ 8.6563986, 47.466658 ], + [ 8.6563683, 47.4665182 ], + [ 8.6563271, 47.4663798 ], + [ 8.6562753, 47.4662429 ], + [ 8.6562131, 47.4661081 ], + [ 8.6561405, 47.4659757 ], + [ 8.6560578, 47.4658461 ], + [ 8.6559652, 47.4657195 ], + [ 8.655863, 47.4655964 ], + [ 8.6557514, 47.4654772 ], + [ 8.6556308, 47.465362 ], + [ 8.6555014, 47.4652513 ], + [ 8.6553637, 47.4651453 ], + [ 8.655218, 47.4650443 ], + [ 8.6550647, 47.4649487 ], + [ 8.6549042, 47.4648586 ], + [ 8.654737, 47.4647744 ], + [ 8.6545635, 47.4646962 ], + [ 8.654384199999999, 47.4646243 ], + [ 8.6541996, 47.4645588 ], + [ 8.6540102, 47.4645 ], + [ 8.6538166, 47.4644479 ], + [ 8.6536192, 47.4644028 ], + [ 8.6534185, 47.4643648 ], + [ 8.6532153, 47.464334 ], + [ 8.6530099, 47.4643104 ], + [ 8.6528029, 47.4642941 ], + [ 8.6525951, 47.4642852 ], + [ 8.6523868, 47.4642837 ], + [ 8.6521786, 47.4642896 ], + [ 8.6519712, 47.4643028 ], + [ 8.6517652, 47.4643234 ], + [ 8.6515609, 47.4643513 ], + [ 8.6513592, 47.4643864 ], + [ 8.6511604, 47.4644286 ], + [ 8.6509651, 47.4644778 ], + [ 8.6507739, 47.4645339 ], + [ 8.6505873, 47.4645967 ], + [ 8.6504058, 47.464666 ], + [ 8.6502299, 47.4647417 ], + [ 8.65006, 47.4648235 ], + [ 8.6498968, 47.4649112 ], + [ 8.6497405, 47.4650046 ], + [ 8.6495916, 47.4651034 ], + [ 8.6494505, 47.4652073 ], + [ 8.6493177, 47.4653161 ], + [ 8.649193499999999, 47.4654295 ], + [ 8.6490781, 47.4655472 ], + [ 8.648972, 47.4656687 ], + [ 8.648875499999999, 47.4657939 ], + [ 8.6487887, 47.4659223 ], + [ 8.648712, 47.4660537 ], + [ 8.6486455, 47.4661875 ], + [ 8.6485894, 47.4663236 ], + [ 8.6485439, 47.4664614 ], + [ 8.6485091, 47.4666007 ], + [ 8.6484851, 47.466741 ], + [ 8.6484719, 47.466882 ], + [ 8.6484697, 47.4670232 ], + [ 8.6484784, 47.4671644 ], + [ 8.6484979, 47.467305 ], + [ 8.6485283, 47.4674448 ], + [ 8.6485694, 47.4675833 ], + [ 8.6486211, 47.4677201 ], + [ 8.6486834, 47.4678549 ], + [ 8.648756, 47.4679873 ], + [ 8.6488386, 47.468117 ], + [ 8.6489312, 47.4682435 ], + [ 8.6490334, 47.4683666 ], + [ 8.649145, 47.4684859 ], + [ 8.6492656, 47.4686011 ], + [ 8.649395, 47.4687118 ], + [ 8.6495327, 47.4688178 ], + [ 8.649678399999999, 47.4689187 ], + [ 8.6498317, 47.4690144 ], + [ 8.6499922, 47.4691045 ], + [ 8.6501594, 47.4691887 ], + [ 8.6503329, 47.4692669 ], + [ 8.6505122, 47.4693389 ], + [ 8.6506968, 47.4694043 ], + [ 8.6508862, 47.4694632 ], + [ 8.6510799, 47.4695152 ], + [ 8.6512773, 47.4695603 ], + [ 8.651478000000001, 47.4695983 ], + [ 8.6516813, 47.4696292 ], + [ 8.6518867, 47.4696528 ], + [ 8.6520936, 47.469669 ], + [ 8.6523015, 47.4696779 ], + [ 8.6525099, 47.4696794 ], + [ 8.652718, 47.4696736 ], + [ 8.6529254, 47.4696603 ], + [ 8.6531315, 47.4696397 ], + [ 8.6533358, 47.4696118 ], + [ 8.6535375, 47.4695767 ], + [ 8.6537364, 47.4695345 ], + [ 8.6539316, 47.4694853 ], + [ 8.6541228, 47.4694292 ], + [ 8.6543095, 47.4693664 ], + [ 8.654491, 47.4692971 ], + [ 8.6546669, 47.4692214 ], + [ 8.6548368, 47.4691396 ], + [ 8.655, 47.4690519 ], + [ 8.6551563, 47.4689585 ], + [ 8.6553052, 47.4688597 ], + [ 8.6554463, 47.4687557 ], + [ 8.6555791, 47.4686469 ], + [ 8.6557033, 47.4685335 ], + [ 8.6558186, 47.4684159 ], + [ 8.6559247, 47.4682943 ], + [ 8.656021299999999, 47.4681691 ], + [ 8.656108, 47.4680407 ], + [ 8.6561848, 47.4679094 ], + [ 8.6562512, 47.4677755 ], + [ 8.6563073, 47.4676395 ], + [ 8.6563528, 47.4675016 ], + [ 8.6563876, 47.4673623 ], + [ 8.6564116, 47.467222 ], + [ 8.6564247, 47.467081 ], + [ 8.6564269, 47.4669398 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0020", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Breite", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Breite", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Breite", + "lang" : "it-CH" + }, + { + "text" : "Substation Breite", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.9013226, 47.4422769 ], + [ 7.9011794, 47.4427115 ], + [ 7.9010315, 47.4429881 ], + [ 7.9010644, 47.4429948 ], + [ 7.9010615, 47.443007 ], + [ 7.9010586, 47.4430189 ], + [ 7.9010054, 47.4432421 ], + [ 7.9009414, 47.4432292 ], + [ 7.9007813, 47.4432237 ], + [ 7.9007553999999995, 47.4432228 ], + [ 7.9004758, 47.443213 ], + [ 7.899615, 47.443183 ], + [ 7.8995127, 47.4431795 ], + [ 7.8991657, 47.4431674 ], + [ 7.8990028, 47.443174 ], + [ 7.8988999, 47.4431782 ], + [ 7.8986298999999995, 47.4431892 ], + [ 7.8980016, 47.4432559 ], + [ 7.8980057, 47.443271 ], + [ 7.8980129, 47.4432978 ], + [ 7.8980112, 47.4432981 ], + [ 7.8977499, 47.4433539 ], + [ 7.897715, 47.4433613 ], + [ 7.8974005, 47.4434089 ], + [ 7.8968699, 47.4434638 ], + [ 7.8966387000000005, 47.4435206 ], + [ 7.8963967, 47.4435315 ], + [ 7.8963076, 47.4435394 ], + [ 7.8961448999999995, 47.4435539 ], + [ 7.8960646, 47.443561 ], + [ 7.8956548, 47.4436447 ], + [ 7.8955801999999995, 47.4436087 ], + [ 7.8955657, 47.4436078 ], + [ 7.8955402, 47.4436062 ], + [ 7.8955079, 47.4435945 ], + [ 7.8954471, 47.443584 ], + [ 7.8954123, 47.4435888 ], + [ 7.8954038, 47.4436622 ], + [ 7.8951923, 47.4437213 ], + [ 7.8950681, 47.4437708 ], + [ 7.894934, 47.4435913 ], + [ 7.8949177, 47.4435405 ], + [ 7.8949207, 47.4435187 ], + [ 7.8948925, 47.443428 ], + [ 7.8948885, 47.443415 ], + [ 7.8948843, 47.4434017 ], + [ 7.894866, 47.4433426 ], + [ 7.8943343, 47.4433918 ], + [ 7.8935675, 47.4434786 ], + [ 7.8935991, 47.4435594 ], + [ 7.8936598, 47.4437151 ], + [ 7.8936612, 47.4437185 ], + [ 7.8936634, 47.4437228 ], + [ 7.8936744999999995, 47.443744 ], + [ 7.8936774, 47.4437496 ], + [ 7.8936358, 47.4437617 ], + [ 7.8935843, 47.4437768 ], + [ 7.8936114, 47.4438517 ], + [ 7.8936228, 47.4438832 ], + [ 7.8936516, 47.4439631 ], + [ 7.893714, 47.4439465 ], + [ 7.8937622, 47.4439336 ], + [ 7.893804, 47.4439431 ], + [ 7.8938673999999995, 47.4439728 ], + [ 7.8940551, 47.4442503 ], + [ 7.8939377, 47.4443008 ], + [ 7.8936656, 47.4444178 ], + [ 7.8936791, 47.44443 ], + [ 7.8940249, 47.4447375 ], + [ 7.8941326, 47.4448334 ], + [ 7.8946012, 47.4445592 ], + [ 7.8951889, 47.4443417 ], + [ 7.8954818, 47.4442364 ], + [ 7.8955759, 47.4442055 ], + [ 7.8963615, 47.4440225 ], + [ 7.8970784, 47.4439689 ], + [ 7.8973252, 47.4439292 ], + [ 7.9015702, 47.4439788 ], + [ 7.9015951, 47.443857 ], + [ 7.9016106, 47.443781 ], + [ 7.901948, 47.4438685 ], + [ 7.9026391, 47.4439913 ], + [ 7.9032442, 47.4439984 ], + [ 7.90333, 47.4440021 ], + [ 7.9037197, 47.4439495 ], + [ 7.9042019, 47.4437927 ], + [ 7.9042494, 47.4437763 ], + [ 7.904318, 47.4437527 ], + [ 7.9043887, 47.443739 ], + [ 7.9045245, 47.4437127 ], + [ 7.9044737, 47.4434944 ], + [ 7.9044725, 47.4434891 ], + [ 7.9044527, 47.4434038 ], + [ 7.9044366, 47.443345 ], + [ 7.9043014, 47.4432625 ], + [ 7.90378, 47.4432275 ], + [ 7.9035469, 47.443093 ], + [ 7.9032732, 47.4429542 ], + [ 7.9027206, 47.4426842 ], + [ 7.9024823, 47.4425606 ], + [ 7.9023052, 47.4425351 ], + [ 7.9020769, 47.442451 ], + [ 7.9016731, 47.442346 ], + [ 7.9013226, 47.4422769 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr035", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Alete", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Alete", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Alete", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Alete", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.1460039, 46.2907027 ], + [ 6.1460045, 46.2907049 ], + [ 6.1459941, 46.2907381 ], + [ 6.1462658, 46.2917741 ], + [ 6.1470888, 46.2926592 ], + [ 6.1483377, 46.2932585 ], + [ 6.1498225, 46.2934809 ], + [ 6.151317, 46.2932925 ], + [ 6.1525937, 46.292722 ], + [ 6.1534582, 46.2918562 ], + [ 6.1537789, 46.2908269 ], + [ 6.1537784, 46.2908248 ], + [ 6.1537887, 46.2907915 ], + [ 6.1535169, 46.2897555 ], + [ 6.1526939, 46.2888705 ], + [ 6.151445, 46.2882712 ], + [ 6.1499603, 46.2880488 ], + [ 6.148466, 46.2882372 ], + [ 6.1471893, 46.2888077 ], + [ 6.1463247, 46.2896735 ], + [ 6.1460039, 46.2907027 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-52", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.9834755, 46.2606916 ], + [ 6.9833457, 46.260853 ], + [ 6.9841985, 46.2612333 ], + [ 6.9894672, 46.2555654 ], + [ 6.9885947, 46.2552138 ], + [ 6.9886845, 46.2551746 ], + [ 6.9880627, 46.2549346 ], + [ 6.9830313, 46.2604496 ], + [ 6.9834755, 46.2606916 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSGB002", + "country" : "CHE", + "name" : [ + { + "text" : "LSGB Bex (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSGB Bex (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSGB Bex (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSGB Bex (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "AéroBex Aérodrome Bex Chablais", + "lang" : "de-CH" + }, + { + "text" : "AéroBex Aérodrome Bex Chablais", + "lang" : "fr-CH" + }, + { + "text" : "AéroBex Aérodrome Bex Chablais", + "lang" : "it-CH" + }, + { + "text" : "AéroBex Aérodrome Bex Chablais", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Chef d'aérodrome", + "lang" : "de-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "fr-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "it-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Philippe Manuel", + "lang" : "de-CH" + }, + { + "text" : "Philippe Manuel", + "lang" : "fr-CH" + }, + { + "text" : "Philippe Manuel", + "lang" : "it-CH" + }, + { + "text" : "Philippe Manuel", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.aerobex.ch/informations/drones.html", + "email" : "chefdeplace@aerobex.ch", + "phone" : "0041762324225", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.1482779, 46.27828 ], + [ 6.1497896, 46.2783733 ], + [ 6.1498721, 46.2783672 ], + [ 6.151048, 46.2781463 ], + [ 6.1520678, 46.2776841 ], + [ 6.1528315, 46.277026 ], + [ 6.1532644, 46.2762364 ], + [ 6.153324, 46.2753927 ], + [ 6.1533178, 46.2753531 ], + [ 6.1529983, 46.2745379 ], + [ 6.152331, 46.2738311 ], + [ 6.1513813, 46.273302 ], + [ 6.1502423, 46.2730025 ], + [ 6.1490255, 46.2729618 ], + [ 6.1489429, 46.272968 ], + [ 6.1474952, 46.2732843 ], + [ 6.146332, 46.2739607 ], + [ 6.1456304, 46.2748941 ], + [ 6.1454971, 46.2759426 ], + [ 6.1455033, 46.2759821 ], + [ 6.1459584, 46.276986 ], + [ 6.1469326, 46.2777928 ], + [ 6.1482779, 46.27828 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-47", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.4252875, 46.5901135 ], + [ 9.4252769, 46.5899724 ], + [ 9.4252557, 46.5898319 ], + [ 9.4252238, 46.5896923 ], + [ 9.4251813, 46.5895541 ], + [ 9.4251285, 46.5894176 ], + [ 9.4250653, 46.5892832 ], + [ 9.424992, 46.5891512 ], + [ 9.4249088, 46.5890221 ], + [ 9.4248159, 46.5888961 ], + [ 9.4247136, 46.5887737 ], + [ 9.4246022, 46.5886552 ], + [ 9.4244818, 46.5885408 ], + [ 9.424353, 46.5884309 ], + [ 9.424216, 46.5883258 ], + [ 9.4240712, 46.588225800000004 ], + [ 9.423919099999999, 46.5881312 ], + [ 9.4237599, 46.5880422 ], + [ 9.4235942, 46.5879591 ], + [ 9.4234225, 46.587882 ], + [ 9.4232451, 46.5878113 ], + [ 9.4230625, 46.587747 ], + [ 9.4228754, 46.5876894 ], + [ 9.4226841, 46.5876387 ], + [ 9.4224893, 46.5875949 ], + [ 9.4222914, 46.5875582 ], + [ 9.422091, 46.5875287 ], + [ 9.4218886, 46.5875065 ], + [ 9.4216848, 46.5874916 ], + [ 9.4214802, 46.5874841 ], + [ 9.4212753, 46.5874839 ], + [ 9.4210706, 46.5874912 ], + [ 9.4208668, 46.5875058 ], + [ 9.4206643, 46.5875278 ], + [ 9.4204638, 46.5875571 ], + [ 9.4202658, 46.5875935 ], + [ 9.4200709, 46.587637 ], + [ 9.4198795, 46.5876876 ], + [ 9.4196922, 46.5877449 ], + [ 9.4195095, 46.5878089 ], + [ 9.419332, 46.5878795 ], + [ 9.41916, 46.5879563 ], + [ 9.4189941, 46.5880392 ], + [ 9.4188347, 46.588128 ], + [ 9.4186823, 46.5882225 ], + [ 9.4185372, 46.5883223 ], + [ 9.4184, 46.5884272 ], + [ 9.4182708, 46.5885369 ], + [ 9.4181502, 46.5886511 ], + [ 9.4180384, 46.5887696 ], + [ 9.4179358, 46.5888919 ], + [ 9.4178426, 46.5890177 ], + [ 9.417759, 46.5891467 ], + [ 9.4176854, 46.5892786 ], + [ 9.4176219, 46.5894129 ], + [ 9.4175687, 46.5895493 ], + [ 9.4175259, 46.5896875 ], + [ 9.4174936, 46.589827 ], + [ 9.417472, 46.5899675 ], + [ 9.4174611, 46.5901086 ], + [ 9.4174609, 46.5902499 ], + [ 9.4174714, 46.590391 ], + [ 9.4174926, 46.5905315 ], + [ 9.4175245, 46.5906711 ], + [ 9.4175669, 46.5908093 ], + [ 9.4176198, 46.5909458 ], + [ 9.417682899999999, 46.5910802 ], + [ 9.4177562, 46.5912122 ], + [ 9.4178394, 46.5913413 ], + [ 9.4179323, 46.5914672 ], + [ 9.4180346, 46.5915897 ], + [ 9.418146, 46.5917082 ], + [ 9.418266299999999, 46.5918226 ], + [ 9.4183951, 46.5919325 ], + [ 9.4185322, 46.5920376 ], + [ 9.4186769, 46.5921376 ], + [ 9.4188291, 46.5922322 ], + [ 9.4189883, 46.5923212 ], + [ 9.419154, 46.5924044 ], + [ 9.4193257, 46.5924814 ], + [ 9.4195031, 46.5925522 ], + [ 9.4196857, 46.5926165 ], + [ 9.4198728, 46.592674099999996 ], + [ 9.4200641, 46.5927248 ], + [ 9.4202589, 46.5927686 ], + [ 9.4204569, 46.5928053 ], + [ 9.4206573, 46.5928348 ], + [ 9.4208597, 46.592857 ], + [ 9.4210635, 46.5928719 ], + [ 9.4212682, 46.5928794 ], + [ 9.4214731, 46.5928796 ], + [ 9.4216778, 46.5928723 ], + [ 9.4218816, 46.5928577 ], + [ 9.4220841, 46.5928357 ], + [ 9.4222846, 46.5928064 ], + [ 9.4224826, 46.59277 ], + [ 9.4226776, 46.5927264 ], + [ 9.422869, 46.5926759 ], + [ 9.4230563, 46.5926186 ], + [ 9.423239, 46.5925545 ], + [ 9.4234166, 46.592484 ], + [ 9.4235886, 46.5924072 ], + [ 9.4237545, 46.5923242 ], + [ 9.4239139, 46.5922354 ], + [ 9.4240663, 46.5921409 ], + [ 9.4242113, 46.5920411 ], + [ 9.4243486, 46.5919362 ], + [ 9.4244777, 46.5918265 ], + [ 9.4245983, 46.5917123 ], + [ 9.4247101, 46.5915938 ], + [ 9.4248127, 46.5914715 ], + [ 9.4249059, 46.5913457 ], + [ 9.4249895, 46.5912167 ], + [ 9.4250631, 46.5910848 ], + [ 9.4251266, 46.5909505 ], + [ 9.4251798, 46.5908141 ], + [ 9.4252225, 46.5906759 ], + [ 9.4252548, 46.5905363 ], + [ 9.4252764, 46.5903959 ], + [ 9.4252873, 46.5902548 ], + [ 9.4252875, 46.5901135 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0008", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Bärenburg", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Bärenburg", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Bärenburg", + "lang" : "it-CH" + }, + { + "text" : "Substation Bärenburg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.3214584, 47.3768905 ], + [ 8.3214718, 47.376816 ], + [ 8.3214089, 47.3767547 ], + [ 8.3212917, 47.3767042 ], + [ 8.3211118, 47.3766295 ], + [ 8.32093, 47.376561 ], + [ 8.3207403, 47.3765085 ], + [ 8.3206295, 47.3764927 ], + [ 8.3205644, 47.3764944 ], + [ 8.3205128, 47.376521 ], + [ 8.3205149, 47.3765885 ], + [ 8.3205175, 47.3766681 ], + [ 8.3205634, 47.3767546 ], + [ 8.3206587, 47.3768745 ], + [ 8.3207822, 47.3769909 ], + [ 8.3209037, 47.3770778 ], + [ 8.3210486, 47.3771408 ], + [ 8.3211747, 47.3771435 ], + [ 8.3212625, 47.377099 ], + [ 8.3213756, 47.3769911 ], + [ 8.3214584, 47.3768905 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "KTAG508", + "country" : "CHE", + "name" : [ + { + "text" : "Alte Reuss", + "lang" : "de-CH" + }, + { + "text" : "Alte Reuss", + "lang" : "fr-CH" + }, + { + "text" : "Alte Reuss", + "lang" : "it-CH" + }, + { + "text" : "Alte Reuss", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "regulationExemption" : "NO", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "schedule" : [ + { + "day" : [ "ANY" ], + "startTime" : "00:00:00.00+01:00", + "endTime" : "00:00:00.00+01:00" + } + ] + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Aargau", + "lang" : "de-CH" + }, + { + "text" : "Canton d'Argovie", + "lang" : "fr-CH" + }, + { + "text" : "Canton Argovia", + "lang" : "it-CH" + }, + { + "text" : "Canton of Aargau", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Departement Bau, Verkehr und Umwelt (BVU)", + "lang" : "de-CH" + }, + { + "text" : "Département de la construction, des transports et de l'environnement (CTE)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento delle costruzioni, dei trasporti e dell'ambiente (CTA)", + "lang" : "it-CH" + }, + { + "text" : "Department of Civil Engineering,Transport and Environment (CTE)", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Sektion Gewässernutzung", + "lang" : "de-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "fr-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "it-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ag.ch/de/verwaltung/bvu/umwelt-natur-landschaft/hochwasserschutz-gewaesser/gewaessernutzung", + "email" : "alg@ag.ch", + "phone" : "0041 62 835 34 50", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8415593999999995, 47.4469793 ], + [ 7.8413503, 47.4469464 ], + [ 7.8413375, 47.4469469 ], + [ 7.8411548, 47.4469533 ], + [ 7.841134, 47.4470361 ], + [ 7.8409751, 47.4473147 ], + [ 7.8408707, 47.4474972 ], + [ 7.8408043, 47.4476026 ], + [ 7.840711, 47.4477006 ], + [ 7.8405487, 47.4478388 ], + [ 7.8404613, 47.4479208 ], + [ 7.8404084, 47.4479703 ], + [ 7.8402739, 47.4481504 ], + [ 7.8402082, 47.4482365 ], + [ 7.8400661, 47.4484546 ], + [ 7.8399991, 47.4485384 ], + [ 7.8398334, 47.4487456 ], + [ 7.8396257, 47.4489082 ], + [ 7.8393477, 47.4490508 ], + [ 7.8392475, 47.4491078 ], + [ 7.8390076, 47.4492192 ], + [ 7.8390331, 47.4492389 ], + [ 7.8391393, 47.4492974 ], + [ 7.8391715, 47.4493151 ], + [ 7.8390123, 47.4494728 ], + [ 7.8390808, 47.4495103 ], + [ 7.8393425, 47.4496538 ], + [ 7.83922, 47.4497549 ], + [ 7.839188, 47.4497899 ], + [ 7.8390555, 47.4499352 ], + [ 7.8389233, 47.4500801 ], + [ 7.8389024, 47.4501031 ], + [ 7.8387362, 47.4502853 ], + [ 7.8385967, 47.4504383 ], + [ 7.8383448, 47.4507144 ], + [ 7.838634, 47.4508177 ], + [ 7.8389362, 47.4509101 ], + [ 7.8392699, 47.4510121 ], + [ 7.8397310000000004, 47.4511525 ], + [ 7.8415236, 47.451578 ], + [ 7.8416214, 47.4513282 ], + [ 7.8417103, 47.4511299 ], + [ 7.8418320999999995, 47.4508496 ], + [ 7.8420089, 47.450559 ], + [ 7.842089, 47.4501788 ], + [ 7.8421493, 47.4498578 ], + [ 7.8421996, 47.4496392 ], + [ 7.8422678999999995, 47.449276 ], + [ 7.8423232, 47.4490412 ], + [ 7.8423818, 47.4490223 ], + [ 7.8422515, 47.448555 ], + [ 7.8422646, 47.4482515 ], + [ 7.842944, 47.447911 ], + [ 7.8426029, 47.4475459 ], + [ 7.8421611, 47.4471826 ], + [ 7.8418138, 47.4470616 ], + [ 7.8415932, 47.4469846 ], + [ 7.8415593999999995, 47.4469793 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns067", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Rebhalde - Rehhag", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Rebhalde - Rehhag", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Rebhalde - Rehhag", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Rebhalde - Rehhag", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.931875, 47.4511498 ], + [ 7.9318798, 47.4511402 ], + [ 7.9318837, 47.4511305 ], + [ 7.9318866, 47.4511205 ], + [ 7.9318887, 47.4511105 ], + [ 7.9318887, 47.45111 ], + [ 7.9318896, 47.4511024 ], + [ 7.9318898, 47.4511004 ], + [ 7.93189, 47.4510903 ], + [ 7.9318892, 47.4510802 ], + [ 7.9318875, 47.4510701 ], + [ 7.9318849, 47.4510602 ], + [ 7.9319425, 47.4510872 ], + [ 7.9332709999999995, 47.4503565 ], + [ 7.9330499, 47.4501889 ], + [ 7.9329715, 47.4501224 ], + [ 7.9329122, 47.450036 ], + [ 7.9329039, 47.4499426 ], + [ 7.9329349, 47.449857 ], + [ 7.9329837, 47.4494781 ], + [ 7.9330987, 47.4492399 ], + [ 7.9332446, 47.449093 ], + [ 7.9334422, 47.4489794 ], + [ 7.9336378, 47.4489269 ], + [ 7.9339063, 47.4488655 ], + [ 7.9344896, 47.4487173 ], + [ 7.934863, 47.4486065 ], + [ 7.9354201, 47.4484181 ], + [ 7.9355949, 47.4483937 ], + [ 7.9357738, 47.4483813 ], + [ 7.9359337, 47.4483627 ], + [ 7.9357967, 47.4483529 ], + [ 7.9357515, 47.4483504 ], + [ 7.9357062, 47.4483484 ], + [ 7.9356609, 47.4483471 ], + [ 7.9356155, 47.4483464 ], + [ 7.9355701, 47.4483463 ], + [ 7.9355247, 47.4483467 ], + [ 7.9354794, 47.4483478 ], + [ 7.9354341, 47.4483494 ], + [ 7.9353888, 47.4483517 ], + [ 7.9353437, 47.4483546 ], + [ 7.9352986, 47.448358 ], + [ 7.9352858, 47.4482764 ], + [ 7.9356838, 47.4481996 ], + [ 7.9356819, 47.4481476 ], + [ 7.9356731, 47.4479147 ], + [ 7.9356582, 47.44777 ], + [ 7.9355182, 47.4477568 ], + [ 7.9354308, 47.4477398 ], + [ 7.9349343, 47.4475915 ], + [ 7.9349221, 47.4475488 ], + [ 7.934817, 47.4475206 ], + [ 7.9346773, 47.4474613 ], + [ 7.9345213999999995, 47.447415 ], + [ 7.9341699, 47.4473313 ], + [ 7.9338173, 47.4472865 ], + [ 7.9327288, 47.4470831 ], + [ 7.9325728, 47.4470405 ], + [ 7.9322466, 47.446836 ], + [ 7.9322204, 47.4467634 ], + [ 7.9322619, 47.44669 ], + [ 7.9327406, 47.4462106 ], + [ 7.9328959, 47.4460471 ], + [ 7.9330194, 47.4458787 ], + [ 7.9334234, 47.4453659 ], + [ 7.9332569, 47.4452234 ], + [ 7.9336752, 47.4446006 ], + [ 7.9335306, 47.444479 ], + [ 7.9339375, 47.4441051 ], + [ 7.9341218, 47.4438492 ], + [ 7.9344836999999995, 47.4436146 ], + [ 7.9348809, 47.443591 ], + [ 7.9350001, 47.4434503 ], + [ 7.9347639, 47.4432597 ], + [ 7.9347352, 47.4431243 ], + [ 7.9347921, 47.4429759 ], + [ 7.9347615, 47.4429701 ], + [ 7.9343584, 47.4428472 ], + [ 7.934442, 47.4425325 ], + [ 7.9344570999999995, 47.44234 ], + [ 7.9344817, 47.4421854 ], + [ 7.934599, 47.441991 ], + [ 7.9347196, 47.4418062 ], + [ 7.9347243, 47.4412736 ], + [ 7.9341851, 47.4412822 ], + [ 7.9339276, 47.4416154 ], + [ 7.9337938, 47.4418564 ], + [ 7.9336988999999996, 47.4420413 ], + [ 7.9335511, 47.4422098 ], + [ 7.9333083, 47.4423046 ], + [ 7.9333258, 47.442523 ], + [ 7.9331692, 47.4426289 ], + [ 7.932989, 47.4426983 ], + [ 7.9327267, 47.4428571 ], + [ 7.9324401, 47.4430469 ], + [ 7.9321861, 47.4432067 ], + [ 7.9319113, 47.4432834 ], + [ 7.9317088, 47.4432682 ], + [ 7.931465, 47.4432317 ], + [ 7.9311416999999995, 47.4431971 ], + [ 7.9309749, 47.443462 ], + [ 7.9310571, 47.4436696 ], + [ 7.9310591, 47.4438129 ], + [ 7.9309507, 47.4439171 ], + [ 7.9308509, 47.4439809 ], + [ 7.9306751, 47.4442664 ], + [ 7.9305475, 47.4444587 ], + [ 7.93053, 47.4444851 ], + [ 7.9304916, 47.444543 ], + [ 7.9303013, 47.4447917 ], + [ 7.9302097, 47.4450111 ], + [ 7.9302425, 47.4452572 ], + [ 7.9301779, 47.4454416 ], + [ 7.9300374, 47.4455447 ], + [ 7.9298092, 47.4456087 ], + [ 7.9295213, 47.4456872 ], + [ 7.9292198, 47.445768 ], + [ 7.9291838, 47.4457795 ], + [ 7.9290348, 47.4458274 ], + [ 7.9290738, 47.445929 ], + [ 7.9292793, 47.445988 ], + [ 7.9294904, 47.446074 ], + [ 7.9296543, 47.4461933 ], + [ 7.9296146, 47.4464137 ], + [ 7.9294696, 47.4466867 ], + [ 7.9292567, 47.4468934 ], + [ 7.9292175, 47.4470469 ], + [ 7.9293211, 47.4472491 ], + [ 7.9294673, 47.4473793 ], + [ 7.9294183, 47.4475797 ], + [ 7.9293285000000004, 47.4477123 ], + [ 7.9292731, 47.4477956 ], + [ 7.9291336999999995, 47.4480051 ], + [ 7.929027, 47.4481797 ], + [ 7.9287902, 47.4484392 ], + [ 7.9287344, 47.4485139 ], + [ 7.9285841, 47.4487152 ], + [ 7.9283754, 47.4489988 ], + [ 7.9283087, 47.4491401 ], + [ 7.9282034, 47.4493632 ], + [ 7.9281374, 47.4496233 ], + [ 7.9281002, 47.4498667 ], + [ 7.9280052, 47.4499958 ], + [ 7.9277931, 47.4500821 ], + [ 7.9275687999999995, 47.450161 ], + [ 7.9272884999999995, 47.4502369 ], + [ 7.9269733, 47.4502908 ], + [ 7.9267076, 47.4503834 ], + [ 7.92652, 47.4504623 ], + [ 7.9263302, 47.4505712 ], + [ 7.9260969, 47.4507064 ], + [ 7.9258859, 47.450989 ], + [ 7.9255391, 47.4509965 ], + [ 7.9255610999999995, 47.4511112 ], + [ 7.9253049, 47.4511018 ], + [ 7.9250591, 47.4510505 ], + [ 7.9247913, 47.4509446 ], + [ 7.9245742, 47.450773 ], + [ 7.9244335, 47.450704 ], + [ 7.9242605, 47.4506481 ], + [ 7.9239267, 47.4508278 ], + [ 7.9238042, 47.4508185 ], + [ 7.923507, 47.4506799 ], + [ 7.923277, 47.4505546 ], + [ 7.9230773, 47.4505159 ], + [ 7.922898, 47.4505847 ], + [ 7.9226027, 47.4506416 ], + [ 7.9226636, 47.4507251 ], + [ 7.9228325, 47.4508876 ], + [ 7.9228895, 47.4510626 ], + [ 7.9226669, 47.4513059 ], + [ 7.9224988, 47.4514572 ], + [ 7.9224265, 47.4514929 ], + [ 7.9228753, 47.4517485 ], + [ 7.9231367, 47.4518793 ], + [ 7.9234718, 47.4520452 ], + [ 7.9236979, 47.4521518 ], + [ 7.923677, 47.4521786 ], + [ 7.9236388, 47.4522238 ], + [ 7.9233868, 47.452389 ], + [ 7.9233041, 47.4524343 ], + [ 7.9230645, 47.4525594 ], + [ 7.9226196, 47.4528565 ], + [ 7.9223968, 47.453022 ], + [ 7.9221775, 47.4534026 ], + [ 7.922147, 47.4537376 ], + [ 7.9220671, 47.4538296 ], + [ 7.9219677, 47.4539453 ], + [ 7.921925, 47.4540122 ], + [ 7.921899, 47.454087 ], + [ 7.9219428, 47.4541778 ], + [ 7.9219204, 47.4542216 ], + [ 7.9218105, 47.4543386 ], + [ 7.9217551, 47.4543955 ], + [ 7.9216418, 47.4545033 ], + [ 7.9215916, 47.4545405 ], + [ 7.9215365, 47.4545797 ], + [ 7.9213176, 47.4547365 ], + [ 7.9212306, 47.4547989 ], + [ 7.921274, 47.4548247 ], + [ 7.9213021, 47.4548372 ], + [ 7.9213428, 47.4548605 ], + [ 7.9214619, 47.4549288 ], + [ 7.9217089, 47.4550703 ], + [ 7.9221178, 47.4547912 ], + [ 7.9222279, 47.454766 ], + [ 7.9223387, 47.4546886 ], + [ 7.9225455, 47.4545341 ], + [ 7.9227857, 47.4543179 ], + [ 7.9228948, 47.454202 ], + [ 7.9230041, 47.4540648 ], + [ 7.9231047, 47.4541001 ], + [ 7.9231282, 47.4541085 ], + [ 7.9231978, 47.4541334 ], + [ 7.923458, 47.4539163 ], + [ 7.9238411, 47.4536001 ], + [ 7.9238485999999995, 47.4535943 ], + [ 7.92409, 47.4534077 ], + [ 7.9243351, 47.4532882 ], + [ 7.9244957, 47.4532429 ], + [ 7.9245078, 47.4536098 ], + [ 7.9245268, 47.4539545 ], + [ 7.9245589, 47.4542217 ], + [ 7.9246106, 47.4545401 ], + [ 7.9247037, 47.4547843 ], + [ 7.9248301, 47.4550443 ], + [ 7.9249647, 47.4552566 ], + [ 7.9251292, 47.455472 ], + [ 7.925232, 47.4555928 ], + [ 7.9252842999999995, 47.4555736 ], + [ 7.9253376, 47.4555541 ], + [ 7.9254435999999995, 47.4555149 ], + [ 7.92596, 47.4554177 ], + [ 7.9262152, 47.4554941 ], + [ 7.9260355, 47.4550759 ], + [ 7.9260641, 47.4548006 ], + [ 7.9260754, 47.4545138 ], + [ 7.9261646, 47.4543032 ], + [ 7.9262575, 47.4540168 ], + [ 7.9263309, 47.4537929 ], + [ 7.9264191, 47.4536939 ], + [ 7.926856, 47.4537335 ], + [ 7.9270478, 47.4537703 ], + [ 7.9271138, 47.4537831 ], + [ 7.9272427, 47.4538079 ], + [ 7.9277304, 47.453934 ], + [ 7.9284077, 47.4540938 ], + [ 7.9285297, 47.4539805 ], + [ 7.9286293, 47.4539048 ], + [ 7.9287463, 47.4538657 ], + [ 7.9288142, 47.4538713 ], + [ 7.9289608, 47.4538561 ], + [ 7.9291902, 47.4538186 ], + [ 7.9293672, 47.453779 ], + [ 7.929515, 47.4537346 ], + [ 7.9299859999999995, 47.4535586 ], + [ 7.9301612, 47.4534735 ], + [ 7.9303147, 47.453375199999996 ], + [ 7.9306906999999995, 47.4530815 ], + [ 7.9308374, 47.4529758 ], + [ 7.9309781, 47.4528955 ], + [ 7.9311397, 47.4528349 ], + [ 7.9313436, 47.4527818 ], + [ 7.9315583, 47.4527404 ], + [ 7.9317519, 47.4527149 ], + [ 7.9319112, 47.4527162 ], + [ 7.9320740999999995, 47.4527417 ], + [ 7.9322265, 47.4527911 ], + [ 7.9323578, 47.4528584 ], + [ 7.9324532, 47.4527768 ], + [ 7.9332684, 47.4521119 ], + [ 7.9325958, 47.4516796 ], + [ 7.9320051, 47.4513755 ], + [ 7.9318363, 47.4512805 ], + [ 7.9317366, 47.4512957 ], + [ 7.9318187, 47.4512088 ], + [ 7.931829, 47.4512015 ], + [ 7.9318386, 47.4511938 ], + [ 7.9318475, 47.4511856 ], + [ 7.9318556000000005, 47.4511771 ], + [ 7.9318629, 47.4511683 ], + [ 7.9318694, 47.4511592 ], + [ 7.931875, 47.4511498 ] + ], + [ + [ 7.9302633, 47.4501966 ], + [ 7.9305853, 47.4503029 ], + [ 7.9302238, 47.4504664 ], + [ 7.9301398, 47.450373 ], + [ 7.9302633, 47.4501966 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns252", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Tal", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Tal", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Tal", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Tal", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.6567375, 47.2678692 ], + [ 8.6567288, 47.2677281 ], + [ 8.6567093, 47.2675874 ], + [ 8.656679, 47.2674477 ], + [ 8.6566381, 47.2673092 ], + [ 8.6565865, 47.2671723 ], + [ 8.6565244, 47.2670375 ], + [ 8.6564522, 47.2669051 ], + [ 8.6563698, 47.2667754 ], + [ 8.6562775, 47.2666489 ], + [ 8.6561757, 47.2665258 ], + [ 8.6560645, 47.2664065 ], + [ 8.6559443, 47.2662913 ], + [ 8.6558154, 47.2661806 ], + [ 8.6556782, 47.2660746 ], + [ 8.655533, 47.2659736 ], + [ 8.6553803, 47.265878 ], + [ 8.6552204, 47.2657879 ], + [ 8.6550538, 47.2657037 ], + [ 8.654881, 47.2656255 ], + [ 8.6547024, 47.2655535 ], + [ 8.6545185, 47.265488 ], + [ 8.6543298, 47.2654292 ], + [ 8.6541369, 47.2653772 ], + [ 8.6539402, 47.2653321 ], + [ 8.653740299999999, 47.2652941 ], + [ 8.6535378, 47.2652632 ], + [ 8.6533332, 47.2652396 ], + [ 8.653127, 47.2652233 ], + [ 8.6529199, 47.2652144 ], + [ 8.6527124, 47.2652129 ], + [ 8.652505, 47.2652188 ], + [ 8.6522984, 47.2652321 ], + [ 8.6520931, 47.2652527 ], + [ 8.6518896, 47.2652806 ], + [ 8.6516886, 47.2653157 ], + [ 8.6514906, 47.2653579 ], + [ 8.651296, 47.2654071 ], + [ 8.6511056, 47.2654631 ], + [ 8.6509196, 47.2655259 ], + [ 8.6507388, 47.2655953 ], + [ 8.6505636, 47.2656709 ], + [ 8.6503943, 47.2657527 ], + [ 8.650231699999999, 47.2658404 ], + [ 8.650076, 47.2659338 ], + [ 8.6499276, 47.2660327 ], + [ 8.6497871, 47.2661366 ], + [ 8.6496548, 47.2662455 ], + [ 8.649531, 47.2663589 ], + [ 8.6494161, 47.2664765 ], + [ 8.6493104, 47.2665981 ], + [ 8.6492142, 47.2667233 ], + [ 8.6491278, 47.2668517 ], + [ 8.6490513, 47.266983 ], + [ 8.6489851, 47.2671169 ], + [ 8.6489292, 47.267253 ], + [ 8.6488838, 47.2673908 ], + [ 8.6488492, 47.2675301 ], + [ 8.6488253, 47.2676704 ], + [ 8.6488122, 47.2678114 ], + [ 8.6488099, 47.2679527 ], + [ 8.6488186, 47.2680939 ], + [ 8.648838, 47.2682345 ], + [ 8.6488683, 47.2683743 ], + [ 8.6489093, 47.2685128 ], + [ 8.6489608, 47.2686496 ], + [ 8.649022800000001, 47.2687844 ], + [ 8.6490951, 47.2689169 ], + [ 8.6491775, 47.2690465 ], + [ 8.6492697, 47.2691731 ], + [ 8.6493716, 47.2692962 ], + [ 8.6494827, 47.2694155 ], + [ 8.6496029, 47.2695307 ], + [ 8.6497318, 47.2696414 ], + [ 8.649869, 47.2697474 ], + [ 8.6500142, 47.2698484 ], + [ 8.6501669, 47.269944 ], + [ 8.6503268, 47.2700341 ], + [ 8.6504934, 47.2701184 ], + [ 8.6506662, 47.2701966 ], + [ 8.6508448, 47.2702685 ], + [ 8.6510288, 47.270334 ], + [ 8.6512174, 47.2703928 ], + [ 8.6514104, 47.2704449 ], + [ 8.6516071, 47.27049 ], + [ 8.651807, 47.270528 ], + [ 8.6520095, 47.2705589 ], + [ 8.6522142, 47.2705825 ], + [ 8.6524203, 47.2705987 ], + [ 8.6526275, 47.2706076 ], + [ 8.652835, 47.2706092 ], + [ 8.6530424, 47.2706033 ], + [ 8.653249, 47.27059 ], + [ 8.6534544, 47.2705694 ], + [ 8.6536578, 47.2705415 ], + [ 8.6538589, 47.2705064 ], + [ 8.654057, 47.2704642 ], + [ 8.6542515, 47.270415 ], + [ 8.654442, 47.2703589 ], + [ 8.6546279, 47.2702961 ], + [ 8.6548088, 47.2702268 ], + [ 8.654984, 47.2701511 ], + [ 8.6551532, 47.2700693 ], + [ 8.6553159, 47.2699816 ], + [ 8.6554716, 47.2698882 ], + [ 8.65562, 47.2697893 ], + [ 8.6557605, 47.2696854 ], + [ 8.6558928, 47.2695765 ], + [ 8.6560166, 47.2694631 ], + [ 8.6561315, 47.2693455 ], + [ 8.6562372, 47.2692239 ], + [ 8.6563334, 47.2690987 ], + [ 8.6564198, 47.2689703 ], + [ 8.6564962, 47.2688389 ], + [ 8.6565625, 47.268705 ], + [ 8.6566183, 47.268569 ], + [ 8.6566636, 47.2684311 ], + [ 8.6566983, 47.2682918 ], + [ 8.6567222, 47.2681515 ], + [ 8.6567353, 47.2680105 ], + [ 8.6567375, 47.2678692 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "MEL0001", + "country" : "CHE", + "name" : [ + { + "text" : "Gefängnis Meilen", + "lang" : "de-CH" + }, + { + "text" : "Gefängnis Meilen", + "lang" : "fr-CH" + }, + { + "text" : "Gefängnis Meilen", + "lang" : "it-CH" + }, + { + "text" : "Gefängnis Meilen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "de-CH" + }, + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "fr-CH" + }, + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "it-CH" + }, + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "de-CH" + }, + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "fr-CH" + }, + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "it-CH" + }, + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Reno Berner", + "lang" : "de-CH" + }, + { + "text" : "Reno Berner", + "lang" : "fr-CH" + }, + { + "text" : "Reno Berner", + "lang" : "it-CH" + }, + { + "text" : "Reno Berner", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.zh.ch/de/direktion-der-justiz-und-des-innern/justizvollzug-wiedereingliederung.html", + "email" : "sicherheit-juwe@ji.zh.ch", + "phone" : "0041432583400", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT12H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5624081, 47.5258834 ], + [ 7.5624384, 47.5259983 ], + [ 7.5624484, 47.5260351 ], + [ 7.562459, 47.5260718 ], + [ 7.5624702, 47.5261084 ], + [ 7.5624819, 47.526145 ], + [ 7.5625309, 47.5261749 ], + [ 7.5641315, 47.5262667 ], + [ 7.5641672, 47.5262421 ], + [ 7.5641381, 47.5260481 ], + [ 7.5640902, 47.5260092 ], + [ 7.563546, 47.5259076 ], + [ 7.5631146000000005, 47.5258298 ], + [ 7.5629634, 47.5258076 ], + [ 7.5628097, 47.5257951 ], + [ 7.5626551, 47.5257922 ], + [ 7.5625007, 47.5257992 ], + [ 7.5624915999999995, 47.5258001 ], + [ 7.5624828, 47.5258016 ], + [ 7.5624741, 47.5258036 ], + [ 7.5624658, 47.5258061 ], + [ 7.5624576999999995, 47.525809100000004 ], + [ 7.5624500999999995, 47.5258125 ], + [ 7.562443, 47.5258164 ], + [ 7.5624363, 47.5258206 ], + [ 7.5624303, 47.5258253 ], + [ 7.5624248, 47.5258302 ], + [ 7.56242, 47.5258355 ], + [ 7.562411, 47.525840099999996 ], + [ 7.5624101, 47.5258424 ], + [ 7.5624078, 47.5258505 ], + [ 7.5624064, 47.5258587 ], + [ 7.562406, 47.5258669 ], + [ 7.5624066, 47.5258752 ], + [ 7.5624081, 47.5258834 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns138", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Fuchshag", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Fuchshag", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Fuchshag", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Fuchshag", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7958308, 47.1549442 ], + [ 7.7958244, 47.1548029 ], + [ 7.7958073, 47.1546622 ], + [ 7.7957792999999995, 47.1545222 ], + [ 7.7957406, 47.1543834 ], + [ 7.7956914, 47.1542462 ], + [ 7.7956316, 47.1541109 ], + [ 7.7955616, 47.1539779 ], + [ 7.7954815, 47.1538477 ], + [ 7.7953915, 47.1537204 ], + [ 7.7952918, 47.1535966 ], + [ 7.7951828, 47.1534765 ], + [ 7.7950648000000005, 47.1533604 ], + [ 7.7949379, 47.1532487 ], + [ 7.7948027, 47.1531417 ], + [ 7.7946595, 47.1530397 ], + [ 7.7945086, 47.1529429 ], + [ 7.7943505, 47.1528516 ], + [ 7.7941857, 47.1527661 ], + [ 7.7940145, 47.1526866 ], + [ 7.7938374, 47.1526134 ], + [ 7.793655, 47.1525465 ], + [ 7.7934676, 47.1524863 ], + [ 7.793276, 47.1524328 ], + [ 7.7930804, 47.1523863 ], + [ 7.7928816, 47.1523467 ], + [ 7.79268, 47.1523144 ], + [ 7.7924762, 47.1522893 ], + [ 7.7922708, 47.1522714 ], + [ 7.7920643, 47.152261 ], + [ 7.7918572, 47.1522579 ], + [ 7.7916502, 47.1522623 ], + [ 7.7914438, 47.152274 ], + [ 7.7912386, 47.152293 ], + [ 7.7910352, 47.1523194 ], + [ 7.790834, 47.152353 ], + [ 7.7906357, 47.1523937 ], + [ 7.7904408, 47.1524415 ], + [ 7.7902498, 47.1524961 ], + [ 7.7900633, 47.1525575 ], + [ 7.7898818, 47.1526255 ], + [ 7.7897057, 47.1526999 ], + [ 7.7895354999999995, 47.1527804 ], + [ 7.7893718, 47.1528669 ], + [ 7.7892149, 47.1529591 ], + [ 7.7890653, 47.1530568 ], + [ 7.7889234, 47.1531597 ], + [ 7.7887896, 47.1532676 ], + [ 7.7886643, 47.15338 ], + [ 7.7885478, 47.1534968 ], + [ 7.7884402999999995, 47.1536176 ], + [ 7.7883423, 47.153742 ], + [ 7.788254, 47.1538698 ], + [ 7.7881756, 47.1540006 ], + [ 7.7881073, 47.154134 ], + [ 7.7880494, 47.1542696 ], + [ 7.788002, 47.1544071 ], + [ 7.7879651, 47.1545461 ], + [ 7.787939, 47.1546863 ], + [ 7.7879237, 47.1548272 ], + [ 7.7879192, 47.1549684 ], + [ 7.7879255, 47.1551096 ], + [ 7.7879427, 47.1552504 ], + [ 7.7879705999999995, 47.1553904 ], + [ 7.7880093, 47.1555292 ], + [ 7.7880585, 47.1556664 ], + [ 7.7881181999999995, 47.1558017 ], + [ 7.7881882000000004, 47.1559346 ], + [ 7.7882683, 47.1560649 ], + [ 7.7883583, 47.1561921 ], + [ 7.7884579, 47.156316 ], + [ 7.7885669, 47.1564361 ], + [ 7.788685, 47.1565522 ], + [ 7.7888117999999995, 47.1566639 ], + [ 7.788947, 47.1567709 ], + [ 7.7890903, 47.1568729 ], + [ 7.7892411, 47.1569697 ], + [ 7.7893992, 47.157061 ], + [ 7.7895641, 47.1571465 ], + [ 7.7897353, 47.157226 ], + [ 7.7899124, 47.1572993 ], + [ 7.7900948, 47.1573661 ], + [ 7.7902822, 47.1574264 ], + [ 7.7904739, 47.1574799 ], + [ 7.7906694, 47.1575264 ], + [ 7.7908683, 47.1575659 ], + [ 7.7910699, 47.1575983 ], + [ 7.7912737, 47.1576234 ], + [ 7.7914791, 47.1576412 ], + [ 7.7916857, 47.1576517 ], + [ 7.7918928, 47.1576548 ], + [ 7.7920998, 47.1576504 ], + [ 7.7923062, 47.1576387 ], + [ 7.7925114, 47.1576196 ], + [ 7.7927149, 47.1575933 ], + [ 7.792916, 47.1575597 ], + [ 7.7931144, 47.1575189 ], + [ 7.7933093, 47.1574712 ], + [ 7.7935003, 47.1574165 ], + [ 7.7936868, 47.1573551 ], + [ 7.7938684, 47.1572872 ], + [ 7.7940445, 47.1572128 ], + [ 7.7942146, 47.1571323 ], + [ 7.7943784, 47.1570457 ], + [ 7.7945352, 47.1569535 ], + [ 7.7946848, 47.1568558 ], + [ 7.7948267, 47.1567529 ], + [ 7.7949605, 47.156645 ], + [ 7.7950858, 47.1565326 ], + [ 7.7952024, 47.1564158 ], + [ 7.7953098, 47.156295 ], + [ 7.7954077999999996, 47.1561705 ], + [ 7.7954961, 47.1560428 ], + [ 7.7955745, 47.155912 ], + [ 7.7956427, 47.1557786 ], + [ 7.7957007, 47.155643 ], + [ 7.7957481, 47.1555055 ], + [ 7.7957849, 47.1553664 ], + [ 7.795811, 47.1552263 ], + [ 7.7958263, 47.1550854 ], + [ 7.7958308, 47.1549442 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0063", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Lindenholz", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Lindenholz", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Lindenholz", + "lang" : "it-CH" + }, + { + "text" : "Substation Lindenholz", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.9603653, 46.0838878 ], + [ 7.9603586, 46.0837466 ], + [ 7.9603414, 46.0836058 ], + [ 7.9603135, 46.0834659 ], + [ 7.9602752, 46.0833271 ], + [ 7.9602265, 46.08319 ], + [ 7.9601675, 46.0830548 ], + [ 7.9600985, 46.0829219 ], + [ 7.9600195, 46.0827917 ], + [ 7.9599309, 46.0826646 ], + [ 7.9598329, 46.0825409 ], + [ 7.9597256, 46.0824209 ], + [ 7.9596095, 46.082305 ], + [ 7.9594849, 46.0821935 ], + [ 7.959352, 46.0820867 ], + [ 7.9592112, 46.0819849 ], + [ 7.959063, 46.0818883 ], + [ 7.9589078, 46.0817972 ], + [ 7.9587459, 46.081712 ], + [ 7.9585778, 46.0816327 ], + [ 7.958404, 46.0815597 ], + [ 7.9582249, 46.0814931 ], + [ 7.9580411, 46.0814331 ], + [ 7.957853, 46.0813799 ], + [ 7.9576612, 46.0813337 ], + [ 7.9574662, 46.0812944 ], + [ 7.9572684, 46.0812624 ], + [ 7.9570685999999995, 46.0812375 ], + [ 7.9568671, 46.08122 ], + [ 7.9566646, 46.0812098 ], + [ 7.9564616, 46.0812071 ], + [ 7.9562587, 46.0812117 ], + [ 7.9560564, 46.0812237 ], + [ 7.9558553, 46.0812431 ], + [ 7.9556559, 46.0812698 ], + [ 7.9554588, 46.0813036 ], + [ 7.9552645, 46.0813447 ], + [ 7.9550736, 46.0813927 ], + [ 7.9548865, 46.0814476 ], + [ 7.9547038, 46.0815093 ], + [ 7.9545261, 46.0815775 ], + [ 7.9543536, 46.0816521 ], + [ 7.9541871, 46.0817329 ], + [ 7.9540268, 46.0818196 ], + [ 7.9538733, 46.0819121 ], + [ 7.953727, 46.08201 ], + [ 7.9535882, 46.0821132 ], + [ 7.9534573, 46.0822212 ], + [ 7.9533348, 46.0823338 ], + [ 7.9532209, 46.0824508 ], + [ 7.9531159, 46.0825717 ], + [ 7.9530202, 46.0826963 ], + [ 7.952934, 46.0828243 ], + [ 7.9528576, 46.0829551 ], + [ 7.9527909999999995, 46.0830886 ], + [ 7.9527346, 46.0832244 ], + [ 7.9526885, 46.0833619 ], + [ 7.9526528, 46.083501 ], + [ 7.9526277, 46.0836412 ], + [ 7.9526131, 46.0837821 ], + [ 7.9526091, 46.0839234 ], + [ 7.9526157, 46.0840646 ], + [ 7.952633, 46.0842054 ], + [ 7.9526608, 46.0843453 ], + [ 7.9526991, 46.0844841 ], + [ 7.9527478, 46.0846213 ], + [ 7.9528067, 46.0847565 ], + [ 7.9528758, 46.0848893 ], + [ 7.9529547, 46.0850195 ], + [ 7.9530433, 46.0851466 ], + [ 7.9531413, 46.0852703 ], + [ 7.9532486, 46.0853903 ], + [ 7.9533647, 46.0855062 ], + [ 7.9534893, 46.0856177 ], + [ 7.9536222, 46.0857246 ], + [ 7.9537629, 46.0858264 ], + [ 7.9539111, 46.085923 ], + [ 7.9540664, 46.0860141 ], + [ 7.9542283, 46.0860993 ], + [ 7.9543964, 46.0861786 ], + [ 7.9545702, 46.0862516 ], + [ 7.9547493, 46.0863182 ], + [ 7.9549331, 46.0863782 ], + [ 7.9551212, 46.0864314 ], + [ 7.955313, 46.0864777 ], + [ 7.9555081, 46.0865169 ], + [ 7.9557058, 46.086549 ], + [ 7.9559057, 46.0865738 ], + [ 7.9561072, 46.0865914 ], + [ 7.9563097, 46.0866015 ], + [ 7.9565128, 46.0866043 ], + [ 7.9567157, 46.0865996 ], + [ 7.956918, 46.0865876 ], + [ 7.9571191, 46.0865683 ], + [ 7.9573184999999995, 46.0865416 ], + [ 7.9575157, 46.0865077 ], + [ 7.9577100000000005, 46.0864667 ], + [ 7.9579009, 46.0864186 ], + [ 7.958088, 46.0863637 ], + [ 7.9582707, 46.0863021 ], + [ 7.9584485, 46.0862338 ], + [ 7.9586209, 46.0861592 ], + [ 7.9587875, 46.0860784 ], + [ 7.9589476999999995, 46.0859917 ], + [ 7.9591012, 46.0858992 ], + [ 7.9592476, 46.0858013 ], + [ 7.9593864, 46.0856981 ], + [ 7.9595172, 46.0855901 ], + [ 7.9596398, 46.0854774 ], + [ 7.9597536, 46.0853605 ], + [ 7.9598586000000005, 46.0852395 ], + [ 7.9599543, 46.0851149 ], + [ 7.9600405, 46.084987 ], + [ 7.9601169, 46.0848561 ], + [ 7.9601834, 46.0847226 ], + [ 7.9602398, 46.0845869 ], + [ 7.9602859, 46.0844493 ], + [ 7.9603216, 46.0843102 ], + [ 7.9603467, 46.08417 ], + [ 7.9603613, 46.0840291 ], + [ 7.9603653, 46.0838878 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0132", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Zermeiggern", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Zermeiggern", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Zermeiggern", + "lang" : "it-CH" + }, + { + "text" : "Substation Zermeiggern", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.4553004, 47.4806197 ], + [ 8.4552922, 47.4804785 ], + [ 8.4552732, 47.4803379 ], + [ 8.4552433, 47.4801981 ], + [ 8.4552027, 47.4800595 ], + [ 8.4551514, 47.4799226 ], + [ 8.4550896, 47.4797877 ], + [ 8.4550175, 47.4796551 ], + [ 8.4549353, 47.4795253 ], + [ 8.4548432, 47.4793986 ], + [ 8.4547414, 47.4792754 ], + [ 8.4546302, 47.4791559 ], + [ 8.45451, 47.479040499999996 ], + [ 8.454381, 47.4789296 ], + [ 8.4542436, 47.4788234 ], + [ 8.4540983, 47.4787222 ], + [ 8.4539453, 47.4786263 ], + [ 8.4537851, 47.4785359 ], + [ 8.4536182, 47.4784514 ], + [ 8.4534449, 47.4783729 ], + [ 8.4532659, 47.4783006 ], + [ 8.4530815, 47.4782348 ], + [ 8.4528923, 47.4781757 ], + [ 8.4526988, 47.4781233 ], + [ 8.4525015, 47.4780779 ], + [ 8.452300900000001, 47.4780395 ], + [ 8.4520977, 47.4780083 ], + [ 8.4518924, 47.4779844 ], + [ 8.4516855, 47.4779677 ], + [ 8.4514775, 47.4779585 ], + [ 8.4512692, 47.4779566 ], + [ 8.451061, 47.4779621 ], + [ 8.4508535, 47.477975 ], + [ 8.4506473, 47.4779953 ], + [ 8.4504429, 47.4780228 ], + [ 8.4502409, 47.4780575 ], + [ 8.4500419, 47.4780994 ], + [ 8.4498464, 47.4781483 ], + [ 8.449655, 47.478204 ], + [ 8.4494681, 47.4782665 ], + [ 8.4492863, 47.4783355 ], + [ 8.44911, 47.4784108 ], + [ 8.4489398, 47.4784923 ], + [ 8.4487762, 47.4785797 ], + [ 8.4486195, 47.4786729 ], + [ 8.4484702, 47.4787714 ], + [ 8.4483287, 47.4788751 ], + [ 8.4481955, 47.4789837 ], + [ 8.4480708, 47.4790969 ], + [ 8.447955, 47.4792143 ], + [ 8.4478484, 47.4793357 ], + [ 8.4477513, 47.4794607 ], + [ 8.447664, 47.479589 ], + [ 8.4475868, 47.4797201 ], + [ 8.4475197, 47.4798539 ], + [ 8.4474632, 47.4799899 ], + [ 8.4474171, 47.4801276 ], + [ 8.4473818, 47.4802668 ], + [ 8.4473572, 47.4804071 ], + [ 8.4473436, 47.4805481 ], + [ 8.4473408, 47.4806893 ], + [ 8.4473489, 47.4808305 ], + [ 8.4473679, 47.4809711 ], + [ 8.4473978, 47.4811109 ], + [ 8.4474384, 47.4812495 ], + [ 8.4474896, 47.4813864 ], + [ 8.4475514, 47.4815213 ], + [ 8.4476235, 47.4816539 ], + [ 8.4477057, 47.4817837 ], + [ 8.4477978, 47.4819104 ], + [ 8.4478996, 47.4820337 ], + [ 8.4480107, 47.4821531 ], + [ 8.448131, 47.4822685 ], + [ 8.4482599, 47.4823795 ], + [ 8.4483973, 47.4824857 ], + [ 8.4485427, 47.4825869 ], + [ 8.4486957, 47.4826828 ], + [ 8.4488559, 47.4827732 ], + [ 8.4490228, 47.4828577 ], + [ 8.449196, 47.4829362 ], + [ 8.4493751, 47.4830085 ], + [ 8.4495595, 47.4830743 ], + [ 8.4497487, 47.4831334 ], + [ 8.4499423, 47.4831858 ], + [ 8.4501396, 47.4832312 ], + [ 8.4503401, 47.4832696 ], + [ 8.4505434, 47.4833008 ], + [ 8.4507487, 47.4833248 ], + [ 8.4509557, 47.4833414 ], + [ 8.4511636, 47.4833507 ], + [ 8.451372, 47.4833525 ], + [ 8.4515802, 47.483347 ], + [ 8.4517877, 47.4833341 ], + [ 8.4519939, 47.4833139 ], + [ 8.4521983, 47.4832863 ], + [ 8.4524003, 47.4832516 ], + [ 8.4525993, 47.4832097 ], + [ 8.4527948, 47.4831608 ], + [ 8.4529863, 47.4831051 ], + [ 8.4531732, 47.4830426 ], + [ 8.4533551, 47.4829736 ], + [ 8.4535313, 47.4828983 ], + [ 8.4537015, 47.4828168 ], + [ 8.4538652, 47.4827293 ], + [ 8.4540219, 47.4826362 ], + [ 8.4541711, 47.4825377 ], + [ 8.4543126, 47.4824339 ], + [ 8.4544459, 47.4823254 ], + [ 8.4545706, 47.4822122 ], + [ 8.4546864, 47.4820947 ], + [ 8.4547929, 47.4819733 ], + [ 8.45489, 47.4818483 ], + [ 8.4549773, 47.4817201 ], + [ 8.4550545, 47.4815889 ], + [ 8.4551215, 47.4814551 ], + [ 8.4551781, 47.4813192 ], + [ 8.4552241, 47.4811814 ], + [ 8.4552594, 47.4810422 ], + [ 8.4552839, 47.4809019 ], + [ 8.4552976, 47.4807609 ], + [ 8.4553004, 47.4806197 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "DID0001", + "country" : "CHE", + "name" : [ + { + "text" : "Gefängnis Dielsdorf", + "lang" : "de-CH" + }, + { + "text" : "Gefängnis Dielsdorf", + "lang" : "fr-CH" + }, + { + "text" : "Gefängnis Dielsdorf", + "lang" : "it-CH" + }, + { + "text" : "Gefängnis Dielsdorf", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "de-CH" + }, + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "fr-CH" + }, + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "it-CH" + }, + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "de-CH" + }, + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "fr-CH" + }, + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "it-CH" + }, + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Reno Berner", + "lang" : "de-CH" + }, + { + "text" : "Reno Berner", + "lang" : "fr-CH" + }, + { + "text" : "Reno Berner", + "lang" : "it-CH" + }, + { + "text" : "Reno Berner", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.zh.ch/de/direktion-der-justiz-und-des-innern/justizvollzug-wiedereingliederung.html", + "email" : "sicherheit-juwe@ji.zh.ch", + "phone" : "0041432583400", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT12H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.5476583, 47.0136914 ], + [ 9.5474758, 47.01134 ], + [ 9.5471135, 47.0089985 ], + [ 9.5465727, 47.0066731 ], + [ 9.5458547, 47.0043702 ], + [ 9.5449616, 47.0020962 ], + [ 9.5438959, 46.9998573 ], + [ 9.542660399999999, 46.9976596 ], + [ 9.541258599999999, 46.9955092 ], + [ 9.5396943, 46.9934118 ], + [ 9.5379719, 46.9913733 ], + [ 9.5360961, 46.9893993 ], + [ 9.534072, 46.9874951 ], + [ 9.5319052, 46.985666 ], + [ 9.5296016, 46.9839169 ], + [ 9.527167500000001, 46.9822527 ], + [ 9.5246097, 46.9806778 ], + [ 9.5219351, 46.9791967 ], + [ 9.519151, 46.9778134 ], + [ 9.5162651, 46.9765316 ], + [ 9.5132853, 46.9753549 ], + [ 9.5102197, 46.9742864 ], + [ 9.5070768, 46.9733291 ], + [ 9.503865, 46.9724856 ], + [ 9.5005932, 46.9717583 ], + [ 9.4972704, 46.9711491 ], + [ 9.4939057, 46.9706596 ], + [ 9.4905081, 46.9702912 ], + [ 9.4870871, 46.970045 ], + [ 9.483652, 46.9699216 ], + [ 9.4802122, 46.9699212 ], + [ 9.476777, 46.9700441 ], + [ 9.4733559, 46.9702897 ], + [ 9.4699583, 46.9706574 ], + [ 9.4665933, 46.9711463 ], + [ 9.4632703, 46.9717549 ], + [ 9.4599982, 46.9724816 ], + [ 9.4567861, 46.9733245 ], + [ 9.4536428, 46.9742812 ], + [ 9.4505768, 46.9753491 ], + [ 9.4475965, 46.9765253 ], + [ 9.4447101, 46.9778066 ], + [ 9.4419255, 46.9791894 ], + [ 9.4392504, 46.9806701 ], + [ 9.4366919, 46.9822444 ], + [ 9.4342572, 46.9839082 ], + [ 9.4319529, 46.9856569 ], + [ 9.4297854, 46.9874856 ], + [ 9.4277606, 46.9893894 ], + [ 9.425884, 46.9913631 ], + [ 9.4241608, 46.9934013 ], + [ 9.4225957, 46.9954984 ], + [ 9.4211931, 46.9976486 ], + [ 9.4199567, 46.999846 ], + [ 9.4188901, 47.0020848 ], + [ 9.4179961, 47.0043586 ], + [ 9.4172773, 47.0066613 ], + [ 9.4167355, 47.0089866 ], + [ 9.4163724, 47.0113281 ], + [ 9.4161888, 47.0136794 ], + [ 9.4161855, 47.016034 ], + [ 9.4163624, 47.0183855 ], + [ 9.4167189, 47.0207275 ], + [ 9.4172543, 47.0230535 ], + [ 9.417967, 47.0253571 ], + [ 9.4188551, 47.0276321 ], + [ 9.4199162, 47.0298722 ], + [ 9.4211474, 47.0320712 ], + [ 9.4225453, 47.0342231 ], + [ 9.4241062, 47.036322 ], + [ 9.4258257, 47.0383622 ], + [ 9.4276992, 47.040338 ], + [ 9.4297215, 47.0422441 ], + [ 9.4318871, 47.0440751 ], + [ 9.4341901, 47.0458261 ], + [ 9.4366241, 47.0474923 ], + [ 9.4391826, 47.0490691 ], + [ 9.4418584, 47.0505521 ], + [ 9.4446442, 47.0519373 ], + [ 9.4475325, 47.0532209 ], + [ 9.4505152, 47.0543993 ], + [ 9.4535842, 47.0554693 ], + [ 9.456731, 47.0564281 ], + [ 9.459947, 47.0572728 ], + [ 9.4632234, 47.0580013 ], + [ 9.4665512, 47.0586115 ], + [ 9.4699213, 47.0591018 ], + [ 9.4733243, 47.0594708 ], + [ 9.4767509, 47.0597174 ], + [ 9.4801918, 47.0598411 ], + [ 9.4836374, 47.0598414 ], + [ 9.4870783, 47.0597184 ], + [ 9.490505, 47.0594723 ], + [ 9.4939082, 47.059104 ], + [ 9.4972784, 47.0586143 ], + [ 9.5006065, 47.0580047 ], + [ 9.5038832, 47.0572768 ], + [ 9.5070996, 47.0564327 ], + [ 9.510246800000001, 47.0554745 ], + [ 9.5133162, 47.054405 ], + [ 9.5162993, 47.0532271 ], + [ 9.5191881, 47.0519441 ], + [ 9.5219744, 47.0505594 ], + [ 9.5246508, 47.0490768 ], + [ 9.5272099, 47.0475005 ], + [ 9.5296446, 47.0458348 ], + [ 9.5319483, 47.0440842 ], + [ 9.5341146, 47.0422536 ], + [ 9.5361376, 47.0403479 ], + [ 9.5380119, 47.0383724 ], + [ 9.5397322, 47.0363325 ], + [ 9.5412939, 47.0342339 ], + [ 9.5426927, 47.0320822 ], + [ 9.5439247, 47.0298835 ], + [ 9.544986699999999, 47.0276436 ], + [ 9.5458756, 47.0253688 ], + [ 9.5465892, 47.0230653 ], + [ 9.5471255, 47.0207394 ], + [ 9.547483, 47.0183975 ], + [ 9.5476608, 47.016046 ], + [ 9.5476583, 47.0136914 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZE001", + "country" : "CHE", + "name" : [ + { + "text" : "LSZE Bad Ragaz", + "lang" : "de-CH" + }, + { + "text" : "LSZE Bad Ragaz", + "lang" : "fr-CH" + }, + { + "text" : "LSZE Bad Ragaz", + "lang" : "it-CH" + }, + { + "text" : "LSZE Bad Ragaz", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Docair AG Bad Ragaz", + "lang" : "de-CH" + }, + { + "text" : "Docair AG Bad Ragaz", + "lang" : "fr-CH" + }, + { + "text" : "Docair AG Bad Ragaz", + "lang" : "it-CH" + }, + { + "text" : "Docair AG Bad Ragaz", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Carlo Ronchetti", + "lang" : "de-CH" + }, + { + "text" : "Carlo Ronchetti", + "lang" : "fr-CH" + }, + { + "text" : "Carlo Ronchetti", + "lang" : "it-CH" + }, + { + "text" : "Carlo Ronchetti", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.lsze.ch/kontakte/index.html", + "email" : "carlo.ronchetti@bluewin.ch", + "phone" : "0041794009318", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P02DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.6934078, 46.669563 ], + [ 9.6933965, 46.6694219 ], + [ 9.693374500000001, 46.6692815 ], + [ 9.6933419, 46.669142 ], + [ 9.6932987, 46.6690038 ], + [ 9.6932451, 46.6688675 ], + [ 9.6931812, 46.6687332 ], + [ 9.6931071, 46.6686014 ], + [ 9.6930232, 46.6684725 ], + [ 9.6929295, 46.6683468 ], + [ 9.6928264, 46.6682246 ], + [ 9.6927142, 46.6681063 ], + [ 9.6925932, 46.6679922 ], + [ 9.6924636, 46.6678827 ], + [ 9.6923259, 46.6677779 ], + [ 9.6921804, 46.6676783 ], + [ 9.6920275, 46.667584 ], + [ 9.6918677, 46.6674954 ], + [ 9.6917013, 46.6674126 ], + [ 9.6915289, 46.667336 ], + [ 9.6913509, 46.6672656 ], + [ 9.6911678, 46.6672018 ], + [ 9.6909801, 46.6671447 ], + [ 9.6907883, 46.6670944 ], + [ 9.690593, 46.667051 ], + [ 9.6903946, 46.6670148 ], + [ 9.6901938, 46.6669858 ], + [ 9.689991, 46.666964 ], + [ 9.6897868, 46.6669496 ], + [ 9.6895819, 46.6669426 ], + [ 9.6893766, 46.6669429 ], + [ 9.6891717, 46.6669507 ], + [ 9.6889676, 46.6669658 ], + [ 9.688765, 46.6669883 ], + [ 9.6885644, 46.667018 ], + [ 9.6883663, 46.6670549 ], + [ 9.6881712, 46.6670989 ], + [ 9.6879798, 46.6671499 ], + [ 9.6877925, 46.6672076 ], + [ 9.6876099, 46.6672721 ], + [ 9.6874324, 46.667343 ], + [ 9.6872606, 46.6674203 ], + [ 9.6870948, 46.6675036 ], + [ 9.6869357, 46.6675928 ], + [ 9.6867835, 46.6676876 ], + [ 9.6866387, 46.6677877 ], + [ 9.6865018, 46.667893 ], + [ 9.686373, 46.668003 ], + [ 9.6862528, 46.6681175 ], + [ 9.6861414, 46.6682362 ], + [ 9.6860392, 46.6683587 ], + [ 9.6859465, 46.6684848 ], + [ 9.6858635, 46.668614 ], + [ 9.6857904, 46.668746 ], + [ 9.6857275, 46.6688805 ], + [ 9.6856749, 46.669017 ], + [ 9.6856327, 46.6691553 ], + [ 9.6856011, 46.6692949 ], + [ 9.6855801, 46.6694354 ], + [ 9.6855699, 46.6695766 ], + [ 9.6855704, 46.6697178 ], + [ 9.6855816, 46.6698589 ], + [ 9.6856036, 46.6699994 ], + [ 9.6856362, 46.6701389 ], + [ 9.6856794, 46.670277 ], + [ 9.685732999999999, 46.6704134 ], + [ 9.6857969, 46.6705477 ], + [ 9.6858709, 46.6706794 ], + [ 9.6859549, 46.6708084 ], + [ 9.6860485, 46.6709341 ], + [ 9.6861516, 46.6710563 ], + [ 9.6862638, 46.6711746 ], + [ 9.6863848, 46.6712887 ], + [ 9.6865144, 46.6713983 ], + [ 9.6866521, 46.671503 ], + [ 9.6867976, 46.6716027 ], + [ 9.6869505, 46.6716969 ], + [ 9.6871103, 46.6717856 ], + [ 9.6872766, 46.6718683 ], + [ 9.6874491, 46.671945 ], + [ 9.6876271, 46.6720153 ], + [ 9.6878102, 46.6720792 ], + [ 9.6879979, 46.6721363 ], + [ 9.6881897, 46.6721866 ], + [ 9.6883851, 46.6722299 ], + [ 9.6885834, 46.6722662 ], + [ 9.6887843, 46.6722952 ], + [ 9.6889871, 46.672317 ], + [ 9.6891913, 46.6723314 ], + [ 9.6893963, 46.6723384 ], + [ 9.6896016, 46.672338 ], + [ 9.6898065, 46.6723303 ], + [ 9.6900106, 46.6723152 ], + [ 9.6902132, 46.6722927 ], + [ 9.6904139, 46.672263 ], + [ 9.690612, 46.6722261 ], + [ 9.6908071, 46.6721821 ], + [ 9.6909985, 46.6721311 ], + [ 9.6911858, 46.6720733 ], + [ 9.6913684, 46.6720089 ], + [ 9.6915459, 46.6719379 ], + [ 9.6917178, 46.6718607 ], + [ 9.6918835, 46.6717773 ], + [ 9.6920427, 46.6716881 ], + [ 9.6921949, 46.6715933 ], + [ 9.6923396, 46.6714932 ], + [ 9.692476599999999, 46.6713879 ], + [ 9.6926053, 46.6712779 ], + [ 9.6927256, 46.6711634 ], + [ 9.6928369, 46.6710447 ], + [ 9.6929391, 46.6709222 ], + [ 9.6930318, 46.6707961 ], + [ 9.6931148, 46.6706669 ], + [ 9.6931879, 46.6705349 ], + [ 9.6932508, 46.6704004 ], + [ 9.6933034, 46.6702638 ], + [ 9.6933455, 46.6701256 ], + [ 9.6933771, 46.6699859 ], + [ 9.6933981, 46.6698454 ], + [ 9.6934083, 46.6697043 ], + [ 9.6934078, 46.669563 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0035", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Filisur", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Filisur", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Filisur", + "lang" : "it-CH" + }, + { + "text" : "Substation Filisur", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.485351, 47.0132519 ], + [ 9.4805431, 47.0151058 ], + [ 9.4804638, 47.0150918 ], + [ 9.4802232, 47.0148039 ], + [ 9.4797317, 47.0149851 ], + [ 9.4800061, 47.0153134 ], + [ 9.4783926, 47.0159349 ], + [ 9.4781975, 47.0160335 ], + [ 9.478598999999999, 47.0165206 ], + [ 9.4816111, 47.0153626 ], + [ 9.4817514, 47.0153086 ], + [ 9.4821941, 47.0156544 ], + [ 9.4843983, 47.0148068 ], + [ 9.4846891, 47.0150322 ], + [ 9.4856124, 47.0145226 ], + [ 9.4854336, 47.0143702 ], + [ 9.4860728, 47.0140573 ], + [ 9.485351, 47.0132519 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZE002", + "country" : "CHE", + "name" : [ + { + "text" : "LSZE Bad Ragaz (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSZE Bad Ragaz (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSZE Bad Ragaz (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSZE Bad Ragaz (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Docair AG Bad Ragaz", + "lang" : "de-CH" + }, + { + "text" : "Docair AG Bad Ragaz", + "lang" : "fr-CH" + }, + { + "text" : "Docair AG Bad Ragaz", + "lang" : "it-CH" + }, + { + "text" : "Docair AG Bad Ragaz", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Carlo Ronchetti", + "lang" : "de-CH" + }, + { + "text" : "Carlo Ronchetti", + "lang" : "fr-CH" + }, + { + "text" : "Carlo Ronchetti", + "lang" : "it-CH" + }, + { + "text" : "Carlo Ronchetti", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.lsze.ch/kontakte/index.html", + "email" : "carlo.ronchetti@bluewin.ch", + "phone" : "0041794009318", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P02DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.2550736, 46.3615297 ], + [ 6.2522984, 46.3616517 ], + [ 6.2489198, 46.3619236 ], + [ 6.2455664, 46.3623175 ], + [ 6.2422473, 46.3628322 ], + [ 6.2389716, 46.3634664 ], + [ 6.2357482, 46.3642183 ], + [ 6.232586, 46.3650859 ], + [ 6.2294936, 46.3660668 ], + [ 6.2264795, 46.3671583 ], + [ 6.2235519, 46.3683574 ], + [ 6.2207189, 46.3696608 ], + [ 6.2179881, 46.3710651 ], + [ 6.2153671, 46.3725663 ], + [ 6.212863, 46.3741603 ], + [ 6.2104828, 46.3758428 ], + [ 6.2082329, 46.3776092 ], + [ 6.2061195, 46.3794546 ], + [ 6.2041484, 46.381374 ], + [ 6.202325, 46.3833621 ], + [ 6.2006544, 46.3854136 ], + [ 6.1991411, 46.3875227 ], + [ 6.1977892, 46.3896837 ], + [ 6.1966025, 46.391890599999996 ], + [ 6.1955843, 46.3941376 ], + [ 6.1947374, 46.3964183 ], + [ 6.194064, 46.3987265 ], + [ 6.1935662, 46.401056 ], + [ 6.1932452, 46.4034003 ], + [ 6.1931021, 46.405753 ], + [ 6.1931371, 46.4081076 ], + [ 6.1933502, 46.4104578 ], + [ 6.1937408, 46.412797 ], + [ 6.194308, 46.4151189 ], + [ 6.1950502, 46.417417 ], + [ 6.1959653, 46.4196852 ], + [ 6.1970509, 46.4219171 ], + [ 6.198304, 46.4241066 ], + [ 6.1997212, 46.4262478 ], + [ 6.2012986, 46.4283347 ], + [ 6.2030319, 46.4303617 ], + [ 6.2049165, 46.4323231 ], + [ 6.2069469999999995, 46.4342136 ], + [ 6.209118, 46.436028 ], + [ 6.2114235, 46.4377613 ], + [ 6.2138573, 46.4394087 ], + [ 6.2164125, 46.4409658 ], + [ 6.2190823, 46.4424282 ], + [ 6.2218593, 46.443792 ], + [ 6.2247358, 46.4450534 ], + [ 6.227704, 46.4462089 ], + [ 6.2307558, 46.4472553 ], + [ 6.2338827, 46.4481898 ], + [ 6.2370762, 46.4490099 ], + [ 6.2403276, 46.4497132 ], + [ 6.2436277, 46.4502978 ], + [ 6.2469677, 46.4507622 ], + [ 6.2503383, 46.4511049 ], + [ 6.2537303, 46.4513252 ], + [ 6.2571343, 46.4514224 ], + [ 6.260541, 46.4513962 ], + [ 6.2639411, 46.4512467 ], + [ 6.2673251, 46.4509744 ], + [ 6.2706839, 46.4505799 ], + [ 6.2740081, 46.4500643 ], + [ 6.2772886, 46.4494291 ], + [ 6.2805165, 46.448676 ], + [ 6.2836828, 46.4478071 ], + [ 6.2867789, 46.4468247 ], + [ 6.2897962, 46.4457316 ], + [ 6.2927265, 46.4445308 ], + [ 6.2955617, 46.4432255 ], + [ 6.2982941, 46.4418194 ], + [ 6.3009162, 46.4403163 ], + [ 6.3034207, 46.4387203 ], + [ 6.3058008, 46.4370359 ], + [ 6.30805, 46.4352676 ], + [ 6.3101621, 46.4334202 ], + [ 6.3121313, 46.431499 ], + [ 6.3139523, 46.4295091 ], + [ 6.31562, 46.427456 ], + [ 6.3171299, 46.4253454 ], + [ 6.3184778999999995, 46.423183 ], + [ 6.3196603, 46.4209747 ], + [ 6.3206739, 46.4187267 ], + [ 6.3215159, 46.416445 ], + [ 6.322184, 46.414136 ], + [ 6.3226764, 46.411806 ], + [ 6.3229918, 46.4094614 ], + [ 6.3231294, 46.4071085 ], + [ 6.3230888, 46.4047539 ], + [ 6.32287, 46.402404 ], + [ 6.3224739, 46.4000652 ], + [ 6.3219014, 46.397744 ], + [ 6.3214965, 46.3964993 ], + [ 6.2929626, 46.3814874 ], + [ 6.2680776, 46.3683825 ], + [ 6.2550736, 46.3615297 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSGP001", + "country" : "CHE", + "name" : [ + { + "text" : "LSGP La Côte", + "lang" : "de-CH" + }, + { + "text" : "LSGP La Côte", + "lang" : "fr-CH" + }, + { + "text" : "LSGP La Côte", + "lang" : "it-CH" + }, + { + "text" : "LSGP La Côte", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Aérodrome de la Côte", + "lang" : "de-CH" + }, + { + "text" : "Aérodrome de la Côte", + "lang" : "fr-CH" + }, + { + "text" : "Aérodrome de la Côte", + "lang" : "it-CH" + }, + { + "text" : "Aérodrome de la Côte", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Chef d'aérodrome", + "lang" : "de-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "fr-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "it-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Marc Kleiner", + "lang" : "de-CH" + }, + { + "text" : "Marc Kleiner", + "lang" : "fr-CH" + }, + { + "text" : "Marc Kleiner", + "lang" : "it-CH" + }, + { + "text" : "Marc Kleiner", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.lsgp.ch/", + "email" : "info@lsgp.ch", + "phone" : "0041223630990", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.4737903, 47.576361 ], + [ 8.4738283, 47.5763614 ], + [ 8.4740369, 47.5763558 ], + [ 8.4742447, 47.5763429 ], + [ 8.4744513, 47.5763226 ], + [ 8.4746561, 47.576295 ], + [ 8.4748584, 47.5762602 ], + [ 8.4750577, 47.5762183 ], + [ 8.4752536, 47.5761694 ], + [ 8.4754453, 47.5761137 ], + [ 8.4756325, 47.5760512 ], + [ 8.4758147, 47.5759821 ], + [ 8.4759912, 47.5759067 ], + [ 8.4761617, 47.5758252 ], + [ 8.4763256, 47.5757377 ], + [ 8.4764825, 47.5756446 ], + [ 8.476632, 47.575546 ], + [ 8.4767737, 47.5754423 ], + [ 8.4769071, 47.5753336 ], + [ 8.477032, 47.5752205 ], + [ 8.477148, 47.575103 ], + [ 8.4772547, 47.5749816 ], + [ 8.4773518, 47.5748566 ], + [ 8.4774392, 47.5747283 ], + [ 8.4775165, 47.5745971 ], + [ 8.477583599999999, 47.5744633 ], + [ 8.4776402, 47.5743273 ], + [ 8.4776862, 47.5741896 ], + [ 8.4777216, 47.5740503 ], + [ 8.4777461, 47.5739101 ], + [ 8.4777597, 47.5737691 ], + [ 8.4777624, 47.5736279 ], + [ 8.4777542, 47.5734867 ], + [ 8.477735, 47.5733461 ], + [ 8.4777051, 47.5732063 ], + [ 8.4776643, 47.5730677 ], + [ 8.4776129, 47.5729308 ], + [ 8.477551, 47.5727959 ], + [ 8.4774787, 47.5726634 ], + [ 8.4773963, 47.5725336 ], + [ 8.4773039, 47.572407 ], + [ 8.4772019, 47.5722837 ], + [ 8.4770905, 47.5721643 ], + [ 8.47697, 47.5720489 ], + [ 8.4768407, 47.571938 ], + [ 8.4767031, 47.5718318 ], + [ 8.4765574, 47.5717306 ], + [ 8.4764041, 47.5716348 ], + [ 8.4762436, 47.5715445 ], + [ 8.4760764, 47.57146 ], + [ 8.4759028, 47.5713815 ], + [ 8.4757234, 47.5713093 ], + [ 8.4755387, 47.5712435 ], + [ 8.4753491, 47.5711844 ], + [ 8.4751552, 47.5711321 ], + [ 8.4749576, 47.5710867 ], + [ 8.4747567, 47.5710484 ], + [ 8.4745531, 47.5710172 ], + [ 8.4743474, 47.5709933 ], + [ 8.4741401, 47.5709767 ], + [ 8.4739318, 47.5709675 ], + [ 8.4737231, 47.5709657 ], + [ 8.4735145, 47.5709712 ], + [ 8.4733067, 47.5709842 ], + [ 8.4731001, 47.5710044 ], + [ 8.4728954, 47.571032 ], + [ 8.4726931, 47.5710668 ], + [ 8.4724938, 47.5711087 ], + [ 8.4722979, 47.5711576 ], + [ 8.4721062, 47.5712134 ], + [ 8.471919, 47.5712759 ], + [ 8.4717369, 47.5713449 ], + [ 8.4715603, 47.5714203 ], + [ 8.4713899, 47.5715018 ], + [ 8.471226, 47.5715893 ], + [ 8.4710691, 47.5716824 ], + [ 8.4709195, 47.571781 ], + [ 8.4707779, 47.5718847 ], + [ 8.4706444, 47.5719933 ], + [ 8.4705195, 47.5721065 ], + [ 8.4704036, 47.572224 ], + [ 8.4702969, 47.5723454 ], + [ 8.4701997, 47.5724704 ], + [ 8.4701123, 47.5725987 ], + [ 8.470035, 47.5727299 ], + [ 8.4699679, 47.5728636 ], + [ 8.4699112, 47.5729996 ], + [ 8.4698652, 47.5731373 ], + [ 8.4698298, 47.5732766 ], + [ 8.4698053, 47.5734168 ], + [ 8.4697917, 47.5735578 ], + [ 8.4697889, 47.573699 ], + [ 8.4697971, 47.5738402 ], + [ 8.4698163, 47.5739809 ], + [ 8.4698462, 47.5741206 ], + [ 8.4698842, 47.5742499 ], + [ 8.4702256, 47.5744158 ], + [ 8.4710601, 47.5748566 ], + [ 8.4718224, 47.5752774 ], + [ 8.4725852, 47.5756979 ], + [ 8.4733483, 47.576118 ], + [ 8.4737903, 47.576361 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0030", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Eglisau", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Eglisau", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Eglisau", + "lang" : "it-CH" + }, + { + "text" : "Substation Eglisau", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8920048, 47.441437 ], + [ 7.8919594, 47.4415396 ], + [ 7.8919174, 47.4416873 ], + [ 7.8918902, 47.441783 ], + [ 7.8919008999999996, 47.4417936 ], + [ 7.8919366, 47.441829 ], + [ 7.8920378, 47.4419294 ], + [ 7.8920867, 47.441978 ], + [ 7.8922967, 47.4420401 ], + [ 7.8923135, 47.4422453 ], + [ 7.892281, 47.4423359 ], + [ 7.8922115999999995, 47.4425298 ], + [ 7.8921025, 47.4428504 ], + [ 7.8921079, 47.4429128 ], + [ 7.8921408, 47.4432916 ], + [ 7.8921805, 47.4433237 ], + [ 7.8922, 47.4433395 ], + [ 7.8927371, 47.4429894 ], + [ 7.8931818, 47.4426981 ], + [ 7.8934626, 47.4425033 ], + [ 7.8939553, 47.4421605 ], + [ 7.8940139, 47.4421237 ], + [ 7.8940377999999995, 47.4420814 ], + [ 7.8944581, 47.4415827 ], + [ 7.894605, 47.4414535 ], + [ 7.8947021, 47.4415205 ], + [ 7.8947596, 47.4415601 ], + [ 7.894822, 47.4415302 ], + [ 7.8950254, 47.4414326 ], + [ 7.8952859, 47.4413047 ], + [ 7.8955705, 47.4412621 ], + [ 7.8959354, 47.4412104 ], + [ 7.8961866, 47.4411362 ], + [ 7.8964853, 47.4410537 ], + [ 7.8965189, 47.441028 ], + [ 7.8967814, 47.4408779 ], + [ 7.8972994, 47.440679 ], + [ 7.898046, 47.4403578 ], + [ 7.8987977, 47.4400672 ], + [ 7.8988312, 47.4400528 ], + [ 7.8992542, 47.4397319 ], + [ 7.8995797, 47.4395404 ], + [ 7.8998788, 47.4393741 ], + [ 7.9003862, 47.4390239 ], + [ 7.900689, 47.4388736 ], + [ 7.9009111, 47.4388064 ], + [ 7.9015756, 47.4387406 ], + [ 7.9019354, 47.4387533 ], + [ 7.9021535, 47.438744 ], + [ 7.9023305, 47.4387498 ], + [ 7.9026998, 47.4388019 ], + [ 7.9030297, 47.4386157 ], + [ 7.9032347, 47.4384242 ], + [ 7.9029082, 47.4382049 ], + [ 7.9027279, 47.4380838 ], + [ 7.9035186, 47.4378275 ], + [ 7.9036221, 47.4377782 ], + [ 7.9036659, 47.4377574 ], + [ 7.9037254, 47.437729 ], + [ 7.9039202, 47.4372797 ], + [ 7.9038001, 47.4371603 ], + [ 7.9037029, 47.4370637 ], + [ 7.9033264, 47.4370328 ], + [ 7.9031399, 47.4369554 ], + [ 7.902776, 47.4368044 ], + [ 7.9031351999999995, 47.4364437 ], + [ 7.9034262, 47.4361515 ], + [ 7.903698, 47.4358292 ], + [ 7.9039372, 47.4355797 ], + [ 7.9040305, 47.4354823 ], + [ 7.9044131, 47.4350581 ], + [ 7.9044547, 47.4350199 ], + [ 7.9047138, 47.4347817 ], + [ 7.9051168, 47.4341758 ], + [ 7.9052097, 47.4339872 ], + [ 7.9052527, 47.4338998 ], + [ 7.9052181, 47.4335682 ], + [ 7.905312, 47.4333048 ], + [ 7.9055227, 47.4330053 ], + [ 7.9055982, 47.432898 ], + [ 7.9058933, 47.4324517 ], + [ 7.9064179, 47.432326 ], + [ 7.9064751, 47.4323079 ], + [ 7.9066963999999995, 47.4322379 ], + [ 7.9069716, 47.432176 ], + [ 7.9073157, 47.4320959 ], + [ 7.9074456, 47.4319208 ], + [ 7.9076877, 47.4317209 ], + [ 7.9079197, 47.4315266 ], + [ 7.9080132, 47.4314871 ], + [ 7.9083392, 47.4313497 ], + [ 7.9083711, 47.4313362 ], + [ 7.9073630999999995, 47.4312288 ], + [ 7.90685, 47.4311064 ], + [ 7.9067904, 47.4310528 ], + [ 7.9066561, 47.4310334 ], + [ 7.9062294, 47.4309717 ], + [ 7.9058211, 47.4308888 ], + [ 7.9058518, 47.4305517 ], + [ 7.9058697, 47.4302974 ], + [ 7.9058287, 47.4302168 ], + [ 7.9057579, 47.4300774 ], + [ 7.9057192, 47.4297657 ], + [ 7.9058817, 47.4296044 ], + [ 7.9058572, 47.4295736 ], + [ 7.9056426, 47.4293035 ], + [ 7.9056158, 47.4292381 ], + [ 7.9055981, 47.4287831 ], + [ 7.9056198, 47.4285469 ], + [ 7.9056455, 47.4282668 ], + [ 7.9056422, 47.4280667 ], + [ 7.9056229, 47.4279139 ], + [ 7.9055966, 47.4277065 ], + [ 7.9055877, 47.427684 ], + [ 7.9054839, 47.4274231 ], + [ 7.905309, 47.4274376 ], + [ 7.9053451, 47.4278295 ], + [ 7.9052336, 47.4284601 ], + [ 7.9051389, 47.4289503 ], + [ 7.9051158, 47.4293313 ], + [ 7.9051407, 47.4297596 ], + [ 7.9051461, 47.4300804 ], + [ 7.9051686, 47.4305642 ], + [ 7.9051816, 47.4308887 ], + [ 7.905247, 47.4311329 ], + [ 7.9054692, 47.4314642 ], + [ 7.9058535, 47.4314918 ], + [ 7.9065226, 47.431559 ], + [ 7.9069424999999995, 47.4315512 ], + [ 7.9074948, 47.4314123 ], + [ 7.9070668, 47.4317029 ], + [ 7.9066436, 47.4317899 ], + [ 7.9060169, 47.4318567 ], + [ 7.9054942, 47.4319123 ], + [ 7.9051454, 47.4319923 ], + [ 7.9049879999999995, 47.4321195 ], + [ 7.9049124, 47.4322705 ], + [ 7.904724, 47.4325768 ], + [ 7.9045247, 47.4329086 ], + [ 7.904253, 47.4333507 ], + [ 7.9039637, 47.4338244 ], + [ 7.9037989, 47.4340796 ], + [ 7.9036073, 47.4343105 ], + [ 7.9033747, 47.4345468 ], + [ 7.9029402, 47.4349925 ], + [ 7.902535, 47.4353461 ], + [ 7.902373, 47.4355553 ], + [ 7.9022673, 47.4357357 ], + [ 7.9020571, 47.4358868 ], + [ 7.9017687, 47.4362848 ], + [ 7.9015959, 47.4366541 ], + [ 7.9016037, 47.4368836 ], + [ 7.9017173, 47.4369881 ], + [ 7.9017554, 47.4370226 ], + [ 7.9021871, 47.4373749 ], + [ 7.9026292, 47.4374933 ], + [ 7.9027382, 47.4376387 ], + [ 7.9022994, 47.4376324 ], + [ 7.9018653, 47.4376312 ], + [ 7.9011215, 47.4376085 ], + [ 7.9007017, 47.4375848 ], + [ 7.9003005, 47.4377079 ], + [ 7.8999318, 47.4378073 ], + [ 7.8998015, 47.4378649 ], + [ 7.8992683, 47.4381005 ], + [ 7.8990165, 47.4382425 ], + [ 7.8989191, 47.437932 ], + [ 7.898997, 47.4377267 ], + [ 7.8989648, 47.4372267 ], + [ 7.8989491, 47.4372389 ], + [ 7.8989116, 47.4372568 ], + [ 7.8989493, 47.4371061 ], + [ 7.8992221, 47.4369964 ], + [ 7.8993392, 47.4368919 ], + [ 7.8995381, 47.4368396 ], + [ 7.900633, 47.4363423 ], + [ 7.9003271999999996, 47.4362441 ], + [ 7.9003147, 47.4362412 ], + [ 7.9003526, 47.4362074 ], + [ 7.9005554, 47.4359425 ], + [ 7.9005605, 47.4359363 ], + [ 7.9006908, 47.4358242 ], + [ 7.9008444, 47.4356974 ], + [ 7.9011107, 47.4354728 ], + [ 7.9015626999999995, 47.4351674 ], + [ 7.9018761, 47.4348809 ], + [ 7.9019226, 47.4348263 ], + [ 7.9021969, 47.4345488 ], + [ 7.9024465, 47.4343485 ], + [ 7.9026235, 47.4341478 ], + [ 7.9026873, 47.4340163 ], + [ 7.9029979, 47.4336013 ], + [ 7.9030758, 47.433536 ], + [ 7.9031672, 47.4333279 ], + [ 7.9034189999999995, 47.4328766 ], + [ 7.9034289, 47.4328475 ], + [ 7.9034294, 47.4328426 ], + [ 7.9035931999999995, 47.4327721 ], + [ 7.9038153, 47.432704 ], + [ 7.9039557, 47.4325812 ], + [ 7.9041104, 47.4324205 ], + [ 7.9042133, 47.4322751 ], + [ 7.9043917, 47.4320443 ], + [ 7.9043968, 47.4320343 ], + [ 7.9044014, 47.4320242 ], + [ 7.9044063, 47.4320117 ], + [ 7.904436, 47.431754 ], + [ 7.9044303, 47.4316614 ], + [ 7.9044355, 47.4315696 ], + [ 7.9044448, 47.4315589 ], + [ 7.9044483, 47.4315477 ], + [ 7.9044527, 47.4315367 ], + [ 7.9044963, 47.431475 ], + [ 7.9045062, 47.4314658 ], + [ 7.9045168, 47.4314569 ], + [ 7.9045185, 47.4314496 ], + [ 7.9046185, 47.4313772 ], + [ 7.9047928, 47.4313174 ], + [ 7.9048241, 47.431254 ], + [ 7.9048444, 47.4312191 ], + [ 7.9048327, 47.4310983 ], + [ 7.9047652, 47.4310262 ], + [ 7.9046837, 47.4309586 ], + [ 7.9045252, 47.4308266 ], + [ 7.9043508, 47.4306411 ], + [ 7.9042969, 47.4305339 ], + [ 7.9041934, 47.4304229 ], + [ 7.9041509, 47.4304094 ], + [ 7.9041813, 47.4303784 ], + [ 7.9041681, 47.4302546 ], + [ 7.9041408, 47.4299972 ], + [ 7.9042639, 47.4296778 ], + [ 7.904284, 47.4296233 ], + [ 7.9043289, 47.4293072 ], + [ 7.9043356, 47.4292041 ], + [ 7.9043404, 47.4291804 ], + [ 7.9043513, 47.4290138 ], + [ 7.9043495, 47.42899 ], + [ 7.904354, 47.4289211 ], + [ 7.9043294, 47.4287121 ], + [ 7.9043647, 47.4285952 ], + [ 7.9043827, 47.4285356 ], + [ 7.9044107, 47.4285148 ], + [ 7.9046307, 47.428311 ], + [ 7.9046514, 47.4282867 ], + [ 7.9046503999999995, 47.4282563 ], + [ 7.9046844, 47.4280703 ], + [ 7.9046997999999995, 47.4279692 ], + [ 7.9046452, 47.4278116 ], + [ 7.9046888, 47.4275169 ], + [ 7.904687, 47.4274914 ], + [ 7.9046677, 47.4274932 ], + [ 7.904606, 47.4274989 ], + [ 7.9046021, 47.4274992 ], + [ 7.9043137, 47.4275258 ], + [ 7.9042721, 47.4275294 ], + [ 7.9042262999999995, 47.4276842 ], + [ 7.9039317, 47.4279642 ], + [ 7.9039985999999995, 47.428116 ], + [ 7.903989, 47.4283081 ], + [ 7.9038443, 47.4286329 ], + [ 7.9037375, 47.4288798 ], + [ 7.9036774, 47.4291701 ], + [ 7.9035062, 47.4296189 ], + [ 7.9034661, 47.4300896 ], + [ 7.9033012, 47.4302641 ], + [ 7.9033449000000005, 47.4305937 ], + [ 7.9028019, 47.430924 ], + [ 7.9026945, 47.4314747 ], + [ 7.9026041, 47.431752 ], + [ 7.9024899, 47.4320789 ], + [ 7.9023486, 47.4324119 ], + [ 7.9022787, 47.4326176 ], + [ 7.9021814, 47.4328377 ], + [ 7.9021055, 47.4330541 ], + [ 7.901935, 47.4333232 ], + [ 7.9016949, 47.4334968 ], + [ 7.9016002, 47.4338379 ], + [ 7.9013874, 47.4340899 ], + [ 7.9009597, 47.434309 ], + [ 7.9006351, 47.4343306 ], + [ 7.9003309999999995, 47.4345776 ], + [ 7.9001423, 47.4347539 ], + [ 7.8998708, 47.4349774 ], + [ 7.8994794, 47.4351555 ], + [ 7.8992124, 47.4353513 ], + [ 7.898903, 47.4356241 ], + [ 7.8987959, 47.4358332 ], + [ 7.898559, 47.4359984 ], + [ 7.898367, 47.4361578 ], + [ 7.8981947, 47.4363093 ], + [ 7.8980413, 47.4364664 ], + [ 7.8979417, 47.4364847 ], + [ 7.8978277, 47.4365827 ], + [ 7.8975042, 47.4367443 ], + [ 7.8972109, 47.4370084 ], + [ 7.8970208, 47.437149 ], + [ 7.8964262, 47.4373474 ], + [ 7.8959606, 47.4373214 ], + [ 7.895788, 47.4373104 ], + [ 7.895331, 47.4372969 ], + [ 7.8951587, 47.4374171 ], + [ 7.8951315, 47.4374361 ], + [ 7.8946901, 47.4374726 ], + [ 7.8943727, 47.4375645 ], + [ 7.8938901, 47.4376525 ], + [ 7.8932676, 47.4376436 ], + [ 7.8929911, 47.4375631 ], + [ 7.8929611, 47.437564 ], + [ 7.8929077, 47.4375657 ], + [ 7.8925254, 47.437578 ], + [ 7.8920015, 47.4375257 ], + [ 7.8923307, 47.4377048 ], + [ 7.8923058, 47.4378092 ], + [ 7.8925377999999995, 47.4381509 ], + [ 7.8927452, 47.4384252 ], + [ 7.8929637, 47.438539 ], + [ 7.8933101, 47.4387191 ], + [ 7.8935183, 47.4388025 ], + [ 7.8936068, 47.4388379 ], + [ 7.8937974, 47.4387815 ], + [ 7.8941692, 47.438693 ], + [ 7.8946818, 47.4385896 ], + [ 7.8950797, 47.4384996 ], + [ 7.8955491, 47.4384105 ], + [ 7.8959832, 47.4383201 ], + [ 7.8963025, 47.4382347 ], + [ 7.8963038, 47.4382342 ], + [ 7.8970687, 47.4379338 ], + [ 7.8973081, 47.4378266 ], + [ 7.8977184, 47.4376879 ], + [ 7.898299, 47.4374428 ], + [ 7.8989332, 47.4370561 ], + [ 7.8991906, 47.4369631 ], + [ 7.8989426, 47.4370679 ], + [ 7.8988909, 47.437111 ], + [ 7.8988769, 47.437129 ], + [ 7.898836, 47.4372955 ], + [ 7.8988292, 47.4372961 ], + [ 7.8987704999999995, 47.4373264 ], + [ 7.8987703, 47.437711 ], + [ 7.8986876, 47.4379286 ], + [ 7.8987652, 47.4381758 ], + [ 7.8986263, 47.4382571 ], + [ 7.8982914, 47.4384136 ], + [ 7.8977033, 47.4386198 ], + [ 7.8974766, 47.4387052 ], + [ 7.8971369, 47.438803300000004 ], + [ 7.8965938, 47.438948 ], + [ 7.8962965, 47.4390755 ], + [ 7.8961835, 47.4391482 ], + [ 7.8959934, 47.4393331 ], + [ 7.8953975, 47.4395688 ], + [ 7.8952879, 47.4396121 ], + [ 7.8950306, 47.4396734 ], + [ 7.8947932, 47.43973 ], + [ 7.8945837, 47.4398361 ], + [ 7.8944756, 47.4398909 ], + [ 7.8942799, 47.4400177 ], + [ 7.8942057, 47.4400507 ], + [ 7.8938075, 47.4402283 ], + [ 7.893527, 47.4404495 ], + [ 7.8935001, 47.4404628 ], + [ 7.8932337, 47.4405874 ], + [ 7.8931041, 47.440648 ], + [ 7.8929367, 47.4407404 ], + [ 7.8927502, 47.4409098 ], + [ 7.8926807, 47.4409629 ], + [ 7.8924281, 47.4411526 ], + [ 7.8923699, 47.4411653 ], + [ 7.8922734, 47.441206 ], + [ 7.8922375, 47.441213 ], + [ 7.8922107, 47.4412325 ], + [ 7.8920984999999995, 47.4412798 ], + [ 7.8920048, 47.441437 ] + ], + [ + [ 7.9034453, 47.4327953 ], + [ 7.9034636, 47.4327445 ], + [ 7.9035092, 47.4326096 ], + [ 7.9036029, 47.4322959 ], + [ 7.903731, 47.4319963 ], + [ 7.9037537, 47.4317346 ], + [ 7.903818, 47.4313656 ], + [ 7.9038889, 47.4312036 ], + [ 7.9039475, 47.4310694 ], + [ 7.9040695, 47.4304976 ], + [ 7.9041082, 47.4304563 ], + [ 7.9041112, 47.4304506 ], + [ 7.9041309, 47.4304609 ], + [ 7.9041733999999995, 47.4304742 ], + [ 7.9042554, 47.4305491 ], + [ 7.9042891, 47.4306535 ], + [ 7.904483, 47.4308432 ], + [ 7.9046389999999995, 47.4309786 ], + [ 7.9047301999999995, 47.4310412 ], + [ 7.9047785, 47.4311187 ], + [ 7.9047805, 47.4312195 ], + [ 7.9047417, 47.4312557 ], + [ 7.9047346, 47.4312669 ], + [ 7.9047156, 47.4312796 ], + [ 7.9046736, 47.43132 ], + [ 7.9045936, 47.4313544 ], + [ 7.9044763, 47.4314293 ], + [ 7.9043955, 47.4315552 ], + [ 7.9043795, 47.4316478 ], + [ 7.9043931, 47.4317941 ], + [ 7.9043596, 47.4320138 ], + [ 7.9041777, 47.4322608 ], + [ 7.9040719, 47.432407 ], + [ 7.9039795999999996, 47.4324949 ], + [ 7.9039615, 47.432515 ], + [ 7.9039427, 47.4325347 ], + [ 7.9039231, 47.4325542 ], + [ 7.9039029, 47.4325733 ], + [ 7.903882, 47.4325921 ], + [ 7.9038253, 47.4326376 ], + [ 7.9038119, 47.4326462 ], + [ 7.9037979, 47.4326544 ], + [ 7.9037834, 47.4326621 ], + [ 7.9037641999999995, 47.4326808 ], + [ 7.9036137, 47.4327419 ], + [ 7.9034453, 47.4327953 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns208", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Eital - Summerholden", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Eital - Summerholden", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Eital - Summerholden", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Eital - Summerholden", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.3161924, 47.3720014 ], + [ 8.3162083, 47.3719464 ], + [ 8.3161909, 47.3718447 ], + [ 8.3161409, 47.3718135 ], + [ 8.3161286, 47.3717314 ], + [ 8.3161551, 47.3716686 ], + [ 8.3162308, 47.3715954 ], + [ 8.3162358, 47.3715329 ], + [ 8.3162103, 47.3714926 ], + [ 8.3160919, 47.3714326 ], + [ 8.3160669, 47.3714147 ], + [ 8.3159871, 47.3713571 ], + [ 8.3159504, 47.3712951 ], + [ 8.3159401, 47.3712426 ], + [ 8.3159696, 47.3710888 ], + [ 8.3160182, 47.3709699 ], + [ 8.3161429, 47.3707963 ], + [ 8.3162524, 47.3706361 ], + [ 8.316355, 47.3705176 ], + [ 8.3164435, 47.3703883 ], + [ 8.3165119, 47.3703327 ], + [ 8.3166417, 47.3702654 ], + [ 8.3168222, 47.3701887 ], + [ 8.3171573, 47.3700467 ], + [ 8.3175308, 47.3698943 ], + [ 8.3178238, 47.3698064 ], + [ 8.3180831, 47.3697365 ], + [ 8.3182678, 47.3697167 ], + [ 8.3184976, 47.3697118 ], + [ 8.3186508, 47.3697341 ], + [ 8.3188318, 47.3697594 ], + [ 8.3189885, 47.3698058 ], + [ 8.3191502, 47.369874 ], + [ 8.3192565, 47.3699429 ], + [ 8.3193681, 47.3700523 ], + [ 8.3194797, 47.3701562 ], + [ 8.3195763, 47.3702833 ], + [ 8.3196451, 47.3704118 ], + [ 8.3196946, 47.3704978 ], + [ 8.3197635, 47.3705518 ], + [ 8.3198979, 47.3705589 ], + [ 8.3199686, 47.3705471 ], + [ 8.3200158, 47.370517 ], + [ 8.3200147, 47.3704611 ], + [ 8.3200035, 47.3703582 ], + [ 8.3199288, 47.3702473 ], + [ 8.3197831, 47.3700528 ], + [ 8.319558, 47.3698198 ], + [ 8.3193451, 47.3696623 ], + [ 8.3191693, 47.3695833 ], + [ 8.3189629, 47.3695189 ], + [ 8.3187504, 47.3694622 ], + [ 8.3184658, 47.369424 ], + [ 8.3183423, 47.3694188 ], + [ 8.3182347, 47.3694409 ], + [ 8.3181209, 47.3694587 ], + [ 8.3180167, 47.3694939 ], + [ 8.317832, 47.3695159 ], + [ 8.3176949, 47.369524 ], + [ 8.3173738, 47.3695925 ], + [ 8.3171131, 47.3696723 ], + [ 8.3169676, 47.3697289 ], + [ 8.3168301, 47.3697995 ], + [ 8.316714, 47.369859 ], + [ 8.3166005, 47.3698943 ], + [ 8.3164607, 47.3699234 ], + [ 8.3163154, 47.3699865 ], + [ 8.3161309, 47.3700994 ], + [ 8.3160553, 47.3701781 ], + [ 8.3160019, 47.3702883 ], + [ 8.3160041, 47.3704001 ], + [ 8.3159707, 47.3705101 ], + [ 8.315857, 47.3706134 ], + [ 8.31577, 47.3706637 ], + [ 8.3157366, 47.3707693 ], + [ 8.3156512, 47.3708197 ], + [ 8.3156306, 47.3709118 ], + [ 8.3156001, 47.3710483 ], + [ 8.3155979, 47.3712565 ], + [ 8.3156146, 47.3714021 ], + [ 8.3156849, 47.371524 ], + [ 8.315759, 47.3716076 ], + [ 8.3158035, 47.3716524 ], + [ 8.3158707, 47.3717202 ], + [ 8.3159248, 47.371804 ], + [ 8.3159678, 47.3718725 ], + [ 8.3160657, 47.3719086 ], + [ 8.3161406, 47.3719571 ], + [ 8.3161924, 47.3720014 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "KTAG509", + "country" : "CHE", + "name" : [ + { + "text" : "Tote Reuss", + "lang" : "de-CH" + }, + { + "text" : "Tote Reuss", + "lang" : "fr-CH" + }, + { + "text" : "Tote Reuss", + "lang" : "it-CH" + }, + { + "text" : "Tote Reuss", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "regulationExemption" : "NO", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "schedule" : [ + { + "day" : [ "ANY" ], + "startTime" : "00:00:00.00+01:00", + "endTime" : "00:00:00.00+01:00" + } + ] + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Aargau", + "lang" : "de-CH" + }, + { + "text" : "Canton d'Argovie", + "lang" : "fr-CH" + }, + { + "text" : "Canton Argovia", + "lang" : "it-CH" + }, + { + "text" : "Canton of Aargau", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Departement Bau, Verkehr und Umwelt (BVU)", + "lang" : "de-CH" + }, + { + "text" : "Département de la construction, des transports et de l'environnement (CTE)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento delle costruzioni, dei trasporti e dell'ambiente (CTA)", + "lang" : "it-CH" + }, + { + "text" : "Department of Civil Engineering,Transport and Environment (CTE)", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Sektion Gewässernutzung", + "lang" : "de-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "fr-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "it-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ag.ch/de/verwaltung/bvu/umwelt-natur-landschaft/hochwasserschutz-gewaesser/gewaessernutzung", + "email" : "alg@ag.ch", + "phone" : "0041 62 835 34 50", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.3844584, 47.427405 ], + [ 8.3844504, 47.4272639 ], + [ 8.3844316, 47.4271232 ], + [ 8.3844019, 47.4269834 ], + [ 8.3843615, 47.4268448 ], + [ 8.3843105, 47.4267078 ], + [ 8.384249, 47.4265729 ], + [ 8.3841771, 47.4264403 ], + [ 8.3840952, 47.4263105 ], + [ 8.3840033, 47.4261837 ], + [ 8.3839018, 47.4260604 ], + [ 8.3837909, 47.4259408 ], + [ 8.3836709, 47.4258254 ], + [ 8.3835422, 47.4257144 ], + [ 8.3834051, 47.425608 ], + [ 8.38326, 47.4255068 ], + [ 8.3831073, 47.4254108 ], + [ 8.3829474, 47.4253203 ], + [ 8.3827808, 47.4252357 ], + [ 8.3826078, 47.4251571 ], + [ 8.382429, 47.4250847 ], + [ 8.3822449, 47.4250188 ], + [ 8.382056, 47.4249595 ], + [ 8.3818627, 47.424907 ], + [ 8.3816657, 47.4248615 ], + [ 8.3814654, 47.424823 ], + [ 8.3812624, 47.4247917 ], + [ 8.3810573, 47.4247676 ], + [ 8.3808507, 47.4247508 ], + [ 8.380643, 47.4247414 ], + [ 8.3804348, 47.4247394 ], + [ 8.380226799999999, 47.4247448 ], + [ 8.3800195, 47.4247576 ], + [ 8.3798135, 47.4247777 ], + [ 8.3796093, 47.4248051 ], + [ 8.3794075, 47.4248398 ], + [ 8.3792086, 47.4248815 ], + [ 8.3790133, 47.4249302 ], + [ 8.3788219, 47.4249859 ], + [ 8.3786351, 47.4250482 ], + [ 8.3784534, 47.4251171 ], + [ 8.3782772, 47.4251923 ], + [ 8.3781071, 47.4252737 ], + [ 8.3779435, 47.4253611 ], + [ 8.377786799999999, 47.4254541 ], + [ 8.3776376, 47.4255525 ], + [ 8.3774961, 47.4256562 ], + [ 8.3773628, 47.4257647 ], + [ 8.3772381, 47.4258778 ], + [ 8.3771222, 47.4259951 ], + [ 8.3770156, 47.4261165 ], + [ 8.3769185, 47.4262414 ], + [ 8.3768311, 47.4263696 ], + [ 8.3767537, 47.4265008 ], + [ 8.3766866, 47.4266345 ], + [ 8.3766299, 47.4267704 ], + [ 8.3765837, 47.4269081 ], + [ 8.3765482, 47.4270473 ], + [ 8.3765235, 47.4271876 ], + [ 8.3765097, 47.4273285 ], + [ 8.3765067, 47.4274698 ], + [ 8.3765146, 47.427611 ], + [ 8.3765334, 47.4277516 ], + [ 8.3765631, 47.4278915 ], + [ 8.3766035, 47.4280301 ], + [ 8.3766545, 47.428167 ], + [ 8.376716, 47.428302 ], + [ 8.3767878, 47.4284345 ], + [ 8.3768698, 47.4285644 ], + [ 8.3769616, 47.4286912 ], + [ 8.3770631, 47.4288145 ], + [ 8.377174, 47.4289341 ], + [ 8.377294, 47.4290495 ], + [ 8.3774227, 47.4291605 ], + [ 8.3775598, 47.4292668 ], + [ 8.3777048, 47.4293681 ], + [ 8.3778575, 47.4294642 ], + [ 8.3780174, 47.4295546 ], + [ 8.3781841, 47.4296393 ], + [ 8.3783571, 47.4297179 ], + [ 8.3785359, 47.4297902 ], + [ 8.37872, 47.4298561 ], + [ 8.3789089, 47.4299154 ], + [ 8.3791022, 47.4299679 ], + [ 8.3792993, 47.4300135 ], + [ 8.3794996, 47.430052 ], + [ 8.3797025, 47.4300833 ], + [ 8.3799077, 47.4301074 ], + [ 8.3801144, 47.4301241 ], + [ 8.3803221, 47.4301335 ], + [ 8.3805303, 47.4301355 ], + [ 8.3807383, 47.4301301 ], + [ 8.3809456, 47.4301174 ], + [ 8.3811516, 47.4300972 ], + [ 8.381355899999999, 47.4300698 ], + [ 8.3815577, 47.4300352 ], + [ 8.3817566, 47.4299935 ], + [ 8.381952, 47.4299447 ], + [ 8.3821433, 47.4298891 ], + [ 8.3823301, 47.4298267 ], + [ 8.3825119, 47.4297578 ], + [ 8.382688, 47.4296826 ], + [ 8.3828582, 47.4296012 ], + [ 8.3830218, 47.4295139 ], + [ 8.3831784, 47.4294208 ], + [ 8.3833277, 47.4293224 ], + [ 8.3834692, 47.4292187 ], + [ 8.3836025, 47.4291102 ], + [ 8.3837272, 47.4289971 ], + [ 8.383843, 47.4288797 ], + [ 8.3839497, 47.4287584 ], + [ 8.3840468, 47.4286335 ], + [ 8.3841341, 47.4285052 ], + [ 8.3842115, 47.4283741 ], + [ 8.3842786, 47.4282404 ], + [ 8.3843353, 47.4281044 ], + [ 8.3843814, 47.4279667 ], + [ 8.3844169, 47.4278275 ], + [ 8.3844416, 47.4276872 ], + [ 8.3844554, 47.4275463 ], + [ 8.3844584, 47.427405 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0113", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Spreitenbach", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Spreitenbach", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Spreitenbach", + "lang" : "it-CH" + }, + { + "text" : "Substation Spreitenbach", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.9760189, 47.2349836 ], + [ 7.9759047, 47.2326304 ], + [ 7.97561, 47.2302845 ], + [ 7.9751354, 47.2279522 ], + [ 7.9744823, 47.2256401 ], + [ 7.9736526, 47.2233545 ], + [ 7.9726485, 47.2211015 ], + [ 7.9714728, 47.2188874 ], + [ 7.9701287, 47.2167183 ], + [ 7.9686199, 47.2146 ], + [ 7.9669507, 47.2125384 ], + [ 7.9651255, 47.2105392 ], + [ 7.9631494, 47.2086077 ], + [ 7.9610278, 47.2067493 ], + [ 7.9587666, 47.2049691 ], + [ 7.9563719, 47.2032719 ], + [ 7.9538502, 47.2016624 ], + [ 7.9512086, 47.200145 ], + [ 7.9484543, 47.1987239 ], + [ 7.9455947, 47.1974028 ], + [ 7.9426378, 47.1961855 ], + [ 7.9395915, 47.1950753 ], + [ 7.9364643, 47.1940752 ], + [ 7.9332647, 47.1931879 ], + [ 7.9300014999999995, 47.1924159 ], + [ 7.9266835, 47.1917612 ], + [ 7.9233199, 47.1912258 ], + [ 7.9199199, 47.1908109 ], + [ 7.9164927, 47.1905179 ], + [ 7.9130478, 47.1903473 ], + [ 7.9095944, 47.1902999 ], + [ 7.9061422, 47.1903756 ], + [ 7.9027005, 47.1905742 ], + [ 7.8992787, 47.1908953 ], + [ 7.8958862, 47.1913379 ], + [ 7.8925322, 47.1919008 ], + [ 7.889226, 47.1925825 ], + [ 7.8859766, 47.1933811 ], + [ 7.8827928, 47.1942945 ], + [ 7.8796834, 47.1953201 ], + [ 7.8766569, 47.1964552 ], + [ 7.8737216, 47.1976965 ], + [ 7.8708855, 47.1990409 ], + [ 7.8681563, 47.2004844 ], + [ 7.8655415, 47.2020233 ], + [ 7.8630484, 47.2036533 ], + [ 7.8606837, 47.2053699 ], + [ 7.8584539, 47.2071685 ], + [ 7.8563652, 47.2090441 ], + [ 7.8544232, 47.2109916 ], + [ 7.8526333, 47.2130056 ], + [ 7.8510005, 47.2150807 ], + [ 7.8495291, 47.2172111 ], + [ 7.8482233, 47.2193911 ], + [ 7.8470867, 47.2216146 ], + [ 7.8461223, 47.2238756 ], + [ 7.8453329, 47.2261679 ], + [ 7.8447206, 47.2284852 ], + [ 7.8442871, 47.2308211 ], + [ 7.8440337, 47.2331693 ], + [ 7.843961, 47.2355233 ], + [ 7.8440693, 47.2378766 ], + [ 7.8443584, 47.2402229 ], + [ 7.8448273, 47.2425557 ], + [ 7.845475, 47.2448685 ], + [ 7.8462996, 47.2471551 ], + [ 7.8472988, 47.2494091 ], + [ 7.8484701, 47.2516245 ], + [ 7.8498101, 47.253795 ], + [ 7.8513152, 47.2559148 ], + [ 7.8529814, 47.257978 ], + [ 7.854804, 47.259979 ], + [ 7.856778, 47.2619123 ], + [ 7.8588982, 47.2637726 ], + [ 7.8611585999999996, 47.2655548 ], + [ 7.8635531, 47.2672539 ], + [ 7.8660751, 47.2688653 ], + [ 7.8687176, 47.2703847 ], + [ 7.8714736, 47.2718077 ], + [ 7.8743353, 47.2731306 ], + [ 7.877295, 47.2743496 ], + [ 7.8803444, 47.2754615 ], + [ 7.8834753, 47.2764631 ], + [ 7.8866791, 47.2773517 ], + [ 7.8899469, 47.278125 ], + [ 7.8932698, 47.2787806 ], + [ 7.8966386, 47.279317 ], + [ 7.9000441, 47.2797325 ], + [ 7.9034769, 47.280026 ], + [ 7.9069275999999995, 47.2801968 ], + [ 7.9103867999999995, 47.2802444 ], + [ 7.9138448, 47.2801686 ], + [ 7.9172923, 47.2799696 ], + [ 7.9207197, 47.279648 ], + [ 7.9241176, 47.2792047 ], + [ 7.9274767, 47.2786409 ], + [ 7.9307877, 47.2779581 ], + [ 7.9340416, 47.2771582 ], + [ 7.9372295, 47.2762434 ], + [ 7.9403425, 47.2752163 ], + [ 7.9433720999999995, 47.2740796 ], + [ 7.94631, 47.2728364 ], + [ 7.9491482, 47.271490299999996 ], + [ 7.9518788, 47.2700448 ], + [ 7.9544944, 47.268504 ], + [ 7.9569877, 47.2668721 ], + [ 7.959352, 47.2651535 ], + [ 7.9615808, 47.263353 ], + [ 7.963668, 47.2614755 ], + [ 7.9656078, 47.2595262 ], + [ 7.967395, 47.2575105 ], + [ 7.9690246, 47.2554338 ], + [ 7.9704923, 47.2533018 ], + [ 7.9717939, 47.2511205 ], + [ 7.972926, 47.2488957 ], + [ 7.9738855, 47.2466337 ], + [ 7.9746697, 47.2443405 ], + [ 7.9752765, 47.2420226 ], + [ 7.9757043, 47.2396862 ], + [ 7.9759519999999995, 47.2373377 ], + [ 7.9760189, 47.2349836 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSXP001", + "country" : "CHE", + "name" : [ + { + "text" : "LSXP Pfaffnau", + "lang" : "de-CH" + }, + { + "text" : "LSXP Pfaffnau", + "lang" : "fr-CH" + }, + { + "text" : "LSXP Pfaffnau", + "lang" : "it-CH" + }, + { + "text" : "LSXP Pfaffnau", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swiss Helicopter AG", + "lang" : "de-CH" + }, + { + "text" : "Swiss Helicopter AG", + "lang" : "fr-CH" + }, + { + "text" : "Swiss Helicopter AG", + "lang" : "it-CH" + }, + { + "text" : "Swiss Helicopter AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Basis Pfaffnau", + "lang" : "de-CH" + }, + { + "text" : "Basis Pfaffnau", + "lang" : "fr-CH" + }, + { + "text" : "Basis Pfaffnau", + "lang" : "it-CH" + }, + { + "text" : "Basis Pfaffnau", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Markus Lerch", + "lang" : "de-CH" + }, + { + "text" : "Markus Lerch", + "lang" : "fr-CH" + }, + { + "text" : "Markus Lerch", + "lang" : "it-CH" + }, + { + "text" : "Markus Lerch", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swisshelicopter.ch/en/about-us/helicopter-bases/pfaffnau", + "email" : "pfaffnau@swisshelicopter.ch", + "phone" : "0041627540101", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P00DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 10.0656552, 46.3481567 ], + [ 10.065643, 46.3480157 ], + [ 10.0656202, 46.3478753 ], + [ 10.0655868, 46.3477359 ], + [ 10.0655429, 46.3475979 ], + [ 10.0654887, 46.3474617 ], + [ 10.0654242, 46.3473277 ], + [ 10.0653497, 46.3471962 ], + [ 10.0652654, 46.3470675 ], + [ 10.0651714, 46.3469421 ], + [ 10.0650681, 46.3468203 ], + [ 10.0649558, 46.3467023 ], + [ 10.0648346, 46.3465886 ], + [ 10.0647051, 46.3464795 ], + [ 10.0645675, 46.3463752 ], + [ 10.0644221, 46.346276 ], + [ 10.0642695, 46.3461822 ], + [ 10.0641101, 46.3460941 ], + [ 10.0639441, 46.3460119 ], + [ 10.0637722, 46.3459358 ], + [ 10.0635948, 46.3458661 ], + [ 10.0634123, 46.3458028 ], + [ 10.0632254, 46.3457463 ], + [ 10.0630344, 46.3456967 ], + [ 10.0628399, 46.345654 ], + [ 10.0626424, 46.3456184 ], + [ 10.0624426, 46.34559 ], + [ 10.0622408, 46.3455689 ], + [ 10.0620378, 46.3455552 ], + [ 10.061834, 46.3455488 ], + [ 10.06163, 46.3455498 ], + [ 10.0614263, 46.3455583 ], + [ 10.0612236, 46.345574 ], + [ 10.0610223, 46.3455972 ], + [ 10.060823, 46.3456275 ], + [ 10.0606264, 46.3456651 ], + [ 10.0604328, 46.3457097 ], + [ 10.0602429, 46.3457613 ], + [ 10.0600571, 46.3458197 ], + [ 10.059876, 46.3458848 ], + [ 10.0597, 46.3459563 ], + [ 10.0595297, 46.3460341 ], + [ 10.0593656, 46.346118 ], + [ 10.0592079, 46.3462077 ], + [ 10.0590573, 46.346303 ], + [ 10.0589141, 46.3464036 ], + [ 10.0587787, 46.3465093 ], + [ 10.0586514, 46.3466197 ], + [ 10.0585327, 46.3467346 ], + [ 10.0584228, 46.3468537 ], + [ 10.0583221, 46.3469765 ], + [ 10.0582308, 46.3471029 ], + [ 10.0581491, 46.3472324 ], + [ 10.0580774, 46.3473646 ], + [ 10.0580157, 46.3474993 ], + [ 10.0579644, 46.347636 ], + [ 10.0579234, 46.3477745 ], + [ 10.0578929, 46.3479142 ], + [ 10.0578731, 46.3480548 ], + [ 10.0578639, 46.3481959 ], + [ 10.0578653, 46.3483372 ], + [ 10.0578775, 46.3484782 ], + [ 10.0579003, 46.3486187 ], + [ 10.0579336, 46.348758 ], + [ 10.0579775, 46.348896 ], + [ 10.0580317, 46.3490322 ], + [ 10.0580962, 46.3491663 ], + [ 10.0581707, 46.3492978 ], + [ 10.058255, 46.3494265 ], + [ 10.0583489, 46.3495519 ], + [ 10.0584522, 46.3496737 ], + [ 10.0585646, 46.3497917 ], + [ 10.0586857, 46.3499054 ], + [ 10.0588152, 46.3500145 ], + [ 10.0589529, 46.3501188 ], + [ 10.0590982, 46.350218 ], + [ 10.0592508, 46.3503118 ], + [ 10.0594103, 46.3503999 ], + [ 10.0595762, 46.3504821 ], + [ 10.0597481, 46.3505582 ], + [ 10.0599256, 46.350628 ], + [ 10.060108, 46.3506912 ], + [ 10.060295, 46.3507477 ], + [ 10.060486, 46.3507974 ], + [ 10.0606805, 46.3508401 ], + [ 10.060878, 46.3508757 ], + [ 10.0610779, 46.3509041 ], + [ 10.0612796, 46.3509251 ], + [ 10.0614827, 46.3509389 ], + [ 10.0616865, 46.3509453 ], + [ 10.0618906, 46.3509442 ], + [ 10.0620942, 46.3509358 ], + [ 10.062297, 46.35092 ], + [ 10.0624983, 46.3508969 ], + [ 10.0626976, 46.3508665 ], + [ 10.0628943, 46.350829 ], + [ 10.0630878, 46.3507843 ], + [ 10.0632778, 46.3507327 ], + [ 10.0634636, 46.3506743 ], + [ 10.0636447, 46.3506093 ], + [ 10.0638206, 46.3505378 ], + [ 10.063991, 46.3504599 ], + [ 10.0641551, 46.3503761 ], + [ 10.0643128, 46.3502863 ], + [ 10.0644634, 46.350191 ], + [ 10.0646066, 46.3500904 ], + [ 10.064742, 46.3499847 ], + [ 10.0648693, 46.3498743 ], + [ 10.064988, 46.3497594 ], + [ 10.0650979, 46.3496403 ], + [ 10.0651986, 46.3495174 ], + [ 10.0652899, 46.3493911 ], + [ 10.0653715, 46.3492616 ], + [ 10.0654432, 46.3491293 ], + [ 10.0655049, 46.3489946 ], + [ 10.0655562, 46.3488579 ], + [ 10.0655972, 46.3487195 ], + [ 10.0656276, 46.3485798 ], + [ 10.0656475, 46.3484392 ], + [ 10.0656567, 46.348298 ], + [ 10.0656552, 46.3481567 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0098", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Robbia", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Robbia", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Robbia", + "lang" : "it-CH" + }, + { + "text" : "Substation Robbia", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6240501, 46.7602736 ], + [ 7.6240442999999996, 46.7601324 ], + [ 7.6240277, 46.7599916 ], + [ 7.6240003, 46.7598516 ], + [ 7.6239624, 46.7597127 ], + [ 7.6239139, 46.7595754 ], + [ 7.6238551, 46.75944 ], + [ 7.623786, 46.759307 ], + [ 7.6237069, 46.7591766 ], + [ 7.6236179, 46.7590492 ], + [ 7.6235194, 46.7589252 ], + [ 7.6234116, 46.7588049 ], + [ 7.6232947, 46.7586886 ], + [ 7.6231691999999995, 46.7585767 ], + [ 7.6230353, 46.7584695 ], + [ 7.6228934, 46.7583673 ], + [ 7.622744, 46.7582703 ], + [ 7.6225873, 46.7581787 ], + [ 7.622424, 46.758093 ], + [ 7.6222543, 46.7580133 ], + [ 7.6220787, 46.7579397 ], + [ 7.6218978, 46.7578726 ], + [ 7.6217121, 46.7578121 ], + [ 7.621522, 46.7577583 ], + [ 7.621328, 46.7577114 ], + [ 7.6211307999999995, 46.7576716 ], + [ 7.6209308, 46.757639 ], + [ 7.6207285, 46.7576135 ], + [ 7.6205247, 46.7575954 ], + [ 7.6203197, 46.7575847 ], + [ 7.6201141, 46.7575813 ], + [ 7.6199086, 46.7575853 ], + [ 7.6197037, 46.7575967 ], + [ 7.6195, 46.7576155 ], + [ 7.6192979, 46.7576416 ], + [ 7.6190982, 46.7576748 ], + [ 7.6189012, 46.7577153 ], + [ 7.6187075, 46.7577627 ], + [ 7.6185178, 46.7578171 ], + [ 7.6183325, 46.7578782 ], + [ 7.618152, 46.7579459 ], + [ 7.617977, 46.75802 ], + [ 7.6178078, 46.7581003 ], + [ 7.6176449999999996, 46.7581866 ], + [ 7.617489, 46.7582786 ], + [ 7.6173402, 46.7583761 ], + [ 7.617199, 46.7584788 ], + [ 7.6170658, 46.7585864 ], + [ 7.6169411, 46.7586987 ], + [ 7.616825, 46.7588153 ], + [ 7.616718, 46.7589359 ], + [ 7.6166203, 46.7590603 ], + [ 7.6165322, 46.7591879 ], + [ 7.616454, 46.7593186 ], + [ 7.6163858, 46.7594519 ], + [ 7.6163279, 46.7595874 ], + [ 7.6162803, 46.7597249 ], + [ 7.6162433, 46.7598638 ], + [ 7.6162168999999995, 46.760004 ], + [ 7.6162013, 46.7601448 ], + [ 7.6161963, 46.7602861 ], + [ 7.6162022, 46.7604273 ], + [ 7.6162188, 46.7605681 ], + [ 7.6162461, 46.7607082 ], + [ 7.616284, 46.760847 ], + [ 7.6163324, 46.7609843 ], + [ 7.6163913, 46.7611197 ], + [ 7.6164604, 46.7612528 ], + [ 7.6165395, 46.7613832 ], + [ 7.6166284, 46.7615106 ], + [ 7.6167269, 46.7616346 ], + [ 7.6168347, 46.7617549 ], + [ 7.6169516, 46.7618711 ], + [ 7.6170770999999995, 46.761983 ], + [ 7.617211, 46.7620903 ], + [ 7.6173528, 46.7621925 ], + [ 7.6175023, 46.7622896 ], + [ 7.6176589, 46.7623811 ], + [ 7.6178223, 46.7624668 ], + [ 7.617992, 46.7625466 ], + [ 7.6181676, 46.7626201 ], + [ 7.6183485, 46.7626873 ], + [ 7.6185343, 46.7627478 ], + [ 7.6187244, 46.7628016 ], + [ 7.6189184, 46.7628484 ], + [ 7.6191156, 46.7628882 ], + [ 7.6193156, 46.7629209 ], + [ 7.6195179, 46.7629463 ], + [ 7.6197218, 46.7629644 ], + [ 7.6199268, 46.7629752 ], + [ 7.6201323, 46.7629786 ], + [ 7.6203378, 46.7629746 ], + [ 7.6205428, 46.7629631 ], + [ 7.6207465, 46.7629444 ], + [ 7.6209486, 46.7629183 ], + [ 7.6211484, 46.762885 ], + [ 7.6213454, 46.7628446 ], + [ 7.6215391, 46.7627971 ], + [ 7.6217288, 46.7627427 ], + [ 7.6219142, 46.7626816 ], + [ 7.6220946, 46.7626139 ], + [ 7.6222697, 46.7625398 ], + [ 7.6224389, 46.7624595 ], + [ 7.6226017, 46.7623732 ], + [ 7.6227577, 46.7622812 ], + [ 7.6229065, 46.7621837 ], + [ 7.6230477, 46.762081 ], + [ 7.6231808, 46.7619734 ], + [ 7.6233056, 46.7618611 ], + [ 7.6234216, 46.7617445 ], + [ 7.6235287, 46.7616238 ], + [ 7.6236263, 46.7614995 ], + [ 7.6237144, 46.7613718 ], + [ 7.6237926, 46.7612412 ], + [ 7.6238608, 46.7611079 ], + [ 7.6239187, 46.7609723 ], + [ 7.6239662, 46.7608349 ], + [ 7.6240032, 46.7606959 ], + [ 7.6240296, 46.7605558 ], + [ 7.6240452, 46.7604149 ], + [ 7.6240501, 46.7602736 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "THU0001", + "country" : "CHE", + "name" : [ + { + "text" : "Regionalgefängnis Thun", + "lang" : "de-CH" + }, + { + "text" : "Regionalgefängnis Thun", + "lang" : "fr-CH" + }, + { + "text" : "Regionalgefängnis Thun", + "lang" : "it-CH" + }, + { + "text" : "Regionalgefängnis Thun", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Regionalgefängnis Thun", + "lang" : "de-CH" + }, + { + "text" : "Prison régionale de Thoune", + "lang" : "fr-CH" + }, + { + "text" : "Carcere regionale di Thun", + "lang" : "it-CH" + }, + { + "text" : "Thun Regional Prison", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Direktion", + "lang" : "de-CH" + }, + { + "text" : "Direktion", + "lang" : "fr-CH" + }, + { + "text" : "Direktion", + "lang" : "it-CH" + }, + { + "text" : "Direktion", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Ulrich Kräuchi", + "lang" : "de-CH" + }, + { + "text" : "Ulrich Kräuchi", + "lang" : "fr-CH" + }, + { + "text" : "Ulrich Kräuchi", + "lang" : "it-CH" + }, + { + "text" : "Ulrich Kräuchi", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ajv.sid.be.ch/de/start/themen/haft/regionalgefaengnis-thun.html", + "email" : "rgthun.loge@be.ch", + "phone" : "0041316360011", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P02DT12H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5238479, 47.5356151 ], + [ 7.5236709, 47.5357291 ], + [ 7.5238081, 47.5361454 ], + [ 7.5238926, 47.5364186 ], + [ 7.5239534, 47.5364422 ], + [ 7.5243754, 47.5363587 ], + [ 7.5245692, 47.5363204 ], + [ 7.5249066, 47.5362536 ], + [ 7.5249223, 47.5362475 ], + [ 7.5250865000000005, 47.5361842 ], + [ 7.5252724, 47.5360753 ], + [ 7.5253059, 47.5360562 ], + [ 7.5253418, 47.5360308 ], + [ 7.5253772, 47.536005 ], + [ 7.5254119, 47.5359788 ], + [ 7.5254459, 47.5359522 ], + [ 7.5254793, 47.5359252 ], + [ 7.5255121, 47.5358978 ], + [ 7.5255441, 47.5358701 ], + [ 7.5255755, 47.535842099999996 ], + [ 7.5256062, 47.5358136 ], + [ 7.5256361, 47.5357849 ], + [ 7.5258584, 47.5355811 ], + [ 7.5258882, 47.5355543 ], + [ 7.5259188, 47.535528 ], + [ 7.52595, 47.535502 ], + [ 7.5259819, 47.5354764 ], + [ 7.5260145, 47.5354512 ], + [ 7.5260478, 47.5354264 ], + [ 7.5260817, 47.535402 ], + [ 7.5261163, 47.535378 ], + [ 7.5265542, 47.5350757 ], + [ 7.5265759, 47.5350585 ], + [ 7.5265971, 47.5350409 ], + [ 7.5266178, 47.5350231 ], + [ 7.5266379, 47.535005 ], + [ 7.5266575, 47.5349866 ], + [ 7.5266765, 47.5349679 ], + [ 7.526695, 47.534949 ], + [ 7.5268929, 47.5347306 ], + [ 7.5269079, 47.5347134 ], + [ 7.5269236, 47.5346965 ], + [ 7.52694, 47.5346799 ], + [ 7.5269571, 47.5346637 ], + [ 7.5269749, 47.5346477 ], + [ 7.5269934, 47.5346322 ], + [ 7.5270125, 47.5346169 ], + [ 7.5270322, 47.5346021 ], + [ 7.5270525, 47.5345876 ], + [ 7.5270734, 47.5345735 ], + [ 7.527095, 47.5345599 ], + [ 7.5271171, 47.5345466 ], + [ 7.5271397, 47.5345338 ], + [ 7.5276383, 47.5342875 ], + [ 7.5276639, 47.5342584 ], + [ 7.5275486, 47.5341401 ], + [ 7.5272615, 47.5338365 ], + [ 7.5270301, 47.5336157 ], + [ 7.526846, 47.5334257 ], + [ 7.5266818, 47.5333012 ], + [ 7.5261548, 47.5330227 ], + [ 7.5256649, 47.5327864 ], + [ 7.5252631, 47.5331227 ], + [ 7.5248269, 47.5334882 ], + [ 7.5240031, 47.5341817 ], + [ 7.5237155, 47.5344243 ], + [ 7.5238815, 47.5345786 ], + [ 7.523969, 47.5346576 ], + [ 7.5239999, 47.5346854 ], + [ 7.5240134, 47.5346975 ], + [ 7.5240671, 47.5347455 ], + [ 7.5241031, 47.5347775 ], + [ 7.5241202, 47.5347928 ], + [ 7.5241383, 47.5348089 ], + [ 7.5241869999999995, 47.5348524 ], + [ 7.5242082, 47.5348713 ], + [ 7.5242331, 47.5348963 ], + [ 7.5242677, 47.5349313 ], + [ 7.5242933, 47.5349572 ], + [ 7.5243182, 47.5349824 ], + [ 7.5243689, 47.5350336 ], + [ 7.5244207, 47.5350858 ], + [ 7.5244269, 47.5350921 ], + [ 7.5245128, 47.5351862 ], + [ 7.5241087, 47.5354468 ], + [ 7.5238479, 47.5356151 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns234", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Allschwilerwald", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Allschwilerwald", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Allschwilerwald", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Allschwilerwald", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8484177, 47.4838049 ], + [ 7.8488996, 47.4838322 ], + [ 7.8488448, 47.4837332 ], + [ 7.8490212, 47.4834604 ], + [ 7.849242, 47.4832229 ], + [ 7.8495169, 47.4830055 ], + [ 7.8497713000000005, 47.4828323 ], + [ 7.8485785, 47.4828085 ], + [ 7.8484911, 47.4833633 ], + [ 7.8484177, 47.4838049 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns278", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Weier", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Weier", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Weier", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Weier", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8105109, 47.4275884 ], + [ 7.8107199, 47.4276206 ], + [ 7.8109754, 47.427619 ], + [ 7.8111527, 47.427478 ], + [ 7.8114012, 47.4275882 ], + [ 7.8115395, 47.4275937 ], + [ 7.8117517, 47.4274206 ], + [ 7.8118774, 47.4273067 ], + [ 7.8121628, 47.4270155 ], + [ 7.8122885, 47.4268853 ], + [ 7.8123796, 47.4267817 ], + [ 7.8126906, 47.4269433 ], + [ 7.8128344, 47.4267457 ], + [ 7.8129077, 47.4266576 ], + [ 7.813172, 47.4263503 ], + [ 7.8132856, 47.4262422 ], + [ 7.813696, 47.4259317 ], + [ 7.8141193, 47.4256319 ], + [ 7.8143208, 47.4254605 ], + [ 7.8145359, 47.4252417 ], + [ 7.8149739, 47.4249225 ], + [ 7.8152306, 47.4247852 ], + [ 7.8155142, 47.4246278 ], + [ 7.8154156, 47.4246264 ], + [ 7.8142907, 47.4245519 ], + [ 7.8139315, 47.4248116 ], + [ 7.8136882, 47.4249874 ], + [ 7.8131257, 47.4254171 ], + [ 7.8127103, 47.4257436 ], + [ 7.8123081, 47.4260707 ], + [ 7.8119496999999996, 47.4263692 ], + [ 7.8112895, 47.4269289 ], + [ 7.8108746, 47.4272812 ], + [ 7.8105109, 47.4275884 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr129", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Neumatt", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Neumatt", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Neumatt", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Neumatt", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.6485959999999995, 46.5126368 ], + [ 6.6483403, 46.5126408 ], + [ 6.6480855, 46.5126563 ], + [ 6.6478327, 46.5126833 ], + [ 6.647583, 46.5127217 ], + [ 6.6473375, 46.5127712 ], + [ 6.6470972, 46.5128317 ], + [ 6.6468632, 46.512903 ], + [ 6.6466364, 46.5129847 ], + [ 6.6464178, 46.5130764 ], + [ 6.6462084, 46.5131778 ], + [ 6.646009, 46.5132885 ], + [ 6.6458205, 46.5134079 ], + [ 6.6456438, 46.5135355 ], + [ 6.6454795, 46.5136709 ], + [ 6.6453284, 46.5138134 ], + [ 6.6453219, 46.5138201 ], + [ 6.6452868, 46.5138549 ], + [ 6.6451495, 46.5140039 ], + [ 6.6450266, 46.5141588 ], + [ 6.6449187, 46.5143189 ], + [ 6.6448262, 46.5144836 ], + [ 6.6447495, 46.514652 ], + [ 6.6446888, 46.5148236 ], + [ 6.6446446, 46.5149976 ], + [ 6.6446173, 46.5151704 ], + [ 6.6445994, 46.5153311 ], + [ 6.6445991, 46.5153338 ], + [ 6.6445881, 46.5155103 ], + [ 6.6445939, 46.5156868 ], + [ 6.6446164, 46.5158627 ], + [ 6.6446343, 46.5159519 ], + [ 6.6446399, 46.5159856 ], + [ 6.644679, 46.5161601 ], + [ 6.6447346, 46.5163325 ], + [ 6.6448063, 46.516502 ], + [ 6.644894, 46.5166679 ], + [ 6.6449972, 46.5168295 ], + [ 6.6451155, 46.5169861 ], + [ 6.6452484, 46.517137 ], + [ 6.6453953, 46.5172816 ], + [ 6.6455556, 46.5174192 ], + [ 6.6457285, 46.5175493 ], + [ 6.6459135, 46.5176713 ], + [ 6.6461096, 46.5177847 ], + [ 6.646316, 46.5178891 ], + [ 6.6465318, 46.5179838 ], + [ 6.6467562000000004, 46.5180686 ], + [ 6.6469882, 46.5181431 ], + [ 6.6472267, 46.518207 ], + [ 6.6474706999999995, 46.51826 ], + [ 6.6477192, 46.5183018 ], + [ 6.6479712, 46.5183323 ], + [ 6.6482255, 46.5183514 ], + [ 6.6484811, 46.518359 ], + [ 6.6487369, 46.518355 ], + [ 6.6489917, 46.5183395 ], + [ 6.6492417, 46.5183128 ], + [ 6.6493405, 46.518299999999996 ], + [ 6.6493433, 46.5182996 ], + [ 6.6494444999999995, 46.5182855 ], + [ 6.6494612, 46.5182834 ], + [ 6.649711, 46.518245 ], + [ 6.6498445, 46.5182195 ], + [ 6.6499122, 46.5182064 ], + [ 6.6501291, 46.518162 ], + [ 6.6501434, 46.5181588 ], + [ 6.6502038, 46.5181454 ], + [ 6.6504441, 46.5180849 ], + [ 6.6506782, 46.5180136 ], + [ 6.650905, 46.517932 ], + [ 6.6511236, 46.5178402 ], + [ 6.651333, 46.5177388 ], + [ 6.6515324, 46.5176282 ], + [ 6.6517208, 46.5175087 ], + [ 6.6518976, 46.5173811 ], + [ 6.6520618, 46.5172457 ], + [ 6.6522129, 46.5171032 ], + [ 6.6523502, 46.5169542 ], + [ 6.652473, 46.5167993 ], + [ 6.6525809, 46.5166391 ], + [ 6.6526734, 46.5164745 ], + [ 6.6527502, 46.516306 ], + [ 6.6528107, 46.5161345 ], + [ 6.6528549, 46.5159605 ], + [ 6.6528826, 46.515785 ], + [ 6.6528863, 46.5157474 ], + [ 6.6528974, 46.5156232 ], + [ 6.6528992, 46.5156063 ], + [ 6.6529038, 46.5155654 ], + [ 6.6529042, 46.5155616 ], + [ 6.6529150999999995, 46.5153852 ], + [ 6.6529093, 46.5152086 ], + [ 6.6528868, 46.5150327 ], + [ 6.6528477, 46.5148582 ], + [ 6.6527921, 46.5146858 ], + [ 6.6527203, 46.5145163 ], + [ 6.6526326000000005, 46.5143504 ], + [ 6.6525294, 46.5141889 ], + [ 6.6524111, 46.5140323 ], + [ 6.6522782, 46.5138814 ], + [ 6.6521313, 46.5137368 ], + [ 6.651971, 46.5135992 ], + [ 6.651798, 46.5134691 ], + [ 6.6516131, 46.5133471 ], + [ 6.651417, 46.5132337 ], + [ 6.6512106, 46.5131294 ], + [ 6.6509947, 46.5130346 ], + [ 6.6507704, 46.5129498 ], + [ 6.6505384, 46.5128753 ], + [ 6.6503, 46.5128115 ], + [ 6.6500559, 46.5127585 ], + [ 6.6498074, 46.5127167 ], + [ 6.6495555, 46.5126861 ], + [ 6.6493012, 46.5126671 ], + [ 6.6492918, 46.5126666 ], + [ 6.6488422, 46.5126438 ], + [ 6.6485959999999995, 46.5126368 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00025", + "country" : "CHE", + "name" : [ + { + "text" : "Cour de droit administratif et public du Tribunal cantonal", + "lang" : "de-CH" + }, + { + "text" : "Cour de droit administratif et public du Tribunal cantonal", + "lang" : "fr-CH" + }, + { + "text" : "Cour de droit administratif et public du Tribunal cantonal", + "lang" : "it-CH" + }, + { + "text" : "Cour de droit administratif et public du Tribunal cantonal", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kantonspolizei Waadt", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale vaudoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Vaud", + "lang" : "it-CH" + }, + { + "text" : "Vaud Cantonal Police", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.pcv@vd.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.988178, 47.2068616 ], + [ 8.9881907, 47.2067561 ], + [ 8.9877711, 47.2043022 ], + [ 8.9810051, 47.2048864 ], + [ 8.9769513, 47.2111781 ], + [ 8.9773007, 47.2117113 ], + [ 8.9766324, 47.2127547 ], + [ 8.9765528, 47.21286 ], + [ 8.976212199999999, 47.212995 ], + [ 8.9759194, 47.2130809 ], + [ 8.9756809, 47.213163 ], + [ 8.9748733, 47.2144022 ], + [ 8.9820139, 47.2172237 ], + [ 8.9811395, 47.2190146 ], + [ 8.9860873, 47.2189585 ], + [ 8.9888478, 47.218342 ], + [ 8.9968178, 47.2125865 ], + [ 8.9897477, 47.2085506 ], + [ 8.9888615, 47.2087632 ], + [ 8.988178, 47.2068616 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "WZV0003", + "country" : "CHE", + "name" : [ + { + "text" : "Wasser- und Zugvogelreservat Benkner-, Burger- und Kaltbrunner-Riet", + "lang" : "de-CH" + }, + { + "text" : "Réserve d'oiseaux d'eau et de migrateurs Benkner-, Burger- und Kaltbrunner-Riet", + "lang" : "fr-CH" + }, + { + "text" : "Riserva di uccelli acquatici e migratori Benkner-, Burger- und Kaltbrunner-Riet", + "lang" : "it-CH" + }, + { + "text" : "Water Bird and Migratory Bird Reserves Benkner-, Burger- und Kaltbrunner-Riet", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.2626609, 47.337692 ], + [ 7.262656, 47.3375508 ], + [ 7.2626401, 47.3374099 ], + [ 7.2626135, 47.3372698 ], + [ 7.2625761, 47.3371308 ], + [ 7.262528, 47.3369934 ], + [ 7.2624694, 47.3368579 ], + [ 7.2624005, 47.3367246 ], + [ 7.2623214, 47.336594 ], + [ 7.2622324, 47.3364663 ], + [ 7.2621336, 47.336342 ], + [ 7.2620254, 47.3362214 ], + [ 7.2619081, 47.3361048 ], + [ 7.261782, 47.3359925 ], + [ 7.2616474, 47.3358849 ], + [ 7.2615047, 47.3357822 ], + [ 7.2613543, 47.3356847 ], + [ 7.2611966, 47.3355927 ], + [ 7.261032, 47.3355065 ], + [ 7.260861, 47.3354262 ], + [ 7.2606841, 47.3353521 ], + [ 7.2605017, 47.3352844 ], + [ 7.2603143, 47.3352233 ], + [ 7.2601225, 47.335169 ], + [ 7.2599268, 47.3351215 ], + [ 7.2597277, 47.3350811 ], + [ 7.2595257, 47.3350478 ], + [ 7.2593215, 47.3350217 ], + [ 7.2591155, 47.335003 ], + [ 7.2589084, 47.3349916 ], + [ 7.2587007, 47.3349875 ], + [ 7.2584929, 47.3349909 ], + [ 7.2582857, 47.3350017 ], + [ 7.2580797, 47.3350198 ], + [ 7.2578752, 47.3350452 ], + [ 7.2576731, 47.3350779 ], + [ 7.2574737, 47.3351177 ], + [ 7.2572776, 47.3351645 ], + [ 7.2570855, 47.3352183 ], + [ 7.2568977, 47.3352788 ], + [ 7.2567148, 47.3353459 ], + [ 7.2565374, 47.3354194 ], + [ 7.2563659, 47.3354992 ], + [ 7.2562007, 47.3355849 ], + [ 7.2560424, 47.3356764 ], + [ 7.2558913, 47.3357734 ], + [ 7.2557479, 47.3358757 ], + [ 7.2556126, 47.3359829 ], + [ 7.2554857, 47.3360947 ], + [ 7.2553676, 47.336211 ], + [ 7.2552586, 47.3363312 ], + [ 7.255159, 47.3364552 ], + [ 7.2550691, 47.3365826 ], + [ 7.2549890999999995, 47.336713 ], + [ 7.2549193, 47.336846 ], + [ 7.2548598, 47.3369814 ], + [ 7.2548108, 47.3371187 ], + [ 7.2547724, 47.3372575 ], + [ 7.2547448, 47.3373975 ], + [ 7.254728, 47.3375383 ], + [ 7.2547221, 47.3376795 ], + [ 7.2547271, 47.3378208 ], + [ 7.2547429, 47.3379616 ], + [ 7.2547695, 47.3381017 ], + [ 7.2548069, 47.3382407 ], + [ 7.2548549, 47.3383781 ], + [ 7.2549135, 47.3385137 ], + [ 7.2549824, 47.3386469 ], + [ 7.2550615, 47.3387776 ], + [ 7.2551505, 47.3389052 ], + [ 7.2552492, 47.3390295 ], + [ 7.2553574, 47.3391502 ], + [ 7.2554747, 47.3392668 ], + [ 7.2556008, 47.339379 ], + [ 7.2557355, 47.3394867 ], + [ 7.2558781, 47.3395894 ], + [ 7.2560286, 47.3396869 ], + [ 7.2561862999999995, 47.3397789 ], + [ 7.2563508, 47.3398651 ], + [ 7.2565218, 47.3399454 ], + [ 7.2566988, 47.3400195 ], + [ 7.2568812, 47.3400872 ], + [ 7.2570686, 47.3401483 ], + [ 7.2572604, 47.3402027 ], + [ 7.2574561, 47.3402501 ], + [ 7.2576553, 47.3402906 ], + [ 7.2578572, 47.3403239 ], + [ 7.2580615, 47.3403499 ], + [ 7.2582675, 47.3403687 ], + [ 7.2584745999999996, 47.3403801 ], + [ 7.2586824, 47.3403841 ], + [ 7.2588901, 47.3403808 ], + [ 7.2590974, 47.34037 ], + [ 7.2593035, 47.3403519 ], + [ 7.2595079, 47.3403265 ], + [ 7.2597101, 47.3402938 ], + [ 7.2599095, 47.340254 ], + [ 7.2601055, 47.3402071 ], + [ 7.2602977, 47.3401534 ], + [ 7.2604855, 47.3400928 ], + [ 7.2606684, 47.3400257 ], + [ 7.2608458, 47.3399522 ], + [ 7.2610174, 47.3398724 ], + [ 7.2611825, 47.3397867 ], + [ 7.2613409, 47.3396952 ], + [ 7.2614919, 47.3395982 ], + [ 7.2616353, 47.3394959 ], + [ 7.2617707, 47.3393887 ], + [ 7.2618976, 47.3392768 ], + [ 7.2620157, 47.3391606 ], + [ 7.2621246, 47.3390403 ], + [ 7.2622242, 47.3389163 ], + [ 7.2623141, 47.338789 ], + [ 7.2623941, 47.3386586 ], + [ 7.2624639, 47.3385255 ], + [ 7.2625234, 47.3383902 ], + [ 7.2625723, 47.3382529 ], + [ 7.2626107, 47.338114 ], + [ 7.2626383, 47.337974 ], + [ 7.262655, 47.3378332 ], + [ 7.2626609, 47.337692 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0009", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Bassecourt", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Bassecourt", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Bassecourt", + "lang" : "it-CH" + }, + { + "text" : "Substation Bassecourt", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.239315, 46.2562654 ], + [ 6.2390417, 46.2552296 ], + [ 6.2382178, 46.2543452 ], + [ 6.2369688, 46.2537469 ], + [ 6.2354847, 46.2535256 ], + [ 6.2339916, 46.2537152 ], + [ 6.2327167, 46.2542866 ], + [ 6.231854, 46.255153 ], + [ 6.231535, 46.2561825 ], + [ 6.2318081, 46.2572183 ], + [ 6.232632, 46.2581027 ], + [ 6.2338811, 46.2587011 ], + [ 6.2353652, 46.2589224 ], + [ 6.2368585, 46.2587328 ], + [ 6.2381335, 46.2581613 ], + [ 6.2389961, 46.2572949 ], + [ 6.239315, 46.2562654 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-54", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.1341026, 46.3912002 ], + [ 8.1340955, 46.391059 ], + [ 8.1340777, 46.3909183 ], + [ 8.1340492, 46.3907784 ], + [ 8.1340102, 46.3906397 ], + [ 8.1339608, 46.3905026 ], + [ 8.1339011, 46.390367499999996 ], + [ 8.1338312, 46.3902347 ], + [ 8.1337514, 46.3901047 ], + [ 8.1336619, 46.3899777 ], + [ 8.1335629, 46.3898541 ], + [ 8.1334547, 46.3897343 ], + [ 8.1333375, 46.3896186 ], + [ 8.1332118, 46.3895073 ], + [ 8.1330778, 46.3894007 ], + [ 8.132936, 46.389299 ], + [ 8.1327866, 46.3892027 ], + [ 8.1326302, 46.3891119 ], + [ 8.1324671, 46.3890269 ], + [ 8.1322978, 46.3889479 ], + [ 8.1321228, 46.3888751 ], + [ 8.1319425, 46.3888088 ], + [ 8.1317575, 46.3887491 ], + [ 8.1315681, 46.3886962 ], + [ 8.1313751, 46.3886502 ], + [ 8.1311788, 46.3886113 ], + [ 8.1309799, 46.3885795 ], + [ 8.1307788, 46.388555 ], + [ 8.1305761, 46.3885378 ], + [ 8.1303724, 46.3885279 ], + [ 8.1301683, 46.3885255 ], + [ 8.1299642, 46.3885304 ], + [ 8.1297608, 46.3885427 ], + [ 8.1295586, 46.3885624 ], + [ 8.1293582, 46.3885894 ], + [ 8.1291601, 46.3886236 ], + [ 8.1289648, 46.3886649 ], + [ 8.128773, 46.3887132 ], + [ 8.128585, 46.3887684 ], + [ 8.1284015, 46.3888304 ], + [ 8.128223, 46.3888989 ], + [ 8.1280498, 46.3889738 ], + [ 8.1278826, 46.3890548 ], + [ 8.1277217, 46.3891418 ], + [ 8.1275676, 46.3892345 ], + [ 8.1274207, 46.3893327 ], + [ 8.1272815, 46.389436 ], + [ 8.127150199999999, 46.3895442 ], + [ 8.1270274, 46.3896571 ], + [ 8.1269132, 46.3897742 ], + [ 8.126808, 46.3898953 ], + [ 8.1267122, 46.3900201 ], + [ 8.1266259, 46.3901481 ], + [ 8.1265494, 46.3902791 ], + [ 8.1264829, 46.3904127 ], + [ 8.1264267, 46.3905485 ], + [ 8.1263807, 46.3906862 ], + [ 8.1263453, 46.3908253 ], + [ 8.1263204, 46.3909656 ], + [ 8.1263062, 46.3911065 ], + [ 8.1263026, 46.3912478 ], + [ 8.1263097, 46.391389 ], + [ 8.1263275, 46.3915297 ], + [ 8.126356, 46.3916696 ], + [ 8.1263949, 46.3918083 ], + [ 8.1264443, 46.3919454 ], + [ 8.1265041, 46.3920805 ], + [ 8.1265739, 46.3922133 ], + [ 8.1266537, 46.3923433 ], + [ 8.1267432, 46.3924703 ], + [ 8.1268422, 46.3925939 ], + [ 8.1269504, 46.3927137 ], + [ 8.1270676, 46.3928294 ], + [ 8.1271933, 46.3929408 ], + [ 8.1273273, 46.3930474 ], + [ 8.1274691, 46.393149 ], + [ 8.1276184, 46.3932454 ], + [ 8.1277749, 46.3933362 ], + [ 8.127938, 46.3934212 ], + [ 8.1281073, 46.3935002 ], + [ 8.1282823, 46.393573 ], + [ 8.1284626, 46.3936393 ], + [ 8.1286477, 46.393699 ], + [ 8.128837, 46.3937519 ], + [ 8.1290301, 46.3937979 ], + [ 8.1292264, 46.3938368 ], + [ 8.1294253, 46.3938686 ], + [ 8.1296264, 46.3938931 ], + [ 8.1298291, 46.3939104 ], + [ 8.1300328, 46.3939202 ], + [ 8.130237, 46.3939226 ], + [ 8.1304411, 46.3939177 ], + [ 8.1306445, 46.3939054 ], + [ 8.1308467, 46.3938857 ], + [ 8.1310471, 46.3938587 ], + [ 8.1312453, 46.3938245 ], + [ 8.1314405, 46.3937832 ], + [ 8.1316324, 46.3937349 ], + [ 8.1318204, 46.3936797 ], + [ 8.1320039, 46.3936177 ], + [ 8.1321825, 46.3935492 ], + [ 8.1323556, 46.3934743 ], + [ 8.1325229, 46.3933933 ], + [ 8.1326838, 46.3933063 ], + [ 8.1328379, 46.3932136 ], + [ 8.1329848, 46.3931154 ], + [ 8.133124, 46.3930121 ], + [ 8.1332552, 46.3929038 ], + [ 8.1333781, 46.392791 ], + [ 8.1334923, 46.3926738 ], + [ 8.1335974, 46.3925527 ], + [ 8.1336932, 46.392428 ], + [ 8.1337795, 46.3922999 ], + [ 8.133856, 46.3921689 ], + [ 8.1339224, 46.3920353 ], + [ 8.1339787, 46.3918995 ], + [ 8.1340246, 46.3917618 ], + [ 8.13406, 46.3916227 ], + [ 8.1340849, 46.3914824 ], + [ 8.1340991, 46.3913415 ], + [ 8.1341026, 46.3912002 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0031", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Ernen", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Ernen", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Ernen", + "lang" : "it-CH" + }, + { + "text" : "Substation Ernen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5964185, 46.7592425 ], + [ 7.5969142, 46.7595486 ], + [ 7.5958382, 46.7604244 ], + [ 7.5970601, 46.7610893 ], + [ 7.5973708, 46.7608172 ], + [ 7.598376, 46.7603094 ], + [ 7.5997116, 46.7591705 ], + [ 7.5989105, 46.7587191 ], + [ 7.6029945, 46.7553139 ], + [ 7.6034403, 46.755584 ], + [ 7.6046426, 46.7545739 ], + [ 7.6041837, 46.7543074 ], + [ 7.6048352, 46.7537757 ], + [ 7.6028399, 46.7527063 ], + [ 7.6021767, 46.7532587 ], + [ 7.6019316, 46.753134 ], + [ 7.6004119, 46.7544018 ], + [ 7.6006532, 46.7545454 ], + [ 7.597262, 46.7576527 ], + [ 7.5967346, 46.7581077 ], + [ 7.5964916, 46.7582907 ], + [ 7.5960604, 46.7585423 ], + [ 7.5959141, 46.758618 ], + [ 7.5956475, 46.7587839 ], + [ 7.5964185, 46.7592425 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZW002", + "country" : "CHE", + "name" : [ + { + "text" : "LSZW Thun (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSZW Thun (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSZW Thun (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSZW Thun (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Thun Airfield", + "lang" : "de-CH" + }, + { + "text" : "Thun Airfield", + "lang" : "fr-CH" + }, + { + "text" : "Thun Airfield", + "lang" : "it-CH" + }, + { + "text" : "Thun Airfield", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "André Schneeberger", + "lang" : "de-CH" + }, + { + "text" : "André Schneeberger", + "lang" : "fr-CH" + }, + { + "text" : "André Schneeberger", + "lang" : "it-CH" + }, + { + "text" : "André Schneeberger", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.thun-airfield.ch", + "email" : "flugplatzleitung@thun-airfield.ch", + "phone" : "0041332224214", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P02DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7796427, 47.499491 ], + [ 7.7795814, 47.4994795 ], + [ 7.7795199, 47.4994685 ], + [ 7.7794582, 47.4994581 ], + [ 7.7793706, 47.4994436 ], + [ 7.7790137, 47.4993845 ], + [ 7.7789629, 47.4993764 ], + [ 7.778912, 47.4993688 ], + [ 7.7788609, 47.4993617 ], + [ 7.7788096, 47.4993551 ], + [ 7.7787583, 47.499349 ], + [ 7.7787067, 47.4993435 ], + [ 7.7786551, 47.4993385 ], + [ 7.7786034, 47.499334 ], + [ 7.7784538, 47.4993218 ], + [ 7.7784137, 47.4993184 ], + [ 7.7783735, 47.499315 ], + [ 7.7783334, 47.4993115 ], + [ 7.7782933, 47.4993078 ], + [ 7.7782641, 47.4993054 ], + [ 7.7782349, 47.4993033 ], + [ 7.7782056, 47.4993018 ], + [ 7.7781762, 47.4993007 ], + [ 7.7781468, 47.4993 ], + [ 7.7781232, 47.4992999 ], + [ 7.7780995, 47.4992996 ], + [ 7.7780758, 47.4992992 ], + [ 7.7780521, 47.4992987 ], + [ 7.7777316, 47.4992907 ], + [ 7.7776791, 47.4992891 ], + [ 7.7776266, 47.499287 ], + [ 7.7775905, 47.4992852 ], + [ 7.7775742, 47.4992844 ], + [ 7.7775218, 47.4992812 ], + [ 7.7774695, 47.4992776 ], + [ 7.7774173, 47.4992734 ], + [ 7.7773652, 47.4992687 ], + [ 7.7773388, 47.4992658 ], + [ 7.7773126999999995, 47.4992624 ], + [ 7.7772867, 47.4992583 ], + [ 7.7772609, 47.4992537 ], + [ 7.7772354, 47.4992484 ], + [ 7.7772101, 47.4992425 ], + [ 7.7771852, 47.4992361 ], + [ 7.7771606, 47.4992291 ], + [ 7.7771364, 47.4992214 ], + [ 7.7771127, 47.4992133 ], + [ 7.7770893, 47.4992046 ], + [ 7.7770664, 47.4991953 ], + [ 7.777044, 47.4991855 ], + [ 7.777022, 47.4991752 ], + [ 7.7770007, 47.4991644 ], + [ 7.7769799, 47.4991531 ], + [ 7.7769597, 47.4991413 ], + [ 7.7768865, 47.4990968 ], + [ 7.7768135, 47.4990521 ], + [ 7.776741, 47.4990072 ], + [ 7.7766687, 47.498962 ], + [ 7.776636, 47.4989421 ], + [ 7.7766029, 47.4989225 ], + [ 7.7765695, 47.4989032 ], + [ 7.7765357, 47.4988841 ], + [ 7.7765131, 47.498871199999996 ], + [ 7.7764911, 47.4988578 ], + [ 7.7764697, 47.498844 ], + [ 7.7764489, 47.4988298 ], + [ 7.7764286, 47.4988152 ], + [ 7.776409, 47.4988002 ], + [ 7.7763901, 47.4987849 ], + [ 7.7763717, 47.4987691 ], + [ 7.7763541, 47.4987531 ], + [ 7.7763371, 47.4987367 ], + [ 7.7763209, 47.49872 ], + [ 7.7763053, 47.4987029 ], + [ 7.7762919, 47.4986872 ], + [ 7.7762792, 47.4986711 ], + [ 7.7762671999999995, 47.4986548 ], + [ 7.7762561, 47.4986383 ], + [ 7.7762458, 47.4986215 ], + [ 7.7762362, 47.4986044 ], + [ 7.7762275, 47.4985872 ], + [ 7.7762196, 47.4985698 ], + [ 7.7762125, 47.4985523 ], + [ 7.7762063, 47.4985346 ], + [ 7.7761983, 47.4985088 ], + [ 7.7761911, 47.4984829 ], + [ 7.7761847, 47.498457 ], + [ 7.7761792, 47.4984309 ], + [ 7.7761745, 47.4984048 ], + [ 7.7761706, 47.4983786 ], + [ 7.7761676, 47.4983523 ], + [ 7.7761595, 47.4982718 ], + [ 7.7761566, 47.498239 ], + [ 7.7761543, 47.4982062 ], + [ 7.7761534999999995, 47.4981884 ], + [ 7.7761528, 47.4981734 ], + [ 7.7761521, 47.4981405 ], + [ 7.776152, 47.4981077 ], + [ 7.7761526, 47.4980847 ], + [ 7.7761541, 47.4980618 ], + [ 7.7761564, 47.4980388 ], + [ 7.7761595, 47.498016 ], + [ 7.7761634, 47.4979932 ], + [ 7.7761682, 47.4979704 ], + [ 7.7761738, 47.4979477 ], + [ 7.7761802, 47.4979252 ], + [ 7.7761873999999995, 47.4979027 ], + [ 7.7761954, 47.4978804 ], + [ 7.7762042000000005, 47.4978582 ], + [ 7.7762138, 47.4978362 ], + [ 7.7762919, 47.4976652 ], + [ 7.7762986, 47.4976496 ], + [ 7.7763046, 47.4976339 ], + [ 7.7763099, 47.4976181 ], + [ 7.7763145, 47.4976022 ], + [ 7.7763174, 47.4975907 ], + [ 7.7763185, 47.4975862 ], + [ 7.7763216, 47.4975701 ], + [ 7.7763241, 47.497554 ], + [ 7.7763249, 47.4975442 ], + [ 7.7763248, 47.4975344 ], + [ 7.7763237, 47.4975247 ], + [ 7.7763217000000004, 47.497515 ], + [ 7.7763188, 47.4975054 ], + [ 7.776315, 47.4974959 ], + [ 7.7763103000000005, 47.4974867 ], + [ 7.7763047, 47.4974777 ], + [ 7.7762983, 47.4974689 ], + [ 7.7762911, 47.4974604 ], + [ 7.776283, 47.4974523 ], + [ 7.7762743, 47.4974445 ], + [ 7.7762647, 47.4974372 ], + [ 7.7762545, 47.4974302 ], + [ 7.7762437, 47.4974238 ], + [ 7.7762095, 47.4974049 ], + [ 7.7761748, 47.4973864 ], + [ 7.7761397, 47.4973683 ], + [ 7.7761042, 47.4973505 ], + [ 7.7760683, 47.4973332 ], + [ 7.776043, 47.4973215 ], + [ 7.7760172999999995, 47.4973103 ], + [ 7.7759911, 47.4972996 ], + [ 7.7759792999999995, 47.4972951 ], + [ 7.7755197, 47.4975132 ], + [ 7.7749876, 47.4977634 ], + [ 7.7748671, 47.4978344 ], + [ 7.7748632, 47.4978768 ], + [ 7.7748512, 47.4979503 ], + [ 7.7748101, 47.4980437 ], + [ 7.7747898, 47.4981426 ], + [ 7.7747944, 47.4982076 ], + [ 7.7748146, 47.4982893 ], + [ 7.7748201, 47.4983149 ], + [ 7.7748248, 47.4984025 ], + [ 7.7748503, 47.4984702 ], + [ 7.7748798, 47.4985238 ], + [ 7.7749135, 47.4985831 ], + [ 7.7749348, 47.4986424 ], + [ 7.7749767, 47.4986846 ], + [ 7.7749897, 47.4987496 ], + [ 7.7750192, 47.4988145 ], + [ 7.7750658999999995, 47.498933 ], + [ 7.7750956, 47.4990262 ], + [ 7.7751044, 47.499094 ], + [ 7.7751215, 47.4991617 ], + [ 7.7751385, 47.4992154 ], + [ 7.7751557, 47.4992973 ], + [ 7.7751688, 47.4993933 ], + [ 7.7751695, 47.4995035 ], + [ 7.7751535, 47.4995996 ], + [ 7.7751248, 47.4996732 ], + [ 7.7751292, 47.4997212 ], + [ 7.7751461, 47.4997579 ], + [ 7.7751632, 47.4998115 ], + [ 7.7752303, 47.499882 ], + [ 7.7752769, 47.4999892 ], + [ 7.7753169, 47.5000657 ], + [ 7.7755062, 47.5001105 ], + [ 7.7755406, 47.5001037 ], + [ 7.7757477999999995, 47.5001596 ], + [ 7.7761005, 47.5003565 ], + [ 7.7762594, 47.5004136 ], + [ 7.7764521, 47.5004435 ], + [ 7.7769781, 47.5005133 ], + [ 7.7771759, 47.500524 ], + [ 7.7773727, 47.5005183 ], + [ 7.7777689, 47.5004853 ], + [ 7.7779518, 47.500462 ], + [ 7.7781292, 47.500415 ], + [ 7.7785632, 47.5002847 ], + [ 7.7787422, 47.5002464 ], + [ 7.778748, 47.5002583 ], + [ 7.7789681999999996, 47.5002195 ], + [ 7.7789959, 47.500215 ], + [ 7.7790239, 47.500211 ], + [ 7.779052, 47.5002076 ], + [ 7.7790803, 47.5002049 ], + [ 7.7791087, 47.5002027 ], + [ 7.7791372, 47.5002012 ], + [ 7.7791657, 47.5002003 ], + [ 7.7791932, 47.5002 ], + [ 7.7792207, 47.5002002 ], + [ 7.7792482, 47.500201 ], + [ 7.7792757, 47.5002023 ], + [ 7.779303, 47.5002042 ], + [ 7.7793303, 47.5002065 ], + [ 7.7793575, 47.5002095 ], + [ 7.7793845, 47.5002129 ], + [ 7.7794114, 47.5002169 ], + [ 7.7794381, 47.5002214 ], + [ 7.7794491, 47.5002237 ], + [ 7.7794598, 47.5002266 ], + [ 7.7794701, 47.50023 ], + [ 7.7794799, 47.5002341 ], + [ 7.7794893, 47.5002386 ], + [ 7.779498, 47.5002437 ], + [ 7.7795061, 47.5002492 ], + [ 7.7795135, 47.5002551 ], + [ 7.7795202, 47.5002615 ], + [ 7.7795261, 47.5002682 ], + [ 7.7795312, 47.5002752 ], + [ 7.7795354, 47.5002824 ], + [ 7.7795388, 47.5002899 ], + [ 7.7795423, 47.5003002 ], + [ 7.7795449, 47.5003107 ], + [ 7.7795466, 47.5003213 ], + [ 7.7795474, 47.5003319 ], + [ 7.7795472, 47.5003426 ], + [ 7.7795462, 47.5003532 ], + [ 7.7795442, 47.5003638 ], + [ 7.7795414, 47.5003742 ], + [ 7.7795376, 47.5003846 ], + [ 7.779533, 47.5003947 ], + [ 7.7795275, 47.5004047 ], + [ 7.7795212, 47.5004145 ], + [ 7.779514, 47.5004239 ], + [ 7.7795061, 47.5004331 ], + [ 7.7794973, 47.500442 ], + [ 7.7794878, 47.5004504 ], + [ 7.7794701, 47.500465 ], + [ 7.7794517, 47.5004791 ], + [ 7.7794327, 47.5004929 ], + [ 7.7794131, 47.5005063 ], + [ 7.779393, 47.5005193 ], + [ 7.7793723, 47.5005319 ], + [ 7.779351, 47.5005441 ], + [ 7.7793292, 47.5005558 ], + [ 7.7793069, 47.5005671 ], + [ 7.7792842, 47.5005779 ], + [ 7.7791543999999995, 47.5006378 ], + [ 7.7791205, 47.5006535 ], + [ 7.7791007, 47.500663 ], + [ 7.7790813, 47.500673 ], + [ 7.7790625, 47.5006835 ], + [ 7.7790443, 47.5006945 ], + [ 7.7790267, 47.5007059 ], + [ 7.7790098, 47.5007177 ], + [ 7.7789934, 47.5007299 ], + [ 7.7789778, 47.5007426 ], + [ 7.7789628, 47.5007556 ], + [ 7.7789486, 47.5007689 ], + [ 7.778935, 47.5007827 ], + [ 7.7789223, 47.5007967 ], + [ 7.7789103, 47.500811 ], + [ 7.778899, 47.5008257 ], + [ 7.7788397, 47.5009066 ], + [ 7.778823, 47.5009289 ], + [ 7.7788055, 47.5009509 ], + [ 7.7787873, 47.5009726 ], + [ 7.7787685, 47.5009941 ], + [ 7.7787489, 47.5010152 ], + [ 7.7787287, 47.5010361 ], + [ 7.7787078, 47.5010567 ], + [ 7.7786863, 47.501077 ], + [ 7.7786522, 47.5011088 ], + [ 7.7786187, 47.501141 ], + [ 7.778586, 47.5011734 ], + [ 7.7785539, 47.5012062 ], + [ 7.7785074, 47.5011965 ], + [ 7.7782143999999995, 47.5015066 ], + [ 7.7779636, 47.5017433 ], + [ 7.7777735, 47.5018506 ], + [ 7.7775468, 47.5019098 ], + [ 7.7771493, 47.5019574 ], + [ 7.7768925, 47.5019694 ], + [ 7.7766725999999995, 47.5019798 ], + [ 7.776634, 47.5019854 ], + [ 7.7764646, 47.5020099 ], + [ 7.7764014, 47.502019 ], + [ 7.7761187, 47.5021364 ], + [ 7.7758755, 47.5022752 ], + [ 7.7757132, 47.5023451 ], + [ 7.7754766, 47.5023925 ], + [ 7.7747744999999995, 47.5025195 ], + [ 7.7747132, 47.5026078 ], + [ 7.7747412, 47.5026424 ], + [ 7.7747334, 47.5026524 ], + [ 7.7747228, 47.5026676 ], + [ 7.774713, 47.502683 ], + [ 7.774704, 47.5026986 ], + [ 7.7746957, 47.5027144 ], + [ 7.7746883, 47.5027304 ], + [ 7.7746817, 47.5027466 ], + [ 7.7746759, 47.5027629 ], + [ 7.7746709, 47.5027793 ], + [ 7.7746668, 47.5027958 ], + [ 7.7745818, 47.5031766 ], + [ 7.7745762, 47.5032034 ], + [ 7.7745713, 47.5032303 ], + [ 7.7745672, 47.5032572 ], + [ 7.7745638, 47.5032842 ], + [ 7.7745611, 47.5033112 ], + [ 7.7745592, 47.5033382 ], + [ 7.774551, 47.5034809 ], + [ 7.7745495, 47.5035073 ], + [ 7.7765334, 47.5035941 ], + [ 7.7766221, 47.5036813 ], + [ 7.7767186, 47.5037658 ], + [ 7.7768649, 47.5038247 ], + [ 7.7770568, 47.5038439 ], + [ 7.7771693, 47.5038266 ], + [ 7.7772389, 47.5037941 ], + [ 7.7772275, 47.5037847 ], + [ 7.7772118, 47.5037709 ], + [ 7.7772043, 47.5037638 ], + [ 7.7771969, 47.5037568 ], + [ 7.7771827, 47.5037422 ], + [ 7.7771744, 47.5037331 ], + [ 7.7771693, 47.5037274 ], + [ 7.7771567, 47.5037122 ], + [ 7.7771448, 47.5036968 ], + [ 7.7771338, 47.503681 ], + [ 7.7771269, 47.5036702 ], + [ 7.7771235999999995, 47.5036651 ], + [ 7.7771143, 47.5036488 ], + [ 7.7771058, 47.5036324 ], + [ 7.7771006, 47.503621 ], + [ 7.7770964, 47.5036094 ], + [ 7.7770931, 47.5035976 ], + [ 7.7770908, 47.5035858 ], + [ 7.7770893, 47.5035739 ], + [ 7.7770887, 47.5035619 ], + [ 7.7770890999999995, 47.5035499 ], + [ 7.7770904, 47.503538 ], + [ 7.7770927, 47.5035262 ], + [ 7.7770958, 47.5035144 ], + [ 7.7770999, 47.5035027 ], + [ 7.7771049, 47.5034913 ], + [ 7.7771102, 47.5034811 ], + [ 7.7771164, 47.5034712 ], + [ 7.7771235, 47.5034616 ], + [ 7.7771314, 47.5034522 ], + [ 7.7771401000000004, 47.5034432 ], + [ 7.7771495999999996, 47.5034346 ], + [ 7.7771599, 47.5034264 ], + [ 7.7771709, 47.5034186 ], + [ 7.7771825, 47.5034112 ], + [ 7.7771948, 47.5034044 ], + [ 7.7772076, 47.5033981 ], + [ 7.777221, 47.5033922 ], + [ 7.7772349, 47.503387000000004 ], + [ 7.7772492, 47.5033823 ], + [ 7.7772639, 47.5033782 ], + [ 7.777279, 47.5033748 ], + [ 7.7772943, 47.5033719 ], + [ 7.7780441, 47.5032483 ], + [ 7.7780891, 47.5032406 ], + [ 7.7781339, 47.5032322 ], + [ 7.7781785, 47.5032233 ], + [ 7.7782228, 47.5032137 ], + [ 7.7782668, 47.5032036 ], + [ 7.7783105, 47.5031929 ], + [ 7.7783539, 47.5031816 ], + [ 7.7783969, 47.5031697 ], + [ 7.7784396000000005, 47.5031573 ], + [ 7.7784819, 47.5031442 ], + [ 7.7785239, 47.5031307 ], + [ 7.7785654, 47.5031165 ], + [ 7.7785926, 47.503106700000004 ], + [ 7.7786193, 47.5030962 ], + [ 7.7786456, 47.5030853 ], + [ 7.7786713, 47.5030737 ], + [ 7.7786965, 47.5030617 ], + [ 7.7787211, 47.5030491 ], + [ 7.7787451, 47.503036 ], + [ 7.7787685, 47.5030224 ], + [ 7.7787913, 47.5030083 ], + [ 7.7788134, 47.5029937 ], + [ 7.7788348, 47.5029787 ], + [ 7.7788555, 47.502963199999996 ], + [ 7.7788755, 47.5029473 ], + [ 7.7788948, 47.502931 ], + [ 7.7789133, 47.5029143 ], + [ 7.7789311, 47.5028972 ], + [ 7.778948, 47.5028797 ], + [ 7.7789641, 47.5028619 ], + [ 7.7789794, 47.5028438 ], + [ 7.7789939, 47.5028253 ], + [ 7.7790075, 47.5028066 ], + [ 7.7790202, 47.5027876 ], + [ 7.7790321, 47.5027683 ], + [ 7.7790431, 47.5027487 ], + [ 7.7790531, 47.502729 ], + [ 7.7790623, 47.502709 ], + [ 7.7790704999999996, 47.5026889 ], + [ 7.7790778, 47.5026686 ], + [ 7.7790842, 47.5026482 ], + [ 7.7790896, 47.5026276 ], + [ 7.77913, 47.5024595 ], + [ 7.7791361, 47.5024363 ], + [ 7.7791429, 47.5024133 ], + [ 7.7791507, 47.5023904 ], + [ 7.7791594, 47.5023676 ], + [ 7.7791689, 47.502345 ], + [ 7.7791793, 47.5023226 ], + [ 7.7791905, 47.5023003 ], + [ 7.7792025, 47.5022783 ], + [ 7.7792154, 47.5022565 ], + [ 7.7792331, 47.5022285 ], + [ 7.7792517, 47.5022008 ], + [ 7.7792711, 47.5021734 ], + [ 7.7792914, 47.5021463 ], + [ 7.7793125, 47.5021194 ], + [ 7.7793345, 47.5020929 ], + [ 7.7793573, 47.5020667 ], + [ 7.779381, 47.5020409 ], + [ 7.7794054, 47.5020154 ], + [ 7.7794307, 47.5019902 ], + [ 7.7794567, 47.5019655 ], + [ 7.7794834999999996, 47.5019411 ], + [ 7.7795153, 47.5019681 ], + [ 7.779647, 47.5019968 ], + [ 7.7797678999999995, 47.5019908 ], + [ 7.7799262, 47.5019592 ], + [ 7.7801636, 47.5019133 ], + [ 7.7804625, 47.5017146 ], + [ 7.7806619, 47.5015925 ], + [ 7.7808449, 47.5015157 ], + [ 7.7810318, 47.5014049 ], + [ 7.7811354, 47.5013142 ], + [ 7.7813813, 47.5012852 ], + [ 7.7814895, 47.5012482 ], + [ 7.7815349, 47.5011802 ], + [ 7.7815508, 47.5010643 ], + [ 7.7815503, 47.500988 ], + [ 7.7816041, 47.5009229 ], + [ 7.7816847, 47.5008464 ], + [ 7.7817118, 47.5008121 ], + [ 7.7817381, 47.5008109 ], + [ 7.7817643, 47.5008103 ], + [ 7.7817906, 47.5008103 ], + [ 7.7818169, 47.500811 ], + [ 7.7818431, 47.5008123 ], + [ 7.7818692, 47.5008142 ], + [ 7.7818952, 47.5008167 ], + [ 7.7819211, 47.5008199 ], + [ 7.7819468, 47.5008236 ], + [ 7.7819722, 47.500828 ], + [ 7.7819975, 47.5008329 ], + [ 7.7820224, 47.5008385 ], + [ 7.7825092, 47.5009531 ], + [ 7.782523, 47.500956 ], + [ 7.782537, 47.5009583 ], + [ 7.7825512, 47.5009599 ], + [ 7.7825655, 47.5009609 ], + [ 7.7825799, 47.5009613 ], + [ 7.7825942999999995, 47.500961 ], + [ 7.7826087, 47.5009601 ], + [ 7.7826229, 47.5009586 ], + [ 7.782637, 47.5009564 ], + [ 7.7826508, 47.5009536 ], + [ 7.7826643, 47.5009502 ], + [ 7.7826774, 47.5009462 ], + [ 7.7827531, 47.5009212 ], + [ 7.7827627, 47.5009176 ], + [ 7.782772, 47.5009136 ], + [ 7.7827807, 47.5009091 ], + [ 7.7827888, 47.5009042 ], + [ 7.7827964, 47.5008988 ], + [ 7.7828033, 47.5008931 ], + [ 7.7828096, 47.5008869 ], + [ 7.7828151, 47.5008805 ], + [ 7.7828198, 47.5008738 ], + [ 7.7828247, 47.5008654 ], + [ 7.7828288, 47.5008568 ], + [ 7.7828321, 47.5008481 ], + [ 7.7828345, 47.5008392 ], + [ 7.7828361, 47.5008302 ], + [ 7.7828368, 47.5008212 ], + [ 7.7828365999999995, 47.5008122 ], + [ 7.7828356, 47.5008032 ], + [ 7.7828337, 47.5007942 ], + [ 7.7828309, 47.5007854 ], + [ 7.7828274, 47.5007767 ], + [ 7.782823, 47.5007682 ], + [ 7.7828178, 47.5007598 ], + [ 7.7828155, 47.5007567 ], + [ 7.7828118, 47.5007518 ], + [ 7.7828051, 47.500744 ], + [ 7.7827766, 47.500714 ], + [ 7.7827475, 47.5006843 ], + [ 7.7827177, 47.5006549 ], + [ 7.7826872, 47.5006259 ], + [ 7.7826561, 47.5005972 ], + [ 7.7826242, 47.500568799999996 ], + [ 7.7825917, 47.5005408 ], + [ 7.7825586, 47.5005131 ], + [ 7.7825248, 47.5004858 ], + [ 7.7824704, 47.5004421 ], + [ 7.7824165, 47.5003981 ], + [ 7.7823632, 47.5003537 ], + [ 7.7823105, 47.5003091 ], + [ 7.7822461, 47.5002541 ], + [ 7.782225, 47.5002365 ], + [ 7.782203, 47.5002193 ], + [ 7.7821804, 47.5002025 ], + [ 7.7821571, 47.5001862 ], + [ 7.7821332, 47.5001703 ], + [ 7.7821086, 47.5001549 ], + [ 7.7820833, 47.5001399 ], + [ 7.7820575, 47.5001255 ], + [ 7.782031, 47.5001115 ], + [ 7.782004, 47.5000981 ], + [ 7.7819764, 47.5000851 ], + [ 7.7819484, 47.5000727 ], + [ 7.7819198, 47.5000608 ], + [ 7.7818907, 47.5000495 ], + [ 7.7818612, 47.5000388 ], + [ 7.7818313, 47.5000286 ], + [ 7.7818009, 47.5000189 ], + [ 7.7812864, 47.4998618 ], + [ 7.7812369, 47.499847 ], + [ 7.781187, 47.4998328 ], + [ 7.7811368, 47.4998192 ], + [ 7.781103, 47.4998105 ], + [ 7.7810827, 47.4998053 ], + [ 7.7810363, 47.4997939 ], + [ 7.780942, 47.4997732 ], + [ 7.780383, 47.4996581 ], + [ 7.7799458999999995, 47.4995561 ], + [ 7.7798857, 47.4995421 ], + [ 7.7798253, 47.4995286 ], + [ 7.7797647, 47.4995156 ], + [ 7.7797038, 47.499503 ], + [ 7.7796427, 47.499491 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns006", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Eileten - Dumberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Eileten - Dumberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Eileten - Dumberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Eileten - Dumberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.3123336, 46.0317045 ], + [ 7.3123286, 46.0315633 ], + [ 7.312313, 46.0314224 ], + [ 7.3122869, 46.0312823 ], + [ 7.3122502, 46.0311433 ], + [ 7.3122032, 46.0310059 ], + [ 7.3121459, 46.0308704 ], + [ 7.3120785, 46.0307371 ], + [ 7.3120012, 46.0306065 ], + [ 7.3119141, 46.0304789 ], + [ 7.3118176, 46.0303546 ], + [ 7.3117119, 46.030234 ], + [ 7.3115973, 46.0301175 ], + [ 7.3114741, 46.0300052 ], + [ 7.3113426, 46.0298977 ], + [ 7.3112032, 46.029795 ], + [ 7.3110563, 46.0296976 ], + [ 7.3109023, 46.0296057 ], + [ 7.3107416, 46.0295195 ], + [ 7.3105746, 46.0294393 ], + [ 7.3104019000000005, 46.0293652 ], + [ 7.3102238, 46.0292976 ], + [ 7.3100408, 46.0292366 ], + [ 7.3098536, 46.0291823 ], + [ 7.3096625, 46.0291349 ], + [ 7.3094681, 46.0290946 ], + [ 7.3092709, 46.0290614 ], + [ 7.3090716, 46.0290354 ], + [ 7.3088705, 46.0290167 ], + [ 7.3086683, 46.0290054 ], + [ 7.3084656, 46.0290014 ], + [ 7.3082628, 46.0290049 ], + [ 7.3080606, 46.0290157 ], + [ 7.3078594, 46.029034 ], + [ 7.3076599, 46.0290595 ], + [ 7.3074626, 46.0290922 ], + [ 7.307268, 46.0291321 ], + [ 7.3070767, 46.0291791 ], + [ 7.3068892, 46.0292329 ], + [ 7.306706, 46.0292935 ], + [ 7.3065275, 46.0293607 ], + [ 7.3063544, 46.0294343 ], + [ 7.3061871, 46.0295142 ], + [ 7.3060259, 46.0296 ], + [ 7.3058715, 46.0296916 ], + [ 7.3057241, 46.0297886 ], + [ 7.3055842, 46.0298909 ], + [ 7.3054522, 46.0299982 ], + [ 7.3053285, 46.0301102 ], + [ 7.3052133, 46.0302265 ], + [ 7.305107, 46.0303468 ], + [ 7.3050099, 46.0304708 ], + [ 7.3049223, 46.0305983 ], + [ 7.3048443, 46.0307287 ], + [ 7.3047763, 46.0308618 ], + [ 7.3047183, 46.0309972 ], + [ 7.3046707, 46.0311345 ], + [ 7.3046333, 46.0312734 ], + [ 7.3046065, 46.0314134 ], + [ 7.3045903, 46.0315543 ], + [ 7.3045846, 46.0316955 ], + [ 7.3045896, 46.0318367 ], + [ 7.3046051, 46.0319776 ], + [ 7.3046313, 46.0321177 ], + [ 7.3046679, 46.0322567 ], + [ 7.3047149000000005, 46.0323941 ], + [ 7.3047722, 46.0325296 ], + [ 7.3048396, 46.0326629 ], + [ 7.3049169, 46.0327935 ], + [ 7.3050039, 46.0329212 ], + [ 7.3051004, 46.0330454 ], + [ 7.3052061, 46.033166 ], + [ 7.3053207, 46.0332826 ], + [ 7.3054439, 46.0333948 ], + [ 7.3055754, 46.0335024 ], + [ 7.3057147, 46.0336051 ], + [ 7.3058616, 46.0337025 ], + [ 7.3060157, 46.0337944 ], + [ 7.3061764, 46.0338806 ], + [ 7.3063434, 46.0339609 ], + [ 7.3065162, 46.0340349 ], + [ 7.3066943, 46.0341025 ], + [ 7.3068772, 46.0341636 ], + [ 7.3070645, 46.0342178 ], + [ 7.3072555999999995, 46.0342652 ], + [ 7.30745, 46.0343056 ], + [ 7.3076472, 46.0343388 ], + [ 7.3078465999999995, 46.0343648 ], + [ 7.3080476, 46.0343835 ], + [ 7.3082498, 46.0343948 ], + [ 7.3084526, 46.0343987 ], + [ 7.3086554, 46.0343953 ], + [ 7.3088577, 46.0343844 ], + [ 7.3090588, 46.0343662 ], + [ 7.3092583, 46.0343407 ], + [ 7.3094557, 46.0343079 ], + [ 7.3096503, 46.034268 ], + [ 7.3098416, 46.0342211 ], + [ 7.3100291, 46.0341672 ], + [ 7.3102124, 46.0341066 ], + [ 7.3103908, 46.0340394 ], + [ 7.3105639, 46.0339658 ], + [ 7.3107313, 46.0338859 ], + [ 7.3108924, 46.0338001 ], + [ 7.3110469, 46.0337085 ], + [ 7.3111943, 46.0336115 ], + [ 7.3113341, 46.0335091 ], + [ 7.3114661, 46.0334019 ], + [ 7.3115898999999995, 46.0332899 ], + [ 7.3117051, 46.0331736 ], + [ 7.3118113000000005, 46.0330533 ], + [ 7.3119084, 46.0329292 ], + [ 7.311996, 46.0328018 ], + [ 7.312074, 46.0326713 ], + [ 7.312142, 46.0325382 ], + [ 7.3121998999999995, 46.0324028 ], + [ 7.3122476, 46.0322655 ], + [ 7.3122849, 46.0321266 ], + [ 7.3123117, 46.0319866 ], + [ 7.3123279, 46.0318458 ], + [ 7.3123336, 46.0317045 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0036", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Fionnay FMM", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Fionnay FMM", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Fionnay FMM", + "lang" : "it-CH" + }, + { + "text" : "Substation Fionnay FMM", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.4803539, 47.068164 ], + [ 9.4813283, 47.0685336 ], + [ 9.4817106, 47.0683531 ], + [ 9.4823288, 47.0680946 ], + [ 9.4822771, 47.0680571 ], + [ 9.4807433, 47.067686 ], + [ 9.4799545, 47.0674971 ], + [ 9.4796149, 47.0679052 ], + [ 9.4803539, 47.068164 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSXB002", + "country" : "LIE", + "name" : [ + { + "text" : "LSXB Balzers (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSXB Balzers (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSXB Balzers (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSXB Balzers (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 27, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Heliport Balzers", + "lang" : "de-CH" + }, + { + "text" : "Heliport Balzers", + "lang" : "fr-CH" + }, + { + "text" : "Heliport Balzers", + "lang" : "it-CH" + }, + { + "text" : "Heliport Balzers", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleiter", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleiter", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleiter", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleiter", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Renzo Aldovini", + "lang" : "de-CH" + }, + { + "text" : "Renzo Aldovini", + "lang" : "fr-CH" + }, + { + "text" : "Renzo Aldovini", + "lang" : "it-CH" + }, + { + "text" : "Renzo Aldovini", + "lang" : "en-GB" + } + ], + "siteURL" : "https://lsxb.li/drohnenfluege/", + "email" : "info@lsxb.li", + "phone" : "004233800303", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P01DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.5821805, 47.3391847 ], + [ 9.5821694, 47.3390437 ], + [ 9.5821474, 47.3389032 ], + [ 9.5821147, 47.3387637 ], + [ 9.582071299999999, 47.3386255 ], + [ 9.5820172, 47.3384891 ], + [ 9.5819528, 47.3383548 ], + [ 9.5818781, 47.338223 ], + [ 9.5817934, 47.338094 ], + [ 9.5816988, 47.3379682 ], + [ 9.5815947, 47.337846 ], + [ 9.5814813, 47.3377276 ], + [ 9.581358999999999, 47.3376134 ], + [ 9.581228, 47.3375037 ], + [ 9.5810888, 47.3373988 ], + [ 9.5809417, 47.337299 ], + [ 9.5807871, 47.3372046 ], + [ 9.5806254, 47.3371159 ], + [ 9.5804572, 47.337033 ], + [ 9.580282799999999, 47.3369561 ], + [ 9.5801027, 47.3368856 ], + [ 9.5799174, 47.3368217 ], + [ 9.5797275, 47.3367643 ], + [ 9.5795334, 47.3367139 ], + [ 9.5793357, 47.3366704 ], + [ 9.5791349, 47.3366339 ], + [ 9.5789316, 47.3366047 ], + [ 9.5787263, 47.3365828 ], + [ 9.5785196, 47.3365682 ], + [ 9.578312, 47.3365609 ], + [ 9.5781042, 47.3365611 ], + [ 9.5778967, 47.3365686 ], + [ 9.5776901, 47.3365836 ], + [ 9.5774848, 47.3366058 ], + [ 9.5772816, 47.3366353 ], + [ 9.5770809, 47.336672 ], + [ 9.5768834, 47.3367158 ], + [ 9.5766895, 47.3367666 ], + [ 9.5764997, 47.3368242 ], + [ 9.5763146, 47.3368885 ], + [ 9.5761348, 47.3369592 ], + [ 9.5759606, 47.3370363 ], + [ 9.5757926, 47.3371195 ], + [ 9.5756313, 47.3372085 ], + [ 9.575477, 47.3373031 ], + [ 9.5753302, 47.3374031 ], + [ 9.5751913, 47.3375082 ], + [ 9.5750607, 47.3376181 ], + [ 9.5749387, 47.3377324 ], + [ 9.5748257, 47.337851 ], + [ 9.574722, 47.3379734 ], + [ 9.5746278, 47.3380994 ], + [ 9.5745435, 47.3382285 ], + [ 9.5744692, 47.3383604 ], + [ 9.5744052, 47.3384948 ], + [ 9.5743516, 47.3386313 ], + [ 9.5743087, 47.3387695 ], + [ 9.5742764, 47.3389091 ], + [ 9.5742548, 47.3390496 ], + [ 9.5742442, 47.3391906 ], + [ 9.5742444, 47.3393319 ], + [ 9.5742555, 47.339473 ], + [ 9.5742774, 47.3396135 ], + [ 9.5743102, 47.3397529 ], + [ 9.5743536, 47.3398911 ], + [ 9.5744076, 47.3400275 ], + [ 9.574472, 47.3401618 ], + [ 9.574546699999999, 47.3402936 ], + [ 9.5746314, 47.3404226 ], + [ 9.574726, 47.3405484 ], + [ 9.5748301, 47.3406707 ], + [ 9.5749434, 47.3407891 ], + [ 9.5750658, 47.3409033 ], + [ 9.5751967, 47.341013 ], + [ 9.575336, 47.3411179 ], + [ 9.5754831, 47.3412177 ], + [ 9.5756377, 47.3413121 ], + [ 9.5757993, 47.3414009 ], + [ 9.5759676, 47.3414838 ], + [ 9.576142, 47.3415606 ], + [ 9.5763221, 47.3416311 ], + [ 9.5765074, 47.3416951 ], + [ 9.5766973, 47.3417524 ], + [ 9.5768915, 47.3418029 ], + [ 9.5770892, 47.3418464 ], + [ 9.57729, 47.3418828 ], + [ 9.5774933, 47.341912 ], + [ 9.5776986, 47.341934 ], + [ 9.5779053, 47.3419486 ], + [ 9.5781129, 47.3419558 ], + [ 9.5783207, 47.3419557 ], + [ 9.5785283, 47.3419481 ], + [ 9.5787349, 47.3419332 ], + [ 9.5789402, 47.341911 ], + [ 9.5791434, 47.3418814 ], + [ 9.5793441, 47.3418447 ], + [ 9.5795417, 47.3418009 ], + [ 9.5797356, 47.3417501 ], + [ 9.5799254, 47.3416925 ], + [ 9.5801105, 47.341628299999996 ], + [ 9.5802903, 47.3415575 ], + [ 9.5804645, 47.3414804 ], + [ 9.5806325, 47.3413973 ], + [ 9.5807939, 47.3413082 ], + [ 9.5809482, 47.3412136 ], + [ 9.581095, 47.3411136 ], + [ 9.5812338, 47.3410085 ], + [ 9.5813645, 47.3408986 ], + [ 9.5814864, 47.3407842 ], + [ 9.5815994, 47.3406657 ], + [ 9.5817031, 47.3405433 ], + [ 9.5817973, 47.3404173 ], + [ 9.581881599999999, 47.3402882 ], + [ 9.5819558, 47.3401562 ], + [ 9.5820198, 47.3400218 ], + [ 9.5820734, 47.3398854 ], + [ 9.5821164, 47.3397471 ], + [ 9.5821486, 47.3396076 ], + [ 9.5821701, 47.3394671 ], + [ 9.5821808, 47.339326 ], + [ 9.5821805, 47.3391847 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0073", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Montlingen", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Montlingen", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Montlingen", + "lang" : "it-CH" + }, + { + "text" : "Substation Montlingen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5074453, 47.3910242 ], + [ 7.5074518, 47.3911766 ], + [ 7.507445, 47.391331 ], + [ 7.5074947, 47.3914516 ], + [ 7.5076019, 47.3915474 ], + [ 7.5077151, 47.3916287 ], + [ 7.5078873, 47.3917343 ], + [ 7.5079543, 47.3917779 ], + [ 7.508075, 47.3918354 ], + [ 7.5080379, 47.3918979 ], + [ 7.5080175, 47.3919473 ], + [ 7.5080064, 47.3919757 ], + [ 7.5079954, 47.3920041 ], + [ 7.5079774, 47.3921048 ], + [ 7.5079981, 47.3922066 ], + [ 7.5080075, 47.3922331 ], + [ 7.5080722, 47.3922249 ], + [ 7.5081219, 47.3922091 ], + [ 7.5081499, 47.3921632 ], + [ 7.5082389, 47.3920997 ], + [ 7.5085309, 47.3919797 ], + [ 7.5087922, 47.3919343 ], + [ 7.508985, 47.3919008 ], + [ 7.5091092, 47.3919775 ], + [ 7.5093187, 47.3921555 ], + [ 7.5094373, 47.3923307 ], + [ 7.5095496, 47.3924632 ], + [ 7.509486, 47.3924854 ], + [ 7.5094126, 47.3925323 ], + [ 7.5094269, 47.392698 ], + [ 7.5096428, 47.3928164 ], + [ 7.5099237, 47.3929279 ], + [ 7.5100426, 47.3929638 ], + [ 7.510039, 47.3930424 ], + [ 7.5098426, 47.3931307 ], + [ 7.5098518, 47.393256 ], + [ 7.5099721, 47.3934591 ], + [ 7.5100774, 47.3934563 ], + [ 7.5100815, 47.393346 ], + [ 7.5101947, 47.393256 ], + [ 7.5103043, 47.3932359 ], + [ 7.5103635, 47.3932386 ], + [ 7.5104032, 47.3930794 ], + [ 7.5105297, 47.3930383 ], + [ 7.5106224, 47.3929861 ], + [ 7.5107869, 47.3929474 ], + [ 7.5110268, 47.392932 ], + [ 7.5112549, 47.3929596 ], + [ 7.5114509, 47.3930261 ], + [ 7.511656, 47.393087 ], + [ 7.5119214, 47.3930568 ], + [ 7.5121431, 47.3929109 ], + [ 7.5121025, 47.3928857 ], + [ 7.512086, 47.3928752 ], + [ 7.5120687, 47.3928653 ], + [ 7.5120506, 47.392856 ], + [ 7.5120317, 47.3928474 ], + [ 7.5119592, 47.3928117 ], + [ 7.5114763, 47.392608 ], + [ 7.5114538, 47.3926035 ], + [ 7.511431, 47.3925999 ], + [ 7.511408, 47.392597 ], + [ 7.5113847, 47.392595 ], + [ 7.5113613, 47.3925939 ], + [ 7.5113379, 47.3925936 ], + [ 7.5113145, 47.3925941 ], + [ 7.5112912, 47.3925955 ], + [ 7.5112555, 47.3925994 ], + [ 7.5112203, 47.3926052 ], + [ 7.5112031, 47.3926061 ], + [ 7.5111859, 47.392606 ], + [ 7.5111687, 47.392605 ], + [ 7.5111517, 47.3926029 ], + [ 7.5111426, 47.3926014 ], + [ 7.5111336, 47.3925997 ], + [ 7.5111247, 47.3925976 ], + [ 7.5111159, 47.392595299999996 ], + [ 7.5111073, 47.3925926 ], + [ 7.5110989, 47.3925898 ], + [ 7.5110908, 47.3925866 ], + [ 7.5110828, 47.3925833 ], + [ 7.5110633, 47.3925728 ], + [ 7.5110448, 47.3925617 ], + [ 7.5110192, 47.3925443 ], + [ 7.5109957, 47.3925256 ], + [ 7.5109901, 47.3925166 ], + [ 7.5109853, 47.3925074 ], + [ 7.5109812, 47.392498 ], + [ 7.5109778, 47.3924885 ], + [ 7.5109746, 47.392476 ], + [ 7.5109726, 47.3924634 ], + [ 7.510972, 47.3924508 ], + [ 7.5109726, 47.3924381 ], + [ 7.5109745, 47.3924255 ], + [ 7.5109778, 47.3924131 ], + [ 7.5109822, 47.3924008 ], + [ 7.510988, 47.3923887 ], + [ 7.5108078, 47.3922918 ], + [ 7.5106738, 47.3922134 ], + [ 7.5104638, 47.3920735 ], + [ 7.5102904, 47.3919517 ], + [ 7.50988, 47.3916341 ], + [ 7.509843, 47.3916015 ], + [ 7.5098082, 47.3915679 ], + [ 7.5097674, 47.3915235 ], + [ 7.5097306, 47.3914774 ], + [ 7.5095089, 47.3911499 ], + [ 7.509488, 47.3911237 ], + [ 7.5094652, 47.3910983 ], + [ 7.5094406, 47.3910737 ], + [ 7.5094141, 47.39105 ], + [ 7.5093727999999995, 47.3910174 ], + [ 7.5093281, 47.390987 ], + [ 7.5090936, 47.3908369 ], + [ 7.5090316999999995, 47.3907914 ], + [ 7.5089732, 47.3907439 ], + [ 7.5089067, 47.3906834 ], + [ 7.5088799, 47.3906558 ], + [ 7.5088197999999995, 47.3905737 ], + [ 7.5087671, 47.3904939 ], + [ 7.5087161, 47.3904076 ], + [ 7.5086675, 47.3903229 ], + [ 7.5086391, 47.390253 ], + [ 7.5086182, 47.390145 ], + [ 7.5086427, 47.3900551 ], + [ 7.5087007, 47.3899459 ], + [ 7.5087772, 47.3898387 ], + [ 7.5088586, 47.3897438 ], + [ 7.5089559, 47.389658 ], + [ 7.5090422, 47.3895886 ], + [ 7.5091284, 47.3895199 ], + [ 7.5091992, 47.389462 ], + [ 7.5092879, 47.3893962 ], + [ 7.5094125, 47.3893166 ], + [ 7.5095193, 47.3892468 ], + [ 7.5096137, 47.3891821 ], + [ 7.5097116, 47.3891166 ], + [ 7.5098337, 47.3890102 ], + [ 7.509876, 47.3889445 ], + [ 7.5098042, 47.3889066 ], + [ 7.5090967, 47.3885056 ], + [ 7.5087407, 47.388304 ], + [ 7.5080839, 47.3888537 ], + [ 7.5081268, 47.3889312 ], + [ 7.5081476, 47.3889898 ], + [ 7.5081702, 47.3891174 ], + [ 7.5081852, 47.3893894 ], + [ 7.5081941, 47.389552 ], + [ 7.5081589, 47.3895495 ], + [ 7.5078493, 47.3895199 ], + [ 7.507727, 47.3895499 ], + [ 7.5076502, 47.3896524 ], + [ 7.5075668, 47.3896955 ], + [ 7.5072532, 47.3897002 ], + [ 7.5069617, 47.3897533 ], + [ 7.5067453, 47.3898366 ], + [ 7.5067289, 47.3899013 ], + [ 7.5066982, 47.3899012 ], + [ 7.5066345, 47.3899025 ], + [ 7.5065635, 47.3899743 ], + [ 7.5064849, 47.3900573 ], + [ 7.5064174, 47.3901001 ], + [ 7.506383, 47.3901502 ], + [ 7.5063661, 47.3902066 ], + [ 7.506369, 47.3902604 ], + [ 7.5063851, 47.3903056 ], + [ 7.5064095, 47.3903378 ], + [ 7.5064478999999995, 47.3903626 ], + [ 7.5065195, 47.3903944 ], + [ 7.5067245, 47.3904911 ], + [ 7.5068038999999995, 47.3905318 ], + [ 7.5068602, 47.3905717 ], + [ 7.5069061, 47.3906132 ], + [ 7.5069666999999995, 47.3906993 ], + [ 7.5069843, 47.3907466 ], + [ 7.5070132, 47.3907944 ], + [ 7.5070454, 47.3907767 ], + [ 7.5071649, 47.3906871 ], + [ 7.5072978, 47.3907792 ], + [ 7.5074254, 47.3908901 ], + [ 7.5074226, 47.3909541 ], + [ 7.5074317, 47.3909846 ], + [ 7.5074339, 47.3909891 ], + [ 7.5074453, 47.3910242 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr039", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Neuenstein", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Neuenstein", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Neuenstein", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Neuenstein", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5228071, 47.5440305 ], + [ 7.5229543, 47.5441265 ], + [ 7.5236167, 47.543634 ], + [ 7.523459, 47.543548799999996 ], + [ 7.5231387, 47.5437754 ], + [ 7.5228071, 47.5440305 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns073", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Allschwilerwald", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Allschwilerwald", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Allschwilerwald", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Allschwilerwald", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6835086, 47.3943308 ], + [ 7.6834198, 47.3943396 ], + [ 7.6830113, 47.3944362 ], + [ 7.682714, 47.3945057 ], + [ 7.682278, 47.3945766 ], + [ 7.6819509, 47.3946145 ], + [ 7.6819318, 47.3946167 ], + [ 7.6813375, 47.394682 ], + [ 7.6811824, 47.3948445 ], + [ 7.6810338, 47.3950036 ], + [ 7.681051, 47.3953662 ], + [ 7.6814916, 47.3951885 ], + [ 7.6815082, 47.3951895 ], + [ 7.6817919, 47.3952075 ], + [ 7.6819774, 47.3952277 ], + [ 7.6824389, 47.3952634 ], + [ 7.6829512, 47.3950258 ], + [ 7.6830277, 47.3949904 ], + [ 7.6835026, 47.3949172 ], + [ 7.6837189, 47.394883899999996 ], + [ 7.6837243, 47.3948833 ], + [ 7.6841796, 47.3948303 ], + [ 7.6842115, 47.3948266 ], + [ 7.6847067, 47.3946946 ], + [ 7.685144, 47.3946532 ], + [ 7.6854237, 47.3946269 ], + [ 7.6858474, 47.3945869 ], + [ 7.6859058000000005, 47.3945991 ], + [ 7.6864848, 47.3947276 ], + [ 7.686702, 47.3948536 ], + [ 7.6871147, 47.3949685 ], + [ 7.6875604, 47.3950864 ], + [ 7.6879146, 47.3951241 ], + [ 7.6882202, 47.3951547 ], + [ 7.6882907, 47.3951608 ], + [ 7.6884255, 47.395103399999996 ], + [ 7.6885757, 47.3950391 ], + [ 7.6888027999999995, 47.394941 ], + [ 7.6889442, 47.3949149 ], + [ 7.6889591, 47.3949122 ], + [ 7.6890874, 47.394889 ], + [ 7.6892461999999995, 47.3948602 ], + [ 7.6895608, 47.3948029 ], + [ 7.6898073, 47.3947838 ], + [ 7.6901103, 47.3947655 ], + [ 7.6905357, 47.3946366 ], + [ 7.6905916, 47.3945899 ], + [ 7.691137, 47.3944259 ], + [ 7.6913599, 47.3942927 ], + [ 7.6913479, 47.3942782 ], + [ 7.6915698, 47.3941615 ], + [ 7.6916284, 47.3938925 ], + [ 7.6916712, 47.3936741 ], + [ 7.6912733, 47.393747 ], + [ 7.6910118, 47.3938037 ], + [ 7.6905899, 47.3938869 ], + [ 7.6898915, 47.3939873 ], + [ 7.6894165, 47.3941792 ], + [ 7.6891294, 47.3941791 ], + [ 7.6888941, 47.3942121 ], + [ 7.6886209, 47.394288 ], + [ 7.6882926, 47.3942974 ], + [ 7.6879985, 47.3943236 ], + [ 7.6877179, 47.39435 ], + [ 7.6872983999999995, 47.3942945 ], + [ 7.6868726, 47.3942946 ], + [ 7.6864036, 47.3942938 ], + [ 7.6863971, 47.394197 ], + [ 7.6862314, 47.3941883 ], + [ 7.6854546, 47.3941667 ], + [ 7.6847511, 47.3942538 ], + [ 7.6839902, 47.3942829 ], + [ 7.6835086, 47.3943308 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns221", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Gillen", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Gillen", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Gillen", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Gillen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.9514308, 47.5439811 ], + [ 7.988231, 47.5317007 ], + [ 8.0163259, 47.5099783 ], + [ 7.9743497, 47.4807991 ], + [ 7.9049422, 47.4836176 ], + [ 7.8975762, 47.5218417 ], + [ 7.9514308, 47.5439811 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZI001", + "country" : "CHE", + "name" : [ + { + "text" : "LSZI Fricktal-Schupfart", + "lang" : "de-CH" + }, + { + "text" : "LSZI Fricktal-Schupfart", + "lang" : "fr-CH" + }, + { + "text" : "LSZI Fricktal-Schupfart", + "lang" : "it-CH" + }, + { + "text" : "LSZI Fricktal-Schupfart", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Flugplatz Fricktal-Schupfart", + "lang" : "de-CH" + }, + { + "text" : "Flugplatz Fricktal-Schupfart", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatz Fricktal-Schupfart", + "lang" : "it-CH" + }, + { + "text" : "Flugplatz Fricktal-Schupfart", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Herbert Ebner", + "lang" : "de-CH" + }, + { + "text" : "Herbert Ebner", + "lang" : "fr-CH" + }, + { + "text" : "Herbert Ebner", + "lang" : "it-CH" + }, + { + "text" : "Herbert Ebner", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.aecs-fricktal.ch", + "email" : "flugplatzchef@fricktal.ch", + "phone" : "0041628712222", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4927645, 47.4374481 ], + [ 7.4927418, 47.4375698 ], + [ 7.4927208, 47.4377886 ], + [ 7.4928254, 47.4377672 ], + [ 7.4928761999999995, 47.437711 ], + [ 7.4929087, 47.4376185 ], + [ 7.4929278, 47.4374931 ], + [ 7.4929043, 47.4374126 ], + [ 7.4929678, 47.4374082 ], + [ 7.4930616, 47.4374055 ], + [ 7.4931297, 47.4373737 ], + [ 7.4931505, 47.4373291 ], + [ 7.4930913, 47.4371917 ], + [ 7.4929858, 47.437157 ], + [ 7.4930226, 47.4370394 ], + [ 7.4930739, 47.4369262 ], + [ 7.4930733, 47.4367886 ], + [ 7.4931283, 47.4367158 ], + [ 7.4933818, 47.4366704 ], + [ 7.4935575, 47.4366023 ], + [ 7.4936724, 47.4365747 ], + [ 7.4936479, 47.4365156 ], + [ 7.4936454999999995, 47.4365068 ], + [ 7.4934525, 47.4365404 ], + [ 7.4934463000000004, 47.4365412 ], + [ 7.4930537, 47.436606 ], + [ 7.4926313, 47.4366646 ], + [ 7.4926237, 47.436692 ], + [ 7.4926244, 47.4367053 ], + [ 7.4926206, 47.4367465 ], + [ 7.4925733, 47.4367995 ], + [ 7.4926134, 47.4369472 ], + [ 7.4926452999999995, 47.4370695 ], + [ 7.4926961, 47.437221 ], + [ 7.4927229, 47.4373176 ], + [ 7.4927645, 47.4374481 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns289", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Dittinger Weide und Dittinger Wald", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Dittinger Weide und Dittinger Wald", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Dittinger Weide und Dittinger Wald", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Dittinger Weide und Dittinger Wald", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6602096, 47.5128578 ], + [ 7.6598184, 47.5128712 ], + [ 7.6598336, 47.5128953 ], + [ 7.6601359, 47.5133751 ], + [ 7.6601524, 47.5134013 ], + [ 7.6604993, 47.5133224 ], + [ 7.6610309999999995, 47.5132015 ], + [ 7.6610148, 47.5131724 ], + [ 7.6608244, 47.5128547 ], + [ 7.6608032999999995, 47.5128196 ], + [ 7.6604928999999995, 47.5128481 ], + [ 7.6602096, 47.5128578 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns316", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Zinggibrunn", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Zinggibrunn", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Zinggibrunn", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Zinggibrunn", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5358353000000005, 47.469995 ], + [ 7.5358689, 47.4699754 ], + [ 7.5360981, 47.4698412 ], + [ 7.5368568, 47.4698226 ], + [ 7.5374983, 47.4697615 ], + [ 7.5381903, 47.4697406 ], + [ 7.5385553, 47.4697307 ], + [ 7.5386087, 47.4696427 ], + [ 7.5387102, 47.4695357 ], + [ 7.5388024, 47.4694489 ], + [ 7.5387658, 47.468599 ], + [ 7.5387592, 47.4684468 ], + [ 7.5370169, 47.4680967 ], + [ 7.5368845, 47.46807 ], + [ 7.5355672, 47.4675652 ], + [ 7.5354522, 47.467626 ], + [ 7.5353328, 47.4676842 ], + [ 7.5352711, 47.4677074 ], + [ 7.5352015, 47.4677261 ], + [ 7.5351140999999995, 47.4677377 ], + [ 7.5350395, 47.4677402 ], + [ 7.5349566, 47.4677282 ], + [ 7.5348562999999995, 47.4676942 ], + [ 7.5347304, 47.4676498 ], + [ 7.5345699, 47.4675812 ], + [ 7.534361, 47.4674907 ], + [ 7.534177, 47.467396 ], + [ 7.5339973, 47.4673149 ], + [ 7.5339882, 47.4673079 ], + [ 7.5338679, 47.4673166 ], + [ 7.5334018, 47.4673486 ], + [ 7.5328333, 47.4673852 ], + [ 7.5325428, 47.4674038 ], + [ 7.5318479, 47.4674582 ], + [ 7.5314752, 47.4674877 ], + [ 7.5312709, 47.4675055 ], + [ 7.5306795, 47.4676591 ], + [ 7.5293371, 47.4676891 ], + [ 7.5288877, 47.4676989 ], + [ 7.5287315, 47.4683105 ], + [ 7.5288412000000005, 47.4683126 ], + [ 7.5289383, 47.4683144 ], + [ 7.5289678, 47.4683224 ], + [ 7.5291343, 47.4683676 ], + [ 7.5294442, 47.4684516 ], + [ 7.5297946, 47.4685467 ], + [ 7.5299415, 47.4685865 ], + [ 7.5300834, 47.4686257 ], + [ 7.530387, 47.4687095 ], + [ 7.5305362, 47.4687506 ], + [ 7.530591, 47.4687659 ], + [ 7.5306051, 47.4687698 ], + [ 7.5309468, 47.4688652 ], + [ 7.5311333000000005, 47.4689172 ], + [ 7.5312019, 47.4689219 ], + [ 7.5312424, 47.4689247 ], + [ 7.5326745, 47.4690302 ], + [ 7.5327138, 47.4690337 ], + [ 7.5326982000000005, 47.4691138 ], + [ 7.5333594, 47.4692638 ], + [ 7.533727, 47.4693478 ], + [ 7.5340974, 47.4694681 ], + [ 7.5341325, 47.4694798 ], + [ 7.534272, 47.4695258 ], + [ 7.5345805, 47.4696301 ], + [ 7.5346926, 47.469668 ], + [ 7.5347599, 47.4696907 ], + [ 7.534833, 47.4697155 ], + [ 7.5349569, 47.4697574 ], + [ 7.5351040000000005, 47.4698073 ], + [ 7.5352521, 47.4698574 ], + [ 7.535335, 47.4698855 ], + [ 7.5353543, 47.46989 ], + [ 7.5355336, 47.4699319 ], + [ 7.5357169, 47.4699748 ], + [ 7.5358051, 47.4699955 ], + [ 7.5358166, 47.470006 ], + [ 7.5358353000000005, 47.469995 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns328", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Fürstenstein", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Fürstenstein", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Fürstenstein", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Fürstenstein", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.2010611, 46.217262 ], + [ 6.201059, 46.2171207 ], + [ 6.2010462, 46.2169797 ], + [ 6.2010228, 46.2168393 ], + [ 6.2009889, 46.2167 ], + [ 6.2009445, 46.2165621 ], + [ 6.2008898, 46.2164261 ], + [ 6.2008249, 46.2162921 ], + [ 6.20075, 46.2161608 ], + [ 6.2006653, 46.2160323 ], + [ 6.200571, 46.2159071 ], + [ 6.2004674, 46.2157855 ], + [ 6.2003548, 46.2156678 ], + [ 6.2002334, 46.2155544 ], + [ 6.2001037, 46.2154455 ], + [ 6.199966, 46.2153415 ], + [ 6.1998206, 46.2152426 ], + [ 6.199668, 46.2151492 ], + [ 6.1995085, 46.2150614 ], + [ 6.1993426, 46.2149795 ], + [ 6.1991708, 46.2149038 ], + [ 6.1989935, 46.2148344 ], + [ 6.1988112, 46.2147716 ], + [ 6.1986244, 46.2147155 ], + [ 6.1984337, 46.2146662 ], + [ 6.1982395, 46.2146239 ], + [ 6.1980423, 46.2145888 ], + [ 6.1978428, 46.2145608 ], + [ 6.1976415, 46.2145402 ], + [ 6.1974389, 46.2145269 ], + [ 6.1972355, 46.2145209 ], + [ 6.197032, 46.2145224 ], + [ 6.1968289, 46.2145312 ], + [ 6.1966267, 46.2145475 ], + [ 6.196426, 46.214571 ], + [ 6.1962274, 46.2146018 ], + [ 6.1960314, 46.2146398 ], + [ 6.1958385, 46.2146848 ], + [ 6.1956492, 46.2147368 ], + [ 6.1954642, 46.2147956 ], + [ 6.1952838, 46.214861 ], + [ 6.1951086, 46.2149329 ], + [ 6.194939, 46.2150111 ], + [ 6.1947756, 46.2150953 ], + [ 6.1946188, 46.2151853 ], + [ 6.1944689, 46.215281 ], + [ 6.1943265, 46.2153819 ], + [ 6.1941919, 46.2154878 ], + [ 6.1940654, 46.2155986 ], + [ 6.1939475, 46.2157137 ], + [ 6.1938384, 46.215833 ], + [ 6.1937385, 46.2159561 ], + [ 6.1936479, 46.2160826 ], + [ 6.1935671, 46.2162123 ], + [ 6.1934961, 46.2163447 ], + [ 6.1934352, 46.2164795 ], + [ 6.1933845, 46.2166163 ], + [ 6.1933442, 46.2167548 ], + [ 6.1933145, 46.2168946 ], + [ 6.1932953, 46.2170352 ], + [ 6.1932867, 46.2171764 ], + [ 6.1932888, 46.2173177 ], + [ 6.1933015, 46.2174587 ], + [ 6.1933249, 46.217599 ], + [ 6.1933588, 46.2177383 ], + [ 6.1934031, 46.2178762 ], + [ 6.1934578, 46.2180123 ], + [ 6.1935227, 46.2181462 ], + [ 6.1935976, 46.2182776 ], + [ 6.1936823, 46.2184061 ], + [ 6.1937765, 46.2185313 ], + [ 6.1938801, 46.2186529 ], + [ 6.1939927, 46.2187706 ], + [ 6.194114, 46.2188841 ], + [ 6.1942438, 46.2189929 ], + [ 6.1943815, 46.219097 ], + [ 6.1945269, 46.2191958 ], + [ 6.1946796, 46.2192893 ], + [ 6.1948391, 46.219377 ], + [ 6.195005, 46.2194589 ], + [ 6.1951768, 46.2195346 ], + [ 6.1953541, 46.219604 ], + [ 6.1955364, 46.2196669 ], + [ 6.1957232, 46.219723 ], + [ 6.195914, 46.2197723 ], + [ 6.1961082, 46.2198145 ], + [ 6.1963054, 46.2198497 ], + [ 6.1965049, 46.2198776 ], + [ 6.1967063, 46.2198983 ], + [ 6.1969089, 46.2199116 ], + [ 6.1971123, 46.2199175 ], + [ 6.1973158, 46.2199161 ], + [ 6.197519, 46.2199072 ], + [ 6.1977211, 46.219891 ], + [ 6.1979219, 46.2198675 ], + [ 6.1981205, 46.2198367 ], + [ 6.1983166, 46.2197987 ], + [ 6.1985095, 46.2197537 ], + [ 6.1986987, 46.2197017 ], + [ 6.1988838, 46.2196429 ], + [ 6.1990642, 46.2195774 ], + [ 6.1992394, 46.2195055 ], + [ 6.199409, 46.2194273 ], + [ 6.1995724, 46.2193431 ], + [ 6.1997292999999996, 46.2192531 ], + [ 6.1998791, 46.2191574 ], + [ 6.2000215, 46.2190565 ], + [ 6.2001561, 46.2189505 ], + [ 6.2002825999999995, 46.2188398 ], + [ 6.2004005, 46.2187247 ], + [ 6.2005096, 46.2186054 ], + [ 6.2006095, 46.2184823 ], + [ 6.2007, 46.2183558 ], + [ 6.2007809, 46.2182261 ], + [ 6.2008519, 46.2180937 ], + [ 6.2009127, 46.2179589 ], + [ 6.2009634, 46.217822 ], + [ 6.2010036, 46.2176835 ], + [ 6.2010334, 46.2175438 ], + [ 6.2010526, 46.2174031 ], + [ 6.2010611, 46.217262 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE29", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5325474, 47.4952104 ], + [ 7.5325443, 47.4952551 ], + [ 7.5325378, 47.4953486 ], + [ 7.5325372999999995, 47.4953558 ], + [ 7.5330481, 47.4954229 ], + [ 7.5339902, 47.4956241 ], + [ 7.534097, 47.495642 ], + [ 7.5341875, 47.4956559 ], + [ 7.534126, 47.4955187 ], + [ 7.5341184, 47.4954909 ], + [ 7.5341062999999995, 47.4954618 ], + [ 7.5340678, 47.4954688 ], + [ 7.5340147, 47.495543 ], + [ 7.5339779, 47.4955326 ], + [ 7.5338799, 47.4954659 ], + [ 7.5337933, 47.4954069 ], + [ 7.5335104, 47.4953759 ], + [ 7.5333016, 47.4953334 ], + [ 7.5331344, 47.4953274 ], + [ 7.5328239, 47.4951837 ], + [ 7.5326374, 47.4952484 ], + [ 7.5325474, 47.4952104 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns037", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Schlifbach - Grossmattbach", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Schlifbach - Grossmattbach", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Schlifbach - Grossmattbach", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Schlifbach - Grossmattbach", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.5608473, 47.3023827 ], + [ 9.5608362, 47.3022416 ], + [ 9.5608143, 47.3021012 ], + [ 9.5607817, 47.3019617 ], + [ 9.5607383, 47.3018235 ], + [ 9.5606844, 47.3016871 ], + [ 9.56062, 47.3015528 ], + [ 9.5605455, 47.3014209 ], + [ 9.5604608, 47.3012919 ], + [ 9.5603664, 47.3011661 ], + [ 9.5602624, 47.3010438 ], + [ 9.5601491, 47.3009254 ], + [ 9.5600269, 47.3008112 ], + [ 9.5598961, 47.3007015 ], + [ 9.559757, 47.3005966 ], + [ 9.55961, 47.3004968 ], + [ 9.5594556, 47.3004023 ], + [ 9.5592941, 47.3003135 ], + [ 9.559126, 47.3002306 ], + [ 9.5589517, 47.3001538 ], + [ 9.5587718, 47.3000832 ], + [ 9.5585867, 47.3000192 ], + [ 9.5583969, 47.2999618 ], + [ 9.5582029, 47.2999113 ], + [ 9.5580054, 47.2998678 ], + [ 9.5578048, 47.2998313 ], + [ 9.5576016, 47.2998021 ], + [ 9.5573964, 47.2997801 ], + [ 9.557189900000001, 47.2997654 ], + [ 9.5569825, 47.2997582 ], + [ 9.5567748, 47.2997583 ], + [ 9.5565675, 47.2997658 ], + [ 9.556361, 47.2997807 ], + [ 9.5561559, 47.2998029 ], + [ 9.5559528, 47.2998324 ], + [ 9.5557522, 47.299869 ], + [ 9.5555548, 47.2999128 ], + [ 9.555361, 47.2999635 ], + [ 9.5551713, 47.3000211 ], + [ 9.5549864, 47.3000853 ], + [ 9.5548066, 47.3001561 ], + [ 9.5546325, 47.3002331 ], + [ 9.5544646, 47.3003162 ], + [ 9.5543033, 47.3004052 ], + [ 9.5541491, 47.3004998 ], + [ 9.5540024, 47.3005998 ], + [ 9.5538636, 47.3007049 ], + [ 9.553733, 47.3008147 ], + [ 9.553611, 47.3009291 ], + [ 9.5534981, 47.3010476 ], + [ 9.5533944, 47.30117 ], + [ 9.5533002, 47.3012959 ], + [ 9.5532159, 47.301425 ], + [ 9.5531417, 47.301557 ], + [ 9.5530776, 47.3016913 ], + [ 9.553024, 47.3018278 ], + [ 9.552980999999999, 47.301966 ], + [ 9.5529487, 47.3021056 ], + [ 9.5529271, 47.3022461 ], + [ 9.5529164, 47.3023872 ], + [ 9.5529166, 47.3025284 ], + [ 9.5529276, 47.3026695 ], + [ 9.5529495, 47.30281 ], + [ 9.5529821, 47.3029495 ], + [ 9.5530255, 47.3030876 ], + [ 9.5530794, 47.3032241 ], + [ 9.5531437, 47.3033584 ], + [ 9.5532183, 47.3034902 ], + [ 9.5533029, 47.3036192 ], + [ 9.5533973, 47.3037451 ], + [ 9.5535013, 47.3038674 ], + [ 9.5536146, 47.3039858 ], + [ 9.5537368, 47.3041 ], + [ 9.5538676, 47.3042097 ], + [ 9.5540067, 47.3043146 ], + [ 9.5541536, 47.3044144 ], + [ 9.5543081, 47.3045089 ], + [ 9.554469600000001, 47.3045977 ], + [ 9.5546377, 47.3046806 ], + [ 9.554812, 47.3047575 ], + [ 9.5549919, 47.304828 ], + [ 9.5551771, 47.3048921 ], + [ 9.5553669, 47.3049494 ], + [ 9.5555608, 47.3049999 ], + [ 9.5557584, 47.3050435 ], + [ 9.555959, 47.3050799 ], + [ 9.5561622, 47.3051092 ], + [ 9.5563674, 47.3051312 ], + [ 9.5565739, 47.3051458 ], + [ 9.5567814, 47.3051531 ], + [ 9.556989, 47.305153 ], + [ 9.5571964, 47.3051455 ], + [ 9.557403, 47.3051306 ], + [ 9.5576081, 47.3051084 ], + [ 9.5578112, 47.3050789 ], + [ 9.5580118, 47.3050422 ], + [ 9.5582092, 47.3049984 ], + [ 9.558403, 47.3049477 ], + [ 9.5585927, 47.3048901 ], + [ 9.5587777, 47.3048259 ], + [ 9.5589575, 47.3047552 ], + [ 9.5591315, 47.3046781 ], + [ 9.5592995, 47.304595 ], + [ 9.5594607, 47.304506 ], + [ 9.559615, 47.3044114 ], + [ 9.5597617, 47.3043114 ], + [ 9.5599005, 47.3042063 ], + [ 9.5600311, 47.3040965 ], + [ 9.560153, 47.3039821 ], + [ 9.560266, 47.3038636 ], + [ 9.5603697, 47.3037412 ], + [ 9.5604638, 47.3036152 ], + [ 9.5605481, 47.3034861 ], + [ 9.5606224, 47.3033542 ], + [ 9.5606864, 47.3032198 ], + [ 9.5607399, 47.3030833 ], + [ 9.5607829, 47.3029451 ], + [ 9.5608153, 47.3028056 ], + [ 9.5608368, 47.3026651 ], + [ 9.5608475, 47.302524 ], + [ 9.5608473, 47.3023827 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0103", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Rüthi", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Rüthi", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Rüthi", + "lang" : "it-CH" + }, + { + "text" : "Substation Rüthi", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4355068, 46.9402526 ], + [ 7.5093889, 46.9613887 ], + [ 7.5118205, 46.9609232 ], + [ 7.5150796, 46.9601712 ], + [ 7.5182766999999995, 46.9593033 ], + [ 7.5214029, 46.958322 ], + [ 7.5244497, 46.9572299 ], + [ 7.5274088, 46.9560301 ], + [ 7.5302719, 46.9547258 ], + [ 7.5330313, 46.9533206 ], + [ 7.5356793, 46.9518184 ], + [ 7.5382088, 46.9502233 ], + [ 7.5406127, 46.9485397 ], + [ 7.5428844999999995, 46.9467722 ], + [ 7.5557498, 46.9362146 ], + [ 7.5578824000000004, 46.9343678 ], + [ 7.5598708, 46.9324471 ], + [ 7.5617096, 46.9304577 ], + [ 7.5633938, 46.928405 ], + [ 7.5649187, 46.9262948 ], + [ 7.5662802, 46.9241327 ], + [ 7.5674746, 46.9219248 ], + [ 7.5684986, 46.9196771 ], + [ 7.5693494, 46.9173957 ], + [ 7.5700247, 46.915087 ], + [ 7.5705227, 46.9127571 ], + [ 7.5708421, 46.9104127 ], + [ 7.5709819, 46.9080599 ], + [ 7.5709419, 46.9057054 ], + [ 7.5707222, 46.9033556 ], + [ 7.5703233, 46.9010168 ], + [ 7.5697465, 46.8986955 ], + [ 7.5689931999999995, 46.8963982 ], + [ 7.5680657, 46.894131 ], + [ 7.5669664, 46.8919001 ], + [ 7.5656984, 46.8897117 ], + [ 7.5642652, 46.8875719 ], + [ 7.5626707, 46.8854863 ], + [ 7.5609193999999995, 46.8834608 ], + [ 7.5590159, 46.8815009 ], + [ 7.5569656, 46.8796119 ], + [ 7.5547740999999995, 46.8777991 ], + [ 7.5524474, 46.8760673 ], + [ 7.5499918, 46.8744214 ], + [ 7.5474142, 46.8728658 ], + [ 7.5447215, 46.8714047 ], + [ 7.5419211, 46.8700423 ], + [ 7.5390207, 46.8687821 ], + [ 7.5360283, 46.8676277 ], + [ 7.532952, 46.8665823 ], + [ 7.5298002, 46.8656485 ], + [ 7.5265816999999995, 46.8648292 ], + [ 7.523305, 46.8641263 ], + [ 7.5199794, 46.863542 ], + [ 7.5166137, 46.8630777 ], + [ 7.5132173, 46.8627348 ], + [ 7.5097995, 46.8625142 ], + [ 7.5063695, 46.8624165 ], + [ 7.5029367, 46.8624419 ], + [ 7.4995106, 46.8625904 ], + [ 7.4961003999999996, 46.8628616 ], + [ 7.4927156, 46.8632548 ], + [ 7.4893654, 46.8637688 ], + [ 7.4860589, 46.8644023 ], + [ 7.4828051, 46.8651535 ], + [ 7.4796131, 46.8660204 ], + [ 7.4764915, 46.8670006 ], + [ 7.4734488, 46.8680914 ], + [ 7.4704934, 46.8692898 ], + [ 7.4676334, 46.8705927 ], + [ 7.4648765, 46.8719963 ], + [ 7.4622305, 46.8734969 ], + [ 7.4597024, 46.8750903 ], + [ 7.4572992, 46.8767722 ], + [ 7.4550276, 46.8785381 ], + [ 7.4421562, 46.8890844 ], + [ 7.4400215, 46.890929 ], + [ 7.4380303, 46.8928477 ], + [ 7.4361882, 46.8948351 ], + [ 7.4345002000000004, 46.8968859 ], + [ 7.432971, 46.8989944 ], + [ 7.4316048, 46.9011549 ], + [ 7.4304053, 46.9033614 ], + [ 7.4293759, 46.9056079 ], + [ 7.4285193, 46.9078882 ], + [ 7.427838, 46.9101962 ], + [ 7.4273337999999995, 46.9125253 ], + [ 7.4270082, 46.9148694 ], + [ 7.426862, 46.917222 ], + [ 7.4268957, 46.9195765 ], + [ 7.4271092, 46.9219266 ], + [ 7.427502, 46.9242659 ], + [ 7.428073, 46.9265879 ], + [ 7.4288206, 46.9288861 ], + [ 7.4297429, 46.9311545 ], + [ 7.4308373, 46.9333866 ], + [ 7.4321008, 46.9355765 ], + [ 7.43353, 46.937718 ], + [ 7.435121, 46.9398053 ], + [ 7.4355068, 46.9402526 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZB001", + "country" : "CHE", + "name" : [ + { + "text" : "LSZB Bern-Belp 1", + "lang" : "de-CH" + }, + { + "text" : "LSZB Bern-Belp 1", + "lang" : "fr-CH" + }, + { + "text" : "LSZB Bern-Belp 1", + "lang" : "it-CH" + }, + { + "text" : "LSZB Bern-Belp 1", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Special Flight Office (SFO)", + "lang" : "de-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "fr-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "it-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "en-GB" + } + ], + "siteURL" : "https://skyguide.ch/services/special-flights", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.1478504, 46.167764 ], + [ 6.1487286, 46.1675135 ], + [ 6.1496554, 46.1669671 ], + [ 6.1497456, 46.1668942 ], + [ 6.1497782, 46.1668575 ], + [ 6.1499766, 46.1667363 ], + [ 6.150133, 46.1665955 ], + [ 6.1507166, 46.1658524 ], + [ 6.1507794, 46.1656187 ], + [ 6.1508294, 46.1655437 ], + [ 6.1508399, 46.1653938 ], + [ 6.1508591, 46.1653223 ], + [ 6.1523268, 46.1655427 ], + [ 6.1538178, 46.1653542 ], + [ 6.1550915, 46.1647836 ], + [ 6.155954, 46.1639178 ], + [ 6.1562739, 46.1628886 ], + [ 6.1560026, 46.1618526 ], + [ 6.1551815, 46.1609676 ], + [ 6.1539355, 46.1603684 ], + [ 6.1529015, 46.1602131 ], + [ 6.1526584, 46.1592845 ], + [ 6.1525533, 46.1591712 ], + [ 6.1525311, 46.1590865 ], + [ 6.1517101, 46.1582015 ], + [ 6.1504642, 46.1576022 ], + [ 6.1489831, 46.1573799 ], + [ 6.1482128, 46.1574772 ], + [ 6.1476851, 46.1572233 ], + [ 6.1462041, 46.1570009 ], + [ 6.1447133, 46.1571893 ], + [ 6.1434397, 46.1577597 ], + [ 6.1425771, 46.1586254 ], + [ 6.1422569, 46.1596546 ], + [ 6.1423427, 46.1599826 ], + [ 6.1420322, 46.1602943 ], + [ 6.141712, 46.1613235 ], + [ 6.141983, 46.1623595 ], + [ 6.1422089, 46.1626031 ], + [ 6.1419177, 46.1635394 ], + [ 6.1421887, 46.1645754 ], + [ 6.1422196, 46.1646087 ], + [ 6.1419505, 46.1654734 ], + [ 6.1422215, 46.1665094 ], + [ 6.1430425, 46.1673945 ], + [ 6.1442886, 46.1679939 ], + [ 6.1457699, 46.1682163 ], + [ 6.147261, 46.1680279 ], + [ 6.1478504, 46.167764 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-18", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.0936283, 46.150538 ], + [ 6.0934439, 46.1506858 ], + [ 6.0939778, 46.151268 ], + [ 6.094013, 46.1512936 ], + [ 6.0940172, 46.1512967 ], + [ 6.0941636, 46.151403 ], + [ 6.0946371, 46.1517469 ], + [ 6.0958776, 46.1523509 ], + [ 6.0973563, 46.1525791 ], + [ 6.0988481, 46.1523968 ], + [ 6.100126, 46.1518317 ], + [ 6.100147, 46.1518177 ], + [ 6.1002382, 46.1517571 ], + [ 6.1009746, 46.1510848 ], + [ 6.1013756, 46.1502872 ], + [ 6.1014022, 46.1494425 ], + [ 6.1010517, 46.1486335 ], + [ 6.1003584, 46.1479394 ], + [ 6.0997014, 46.1474629 ], + [ 6.0996695, 46.1474841 ], + [ 6.098991, 46.1470558 ], + [ 6.097803, 46.1467036 ], + [ 6.096772, 46.1466542 ], + [ 6.0957906, 46.1482694 ], + [ 6.0957825, 46.1482776 ], + [ 6.095442, 46.1486199 ], + [ 6.0949486, 46.1491162 ], + [ 6.0945562, 46.149343 ], + [ 6.0934709, 46.1499715 ], + [ 6.0936283, 46.150538 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-56", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.122189, 46.2239171 ], + [ 7.1225359, 46.2237668 ], + [ 7.1226022, 46.2236361 ], + [ 7.122519, 46.2234753 ], + [ 7.1222442, 46.2233518 ], + [ 7.1219947, 46.2233346 ], + [ 7.1216080999999996, 46.2232483 ], + [ 7.1213454, 46.2232385 ], + [ 7.1210539, 46.2231322 ], + [ 7.1207745, 46.2230846 ], + [ 7.1204792, 46.2228753 ], + [ 7.1199495, 46.2228033 ], + [ 7.1199207, 46.2225932 ], + [ 7.1198177, 46.2224292 ], + [ 7.1195977, 46.2222213 ], + [ 7.1193701, 46.2220858 ], + [ 7.1188706, 46.2219372 ], + [ 7.1191514, 46.2215542 ], + [ 7.1190232, 46.2214207 ], + [ 7.1189684, 46.2212338 ], + [ 7.1183179, 46.2208437 ], + [ 7.1180848, 46.2206322 ], + [ 7.1176702, 46.2200549 ], + [ 7.1175047, 46.2199456 ], + [ 7.1167676, 46.2196641 ], + [ 7.1149402, 46.2183736 ], + [ 7.115345, 46.2181217 ], + [ 7.1153222, 46.2179722 ], + [ 7.1156864, 46.2176871 ], + [ 7.1152845, 46.217441 ], + [ 7.1152259, 46.2172854 ], + [ 7.1149188, 46.2171025 ], + [ 7.1144277, 46.2169609 ], + [ 7.1139293, 46.2167366 ], + [ 7.1137403, 46.2164387 ], + [ 7.1134374, 46.2162712 ], + [ 7.1130977, 46.2162565 ], + [ 7.1127522, 46.2160503 ], + [ 7.1126746, 46.215813 ], + [ 7.1121837, 46.2154412 ], + [ 7.1119672, 46.2150833 ], + [ 7.1118306, 46.2149569 ], + [ 7.1116215, 46.2147745 ], + [ 7.1113747, 46.2146513 ], + [ 7.1113821, 46.2141502 ], + [ 7.1110911, 46.2139193 ], + [ 7.1106873, 46.213769 ], + [ 7.110214, 46.2137095 ], + [ 7.1097878, 46.2134324 ], + [ 7.1094748, 46.213165 ], + [ 7.1086437, 46.2127075 ], + [ 7.1086015, 46.2123445 ], + [ 7.1084349, 46.2122085 ], + [ 7.1082527, 46.2121159 ], + [ 7.107626, 46.2118312 ], + [ 7.1074103, 46.2117621 ], + [ 7.1066893, 46.2115975 ], + [ 7.1066845, 46.2114742 ], + [ 7.1062823, 46.2110198 ], + [ 7.1059022, 46.2109304 ], + [ 7.1056791, 46.210868 ], + [ 7.1047919, 46.2104831 ], + [ 7.1037707, 46.210262 ], + [ 7.1035857, 46.2101554 ], + [ 7.1033681, 46.2101211 ], + [ 7.1030136, 46.210181 ], + [ 7.1026616, 46.2099233 ], + [ 7.1021686, 46.2098164 ], + [ 7.1016564, 46.2096052 ], + [ 7.1013909, 46.2094308 ], + [ 7.1012256, 46.2092288 ], + [ 7.1011988, 46.2090319 ], + [ 7.1007808, 46.2088175 ], + [ 7.1007325, 46.2086483 ], + [ 7.1002302, 46.2083975 ], + [ 7.0998741, 46.2080653 ], + [ 7.0995945, 46.2078988 ], + [ 7.0985996, 46.2077449 ], + [ 7.0977401, 46.2078215 ], + [ 7.0966938, 46.207692 ], + [ 7.0962563, 46.2075392 ], + [ 7.0960534, 46.2074237 ], + [ 7.0955965, 46.2070704 ], + [ 7.0953786, 46.206914 ], + [ 7.0952893, 46.2066693 ], + [ 7.0950433, 46.2064748 ], + [ 7.0948968, 46.2062792 ], + [ 7.0947633, 46.2060663 ], + [ 7.094363, 46.2054857 ], + [ 7.0941192, 46.2053239 ], + [ 7.0936242, 46.204834 ], + [ 7.0933465, 46.2048214 ], + [ 7.0931577, 46.2045955 ], + [ 7.0929684, 46.2044571 ], + [ 7.0925806, 46.2042797 ], + [ 7.0923475, 46.2041414 ], + [ 7.0922802, 46.2040489 ], + [ 7.0921517, 46.2039002 ], + [ 7.0918506, 46.2036751 ], + [ 7.0914624, 46.2034653 ], + [ 7.0911616, 46.2032357 ], + [ 7.090781, 46.2030384 ], + [ 7.0906131, 46.2028561 ], + [ 7.0904804, 46.2027672 ], + [ 7.0900889, 46.2025381 ], + [ 7.0896749, 46.2025083 ], + [ 7.0894898, 46.2024367 ], + [ 7.0885602, 46.2017871 ], + [ 7.0884359, 46.2015881 ], + [ 7.0884333, 46.201588 ], + [ 7.0881152, 46.2015361 ], + [ 7.0871834, 46.2015057 ], + [ 7.0866062, 46.2014746 ], + [ 7.0859632, 46.2013939 ], + [ 7.0856688, 46.2012498 ], + [ 7.0854789, 46.2010791 ], + [ 7.0852063, 46.2009672 ], + [ 7.0840997, 46.2006578 ], + [ 7.0832372, 46.2005742 ], + [ 7.0828979, 46.2003304 ], + [ 7.0824063, 46.2001526 ], + [ 7.0819144, 46.1999225 ], + [ 7.0817166, 46.1997677 ], + [ 7.0811846, 46.1997832 ], + [ 7.0808128, 46.1996687 ], + [ 7.0805434, 46.1997871 ], + [ 7.0803914, 46.199704 ], + [ 7.0793151, 46.1995908 ], + [ 7.0790841, 46.1996892 ], + [ 7.0781862, 46.1996192 ], + [ 7.0780595, 46.19949 ], + [ 7.0777906999999995, 46.1991465 ], + [ 7.0769683, 46.1989674 ], + [ 7.0766981, 46.1989667 ], + [ 7.076444, 46.1990146 ], + [ 7.0764672, 46.1993903 ], + [ 7.0764601, 46.1993897 ], + [ 7.0764603, 46.1993937 ], + [ 7.0754943, 46.1993198 ], + [ 7.0753807, 46.1993882 ], + [ 7.0753751, 46.1993922 ], + [ 7.0753696, 46.1993949 ], + [ 7.0753685, 46.1993956 ], + [ 7.0750686, 46.1995436 ], + [ 7.0748892, 46.1996002 ], + [ 7.0747981, 46.1996198 ], + [ 7.074469, 46.1996344 ], + [ 7.0741941, 46.1996845 ], + [ 7.0739972, 46.199741 ], + [ 7.0738167, 46.1998 ], + [ 7.0737748, 46.1998305 ], + [ 7.0736899, 46.1999426 ], + [ 7.0735112, 46.2001184 ], + [ 7.0734762, 46.2001362 ], + [ 7.0734637, 46.2001426 ], + [ 7.0732408, 46.2001991 ], + [ 7.0729408, 46.2002513 ], + [ 7.0727705, 46.200456 ], + [ 7.0726271, 46.2005887 ], + [ 7.0726226, 46.2005897 ], + [ 7.0726195, 46.2005925 ], + [ 7.0724544, 46.2006283 ], + [ 7.072171, 46.2005979 ], + [ 7.0720968, 46.2006481 ], + [ 7.0720949, 46.200649 ], + [ 7.0720902, 46.2006523 ], + [ 7.0719607, 46.20071 ], + [ 7.0716697, 46.2008027 ], + [ 7.0714381, 46.2009204 ], + [ 7.0714318, 46.2009232 ], + [ 7.0714303, 46.200924 ], + [ 7.0712427, 46.2010111 ], + [ 7.0712018, 46.2010018 ], + [ 7.0710934, 46.2011342 ], + [ 7.070971, 46.2012229 ], + [ 7.0708488, 46.2012899 ], + [ 7.0706773, 46.2013632 ], + [ 7.0704735, 46.2014183 ], + [ 7.0702863, 46.2015184 ], + [ 7.0700666, 46.2016184 ], + [ 7.0699268, 46.2017925 ], + [ 7.0698364, 46.2019388 ], + [ 7.0698093, 46.202124 ], + [ 7.0697755, 46.2023263 ], + [ 7.0696846, 46.2025509 ], + [ 7.0696265, 46.2027082 ], + [ 7.0695194, 46.202832 ], + [ 7.0693154, 46.202932 ], + [ 7.0692331, 46.2030271 ], + [ 7.0692738, 46.2031289 ], + [ 7.0693536, 46.2032191 ], + [ 7.0695485, 46.203316 ], + [ 7.0697974, 46.2034914 ], + [ 7.0700965, 46.2037064 ], + [ 7.0703769, 46.2040114 ], + [ 7.0705788, 46.204237 ], + [ 7.070675, 46.2043785 ], + [ 7.0706743, 46.204473899999996 ], + [ 7.0706243, 46.2045924 ], + [ 7.070574, 46.2047497 ], + [ 7.0705159, 46.2049123 ], + [ 7.070481, 46.2050867 ], + [ 7.0704969, 46.2052217 ], + [ 7.0705283, 46.2053792 ], + [ 7.0706154, 46.2055199 ], + [ 7.070744, 46.2056669 ], + [ 7.0707106, 46.2058188 ], + [ 7.0706509, 46.206021 ], + [ 7.0706015, 46.206235 ], + [ 7.0706635, 46.2064547 ], + [ 7.070767, 46.2066691 ], + [ 7.0709047, 46.2067991 ], + [ 7.0710089, 46.2069173 ], + [ 7.0711295, 46.2070868 ], + [ 7.0712488, 46.2072617 ], + [ 7.0714264, 46.2074485 ], + [ 7.0715379, 46.2076234 ], + [ 7.0715768, 46.2078142 ], + [ 7.0715927, 46.2079555 ], + [ 7.071582, 46.2082028 ], + [ 7.0715219, 46.2084617 ], + [ 7.0714485, 46.2085901 ], + [ 7.0713585, 46.208669 ], + [ 7.0712115, 46.2087585 ], + [ 7.0711365, 46.2089264 ], + [ 7.0710615, 46.2090953 ], + [ 7.0710276, 46.2093255 ], + [ 7.070994, 46.2094945 ], + [ 7.0708624, 46.2096002 ], + [ 7.0707397, 46.2097464 ], + [ 7.0706807, 46.2100386 ], + [ 7.0706618, 46.2103363 ], + [ 7.0708484, 46.2103378 ], + [ 7.071035, 46.2103267 ], + [ 7.0712214, 46.2103669 ], + [ 7.0714645, 46.2104307 ], + [ 7.0717064, 46.2104989 ], + [ 7.0719987, 46.2105736 ], + [ 7.0722572, 46.2106644 ], + [ 7.0725402, 46.2107895 ], + [ 7.0727258, 46.2109367 ], + [ 7.0729915, 46.2111067 ], + [ 7.0732259, 46.211327 ], + [ 7.0733294, 46.2115468 ], + [ 7.0734826, 46.2116939 ], + [ 7.0736346, 46.2118294 ], + [ 7.0737721, 46.2119935 ], + [ 7.0739329, 46.212174 ], + [ 7.0741494, 46.2123555 ], + [ 7.0743196, 46.2124793 ], + [ 7.0745622, 46.2126267 ], + [ 7.0747477, 46.212791 ], + [ 7.0750286, 46.2130285 ], + [ 7.0752462, 46.2132379 ], + [ 7.0754555, 46.2135138 ], + [ 7.0755825, 46.2137059 ], + [ 7.075767, 46.2140276 ], + [ 7.0758529, 46.2143652 ], + [ 7.0759313, 46.2146416 ], + [ 7.0759296, 46.2149007 ], + [ 7.0760265, 46.2149514 ], + [ 7.076275, 46.2151888 ], + [ 7.0763801, 46.2153636 ], + [ 7.0764264, 46.2156004 ], + [ 7.0764894, 46.2158704 ], + [ 7.0765258, 46.2162421 ], + [ 7.0766212, 46.2165123 ], + [ 7.0767895, 46.2167323 ], + [ 7.0770247, 46.2168293 ], + [ 7.0773005, 46.2168698 ], + [ 7.077153, 46.2170213 ], + [ 7.0769886, 46.2171953 ], + [ 7.076881, 46.2173974 ], + [ 7.0767981, 46.2175878 ], + [ 7.0767396, 46.2178125 ], + [ 7.0766811, 46.2180264 ], + [ 7.0767369, 46.2182065 ], + [ 7.0768569, 46.2182915 ], + [ 7.0770273, 46.2183883 ], + [ 7.0770824, 46.2184892 ], + [ 7.0770892, 46.2186358 ], + [ 7.0770553, 46.2188606 ], + [ 7.0770291, 46.2190854 ], + [ 7.076954, 46.2192705 ], + [ 7.0768635, 46.2194393 ], + [ 7.0768055, 46.219591199999996 ], + [ 7.0768278, 46.2197433 ], + [ 7.076778, 46.2198268 ], + [ 7.0767291, 46.2199562 ], + [ 7.0765723, 46.2201527 ], + [ 7.0764815, 46.2203602 ], + [ 7.0763816, 46.2205793 ], + [ 7.0763076, 46.2207869 ], + [ 7.0763135, 46.2210685 ], + [ 7.0763432, 46.2212773 ], + [ 7.0763266, 46.2214284 ], + [ 7.0762674, 46.2215694 ], + [ 7.0762016, 46.2217203 ], + [ 7.0761028, 46.2219512 ], + [ 7.0760276, 46.222148 ], + [ 7.0760019, 46.2223161 ], + [ 7.0760486, 46.2225078 ], + [ 7.0761122, 46.2226772 ], + [ 7.0762086, 46.2227953 ], + [ 7.0761502, 46.2230029 ], + [ 7.0761491, 46.2231775 ], + [ 7.0761545, 46.2233295 ], + [ 7.0762504, 46.2235331 ], + [ 7.0763952, 46.2237756 ], + [ 7.0764913, 46.2239504 ], + [ 7.0765553, 46.2240684 ], + [ 7.076578, 46.2241639 ], + [ 7.0765203, 46.2242653 ], + [ 7.07643, 46.2243883 ], + [ 7.0763471, 46.2245796 ], + [ 7.0762964, 46.2247873 ], + [ 7.0763122, 46.2249564 ], + [ 7.0764241, 46.2250809 ], + [ 7.0766255, 46.2251994 ], + [ 7.0767466, 46.2253131 ], + [ 7.076892, 46.225471 ], + [ 7.0770606, 46.2256407 ], + [ 7.0771896, 46.2257419 ], + [ 7.0773514, 46.2257712 ], + [ 7.0775944, 46.2258682 ], + [ 7.0779009, 46.2259708 ], + [ 7.0781128, 46.2260786 ], + [ 7.0781433, 46.2261569 ], + [ 7.0781421, 46.2263485 ], + [ 7.0782634, 46.2264281 ], + [ 7.0784726, 46.2265466 ], + [ 7.0787154, 46.2266661 ], + [ 7.0787796, 46.2267617 ], + [ 7.0788835, 46.2269311 ], + [ 7.0790038, 46.2271681 ], + [ 7.0790824, 46.2274328 ], + [ 7.0791694, 46.2276022 ], + [ 7.0792751, 46.2276925 ], + [ 7.0793887, 46.2277603 ], + [ 7.0795007, 46.2278731 ], + [ 7.0796225, 46.2278798 ], + [ 7.0797023, 46.2279646 ], + [ 7.0797668, 46.2280044 ], + [ 7.0798561, 46.2280326 ], + [ 7.0799206, 46.2280778 ], + [ 7.0799927, 46.2281572 ], + [ 7.0800658, 46.2282699 ], + [ 7.0802021, 46.2284277 ], + [ 7.0802911, 46.2285072 ], + [ 7.0803626, 46.2286594 ], + [ 7.0804267, 46.2287667 ], + [ 7.0805314, 46.228812 ], + [ 7.0806527, 46.2288915 ], + [ 7.0808461, 46.2290496 ], + [ 7.0810232, 46.2291239 ], + [ 7.0811709, 46.2291352 ], + [ 7.0813644, 46.2292824 ], + [ 7.0814445, 46.2293222 ], + [ 7.0817123, 46.2293905 ], + [ 7.0821003, 46.2295222 ], + [ 7.0822373, 46.2295955 ], + [ 7.0824152, 46.2297319 ], + [ 7.0825533, 46.2298223 ], + [ 7.0827469, 46.2299578 ], + [ 7.0828759, 46.2300428 ], + [ 7.0830125, 46.2301728 ], + [ 7.0831736, 46.2303091 ], + [ 7.0832946, 46.230439 ], + [ 7.083431, 46.2306023 ], + [ 7.0835518, 46.2307547 ], + [ 7.0836961, 46.2308964 ], + [ 7.0838816, 46.2310598 ], + [ 7.0841072, 46.2312584 ], + [ 7.0844696, 46.2315411 ], + [ 7.0845416, 46.2316313 ], + [ 7.0845503, 46.2316934 ], + [ 7.0845329, 46.2317716 ], + [ 7.0844753, 46.2318506 ], + [ 7.0843602, 46.2320077 ], + [ 7.084033, 46.2322927 ], + [ 7.083755, 46.2325842 ], + [ 7.0836307, 46.2327583 ], + [ 7.0836221, 46.2328815 ], + [ 7.0836447, 46.2330057 ], + [ 7.083676, 46.2331632 ], + [ 7.0837969, 46.2333157 ], + [ 7.0839179, 46.2334519 ], + [ 7.0840946, 46.2335757 ], + [ 7.0844418, 46.2338196 ], + [ 7.0846106, 46.2339668 ], + [ 7.0848056, 46.2340799 ], + [ 7.0849589, 46.2342324 ], + [ 7.0850787, 46.2343452 ], + [ 7.0852396, 46.2345148 ], + [ 7.085393, 46.2346565 ], + [ 7.0855617, 46.2348316 ], + [ 7.085658, 46.2349722 ], + [ 7.08577, 46.2350913 ], + [ 7.0859401, 46.2352493 ], + [ 7.0860766, 46.2353792 ], + [ 7.0862949, 46.2354987 ], + [ 7.0864565, 46.2355783 ], + [ 7.0866997, 46.2356573 ], + [ 7.086926, 46.2357372 ], + [ 7.0872094, 46.235811 ], + [ 7.087234, 46.2358173 ], + [ 7.087525, 46.2359253 ], + [ 7.0876466, 46.2359652 ], + [ 7.0877679, 46.2360565 ], + [ 7.0879782, 46.2362146 ], + [ 7.0882684, 46.2364296 ], + [ 7.0885188, 46.2365995 ], + [ 7.088777, 46.2367748 ], + [ 7.0890122, 46.2368943 ], + [ 7.0892937, 46.2370642 ], + [ 7.0894876, 46.2371494 ], + [ 7.0897303, 46.2373022 ], + [ 7.0899484, 46.2374549 ], + [ 7.0901833, 46.2376247 ], + [ 7.0907081, 46.2378575 ], + [ 7.0908867, 46.2379148 ], + [ 7.0910485, 46.2379441 ], + [ 7.0912598, 46.2379555 ], + [ 7.091406, 46.2379901 ], + [ 7.0914212, 46.2380522 ], + [ 7.0914052, 46.2381251 ], + [ 7.091363, 46.2382266 ], + [ 7.0913452, 46.2383786 ], + [ 7.0913118, 46.2385296 ], + [ 7.0912691, 46.2387211 ], + [ 7.0912928, 46.2388732 ], + [ 7.091388, 46.2389913 ], + [ 7.091501, 46.23915 ], + [ 7.0915804, 46.2393022 ], + [ 7.0917016, 46.2394151 ], + [ 7.0918401, 46.2394497 ], + [ 7.0920098, 46.2394727 ], + [ 7.092115, 46.2396358 ], + [ 7.0922027, 46.2397153 ], + [ 7.0922916, 46.2398001 ], + [ 7.0924283, 46.2399184 ], + [ 7.0925895, 46.2400547 ], + [ 7.092695, 46.2401675 ], + [ 7.0927825, 46.2402802 ], + [ 7.0929201, 46.2404497 ], + [ 7.0931206, 46.2407211 ], + [ 7.0933536, 46.2409863 ], + [ 7.0935545, 46.2411947 ], + [ 7.0938049, 46.2413763 ], + [ 7.093991, 46.2414785 ], + [ 7.0941927, 46.2415637 ], + [ 7.0944114, 46.241621 ], + [ 7.0945406, 46.2416943 ], + [ 7.0945726, 46.2417618 ], + [ 7.0946214, 46.2418295 ], + [ 7.0946515, 46.2419933 ], + [ 7.0947241, 46.2421905 ], + [ 7.0947964, 46.2422528 ], + [ 7.0948765, 46.2422926 ], + [ 7.0949331, 46.2423603 ], + [ 7.0950542, 46.2424785 ], + [ 7.0951768, 46.242361 ], + [ 7.0953063, 46.2423839 ], + [ 7.0954188, 46.2426433 ], + [ 7.0955663, 46.2424863 ], + [ 7.0958362, 46.2422515 ], + [ 7.0958918, 46.2422741 ], + [ 7.0959483, 46.2423526 ], + [ 7.0961298, 46.2429666 ], + [ 7.0962346, 46.2432089 ], + [ 7.0963294, 46.2434008 ], + [ 7.0964013, 46.2435027 ], + [ 7.0965221, 46.243683 ], + [ 7.0966015, 46.2438352 ], + [ 7.0966649, 46.2440549 ], + [ 7.0967116, 46.2442638 ], + [ 7.0967602, 46.2443647 ], + [ 7.0968503, 46.2442642 ], + [ 7.0969625, 46.2443662 ], + [ 7.0970694, 46.2442702 ], + [ 7.0972137, 46.2444173 ], + [ 7.0972547, 46.2444912 ], + [ 7.0972776, 46.2445695 ], + [ 7.0973157, 46.2449016 ], + [ 7.0975033, 46.244751 ], + [ 7.0975598, 46.2448358 ], + [ 7.0977298, 46.2448192 ], + [ 7.097711, 46.2451232 ], + [ 7.0978988, 46.2451516 ], + [ 7.0978802, 46.2454277 ], + [ 7.0980994, 46.245423 ], + [ 7.0981717, 46.2454682 ], + [ 7.0981128, 46.2457658 ], + [ 7.0983246, 46.2456999 ], + [ 7.0983786, 46.2459807 ], + [ 7.0986798, 46.2459087 ], + [ 7.0985706, 46.2463699 ], + [ 7.0985366, 46.2464094 ], + [ 7.0984066, 46.2464701 ], + [ 7.0983245, 46.2465437 ], + [ 7.0983566, 46.2465941 ], + [ 7.0984305, 46.2465943 ], + [ 7.0985449, 46.2465443 ], + [ 7.0986579, 46.2465114 ], + [ 7.0987645, 46.2464604 ], + [ 7.0989593, 46.2464106 ], + [ 7.0991306, 46.2463896 ], + [ 7.0993173, 46.2463955 ], + [ 7.099187, 46.2464959 ], + [ 7.0990232, 46.2465691 ], + [ 7.0988111, 46.2466801 ], + [ 7.0987532, 46.2468148 ], + [ 7.0986951, 46.2469838 ], + [ 7.0986541, 46.2471132 ], + [ 7.0989122, 46.2473056 ], + [ 7.0989269, 46.2474459 ], + [ 7.0989016, 46.2475475 ], + [ 7.0988113, 46.2476876 ], + [ 7.0990127, 46.2478231 ], + [ 7.0991096, 46.2478855 ], + [ 7.0992232, 46.2479704 ], + [ 7.0993431, 46.2480724 ], + [ 7.0994242, 46.2481626 ], + [ 7.0995533, 46.2482646 ], + [ 7.0996421, 46.2483719 ], + [ 7.0996893, 46.2484845 ], + [ 7.0997286, 46.2486367 ], + [ 7.0998002, 46.2487889 ], + [ 7.0998566, 46.2489069 ], + [ 7.1000009, 46.2490486 ], + [ 7.1001624, 46.249139 ], + [ 7.1003411, 46.2491738 ], + [ 7.1006016, 46.2492024 ], + [ 7.1007711, 46.2492596 ], + [ 7.1009, 46.2493787 ], + [ 7.1011182, 46.2495314 ], + [ 7.1012877, 46.2495886 ], + [ 7.1013117, 46.2496957 ], + [ 7.1013683, 46.2497742 ], + [ 7.1014975, 46.249842 ], + [ 7.1017083, 46.2499335 ], + [ 7.101918, 46.2499845 ], + [ 7.102146, 46.2500311 ], + [ 7.1022179, 46.2501491 ], + [ 7.1023299, 46.2502736 ], + [ 7.1024508, 46.2504314 ], + [ 7.1025877, 46.250528 ], + [ 7.1027262, 46.2505617 ], + [ 7.1028725, 46.2506018 ], + [ 7.1029769, 46.2506983 ], + [ 7.1030243, 46.2507938 ], + [ 7.1031207, 46.2509353 ], + [ 7.1032495, 46.2510707 ], + [ 7.103468, 46.2511838 ], + [ 7.1036866, 46.2512582 ], + [ 7.1039224, 46.2513038 ], + [ 7.1041736, 46.2513559 ], + [ 7.1044175, 46.2513458 ], + [ 7.104572, 46.2513121 ], + [ 7.104685, 46.2512737 ], + [ 7.1048491, 46.2511618 ], + [ 7.1050781, 46.2510329 ], + [ 7.1052982, 46.2508878 ], + [ 7.1054703, 46.2507309 ], + [ 7.1056179, 46.2505568 ], + [ 7.1058124, 46.2505466 ], + [ 7.1061048, 46.2506662 ], + [ 7.106354, 46.2508298 ], + [ 7.1063246, 46.2505544 ], + [ 7.1063255, 46.2504141 ], + [ 7.1069882, 46.25081 ], + [ 7.1070219, 46.2506023 ], + [ 7.1070641, 46.2504954 ], + [ 7.1072582, 46.2505527 ], + [ 7.1074599, 46.2506603 ], + [ 7.1074839, 46.250762 ], + [ 7.1075404, 46.2508576 ], + [ 7.1076522, 46.2510153 ], + [ 7.1077487, 46.2511397 ], + [ 7.1078452, 46.2512579 ], + [ 7.1079909, 46.2514049 ], + [ 7.1080876, 46.2514898 ], + [ 7.1082564, 46.2516648 ], + [ 7.1082884, 46.2517269 ], + [ 7.1082461, 46.2518671 ], + [ 7.1081886, 46.2519407 ], + [ 7.1081231, 46.2520467 ], + [ 7.1080411, 46.2521031 ], + [ 7.1079597, 46.2522549 ], + [ 7.1079328, 46.2524177 ], + [ 7.1080212, 46.2525978 ], + [ 7.1082327, 46.2525823 ], + [ 7.1085417, 46.252515700000004 ], + [ 7.1087044, 46.2524208 ], + [ 7.1087635, 46.2522968 ], + [ 7.1089577, 46.2523433 ], + [ 7.1090946, 46.2524337 ], + [ 7.1092638, 46.2525466 ], + [ 7.1093769, 46.2527052 ], + [ 7.1093684, 46.2528339 ], + [ 7.109334, 46.2529408 ], + [ 7.1093329, 46.2531207 ], + [ 7.1093319, 46.2532844 ], + [ 7.1094037, 46.2534304 ], + [ 7.1093214, 46.2535318 ], + [ 7.1092222, 46.2536323 ], + [ 7.1090684, 46.2537613 ], + [ 7.1088794, 46.2539182 ], + [ 7.1086995, 46.2540697 ], + [ 7.1086339, 46.2541982 ], + [ 7.1084452, 46.2543101 ], + [ 7.1079915, 46.2542862 ], + [ 7.1079414, 46.2544093 ], + [ 7.1078748, 46.254482 ], + [ 7.1076646, 46.2545093 ], + [ 7.1073712, 46.2545534 ], + [ 7.1069497, 46.2545629 ], + [ 7.1066162, 46.2546069 ], + [ 7.1063132, 46.2547464 ], + [ 7.1061182, 46.2548241 ], + [ 7.1057939, 46.2548393 ], + [ 7.1053958, 46.2548381 ], + [ 7.1050546, 46.2548587 ], + [ 7.1046948, 46.2549476 ], + [ 7.1043456, 46.2550023 ], + [ 7.1038902, 46.2550451 ], + [ 7.103469, 46.2550042 ], + [ 7.1034611, 46.2550159 ], + [ 7.1030116, 46.2553681 ], + [ 7.1026857, 46.2554175 ], + [ 7.1022379, 46.255489 ], + [ 7.1017914, 46.2555489 ], + [ 7.1013515, 46.2555979 ], + [ 7.1009931, 46.2556805 ], + [ 7.100644, 46.2557181 ], + [ 7.1003257, 46.2558017 ], + [ 7.0999607, 46.2559068 ], + [ 7.0996504, 46.2559508 ], + [ 7.0993417, 46.2559661 ], + [ 7.0993158, 46.256163 ], + [ 7.099258, 46.2562861 ], + [ 7.0992246, 46.2564443 ], + [ 7.0991586, 46.2566348 ], + [ 7.0990735, 46.2569665 ], + [ 7.0990551, 46.2572084 ], + [ 7.0990309, 46.2573487 ], + [ 7.0990445, 46.257445 ], + [ 7.0990855, 46.2575288 ], + [ 7.0991498, 46.2576198 ], + [ 7.0992217, 46.2577271 ], + [ 7.0993105, 46.2578506 ], + [ 7.0994146, 46.2579922 ], + [ 7.0995029, 46.2581894 ], + [ 7.0996146, 46.2583589 ], + [ 7.0997607, 46.2584439 ], + [ 7.0998732, 46.2584946 ], + [ 7.1000518, 46.2585518 ], + [ 7.1001885, 46.2586764 ], + [ 7.1002766, 46.2589015 ], + [ 7.1002985, 46.2591211 ], + [ 7.1002732, 46.2592334 ], + [ 7.1002951, 46.2594701 ], + [ 7.100311, 46.2596159 ], + [ 7.100375, 46.259751 ], + [ 7.1005272, 46.259881 ], + [ 7.1006239, 46.2599775 ], + [ 7.1008342, 46.2601527 ], + [ 7.1011172, 46.2603227 ], + [ 7.1013365, 46.2603071 ], + [ 7.1015881, 46.2603025 ], + [ 7.1019462, 46.2602757 ], + [ 7.1020678, 46.2603327 ], + [ 7.1021644, 46.2604454 ], + [ 7.1022438, 46.2606031 ], + [ 7.102308, 46.2607103 ], + [ 7.1022105, 46.2607496 ], + [ 7.1020067, 46.2607706 ], + [ 7.1020155, 46.2608102 ], + [ 7.1020707, 46.2609003 ], + [ 7.10211, 46.2610579 ], + [ 7.1021583, 46.26121 ], + [ 7.1021071, 46.2613061 ], + [ 7.1023342, 46.2615038 ], + [ 7.1019513, 46.2615468 ], + [ 7.101991, 46.2616314 ], + [ 7.1018931, 46.2617265 ], + [ 7.1021977, 46.2621835 ], + [ 7.1018964, 46.2622447 ], + [ 7.1020569, 46.2625096 ], + [ 7.1018712, 46.2625369 ], + [ 7.1016675, 46.2625471 ], + [ 7.1014885, 46.2625583 ], + [ 7.1012363, 46.2626412 ], + [ 7.1010972, 46.2626966 ], + [ 7.1010072, 46.2627754 ], + [ 7.1009739, 46.2629157 ], + [ 7.1009732, 46.2630398 ], + [ 7.1010354, 46.2632595 ], + [ 7.1011237, 46.2634514 ], + [ 7.1012203, 46.2635524 ], + [ 7.1013251, 46.2635923 ], + [ 7.1014884, 46.2636099 ], + [ 7.1016304, 46.2639261 ], + [ 7.1016868, 46.2640387 ], + [ 7.1017508, 46.2641684 ], + [ 7.1017995, 46.2642693 ], + [ 7.1018795, 46.2643379 ], + [ 7.101993, 46.2644336 ], + [ 7.1020804, 46.2645634 ], + [ 7.1022902, 46.2648231 ], + [ 7.1021511, 46.2648785 ], + [ 7.1020212, 46.2649123 ], + [ 7.1018499, 46.2649279 ], + [ 7.1016877, 46.2649329 ], + [ 7.1015334, 46.2649324 ], + [ 7.1012481, 46.2649252 ], + [ 7.1009654, 46.2649073 ], + [ 7.1006478, 46.2648893 ], + [ 7.100356, 46.2648821 ], + [ 7.1001524, 46.2648644 ], + [ 7.0999905, 46.264836 ], + [ 7.0998287, 46.2647843 ], + [ 7.0996497, 46.2647891 ], + [ 7.0995029, 46.2648282 ], + [ 7.0993575, 46.2648449 ], + [ 7.0991943, 46.2648048 ], + [ 7.0989851, 46.2646522 ], + [ 7.0989103, 46.2647923 ], + [ 7.0989092, 46.2649722 ], + [ 7.0988121, 46.2649494 ], + [ 7.0985762, 46.2649145 ], + [ 7.0983322, 46.2649417 ], + [ 7.0982747, 46.2650144 ], + [ 7.0983223, 46.2650766 ], + [ 7.098428, 46.2651722 ], + [ 7.098216, 46.2652787 ], + [ 7.0986451, 46.2653033 ], + [ 7.0983767, 46.2654932 ], + [ 7.0986022, 46.2657413 ], + [ 7.0983816, 46.2657523 ], + [ 7.0982514, 46.2658248 ], + [ 7.0981046, 46.265863 ], + [ 7.0977958, 46.2658792 ], + [ 7.09782, 46.2659467 ], + [ 7.0979585, 46.2660038 ], + [ 7.0980878, 46.26606 ], + [ 7.0983145, 46.2661066 ], + [ 7.0984935, 46.2661125 ], + [ 7.0985904, 46.2661749 ], + [ 7.0985251, 46.2662367 ], + [ 7.0984262, 46.2662868 ], + [ 7.0982483, 46.2663196 ], + [ 7.0980441, 46.2664089 ], + [ 7.0981561, 46.2665559 ], + [ 7.0982529, 46.2666182 ], + [ 7.0983747, 46.2666411 ], + [ 7.0985444, 46.2666866 ], + [ 7.0987476, 46.2667547 ], + [ 7.0988766, 46.2668567 ], + [ 7.0989578, 46.2669469 ], + [ 7.0996475, 46.268874 ], + [ 7.0997101, 46.2692233 ], + [ 7.0996511, 46.2693355 ], + [ 7.0995701, 46.2694253 ], + [ 7.0993829999999996, 46.2694751 ], + [ 7.0992362, 46.2695142 ], + [ 7.0990177, 46.2693948 ], + [ 7.098799, 46.269315 ], + [ 7.0987592, 46.269242 ], + [ 7.0986157, 46.2689654 ], + [ 7.0984845, 46.2689875 ], + [ 7.0982728999999996, 46.2690201 ], + [ 7.0979884, 46.2690813 ], + [ 7.0976947, 46.2691758 ], + [ 7.0973204, 46.2692862 ], + [ 7.096994, 46.2694202 ], + [ 7.0967494, 46.2695265 ], + [ 7.0964727, 46.2696039 ], + [ 7.0962935, 46.2696196 ], + [ 7.0962761, 46.2697095 ], + [ 7.0963726, 46.2698339 ], + [ 7.0964137, 46.2698961 ], + [ 7.0951028, 46.2702222 ], + [ 7.0948509, 46.2702718 ], + [ 7.0946059, 46.2702369 ], + [ 7.0942246, 46.2702241 ], + [ 7.0938914, 46.2702059 ], + [ 7.0935825, 46.2702329 ], + [ 7.0933554, 46.270243 ], + [ 7.0931115, 46.270253 ], + [ 7.0930215, 46.2703202 ], + [ 7.0930405, 46.2703959 ], + [ 7.0931777, 46.2704484 ], + [ 7.0934042, 46.2705274 ], + [ 7.0936311, 46.2705479 ], + [ 7.0937719, 46.2706275 ], + [ 7.0938286, 46.2706861 ], + [ 7.0938278, 46.2708247 ], + [ 7.0938557, 46.2709228 ], + [ 7.0940094, 46.2710267 ], + [ 7.0943081, 46.2711797 ], + [ 7.0946757, 46.2713049 ], + [ 7.0949667, 46.2714326 ], + [ 7.0953822, 46.2715769 ], + [ 7.0957796, 46.2717158 ], + [ 7.0961759, 46.271815 ], + [ 7.0964621, 46.2718861 ], + [ 7.096817, 46.2719771 ], + [ 7.0970214, 46.2720677 ], + [ 7.0971282, 46.272202 ], + [ 7.0972505, 46.2723499 ], + [ 7.0974197, 46.2724683 ], + [ 7.0978171, 46.2726071 ], + [ 7.0980989, 46.2727654 ], + [ 7.0984957, 46.2730023 ], + [ 7.0987772, 46.2732002 ], + [ 7.0990602, 46.2733782 ], + [ 7.0993428, 46.2736148 ], + [ 7.0996133, 46.2739259 ], + [ 7.1001602, 46.2744241 ], + [ 7.1004142, 46.2746813 ], + [ 7.1006113, 46.2748978 ], + [ 7.1007249, 46.2749971 ], + [ 7.100837, 46.2751152 ], + [ 7.1009507, 46.2751938 ], + [ 7.1011202, 46.2752537 ], + [ 7.1012902, 46.2752542 ], + [ 7.1014884, 46.2752944 ], + [ 7.1018007, 46.2753538 ], + [ 7.1020848, 46.2753547 ], + [ 7.1024805, 46.2753558 ], + [ 7.1027984, 46.2753352 ], + [ 7.1032158, 46.275394 ], + [ 7.1035398, 46.2754516 ], + [ 7.1038015, 46.2755019 ], + [ 7.104075, 46.275536 ], + [ 7.1044328, 46.2755865 ], + [ 7.1048341, 46.2757173 ], + [ 7.1051747, 46.2758163 ], + [ 7.1053157, 46.2758761 ], + [ 7.1054012, 46.2758962 ], + [ 7.1054854, 46.2759162 ], + [ 7.1055709, 46.2759362 ], + [ 7.1056163, 46.2759427 ], + [ 7.1056837, 46.2759564 ], + [ 7.1057186, 46.2759691 ], + [ 7.1057974999999995, 46.2760152 ], + [ 7.1058142, 46.2760458 ], + [ 7.1058139, 46.2760818 ], + [ 7.1057955, 46.2761258 ], + [ 7.1057395, 46.276158 ], + [ 7.1056474, 46.2761614 ], + [ 7.1055916, 46.2761639 ], + [ 7.1054437, 46.2761688 ], + [ 7.1051729, 46.2761123 ], + [ 7.1049177, 46.2760521 ], + [ 7.1045251, 46.2759718 ], + [ 7.1041205, 46.2759409 ], + [ 7.1038585, 46.2759321 ], + [ 7.103642, 46.2759179 ], + [ 7.1034202, 46.2759011 ], + [ 7.1031775, 46.2759138 ], + [ 7.1029881, 46.2759133 ], + [ 7.1028597, 46.2759183 ], + [ 7.1027869, 46.2759442 ], + [ 7.1027944, 46.2759892 ], + [ 7.1028591, 46.2760118 ], + [ 7.1029304, 46.2760265 ], + [ 7.1030731, 46.2760269 ], + [ 7.1033284, 46.2760672 ], + [ 7.1036395, 46.2761077 ], + [ 7.1038391, 46.2761398 ], + [ 7.1040334, 46.2761755 ], + [ 7.1042782, 46.2762401 ], + [ 7.1045461, 46.2763461 ], + [ 7.1047167, 46.2764645 ], + [ 7.1048292, 46.2765242 ], + [ 7.104891, 46.2765918 ], + [ 7.1050007, 46.2766785 ], + [ 7.1051415, 46.2767797 ], + [ 7.1052864, 46.276853 ], + [ 7.1054572, 46.2769299 ], + [ 7.1056927, 46.2770233 ], + [ 7.1058777, 46.2771075 ], + [ 7.1060939, 46.2771882 ], + [ 7.1062722, 46.2772958 ], + [ 7.1063846, 46.2773743 ], + [ 7.1065266, 46.2774935 ], + [ 7.1066752, 46.2775866 ], + [ 7.1068173, 46.277695 ], + [ 7.1069128, 46.277778 ], + [ 7.1070625, 46.277908 ], + [ 7.1071982, 46.2779893 ], + [ 7.1073998, 46.2781222 ], + [ 7.1076377, 46.2782551 ], + [ 7.1077979, 46.2783626 ], + [ 7.108081, 46.2785209 ], + [ 7.1084206, 46.2785813 ], + [ 7.1089597, 46.2786809 ], + [ 7.1097808, 46.278919 ], + [ 7.1104613, 46.2790199 ], + [ 7.110942, 46.2791194 ], + [ 7.111425, 46.2792755 ], + [ 7.1120204, 46.2795093 ], + [ 7.1124722, 46.2796752 ], + [ 7.1128973, 46.2797547 ], + [ 7.1131238, 46.2798345 ], + [ 7.1132361, 46.2799329 ], + [ 7.1134067, 46.2800512 ], + [ 7.1135437, 46.2801254 ], + [ 7.1137934, 46.2802422 ], + [ 7.1138998, 46.2802425 ], + [ 7.1140439, 46.2802348 ], + [ 7.1141994, 46.2802703 ], + [ 7.1142587, 46.280318199999996 ], + [ 7.1143685, 46.2804085 ], + [ 7.1145663, 46.2805269 ], + [ 7.1147217, 46.2805669 ], + [ 7.1148501, 46.280587 ], + [ 7.11502, 46.2805848 ], + [ 7.1151753, 46.280659 ], + [ 7.1153291, 46.2807593 ], + [ 7.1154725, 46.2808668 ], + [ 7.1156388, 46.2810328 ], + [ 7.1157261, 46.2811995 ], + [ 7.1158145, 46.2813814 ], + [ 7.1158377, 46.2816289 ], + [ 7.1158364, 46.2818493 ], + [ 7.1158355, 46.2819968 ], + [ 7.1158888, 46.2819772 ], + [ 7.1159705, 46.2819891 ], + [ 7.1160584, 46.2820397 ], + [ 7.1161643, 46.2821246 ], + [ 7.1163826, 46.2822772 ], + [ 7.1165687, 46.282401899999996 ], + [ 7.116851, 46.2825044 ], + [ 7.1170867, 46.2825671 ], + [ 7.1173781, 46.2826579 ], + [ 7.1176863, 46.2827604 ], + [ 7.117996, 46.2828297 ], + [ 7.1182876, 46.2828926 ], + [ 7.1186117, 46.2829277 ], + [ 7.1190098, 46.2829738 ], + [ 7.1192859, 46.283015 ], + [ 7.1195699, 46.2830383 ], + [ 7.1212926, 46.2831071 ], + [ 7.1218205, 46.2831373 ], + [ 7.1219747, 46.283172 ], + [ 7.1221455, 46.2832399 ], + [ 7.1224445, 46.2833703 ], + [ 7.1229466, 46.2836029 ], + [ 7.1233518, 46.2837569 ], + [ 7.123643, 46.2838819 ], + [ 7.1239267, 46.2839556 ], + [ 7.1241537, 46.2839733 ], + [ 7.1243742, 46.2839748 ], + [ 7.1245691, 46.2839411 ], + [ 7.1247728, 46.2839363 ], + [ 7.1249102, 46.2839601 ], + [ 7.1251293, 46.283994 ], + [ 7.1253482, 46.2840513 ], + [ 7.1256087, 46.2840979 ], + [ 7.1258263, 46.2841713 ], + [ 7.1259738, 46.2842392 ], + [ 7.1259876, 46.2843184 ], + [ 7.1259547, 46.2843975 ], + [ 7.1257838, 46.2845598 ], + [ 7.1259379, 46.2846223 ], + [ 7.1261243, 46.284702 ], + [ 7.1262692, 46.2847645 ], + [ 7.1264711, 46.2848496 ], + [ 7.1266913, 46.2849177 ], + [ 7.1269012, 46.2849695 ], + [ 7.1270647, 46.2849808 ], + [ 7.1272515, 46.2849822 ], + [ 7.1274305, 46.2849827 ], + [ 7.1275603, 46.2849884 ], + [ 7.1277379, 46.285006 ], + [ 7.1278845, 46.2850181 ], + [ 7.1281114, 46.2850412 ], + [ 7.128168, 46.2851376 ], + [ 7.1281997, 46.2852502 ], + [ 7.1282714, 46.2854249 ], + [ 7.1283124, 46.2855258 ], + [ 7.1284741, 46.2856 ], + [ 7.1286116, 46.2856174 ], + [ 7.1287752, 46.2855954 ], + [ 7.1289128999999996, 46.2855679 ], + [ 7.1290427, 46.2855512 ], + [ 7.1292373, 46.285558 ], + [ 7.12945, 46.2855811 ], + [ 7.1296277, 46.2855878 ], + [ 7.1297667, 46.2855594 ], + [ 7.1299213, 46.285532 ], + [ 7.1301157, 46.2855721 ], + [ 7.1303424, 46.2856294 ], + [ 7.1306339, 46.2857093 ], + [ 7.1308542, 46.2857666 ], + [ 7.1311059, 46.2857619 ], + [ 7.1313409, 46.2857293 ], + [ 7.1316174, 46.2857192 ], + [ 7.1317889, 46.2856747 ], + [ 7.1318219, 46.2855794 ], + [ 7.1318549, 46.2854833 ], + [ 7.1319697, 46.2853711 ], + [ 7.1321092, 46.2852483 ], + [ 7.1322811, 46.285148 ], + [ 7.1329437, 46.285685 ], + [ 7.1304462, 46.2890561 ], + [ 7.1302492, 46.2892418 ], + [ 7.1301264, 46.2893926 ], + [ 7.1299545, 46.2894992 ], + [ 7.1297345, 46.2896218 ], + [ 7.1294976, 46.2897336 ], + [ 7.1293179, 46.2898456 ], + [ 7.1290656, 46.289951 ], + [ 7.1288037, 46.2901419 ], + [ 7.1286235, 46.2903375 ], + [ 7.1284913, 46.2905342 ], + [ 7.1284158, 46.2907984 ], + [ 7.1283004, 46.2910059 ], + [ 7.1282271, 46.2911181 ], + [ 7.1280876, 46.2912302 ], + [ 7.1278754, 46.2913592 ], + [ 7.1277279, 46.2914991 ], + [ 7.127458, 46.2917232 ], + [ 7.1268045, 46.2920804 ], + [ 7.1265274, 46.2921974 ], + [ 7.126168, 46.2924159 ], + [ 7.1257835, 46.2927063 ], + [ 7.1255055, 46.2929754 ], + [ 7.1251607, 46.2933685 ], + [ 7.1249398, 46.2936431 ], + [ 7.1246432, 46.293985 ], + [ 7.1242744, 46.2944788 ], + [ 7.1231454, 46.2942435 ], + [ 7.1228539, 46.2941582 ], + [ 7.1225531, 46.294106 ], + [ 7.122309, 46.2941332 ], + [ 7.1219918, 46.2942223 ], + [ 7.1216254, 46.2942995 ], + [ 7.1213567, 46.2943096 ], + [ 7.1202535, 46.294114 ], + [ 7.1193771, 46.2939694 ], + [ 7.1188402, 46.2939004 ], + [ 7.1183772, 46.2938478 ], + [ 7.1178414, 46.2938283 ], + [ 7.1172716, 46.2938374 ], + [ 7.1166862, 46.2938691 ], + [ 7.1164658, 46.2940366 ], + [ 7.116236, 46.2942834 ], + [ 7.1160707, 46.2945699 ], + [ 7.1158496, 46.2948724 ], + [ 7.1156271, 46.2951983 ], + [ 7.1152891, 46.29572 ], + [ 7.1151815, 46.2959221 ], + [ 7.1150908, 46.2961134 ], + [ 7.1150327, 46.2962761 ], + [ 7.1150549, 46.2964839 ], + [ 7.1150709, 46.2966306 ], + [ 7.115127, 46.2967936 ], + [ 7.1152714, 46.296946 ], + [ 7.1153755, 46.2971154 ], + [ 7.1155367, 46.2973021 ], + [ 7.1156252, 46.2974769 ], + [ 7.1157045, 46.2976624 ], + [ 7.1157685, 46.2978092 ], + [ 7.1157989, 46.2979389 ], + [ 7.1158627, 46.2981244 ], + [ 7.1159184, 46.2983665 ], + [ 7.1159568, 46.2986599 ], + [ 7.1159806, 46.2988174 ], + [ 7.1160264, 46.2989749 ], + [ 7.1160995, 46.2991218 ], + [ 7.1161956, 46.299319 ], + [ 7.1162581, 46.2995108 ], + [ 7.1162741, 46.2996512 ], + [ 7.1162238, 46.2998193 ], + [ 7.1161568, 46.2999603 ], + [ 7.1160831, 46.3001175 ], + [ 7.1159928, 46.3002459 ], + [ 7.1159428, 46.3003582 ], + [ 7.1158121, 46.3005153 ], + [ 7.1156552, 46.3007064 ], + [ 7.1154747, 46.3009362 ], + [ 7.1153842, 46.3010988 ], + [ 7.1153093, 46.3012623 ], + [ 7.1152264, 46.3014473 ], + [ 7.1151847, 46.3016838 ], + [ 7.1152221, 46.3019421 ], + [ 7.1152533, 46.3021563 ], + [ 7.115243, 46.3023533 ], + [ 7.1152003, 46.3025609 ], + [ 7.1151667, 46.3027471 ], + [ 7.1150755, 46.3030221 ], + [ 7.1149758, 46.3032071 ], + [ 7.1148773, 46.3033984 ], + [ 7.1150239, 46.3033988 ], + [ 7.1151697, 46.3033318 ], + [ 7.1152859, 46.3032251 ], + [ 7.1153347, 46.3030849 ], + [ 7.1154579, 46.3028828 ], + [ 7.1155743, 46.3027374 ], + [ 7.1156805, 46.3025578 ], + [ 7.1158627, 46.3022597 ], + [ 7.1160661, 46.3021091 ], + [ 7.1163123, 46.3019524 ], + [ 7.1165651, 46.3017849 ], + [ 7.1166148, 46.301723 ], + [ 7.1166806, 46.3015711 ], + [ 7.1167554, 46.3014364 ], + [ 7.116926, 46.3013362 ], + [ 7.1171705, 46.301264 ], + [ 7.1174472, 46.301209 ], + [ 7.1177331, 46.3011594 ], + [ 7.1179771, 46.3011547 ], + [ 7.1182615, 46.3011277 ], + [ 7.1185536, 46.3011177 ], + [ 7.1188394, 46.3010789 ], + [ 7.1191641, 46.3010295 ], + [ 7.1194498, 46.3010033 ], + [ 7.1197345, 46.3009312 ], + [ 7.1199788999999996, 46.3008591 ], + [ 7.1202233, 46.3008031 ], + [ 7.1203947, 46.3007874 ], + [ 7.120574, 46.3007546 ], + [ 7.1207936, 46.3007102 ], + [ 7.1210132, 46.3006605 ], + [ 7.1212498, 46.3005937 ], + [ 7.1214212, 46.3005888 ], + [ 7.1216716, 46.3006066 ], + [ 7.1219246, 46.300619 ], + [ 7.1222009, 46.3006485 ], + [ 7.1223302, 46.3007334 ], + [ 7.122402, 46.300874 ], + [ 7.1224414, 46.3010144 ], + [ 7.1224809, 46.3011441 ], + [ 7.1225047, 46.3012908 ], + [ 7.1225427, 46.30146 ], + [ 7.1225178, 46.3017181 ], + [ 7.1224983, 46.3019438 ], + [ 7.1224726, 46.3021237 ], + [ 7.1224636, 46.3023261 ], + [ 7.122446, 46.3024555 ], + [ 7.1224526, 46.3026688 ], + [ 7.1225161, 46.3029055 ], + [ 7.1225704, 46.3031531 ], + [ 7.1226261, 46.3034015 ], + [ 7.1227048, 46.3036995 ], + [ 7.122816, 46.3039984 ], + [ 7.1228627, 46.3042235 ], + [ 7.1229431, 46.3044711 ], + [ 7.1232396, 46.3048155 ], + [ 7.1234426, 46.3049456 ], + [ 7.1236446, 46.3050371 ], + [ 7.1239375, 46.3051107 ], + [ 7.1241967, 46.3051744 ], + [ 7.1244327, 46.3052255 ], + [ 7.1247726, 46.3052552 ], + [ 7.1250659, 46.3052677 ], + [ 7.1253177, 46.305263 ], + [ 7.1256191, 46.3052189 ], + [ 7.1258462, 46.3052195 ], + [ 7.1261229, 46.3051933 ], + [ 7.1263019, 46.3052109 ], + [ 7.126586, 46.3052341 ], + [ 7.1268466, 46.3052915 ], + [ 7.1270083, 46.3053819 ], + [ 7.127178, 46.3054499 ], + [ 7.1273972, 46.3054676 ], + [ 7.1275918, 46.3054969 ], + [ 7.1277302, 46.3055818 ], + [ 7.1277869, 46.3056549 ], + [ 7.1278498, 46.3057621 ], + [ 7.1279061, 46.3059143 ], + [ 7.12793, 46.3060439 ], + [ 7.1278872, 46.3062579 ], + [ 7.1278861, 46.3064603 ], + [ 7.1278356, 46.3066625 ], + [ 7.1277523, 46.3069268 ], + [ 7.1277188, 46.307112 ], + [ 7.1277092, 46.3071965 ], + [ 7.1277336, 46.3072524 ], + [ 7.1277891, 46.3073038 ], + [ 7.1279183, 46.3074058 ], + [ 7.1279919, 46.3074672 ], + [ 7.1280795, 46.3075861 ], + [ 7.1281205, 46.3076762 ], + [ 7.1281677, 46.3078284 ], + [ 7.1282317, 46.307986 ], + [ 7.1282537, 46.308228 ], + [ 7.1282034, 46.3084024 ], + [ 7.1280977, 46.3084867 ], + [ 7.1280002, 46.3085143 ], + [ 7.1278861, 46.3084852 ], + [ 7.1278295, 46.3084068 ], + [ 7.1277405, 46.3083103 ], + [ 7.127628, 46.3082317 ], + [ 7.1274659, 46.3081971 ], + [ 7.1272942, 46.3082641 ], + [ 7.1271559, 46.3083869 ], + [ 7.1269266, 46.3085383 ], + [ 7.1267794, 46.3086162 ], + [ 7.1266245, 46.308688599999996 ], + [ 7.1264033, 46.3087833 ], + [ 7.1262579, 46.3087829 ], + [ 7.1261111, 46.3088158 ], + [ 7.1260535, 46.3089002 ], + [ 7.1259879999999995, 46.30899 ], + [ 7.1258733, 46.3090742 ], + [ 7.1257342, 46.3091071 ], + [ 7.1255875, 46.3091067 ], + [ 7.125499, 46.3091461 ], + [ 7.1253766, 46.309224 ], + [ 7.1251972, 46.3092631 ], + [ 7.1250336, 46.3092734 ], + [ 7.1247173, 46.3091934 ], + [ 7.1230954, 46.3086239 ], + [ 7.1231921, 46.3087375 ], + [ 7.1233212, 46.3088611 ], + [ 7.1234268, 46.3090027 ], + [ 7.1234912, 46.3090982 ], + [ 7.123636, 46.3091948 ], + [ 7.1237655, 46.3092402 ], + [ 7.1239273, 46.3093198 ], + [ 7.1240415, 46.3093309 ], + [ 7.1241803, 46.3093547 ], + [ 7.1243255, 46.3093722 ], + [ 7.1245041, 46.309468 ], + [ 7.1246503, 46.3095584 ], + [ 7.1247849, 46.3096289 ], + [ 7.1248354, 46.3096552 ], + [ 7.1249571, 46.3097005 ], + [ 7.1251206, 46.3097072 ], + [ 7.1252336, 46.3096959 ], + [ 7.1253804, 46.3096801 ], + [ 7.1255349, 46.3096805 ], + [ 7.1256568, 46.3096979 ], + [ 7.1258266, 46.309738 ], + [ 7.1259577, 46.3097437 ], + [ 7.1261445, 46.3097614 ], + [ 7.1263965, 46.3097405 ], + [ 7.1266732, 46.3097133 ], + [ 7.1269173, 46.3096915 ], + [ 7.1272342, 46.3096699 ], + [ 7.1274785, 46.3096319 ], + [ 7.1277306, 46.3095768 ], + [ 7.127984, 46.3095272 ], + [ 7.1282687, 46.3094659 ], + [ 7.1284714, 46.3094161 ], + [ 7.1287326, 46.3093781 ], + [ 7.1289848, 46.3093113 ], + [ 7.1292134, 46.3092957 ], + [ 7.1293928, 46.3092396 ], + [ 7.1296525, 46.3092241 ], + [ 7.1298966, 46.3092194 ], + [ 7.1301174, 46.3092029 ], + [ 7.1305889, 46.3091376 ], + [ 7.1309228000000004, 46.3090881 ], + [ 7.1311023, 46.3090328 ], + [ 7.1312648, 46.3089883 ], + [ 7.1314119, 46.3089212 ], + [ 7.1315019, 46.3088432 ], + [ 7.1315840999999995, 46.3087697 ], + [ 7.1316417, 46.3086745 ], + [ 7.131698, 46.3085901 ], + [ 7.1317481, 46.3084616 ], + [ 7.1317255, 46.3083257 ], + [ 7.1318723, 46.3083099 ], + [ 7.1319773, 46.3083273 ], + [ 7.1321797, 46.3083503 ], + [ 7.1322538, 46.3083226 ], + [ 7.1322734, 46.3083101 ], + [ 7.1323594, 46.3082554 ], + [ 7.1324259, 46.3081881 ], + [ 7.1325561, 46.3081327 ], + [ 7.1327458, 46.3080883 ], + [ 7.1328173, 46.3080714 ], + [ 7.132946, 46.3080447 ], + [ 7.132985, 46.3080367 ], + [ 7.1331097, 46.308011 ], + [ 7.1332639, 46.3080618 ], + [ 7.1333858, 46.3080909 ], + [ 7.1335249, 46.3080463 ], + [ 7.1337044, 46.3079901 ], + [ 7.1338743000000004, 46.3080023 ], + [ 7.1339963, 46.3080197 ], + [ 7.1342079, 46.3080149 ], + [ 7.1344428, 46.3080218 ], + [ 7.1346467, 46.3080052 ], + [ 7.1348014, 46.3079553 ], + [ 7.1349318, 46.3078549 ], + [ 7.1351684, 46.3077935 ], + [ 7.1353243, 46.3077606 ], + [ 7.1354871, 46.3076765 ], + [ 7.1357467, 46.3076664 ], + [ 7.1359999, 46.3076509 ], + [ 7.1363894, 46.3076411 ], + [ 7.136731, 46.3076141 ], + [ 7.1370972, 46.3075818 ], + [ 7.1374633, 46.307572 ], + [ 7.1375387, 46.3075596 ], + [ 7.1377855, 46.3075189 ], + [ 7.1377972, 46.3075171 ], + [ 7.1380256, 46.3075231 ], + [ 7.1382849, 46.3075859 ], + [ 7.1383306, 46.3075392 ], + [ 7.1385473, 46.3073167 ], + [ 7.1386636, 46.3069347 ], + [ 7.1386319, 46.3068114 ], + [ 7.1385271, 46.3067428 ], + [ 7.1383571, 46.3067315 ], + [ 7.1380963, 46.3067191 ], + [ 7.137975, 46.3065893 ], + [ 7.1378216, 46.3064026 ], + [ 7.1376605, 46.3061881 ], + [ 7.1377272, 46.3061046 ], + [ 7.1377925, 46.306031 ], + [ 7.1378099, 46.3059303 ], + [ 7.1377952, 46.3057783 ], + [ 7.1377223, 46.3055757 ], + [ 7.1376348, 46.3054513 ], + [ 7.1376586, 46.3053731 ], + [ 7.137668, 46.3052994 ], + [ 7.13788, 46.3052324 ], + [ 7.1379702, 46.3051094 ], + [ 7.1378739, 46.3049293 ], + [ 7.1379331, 46.3047774 ], + [ 7.1379573, 46.3046308 ], + [ 7.137958, 46.3045076 ], + [ 7.1380004, 46.3043611 ], + [ 7.1380413, 46.3042263 ], + [ 7.1380014, 46.3041641 ], + [ 7.1379785, 46.3040912 ], + [ 7.1380287, 46.3039393 ], + [ 7.1381344, 46.3038271 ], + [ 7.1382567, 46.3037717 ], + [ 7.1383389, 46.303699 ], + [ 7.1384369, 46.3035751 ], + [ 7.1383646, 46.3035129 ], + [ 7.1383666, 46.3033779 ], + [ 7.1383909, 46.3032152 ], + [ 7.1384161, 46.3031136 ], + [ 7.1385398, 46.3030411 ], + [ 7.1385233, 46.3029843 ], + [ 7.1385639, 46.3029233 ], + [ 7.138623, 46.3027885 ], + [ 7.1387213, 46.3026142 ], + [ 7.1388118, 46.3024454 ], + [ 7.1389192, 46.302272 ], + [ 7.138962, 46.3020473 ], + [ 7.139003, 46.3019007 ], + [ 7.1390934999999995, 46.3017436 ], + [ 7.1391452, 46.3015467 ], + [ 7.1392105, 46.301474 ], + [ 7.139194, 46.3014011 ], + [ 7.1391621, 46.301294 ], + [ 7.1391554, 46.3011077 ], + [ 7.1391084, 46.3009223 ], + [ 7.1390366, 46.300753 ], + [ 7.1392426, 46.3003541 ], + [ 7.139486, 46.3004735 ], + [ 7.1396803, 46.3005307 ], + [ 7.1398591, 46.3005986 ], + [ 7.1400366, 46.3006441 ], + [ 7.1403128, 46.3006907 ], + [ 7.1405318, 46.3007533 ], + [ 7.1409052, 46.3008335 ], + [ 7.141158, 46.3008845 ], + [ 7.1413756, 46.3009535 ], + [ 7.1416204, 46.3010495 ], + [ 7.1417497, 46.3011515 ], + [ 7.141894, 46.3013435 ], + [ 7.1420154, 46.3014454 ], + [ 7.1421126, 46.3014736 ], + [ 7.1423072, 46.3014966 ], + [ 7.1425989, 46.3015432 ], + [ 7.1429413, 46.3015891 ], + [ 7.1431762, 46.301596 ], + [ 7.1433879, 46.3015795 ], + [ 7.1435841, 46.3015413 ], + [ 7.1437941, 46.3015922 ], + [ 7.1440871, 46.3016497 ], + [ 7.1443697, 46.3017188 ], + [ 7.1445901, 46.3017535 ], + [ 7.1447766, 46.3018269 ], + [ 7.1450112, 46.301895 ], + [ 7.1452869, 46.3020315 ], + [ 7.1455536, 46.3021617 ], + [ 7.1458787, 46.3022813 ], + [ 7.1462115, 46.3024234 ], + [ 7.146503, 46.3025258 ], + [ 7.1466882, 46.3025938 ], + [ 7.146884, 46.3026393 ], + [ 7.1471772, 46.3026517 ], + [ 7.1474603, 46.30263 ], + [ 7.1478107, 46.3026318 ], + [ 7.1481275, 46.3026164 ], + [ 7.1483809, 46.3025604 ], + [ 7.1485751, 46.3026454 ], + [ 7.1488509, 46.302782 ], + [ 7.1490685, 46.3028617 ], + [ 7.1492398999999995, 46.3028567 ], + [ 7.1494519, 46.3027727 ], + [ 7.1497119, 46.3026951 ], + [ 7.149925, 46.3026561 ], + [ 7.1501118, 46.3026629 ], + [ 7.1503064, 46.3026804 ], + [ 7.1505426, 46.3026981 ], + [ 7.1508269, 46.3026764 ], + [ 7.1510385, 46.3026661 ], + [ 7.1511435, 46.3026952 ], + [ 7.151256, 46.3027737 ], + [ 7.1512819, 46.3027936 ], + [ 7.1514189, 46.3028983 ], + [ 7.1516051, 46.3030229 ], + [ 7.1518238, 46.3031647 ], + [ 7.1519853, 46.3032883 ], + [ 7.1522275, 46.3033906 ], + [ 7.152479, 46.3034425 ], + [ 7.1527152, 46.3034548 ], + [ 7.1531057, 46.3034954 ], + [ 7.1532458, 46.3035065 ], + [ 7.153325, 46.303513 ], + [ 7.1534129, 46.3035699 ], + [ 7.153431, 46.3035862 ], + [ 7.1535188, 46.3036655 ], + [ 7.1537378, 46.3037453 ], + [ 7.1538752, 46.3037798 ], + [ 7.1538946, 46.3037852 ], + [ 7.1541111, 46.3038425 ], + [ 7.1544195, 46.3039332 ], + [ 7.1546217, 46.3039904 ], + [ 7.1548653, 46.3040809 ], + [ 7.1551569, 46.3041554 ], + [ 7.1554898, 46.3042921 ], + [ 7.1557963, 46.3045007 ], + [ 7.1563354, 46.3046721 ], + [ 7.1564624, 46.304712 ], + [ 7.156649, 46.3047574 ], + [ 7.1567792, 46.3046957 ], + [ 7.1569985, 46.3047025 ], + [ 7.1571699, 46.3046804 ], + [ 7.1572584, 46.3046501 ], + [ 7.1572844, 46.3046411 ], + [ 7.1574147, 46.3045299 ], + [ 7.1575215, 46.3044627 ], + [ 7.1576518, 46.3043731 ], + [ 7.1578066, 46.3043114 ], + [ 7.157961, 46.3043181 ], + [ 7.1581802, 46.3043465 ], + [ 7.158344, 46.3042966 ], + [ 7.1584497, 46.3041961 ], + [ 7.1585001, 46.3039929 ], + [ 7.1584759, 46.3038867 ], + [ 7.158575, 46.303797 ], + [ 7.1586404, 46.3037009 ], + [ 7.1585918, 46.3035658 ], + [ 7.1585457, 46.3034425 ], + [ 7.1584323, 46.3032902 ], + [ 7.1583108, 46.3031828 ], + [ 7.1584012, 46.3030364 ], + [ 7.1583616, 46.3029014 ], + [ 7.1583547, 46.3027439 ], + [ 7.158308, 46.302473 ], + [ 7.1582533, 46.3022705 ], + [ 7.1583016, 46.3022032 ], + [ 7.158703, 46.301901 ], + [ 7.1588561, 46.301896 ], + [ 7.1590599, 46.3018965 ], + [ 7.1592637, 46.3018862 ], + [ 7.1594989, 46.3018418 ], + [ 7.1597595, 46.3018883 ], + [ 7.160028, 46.3019394 ], + [ 7.1602627, 46.3019741 ], + [ 7.1604589, 46.3019242 ], + [ 7.160654, 46.3018465 ], + [ 7.1608489, 46.3018136 ], + [ 7.1609877, 46.3018302 ], + [ 7.1610769, 46.3018925 ], + [ 7.1612064, 46.3019495 ], + [ 7.1613762, 46.3020066 ], + [ 7.16162, 46.3020467 ], + [ 7.1619365, 46.3020817 ], + [ 7.1622455, 46.3020663 ], + [ 7.1626608, 46.3020565 ], + [ 7.1629933, 46.3020177 ], + [ 7.1633209, 46.3019232 ], + [ 7.1635717, 46.3018572 ], + [ 7.1637927, 46.3017849 ], + [ 7.1639069, 46.301796 ], + [ 7.1640844, 46.3018477 ], + [ 7.1643115, 46.3018707 ], + [ 7.1644596, 46.3018378 ], + [ 7.1646542, 46.301849 ], + [ 7.1650111, 46.3018508 ], + [ 7.1655733999999995, 46.3018081 ], + [ 7.1657265, 46.3018085 ], + [ 7.1658652, 46.3018484 ], + [ 7.1660842, 46.3019164 ], + [ 7.1662538, 46.3019906 ], + [ 7.1663523, 46.3020358 ], + [ 7.1665066, 46.302064 ], + [ 7.1667165, 46.3021383 ], + [ 7.1669446, 46.3022063 ], + [ 7.1671638, 46.3022356 ], + [ 7.1673338, 46.3022414 ], + [ 7.1674556, 46.3022813 ], + [ 7.1676344, 46.302333 ], + [ 7.1678057, 46.3023442 ], + [ 7.1679359, 46.3022717 ], + [ 7.1680584, 46.3021595 ], + [ 7.168238, 46.3020592 ], + [ 7.1684008, 46.3019588 ], + [ 7.1686127, 46.3018919 ], + [ 7.1687344, 46.3019542 ], + [ 7.1689377, 46.3020447 ], + [ 7.1691321, 46.3021072 ], + [ 7.1694163, 46.3021088 ], + [ 7.1695538, 46.3021253 ], + [ 7.1696429, 46.3022101 ], + [ 7.1697802, 46.3022842 ], + [ 7.1698295, 46.3022726 ], + [ 7.1699517, 46.3022342 ], + [ 7.1701138, 46.3022742 ], + [ 7.1703341, 46.3023422 ], + [ 7.1706013, 46.3023662 ], + [ 7.1709024, 46.3023894 ], + [ 7.1711942, 46.3024351 ], + [ 7.1713003, 46.302492 ], + [ 7.1714453, 46.3025769 ], + [ 7.1716148, 46.3026844 ], + [ 7.1718828, 46.3028091 ], + [ 7.1721019, 46.3028717 ], + [ 7.1723783, 46.3028787 ], + [ 7.1726314, 46.3028739 ], + [ 7.1727442, 46.302902 ], + [ 7.1729309, 46.3029537 ], + [ 7.1731421, 46.3030217 ], + [ 7.1733768, 46.3030564 ], + [ 7.173678, 46.3030571 ], + [ 7.1739297, 46.3030694 ], + [ 7.1742062, 46.3030593 ], + [ 7.1747267, 46.3030614 ], + [ 7.1752147, 46.3030742 ], + [ 7.1755561, 46.3030579 ], + [ 7.175914, 46.3031325 ], + [ 7.1763353, 46.3032469 ], + [ 7.1768874, 46.3034002 ], + [ 7.1771296, 46.3035195 ], + [ 7.1773407, 46.3036099 ], + [ 7.1775766, 46.3036842 ], + [ 7.1776971, 46.3037241 ], + [ 7.1778853, 46.3037245 ], + [ 7.1781127, 46.3036747 ], + [ 7.1784137, 46.3037042 ], + [ 7.1786656, 46.3036886 ], + [ 7.1787708, 46.30366 ], + [ 7.1790805, 46.303515 ], + [ 7.1792767, 46.3034597 ], + [ 7.1795702, 46.3034271 ], + [ 7.1798143, 46.3034105 ], + [ 7.1801962, 46.3033502 ], + [ 7.1807018, 46.3032003 ], + [ 7.1811334, 46.3030555 ], + [ 7.1813539, 46.3028249 ], + [ 7.1818658, 46.3029789 ], + [ 7.182093, 46.3029687 ], + [ 7.182386, 46.3030422 ], + [ 7.1827179, 46.3031284 ], + [ 7.182994, 46.3032082 ], + [ 7.1833025, 46.3032818 ], + [ 7.1835865, 46.3033337 ], + [ 7.1839031, 46.3033686 ], + [ 7.1839847, 46.303403 ], + [ 7.1841298, 46.3034653 ], + [ 7.1842853, 46.3035107 ], + [ 7.1844874, 46.3035903 ], + [ 7.1846571, 46.3036635 ], + [ 7.1848773, 46.3037549 ], + [ 7.1851766, 46.3038734 ], + [ 7.185428, 46.3039702 ], + [ 7.1855162, 46.3039785 ], + [ 7.1856719, 46.3039933 ], + [ 7.1860288, 46.303995 ], + [ 7.1877684, 46.3039251 ], + [ 7.1890583, 46.3038724 ], + [ 7.1892482, 46.2951719 ], + [ 7.1940093, 46.291396399999996 ], + [ 7.1954789, 46.2902968 ], + [ 7.1969481, 46.2891297 ], + [ 7.1964546, 46.2891325 ], + [ 7.1943741, 46.2890673 ], + [ 7.1938786, 46.2883813 ], + [ 7.1941147, 46.287133 ], + [ 7.1948396, 46.285681 ], + [ 7.1939616, 46.2857063 ], + [ 7.1940036, 46.285223 ], + [ 7.1929914, 46.2848775 ], + [ 7.1902864, 46.2850066 ], + [ 7.1891198, 46.2844908 ], + [ 7.1887511, 46.2841589 ], + [ 7.1871531, 46.2837064 ], + [ 7.1868059, 46.2835771 ], + [ 7.1863074, 46.2828432 ], + [ 7.1865815, 46.2815647 ], + [ 7.1873732, 46.2783889 ], + [ 7.1893365, 46.2733742 ], + [ 7.1894089, 46.2729077 ], + [ 7.1893052, 46.2726064 ], + [ 7.1889271, 46.2720586 ], + [ 7.188959, 46.2717021 ], + [ 7.1887718, 46.2713556 ], + [ 7.1885052, 46.2710027 ], + [ 7.1884185, 46.2706672 ], + [ 7.1882337, 46.270537 ], + [ 7.1877278, 46.2702557 ], + [ 7.1875594, 46.2701256 ], + [ 7.1873313, 46.2699802 ], + [ 7.1868384, 46.2696322 ], + [ 7.1863335, 46.2693553 ], + [ 7.1856788, 46.2691982 ], + [ 7.1853485, 46.2690764 ], + [ 7.1851069, 46.2688493 ], + [ 7.1837157, 46.268473 ], + [ 7.1824494, 46.2683874 ], + [ 7.1818558, 46.2685476 ], + [ 7.1815818, 46.2685416 ], + [ 7.1811065, 46.2684003 ], + [ 7.1809656, 46.2684956 ], + [ 7.180781, 46.2685627 ], + [ 7.1807518, 46.2685735 ], + [ 7.1802222, 46.2686649 ], + [ 7.1799966, 46.2687938 ], + [ 7.1796339, 46.2689468 ], + [ 7.1796316000000004, 46.2689472 ], + [ 7.1796264, 46.2689493 ], + [ 7.1791888, 46.2690095 ], + [ 7.1789413, 46.2689478 ], + [ 7.1784886, 46.2686825 ], + [ 7.1781497, 46.2685828 ], + [ 7.177758, 46.2683066 ], + [ 7.177247, 46.2677272 ], + [ 7.177181, 46.2675761 ], + [ 7.1770904, 46.2671361 ], + [ 7.1766551, 46.266685 ], + [ 7.1761316, 46.2663512 ], + [ 7.1758642, 46.2659874 ], + [ 7.1756752, 46.2657578 ], + [ 7.1752324, 46.2656446 ], + [ 7.1747071, 46.265456 ], + [ 7.1745048, 46.2653122 ], + [ 7.1743141, 46.264999 ], + [ 7.1740308, 46.2647962 ], + [ 7.173788, 46.2643983 ], + [ 7.1735163, 46.2641485 ], + [ 7.1733118, 46.2639078 ], + [ 7.1727396, 46.2633104 ], + [ 7.1724173, 46.2630695 ], + [ 7.1719724, 46.2626449 ], + [ 7.171921, 46.2624322 ], + [ 7.1719124, 46.2621265 ], + [ 7.1718103, 46.2619883 ], + [ 7.1718325, 46.2617701 ], + [ 7.1717442, 46.2615067 ], + [ 7.1715199, 46.2610963 ], + [ 7.1712759, 46.2609793 ], + [ 7.1707558, 46.2609461 ], + [ 7.1704328, 46.2608281 ], + [ 7.1699711, 46.2605638 ], + [ 7.1692062, 46.260278 ], + [ 7.1685424, 46.2597939 ], + [ 7.1682067, 46.2593943 ], + [ 7.1672975, 46.2588372 ], + [ 7.1671023, 46.2585814 ], + [ 7.1667973, 46.2582831 ], + [ 7.1665607, 46.2579104 ], + [ 7.1661249, 46.2576337 ], + [ 7.165798, 46.2572648 ], + [ 7.1656472, 46.2568629 ], + [ 7.1652092, 46.2563468 ], + [ 7.1644672, 46.2559394 ], + [ 7.164395, 46.2557042 ], + [ 7.1634674, 46.2552214 ], + [ 7.1627756, 46.2547702 ], + [ 7.1623571, 46.2544478 ], + [ 7.1621506, 46.2541618 ], + [ 7.1618909, 46.253914 ], + [ 7.1614619, 46.2538259 ], + [ 7.161297, 46.2535092 ], + [ 7.1610763, 46.2533727 ], + [ 7.1605994, 46.2532171 ], + [ 7.160259, 46.253169 ], + [ 7.1599369, 46.2531853 ], + [ 7.1596979, 46.253118 ], + [ 7.1590754, 46.2530465 ], + [ 7.1587398, 46.2531085 ], + [ 7.1584312, 46.2530855 ], + [ 7.1575919, 46.2530075 ], + [ 7.1572709, 46.2529513 ], + [ 7.1567072, 46.2527456 ], + [ 7.1563695, 46.2527674 ], + [ 7.1559812, 46.2527237 ], + [ 7.1557284, 46.2527187 ], + [ 7.1552323, 46.2527528 ], + [ 7.1549905, 46.2523515 ], + [ 7.1546101, 46.252141 ], + [ 7.1544952, 46.2518766 ], + [ 7.1541571, 46.251452 ], + [ 7.1538061, 46.2509152 ], + [ 7.1536172, 46.2506791 ], + [ 7.1534265, 46.250308 ], + [ 7.152757, 46.2496589 ], + [ 7.1525925, 46.2493913 ], + [ 7.1524332, 46.2492766 ], + [ 7.1524212, 46.2491446 ], + [ 7.1521402, 46.2487207 ], + [ 7.1517677, 46.2480773 ], + [ 7.1517351, 46.2479088 ], + [ 7.1517357, 46.2475955 ], + [ 7.1515115, 46.2468698 ], + [ 7.1512912, 46.2463837 ], + [ 7.15141, 46.2463025 ], + [ 7.151528, 46.2460186 ], + [ 7.1515919, 46.2457863 ], + [ 7.1514152, 46.2456039 ], + [ 7.1513473, 46.2454629 ], + [ 7.1513594, 46.2451192 ], + [ 7.1514202000000004, 46.2447226 ], + [ 7.151295, 46.2445331 ], + [ 7.1511828, 46.2444539 ], + [ 7.1511605, 46.2444385 ], + [ 7.1510579, 46.2443573 ], + [ 7.150705, 46.2439977 ], + [ 7.150422, 46.24378 ], + [ 7.1500314, 46.2434956 ], + [ 7.1501669, 46.2432942 ], + [ 7.1501667, 46.2431338 ], + [ 7.1500456, 46.243041 ], + [ 7.1495940000000004, 46.242831 ], + [ 7.1489138, 46.2426193 ], + [ 7.1474594, 46.2420848 ], + [ 7.1471397, 46.2419882 ], + [ 7.1466868, 46.241928 ], + [ 7.1458563, 46.241649 ], + [ 7.145626, 46.2416221 ], + [ 7.1452764, 46.2416059 ], + [ 7.1448775, 46.2414361 ], + [ 7.1447488, 46.2413497 ], + [ 7.14468, 46.2411644 ], + [ 7.1441514999999995, 46.2409723 ], + [ 7.1439242, 46.2408127 ], + [ 7.1438557, 46.2406852 ], + [ 7.1437923, 46.2402475 ], + [ 7.1436713, 46.2400807 ], + [ 7.14309, 46.2395039 ], + [ 7.14276, 46.2391107 ], + [ 7.1425497, 46.2388861 ], + [ 7.1423783, 46.2387388 ], + [ 7.1421048, 46.2386057 ], + [ 7.141685, 46.2384333 ], + [ 7.1413902, 46.2382031 ], + [ 7.1411587, 46.2380291 ], + [ 7.1409605, 46.2379045 ], + [ 7.1391161, 46.2373199 ], + [ 7.1389949, 46.2372939 ], + [ 7.1386773, 46.2372532 ], + [ 7.1377043, 46.2369906 ], + [ 7.1375876, 46.236988 ], + [ 7.1358160999999996, 46.2367292 ], + [ 7.1355425, 46.236671 ], + [ 7.135137, 46.2365624 ], + [ 7.1349503, 46.2365784 ], + [ 7.1346439, 46.2366539 ], + [ 7.1343871, 46.2366705 ], + [ 7.1339495, 46.236665 ], + [ 7.1337341, 46.2366668 ], + [ 7.1333063, 46.2367046 ], + [ 7.1329421, 46.2367408 ], + [ 7.1324256, 46.2367532 ], + [ 7.1317314, 46.2367732 ], + [ 7.1314482, 46.2368369 ], + [ 7.1312845, 46.2368318 ], + [ 7.1308058, 46.2367763 ], + [ 7.1304947, 46.2368023 ], + [ 7.1303697, 46.236788 ], + [ 7.1300453, 46.2368286 ], + [ 7.1295805, 46.2369332 ], + [ 7.1287826, 46.2369883 ], + [ 7.1284504, 46.2369591 ], + [ 7.1278538, 46.2370224 ], + [ 7.1274039, 46.2371308 ], + [ 7.1271296, 46.2370709 ], + [ 7.1268905, 46.237068 ], + [ 7.1266652, 46.2371775 ], + [ 7.1266603, 46.2371787 ], + [ 7.1266591, 46.2371794 ], + [ 7.1264754, 46.237226 ], + [ 7.1261603000000004, 46.2371723 ], + [ 7.1260927, 46.2370701 ], + [ 7.1258108, 46.2370378 ], + [ 7.1256347, 46.2369498 ], + [ 7.1254591, 46.2368464 ], + [ 7.1250129, 46.2364259 ], + [ 7.1241717, 46.2359317 ], + [ 7.1241447, 46.2355636 ], + [ 7.124003, 46.2353252 ], + [ 7.1240081, 46.2351416 ], + [ 7.1239239, 46.2349774 ], + [ 7.1238122, 46.2343088 ], + [ 7.123628, 46.2340207 ], + [ 7.1235598, 46.2336426 ], + [ 7.1234826, 46.2334489 ], + [ 7.1233281, 46.2332198 ], + [ 7.1234294, 46.2325006 ], + [ 7.1231247, 46.2322084 ], + [ 7.1228213, 46.231754 ], + [ 7.1224358, 46.2311858 ], + [ 7.1221727, 46.2305694 ], + [ 7.1218132, 46.2299431 ], + [ 7.1212223, 46.2293194 ], + [ 7.1216368, 46.2281145 ], + [ 7.1217755, 46.2276078 ], + [ 7.1218181, 46.2263587 ], + [ 7.1214586, 46.2259081 ], + [ 7.1214066, 46.2257177 ], + [ 7.1213942, 46.2253852 ], + [ 7.1213234, 46.2249069 ], + [ 7.1214789, 46.2248266 ], + [ 7.1216064, 46.2245261 ], + [ 7.1217316, 46.2243816 ], + [ 7.1218465, 46.2242682 ], + [ 7.1218512, 46.2239691 ], + [ 7.1218575, 46.2239687 ], + [ 7.1218575, 46.2239666 ], + [ 7.1220767, 46.223951 ], + [ 7.122189, 46.2239171 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00049", + "country" : "CHE", + "name" : [ + { + "text" : "Grand Muveran", + "lang" : "de-CH" + }, + { + "text" : "Grand Muveran", + "lang" : "fr-CH" + }, + { + "text" : "Grand Muveran", + "lang" : "it-CH" + }, + { + "text" : "Grand Muveran", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "startDateTime" : "2024-11-15T00:00:00+01:00", + "endDateTime" : "2025-04-15T00:00:00+02:00" + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Generaldirektion für Umwelt", + "lang" : "de-CH" + }, + { + "text" : "Direction générale de l'environnement", + "lang" : "fr-CH" + }, + { + "text" : "Direzione generale dell'Ambiente", + "lang" : "it-CH" + }, + { + "text" : "Environment Department", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.dge@vd.ch", + "phone" : "0041213164422", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 10.2925328, 46.7694583 ], + [ 10.2925612, 46.7693753 ], + [ 10.2925761, 46.7693175 ], + [ 10.2925821, 46.7692598 ], + [ 10.292609, 46.7692117 ], + [ 10.2926674, 46.7691239 ], + [ 10.2926841, 46.7690989 ], + [ 10.292690499999999, 46.7690493 ], + [ 10.2926732, 46.7690004 ], + [ 10.2926582, 46.7689494 ], + [ 10.2926564, 46.7689166 ], + [ 10.2926606, 46.7688876 ], + [ 10.2927461, 46.7686922 ], + [ 10.2928159, 46.7684808 ], + [ 10.2928351, 46.7684412 ], + [ 10.2928362, 46.7683837 ], + [ 10.29286, 46.7683234 ], + [ 10.2928874, 46.7682837 ], + [ 10.2929078, 46.7682667 ], + [ 10.2929341, 46.7682537 ], + [ 10.2932563, 46.768184 ], + [ 10.2934046, 46.7681555 ], + [ 10.2934578, 46.7681399 ], + [ 10.2934983, 46.7681162 ], + [ 10.2935845, 46.7680441 ], + [ 10.2936611, 46.7680052 ], + [ 10.2937232, 46.7679872 ], + [ 10.293795, 46.7679833 ], + [ 10.2938788, 46.7679874 ], + [ 10.2939387, 46.76799 ], + [ 10.2939775, 46.7679809 ], + [ 10.2940448, 46.7679544 ], + [ 10.2941354, 46.7679173 ], + [ 10.2942423, 46.7678941 ], + [ 10.2943066, 46.7678718 ], + [ 10.2943352, 46.7678403 ], + [ 10.2943571, 46.7678048 ], + [ 10.2943609, 46.7677697 ], + [ 10.2943681, 46.7677347 ], + [ 10.2943915, 46.7677134 ], + [ 10.2944201, 46.7676962 ], + [ 10.2944644, 46.7676829 ], + [ 10.2945117, 46.7676796 ], + [ 10.2945661, 46.7676864 ], + [ 10.294657, 46.7677027 ], + [ 10.2947171, 46.7677074 ], + [ 10.294771, 46.767706 ], + [ 10.294842, 46.7677002 ], + [ 10.2949078, 46.7676902 ], + [ 10.2949703, 46.7676805 ], + [ 10.2950057, 46.7676837 ], + [ 10.295069699999999, 46.7677026 ], + [ 10.2951308, 46.7677278 ], + [ 10.2951729, 46.767735 ], + [ 10.2952125, 46.7677403 ], + [ 10.2952482, 46.7677332 ], + [ 10.2952858, 46.7677177 ], + [ 10.2953049, 46.7676762 ], + [ 10.2953211, 46.7676408 ], + [ 10.2953381, 46.7676219 ], + [ 10.2953671, 46.7676129 ], + [ 10.2954265, 46.7676073 ], + [ 10.2954984, 46.7676036 ], + [ 10.2955307, 46.7675945 ], + [ 10.2955859, 46.7675561 ], + [ 10.2956295, 46.7675283 ], + [ 10.2956993, 46.7675018 ], + [ 10.2957474, 46.7674965 ], + [ 10.295871, 46.767481 ], + [ 10.295918, 46.7674717 ], + [ 10.296006, 46.7674325 ], + [ 10.2960614, 46.7674125 ], + [ 10.2961712, 46.7673995 ], + [ 10.2962189, 46.767388 ], + [ 10.2962506, 46.7673667 ], + [ 10.2962906, 46.7673349 ], + [ 10.2963434, 46.767311 ], + [ 10.2964053, 46.7672889 ], + [ 10.29644, 46.7672654 ], + [ 10.2964588, 46.7672339 ], + [ 10.2964699, 46.7671638 ], + [ 10.296494299999999, 46.7671159 ], + [ 10.2965487, 46.7669829 ], + [ 10.2965553, 46.7669376 ], + [ 10.2965506, 46.7668492 ], + [ 10.2965324, 46.7667839 ], + [ 10.2965207, 46.7667328 ], + [ 10.296531, 46.7666956 ], + [ 10.2966088, 46.7665271 ], + [ 10.2966327, 46.7664669 ], + [ 10.2966833, 46.7664182 ], + [ 10.2966415, 46.7663247 ], + [ 10.2966253, 46.766251 ], + [ 10.2966146, 46.7661115 ], + [ 10.296633, 46.7659939 ], + [ 10.296664, 46.7658533 ], + [ 10.2966634, 46.7657813 ], + [ 10.2966497, 46.765722 ], + [ 10.2966115, 46.7656819 ], + [ 10.2965501, 46.7656505 ], + [ 10.2963976, 46.7656009 ], + [ 10.2962809, 46.7655462 ], + [ 10.2961634, 46.7654772 ], + [ 10.2960988, 46.7654316 ], + [ 10.2960697, 46.7653932 ], + [ 10.2960558, 46.7653626 ], + [ 10.2960633, 46.7653337 ], + [ 10.2961325, 46.7651715 ], + [ 10.2962007, 46.7650383 ], + [ 10.2962594, 46.7649402 ], + [ 10.2962853, 46.7649189 ], + [ 10.296349, 46.7648845 ], + [ 10.2964282, 46.7648496 ], + [ 10.2965057, 46.764783800000004 ], + [ 10.2965849, 46.7647017 ], + [ 10.296651, 46.7646507 ], + [ 10.2967443, 46.7646052 ], + [ 10.2967576, 46.7645781 ], + [ 10.2967441, 46.7645395 ], + [ 10.2967394, 46.7645129 ], + [ 10.2967664, 46.7644505 ], + [ 10.2967728, 46.7644009 ], + [ 10.2967683, 46.7643784 ], + [ 10.2967452, 46.7643441 ], + [ 10.2967057, 46.7642936 ], + [ 10.2966714, 46.7642184 ], + [ 10.2966587, 46.7641941 ], + [ 10.2966393, 46.7641678 ], + [ 10.2965386, 46.7640757 ], + [ 10.2965001, 46.7640294 ], + [ 10.2964642, 46.7639707 ], + [ 10.2964339, 46.7639077 ], + [ 10.296413, 46.7638527 ], + [ 10.2964047, 46.7638056 ], + [ 10.2964033, 46.7637317 ], + [ 10.2964088, 46.7636657 ], + [ 10.2964352, 46.7635931 ], + [ 10.2964529, 46.7635413 ], + [ 10.2964582, 46.7635021 ], + [ 10.2964373, 46.763447 ], + [ 10.2964299, 46.7634164 ], + [ 10.2964258, 46.7633856 ], + [ 10.2964387, 46.7633504 ], + [ 10.2964805, 46.7632897 ], + [ 10.2965429, 46.7632306 ], + [ 10.2965649, 46.7631991 ], + [ 10.2965841, 46.7631597 ], + [ 10.2966084, 46.7631076 ], + [ 10.2966509, 46.7630593 ], + [ 10.2967002, 46.762986 ], + [ 10.296731, 46.7629339 ], + [ 10.2967549, 46.7628592 ], + [ 10.2967503, 46.7628203 ], + [ 10.2967317, 46.7627612 ], + [ 10.2967104, 46.7627 ], + [ 10.2967022, 46.7626529 ], + [ 10.2967023, 46.7625933 ], + [ 10.2967125, 46.7625086 ], + [ 10.2967549, 46.7623966 ], + [ 10.296818, 46.7622901 ], + [ 10.2968768, 46.7622249 ], + [ 10.2969165, 46.7621869 ], + [ 10.2969614, 46.7621529 ], + [ 10.2970196, 46.7621247 ], + [ 10.2972742, 46.7620628 ], + [ 10.2974749, 46.7620187 ], + [ 10.2975482, 46.7619963 ], + [ 10.2976274, 46.7619614 ], + [ 10.2976657, 46.761942 ], + [ 10.2976568, 46.761896899999996 ], + [ 10.2975761, 46.7617818 ], + [ 10.2975307, 46.761713 ], + [ 10.2974868, 46.761671 ], + [ 10.2974506, 46.7616225 ], + [ 10.297392, 46.7615211 ], + [ 10.2973322, 46.7614733 ], + [ 10.297287, 46.7614394 ], + [ 10.297267399999999, 46.7614091 ], + [ 10.2972648, 46.7613598 ], + [ 10.2972649, 46.7613001 ], + [ 10.2972638, 46.7612796 ], + [ 10.2972388, 46.7612556 ], + [ 10.2971575, 46.7611898 ], + [ 10.2971063, 46.7611356 ], + [ 10.2970833, 46.7610868 ], + [ 10.2970698, 46.7610645 ], + [ 10.2970556, 46.7610279 ], + [ 10.2970627, 46.7609927 ], + [ 10.2970857, 46.7609634 ], + [ 10.2971173, 46.7609419 ], + [ 10.2971457, 46.7609207 ], + [ 10.2971688, 46.7608934 ], + [ 10.2971818, 46.7608294 ], + [ 10.2971958, 46.760755 ], + [ 10.2972319, 46.7607088 ], + [ 10.2972922, 46.760658 ], + [ 10.2973604, 46.7605864 ], + [ 10.2974, 46.7605443 ], + [ 10.2973869, 46.7604685 ], + [ 10.2973741, 46.7603968 ], + [ 10.2973709, 46.76029 ], + [ 10.2973661, 46.760244900000004 ], + [ 10.2973517, 46.7602061 ], + [ 10.2972799, 46.7601483 ], + [ 10.2972358, 46.7601042 ], + [ 10.2972222, 46.7600798 ], + [ 10.297218, 46.760047 ], + [ 10.2972225, 46.7600223 ], + [ 10.2971989, 46.7599941 ], + [ 10.2971352, 46.759936 ], + [ 10.2970905, 46.7598796 ], + [ 10.2970667, 46.7598185 ], + [ 10.2970405, 46.7597246 ], + [ 10.2970345, 46.7596589 ], + [ 10.2970487, 46.7596011 ], + [ 10.2970975, 46.7595032 ], + [ 10.2971569, 46.7594338 ], + [ 10.2971786, 46.7593963 ], + [ 10.297202, 46.7593279 ], + [ 10.2972356, 46.759251 ], + [ 10.2972689, 46.7592007 ], + [ 10.2973366, 46.7591332 ], + [ 10.2973706, 46.7590954 ], + [ 10.2973859, 46.7590456 ], + [ 10.2974044, 46.7589917 ], + [ 10.2974157, 46.7589277 ], + [ 10.2974307, 46.7588718 ], + [ 10.2974575, 46.7588197 ], + [ 10.2974938, 46.7587633 ], + [ 10.2975626, 46.7587039 ], + [ 10.2977111, 46.7585707 ], + [ 10.2978378, 46.7584585 ], + [ 10.2978986, 46.7584159 ], + [ 10.2979685, 46.7583772 ], + [ 10.2980233, 46.758345 ], + [ 10.2981326, 46.7583072 ], + [ 10.2981932, 46.7582769 ], + [ 10.2982399, 46.7582449 ], + [ 10.2982764, 46.758209 ], + [ 10.2983041, 46.7581591 ], + [ 10.2983283, 46.758107 ], + [ 10.2983672, 46.7580526 ], + [ 10.2984259, 46.7579709 ], + [ 10.2984509, 46.7579188 ], + [ 10.2984607, 46.7578713 ], + [ 10.298455, 46.7578262 ], + [ 10.2984307, 46.7577528 ], + [ 10.2984239, 46.7576871 ], + [ 10.2984269, 46.7576357 ], + [ 10.298469, 46.7575195 ], + [ 10.2985503, 46.757355 ], + [ 10.2985943, 46.7572881 ], + [ 10.298634, 46.7572501 ], + [ 10.2987037, 46.7572052 ], + [ 10.2987771, 46.757154 ], + [ 10.2988656, 46.7570799 ], + [ 10.298894, 46.7570441 ], + [ 10.2989066, 46.7570027 ], + [ 10.2989313, 46.756959 ], + [ 10.2989566, 46.7569274 ], + [ 10.2989996, 46.7568893 ], + [ 10.2991112, 46.7568023 ], + [ 10.2991573, 46.7567599 ], + [ 10.2992018, 46.7567053 ], + [ 10.2992532, 46.7566547 ], + [ 10.2992845, 46.7566272 ], + [ 10.299387, 46.7565856 ], + [ 10.2995208, 46.7565308 ], + [ 10.2996112, 46.7564894 ], + [ 10.2996663, 46.7564635 ], + [ 10.299713, 46.7564335 ], + [ 10.2997674, 46.7563951 ], + [ 10.2998674, 46.7563515 ], + [ 10.2999453, 46.7563084 ], + [ 10.3000435, 46.7562443 ], + [ 10.300126, 46.756164 ], + [ 10.3001571, 46.7561036 ], + [ 10.3001623, 46.7560768 ], + [ 10.300161, 46.7560522 ], + [ 10.2999098, 46.7558858 ], + [ 10.2998753, 46.7558516 ], + [ 10.2998671, 46.755821 ], + [ 10.2998802, 46.7557754 ], + [ 10.2999126, 46.7557232 ], + [ 10.2999203, 46.7556983 ], + [ 10.2999252, 46.7556674 ], + [ 10.299906, 46.7555979 ], + [ 10.2998781, 46.7555204 ], + [ 10.2998696, 46.7554672 ], + [ 10.2998697, 46.755424 ], + [ 10.2998901, 46.7553763 ], + [ 10.2999419, 46.7553339 ], + [ 10.3000234, 46.755296799999996 ], + [ 10.3000693, 46.7552668 ], + [ 10.3000923, 46.7552376 ], + [ 10.3001077, 46.7551878 ], + [ 10.3001219, 46.7550703 ], + [ 10.30015, 46.7549833 ], + [ 10.3001614, 46.7549048 ], + [ 10.3001644, 46.7548532 ], + [ 10.3001488, 46.7547283 ], + [ 10.3001521, 46.7546829 ], + [ 10.3001666, 46.754664 ], + [ 10.300221, 46.7545927 ], + [ 10.3002537, 46.7545303 ], + [ 10.3002624, 46.7544786 ], + [ 10.3002563, 46.754411 ], + [ 10.3002268, 46.7543027 ], + [ 10.3002239, 46.7542472 ], + [ 10.3002475, 46.7541994 ], + [ 10.3003085, 46.7540991 ], + [ 10.3003298, 46.7540534 ], + [ 10.3003465, 46.7539667 ], + [ 10.3003522, 46.7539048 ], + [ 10.3003509, 46.7537404 ], + [ 10.3003678, 46.7536741 ], + [ 10.3004437, 46.7535776 ], + [ 10.3005718, 46.7534613 ], + [ 10.3006495, 46.7533977 ], + [ 10.3007246, 46.7533484 ], + [ 10.3007623, 46.7533188 ], + [ 10.3007727, 46.7532979 ], + [ 10.3006908, 46.7531597 ], + [ 10.3006436, 46.7530405 ], + [ 10.3006211, 46.7529568 ], + [ 10.3006605, 46.7528194 ], + [ 10.3008826, 46.752593 ], + [ 10.30098, 46.7524541 ], + [ 10.3010549, 46.7523238 ], + [ 10.3011228, 46.7521695 ], + [ 10.3011531, 46.7520765 ], + [ 10.3012225, 46.7519663 ], + [ 10.3013106, 46.7518678 ], + [ 10.301347, 46.7517826 ], + [ 10.301379, 46.7517216 ], + [ 10.3014168, 46.7515561 ], + [ 10.3014377, 46.751395 ], + [ 10.3014932, 46.751237 ], + [ 10.3016056, 46.7510417 ], + [ 10.3017086, 46.7508384 ], + [ 10.3017327, 46.7507374 ], + [ 10.3017293, 46.7506733 ], + [ 10.301689, 46.750578 ], + [ 10.3016214, 46.7505074 ], + [ 10.3016097, 46.7503953 ], + [ 10.301616899999999, 46.7503148 ], + [ 10.3016135, 46.7502507 ], + [ 10.301651, 46.7501855 ], + [ 10.3017164, 46.7501077 ], + [ 10.3017668, 46.7500542 ], + [ 10.3017996, 46.7500253 ], + [ 10.3018091, 46.7499728 ], + [ 10.3018018, 46.7498366 ], + [ 10.3018145, 46.749752 ], + [ 10.3018486, 46.7496226 ], + [ 10.3018805, 46.7495616 ], + [ 10.3020123, 46.7493457 ], + [ 10.3021074, 46.7491627 ], + [ 10.302177, 46.7490404 ], + [ 10.3022381, 46.7488823 ], + [ 10.3022821, 46.7487087 ], + [ 10.3023259, 46.7485471 ], + [ 10.302351, 46.7483577 ], + [ 10.3024124, 46.7480953 ], + [ 10.302467, 46.7478451 ], + [ 10.3025121, 46.7475991 ], + [ 10.3025103, 46.7472419 ], + [ 10.3024531, 46.7467055 ], + [ 10.3025011, 46.7465759 ], + [ 10.302536, 46.7464626 ], + [ 10.3025429, 46.7463622 ], + [ 10.3025323, 46.7462861 ], + [ 10.3025287, 46.7462179 ], + [ 10.3025314, 46.7461457 ], + [ 10.3025881, 46.7460118 ], + [ 10.302644, 46.7458458 ], + [ 10.3026876, 46.7456802 ], + [ 10.3026909, 46.7455275 ], + [ 10.3026769, 46.7453713 ], + [ 10.3026292, 46.7452441 ], + [ 10.3024785, 46.7451034 ], + [ 10.3023798, 46.7450016 ], + [ 10.3023507, 46.7449019 ], + [ 10.3023336, 46.744794 ], + [ 10.3023378, 46.7446573 ], + [ 10.3023665, 46.7445362 ], + [ 10.3024366, 46.7444221 ], + [ 10.302474, 46.744357 ], + [ 10.3025053, 46.7442839 ], + [ 10.3025051, 46.7441715 ], + [ 10.3025268, 46.7440265 ], + [ 10.3026014, 46.7439041 ], + [ 10.3026663, 46.7438022 ], + [ 10.3026938, 46.7437654 ], + [ 10.30272, 46.7436564 ], + [ 10.3027076, 46.7435323 ], + [ 10.3026663, 46.7434169 ], + [ 10.3026125, 46.7432818 ], + [ 10.3026127, 46.7431774 ], + [ 10.3026169, 46.7430409 ], + [ 10.3026566, 46.7429115 ], + [ 10.3026797, 46.7427904 ], + [ 10.3026779, 46.7425416 ], + [ 10.3027094, 46.7423642 ], + [ 10.3027348, 46.7422873 ], + [ 10.3027477, 46.7419297 ], + [ 10.3027614, 46.7418491 ], + [ 10.3028103, 46.7417837 ], + [ 10.3028952, 46.7417333 ], + [ 10.3029809, 46.7416991 ], + [ 10.3030377, 46.7416736 ], + [ 10.3031116, 46.7416317 ], + [ 10.3031728, 46.7415819 ], + [ 10.3034324, 46.7412944 ], + [ 10.3037428, 46.741098 ], + [ 10.3039931, 46.7406944 ], + [ 10.3041747, 46.7404932 ], + [ 10.3042644, 46.7404106 ], + [ 10.3043254, 46.7403569 ], + [ 10.3043694, 46.7403076 ], + [ 10.3043723, 46.7402553 ], + [ 10.3043795, 46.7401749 ], + [ 10.3043581, 46.7400952 ], + [ 10.3043246, 46.7400198 ], + [ 10.3042985, 46.7399601 ], + [ 10.3042848, 46.7399164 ], + [ 10.304268, 46.7398325 ], + [ 10.3042646, 46.7397684 ], + [ 10.3042957, 46.7396913 ], + [ 10.3043268, 46.7396142 ], + [ 10.3043743, 46.7394606 ], + [ 10.3043649, 46.7393926 ], + [ 10.3043253, 46.7393092 ], + [ 10.3042451, 46.7392311 ], + [ 10.3041714, 46.7391686 ], + [ 10.3041461, 46.7391251 ], + [ 10.3041442, 46.739089 ], + [ 10.3041643, 46.7390363 ], + [ 10.3042729, 46.7388771 ], + [ 10.3043154, 46.7387998 ], + [ 10.3043592, 46.7387465 ], + [ 10.3044552, 46.7383507 ], + [ 10.3044964, 46.7381409 ], + [ 10.3045263, 46.7379797 ], + [ 10.304496199999999, 46.7378601 ], + [ 10.3043784, 46.7376141 ], + [ 10.3043257, 46.7375151 ], + [ 10.3043377, 46.7374024 ], + [ 10.3043889, 46.7372727 ], + [ 10.3044691, 46.7371341 ], + [ 10.3045158, 46.7370286 ], + [ 10.3045627, 46.7368027 ], + [ 10.3045557, 46.7366704 ], + [ 10.3045242, 46.7364624 ], + [ 10.3044416, 46.7363402 ], + [ 10.3042946, 46.7362073 ], + [ 10.3042393, 46.7361526 ], + [ 10.3042298, 46.7360805 ], + [ 10.3042321, 46.7360163 ], + [ 10.3042513, 46.7359476 ], + [ 10.3043114, 46.7358617 ], + [ 10.3044818, 46.7356648 ], + [ 10.3047836, 46.7354164 ], + [ 10.3048109, 46.7353756 ], + [ 10.3048209, 46.7353472 ], + [ 10.3048194, 46.7353191 ], + [ 10.3048111, 46.7352713 ], + [ 10.3047846, 46.7352197 ], + [ 10.3046777, 46.7351181 ], + [ 10.3045935, 46.7350719 ], + [ 10.3045498, 46.7350209 ], + [ 10.3045177, 46.7349695 ], + [ 10.3044979, 46.7349219 ], + [ 10.3044952, 46.7348698 ], + [ 10.3045089, 46.7348051 ], + [ 10.304511399999999, 46.7347449 ], + [ 10.3045131, 46.7346686 ], + [ 10.3045321, 46.7344715 ], + [ 10.3045545, 46.7343385 ], + [ 10.3046021, 46.7342489 ], + [ 10.3047367, 46.7341492 ], + [ 10.3048722, 46.7340655 ], + [ 10.3048929, 46.7340089 ], + [ 10.3049047, 46.7339081 ], + [ 10.3049178, 46.7338155 ], + [ 10.3049307, 46.7337349 ], + [ 10.304947, 46.73355 ], + [ 10.3049389, 46.7333976 ], + [ 10.3049114, 46.7333099 ], + [ 10.3048838, 46.7332385 ], + [ 10.3048969, 46.7331618 ], + [ 10.3048825, 46.7328893 ], + [ 10.3048714, 46.7327891 ], + [ 10.3048563, 46.7327213 ], + [ 10.304858, 46.732645 ], + [ 10.3048648, 46.7325565 ], + [ 10.3049134, 46.7324711 ], + [ 10.3050996, 46.7322496 ], + [ 10.3051776, 46.7321152 ], + [ 10.3052125, 46.7320019 ], + [ 10.3052571, 46.7313024 ], + [ 10.3053059, 46.7308035 ], + [ 10.3053063, 46.7301973 ], + [ 10.3052934, 46.7299529 ], + [ 10.3052734, 46.7298088 ], + [ 10.3052347, 46.7297416 ], + [ 10.3052031, 46.7296863 ], + [ 10.3052014, 46.7296541 ], + [ 10.3052113, 46.7296257 ], + [ 10.3054225, 46.7294279 ], + [ 10.305492600000001, 46.7293137 ], + [ 10.3054878, 46.7292857 ], + [ 10.3054085, 46.729103 ], + [ 10.3053894, 46.7289751 ], + [ 10.3053233, 46.7288242 ], + [ 10.3053008, 46.7287245 ], + [ 10.305254, 46.7286133 ], + [ 10.3052038, 46.7285463 ], + [ 10.3050939, 46.7284647 ], + [ 10.3049673, 46.7283916 ], + [ 10.3049248, 46.7283606 ], + [ 10.3049002, 46.7283292 ], + [ 10.3048871, 46.7282973 ], + [ 10.3048599, 46.7282338 ], + [ 10.3047663, 46.7280114 ], + [ 10.3047417, 46.7279799 ], + [ 10.3046415, 46.727850000000004 ], + [ 10.304659000000001, 46.7277933 ], + [ 10.3046674, 46.7277368 ], + [ 10.3047229, 46.7275789 ], + [ 10.3048483, 46.7274153 ], + [ 10.3049099, 46.7272492 ], + [ 10.3049473, 46.727184 ], + [ 10.3050127, 46.7271519 ], + [ 10.3050433, 46.7268507 ], + [ 10.3051976, 46.7261051 ], + [ 10.3054978, 46.7254891 ], + [ 10.3060606, 46.7247493 ], + [ 10.3064141, 46.7242589 ], + [ 10.3065154, 46.7237027 ], + [ 10.3064582, 46.7228275 ], + [ 10.3065112, 46.7220087 ], + [ 10.3066452, 46.7210972 ], + [ 10.307009, 46.7197702 ], + [ 10.307309, 46.7188742 ], + [ 10.3077288, 46.7177871 ], + [ 10.3085217, 46.7165924 ], + [ 10.3091015, 46.7155435 ], + [ 10.3093207, 46.7143913 ], + [ 10.3094297, 46.7135199 ], + [ 10.3098713, 46.7129192 ], + [ 10.3104953, 46.7122877 ], + [ 10.3106417, 46.7121651 ], + [ 10.3101207, 46.7113816 ], + [ 10.3094318, 46.7105033 ], + [ 10.3087951, 46.7097272 ], + [ 10.3079157, 46.7089257 ], + [ 10.3070957, 46.7081462 ], + [ 10.3064558, 46.7072792 ], + [ 10.3058318, 46.7060338 ], + [ 10.3052213, 46.7047187 ], + [ 10.3046145, 46.7035188 ], + [ 10.3039221, 46.7022003 ], + [ 10.3034195, 46.7011589 ], + [ 10.3026507, 46.7000639 ], + [ 10.3019553, 46.6990254 ], + [ 10.3014647, 46.6977325 ], + [ 10.3011053, 46.6968153 ], + [ 10.3005125, 46.6957985 ], + [ 10.2997695, 46.6950639 ], + [ 10.2981071, 46.694552 ], + [ 10.2968147, 46.6938013 ], + [ 10.2956015, 46.6925858 ], + [ 10.2949393, 46.6914899 ], + [ 10.2945749, 46.6903207 ], + [ 10.2942516, 46.6891234 ], + [ 10.2936161, 46.6877748 ], + [ 10.292781, 46.6866697 ], + [ 10.2915521, 46.6855689 ], + [ 10.2905911, 46.6844471 ], + [ 10.2901602, 46.6838575 ], + [ 10.2900197, 46.6834586 ], + [ 10.2901992, 46.6827734 ], + [ 10.2903646, 46.6822145 ], + [ 10.2917592, 46.6813159 ], + [ 10.2923103, 46.6808893 ], + [ 10.2930367, 46.6801214 ], + [ 10.2936905, 46.6799635 ], + [ 10.2940198, 46.6796842 ], + [ 10.2944354, 46.679531 ], + [ 10.2960543, 46.6791478 ], + [ 10.2968584, 46.6787696 ], + [ 10.297666, 46.6778909 ], + [ 10.2981744, 46.6774606 ], + [ 10.2991435, 46.6773937 ], + [ 10.3002995, 46.6773859 ], + [ 10.3005772, 46.6774837 ], + [ 10.3008831, 46.6773891 ], + [ 10.3015671, 46.6773142 ], + [ 10.3021467, 46.6771826 ], + [ 10.3025219, 46.6764543 ], + [ 10.302834, 46.6764961 ], + [ 10.3042328, 46.676152 ], + [ 10.3048457, 46.6757855 ], + [ 10.305384, 46.6755703 ], + [ 10.3058921, 46.6755346 ], + [ 10.3064724, 46.6752443 ], + [ 10.3079153, 46.674671000000004 ], + [ 10.3086254, 46.6746361 ], + [ 10.3095226, 46.6746872 ], + [ 10.3103278, 46.6744661 ], + [ 10.3107518, 46.6745477 ], + [ 10.3129562, 46.6739734 ], + [ 10.3128184, 46.6732247 ], + [ 10.312888300000001, 46.6727057 ], + [ 10.3128817, 46.6720184 ], + [ 10.3128315, 46.6718346 ], + [ 10.3129998, 46.6714369 ], + [ 10.3133728, 46.6704441 ], + [ 10.3140059, 46.6687753 ], + [ 10.3138686, 46.6686942 ], + [ 10.3080098, 46.6654635 ], + [ 10.3048206, 46.6626841 ], + [ 10.2953313, 46.6594656 ], + [ 10.2896828, 46.6577514 ], + [ 10.2879031, 46.657671 ], + [ 10.2869212, 46.6569485 ], + [ 10.2866432, 46.6567437 ], + [ 10.2859341, 46.6569472 ], + [ 10.2854362, 46.6571117 ], + [ 10.2848502, 46.6574344 ], + [ 10.2841023, 46.6574446 ], + [ 10.2839373, 46.6568916 ], + [ 10.2837404, 46.656981 ], + [ 10.2830459, 46.6573522 ], + [ 10.2822795, 46.6577727 ], + [ 10.2814595, 46.6581821 ], + [ 10.2806306, 46.6585628 ], + [ 10.2799143, 46.6588633 ], + [ 10.2795288, 46.6590467 ], + [ 10.2794142, 46.6588689 ], + [ 10.2789342, 46.6583138 ], + [ 10.2783449, 46.6576504 ], + [ 10.2770348, 46.656021 ], + [ 10.2758687, 46.6549259 ], + [ 10.2753129, 46.6543968 ], + [ 10.2729991, 46.6528497 ], + [ 10.2711558, 46.651609 ], + [ 10.2686072, 46.649897 ], + [ 10.2678477, 46.6493866 ], + [ 10.2666813, 46.6485964 ], + [ 10.2663881, 46.6483995 ], + [ 10.2662827, 46.6483299 ], + [ 10.2659627, 46.6481185 ], + [ 10.2654884, 46.6478555 ], + [ 10.2652319, 46.6477132 ], + [ 10.2625553, 46.6462286 ], + [ 10.2580896, 46.6437514 ], + [ 10.2572023, 46.6431708 ], + [ 10.2554103, 46.6438702 ], + [ 10.2516342, 46.6444559 ], + [ 10.2465209, 46.6436695 ], + [ 10.2462247, 46.6438435 ], + [ 10.2460447, 46.6439321 ], + [ 10.2457141, 46.6440167 ], + [ 10.2453009, 46.6440967 ], + [ 10.2450957, 46.64422 ], + [ 10.2448201, 46.6444648 ], + [ 10.2441611, 46.6446744 ], + [ 10.2437959, 46.6447193 ], + [ 10.2431073, 46.6447681 ], + [ 10.2426863, 46.6448885 ], + [ 10.2420687, 46.6450917 ], + [ 10.241645, 46.6450971 ], + [ 10.241319, 46.6450323 ], + [ 10.240941, 46.6449108 ], + [ 10.2398597, 46.6430628 ], + [ 10.2397895, 46.6429428 ], + [ 10.2390077, 46.6419294 ], + [ 10.2382873, 46.6406335 ], + [ 10.2435494, 46.6385088 ], + [ 10.247525, 46.6319817 ], + [ 10.2491036, 46.6298855 ], + [ 10.2500813, 46.6269583 ], + [ 10.2505622, 46.6248276 ], + [ 10.2521106, 46.6213807 ], + [ 10.2490319, 46.6182654 ], + [ 10.2449054, 46.6221489 ], + [ 10.2447876, 46.6221675 ], + [ 10.2411882, 46.6270457 ], + [ 10.2403166, 46.6313579 ], + [ 10.2403299, 46.6321847 ], + [ 10.2403432, 46.6323854 ], + [ 10.2404432, 46.6325582 ], + [ 10.2404242, 46.6327096 ], + [ 10.2402429, 46.6328053 ], + [ 10.2401632, 46.6332727 ], + [ 10.2401725, 46.6334337 ], + [ 10.2402476, 46.6336951 ], + [ 10.2401277, 46.633833 ], + [ 10.2401207, 46.6340689 ], + [ 10.2402205, 46.6342485 ], + [ 10.2402491, 46.6344067 ], + [ 10.2402652, 46.6350931 ], + [ 10.2401714, 46.6352004 ], + [ 10.2400125, 46.6352915 ], + [ 10.2395894, 46.6353339 ], + [ 10.2391757, 46.635327 ], + [ 10.2388899, 46.6353512 ], + [ 10.2387501, 46.6353137 ], + [ 10.2386598, 46.6352478 ], + [ 10.2385995, 46.6351264 ], + [ 10.2385183, 46.6350379 ], + [ 10.2383963, 46.6349657 ], + [ 10.2382572, 46.6349233 ], + [ 10.2380385, 46.6349153 ], + [ 10.2376453, 46.6349287 ], + [ 10.2375258, 46.6349171 ], + [ 10.2374199, 46.6348743 ], + [ 10.2373328, 46.6347764 ], + [ 10.2372083, 46.6346963 ], + [ 10.2369721, 46.6346338 ], + [ 10.2368699, 46.6345469 ], + [ 10.2360293, 46.6343968 ], + [ 10.2358428, 46.6342698 ], + [ 10.2357018, 46.6340997 ], + [ 10.2356715, 46.6338563 ], + [ 10.2355229, 46.6337722 ], + [ 10.2353858, 46.6335905 ], + [ 10.2351477, 46.6334834 ], + [ 10.234861, 46.6334485 ], + [ 10.2347119, 46.6334074 ], + [ 10.2343872, 46.6332648 ], + [ 10.2342579, 46.6331269 ], + [ 10.2341033, 46.633099 ], + [ 10.2339892, 46.6330495 ], + [ 10.2338171, 46.6330442 ], + [ 10.2336414, 46.6330094 ], + [ 10.2334475, 46.633025 ], + [ 10.2332862, 46.632997 ], + [ 10.2331574, 46.6329973 ], + [ 10.2330356, 46.6329618 ], + [ 10.232931, 46.632951 ], + [ 10.2329035, 46.6328644 ], + [ 10.2328459, 46.6328278 ], + [ 10.2326635, 46.6328239 ], + [ 10.2324207, 46.6327502 ], + [ 10.2322339, 46.6326586 ], + [ 10.2320119, 46.6326125 ], + [ 10.2318079, 46.6325131 ], + [ 10.2315136, 46.6323933 ], + [ 10.2314261, 46.6323416 ], + [ 10.2311617, 46.6322924 ], + [ 10.230923, 46.6321793 ], + [ 10.230748, 46.6321577 ], + [ 10.2306585, 46.6321311 ], + [ 10.2305392, 46.6320727 ], + [ 10.2302559, 46.6318902 ], + [ 10.2300914, 46.6318174 ], + [ 10.2297733, 46.6317489 ], + [ 10.2296325, 46.6316742 ], + [ 10.2294106, 46.6316535 ], + [ 10.2292492, 46.6316179 ], + [ 10.229034, 46.6315127 ], + [ 10.2288565, 46.6313782 ], + [ 10.2285716, 46.631122 ], + [ 10.2283963, 46.6308795 ], + [ 10.2282664, 46.6307279 ], + [ 10.228202, 46.6306913 ], + [ 10.2280292, 46.6306286 ], + [ 10.2279329, 46.6305584 ], + [ 10.2278322, 46.630418399999996 ], + [ 10.2277852, 46.6301872 ], + [ 10.2277398, 46.6300605 ], + [ 10.2276603, 46.6299862 ], + [ 10.2275579, 46.629952 ], + [ 10.2274568, 46.6299554 ], + [ 10.2272485, 46.6300121 ], + [ 10.2269849, 46.6300485 ], + [ 10.2268524, 46.6300395 ], + [ 10.2266723, 46.6300655 ], + [ 10.2264162, 46.6300537 ], + [ 10.2262584, 46.6299573 ], + [ 10.2261218, 46.6297806 ], + [ 10.2260431, 46.6297153 ], + [ 10.2258987, 46.6296808 ], + [ 10.2256683, 46.6296792 ], + [ 10.225537, 46.6296484 ], + [ 10.2253239, 46.6295329 ], + [ 10.2248946, 46.6294158 ], + [ 10.2246835, 46.6293351 ], + [ 10.2244672, 46.6291747 ], + [ 10.2241857, 46.6291247 ], + [ 10.2240334, 46.6289027 ], + [ 10.2238782, 46.6286479 ], + [ 10.2236581, 46.6285004 ], + [ 10.2235317, 46.6283192 ], + [ 10.2234945, 46.6283007 ], + [ 10.2234426, 46.6283073 ], + [ 10.2232099, 46.6283371 ], + [ 10.2224629, 46.6284471 ], + [ 10.2222314, 46.6284444 ], + [ 10.2187371, 46.6271929 ], + [ 10.2161802, 46.6256314 ], + [ 10.2149717, 46.6254253 ], + [ 10.2138075, 46.6250915 ], + [ 10.2125601, 46.6247002 ], + [ 10.2109482, 46.6247921 ], + [ 10.2094378, 46.6253122 ], + [ 10.2082219, 46.6258981 ], + [ 10.2059755, 46.6263348 ], + [ 10.2042888, 46.6271225 ], + [ 10.202475, 46.6267105 ], + [ 10.2001586, 46.6263163 ], + [ 10.1978482, 46.6259958 ], + [ 10.1940356, 46.6254763 ], + [ 10.1937899, 46.6255781 ], + [ 10.1935327, 46.6256513 ], + [ 10.1927642, 46.625934 ], + [ 10.1879869, 46.625586 ], + [ 10.1830673, 46.6239694 ], + [ 10.1738424, 46.6200375 ], + [ 10.1624182, 46.6157048 ], + [ 10.1622163, 46.6158508 ], + [ 10.1620295, 46.6159303 ], + [ 10.1616076, 46.6160135 ], + [ 10.1614515, 46.6160118 ], + [ 10.1612998, 46.6160637 ], + [ 10.1609277, 46.6160983 ], + [ 10.1608086, 46.6161121 ], + [ 10.1605822, 46.6161775 ], + [ 10.1603382, 46.6161727 ], + [ 10.1600428, 46.6160727 ], + [ 10.1597524, 46.6160657 ], + [ 10.1596326, 46.6160314 ], + [ 10.1593494, 46.6158638 ], + [ 10.1592543, 46.615766 ], + [ 10.1591943, 46.6156362 ], + [ 10.1591126, 46.6155409 ], + [ 10.1589661, 46.6154922 ], + [ 10.1588128, 46.6153084 ], + [ 10.1586264, 46.6151357 ], + [ 10.1584975, 46.6150747 ], + [ 10.1582894, 46.6150362 ], + [ 10.1580963, 46.614925 ], + [ 10.1579279, 46.6149002 ], + [ 10.1571562, 46.614918 ], + [ 10.1569695, 46.6148832 ], + [ 10.1567762, 46.6148215 ], + [ 10.1563203, 46.614990399999996 ], + [ 10.1558419, 46.6151079 ], + [ 10.1555112, 46.6149465 ], + [ 10.155415, 46.6149359 ], + [ 10.1546193, 46.6151133 ], + [ 10.1543535, 46.6150546 ], + [ 10.1541539, 46.6149759 ], + [ 10.1538536, 46.6149765 ], + [ 10.1534751, 46.615017 ], + [ 10.152858, 46.6148751 ], + [ 10.1526063, 46.6148024 ], + [ 10.1522029, 46.6146708 ], + [ 10.1515193, 46.6146163 ], + [ 10.1513886, 46.61452 ], + [ 10.1512845, 46.6143926 ], + [ 10.1512281, 46.6142868 ], + [ 10.1509775, 46.6142444 ], + [ 10.1506748, 46.614013 ], + [ 10.1505488, 46.6138586 ], + [ 10.1500889, 46.6136326 ], + [ 10.1498183, 46.6134346 ], + [ 10.1494045, 46.6132869 ], + [ 10.1492037, 46.6132723 ], + [ 10.1490152, 46.613198 ], + [ 10.1485688, 46.6129122 ], + [ 10.1484877, 46.6128019 ], + [ 10.1480027, 46.6126689 ], + [ 10.1479196, 46.6125545 ], + [ 10.1477941, 46.6124743 ], + [ 10.147651, 46.6124175 ], + [ 10.1473006, 46.6123545 ], + [ 10.1469615, 46.6122147 ], + [ 10.1466659, 46.6121233 ], + [ 10.1465028, 46.612126 ], + [ 10.1462776, 46.6120816 ], + [ 10.1461354, 46.612003 ], + [ 10.1458452, 46.6119321 ], + [ 10.1456515, 46.6117508 ], + [ 10.1452033, 46.6114783 ], + [ 10.1449255, 46.6113998 ], + [ 10.1446387, 46.6112733 ], + [ 10.1443912, 46.6112157 ], + [ 10.1441712, 46.6111036 ], + [ 10.1438627, 46.6108555 ], + [ 10.1435185, 46.6106862 ], + [ 10.1433855, 46.6106829 ], + [ 10.1432231, 46.6106988 ], + [ 10.1426043, 46.6109104 ], + [ 10.1423208, 46.610781 ], + [ 10.1416944, 46.6108591 ], + [ 10.1413774, 46.6108745 ], + [ 10.140947, 46.6109458 ], + [ 10.1405142, 46.6108985 ], + [ 10.1403044, 46.610908 ], + [ 10.1400951, 46.6109613 ], + [ 10.1398005, 46.6109142 ], + [ 10.1394008, 46.6109328 ], + [ 10.1392083, 46.6110085 ], + [ 10.1390216, 46.6110271 ], + [ 10.1388033, 46.6109621 ], + [ 10.1385414, 46.6108485 ], + [ 10.1381619, 46.6107563 ], + [ 10.1373591, 46.6107401 ], + [ 10.1370753, 46.610373 ], + [ 10.1370694, 46.6101542 ], + [ 10.1369966, 46.6099721 ], + [ 10.1369779, 46.6098252 ], + [ 10.1370019, 46.6097553 ], + [ 10.1369739, 46.6096287 ], + [ 10.1368754, 46.6094005 ], + [ 10.1367532, 46.6092195 ], + [ 10.1367673, 46.6089889 ], + [ 10.1369635, 46.6086658 ], + [ 10.1368222, 46.6086305 ], + [ 10.1366222, 46.6083838 ], + [ 10.1366159, 46.6079978 ], + [ 10.1366874, 46.6078556 ], + [ 10.1364299, 46.6077395 ], + [ 10.1362116, 46.6075365 ], + [ 10.1359736, 46.6075359 ], + [ 10.1354138, 46.6076887 ], + [ 10.1346064, 46.607891 ], + [ 10.1341757, 46.6076412 ], + [ 10.1339403, 46.6073658 ], + [ 10.1336964, 46.6072437 ], + [ 10.133483, 46.6071895 ], + [ 10.1332749, 46.6068927 ], + [ 10.1330821, 46.6067087 ], + [ 10.1328739, 46.606681 ], + [ 10.1325844, 46.6064131 ], + [ 10.1323864, 46.6062946 ], + [ 10.1318418, 46.6062978 ], + [ 10.131587, 46.6061278 ], + [ 10.1314135, 46.6060479 ], + [ 10.1307207, 46.6060057 ], + [ 10.1300971, 46.606004 ], + [ 10.1294076, 46.6057439 ], + [ 10.1290653, 46.6056511 ], + [ 10.128584, 46.6055082 ], + [ 10.1279801, 46.6052593 ], + [ 10.1276542, 46.6050805 ], + [ 10.1274261, 46.6051585 ], + [ 10.1272259, 46.6052565 ], + [ 10.1269051, 46.6054493 ], + [ 10.1267078, 46.6053847 ], + [ 10.1265439, 46.6054945 ], + [ 10.1260341, 46.6056218 ], + [ 10.1255319, 46.6056772 ], + [ 10.125191300000001, 46.6056466 ], + [ 10.1247214, 46.6056574 ], + [ 10.1245553, 46.6057767 ], + [ 10.1242621, 46.6059454 ], + [ 10.1238391, 46.6061199 ], + [ 10.1235751, 46.6060117 ], + [ 10.1229534, 46.6061357 ], + [ 10.1221807, 46.6062226 ], + [ 10.1219575, 46.6061131 ], + [ 10.1216363, 46.6061062 ], + [ 10.1212571, 46.6059521 ], + [ 10.120944, 46.6059595 ], + [ 10.1205341, 46.60604 ], + [ 10.1202226, 46.6059249 ], + [ 10.1198761, 46.6058361 ], + [ 10.119365, 46.605934 ], + [ 10.1190567, 46.6059446 ], + [ 10.1185448, 46.606079199999996 ], + [ 10.1181047, 46.606275600000004 ], + [ 10.1179019, 46.6063027 ], + [ 10.1173965, 46.6063075 ], + [ 10.1168292, 46.60644 ], + [ 10.1157633, 46.6068371 ], + [ 10.1153525, 46.6069126 ], + [ 10.1147261, 46.6069898 ], + [ 10.1143263, 46.6069776 ], + [ 10.1134999, 46.6070986 ], + [ 10.1133165, 46.6071823 ], + [ 10.1131765, 46.6073032 ], + [ 10.1130293, 46.6073695 ], + [ 10.1128454, 46.6075089 ], + [ 10.1127744, 46.607607 ], + [ 10.1125824, 46.607731 ], + [ 10.112318, 46.6078483 ], + [ 10.1120109, 46.607949 ], + [ 10.1115777, 46.6080231 ], + [ 10.1112226, 46.6081195 ], + [ 10.1108643, 46.6081724 ], + [ 10.1106542, 46.6083069 ], + [ 10.1100692, 46.6084144 ], + [ 10.1093203, 46.6086979 ], + [ 10.1091537, 46.6088168 ], + [ 10.1090213, 46.608992 ], + [ 10.1088501, 46.6091676 ], + [ 10.1085955, 46.6093285 ], + [ 10.1083727, 46.609434 ], + [ 10.1080079, 46.6095234 ], + [ 10.1076955, 46.609824 ], + [ 10.1073319, 46.6100749 ], + [ 10.1067679, 46.6105635 ], + [ 10.1066606, 46.6106954 ], + [ 10.1064863, 46.610635 ], + [ 10.1061989, 46.6106595 ], + [ 10.1058373, 46.6107334 ], + [ 10.1055568, 46.6108248 ], + [ 10.1054316, 46.6107249 ], + [ 10.1052665, 46.6106823 ], + [ 10.1049612, 46.6106984 ], + [ 10.1047368, 46.6106788 ], + [ 10.1046298, 46.6106965 ], + [ 10.1043889, 46.6107679 ], + [ 10.1040659, 46.6107977 ], + [ 10.1037438, 46.6106926 ], + [ 10.1035767, 46.6106706 ], + [ 10.1034298, 46.6107011 ], + [ 10.1033045, 46.6107707 ], + [ 10.1031407, 46.6108053 ], + [ 10.1029691, 46.6108123 ], + [ 10.1024989, 46.6107101 ], + [ 10.1023629, 46.6107176 ], + [ 10.1015432, 46.6098765 ], + [ 10.1014177, 46.609249 ], + [ 10.1013581, 46.6087196 ], + [ 10.1013803, 46.6081189 ], + [ 10.100679, 46.6070132 ], + [ 10.0998034, 46.606486 ], + [ 10.0994356, 46.6062158 ], + [ 10.0990229, 46.605899 ], + [ 10.0988456, 46.605457799999996 ], + [ 10.0988447, 46.6049917 ], + [ 10.099368, 46.603399 ], + [ 10.0998644, 46.6030484 ], + [ 10.1004548, 46.6017751 ], + [ 10.1009782, 46.6012993 ], + [ 10.1014032, 46.6009753 ], + [ 10.1006523, 46.6002026 ], + [ 10.1001799, 46.5996676 ], + [ 10.1000068, 46.5990348 ], + [ 10.098912, 46.5982929 ], + [ 10.0980022, 46.5980254 ], + [ 10.0976969, 46.5976844 ], + [ 10.0980135, 46.5972095 ], + [ 10.0979084, 46.596696 ], + [ 10.0980213, 46.5964722 ], + [ 10.0976196, 46.5957926 ], + [ 10.0974211, 46.5949474 ], + [ 10.0972248, 46.5945889 ], + [ 10.0973455, 46.5940203 ], + [ 10.0970206, 46.5934642 ], + [ 10.0970932, 46.5929917 ], + [ 10.0974604, 46.5924999 ], + [ 10.0977169, 46.5921112 ], + [ 10.0985216, 46.5916101 ], + [ 10.0989865, 46.5910477 ], + [ 10.0994165, 46.5906962 ], + [ 10.1001744, 46.5901926 ], + [ 10.1007401, 46.5896769 ], + [ 10.1011669, 46.5891796 ], + [ 10.1003829, 46.5880195 ], + [ 10.1005899, 46.5878426 ], + [ 10.1001661, 46.5869412 ], + [ 10.1002161, 46.5864968 ], + [ 10.1003863, 46.5862453 ], + [ 10.100229, 46.5860892 ], + [ 10.100542, 46.5858789 ], + [ 10.1006906, 46.5856249 ], + [ 10.100924, 46.5853913 ], + [ 10.1012327, 46.5852034 ], + [ 10.10154, 46.5850795 ], + [ 10.1014638, 46.5844233 ], + [ 10.101149, 46.5841939 ], + [ 10.1009627, 46.5839094 ], + [ 10.1008418, 46.5835479 ], + [ 10.1006355, 46.583011 ], + [ 10.1007544, 46.5827494 ], + [ 10.0990238, 46.5821485 ], + [ 10.0978335, 46.5810846 ], + [ 10.0975085, 46.5806569 ], + [ 10.097104, 46.5801399 ], + [ 10.096777, 46.5796885 ], + [ 10.0965623, 46.5789915 ], + [ 10.0961409, 46.5784578 ], + [ 10.0958716, 46.5777421 ], + [ 10.0955898, 46.5773399 ], + [ 10.0951437, 46.5772118 ], + [ 10.0944997, 46.5771057 ], + [ 10.0937945, 46.5768444 ], + [ 10.0930411, 46.5768526 ], + [ 10.0925432, 46.5769682 ], + [ 10.0917764, 46.5767649 ], + [ 10.0912475, 46.5766504 ], + [ 10.0902727, 46.5765695 ], + [ 10.0881973, 46.5760868 ], + [ 10.0875584, 46.576004 ], + [ 10.0869476, 46.5760045 ], + [ 10.0864439, 46.575829 ], + [ 10.0841139, 46.5756176 ], + [ 10.083496, 46.5754611 ], + [ 10.083075, 46.5752728 ], + [ 10.0826998, 46.5752545 ], + [ 10.0818049, 46.5754886 ], + [ 10.0801552, 46.575327 ], + [ 10.0793183, 46.5752339 ], + [ 10.0786732, 46.5751226 ], + [ 10.0782596, 46.5754287 ], + [ 10.0779022, 46.5755768 ], + [ 10.0776619, 46.5757186 ], + [ 10.0773899, 46.575878 ], + [ 10.077058, 46.5759972 ], + [ 10.0766522, 46.576158 ], + [ 10.0763134, 46.5762855 ], + [ 10.0758059, 46.5766015 ], + [ 10.0754338, 46.5767851 ], + [ 10.0750221, 46.5772094 ], + [ 10.0746398, 46.5775341 ], + [ 10.0744154, 46.5778507 ], + [ 10.0741507, 46.5781277 ], + [ 10.0740063, 46.5783274 ], + [ 10.0738418, 46.5785019 ], + [ 10.0736673, 46.5788042 ], + [ 10.0734442, 46.5792495 ], + [ 10.0732759, 46.5794946 ], + [ 10.0731736, 46.5797562 ], + [ 10.073113, 46.5798701 ], + [ 10.0729852, 46.5801439 ], + [ 10.0728645, 46.5803791 ], + [ 10.0727399, 46.5806348 ], + [ 10.0725164, 46.5807525 ], + [ 10.0724068, 46.5810484 ], + [ 10.0713556, 46.5823654 ], + [ 10.0712567, 46.5824956 ], + [ 10.0709276, 46.582792 ], + [ 10.0702864, 46.5832623 ], + [ 10.0695129, 46.5838662 ], + [ 10.0690644, 46.5838531 ], + [ 10.0682939, 46.5838314 ], + [ 10.0670821, 46.5838768 ], + [ 10.0662867, 46.5839142 ], + [ 10.0656291, 46.5840313 ], + [ 10.064961, 46.5842008 ], + [ 10.0641106, 46.5844312 ], + [ 10.0637169, 46.5845412 ], + [ 10.0634654, 46.5846036 ], + [ 10.062928, 46.5848114 ], + [ 10.0624511, 46.5850216 ], + [ 10.062105, 46.5853045 ], + [ 10.0616066, 46.5856773 ], + [ 10.0609633, 46.5868478 ], + [ 10.0608259, 46.5870588 ], + [ 10.0604385, 46.5874008 ], + [ 10.0600218, 46.5877084 ], + [ 10.0596149, 46.5879833 ], + [ 10.059062, 46.5881923 ], + [ 10.058933, 46.5882241 ], + [ 10.0587425, 46.5881988 ], + [ 10.0585548, 46.5881806 ], + [ 10.0583649, 46.5881687 ], + [ 10.0581746, 46.5880984 ], + [ 10.0580274, 46.5880901 ], + [ 10.0578294, 46.5880451 ], + [ 10.0576354, 46.5880829 ], + [ 10.0574951, 46.5881024 ], + [ 10.057325, 46.5880946 ], + [ 10.0571044, 46.5881222 ], + [ 10.0570224, 46.5881304 ], + [ 10.0568695, 46.5881564 ], + [ 10.0566828, 46.5882102 ], + [ 10.0563981, 46.5882113 ], + [ 10.0561948, 46.588261 ], + [ 10.0559804, 46.5882318 ], + [ 10.0557498, 46.5881857 ], + [ 10.0554835, 46.5880785 ], + [ 10.0551036, 46.5880026 ], + [ 10.0549868, 46.5881008 ], + [ 10.0551077, 46.5882555 ], + [ 10.0551303, 46.5883683 ], + [ 10.0551561, 46.5884469 ], + [ 10.0551815, 46.5886335 ], + [ 10.0551163, 46.58877 ], + [ 10.0549764, 46.5889308 ], + [ 10.0547071, 46.588982 ], + [ 10.0545292, 46.5890311 ], + [ 10.0543675, 46.5890618 ], + [ 10.054102, 46.5891237 ], + [ 10.0536532, 46.5891566 ], + [ 10.0529512, 46.5892016 ], + [ 10.0519271, 46.5893188 ], + [ 10.050399, 46.5895276 ], + [ 10.050234, 46.5896259 ], + [ 10.0496029, 46.5901255 ], + [ 10.0488196, 46.5908537 ], + [ 10.0484358, 46.591083 ], + [ 10.0481985, 46.5912396 ], + [ 10.0478556, 46.5914383 ], + [ 10.0474381, 46.5916459 ], + [ 10.0469106, 46.5918767 ], + [ 10.0463102, 46.5921335 ], + [ 10.0456885, 46.5923386 ], + [ 10.0454605, 46.5924834 ], + [ 10.0450923, 46.5926835 ], + [ 10.0448551, 46.5928419 ], + [ 10.0446608, 46.5929575 ], + [ 10.0445189, 46.5930622 ], + [ 10.0443239, 46.5932646 ], + [ 10.0441332, 46.5933707 ], + [ 10.043863, 46.5935227 ], + [ 10.0435742, 46.5936071 ], + [ 10.0431899, 46.593693 ], + [ 10.0427754, 46.5937634 ], + [ 10.04234, 46.5938383 ], + [ 10.0418955, 46.5939107 ], + [ 10.041376, 46.5940017 ], + [ 10.0411243, 46.5940795 ], + [ 10.0405395, 46.5943062 ], + [ 10.0397722, 46.594691 ], + [ 10.0403009, 46.595876 ], + [ 10.0402821, 46.5960276 ], + [ 10.0401767, 46.596227999999996 ], + [ 10.0400495, 46.5964344 ], + [ 10.0398905, 46.596555 ], + [ 10.038938, 46.597961 ], + [ 10.0384702, 46.5988226 ], + [ 10.0380227, 46.5993923 ], + [ 10.0377848, 46.5998261 ], + [ 10.0376549, 46.6002635 ], + [ 10.0376701, 46.6005786 ], + [ 10.0375152, 46.6009571 ], + [ 10.0374164, 46.6020249 ], + [ 10.0376009, 46.6027042 ], + [ 10.0374267, 46.6029517 ], + [ 10.0374022, 46.6035276 ], + [ 10.0372326, 46.6038701 ], + [ 10.0371222, 46.604374 ], + [ 10.0372587, 46.6048877 ], + [ 10.0373179, 46.6058815 ], + [ 10.0371981, 46.6065803 ], + [ 10.0380594, 46.6067871 ], + [ 10.0384794, 46.6066777 ], + [ 10.0387763, 46.6066242 ], + [ 10.0392846, 46.6067198 ], + [ 10.0394141, 46.607004 ], + [ 10.0394408, 46.6073714 ], + [ 10.0394258, 46.6080603 ], + [ 10.0396719, 46.6085304 ], + [ 10.0397009, 46.6085858 ], + [ 10.0397378, 46.6086562 ], + [ 10.0401812, 46.6092033 ], + [ 10.0402523, 46.6092713 ], + [ 10.0407314, 46.6097297 ], + [ 10.0415778, 46.6101857 ], + [ 10.0416556, 46.610332 ], + [ 10.0418346, 46.6106686 ], + [ 10.0419054, 46.6112412 ], + [ 10.0420975, 46.6117535 ], + [ 10.0422896, 46.6120186 ], + [ 10.0423015, 46.612035 ], + [ 10.0425434, 46.6123688 ], + [ 10.0426396, 46.6124788 ], + [ 10.0430109, 46.6129035 ], + [ 10.0432992, 46.6135161 ], + [ 10.0435454, 46.6141027 ], + [ 10.0437039, 46.6147994 ], + [ 10.0437303, 46.615107 ], + [ 10.0437638, 46.6154991 ], + [ 10.0435337, 46.6163486 ], + [ 10.0433885, 46.6172655 ], + [ 10.0433872, 46.6172814 ], + [ 10.0433366, 46.6178985 ], + [ 10.0431887, 46.6179351 ], + [ 10.0426843, 46.6180601 ], + [ 10.0424161, 46.6181266 ], + [ 10.0420776, 46.6181809 ], + [ 10.0414026, 46.6182893 ], + [ 10.0411435, 46.6183865 ], + [ 10.040709, 46.6185495 ], + [ 10.0405213, 46.6186199 ], + [ 10.0404474, 46.6187615 ], + [ 10.0403692, 46.6189115 ], + [ 10.0402328, 46.6191729 ], + [ 10.0401974, 46.6196507 ], + [ 10.0401838, 46.6198347 ], + [ 10.0401579, 46.6205013 ], + [ 10.0403115, 46.6212502 ], + [ 10.0403871, 46.6219208 ], + [ 10.040594, 46.6227081 ], + [ 10.0406143, 46.623299 ], + [ 10.0406809, 46.6239697 ], + [ 10.0407739, 46.6246624 ], + [ 10.0408915, 46.6251709 ], + [ 10.0407683, 46.6255473 ], + [ 10.0405975, 46.62612 ], + [ 10.0403243, 46.626804 ], + [ 10.0401186, 46.6273487 ], + [ 10.0399066, 46.6280835 ], + [ 10.0397939, 46.6286783 ], + [ 10.0400481, 46.6289362 ], + [ 10.0404839, 46.6293222 ], + [ 10.0404587, 46.629799 ], + [ 10.040386, 46.6303577 ], + [ 10.0401523, 46.6308293 ], + [ 10.0402548, 46.6312112 ], + [ 10.0404327, 46.631632 ], + [ 10.0407572, 46.6321296 ], + [ 10.0411801, 46.6329236 ], + [ 10.0416508, 46.6336589 ], + [ 10.0419518, 46.634382 ], + [ 10.0423081, 46.6351829 ], + [ 10.0427832, 46.6358552 ], + [ 10.043499, 46.636711 ], + [ 10.0440791, 46.6374951 ], + [ 10.0444945, 46.6376233 ], + [ 10.0454277, 46.6378539 ], + [ 10.0467305, 46.6381274 ], + [ 10.0470755, 46.6383715 ], + [ 10.0480423, 46.6387391 ], + [ 10.049117, 46.6391096 ], + [ 10.049877, 46.63966 ], + [ 10.0500511, 46.6399827 ], + [ 10.0501659, 46.6401291 ], + [ 10.0502055, 46.6403575 ], + [ 10.050192, 46.6404991 ], + [ 10.0501817, 46.6406145 ], + [ 10.0501516, 46.6407285 ], + [ 10.0501483, 46.6408969 ], + [ 10.0501323, 46.6410394 ], + [ 10.0501285, 46.6411557 ], + [ 10.0501144, 46.6412396 ], + [ 10.0501027, 46.6413173 ], + [ 10.0500878, 46.6414544 ], + [ 10.0501711, 46.6414809 ], + [ 10.0502374, 46.6415086 ], + [ 10.050353, 46.6415589 ], + [ 10.0503745, 46.6416909 ], + [ 10.0503995, 46.6418463 ], + [ 10.0504401, 46.6419978 ], + [ 10.0504688, 46.642072 ], + [ 10.0504854, 46.6421744 ], + [ 10.050501, 46.6422471 ], + [ 10.0505813, 46.6422619 ], + [ 10.0506313, 46.6422701 ], + [ 10.0506982, 46.6422762 ], + [ 10.0508351, 46.6423036 ], + [ 10.0508868, 46.6423604 ], + [ 10.0509563, 46.6424421 ], + [ 10.05104, 46.6425172 ], + [ 10.0511379, 46.6425894 ], + [ 10.0512277, 46.6426887 ], + [ 10.0513373, 46.642795 ], + [ 10.0514467, 46.6428958 ], + [ 10.0515034, 46.6429489 ], + [ 10.0516659, 46.64311 ], + [ 10.0517801, 46.643236 ], + [ 10.051868, 46.6433174 ], + [ 10.0520056, 46.6434402 ], + [ 10.0521194, 46.6435554 ], + [ 10.0522052, 46.6436521 ], + [ 10.052363, 46.6437917 ], + [ 10.0524405, 46.643876 ], + [ 10.0525048, 46.6439586 ], + [ 10.05258, 46.6440915 ], + [ 10.0525657, 46.644207 ], + [ 10.0525262, 46.6443121 ], + [ 10.0525069, 46.6443962 ], + [ 10.0524952, 46.6445126 ], + [ 10.0525123, 46.6446293 ], + [ 10.0525313, 46.6447614 ], + [ 10.0525471, 46.6449142 ], + [ 10.0525839, 46.6450711 ], + [ 10.0525884, 46.6451647 ], + [ 10.0526091, 46.6453084 ], + [ 10.0526493, 46.6454869 ], + [ 10.0526716, 46.6456414 ], + [ 10.0526885, 46.6457897 ], + [ 10.0527096, 46.6459055 ], + [ 10.0527126, 46.6459937 ], + [ 10.0527218, 46.646071 ], + [ 10.0527567, 46.6461713 ], + [ 10.0527688, 46.6462575 ], + [ 10.0527834, 46.6463383 ], + [ 10.0527969, 46.6464254 ], + [ 10.0527225, 46.646505 ], + [ 10.0525962, 46.6465963 ], + [ 10.052484, 46.6466801 ], + [ 10.0523719, 46.6467657 ], + [ 10.0522725, 46.6468421 ], + [ 10.0521897, 46.6469065 ], + [ 10.0521028, 46.6469629 ], + [ 10.0519468, 46.6470654 ], + [ 10.0518237, 46.6471359 ], + [ 10.0517259, 46.6471835 ], + [ 10.051654, 46.6472207 ], + [ 10.0515344, 46.6472803 ], + [ 10.0513741, 46.6473712 ], + [ 10.0514686, 46.6473823 ], + [ 10.0516169, 46.647396 ], + [ 10.0517502, 46.6473947 ], + [ 10.0519023, 46.6474065 ], + [ 10.0520267, 46.6474108 ], + [ 10.0521197, 46.6474128 ], + [ 10.052235, 46.6474208 ], + [ 10.0524048, 46.647526 ], + [ 10.0525185, 46.6476015 ], + [ 10.0527051, 46.6477011 ], + [ 10.0528332, 46.6477746 ], + [ 10.0529523, 46.6478527 ], + [ 10.0531278, 46.6479371 ], + [ 10.0532505, 46.6480035 ], + [ 10.0533573, 46.6480675 ], + [ 10.05342, 46.6481042 ], + [ 10.0535041, 46.6481541 ], + [ 10.0536014, 46.6482038 ], + [ 10.0537121, 46.6482668 ], + [ 10.0537983, 46.6483032 ], + [ 10.0538884, 46.6483368 ], + [ 10.0539454, 46.6483566 ], + [ 10.0540516, 46.6484043 ], + [ 10.054159, 46.6484457 ], + [ 10.0543656, 46.6484441 ], + [ 10.0545577, 46.6484409 ], + [ 10.0547212, 46.6484418 ], + [ 10.0548545, 46.6484368 ], + [ 10.0549655, 46.6484323 ], + [ 10.0550974, 46.6484292 ], + [ 10.0552134, 46.6484173 ], + [ 10.0553366, 46.6484243 ], + [ 10.0554296, 46.6484668 ], + [ 10.0554942, 46.6485576 ], + [ 10.0555289, 46.6486128 ], + [ 10.055637, 46.648675 ], + [ 10.0557128, 46.6487115 ], + [ 10.0557804, 46.6487383 ], + [ 10.0559007, 46.648775 ], + [ 10.0560181, 46.6488027 ], + [ 10.0560683, 46.6488199 ], + [ 10.0561841, 46.6488783 ], + [ 10.0562364, 46.6489134 ], + [ 10.0562945, 46.6489305 ], + [ 10.0563917, 46.6489415 ], + [ 10.0563808, 46.648854299999996 ], + [ 10.0563989, 46.6487739 ], + [ 10.0564027, 46.6487315 ], + [ 10.0565164, 46.6486927 ], + [ 10.0566135, 46.6487018 ], + [ 10.0567133, 46.6487137 ], + [ 10.0568067, 46.6487283 ], + [ 10.0569224, 46.6487471 ], + [ 10.0571111, 46.6487943 ], + [ 10.057228, 46.6488086 ], + [ 10.0573254, 46.6488259 ], + [ 10.0574389, 46.6488555 ], + [ 10.0575537, 46.6489229 ], + [ 10.057661, 46.6489625 ], + [ 10.0577376, 46.6489847 ], + [ 10.0578075, 46.6490015 ], + [ 10.0579052, 46.6490278 ], + [ 10.0579788, 46.6490373 ], + [ 10.0580721, 46.6490502 ], + [ 10.0581891, 46.6490689 ], + [ 10.0582524, 46.6490823 ], + [ 10.0583382, 46.649107 ], + [ 10.0584243, 46.6491361 ], + [ 10.0585398, 46.6491864 ], + [ 10.0586282, 46.6492471 ], + [ 10.0587431, 46.6493172 ], + [ 10.0588278, 46.6493815 ], + [ 10.0589305, 46.6494392 ], + [ 10.0589607, 46.6495197 ], + [ 10.0589786, 46.6495825 ], + [ 10.0590106, 46.6496738 ], + [ 10.0590943, 46.649676 ], + [ 10.0591836, 46.6496862 ], + [ 10.0592606, 46.6496795 ], + [ 10.0593573, 46.6496779 ], + [ 10.0594485, 46.6496673 ], + [ 10.0595335, 46.6496668 ], + [ 10.0596016, 46.6496711 ], + [ 10.0596989, 46.6497235 ], + [ 10.0598163, 46.6497881 ], + [ 10.0598591, 46.6498162 ], + [ 10.0599369, 46.6498725 ], + [ 10.0599852, 46.649906 ], + [ 10.0600786, 46.6499602 ], + [ 10.0600784, 46.6500305 ], + [ 10.0600858, 46.6501294 ], + [ 10.060113, 46.6501973 ], + [ 10.0601373, 46.6502582 ], + [ 10.0601715, 46.6503008 ], + [ 10.0602696, 46.650337 ], + [ 10.0603539, 46.6503545 ], + [ 10.0604248, 46.6503632 ], + [ 10.060516, 46.6503896 ], + [ 10.0605976, 46.6504431 ], + [ 10.0606802, 46.6505237 ], + [ 10.0607326, 46.6506021 ], + [ 10.0606951, 46.65069 ], + [ 10.0606693, 46.6507733 ], + [ 10.0606471, 46.6508142 ], + [ 10.0606777, 46.6508659 ], + [ 10.0607649, 46.6508897 ], + [ 10.0608198, 46.6508896 ], + [ 10.0608888, 46.6508804 ], + [ 10.0609657, 46.6508728 ], + [ 10.0610535, 46.6508776 ], + [ 10.0611094, 46.6509073 ], + [ 10.061124, 46.6509485 ], + [ 10.0611374, 46.6510375 ], + [ 10.0611501, 46.6511156 ], + [ 10.0611791, 46.6511729 ], + [ 10.0612277, 46.6512253 ], + [ 10.0612656, 46.6512707 ], + [ 10.0613543, 46.6513127 ], + [ 10.0614153, 46.6513425 ], + [ 10.0614678, 46.6513949 ], + [ 10.0615213, 46.6514392 ], + [ 10.0615856, 46.6514951 ], + [ 10.0616582, 46.6515175 ], + [ 10.0617068, 46.6515286 ], + [ 10.0617662, 46.6515476 ], + [ 10.0618138, 46.6515658 ], + [ 10.0618471, 46.6515888 ], + [ 10.06189, 46.6516251 ], + [ 10.0619162, 46.6516725 ], + [ 10.0619312, 46.6516948 ], + [ 10.0619425, 46.6517747 ], + [ 10.0619493, 46.6518287 ], + [ 10.0619583, 46.6518717 ], + [ 10.0619677, 46.6519274 ], + [ 10.0619893, 46.6519496 ], + [ 10.0620419, 46.6519624 ], + [ 10.0621147, 46.6519453 ], + [ 10.0621614, 46.6519311 ], + [ 10.0622027, 46.6519153 ], + [ 10.0622735, 46.6519206 ], + [ 10.0623839, 46.6519389 ], + [ 10.0624583, 46.651982 ], + [ 10.0624975, 46.6520283 ], + [ 10.0625473, 46.652079 ], + [ 10.0625771, 46.6521173 ], + [ 10.0626046, 46.6521637 ], + [ 10.0626204, 46.6522157 ], + [ 10.0626306, 46.6522543 ], + [ 10.0626277, 46.6522903 ], + [ 10.062615, 46.652349 ], + [ 10.0626159, 46.6523805 ], + [ 10.0626483, 46.652417 ], + [ 10.062688, 46.6524363 ], + [ 10.0627171, 46.6524467 ], + [ 10.0627474, 46.6524562 ], + [ 10.0627975, 46.6524708 ], + [ 10.0628981, 46.6525136 ], + [ 10.062965, 46.6525703 ], + [ 10.0630174, 46.6526173 ], + [ 10.0630829, 46.6526686 ], + [ 10.0631136, 46.6526916 ], + [ 10.0631686, 46.6527431 ], + [ 10.063222, 46.6527811 ], + [ 10.063273, 46.652829 ], + [ 10.0633055, 46.6528681 ], + [ 10.0633645, 46.6529214 ], + [ 10.063425, 46.65298 ], + [ 10.063485, 46.6530224 ], + [ 10.0635542, 46.6530655 ], + [ 10.0636337, 46.6531473 ], + [ 10.0637061, 46.6532111 ], + [ 10.0637713, 46.6532526 ], + [ 10.0638157, 46.6532961 ], + [ 10.0638679, 46.6533413 ], + [ 10.0639188, 46.6533847 ], + [ 10.0640137, 46.6534572 ], + [ 10.0640797, 46.6535266 ], + [ 10.0641719, 46.6535964 ], + [ 10.0642586, 46.6536601 ], + [ 10.064367, 46.6537487 ], + [ 10.0644684, 46.6538184 ], + [ 10.0645272, 46.6538644 ], + [ 10.0645974, 46.6539436 ], + [ 10.064604, 46.6540398 ], + [ 10.0646159, 46.6541387 ], + [ 10.064627, 46.6542529 ], + [ 10.0646267, 46.6543348 ], + [ 10.0646779, 46.6544835 ], + [ 10.0647032, 46.654593 ], + [ 10.0647438, 46.6547824 ], + [ 10.0647643, 46.6549073 ], + [ 10.0648039, 46.6550138 ], + [ 10.064828, 46.6550801 ], + [ 10.0648494, 46.6551465 ], + [ 10.0648864, 46.6552072 ], + [ 10.0649526, 46.6553278 ], + [ 10.0649863, 46.6554129 ], + [ 10.0650376, 46.6555148 ], + [ 10.0651022, 46.6556292 ], + [ 10.0651572, 46.6557238 ], + [ 10.0651836, 46.6557793 ], + [ 10.0652507, 46.6558864 ], + [ 10.0652923, 46.6559732 ], + [ 10.0653398, 46.6560346 ], + [ 10.0653648, 46.6560856 ], + [ 10.0654112, 46.6561543 ], + [ 10.065572, 46.6562467 ], + [ 10.0657616, 46.6563395 ], + [ 10.065974, 46.6564537 ], + [ 10.0668903, 46.6579329 ], + [ 10.0688784, 46.6583661 ], + [ 10.0690357, 46.6583334 ], + [ 10.069149, 46.6583147 ], + [ 10.0693453, 46.6582734 ], + [ 10.0695082, 46.6582532 ], + [ 10.0696356, 46.6582281 ], + [ 10.0697332, 46.6582105 ], + [ 10.0698828, 46.6581815 ], + [ 10.0699945, 46.6581566 ], + [ 10.0700935, 46.6581408 ], + [ 10.0702329, 46.6581246 ], + [ 10.0704497, 46.6581144 ], + [ 10.070609, 46.658106 ], + [ 10.0707438, 46.6581078 ], + [ 10.0708287, 46.6581039 ], + [ 10.0709068, 46.658092 ], + [ 10.0710944, 46.6582047 ], + [ 10.0712175, 46.6583039 ], + [ 10.0713306, 46.6583762 ], + [ 10.0714054, 46.6584301 ], + [ 10.0715304, 46.6585049 ], + [ 10.0716265, 46.6585738 ], + [ 10.0717318, 46.6586444 ], + [ 10.071882, 46.6587288 ], + [ 10.0719674, 46.658788799999996 ], + [ 10.072034, 46.6588321 ], + [ 10.0721511, 46.6589043 ], + [ 10.072174, 46.6590237 ], + [ 10.0721975, 46.6591593 ], + [ 10.0722173, 46.6592608 ], + [ 10.0722278, 46.6593542 ], + [ 10.0722842, 46.6594975 ], + [ 10.0723179, 46.6595826 ], + [ 10.0724077, 46.6597506 ], + [ 10.0724954, 46.6598925 ], + [ 10.0725575, 46.6600087 ], + [ 10.0726059, 46.6601026 ], + [ 10.0726487, 46.6601821 ], + [ 10.0726986, 46.6603309 ], + [ 10.0727596, 46.6604516 ], + [ 10.072813, 46.6605832 ], + [ 10.072871, 46.6607408 ], + [ 10.0729158, 46.6609382 ], + [ 10.0729632, 46.6611338 ], + [ 10.0730034, 46.6613538 ], + [ 10.0730516, 46.6616259 ], + [ 10.0731903, 46.6617663 ], + [ 10.0733026, 46.6618989 ], + [ 10.0734036, 46.6620029 ], + [ 10.0734987, 46.6620844 ], + [ 10.0735742, 46.6621635 ], + [ 10.0743617, 46.6629603 ], + [ 10.0745097, 46.6631545 ], + [ 10.0753874, 46.6639456 ], + [ 10.0754954, 46.6641106 ], + [ 10.0756204, 46.6642791 ], + [ 10.0757135, 46.664426399999996 ], + [ 10.0757865, 46.6645109 ], + [ 10.07584, 46.6646911 ], + [ 10.0758673, 46.6648239 ], + [ 10.0759145, 46.6649187 ], + [ 10.0759946, 46.6649779 ], + [ 10.0760705, 46.6650246 ], + [ 10.07595, 46.6651118 ], + [ 10.0758008, 46.6652002 ], + [ 10.0756626, 46.6653092 ], + [ 10.0755701, 46.6653699 ], + [ 10.0754757, 46.6654522 ], + [ 10.0753361, 46.6655594 ], + [ 10.0753016, 46.6655869 ], + [ 10.0751703, 46.6658452 ], + [ 10.0750373, 46.6659523 ], + [ 10.074942, 46.6660067 ], + [ 10.0747779, 46.6661242 ], + [ 10.0746684, 46.6661833 ], + [ 10.0745553, 46.6662541 ], + [ 10.0744399, 46.6663358 ], + [ 10.0743612, 46.6664665 ], + [ 10.0742885, 46.6665791 ], + [ 10.0742435, 46.6667444 ], + [ 10.0741802, 46.6668659 ], + [ 10.0740974, 46.6669904 ], + [ 10.0740351, 46.6670992 ], + [ 10.0739274, 46.6672222 ], + [ 10.0738413, 46.6673251 ], + [ 10.0737327, 46.6674625 ], + [ 10.0736251, 46.6675432 ], + [ 10.0738372, 46.6676897 ], + [ 10.073978199999999, 46.6677742 ], + [ 10.0740637, 46.6678379 ], + [ 10.0742271, 46.6679248 ], + [ 10.0744178, 46.6680113 ], + [ 10.0745146, 46.6680568 ], + [ 10.0747081, 46.6681451 ], + [ 10.0749323, 46.6682582 ], + [ 10.0751414, 46.6683445 ], + [ 10.0752833, 46.6684155 ], + [ 10.0753839, 46.6684573 ], + [ 10.0755552, 46.6685459 ], + [ 10.0757142, 46.6686185 ], + [ 10.0758631, 46.6687065 ], + [ 10.0759958, 46.6687713 ], + [ 10.0762092, 46.6688719 ], + [ 10.0763606, 46.6689545 ], + [ 10.076436, 46.6689832 ], + [ 10.0766777, 46.6690681 ], + [ 10.0768246, 46.6691255 ], + [ 10.0770104, 46.6692229 ], + [ 10.0771427, 46.669321 ], + [ 10.0772697, 46.6694174 ], + [ 10.0774865, 46.669545 ], + [ 10.0776536, 46.6696751 ], + [ 10.0777871, 46.6697687 ], + [ 10.0779716, 46.6698652 ], + [ 10.0781477, 46.669987 ], + [ 10.0782313, 46.6700759 ], + [ 10.0783548, 46.670185 ], + [ 10.0784869, 46.6702795 ], + [ 10.0785666, 46.6703207 ], + [ 10.0786982, 46.6703964 ], + [ 10.0788844, 46.6704604 ], + [ 10.0789908, 46.6705211 ], + [ 10.0790544, 46.6705508 ], + [ 10.0791708, 46.670597 ], + [ 10.0792317, 46.6706204 ], + [ 10.0793165, 46.6706589 ], + [ 10.0794043, 46.6707108 ], + [ 10.0794496, 46.6707408 ], + [ 10.0795189, 46.6708326 ], + [ 10.0795799, 46.6709092 ], + [ 10.0796355, 46.6709777 ], + [ 10.0797214, 46.6710999 ], + [ 10.0798048, 46.6711816 ], + [ 10.0798666, 46.6712419 ], + [ 10.0799497, 46.671311 ], + [ 10.0800903, 46.6713793 ], + [ 10.0801753, 46.6714241 ], + [ 10.0802643, 46.6714742 ], + [ 10.0803599, 46.6715233 ], + [ 10.080387, 46.6715553 ], + [ 10.0804825, 46.6716035 ], + [ 10.0805754, 46.6716518 ], + [ 10.0807277, 46.6717154 ], + [ 10.080793, 46.6717604 ], + [ 10.0808765, 46.6717989 ], + [ 10.0809388, 46.6718269 ], + [ 10.0810306, 46.6718805 ], + [ 10.0811087, 46.6719146 ], + [ 10.0811895, 46.6719495 ], + [ 10.0813003, 46.6719831 ], + [ 10.0813886, 46.6720053 ], + [ 10.0814452, 46.6720198 ], + [ 10.081523, 46.6720413 ], + [ 10.0815836, 46.6720548 ], + [ 10.0816586, 46.6720718 ], + [ 10.0817339, 46.6720969 ], + [ 10.0819231, 46.6721745 ], + [ 10.081992, 46.6722059 ], + [ 10.0821061, 46.6722611 ], + [ 10.0822295, 46.6723215 ], + [ 10.08229, 46.672336 ], + [ 10.0823719, 46.6723646 ], + [ 10.0824845, 46.6724126 ], + [ 10.0826115, 46.672463 ], + [ 10.0827202, 46.6725138 ], + [ 10.0829231, 46.6726109 ], + [ 10.0831217, 46.6726946 ], + [ 10.0832434, 46.6727443 ], + [ 10.0833667, 46.6728002 ], + [ 10.083498, 46.6728659 ], + [ 10.083694, 46.6729488 ], + [ 10.0838386, 46.6729765 ], + [ 10.0840524, 46.6729952 ], + [ 10.0841932, 46.6730239 ], + [ 10.0843671, 46.6730683 ], + [ 10.0845105, 46.6730988 ], + [ 10.0846134, 46.673128 ], + [ 10.0847227, 46.6731526 ], + [ 10.0848252, 46.6731701 ], + [ 10.0848792, 46.673182 ], + [ 10.084995, 46.6732065 ], + [ 10.0850556, 46.6732696 ], + [ 10.0851253, 46.6733289 ], + [ 10.0852062, 46.6734116 ], + [ 10.0852653, 46.6734675 ], + [ 10.0853149, 46.67351 ], + [ 10.0853631, 46.6735489 ], + [ 10.0854676, 46.6735907 ], + [ 10.0855311, 46.6736142 ], + [ 10.0855852, 46.6736323 ], + [ 10.0857094, 46.6736765 ], + [ 10.0857756, 46.6737017 ], + [ 10.0858522, 46.6737286 ], + [ 10.0859063, 46.6737441 ], + [ 10.0859802, 46.6737665 ], + [ 10.0860329, 46.673781 ], + [ 10.0861214, 46.6738114 ], + [ 10.0861743, 46.6738331 ], + [ 10.0862114, 46.673847 ], + [ 10.0863114, 46.6738691 ], + [ 10.0865265, 46.6738895 ], + [ 10.0866628, 46.6738985 ], + [ 10.0868409, 46.6739068 ], + [ 10.0869758, 46.6739122 ], + [ 10.0871211, 46.6739156 ], + [ 10.0872009, 46.6739154 ], + [ 10.0873185, 46.6739111 ], + [ 10.0874028, 46.673883000000004 ], + [ 10.0874659, 46.6738488 ], + [ 10.0876532, 46.6738111 ], + [ 10.087743, 46.6738414 ], + [ 10.0878548, 46.6738651 ], + [ 10.0880339, 46.6739058 ], + [ 10.0881407, 46.6739341 ], + [ 10.088304, 46.6739751 ], + [ 10.0884975, 46.6740174 ], + [ 10.0886557, 46.6740594 ], + [ 10.0887847, 46.6740891 ], + [ 10.0889283, 46.6741241 ], + [ 10.0890718, 46.6741554 ], + [ 10.0891839, 46.674189 ], + [ 10.0893156, 46.6742187 ], + [ 10.089392, 46.6743284 ], + [ 10.0894362, 46.6744115 ], + [ 10.0894933, 46.674489 ], + [ 10.0895351, 46.6745298 ], + [ 10.0897097, 46.6745527 ], + [ 10.0897963, 46.6745623 ], + [ 10.0898435, 46.6745661 ], + [ 10.0900388, 46.6745806 ], + [ 10.0901245, 46.6746496 ], + [ 10.0902162, 46.6746997 ], + [ 10.0902928, 46.6747724 ], + [ 10.090382, 46.6748252 ], + [ 10.0905195, 46.6749242 ], + [ 10.090517, 46.6751114 ], + [ 10.090519, 46.6752275 ], + [ 10.090528, 46.6753579 ], + [ 10.0906835, 46.6754449 ], + [ 10.0907727, 46.6754995 ], + [ 10.0908924, 46.6755672 ], + [ 10.0909546, 46.6755924 ], + [ 10.0911538, 46.6756968 ], + [ 10.0912585, 46.6758844 ], + [ 10.0913191, 46.6760357 ], + [ 10.0913702, 46.6761755 ], + [ 10.0914495, 46.676295 ], + [ 10.091475, 46.6765494 ], + [ 10.0915083, 46.6766624 ], + [ 10.0915285, 46.6767737 ], + [ 10.091576, 46.6768343 ], + [ 10.0915953, 46.67696 ], + [ 10.0916842, 46.6770488 ], + [ 10.0917787, 46.6771502 ], + [ 10.0918599, 46.6772454 ], + [ 10.0919309, 46.6773056 ], + [ 10.0920302, 46.6773925 ], + [ 10.0920926, 46.6774717 ], + [ 10.0921513, 46.6775114 ], + [ 10.0922229, 46.6775888 ], + [ 10.0923039, 46.6777236 ], + [ 10.0923292, 46.6778295 ], + [ 10.0923875, 46.6779484 ], + [ 10.0924604, 46.6780716 ], + [ 10.0925867, 46.6781428 ], + [ 10.09266, 46.6781904 ], + [ 10.0927411, 46.6782352 ], + [ 10.0928023, 46.6782722 ], + [ 10.0928794, 46.6783161 ], + [ 10.0929263, 46.6783551 ], + [ 10.0929956, 46.6783973 ], + [ 10.0931633, 46.6784977 ], + [ 10.0933374, 46.6785475 ], + [ 10.0935, 46.6786065 ], + [ 10.0936387, 46.6786541 ], + [ 10.0937892, 46.6787015 ], + [ 10.0939157, 46.6787349 ], + [ 10.0940637, 46.6787851 ], + [ 10.0942193, 46.6788307 ], + [ 10.0943345, 46.6788768 ], + [ 10.0945102, 46.6789833 ], + [ 10.094664999999999, 46.679091 ], + [ 10.094781, 46.6791668 ], + [ 10.0948982, 46.679239 ], + [ 10.0950034, 46.6793033 ], + [ 10.0951402, 46.6793743 ], + [ 10.095256, 46.6794456 ], + [ 10.0953026, 46.6794747 ], + [ 10.0953616, 46.6795234 ], + [ 10.0954797, 46.6795821 ], + [ 10.0954107, 46.679638 ], + [ 10.0955317, 46.6797065 ], + [ 10.0956221, 46.6797566 ], + [ 10.0956763, 46.6797783 ], + [ 10.0957472, 46.6798314 ], + [ 10.0958354, 46.6799877 ], + [ 10.095892, 46.6800905 ], + [ 10.0959646, 46.6801615 ], + [ 10.0960483, 46.6802521 ], + [ 10.0960975, 46.6803253 ], + [ 10.0960998, 46.6804486 ], + [ 10.0961255, 46.6805706 ], + [ 10.096205, 46.6806974 ], + [ 10.0962851, 46.6807548 ], + [ 10.0963449, 46.6808764 ], + [ 10.0963935, 46.6809756 ], + [ 10.096437, 46.6810768 ], + [ 10.0964752, 46.6811807 ], + [ 10.0965278, 46.6813267 ], + [ 10.0966289, 46.6814297 ], + [ 10.0967475, 46.6815037 ], + [ 10.096794, 46.6815292 ], + [ 10.0968871, 46.6815819 ], + [ 10.0969548, 46.6816179 ], + [ 10.0970544, 46.6816228 ], + [ 10.0971347, 46.6816415 ], + [ 10.097197, 46.6816676 ], + [ 10.0972006, 46.6817027 ], + [ 10.0971645, 46.6817212 ], + [ 10.0970833, 46.6817187 ], + [ 10.0970179, 46.6817196 ], + [ 10.0969434, 46.6817224 ], + [ 10.0969043, 46.6817266 ], + [ 10.0968446, 46.6817454 ], + [ 10.0968481, 46.681776 ], + [ 10.0969159, 46.6818137 ], + [ 10.096987, 46.6818272 ], + [ 10.0970593, 46.6818415 ], + [ 10.0971079, 46.6818471 ], + [ 10.0971956, 46.6818495 ], + [ 10.0972613, 46.6818576 ], + [ 10.0973755, 46.6818713 ], + [ 10.0974453, 46.6818875 ], + [ 10.0975102, 46.6819604 ], + [ 10.0975917, 46.6820655 ], + [ 10.0976992, 46.6821648 ], + [ 10.0978363, 46.6822467 ], + [ 10.0980279, 46.6823125 ], + [ 10.0981273, 46.6823579 ], + [ 10.0982965, 46.6824168 ], + [ 10.0984339, 46.6824662 ], + [ 10.0985567, 46.682505 ], + [ 10.0986781, 46.6825385 ], + [ 10.0988059, 46.6825718 ], + [ 10.0989051, 46.6826074 ], + [ 10.0990576, 46.6826332 ], + [ 10.0992447, 46.6826333 ], + [ 10.0993334, 46.6826249 ], + [ 10.0994018, 46.6825942 ], + [ 10.0995292, 46.6825655 ], + [ 10.0996275, 46.6825695 ], + [ 10.0997115, 46.68258 ], + [ 10.0997886, 46.6826213 ], + [ 10.0998776, 46.6826678 ], + [ 10.0999481, 46.6827082 ], + [ 10.1000762, 46.6827515 ], + [ 10.1001772, 46.68276 ], + [ 10.1002149, 46.6827523 ], + [ 10.1003465, 46.6827342 ], + [ 10.1004105, 46.6827298 ], + [ 10.1005399, 46.6827235 ], + [ 10.1006544, 46.6827021 ], + [ 10.1008007, 46.6826956 ], + [ 10.1009335, 46.6827172 ], + [ 10.1010245, 46.682742 ], + [ 10.1011347, 46.6827549 ], + [ 10.1012205, 46.6827807 ], + [ 10.101364, 46.6828561 ], + [ 10.1014638, 46.6829151 ], + [ 10.1015332, 46.6829627 ], + [ 10.1016055, 46.6830194 ], + [ 10.1017014, 46.6830792 ], + [ 10.1018053, 46.6831444 ], + [ 10.1018967, 46.6831819 ], + [ 10.1019997, 46.6832147 ], + [ 10.1020671, 46.6832389 ], + [ 10.1021316, 46.6832569 ], + [ 10.1025325, 46.6833232 ], + [ 10.1027488, 46.6833551 ], + [ 10.1028335, 46.6834 ], + [ 10.1029447, 46.6834506 ], + [ 10.1030443, 46.6835041 ], + [ 10.1031026, 46.683546 ], + [ 10.1031652, 46.6835932 ], + [ 10.1032291, 46.6836421 ], + [ 10.1033375, 46.6837144 ], + [ 10.1034089, 46.683783 ], + [ 10.1034458, 46.6838136 ], + [ 10.1035416, 46.68387 ], + [ 10.1036702, 46.683903 ], + [ 10.1038013, 46.6839324 ], + [ 10.1038902, 46.6839546 ], + [ 10.1039966, 46.6839882 ], + [ 10.1041722, 46.6840174 ], + [ 10.1042892, 46.6840526 ], + [ 10.1044167, 46.6840901 ], + [ 10.1045458, 46.6841313 ], + [ 10.1046264, 46.6841735 ], + [ 10.1047769, 46.6842241 ], + [ 10.1048733, 46.6842678 ], + [ 10.1049464, 46.6842886 ], + [ 10.1050867, 46.6843448 ], + [ 10.1051195, 46.684426 ], + [ 10.1052076, 46.6845131 ], + [ 10.1053071, 46.684618 ], + [ 10.1053946, 46.6847195 ], + [ 10.1054854, 46.6848345 ], + [ 10.1055559, 46.6849365 ], + [ 10.1056604, 46.6850385 ], + [ 10.1058223, 46.6851609 ], + [ 10.1059534, 46.6852704 ], + [ 10.1062611, 46.6855074 ], + [ 10.1064309, 46.6857908 ], + [ 10.1065394, 46.685999 ], + [ 10.1066213, 46.6860926 ], + [ 10.1069232, 46.6862666 ], + [ 10.1071489, 46.6864082 ], + [ 10.1073493, 46.6865684 ], + [ 10.1075036, 46.6866954 ], + [ 10.1075993, 46.686776 ], + [ 10.1076918, 46.6868739 ], + [ 10.1078304, 46.6869742 ], + [ 10.1080414, 46.6870306 ], + [ 10.1082292, 46.6870685 ], + [ 10.1083946, 46.6871034 ], + [ 10.1085588, 46.6871401 ], + [ 10.108719, 46.6871742 ], + [ 10.1088203, 46.6872097 ], + [ 10.1089679, 46.6872549 ], + [ 10.1091637, 46.6873224 ], + [ 10.1093976, 46.687416999999996 ], + [ 10.1096082, 46.6874913 ], + [ 10.1097761, 46.6875505 ], + [ 10.1099547, 46.6876139 ], + [ 10.1101758, 46.687688 ], + [ 10.1103864, 46.6877615 ], + [ 10.110600699999999, 46.687779 ], + [ 10.1108255, 46.6877972 ], + [ 10.11114, 46.6878277 ], + [ 10.111364, 46.6879062 ], + [ 10.1115013, 46.6879562 ], + [ 10.1116404, 46.6880142 ], + [ 10.1117678, 46.6881013 ], + [ 10.111884, 46.6881725 ], + [ 10.1120156, 46.688265799999996 ], + [ 10.1122023, 46.6883605 ], + [ 10.112474, 46.6885298 ], + [ 10.1127462, 46.6886847 ], + [ 10.1128109, 46.6887229 ], + [ 10.1130043, 46.6888733 ], + [ 10.1131552, 46.6889842 ], + [ 10.113288, 46.6890738 ], + [ 10.1134781, 46.6891577 ], + [ 10.1136419, 46.6892647 ], + [ 10.1138179, 46.6893551 ], + [ 10.1140298, 46.6894808 ], + [ 10.1141945, 46.6895544 ], + [ 10.1143027, 46.689624 ], + [ 10.1144344, 46.6896912 ], + [ 10.1146326, 46.6897532 ], + [ 10.1147773, 46.6897931 ], + [ 10.1150155, 46.6898677 ], + [ 10.1151788, 46.6899918 ], + [ 10.1153552, 46.6901417 ], + [ 10.1154162, 46.6901853 ], + [ 10.1155407, 46.6903454 ], + [ 10.115586, 46.6904399 ], + [ 10.1156743, 46.6905558 ], + [ 10.1158986, 46.6906695 ], + [ 10.1161053, 46.6907691 ], + [ 10.116406, 46.690917 ], + [ 10.1166527, 46.6910338 ], + [ 10.1169178, 46.6911762 ], + [ 10.1171738, 46.6913207 ], + [ 10.1173244, 46.6914 ], + [ 10.1174158, 46.6914456 ], + [ 10.1174846, 46.6914864 ], + [ 10.1176134, 46.6915482 ], + [ 10.1177108, 46.6917162 ], + [ 10.1177713, 46.6918283 ], + [ 10.1177936, 46.691986299999996 ], + [ 10.1178193, 46.6921893 ], + [ 10.1178957, 46.6923289 ], + [ 10.1179542, 46.6925329 ], + [ 10.1179932, 46.6927635 ], + [ 10.118019199999999, 46.6929196 ], + [ 10.118051, 46.6929783 ], + [ 10.1180756, 46.6931327 ], + [ 10.1181157, 46.6932803 ], + [ 10.1181442, 46.693458 ], + [ 10.1183665, 46.6933979 ], + [ 10.118561, 46.693333 ], + [ 10.1187629, 46.693258 ], + [ 10.1190398, 46.6931894 ], + [ 10.1192327, 46.6931966 ], + [ 10.1194401, 46.6932044 ], + [ 10.1196063, 46.6932032 ], + [ 10.1197673, 46.6931742 ], + [ 10.1199873, 46.6931475 ], + [ 10.1200878, 46.6931397 ], + [ 10.1202428, 46.6931226 ], + [ 10.1203274, 46.6931107 ], + [ 10.1204653, 46.6930399 ], + [ 10.1205497, 46.6929992 ], + [ 10.1206477, 46.692887999999996 ], + [ 10.1207214, 46.6927899 ], + [ 10.1207789, 46.6927074 ], + [ 10.1208023, 46.6925718 ], + [ 10.1208495, 46.6924419 ], + [ 10.1208941, 46.6923364 ], + [ 10.1209538, 46.6922476 ], + [ 10.1210522, 46.6921705 ], + [ 10.1211432, 46.6921315 ], + [ 10.1211953, 46.6920987 ], + [ 10.1212781, 46.6920518 ], + [ 10.1213545, 46.6920067 ], + [ 10.1214782, 46.691966 ], + [ 10.1215813, 46.6919321 ], + [ 10.1216863, 46.6919107 ], + [ 10.1218092, 46.6918808 ], + [ 10.1219531, 46.6918504 ], + [ 10.1220327, 46.691817 ], + [ 10.1220909, 46.6917499 ], + [ 10.1221257, 46.6916852 ], + [ 10.1221788, 46.6916209 ], + [ 10.1222369, 46.6915511 ], + [ 10.1223445, 46.6914495 ], + [ 10.1224286, 46.6913763 ], + [ 10.1225686, 46.6912947 ], + [ 10.1226923, 46.691254 ], + [ 10.1228498, 46.6912341 ], + [ 10.1229543, 46.6912542 ], + [ 10.1230719, 46.6912748 ], + [ 10.1233589, 46.6913321 ], + [ 10.123608, 46.6913902 ], + [ 10.1237222, 46.691447 ], + [ 10.1239076, 46.6915147 ], + [ 10.1240561, 46.6915509 ], + [ 10.1242534, 46.691621 ], + [ 10.1244226, 46.6916522 ], + [ 10.124672, 46.6917157 ], + [ 10.1248379, 46.6917587 ], + [ 10.1249673, 46.6917808 ], + [ 10.1251049, 46.691783 ], + [ 10.125279, 46.6917799 ], + [ 10.1253999, 46.6917887 ], + [ 10.125536, 46.6917856 ], + [ 10.1257194, 46.6917867 ], + [ 10.1258712, 46.6917327 ], + [ 10.1259498, 46.6916795 ], + [ 10.1259958, 46.6915514 ], + [ 10.1260842, 46.6914061 ], + [ 10.1261818, 46.6912606 ], + [ 10.1262531, 46.6911157 ], + [ 10.1263112, 46.6909396 ], + [ 10.1263673, 46.6908311 ], + [ 10.1264087, 46.6906887 ], + [ 10.1263849, 46.6905515 ], + [ 10.1263793, 46.6904381 ], + [ 10.1263831, 46.6903317 ], + [ 10.1264568, 46.6902075 ], + [ 10.1265684, 46.6900815 ], + [ 10.126649, 46.690015700000004 ], + [ 10.1267651, 46.6899283 ], + [ 10.1268821, 46.6898318 ], + [ 10.126977, 46.6897386 ], + [ 10.1270792, 46.6896606 ], + [ 10.127155, 46.6895778 ], + [ 10.1272338, 46.6895038 ], + [ 10.1273067, 46.6894148 ], + [ 10.1273629, 46.6893351 ], + [ 10.1274278, 46.6892435 ], + [ 10.1275802, 46.6891219 ], + [ 10.1277169, 46.6890268 ], + [ 10.1277918, 46.6889792 ], + [ 10.1278569, 46.6889182 ], + [ 10.1279632, 46.6887905 ], + [ 10.1280801, 46.6886661 ], + [ 10.1281881, 46.6885465 ], + [ 10.1282964, 46.6884602 ], + [ 10.1284379, 46.6884091 ], + [ 10.1286417, 46.6883188 ], + [ 10.1288389, 46.6882547 ], + [ 10.1290343, 46.6882078 ], + [ 10.129224, 46.6881511 ], + [ 10.1294123, 46.6881197 ], + [ 10.1295903, 46.6880912 ], + [ 10.1297819, 46.6880462 ], + [ 10.1300287, 46.6880575 ], + [ 10.1302848, 46.6880983 ], + [ 10.1305395, 46.6881122 ], + [ 10.1307243, 46.6881141 ], + [ 10.1309114, 46.6880836 ], + [ 10.1310574, 46.6880451 ], + [ 10.131196599999999, 46.6880247 ], + [ 10.1313701, 46.687985499999996 ], + [ 10.1315628, 46.6879639 ], + [ 10.1317848, 46.6879497 ], + [ 10.1319376, 46.6879407 ], + [ 10.132003, 46.68794 ], + [ 10.1321793, 46.6879305 ], + [ 10.1323595, 46.6879182 ], + [ 10.1325027, 46.6879013 ], + [ 10.132691, 46.6878689 ], + [ 10.1328245, 46.6878424 ], + [ 10.1329417, 46.6878018 ], + [ 10.1330746, 46.6877618 ], + [ 10.1332263, 46.6877312 ], + [ 10.1333574, 46.6877083 ], + [ 10.1334898, 46.6876845 ], + [ 10.1336559, 46.6876544 ], + [ 10.1337752, 46.6876309 ], + [ 10.1339704, 46.6876038 ], + [ 10.1341859, 46.6876447 ], + [ 10.1344739, 46.6876956 ], + [ 10.1346487, 46.6877347 ], + [ 10.1348229, 46.6877603 ], + [ 10.1349798, 46.6877819 ], + [ 10.1351995, 46.6877749 ], + [ 10.1354132, 46.6877537 ], + [ 10.1356515, 46.6877274 ], + [ 10.1358404, 46.6877076 ], + [ 10.1360181, 46.6876989 ], + [ 10.1363233, 46.6876999 ], + [ 10.1364884, 46.6877005 ], + [ 10.1366609, 46.6876928 ], + [ 10.1368313, 46.6876699 ], + [ 10.1371119, 46.6876246 ], + [ 10.1373176, 46.6875738 ], + [ 10.1375143, 46.6875007 ], + [ 10.1376945, 46.6874109 ], + [ 10.1377917, 46.6873384 ], + [ 10.1379173, 46.6871778 ], + [ 10.138092199999999, 46.6871142 ], + [ 10.1381931, 46.6870884 ], + [ 10.1383542, 46.6870378 ], + [ 10.1385788, 46.6871028 ], + [ 10.1387516, 46.6871528 ], + [ 10.1389851, 46.6872139 ], + [ 10.1391236, 46.6872341 ], + [ 10.1393272, 46.6871933 ], + [ 10.1394468, 46.6871481 ], + [ 10.1395828, 46.6870918 ], + [ 10.1396764, 46.6870526 ], + [ 10.1397741, 46.6870152 ], + [ 10.1399389, 46.6869861 ], + [ 10.1400392, 46.6869757 ], + [ 10.1401425, 46.6869714 ], + [ 10.1402702, 46.6869594 ], + [ 10.1403535, 46.6869475 ], + [ 10.140441299999999, 46.6869239 ], + [ 10.1405481, 46.6868583 ], + [ 10.1406778, 46.6867553 ], + [ 10.1407513, 46.6866526 ], + [ 10.1407589, 46.6865426 ], + [ 10.1407472, 46.6864672 ], + [ 10.1407407, 46.686416 ], + [ 10.1406739, 46.6861439 ], + [ 10.1403346, 46.6859952 ], + [ 10.1401609, 46.685840999999996 ], + [ 10.1400759, 46.6856135 ], + [ 10.1400259, 46.6854463 ], + [ 10.1400118, 46.6853441 ], + [ 10.1400025, 46.6851598 ], + [ 10.1401074, 46.684935 ], + [ 10.1403589, 46.6847013 ], + [ 10.1405735, 46.6844001 ], + [ 10.1405666, 46.6842292 ], + [ 10.1407115, 46.6840224 ], + [ 10.1406955, 46.6837833 ], + [ 10.1407736, 46.6835141 ], + [ 10.1408966, 46.6832456 ], + [ 10.1411318, 46.6830285 ], + [ 10.141308, 46.6828408 ], + [ 10.1415549, 46.6825478 ], + [ 10.1417601, 46.6823864 ], + [ 10.1417823, 46.6822418 ], + [ 10.1418851, 46.6820746 ], + [ 10.1419189, 46.6818362 ], + [ 10.1419107, 46.6816059 ], + [ 10.1418997, 46.681338 ], + [ 10.1418251, 46.6811552 ], + [ 10.1418367, 46.6810434 ], + [ 10.1417833, 46.6807935 ], + [ 10.1416304, 46.6806936 ], + [ 10.1416276, 46.6805073 ], + [ 10.1415793, 46.6802781 ], + [ 10.1415019, 46.6799729 ], + [ 10.1417733, 46.6795993 ], + [ 10.1420747, 46.6792024 ], + [ 10.1424255, 46.6789132 ], + [ 10.1430318, 46.678664 ], + [ 10.1435934, 46.6784706 ], + [ 10.1441075, 46.6782424 ], + [ 10.1444978, 46.6781683 ], + [ 10.1451574, 46.6779239 ], + [ 10.1458011, 46.6777539 ], + [ 10.1465334, 46.6775097 ], + [ 10.1472179, 46.6772557 ], + [ 10.1478088, 46.6769952 ], + [ 10.1485468, 46.6767166 ], + [ 10.1492597, 46.6763153 ], + [ 10.14986, 46.6759158 ], + [ 10.1502752, 46.675508 ], + [ 10.1508229, 46.6750232 ], + [ 10.1514456, 46.6746304 ], + [ 10.1521053, 46.6741943 ], + [ 10.1527257, 46.6736116 ], + [ 10.1533409, 46.6730217 ], + [ 10.1540743, 46.6725083 ], + [ 10.1547144, 46.6721852 ], + [ 10.1552596, 46.6719769 ], + [ 10.1560782, 46.6716288 ], + [ 10.1568201, 46.6713501 ], + [ 10.1575114, 46.6710394 ], + [ 10.1578984, 46.6707573 ], + [ 10.1582628, 46.6703975 ], + [ 10.1588223, 46.6702933 ], + [ 10.1594358, 46.6703219 ], + [ 10.1598233, 46.6704855 ], + [ 10.1602576, 46.6707361 ], + [ 10.1607599, 46.6710707 ], + [ 10.1612762, 46.671422 ], + [ 10.161681, 46.6716228 ], + [ 10.1617087, 46.6716398 ], + [ 10.1618525, 46.6716909 ], + [ 10.161894, 46.6717056 ], + [ 10.1620544, 46.6717441 ], + [ 10.1621976, 46.6717795 ], + [ 10.1623332, 46.6718204 ], + [ 10.1624477, 46.671833 ], + [ 10.1626004, 46.6718492 ], + [ 10.1627201, 46.671859 ], + [ 10.1627563, 46.6718758 ], + [ 10.1628179, 46.6719044 ], + [ 10.1629224, 46.6719514 ], + [ 10.1629599, 46.672003 ], + [ 10.1629815, 46.6720329 ], + [ 10.1630504, 46.6721076 ], + [ 10.1631166, 46.6722198 ], + [ 10.1631326, 46.6722537 ], + [ 10.1631738, 46.6723409 ], + [ 10.1631938, 46.6724521 ], + [ 10.1632099, 46.6726148 ], + [ 10.1631905, 46.6727756 ], + [ 10.1631937, 46.6729363 ], + [ 10.1632057, 46.6730527 ], + [ 10.1632362, 46.673215 ], + [ 10.1632551, 46.6733569 ], + [ 10.1633263, 46.6735218 ], + [ 10.1634148, 46.6736927 ], + [ 10.1634836, 46.6738631 ], + [ 10.1635592, 46.6740387 ], + [ 10.1636169, 46.6741707 ], + [ 10.1636618, 46.674307400000004 ], + [ 10.1636853, 46.6743852 ], + [ 10.1637654, 46.6745455 ], + [ 10.163777, 46.6745641 ], + [ 10.1638153, 46.6746254 ], + [ 10.1637966, 46.6747744 ], + [ 10.1637515, 46.6748926 ], + [ 10.1636911, 46.6750192 ], + [ 10.1636319, 46.6751179 ], + [ 10.1635769, 46.6751958 ], + [ 10.1635266, 46.6752889 ], + [ 10.16347, 46.6753875 ], + [ 10.1634459, 46.6754799 ], + [ 10.1634276, 46.6756362 ], + [ 10.1634302, 46.6758181 ], + [ 10.1634179, 46.6759373 ], + [ 10.1634227, 46.6760597 ], + [ 10.163444, 46.67617 ], + [ 10.1634666, 46.6762802 ], + [ 10.1635093, 46.6763756 ], + [ 10.1635295, 46.6764373 ], + [ 10.1635027, 46.676555 ], + [ 10.163489, 46.6766733 ], + [ 10.1635035, 46.6767541 ], + [ 10.1635245, 46.6768581 ], + [ 10.163560499999999, 46.6769743 ], + [ 10.1635691, 46.677093 ], + [ 10.1635305, 46.6771849 ], + [ 10.1634533, 46.6772651 ], + [ 10.1633931, 46.6773431 ], + [ 10.1633458, 46.6774181 ], + [ 10.1632795, 46.6775061 ], + [ 10.1632278, 46.6775704 ], + [ 10.1631865, 46.6776867 ], + [ 10.1632596, 46.6777867 ], + [ 10.1633209, 46.6778582 ], + [ 10.1633674, 46.6779247 ], + [ 10.1634243, 46.6779882 ], + [ 10.1635119, 46.6780636 ], + [ 10.163597, 46.6781408 ], + [ 10.1636698, 46.6782094 ], + [ 10.1637972, 46.6782946 ], + [ 10.1639237, 46.6783619 ], + [ 10.1640138, 46.6784084 ], + [ 10.1641795, 46.6785008 ], + [ 10.1644052, 46.6785621 ], + [ 10.1646081, 46.6786131 ], + [ 10.1647717, 46.6786633 ], + [ 10.1649079, 46.678715 ], + [ 10.1650005, 46.6787596 ], + [ 10.1651212, 46.6788171 ], + [ 10.1652587, 46.6788949 ], + [ 10.1653266, 46.6789699 ], + [ 10.165403, 46.6790825 ], + [ 10.1654517, 46.6791912 ], + [ 10.1655433, 46.6792935 ], + [ 10.1656329, 46.6793562 ], + [ 10.1657058, 46.6794248 ], + [ 10.1658375, 46.6794919 ], + [ 10.1659107, 46.6795937 ], + [ 10.1659431, 46.6797164 ], + [ 10.1659758, 46.6798201 ], + [ 10.166030899999999, 46.6799521 ], + [ 10.1659873, 46.6800747 ], + [ 10.1660111, 46.6802093 ], + [ 10.165971, 46.680321 ], + [ 10.1659011, 46.6803893 ], + [ 10.1659115, 46.6805179 ], + [ 10.1658951, 46.6806084 ], + [ 10.1659624, 46.6807743 ], + [ 10.1660332, 46.6809059 ], + [ 10.1660839, 46.6810029 ], + [ 10.1661587, 46.6811354 ], + [ 10.1662407, 46.681255 ], + [ 10.166241, 46.6813658 ], + [ 10.1662299, 46.6814832 ], + [ 10.1661181, 46.6815516 ], + [ 10.1661033, 46.6816204 ], + [ 10.1661078, 46.6817365 ], + [ 10.1660968, 46.6818547 ], + [ 10.1660993, 46.6819565 ], + [ 10.1661528, 46.682082199999996 ], + [ 10.1662106, 46.6821646 ], + [ 10.1662496, 46.6822619 ], + [ 10.1663367, 46.6823544 ], + [ 10.1664474, 46.6824193 ], + [ 10.1665952, 46.6824941 ], + [ 10.1667193, 46.6825398 ], + [ 10.1668474, 46.6825872 ], + [ 10.1669168, 46.6827162 ], + [ 10.1669419, 46.6827994 ], + [ 10.1669375, 46.6828931 ], + [ 10.1669941, 46.6829765 ], + [ 10.1670784, 46.6830916 ], + [ 10.1671538, 46.6831843 ], + [ 10.1671773, 46.6832351 ], + [ 10.167158, 46.6833968 ], + [ 10.1671687, 46.6835056 ], + [ 10.167269, 46.6836239 ], + [ 10.1674674, 46.6836624 ], + [ 10.1675412, 46.6837237 ], + [ 10.1676071, 46.6838095 ], + [ 10.1676149, 46.683912 ], + [ 10.1676323, 46.6840764 ], + [ 10.1675935, 46.6841899 ], + [ 10.1675556, 46.6842944 ], + [ 10.1675472, 46.6844135 ], + [ 10.1675367, 46.6845435 ], + [ 10.1674522, 46.6847644 ], + [ 10.1674031, 46.68488 ], + [ 10.1673796, 46.6850111 ], + [ 10.167355, 46.6851216 ], + [ 10.1673784, 46.6852219 ], + [ 10.167419, 46.685325399999996 ], + [ 10.1674648, 46.6854018 ], + [ 10.1674262, 46.6854946 ], + [ 10.1673752, 46.6855472 ], + [ 10.1673335, 46.685577 ], + [ 10.1672915, 46.6856014 ], + [ 10.1672551, 46.685632 ], + [ 10.1671543, 46.6857119 ], + [ 10.1671047, 46.6857671 ], + [ 10.1670447, 46.6858244 ], + [ 10.1670001, 46.6858732 ], + [ 10.1669587, 46.6859093 ], + [ 10.1668881, 46.685965 ], + [ 10.1668284, 46.686052 ], + [ 10.1668174, 46.6861207 ], + [ 10.166831, 46.6861825 ], + [ 10.1668582, 46.6863053 ], + [ 10.1668481, 46.686392 ], + [ 10.1668542, 46.6864873 ], + [ 10.1668618, 46.6865601 ], + [ 10.1668652, 46.6866276 ], + [ 10.1668414, 46.6866993 ], + [ 10.1668534, 46.6868332 ], + [ 10.1668447, 46.6869208 ], + [ 10.1668465, 46.6870082 ], + [ 10.1668474, 46.6871054 ], + [ 10.166889, 46.6872017 ], + [ 10.166947, 46.6872877 ], + [ 10.1669427, 46.6873833 ], + [ 10.1669008, 46.6875131 ], + [ 10.1668973, 46.6876519 ], + [ 10.1669086, 46.6877462 ], + [ 10.1668735, 46.687829 ], + [ 10.1668482, 46.6879251 ], + [ 10.1668221, 46.6879788 ], + [ 10.166756, 46.6880966 ], + [ 10.1666712, 46.6882067 ], + [ 10.1666021, 46.6882903 ], + [ 10.1665614, 46.688367 ], + [ 10.1664918, 46.6884677 ], + [ 10.166443, 46.6885634 ], + [ 10.1664393, 46.6886977 ], + [ 10.1658487, 46.6899439 ], + [ 10.1658315, 46.6899804 ], + [ 10.1656634, 46.6899712 ], + [ 10.1656275, 46.6899767 ], + [ 10.1653733, 46.6901193 ], + [ 10.1653553, 46.69062 ], + [ 10.1652766, 46.6911183 ], + [ 10.1649446, 46.6913596 ], + [ 10.164860000000001, 46.6916282 ], + [ 10.1647607, 46.6919433 ], + [ 10.164749, 46.6920338 ], + [ 10.1647289, 46.6921885 ], + [ 10.1646191, 46.6926049 ], + [ 10.1644685, 46.6931992 ], + [ 10.1638895, 46.6933108 ], + [ 10.1633058, 46.6933436 ], + [ 10.1629061, 46.6935412 ], + [ 10.1625097, 46.6937049 ], + [ 10.1619649, 46.693748 ], + [ 10.1614999, 46.69406 ], + [ 10.1612959, 46.6941326 ], + [ 10.161274, 46.6944604 ], + [ 10.1616317, 46.6946801 ], + [ 10.1618359, 46.6949021 ], + [ 10.1620461, 46.695114 ], + [ 10.1622364, 46.6953704 ], + [ 10.1623668, 46.6957175 ], + [ 10.1625458, 46.6958941 ], + [ 10.1626013, 46.6960881 ], + [ 10.1627636, 46.6963228 ], + [ 10.1628789, 46.696663 ], + [ 10.1629213, 46.6968854 ], + [ 10.1629868, 46.6969892 ], + [ 10.1630621, 46.6970802 ], + [ 10.1632395, 46.6972462 ], + [ 10.1633295, 46.6973432 ], + [ 10.1634319, 46.6974524 ], + [ 10.163512, 46.6975082 ], + [ 10.1637413, 46.6975604 ], + [ 10.1639151, 46.697604 ], + [ 10.1640662, 46.697641 ], + [ 10.1642769, 46.6976882 ], + [ 10.1644032, 46.6977248 ], + [ 10.1645158, 46.697751 ], + [ 10.1646979, 46.6978034 ], + [ 10.1648976, 46.6978653 ], + [ 10.1650332, 46.6979062 ], + [ 10.1651654, 46.6979553 ], + [ 10.165267, 46.6979962 ], + [ 10.1653658, 46.6980326 ], + [ 10.1654487, 46.6980657 ], + [ 10.1655731, 46.6981177 ], + [ 10.1657494, 46.6981838 ], + [ 10.1659664, 46.6983047 ], + [ 10.1660807, 46.6983651 ], + [ 10.166181, 46.6984311 ], + [ 10.1662838, 46.6984953 ], + [ 10.1663749, 46.6985616 ], + [ 10.166495, 46.6986317 ], + [ 10.1665925, 46.6986934 ], + [ 10.1667288, 46.6987739 ], + [ 10.1668353, 46.6988326 ], + [ 10.1669346, 46.6989059 ], + [ 10.167058, 46.6989895 ], + [ 10.1671208, 46.6990654 ], + [ 10.1671682, 46.6991472 ], + [ 10.1671819, 46.6992892 ], + [ 10.1671982, 46.6994059 ], + [ 10.1672061, 46.6995624 ], + [ 10.1672385, 46.6997112 ], + [ 10.1672823, 46.6998507 ], + [ 10.167311399999999, 46.6999869 ], + [ 10.1673539, 46.700103 ], + [ 10.1673889, 46.7002255 ], + [ 10.1674289, 46.7003435 ], + [ 10.1674883, 46.7004295 ], + [ 10.1675845, 46.7005434 ], + [ 10.1676859, 46.700659 ], + [ 10.1677816, 46.7007891 ], + [ 10.1678597, 46.7008584 ], + [ 10.167968, 46.7009522 ], + [ 10.1680806, 46.7010297 ], + [ 10.1681617, 46.7010791 ], + [ 10.1683062, 46.7011657 ], + [ 10.1684691, 46.701251 ], + [ 10.1685628, 46.7012921 ], + [ 10.1687725, 46.7013708 ], + [ 10.168927, 46.7013428 ], + [ 10.1691187, 46.7013014 ], + [ 10.1693064, 46.7013077 ], + [ 10.1695389, 46.7013454 ], + [ 10.1697183, 46.7013718 ], + [ 10.1704502, 46.7015183 ], + [ 10.1707596, 46.7015487 ], + [ 10.170907, 46.7015633 ], + [ 10.1710304, 46.7015675 ], + [ 10.1711853, 46.7015746 ], + [ 10.1713189, 46.7015733 ], + [ 10.1716079, 46.7015637 ], + [ 10.1718123, 46.7015642 ], + [ 10.1719542, 46.7015726 ], + [ 10.1721417, 46.7015753 ], + [ 10.1722801, 46.7015918 ], + [ 10.1724097, 46.7016176 ], + [ 10.1725424, 46.7016243 ], + [ 10.1726462, 46.7016038 ], + [ 10.172804, 46.7015649 ], + [ 10.1729623, 46.701535 ], + [ 10.1731464, 46.7015216 ], + [ 10.1733112, 46.7015177 ], + [ 10.173486, 46.7015036 ], + [ 10.1736172, 46.7014807 ], + [ 10.1737983, 46.7013845 ], + [ 10.1739675, 46.7013625 ], + [ 10.1742464, 46.7013585 ], + [ 10.17444, 46.701353 ], + [ 10.1746353, 46.7013033 ], + [ 10.1748334, 46.7013355 ], + [ 10.1750215, 46.70135 ], + [ 10.1752284, 46.7013495 ], + [ 10.1753403, 46.7012829 ], + [ 10.175449, 46.7011776 ], + [ 10.1756009, 46.7010479 ], + [ 10.1757499, 46.7010155 ], + [ 10.1759563, 46.7010043 ], + [ 10.1760637, 46.7010035 ], + [ 10.1761986, 46.700976 ], + [ 10.1762595, 46.7009367 ], + [ 10.1763224, 46.7008857 ], + [ 10.1764231, 46.7007788 ], + [ 10.1764795, 46.7007027 ], + [ 10.1765418, 46.7006399 ], + [ 10.1766594, 46.7005831 ], + [ 10.1767502, 46.7005395 ], + [ 10.1768275, 46.7005133 ], + [ 10.1769352, 46.7004666 ], + [ 10.1769947, 46.7003742 ], + [ 10.177075, 46.7003038 ], + [ 10.1771449, 46.7002355 ], + [ 10.1772369, 46.7001649 ], + [ 10.1773327, 46.7001166 ], + [ 10.1775373, 46.7000442 ], + [ 10.1776555, 46.7000234 ], + [ 10.1778026, 46.6999793 ], + [ 10.1778928, 46.6999501 ], + [ 10.1780008, 46.6998836 ], + [ 10.1782076, 46.699803 ], + [ 10.1783691, 46.6997577 ], + [ 10.1785785, 46.6997023 ], + [ 10.1789386, 46.6996477 ], + [ 10.1790826, 46.6996209 ], + [ 10.1791974, 46.6995848 ], + [ 10.1793505, 46.699555 ], + [ 10.1795559, 46.6995772 ], + [ 10.1797349, 46.6996197 ], + [ 10.1799123, 46.699656 ], + [ 10.1800412, 46.6996917 ], + [ 10.1802137, 46.6997353 ], + [ 10.1803179, 46.6996968 ], + [ 10.1804977, 46.6996781 ], + [ 10.1807438, 46.6997271 ], + [ 10.1808932, 46.6997794 ], + [ 10.1809883, 46.6997952 ], + [ 10.1811385, 46.6998384 ], + [ 10.1812626, 46.6998309 ], + [ 10.1814255, 46.6998144 ], + [ 10.181578, 46.6998 ], + [ 10.1817022, 46.6997952 ], + [ 10.1818212, 46.6997906 ], + [ 10.1819742, 46.6997851 ], + [ 10.1820955, 46.6997741 ], + [ 10.1822973, 46.6997495 ], + [ 10.1825884, 46.6997038 ], + [ 10.1827479, 46.6996711 ], + [ 10.1828912, 46.6996308 ], + [ 10.1830102, 46.6996 ], + [ 10.1832351, 46.6994883 ], + [ 10.1833056, 46.6994587 ], + [ 10.1835218, 46.6994076 ], + [ 10.1836699, 46.6993572 ], + [ 10.1838412, 46.6993261 ], + [ 10.1840453, 46.6993212 ], + [ 10.1842782, 46.6993157 ], + [ 10.1844154, 46.6993088 ], + [ 10.1845793, 46.6992859 ], + [ 10.1846977, 46.6992453 ], + [ 10.1848581, 46.6992036 ], + [ 10.1850108, 46.6991684 ], + [ 10.185172, 46.699143 ], + [ 10.1853117, 46.6991342 ], + [ 10.1855587, 46.6990184 ], + [ 10.1856534, 46.6990278 ], + [ 10.1858187, 46.6990311 ], + [ 10.1860022, 46.699033 ], + [ 10.1861735, 46.6990541 ], + [ 10.1863651, 46.6990613 ], + [ 10.1865104, 46.6990578 ], + [ 10.1866528, 46.6990508 ], + [ 10.1868435, 46.6990408 ], + [ 10.1869523, 46.6990418 ], + [ 10.1870923, 46.6990646 ], + [ 10.1872383, 46.6991016 ], + [ 10.1873974, 46.6991392 ], + [ 10.187569, 46.6991648 ], + [ 10.1877681, 46.6991907 ], + [ 10.1878693, 46.6991973 ], + [ 10.1879338, 46.699202 ], + [ 10.1880805, 46.6992283 ], + [ 10.188199000000001, 46.699266 ], + [ 10.1883038, 46.6993175 ], + [ 10.1883938, 46.6993604 ], + [ 10.1884826, 46.6993817 ], + [ 10.188714300000001, 46.6993788 ], + [ 10.1889986, 46.6993792 ], + [ 10.189239, 46.6993653 ], + [ 10.1894072, 46.6993514 ], + [ 10.1896227, 46.6993381 ], + [ 10.1899674, 46.6993164 ], + [ 10.1901412, 46.6993086 ], + [ 10.1902867, 46.6993087 ], + [ 10.1903784, 46.6993092 ], + [ 10.1906033, 46.6993786 ], + [ 10.1907021, 46.6994402 ], + [ 10.1908169, 46.6995338 ], + [ 10.1910031, 46.6996149 ], + [ 10.191217, 46.6996746 ], + [ 10.1914566, 46.6997238 ], + [ 10.1916767, 46.6997492 ], + [ 10.1919469, 46.6997814 ], + [ 10.1921938, 46.6998196 ], + [ 10.1923909, 46.6998581 ], + [ 10.1925169, 46.6998884 ], + [ 10.1927068, 46.6999127 ], + [ 10.1928736, 46.6999213 ], + [ 10.1930398, 46.6999426 ], + [ 10.1931726, 46.6999538 ], + [ 10.1933511, 46.6998612 ], + [ 10.1933615, 46.6997312 ], + [ 10.193393, 46.6996617 ], + [ 10.1934878, 46.6996317 ], + [ 10.1937875, 46.6996164 ], + [ 10.1940383, 46.6994965 ], + [ 10.1943117, 46.6994671 ], + [ 10.1942407, 46.6993459 ], + [ 10.1942642, 46.6992567 ], + [ 10.1946233, 46.6989466 ], + [ 10.1946872, 46.6988583 ], + [ 10.1946741, 46.6987393 ], + [ 10.194729, 46.6986825 ], + [ 10.1952738, 46.6985681 ], + [ 10.1954868, 46.6984924 ], + [ 10.1959463, 46.6982153 ], + [ 10.1959862, 46.6980512 ], + [ 10.1960653, 46.6979839 ], + [ 10.1966285, 46.6979339 ], + [ 10.1969814, 46.6979258 ], + [ 10.1974842, 46.6977484 ], + [ 10.1976158, 46.697734 ], + [ 10.1977866, 46.6977499 ], + [ 10.1979957, 46.697706 ], + [ 10.1982339, 46.6977013 ], + [ 10.1985062, 46.6976201 ], + [ 10.1986195, 46.6976275 ], + [ 10.1987435, 46.6976583 ], + [ 10.1988327, 46.6976585 ], + [ 10.1989212, 46.6976386 ], + [ 10.1991693, 46.6975428 ], + [ 10.1993403, 46.6974358 ], + [ 10.1997567, 46.6973293 ], + [ 10.1999424, 46.6972461 ], + [ 10.2001339, 46.6972292 ], + [ 10.2004561, 46.697145 ], + [ 10.2009855, 46.6973325 ], + [ 10.2011324, 46.6973301 ], + [ 10.2013402, 46.6972905 ], + [ 10.201516699999999, 46.6972813 ], + [ 10.2016961, 46.6972527 ], + [ 10.2020087, 46.6972679 ], + [ 10.2021591, 46.6972395 ], + [ 10.2023232, 46.6971791 ], + [ 10.2025877, 46.6971152 ], + [ 10.2031255, 46.6970202 ], + [ 10.203266, 46.6970418 ], + [ 10.2033735, 46.6971208 ], + [ 10.2035951, 46.6972006 ], + [ 10.2037113, 46.6972008 ], + [ 10.2041663, 46.697038 ], + [ 10.2043931, 46.6969596 ], + [ 10.2044812, 46.6968911 ], + [ 10.2045381, 46.6967739 ], + [ 10.2046158, 46.6967134 ], + [ 10.2048815, 46.6966258 ], + [ 10.2051568, 46.6964791 ], + [ 10.2053634, 46.6963984 ], + [ 10.2057124, 46.6963457 ], + [ 10.205937, 46.6963457 ], + [ 10.2060644, 46.6961906 ], + [ 10.2062757, 46.696174 ], + [ 10.2064726, 46.6960758 ], + [ 10.206609, 46.6960537 ], + [ 10.2067811, 46.6960476 ], + [ 10.2069488, 46.6959674 ], + [ 10.2070898, 46.6959272 ], + [ 10.2072193, 46.6958664 ], + [ 10.2072904, 46.6957816 ], + [ 10.2073104, 46.6956624 ], + [ 10.2074498, 46.6956349 ], + [ 10.2077972, 46.6956139 ], + [ 10.2078689, 46.6956265 ], + [ 10.2079115, 46.6956515 ], + [ 10.2079699, 46.6957566 ], + [ 10.2080492, 46.695779 ], + [ 10.208317, 46.6957725 ], + [ 10.2088498, 46.6957916 ], + [ 10.2090212, 46.6958226 ], + [ 10.2091549, 46.695917 ], + [ 10.209514800000001, 46.6960939 ], + [ 10.2097511, 46.6960937 ], + [ 10.2100453, 46.6961592 ], + [ 10.2103111, 46.6961798 ], + [ 10.2104397, 46.6962135 ], + [ 10.2106029, 46.6961776 ], + [ 10.2107812, 46.6962424 ], + [ 10.2110112, 46.6962659 ], + [ 10.2112271, 46.6963159 ], + [ 10.211444, 46.6963602 ], + [ 10.2118233, 46.696418800000004 ], + [ 10.2123482, 46.6964249 ], + [ 10.2129178, 46.6964205 ], + [ 10.2135447, 46.6963703 ], + [ 10.2136916, 46.6963818 ], + [ 10.2138675, 46.6964235 ], + [ 10.2140485, 46.6964362 ], + [ 10.2142832, 46.6964914 ], + [ 10.2144456, 46.696481 ], + [ 10.2147738, 46.6963732 ], + [ 10.215174, 46.6963611 ], + [ 10.2153355, 46.6963272 ], + [ 10.2155351, 46.696349 ], + [ 10.2156716, 46.6963237 ], + [ 10.2158345, 46.6963113 ], + [ 10.2161459, 46.6960304 ], + [ 10.2161202, 46.6959175 ], + [ 10.216137, 46.6958582 ], + [ 10.2162109, 46.6958316 ], + [ 10.2166339, 46.6958181 ], + [ 10.217074, 46.6957514 ], + [ 10.217056, 46.6955421 ], + [ 10.2171411, 46.6953996 ], + [ 10.2172251, 46.6951098 ], + [ 10.2171598, 46.69492 ], + [ 10.217301, 46.6949353 ], + [ 10.2174584, 46.694925 ], + [ 10.2176811, 46.6948496 ], + [ 10.2179139, 46.6947473 ], + [ 10.2181813, 46.6947357 ], + [ 10.2184145, 46.6946789 ], + [ 10.2187073, 46.6945342 ], + [ 10.2190356, 46.694326 ], + [ 10.2192502, 46.6943252 ], + [ 10.2194568, 46.6943026 ], + [ 10.2196438, 46.6942588 ], + [ 10.2198716, 46.6942222 ], + [ 10.2199222, 46.6941956 ], + [ 10.2199923, 46.6940549 ], + [ 10.2200656, 46.6939695 ], + [ 10.2202077, 46.6940299 ], + [ 10.2203516, 46.6940404 ], + [ 10.2206439, 46.6939792 ], + [ 10.2209714, 46.6939237 ], + [ 10.2213577, 46.69378 ], + [ 10.2215513, 46.6936751 ], + [ 10.2217089, 46.6936425 ], + [ 10.2218955, 46.6936256 ], + [ 10.2220187, 46.6935516 ], + [ 10.2221401, 46.6935227 ], + [ 10.2223319, 46.6935019 ], + [ 10.2225173, 46.6934505 ], + [ 10.2227979, 46.6933393 ], + [ 10.2229167, 46.6932451 ], + [ 10.2230491, 46.6932004 ], + [ 10.2231999, 46.6931832 ], + [ 10.2232671, 46.6931022 ], + [ 10.2233689, 46.6930186 ], + [ 10.2234307, 46.6928674 ], + [ 10.2235362, 46.6927347 ], + [ 10.2235703, 46.6926282 ], + [ 10.22362, 46.6925711 ], + [ 10.2237054, 46.692538 ], + [ 10.224008, 46.692495 ], + [ 10.2243927, 46.6923581 ], + [ 10.2245963, 46.6923341 ], + [ 10.2248406, 46.6923735 ], + [ 10.2250458, 46.6924443 ], + [ 10.2251452, 46.6923637 ], + [ 10.2253128, 46.69219 ], + [ 10.2254334, 46.6921343 ], + [ 10.2256371, 46.6921248 ], + [ 10.2257803, 46.6921012 ], + [ 10.2259955, 46.6920895 ], + [ 10.2261906, 46.6920677 ], + [ 10.2263666, 46.6919805 ], + [ 10.2264205, 46.6918254 ], + [ 10.226568, 46.6917644 ], + [ 10.2266587, 46.6916854 ], + [ 10.2268053, 46.6915885 ], + [ 10.2269483, 46.6915643 ], + [ 10.2270391, 46.6914898 ], + [ 10.2271418, 46.6915184 ], + [ 10.227194, 46.691514 ], + [ 10.2272611, 46.6914726 ], + [ 10.2276794, 46.6912613 ], + [ 10.2278499, 46.6912103 ], + [ 10.2280301, 46.6911908 ], + [ 10.2282167, 46.6911834 ], + [ 10.2287452, 46.6912273 ], + [ 10.2289151, 46.6911874 ], + [ 10.2290385, 46.6911024 ], + [ 10.2291523, 46.6910196 ], + [ 10.22925, 46.6909213 ], + [ 10.2294014, 46.6906589 ], + [ 10.2294986, 46.6905517 ], + [ 10.229549, 46.6905433 ], + [ 10.229731, 46.6906117 ], + [ 10.2299139, 46.690648 ], + [ 10.2300673, 46.6906524 ], + [ 10.2303764, 46.6906376 ], + [ 10.2305433, 46.6906019 ], + [ 10.2309042, 46.6905842 ], + [ 10.2311362, 46.690644 ], + [ 10.2313234, 46.6906549 ], + [ 10.231488, 46.690647 ], + [ 10.2315647, 46.6906168 ], + [ 10.2317677, 46.6904172 ], + [ 10.2318984, 46.6903351 ], + [ 10.2320324, 46.6902891 ], + [ 10.2321981, 46.6902822 ], + [ 10.2325338, 46.6903251 ], + [ 10.232747700000001, 46.690337 ], + [ 10.2329688, 46.6903655 ], + [ 10.2330632, 46.6903553 ], + [ 10.2333556, 46.6902668 ], + [ 10.233552, 46.690242 ], + [ 10.2335431, 46.6903152 ], + [ 10.2336705, 46.6903406 ], + [ 10.2338737, 46.6902857 ], + [ 10.2339643, 46.6902864 ], + [ 10.2341822, 46.6903507 ], + [ 10.2343132, 46.6903457 ], + [ 10.234397, 46.6903915 ], + [ 10.2345687, 46.6903714 ], + [ 10.2348802, 46.6904447 ], + [ 10.2351038, 46.6904776 ], + [ 10.2353375, 46.6904782 ], + [ 10.2354427, 46.6904566 ], + [ 10.2358543, 46.6902681 ], + [ 10.2360335, 46.6902303 ], + [ 10.2362696, 46.6902516 ], + [ 10.2365356, 46.6902415 ], + [ 10.2368351, 46.6901948 ], + [ 10.2371275, 46.690075 ], + [ 10.2373211, 46.6900226 ], + [ 10.2377119, 46.6900148 ], + [ 10.238008, 46.689979 ], + [ 10.2382123, 46.6901204 ], + [ 10.2383032, 46.6901529 ], + [ 10.2383962, 46.690155 ], + [ 10.2385142, 46.6901307 ], + [ 10.2387299, 46.690126 ], + [ 10.2389375, 46.6900983 ], + [ 10.2391348, 46.6900629 ], + [ 10.2392366, 46.690104 ], + [ 10.2393515, 46.6900924 ], + [ 10.2395248, 46.6900908 ], + [ 10.2396481, 46.6899875 ], + [ 10.2397781, 46.6897856 ], + [ 10.2400253, 46.6897869 ], + [ 10.2402118, 46.6897538 ], + [ 10.240384, 46.6896239 ], + [ 10.2405049, 46.6895758 ], + [ 10.2406771, 46.6895544 ], + [ 10.2407903, 46.6894489 ], + [ 10.2409401, 46.6893739 ], + [ 10.2410798, 46.6893462 ], + [ 10.2412857, 46.6892657 ], + [ 10.2414268, 46.6891773 ], + [ 10.2417067, 46.6890318 ], + [ 10.2418178, 46.6890227 ], + [ 10.2420046, 46.6890551 ], + [ 10.2421517, 46.6890307 ], + [ 10.24227, 46.6889726 ], + [ 10.2425426, 46.6888875 ], + [ 10.2426602, 46.6888647 ], + [ 10.2428691, 46.6887159 ], + [ 10.2430623, 46.6885427 ], + [ 10.2432111, 46.6884514 ], + [ 10.2434986, 46.688326 ], + [ 10.2439062, 46.6881863 ], + [ 10.2440802, 46.6881504 ], + [ 10.2443757, 46.6881025 ], + [ 10.2445362, 46.6880579 ], + [ 10.2446733, 46.6879875 ], + [ 10.2448009, 46.6879475 ], + [ 10.2449022, 46.6879025 ], + [ 10.245034799999999, 46.6878762 ], + [ 10.245195, 46.6877779 ], + [ 10.2453239, 46.6877322 ], + [ 10.2454844, 46.6877129 ], + [ 10.2456453, 46.687601 ], + [ 10.2458103, 46.6874678 ], + [ 10.2459124, 46.687412 ], + [ 10.2460423, 46.6873853 ], + [ 10.2465509, 46.6873718 ], + [ 10.2468396, 46.6872934 ], + [ 10.2471585, 46.6870322 ], + [ 10.2473824, 46.6868775 ], + [ 10.2475139, 46.6868318 ], + [ 10.2478874, 46.6867683 ], + [ 10.2481756, 46.6866993 ], + [ 10.2482265, 46.6866644 ], + [ 10.2482331, 46.686624 ], + [ 10.2482673, 46.6865978 ], + [ 10.2485333, 46.6865958 ], + [ 10.2488214, 46.6866507 ], + [ 10.2488823, 46.6866469 ], + [ 10.2489691, 46.6866012 ], + [ 10.2490844, 46.6865822 ], + [ 10.2491877, 46.6865399 ], + [ 10.2493691, 46.6865377 ], + [ 10.2495215, 46.686514 ], + [ 10.2496403, 46.6865189 ], + [ 10.2497479, 46.6865518 ], + [ 10.2499369, 46.6867079 ], + [ 10.2500104, 46.6867512 ], + [ 10.250092800000001, 46.6867855 ], + [ 10.2502022, 46.6867813 ], + [ 10.2504664, 46.686728 ], + [ 10.2505478, 46.6867021 ], + [ 10.2506088, 46.6866687 ], + [ 10.2507052, 46.6865345 ], + [ 10.2507936, 46.6864504 ], + [ 10.2509065, 46.6863725 ], + [ 10.2510294, 46.6863204 ], + [ 10.2511928, 46.6863225 ], + [ 10.2513301, 46.686301 ], + [ 10.2514281, 46.6863247 ], + [ 10.2515874, 46.6863947 ], + [ 10.2517516, 46.6864373 ], + [ 10.2522395, 46.6865108 ], + [ 10.2523611, 46.6864992 ], + [ 10.2524993, 46.6863267 ], + [ 10.2526044, 46.6862854 ], + [ 10.2528206, 46.6862541 ], + [ 10.2529733, 46.6861743 ], + [ 10.253260000000001, 46.686088 ], + [ 10.2534878, 46.6859504 ], + [ 10.2536045, 46.6858468 ], + [ 10.2537478, 46.6857764 ], + [ 10.2539128, 46.6857593 ], + [ 10.2542253, 46.6856113 ], + [ 10.2543999, 46.6855678 ], + [ 10.2547583, 46.685428 ], + [ 10.2549477, 46.6853061 ], + [ 10.2550895, 46.6852758 ], + [ 10.2552384, 46.685187 ], + [ 10.2553781, 46.6851725 ], + [ 10.255725, 46.6851564 ], + [ 10.2558983, 46.6850839 ], + [ 10.2560406, 46.685014699999996 ], + [ 10.2561859, 46.6849804 ], + [ 10.2564205, 46.6849484 ], + [ 10.2565624, 46.6849006 ], + [ 10.2567743, 46.6847748 ], + [ 10.2570427, 46.6846733 ], + [ 10.2572037, 46.6846386 ], + [ 10.2573445, 46.6846347 ], + [ 10.2576712, 46.6845116 ], + [ 10.257858, 46.6843754 ], + [ 10.2580135, 46.6843603 ], + [ 10.2582046, 46.6842708 ], + [ 10.2583416, 46.68426 ], + [ 10.2584365, 46.6843172 ], + [ 10.2586039, 46.684305 ], + [ 10.2587638, 46.6842766 ], + [ 10.2589274, 46.6842963 ], + [ 10.2593712, 46.6843926 ], + [ 10.2595887, 46.6844762 ], + [ 10.2597035, 46.6844799 ], + [ 10.2600127, 46.6844523 ], + [ 10.2601441, 46.6844622 ], + [ 10.2604298, 46.6845188 ], + [ 10.2605718, 46.6845289 ], + [ 10.2610448, 46.6845214 ], + [ 10.2612768, 46.6845401 ], + [ 10.2614954, 46.6845242 ], + [ 10.261669, 46.6845327 ], + [ 10.261905, 46.6844972 ], + [ 10.2620042, 46.684498 ], + [ 10.2622064, 46.6845441 ], + [ 10.2624638, 46.684543 ], + [ 10.2627735, 46.6845951 ], + [ 10.2629923, 46.6846127 ], + [ 10.2631855, 46.6846188 ], + [ 10.2632614, 46.6846142 ], + [ 10.2634704, 46.6845071 ], + [ 10.2638176, 46.6844057 ], + [ 10.2640238, 46.6843581 ], + [ 10.2642763, 46.6843248 ], + [ 10.2644524, 46.6843452 ], + [ 10.2646335, 46.6842809 ], + [ 10.2649258, 46.6842591 ], + [ 10.2651673, 46.6842187 ], + [ 10.2651889, 46.6843167 ], + [ 10.2654454, 46.6845229 ], + [ 10.2656614, 46.6851208 ], + [ 10.2655668, 46.6852453 ], + [ 10.2657413, 46.6853267 ], + [ 10.2657318, 46.6854617 ], + [ 10.2658056, 46.6855326 ], + [ 10.2667038, 46.6856692 ], + [ 10.2671429, 46.685802699999996 ], + [ 10.2677908, 46.68586 ], + [ 10.2681043, 46.6863612 ], + [ 10.2687899, 46.6862059 ], + [ 10.2690336, 46.6864563 ], + [ 10.2694904, 46.6866879 ], + [ 10.2700155, 46.6867618 ], + [ 10.2707085, 46.6871042 ], + [ 10.2710262, 46.6874551 ], + [ 10.2714342, 46.6874321 ], + [ 10.2724901, 46.6878444 ], + [ 10.2732065, 46.6879798 ], + [ 10.2739372, 46.688638 ], + [ 10.2745101, 46.6888197 ], + [ 10.2753681, 46.6897233 ], + [ 10.2767137, 46.6905593 ], + [ 10.2769619, 46.6910847 ], + [ 10.2767432, 46.6914052 ], + [ 10.275672, 46.6914319 ], + [ 10.2748639, 46.6922351 ], + [ 10.2734433, 46.6925855 ], + [ 10.2726893, 46.6926763 ], + [ 10.2733671, 46.6931275 ], + [ 10.273511, 46.693376 ], + [ 10.2734561, 46.6935754 ], + [ 10.2735046, 46.6949964 ], + [ 10.2730293, 46.6954133 ], + [ 10.2728829, 46.695615 ], + [ 10.2729544, 46.6957302 ], + [ 10.2716678, 46.6956452 ], + [ 10.2712129, 46.6957015 ], + [ 10.2709373, 46.6959334 ], + [ 10.2708412, 46.6960978 ], + [ 10.2705903, 46.696302 ], + [ 10.270454, 46.6961974 ], + [ 10.2698599, 46.6960951 ], + [ 10.2694456, 46.6961774 ], + [ 10.2683098, 46.6969708 ], + [ 10.2679211, 46.6970434 ], + [ 10.2668639, 46.6975917 ], + [ 10.2664941, 46.698024 ], + [ 10.2662114, 46.698121 ], + [ 10.2663537, 46.6990896 ], + [ 10.2646227, 46.6997627 ], + [ 10.2630474, 46.7001618 ], + [ 10.2614008, 46.7006976 ], + [ 10.2607937, 46.7008477 ], + [ 10.2600144, 46.700957 ], + [ 10.2593322, 46.7011719 ], + [ 10.2582558, 46.7018556 ], + [ 10.2578541, 46.7021806 ], + [ 10.2562686, 46.7031379 ], + [ 10.2558277, 46.7034639 ], + [ 10.2556733, 46.7037647 ], + [ 10.255753, 46.7044777 ], + [ 10.2555919, 46.7047119 ], + [ 10.2549257, 46.7057365 ], + [ 10.2546781, 46.7065077 ], + [ 10.2540945, 46.7073593 ], + [ 10.2537945, 46.7078797 ], + [ 10.2537824, 46.7081501 ], + [ 10.2542915, 46.7091276 ], + [ 10.2552436, 46.7105713 ], + [ 10.2556615, 46.7110561 ], + [ 10.2560921, 46.7117835 ], + [ 10.2562846, 46.7122108 ], + [ 10.2565511, 46.7135544 ], + [ 10.256658999999999, 46.7138668 ], + [ 10.2570447, 46.7142353 ], + [ 10.258992, 46.7164375 ], + [ 10.2592069, 46.7167922 ], + [ 10.2591771, 46.716973 ], + [ 10.259032, 46.7172016 ], + [ 10.2593027, 46.718122 ], + [ 10.2591357, 46.7186842 ], + [ 10.2588693, 46.7190959 ], + [ 10.2590118, 46.7193174 ], + [ 10.2594148, 46.7195145 ], + [ 10.2597566, 46.7197941 ], + [ 10.2606998, 46.7203108 ], + [ 10.2615147, 46.7208757 ], + [ 10.2619318, 46.7213425 ], + [ 10.2621979, 46.7214259 ], + [ 10.2624865, 46.7214367 ], + [ 10.2628074, 46.7218159 ], + [ 10.262687, 46.7220169 ], + [ 10.2627049, 46.7223585 ], + [ 10.2628065, 46.7230491 ], + [ 10.2630537, 46.72352 ], + [ 10.2632896, 46.7238809 ], + [ 10.2639267, 46.7244435 ], + [ 10.2659292, 46.7264372 ], + [ 10.2663105, 46.7269678 ], + [ 10.2672386, 46.727691899999996 ], + [ 10.2675996, 46.727835999999996 ], + [ 10.2684565, 46.727949699999996 ], + [ 10.2679286, 46.7283679 ], + [ 10.2677457, 46.7286245 ], + [ 10.267661, 46.7290046 ], + [ 10.267289, 46.7294009 ], + [ 10.2666563, 46.7303167 ], + [ 10.2662471, 46.7307499 ], + [ 10.2658083, 46.7311209 ], + [ 10.2656264, 46.7313954 ], + [ 10.2652922, 46.7317637 ], + [ 10.2648402, 46.7326301 ], + [ 10.2656662, 46.7326546 ], + [ 10.2658219, 46.7331278 ], + [ 10.2662474, 46.7332523 ], + [ 10.2676856, 46.7332166 ], + [ 10.2682535, 46.7333105 ], + [ 10.268388999999999, 46.7333972 ], + [ 10.2684946, 46.7336646 ], + [ 10.2685112, 46.7339793 ], + [ 10.2688157, 46.7340437 ], + [ 10.2696461, 46.7344012 ], + [ 10.2699506, 46.7344656 ], + [ 10.2708944, 46.7344872 ], + [ 10.2712638, 46.734541 ], + [ 10.2716893, 46.7346655 ], + [ 10.2721625, 46.7349508 ], + [ 10.2724297, 46.7350522 ], + [ 10.2727721, 46.7353407 ], + [ 10.2734149, 46.7356128 ], + [ 10.2736802, 46.7356782 ], + [ 10.2740174, 46.7358678 ], + [ 10.2747531, 46.7361646 ], + [ 10.2753677, 46.7361493 ], + [ 10.2756068, 46.7362154 ], + [ 10.2759821, 46.7366291 ], + [ 10.2762947, 46.7368464 ], + [ 10.2765861, 46.7369111 ], + [ 10.2767202, 46.7369708 ], + [ 10.2771517, 46.7377072 ], + [ 10.2772753, 46.7380641 ], + [ 10.2772502, 46.7383348 ], + [ 10.2767461, 46.7387074 ], + [ 10.2763988, 46.7388241 ], + [ 10.2764869, 46.7392539 ], + [ 10.2764452, 46.739705 ], + [ 10.2766186, 46.7400158 ], + [ 10.2766328, 46.7402855 ], + [ 10.276521, 46.7406483 ], + [ 10.2765376, 46.7409629 ], + [ 10.2766873, 46.7413193 ], + [ 10.2769473, 46.7417809 ], + [ 10.2771781, 46.7419371 ], + [ 10.2772931, 46.7421323 ], + [ 10.277386, 46.7426521 ], + [ 10.2772979, 46.7429693 ], + [ 10.2775045, 46.7431622 ], + [ 10.2783175, 46.743682 ], + [ 10.2792045, 46.7443621 ], + [ 10.2794926, 46.7444895 ], + [ 10.2792211, 46.7446767 ], + [ 10.2787904, 46.7452005 ], + [ 10.2786097, 46.7459971 ], + [ 10.2786216, 46.7462218 ], + [ 10.2789172, 46.7468626 ], + [ 10.2788196, 46.7474951 ], + [ 10.27896, 46.7484188 ], + [ 10.2789457, 46.7486441 ], + [ 10.2790215, 46.7488403 ], + [ 10.2792319, 46.7491051 ], + [ 10.2803886, 46.7499314 ], + [ 10.280618, 46.7500607 ], + [ 10.2806242, 46.7501776 ], + [ 10.2805421, 46.7503596 ], + [ 10.2801271, 46.750685 ], + [ 10.279919, 46.7509603 ], + [ 10.2796537, 46.751642 ], + [ 10.2796441, 46.7519572 ], + [ 10.2800352, 46.7526676 ], + [ 10.2801196, 46.7530256 ], + [ 10.2803238, 46.7531735 ], + [ 10.2798234, 46.753618 ], + [ 10.2796293, 46.7538218 ], + [ 10.2795985, 46.7541987 ], + [ 10.2793958, 46.7546838 ], + [ 10.2794677, 46.7549652 ], + [ 10.2797299, 46.755329 ], + [ 10.2797001, 46.7554852 ], + [ 10.2798318, 46.7560236 ], + [ 10.2791239, 46.7561407 ], + [ 10.2788747, 46.7564635 ], + [ 10.2786307, 46.7565262 ], + [ 10.2783325, 46.7568797 ], + [ 10.2785772, 46.7571353 ], + [ 10.27864, 46.7576614 ], + [ 10.2783303, 46.7581633 ], + [ 10.2786465, 46.7588616 ], + [ 10.2786634, 46.7590711 ], + [ 10.2787767, 46.7591939 ], + [ 10.2785742, 46.7595827 ], + [ 10.2788953, 46.7597811 ], + [ 10.2794106, 46.7607016 ], + [ 10.2827272, 46.7677811 ], + [ 10.2832162, 46.7679293 ], + [ 10.2835226, 46.7680253 ], + [ 10.2839594, 46.768111 ], + [ 10.2842292, 46.7681803 ], + [ 10.2843211, 46.7683092 ], + [ 10.2844574, 46.7684093 ], + [ 10.2846516, 46.7684735 ], + [ 10.2848851, 46.768523 ], + [ 10.2851591, 46.7685644 ], + [ 10.2856471, 46.7685799 ], + [ 10.2859735, 46.7685752 ], + [ 10.2863052, 46.7685773 ], + [ 10.2866339, 46.768614 ], + [ 10.286978, 46.7686192 ], + [ 10.2873189, 46.7687005 ], + [ 10.2876535, 46.7687577 ], + [ 10.2879703, 46.76885 ], + [ 10.2882661, 46.7689323 ], + [ 10.2885524, 46.7690184 ], + [ 10.2888716, 46.7691244 ], + [ 10.2890335, 46.7692447 ], + [ 10.2891663, 46.7693724 ], + [ 10.2893966, 46.7695463 ], + [ 10.28954, 46.7695012 ], + [ 10.2896698, 46.7694946 ], + [ 10.2898205, 46.7694942 ], + [ 10.2899031, 46.7695232 ], + [ 10.290245, 46.7696252 ], + [ 10.2903775, 46.7696702 ], + [ 10.2904889, 46.7696847 ], + [ 10.2910206, 46.7697991 ], + [ 10.2913284, 46.7698294 ], + [ 10.291586, 46.769854 ], + [ 10.2917179, 46.7698714 ], + [ 10.291913, 46.7698596 ], + [ 10.2922508, 46.7698374 ], + [ 10.2925308, 46.7697141 ], + [ 10.2925198, 46.7696149 ], + [ 10.2925211, 46.7695306 ], + [ 10.2925328, 46.7694583 ] + ] + ], + "layer" : { + "upper" : 300, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "NPA0002", + "country" : "CHE", + "name" : [ + { + "text" : "Schweizerischer Nationalpark", + "lang" : "de-CH" + }, + { + "text" : "Parc National Suisse", + "lang" : "fr-CH" + }, + { + "text" : "Parco Nazionale Svizzero", + "lang" : "it-CH" + }, + { + "text" : "Swiss National Park", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Schweizerischer Nationalpark", + "lang" : "de-CH" + }, + { + "text" : "Parc National Suisse", + "lang" : "fr-CH" + }, + { + "text" : "Parco Nazionale Svizzero", + "lang" : "it-CH" + }, + { + "text" : "Swiss National Park", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Bereich Naturschutz und Naturraummanagement", + "lang" : "de-CH" + }, + { + "text" : "Division Protection et gestion de la nature", + "lang" : "fr-CH" + }, + { + "text" : "Divisione conservazione e gestione della natura", + "lang" : "it-CH" + }, + { + "text" : "Conservation and Natural Resources Department", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Flurin Filli", + "lang" : "de-CH" + }, + { + "text" : "Flurin Filli", + "lang" : "fr-CH" + }, + { + "text" : "Flurin Filli", + "lang" : "it-CH" + }, + { + "text" : "Flurin Filli", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.nationalpark.ch/en/visit/hiking/protection-regulations/", + "email" : "info@nationalpark.ch", + "phone" : "0041818514111", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P01DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.050844, 46.52008 ], + [ 7.0509134, 46.5199513 ], + [ 7.0509075, 46.5198609 ], + [ 7.0508862, 46.519759 ], + [ 7.0509058, 46.5196407 ], + [ 7.0509498, 46.5195286 ], + [ 7.0509705, 46.5193708 ], + [ 7.0509176, 46.5192459 ], + [ 7.0508826, 46.5190253 ], + [ 7.0508797, 46.5188617 ], + [ 7.0508119, 46.5186631 ], + [ 7.0507336, 46.5185548 ], + [ 7.0507055, 46.5183964 ], + [ 7.0507016, 46.5182553 ], + [ 7.0506489, 46.5181022 ], + [ 7.050517, 46.5178746 ], + [ 7.0503443, 46.5176519 ], + [ 7.0501219, 46.51744 ], + [ 7.0498993, 46.5172506 ], + [ 7.0496921, 46.5170727 ], + [ 7.049438, 46.5168434 ], + [ 7.0491687, 46.5165855 ], + [ 7.0488811, 46.5163614 ], + [ 7.0487073, 46.5161839 ], + [ 7.0484988, 46.5160681 ], + [ 7.0482833, 46.5159184 ], + [ 7.0479458, 46.515733 ], + [ 7.0476733, 46.5155767 ], + [ 7.0474252, 46.5154152 ], + [ 7.0472098, 46.5152485 ], + [ 7.0470361, 46.5150484 ], + [ 7.046903, 46.5148717 ], + [ 7.0467792, 46.5146498 ], + [ 7.0462951, 46.5133506 ], + [ 7.0461137, 46.5128683 ], + [ 7.0460143, 46.5126467 ], + [ 7.0458326, 46.5124298 ], + [ 7.0456925, 46.5122189 ], + [ 7.045525, 46.5120699 ], + [ 7.0452951, 46.5118691 ], + [ 7.0451123, 46.5116971 ], + [ 7.0449051, 46.5115193 ], + [ 7.0446509, 46.5113125 ], + [ 7.0444436, 46.5111572 ], + [ 7.0441875, 46.5109843 ], + [ 7.0439325, 46.5107775 ], + [ 7.0437485, 46.5106506 ], + [ 7.0435413, 46.510484 ], + [ 7.0433034, 46.5102662 ], + [ 7.0431216, 46.5100717 ], + [ 7.0429978, 46.5098498 ], + [ 7.0428649, 46.5096561 ], + [ 7.0427043, 46.5095578 ], + [ 7.0425202, 46.5094594 ], + [ 7.0423445, 46.5093213 ], + [ 7.0421047, 46.5091543 ], + [ 7.0418772, 46.5088575 ], + [ 7.0414316, 46.5082135 ], + [ 7.0412803, 46.5080815 ], + [ 7.0411604, 46.5079896 ], + [ 7.0410638, 46.5079543 ], + [ 7.0409298, 46.5077944 ], + [ 7.040814, 46.5075953 ], + [ 7.040751, 46.5075154 ], + [ 7.0406046, 46.5074907 ], + [ 7.0404581, 46.5074772 ], + [ 7.0402475, 46.5074404 ], + [ 7.0399962, 46.5073917 ], + [ 7.0397053, 46.5073084 ], + [ 7.039446, 46.5072484 ], + [ 7.0391318, 46.5071196 ], + [ 7.0388665, 46.5069805 ], + [ 7.038589, 46.5067395 ], + [ 7.0383259, 46.5065269 ], + [ 7.0380791, 46.5063202 ], + [ 7.0378811, 46.5061198 ], + [ 7.0376747, 46.5059419 ], + [ 7.0374431, 46.505775 ], + [ 7.0371533, 46.5056522 ], + [ 7.0369054, 46.5054795 ], + [ 7.0365677, 46.5053391 ], + [ 7.0362374, 46.5051877 ], + [ 7.0358906, 46.5050698 ], + [ 7.0356648, 46.5049932 ], + [ 7.035487, 46.504923 ], + [ 7.035426, 46.504798 ], + [ 7.0352276, 46.5048742 ], + [ 7.0350635, 46.5049281 ], + [ 7.0348752, 46.5049481 ], + [ 7.0346463, 46.5049616 ], + [ 7.0344103, 46.5049414 ], + [ 7.0342088, 46.5048877 ], + [ 7.0340391, 46.5048175 ], + [ 7.0338214, 46.5047467 ], + [ 7.0336445, 46.5046651 ], + [ 7.0334014, 46.5046221 ], + [ 7.0331247, 46.5046013 ], + [ 7.0328714, 46.5046089 ], + [ 7.0326514, 46.5046226 ], + [ 7.0322922, 46.5046344 ], + [ 7.031932, 46.5046801 ], + [ 7.0316216, 46.5046982 ], + [ 7.0314344, 46.5046898 ], + [ 7.0312066, 46.5046639 ], + [ 7.0309796, 46.5046381 ], + [ 7.0307203, 46.5045722 ], + [ 7.0305353, 46.504485 ], + [ 7.0303747, 46.5044037 ], + [ 7.0301571, 46.5043159 ], + [ 7.0299477, 46.5042282 ], + [ 7.0297311, 46.5041179 ], + [ 7.0295797, 46.5040028 ], + [ 7.0294121, 46.5038875 ], + [ 7.0292932, 46.5037785 ], + [ 7.0291163, 46.5036913 ], + [ 7.0288745, 46.5035806 ], + [ 7.0286741, 46.5034874 ], + [ 7.0284658, 46.5033547 ], + [ 7.0282728, 46.5032502 ], + [ 7.0281153, 46.5030844 ], + [ 7.0279033, 46.5027991 ], + [ 7.0276374, 46.5024341 ], + [ 7.0273553, 46.5020519 ], + [ 7.0271668, 46.5017896 ], + [ 7.026916, 46.501469900000004 ], + [ 7.0267029, 46.5012297 ], + [ 7.0264897, 46.501001 ], + [ 7.0262778, 46.5007044 ], + [ 7.0260412, 46.5004471 ], + [ 7.025756, 46.5001552 ], + [ 7.0255753, 46.4999324 ], + [ 7.0253936, 46.4997379 ], + [ 7.0252038, 46.4995377 ], + [ 7.0250545, 46.4993606 ], + [ 7.0247854, 46.499097 ], + [ 7.0245327, 46.4988168 ], + [ 7.0241814, 46.4985521 ], + [ 7.0238867, 46.4983391 ], + [ 7.0237201, 46.4981842 ], + [ 7.0234326, 46.4979882 ], + [ 7.0231768, 46.4977984 ], + [ 7.0229705, 46.497626 ], + [ 7.0227634, 46.4974538 ], + [ 7.0225319, 46.4972868 ], + [ 7.0222513, 46.4971473 ], + [ 7.0220104, 46.4970252 ], + [ 7.0216731, 46.496851 ], + [ 7.0212808, 46.4966196 ], + [ 7.020911, 46.4964337 ], + [ 7.0205807, 46.4962991 ], + [ 7.0200154, 46.4961273 ], + [ 7.0195701, 46.4960193 ], + [ 7.0191175, 46.4959111 ], + [ 7.0187861, 46.4958159 ], + [ 7.01847, 46.495738 ], + [ 7.0181792, 46.4956492 ], + [ 7.0178313, 46.495582 ], + [ 7.0173675, 46.4955528 ], + [ 7.0170351, 46.4954859 ], + [ 7.0165419, 46.4953546 ], + [ 7.0163538, 46.4953688 ], + [ 7.0163372, 46.4954023 ], + [ 7.016392, 46.4954708 ], + [ 7.01686, 46.4959066 ], + [ 7.0170044, 46.4959708 ], + [ 7.0171172, 46.4960175 ], + [ 7.0171313, 46.4960854 ], + [ 7.0170649, 46.496141 ], + [ 7.0169816, 46.496185 ], + [ 7.0168676, 46.4961889 ], + [ 7.0166804, 46.4961805 ], + [ 7.0164617, 46.4961379 ], + [ 7.0161851, 46.4961113 ], + [ 7.0159664, 46.4960798 ], + [ 7.0156502, 46.4960132 ], + [ 7.0154488, 46.4959482 ], + [ 7.015264, 46.4958439 ], + [ 7.0150859, 46.4958188 ], + [ 7.0148664, 46.4957873 ], + [ 7.0146397, 46.4957277 ], + [ 7.0144383, 46.4956626 ], + [ 7.0141882, 46.4955856 ], + [ 7.0139706, 46.4955034 ], + [ 7.0137276, 46.4954491 ], + [ 7.0133696, 46.4954213 ], + [ 7.0130288, 46.4953825 ], + [ 7.0126697, 46.4953943 ], + [ 7.0124642, 46.4954421 ], + [ 7.0126817, 46.4955299 ], + [ 7.0128747, 46.4956174 ], + [ 7.0129784, 46.4956923 ], + [ 7.012976, 46.4957825 ], + [ 7.0129565, 46.4958894 ], + [ 7.0128952, 46.496024 ], + [ 7.0128674, 46.4961308 ], + [ 7.0127967, 46.4963217 ], + [ 7.0126785, 46.4964441 ], + [ 7.0125715, 46.496499 ], + [ 7.0123334, 46.4965407 ], + [ 7.0121205, 46.4965997 ], + [ 7.0118824, 46.4966414 ], + [ 7.0116767, 46.4967062 ], + [ 7.0114804, 46.4967202 ], + [ 7.0111863, 46.4967441 ], + [ 7.0106724, 46.4967762 ], + [ 7.009379, 46.4969436 ], + [ 7.0087326, 46.4970526 ], + [ 7.0085677, 46.4971011 ], + [ 7.0084748, 46.4972126 ], + [ 7.0083229, 46.497374 ], + [ 7.0081962, 46.4975471 ], + [ 7.0080848, 46.4977261 ], + [ 7.0079504, 46.4978427 ], + [ 7.0077284, 46.4979127 ], + [ 7.0075076, 46.4979321 ], + [ 7.0072237, 46.4979055 ], + [ 7.0069879, 46.4978682 ], + [ 7.0068434, 46.4978096 ], + [ 7.006747, 46.4977573 ], + [ 7.0066759, 46.497683 ], + [ 7.0065399, 46.4975907 ], + [ 7.0063721, 46.4974924 ], + [ 7.0061058, 46.4974038 ], + [ 7.0058281, 46.497411 ], + [ 7.0059155, 46.4974857 ], + [ 7.0058969, 46.4975643 ], + [ 7.0058762, 46.4977053 ], + [ 7.0058321, 46.4978286 ], + [ 7.0056764, 46.497849 ], + [ 7.005552, 46.4979319 ], + [ 7.0054175, 46.4980541 ], + [ 7.0052128, 46.4980961 ], + [ 7.0050002, 46.4981157 ], + [ 7.0048059, 46.498079 ], + [ 7.0045316, 46.4979734 ], + [ 7.0043108, 46.4979928 ], + [ 7.0041268, 46.4978885 ], + [ 7.0039653, 46.497824 ], + [ 7.0038118, 46.4977823 ], + [ 7.003657, 46.4977912 ], + [ 7.0035897, 46.497858 ], + [ 7.0035783, 46.4979595 ], + [ 7.003582, 46.4981118 ], + [ 7.0035705, 46.4982245 ], + [ 7.0036068, 46.4983662 ], + [ 7.0035696, 46.498535 ], + [ 7.003478, 46.4985901 ], + [ 7.0033813, 46.4985661 ], + [ 7.0033001, 46.4985423 ], + [ 7.0031791, 46.4985011 ], + [ 7.0029303, 46.4983619 ], + [ 7.0027137, 46.4982629 ], + [ 7.0025603, 46.4982098 ], + [ 7.0022764, 46.4981718 ], + [ 7.0014443, 46.4981822 ], + [ 7.0011267, 46.4981889 ], + [ 7.0008806, 46.4982191 ], + [ 7.0006759, 46.4982612 ], + [ 7.0004552, 46.498275 ], + [ 7.0001945, 46.498288 ], + [ 6.9999656, 46.4983072 ], + [ 6.9998192, 46.4982826 ], + [ 6.9996563, 46.4983028 ], + [ 6.9994508, 46.4983336 ], + [ 6.9992902, 46.4982636 ], + [ 6.9990749, 46.4981136 ], + [ 6.9989308999999995, 46.4982921 ], + [ 6.9987308, 46.4981764 ], + [ 6.9986018, 46.498118 ], + [ 6.998495, 46.4981391 ], + [ 6.9984124, 46.4981773 ], + [ 6.9983555, 46.4981765 ], + [ 6.9982823, 46.4981697 ], + [ 6.9982263, 46.4981407 ], + [ 6.9980728, 46.4980933 ], + [ 6.9975134, 46.4980005 ], + [ 6.9973905, 46.4980043 ], + [ 6.9972672, 46.4980477 ], + [ 6.9971754, 46.4981196 ], + [ 6.9970674, 46.4981802 ], + [ 6.9969198, 46.4982176 ], + [ 6.9967641, 46.4982378 ], + [ 6.9966082, 46.498292 ], + [ 6.9964586, 46.4983687 ], + [ 6.9963993, 46.4984469 ], + [ 6.9963888, 46.4985371 ], + [ 6.9963936, 46.49865 ], + [ 6.9963405, 46.4987677 ], + [ 6.9962659, 46.4988343 ], + [ 6.9961581, 46.4988779 ], + [ 6.9960766, 46.498888 ], + [ 6.9958639, 46.4989074 ], + [ 6.9956767, 46.4989047 ], + [ 6.9954895, 46.4988906 ], + [ 6.9953594, 46.4988775 ], + [ 6.9952118, 46.4989092 ], + [ 6.995063, 46.4989747 ], + [ 6.9949084, 46.4989724 ], + [ 6.9947059, 46.4989413 ], + [ 6.9944852, 46.4989492 ], + [ 6.9941482, 46.4990403 ], + [ 6.993372, 46.4993676 ], + [ 6.9935267, 46.4993697 ], + [ 6.9936812, 46.499389 ], + [ 6.9938021, 46.4994473 ], + [ 6.9938731999999995, 46.4995104 ], + [ 6.9938955, 46.4995727 ], + [ 6.9937967, 46.4996051 ], + [ 6.9936338, 46.499614 ], + [ 6.9936224, 46.4997154 ], + [ 6.9934607, 46.4996736 ], + [ 6.9934004, 46.4997856 ], + [ 6.9933887, 46.4999095 ], + [ 6.9933833, 46.5000731 ], + [ 6.9932426, 46.5001557 ], + [ 6.9930789, 46.5001646 ], + [ 6.9928999, 46.5001507 ], + [ 6.992681, 46.5001361 ], + [ 6.9924615, 46.5000991 ], + [ 6.9921857, 46.5000725 ], + [ 6.9921012, 46.5001503 ], + [ 6.9920743, 46.5002457 ], + [ 6.9920872, 46.5003644 ], + [ 6.9921062, 46.5005228 ], + [ 6.9921505, 46.5006871 ], + [ 6.9921959, 46.5008062 ], + [ 6.9922892, 46.5009431 ], + [ 6.9922137, 46.5010209 ], + [ 6.9922498, 46.5011795 ], + [ 6.9922453, 46.5013318 ], + [ 6.992249, 46.5014786 ], + [ 6.9922873, 46.5015639 ], + [ 6.992398, 46.5016727 ], + [ 6.9925249, 46.5017875 ], + [ 6.9926923, 46.5019141 ], + [ 6.9928194, 46.5020119 ], + [ 6.9929973, 46.502054 ], + [ 6.9932322, 46.5021026 ], + [ 6.9932381, 46.5021761 ], + [ 6.9930426, 46.5021901 ], + [ 6.9927903, 46.5021807 ], + [ 6.9925554, 46.5021321 ], + [ 6.9922393, 46.5020598 ], + [ 6.9918577, 46.5020203 ], + [ 6.9920568, 46.5021699 ], + [ 6.9922, 46.5022849 ], + [ 6.9924467, 46.5024748 ], + [ 6.9928073, 46.5026889 ], + [ 6.9931841, 46.5029089 ], + [ 6.9934493, 46.5030257 ], + [ 6.9938427, 46.5032178 ], + [ 6.9942044, 46.5033868 ], + [ 6.9945276, 46.5034986 ], + [ 6.9948255, 46.5036103 ], + [ 6.9950675, 46.5036816 ], + [ 6.9953581, 46.5037931 ], + [ 6.9955187, 46.5038632 ], + [ 6.9956549, 46.5039329 ], + [ 6.9958398, 46.5040316 ], + [ 6.9959980999999996, 46.5041862 ], + [ 6.9962194, 46.504404 ], + [ 6.9964753, 46.504577 ], + [ 6.9967718, 46.5047619 ], + [ 6.9970593999999995, 46.5049411 ], + [ 6.9973571, 46.5050754 ], + [ 6.9976386, 46.5052035 ], + [ 6.9980329999999995, 46.505373 ], + [ 6.998596, 46.5056296 ], + [ 6.9994254, 46.505969 ], + [ 6.9999581, 46.5061406 ], + [ 7.0005337, 46.5062505 ], + [ 7.000729, 46.5062647 ], + [ 7.0009572, 46.5062455 ], + [ 7.001063, 46.5062527 ], + [ 7.0012317, 46.5063342 ], + [ 7.0015526, 46.5065194 ], + [ 7.0018156, 46.5067208 ], + [ 7.0020228, 46.5068819 ], + [ 7.0022777, 46.5070831 ], + [ 7.0025001, 46.507267 ], + [ 7.0027145, 46.5074451 ], + [ 7.0028493, 46.5075825 ], + [ 7.0029354, 46.5077135 ], + [ 7.0029799, 46.5078496 ], + [ 7.0029592, 46.5079904 ], + [ 7.0028886, 46.50817 ], + [ 7.0028015, 46.5083606 ], + [ 7.0026913, 46.5085 ], + [ 7.002582, 46.5086226 ], + [ 7.0024139, 46.5087669 ], + [ 7.0022872, 46.5089231 ], + [ 7.0021758, 46.5091077 ], + [ 7.0021134, 46.5092761 ], + [ 7.0021148, 46.5095074 ], + [ 7.0021535, 46.5098466 ], + [ 7.002218, 46.5101298 ], + [ 7.0020957, 46.510145 ], + [ 7.0019482, 46.510171 ], + [ 7.0018239, 46.5102312 ], + [ 7.0017576, 46.5102697 ], + [ 7.0016404, 46.5103697 ], + [ 7.0015812, 46.5104365 ], + [ 7.0015066, 46.5104975 ], + [ 7.0014057, 46.5105807 ], + [ 7.0013699, 46.5106874 ], + [ 7.0013919, 46.510778 ], + [ 7.0014608, 46.5109257 ], + [ 7.0016054, 46.5112608 ], + [ 7.0017277, 46.5115448 ], + [ 7.0018292, 46.511693 ], + [ 7.0019806, 46.5118024 ], + [ 7.0020933, 46.5118606 ], + [ 7.002318, 46.5119711 ], + [ 7.0024775, 46.512075 ], + [ 7.0027661, 46.5122485 ], + [ 7.0029732, 46.5124153 ], + [ 7.0031479, 46.5125589 ], + [ 7.0033389, 46.5127141 ], + [ 7.0034423, 46.5128171 ], + [ 7.0036006, 46.5129832 ], + [ 7.0036695, 46.5131196 ], + [ 7.0037932, 46.5133302 ], + [ 7.0038466, 46.5134777 ], + [ 7.0038829, 46.5136137 ], + [ 7.0038876, 46.5137379 ], + [ 7.0039391, 46.5139249 ], + [ 7.0039661, 46.5141059 ], + [ 7.0039779, 46.5142585 ], + [ 7.0040131, 46.5144451 ], + [ 7.0040657, 46.5145814 ], + [ 7.0041019, 46.5147343 ], + [ 7.0041627, 46.5148762 ], + [ 7.0042407, 46.5150016 ], + [ 7.0043512, 46.5151329 ], + [ 7.0045016, 46.5152707 ], + [ 7.0046681, 46.5154198 ], + [ 7.005798, 46.5160966 ], + [ 7.005932, 46.5162453 ], + [ 7.0059614, 46.5163361 ], + [ 7.0060089, 46.5163988 ], + [ 7.006023, 46.516478 ], + [ 7.0060035, 46.516568 ], + [ 7.0059583, 46.5167198 ], + [ 7.0058979, 46.516843 ], + [ 7.0058679, 46.5170288 ], + [ 7.0058982, 46.5171026 ], + [ 7.0059532, 46.5171542 ], + [ 7.00596, 46.5172164 ], + [ 7.0059416, 46.5172838 ], + [ 7.0059303, 46.517374 ], + [ 7.0059502, 46.5175267 ], + [ 7.0059977, 46.5175951 ], + [ 7.0061097, 46.5176475 ], + [ 7.0062214, 46.5177282 ], + [ 7.0062925, 46.5178025 ], + [ 7.0063299, 46.517916 ], + [ 7.006359, 46.5180405 ], + [ 7.006323, 46.5181585 ], + [ 7.0063371, 46.5182377 ], + [ 7.0064409, 46.51829 ], + [ 7.0065363, 46.5183761 ], + [ 7.0065921, 46.518422 ], + [ 7.0066061, 46.5185126 ], + [ 7.0066425, 46.5186372 ], + [ 7.006696, 46.5187791 ], + [ 7.006765, 46.51891 ], + [ 7.0068653, 46.519092 ], + [ 7.0069269, 46.519234 ], + [ 7.0068912, 46.5193181 ], + [ 7.0068623, 46.5194757 ], + [ 7.0068669, 46.5196056 ], + [ 7.0069115, 46.5197304 ], + [ 7.0070199, 46.5199294 ], + [ 7.0071212, 46.5200889 ], + [ 7.0072449, 46.5203165 ], + [ 7.0073382, 46.520459 ], + [ 7.0075791, 46.5205867 ], + [ 7.0077082, 46.5206393 ], + [ 7.0077468, 46.5206963 ], + [ 7.0077853, 46.520776 ], + [ 7.0078491, 46.5208333 ], + [ 7.0078877, 46.5209016 ], + [ 7.007868, 46.5210197 ], + [ 7.007888, 46.5211668 ], + [ 7.0079069, 46.5213477 ], + [ 7.0079351, 46.5214892 ], + [ 7.0079969, 46.521603 ], + [ 7.008084, 46.5217114 ], + [ 7.0081449, 46.5218365 ], + [ 7.0081406, 46.5219776 ], + [ 7.0081848, 46.5221475 ], + [ 7.008213, 46.522289 ], + [ 7.0082911, 46.522403 ], + [ 7.0083935, 46.5225287 ], + [ 7.0086079, 46.5227124 ], + [ 7.0088395, 46.5228908 ], + [ 7.0090386, 46.5230404 ], + [ 7.009176, 46.5230818 ], + [ 7.0093224, 46.5231009 ], + [ 7.0094099, 46.5231642 ], + [ 7.0095531, 46.5232791 ], + [ 7.0097208, 46.5233945 ], + [ 7.0098242, 46.5235089 ], + [ 7.0098545, 46.5235826 ], + [ 7.0098687, 46.5236506 ], + [ 7.0099143, 46.5237529 ], + [ 7.009918, 46.5238997 ], + [ 7.0099483, 46.5239847 ], + [ 7.0100672, 46.524088 ], + [ 7.0102267, 46.524203299999996 ], + [ 7.0104491, 46.524404 ], + [ 7.0105924, 46.524519 ], + [ 7.01076, 46.5246512 ], + [ 7.0109276, 46.5247778 ], + [ 7.0110952, 46.5248987 ], + [ 7.0112802, 46.5249918 ], + [ 7.0114236, 46.5250955 ], + [ 7.0114773, 46.5251979 ], + [ 7.0115319, 46.5253001 ], + [ 7.0116845, 46.5253701 ], + [ 7.0118544, 46.5254121 ], + [ 7.0120244, 46.5254484 ], + [ 7.0122361, 46.5254571 ], + [ 7.0124568, 46.5254603 ], + [ 7.0127022, 46.5254356 ], + [ 7.0128918, 46.5253538 ], + [ 7.0130882, 46.5253341 ], + [ 7.013299, 46.5253597 ], + [ 7.0134851, 46.5254131 ], + [ 7.013663, 46.5254723 ], + [ 7.0137666, 46.525564 ], + [ 7.0138774, 46.5256672 ], + [ 7.0139638, 46.5257644 ], + [ 7.0140988, 46.5258905 ], + [ 7.0142289, 46.5259207 ], + [ 7.0144245, 46.5259121 ], + [ 7.0146546, 46.5258534 ], + [ 7.0148919, 46.5258174 ], + [ 7.015022, 46.5258474 ], + [ 7.0151371, 46.5258209 ], + [ 7.0152359, 46.5257885 ], + [ 7.0153673, 46.5257509 ], + [ 7.0155304, 46.5257363 ], + [ 7.015693, 46.5257725 ], + [ 7.0158222, 46.5258196 ], + [ 7.0159586, 46.5258723 ], + [ 7.0160622, 46.5259529 ], + [ 7.0161251, 46.5260327 ], + [ 7.0161939, 46.5261918 ], + [ 7.0162812, 46.5262834 ], + [ 7.0164185, 46.5263249 ], + [ 7.0165571, 46.5263156 ], + [ 7.0166536, 46.5263735 ], + [ 7.0167165, 46.526459 ], + [ 7.0168364, 46.5265397 ], + [ 7.0169809, 46.5265983 ], + [ 7.0171123, 46.5265719 ], + [ 7.017261, 46.5265177 ], + [ 7.0173995, 46.5265027 ], + [ 7.0175053, 46.5265156 ], + [ 7.017602, 46.5265508 ], + [ 7.0177229, 46.5266091 ], + [ 7.0178756, 46.5266733 ], + [ 7.0179893, 46.5267089 ], + [ 7.0181105, 46.5267332 ], + [ 7.0183384, 46.5267647 ], + [ 7.0186875, 46.5268037 ], + [ 7.0191576, 46.5269007 ], + [ 7.0192868, 46.5269421 ], + [ 7.0193764, 46.526949 ], + [ 7.0194588, 46.5269221 ], + [ 7.0195496, 46.5268838 ], + [ 7.019624, 46.5268454 ], + [ 7.019731, 46.526813 ], + [ 7.0199031, 46.5267761 ], + [ 7.0200588, 46.526767 ], + [ 7.0202542, 46.5267811 ], + [ 7.0204893, 46.5268127 ], + [ 7.0206673, 46.5268717 ], + [ 7.0208361, 46.5269532 ], + [ 7.0209246, 46.526994 ], + [ 7.0210609, 46.527058 ], + [ 7.0212062, 46.5271335 ], + [ 7.0213182, 46.5271803 ], + [ 7.0214471, 46.5272555 ], + [ 7.0216078, 46.5273369 ], + [ 7.0217278, 46.5274176 ], + [ 7.0218815, 46.527448 ], + [ 7.0220352, 46.5274841 ], + [ 7.0222132, 46.5275262 ], + [ 7.0224249, 46.5275405 ], + [ 7.0225958, 46.5275712 ], + [ 7.0227728, 46.5276472 ], + [ 7.0228764, 46.5277333 ], + [ 7.0229800000000004, 46.5278138 ], + [ 7.0231132, 46.5279795 ], + [ 7.02324, 46.5281223 ], + [ 7.023367, 46.5282371 ], + [ 7.0234776, 46.5283629 ], + [ 7.0235313, 46.5284709 ], + [ 7.0235269, 46.5286231 ], + [ 7.0235135, 46.5287753 ], + [ 7.0234938, 46.5288992 ], + [ 7.0234406, 46.5290395 ], + [ 7.0234689, 46.529181 ], + [ 7.023555, 46.5293121 ], + [ 7.0236425, 46.529381 ], + [ 7.0237635, 46.5294279 ], + [ 7.0239181, 46.5294527 ], + [ 7.0240472, 46.5294997 ], + [ 7.0241918, 46.5295639 ], + [ 7.0243199, 46.5296391 ], + [ 7.0245212, 46.529738 ], + [ 7.0246747, 46.5297966 ], + [ 7.0248203, 46.5298213 ], + [ 7.025032, 46.5298357 ], + [ 7.025309, 46.5298396 ], + [ 7.0255857, 46.5298775 ], + [ 7.0258942, 46.5299101 ], + [ 7.0263329, 46.5299672 ], + [ 7.0267888, 46.5300133 ], + [ 7.027146, 46.5300692 ], + [ 7.0272823, 46.5301389 ], + [ 7.0274594, 46.5302036 ], + [ 7.0276446, 46.5302852 ], + [ 7.0278296, 46.5303839 ], + [ 7.0279681, 46.5303802 ], + [ 7.0280262, 46.5303416 ], + [ 7.0281107, 46.5302637 ], + [ 7.0282271, 46.530175 ], + [ 7.0283096, 46.5301481 ], + [ 7.0286201, 46.5301299 ], + [ 7.0285676, 46.5299599 ], + [ 7.0285394, 46.5298184 ], + [ 7.028552, 46.5296605 ], + [ 7.0285796, 46.5295594 ], + [ 7.0287364, 46.5295165 ], + [ 7.0295833, 46.5295568 ], + [ 7.0297464, 46.5295422 ], + [ 7.0297964, 46.5295035 ], + [ 7.0297983, 46.5294583 ], + [ 7.0297671, 46.5293902 ], + [ 7.0297121, 46.5293329 ], + [ 7.0296899, 46.5292594 ], + [ 7.0296757, 46.5291914 ], + [ 7.0297024, 46.5291128 ], + [ 7.029778, 46.5290179 ], + [ 7.0299056, 46.5288504 ], + [ 7.0300821, 46.5286724 ], + [ 7.0302818, 46.5285455 ], + [ 7.0305119, 46.5284923 ], + [ 7.0308144, 46.5284684 ], + [ 7.0309528, 46.5284817 ], + [ 7.0310727, 46.5285567 ], + [ 7.0311836, 46.5286543 ], + [ 7.0313443, 46.5287357 ], + [ 7.0314734, 46.5287883 ], + [ 7.0316515, 46.528836 ], + [ 7.0318133, 46.5288778 ], + [ 7.0319832, 46.5289311 ], + [ 7.0321227, 46.5289049 ], + [ 7.0322867, 46.5288676 ], + [ 7.0324518, 46.5287911 ], + [ 7.0326424, 46.5286865 ], + [ 7.0328573, 46.528605 ], + [ 7.0330886, 46.5285067 ], + [ 7.0332606, 46.5284865 ], + [ 7.0334155, 46.5284663 ], + [ 7.0336608, 46.5284641 ], + [ 7.0338317, 46.5284779 ], + [ 7.0340762, 46.5284757 ], + [ 7.0343052, 46.5284564 ], + [ 7.0345182, 46.5284143 ], + [ 7.0346833, 46.5283433 ], + [ 7.0348248, 46.528255 ], + [ 7.0349513, 46.5281157 ], + [ 7.0350117, 46.5279925 ], + [ 7.0350476, 46.5278744 ], + [ 7.0350764, 46.5277338 ], + [ 7.0350307, 46.5276315 ], + [ 7.0350096, 46.5275128 ], + [ 7.0350129, 46.5274055 ], + [ 7.0350721, 46.5273331 ], + [ 7.0352044, 46.5272841 ], + [ 7.0354102, 46.5272137 ], + [ 7.0356892, 46.5271612 ], + [ 7.0359684, 46.5270862 ], + [ 7.0361742, 46.5270102 ], + [ 7.0362925, 46.5268821 ], + [ 7.0363448, 46.526753 ], + [ 7.0364631, 46.5266137 ], + [ 7.0365976, 46.5264971 ], + [ 7.0367046, 46.5264591 ], + [ 7.0369103, 46.5264056 ], + [ 7.0370895, 46.5264082 ], + [ 7.0372524, 46.5264104 ], + [ 7.0374151, 46.5264297 ], + [ 7.0375395, 46.5263638 ], + [ 7.0376486, 46.5262524 ], + [ 7.0377333, 46.5261464 ], + [ 7.0377621, 46.5259945 ], + [ 7.0378084, 46.5257976 ], + [ 7.0378627, 46.5256122 ], + [ 7.0379241, 46.5254606 ], + [ 7.0380553, 46.5254625 ], + [ 7.0382101, 46.5254591 ], + [ 7.0383903, 46.5254335 ], + [ 7.038538, 46.525396 ], + [ 7.0386136, 46.5253069 ], + [ 7.0386178, 46.5251884 ], + [ 7.0386303, 46.5250419 ], + [ 7.0386255, 46.5249176 ], + [ 7.0386775, 46.5248225 ], + [ 7.0387369, 46.5247218 ], + [ 7.0388053, 46.5246155 ], + [ 7.0388167, 46.5245084 ], + [ 7.0388606, 46.5244131 ], + [ 7.0389474, 46.5242338 ], + [ 7.0390332, 46.5240938 ], + [ 7.0391354, 46.5239261 ], + [ 7.039257, 46.5236794 ], + [ 7.0394438, 46.5234225 ], + [ 7.0396316, 46.5231431 ], + [ 7.0397755, 46.5229645 ], + [ 7.0399751, 46.5228432 ], + [ 7.0401157, 46.5227775 ], + [ 7.0402076, 46.5226884 ], + [ 7.0402506, 46.5226101 ], + [ 7.0402455, 46.5225197 ], + [ 7.040201, 46.5223666 ], + [ 7.0401413, 46.5221853 ], + [ 7.0401365, 46.5220554 ], + [ 7.040156, 46.5219597 ], + [ 7.0402061, 46.5218983 ], + [ 7.0402813, 46.5218599 ], + [ 7.0403966, 46.5217995 ], + [ 7.0406115, 46.5217122 ], + [ 7.0407359, 46.5216351 ], + [ 7.0409925, 46.5215258 ], + [ 7.0412656, 46.5213829 ], + [ 7.0414653, 46.5212448 ], + [ 7.0416396, 46.5211343 ], + [ 7.0418486, 46.5209681 ], + [ 7.042031, 46.5208522 ], + [ 7.0422448, 46.5208044 ], + [ 7.0425228, 46.5207745 ], + [ 7.0428414, 46.5207508 ], + [ 7.0430307, 46.5207027 ], + [ 7.0431797, 46.5206089 ], + [ 7.0433283, 46.5205603 ], + [ 7.0435514, 46.5204618 ], + [ 7.043748, 46.5204138 ], + [ 7.0439548, 46.5203152 ], + [ 7.0441442, 46.5202558 ], + [ 7.0444324, 46.5201583 ], + [ 7.0447124, 46.5200834 ], + [ 7.0449426, 46.5200075 ], + [ 7.0451331, 46.519914299999996 ], + [ 7.0454061, 46.5197771 ], + [ 7.0456048, 46.5196784 ], + [ 7.0458096, 46.5196305 ], + [ 7.0460478, 46.5195718 ], + [ 7.0462128, 46.5195065 ], + [ 7.0463126, 46.5194514 ], + [ 7.0464614, 46.5193745 ], + [ 7.0465765, 46.5193423 ], + [ 7.0467251, 46.5192936 ], + [ 7.0468485, 46.5192333 ], + [ 7.0471285, 46.5191526 ], + [ 7.0473016, 46.519093 ], + [ 7.0475124, 46.5191129 ], + [ 7.0476345, 46.5191259 ], + [ 7.0478776, 46.5191802 ], + [ 7.0480882, 46.5192397 ], + [ 7.0483058, 46.5193216 ], + [ 7.0485702, 46.5194779 ], + [ 7.0487146, 46.5195645 ], + [ 7.0490231, 46.5195972 ], + [ 7.04938, 46.5196812 ], + [ 7.0498175, 46.5197777 ], + [ 7.0502378, 46.5198853 ], + [ 7.050844, 46.52008 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "JBG0013", + "country" : "CHE", + "name" : [ + { + "text" : "Eidgenössisches Jagdbanngebiet Dent de Lys", + "lang" : "de-CH" + }, + { + "text" : "District franc fédéral Dent de Lys", + "lang" : "fr-CH" + }, + { + "text" : "Bandita federale di caccia Dent de Lys", + "lang" : "it-CH" + }, + { + "text" : "Federal Game Reserve Dent de Lys", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.0260093, 47.313779 ], + [ 8.0260092, 47.313779 ], + [ 8.0259954, 47.3138446 ], + [ 8.0259897, 47.3138715 ], + [ 8.0258149, 47.3139306 ], + [ 8.0256483, 47.3144408 ], + [ 8.0257432, 47.3145327 ], + [ 8.0259069, 47.3145458 ], + [ 8.0262414, 47.3145654 ], + [ 8.0263613, 47.3143534 ], + [ 8.0263641, 47.3143541 ], + [ 8.0265184, 47.3140754 ], + [ 8.0265698, 47.3139402 ], + [ 8.0265638, 47.3138719 ], + [ 8.0265528, 47.3138297 ], + [ 8.0265446, 47.3138108 ], + [ 8.0265298, 47.3137893 ], + [ 8.0264802, 47.3137302 ], + [ 8.0264175, 47.3136774 ], + [ 8.0264001, 47.3136636 ], + [ 8.0263215, 47.3135988 ], + [ 8.0263015, 47.3136296 ], + [ 8.0262887, 47.3136727 ], + [ 8.0260908, 47.3136755 ], + [ 8.0260376, 47.3136452 ], + [ 8.0260093, 47.313779 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSXH002", + "country" : "CHE", + "name" : [ + { + "text" : "LSXH Holziken (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSXH Holziken (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSXH Holziken (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSXH Holziken (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Rose Helicopter AG", + "lang" : "de-CH" + }, + { + "text" : "Rose Helicopter AG", + "lang" : "fr-CH" + }, + { + "text" : "Rose Helicopter AG", + "lang" : "it-CH" + }, + { + "text" : "Rose Helicopter AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Lukas Fischer", + "lang" : "de-CH" + }, + { + "text" : "Lukas Fischer", + "lang" : "fr-CH" + }, + { + "text" : "Lukas Fischer", + "lang" : "it-CH" + }, + { + "text" : "Lukas Fischer", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.roseheli.ch", + "email" : "info@roseheli.ch", + "phone" : "0041627214444", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.5332289, 46.4103404 ], + [ 8.5332207, 46.4101993 ], + [ 8.5332019, 46.4100586 ], + [ 8.5331724, 46.4099188 ], + [ 8.5331324, 46.4097802 ], + [ 8.533081899999999, 46.4096433 ], + [ 8.5330212, 46.4095084 ], + [ 8.5329503, 46.4093759 ], + [ 8.5328695, 46.4092462 ], + [ 8.532779, 46.4091195 ], + [ 8.5326791, 46.4089963 ], + [ 8.5325699, 46.4088768 ], + [ 8.5324519, 46.4087615 ], + [ 8.5323253, 46.4086507 ], + [ 8.5321905, 46.4085445 ], + [ 8.5320479, 46.4084434 ], + [ 8.5318978, 46.4083476 ], + [ 8.5317406, 46.4082573 ], + [ 8.5315769, 46.4081729 ], + [ 8.5314069, 46.4080945 ], + [ 8.5312313, 46.4080223 ], + [ 8.5310505, 46.4079567 ], + [ 8.5308649, 46.4078976 ], + [ 8.5306751, 46.4078454 ], + [ 8.5304817, 46.4078001 ], + [ 8.530285, 46.4077618 ], + [ 8.5300858, 46.4077308 ], + [ 8.5298844, 46.4077069 ], + [ 8.5296816, 46.4076905 ], + [ 8.5294778, 46.4076813 ], + [ 8.5292735, 46.4076796 ], + [ 8.529069400000001, 46.4076853 ], + [ 8.5288661, 46.4076983 ], + [ 8.528664, 46.4077187 ], + [ 8.5284637, 46.4077464 ], + [ 8.5282657, 46.4077812 ], + [ 8.5280707, 46.4078233 ], + [ 8.5278791, 46.4078723 ], + [ 8.5276915, 46.4079281 ], + [ 8.5275084, 46.4079907 ], + [ 8.5273303, 46.4080599 ], + [ 8.5271576, 46.4081353 ], + [ 8.5269909, 46.408217 ], + [ 8.5268306, 46.4083045 ], + [ 8.5266772, 46.4083978 ], + [ 8.526531, 46.4084964 ], + [ 8.5263924, 46.4086003 ], + [ 8.5262619, 46.408709 ], + [ 8.5261399, 46.4088222 ], + [ 8.5260265, 46.4089398 ], + [ 8.5259222, 46.4090612 ], + [ 8.5258272, 46.4091863 ], + [ 8.5257419, 46.4093147 ], + [ 8.5256663, 46.409446 ], + [ 8.5256008, 46.4095798 ], + [ 8.5255455, 46.4097158 ], + [ 8.5255006, 46.4098536 ], + [ 8.5254662, 46.4099929 ], + [ 8.5254423, 46.4101332 ], + [ 8.5254291, 46.4102742 ], + [ 8.5254266, 46.4104155 ], + [ 8.5254348, 46.4105566 ], + [ 8.5254536, 46.4106973 ], + [ 8.5254831, 46.4108371 ], + [ 8.525523100000001, 46.4109757 ], + [ 8.5255735, 46.4111126 ], + [ 8.5256342, 46.4112475 ], + [ 8.5257051, 46.41138 ], + [ 8.5257858, 46.4115098 ], + [ 8.5258763, 46.4116365 ], + [ 8.5259763, 46.4117597 ], + [ 8.5260854, 46.4118791 ], + [ 8.5262034, 46.4119944 ], + [ 8.52633, 46.4121053 ], + [ 8.5264648, 46.4122115 ], + [ 8.5266075, 46.4123126 ], + [ 8.5267576, 46.4124084 ], + [ 8.5269147, 46.4124987 ], + [ 8.5270785, 46.4125831 ], + [ 8.5272484, 46.4126615 ], + [ 8.5274241, 46.4127337 ], + [ 8.5276049, 46.4127994 ], + [ 8.5277905, 46.4128584 ], + [ 8.5279803, 46.4129107 ], + [ 8.5281738, 46.412956 ], + [ 8.5283704, 46.4129942 ], + [ 8.5285697, 46.4130253 ], + [ 8.528771, 46.4130491 ], + [ 8.5289739, 46.4130656 ], + [ 8.5291777, 46.4130747 ], + [ 8.529382, 46.4130765 ], + [ 8.5295861, 46.4130708 ], + [ 8.5297895, 46.4130578 ], + [ 8.5299916, 46.4130374 ], + [ 8.5301919, 46.4130097 ], + [ 8.5303899, 46.4129748 ], + [ 8.530584900000001, 46.4129328 ], + [ 8.5307765, 46.4128838 ], + [ 8.5309641, 46.4128279 ], + [ 8.5311472, 46.4127653 ], + [ 8.5313254, 46.4126962 ], + [ 8.5314981, 46.4126207 ], + [ 8.5316648, 46.412539 ], + [ 8.5318251, 46.4124515 ], + [ 8.5319785, 46.4123582 ], + [ 8.5321247, 46.4122595 ], + [ 8.5322633, 46.4121557 ], + [ 8.5323938, 46.412047 ], + [ 8.5325158, 46.4119337 ], + [ 8.5326292, 46.4118162 ], + [ 8.532733499999999, 46.4116947 ], + [ 8.5328284, 46.4115696 ], + [ 8.5329138, 46.4114413 ], + [ 8.5329893, 46.41131 ], + [ 8.5330548, 46.4111762 ], + [ 8.5331101, 46.4110401 ], + [ 8.533155, 46.4109023 ], + [ 8.5331894, 46.410763 ], + [ 8.5332132, 46.4106227 ], + [ 8.5332264, 46.4104817 ], + [ 8.5332289, 46.4103404 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0011", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Bavona", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Bavona", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Bavona", + "lang" : "it-CH" + }, + { + "text" : "Substation Bavona", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4470596, 47.4551964 ], + [ 7.4470588, 47.4551847 ], + [ 7.4470294, 47.4552004 ], + [ 7.4468192, 47.4552283 ], + [ 7.4467934, 47.4549667 ], + [ 7.4467419, 47.454958 ], + [ 7.4466545, 47.454914 ], + [ 7.4464682, 47.4548226 ], + [ 7.4464568, 47.4548133 ], + [ 7.4464226, 47.4548253 ], + [ 7.4463145, 47.4547553 ], + [ 7.4460858, 47.4548393 ], + [ 7.4460348, 47.454891 ], + [ 7.4459624, 47.4549709 ], + [ 7.4458522, 47.4550547 ], + [ 7.4457365, 47.4551288 ], + [ 7.4457757, 47.4551859 ], + [ 7.4458378, 47.4552326 ], + [ 7.4459869, 47.4553047 ], + [ 7.4460752, 47.4553305 ], + [ 7.4460977, 47.4553371 ], + [ 7.4461087, 47.4553321 ], + [ 7.4461065, 47.4553371 ], + [ 7.4455887, 47.4565019 ], + [ 7.445787, 47.4565265 ], + [ 7.4460729, 47.4565603 ], + [ 7.446282, 47.4565661 ], + [ 7.4465164999999995, 47.4565444 ], + [ 7.4467967, 47.4565072 ], + [ 7.4469003, 47.4564858 ], + [ 7.4468306, 47.4564227 ], + [ 7.4468067, 47.4564001 ], + [ 7.4467934, 47.4563776 ], + [ 7.4467787, 47.4563469 ], + [ 7.4467784, 47.4563229 ], + [ 7.4467757, 47.4563035 ], + [ 7.4467648, 47.4562774 ], + [ 7.446768, 47.4562423 ], + [ 7.4467774, 47.4562071 ], + [ 7.4467908, 47.4561742 ], + [ 7.4468088, 47.4561403 ], + [ 7.446825, 47.4561079 ], + [ 7.4468456, 47.456075 ], + [ 7.4468622, 47.4560458 ], + [ 7.4468721, 47.4560258 ], + [ 7.4468765, 47.4560065 ], + [ 7.4468753, 47.4559913 ], + [ 7.4468672, 47.4559589 ], + [ 7.4468514, 47.4559258 ], + [ 7.4468333, 47.4558945 ], + [ 7.4468203, 47.455860799999996 ], + [ 7.4468051, 47.4558357 ], + [ 7.4467871, 47.4558087 ], + [ 7.446785, 47.4558035 ], + [ 7.4467747, 47.4557784 ], + [ 7.4467604, 47.4557464 ], + [ 7.4467485, 47.4557153 ], + [ 7.4467241, 47.4556436 ], + [ 7.4467209, 47.4556064 ], + [ 7.4467232, 47.4555714 ], + [ 7.4467326, 47.4555408 ], + [ 7.4467462, 47.455505 ], + [ 7.4467492, 47.4554894 ], + [ 7.4467532, 47.4554733 ], + [ 7.4469477, 47.4554764 ], + [ 7.447118, 47.455473 ], + [ 7.4470654, 47.4552737 ], + [ 7.4470596, 47.4551964 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns105", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Blüttenenchöpfli - Chaselboden", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Blüttenenchöpfli - Chaselboden", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Blüttenenchöpfli - Chaselboden", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Blüttenenchöpfli - Chaselboden", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.54153, 47.5316217 ], + [ 7.5414957000000005, 47.5316678 ], + [ 7.5414801, 47.5317248 ], + [ 7.5415652, 47.5317486 ], + [ 7.5415714, 47.5317503 ], + [ 7.5419097, 47.5318533 ], + [ 7.542065, 47.5318922 ], + [ 7.5423157, 47.5319549 ], + [ 7.5427599, 47.5320661 ], + [ 7.5430114, 47.5321256 ], + [ 7.5433346, 47.5322022 ], + [ 7.5432349, 47.5324317 ], + [ 7.5437238, 47.5325021 ], + [ 7.5444481, 47.5325747 ], + [ 7.5449304, 47.5326133 ], + [ 7.5457014000000004, 47.5326709 ], + [ 7.5457602999999995, 47.5329237 ], + [ 7.5453251, 47.5328851 ], + [ 7.5443719, 47.5328159 ], + [ 7.5436845, 47.532741 ], + [ 7.5434503, 47.532713 ], + [ 7.5434631, 47.5326731 ], + [ 7.543476, 47.5326329 ], + [ 7.5429109, 47.532563 ], + [ 7.5429025, 47.5326023 ], + [ 7.5428939, 47.5326429 ], + [ 7.5428661, 47.5326409 ], + [ 7.5428619, 47.5327056 ], + [ 7.5428527, 47.532797 ], + [ 7.5428453, 47.5328832 ], + [ 7.5428379, 47.5329684 ], + [ 7.5419615, 47.5327998 ], + [ 7.541895, 47.5327855 ], + [ 7.5419347, 47.5328554 ], + [ 7.541981, 47.532941 ], + [ 7.5420164, 47.5329472 ], + [ 7.5420428, 47.5329528 ], + [ 7.5420744, 47.5329565 ], + [ 7.5422063, 47.5332104 ], + [ 7.5423614, 47.53346 ], + [ 7.5426352, 47.5338648 ], + [ 7.5428948, 47.53428 ], + [ 7.5430779999999995, 47.5346127 ], + [ 7.5432442, 47.534909999999996 ], + [ 7.5434058, 47.5351986 ], + [ 7.5434005, 47.5352004 ], + [ 7.5433609, 47.5352143 ], + [ 7.543686, 47.5357309 ], + [ 7.5439203, 47.5362184 ], + [ 7.5439594, 47.5362185 ], + [ 7.544715, 47.5362191 ], + [ 7.5447196, 47.5363712 ], + [ 7.5447223999999995, 47.5364458 ], + [ 7.5447258, 47.5365694 ], + [ 7.5447309, 47.5367257 ], + [ 7.5447261999999995, 47.5370948 ], + [ 7.5447248, 47.5371714 ], + [ 7.5447422, 47.5376072 ], + [ 7.5447606, 47.538067 ], + [ 7.5447613, 47.5380926 ], + [ 7.544774, 47.5385437 ], + [ 7.5447474, 47.5387144 ], + [ 7.5447192, 47.5389264 ], + [ 7.5447106, 47.5389891 ], + [ 7.5447066, 47.5392007 ], + [ 7.5445763, 47.5395254 ], + [ 7.5445335, 47.5396321 ], + [ 7.5450794, 47.5398325 ], + [ 7.5451198, 47.539848 ], + [ 7.5456398, 47.540048 ], + [ 7.5461386, 47.5402408 ], + [ 7.5465926, 47.5404144 ], + [ 7.5465571, 47.5405043 ], + [ 7.5465051, 47.5406346 ], + [ 7.5464927, 47.5406661 ], + [ 7.5464383999999995, 47.5408113 ], + [ 7.5468276, 47.5409932 ], + [ 7.5477811, 47.5410061 ], + [ 7.5480937, 47.5410432 ], + [ 7.5484726, 47.5410496 ], + [ 7.5486348, 47.541009 ], + [ 7.5486744, 47.5409987 ], + [ 7.5491671, 47.5408796 ], + [ 7.5486138, 47.5400762 ], + [ 7.5481962, 47.5394761 ], + [ 7.5479849, 47.5391511 ], + [ 7.5477798, 47.538859 ], + [ 7.5475343, 47.5386484 ], + [ 7.5473072, 47.5384536 ], + [ 7.5477662, 47.5383999 ], + [ 7.5484122, 47.5383576 ], + [ 7.5487749, 47.5385614 ], + [ 7.5490969, 47.5385394 ], + [ 7.5491706, 47.5385349 ], + [ 7.5495295, 47.5384332 ], + [ 7.5496655, 47.5383946 ], + [ 7.5495659, 47.5383335 ], + [ 7.549554, 47.5382799 ], + [ 7.5496304, 47.5382105 ], + [ 7.5497383, 47.5381125 ], + [ 7.5497461999999995, 47.5379872 ], + [ 7.5491527, 47.5381373 ], + [ 7.5491465, 47.5381409 ], + [ 7.5491621, 47.5380203 ], + [ 7.5491624, 47.5380169 ], + [ 7.5496181, 47.5379015 ], + [ 7.5497535, 47.5378714 ], + [ 7.5497537999999995, 47.5378671 ], + [ 7.5497559, 47.5378332 ], + [ 7.5497574, 47.5378106 ], + [ 7.5497602, 47.5377658 ], + [ 7.5497254, 47.5377058 ], + [ 7.5492395, 47.5378344 ], + [ 7.5491758, 47.5378512 ], + [ 7.5491874, 47.5377076 ], + [ 7.5491889, 47.5376889 ], + [ 7.5491904, 47.5376709 ], + [ 7.549198, 47.5375773 ], + [ 7.5492015, 47.5375343 ], + [ 7.5492045, 47.5374973 ], + [ 7.5492108, 47.5374189 ], + [ 7.5492168, 47.5373453 ], + [ 7.5492238, 47.5372589 ], + [ 7.5492146, 47.537174 ], + [ 7.5492083999999995, 47.5371167 ], + [ 7.5491982, 47.537023 ], + [ 7.5491618, 47.5366873 ], + [ 7.5491133, 47.5366632 ], + [ 7.5490771, 47.5366438 ], + [ 7.5490148999999995, 47.5366103 ], + [ 7.5486848, 47.5364316 ], + [ 7.5483747999999995, 47.5362286 ], + [ 7.5482359, 47.536135 ], + [ 7.5478653, 47.535880399999996 ], + [ 7.547838, 47.5358603 ], + [ 7.5476285, 47.5357087 ], + [ 7.5474186, 47.5354957 ], + [ 7.5472259, 47.5352843 ], + [ 7.5470421, 47.5350538 ], + [ 7.5471551, 47.5349993 ], + [ 7.5472521, 47.5349524 ], + [ 7.5475408, 47.5347805 ], + [ 7.5474682, 47.5346449 ], + [ 7.5473263, 47.534468 ], + [ 7.5473707999999995, 47.5344581 ], + [ 7.5473372, 47.5343903 ], + [ 7.5473829, 47.534378 ], + [ 7.5478716, 47.5342456 ], + [ 7.5479836, 47.5342153 ], + [ 7.5477772, 47.5341153 ], + [ 7.5477135, 47.53402 ], + [ 7.5476907, 47.5339794 ], + [ 7.5477459, 47.5339053 ], + [ 7.5477305, 47.5338885 ], + [ 7.5476801, 47.5338347 ], + [ 7.5476448, 47.5337396 ], + [ 7.5476515, 47.5336708 ], + [ 7.5474754, 47.5337228 ], + [ 7.5471509999999995, 47.5338104 ], + [ 7.5471072, 47.5338225 ], + [ 7.5469438, 47.5334196 ], + [ 7.5469331, 47.5333932 ], + [ 7.5470027, 47.5333835 ], + [ 7.5470229, 47.5332209 ], + [ 7.547021, 47.5332175 ], + [ 7.5469197, 47.533045 ], + [ 7.5468445, 47.5328874 ], + [ 7.5468969999999995, 47.5327929 ], + [ 7.5469439, 47.5327693 ], + [ 7.54696, 47.5327143 ], + [ 7.5471875, 47.5325944 ], + [ 7.5472274, 47.5325584 ], + [ 7.547273, 47.5323691 ], + [ 7.5472194, 47.5322603 ], + [ 7.5472678, 47.5321738 ], + [ 7.5472933, 47.5321283 ], + [ 7.5472994, 47.5321017 ], + [ 7.5472886, 47.5320664 ], + [ 7.5471171, 47.5319525 ], + [ 7.5470928, 47.5319236 ], + [ 7.5470924, 47.5318869 ], + [ 7.5470558, 47.5318463 ], + [ 7.5469325, 47.5317589 ], + [ 7.5469104, 47.5317265 ], + [ 7.546909, 47.5316895 ], + [ 7.546918, 47.531662 ], + [ 7.5469246, 47.531602 ], + [ 7.5469171, 47.5315066 ], + [ 7.5468774, 47.5314592 ], + [ 7.546758, 47.5314142 ], + [ 7.5466116, 47.5314049 ], + [ 7.5464471, 47.5313575 ], + [ 7.5463861, 47.5313616 ], + [ 7.5463492, 47.531363999999996 ], + [ 7.5462446, 47.5314027 ], + [ 7.5461428, 47.531363 ], + [ 7.5460819, 47.5313118 ], + [ 7.5459741000000005, 47.5312677 ], + [ 7.5459021, 47.531282 ], + [ 7.545861, 47.5312628 ], + [ 7.5458605, 47.5312327 ], + [ 7.5459001, 47.5311637 ], + [ 7.5459096, 47.5311346 ], + [ 7.5459037, 47.5311005 ], + [ 7.54585, 47.5310879 ], + [ 7.5457333, 47.5311239 ], + [ 7.5457128, 47.5311098 ], + [ 7.5456826, 47.5310569 ], + [ 7.5456327, 47.5310263 ], + [ 7.5455103999999995, 47.5309769 ], + [ 7.5454904, 47.5309653 ], + [ 7.5454831, 47.5309516 ], + [ 7.5454702000000005, 47.530948 ], + [ 7.5453977, 47.5309278 ], + [ 7.5453044, 47.5308509 ], + [ 7.544676, 47.5304479 ], + [ 7.5436296, 47.5301534 ], + [ 7.5425258, 47.5299489 ], + [ 7.5425006, 47.5299442 ], + [ 7.5424761, 47.5299396 ], + [ 7.5424285, 47.5300691 ], + [ 7.5422845, 47.5305156 ], + [ 7.542048, 47.5308724 ], + [ 7.54153, 47.5316217 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns261", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Allschwilerwald", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Allschwilerwald", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Allschwilerwald", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Allschwilerwald", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7187338, 47.4693236 ], + [ 7.7187988, 47.4695811 ], + [ 7.7188166, 47.4697499 ], + [ 7.7188343, 47.4699158 ], + [ 7.718878, 47.4700081 ], + [ 7.7195046, 47.4700522 ], + [ 7.720532, 47.4701297 ], + [ 7.7216527, 47.4702089 ], + [ 7.721735, 47.470214 ], + [ 7.7217663, 47.4701676 ], + [ 7.7218304, 47.4700684 ], + [ 7.721871, 47.4700103 ], + [ 7.7219069000000005, 47.4699669 ], + [ 7.7219612, 47.4699035 ], + [ 7.7220242, 47.4698459 ], + [ 7.722091, 47.4697852 ], + [ 7.7221341, 47.4697524 ], + [ 7.7221896999999995, 47.469714 ], + [ 7.7222957, 47.4696505 ], + [ 7.7224189, 47.4695877 ], + [ 7.7225512, 47.4695272 ], + [ 7.7226954, 47.469463 ], + [ 7.7230824, 47.4692889 ], + [ 7.7233525, 47.4691832 ], + [ 7.7235869, 47.4690985 ], + [ 7.7237594, 47.4690282 ], + [ 7.7237752, 47.4690149 ], + [ 7.7238111, 47.4689731 ], + [ 7.7238843, 47.4688526 ], + [ 7.7239018, 47.4687992 ], + [ 7.7239244, 47.4687259 ], + [ 7.7239018999999995, 47.4686487 ], + [ 7.7237925, 47.4684634 ], + [ 7.723721, 47.4683568 ], + [ 7.7236218, 47.4682291 ], + [ 7.7234906, 47.4680823 ], + [ 7.7234037, 47.4679675 ], + [ 7.723375, 47.4679327 ], + [ 7.7233724, 47.4679298 ], + [ 7.7233693, 47.467927 ], + [ 7.7233659, 47.4679244 ], + [ 7.7233622, 47.4679221 ], + [ 7.7233582, 47.4679199 ], + [ 7.723354, 47.467918 ], + [ 7.7233495, 47.4679164 ], + [ 7.7233449, 47.467915 ], + [ 7.72334, 47.4679139 ], + [ 7.7233351, 47.4679131 ], + [ 7.7233301, 47.4679126 ], + [ 7.723325, 47.4679124 ], + [ 7.7233199, 47.4679125 ], + [ 7.7233148, 47.4679129 ], + [ 7.7233099, 47.4679136 ], + [ 7.723305, 47.4679146 ], + [ 7.7233003, 47.4679159 ], + [ 7.7232956999999995, 47.4679174 ], + [ 7.7232914, 47.4679192 ], + [ 7.7232433, 47.4679412 ], + [ 7.7230699, 47.468029 ], + [ 7.7229986, 47.4680313 ], + [ 7.7228857, 47.4680548 ], + [ 7.722369, 47.4681613 ], + [ 7.7222728, 47.4681798 ], + [ 7.7219066, 47.4681848 ], + [ 7.7216314, 47.4681864 ], + [ 7.7214595, 47.4681907 ], + [ 7.7213388, 47.4681981 ], + [ 7.7212266, 47.4682141 ], + [ 7.7211165, 47.4682358 ], + [ 7.7209581, 47.4682714 ], + [ 7.7207695, 47.4683199 ], + [ 7.7203049, 47.4684667 ], + [ 7.7201837, 47.4685065 ], + [ 7.7200633, 47.4685558 ], + [ 7.7199596, 47.4686017 ], + [ 7.7198294, 47.4686668 ], + [ 7.7197672, 47.4687055 ], + [ 7.7195951, 47.4688277 ], + [ 7.719249, 47.4690723 ], + [ 7.7192188999999996, 47.4690885 ], + [ 7.7191491, 47.4691227 ], + [ 7.7187338, 47.4693236 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns218", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Stellihübel - Furtboden", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Stellihübel - Furtboden", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Stellihübel - Furtboden", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Stellihübel - Furtboden", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.8935051, 47.6109536 ], + [ 8.8934958, 47.6108125 ], + [ 8.8934755, 47.6106719 ], + [ 8.8934445, 47.6105322 ], + [ 8.8934026, 47.6103938 ], + [ 8.8933501, 47.6102571 ], + [ 8.893287, 47.6101225 ], + [ 8.8932137, 47.6099902 ], + [ 8.8931302, 47.6098607 ], + [ 8.8930368, 47.6097344 ], + [ 8.8929337, 47.6096115 ], + [ 8.8928213, 47.6094925 ], + [ 8.892699799999999, 47.6093776 ], + [ 8.8925696, 47.6092671 ], + [ 8.892431, 47.6091614 ], + [ 8.8922845, 47.6090608 ], + [ 8.8921303, 47.6089655 ], + [ 8.891969, 47.6088758 ], + [ 8.891801, 47.6087919 ], + [ 8.8916267, 47.608714 ], + [ 8.8914466, 47.6086425 ], + [ 8.8912612, 47.6085774 ], + [ 8.891071, 47.6085189 ], + [ 8.8908766, 47.6084673 ], + [ 8.8906785, 47.6084226 ], + [ 8.8904772, 47.608385 ], + [ 8.8902732, 47.6083546 ], + [ 8.8900671, 47.6083314 ], + [ 8.8898596, 47.6083156 ], + [ 8.8896511, 47.6083071 ], + [ 8.8894422, 47.608306 ], + [ 8.8892336, 47.6083123 ], + [ 8.8890257, 47.608326 ], + [ 8.8888191, 47.6083471 ], + [ 8.8886145, 47.6083754 ], + [ 8.8884123, 47.6084109 ], + [ 8.8882132, 47.6084535 ], + [ 8.8880176, 47.6085031 ], + [ 8.8878262, 47.6085596 ], + [ 8.8876393, 47.6086227 ], + [ 8.8874577, 47.6086924 ], + [ 8.8872816, 47.6087684 ], + [ 8.8871117, 47.6088506 ], + [ 8.8869484, 47.6089386 ], + [ 8.8867921, 47.6090323 ], + [ 8.8866432, 47.6091314 ], + [ 8.8865023, 47.6092357 ], + [ 8.8863696, 47.6093448 ], + [ 8.8862455, 47.6094584 ], + [ 8.8861304, 47.6095762 ], + [ 8.8860246, 47.609698 ], + [ 8.8859283, 47.6098234 ], + [ 8.885841899999999, 47.609952 ], + [ 8.8857655, 47.6100835 ], + [ 8.8856994, 47.6102175 ], + [ 8.8856438, 47.6103536 ], + [ 8.8855988, 47.6104915 ], + [ 8.8855645, 47.6106309 ], + [ 8.8855411, 47.6107712 ], + [ 8.8855285, 47.6109122 ], + [ 8.8855269, 47.6110535 ], + [ 8.8855362, 47.6111946 ], + [ 8.8855564, 47.6113352 ], + [ 8.8855875, 47.6114748 ], + [ 8.8856293, 47.6116132 ], + [ 8.8856818, 47.6117499 ], + [ 8.8857449, 47.6118846 ], + [ 8.8858182, 47.6120169 ], + [ 8.8859017, 47.6121463 ], + [ 8.8859951, 47.6122727 ], + [ 8.8860981, 47.6123956 ], + [ 8.8862105, 47.6125146 ], + [ 8.886332, 47.6126295 ], + [ 8.8864622, 47.61274 ], + [ 8.8866007, 47.6128457 ], + [ 8.8867473, 47.6129463 ], + [ 8.8869014, 47.6130416 ], + [ 8.8870628, 47.6131314 ], + [ 8.8872308, 47.6132153 ], + [ 8.8874051, 47.6132931 ], + [ 8.8875852, 47.6133647 ], + [ 8.8877706, 47.6134298 ], + [ 8.8879607, 47.6134882 ], + [ 8.8881552, 47.6135398 ], + [ 8.8883533, 47.6135845 ], + [ 8.8885547, 47.6136221 ], + [ 8.8887587, 47.6136525 ], + [ 8.8889647, 47.6136757 ], + [ 8.8891723, 47.6136915 ], + [ 8.8893808, 47.6137 ], + [ 8.8895897, 47.6137011 ], + [ 8.8897984, 47.6136948 ], + [ 8.8900063, 47.6136811 ], + [ 8.8902129, 47.6136601 ], + [ 8.8904175, 47.6136318 ], + [ 8.8906197, 47.6135963 ], + [ 8.8908189, 47.6135536 ], + [ 8.8910144, 47.613504 ], + [ 8.8912059, 47.6134476 ], + [ 8.8913928, 47.6133844 ], + [ 8.8915745, 47.6133147 ], + [ 8.8917505, 47.6132387 ], + [ 8.8919205, 47.613156599999996 ], + [ 8.8920838, 47.6130685 ], + [ 8.8922401, 47.6129748 ], + [ 8.8923889, 47.612875700000004 ], + [ 8.8925299, 47.6127714 ], + [ 8.8926626, 47.6126623 ], + [ 8.8927867, 47.6125487 ], + [ 8.8929018, 47.6124308 ], + [ 8.8930076, 47.6123091 ], + [ 8.8931039, 47.6121837 ], + [ 8.8931903, 47.6120551 ], + [ 8.8932666, 47.6119236 ], + [ 8.8933327, 47.6117896 ], + [ 8.8933883, 47.6116535 ], + [ 8.8934333, 47.6115155 ], + [ 8.8934676, 47.6113762 ], + [ 8.893491, 47.6112358 ], + [ 8.8935035, 47.6110948 ], + [ 8.8935051, 47.6109536 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "MZK0001", + "country" : "CHE", + "name" : [ + { + "text" : "Massnahmenzentrum Kalchrain", + "lang" : "de-CH" + }, + { + "text" : "Massnahmenzentrum Kalchrain", + "lang" : "fr-CH" + }, + { + "text" : "Massnahmenzentrum Kalchrain", + "lang" : "it-CH" + }, + { + "text" : "Massnahmenzentrum Kalchrain", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Justizvollzug", + "lang" : "de-CH" + }, + { + "text" : "Amt für Justizvollzug", + "lang" : "fr-CH" + }, + { + "text" : "Amt für Justizvollzug", + "lang" : "it-CH" + }, + { + "text" : "Amt für Justizvollzug", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Amtsleitung", + "lang" : "de-CH" + }, + { + "text" : "Amtsleitung", + "lang" : "fr-CH" + }, + { + "text" : "Amtsleitung", + "lang" : "it-CH" + }, + { + "text" : "Amtsleitung", + "lang" : "en-GB" + } + ], + "siteURL" : "https://ajv.tg.ch/", + "email" : "ajv@tg.ch", + "phone" : "0041583453460", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.9742349, 47.111271 ], + [ 7.974228, 47.1111298 ], + [ 7.9742104, 47.110989 ], + [ 7.974182, 47.1108491 ], + [ 7.9741429, 47.1107104 ], + [ 7.9740932, 47.1105732 ], + [ 7.9740331, 47.110438 ], + [ 7.9739626999999995, 47.1103052 ], + [ 7.9738822, 47.110175 ], + [ 7.9737918, 47.110048 ], + [ 7.9736919, 47.1099243 ], + [ 7.9735825, 47.1098043 ], + [ 7.9734642000000004, 47.1096884 ], + [ 7.9733371, 47.1095769 ], + [ 7.9732016, 47.1094701 ], + [ 7.9730582, 47.1093683 ], + [ 7.9729071, 47.1092718 ], + [ 7.9727488, 47.1091808 ], + [ 7.9725838, 47.1090955 ], + [ 7.9724125, 47.1090163 ], + [ 7.9722352999999995, 47.1089433 ], + [ 7.9720528, 47.1088767 ], + [ 7.9718654, 47.1088168 ], + [ 7.9716737, 47.1087636 ], + [ 7.9714782, 47.1087173 ], + [ 7.9712794, 47.1086781 ], + [ 7.9710779, 47.1086461 ], + [ 7.9708742, 47.1086213 ], + [ 7.9706688, 47.1086038 ], + [ 7.9704624, 47.1085937 ], + [ 7.9702556, 47.1085909 ], + [ 7.9700486999999995, 47.1085956 ], + [ 7.9698426, 47.1086076 ], + [ 7.9696376, 47.108627 ], + [ 7.9694344, 47.1086537 ], + [ 7.9692335, 47.1086876 ], + [ 7.9690355, 47.1087286 ], + [ 7.9688409, 47.1087767 ], + [ 7.9686503, 47.1088316 ], + [ 7.9684641, 47.1088933 ], + [ 7.968283, 47.1089616 ], + [ 7.9681073, 47.1090362 ], + [ 7.9679375, 47.109117 ], + [ 7.9677742, 47.1092037 ], + [ 7.9676178, 47.1092962 ], + [ 7.9674686, 47.1093942 ], + [ 7.9673272, 47.1094973 ], + [ 7.9671939, 47.1096053 ], + [ 7.967069, 47.109718 ], + [ 7.966953, 47.1098349 ], + [ 7.966846, 47.1099559 ], + [ 7.9667485, 47.1100805 ], + [ 7.9666607, 47.1102084 ], + [ 7.9665828, 47.1103393 ], + [ 7.966515, 47.1104728 ], + [ 7.9664576, 47.1106085 ], + [ 7.9664106, 47.1107461 ], + [ 7.9663743, 47.1108852 ], + [ 7.9663486, 47.1110254 ], + [ 7.9663338, 47.1111663 ], + [ 7.9663298, 47.1113075 ], + [ 7.9663366, 47.1114487 ], + [ 7.9663542, 47.1115895 ], + [ 7.9663826, 47.1117294 ], + [ 7.9664217, 47.1118682 ], + [ 7.9664713, 47.1120053 ], + [ 7.9665314, 47.1121405 ], + [ 7.9666018, 47.1122733 ], + [ 7.9666823, 47.1124035 ], + [ 7.9667726, 47.1125306 ], + [ 7.9668726, 47.1126543 ], + [ 7.9669819, 47.1127743 ], + [ 7.9671003, 47.1128901 ], + [ 7.9672273, 47.1130016 ], + [ 7.9673628, 47.1131084 ], + [ 7.9675063, 47.1132103 ], + [ 7.9676573, 47.1133068 ], + [ 7.9678156, 47.1133979 ], + [ 7.9679806, 47.1134831 ], + [ 7.9681519, 47.1135623 ], + [ 7.9683291, 47.1136353 ], + [ 7.9685117, 47.1137019 ], + [ 7.968699, 47.1137619 ], + [ 7.9688908, 47.113815 ], + [ 7.9690863, 47.1138613 ], + [ 7.9692851000000005, 47.1139005 ], + [ 7.9694867, 47.1139326 ], + [ 7.9696904, 47.1139574 ], + [ 7.9698957, 47.1139749 ], + [ 7.9701021999999995, 47.113985 ], + [ 7.9703091, 47.1139877 ], + [ 7.9705159, 47.1139831 ], + [ 7.9707221, 47.113971 ], + [ 7.9709271, 47.1139517 ], + [ 7.9711303000000004, 47.113925 ], + [ 7.9713312, 47.1138911 ], + [ 7.9715292, 47.11385 ], + [ 7.9717237999999995, 47.1138019 ], + [ 7.9719145, 47.113747 ], + [ 7.9721006, 47.1136853 ], + [ 7.9722818, 47.1136171 ], + [ 7.9724576, 47.1135424 ], + [ 7.9726273, 47.1134616 ], + [ 7.9727906, 47.1133749 ], + [ 7.9729471, 47.1132824 ], + [ 7.9730962, 47.1131844 ], + [ 7.9732376, 47.1130813 ], + [ 7.973371, 47.1129733 ], + [ 7.9734958, 47.1128606 ], + [ 7.9736119, 47.1127436 ], + [ 7.9737188, 47.1126227 ], + [ 7.9738163, 47.112498 ], + [ 7.9739041, 47.1123701 ], + [ 7.9739819999999995, 47.1122392 ], + [ 7.9740497, 47.1121057 ], + [ 7.9741071, 47.11197 ], + [ 7.9741541, 47.1118324 ], + [ 7.9741903999999995, 47.1116933 ], + [ 7.974216, 47.1115532 ], + [ 7.9742308, 47.1114122 ], + [ 7.9742349, 47.111271 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0128", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Willisau", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Willisau", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Willisau", + "lang" : "it-CH" + }, + { + "text" : "Substation Willisau", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6883541, 47.4229419 ], + [ 7.6880877, 47.423326 ], + [ 7.6880428, 47.4234296 ], + [ 7.6880837, 47.423486 ], + [ 7.6881145, 47.4235934 ], + [ 7.6881063, 47.4236502 ], + [ 7.6890424, 47.4239305 ], + [ 7.6890895, 47.4239208 ], + [ 7.689338, 47.4238698 ], + [ 7.6893439, 47.4238686 ], + [ 7.6895896, 47.4237956 ], + [ 7.6898186, 47.4237328 ], + [ 7.6901298, 47.423701 ], + [ 7.6903721, 47.4236762 ], + [ 7.6911182, 47.4234448 ], + [ 7.6913845, 47.4232902 ], + [ 7.6914373, 47.4232595 ], + [ 7.6915227999999995, 47.4232273 ], + [ 7.6915064, 47.4232164 ], + [ 7.6914712, 47.4231674 ], + [ 7.6914517, 47.4231099 ], + [ 7.6914798, 47.4229784 ], + [ 7.6914786, 47.4229301 ], + [ 7.6914491, 47.4228918 ], + [ 7.6913952, 47.422858 ], + [ 7.6913095, 47.4228275 ], + [ 7.69113, 47.4227806 ], + [ 7.6908935, 47.4227067 ], + [ 7.6906281, 47.4226415 ], + [ 7.6903941, 47.4225973 ], + [ 7.690212, 47.4225708 ], + [ 7.6900598, 47.4225415 ], + [ 7.689923, 47.4224992 ], + [ 7.6896898, 47.422423 ], + [ 7.6895015, 47.4223722 ], + [ 7.6893681, 47.4223489 ], + [ 7.6892132, 47.4223187 ], + [ 7.6889057, 47.4224615 ], + [ 7.6885814, 47.4226924 ], + [ 7.6883541, 47.4229419 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns113", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Holzenberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Holzenberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Holzenberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Holzenberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5744063, 47.4473818 ], + [ 7.5727139999999995, 47.4478823 ], + [ 7.5699364, 47.4488392 ], + [ 7.5679416, 47.4497735 ], + [ 7.5690498999999996, 47.4502354 ], + [ 7.5696601, 47.4504948 ], + [ 7.5718695, 47.4495421 ], + [ 7.5746334, 47.4487363 ], + [ 7.5744063, 47.4473818 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr047", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Staatswald", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Staatswald", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Staatswald", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Staatswald", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.2059121, 47.1894674 ], + [ 8.206432, 47.1879932 ], + [ 8.2053986, 47.1877033 ], + [ 8.2058752, 47.1868888 ], + [ 8.2050364, 47.1866452 ], + [ 8.2028869, 47.1900633 ], + [ 8.2017804, 47.1897396 ], + [ 8.2013379, 47.1904468 ], + [ 8.2013477, 47.1904872 ], + [ 8.201359, 47.1905375 ], + [ 8.2012801, 47.1911138 ], + [ 8.2012809, 47.1911704 ], + [ 8.2013131, 47.1912997 ], + [ 8.2012581, 47.1914251 ], + [ 8.201941099999999, 47.1914746 ], + [ 8.2019576, 47.1916139 ], + [ 8.2019571, 47.1917659 ], + [ 8.2027979, 47.1919609 ], + [ 8.2038522, 47.1922355 ], + [ 8.2043982, 47.1913764 ], + [ 8.2058035, 47.1915541 ], + [ 8.2059575, 47.19116 ], + [ 8.2065124, 47.1895534 ], + [ 8.2059121, 47.1894674 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZO002", + "country" : "CHE", + "name" : [ + { + "text" : "LSZO Luzern-Beromünster (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSZO Luzern-Beromünster (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSZO Luzern-Beromünster (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSZO Luzern-Beromünster (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "FLUBAG Flugbetriebs AG Luzern Beromünster", + "lang" : "de-CH" + }, + { + "text" : "FLUBAG Flugbetriebs AG Luzern Beromünster", + "lang" : "fr-CH" + }, + { + "text" : "FLUBAG Flugbetriebs AG Luzern Beromünster", + "lang" : "it-CH" + }, + { + "text" : "FLUBAG Flugbetriebs AG Luzern Beromünster", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.flubag.ch", + "email" : "flubag@flubag.ch", + "phone" : "0041419301866", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P01DT12H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.975713, 45.8648578 ], + [ 8.9757038, 45.8647167 ], + [ 8.9756839, 45.864576 ], + [ 8.9756536, 45.8644364 ], + [ 8.9756129, 45.864298 ], + [ 8.9755618, 45.8641613 ], + [ 8.9755006, 45.8640266 ], + [ 8.9754294, 45.8638944 ], + [ 8.9753484, 45.863765 ], + [ 8.9752577, 45.8636387 ], + [ 8.9751578, 45.8635158 ], + [ 8.9750488, 45.8633968 ], + [ 8.974931, 45.863282 ], + [ 8.9748048, 45.8631716 ], + [ 8.9746704, 45.863066 ], + [ 8.9745284, 45.8629654 ], + [ 8.974379, 45.8628702 ], + [ 8.9742227, 45.8627806 ], + [ 8.9740599, 45.8626968 ], + [ 8.973891, 45.8626191 ], + [ 8.9737166, 45.8625476 ], + [ 8.973537, 45.8624826 ], + [ 8.9733528, 45.8624243 ], + [ 8.9731645, 45.8623728 ], + [ 8.9729726, 45.8623283 ], + [ 8.9727776, 45.8622908 ], + [ 8.9725801, 45.8622605 ], + [ 8.9723806, 45.8622375 ], + [ 8.9721796, 45.8622218 ], + [ 8.9719778, 45.8622135 ], + [ 8.9717756, 45.8622125 ], + [ 8.9715735, 45.862219 ], + [ 8.9713723, 45.8622328 ], + [ 8.9711724, 45.862254 ], + [ 8.9709743, 45.8622824 ], + [ 8.9707786, 45.8623181 ], + [ 8.9705859, 45.8623609 ], + [ 8.9703966, 45.8624106 ], + [ 8.9702113, 45.8624672 ], + [ 8.9700306, 45.8625305 ], + [ 8.9698548, 45.8626003 ], + [ 8.9696844, 45.8626765 ], + [ 8.9695201, 45.8627588 ], + [ 8.9693621, 45.862847 ], + [ 8.9692109, 45.8629408 ], + [ 8.9690669, 45.86304 ], + [ 8.9689306, 45.8631444 ], + [ 8.9688023, 45.8632536 ], + [ 8.9686824, 45.8633673 ], + [ 8.9685711, 45.8634853 ], + [ 8.9684688, 45.8636072 ], + [ 8.9683758, 45.8637326 ], + [ 8.9682923, 45.863861299999996 ], + [ 8.9682186, 45.8639929 ], + [ 8.9681548, 45.8641269 ], + [ 8.9681012, 45.8642632 ], + [ 8.9680578, 45.8644012 ], + [ 8.9680248, 45.8645406 ], + [ 8.9680024, 45.864681 ], + [ 8.9679904, 45.864822 ], + [ 8.9679891, 45.8649633 ], + [ 8.9679983, 45.8651044 ], + [ 8.9680181, 45.865245 ], + [ 8.9680484, 45.8653847 ], + [ 8.9680891, 45.8655231 ], + [ 8.9681402, 45.8656598 ], + [ 8.9682014, 45.8657944 ], + [ 8.9682726, 45.8659267 ], + [ 8.9683536, 45.8660561 ], + [ 8.9684442, 45.8661824 ], + [ 8.968544099999999, 45.8663053 ], + [ 8.9686532, 45.8664243 ], + [ 8.968770899999999, 45.8665391 ], + [ 8.9688972, 45.8666495 ], + [ 8.9690315, 45.8667551 ], + [ 8.9691735, 45.8668557 ], + [ 8.9693229, 45.8669509 ], + [ 8.9694792, 45.8670406 ], + [ 8.969642, 45.8671244 ], + [ 8.9698109, 45.8672021 ], + [ 8.9699854, 45.8672736 ], + [ 8.9701649, 45.8673385 ], + [ 8.9703491, 45.8673969 ], + [ 8.9705375, 45.8674484 ], + [ 8.9707294, 45.8674929 ], + [ 8.9709244, 45.8675304 ], + [ 8.9711219, 45.8675607 ], + [ 8.9713214, 45.8675837 ], + [ 8.9715224, 45.8675994 ], + [ 8.9717243, 45.8676077 ], + [ 8.9719265, 45.8676087 ], + [ 8.9721286, 45.8676022 ], + [ 8.9723298, 45.8675884 ], + [ 8.9725298, 45.8675672 ], + [ 8.9727279, 45.8675387 ], + [ 8.9729236, 45.8675031 ], + [ 8.9731163, 45.8674603 ], + [ 8.9733056, 45.8674106 ], + [ 8.9734909, 45.867354 ], + [ 8.9736717, 45.8672906 ], + [ 8.9738475, 45.8672208 ], + [ 8.9740178, 45.8671446 ], + [ 8.9741822, 45.8670624 ], + [ 8.9743402, 45.8669742 ], + [ 8.9744914, 45.8668803 ], + [ 8.9746353, 45.8667811 ], + [ 8.9747716, 45.8666767 ], + [ 8.9749, 45.8665675 ], + [ 8.9750199, 45.8664538 ], + [ 8.9751312, 45.8663358 ], + [ 8.9752334, 45.8662139 ], + [ 8.9753264, 45.8660884 ], + [ 8.9754099, 45.8659598 ], + [ 8.9754836, 45.8658282 ], + [ 8.9755474, 45.8656941 ], + [ 8.975601, 45.8655579 ], + [ 8.975644299999999, 45.8654199 ], + [ 8.9756773, 45.8652805 ], + [ 8.9756998, 45.8651401 ], + [ 8.9757117, 45.8649991 ], + [ 8.975713, 45.8648578 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0071", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Mendrisio", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Mendrisio", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Mendrisio", + "lang" : "it-CH" + }, + { + "text" : "Substation Mendrisio", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.3688911, 47.3166236 ], + [ 8.3688866, 47.3165857 ], + [ 8.3688761, 47.3165289 ], + [ 8.3688302, 47.3164691 ], + [ 8.3687592, 47.3163872 ], + [ 8.3686856, 47.3163283 ], + [ 8.3686042, 47.3162498 ], + [ 8.368531, 47.3161598 ], + [ 8.3684936, 47.3160945 ], + [ 8.3684846, 47.3160688 ], + [ 8.3685107, 47.3160327 ], + [ 8.3685122, 47.3160123 ], + [ 8.3684697, 47.3159796 ], + [ 8.3684205, 47.3159482 ], + [ 8.3683547, 47.3158398 ], + [ 8.3683107, 47.3157773 ], + [ 8.3682875, 47.3157098 ], + [ 8.3682619, 47.3156071 ], + [ 8.3682033, 47.3154776 ], + [ 8.3681659, 47.3153581 ], + [ 8.3681333, 47.3152399 ], + [ 8.3681252, 47.3151046 ], + [ 8.3681456, 47.3149655 ], + [ 8.368189, 47.3148317 ], + [ 8.3682205, 47.3147237 ], + [ 8.368252, 47.3146205 ], + [ 8.3682995, 47.3145543 ], + [ 8.3683547, 47.3144976 ], + [ 8.3684015, 47.314445 ], + [ 8.3684484, 47.3143504 ], + [ 8.3684853, 47.3142782 ], + [ 8.3685382, 47.3142005 ], + [ 8.3685793, 47.3141507 ], + [ 8.3686467, 47.3141311 ], + [ 8.3687023, 47.3140973 ], + [ 8.368738, 47.3140672 ], + [ 8.3687682, 47.314045899999996 ], + [ 8.3688263, 47.3140433 ], + [ 8.3688785, 47.3140313 ], + [ 8.3689243, 47.3140309 ], + [ 8.3689712, 47.3140433 ], + [ 8.369091300000001, 47.314038 ], + [ 8.369159, 47.3140381 ], + [ 8.3692032, 47.3140586 ], + [ 8.3692427, 47.3140786 ], + [ 8.3692972, 47.3140916 ], + [ 8.3693585, 47.3141045 ], + [ 8.3693791, 47.3141389 ], + [ 8.3694111, 47.314165 ], + [ 8.3695089, 47.3141965 ], + [ 8.369629, 47.3142482 ], + [ 8.3697261, 47.314296 ], + [ 8.3697984, 47.3143366 ], + [ 8.3698545, 47.3143794 ], + [ 8.369894, 47.3144075 ], + [ 8.3700219, 47.3144679 ], + [ 8.370034799999999, 47.3144935 ], + [ 8.3700687, 47.3145263 ], + [ 8.3701128, 47.3145388 ], + [ 8.3701173, 47.3145767 ], + [ 8.3701208, 47.3146112 ], + [ 8.370149, 47.3146447 ], + [ 8.370218, 47.3146637 ], + [ 8.3702602, 47.3146769 ], + [ 8.3703106, 47.3146709 ], + [ 8.3703428, 47.314655 ], + [ 8.3704169, 47.3146401 ], + [ 8.3704835, 47.3146313 ], + [ 8.3705424, 47.3146193 ], + [ 8.3706091, 47.3146186 ], + [ 8.3706607, 47.3146242 ], + [ 8.3707162, 47.3146331 ], + [ 8.3707476, 47.3146294 ], + [ 8.370771, 47.3146076 ], + [ 8.3707762, 47.3145764 ], + [ 8.3707525, 47.3145305 ], + [ 8.3707257, 47.3144705 ], + [ 8.3707315, 47.314421 ], + [ 8.3707496, 47.3143653 ], + [ 8.3707816, 47.3143447 ], + [ 8.370831, 47.3143347 ], + [ 8.3708662, 47.3143269 ], + [ 8.3708867, 47.314303 ], + [ 8.3709058, 47.3142527 ], + [ 8.370916, 47.3141795 ], + [ 8.3708911, 47.3141188 ], + [ 8.3707921, 47.3140229 ], + [ 8.3706951, 47.3139317 ], + [ 8.3705819, 47.3138394 ], + [ 8.370518, 47.3137811 ], + [ 8.3703809, 47.3136869 ], + [ 8.370287, 47.3136066 ], + [ 8.370246999999999, 47.3135555 ], + [ 8.370205, 47.3135031 ], + [ 8.370149, 47.3134623 ], + [ 8.3700605, 47.3134164 ], + [ 8.3699752, 47.3133929 ], + [ 8.3698853, 47.3133816 ], + [ 8.3698043, 47.3133823 ], + [ 8.3696757, 47.313389 ], + [ 8.3695642, 47.3133901 ], + [ 8.3694681, 47.3134012 ], + [ 8.3693645, 47.3134232 ], + [ 8.3693077, 47.3134454 ], + [ 8.36926, 47.3134459 ], + [ 8.3692014, 47.3134214 ], + [ 8.3691633, 47.3134197 ], + [ 8.3691129, 47.3134297 ], + [ 8.3690604, 47.3134289 ], + [ 8.3690016, 47.313445 ], + [ 8.3689303, 47.3134538 ], + [ 8.3688485, 47.3134648 ], + [ 8.3687688, 47.3134906 ], + [ 8.3687062, 47.3135108 ], + [ 8.3686625, 47.313518 ], + [ 8.3685921, 47.3135262 ], + [ 8.3685278, 47.3135573 ], + [ 8.3684681, 47.3135809 ], + [ 8.3683813, 47.3136318 ], + [ 8.3683162, 47.3136684 ], + [ 8.3682584, 47.3136879 ], + [ 8.3682025, 47.3137135 ], + [ 8.3681632, 47.3137545 ], + [ 8.3680838, 47.3138447 ], + [ 8.3679966, 47.3139274 ], + [ 8.3679355, 47.3139788 ], + [ 8.3678505, 47.3140277 ], + [ 8.3677637, 47.3140766 ], + [ 8.3676958, 47.3141179 ], + [ 8.3676479, 47.3141617 ], + [ 8.3675671, 47.3142302 ], + [ 8.3674944, 47.3143217 ], + [ 8.3674487, 47.3143817 ], + [ 8.3674167, 47.3144599 ], + [ 8.3673848, 47.3145449 ], + [ 8.3673734, 47.3145999 ], + [ 8.3673779, 47.314635 ], + [ 8.367368, 47.3146697 ], + [ 8.367335, 47.3146903 ], + [ 8.3673336, 47.3147208 ], + [ 8.3673464, 47.3147457 ], + [ 8.3673759, 47.3147908 ], + [ 8.367374, 47.3148457 ], + [ 8.3673748, 47.3148931 ], + [ 8.3673832, 47.314937 ], + [ 8.3673756, 47.314994 ], + [ 8.3673528, 47.3150518 ], + [ 8.3673566, 47.3151052 ], + [ 8.3673702, 47.3151715 ], + [ 8.3674027, 47.3152822 ], + [ 8.3674514, 47.3153955 ], + [ 8.3674889, 47.3155191 ], + [ 8.3675202, 47.3156197 ], + [ 8.367538, 47.3157109 ], + [ 8.3675392, 47.3158301 ], + [ 8.3675648, 47.3159281 ], + [ 8.3675916, 47.3159881 ], + [ 8.3676375, 47.3160486 ], + [ 8.3676788, 47.316122 ], + [ 8.3677208, 47.3161785 ], + [ 8.3677413, 47.3162568 ], + [ 8.3678022, 47.3163585 ], + [ 8.3678561, 47.3163864 ], + [ 8.3679375, 47.3164066 ], + [ 8.3679705, 47.3164368 ], + [ 8.3680071, 47.3164581 ], + [ 8.368043, 47.3164923 ], + [ 8.3680457, 47.3165356 ], + [ 8.3680701, 47.3165686 ], + [ 8.3680954, 47.3166008 ], + [ 8.3681448, 47.3166403 ], + [ 8.3681869, 47.316648 ], + [ 8.3682401, 47.3166908 ], + [ 8.3682695, 47.3167346 ], + [ 8.3683308, 47.3167529 ], + [ 8.3683666, 47.3167838 ], + [ 8.368367, 47.3168068 ], + [ 8.3683836, 47.3168242 ], + [ 8.3684341, 47.3168231 ], + [ 8.3684516, 47.3168425 ], + [ 8.3684887, 47.3168909 ], + [ 8.3684946, 47.3169579 ], + [ 8.3685298, 47.317007 ], + [ 8.3685672, 47.3170724 ], + [ 8.3686136, 47.3171064 ], + [ 8.3686896, 47.3171402 ], + [ 8.3687544, 47.3171951 ], + [ 8.3688001, 47.3172408 ], + [ 8.3688386, 47.3172654 ], + [ 8.3688819, 47.3172846 ], + [ 8.3689082, 47.3173189 ], + [ 8.3689678, 47.3173441 ], + [ 8.3690491, 47.3173596 ], + [ 8.3690852, 47.3173524 ], + [ 8.3691233, 47.317346 ], + [ 8.3691718, 47.3173408 ], + [ 8.3692324, 47.3173144 ], + [ 8.3692794, 47.3172794 ], + [ 8.3692922, 47.3172455 ], + [ 8.3692752, 47.3172009 ], + [ 8.3692802, 47.3171596 ], + [ 8.3692576, 47.3171219 ], + [ 8.3692042, 47.3170696 ], + [ 8.3691835, 47.3170291 ], + [ 8.369179, 47.3169919 ], + [ 8.3691803, 47.3169608 ], + [ 8.3691469, 47.3169062 ], + [ 8.3691269, 47.3168536 ], + [ 8.3691242, 47.3168103 ], + [ 8.369102, 47.3167367 ], + [ 8.3690687, 47.3166903 ], + [ 8.3690206, 47.316667 ], + [ 8.3689719, 47.3166601 ], + [ 8.3689143, 47.3166383 ], + [ 8.3688911, 47.3166236 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "KTAG501", + "country" : "CHE", + "name" : [ + { + "text" : "Stille Reuss", + "lang" : "de-CH" + }, + { + "text" : "Stille Reuss", + "lang" : "fr-CH" + }, + { + "text" : "Stille Reuss", + "lang" : "it-CH" + }, + { + "text" : "Stille Reuss", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "regulationExemption" : "NO", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "schedule" : [ + { + "day" : [ "ANY" ], + "startTime" : "00:00:00.00+01:00", + "endTime" : "00:00:00.00+01:00" + } + ] + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Aargau", + "lang" : "de-CH" + }, + { + "text" : "Canton d'Argovie", + "lang" : "fr-CH" + }, + { + "text" : "Canton Argovia", + "lang" : "it-CH" + }, + { + "text" : "Canton of Aargau", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Departement Bau, Verkehr und Umwelt (BVU)", + "lang" : "de-CH" + }, + { + "text" : "Département de la construction, des transports et de l'environnement (CTE)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento delle costruzioni, dei trasporti e dell'ambiente (CTA)", + "lang" : "it-CH" + }, + { + "text" : "Department of Civil Engineering,Transport and Environment (CTE)", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Sektion Gewässernutzung", + "lang" : "de-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "fr-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "it-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ag.ch/de/verwaltung/bvu/umwelt-natur-landschaft/hochwasserschutz-gewaesser/gewaessernutzung", + "email" : "alg@ag.ch", + "phone" : "0041 62 835 34 50", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7882272, 47.3887477 ], + [ 7.7883289, 47.3884226 ], + [ 7.7887645, 47.3881479 ], + [ 7.7895747, 47.3878928 ], + [ 7.7894814, 47.3877064 ], + [ 7.7894715, 47.3876829 ], + [ 7.7891872, 47.3872304 ], + [ 7.7885651, 47.3873886 ], + [ 7.7879406, 47.3877025 ], + [ 7.7874672, 47.3881386 ], + [ 7.7866419, 47.3884701 ], + [ 7.785953, 47.3889583 ], + [ 7.7856096, 47.3889538 ], + [ 7.7856552, 47.3893108 ], + [ 7.7855774, 47.3895748 ], + [ 7.7845641, 47.3898525 ], + [ 7.7842966, 47.3901136 ], + [ 7.7836841, 47.3897291 ], + [ 7.782863, 47.3896877 ], + [ 7.782229, 47.3900241 ], + [ 7.7817995, 47.3902549 ], + [ 7.7819127, 47.3903168 ], + [ 7.781794, 47.3904222 ], + [ 7.7817131, 47.3904877 ], + [ 7.7815615000000005, 47.3905694 ], + [ 7.7815911, 47.3905947 ], + [ 7.7816787, 47.3906642 ], + [ 7.782421, 47.3911222 ], + [ 7.7830015, 47.3914715 ], + [ 7.7843886, 47.3919136 ], + [ 7.7861875, 47.3923603 ], + [ 7.7865559, 47.3924187 ], + [ 7.7873557, 47.3922941 ], + [ 7.7877224, 47.3924171 ], + [ 7.7878679, 47.3920875 ], + [ 7.7877288, 47.3918072 ], + [ 7.7877375, 47.3918187 ], + [ 7.7877472, 47.39183 ], + [ 7.7877576, 47.3918409 ], + [ 7.7877688, 47.3918514 ], + [ 7.7877808, 47.3918616 ], + [ 7.7877935, 47.3918713 ], + [ 7.7878069, 47.3918806 ], + [ 7.7878209, 47.3918894 ], + [ 7.7878356, 47.3918978 ], + [ 7.7878509, 47.3919056 ], + [ 7.7878837, 47.3919169 ], + [ 7.7879161, 47.3919287 ], + [ 7.7879480999999995, 47.391941 ], + [ 7.7879797, 47.3919538 ], + [ 7.7880109, 47.3919671 ], + [ 7.7880416, 47.3919808 ], + [ 7.7880719, 47.3919949 ], + [ 7.7881017, 47.3920096 ], + [ 7.788131, 47.3920246 ], + [ 7.7881598, 47.3920402 ], + [ 7.7889276, 47.3920308 ], + [ 7.7892693, 47.3920297 ], + [ 7.7900235, 47.3921524 ], + [ 7.7906983, 47.392186 ], + [ 7.7909177, 47.392182 ], + [ 7.7907797, 47.3918988 ], + [ 7.7906255, 47.3915775 ], + [ 7.7904753, 47.391284 ], + [ 7.7903161, 47.3910003 ], + [ 7.7901896, 47.3907264 ], + [ 7.7900264, 47.3904409 ], + [ 7.7898182, 47.3900581 ], + [ 7.7898106, 47.3900441 ], + [ 7.7896318, 47.3896944 ], + [ 7.7895912, 47.3895857 ], + [ 7.78954, 47.3894586 ], + [ 7.7894816, 47.3892713 ], + [ 7.7895476, 47.3890431 ], + [ 7.7895905, 47.3888567 ], + [ 7.7896418, 47.3886337 ], + [ 7.7887588, 47.3887505 ], + [ 7.7882272, 47.3887477 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns107", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Harzflue", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Harzflue", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Harzflue", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Harzflue", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4769483, 46.4977648 ], + [ 7.4768574, 46.4954108 ], + [ 7.4765882999999995, 46.4930634 ], + [ 7.4761417, 46.4907289 ], + [ 7.4755188, 46.4884138 ], + [ 7.4747214, 46.4861243 ], + [ 7.4737518, 46.4838668 ], + [ 7.4726125, 46.4816474 ], + [ 7.4713066999999995, 46.4794723 ], + [ 7.469838, 46.4773473 ], + [ 7.4682105, 46.4752783 ], + [ 7.4664286, 46.473271 ], + [ 7.4644973, 46.4713308 ], + [ 7.4624217, 46.469463 ], + [ 7.4602077, 46.4676729 ], + [ 7.4578612, 46.4659652 ], + [ 7.4553888, 46.4643446 ], + [ 7.4527971, 46.4628157 ], + [ 7.4500934, 46.4613824 ], + [ 7.4472849, 46.4600489 ], + [ 7.4443795, 46.4588187 ], + [ 7.441385, 46.4576952 ], + [ 7.4383096, 46.4566814 ], + [ 7.4351618, 46.4557802 ], + [ 7.4319501, 46.454994 ], + [ 7.4286834, 46.454325 ], + [ 7.4253706, 46.4537749 ], + [ 7.4220207, 46.4533453 ], + [ 7.4186429, 46.4530373 ], + [ 7.4152465, 46.4528519 ], + [ 7.4118406, 46.4527895 ], + [ 7.4084348, 46.4528502 ], + [ 7.4050381, 46.453034 ], + [ 7.40166, 46.4533403 ], + [ 7.3983097, 46.4537683 ], + [ 7.3949963, 46.4543167 ], + [ 7.3917289, 46.4549842 ], + [ 7.3885165, 46.4557688 ], + [ 7.3853677, 46.4566685 ], + [ 7.3822913, 46.4576807 ], + [ 7.3792956, 46.4588028 ], + [ 7.3763889, 46.4600316 ], + [ 7.3735791, 46.4613637 ], + [ 7.3708739, 46.4627956 ], + [ 7.3682807, 46.4643233 ], + [ 7.3658066, 46.4659427 ], + [ 7.3634584, 46.4676492 ], + [ 7.3612425, 46.4694383 ], + [ 7.3591651, 46.471305 ], + [ 7.3572317, 46.4732443 ], + [ 7.3554478, 46.4752507 ], + [ 7.3538181, 46.4773189 ], + [ 7.3523473, 46.4794432 ], + [ 7.3510393, 46.4816177 ], + [ 7.3498977, 46.4838365 ], + [ 7.3489257, 46.4860936 ], + [ 7.348126, 46.4883826 ], + [ 7.3475008, 46.4906975 ], + [ 7.3470518, 46.4930318 ], + [ 7.3467803, 46.495379 ], + [ 7.346687, 46.4977329 ], + [ 7.3467722, 46.500087 ], + [ 7.3470357, 46.5024347 ], + [ 7.3474769, 46.5047697 ], + [ 7.3480944, 46.5070855 ], + [ 7.3488866999999995, 46.5093759 ], + [ 7.3498516, 46.5116345 ], + [ 7.3509865, 46.5138551 ], + [ 7.3522883, 46.5160316 ], + [ 7.3537534, 46.5181581 ], + [ 7.3553778, 46.5202287 ], + [ 7.3571572, 46.5222378 ], + [ 7.3590865, 46.5241798 ], + [ 7.3611606, 46.5260494 ], + [ 7.3633737, 46.5278415 ], + [ 7.3657199, 46.5295512 ], + [ 7.3681926, 46.5311737 ], + [ 7.3707851, 46.5327046 ], + [ 7.3734903, 46.5341397 ], + [ 7.3763008, 46.535475 ], + [ 7.3792088, 46.536707 ], + [ 7.3822064, 46.5378321 ], + [ 7.3852854, 46.5388474 ], + [ 7.3884372, 46.53975 ], + [ 7.3916533, 46.5405374 ], + [ 7.3949247, 46.5412076 ], + [ 7.3982426, 46.5417585 ], + [ 7.4015978, 46.5421888 ], + [ 7.404981, 46.5424973 ], + [ 7.408383, 46.542683 ], + [ 7.4117945, 46.5427455 ], + [ 7.4152061, 46.5426847 ], + [ 7.4186083, 46.5425006 ], + [ 7.4219918, 46.5421938 ], + [ 7.4253475, 46.5417652 ], + [ 7.4286659, 46.5412158 ], + [ 7.4319381, 46.5405473 ], + [ 7.4351549, 46.5397614 ], + [ 7.4383077, 46.5388604 ], + [ 7.4413876, 46.5378466 ], + [ 7.4443864, 46.5367229 ], + [ 7.4472957, 46.5354924 ], + [ 7.4501075, 46.5341584 ], + [ 7.4528142, 46.5327246 ], + [ 7.4554083, 46.531195 ], + [ 7.4578827, 46.5295737 ], + [ 7.4602306, 46.5278652 ], + [ 7.4624456, 46.5260742 ], + [ 7.4645216, 46.5242056 ], + [ 7.4664529, 46.5222645 ], + [ 7.4682343, 46.5202563 ], + [ 7.4698609, 46.5181865 ], + [ 7.4713282, 46.5160607 ], + [ 7.4726322, 46.5138848 ], + [ 7.4737693, 46.5116648 ], + [ 7.4747366, 46.5094067 ], + [ 7.4755312, 46.5071167 ], + [ 7.4761512, 46.5048012 ], + [ 7.4765947, 46.5024664 ], + [ 7.4768606, 46.5001188 ], + [ 7.4769483, 46.4977648 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSTS001", + "country" : "CHE", + "name" : [ + { + "text" : "LSTS St. Stephan", + "lang" : "de-CH" + }, + { + "text" : "LSTS St. Stephan", + "lang" : "fr-CH" + }, + { + "text" : "LSTS St. Stephan", + "lang" : "it-CH" + }, + { + "text" : "LSTS St. Stephan", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Airfield St. Stephan", + "lang" : "de-CH" + }, + { + "text" : "Airfield St. Stephan", + "lang" : "fr-CH" + }, + { + "text" : "Airfield St. Stephan", + "lang" : "it-CH" + }, + { + "text" : "Airfield St. Stephan", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Stephan Speiser", + "lang" : "de-CH" + }, + { + "text" : "Stephan Speiser", + "lang" : "fr-CH" + }, + { + "text" : "Stephan Speiser", + "lang" : "it-CH" + }, + { + "text" : "Stephan Speiser", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.p-c-a.ch/modellflug.html", + "email" : "info@p-c-a.ch", + "phone" : "0041787341880", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8382169, 47.3778025 ], + [ 7.8382284, 47.3779374 ], + [ 7.8383306, 47.3779956 ], + [ 7.8386005, 47.3780995 ], + [ 7.8388178, 47.378152 ], + [ 7.8390846, 47.3782044 ], + [ 7.8391817, 47.3782662 ], + [ 7.839289, 47.3782924 ], + [ 7.8394358, 47.3783523 ], + [ 7.8395484, 47.3783892 ], + [ 7.8396791, 47.3783994 ], + [ 7.8397847, 47.3783898 ], + [ 7.839902, 47.3783627 ], + [ 7.8400537, 47.3783711 ], + [ 7.840195, 47.3784186 ], + [ 7.8403282999999995, 47.3784252 ], + [ 7.8405397, 47.3783978 ], + [ 7.8409289, 47.3784781 ], + [ 7.8413973, 47.3785599 ], + [ 7.8419506, 47.3786464 ], + [ 7.8422017, 47.3786864 ], + [ 7.8423402, 47.3786877 ], + [ 7.8423683, 47.3785935 ], + [ 7.8421337, 47.3783173 ], + [ 7.8420631, 47.3783086 ], + [ 7.8420252, 47.378339 ], + [ 7.8420859, 47.3784291 ], + [ 7.8421715, 47.3785126 ], + [ 7.8421389, 47.3786225 ], + [ 7.8420239, 47.3786052 ], + [ 7.84174, 47.3785603 ], + [ 7.8415698, 47.3785389 ], + [ 7.8414475, 47.3785206 ], + [ 7.8413049, 47.3784964 ], + [ 7.8410271, 47.3784469 ], + [ 7.8408575, 47.378412 ], + [ 7.8406173, 47.3783633 ], + [ 7.8405879, 47.3783588 ], + [ 7.8405579, 47.3783563 ], + [ 7.8405277, 47.3783561 ], + [ 7.8404976, 47.3783579 ], + [ 7.8404681, 47.3783618 ], + [ 7.8404644, 47.3783625 ], + [ 7.840338, 47.3783785 ], + [ 7.8403105, 47.378382 ], + [ 7.8402826, 47.3783835 ], + [ 7.8402545, 47.3783832 ], + [ 7.8402267, 47.3783808 ], + [ 7.8401993999999995, 47.3783764 ], + [ 7.8401727999999995, 47.3783701 ], + [ 7.8401475, 47.378362 ], + [ 7.8401367, 47.3783579 ], + [ 7.8400773, 47.3783415 ], + [ 7.8400473999999996, 47.3783338 ], + [ 7.8400165, 47.3783282 ], + [ 7.839985, 47.3783249 ], + [ 7.8399531, 47.3783238 ], + [ 7.8399212, 47.3783251 ], + [ 7.8398897, 47.3783285 ], + [ 7.8398669, 47.3783325 ], + [ 7.839787, 47.3783522 ], + [ 7.8397574, 47.3783594 ], + [ 7.8397267, 47.3783643 ], + [ 7.8396956, 47.378367 ], + [ 7.8396642, 47.3783676 ], + [ 7.8396328, 47.3783659 ], + [ 7.8396131, 47.3783636 ], + [ 7.8395637, 47.3783554 ], + [ 7.8395161, 47.3783437 ], + [ 7.8394704, 47.3783288 ], + [ 7.8394273, 47.3783107 ], + [ 7.8394037, 47.3782988 ], + [ 7.8393575, 47.3782796 ], + [ 7.8393087, 47.3782638 ], + [ 7.8392702, 47.3782541 ], + [ 7.8392527, 47.3782504 ], + [ 7.839236, 47.3782454 ], + [ 7.83922, 47.3782392 ], + [ 7.839205, 47.3782319 ], + [ 7.8391912999999995, 47.3782237 ], + [ 7.8391789, 47.3782145 ], + [ 7.8391687999999995, 47.3782052 ], + [ 7.8391545, 47.3781942 ], + [ 7.8391387, 47.3781842 ], + [ 7.8391214, 47.3781755 ], + [ 7.8391028, 47.378168 ], + [ 7.8390833, 47.3781618 ], + [ 7.8390628, 47.3781571 ], + [ 7.8390418, 47.3781539 ], + [ 7.8390384, 47.3781535 ], + [ 7.8388812, 47.3781152 ], + [ 7.8387139999999995, 47.3780705 ], + [ 7.8385545, 47.3780141 ], + [ 7.8384453, 47.3779665 ], + [ 7.8383227, 47.3779096 ], + [ 7.8383096, 47.377863 ], + [ 7.8383586, 47.3778307 ], + [ 7.8383663, 47.377727 ], + [ 7.8383938, 47.37756 ], + [ 7.8383807, 47.3775423 ], + [ 7.8383362, 47.3775389 ], + [ 7.8383129, 47.3775577 ], + [ 7.8382944, 47.3776167 ], + [ 7.8382552, 47.3776851 ], + [ 7.8382169, 47.3778025 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns200", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Hecken-Komplex Schmutzberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Hecken-Komplex Schmutzberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Hecken-Komplex Schmutzberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Hecken-Komplex Schmutzberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.9757202, 47.2053192 ], + [ 8.9757312, 47.2067568 ], + [ 8.9756803, 47.2070989 ], + [ 8.9756098, 47.207286 ], + [ 8.9755223, 47.2074113 ], + [ 8.9754503, 47.2075467 ], + [ 8.9753923, 47.2076406 ], + [ 8.9753688, 47.2094615 ], + [ 8.9756749, 47.2095505 ], + [ 8.9790742, 47.2042503 ], + [ 8.9788133, 47.2041503 ], + [ 8.9784846, 47.2043306 ], + [ 8.9780907, 47.2043565 ], + [ 8.9773684, 47.2045731 ], + [ 8.9770218, 47.2046604 ], + [ 8.9766017, 47.2048316 ], + [ 8.9762858, 47.2049289 ], + [ 8.9759841, 47.204995 ], + [ 8.9757886, 47.2050597 ], + [ 8.9756848, 47.2051438 ], + [ 8.9757202, 47.2053192 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "WZV0004", + "country" : "CHE", + "name" : [ + { + "text" : "Wasser- und Zugvogelreservat Benkner-, Burger- und Kaltbrunner-Riet", + "lang" : "de-CH" + }, + { + "text" : "Réserve d'oiseaux d'eau et de migrateurs Benkner-, Burger- und Kaltbrunner-Riet", + "lang" : "fr-CH" + }, + { + "text" : "Riserva di uccelli acquatici e migratori Benkner-, Burger- und Kaltbrunner-Riet", + "lang" : "it-CH" + }, + { + "text" : "Water Bird and Migratory Bird Reserves Benkner-, Burger- und Kaltbrunner-Riet", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8087701, 47.4946579 ], + [ 7.8084117, 47.4946372 ], + [ 7.8079003, 47.4946103 ], + [ 7.8078638, 47.4946955 ], + [ 7.8083199, 47.4947944 ], + [ 7.8087089, 47.4948589 ], + [ 7.8087701, 47.4946579 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns272", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Im Boden", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Im Boden", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Im Boden", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Im Boden", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.5962005, 47.6061426 ], + [ 8.6034342, 47.6051091 ], + [ 8.6181635, 47.60227 ], + [ 8.6325649, 47.598746 ], + [ 8.6465687, 47.5945541 ], + [ 8.6601073, 47.5897147 ], + [ 8.6731153, 47.5842511 ], + [ 8.68553, 47.5781898 ], + [ 8.6972915, 47.5715601 ], + [ 8.7083433, 47.564394 ], + [ 8.7186322, 47.5567261 ], + [ 8.728109, 47.5485935 ], + [ 8.7367282, 47.5400355 ], + [ 8.7444487, 47.5310932 ], + [ 8.7512338, 47.5218099 ], + [ 8.7570512, 47.5122303 ], + [ 8.7618735, 47.5024006 ], + [ 8.765678, 47.4923679 ], + [ 8.768447, 47.4821807 ], + [ 8.7701677, 47.471888 ], + [ 8.7708325, 47.4615391 ], + [ 8.7704389, 47.4511838 ], + [ 8.7689893, 47.4408719 ], + [ 8.7664913, 47.4306528 ], + [ 8.7629575, 47.4205754 ], + [ 8.7584055, 47.4106882 ], + [ 8.7584052, 47.4106882 ], + [ 8.6863048, 47.3844367 ], + [ 8.7928816, 47.2482721 ], + [ 8.666371, 47.2243677 ], + [ 8.6188669, 47.2366996 ], + [ 8.5303101, 47.3658141 ], + [ 8.3402977, 47.351693 ], + [ 8.3300083, 47.4614277 ], + [ 8.3306611, 47.4717769 ], + [ 8.3323705, 47.4820705 ], + [ 8.3351282, 47.4922591 ], + [ 8.3389216, 47.5022937 ], + [ 8.3437331, 47.5121259 ], + [ 8.3495399, 47.5217084 ], + [ 8.3563148, 47.5309951 ], + [ 8.3640254, 47.5399413 ], + [ 8.3726352, 47.5485037 ], + [ 8.382103, 47.5566411 ], + [ 8.3923835, 47.5643141 ], + [ 8.4034273, 47.5714858 ], + [ 8.4082247, 47.5741945 ], + [ 8.4085257, 47.5740544 ], + [ 8.4091836, 47.5737264 ], + [ 8.4116745, 47.5724423 ], + [ 8.4122143, 47.5721729 ], + [ 8.4127665, 47.5719152 ], + [ 8.4133303, 47.5716694 ], + [ 8.4139054, 47.5714358 ], + [ 8.414491, 47.571214499999996 ], + [ 8.4148622, 47.5710826 ], + [ 8.4152371, 47.5709557 ], + [ 8.4156157, 47.5708338 ], + [ 8.4159977, 47.570717 ], + [ 8.4162573, 47.5706417 ], + [ 8.416383, 47.5706053 ], + [ 8.4167716, 47.5704987 ], + [ 8.4171631, 47.5703974 ], + [ 8.4175575, 47.5703013 ], + [ 8.4184705, 47.5700798 ], + [ 8.4193773, 47.5698469 ], + [ 8.4202776, 47.5696028 ], + [ 8.421171, 47.5693475 ], + [ 8.4220574, 47.5690811 ], + [ 8.4229364, 47.5688037 ], + [ 8.4238077, 47.5685154 ], + [ 8.4246709, 47.5682163 ], + [ 8.4256792, 47.5678595 ], + [ 8.4269019, 47.5674268 ], + [ 8.4277508, 47.5671562 ], + [ 8.4286298, 47.5669342 ], + [ 8.4295331, 47.5667623 ], + [ 8.4304543, 47.5666418 ], + [ 8.4313872, 47.5665734 ], + [ 8.4323252, 47.5665576 ], + [ 8.4332618, 47.5665946 ], + [ 8.4341908, 47.566684 ], + [ 8.4371213, 47.5670508 ], + [ 8.4375449, 47.5671099 ], + [ 8.4379647, 47.5671806 ], + [ 8.4383798, 47.5672627 ], + [ 8.4387896, 47.5673563 ], + [ 8.4391935, 47.567461 ], + [ 8.4395908, 47.5675768 ], + [ 8.446223700000001, 47.5696187 ], + [ 8.4466824, 47.5697628 ], + [ 8.4471378, 47.5699119 ], + [ 8.4475896, 47.5700659 ], + [ 8.4480377, 47.5702247 ], + [ 8.4484821, 47.5703883 ], + [ 8.4489225, 47.5705566 ], + [ 8.449392, 47.5707274 ], + [ 8.4498752, 47.5708798 ], + [ 8.4503706, 47.5710132 ], + [ 8.4508764, 47.5711271 ], + [ 8.451391, 47.5712213 ], + [ 8.4519127, 47.5712953 ], + [ 8.4521799, 47.5713317 ], + [ 8.4524446, 47.5713755 ], + [ 8.4527065, 47.5714266 ], + [ 8.4529651, 47.5714849 ], + [ 8.4532199, 47.5715503 ], + [ 8.4534705, 47.5716227 ], + [ 8.4559023, 47.5723658 ], + [ 8.45601, 47.5723962 ], + [ 8.45612, 47.5724223 ], + [ 8.4562322, 47.5724439 ], + [ 8.456346, 47.5724611 ], + [ 8.4564611, 47.5724737 ], + [ 8.4565771, 47.5724818 ], + [ 8.4566936, 47.5724852 ], + [ 8.4568102, 47.5724841 ], + [ 8.4569265, 47.5724783 ], + [ 8.4570422, 47.5724679 ], + [ 8.4606074, 47.5720762 ], + [ 8.4614725, 47.5720112 ], + [ 8.4623429, 47.5720054 ], + [ 8.4632097, 47.5720589 ], + [ 8.4640642, 47.5721712 ], + [ 8.4641829, 47.5721954 ], + [ 8.4648976, 47.5723411 ], + [ 8.4657015, 47.5725668 ], + [ 8.4666484, 47.5728873 ], + [ 8.4675757, 47.5732329 ], + [ 8.468482, 47.5736033 ], + [ 8.4693657, 47.5739978 ], + [ 8.4702256, 47.5744158 ], + [ 8.4710601, 47.5748566 ], + [ 8.4718224, 47.5752774 ], + [ 8.4725852, 47.5756979 ], + [ 8.4733483, 47.576118 ], + [ 8.4741118, 47.5765378 ], + [ 8.4748757, 47.5769573 ], + [ 8.47564, 47.5773764 ], + [ 8.4759642, 47.5775395 ], + [ 8.476308, 47.5776829 ], + [ 8.4766689, 47.5778055 ], + [ 8.4770442, 47.5779066 ], + [ 8.4774311, 47.5779852 ], + [ 8.4778265, 47.5780408 ], + [ 8.4782276, 47.578073 ], + [ 8.4786313, 47.5780815 ], + [ 8.4790346, 47.5780663 ], + [ 8.4794344, 47.5780275 ], + [ 8.4798277, 47.5779654 ], + [ 8.4802116, 47.5778804 ], + [ 8.4825995, 47.5772728 ], + [ 8.4829732, 47.5771898 ], + [ 8.4833559, 47.5771284 ], + [ 8.483745, 47.5770891 ], + [ 8.4838574, 47.5770842 ], + [ 8.4841375, 47.5770721 ], + [ 8.4845307, 47.5770777 ], + [ 8.4849219, 47.5771057 ], + [ 8.4853081, 47.577156 ], + [ 8.4856868, 47.5772282 ], + [ 8.486055, 47.5773217 ], + [ 8.4864102, 47.577436 ], + [ 8.4867499, 47.5775702 ], + [ 8.4870716, 47.5777233 ], + [ 8.4873472, 47.5778666 ], + [ 8.4910548, 47.5797944 ], + [ 8.4916164, 47.5800672 ], + [ 8.492203, 47.5803147 ], + [ 8.4928121, 47.5805359 ], + [ 8.4934411, 47.5807299 ], + [ 8.4940875, 47.5808958 ], + [ 8.4947484, 47.5810329 ], + [ 8.4943694, 47.5818008 ], + [ 8.494153, 47.5822443 ], + [ 8.4928645, 47.5837195 ], + [ 8.491995, 47.5846241 ], + [ 8.4913657, 47.5852983 ], + [ 8.4909031, 47.5858382 ], + [ 8.4903653, 47.5864267 ], + [ 8.4887069, 47.5878289 ], + [ 8.4872752, 47.5874196 ], + [ 8.4832818, 47.5869176 ], + [ 8.4817632, 47.5860117 ], + [ 8.4810395, 47.5852042 ], + [ 8.4805424, 47.5851844 ], + [ 8.4800947, 47.5851613 ], + [ 8.4795557, 47.58535 ], + [ 8.4780977, 47.5849717 ], + [ 8.4777009, 47.5848929 ], + [ 8.4764969, 47.5847255 ], + [ 8.4754579, 47.5845274 ], + [ 8.4737299, 47.5844113 ], + [ 8.4733978, 47.5844035 ], + [ 8.4730674, 47.5844102 ], + [ 8.4722264, 47.5844477 ], + [ 8.4714258, 47.5845324 ], + [ 8.4703478, 47.5846319 ], + [ 8.4702444, 47.5846126 ], + [ 8.4701581, 47.5845201 ], + [ 8.4700326, 47.5844752 ], + [ 8.4696239, 47.5843752 ], + [ 8.4695669, 47.5842654 ], + [ 8.4694815, 47.5841775 ], + [ 8.469381, 47.5841197 ], + [ 8.4692046, 47.5840297 ], + [ 8.4686993, 47.5839858 ], + [ 8.4683037, 47.5839166 ], + [ 8.4682065, 47.5839131 ], + [ 8.4680553, 47.5839553 ], + [ 8.4679621, 47.5839741 ], + [ 8.467791, 47.5839855 ], + [ 8.4676046, 47.583978 ], + [ 8.467514, 47.5839975 ], + [ 8.4674458, 47.5840459 ], + [ 8.4672302, 47.5841588 ], + [ 8.4670479, 47.5842427 ], + [ 8.4669542, 47.584275 ], + [ 8.4668687, 47.584248 ], + [ 8.4668565, 47.5842701 ], + [ 8.4662312, 47.5853976 ], + [ 8.4655369, 47.5866496 ], + [ 8.4648205, 47.5880082 ], + [ 8.4627093, 47.5880082 ], + [ 8.4626201, 47.5884462 ], + [ 8.4605392, 47.588377 ], + [ 8.4603537, 47.5895824 ], + [ 8.4605608, 47.5896139 ], + [ 8.4606356, 47.5904511 ], + [ 8.4606838, 47.5909909 ], + [ 8.4607709, 47.5912181 ], + [ 8.4610166, 47.5920287 ], + [ 8.4612358, 47.5926655 ], + [ 8.460881, 47.5930333 ], + [ 8.4605927, 47.5933321 ], + [ 8.4602538, 47.5942151 ], + [ 8.4600205, 47.595015599999996 ], + [ 8.4592767, 47.5960511 ], + [ 8.4681238, 47.5987044 ], + [ 8.4825213, 47.6022357 ], + [ 8.4972474, 47.6050823 ], + [ 8.5122311, 47.6072304 ], + [ 8.5273996, 47.6086695 ], + [ 8.5426797, 47.6093928 ], + [ 8.557997199999999, 47.6093966 ], + [ 8.566399, 47.6090035 ], + [ 8.5664204, 47.6086336 ], + [ 8.5664775, 47.6083172 ], + [ 8.5665777, 47.60805 ], + [ 8.566517, 47.607585 ], + [ 8.5664663, 47.6068203 ], + [ 8.566415899999999, 47.6060918 ], + [ 8.5660204, 47.6051939 ], + [ 8.5650406, 47.6044356 ], + [ 8.5645635, 47.6037278 ], + [ 8.5639021, 47.6028615 ], + [ 8.5632716, 47.6023811 ], + [ 8.5622613, 47.6018126 ], + [ 8.5616546, 47.6013046 ], + [ 8.561929899999999, 47.6008113 ], + [ 8.5622228, 47.6002866 ], + [ 8.5626957, 47.5998244 ], + [ 8.5630816, 47.5994477 ], + [ 8.5639922, 47.5984783 ], + [ 8.5646905, 47.5980456 ], + [ 8.5656639, 47.5975974 ], + [ 8.5666422, 47.5971472 ], + [ 8.5676073, 47.5976212 ], + [ 8.56875, 47.5979193 ], + [ 8.5697771, 47.598134 ], + [ 8.5711347, 47.5982019 ], + [ 8.5715188, 47.5981468 ], + [ 8.5721708, 47.5978222 ], + [ 8.5736596, 47.5966505 ], + [ 8.5748671, 47.5955091 ], + [ 8.5768751, 47.5968226 ], + [ 8.5776229, 47.5968309 ], + [ 8.579507, 47.5964837 ], + [ 8.5810054, 47.5963396 ], + [ 8.5825769, 47.5961396 ], + [ 8.5832933, 47.5971184 ], + [ 8.583739, 47.5982756 ], + [ 8.5843162, 47.5997868 ], + [ 8.5852357, 47.6002559 ], + [ 8.5859095, 47.6008529 ], + [ 8.5868055, 47.6012734 ], + [ 8.5877841, 47.6017425 ], + [ 8.5890722, 47.601599 ], + [ 8.590183, 47.601209 ], + [ 8.5913206, 47.6022964 ], + [ 8.5912036, 47.6028916 ], + [ 8.5917027, 47.603766 ], + [ 8.5920197, 47.6042359 ], + [ 8.5923538, 47.6053543 ], + [ 8.5927412, 47.6061569 ], + [ 8.5938426, 47.6059692 ], + [ 8.5947993, 47.6057873 ], + [ 8.5957278, 47.6056109 ], + [ 8.595951, 47.6058884 ], + [ 8.5962005, 47.6061426 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 120, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "CTR0015", + "country" : "CHE", + "name" : [ + { + "text" : "CTR ZURICH 1", + "lang" : "de-CH" + }, + { + "text" : "CTR ZURICH 1", + "lang" : "fr-CH" + }, + { + "text" : "CTR ZURICH 1", + "lang" : "it-CH" + }, + { + "text" : "CTR ZURICH 1", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only permitted from an altitude of 120 m above ground with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Skyguide Special Flight Office", + "lang" : "de-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "it-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "en-GB" + } + ], + "siteURL" : "https://skyguide.ch/services/special-flights", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5432238, 47.4873465 ], + [ 7.5431331, 47.4873536 ], + [ 7.5430924, 47.4873459 ], + [ 7.5430117, 47.4873616 ], + [ 7.5429537, 47.487363 ], + [ 7.5429061, 47.487376 ], + [ 7.5428657999999995, 47.487369 ], + [ 7.54269, 47.4873279 ], + [ 7.5426126, 47.4872964 ], + [ 7.5424918, 47.4872467 ], + [ 7.5424402, 47.4871945 ], + [ 7.54234, 47.4871751 ], + [ 7.5422282, 47.487199 ], + [ 7.5421927, 47.4872283 ], + [ 7.5420764, 47.4872766 ], + [ 7.5419864, 47.4872904 ], + [ 7.5419259, 47.4872486 ], + [ 7.541807, 47.4872325 ], + [ 7.5417416, 47.4871853 ], + [ 7.5411255, 47.4869993 ], + [ 7.540622, 47.4868287 ], + [ 7.5405722, 47.4868434 ], + [ 7.5416658, 47.4871843 ], + [ 7.5419617, 47.4873119 ], + [ 7.5421519, 47.487296 ], + [ 7.5422337, 47.4872607 ], + [ 7.542476, 47.4872867 ], + [ 7.5426231999999995, 47.4873438 ], + [ 7.5428515, 47.4873933 ], + [ 7.543471, 47.4873549 ], + [ 7.5435238, 47.4873612 ], + [ 7.5435368, 47.4874407 ], + [ 7.5436834, 47.4876245 ], + [ 7.5438026, 47.4877123 ], + [ 7.5439556, 47.4877954 ], + [ 7.5443023, 47.4879833 ], + [ 7.5443413, 47.4880116 ], + [ 7.5447138, 47.4882814 ], + [ 7.54484, 47.4883795 ], + [ 7.5449682, 47.4884185 ], + [ 7.5451221, 47.4884297 ], + [ 7.5452238, 47.4884858 ], + [ 7.5455229, 47.488559 ], + [ 7.5456855, 47.4885347 ], + [ 7.5460301, 47.4885195 ], + [ 7.5460892, 47.4885169 ], + [ 7.5461145, 47.4885801 ], + [ 7.5463632, 47.489019 ], + [ 7.5466182, 47.4894537 ], + [ 7.5466964, 47.4895207 ], + [ 7.5467293, 47.4896211 ], + [ 7.5467335, 47.4898117 ], + [ 7.546873, 47.4899223 ], + [ 7.5470718, 47.4900897 ], + [ 7.5473019, 47.4904866 ], + [ 7.5477637, 47.4907239 ], + [ 7.5485629, 47.4910886 ], + [ 7.548705, 47.4911292 ], + [ 7.548864, 47.4911465 ], + [ 7.5491696, 47.4911491 ], + [ 7.5493368, 47.4911628 ], + [ 7.5494991, 47.491194 ], + [ 7.5499378, 47.4913101 ], + [ 7.5502934, 47.491202 ], + [ 7.5509035, 47.4914022 ], + [ 7.5514095, 47.4915944 ], + [ 7.5516078, 47.4916442 ], + [ 7.5517508, 47.4917915 ], + [ 7.5521233, 47.4918905 ], + [ 7.552255, 47.4919283 ], + [ 7.5523836, 47.4919807 ], + [ 7.5524917, 47.492047 ], + [ 7.5526541, 47.4922332 ], + [ 7.55272, 47.4922281 ], + [ 7.5527044, 47.4921314 ], + [ 7.5526793, 47.4921164 ], + [ 7.5525499, 47.4919747 ], + [ 7.5524465, 47.4918945 ], + [ 7.5522177, 47.4918437 ], + [ 7.5518365, 47.4917294 ], + [ 7.5517521, 47.4916796 ], + [ 7.5516573000000005, 47.4915886 ], + [ 7.5514736, 47.4915414 ], + [ 7.5509409, 47.4913464 ], + [ 7.5502981, 47.4911328 ], + [ 7.5500929, 47.4912057 ], + [ 7.5499727, 47.4912073 ], + [ 7.5497706, 47.4910844 ], + [ 7.5493611, 47.4910546 ], + [ 7.5492324, 47.4909878 ], + [ 7.5488789, 47.4910455 ], + [ 7.5486879, 47.4909867 ], + [ 7.548609, 47.4908925 ], + [ 7.548363, 47.4908638 ], + [ 7.5483028999999995, 47.490836 ], + [ 7.5478852, 47.4906426 ], + [ 7.5474297, 47.490384 ], + [ 7.5473023999999995, 47.4902001 ], + [ 7.5471566, 47.4900482 ], + [ 7.547072, 47.4899784 ], + [ 7.5469403, 47.4898687 ], + [ 7.546829, 47.4897628 ], + [ 7.5468561, 47.4896153 ], + [ 7.5467865, 47.4895341 ], + [ 7.5467735000000005, 47.4895024 ], + [ 7.5467424, 47.4894901 ], + [ 7.5467299, 47.4894922 ], + [ 7.546715, 47.4894948 ], + [ 7.5466668, 47.4894449 ], + [ 7.5466282, 47.4893695 ], + [ 7.5465652, 47.4892614 ], + [ 7.5465535, 47.4892223 ], + [ 7.5465143, 47.48917 ], + [ 7.5464817, 47.4891017 ], + [ 7.5464065, 47.4890377 ], + [ 7.5463284, 47.4888629 ], + [ 7.5462527999999995, 47.4887652 ], + [ 7.5462205, 47.488699 ], + [ 7.5461975, 47.4886323 ], + [ 7.5461506, 47.4885852 ], + [ 7.5461276999999995, 47.4885276 ], + [ 7.5460943, 47.4884966 ], + [ 7.5460261, 47.4884985 ], + [ 7.5459527, 47.4885058 ], + [ 7.5458206, 47.48851 ], + [ 7.5457593, 47.4885205 ], + [ 7.5457097, 47.4885135 ], + [ 7.5456369, 47.4885187 ], + [ 7.5455442, 47.4885407 ], + [ 7.5454557, 47.4885252 ], + [ 7.5453978, 47.4885054 ], + [ 7.5453171, 47.4884848 ], + [ 7.5452653, 47.4884813 ], + [ 7.5452101, 47.4884584 ], + [ 7.5451494, 47.4884096 ], + [ 7.5450561, 47.4884036 ], + [ 7.5450022, 47.4884038 ], + [ 7.5449649999999995, 47.4883936 ], + [ 7.5449131, 47.4883847 ], + [ 7.5448328, 47.488351 ], + [ 7.5448, 47.4883188 ], + [ 7.5447765, 47.4882907 ], + [ 7.5446901, 47.4882289 ], + [ 7.5446574, 47.4882099 ], + [ 7.5446126, 47.4881682 ], + [ 7.5445063999999995, 47.4881037 ], + [ 7.5443803, 47.488008 ], + [ 7.5442978, 47.4879546 ], + [ 7.5441808, 47.4878909 ], + [ 7.5440815, 47.4878346 ], + [ 7.5439722, 47.4877753 ], + [ 7.5438412, 47.4876946 ], + [ 7.5437701, 47.4876513 ], + [ 7.5437069999999995, 47.4876112 ], + [ 7.5436764, 47.4875448 ], + [ 7.5435907, 47.4874282 ], + [ 7.5435603, 47.4873967 ], + [ 7.54355, 47.4873539 ], + [ 7.5434775, 47.4873376 ], + [ 7.5434354, 47.4873306 ], + [ 7.5433912, 47.4873366 ], + [ 7.5432944, 47.4873336 ], + [ 7.5432238, 47.4873465 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns139", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Marbach", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Marbach", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Marbach", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Marbach", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5099716, 47.5048002 ], + [ 7.5105267, 47.5048148 ], + [ 7.5108336, 47.5048068 ], + [ 7.5109438, 47.5048072 ], + [ 7.5110577, 47.5048107 ], + [ 7.5111492, 47.5048033 ], + [ 7.5113328, 47.5047853 ], + [ 7.5115491, 47.5047221 ], + [ 7.5116381, 47.5046843 ], + [ 7.5118331, 47.5046261 ], + [ 7.511925, 47.5045927 ], + [ 7.5120384, 47.5045721 ], + [ 7.5122274, 47.5045301 ], + [ 7.5123932, 47.5045185 ], + [ 7.5124281, 47.5045179 ], + [ 7.5124793, 47.5045209 ], + [ 7.5128257, 47.5045564 ], + [ 7.5128756, 47.5045615 ], + [ 7.5129095, 47.5045638 ], + [ 7.5130959, 47.5045869 ], + [ 7.5132776, 47.5046245 ], + [ 7.5137163000000005, 47.5046739 ], + [ 7.5138332, 47.5046929 ], + [ 7.5139328, 47.5047132 ], + [ 7.5140709999999995, 47.5047534 ], + [ 7.5142826, 47.5048005 ], + [ 7.51436, 47.5048112 ], + [ 7.5144413, 47.5048226 ], + [ 7.5145239, 47.5048204 ], + [ 7.5147891, 47.504822 ], + [ 7.5149311999999995, 47.5048159 ], + [ 7.5149322, 47.5048159 ], + [ 7.5149331, 47.504816 ], + [ 7.5149341, 47.5048161 ], + [ 7.514935, 47.5048162 ], + [ 7.5149359, 47.5048165 ], + [ 7.5149368, 47.5048168 ], + [ 7.5149377, 47.5048171 ], + [ 7.5149384999999995, 47.5048175 ], + [ 7.5149392, 47.5048179 ], + [ 7.5149399, 47.5048184 ], + [ 7.5149405, 47.5048189 ], + [ 7.5149411, 47.5048194 ], + [ 7.5149416, 47.50482 ], + [ 7.514942, 47.5048206 ], + [ 7.5149422999999995, 47.5048212 ], + [ 7.5149425, 47.5048219 ], + [ 7.5149374, 47.5048776 ], + [ 7.5149679, 47.5049605 ], + [ 7.5150237, 47.5050594 ], + [ 7.5150415, 47.5050553 ], + [ 7.5149926, 47.504954 ], + [ 7.5149646, 47.5048761 ], + [ 7.5149692, 47.5048089 ], + [ 7.5149509, 47.5047983 ], + [ 7.514785, 47.5048041 ], + [ 7.5145988, 47.5048034 ], + [ 7.5145425, 47.5048032 ], + [ 7.5144454, 47.5048053 ], + [ 7.5143617, 47.504793 ], + [ 7.5142889, 47.5047827 ], + [ 7.5140815, 47.504737 ], + [ 7.5139426, 47.5046964 ], + [ 7.5138546, 47.5046743 ], + [ 7.5138358, 47.5046705 ], + [ 7.5137219, 47.5046545 ], + [ 7.5132837, 47.5046069 ], + [ 7.5130985, 47.504569 ], + [ 7.5129119, 47.5045459 ], + [ 7.5128795, 47.5045437 ], + [ 7.5128297, 47.5045386 ], + [ 7.5124828, 47.504503 ], + [ 7.5124307, 47.5045001 ], + [ 7.5123915, 47.5045005 ], + [ 7.5122218, 47.5045124 ], + [ 7.5120315, 47.5045566 ], + [ 7.5119161, 47.5045775 ], + [ 7.5118227, 47.5046115 ], + [ 7.5116268, 47.5046699 ], + [ 7.5115379, 47.5047077 ], + [ 7.5113262, 47.5047696 ], + [ 7.5111448, 47.5047874 ], + [ 7.5110568, 47.5047945 ], + [ 7.5109438, 47.504791 ], + [ 7.5108331, 47.5047906 ], + [ 7.5105265, 47.5048013 ], + [ 7.5099746, 47.5047868 ], + [ 7.5099716, 47.5048002 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns134", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Mühleteich", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Mühleteich", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Mühleteich", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Mühleteich", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6654389, 47.4989056 ], + [ 7.6654022, 47.4986685 ], + [ 7.6653143, 47.4981748 ], + [ 7.6652487, 47.4978554 ], + [ 7.6651045, 47.4975459 ], + [ 7.6650396, 47.4974008 ], + [ 7.6650252, 47.4973863 ], + [ 7.6649033, 47.4972751 ], + [ 7.6647528, 47.4971689 ], + [ 7.6645019, 47.4969661 ], + [ 7.6644661, 47.4969516 ], + [ 7.6640863, 47.4966571 ], + [ 7.6636922, 47.4963867 ], + [ 7.6634559, 47.4962516 ], + [ 7.6632701, 47.4961691 ], + [ 7.6631407, 47.4961373 ], + [ 7.6631165, 47.4961316 ], + [ 7.6630035, 47.4961038 ], + [ 7.6628553, 47.4961172 ], + [ 7.6626483, 47.4961515 ], + [ 7.6622985, 47.4962199 ], + [ 7.6620845, 47.4962785 ], + [ 7.6618277, 47.4963806 ], + [ 7.6618278, 47.4963903 ], + [ 7.6616212, 47.4965408 ], + [ 7.6615576, 47.496691 ], + [ 7.661501, 47.4968315 ], + [ 7.6614802, 47.4969768 ], + [ 7.6614739, 47.4971704 ], + [ 7.6615103, 47.4973447 ], + [ 7.6616181999999995, 47.4975284 ], + [ 7.661755, 47.4977654 ], + [ 7.6618703, 47.4980121 ], + [ 7.661986, 47.498341 ], + [ 7.6620443, 47.4986266 ], + [ 7.6620808, 47.498796 ], + [ 7.6620454, 47.4988832 ], + [ 7.6619744, 47.4989898 ], + [ 7.6620653, 47.4990166 ], + [ 7.6621732, 47.4990484 ], + [ 7.6623717, 47.4991498 ], + [ 7.6626866, 47.4993405 ], + [ 7.6629195, 47.499477 ], + [ 7.6631824, 47.499688 ], + [ 7.6633852000000005, 47.4998053 ], + [ 7.6642372, 47.5002297 ], + [ 7.6648027, 47.50049 ], + [ 7.6649528, 47.5005139 ], + [ 7.6650814, 47.500504 ], + [ 7.665174, 47.5004408 ], + [ 7.6652235, 47.5003342 ], + [ 7.6653142, 47.4998257 ], + [ 7.6654326, 47.4991041 ], + [ 7.6654389, 47.4989056 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr008", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Stierewald", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Stierewald", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Stierewald", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Stierewald", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.874399, 46.166768 ], + [ 8.8857343, 46.166841 ], + [ 8.8856445, 46.1659919 ], + [ 8.8856985, 46.1650024 ], + [ 8.8857473, 46.1643548 ], + [ 8.8880379, 46.1597296 ], + [ 8.8851921, 46.1591975 ], + [ 8.8827465, 46.158716 ], + [ 8.8802042, 46.1583472 ], + [ 8.8775025, 46.1580209 ], + [ 8.874584, 46.1577675 ], + [ 8.8727666, 46.1576376 ], + [ 8.871412, 46.1614661 ], + [ 8.8720901, 46.1615502 ], + [ 8.8719773, 46.1638585 ], + [ 8.8719759, 46.1649364 ], + [ 8.8718865, 46.166458 ], + [ 8.874399, 46.166768 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZL002", + "country" : "CHE", + "name" : [ + { + "text" : "LSZL Locarno (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSZL Locarno (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSZL Locarno (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSZL Locarno (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Special Flight Office (SFO)", + "lang" : "de-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "fr-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "it-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "en-GB" + } + ], + "siteURL" : "https://skyguide.ch/services/special-flights", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.0636422, 46.9874585 ], + [ 7.0636378, 46.9873172 ], + [ 7.0636226, 46.9871763 ], + [ 7.0635966, 46.9870362 ], + [ 7.06356, 46.9868971 ], + [ 7.0635127, 46.9867596 ], + [ 7.063455, 46.9866239 ], + [ 7.0633871, 46.9864905 ], + [ 7.063309, 46.9863598 ], + [ 7.063221, 46.9862319 ], + [ 7.0631233, 46.9861075 ], + [ 7.0630163, 46.9859866 ], + [ 7.0629002, 46.9858698 ], + [ 7.0627753, 46.9857573 ], + [ 7.062642, 46.9856495 ], + [ 7.0625006, 46.9855465 ], + [ 7.0623515, 46.9854488 ], + [ 7.0621952, 46.9853565 ], + [ 7.062032, 46.98527 ], + [ 7.0618624, 46.9851894 ], + [ 7.0616869, 46.985115 ], + [ 7.061506, 46.985047 ], + [ 7.0613201, 46.9849855 ], + [ 7.0611297, 46.9849308 ], + [ 7.0609354, 46.984882999999996 ], + [ 7.0607378, 46.9848422 ], + [ 7.0605373, 46.9848086 ], + [ 7.0603344, 46.9847822 ], + [ 7.0601299, 46.9847631 ], + [ 7.0599242, 46.9847513 ], + [ 7.0597178, 46.9847469 ], + [ 7.0595114, 46.9847499 ], + [ 7.0593055, 46.9847603 ], + [ 7.0591007, 46.9847781 ], + [ 7.0588976, 46.9848032 ], + [ 7.0586966, 46.9848355 ], + [ 7.0584983, 46.984875 ], + [ 7.0583034, 46.9849215 ], + [ 7.0581123, 46.9849749 ], + [ 7.0579255, 46.9850351 ], + [ 7.0577436, 46.9851019 ], + [ 7.0575671, 46.9851751 ], + [ 7.0573964, 46.9852546 ], + [ 7.057232, 46.9853401 ], + [ 7.0570743, 46.9854313 ], + [ 7.0569239, 46.985528 ], + [ 7.056781, 46.98563 ], + [ 7.0566462, 46.985737 ], + [ 7.0565197, 46.9858487 ], + [ 7.0564019, 46.9859647 ], + [ 7.0562932, 46.9860848 ], + [ 7.0561938, 46.9862087 ], + [ 7.056104, 46.9863359 ], + [ 7.0560241, 46.9864661 ], + [ 7.0559542, 46.9865991 ], + [ 7.0558946, 46.9867344 ], + [ 7.0558455, 46.9868716 ], + [ 7.0558068, 46.9870104 ], + [ 7.0557789, 46.9871503 ], + [ 7.0557617, 46.9872911 ], + [ 7.0557553, 46.9874323 ], + [ 7.0557597, 46.9875736 ], + [ 7.0557749, 46.9877145 ], + [ 7.0558008, 46.9878547 ], + [ 7.0558374, 46.9879937 ], + [ 7.0558846, 46.9881312 ], + [ 7.0559423, 46.9882669 ], + [ 7.0560103, 46.9884003 ], + [ 7.0560884, 46.9885311 ], + [ 7.0561763, 46.9886589 ], + [ 7.056274, 46.9887834 ], + [ 7.056381, 46.9889042 ], + [ 7.0564971, 46.989021 ], + [ 7.056622, 46.9891335 ], + [ 7.0567553, 46.9892414 ], + [ 7.0568967, 46.9893444 ], + [ 7.0570458, 46.9894421 ], + [ 7.0572021, 46.9895344 ], + [ 7.0573653, 46.989621 ], + [ 7.0575349, 46.9897015 ], + [ 7.0577104, 46.9897759 ], + [ 7.0578914, 46.989844 ], + [ 7.0580773, 46.9899054 ], + [ 7.0582676, 46.9899601 ], + [ 7.0584619, 46.9900079 ], + [ 7.0586596, 46.9900487 ], + [ 7.0588601, 46.9900823 ], + [ 7.059063, 46.9901088 ], + [ 7.0592675, 46.9901279 ], + [ 7.0594733, 46.9901397 ], + [ 7.0596797, 46.990144 ], + [ 7.0598861, 46.990141 ], + [ 7.060092, 46.9901306 ], + [ 7.0602968, 46.9901129 ], + [ 7.0605, 46.9900878 ], + [ 7.060701, 46.9900555 ], + [ 7.0608993, 46.990016 ], + [ 7.0610942, 46.9899695 ], + [ 7.0612853, 46.989916 ], + [ 7.0614721, 46.9898558 ], + [ 7.061654, 46.989789 ], + [ 7.0618306, 46.9897158 ], + [ 7.0620013, 46.9896363 ], + [ 7.0621657, 46.9895508 ], + [ 7.0623234, 46.9894596 ], + [ 7.0624738, 46.9893629 ], + [ 7.0626166, 46.9892608 ], + [ 7.0627515, 46.9891539 ], + [ 7.0628779, 46.9890422 ], + [ 7.0629957, 46.9889261 ], + [ 7.0631044, 46.988806 ], + [ 7.0632038, 46.9886822 ], + [ 7.0632936, 46.988555 ], + [ 7.0633735, 46.9884247 ], + [ 7.0634434, 46.9882917 ], + [ 7.0635029, 46.9881565 ], + [ 7.0635521, 46.9880193 ], + [ 7.0635907, 46.9878805 ], + [ 7.0636186, 46.9877405 ], + [ 7.0636358, 46.9875997 ], + [ 7.0636422, 46.9874585 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "WIT0001", + "country" : "CHE", + "name" : [ + { + "text" : "JVA Witzwil", + "lang" : "de-CH" + }, + { + "text" : "JVA Witzwil", + "lang" : "fr-CH" + }, + { + "text" : "JVA Witzwil", + "lang" : "it-CH" + }, + { + "text" : "JVA Witzwil", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "JVA Witzwil", + "lang" : "de-CH" + }, + { + "text" : "JVA Witzwil", + "lang" : "fr-CH" + }, + { + "text" : "JVA Witzwil", + "lang" : "it-CH" + }, + { + "text" : "JVA Witzwil", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Leitung Infrastruktur", + "lang" : "de-CH" + }, + { + "text" : "Leitung Infrastruktur", + "lang" : "fr-CH" + }, + { + "text" : "Leitung Infrastruktur", + "lang" : "it-CH" + }, + { + "text" : "Leitung Infrastruktur", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Ralph Zurbuchen", + "lang" : "de-CH" + }, + { + "text" : "Ralph Zurbuchen", + "lang" : "fr-CH" + }, + { + "text" : "Ralph Zurbuchen", + "lang" : "it-CH" + }, + { + "text" : "Ralph Zurbuchen", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ajv.sid.be.ch/de/start/themen/erwachsenen--und-jugendvollzug/justizvollzugsanstalt-witzwil.html", + "email" : "jva.witzwil@be.ch", + "phone" : "0041316356511", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5409546, 47.543334 ], + [ 7.5408552, 47.5434121 ], + [ 7.5423064, 47.5440835 ], + [ 7.5423813, 47.5440025 ], + [ 7.5409546, 47.543334 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns264", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Allschwilerwald", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Allschwilerwald", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Allschwilerwald", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Allschwilerwald", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.3470549, 47.4354782 ], + [ 7.3471778, 47.4354568 ], + [ 7.3473362, 47.4354586 ], + [ 7.3475734, 47.4354406 ], + [ 7.3477834, 47.435373 ], + [ 7.3479453, 47.4353377 ], + [ 7.3480123, 47.4353262 ], + [ 7.3481725, 47.4353092 ], + [ 7.3482775, 47.4353167 ], + [ 7.3485425, 47.4353499 ], + [ 7.3488075, 47.4353959 ], + [ 7.3490248, 47.4354274 ], + [ 7.3491227, 47.4354278 ], + [ 7.3492196, 47.4354113 ], + [ 7.3493002, 47.4353792 ], + [ 7.3494351, 47.4353213 ], + [ 7.349611, 47.4352851 ], + [ 7.3497682, 47.4352761 ], + [ 7.3498741, 47.4352559 ], + [ 7.3498727, 47.4352522 ], + [ 7.349813, 47.4350875 ], + [ 7.3500438, 47.4349507 ], + [ 7.3504101, 47.4347029 ], + [ 7.3505318, 47.4345661 ], + [ 7.350527, 47.4342941 ], + [ 7.3504826, 47.4341499 ], + [ 7.3504648, 47.4341121 ], + [ 7.3504639, 47.434063 ], + [ 7.3504227, 47.4340255 ], + [ 7.350379, 47.4339189 ], + [ 7.3503413, 47.4338615 ], + [ 7.3503091, 47.4337995 ], + [ 7.3502971, 47.4337414 ], + [ 7.3502955, 47.4337333 ], + [ 7.3502071, 47.4334786 ], + [ 7.35015, 47.4333457 ], + [ 7.3500554, 47.4331432 ], + [ 7.3499613, 47.4330479 ], + [ 7.3499495, 47.432899 ], + [ 7.3499404, 47.432807 ], + [ 7.3498039, 47.4325976 ], + [ 7.3498095, 47.4325057 ], + [ 7.3498096, 47.4325036 ], + [ 7.3498071, 47.4325002 ], + [ 7.3497956, 47.4324851 ], + [ 7.3497240999999995, 47.4323909 ], + [ 7.3496251, 47.4322805 ], + [ 7.349535, 47.4321598 ], + [ 7.3494877, 47.432066 ], + [ 7.3494216, 47.4320101 ], + [ 7.3493625, 47.4319331 ], + [ 7.3493458, 47.4318511 ], + [ 7.3493688, 47.4318503 ], + [ 7.3493933, 47.4319247 ], + [ 7.3494477, 47.4319991 ], + [ 7.3495118999999995, 47.4320548 ], + [ 7.3495655, 47.4321525 ], + [ 7.3496528, 47.432272 ], + [ 7.3497424, 47.4323818 ], + [ 7.3498418, 47.4325048 ], + [ 7.3498402, 47.4325746 ], + [ 7.3498399, 47.4325849 ], + [ 7.3498567, 47.4326118 ], + [ 7.34998, 47.4328091 ], + [ 7.3499788, 47.4328862 ], + [ 7.3499786, 47.432900599999996 ], + [ 7.3499829, 47.4330405 ], + [ 7.3500949, 47.4331489 ], + [ 7.3501750999999995, 47.4333413 ], + [ 7.3502534, 47.4334742 ], + [ 7.3503346, 47.4337158 ], + [ 7.3503357, 47.4337232 ], + [ 7.3503691, 47.4337075 ], + [ 7.350481, 47.4336996 ], + [ 7.3506314, 47.4337939 ], + [ 7.3507521, 47.4338688 ], + [ 7.3508151999999995, 47.4339118 ], + [ 7.350952, 47.4339873 ], + [ 7.3509723, 47.4340014 ], + [ 7.351012, 47.4340267 ], + [ 7.35142, 47.4341649 ], + [ 7.3516296, 47.4341758 ], + [ 7.3516186, 47.4342887 ], + [ 7.3513825, 47.4343941 ], + [ 7.3514385, 47.4344849 ], + [ 7.351734, 47.4343704 ], + [ 7.3519891, 47.4342638 ], + [ 7.3523002, 47.4341596 ], + [ 7.3527008, 47.4341404 ], + [ 7.3531006, 47.4340822 ], + [ 7.3533981, 47.434027 ], + [ 7.3537928, 47.4340511 ], + [ 7.3541304, 47.4340359 ], + [ 7.3543581, 47.4340121 ], + [ 7.3545955, 47.433956 ], + [ 7.3547953, 47.4339085 ], + [ 7.3549858, 47.4339037 ], + [ 7.3551233, 47.4339033 ], + [ 7.3551874999999995, 47.4338356 ], + [ 7.3553128, 47.4336412 ], + [ 7.3553183, 47.4335977 ], + [ 7.3552917, 47.4335462 ], + [ 7.3552987, 47.4335074 ], + [ 7.3552911, 47.4333794 ], + [ 7.3551635, 47.4334197 ], + [ 7.355173, 47.4336495 ], + [ 7.3550404, 47.4336291 ], + [ 7.3550073, 47.4335399 ], + [ 7.3549195, 47.433428 ], + [ 7.3548478, 47.4332517 ], + [ 7.3550204, 47.4332136 ], + [ 7.3549882, 47.432964 ], + [ 7.3548705, 47.4327719 ], + [ 7.3547133, 47.4325265 ], + [ 7.3546192999999995, 47.4325074 ], + [ 7.3545438, 47.4322383 ], + [ 7.3544778, 47.4320008 ], + [ 7.3544614, 47.4318453 ], + [ 7.3544911, 47.4317094 ], + [ 7.3544353000000005, 47.431573 ], + [ 7.3543434, 47.4313806 ], + [ 7.3542624, 47.4311902 ], + [ 7.3540981, 47.4312395 ], + [ 7.354057, 47.4312518 ], + [ 7.3536788, 47.4313535 ], + [ 7.3533153, 47.4314513 ], + [ 7.3533005, 47.4314553 ], + [ 7.353312, 47.4315586 ], + [ 7.3532553, 47.4316026 ], + [ 7.353242, 47.4316896 ], + [ 7.3532993, 47.4318164 ], + [ 7.3532846, 47.4319132 ], + [ 7.3532639, 47.4320015 ], + [ 7.3531680999999995, 47.4323236 ], + [ 7.3527929, 47.4322731 ], + [ 7.3526254, 47.4322794 ], + [ 7.3526143, 47.432195899999996 ], + [ 7.3525684, 47.4321474 ], + [ 7.3524993, 47.432118 ], + [ 7.3524038, 47.4320933 ], + [ 7.3523322, 47.4320616 ], + [ 7.3522179, 47.4320614 ], + [ 7.3520219, 47.4320393 ], + [ 7.3519641, 47.4320275 ], + [ 7.3519239, 47.4320297 ], + [ 7.351805, 47.4319908 ], + [ 7.3517699, 47.4319782 ], + [ 7.3515841, 47.432201 ], + [ 7.3515654, 47.4322258 ], + [ 7.3514953, 47.4323395 ], + [ 7.3514086, 47.4324285 ], + [ 7.3513436, 47.432427 ], + [ 7.3511733, 47.4323568 ], + [ 7.3508752, 47.432198 ], + [ 7.3505248, 47.4320113 ], + [ 7.350429, 47.4319855 ], + [ 7.3503254, 47.4319575 ], + [ 7.3502931, 47.4320067 ], + [ 7.3502434, 47.4320328 ], + [ 7.3502137, 47.4320612 ], + [ 7.3501578, 47.4321147 ], + [ 7.3500869, 47.4321027 ], + [ 7.3500282, 47.432024 ], + [ 7.3499125, 47.4319436 ], + [ 7.349881, 47.4319128 ], + [ 7.3497684, 47.4318537 ], + [ 7.3497353, 47.4318078 ], + [ 7.3496542, 47.4317961 ], + [ 7.3494707, 47.4318349 ], + [ 7.3494053, 47.4317774 ], + [ 7.3493753, 47.4317176 ], + [ 7.3493235, 47.4316842 ], + [ 7.3492866, 47.4316941 ], + [ 7.3492607, 47.431775 ], + [ 7.3492589, 47.4317851 ], + [ 7.3492498, 47.431835 ], + [ 7.3492557, 47.431963 ], + [ 7.3492684, 47.432009 ], + [ 7.3493056, 47.4321429 ], + [ 7.3493271, 47.4322205 ], + [ 7.3493553, 47.4322796 ], + [ 7.3494142, 47.4324027 ], + [ 7.3494802, 47.4325959 ], + [ 7.3495167, 47.4327026 ], + [ 7.3495557, 47.4328165 ], + [ 7.3495674, 47.4328559 ], + [ 7.3496155, 47.4330179 ], + [ 7.349581, 47.4332713 ], + [ 7.349535, 47.4334533 ], + [ 7.3494585, 47.4335473 ], + [ 7.3494157, 47.4336394 ], + [ 7.3493824, 47.4337448 ], + [ 7.349416, 47.4339199 ], + [ 7.349469, 47.433981 ], + [ 7.34967, 47.4342385 ], + [ 7.349661, 47.4342651 ], + [ 7.3495478, 47.4343113 ], + [ 7.349543, 47.4343523 ], + [ 7.3495761, 47.4343864 ], + [ 7.3496459, 47.4344289 ], + [ 7.349648, 47.4344757 ], + [ 7.3495951, 47.4345514 ], + [ 7.3496016, 47.4345876 ], + [ 7.3496886, 47.4346072 ], + [ 7.3496667, 47.4347081 ], + [ 7.3493969, 47.4347751 ], + [ 7.3486524, 47.4347974 ], + [ 7.3484308, 47.4347863 ], + [ 7.3481449, 47.4347804 ], + [ 7.3475965, 47.4348098 ], + [ 7.3461179, 47.4348393 ], + [ 7.3460422, 47.434984299999996 ], + [ 7.3460003, 47.4353048 ], + [ 7.3459559, 47.4353792 ], + [ 7.3459786, 47.4354677 ], + [ 7.3460178, 47.4354776 ], + [ 7.3461277, 47.4354412 ], + [ 7.3462553, 47.4354232 ], + [ 7.3464012, 47.4354365 ], + [ 7.3465311, 47.4354165 ], + [ 7.3466533, 47.435415 ], + [ 7.3467611, 47.4354446 ], + [ 7.3468525, 47.4354511 ], + [ 7.3469067, 47.4354466 ], + [ 7.3469546, 47.4354595 ], + [ 7.3469571, 47.4354908 ], + [ 7.3469788, 47.4355159 ], + [ 7.3469928, 47.4355055 ], + [ 7.3470178, 47.4354945 ], + [ 7.3470549, 47.4354782 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr116", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Stägmatt", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Stägmatt", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Stägmatt", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Stägmatt", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.6158779, 46.9183007 ], + [ 6.6175496, 46.9187868 ], + [ 6.6175519, 46.9187853 ], + [ 6.6179431, 46.9188985 ], + [ 6.6179337, 46.9189974 ], + [ 6.6185523, 46.9194093 ], + [ 6.6188310999999995, 46.9187771 ], + [ 6.6182121, 46.9183396 ], + [ 6.6182142, 46.9183382 ], + [ 6.6124965, 46.9142997 ], + [ 6.6119315, 46.9146716 ], + [ 6.6152101, 46.9169925 ], + [ 6.6161424, 46.9176612 ], + [ 6.615987, 46.9180361 ], + [ 6.6158779, 46.9183007 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSTO002", + "country" : "CHE", + "name" : [ + { + "text" : "LSTO Môtiers (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSTO Môtiers (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSTO Môtiers (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSTO Môtiers (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Aéro-Club du Val-de-Travers", + "lang" : "de-CH" + }, + { + "text" : "Aéro-Club du Val-de-Travers", + "lang" : "fr-CH" + }, + { + "text" : "Aéro-Club du Val-de-Travers", + "lang" : "it-CH" + }, + { + "text" : "Aéro-Club du Val-de-Travers", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Chef d'aérodrome", + "lang" : "de-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "fr-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "it-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Alexandre Iseppi", + "lang" : "de-CH" + }, + { + "text" : "Alexandre Iseppi", + "lang" : "fr-CH" + }, + { + "text" : "Alexandre Iseppi", + "lang" : "it-CH" + }, + { + "text" : "Alexandre Iseppi", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.acvt.ch/dronesmodeles/", + "email" : "iseppi@acvt.ch", + "phone" : "0041328631555", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P02DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7356278, 47.5014806 ], + [ 7.7355776, 47.5012511 ], + [ 7.735575, 47.5012314 ], + [ 7.7355733, 47.5012116 ], + [ 7.7355725, 47.5011918 ], + [ 7.7355726, 47.501172 ], + [ 7.7355737, 47.5011522 ], + [ 7.7355756, 47.5011325 ], + [ 7.7355784, 47.5011127 ], + [ 7.7355821, 47.5010931 ], + [ 7.7355867, 47.5010735 ], + [ 7.7355922, 47.5010541 ], + [ 7.7357709, 47.5005007 ], + [ 7.7357969, 47.5004197 ], + [ 7.7358025999999995, 47.5004019 ], + [ 7.7358369, 47.5003614 ], + [ 7.7359074, 47.5002958 ], + [ 7.7359949, 47.5002587 ], + [ 7.7360813, 47.5002444 ], + [ 7.7361797, 47.5002372 ], + [ 7.7362195, 47.5002407 ], + [ 7.7363177, 47.5002494 ], + [ 7.7364578999999996, 47.5002617 ], + [ 7.7365695, 47.5002741 ], + [ 7.7366874, 47.5002897 ], + [ 7.736791, 47.5003068 ], + [ 7.7369064, 47.5003372 ], + [ 7.7370234, 47.5003685 ], + [ 7.7371423, 47.500401 ], + [ 7.7371958, 47.5004146 ], + [ 7.7381765, 47.4995294 ], + [ 7.7381958, 47.4995403 ], + [ 7.7382155, 47.4995507 ], + [ 7.7382358, 47.4995607 ], + [ 7.7382565, 47.4995703 ], + [ 7.7382777, 47.4995794 ], + [ 7.7382992999999995, 47.4995881 ], + [ 7.7383213, 47.4995962 ], + [ 7.7383437, 47.4996039 ], + [ 7.7383844, 47.4996185 ], + [ 7.7384255, 47.4996326 ], + [ 7.7384669, 47.4996463 ], + [ 7.7385087, 47.4996595 ], + [ 7.7385507, 47.4996722 ], + [ 7.7385931, 47.4996844 ], + [ 7.7386357, 47.4996962 ], + [ 7.7386786, 47.4997075 ], + [ 7.7387218, 47.4997184 ], + [ 7.7390031, 47.4997866 ], + [ 7.7390204, 47.4997912 ], + [ 7.7390374, 47.4997963 ], + [ 7.739054, 47.4998019 ], + [ 7.7390702000000005, 47.499808 ], + [ 7.7390859, 47.4998147 ], + [ 7.7391011, 47.4998219 ], + [ 7.7391158, 47.4998295 ], + [ 7.73913, 47.4998377 ], + [ 7.7391435, 47.4998462 ], + [ 7.7391565, 47.4998552 ], + [ 7.7391688, 47.4998646 ], + [ 7.7391804, 47.4998744 ], + [ 7.7391913, 47.4998846 ], + [ 7.7392015, 47.4998951 ], + [ 7.7392109, 47.4999059 ], + [ 7.7392196, 47.499917 ], + [ 7.7393003, 47.5000161 ], + [ 7.7393086, 47.5000257 ], + [ 7.7393168, 47.5000354 ], + [ 7.7393249, 47.500045 ], + [ 7.739333, 47.5000547 ], + [ 7.7393442, 47.5000674 ], + [ 7.7393562, 47.5000798 ], + [ 7.7393689, 47.5000919 ], + [ 7.7393824, 47.5001035 ], + [ 7.7393966, 47.5001148 ], + [ 7.7394115, 47.5001257 ], + [ 7.7394271, 47.5001361 ], + [ 7.7394433, 47.500146 ], + [ 7.73946, 47.5001555 ], + [ 7.7394774, 47.5001645 ], + [ 7.7394953, 47.500173 ], + [ 7.7395138, 47.500181 ], + [ 7.7395327, 47.5001885 ], + [ 7.739552, 47.5001954 ], + [ 7.7395718, 47.5002017 ], + [ 7.7395919, 47.5002075 ], + [ 7.7397221, 47.5002476 ], + [ 7.7397563, 47.5002567 ], + [ 7.7397908, 47.5002653 ], + [ 7.7398255, 47.5002733 ], + [ 7.7398605, 47.5002809 ], + [ 7.7398957, 47.500288 ], + [ 7.7399311, 47.5002945 ], + [ 7.7399667, 47.5003005 ], + [ 7.7400025, 47.5003061 ], + [ 7.7400385, 47.5003111 ], + [ 7.7404376, 47.5003542 ], + [ 7.7408198, 47.5003956 ], + [ 7.740884, 47.5004029 ], + [ 7.7409482, 47.5004102 ], + [ 7.7410125, 47.5004173 ], + [ 7.7410768, 47.5004243 ], + [ 7.7411282, 47.5004293 ], + [ 7.7411798, 47.5004339 ], + [ 7.7412314, 47.500438 ], + [ 7.7412831, 47.5004416 ], + [ 7.7413348, 47.5004447 ], + [ 7.7413866, 47.5004473 ], + [ 7.7414385, 47.5004494 ], + [ 7.7414818, 47.5004495 ], + [ 7.741525, 47.5004491 ], + [ 7.7415682, 47.5004482 ], + [ 7.7416114, 47.5004468 ], + [ 7.7416546, 47.500445 ], + [ 7.7416977, 47.5004427 ], + [ 7.7417407, 47.5004399 ], + [ 7.7422929, 47.5004002 ], + [ 7.7425315, 47.5003834 ], + [ 7.7426409, 47.5003765 ], + [ 7.7426446, 47.5003733 ], + [ 7.7427965, 47.5003665 ], + [ 7.742875, 47.5003615 ], + [ 7.7429534, 47.5003565 ], + [ 7.7430319, 47.5003515 ], + [ 7.743059, 47.5003495 ], + [ 7.7430861, 47.500347 ], + [ 7.7431131, 47.500344 ], + [ 7.7431399, 47.5003405 ], + [ 7.7431667, 47.5003366 ], + [ 7.7431932, 47.5003321 ], + [ 7.7432171, 47.5003276 ], + [ 7.7432408, 47.5003224 ], + [ 7.7432642, 47.5003167 ], + [ 7.7432873, 47.5003104 ], + [ 7.74331, 47.5003035 ], + [ 7.7433323, 47.500296 ], + [ 7.7433542, 47.500288 ], + [ 7.7433756, 47.5002794 ], + [ 7.7433966, 47.5002704 ], + [ 7.7434171, 47.5002608 ], + [ 7.743437, 47.5002507 ], + [ 7.7434765, 47.5002295 ], + [ 7.7435157, 47.5002081 ], + [ 7.7435544, 47.5001863 ], + [ 7.7435928, 47.5001642 ], + [ 7.7436336, 47.5001407 ], + [ 7.7436748, 47.5001175 ], + [ 7.7437165, 47.5000947 ], + [ 7.7437586, 47.5000723 ], + [ 7.7438011, 47.5000502 ], + [ 7.743844, 47.5000284 ], + [ 7.7439518, 47.4999852 ], + [ 7.7442323, 47.4998982 ], + [ 7.7442795, 47.4998841 ], + [ 7.7443271, 47.4998705 ], + [ 7.7443749, 47.4998574 ], + [ 7.7444231, 47.4998449 ], + [ 7.7444714999999995, 47.4998328 ], + [ 7.7445202, 47.4998213 ], + [ 7.7445692, 47.4998103 ], + [ 7.7445878, 47.4998075 ], + [ 7.7446066, 47.4998051 ], + [ 7.7446254, 47.4998031 ], + [ 7.7446444, 47.4998016 ], + [ 7.7446634, 47.4998005 ], + [ 7.7446824, 47.4997999 ], + [ 7.7447191, 47.4997712 ], + [ 7.744763, 47.4997647 ], + [ 7.7446117, 47.4995991 ], + [ 7.7445147, 47.4994789 ], + [ 7.7445083, 47.4994701 ], + [ 7.7444892, 47.4994434 ], + [ 7.7444389000000005, 47.4993828 ], + [ 7.7443907, 47.4993166 ], + [ 7.7443258, 47.4992378 ], + [ 7.7442823, 47.499178 ], + [ 7.7442585, 47.4991368 ], + [ 7.7442543, 47.4990992 ], + [ 7.7442434, 47.499016 ], + [ 7.7442367, 47.4989539 ], + [ 7.7442142, 47.4989043 ], + [ 7.7441772, 47.4988639 ], + [ 7.7441638, 47.4977582 ], + [ 7.7436899, 47.4977633 ], + [ 7.7432297, 47.4979553 ], + [ 7.7427531, 47.4981509 ], + [ 7.742687, 47.4981848 ], + [ 7.7426293, 47.4982144 ], + [ 7.7420279, 47.4985227 ], + [ 7.7414097, 47.4988673 ], + [ 7.7409994, 47.4990549 ], + [ 7.7405193, 47.4991709 ], + [ 7.7397762, 47.4990364 ], + [ 7.7389642, 47.4987225 ], + [ 7.7379669, 47.4982831 ], + [ 7.7379024, 47.498318 ], + [ 7.7377958, 47.498361 ], + [ 7.73771, 47.4983761 ], + [ 7.7376211999999995, 47.4983681 ], + [ 7.7375419, 47.4983428 ], + [ 7.7372851, 47.4982058 ], + [ 7.7372761, 47.4981973 ], + [ 7.7371177, 47.498298 ], + [ 7.7369647, 47.4984245 ], + [ 7.7368095, 47.4985929 ], + [ 7.7365826, 47.4987479 ], + [ 7.7359802, 47.4988684 ], + [ 7.7359858, 47.4992395 ], + [ 7.7359862, 47.499264 ], + [ 7.7359867, 47.4992951 ], + [ 7.7359868, 47.499301 ], + [ 7.7359889, 47.4993933 ], + [ 7.7356958, 47.4996383 ], + [ 7.7355624, 47.4998491 ], + [ 7.735465, 47.5001588 ], + [ 7.7355487, 47.5005553 ], + [ 7.7354906, 47.5006933 ], + [ 7.7354115, 47.5008619 ], + [ 7.735227, 47.5010134 ], + [ 7.7351987, 47.5010739 ], + [ 7.7352086, 47.5010807 ], + [ 7.7352389, 47.5011042 ], + [ 7.7352685, 47.5011281 ], + [ 7.7352973, 47.5011524 ], + [ 7.7353254, 47.5011771 ], + [ 7.7353527, 47.5012022 ], + [ 7.7353793, 47.5012277 ], + [ 7.735405, 47.5012536 ], + [ 7.73543, 47.5012798 ], + [ 7.7354541, 47.5013064 ], + [ 7.7354775, 47.5013333 ], + [ 7.7355144, 47.5013704 ], + [ 7.7355518, 47.5014073 ], + [ 7.7355896, 47.5014441 ], + [ 7.7356278, 47.5014806 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns027", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Hümpeli", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Hümpeli", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Hümpeli", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Hümpeli", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7666374, 47.4486249 ], + [ 7.7666509, 47.4486236 ], + [ 7.7666645, 47.4486229 ], + [ 7.7666781, 47.4486228 ], + [ 7.7666917, 47.4486233 ], + [ 7.7667053, 47.4486244 ], + [ 7.7667187, 47.4486261 ], + [ 7.7667319, 47.4486284 ], + [ 7.7667449, 47.4486312 ], + [ 7.7667575, 47.4486346 ], + [ 7.7667699, 47.4486385 ], + [ 7.7667818, 47.4486429 ], + [ 7.7667933, 47.4486479 ], + [ 7.7668043, 47.4486534 ], + [ 7.7668148, 47.4486593 ], + [ 7.7668246, 47.4486657 ], + [ 7.767016, 47.4487935 ], + [ 7.7671776999999995, 47.4489293 ], + [ 7.767254, 47.4490046 ], + [ 7.7672156999999995, 47.4490224 ], + [ 7.7676169, 47.4494185 ], + [ 7.7678281, 47.4492758 ], + [ 7.7683599, 47.4494856 ], + [ 7.7690145, 47.4495284 ], + [ 7.7692542, 47.4494943 ], + [ 7.7692795, 47.4492764 ], + [ 7.7691169, 47.4493333 ], + [ 7.7690028, 47.4492529 ], + [ 7.7686081, 47.4491872 ], + [ 7.7685566999999995, 47.448934 ], + [ 7.768439, 47.4488966 ], + [ 7.7682907, 47.4487822 ], + [ 7.7679962, 47.448598 ], + [ 7.7678721, 47.4485096 ], + [ 7.7673938, 47.4480838 ], + [ 7.7672887, 47.447993 ], + [ 7.7671363, 47.4479191 ], + [ 7.7671107, 47.4479071 ], + [ 7.7668874, 47.4478415 ], + [ 7.7668777, 47.4481125 ], + [ 7.7665992, 47.448185 ], + [ 7.7667293, 47.4485614 ], + [ 7.7666374, 47.4486249 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns303", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Bodenrüti", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Bodenrüti", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Bodenrüti", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Bodenrüti", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.6783003, 46.8127191 ], + [ 8.6404521, 46.8019678 ], + [ 8.621592, 46.826095 ], + [ 8.6074946, 46.8650142 ], + [ 8.6304739, 46.8780017 ], + [ 8.6612368, 46.8749782 ], + [ 8.655054, 46.8394184 ], + [ 8.6783003, 46.8127191 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSXE001", + "country" : "CHE", + "name" : [ + { + "text" : "LSXE Erstfeld", + "lang" : "de-CH" + }, + { + "text" : "LSXE Erstfeld", + "lang" : "fr-CH" + }, + { + "text" : "LSXE Erstfeld", + "lang" : "it-CH" + }, + { + "text" : "LSXE Erstfeld", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swiss Helicopter AG", + "lang" : "de-CH" + }, + { + "text" : "Swiss Helicopter AG", + "lang" : "fr-CH" + }, + { + "text" : "Swiss Helicopter AG", + "lang" : "it-CH" + }, + { + "text" : "Swiss Helicopter AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Basis Erstfeld", + "lang" : "de-CH" + }, + { + "text" : "Basis Erstfeld", + "lang" : "fr-CH" + }, + { + "text" : "Basis Erstfeld", + "lang" : "it-CH" + }, + { + "text" : "Basis Erstfeld", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Markus Lerch", + "lang" : "de-CH" + }, + { + "text" : "Markus Lerch", + "lang" : "fr-CH" + }, + { + "text" : "Markus Lerch", + "lang" : "it-CH" + }, + { + "text" : "Markus Lerch", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swisshelicopter.ch/en/about-us/helicopter-bases/erstfeld", + "email" : "markus.lerch@swisshelicopter.ch", + "phone" : "0041418820050", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P02DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.1944183, 46.9741314 ], + [ 7.1944135, 46.9739901 ], + [ 7.194398, 46.9738493 ], + [ 7.1943717, 46.9737091 ], + [ 7.1943347, 46.9735701 ], + [ 7.1942871, 46.9734327 ], + [ 7.1942291, 46.973297099999996 ], + [ 7.1941608, 46.9731638 ], + [ 7.1940825, 46.9730331 ], + [ 7.1939942, 46.9729054 ], + [ 7.1938963, 46.972781 ], + [ 7.193789, 46.9726603 ], + [ 7.1936726, 46.9725436 ], + [ 7.1935475, 46.9724313 ], + [ 7.1934139, 46.9723235 ], + [ 7.1932723, 46.9722208 ], + [ 7.193123, 46.9721232 ], + [ 7.1929665, 46.9720311 ], + [ 7.1928032, 46.9719447 ], + [ 7.1926334, 46.9718644 ], + [ 7.1924578, 46.9717901 ], + [ 7.1922767, 46.9717223 ], + [ 7.1920907, 46.9716611 ], + [ 7.1919003, 46.9716066 ], + [ 7.1917059, 46.9715591 ], + [ 7.1915082, 46.9715185 ], + [ 7.1913077, 46.9714851 ], + [ 7.1911048, 46.9714589 ], + [ 7.1909003, 46.97144 ], + [ 7.1906946, 46.9714285 ], + [ 7.1904883, 46.9714243 ], + [ 7.1902819000000004, 46.9714276 ], + [ 7.1900761, 46.9714382 ], + [ 7.1898714, 46.9714562 ], + [ 7.1896684, 46.9714815 ], + [ 7.1894675, 46.9715141 ], + [ 7.1892694, 46.9715538 ], + [ 7.1890747, 46.9716005 ], + [ 7.1888837, 46.9716541 ], + [ 7.1886971, 46.9717146 ], + [ 7.1885154, 46.9717816 ], + [ 7.1883391, 46.971855 ], + [ 7.1881686, 46.9719347 ], + [ 7.1880045, 46.9720203 ], + [ 7.1878471, 46.9721117 ], + [ 7.1876969, 46.9722086 ], + [ 7.1875544, 46.9723108 ], + [ 7.1874198, 46.972417899999996 ], + [ 7.1872937, 46.9725297 ], + [ 7.1871762, 46.9726459 ], + [ 7.1870678, 46.9727661 ], + [ 7.1869686999999995, 46.9728901 ], + [ 7.1868793, 46.9730174 ], + [ 7.1867997, 46.9731478 ], + [ 7.1867301, 46.9732808 ], + [ 7.1866709, 46.9734161 ], + [ 7.1866221, 46.9735534 ], + [ 7.1865838, 46.9736922 ], + [ 7.1865562, 46.9738322 ], + [ 7.1865393, 46.973973 ], + [ 7.1865333, 46.9741142 ], + [ 7.186538, 46.9742555 ], + [ 7.1865535, 46.9743964 ], + [ 7.1865798, 46.9745365 ], + [ 7.1866168, 46.9746755 ], + [ 7.1866643, 46.974813 ], + [ 7.1867223, 46.9749486 ], + [ 7.1867906, 46.9750819 ], + [ 7.1868689, 46.9752126 ], + [ 7.1869572, 46.9753403 ], + [ 7.1870551, 46.9754647 ], + [ 7.1871624, 46.9755854 ], + [ 7.1872788, 46.9757021 ], + [ 7.1874039, 46.9758144 ], + [ 7.1875374, 46.9759221 ], + [ 7.187679, 46.9760249 ], + [ 7.1878283, 46.9761225 ], + [ 7.1879848, 46.9762146 ], + [ 7.1881482, 46.976301 ], + [ 7.1883179, 46.9763814 ], + [ 7.1884936, 46.9764556 ], + [ 7.1886747, 46.9765234 ], + [ 7.1888607, 46.9765846 ], + [ 7.1890511, 46.9766391 ], + [ 7.1892455, 46.9766867 ], + [ 7.1894432, 46.9767272 ], + [ 7.1896438, 46.9767606 ], + [ 7.1898466, 46.9767868 ], + [ 7.1900512, 46.9768057 ], + [ 7.1902569, 46.9768173 ], + [ 7.1904632, 46.9768214 ], + [ 7.1906696, 46.9768182 ], + [ 7.1908754, 46.9768075 ], + [ 7.1910802, 46.9767895 ], + [ 7.1912833, 46.9767642 ], + [ 7.1914841, 46.9767317 ], + [ 7.1916822, 46.976692 ], + [ 7.191877, 46.9766452 ], + [ 7.192068, 46.9765916 ], + [ 7.1922545, 46.9765312 ], + [ 7.1924363, 46.9764641 ], + [ 7.1926126, 46.9763907 ], + [ 7.1927831, 46.976311 ], + [ 7.1929472, 46.9762254 ], + [ 7.1931046, 46.976134 ], + [ 7.1932548, 46.9760371 ], + [ 7.1933973, 46.9759349 ], + [ 7.1935319, 46.975827699999996 ], + [ 7.1936581, 46.9757159 ], + [ 7.1937755, 46.9755997 ], + [ 7.1938839, 46.9754795 ], + [ 7.193983, 46.9753556 ], + [ 7.1940724, 46.9752282 ], + [ 7.194152, 46.9750979 ], + [ 7.1942215, 46.9749649 ], + [ 7.1942807, 46.9748295 ], + [ 7.1943296, 46.9746923 ], + [ 7.1943678, 46.9745534 ], + [ 7.1943954, 46.9744134 ], + [ 7.1944122, 46.9742726 ], + [ 7.1944183, 46.9741314 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0058", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Kerzers", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Kerzers", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Kerzers", + "lang" : "it-CH" + }, + { + "text" : "Substation Kerzers", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8509813, 47.4530381 ], + [ 7.8508402, 47.4532125 ], + [ 7.8508498, 47.4532254 ], + [ 7.8507368, 47.4533417 ], + [ 7.8505567, 47.4534616 ], + [ 7.8501192, 47.4535106 ], + [ 7.8498861, 47.4535565 ], + [ 7.8499415, 47.4536408 ], + [ 7.8499722, 47.4537175 ], + [ 7.8500897, 47.4538408 ], + [ 7.8501468, 47.4540102 ], + [ 7.8502668, 47.4541174 ], + [ 7.8503785, 47.454140699999996 ], + [ 7.8507035, 47.4541163 ], + [ 7.8507748, 47.4541004 ], + [ 7.8510717, 47.454227 ], + [ 7.851165, 47.4541156 ], + [ 7.8514459, 47.453683 ], + [ 7.8516791999999995, 47.4534677 ], + [ 7.8517218, 47.4534399 ], + [ 7.8519543, 47.4532713 ], + [ 7.852449, 47.452979 ], + [ 7.852675, 47.452807 ], + [ 7.8526831, 47.4527951 ], + [ 7.8527404, 47.4527106 ], + [ 7.8527575, 47.4526854 ], + [ 7.8527578, 47.4526847 ], + [ 7.8527636, 47.4526721 ], + [ 7.8527733, 47.452662 ], + [ 7.8528054, 47.4526147 ], + [ 7.8528435, 47.4525318 ], + [ 7.8530066, 47.4521768 ], + [ 7.8529222, 47.452075 ], + [ 7.8529663, 47.4519828 ], + [ 7.8528152, 47.4519882 ], + [ 7.8525127999999995, 47.4521632 ], + [ 7.8521347, 47.45239 ], + [ 7.8518512, 47.4525649 ], + [ 7.8515581999999995, 47.4527334 ], + [ 7.8513217, 47.4528501 ], + [ 7.8511134, 47.4529346 ], + [ 7.8509813, 47.4530381 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr082", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Frändlede", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Frändlede", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Frändlede", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Frändlede", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 5.9665097, 46.1461255 ], + [ 5.9656838, 46.1469506 ], + [ 5.9656841, 46.1469509 ], + [ 5.965689, 46.1469554 ], + [ 5.9656938, 46.14696 ], + [ 5.9656987, 46.1469645 ], + [ 5.9657036, 46.146969 ], + [ 5.9657085, 46.1469736 ], + [ 5.9657134, 46.1469781 ], + [ 5.9657183, 46.1469826 ], + [ 5.9657232, 46.1469871 ], + [ 5.9657282, 46.1469917 ], + [ 5.9657331, 46.1469962 ], + [ 5.9657381, 46.1470007 ], + [ 5.965743, 46.1470052 ], + [ 5.965748, 46.1470097 ], + [ 5.9657529, 46.1470142 ], + [ 5.9657579, 46.1470187 ], + [ 5.9657629, 46.1470231 ], + [ 5.9657678999999995, 46.1470276 ], + [ 5.9657729, 46.1470321 ], + [ 5.9657779, 46.1470366 ], + [ 5.9657829, 46.147041 ], + [ 5.965788, 46.1470455 ], + [ 5.965793, 46.14705 ], + [ 5.9657979999999995, 46.1470544 ], + [ 5.9658031, 46.1470589 ], + [ 5.9658081, 46.1470633 ], + [ 5.9658131999999995, 46.1470677 ], + [ 5.9658183, 46.1470722 ], + [ 5.9658234, 46.1470766 ], + [ 5.9658285, 46.147081 ], + [ 5.9658336, 46.1470855 ], + [ 5.9658387, 46.1470899 ], + [ 5.9658438, 46.1470943 ], + [ 5.9658489, 46.1470987 ], + [ 5.965854, 46.1471031 ], + [ 5.9658592, 46.1471075 ], + [ 5.9658643, 46.1471119 ], + [ 5.9658695, 46.1471163 ], + [ 5.9658747, 46.1471207 ], + [ 5.9658798, 46.1471251 ], + [ 5.9665059, 46.1476548 ], + [ 5.9665087, 46.1476572 ], + [ 5.9665115, 46.1476596 ], + [ 5.9665143, 46.147662 ], + [ 5.9665171, 46.1476644 ], + [ 5.9665199, 46.1476668 ], + [ 5.9665227, 46.1476693 ], + [ 5.9665254999999995, 46.1476717 ], + [ 5.9665282, 46.1476741 ], + [ 5.966531, 46.1476765 ], + [ 5.9665338, 46.147679 ], + [ 5.9665365, 46.1476814 ], + [ 5.9665392, 46.1476839 ], + [ 5.966542, 46.1476863 ], + [ 5.9665447, 46.1476888 ], + [ 5.9665474, 46.1476912 ], + [ 5.9665501, 46.1476937 ], + [ 5.9665528, 46.1476962 ], + [ 5.9665555, 46.1476986 ], + [ 5.9665582, 46.1477011 ], + [ 5.9665609, 46.1477036 ], + [ 5.9665634999999995, 46.1477061 ], + [ 5.9665662, 46.1477086 ], + [ 5.9665688, 46.1477111 ], + [ 5.9665715, 46.1477136 ], + [ 5.9665741, 46.1477161 ], + [ 5.9665767, 46.1477186 ], + [ 5.9665793, 46.1477211 ], + [ 5.9665818999999995, 46.1477236 ], + [ 5.9665845, 46.1477261 ], + [ 5.9665871, 46.1477286 ], + [ 5.9665897, 46.1477312 ], + [ 5.9665923, 46.1477337 ], + [ 5.9665948, 46.1477362 ], + [ 5.9665973999999995, 46.1477388 ], + [ 5.9665999, 46.1477413 ], + [ 5.9666025, 46.1477438 ], + [ 5.9666049999999995, 46.1477464 ], + [ 5.9666075, 46.147749 ], + [ 5.96661, 46.1477515 ], + [ 5.9666125999999995, 46.1477541 ], + [ 5.966615, 46.1477567 ], + [ 5.9666175, 46.1477592 ], + [ 5.96662, 46.1477618 ], + [ 5.9666225, 46.1477644 ], + [ 5.966625, 46.147767 ], + [ 5.9666274, 46.1477695 ], + [ 5.9666299, 46.1477721 ], + [ 5.9666323, 46.1477747 ], + [ 5.9666347, 46.1477773 ], + [ 5.9666372, 46.1477799 ], + [ 5.9666396, 46.1477825 ], + [ 5.966642, 46.1477851 ], + [ 5.9666444, 46.1477878 ], + [ 5.9666467, 46.1477904 ], + [ 5.9666491, 46.147793 ], + [ 5.9666515, 46.1477956 ], + [ 5.9666538, 46.1477983 ], + [ 5.9666562, 46.1478009 ], + [ 5.9666585, 46.1478035 ], + [ 5.9666609, 46.1478062 ], + [ 5.9666632, 46.1478088 ], + [ 5.9666654999999995, 46.1478115 ], + [ 5.9666678, 46.1478141 ], + [ 5.9666701, 46.1478168 ], + [ 5.9666724, 46.1478194 ], + [ 5.9666747, 46.1478221 ], + [ 5.966677, 46.1478248 ], + [ 5.9666792, 46.1478274 ], + [ 5.9666815, 46.1478301 ], + [ 5.9666837, 46.1478328 ], + [ 5.966686, 46.1478355 ], + [ 5.9666882, 46.1478381 ], + [ 5.9666904, 46.1478408 ], + [ 5.9666926, 46.1478435 ], + [ 5.9666948, 46.1478462 ], + [ 5.966697, 46.1478489 ], + [ 5.9666992, 46.1478516 ], + [ 5.9667014, 46.1478543 ], + [ 5.9667034999999995, 46.147857 ], + [ 5.9667057, 46.1478597 ], + [ 5.9667078, 46.1478625 ], + [ 5.96671, 46.1478652 ], + [ 5.9667121, 46.1478679 ], + [ 5.9667142, 46.1478706 ], + [ 5.9667163, 46.1478734 ], + [ 5.9667183999999995, 46.1478761 ], + [ 5.9667205, 46.1478788 ], + [ 5.9667226, 46.1478816 ], + [ 5.9667247, 46.1478843 ], + [ 5.9667268, 46.1478871 ], + [ 5.9667288, 46.1478898 ], + [ 5.9667309, 46.1478926 ], + [ 5.9667329, 46.1478953 ], + [ 5.9667349, 46.1478981 ], + [ 5.966737, 46.1479008 ], + [ 5.966739, 46.1479036 ], + [ 5.966741, 46.1479064 ], + [ 5.966743, 46.1479091 ], + [ 5.9667449999999995, 46.1479119 ], + [ 5.9667469, 46.1479147 ], + [ 5.9667489, 46.1479175 ], + [ 5.9667509, 46.1479203 ], + [ 5.9667528, 46.147923 ], + [ 5.9667547, 46.1479258 ], + [ 5.9667566999999995, 46.1479286 ], + [ 5.9667586, 46.1479314 ], + [ 5.9667604999999995, 46.1479342 ], + [ 5.9667624, 46.147937 ], + [ 5.9667642999999995, 46.1479398 ], + [ 5.9667662, 46.1479427 ], + [ 5.9667680999999995, 46.1479455 ], + [ 5.9667699, 46.1479483 ], + [ 5.9667718, 46.1479511 ], + [ 5.9667736, 46.1479539 ], + [ 5.9667755, 46.1479567 ], + [ 5.9667773, 46.1479596 ], + [ 5.9667791, 46.1479624 ], + [ 5.9667809, 46.1479652 ], + [ 5.9667826999999996, 46.1479681 ], + [ 5.9667845, 46.1479709 ], + [ 5.9667863, 46.1479737 ], + [ 5.966788, 46.1479766 ], + [ 5.9667898, 46.1479794 ], + [ 5.9667916, 46.1479823 ], + [ 5.9667933, 46.1479851 ], + [ 5.966795, 46.147988 ], + [ 5.9667968, 46.1479909 ], + [ 5.9667985, 46.1479937 ], + [ 5.9668002, 46.1479966 ], + [ 5.9668019, 46.1479994 ], + [ 5.9668036, 46.1480023 ], + [ 5.9668052, 46.1480052 ], + [ 5.9668069, 46.1480081 ], + [ 5.9668086, 46.1480109 ], + [ 5.9668102, 46.1480138 ], + [ 5.9668118, 46.1480167 ], + [ 5.9668135, 46.1480196 ], + [ 5.9668151, 46.1480225 ], + [ 5.9668167, 46.1480254 ], + [ 5.9668183, 46.1480282 ], + [ 5.9668199, 46.1480311 ], + [ 5.9668215, 46.148034 ], + [ 5.966823, 46.1480369 ], + [ 5.9668246, 46.1480398 ], + [ 5.9668262, 46.1480428 ], + [ 5.9668277, 46.1480457 ], + [ 5.9668292, 46.1480486 ], + [ 5.9668308, 46.1480515 ], + [ 5.9668323, 46.1480544 ], + [ 5.9668338, 46.1480573 ], + [ 5.9668353, 46.1480602 ], + [ 5.9668368, 46.1480632 ], + [ 5.9668382, 46.1480661 ], + [ 5.9668396999999995, 46.148069 ], + [ 5.9668412, 46.1480719 ], + [ 5.9668426, 46.1480749 ], + [ 5.966844, 46.1480778 ], + [ 5.9668455, 46.1480807 ], + [ 5.9668469, 46.1480837 ], + [ 5.9668483, 46.1480866 ], + [ 5.9668497, 46.1480896 ], + [ 5.9668510999999995, 46.1480925 ], + [ 5.9668525, 46.1480955 ], + [ 5.9668538, 46.1480984 ], + [ 5.9668551999999995, 46.1481014 ], + [ 5.9668565000000005, 46.1481043 ], + [ 5.9668579, 46.1481073 ], + [ 5.9668592, 46.1481102 ], + [ 5.9668605, 46.1481132 ], + [ 5.9668618, 46.1481161 ], + [ 5.9668631, 46.1481191 ], + [ 5.9668644, 46.1481221 ], + [ 5.9668657, 46.148125 ], + [ 5.966867, 46.148128 ], + [ 5.9668682, 46.148131 ], + [ 5.9668695, 46.148134 ], + [ 5.9668707, 46.1481369 ], + [ 5.9668719, 46.1481399 ], + [ 5.9668732, 46.1481429 ], + [ 5.9668744, 46.1481459 ], + [ 5.9668756, 46.1481489 ], + [ 5.9668768, 46.1481519 ], + [ 5.9668779999999995, 46.1481548 ], + [ 5.9668791, 46.1481578 ], + [ 5.9668803, 46.1481608 ], + [ 5.9668814999999995, 46.1481638 ], + [ 5.9668826, 46.1481668 ], + [ 5.9668837, 46.1481698 ], + [ 5.9668848, 46.1481728 ], + [ 5.966886, 46.1481758 ], + [ 5.9668871, 46.1481788 ], + [ 5.9668881, 46.1481818 ], + [ 5.9668892, 46.1481848 ], + [ 5.9668903, 46.1481878 ], + [ 5.9668914, 46.1481908 ], + [ 5.9672997, 46.149352 ], + [ 5.9673009, 46.1493555 ], + [ 5.9673022, 46.1493589 ], + [ 5.9673034, 46.1493624 ], + [ 5.9673047, 46.1493658 ], + [ 5.9673058999999995, 46.1493692 ], + [ 5.9673072, 46.1493727 ], + [ 5.9673085, 46.1493761 ], + [ 5.9673096999999995, 46.1493796 ], + [ 5.967311, 46.149383 ], + [ 5.9673123, 46.1493864 ], + [ 5.9673136, 46.1493899 ], + [ 5.967315, 46.1493933 ], + [ 5.9673163, 46.1493967 ], + [ 5.9673177, 46.1494001 ], + [ 5.967319, 46.1494035 ], + [ 5.9673204, 46.149407 ], + [ 5.9673217, 46.1494104 ], + [ 5.9673231, 46.1494138 ], + [ 5.9673245, 46.1494172 ], + [ 5.9673259, 46.1494206 ], + [ 5.9673273, 46.149424 ], + [ 5.9673288, 46.1494274 ], + [ 5.9673302, 46.1494309 ], + [ 5.9673316, 46.1494343 ], + [ 5.9673331, 46.1494377 ], + [ 5.9673345, 46.1494411 ], + [ 5.9673359999999995, 46.1494445 ], + [ 5.9673375, 46.1494479 ], + [ 5.967339, 46.1494512 ], + [ 5.9673405, 46.1494546 ], + [ 5.967342, 46.149458 ], + [ 5.9673435, 46.1494614 ], + [ 5.967345, 46.1494648 ], + [ 5.9673465, 46.1494682 ], + [ 5.9673481, 46.1494716 ], + [ 5.9673497, 46.1494749 ], + [ 5.9673511999999995, 46.1494783 ], + [ 5.9673528, 46.1494817 ], + [ 5.9673544, 46.1494851 ], + [ 5.967356, 46.1494884 ], + [ 5.9673576, 46.1494918 ], + [ 5.9673592, 46.1494952 ], + [ 5.9673608, 46.1494985 ], + [ 5.9673624, 46.1495019 ], + [ 5.9673641, 46.1495053 ], + [ 5.9673657, 46.1495086 ], + [ 5.9673674, 46.149512 ], + [ 5.9673691, 46.1495153 ], + [ 5.9673708, 46.1495187 ], + [ 5.9673724, 46.149522 ], + [ 5.9673741, 46.1495254 ], + [ 5.9673759, 46.1495287 ], + [ 5.9673776, 46.1495321 ], + [ 5.9673793, 46.1495354 ], + [ 5.967381, 46.1495388 ], + [ 5.9673828, 46.1495421 ], + [ 5.9673845, 46.1495454 ], + [ 5.9673863, 46.1495487 ], + [ 5.9673881, 46.1495521 ], + [ 5.9673899, 46.1495554 ], + [ 5.9673917, 46.1495587 ], + [ 5.9673935, 46.149562 ], + [ 5.9673953, 46.1495654 ], + [ 5.9673971, 46.1495687 ], + [ 5.9673989, 46.149572 ], + [ 5.9674008, 46.1495753 ], + [ 5.9674026, 46.1495786 ], + [ 5.9674045, 46.1495819 ], + [ 5.9674063, 46.1495852 ], + [ 5.9674081999999995, 46.1495885 ], + [ 5.9674101, 46.1495918 ], + [ 5.9674119999999995, 46.1495951 ], + [ 5.9674139, 46.1495984 ], + [ 5.9674157999999995, 46.1496017 ], + [ 5.9674177, 46.149605 ], + [ 5.9674197, 46.1496083 ], + [ 5.9674216, 46.1496115 ], + [ 5.9674236, 46.1496148 ], + [ 5.9674255, 46.1496181 ], + [ 5.9674275, 46.1496214 ], + [ 5.9674295, 46.1496246 ], + [ 5.9674315, 46.1496279 ], + [ 5.9674335, 46.1496312 ], + [ 5.9674355, 46.1496344 ], + [ 5.9674375, 46.1496377 ], + [ 5.9674395, 46.1496409 ], + [ 5.9674416, 46.1496442 ], + [ 5.9674436, 46.1496475 ], + [ 5.9674457, 46.1496507 ], + [ 5.9674477, 46.1496539 ], + [ 5.9674498, 46.1496572 ], + [ 5.968781, 46.1517332 ], + [ 5.9687835, 46.1517372 ], + [ 5.9687861, 46.1517412 ], + [ 5.9687887, 46.1517452 ], + [ 5.9687912999999995, 46.1517492 ], + [ 5.9687939, 46.1517532 ], + [ 5.9687965, 46.1517572 ], + [ 5.9687992, 46.1517611 ], + [ 5.9688018, 46.1517651 ], + [ 5.9688045, 46.1517691 ], + [ 5.9688071, 46.1517731 ], + [ 5.9688098, 46.151777 ], + [ 5.9688125, 46.151781 ], + [ 5.9688152, 46.151785 ], + [ 5.9688178, 46.151789 ], + [ 5.9688205, 46.1517929 ], + [ 5.9688233, 46.1517969 ], + [ 5.968826, 46.1518008 ], + [ 5.9688286999999995, 46.1518048 ], + [ 5.9688315, 46.1518087 ], + [ 5.9688342, 46.1518127 ], + [ 5.968837, 46.1518166 ], + [ 5.9688397, 46.1518206 ], + [ 5.9688425, 46.1518245 ], + [ 5.9688453, 46.1518284 ], + [ 5.9688481, 46.1518324 ], + [ 5.9688509, 46.1518363 ], + [ 5.9688537, 46.1518402 ], + [ 5.9688565, 46.1518441 ], + [ 5.9688593999999995, 46.151848 ], + [ 5.9688622, 46.151852 ], + [ 5.9688651, 46.1518559 ], + [ 5.9688679, 46.1518598 ], + [ 5.9688707999999995, 46.1518637 ], + [ 5.9688737, 46.1518676 ], + [ 5.9688765, 46.1518715 ], + [ 5.9688794, 46.1518754 ], + [ 5.9688824, 46.1518793 ], + [ 5.9688853, 46.1518832 ], + [ 5.9688882, 46.151887 ], + [ 5.9688911000000004, 46.1518909 ], + [ 5.9688941, 46.1518948 ], + [ 5.968897, 46.1518987 ], + [ 5.9689, 46.1519026 ], + [ 5.9689029, 46.1519064 ], + [ 5.9689059, 46.1519103 ], + [ 5.9689089, 46.1519142 ], + [ 5.9689119, 46.151918 ], + [ 5.9689149, 46.1519219 ], + [ 5.9689179, 46.1519257 ], + [ 5.9689209, 46.1519296 ], + [ 5.968924, 46.1519334 ], + [ 5.968927, 46.1519373 ], + [ 5.9689301, 46.1519411 ], + [ 5.9689331, 46.1519449 ], + [ 5.9689362, 46.1519488 ], + [ 5.9689393, 46.1519526 ], + [ 5.9689423999999995, 46.1519564 ], + [ 5.9689455, 46.1519602 ], + [ 5.9689486, 46.1519641 ], + [ 5.9689517, 46.1519679 ], + [ 5.9689548, 46.1519717 ], + [ 5.9689578999999995, 46.1519755 ], + [ 5.9689611, 46.1519793 ], + [ 5.9689642, 46.1519831 ], + [ 5.9689674, 46.1519869 ], + [ 5.9689705, 46.1519907 ], + [ 5.9689737, 46.1519945 ], + [ 5.9689768999999995, 46.1519983 ], + [ 5.9689801, 46.152002 ], + [ 5.9689833, 46.1520058 ], + [ 5.9689865, 46.1520096 ], + [ 5.9689897, 46.1520134 ], + [ 5.9689929, 46.1520171 ], + [ 5.9689962, 46.1520209 ], + [ 5.9689993999999995, 46.1520247 ], + [ 5.9690027, 46.1520284 ], + [ 5.9690059, 46.1520322 ], + [ 5.9690092, 46.1520359 ], + [ 5.9690125, 46.1520397 ], + [ 5.9690158, 46.1520434 ], + [ 5.9690191, 46.1520471 ], + [ 5.9690224, 46.1520509 ], + [ 5.9690256999999995, 46.1520546 ], + [ 5.969029, 46.1520583 ], + [ 5.9690324, 46.152062 ], + [ 5.9690357, 46.1520658 ], + [ 5.9690391, 46.1520695 ], + [ 5.9690424, 46.1520732 ], + [ 5.9690458, 46.1520769 ], + [ 5.9690492, 46.1520806 ], + [ 5.9690525, 46.1520843 ], + [ 5.9690559, 46.152088 ], + [ 5.9690593, 46.1520917 ], + [ 5.9690627, 46.1520954 ], + [ 5.9690662, 46.1520991 ], + [ 5.9690696, 46.1521027 ], + [ 5.969073, 46.1521064 ], + [ 5.9690765, 46.1521101 ], + [ 5.9690799, 46.1521138 ], + [ 5.9690834, 46.1521174 ], + [ 5.9690869, 46.1521211 ], + [ 5.9690902999999995, 46.1521248 ], + [ 5.9690938, 46.1521284 ], + [ 5.9690973, 46.1521321 ], + [ 5.9691008, 46.1521357 ], + [ 5.9691044, 46.1521393 ], + [ 5.9691079, 46.152143 ], + [ 5.9691114, 46.1521466 ], + [ 5.969115, 46.1521502 ], + [ 5.9691185, 46.1521539 ], + [ 5.969122, 46.1521575 ], + [ 5.9691256, 46.1521611 ], + [ 5.9691292, 46.1521647 ], + [ 5.9691328, 46.1521683 ], + [ 5.9691364, 46.1521719 ], + [ 5.96914, 46.1521755 ], + [ 5.9691436, 46.1521791 ], + [ 5.9691472, 46.1521827 ], + [ 5.9691507999999995, 46.1521863 ], + [ 5.9691544, 46.1521899 ], + [ 5.9691581, 46.1521935 ], + [ 5.9691617, 46.1521971 ], + [ 5.9691654, 46.1522006 ], + [ 5.969169, 46.1522042 ], + [ 5.9691727, 46.1522078 ], + [ 5.9691764, 46.1522113 ], + [ 5.9691801, 46.1522149 ], + [ 5.9691838, 46.1522184 ], + [ 5.9691875, 46.152222 ], + [ 5.9691912, 46.1522255 ], + [ 5.9691949, 46.1522291 ], + [ 5.9691987, 46.1522326 ], + [ 5.9692024, 46.1522361 ], + [ 5.9692062, 46.1522397 ], + [ 5.9698624, 46.152856 ], + [ 5.9700675, 46.1528872 ], + [ 5.9711924, 46.1527468 ], + [ 5.9715833, 46.1528062 ], + [ 5.971776, 46.1527822 ], + [ 5.972085, 46.153117 ], + [ 5.9733288, 46.1537182 ], + [ 5.9748091, 46.1539429 ], + [ 5.9763003999999995, 46.1537568 ], + [ 5.9775756, 46.1531883 ], + [ 5.9784407, 46.1523238 ], + [ 5.978764, 46.1512951 ], + [ 5.9784961, 46.1502587 ], + [ 5.977678, 46.1493724 ], + [ 5.9764343, 46.1487712 ], + [ 5.9761603, 46.1487296 ], + [ 5.9760511, 46.1483072 ], + [ 5.9752331, 46.1474209 ], + [ 5.9739894, 46.1468196 ], + [ 5.9728202, 46.1466421 ], + [ 5.9720801, 46.1462843 ], + [ 5.9719996, 46.1461971 ], + [ 5.970756, 46.1455958 ], + [ 5.969276, 46.1453711 ], + [ 5.9677849, 46.1455571 ], + [ 5.9665097, 46.1461255 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-28", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.1263694, 46.9615432 ], + [ 7.1284261, 46.9599219 ], + [ 7.1296286, 46.9604784 ], + [ 7.1298071, 46.9601829 ], + [ 7.1287843, 46.9596394 ], + [ 7.1294335, 46.9591276 ], + [ 7.1322389, 46.9604231 ], + [ 7.1322764, 46.9604404 ], + [ 7.1321305, 46.9605519 ], + [ 7.1321113, 46.9607383 ], + [ 7.1322934, 46.9606394 ], + [ 7.1325665, 46.9605158 ], + [ 7.1329478, 46.960492 ], + [ 7.1330395, 46.960343 ], + [ 7.133203, 46.9603186 ], + [ 7.1329686, 46.9600445 ], + [ 7.1353115, 46.9582857 ], + [ 7.1355482, 46.9581496 ], + [ 7.1356942, 46.9580257 ], + [ 7.1359854, 46.9579022 ], + [ 7.1362038, 46.9577909 ], + [ 7.1371002, 46.9565875 ], + [ 7.1373287, 46.9562898 ], + [ 7.1375292, 46.9561536 ], + [ 7.1378204, 46.9560301 ], + [ 7.1382391, 46.9558199 ], + [ 7.1383848, 46.9557208 ], + [ 7.1386589, 46.9554108 ], + [ 7.1389505, 46.9552002 ], + [ 7.139097, 46.9549769 ], + [ 7.1392066, 46.9548529 ], + [ 7.1400039, 46.955116 ], + [ 7.14101, 46.9537389 ], + [ 7.1412635, 46.9538514 ], + [ 7.1419762, 46.9529956 ], + [ 7.1438131, 46.9506884 ], + [ 7.1417295, 46.949987 ], + [ 7.141777, 46.9496142 ], + [ 7.1419986, 46.9489187 ], + [ 7.1425684, 46.9476275 ], + [ 7.1416678, 46.9463697 ], + [ 7.1406866, 46.9449252 ], + [ 7.1406599, 46.9449246 ], + [ 7.1390626, 46.944884 ], + [ 7.1390562, 46.9448918 ], + [ 7.1372249, 46.9447145 ], + [ 7.1343949, 46.944483 ], + [ 7.1341547, 46.9444742 ], + [ 7.1341557, 46.944295 ], + [ 7.1342199, 46.9440166 ], + [ 7.1342842, 46.9437167 ], + [ 7.134308, 46.9433779 ], + [ 7.1339429, 46.9432015 ], + [ 7.1335374, 46.9429862 ], + [ 7.1335385, 46.9427933 ], + [ 7.1332586, 46.9424926 ], + [ 7.1327282, 46.942234 ], + [ 7.1324163, 46.9420617 ], + [ 7.1319178, 46.9416961 ], + [ 7.131951, 46.9413533 ], + [ 7.1321089, 46.9410966 ], + [ 7.1311409, 46.9407725 ], + [ 7.1307042, 46.9405357 ], + [ 7.1302362, 46.9402987 ], + [ 7.1300488, 46.9402553 ], + [ 7.1294866, 46.9400824 ], + [ 7.129081, 46.9398884 ], + [ 7.1289146, 46.9401393 ], + [ 7.1188205, 46.9553532 ], + [ 7.1191281, 46.9564889 ], + [ 7.1193128, 46.9574839 ], + [ 7.1192733, 46.9580182 ], + [ 7.1190525, 46.9585148 ], + [ 7.1187315, 46.9590694 ], + [ 7.1224793, 46.9609094 ], + [ 7.1232644, 46.9600679 ], + [ 7.1258715, 46.961318 ], + [ 7.1263694, 46.9615432 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "WZV0006", + "country" : "CHE", + "name" : [ + { + "text" : "Wasser- und Zugvogelreservat Chablais", + "lang" : "de-CH" + }, + { + "text" : "Réserve d'oiseaux d'eau et de migrateurs Chablais", + "lang" : "fr-CH" + }, + { + "text" : "Riserva di uccelli acquatici e migratori Chablais", + "lang" : "it-CH" + }, + { + "text" : "Water Bird and Migratory Bird Reserves Chablais", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.2572371, 46.8962615 ], + [ 8.2572295, 46.8961203 ], + [ 8.2572112, 46.8959796 ], + [ 8.2571822, 46.8958397 ], + [ 8.2571425, 46.8957011 ], + [ 8.2570923, 46.895564 ], + [ 8.2570317, 46.895429 ], + [ 8.2569609, 46.8952963 ], + [ 8.2568801, 46.8951664 ], + [ 8.2567894, 46.8950395 ], + [ 8.2566892, 46.894916 ], + [ 8.2565796, 46.8947964 ], + [ 8.2564611, 46.8946808 ], + [ 8.256334, 46.8945696 ], + [ 8.2561985, 46.8944631 ], + [ 8.2560551, 46.8943616 ], + [ 8.2559041, 46.8942655 ], + [ 8.255746, 46.8941748 ], + [ 8.2555812, 46.89409 ], + [ 8.2554101, 46.8940112 ], + [ 8.2552333, 46.8939386 ], + [ 8.2550511, 46.8938725 ], + [ 8.2548642, 46.893813 ], + [ 8.254673, 46.8937603 ], + [ 8.254478, 46.8937145 ], + [ 8.2542798, 46.8936758 ], + [ 8.2540789, 46.8936443 ], + [ 8.2538759, 46.89362 ], + [ 8.2536713, 46.893603 ], + [ 8.2534656, 46.8935934 ], + [ 8.2532596, 46.8935911 ], + [ 8.2530536, 46.8935963 ], + [ 8.2528483, 46.8936088 ], + [ 8.2526443, 46.8936287 ], + [ 8.252442, 46.8936559 ], + [ 8.2522421, 46.8936903 ], + [ 8.2520451, 46.8937319 ], + [ 8.2518516, 46.8937804 ], + [ 8.251662, 46.8938358 ], + [ 8.2514769, 46.893898 ], + [ 8.2512968, 46.8939667 ], + [ 8.2511222, 46.8940417 ], + [ 8.2509536, 46.894123 ], + [ 8.2507914, 46.8942101 ], + [ 8.2506361, 46.894303 ], + [ 8.250488, 46.8944013 ], + [ 8.2503477, 46.8945048 ], + [ 8.2502155, 46.8946131 ], + [ 8.2500917, 46.8947261 ], + [ 8.2499767, 46.8948434 ], + [ 8.2498709, 46.8949646 ], + [ 8.2497744, 46.8950894 ], + [ 8.2496876, 46.8952176 ], + [ 8.2496107, 46.8953487 ], + [ 8.2495439, 46.8954823 ], + [ 8.2494874, 46.8956182 ], + [ 8.2494414, 46.8957559 ], + [ 8.2494059, 46.8958951 ], + [ 8.2493811, 46.8960353 ], + [ 8.2493671, 46.8961763 ], + [ 8.2493638, 46.8963176 ], + [ 8.2493714, 46.8964587 ], + [ 8.2493897, 46.8965995 ], + [ 8.2494187, 46.8967393 ], + [ 8.2494583, 46.896878 ], + [ 8.2495085, 46.897015 ], + [ 8.2495691, 46.8971501 ], + [ 8.2496399, 46.8972827 ], + [ 8.2497207, 46.8974127 ], + [ 8.2498114, 46.8975396 ], + [ 8.2499116, 46.897663 ], + [ 8.2500211, 46.8977827 ], + [ 8.2501396, 46.8978983 ], + [ 8.2502668, 46.8980095 ], + [ 8.2504022, 46.898116 ], + [ 8.2505457, 46.8982175 ], + [ 8.2506966, 46.8983137 ], + [ 8.2508547, 46.8984043 ], + [ 8.2510196, 46.8984891 ], + [ 8.2511906, 46.898568 ], + [ 8.2513675, 46.8986405 ], + [ 8.2515496, 46.8987066 ], + [ 8.2517366, 46.8987661 ], + [ 8.2519278, 46.8988189 ], + [ 8.2521228, 46.8988646 ], + [ 8.252321, 46.8989034 ], + [ 8.252522, 46.8989349 ], + [ 8.252725, 46.8989592 ], + [ 8.2529296, 46.8989762 ], + [ 8.2531353, 46.8989858 ], + [ 8.2533414, 46.898988 ], + [ 8.2535473, 46.8989829 ], + [ 8.2537526, 46.8989703 ], + [ 8.2539567, 46.8989504 ], + [ 8.254159, 46.8989232 ], + [ 8.2543589, 46.8988888 ], + [ 8.2545559, 46.8988473 ], + [ 8.254749499999999, 46.8987988 ], + [ 8.2549391, 46.8987433 ], + [ 8.2551242, 46.8986812 ], + [ 8.2553043, 46.8986125 ], + [ 8.2554789, 46.8985374 ], + [ 8.2556475, 46.8984562 ], + [ 8.2558097, 46.898369 ], + [ 8.2559651, 46.8982762 ], + [ 8.2561131, 46.8981778 ], + [ 8.2562534, 46.8980743 ], + [ 8.2563856, 46.897966 ], + [ 8.2565094, 46.897853 ], + [ 8.2566244, 46.8977357 ], + [ 8.2567302, 46.8976145 ], + [ 8.2568267, 46.8974896 ], + [ 8.2569135, 46.8973615 ], + [ 8.2569903, 46.8972304 ], + [ 8.2570571, 46.8970967 ], + [ 8.2571136, 46.8969609 ], + [ 8.2571596, 46.8968232 ], + [ 8.2571951, 46.896684 ], + [ 8.2572198, 46.8965437 ], + [ 8.2572338, 46.8964028 ], + [ 8.2572371, 46.8962615 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SAR0001", + "country" : "CHE", + "name" : [ + { + "text" : "Untersuchungsgefängnis Sarnen", + "lang" : "de-CH" + }, + { + "text" : "Untersuchungsgefängnis Sarnen", + "lang" : "fr-CH" + }, + { + "text" : "Untersuchungsgefängnis Sarnen", + "lang" : "it-CH" + }, + { + "text" : "Untersuchungsgefängnis Sarnen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kantonspolizei Obwalden", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale d'Obwald", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Obvaldo", + "lang" : "it-CH" + }, + { + "text" : "Obwalden cantonal police", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Amtsleitung Kantonspolizei Obwalden", + "lang" : "de-CH" + }, + { + "text" : "Chef de la police cantonale d'Obwald", + "lang" : "fr-CH" + }, + { + "text" : "Capo della polizia cantonale di Obvaldo", + "lang" : "it-CH" + }, + { + "text" : "Head of the cantonal police in Obwalden", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ow.ch/aemter/232", + "email" : "kapo@ow.ch", + "phone" : "0041416666500", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT12H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.3460829, 46.222933 ], + [ 7.3456526, 46.2222165 ], + [ 7.3419883, 46.2216784 ], + [ 7.3429318, 46.2202254 ], + [ 7.3333905, 46.2177278 ], + [ 7.33351, 46.2182497 ], + [ 7.3300045, 46.2182744 ], + [ 7.3297769, 46.2186763 ], + [ 7.3247467, 46.217716 ], + [ 7.3248533, 46.2169451 ], + [ 7.3173042, 46.2154608 ], + [ 7.3167542, 46.2151103 ], + [ 7.3151209, 46.21478 ], + [ 7.314476, 46.2157203 ], + [ 7.3109918, 46.2149786 ], + [ 7.3108509999999995, 46.2153338 ], + [ 7.3090389, 46.2149837 ], + [ 7.3087657, 46.215964 ], + [ 7.3137007, 46.2169915 ], + [ 7.3139411, 46.217249 ], + [ 7.3194123, 46.2185164 ], + [ 7.3199487, 46.2191359 ], + [ 7.3245704, 46.2202238 ], + [ 7.3246226, 46.2200628 ], + [ 7.3293573, 46.2210552 ], + [ 7.3385297, 46.222809 ], + [ 7.3387308, 46.2226904 ], + [ 7.3434977, 46.2234453 ], + [ 7.3458708999999995, 46.2233574 ], + [ 7.3460829, 46.222933 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSMS003", + "country" : "CHE", + "name" : [ + { + "text" : "LSMS Sion (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSMS Sion (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSMS Sion (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSMS Sion (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Special Flight Office (SFO)", + "lang" : "de-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "fr-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "it-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "en-GB" + } + ], + "siteURL" : "https://skyguide.ch/services/special-flights", + "email" : "specialflight@skyguide.ch", + "phone" : "0041439316236", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5334287, 47.4929994 ], + [ 7.533446, 47.4930198 ], + [ 7.5334711, 47.4930232 ], + [ 7.5340606, 47.4928654 ], + [ 7.5341218, 47.4928813 ], + [ 7.5345331, 47.4928009 ], + [ 7.535722, 47.4927476 ], + [ 7.5365287, 47.4928979 ], + [ 7.5366181999999995, 47.4928974 ], + [ 7.5366772, 47.4928738 ], + [ 7.5366827, 47.4928509 ], + [ 7.5366303, 47.4928217 ], + [ 7.5359375, 47.4926848 ], + [ 7.5357266, 47.4926683 ], + [ 7.5348954, 47.4926933 ], + [ 7.5347755, 47.4926962 ], + [ 7.5345007, 47.4927201 ], + [ 7.5339064, 47.4928149 ], + [ 7.5337556, 47.4928477 ], + [ 7.533402, 47.4929686 ], + [ 7.5334287, 47.4929994 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns158", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Schlifbach - Grossmattbach", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Schlifbach - Grossmattbach", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Schlifbach - Grossmattbach", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Schlifbach - Grossmattbach", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.3576273, 46.1788244 ], + [ 7.3344128, 46.1738753 ], + [ 7.3311477, 46.1732432 ], + [ 7.3278394, 46.1727306 ], + [ 7.3244972, 46.1723389 ], + [ 7.32113, 46.1720692 ], + [ 7.3177472, 46.1719221 ], + [ 7.3143579, 46.1718982 ], + [ 7.3109715, 46.1719974 ], + [ 7.3075971, 46.1722195 ], + [ 7.3042441, 46.1725639 ], + [ 7.3009216, 46.1730296 ], + [ 7.2976386, 46.1736154 ], + [ 7.2944042, 46.1743197 ], + [ 7.2912271, 46.1751405 ], + [ 7.2881162, 46.1760756 ], + [ 7.2850799, 46.1771225 ], + [ 7.2821264, 46.1782782 ], + [ 7.279264, 46.1795397 ], + [ 7.2765004, 46.1809034 ], + [ 7.2738432, 46.1823656 ], + [ 7.2712996, 46.1839224 ], + [ 7.2688767, 46.1855695 ], + [ 7.2665811, 46.1873023 ], + [ 7.264419, 46.1891162 ], + [ 7.2623965, 46.1910061 ], + [ 7.260519, 46.1929669 ], + [ 7.2587917, 46.1949933 ], + [ 7.2572193, 46.1970796 ], + [ 7.2558063, 46.1992202 ], + [ 7.2545564, 46.2014092 ], + [ 7.2534731, 46.2036406 ], + [ 7.2525594, 46.2059083 ], + [ 7.2518179, 46.2082061 ], + [ 7.2512505, 46.2105277 ], + [ 7.2508589, 46.2128667 ], + [ 7.2506441, 46.2152168 ], + [ 7.2506068, 46.2175714 ], + [ 7.250747, 46.2199242 ], + [ 7.2510645, 46.2222686 ], + [ 7.2515583, 46.2245983 ], + [ 7.2522272, 46.2269069 ], + [ 7.2530693, 46.2291879 ], + [ 7.2540824, 46.2314353 ], + [ 7.2552637, 46.2336428 ], + [ 7.2566099, 46.2358043 ], + [ 7.2581174, 46.237914 ], + [ 7.2597821, 46.239966 ], + [ 7.2615994, 46.2419547 ], + [ 7.2635643, 46.2438747 ], + [ 7.2656716, 46.2457206 ], + [ 7.2679153, 46.2474875 ], + [ 7.2702894, 46.2491704 ], + [ 7.2727873, 46.2507647 ], + [ 7.2754022, 46.2522661 ], + [ 7.278127, 46.2536705 ], + [ 7.2809541, 46.2549739 ], + [ 7.2838758, 46.2561729 ], + [ 7.2868841, 46.257264 ], + [ 7.2899707, 46.2582444 ], + [ 7.2931270999999995, 46.2591112 ], + [ 7.2963447, 46.2598623 ], + [ 7.3195925, 46.2648192 ], + [ 7.322863, 46.2654516 ], + [ 7.3261768, 46.2659644 ], + [ 7.3295248, 46.266356 ], + [ 7.3328979, 46.2666255 ], + [ 7.3362866, 46.2667721 ], + [ 7.3396818, 46.2667954 ], + [ 7.3430741, 46.2666953 ], + [ 7.3464542, 46.2664721 ], + [ 7.3498127, 46.2661265 ], + [ 7.3531405, 46.2656593 ], + [ 7.3564285, 46.2650719 ], + [ 7.3596675, 46.2643658 ], + [ 7.3628487, 46.2635431 ], + [ 7.3659633, 46.2626059 ], + [ 7.3690029, 46.2615569 ], + [ 7.371959, 46.2603989 ], + [ 7.3748235, 46.2591351 ], + [ 7.3775886, 46.2577689 ], + [ 7.3802468, 46.2563042 ], + [ 7.3827906, 46.254745 ], + [ 7.3852131, 46.2530955 ], + [ 7.3875077, 46.2513602 ], + [ 7.3896682, 46.249544 ], + [ 7.3916885, 46.2476518 ], + [ 7.3935631, 46.2456888 ], + [ 7.395287, 46.2436604 ], + [ 7.3968554, 46.2415721 ], + [ 7.398264, 46.2394298 ], + [ 7.399509, 46.2372392 ], + [ 7.4005869, 46.2350064 ], + [ 7.4014949, 46.2327375 ], + [ 7.4022305, 46.2304387 ], + [ 7.4027916, 46.2281163 ], + [ 7.4031768, 46.2257768 ], + [ 7.4033851, 46.2234265 ], + [ 7.4034158, 46.2210718 ], + [ 7.4032689, 46.2187192 ], + [ 7.4029449, 46.2163752 ], + [ 7.4024447, 46.2140462 ], + [ 7.4017696, 46.2117385 ], + [ 7.4009215, 46.2094585 ], + [ 7.3999028, 46.2072125 ], + [ 7.3987162, 46.2050065 ], + [ 7.3973651, 46.2028467 ], + [ 7.3958532, 46.2007389 ], + [ 7.3941846, 46.1986889 ], + [ 7.3923639, 46.1967023 ], + [ 7.3903961, 46.1947846 ], + [ 7.3882866, 46.192941 ], + [ 7.3860412, 46.1911766 ], + [ 7.3836661, 46.1894961 ], + [ 7.3811678, 46.1879042 ], + [ 7.378553, 46.1864052 ], + [ 7.3758289999999995, 46.1850033 ], + [ 7.3730033, 46.1837023 ], + [ 7.3700835, 46.1825056 ], + [ 7.3670777, 46.1814167 ], + [ 7.363994, 46.1804385 ], + [ 7.360841, 46.1795736 ], + [ 7.3576273, 46.1788244 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSGS001", + "country" : "CHE", + "name" : [ + { + "text" : "LSGS Sion", + "lang" : "de-CH" + }, + { + "text" : "LSGS Sion", + "lang" : "fr-CH" + }, + { + "text" : "LSGS Sion", + "lang" : "it-CH" + }, + { + "text" : "LSGS Sion", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Special Flight Office (SFO)", + "lang" : "de-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "fr-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "it-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "en-GB" + } + ], + "siteURL" : "https://skyguide.ch/services/special-flights", + "email" : "specialflight@skyguide.ch", + "phone" : "0041439316236", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.7604569, 47.3306704 ], + [ 8.760447899999999, 47.3305293 ], + [ 8.7604281, 47.3303886 ], + [ 8.7603975, 47.3302489 ], + [ 8.7603562, 47.3301105 ], + [ 8.7603043, 47.3299737 ], + [ 8.760242, 47.3298389 ], + [ 8.7601693, 47.3297066 ], + [ 8.7600866, 47.329577 ], + [ 8.759994, 47.3294505 ], + [ 8.7598918, 47.3293275 ], + [ 8.7597802, 47.3292083 ], + [ 8.7596597, 47.3290933 ], + [ 8.7595304, 47.3289827 ], + [ 8.7593929, 47.3288768 ], + [ 8.7592473, 47.328776 ], + [ 8.7590942, 47.3286805 ], + [ 8.758934, 47.3285905 ], + [ 8.758767, 47.3285064 ], + [ 8.7585938, 47.3284284 ], + [ 8.7584149, 47.3283566 ], + [ 8.7582306, 47.3282913 ], + [ 8.7580416, 47.3282326 ], + [ 8.7578483, 47.3281808 ], + [ 8.7576513, 47.3281359 ], + [ 8.7574512, 47.328098 ], + [ 8.7572483, 47.3280674 ], + [ 8.7570434, 47.328044 ], + [ 8.756837, 47.3280279 ], + [ 8.7566296, 47.3280192 ], + [ 8.7564219, 47.3280178 ], + [ 8.7562143, 47.3280239 ], + [ 8.7560074, 47.3280374 ], + [ 8.7558019, 47.3280581 ], + [ 8.755598299999999, 47.3280862 ], + [ 8.7553971, 47.3281215 ], + [ 8.7551989, 47.3281639 ], + [ 8.7550042, 47.3282133 ], + [ 8.7548136, 47.3282695 ], + [ 8.7546276, 47.3283325 ], + [ 8.754446699999999, 47.3284019 ], + [ 8.7542714, 47.3284778 ], + [ 8.7541021, 47.3285597 ], + [ 8.7539395, 47.3286476 ], + [ 8.7537837, 47.3287411 ], + [ 8.7536354, 47.3288401 ], + [ 8.753495, 47.3289442 ], + [ 8.7533627, 47.3290531 ], + [ 8.753239, 47.3291666 ], + [ 8.7531242, 47.3292843 ], + [ 8.7530186, 47.329406 ], + [ 8.7529225, 47.3295313 ], + [ 8.7528362, 47.3296598 ], + [ 8.7527599, 47.3297912 ], + [ 8.7526939, 47.3299251 ], + [ 8.7526382, 47.3300612 ], + [ 8.7525931, 47.3301991 ], + [ 8.7525586, 47.3303384 ], + [ 8.752535, 47.3304788 ], + [ 8.7525221, 47.3306198 ], + [ 8.7525202, 47.330761 ], + [ 8.7525291, 47.3309022 ], + [ 8.7525489, 47.3310428 ], + [ 8.7525794, 47.3311825 ], + [ 8.7526207, 47.331321 ], + [ 8.7526726, 47.3314578 ], + [ 8.7527349, 47.3315925 ], + [ 8.7528076, 47.3317249 ], + [ 8.7528903, 47.3318545 ], + [ 8.7529829, 47.3319809 ], + [ 8.7530851, 47.3321039 ], + [ 8.7531966, 47.3322231 ], + [ 8.7533171, 47.3323382 ], + [ 8.7534464, 47.3324488 ], + [ 8.753584, 47.3325547 ], + [ 8.7537295, 47.3326555 ], + [ 8.7538826, 47.332751 ], + [ 8.7540429, 47.332841 ], + [ 8.7542098, 47.3329251 ], + [ 8.754383, 47.3330031 ], + [ 8.754562, 47.3330749 ], + [ 8.7547462, 47.3331402 ], + [ 8.7549353, 47.3331989 ], + [ 8.755128599999999, 47.3332507 ], + [ 8.755325599999999, 47.3332957 ], + [ 8.7555258, 47.3333335 ], + [ 8.7557286, 47.3333642 ], + [ 8.7559335, 47.3333876 ], + [ 8.75614, 47.3334037 ], + [ 8.7563474, 47.3334124 ], + [ 8.7565552, 47.3334137 ], + [ 8.7567628, 47.3334076 ], + [ 8.7569696, 47.3333942 ], + [ 8.7571752, 47.3333734 ], + [ 8.7573788, 47.3333453 ], + [ 8.75758, 47.33331 ], + [ 8.7577783, 47.3332677 ], + [ 8.7579729, 47.3332183 ], + [ 8.7581636, 47.333162 ], + [ 8.7583496, 47.3330991 ], + [ 8.758530499999999, 47.3330296 ], + [ 8.7587058, 47.3329537 ], + [ 8.7588751, 47.3328718 ], + [ 8.7590378, 47.3327839 ], + [ 8.7591935, 47.3326904 ], + [ 8.7593418, 47.3325914 ], + [ 8.7594823, 47.3324873 ], + [ 8.7596145, 47.3323784 ], + [ 8.7597382, 47.3322649 ], + [ 8.759853, 47.3321471 ], + [ 8.7599586, 47.3320254 ], + [ 8.7600547, 47.3319002 ], + [ 8.760141, 47.3317717 ], + [ 8.7602172, 47.3316403 ], + [ 8.7602833, 47.3315063 ], + [ 8.7603389, 47.3313702 ], + [ 8.760384, 47.3312323 ], + [ 8.7604185, 47.331093 ], + [ 8.7604421, 47.3309527 ], + [ 8.7604549, 47.3308117 ], + [ 8.7604569, 47.3306704 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0001", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Aathal", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Aathal", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Aathal", + "lang" : "it-CH" + }, + { + "text" : "Substation Aathal", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.7795936, 47.6573669 ], + [ 8.7795846, 47.6572258 ], + [ 8.7795646, 47.6570852 ], + [ 8.7795338, 47.6569455 ], + [ 8.7794922, 47.656807 ], + [ 8.7794399, 47.6566703 ], + [ 8.7793771, 47.6565355 ], + [ 8.779304, 47.6564032 ], + [ 8.7792207, 47.6562737 ], + [ 8.7791275, 47.6561472 ], + [ 8.7790246, 47.6560243 ], + [ 8.7789123, 47.6559051 ], + [ 8.778791, 47.6557901 ], + [ 8.7786609, 47.6556795 ], + [ 8.7785224, 47.6555737 ], + [ 8.7783759, 47.6554729 ], + [ 8.7782219, 47.6553774 ], + [ 8.7780606, 47.6552875 ], + [ 8.7778926, 47.6552035 ], + [ 8.7777183, 47.6551255 ], + [ 8.7775382, 47.6550537 ], + [ 8.7773528, 47.6549884 ], + [ 8.7771626, 47.6549298 ], + [ 8.7769681, 47.654878 ], + [ 8.7767699, 47.6548331 ], + [ 8.7765685, 47.6547953 ], + [ 8.7763644, 47.6547647 ], + [ 8.7761582, 47.6547413 ], + [ 8.7759505, 47.6547253 ], + [ 8.7757418, 47.6547166 ], + [ 8.7755328, 47.6547153 ], + [ 8.7753239, 47.6547214 ], + [ 8.7751158, 47.6547349 ], + [ 8.774909, 47.6547557 ], + [ 8.7747042, 47.6547838 ], + [ 8.7745017, 47.6548191 ], + [ 8.7743023, 47.6548615 ], + [ 8.7741065, 47.6549109 ], + [ 8.7739147, 47.6549672 ], + [ 8.7737276, 47.6550302 ], + [ 8.7735456, 47.6550997 ], + [ 8.7733692, 47.6551755 ], + [ 8.773199, 47.6552575 ], + [ 8.7730353, 47.6553454 ], + [ 8.7728787, 47.6554389 ], + [ 8.7727295, 47.6555379 ], + [ 8.7725882, 47.655642 ], + [ 8.7724551, 47.6557509 ], + [ 8.7723307, 47.6558645 ], + [ 8.7722152, 47.6559822 ], + [ 8.772109, 47.6561039 ], + [ 8.7720124, 47.6562291 ], + [ 8.7719256, 47.6563576 ], + [ 8.7718489, 47.656489 ], + [ 8.7717825, 47.656623 ], + [ 8.7717265, 47.6567591 ], + [ 8.7716812, 47.656897 ], + [ 8.7716466, 47.6570363 ], + [ 8.7716228, 47.6571766 ], + [ 8.77161, 47.6573176 ], + [ 8.771608, 47.6574588 ], + [ 8.7716171, 47.6576 ], + [ 8.771637, 47.6577406 ], + [ 8.7716678, 47.6578803 ], + [ 8.7717094, 47.6580187 ], + [ 8.7717616, 47.6581555 ], + [ 8.7718244, 47.6582902 ], + [ 8.771897599999999, 47.6584225 ], + [ 8.7719808, 47.6585521 ], + [ 8.772074, 47.6586785 ], + [ 8.7721769, 47.6588015 ], + [ 8.7722892, 47.6589207 ], + [ 8.7724105, 47.6590357 ], + [ 8.7725406, 47.6591463 ], + [ 8.772679, 47.6592521 ], + [ 8.7728255, 47.6593529 ], + [ 8.7729796, 47.6594484 ], + [ 8.7731409, 47.6595383 ], + [ 8.7733089, 47.6596223 ], + [ 8.7734832, 47.6597004 ], + [ 8.773663299999999, 47.6597721 ], + [ 8.7738487, 47.6598374 ], + [ 8.7740389, 47.659896 ], + [ 8.7742334, 47.6599478 ], + [ 8.7744316, 47.6599927 ], + [ 8.774633099999999, 47.6600305 ], + [ 8.7748372, 47.6600611 ], + [ 8.7750434, 47.660084499999996 ], + [ 8.7752511, 47.6601006 ], + [ 8.7754598, 47.6601093 ], + [ 8.7756689, 47.6601105 ], + [ 8.7758778, 47.6601044 ], + [ 8.7760859, 47.660091 ], + [ 8.776292699999999, 47.6600701 ], + [ 8.7764976, 47.660042 ], + [ 8.7767, 47.6600067 ], + [ 8.7768994, 47.6599643 ], + [ 8.7770953, 47.6599149 ], + [ 8.7772871, 47.6598586 ], + [ 8.7774742, 47.6597956 ], + [ 8.7776562, 47.6597261 ], + [ 8.7778326, 47.6596503 ], + [ 8.7780029, 47.6595683 ], + [ 8.7781666, 47.6594804 ], + [ 8.778323199999999, 47.6593868 ], + [ 8.7784724, 47.6592879 ], + [ 8.7786137, 47.6591838 ], + [ 8.7787467, 47.6590748 ], + [ 8.7788712, 47.6589613 ], + [ 8.7789866, 47.6588436 ], + [ 8.7790928, 47.6587219 ], + [ 8.7791894, 47.6585966 ], + [ 8.7792762, 47.6584681 ], + [ 8.7793529, 47.6583367 ], + [ 8.7794193, 47.6582027 ], + [ 8.7794752, 47.6580667 ], + [ 8.7795206, 47.6579288 ], + [ 8.7795551, 47.6577894 ], + [ 8.7795789, 47.6576491 ], + [ 8.7795917, 47.6575081 ], + [ 8.7795936, 47.6573669 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0106", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Schlattingen", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Schlattingen", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Schlattingen", + "lang" : "it-CH" + }, + { + "text" : "Substation Schlattingen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8453102999999995, 47.3795831 ], + [ 7.8453339, 47.3796332 ], + [ 7.8456118, 47.3797328 ], + [ 7.8459774, 47.3798194 ], + [ 7.8464496, 47.3799339 ], + [ 7.8465558, 47.3799335 ], + [ 7.8465877, 47.3798675 ], + [ 7.8465504, 47.3798268 ], + [ 7.8462541, 47.3797367 ], + [ 7.8458051, 47.379619 ], + [ 7.8454949, 47.379551 ], + [ 7.8453608, 47.3795295 ], + [ 7.8453102999999995, 47.3795831 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns201", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Hecken-Komplex Schmutzberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Hecken-Komplex Schmutzberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Hecken-Komplex Schmutzberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Hecken-Komplex Schmutzberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.9245223, 46.0285673 ], + [ 8.9245131, 46.0284262 ], + [ 8.9244934, 46.0282856 ], + [ 8.9244631, 46.0281459 ], + [ 8.9244224, 46.0280075 ], + [ 8.9243713, 46.0278707 ], + [ 8.92431, 46.0277361 ], + [ 8.9242387, 46.0276038 ], + [ 8.9241575, 46.0274743 ], + [ 8.9240668, 46.027348 ], + [ 8.9239666, 46.0272251 ], + [ 8.9238574, 46.0271061 ], + [ 8.9237394, 46.0269911 ], + [ 8.9236129, 46.0268807 ], + [ 8.9234782, 46.026775 ], + [ 8.9233359, 46.0266744 ], + [ 8.9231861, 46.0265791 ], + [ 8.9230294, 46.0264894 ], + [ 8.9228662, 46.0264055 ], + [ 8.9226969, 46.0263277 ], + [ 8.922522, 46.0262562 ], + [ 8.922342, 46.0261911 ], + [ 8.9221573, 46.0261327 ], + [ 8.9219685, 46.0260812 ], + [ 8.921776, 46.0260365 ], + [ 8.9215805, 46.025999 ], + [ 8.9213824, 46.0259686 ], + [ 8.9211823, 46.0259455 ], + [ 8.9209808, 46.0259297 ], + [ 8.9207783, 46.0259212 ], + [ 8.9205755, 46.0259202 ], + [ 8.9203729, 46.0259266 ], + [ 8.920171, 46.0259403 ], + [ 8.9199705, 46.0259614 ], + [ 8.9197718, 46.0259898 ], + [ 8.9195755, 46.0260253 ], + [ 8.9193821, 46.026068 ], + [ 8.9191923, 46.0261177 ], + [ 8.9190064, 46.0261742 ], + [ 8.918825, 46.0262374 ], + [ 8.9186486, 46.0263072 ], + [ 8.9184777, 46.0263833 ], + [ 8.9183127, 46.0264655 ], + [ 8.9181542, 46.0265536 ], + [ 8.9180025, 46.0266473 ], + [ 8.917858, 46.0267465 ], + [ 8.917721199999999, 46.0268508 ], + [ 8.9175924, 46.0269599 ], + [ 8.917472, 46.0270736 ], + [ 8.9173602, 46.0271916 ], + [ 8.9172575, 46.0273134 ], + [ 8.9171641, 46.0274388 ], + [ 8.9170803, 46.0275675 ], + [ 8.9170062, 46.027699 ], + [ 8.9169421, 46.027833 ], + [ 8.9168882, 46.0279692 ], + [ 8.9168446, 46.0281072 ], + [ 8.9168114, 46.0282466 ], + [ 8.9167887, 46.028387 ], + [ 8.9167766, 46.028528 ], + [ 8.9167751, 46.0286693 ], + [ 8.9167842, 46.0288104 ], + [ 8.9168039, 46.0289511 ], + [ 8.9168342, 46.0290908 ], + [ 8.9168749, 46.0292292 ], + [ 8.916926, 46.0293659 ], + [ 8.9169872, 46.0295006 ], + [ 8.9170585, 46.0296328 ], + [ 8.9171397, 46.0297623 ], + [ 8.9172304, 46.0298887 ], + [ 8.9173306, 46.0300116 ], + [ 8.9174398, 46.0301306 ], + [ 8.9175578, 46.0302455 ], + [ 8.9176843, 46.030356 ], + [ 8.9178189, 46.0304617 ], + [ 8.9179613, 46.0305623 ], + [ 8.918111, 46.0306576 ], + [ 8.9182677, 46.0307473 ], + [ 8.918431, 46.0308312 ], + [ 8.9186003, 46.030909 ], + [ 8.9187752, 46.0309805 ], + [ 8.9189552, 46.0310456 ], + [ 8.9191399, 46.031104 ], + [ 8.9193288, 46.0311556 ], + [ 8.9195212, 46.0312002 ], + [ 8.9197168, 46.0312378 ], + [ 8.9199149, 46.0312682 ], + [ 8.920115, 46.0312913 ], + [ 8.9203165, 46.0313071 ], + [ 8.920519, 46.0313155 ], + [ 8.9207219, 46.0313165 ], + [ 8.9209245, 46.0313102 ], + [ 8.9211264, 46.0312964 ], + [ 8.921327, 46.0312754 ], + [ 8.9215257, 46.031247 ], + [ 8.921721999999999, 46.0312114 ], + [ 8.9219153, 46.0311687 ], + [ 8.9221052, 46.0311191 ], + [ 8.9222911, 46.0310625 ], + [ 8.9224725, 46.0309993 ], + [ 8.9226489, 46.0309296 ], + [ 8.9228199, 46.0308535 ], + [ 8.9229848, 46.0307713 ], + [ 8.9231434, 46.0306831 ], + [ 8.9232951, 46.0305894 ], + [ 8.9234396, 46.0304902 ], + [ 8.9235764, 46.0303859 ], + [ 8.9237052, 46.0302767 ], + [ 8.9238256, 46.030163 ], + [ 8.9239373, 46.0300451 ], + [ 8.92404, 46.0299233 ], + [ 8.9241334, 46.0297978 ], + [ 8.9242172, 46.0296692 ], + [ 8.9242913, 46.0295377 ], + [ 8.9243554, 46.0294036 ], + [ 8.9244093, 46.0292674 ], + [ 8.9244529, 46.0291294 ], + [ 8.9244861, 46.02899 ], + [ 8.9245087, 46.0288497 ], + [ 8.9245208, 46.0287086 ], + [ 8.9245223, 46.0285673 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0068", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Manno", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Manno", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Manno", + "lang" : "it-CH" + }, + { + "text" : "Substation Manno", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7586357, 47.4527561 ], + [ 7.7582376, 47.452576 ], + [ 7.7580527, 47.4524776 ], + [ 7.7580451, 47.4524919 ], + [ 7.7576823, 47.4523354 ], + [ 7.7570397, 47.452212 ], + [ 7.7564336, 47.4521321 ], + [ 7.7558872, 47.4521353 ], + [ 7.7551433, 47.4521114 ], + [ 7.7548117, 47.452083 ], + [ 7.7542857, 47.4519952 ], + [ 7.7539323, 47.4519624 ], + [ 7.7539121, 47.4519627 ], + [ 7.753907, 47.4520253 ], + [ 7.7538614, 47.4521998 ], + [ 7.7538529, 47.4522396 ], + [ 7.7538195, 47.4522951 ], + [ 7.7537399, 47.4523496 ], + [ 7.7537287, 47.4523884 ], + [ 7.7538058, 47.4525356 ], + [ 7.7540192999999995, 47.4525557 ], + [ 7.7540165, 47.4527418 ], + [ 7.7534906, 47.4527433 ], + [ 7.7534822, 47.4525988 ], + [ 7.7534381, 47.4525931 ], + [ 7.7533763, 47.4525825 ], + [ 7.7533155, 47.4525696 ], + [ 7.7532667, 47.4525598 ], + [ 7.7532174, 47.4525515 ], + [ 7.7531675, 47.4525446 ], + [ 7.7531319, 47.4525432 ], + [ 7.7530963, 47.4525442 ], + [ 7.753061, 47.4525474 ], + [ 7.7530263, 47.4525529 ], + [ 7.7528584, 47.452582 ], + [ 7.7526801, 47.4526163 ], + [ 7.7526523, 47.4526224 ], + [ 7.7525994, 47.4526391 ], + [ 7.7525509, 47.4526613 ], + [ 7.7524879, 47.4526927 ], + [ 7.7524115, 47.4527404 ], + [ 7.7516089, 47.4532271 ], + [ 7.7514164999999995, 47.4533506 ], + [ 7.7511247, 47.453552 ], + [ 7.7510052, 47.4536422 ], + [ 7.7509291000000005, 47.4537436 ], + [ 7.7508766, 47.4538143 ], + [ 7.7505933, 47.4541962 ], + [ 7.750483, 47.45436 ], + [ 7.7501477, 47.454882 ], + [ 7.749811, 47.4554057 ], + [ 7.7494743, 47.4559285 ], + [ 7.749332, 47.456138 ], + [ 7.7491733, 47.4563415 ], + [ 7.7488102, 47.4567701 ], + [ 7.7486363, 47.4569609 ], + [ 7.748439, 47.457142 ], + [ 7.7487215, 47.4573208 ], + [ 7.7491103, 47.4575309 ], + [ 7.7495327, 47.4577378 ], + [ 7.749718, 47.4577992 ], + [ 7.7497913, 47.4578235 ], + [ 7.7503728, 47.4580793 ], + [ 7.7503568, 47.4582134 ], + [ 7.7503795, 47.4584401 ], + [ 7.7503877, 47.458646 ], + [ 7.7503896, 47.4588731 ], + [ 7.7504767, 47.4589983 ], + [ 7.7505220999999995, 47.4590647 ], + [ 7.7505502, 47.4592087 ], + [ 7.750581, 47.4593329 ], + [ 7.7505899, 47.4593693 ], + [ 7.7506461, 47.4595062 ], + [ 7.7506978, 47.4596516 ], + [ 7.7506199, 47.4597856 ], + [ 7.7505455, 47.4598761 ], + [ 7.7504171, 47.4599527 ], + [ 7.750214, 47.4600728 ], + [ 7.7502286, 47.4600829 ], + [ 7.7502443, 47.4600921 ], + [ 7.750261, 47.4601003 ], + [ 7.7502788, 47.4601075 ], + [ 7.7502973, 47.4601136 ], + [ 7.7505021, 47.460222 ], + [ 7.7506725, 47.4603119 ], + [ 7.7509518, 47.460461 ], + [ 7.7512753, 47.460797 ], + [ 7.751349, 47.4608677 ], + [ 7.7514959999999995, 47.4609985 ], + [ 7.7516301, 47.4611062 ], + [ 7.7518071, 47.4612202 ], + [ 7.7521273, 47.4614249 ], + [ 7.7522664, 47.4615079 ], + [ 7.7524209, 47.4615624 ], + [ 7.7526278, 47.4616292 ], + [ 7.7528224, 47.4616969 ], + [ 7.7529291, 47.4617296 ], + [ 7.7529506, 47.4617397 ], + [ 7.7529949, 47.4617526 ], + [ 7.7530989, 47.4617891 ], + [ 7.75317, 47.4618103 ], + [ 7.7532406, 47.4618208 ], + [ 7.7534945, 47.4618786 ], + [ 7.7536465, 47.4619171 ], + [ 7.7537381, 47.46194 ], + [ 7.7537901, 47.4619439 ], + [ 7.754107, 47.4617551 ], + [ 7.7543453, 47.4607722 ], + [ 7.7545805, 47.4598722 ], + [ 7.7548306, 47.4587264 ], + [ 7.7550460999999995, 47.4578046 ], + [ 7.7560715, 47.4573035 ], + [ 7.7568775, 47.4569795 ], + [ 7.7576753, 47.4566728 ], + [ 7.7578073, 47.4566181 ], + [ 7.7593464, 47.4559803 ], + [ 7.7597647, 47.4558069 ], + [ 7.7594945, 47.4553759 ], + [ 7.7594118, 47.4551907 ], + [ 7.7591467, 47.45499 ], + [ 7.7588163, 47.4547397 ], + [ 7.7587132, 47.4542131 ], + [ 7.7588503, 47.4539438 ], + [ 7.7590858, 47.4534843 ], + [ 7.7592731, 47.4529482 ], + [ 7.7592661, 47.452947 ], + [ 7.7589764, 47.4528776 ], + [ 7.7586357, 47.4527561 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns311", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Landschachen - Huppergruben", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Landschachen - Huppergruben", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Landschachen - Huppergruben", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Landschachen - Huppergruben", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8076215, 47.4381334 ], + [ 7.8075404, 47.4381812 ], + [ 7.8074966, 47.4381701 ], + [ 7.8074224, 47.4380926 ], + [ 7.8072256, 47.4379798 ], + [ 7.8071264, 47.437923 ], + [ 7.8070181, 47.4378308 ], + [ 7.8068976, 47.4379264 ], + [ 7.8066778, 47.4378917 ], + [ 7.8066086, 47.4378807 ], + [ 7.806537, 47.4378695 ], + [ 7.8065175, 47.4378586 ], + [ 7.8064948, 47.4378459 ], + [ 7.8064503, 47.4378211 ], + [ 7.8061438, 47.4377804 ], + [ 7.8060632, 47.4376957 ], + [ 7.8059405, 47.4376784 ], + [ 7.8058954, 47.4375777 ], + [ 7.8057682, 47.4374579 ], + [ 7.8055316999999995, 47.4373174 ], + [ 7.8055132, 47.4373064 ], + [ 7.8053809, 47.4372279 ], + [ 7.8052382, 47.4371208 ], + [ 7.8050507, 47.4370439 ], + [ 7.8049664, 47.4366201 ], + [ 7.8048454, 47.4366428 ], + [ 7.8044564, 47.4366888 ], + [ 7.8044697, 47.4367067 ], + [ 7.8044498, 47.4367154 ], + [ 7.8044225, 47.4367222 ], + [ 7.8041102, 47.4366867 ], + [ 7.8039542, 47.436628 ], + [ 7.8037905, 47.4365664 ], + [ 7.803517, 47.4364635 ], + [ 7.8031887, 47.4363119 ], + [ 7.80298, 47.4362155 ], + [ 7.8024234, 47.4360661 ], + [ 7.8023977, 47.4359496 ], + [ 7.8023655, 47.4358033 ], + [ 7.8021815, 47.4356694 ], + [ 7.8020148, 47.4356782 ], + [ 7.8019599, 47.4356812 ], + [ 7.8008089, 47.436424 ], + [ 7.8008616, 47.4364431 ], + [ 7.8009006, 47.4364573 ], + [ 7.800992, 47.4364847 ], + [ 7.8010835, 47.4365121 ], + [ 7.8011036, 47.4365167 ], + [ 7.8011304, 47.436523 ], + [ 7.8012476, 47.4365502 ], + [ 7.8013056, 47.4365637 ], + [ 7.8016885, 47.4366528 ], + [ 7.8017888, 47.4366761 ], + [ 7.8018646, 47.4366937 ], + [ 7.8025731, 47.4368696 ], + [ 7.8026962, 47.4369001 ], + [ 7.8029157, 47.4369635 ], + [ 7.8029447, 47.4369718 ], + [ 7.8030786, 47.4370105 ], + [ 7.803153, 47.4370462 ], + [ 7.8032646, 47.4370998 ], + [ 7.803267, 47.4371013 ], + [ 7.8033244, 47.4371356 ], + [ 7.8033651, 47.43716 ], + [ 7.8033746, 47.4371656 ], + [ 7.8035983, 47.4372994 ], + [ 7.8036644, 47.4373352 ], + [ 7.8038158, 47.4374171 ], + [ 7.8038988, 47.4374619 ], + [ 7.8039165, 47.4374715 ], + [ 7.8039606, 47.4374953 ], + [ 7.8039608, 47.4374954 ], + [ 7.8040563, 47.4375388 ], + [ 7.8043326, 47.4376642 ], + [ 7.8048448, 47.4378645 ], + [ 7.8049665, 47.4379185 ], + [ 7.8050037, 47.437935 ], + [ 7.8050232, 47.4379437 ], + [ 7.8051241000000005, 47.4380107 ], + [ 7.8051319, 47.4380159 ], + [ 7.8051779, 47.4380464 ], + [ 7.8053999, 47.438234 ], + [ 7.8055261, 47.4383582 ], + [ 7.8056539, 47.4384841 ], + [ 7.8056626, 47.4384927 ], + [ 7.8056935, 47.438523 ], + [ 7.8058505, 47.4386777 ], + [ 7.8060808, 47.4388931 ], + [ 7.8061274, 47.4389324 ], + [ 7.806392, 47.4391554 ], + [ 7.8064051, 47.4391664 ], + [ 7.8065286, 47.4392705 ], + [ 7.8066344, 47.4393503 ], + [ 7.8067215, 47.4393929 ], + [ 7.8067630999999995, 47.4394132 ], + [ 7.8069352, 47.4394811 ], + [ 7.8071164, 47.4395313 ], + [ 7.807313, 47.4395527 ], + [ 7.8080581, 47.4394661 ], + [ 7.8079667, 47.439224 ], + [ 7.8079611, 47.4392091 ], + [ 7.8079464, 47.43917 ], + [ 7.8079437, 47.4390041 ], + [ 7.8079501, 47.438966 ], + [ 7.8079706, 47.4388447 ], + [ 7.807999, 47.4386685 ], + [ 7.8081268999999995, 47.4388529 ], + [ 7.8081686, 47.438738 ], + [ 7.8081903, 47.4386401 ], + [ 7.8082741, 47.4381542 ], + [ 7.8083482, 47.4376027 ], + [ 7.8083552, 47.4374221 ], + [ 7.8083884, 47.4372397 ], + [ 7.8084121, 47.4368442 ], + [ 7.8084502, 47.436256 ], + [ 7.8084877, 47.4356712 ], + [ 7.8085001, 47.4352677 ], + [ 7.8084988, 47.4349736 ], + [ 7.8084862, 47.4348355 ], + [ 7.8084734000000005, 47.4346293 ], + [ 7.8083234, 47.4345248 ], + [ 7.8080692, 47.4340216 ], + [ 7.8080992, 47.4342403 ], + [ 7.8081487, 47.4345701 ], + [ 7.8082071, 47.4350427 ], + [ 7.8082214, 47.4351519 ], + [ 7.8082076, 47.4353222 ], + [ 7.8081787, 47.4353958 ], + [ 7.8081355, 47.4354678 ], + [ 7.8080119, 47.4355975 ], + [ 7.8079048, 47.4357099 ], + [ 7.8078701, 47.4358629 ], + [ 7.8078326, 47.4360282 ], + [ 7.8077855, 47.4362356 ], + [ 7.8077003, 47.4362627 ], + [ 7.8077442, 47.4363373 ], + [ 7.8077767, 47.4363927 ], + [ 7.8078189, 47.4365297 ], + [ 7.8078305, 47.4366706 ], + [ 7.8078126, 47.4370249 ], + [ 7.8077783, 47.4373716 ], + [ 7.8077485, 47.4375267 ], + [ 7.8077193, 47.4376785 ], + [ 7.8076411, 47.4379919 ], + [ 7.8076215, 47.4381334 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr154", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Reckenacker", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Reckenacker", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Reckenacker", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Reckenacker", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8797803, 47.4140886 ], + [ 7.8803849, 47.4135286 ], + [ 7.8804757, 47.4136431 ], + [ 7.8806899, 47.4135632 ], + [ 7.8814798, 47.4133287 ], + [ 7.8814371, 47.4134059 ], + [ 7.8813921, 47.4134735 ], + [ 7.8813230999999995, 47.4135073 ], + [ 7.881322, 47.413644 ], + [ 7.8813402, 47.4137028 ], + [ 7.8813805, 47.4140157 ], + [ 7.8814844, 47.4142433 ], + [ 7.8816649, 47.4143478 ], + [ 7.881692, 47.4143091 ], + [ 7.8816632, 47.4142683 ], + [ 7.8816358, 47.4142277 ], + [ 7.8816146, 47.4141916 ], + [ 7.8815866, 47.414136 ], + [ 7.8815653, 47.4140828 ], + [ 7.8815287, 47.413971 ], + [ 7.8815095, 47.4139293 ], + [ 7.8814962, 47.413873 ], + [ 7.8814944, 47.4138594 ], + [ 7.8814965, 47.4138469 ], + [ 7.8815223, 47.4137711 ], + [ 7.8815309, 47.4137292 ], + [ 7.8815496, 47.4136735 ], + [ 7.8815494, 47.4136682 ], + [ 7.8815455, 47.4136617 ], + [ 7.8815296, 47.4136461 ], + [ 7.881522, 47.4136311 ], + [ 7.88152, 47.4136139 ], + [ 7.8815238999999995, 47.4135215 ], + [ 7.8815311999999995, 47.4134714 ], + [ 7.8815551, 47.4133536 ], + [ 7.8815562, 47.4133379 ], + [ 7.8815542, 47.4133158 ], + [ 7.881549, 47.4132959 ], + [ 7.8815414, 47.4132819 ], + [ 7.8815275, 47.413268 ], + [ 7.8814779999999995, 47.413248 ], + [ 7.8814496, 47.4132551 ], + [ 7.8810839, 47.4133649 ], + [ 7.8807692, 47.4134471 ], + [ 7.8805334, 47.413502 ], + [ 7.8804543, 47.4133572 ], + [ 7.880278, 47.4134475 ], + [ 7.8800757, 47.4136068 ], + [ 7.8800007, 47.4137093 ], + [ 7.8796477, 47.4140099 ], + [ 7.8797803, 47.4140886 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns186", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Mapprach - Hofmatt", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Mapprach - Hofmatt", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Mapprach - Hofmatt", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Mapprach - Hofmatt", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.552433, 47.4901393 ], + [ 7.5523458, 47.4901536 ], + [ 7.5524348, 47.4903908 ], + [ 7.552533, 47.4906253 ], + [ 7.5526408, 47.4908619 ], + [ 7.5528088, 47.4911713 ], + [ 7.5530119, 47.4914706 ], + [ 7.5532255, 47.4917656 ], + [ 7.5532996, 47.4917393 ], + [ 7.5530872, 47.4914474 ], + [ 7.5528977, 47.491147 ], + [ 7.5527657999999995, 47.4909055 ], + [ 7.5527313, 47.4908411 ], + [ 7.5527066, 47.4907898 ], + [ 7.552621, 47.4906077 ], + [ 7.5525231, 47.4903745 ], + [ 7.552433, 47.4901393 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns021", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Marbach", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Marbach", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Marbach", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Marbach", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6041101, 47.4605166 ], + [ 7.6041142, 47.4605094 ], + [ 7.6043379, 47.4601854 ], + [ 7.6043489, 47.4601685 ], + [ 7.604464, 47.4600006 ], + [ 7.6046366, 47.4598509 ], + [ 7.6047186, 47.4597784 ], + [ 7.6046864, 47.4596347 ], + [ 7.6045357, 47.459517 ], + [ 7.6043439, 47.4593621 ], + [ 7.6039821, 47.4592268 ], + [ 7.6038806, 47.4591754 ], + [ 7.6035797, 47.4590425 ], + [ 7.6035733, 47.4590196 ], + [ 7.603485, 47.4587791 ], + [ 7.6031159, 47.4585544 ], + [ 7.6031215, 47.4585016 ], + [ 7.6031214, 47.4584388 ], + [ 7.6027921, 47.4582424 ], + [ 7.6026374, 47.4581338 ], + [ 7.6025459, 47.4580734 ], + [ 7.6021619000000005, 47.458059 ], + [ 7.6021587, 47.4580552 ], + [ 7.6021551, 47.458055 ], + [ 7.6020544999999995, 47.4579305 ], + [ 7.602007, 47.4578736 ], + [ 7.6016175, 47.4575446 ], + [ 7.6013783, 47.4573516 ], + [ 7.6011938, 47.4572082 ], + [ 7.601154, 47.4571942 ], + [ 7.6008843, 47.4571113 ], + [ 7.6007182, 47.4568018 ], + [ 7.6005307, 47.4567008 ], + [ 7.600398, 47.4566411 ], + [ 7.6000945, 47.4565717 ], + [ 7.600074, 47.4565527 ], + [ 7.5999816, 47.4563893 ], + [ 7.5999832, 47.4563446 ], + [ 7.599832, 47.456007 ], + [ 7.5996678, 47.455689 ], + [ 7.5993061, 47.4548326 ], + [ 7.5992451, 47.4546962 ], + [ 7.598684, 47.4543645 ], + [ 7.5981261, 47.4540071 ], + [ 7.5979664, 47.4538847 ], + [ 7.5977651, 47.4537292 ], + [ 7.5975351, 47.453605 ], + [ 7.5973166, 47.4534768 ], + [ 7.5970751, 47.4533331 ], + [ 7.5969194, 47.4531113 ], + [ 7.5967134, 47.4528264 ], + [ 7.5965753, 47.4527098 ], + [ 7.5964545999999995, 47.4526671 ], + [ 7.5961438, 47.4523872 ], + [ 7.5957467, 47.4520452 ], + [ 7.5952611999999995, 47.4518755 ], + [ 7.5947556, 47.451701 ], + [ 7.5944339, 47.4516352 ], + [ 7.5939457, 47.4514996 ], + [ 7.593647, 47.4514455 ], + [ 7.5934577, 47.4514691 ], + [ 7.5927868, 47.4517143 ], + [ 7.5919149, 47.451914 ], + [ 7.5908767, 47.4521685 ], + [ 7.5905667999999995, 47.4522117 ], + [ 7.5899702, 47.4523273 ], + [ 7.589517, 47.4524408 ], + [ 7.5892017, 47.4525853 ], + [ 7.5884909, 47.4529405 ], + [ 7.5882217, 47.4531394 ], + [ 7.5879182, 47.4533812 ], + [ 7.5876947999999995, 47.4535606 ], + [ 7.587673, 47.4536844 ], + [ 7.5876811, 47.4537845 ], + [ 7.587862, 47.4538426 ], + [ 7.5882022, 47.4538685 ], + [ 7.5883748, 47.4540084 ], + [ 7.5883751, 47.4541077 ], + [ 7.588341, 47.4542187 ], + [ 7.5884271, 47.4542244 ], + [ 7.5889692, 47.4541011 ], + [ 7.5895542, 47.4539252 ], + [ 7.5901049, 47.4537901 ], + [ 7.5909484, 47.4536722 ], + [ 7.5911511, 47.4536472 ], + [ 7.5911506, 47.4536456 ], + [ 7.5917101, 47.4535865 ], + [ 7.5923038, 47.4535099 ], + [ 7.5933079, 47.453271 ], + [ 7.5935084, 47.4531549 ], + [ 7.5939002, 47.4531612 ], + [ 7.5939607, 47.4532292 ], + [ 7.5946336, 47.4531874 ], + [ 7.5951759, 47.4531322 ], + [ 7.5954775, 47.4531999 ], + [ 7.5955984999999995, 47.4533701 ], + [ 7.5961927, 47.4538667 ], + [ 7.5963641, 47.4540981 ], + [ 7.5964954, 47.4543364 ], + [ 7.5966612, 47.454599 ], + [ 7.5967321, 47.4548033 ], + [ 7.5973551, 47.4548433 ], + [ 7.5976067, 47.4550201 ], + [ 7.5977781, 47.4552379 ], + [ 7.59805, 47.455442 ], + [ 7.598171, 47.4555849 ], + [ 7.5982525, 47.4559595 ], + [ 7.5987057, 47.4563472 ], + [ 7.5996442, 47.4572745 ], + [ 7.6006522, 47.4584246 ], + [ 7.6010168, 47.4589185 ], + [ 7.601133, 47.4591052 ], + [ 7.6011466, 47.459113 ], + [ 7.6016814, 47.4594072 ], + [ 7.6020435, 47.4595527 ], + [ 7.6022849, 47.4596575 ], + [ 7.6025783, 47.459844 ], + [ 7.6028974, 47.4600187 ], + [ 7.6032250999999995, 47.4601643 ], + [ 7.6035527, 47.4602631 ], + [ 7.6037682, 47.4603504 ], + [ 7.6039236, 47.4604728 ], + [ 7.6041101, 47.4605166 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr016", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Schlossgrabe", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Schlossgrabe", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Schlossgrabe", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Schlossgrabe", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.2272365, 47.4942847 ], + [ 8.2273081, 47.4942935 ], + [ 8.2281283, 47.4938853 ], + [ 8.2290618, 47.4934208 ], + [ 8.2295498, 47.4931773 ], + [ 8.2304794, 47.4927133 ], + [ 8.2312506, 47.4923284 ], + [ 8.2312645, 47.4922767 ], + [ 8.2304301, 47.4913999 ], + [ 8.2301278, 47.4910815 ], + [ 8.230028, 47.4909539 ], + [ 8.2299598, 47.4908178 ], + [ 8.229906, 47.4907174 ], + [ 8.2299028, 47.4907147 ], + [ 8.2298993, 47.4907121 ], + [ 8.2298956, 47.4907096 ], + [ 8.2298917, 47.4907074 ], + [ 8.2298875, 47.4907053 ], + [ 8.2298832, 47.4907034 ], + [ 8.2298786, 47.4907017 ], + [ 8.229874, 47.4907002 ], + [ 8.2298692, 47.4906989 ], + [ 8.2298642, 47.4906978 ], + [ 8.2298592, 47.490697 ], + [ 8.2298541, 47.4906964 ], + [ 8.229849, 47.490696 ], + [ 8.2298437, 47.4906958 ], + [ 8.2298383, 47.4906959 ], + [ 8.229833, 47.4906962 ], + [ 8.2298277, 47.4906968 ], + [ 8.2298225, 47.4906976 ], + [ 8.2298174, 47.4906986 ], + [ 8.2298124, 47.4906999 ], + [ 8.229807600000001, 47.4907014 ], + [ 8.2298029, 47.4907031 ], + [ 8.2297984, 47.490705 ], + [ 8.2297941, 47.4907072 ], + [ 8.22979, 47.4907095 ], + [ 8.2297861, 47.490712 ], + [ 8.2291532, 47.4910617 ], + [ 8.2280855, 47.4916512 ], + [ 8.2271777, 47.4921519 ], + [ 8.2270133, 47.4922138 ], + [ 8.2259094, 47.4928235 ], + [ 8.2258973, 47.4928763 ], + [ 8.2263995, 47.4934042 ], + [ 8.226486, 47.4934948 ], + [ 8.2272365, 47.4942847 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VBS_20", + "country" : "CHE", + "name" : [ + { + "text" : "VBS_20 Brugg", + "lang" : "de-CH" + }, + { + "text" : "VBS_20 Brugg", + "lang" : "fr-CH" + }, + { + "text" : "VBS_20 Brugg", + "lang" : "it-CH" + }, + { + "text" : "VBS_20 Brugg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "regulationExemption" : "YES", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Eidgenössisches Departement für Verteidigung, Bevölkerungsschutz und Sport (VBS)", + "lang" : "de-CH" + }, + { + "text" : "Département fédéral de la défense, de la protection de la population et des sports (DDPS)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento federale della difesa, della protezione della popolazione e dello sport (DDPS)", + "lang" : "it-CH" + }, + { + "text" : "Federal Department of Defence, Civil Protection and Sport (DDPS)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Lageverfolgungszentrum der Armee LVZ A", + "lang" : "de-CH" + }, + { + "text" : "Centre de suivi de la situation de l’armée, CSS A", + "lang" : "fr-CH" + }, + { + "text" : "Centro di monitoraggio della situazione dell’esercito, Centro mon sit Es", + "lang" : "it-CH" + }, + { + "text" : "Joint Operation Center, JOC", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vtg.admin.ch/en/joint-operations-command", + "email" : "lvz.op@vtg.admin.ch", + "phone" : "+41 58 464 96 43", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.6223278, 47.4574758 ], + [ 9.6220738, 47.4572329 ], + [ 9.6199573, 47.4554157 ], + [ 9.617706, 47.4536747 ], + [ 9.6153256, 47.4520146 ], + [ 9.6128225, 47.4504397 ], + [ 9.6102034, 47.4489543 ], + [ 9.6074751, 47.4475623 ], + [ 9.604645, 47.4462673 ], + [ 9.6017204, 47.4450728 ], + [ 9.5987093, 47.4439819 ], + [ 9.5956194, 47.4429975 ], + [ 9.5924591, 47.4421223 ], + [ 9.5892366, 47.4413585 ], + [ 9.5859606, 47.4407081 ], + [ 9.5826396, 47.440173 ], + [ 9.5792825, 47.4397544 ], + [ 9.5758981, 47.4394536 ], + [ 9.5724953, 47.4392713 ], + [ 9.569083299999999, 47.4392079 ], + [ 9.565671, 47.4392637 ], + [ 9.5622674, 47.4394385 ], + [ 9.5588816, 47.4397318 ], + [ 9.5415152, 47.4415442 ], + [ 9.5381001, 47.4419627 ], + [ 9.5347219, 47.4425017 ], + [ 9.5313898, 47.4431598 ], + [ 9.528113, 47.4439353 ], + [ 9.5249004, 47.4448259 ], + [ 9.5217608, 47.4458293 ], + [ 9.5187028, 47.4469427 ], + [ 9.5157347, 47.4481631 ], + [ 9.5128647, 47.449487 ], + [ 9.5101006, 47.450911 ], + [ 9.5074501, 47.4524311 ], + [ 9.5049203, 47.4540432 ], + [ 9.5025182, 47.4557428 ], + [ 9.5002504, 47.4575253 ], + [ 9.4981231, 47.4593858 ], + [ 9.4961422, 47.4613192 ], + [ 9.494313, 47.4633203 ], + [ 9.4926406, 47.4653835 ], + [ 9.4911297, 47.4675032 ], + [ 9.4897843, 47.4696736 ], + [ 9.4886081, 47.4718888 ], + [ 9.4876045, 47.4741426 ], + [ 9.4867761, 47.476429 ], + [ 9.4861253, 47.4787416 ], + [ 9.485653899999999, 47.4810742 ], + [ 9.4853631, 47.4834202 ], + [ 9.4852539, 47.4857734 ], + [ 9.4853265, 47.4881272 ], + [ 9.4855808, 47.4904752 ], + [ 9.486016, 47.492811 ], + [ 9.4866311, 47.4951281 ], + [ 9.4874243, 47.4974203 ], + [ 9.4883935, 47.4996811 ], + [ 9.4895361, 47.5019045 ], + [ 9.4908489, 47.5040842 ], + [ 9.4923284, 47.5062145 ], + [ 9.4939705, 47.5082893 ], + [ 9.4957708, 47.5103029 ], + [ 9.4977242, 47.51225 ], + [ 9.4998256, 47.5141251 ], + [ 9.5020691, 47.5159231 ], + [ 9.5044485, 47.517639 ], + [ 9.5069574, 47.5192681 ], + [ 9.5095889, 47.520806 ], + [ 9.5123357, 47.5222485 ], + [ 9.5151904, 47.5235915 ], + [ 9.518145, 47.5248314 ], + [ 9.5211916, 47.5259647 ], + [ 9.5243217, 47.5269885 ], + [ 9.5275266, 47.5278998 ], + [ 9.5307978, 47.5286961 ], + [ 9.534126, 47.5293753 ], + [ 9.5375023, 47.5299355 ], + [ 9.540917199999999, 47.5303751 ], + [ 9.5443615, 47.5306931 ], + [ 9.5478257, 47.5308883 ], + [ 9.5513003, 47.5309604 ], + [ 9.5547756, 47.530909199999996 ], + [ 9.5582422, 47.5307347 ], + [ 9.5596591, 47.5306126 ], + [ 9.5618255, 47.5045585 ], + [ 9.5612987, 47.5000845 ], + [ 9.5612549, 47.4993162 ], + [ 9.5613034, 47.498548 ], + [ 9.561444, 47.497785 ], + [ 9.5616756, 47.4970323 ], + [ 9.5619967, 47.4962948 ], + [ 9.5624053, 47.4955775 ], + [ 9.5626683, 47.4952089 ], + [ 9.5628985, 47.4948851 ], + [ 9.5634732, 47.4942222 ], + [ 9.5641255, 47.4935931 ], + [ 9.5648512, 47.493002 ], + [ 9.5656453, 47.4924529 ], + [ 9.5665026, 47.4919494 ], + [ 9.5766773, 47.48645 ], + [ 9.5787171, 47.4853472 ], + [ 9.5792268, 47.4850609 ], + [ 9.5797185, 47.4847605 ], + [ 9.5801913, 47.4844465 ], + [ 9.5806445, 47.4841194 ], + [ 9.5810772, 47.4837799 ], + [ 9.5814887, 47.4834284 ], + [ 9.5818749, 47.4830658 ], + [ 9.5822386, 47.4826927 ], + [ 9.5825792, 47.4823097 ], + [ 9.5828961, 47.4819174 ], + [ 9.583188700000001, 47.4815166 ], + [ 9.5834566, 47.4811079 ], + [ 9.5929598, 47.465846 ], + [ 9.5932131, 47.4654726 ], + [ 9.5934871, 47.4651061 ], + [ 9.5937814, 47.4647469 ], + [ 9.594081, 47.4644101 ], + [ 9.5946985, 47.4637296 ], + [ 9.5948785, 47.4635443 ], + [ 9.595075, 47.4633669 ], + [ 9.5952872, 47.463198 ], + [ 9.5955144, 47.4630384 ], + [ 9.5957557, 47.4628885 ], + [ 9.5960102, 47.462749 ], + [ 9.5962768, 47.4626204 ], + [ 9.5965546, 47.4625032 ], + [ 9.5968426, 47.4623978 ], + [ 9.5971396, 47.4623046 ], + [ 9.5974445, 47.4622241 ], + [ 9.5977561, 47.4621564 ], + [ 9.600351, 47.4616525 ], + [ 9.6004828, 47.4616294 ], + [ 9.6006162, 47.4616108 ], + [ 9.6007509, 47.461597 ], + [ 9.6008864, 47.4615878 ], + [ 9.6010224, 47.4615834 ], + [ 9.6011586, 47.4615837 ], + [ 9.6012946, 47.4615887 ], + [ 9.60143, 47.4615985 ], + [ 9.6015645, 47.4616131 ], + [ 9.6016977, 47.4616322 ], + [ 9.6018293, 47.461656 ], + [ 9.601959, 47.4616843 ], + [ 9.6021686, 47.4617387 ], + [ 9.6023734, 47.461801 ], + [ 9.6026701, 47.4619089 ], + [ 9.6028599, 47.4619901 ], + [ 9.6030426, 47.4620784 ], + [ 9.603364299999999, 47.4622588 ], + [ 9.6035868, 47.4624005 ], + [ 9.603798, 47.4625499 ], + [ 9.6039975, 47.4627065 ], + [ 9.6041846, 47.4628701 ], + [ 9.6043588, 47.46304 ], + [ 9.6045197, 47.4632159 ], + [ 9.6046668, 47.4633972 ], + [ 9.6047998, 47.4635835 ], + [ 9.6049181, 47.4637742 ], + [ 9.6050216, 47.4639689 ], + [ 9.60511, 47.464167 ], + [ 9.6054271, 47.4649513 ], + [ 9.605615, 47.465443 ], + [ 9.6057824, 47.4659382 ], + [ 9.605929, 47.4664364 ], + [ 9.6060549, 47.4669372 ], + [ 9.6061598, 47.4674403 ], + [ 9.6062437, 47.4679452 ], + [ 9.6064522, 47.4693809 ], + [ 9.6064751, 47.4694913 ], + [ 9.6065113, 47.4696001 ], + [ 9.6065607, 47.4697064 ], + [ 9.6066228, 47.4698097 ], + [ 9.6066974, 47.4699091 ], + [ 9.6067837, 47.470004 ], + [ 9.6068814, 47.4700937 ], + [ 9.6069896, 47.4701777 ], + [ 9.6071077, 47.4702553 ], + [ 9.6072349, 47.470326 ], + [ 9.6073702, 47.4703894 ], + [ 9.6075128, 47.470445 ], + [ 9.6076617, 47.4704924 ], + [ 9.6078159, 47.4705313 ], + [ 9.6079742, 47.4705614 ], + [ 9.6081358, 47.4705826 ], + [ 9.6082993, 47.4705947 ], + [ 9.6084637, 47.4705975 ], + [ 9.6086279, 47.4705911 ], + [ 9.6087908, 47.4705756 ], + [ 9.6091507, 47.4705208 ], + [ 9.609503, 47.4704469 ], + [ 9.6098455, 47.4703542 ], + [ 9.6101761, 47.4702434 ], + [ 9.6104927, 47.4701151 ], + [ 9.6107933, 47.4699703 ], + [ 9.6110759, 47.4698097 ], + [ 9.6113388, 47.4696344 ], + [ 9.6115803, 47.4694455 ], + [ 9.611799, 47.4692442 ], + [ 9.6119935, 47.4690317 ], + [ 9.6121624, 47.4688095 ], + [ 9.6163787, 47.4626791 ], + [ 9.6166602, 47.4623077 ], + [ 9.6169669, 47.4619456 ], + [ 9.617185, 47.4617098 ], + [ 9.617532, 47.4613648 ], + [ 9.6204979, 47.4585586 ], + [ 9.6206572, 47.4584155 ], + [ 9.6208269, 47.458278 ], + [ 9.6210064, 47.4581464 ], + [ 9.6211954, 47.458021 ], + [ 9.6213933, 47.4579022 ], + [ 9.6215998, 47.4577902 ], + [ 9.6218141, 47.4576853 ], + [ 9.6221495, 47.4575419 ], + [ 9.6223278, 47.4574758 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZR001", + "country" : "CHE", + "name" : [ + { + "text" : "LSZR St.Gallen", + "lang" : "de-CH" + }, + { + "text" : "LSZR St.Gallen", + "lang" : "fr-CH" + }, + { + "text" : "LSZR St.Gallen", + "lang" : "it-CH" + }, + { + "text" : "LSZR St.Gallen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Special Flight Office (SFO)", + "lang" : "de-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "fr-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "it-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "en-GB" + } + ], + "siteURL" : "https://skyguide.ch/services/special-flights", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.9043503, 47.1717158 ], + [ 8.904341, 47.1715746 ], + [ 8.9043209, 47.171434 ], + [ 8.90429, 47.1712943 ], + [ 8.9042485, 47.1711559 ], + [ 8.9041964, 47.1710192 ], + [ 8.9041338, 47.1708845 ], + [ 8.904061, 47.1707523 ], + [ 8.9039782, 47.1706228 ], + [ 8.9038855, 47.1704964 ], + [ 8.9037833, 47.1703735 ], + [ 8.9036718, 47.1702545 ], + [ 8.9035513, 47.1701396 ], + [ 8.9034221, 47.1700291 ], + [ 8.9032846, 47.1699234 ], + [ 8.9031393, 47.1698228 ], + [ 8.9029864, 47.1697275 ], + [ 8.9028264, 47.1696377 ], + [ 8.9026597, 47.1695538 ], + [ 8.9024868, 47.169476 ], + [ 8.9023082, 47.1694045 ], + [ 8.9021243, 47.1693394 ], + [ 8.9019357, 47.1692809 ], + [ 8.9017429, 47.1692293 ], + [ 8.9015463, 47.1691847 ], + [ 8.9013466, 47.1691471 ], + [ 8.9011443, 47.1691167 ], + [ 8.90094, 47.1690935 ], + [ 8.9007341, 47.1690777 ], + [ 8.9005273, 47.1690692 ], + [ 8.9003202, 47.1690682 ], + [ 8.9001132, 47.1690745 ], + [ 8.899907, 47.1690882 ], + [ 8.8997022, 47.1691092 ], + [ 8.8994992, 47.1691376 ], + [ 8.8992987, 47.1691731 ], + [ 8.8991012, 47.1692157 ], + [ 8.8989073, 47.1692654 ], + [ 8.8987174, 47.1693218 ], + [ 8.8985321, 47.169385 ], + [ 8.8983519, 47.1694547 ], + [ 8.8981773, 47.1695308 ], + [ 8.8980088, 47.1696129 ], + [ 8.8978469, 47.169701 ], + [ 8.8976919, 47.1697948 ], + [ 8.8975443, 47.1698939 ], + [ 8.8974045, 47.1699982 ], + [ 8.8972729, 47.1701073 ], + [ 8.8971499, 47.1702209 ], + [ 8.8970357, 47.1703388 ], + [ 8.8969308, 47.1704606 ], + [ 8.8968353, 47.170586 ], + [ 8.8967496, 47.1707146 ], + [ 8.8966739, 47.1708461 ], + [ 8.8966084, 47.1709801 ], + [ 8.8965533, 47.1711163 ], + [ 8.8965087, 47.1712543 ], + [ 8.8964747, 47.1713937 ], + [ 8.8964515, 47.171534 ], + [ 8.8964391, 47.171675 ], + [ 8.8964375, 47.1718163 ], + [ 8.8964467, 47.1719575 ], + [ 8.8964668, 47.1720981 ], + [ 8.8964977, 47.1722378 ], + [ 8.8965392, 47.1723762 ], + [ 8.8965913, 47.1725129 ], + [ 8.8966538, 47.1726476 ], + [ 8.8967266, 47.1727798 ], + [ 8.8968094, 47.1729093 ], + [ 8.8969021, 47.1730357 ], + [ 8.8970043, 47.1731586 ], + [ 8.8971158, 47.1732776 ], + [ 8.8972363, 47.1733926 ], + [ 8.8973655, 47.173503 ], + [ 8.8975029, 47.1736087 ], + [ 8.8976483, 47.1737094 ], + [ 8.8978012, 47.1738047 ], + [ 8.8979612, 47.1738944 ], + [ 8.8981279, 47.1739783 ], + [ 8.8983008, 47.1740562 ], + [ 8.8984794, 47.1741277 ], + [ 8.898663299999999, 47.1741928 ], + [ 8.898852, 47.1742513 ], + [ 8.8990448, 47.1743029 ], + [ 8.8992414, 47.1743476 ], + [ 8.8994411, 47.1743852 ], + [ 8.8996434, 47.1744156 ], + [ 8.8998478, 47.1744387 ], + [ 8.9000536, 47.1744545 ], + [ 8.9002604, 47.174463 ], + [ 8.9004676, 47.1744641 ], + [ 8.9006746, 47.1744577 ], + [ 8.9008808, 47.174444 ], + [ 8.9010857, 47.174423 ], + [ 8.9012886, 47.1743947 ], + [ 8.9014892, 47.1743591 ], + [ 8.901686699999999, 47.1743165 ], + [ 8.9018806, 47.1742668 ], + [ 8.9020705, 47.1742104 ], + [ 8.9022558, 47.1741472 ], + [ 8.902436, 47.1740775 ], + [ 8.9026106, 47.1740014 ], + [ 8.9027792, 47.1739192 ], + [ 8.9029411, 47.1738312 ], + [ 8.903096099999999, 47.1737374 ], + [ 8.9032437, 47.1736383 ], + [ 8.9033835, 47.173534 ], + [ 8.9035151, 47.1734249 ], + [ 8.9036381, 47.1733112 ], + [ 8.9037523, 47.1731933 ], + [ 8.9038572, 47.1730715 ], + [ 8.9039526, 47.1729461 ], + [ 8.9040383, 47.1728175 ], + [ 8.904114, 47.172686 ], + [ 8.9041795, 47.172552 ], + [ 8.9042346, 47.1724158 ], + [ 8.9042792, 47.1722778 ], + [ 8.9043132, 47.1721384 ], + [ 8.9043364, 47.1719981 ], + [ 8.9043488, 47.171857 ], + [ 8.9043503, 47.1717158 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0110", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Siebnen", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Siebnen", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Siebnen", + "lang" : "it-CH" + }, + { + "text" : "Substation Siebnen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.9043453, 46.8379495 ], + [ 6.9171594, 46.8458995 ], + [ 6.9177833, 46.8463207 ], + [ 6.9180316, 46.8462687 ], + [ 6.918278, 46.8464476 ], + [ 6.9193179, 46.8472029 ], + [ 6.9189127, 46.8474984 ], + [ 6.9186828, 46.847666 ], + [ 6.9192763, 46.8480266 ], + [ 6.919882, 46.8483947 ], + [ 6.9199166, 46.8483686 ], + [ 6.9200444999999995, 46.8482722 ], + [ 6.925425, 46.8517508 ], + [ 6.9256333, 46.8516263 ], + [ 6.9257507, 46.8515561 ], + [ 6.926183, 46.8518277 ], + [ 6.9271324, 46.8524241 ], + [ 6.926989, 46.8525326 ], + [ 6.9268061, 46.8526709 ], + [ 6.9302501, 46.8547014 ], + [ 6.931048, 46.8551717 ], + [ 6.9315531, 46.8516675 ], + [ 6.9315428, 46.8516612 ], + [ 6.9176651, 46.8432247 ], + [ 6.9172262, 46.8429612 ], + [ 6.9185172, 46.8421941 ], + [ 6.9180919, 46.8418527 ], + [ 6.9195734, 46.8409719 ], + [ 6.9191376, 46.8406182 ], + [ 6.9190308, 46.8406798 ], + [ 6.9190299, 46.840679 ], + [ 6.9171897, 46.8391566 ], + [ 6.9172905, 46.8390968 ], + [ 6.9181254, 46.838604 ], + [ 6.9181238, 46.8386026 ], + [ 6.9181303, 46.8385987 ], + [ 6.9183767, 46.8384526 ], + [ 6.9164155, 46.8368915 ], + [ 6.915635, 46.8360742 ], + [ 6.9148372, 46.8364688 ], + [ 6.9126863, 46.8375301 ], + [ 6.9126232, 46.8375615 ], + [ 6.9114738, 46.8381282 ], + [ 6.9108583, 46.8384245 ], + [ 6.9118442, 46.8393418 ], + [ 6.9125935, 46.8389807 ], + [ 6.9125937, 46.8389809 ], + [ 6.9141541, 46.8402279 ], + [ 6.9134499, 46.8406449 ], + [ 6.9060175, 46.8361203 ], + [ 6.904942, 46.83618 ], + [ 6.9048807, 46.8361427 ], + [ 6.8998538, 46.8330831 ], + [ 6.8996486, 46.8332301 ], + [ 6.8982985, 46.8341966 ], + [ 6.9043453, 46.8379495 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSMP004", + "country" : "CHE", + "name" : [ + { + "text" : "LSMP Payerne Ziv (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSMP Payerne Ziv (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSMP Payerne Ziv (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSMP Payerne Ziv (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Skyguide Special Flight Office", + "lang" : "de-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "it-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.skyguide.ch/services/special-flights", + "email" : "specialflight@skyguide.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.0152323, 46.5835769 ], + [ 8.0151179, 46.5812235 ], + [ 8.014825, 46.5788774 ], + [ 8.0143544, 46.5765451 ], + [ 8.0137075, 46.5742329 ], + [ 8.0128861, 46.5719473 ], + [ 8.0118925, 46.5696945 ], + [ 8.0107293, 46.5674806 ], + [ 8.0093999, 46.5653117 ], + [ 8.0079078, 46.5631937 ], + [ 8.0062571, 46.5611325 ], + [ 8.0044525, 46.5591336 ], + [ 8.0024988, 46.5572026 ], + [ 8.0004014, 46.5553448 ], + [ 7.9981661, 46.5535652 ], + [ 7.995799, 46.5518687 ], + [ 7.9933065, 46.5502599 ], + [ 7.9906956000000005, 46.5487432 ], + [ 7.9879734, 46.5473229 ], + [ 7.9851472999999995, 46.5460027 ], + [ 7.9822251, 46.5447863 ], + [ 7.9792147, 46.543677 ], + [ 7.9761244, 46.5426779 ], + [ 7.9729627, 46.5417916 ], + [ 7.9697382, 46.5410206 ], + [ 7.9664597, 46.5403671 ], + [ 7.9631362, 46.5398327 ], + [ 7.9597768, 46.539419 ], + [ 7.9563907, 46.5391271 ], + [ 7.9529871, 46.5389578 ], + [ 7.9495753, 46.5389115 ], + [ 7.9461647, 46.5389884 ], + [ 7.9427645, 46.5391883 ], + [ 7.9393842, 46.5395105 ], + [ 7.9360329, 46.5399544 ], + [ 7.9327197, 46.5405185 ], + [ 7.9294538, 46.5412014 ], + [ 7.9262441, 46.5420013 ], + [ 7.9230994, 46.5429159 ], + [ 7.9200282, 46.5439427 ], + [ 7.917039, 46.5450789 ], + [ 7.9141399, 46.5463214 ], + [ 7.9113389, 46.5476669 ], + [ 7.9086437, 46.5491115 ], + [ 7.9060616, 46.5506515 ], + [ 7.9035997, 46.5522825 ], + [ 7.9012648, 46.5540002 ], + [ 7.8990632, 46.5557997 ], + [ 7.8970009999999995, 46.5576762 ], + [ 7.8950838999999995, 46.5596246 ], + [ 7.8933171, 46.5616394 ], + [ 7.8917055, 46.5637153 ], + [ 7.8902535, 46.5658465 ], + [ 7.888965, 46.5680271 ], + [ 7.8878437, 46.5702513 ], + [ 7.8868927, 46.5725129 ], + [ 7.8861145, 46.5748057 ], + [ 7.8855113, 46.5771234 ], + [ 7.8850848, 46.5794598 ], + [ 7.8848362, 46.5818083 ], + [ 7.8847662, 46.5841625 ], + [ 7.884875, 46.5865161 ], + [ 7.8851623, 46.5888625 ], + [ 7.8856274, 46.5911954 ], + [ 7.886269, 46.5935082 ], + [ 7.8870854, 46.5957947 ], + [ 7.8880742999999995, 46.5980487 ], + [ 7.8892331, 46.6002638 ], + [ 7.8905586, 46.602434099999996 ], + [ 7.8920472, 46.6045536 ], + [ 7.8936948000000005, 46.6066165 ], + [ 7.8954968999999995, 46.608617100000004 ], + [ 7.8974487, 46.6105499 ], + [ 7.8995447, 46.6124097 ], + [ 7.9017792, 46.6141912 ], + [ 7.904146, 46.6158897 ], + [ 7.9066388, 46.6175004 ], + [ 7.9092507, 46.619019 ], + [ 7.9119744999999995, 46.6204412 ], + [ 7.9148027, 46.6217632 ], + [ 7.9177276, 46.6229813 ], + [ 7.9207411, 46.6240923 ], + [ 7.923835, 46.6250929 ], + [ 7.9270008, 46.6259805 ], + [ 7.9302297, 46.6267527 ], + [ 7.933513, 46.6274073 ], + [ 7.9368416, 46.6279425 ], + [ 7.9402064, 46.6283569 ], + [ 7.943598, 46.6286493 ], + [ 7.9470072, 46.6288189 ], + [ 7.9504247, 46.6288653 ], + [ 7.953841, 46.6287882 ], + [ 7.9572467, 46.628588 ], + [ 7.9606325, 46.6282652 ], + [ 7.9639891, 46.6278207 ], + [ 7.9673073, 46.6272556 ], + [ 7.9705779, 46.6265716 ], + [ 7.9737919999999995, 46.6257705 ], + [ 7.9769407, 46.6248545 ], + [ 7.9800154, 46.6238262 ], + [ 7.9830077, 46.6226883 ], + [ 7.9859092, 46.621444 ], + [ 7.9887122, 46.6200968 ], + [ 7.9914088, 46.6186502 ], + [ 7.9939917, 46.6171083 ], + [ 7.9964538, 46.6154753 ], + [ 7.9987884, 46.6137558 ], + [ 8.000989, 46.6119543 ], + [ 8.0030496, 46.6100759 ], + [ 8.0049647, 46.6081257 ], + [ 8.0067288, 46.6061091 ], + [ 8.0083373, 46.6040316 ], + [ 8.0097857, 46.601899 ], + [ 8.01107, 46.5997169 ], + [ 8.0121869, 46.5974916 ], + [ 8.0131331, 46.5952289 ], + [ 8.0139062, 46.5929353 ], + [ 8.0145041, 46.5906169 ], + [ 8.014925, 46.5882801 ], + [ 8.015168, 46.5859313 ], + [ 8.0152323, 46.5835769 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSWL001", + "country" : "CHE", + "name" : [ + { + "text" : "LSWL Lauberhorn", + "lang" : "de-CH" + }, + { + "text" : "LSWL Lauberhorn", + "lang" : "fr-CH" + }, + { + "text" : "LSWL Lauberhorn", + "lang" : "it-CH" + }, + { + "text" : "LSWL Lauberhorn", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "startDateTime" : "2024-11-01T00:00:00+01:00", + "endDateTime" : "2025-04-01T00:00:00+02:00" + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Air-Glaciers SA", + "lang" : "de-CH" + }, + { + "text" : "Air-Glaciers SA", + "lang" : "fr-CH" + }, + { + "text" : "Air-Glaciers SA", + "lang" : "it-CH" + }, + { + "text" : "Air-Glaciers SA", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Basis Lauterbrunnen", + "lang" : "de-CH" + }, + { + "text" : "Basis Lauterbrunnen", + "lang" : "fr-CH" + }, + { + "text" : "Basis Lauterbrunnen", + "lang" : "it-CH" + }, + { + "text" : "Basis Lauterbrunnen", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.air-glaciers.ch/de-ch/lauterbrunnen-de", + "email" : "agl@air-glaciers.ch", + "phone" : "0041338560560", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P02DT12H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5252443, 47.5382062 ], + [ 7.5251005, 47.5382227 ], + [ 7.5250986, 47.5382271 ], + [ 7.5255357, 47.539576 ], + [ 7.5255465, 47.5395741 ], + [ 7.5256795, 47.5395505 ], + [ 7.5252443, 47.5382062 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns266", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Allschwilerwald", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Allschwilerwald", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Allschwilerwald", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Allschwilerwald", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.9306263999999995, 46.9928162 ], + [ 6.9308844, 46.9928216 ], + [ 6.931139, 46.9927924 ], + [ 6.9313803, 46.9927297 ], + [ 6.931599, 46.9926359 ], + [ 6.9317868, 46.9925147 ], + [ 6.9318176, 46.9924851 ], + [ 6.9318214, 46.9924826 ], + [ 6.9319713, 46.9923394 ], + [ 6.9320775, 46.9921789 ], + [ 6.9321894, 46.9919532 ], + [ 6.9322479, 46.9917816 ], + [ 6.9322563, 46.9916055 ], + [ 6.9322551, 46.9916003 ], + [ 6.9322569, 46.991562 ], + [ 6.9322147, 46.9913881 ], + [ 6.9321238, 46.9912232 ], + [ 6.9319877, 46.9910736 ], + [ 6.9318116, 46.9909451 ], + [ 6.9316022, 46.9908424 ], + [ 6.9313676, 46.9907697 ], + [ 6.9311193, 46.9907121 ], + [ 6.9308679, 46.990672 ], + [ 6.9306098, 46.9906663 ], + [ 6.9303551, 46.9906952 ], + [ 6.9301136, 46.9907577 ], + [ 6.9298946, 46.9908512 ], + [ 6.9297065, 46.9909722 ], + [ 6.9296906, 46.9909875 ], + [ 6.9296703, 46.9910004 ], + [ 6.9295183, 46.9911447 ], + [ 6.9294108, 46.9913067 ], + [ 6.9292976, 46.9915349 ], + [ 6.9292392, 46.991706 ], + [ 6.9292305, 46.9918816 ], + [ 6.9292368, 46.991908 ], + [ 6.9292359, 46.9919325 ], + [ 6.9292795, 46.9921054 ], + [ 6.9293713, 46.9922693 ], + [ 6.9295078, 46.9924178 ], + [ 6.9296839, 46.9925454 ], + [ 6.9298929, 46.9926471 ], + [ 6.9301267, 46.9927192 ], + [ 6.9303749, 46.9927765 ], + [ 6.9306263999999995, 46.9928162 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "NE06", + "country" : "CHE", + "name" : [ + { + "text" : "Tribunal régional Neuchâtel", + "lang" : "de-CH" + }, + { + "text" : "Tribunal régional Neuchâtel", + "lang" : "fr-CH" + }, + { + "text" : "Tribunal régional Neuchâtel", + "lang" : "it-CH" + }, + { + "text" : "Tribunal régional Neuchâtel", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "regulationExemption" : "YES", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Police Neuchâteloise", + "lang" : "de-CH" + }, + { + "text" : "Police Neuchâteloise", + "lang" : "fr-CH" + }, + { + "text" : "Police Neuchâteloise", + "lang" : "it-CH" + }, + { + "text" : "Police Neuchâteloise", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "PN - Rens et opérations", + "lang" : "de-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "fr-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "it-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "PN - Rens et opérations", + "lang" : "de-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "fr-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "it-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ne.ch/autorites/DESC/PONE/Pages/Drones.aspx", + "email" : "Police.Neuchateloise@ne.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8559346, 47.4220448 ], + [ 7.8559535, 47.4220349 ], + [ 7.8559447, 47.4220253 ], + [ 7.8558686, 47.4219805 ], + [ 7.8557931, 47.4219807 ], + [ 7.8557003, 47.4219536 ], + [ 7.8555305, 47.4219246 ], + [ 7.8554687, 47.4219199 ], + [ 7.8554221, 47.4219195 ], + [ 7.8553869, 47.4219188 ], + [ 7.8553571, 47.4219483 ], + [ 7.8553147, 47.4219793 ], + [ 7.8551882, 47.4220686 ], + [ 7.8551252, 47.4220903 ], + [ 7.8549618, 47.4221111 ], + [ 7.8549748, 47.4221235 ], + [ 7.8549818, 47.4221302 ], + [ 7.8551533, 47.4222949 ], + [ 7.8551593, 47.422293 ], + [ 7.8551652, 47.4222911 ], + [ 7.8551712, 47.4222892 ], + [ 7.8552706, 47.4222589 ], + [ 7.8556961, 47.4221317 ], + [ 7.8557168, 47.4221253 ], + [ 7.8557374, 47.4221188 ], + [ 7.8557579, 47.4221122 ], + [ 7.8557784, 47.4221055 ], + [ 7.8558027, 47.4220973 ], + [ 7.8558269, 47.4220889 ], + [ 7.8558509999999995, 47.4220804 ], + [ 7.8558749, 47.4220718 ], + [ 7.8558952, 47.4220632 ], + [ 7.8559151, 47.4220543 ], + [ 7.8559346, 47.4220448 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns170", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Feuchtbiotop Eimatt", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Feuchtbiotop Eimatt", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Feuchtbiotop Eimatt", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Feuchtbiotop Eimatt", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8110101, 47.4915411 ], + [ 7.8110018, 47.4915352 ], + [ 7.8109931, 47.4915296 ], + [ 7.8109838, 47.4915244 ], + [ 7.8109741, 47.4915196 ], + [ 7.810964, 47.4915152 ], + [ 7.8109514, 47.4916352 ], + [ 7.8109358, 47.4917837 ], + [ 7.8110101, 47.4915411 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns277", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Im Boden", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Im Boden", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Im Boden", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Im Boden", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.9274735, 46.9124754 ], + [ 6.9390452, 46.918965299999996 ], + [ 6.9463229, 46.9230487 ], + [ 6.95023, 46.920414 ], + [ 6.9503598, 46.920355 ], + [ 6.9503601, 46.9203548 ], + [ 6.950374, 46.9203447 ], + [ 6.9504128, 46.920288 ], + [ 6.9505959, 46.9201642 ], + [ 6.9508461, 46.9200574 ], + [ 6.9508703, 46.9200471 ], + [ 6.9508745, 46.9200453 ], + [ 6.9508999, 46.9200321 ], + [ 6.9509921, 46.919973 ], + [ 6.9511282, 46.9199004 ], + [ 6.9513304, 46.9197905 ], + [ 6.9514102, 46.9197472 ], + [ 6.9515975, 46.9196455 ], + [ 6.951935, 46.9194641 ], + [ 6.9520922, 46.9193796 ], + [ 6.9525292, 46.9191387 ], + [ 6.9531811, 46.9187916 ], + [ 6.9534471, 46.9186405 ], + [ 6.9520325, 46.9177775 ], + [ 6.9520849, 46.9177334 ], + [ 6.9521032, 46.9176094 ], + [ 6.9520395, 46.9174022 ], + [ 6.9519264, 46.9172038 ], + [ 6.9517898, 46.9169784 ], + [ 6.9516551, 46.9167251 ], + [ 6.9515164, 46.9165446 ], + [ 6.9513879, 46.9164198 ], + [ 6.9512097, 46.9162544 ], + [ 6.9509656, 46.9160285 ], + [ 6.9508558, 46.9159228 ], + [ 6.95082, 46.9158884 ], + [ 6.9507068, 46.9158017 ], + [ 6.9505762, 46.915722 ], + [ 6.9505847, 46.9157138 ], + [ 6.9505852, 46.9157134 ], + [ 6.950636, 46.9156643 ], + [ 6.9508858, 46.9154236 ], + [ 6.9508725, 46.9154143 ], + [ 6.9487505, 46.9139277 ], + [ 6.9486739, 46.913874 ], + [ 6.9434965, 46.9107714 ], + [ 6.9433758999999995, 46.9106881 ], + [ 6.9432618, 46.9106064 ], + [ 6.9428754999999995, 46.9104167 ], + [ 6.9421261, 46.9101013 ], + [ 6.9413537, 46.9097876 ], + [ 6.9406838, 46.9095697 ], + [ 6.9399561, 46.9093066 ], + [ 6.9390914, 46.908952 ], + [ 6.9365635999999995, 46.9075746 ], + [ 6.9364602, 46.9076276 ], + [ 6.9363394, 46.9076896 ], + [ 6.9356694, 46.9074897 ], + [ 6.9352289, 46.9072214 ], + [ 6.9350574, 46.907317 ], + [ 6.9348114, 46.907387 ], + [ 6.9347636, 46.9073809 ], + [ 6.934532, 46.9073515 ], + [ 6.9343981, 46.9072897 ], + [ 6.9341481, 46.9071753 ], + [ 6.9339148999999995, 46.9070277 ], + [ 6.9336271, 46.9069247 ], + [ 6.9333925, 46.9068374 ], + [ 6.9330017999999995, 46.9066845 ], + [ 6.9328231, 46.9065748 ], + [ 6.9326337, 46.906484 ], + [ 6.9324307, 46.9064328 ], + [ 6.9321376, 46.9062894 ], + [ 6.9318609, 46.9061371 ], + [ 6.931665, 46.9060345 ], + [ 6.9313551, 46.9059243 ], + [ 6.9310785, 46.905772 ], + [ 6.9308511, 46.905606399999996 ], + [ 6.9305807999999995, 46.9054765 ], + [ 6.9303696, 46.9053514 ], + [ 6.9301186, 46.9052595 ], + [ 6.9298577, 46.9051719 ], + [ 6.9295985, 46.9050017 ], + [ 6.9294202, 46.9048543 ], + [ 6.9292307, 46.9047698 ], + [ 6.9290607, 46.9047016 ], + [ 6.9289644, 46.904559 ], + [ 6.9289547, 46.9044582 ], + [ 6.9288016, 46.9044296 ], + [ 6.9285965, 46.9043432 ], + [ 6.9284184, 46.9041842 ], + [ 6.9282996, 46.9039929 ], + [ 6.9282430999999995, 46.9038074 ], + [ 6.9282457, 46.9037066 ], + [ 6.9282401, 46.9036058 ], + [ 6.9280831, 46.903553 ], + [ 6.9279782, 46.9035409 ], + [ 6.9278539, 46.9035016 ], + [ 6.9280652, 46.9029782 ], + [ 6.9276211, 46.9026608 ], + [ 6.9271683, 46.9023494 ], + [ 6.9269839, 46.9022034 ], + [ 6.9268118, 46.9020504 ], + [ 6.9266095, 46.9018667 ], + [ 6.9263852, 46.9016224 ], + [ 6.9262485, 46.9014794 ], + [ 6.9261004, 46.9012764 ], + [ 6.9260095, 46.9011681 ], + [ 6.9258536, 46.9010055 ], + [ 6.9258111, 46.9009216 ], + [ 6.9254261, 46.9005484 ], + [ 6.9252879, 46.9004551 ], + [ 6.9251575, 46.9003673 ], + [ 6.9248768, 46.900214 ], + [ 6.9246584, 46.9001284 ], + [ 6.9242335, 46.8999655 ], + [ 6.9239159, 46.8998292 ], + [ 6.9233253, 46.8995566 ], + [ 6.9229659, 46.8993913 ], + [ 6.9224588, 46.8991794 ], + [ 6.9219753, 46.8989614 ], + [ 6.9215873, 46.8987779 ], + [ 6.9211428999999995, 46.8985825 ], + [ 6.9207797, 46.8984189 ], + [ 6.9204137, 46.8982644 ], + [ 6.9199473, 46.8980509 ], + [ 6.919503, 46.8978573 ], + [ 6.9191959, 46.8977236 ], + [ 6.9183921999999995, 46.8973737 ], + [ 6.9180094, 46.8972028 ], + [ 6.9175625, 46.8970029 ], + [ 6.9168921999999995, 46.8967057 ], + [ 6.9165197, 46.896551099999996 ], + [ 6.9162061999999995, 46.896403 ], + [ 6.9156823, 46.8961712 ], + [ 6.9136767, 46.8952733 ], + [ 6.9125832, 46.8947962 ], + [ 6.9093674, 46.8933995 ], + [ 6.9070637999999995, 46.8923984 ], + [ 6.9064581, 46.8921347 ], + [ 6.9060129, 46.8925858 ], + [ 6.9046408, 46.8920507 ], + [ 6.9037969, 46.8932262 ], + [ 6.9026008, 46.8944308 ], + [ 6.9014979, 46.8955415 ], + [ 6.9014623, 46.8957359 ], + [ 6.9013833, 46.8960959 ], + [ 6.9013478, 46.8962845 ], + [ 6.9011039, 46.896392 ], + [ 6.9007287, 46.8964379 ], + [ 6.901027, 46.8971952 ], + [ 6.9010502, 46.8972539 ], + [ 6.9003727, 46.8980722 ], + [ 6.8983492, 46.9005168 ], + [ 6.9082743, 46.9040039 ], + [ 6.9186772, 46.9077321 ], + [ 6.9187536, 46.9077595 ], + [ 6.922118, 46.9095358 ], + [ 6.9235997, 46.9103181 ], + [ 6.9238469, 46.9104485 ], + [ 6.9258804, 46.9115852 ], + [ 6.9274735, 46.9124754 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "WZV0007", + "country" : "CHE", + "name" : [ + { + "text" : "Wasser- und Zugvogelreservat Chevroux jusqu'à Portalban", + "lang" : "de-CH" + }, + { + "text" : "Réserve d'oiseaux d'eau et de migrateurs Chevroux jusqu'à Portalban", + "lang" : "fr-CH" + }, + { + "text" : "Riserva di uccelli acquatici e migratori Chevroux jusqu'à Portalban", + "lang" : "it-CH" + }, + { + "text" : "Water Bird and Migratory Bird Reserves Chevroux jusqu'à Portalban", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.753271999999999, 46.1978361 ], + [ 8.7532633, 46.1976949 ], + [ 8.7532439, 46.1975543 ], + [ 8.753214, 46.1974145 ], + [ 8.753173499999999, 46.1972761 ], + [ 8.7531227, 46.1971393 ], + [ 8.7530617, 46.1970045 ], + [ 8.7529906, 46.1968721 ], + [ 8.7529096, 46.1967425 ], + [ 8.7528189, 46.196616 ], + [ 8.7527189, 46.196493 ], + [ 8.7526097, 46.1963738 ], + [ 8.752491599999999, 46.1962587 ], + [ 8.7523651, 46.1961481 ], + [ 8.7522304, 46.1960422 ], + [ 8.7520879, 46.1959413 ], + [ 8.751937999999999, 46.1958458 ], + [ 8.7517811, 46.1957559 ], + [ 8.7516176, 46.1956717 ], + [ 8.751448, 46.1955937 ], + [ 8.7512728, 46.1955219 ], + [ 8.7510924, 46.1954566 ], + [ 8.7509073, 46.1953979 ], + [ 8.7507181, 46.195346 ], + [ 8.7505252, 46.1953011 ], + [ 8.7503292, 46.1952632 ], + [ 8.7501306, 46.1952325 ], + [ 8.7499299, 46.1952091 ], + [ 8.7497278, 46.195193 ], + [ 8.7495247, 46.1951843 ], + [ 8.7493213, 46.1951829 ], + [ 8.749118, 46.195189 ], + [ 8.7489155, 46.1952024 ], + [ 8.7487143, 46.1952232 ], + [ 8.7485149, 46.1952513 ], + [ 8.7483178, 46.1952865 ], + [ 8.7481238, 46.1953289 ], + [ 8.747933100000001, 46.1953783 ], + [ 8.7477465, 46.1954345 ], + [ 8.7475643, 46.1954975 ], + [ 8.7473872, 46.195567 ], + [ 8.7472155, 46.1956428 ], + [ 8.7470498, 46.1957247 ], + [ 8.7468905, 46.1958126 ], + [ 8.746738, 46.1959062 ], + [ 8.7465928, 46.1960051 ], + [ 8.7464552, 46.1961092 ], + [ 8.7463256, 46.1962181 ], + [ 8.7462045, 46.1963316 ], + [ 8.7460921, 46.1964494 ], + [ 8.7459887, 46.1965711 ], + [ 8.7458946, 46.1966964 ], + [ 8.74581, 46.1968249 ], + [ 8.7457353, 46.1969563 ], + [ 8.7456706, 46.1970902 ], + [ 8.7456161, 46.1972264 ], + [ 8.7455719, 46.1973643 ], + [ 8.7455381, 46.1975036 ], + [ 8.745515, 46.197644 ], + [ 8.7455024, 46.197785 ], + [ 8.7455004, 46.1979263 ], + [ 8.7455092, 46.1980674 ], + [ 8.7455285, 46.1982081 ], + [ 8.7455584, 46.1983478 ], + [ 8.7455988, 46.1984863 ], + [ 8.7456496, 46.1986231 ], + [ 8.7457106, 46.1987579 ], + [ 8.7457817, 46.1988903 ], + [ 8.7458627, 46.1990199 ], + [ 8.7459534, 46.1991464 ], + [ 8.7460534, 46.1992694 ], + [ 8.7461626, 46.1993886 ], + [ 8.7462806, 46.1995037 ], + [ 8.7464072, 46.1996143 ], + [ 8.7465419, 46.1997202 ], + [ 8.7466844, 46.1998211 ], + [ 8.7468343, 46.1999166 ], + [ 8.7469912, 46.2000066 ], + [ 8.7471547, 46.2000907 ], + [ 8.7473242, 46.2001688 ], + [ 8.7474995, 46.2002406 ], + [ 8.7476799, 46.2003059 ], + [ 8.747865000000001, 46.2003646 ], + [ 8.7480542, 46.2004165 ], + [ 8.7482471, 46.2004614 ], + [ 8.7484432, 46.2004993 ], + [ 8.7486418, 46.20053 ], + [ 8.7488425, 46.2005534 ], + [ 8.7490446, 46.2005695 ], + [ 8.7492477, 46.2005782 ], + [ 8.7494512, 46.2005795 ], + [ 8.7496544, 46.2005735 ], + [ 8.749857, 46.2005601 ], + [ 8.7500582, 46.2005393 ], + [ 8.7502577, 46.2005112 ], + [ 8.7504547, 46.2004759 ], + [ 8.7506488, 46.2004335 ], + [ 8.7508394, 46.2003842 ], + [ 8.7510261, 46.2003279 ], + [ 8.7512083, 46.200265 ], + [ 8.7513854, 46.2001955 ], + [ 8.7515571, 46.2001197 ], + [ 8.7517229, 46.2000377 ], + [ 8.7518822, 46.1999498 ], + [ 8.7520347, 46.1998563 ], + [ 8.7521799, 46.1997573 ], + [ 8.7523175, 46.1996532 ], + [ 8.752447, 46.1995443 ], + [ 8.7525681, 46.1994308 ], + [ 8.7526806, 46.199313 ], + [ 8.752784, 46.1991913 ], + [ 8.752877999999999, 46.199066 ], + [ 8.7529625, 46.1989375 ], + [ 8.7530372, 46.1988061 ], + [ 8.7531019, 46.1986721 ], + [ 8.7531565, 46.198536 ], + [ 8.7532006, 46.1983981 ], + [ 8.7532344, 46.1982588 ], + [ 8.7532575, 46.1981184 ], + [ 8.7532701, 46.1979774 ], + [ 8.753271999999999, 46.1978361 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0006", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Avegno", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Avegno", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Avegno", + "lang" : "it-CH" + }, + { + "text" : "Substation Avegno", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8025257, 47.4800751 ], + [ 7.8025298, 47.4800074 ], + [ 7.8025341, 47.4799338 ], + [ 7.8022729, 47.4798169 ], + [ 7.8021337, 47.4797545 ], + [ 7.8021539, 47.4797179 ], + [ 7.8021821, 47.4796666 ], + [ 7.8020719, 47.4795171 ], + [ 7.8020564, 47.4795119 ], + [ 7.8019194, 47.4794662 ], + [ 7.8018922, 47.4792402 ], + [ 7.8018725, 47.4791069 ], + [ 7.8017395, 47.4787899 ], + [ 7.801767, 47.4785494 ], + [ 7.8017029, 47.478511 ], + [ 7.8016739, 47.4784936 ], + [ 7.8015924, 47.4782778 ], + [ 7.8015253, 47.4781068 ], + [ 7.8013328, 47.4777351 ], + [ 7.801122, 47.4774275 ], + [ 7.800732, 47.477247 ], + [ 7.8007318, 47.4772469 ], + [ 7.800705, 47.477166 ], + [ 7.8006756, 47.4770777 ], + [ 7.8006736, 47.4770582 ], + [ 7.8006552, 47.4768805 ], + [ 7.8006121, 47.4768764 ], + [ 7.8006097, 47.4768762 ], + [ 7.8005187, 47.4768559 ], + [ 7.8003812, 47.4767581 ], + [ 7.8003647, 47.4767464 ], + [ 7.8003425, 47.4766883 ], + [ 7.8003203, 47.4766305 ], + [ 7.8001929, 47.476484 ], + [ 7.8001444, 47.4764005 ], + [ 7.8001339, 47.4762942 ], + [ 7.8001479, 47.4761877 ], + [ 7.800131, 47.4761439 ], + [ 7.7998831, 47.4762396 ], + [ 7.7998646, 47.4763619 ], + [ 7.7998452, 47.4764902 ], + [ 7.7998362, 47.4766649 ], + [ 7.7998552, 47.4768019 ], + [ 7.7998279, 47.476837 ], + [ 7.7997696, 47.4768674 ], + [ 7.7996887, 47.4769096 ], + [ 7.7996227, 47.476895 ], + [ 7.799405, 47.4768326 ], + [ 7.7991946, 47.4766837 ], + [ 7.7991715, 47.4767047 ], + [ 7.7991684, 47.4767265 ], + [ 7.7991685, 47.4767558 ], + [ 7.7991834, 47.4767894 ], + [ 7.7991982, 47.4768274 ], + [ 7.7992228, 47.47686 ], + [ 7.7992409, 47.4768968 ], + [ 7.7992656, 47.4769402 ], + [ 7.7990706, 47.4776003 ], + [ 7.7990087, 47.4780095 ], + [ 7.7988826, 47.478161 ], + [ 7.7985939, 47.4782517 ], + [ 7.7984162999999995, 47.4784625 ], + [ 7.7984137, 47.4785973 ], + [ 7.7984086, 47.4788525 ], + [ 7.7983843, 47.4789012 ], + [ 7.7983253999999995, 47.479019 ], + [ 7.7983139999999995, 47.4790418 ], + [ 7.7983256999999995, 47.4790451 ], + [ 7.7984387, 47.4790762 ], + [ 7.7983849, 47.4791755 ], + [ 7.7980342, 47.4794807 ], + [ 7.7978666, 47.4796448 ], + [ 7.7978341, 47.4796767 ], + [ 7.7978054, 47.479708 ], + [ 7.7977542, 47.4797639 ], + [ 7.7975107999999995, 47.4799561 ], + [ 7.797426, 47.4800231 ], + [ 7.7972577, 47.4800778 ], + [ 7.7971803, 47.4800909 ], + [ 7.7971107, 47.4801027 ], + [ 7.797012, 47.4801555 ], + [ 7.7969906, 47.4801782 ], + [ 7.7969459, 47.4802257 ], + [ 7.7968724, 47.4802657 ], + [ 7.7968234, 47.4802924 ], + [ 7.7967182, 47.4803449 ], + [ 7.7964082999999995, 47.4806045 ], + [ 7.7961873, 47.4809418 ], + [ 7.7960707, 47.4812304 ], + [ 7.7959734, 47.4814897 ], + [ 7.7958887, 47.4818898 ], + [ 7.7958522, 47.4820887 ], + [ 7.795856, 47.4821841 ], + [ 7.7960074, 47.4821924 ], + [ 7.796163, 47.4821722 ], + [ 7.7962122, 47.48215 ], + [ 7.7963669, 47.4820448 ], + [ 7.7964892, 47.4819496 ], + [ 7.7965716, 47.4818959 ], + [ 7.7966617, 47.4818536 ], + [ 7.796764, 47.4818026 ], + [ 7.7968837, 47.4817634 ], + [ 7.7970621, 47.4817062 ], + [ 7.7972003, 47.4816446 ], + [ 7.7973983, 47.4815203 ], + [ 7.7975662, 47.4813871 ], + [ 7.797665, 47.481298 ], + [ 7.7977625, 47.4812583 ], + [ 7.7978801, 47.4812425 ], + [ 7.7980975, 47.4812456 ], + [ 7.798605, 47.4812694 ], + [ 7.7990488, 47.4812984 ], + [ 7.7991562, 47.4813195 ], + [ 7.7992407, 47.4813389 ], + [ 7.7994269, 47.4813105 ], + [ 7.799675, 47.4812431 ], + [ 7.7999013, 47.4811714 ], + [ 7.8001334, 47.4810516 ], + [ 7.8003069, 47.4809661 ], + [ 7.8005426, 47.4808132 ], + [ 7.8006801, 47.4806853 ], + [ 7.8007852, 47.4805605 ], + [ 7.8009145, 47.4803913 ], + [ 7.8010248, 47.4805816 ], + [ 7.8010859, 47.480744 ], + [ 7.8011756, 47.4810736 ], + [ 7.8012388, 47.4813195 ], + [ 7.8012846, 47.4815489 ], + [ 7.8012901, 47.481665 ], + [ 7.8013169, 47.4820087 ], + [ 7.8013144, 47.4823227 ], + [ 7.8013468, 47.4824825 ], + [ 7.8014189, 47.4826881 ], + [ 7.8015022, 47.4828619 ], + [ 7.8015874, 47.4830129 ], + [ 7.8019957, 47.4833418 ], + [ 7.8020709, 47.4834109 ], + [ 7.8022121, 47.4834389 ], + [ 7.8024293, 47.4834769 ], + [ 7.8026433, 47.4836079 ], + [ 7.8034501, 47.4835906 ], + [ 7.8037261, 47.4835208 ], + [ 7.8039878, 47.4834882 ], + [ 7.8043377, 47.4834108 ], + [ 7.8045043, 47.4834112 ], + [ 7.8045041, 47.4833739 ], + [ 7.8045636, 47.4833608 ], + [ 7.8045791, 47.4832978 ], + [ 7.8046394, 47.483223 ], + [ 7.8046435, 47.483222 ], + [ 7.8047606, 47.4832612 ], + [ 7.8048011, 47.483309 ], + [ 7.8048765, 47.4833739 ], + [ 7.804951, 47.4834533 ], + [ 7.8050145, 47.4835121 ], + [ 7.8051393000000004, 47.4836227 ], + [ 7.8052708, 47.483713 ], + [ 7.8053652, 47.4837684 ], + [ 7.8054518, 47.4838072 ], + [ 7.8055315, 47.4838374 ], + [ 7.8056503, 47.4838694 ], + [ 7.8057746, 47.4838871 ], + [ 7.8058691, 47.4838821 ], + [ 7.8059414, 47.4838706 ], + [ 7.8059940999999995, 47.4838542 ], + [ 7.8060626, 47.483802 ], + [ 7.8060906, 47.4837469 ], + [ 7.8061031, 47.4836985 ], + [ 7.8060838, 47.4836261 ], + [ 7.8060823, 47.4836232 ], + [ 7.8060659999999995, 47.4835894 ], + [ 7.8060048, 47.4835222 ], + [ 7.8059497, 47.4834795 ], + [ 7.8054273, 47.4830847 ], + [ 7.8053181, 47.4830037 ], + [ 7.8052662, 47.4829638 ], + [ 7.805197, 47.4829075 ], + [ 7.8051903, 47.4829006 ], + [ 7.805149, 47.4828578 ], + [ 7.8052539, 47.4828609 ], + [ 7.8052467, 47.4828563 ], + [ 7.8052496, 47.4827947 ], + [ 7.805251, 47.4826121 ], + [ 7.8053022, 47.4825817 ], + [ 7.8054109, 47.4825171 ], + [ 7.8054102, 47.4825162 ], + [ 7.8054085, 47.4825167 ], + [ 7.8052847, 47.4825334 ], + [ 7.805253, 47.4825288 ], + [ 7.8052358, 47.4825172 ], + [ 7.8051379999999995, 47.4824512 ], + [ 7.8051048, 47.4822714 ], + [ 7.8049841, 47.4818913 ], + [ 7.8049263, 47.4817531 ], + [ 7.8049747, 47.4814985 ], + [ 7.8046741, 47.4813332 ], + [ 7.8047525, 47.4812252 ], + [ 7.8047985, 47.4811619 ], + [ 7.8047482, 47.4811417 ], + [ 7.8044696, 47.4810296 ], + [ 7.8041572, 47.4809007 ], + [ 7.8039337, 47.4807938 ], + [ 7.8038112, 47.4807212 ], + [ 7.8037174, 47.4806475 ], + [ 7.8037086, 47.4806159 ], + [ 7.8036851, 47.4805312 ], + [ 7.803627, 47.4805081 ], + [ 7.8034447, 47.4804357 ], + [ 7.803014, 47.4802678 ], + [ 7.8028094, 47.4801861 ], + [ 7.8026822, 47.4801352 ], + [ 7.8025257, 47.4800751 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr114", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Strickrain", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Strickrain", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Strickrain", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Strickrain", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.1110195, 46.2312073 ], + [ 6.1098085, 46.2303625 ], + [ 6.1105271, 46.2298246 ], + [ 6.1090719, 46.2288793 ], + [ 6.1084023, 46.2293815 ], + [ 6.1082226, 46.2292561 ], + [ 6.1071139, 46.2287357 ], + [ 6.106489, 46.2291583 ], + [ 6.1060541, 46.2289193 ], + [ 6.105507, 46.2292934 ], + [ 6.1033402, 46.227992 ], + [ 6.1032839, 46.2278033 ], + [ 6.1033909, 46.2277192 ], + [ 6.1032672, 46.2276376 ], + [ 6.1035271, 46.2274518 ], + [ 6.1025143, 46.2267776 ], + [ 6.1006302, 46.2253744 ], + [ 6.098414, 46.2234057 ], + [ 6.0973515, 46.2224395 ], + [ 6.0970217, 46.2223609 ], + [ 6.0950627, 46.2227982 ], + [ 6.0926698, 46.2234318 ], + [ 6.0927241, 46.2234918 ], + [ 6.08984, 46.2242796 ], + [ 6.0874603, 46.2226567 ], + [ 6.0864203, 46.2234522 ], + [ 6.0881806, 46.2246537 ], + [ 6.0878032, 46.2247661 ], + [ 6.0876722, 46.2248176 ], + [ 6.0875396, 46.2248872 ], + [ 6.0873638, 46.22502 ], + [ 6.0872904, 46.2251073 ], + [ 6.087232, 46.2252146 ], + [ 6.0870616, 46.2260735 ], + [ 6.0896487, 46.2275449 ], + [ 6.0904931, 46.228102 ], + [ 6.092071, 46.2298707 ], + [ 6.0921175, 46.2299846 ], + [ 6.0935299, 46.2307995 ], + [ 6.0931423, 46.2310603 ], + [ 6.0942793, 46.2316874 ], + [ 6.0933546, 46.2324844 ], + [ 6.0935352, 46.2326278 ], + [ 6.0949034, 46.2334502 ], + [ 6.0957169, 46.2339493 ], + [ 6.0959507, 46.2340375 ], + [ 6.0967931, 46.2342077 ], + [ 6.0974081, 46.2344561 ], + [ 6.0975049, 46.2345266 ], + [ 6.0966871, 46.2350855 ], + [ 6.0960964, 46.2356956 ], + [ 6.0992103, 46.2378154 ], + [ 6.0989316, 46.2380766 ], + [ 6.099049, 46.2381554 ], + [ 6.0995219, 46.2383787 ], + [ 6.0987952, 46.2389306 ], + [ 6.0980382, 46.2394992 ], + [ 6.0982499, 46.239643 ], + [ 6.0991442, 46.2390256 ], + [ 6.1000733, 46.2384698 ], + [ 6.1014669, 46.2376452 ], + [ 6.1037377, 46.2391089 ], + [ 6.1054448, 46.2401935 ], + [ 6.1068693, 46.2411667 ], + [ 6.1088438, 46.2398665 ], + [ 6.1160087, 46.2447464 ], + [ 6.1208017, 46.2480101 ], + [ 6.12031, 46.2484992 ], + [ 6.1209144, 46.2488203 ], + [ 6.1245097, 46.251277 ], + [ 6.1250265, 46.2516284 ], + [ 6.1256725, 46.2524277 ], + [ 6.1288121, 46.2523389 ], + [ 6.1352818, 46.2567421 ], + [ 6.1363191, 46.2559443 ], + [ 6.1299068, 46.2515814 ], + [ 6.130131, 46.2509452 ], + [ 6.1301958, 46.2506238 ], + [ 6.1302028, 46.2502244 ], + [ 6.1301571, 46.2500232 ], + [ 6.1300785, 46.2497317 ], + [ 6.1287995, 46.2474316 ], + [ 6.1275658, 46.2472338 ], + [ 6.1261368, 46.2464768 ], + [ 6.1264186, 46.245978 ], + [ 6.1264783, 46.2457619 ], + [ 6.1263908, 46.245625 ], + [ 6.1263641, 46.2453899 ], + [ 6.1264537, 46.2450634 ], + [ 6.1264156, 46.2444934 ], + [ 6.1248236, 46.2434511 ], + [ 6.1236562, 46.2434619 ], + [ 6.12328, 46.2447523 ], + [ 6.1231276, 46.2447271 ], + [ 6.1230371, 46.2446622 ], + [ 6.1231093, 46.2441448 ], + [ 6.1226156, 46.2435371 ], + [ 6.12227, 46.2432973 ], + [ 6.1227038, 46.2412924 ], + [ 6.1217487, 46.2404625 ], + [ 6.118506, 46.2377803 ], + [ 6.1148574, 46.2348954 ], + [ 6.1150433, 46.2347635 ], + [ 6.1143208, 46.2339758 ], + [ 6.1123034, 46.2322589 ], + [ 6.1121317, 46.2323369 ], + [ 6.1118984, 46.232174 ], + [ 6.1120352, 46.232092 ], + [ 6.1110195, 46.2312073 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSGG002", + "country" : "CHE", + "name" : [ + { + "text" : "LSGG Genève (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSGG Genève (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSGG Genève (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSGG Genève (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Skyguide Special Flight Office", + "lang" : "de-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "it-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.skyguide.ch/services/special-flights", + "email" : "specialflight@skyguide.ch", + "phone" : "0041439316236", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8345678, 47.3925724 ], + [ 7.8345229, 47.3925924 ], + [ 7.8346594, 47.3928133 ], + [ 7.8346801, 47.3929056 ], + [ 7.8347042, 47.3930074 ], + [ 7.8347733999999996, 47.3931046 ], + [ 7.8348544, 47.3931118 ], + [ 7.8349436, 47.3931191 ], + [ 7.8350808, 47.3929353 ], + [ 7.8350648, 47.3928336 ], + [ 7.8350862, 47.3927939 ], + [ 7.8352789, 47.3928326 ], + [ 7.8354269, 47.3929084 ], + [ 7.8353641, 47.3931522 ], + [ 7.8354625, 47.3933976 ], + [ 7.835482, 47.3935919 ], + [ 7.8354542, 47.3937327 ], + [ 7.8354388, 47.3938078 ], + [ 7.835455, 47.3938816 ], + [ 7.8354678, 47.3939319 ], + [ 7.8354482, 47.3940502 ], + [ 7.8353459, 47.3941106 ], + [ 7.8353385, 47.3941757 ], + [ 7.8354326, 47.3942221 ], + [ 7.8356414, 47.3942808 ], + [ 7.8356154, 47.3943478 ], + [ 7.8355386, 47.3944321 ], + [ 7.8353959, 47.3946207 ], + [ 7.8351941, 47.3948099 ], + [ 7.8351317, 47.3949406 ], + [ 7.8351921, 47.3950027 ], + [ 7.835362, 47.395009 ], + [ 7.835371, 47.3950004 ], + [ 7.8354654, 47.3949379 ], + [ 7.8356387, 47.3947423 ], + [ 7.8356196, 47.3945178 ], + [ 7.8356429, 47.3944422 ], + [ 7.8357544, 47.3943529 ], + [ 7.8359928, 47.3942191 ], + [ 7.8361366, 47.3940699 ], + [ 7.836469, 47.3942174 ], + [ 7.836558, 47.3942377 ], + [ 7.8370166, 47.3942842 ], + [ 7.8372533, 47.3943178 ], + [ 7.8372786, 47.3942923 ], + [ 7.8371528, 47.3942305 ], + [ 7.8366622, 47.3940093 ], + [ 7.836451, 47.3938592 ], + [ 7.8360967, 47.3935283 ], + [ 7.8359631, 47.3932639 ], + [ 7.8357576, 47.3928445 ], + [ 7.8356404, 47.3925883 ], + [ 7.8356726, 47.3924441 ], + [ 7.8357521, 47.3922002 ], + [ 7.8358038, 47.3920145 ], + [ 7.8345678, 47.3925724 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns045", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Schanz - Walten", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Schanz - Walten", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Schanz - Walten", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Schanz - Walten", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.9919299, 46.9393144 ], + [ 7.0763611, 46.8757105 ], + [ 6.8536127, 46.7354527 ], + [ 6.7691786, 46.7987766 ], + [ 6.9919299, 46.9393144 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 120, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "CTR0012", + "country" : "CHE", + "name" : [ + { + "text" : "CTR PAYERNE", + "lang" : "de-CH" + }, + { + "text" : "CTR PAYERNE", + "lang" : "fr-CH" + }, + { + "text" : "CTR PAYERNE", + "lang" : "it-CH" + }, + { + "text" : "CTR PAYERNE", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only permitted from an altitude of 120 m above ground with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Skyguide Special Flight Office", + "lang" : "de-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "it-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "en-GB" + } + ], + "siteURL" : "https://skyguide.ch/services/special-flights", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6297368, 47.5264786 ], + [ 7.6297388, 47.5265569 ], + [ 7.6297547, 47.5266372 ], + [ 7.6297829, 47.5267159 ], + [ 7.6298231, 47.5267922 ], + [ 7.6298749, 47.5268652 ], + [ 7.6299377, 47.5269341 ], + [ 7.6300108, 47.5269982 ], + [ 7.6300247, 47.5270081 ], + [ 7.6300405, 47.5270173 ], + [ 7.6300577, 47.5270253 ], + [ 7.630076, 47.527032 ], + [ 7.6300953, 47.5270374 ], + [ 7.6301152, 47.5270415 ], + [ 7.6301358, 47.527044 ], + [ 7.6301565, 47.5270452 ], + [ 7.6301774, 47.5270448 ], + [ 7.6302158, 47.5270435 ], + [ 7.6302831, 47.5270451 ], + [ 7.6303498, 47.5270514 ], + [ 7.630415, 47.5270624 ], + [ 7.6304784, 47.527078 ], + [ 7.6305389, 47.5270979 ], + [ 7.6305613, 47.527109 ], + [ 7.6305888, 47.5271253 ], + [ 7.6306136, 47.5271435 ], + [ 7.6306354, 47.5271635 ], + [ 7.6306541, 47.5271847 ], + [ 7.6306693, 47.5272073 ], + [ 7.6306811, 47.5272307 ], + [ 7.630689, 47.5272549 ], + [ 7.6306933, 47.5272795 ], + [ 7.6306937, 47.5273043 ], + [ 7.6306881, 47.527327 ], + [ 7.6307632, 47.5273172 ], + [ 7.6308398, 47.5273127 ], + [ 7.6308885, 47.5273123 ], + [ 7.6309367, 47.5273084 ], + [ 7.630993, 47.5272993 ], + [ 7.6310368, 47.5272886 ], + [ 7.6310787, 47.5272748 ], + [ 7.6311181999999995, 47.5272581 ], + [ 7.6311311, 47.5272518 ], + [ 7.6311668, 47.5272315 ], + [ 7.6311991, 47.5272089 ], + [ 7.6312278, 47.5271841 ], + [ 7.6312525, 47.5271573 ], + [ 7.6312636, 47.5271429 ], + [ 7.631326, 47.5269818 ], + [ 7.6313802, 47.5267715 ], + [ 7.6314569, 47.5264926 ], + [ 7.631452, 47.5264622 ], + [ 7.6313851, 47.5261803 ], + [ 7.6313216, 47.5259944 ], + [ 7.6312751, 47.5258909 ], + [ 7.63126, 47.5258553 ], + [ 7.6307466, 47.5261767 ], + [ 7.6297368, 47.5264786 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns217", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Fröschenegg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Fröschenegg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Fröschenegg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Fröschenegg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.990462, 46.880966 ], + [ 8.9904526, 46.8808249 ], + [ 8.9904323, 46.8806843 ], + [ 8.9904014, 46.8805446 ], + [ 8.9903599, 46.8804062 ], + [ 8.9903078, 46.8802695 ], + [ 8.9902454, 46.8801349 ], + [ 8.9901728, 46.8800027 ], + [ 8.9900902, 46.8798732 ], + [ 8.9899978, 46.879747 ], + [ 8.9898959, 46.8796241 ], + [ 8.9897848, 46.8795052 ], + [ 8.9896648, 46.8793903 ], + [ 8.9895362, 46.87928 ], + [ 8.9893993, 46.8791744 ], + [ 8.9892545, 46.8790738 ], + [ 8.9891023, 46.878978599999996 ], + [ 8.988942999999999, 46.878889 ], + [ 8.9887771, 46.8788052 ], + [ 8.988605, 46.8787275 ], + [ 8.9884272, 46.8786561 ], + [ 8.9882443, 46.8785912 ], + [ 8.9880566, 46.8785329 ], + [ 8.9878647, 46.8784814 ], + [ 8.9876692, 46.8784369 ], + [ 8.9874705, 46.8783994 ], + [ 8.9872692, 46.8783692 ], + [ 8.9870659, 46.8783462 ], + [ 8.9868612, 46.8783305 ], + [ 8.9866555, 46.8783222 ], + [ 8.986449499999999, 46.8783213 ], + [ 8.9862436, 46.8783278 ], + [ 8.9860386, 46.8783416 ], + [ 8.9858349, 46.8783628 ], + [ 8.9856331, 46.8783913 ], + [ 8.9854337, 46.878427 ], + [ 8.985237399999999, 46.8784698 ], + [ 8.9850445, 46.8785195 ], + [ 8.9848558, 46.8785762 ], + [ 8.9846716, 46.8786395 ], + [ 8.9844925, 46.8787093 ], + [ 8.9843189, 46.8787855 ], + [ 8.9841515, 46.8788678 ], + [ 8.9839905, 46.878956 ], + [ 8.9838365, 46.8790499 ], + [ 8.9836899, 46.8791491 ], + [ 8.983551, 46.8792535 ], + [ 8.9834203, 46.8793627 ], + [ 8.9832981, 46.8794765 ], + [ 8.9831848, 46.8795945 ], + [ 8.9830806, 46.8797164 ], + [ 8.9829859, 46.8798418 ], + [ 8.9829008, 46.8799705 ], + [ 8.9828258, 46.8801021 ], + [ 8.9827608, 46.8802362 ], + [ 8.982706199999999, 46.8803724 ], + [ 8.982662, 46.8805104 ], + [ 8.9826285, 46.8806498 ], + [ 8.9826056, 46.8807902 ], + [ 8.9825935, 46.8809312 ], + [ 8.9825922, 46.8810725 ], + [ 8.9826016, 46.8812136 ], + [ 8.9826218, 46.8813542 ], + [ 8.9826527, 46.8814939 ], + [ 8.9826943, 46.8816323 ], + [ 8.9827463, 46.881769 ], + [ 8.9828087, 46.8819036 ], + [ 8.9828813, 46.8820359 ], + [ 8.9829639, 46.8821653 ], + [ 8.9830562, 46.8822916 ], + [ 8.9831581, 46.8824144 ], + [ 8.9832692, 46.8825334 ], + [ 8.9833892, 46.8826482 ], + [ 8.9835178, 46.8827586 ], + [ 8.9836547, 46.8828642 ], + [ 8.9837995, 46.8829648 ], + [ 8.9839517, 46.88306 ], + [ 8.984111, 46.8831496 ], + [ 8.9842769, 46.8832334 ], + [ 8.984449, 46.8833111 ], + [ 8.9846268, 46.8833825 ], + [ 8.9848098, 46.8834475 ], + [ 8.9849975, 46.8835058 ], + [ 8.9851894, 46.8835573 ], + [ 8.9853849, 46.8836018 ], + [ 8.9855836, 46.8836392 ], + [ 8.9857849, 46.8836695 ], + [ 8.9859882, 46.8836925 ], + [ 8.986193, 46.8837082 ], + [ 8.9863987, 46.8837165 ], + [ 8.986604700000001, 46.8837174 ], + [ 8.9868106, 46.8837109 ], + [ 8.9870157, 46.883697 ], + [ 8.9872194, 46.8836758 ], + [ 8.9874212, 46.8836474 ], + [ 8.9876206, 46.8836117 ], + [ 8.987817, 46.8835689 ], + [ 8.9880098, 46.8835191 ], + [ 8.9881986, 46.8834625 ], + [ 8.9883828, 46.8833991 ], + [ 8.9885619, 46.8833293 ], + [ 8.9887354, 46.8832531 ], + [ 8.9889029, 46.8831708 ], + [ 8.9890639, 46.8830826 ], + [ 8.9892179, 46.8829887 ], + [ 8.9893645, 46.8828895 ], + [ 8.9895034, 46.8827851 ], + [ 8.9896341, 46.8826759 ], + [ 8.9897563, 46.8825621 ], + [ 8.9898696, 46.8824441 ], + [ 8.9899738, 46.8823222 ], + [ 8.9900685, 46.8821967 ], + [ 8.9901535, 46.882068 ], + [ 8.9902286, 46.8819365 ], + [ 8.9902935, 46.8818024 ], + [ 8.9903481, 46.8816662 ], + [ 8.9903922, 46.8815282 ], + [ 8.9904258, 46.8813887 ], + [ 8.9904486, 46.8812483 ], + [ 8.9904607, 46.8811073 ], + [ 8.990462, 46.880966 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0119", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Tierfehd", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Tierfehd", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Tierfehd", + "lang" : "it-CH" + }, + { + "text" : "Substation Tierfehd", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8259955, 47.4737183 ], + [ 7.8264584, 47.4742173 ], + [ 7.8267942, 47.474421 ], + [ 7.8272641, 47.4747305 ], + [ 7.8276392, 47.4750355 ], + [ 7.827894, 47.4755113 ], + [ 7.8279933, 47.4757206 ], + [ 7.8282524, 47.4760543 ], + [ 7.8281951, 47.4758815 ], + [ 7.8282445, 47.4756993 ], + [ 7.8282517, 47.4755762 ], + [ 7.8282538, 47.4754798 ], + [ 7.8284244, 47.4757151 ], + [ 7.828556, 47.4758913 ], + [ 7.8286867, 47.4759471 ], + [ 7.8288762, 47.4759384 ], + [ 7.8289557, 47.4754723 ], + [ 7.8289532, 47.475135 ], + [ 7.8290695, 47.4748375 ], + [ 7.8290442, 47.4746287 ], + [ 7.8291838, 47.4742749 ], + [ 7.8291462, 47.473993899999996 ], + [ 7.8290141, 47.4737454 ], + [ 7.8286462, 47.4733513 ], + [ 7.8283235, 47.4729684 ], + [ 7.8279412, 47.4726263 ], + [ 7.8274929, 47.4723613 ], + [ 7.8271986, 47.4722132 ], + [ 7.8268477999999995, 47.472101 ], + [ 7.8266568, 47.4724209 ], + [ 7.8261676, 47.4732863 ], + [ 7.8259955, 47.4737183 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr042", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Bischofstein", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Bischofstein", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Bischofstein", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Bischofstein", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.2279833, 46.2654652 ], + [ 6.2288158, 46.2650922 ], + [ 6.2293566, 46.2645492 ], + [ 6.2296726, 46.2644076 ], + [ 6.2300731, 46.2640055 ], + [ 6.231333, 46.2638456 ], + [ 6.2326081, 46.2632742 ], + [ 6.2334709, 46.2624078 ], + [ 6.23379, 46.2613783 ], + [ 6.2335167, 46.2603425 ], + [ 6.2326928, 46.2594581 ], + [ 6.2314438, 46.2588597 ], + [ 6.2312296, 46.2588278 ], + [ 6.2311867, 46.2587817 ], + [ 6.2299376, 46.2581832 ], + [ 6.2284535, 46.2579619 ], + [ 6.2269602, 46.2581513 ], + [ 6.226212, 46.2584866 ], + [ 6.2259787, 46.2584518 ], + [ 6.2244854, 46.2586412 ], + [ 6.2242285, 46.2587563 ], + [ 6.2233011, 46.2588739 ], + [ 6.2220259, 46.2594453 ], + [ 6.221163, 46.2603116 ], + [ 6.2211265000000004, 46.2604293 ], + [ 6.2210432, 46.2605129 ], + [ 6.2207239, 46.2615424 ], + [ 6.2207819, 46.2617625 ], + [ 6.2207037, 46.2620147 ], + [ 6.2209767, 46.2630505 ], + [ 6.2212327, 46.2633254 ], + [ 6.2212688, 46.2634623 ], + [ 6.2205841, 46.2641497 ], + [ 6.2202648, 46.2651791 ], + [ 6.2205378, 46.2662149 ], + [ 6.2213616, 46.2670994 ], + [ 6.2226107, 46.2676979 ], + [ 6.2240950999999995, 46.2679194 ], + [ 6.2255886, 46.26773 ], + [ 6.226864, 46.2671586 ], + [ 6.2277269, 46.2662922 ], + [ 6.2279833, 46.2654652 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-22", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.267514, 47.0870684 ], + [ 8.2677525, 47.0872231 ], + [ 8.268001, 47.0873627 ], + [ 8.2680064, 47.0873624 ], + [ 8.2686723, 47.0877902 ], + [ 8.2687702, 47.087856 ], + [ 8.2692291, 47.0881549 ], + [ 8.2699507, 47.0876058 ], + [ 8.2703058, 47.0873353 ], + [ 8.2705973, 47.0871132 ], + [ 8.2705444, 47.0871109 ], + [ 8.2706989, 47.0867122 ], + [ 8.2707293, 47.0864501 ], + [ 8.2706448, 47.0862553 ], + [ 8.2704341, 47.0860154 ], + [ 8.2710556, 47.0857612 ], + [ 8.2709208, 47.0856717 ], + [ 8.2702837, 47.0851506 ], + [ 8.2702601, 47.0851394 ], + [ 8.2699788, 47.0850061 ], + [ 8.2695751, 47.084816000000004 ], + [ 8.2687568, 47.0846881 ], + [ 8.2684197, 47.0844688 ], + [ 8.2673429, 47.0836369 ], + [ 8.2674271, 47.0835597 ], + [ 8.2670508, 47.0835343 ], + [ 8.2669296, 47.0835258 ], + [ 8.2667373, 47.0835059 ], + [ 8.2663638, 47.0834031 ], + [ 8.2661554, 47.0833627 ], + [ 8.2660808, 47.0833638 ], + [ 8.2658954, 47.0834011 ], + [ 8.2657015, 47.0834838 ], + [ 8.2654974, 47.0835958 ], + [ 8.2652356, 47.0835649 ], + [ 8.2650861, 47.084051 ], + [ 8.2651721, 47.0845959 ], + [ 8.2646999, 47.0846171 ], + [ 8.2649008, 47.0850317 ], + [ 8.2651126, 47.0853707 ], + [ 8.265303, 47.0854894 ], + [ 8.2653984, 47.0855448 ], + [ 8.2654258, 47.0855565 ], + [ 8.265364, 47.0856034 ], + [ 8.2648933, 47.0853107 ], + [ 8.2648589, 47.0853362 ], + [ 8.2653554, 47.0856653 ], + [ 8.265848, 47.0859862 ], + [ 8.2663529, 47.0863134 ], + [ 8.2668941, 47.0866646 ], + [ 8.267514, 47.0870684 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VBS_17", + "country" : "CHE", + "name" : [ + { + "text" : "VBS_17 Rothenburg", + "lang" : "de-CH" + }, + { + "text" : "VBS_17 Rothenburg", + "lang" : "fr-CH" + }, + { + "text" : "VBS_17 Rothenburg", + "lang" : "it-CH" + }, + { + "text" : "VBS_17 Rothenburg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "regulationExemption" : "YES", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Eidgenössisches Departement für Verteidigung, Bevölkerungsschutz und Sport (VBS)", + "lang" : "de-CH" + }, + { + "text" : "Département fédéral de la défense, de la protection de la population et des sports (DDPS)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento federale della difesa, della protezione della popolazione e dello sport (DDPS)", + "lang" : "it-CH" + }, + { + "text" : "Federal Department of Defence, Civil Protection and Sport (DDPS)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Lageverfolgungszentrum der Armee LVZ A", + "lang" : "de-CH" + }, + { + "text" : "Centre de suivi de la situation de l’armée, CSS A", + "lang" : "fr-CH" + }, + { + "text" : "Centro di monitoraggio della situazione dell’esercito, Centro mon sit Es", + "lang" : "it-CH" + }, + { + "text" : "Joint Operation Center, JOC", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vtg.admin.ch/en/joint-operations-command", + "email" : "lvz.op@vtg.admin.ch", + "phone" : "+41 58 464 96 43", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.322887099999999, 47.3794749 ], + [ 8.3229555, 47.3794186 ], + [ 8.3229565, 47.3793943 ], + [ 8.3229715, 47.3793273 ], + [ 8.3229844, 47.3792149 ], + [ 8.3230005, 47.3791005 ], + [ 8.3229961, 47.3790114 ], + [ 8.3229909, 47.3789253 ], + [ 8.3230039, 47.3787345 ], + [ 8.3230106, 47.3785633 ], + [ 8.3230171, 47.3783842 ], + [ 8.3230105, 47.3783514 ], + [ 8.322991, 47.3782554 ], + [ 8.3229699, 47.3781252 ], + [ 8.3229728, 47.3780883 ], + [ 8.3229754, 47.3780541 ], + [ 8.3230125, 47.3779813 ], + [ 8.3230434, 47.377928 ], + [ 8.3230466, 47.3778946 ], + [ 8.3230337, 47.3778359 ], + [ 8.3229969, 47.3777504 ], + [ 8.3229425, 47.3776208 ], + [ 8.322911, 47.3775964 ], + [ 8.3228473, 47.3775556 ], + [ 8.3227899, 47.3775237 ], + [ 8.3227703, 47.3775246 ], + [ 8.3227514, 47.3775498 ], + [ 8.322783, 47.3776027 ], + [ 8.3227833, 47.3776421 ], + [ 8.3227107, 47.3777016 ], + [ 8.3226815, 47.3777518 ], + [ 8.3226805, 47.3778034 ], + [ 8.3226819, 47.3779041 ], + [ 8.3227133, 47.3779534 ], + [ 8.322738, 47.3780355 ], + [ 8.3227692, 47.3781054 ], + [ 8.3227722, 47.3781478 ], + [ 8.3227933, 47.3781924 ], + [ 8.3228095, 47.3782194 ], + [ 8.3227597, 47.3782409 ], + [ 8.3227294, 47.378285 ], + [ 8.3227555, 47.3784115 ], + [ 8.3227595, 47.3785419 ], + [ 8.3227563, 47.3786928 ], + [ 8.3227553, 47.3787416 ], + [ 8.3227498, 47.3789255 ], + [ 8.322749, 47.3790129 ], + [ 8.3227607, 47.3790583 ], + [ 8.3227411, 47.3790877 ], + [ 8.3227377, 47.3791994 ], + [ 8.3227445, 47.3792837 ], + [ 8.3227167, 47.379326 ], + [ 8.3226949, 47.3793664 ], + [ 8.3227032, 47.3794427 ], + [ 8.3227487, 47.3794766 ], + [ 8.3228329, 47.379491 ], + [ 8.322887099999999, 47.3794749 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "KTAG507", + "country" : "CHE", + "name" : [ + { + "text" : "Alte Reuss", + "lang" : "de-CH" + }, + { + "text" : "Alte Reuss", + "lang" : "fr-CH" + }, + { + "text" : "Alte Reuss", + "lang" : "it-CH" + }, + { + "text" : "Alte Reuss", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "regulationExemption" : "NO", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "schedule" : [ + { + "day" : [ "ANY" ], + "startTime" : "00:00:00.00+01:00", + "endTime" : "00:00:00.00+01:00" + } + ] + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Aargau", + "lang" : "de-CH" + }, + { + "text" : "Canton d'Argovie", + "lang" : "fr-CH" + }, + { + "text" : "Canton Argovia", + "lang" : "it-CH" + }, + { + "text" : "Canton of Aargau", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Departement Bau, Verkehr und Umwelt (BVU)", + "lang" : "de-CH" + }, + { + "text" : "Département de la construction, des transports et de l'environnement (CTE)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento delle costruzioni, dei trasporti e dell'ambiente (CTA)", + "lang" : "it-CH" + }, + { + "text" : "Department of Civil Engineering,Transport and Environment (CTE)", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Sektion Gewässernutzung", + "lang" : "de-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "fr-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "it-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ag.ch/de/verwaltung/bvu/umwelt-natur-landschaft/hochwasserschutz-gewaesser/gewaessernutzung", + "email" : "alg@ag.ch", + "phone" : "0041 62 835 34 50", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.1982573, 46.979513 ], + [ 7.1981778, 46.977159 ], + [ 7.1979185, 46.974811 ], + [ 7.19748, 46.9724756 ], + [ 7.1968636, 46.970159 ], + [ 7.1960709, 46.9678677 ], + [ 7.1951043, 46.965608 ], + [ 7.1939663, 46.9633859 ], + [ 7.1926601, 46.9612077 ], + [ 7.1911893, 46.9590792 ], + [ 7.1895579, 46.9570064 ], + [ 7.1877705, 46.9549947 ], + [ 7.1858319, 46.9530499 ], + [ 7.1837474, 46.9511772 ], + [ 7.1815228, 46.9493817 ], + [ 7.1791642, 46.9476683 ], + [ 7.176678, 46.9460418 ], + [ 7.174071, 46.9445065 ], + [ 7.1713505, 46.9430668 ], + [ 7.1685238, 46.9417264 ], + [ 7.1655987, 46.9404891 ], + [ 7.1625832, 46.9393583 ], + [ 7.1594855, 46.9383371 ], + [ 7.1563141, 46.9374281 ], + [ 7.1530778, 46.9366341 ], + [ 7.1497853, 46.935957 ], + [ 7.1464456, 46.9353988 ], + [ 7.1430679, 46.934961 ], + [ 7.1396615, 46.9346448 ], + [ 7.1362356, 46.934451 ], + [ 7.1327995, 46.9343802 ], + [ 7.1293628, 46.9344326 ], + [ 7.1259348, 46.934608 ], + [ 7.1225249, 46.934906 ], + [ 7.1191423, 46.9353257 ], + [ 7.1157964, 46.9358659 ], + [ 7.1124962, 46.9365253 ], + [ 7.1092509, 46.937302 ], + [ 7.1060692, 46.9381939 ], + [ 7.10296, 46.9391985 ], + [ 7.0999317, 46.9403131 ], + [ 7.0969925, 46.9415347 ], + [ 7.0941506, 46.9428598 ], + [ 7.0914137, 46.944285 ], + [ 7.0887893, 46.9458062 ], + [ 7.0862846, 46.9474194 ], + [ 7.0839065, 46.9491201 ], + [ 7.0816614, 46.9509036 ], + [ 7.0795556, 46.9527651 ], + [ 7.0775948, 46.9546994 ], + [ 7.0757844, 46.9567014 ], + [ 7.0741294, 46.9587655 ], + [ 7.0726343, 46.960886 ], + [ 7.0713033, 46.9630572 ], + [ 7.0701399, 46.965273 ], + [ 7.0691475, 46.9675276 ], + [ 7.0683286, 46.9698145 ], + [ 7.0676857, 46.9721277 ], + [ 7.0672206, 46.9744607 ], + [ 7.0669343, 46.9768072 ], + [ 7.0668279, 46.9791607 ], + [ 7.0669016, 46.9815148 ], + [ 7.0671553, 46.9838631 ], + [ 7.0675882, 46.986199 ], + [ 7.0681992, 46.9885162 ], + [ 7.0689867, 46.9908084 ], + [ 7.0699485, 46.9930692 ], + [ 7.071082, 46.9952925 ], + [ 7.0723841, 46.9974721 ], + [ 7.0738512, 46.999602 ], + [ 7.0754794, 47.0016765 ], + [ 7.0772642, 47.0036899 ], + [ 7.0792007, 47.0056365 ], + [ 7.0812836, 47.0075111 ], + [ 7.0835073, 47.0093086 ], + [ 7.0858656, 47.0110239 ], + [ 7.088352, 47.0126524 ], + [ 7.0909598, 47.0141896 ], + [ 7.0936818, 47.0156312 ], + [ 7.0965105, 47.0169734 ], + [ 7.0994382, 47.0182124 ], + [ 7.1024568, 47.0193449 ], + [ 7.1055581, 47.0203677 ], + [ 7.1087335, 47.021278 ], + [ 7.1119743, 47.0220733 ], + [ 7.1152716, 47.0227514 ], + [ 7.1186164, 47.0233105 ], + [ 7.1219995, 47.023749 ], + [ 7.1254115, 47.0240658 ], + [ 7.1288431, 47.0242599 ], + [ 7.1322848, 47.0243308 ], + [ 7.1357273, 47.0242783 ], + [ 7.139161, 47.0241026 ], + [ 7.1425766, 47.0238042 ], + [ 7.1459645, 47.0233838 ], + [ 7.1493155999999995, 47.0228427 ], + [ 7.1526206, 47.0221822 ], + [ 7.1558705, 47.0214043 ], + [ 7.1590562, 47.0205111 ], + [ 7.1621691, 47.019505 ], + [ 7.1652006, 47.0183887 ], + [ 7.1681424, 47.0171654 ], + [ 7.1709865, 47.0158384 ], + [ 7.1737249, 47.0144114 ], + [ 7.1763503, 47.0128882 ], + [ 7.1788553, 47.0112731 ], + [ 7.1812332, 47.0095705 ], + [ 7.1834774, 47.007785 ], + [ 7.1855817, 47.0059217 ], + [ 7.1875405, 47.0039855 ], + [ 7.1893483, 47.0019817 ], + [ 7.1910002, 46.999916 ], + [ 7.1924917, 46.997794 ], + [ 7.1938187, 46.9956214 ], + [ 7.1949776, 46.9934043 ], + [ 7.1959653, 46.9911487 ], + [ 7.196779, 46.9888608 ], + [ 7.1974165, 46.986547 ], + [ 7.1978761, 46.9842134 ], + [ 7.1981567, 46.9818666 ], + [ 7.1982573, 46.979513 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSTB001", + "country" : "CHE", + "name" : [ + { + "text" : "LSTB Bellechasse", + "lang" : "de-CH" + }, + { + "text" : "LSTB Bellechasse", + "lang" : "fr-CH" + }, + { + "text" : "LSTB Bellechasse", + "lang" : "it-CH" + }, + { + "text" : "LSTB Bellechasse", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Segelfluggruppe Freiburg", + "lang" : "de-CH" + }, + { + "text" : "Segelfluggruppe Freiburg", + "lang" : "fr-CH" + }, + { + "text" : "Segelfluggruppe Freiburg", + "lang" : "it-CH" + }, + { + "text" : "Segelfluggruppe Freiburg", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Reto Petri", + "lang" : "de-CH" + }, + { + "text" : "Reto Petri", + "lang" : "fr-CH" + }, + { + "text" : "Reto Petri", + "lang" : "it-CH" + }, + { + "text" : "Reto Petri", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.sg-freiburg.com/kontakt", + "email" : "flugplatzleiter@sg-freiburg.ch", + "phone" : "0041266731933", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P02DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6520681, 47.5178542 ], + [ 7.6520675, 47.5178994 ], + [ 7.6520757, 47.5179697 ], + [ 7.6521267, 47.5184069 ], + [ 7.6521481, 47.5184925 ], + [ 7.6522581, 47.5187764 ], + [ 7.6523207, 47.5189993 ], + [ 7.6524288, 47.5195379 ], + [ 7.6524952, 47.5198685 ], + [ 7.6525175999999995, 47.5199569 ], + [ 7.6528381, 47.5198244 ], + [ 7.6530923, 47.5200327 ], + [ 7.6527084, 47.5202043 ], + [ 7.6529301, 47.5205533 ], + [ 7.653016, 47.5206677 ], + [ 7.6531111, 47.520824 ], + [ 7.6531369, 47.5208744 ], + [ 7.6531692, 47.5208349 ], + [ 7.6532304, 47.5208183 ], + [ 7.653294, 47.5208336 ], + [ 7.6536519, 47.5210192 ], + [ 7.6537416, 47.5210856 ], + [ 7.6543354, 47.5216327 ], + [ 7.6544095, 47.5217267 ], + [ 7.6544978, 47.5219528 ], + [ 7.6545349, 47.52201 ], + [ 7.6546138, 47.5220433 ], + [ 7.6545357, 47.5221384 ], + [ 7.6542658, 47.5222772 ], + [ 7.6546409, 47.5224921 ], + [ 7.654686, 47.5225177 ], + [ 7.6547537, 47.5223303 ], + [ 7.656445, 47.5229947 ], + [ 7.6562059, 47.523062 ], + [ 7.6560683, 47.523188 ], + [ 7.6560201, 47.5232666 ], + [ 7.6560403, 47.5232717 ], + [ 7.6561673, 47.5232987 ], + [ 7.6562977, 47.5233165 ], + [ 7.6564292, 47.5233225 ], + [ 7.6565617, 47.5233204 ], + [ 7.6568976, 47.523306 ], + [ 7.6571571, 47.5232949 ], + [ 7.6572901, 47.5232958 ], + [ 7.6574199, 47.5233118 ], + [ 7.6574577, 47.5233183 ], + [ 7.6574344, 47.5233424 ], + [ 7.6573792, 47.5233912 ], + [ 7.6573278, 47.5234565 ], + [ 7.6573245, 47.5234962 ], + [ 7.6573769, 47.5235333 ], + [ 7.6576352, 47.5236176 ], + [ 7.6578549, 47.5236854 ], + [ 7.658152, 47.5237707 ], + [ 7.6583225, 47.5239146 ], + [ 7.6582577, 47.5239381 ], + [ 7.6586929, 47.5238849 ], + [ 7.6594093999999995, 47.52377 ], + [ 7.6599036, 47.5236755 ], + [ 7.6601507, 47.5236199 ], + [ 7.6605171, 47.523525 ], + [ 7.6608749, 47.5234087 ], + [ 7.6622681, 47.522924 ], + [ 7.662343, 47.5228746 ], + [ 7.662393, 47.5228123 ], + [ 7.6626854, 47.5223315 ], + [ 7.6627933, 47.5221542 ], + [ 7.6628155, 47.5221179 ], + [ 7.6627773999999995, 47.5221081 ], + [ 7.6620408, 47.5219183 ], + [ 7.6612901, 47.5217265 ], + [ 7.6612442, 47.5217148 ], + [ 7.6612001, 47.5217112 ], + [ 7.6612801, 47.5216153 ], + [ 7.6609358, 47.5215608 ], + [ 7.6608758, 47.5215422 ], + [ 7.6609315, 47.5214481 ], + [ 7.6609075, 47.5213536 ], + [ 7.6607976, 47.5211807 ], + [ 7.6606043, 47.5209603 ], + [ 7.6604989, 47.5208054 ], + [ 7.6604741, 47.52067 ], + [ 7.6600909, 47.5206689 ], + [ 7.6593806, 47.5209784 ], + [ 7.6595832, 47.5212047 ], + [ 7.6596532, 47.5213931 ], + [ 7.6596060999999995, 47.5214761 ], + [ 7.6594463, 47.5215177 ], + [ 7.6594002, 47.521529 ], + [ 7.6589907, 47.5216295 ], + [ 7.658952, 47.521639 ], + [ 7.6588369, 47.5215513 ], + [ 7.6587484, 47.5214675 ], + [ 7.6585407, 47.5213864 ], + [ 7.658108, 47.5211886 ], + [ 7.6579925, 47.5211196 ], + [ 7.657909, 47.5210312 ], + [ 7.6578524, 47.5209478 ], + [ 7.6578233, 47.5209693 ], + [ 7.6577023, 47.5210585 ], + [ 7.6574177, 47.5212683 ], + [ 7.6569263, 47.5209426 ], + [ 7.656486, 47.5206618 ], + [ 7.6560648, 47.5202544 ], + [ 7.6558326999999995, 47.5200592 ], + [ 7.6559932, 47.5200129 ], + [ 7.6564451, 47.5198825 ], + [ 7.6570532, 47.519709399999996 ], + [ 7.6568767, 47.5194537 ], + [ 7.6567185, 47.5194855 ], + [ 7.6564905, 47.5191087 ], + [ 7.6563727, 47.5187746 ], + [ 7.6561205999999995, 47.5188378 ], + [ 7.6556977, 47.5183083 ], + [ 7.6556419, 47.5182444 ], + [ 7.6556166, 47.5182154 ], + [ 7.6551926, 47.5177297 ], + [ 7.6551013999999995, 47.5177695 ], + [ 7.654825, 47.5174811 ], + [ 7.6552117, 47.5172985 ], + [ 7.6551156, 47.5172098 ], + [ 7.655198, 47.5170822 ], + [ 7.6556365, 47.5168332 ], + [ 7.6555578, 47.5167175 ], + [ 7.6556038, 47.5166081 ], + [ 7.655523, 47.516547 ], + [ 7.6552822, 47.5167478 ], + [ 7.6551819, 47.5167033 ], + [ 7.6552469, 47.5166006 ], + [ 7.6548848, 47.5167921 ], + [ 7.6546382, 47.516614 ], + [ 7.6548294, 47.516364 ], + [ 7.6550936, 47.5162908 ], + [ 7.6552098, 47.5162523 ], + [ 7.6549219, 47.5161928 ], + [ 7.6546503, 47.5161009 ], + [ 7.6546599, 47.516071 ], + [ 7.6546119, 47.5160376 ], + [ 7.6544634, 47.5160017 ], + [ 7.6543057, 47.515994 ], + [ 7.6541492, 47.5160062 ], + [ 7.6537734, 47.5160581 ], + [ 7.6534048, 47.5161357 ], + [ 7.6532704, 47.5161827 ], + [ 7.6532246, 47.5162021 ], + [ 7.6534524, 47.516368 ], + [ 7.6535163, 47.516354 ], + [ 7.6532994, 47.5165598 ], + [ 7.6530866, 47.5167661 ], + [ 7.652967, 47.5168628 ], + [ 7.6527113, 47.5170489 ], + [ 7.6525663999999995, 47.5171764 ], + [ 7.6523844, 47.5173547 ], + [ 7.6523468, 47.5173974 ], + [ 7.6522973, 47.5174535 ], + [ 7.6522731, 47.5174863 ], + [ 7.6521656, 47.517632 ], + [ 7.6521399, 47.5176737 ], + [ 7.6520822, 47.5178109 ], + [ 7.6520681, 47.5178542 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns213", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Wartenberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Wartenberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Wartenberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Wartenberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7363368, 47.4071421 ], + [ 7.7363379, 47.4072195 ], + [ 7.7363298, 47.4073767 ], + [ 7.7363307, 47.4074259 ], + [ 7.7363382, 47.4074749 ], + [ 7.7363523, 47.4075232 ], + [ 7.7363729, 47.4075705 ], + [ 7.7363998, 47.4076162 ], + [ 7.7364087, 47.4076283 ], + [ 7.7364189, 47.40764 ], + [ 7.7364304, 47.407651 ], + [ 7.736457, 47.4076727 ], + [ 7.7364861, 47.4076929 ], + [ 7.7365175, 47.4077114 ], + [ 7.7365511, 47.407728 ], + [ 7.7365865, 47.4077428 ], + [ 7.7366236, 47.4077555 ], + [ 7.7366622, 47.4077661 ], + [ 7.7366995, 47.4078003 ], + [ 7.7367893, 47.4078753 ], + [ 7.7368375, 47.4079146 ], + [ 7.7369607, 47.4079464 ], + [ 7.7370932, 47.4079805 ], + [ 7.7371296, 47.4079925 ], + [ 7.7372596, 47.4079854 ], + [ 7.7374361, 47.4079504 ], + [ 7.7376629, 47.4078526 ], + [ 7.737633, 47.4078136 ], + [ 7.737503, 47.4076417 ], + [ 7.7374493, 47.4075735 ], + [ 7.737429, 47.4075457 ], + [ 7.737381, 47.4074831 ], + [ 7.7373712999999995, 47.4074928 ], + [ 7.7373628, 47.4075029 ], + [ 7.7373555, 47.4075135 ], + [ 7.7373495, 47.4075245 ], + [ 7.7373117, 47.4075161 ], + [ 7.737116, 47.4073678 ], + [ 7.7370176, 47.4071219 ], + [ 7.7369725, 47.4070133 ], + [ 7.7368661, 47.4067005 ], + [ 7.7367406, 47.4063153 ], + [ 7.7370833, 47.4062747 ], + [ 7.7372229, 47.4062551 ], + [ 7.7377132, 47.4062003 ], + [ 7.7373513, 47.4059995 ], + [ 7.7369523000000004, 47.4057158 ], + [ 7.7368628, 47.4056139 ], + [ 7.7364469, 47.4054837 ], + [ 7.735963, 47.4053495 ], + [ 7.7354237, 47.4051992 ], + [ 7.7352595, 47.4053947 ], + [ 7.7349768, 47.4057144 ], + [ 7.7351658, 47.405804 ], + [ 7.7352272, 47.405836 ], + [ 7.735284, 47.4058718 ], + [ 7.7353356, 47.405911 ], + [ 7.7355111999999995, 47.4060572 ], + [ 7.7355384, 47.4060787 ], + [ 7.7355671, 47.4060991 ], + [ 7.7355974, 47.4061185 ], + [ 7.7359729, 47.4063464 ], + [ 7.7360011, 47.4063653 ], + [ 7.7360268, 47.4063857 ], + [ 7.7360497, 47.4064076 ], + [ 7.7360697, 47.4064307 ], + [ 7.7361051, 47.4064833 ], + [ 7.7361327, 47.406538 ], + [ 7.736152, 47.4065943 ], + [ 7.7361846, 47.4067024 ], + [ 7.7362249, 47.4068093 ], + [ 7.7362728, 47.4069148 ], + [ 7.7363041, 47.4069892 ], + [ 7.7363254999999995, 47.4070652 ], + [ 7.7363368, 47.4071421 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr077", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Mittlere Sörzech", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Mittlere Sörzech", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Mittlere Sörzech", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Mittlere Sörzech", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.0557125, 46.195258 ], + [ 6.0557526, 46.1953433 ], + [ 6.0557497, 46.1953666 ], + [ 6.0558825, 46.1956571 ], + [ 6.0558881, 46.195858 ], + [ 6.0562892, 46.1966588 ], + [ 6.0563936, 46.196794 ], + [ 6.0563942, 46.1967946 ], + [ 6.0563954, 46.1967962 ], + [ 6.0573568, 46.1976074 ], + [ 6.0586915, 46.1981021 ], + [ 6.060197, 46.1982054 ], + [ 6.061217, 46.1979915 ], + [ 6.0615063, 46.1982037 ], + [ 6.0615111, 46.1982063 ], + [ 6.0615113, 46.1982063 ], + [ 6.0616027, 46.1982551 ], + [ 6.0629596, 46.1987211 ], + [ 6.0633198, 46.198738 ], + [ 6.0629288, 46.1989736 ], + [ 6.062897, 46.1989999 ], + [ 6.0621668, 46.1999226 ], + [ 6.0620006, 46.2009691 ], + [ 6.0624017, 46.2019275 ], + [ 6.0624197, 46.2020207 ], + [ 6.0629465, 46.2027825 ], + [ 6.0637868, 46.2033939 ], + [ 6.0638988, 46.2034532 ], + [ 6.0652555, 46.2039151 ], + [ 6.0665435, 46.203973 ], + [ 6.0665958, 46.2039968 ], + [ 6.0677728, 46.2042195 ], + [ 6.0689911, 46.2041779 ], + [ 6.0701309, 46.2038762 ], + [ 6.0702678, 46.2038215 ], + [ 6.0712154, 46.2032904 ], + [ 6.0718797, 46.2025818 ], + [ 6.0721956, 46.2017653 ], + [ 6.0721321, 46.2009209 ], + [ 6.0716954, 46.2001316 ], + [ 6.0716749, 46.200107 ], + [ 6.0716562, 46.2000922 ], + [ 6.0716475, 46.2000744 ], + [ 6.0715692, 46.1999799 ], + [ 6.0714871, 46.1999148 ], + [ 6.0714477, 46.1998336 ], + [ 6.0713698, 46.1997392 ], + [ 6.0713423, 46.1997155 ], + [ 6.0713254, 46.1996852 ], + [ 6.0713044, 46.1996602 ], + [ 6.0710145, 46.1994327 ], + [ 6.070607, 46.1990811 ], + [ 6.0705114, 46.1990377 ], + [ 6.0703021, 46.1988734 ], + [ 6.0697516, 46.1986864 ], + [ 6.0702481, 46.1982781 ], + [ 6.0707074, 46.1974949 ], + [ 6.070795, 46.1966514 ], + [ 6.0705023, 46.1958305 ], + [ 6.0704896, 46.1958096 ], + [ 6.069641, 46.1949404 ], + [ 6.0683789, 46.194362 ], + [ 6.0671722, 46.1941993 ], + [ 6.0666042000000004, 46.1937468 ], + [ 6.0665243, 46.193704 ], + [ 6.0654573, 46.1932989 ], + [ 6.0650494, 46.1932456 ], + [ 6.0650364, 46.1932331 ], + [ 6.0639231, 46.1925183 ], + [ 6.0625008, 46.1921537 ], + [ 6.0619078, 46.1921697 ], + [ 6.061719, 46.1921044 ], + [ 6.0602065, 46.1920314 ], + [ 6.0593209, 46.1922375 ], + [ 6.0589199, 46.1922486 ], + [ 6.0577782, 46.192542 ], + [ 6.0576682, 46.1925849 ], + [ 6.0565165, 46.1932696 ], + [ 6.0558298, 46.1942083 ], + [ 6.0557125, 46.195258 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-14", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.2384504, 47.5503647 ], + [ 8.2384314, 47.5500118 ], + [ 8.2383852, 47.5496601 ], + [ 8.2383119, 47.5493104 ], + [ 8.2382116, 47.5489639 ], + [ 8.2380847, 47.5486214 ], + [ 8.2379314, 47.5482838 ], + [ 8.2377523, 47.5479521 ], + [ 8.2375478, 47.5476273 ], + [ 8.2373185, 47.5473101 ], + [ 8.237065, 47.5470015 ], + [ 8.2367879, 47.5467023 ], + [ 8.2364882, 47.5464133 ], + [ 8.2361664, 47.5461353 ], + [ 8.2358237, 47.5458691 ], + [ 8.2354609, 47.5456154 ], + [ 8.2350789, 47.5453749 ], + [ 8.2346789, 47.5451483 ], + [ 8.2342619, 47.5449362 ], + [ 8.2338291, 47.5447391 ], + [ 8.2333816, 47.5445577 ], + [ 8.2329208, 47.5443923 ], + [ 8.2324478, 47.5442435 ], + [ 8.231964, 47.5441117 ], + [ 8.2314706, 47.5439972 ], + [ 8.230969, 47.5439003 ], + [ 8.2304607, 47.5438213 ], + [ 8.2299469, 47.5437605 ], + [ 8.2294292, 47.5437179 ], + [ 8.2289088, 47.5436938 ], + [ 8.2283874, 47.5436881 ], + [ 8.2278662, 47.5437009 ], + [ 8.2273466, 47.5437321 ], + [ 8.2268303, 47.5437817 ], + [ 8.2263184, 47.5438496 ], + [ 8.2258125, 47.5439354 ], + [ 8.225314, 47.5440391 ], + [ 8.2248241, 47.5441603 ], + [ 8.2243443, 47.5442987 ], + [ 8.2238758, 47.544454 ], + [ 8.2234199, 47.5446256 ], + [ 8.222978, 47.5448131 ], + [ 8.2225511, 47.545016 ], + [ 8.2221405, 47.5452338 ], + [ 8.2217473, 47.5454658 ], + [ 8.2213726, 47.5457114 ], + [ 8.2210173, 47.54597 ], + [ 8.2206826, 47.5462408 ], + [ 8.2203692, 47.5465231 ], + [ 8.2200781, 47.5468161 ], + [ 8.21981, 47.547119 ], + [ 8.2195657, 47.547431 ], + [ 8.2193458, 47.5477513 ], + [ 8.219151, 47.5480788 ], + [ 8.2189818, 47.5484129 ], + [ 8.2188386, 47.5487525 ], + [ 8.2187219, 47.5490967 ], + [ 8.2186319, 47.5494445 ], + [ 8.218569, 47.5497951 ], + [ 8.2185332, 47.5501474 ], + [ 8.2185248, 47.5505005 ], + [ 8.2185436, 47.5508534 ], + [ 8.2185897, 47.5512052 ], + [ 8.2186629, 47.5515548 ], + [ 8.2187631, 47.5519014 ], + [ 8.2188899, 47.5522439 ], + [ 8.219043, 47.5525815 ], + [ 8.219222, 47.5529132 ], + [ 8.2194264, 47.5532381 ], + [ 8.2196557, 47.5535553 ], + [ 8.2199091, 47.553864 ], + [ 8.2201861, 47.5541632 ], + [ 8.2204858, 47.5544523 ], + [ 8.2208075, 47.5547303 ], + [ 8.2211502, 47.5549965 ], + [ 8.2215131, 47.5552502 ], + [ 8.2218951, 47.5554907 ], + [ 8.2222951, 47.5557174 ], + [ 8.2227121, 47.5559296 ], + [ 8.223145, 47.5561267 ], + [ 8.2235925, 47.5563082 ], + [ 8.2240534, 47.5564736 ], + [ 8.2245265, 47.5566224 ], + [ 8.2250104, 47.5567543 ], + [ 8.2255039, 47.5568688 ], + [ 8.2260056, 47.5569657 ], + [ 8.226514, 47.5570447 ], + [ 8.2270279, 47.5571056 ], + [ 8.2275458, 47.5571481 ], + [ 8.2280663, 47.5571723 ], + [ 8.2285879, 47.557178 ], + [ 8.2291092, 47.5571652 ], + [ 8.2296288, 47.5571339 ], + [ 8.2301454, 47.5570843 ], + [ 8.2306573, 47.5570165 ], + [ 8.2311633, 47.5569306 ], + [ 8.231662, 47.5568268 ], + [ 8.232152, 47.5567056 ], + [ 8.2326319, 47.5565672 ], + [ 8.2331005, 47.5564119 ], + [ 8.2335564, 47.5562403 ], + [ 8.2339984, 47.5560527 ], + [ 8.2344253, 47.5558498 ], + [ 8.2348359, 47.555632 ], + [ 8.2352292, 47.5553999 ], + [ 8.2356039, 47.5551542 ], + [ 8.2359591, 47.5548956 ], + [ 8.2362939, 47.5546248 ], + [ 8.2366072, 47.5543424 ], + [ 8.2368983, 47.5540494 ], + [ 8.2371663, 47.5537464 ], + [ 8.2374106, 47.5534344 ], + [ 8.2376303, 47.5531141 ], + [ 8.237825, 47.5527865 ], + [ 8.2379941, 47.5524524 ], + [ 8.2381372, 47.5521128 ], + [ 8.2382538, 47.5517686 ], + [ 8.2383436, 47.5514207 ], + [ 8.2384064, 47.5510702 ], + [ 8.2384421, 47.5507178 ], + [ 8.2384504, 47.5503647 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "ENSI001", + "country" : "CHE", + "name" : [ + { + "text" : "KKA Beznau", + "lang" : "de-CH" + }, + { + "text" : "KKA Beznau", + "lang" : "fr-CH" + }, + { + "text" : "KKA Beznau", + "lang" : "it-CH" + }, + { + "text" : "KKA Beznau", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Axpo Power AG", + "lang" : "de-CH" + }, + { + "text" : "Axpo Power AG", + "lang" : "fr-CH" + }, + { + "text" : "Axpo Power AG", + "lang" : "it-CH" + }, + { + "text" : "Axpo Power AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Stab", + "lang" : "de-CH" + }, + { + "text" : "Stab", + "lang" : "fr-CH" + }, + { + "text" : "Stab", + "lang" : "it-CH" + }, + { + "text" : "Stab", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Rolf Jäggi", + "lang" : "de-CH" + }, + { + "text" : "Rolf Jäggi", + "lang" : "fr-CH" + }, + { + "text" : "Rolf Jäggi", + "lang" : "it-CH" + }, + { + "text" : "Rolf Jäggi", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.axpo.com/ch/de/ueber-uns/energiewissen.detail.html/energiewissen/kernkraftwerk-beznau.html", + "phone" : "0041562667111", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.3691191, 47.4241263 ], + [ 7.3693308, 47.42428 ], + [ 7.3693857, 47.4243198 ], + [ 7.3696678, 47.4244738 ], + [ 7.3698265, 47.4245683 ], + [ 7.3699381, 47.4246571 ], + [ 7.3700051, 47.4247004 ], + [ 7.3700472, 47.4247382 ], + [ 7.3701914, 47.4248914 ], + [ 7.3702839, 47.4249825 ], + [ 7.3703685, 47.4250122 ], + [ 7.3704726, 47.4250149 ], + [ 7.3707155, 47.4249685 ], + [ 7.3708609, 47.4248718 ], + [ 7.3708846, 47.4248561 ], + [ 7.3707842, 47.424794 ], + [ 7.3707513, 47.4247734 ], + [ 7.3707546, 47.4247387 ], + [ 7.3707157, 47.4246663 ], + [ 7.3708675, 47.4245758 ], + [ 7.3708992, 47.4245569 ], + [ 7.3711894000000004, 47.4243838 ], + [ 7.3714261, 47.424148 ], + [ 7.3714594, 47.4240984 ], + [ 7.3718339, 47.4240767 ], + [ 7.3721214, 47.424014 ], + [ 7.3723655, 47.4240132 ], + [ 7.3724636, 47.4240128 ], + [ 7.3726672, 47.4240369 ], + [ 7.3727888, 47.4241103 ], + [ 7.372806, 47.424246 ], + [ 7.3728268, 47.4243459 ], + [ 7.3730002, 47.4244446 ], + [ 7.3734267, 47.4245676 ], + [ 7.3738816, 47.4247575 ], + [ 7.3741404, 47.4247806 ], + [ 7.3745296, 47.4249236 ], + [ 7.3750008, 47.4249931 ], + [ 7.3753791, 47.4250439 ], + [ 7.3758454, 47.4252367 ], + [ 7.3763343, 47.4253748 ], + [ 7.3767036, 47.4253976 ], + [ 7.3768715, 47.4253289 ], + [ 7.3776444, 47.4249736 ], + [ 7.3776475, 47.4249722 ], + [ 7.3777282, 47.4249274 ], + [ 7.3779017, 47.4248311 ], + [ 7.3782881, 47.4245325 ], + [ 7.378617, 47.4243258 ], + [ 7.3787992, 47.4241064 ], + [ 7.3793173, 47.4242113 ], + [ 7.379251, 47.4244846 ], + [ 7.3795052, 47.4247988 ], + [ 7.3794828, 47.4240012 ], + [ 7.3792776, 47.4233937 ], + [ 7.3792493, 47.4232466 ], + [ 7.3792293, 47.4231429 ], + [ 7.3791995, 47.4228704 ], + [ 7.3790671, 47.422876 ], + [ 7.3789462, 47.4228344 ], + [ 7.3786951, 47.4228883 ], + [ 7.3783346, 47.4230017 ], + [ 7.3778628, 47.422992 ], + [ 7.3776781, 47.4228604 ], + [ 7.3774049999999995, 47.4228698 ], + [ 7.3772844, 47.4229995 ], + [ 7.3767949, 47.4230228 ], + [ 7.376187, 47.4229688 ], + [ 7.3758676, 47.4228492 ], + [ 7.3755353, 47.4228003 ], + [ 7.3753058, 47.4226826 ], + [ 7.3749908, 47.422663299999996 ], + [ 7.3745543, 47.4225443 ], + [ 7.3741441, 47.4224421 ], + [ 7.3737525, 47.4224303 ], + [ 7.3733463, 47.4223861 ], + [ 7.3730125, 47.4223694 ], + [ 7.3725837, 47.4223865 ], + [ 7.3723673, 47.4224108 ], + [ 7.3723469, 47.4224131 ], + [ 7.3721292, 47.422432 ], + [ 7.3719974, 47.4224198 ], + [ 7.3717301, 47.4224519 ], + [ 7.3715075, 47.4224529 ], + [ 7.3714256, 47.4224202 ], + [ 7.3712613, 47.4224458 ], + [ 7.3710483, 47.422485 ], + [ 7.3708537, 47.4225133 ], + [ 7.370732, 47.4225299 ], + [ 7.370605, 47.4225553 ], + [ 7.3703106, 47.4226232 ], + [ 7.3701023, 47.4226801 ], + [ 7.3698988, 47.4227324 ], + [ 7.3696999, 47.4227719 ], + [ 7.3695547999999995, 47.4228015 ], + [ 7.3693100000000005, 47.4228673 ], + [ 7.3692916, 47.4228696 ], + [ 7.3692664, 47.4228808 ], + [ 7.3692408, 47.4228915 ], + [ 7.3692147, 47.4229018 ], + [ 7.3691882, 47.4229116 ], + [ 7.3691613, 47.4229209 ], + [ 7.3689969, 47.4229757 ], + [ 7.3689748, 47.4229834 ], + [ 7.3689531, 47.4229917 ], + [ 7.3689318, 47.4230004 ], + [ 7.3689109, 47.4230096 ], + [ 7.3688905, 47.4230193 ], + [ 7.3688705, 47.4230294 ], + [ 7.368851, 47.4230399 ], + [ 7.368832, 47.4230508 ], + [ 7.3688241, 47.4230643 ], + [ 7.3688154, 47.4230766 ], + [ 7.3688087, 47.4230895 ], + [ 7.3688074, 47.4235097 ], + [ 7.3688142, 47.4235569 ], + [ 7.3688289, 47.4236035 ], + [ 7.3688412, 47.4236502 ], + [ 7.3688561, 47.4236965 ], + [ 7.3688734, 47.4237425 ], + [ 7.3688932, 47.4237878 ], + [ 7.3689156, 47.4238328 ], + [ 7.3689404, 47.4238772 ], + [ 7.3691191, 47.4241263 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns310", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Martiswald", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Martiswald", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Martiswald", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Martiswald", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7310303000000005, 47.3935988 ], + [ 7.7308826, 47.3936228 ], + [ 7.7307403, 47.3936464 ], + [ 7.7306995, 47.3936521 ], + [ 7.7306586, 47.3936572 ], + [ 7.7306175, 47.3936618 ], + [ 7.7305763, 47.3936657 ], + [ 7.7305349, 47.393669 ], + [ 7.7304935, 47.3936717 ], + [ 7.730452, 47.3936738 ], + [ 7.7304104, 47.3936753 ], + [ 7.7303692, 47.3936762 ], + [ 7.7303280999999995, 47.3936765 ], + [ 7.7302869, 47.3936762 ], + [ 7.7302457, 47.3936753 ], + [ 7.7302046, 47.3936738 ], + [ 7.7301636, 47.3936717 ], + [ 7.7301226, 47.393669 ], + [ 7.7300816999999995, 47.3936658 ], + [ 7.730041, 47.3936619 ], + [ 7.7300003, 47.3936574 ], + [ 7.7297058, 47.3936211 ], + [ 7.7293492, 47.3935899 ], + [ 7.7292123, 47.3935913 ], + [ 7.7290767, 47.3936105 ], + [ 7.7289505, 47.3936463 ], + [ 7.7286372, 47.3937781 ], + [ 7.7284775, 47.3938254 ], + [ 7.728332, 47.393863 ], + [ 7.7282155, 47.3938608 ], + [ 7.7280716, 47.3938471 ], + [ 7.7274501, 47.3937626 ], + [ 7.7272014, 47.3936868 ], + [ 7.7269189, 47.3935903 ], + [ 7.7265519, 47.3934714 ], + [ 7.7262189, 47.3937138 ], + [ 7.726034, 47.3939576 ], + [ 7.7258668, 47.3940479 ], + [ 7.7256794, 47.3942044 ], + [ 7.7256404, 47.394237 ], + [ 7.7256398, 47.3942373 ], + [ 7.7257446, 47.3942595 ], + [ 7.7259549, 47.3943158 ], + [ 7.7259902, 47.3943251 ], + [ 7.7260259, 47.3943338 ], + [ 7.7260618, 47.394342 ], + [ 7.726098, 47.3943496 ], + [ 7.7261344, 47.3943567 ], + [ 7.7261711, 47.3943631 ], + [ 7.726208, 47.394369 ], + [ 7.726245, 47.3943743 ], + [ 7.7262868000000005, 47.3943811 ], + [ 7.7263283, 47.3943885 ], + [ 7.7263697, 47.3943964 ], + [ 7.7264108, 47.3944048 ], + [ 7.7264517, 47.3944137 ], + [ 7.7264923, 47.3944231 ], + [ 7.7265327, 47.394433 ], + [ 7.7265728, 47.3944434 ], + [ 7.7266068, 47.3944481 ], + [ 7.7266407, 47.3944533 ], + [ 7.7266743, 47.3944591 ], + [ 7.7267077, 47.3944655 ], + [ 7.7267409, 47.3944724 ], + [ 7.7267738, 47.3944799 ], + [ 7.7268065, 47.3944879 ], + [ 7.7268388, 47.3944965 ], + [ 7.7268708, 47.3945056 ], + [ 7.7269025, 47.3945153 ], + [ 7.7269338, 47.3945255 ], + [ 7.7269647, 47.3945362 ], + [ 7.727001, 47.3945484 ], + [ 7.7270376, 47.3945601 ], + [ 7.7270746, 47.3945712 ], + [ 7.7271119, 47.3945819 ], + [ 7.7271495, 47.394592 ], + [ 7.7271874, 47.3946016 ], + [ 7.7272256, 47.3946106 ], + [ 7.7272641, 47.3946191 ], + [ 7.7273028, 47.394627 ], + [ 7.7273418, 47.3946344 ], + [ 7.727381, 47.3946412 ], + [ 7.7274118, 47.3946457 ], + [ 7.7274424, 47.3946507 ], + [ 7.7274728, 47.3946564 ], + [ 7.7275030000000005, 47.3946626 ], + [ 7.7275328, 47.3946695 ], + [ 7.7275624, 47.3946769 ], + [ 7.7275916, 47.3946849 ], + [ 7.7276205000000004, 47.3946935 ], + [ 7.7276489999999995, 47.3947027 ], + [ 7.7276771, 47.3947124 ], + [ 7.7277047, 47.3947226 ], + [ 7.7277319, 47.3947334 ], + [ 7.7277587, 47.3947448 ], + [ 7.7277849, 47.3947566 ], + [ 7.7278106, 47.394769 ], + [ 7.7278358, 47.3947818 ], + [ 7.7278604, 47.3947952 ], + [ 7.7278845, 47.394809 ], + [ 7.7279079, 47.3948233 ], + [ 7.7279493, 47.3948471 ], + [ 7.72799, 47.3948713 ], + [ 7.7280302, 47.3948959 ], + [ 7.7280697, 47.3949211 ], + [ 7.7281087, 47.3949466 ], + [ 7.728147, 47.3949726 ], + [ 7.7281847, 47.394999 ], + [ 7.7282217, 47.3950258 ], + [ 7.7285466, 47.3952571 ], + [ 7.7285727, 47.3952739 ], + [ 7.7285995, 47.3952903 ], + [ 7.7286269999999995, 47.3953061 ], + [ 7.7286551, 47.3953214 ], + [ 7.7286839, 47.3953362 ], + [ 7.7287132, 47.3953504 ], + [ 7.7287431, 47.3953641 ], + [ 7.7287735, 47.3953772 ], + [ 7.7288045, 47.3953897 ], + [ 7.728836, 47.3954016 ], + [ 7.7288679, 47.3954129 ], + [ 7.7289003, 47.3954237 ], + [ 7.7289332, 47.3954337 ], + [ 7.7289664, 47.3954432 ], + [ 7.729, 47.395452 ], + [ 7.729034, 47.3954602 ], + [ 7.7290683, 47.3954678 ], + [ 7.7291028, 47.3954747 ], + [ 7.7291377, 47.3954809 ], + [ 7.7291728, 47.3954865 ], + [ 7.7292081, 47.3954914 ], + [ 7.7292436, 47.3954956 ], + [ 7.7292784, 47.3954996 ], + [ 7.7293131, 47.3955042 ], + [ 7.7293475, 47.3955095 ], + [ 7.7293817, 47.3955154 ], + [ 7.7294157, 47.395522 ], + [ 7.7294493, 47.3955292 ], + [ 7.7294827, 47.3955371 ], + [ 7.7295157, 47.3955456 ], + [ 7.7295483, 47.3955547 ], + [ 7.7295806, 47.3955645 ], + [ 7.7296124, 47.3955748 ], + [ 7.7296438, 47.3955858 ], + [ 7.7296747, 47.3955974 ], + [ 7.7297052, 47.3956095 ], + [ 7.7297351, 47.3956222 ], + [ 7.7297645, 47.3956355 ], + [ 7.7297933, 47.3956494 ], + [ 7.7298215, 47.3956638 ], + [ 7.7299263, 47.3957192 ], + [ 7.7301952, 47.3958983 ], + [ 7.7302143999999995, 47.395841 ], + [ 7.7302979, 47.3955915 ], + [ 7.7304077, 47.3952638 ], + [ 7.7304679, 47.3950841 ], + [ 7.7305029, 47.3949144 ], + [ 7.7306127, 47.3943822 ], + [ 7.7307266, 47.3941588 ], + [ 7.7308689, 47.3939064 ], + [ 7.7310303000000005, 47.3935988 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr096", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Fuchsloch", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Fuchsloch", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Fuchsloch", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Fuchsloch", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.4994572999999995, 46.5189915 ], + [ 6.4992016, 46.5189951 ], + [ 6.4989467, 46.5190103 ], + [ 6.4986938, 46.519037 ], + [ 6.498444, 46.519075 ], + [ 6.4981983, 46.5191243 ], + [ 6.4979578, 46.5191845 ], + [ 6.4977236, 46.5192554 ], + [ 6.4974965, 46.5193368 ], + [ 6.4972776, 46.5194282 ], + [ 6.4970679, 46.5195294 ], + [ 6.4968682, 46.5196398 ], + [ 6.4966794, 46.5197589 ], + [ 6.4965022999999995, 46.5198864 ], + [ 6.4963376, 46.5200215 ], + [ 6.4961861, 46.5201638 ], + [ 6.4960484, 46.5203126 ], + [ 6.4959251, 46.5204674 ], + [ 6.4958168, 46.5206273 ], + [ 6.4957238, 46.5207919 ], + [ 6.4956466, 46.5209602 ], + [ 6.4956167, 46.521038 ], + [ 6.4955522, 46.5212168 ], + [ 6.495521, 46.5213105 ], + [ 6.4954763, 46.5214844 ], + [ 6.4954481, 46.5216599 ], + [ 6.4954367, 46.5218363 ], + [ 6.495442, 46.5220129 ], + [ 6.495464, 46.5221888 ], + [ 6.4955026, 46.5223634 ], + [ 6.4955577, 46.5225358 ], + [ 6.495629, 46.5227054 ], + [ 6.4957163, 46.5228715 ], + [ 6.495819, 46.5230332 ], + [ 6.4959369, 46.5231899 ], + [ 6.4960694, 46.523341 ], + [ 6.4962159, 46.5234858 ], + [ 6.4963758, 46.5236236 ], + [ 6.4965484, 46.5237539 ], + [ 6.4967331, 46.5238762 ], + [ 6.4969289, 46.5239899 ], + [ 6.497135, 46.5240945 ], + [ 6.4973506, 46.5241895 ], + [ 6.4975748, 46.5242746 ], + [ 6.4978066, 46.5243494 ], + [ 6.4980449, 46.5244136 ], + [ 6.4982888, 46.5244669 ], + [ 6.4983547, 46.5244793 ], + [ 6.4986056, 46.5245246 ], + [ 6.4987881, 46.5245545 ], + [ 6.49904, 46.5245853 ], + [ 6.4992943, 46.5246047 ], + [ 6.4995499, 46.5246126 ], + [ 6.4998057, 46.524609 ], + [ 6.5000606, 46.5245938 ], + [ 6.5003135, 46.5245671 ], + [ 6.5005634, 46.524529 ], + [ 6.5008091, 46.5244798 ], + [ 6.5010496, 46.5244196 ], + [ 6.5012839, 46.5243486 ], + [ 6.501511, 46.5242673 ], + [ 6.5017298, 46.5241758 ], + [ 6.5019396, 46.5240747 ], + [ 6.5021392, 46.5239643 ], + [ 6.5023281, 46.5238451 ], + [ 6.5025052, 46.5237177 ], + [ 6.5026698, 46.5235825 ], + [ 6.5028213, 46.5234402 ], + [ 6.502959, 46.5232913 ], + [ 6.5030823, 46.5231366 ], + [ 6.5031907, 46.5229766 ], + [ 6.5032836, 46.5228121 ], + [ 6.5033608, 46.5226437 ], + [ 6.5033723, 46.522615 ], + [ 6.5034393999999995, 46.5224428 ], + [ 6.503489, 46.5223001 ], + [ 6.5035337, 46.5221262 ], + [ 6.5035618, 46.5219506 ], + [ 6.5035732, 46.5217742 ], + [ 6.5035679, 46.5215977 ], + [ 6.5035457999999995, 46.5214217 ], + [ 6.5035072, 46.5212472 ], + [ 6.5034521, 46.5210747 ], + [ 6.5033807, 46.5209051 ], + [ 6.5032935, 46.5207391 ], + [ 6.5031907, 46.5205774 ], + [ 6.5030728, 46.5204207 ], + [ 6.5029403, 46.5202696 ], + [ 6.5027938, 46.5201248 ], + [ 6.5026339, 46.519987 ], + [ 6.5024612, 46.5198567 ], + [ 6.5022766, 46.5197344 ], + [ 6.5020808, 46.5196208 ], + [ 6.5018747, 46.5195162 ], + [ 6.5016591, 46.5194212 ], + [ 6.5014349, 46.519336 ], + [ 6.5012032, 46.5192612 ], + [ 6.5009648, 46.5191971 ], + [ 6.5007776, 46.5191551 ], + [ 6.5005241, 46.5191031 ], + [ 6.5004675, 46.5190918 ], + [ 6.5002191, 46.5190496 ], + [ 6.4999672, 46.5190188 ], + [ 6.4997129, 46.5189994 ], + [ 6.4994572999999995, 46.5189915 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00037", + "country" : "CHE", + "name" : [ + { + "text" : "Hôpital régional EHC Morges", + "lang" : "de-CH" + }, + { + "text" : "Hôpital régional EHC Morges", + "lang" : "fr-CH" + }, + { + "text" : "Hôpital régional EHC Morges", + "lang" : "it-CH" + }, + { + "text" : "Hôpital régional EHC Morges", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kantonspolizei Waadt", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale vaudoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Vaud", + "lang" : "it-CH" + }, + { + "text" : "Vaud Cantonal Police", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.pcv@vd.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.2496994, 46.2451658 ], + [ 7.2497695, 46.2450317 ], + [ 7.2498298, 46.2449428 ], + [ 7.2499143, 46.2448654 ], + [ 7.2500143, 46.2447828 ], + [ 7.2500899, 46.2447166 ], + [ 7.2501267, 46.2446101 ], + [ 7.2501222, 46.2445143 ], + [ 7.2501663, 46.2444249 ], + [ 7.2502688, 46.2443084 ], + [ 7.2504119, 46.2441646 ], + [ 7.2504992, 46.2440028 ], + [ 7.2505215, 46.2438567 ], + [ 7.2505845, 46.2436943 ], + [ 7.250698, 46.2436909 ], + [ 7.2512616, 46.2438084 ], + [ 7.2514705, 46.2438463 ], + [ 7.2516352, 46.2437985 ], + [ 7.2517603, 46.2437107 ], + [ 7.2518629, 46.243566 ], + [ 7.2519573, 46.2434382 ], + [ 7.2520598, 46.2433048 ], + [ 7.2521516, 46.2430247 ], + [ 7.2521360999999995, 46.2427934 ], + [ 7.2521045, 46.2425787 ], + [ 7.2520108, 46.2424811 ], + [ 7.251927, 46.2423386 ], + [ 7.2518982, 46.2422423 ], + [ 7.2519107, 46.2421355 ], + [ 7.2519629, 46.2420406 ], + [ 7.252096, 46.241953 ], + [ 7.2522301, 46.2418427 ], + [ 7.2523246, 46.2417148 ], + [ 7.2523452, 46.2416026 ], + [ 7.2523532, 46.2413941 ], + [ 7.2524142, 46.2410796 ], + [ 7.2523493, 46.2408699 ], + [ 7.2522484, 46.2407609 ], + [ 7.2522033, 46.2406698 ], + [ 7.2523212, 46.2405594 ], + [ 7.2525381, 46.2404113 ], + [ 7.2529439, 46.2401934 ], + [ 7.2533948, 46.2398636 ], + [ 7.2535622, 46.2397259 ], + [ 7.2536818, 46.239576 ], + [ 7.2537195, 46.2394301 ], + [ 7.2536835, 46.2393168 ], + [ 7.2536059999999996, 46.2392252 ], + [ 7.2534817, 46.2390819 ], + [ 7.2534149, 46.2389341 ], + [ 7.2533555, 46.2387865 ], + [ 7.2533131, 46.2386222 ], + [ 7.2533453, 46.2384312 ], + [ 7.2533516, 46.2382623 ], + [ 7.2533353, 46.2380535 ], + [ 7.2533235, 46.2379462 ], + [ 7.2533603, 46.2378341 ], + [ 7.2533584, 46.237682 ], + [ 7.2533565, 46.2375128 ], + [ 7.2533222, 46.2373543 ], + [ 7.2532952, 46.237213 ], + [ 7.2533274, 46.237022 ], + [ 7.2533346, 46.2368249 ], + [ 7.2533092, 46.236644 ], + [ 7.2533154, 46.236492 ], + [ 7.2533604, 46.23638 ], + [ 7.2534224, 46.2362516 ], + [ 7.2534286, 46.2360939 ], + [ 7.2533466, 46.235912 ], + [ 7.2532727, 46.2357134 ], + [ 7.2531834, 46.2355089 ], + [ 7.2531311, 46.2354007 ], + [ 7.2531509, 46.2352998 ], + [ 7.253123, 46.2351809 ], + [ 7.2530103, 46.2349703 ], + [ 7.252913, 46.2347431 ], + [ 7.2528192, 46.2344482 ], + [ 7.2527398, 46.23421 ], + [ 7.2528009, 46.2340984 ], + [ 7.2528864, 46.2339874 ], + [ 7.252962, 46.2339041 ], + [ 7.2529997999999996, 46.2337696 ], + [ 7.2529672, 46.2335773 ], + [ 7.2528959, 46.2333225 ], + [ 7.2528481, 46.2330905 ], + [ 7.2528263, 46.2328196 ], + [ 7.2528388, 46.2324985 ], + [ 7.2528259, 46.2319967 ], + [ 7.2528124, 46.2319232 ], + [ 7.2527285, 46.2318033 ], + [ 7.2526502, 46.2317286 ], + [ 7.2525719, 46.2316481 ], + [ 7.2525583000000005, 46.2315916 ], + [ 7.2525448, 46.2315237 ], + [ 7.2525547, 46.2314675 ], + [ 7.2525753, 46.2313608 ], + [ 7.2526031, 46.2312769 ], + [ 7.2526805, 46.2311543 ], + [ 7.2527498, 46.2310372 ], + [ 7.2527982, 46.2308521 ], + [ 7.2528296, 46.2306667 ], + [ 7.2528251, 46.2305595 ], + [ 7.2527629000000005, 46.230502 ], + [ 7.2526927, 46.2304331 ], + [ 7.2526242, 46.230319 ], + [ 7.252563, 46.2302165 ], + [ 7.2525125, 46.2300578 ], + [ 7.2524619999999995, 46.2298934 ], + [ 7.2524205, 46.2297066 ], + [ 7.25246, 46.2295326 ], + [ 7.2525093, 46.2293138 ], + [ 7.2525254, 46.2290999 ], + [ 7.2525371, 46.2290044 ], + [ 7.2524848, 46.2289076 ], + [ 7.2523839, 46.2287817 ], + [ 7.2523002, 46.2286448 ], + [ 7.2522389, 46.2285423 ], + [ 7.2521363, 46.2284783 ], + [ 7.2520003, 46.2284364 ], + [ 7.2519067, 46.2283444 ], + [ 7.2517977, 46.2282297 ], + [ 7.251713, 46.2281098 ], + [ 7.2516608, 46.2279905 ], + [ 7.2515914, 46.2278933 ], + [ 7.2514897, 46.2277956 ], + [ 7.2514212, 46.2276928 ], + [ 7.25136, 46.2275903 ], + [ 7.2513239, 46.2274882 ], + [ 7.2512914, 46.2272847 ], + [ 7.2512796, 46.2271549 ], + [ 7.2512543, 46.2269853 ], + [ 7.2512336, 46.2268779 ], + [ 7.2511399, 46.2267972 ], + [ 7.2510769, 46.226751 ], + [ 7.2509905, 46.226676 ], + [ 7.2509292, 46.2265904 ], + [ 7.2509174, 46.2264774 ], + [ 7.2509219, 46.2263592 ], + [ 7.2508453, 46.2262507 ], + [ 7.2507346, 46.2261753 ], + [ 7.2506166, 46.2260829 ], + [ 7.2505733, 46.2259468 ], + [ 7.2505553, 46.2257831 ], + [ 7.2505291, 46.2256191 ], + [ 7.2505992, 46.2254852 ], + [ 7.2506838, 46.225391 ], + [ 7.2507945, 46.2252522 ], + [ 7.2509221, 46.2251136 ], + [ 7.2510417, 46.224958 ], + [ 7.2512163, 46.2248374 ], + [ 7.2513674, 46.2247162 ], + [ 7.2514672000000004, 46.2244306 ], + [ 7.2516317, 46.2241801 ], + [ 7.2516938, 46.2240291 ], + [ 7.2516756, 46.2238878 ], + [ 7.2515919, 46.2237341 ], + [ 7.2514991, 46.2236253 ], + [ 7.2514144, 46.2235166 ], + [ 7.2512164, 46.2233833 ], + [ 7.2510499, 46.2233013 ], + [ 7.25094, 46.2232091 ], + [ 7.250832, 46.2230494 ], + [ 7.2507006, 46.2228891 ], + [ 7.2505358, 46.2227451 ], + [ 7.2504133, 46.222568 ], + [ 7.2503413, 46.2225555 ], + [ 7.2502351, 46.2225591 ], + [ 7.2500858, 46.2226521 ], + [ 7.2500093, 46.2227465 ], + [ 7.2498743, 46.2228848 ], + [ 7.2497241, 46.2229891 ], + [ 7.2495657, 46.2231045 ], + [ 7.2494389, 46.2232374 ], + [ 7.2494021, 46.2233326 ], + [ 7.2492438, 46.2234423 ], + [ 7.2491043, 46.2234905 ], + [ 7.2490027, 46.22359 ], + [ 7.2488938, 46.2236838 ], + [ 7.24873, 46.2237258 ], + [ 7.2485906, 46.2237626 ], + [ 7.2484493, 46.2238501 ], + [ 7.2482999, 46.2239375 ], + [ 7.2481326, 46.2240697 ], + [ 7.2479257, 46.2241841 ], + [ 7.24777, 46.2242319 ], + [ 7.2475819, 46.2242567 ], + [ 7.2474874, 46.224193 ], + [ 7.2473694, 46.2241118 ], + [ 7.2472416, 46.2240531 ], + [ 7.2469779, 46.2239579 ], + [ 7.2466845, 46.2237778 ], + [ 7.2464846, 46.2237065 ], + [ 7.2462731, 46.2237306 ], + [ 7.2460599, 46.2237942 ], + [ 7.2458449, 46.2238916 ], + [ 7.2454794, 46.2239243 ], + [ 7.2452778, 46.2238924 ], + [ 7.2450672, 46.2238885 ], + [ 7.2449674, 46.2239542 ], + [ 7.2448513, 46.2240197 ], + [ 7.2447361, 46.2240626 ], + [ 7.2446048, 46.2240996 ], + [ 7.2444419, 46.2241078 ], + [ 7.2443132, 46.2240941 ], + [ 7.2440774, 46.2241123 ], + [ 7.2439478, 46.2241099 ], + [ 7.2437129, 46.2240886 ], + [ 7.2435041, 46.2240452 ], + [ 7.2433826, 46.2240429 ], + [ 7.243227, 46.2240738 ], + [ 7.2430478, 46.2241043 ], + [ 7.2428418, 46.2241737 ], + [ 7.2426123, 46.2242483 ], + [ 7.2424089, 46.2242613 ], + [ 7.2421317, 46.224307 ], + [ 7.2419364999999996, 46.2243145 ], + [ 7.2417898, 46.2243456 ], + [ 7.2416251, 46.2244102 ], + [ 7.2414371, 46.2244349 ], + [ 7.2412904, 46.2244546 ], + [ 7.2411265, 46.2245079 ], + [ 7.2410177000000004, 46.2245904 ], + [ 7.2409259, 46.2246563 ], + [ 7.2408576, 46.2247452 ], + [ 7.2407514, 46.2247657 ], + [ 7.2406542, 46.2247583 ], + [ 7.240493, 46.224744 ], + [ 7.2402888, 46.2247852 ], + [ 7.2401223, 46.2248836 ], + [ 7.2399955, 46.2250108 ], + [ 7.2398345, 46.2251826 ], + [ 7.2396743, 46.2253598 ], + [ 7.2392478, 46.2256844 ], + [ 7.2391957, 46.2257567 ], + [ 7.239193, 46.2258299 ], + [ 7.2391102, 46.2258678 ], + [ 7.2390436, 46.2259116 ], + [ 7.2388772, 46.2260269 ], + [ 7.2387853, 46.2261041 ], + [ 7.2386999, 46.2262039 ], + [ 7.2386072, 46.2263035 ], + [ 7.2384804, 46.2264309 ], + [ 7.2383877, 46.2265081 ], + [ 7.2382221, 46.2266064 ], + [ 7.2380557, 46.2267047 ], + [ 7.2378108, 46.2267621 ], + [ 7.2375976, 46.226820000000004 ], + [ 7.2374896, 46.2268913 ], + [ 7.2373952, 46.227008 ], + [ 7.2373762, 46.2270864 ], + [ 7.237469, 46.2272009 ], + [ 7.2374646, 46.2273023 ], + [ 7.2374375, 46.2273863 ], + [ 7.2373818, 46.2275657 ], + [ 7.2372882, 46.2276596 ], + [ 7.2372288, 46.2277318 ], + [ 7.2371289, 46.2278032 ], + [ 7.237101, 46.2278984 ], + [ 7.2370579, 46.2279597 ], + [ 7.2370066, 46.2280263 ], + [ 7.2368896, 46.2281256 ], + [ 7.2367564, 46.2282076 ], + [ 7.2366881, 46.2282852 ], + [ 7.2366530000000004, 46.2283578 ], + [ 7.2366836, 46.2284091 ], + [ 7.2366647, 46.2284707 ], + [ 7.2365972, 46.2285428 ], + [ 7.2365054, 46.2286087 ], + [ 7.236446, 46.2286808 ], + [ 7.2364596, 46.2287319 ], + [ 7.2365136, 46.2288117 ], + [ 7.2364992, 46.2289692 ], + [ 7.2364677, 46.2291547 ], + [ 7.2364489, 46.2292162 ], + [ 7.2364039, 46.2293225 ], + [ 7.2362941, 46.2294388 ], + [ 7.2362266, 46.2294995 ], + [ 7.2362087, 46.2295443 ], + [ 7.2362068, 46.2296006 ], + [ 7.2361862, 46.2297073 ], + [ 7.2361509999999996, 46.2297855 ], + [ 7.236107, 46.2298692 ], + [ 7.2360233, 46.2299296 ], + [ 7.2358991, 46.2300062 ], + [ 7.2358001, 46.2300438 ], + [ 7.2357416, 46.2300878 ], + [ 7.2356993, 46.2301321 ], + [ 7.2356470999999996, 46.2302213 ], + [ 7.2355878, 46.2302765 ], + [ 7.2355535, 46.2303322 ], + [ 7.2355284, 46.2303543 ], + [ 7.235469, 46.2304208 ], + [ 7.2353691, 46.2304922 ], + [ 7.2353106, 46.2305249 ], + [ 7.2352431, 46.2305969 ], + [ 7.2352161, 46.2306584 ], + [ 7.235181, 46.230731 ], + [ 7.2351225, 46.230775 ], + [ 7.2350236, 46.2308069 ], + [ 7.2348777, 46.2308155 ], + [ 7.2347868, 46.2308588 ], + [ 7.2346294, 46.2309292 ], + [ 7.2344377, 46.2310608 ], + [ 7.2342882, 46.2311538 ], + [ 7.2341137, 46.2312633 ], + [ 7.2338887, 46.2314168 ], + [ 7.2337221, 46.2315377 ], + [ 7.2336376, 46.2316094 ], + [ 7.2336016, 46.2316988 ], + [ 7.2335665, 46.2317714 ], + [ 7.2335224, 46.2318721 ], + [ 7.2334612, 46.2319836 ], + [ 7.2333685, 46.2320721 ], + [ 7.2332353, 46.2321597 ], + [ 7.233085, 46.2322527 ], + [ 7.232986, 46.2323071 ], + [ 7.2327358, 46.2324885 ], + [ 7.2324523, 46.2326804 ], + [ 7.2323345, 46.2327796 ], + [ 7.232221, 46.2327775 ], + [ 7.2320419, 46.232791 ], + [ 7.2319204, 46.2328056 ], + [ 7.2318295, 46.2328378 ], + [ 7.2316729, 46.2328968 ], + [ 7.231582, 46.2329459 ], + [ 7.2313929, 46.2330211 ], + [ 7.2311949, 46.2331019 ], + [ 7.2309142, 46.2332151 ], + [ 7.2306666, 46.2333401 ], + [ 7.2304335, 46.2334765 ], + [ 7.2301851, 46.233624 ], + [ 7.229979, 46.2337046 ], + [ 7.2297495, 46.2337623 ], + [ 7.2294857, 46.2338757 ], + [ 7.2288944, 46.2340562 ], + [ 7.2280492, 46.2343108 ], + [ 7.225094, 46.2335561 ], + [ 7.22485, 46.2333825 ], + [ 7.2248212, 46.2332917 ], + [ 7.2248096, 46.2331676 ], + [ 7.2247907, 46.2330263 ], + [ 7.2247528, 46.2327663 ], + [ 7.2247654, 46.232451 ], + [ 7.224778, 46.2321299 ], + [ 7.2247788, 46.2319101 ], + [ 7.2247411, 46.2318363 ], + [ 7.2246223, 46.2317495 ], + [ 7.2244962, 46.2316681 ], + [ 7.2243054, 46.2315687 ], + [ 7.2242047, 46.2314485 ], + [ 7.2241777, 46.231307 ], + [ 7.2242092, 46.2311273 ], + [ 7.2242343, 46.2309137 ], + [ 7.2242658, 46.2307339 ], + [ 7.2243224999999995, 46.2305321 ], + [ 7.224355, 46.2303186 ], + [ 7.2244225, 46.2300549 ], + [ 7.2244702, 46.2298585 ], + [ 7.2245188, 46.2296735 ], + [ 7.2245989, 46.2294777 ], + [ 7.2246295, 46.2293206 ], + [ 7.2245719, 46.2291391 ], + [ 7.2245062, 46.2289688 ], + [ 7.2244890999999996, 46.2287881 ], + [ 7.2244639, 46.2286018 ], + [ 7.2244712, 46.2284046 ], + [ 7.2244954, 46.2282134 ], + [ 7.2245179, 46.228056 ], + [ 7.2245549, 46.2279328 ], + [ 7.2245944, 46.2277588 ], + [ 7.2245864, 46.2275502 ], + [ 7.2246664, 46.2273769 ], + [ 7.2247492, 46.2271305 ], + [ 7.2248681, 46.226789 ], + [ 7.224941, 46.2265762 ], + [ 7.2249293, 46.2264633 ], + [ 7.224797, 46.2263367 ], + [ 7.2244567, 46.2261275 ], + [ 7.2238286, 46.2266172 ], + [ 7.2235693, 46.2268265 ], + [ 7.2233318, 46.2270869 ], + [ 7.2231625, 46.2272697 ], + [ 7.2230321, 46.2274814 ], + [ 7.2229528, 46.2276488 ], + [ 7.2228341, 46.2277707 ], + [ 7.222717, 46.2278587 ], + [ 7.222519, 46.2279619 ], + [ 7.2223939, 46.2280329 ], + [ 7.2222616, 46.2281092 ], + [ 7.2220357, 46.228274 ], + [ 7.2218944, 46.2283616 ], + [ 7.221735, 46.2285051 ], + [ 7.2215505, 46.2286537 ], + [ 7.2214083, 46.2287694 ], + [ 7.2212427, 46.2288565 ], + [ 7.2210933, 46.2289438 ], + [ 7.2209268, 46.2290421 ], + [ 7.2206954, 46.2291561 ], + [ 7.2205146, 46.229209 ], + [ 7.2203741, 46.2292853 ], + [ 7.2202814, 46.2293681 ], + [ 7.2201797, 46.2294676 ], + [ 7.2200879, 46.2295504 ], + [ 7.2200114, 46.2296334 ], + [ 7.219843, 46.229788 ], + [ 7.2197189, 46.2298421 ], + [ 7.2196207, 46.2298797 ], + [ 7.2195037, 46.229962 ], + [ 7.2193858, 46.2300725 ], + [ 7.2192742, 46.2302282 ], + [ 7.2191968, 46.2303281 ], + [ 7.2190536, 46.230472 ], + [ 7.2188763, 46.2306377 ], + [ 7.218708, 46.2307923 ], + [ 7.2185289, 46.2310144 ], + [ 7.2183533, 46.2311575 ], + [ 7.2181265, 46.2313505 ], + [ 7.2179347, 46.2314877 ], + [ 7.2176845, 46.2316521 ], + [ 7.2174783, 46.2317553 ], + [ 7.2171588, 46.2318168 ], + [ 7.217048, 46.2319669 ], + [ 7.2168130999999995, 46.2319568 ], + [ 7.2165944, 46.2319585 ], + [ 7.2164477, 46.2319781 ], + [ 7.21612, 46.2320565 ], + [ 7.2159068, 46.2321032 ], + [ 7.2157753, 46.2321626 ], + [ 7.2155449, 46.2322371 ], + [ 7.2153882, 46.2323075 ], + [ 7.2151893, 46.2324051 ], + [ 7.2150813, 46.232482 ], + [ 7.2148743, 46.2325739 ], + [ 7.2146916, 46.2326832 ], + [ 7.2145835, 46.2327656 ], + [ 7.2144737, 46.2328706 ], + [ 7.214354, 46.2330205 ], + [ 7.2142522, 46.2331369 ], + [ 7.214182, 46.2332765 ], + [ 7.2140379, 46.2334315 ], + [ 7.2138939, 46.2335809 ], + [ 7.2137607, 46.2336631 ], + [ 7.2135473, 46.2337322 ], + [ 7.2133097, 46.2337897 ], + [ 7.2130082, 46.2338235 ], + [ 7.2131873, 46.2340073 ], + [ 7.2132565, 46.2341043 ], + [ 7.2132503, 46.2342564 ], + [ 7.2132043, 46.2343907 ], + [ 7.2129558, 46.2345269 ], + [ 7.2127497, 46.2346132 ], + [ 7.2126875, 46.2347585 ], + [ 7.2126308, 46.234949 ], + [ 7.2125354, 46.2351051 ], + [ 7.2123498999999995, 46.2350903 ], + [ 7.2121717, 46.235087 ], + [ 7.2120169, 46.2350895 ], + [ 7.2118467, 46.2350976 ], + [ 7.2116992, 46.235123 ], + [ 7.2114885, 46.2351302 ], + [ 7.2113417, 46.2351556 ], + [ 7.2111536, 46.2351972 ], + [ 7.2110321, 46.2351949 ], + [ 7.2109394, 46.2352664 ], + [ 7.2108719, 46.2353271 ], + [ 7.2107557, 46.2354037 ], + [ 7.2106315, 46.2354747 ], + [ 7.2104839, 46.2355058 ], + [ 7.2103137, 46.2355138 ], + [ 7.2102453, 46.2356026 ], + [ 7.2101499, 46.2357417 ], + [ 7.2100346, 46.2357845 ], + [ 7.2098897, 46.2357649 ], + [ 7.2097421, 46.235807199999996 ], + [ 7.2096574, 46.2358901 ], + [ 7.2095322, 46.2359948 ], + [ 7.2094431, 46.2361847 ], + [ 7.2093404, 46.236318 ], + [ 7.2091811, 46.2364503 ], + [ 7.208911, 46.2365128 ], + [ 7.2086653, 46.2365644 ], + [ 7.2086221, 46.2366313 ], + [ 7.2085941, 46.2367378 ], + [ 7.2085464, 46.2369002 ], + [ 7.2084302, 46.2369713 ], + [ 7.2083402, 46.2369922 ], + [ 7.2081691, 46.2370228 ], + [ 7.2080053, 46.2370478 ], + [ 7.2078585, 46.2370845 ], + [ 7.2076947, 46.2371209 ], + [ 7.2075056, 46.2371849 ], + [ 7.2074382, 46.23724 ], + [ 7.2073778, 46.2373403 ], + [ 7.2073327, 46.2374464 ], + [ 7.2072625, 46.237586 ], + [ 7.2072013, 46.2376919 ], + [ 7.207077, 46.2377516 ], + [ 7.2070113, 46.2377841 ], + [ 7.20695, 46.2379013 ], + [ 7.2068087, 46.2379774 ], + [ 7.2066152, 46.2379456 ], + [ 7.2064288, 46.2379365 ], + [ 7.2062578, 46.2379614 ], + [ 7.2061353, 46.2379872 ], + [ 7.2058986, 46.2380109 ], + [ 7.2057356, 46.2380417 ], + [ 7.2055222, 46.2381052 ], + [ 7.2053251, 46.2381634 ], + [ 7.2051459, 46.2381825 ], + [ 7.2049758, 46.2381737 ], + [ 7.2047481, 46.2381862 ], + [ 7.2045041, 46.2382098 ], + [ 7.2042602, 46.238222 ], + [ 7.2039532, 46.2381936 ], + [ 7.2036958, 46.2381323 ], + [ 7.2030404, 46.2380973 ], + [ 7.2030277, 46.2384183 ], + [ 7.2025154, 46.2384537 ], + [ 7.2024137, 46.2385532 ], + [ 7.2022985, 46.2386017 ], + [ 7.2022246, 46.2386284 ], + [ 7.2021013, 46.2386599 ], + [ 7.2020023, 46.2387031 ], + [ 7.2018519, 46.238813 ], + [ 7.2016772, 46.238928 ], + [ 7.2014853, 46.2390653 ], + [ 7.2012846, 46.2392135 ], + [ 7.2011198, 46.2392724 ], + [ 7.2009974, 46.2392926 ], + [ 7.2008596, 46.23929 ], + [ 7.2006733, 46.2392808 ], + [ 7.2004879, 46.2392547 ], + [ 7.2002943, 46.2392341 ], + [ 7.200099, 46.2392416 ], + [ 7.1998874, 46.2392658 ], + [ 7.1996588, 46.2392953 ], + [ 7.1994228, 46.2393302 ], + [ 7.1990448, 46.2394357 ], + [ 7.1987818, 46.2395264 ], + [ 7.1985918, 46.2396186 ], + [ 7.1983758, 46.2397385 ], + [ 7.1981615, 46.2398246 ], + [ 7.1979805, 46.2398945 ], + [ 7.1978599, 46.2398582 ], + [ 7.1976429, 46.2398203 ], + [ 7.1974179, 46.2397596 ], + [ 7.1970408, 46.2396678 ], + [ 7.1968139, 46.2396635 ], + [ 7.1965979, 46.2395805 ], + [ 7.1963018, 46.2394903 ], + [ 7.1961487, 46.2394648 ], + [ 7.1959939, 46.2394843 ], + [ 7.1958769, 46.2395667 ], + [ 7.195776, 46.2396437 ], + [ 7.1956742, 46.2397657 ], + [ 7.1955957999999995, 46.2398938 ], + [ 7.1954364, 46.240026 ], + [ 7.1952788, 46.2401244 ], + [ 7.1950411, 46.2401819 ], + [ 7.1947972, 46.2401885 ], + [ 7.194555, 46.2401727 ], + [ 7.1942148, 46.2401548 ], + [ 7.1939249, 46.2401098 ], + [ 7.1935865, 46.2400357 ], + [ 7.1932894, 46.2399793 ], + [ 7.1929933, 46.2398778 ], + [ 7.1927468, 46.2397434 ], + [ 7.1925002, 46.2396203 ], + [ 7.1922068, 46.2394738 ], + [ 7.1919188, 46.2393613 ], + [ 7.1917533, 46.2392397 ], + [ 7.191522, 46.2391451 ], + [ 7.191306, 46.2390733 ], + [ 7.1910495, 46.2389952 ], + [ 7.1907767, 46.2389336 ], + [ 7.1905427, 46.2388952 ], + [ 7.1902781, 46.2388282 ], + [ 7.1899649, 46.238732 ], + [ 7.189685, 46.2386421 ], + [ 7.1894051, 46.2385465 ], + [ 7.1890442, 46.2384494 ], + [ 7.1887607, 46.2384328 ], + [ 7.1885257, 46.2384339 ], + [ 7.1881936, 46.2384219 ], + [ 7.1879172, 46.2384391 ], + [ 7.1875995, 46.2384611 ], + [ 7.1872384, 46.2385725 ], + [ 7.1869224, 46.2385777 ], + [ 7.1867002, 46.2384552 ], + [ 7.1864707, 46.2383154 ], + [ 7.1862951, 46.2384473 ], + [ 7.1860736, 46.2385051 ], + [ 7.1859205, 46.2386768 ], + [ 7.1857629, 46.2387641 ], + [ 7.1856018, 46.2387383 ], + [ 7.1854029, 46.2386443 ], + [ 7.1851564, 46.2385212 ], + [ 7.184935, 46.2383873 ], + [ 7.184711, 46.2382929 ], + [ 7.1845507, 46.2382616 ], + [ 7.1842718, 46.2381322 ], + [ 7.184, 46.2380425 ], + [ 7.1837498, 46.2380039 ], + [ 7.1833907, 46.2378673 ], + [ 7.1829579, 46.237735 ], + [ 7.1824431, 46.2376293 ], + [ 7.1819912, 46.2375754 ], + [ 7.1816709, 46.2374734 ], + [ 7.181445, 46.2374297 ], + [ 7.1812353, 46.2374031 ], + [ 7.1810579, 46.2373884 ], + [ 7.1808464, 46.2374069 ], + [ 7.1806268, 46.2374083 ], + [ 7.1804413, 46.2373935 ], + [ 7.1802092, 46.2373157 ], + [ 7.1799985, 46.2373172 ], + [ 7.1798347, 46.2373479 ], + [ 7.1795521, 46.2373143 ], + [ 7.1793379, 46.2372031 ], + [ 7.1789555, 46.2370266 ], + [ 7.1784113, 46.2366498 ], + [ 7.1777545, 46.2362427 ], + [ 7.1766811, 46.2357203 ], + [ 7.1765136, 46.2358411 ], + [ 7.1763965, 46.2359346 ], + [ 7.1762551, 46.2360276 ], + [ 7.1761299, 46.2361042 ], + [ 7.1759885, 46.2361916 ], + [ 7.1758237, 46.2362617 ], + [ 7.1756671, 46.236315 ], + [ 7.1754618, 46.2363899 ], + [ 7.1753141, 46.2364322 ], + [ 7.1751493, 46.2364966 ], + [ 7.1750088, 46.2365671 ], + [ 7.1748799, 46.236745 ], + [ 7.1748043, 46.2367999 ], + [ 7.1747502, 46.236934 ], + [ 7.1745736, 46.2370998 ], + [ 7.1743647, 46.2372423 ], + [ 7.1741747, 46.2373232 ], + [ 7.1739955, 46.2373535 ], + [ 7.1738649, 46.2373679 ], + [ 7.173568, 46.2372832 ], + [ 7.1733682, 46.2372175 ], + [ 7.1731361, 46.2371339 ], + [ 7.1728868, 46.2370898 ], + [ 7.1726591, 46.2370966 ], + [ 7.1723584, 46.2371077 ], + [ 7.1721063, 46.2371366 ], + [ 7.1719362, 46.2371277 ], + [ 7.1717679, 46.237085 ], + [ 7.1714871, 46.2370118 ], + [ 7.1710983, 46.2369874 ], + [ 7.1707328, 46.2370086 ], + [ 7.1704402, 46.2370311 ], + [ 7.1702774, 46.237028 ], + [ 7.1700434, 46.2370008 ], + [ 7.1697869, 46.236934 ], + [ 7.1696429, 46.2368804 ], + [ 7.1693901, 46.2367233 ], + [ 7.1691446, 46.2365665 ], + [ 7.1688828, 46.2364204 ], + [ 7.1686452, 46.2362974 ], + [ 7.1683888, 46.2362079 ], + [ 7.1681719, 46.2361643 ], + [ 7.167946, 46.2361374 ], + [ 7.1677759, 46.2361173 ], + [ 7.1675743, 46.2361076 ], + [ 7.1674213, 46.2360821 ], + [ 7.1672206, 46.2360219 ], + [ 7.1670586, 46.2360244 ], + [ 7.1667436, 46.2359788 ], + [ 7.1664466000000004, 46.2359166 ], + [ 7.1661344, 46.2358148 ], + [ 7.1657384, 46.2357677 ], + [ 7.1656808, 46.2358004 ], + [ 7.1655655, 46.2358432 ], + [ 7.165443, 46.2358689 ], + [ 7.1652874, 46.2358886 ], + [ 7.1650929, 46.2359017 ], + [ 7.1648724, 46.2359255 ], + [ 7.1646608, 46.2359552 ], + [ 7.1644564, 46.2359907 ], + [ 7.1642510999999995, 46.2360488 ], + [ 7.1640296, 46.2361121 ], + [ 7.1638018, 46.2361358 ], + [ 7.1635733, 46.2361596 ], + [ 7.1633473, 46.2361495 ], + [ 7.1631285, 46.2361453 ], + [ 7.1630143, 46.2361486 ], + [ 7.1628351, 46.236179 ], + [ 7.1626794, 46.2362042 ], + [ 7.1624849, 46.2362173 ], + [ 7.1622976, 46.2362306 ], + [ 7.1620537, 46.2362428 ], + [ 7.1618341, 46.2362498 ], + [ 7.1614524, 46.2362649 ], + [ 7.1611355, 46.2362925 ], + [ 7.1607745, 46.2363813 ], + [ 7.1604378, 46.2364819 ], + [ 7.1598867, 46.2366739 ], + [ 7.1594075, 46.2368901 ], + [ 7.1590446, 46.2370353 ], + [ 7.1547843, 46.2341399 ], + [ 7.1535085, 46.2343968 ], + [ 7.1534024, 46.234406 ], + [ 7.1532871, 46.2344432 ], + [ 7.153169, 46.2345592 ], + [ 7.1530761, 46.2346589 ], + [ 7.1529176, 46.2347628 ], + [ 7.1527482, 46.2349286 ], + [ 7.1526067, 46.2350273 ], + [ 7.1524553, 46.2351596 ], + [ 7.1522887, 46.2352746 ], + [ 7.1522039, 46.2353633 ], + [ 7.1521012, 46.2354852 ], + [ 7.1519984, 46.2356129 ], + [ 7.151875, 46.2356724 ], + [ 7.1517093, 46.2357537 ], + [ 7.1514778, 46.2358563 ], + [ 7.1512868, 46.2359652 ], + [ 7.1510383, 46.2360901 ], + [ 7.150813, 46.2362434 ], + [ 7.1506373, 46.2363753 ], + [ 7.1505002, 46.2365586 ], + [ 7.1501426, 46.2367657 ], + [ 7.1499211, 46.2368347 ], + [ 7.1497033, 46.2368079 ], + [ 7.1494936, 46.2367757 ], + [ 7.1493416, 46.2367276 ], + [ 7.1492382, 46.2366692 ], + [ 7.149115, 46.2365259 ], + [ 7.1491269, 46.236419 ], + [ 7.1492898, 46.2363997 ], + [ 7.1491757, 46.2362227 ], + [ 7.1494044, 46.2361933 ], + [ 7.1495025, 46.2361727 ], + [ 7.1495449, 46.2361172 ], + [ 7.1494766, 46.2360088 ], + [ 7.1494723, 46.2359185 ], + [ 7.1495236, 46.2358519 ], + [ 7.149476, 46.2358284 ], + [ 7.1493636, 46.2357868 ], + [ 7.1492772, 46.2357287 ], + [ 7.1492314, 46.2356602 ], + [ 7.1492261, 46.2355925 ], + [ 7.1492145, 46.2354796 ], + [ 7.149184, 46.2354226 ], + [ 7.1491267, 46.2352354 ], + [ 7.1490864, 46.2350431 ], + [ 7.1490929, 46.2348854 ], + [ 7.1491839, 46.2348477 ], + [ 7.14921, 46.2348031 ], + [ 7.149122, 46.2347563 ], + [ 7.1488636, 46.2347456 ], + [ 7.1484866, 46.2346368 ], + [ 7.1478218, 46.2344322 ], + [ 7.1471316, 46.2342553 ], + [ 7.1467565, 46.234107 ], + [ 7.1464605, 46.2340054 ], + [ 7.1461511, 46.2338415 ], + [ 7.1459056, 46.2337014 ], + [ 7.1454504, 46.2335347 ], + [ 7.145112, 46.233483 ], + [ 7.1448484, 46.233382 ], + [ 7.1445543, 46.2332353 ], + [ 7.1442459, 46.2330377 ], + [ 7.1440257, 46.2328643 ], + [ 7.1438494, 46.2328157 ], + [ 7.1436568, 46.2327669 ], + [ 7.1435885, 46.2326585 ], + [ 7.1435546, 46.2324944 ], + [ 7.14349, 46.2323015 ], + [ 7.1433832, 46.2321247 ], + [ 7.1432175, 46.232206 ], + [ 7.1430348, 46.2321291 ], + [ 7.141452, 46.2319516 ], + [ 7.1411146, 46.2318773 ], + [ 7.1409887, 46.2317903 ], + [ 7.140827, 46.2315729 ], + [ 7.1406958, 46.2314125 ], + [ 7.1405027, 46.2311833 ], + [ 7.1403005, 46.2309708 ], + [ 7.1401369, 46.2308098 ], + [ 7.1400839, 46.2307242 ], + [ 7.140113, 46.2305952 ], + [ 7.1401042, 46.2304316 ], + [ 7.1400549, 46.2302502 ], + [ 7.1399653, 46.2300569 ], + [ 7.1398764, 46.2298578 ], + [ 7.1397949, 46.2296646 ], + [ 7.1396351, 46.2294079 ], + [ 7.1394716, 46.2292356 ], + [ 7.1391388, 46.2290544 ], + [ 7.1387475, 46.228917 ], + [ 7.1382824, 46.2287726 ], + [ 7.1378478, 46.2287021 ], + [ 7.1374843, 46.2286668 ], + [ 7.1368974, 46.2287398 ], + [ 7.1362376, 46.2288113 ], + [ 7.1360375, 46.2289427 ], + [ 7.1348069, 46.229685 ], + [ 7.1344736, 46.2298982 ], + [ 7.1344041, 46.2300096 ], + [ 7.1344065, 46.2301505 ], + [ 7.1343929, 46.2302798 ], + [ 7.1343548, 46.2304256 ], + [ 7.1342158, 46.2306483 ], + [ 7.1340553, 46.2308086 ], + [ 7.133876, 46.2310136 ], + [ 7.1336693, 46.2313195 ], + [ 7.1334356, 46.2316756 ], + [ 7.1332552, 46.2319144 ], + [ 7.1330405, 46.2322088 ], + [ 7.1328759, 46.232662 ], + [ 7.1328027, 46.2328579 ], + [ 7.1327652, 46.2331841 ], + [ 7.132755, 46.233415 ], + [ 7.1327465, 46.2336346 ], + [ 7.1327039, 46.2338648 ], + [ 7.1326268, 46.2341733 ], + [ 7.1324726, 46.2343675 ], + [ 7.1322978, 46.2344768 ], + [ 7.1320591, 46.2345622 ], + [ 7.1318366, 46.2346481 ], + [ 7.1316995, 46.2348257 ], + [ 7.1315381, 46.2349972 ], + [ 7.1315269, 46.2352675 ], + [ 7.1314336, 46.2355644 ], + [ 7.1314081, 46.2357894 ], + [ 7.1312961, 46.2359618 ], + [ 7.13106, 46.2361657 ], + [ 7.1308246, 46.2363752 ], + [ 7.1304694, 46.236869 ], + [ 7.1304524, 46.2368689 ], + [ 7.1288704, 46.2369546 ], + [ 7.128287, 46.236953 ], + [ 7.1278974999999996, 46.2370598 ], + [ 7.1270153, 46.2371743 ], + [ 7.1265356, 46.237191 ], + [ 7.1261727, 46.237172 ], + [ 7.1253967, 46.236855 ], + [ 7.1249198, 46.2363769 ], + [ 7.1245966, 46.2362231 ], + [ 7.1243386, 46.2359975 ], + [ 7.1240451, 46.2352051 ], + [ 7.1238935, 46.234512 ], + [ 7.1237273, 46.2341067 ], + [ 7.1236005, 46.2336116 ], + [ 7.1233833, 46.2330713 ], + [ 7.1234113, 46.2327116 ], + [ 7.1233864, 46.2325316 ], + [ 7.1229998, 46.2321437 ], + [ 7.122319, 46.2310623 ], + [ 7.1220003, 46.2301439 ], + [ 7.1219109, 46.2299188 ], + [ 7.1216528, 46.2297111 ], + [ 7.1213556, 46.2295574 ], + [ 7.1212274, 46.2293052 ], + [ 7.1216615, 46.2282269 ], + [ 7.1218213, 46.2274897 ], + [ 7.1218648, 46.2266982 ], + [ 7.1218278, 46.2263653 ], + [ 7.1214442, 46.2254646 ], + [ 7.1215517, 46.2248083 ], + [ 7.1220112, 46.2238021 ], + [ 7.1225576, 46.2234438 ], + [ 7.1219749, 46.2233522 ], + [ 7.1215221, 46.223216 ], + [ 7.1211337, 46.2231429 ], + [ 7.11984, 46.2227345 ], + [ 7.1194933, 46.2221938 ], + [ 7.1192349, 46.2220402 ], + [ 7.1188082, 46.221877 ], + [ 7.1189775, 46.2217426 ], + [ 7.1192375, 46.2216084 ], + [ 7.119238, 46.2215184 ], + [ 7.1185928, 46.2210488 ], + [ 7.1183608, 46.2208233 ], + [ 7.1179732, 46.2206153 ], + [ 7.1175606, 46.2202543 ], + [ 7.1173036, 46.2198937 ], + [ 7.1157149, 46.2189897 ], + [ 7.1153011, 46.2188356 ], + [ 7.1150431, 46.218628 ], + [ 7.1148501, 46.2184025 ], + [ 7.1151768, 46.2179357 ], + [ 7.115632, 46.2176671 ], + [ 7.1155942, 46.2174871 ], + [ 7.1154656, 46.2173248 ], + [ 7.1151168, 46.2171259 ], + [ 7.1146642, 46.2169627 ], + [ 7.1142112, 46.2168715 ], + [ 7.1138233, 46.2167354 ], + [ 7.1127513, 46.2161296 ], + [ 7.1122752, 46.2155615 ], + [ 7.1120188, 46.215093 ], + [ 7.1110764, 46.2145056 ], + [ 7.1108846, 46.2140733 ], + [ 7.110601, 46.2138296 ], + [ 7.1093348, 46.2132142 ], + [ 7.1090508, 46.2130335 ], + [ 7.1087285, 46.2127627 ], + [ 7.1081498, 46.2120413 ], + [ 7.106948, 46.2114981 ], + [ 7.1064327, 46.2110018 ], + [ 7.1061489, 46.2108031 ], + [ 7.1057225, 46.210595 ], + [ 7.1052438, 46.2104856 ], + [ 7.104622, 46.2104568 ], + [ 7.1035871, 46.2101839 ], + [ 7.1030692, 46.2101194 ], + [ 7.1018799, 46.2096661 ], + [ 7.1015571, 46.2094852 ], + [ 7.1011326, 46.2089892 ], + [ 7.1001646, 46.2083746 ], + [ 7.0994938, 46.2079048 ], + [ 7.0986782999999996, 46.2077675 ], + [ 7.0980301, 46.2078285 ], + [ 7.0969942, 46.2077354 ], + [ 7.0964124, 46.2075358 ], + [ 7.0959603, 46.2073095 ], + [ 7.0955474, 46.2070384 ], + [ 7.0952901, 46.2067408 ], + [ 7.0948413, 46.2060018 ], + [ 7.0945453, 46.205686 ], + [ 7.0938363, 46.2051172 ], + [ 7.0927783, 46.2044213 ], + [ 7.0915786, 46.203608 ], + [ 7.0906494, 46.2030384 ], + [ 7.0901981, 46.2027042 ], + [ 7.0897719, 46.202496 ], + [ 7.0895129, 46.2024772 ], + [ 7.08932, 46.2022517 ], + [ 7.0884822, 46.2015745 ], + [ 7.0866696, 46.201407 ], + [ 7.0861521, 46.2012974 ], + [ 7.085377, 46.2009532 ], + [ 7.0849887, 46.200889 ], + [ 7.0842781, 46.2005899 ], + [ 7.0835666, 46.2004348 ], + [ 7.0828559, 46.2001627 ], + [ 7.081563, 46.1997538 ], + [ 7.0804366, 46.1996603 ], + [ 7.0795941, 46.1997206 ], + [ 7.0792315, 46.1997014 ], + [ 7.0783644, 46.1995638 ], + [ 7.0782354, 46.1994914 ], + [ 7.0779781, 46.1992207 ], + [ 7.07772, 46.1990669 ], + [ 7.0773323, 46.1989308 ], + [ 7.0768399, 46.1989472 ], + [ 7.0764892, 46.199081 ], + [ 7.076488, 46.1992609 ], + [ 7.0756062, 46.199393 ], + [ 7.0753462, 46.1995271 ], + [ 7.0746322, 46.1997497 ], + [ 7.0739834, 46.1999095 ], + [ 7.0739569, 46.1999994 ], + [ 7.0737222, 46.2002235 ], + [ 7.072657, 46.2006429 ], + [ 7.07132, 46.2010253 ], + [ 7.0712012, 46.2009973 ], + [ 7.0710861, 46.2011375 ], + [ 7.0709632, 46.2012269 ], + [ 7.0708413, 46.201294 ], + [ 7.07067, 46.2013664 ], + [ 7.0704663, 46.2014217 ], + [ 7.0702786, 46.2015222 ], + [ 7.0700593, 46.2016224 ], + [ 7.0699197, 46.2017963 ], + [ 7.0698288, 46.2019422 ], + [ 7.0698024, 46.2021277 ], + [ 7.0697687, 46.2023301 ], + [ 7.0696773, 46.2025547 ], + [ 7.0696187, 46.2027119 ], + [ 7.0695126, 46.2028353 ], + [ 7.0693087, 46.2029356 ], + [ 7.0692263, 46.203031 ], + [ 7.0692661, 46.2031324 ], + [ 7.0693464, 46.2032228 ], + [ 7.0695409, 46.2033192 ], + [ 7.0697908, 46.2034949 ], + [ 7.0700889, 46.2037099 ], + [ 7.0703703, 46.204015 ], + [ 7.0705712, 46.204241 ], + [ 7.0706674, 46.2043821 ], + [ 7.0706667, 46.2044777 ], + [ 7.0706166, 46.2045956 ], + [ 7.0705669, 46.2047529 ], + [ 7.0705083, 46.2049158 ], + [ 7.0704739, 46.2050901 ], + [ 7.0704892, 46.2052252 ], + [ 7.0705205, 46.2053828 ], + [ 7.0706087, 46.2055239 ], + [ 7.0707372, 46.2056708 ], + [ 7.070703, 46.2058226 ], + [ 7.0706441, 46.2060248 ], + [ 7.0705941, 46.2062383 ], + [ 7.0706566, 46.2064581 ], + [ 7.0707604, 46.2066724 ], + [ 7.0708972, 46.2068023 ], + [ 7.0710017, 46.206921 ], + [ 7.071122, 46.2070903 ], + [ 7.0712423, 46.2072653 ], + [ 7.0714192, 46.2074517 ], + [ 7.0715314, 46.2076267 ], + [ 7.0715698, 46.2078181 ], + [ 7.071585, 46.2079588 ], + [ 7.0715745, 46.2082064 ], + [ 7.0715152, 46.2084649 ], + [ 7.0714415, 46.208594 ], + [ 7.071351, 46.2086723 ], + [ 7.0712047, 46.2087616 ], + [ 7.0711298, 46.2089301 ], + [ 7.071055, 46.2090985 ], + [ 7.071021, 46.2093291 ], + [ 7.0709867, 46.2094977 ], + [ 7.0708556, 46.2096041 ], + [ 7.0707332, 46.2097499 ], + [ 7.0706737, 46.2100421 ], + [ 7.0706547, 46.2103402 ], + [ 7.0708409, 46.210341 ], + [ 7.0710281, 46.2103306 ], + [ 7.0712141, 46.2103708 ], + [ 7.0714574, 46.2104338 ], + [ 7.0716999, 46.2105024 ], + [ 7.0719917, 46.2105768 ], + [ 7.0722503, 46.2106679 ], + [ 7.0725337, 46.210793 ], + [ 7.072719, 46.2109401 ], + [ 7.0729851, 46.21111 ], + [ 7.0732185, 46.2113305 ], + [ 7.0733223, 46.2115504 ], + [ 7.0734752, 46.2116973 ], + [ 7.0736281, 46.211833 ], + [ 7.0737647, 46.2119968 ], + [ 7.0739255, 46.2121776 ], + [ 7.074143, 46.2123585 ], + [ 7.0743122, 46.212483 ], + [ 7.074555, 46.2126304 ], + [ 7.0747402, 46.2127943 ], + [ 7.075022, 46.2130319 ], + [ 7.0752393, 46.213241 ], + [ 7.075448, 46.2135176 ], + [ 7.0755755, 46.2137095 ], + [ 7.0757597, 46.214031 ], + [ 7.0758457, 46.214369 ], + [ 7.0759249, 46.214645 ], + [ 7.0759223, 46.2149037 ], + [ 7.0760192, 46.2149549 ], + [ 7.0762687, 46.2151922 ], + [ 7.0763728, 46.2153672 ], + [ 7.0764198, 46.2156036 ], + [ 7.076482, 46.2158739 ], + [ 7.0765192, 46.2162454 ], + [ 7.0766146, 46.2165159 ], + [ 7.0767832, 46.216736 ], + [ 7.0770175, 46.2168327 ], + [ 7.0772934, 46.2168732 ], + [ 7.0771458, 46.2170245 ], + [ 7.0769818, 46.2171983 ], + [ 7.0768744, 46.2174004 ], + [ 7.0767913, 46.2175912 ], + [ 7.0767331, 46.2178161 ], + [ 7.0766742, 46.2180296 ], + [ 7.0767297, 46.2182098 ], + [ 7.0768506, 46.2182948 ], + [ 7.0770201, 46.2183912 ], + [ 7.0770761, 46.2184927 ], + [ 7.0770824, 46.218639 ], + [ 7.0770485, 46.2188639 ], + [ 7.0770219, 46.2190889 ], + [ 7.076947, 46.2192742 ], + [ 7.0768568, 46.2194426 ], + [ 7.0767983, 46.2195942 ], + [ 7.0768215, 46.2197462 ], + [ 7.0767716, 46.2198304 ], + [ 7.0767221, 46.2199596 ], + [ 7.0765661, 46.2201558 ], + [ 7.0764748, 46.2203636 ], + [ 7.0763754, 46.2205825 ], + [ 7.0763011, 46.2207904 ], + [ 7.0763065, 46.2210718 ], + [ 7.0763367, 46.2212801 ], + [ 7.0763195, 46.2214319 ], + [ 7.076261, 46.2215723 ], + [ 7.0761952, 46.2217239 ], + [ 7.0760957, 46.2219542 ], + [ 7.0760206, 46.2221509 ], + [ 7.0759952, 46.2223195 ], + [ 7.0760417, 46.222511 ], + [ 7.0761054, 46.22268 ], + [ 7.0762018, 46.2227986 ], + [ 7.0761429, 46.2230065 ], + [ 7.0761418, 46.2231808 ], + [ 7.0761481, 46.2233328 ], + [ 7.0762439, 46.2235358 ], + [ 7.0763881, 46.2237783 ], + [ 7.0764841, 46.2239532 ], + [ 7.0765482, 46.2240716 ], + [ 7.076571, 46.2241673 ], + [ 7.0765136, 46.2242684 ], + [ 7.0764229, 46.2243918 ], + [ 7.0763406, 46.2245827 ], + [ 7.0762898, 46.2247906 ], + [ 7.0763049, 46.2249595 ], + [ 7.0764175, 46.2250837 ], + [ 7.0766192, 46.2252029 ], + [ 7.07674, 46.2253159 ], + [ 7.0768847, 46.225474 ], + [ 7.0770537000000004, 46.2256436 ], + [ 7.0771827, 46.2257454 ], + [ 7.0773445, 46.2257742 ], + [ 7.0775877, 46.225871 ], + [ 7.0778948, 46.2259736 ], + [ 7.0781056, 46.2260813 ], + [ 7.0781366, 46.2261602 ], + [ 7.0781354, 46.2263516 ], + [ 7.0782563, 46.2264309 ], + [ 7.0784662, 46.2265499 ], + [ 7.0787092, 46.2266691 ], + [ 7.0787734, 46.2267649 ], + [ 7.0788768, 46.2269344 ], + [ 7.0789967, 46.2271711 ], + [ 7.079076, 46.2274359 ], + [ 7.0791632, 46.227605 ], + [ 7.0792679, 46.2276955 ], + [ 7.0793817, 46.2277635 ], + [ 7.0794944, 46.2278766 ], + [ 7.0796158, 46.2278827 ], + [ 7.0796963, 46.2279674 ], + [ 7.0797608, 46.2280071 ], + [ 7.0798498, 46.2280356 ], + [ 7.0799143, 46.2280809 ], + [ 7.0799867, 46.22816 ], + [ 7.0800588, 46.2282728 ], + [ 7.0801955, 46.228431 ], + [ 7.0802841, 46.2285102 ], + [ 7.080356, 46.2286623 ], + [ 7.0804200999999996, 46.2287694 ], + [ 7.0805251, 46.2288149 ], + [ 7.0806461, 46.2288943 ], + [ 7.0808395, 46.2290526 ], + [ 7.0810173, 46.2291266 ], + [ 7.0811638, 46.2291383 ], + [ 7.0813573, 46.2292856 ], + [ 7.081438, 46.2293252 ], + [ 7.0817057, 46.229394 ], + [ 7.0820938, 46.2295251 ], + [ 7.082231, 46.2295988 ], + [ 7.0824092, 46.2297346 ], + [ 7.0825463, 46.2298252 ], + [ 7.0827398, 46.2299611 ], + [ 7.0828689, 46.230046 ], + [ 7.0830058, 46.230176 ], + [ 7.0831669, 46.2303117 ], + [ 7.0832876, 46.2304417 ], + [ 7.0834242, 46.2306054 ], + [ 7.0835448, 46.2307578 ], + [ 7.0836897, 46.2308991 ], + [ 7.083875, 46.2310631 ], + [ 7.0841005, 46.2312609 ], + [ 7.0844632, 46.2315438 ], + [ 7.0845356, 46.2316342 ], + [ 7.0845433, 46.231696 ], + [ 7.0845266, 46.2317748 ], + [ 7.0844693, 46.2318533 ], + [ 7.0843541, 46.2320102 ], + [ 7.0840265, 46.2322958 ], + [ 7.0837484, 46.2325872 ], + [ 7.0836249, 46.2327611 ], + [ 7.0836152, 46.2328848 ], + [ 7.0836387, 46.2330087 ], + [ 7.08367, 46.2331664 ], + [ 7.0837906, 46.2333189 ], + [ 7.0839112, 46.2334544 ], + [ 7.0840887, 46.2335789 ], + [ 7.0844354, 46.2338223 ], + [ 7.0846046, 46.2339694 ], + [ 7.0847992, 46.2340827 ], + [ 7.0849521, 46.2342353 ], + [ 7.0850729, 46.2343483 ], + [ 7.0852338, 46.2345178 ], + [ 7.0853869, 46.2346591 ], + [ 7.0855559, 46.2348342 ], + [ 7.0856514, 46.2349753 ], + [ 7.085764, 46.2350939 ], + [ 7.085934, 46.2352522 ], + [ 7.0860709, 46.2353822 ], + [ 7.0862889, 46.2355013 ], + [ 7.0864504, 46.2355808 ], + [ 7.0866938, 46.2356606 ], + [ 7.0869201, 46.2357403 ], + [ 7.0872283, 46.2358204 ], + [ 7.0875193, 46.2359285 ], + [ 7.0876406, 46.2359684 ], + [ 7.0877615, 46.236059 ], + [ 7.087972, 46.2362173 ], + [ 7.0882623, 46.2364324 ], + [ 7.0885123, 46.2366023 ], + [ 7.0887705, 46.2367778 ], + [ 7.0890055, 46.2368969 ], + [ 7.089288, 46.237067 ], + [ 7.0894819, 46.2371522 ], + [ 7.089724, 46.2373051 ], + [ 7.0899426, 46.237458 ], + [ 7.0901765, 46.2376277 ], + [ 7.0907025, 46.2378606 ], + [ 7.0908804, 46.2379177 ], + [ 7.0910423, 46.2379465 ], + [ 7.0912537, 46.2379586 ], + [ 7.0913993, 46.2379931 ], + [ 7.0914151, 46.2380549 ], + [ 7.0913984, 46.2381281 ], + [ 7.0913565, 46.2382291 ], + [ 7.0913393, 46.2383809 ], + [ 7.0913059, 46.2385327 ], + [ 7.0912634, 46.2387237 ], + [ 7.0912867, 46.2388759 ], + [ 7.0913824, 46.2389944 ], + [ 7.0914948, 46.2391524 ], + [ 7.0915749, 46.2393047 ], + [ 7.0916957, 46.2394177 ], + [ 7.091834, 46.239452 ], + [ 7.092004, 46.2394753 ], + [ 7.0921083, 46.2396389 ], + [ 7.092197, 46.239718 ], + [ 7.0922855, 46.2398027 ], + [ 7.0924225, 46.2399214 ], + [ 7.0925837, 46.2400573 ], + [ 7.0926884, 46.2401702 ], + [ 7.0927768, 46.240283 ], + [ 7.0929134, 46.2404524 ], + [ 7.0931143, 46.2407234 ], + [ 7.0933476, 46.2409888 ], + [ 7.0935489, 46.2411978 ], + [ 7.0937989, 46.2413789 ], + [ 7.0939846, 46.241481 ], + [ 7.0941867, 46.2415662 ], + [ 7.0944059, 46.2416234 ], + [ 7.0945351, 46.2416971 ], + [ 7.0945671, 46.2417647 ], + [ 7.0946153, 46.2418324 ], + [ 7.0946459, 46.2419957 ], + [ 7.0947175, 46.2421929 ], + [ 7.0947901, 46.2422551 ], + [ 7.0948708, 46.2422949 ], + [ 7.0949271, 46.2423626 ], + [ 7.0950479, 46.2424812 ], + [ 7.0951711, 46.2423636 ], + [ 7.0953006, 46.2423866 ], + [ 7.0954124, 46.2426459 ], + [ 7.09556, 46.242489 ], + [ 7.0958297, 46.2422539 ], + [ 7.0958863, 46.2422766 ], + [ 7.0959425, 46.2423556 ], + [ 7.0961242, 46.2429696 ], + [ 7.0962281, 46.2432119 ], + [ 7.0963233, 46.2434038 ], + [ 7.0963956, 46.2435053 ], + [ 7.096516, 46.2436858 ], + [ 7.0965961, 46.2438381 ], + [ 7.0966587, 46.2440577 ], + [ 7.096706, 46.2442661 ], + [ 7.096754, 46.2443676 ], + [ 7.0968438, 46.2442667 ], + [ 7.0969566, 46.2443684 ], + [ 7.0970633, 46.2442732 ], + [ 7.0972083, 46.2444201 ], + [ 7.0972483, 46.2444933 ], + [ 7.0972722, 46.2445723 ], + [ 7.0973098, 46.2449045 ], + [ 7.0974979, 46.2447533 ], + [ 7.0975541, 46.2448379 ], + [ 7.0977244, 46.2448218 ], + [ 7.0977055, 46.2451255 ], + [ 7.0978925, 46.2451544 ], + [ 7.0978738, 46.24543 ], + [ 7.0980934, 46.2454253 ], + [ 7.098166, 46.2454706 ], + [ 7.0981066, 46.2457686 ], + [ 7.0983186, 46.245702 ], + [ 7.0983727, 46.2459834 ], + [ 7.0986738, 46.2459116 ], + [ 7.0985648, 46.2463724 ], + [ 7.0985313, 46.2464116 ], + [ 7.0984013, 46.2464731 ], + [ 7.098319, 46.2465458 ], + [ 7.0983511, 46.2465966 ], + [ 7.0984248, 46.2465969 ], + [ 7.0985386, 46.2465468 ], + [ 7.0986522, 46.2465135 ], + [ 7.0987587, 46.2464633 ], + [ 7.0989535, 46.2464135 ], + [ 7.0991247, 46.2463917 ], + [ 7.099311, 46.2463981 ], + [ 7.0991807, 46.2464988 ], + [ 7.0990174, 46.2465713 ], + [ 7.0988052, 46.246683 ], + [ 7.0987476, 46.2468177 ], + [ 7.098689, 46.2469862 ], + [ 7.0986477, 46.2471154 ], + [ 7.0989058, 46.2473078 ], + [ 7.0989211, 46.2474485 ], + [ 7.0988954, 46.2475497 ], + [ 7.0988053, 46.24769 ], + [ 7.0990071, 46.2478259 ], + [ 7.099104, 46.2478882 ], + [ 7.0992169, 46.2479731 ], + [ 7.0993378, 46.2480748 ], + [ 7.0994183, 46.2481652 ], + [ 7.0995473, 46.248267 ], + [ 7.0996358, 46.2483743 ], + [ 7.0996837, 46.2484869 ], + [ 7.0997233, 46.2486391 ], + [ 7.0997945, 46.2487913 ], + [ 7.0998505, 46.2489096 ], + [ 7.0999955, 46.2490509 ], + [ 7.100157, 46.2491415 ], + [ 7.1003359, 46.2491761 ], + [ 7.1005959, 46.2492053 ], + [ 7.1007657, 46.2492622 ], + [ 7.1008946, 46.249381 ], + [ 7.1011125, 46.2495339 ], + [ 7.1012824, 46.2495907 ], + [ 7.101306, 46.2496978 ], + [ 7.1013622, 46.2497767 ], + [ 7.1014915, 46.2498448 ], + [ 7.1017025, 46.2499357 ], + [ 7.1019129, 46.2499873 ], + [ 7.1021403, 46.2500332 ], + [ 7.1022117, 46.2501516 ], + [ 7.1023244, 46.2502759 ], + [ 7.102445, 46.2504339 ], + [ 7.1025822, 46.2505301 ], + [ 7.1027206, 46.2505644 ], + [ 7.1028662, 46.2506044 ], + [ 7.1029709, 46.2507005 ], + [ 7.103019, 46.2507963 ], + [ 7.1031154, 46.2509374 ], + [ 7.1032442, 46.251073 ], + [ 7.1034623, 46.2511864 ], + [ 7.1036815, 46.2512605 ], + [ 7.1039163, 46.2513064 ], + [ 7.104168, 46.251358 ], + [ 7.1044112, 46.2513479 ], + [ 7.1045662, 46.2513147 ], + [ 7.1046799, 46.2512759 ], + [ 7.1048435, 46.251164 ], + [ 7.105072, 46.2510355 ], + [ 7.1052925, 46.2508902 ], + [ 7.1054645, 46.2507333 ], + [ 7.1056123, 46.2505595 ], + [ 7.1058068, 46.2505491 ], + [ 7.1060987, 46.2506684 ], + [ 7.1063489, 46.2508326 ], + [ 7.106319, 46.2505568 ], + [ 7.1063199, 46.2504161 ], + [ 7.1069828, 46.2508127 ], + [ 7.1070165, 46.2506046 ], + [ 7.1070585, 46.2504979 ], + [ 7.1072526, 46.2505551 ], + [ 7.1074546, 46.2506627 ], + [ 7.1074783, 46.2507641 ], + [ 7.1075344, 46.25086 ], + [ 7.1076469, 46.251018 ], + [ 7.1077434, 46.2511421 ], + [ 7.10784, 46.2512607 ], + [ 7.107985, 46.2514075 ], + [ 7.1080817, 46.2514923 ], + [ 7.1082508, 46.2516675 ], + [ 7.1082829, 46.2517295 ], + [ 7.1082407, 46.2518699 ], + [ 7.1081835, 46.2519429 ], + [ 7.108118, 46.2520495 ], + [ 7.1080358, 46.2521055 ], + [ 7.1079539, 46.252257 ], + [ 7.1079277, 46.25242 ], + [ 7.1080158, 46.2526005 ], + [ 7.1082266, 46.2525844 ], + [ 7.1085358, 46.2525183 ], + [ 7.1086993, 46.2524232 ], + [ 7.1087576, 46.2522997 ], + [ 7.1089518, 46.2523455 ], + [ 7.109089, 46.252436 ], + [ 7.1092586, 46.2525492 ], + [ 7.1093711, 46.2527074 ], + [ 7.1093622, 46.2528367 ], + [ 7.1093283, 46.2529435 ], + [ 7.1093272, 46.2531234 ], + [ 7.1093262, 46.2532866 ], + [ 7.1093975, 46.2534332 ], + [ 7.1093158, 46.2535342 ], + [ 7.1092171, 46.2536351 ], + [ 7.1090624, 46.2537638 ], + [ 7.1088742, 46.2539206 ], + [ 7.1086942, 46.2540717 ], + [ 7.1086276999999995, 46.2542009 ], + [ 7.1084398, 46.2543126 ], + [ 7.1079853, 46.2542883 ], + [ 7.1079359, 46.2544119 ], + [ 7.1078698, 46.2544848 ], + [ 7.1076589, 46.254512 ], + [ 7.1073661, 46.2545558 ], + [ 7.1069437, 46.2545653 ], + [ 7.1066103, 46.254609 ], + [ 7.106308, 46.2547484 ], + [ 7.106113, 46.2548263 ], + [ 7.1057879, 46.2548419 ], + [ 7.1053899, 46.2548402 ], + [ 7.1050486, 46.2548614 ], + [ 7.1046898, 46.2549499 ], + [ 7.1043401, 46.2550047 ], + [ 7.1038852, 46.2550478 ], + [ 7.1034632, 46.255007 ], + [ 7.103455, 46.2550179 ], + [ 7.1030054, 46.2553705 ], + [ 7.1026801, 46.2554198 ], + [ 7.1022321999999996, 46.2554911 ], + [ 7.1017853, 46.2555511 ], + [ 7.1013465, 46.2555999 ], + [ 7.1009877, 46.2556828 ], + [ 7.1006382, 46.2557208 ], + [ 7.1003207, 46.2558038 ], + [ 7.0999545, 46.2559091 ], + [ 7.0996455, 46.2559529 ], + [ 7.0993366, 46.2559685 ], + [ 7.0993102, 46.2561653 ], + [ 7.0992527, 46.2562889 ], + [ 7.0992185, 46.2564463 ], + [ 7.0991525, 46.2566374 ], + [ 7.0990685, 46.2569689 ], + [ 7.09905, 46.2572107 ], + [ 7.0990248, 46.2573513 ], + [ 7.0990396, 46.257447 ], + [ 7.0990796, 46.2575316 ], + [ 7.0991439, 46.2576219 ], + [ 7.0992162, 46.2577291 ], + [ 7.0993046, 46.2578532 ], + [ 7.099409, 46.2579943 ], + [ 7.099497, 46.2581916 ], + [ 7.0996086, 46.2583609 ], + [ 7.0997548, 46.2584459 ], + [ 7.0998679, 46.2584969 ], + [ 7.1000459, 46.258554 ], + [ 7.1001829, 46.2586784 ], + [ 7.1002707, 46.2589038 ], + [ 7.1002928, 46.2591232 ], + [ 7.1002678, 46.2592357 ], + [ 7.1002898, 46.259472099999996 ], + [ 7.1003051, 46.2596184 ], + [ 7.1003691, 46.2597538 ], + [ 7.1005223, 46.2598838 ], + [ 7.100619, 46.2599799 ], + [ 7.1008286, 46.2601551 ], + [ 7.1011113, 46.2603251 ], + [ 7.101331, 46.2603092 ], + [ 7.1015832, 46.2603046 ], + [ 7.1019408, 46.2602779 ], + [ 7.102062, 46.2603347 ], + [ 7.1021586, 46.2604476 ], + [ 7.1022387, 46.2606055 ], + [ 7.1023029, 46.2607127 ], + [ 7.1022045, 46.2607517 ], + [ 7.1020018, 46.2607734 ], + [ 7.1020096, 46.2608128 ], + [ 7.102065, 46.260903 ], + [ 7.1021045, 46.2610607 ], + [ 7.1021522, 46.2612128 ], + [ 7.1021022, 46.2613083 ], + [ 7.1023287, 46.2615061 ], + [ 7.1019459, 46.2615495 ], + [ 7.1019859, 46.2616341 ], + [ 7.101888, 46.2617294 ], + [ 7.1021924, 46.2621864 ], + [ 7.1018913, 46.262247 ], + [ 7.1020518, 46.2625121 ], + [ 7.1018652, 46.2625395 ], + [ 7.1016616, 46.2625499 ], + [ 7.1014824, 46.2625603 ], + [ 7.1012306, 46.2626438 ], + [ 7.1010917, 46.2626994 ], + [ 7.101002, 46.2627778 ], + [ 7.1009679, 46.2629183 ], + [ 7.1009671, 46.2630421 ], + [ 7.1010298, 46.2632618 ], + [ 7.1011178, 46.2634535 ], + [ 7.1012144, 46.2635553 ], + [ 7.1013195, 46.263595 ], + [ 7.1014824, 46.2636125 ], + [ 7.1016255, 46.2639281 ], + [ 7.1016816, 46.264041 ], + [ 7.1017456, 46.2641707 ], + [ 7.1017936, 46.2642722 ], + [ 7.1018743, 46.26434 ], + [ 7.1019871, 46.2644361 ], + [ 7.1020755, 46.2645659 ], + [ 7.1022847, 46.2648256 ], + [ 7.1021457, 46.2648813 ], + [ 7.1020158, 46.2649145 ], + [ 7.1018446, 46.2649306 ], + [ 7.1016825, 46.2649356 ], + [ 7.1015277, 46.2649349 ], + [ 7.1012432, 46.2649282 ], + [ 7.1009595, 46.2649101 ], + [ 7.1006427, 46.2648919 ], + [ 7.1003501, 46.264885 ], + [ 7.1001475, 46.2648673 ], + [ 7.0999848, 46.2648385 ], + [ 7.099823, 46.2647872 ], + [ 7.0996438, 46.264792 ], + [ 7.0994976, 46.2648308 ], + [ 7.0993516, 46.2648471 ], + [ 7.0991889, 46.264807 ], + [ 7.0989791, 46.2646543 ], + [ 7.0989045, 46.2647946 ], + [ 7.0989033, 46.2649746 ], + [ 7.0988062, 46.2649517 ], + [ 7.0985705, 46.264917 ], + [ 7.0983263, 46.2649441 ], + [ 7.0982690999999996, 46.265017 ], + [ 7.0983174, 46.2650791 ], + [ 7.0984222, 46.2651752 ], + [ 7.0982099, 46.2652812 ], + [ 7.0986402, 46.2653056 ], + [ 7.0983707, 46.2654957 ], + [ 7.0985961, 46.2657442 ], + [ 7.0983764, 46.2657546 ], + [ 7.0982462, 46.2658271 ], + [ 7.0980993, 46.2658659 ], + [ 7.0977903, 46.2658815 ], + [ 7.0978142, 46.2659491 ], + [ 7.0979525, 46.2660059 ], + [ 7.0980818, 46.2660628 ], + [ 7.0983085, 46.2661086 ], + [ 7.0984876, 46.2661151 ], + [ 7.0985845, 46.2661774 ], + [ 7.0985193, 46.266239 ], + [ 7.0984209, 46.2662893 ], + [ 7.0982423, 46.2663222 ], + [ 7.0980383, 46.2664114 ], + [ 7.0981508, 46.2665582 ], + [ 7.0982477, 46.2666205 ], + [ 7.0983692, 46.2666435 ], + [ 7.0985391, 46.2666892 ], + [ 7.0987422, 46.2667576 ], + [ 7.0988713, 46.2668594 ], + [ 7.0989518, 46.2669497 ], + [ 7.0996426, 46.2688769 ], + [ 7.0997044, 46.269226 ], + [ 7.0996462, 46.2693383 ], + [ 7.0995645, 46.269428 ], + [ 7.099377, 46.2694778 ], + [ 7.0992308, 46.2695166 ], + [ 7.0990118, 46.2693976 ], + [ 7.0987934, 46.2693178 ], + [ 7.0987534, 46.2692445 ], + [ 7.09861, 46.2689682 ], + [ 7.0984793, 46.2689901 ], + [ 7.0982675, 46.2690231 ], + [ 7.0979826, 46.2690837 ], + [ 7.0976893, 46.2691782 ], + [ 7.0973149, 46.2692891 ], + [ 7.0969889, 46.2694228 ], + [ 7.0967442, 46.2695287 ], + [ 7.0964673, 46.2696063 ], + [ 7.096288, 46.2696224 ], + [ 7.0962712, 46.2697123 ], + [ 7.0963677, 46.2698365 ], + [ 7.0964079, 46.2698986 ], + [ 7.0950973, 46.270225 ], + [ 7.0948449, 46.2702747 ], + [ 7.0946011, 46.2702398 ], + [ 7.0942193, 46.270227 ], + [ 7.0938862, 46.2702087 ], + [ 7.0935771, 46.2702355 ], + [ 7.0933501, 46.2702458 ], + [ 7.093106, 46.270256 ], + [ 7.0930164, 46.2703232 ], + [ 7.0930353, 46.2703988 ], + [ 7.093172, 46.2704509 ], + [ 7.0933985, 46.2705303 ], + [ 7.0936254, 46.2705507 ], + [ 7.0937668, 46.2706298 ], + [ 7.0938232, 46.2706891 ], + [ 7.0938223, 46.2708268 ], + [ 7.09385, 46.2709253 ], + [ 7.0940034, 46.271029 ], + [ 7.0943024, 46.2711824 ], + [ 7.0946705, 46.2713077 ], + [ 7.0949607, 46.2714357 ], + [ 7.0953774, 46.2715793 ], + [ 7.0957737, 46.2717182 ], + [ 7.0961704, 46.2718179 ], + [ 7.0964561, 46.2718889 ], + [ 7.0968115, 46.2719797 ], + [ 7.097016, 46.2720701 ], + [ 7.097123, 46.2722049 ], + [ 7.0972453, 46.2723523 ], + [ 7.0974148, 46.272471 ], + [ 7.0978112, 46.2726098 ], + [ 7.098094, 46.2727681 ], + [ 7.0984898, 46.2730054 ], + [ 7.0987723, 46.2732031 ], + [ 7.099055, 46.273381 ], + [ 7.0993373, 46.2736179 ], + [ 7.0996077, 46.2739287 ], + [ 7.1001551, 46.2744271 ], + [ 7.1004089, 46.2746837 ], + [ 7.1006062, 46.2749007 ], + [ 7.1007191, 46.2749993 ], + [ 7.1008319, 46.2751178 ], + [ 7.1009449, 46.2751969 ], + [ 7.1011148, 46.2752564 ], + [ 7.1012851, 46.2752569 ], + [ 7.1014835, 46.2752969 ], + [ 7.1017953, 46.2753568 ], + [ 7.1020791, 46.2753577 ], + [ 7.1024755, 46.2753589 ], + [ 7.1027935, 46.2753378 ], + [ 7.1032099, 46.2753967 ], + [ 7.1035339, 46.2754541 ], + [ 7.1037954, 46.2755045 ], + [ 7.1040701, 46.2755384 ], + [ 7.1044274, 46.2755891 ], + [ 7.1048287, 46.27572 ], + [ 7.1051687, 46.2758194 ], + [ 7.1053102, 46.2758788 ], + [ 7.1053952, 46.2758988 ], + [ 7.1054802, 46.2759187 ], + [ 7.1055652, 46.2759386 ], + [ 7.1056106, 46.2759456 ], + [ 7.1056786, 46.2759586 ], + [ 7.1057126, 46.2759717 ], + [ 7.1057917, 46.276018 ], + [ 7.1058086, 46.2760488 ], + [ 7.1058084, 46.2760841 ], + [ 7.1057903, 46.2761289 ], + [ 7.1057341, 46.2761608 ], + [ 7.1056417, 46.2761637 ], + [ 7.1055865, 46.2761668 ], + [ 7.1054381, 46.2761711 ], + [ 7.1051668, 46.2761145 ], + [ 7.1049118, 46.2760547 ], + [ 7.104519, 46.2759745 ], + [ 7.1041154, 46.2759439 ], + [ 7.1038528, 46.2759349 ], + [ 7.1036364, 46.2759205 ], + [ 7.1034143, 46.2759039 ], + [ 7.1031726, 46.2759163 ], + [ 7.1029821, 46.2759157 ], + [ 7.1028548, 46.2759214 ], + [ 7.1027808, 46.2759468 ], + [ 7.1027895, 46.2759918 ], + [ 7.1028542, 46.2760144 ], + [ 7.1029254, 46.276029199999996 ], + [ 7.1030673, 46.2760296 ], + [ 7.1033225, 46.2760697 ], + [ 7.1036344, 46.27611 ], + [ 7.1038337, 46.2761424 ], + [ 7.104028, 46.2761782 ], + [ 7.1042725, 46.276243 ], + [ 7.1045411, 46.2763488 ], + [ 7.1047106, 46.2764673 ], + [ 7.1048238, 46.2765268 ], + [ 7.1048858, 46.2765944 ], + [ 7.1049955, 46.2766813 ], + [ 7.105136, 46.2767824 ], + [ 7.1052815, 46.2768553 ], + [ 7.1054521, 46.2769328 ], + [ 7.1056875, 46.2770264 ], + [ 7.1058718, 46.2771103 ], + [ 7.1060878, 46.2771906 ], + [ 7.1062663, 46.2772983 ], + [ 7.1063794, 46.2773774 ], + [ 7.1065206, 46.2774959 ], + [ 7.10667, 46.2775893 ], + [ 7.106812, 46.2776973 ], + [ 7.1069072, 46.2777803 ], + [ 7.1070572, 46.2779107 ], + [ 7.1071921, 46.277992 ], + [ 7.107394, 46.2781249 ], + [ 7.1076324, 46.2782581 ], + [ 7.1077923, 46.2783653 ], + [ 7.1080751, 46.2785236 ], + [ 7.1084153, 46.2785836 ], + [ 7.1089539, 46.2786835 ], + [ 7.1097755, 46.278922 ], + [ 7.1104552, 46.2790224 ], + [ 7.1109371, 46.2791222 ], + [ 7.1114194, 46.2792782 ], + [ 7.1120148, 46.2795116 ], + [ 7.1124663, 46.2796775 ], + [ 7.1128915, 46.2797574 ], + [ 7.1131181, 46.2798368 ], + [ 7.113231, 46.2799355 ], + [ 7.1134006, 46.2800541 ], + [ 7.113538, 46.2801281 ], + [ 7.1137879, 46.2802446 ], + [ 7.1138949, 46.2802449 ], + [ 7.1140385, 46.2802371 ], + [ 7.1141939, 46.2802728 ], + [ 7.1142528, 46.2803204 ], + [ 7.1143634, 46.280411 ], + [ 7.1145614, 46.2805296 ], + [ 7.1147168, 46.2805699 ], + [ 7.1148448, 46.2805895 ], + [ 7.1150143, 46.2805873 ], + [ 7.1151695, 46.2806622 ], + [ 7.1153238, 46.2807619 ], + [ 7.1154667, 46.2808699 ], + [ 7.1156328, 46.2810358 ], + [ 7.115721, 46.2812019 ], + [ 7.1158091, 46.2813837 ], + [ 7.1158319, 46.2816319 ], + [ 7.1158306, 46.2818516 ], + [ 7.1158297, 46.2819999 ], + [ 7.1158834, 46.2819798 ], + [ 7.1159644, 46.2819914 ], + [ 7.1160533, 46.2820424 ], + [ 7.1161582, 46.2821272 ], + [ 7.1163771, 46.2822799 ], + [ 7.1165628, 46.2824046 ], + [ 7.116846, 46.2825069 ], + [ 7.1170816, 46.2825698 ], + [ 7.117373, 46.282661 ], + [ 7.1176814, 46.2827634 ], + [ 7.1179899, 46.2828322 ], + [ 7.1182815, 46.2828953 ], + [ 7.1186065, 46.2829303 ], + [ 7.1190044, 46.2829768 ], + [ 7.1192806, 46.2830174 ], + [ 7.1195643, 46.283041 ], + [ 7.1212871, 46.2831098 ], + [ 7.1218149, 46.2831399 ], + [ 7.1219695, 46.2831744 ], + [ 7.1221394, 46.2832426 ], + [ 7.1224387, 46.2833732 ], + [ 7.1229409, 46.2836059 ], + [ 7.1233463, 46.2837594 ], + [ 7.1236375, 46.2838843 ], + [ 7.1239217, 46.2839586 ], + [ 7.1241487, 46.2839763 ], + [ 7.1243685, 46.2839772 ], + [ 7.1245641, 46.2839442 ], + [ 7.1247669, 46.2839394 ], + [ 7.1249046, 46.2839624 ], + [ 7.1251241, 46.283997 ], + [ 7.1253428, 46.2840543 ], + [ 7.1256028, 46.2841002 ], + [ 7.1258213, 46.2841742 ], + [ 7.1259677, 46.2842422 ], + [ 7.1259827, 46.2843211 ], + [ 7.1259498, 46.2843998 ], + [ 7.1257777, 46.2845622 ], + [ 7.1259323, 46.2846249 ], + [ 7.1261183, 46.2847042 ], + [ 7.1262639, 46.2847668 ], + [ 7.1264662, 46.2848519 ], + [ 7.1266856, 46.2849203 ], + [ 7.1268961, 46.2849718 ], + [ 7.127059, 46.2849837 ], + [ 7.1272456, 46.2849844 ], + [ 7.1274248, 46.2849851 ], + [ 7.1275545, 46.2849912 ], + [ 7.1277328, 46.2850088 ], + [ 7.1278795, 46.2850206 ], + [ 7.1281064, 46.285044 ], + [ 7.1281627, 46.2851398 ], + [ 7.1281945, 46.2852525 ], + [ 7.1282664, 46.2854272 ], + [ 7.1283064, 46.2855287 ], + [ 7.1284682, 46.2856023 ], + [ 7.1286059, 46.2856199 ], + [ 7.1287691, 46.285598 ], + [ 7.1289071, 46.2855704 ], + [ 7.1290377, 46.285554 ], + [ 7.1292323, 46.2855605 ], + [ 7.1294439, 46.2855837 ], + [ 7.1296223, 46.28559 ], + [ 7.1297611, 46.2855625 ], + [ 7.1299153, 46.285535 ], + [ 7.1301097, 46.2855751 ], + [ 7.1303373, 46.2856322 ], + [ 7.1306288, 46.2857121 ], + [ 7.1308482, 46.2857692 ], + [ 7.1311004, 46.2857646 ], + [ 7.1313358000000004, 46.2857318 ], + [ 7.1316124, 46.2857215 ], + [ 7.1317838, 46.2856772 ], + [ 7.1318167, 46.2855816 ], + [ 7.1318497, 46.2854862 ], + [ 7.1319647, 46.2853741 ], + [ 7.1321041, 46.2852508 ], + [ 7.1322749, 46.2851503 ], + [ 7.1329377, 46.2856873 ], + [ 7.1304402, 46.2890591 ], + [ 7.1302437, 46.289244 ], + [ 7.1301204, 46.2893955 ], + [ 7.1299495, 46.2895017 ], + [ 7.129729, 46.2896246 ], + [ 7.1294924, 46.2897363 ], + [ 7.1293125, 46.2898481 ], + [ 7.1290597, 46.289954 ], + [ 7.1287982, 46.2901443 ], + [ 7.1286179, 46.2903405 ], + [ 7.1284862, 46.2905369 ], + [ 7.1284109, 46.2908011 ], + [ 7.1282953, 46.2910088 ], + [ 7.1282217, 46.291121 ], + [ 7.1280823, 46.2912331 ], + [ 7.1278699, 46.2913615 ], + [ 7.1277223, 46.2915017 ], + [ 7.1274526, 46.2917257 ], + [ 7.1267993, 46.2920831 ], + [ 7.126522, 46.2922004 ], + [ 7.1261623, 46.2924183 ], + [ 7.1257786, 46.2927094 ], + [ 7.1254996, 46.2929783 ], + [ 7.1251551, 46.2933709 ], + [ 7.1249337, 46.2936457 ], + [ 7.1246381, 46.2939877 ], + [ 7.1242686, 46.2944814 ], + [ 7.1231401, 46.2942462 ], + [ 7.1228487, 46.2941607 ], + [ 7.122548, 46.2941089 ], + [ 7.1223037, 46.294136 ], + [ 7.1219861, 46.2942248 ], + [ 7.1216198, 46.2943021 ], + [ 7.1213513, 46.2943123 ], + [ 7.1202478, 46.2941165 ], + [ 7.119371, 46.2939724 ], + [ 7.1188345, 46.2939028 ], + [ 7.1183717, 46.2938504 ], + [ 7.1178357, 46.2938313 ], + [ 7.1172662, 46.2938403 ], + [ 7.1166812, 46.2938717 ], + [ 7.1164605, 46.2940396 ], + [ 7.1162303, 46.2942863 ], + [ 7.1160655, 46.2945725 ], + [ 7.1158439, 46.2948754 ], + [ 7.1156214, 46.2952009 ], + [ 7.1152841, 46.2957228 ], + [ 7.1151766, 46.2959249 ], + [ 7.1150854, 46.2961159 ], + [ 7.1150277, 46.2962787 ], + [ 7.11505, 46.2964871 ], + [ 7.1150653, 46.2966334 ], + [ 7.1151211, 46.2967968 ], + [ 7.1152662, 46.2969494 ], + [ 7.1153698, 46.2971186 ], + [ 7.115531, 46.2973048 ], + [ 7.1156191, 46.2974796 ], + [ 7.1156991, 46.2976656 ], + [ 7.1157632, 46.2978121 ], + [ 7.115794, 46.2979417 ], + [ 7.1158578, 46.2981276 ], + [ 7.1159131, 46.2983697 ], + [ 7.1159511, 46.2986625 ], + [ 7.1159745, 46.2988201 ], + [ 7.1160215, 46.2989778 ], + [ 7.1160936, 46.2991244 ], + [ 7.1161897, 46.2993218 ], + [ 7.1162527, 46.2995133 ], + [ 7.1162681, 46.2996541 ], + [ 7.1162184, 46.2998226 ], + [ 7.1161519, 46.2999631 ], + [ 7.1160771, 46.3001203 ], + [ 7.1159871, 46.3002493 ], + [ 7.1159369, 46.3003616 ], + [ 7.1158062, 46.3005186 ], + [ 7.1156501, 46.3007093 ], + [ 7.1154695, 46.3009394 ], + [ 7.1153785, 46.3011021 ], + [ 7.1153037, 46.301265 ], + [ 7.1152206, 46.3014503 ], + [ 7.1151787, 46.3016865 ], + [ 7.1152169, 46.3019455 ], + [ 7.115248, 46.3021594 ], + [ 7.1152379, 46.3023563 ], + [ 7.1151953, 46.3025643 ], + [ 7.1151618, 46.3027498 ], + [ 7.1150701, 46.3030251 ], + [ 7.1149708, 46.3032105 ], + [ 7.1148715, 46.3034014 ], + [ 7.1150183, 46.3034018 ], + [ 7.1151647, 46.303335 ], + [ 7.1152798, 46.3032286 ], + [ 7.1153293, 46.3030881 ], + [ 7.115453, 46.302886 ], + [ 7.1155682, 46.3027402 ], + [ 7.1156756, 46.3025606 ], + [ 7.1158566, 46.3022632 ], + [ 7.1160611, 46.3021121 ], + [ 7.1163063, 46.3019555 ], + [ 7.1165595, 46.3017876 ], + [ 7.1166094, 46.301726 ], + [ 7.1166752, 46.3015743 ], + [ 7.1167498, 46.3014396 ], + [ 7.1169208, 46.301339 ], + [ 7.1171654, 46.3012669 ], + [ 7.1174423, 46.3012117 ], + [ 7.1177273, 46.3011622 ], + [ 7.1179715, 46.3011575 ], + [ 7.1182564, 46.3011305 ], + [ 7.1185485, 46.3011204 ], + [ 7.1188334, 46.3010821 ], + [ 7.119159, 46.3010329 ], + [ 7.1194439, 46.3010059 ], + [ 7.1197291, 46.3009339 ], + [ 7.1199736, 46.3008617 ], + [ 7.1202181, 46.3008064 ], + [ 7.1203886, 46.3007902 ], + [ 7.1205681, 46.3007572 ], + [ 7.1207882, 46.3007131 ], + [ 7.1210075, 46.3006632 ], + [ 7.1212439, 46.3005967 ], + [ 7.1214151, 46.3005917 ], + [ 7.1216664, 46.3006096 ], + [ 7.1219187, 46.3006219 ], + [ 7.1221951, 46.3006511 ], + [ 7.1223244, 46.300736 ], + [ 7.1223966, 46.3008769 ], + [ 7.1224355, 46.3010178 ], + [ 7.1224753, 46.3011474 ], + [ 7.1224988, 46.3012937 ], + [ 7.1225375, 46.3014626 ], + [ 7.1225117000000004, 46.3017214 ], + [ 7.1224933, 46.3019464 ], + [ 7.1224671, 46.302126200000004 ], + [ 7.1224578, 46.3023288 ], + [ 7.1224409, 46.3024582 ], + [ 7.1224469, 46.302672 ], + [ 7.1225104, 46.3029086 ], + [ 7.1225649, 46.3031563 ], + [ 7.1226203, 46.3034041 ], + [ 7.1226989, 46.3037027 ], + [ 7.1228099, 46.3040012 ], + [ 7.1228572, 46.3042266 ], + [ 7.1229369, 46.3044745 ], + [ 7.1232342, 46.3048188 ], + [ 7.1234371, 46.3049491 ], + [ 7.1236394, 46.3050399 ], + [ 7.1239318, 46.3051142 ], + [ 7.124191, 46.3051771 ], + [ 7.1244268, 46.3052286 ], + [ 7.1247674, 46.3052582 ], + [ 7.1250602, 46.3052705 ], + [ 7.1253125, 46.3052659 ], + [ 7.1256137, 46.3052221 ], + [ 7.1258408, 46.3052229 ], + [ 7.1261176, 46.3051959 ], + [ 7.1262968, 46.3052135 ], + [ 7.1265806, 46.3052372 ], + [ 7.1268407, 46.3052944 ], + [ 7.1270024, 46.3053851 ], + [ 7.1271724, 46.3054533 ], + [ 7.1273922, 46.3054711 ], + [ 7.1275867, 46.3054999 ], + [ 7.1277249, 46.3055848 ], + [ 7.1277813, 46.3056582 ], + [ 7.1278448, 46.3057653 ], + [ 7.1279007, 46.3059175 ], + [ 7.1279243, 46.3060469 ], + [ 7.1278817, 46.3062607 ], + [ 7.1278805, 46.3064633 ], + [ 7.1278299, 46.3066655 ], + [ 7.1277464, 46.3069296 ], + [ 7.1277129, 46.3071152 ], + [ 7.1277035, 46.3071995 ], + [ 7.1277275, 46.3072559 ], + [ 7.127784, 46.3073068 ], + [ 7.1279132, 46.3074085 ], + [ 7.1279859, 46.3074707 ], + [ 7.1280744, 46.3075893 ], + [ 7.1281145, 46.3076794 ], + [ 7.1281623, 46.3078315 ], + [ 7.1282263, 46.3079893 ], + [ 7.1282484, 46.3082314 ], + [ 7.1281979, 46.3084056 ], + [ 7.1280919, 46.3084896 ], + [ 7.1279944, 46.3085173 ], + [ 7.1278802, 46.3084888 ], + [ 7.1278239, 46.3084097 ], + [ 7.1277352, 46.3083138 ], + [ 7.127622, 46.3082346 ], + [ 7.12746, 46.3082002 ], + [ 7.1272884, 46.308267 ], + [ 7.1271498, 46.3083903 ], + [ 7.1269209, 46.3085412 ], + [ 7.1267737, 46.3086195 ], + [ 7.1266183, 46.308692 ], + [ 7.1263979, 46.3087867 ], + [ 7.1262518, 46.3087862 ], + [ 7.1261056, 46.3088194 ], + [ 7.1260475, 46.3089036 ], + [ 7.1259821, 46.3089932 ], + [ 7.1258672, 46.3090772 ], + [ 7.1257291, 46.3091105 ], + [ 7.1255823, 46.3091099 ], + [ 7.1254928, 46.3091489 ], + [ 7.1253706, 46.3092272 ], + [ 7.1251911, 46.3092659 ], + [ 7.125028, 46.3092766 ], + [ 7.124712, 46.3091965 ], + [ 7.1230903, 46.3086274 ], + [ 7.123187, 46.3087403 ], + [ 7.1233161, 46.3088646 ], + [ 7.1234207, 46.3090058 ], + [ 7.1234851, 46.3091016 ], + [ 7.1236306, 46.3091979 ], + [ 7.1237601, 46.3092434 ], + [ 7.1239219, 46.3093228 ], + [ 7.1240362, 46.3093346 ], + [ 7.124174, 46.3093575 ], + [ 7.1243199, 46.309375 ], + [ 7.1244979, 46.3094714 ], + [ 7.1246442, 46.3095619 ], + [ 7.1248302, 46.309658400000004 ], + [ 7.1249517, 46.3097038 ], + [ 7.1251147, 46.3097101 ], + [ 7.1252284, 46.3096992 ], + [ 7.1253745, 46.309683 ], + [ 7.1255294, 46.3096836 ], + [ 7.125651, 46.3097009 ], + [ 7.1258212, 46.3097411 ], + [ 7.1259518, 46.3097472 ], + [ 7.1261383, 46.3097647 ], + [ 7.1263907, 46.3097433 ], + [ 7.1266675, 46.3097162 ], + [ 7.126911, 46.3096947 ], + [ 7.1272284, 46.3096734 ], + [ 7.1274728, 46.309635 ], + [ 7.1277255, 46.3095797 ], + [ 7.1279781, 46.30953 ], + [ 7.1282632, 46.3094692 ], + [ 7.1284663, 46.3094194 ], + [ 7.1287269, 46.3093811 ], + [ 7.1289797, 46.3093145 ], + [ 7.1292077, 46.3092985 ], + [ 7.1293865, 46.3092429 ], + [ 7.1296471, 46.3092271 ], + [ 7.1298913, 46.3092224 ], + [ 7.1301112, 46.3092064 ], + [ 7.130583, 46.3091407 ], + [ 7.1309167, 46.3090914 ], + [ 7.1310963, 46.3090358 ], + [ 7.1312588, 46.3089914 ], + [ 7.1314061, 46.3089245 ], + [ 7.1314958, 46.3088461 ], + [ 7.1315781, 46.3087732 ], + [ 7.1316354, 46.3086778 ], + [ 7.1316927, 46.3085936 ], + [ 7.1317429, 46.3084644 ], + [ 7.1317194, 46.3083293 ], + [ 7.1318663, 46.3083129 ], + [ 7.1319717, 46.3083302 ], + [ 7.1321744, 46.3083535 ], + [ 7.1322483, 46.3083257 ], + [ 7.1323542, 46.3082585 ], + [ 7.1324203, 46.3081912 ], + [ 7.1325504, 46.3081356 ], + [ 7.1328112, 46.3080747 ], + [ 7.1331044, 46.3080139 ], + [ 7.1332583, 46.3080652 ], + [ 7.1333798, 46.3080937 ], + [ 7.1335188, 46.3080493 ], + [ 7.1336984, 46.3079937 ], + [ 7.1338687, 46.3080056 ], + [ 7.1339903, 46.3080229 ], + [ 7.1342020999999995, 46.3080182 ], + [ 7.1344373, 46.3080247 ], + [ 7.134641, 46.3080086 ], + [ 7.1347963, 46.3079585 ], + [ 7.1349266, 46.3078578 ], + [ 7.1351631, 46.3077968 ], + [ 7.1353182, 46.3077636 ], + [ 7.1354809, 46.3076799 ], + [ 7.1357414, 46.3076696 ], + [ 7.1359938, 46.3076537 ], + [ 7.1363841, 46.3076439 ], + [ 7.1367258, 46.3076171 ], + [ 7.1370919, 46.3075847 ], + [ 7.1374578, 46.3075749 ], + [ 7.1377916, 46.3075199 ], + [ 7.1380195, 46.3075264 ], + [ 7.1382787, 46.3075893 ], + [ 7.1385415, 46.3073202 ], + [ 7.138658, 46.306938099999996 ], + [ 7.1386262, 46.3068141 ], + [ 7.1385211, 46.3067462 ], + [ 7.1383507999999996, 46.3067343 ], + [ 7.1380905, 46.3067221 ], + [ 7.1379695, 46.3065922 ], + [ 7.1378164, 46.3064059 ], + [ 7.1376554, 46.3061916 ], + [ 7.1377215, 46.3061074 ], + [ 7.1377868, 46.3060345 ], + [ 7.1378036, 46.3059334 ], + [ 7.1377891, 46.3057812 ], + [ 7.1377172, 46.3055785 ], + [ 7.1376286, 46.3054544 ], + [ 7.1376534, 46.3053757 ], + [ 7.1376627, 46.3053025 ], + [ 7.137874, 46.3052359 ], + [ 7.1379648, 46.3051124 ], + [ 7.1378684, 46.304932 ], + [ 7.1379269, 46.3047803 ], + [ 7.137952, 46.3046341 ], + [ 7.1379527, 46.3045104 ], + [ 7.1379949, 46.3043642 ], + [ 7.1380362, 46.3042293 ], + [ 7.137996, 46.3041673 ], + [ 7.1379729, 46.3040941 ], + [ 7.1380224, 46.3039423 ], + [ 7.1381293, 46.3038302 ], + [ 7.1382513, 46.3037744 ], + [ 7.1383336, 46.3037016 ], + [ 7.1384317, 46.3035782 ], + [ 7.138359, 46.303516 ], + [ 7.1383606, 46.303381 ], + [ 7.1383858, 46.3032179 ], + [ 7.1384107, 46.3031167 ], + [ 7.1385336, 46.3030439 ], + [ 7.1385177, 46.3029877 ], + [ 7.1385586, 46.302926 ], + [ 7.1386169, 46.3027911 ], + [ 7.1387161, 46.3026171 ], + [ 7.1388062, 46.3024487 ], + [ 7.1389135, 46.3022747 ], + [ 7.1389561, 46.3020497 ], + [ 7.1389974, 46.3019036 ], + [ 7.1390884, 46.3017464 ], + [ 7.1391389, 46.3015498 ], + [ 7.1392042, 46.3014768 ], + [ 7.1391884, 46.3014036 ], + [ 7.1391566, 46.3012965 ], + [ 7.1391503, 46.301110800000004 ], + [ 7.1391026, 46.3009251 ], + [ 7.1390306, 46.3007559 ], + [ 7.1392372, 46.3003572 ], + [ 7.1394798999999995, 46.3004763 ], + [ 7.1396751, 46.3005332 ], + [ 7.1398532, 46.3006015 ], + [ 7.1400314, 46.3006472 ], + [ 7.1403077, 46.3006932 ], + [ 7.1405264, 46.300756 ], + [ 7.1408999, 46.3008362 ], + [ 7.1411519, 46.3008877 ], + [ 7.1413705, 46.3009562 ], + [ 7.1416142, 46.3010527 ], + [ 7.1417434, 46.3011545 ], + [ 7.1418884, 46.3013463 ], + [ 7.1420095, 46.301448 ], + [ 7.1421067, 46.3014766 ], + [ 7.1423012, 46.3014998 ], + [ 7.1425938, 46.301546 ], + [ 7.1429351, 46.3015922 ], + [ 7.1431703, 46.3015987 ], + [ 7.1433821, 46.3015826 ], + [ 7.1435778, 46.3015441 ], + [ 7.1437885, 46.3015954 ], + [ 7.144081, 46.3016528 ], + [ 7.1443645, 46.3017214 ], + [ 7.1445842, 46.301756 ], + [ 7.1447703, 46.3018299 ], + [ 7.145006, 46.3018982 ], + [ 7.1452811, 46.3020343 ], + [ 7.1455481, 46.3021648 ], + [ 7.1458727, 46.3022842 ], + [ 7.1462054, 46.302426 ], + [ 7.1464969, 46.3025283 ], + [ 7.146683, 46.3025966 ], + [ 7.1468783, 46.3026423 ], + [ 7.1471710999999996, 46.3026548 ], + [ 7.1474551, 46.3026332 ], + [ 7.1478047, 46.3026345 ], + [ 7.148122, 46.3026188 ], + [ 7.1483746, 46.3025635 ], + [ 7.1485688, 46.3026487 ], + [ 7.1488447, 46.3027847 ], + [ 7.1490633, 46.3028643 ], + [ 7.1492345, 46.3028593 ], + [ 7.1494459, 46.3027757 ], + [ 7.1497067, 46.3026979 ], + [ 7.1499186, 46.3026593 ], + [ 7.150106, 46.3026656 ], + [ 7.1503006, 46.3026832 ], + [ 7.1505366, 46.302701 ], + [ 7.1508206, 46.3026794 ], + [ 7.1510324, 46.3026691 ], + [ 7.1511377, 46.3026976 ], + [ 7.1512508, 46.3027767 ], + [ 7.1514132, 46.3029011 ], + [ 7.1515991, 46.3030256 ], + [ 7.1518174, 46.3031671 ], + [ 7.151979, 46.3032915 ], + [ 7.1522218, 46.3033937 ], + [ 7.1524738, 46.3034452 ], + [ 7.1527098, 46.3034572 ], + [ 7.1530998, 46.3034981 ], + [ 7.1533188, 46.3035158 ], + [ 7.1534077, 46.3035725 ], + [ 7.1535126, 46.3036684 ], + [ 7.1537321, 46.3037481 ], + [ 7.1538698, 46.3037823 ], + [ 7.1541046999999995, 46.303845 ], + [ 7.1544133, 46.3039362 ], + [ 7.1546158, 46.3039932 ], + [ 7.1548595, 46.3040841 ], + [ 7.1551512, 46.3041583 ], + [ 7.1554839, 46.3042946 ], + [ 7.155791, 46.3045039 ], + [ 7.156456, 46.3047145 ], + [ 7.1566431, 46.3047602 ], + [ 7.1567732, 46.3046988 ], + [ 7.1569931, 46.3047053 ], + [ 7.1571635, 46.3046833 ], + [ 7.1572781, 46.3046444 ], + [ 7.1574093, 46.3045323 ], + [ 7.1575151, 46.3044652 ], + [ 7.1576462, 46.3043756 ], + [ 7.1578007, 46.3043144 ], + [ 7.1579556, 46.3043205 ], + [ 7.1581745, 46.3043495 ], + [ 7.1583378, 46.3042994 ], + [ 7.1584438, 46.3041985 ], + [ 7.1584943, 46.3039961 ], + [ 7.1584705, 46.3038892 ], + [ 7.1585691, 46.3037994 ], + [ 7.1586345, 46.3037041 ], + [ 7.1585866, 46.3035688 ], + [ 7.1585393, 46.3034448 ], + [ 7.1584266, 46.3032926 ], + [ 7.1583054, 46.3031852 ], + [ 7.1583954, 46.3030393 ], + [ 7.1583556, 46.3029041 ], + [ 7.1583491, 46.3027466 ], + [ 7.1583018, 46.3024762 ], + [ 7.1582469, 46.3022735 ], + [ 7.1582959, 46.3022062 ], + [ 7.1586966, 46.3019038 ], + [ 7.1588507, 46.3018988 ], + [ 7.1590543, 46.3018994 ], + [ 7.159258, 46.3018889 ], + [ 7.1594935, 46.3018448 ], + [ 7.1597536999999996, 46.3018907 ], + [ 7.1600219, 46.3019423 ], + [ 7.160257, 46.301977 ], + [ 7.1604527000000004, 46.301927 ], + [ 7.1606486, 46.301849 ], + [ 7.1608435, 46.301816 ], + [ 7.1609812999999995, 46.3018333 ], + [ 7.161071, 46.3018955 ], + [ 7.1612005, 46.3019523 ], + [ 7.1613706, 46.3020091 ], + [ 7.1616145, 46.3020494 ], + [ 7.1619307, 46.3020843 ], + [ 7.1622399, 46.3020685 ], + [ 7.1626545, 46.3020588 ], + [ 7.162988, 46.3020205 ], + [ 7.1633146, 46.3019261 ], + [ 7.1635664, 46.3018595 ], + [ 7.1637867, 46.3017872 ], + [ 7.163901, 46.3017988 ], + [ 7.1640792, 46.30185 ], + [ 7.1643062, 46.3018734 ], + [ 7.1644532, 46.3018401 ], + [ 7.1646478, 46.3018521 ], + [ 7.1650055, 46.3018534 ], + [ 7.1655671, 46.3018104 ], + [ 7.1657212, 46.301811 ], + [ 7.1658597, 46.3018508 ], + [ 7.1660784, 46.3019192 ], + [ 7.1662484, 46.3019928 ], + [ 7.1663463, 46.3020383 ], + [ 7.1665003, 46.3020669 ], + [ 7.1667108, 46.3021408 ], + [ 7.1669384, 46.3022091 ], + [ 7.1671573, 46.3022381 ], + [ 7.1673285, 46.3022443 ], + [ 7.1674499, 46.3022841 ], + [ 7.1676281, 46.3023353 ], + [ 7.1677993, 46.3023473 ], + [ 7.1679294, 46.3022745 ], + [ 7.1680525, 46.3021625 ], + [ 7.1682322, 46.3020618 ], + [ 7.168395, 46.3019612 ], + [ 7.168607, 46.3018944 ], + [ 7.1687284, 46.3019566 ], + [ 7.1689316, 46.3020475 ], + [ 7.1691259, 46.30211 ], + [ 7.1694107, 46.302111 ], + [ 7.1695485, 46.3021284 ], + [ 7.1696373, 46.3022131 ], + [ 7.1697748, 46.3022867 ], + [ 7.1698236, 46.3022756 ], + [ 7.1699463, 46.3022367 ], + [ 7.1701083, 46.3022766 ], + [ 7.1703278, 46.3023449 ], + [ 7.1705954, 46.3023684 ], + [ 7.1708962, 46.3023919 ], + [ 7.1711888, 46.302438 ], + [ 7.171294, 46.3024946 ], + [ 7.1714396, 46.3025795 ], + [ 7.1716094, 46.302687 ], + [ 7.1718773, 46.3028118 ], + [ 7.172096, 46.3028744 ], + [ 7.1723726, 46.3028811 ], + [ 7.1726249, 46.3028763 ], + [ 7.1727384, 46.3029048 ], + [ 7.1729247, 46.3029561 ], + [ 7.1731361, 46.3030245 ], + [ 7.1733712, 46.303059 ], + [ 7.1736721, 46.3030601 ], + [ 7.1739244, 46.3030721 ], + [ 7.1742002, 46.3030619 ], + [ 7.174721, 46.3030637 ], + [ 7.1752085, 46.3030766 ], + [ 7.1755501, 46.303061 ], + [ 7.1759074, 46.3031352 ], + [ 7.1763295, 46.3032494 ], + [ 7.1768812, 46.3034031 ], + [ 7.177124, 46.3035221 ], + [ 7.1773345, 46.3036129 ], + [ 7.1775702, 46.303687 ], + [ 7.1776917, 46.3037267 ], + [ 7.1778791, 46.3037273 ], + [ 7.1781064, 46.3036775 ], + [ 7.1784073, 46.3037067 ], + [ 7.1786596, 46.3036907 ], + [ 7.1787652, 46.3036629 ], + [ 7.179075, 46.3035177 ], + [ 7.1792708, 46.3034621 ], + [ 7.1795638, 46.3034293 ], + [ 7.179808, 46.3034133 ], + [ 7.1801904, 46.3033528 ], + [ 7.1806957, 46.3032025 ], + [ 7.1811271, 46.3030578 ], + [ 7.181348, 46.3028278 ], + [ 7.1818592, 46.3029815 ], + [ 7.1820872, 46.3029711 ], + [ 7.1823797, 46.3030452 ], + [ 7.1827118, 46.3031307 ], + [ 7.1829881, 46.3032104 ], + [ 7.1832968, 46.3032846 ], + [ 7.1835805, 46.3033362 ], + [ 7.1838975, 46.303371 ], + [ 7.1839785, 46.3034051 ], + [ 7.1841242, 46.3034675 ], + [ 7.1842789, 46.3035129 ], + [ 7.1844813, 46.3035925 ], + [ 7.1846514, 46.3036662 ], + [ 7.1848708, 46.303757 ], + [ 7.1851703, 46.3038762 ], + [ 7.1854222, 46.3039727 ], + [ 7.1856653999999995, 46.303996 ], + [ 7.1860232, 46.3039972 ], + [ 7.1891064, 46.3038727 ], + [ 7.1895997, 46.3040267 ], + [ 7.1896835, 46.3039719 ], + [ 7.1897593, 46.3039001 ], + [ 7.1898044, 46.3037883 ], + [ 7.1898801, 46.3037221 ], + [ 7.1899802, 46.3036565 ], + [ 7.1900163, 46.3035613 ], + [ 7.1899884, 46.3034593 ], + [ 7.1899831, 46.303386 ], + [ 7.19013, 46.3033662 ], + [ 7.1902607, 46.3033462 ], + [ 7.1903905, 46.3033487 ], + [ 7.1906275, 46.3033082 ], + [ 7.1908321, 46.3032783 ], + [ 7.1910232, 46.3031692 ], + [ 7.1911432, 46.3030137 ], + [ 7.1919381, 46.3030233 ], + [ 7.1922355, 46.302905 ], + [ 7.1925203, 46.3028879 ], + [ 7.1926897, 46.302925 ], + [ 7.1930196, 46.3028016 ], + [ 7.1933711, 46.3027351 ], + [ 7.1939138, 46.3025651 ], + [ 7.1945708, 46.3023861 ], + [ 7.1948638, 46.3023579 ], + [ 7.1950737, 46.3023845 ], + [ 7.1953224, 46.3024625 ], + [ 7.1955071, 46.302528 ], + [ 7.19569, 46.3026104 ], + [ 7.1959387, 46.3026884 ], + [ 7.1961793, 46.3027663 ], + [ 7.1963794, 46.3028321 ], + [ 7.1965569, 46.3028693 ], + [ 7.196765, 46.302941 ], + [ 7.1970291, 46.3030305 ], + [ 7.1972453, 46.3031191 ], + [ 7.1974129, 46.3031844 ], + [ 7.1976138, 46.3032333 ], + [ 7.197822, 46.3033162 ], + [ 7.1979887, 46.3033983 ], + [ 7.1982274, 46.3035268 ], + [ 7.198459, 46.3036158 ], + [ 7.1986834, 46.3036934 ], + [ 7.1988258, 46.3037861 ], + [ 7.1989924, 46.3038852 ], + [ 7.1991357, 46.3039668 ], + [ 7.1993501, 46.3040892 ], + [ 7.1996043, 46.3042124 ], + [ 7.1997124, 46.3041582 ], + [ 7.1998215, 46.3040757 ], + [ 7.1999486, 46.3039429 ], + [ 7.2000469, 46.303911 ], + [ 7.2002172, 46.3039142 ], + [ 7.2003722, 46.3039002 ], + [ 7.2005128, 46.3038465 ], + [ 7.2007237, 46.3038506 ], + [ 7.2010157, 46.3038619 ], + [ 7.2016007, 46.3038391 ], + [ 7.201679, 46.303914 ], + [ 7.2017159, 46.3040104 ], + [ 7.2017042, 46.3041003 ], + [ 7.2017537, 46.304276 ], + [ 7.2017734, 46.3044004 ], + [ 7.2018095, 46.3045081 ], + [ 7.2017995, 46.3045643 ], + [ 7.2017779, 46.3046879 ], + [ 7.2017562, 46.3048171 ], + [ 7.2016399, 46.3048881 ], + [ 7.2016849, 46.3049847 ], + [ 7.2018155, 46.3051789 ], + [ 7.2018984, 46.3053326 ], + [ 7.2019587, 46.3054522 ], + [ 7.2020605, 46.3055387 ], + [ 7.2021723, 46.3055802 ], + [ 7.2022416, 46.3056773 ], + [ 7.2023101, 46.3057914 ], + [ 7.2024191, 46.3059061 ], + [ 7.2025939, 46.3059996 ], + [ 7.2026326, 46.3060625 ], + [ 7.2026371, 46.3061526 ], + [ 7.2026416, 46.3062429 ], + [ 7.2027253, 46.3063854 ], + [ 7.2027785, 46.3064709 ], + [ 7.202901, 46.3066592 ], + [ 7.2029776, 46.3067678 ], + [ 7.2030379, 46.3068873 ], + [ 7.2030973, 46.3070293 ], + [ 7.2032136, 46.3071668 ], + [ 7.2033469, 46.3072876 ], + [ 7.2033749, 46.3073841 ], + [ 7.2034019, 46.3075198 ], + [ 7.203454, 46.307656 ], + [ 7.2035126, 46.3078037 ], + [ 7.2035954, 46.3079687 ], + [ 7.2037117, 46.3081062 ], + [ 7.2038053, 46.3082094 ], + [ 7.2038522, 46.3082555 ], + [ 7.2038585, 46.3083006 ], + [ 7.203808, 46.3083335 ], + [ 7.2036683, 46.3083703 ], + [ 7.2036503, 46.3084206 ], + [ 7.2037412, 46.3085858 ], + [ 7.2037836, 46.3087444 ], + [ 7.203779, 46.308857 ], + [ 7.2037276, 46.3089238 ], + [ 7.2036916, 46.3090075 ], + [ 7.2037284, 46.3091153 ], + [ 7.2036752, 46.3092214 ], + [ 7.2036139, 46.3093329 ], + [ 7.2036022, 46.3094116 ], + [ 7.2036219, 46.3095472 ], + [ 7.2036652, 46.3096664 ], + [ 7.2037625, 46.3098711 ], + [ 7.2038994, 46.3099132 ], + [ 7.2040995, 46.3099846 ], + [ 7.2041869, 46.310037 ], + [ 7.2042228999999995, 46.3101392 ], + [ 7.2042283, 46.3102182 ], + [ 7.2043373, 46.3103329 ], + [ 7.2044319, 46.310408 ], + [ 7.2045031999999996, 46.3104432 ], + [ 7.2045248, 46.3105169 ], + [ 7.2045932, 46.3106309 ], + [ 7.2046382, 46.3107332 ], + [ 7.2047464, 46.3108536 ], + [ 7.2048482, 46.310957 ], + [ 7.2049752, 46.3110327 ], + [ 7.2050699, 46.3111021 ], + [ 7.2051573, 46.3111544 ], + [ 7.2052934, 46.3112022 ], + [ 7.2054529, 46.3112728 ], + [ 7.2056277, 46.3113719 ], + [ 7.2058088, 46.3115163 ], + [ 7.2059576, 46.3116431 ], + [ 7.2060414, 46.3117743 ], + [ 7.206117, 46.3119335 ], + [ 7.2062251, 46.3120709 ], + [ 7.2063747, 46.3121752 ], + [ 7.206536, 46.3122177 ], + [ 7.2065811, 46.3122918 ], + [ 7.206793, 46.3122732 ], + [ 7.2070796, 46.3122167 ], + [ 7.2072562, 46.3122821 ], + [ 7.2074887, 46.3123541 ], + [ 7.2076978, 46.3124089 ], + [ 7.2078331, 46.3124734 ], + [ 7.2079863, 46.3124989 ], + [ 7.2082927, 46.3125554 ], + [ 7.2084541, 46.3125866 ], + [ 7.2087263, 46.3126876 ], + [ 7.209277, 46.3127263 ], + [ 7.2093537, 46.3128235 ], + [ 7.2094455, 46.3129775 ], + [ 7.2095852, 46.3131379 ], + [ 7.2097771999999996, 46.3132148 ], + [ 7.2100197, 46.3132307 ], + [ 7.2102784, 46.3132582 ], + [ 7.2105678, 46.3133313 ], + [ 7.2107533, 46.3133799 ], + [ 7.210902, 46.3135179 ], + [ 7.2110291, 46.313588 ], + [ 7.2112013, 46.3135518 ], + [ 7.2113456, 46.3135828 ], + [ 7.2114735, 46.3136471 ], + [ 7.2116745, 46.313696 ], + [ 7.2117701, 46.3137429 ], + [ 7.2117908, 46.3138223 ], + [ 7.2118791, 46.3138634 ], + [ 7.2120378, 46.3139397 ], + [ 7.2121928, 46.3139426 ], + [ 7.2123885, 46.3139068 ], + [ 7.2126093000000004, 46.313866 ], + [ 7.2127995, 46.3137963 ], + [ 7.2129654, 46.313698 ], + [ 7.2130366, 46.3135416 ], + [ 7.2130998, 46.3133794 ], + [ 7.2131746, 46.3133356 ], + [ 7.2132809, 46.3133207 ], + [ 7.213409, 46.3133627 ], + [ 7.2135856, 46.3134167 ], + [ 7.2137983, 46.3133925 ], + [ 7.2139119, 46.3133834 ], + [ 7.2140192, 46.3133516 ], + [ 7.2141508, 46.313309 ], + [ 7.2142554, 46.3133223 ], + [ 7.214395, 46.3132967 ], + [ 7.2144608, 46.3132755 ], + [ 7.2145276, 46.3132148 ], + [ 7.2146015, 46.3131936 ], + [ 7.2148377, 46.3131756 ], + [ 7.2150504, 46.3131457 ], + [ 7.2152875, 46.3131164 ], + [ 7.2155174, 46.3130363 ], + [ 7.2156598, 46.3129431 ], + [ 7.215814, 46.3129348 ], + [ 7.2160429, 46.3129109 ], + [ 7.2163432, 46.3128996 ], + [ 7.216702, 46.3128614 ], + [ 7.2169417, 46.3127758 ], + [ 7.2170599, 46.3126541 ], + [ 7.2172149, 46.3126456 ], + [ 7.2173862, 46.3126263 ], + [ 7.2175503, 46.3125844 ], + [ 7.217691, 46.3125025 ], + [ 7.2177856, 46.3123803 ], + [ 7.2177099, 46.3122436 ], + [ 7.2176351, 46.3120899 ], + [ 7.2178046, 46.3119072 ], + [ 7.2180526, 46.3117992 ], + [ 7.218222, 46.3118305 ], + [ 7.2183681, 46.3118333 ], + [ 7.2187251, 46.3118288 ], + [ 7.2190199, 46.3117724 ], + [ 7.2191443, 46.3117128 ], + [ 7.2192219, 46.3115902 ], + [ 7.2192263, 46.3114946 ], + [ 7.2193589, 46.3114294 ], + [ 7.220447, 46.3114218 ], + [ 7.2205994, 46.3114697 ], + [ 7.2207536, 46.3114726 ], + [ 7.2209662, 46.311454 ], + [ 7.2211799, 46.3113848 ], + [ 7.2213521, 46.3113374 ], + [ 7.221518, 46.3112447 ], + [ 7.2216289, 46.3111228 ], + [ 7.2217569, 46.3109674 ], + [ 7.2218931, 46.3108122 ], + [ 7.2220518, 46.3106912 ], + [ 7.2222267, 46.3105816 ], + [ 7.2224854, 46.3104231 ], + [ 7.2227342, 46.3102926 ], + [ 7.2229641, 46.3102237 ], + [ 7.2231868, 46.3101433 ], + [ 7.2234509, 46.3100356 ], + [ 7.2236691, 46.309865 ], + [ 7.2238774, 46.309728 ], + [ 7.2242667, 46.3097466 ], + [ 7.2245498, 46.3095716 ], + [ 7.224749, 46.3094457 ], + [ 7.2250519, 46.3091922 ], + [ 7.225279, 46.3089992 ], + [ 7.2253881, 46.3088941 ], + [ 7.2255972, 46.3087516 ], + [ 7.2258315, 46.3085756 ], + [ 7.2259685, 46.3084035 ], + [ 7.2261516, 46.3082773 ], + [ 7.2263435, 46.3081626 ], + [ 7.2265084, 46.3081037 ], + [ 7.2266742, 46.3080167 ], + [ 7.2268166, 46.3079066 ], + [ 7.2272214, 46.3077226 ], + [ 7.2276468, 46.3076461 ], + [ 7.2279866, 46.3076694 ], + [ 7.2280226, 46.3075799 ], + [ 7.2280992, 46.3074912 ], + [ 7.2282551, 46.3074659 ], + [ 7.2285237, 46.3074371 ], + [ 7.2288725, 46.3074494 ], + [ 7.2292852, 46.3074966 ], + [ 7.229644, 46.3074413 ], + [ 7.2298017, 46.307371 ], + [ 7.2300306, 46.3073246 ], + [ 7.2302181, 46.3073112 ], + [ 7.2304154, 46.307253 ], + [ 7.2305894, 46.3071547 ], + [ 7.2307408, 46.307028 ], + [ 7.2309382, 46.3069584 ], + [ 7.2312446, 46.3068177 ], + [ 7.2316356, 46.3065827 ], + [ 7.2318079, 46.3069465 ], + [ 7.2318961999999996, 46.3071681 ], + [ 7.2320306, 46.3072552 ], + [ 7.2321675, 46.3072859 ], + [ 7.2323279, 46.3073509 ], + [ 7.2323983, 46.3074086 ], + [ 7.2324731, 46.3075622 ], + [ 7.232483, 46.3077371 ], + [ 7.2326444, 46.3077513 ], + [ 7.2330003, 46.3077975 ], + [ 7.2332843, 46.3077972 ], + [ 7.2336791, 46.3078778 ], + [ 7.2339621, 46.307917 ], + [ 7.2342343, 46.3080067 ], + [ 7.2343217, 46.3080647 ], + [ 7.2344389, 46.3081683 ], + [ 7.2345651, 46.3082665 ], + [ 7.2345039, 46.3083725 ], + [ 7.2344669, 46.3084901 ], + [ 7.2345183, 46.3086264 ], + [ 7.234813, 46.3085754 ], + [ 7.2350419, 46.3085347 ], + [ 7.2352448, 46.3085329 ], + [ 7.23548, 46.3085429 ], + [ 7.2357477, 46.3085479 ], + [ 7.2359749, 46.3085466 ], + [ 7.2362903, 46.308592 ], + [ 7.2365867999999995, 46.3086877 ], + [ 7.2367609, 46.3087924 ], + [ 7.2369239, 46.3087898 ], + [ 7.2371186, 46.3087935 ], + [ 7.2373304, 46.3087805 ], + [ 7.2376477, 46.308764 ], + [ 7.2378839, 46.3087347 ], + [ 7.2380696, 46.3087662 ], + [ 7.2382795, 46.3088096 ], + [ 7.238568, 46.308894 ], + [ 7.2387456, 46.3089311 ], + [ 7.2390466, 46.3089086 ], + [ 7.2392998, 46.3088796 ], + [ 7.2395045, 46.308832699999996 ], + [ 7.2396531, 46.3087791 ], + [ 7.2397956, 46.3086578 ], + [ 7.2399947, 46.308543 ], + [ 7.2401767, 46.3084675 ], + [ 7.2403742, 46.3083924 ], + [ 7.2405292, 46.3083728 ], + [ 7.2406949, 46.3083026 ], + [ 7.2408536, 46.3081872 ], + [ 7.2417701, 46.3075958 ], + [ 7.2420602, 46.3074547 ], + [ 7.2422134, 46.3074799 ], + [ 7.2423487, 46.3075502 ], + [ 7.2425236, 46.3076324 ], + [ 7.2426768, 46.3076634 ], + [ 7.2428075, 46.3076377 ], + [ 7.2429003, 46.3075605 ], + [ 7.2429841, 46.3074832 ], + [ 7.2430705, 46.3073665 ], + [ 7.2432309, 46.3072116 ], + [ 7.2434472, 46.3070691 ], + [ 7.2436139, 46.3069596 ], + [ 7.2437536, 46.3069283 ], + [ 7.2439753, 46.3068649 ], + [ 7.2443124, 46.3067585 ], + [ 7.2447657, 46.3065866 ], + [ 7.2449315, 46.3064939 ], + [ 7.2450747, 46.306367 ], + [ 7.2461454, 46.3061952 ], + [ 7.2462518, 46.3063833 ], + [ 7.2463374, 46.3064751 ], + [ 7.246497, 46.3065513 ], + [ 7.2466908, 46.3065831 ], + [ 7.2469179, 46.306576 ], + [ 7.2471595, 46.3066313 ], + [ 7.2478166, 46.3068634 ], + [ 7.2484422, 46.3070554 ], + [ 7.2486892, 46.3071728 ], + [ 7.2487983, 46.3072875 ], + [ 7.2489164, 46.3073742 ], + [ 7.2491075, 46.3074793 ], + [ 7.2493068, 46.3075675 ], + [ 7.2496178, 46.3077255 ], + [ 7.249936, 46.3078836 ], + [ 7.2500677, 46.3080439 ], + [ 7.2501280999999995, 46.3081746 ], + [ 7.2501418, 46.308434 ], + [ 7.25004, 46.308759 ], + [ 7.2510308, 46.3091777 ], + [ 7.2512308, 46.3090405 ], + [ 7.251348, 46.3089413 ], + [ 7.2514885, 46.3088819 ], + [ 7.2516435999999995, 46.3088566 ], + [ 7.2517986, 46.3088482 ], + [ 7.2519707, 46.308812 ], + [ 7.2522014, 46.3087318 ], + [ 7.2525268, 46.3086984 ], + [ 7.2528141999999995, 46.3086304 ], + [ 7.2534111, 46.3089347 ], + [ 7.2547576, 46.3087736 ], + [ 7.255165, 46.3087418 ], + [ 7.2554246, 46.3087466 ], + [ 7.2555841, 46.3088228 ], + [ 7.2558709, 46.3089578 ], + [ 7.2562621, 46.3091342 ], + [ 7.2565903, 46.309253 ], + [ 7.2569274, 46.3091353 ], + [ 7.2572554, 46.3090568 ], + [ 7.2574761, 46.3090328 ], + [ 7.2576934, 46.3090762 ], + [ 7.2578855, 46.3091474 ], + [ 7.2581992, 46.3092265 ], + [ 7.2584877, 46.3093164 ], + [ 7.258915, 46.309392 ], + [ 7.2592142, 46.3094426 ], + [ 7.2594648, 46.3094586 ], + [ 7.2597812, 46.3094644 ], + [ 7.2599605, 46.3094565 ], + [ 7.2603581, 46.3094526 ], + [ 7.260522, 46.3094331 ], + [ 7.2607466, 46.3094993 ], + [ 7.2610368, 46.309561 ], + [ 7.2614073, 46.3096354 ], + [ 7.2618039, 46.309671 ], + [ 7.262078, 46.3097156 ], + [ 7.262206, 46.3097743 ], + [ 7.2623809, 46.309862 ], + [ 7.2625478, 46.3099496 ], + [ 7.2627651, 46.3099988 ], + [ 7.2628931, 46.3100463 ], + [ 7.2632149, 46.3101367 ], + [ 7.2635197, 46.3102213 ], + [ 7.263754, 46.3102594 ], + [ 7.2640677, 46.3103385 ], + [ 7.2642688, 46.3103817 ], + [ 7.2644924, 46.3104873 ], + [ 7.2645944, 46.3105681 ], + [ 7.2648495, 46.310691 ], + [ 7.2650497, 46.3107737 ], + [ 7.2653868, 46.3108758 ], + [ 7.2656285, 46.3109198 ], + [ 7.2658547, 46.3109576 ], + [ 7.2660153, 46.3109945 ], + [ 7.2661018, 46.3110806 ], + [ 7.2663074, 46.3112196 ], + [ 7.2665537, 46.3113538 ], + [ 7.2669584, 46.3113896 ], + [ 7.2671099, 46.3114599 ], + [ 7.2673623, 46.3114421 ], + [ 7.2674803, 46.3113371 ], + [ 7.2675577, 46.3112146 ], + [ 7.2676505, 46.3111374 ], + [ 7.2677892, 46.311123 ], + [ 7.2679352999999995, 46.3111315 ], + [ 7.2681615, 46.3111525 ], + [ 7.2684933, 46.3111755 ], + [ 7.2688025, 46.3111699 ], + [ 7.269136, 46.3111536 ], + [ 7.2694848, 46.31116 ], + [ 7.2700292, 46.3111644 ], + [ 7.2704935, 46.3111167 ], + [ 7.2707774, 46.3111218 ], + [ 7.2709063, 46.3111637 ], + [ 7.2710893, 46.3112628 ], + [ 7.2713075, 46.3112894 ], + [ 7.2715329, 46.3113387 ], + [ 7.271816, 46.3113552 ], + [ 7.272228, 46.3114134 ], + [ 7.272538, 46.311391 ], + [ 7.2731996, 46.3112848 ], + [ 7.2735042, 46.3111722 ], + [ 7.2737375, 46.3110186 ], + [ 7.2739149, 46.3108528 ], + [ 7.2740193, 46.3106744 ], + [ 7.2741625, 46.3105306 ], + [ 7.2743147, 46.3103811 ], + [ 7.2745642, 46.3102336 ], + [ 7.2747931, 46.310187 ], + [ 7.2749913, 46.3101175 ], + [ 7.2751589, 46.3099741 ], + [ 7.2753435, 46.309814 ], + [ 7.2754893, 46.3096307 ], + [ 7.2757901, 46.3094108 ], + [ 7.2760406, 46.3092238 ], + [ 7.276309, 46.3090033 ], + [ 7.2766765, 46.3087396 ], + [ 7.2767078, 46.3085598 ], + [ 7.2767131, 46.3084359 ], + [ 7.2767445, 46.3082337 ], + [ 7.2767263, 46.3080869 ], + [ 7.2767153, 46.3079571 ], + [ 7.2766963, 46.3078101 ], + [ 7.2766618, 46.3076573 ], + [ 7.2766996, 46.3075059 ], + [ 7.2768129, 46.307322 ], + [ 7.2769895, 46.3071505 ], + [ 7.2770408, 46.3070951 ], + [ 7.2770785, 46.3069605 ], + [ 7.2771261, 46.3067754 ], + [ 7.2771313, 46.3066459 ], + [ 7.277152, 46.3065223 ], + [ 7.2772563, 46.3063551 ], + [ 7.2773581, 46.3062443 ], + [ 7.277494, 46.3060834 ], + [ 7.2776769, 46.305974 ], + [ 7.2778346, 46.3058755 ], + [ 7.2779435, 46.3057986 ], + [ 7.2780218, 46.3056704 ], + [ 7.2780676, 46.3055304 ], + [ 7.278163, 46.305363 ], + [ 7.2782349, 46.3051953 ], + [ 7.2783132, 46.3050615 ], + [ 7.278423, 46.3049564 ], + [ 7.2784761, 46.3048334 ], + [ 7.2785399, 46.3046486 ], + [ 7.278692, 46.3045105 ], + [ 7.278664, 46.3043747 ], + [ 7.2786603, 46.304262 ], + [ 7.2786349, 46.3040868 ], + [ 7.2786987, 46.3039188 ], + [ 7.2787544, 46.3037339 ], + [ 7.2788579, 46.3035668 ], + [ 7.2789208, 46.3034046 ], + [ 7.2790414, 46.3032433 ], + [ 7.2791999, 46.3031278 ], + [ 7.2794007, 46.3029794 ], + [ 7.2797096, 46.3027653 ], + [ 7.2798798, 46.3025487 ], + [ 7.2800218, 46.3022412 ], + [ 7.279919, 46.3021717 ], + [ 7.2798098, 46.302057 ], + [ 7.2797169, 46.301937 ], + [ 7.279522, 46.301724899999996 ], + [ 7.2793091, 46.3015632 ], + [ 7.2791586, 46.3014589 ], + [ 7.2790178, 46.3013268 ], + [ 7.2789283, 46.3011279 ], + [ 7.2786811, 46.3007964 ], + [ 7.2779001, 46.3002072 ], + [ 7.2779549, 46.3000392 ], + [ 7.2780503, 46.2998832 ], + [ 7.2780321, 46.2997363 ], + [ 7.277894, 46.299519599999996 ], + [ 7.2778136, 46.2992983 ], + [ 7.2774915, 46.2990218 ], + [ 7.2771029, 46.2987724 ], + [ 7.2768991, 46.2985883 ], + [ 7.2767124, 46.2983764 ], + [ 7.2765717, 46.2982329 ], + [ 7.2765048, 46.2980739 ], + [ 7.2763983, 46.2978972 ], + [ 7.2763793, 46.2977446 ], + [ 7.2762809, 46.2975738 ], + [ 7.2761555, 46.2974474 ], + [ 7.2760383, 46.297327 ], + [ 7.2759048, 46.2972287 ], + [ 7.275747, 46.2970962 ], + [ 7.2756639, 46.2969481 ], + [ 7.2755565, 46.2967883 ], + [ 7.2754871, 46.2966912 ], + [ 7.2752499, 46.2965234 ], + [ 7.2749876, 46.2963664 ], + [ 7.2748982, 46.2961731 ], + [ 7.2747763, 46.295968 ], + [ 7.2746941, 46.2957862 ], + [ 7.2746047, 46.2955815 ], + [ 7.2744685, 46.2953255 ], + [ 7.274316, 46.2950577 ], + [ 7.2741617, 46.2948521 ], + [ 7.2740138, 46.294686 ], + [ 7.2738352, 46.2944741 ], + [ 7.2736305, 46.2943237 ], + [ 7.2734664, 46.294146 ], + [ 7.2733239, 46.2940701 ], + [ 7.2732437, 46.2940236 ], + [ 7.27314, 46.2939879 ], + [ 7.2729625, 46.2939676 ], + [ 7.2727606, 46.2939246 ], + [ 7.2726011, 46.293854 ], + [ 7.2724198, 46.2937153 ], + [ 7.2722855, 46.2936114 ], + [ 7.2721447999999995, 46.2934791 ], + [ 7.2719618, 46.2933856 ], + [ 7.2717301, 46.2932968 ], + [ 7.271338, 46.2931487 ], + [ 7.2709523, 46.2930344 ], + [ 7.2706964, 46.2929339 ], + [ 7.2703692, 46.2927926 ], + [ 7.269978, 46.292622 ], + [ 7.2696725, 46.292543 ], + [ 7.2693705, 46.2923796 ], + [ 7.2691324, 46.2922456 ], + [ 7.2688863, 46.2921058 ], + [ 7.2687178, 46.292052 ], + [ 7.2685177, 46.2919806 ], + [ 7.2681815, 46.2918617 ], + [ 7.2679238, 46.2918006 ], + [ 7.2676038, 46.2916876 ], + [ 7.2672775, 46.2915069 ], + [ 7.2670494, 46.2913336 ], + [ 7.2668781, 46.2911276 ], + [ 7.2666923, 46.2909042 ], + [ 7.2666192, 46.2907056 ], + [ 7.2665848, 46.2905303 ], + [ 7.2665811, 46.2904288 ], + [ 7.26658, 46.2902483 ], + [ 7.2665674, 46.2901468 ], + [ 7.2665068999999995, 46.2900274 ], + [ 7.266423, 46.2898962 ], + [ 7.2662742, 46.2897526 ], + [ 7.266157, 46.289632 ], + [ 7.2660163, 46.2894998 ], + [ 7.265908, 46.2893682 ], + [ 7.2658178, 46.2891749 ], + [ 7.2657347, 46.2890156 ], + [ 7.2655761, 46.2889168 ], + [ 7.265421, 46.2887281 ], + [ 7.2652794, 46.2886182 ], + [ 7.2651233, 46.2884633 ], + [ 7.265016, 46.2882867 ], + [ 7.2649573, 46.288122 ], + [ 7.2649635, 46.2879701 ], + [ 7.2650174, 46.2878471 ], + [ 7.2650704, 46.2877297 ], + [ 7.2652055, 46.2875801 ], + [ 7.2651775, 46.2874725 ], + [ 7.2651341, 46.2873364 ], + [ 7.2650898999999995, 46.2872174 ], + [ 7.2650051, 46.287103 ], + [ 7.2648166, 46.286953 ], + [ 7.2646507, 46.2868204 ], + [ 7.2644577, 46.2865689 ], + [ 7.2643341, 46.2864087 ], + [ 7.2642079, 46.2863163 ], + [ 7.2639861, 46.2861769 ], + [ 7.2638258, 46.286112 ], + [ 7.2637508, 46.2859697 ], + [ 7.263693, 46.2857827 ], + [ 7.2636505, 46.2856128 ], + [ 7.2636098, 46.2854092 ], + [ 7.2635673, 46.2852619 ], + [ 7.2638247, 46.284894800000004 ], + [ 7.2640299, 46.2846281 ], + [ 7.2641999, 46.2844339 ], + [ 7.2643368, 46.2842505 ], + [ 7.264398, 46.2841277 ], + [ 7.2644843, 46.2840111 ], + [ 7.2645779, 46.2839 ], + [ 7.2647706, 46.2837289 ], + [ 7.264947, 46.28358 ], + [ 7.2650407, 46.2834634 ], + [ 7.2651531, 46.2832964 ], + [ 7.265225, 46.2831174 ], + [ 7.2653149, 46.2828824 ], + [ 7.2654615, 46.2826654 ], + [ 7.2656001, 46.2824425 ], + [ 7.2657809, 46.282181 ], + [ 7.265914, 46.2818904 ], + [ 7.2659886, 46.2816382 ], + [ 7.2660966, 46.2813753 ], + [ 7.2661315, 46.2810999 ], + [ 7.2662124, 46.2808985 ], + [ 7.2663601, 46.2806364 ], + [ 7.2664482, 46.2804633 ], + [ 7.2664967, 46.2802726 ], + [ 7.2665182999999995, 46.2801209 ], + [ 7.2664668, 46.279979 ], + [ 7.2663991, 46.2798594 ], + [ 7.2662828, 46.2797164 ], + [ 7.266135, 46.279539 ], + [ 7.2659718, 46.2793612 ], + [ 7.2658725, 46.2792071 ], + [ 7.2657841, 46.2789802 ], + [ 7.26572, 46.2787423 ], + [ 7.2656279, 46.2783969 ], + [ 7.2655808, 46.2781536 ], + [ 7.2655501000000005, 46.2778882 ], + [ 7.2655373, 46.2775949 ], + [ 7.2655687, 46.2774097 ], + [ 7.265546, 46.2771612 ], + [ 7.2655702, 46.2769532 ], + [ 7.2655007, 46.2768674 ], + [ 7.2654484, 46.2767537 ], + [ 7.2653338, 46.2765825 ], + [ 7.2652842, 46.27639 ], + [ 7.2652832, 46.2761984 ], + [ 7.2652776, 46.2759278 ], + [ 7.2652711, 46.275691 ], + [ 7.2652061, 46.2754869 ], + [ 7.265115, 46.2753217 ], + [ 7.2649843, 46.2751221 ], + [ 7.2648245, 46.2746571 ], + [ 7.2647731, 46.2745039 ], + [ 7.2648036, 46.2743637 ], + [ 7.264826, 46.2741893 ], + [ 7.2648403, 46.2740431 ], + [ 7.2647898, 46.2738731 ], + [ 7.264723, 46.2737197 ], + [ 7.2646166, 46.2735262 ], + [ 7.2645443, 46.273305 ], + [ 7.2644739, 46.2730219 ], + [ 7.2644295, 46.2727055 ], + [ 7.2642977, 46.2723423 ], + [ 7.2642273, 46.272065 ], + [ 7.2641722, 46.2718046 ], + [ 7.2640971, 46.2714425 ], + [ 7.2639968, 46.2711138 ], + [ 7.2639617, 46.2709609 ], + [ 7.263921, 46.2707574 ], + [ 7.2639163, 46.2704586 ], + [ 7.263952, 46.2701775 ], + [ 7.2640376, 46.2700551 ], + [ 7.2641149, 46.2699494 ], + [ 7.2642085, 46.2698328 ], + [ 7.2642876, 46.2696877 ], + [ 7.2643379, 46.2694237 ], + [ 7.2644584, 46.2692626 ], + [ 7.2646618, 46.2690352 ], + [ 7.2648986, 46.2687804 ], + [ 7.2653286999999995, 46.2683712 ], + [ 7.2652808, 46.2681449 ], + [ 7.2652663, 46.2678798 ], + [ 7.2652931, 46.2676041 ], + [ 7.2653126, 46.2673283 ], + [ 7.2652648, 46.2670908 ], + [ 7.2653294, 46.2668947 ], + [ 7.2653941, 46.2666817 ], + [ 7.2654651, 46.2665365 ], + [ 7.2655668, 46.2664201 ], + [ 7.2656063, 46.2662461 ], + [ 7.2656116, 46.2661109 ], + [ 7.2656422, 46.2659368 ], + [ 7.2657176, 46.2656789 ], + [ 7.2657679, 46.265415 ], + [ 7.2658621, 46.2650955 ], + [ 7.2659286, 46.2648318 ], + [ 7.2660084, 46.2644612 ], + [ 7.2660381, 46.2643097 ], + [ 7.2659893, 46.2641115 ], + [ 7.2659153, 46.2639186 ], + [ 7.2658647, 46.2637711 ], + [ 7.2657907999999995, 46.2635725 ], + [ 7.2656933, 46.2633734 ], + [ 7.2655554, 46.2631568 ], + [ 7.2654354, 46.2629178 ], + [ 7.2653533, 46.262719 ], + [ 7.2652875, 46.2625374 ], + [ 7.2652702, 46.2623681 ], + [ 7.2652286, 46.2621869 ], + [ 7.2651871, 46.261989 ], + [ 7.2651392, 46.2617626 ], + [ 7.2650137, 46.261456 ], + [ 7.2649343, 46.2612008 ], + [ 7.2648548, 46.2609458 ], + [ 7.2647502, 46.2607015 ], + [ 7.264559, 46.2604219 ], + [ 7.2643436, 46.2601135 ], + [ 7.2640804, 46.2597761 ], + [ 7.2638487, 46.2594901 ], + [ 7.2638378, 46.2593546 ], + [ 7.2638206, 46.2591626 ], + [ 7.2638025, 46.2590045 ], + [ 7.2638194, 46.2587851 ], + [ 7.2638409, 46.2586389 ], + [ 7.2639128, 46.2584655 ], + [ 7.2640099, 46.2582701 ], + [ 7.2641134, 46.2581141 ], + [ 7.264197, 46.2578227 ], + [ 7.2643391, 46.256467 ], + [ 7.2643884, 46.2562538 ], + [ 7.2643263000000005, 46.2561681 ], + [ 7.2642488, 46.2560765 ], + [ 7.2641261, 46.2559053 ], + [ 7.2640414, 46.255774 ], + [ 7.2639981, 46.2556549 ], + [ 7.2639718, 46.2554965 ], + [ 7.2641626, 46.2541362 ], + [ 7.2641399, 46.2538709 ], + [ 7.2640543, 46.2537792 ], + [ 7.2639669, 46.2537268 ], + [ 7.2638237, 46.2536565 ], + [ 7.2636778, 46.2536538 ], + [ 7.2634679, 46.2536387 ], + [ 7.2633797, 46.2536033 ], + [ 7.2632932, 46.253534 ], + [ 7.2631563, 46.2535146 ], + [ 7.2630582, 46.2535297 ], + [ 7.2629123, 46.2535269 ], + [ 7.2627268, 46.2534897 ], + [ 7.2626079, 46.2534199 ], + [ 7.2624899, 46.2533275 ], + [ 7.2624376, 46.2532082 ], + [ 7.262378, 46.2530774 ], + [ 7.2623419, 46.2529753 ], + [ 7.2623328, 46.2527836 ], + [ 7.2623074, 46.2526028 ], + [ 7.2622667, 46.2524047 ], + [ 7.262255, 46.2522749 ], + [ 7.2622044, 46.2521218 ], + [ 7.2621125, 46.2519793 ], + [ 7.2620061, 46.2518025 ], + [ 7.2619142, 46.2516599 ], + [ 7.2617519, 46.251454 ], + [ 7.2616762, 46.2513117 ], + [ 7.2615681, 46.2511632 ], + [ 7.2615166, 46.2510383 ], + [ 7.2614085, 46.2508841 ], + [ 7.261276, 46.250752 ], + [ 7.2611112, 46.2506024 ], + [ 7.2609408, 46.2504133 ], + [ 7.2608003, 46.2502642 ], + [ 7.2605597, 46.2499835 ], + [ 7.2603786, 46.2498337 ], + [ 7.2602029, 46.2497797 ], + [ 7.2600481, 46.2497937 ], + [ 7.2598878, 46.2497399 ], + [ 7.2597599, 46.2496869 ], + [ 7.2596662, 46.2495894 ], + [ 7.2594797, 46.249383 ], + [ 7.2593157, 46.2492166 ], + [ 7.2592210999999995, 46.2491471 ], + [ 7.2591743, 46.2491012 ], + [ 7.258958, 46.2488267 ], + [ 7.2587489, 46.2485804 ], + [ 7.2586292, 46.2485219 ], + [ 7.2584842, 46.2484967 ], + [ 7.2583149, 46.2484766 ], + [ 7.2582113, 46.2484183 ], + [ 7.25806, 46.2483535 ], + [ 7.2578943, 46.2482208 ], + [ 7.2576412, 46.2480583 ], + [ 7.2564727, 46.2470334 ], + [ 7.255846, 46.2468865 ], + [ 7.2556001, 46.2467466 ], + [ 7.2553516, 46.2468772 ], + [ 7.255114, 46.2469348 ], + [ 7.2547692, 46.2470412 ], + [ 7.2544227, 46.2471812 ], + [ 7.2540987, 46.2473725 ], + [ 7.2539888999999995, 46.2474944 ], + [ 7.2539107, 46.2476225 ], + [ 7.2539054, 46.2477521 ], + [ 7.2539081, 46.2478987 ], + [ 7.2539164, 46.2480905 ], + [ 7.2539280999999995, 46.2482259 ], + [ 7.2538751, 46.2483207 ], + [ 7.2537356, 46.2483576 ], + [ 7.253605, 46.2483833 ], + [ 7.253506, 46.248421 ], + [ 7.2534206, 46.2485321 ], + [ 7.2533441, 46.2486264 ], + [ 7.2532181, 46.2487425 ], + [ 7.2530588, 46.2488748 ], + [ 7.2529418, 46.2489571 ], + [ 7.2528185, 46.2489943 ], + [ 7.2526384, 46.2490361 ], + [ 7.2524665, 46.2490779 ], + [ 7.2522531, 46.2491472 ], + [ 7.2520739, 46.249172 ], + [ 7.2518803, 46.2491458 ], + [ 7.2517047, 46.2490637 ], + [ 7.2515444, 46.2490044 ], + [ 7.2513364, 46.2489385 ], + [ 7.2512041, 46.2490036 ], + [ 7.249402, 46.2482148 ], + [ 7.249583, 46.2481337 ], + [ 7.2497161, 46.2480629 ], + [ 7.2498088, 46.2479745 ], + [ 7.2499843, 46.2478425 ], + [ 7.2500924, 46.2477599 ], + [ 7.250122, 46.2476365 ], + [ 7.2502092, 46.2474803 ], + [ 7.250229, 46.2473849 ], + [ 7.2502172, 46.2472832 ], + [ 7.2501713, 46.2472035 ], + [ 7.2501262, 46.2471124 ], + [ 7.2500902, 46.2469934 ], + [ 7.2500865, 46.2468807 ], + [ 7.2500738, 46.2467958 ], + [ 7.2500189, 46.2467441 ], + [ 7.2499171, 46.2466408 ], + [ 7.2497928, 46.2465032 ], + [ 7.2497414, 46.2463669 ], + [ 7.2497719, 46.2462097 ], + [ 7.2498106, 46.2460583 ], + [ 7.2497942, 46.2458551 ], + [ 7.2497356, 46.2457018 ], + [ 7.2496383, 46.2454858 ], + [ 7.2496994, 46.2451658 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "JBG0018", + "country" : "CHE", + "name" : [ + { + "text" : "Eidgenössisches Jagdbanngebiet Haut de Cry/Derborence", + "lang" : "de-CH" + }, + { + "text" : "District franc fédéral Haut de Cry/Derborence", + "lang" : "fr-CH" + }, + { + "text" : "Bandita federale di caccia Haut de Cry/Derborence", + "lang" : "it-CH" + }, + { + "text" : "Federal Game Reserve Haut de Cry/Derborence", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6347435, 47.3814471 ], + [ 7.6350563000000005, 47.3814938 ], + [ 7.6352212999999995, 47.3815128 ], + [ 7.6354503000000005, 47.3815525 ], + [ 7.6357313, 47.3815242 ], + [ 7.6358612, 47.3815251 ], + [ 7.6360325, 47.3815117 ], + [ 7.6362809, 47.3814759 ], + [ 7.6365244, 47.3814279 ], + [ 7.637035, 47.381335 ], + [ 7.637311, 47.3813538 ], + [ 7.6375256, 47.3813494 ], + [ 7.6380278, 47.3813581 ], + [ 7.6383795, 47.3814036 ], + [ 7.6387097, 47.3815476 ], + [ 7.6391477, 47.3815998 ], + [ 7.6396785, 47.3816049 ], + [ 7.6398931, 47.3815892 ], + [ 7.6402906, 47.3815921 ], + [ 7.6406486000000005, 47.38163 ], + [ 7.6407539, 47.3816309 ], + [ 7.6409701, 47.3816319 ], + [ 7.6412368, 47.381625 ], + [ 7.6416311, 47.3816011 ], + [ 7.6418666, 47.3815959 ], + [ 7.642414, 47.381574 ], + [ 7.6428049, 47.3815494 ], + [ 7.6432982, 47.3814946 ], + [ 7.6441729, 47.3814326 ], + [ 7.644404, 47.38142 ], + [ 7.6448658, 47.3813447 ], + [ 7.6456134, 47.3811841 ], + [ 7.6462278, 47.3809937 ], + [ 7.6465506, 47.3808596 ], + [ 7.6467989, 47.3807739 ], + [ 7.6470093, 47.380721199999996 ], + [ 7.6471824, 47.3806907 ], + [ 7.647407, 47.3806662 ], + [ 7.6477601, 47.3803972 ], + [ 7.6480668, 47.3804358 ], + [ 7.6482323999999995, 47.3804849 ], + [ 7.6483663, 47.3809047 ], + [ 7.6481852, 47.3810765 ], + [ 7.6483467, 47.3812482 ], + [ 7.6486411, 47.3812957 ], + [ 7.6491065, 47.3812527 ], + [ 7.6494202, 47.3813083 ], + [ 7.6497922, 47.381386 ], + [ 7.6501608, 47.3814794 ], + [ 7.6506235, 47.3813915 ], + [ 7.6510995, 47.3812487 ], + [ 7.6512017, 47.3811366 ], + [ 7.6513216, 47.3811575 ], + [ 7.6517772, 47.381258 ], + [ 7.6520835, 47.3813257 ], + [ 7.6522056, 47.3817669 ], + [ 7.652661, 47.3819711 ], + [ 7.6526604, 47.3822327 ], + [ 7.6532355, 47.3824462 ], + [ 7.6536813, 47.3826039 ], + [ 7.6543469, 47.3827602 ], + [ 7.6546714, 47.3827833 ], + [ 7.6551393, 47.3827376 ], + [ 7.6563584, 47.3827395 ], + [ 7.6569339, 47.3828114 ], + [ 7.6584684, 47.3830135 ], + [ 7.6594575, 47.3831225 ], + [ 7.6609126, 47.3832512 ], + [ 7.6610814, 47.3833668 ], + [ 7.6616408, 47.3835108 ], + [ 7.6623733, 47.3837099 ], + [ 7.6624202, 47.3836871 ], + [ 7.6619378000000005, 47.3834732 ], + [ 7.661259, 47.3831746 ], + [ 7.6613809, 47.3830957 ], + [ 7.6614264, 47.3830782 ], + [ 7.6622514, 47.3828506 ], + [ 7.6625219, 47.3831514 ], + [ 7.6625748, 47.3831374 ], + [ 7.6630874, 47.3827742 ], + [ 7.6630926, 47.3827389 ], + [ 7.6631151, 47.3825877 ], + [ 7.6631606, 47.3823066 ], + [ 7.6631921, 47.3821459 ], + [ 7.6632996, 47.3816317 ], + [ 7.6633239, 47.3814417 ], + [ 7.6635749, 47.3811123 ], + [ 7.663196, 47.3809514 ], + [ 7.6626768, 47.3809807 ], + [ 7.6624332, 47.3807791 ], + [ 7.6619873, 47.3805757 ], + [ 7.6614884, 47.3805886 ], + [ 7.6606467, 47.3805411 ], + [ 7.6600738, 47.3803705 ], + [ 7.6600967, 47.3802503 ], + [ 7.6593124, 47.3801953 ], + [ 7.6591544, 47.380425 ], + [ 7.6589960999999995, 47.3812901 ], + [ 7.6589948, 47.3813451 ], + [ 7.6596132, 47.3816917 ], + [ 7.6595847, 47.3817081 ], + [ 7.6594808, 47.381702 ], + [ 7.6594211, 47.3816931 ], + [ 7.6593739, 47.3816825 ], + [ 7.6593195, 47.3816678 ], + [ 7.6591963, 47.3816238 ], + [ 7.6591561, 47.3816147 ], + [ 7.659054, 47.3815955 ], + [ 7.6589731, 47.3815747 ], + [ 7.6588129, 47.3814722 ], + [ 7.6585906, 47.3812978 ], + [ 7.6584324, 47.3811849 ], + [ 7.6583026, 47.3811119 ], + [ 7.6581723, 47.3810485 ], + [ 7.6578424, 47.3809401 ], + [ 7.6573684, 47.3807916 ], + [ 7.6571296, 47.3807248 ], + [ 7.6569424, 47.380675600000004 ], + [ 7.6567967, 47.3806485 ], + [ 7.6566451, 47.3806319 ], + [ 7.6552051, 47.3805293 ], + [ 7.6551574, 47.380167900000004 ], + [ 7.6548973, 47.380167900000004 ], + [ 7.6541568, 47.3801756 ], + [ 7.6533923, 47.3801642 ], + [ 7.6530815, 47.3801672 ], + [ 7.6530278, 47.3801655 ], + [ 7.6529689, 47.3801586 ], + [ 7.6529039, 47.3801457 ], + [ 7.6527323, 47.3801096 ], + [ 7.6525127, 47.3800723 ], + [ 7.6523468999999995, 47.3800473 ], + [ 7.6519814, 47.3799894 ], + [ 7.6518748, 47.3799712 ], + [ 7.6517868, 47.3799552 ], + [ 7.6517136, 47.3799376 ], + [ 7.6516236, 47.3799084 ], + [ 7.6514975, 47.3798753 ], + [ 7.6513257, 47.3798326 ], + [ 7.6511852000000005, 47.3798006 ], + [ 7.6511199, 47.3797887 ], + [ 7.6509405, 47.3800955 ], + [ 7.6500905, 47.3799551 ], + [ 7.6499233, 47.3799226 ], + [ 7.6498753, 47.3798981 ], + [ 7.6498576, 47.3798737 ], + [ 7.6498162, 47.3798625 ], + [ 7.649726, 47.380044 ], + [ 7.6490758, 47.3799406 ], + [ 7.6484321, 47.3798358 ], + [ 7.647861, 47.3797661 ], + [ 7.6476068999999995, 47.3797542 ], + [ 7.6471204, 47.3799879 ], + [ 7.6471042, 47.3799814 ], + [ 7.647045, 47.3799621 ], + [ 7.6469976, 47.3799389 ], + [ 7.6469601, 47.3799151 ], + [ 7.6469185, 47.3798841 ], + [ 7.6468479, 47.3798167 ], + [ 7.6467868, 47.3797671 ], + [ 7.6467278, 47.3797399 ], + [ 7.6466712, 47.3797244 ], + [ 7.6466332, 47.3797087 ], + [ 7.6466096, 47.3796923 ], + [ 7.646597, 47.3796725 ], + [ 7.6465711, 47.3795844 ], + [ 7.6464718, 47.3795281 ], + [ 7.6464503, 47.3794864 ], + [ 7.6464316, 47.3794556 ], + [ 7.6464094, 47.3794382 ], + [ 7.6463371, 47.3794015 ], + [ 7.6463117, 47.379394 ], + [ 7.6460558, 47.3794278 ], + [ 7.6458765, 47.3793975 ], + [ 7.6457279, 47.3793399 ], + [ 7.6455849, 47.3793389 ], + [ 7.6455098, 47.3792971 ], + [ 7.6454372, 47.3792677 ], + [ 7.6453779, 47.3792193 ], + [ 7.6452883, 47.3791094 ], + [ 7.6452308, 47.3790731 ], + [ 7.6451266, 47.3790752 ], + [ 7.644916, 47.3789777 ], + [ 7.6448723, 47.3789862 ], + [ 7.6441663, 47.3790595 ], + [ 7.6437415, 47.3791093 ], + [ 7.6434297, 47.3791127 ], + [ 7.6430471, 47.3791328 ], + [ 7.6427816, 47.3791471 ], + [ 7.6423526, 47.379147 ], + [ 7.6420789, 47.3791511 ], + [ 7.6417275, 47.3791456 ], + [ 7.6416934, 47.3791366 ], + [ 7.6415729, 47.3790405 ], + [ 7.6414068, 47.3789504 ], + [ 7.6416485, 47.3793649 ], + [ 7.6417671, 47.3804724 ], + [ 7.6416259, 47.3805019 ], + [ 7.6414599, 47.3805239 ], + [ 7.6411304, 47.3805494 ], + [ 7.6403148, 47.3805908 ], + [ 7.639796, 47.380592 ], + [ 7.6393573, 47.3805819 ], + [ 7.6389323000000005, 47.3806359 ], + [ 7.6381702, 47.3806832 ], + [ 7.6375692, 47.3806963 ], + [ 7.6372236000000004, 47.380666 ], + [ 7.6367118, 47.3807026 ], + [ 7.636343, 47.3806127 ], + [ 7.6361148, 47.380648 ], + [ 7.6355862, 47.3805958 ], + [ 7.6347435, 47.3814471 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns069", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Ämmenegg - Ulmet", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Ämmenegg - Ulmet", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Ämmenegg - Ulmet", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Ämmenegg - Ulmet", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7166715, 47.3821265 ], + [ 7.7166691, 47.3826901 ], + [ 7.7166777, 47.3831772 ], + [ 7.7171511, 47.3832585 ], + [ 7.7175217, 47.3833048 ], + [ 7.7180181999999995, 47.3833268 ], + [ 7.7189767, 47.383398 ], + [ 7.7189789, 47.3833993 ], + [ 7.7193553999999995, 47.3830351 ], + [ 7.7196748, 47.3828026 ], + [ 7.7197675, 47.3826261 ], + [ 7.7198828, 47.3824042 ], + [ 7.7201554, 47.3820068 ], + [ 7.7203644, 47.3816975 ], + [ 7.7205627, 47.3814058 ], + [ 7.7204502999999995, 47.381134 ], + [ 7.7200182999999996, 47.3810753 ], + [ 7.7192947, 47.3810482 ], + [ 7.7187844, 47.3810135 ], + [ 7.7182676, 47.3809424 ], + [ 7.7179223, 47.3808957 ], + [ 7.7175541, 47.3808077 ], + [ 7.7174442, 47.3810899 ], + [ 7.717339, 47.3814941 ], + [ 7.7171792, 47.3819187 ], + [ 7.7166715, 47.3821265 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns098", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Studenweid", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Studenweid", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Studenweid", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Studenweid", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.2877522, 46.9545852 ], + [ 8.2874732, 46.9530615 ], + [ 8.2880645, 46.9528179 ], + [ 8.2871449, 46.9518252 ], + [ 8.287512, 46.9516111 ], + [ 8.2880878, 46.9490602 ], + [ 8.2883663, 46.9484806 ], + [ 8.2901077, 46.9468772 ], + [ 8.2904329, 46.9465932 ], + [ 8.291479, 46.9477819 ], + [ 8.2926824, 46.9472098 ], + [ 8.2914779, 46.9463885 ], + [ 8.2901375, 46.9435279 ], + [ 8.2899078, 46.9432903 ], + [ 8.2899604, 46.9427124 ], + [ 8.2891554, 46.9424791 ], + [ 8.2887722, 46.9429182 ], + [ 8.288505, 46.9429625 ], + [ 8.2882644, 46.9420359 ], + [ 8.2879365, 46.9420662 ], + [ 8.2878075, 46.9417155 ], + [ 8.2866944, 46.9415123 ], + [ 8.2842014, 46.9371679 ], + [ 8.2846901, 46.9368404 ], + [ 8.284295, 46.936604 ], + [ 8.2830082, 46.9344465 ], + [ 8.2805921, 46.9336339 ], + [ 8.2804499, 46.9337753 ], + [ 8.2820954, 46.9404767 ], + [ 8.2833576, 46.9449004 ], + [ 8.2830049, 46.9446925 ], + [ 8.2814708, 46.9438591 ], + [ 8.2812489, 46.9427768 ], + [ 8.2803263, 46.9429104 ], + [ 8.2801627, 46.9442907 ], + [ 8.2802558, 46.9449521 ], + [ 8.2827804, 46.9447788 ], + [ 8.2834183, 46.9450016 ], + [ 8.2837459, 46.9461228 ], + [ 8.2852018, 46.951066 ], + [ 8.2850368, 46.9510951 ], + [ 8.2863425, 46.9535035 ], + [ 8.2858015, 46.9538511 ], + [ 8.2864138, 46.9548577 ], + [ 8.2864269, 46.9548576 ], + [ 8.2877522, 46.9545852 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSMA002", + "country" : "CHE", + "name" : [ + { + "text" : "LSMA Alpnach (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSMA Alpnach (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSMA Alpnach (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSMA Alpnach (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Special Flight Office (SFO)", + "lang" : "de-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "fr-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "it-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "en-GB" + } + ], + "siteURL" : "https://skyguide.ch/services/special-flights", + "email" : "specialflight@skyguide.ch", + "phone" : "0041439316236", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.3661671, 46.0693727 ], + [ 7.3661845, 46.0696205 ], + [ 7.3662416, 46.0698119 ], + [ 7.3662341, 46.0699921 ], + [ 7.3662678, 46.0701723 ], + [ 7.3663733, 46.0703805 ], + [ 7.3664877, 46.0705774 ], + [ 7.3666264, 46.0707742 ], + [ 7.366862, 46.0709877 ], + [ 7.367041, 46.0711958 ], + [ 7.366855, 46.0713707 ], + [ 7.3666854, 46.0714048 ], + [ 7.3665318, 46.0714784 ], + [ 7.366354, 46.0715801 ], + [ 7.3662003, 46.0717437 ], + [ 7.3660555, 46.0719018 ], + [ 7.3660561, 46.0720425 ], + [ 7.3661212, 46.0722508 ], + [ 7.3662363, 46.072611 ], + [ 7.3664067, 46.0725938 ], + [ 7.366633, 46.0725538 ], + [ 7.3668115, 46.0725592 ], + [ 7.3669576, 46.0725927 ], + [ 7.367128, 46.0726655 ], + [ 7.3673306, 46.0727834 ], + [ 7.3675663, 46.0728562 ], + [ 7.3677771, 46.0729515 ], + [ 7.3679643, 46.073075 ], + [ 7.368078, 46.0732155 ], + [ 7.3681029, 46.0733564 ], + [ 7.3680704, 46.073452 ], + [ 7.3680064, 46.0735874 ], + [ 7.3678522, 46.0735933 ], + [ 7.3677552, 46.073633 ], + [ 7.3675692999999995, 46.073684 ], + [ 7.3674642, 46.0737519 ], + [ 7.3674156, 46.0738421 ], + [ 7.367384, 46.0739491 ], + [ 7.3673516, 46.074028 ], + [ 7.3672868, 46.0740957 ], + [ 7.3672391, 46.0741521 ], + [ 7.367134, 46.0742087 ], + [ 7.367012, 46.074254 ], + [ 7.3667776, 46.0743164 ], + [ 7.3665344, 46.0743732 ], + [ 7.3663404, 46.0744582 ], + [ 7.3661707, 46.0745148 ], + [ 7.366009, 46.0745996 ], + [ 7.3657981, 46.0746394 ], + [ 7.365588, 46.0746906 ], + [ 7.3653691, 46.0747416 ], + [ 7.3650935, 46.0747704 ], + [ 7.3648511, 46.0748271 ], + [ 7.3646241, 46.0748727 ], + [ 7.3643817, 46.0749069 ], + [ 7.3640327, 46.0749077 ], + [ 7.3636683, 46.0749478 ], + [ 7.3634986, 46.0749763 ], + [ 7.3633604, 46.0750047 ], + [ 7.363223, 46.0750388 ], + [ 7.3630041, 46.075028 ], + [ 7.3629394999999995, 46.075045 ], + [ 7.3628263, 46.0751072 ], + [ 7.3626566, 46.0751582 ], + [ 7.3624699, 46.0752149 ], + [ 7.3622275, 46.0752209 ], + [ 7.3619278, 46.0752667 ], + [ 7.361871, 46.0754132 ], + [ 7.3618474, 46.0755202 ], + [ 7.3618319, 46.0756385 ], + [ 7.3618648, 46.0757624 ], + [ 7.3619544, 46.0758523 ], + [ 7.3620997, 46.075914 ], + [ 7.3622298, 46.0759024 ], + [ 7.3624164, 46.0759077 ], + [ 7.3625699000000004, 46.0758736 ], + [ 7.3627162, 46.0758733 ], + [ 7.3628615, 46.0758843 ], + [ 7.3629189, 46.0759236 ], + [ 7.3629753000000004, 46.0760023 ], + [ 7.3630001, 46.0761487 ], + [ 7.3629926, 46.0763064 ], + [ 7.3629529, 46.0763967 ], + [ 7.3628963, 46.0764812 ], + [ 7.3628154, 46.0765264 ], + [ 7.3626537, 46.0766056 ], + [ 7.3625486, 46.0766678 ], + [ 7.3624515, 46.0767468 ], + [ 7.3623868, 46.0768427 ], + [ 7.3623875, 46.0769216 ], + [ 7.3624367, 46.0769946 ], + [ 7.3624931, 46.0770621 ], + [ 7.3625746, 46.0771408 ], + [ 7.3627046, 46.0771968 ], + [ 7.3627699, 46.077253 ], + [ 7.3627779, 46.0773487 ], + [ 7.362722, 46.0774784 ], + [ 7.3626652, 46.0775913 ], + [ 7.3625608, 46.0777828 ], + [ 7.3624481, 46.0780197 ], + [ 7.3623355, 46.0782338 ], + [ 7.3622391, 46.0784537 ], + [ 7.362183, 46.0786791 ], + [ 7.3621276, 46.0789834 ], + [ 7.3620802, 46.0793665 ], + [ 7.3620734, 46.0796368 ], + [ 7.3620261, 46.0799072 ], + [ 7.3619376, 46.0802228 ], + [ 7.3618343, 46.0806904 ], + [ 7.361731, 46.0811693 ], + [ 7.3631102, 46.0817468 ], + [ 7.3632894, 46.0818533 ], + [ 7.3633951, 46.0819377 ], + [ 7.3635331, 46.0820612 ], + [ 7.3637122, 46.0822411 ], + [ 7.3638825, 46.0823703 ], + [ 7.3639316, 46.0824885 ], + [ 7.3639889, 46.0825672 ], + [ 7.3640056, 46.0827305 ], + [ 7.3640547, 46.0828938 ], + [ 7.3640472, 46.0830402 ], + [ 7.3640478, 46.0832148 ], + [ 7.36413, 46.0833724 ], + [ 7.3643406, 46.0835127 ], + [ 7.3644787, 46.0835857 ], + [ 7.3646741, 46.083681 ], + [ 7.3648768, 46.083782 ], + [ 7.3651206, 46.0839054 ], + [ 7.3652667, 46.0840008 ], + [ 7.3655025, 46.0840962 ], + [ 7.3656972, 46.0841352 ], + [ 7.3659726, 46.0841853 ], + [ 7.3662158, 46.0841678 ], + [ 7.3664912, 46.0842687 ], + [ 7.3668159, 46.0843638 ], + [ 7.3669862, 46.0844536 ], + [ 7.3670928, 46.0845603 ], + [ 7.367255, 46.0847065 ], + [ 7.3673121, 46.0848415 ], + [ 7.3674583, 46.084937 ], + [ 7.3675963, 46.0849986 ], + [ 7.3677425, 46.0850941 ], + [ 7.3678813, 46.0852122 ], + [ 7.3680678, 46.0853356 ], + [ 7.3683844, 46.0854251 ], + [ 7.3686598, 46.0854978 ], + [ 7.3688957, 46.085548 ], + [ 7.3691146, 46.0855644 ], + [ 7.3694305, 46.085575 ], + [ 7.3696979, 46.0856138 ], + [ 7.3699815, 46.0856246 ], + [ 7.3703062, 46.0856859 ], + [ 7.3705332, 46.0857587 ], + [ 7.3707278, 46.085831400000004 ], + [ 7.3709959, 46.0859492 ], + [ 7.3712075, 46.0860445 ], + [ 7.371386, 46.0861061 ], + [ 7.3716129, 46.0861732 ], + [ 7.3717995, 46.0862178 ], + [ 7.3719215, 46.0862852 ], + [ 7.3720757, 46.0863694 ], + [ 7.3721815, 46.0864085 ], + [ 7.3723276, 46.0864871 ], + [ 7.3724737, 46.086605 ], + [ 7.3726279, 46.0867117 ], + [ 7.3727418, 46.0867509 ], + [ 7.3729122, 46.0868125 ], + [ 7.3731641, 46.0869584 ], + [ 7.3735453, 46.0871323 ], + [ 7.3738538, 46.0872218 ], + [ 7.3741942, 46.0871028 ], + [ 7.3744771, 46.0870008 ], + [ 7.3747681, 46.0868876 ], + [ 7.3750599, 46.0867631 ], + [ 7.3753025, 46.0866499 ], + [ 7.3755611, 46.0865479 ], + [ 7.375925, 46.0863557 ], + [ 7.3762969, 46.0861522 ], + [ 7.3763857999999995, 46.0860957 ], + [ 7.3766283999999995, 46.0859319 ], + [ 7.3769195, 46.0857454 ], + [ 7.3772268, 46.0855194 ], + [ 7.3791001, 46.0858703 ], + [ 7.3794571, 46.0859483 ], + [ 7.3798061, 46.0860039 ], + [ 7.3801463, 46.0860088 ], + [ 7.3803653, 46.0859858 ], + [ 7.3806488, 46.0859909 ], + [ 7.380892, 46.0860016 ], + [ 7.3811433, 46.0860631 ], + [ 7.3813541, 46.0861133 ], + [ 7.3816304, 46.0861634 ], + [ 7.3819139, 46.0862135 ], + [ 7.3821894, 46.086241 ], + [ 7.3824818, 46.0863023 ], + [ 7.3827573, 46.0863299 ], + [ 7.3829843, 46.0863632 ], + [ 7.3832194, 46.0863908 ], + [ 7.3834545, 46.0864073 ], + [ 7.383827, 46.0863839 ], + [ 7.3841842, 46.0863494 ], + [ 7.3846133, 46.0862808 ], + [ 7.3850343, 46.0862349 ], + [ 7.3852614, 46.0861949 ], + [ 7.3855119, 46.0861324 ], + [ 7.3857875, 46.0861093 ], + [ 7.3860226, 46.0861031 ], + [ 7.3862415, 46.0861027 ], + [ 7.3865169999999996, 46.0861246 ], + [ 7.3868249, 46.0861464 ], + [ 7.3871739, 46.0861795 ], + [ 7.3874009, 46.0862015 ], + [ 7.3876521, 46.0862235 ], + [ 7.3879357, 46.086251 ], + [ 7.3881305, 46.0862167 ], + [ 7.3883406, 46.0861826 ], + [ 7.3885596, 46.0861257 ], + [ 7.3887778, 46.0860633 ], + [ 7.3890049, 46.0860008 ], + [ 7.3891989, 46.0859103 ], + [ 7.3895140999999995, 46.0857688 ], + [ 7.3898059, 46.0856781 ], + [ 7.3900968, 46.0855872 ], + [ 7.3904209, 46.0855246 ], + [ 7.3908015, 46.0854618 ], + [ 7.391296, 46.0854382 ], + [ 7.392625, 46.0855534 ], + [ 7.3926675, 46.0859758 ], + [ 7.3926358, 46.0861111 ], + [ 7.3925961000000004, 46.086297 ], + [ 7.3926136, 46.0866293 ], + [ 7.3925503, 46.0869786 ], + [ 7.3925274, 46.0873278 ], + [ 7.3924795, 46.0874912 ], + [ 7.3924237, 46.0876322 ], + [ 7.3923347, 46.0877223 ], + [ 7.3922546, 46.0878297 ], + [ 7.3922141, 46.0879423 ], + [ 7.3922472, 46.0880268 ], + [ 7.3922802, 46.0881394 ], + [ 7.3923125, 46.0882406 ], + [ 7.3922647, 46.0883308 ], + [ 7.3922081, 46.0883535 ], + [ 7.3920376, 46.0884215 ], + [ 7.3918275, 46.0884727 ], + [ 7.3916004, 46.0885238 ], + [ 7.3914637, 46.088648 ], + [ 7.3913989, 46.088789 ], + [ 7.3913519, 46.0889862 ], + [ 7.3913445, 46.089189 ], + [ 7.3912312, 46.089347 ], + [ 7.3911187, 46.0895162 ], + [ 7.3909812, 46.089646 ], + [ 7.3908365, 46.0897702 ], + [ 7.3905771, 46.089844 ], + [ 7.390375, 46.0899177 ], + [ 7.3902375, 46.0900306 ], + [ 7.3901162, 46.0901661 ], + [ 7.3900118, 46.0902958 ], + [ 7.3899478, 46.0904818 ], + [ 7.3898831, 46.0906341 ], + [ 7.3898999, 46.0907523 ], + [ 7.389836, 46.090882 ], + [ 7.3897316, 46.0910512 ], + [ 7.3895941, 46.0912204 ], + [ 7.3895624, 46.0913725 ], + [ 7.3896197, 46.0915133 ], + [ 7.389693, 46.0916652 ], + [ 7.3897921, 46.0920254 ], + [ 7.3897847, 46.0921999 ], + [ 7.3897046, 46.0923184 ], + [ 7.3895913, 46.0924594 ], + [ 7.3895031, 46.0925948 ], + [ 7.3893656, 46.0927416 ], + [ 7.3892847, 46.0928601 ], + [ 7.3892369, 46.0929784 ], + [ 7.3892375999999995, 46.0931304 ], + [ 7.3892059, 46.0932657 ], + [ 7.3891493, 46.0933728 ], + [ 7.3891345, 46.0936094 ], + [ 7.3891351, 46.0938346 ], + [ 7.3891843, 46.0940205 ], + [ 7.38921, 46.0941781 ], + [ 7.3891621, 46.0943922 ], + [ 7.3890811, 46.0945557 ], + [ 7.3889202, 46.0947193 ], + [ 7.3887423, 46.0948268 ], + [ 7.3885806, 46.0949453 ], + [ 7.388654, 46.0950185 ], + [ 7.388751, 46.0950521 ], + [ 7.388776, 46.0951083 ], + [ 7.3887598, 46.0951647 ], + [ 7.3888009, 46.0952097 ], + [ 7.3888736, 46.0952377 ], + [ 7.3890927, 46.0952146 ], + [ 7.3892382, 46.0951298 ], + [ 7.3893595, 46.0950451 ], + [ 7.3895123, 46.0949039 ], + [ 7.3896822, 46.094774 ], + [ 7.3899004999999995, 46.0946609 ], + [ 7.3900468, 46.0946324 ], + [ 7.3902084, 46.094649 ], + [ 7.3903303, 46.0946993 ], + [ 7.3904361, 46.0948118 ], + [ 7.3905095, 46.0949355 ], + [ 7.390583, 46.0950142 ], + [ 7.3906476, 46.0950254 ], + [ 7.3907616, 46.0950307 ], + [ 7.3908828, 46.0950079 ], + [ 7.3910291, 46.0950245 ], + [ 7.3911591, 46.0950805 ], + [ 7.3912642, 46.0950803 ], + [ 7.3913612, 46.0950294 ], + [ 7.3915229, 46.0949501 ], + [ 7.3916441, 46.0949048 ], + [ 7.3917823, 46.0949326 ], + [ 7.3919608, 46.0950168 ], + [ 7.3920343, 46.0951124 ], + [ 7.3919291, 46.0952139 ], + [ 7.3917681, 46.0954227 ], + [ 7.39168, 46.0955411 ], + [ 7.3915506, 46.0956203 ], + [ 7.3914043, 46.0956375 ], + [ 7.3912588, 46.0956828 ], + [ 7.3911375, 46.0957789 ], + [ 7.3910735, 46.0959143 ], + [ 7.3909926, 46.0960383 ], + [ 7.3908552, 46.0961343 ], + [ 7.390969, 46.0962355 ], + [ 7.3913747, 46.0962345 ], + [ 7.3912946, 46.096398 ], + [ 7.3912056, 46.0965053 ], + [ 7.3912055, 46.0965785 ], + [ 7.3912224, 46.0966572 ], + [ 7.3912223, 46.0967361 ], + [ 7.3912069, 46.0968545 ], + [ 7.3912642, 46.0969106 ], + [ 7.3913288, 46.0969838 ], + [ 7.3913457, 46.0970907 ], + [ 7.3913625, 46.0972258 ], + [ 7.3913632, 46.097361 ], + [ 7.391372, 46.0975018 ], + [ 7.3912991, 46.0976315 ], + [ 7.3912271, 46.0977162 ], + [ 7.3911301, 46.0978177 ], + [ 7.3909926, 46.097925 ], + [ 7.3908551, 46.0980211 ], + [ 7.3907419, 46.0981226 ], + [ 7.3905405, 46.0982809 ], + [ 7.3903465, 46.0983714 ], + [ 7.3901517, 46.0984338 ], + [ 7.3899172, 46.0985413 ], + [ 7.3897393, 46.0986431 ], + [ 7.3896584, 46.0987559 ], + [ 7.3896429, 46.0988517 ], + [ 7.3896598000000004, 46.0989418 ], + [ 7.3896435, 46.0990601 ], + [ 7.3895715, 46.099201 ], + [ 7.3894912999999995, 46.099342 ], + [ 7.3894023, 46.099483 ], + [ 7.3892567, 46.0996128 ], + [ 7.3890715, 46.0997879 ], + [ 7.3889104, 46.1000924 ], + [ 7.3887897, 46.1003517 ], + [ 7.3886051, 46.1006732 ], + [ 7.3929966, 46.1020489 ], + [ 7.3934757, 46.1022054 ], + [ 7.3938732, 46.102351 ], + [ 7.3942142, 46.102491 ], + [ 7.3944986, 46.1026143 ], + [ 7.3947999, 46.1027994 ], + [ 7.3951335, 46.1030634 ], + [ 7.3953936, 46.1032543 ], + [ 7.3956449, 46.1033381 ], + [ 7.3956706, 46.1035184 ], + [ 7.3957277999999995, 46.1036816 ], + [ 7.3957851, 46.103794 ], + [ 7.3957851, 46.1038672 ], + [ 7.3957292, 46.1040194 ], + [ 7.3957136, 46.1042617 ], + [ 7.3956908, 46.1045828 ], + [ 7.3956046, 46.1051686 ], + [ 7.3956693, 46.105146 ], + [ 7.3957178, 46.1050783 ], + [ 7.3957737, 46.1049937 ], + [ 7.3958788, 46.1049484 ], + [ 7.3960655, 46.1049198 ], + [ 7.3962603, 46.1049025 ], + [ 7.3965028, 46.1048569 ], + [ 7.396608, 46.1047665 ], + [ 7.3967131, 46.1046536 ], + [ 7.3968183, 46.1045914 ], + [ 7.3969395, 46.1045518 ], + [ 7.397085, 46.1045177 ], + [ 7.3973041, 46.1044608 ], + [ 7.3974577, 46.1043928 ], + [ 7.3977091, 46.1043641 ], + [ 7.3978789, 46.1043187 ], + [ 7.3980164, 46.1042171 ], + [ 7.3981774, 46.1040308 ], + [ 7.3982987, 46.1039123 ], + [ 7.3984927, 46.1038611 ], + [ 7.3987684, 46.1038041 ], + [ 7.3990602, 46.1037415 ], + [ 7.3993027, 46.1036283 ], + [ 7.3994079, 46.1035097 ], + [ 7.3995285, 46.1033181 ], + [ 7.3997373, 46.1029514 ], + [ 7.399955, 46.1025511 ], + [ 7.4000836, 46.1023254 ], + [ 7.4000587, 46.1021736 ], + [ 7.4000248, 46.1020159 ], + [ 7.3999999, 46.10183 ], + [ 7.3999589, 46.1016049 ], + [ 7.3999331999999995, 46.1013459 ], + [ 7.3998833, 46.1010588 ], + [ 7.3999061, 46.1007996 ], + [ 7.3999135, 46.100625 ], + [ 7.3998885, 46.100473 ], + [ 7.3997828, 46.1003324 ], + [ 7.3996851, 46.1002256 ], + [ 7.399652, 46.1001131 ], + [ 7.3996513, 46.0999272 ], + [ 7.3996742, 46.09964 ], + [ 7.3997624, 46.0994821 ], + [ 7.3998756, 46.0993467 ], + [ 7.4000204, 46.0992055 ], + [ 7.4002628999999995, 46.0990585 ], + [ 7.4007488, 46.0987983 ], + [ 7.400837, 46.0986516 ], + [ 7.4009414, 46.0984994 ], + [ 7.4010062, 46.0983246 ], + [ 7.401054, 46.0981274 ], + [ 7.4010606, 46.0979191 ], + [ 7.4011077, 46.0975922 ], + [ 7.4010997, 46.0974965 ], + [ 7.4010909, 46.0973444 ], + [ 7.4010579, 46.0971925 ], + [ 7.4009844, 46.0970969 ], + [ 7.4008786, 46.0970295 ], + [ 7.4007485, 46.0969172 ], + [ 7.4007155000000004, 46.0968215 ], + [ 7.400764, 46.0967313 ], + [ 7.4008279, 46.0966298 ], + [ 7.4008765, 46.0965565 ], + [ 7.4009161, 46.0964606 ], + [ 7.4009324, 46.0963593 ], + [ 7.4009478, 46.0962296 ], + [ 7.4009964, 46.096145 ], + [ 7.4010926999999995, 46.0959477 ], + [ 7.4011809, 46.0957954 ], + [ 7.4013418, 46.0955697 ], + [ 7.4014301, 46.0953724 ], + [ 7.401511, 46.0952089 ], + [ 7.401583, 46.0950342 ], + [ 7.4016389, 46.094927 ], + [ 7.4017278, 46.0948423 ], + [ 7.4018006, 46.094769 ], + [ 7.4018564, 46.094645 ], + [ 7.4019123, 46.0944589 ], + [ 7.4020572, 46.0941713 ], + [ 7.4020645, 46.0940587 ], + [ 7.4020646, 46.0939235 ], + [ 7.4020882, 46.0937545 ], + [ 7.4021279, 46.0935742 ], + [ 7.4020867, 46.0934785 ], + [ 7.4019398, 46.0933268 ], + [ 7.4018421, 46.0931975 ], + [ 7.4017524, 46.0930738 ], + [ 7.4017032, 46.0929556 ], + [ 7.4016783, 46.0927867 ], + [ 7.4016203, 46.0925052 ], + [ 7.4015785, 46.0921787 ], + [ 7.4015036, 46.091841 ], + [ 7.4014617, 46.0915707 ], + [ 7.4014523, 46.0912384 ], + [ 7.4014589, 46.0909343 ], + [ 7.4014333, 46.090619 ], + [ 7.4014076, 46.0903544 ], + [ 7.4013908, 46.0901122 ], + [ 7.4014298, 46.0898137 ], + [ 7.4015409, 46.0892615 ], + [ 7.401613, 46.0890304 ], + [ 7.4016196, 46.0888501 ], + [ 7.4016108, 46.0886529 ], + [ 7.4016513, 46.0885515 ], + [ 7.4017314, 46.0884106 ], + [ 7.4017791, 46.0882865 ], + [ 7.4017542, 46.0881233 ], + [ 7.4017939, 46.0879147 ], + [ 7.4017697, 46.0878416 ], + [ 7.4017205, 46.0877178 ], + [ 7.4016713, 46.0876279 ], + [ 7.4016625, 46.0875152 ], + [ 7.4016699, 46.0873182 ], + [ 7.4016611, 46.0871491 ], + [ 7.4017008, 46.086952 ], + [ 7.4017567, 46.0868392 ], + [ 7.4018295, 46.0866981 ], + [ 7.4019338, 46.0865966 ], + [ 7.4020308, 46.086495 ], + [ 7.4021109, 46.0863258 ], + [ 7.4021918, 46.0861905 ], + [ 7.4022234000000005, 46.0860271 ], + [ 7.4022147, 46.0858637 ], + [ 7.4022543, 46.0857285 ], + [ 7.402383, 46.0854578 ], + [ 7.4025197, 46.0852097 ], + [ 7.4027695, 46.0849613 ], + [ 7.4031333, 46.0847577 ], + [ 7.4033515, 46.084684 ], + [ 7.40353, 46.0846442 ], + [ 7.4036998, 46.0845706 ], + [ 7.4037968, 46.0844971 ], + [ 7.4038372, 46.0844182 ], + [ 7.4038446, 46.0842829 ], + [ 7.4038439, 46.0841534 ], + [ 7.4039078, 46.0839955 ], + [ 7.4040048, 46.0838771 ], + [ 7.4040202, 46.0837644 ], + [ 7.4039064, 46.08359 ], + [ 7.4038322, 46.0833762 ], + [ 7.4036449, 46.0831626 ], + [ 7.4035957, 46.0830558 ], + [ 7.4036119, 46.0829768 ], + [ 7.4037008, 46.0829204 ], + [ 7.4038382, 46.0829144 ], + [ 7.4038125, 46.0826891 ], + [ 7.4037464, 46.0824134 ], + [ 7.403098, 46.0805169 ], + [ 7.4050177999999995, 46.0803434 ], + [ 7.4052529, 46.0803203 ], + [ 7.4054387, 46.0803143 ], + [ 7.4071087, 46.080299 ], + [ 7.4071079, 46.0802201 ], + [ 7.4071322, 46.0801187 ], + [ 7.4072453, 46.0800734 ], + [ 7.4071718, 46.0800116 ], + [ 7.4070903, 46.0799273 ], + [ 7.4070249, 46.0798036 ], + [ 7.4070007, 46.0797586 ], + [ 7.4069999, 46.0796966 ], + [ 7.4070808, 46.0796514 ], + [ 7.4073563, 46.0795662 ], + [ 7.4073879, 46.0794535 ], + [ 7.4074849, 46.0792674 ], + [ 7.4075973, 46.0791095 ], + [ 7.4077016, 46.0789403 ], + [ 7.4077987, 46.0788217 ], + [ 7.4078221, 46.0787428 ], + [ 7.4077575, 46.078698 ], + [ 7.4077737, 46.0786191 ], + [ 7.4078465, 46.0785794 ], + [ 7.4078788, 46.0786132 ], + [ 7.407911, 46.0786806 ], + [ 7.4079199, 46.0787313 ], + [ 7.4078714, 46.0788215 ], + [ 7.4078479, 46.0789174 ], + [ 7.4079044, 46.0789961 ], + [ 7.4080183, 46.0790296 ], + [ 7.4081233, 46.0790069 ], + [ 7.4082453, 46.0790122 ], + [ 7.4083834, 46.0791019 ], + [ 7.4084892, 46.0791805 ], + [ 7.4085788, 46.0792648 ], + [ 7.4086603, 46.0794223 ], + [ 7.4089116, 46.0794949 ], + [ 7.4087903, 46.0795797 ], + [ 7.4089211, 46.0797765 ], + [ 7.4090108, 46.0798101 ], + [ 7.4091246, 46.0798661 ], + [ 7.4092547, 46.0799446 ], + [ 7.4094008, 46.0800795 ], + [ 7.4097814, 46.0800448 ], + [ 7.4098791, 46.0801628 ], + [ 7.4099283, 46.0802528 ], + [ 7.4100099, 46.0803145 ], + [ 7.4101399, 46.0803649 ], + [ 7.4102861, 46.0804266 ], + [ 7.4104565000000004, 46.0805218 ], + [ 7.4107321, 46.0804874 ], + [ 7.4108209, 46.080521 ], + [ 7.4110156, 46.0805206 ], + [ 7.4112095, 46.0804862 ], + [ 7.4112911, 46.0805255 ], + [ 7.411308, 46.0806324 ], + [ 7.4113161, 46.080745 ], + [ 7.4113087, 46.0808464 ], + [ 7.4113984, 46.0809419 ], + [ 7.4115284, 46.0809811 ], + [ 7.4116665, 46.0810258 ], + [ 7.4117643, 46.0811157 ], + [ 7.4118531, 46.0812057 ], + [ 7.411975, 46.0812954 ], + [ 7.4120566, 46.0813121 ], + [ 7.4120897, 46.0814359 ], + [ 7.4121389, 46.0815371 ], + [ 7.4122932, 46.08161 ], + [ 7.4123424, 46.0817281 ], + [ 7.4124321, 46.0818181 ], + [ 7.412626, 46.0818063 ], + [ 7.412975, 46.0818957 ], + [ 7.413, 46.0819744 ], + [ 7.4130807, 46.0820361 ], + [ 7.4131462, 46.0821148 ], + [ 7.4131873, 46.0821767 ], + [ 7.4132285, 46.0823005 ], + [ 7.4133093, 46.0823228 ], + [ 7.4133908, 46.0823733 ], + [ 7.4134797, 46.082435 ], + [ 7.4135532, 46.0825081 ], + [ 7.4135701, 46.0826038 ], + [ 7.413587, 46.082722 ], + [ 7.4136274, 46.0827951 ], + [ 7.4137413, 46.0828737 ], + [ 7.4138713, 46.082986 ], + [ 7.4139609, 46.0830309 ], + [ 7.4140183, 46.083087 ], + [ 7.4140263, 46.0831659 ], + [ 7.4140675, 46.0832446 ], + [ 7.4140917, 46.0833234 ], + [ 7.4140036, 46.0834081 ], + [ 7.4139066, 46.0835209 ], + [ 7.41385, 46.0836112 ], + [ 7.4139154, 46.0837068 ], + [ 7.4140858, 46.0837796 ], + [ 7.4142563, 46.0837735 ], + [ 7.4141689, 46.0841793 ], + [ 7.4144995, 46.0838686 ], + [ 7.4147258, 46.0837329 ], + [ 7.4148147, 46.083637 ], + [ 7.4148059, 46.0834906 ], + [ 7.4148132, 46.083299 ], + [ 7.4148602, 46.0829948 ], + [ 7.4151923, 46.0828983 ], + [ 7.4152651, 46.0828474 ], + [ 7.4154348, 46.0827906 ], + [ 7.4156376, 46.0827564 ], + [ 7.4158719, 46.0827165 ], + [ 7.4160262, 46.0827047 ], + [ 7.4161717, 46.0826311 ], + [ 7.4164141, 46.082501 ], + [ 7.416705, 46.0823708 ], + [ 7.4169321, 46.082297 ], + [ 7.416949, 46.0824433 ], + [ 7.4170459, 46.0824881 ], + [ 7.4170548, 46.0826572 ], + [ 7.4171768, 46.0826512 ], + [ 7.4173553, 46.0827352 ], + [ 7.4174288, 46.0828139 ], + [ 7.4174942, 46.0828981 ], + [ 7.4175669, 46.0829825 ], + [ 7.4176727, 46.0830611 ], + [ 7.4177704, 46.0831397 ], + [ 7.4178358, 46.0831902 ], + [ 7.4179821, 46.0832462 ], + [ 7.4181032, 46.0832909 ], + [ 7.4182664, 46.0833806 ], + [ 7.4184611, 46.0834759 ], + [ 7.4185507, 46.0835715 ], + [ 7.4186566, 46.0836275 ], + [ 7.4187704, 46.0837398 ], + [ 7.4188997, 46.0836888 ], + [ 7.4190452, 46.0836265 ], + [ 7.4192318, 46.083581 ], + [ 7.4193854, 46.0835806 ], + [ 7.4194831, 46.0836704 ], + [ 7.4195889, 46.0838223 ], + [ 7.4192899, 46.0839525 ], + [ 7.419129, 46.0841444 ], + [ 7.4192105999999995, 46.08424 ], + [ 7.4192841, 46.0843919 ], + [ 7.4193818, 46.0845155 ], + [ 7.4195118, 46.0845828 ], + [ 7.4196653999999995, 46.0845485 ], + [ 7.4198197, 46.0844974 ], + [ 7.419949, 46.084486 ], + [ 7.4200467, 46.0845533 ], + [ 7.420201, 46.0846487 ], + [ 7.4204281, 46.0846987 ], + [ 7.4207852, 46.0847317 ], + [ 7.4208894, 46.0846131 ], + [ 7.4210834, 46.084438 ], + [ 7.4213582, 46.0842403 ], + [ 7.4214625, 46.0840823 ], + [ 7.4215506, 46.0839187 ], + [ 7.4216314, 46.0838116 ], + [ 7.4217526, 46.0837324 ], + [ 7.4219304, 46.0836475 ], + [ 7.4221817, 46.0835623 ], + [ 7.4223991, 46.0833984 ], + [ 7.4225123, 46.083263 ], + [ 7.4226165, 46.0831163 ], + [ 7.4227054, 46.0829866 ], + [ 7.4228994, 46.0828339 ], + [ 7.4229795, 46.0826085 ], + [ 7.4232842, 46.0820671 ], + [ 7.4233489, 46.0819205 ], + [ 7.4233077, 46.0818417 ], + [ 7.4232908, 46.0816952 ], + [ 7.4233304, 46.0815488 ], + [ 7.4230953, 46.0815888 ], + [ 7.4229991, 46.0816622 ], + [ 7.4228609, 46.0817189 ], + [ 7.422667, 46.0818096 ], + [ 7.422465, 46.0818777 ], + [ 7.4222388, 46.0819514 ], + [ 7.4220279, 46.081997 ], + [ 7.4218501, 46.0820875 ], + [ 7.4218251, 46.0819243 ], + [ 7.421767, 46.081733 ], + [ 7.4218074, 46.0815921 ], + [ 7.4218794, 46.0813891 ], + [ 7.4219109, 46.0812708 ], + [ 7.4219183, 46.0811637 ], + [ 7.421894, 46.081068 ], + [ 7.4218117, 46.0809275 ], + [ 7.4219086, 46.0808822 ], + [ 7.4219571, 46.0808201 ], + [ 7.4220137, 46.0807579 ], + [ 7.4220695, 46.0806114 ], + [ 7.4220938, 46.0804706 ], + [ 7.4220849, 46.0803523 ], + [ 7.4220195, 46.0802286 ], + [ 7.421946, 46.0801105 ], + [ 7.4219049, 46.080043 ], + [ 7.4219937, 46.080009 ], + [ 7.4221157, 46.0799974 ], + [ 7.4222208, 46.0799915 ], + [ 7.4222693, 46.0799351 ], + [ 7.4222854, 46.0798956 ], + [ 7.4222766, 46.0798337 ], + [ 7.4223008, 46.0797716 ], + [ 7.4224059, 46.0797376 ], + [ 7.4225682, 46.0797429 ], + [ 7.4228276, 46.0797309 ], + [ 7.4225263, 46.0794388 ], + [ 7.4223389, 46.0792816 ], + [ 7.4220627, 46.0791189 ], + [ 7.4221758, 46.0791131 ], + [ 7.4223301, 46.0790901 ], + [ 7.4224755, 46.0790673 ], + [ 7.422629, 46.0790049 ], + [ 7.4227502, 46.0789764 ], + [ 7.4229038, 46.0788634 ], + [ 7.4229846, 46.0787281 ], + [ 7.4231462, 46.0785924 ], + [ 7.4232424, 46.0784231 ], + [ 7.4233467, 46.0782089 ], + [ 7.4235721, 46.0779887 ], + [ 7.4239754, 46.0775765 ], + [ 7.4241612, 46.0774972 ], + [ 7.4243075, 46.0774405 ], + [ 7.4244529, 46.0774007 ], + [ 7.4246145, 46.0773947 ], + [ 7.4247284, 46.0773607 ], + [ 7.4248003, 46.0772815 ], + [ 7.4248407, 46.077152 ], + [ 7.4248973, 46.0771012 ], + [ 7.4249862, 46.0770671 ], + [ 7.4250993, 46.0770443 ], + [ 7.4251962, 46.0770273 ], + [ 7.4253013, 46.0769593 ], + [ 7.4254305, 46.0768688 ], + [ 7.4254879, 46.0768912 ], + [ 7.4255767, 46.0769643 ], + [ 7.4256503, 46.0769697 ], + [ 7.4257391, 46.0769301 ], + [ 7.4258272, 46.0767777 ], + [ 7.4258257, 46.0764962 ], + [ 7.425833, 46.0763553 ], + [ 7.425808, 46.0761639 ], + [ 7.4258315, 46.075978 ], + [ 7.4257661, 46.0758035 ], + [ 7.4257006, 46.0756629 ], + [ 7.4256345, 46.075466 ], + [ 7.4255448, 46.0753029 ], + [ 7.4255279, 46.0751621 ], + [ 7.4255748, 46.0749367 ], + [ 7.425566, 46.0747396 ], + [ 7.4255248, 46.0745764 ], + [ 7.4254352, 46.0744415 ], + [ 7.4254344, 46.074357 ], + [ 7.4254829, 46.0742442 ], + [ 7.4255386, 46.0741484 ], + [ 7.4256114, 46.0740073 ], + [ 7.4256502, 46.0737313 ], + [ 7.4256899, 46.0735171 ], + [ 7.4257295, 46.0733143 ], + [ 7.4257045, 46.0732074 ], + [ 7.4256229, 46.0730837 ], + [ 7.4255333, 46.0729994 ], + [ 7.4254113, 46.0729377 ], + [ 7.4252893, 46.0728761 ], + [ 7.4252562, 46.0727691 ], + [ 7.4252393, 46.0726341 ], + [ 7.4252224, 46.0724594 ], + [ 7.4251328, 46.0723245 ], + [ 7.425027, 46.0722122 ], + [ 7.4249777, 46.0720434 ], + [ 7.4250174, 46.0718518 ], + [ 7.4251693, 46.071536 ], + [ 7.4254513, 46.0711861 ], + [ 7.4256848, 46.0708532 ], + [ 7.4258852, 46.0705091 ], + [ 7.4260792, 46.0702834 ], + [ 7.4263134, 46.0701645 ], + [ 7.4264257, 46.0700347 ], + [ 7.4266116, 46.0698202 ], + [ 7.4268216, 46.0697464 ], + [ 7.4269832000000005, 46.0696615 ], + [ 7.4270800999999995, 46.069543 ], + [ 7.4271519999999995, 46.0694583 ], + [ 7.4272329, 46.0692892 ], + [ 7.4273775, 46.0691199 ], + [ 7.4275471, 46.0689561 ], + [ 7.427611, 46.0687813 ], + [ 7.4276102, 46.068618 ], + [ 7.4274955, 46.0684663 ], + [ 7.4274859, 46.0681284 ], + [ 7.427444, 46.0677567 ], + [ 7.4274667, 46.0675483 ], + [ 7.4273762, 46.0672895 ], + [ 7.4273505, 46.0668953 ], + [ 7.4276582, 46.0668888 ], + [ 7.4279336, 46.0668938 ], + [ 7.4282091, 46.066865 ], + [ 7.4285411, 46.0668302 ], + [ 7.4287995, 46.0667508 ], + [ 7.4290588, 46.0666994 ], + [ 7.4293011, 46.0665975 ], + [ 7.4295928, 46.0664727 ], + [ 7.4299482, 46.0663366 ], + [ 7.4301824, 46.0662009 ], + [ 7.4306678999999995, 46.0661039 ], + [ 7.4309675, 46.0660017 ], + [ 7.4313318, 46.0659219 ], + [ 7.4319068999999995, 46.0658697 ], + [ 7.4338422, 46.0656901 ], + [ 7.4338713, 46.0651099 ], + [ 7.4338778, 46.0647381 ], + [ 7.4338916, 46.0643214 ], + [ 7.4339215, 46.0638707 ], + [ 7.4339361, 46.0635102 ], + [ 7.4339272, 46.0632624 ], + [ 7.4339579, 46.0629638 ], + [ 7.4339571, 46.0627837 ], + [ 7.4338828, 46.0626318 ], + [ 7.433874, 46.0624684 ], + [ 7.4338813, 46.0622488 ], + [ 7.4339128, 46.0620178 ], + [ 7.43392, 46.0618375 ], + [ 7.4338781, 46.0616237 ], + [ 7.4338207, 46.0614548 ], + [ 7.4338111, 46.0612239 ], + [ 7.4338749, 46.0610154 ], + [ 7.4339064, 46.0608182 ], + [ 7.4338652, 46.0606494 ], + [ 7.4338071, 46.0604636 ], + [ 7.4337417, 46.0602611 ], + [ 7.4336997, 46.0600415 ], + [ 7.4337313, 46.0598274 ], + [ 7.4337943, 46.0595175 ], + [ 7.433825, 46.0591063 ], + [ 7.4338807, 46.0590103 ], + [ 7.4338638, 46.0588865 ], + [ 7.4337661, 46.0587291 ], + [ 7.4336845, 46.0585997 ], + [ 7.4335618, 46.0584198 ], + [ 7.4334964, 46.0582398 ], + [ 7.4334383, 46.0580147 ], + [ 7.4334132, 46.0578233 ], + [ 7.433347, 46.0575643 ], + [ 7.4332162, 46.0573057 ], + [ 7.4331097, 46.0570412 ], + [ 7.4330604, 46.0569062 ], + [ 7.4330758, 46.0568329 ], + [ 7.4331808, 46.05672 ], + [ 7.4332938, 46.0566127 ], + [ 7.4334957, 46.0565389 ], + [ 7.4337138, 46.0564088 ], + [ 7.4337857, 46.0562453 ], + [ 7.4337494, 46.0554232 ], + [ 7.4335863, 46.0552771 ], + [ 7.4334402, 46.0551198 ], + [ 7.4331955, 46.0548839 ], + [ 7.433009, 46.0547155 ], + [ 7.4329839, 46.054603 ], + [ 7.4330397, 46.0544732 ], + [ 7.4331689, 46.054287 ], + [ 7.4332246, 46.054163 ], + [ 7.4331996, 46.0540166 ], + [ 7.4331423, 46.0538535 ], + [ 7.4331415, 46.0536788 ], + [ 7.4332045, 46.0534646 ], + [ 7.4333572, 46.0531319 ], + [ 7.4334775, 46.0528557 ], + [ 7.4334759, 46.0526191 ], + [ 7.4333863000000004, 46.0524673 ], + [ 7.4332232, 46.0522819 ], + [ 7.4329955, 46.0521022 ], + [ 7.4327436, 46.0519171 ], + [ 7.4325894, 46.0518161 ], + [ 7.4324344, 46.0516531 ], + [ 7.4322801, 46.0515297 ], + [ 7.4320605, 46.0513725 ], + [ 7.4318571, 46.051221 ], + [ 7.431694, 46.051075 ], + [ 7.431547, 46.0508501 ], + [ 7.4313597, 46.0505971 ], + [ 7.4310909, 46.0502937 ], + [ 7.4308705, 46.0499845 ], + [ 7.4305774, 46.049698 ], + [ 7.4302601, 46.0493778 ], + [ 7.4301455, 46.0491473 ], + [ 7.4301294, 46.0490459 ], + [ 7.4301528, 46.048905 ], + [ 7.4302005, 46.0487529 ], + [ 7.4302401, 46.0485669 ], + [ 7.430207, 46.0484205 ], + [ 7.430052, 46.0482294 ], + [ 7.4300351, 46.0480718 ], + [ 7.4300827, 46.0479309 ], + [ 7.4301312, 46.0478125 ], + [ 7.4302112, 46.0476771 ], + [ 7.4303484, 46.0475304 ], + [ 7.4304122, 46.0474288 ], + [ 7.4304123, 46.0473105 ], + [ 7.4303469, 46.0472206 ], + [ 7.4302411, 46.0471476 ], + [ 7.4300869, 46.0470298 ], + [ 7.4299077, 46.0469176 ], + [ 7.4296881, 46.0467661 ], + [ 7.4294612, 46.0466428 ], + [ 7.4292013, 46.0465082 ], + [ 7.4289575, 46.0463343 ], + [ 7.4287217, 46.0461716 ], + [ 7.4285756, 46.0461269 ], + [ 7.4284698, 46.0460709 ], + [ 7.4283722, 46.0459416 ], + [ 7.4282341, 46.0457673 ], + [ 7.4281033, 46.0456438 ], + [ 7.4279976, 46.0455089 ], + [ 7.4278515, 46.0453797 ], + [ 7.4277692, 46.0452222 ], + [ 7.4276553, 46.0450873 ], + [ 7.4275173, 46.0450088 ], + [ 7.4273543, 46.0448403 ], + [ 7.4272316, 46.0445703 ], + [ 7.427142, 46.0444354 ], + [ 7.4271251, 46.0442439 ], + [ 7.4271235, 46.0440187 ], + [ 7.4271793, 46.0438439 ], + [ 7.4272108, 46.0436805 ], + [ 7.4272431, 46.043534 ], + [ 7.4271931, 46.0433821 ], + [ 7.4271196, 46.0432189 ], + [ 7.4270858, 46.0429881 ], + [ 7.4270446, 46.0428249 ], + [ 7.4270681, 46.0426615 ], + [ 7.4270835, 46.0425094 ], + [ 7.4270585, 46.0423236 ], + [ 7.4270173, 46.0421209 ], + [ 7.4269431, 46.0419634 ], + [ 7.4268535, 46.0418173 ], + [ 7.4267639, 46.0416429 ], + [ 7.4266897, 46.0414854 ], + [ 7.4266163, 46.0412884 ], + [ 7.4265824, 46.041097 ], + [ 7.4265655, 46.0409056 ], + [ 7.4265728, 46.0407422 ], + [ 7.4266616, 46.040635 ], + [ 7.4267981, 46.0404657 ], + [ 7.4269031, 46.0403303 ], + [ 7.4270315, 46.0401722 ], + [ 7.4271284, 46.0400143 ], + [ 7.4272245, 46.0398282 ], + [ 7.4273448, 46.0396702 ], + [ 7.4275548, 46.0394838 ], + [ 7.4277235, 46.03932 ], + [ 7.4279577, 46.0391674 ], + [ 7.4281515, 46.0390261 ], + [ 7.4283372, 46.0388623 ], + [ 7.4284898, 46.0386985 ], + [ 7.4286593, 46.038501 ], + [ 7.4289008, 46.0382075 ], + [ 7.4291987, 46.0379139 ], + [ 7.4295782, 46.0376256 ], + [ 7.4300941, 46.0371963 ], + [ 7.430304, 46.0370268 ], + [ 7.4304413, 46.0369419 ], + [ 7.4306189, 46.0368626 ], + [ 7.4307884, 46.0367946 ], + [ 7.4309176, 46.0367154 ], + [ 7.4310306, 46.0366194 ], + [ 7.4311994, 46.0364613 ], + [ 7.4314093, 46.0363311 ], + [ 7.4315788, 46.036235 ], + [ 7.4317491, 46.0361557 ], + [ 7.4319994, 46.0360874 ], + [ 7.4322174, 46.0360249 ], + [ 7.4326307, 46.0359562 ], + [ 7.4330109, 46.0358989 ], + [ 7.4335042, 46.0358244 ], + [ 7.433957, 46.0357444 ], + [ 7.4344503, 46.0355741 ], + [ 7.4351211, 46.0353808 ], + [ 7.4350396, 46.0352121 ], + [ 7.4349984, 46.0350827 ], + [ 7.4349565, 46.0348462 ], + [ 7.4350114, 46.0345194 ], + [ 7.4350833, 46.0341982 ], + [ 7.4351535, 46.0337869 ], + [ 7.435202, 46.0336347 ], + [ 7.4351923, 46.0334432 ], + [ 7.4351996, 46.0332517 ], + [ 7.4351665, 46.0330829 ], + [ 7.4351253, 46.0329197 ], + [ 7.4350349, 46.0327509 ], + [ 7.4349292, 46.0325767 ], + [ 7.4348711, 46.0323684 ], + [ 7.4348453, 46.0320869 ], + [ 7.4348203, 46.031856 ], + [ 7.4347864, 46.0316365 ], + [ 7.4347364, 46.0313212 ], + [ 7.434646, 46.0310229 ], + [ 7.4346452, 46.0308596 ], + [ 7.4346928, 46.0307187 ], + [ 7.4347405, 46.0305271 ], + [ 7.434755, 46.0302736 ], + [ 7.4347623, 46.0300764 ], + [ 7.4347373, 46.0298963 ], + [ 7.4346881, 46.0296993 ], + [ 7.4345815, 46.0294912 ], + [ 7.4344992, 46.0293112 ], + [ 7.4344096, 46.0290805 ], + [ 7.4343515, 46.0288948 ], + [ 7.434245, 46.0286923 ], + [ 7.4341151, 46.0285125 ], + [ 7.4340166, 46.0283157 ], + [ 7.4339424, 46.0280567 ], + [ 7.4338681, 46.0277922 ], + [ 7.4337778, 46.027556 ], + [ 7.4337043, 46.0273703 ], + [ 7.433614, 46.0271453 ], + [ 7.4334429, 46.0269204 ], + [ 7.4331741000000005, 46.0265325 ], + [ 7.4330595, 46.0263413 ], + [ 7.4329449, 46.0261783 ], + [ 7.4327989, 46.0260153 ], + [ 7.4325794, 46.0258301 ], + [ 7.4324414, 46.0257178 ], + [ 7.4322783, 46.0255718 ], + [ 7.4321403, 46.0254369 ], + [ 7.4320669, 46.0253245 ], + [ 7.4320338, 46.0252232 ], + [ 7.4320653, 46.0250711 ], + [ 7.4321049, 46.0248851 ], + [ 7.4321606, 46.024671 ], + [ 7.4322163, 46.0244906 ], + [ 7.4322874, 46.0242144 ], + [ 7.4323835, 46.023927 ], + [ 7.4324545, 46.0236396 ], + [ 7.4324852, 46.0232452 ], + [ 7.4325087, 46.0230142 ], + [ 7.4325563, 46.0228508 ], + [ 7.4325224, 46.0226087 ], + [ 7.4325378, 46.0223778 ], + [ 7.43252, 46.0221863 ], + [ 7.4325112, 46.0219498 ], + [ 7.4325185, 46.0217639 ], + [ 7.43255, 46.0216061 ], + [ 7.432508, 46.0213528 ], + [ 7.43245, 46.0210939 ], + [ 7.4323927, 46.0209026 ], + [ 7.4323023, 46.0207 ], + [ 7.4321635, 46.0204695 ], + [ 7.4320974, 46.0201937 ], + [ 7.4320232, 46.0199686 ], + [ 7.431982, 46.0197998 ], + [ 7.431949, 46.0196027 ], + [ 7.4319724, 46.0194618 ], + [ 7.4320031, 46.019214 ], + [ 7.4320757, 46.0190448 ], + [ 7.4321557, 46.0188757 ], + [ 7.4322759, 46.0186838 ], + [ 7.43238, 46.0184921 ], + [ 7.4325244999999995, 46.0182721 ], + [ 7.4325891, 46.0181029 ], + [ 7.4325875, 46.0178777 ], + [ 7.4324899, 46.017754 ], + [ 7.4323438, 46.0176812 ], + [ 7.4321494, 46.0176254 ], + [ 7.4319541000000005, 46.0174907 ], + [ 7.4318234, 46.0172433 ], + [ 7.4317411, 46.0169788 ], + [ 7.4317161, 46.0167254 ], + [ 7.4316984, 46.0164776 ], + [ 7.4317129, 46.0162241 ], + [ 7.4309746, 46.0158149 ], + [ 7.4306906, 46.0156467 ], + [ 7.4304792, 46.0155515 ], + [ 7.4302928, 46.0155182 ], + [ 7.4301072, 46.0154962 ], + [ 7.4298474, 46.0154461 ], + [ 7.4295883, 46.01543 ], + [ 7.4293858, 46.0154192 ], + [ 7.4291429, 46.0153297 ], + [ 7.4288185, 46.0152404 ], + [ 7.4284458, 46.0151231 ], + [ 7.4281537, 46.0150281 ], + [ 7.4278293, 46.0149501 ], + [ 7.4274815, 46.0148609 ], + [ 7.4272055, 46.0148109 ], + [ 7.4269546, 46.0147496 ], + [ 7.4266544, 46.0146434 ], + [ 7.4263946, 46.014537 ], + [ 7.4261025, 46.014397 ], + [ 7.4258516, 46.0142681 ], + [ 7.4255918, 46.0140999 ], + [ 7.425299, 46.0138978 ], + [ 7.4250803, 46.0137689 ], + [ 7.4249093, 46.0137073 ], + [ 7.4247229, 46.0136177 ], + [ 7.4244712, 46.0134663 ], + [ 7.4241711, 46.0132248 ], + [ 7.4237322, 46.0128768 ], + [ 7.4236015, 46.0127476 ], + [ 7.4233256, 46.0125962 ], + [ 7.4231069, 46.0124447 ], + [ 7.4228956, 46.0123382 ], + [ 7.4226196, 46.0122375 ], + [ 7.4221743, 46.0120697 ], + [ 7.4217442, 46.0119131 ], + [ 7.4214199, 46.0117675 ], + [ 7.4211359, 46.0116668 ], + [ 7.4207874, 46.0115832 ], + [ 7.4205042, 46.0115333 ], + [ 7.4202363, 46.0114213 ], + [ 7.41992, 46.0113151 ], + [ 7.419507, 46.0111753 ], + [ 7.4192391, 46.0110972 ], + [ 7.4190366, 46.0110301 ], + [ 7.4188825, 46.0109347 ], + [ 7.4187769, 46.0108167 ], + [ 7.4186785, 46.0106367 ], + [ 7.418597, 46.0104961 ], + [ 7.4182001, 46.0104577 ], + [ 7.4179168, 46.0104753 ], + [ 7.4176175, 46.0105098 ], + [ 7.4173269, 46.0106739 ], + [ 7.4174246, 46.0107187 ], + [ 7.4173519, 46.0107808 ], + [ 7.4171663, 46.0108489 ], + [ 7.4170291, 46.0109111 ], + [ 7.4168669, 46.0108665 ], + [ 7.4166475, 46.0107432 ], + [ 7.4164692, 46.0106253 ], + [ 7.4163305, 46.0104454 ], + [ 7.4161023, 46.0101362 ], + [ 7.4160612, 46.0100068 ], + [ 7.415891, 46.0098214 ], + [ 7.4157362, 46.0096866 ], + [ 7.415679, 46.0095459 ], + [ 7.4155564, 46.0093717 ], + [ 7.4154588, 46.0092874 ], + [ 7.4153128, 46.0092145 ], + [ 7.4151183, 46.0091756 ], + [ 7.4149159000000004, 46.0091085 ], + [ 7.4147295, 46.0090357 ], + [ 7.4144867, 46.0089406 ], + [ 7.4142673, 46.0088229 ], + [ 7.4140398, 46.0087108 ], + [ 7.41378, 46.0085368 ], + [ 7.4135937, 46.0083852 ], + [ 7.4133259, 46.0082226 ], + [ 7.4129356, 46.0079025 ], + [ 7.412692, 46.0076835 ], + [ 7.4125049, 46.0075318 ], + [ 7.4122694, 46.0072902 ], + [ 7.4120742, 46.007133 ], + [ 7.4118871, 46.0070152 ], + [ 7.4117169, 46.0068861 ], + [ 7.4116032, 46.0068019 ], + [ 7.4114403, 46.0066502 ], + [ 7.4112621, 46.0065211 ], + [ 7.4110758, 46.0064146 ], + [ 7.4109048, 46.0063024 ], + [ 7.4107426, 46.0062239 ], + [ 7.4105313, 46.0060893 ], + [ 7.4102797, 46.0059209 ], + [ 7.4100119, 46.0056906 ], + [ 7.4098417, 46.0056178 ], + [ 7.409728, 46.0055787 ], + [ 7.4096062, 46.0054945 ], + [ 7.4094683, 46.0053878 ], + [ 7.4093385, 46.0052473 ], + [ 7.4091829, 46.0050112 ], + [ 7.4090531, 46.0048087 ], + [ 7.4088975, 46.0045556 ], + [ 7.4087751, 46.0042687 ], + [ 7.4086122, 46.00401 ], + [ 7.4084083, 46.0036951 ], + [ 7.4083592, 46.00356 ], + [ 7.4082858, 46.003442 ], + [ 7.4081883, 46.0032845 ], + [ 7.4080899, 46.0031327 ], + [ 7.4079601, 46.0030091 ], + [ 7.4077892, 46.0028406 ], + [ 7.4075787, 46.0027115 ], + [ 7.4073351, 46.0025713 ], + [ 7.4071811, 46.0025097 ], + [ 7.4069786, 46.0024708 ], + [ 7.4067035, 46.002432 ], + [ 7.4062905, 46.0023654 ], + [ 7.4059339, 46.00231 ], + [ 7.4056742, 46.0022374 ], + [ 7.4053096, 46.0021368 ], + [ 7.405083, 46.0020191 ], + [ 7.4048313, 46.0019296 ], + [ 7.4046289, 46.0018231 ], + [ 7.4043692, 46.001666 ], + [ 7.4042064, 46.0014918 ], + [ 7.4040193, 46.0013177 ], + [ 7.4038323, 46.0010759 ], + [ 7.4035888, 46.0008287 ], + [ 7.4034252, 46.0005981 ], + [ 7.4032785, 46.0003563 ], + [ 7.4030996, 46.0000864 ], + [ 7.4028312, 45.9997266 ], + [ 7.4027087, 45.9996086 ], + [ 7.4025789, 45.9994794 ], + [ 7.4024329, 45.9993783 ], + [ 7.4022539, 45.9992549 ], + [ 7.4020193, 45.999109 ], + [ 7.4018564, 45.9990136 ], + [ 7.4017024, 45.9989408 ], + [ 7.4014999, 45.9988624 ], + [ 7.4013298, 45.9987727 ], + [ 7.4012402999999996, 45.9986715 ], + [ 7.4011105, 45.9985367 ], + [ 7.400996, 45.9984299 ], + [ 7.4008178000000004, 45.9982895 ], + [ 7.4005421, 45.9981043 ], + [ 7.4001526, 45.9979194 ], + [ 7.3996986, 45.9977064 ], + [ 7.3991631, 45.9974486 ], + [ 7.3991059, 45.9973417 ], + [ 7.3991383, 45.997229 ], + [ 7.3991779, 45.9971275 ], + [ 7.3992505, 45.9970654 ], + [ 7.3993231999999995, 45.9969976 ], + [ 7.3994361, 45.9969354 ], + [ 7.3995007, 45.9969071 ], + [ 7.3996056, 45.9968506 ], + [ 7.3996863, 45.996794 ], + [ 7.3998638, 45.9967204 ], + [ 7.4000333, 45.9966469 ], + [ 7.4002028, 45.9965282 ], + [ 7.4003562, 45.9963758 ], + [ 7.400428, 45.996257299999996 ], + [ 7.4004927, 45.996122 ], + [ 7.4004919, 45.9959755 ], + [ 7.400467, 45.9958179 ], + [ 7.4003285, 45.9956155 ], + [ 7.4002713, 45.9954354 ], + [ 7.400165, 45.995216 ], + [ 7.4000506, 45.9949347 ], + [ 7.3999597999999995, 45.9945463 ], + [ 7.3993412, 45.9955389 ], + [ 7.3991885, 45.9957589 ], + [ 7.3990836, 45.9958436 ], + [ 7.3989948, 45.9959002 ], + [ 7.3989141, 45.9959905 ], + [ 7.3988415, 45.9960526 ], + [ 7.3987607, 45.9961541 ], + [ 7.3986566, 45.9962558 ], + [ 7.3985275, 45.9963518 ], + [ 7.3983983, 45.9964366 ], + [ 7.3982692, 45.9965552 ], + [ 7.3980432, 45.996719 ], + [ 7.3978664, 45.9968659 ], + [ 7.3976243, 45.9970467 ], + [ 7.3975273999999995, 45.9971989 ], + [ 7.3974474, 45.9973455 ], + [ 7.3973917, 45.9974808 ], + [ 7.3973028, 45.99765 ], + [ 7.3973446, 45.9978188 ], + [ 7.3973614, 45.9980159 ], + [ 7.3974355, 45.9982354 ], + [ 7.3974691, 45.9985057 ], + [ 7.3975189, 45.9988942 ], + [ 7.3974058, 45.9989958 ], + [ 7.3972936, 45.999103 ], + [ 7.397108, 45.999233 ], + [ 7.3969546, 45.9993798 ], + [ 7.3967536, 45.9995661 ], + [ 7.3965679, 45.9997073 ], + [ 7.3964146, 45.999871 ], + [ 7.3962943, 45.9999895 ], + [ 7.3961974, 46.0000912 ], + [ 7.3961005, 46.0001984 ], + [ 7.3960278, 46.0002943 ], + [ 7.3959317, 46.0004353 ], + [ 7.3958275, 46.0006214 ], + [ 7.3956983, 46.0007963 ], + [ 7.3956425, 46.0009597 ], + [ 7.3955786, 46.0011176 ], + [ 7.3954906, 46.0013093 ], + [ 7.3954267, 46.0014671 ], + [ 7.395354, 46.0015912 ], + [ 7.395266, 46.001704 ], + [ 7.3951933, 46.0018112 ], + [ 7.3951206, 46.0019296 ], + [ 7.3950325, 46.0020876 ], + [ 7.394896, 46.0023075 ], + [ 7.3947676, 46.0025331 ], + [ 7.3946398, 46.0028487 ], + [ 7.3943498, 46.0033 ], + [ 7.3942698, 46.0034635 ], + [ 7.3941656, 46.003627 ], + [ 7.394101, 46.0037398 ], + [ 7.394021, 46.0039145 ], + [ 7.3939167999999995, 46.0041063 ], + [ 7.3938448, 46.0042698 ], + [ 7.3937237, 46.0044559 ], + [ 7.3936195, 46.0046082 ], + [ 7.3935306, 46.0047211 ], + [ 7.3934103, 46.0048509 ], + [ 7.3932569, 46.0050089 ], + [ 7.3931116, 46.0051557 ], + [ 7.3929266, 46.0053476 ], + [ 7.392749, 46.005517 ], + [ 7.3926206, 46.0056298 ], + [ 7.392443, 46.0057992 ], + [ 7.3922896, 46.0059178 ], + [ 7.3921524, 46.0060082 ], + [ 7.3920474, 46.0060705 ], + [ 7.3917892, 46.0061611 ], + [ 7.3915793, 46.0062573 ], + [ 7.3914098, 46.0063422 ], + [ 7.391208, 46.0064609 ], + [ 7.3909812, 46.0065797 ], + [ 7.3906342, 46.0067326 ], + [ 7.3902064, 46.006925 ], + [ 7.3895438, 46.0071743 ], + [ 7.3893178, 46.0073099 ], + [ 7.3891724, 46.0074342 ], + [ 7.3890117, 46.0076091 ], + [ 7.388939, 46.0077219 ], + [ 7.3888179, 46.0078292 ], + [ 7.3887056, 46.0079927 ], + [ 7.3886094, 46.0081732 ], + [ 7.3884647, 46.0084439 ], + [ 7.3883847, 46.0086299 ], + [ 7.3882885, 46.008861 ], + [ 7.3881437, 46.0091936 ], + [ 7.3879991, 46.009453 ], + [ 7.3877745, 46.0097802 ], + [ 7.387541, 46.0100961 ], + [ 7.3873075, 46.0103613 ], + [ 7.3870808, 46.0103787 ], + [ 7.3868783, 46.0103622 ], + [ 7.3866192999999996, 46.0103515 ], + [ 7.3865137, 46.0102785 ], + [ 7.3864161, 46.0102337 ], + [ 7.3862708999999995, 46.0102059 ], + [ 7.3861329, 46.0102062 ], + [ 7.3859231, 46.0102629 ], + [ 7.3857044, 46.0103028 ], + [ 7.3854615, 46.0103259 ], + [ 7.3850008, 46.0103438 ], + [ 7.3845957, 46.0103672 ], + [ 7.3842648, 46.0104243 ], + [ 7.3839243, 46.0104588 ], + [ 7.3835119, 46.0105273 ], + [ 7.3832294, 46.0106687 ], + [ 7.3830114, 46.0107818 ], + [ 7.3827289, 46.0109345 ], + [ 7.3824544, 46.0110421 ], + [ 7.3822115, 46.0111383 ], + [ 7.3819613, 46.011167 ], + [ 7.3815805, 46.0111622 ], + [ 7.3783516, 46.0109631 ], + [ 7.3746731, 46.0054929 ], + [ 7.3743092, 46.0055155 ], + [ 7.3740187, 46.005537 ], + [ 7.3736307, 46.0055544 ], + [ 7.3733644, 46.0055867 ], + [ 7.3731127, 46.0055738 ], + [ 7.3728456, 46.0055667 ], + [ 7.3726174, 46.0055366 ], + [ 7.3723657, 46.0055068 ], + [ 7.3720656, 46.005489 ], + [ 7.3707007, 46.0053304 ], + [ 7.3703191, 46.0053026 ], + [ 7.3685376, 46.004779 ], + [ 7.3681852, 46.0046438 ], + [ 7.3680619, 46.0045895 ], + [ 7.3679128, 46.0044792 ], + [ 7.3677806, 46.0044025 ], + [ 7.3676411, 46.0043372 ], + [ 7.3674685, 46.0042723 ], + [ 7.3672322, 46.0042197 ], + [ 7.3670758, 46.0041378 ], + [ 7.3669113, 46.0040559 ], + [ 7.3666323, 46.0039478 ], + [ 7.3663403, 46.0039185 ], + [ 7.3662419, 46.0038694 ], + [ 7.3661259, 46.0037925 ], + [ 7.3660202, 46.0037828 ], + [ 7.3658976, 46.0037566 ], + [ 7.365679, 46.0037376 ], + [ 7.3654523, 46.0037411 ], + [ 7.365299, 46.0037547 ], + [ 7.365274, 46.003727 ], + [ 7.3652871, 46.0036367 ], + [ 7.3652686, 46.0035695 ], + [ 7.3651864, 46.0035145 ], + [ 7.3650396, 46.0034887 ], + [ 7.3648855, 46.0034967 ], + [ 7.3645692, 46.0034791 ], + [ 7.3641408, 46.0034915 ], + [ 7.3640352, 46.0034819 ], + [ 7.3639691, 46.0034435 ], + [ 7.3639595, 46.0033987 ], + [ 7.3640063, 46.0033417 ], + [ 7.3640782, 46.0032955 ], + [ 7.3642138, 46.0032427 ], + [ 7.3643898, 46.0031723 ], + [ 7.3645415, 46.0031137 ], + [ 7.3646199, 46.0030336 ], + [ 7.3646821, 46.002937 ], + [ 7.364679, 46.0028413 ], + [ 7.3646517, 46.0027405 ], + [ 7.3645929, 46.0026738 ], + [ 7.3645261, 46.0026186 ], + [ 7.3643873, 46.0025926 ], + [ 7.3642413, 46.0025836 ], + [ 7.3641122, 46.0025913 ], + [ 7.364, 46.0026268 ], + [ 7.3638798, 46.0026512 ], + [ 7.3637499, 46.002642 ], + [ 7.3636112, 46.0026161 ], + [ 7.3634717, 46.0025619 ], + [ 7.3632653999999995, 46.0024245 ], + [ 7.3631485, 46.0023137 ], + [ 7.3629986, 46.0021922 ], + [ 7.3630278, 46.0021017 ], + [ 7.3631957, 46.0020259 ], + [ 7.363379, 46.0019216 ], + [ 7.363563, 46.0018625 ], + [ 7.3636245, 46.0017602 ], + [ 7.3636464, 46.0016754 ], + [ 7.3636029, 46.0015804 ], + [ 7.3634957, 46.0015258 ], + [ 7.3633328, 46.0015058 ], + [ 7.3631553, 46.0015255 ], + [ 7.3629132, 46.0015293 ], + [ 7.3626857, 46.0015272 ], + [ 7.3625228, 46.001496 ], + [ 7.3623511, 46.0014368 ], + [ 7.3622439, 46.0013709 ], + [ 7.3621939, 46.0013154 ], + [ 7.3621755, 46.0012594 ], + [ 7.3621651, 46.0011751 ], + [ 7.3622596, 46.0011005 ], + [ 7.3623944, 46.0010196 ], + [ 7.3625543, 46.0009326 ], + [ 7.3623414, 46.0008684 ], + [ 7.3621615, 46.0008093 ], + [ 7.3619575, 46.0007506 ], + [ 7.361727, 46.0006473 ], + [ 7.3615625, 46.0005653 ], + [ 7.3614391999999995, 46.0004885 ], + [ 7.3613642, 46.000439 ], + [ 7.3613031, 46.0002824 ], + [ 7.361242, 46.0001426 ], + [ 7.361164, 45.9999918 ], + [ 7.3611351, 45.9998459 ], + [ 7.3611563, 45.9997386 ], + [ 7.361308, 45.9996687 ], + [ 7.3614744, 45.9995648 ], + [ 7.3616890999999995, 45.9994319 ], + [ 7.3618063, 45.9993062 ], + [ 7.3616361, 45.9993033 ], + [ 7.3614901, 45.999283 ], + [ 7.3613433, 45.9992516 ], + [ 7.3612119, 45.9991917 ], + [ 7.3611692, 45.9991417 ], + [ 7.3611684, 45.9991023 ], + [ 7.3612057, 45.999006 ], + [ 7.3612898, 45.9988527 ], + [ 7.3613593, 45.9987335 ], + [ 7.361395, 45.9986034 ], + [ 7.3613904, 45.9984571 ], + [ 7.3613719, 45.9983786 ], + [ 7.3614688, 45.9983602 ], + [ 7.3615728, 45.998336 ], + [ 7.3616954, 45.9983567 ], + [ 7.3616762, 45.9982725 ], + [ 7.36169, 45.9981935 ], + [ 7.3617522, 45.9981137 ], + [ 7.3618863, 45.9980102 ], + [ 7.3620073, 45.9979803 ], + [ 7.362176, 45.9979551 ], + [ 7.3623712, 45.9979858 ], + [ 7.3627462, 45.9980531 ], + [ 7.3630881, 45.9981265 ], + [ 7.3632583, 45.9981238 ], + [ 7.3633794, 45.9981051 ], + [ 7.3636045, 45.9980677 ], + [ 7.3637739, 45.9980426 ], + [ 7.3638949, 45.9980238 ], + [ 7.3641024, 45.9979417 ], + [ 7.3642856, 45.9978488 ], + [ 7.3645004, 45.9977159 ], + [ 7.364619, 45.9976409 ], + [ 7.3646675, 45.9976345 ], + [ 7.3648288, 45.9976264 ], + [ 7.3648546, 45.9976709 ], + [ 7.3649553, 45.9977763 ], + [ 7.3651043, 45.9978922 ], + [ 7.3652527, 45.9979743 ], + [ 7.3653825, 45.9979835 ], + [ 7.3654947, 45.9979255 ], + [ 7.365565, 45.9978512 ], + [ 7.366001, 45.9975741 ], + [ 7.3661043, 45.997505 ], + [ 7.3662342, 45.9975086 ], + [ 7.3663729, 45.997557 ], + [ 7.3665123999999995, 45.9975999 ], + [ 7.3666599, 45.9976538 ], + [ 7.3667905, 45.9977081 ], + [ 7.3669124, 45.9977005 ], + [ 7.3670222, 45.9976031 ], + [ 7.3670925, 45.9975119 ], + [ 7.3675685, 45.9974594 ], + [ 7.3679086, 45.9977299 ], + [ 7.3680465, 45.9977277 ], + [ 7.3681829, 45.9977031 ], + [ 7.368249, 45.9977358 ], + [ 7.3683473, 45.9977737 ], + [ 7.368428, 45.9977668 ], + [ 7.368524, 45.9977427 ], + [ 7.3686216, 45.9977412 ], + [ 7.3687434, 45.997773 ], + [ 7.3688975, 45.9977593 ], + [ 7.3690185, 45.9977462 ], + [ 7.3691476, 45.9977442 ], + [ 7.3692548, 45.9978156 ], + [ 7.3693232, 45.9979103 ], + [ 7.3694159, 45.9980271 ], + [ 7.3695319, 45.9981265 ], + [ 7.369648, 45.9982035 ], + [ 7.369802, 45.9982011 ], + [ 7.3699069, 45.9981938 ], + [ 7.3699884, 45.9982094 ], + [ 7.3700464, 45.9982535 ], + [ 7.3700971, 45.9983316 ], + [ 7.3701559, 45.9983925 ], + [ 7.3702382, 45.9984419 ], + [ 7.3703043, 45.998469 ], + [ 7.3703784, 45.9985185 ], + [ 7.3704372, 45.9985964 ], + [ 7.3704638, 45.9986522 ], + [ 7.3704911, 45.9987475 ], + [ 7.3705111, 45.998871 ], + [ 7.3705561, 45.9990111 ], + [ 7.3706053, 45.999044 ], + [ 7.3706553, 45.9990658 ], + [ 7.3707036, 45.9990819 ], + [ 7.3708262, 45.9991025 ], + [ 7.3709392, 45.9990838 ], + [ 7.3710836, 45.9990534 ], + [ 7.3712039, 45.9990065 ], + [ 7.3713072, 45.9989654 ], + [ 7.3714678, 45.9989122 ], + [ 7.371613, 45.9988931 ], + [ 7.3717509, 45.9989078 ], + [ 7.3718574, 45.9989399 ], + [ 7.3719799, 45.998983 ], + [ 7.3721832, 45.9990135 ], + [ 7.3723196, 45.9989664 ], + [ 7.3725124, 45.9989183 ], + [ 7.3727675, 45.9987904 ], + [ 7.3730468, 45.9986621 ], + [ 7.3731743, 45.9986151 ], + [ 7.3733591, 45.9985728 ], + [ 7.3735842, 45.9985298 ], + [ 7.373807, 45.9983856 ], + [ 7.3738588, 45.9982553 ], + [ 7.3738145, 45.9981378 ], + [ 7.373705, 45.9979988 ], + [ 7.3734874, 45.9977771 ], + [ 7.3732327, 45.9976404 ], + [ 7.3733645, 45.9973828 ], + [ 7.373589, 45.9971394 ], + [ 7.3739677, 45.9968294 ], + [ 7.3743794, 45.9965527 ], + [ 7.3749356, 45.9962174 ], + [ 7.3758113, 45.9957701 ], + [ 7.3765434, 45.9953532 ], + [ 7.3767904, 45.9952424 ], + [ 7.3770163, 45.9952106 ], + [ 7.377176, 45.9951574 ], + [ 7.3773884, 45.994945799999996 ], + [ 7.3777121, 45.9946986 ], + [ 7.3780035999999996, 45.9944407 ], + [ 7.3781369, 45.9943035 ], + [ 7.3782985, 45.9940476 ], + [ 7.3784343, 45.9937359 ], + [ 7.3785468, 45.9934526 ], + [ 7.3786292, 45.9932655 ], + [ 7.3787302, 45.993111999999996 ], + [ 7.3790297, 45.9928652 ], + [ 7.3792033, 45.9927217 ], + [ 7.3793462, 45.9926294 ], + [ 7.3795447, 45.9925193 ], + [ 7.3797037, 45.992421 ], + [ 7.3797966, 45.9923013 ], + [ 7.3799824, 45.9920451 ], + [ 7.3801425, 45.9917329 ], + [ 7.3802887, 45.9914773 ], + [ 7.3804027, 45.9912503 ], + [ 7.3805166, 45.991029 ], + [ 7.3805903, 45.9907858 ], + [ 7.3806663, 45.9906326 ], + [ 7.3807592, 45.990496 ], + [ 7.3808336, 45.9902922 ], + [ 7.3808999, 45.990111 ], + [ 7.3809179, 45.989908 ], + [ 7.38096, 45.9896934 ], + [ 7.3810256, 45.9894785 ], + [ 7.3811637, 45.9892455 ], + [ 7.3813269, 45.9890178 ], + [ 7.3815498999999996, 45.9886483 ], + [ 7.3816597, 45.9885509 ], + [ 7.3816784, 45.9883817 ], + [ 7.3816633, 45.9881511 ], + [ 7.3816151, 45.9879099 ], + [ 7.3815516, 45.9877082 ], + [ 7.3814631, 45.9874732 ], + [ 7.3814173, 45.987305 ], + [ 7.3814311, 45.9872316 ], + [ 7.3815006, 45.9871123 ], + [ 7.3815185, 45.9869206 ], + [ 7.3815042, 45.9867407 ], + [ 7.3814261, 45.9865731 ], + [ 7.3813642, 45.9863939 ], + [ 7.3813015, 45.9862035 ], + [ 7.3812775, 45.9859675 ], + [ 7.3813212, 45.9858316 ], + [ 7.3814859, 45.9856658 ], + [ 7.3815281, 45.9854625 ], + [ 7.3815007999999995, 45.9853616 ], + [ 7.3816106, 45.9852417 ], + [ 7.3817874, 45.9849686 ], + [ 7.3818642, 45.9848267 ], + [ 7.3818998, 45.984691 ], + [ 7.3818621, 45.984511499999996 ], + [ 7.3818493, 45.9843765 ], + [ 7.3819253, 45.9842121 ], + [ 7.381874, 45.983864 ], + [ 7.3818686, 45.9836952 ], + [ 7.3819461, 45.9835926 ], + [ 7.3820962, 45.9834889 ], + [ 7.3821415, 45.9833812 ], + [ 7.3820933, 45.9831455 ], + [ 7.3819999, 45.9829951 ], + [ 7.3818573, 45.9828565 ], + [ 7.3817147, 45.9827012 ], + [ 7.3816294, 45.9825562 ], + [ 7.3816504, 45.9824433 ], + [ 7.3816288, 45.982286 ], + [ 7.3815992, 45.9821288 ], + [ 7.3815034, 45.9819164 ], + [ 7.3813528, 45.9817444 ], + [ 7.3811836, 45.9815275 ], + [ 7.3810749, 45.9814166 ], + [ 7.3810371, 45.9812539 ], + [ 7.3810036, 45.9809505 ], + [ 7.3809419, 45.9805405 ], + [ 7.3810647, 45.9803359 ], + [ 7.3811414, 45.9802165 ], + [ 7.3813158, 45.9800899 ], + [ 7.3814739, 45.9799804 ], + [ 7.3816797, 45.9798252 ], + [ 7.3818855, 45.9796981 ], + [ 7.3820187, 45.979544 ], + [ 7.3821842, 45.9794063 ], + [ 7.3823004, 45.9792412 ], + [ 7.3824506, 45.9791262 ], + [ 7.3826571, 45.9790103 ], + [ 7.3829516, 45.9788536 ], + [ 7.3831888, 45.9787035 ], + [ 7.3833462, 45.9785491 ], + [ 7.3834529, 45.9783503 ], + [ 7.3834789, 45.9781529 ], + [ 7.3835057, 45.9779667 ], + [ 7.3836269, 45.9777171 ], + [ 7.3838053, 45.9774778 ], + [ 7.3839676, 45.9772445 ], + [ 7.3841968, 45.977055 ], + [ 7.3844567, 45.9768426 ], + [ 7.3846617, 45.9766649 ], + [ 7.3848974, 45.9764641 ], + [ 7.3851096, 45.9762637 ], + [ 7.3852808, 45.9760526 ], + [ 7.3854366, 45.9758645 ], + [ 7.3857521, 45.9756005 ], + [ 7.3858619, 45.9754861 ], + [ 7.3858572, 45.9753399 ], + [ 7.3858452, 45.9752275 ], + [ 7.3857517999999995, 45.9750883 ], + [ 7.3856415, 45.9749267 ], + [ 7.3854877, 45.9746702 ], + [ 7.3853919, 45.9744747 ], + [ 7.3853196, 45.9742395 ], + [ 7.3852972, 45.9740259 ], + [ 7.385299, 45.9738513 ], + [ 7.3853185, 45.9736934 ], + [ 7.385363, 45.9735576 ], + [ 7.3854397, 45.9734213 ], + [ 7.3855487, 45.9732901 ], + [ 7.3857076, 45.9731975 ], + [ 7.3859061, 45.9730931 ], + [ 7.3861465, 45.973016 ], + [ 7.3864716, 45.9728195 ], + [ 7.3867257, 45.9726578 ], + [ 7.3869775, 45.9724455 ], + [ 7.3871276, 45.9723305 ], + [ 7.3872197, 45.9721715 ], + [ 7.3874337, 45.9717796 ], + [ 7.3877003, 45.9712463 ], + [ 7.387777, 45.9711212 ], + [ 7.3878287, 45.9709853 ], + [ 7.387862, 45.9707596 ], + [ 7.3879195, 45.9705222 ], + [ 7.3880084, 45.9702619 ], + [ 7.3881022, 45.9699058 ], + [ 7.3881428, 45.9696687 ], + [ 7.3881342, 45.969393 ], + [ 7.3881014, 45.9691233 ], + [ 7.3880685, 45.9688762 ], + [ 7.3879421, 45.968698 ], + [ 7.3868993, 45.9689904 ], + [ 7.3864743, 45.9691154 ], + [ 7.3859291, 45.9692648 ], + [ 7.3855372, 45.9694005 ], + [ 7.3851605, 45.9695135 ], + [ 7.3848073, 45.9696091 ], + [ 7.3843573, 45.969712 ], + [ 7.3840508, 45.969745 ], + [ 7.3836968, 45.9698013 ], + [ 7.3833178, 45.9698523 ], + [ 7.3829557999999995, 45.9698975 ], + [ 7.3826324, 45.9699082 ], + [ 7.3823018, 45.9699417 ], + [ 7.382076, 45.9699621 ], + [ 7.3817197, 45.9699622 ], + [ 7.3812577, 45.9699413 ], + [ 7.3808352, 45.9698917 ], + [ 7.3802838, 45.9698554 ], + [ 7.3799347, 45.9698046 ], + [ 7.3795292, 45.9697773 ], + [ 7.3793115, 45.969792 ], + [ 7.379093, 45.9697955 ], + [ 7.3789236, 45.9698207 ], + [ 7.3786575, 45.9698586 ], + [ 7.3783761, 45.9699082 ], + [ 7.378118, 45.9699291 ], + [ 7.3778584, 45.9699163 ], + [ 7.377623, 45.9698751 ], + [ 7.3773458, 45.9698062 ], + [ 7.3770515, 45.9697377 ], + [ 7.376767, 45.9696803 ], + [ 7.3764744, 45.9696343 ], + [ 7.3762559, 45.9696321 ], + [ 7.3759398, 45.9696258 ], + [ 7.3755496, 45.9695757 ], + [ 7.3752908, 45.9695742 ], + [ 7.3750796, 45.9695437 ], + [ 7.374754, 45.9694813 ], + [ 7.3743404, 45.9694484 ], + [ 7.3739687, 45.96946 ], + [ 7.3735743, 45.9695281 ], + [ 7.3733808, 45.9695536 ], + [ 7.373201, 45.9694889 ], + [ 7.3729069, 45.9694092 ], + [ 7.3725313, 45.9692912 ], + [ 7.3721806, 45.9692236 ], + [ 7.3718243, 45.9692067 ], + [ 7.3716219, 45.9691986 ], + [ 7.3714599, 45.9691899 ], + [ 7.3712655, 45.9692042 ], + [ 7.3708444, 45.9694305 ], + [ 7.3706612, 45.9695178 ], + [ 7.3704635, 45.9696672 ], + [ 7.3703046, 45.9697654 ], + [ 7.3701287, 45.9698245 ], + [ 7.3698884, 45.9698959 ], + [ 7.3695923, 45.9700018 ], + [ 7.3693489, 45.9699775 ], + [ 7.3692068, 45.9700924 ], + [ 7.3690398, 45.9701963 ], + [ 7.3688808, 45.9702832 ], + [ 7.3686574, 45.9703656 ], + [ 7.3684074, 45.9704145 ], + [ 7.3681912, 45.9704742 ], + [ 7.368, 45.9705617 ], + [ 7.367866, 45.970682 ], + [ 7.3676698, 45.9708652 ], + [ 7.3673953, 45.9711397 ], + [ 7.3672275, 45.9712268 ], + [ 7.3670759, 45.9712799 ], + [ 7.3668984, 45.9713052 ], + [ 7.3665905, 45.9712875 ], + [ 7.3664542, 45.9713177 ], + [ 7.3663113, 45.9714045 ], + [ 7.3661838, 45.971474 ], + [ 7.365983, 45.971511 ], + [ 7.3658121, 45.9714911 ], + [ 7.3657411, 45.9715542 ], + [ 7.3656547, 45.9716287 ], + [ 7.3655345, 45.97167 ], + [ 7.3653652, 45.9716726 ], + [ 7.3650894000000005, 45.9716545 ], + [ 7.3648379, 45.9716359 ], + [ 7.3646202, 45.9716675 ], + [ 7.3644274, 45.9717043 ], + [ 7.3641862, 45.9717643 ], + [ 7.3639128, 45.9718137 ], + [ 7.3636878, 45.9718622 ], + [ 7.363495, 45.9719047 ], + [ 7.3632677, 45.9718913 ], + [ 7.3629597, 45.9718568 ], + [ 7.362626, 45.9718113 ], + [ 7.3623817, 45.9717589 ], + [ 7.3620802, 45.9717017 ], + [ 7.3617481, 45.9716844 ], + [ 7.3613998, 45.9716561 ], + [ 7.3612773, 45.9716186 ], + [ 7.3611378, 45.9715814 ], + [ 7.3609194, 45.9715679 ], + [ 7.360621, 45.971612 ], + [ 7.3604225, 45.9717165 ], + [ 7.3602516, 45.9716966 ], + [ 7.3600645, 45.9716714 ], + [ 7.3597969, 45.9716474 ], + [ 7.3594436, 45.9717374 ], + [ 7.3591314, 45.9718436 ], + [ 7.3591337, 45.9718943 ], + [ 7.3591061, 45.9720467 ], + [ 7.3590439, 45.9721265 ], + [ 7.3590131, 45.9722001 ], + [ 7.3590178, 45.9723239 ], + [ 7.3590362, 45.9724024 ], + [ 7.3589902, 45.972482 ], + [ 7.3589836, 45.9725439 ], + [ 7.3589963, 45.9726733 ], + [ 7.3589664, 45.9727638 ], + [ 7.3589372, 45.9728599 ], + [ 7.3589572, 45.9729666 ], + [ 7.3589998, 45.9730504 ], + [ 7.3590029, 45.9731516 ], + [ 7.359039, 45.9732524 ], + [ 7.3591066, 45.9733639 ], + [ 7.3591846, 45.9735147 ], + [ 7.3591547, 45.9735883 ], + [ 7.3591335, 45.97369 ], + [ 7.3590875, 45.9737751 ], + [ 7.3590994, 45.9738876 ], + [ 7.3590862999999995, 45.9739947 ], + [ 7.3590403, 45.9740686 ], + [ 7.3589877, 45.9742101 ], + [ 7.3589439, 45.974346 ], + [ 7.3589106, 45.974566 ], + [ 7.3589159, 45.9747405 ], + [ 7.3589206, 45.9748923 ], + [ 7.3588664, 45.9749664 ], + [ 7.3587962000000005, 45.9750407 ], + [ 7.3586863, 45.9751662 ], + [ 7.3585934, 45.9752916 ], + [ 7.3585562, 45.9754047 ], + [ 7.3585078, 45.9759234 ], + [ 7.3584929, 45.9762163 ], + [ 7.3584395, 45.976312899999996 ], + [ 7.3583758, 45.9763532 ], + [ 7.3582806, 45.9763941 ], + [ 7.3580805, 45.9764648 ], + [ 7.3578416, 45.9765868 ], + [ 7.357723, 45.9766787 ], + [ 7.3576534, 45.9767867 ], + [ 7.3576412, 45.9769051 ], + [ 7.3576677, 45.9769891 ], + [ 7.3577337, 45.9770276 ], + [ 7.3578087, 45.9770826 ], + [ 7.3577875, 45.9771787 ], + [ 7.3577422, 45.977292 ], + [ 7.3576792, 45.9773492 ], + [ 7.3576098, 45.977446 ], + [ 7.3575555999999995, 45.9775313 ], + [ 7.357478, 45.9776339 ], + [ 7.3573505, 45.9777034 ], + [ 7.3572795, 45.9777552 ], + [ 7.3572495, 45.9778457 ], + [ 7.3572104, 45.9781447 ], + [ 7.3571885, 45.9782126 ], + [ 7.3571102, 45.978287 ], + [ 7.3570487, 45.9783949 ], + [ 7.3570437, 45.9784963 ], + [ 7.3570975, 45.9786475 ], + [ 7.3571506, 45.978793 ], + [ 7.3571859, 45.9788938 ], + [ 7.3571567, 45.9790068 ], + [ 7.3571276, 45.9790861 ], + [ 7.3570653, 45.9791884 ], + [ 7.3569966, 45.9793077 ], + [ 7.3569593, 45.9794096 ], + [ 7.3569697, 45.9794826 ], + [ 7.3569551, 45.9795391 ], + [ 7.3569171, 45.9796073 ], + [ 7.3568549, 45.9796927 ], + [ 7.3567854, 45.9798063 ], + [ 7.3567005, 45.9799146 ], + [ 7.3566617, 45.9799884 ], + [ 7.3566487, 45.9800674 ], + [ 7.3566356, 45.9801746 ], + [ 7.3566814, 45.9803371 ], + [ 7.3567271, 45.9804996 ], + [ 7.3567132, 45.9805956 ], + [ 7.3566672, 45.9806751 ], + [ 7.3566534, 45.9807429 ], + [ 7.3566645, 45.9808272 ], + [ 7.3566684, 45.9809565 ], + [ 7.3566849, 45.9812321 ], + [ 7.3567137, 45.9813668 ], + [ 7.3567007, 45.9814739 ], + [ 7.3566884, 45.9815867 ], + [ 7.3566665, 45.9816772 ], + [ 7.3567099, 45.9817665 ], + [ 7.3567445, 45.9818391 ], + [ 7.3567242, 45.9819577 ], + [ 7.3567257, 45.982014 ], + [ 7.3567507, 45.9820361 ], + [ 7.3568175, 45.9820857 ], + [ 7.3568191, 45.9821307 ], + [ 7.3568044, 45.9821985 ], + [ 7.3567672, 45.9822948 ], + [ 7.3567161, 45.9824701 ], + [ 7.3566175, 45.9826799 ], + [ 7.3565760000000004, 45.9828945 ], + [ 7.3565403, 45.9830583 ], + [ 7.3564723, 45.9832057 ], + [ 7.356364, 45.983365 ], + [ 7.3562419, 45.9836033 ], + [ 7.3561674, 45.9837903 ], + [ 7.3561002, 45.9839884 ], + [ 7.3560637, 45.9841128 ], + [ 7.356058, 45.9841804 ], + [ 7.3561249, 45.9842357 ], + [ 7.3561755, 45.9843193 ], + [ 7.3561295, 45.9843876 ], + [ 7.3560899, 45.9844276 ], + [ 7.3559486, 45.9845536 ], + [ 7.3558620999999995, 45.9846507 ], + [ 7.3558652, 45.9847463 ], + [ 7.3559175, 45.9848637 ], + [ 7.3558841, 45.9850726 ], + [ 7.3557961, 45.9851246 ], + [ 7.3557097, 45.9851934 ], + [ 7.3555837, 45.985308 ], + [ 7.3554593, 45.9854676 ], + [ 7.3553341, 45.985599 ], + [ 7.3551797, 45.9858378 ], + [ 7.3550883, 45.9860307 ], + [ 7.3550226, 45.9862456 ], + [ 7.3549635, 45.9864267 ], + [ 7.3549358, 45.9865735 ], + [ 7.3549808, 45.9867303 ], + [ 7.3549919, 45.9868203 ], + [ 7.354995, 45.9869103 ], + [ 7.3549724, 45.986967 ], + [ 7.3549424, 45.9870462 ], + [ 7.3549301, 45.987159 ], + [ 7.3549347, 45.9873166 ], + [ 7.3549636, 45.9874625 ], + [ 7.3550239, 45.9875685 ], + [ 7.3551084, 45.9876797 ], + [ 7.35511, 45.9877303 ], + [ 7.3550961, 45.9878038 ], + [ 7.3550589, 45.987917 ], + [ 7.3550289, 45.9879962 ], + [ 7.3550231, 45.9880695 ], + [ 7.3550408, 45.9881198 ], + [ 7.3551011, 45.9882315 ], + [ 7.3551784, 45.988371 ], + [ 7.3552387, 45.9884827 ], + [ 7.3552418, 45.9885783 ], + [ 7.3551949, 45.988641 ], + [ 7.3551238, 45.9886983 ], + [ 7.3550382, 45.9887898 ], + [ 7.3549033999999995, 45.9888876 ], + [ 7.3547855, 45.9889964 ], + [ 7.3546787, 45.9892063 ], + [ 7.3545842, 45.989281 ], + [ 7.3544824, 45.9893839 ], + [ 7.3543741, 45.9895376 ], + [ 7.3542884, 45.9896571 ], + [ 7.3541552, 45.9897887 ], + [ 7.3540856, 45.9898911 ], + [ 7.3540161, 45.990016 ], + [ 7.3539869, 45.9900953 ], + [ 7.3539497, 45.9902029 ], + [ 7.3539373999999995, 45.9903325 ], + [ 7.3539405, 45.9904225 ], + [ 7.3539281, 45.9905634 ], + [ 7.3538997, 45.9906709 ], + [ 7.3538398, 45.9908237 ], + [ 7.3537711, 45.9909487 ], + [ 7.3537353, 45.9911181 ], + [ 7.3537231, 45.9912365 ], + [ 7.3537269, 45.9913547 ], + [ 7.3537373, 45.9914389 ], + [ 7.3537323, 45.9915178 ], + [ 7.3537508, 45.991602 ], + [ 7.3537707, 45.9917143 ], + [ 7.3537746, 45.9918493 ], + [ 7.3537777, 45.9919281 ], + [ 7.3537646, 45.9920353 ], + [ 7.3537758, 45.9921308 ], + [ 7.3537861, 45.9921982 ], + [ 7.3538198999999995, 45.9922539 ], + [ 7.3538472, 45.9923548 ], + [ 7.3538745, 45.9924332 ], + [ 7.3538768, 45.9925232 ], + [ 7.3538791, 45.9925851 ], + [ 7.3539064, 45.992686 ], + [ 7.3539756, 45.9928257 ], + [ 7.354077, 45.9929705 ], + [ 7.3541535, 45.993065 ], + [ 7.3541792, 45.9931265 ], + [ 7.3541984, 45.9932219 ], + [ 7.3542418, 45.9933056 ], + [ 7.3543337, 45.9933887 ], + [ 7.3544005, 45.993472 ], + [ 7.3544117, 45.9935676 ], + [ 7.3544478, 45.9936908 ], + [ 7.3546007, 45.9939024 ], + [ 7.3545949, 45.9939868 ], + [ 7.3545746, 45.9940998 ], + [ 7.3545784, 45.9942292 ], + [ 7.3546226, 45.9943467 ], + [ 7.3546103, 45.9944651 ], + [ 7.354565, 45.9945615 ], + [ 7.3545262, 45.9946353 ], + [ 7.354464, 45.9946982 ], + [ 7.354401, 45.9947554 ], + [ 7.3543461, 45.994807 ], + [ 7.3543153, 45.994875 ], + [ 7.3543023, 45.9949597 ], + [ 7.3542481, 45.9950506 ], + [ 7.3541375, 45.9951424 ], + [ 7.3540268, 45.9952173 ], + [ 7.3539331, 45.9953314 ], + [ 7.3538685, 45.995338 ], + [ 7.3537644, 45.995379 ], + [ 7.3537545, 45.9955536 ], + [ 7.3537656, 45.995666 ], + [ 7.353738, 45.9958129 ], + [ 7.3536934, 45.9959261 ], + [ 7.3536707, 45.9959884 ], + [ 7.3537134, 45.9960497 ], + [ 7.3537407, 45.996145 ], + [ 7.3537203, 45.9962804 ], + [ 7.3536992, 45.996382 ], + [ 7.3536112, 45.9964003 ], + [ 7.3535305, 45.9964185 ], + [ 7.3533772, 45.9964321 ], + [ 7.3530925, 45.9964027 ], + [ 7.3528667, 45.9964119 ], + [ 7.3527456, 45.9964363 ], + [ 7.3526769, 45.99655 ], + [ 7.3526138, 45.9966185 ], + [ 7.352529, 45.9967437 ], + [ 7.3524675, 45.9968516 ], + [ 7.3523883, 45.9969147 ], + [ 7.3522543, 45.9970238 ], + [ 7.3521759, 45.9971038 ], + [ 7.3520975, 45.9971951 ], + [ 7.3519973, 45.9973318 ], + [ 7.3519438, 45.9974508 ], + [ 7.3518574, 45.9975366 ], + [ 7.3517548, 45.9976114 ], + [ 7.3516523, 45.9976862 ], + [ 7.3514375, 45.9978134 ], + [ 7.3513026, 45.9979055 ], + [ 7.3512162, 45.9979857 ], + [ 7.3511878, 45.99811 ], + [ 7.3511586, 45.9982061 ], + [ 7.3511036, 45.998280199999996 ], + [ 7.3510341, 45.9983713 ], + [ 7.3510034, 45.9984169 ], + [ 7.3510121999999996, 45.9984617 ], + [ 7.3510145, 45.9985236 ], + [ 7.3510014, 45.9986195 ], + [ 7.350948, 45.9987329 ], + [ 7.3509269, 45.9988177 ], + [ 7.3508477, 45.9988921 ], + [ 7.3507459, 45.9989894 ], + [ 7.3505408, 45.9991558 ], + [ 7.3505665, 45.9992117 ], + [ 7.350618, 45.9993066 ], + [ 7.350563, 45.9993638 ], + [ 7.3504847, 45.9994325 ], + [ 7.3503579, 45.9995246 ], + [ 7.3501489, 45.9995785 ], + [ 7.3501216, 45.9994664 ], + [ 7.3500178, 45.9992709 ], + [ 7.3499141, 45.9990699 ], + [ 7.3497958, 45.9988972 ], + [ 7.3496444, 45.9987251 ], + [ 7.349385, 45.9984645 ], + [ 7.3491288, 45.998294 ], + [ 7.3489474999999995, 45.998173 ], + [ 7.3487331, 45.9980525 ], + [ 7.3485348, 45.9979261 ], + [ 7.3483792, 45.9978778 ], + [ 7.3482075, 45.9978074 ], + [ 7.3479866, 45.9977488 ], + [ 7.3477826, 45.9976958 ], + [ 7.3475793, 45.9976595 ], + [ 7.3473915, 45.9976117 ], + [ 7.3471471, 45.9975762 ], + [ 7.3468478, 45.9975695 ], + [ 7.3465074, 45.9975636 ], + [ 7.3461766, 45.9975913 ], + [ 7.345724, 45.9976264 ], + [ 7.345427, 45.9977098 ], + [ 7.3404836, 45.9949494 ], + [ 7.3404064, 45.9948155 ], + [ 7.3403373, 45.9946702 ], + [ 7.3402117, 45.9945258 ], + [ 7.3400127, 45.9943826 ], + [ 7.3398725, 45.9943003 ], + [ 7.3396186, 45.9941972 ], + [ 7.3394146, 45.9941554 ], + [ 7.339171, 45.9941254 ], + [ 7.3388203, 45.9940463 ], + [ 7.3385921, 45.9940048 ], + [ 7.3384776, 45.9939503 ], + [ 7.33841, 45.9938725 ], + [ 7.3383505, 45.9937834 ], + [ 7.3383217, 45.9936263 ], + [ 7.3383229, 45.993401 ], + [ 7.3383291, 45.9931026 ], + [ 7.3383749, 45.9927416 ], + [ 7.3383396, 45.9926465 ], + [ 7.3382463, 45.9925184 ], + [ 7.3381214, 45.9924078 ], + [ 7.3379547, 45.9922527 ], + [ 7.3377631, 45.9920756 ], + [ 7.3376229, 45.9919821 ], + [ 7.3374996, 45.991922 ], + [ 7.3373094, 45.991818 ], + [ 7.3370475, 45.9917095 ], + [ 7.3367379, 45.9916524 ], + [ 7.3365024, 45.9916278 ], + [ 7.3362808, 45.9915131 ], + [ 7.3360752, 45.9914262 ], + [ 7.335781, 45.9913294 ], + [ 7.3354779, 45.9912159 ], + [ 7.3352079, 45.9911187 ], + [ 7.3349548, 45.9910438 ], + [ 7.3348542, 45.9909328 ], + [ 7.3347616, 45.9908216 ], + [ 7.3346126, 45.9907339 ], + [ 7.3344892999999995, 45.9906626 ], + [ 7.3343879, 45.9905347 ], + [ 7.3342865, 45.9903955 ], + [ 7.334136, 45.9902402 ], + [ 7.3339862, 45.9901018 ], + [ 7.3337784, 45.9899305 ], + [ 7.3334643, 45.9897102 ], + [ 7.3332235, 45.9895169 ], + [ 7.3329577, 45.9893015 ], + [ 7.3326508, 45.989081 ], + [ 7.3324431, 45.9888872 ], + [ 7.3323982, 45.988764 ], + [ 7.3323952, 45.9886515 ], + [ 7.3323994, 45.9885332 ], + [ 7.3323384, 45.9883934 ], + [ 7.3322531, 45.9882597 ], + [ 7.3320777, 45.9880766 ], + [ 7.3319425, 45.9878929 ], + [ 7.3318323, 45.9877483 ], + [ 7.331739, 45.9875977 ], + [ 7.3315908, 45.9875099 ], + [ 7.3314218, 45.9872986 ], + [ 7.3312771, 45.9870644 ], + [ 7.331125, 45.9868698 ], + [ 7.3309326, 45.9866701 ], + [ 7.3307572, 45.986487 ], + [ 7.3305994, 45.9863543 ], + [ 7.3303586, 45.986161 ], + [ 7.3301677, 45.9860007 ], + [ 7.3299503999999995, 45.9857845 ], + [ 7.3297089, 45.9855631 ], + [ 7.3295019, 45.9854142 ], + [ 7.3292158, 45.9853173 ], + [ 7.3289385, 45.9852428 ], + [ 7.3285071, 45.9851763 ], + [ 7.3281484, 45.9850917 ], + [ 7.3277155, 45.9849801 ], + [ 7.3274287, 45.9848495 ], + [ 7.3272817, 45.984559 ], + [ 7.3271362, 45.9843023 ], + [ 7.3270341, 45.984135 ], + [ 7.3268218, 45.9838174 ], + [ 7.3265861, 45.9835227 ], + [ 7.3263688, 45.9832896 ], + [ 7.3261611, 45.9831183 ], + [ 7.3258469999999996, 45.9829148 ], + [ 7.3255094, 45.9827399 ], + [ 7.3249887, 45.9826409 ], + [ 7.3247694, 45.9826049 ], + [ 7.3246526, 45.9825053 ], + [ 7.3245448, 45.9824057 ], + [ 7.3243474, 45.9823074 ], + [ 7.3240943, 45.9822324 ], + [ 7.3239541, 45.9821727 ], + [ 7.3238866, 45.9820612 ], + [ 7.3238578, 45.9819321 ], + [ 7.3238034, 45.9817415 ], + [ 7.3237175, 45.981574 ], + [ 7.3235927, 45.9814633 ], + [ 7.3234767, 45.9813807 ], + [ 7.3233462, 45.9813376 ], + [ 7.3231027, 45.9813133 ], + [ 7.3229068, 45.9812769 ], + [ 7.3227117, 45.9812404 ], + [ 7.3224198, 45.9812168 ], + [ 7.3221344, 45.9811648 ], + [ 7.3218668000000005, 45.9811408 ], + [ 7.3215426, 45.981112 ], + [ 7.321324, 45.9811266 ], + [ 7.3210967, 45.9810907 ], + [ 7.3209177, 45.9810653 ], + [ 7.3206565999999995, 45.9809848 ], + [ 7.3204035, 45.9809212 ], + [ 7.3201835, 45.9808626 ], + [ 7.3199458, 45.9807818 ], + [ 7.3197968, 45.9806603 ], + [ 7.3194497, 45.9804404 ], + [ 7.3191445, 45.9802368 ], + [ 7.3188547, 45.980033 ], + [ 7.3189229000000005, 45.9801614 ], + [ 7.3189589999999995, 45.9802734 ], + [ 7.3189393, 45.9804257 ], + [ 7.3189189, 45.9805442 ], + [ 7.3188508, 45.9806916 ], + [ 7.3187827, 45.980839 ], + [ 7.3186728, 45.9809533 ], + [ 7.3185944, 45.9810333 ], + [ 7.3184441, 45.981165 ], + [ 7.3182858, 45.9812801 ], + [ 7.3181686, 45.9813945 ], + [ 7.3180675, 45.9815368 ], + [ 7.3179283999999996, 45.9817415 ], + [ 7.3178442, 45.9819004 ], + [ 7.31776, 45.9820537 ], + [ 7.3177072, 45.9821896 ], + [ 7.3176545, 45.9823199 ], + [ 7.3175439, 45.9824116 ], + [ 7.3174428, 45.9825258 ], + [ 7.3173732, 45.9826394 ], + [ 7.3172244, 45.9828105 ], + [ 7.3170999, 45.9829701 ], + [ 7.3170575, 45.9831678 ], + [ 7.3170379, 45.9833032 ], + [ 7.3169882, 45.9835291 ], + [ 7.3169231, 45.9837946 ], + [ 7.3168177, 45.9840552 ], + [ 7.3167065000000004, 45.9843665 ], + [ 7.3166787, 45.9845302 ], + [ 7.3166994, 45.9846818 ], + [ 7.3167523, 45.9848161 ], + [ 7.3168617, 45.9849552 ], + [ 7.3169227, 45.9850893 ], + [ 7.3169522, 45.9852521 ], + [ 7.3169156, 45.9853878 ], + [ 7.3168556, 45.9855463 ], + [ 7.3167706, 45.9856715 ], + [ 7.3167678, 45.9858404 ], + [ 7.3168611, 45.9859853 ], + [ 7.3170196, 45.9861349 ], + [ 7.3172662, 45.9862493 ], + [ 7.3176778, 45.9864795 ], + [ 7.3179589, 45.9866609 ], + [ 7.3181461, 45.9869621 ], + [ 7.3180039, 45.9870768 ], + [ 7.3178683, 45.9871521 ], + [ 7.3177415, 45.9872384 ], + [ 7.3176792, 45.9873069 ], + [ 7.3175854, 45.9874153 ], + [ 7.3174836, 45.9875182 ], + [ 7.3173817, 45.9876267 ], + [ 7.3171999, 45.9877814 ], + [ 7.3170988, 45.9879181 ], + [ 7.3170615, 45.9880144 ], + [ 7.3170492, 45.9881216 ], + [ 7.3169473, 45.9882413 ], + [ 7.3170302, 45.9883132 ], + [ 7.3170839, 45.9884644 ], + [ 7.3170788, 45.9885771 ], + [ 7.3170173, 45.9886737 ], + [ 7.3169734, 45.988832 ], + [ 7.3169134, 45.9889792 ], + [ 7.3169091, 45.9891032 ], + [ 7.316896, 45.9892103 ], + [ 7.316869, 45.9893796 ], + [ 7.3167291, 45.9895563 ], + [ 7.3165084, 45.9897679 ], + [ 7.3162701, 45.9899123 ], + [ 7.3158186, 45.9902231 ], + [ 7.3156632, 45.990445 ], + [ 7.3154925, 45.9906728 ], + [ 7.3153856, 45.9908884 ], + [ 7.3152948, 45.9910755 ], + [ 7.3152598, 45.9912562 ], + [ 7.3152789, 45.9913628 ], + [ 7.3153399, 45.9914857 ], + [ 7.3154097, 45.9916704 ], + [ 7.3154319, 45.9918446 ], + [ 7.3154283, 45.9920135 ], + [ 7.3153690000000005, 45.9921721 ], + [ 7.3152679, 45.992303 ], + [ 7.3151587, 45.9924454 ], + [ 7.3150649, 45.9925651 ], + [ 7.3149711, 45.9926735 ], + [ 7.3148942, 45.9927985 ], + [ 7.3148415, 45.9929119 ], + [ 7.3147792, 45.9930086 ], + [ 7.314637, 45.9931121 ], + [ 7.3144148, 45.9932562 ], + [ 7.3147496, 45.9936169 ], + [ 7.3147277, 45.9936849 ], + [ 7.3146749, 45.9938263 ], + [ 7.3146875, 45.9939613 ], + [ 7.3147243, 45.9940958 ], + [ 7.3147684, 45.9942303 ], + [ 7.3147187, 45.9944618 ], + [ 7.3146125, 45.9946886 ], + [ 7.3144917, 45.9949662 ], + [ 7.3143936, 45.9951929 ], + [ 7.3143577, 45.9953511 ], + [ 7.3144099, 45.9954741 ], + [ 7.3144871, 45.9956025 ], + [ 7.3146141, 45.995775 ], + [ 7.3147001, 45.9959369 ], + [ 7.3147038, 45.9960663 ], + [ 7.3146687, 45.996247 ], + [ 7.314578, 45.9964455 ], + [ 7.3144475, 45.9966951 ], + [ 7.3143398, 45.9968768 ], + [ 7.3143121, 45.9970181 ], + [ 7.3143577, 45.9971806 ], + [ 7.3144187, 45.9973316 ], + [ 7.3144643, 45.9974829 ], + [ 7.3144204, 45.9976299 ], + [ 7.3143435, 45.9977663 ], + [ 7.3142181, 45.9979145 ], + [ 7.3140928, 45.9980459 ], + [ 7.3139448, 45.9982283 ], + [ 7.3137402, 45.9984341 ], + [ 7.3134873, 45.9986124 ], + [ 7.3132636, 45.9987115 ], + [ 7.3129585, 45.998795 ], + [ 7.3126857, 45.9988779 ], + [ 7.3124443, 45.9989323 ], + [ 7.3123102, 45.99903 ], + [ 7.3121606, 45.9991674 ], + [ 7.3120176, 45.9992709 ], + [ 7.3117836, 45.9992857 ], + [ 7.3114609, 45.9993188 ], + [ 7.3109848, 45.9993823 ], + [ 7.3107192, 45.9994314 ], + [ 7.3105785, 45.9995799 ], + [ 7.3104627, 45.9997843 ], + [ 7.3103976, 46.0000161 ], + [ 7.3103802, 46.0002416 ], + [ 7.3104507, 46.0004263 ], + [ 7.3104714, 46.0005779 ], + [ 7.3104605, 46.0007526 ], + [ 7.3106264, 46.0008908 ], + [ 7.3106793, 46.0010194 ], + [ 7.310799, 46.0012372 ], + [ 7.3109326, 46.0013702 ], + [ 7.3110098, 46.0014929 ], + [ 7.3110385, 46.0016557 ], + [ 7.3110357, 46.0018134 ], + [ 7.3111062, 46.0020037 ], + [ 7.3112421, 46.0022155 ], + [ 7.3113538, 46.0024221 ], + [ 7.3113421, 46.0025742 ], + [ 7.3112821, 46.0027272 ], + [ 7.3113643, 46.0027597 ], + [ 7.3114883, 46.0028422 ], + [ 7.3115912, 46.0030264 ], + [ 7.3116801, 46.0032896 ], + [ 7.3116223, 46.0035213 ], + [ 7.3116122, 46.0037129 ], + [ 7.3116731999999995, 46.0038639 ], + [ 7.3117665, 46.0040032 ], + [ 7.3119251, 46.0041359 ], + [ 7.3121167, 46.0043188 ], + [ 7.3123083, 46.0045072 ], + [ 7.3126214, 46.0051892 ], + [ 7.3127206, 46.0055367 ], + [ 7.3128312, 46.0062331 ], + [ 7.3129482, 46.006614 ], + [ 7.3130114, 46.0068157 ], + [ 7.3129676, 46.0069628 ], + [ 7.3129163, 46.0071437 ], + [ 7.3128893, 46.0073355 ], + [ 7.3128749, 46.0076397 ], + [ 7.3128273, 46.0079556 ], + [ 7.3128298, 46.0082934 ], + [ 7.312877, 46.0084896 ], + [ 7.3130436, 46.0086672 ], + [ 7.3130973, 46.0088241 ], + [ 7.3130761, 46.0089257 ], + [ 7.3129676, 46.0090794 ], + [ 7.3127799, 46.0092905 ], + [ 7.3127045, 46.0094774 ], + [ 7.3127575, 46.0096061 ], + [ 7.3128523, 46.0097904 ], + [ 7.3128663, 46.0099872 ], + [ 7.3128128, 46.0101062 ], + [ 7.3127147, 46.0103273 ], + [ 7.3125746, 46.0105264 ], + [ 7.3124412, 46.0106635 ], + [ 7.3123305, 46.0107328 ], + [ 7.3122286, 46.0108413 ], + [ 7.3121839, 46.0109658 ], + [ 7.31217, 46.0110448 ], + [ 7.3120923, 46.011153 ], + [ 7.3119985, 46.0112726 ], + [ 7.3118254, 46.0114216 ], + [ 7.3115167, 46.0116459 ], + [ 7.3112863, 46.0118126 ], + [ 7.3113297, 46.0118964 ], + [ 7.3113562, 46.0119692 ], + [ 7.3113357, 46.0120933 ], + [ 7.3112845, 46.0122686 ], + [ 7.3111540999999995, 46.0124957 ], + [ 7.3110097, 46.0128131 ], + [ 7.3108851, 46.0129727 ], + [ 7.3107428, 46.0130762 ], + [ 7.3105894, 46.0131066 ], + [ 7.3105117, 46.0132091 ], + [ 7.3104172, 46.0132894 ], + [ 7.3102345, 46.0134104 ], + [ 7.3099954, 46.013521 ], + [ 7.3097313, 46.0136319 ], + [ 7.309421, 46.0138112 ], + [ 7.3090696, 46.0139741 ], + [ 7.3088789, 46.0140897 ], + [ 7.3088665, 46.0142024 ], + [ 7.3088702, 46.0143431 ], + [ 7.3088778, 46.0145737 ], + [ 7.3088757, 46.0147708 ], + [ 7.3087672, 46.0149414 ], + [ 7.308581, 46.0152031 ], + [ 7.3084021, 46.015431 ], + [ 7.3082605, 46.0155851 ], + [ 7.3080933, 46.0156777 ], + [ 7.3079084, 46.0157143 ], + [ 7.3077176999999995, 46.0158185 ], + [ 7.3074889, 46.0160134 ], + [ 7.3069981, 46.016398 ], + [ 7.3069358, 46.0164778 ], + [ 7.3069007, 46.0166416 ], + [ 7.3068956, 46.0167542 ], + [ 7.3069001, 46.0168836 ], + [ 7.3068547, 46.0169857 ], + [ 7.3067512, 46.0170604 ], + [ 7.3066405, 46.0171465 ], + [ 7.3065297, 46.0172383 ], + [ 7.3064366, 46.0173691 ], + [ 7.3064315, 46.0174593 ], + [ 7.3064256, 46.0175438 ], + [ 7.3063553, 46.0176237 ], + [ 7.3062849, 46.0176867 ], + [ 7.3062129, 46.0177384 ], + [ 7.3060545, 46.0178422 ], + [ 7.3059042, 46.0179514 ], + [ 7.3057846, 46.0180151 ], + [ 7.3056746, 46.0181237 ], + [ 7.3055726, 46.0182266 ], + [ 7.3054641, 46.0183971 ], + [ 7.3053717, 46.0185505 ], + [ 7.305239, 46.0187158 ], + [ 7.3051209, 46.0188133 ], + [ 7.3049947, 46.0189278 ], + [ 7.3049067, 46.0189629 ], + [ 7.3047298, 46.0190219 ], + [ 7.3045949, 46.0190915 ], + [ 7.3044914, 46.0191493 ], + [ 7.304396, 46.0192239 ], + [ 7.3043425, 46.0193148 ], + [ 7.3042875, 46.0193832 ], + [ 7.304234, 46.0194741 ], + [ 7.3042032, 46.0195365 ], + [ 7.3041328, 46.0195994 ], + [ 7.304022, 46.0196912 ], + [ 7.30392, 46.0198053 ], + [ 7.3038042, 46.0199928 ], + [ 7.3037002, 46.0202871 ], + [ 7.2972761, 46.0215721 ], + [ 7.2971608, 46.0215006 ], + [ 7.2970544, 46.0214516 ], + [ 7.2968826, 46.0214147 ], + [ 7.2967381, 46.0214507 ], + [ 7.2966265, 46.02152 ], + [ 7.2965569, 46.0216111 ], + [ 7.2965033, 46.0217132 ], + [ 7.2964594, 46.0218715 ], + [ 7.2963317, 46.021941 ], + [ 7.2962194, 46.0219595 ], + [ 7.2961893, 46.0220557 ], + [ 7.2961263, 46.022096 ], + [ 7.2960036, 46.0220753 ], + [ 7.2957938, 46.0220785 ], + [ 7.2957879, 46.0221687 ], + [ 7.2956779, 46.0222604 ], + [ 7.2955707, 46.022217 ], + [ 7.29552, 46.0221446 ], + [ 7.2954048, 46.0220675 ], + [ 7.2953402, 46.0220854 ], + [ 7.2953029, 46.022176 ], + [ 7.2951612, 46.0223245 ], + [ 7.2950225, 46.0222985 ], + [ 7.294875, 46.0222331 ], + [ 7.2947428, 46.0221563 ], + [ 7.2945981, 46.0219221 ], + [ 7.2943648, 46.0219706 ], + [ 7.2941806, 46.0220466 ], + [ 7.2939994, 46.0222013 ], + [ 7.2938181, 46.0223785 ], + [ 7.2936692, 46.0225384 ], + [ 7.2935695, 46.0227088 ], + [ 7.2934521, 46.02284 ], + [ 7.2933493, 46.0229372 ], + [ 7.2932224, 46.0230292 ], + [ 7.2930647, 46.023161 ], + [ 7.2928658, 46.023271 ], + [ 7.2927154, 46.0233914 ], + [ 7.2925899, 46.0235228 ], + [ 7.2925709, 46.0236977 ], + [ 7.2923941, 46.0237397 ], + [ 7.2924227, 46.0238912 ], + [ 7.2923185, 46.0239266 ], + [ 7.2922723, 46.0239892 ], + [ 7.2921688, 46.0240527 ], + [ 7.2920492, 46.0241333 ], + [ 7.2918907, 46.0242426 ], + [ 7.2918541, 46.0243614 ], + [ 7.2918901, 46.0244847 ], + [ 7.2918527, 46.0245866 ], + [ 7.291791, 46.0246888 ], + [ 7.2917052, 46.0247858 ], + [ 7.2916839, 46.0249043 ], + [ 7.2917361, 46.0250218 ], + [ 7.2917398, 46.0251399 ], + [ 7.2917531, 46.0253086 ], + [ 7.2916922, 46.0254334 ], + [ 7.2915902, 46.0255475 ], + [ 7.2914786, 46.0256111 ], + [ 7.2914809, 46.0256674 ], + [ 7.2915617, 46.0259307 ], + [ 7.2915985, 46.0260709 ], + [ 7.2915838, 46.0261386 ], + [ 7.2915214, 46.0262071 ], + [ 7.2914583, 46.0262756 ], + [ 7.2914209, 46.0263606 ], + [ 7.2912859, 46.0264584 ], + [ 7.2913373, 46.0265477 ], + [ 7.2913902, 46.0266932 ], + [ 7.2915238, 46.0268207 ], + [ 7.2917639, 46.0269972 ], + [ 7.2913829, 46.026986 ], + [ 7.2912141, 46.0270224 ], + [ 7.2912970999999995, 46.0270999 ], + [ 7.2914219, 46.0271937 ], + [ 7.2915768, 46.0272308 ], + [ 7.2917794, 46.027239 ], + [ 7.2919974, 46.0272076 ], + [ 7.2922381, 46.0271364 ], + [ 7.2922101999999995, 46.027294499999996 ], + [ 7.2926301, 46.0272375 ], + [ 7.2924335, 46.0274262 ], + [ 7.2926096, 46.0273672 ], + [ 7.2927549, 46.0273482 ], + [ 7.2929157, 46.0273063 ], + [ 7.2931659, 46.0272744 ], + [ 7.2934243, 46.027248 ], + [ 7.2936408, 46.0271772 ], + [ 7.2938484, 46.0271009 ], + [ 7.2940715, 46.0269737 ], + [ 7.2942242, 46.0269207 ], + [ 7.2943461, 46.0269414 ], + [ 7.2946382, 46.0269595 ], + [ 7.2947351, 46.0269581 ], + [ 7.2950111, 46.0269652 ], + [ 7.2951645, 46.0269516 ], + [ 7.2953825, 46.0269258 ], + [ 7.2955843, 46.0269058 ], + [ 7.2958184, 46.0268911 ], + [ 7.2960606, 46.0268649 ], + [ 7.2963278, 46.0268609 ], + [ 7.296562, 46.0268236 ], + [ 7.2969194, 46.0268632 ], + [ 7.2971954, 46.0268928 ], + [ 7.2973429, 46.0269469 ], + [ 7.2974729, 46.0269618 ], + [ 7.2976835, 46.026953 ], + [ 7.2979338, 46.0269267 ], + [ 7.2980887, 46.0269581 ], + [ 7.2982605, 46.0270175 ], + [ 7.298425, 46.0270882 ], + [ 7.2985562999999996, 46.027165 ], + [ 7.2985366, 46.0273004 ], + [ 7.2985242, 46.02743 ], + [ 7.2984714, 46.027549 ], + [ 7.2983929, 46.0276459 ], + [ 7.2982586, 46.027738 ], + [ 7.298106, 46.0277854 ], + [ 7.2979871, 46.0278772 ], + [ 7.2980855, 46.0279095 ], + [ 7.2982645999999995, 46.0279462 ], + [ 7.298476, 46.0279768 ], + [ 7.2987278, 46.0279899 ], + [ 7.298898, 46.0280098 ], + [ 7.2990779, 46.0280465 ], + [ 7.2989099, 46.0281109 ], + [ 7.2990809, 46.0281478 ], + [ 7.2989282, 46.0282008 ], + [ 7.2990193, 46.02825 ], + [ 7.2991426, 46.0283101 ], + [ 7.2993225, 46.0283581 ], + [ 7.2994524, 46.0283898 ], + [ 7.2996558, 46.028398 ], + [ 7.2998818, 46.0283946 ], + [ 7.3000418, 46.0283303 ], + [ 7.3001291, 46.0282501 ], + [ 7.3002553, 46.0281413 ], + [ 7.3004286, 46.0282513 ], + [ 7.3006877, 46.0282473 ], + [ 7.3007956, 46.0283245 ], + [ 7.3009263, 46.0283732 ], + [ 7.3011876, 46.0284424 ], + [ 7.3016207, 46.0285766 ], + [ 7.3018674, 46.0286967 ], + [ 7.3019277, 46.0288084 ], + [ 7.3018573, 46.0288883 ], + [ 7.3016826, 46.0290091 ], + [ 7.3018544, 46.0290684 ], + [ 7.3017231, 46.0292618 ], + [ 7.3018795, 46.0293495 ], + [ 7.3014979, 46.0295861 ], + [ 7.3015178, 46.0297096 ], + [ 7.3010437, 46.0298294 ], + [ 7.3010613, 46.0298854 ], + [ 7.301195, 46.0299959 ], + [ 7.3013918, 46.030083 ], + [ 7.3015643, 46.0301705 ], + [ 7.301347, 46.0302132 ], + [ 7.3014257, 46.0304034 ], + [ 7.3012319, 46.0304176 ], + [ 7.3013399, 46.030506 ], + [ 7.3009949, 46.0306182 ], + [ 7.3012439, 46.0308002 ], + [ 7.3015332, 46.0309928 ], + [ 7.3017226, 46.0311138 ], + [ 7.3020838, 46.0312547 ], + [ 7.302442, 46.0313281 ], + [ 7.3029817, 46.0314719 ], + [ 7.3036189, 46.0316536 ], + [ 7.3040102000000005, 46.0317434 ], + [ 7.3042546999999995, 46.0317904 ], + [ 7.3044346, 46.0318383 ], + [ 7.304784, 46.0318836 ], + [ 7.3068633, 46.0315481 ], + [ 7.3089481, 46.0316459 ], + [ 7.3092983, 46.0316969 ], + [ 7.3094136, 46.0317514 ], + [ 7.3092213, 46.0318219 ], + [ 7.3090137, 46.0319095 ], + [ 7.3088228, 46.0320419 ], + [ 7.3086321, 46.0321573 ], + [ 7.3060941, 46.0341942 ], + [ 7.3059128, 46.0343546 ], + [ 7.3057382, 46.0344642 ], + [ 7.305562, 46.0345456 ], + [ 7.3052824, 46.0346625 ], + [ 7.3050013, 46.0347399 ], + [ 7.3046790999999995, 46.0348011 ], + [ 7.3042915, 46.034852 ], + [ 7.3038467, 46.0348588 ], + [ 7.3033019, 46.0348051 ], + [ 7.3029348, 46.0347262 ], + [ 7.3028644, 46.0347892 ], + [ 7.302711, 46.0348253 ], + [ 7.302595, 46.0347314 ], + [ 7.3023197, 46.0347412 ], + [ 7.3020532, 46.0347565 ], + [ 7.3018256, 46.0347487 ], + [ 7.3016546, 46.0347006 ], + [ 7.3016442999999995, 46.0346388 ], + [ 7.3017059, 46.0345366 ], + [ 7.3018916, 46.0345 ], + [ 7.3021419, 46.0344793 ], + [ 7.3023276, 46.0344596 ], + [ 7.3023269, 46.0344315 ], + [ 7.3022608, 46.03441 ], + [ 7.3021557999999995, 46.0344003 ], + [ 7.3020178, 46.0343967 ], + [ 7.3017983, 46.0343719 ], + [ 7.301603, 46.0343411 ], + [ 7.3013255, 46.0342778 ], + [ 7.301073, 46.0342253 ], + [ 7.30086, 46.0341666 ], + [ 7.3006075, 46.0341141 ], + [ 7.300435, 46.0340266 ], + [ 7.3002617, 46.033928 ], + [ 7.3001096, 46.033722 ], + [ 7.3000148, 46.0335432 ], + [ 7.2999935, 46.0333634 ], + [ 7.2999691, 46.0330936 ], + [ 7.2998736, 46.0328924 ], + [ 7.297618, 46.0333037 ], + [ 7.297687, 46.0334377 ], + [ 7.2977303, 46.033544 ], + [ 7.297701, 46.0336401 ], + [ 7.2976306, 46.03372 ], + [ 7.2975455, 46.0338395 ], + [ 7.2974509, 46.0339197 ], + [ 7.2973812, 46.0340221 ], + [ 7.2973599, 46.0341238 ], + [ 7.2972821, 46.0342431 ], + [ 7.297186, 46.0342671 ], + [ 7.2969840999999995, 46.0342927 ], + [ 7.2967257, 46.0343247 ], + [ 7.2965246, 46.0343728 ], + [ 7.2963008, 46.034455 ], + [ 7.2961342, 46.0345757 ], + [ 7.2960087, 46.0347071 ], + [ 7.2959331, 46.0348939 ], + [ 7.2958657, 46.0350807 ], + [ 7.2956455, 46.0353036 ], + [ 7.2948023, 46.0360594 ], + [ 7.2945726, 46.0362486 ], + [ 7.2942966, 46.0365004 ], + [ 7.2941404, 46.0366661 ], + [ 7.2939642, 46.0367531 ], + [ 7.2934738, 46.0368731 ], + [ 7.2930011, 46.0370491 ], + [ 7.2925035, 46.0371917 ], + [ 7.2918927, 46.0373528 ], + [ 7.2912585, 46.0375538 ], + [ 7.2909318, 46.0377388 ], + [ 7.2908548, 46.0378526 ], + [ 7.2908042, 46.0380616 ], + [ 7.2907536, 46.0382594 ], + [ 7.2906685, 46.0383845 ], + [ 7.2905738, 46.0384873 ], + [ 7.2904468, 46.0385624 ], + [ 7.2902699, 46.0386044 ], + [ 7.2900849, 46.0386523 ], + [ 7.2898515, 46.0387064 ], + [ 7.2895791, 46.0388118 ], + [ 7.2893553, 46.0388996 ], + [ 7.2891563, 46.0390264 ], + [ 7.288909, 46.0391315 ], + [ 7.2887747, 46.0392461 ], + [ 7.2886492, 46.0393943 ], + [ 7.2885398, 46.0395254 ], + [ 7.2883557, 46.0398491 ], + [ 7.2881824, 46.0400262 ], + [ 7.2880562, 46.0401463 ], + [ 7.2878792, 46.0401883 ], + [ 7.2876935, 46.0402024 ], + [ 7.2875247, 46.0402443 ], + [ 7.2873969, 46.0403082 ], + [ 7.287245, 46.040378 ], + [ 7.2871019, 46.0404533 ], + [ 7.2869477, 46.0404613 ], + [ 7.2867539, 46.0404754 ], + [ 7.2864543, 46.0404743 ], + [ 7.2861548, 46.0404788 ], + [ 7.2859852, 46.0404982 ], + [ 7.2857766999999996, 46.0405689 ], + [ 7.2856432, 46.040706 ], + [ 7.285453, 46.0408439 ], + [ 7.2853194, 46.0409867 ], + [ 7.2852078, 46.0410615 ], + [ 7.2851205, 46.0411191 ], + [ 7.2850104, 46.0412165 ], + [ 7.2849164, 46.0413304 ], + [ 7.2848474, 46.041461 ], + [ 7.2846735, 46.0416043 ], + [ 7.284526, 46.0417979 ], + [ 7.2843696, 46.0419916 ], + [ 7.2842111, 46.042101 ], + [ 7.2841083, 46.0421926 ], + [ 7.2840393, 46.0423287 ], + [ 7.2839806, 46.0425153 ], + [ 7.2838793, 46.0426688 ], + [ 7.283775, 46.0429744 ], + [ 7.2836782, 46.0432348 ], + [ 7.2835138, 46.0434343 ], + [ 7.2834132, 46.0435821 ], + [ 7.2833266, 46.0436791 ], + [ 7.2832158, 46.0437483 ], + [ 7.2830307, 46.0438074 ], + [ 7.2827745, 46.0439125 ], + [ 7.2825352, 46.0440175 ], + [ 7.2822158, 46.0441799 ], + [ 7.2818047, 46.0442422 ], + [ 7.2817834, 46.0443439 ], + [ 7.281829, 46.0445065 ], + [ 7.281884, 46.0447252 ], + [ 7.2820023, 46.0448923 ], + [ 7.2821542, 46.0451039 ], + [ 7.2822563, 46.0452656 ], + [ 7.2823261, 46.0454278 ], + [ 7.2823952, 46.0455563 ], + [ 7.2824722, 46.0457071 ], + [ 7.2825993, 46.0458797 ], + [ 7.2827417, 46.0460464 ], + [ 7.2829576, 46.0462177 ], + [ 7.2832169, 46.0464784 ], + [ 7.2833939, 46.0466953 ], + [ 7.283587, 46.0469176 ], + [ 7.283731, 46.047118 ], + [ 7.2838661, 46.0473187 ], + [ 7.2839271, 46.0474528 ], + [ 7.2840188, 46.0475416 ], + [ 7.2840849, 46.04758 ], + [ 7.2841599, 46.0476464 ], + [ 7.2842759, 46.0477403 ], + [ 7.2843758, 46.0478177 ], + [ 7.2844917, 46.0479172 ], + [ 7.284657, 46.0480217 ], + [ 7.2847826, 46.0481381 ], + [ 7.2849397, 46.0482483 ], + [ 7.2850741, 46.0484095 ], + [ 7.2852489, 46.0485589 ], + [ 7.2854317, 46.0487194 ], + [ 7.2858548, 46.0490226 ], + [ 7.2859708, 46.049111 ], + [ 7.2861852, 46.0492485 ], + [ 7.286302, 46.0493537 ], + [ 7.2864503, 46.0494471 ], + [ 7.2866140999999995, 46.049501 ], + [ 7.2867551, 46.0496058 ], + [ 7.2869284, 46.0496989 ], + [ 7.2871348, 46.0498309 ], + [ 7.2872684, 46.0499696 ], + [ 7.28748, 46.0502592 ], + [ 7.287549, 46.0503932 ], + [ 7.2876408, 46.0504876 ], + [ 7.2877099, 46.050616 ], + [ 7.2877444, 46.0506943 ], + [ 7.2877789, 46.0507725 ], + [ 7.287873, 46.0509287 ], + [ 7.2879501, 46.0510571 ], + [ 7.2880515, 46.0512019 ], + [ 7.2881308, 46.0514146 ], + [ 7.2881999, 46.05156 ], + [ 7.2882903, 46.0518569 ], + [ 7.2883733, 46.0521878 ], + [ 7.2884652, 46.0525523 ], + [ 7.2885498, 46.0529282 ], + [ 7.2886813, 46.0532583 ], + [ 7.2889024, 46.0536096 ], + [ 7.2892249, 46.0540945 ], + [ 7.2893101, 46.0542284 ], + [ 7.28928, 46.0543076 ], + [ 7.2892345, 46.0544096 ], + [ 7.2891956, 46.0544551 ], + [ 7.2891082, 46.0545242 ], + [ 7.2889797, 46.0545598 ], + [ 7.2887786, 46.054591 ], + [ 7.2885905, 46.0545487 ], + [ 7.2883702, 46.0544958 ], + [ 7.2880927, 46.0544154 ], + [ 7.2881962, 46.0546391 ], + [ 7.2882153, 46.0547345 ], + [ 7.2882183, 46.0548189 ], + [ 7.288172, 46.0549153 ], + [ 7.2880722, 46.0550913 ], + [ 7.2880348, 46.0551988 ], + [ 7.2880627, 46.055311 ], + [ 7.2880414, 46.0554239 ], + [ 7.2879636, 46.0555151 ], + [ 7.2879093, 46.0555891 ], + [ 7.2878557, 46.0556969 ], + [ 7.2877456, 46.0558054 ], + [ 7.2876046, 46.0559821 ], + [ 7.2872823, 46.0592349 ], + [ 7.2874909, 46.0594345 ], + [ 7.287789, 46.0596608 ], + [ 7.2880631, 46.0598593 ], + [ 7.2883752, 46.060001 ], + [ 7.2886059, 46.060127 ], + [ 7.2887623, 46.0602034 ], + [ 7.2888791, 46.0603199 ], + [ 7.288979, 46.0604141 ], + [ 7.2892251, 46.0605005 ], + [ 7.291084, 46.0608721 ], + [ 7.2912405, 46.0609373 ], + [ 7.291355, 46.0609807 ], + [ 7.2916304, 46.0609878 ], + [ 7.2919654, 46.0610559 ], + [ 7.292077, 46.060998 ], + [ 7.2921636, 46.0609234 ], + [ 7.2922752, 46.0608542 ], + [ 7.2924361, 46.0608124 ], + [ 7.2926858, 46.0607637 ], + [ 7.293, 46.0607251 ], + [ 7.2934282, 46.060668 ], + [ 7.2940091, 46.0605917 ], + [ 7.2942683, 46.0605822 ], + [ 7.2944726, 46.0606185 ], + [ 7.2947098, 46.0606938 ], + [ 7.2948647, 46.0607477 ], + [ 7.2950939, 46.0608117 ], + [ 7.2952739, 46.0608654 ], + [ 7.2955266, 46.0609066 ], + [ 7.295705, 46.0609264 ], + [ 7.295918, 46.0609851 ], + [ 7.2961714, 46.0610713 ], + [ 7.2963925, 46.0611299 ], + [ 7.2965894, 46.061217 ], + [ 7.2967759, 46.0612312 ], + [ 7.2970382, 46.0613173 ], + [ 7.2972673, 46.061387 ], + [ 7.2974788, 46.0614175 ], + [ 7.2977315, 46.0614531 ], + [ 7.2979753, 46.0614945 ], + [ 7.2983492, 46.0615283 ], + [ 7.2987796, 46.0615443 ], + [ 7.2992569, 46.0615258 ], + [ 7.2995509, 46.0618647 ], + [ 7.2997104, 46.0620255 ], + [ 7.2997206, 46.0621154 ], + [ 7.2997486, 46.0622333 ], + [ 7.2998354, 46.0624121 ], + [ 7.299856, 46.0625637 ], + [ 7.2998789, 46.062766 ], + [ 7.2998745, 46.0628899 ], + [ 7.299904, 46.063064 ], + [ 7.299965, 46.0632039 ], + [ 7.2999687, 46.0633388 ], + [ 7.2999482, 46.0634517 ], + [ 7.2999012, 46.0635031 ], + [ 7.2998476, 46.0636221 ], + [ 7.299811, 46.0637409 ], + [ 7.2998338, 46.0639657 ], + [ 7.299831, 46.0641346 ], + [ 7.2998708, 46.0643704 ], + [ 7.2999098, 46.0645838 ], + [ 7.2999385, 46.0647297 ], + [ 7.2999907, 46.064836 ], + [ 7.3000737, 46.0649134 ], + [ 7.3001428, 46.0650588 ], + [ 7.3001884, 46.0652213 ], + [ 7.3001518, 46.06534 ], + [ 7.3000909, 46.0654761 ], + [ 7.2999654, 46.0655962 ], + [ 7.2998368, 46.0656544 ], + [ 7.2996525, 46.0657191 ], + [ 7.2995182, 46.0658169 ], + [ 7.2993992, 46.0659143 ], + [ 7.2993052, 46.0660115 ], + [ 7.2991863, 46.0661089 ], + [ 7.2991562, 46.0661882 ], + [ 7.2991746, 46.0662554 ], + [ 7.299218, 46.0663393 ], + [ 7.2992685999999996, 46.0664229 ], + [ 7.299354, 46.0665456 ], + [ 7.2994488, 46.0667411 ], + [ 7.2995275, 46.0669144 ], + [ 7.2995312, 46.0670495 ], + [ 7.2994864, 46.0671795 ], + [ 7.2993447, 46.0673169 ], + [ 7.2991046, 46.0674162 ], + [ 7.2988233000000005, 46.0674935 ], + [ 7.2993076, 46.0679477 ], + [ 7.2992701, 46.0680497 ], + [ 7.2992651, 46.0681455 ], + [ 7.2992915, 46.0682239 ], + [ 7.2993283, 46.0683641 ], + [ 7.2993225, 46.0684318 ], + [ 7.2992623, 46.0685846 ], + [ 7.2992359, 46.0687932 ], + [ 7.2992426, 46.0690183 ], + [ 7.2992479, 46.0691872 ], + [ 7.2993112, 46.0693831 ], + [ 7.2993471, 46.0695234 ], + [ 7.2994574, 46.0696681 ], + [ 7.2994597, 46.0697356 ], + [ 7.2994803, 46.0698873 ], + [ 7.2995905, 46.0700545 ], + [ 7.2996582, 46.0701323 ], + [ 7.2997486, 46.0701703 ], + [ 7.2998874, 46.0702188 ], + [ 7.3000681, 46.0702836 ], + [ 7.3002723, 46.0703483 ], + [ 7.3003796, 46.0704028 ], + [ 7.3004384, 46.0704751 ], + [ 7.300434, 46.0706047 ], + [ 7.300357, 46.0707353 ], + [ 7.3002887, 46.0708882 ], + [ 7.3001324, 46.0710764 ], + [ 7.2998944, 46.0712545 ], + [ 7.3023141, 46.083287 ], + [ 7.3024728, 46.0831777 ], + [ 7.3025263, 46.0830924 ], + [ 7.3025725999999995, 46.082996 ], + [ 7.3025615, 46.0829005 ], + [ 7.3025644, 46.0827372 ], + [ 7.3025607, 46.0826134 ], + [ 7.3025973, 46.0824946 ], + [ 7.302634, 46.0823703 ], + [ 7.3027119, 46.0822453 ], + [ 7.3029496, 46.0818194 ], + [ 7.3034959, 46.0811244 ], + [ 7.3036377, 46.0809814 ], + [ 7.3038059, 46.0809114 ], + [ 7.3039594, 46.0808866 ], + [ 7.304121, 46.0808897 ], + [ 7.3042996, 46.0808927 ], + [ 7.3044524, 46.0808452 ], + [ 7.304539, 46.0807709 ], + [ 7.3046573, 46.0806509 ], + [ 7.3047917, 46.0805306 ], + [ 7.3049341, 46.0804158 ], + [ 7.3050935, 46.0803402 ], + [ 7.3052447, 46.0802591 ], + [ 7.3055908, 46.0801694 ], + [ 7.3060095, 46.0800618 ], + [ 7.3063239, 46.0800063 ], + [ 7.3066765, 46.0798715 ], + [ 7.3071907, 46.0797285 ], + [ 7.3074728, 46.079668 ], + [ 7.3077364, 46.0795514 ], + [ 7.3079450999999995, 46.0794638 ], + [ 7.3081271, 46.0793372 ], + [ 7.3083739, 46.0791815 ], + [ 7.3086919, 46.0789683 ], + [ 7.3091273, 46.0786408 ], + [ 7.3098664, 46.0786915 ], + [ 7.3105836, 46.0787932 ], + [ 7.3109414, 46.0788384 ], + [ 7.3111361, 46.0788467 ], + [ 7.3112815, 46.0788333 ], + [ 7.3114674, 46.0787966 ], + [ 7.3116356, 46.0787378 ], + [ 7.3118368, 46.0787009 ], + [ 7.3121712, 46.0787522 ], + [ 7.3125459, 46.078814 ], + [ 7.3130264, 46.0788911 ], + [ 7.3135788999999995, 46.0789165 ], + [ 7.3138221, 46.0789297 ], + [ 7.3140572, 46.0789148 ], + [ 7.3142987999999995, 46.078883 ], + [ 7.3145082, 46.0788347 ], + [ 7.3148218, 46.0787512 ], + [ 7.3151355, 46.078662 ], + [ 7.3154903000000004, 46.0785891 ], + [ 7.3157789, 46.0785058 ], + [ 7.3161117, 46.0785176 ], + [ 7.3164372, 46.0785576 ], + [ 7.3167546, 46.0785866 ], + [ 7.3170405, 46.0786499 ], + [ 7.3173278, 46.0787748 ], + [ 7.3175101, 46.0789016 ], + [ 7.3177255, 46.0790503 ], + [ 7.3178954, 46.0792953 ], + [ 7.3180822, 46.0795627 ], + [ 7.3182521, 46.0798303 ], + [ 7.3185309, 46.0801751 ], + [ 7.3186374, 46.0802241 ], + [ 7.3187609, 46.0802785 ], + [ 7.3188579, 46.0802769 ], + [ 7.3189614, 46.0802135 ], + [ 7.3190399, 46.0801391 ], + [ 7.3192139, 46.0800013 ], + [ 7.3195019, 46.0798562 ], + [ 7.319742, 46.0797625 ], + [ 7.3200313999999995, 46.0796792 ], + [ 7.3203597, 46.0795616 ], + [ 7.3206976, 46.0794777 ], + [ 7.3210847, 46.0793985 ], + [ 7.3212673, 46.0790129 ], + [ 7.3213582, 46.0788145 ], + [ 7.3213868, 46.0786847 ], + [ 7.3214954, 46.0785197 ], + [ 7.3216098, 46.0782816 ], + [ 7.3217654, 46.0780709 ], + [ 7.3219687, 46.0778313 ], + [ 7.3221492, 46.0776372 ], + [ 7.3222982, 46.0774773 ], + [ 7.3224472, 46.0773118 ], + [ 7.3227136, 46.0770319 ], + [ 7.3229015, 46.0768207 ], + [ 7.3230762, 46.0766941 ], + [ 7.3232444, 46.076624 ], + [ 7.3235168999999996, 46.0765298 ], + [ 7.3237812, 46.0764244 ], + [ 7.324006, 46.0763422 ], + [ 7.3241403, 46.0762444 ], + [ 7.324257, 46.0760851 ], + [ 7.3244052, 46.0758801 ], + [ 7.3245908, 46.0755902 ], + [ 7.3247999, 46.0752886 ], + [ 7.3250077000000005, 46.0751898 ], + [ 7.3252178, 46.0751584 ], + [ 7.3254998, 46.0751146 ], + [ 7.3258399, 46.0751038 ], + [ 7.3260889, 46.0750324 ], + [ 7.326451, 46.0749424 ], + [ 7.326902, 46.0748342 ], + [ 7.3275123, 46.0746447 ], + [ 7.3281079, 46.0745173 ], + [ 7.3284788, 46.074444 ], + [ 7.3287932, 46.0743885 ], + [ 7.3289628, 46.0743747 ], + [ 7.3291737, 46.0743771 ], + [ 7.3294087, 46.0743735 ], + [ 7.3297334, 46.0744079 ], + [ 7.3300266, 46.0744259 ], + [ 7.3303433, 46.0744435 ], + [ 7.330781, 46.0744593 ], + [ 7.3312931, 46.0744964 ], + [ 7.3313921, 46.0742867 ], + [ 7.3314741, 46.074066 ], + [ 7.3315738, 46.0738786 ], + [ 7.3317286, 46.073651 ], + [ 7.3318137, 46.0735202 ], + [ 7.3318091, 46.0733683 ], + [ 7.331795, 46.0731714 ], + [ 7.3317308, 46.0729248 ], + [ 7.3317005, 46.0727508 ], + [ 7.3316555, 46.0725995 ], + [ 7.3317244, 46.072469 ], + [ 7.3318264, 46.0723604 ], + [ 7.3319188, 46.0722126 ], + [ 7.3318504, 46.0720898 ], + [ 7.3317893, 46.0719445 ], + [ 7.3317443, 46.0717988 ], + [ 7.3318125, 46.0716514 ], + [ 7.3319387, 46.0715424 ], + [ 7.3320803, 46.0714052 ], + [ 7.3319412, 46.0711033 ], + [ 7.331847, 46.0709303 ], + [ 7.3317778, 46.0707907 ], + [ 7.3316925, 46.0706625 ], + [ 7.3316152, 46.070523 ], + [ 7.3316018, 46.070343 ], + [ 7.3316369, 46.0701793 ], + [ 7.3316588, 46.0701057 ], + [ 7.3317608, 46.0699972 ], + [ 7.3318886, 46.0699333 ], + [ 7.3319517, 46.0698648 ], + [ 7.3320176, 46.0696386 ], + [ 7.3320996, 46.0694235 ], + [ 7.332125, 46.0691979 ], + [ 7.3338554, 46.0682818 ], + [ 7.334704, 46.0684601 ], + [ 7.3347271, 46.0681727 ], + [ 7.334768, 46.0679187 ], + [ 7.3347531, 46.0676994 ], + [ 7.3347616, 46.0674515 ], + [ 7.3347555, 46.0672603 ], + [ 7.334751, 46.067114 ], + [ 7.3347588, 46.0668324 ], + [ 7.334735, 46.066602 ], + [ 7.334712, 46.0663772 ], + [ 7.3346786, 46.066085 ], + [ 7.3346629, 46.0658432 ], + [ 7.3346892, 46.0656401 ], + [ 7.3346331, 46.0653988 ], + [ 7.3349416, 46.0654279 ], + [ 7.3350451, 46.0653644 ], + [ 7.3351486, 46.0653009 ], + [ 7.335341, 46.0652249 ], + [ 7.3354841, 46.065155 ], + [ 7.3356295, 46.0651303 ], + [ 7.3358153, 46.0651049 ], + [ 7.3360746, 46.0651177 ], + [ 7.3362854, 46.0651146 ], + [ 7.3365865, 46.0651605 ], + [ 7.3368877999999995, 46.0651895 ], + [ 7.3371162, 46.0652311 ], + [ 7.3373109, 46.0652394 ], + [ 7.3375863, 46.0652464 ], + [ 7.3378617, 46.0652421 ], + [ 7.3381945, 46.0652371 ], + [ 7.3386242, 46.0652528 ], + [ 7.3389892, 46.0652642 ], + [ 7.3392365999999996, 46.0651252 ], + [ 7.3394347, 46.0649983 ], + [ 7.3396087, 46.0648436 ], + [ 7.3397414, 46.0646895 ], + [ 7.3398507, 46.0645472 ], + [ 7.3399196, 46.0644278 ], + [ 7.3399443, 46.064191 ], + [ 7.3399551, 46.0640108 ], + [ 7.3399997, 46.0638862 ], + [ 7.3400686, 46.0637613 ], + [ 7.3401302, 46.0636478 ], + [ 7.3402549, 46.0634826 ], + [ 7.3403796, 46.0633288 ], + [ 7.3404704, 46.0631134 ], + [ 7.3405532000000004, 46.0629094 ], + [ 7.3406036, 46.0627117 ], + [ 7.3407333, 46.0624451 ], + [ 7.3435566, 46.0625534 ], + [ 7.3438409, 46.0625659 ], + [ 7.3440436, 46.0625683 ], + [ 7.344214, 46.0625769 ], + [ 7.344399, 46.0625402 ], + [ 7.3446568, 46.0624912 ], + [ 7.3450607, 46.0624288 ], + [ 7.3453265, 46.0623851 ], + [ 7.3456519, 46.0624139 ], + [ 7.3459046, 46.0624718 ], + [ 7.3461823, 46.0625463 ], + [ 7.3464366, 46.0626269 ], + [ 7.3466416, 46.0627138 ], + [ 7.3468289, 46.0627276 ], + [ 7.3470478, 46.0627412 ], + [ 7.3473296999999995, 46.0626974 ], + [ 7.3478702, 46.0626046 ], + [ 7.3485237, 46.0625156 ], + [ 7.3489592, 46.0624413 ], + [ 7.3493058, 46.0623683 ], + [ 7.3496443, 46.0623125 ], + [ 7.3500951, 46.0622322 ], + [ 7.3504909, 46.0621698 ], + [ 7.3508779, 46.0621018 ], + [ 7.3511921000000005, 46.0620575 ], + [ 7.3515629, 46.0620011 ], + [ 7.3518845, 46.0619174 ], + [ 7.3520688, 46.0618356 ], + [ 7.3522368, 46.0617824 ], + [ 7.3524211, 46.061695 ], + [ 7.3526038, 46.0615852 ], + [ 7.3528269, 46.0614692 ], + [ 7.3530419, 46.0613477 ], + [ 7.3532562, 46.0611922 ], + [ 7.3534785, 46.0610481 ], + [ 7.3537316, 46.0608584 ], + [ 7.3539443, 46.0606693 ], + [ 7.3540924, 46.0604755 ], + [ 7.354655, 46.060677 ], + [ 7.3547607, 46.0606993 ], + [ 7.3549142, 46.0607103 ], + [ 7.3550846, 46.0606874 ], + [ 7.3552381, 46.0606815 ], + [ 7.3553034, 46.0607265 ], + [ 7.3553687, 46.0607995 ], + [ 7.3554338999999995, 46.0609402 ], + [ 7.3555879, 46.0611145 ], + [ 7.3557024, 46.0612551 ], + [ 7.3557749, 46.0613281 ], + [ 7.3558484, 46.0613393 ], + [ 7.3558888, 46.0613448 ], + [ 7.3560261, 46.061322 ], + [ 7.3562047, 46.0612879 ], + [ 7.3563581, 46.0612594 ], + [ 7.3564882, 46.0612649 ], + [ 7.3566012, 46.0612984 ], + [ 7.3566988, 46.0613489 ], + [ 7.3567399, 46.0614558 ], + [ 7.3568133, 46.0615177 ], + [ 7.3568939, 46.0615738 ], + [ 7.3570488, 46.0617087 ], + [ 7.3572028, 46.0618604 ], + [ 7.3573819, 46.0620291 ], + [ 7.3578125, 46.0624337 ], + [ 7.3579262, 46.062563 ], + [ 7.3580246, 46.0626811 ], + [ 7.3581463, 46.0628386 ], + [ 7.3582115, 46.062968 ], + [ 7.3582606, 46.0631031 ], + [ 7.3583016, 46.0632044 ], + [ 7.3583911, 46.0633225 ], + [ 7.3584886, 46.0634856 ], + [ 7.3586031, 46.0636262 ], + [ 7.3587249, 46.0637217 ], + [ 7.3587894, 46.0637498 ], + [ 7.358871, 46.0637777 ], + [ 7.3589678, 46.0638113 ], + [ 7.3590574, 46.0638788 ], + [ 7.3591307, 46.0639856 ], + [ 7.3592041, 46.0640587 ], + [ 7.3593347, 46.0642443 ], + [ 7.3594645, 46.0644017 ], + [ 7.3595943, 46.0645534 ], + [ 7.359725, 46.0646828 ], + [ 7.3598467, 46.0648065 ], + [ 7.3599686, 46.0648851 ], + [ 7.3601389, 46.0649524 ], + [ 7.3602606999999995, 46.0650422 ], + [ 7.3604552, 46.0651375 ], + [ 7.3605609, 46.0652049 ], + [ 7.3606666, 46.0653118 ], + [ 7.3607803, 46.0654017 ], + [ 7.3609433, 46.065559 ], + [ 7.3611224, 46.0657108 ], + [ 7.3612279, 46.0658626 ], + [ 7.3613424, 46.0660425 ], + [ 7.3614157, 46.0661888 ], + [ 7.3615946, 46.0664308 ], + [ 7.3617009, 46.0666671 ], + [ 7.3618146, 46.0667908 ], + [ 7.3619526, 46.0668749 ], + [ 7.3620826, 46.0669028 ], + [ 7.3621884, 46.0669533 ], + [ 7.362261, 46.0670039 ], + [ 7.3622859, 46.0670545 ], + [ 7.3623108, 46.0671896 ], + [ 7.3623107, 46.0672684 ], + [ 7.3623436, 46.0674316 ], + [ 7.3624499, 46.0676512 ], + [ 7.3624828, 46.0677863 ], + [ 7.3626699, 46.0679775 ], + [ 7.3627998, 46.0681178 ], + [ 7.3629546999999995, 46.0682358 ], + [ 7.3631331, 46.06832 ], + [ 7.3632792, 46.0683479 ], + [ 7.3635142, 46.0683868 ], + [ 7.3636677, 46.0683921 ], + [ 7.3638623, 46.0683805 ], + [ 7.3639674, 46.0683183 ], + [ 7.3640726, 46.0682224 ], + [ 7.3641534, 46.0682166 ], + [ 7.3642752, 46.068284 ], + [ 7.3644131, 46.0684358 ], + [ 7.3644953, 46.0685708 ], + [ 7.3645848, 46.0687282 ], + [ 7.3647234, 46.0689251 ], + [ 7.3649343, 46.0689303 ], + [ 7.365112, 46.0689187 ], + [ 7.3652743, 46.068969 ], + [ 7.3653961, 46.0690589 ], + [ 7.3654937, 46.069177 ], + [ 7.3655994, 46.0692669 ], + [ 7.3657294, 46.0692779 ], + [ 7.3659482, 46.0693338 ], + [ 7.3661671, 46.0693727 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "JBG0025", + "country" : "CHE", + "name" : [ + { + "text" : "Eidgenössisches Jagdbanngebiet Mauvoisin", + "lang" : "de-CH" + }, + { + "text" : "District franc fédéral Mauvoisin", + "lang" : "fr-CH" + }, + { + "text" : "Bandita federale di caccia Mauvoisin", + "lang" : "it-CH" + }, + { + "text" : "Federal Game Reserve Mauvoisin", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.2772144, 47.0250752 ], + [ 8.2645074, 47.013761 ], + [ 8.2372847, 47.0112638 ], + [ 8.1859041, 47.0379216 ], + [ 8.1772449, 47.1136052 ], + [ 8.2622519, 47.1838352 ], + [ 8.3583652, 47.1920757 ], + [ 8.4144702, 47.1620818 ], + [ 8.4073791, 47.1445602 ], + [ 8.4911349, 47.1014166 ], + [ 8.4251016, 47.0431846 ], + [ 8.3383722, 47.0304232 ], + [ 8.3092819, 47.0103174 ], + [ 8.3044324, 47.0069671 ], + [ 8.2772144, 47.0250752 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 120, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "CTR0002", + "country" : "CHE", + "name" : [ + { + "text" : "CTR EMMEN (MIL) 1", + "lang" : "de-CH" + }, + { + "text" : "CTR EMMEN (MIL) 1", + "lang" : "fr-CH" + }, + { + "text" : "CTR EMMEN (MIL) 1", + "lang" : "it-CH" + }, + { + "text" : "CTR EMMEN (MIL) 1", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only permitted from an altitude of 120 m above ground with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Skyguide Special Flight Office", + "lang" : "de-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "it-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "en-GB" + } + ], + "siteURL" : "https://skyguide.ch/services/special-flights", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.0512142, 46.2583861 ], + [ 7.0511422, 46.256031899999996 ], + [ 7.0508926, 46.2536835 ], + [ 7.0504663, 46.2513474 ], + [ 7.0498643, 46.2490299 ], + [ 7.0490883, 46.2467375 ], + [ 7.0481406, 46.2444764 ], + [ 7.0470237, 46.2422528 ], + [ 7.0457407, 46.2400727 ], + [ 7.0442952, 46.2379423 ], + [ 7.042691, 46.2358672 ], + [ 7.0409327, 46.2338532 ], + [ 7.039025, 46.2319058 ], + [ 7.0369732, 46.2300303 ], + [ 7.034783, 46.2282319 ], + [ 7.0324602, 46.2265154 ], + [ 7.0300114, 46.2248856 ], + [ 7.0274431, 46.223347 ], + [ 7.0247625, 46.2219037 ], + [ 7.0219769, 46.2205596 ], + [ 7.0190939, 46.2193185 ], + [ 7.0161214, 46.2181838 ], + [ 7.0130675, 46.2171586 ], + [ 7.0099406, 46.2162456 ], + [ 7.0067493, 46.2154473 ], + [ 7.0035022, 46.214766 ], + [ 7.0002083, 46.214203499999996 ], + [ 6.9968766, 46.2137614 ], + [ 6.9935161, 46.2134408 ], + [ 6.9901362, 46.2132426 ], + [ 6.9867459, 46.2131675 ], + [ 6.9833546, 46.2132155 ], + [ 6.9799714999999996, 46.2133865 ], + [ 6.9766059, 46.2136801 ], + [ 6.9732671, 46.2140955 ], + [ 6.969964, 46.2146315 ], + [ 6.9667059, 46.2152867 ], + [ 6.9635015, 46.2160593 ], + [ 6.9603596, 46.2169472 ], + [ 6.9572889, 46.2179479 ], + [ 6.9542977, 46.2190587 ], + [ 6.9513943, 46.2202766 ], + [ 6.9485865, 46.2215982 ], + [ 6.945882, 46.2230199 ], + [ 6.9432883, 46.2245379 ], + [ 6.9408125, 46.2261479 ], + [ 6.9384614, 46.2278457 ], + [ 6.9362413, 46.2296264 ], + [ 6.9341585, 46.2314853 ], + [ 6.9322185, 46.2334173 ], + [ 6.9304268, 46.2354171 ], + [ 6.9287882, 46.2374791 ], + [ 6.9273073, 46.2395978 ], + [ 6.9259881, 46.2417674 ], + [ 6.9248342, 46.2439819 ], + [ 6.9238489, 46.2462353 ], + [ 6.9230348, 46.2485213 ], + [ 6.9223943, 46.2508338 ], + [ 6.921929, 46.2531664 ], + [ 6.9216403, 46.2555126 ], + [ 6.921529, 46.2578661 ], + [ 6.9215955000000005, 46.2602204 ], + [ 6.9218395, 46.2625691 ], + [ 6.9222604, 46.2649057 ], + [ 6.9228571, 46.2672239 ], + [ 6.923628, 46.2695171 ], + [ 6.924571, 46.2717793 ], + [ 6.9256835, 46.2740041 ], + [ 6.9269625, 46.2761855 ], + [ 6.9284045, 46.2783175 ], + [ 6.9300055, 46.2803941 ], + [ 6.9317612, 46.2824099 ], + [ 6.9336668, 46.2843591 ], + [ 6.9357171, 46.2862364 ], + [ 6.9379064, 46.2880368 ], + [ 6.9402288, 46.2897552 ], + [ 6.9426779, 46.291387 ], + [ 6.9452469, 46.2929276 ], + [ 6.9479289, 46.2943728 ], + [ 6.9507165, 46.2957186 ], + [ 6.953602, 46.2969615 ], + [ 6.9565775, 46.2980978 ], + [ 6.9596349, 46.2991246 ], + [ 6.9627657, 46.300039 ], + [ 6.9659613, 46.3008385 ], + [ 6.9692131, 46.3015209 ], + [ 6.9725119, 46.3020843 ], + [ 6.9758489, 46.3025271 ], + [ 6.9792148, 46.3028482 ], + [ 6.9826003, 46.3030467 ], + [ 6.9859962, 46.303122 ], + [ 6.9893931, 46.303074 ], + [ 6.9927817, 46.3029026 ], + [ 6.9961527, 46.3026085 ], + [ 6.9994968, 46.3021925 ], + [ 7.0028049, 46.3016556 ], + [ 7.0060678, 46.3009993 ], + [ 7.0092766, 46.3002255 ], + [ 7.0124225, 46.2993363 ], + [ 7.0154968, 46.2983341 ], + [ 7.0184911, 46.2972217 ], + [ 7.0213972, 46.2960021 ], + [ 7.024207, 46.2946786 ], + [ 7.026913, 46.293255 ], + [ 7.0295076, 46.2917351 ], + [ 7.0319838, 46.2901231 ], + [ 7.0343347, 46.2884235 ], + [ 7.0365539, 46.2866408 ], + [ 7.0386354, 46.28478 ], + [ 7.0405734, 46.2828462 ], + [ 7.0423626, 46.2808447 ], + [ 7.0439982, 46.278781 ], + [ 7.0454757, 46.2766607 ], + [ 7.046791, 46.2744897 ], + [ 7.0479405, 46.272274 ], + [ 7.0489211, 46.2700195 ], + [ 7.0497302, 46.2677326 ], + [ 7.0503656, 46.2654194 ], + [ 7.0508254, 46.2630863 ], + [ 7.0511086, 46.2607398 ], + [ 7.0512142, 46.2583861 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSGB001", + "country" : "CHE", + "name" : [ + { + "text" : "LSGB Bex", + "lang" : "de-CH" + }, + { + "text" : "LSGB Bex", + "lang" : "fr-CH" + }, + { + "text" : "LSGB Bex", + "lang" : "it-CH" + }, + { + "text" : "LSGB Bex", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "AéroBex Aérodrome Bex Chablais", + "lang" : "de-CH" + }, + { + "text" : "AéroBex Aérodrome Bex Chablais", + "lang" : "fr-CH" + }, + { + "text" : "AéroBex Aérodrome Bex Chablais", + "lang" : "it-CH" + }, + { + "text" : "AéroBex Aérodrome Bex Chablais", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Chef d'aérodrome", + "lang" : "de-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "fr-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "it-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Philippe Manuel", + "lang" : "de-CH" + }, + { + "text" : "Philippe Manuel", + "lang" : "fr-CH" + }, + { + "text" : "Philippe Manuel", + "lang" : "it-CH" + }, + { + "text" : "Philippe Manuel", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.aerobex.ch/informations/drones.html", + "email" : "chefdeplace@aerobex.ch", + "phone" : "0041762324225", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5367938, 47.4556772 ], + [ 7.5363096, 47.4556224 ], + [ 7.5362424, 47.4556149 ], + [ 7.5362274, 47.4557286 ], + [ 7.5358214, 47.455733 ], + [ 7.5354293, 47.4557363 ], + [ 7.5354154, 47.4558478 ], + [ 7.5353769, 47.4559142 ], + [ 7.5353632, 47.4559378 ], + [ 7.5350361, 47.4559958 ], + [ 7.5345796, 47.4561034 ], + [ 7.5341684, 47.4561427 ], + [ 7.5341602, 47.4561435 ], + [ 7.5341585, 47.4561503 ], + [ 7.5341376, 47.4562598 ], + [ 7.5341315, 47.4562643 ], + [ 7.5341474, 47.4562654 ], + [ 7.5349452, 47.4563128 ], + [ 7.5357168, 47.4562254 ], + [ 7.5365732, 47.4562699 ], + [ 7.5369461, 47.4562906 ], + [ 7.5367938, 47.4556772 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns131", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Blauenweid", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Blauenweid", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Blauenweid", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Blauenweid", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.226702, 47.6043663 ], + [ 8.2265405, 47.6043505 ], + [ 8.226251, 47.6043884 ], + [ 8.2260273, 47.6044358 ], + [ 8.2257978, 47.6045399 ], + [ 8.225626, 47.6046156 ], + [ 8.2254179, 47.6047089 ], + [ 8.2252394, 47.6048279 ], + [ 8.2250751, 47.6049035 ], + [ 8.2249041, 47.6050342 ], + [ 8.2247826, 47.6051323 ], + [ 8.2247007, 47.6052163 ], + [ 8.2246483, 47.6053291 ], + [ 8.224656, 47.6053965 ], + [ 8.2246744, 47.6054593 ], + [ 8.2247696, 47.6055486 ], + [ 8.2248274, 47.6055744 ], + [ 8.2249382, 47.6055916 ], + [ 8.2250045, 47.6055841 ], + [ 8.22517, 47.6055324 ], + [ 8.225316, 47.6054561 ], + [ 8.2254214, 47.6053879 ], + [ 8.2256185, 47.605284 ], + [ 8.2258083, 47.6051919 ], + [ 8.2259626, 47.6051178 ], + [ 8.2260883, 47.6050711 ], + [ 8.2261707, 47.6050248 ], + [ 8.2266993, 47.6049104 ], + [ 8.2268952, 47.6047843 ], + [ 8.2269503, 47.6046895 ], + [ 8.2269451, 47.6045591 ], + [ 8.226859900000001, 47.6044211 ], + [ 8.226702, 47.6043663 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "WZV0019", + "country" : "CHE", + "name" : [ + { + "text" : "Wasser- und Zugvogelreservat Klingnauerstausee", + "lang" : "de-CH" + }, + { + "text" : "Réserve d'oiseaux d'eau et de migrateurs Klingnauerstausee", + "lang" : "fr-CH" + }, + { + "text" : "Riserva di uccelli acquatici e migratori Klingnauerstausee", + "lang" : "it-CH" + }, + { + "text" : "Water Bird and Migratory Bird Reserves Klingnauerstausee", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7443432, 47.4977556 ], + [ 7.7444645, 47.4980094 ], + [ 7.7447135, 47.4980701 ], + [ 7.7447867, 47.4982652 ], + [ 7.7447304, 47.4983668 ], + [ 7.7446347, 47.4985396 ], + [ 7.7444919, 47.4990222 ], + [ 7.7447351, 47.4987667 ], + [ 7.7448764, 47.4987049 ], + [ 7.7451561, 47.4986837 ], + [ 7.7454519, 47.4986646 ], + [ 7.7456052, 47.4986401 ], + [ 7.7457364, 47.4986623 ], + [ 7.7458821, 47.4986682 ], + [ 7.7461226, 47.4986479 ], + [ 7.7461247, 47.4986469 ], + [ 7.7458981, 47.4983906 ], + [ 7.7452273, 47.4978369 ], + [ 7.7447326, 47.4977499 ], + [ 7.7443432, 47.4977556 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr153", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Gmeinacher", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Gmeinacher", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Gmeinacher", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Gmeinacher", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.882519, 46.3463224 ], + [ 6.8825151, 46.3461812 ], + [ 6.8825005, 46.3460402 ], + [ 6.8824753, 46.3459 ], + [ 6.8824396, 46.3457609 ], + [ 6.8823934, 46.3456233 ], + [ 6.8823368, 46.3454876 ], + [ 6.8822700999999995, 46.345354 ], + [ 6.8821933, 46.3452231 ], + [ 6.8821068, 46.3450952 ], + [ 6.8820108, 46.3449705 ], + [ 6.8819054, 46.3448495 ], + [ 6.881791, 46.3447325 ], + [ 6.881668, 46.3446198 ], + [ 6.8815366000000004, 46.3445118 ], + [ 6.8813972, 46.3444086 ], + [ 6.8812502, 46.3443106 ], + [ 6.8810961, 46.3442181 ], + [ 6.8809351, 46.3441313 ], + [ 6.8807678, 46.3440504 ], + [ 6.8805946, 46.3439757 ], + [ 6.880416, 46.3439074 ], + [ 6.8802325, 46.3438457 ], + [ 6.8800446, 46.3437907 ], + [ 6.8798528, 46.3437426 ], + [ 6.8796576, 46.3437015 ], + [ 6.8794596, 46.3436675 ], + [ 6.8792592, 46.3436408 ], + [ 6.8790572, 46.3436214 ], + [ 6.8788539, 46.3436093 ], + [ 6.87865, 46.3436046 ], + [ 6.878446, 46.3436072 ], + [ 6.8782425, 46.3436173 ], + [ 6.8780401, 46.3436348 ], + [ 6.8778392, 46.3436595 ], + [ 6.8776405, 46.3436915 ], + [ 6.8774445, 46.3437307 ], + [ 6.8772517, 46.3437769 ], + [ 6.8770627, 46.34383 ], + [ 6.8768779, 46.3438899 ], + [ 6.8766979, 46.3439564 ], + [ 6.8765232, 46.3440294 ], + [ 6.8763543, 46.3441086 ], + [ 6.8761915, 46.3441938 ], + [ 6.8760355, 46.3442848 ], + [ 6.8758865, 46.3443813 ], + [ 6.875745, 46.3444831 ], + [ 6.8756114, 46.3445898 ], + [ 6.875486, 46.3447013 ], + [ 6.8753692, 46.3448172 ], + [ 6.8752614, 46.3449371 ], + [ 6.8751628, 46.3450608 ], + [ 6.8750736, 46.3451879 ], + [ 6.8749942, 46.345318 ], + [ 6.8749247, 46.3454508 ], + [ 6.8748653, 46.345586 ], + [ 6.8748163, 46.3457231 ], + [ 6.8747777, 46.3458619 ], + [ 6.8747495999999995, 46.3460018 ], + [ 6.8747321, 46.3461426 ], + [ 6.8747253, 46.3462838 ], + [ 6.8747292, 46.3464251 ], + [ 6.8747437, 46.346566 ], + [ 6.8747689, 46.3467062 ], + [ 6.8748046, 46.3468453 ], + [ 6.8748508, 46.3469829 ], + [ 6.8749073, 46.3471187 ], + [ 6.8749741, 46.3472522 ], + [ 6.8750508, 46.3473831 ], + [ 6.8751373000000005, 46.3475111 ], + [ 6.8752333, 46.3476357 ], + [ 6.8753387, 46.3477567 ], + [ 6.875453, 46.3478737 ], + [ 6.8755761, 46.3479864 ], + [ 6.8757075, 46.3480945 ], + [ 6.8758468, 46.3481977 ], + [ 6.8759938, 46.3482957 ], + [ 6.876148, 46.3483882 ], + [ 6.876309, 46.348475 ], + [ 6.8764763, 46.3485559 ], + [ 6.8766495, 46.3486306 ], + [ 6.8768281, 46.3486989 ], + [ 6.8770116, 46.3487606 ], + [ 6.8771995, 46.3488156 ], + [ 6.8773914, 46.3488637 ], + [ 6.8775866, 46.3489048 ], + [ 6.8777846, 46.3489388 ], + [ 6.877985, 46.3489656 ], + [ 6.878187, 46.348985 ], + [ 6.8783902999999995, 46.3489971 ], + [ 6.8785942, 46.3490018 ], + [ 6.8787982, 46.3489991 ], + [ 6.8790018, 46.348989 ], + [ 6.8792042, 46.3489716 ], + [ 6.8794051, 46.3489468 ], + [ 6.8796038, 46.3489148 ], + [ 6.8797999, 46.3488757 ], + [ 6.8799927, 46.3488295 ], + [ 6.8801817, 46.3487763 ], + [ 6.8803665, 46.3487164 ], + [ 6.8805465, 46.3486499 ], + [ 6.8807212, 46.3485769 ], + [ 6.8808902, 46.3484977 ], + [ 6.8810529, 46.3484125 ], + [ 6.881209, 46.3483215 ], + [ 6.881358, 46.348225 ], + [ 6.8814995, 46.3481232 ], + [ 6.8816331, 46.3480164 ], + [ 6.8817584, 46.347905 ], + [ 6.8818752, 46.3477891 ], + [ 6.881983, 46.3476692 ], + [ 6.8820817, 46.3475455 ], + [ 6.8821708, 46.3474184 ], + [ 6.8822502, 46.3472882 ], + [ 6.8823197, 46.3471554 ], + [ 6.882379, 46.3470202 ], + [ 6.8824281, 46.3468831 ], + [ 6.8824667, 46.3467443 ], + [ 6.8824947, 46.3466044 ], + [ 6.8825122, 46.3464636 ], + [ 6.882519, 46.3463224 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0027", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Chavalon", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Chavalon", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Chavalon", + "lang" : "it-CH" + }, + { + "text" : "Substation Chavalon", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8955114, 47.410246 ], + [ 7.8955274, 47.4104127 ], + [ 7.8955704, 47.4105699 ], + [ 7.8956686, 47.4107714 ], + [ 7.8954905, 47.4109031 ], + [ 7.8954493, 47.410913 ], + [ 7.8954492, 47.4109363 ], + [ 7.8954486, 47.4110444 ], + [ 7.8954069, 47.4111573 ], + [ 7.8953511, 47.4113302 ], + [ 7.8952646, 47.4114871 ], + [ 7.8950382, 47.4116662 ], + [ 7.8950222, 47.4117966 ], + [ 7.8948912, 47.4118806 ], + [ 7.894789, 47.4119525 ], + [ 7.8946779, 47.4121203 ], + [ 7.8946111, 47.4122454 ], + [ 7.8944617, 47.4123233 ], + [ 7.8944462, 47.4123876 ], + [ 7.8944596, 47.4124701 ], + [ 7.8945038, 47.4125844 ], + [ 7.8945592, 47.4126734 ], + [ 7.8946379, 47.4127507 ], + [ 7.8948296, 47.4128986 ], + [ 7.8949313, 47.4128345 ], + [ 7.8947766, 47.4127369 ], + [ 7.8946947, 47.4126631 ], + [ 7.8946206, 47.4125639 ], + [ 7.8945802, 47.4124691 ], + [ 7.8945723999999995, 47.4124129 ], + [ 7.8945758999999995, 47.4123395 ], + [ 7.8946927, 47.4122571 ], + [ 7.8948187, 47.4121101 ], + [ 7.8949493, 47.4120081 ], + [ 7.8950242, 47.4119041 ], + [ 7.8950379, 47.4118837 ], + [ 7.8950701, 47.4117939 ], + [ 7.8951039, 47.4116808 ], + [ 7.8951169, 47.4116637 ], + [ 7.8952991, 47.4115089 ], + [ 7.8953809, 47.4113605 ], + [ 7.8954955, 47.4110612 ], + [ 7.8954917, 47.4109361 ], + [ 7.8957072, 47.4109004 ], + [ 7.8957505, 47.4108892 ], + [ 7.8957096, 47.4107458 ], + [ 7.8956129, 47.4105574 ], + [ 7.8955776, 47.4104175 ], + [ 7.89556, 47.4102434 ], + [ 7.8955275, 47.410088 ], + [ 7.895517, 47.4099369 ], + [ 7.8953941, 47.4098765 ], + [ 7.8955114, 47.410246 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns023", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Mapprach - Hofmatt", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Mapprach - Hofmatt", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Mapprach - Hofmatt", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Mapprach - Hofmatt", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.0979973, 45.9318058 ], + [ 7.0980939, 45.9319474 ], + [ 7.0981414, 45.9320883 ], + [ 7.0981326, 45.932201 ], + [ 7.0981076, 45.9323304 ], + [ 7.0980748, 45.9324317 ], + [ 7.0980332, 45.9325104 ], + [ 7.0980166, 45.9325892 ], + [ 7.0979919, 45.9326735 ], + [ 7.0979184, 45.9328253 ], + [ 7.0978203, 45.9329263 ], + [ 7.0975845, 45.9331395 ], + [ 7.0975035, 45.933218 ], + [ 7.097479, 45.933263 ], + [ 7.0974624, 45.9333474 ], + [ 7.0974375, 45.9334599 ], + [ 7.0973473, 45.9335779 ], + [ 7.0972825, 45.9336395 ], + [ 7.0972096, 45.9336956 ], + [ 7.0971438, 45.9337742 ], + [ 7.0969986, 45.9338131 ], + [ 7.0969167, 45.9338973 ], + [ 7.0969325, 45.933948 ], + [ 7.0969973, 45.9340158 ], + [ 7.0970774, 45.934095 ], + [ 7.0971814, 45.9342137 ], + [ 7.0972212, 45.9342926 ], + [ 7.0972447, 45.9343885 ], + [ 7.0972924, 45.9344957 ], + [ 7.0973078, 45.934614 ], + [ 7.0973147, 45.9348055 ], + [ 7.0972894, 45.9349744 ], + [ 7.09724, 45.9351488 ], + [ 7.097199, 45.9352669 ], + [ 7.0971491, 45.9353794 ], + [ 7.0971402, 45.9355201 ], + [ 7.0971313, 45.935643999999996 ], + [ 7.0971228, 45.9357228 ], + [ 7.0970657, 45.9358352 ], + [ 7.0969838, 45.9359081 ], + [ 7.0968788, 45.9359585 ], + [ 7.0967407, 45.9360086 ], + [ 7.0966517, 45.936059 ], + [ 7.0965703, 45.9361882 ], + [ 7.0964802, 45.9362949 ], + [ 7.096302, 45.9363224 ], + [ 7.0963251, 45.9364858 ], + [ 7.0963814, 45.9366324 ], + [ 7.0964688, 45.9368242 ], + [ 7.0965404, 45.9369766 ], + [ 7.09662, 45.9371402 ], + [ 7.0966673, 45.9372981 ], + [ 7.0967465, 45.9375293 ], + [ 7.0967773, 45.9377435 ], + [ 7.0967839, 45.9379913 ], + [ 7.0967659, 45.9382784 ], + [ 7.0967319, 45.9385712 ], + [ 7.0966387, 45.9391678 ], + [ 7.0966216, 45.9393311 ], + [ 7.096701, 45.9395116 ], + [ 7.0967969, 45.9396415 ], + [ 7.096893, 45.9397433 ], + [ 7.0969253, 45.9398616 ], + [ 7.0968917, 45.9399404 ], + [ 7.0968509, 45.9400303 ], + [ 7.0968098, 45.9401484 ], + [ 7.0967609, 45.940244 ], + [ 7.0966304, 45.9403618 ], + [ 7.0965334, 45.9404065 ], + [ 7.0963791, 45.9404679 ], + [ 7.0962738, 45.9405576 ], + [ 7.0962403, 45.9406251 ], + [ 7.0962559, 45.9407096 ], + [ 7.0962952, 45.9408674 ], + [ 7.0963674, 45.9410536 ], + [ 7.0964705, 45.941313 ], + [ 7.0965575, 45.9415837 ], + [ 7.0966368, 45.9417811 ], + [ 7.09662, 45.9418936 ], + [ 7.0965468, 45.942006 ], + [ 7.0965047, 45.9421692 ], + [ 7.096487, 45.9424226 ], + [ 7.0965426, 45.9425523 ], + [ 7.0965978, 45.9427384 ], + [ 7.0967105, 45.9428965 ], + [ 7.0968305, 45.9430265 ], + [ 7.0969104, 45.9431338 ], + [ 7.0970233, 45.9432581 ], + [ 7.0971436, 45.9433543 ], + [ 7.0973129, 45.9434732 ], + [ 7.0974895, 45.9435865 ], + [ 7.0976427, 45.9436997 ], + [ 7.0978032, 45.9438074 ], + [ 7.0979483, 45.9439318 ], + [ 7.0980362, 45.9440504 ], + [ 7.0981156, 45.944236599999996 ], + [ 7.098228, 45.9444397 ], + [ 7.0983321, 45.9445528 ], + [ 7.0984203, 45.9446263 ], + [ 7.0985244, 45.9447224 ], + [ 7.098661, 45.9449144 ], + [ 7.0987887, 45.9451177 ], + [ 7.0990696, 45.9454341 ], + [ 7.0991734, 45.9455978 ], + [ 7.0993503, 45.94579 ], + [ 7.0994141, 45.9458972 ], + [ 7.0994458, 45.9459874 ], + [ 7.0994934, 45.9461059 ], + [ 7.0995489, 45.9462525 ], + [ 7.0996051, 45.9464161 ], + [ 7.0996605, 45.9465853 ], + [ 7.0997482, 45.9467433 ], + [ 7.0998278, 45.94689 ], + [ 7.0998672, 45.9470478 ], + [ 7.0999468, 45.9472002 ], + [ 7.1000671, 45.9474316 ], + [ 7.1001465, 45.9476177 ], + [ 7.1002104, 45.9477081 ], + [ 7.1003959, 45.9478214 ], + [ 7.1004682, 45.9478611 ], + [ 7.1005722, 45.9479854 ], + [ 7.1006523, 45.9480702 ], + [ 7.1007566, 45.9482733 ], + [ 7.1008443, 45.9484369 ], + [ 7.1009803, 45.9485896 ], + [ 7.1010693, 45.9486687 ], + [ 7.1011977, 45.9487537 ], + [ 7.1014074, 45.9488727 ], + [ 7.1016568, 45.9490764 ], + [ 7.101656, 45.9492003 ], + [ 7.1016794, 45.94933 ], + [ 7.1017435, 45.9493921 ], + [ 7.1018319, 45.9494319 ], + [ 7.1019122, 45.9494772 ], + [ 7.1020898, 45.949568 ], + [ 7.1022432, 45.949653 ], + [ 7.1023714, 45.9497662 ], + [ 7.1024834, 45.9499073 ], + [ 7.102547, 45.9500541 ], + [ 7.1026033, 45.9502063 ], + [ 7.1026265, 45.9503584 ], + [ 7.1026419, 45.9504824 ], + [ 7.102673, 45.9506627 ], + [ 7.1026965, 45.9507698 ], + [ 7.1028002, 45.9509448 ], + [ 7.1030384, 45.9515314 ], + [ 7.1033646, 45.9523662 ], + [ 7.1033798, 45.9525127 ], + [ 7.1033955, 45.9525915 ], + [ 7.1033786, 45.9527098 ], + [ 7.1033776, 45.952867499999996 ], + [ 7.1034008, 45.9530309 ], + [ 7.1034483, 45.9531718 ], + [ 7.1035122, 45.9532622 ], + [ 7.1035841, 45.9533751 ], + [ 7.1036888, 45.9535219 ], + [ 7.1037848, 45.953635 ], + [ 7.1038808, 45.9537592 ], + [ 7.1039123, 45.9538832 ], + [ 7.1039436, 45.9540241 ], + [ 7.1039508, 45.9541762 ], + [ 7.103966, 45.9543171 ], + [ 7.1039891, 45.9544917 ], + [ 7.1040286, 45.9546383 ], + [ 7.1040999, 45.9548301 ], + [ 7.1041795, 45.9549993 ], + [ 7.1043805, 45.9552197 ], + [ 7.1045003, 45.9554003 ], + [ 7.1045973, 45.9554852 ], + [ 7.1046693, 45.9555756 ], + [ 7.1048135, 45.9557226 ], + [ 7.1049185, 45.9558187 ], + [ 7.1049987, 45.9558753 ], + [ 7.1051362, 45.9559434 ], + [ 7.1052809, 45.9560002 ], + [ 7.1053934, 45.9560513 ], + [ 7.1054745, 45.9561079 ], + [ 7.1055463, 45.9562265 ], + [ 7.1055861, 45.9563224 ], + [ 7.1056097, 45.9564126 ], + [ 7.1056493, 45.956531 ], + [ 7.105689, 45.9566325 ], + [ 7.1056642, 45.9567282 ], + [ 7.1055989, 45.9568631 ], + [ 7.1056466, 45.9569703 ], + [ 7.1057185, 45.9570775 ], + [ 7.1057905, 45.9571623 ], + [ 7.1059357, 45.9572868 ], + [ 7.1060233, 45.9574504 ], + [ 7.1061194, 45.9575633 ], + [ 7.1062321, 45.9577102 ], + [ 7.106288, 45.9578005 ], + [ 7.1063198, 45.9578852 ], + [ 7.1063352, 45.9579922 ], + [ 7.1063345, 45.9581048 ], + [ 7.1063422, 45.9581781 ], + [ 7.1063899, 45.9582796 ], + [ 7.1063974, 45.9583754 ], + [ 7.1064127, 45.9585162 ], + [ 7.1065164, 45.9586912 ], + [ 7.1066207, 45.9587648 ], + [ 7.1067582, 45.9588329 ], + [ 7.1069359, 45.9588955 ], + [ 7.1070727, 45.9589467 ], + [ 7.1071929, 45.9590598 ], + [ 7.1073623, 45.9591674 ], + [ 7.1075637, 45.9593259 ], + [ 7.1079426, 45.9594568 ], + [ 7.1080392, 45.9594853 ], + [ 7.108177, 45.959497 ], + [ 7.1083381, 45.9595201 ], + [ 7.1085079, 45.9595658 ], + [ 7.1086122, 45.9596394 ], + [ 7.1087012, 45.9597299 ], + [ 7.1087652, 45.959809 ], + [ 7.1088291, 45.959899300000004 ], + [ 7.1088284999999996, 45.9600063 ], + [ 7.1088199, 45.9600964 ], + [ 7.1088192, 45.9602091 ], + [ 7.1088185, 45.9603217 ], + [ 7.1088339, 45.9604513 ], + [ 7.1088895, 45.960581 ], + [ 7.1089935, 45.9607109 ], + [ 7.1091621, 45.960965 ], + [ 7.1092423, 45.9610385 ], + [ 7.109266, 45.9611174 ], + [ 7.1092653, 45.9612301 ], + [ 7.1092565, 45.9613539 ], + [ 7.1093043, 45.9614386 ], + [ 7.1093841, 45.9615741 ], + [ 7.1094801, 45.9616983 ], + [ 7.1095448, 45.9618112 ], + [ 7.1095764, 45.961907 ], + [ 7.1095518, 45.9619858 ], + [ 7.1095263, 45.9620646 ], + [ 7.1094853, 45.962177 ], + [ 7.1094846, 45.9622953 ], + [ 7.1095405, 45.96238 ], + [ 7.1096534, 45.9625043 ], + [ 7.1098137, 45.9626682 ], + [ 7.1099428, 45.962787 ], + [ 7.1099583, 45.9628828 ], + [ 7.1099246, 45.9629953 ], + [ 7.1098514, 45.9630908 ], + [ 7.1097371, 45.9631973 ], + [ 7.1096641, 45.9632703 ], + [ 7.1096396, 45.9633378 ], + [ 7.1096389, 45.9634391 ], + [ 7.1096304, 45.9635236 ], + [ 7.1096378, 45.9636362 ], + [ 7.1096289, 45.9637601 ], + [ 7.1096201, 45.963884 ], + [ 7.1096023, 45.9640304 ], + [ 7.1096016, 45.964143 ], + [ 7.1096251, 45.9642726 ], + [ 7.1096646, 45.9644079 ], + [ 7.1097529, 45.9645942 ], + [ 7.1098246, 45.9647352 ], + [ 7.109904, 45.9649439 ], + [ 7.1099517, 45.9650567 ], + [ 7.109967, 45.9651919 ], + [ 7.1099503, 45.9652932 ], + [ 7.1099013, 45.9653832 ], + [ 7.1098353, 45.9655012 ], + [ 7.1097784, 45.9655911 ], + [ 7.1097373, 45.9657092 ], + [ 7.1097766, 45.9658839 ], + [ 7.1097439, 45.9659627 ], + [ 7.1096297, 45.9660468 ], + [ 7.1095486, 45.9661253 ], + [ 7.1094916, 45.9662152 ], + [ 7.1094901, 45.9663391 ], + [ 7.1095134, 45.9664744 ], + [ 7.1095621, 45.966559 ], + [ 7.1096259, 45.9666719 ], + [ 7.1097543, 45.9667681 ], + [ 7.1098673, 45.9668811 ], + [ 7.1099471, 45.9670167 ], + [ 7.1100673, 45.9671466 ], + [ 7.1101725, 45.9672202 ], + [ 7.1103413, 45.9672941 ], + [ 7.1105032, 45.9673228 ], + [ 7.1107455999999996, 45.9673744 ], + [ 7.1110685, 45.9674375 ], + [ 7.1113108, 45.9674947 ], + [ 7.1114796, 45.9675798 ], + [ 7.1116892, 45.967727 ], + [ 7.1118664, 45.9678853 ], + [ 7.1119864, 45.9680322 ], + [ 7.1120017, 45.9681675 ], + [ 7.1119281, 45.9683474 ], + [ 7.1118134, 45.968516 ], + [ 7.1116179, 45.968718 ], + [ 7.1114223, 45.9689369 ], + [ 7.1111133, 45.96924 ], + [ 7.111039, 45.9693862 ], + [ 7.110981, 45.969645 ], + [ 7.1110607, 45.9698086 ], + [ 7.1111655, 45.9699329 ], + [ 7.1113179, 45.970063 ], + [ 7.1115194, 45.9702102 ], + [ 7.1117201, 45.9703573 ], + [ 7.1118088, 45.9704928 ], + [ 7.1119047, 45.970634 ], + [ 7.1120808, 45.970843 ], + [ 7.1122176, 45.9710294 ], + [ 7.1122811, 45.971193 ], + [ 7.1122724999999996, 45.971283 ], + [ 7.1123117, 45.9714578 ], + [ 7.112383, 45.9716721 ], + [ 7.1124217, 45.9719538 ], + [ 7.1125012, 45.9721287 ], + [ 7.1126382, 45.9722813 ], + [ 7.1128389, 45.9724228 ], + [ 7.1130004, 45.9725248 ], + [ 7.1131528, 45.9726492 ], + [ 7.1132418, 45.972734 ], + [ 7.1132652, 45.9728581 ], + [ 7.1132566, 45.9729594 ], + [ 7.1132716, 45.9731341 ], + [ 7.1133673, 45.9733259 ], + [ 7.1134952, 45.9734953 ], + [ 7.1136324, 45.9736141 ], + [ 7.1137609, 45.9736934 ], + [ 7.1139546, 45.9738012 ], + [ 7.1141395, 45.9738976 ], + [ 7.1143005, 45.9740728 ], + [ 7.1143962, 45.9742534 ], + [ 7.1145649, 45.9744905 ], + [ 7.114661, 45.9746091 ], + [ 7.1148051, 45.9747842 ], + [ 7.1149905, 45.9749201 ], + [ 7.1151922, 45.9750334 ], + [ 7.1153532, 45.9750847 ], + [ 7.1155471, 45.9751474 ], + [ 7.1156675, 45.9752379 ], + [ 7.1157966, 45.9753623 ], + [ 7.1159007, 45.9754922 ], + [ 7.1160537, 45.9756562 ], + [ 7.1161736, 45.9758312 ], + [ 7.1163097, 45.975995 ], + [ 7.1164063, 45.9761643 ], + [ 7.1165664, 45.9763677 ], + [ 7.1167198, 45.976464 ], + [ 7.1168889, 45.9764984 ], + [ 7.1170833, 45.9764991 ], + [ 7.1172696, 45.9764941 ], + [ 7.1174709, 45.9765343 ], + [ 7.1176808, 45.9766252 ], + [ 7.1178583, 45.9767553 ], + [ 7.118092, 45.9769082 ], + [ 7.1182686, 45.9770497 ], + [ 7.1185667, 45.977231 ], + [ 7.1188568, 45.9773897 ], + [ 7.1190425, 45.9774918 ], + [ 7.1192366, 45.9775319 ], + [ 7.1193492, 45.977583 ], + [ 7.1194295, 45.9776284 ], + [ 7.1195911, 45.9777191 ], + [ 7.1197515, 45.9778548 ], + [ 7.1200011, 45.9780585 ], + [ 7.1203315, 45.9782343 ], + [ 7.1206136, 45.978393 ], + [ 7.1208557, 45.9784953 ], + [ 7.1211623, 45.9785977 ], + [ 7.1213726, 45.9786323 ], + [ 7.1217038, 45.9786673 ], + [ 7.1220108, 45.9787134 ], + [ 7.1222287, 45.9788156 ], + [ 7.1223903, 45.9789063 ], + [ 7.1225423, 45.9790983 ], + [ 7.1227602, 45.9792174 ], + [ 7.1230259, 45.9794211 ], + [ 7.1233, 45.9795686 ], + [ 7.12359, 45.9797611 ], + [ 7.1237666, 45.9798969 ], + [ 7.1240328, 45.9800218 ], + [ 7.1243151, 45.9801467 ], + [ 7.1245731, 45.980294 ], + [ 7.1246208, 45.9804181 ], + [ 7.1246601, 45.9805872 ], + [ 7.1246994, 45.980762 ], + [ 7.124755, 45.9809086 ], + [ 7.12473, 45.981055 ], + [ 7.1246325, 45.9811785 ], + [ 7.1245504, 45.981274 ], + [ 7.124445, 45.981375 ], + [ 7.124242, 45.9814757 ], + [ 7.1240469, 45.9815989 ], + [ 7.123893, 45.9817279 ], + [ 7.1238589, 45.9818967 ], + [ 7.1238092, 45.9821162 ], + [ 7.1238, 45.9823189 ], + [ 7.123799, 45.9824879 ], + [ 7.1238078, 45.9825087 ], + [ 7.1238627, 45.9826402 ], + [ 7.1239668, 45.9827701 ], + [ 7.1241119, 45.9829058 ], + [ 7.1241759, 45.9830018 ], + [ 7.1241751, 45.9831314 ], + [ 7.12415, 45.9832945 ], + [ 7.1241244, 45.9834071 ], + [ 7.1241481, 45.9834804 ], + [ 7.1241889, 45.9835538 ], + [ 7.1242449, 45.9836216 ], + [ 7.1243413, 45.9836895 ], + [ 7.1243893, 45.9837572 ], + [ 7.124429, 45.9838587 ], + [ 7.1244604, 45.984011 ], + [ 7.1244515, 45.984163 ], + [ 7.1245069, 45.9843434 ], + [ 7.1245705, 45.9844957 ], + [ 7.1247073, 45.9846933 ], + [ 7.1248761, 45.9847896 ], + [ 7.1249973, 45.9849027 ], + [ 7.1251011, 45.9850777 ], + [ 7.1251566, 45.9852525 ], + [ 7.125099, 45.9854494 ], + [ 7.1249759, 45.9856743 ], + [ 7.1247645, 45.9858312 ], + [ 7.1245363, 45.9861007 ], + [ 7.1246, 45.9862474 ], + [ 7.1248263, 45.9863045 ], + [ 7.1249964, 45.9863164 ], + [ 7.1252714, 45.9863342 ], + [ 7.1254411, 45.9864024 ], + [ 7.1255213, 45.9864872 ], + [ 7.1255288, 45.9865829 ], + [ 7.1254227, 45.9866614 ], + [ 7.125261, 45.9867397 ], + [ 7.1251304, 45.9868632 ], + [ 7.1250652, 45.9869812 ], + [ 7.1250152, 45.9871219 ], + [ 7.1250145, 45.9872344 ], + [ 7.125022, 45.987330299999996 ], + [ 7.1250052, 45.9874597 ], + [ 7.1249484, 45.9875102 ], + [ 7.1248672, 45.9876113 ], + [ 7.1248256, 45.98769 ], + [ 7.1248409, 45.9878365 ], + [ 7.1247997, 45.9879828 ], + [ 7.1247907, 45.9881517 ], + [ 7.1247897, 45.988315 ], + [ 7.1248131, 45.9884559 ], + [ 7.1248931, 45.9885801 ], + [ 7.1251108, 45.988733 ], + [ 7.1253279, 45.988852 ], + [ 7.1256434, 45.9889714 ], + [ 7.1258208, 45.9889777 ], + [ 7.1259502, 45.9890626 ], + [ 7.1260222, 45.9891586 ], + [ 7.1260298, 45.9892374 ], + [ 7.1259971, 45.9893162 ], + [ 7.1259482, 45.9894005 ], + [ 7.1258739, 45.989558 ], + [ 7.1258412, 45.989631 ], + [ 7.1258243, 45.9897774 ], + [ 7.1258319, 45.9898619 ], + [ 7.1258552, 45.9900085 ], + [ 7.1258949, 45.9901268 ], + [ 7.1259346, 45.9902396 ], + [ 7.1259097, 45.9903578 ], + [ 7.1258767, 45.990476 ], + [ 7.125851, 45.9906054 ], + [ 7.1258181, 45.9907236 ], + [ 7.1257934, 45.9908136 ], + [ 7.1257122, 45.9909034 ], + [ 7.1256303, 45.990982 ], + [ 7.125533, 45.9910717 ], + [ 7.1254591, 45.991156 ], + [ 7.1254501, 45.9913137 ], + [ 7.1255549, 45.9914774 ], + [ 7.1256103, 45.9916578 ], + [ 7.1256013, 45.9918267 ], + [ 7.125469, 45.992243 ], + [ 7.1255088, 45.9923389 ], + [ 7.125597, 45.9924405 ], + [ 7.1257263, 45.9925424 ], + [ 7.1258788, 45.9926668 ], + [ 7.1259751, 45.9927629 ], + [ 7.1260881, 45.9928872 ], + [ 7.1261596, 45.9930733 ], + [ 7.1262553, 45.9932651 ], + [ 7.1262627, 45.9933834 ], + [ 7.1262219, 45.9934678 ], + [ 7.1261971, 45.993574699999996 ], + [ 7.1261392, 45.9936927 ], + [ 7.1261062, 45.9938109 ], + [ 7.126146, 45.9939181 ], + [ 7.1262189, 45.9939916 ], + [ 7.1263798, 45.9940766 ], + [ 7.1266059, 45.9941788 ], + [ 7.1267345, 45.9942637 ], + [ 7.1267914, 45.9943202 ], + [ 7.1268553, 45.994433 ], + [ 7.1268789, 45.9945514 ], + [ 7.1269348, 45.9946418 ], + [ 7.1269828, 45.9947095 ], + [ 7.127039, 45.9947604 ], + [ 7.1270871, 45.994816900000004 ], + [ 7.127111, 45.994862 ], + [ 7.1271188, 45.9949183 ], + [ 7.1271347, 45.9949635 ], + [ 7.1271911, 45.9951157 ], + [ 7.1272551, 45.9952117 ], + [ 7.1273271, 45.995319 ], + [ 7.1273988, 45.9954656 ], + [ 7.1274224, 45.9955783 ], + [ 7.1273811, 45.9957584 ], + [ 7.1273642, 45.9958879 ], + [ 7.1272982, 45.9960003 ], + [ 7.1271686, 45.9961012 ], + [ 7.1270462, 45.9961966 ], + [ 7.1269651, 45.9962751 ], + [ 7.1269161, 45.9963763 ], + [ 7.1268914, 45.996472 ], + [ 7.1269059, 45.9966184 ], + [ 7.1269463, 45.9967425 ], + [ 7.1270667, 45.9968499 ], + [ 7.1272272, 45.9970026 ], + [ 7.1273163, 45.9970873 ], + [ 7.1273723, 45.9971664 ], + [ 7.1273553, 45.9973071 ], + [ 7.1273388, 45.9973746 ], + [ 7.1272568, 45.9974645 ], + [ 7.1270951, 45.9975315 ], + [ 7.1269646, 45.9976437 ], + [ 7.1268996, 45.9977223 ], + [ 7.1267608, 45.9978739 ], + [ 7.1265734, 45.9980647 ], + [ 7.1264676, 45.998222 ], + [ 7.1263847, 45.9984695 ], + [ 7.1263521, 45.998537 ], + [ 7.1263432, 45.9986834 ], + [ 7.1263019, 45.9988466 ], + [ 7.1263012, 45.9989649 ], + [ 7.1263005, 45.9990944 ], + [ 7.1263241, 45.9992015 ], + [ 7.1263717, 45.9993425 ], + [ 7.1264194, 45.9994665 ], + [ 7.1264511, 45.9995737 ], + [ 7.1264502, 45.9997257 ], + [ 7.126433, 45.9999059 ], + [ 7.126415, 46.0000973 ], + [ 7.1263983, 46.000193 ], + [ 7.1264217, 46.0003395 ], + [ 7.126437, 46.0004859 ], + [ 7.1264685, 46.0006212 ], + [ 7.1264836, 46.0008072 ], + [ 7.126507, 46.0009424 ], + [ 7.1265548, 46.0010608 ], + [ 7.1266265, 46.0012076 ], + [ 7.1267153, 46.0013486 ], + [ 7.126779, 46.001501 ], + [ 7.1268106, 46.0016137 ], + [ 7.1267939, 46.0017206 ], + [ 7.1267449, 46.0018218 ], + [ 7.1267113, 46.0019062 ], + [ 7.1266545, 46.0019679 ], + [ 7.1265329, 46.0020802 ], + [ 7.1264584, 46.0022545 ], + [ 7.1263444, 46.00244 ], + [ 7.1262456, 46.002648 ], + [ 7.1262468, 46.0033018 ], + [ 7.1262415, 46.0033745 ], + [ 7.1261912, 46.0035771 ], + [ 7.1260368, 46.0037568 ], + [ 7.1258817, 46.0039365 ], + [ 7.1257588, 46.0041331 ], + [ 7.1255384, 46.0044309 ], + [ 7.1253595, 46.0045485 ], + [ 7.1251573, 46.0046323 ], + [ 7.1250188, 46.0047162 ], + [ 7.1249212, 46.0048567 ], + [ 7.1248068, 46.004969 ], + [ 7.1247333, 46.0051264 ], + [ 7.1246996, 46.0052389 ], + [ 7.1247068, 46.0053854 ], + [ 7.1247384, 46.0055037 ], + [ 7.1248033, 46.0055884 ], + [ 7.1249153, 46.0057522 ], + [ 7.1250847, 46.0058936 ], + [ 7.1252532, 46.0060575 ], + [ 7.1254547, 46.006244 ], + [ 7.1256394, 46.0063911 ], + [ 7.1258249, 46.0065551 ], + [ 7.1259529, 46.0067358 ], + [ 7.1260580000000004, 46.0068488 ], + [ 7.1261864, 46.0069675 ], + [ 7.1263882, 46.0070921 ], + [ 7.1265088, 46.0071657 ], + [ 7.1267028, 46.0072453 ], + [ 7.1269775, 46.0073251 ], + [ 7.1274382, 46.0074788 ], + [ 7.1275508, 46.0075355 ], + [ 7.1276229, 46.0076428 ], + [ 7.1276384, 46.0077498 ], + [ 7.1276053, 46.0079017 ], + [ 7.1276207, 46.0080201 ], + [ 7.1276926, 46.0081442 ], + [ 7.127773, 46.0082065 ], + [ 7.127838, 46.0082573 ], + [ 7.1279104, 46.0083027 ], + [ 7.1279343, 46.0083535 ], + [ 7.1279661, 46.0084493 ], + [ 7.1280301, 46.0085453 ], + [ 7.1281024, 46.0085962 ], + [ 7.1282238, 46.0086699 ], + [ 7.1283204, 46.0087209 ], + [ 7.1283359, 46.0088279 ], + [ 7.1283349, 46.0089969 ], + [ 7.1283261, 46.009132 ], + [ 7.1283577, 46.0092504 ], + [ 7.1284135, 46.0093689 ], + [ 7.1285334, 46.0095664 ], + [ 7.1286223, 46.0096907 ], + [ 7.128686, 46.0098429 ], + [ 7.1287418, 46.0099726 ], + [ 7.1289674, 46.0101761 ], + [ 7.1291440999999995, 46.0103232 ], + [ 7.1292813, 46.0104476 ], + [ 7.1293532, 46.0105774 ], + [ 7.1293526, 46.01069 ], + [ 7.1293026, 46.010825 ], + [ 7.129221, 46.0109824 ], + [ 7.1291881, 46.0111062 ], + [ 7.1292194, 46.011264 ], + [ 7.1293074, 46.0114164 ], + [ 7.1293873, 46.0115462 ], + [ 7.129443, 46.0116872 ], + [ 7.129442, 46.0118618 ], + [ 7.1293602, 46.0120699 ], + [ 7.129335, 46.0122444 ], + [ 7.1291876, 46.0124805 ], + [ 7.1290568, 46.0126377 ], + [ 7.1289995, 46.0127726 ], + [ 7.1290066, 46.0129529 ], + [ 7.1290462, 46.0130938 ], + [ 7.1290455, 46.0132177 ], + [ 7.1290125, 46.0133415 ], + [ 7.1289383, 46.013482 ], + [ 7.1288321, 46.0136957 ], + [ 7.1287416, 46.0138644 ], + [ 7.1287652, 46.0139827 ], + [ 7.1288461, 46.0140843 ], + [ 7.1289344, 46.0141748 ], + [ 7.1289581, 46.0142537 ], + [ 7.1289496, 46.0143269 ], + [ 7.1289332, 46.0143888 ], + [ 7.1289486, 46.0145183 ], + [ 7.129029, 46.0145581 ], + [ 7.1292152, 46.0146094 ], + [ 7.1293762, 46.0146663 ], + [ 7.1294815, 46.0147398 ], + [ 7.1296018, 46.0148754 ], + [ 7.1297297, 46.0150955 ], + [ 7.1298708, 46.0158394 ], + [ 7.1298619, 46.0159803 ], + [ 7.1297644, 46.0161038 ], + [ 7.1296579, 46.0162386 ], + [ 7.1295928, 46.0163341 ], + [ 7.1296324, 46.0164751 ], + [ 7.1297525, 46.0166388 ], + [ 7.1299622, 46.0168085 ], + [ 7.1300994, 46.0169441 ], + [ 7.130244, 46.0170686 ], + [ 7.1303975, 46.0171873 ], + [ 7.1305986, 46.0172894 ], + [ 7.130833, 46.0173747 ], + [ 7.1310676, 46.0174149 ], + [ 7.1311885, 46.0174491 ], + [ 7.1312858, 46.0175171 ], + [ 7.1313339, 46.0175736 ], + [ 7.131422, 46.0176865 ], + [ 7.1315264, 46.0177882 ], + [ 7.1315831, 46.0178954 ], + [ 7.1316068, 46.01798 ], + [ 7.1316869, 46.018093 ], + [ 7.1317914, 46.0181665 ], + [ 7.131953, 46.0182629 ], + [ 7.1321381, 46.0183592 ], + [ 7.1323243, 46.0184105 ], + [ 7.1324542, 46.018411 ], + [ 7.1326077, 46.0183777 ], + [ 7.1327944, 46.0183277 ], + [ 7.1330134, 46.0182778 ], + [ 7.1342923, 46.0183272 ], + [ 7.1345432, 46.0183281 ], + [ 7.1347615, 46.0182725 ], + [ 7.1349401, 46.0182224 ], + [ 7.1351915, 46.0181388 ], + [ 7.1354429, 46.0180664 ], + [ 7.1356372, 46.0181122 ], + [ 7.1357739, 46.0181915 ], + [ 7.1359194, 46.0182877 ], + [ 7.1360319, 46.0183838 ], + [ 7.1362008, 46.0186435 ], + [ 7.1363454, 46.0187678 ], + [ 7.1364428, 46.0188076 ], + [ 7.1365718, 46.0188306 ], + [ 7.1366523, 46.018859 ], + [ 7.1367418, 46.0188762 ], + [ 7.1368388, 46.0188597 ], + [ 7.1369607, 46.0188432 ], + [ 7.1370412, 46.0188772 ], + [ 7.1371941, 46.0189623 ], + [ 7.1373641, 46.0190135 ], + [ 7.1375421, 46.0190874 ], + [ 7.1377111, 46.0191667 ], + [ 7.1379214, 46.0192238 ], + [ 7.1382202, 46.0193375 ], + [ 7.13839, 46.0194281 ], + [ 7.1386235, 46.0195303 ], + [ 7.1387689, 46.0196434 ], + [ 7.1390192, 46.0197738 ], + [ 7.1392124, 46.0198646 ], + [ 7.139447, 46.0199217 ], + [ 7.1396334, 46.0199223 ], + [ 7.1398843, 46.0199401 ], + [ 7.1401511, 46.020003 ], + [ 7.1403695, 46.02006 ], + [ 7.1405305, 46.0201338 ], + [ 7.1406277, 46.0202242 ], + [ 7.140724, 46.020309 ], + [ 7.1408205, 46.0203826 ], + [ 7.1409741, 46.0204788 ], + [ 7.1411189, 46.0205807 ], + [ 7.1412645, 46.0206601 ], + [ 7.1414666, 46.0207396 ], + [ 7.14166, 46.0207965 ], + [ 7.1418223, 46.0207915 ], + [ 7.1420007, 46.0207864 ], + [ 7.1421698, 46.020849 ], + [ 7.1423723, 46.0208665 ], + [ 7.1424851, 46.0208951 ], + [ 7.1426068, 46.0209462 ], + [ 7.1426951, 46.0210253 ], + [ 7.1428075, 46.0211327 ], + [ 7.1429044, 46.0212795 ], + [ 7.1430084, 46.0214488 ], + [ 7.1431041, 46.0216631 ], + [ 7.1432256, 46.0217311 ], + [ 7.1433627, 46.0217428 ], + [ 7.1434275, 46.0217093 ], + [ 7.143485, 46.0216644 ], + [ 7.1435015, 46.0216025 ], + [ 7.1434862, 46.0214504 ], + [ 7.1434547, 46.0212926 ], + [ 7.1434153, 46.0211291 ], + [ 7.1433759, 46.0209487 ], + [ 7.1433686, 46.0208023 ], + [ 7.1434741, 46.0206844 ], + [ 7.1435885, 46.0205833 ], + [ 7.1437583, 46.0205164 ], + [ 7.1439369, 46.0204832 ], + [ 7.1441717, 46.0204896 ], + [ 7.1443821, 46.0205353 ], + [ 7.1445926, 46.0205586 ], + [ 7.1448599, 46.0205257 ], + [ 7.1451515, 46.0204872 ], + [ 7.1453624, 46.0204372 ], + [ 7.1454273, 46.0203755 ], + [ 7.1454601, 46.0202855 ], + [ 7.1454849, 46.0201673 ], + [ 7.1454857, 46.0200265 ], + [ 7.145624, 46.0199538 ], + [ 7.1457616, 46.0198979 ], + [ 7.1459401, 46.019859 ], + [ 7.146167, 46.0198429 ], + [ 7.1463935, 46.0199 ], + [ 7.1464982, 46.0199454 ], + [ 7.1466598, 46.0200586 ], + [ 7.1468528, 46.0201775 ], + [ 7.1470227, 46.0202626 ], + [ 7.1471686, 46.0202912 ], + [ 7.1473382, 46.0202748 ], + [ 7.1476296, 46.0202533 ], + [ 7.1480594, 46.0201759 ], + [ 7.1482463, 46.0200808 ], + [ 7.1483763, 46.0199178 ], + [ 7.1486617, 46.0196822 ], + [ 7.1488153, 46.0196208 ], + [ 7.14901, 46.019582 ], + [ 7.1492045, 46.0195826 ], + [ 7.1493991, 46.0195777 ], + [ 7.149625, 46.0195896 ], + [ 7.1497949, 46.0196466 ], + [ 7.1498674, 46.0196919 ], + [ 7.1499731, 46.0196866 ], + [ 7.1500136, 46.0196585 ], + [ 7.1500623, 46.0196023 ], + [ 7.1501604, 46.0195125 ], + [ 7.1502091, 46.019462 ], + [ 7.1503063000000004, 46.0193948 ], + [ 7.1504526, 46.0193502 ], + [ 7.1506714, 46.0193284 ], + [ 7.150841, 46.0193233 ], + [ 7.1510922, 46.0192791 ], + [ 7.1512064, 46.0192006 ], + [ 7.1513682, 46.0191223 ], + [ 7.15145, 46.0190606 ], + [ 7.1515872, 46.019061 ], + [ 7.1517417, 46.0190052 ], + [ 7.1519847, 46.0189722 ], + [ 7.1521301, 46.0189614 ], + [ 7.1522196, 46.0189674 ], + [ 7.152413, 46.0190187 ], + [ 7.1526232, 46.0191151 ], + [ 7.1528335, 46.0191777 ], + [ 7.1530364, 46.0191165 ], + [ 7.1531013, 46.0190434 ], + [ 7.1531588, 46.0188521 ], + [ 7.1531846, 46.0187114 ], + [ 7.1532173, 46.0186158 ], + [ 7.1533147, 46.018509 ], + [ 7.1534775, 46.0184082 ], + [ 7.153705, 46.0182625 ], + [ 7.153908, 46.0181787 ], + [ 7.1541267, 46.0181794 ], + [ 7.1543767, 46.018214 ], + [ 7.1546929, 46.0182432 ], + [ 7.1549108, 46.0182439 ], + [ 7.1550572, 46.0181824 ], + [ 7.1551386, 46.0180475 ], + [ 7.1551561, 46.0179293 ], + [ 7.1552137, 46.0177267 ], + [ 7.155248, 46.0176462 ], + [ 7.1552954, 46.0175355 ], + [ 7.1553483, 46.0174539 ], + [ 7.1553938, 46.0173837 ], + [ 7.1555461, 46.0172674 ], + [ 7.1555575, 46.0172586 ], + [ 7.1556215, 46.0172098 ], + [ 7.1557881, 46.0171356 ], + [ 7.1560106, 46.0170365 ], + [ 7.1573161, 46.0167591 ], + [ 7.1574694, 46.0167708 ], + [ 7.1576232, 46.016839 ], + [ 7.1577039, 46.0168335 ], + [ 7.1577768, 46.0167718 ], + [ 7.1578994, 46.016637 ], + [ 7.1580708, 46.016418 ], + [ 7.1582253, 46.0161763 ], + [ 7.1582348, 46.0160636 ], + [ 7.1582353, 46.0159623 ], + [ 7.1583085, 46.0158668 ], + [ 7.1584632, 46.0157377 ], + [ 7.1585365, 46.0156197 ], + [ 7.1586752, 46.0154737 ], + [ 7.1588291, 46.015356 ], + [ 7.1590484, 46.0152384 ], + [ 7.1592351, 46.0151714 ], + [ 7.1593244, 46.0150816 ], + [ 7.1594797, 46.0148455 ], + [ 7.1596751, 46.0146603 ], + [ 7.1598541, 46.0145314 ], + [ 7.1599512, 46.0144698 ], + [ 7.1601859, 46.0145043 ], + [ 7.1604368, 46.0145107 ], + [ 7.1607765, 46.0145118 ], + [ 7.1611655, 46.0145074 ], + [ 7.1614974, 46.0144466 ], + [ 7.1617404, 46.0144192 ], + [ 7.1619593, 46.0143805 ], + [ 7.1621048, 46.0143302 ], + [ 7.1622269, 46.0142912 ], + [ 7.16243, 46.0141736 ], + [ 7.1625926, 46.014084 ], + [ 7.1627947, 46.0140284 ], + [ 7.1629971, 46.0140402 ], + [ 7.1632405, 46.0139453 ], + [ 7.1634033, 46.0138219 ], + [ 7.1634524, 46.0136757 ], + [ 7.1634531, 46.0135405 ], + [ 7.1634059, 46.0132926 ], + [ 7.1634071, 46.0130616 ], + [ 7.1633758, 46.0128701 ], + [ 7.1633768, 46.0126673 ], + [ 7.163321, 46.0125264 ], + [ 7.1632895, 46.0123685 ], + [ 7.1632417, 46.0122389 ], + [ 7.1632664, 46.0121489 ], + [ 7.1633890000000005, 46.0119915 ], + [ 7.164963, 46.011225 ], + [ 7.1651984, 46.0111131 ], + [ 7.1653368, 46.0110234 ], + [ 7.1654261, 46.0109223 ], + [ 7.1654435, 46.0108267 ], + [ 7.1654523, 46.0106802 ], + [ 7.1654611, 46.0105395 ], + [ 7.1654861, 46.0103763 ], + [ 7.165495, 46.010196 ], + [ 7.1655041, 46.0099933 ], + [ 7.165538, 46.0098358 ], + [ 7.1655629, 46.0096894 ], + [ 7.1656121, 46.0095375 ], + [ 7.1656854, 46.0093857 ], + [ 7.1657919, 46.0092283 ], + [ 7.1659548, 46.0090768 ], + [ 7.1660119, 46.008953 ], + [ 7.1661017, 46.0087393 ], + [ 7.1662649, 46.0085427 ], + [ 7.1664354, 46.0084813 ], + [ 7.1665164, 46.008414 ], + [ 7.1666308, 46.0083017 ], + [ 7.1667042, 46.0081442 ], + [ 7.1667209, 46.008026 ], + [ 7.1667135, 46.0078908 ], + [ 7.1666497, 46.0077329 ], + [ 7.1665459, 46.0075073 ], + [ 7.1665064, 46.0073495 ], + [ 7.1665233, 46.0071862 ], + [ 7.166524, 46.0070398 ], + [ 7.1665895, 46.0068485 ], + [ 7.1666234, 46.0066796 ], + [ 7.1666323, 46.0065163 ], + [ 7.1666571, 46.0063982 ], + [ 7.1666335, 46.0062741 ], + [ 7.1667243, 46.0060266 ], + [ 7.1668945, 46.0058639 ], + [ 7.167025, 46.0057347 ], + [ 7.1672526, 46.0055664 ], + [ 7.1674719, 46.005432 ], + [ 7.1676429, 46.0052804 ], + [ 7.1677967, 46.0051852 ], + [ 7.1679516, 46.0050167 ], + [ 7.1680813, 46.0048819 ], + [ 7.1682362, 46.0047247 ], + [ 7.1684473, 46.0046239 ], + [ 7.1685772, 46.0046188 ], + [ 7.1687306, 46.0045911 ], + [ 7.1688446, 46.0045576 ], + [ 7.1689659, 46.0044847 ], + [ 7.169047, 46.0044005 ], + [ 7.1690807, 46.0042767 ], + [ 7.1690811, 46.0041922 ], + [ 7.169, 46.0041131 ], + [ 7.1688957, 46.0040001 ], + [ 7.1688397, 46.0039042 ], + [ 7.1687596, 46.003797 ], + [ 7.1687278, 46.0036899 ], + [ 7.1687526, 46.003566 ], + [ 7.1688259, 46.0034198 ], + [ 7.168859, 46.0032509 ], + [ 7.1688277, 46.0030537 ], + [ 7.1687881, 46.0029128 ], + [ 7.1687322, 46.0027887 ], + [ 7.1686438, 46.0027152 ], + [ 7.1685151, 46.002636 ], + [ 7.1683936, 46.0025736 ], + [ 7.1683134, 46.0024889 ], + [ 7.1683545, 46.0023201 ], + [ 7.1684528, 46.0021796 ], + [ 7.1685825, 46.002056 ], + [ 7.1687855, 46.0019666 ], + [ 7.168972, 46.0019277 ], + [ 7.1692234, 46.0018271 ], + [ 7.1693372, 46.0016641 ], + [ 7.1694111, 46.0015517 ], + [ 7.1694762, 46.0014505 ], + [ 7.1695652, 46.0013945 ], + [ 7.1696791, 46.0013554 ], + [ 7.1697923, 46.0013163 ], + [ 7.1698661, 46.0012377 ], + [ 7.1698908, 46.0011307 ], + [ 7.169859, 46.0010293 ], + [ 7.1698515, 46.000911 ], + [ 7.1698441, 46.0007814 ], + [ 7.1698695, 46.000545 ], + [ 7.1699678, 46.0004044 ], + [ 7.1700411, 46.0002638 ], + [ 7.1701305, 46.000129 ], + [ 7.1702448, 46.000011 ], + [ 7.1703421, 45.9999043 ], + [ 7.1704645, 45.9997921 ], + [ 7.1705378, 45.9996402 ], + [ 7.1706038, 45.9995221 ], + [ 7.1707094, 45.9993591 ], + [ 7.1707669, 45.9991509 ], + [ 7.1708167, 45.9990328 ], + [ 7.1709221, 45.9989261 ], + [ 7.1710443999999995, 45.9988251 ], + [ 7.1711901, 45.9987241 ], + [ 7.1713531, 45.9985557 ], + [ 7.1714516, 45.9983757 ], + [ 7.1715249, 45.9982351 ], + [ 7.171574, 45.998083199999996 ], + [ 7.1716309, 45.9980046 ], + [ 7.1717612, 45.9979205 ], + [ 7.1719559, 45.9978478 ], + [ 7.1721747, 45.997826 ], + [ 7.1722959, 45.9977869 ], + [ 7.1724261, 45.9977254 ], + [ 7.1725151, 45.9976524 ], + [ 7.1726936, 45.9976248 ], + [ 7.1729122, 45.9976198 ], + [ 7.1731139, 45.9976148 ], + [ 7.1732761, 45.9976041 ], + [ 7.1734949, 45.9975653 ], + [ 7.1736977, 45.9975039 ], + [ 7.1738111, 45.9974198 ], + [ 7.1738681, 45.9973017 ], + [ 7.1739178, 45.9972005 ], + [ 7.17391, 45.9971442 ], + [ 7.1738128, 45.9970537 ], + [ 7.1736681, 45.9969463 ], + [ 7.1734823, 45.9968387 ], + [ 7.1733697, 45.9967708 ], + [ 7.1733055, 45.9966917 ], + [ 7.1732576, 45.9966014 ], + [ 7.1731285, 45.9964434 ], + [ 7.1730081, 45.9963078 ], + [ 7.1729603, 45.9961894 ], + [ 7.1729766999999995, 45.9961218 ], + [ 7.1730741, 45.9960208 ], + [ 7.1731882, 45.9959367 ], + [ 7.1732933, 45.9958863 ], + [ 7.1733502, 45.995802 ], + [ 7.1734243, 45.9956614 ], + [ 7.1735297, 45.9955434 ], + [ 7.1736764, 45.9953974 ], + [ 7.173847, 45.9953191 ], + [ 7.1741305, 45.995258 ], + [ 7.1745446, 45.9950284 ], + [ 7.1746741, 45.9949274 ], + [ 7.1747393, 45.9948037 ], + [ 7.1747318, 45.9946854 ], + [ 7.1747574, 45.9945446 ], + [ 7.1748387, 45.994421 ], + [ 7.1749117, 45.9943423 ], + [ 7.1750821, 45.9942866 ], + [ 7.1752205, 45.9942025 ], + [ 7.1753096, 45.9941295 ], + [ 7.1753908, 45.9940171 ], + [ 7.1754731, 45.9938428 ], + [ 7.1755222, 45.9936965 ], + [ 7.1756202, 45.9936011 ], + [ 7.1757655, 45.993579 ], + [ 7.1760083, 45.9935797 ], + [ 7.1764698, 45.9935586 ], + [ 7.1767368, 45.9935481 ], + [ 7.1769475, 45.9935263 ], + [ 7.1770204, 45.9934645 ], + [ 7.1771095, 45.9933747 ], + [ 7.1771832, 45.993313 ], + [ 7.1773287, 45.9932458 ], + [ 7.1775715, 45.9932465 ], + [ 7.1778547, 45.9932249 ], + [ 7.1780171, 45.9931859 ], + [ 7.1781794, 45.9931301 ], + [ 7.1783986, 45.9930069 ], + [ 7.1796159, 45.9923065 ], + [ 7.1798268, 45.9922114 ], + [ 7.1800451, 45.9921163 ], + [ 7.1801674, 45.9919984 ], + [ 7.1802898, 45.9918749 ], + [ 7.1804195, 45.9917344 ], + [ 7.180518, 45.9915545 ], + [ 7.1806478, 45.9913803 ], + [ 7.1807705, 45.991206 ], + [ 7.1809084, 45.9910206 ], + [ 7.1811437, 45.990903 ], + [ 7.1813871, 45.9907685 ], + [ 7.1815093, 45.9906844 ], + [ 7.1816476, 45.990606 ], + [ 7.1817611, 45.9904824 ], + [ 7.1818263, 45.9903474 ], + [ 7.1818762, 45.9901842 ], + [ 7.1819413, 45.9900774 ], + [ 7.1820384, 45.9900046 ], + [ 7.1822093, 45.9898473 ], + [ 7.182364, 45.9897239 ], + [ 7.1825108, 45.9895498 ], + [ 7.1826484, 45.9894488 ], + [ 7.1828272, 45.9893311 ], + [ 7.1830867, 45.9891967 ], + [ 7.183306, 45.9890396 ], + [ 7.1834932, 45.98886 ], + [ 7.1836468, 45.988776 ], + [ 7.1838014, 45.9886582 ], + [ 7.1839238, 45.9885346 ], + [ 7.1839486, 45.9884052 ], + [ 7.1839492, 45.9882757 ], + [ 7.1839417, 45.9881686 ], + [ 7.1840069, 45.9880111 ], + [ 7.1840891, 45.9878593 ], + [ 7.1842593, 45.987674 ], + [ 7.1844224, 45.9874717 ], + [ 7.184553, 45.98732 ], + [ 7.1847158, 45.9871571 ], + [ 7.1849423, 45.9870227 ], + [ 7.1852268, 45.9868996 ], + [ 7.1853805, 45.9867875 ], + [ 7.1855432, 45.9866753 ], + [ 7.1856407, 45.9865291 ], + [ 7.1857148, 45.9863661 ], + [ 7.1858122, 45.9862368 ], + [ 7.1859187, 45.9860513 ], + [ 7.1859763, 45.9858149 ], + [ 7.1860425, 45.985618 ], + [ 7.1861485, 45.9853705 ], + [ 7.1862311, 45.9851342 ], + [ 7.1862886, 45.9849147 ], + [ 7.1863136, 45.9847458 ], + [ 7.1863635, 45.9845827 ], + [ 7.1864606, 45.984521 ], + [ 7.1866388, 45.9845215 ], + [ 7.1868896, 45.9845279 ], + [ 7.1871568, 45.984478 ], + [ 7.1874805, 45.9844226 ], + [ 7.1876753, 45.9843275 ], + [ 7.1878783, 45.9842098 ], + [ 7.1879191, 45.9840917 ], + [ 7.1879278, 45.9839622 ], + [ 7.1879686, 45.9838609 ], + [ 7.1880417, 45.9837541 ], + [ 7.1880994, 45.9836473 ], + [ 7.1881, 45.9835178 ], + [ 7.1881413, 45.9833095 ], + [ 7.1887616, 45.9822469 ], + [ 7.1884869, 45.9821729 ], + [ 7.1883261, 45.9820823 ], + [ 7.1882128, 45.9819862 ], + [ 7.1881729, 45.9818847 ], + [ 7.1881657, 45.9817101 ], + [ 7.1882237, 45.9815526 ], + [ 7.1883131, 45.9814008 ], + [ 7.1884353, 45.981311 ], + [ 7.188613, 45.9812496 ], + [ 7.1887832, 45.9812275 ], + [ 7.1889856, 45.9812281 ], + [ 7.1893571, 45.9812912 ], + [ 7.1897856, 45.9814107 ], + [ 7.1901502, 45.9812259 ], + [ 7.1904912, 45.9810805 ], + [ 7.1907589, 45.9809066 ], + [ 7.1910262, 45.980823 ], + [ 7.1911798, 45.980739 ], + [ 7.191278, 45.9806153 ], + [ 7.1915779, 45.9804472 ], + [ 7.1917005, 45.9802561 ], + [ 7.1917659, 45.9800817 ], + [ 7.1918559, 45.9799637 ], + [ 7.19194, 45.9799044 ], + [ 7.192107, 45.9798856 ], + [ 7.1923167, 45.9798862 ], + [ 7.1925271, 45.9798981 ], + [ 7.1927699, 45.9798819 ], + [ 7.1929724, 45.9798656 ], + [ 7.1932958, 45.9798665 ], + [ 7.1935627, 45.9798561 ], + [ 7.1937412, 45.9798116 ], + [ 7.1940325, 45.9797505 ], + [ 7.1943885, 45.979667 ], + [ 7.1946234, 45.9796339 ], + [ 7.1948825, 45.9795784 ], + [ 7.1950126, 45.9795055 ], + [ 7.1952156, 45.9793766 ], + [ 7.1954348, 45.9792307 ], + [ 7.1956048, 45.9790849 ], + [ 7.1956872, 45.978871 ], + [ 7.1957123, 45.9786571 ], + [ 7.1958027, 45.9784771 ], + [ 7.1959325, 45.9782973 ], + [ 7.1961032, 45.9781739 ], + [ 7.1962166, 45.9780616 ], + [ 7.196323, 45.9778985 ], + [ 7.1964697, 45.9777187 ], + [ 7.196583, 45.977629 ], + [ 7.1968341, 45.9775677 ], + [ 7.1971172, 45.9775573 ], + [ 7.1973521, 45.977496 ], + [ 7.1975146, 45.9774064 ], + [ 7.1976201, 45.9772546 ], + [ 7.1977104, 45.977069 ], + [ 7.1977759, 45.9768496 ], + [ 7.1978499, 45.9767033 ], + [ 7.1980525, 45.9764899 ], + [ 7.1982393, 45.9763609 ], + [ 7.1985562, 45.9761703 ], + [ 7.1989771, 45.9760026 ], + [ 7.1990589, 45.9759183 ], + [ 7.1991241, 45.9757777 ], + [ 7.1991892, 45.9756315 ], + [ 7.1992476, 45.9753782 ], + [ 7.1992728, 45.9751473 ], + [ 7.1993378, 45.9750293 ], + [ 7.199452, 45.9749225 ], + [ 7.199591, 45.9746582 ], + [ 7.1997458, 45.9742926 ], + [ 7.1999331, 45.9740735 ], + [ 7.2000722, 45.973781 ], + [ 7.2001618, 45.9735841 ], + [ 7.2002841, 45.9734493 ], + [ 7.2004385, 45.9733709 ], + [ 7.2006162, 45.9733038 ], + [ 7.2008185, 45.9733212 ], + [ 7.2010207, 45.97335 ], + [ 7.2011818, 45.9733899 ], + [ 7.201368, 45.973396 ], + [ 7.2014981, 45.9733345 ], + [ 7.2016435, 45.9732729 ], + [ 7.2017737, 45.9731832 ], + [ 7.2019441, 45.9731104 ], + [ 7.202138, 45.9730434 ], + [ 7.2022763, 45.9729368 ], + [ 7.202398, 45.9727681 ], + [ 7.2025848, 45.9726335 ], + [ 7.2027071, 45.9725043 ], + [ 7.2027803, 45.972358 ], + [ 7.2028624, 45.9722118 ], + [ 7.2029837, 45.9721108 ], + [ 7.2031058, 45.9720436 ], + [ 7.2031385, 45.9719479 ], + [ 7.2031066, 45.9718577 ], + [ 7.203067, 45.9716942 ], + [ 7.2030274, 45.9715252 ], + [ 7.2030846, 45.9713564 ], + [ 7.2031581, 45.9711257 ], + [ 7.2032806, 45.9709514 ], + [ 7.2035076, 45.9708451 ], + [ 7.2037669, 45.9707388 ], + [ 7.2040422, 45.970655 ], + [ 7.2042207, 45.9705767 ], + [ 7.2043913, 45.9704758 ], + [ 7.2045372, 45.970295899999996 ], + [ 7.2047003, 45.9700486 ], + [ 7.2047984, 45.969925 ], + [ 7.2050346, 45.9695314 ], + [ 7.2050921, 45.9692894 ], + [ 7.2051089, 45.969143 ], + [ 7.2050447, 45.9690584 ], + [ 7.2050532, 45.9689682 ], + [ 7.205038, 45.968743 ], + [ 7.2050143, 45.9686246 ], + [ 7.2049828, 45.9684668 ], + [ 7.2049429, 45.9683653 ], + [ 7.2049195, 45.9681681 ], + [ 7.2049203, 45.9679936 ], + [ 7.2049783, 45.9678247 ], + [ 7.2050998, 45.9676843 ], + [ 7.2052626, 45.9675158 ], + [ 7.2053842, 45.9673584 ], + [ 7.2054179, 45.9671895 ], + [ 7.2054348, 45.967015 ], + [ 7.2053148, 45.966795 ], + [ 7.2052586, 45.966547 ], + [ 7.2051627, 45.9663665 ], + [ 7.2051631, 45.9662595 ], + [ 7.2051798, 45.96613 ], + [ 7.20527, 45.9659557 ], + [ 7.2056848, 45.965495 ], + [ 7.205766, 45.9653375 ], + [ 7.2057988, 45.9652194 ], + [ 7.2057926, 45.9649828 ], + [ 7.2057044, 45.9646672 ], + [ 7.2056824, 45.964363 ], + [ 7.2056751, 45.9641771 ], + [ 7.2056843, 45.9639181 ], + [ 7.2057335, 45.9637324 ], + [ 7.205678, 45.9635069 ], + [ 7.205558, 45.9632926 ], + [ 7.2053891, 45.9630161 ], + [ 7.2051732, 45.9626213 ], + [ 7.2049079, 45.9622544 ], + [ 7.2048361, 45.9620965 ], + [ 7.2047882, 45.9619838 ], + [ 7.2047888, 45.9618429 ], + [ 7.2048379, 45.9616798 ], + [ 7.2048629, 45.9614827 ], + [ 7.2048715, 45.9613701 ], + [ 7.2048157, 45.9612123 ], + [ 7.2047198, 45.9610261 ], + [ 7.2046479, 45.9608851 ], + [ 7.2046243, 45.9607386 ], + [ 7.2046652, 45.9605979 ], + [ 7.2047634, 45.9604518 ], + [ 7.2047805, 45.9602378 ], + [ 7.2047654, 45.95999 ], + [ 7.2047584, 45.9597421 ], + [ 7.2046948, 45.9595449 ], + [ 7.2045835, 45.9591897 ], + [ 7.2043986, 45.9588907 ], + [ 7.2042304999999995, 45.9586143 ], + [ 7.2040701, 45.958259 ], + [ 7.2039581, 45.9580503 ], + [ 7.2039183, 45.9579488 ], + [ 7.2039271, 45.9577798 ], + [ 7.2039437, 45.9576504 ], + [ 7.2039041, 45.9575038 ], + [ 7.2038401, 45.9573854 ], + [ 7.2037279, 45.9572499 ], + [ 7.2035584, 45.957103 ], + [ 7.2033816, 45.9569842 ], + [ 7.2032284, 45.9568092 ], + [ 7.2031402, 45.9567019 ], + [ 7.2031649, 45.9565725 ], + [ 7.20323, 45.9564262 ], + [ 7.2033363, 45.9562632 ], + [ 7.2033448, 45.9561563 ], + [ 7.2033052, 45.956004 ], + [ 7.2032736, 45.9558519 ], + [ 7.2032904, 45.9556999 ], + [ 7.2032265, 45.9555702 ], + [ 7.2030813, 45.9554064 ], + [ 7.2029609, 45.9552822 ], + [ 7.2028083, 45.9551579 ], + [ 7.2027846, 45.9550395 ], + [ 7.2028011, 45.9549551 ], + [ 7.2028985, 45.9547977 ], + [ 7.2029647, 45.9545838 ], + [ 7.2030062, 45.9542967 ], + [ 7.2030313, 45.9540771 ], + [ 7.2030402, 45.9538857 ], + [ 7.2030902, 45.9537 ], + [ 7.2031713, 45.9535763 ], + [ 7.2032525, 45.9534245 ], + [ 7.2033506, 45.9533065 ], + [ 7.2033593, 45.9531544 ], + [ 7.2033195, 45.9530248 ], + [ 7.2032718, 45.9528782 ], + [ 7.2032496, 45.9528017 ], + [ 7.2032162, 45.9526866 ], + [ 7.2031845, 45.9525513 ], + [ 7.2031609, 45.9524217 ], + [ 7.2032017, 45.9522979 ], + [ 7.2032588, 45.9521516 ], + [ 7.2033405, 45.952073 ], + [ 7.2034216, 45.951955 ], + [ 7.2035349, 45.9518427 ], + [ 7.203649, 45.951736 ], + [ 7.2037059, 45.9516348 ], + [ 7.2037309, 45.9514321 ], + [ 7.2037403, 45.9513139 ], + [ 7.2037971, 45.9512126 ], + [ 7.2038621, 45.9510889 ], + [ 7.2039601, 45.9509709 ], + [ 7.2040414, 45.9508134 ], + [ 7.2040824, 45.9506503 ], + [ 7.2040668, 45.950532 ], + [ 7.204035, 45.9504361 ], + [ 7.2040515, 45.9503461 ], + [ 7.2040936, 45.9501152 ], + [ 7.204159, 45.9498901 ], + [ 7.2041279, 45.9496197 ], + [ 7.2041604, 45.9495635 ], + [ 7.2042502, 45.9494849 ], + [ 7.2043874, 45.9494233 ], + [ 7.2044772, 45.949356 ], + [ 7.2045018, 45.9492435 ], + [ 7.2045427, 45.949114 ], + [ 7.2046076, 45.9490072 ], + [ 7.2046894, 45.9489117 ], + [ 7.2048268, 45.9488163 ], + [ 7.2049085, 45.9487377 ], + [ 7.2049655, 45.9486196 ], + [ 7.2049900000000004, 45.9485296 ], + [ 7.2050557, 45.9484284 ], + [ 7.2051366, 45.9483554 ], + [ 7.205153, 45.9482878 ], + [ 7.2051453, 45.9482033 ], + [ 7.2051779, 45.9481189 ], + [ 7.2052346, 45.9480403 ], + [ 7.2053486, 45.9479673 ], + [ 7.2054375, 45.9478944 ], + [ 7.2055194, 45.947782 ], + [ 7.2055522, 45.9476413 ], + [ 7.2055284, 45.9475454 ], + [ 7.2054321, 45.947449399999996 ], + [ 7.2052946, 45.9473759 ], + [ 7.2052142, 45.9473306 ], + [ 7.2051823, 45.9472516 ], + [ 7.2051827, 45.9471671 ], + [ 7.2052073, 45.9470489 ], + [ 7.2052158, 45.9469645 ], + [ 7.2052164, 45.946818 ], + [ 7.2052746, 45.9465647 ], + [ 7.2053235, 45.9464523 ], + [ 7.2053963, 45.9463736 ], + [ 7.2055184, 45.9462839 ], + [ 7.2055832, 45.9462108 ], + [ 7.2056646, 45.9460083 ], + [ 7.2057224, 45.9458676 ], + [ 7.2058599, 45.9457385 ], + [ 7.2060549, 45.9455532 ], + [ 7.2061288, 45.9454126 ], + [ 7.2060075, 45.9453334 ], + [ 7.2059356, 45.9451867 ], + [ 7.2058553, 45.9451077 ], + [ 7.2058557, 45.9450232 ], + [ 7.2058639, 45.9449725 ], + [ 7.2059287, 45.9448995 ], + [ 7.2060509, 45.9447816 ], + [ 7.206262, 45.9445963 ], + [ 7.2065539, 45.9443437 ], + [ 7.206976, 45.9439957 ], + [ 7.207041, 45.943872 ], + [ 7.2070575, 45.9437819 ], + [ 7.2070259, 45.9436185 ], + [ 7.2069541, 45.9434493 ], + [ 7.2068986, 45.9432351 ], + [ 7.2068748, 45.943145 ], + [ 7.2068916, 45.9429648 ], + [ 7.2069404, 45.9428523 ], + [ 7.2070061, 45.942768 ], + [ 7.2070474, 45.9425147 ], + [ 7.2070641, 45.9423627 ], + [ 7.2070244, 45.9422386 ], + [ 7.206904, 45.94212 ], + [ 7.2067669, 45.941962 ], + [ 7.2067032, 45.9417759 ], + [ 7.2067203, 45.9415338 ], + [ 7.2067787, 45.9412467 ], + [ 7.2068361, 45.941016 ], + [ 7.2068693, 45.940773899999996 ], + [ 7.2069267, 45.9407177 ], + [ 7.2070722, 45.9406111 ], + [ 7.2071622, 45.9404875 ], + [ 7.2072112, 45.940313 ], + [ 7.2073341, 45.9400373 ], + [ 7.2074898, 45.9395985 ], + [ 7.2074662, 45.9394632 ], + [ 7.2074345, 45.9393336 ], + [ 7.207411, 45.9391871 ], + [ 7.207444, 45.9390069 ], + [ 7.207485, 45.9388156 ], + [ 7.2075099, 45.9386523 ], + [ 7.2074542, 45.9384888 ], + [ 7.2073502, 45.9383139 ], + [ 7.207246, 45.9381785 ], + [ 7.207117, 45.9380147 ], + [ 7.2069725, 45.9378791 ], + [ 7.2068926, 45.9377156 ], + [ 7.2067318, 45.9374448 ], + [ 7.2065306, 45.9372021 ], + [ 7.2064107, 45.936982 ], + [ 7.2062992, 45.9366607 ], + [ 7.2061788, 45.9365477 ], + [ 7.2060171, 45.9364966 ], + [ 7.2058795, 45.9364511 ], + [ 7.2058396, 45.9363778 ], + [ 7.205848, 45.9362764 ], + [ 7.2058413, 45.9361525 ], + [ 7.2058178, 45.9359947 ], + [ 7.2057452, 45.9358312 ], + [ 7.205585, 45.9355998 ], + [ 7.2054656, 45.9352615 ], + [ 7.2053781, 45.9349853 ], + [ 7.205241, 45.9348216 ], + [ 7.2050966, 45.9346803 ], + [ 7.2049192, 45.9345391 ], + [ 7.2047336, 45.9343978 ], + [ 7.204557, 45.9342508 ], + [ 7.2044039, 45.9340645 ], + [ 7.2042918, 45.9339065 ], + [ 7.2041717, 45.9337203 ], + [ 7.2040348, 45.9335115 ], + [ 7.2037626, 45.9330996 ], + [ 7.2036335, 45.9329528 ], + [ 7.203473, 45.9328059 ], + [ 7.2033923, 45.9326536 ], + [ 7.2033287, 45.9324563 ], + [ 7.2033463, 45.9322987 ], + [ 7.2034436, 45.9321581 ], + [ 7.2035739, 45.9320121 ], + [ 7.2036632, 45.9318603 ], + [ 7.2036075, 45.9316799 ], + [ 7.2035276, 45.9315219 ], + [ 7.2035203, 45.931353 ], + [ 7.2034726, 45.9312064 ], + [ 7.2033514, 45.9310878 ], + [ 7.2032553, 45.9309692 ], + [ 7.2031267, 45.9308788 ], + [ 7.2029732, 45.9307939 ], + [ 7.2028609, 45.9306809 ], + [ 7.2027643, 45.9304723 ], + [ 7.2026767, 45.9302411 ], + [ 7.2026050999999995, 45.9300325 ], + [ 7.2025494, 45.9298746 ], + [ 7.2024211, 45.9297222 ], + [ 7.2022677, 45.9296148 ], + [ 7.2021874, 45.9295413 ], + [ 7.2021073, 45.9294341 ], + [ 7.2020426, 45.9293213 ], + [ 7.2020349, 45.9292424 ], + [ 7.2020845, 45.9291187 ], + [ 7.2021414, 45.9290005 ], + [ 7.2021903, 45.9288881 ], + [ 7.2021747, 45.9287584 ], + [ 7.202143, 45.9286401 ], + [ 7.2020868, 45.928578 ], + [ 7.2020793, 45.9284653 ], + [ 7.2021201, 45.9283472 ], + [ 7.2021777, 45.928246 ], + [ 7.2022265, 45.9281448 ], + [ 7.2022110999999995, 45.9279645 ], + [ 7.2021151, 45.9278177 ], + [ 7.2019295, 45.9276933 ], + [ 7.2016473, 45.9275743 ], + [ 7.2012765, 45.9274212 ], + [ 7.2009942, 45.9273302 ], + [ 7.2007116, 45.9272731 ], + [ 7.2003638, 45.9272271 ], + [ 7.2001212, 45.9272659 ], + [ 7.199822, 45.9273326 ], + [ 7.1993526, 45.9274495 ], + [ 7.1989729, 45.9275216 ], + [ 7.1987959, 45.9272847 ], + [ 7.1987319, 45.9271774 ], + [ 7.198538, 45.9271206 ], + [ 7.1983932, 45.9270526 ], + [ 7.19824, 45.926917 ], + [ 7.1980717, 45.9267081 ], + [ 7.1979676, 45.926567 ], + [ 7.1978062, 45.9264482 ], + [ 7.1976125, 45.9263238 ], + [ 7.1974841, 45.926222 ], + [ 7.1974766, 45.9260925 ], + [ 7.1975575, 45.9260195 ], + [ 7.1976313, 45.9259071 ], + [ 7.1976398, 45.9258057 ], + [ 7.1975354, 45.9257323 ], + [ 7.1974384, 45.9256137 ], + [ 7.1973583, 45.9255177 ], + [ 7.1972298, 45.925416 ], + [ 7.1971649, 45.925337 ], + [ 7.1971491, 45.9252693 ], + [ 7.1971496, 45.9251454 ], + [ 7.1970697, 45.9249987 ], + [ 7.1968852, 45.9248124 ], + [ 7.1966677, 45.9246428 ], + [ 7.1964825, 45.9244283 ], + [ 7.1963704, 45.9242815 ], + [ 7.1962664, 45.9241179 ], + [ 7.1961047, 45.9240667 ], + [ 7.1959119, 45.9239423 ], + [ 7.1957828, 45.9238124 ], + [ 7.1956546, 45.9236543 ], + [ 7.1955577, 45.9235245 ], + [ 7.1955181, 45.923361 ], + [ 7.195438, 45.9232538 ], + [ 7.1952615, 45.9231012 ], + [ 7.1951483, 45.9229995 ], + [ 7.1951246, 45.9228981 ], + [ 7.1950368, 45.9227176 ], + [ 7.194957, 45.9225541 ], + [ 7.1948612, 45.9223454 ], + [ 7.1948543, 45.9220919 ], + [ 7.1947992, 45.9218046 ], + [ 7.1947105, 45.9216297 ], + [ 7.1945822, 45.9214998 ], + [ 7.1944376, 45.9214093 ], + [ 7.1943245, 45.9213188 ], + [ 7.1942928, 45.9211836 ], + [ 7.1942532, 45.9210314 ], + [ 7.1941571, 45.9209016 ], + [ 7.1940279, 45.9208111 ], + [ 7.1937537, 45.9206807 ], + [ 7.1934956, 45.9205786 ], + [ 7.1932864, 45.9205386 ], + [ 7.1930439, 45.920538 ], + [ 7.1928658, 45.9205599 ], + [ 7.1926556, 45.9205481 ], + [ 7.1925189, 45.920497 ], + [ 7.192341, 45.920457 ], + [ 7.1921146, 45.9204676 ], + [ 7.1919043, 45.9204839 ], + [ 7.1916537, 45.9205057 ], + [ 7.1914119, 45.9205219 ], + [ 7.1912339, 45.9205158 ], + [ 7.191056, 45.9204927 ], + [ 7.190854, 45.9204471 ], + [ 7.1906048, 45.9203393 ], + [ 7.1903307, 45.9202146 ], + [ 7.1901851, 45.9201748 ], + [ 7.1900072, 45.9201349 ], + [ 7.189822, 45.9201231 ], + [ 7.1895719, 45.920021 ], + [ 7.1890799, 45.9198111 ], + [ 7.188886, 45.9197599 ], + [ 7.1887573, 45.9197145 ], + [ 7.188588, 45.9195788 ], + [ 7.1884756, 45.9194883 ], + [ 7.1882979, 45.9194203 ], + [ 7.1881047, 45.9193971 ], + [ 7.1879107, 45.9193628 ], + [ 7.1876604, 45.919317 ], + [ 7.1874263, 45.9192543 ], + [ 7.1872724, 45.9192652 ], + [ 7.187095, 45.9193097 ], + [ 7.1869731, 45.9193487 ], + [ 7.1868118, 45.919399 ], + [ 7.186674, 45.9194042 ], + [ 7.1865372, 45.9193812 ], + [ 7.1862952, 45.9192905 ], + [ 7.1861014, 45.9192054 ], + [ 7.1858837, 45.9190865 ], + [ 7.1856258, 45.9189337 ], + [ 7.185433, 45.9188092 ], + [ 7.1852554, 45.9187411 ], + [ 7.1850615, 45.9186898 ], + [ 7.1848121, 45.9186158 ], + [ 7.1846101, 45.9185646 ], + [ 7.1844081, 45.9185302 ], + [ 7.1842222, 45.9185014 ], + [ 7.1838994, 45.9184554 ], + [ 7.1836974, 45.918421 ], + [ 7.1835123, 45.9183754 ], + [ 7.1833024, 45.918296 ], + [ 7.1830761, 45.918284 ], + [ 7.1828175, 45.9182945 ], + [ 7.1825591, 45.9182712 ], + [ 7.1822122, 45.9182026 ], + [ 7.1818975, 45.918151 ], + [ 7.181647, 45.9181502 ], + [ 7.1813725999999996, 45.9180987 ], + [ 7.1811143, 45.9180304 ], + [ 7.180848, 45.9179564 ], + [ 7.1806541, 45.9179051 ], + [ 7.1804522, 45.9178538 ], + [ 7.1802995, 45.9177857 ], + [ 7.1800176, 45.9176103 ], + [ 7.1797117, 45.9173897 ], + [ 7.179494, 45.9172652 ], + [ 7.1792277, 45.9171968 ], + [ 7.1790176, 45.917168 ], + [ 7.1788487, 45.9171112 ], + [ 7.1787032, 45.91706 ], + [ 7.178461, 45.9169973 ], + [ 7.1781384, 45.9169175 ], + [ 7.1778801, 45.9168548 ], + [ 7.177646, 45.9167922 ], + [ 7.1773798, 45.9167125 ], + [ 7.1772109, 45.9166669 ], + [ 7.176985, 45.9165648 ], + [ 7.1768315, 45.9164912 ], + [ 7.1766065, 45.9163779 ], + [ 7.176421, 45.9162647 ], + [ 7.1762193, 45.9161626 ], + [ 7.1760015, 45.9160662 ], + [ 7.1758487, 45.9160151 ], + [ 7.1757274, 45.9159415 ], + [ 7.1756554, 45.9158343 ], + [ 7.1755594, 45.9156988 ], + [ 7.1754234, 45.9155182 ], + [ 7.1752944, 45.9153714 ], + [ 7.17515, 45.9152414 ], + [ 7.1749484, 45.9151394 ], + [ 7.174771, 45.9150093 ], + [ 7.1745049, 45.9149071 ], + [ 7.174352, 45.9148785 ], + [ 7.174158, 45.9148554 ], + [ 7.1740614, 45.9148382 ], + [ 7.1739642, 45.9147816 ], + [ 7.1738116, 45.9147023 ], + [ 7.1736095, 45.9146735 ], + [ 7.1734244, 45.9146391 ], + [ 7.1732382, 45.9146723 ], + [ 7.1730359, 45.9147055 ], + [ 7.1728419, 45.9146711 ], + [ 7.1727133, 45.914631299999996 ], + [ 7.1725679, 45.9145464 ], + [ 7.172407, 45.9145064 ], + [ 7.1722372, 45.9144834 ], + [ 7.1721647, 45.9144663 ], + [ 7.1721249, 45.9143704 ], + [ 7.1719797, 45.9142574 ], + [ 7.1719236, 45.9142065 ], + [ 7.1718917, 45.9141388 ], + [ 7.1717554, 45.9140145 ], + [ 7.1715617, 45.9139181 ], + [ 7.1713839, 45.9138838 ], + [ 7.1711416, 45.9138605 ], + [ 7.1709966, 45.9138544 ], + [ 7.1709154, 45.913826 ], + [ 7.1707708, 45.9137467 ], + [ 7.1706174, 45.9136674 ], + [ 7.1704082, 45.913616 ], + [ 7.1702705, 45.91361 ], + [ 7.17015, 45.9135477 ], + [ 7.1699646, 45.9134232 ], + [ 7.169828, 45.9133439 ], + [ 7.1696182, 45.9132588 ], + [ 7.1694085, 45.9131567 ], + [ 7.1692397, 45.9130887 ], + [ 7.1690217, 45.9130373 ], + [ 7.1689005, 45.9129581 ], + [ 7.1688365, 45.9128621 ], + [ 7.1686838999999996, 45.9127715 ], + [ 7.1683842, 45.9127818 ], + [ 7.1682557, 45.9127082 ], + [ 7.1680702, 45.9126119 ], + [ 7.167861, 45.9125662 ], + [ 7.167619, 45.9124697 ], + [ 7.1673209, 45.9123448 ], + [ 7.1671511, 45.9123049 ], + [ 7.1670142, 45.9122932 ], + [ 7.1668283, 45.9122814 ], + [ 7.1666584, 45.9122696 ], + [ 7.1665055, 45.9122409 ], + [ 7.1663599, 45.9122011 ], + [ 7.16615, 45.9121384 ], + [ 7.1659974, 45.9120479 ], + [ 7.1659173, 45.9119687 ], + [ 7.1658687, 45.9118672 ], + [ 7.1657243, 45.9117541 ], + [ 7.1655385, 45.9116859 ], + [ 7.1653374, 45.9116347 ], + [ 7.1651435, 45.9115946 ], + [ 7.1649818, 45.911566 ], + [ 7.1648531, 45.9115261 ], + [ 7.1647401, 45.9114188 ], + [ 7.1646843, 45.9113116 ], + [ 7.1645559, 45.9112211 ], + [ 7.1643461, 45.9111359 ], + [ 7.1641684, 45.9110678 ], + [ 7.1640722, 45.9109886 ], + [ 7.1640160999999996, 45.9109378 ], + [ 7.1638625, 45.9108753 ], + [ 7.1638308, 45.9107851 ], + [ 7.163799, 45.9107062 ], + [ 7.1637269, 45.9106158 ], + [ 7.1635903, 45.9105591 ], + [ 7.1634046, 45.9104853 ], + [ 7.1632029, 45.9104001 ], + [ 7.162977, 45.9103206 ], + [ 7.1628564, 45.9102807 ], + [ 7.1626708, 45.9101901 ], + [ 7.1622763, 45.9099973 ], + [ 7.1619462, 45.909816 ], + [ 7.1617121, 45.9097647 ], + [ 7.1615019, 45.9097696 ], + [ 7.161365, 45.9097691 ], + [ 7.1612596, 45.9097406 ], + [ 7.1611309, 45.9097065 ], + [ 7.1610013, 45.9096891 ], + [ 7.1608151, 45.9097223 ], + [ 7.1607184, 45.9097446 ], + [ 7.1604936, 45.9097579 ], + [ 7.1603229, 45.9097433 ], + [ 7.1601693, 45.9097034 ], + [ 7.1600408, 45.909641 ], + [ 7.159847, 45.9095729 ], + [ 7.1596693, 45.9095159 ], + [ 7.1594922, 45.9094929 ], + [ 7.1593305, 45.9094698 ], + [ 7.1592179, 45.9094357 ], + [ 7.1590965, 45.9093846 ], + [ 7.158976, 45.9093392 ], + [ 7.1588225, 45.9092767 ], + [ 7.1587181, 45.90922 ], + [ 7.1585001, 45.9091574 ], + [ 7.1581856, 45.9090832 ], + [ 7.1579595, 45.909043 ], + [ 7.1578058, 45.9090257 ], + [ 7.1577416, 45.9089804 ], + [ 7.1577015, 45.9089465 ], + [ 7.1576455, 45.908873 ], + [ 7.1575894, 45.9088109 ], + [ 7.1574521, 45.9087317 ], + [ 7.1571781, 45.9086181 ], + [ 7.1563815, 45.9081537 ], + [ 7.1560825, 45.9080401 ], + [ 7.1560181, 45.9080399 ], + [ 7.155881, 45.908062 ], + [ 7.1558155, 45.9081125 ], + [ 7.1557028, 45.9081177 ], + [ 7.1554686, 45.9080776 ], + [ 7.1552023, 45.9080204 ], + [ 7.1548796, 45.9079743 ], + [ 7.1546454, 45.9079397 ], + [ 7.1544597, 45.9078828 ], + [ 7.1543551, 45.90786 ], + [ 7.1542663, 45.9078935 ], + [ 7.1542009, 45.9079327 ], + [ 7.1540717, 45.9079886 ], + [ 7.1538695, 45.9079935 ], + [ 7.1536836, 45.9079648 ], + [ 7.1535308, 45.9079305 ], + [ 7.153337, 45.9078736 ], + [ 7.153265, 45.9077832 ], + [ 7.1531931, 45.9076591 ], + [ 7.1531286, 45.9075293 ], + [ 7.1530807, 45.907439 ], + [ 7.152848, 45.9072918 ], + [ 7.1524685, 45.9071555 ], + [ 7.152122, 45.9070417 ], + [ 7.1518396, 45.9069957 ], + [ 7.1516617, 45.9069726 ], + [ 7.1514765, 45.9069551 ], + [ 7.1513632, 45.906904 ], + [ 7.1511934, 45.9068866 ], + [ 7.1509762, 45.9068465 ], + [ 7.1506938, 45.9067948 ], + [ 7.1505238, 45.9067943 ], + [ 7.1503218, 45.9067767 ], + [ 7.1500633, 45.9067702 ], + [ 7.1497806, 45.9067637 ], + [ 7.1496026, 45.9067744 ], + [ 7.1493199, 45.9067847 ], + [ 7.1490855, 45.906784 ], + [ 7.148852, 45.9067719 ], + [ 7.1486497, 45.9067938 ], + [ 7.1484959, 45.9068045 ], + [ 7.1483913, 45.9067816 ], + [ 7.14823, 45.9066797 ], + [ 7.1417054, 45.9048276 ], + [ 7.1416066, 45.9047784 ], + [ 7.1328308, 45.9004101 ], + [ 7.1327183, 45.9003815 ], + [ 7.1325485, 45.9003527 ], + [ 7.1322259, 45.900301 ], + [ 7.1317817, 45.9002488 ], + [ 7.1315321, 45.9002592 ], + [ 7.13137, 45.9002868 ], + [ 7.1312483, 45.9003201 ], + [ 7.1310952, 45.9003309 ], + [ 7.1309335, 45.9003078 ], + [ 7.1307487, 45.9002452 ], + [ 7.1305387, 45.9001994 ], + [ 7.1303692, 45.9001369 ], + [ 7.1300868, 45.9001021 ], + [ 7.129893, 45.9000451 ], + [ 7.1297243, 45.8999826 ], + [ 7.1295225, 45.8999199 ], + [ 7.1293448999999995, 45.899863 ], + [ 7.1291197, 45.8998172 ], + [ 7.1289821, 45.8997998 ], + [ 7.1288045, 45.8997429 ], + [ 7.1286678, 45.8997029 ], + [ 7.1285304, 45.8996574 ], + [ 7.1283776, 45.8996231 ], + [ 7.1281596, 45.8995885 ], + [ 7.1280058, 45.8995879 ], + [ 7.1278449, 45.8995649 ], + [ 7.1276832, 45.8995306 ], + [ 7.1275546, 45.899502 ], + [ 7.1273284, 45.8994899 ], + [ 7.1271907, 45.8994894 ], + [ 7.1270459, 45.8994551 ], + [ 7.126828, 45.8994093 ], + [ 7.1266744, 45.8993749 ], + [ 7.1265053, 45.8993688 ], + [ 7.1263595, 45.8993851 ], + [ 7.1262389, 45.8993565 ], + [ 7.1261335, 45.8993393 ], + [ 7.1259323, 45.8993104 ], + [ 7.1257466, 45.8992591 ], + [ 7.1255049, 45.8991569 ], + [ 7.1252949, 45.8991223 ], + [ 7.1250776, 45.8991103 ], + [ 7.1248113, 45.89907 ], + [ 7.1246257, 45.8989905 ], + [ 7.1244723, 45.8989279 ], + [ 7.1243115, 45.8988823 ], + [ 7.1241176, 45.8988535 ], + [ 7.1239966, 45.8989037 ], + [ 7.1238668, 45.8989258 ], + [ 7.1237208, 45.8989647 ], + [ 7.1235676, 45.8990036 ], + [ 7.1233733, 45.8990423 ], + [ 7.1231951, 45.8990755 ], + [ 7.1229201, 45.8991477 ], + [ 7.1226291, 45.8992029 ], + [ 7.1223381, 45.8992639 ], + [ 7.1221195, 45.8993194 ], + [ 7.1218367, 45.8993522 ], + [ 7.121546, 45.8993512 ], + [ 7.1212794, 45.8993558 ], + [ 7.1210771, 45.8994001 ], + [ 7.1208826, 45.899467 ], + [ 7.1207372, 45.899551 ], + [ 7.1205667, 45.8996574 ], + [ 7.1204206, 45.8997132 ], + [ 7.1202835, 45.8997465 ], + [ 7.1200731, 45.8997852 ], + [ 7.1198144, 45.8998236 ], + [ 7.1193052, 45.8998669 ], + [ 7.1193201, 45.9000753 ], + [ 7.1193191, 45.9002443 ], + [ 7.1193101, 45.9004019 ], + [ 7.1192924, 45.9005427 ], + [ 7.1193329, 45.9006386 ], + [ 7.1194769, 45.9007911 ], + [ 7.1195569, 45.9008815 ], + [ 7.1195644, 45.9009886 ], + [ 7.1194992, 45.9011122 ], + [ 7.1194011, 45.9012301 ], + [ 7.1193602, 45.9013427 ], + [ 7.1193111, 45.9014777 ], + [ 7.1193264, 45.9016129 ], + [ 7.1194061, 45.9017427 ], + [ 7.119575, 45.9019235 ], + [ 7.119638, 45.9021659 ], + [ 7.1196762, 45.9025209 ], + [ 7.119578, 45.9026388 ], + [ 7.1194648, 45.9027285 ], + [ 7.1193346, 45.9028182 ], + [ 7.1191891, 45.902919 ], + [ 7.1190748, 45.9030369 ], + [ 7.1190259, 45.9031437 ], + [ 7.1190011, 45.9032506 ], + [ 7.1189432, 45.903363 ], + [ 7.1188299, 45.9034584 ], + [ 7.1186351, 45.9035816 ], + [ 7.1184968, 45.9036937 ], + [ 7.118335, 45.9038114 ], + [ 7.1181241, 45.9039402 ], + [ 7.1179857, 45.9040523 ], + [ 7.1177508, 45.9041416 ], + [ 7.1175482, 45.9042254 ], + [ 7.1173384, 45.9042922 ], + [ 7.1170877, 45.904342 ], + [ 7.1168853, 45.904375 ], + [ 7.1165287, 45.904492 ], + [ 7.116343, 45.9045758 ], + [ 7.1160344, 45.9047324 ], + [ 7.1158643, 45.9048894 ], + [ 7.1156854, 45.9050577 ], + [ 7.1154417, 45.9052652 ], + [ 7.1152383, 45.9054898 ], + [ 7.1150751, 45.9057145 ], + [ 7.1149521, 45.9059449 ], + [ 7.1148055, 45.9062147 ], + [ 7.1147396, 45.9063215 ], + [ 7.1146669, 45.9063719 ], + [ 7.1145943, 45.9063942 ], + [ 7.1144564, 45.9064106 ], + [ 7.1143032, 45.9064438 ], + [ 7.1141894, 45.9064828 ], + [ 7.1141003, 45.906567 ], + [ 7.1140347, 45.9066399 ], + [ 7.1139778, 45.9067242 ], + [ 7.1139289, 45.9068141 ], + [ 7.1138481, 45.9068702 ], + [ 7.1137504, 45.9069149 ], + [ 7.1136535, 45.9069539 ], + [ 7.1135075, 45.9069872 ], + [ 7.1132892, 45.9070033 ], + [ 7.1131279, 45.9070309 ], + [ 7.1129739, 45.9070697 ], + [ 7.1128527, 45.9071312 ], + [ 7.1127065, 45.9072096 ], + [ 7.1125763, 45.9072823 ], + [ 7.1123988, 45.9073436 ], + [ 7.1122447, 45.9073881 ], + [ 7.1120503, 45.9074381 ], + [ 7.1118568, 45.9074712 ], + [ 7.1116866, 45.9075212 ], + [ 7.1115481, 45.9076502 ], + [ 7.1114587, 45.9077794 ], + [ 7.1113766, 45.9079199 ], + [ 7.1112552, 45.9080096 ], + [ 7.111101, 45.908071 ], + [ 7.1109146, 45.9081379 ], + [ 7.1106887, 45.9081934 ], + [ 7.1104536, 45.9083164 ], + [ 7.1101689, 45.9085181 ], + [ 7.1100478, 45.9085684 ], + [ 7.1099669, 45.90863 ], + [ 7.1098608, 45.908731 ], + [ 7.1097313, 45.9088375 ], + [ 7.109609, 45.9089384 ], + [ 7.1094548, 45.9090055 ], + [ 7.1093096, 45.909038699999996 ], + [ 7.1091073, 45.9090718 ], + [ 7.1089453, 45.9090824 ], + [ 7.1088321, 45.9091608 ], + [ 7.1087501, 45.9092675 ], + [ 7.1086607, 45.9093967 ], + [ 7.1085547, 45.9096216 ], + [ 7.1084966, 45.9097735 ], + [ 7.1084715, 45.9099198 ], + [ 7.1083903, 45.9100321 ], + [ 7.1083087, 45.9100769 ], + [ 7.1081713, 45.910144 ], + [ 7.108017, 45.9102279 ], + [ 7.1079198, 45.9103233 ], + [ 7.1077896, 45.9104017 ], + [ 7.1076274, 45.9104517 ], + [ 7.1074258, 45.910496 ], + [ 7.1072394, 45.9105517 ], + [ 7.1071334, 45.9106302 ], + [ 7.1070604, 45.9107143 ], + [ 7.1069631, 45.9108266 ], + [ 7.1068246, 45.9109557 ], + [ 7.106686, 45.9110903 ], + [ 7.1065406, 45.911163 ], + [ 7.1063542, 45.9112299 ], + [ 7.1060455, 45.9115272 ], + [ 7.1058501, 45.9117349 ], + [ 7.1057194, 45.9118977 ], + [ 7.1056867, 45.9119765 ], + [ 7.1056697, 45.912134 ], + [ 7.1056611, 45.9122242 ], + [ 7.1056201, 45.9123366 ], + [ 7.1055624, 45.9124153 ], + [ 7.1055372, 45.9125841 ], + [ 7.1055367, 45.9126686 ], + [ 7.105512, 45.9127586 ], + [ 7.1054469, 45.9128654 ], + [ 7.1053812, 45.9129384 ], + [ 7.1052761, 45.9130056 ], + [ 7.1051701, 45.913084 ], + [ 7.1050245, 45.9131961 ], + [ 7.1049426, 45.9132747 ], + [ 7.1048129, 45.9134094 ], + [ 7.1047065, 45.9135498 ], + [ 7.1046332, 45.9136903 ], + [ 7.1045922, 45.9138141 ], + [ 7.1045504, 45.9139265 ], + [ 7.1045012, 45.9140728 ], + [ 7.1044761, 45.9142134 ], + [ 7.1045469, 45.9144953 ], + [ 7.1046024, 45.9146363 ], + [ 7.1046178, 45.9147546 ], + [ 7.104609, 45.9148729 ], + [ 7.1045601, 45.9149628 ], + [ 7.1044945, 45.9150246 ], + [ 7.1044215, 45.9151144 ], + [ 7.1043323, 45.9152042 ], + [ 7.1042666, 45.9152828 ], + [ 7.1042177, 45.9153783 ], + [ 7.1041688, 45.9154627 ], + [ 7.1040954, 45.9156145 ], + [ 7.1040538, 45.9157044 ], + [ 7.1039565, 45.915811 ], + [ 7.103875, 45.9159572 ], + [ 7.1038251, 45.9160865 ], + [ 7.1037922, 45.916199 ], + [ 7.1037595, 45.9162778 ], + [ 7.1036128, 45.9164124 ], + [ 7.1034498, 45.916592 ], + [ 7.1030123, 45.9168776 ], + [ 7.1028743, 45.9169221 ], + [ 7.1028094, 45.9170007 ], + [ 7.1027514, 45.91713 ], + [ 7.1027106, 45.9172144 ], + [ 7.10271, 45.9172989 ], + [ 7.1027338, 45.9173609 ], + [ 7.1027898, 45.9174287 ], + [ 7.1028466, 45.9174965 ], + [ 7.1029346, 45.9175869 ], + [ 7.1029902, 45.9177223 ], + [ 7.102949, 45.9178686 ], + [ 7.1029072, 45.9179867 ], + [ 7.1028664, 45.9180767 ], + [ 7.1027771, 45.9181777 ], + [ 7.1027444, 45.9182564 ], + [ 7.1027436999999995, 45.9183803 ], + [ 7.1027834, 45.918465 ], + [ 7.102815, 45.9185665 ], + [ 7.1027741, 45.9186677 ], + [ 7.102716, 45.9188139 ], + [ 7.1026588, 45.9189432 ], + [ 7.1025934, 45.9191063 ], + [ 7.1025272, 45.9192525 ], + [ 7.1024215, 45.9194154 ], + [ 7.1022745, 45.9196176 ], + [ 7.1020876, 45.9197465 ], + [ 7.1019178, 45.9198416 ], + [ 7.1016827, 45.9199477 ], + [ 7.1015201, 45.9200653 ], + [ 7.1012845, 45.920256 ], + [ 7.1010971, 45.9204749 ], + [ 7.1009261, 45.9206319 ], + [ 7.1007553, 45.9207665 ], + [ 7.1007465, 45.920896 ], + [ 7.1007536, 45.9210368 ], + [ 7.1007447, 45.9211719 ], + [ 7.1007037, 45.9213013 ], + [ 7.1006384, 45.9214307 ], + [ 7.100532, 45.9215654 ], + [ 7.1004345, 45.9217002 ], + [ 7.1003201, 45.9218293 ], + [ 7.1001825, 45.9219358 ], + [ 7.1000844, 45.9220368 ], + [ 7.1000353, 45.9221718 ], + [ 7.0999944, 45.9222618 ], + [ 7.0999366, 45.9223685 ], + [ 7.0998555, 45.9224527 ], + [ 7.0997252, 45.9225479 ], + [ 7.0995715, 45.9226487 ], + [ 7.0994815, 45.9227329 ], + [ 7.0993923, 45.9228396 ], + [ 7.0992697, 45.9229856 ], + [ 7.099116, 45.923092 ], + [ 7.0989291, 45.9232152 ], + [ 7.0986858999999995, 45.9233325 ], + [ 7.0984669, 45.9234387 ], + [ 7.0982884, 45.9235169 ], + [ 7.0980931, 45.9236963 ], + [ 7.0980039, 45.9237918 ], + [ 7.0979388, 45.9238929 ], + [ 7.0978404, 45.9240559 ], + [ 7.0977668, 45.9242302 ], + [ 7.0977175, 45.9243765 ], + [ 7.0976597, 45.9244776 ], + [ 7.0975379, 45.9246236 ], + [ 7.0974316, 45.9247415 ], + [ 7.0972606, 45.9249041 ], + [ 7.0971387, 45.9250782 ], + [ 7.0970002, 45.9251904 ], + [ 7.0969352, 45.9252859 ], + [ 7.0968618, 45.9254208 ], + [ 7.0967797, 45.92555 ], + [ 7.0967063, 45.9256962 ], + [ 7.0965431, 45.9258871 ], + [ 7.0963725, 45.9259877 ], + [ 7.0962831, 45.9261057 ], + [ 7.096226, 45.9262238 ], + [ 7.0961439, 45.9263473 ], + [ 7.0960462, 45.9265103 ], + [ 7.0959802, 45.9266171 ], + [ 7.0958667, 45.9267349 ], + [ 7.0957039, 45.9268695 ], + [ 7.0955824, 45.9269816 ], + [ 7.0955578, 45.9270492 ], + [ 7.0954995, 45.9272179 ], + [ 7.0954422, 45.9273641 ], + [ 7.0953278, 45.9274989 ], + [ 7.0951894, 45.9277124 ], + [ 7.0950009, 45.9281003 ], + [ 7.0949919, 45.9282522 ], + [ 7.0949994, 45.9283311 ], + [ 7.095015, 45.9284213 ], + [ 7.0950144, 45.928505799999996 ], + [ 7.0950126000000004, 45.9286747 ], + [ 7.0950115, 45.9288437 ], + [ 7.0950267, 45.9289902 ], + [ 7.0950501, 45.9291029 ], + [ 7.0951216, 45.9292721 ], + [ 7.0951531, 45.9293906 ], + [ 7.0952652, 45.9296162 ], + [ 7.095345, 45.9297518 ], + [ 7.0954008, 45.9298477 ], + [ 7.0955218, 45.9299383 ], + [ 7.0956745, 45.9300064 ], + [ 7.0958844, 45.9300635 ], + [ 7.0960048, 45.9301428 ], + [ 7.0961902, 45.9302562 ], + [ 7.0962701, 45.9303635 ], + [ 7.096382, 45.9305047 ], + [ 7.0964626, 45.9306233 ], + [ 7.0965829, 45.9307139 ], + [ 7.0966791, 45.9307874 ], + [ 7.0967924, 45.930833 ], + [ 7.0969531, 45.9309124 ], + [ 7.0971306, 45.9309919 ], + [ 7.0972669, 45.9310994 ], + [ 7.0973478, 45.931173 ], + [ 7.0974197, 45.9312802 ], + [ 7.0974835, 45.9313875 ], + [ 7.0975875, 45.9315006 ], + [ 7.0978288, 45.9316986 ], + [ 7.0979901, 45.9317949 ], + [ 7.0979973, 45.9318058 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "JBG0037", + "country" : "CHE", + "name" : [ + { + "text" : "Eidgenössisches Jagdbanngebiet Val Ferret / Combe de l'A", + "lang" : "de-CH" + }, + { + "text" : "District franc fédéral Val Ferret / Combe de l'A", + "lang" : "fr-CH" + }, + { + "text" : "Bandita federale di caccia Val Ferret / Combe de l'A", + "lang" : "it-CH" + }, + { + "text" : "Federal Game Reserve Val Ferret / Combe de l'A", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5419344, 47.457581 ], + [ 7.5420074, 47.4575758 ], + [ 7.5419742, 47.4572498 ], + [ 7.5419045, 47.4572437 ], + [ 7.5416887, 47.4572117 ], + [ 7.5413247, 47.4571641 ], + [ 7.5412463, 47.4571501 ], + [ 7.5410094999999995, 47.4571209 ], + [ 7.5406661, 47.4571071 ], + [ 7.5406121, 47.4571039 ], + [ 7.5405117, 47.457098 ], + [ 7.5398648999999995, 47.4570598 ], + [ 7.5386147999999995, 47.4570121 ], + [ 7.537778, 47.4569692 ], + [ 7.5376747, 47.4569646 ], + [ 7.5376826, 47.4569346 ], + [ 7.5378173, 47.4564276 ], + [ 7.5378166, 47.4563708 ], + [ 7.5377847, 47.4563644 ], + [ 7.537738, 47.4563533 ], + [ 7.5377285, 47.456355 ], + [ 7.5375971, 47.4563266 ], + [ 7.5369461, 47.4562906 ], + [ 7.5365732, 47.4562699 ], + [ 7.5357168, 47.4562254 ], + [ 7.5349452, 47.4563128 ], + [ 7.5341474, 47.4562654 ], + [ 7.5341315, 47.4562643 ], + [ 7.5340517, 47.456454 ], + [ 7.5340173, 47.4565329 ], + [ 7.5339567, 47.4566718 ], + [ 7.5332721, 47.45664 ], + [ 7.5331199, 47.4567485 ], + [ 7.5330845, 47.4567755 ], + [ 7.5324823, 47.4567765 ], + [ 7.5324799, 47.4567833 ], + [ 7.5322812, 47.4571465 ], + [ 7.5325264, 47.4571738 ], + [ 7.5334646, 47.457286 ], + [ 7.5349118, 47.4573849 ], + [ 7.5358231, 47.4574421 ], + [ 7.5363258, 47.4575021 ], + [ 7.5369267, 47.4575108 ], + [ 7.5372006, 47.4575379 ], + [ 7.537681, 47.4575785 ], + [ 7.538247, 47.4576516 ], + [ 7.5386775, 47.4577075 ], + [ 7.5388373, 47.4577282 ], + [ 7.5388887, 47.4576308 ], + [ 7.5389067, 47.4575966 ], + [ 7.5389227, 47.4575664 ], + [ 7.5399142999999995, 47.4576167 ], + [ 7.540457, 47.45764 ], + [ 7.540672, 47.4576503 ], + [ 7.5410498, 47.4576307 ], + [ 7.5410763, 47.4576295 ], + [ 7.5415345, 47.4576029 ], + [ 7.5419344, 47.457581 ] + ], + [ + [ 7.5376531, 47.456931 ], + [ 7.5376444, 47.4569633 ], + [ 7.5355875999999995, 47.4568725 ], + [ 7.5353699, 47.4568628 ], + [ 7.535406, 47.456769 ], + [ 7.5355517, 47.4563399 ], + [ 7.5355684, 47.4562908 ], + [ 7.5357377, 47.4562705 ], + [ 7.5358208, 47.4562747 ], + [ 7.5375816, 47.456362 ], + [ 7.5377401, 47.456396 ], + [ 7.5377885, 47.4564037 ], + [ 7.5377883, 47.4564259 ], + [ 7.5376531, 47.456931 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns174", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Blauenweid", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Blauenweid", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Blauenweid", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Blauenweid", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7373635, 47.3780369 ], + [ 7.7376214, 47.3782446 ], + [ 7.7379613, 47.3784828 ], + [ 7.7383827, 47.3782119 ], + [ 7.738633, 47.37818 ], + [ 7.7387566, 47.3781423 ], + [ 7.7388497, 47.3781008 ], + [ 7.7390463, 47.3780034 ], + [ 7.739097, 47.3779833 ], + [ 7.7391499, 47.3779456 ], + [ 7.7392365, 47.3778871 ], + [ 7.7393091, 47.3778254 ], + [ 7.7393341, 47.3778042 ], + [ 7.7393853, 47.3777344 ], + [ 7.7393894, 47.3777277 ], + [ 7.7394519, 47.377738 ], + [ 7.7395032, 47.377751 ], + [ 7.7395534999999995, 47.3777683 ], + [ 7.7396119, 47.377801 ], + [ 7.7396571, 47.3778345 ], + [ 7.7396771, 47.3778724 ], + [ 7.7396939, 47.3779099 ], + [ 7.7397404, 47.3779953 ], + [ 7.7397839, 47.3780861 ], + [ 7.7398118, 47.3781178 ], + [ 7.7398948, 47.3781768 ], + [ 7.7400196, 47.3782182 ], + [ 7.7401242, 47.3782655 ], + [ 7.7401706, 47.3782813 ], + [ 7.7402093, 47.3782769 ], + [ 7.7403759999999995, 47.3783238 ], + [ 7.7405171, 47.3783633 ], + [ 7.7406261, 47.3784077 ], + [ 7.7407471999999995, 47.378472 ], + [ 7.7409897999999995, 47.3786313 ], + [ 7.7410563, 47.3786941 ], + [ 7.7411437, 47.3788015 ], + [ 7.7412407, 47.3787585 ], + [ 7.7412683, 47.3787758 ], + [ 7.7414825, 47.3789099 ], + [ 7.7415415, 47.3789049 ], + [ 7.741595, 47.3789012 ], + [ 7.7419377, 47.3788137 ], + [ 7.7422491, 47.3787051 ], + [ 7.7421441, 47.378587 ], + [ 7.7418387, 47.3782989 ], + [ 7.7416546, 47.3780726 ], + [ 7.741494, 47.3778262 ], + [ 7.7413706, 47.3774632 ], + [ 7.7414677, 47.3772025 ], + [ 7.7414154, 47.3770541 ], + [ 7.7412135, 47.3768807 ], + [ 7.7410074, 47.376679 ], + [ 7.7407518, 47.376453 ], + [ 7.7406248, 47.3763253 ], + [ 7.7406088, 47.3762552 ], + [ 7.7403382, 47.3762491 ], + [ 7.7400413, 47.3762155 ], + [ 7.7397927, 47.3765208 ], + [ 7.7396985, 47.3768651 ], + [ 7.7393453999999995, 47.3769594 ], + [ 7.7391977, 47.3769988 ], + [ 7.7386216999999995, 47.3772057 ], + [ 7.7378998, 47.3774474 ], + [ 7.7377525, 47.3776935 ], + [ 7.7375111, 47.3778326 ], + [ 7.7373635, 47.3780369 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns111", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Blüemlisalp", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Blüemlisalp", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Blüemlisalp", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Blüemlisalp", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.814946, 47.3946472 ], + [ 7.8148378, 47.394749 ], + [ 7.8147745, 47.394804 ], + [ 7.8147179, 47.3948532 ], + [ 7.814505, 47.3950612 ], + [ 7.8145324, 47.3952453 ], + [ 7.8146767, 47.3956039 ], + [ 7.8147785, 47.3958643 ], + [ 7.8147257, 47.3960062 ], + [ 7.8143762, 47.3962591 ], + [ 7.8140598, 47.3963268 ], + [ 7.8136368, 47.3962568 ], + [ 7.8141637, 47.3968106 ], + [ 7.814219, 47.3969711 ], + [ 7.8143068, 47.3969617 ], + [ 7.8149148, 47.3968908 ], + [ 7.8150083, 47.3967344 ], + [ 7.8150866, 47.3965912 ], + [ 7.815176, 47.3964097 ], + [ 7.8152327, 47.3962602 ], + [ 7.81527, 47.3961077 ], + [ 7.8152872, 47.3959548 ], + [ 7.8152845, 47.3958003 ], + [ 7.8152612999999995, 47.3956465 ], + [ 7.8151957, 47.3954229 ], + [ 7.8151358, 47.395241 ], + [ 7.8151212, 47.3951952 ], + [ 7.8150751, 47.3950511 ], + [ 7.815023, 47.3948882 ], + [ 7.8149575, 47.3946832 ], + [ 7.814946, 47.3946472 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr134", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Oberburg", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Oberburg", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Oberburg", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Oberburg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.3253485, 47.382292 ], + [ 8.3252488, 47.3822884 ], + [ 8.325152899999999, 47.3822796 ], + [ 8.3250665, 47.3822554 ], + [ 8.3250172, 47.3822735 ], + [ 8.3249695, 47.3823373 ], + [ 8.3249231, 47.3823623 ], + [ 8.3248932, 47.3823814 ], + [ 8.324894, 47.3824059 ], + [ 8.3249757, 47.3824472 ], + [ 8.3251637, 47.3825141 ], + [ 8.3253322, 47.3825507 ], + [ 8.3254837, 47.3825532 ], + [ 8.3256006, 47.3825346 ], + [ 8.3259589, 47.3824005 ], + [ 8.3260365, 47.3823361 ], + [ 8.3260499, 47.3822772 ], + [ 8.3260466, 47.3822371 ], + [ 8.326016, 47.3822151 ], + [ 8.3259678, 47.3822043 ], + [ 8.3258746, 47.3822152 ], + [ 8.3258001, 47.3822305 ], + [ 8.3257007, 47.3822383 ], + [ 8.3254669, 47.3822772 ], + [ 8.3253485, 47.382292 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "KTAG506", + "country" : "CHE", + "name" : [ + { + "text" : "Alte Reuss", + "lang" : "de-CH" + }, + { + "text" : "Alte Reuss", + "lang" : "fr-CH" + }, + { + "text" : "Alte Reuss", + "lang" : "it-CH" + }, + { + "text" : "Alte Reuss", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "regulationExemption" : "NO", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "schedule" : [ + { + "day" : [ "ANY" ], + "startTime" : "00:00:00.00+01:00", + "endTime" : "00:00:00.00+01:00" + } + ] + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Aargau", + "lang" : "de-CH" + }, + { + "text" : "Canton d'Argovie", + "lang" : "fr-CH" + }, + { + "text" : "Canton Argovia", + "lang" : "it-CH" + }, + { + "text" : "Canton of Aargau", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Departement Bau, Verkehr und Umwelt (BVU)", + "lang" : "de-CH" + }, + { + "text" : "Département de la construction, des transports et de l'environnement (CTE)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento delle costruzioni, dei trasporti e dell'ambiente (CTA)", + "lang" : "it-CH" + }, + { + "text" : "Department of Civil Engineering,Transport and Environment (CTE)", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Sektion Gewässernutzung", + "lang" : "de-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "fr-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "it-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ag.ch/de/verwaltung/bvu/umwelt-natur-landschaft/hochwasserschutz-gewaesser/gewaessernutzung", + "email" : "alg@ag.ch", + "phone" : "0041 62 835 34 50", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.9302326, 46.95768 ], + [ 6.9301649, 46.9553258 ], + [ 6.9299174, 46.9529772 ], + [ 6.9294908, 46.9506408 ], + [ 6.9288861, 46.9483228 ], + [ 6.9281053, 46.9460297 ], + [ 6.9271503, 46.9437676 ], + [ 6.9260239, 46.9415429 ], + [ 6.9247291, 46.9393617 ], + [ 6.9232695, 46.9372297 ], + [ 6.9216492, 46.9351531 ], + [ 6.9198725, 46.9331373 ], + [ 6.9179444, 46.9311879 ], + [ 6.9158701, 46.9293103 ], + [ 6.9136554, 46.9275096 ], + [ 6.9113063, 46.9257907 ], + [ 6.9088292, 46.9241584 ], + [ 6.906231, 46.922617 ], + [ 6.9035188, 46.9211709 ], + [ 6.9006999, 46.9198239 ], + [ 6.8977822, 46.9185798 ], + [ 6.8947735, 46.9174419 ], + [ 6.8916822, 46.9164134 ], + [ 6.8885167, 46.9154971 ], + [ 6.8852857, 46.9146955 ], + [ 6.8819979, 46.9140107 ], + [ 6.8786624, 46.9134447 ], + [ 6.8752883, 46.912999 ], + [ 6.8718848, 46.9126748 ], + [ 6.8684613, 46.912473 ], + [ 6.8650271, 46.9123942 ], + [ 6.8615915, 46.9124385 ], + [ 6.8581641, 46.9126059 ], + [ 6.854754, 46.9128959 ], + [ 6.8513708, 46.9133077 ], + [ 6.8480235, 46.9138401 ], + [ 6.8447215, 46.9144918 ], + [ 6.8414736, 46.9152609 ], + [ 6.8382889, 46.9161453 ], + [ 6.8351759, 46.9171426 ], + [ 6.8321433, 46.9182502 ], + [ 6.8291993, 46.9194649 ], + [ 6.8263519, 46.9207834 ], + [ 6.8236091, 46.9222021 ], + [ 6.8209782, 46.9237172 ], + [ 6.8184664999999995, 46.9253245 ], + [ 6.8160809, 46.9270196 ], + [ 6.8138279, 46.9287979 ], + [ 6.8117137, 46.9306544 ], + [ 6.809744, 46.9325842 ], + [ 6.8079244, 46.934582 ], + [ 6.8062598, 46.9366421 ], + [ 6.8047547999999995, 46.9387592 ], + [ 6.8034134, 46.9409272 ], + [ 6.8022395, 46.9431404 ], + [ 6.8012362, 46.9453925 ], + [ 6.8004063, 46.9476776 ], + [ 6.7997522, 46.9499893 ], + [ 6.7992755, 46.9523212 ], + [ 6.7989777, 46.954667 ], + [ 6.7988596, 46.957020299999996 ], + [ 6.7989215, 46.9593745 ], + [ 6.7991634, 46.9617234 ], + [ 6.7995844, 46.9640603 ], + [ 6.8001836, 46.966379 ], + [ 6.8009593, 46.968673 ], + [ 6.8019093999999996, 46.970936 ], + [ 6.8030313, 46.9731619 ], + [ 6.804322, 46.9753446 ], + [ 6.8057777999999995, 46.977478 ], + [ 6.807395, 46.9795563 ], + [ 6.809169, 46.9815738 ], + [ 6.811095, 46.983525 ], + [ 6.8131677, 46.9854045 ], + [ 6.8153814, 46.9872071 ], + [ 6.8177301, 46.9889279 ], + [ 6.8202074, 46.9905622 ], + [ 6.8228064, 46.9921055 ], + [ 6.8255201, 46.9935535 ], + [ 6.8283409, 46.9949023 ], + [ 6.8312612, 46.9961482 ], + [ 6.8342729, 46.9972877 ], + [ 6.8373677, 46.9983178 ], + [ 6.8405373, 46.9992355 ], + [ 6.8437727, 47.0000384 ], + [ 6.8470653, 47.0007242 ], + [ 6.8504059, 47.0012911 ], + [ 6.8537853, 47.0017376 ], + [ 6.8571943, 47.0020623 ], + [ 6.8606235, 47.0022644 ], + [ 6.8640635, 47.0023434 ], + [ 6.8675048, 47.002299 ], + [ 6.870938, 47.0021313 ], + [ 6.8743536, 47.0018409 ], + [ 6.8777422999999995, 47.0014284 ], + [ 6.8810947, 47.0008951 ], + [ 6.8844016, 47.0002424 ], + [ 6.8876539999999995, 46.9994721 ], + [ 6.8908429, 46.9985863 ], + [ 6.8939595, 46.9975875 ], + [ 6.8969954, 46.9964783 ], + [ 6.8999421, 46.9952619 ], + [ 6.9027916, 46.9939416 ], + [ 6.905536, 46.9925209 ], + [ 6.9081679, 46.9910039 ], + [ 6.9106799, 46.9893947 ], + [ 6.9130652999999995, 46.9876976 ], + [ 6.9153175000000005, 46.9859174 ], + [ 6.9174302999999995, 46.984059 ], + [ 6.919398, 46.9821273 ], + [ 6.921215, 46.9801279 ], + [ 6.9228766, 46.978066 ], + [ 6.9243781, 46.9759475 ], + [ 6.9257154, 46.973778 ], + [ 6.9268849, 46.9715636 ], + [ 6.9278834, 46.9693103 ], + [ 6.9287082, 46.9670244 ], + [ 6.9293569999999995, 46.964712 ], + [ 6.9298281, 46.9623795 ], + [ 6.9301203000000005, 46.9600334 ], + [ 6.9302326, 46.95768 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSGN001", + "country" : "CHE", + "name" : [ + { + "text" : "LSGN Neuchâtel", + "lang" : "de-CH" + }, + { + "text" : "LSGN Neuchâtel", + "lang" : "fr-CH" + }, + { + "text" : "LSGN Neuchâtel", + "lang" : "it-CH" + }, + { + "text" : "LSGN Neuchâtel", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Neuchâtel Airport", + "lang" : "de-CH" + }, + { + "text" : "Neuchâtel Airport", + "lang" : "fr-CH" + }, + { + "text" : "Neuchâtel Airport", + "lang" : "it-CH" + }, + { + "text" : "Neuchâtel Airport", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Chef d'aérodrome", + "lang" : "de-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "fr-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "it-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Arsène Gigon", + "lang" : "de-CH" + }, + { + "text" : "Arsène Gigon", + "lang" : "fr-CH" + }, + { + "text" : "Arsène Gigon", + "lang" : "it-CH" + }, + { + "text" : "Arsène Gigon", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.neuchatel-airport.ch/?lang=en", + "email" : "admin@neuchatel-airport.ch", + "phone" : "0041328413155", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P01DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5463685, 47.1987406 ], + [ 7.5463628, 47.1985993 ], + [ 7.5463462, 47.1984585 ], + [ 7.5463189, 47.1983185 ], + [ 7.5462808, 47.1981796 ], + [ 7.5462322, 47.1980423 ], + [ 7.546173, 47.1979069 ], + [ 7.5461036, 47.1977738 ], + [ 7.546024, 47.1976433 ], + [ 7.5459344999999995, 47.1975159 ], + [ 7.5458353, 47.1973918 ], + [ 7.5457268, 47.1972715 ], + [ 7.5456091, 47.1971552 ], + [ 7.5454828, 47.1970432 ], + [ 7.5453479, 47.1969359 ], + [ 7.545205, 47.1968336 ], + [ 7.5450545, 47.1967365 ], + [ 7.5448967, 47.1966448 ], + [ 7.5447321, 47.196559 ], + [ 7.5445611, 47.1964791 ], + [ 7.5443842, 47.1964055 ], + [ 7.544202, 47.1963382 ], + [ 7.5440148, 47.1962776 ], + [ 7.5438232, 47.1962237 ], + [ 7.5436277, 47.1961767 ], + [ 7.5434289, 47.1961368 ], + [ 7.5432273, 47.196104 ], + [ 7.5430234, 47.1960784 ], + [ 7.5428179, 47.1960602 ], + [ 7.5426112, 47.1960493 ], + [ 7.542404, 47.1960458 ], + [ 7.5421968, 47.1960496 ], + [ 7.5419902, 47.1960609 ], + [ 7.5417848, 47.1960795 ], + [ 7.541581, 47.1961055 ], + [ 7.5413796, 47.1961386 ], + [ 7.5411809, 47.1961789 ], + [ 7.5409856, 47.1962263 ], + [ 7.5407942, 47.1962805 ], + [ 7.5406073, 47.1963415 ], + [ 7.5404252, 47.196409 ], + [ 7.5402487, 47.196483 ], + [ 7.540078, 47.1965632 ], + [ 7.5399137, 47.1966493 ], + [ 7.5397563, 47.1967412 ], + [ 7.5396061, 47.1968386 ], + [ 7.5394635999999995, 47.1969412 ], + [ 7.5393292, 47.1970487 ], + [ 7.5392033, 47.1971609 ], + [ 7.5390861000000005, 47.1972775 ], + [ 7.538978, 47.197398 ], + [ 7.5388793, 47.1975222 ], + [ 7.5387903, 47.1976498 ], + [ 7.5387113, 47.1977804 ], + [ 7.5386423, 47.1979137 ], + [ 7.5385837, 47.1980492 ], + [ 7.5385356, 47.1981866 ], + [ 7.5384981, 47.1983255 ], + [ 7.5384713, 47.1984656 ], + [ 7.5384553, 47.1986065 ], + [ 7.5384501, 47.1987477 ], + [ 7.5384557999999995, 47.1988889 ], + [ 7.5384723000000005, 47.1990297 ], + [ 7.5384997, 47.1991698 ], + [ 7.5385377, 47.1993086 ], + [ 7.5385863, 47.199446 ], + [ 7.5386454, 47.1995814 ], + [ 7.5387149, 47.1997145 ], + [ 7.5387945, 47.1998449 ], + [ 7.5388839, 47.1999724 ], + [ 7.5389831, 47.2000964 ], + [ 7.5390916, 47.2002168 ], + [ 7.5392092, 47.2003331 ], + [ 7.5393356, 47.2004451 ], + [ 7.5394705, 47.2005524 ], + [ 7.5396133, 47.2006548 ], + [ 7.5397639, 47.2007519 ], + [ 7.5399217, 47.2008435 ], + [ 7.5400863000000005, 47.2009293 ], + [ 7.5402573, 47.2010092 ], + [ 7.5404342, 47.2010829 ], + [ 7.5406165, 47.2011501 ], + [ 7.5408037, 47.2012108 ], + [ 7.5409953, 47.2012647 ], + [ 7.5411908, 47.2013116 ], + [ 7.5413896000000005, 47.2013516 ], + [ 7.5415912, 47.2013844 ], + [ 7.5417951, 47.20141 ], + [ 7.5420006, 47.2014282 ], + [ 7.5422073, 47.2014391 ], + [ 7.5424145, 47.2014426 ], + [ 7.5426217, 47.2014387 ], + [ 7.5428284, 47.2014275 ], + [ 7.5430339, 47.2014088 ], + [ 7.5432376, 47.2013829 ], + [ 7.5434391, 47.2013497 ], + [ 7.5436378, 47.2013094 ], + [ 7.5438331, 47.2012621 ], + [ 7.5440245, 47.2012079 ], + [ 7.5442115, 47.2011469 ], + [ 7.5443935, 47.2010793 ], + [ 7.5445701, 47.2010053 ], + [ 7.5447408, 47.2009251 ], + [ 7.5449051, 47.200839 ], + [ 7.5450625, 47.2007471 ], + [ 7.5452127, 47.2006497 ], + [ 7.5453551999999995, 47.2005471 ], + [ 7.5454896, 47.2004396 ], + [ 7.5456155, 47.2003274 ], + [ 7.5457327, 47.2002108 ], + [ 7.5458408, 47.2000903 ], + [ 7.5459394, 47.199966 ], + [ 7.5460284, 47.1998384 ], + [ 7.5461074, 47.1997078 ], + [ 7.5461764, 47.1995746 ], + [ 7.546235, 47.1994391 ], + [ 7.5462831, 47.1993017 ], + [ 7.5463206, 47.1991627 ], + [ 7.5463474, 47.1990226 ], + [ 7.5463633, 47.1988818 ], + [ 7.5463685, 47.1987406 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SOU0001", + "country" : "CHE", + "name" : [ + { + "text" : "Untersuchungsgefängnis Solothurn", + "lang" : "de-CH" + }, + { + "text" : "Untersuchungsgefängnis Solothurn", + "lang" : "fr-CH" + }, + { + "text" : "Untersuchungsgefängnis Solothurn", + "lang" : "it-CH" + }, + { + "text" : "Untersuchungsgefängnis Solothurn", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Justizvollzug des Kantons Solothurn", + "lang" : "de-CH" + }, + { + "text" : "Amt für Justizvollzug des Kantons Solothurn", + "lang" : "fr-CH" + }, + { + "text" : "Amt für Justizvollzug des Kantons Solothurn", + "lang" : "it-CH" + }, + { + "text" : "Amt für Justizvollzug des Kantons Solothurn", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Amtsleitung", + "lang" : "de-CH" + }, + { + "text" : "Direction de l'office", + "lang" : "fr-CH" + }, + { + "text" : "Direzione dell'ufficio", + "lang" : "it-CH" + }, + { + "text" : "Head of Division", + "lang" : "en-GB" + } + ], + "siteURL" : "https://so.ch/verwaltung/departement-des-innern/amt-fuer-justizvollzug/", + "email" : "ajuv@ddi.so.ch", + "phone" : "0041326276336", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P02DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8820812, 47.4121578 ], + [ 7.88217, 47.4124419 ], + [ 7.8822795, 47.4126395 ], + [ 7.8823851, 47.4128786 ], + [ 7.882386, 47.4131102 ], + [ 7.8823713, 47.4134698 ], + [ 7.8822528, 47.4135789 ], + [ 7.8821159, 47.4137049 ], + [ 7.8824384, 47.4136638 ], + [ 7.8824705999999995, 47.4135349 ], + [ 7.8827354, 47.4133424 ], + [ 7.8828703, 47.4132196 ], + [ 7.8827856, 47.4131734 ], + [ 7.8826292, 47.4133111 ], + [ 7.8824751, 47.4134178 ], + [ 7.8824746, 47.4133747 ], + [ 7.8824206, 47.4134244 ], + [ 7.8824076, 47.413268 ], + [ 7.8824328, 47.4130793 ], + [ 7.8824305, 47.412878 ], + [ 7.8822806, 47.4125467 ], + [ 7.8821843, 47.4123884 ], + [ 7.8821875, 47.4121144 ], + [ 7.8820812, 47.4121578 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns190", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Mapprach - Hofmatt", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Mapprach - Hofmatt", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Mapprach - Hofmatt", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Mapprach - Hofmatt", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5640884, 47.4396006 ], + [ 7.5640073999999995, 47.4396658 ], + [ 7.5639194, 47.4396606 ], + [ 7.5638971, 47.4396327 ], + [ 7.5634347, 47.4398387 ], + [ 7.5632639, 47.4398496 ], + [ 7.5632795, 47.4397701 ], + [ 7.56296, 47.4399073 ], + [ 7.5628715, 47.4399417 ], + [ 7.5624711, 47.4401025 ], + [ 7.5624037, 47.4401305 ], + [ 7.5621894, 47.4402141 ], + [ 7.5621189, 47.4402421 ], + [ 7.561764, 47.4403834 ], + [ 7.5616683, 47.4404219 ], + [ 7.5613181, 47.4405587 ], + [ 7.5610747, 47.4406556 ], + [ 7.5607422, 47.4407832 ], + [ 7.5602369, 47.4409895 ], + [ 7.5602976, 47.4410612 ], + [ 7.5603564, 47.4411297 ], + [ 7.5607133, 47.4410595 ], + [ 7.5611333, 47.4410552 ], + [ 7.5618347, 47.4410668 ], + [ 7.5621921, 47.4410221 ], + [ 7.5629766, 47.4407958 ], + [ 7.563533, 47.440611 ], + [ 7.5637159, 47.4404824 ], + [ 7.5641752, 47.4400102 ], + [ 7.5643263, 47.439723 ], + [ 7.5644262, 47.4395849 ], + [ 7.5644554, 47.4395316 ], + [ 7.564453, 47.4394336 ], + [ 7.5645286, 47.4393826 ], + [ 7.5644431, 47.4393383 ], + [ 7.5643328, 47.4394808 ], + [ 7.5640884, 47.4396006 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns112", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Chaltbrunnental - Birsmatte", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Chaltbrunnental - Birsmatte", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Chaltbrunnental - Birsmatte", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Chaltbrunnental - Birsmatte", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4279906, 47.4094011 ], + [ 7.4279851, 47.409397 ], + [ 7.4279754, 47.4093894 ], + [ 7.4279664, 47.4093813 ], + [ 7.4279582, 47.4093729 ], + [ 7.4279508, 47.4093642 ], + [ 7.4279443, 47.4093551 ], + [ 7.4279387, 47.4093457 ], + [ 7.427934, 47.4093362 ], + [ 7.4279545, 47.4092929 ], + [ 7.4276659, 47.4094038 ], + [ 7.4268776, 47.4097169 ], + [ 7.4268088, 47.4097177 ], + [ 7.4260566, 47.4097265 ], + [ 7.4257377, 47.4097303 ], + [ 7.4256455, 47.4098353 ], + [ 7.4249919, 47.4098792 ], + [ 7.4250991, 47.410162 ], + [ 7.4249319, 47.4102246 ], + [ 7.4247382, 47.4102186 ], + [ 7.4238619, 47.4100552 ], + [ 7.4225549, 47.409884 ], + [ 7.4225555, 47.4097312 ], + [ 7.4197167, 47.4098468 ], + [ 7.4197046, 47.4101055 ], + [ 7.4196679, 47.4102197 ], + [ 7.4196552, 47.4102177 ], + [ 7.4195787, 47.4102056 ], + [ 7.4187042, 47.4100669 ], + [ 7.4182733, 47.4100395 ], + [ 7.4182571, 47.4101663 ], + [ 7.4179036, 47.4101429 ], + [ 7.4175726, 47.4101325 ], + [ 7.4175071, 47.4101304 ], + [ 7.4174853, 47.4101712 ], + [ 7.4174834, 47.4102048 ], + [ 7.417558, 47.4102082 ], + [ 7.4175123, 47.4106347 ], + [ 7.4175047, 47.4107322 ], + [ 7.4176708, 47.4107521 ], + [ 7.4177876, 47.4107298 ], + [ 7.4180249, 47.4107497 ], + [ 7.4183588, 47.4108274 ], + [ 7.4184931, 47.4108841 ], + [ 7.4187164, 47.4109042 ], + [ 7.419009, 47.4109286 ], + [ 7.4192025, 47.4109262 ], + [ 7.4192503, 47.4109094 ], + [ 7.4192557, 47.4109074 ], + [ 7.4193228, 47.4108838 ], + [ 7.4194647, 47.4107871 ], + [ 7.4195518, 47.4106696 ], + [ 7.4195921, 47.4105506 ], + [ 7.419677, 47.4104845 ], + [ 7.4197092, 47.4104403 ], + [ 7.4197305, 47.4104112 ], + [ 7.4197349, 47.4103991 ], + [ 7.4197482, 47.4103251 ], + [ 7.4197842, 47.4102988 ], + [ 7.4202781, 47.4103799 ], + [ 7.4216884, 47.4103643 ], + [ 7.4223818999999995, 47.4103486 ], + [ 7.4228581, 47.4103627 ], + [ 7.423505, 47.4103944 ], + [ 7.4237741, 47.4104068 ], + [ 7.4240485, 47.4103928 ], + [ 7.4244755, 47.4103612 ], + [ 7.4246877, 47.4103331 ], + [ 7.4247051, 47.4103333 ], + [ 7.4247979, 47.4103281 ], + [ 7.4249111, 47.410335 ], + [ 7.4249644, 47.4103419 ], + [ 7.4250235, 47.4103551 ], + [ 7.4250749, 47.410373 ], + [ 7.4250704, 47.4105137 ], + [ 7.4250414, 47.4107838 ], + [ 7.4250446, 47.4108388 ], + [ 7.4250792, 47.4108896 ], + [ 7.4250937, 47.4109534 ], + [ 7.4250992, 47.4112986 ], + [ 7.425102, 47.4113323 ], + [ 7.4251027, 47.4113403 ], + [ 7.4252646, 47.4113481 ], + [ 7.4253718, 47.4113575 ], + [ 7.4255103, 47.4113567 ], + [ 7.4255638, 47.4112004 ], + [ 7.4255564, 47.411015 ], + [ 7.4255707, 47.4109716 ], + [ 7.4256721, 47.4106911 ], + [ 7.4255834, 47.4106449 ], + [ 7.4255319, 47.4105828 ], + [ 7.4255195, 47.4105328 ], + [ 7.4255448, 47.4104782 ], + [ 7.425585, 47.4104201 ], + [ 7.4256308, 47.4103745 ], + [ 7.4256419, 47.4103219 ], + [ 7.4256136, 47.410264 ], + [ 7.4256119, 47.410202 ], + [ 7.4257905, 47.41021 ], + [ 7.4258701, 47.4102137 ], + [ 7.4258706, 47.4102144 ], + [ 7.4258721, 47.4102636 ], + [ 7.4258786, 47.4103235 ], + [ 7.425884, 47.4103742 ], + [ 7.4258577, 47.4104637 ], + [ 7.4258296, 47.4105452 ], + [ 7.4257708000000004, 47.4106206 ], + [ 7.4267674, 47.4104713 ], + [ 7.426932, 47.4104714 ], + [ 7.4270842, 47.4104663 ], + [ 7.4272074, 47.4104641 ], + [ 7.4273022, 47.4104722 ], + [ 7.4273991, 47.4105117 ], + [ 7.427523, 47.4105293 ], + [ 7.4276396, 47.4105251 ], + [ 7.4277935, 47.4104937 ], + [ 7.4279096, 47.4104614 ], + [ 7.4280748, 47.4103895 ], + [ 7.4281185, 47.410447 ], + [ 7.4281516, 47.4104336 ], + [ 7.4281851, 47.4104207 ], + [ 7.4282189, 47.4104082 ], + [ 7.4282411, 47.4103987 ], + [ 7.4282637, 47.4103897 ], + [ 7.4282867, 47.4103812 ], + [ 7.4283101, 47.4103732 ], + [ 7.4283339, 47.4103657 ], + [ 7.428358, 47.4103588 ], + [ 7.4283824, 47.4103523 ], + [ 7.4284072, 47.4103464 ], + [ 7.4284322, 47.4103411 ], + [ 7.4284574, 47.4103363 ], + [ 7.4284834, 47.4103319 ], + [ 7.4285095, 47.4103282 ], + [ 7.4285359, 47.410325 ], + [ 7.4285624, 47.4103224 ], + [ 7.428589, 47.4103204 ], + [ 7.4286156, 47.410319 ], + [ 7.4286424, 47.4103182 ], + [ 7.4286691, 47.4103179 ], + [ 7.4286959, 47.4103183 ], + [ 7.428941, 47.4103296 ], + [ 7.4289636, 47.4103278 ], + [ 7.4289863, 47.4103266 ], + [ 7.4290091, 47.410326 ], + [ 7.4290319, 47.410326 ], + [ 7.4290547, 47.4103266 ], + [ 7.4290774, 47.4103278 ], + [ 7.4291461, 47.4103228 ], + [ 7.4291953, 47.4103365 ], + [ 7.429488, 47.4101826 ], + [ 7.4308392, 47.4101315 ], + [ 7.4310009, 47.4101263 ], + [ 7.4315114, 47.4100695 ], + [ 7.4315889, 47.4100608 ], + [ 7.431804, 47.4100369 ], + [ 7.4317988, 47.4100269 ], + [ 7.4317926, 47.4100179 ], + [ 7.4317855, 47.4100092 ], + [ 7.4317776, 47.4100009 ], + [ 7.4317689, 47.4099929 ], + [ 7.4317594, 47.4099854 ], + [ 7.4317492, 47.4099783 ], + [ 7.4317383, 47.4099717 ], + [ 7.4317268, 47.4099655 ], + [ 7.4317115, 47.4099581 ], + [ 7.4316958, 47.4099512 ], + [ 7.4316794999999995, 47.4099449 ], + [ 7.4316629, 47.409939 ], + [ 7.4316458, 47.4099337 ], + [ 7.4316284, 47.409929 ], + [ 7.4316107, 47.4099249 ], + [ 7.4315927, 47.4099213 ], + [ 7.4315744, 47.4099183 ], + [ 7.4310707, 47.4098413 ], + [ 7.4308391, 47.4098058 ], + [ 7.430531, 47.4097608 ], + [ 7.4305245, 47.4097595 ], + [ 7.4302495, 47.4097046 ], + [ 7.4300342, 47.4096371 ], + [ 7.4297416, 47.4095283 ], + [ 7.4296533, 47.4094954 ], + [ 7.4295463, 47.4094638 ], + [ 7.4295142, 47.4094558 ], + [ 7.4294819, 47.4094483 ], + [ 7.4294493, 47.4094413 ], + [ 7.4294164, 47.4094349 ], + [ 7.4293833, 47.409429 ], + [ 7.4293501, 47.4094236 ], + [ 7.4293166, 47.4094188 ], + [ 7.4292874, 47.4094149 ], + [ 7.4292581, 47.4094117 ], + [ 7.4292286, 47.4094091 ], + [ 7.4291991, 47.4094071 ], + [ 7.4291694, 47.4094057 ], + [ 7.4291397, 47.409405 ], + [ 7.42911, 47.4094049 ], + [ 7.4290803, 47.4094054 ], + [ 7.4290556, 47.4094056 ], + [ 7.4290309, 47.4094064 ], + [ 7.4290062, 47.4094078 ], + [ 7.4289816, 47.4094097 ], + [ 7.4289572, 47.4094123 ], + [ 7.4289329, 47.4094154 ], + [ 7.4289088, 47.4094191 ], + [ 7.4288849, 47.4094234 ], + [ 7.4288467, 47.4094315 ], + [ 7.4288083, 47.4094391 ], + [ 7.4287697, 47.4094461 ], + [ 7.4287309, 47.4094525 ], + [ 7.4286918, 47.4094584 ], + [ 7.4286526, 47.4094636 ], + [ 7.4286133, 47.4094684 ], + [ 7.428581, 47.4094718 ], + [ 7.4285487, 47.4094748 ], + [ 7.4285163, 47.4094774 ], + [ 7.4284838, 47.4094797 ], + [ 7.4284828, 47.4094952 ], + [ 7.4281722, 47.4094806 ], + [ 7.428003, 47.409422 ], + [ 7.4279906, 47.4094011 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns010", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Oltme", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Oltme", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Oltme", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Oltme", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7112734, 47.4890597 ], + [ 7.7112883, 47.4894836 ], + [ 7.7116153, 47.4895257 ], + [ 7.7120721, 47.4895913 ], + [ 7.7124778, 47.4897099 ], + [ 7.7124828, 47.4897103 ], + [ 7.7124833, 47.4897104 ], + [ 7.7125009, 47.4897119 ], + [ 7.7125176, 47.489713 ], + [ 7.7125227, 47.4897133 ], + [ 7.7125281999999995, 47.4897137 ], + [ 7.7125361, 47.4897143 ], + [ 7.7125415, 47.4897148 ], + [ 7.7125424, 47.4897148 ], + [ 7.7125497, 47.4897155 ], + [ 7.7125589, 47.4897164 ], + [ 7.7125766, 47.4897176 ], + [ 7.7125855, 47.4897182 ], + [ 7.7125909, 47.4897186 ], + [ 7.7125956, 47.489719 ], + [ 7.7125965, 47.4897191 ], + [ 7.7126141, 47.4897206 ], + [ 7.7126308, 47.4897217 ], + [ 7.7126359, 47.489722 ], + [ 7.7126413, 47.4897224 ], + [ 7.7126491, 47.4897231 ], + [ 7.7126545, 47.4897235 ], + [ 7.7126552, 47.4897236 ], + [ 7.7126626, 47.4897243 ], + [ 7.7126718, 47.4897252 ], + [ 7.7126894, 47.4897263 ], + [ 7.7126983, 47.4897269 ], + [ 7.7127037, 47.4897273 ], + [ 7.7127085, 47.4897277 ], + [ 7.7127094, 47.4897278 ], + [ 7.7127269, 47.4897294 ], + [ 7.7127436, 47.4897304 ], + [ 7.7127486, 47.4897308 ], + [ 7.712754, 47.4897312 ], + [ 7.7127621, 47.4897318 ], + [ 7.7127675, 47.4897323 ], + [ 7.7127681, 47.4897323 ], + [ 7.7127755, 47.489733 ], + [ 7.7127847, 47.4897339 ], + [ 7.7128023, 47.489735 ], + [ 7.7128112, 47.4897357 ], + [ 7.7128166, 47.4897361 ], + [ 7.7128213, 47.4897365 ], + [ 7.7128222, 47.4897365 ], + [ 7.7128399, 47.4897381 ], + [ 7.7128586, 47.4897393 ], + [ 7.7128661, 47.4897398 ], + [ 7.712872, 47.4897403 ], + [ 7.7128778, 47.4897408 ], + [ 7.712879, 47.4897409 ], + [ 7.7128821, 47.4897411 ], + [ 7.7128882, 47.4897417 ], + [ 7.7128976, 47.4897426 ], + [ 7.712914, 47.4897437 ], + [ 7.7129224, 47.4897443 ], + [ 7.7129288, 47.4897448 ], + [ 7.7129341, 47.4897452 ], + [ 7.7129349, 47.4897453 ], + [ 7.7129528, 47.4897468 ], + [ 7.7129672, 47.4897478 ], + [ 7.7129712, 47.489748 ], + [ 7.7129775, 47.4897485 ], + [ 7.7129859, 47.4897491 ], + [ 7.7129922, 47.4897496 ], + [ 7.7129937, 47.4897498 ], + [ 7.7130009, 47.4897504 ], + [ 7.7130104, 47.4897514 ], + [ 7.7130268, 47.4897524 ], + [ 7.7130354, 47.489753 ], + [ 7.7130417, 47.4897535 ], + [ 7.7130469999999995, 47.4897539 ], + [ 7.7130477, 47.489754 ], + [ 7.7130656, 47.4897556 ], + [ 7.7130801, 47.4897565 ], + [ 7.713084, 47.4897567 ], + [ 7.7130887, 47.4897571 ], + [ 7.7130904000000005, 47.4897572 ], + [ 7.7130988, 47.4897578 ], + [ 7.7131051, 47.4897584 ], + [ 7.7131066, 47.4897585 ], + [ 7.7131137, 47.4897592 ], + [ 7.7131232, 47.4897601 ], + [ 7.7131396, 47.4897611 ], + [ 7.7131483, 47.4897617 ], + [ 7.7131546, 47.4897622 ], + [ 7.7131598, 47.4897627 ], + [ 7.7131606, 47.4897627 ], + [ 7.7131786, 47.4897643 ], + [ 7.7131933, 47.4897652 ], + [ 7.7131974, 47.4897655 ], + [ 7.7132037, 47.489766 ], + [ 7.7132122, 47.4897666 ], + [ 7.7132185, 47.4897672 ], + [ 7.7132194, 47.4897672 ], + [ 7.713227, 47.489768 ], + [ 7.7132363, 47.4897689 ], + [ 7.7132523, 47.4897699 ], + [ 7.7132601, 47.4897704 ], + [ 7.7132664, 47.4897709 ], + [ 7.7132702, 47.4897712 ], + [ 7.7132839, 47.4897723 ], + [ 7.7132898, 47.4897725 ], + [ 7.7133055, 47.489773 ], + [ 7.7133102000000004, 47.4897731 ], + [ 7.7133166, 47.4897733 ], + [ 7.71332, 47.4897735 ], + [ 7.7133229, 47.4897736 ], + [ 7.7133293, 47.4897739 ], + [ 7.7133384, 47.4897744 ], + [ 7.7133447, 47.4897748 ], + [ 7.7133522, 47.4897753 ], + [ 7.7133667, 47.4897764 ], + [ 7.713403, 47.4897769 ], + [ 7.713409, 47.489777 ], + [ 7.7134156, 47.4897771 ], + [ 7.713421, 47.4897773 ], + [ 7.7134275, 47.4897775 ], + [ 7.713433, 47.4897777 ], + [ 7.7134349, 47.4897778 ], + [ 7.7134412999999995, 47.4897781 ], + [ 7.7134512, 47.4897786 ], + [ 7.7134576, 47.489779 ], + [ 7.7134655, 47.4897796 ], + [ 7.7134797, 47.4897806 ], + [ 7.7134847, 47.4897807 ], + [ 7.7134928, 47.4897808 ], + [ 7.7135247, 47.4897809 ], + [ 7.7135295, 47.4897809 ], + [ 7.71354, 47.489781 ], + [ 7.7135448, 47.4897811 ], + [ 7.7135499, 47.4897812 ], + [ 7.7135543, 47.4897813 ], + [ 7.7135595, 47.4897814 ], + [ 7.7135654, 47.4897816 ], + [ 7.7135705, 47.4897818 ], + [ 7.7135736999999995, 47.4897819 ], + [ 7.7135795, 47.4897822 ], + [ 7.7135883, 47.4897826 ], + [ 7.71359, 47.4897827 ], + [ 7.7135955, 47.4897827 ], + [ 7.7136027, 47.4897827 ], + [ 7.7136623, 47.4897826 ], + [ 7.7136644, 47.4897826 ], + [ 7.7136755, 47.4897826 ], + [ 7.7136787, 47.4897826 ], + [ 7.7136898, 47.4897827 ], + [ 7.7136952999999995, 47.4897828 ], + [ 7.7137063, 47.4897829 ], + [ 7.7137127, 47.4897831 ], + [ 7.7137181, 47.4897832 ], + [ 7.713724, 47.4897834 ], + [ 7.7137295, 47.4897836 ], + [ 7.7137325, 47.4897837 ], + [ 7.7137389, 47.489784 ], + [ 7.713748, 47.4897845 ], + [ 7.7137489, 47.4897845 ], + [ 7.7137585, 47.4897846 ], + [ 7.7137823, 47.4897846 ], + [ 7.7139136, 47.4897842 ], + [ 7.713914, 47.4897842 ], + [ 7.7139153, 47.4897842 ], + [ 7.7139318, 47.4897842 ], + [ 7.7139344, 47.4897842 ], + [ 7.7139454, 47.4897843 ], + [ 7.7139495, 47.4897843 ], + [ 7.7139603999999995, 47.4897844 ], + [ 7.7139675, 47.4897845 ], + [ 7.7139783, 47.4897848 ], + [ 7.7139866, 47.489785 ], + [ 7.713992, 47.4897853 ], + [ 7.7139947, 47.4897854 ], + [ 7.7140015, 47.4897857 ], + [ 7.714011, 47.4897862 ], + [ 7.714017, 47.4897863 ], + [ 7.7140239, 47.4897863 ], + [ 7.7140372, 47.4897863 ], + [ 7.7140451, 47.4897863 ], + [ 7.714052, 47.4897862 ], + [ 7.7140564, 47.4897861 ], + [ 7.7140609, 47.4897858 ], + [ 7.71407, 47.4897853 ], + [ 7.7140797, 47.4897848 ], + [ 7.7140826, 47.4897846 ], + [ 7.7140947, 47.4897841 ], + [ 7.7141005, 47.4897837 ], + [ 7.714105, 47.4897834 ], + [ 7.7141105, 47.4897831 ], + [ 7.7141174, 47.4897827 ], + [ 7.7141193999999995, 47.4897826 ], + [ 7.7141251, 47.4897824 ], + [ 7.7141322, 47.4897821 ], + [ 7.714138, 47.4897819 ], + [ 7.7141456999999996, 47.4897817 ], + [ 7.7141567, 47.4897816 ], + [ 7.7141645, 47.4897815 ], + [ 7.7141758, 47.4897814 ], + [ 7.7141771, 47.4897814 ], + [ 7.7141812, 47.4897814 ], + [ 7.7141869, 47.4897814 ], + [ 7.7141933, 47.4897815 ], + [ 7.7142047, 47.4897817 ], + [ 7.7142126, 47.4897819 ], + [ 7.7142183, 47.489782 ], + [ 7.7142247, 47.4897822 ], + [ 7.7142307, 47.4897825 ], + [ 7.714232, 47.4897825 ], + [ 7.7142383, 47.4897828 ], + [ 7.7142501, 47.4897834 ], + [ 7.7142565, 47.4897838 ], + [ 7.7142658, 47.4897844 ], + [ 7.71427, 47.4897838 ], + [ 7.7142741, 47.4897832 ], + [ 7.714278, 47.4897826 ], + [ 7.7142828, 47.4897816 ], + [ 7.7142853, 47.489781 ], + [ 7.7142943, 47.489779 ], + [ 7.7143029, 47.4897772 ], + [ 7.7143081, 47.489776 ], + [ 7.7143187, 47.4897737 ], + [ 7.7143226, 47.4897729 ], + [ 7.7143272, 47.489772 ], + [ 7.7143494, 47.4897676 ], + [ 7.7143522, 47.4897671 ], + [ 7.7143586, 47.4897658 ], + [ 7.7143614, 47.4897652 ], + [ 7.7143699, 47.4897635 ], + [ 7.7143738, 47.4897627 ], + [ 7.7143787, 47.4897618 ], + [ 7.7143846, 47.4897607 ], + [ 7.714397, 47.4897583 ], + [ 7.714401, 47.4897575 ], + [ 7.7144049, 47.4897568 ], + [ 7.7144081, 47.4897561 ], + [ 7.7144165000000005, 47.4897544 ], + [ 7.7144204, 47.4897536 ], + [ 7.7144249, 47.4897527 ], + [ 7.7144308, 47.4897516 ], + [ 7.7144432, 47.4897492 ], + [ 7.7144471, 47.4897485 ], + [ 7.7144511, 47.4897477 ], + [ 7.7144544, 47.489747 ], + [ 7.7144628, 47.4897453 ], + [ 7.7144667, 47.4897445 ], + [ 7.7144712, 47.4897436 ], + [ 7.7144772, 47.4897425 ], + [ 7.7144895, 47.4897401 ], + [ 7.7144935, 47.4897394 ], + [ 7.7144975, 47.4897386 ], + [ 7.7145007, 47.4897379 ], + [ 7.7145092, 47.4897362 ], + [ 7.7145132, 47.4897354 ], + [ 7.7145174999999995, 47.4897346 ], + [ 7.7145234, 47.4897334 ], + [ 7.7145358, 47.489731 ], + [ 7.7145396999999996, 47.4897303 ], + [ 7.7145437, 47.4897295 ], + [ 7.7145468, 47.4897289 ], + [ 7.7145553, 47.4897271 ], + [ 7.7145592, 47.4897263 ], + [ 7.7145637, 47.4897255 ], + [ 7.7145697, 47.4897243 ], + [ 7.714582, 47.4897219 ], + [ 7.714586, 47.4897212 ], + [ 7.7145903, 47.4897204 ], + [ 7.7145939, 47.4897196 ], + [ 7.7146029, 47.4897178 ], + [ 7.7146068, 47.489717 ], + [ 7.7146116, 47.4897161 ], + [ 7.714634, 47.4897119 ], + [ 7.7146348, 47.4897118 ], + [ 7.7146427, 47.4897104 ], + [ 7.7146531, 47.4897086 ], + [ 7.714666, 47.4897064 ], + [ 7.7146735, 47.4897051 ], + [ 7.7147001, 47.4897008 ], + [ 7.71471, 47.4896993 ], + [ 7.7147144999999995, 47.4896987 ], + [ 7.7147179, 47.4896982 ], + [ 7.7147201, 47.4896979 ], + [ 7.7147242, 47.4896973 ], + [ 7.7147310000000004, 47.4896962 ], + [ 7.7147337, 47.4896958 ], + [ 7.7147421, 47.4896944 ], + [ 7.7147526, 47.4896926 ], + [ 7.7147603, 47.4896913 ], + [ 7.7147705, 47.4896897 ], + [ 7.7147758, 47.4896888 ], + [ 7.7147797, 47.4896882 ], + [ 7.7147869, 47.489687 ], + [ 7.7147974, 47.4896854 ], + [ 7.714802, 47.4896848 ], + [ 7.7148041, 47.4896845 ], + [ 7.7148096, 47.4896837 ], + [ 7.7148153, 47.489683 ], + [ 7.7148255, 47.4896815 ], + [ 7.7148326, 47.4896805 ], + [ 7.7148342, 47.4896803 ], + [ 7.7148388, 47.4896796 ], + [ 7.714845, 47.4896788 ], + [ 7.7148496, 47.4896783 ], + [ 7.7148591, 47.4896769 ], + [ 7.7148657, 47.4896759 ], + [ 7.7148674, 47.4896757 ], + [ 7.714872, 47.4896751 ], + [ 7.7148783, 47.4896742 ], + [ 7.7148834, 47.4896736 ], + [ 7.7148935, 47.4896721 ], + [ 7.7148988, 47.4896714 ], + [ 7.7149034, 47.4896708 ], + [ 7.714908, 47.4896702 ], + [ 7.7149151, 47.4896693 ], + [ 7.7149251, 47.4896681 ], + [ 7.7149256, 47.4896681 ], + [ 7.7149297, 47.4896676 ], + [ 7.7149464, 47.4896655 ], + [ 7.7149505, 47.489665 ], + [ 7.7149552, 47.4896645 ], + [ 7.714961, 47.4896638 ], + [ 7.7149681999999995, 47.4896631 ], + [ 7.7149745, 47.4896623 ], + [ 7.714978, 47.4896619 ], + [ 7.7149909999999995, 47.4896604 ], + [ 7.7149969, 47.4896597 ], + [ 7.7150014, 47.4896593 ], + [ 7.715009, 47.4896585 ], + [ 7.7150099, 47.4896584 ], + [ 7.7150282, 47.4896568 ], + [ 7.7150361, 47.4896561 ], + [ 7.715041, 47.4896558 ], + [ 7.7150504, 47.4896551 ], + [ 7.7150552999999995, 47.4896548 ], + [ 7.7150618, 47.4896545 ], + [ 7.7150668, 47.4896542 ], + [ 7.7150681, 47.4896542 ], + [ 7.7150718, 47.489654 ], + [ 7.7150848, 47.4896535 ], + [ 7.7150868, 47.4896534 ], + [ 7.7150959, 47.4896528 ], + [ 7.7151038, 47.4896523 ], + [ 7.7151214, 47.4896513 ], + [ 7.7151274, 47.4896509 ], + [ 7.7151323, 47.4896506 ], + [ 7.7151377, 47.4896503 ], + [ 7.7151447, 47.4896499 ], + [ 7.7151464, 47.4896498 ], + [ 7.7151518, 47.4896496 ], + [ 7.7151585, 47.4896494 ], + [ 7.715164, 47.4896492 ], + [ 7.715171, 47.489649 ], + [ 7.7151819, 47.4896488 ], + [ 7.7151876, 47.4896487 ], + [ 7.7151986, 47.4896486 ], + [ 7.7152027, 47.4896485 ], + [ 7.7152509, 47.4896484 ], + [ 7.7152636999999995, 47.4896482 ], + [ 7.71527, 47.4896481 ], + [ 7.7152707, 47.4896481 ], + [ 7.715277, 47.4896478 ], + [ 7.715284, 47.4896476 ], + [ 7.7152888, 47.4896474 ], + [ 7.7153, 47.4896472 ], + [ 7.7153048, 47.4896471 ], + [ 7.7153107, 47.4896471 ], + [ 7.7153157, 47.4896471 ], + [ 7.7153205, 47.4896471 ], + [ 7.7153317, 47.4896473 ], + [ 7.7153365, 47.4896474 ], + [ 7.7153438, 47.4896476 ], + [ 7.7153492, 47.4896478 ], + [ 7.7153522, 47.4896479 ], + [ 7.7153585, 47.489648 ], + [ 7.7153891, 47.4896482 ], + [ 7.7153952, 47.4896483 ], + [ 7.7154059, 47.4896485 ], + [ 7.7154122, 47.4896486 ], + [ 7.7154175, 47.4896488 ], + [ 7.7154204, 47.4896489 ], + [ 7.7154237, 47.489649 ], + [ 7.715429, 47.4896492 ], + [ 7.7154305, 47.489649299999996 ], + [ 7.7154371, 47.4896496 ], + [ 7.7154423, 47.4896499 ], + [ 7.7154465, 47.4896501 ], + [ 7.7154515, 47.4896504 ], + [ 7.715463, 47.4896509 ], + [ 7.7154644, 47.4896509 ], + [ 7.715466, 47.489651 ], + [ 7.7154755999999995, 47.4896514 ], + [ 7.7154848, 47.4896519 ], + [ 7.7154899, 47.4896522 ], + [ 7.7154913, 47.4896523 ], + [ 7.7155134, 47.4896525 ], + [ 7.7155176, 47.4896526 ], + [ 7.7155274, 47.4896528 ], + [ 7.7155335, 47.4896529 ], + [ 7.7155383, 47.4896531 ], + [ 7.7155443, 47.4896533 ], + [ 7.7155492, 47.4896535 ], + [ 7.7155503, 47.4896535 ], + [ 7.715557, 47.4896538 ], + [ 7.7155618, 47.4896541 ], + [ 7.7155658, 47.4896543 ], + [ 7.7155708, 47.4896546 ], + [ 7.7155872, 47.4896553 ], + [ 7.7155888, 47.4896553 ], + [ 7.7155914, 47.4896555 ], + [ 7.7155963, 47.4896557 ], + [ 7.7156041, 47.4896561 ], + [ 7.7156101, 47.4896565 ], + [ 7.7156114, 47.4896565 ], + [ 7.7156316, 47.4896568 ], + [ 7.7156368, 47.4896569 ], + [ 7.7156477, 47.4896572 ], + [ 7.7156554, 47.4896575 ], + [ 7.7156608, 47.4896577 ], + [ 7.7156625, 47.4896578 ], + [ 7.7156687999999995, 47.4896581 ], + [ 7.7156741, 47.4896583 ], + [ 7.7156781, 47.4896586 ], + [ 7.7156832, 47.4896589 ], + [ 7.7157059, 47.4896598 ], + [ 7.7157158, 47.4896603 ], + [ 7.7157221, 47.4896607 ], + [ 7.7157285, 47.4896608 ], + [ 7.7157365, 47.4896608 ], + [ 7.7157515, 47.4896608 ], + [ 7.7158404, 47.4896605 ], + [ 7.7158523, 47.4896604 ], + [ 7.7158562, 47.4896603 ], + [ 7.715863, 47.4896599 ], + [ 7.7158711, 47.4896595 ], + [ 7.7158716, 47.4896595 ], + [ 7.7158768, 47.4896592 ], + [ 7.7158812999999995, 47.489659 ], + [ 7.7158865, 47.4896589 ], + [ 7.7158902, 47.4896587 ], + [ 7.7159093, 47.4896581 ], + [ 7.7159101, 47.4896581 ], + [ 7.7159213, 47.4896574 ], + [ 7.7159278, 47.4896571 ], + [ 7.7159313, 47.4896569 ], + [ 7.7159368, 47.4896567 ], + [ 7.7159445, 47.4896565 ], + [ 7.7159555, 47.4896562 ], + [ 7.7159612, 47.489656 ], + [ 7.7159859, 47.4896556 ], + [ 7.7159876, 47.4896555 ], + [ 7.7159929, 47.4896552 ], + [ 7.7160007, 47.4896547 ], + [ 7.7160056, 47.4896545 ], + [ 7.7160081, 47.4896544 ], + [ 7.7160098, 47.4896543 ], + [ 7.7160256, 47.4896536 ], + [ 7.7160298, 47.4896533 ], + [ 7.7160337, 47.4896531 ], + [ 7.7160389, 47.4896528 ], + [ 7.7160465, 47.4896523 ], + [ 7.7160516999999995, 47.4896521 ], + [ 7.716052, 47.4896521 ], + [ 7.716057, 47.4896519 ], + [ 7.7160622, 47.4896517 ], + [ 7.7160663, 47.4896515 ], + [ 7.7160839, 47.489651 ], + [ 7.7160892, 47.4896506 ], + [ 7.7160986, 47.48965 ], + [ 7.7161173, 47.489649 ], + [ 7.7161216, 47.4896487 ], + [ 7.7161261, 47.4896484 ], + [ 7.7161311999999995, 47.4896481 ], + [ 7.7161389, 47.4896477 ], + [ 7.716144, 47.4896474 ], + [ 7.7161449, 47.4896474 ], + [ 7.7161493, 47.4896472 ], + [ 7.7161545, 47.489647 ], + [ 7.7161582, 47.4896469 ], + [ 7.7161752, 47.4896463 ], + [ 7.71618, 47.4896459 ], + [ 7.7161851, 47.4896456 ], + [ 7.7161968, 47.4896448 ], + [ 7.716208, 47.489644 ], + [ 7.7162177, 47.4896433 ], + [ 7.7162339, 47.4896423 ], + [ 7.7162437, 47.4896415 ], + [ 7.7162496, 47.4896411 ], + [ 7.7162614, 47.4896403 ], + [ 7.7162673999999996, 47.4896398 ], + [ 7.7162711, 47.4896395 ], + [ 7.7162764, 47.4896391 ], + [ 7.7162842, 47.4896386 ], + [ 7.7163006, 47.4896376 ], + [ 7.7163105, 47.4896368 ], + [ 7.716317, 47.4896363 ], + [ 7.7163292, 47.4896355 ], + [ 7.7163356, 47.489635 ], + [ 7.7163395999999995, 47.4896347 ], + [ 7.7163443, 47.4896344 ], + [ 7.7163512999999995, 47.4896339 ], + [ 7.7163561, 47.4896337 ], + [ 7.7163614, 47.4896334 ], + [ 7.7163766, 47.4896326 ], + [ 7.7163855, 47.489632 ], + [ 7.7163912, 47.4896316 ], + [ 7.7164034, 47.4896308 ], + [ 7.71641, 47.4896303 ], + [ 7.7164146, 47.4896299 ], + [ 7.7164196, 47.4896296 ], + [ 7.7164269999999995, 47.4896292 ], + [ 7.716432, 47.4896289 ], + [ 7.7164364, 47.4896287 ], + [ 7.7164371, 47.4896286 ], + [ 7.7164421, 47.4896284 ], + [ 7.7164454, 47.4896283 ], + [ 7.7164588, 47.4896277 ], + [ 7.716465, 47.4896273 ], + [ 7.7164715, 47.4896268 ], + [ 7.7164838, 47.489626 ], + [ 7.7164904, 47.4896256 ], + [ 7.7164954, 47.4896252 ], + [ 7.7165005, 47.4896249 ], + [ 7.7165084, 47.4896244 ], + [ 7.7165112, 47.4896243 ], + [ 7.7165114, 47.4896227 ], + [ 7.7165128, 47.4896149 ], + [ 7.7165133, 47.4896122 ], + [ 7.7165140999999995, 47.4896082 ], + [ 7.7165164, 47.4895982 ], + [ 7.7165172, 47.4895952 ], + [ 7.7165185, 47.4895904 ], + [ 7.7165187, 47.4895897 ], + [ 7.7165199, 47.4895855 ], + [ 7.7165218, 47.4895794 ], + [ 7.7165237, 47.4895737 ], + [ 7.7165246, 47.4895711 ], + [ 7.7165254999999995, 47.4895684 ], + [ 7.7165272, 47.4895636 ], + [ 7.7165282, 47.4895609 ], + [ 7.7165294, 47.4895579 ], + [ 7.716531, 47.4895538 ], + [ 7.716533, 47.489549 ], + [ 7.716536, 47.489542 ], + [ 7.7165382000000005, 47.4895372 ], + [ 7.7165405, 47.4895324 ], + [ 7.7165425, 47.4895284 ], + [ 7.716543, 47.4895274 ], + [ 7.7165461, 47.4895212 ], + [ 7.7165497, 47.4895146 ], + [ 7.7165544, 47.4895062 ], + [ 7.7165571, 47.4895016 ], + [ 7.7165584, 47.4894995 ], + [ 7.7165609, 47.4894954 ], + [ 7.7165651, 47.4894889 ], + [ 7.7165709, 47.48948 ], + [ 7.7165759, 47.4894728 ], + [ 7.7165782, 47.4894696 ], + [ 7.7165793, 47.4894682 ], + [ 7.7165826, 47.4894637 ], + [ 7.7165853, 47.48946 ], + [ 7.7165901, 47.4894537 ], + [ 7.7165937, 47.4894491 ], + [ 7.7165957, 47.4894465 ], + [ 7.716598, 47.4894437 ], + [ 7.7166089, 47.4894305 ], + [ 7.7166114, 47.4894274 ], + [ 7.7166248, 47.4894116 ], + [ 7.7166268, 47.4894092 ], + [ 7.716629, 47.4894067 ], + [ 7.7166311, 47.4894043 ], + [ 7.7166336, 47.4894015 ], + [ 7.7166349, 47.4894 ], + [ 7.7166378, 47.4893967 ], + [ 7.7166457, 47.4893881 ], + [ 7.7166524, 47.4893811 ], + [ 7.7166529, 47.4893806 ], + [ 7.7166561, 47.4893772 ], + [ 7.7166629, 47.4893706 ], + [ 7.7166716, 47.4893623 ], + [ 7.7166764, 47.4893578 ], + [ 7.7166836, 47.4893512 ], + [ 7.7166867, 47.4893485 ], + [ 7.7166892, 47.4893462 ], + [ 7.7166925, 47.4893433 ], + [ 7.7166981, 47.489338599999996 ], + [ 7.7167114, 47.4893275 ], + [ 7.7167237, 47.4893173 ], + [ 7.7167462, 47.4892982 ], + [ 7.7167642, 47.4892829 ], + [ 7.7167654, 47.4892819 ], + [ 7.7167787, 47.4892706 ], + [ 7.7167813, 47.4892685 ], + [ 7.7167935, 47.4892584 ], + [ 7.716794, 47.489258 ], + [ 7.7168022, 47.4892509 ], + [ 7.716805, 47.4892485 ], + [ 7.7168084, 47.4892456 ], + [ 7.7168124, 47.4892423 ], + [ 7.7168219, 47.4892345 ], + [ 7.7168402, 47.4892194 ], + [ 7.7168419, 47.489218 ], + [ 7.7168453, 47.4892151 ], + [ 7.7168486, 47.4892125 ], + [ 7.7168583, 47.4892047 ], + [ 7.7168665, 47.4891981 ], + [ 7.7168693, 47.4891959 ], + [ 7.7168786, 47.4891886 ], + [ 7.7168863, 47.4891823 ], + [ 7.7168882, 47.4891808 ], + [ 7.7168971, 47.4891737 ], + [ 7.7169144, 47.4891595 ], + [ 7.7169165, 47.4891578 ], + [ 7.7169205, 47.4891546 ], + [ 7.7169248, 47.4891512 ], + [ 7.716925, 47.489151 ], + [ 7.7169393, 47.4891399 ], + [ 7.7169473, 47.4891335 ], + [ 7.7169498999999995, 47.4891315 ], + [ 7.7169664000000004, 47.4891186 ], + [ 7.716967, 47.4891182 ], + [ 7.7169685, 47.489117 ], + [ 7.7169723999999995, 47.4891139 ], + [ 7.716977, 47.4891105 ], + [ 7.716981, 47.4891075 ], + [ 7.7169849, 47.4891047 ], + [ 7.716989, 47.4891017 ], + [ 7.7169923, 47.4890993 ], + [ 7.7169965, 47.4890964 ], + [ 7.717001, 47.4890933 ], + [ 7.7170011, 47.4890932 ], + [ 7.7170096, 47.4890874 ], + [ 7.7170146, 47.4890841 ], + [ 7.7170189, 47.4890812 ], + [ 7.7170227, 47.4890787 ], + [ 7.7170271, 47.4890759 ], + [ 7.7170318, 47.4890729 ], + [ 7.7170362, 47.4890702 ], + [ 7.7170415, 47.489067 ], + [ 7.7170421000000005, 47.4890667 ], + [ 7.7170465, 47.489064 ], + [ 7.7170514, 47.4890611 ], + [ 7.7170631, 47.4890544 ], + [ 7.7170662, 47.4890526 ], + [ 7.7170708999999995, 47.48905 ], + [ 7.7170713, 47.4890497 ], + [ 7.7170863, 47.4890413 ], + [ 7.7170882, 47.4890402 ], + [ 7.7170924, 47.4890378 ], + [ 7.7170973, 47.489035200000004 ], + [ 7.7171015, 47.4890329 ], + [ 7.7171059, 47.4890306 ], + [ 7.7171067, 47.4890302 ], + [ 7.7171126999999995, 47.489027 ], + [ 7.717115, 47.4890258 ], + [ 7.7171306, 47.4890178 ], + [ 7.7171342, 47.489016 ], + [ 7.7171389999999995, 47.4890136 ], + [ 7.717145, 47.4890107 ], + [ 7.7171548, 47.4890059 ], + [ 7.7171595, 47.4890037 ], + [ 7.7171693, 47.4889991 ], + [ 7.7171726, 47.4889976 ], + [ 7.7171924, 47.4889885 ], + [ 7.717193, 47.4889882 ], + [ 7.7171937, 47.4889879 ], + [ 7.7171999, 47.4889851 ], + [ 7.7172655, 47.4889553 ], + [ 7.7174617, 47.4888659 ], + [ 7.717462, 47.4888658 ], + [ 7.7175309, 47.4888344 ], + [ 7.7175314, 47.4888342 ], + [ 7.7175604, 47.488821 ], + [ 7.7175612000000005, 47.4888207 ], + [ 7.7175635, 47.4888196 ], + [ 7.7175835, 47.4888107 ], + [ 7.7175873, 47.488809 ], + [ 7.7175972999999995, 47.4888047 ], + [ 7.7176008, 47.4888032 ], + [ 7.7176027, 47.4888023 ], + [ 7.7176111, 47.4887985 ], + [ 7.7176165999999995, 47.4887961 ], + [ 7.7176195, 47.4887948 ], + [ 7.7176198, 47.4887947 ], + [ 7.7176297, 47.4887901 ], + [ 7.7176302, 47.4887899 ], + [ 7.7176369000000005, 47.4887869 ], + [ 7.7176396, 47.4887857 ], + [ 7.7176469, 47.4887824 ], + [ 7.7176509, 47.4887807 ], + [ 7.7176558, 47.4887785 ], + [ 7.7176627, 47.4887755 ], + [ 7.7176819, 47.4887675 ], + [ 7.717686, 47.4887658 ], + [ 7.7176960999999995, 47.4887616 ], + [ 7.7177015, 47.4887595 ], + [ 7.7177017, 47.4887594 ], + [ 7.7177055, 47.4887579 ], + [ 7.7177116, 47.4887556 ], + [ 7.7177246, 47.4887507 ], + [ 7.7177277, 47.4887495 ], + [ 7.7177302, 47.4887485 ], + [ 7.7177451, 47.4887428 ], + [ 7.7177494, 47.4887412 ], + [ 7.7177527, 47.4887399 ], + [ 7.7177646, 47.4887353 ], + [ 7.7177668, 47.4887345 ], + [ 7.7177706, 47.4887331 ], + [ 7.7177745, 47.4887316 ], + [ 7.71779, 47.4887259 ], + [ 7.7178049, 47.4887202 ], + [ 7.7178084, 47.4887188 ], + [ 7.7178117, 47.4887176 ], + [ 7.7178275, 47.4887115 ], + [ 7.717832, 47.4887098 ], + [ 7.7178467, 47.4887043 ], + [ 7.717852, 47.4887021 ], + [ 7.7178648, 47.488697 ], + [ 7.717867, 47.4886962 ], + [ 7.7178691, 47.4886953 ], + [ 7.7178729, 47.4886939 ], + [ 7.7178785, 47.4886918 ], + [ 7.7178949, 47.4886856 ], + [ 7.717934, 47.4886705 ], + [ 7.717938, 47.488669 ], + [ 7.7179531, 47.4886634 ], + [ 7.7179643, 47.4886589 ], + [ 7.7179665, 47.488658 ], + [ 7.7179667, 47.4886579 ], + [ 7.7179769, 47.4886539 ], + [ 7.7179844, 47.488651 ], + [ 7.7180005, 47.488645 ], + [ 7.7180161, 47.4886389 ], + [ 7.7180203, 47.4886374 ], + [ 7.7180238, 47.488636 ], + [ 7.7180399, 47.4886298 ], + [ 7.7180458, 47.4886276 ], + [ 7.7180612, 47.4886219 ], + [ 7.7180762, 47.4886161 ], + [ 7.7180797, 47.4886148 ], + [ 7.718083, 47.4886136 ], + [ 7.7180987, 47.4886075 ], + [ 7.718103, 47.4886058 ], + [ 7.7181177, 47.4886003 ], + [ 7.7181228, 47.4885983 ], + [ 7.7181317, 47.4885947 ], + [ 7.7181347, 47.4885935 ], + [ 7.7181356, 47.4885932 ], + [ 7.7181432, 47.4885902 ], + [ 7.7181507, 47.4885873 ], + [ 7.7181638, 47.4885825 ], + [ 7.7181660999999995, 47.4885816 ], + [ 7.7181819, 47.4885758 ], + [ 7.7181851, 47.4885746 ], + [ 7.7181928, 47.4885719 ], + [ 7.7182017, 47.4885688 ], + [ 7.7182037999999995, 47.4885681 ], + [ 7.7182132, 47.4885649 ], + [ 7.7182171, 47.4885637 ], + [ 7.7182277, 47.4885603 ], + [ 7.7182381, 47.4885568 ], + [ 7.7182716, 47.4885456 ], + [ 7.7182753, 47.4885443 ], + [ 7.7182886, 47.48854 ], + [ 7.7182951, 47.4885379 ], + [ 7.7183149, 47.4885317 ], + [ 7.7183343, 47.4885255 ], + [ 7.7183379, 47.4885243 ], + [ 7.7183564, 47.4885186 ], + [ 7.7183645, 47.4885159 ], + [ 7.7183971, 47.4885049 ], + [ 7.7184007, 47.4885037 ], + [ 7.7184141, 47.4884993 ], + [ 7.7184207, 47.4884972 ], + [ 7.7184406, 47.488491 ], + [ 7.7184601, 47.4884847 ], + [ 7.7184637, 47.4884836 ], + [ 7.7184822, 47.4884778 ], + [ 7.71849, 47.4884752 ], + [ 7.7185355, 47.4884598 ], + [ 7.7185359, 47.4884597 ], + [ 7.7185397, 47.4884584 ], + [ 7.718553, 47.4884541 ], + [ 7.7185597, 47.4884519 ], + [ 7.7185796, 47.4884457 ], + [ 7.7185827, 47.4884447 ], + [ 7.7185692, 47.4884309 ], + [ 7.7185682, 47.4884299 ], + [ 7.7185575, 47.4884189 ], + [ 7.7185558, 47.4884172 ], + [ 7.7185494, 47.4884104 ], + [ 7.7185473, 47.4884082 ], + [ 7.7185431, 47.4884038 ], + [ 7.7185219, 47.4883819 ], + [ 7.7185181, 47.4883779 ], + [ 7.7185157, 47.4883753 ], + [ 7.7185113, 47.4883707 ], + [ 7.7184838, 47.4883423 ], + [ 7.7184822, 47.4883407 ], + [ 7.7184758, 47.4883339 ], + [ 7.7184738, 47.4883318 ], + [ 7.71847, 47.4883278 ], + [ 7.7184624, 47.48832 ], + [ 7.7184598, 47.4883173 ], + [ 7.7184583, 47.4883157 ], + [ 7.7184526, 47.4883099 ], + [ 7.7184501999999995, 47.4883074 ], + [ 7.7184477000000005, 47.4883048 ], + [ 7.7184445, 47.4883015 ], + [ 7.7184424, 47.4882991 ], + [ 7.7184384, 47.488295 ], + [ 7.718415, 47.488271 ], + [ 7.7184117, 47.4882676 ], + [ 7.7184053, 47.4882608 ], + [ 7.7184012, 47.4882563 ], + [ 7.7183973, 47.488252 ], + [ 7.7183941, 47.4882484 ], + [ 7.7183918, 47.4882459 ], + [ 7.7183903, 47.4882441 ], + [ 7.7183867, 47.4882398 ], + [ 7.7183831, 47.4882354 ], + [ 7.7183781, 47.4882292 ], + [ 7.7183747, 47.4882247 ], + [ 7.718371, 47.4882199 ], + [ 7.7183644000000005, 47.4882109 ], + [ 7.7183643, 47.4882107 ], + [ 7.7183612, 47.4882064 ], + [ 7.7183548, 47.4881974 ], + [ 7.7183507, 47.4881913 ], + [ 7.7183464, 47.4881848 ], + [ 7.7183442, 47.4881814 ], + [ 7.7183326, 47.488163 ], + [ 7.7183285999999995, 47.4881568 ], + [ 7.7183268, 47.4881541 ], + [ 7.7183139, 47.4881335 ], + [ 7.7183102, 47.4881279 ], + [ 7.7183088, 47.4881257 ], + [ 7.7182971, 47.4881074 ], + [ 7.718295, 47.4881041 ], + [ 7.7182864, 47.4880916 ], + [ 7.7182837, 47.4880876 ], + [ 7.7182794999999995, 47.4880811 ], + [ 7.718278, 47.4880788 ], + [ 7.7182665, 47.4880608 ], + [ 7.7182639, 47.4880569 ], + [ 7.7182615, 47.4880532 ], + [ 7.7182472, 47.4880305 ], + [ 7.7182434, 47.4880247 ], + [ 7.7182419, 47.4880225 ], + [ 7.7182302, 47.4880041 ], + [ 7.718228, 47.4880008 ], + [ 7.7182195, 47.4879883 ], + [ 7.7182168, 47.4879843 ], + [ 7.7182126, 47.4879778 ], + [ 7.718211, 47.4879754 ], + [ 7.7181993, 47.487957 ], + [ 7.7181953, 47.4879509 ], + [ 7.7181933, 47.4879478 ], + [ 7.7181838, 47.4879327 ], + [ 7.7181798, 47.4879264 ], + [ 7.7181689, 47.48791 ], + [ 7.7181604, 47.4878978 ], + [ 7.7181594, 47.4878963 ], + [ 7.7181513, 47.4878845 ], + [ 7.7181485, 47.4878806 ], + [ 7.7181462, 47.4878777 ], + [ 7.71814, 47.4878702 ], + [ 7.7181384, 47.4878683 ], + [ 7.7181368, 47.4878663 ], + [ 7.718128, 47.4878558 ], + [ 7.7181251, 47.4878523 ], + [ 7.7181231, 47.4878498 ], + [ 7.7181195, 47.4878455 ], + [ 7.7181193, 47.4878453 ], + [ 7.7181166999999995, 47.4878425 ], + [ 7.7181104, 47.4878361 ], + [ 7.7180991, 47.4878246 ], + [ 7.7180964, 47.4878219 ], + [ 7.7180900999999995, 47.4878156 ], + [ 7.718086, 47.4878117 ], + [ 7.7180808, 47.4878068 ], + [ 7.7180794, 47.4878055 ], + [ 7.718076, 47.4878022 ], + [ 7.7180731, 47.4877994 ], + [ 7.7180719, 47.4877982 ], + [ 7.7180663, 47.4877931 ], + [ 7.7180636, 47.4877907 ], + [ 7.7180484, 47.4877783 ], + [ 7.7180408, 47.4877721 ], + [ 7.7180401, 47.4877716 ], + [ 7.7180393, 47.487771 ], + [ 7.7180283, 47.4877627 ], + [ 7.7180271, 47.4877618 ], + [ 7.7180194, 47.4877559 ], + [ 7.7180146, 47.4877525 ], + [ 7.7180083, 47.4877482 ], + [ 7.7180011, 47.4877433 ], + [ 7.717989, 47.4877352 ], + [ 7.7179817, 47.4877303 ], + [ 7.7179753, 47.4877261 ], + [ 7.7179703, 47.4877229 ], + [ 7.7179702, 47.4877228 ], + [ 7.7179685, 47.4877218 ], + [ 7.7179504, 47.487711 ], + [ 7.7179502, 47.487711 ], + [ 7.7179407, 47.4877058 ], + [ 7.7179375, 47.4877041 ], + [ 7.7179329, 47.4877015 ], + [ 7.7179281, 47.4876988 ], + [ 7.7179154, 47.4876915 ], + [ 7.7179153, 47.4876914 ], + [ 7.7178983, 47.4876826 ], + [ 7.7178825, 47.4876745 ], + [ 7.7178819, 47.4876742 ], + [ 7.7178785, 47.4876724 ], + [ 7.7178742, 47.4876701 ], + [ 7.71787, 47.4876679 ], + [ 7.7178594, 47.4876621 ], + [ 7.7178495, 47.4876571 ], + [ 7.7178483, 47.4876564 ], + [ 7.7178474999999995, 47.487656 ], + [ 7.7178343, 47.4876491 ], + [ 7.7178229, 47.4876433 ], + [ 7.7178218, 47.4876428 ], + [ 7.7178182, 47.4876409 ], + [ 7.7178139, 47.4876386 ], + [ 7.7178097, 47.4876363 ], + [ 7.7177991, 47.4876306 ], + [ 7.7177989, 47.4876305 ], + [ 7.7177623, 47.4876116 ], + [ 7.7177620000000005, 47.4876115 ], + [ 7.7177583, 47.4876095 ], + [ 7.7177541, 47.4876073 ], + [ 7.7177498, 47.487605 ], + [ 7.7177436, 47.4876017 ], + [ 7.7177392000000005, 47.4875992 ], + [ 7.7177024, 47.4875803 ], + [ 7.7177021, 47.4875801 ], + [ 7.7176984, 47.4875782 ], + [ 7.7176942, 47.4875759 ], + [ 7.7176899, 47.4875736 ], + [ 7.7176793, 47.4875679 ], + [ 7.7176425, 47.4875489 ], + [ 7.7176422, 47.4875488 ], + [ 7.7176386, 47.4875469 ], + [ 7.7176343, 47.4875446 ], + [ 7.71763, 47.4875423 ], + [ 7.7176194, 47.4875366 ], + [ 7.7175827, 47.4875176 ], + [ 7.7175823999999995, 47.4875175 ], + [ 7.7175787, 47.4875155 ], + [ 7.7175744, 47.4875133 ], + [ 7.7175702, 47.487511 ], + [ 7.7175595999999995, 47.4875052 ], + [ 7.7175594, 47.4875051 ], + [ 7.7175228, 47.4874863 ], + [ 7.7175225, 47.4874861 ], + [ 7.7175188, 47.4874842 ], + [ 7.7175146, 47.4874819 ], + [ 7.7175103, 47.4874797 ], + [ 7.7174998, 47.4874739 ], + [ 7.71749, 47.4874689 ], + [ 7.7174891, 47.4874685 ], + [ 7.7174881, 47.487468 ], + [ 7.7174748, 47.487461 ], + [ 7.7174636, 47.4874553 ], + [ 7.7174626, 47.4874548 ], + [ 7.717459, 47.4874529 ], + [ 7.7174548, 47.4874506 ], + [ 7.7174505, 47.4874484 ], + [ 7.7174401, 47.4874427 ], + [ 7.7174268, 47.4874359 ], + [ 7.7174256, 47.4874353 ], + [ 7.7174246, 47.4874348 ], + [ 7.7174192999999995, 47.487432 ], + [ 7.7174054, 47.487425 ], + [ 7.7174027, 47.4874236 ], + [ 7.7174023, 47.4874234 ], + [ 7.7173975, 47.4874209 ], + [ 7.7173945, 47.4874193 ], + [ 7.7173583, 47.4874002 ], + [ 7.7173386, 47.4873901 ], + [ 7.717338, 47.4873898 ], + [ 7.7173345, 47.4873879 ], + [ 7.7172984, 47.4873689 ], + [ 7.7172788, 47.4873588 ], + [ 7.7172782, 47.4873584 ], + [ 7.7172752, 47.4873569 ], + [ 7.7172632, 47.4873506 ], + [ 7.717262, 47.48735 ], + [ 7.7172374999999995, 47.4873369 ], + [ 7.7172222, 47.487329 ], + [ 7.7172189, 47.4873273 ], + [ 7.7172153, 47.4873254 ], + [ 7.7172105, 47.4873228 ], + [ 7.7171991, 47.4873165 ], + [ 7.7171976, 47.4873157 ], + [ 7.7171871, 47.4873102 ], + [ 7.7171837, 47.4873084 ], + [ 7.7171795, 47.4873061 ], + [ 7.7171755, 47.4873039 ], + [ 7.7171647, 47.487298 ], + [ 7.7171636, 47.4872974 ], + [ 7.717153, 47.4872918 ], + [ 7.7171492, 47.4872898 ], + [ 7.7171449, 47.4872875 ], + [ 7.7171407, 47.4872851 ], + [ 7.7171253, 47.4872765 ], + [ 7.7171154, 47.4872711 ], + [ 7.7170877, 47.4872561 ], + [ 7.7170864, 47.4872554 ], + [ 7.7170745, 47.4872489 ], + [ 7.7170718, 47.4872474 ], + [ 7.717057, 47.4872392 ], + [ 7.7170568, 47.487239 ], + [ 7.7170466, 47.4872337 ], + [ 7.7170437, 47.4872321 ], + [ 7.7170395, 47.4872298 ], + [ 7.7170356, 47.4872277 ], + [ 7.7170248, 47.4872218 ], + [ 7.717024, 47.4872213 ], + [ 7.7170133, 47.4872157 ], + [ 7.7170096, 47.4872137 ], + [ 7.7170054, 47.4872114 ], + [ 7.7170005, 47.4872088 ], + [ 7.7169896, 47.4872026 ], + [ 7.7169758999999996, 47.4871952 ], + [ 7.7169153, 47.4871624 ], + [ 7.7169133, 47.4871613 ], + [ 7.7168972, 47.4871525 ], + [ 7.716894, 47.4871507 ], + [ 7.7168838, 47.487145 ], + [ 7.7168735999999996, 47.4871396 ], + [ 7.7168706, 47.487138 ], + [ 7.7168664, 47.4871358 ], + [ 7.7168627, 47.4871337 ], + [ 7.7168518, 47.4871278 ], + [ 7.7168510999999995, 47.4871274 ], + [ 7.7168404, 47.4871217 ], + [ 7.7168365, 47.4871196 ], + [ 7.7168323, 47.4871173 ], + [ 7.7168281, 47.4871151 ], + [ 7.716813, 47.4871066 ], + [ 7.7167626, 47.4870792 ], + [ 7.7167591, 47.4870773 ], + [ 7.7167444, 47.4870691 ], + [ 7.7167342, 47.4870637 ], + [ 7.7167314000000005, 47.4870622 ], + [ 7.7167272, 47.4870599 ], + [ 7.7167234, 47.4870579 ], + [ 7.7167126, 47.487052 ], + [ 7.7167118, 47.4870515 ], + [ 7.716701, 47.4870458 ], + [ 7.716697, 47.4870437 ], + [ 7.7166928, 47.4870414 ], + [ 7.7166873, 47.4870384 ], + [ 7.7166756, 47.4870318 ], + [ 7.7166649, 47.4870259 ], + [ 7.7166616, 47.487024 ], + [ 7.7166498, 47.4870174 ], + [ 7.7166457, 47.487015 ], + [ 7.7166413, 47.4870124 ], + [ 7.7166396, 47.4870114 ], + [ 7.7166361, 47.4870093 ], + [ 7.7166317, 47.4870067 ], + [ 7.7166267, 47.4870036 ], + [ 7.716618, 47.4869982 ], + [ 7.716615, 47.4869963 ], + [ 7.7165953, 47.4869836 ], + [ 7.7165946, 47.4869833 ], + [ 7.7165863, 47.4869782 ], + [ 7.7165821999999995, 47.4869757 ], + [ 7.7165753, 47.4869714 ], + [ 7.7165716, 47.486969 ], + [ 7.7165459, 47.4869526 ], + [ 7.7165448, 47.4869519 ], + [ 7.7165351, 47.486946 ], + [ 7.7165312, 47.4869436 ], + [ 7.7165268000000005, 47.4869408 ], + [ 7.7165234, 47.4869387 ], + [ 7.7165145, 47.486933 ], + [ 7.7165113, 47.4869309 ], + [ 7.7164905, 47.4869173 ], + [ 7.7164846, 47.4869135 ], + [ 7.7164809, 47.4869112 ], + [ 7.7164728, 47.4869063 ], + [ 7.7164688, 47.4869038 ], + [ 7.7164646, 47.4869012 ], + [ 7.7164611, 47.486899 ], + [ 7.7164528, 47.4868937 ], + [ 7.7164503, 47.4868921 ], + [ 7.7164279, 47.4868775 ], + [ 7.7164245000000005, 47.4868754 ], + [ 7.7164161, 47.4868703 ], + [ 7.7164103, 47.4868667 ], + [ 7.7164016, 47.4868612 ], + [ 7.7163974, 47.4868586 ], + [ 7.7163886999999995, 47.486852999999996 ], + [ 7.7163871, 47.4868519 ], + [ 7.7163673, 47.4868389 ], + [ 7.7163622, 47.4868357 ], + [ 7.716362, 47.4868356 ], + [ 7.7163531, 47.4868302 ], + [ 7.7163492, 47.4868277 ], + [ 7.7163448, 47.4868251 ], + [ 7.7163406, 47.4868224 ], + [ 7.7163126, 47.4868045 ], + [ 7.7163123, 47.4868043 ], + [ 7.7163031, 47.4867988 ], + [ 7.7162972, 47.4867951 ], + [ 7.7162885, 47.4867896 ], + [ 7.7162843, 47.4867869 ], + [ 7.7162756, 47.4867813 ], + [ 7.716274, 47.4867802 ], + [ 7.7162542, 47.4867673 ], + [ 7.7162492, 47.4867641 ], + [ 7.7162403, 47.4867587 ], + [ 7.7162367, 47.4867565 ], + [ 7.7162324, 47.4867539 ], + [ 7.7162293, 47.4867519 ], + [ 7.7162206, 47.4867465 ], + [ 7.7162191, 47.4867455 ], + [ 7.7162074, 47.486738 ], + [ 7.7162014, 47.4867343 ], + [ 7.7162003, 47.4867336 ], + [ 7.7161911, 47.4867281 ], + [ 7.7161855, 47.4867247 ], + [ 7.7161814, 47.4867221 ], + [ 7.7161774, 47.4867195 ], + [ 7.7161733, 47.486717 ], + [ 7.7161694, 47.4867144 ], + [ 7.7161653999999995, 47.4867118 ], + [ 7.7161624, 47.4867098 ], + [ 7.7161614, 47.4867091 ], + [ 7.7161575, 47.4867065 ], + [ 7.7161531, 47.4867034 ], + [ 7.7161492, 47.4867007 ], + [ 7.716144, 47.486697 ], + [ 7.7161402, 47.4866942 ], + [ 7.7161341, 47.4866897 ], + [ 7.7161304, 47.4866869 ], + [ 7.7161293, 47.486686 ], + [ 7.7161228, 47.4866809 ], + [ 7.7161193, 47.4866781 ], + [ 7.7161100000000005, 47.4866703 ], + [ 7.7161067, 47.4866674 ], + [ 7.7161059, 47.4866667 ], + [ 7.7160989, 47.4866604 ], + [ 7.7160969999999995, 47.4866586 ], + [ 7.7160928, 47.4866547 ], + [ 7.7160903, 47.4866522 ], + [ 7.7160862, 47.4866482 ], + [ 7.7160844, 47.4866463 ], + [ 7.7160819, 47.4866438 ], + [ 7.7160763, 47.4866379 ], + [ 7.7160747, 47.4866361 ], + [ 7.7160721, 47.4866333 ], + [ 7.716066, 47.4866264 ], + [ 7.7160625, 47.4866225 ], + [ 7.7160587, 47.4866181 ], + [ 7.7160584, 47.4866177 ], + [ 7.716056, 47.4866149 ], + [ 7.7160539, 47.4866123 ], + [ 7.7160503, 47.486608 ], + [ 7.7160433, 47.4865992 ], + [ 7.7160414, 47.4865968 ], + [ 7.7160399, 47.4865949 ], + [ 7.7160374, 47.4865918 ], + [ 7.7158714, 47.4866504 ], + [ 7.71588, 47.4866598 ], + [ 7.7158825, 47.4866626 ], + [ 7.7158847, 47.4866651 ], + [ 7.7158873, 47.4866681 ], + [ 7.7158885, 47.4866695 ], + [ 7.7158897, 47.486671 ], + [ 7.7158987, 47.486681 ], + [ 7.7159019, 47.4866846 ], + [ 7.7159064, 47.4866898 ], + [ 7.7159071, 47.4866906 ], + [ 7.7159116999999995, 47.4866961 ], + [ 7.7159195, 47.4867056 ], + [ 7.7159201, 47.4867064 ], + [ 7.7159275, 47.4867145 ], + [ 7.7159294, 47.4867168 ], + [ 7.7159317, 47.4867193 ], + [ 7.715934, 47.4867219 ], + [ 7.7159351, 47.4867233 ], + [ 7.7159361, 47.4867244 ], + [ 7.7159468, 47.4867362 ], + [ 7.7159491, 47.4867388 ], + [ 7.7159513, 47.4867413 ], + [ 7.715954, 47.4867444 ], + [ 7.7159549, 47.4867454 ], + [ 7.715956, 47.4867467 ], + [ 7.7159668, 47.4867586 ], + [ 7.7159692, 47.4867613 ], + [ 7.7159715, 47.4867639 ], + [ 7.715974, 47.4867668 ], + [ 7.7159751, 47.4867681 ], + [ 7.7159761, 47.4867693 ], + [ 7.715987, 47.4867813 ], + [ 7.7159894, 47.4867839 ], + [ 7.7159916, 47.4867865 ], + [ 7.715994, 47.4867892 ], + [ 7.7159952, 47.4867907 ], + [ 7.7159962, 47.4867918 ], + [ 7.7160069, 47.4868036 ], + [ 7.7160087, 47.4868056 ], + [ 7.716011, 47.4868082 ], + [ 7.7160139999999995, 47.4868117 ], + [ 7.7160143, 47.4868119 ], + [ 7.7160149, 47.4868127 ], + [ 7.7160151, 47.4868129 ], + [ 7.7160187, 47.4868166 ], + [ 7.7160356, 47.486834 ], + [ 7.7160379, 47.4868363 ], + [ 7.7160443999999995, 47.4868431 ], + [ 7.7160477, 47.4868467 ], + [ 7.7160516999999995, 47.486851 ], + [ 7.716054, 47.4868534 ], + [ 7.7160563, 47.486856 ], + [ 7.7160601, 47.4868603 ], + [ 7.7160611, 47.4868615 ], + [ 7.7160618, 47.4868622 ], + [ 7.7160656, 47.4868662 ], + [ 7.7160825, 47.4868835 ], + [ 7.7160847, 47.4868858 ], + [ 7.7160912, 47.4868926 ], + [ 7.7160944, 47.486896 ], + [ 7.7160984, 47.4869003 ], + [ 7.7161007, 47.4869028 ], + [ 7.716103, 47.4869054 ], + [ 7.7161069, 47.4869097 ], + [ 7.7161078, 47.4869108 ], + [ 7.7161085, 47.4869116 ], + [ 7.7161121999999995, 47.4869155 ], + [ 7.7161292, 47.4869328 ], + [ 7.7161314, 47.4869352 ], + [ 7.7161379, 47.4869419 ], + [ 7.7161413, 47.4869456 ], + [ 7.7161453, 47.4869499 ], + [ 7.7161477, 47.4869525 ], + [ 7.71615, 47.486955 ], + [ 7.7161538, 47.4869594 ], + [ 7.7161544, 47.4869601 ], + [ 7.7161562, 47.4869621 ], + [ 7.7161599, 47.486966 ], + [ 7.7161706, 47.486977 ], + [ 7.7161724, 47.4869789 ], + [ 7.7161788, 47.4869857 ], + [ 7.7161792, 47.4869861 ], + [ 7.7161816, 47.4869885 ], + [ 7.7161838, 47.4869905 ], + [ 7.7161979, 47.4870043 ], + [ 7.7162011, 47.4870073 ], + [ 7.7162074, 47.4870129 ], + [ 7.7162119, 47.4870171 ], + [ 7.7162201, 47.4870246 ], + [ 7.7162273, 47.4870312 ], + [ 7.7162323, 47.4870359 ], + [ 7.7162348, 47.4870383 ], + [ 7.7162397, 47.4870431 ], + [ 7.7162441, 47.4870471 ], + [ 7.7162457, 47.4870486 ], + [ 7.7162524, 47.4870549 ], + [ 7.7162583, 47.4870601 ], + [ 7.7162607, 47.4870623 ], + [ 7.7162634, 47.4870648 ], + [ 7.7162676, 47.4870686 ], + [ 7.7162745, 47.4870753 ], + [ 7.7162769, 47.4870776 ], + [ 7.7162846, 47.4870849 ], + [ 7.7162881, 47.4870883 ], + [ 7.7162962, 47.4870957 ], + [ 7.7163012, 47.4871004 ], + [ 7.7163082, 47.487107 ], + [ 7.7163102, 47.4871089 ], + [ 7.7163177, 47.4871161 ], + [ 7.7163211, 47.4871194 ], + [ 7.7163273, 47.487125 ], + [ 7.7163309, 47.4871282 ], + [ 7.7163382, 47.4871349 ], + [ 7.7163445, 47.4871405 ], + [ 7.7163471999999995, 47.4871429 ], + [ 7.7163499, 47.4871454 ], + [ 7.7163534, 47.4871486 ], + [ 7.7163578, 47.4871528 ], + [ 7.7163596, 47.4871545 ], + [ 7.7163694, 47.4871639 ], + [ 7.7163749, 47.4871684 ], + [ 7.7163798, 47.4871725 ], + [ 7.7163826, 47.4871749 ], + [ 7.7163851999999995, 47.4871772 ], + [ 7.716387, 47.4871788 ], + [ 7.716395, 47.4871859 ], + [ 7.7164046, 47.4871943 ], + [ 7.7164055, 47.487195 ], + [ 7.7164072, 47.4871966 ], + [ 7.7164131, 47.4872018 ], + [ 7.716421, 47.4872083 ], + [ 7.7164262, 47.4872127 ], + [ 7.716429, 47.4872151 ], + [ 7.7164318, 47.4872175 ], + [ 7.7164337, 47.4872192 ], + [ 7.7164417, 47.4872263 ], + [ 7.7164515, 47.4872348 ], + [ 7.7164521, 47.4872354 ], + [ 7.716454, 47.487237 ], + [ 7.7164599, 47.4872423 ], + [ 7.7164678, 47.4872488 ], + [ 7.7164729, 47.4872531 ], + [ 7.7164757, 47.4872555 ], + [ 7.7164785, 47.4872579 ], + [ 7.71648, 47.4872592 ], + [ 7.7164908, 47.4872688 ], + [ 7.7164977, 47.4872748 ], + [ 7.7164988, 47.4872757 ], + [ 7.7165006, 47.4872773 ], + [ 7.7165066, 47.4872827 ], + [ 7.7165145, 47.4872892 ], + [ 7.7165197, 47.4872935 ], + [ 7.7165224, 47.4872959 ], + [ 7.7165251, 47.4872982 ], + [ 7.7165271, 47.4873 ], + [ 7.7165349, 47.4873069 ], + [ 7.7165418, 47.4873129 ], + [ 7.7165427, 47.4873137 ], + [ 7.7165441999999995, 47.487315100000004 ], + [ 7.7165532, 47.4873231 ], + [ 7.7165603, 47.4873288 ], + [ 7.716565, 47.4873328 ], + [ 7.7165679, 47.4873352 ], + [ 7.7165711, 47.4873379 ], + [ 7.716578, 47.4873439 ], + [ 7.7165865, 47.4873508 ], + [ 7.7165908, 47.4873545 ], + [ 7.7165937, 47.4873569 ], + [ 7.7165961, 47.487359 ], + [ 7.7166018, 47.4873638 ], + [ 7.7166101, 47.4873703 ], + [ 7.7166138, 47.4873731 ], + [ 7.7166167, 47.4873754 ], + [ 7.7166212, 47.4873791 ], + [ 7.7166241, 47.4873815 ], + [ 7.716628, 47.4873847 ], + [ 7.7166344, 47.4873902 ], + [ 7.7166434, 47.4873971 ], + [ 7.716647, 47.4874 ], + [ 7.71665, 47.4874023 ], + [ 7.7166546, 47.487406 ], + [ 7.7166574, 47.4874084 ], + [ 7.7166611, 47.4874115 ], + [ 7.7166674, 47.4874167 ], + [ 7.7166675, 47.4874169 ], + [ 7.7166749, 47.4874225 ], + [ 7.7166761, 47.4874234 ], + [ 7.7166778, 47.4874247 ], + [ 7.7166808, 47.487427 ], + [ 7.7166857, 47.487431 ], + [ 7.7166995, 47.4874421 ], + [ 7.7167011, 47.4874434 ], + [ 7.7167065, 47.4874478 ], + [ 7.7167159, 47.4874552 ], + [ 7.7167207, 47.4874591 ], + [ 7.7167398, 47.4874747 ], + [ 7.7167493, 47.4874822 ], + [ 7.716754, 47.487486 ], + [ 7.7167731, 47.4875016 ], + [ 7.7167826999999996, 47.4875092 ], + [ 7.7167873, 47.4875129 ], + [ 7.7168064, 47.4875285 ], + [ 7.7168159, 47.487536 ], + [ 7.7168206999999995, 47.4875399 ], + [ 7.7168274, 47.4875454 ], + [ 7.7168320999999995, 47.4875492 ], + [ 7.7168341, 47.4875507 ], + [ 7.7168376, 47.4875536 ], + [ 7.716845, 47.4875593 ], + [ 7.7168461, 47.4875601 ], + [ 7.7168484, 47.4875618 ], + [ 7.7168544, 47.4875665 ], + [ 7.7168608, 47.4875717 ], + [ 7.7168637, 47.487574 ], + [ 7.7168677, 47.4875774 ], + [ 7.7168744, 47.487583 ], + [ 7.7168833, 47.48759 ], + [ 7.716887, 47.4875928 ], + [ 7.7168899, 47.4875952 ], + [ 7.7168945, 47.4875988 ], + [ 7.7168973, 47.4876012 ], + [ 7.716901, 47.4876043 ], + [ 7.7169072, 47.4876096 ], + [ 7.7169073, 47.4876097 ], + [ 7.7169148, 47.4876154 ], + [ 7.7169159, 47.4876162 ], + [ 7.7169176, 47.4876175 ], + [ 7.7169206, 47.4876198 ], + [ 7.7169255, 47.4876237 ], + [ 7.7169392, 47.4876348 ], + [ 7.7169408, 47.487636 ], + [ 7.7169460999999995, 47.4876404 ], + [ 7.7169554, 47.4876477 ], + [ 7.7169599, 47.4876513 ], + [ 7.7169794, 47.4876672 ], + [ 7.7169861, 47.4876725 ], + [ 7.7169882, 47.4876741 ], + [ 7.7169910999999995, 47.4876765 ], + [ 7.7169954, 47.4876799 ], + [ 7.7169982, 47.4876823 ], + [ 7.7170019, 47.4876853 ], + [ 7.7170094, 47.4876918 ], + [ 7.7170124, 47.4876944 ], + [ 7.7170152, 47.4876968 ], + [ 7.7170155, 47.4876971 ], + [ 7.7170205, 47.4877015 ], + [ 7.7170231, 47.4877039 ], + [ 7.7170296, 47.48771 ], + [ 7.7170339, 47.4877142 ], + [ 7.7170378, 47.487718 ], + [ 7.7170385, 47.4877187 ], + [ 7.7170409, 47.4877212 ], + [ 7.7170457, 47.4877262 ], + [ 7.7170466, 47.4877272 ], + [ 7.7170515, 47.4877321 ], + [ 7.7170559, 47.4877367 ], + [ 7.7170583, 47.4877392 ], + [ 7.7170638, 47.4877452 ], + [ 7.7170715, 47.4877538 ], + [ 7.7170737, 47.4877563 ], + [ 7.7170775, 47.4877606 ], + [ 7.7170787, 47.487762 ], + [ 7.7170805, 47.4877642 ], + [ 7.7170827, 47.4877668 ], + [ 7.717089, 47.4877745 ], + [ 7.7170924, 47.487779 ], + [ 7.7170967, 47.4877846 ], + [ 7.7170998, 47.487789 ], + [ 7.7171017, 47.4877916 ], + [ 7.7171094, 47.4878034 ], + [ 7.7171098, 47.487804 ], + [ 7.7171114, 47.4878066 ], + [ 7.7171158, 47.4878142 ], + [ 7.7171218, 47.4878248 ], + [ 7.7171262, 47.4878331 ], + [ 7.7171275999999995, 47.4878358 ], + [ 7.7171291, 47.4878388 ], + [ 7.7171301, 47.4878409 ], + [ 7.7171313999999995, 47.4878434 ], + [ 7.7171330000000005, 47.4878465 ], + [ 7.7171354, 47.4878514 ], + [ 7.7171377, 47.4878562 ], + [ 7.7171389999999995, 47.4878588 ], + [ 7.7171397, 47.48786 ], + [ 7.7171425, 47.4878658 ], + [ 7.7171438, 47.4878685 ], + [ 7.7171452, 47.4878717 ], + [ 7.7171468999999995, 47.4878753 ], + [ 7.7171487, 47.4878793 ], + [ 7.7171535, 47.4878902 ], + [ 7.7171544999999995, 47.4878929 ], + [ 7.7171547, 47.4878932 ], + [ 7.7171579, 47.4879018 ], + [ 7.7171598, 47.4879072 ], + [ 7.7171609, 47.4879104 ], + [ 7.7171617999999995, 47.4879133 ], + [ 7.7171636, 47.4879188 ], + [ 7.7171642, 47.487921 ], + [ 7.7171651, 47.4879241 ], + [ 7.7171671, 47.4879316 ], + [ 7.7171701, 47.4879441 ], + [ 7.7171710000000004, 47.4879478 ], + [ 7.7171717, 47.487951 ], + [ 7.7171725, 47.487955 ], + [ 7.7171729, 47.4879567 ], + [ 7.7171753, 47.4879694 ], + [ 7.7171765, 47.4879764 ], + [ 7.7171769999999995, 47.4879798 ], + [ 7.717178, 47.4879882 ], + [ 7.7171784, 47.4879916 ], + [ 7.7171784, 47.4879919 ], + [ 7.717179, 47.4879984 ], + [ 7.7171792, 47.4880018 ], + [ 7.7171795, 47.4880076 ], + [ 7.7171796, 47.4880111 ], + [ 7.7171797, 47.4880164 ], + [ 7.7171797, 47.4880199 ], + [ 7.7171797, 47.4880255 ], + [ 7.7171796, 47.4880289 ], + [ 7.7171796, 47.4880298 ], + [ 7.7171794, 47.4880347 ], + [ 7.7171792, 47.4880381 ], + [ 7.7171787, 47.4880444 ], + [ 7.7171786, 47.4880451 ], + [ 7.7171783, 47.4880485 ], + [ 7.7171773, 47.488057 ], + [ 7.7171768, 47.4880603 ], + [ 7.7171756, 47.4880681 ], + [ 7.7171731999999995, 47.4880807 ], + [ 7.7171731, 47.4880813 ], + [ 7.7171718, 47.4880878 ], + [ 7.7171710000000004, 47.4880909 ], + [ 7.7171698, 47.4880962 ], + [ 7.7171676, 47.4881047 ], + [ 7.717167, 47.4881072 ], + [ 7.7171662, 47.48811 ], + [ 7.7171655, 47.4881126 ], + [ 7.7171629, 47.4881218 ], + [ 7.7171627, 47.4881225 ], + [ 7.7171617999999995, 47.4881255 ], + [ 7.7171608, 47.4881286 ], + [ 7.7171576, 47.4881382 ], + [ 7.7171565, 47.4881412 ], + [ 7.7171548, 47.4881459 ], + [ 7.7171518, 47.4881532 ], + [ 7.7171505, 47.4881561 ], + [ 7.717149, 47.4881595 ], + [ 7.7171453, 47.4881676 ], + [ 7.7171424, 47.4881737 ], + [ 7.7171422, 47.4881741 ], + [ 7.7171409, 47.4881767 ], + [ 7.7171357, 47.4881866 ], + [ 7.7171341, 47.4881894 ], + [ 7.7171316, 47.4881937 ], + [ 7.7171289, 47.4881984 ], + [ 7.7171282, 47.4881994 ], + [ 7.7171271, 47.4882013 ], + [ 7.7171265, 47.4882023 ], + [ 7.7171243, 47.4882059 ], + [ 7.7171222, 47.4882092 ], + [ 7.7171204, 47.4882123 ], + [ 7.7171201, 47.4882128 ], + [ 7.7171156, 47.4882198 ], + [ 7.717114, 47.4882223 ], + [ 7.7171077, 47.4882314 ], + [ 7.7171053, 47.4882347 ], + [ 7.7171033, 47.4882374 ], + [ 7.7170959, 47.4882468 ], + [ 7.7170938, 47.4882494 ], + [ 7.7170914, 47.4882523 ], + [ 7.7170895, 47.4882545 ], + [ 7.717088, 47.4882563 ], + [ 7.7170814, 47.4882637 ], + [ 7.717079, 47.4882662 ], + [ 7.7170738, 47.4882716 ], + [ 7.717073, 47.4882725 ], + [ 7.7170705, 47.488275 ], + [ 7.7170669, 47.4882786 ], + [ 7.7170651, 47.4882804 ], + [ 7.7170583, 47.4882869 ], + [ 7.7170556, 47.4882893 ], + [ 7.7170518, 47.4882927 ], + [ 7.7170486, 47.4882956 ], + [ 7.7170458, 47.488298 ], + [ 7.7170411, 47.4883019 ], + [ 7.7170383000000005, 47.4883043 ], + [ 7.717036, 47.4883062 ], + [ 7.7170312, 47.4883102 ], + [ 7.7170246, 47.4883156 ], + [ 7.7170214, 47.4883183 ], + [ 7.7170106, 47.488327 ], + [ 7.7170073, 47.4883296 ], + [ 7.7170042, 47.4883321 ], + [ 7.7170022, 47.4883336 ], + [ 7.7169991, 47.4883361 ], + [ 7.7169958, 47.4883385 ], + [ 7.7169917, 47.4883416 ], + [ 7.7169884, 47.488344 ], + [ 7.7169842, 47.4883471 ], + [ 7.7169774, 47.4883519 ], + [ 7.7169737, 47.4883545 ], + [ 7.7169668, 47.4883593 ], + [ 7.7169643, 47.4883611 ], + [ 7.7169573, 47.4883659 ], + [ 7.7169551, 47.4883674 ], + [ 7.716948, 47.4883721 ], + [ 7.7169452, 47.488374 ], + [ 7.7169381, 47.4883787 ], + [ 7.7169334, 47.4883817 ], + [ 7.7169263, 47.4883862 ], + [ 7.7169209, 47.4883896 ], + [ 7.7169173, 47.4883918 ], + [ 7.7169134, 47.4883942 ], + [ 7.7169104, 47.488396 ], + [ 7.7169023, 47.4884007 ], + [ 7.71689, 47.4884081 ], + [ 7.7168864, 47.4884102 ], + [ 7.7168808, 47.4884135 ], + [ 7.7168794, 47.4884143 ], + [ 7.7168677, 47.4884217 ], + [ 7.7168629, 47.4884246 ], + [ 7.7168561, 47.4884288 ], + [ 7.7168536, 47.4884303 ], + [ 7.7168475999999995, 47.4884338 ], + [ 7.7168262, 47.4884462 ], + [ 7.7168257, 47.4884464 ], + [ 7.7168144, 47.4884535 ], + [ 7.71681, 47.4884562 ], + [ 7.7168032, 47.4884604 ], + [ 7.7168007, 47.4884619 ], + [ 7.7167948, 47.4884653 ], + [ 7.7167735, 47.4884776 ], + [ 7.7167732, 47.4884778 ], + [ 7.7167618000000004, 47.488485 ], + [ 7.7167573, 47.4884878 ], + [ 7.7167505, 47.4884919 ], + [ 7.7167478, 47.4884935 ], + [ 7.7167419, 47.488497 ], + [ 7.7167256, 47.4885064 ], + [ 7.7167239, 47.4885073 ], + [ 7.7167177, 47.4885108 ], + [ 7.7167095, 47.4885158 ], + [ 7.7167084, 47.4885165 ], + [ 7.7167072, 47.4885172 ], + [ 7.7167037, 47.4885193 ], + [ 7.7166999, 47.4885215 ], + [ 7.7166964, 47.4885235 ], + [ 7.7166905, 47.4885269 ], + [ 7.716687, 47.4885288 ], + [ 7.7166808, 47.4885322 ], + [ 7.7166707, 47.4885376 ], + [ 7.7166596, 47.4885439 ], + [ 7.7166536, 47.4885472 ], + [ 7.7166501, 47.4885491 ], + [ 7.7166458, 47.4885514 ], + [ 7.7166366, 47.4885562 ], + [ 7.7166262, 47.4885621 ], + [ 7.7166205, 47.4885652 ], + [ 7.716617, 47.4885671 ], + [ 7.7166128, 47.4885694 ], + [ 7.7166037, 47.4885741 ], + [ 7.7165932999999995, 47.48858 ], + [ 7.7165876, 47.4885832 ], + [ 7.7165841, 47.4885851 ], + [ 7.7165799, 47.4885874 ], + [ 7.7165709, 47.4885921 ], + [ 7.7165606, 47.4885979 ], + [ 7.7165549, 47.4886011 ], + [ 7.7165514, 47.488603 ], + [ 7.7165475, 47.4886051 ], + [ 7.7165385, 47.4886099 ], + [ 7.716528, 47.4886158 ], + [ 7.7165218, 47.4886193 ], + [ 7.7165183, 47.4886212 ], + [ 7.7165134, 47.4886238 ], + [ 7.7164999, 47.4886309 ], + [ 7.716495, 47.4886335 ], + [ 7.7164917, 47.4886353 ], + [ 7.7164881, 47.4886372 ], + [ 7.7164864, 47.4886381 ], + [ 7.7164813, 47.4886408 ], + [ 7.7164777, 47.4886426 ], + [ 7.7164669, 47.4886478 ], + [ 7.7164632, 47.4886496 ], + [ 7.716458, 47.488652 ], + [ 7.7164518, 47.4886548 ], + [ 7.7164492, 47.4886559 ], + [ 7.7164451, 47.4886577 ], + [ 7.7164351, 47.488662 ], + [ 7.7164294, 47.4886644 ], + [ 7.716423, 47.488667 ], + [ 7.7164184, 47.4886689 ], + [ 7.7164146, 47.4886704 ], + [ 7.7164131, 47.488671 ], + [ 7.7164069, 47.4886733 ], + [ 7.716403, 47.4886748 ], + [ 7.7163905, 47.4886796 ], + [ 7.7163854, 47.4886816 ], + [ 7.7163816, 47.488683 ], + [ 7.7163743, 47.4886857 ], + [ 7.7163611, 47.4886903 ], + [ 7.7163552, 47.4886924 ], + [ 7.716352, 47.4886935 ], + [ 7.7163465, 47.4886954 ], + [ 7.7163424, 47.4886968 ], + [ 7.7163402, 47.4886976 ], + [ 7.7163349, 47.4886995 ], + [ 7.7163242, 47.4887037 ], + [ 7.7163183, 47.4887059 ], + [ 7.7163159, 47.4887068 ], + [ 7.7163049, 47.488711 ], + [ 7.7163007, 47.4887127 ], + [ 7.7162969, 47.4887141 ], + [ 7.7162891, 47.4887169 ], + [ 7.716276, 47.4887216 ], + [ 7.7162691, 47.488724 ], + [ 7.7162656, 47.4887252 ], + [ 7.71626, 47.4887272 ], + [ 7.7162544, 47.4887291 ], + [ 7.7162518, 47.48873 ], + [ 7.7162468, 47.4887318 ], + [ 7.7162428, 47.4887331 ], + [ 7.7162407, 47.4887339 ], + [ 7.7162356, 47.4887357 ], + [ 7.7162251, 47.4887398 ], + [ 7.7162189, 47.4887421 ], + [ 7.7162166, 47.488743 ], + [ 7.7162057, 47.4887472 ], + [ 7.7162015, 47.4887488 ], + [ 7.7161977, 47.4887502 ], + [ 7.7161901, 47.488753 ], + [ 7.716177, 47.4887577 ], + [ 7.7161707, 47.4887599 ], + [ 7.7161676, 47.488761 ], + [ 7.7161621, 47.4887629 ], + [ 7.7161575, 47.4887645 ], + [ 7.7161552, 47.4887653 ], + [ 7.7161497, 47.4887673 ], + [ 7.7161390999999995, 47.4887714 ], + [ 7.7161329, 47.4887738 ], + [ 7.7161305, 47.4887747 ], + [ 7.7161196, 47.4887789 ], + [ 7.7161154, 47.4887805 ], + [ 7.7161116, 47.4887819 ], + [ 7.7161037, 47.4887848 ], + [ 7.7160906, 47.4887895 ], + [ 7.7160837, 47.4887919 ], + [ 7.7160803, 47.4887931 ], + [ 7.7160746, 47.4887951 ], + [ 7.7160691, 47.488797 ], + [ 7.7160664, 47.4887979 ], + [ 7.7160614, 47.4887996 ], + [ 7.7160573, 47.4888011 ], + [ 7.7160553, 47.4888017 ], + [ 7.7160502, 47.4888036 ], + [ 7.7160397, 47.4888077 ], + [ 7.7160336, 47.48881 ], + [ 7.7160312, 47.4888109 ], + [ 7.7160202, 47.4888151 ], + [ 7.7160162, 47.4888167 ], + [ 7.7160124, 47.4888181 ], + [ 7.7160049, 47.4888209 ], + [ 7.7159918, 47.4888256 ], + [ 7.7159857, 47.4888277 ], + [ 7.7159826, 47.4888288 ], + [ 7.7159772, 47.4888307 ], + [ 7.7159727, 47.4888323 ], + [ 7.7159704, 47.488833 ], + [ 7.7159649, 47.488835 ], + [ 7.715954, 47.4888393 ], + [ 7.715947, 47.4888419 ], + [ 7.7159442, 47.488843 ], + [ 7.7159392, 47.4888449 ], + [ 7.7159356, 47.4888462 ], + [ 7.7159291, 47.4888487 ], + [ 7.7159226, 47.4888511 ], + [ 7.7159188, 47.4888524 ], + [ 7.7159099, 47.4888555 ], + [ 7.7159084, 47.488856 ], + [ 7.7159056, 47.488857 ], + [ 7.7159006, 47.4888586 ], + [ 7.715894, 47.4888607 ], + [ 7.7158861, 47.4888632 ], + [ 7.7158821, 47.4888644 ], + [ 7.7158728, 47.4888672 ], + [ 7.7158679, 47.4888685 ], + [ 7.7158641, 47.4888696 ], + [ 7.7158584999999995, 47.4888711 ], + [ 7.7158572, 47.4888714 ], + [ 7.7158555, 47.4888719 ], + [ 7.7158534, 47.4888725 ], + [ 7.7158529, 47.4888726 ], + [ 7.7158392, 47.4888765 ], + [ 7.7158249, 47.4888803 ], + [ 7.7158206, 47.4888814 ], + [ 7.7158061, 47.4888855 ], + [ 7.7157925, 47.4888891 ], + [ 7.7157883, 47.4888902 ], + [ 7.7157738, 47.4888943 ], + [ 7.7157734, 47.4888944 ], + [ 7.7157603, 47.488898 ], + [ 7.715756, 47.4888991 ], + [ 7.7157415, 47.4889032 ], + [ 7.7157403, 47.4889036 ], + [ 7.7157273, 47.4889071 ], + [ 7.7157227, 47.4889082 ], + [ 7.7157215, 47.4889086 ], + [ 7.7157209, 47.4889088 ], + [ 7.715719, 47.4889093 ], + [ 7.7157094, 47.488912 ], + [ 7.7157054, 47.4889131 ], + [ 7.7157013, 47.488914199999996 ], + [ 7.7156875, 47.4889177 ], + [ 7.7156836, 47.4889187 ], + [ 7.715679, 47.4889198 ], + [ 7.7156759, 47.4889205 ], + [ 7.7156704, 47.4889217 ], + [ 7.7156645, 47.4889231 ], + [ 7.715663, 47.4889235 ], + [ 7.7156495, 47.4889264 ], + [ 7.7156456, 47.4889272 ], + [ 7.7156374, 47.4889289 ], + [ 7.7156253, 47.4889312 ], + [ 7.7156223, 47.4889317 ], + [ 7.7156122, 47.4889336 ], + [ 7.7156119, 47.4889337 ], + [ 7.7156024, 47.4889353 ], + [ 7.7155933, 47.4889368 ], + [ 7.7155815, 47.4889389 ], + [ 7.7155748, 47.4889401 ], + [ 7.7155663, 47.4889415 ], + [ 7.7155556, 47.4889434 ], + [ 7.7155508, 47.4889442 ], + [ 7.7155428, 47.4889456 ], + [ 7.7155325, 47.4889474 ], + [ 7.7155290999999995, 47.4889481 ], + [ 7.7155207, 47.4889496 ], + [ 7.7155159, 47.4889505 ], + [ 7.715512, 47.4889512 ], + [ 7.7155001, 47.4889533 ], + [ 7.7154956, 47.488954 ], + [ 7.7154839, 47.4889558 ], + [ 7.7154793999999995, 47.4889564 ], + [ 7.7154776, 47.4889567 ], + [ 7.7154753, 47.488957 ], + [ 7.7154618, 47.4889588 ], + [ 7.7154559, 47.4889595 ], + [ 7.7154392, 47.4889616 ], + [ 7.7154314, 47.4889625 ], + [ 7.7154267999999995, 47.488963 ], + [ 7.7154191999999995, 47.4889638 ], + [ 7.715407, 47.4889649 ], + [ 7.7154045, 47.4889652 ], + [ 7.7153984, 47.4889658 ], + [ 7.7153972, 47.4889659 ], + [ 7.7153922, 47.4889663 ], + [ 7.7153848, 47.4889669 ], + [ 7.7153731, 47.4889678 ], + [ 7.7153666, 47.4889685 ], + [ 7.7153639, 47.4889687 ], + [ 7.7153621, 47.4889689 ], + [ 7.7153562, 47.4889694 ], + [ 7.715346, 47.4889704 ], + [ 7.7153408, 47.4889709 ], + [ 7.7153341, 47.4889715 ], + [ 7.7153231, 47.4889727 ], + [ 7.7153175, 47.4889732 ], + [ 7.7153163, 47.4889733 ], + [ 7.7153092, 47.488974 ], + [ 7.7153024, 47.4889746 ], + [ 7.7152989, 47.488975 ], + [ 7.7152975, 47.4889751 ], + [ 7.7152925, 47.4889755 ], + [ 7.7152855, 47.4889761 ], + [ 7.7152735, 47.488977 ], + [ 7.7152665, 47.4889777 ], + [ 7.7152644, 47.4889779 ], + [ 7.7152608, 47.4889782 ], + [ 7.7152542, 47.4889788 ], + [ 7.7152479, 47.4889794 ], + [ 7.7152458, 47.4889796 ], + [ 7.7152438, 47.4889797 ], + [ 7.7152388, 47.4889802 ], + [ 7.7152324, 47.4889807 ], + [ 7.7152211, 47.4889816 ], + [ 7.7152149, 47.4889822 ], + [ 7.7152114, 47.4889825 ], + [ 7.7152103, 47.4889826 ], + [ 7.7152044, 47.4889832 ], + [ 7.7151941, 47.4889842 ], + [ 7.7151889, 47.4889847 ], + [ 7.7151822, 47.4889853 ], + [ 7.7151712, 47.4889865 ], + [ 7.7151648999999995, 47.4889871 ], + [ 7.7151643, 47.4889871 ], + [ 7.7151572, 47.4889878 ], + [ 7.7151503, 47.4889885 ], + [ 7.7151464, 47.4889888 ], + [ 7.7151457, 47.4889889 ], + [ 7.7151406, 47.4889894 ], + [ 7.7151333, 47.48899 ], + [ 7.715122, 47.4889908 ], + [ 7.7151119, 47.4889918 ], + [ 7.7151057, 47.4889923 ], + [ 7.7150978, 47.4889929 ], + [ 7.7150899, 47.4889936 ], + [ 7.7150828, 47.4889942 ], + [ 7.7150777999999995, 47.4889946 ], + [ 7.7150687, 47.4889952 ], + [ 7.7150637, 47.4889954 ], + [ 7.7150574, 47.4889958 ], + [ 7.7150523, 47.488996 ], + [ 7.715048, 47.4889962 ], + [ 7.715035, 47.4889967 ], + [ 7.7150296, 47.4889971 ], + [ 7.7150224, 47.4889976 ], + [ 7.7150107, 47.4889984 ], + [ 7.7150047, 47.4889988 ], + [ 7.7149998, 47.4889992 ], + [ 7.7149947999999995, 47.4889995 ], + [ 7.7149868, 47.489 ], + [ 7.7149818, 47.4890003 ], + [ 7.7149778, 47.4890005 ], + [ 7.7149763, 47.4890005 ], + [ 7.7149713, 47.4890007 ], + [ 7.7149674, 47.4890009 ], + [ 7.7149539, 47.4890014 ], + [ 7.714948, 47.4890018 ], + [ 7.714938, 47.4890025 ], + [ 7.71492, 47.4890034 ], + [ 7.714916, 47.4890037 ], + [ 7.7149118, 47.489004 ], + [ 7.7149069, 47.4890043 ], + [ 7.7148994, 47.4890048 ], + [ 7.7148944, 47.489005 ], + [ 7.7148916, 47.4890052 ], + [ 7.7148893, 47.4890053 ], + [ 7.7148842, 47.4890055 ], + [ 7.7148813, 47.4890056 ], + [ 7.7148692, 47.4890061 ], + [ 7.7148651, 47.4890064 ], + [ 7.7148579, 47.4890069 ], + [ 7.7148443, 47.4890078 ], + [ 7.7148391, 47.4890082 ], + [ 7.7148342, 47.4890085 ], + [ 7.7148292, 47.4890089 ], + [ 7.7148213, 47.4890093 ], + [ 7.7148163, 47.4890096 ], + [ 7.714812, 47.4890098 ], + [ 7.7148111, 47.4890099 ], + [ 7.7148061, 47.4890101 ], + [ 7.7148027, 47.4890102 ], + [ 7.7147897, 47.4890107 ], + [ 7.7147839, 47.4890112 ], + [ 7.7147772, 47.4890116 ], + [ 7.7147652, 47.4890124 ], + [ 7.714759, 47.4890129 ], + [ 7.7147542, 47.4890132 ], + [ 7.7147493, 47.4890136 ], + [ 7.7147418, 47.489014 ], + [ 7.7147368, 47.4890143 ], + [ 7.7147324, 47.4890145 ], + [ 7.7147314, 47.4890146 ], + [ 7.7147264, 47.4890148 ], + [ 7.7147231, 47.4890149 ], + [ 7.7147101, 47.4890154 ], + [ 7.7147043, 47.4890159 ], + [ 7.7146976, 47.4890163 ], + [ 7.7146856, 47.4890171 ], + [ 7.7146794, 47.4890176 ], + [ 7.7146748, 47.4890179 ], + [ 7.7146698, 47.4890182 ], + [ 7.7146621, 47.4890187 ], + [ 7.7146571, 47.489019 ], + [ 7.7146528, 47.4890192 ], + [ 7.7146519, 47.4890192 ], + [ 7.7146469, 47.4890195 ], + [ 7.7146435, 47.4890196 ], + [ 7.7146306, 47.4890201 ], + [ 7.7146248, 47.4890206 ], + [ 7.714618, 47.489021 ], + [ 7.714606, 47.4890218 ], + [ 7.7145998, 47.4890223 ], + [ 7.714595, 47.4890226 ], + [ 7.7145901, 47.4890229 ], + [ 7.7145824, 47.4890234 ], + [ 7.7145774, 47.4890237 ], + [ 7.7145732, 47.4890239 ], + [ 7.7145721, 47.4890239 ], + [ 7.7145671, 47.4890242 ], + [ 7.7145634, 47.4890243 ], + [ 7.7145497, 47.4890248 ], + [ 7.7145448, 47.4890252 ], + [ 7.7145394, 47.4890255 ], + [ 7.7145325, 47.489026 ], + [ 7.7145148, 47.4890269 ], + [ 7.7145131, 47.489027 ], + [ 7.7145069, 47.4890275 ], + [ 7.7145019, 47.4890278 ], + [ 7.7144948, 47.4890282 ], + [ 7.7144898, 47.4890285 ], + [ 7.714487, 47.4890286 ], + [ 7.714485, 47.4890287 ], + [ 7.71448, 47.4890289 ], + [ 7.7144771, 47.489029 ], + [ 7.7144646, 47.4890295 ], + [ 7.7144588, 47.4890299 ], + [ 7.7144522, 47.4890304 ], + [ 7.7144403, 47.4890312 ], + [ 7.7144341, 47.4890316 ], + [ 7.7144294, 47.489032 ], + [ 7.7144245, 47.4890323 ], + [ 7.7144168, 47.4890328 ], + [ 7.7144118, 47.4890331 ], + [ 7.7144074, 47.4890333 ], + [ 7.7144065, 47.4890333 ], + [ 7.7144015, 47.4890335 ], + [ 7.7143981, 47.4890337 ], + [ 7.7143852, 47.4890342 ], + [ 7.7143793, 47.4890346 ], + [ 7.7143727, 47.4890351 ], + [ 7.7143608, 47.4890359 ], + [ 7.7143545, 47.4890363 ], + [ 7.7143499, 47.4890367 ], + [ 7.7143449, 47.489037 ], + [ 7.7143374, 47.4890375 ], + [ 7.7143324, 47.4890377 ], + [ 7.7143277999999995, 47.489038 ], + [ 7.7143273, 47.489038 ], + [ 7.7143222, 47.4890382 ], + [ 7.7143191, 47.4890384 ], + [ 7.7143063, 47.4890389 ], + [ 7.7143006, 47.4890393 ], + [ 7.7142935, 47.4890398 ], + [ 7.7142808, 47.4890406 ], + [ 7.714274, 47.4890411 ], + [ 7.7142678, 47.4890416 ], + [ 7.7142625, 47.4890419 ], + [ 7.7142531, 47.4890424 ], + [ 7.7142477, 47.4890427 ], + [ 7.7142475, 47.4890427 ], + [ 7.7142405, 47.489043 ], + [ 7.714235, 47.4890432 ], + [ 7.7142295, 47.4890433 ], + [ 7.7142241, 47.4890435 ], + [ 7.71422, 47.4890436 ], + [ 7.7142145, 47.4890437 ], + [ 7.7142104, 47.4890437 ], + [ 7.7141994, 47.4890438 ], + [ 7.7141956, 47.4890439 ], + [ 7.7141791, 47.4890439 ], + [ 7.7141776, 47.489044 ], + [ 7.714177, 47.489044 ], + [ 7.7141036, 47.4890441 ], + [ 7.7138582, 47.4890446 ], + [ 7.7138579, 47.4890446 ], + [ 7.7137842, 47.4890448 ], + [ 7.7137681, 47.4890448 ], + [ 7.7137592999999995, 47.4890449 ], + [ 7.7137511, 47.489045 ], + [ 7.7137488, 47.489045 ], + [ 7.7137475, 47.4890451 ], + [ 7.7137375, 47.4890456 ], + [ 7.7137321, 47.4890459 ], + [ 7.7137285, 47.489046 ], + [ 7.7137231, 47.4890463 ], + [ 7.7137174, 47.4890465 ], + [ 7.713712, 47.4890466 ], + [ 7.7137075, 47.4890468 ], + [ 7.713702, 47.4890469 ], + [ 7.7136986, 47.489047 ], + [ 7.7136931, 47.4890471 ], + [ 7.7136895, 47.4890471 ], + [ 7.7136785, 47.4890472 ], + [ 7.7136755, 47.4890473 ], + [ 7.7136645, 47.4890473 ], + [ 7.713663, 47.4890473 ], + [ 7.7136258, 47.4890475 ], + [ 7.7136181, 47.4890475 ], + [ 7.7136115, 47.4890476 ], + [ 7.7136113, 47.4890476 ], + [ 7.7136015, 47.4890482 ], + [ 7.713596, 47.4890485 ], + [ 7.7135925, 47.4890486 ], + [ 7.7135871, 47.4890488 ], + [ 7.7135814, 47.4890491 ], + [ 7.7135759, 47.4890492 ], + [ 7.7135715, 47.4890493 ], + [ 7.713566, 47.4890495 ], + [ 7.7135614, 47.4890496 ], + [ 7.7135503, 47.4890497 ], + [ 7.7135457, 47.4890498 ], + [ 7.7135289, 47.4890499 ], + [ 7.7135264, 47.4890499 ], + [ 7.7135096, 47.48905 ], + [ 7.7135089, 47.48905 ], + [ 7.7135086, 47.48905 ], + [ 7.7133569, 47.4890503 ], + [ 7.7133018, 47.489050399999996 ], + [ 7.7132867, 47.4890505 ], + [ 7.713274, 47.4890506 ], + [ 7.7132692, 47.4890507 ], + [ 7.7132591999999995, 47.4890513 ], + [ 7.7132544, 47.4890515 ], + [ 7.7132506, 47.4890517 ], + [ 7.7132452, 47.4890519 ], + [ 7.7132396, 47.4890521 ], + [ 7.7132341, 47.4890522 ], + [ 7.7132299, 47.4890524 ], + [ 7.7132244, 47.4890525 ], + [ 7.7132201, 47.4890526 ], + [ 7.7132091, 47.4890527 ], + [ 7.7132054, 47.4890528 ], + [ 7.7131742, 47.4890531 ], + [ 7.7131682999999995, 47.4890532 ], + [ 7.713166, 47.4890533 ], + [ 7.7131562, 47.4890538 ], + [ 7.7131514, 47.489054 ], + [ 7.7131473, 47.4890542 ], + [ 7.7131416999999995, 47.4890544 ], + [ 7.7131361, 47.4890546 ], + [ 7.7131305, 47.4890548 ], + [ 7.7131262, 47.4890549 ], + [ 7.7131205, 47.4890551 ], + [ 7.7131173, 47.4890551 ], + [ 7.7131115999999995, 47.4890552 ], + [ 7.7131082, 47.4890553 ], + [ 7.7130969, 47.4890554 ], + [ 7.713094, 47.4890554 ], + [ 7.7130826, 47.4890555 ], + [ 7.7130807, 47.4890555 ], + [ 7.7130636, 47.4890556 ], + [ 7.713063, 47.4890556 ], + [ 7.7130627, 47.4890556 ], + [ 7.7129829999999995, 47.4890557 ], + [ 7.7123671, 47.4890572 ], + [ 7.7123669, 47.4890572 ], + [ 7.7122796000000005, 47.4890573 ], + [ 7.7122588, 47.4890574 ], + [ 7.712246, 47.4890575 ], + [ 7.7122411, 47.4890576 ], + [ 7.7122306, 47.4890582 ], + [ 7.7122257, 47.4890585 ], + [ 7.7122218, 47.4890586 ], + [ 7.7122161, 47.4890589 ], + [ 7.7122104, 47.4890591 ], + [ 7.7122047, 47.4890592 ], + [ 7.7122005, 47.4890593 ], + [ 7.7121948, 47.4890595 ], + [ 7.7121903, 47.4890596 ], + [ 7.712179, 47.4890597 ], + [ 7.7121745, 47.4890598 ], + [ 7.712158, 47.4890599 ], + [ 7.7121555, 47.4890599 ], + [ 7.7121395, 47.48906 ], + [ 7.7121388, 47.48906 ], + [ 7.7121384, 47.48906 ], + [ 7.7120247, 47.4890602 ], + [ 7.712012, 47.4890602 ], + [ 7.7120017, 47.4890604 ], + [ 7.712, 47.4890604 ], + [ 7.7119921, 47.4890609 ], + [ 7.7119842, 47.4890613 ], + [ 7.7119822, 47.4890614 ], + [ 7.711977, 47.4890616 ], + [ 7.7119709, 47.4890618 ], + [ 7.7119657, 47.489062 ], + [ 7.7119609, 47.4890621 ], + [ 7.7119557, 47.4890623 ], + [ 7.7119507, 47.4890624 ], + [ 7.7119402, 47.4890626 ], + [ 7.7119355, 47.4890626 ], + [ 7.7119196, 47.4890627 ], + [ 7.7119169, 47.4890628 ], + [ 7.7118903, 47.4890628 ], + [ 7.7118896, 47.4890629 ], + [ 7.7118892, 47.4890629 ], + [ 7.7118573, 47.4890629 ], + [ 7.7118553, 47.4890629 ], + [ 7.7118433, 47.4890629 ], + [ 7.7118394, 47.4890629 ], + [ 7.711836, 47.4890629 ], + [ 7.7118255, 47.4890628 ], + [ 7.7118199, 47.4890627 ], + [ 7.7118094, 47.4890625 ], + [ 7.7118028, 47.4890624 ], + [ 7.7117976, 47.4890622 ], + [ 7.7117915, 47.489062 ], + [ 7.7117863, 47.4890618 ], + [ 7.7117843, 47.4890618 ], + [ 7.7117764, 47.4890614 ], + [ 7.7117683, 47.4890609 ], + [ 7.7117673, 47.4890609 ], + [ 7.7117603, 47.4890609 ], + [ 7.7117526, 47.4890608 ], + [ 7.7117381, 47.4890608 ], + [ 7.7116339, 47.4890612 ], + [ 7.7116334, 47.4890612 ], + [ 7.7116321, 47.4890612 ], + [ 7.7116164, 47.4890612 ], + [ 7.7116127, 47.4890612 ], + [ 7.7115971, 47.4890611 ], + [ 7.7115906, 47.489061 ], + [ 7.7115802, 47.4890608 ], + [ 7.7115737, 47.4890607 ], + [ 7.7115685, 47.4890605 ], + [ 7.7115624, 47.4890603 ], + [ 7.7115573, 47.4890601 ], + [ 7.7115554, 47.48906 ], + [ 7.7115473, 47.4890597 ], + [ 7.7115393999999995, 47.4890592 ], + [ 7.7115388, 47.4890592 ], + [ 7.7115324, 47.4890591 ], + [ 7.7115203, 47.4890591 ], + [ 7.7115061, 47.4890591 ], + [ 7.7114393, 47.4890593 ], + [ 7.711439, 47.4890593 ], + [ 7.7112734, 47.4890597 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr149", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Munzachberg", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Munzachberg", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Munzachberg", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Munzachberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7637447, 47.3737187 ], + [ 7.7638850999999995, 47.3729767 ], + [ 7.764328, 47.3725791 ], + [ 7.7646095, 47.3723799 ], + [ 7.7649121999999995, 47.3722084 ], + [ 7.7652275, 47.3720636 ], + [ 7.7653593, 47.3719671 ], + [ 7.7655462, 47.3718286 ], + [ 7.7659211, 47.3716267 ], + [ 7.765423, 47.3708697 ], + [ 7.7662116, 47.3706616 ], + [ 7.7662700000000005, 47.3706461 ], + [ 7.7661142, 47.3704802 ], + [ 7.7659761, 47.3700749 ], + [ 7.7654271999999995, 47.3696666 ], + [ 7.7653054, 47.3693562 ], + [ 7.7651275, 47.3689159 ], + [ 7.7658005, 47.36879 ], + [ 7.7662267, 47.3683543 ], + [ 7.7658539, 47.3681402 ], + [ 7.7656677, 47.3679051 ], + [ 7.7651144, 47.3680115 ], + [ 7.7646545, 47.3680966 ], + [ 7.7641383, 47.368193 ], + [ 7.7637059, 47.3682742 ], + [ 7.7632826, 47.3681523 ], + [ 7.7629275, 47.3681927 ], + [ 7.7626335, 47.3681775 ], + [ 7.7621732, 47.368072 ], + [ 7.7619555, 47.3680147 ], + [ 7.7617484, 47.3679976 ], + [ 7.7614491999999995, 47.3679328 ], + [ 7.7610892, 47.3678913 ], + [ 7.7609457, 47.3677666 ], + [ 7.7605305, 47.3676921 ], + [ 7.7600701999999995, 47.3676485 ], + [ 7.7597698, 47.3677521 ], + [ 7.7593492, 47.3678923 ], + [ 7.7590012999999995, 47.3680105 ], + [ 7.758705, 47.3681175 ], + [ 7.7583183, 47.3682538 ], + [ 7.7579993, 47.3683627 ], + [ 7.7577743, 47.368443 ], + [ 7.7579053, 47.3685763 ], + [ 7.7574969, 47.3688833 ], + [ 7.7572145, 47.3691065 ], + [ 7.7570403, 47.3692432 ], + [ 7.7576600000000004, 47.3694291 ], + [ 7.7572344, 47.3700211 ], + [ 7.756952, 47.3706294 ], + [ 7.756821, 47.3709731 ], + [ 7.7567394, 47.3713467 ], + [ 7.7566762, 47.3716365 ], + [ 7.7565459, 47.3716456 ], + [ 7.7564946, 47.3718696 ], + [ 7.7563706, 47.3720717 ], + [ 7.7564611, 47.372432 ], + [ 7.7565787, 47.3728765 ], + [ 7.7567984, 47.3732466 ], + [ 7.756659, 47.37346 ], + [ 7.756807, 47.3737953 ], + [ 7.7569111, 47.374038 ], + [ 7.7570647, 47.3742303 ], + [ 7.7570797, 47.3745531 ], + [ 7.7571706, 47.3748625 ], + [ 7.7569775, 47.3751981 ], + [ 7.7570135, 47.3755433 ], + [ 7.7576389, 47.3755674 ], + [ 7.7578713, 47.3755762 ], + [ 7.7586261, 47.3757195 ], + [ 7.7595668, 47.3757674 ], + [ 7.7606006, 47.3757145 ], + [ 7.7609715999999995, 47.3755009 ], + [ 7.7615691, 47.3754005 ], + [ 7.7621905, 47.3752462 ], + [ 7.7627483999999995, 47.3749481 ], + [ 7.7631755, 47.3748146 ], + [ 7.7639456, 47.3745708 ], + [ 7.7638625999999995, 47.3741765 ], + [ 7.7637447, 47.3737187 ] + ], + [ + [ 7.7618767, 47.372386 ], + [ 7.761851, 47.372397 ], + [ 7.7618392, 47.3723851 ], + [ 7.7618227, 47.3723694 ], + [ 7.7618056, 47.3723541 ], + [ 7.7617879, 47.3723391 ], + [ 7.7617695, 47.3723245 ], + [ 7.7617505, 47.3723103 ], + [ 7.7617309, 47.3722964 ], + [ 7.7617161, 47.3722855 ], + [ 7.7617015, 47.3722746 ], + [ 7.761687, 47.3722635 ], + [ 7.7616727, 47.3722524 ], + [ 7.7616610999999995, 47.37224 ], + [ 7.7616503, 47.3722272 ], + [ 7.7616404, 47.3722141 ], + [ 7.7616314, 47.3722008 ], + [ 7.7616232, 47.3721872 ], + [ 7.7616159, 47.3721733 ], + [ 7.7616096, 47.3721592 ], + [ 7.7616041, 47.372145 ], + [ 7.7615996, 47.3721306 ], + [ 7.761596, 47.3721161 ], + [ 7.7615934, 47.3721015 ], + [ 7.7615917, 47.3720868 ], + [ 7.7615862, 47.372053 ], + [ 7.7615815, 47.372019 ], + [ 7.7615777, 47.3719851 ], + [ 7.7615747, 47.371951 ], + [ 7.7615726, 47.371917 ], + [ 7.7615712, 47.3718829 ], + [ 7.7615708, 47.3718488 ], + [ 7.7615711, 47.3718148 ], + [ 7.7615725, 47.3717884 ], + [ 7.7615746, 47.371762 ], + [ 7.7615774, 47.3717357 ], + [ 7.7615809, 47.3717094 ], + [ 7.7615851, 47.3716831 ], + [ 7.76159, 47.3716569 ], + [ 7.7616277, 47.3714036 ], + [ 7.761629, 47.3713975 ], + [ 7.7616303, 47.3713914 ], + [ 7.7616314, 47.3713853 ], + [ 7.7616325, 47.3713791 ], + [ 7.7616352, 47.3713607 ], + [ 7.7616372, 47.3713422 ], + [ 7.7616384, 47.3713237 ], + [ 7.761639, 47.3713052 ], + [ 7.7616387, 47.3712867 ], + [ 7.7616378, 47.3712681 ], + [ 7.7616361, 47.3712496 ], + [ 7.761634, 47.3712362 ], + [ 7.7615832000000005, 47.371301 ], + [ 7.7614975, 47.3713674 ], + [ 7.7614921, 47.371371 ], + [ 7.7614875, 47.3713749 ], + [ 7.7613103, 47.371546 ], + [ 7.7613057, 47.37155 ], + [ 7.7613005, 47.3715536 ], + [ 7.7612948, 47.371557 ], + [ 7.7612886, 47.3715598 ], + [ 7.761282, 47.3715623 ], + [ 7.7612751, 47.3715643 ], + [ 7.7612679, 47.3715658 ], + [ 7.7612606, 47.3715668 ], + [ 7.7611782, 47.3715751 ], + [ 7.7610224, 47.3715643 ], + [ 7.7606475, 47.3714095 ], + [ 7.7604815, 47.371415999999996 ], + [ 7.7594892, 47.371348 ], + [ 7.7590785, 47.3712621 ], + [ 7.7589329, 47.3712212 ], + [ 7.7588126, 47.3713187 ], + [ 7.758655, 47.371367 ], + [ 7.7585768999999996, 47.3713572 ], + [ 7.7584140999999995, 47.3713907 ], + [ 7.7582572, 47.3714339 ], + [ 7.7582082, 47.3714486 ], + [ 7.7580324, 47.3714222 ], + [ 7.7579911, 47.3714114 ], + [ 7.7579495, 47.371401 ], + [ 7.7579077, 47.371391 ], + [ 7.7578657, 47.3713814 ], + [ 7.7578236, 47.3713722 ], + [ 7.7578023, 47.3713674 ], + [ 7.7577814, 47.3713621 ], + [ 7.7577607, 47.3713563 ], + [ 7.7577404, 47.37135 ], + [ 7.7577204, 47.3713432 ], + [ 7.7577008, 47.3713359 ], + [ 7.7576816, 47.3713282 ], + [ 7.7576628, 47.37132 ], + [ 7.7576444, 47.3713113 ], + [ 7.7575702, 47.3712749 ], + [ 7.7576263999999995, 47.3712314 ], + [ 7.7576529, 47.3712037 ], + [ 7.7577589, 47.3709844 ], + [ 7.7577728, 47.3709668 ], + [ 7.7577874, 47.3709495 ], + [ 7.7578025, 47.3709324 ], + [ 7.7578183, 47.3709155 ], + [ 7.7578347, 47.3708989 ], + [ 7.7578473, 47.3708867 ], + [ 7.7578603, 47.3708747 ], + [ 7.7578736, 47.3708628 ], + [ 7.7578872, 47.370851 ], + [ 7.7578996, 47.3708401 ], + [ 7.7579115, 47.3708288 ], + [ 7.7579228, 47.3708173 ], + [ 7.7579334, 47.3708055 ], + [ 7.7579435, 47.3707934 ], + [ 7.7579493, 47.3707855 ], + [ 7.7579544, 47.3707773 ], + [ 7.7579587, 47.3707689 ], + [ 7.7579623, 47.3707604 ], + [ 7.757965, 47.3707517 ], + [ 7.7579668999999996, 47.370743 ], + [ 7.757968, 47.3707341 ], + [ 7.7579742, 47.3706508 ], + [ 7.7579761, 47.3706313 ], + [ 7.7579789, 47.3706118 ], + [ 7.7579827, 47.3705924 ], + [ 7.7579873, 47.3705731 ], + [ 7.7579929, 47.3705539 ], + [ 7.7579994, 47.3705348 ], + [ 7.7580067, 47.3705159 ], + [ 7.7580149, 47.3704972 ], + [ 7.758024, 47.3704786 ], + [ 7.758034, 47.3704603 ], + [ 7.7580448, 47.3704422 ], + [ 7.7580565, 47.3704243 ], + [ 7.7580732999999995, 47.3704002 ], + [ 7.7580909, 47.3703765 ], + [ 7.7581092, 47.370353 ], + [ 7.7581282, 47.3703297 ], + [ 7.7581479, 47.3703067 ], + [ 7.7581683, 47.370284 ], + [ 7.7581895, 47.3702617 ], + [ 7.7582113, 47.3702396 ], + [ 7.7582338, 47.3702178 ], + [ 7.7582608, 47.3701926 ], + [ 7.7582885, 47.3701677 ], + [ 7.7583166, 47.3701432 ], + [ 7.7583454, 47.3701189 ], + [ 7.7583677, 47.3701006 ], + [ 7.7583907, 47.3700828 ], + [ 7.7584143, 47.3700653 ], + [ 7.7584385000000005, 47.3700482 ], + [ 7.7584633, 47.3700315 ], + [ 7.7584886, 47.3700152 ], + [ 7.7585145, 47.3699993 ], + [ 7.7585409, 47.3699838 ], + [ 7.7585589, 47.3699731 ], + [ 7.7585763, 47.3699621 ], + [ 7.7585931, 47.3699506 ], + [ 7.7586093, 47.3699387 ], + [ 7.7586249, 47.3699265 ], + [ 7.7586399, 47.3699139 ], + [ 7.7586543, 47.369901 ], + [ 7.758668, 47.3698877 ], + [ 7.7586809, 47.3698741 ], + [ 7.7586932, 47.3698603 ], + [ 7.7587048, 47.3698461 ], + [ 7.7587225, 47.369823 ], + [ 7.7587395, 47.3697996 ], + [ 7.7587557, 47.3697759 ], + [ 7.7587712, 47.369752 ], + [ 7.7587859, 47.3697279 ], + [ 7.7587998, 47.3697036 ], + [ 7.7588129, 47.3696791 ], + [ 7.7588252, 47.3696544 ], + [ 7.7588831, 47.3695342 ], + [ 7.759036, 47.3693761 ], + [ 7.7591139, 47.3693272 ], + [ 7.75912, 47.3693238 ], + [ 7.7591265, 47.3693208 ], + [ 7.7591334, 47.3693182 ], + [ 7.7591407, 47.3693161 ], + [ 7.7591483, 47.3693145 ], + [ 7.759156, 47.3693135 ], + [ 7.7591639, 47.3693129 ], + [ 7.7591718, 47.3693129 ], + [ 7.7591797, 47.3693134 ], + [ 7.7591874, 47.3693145 ], + [ 7.7592491, 47.3693251 ], + [ 7.7592552, 47.3693264 ], + [ 7.759261, 47.3693283 ], + [ 7.7592665, 47.3693306 ], + [ 7.7592714, 47.3693334 ], + [ 7.7592758, 47.3693366 ], + [ 7.7592796, 47.3693402 ], + [ 7.7592827, 47.369344 ], + [ 7.759285, 47.3693481 ], + [ 7.7593212, 47.3694257 ], + [ 7.7594504, 47.3694597 ], + [ 7.7596012, 47.3694806 ], + [ 7.7596373, 47.3694944 ], + [ 7.7596568, 47.3694844 ], + [ 7.7596757, 47.369474 ], + [ 7.7596939, 47.369463 ], + [ 7.7597114, 47.3694515 ], + [ 7.7597282, 47.3694395 ], + [ 7.7597442, 47.3694271 ], + [ 7.7597594999999995, 47.3694142 ], + [ 7.759774, 47.3694009 ], + [ 7.7597877, 47.3693872 ], + [ 7.7598005, 47.3693732 ], + [ 7.7598125, 47.3693587 ], + [ 7.7598234999999995, 47.369344 ], + [ 7.7598337, 47.369329 ], + [ 7.7598429, 47.3693137 ], + [ 7.7598513, 47.3692981 ], + [ 7.7598586, 47.3692824 ], + [ 7.759865, 47.3692664 ], + [ 7.7598704, 47.3692503 ], + [ 7.7598748, 47.369234 ], + [ 7.7598783000000005, 47.3692176 ], + [ 7.7600553, 47.3690728 ], + [ 7.760047, 47.3690046 ], + [ 7.7600837, 47.3689717 ], + [ 7.7601723, 47.3690552 ], + [ 7.760297, 47.3690576 ], + [ 7.760537, 47.3690739 ], + [ 7.7607401, 47.3690979 ], + [ 7.7611358, 47.3691641 ], + [ 7.7613765, 47.3691968 ], + [ 7.7617683, 47.3692237 ], + [ 7.7619758999999995, 47.36929 ], + [ 7.7621851, 47.369331 ], + [ 7.7623447, 47.3693229 ], + [ 7.7624727, 47.3692705 ], + [ 7.7625929, 47.3692934 ], + [ 7.7630719, 47.3694466 ], + [ 7.7632692, 47.3694849 ], + [ 7.763297, 47.3695005 ], + [ 7.763575, 47.3696549 ], + [ 7.7639621, 47.3697465 ], + [ 7.7641331000000005, 47.3698349 ], + [ 7.7641632, 47.3698499 ], + [ 7.7640597, 47.3700398 ], + [ 7.7640541, 47.3700525 ], + [ 7.7640479, 47.370065 ], + [ 7.7640408999999995, 47.3700773 ], + [ 7.7640331, 47.3700894 ], + [ 7.7640247, 47.3701012 ], + [ 7.7640156000000005, 47.3701129 ], + [ 7.7637797, 47.3704024 ], + [ 7.76321, 47.3708054 ], + [ 7.7627889, 47.3711059 ], + [ 7.7626298, 47.3712195 ], + [ 7.7625668999999995, 47.3712674 ], + [ 7.7625553, 47.3712768 ], + [ 7.7625442, 47.3712864 ], + [ 7.7625339, 47.3712964 ], + [ 7.7625242, 47.3713067 ], + [ 7.7625152, 47.3713173 ], + [ 7.7625069, 47.3713281 ], + [ 7.7624994, 47.3713392 ], + [ 7.7624926, 47.3713505 ], + [ 7.7624865, 47.371362 ], + [ 7.7624812, 47.3713737 ], + [ 7.7624768, 47.3713855 ], + [ 7.7623165, 47.3718519 ], + [ 7.7623058, 47.3718789 ], + [ 7.7622958, 47.3719061 ], + [ 7.7622867, 47.3719334 ], + [ 7.7622784, 47.3719609 ], + [ 7.762271, 47.3719884 ], + [ 7.7622645, 47.3720161 ], + [ 7.7622602, 47.3720354 ], + [ 7.7622561, 47.3720546 ], + [ 7.7622523999999995, 47.3720739 ], + [ 7.7622489, 47.3720933 ], + [ 7.7622449, 47.3721169 ], + [ 7.7622414, 47.3721406 ], + [ 7.7622382, 47.3721644 ], + [ 7.7622355, 47.3721881 ], + [ 7.7622333, 47.3722 ], + [ 7.7622313, 47.372212 ], + [ 7.7622297, 47.3722239 ], + [ 7.7622283, 47.3722359 ], + [ 7.7622273, 47.3722468 ], + [ 7.7622265, 47.3722577 ], + [ 7.7622259, 47.3722686 ], + [ 7.7622255, 47.3722795 ], + [ 7.7622267, 47.3723219 ], + [ 7.7621915999999995, 47.3723229 ], + [ 7.7621326, 47.3723309 ], + [ 7.7620838, 47.3723309 ], + [ 7.7618767, 47.372386 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns350", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Holznacht", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Holznacht", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Holznacht", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Holznacht", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6362271, 47.5166712 ], + [ 7.6363029000000004, 47.5166304 ], + [ 7.6364365, 47.5165583 ], + [ 7.6364889, 47.51653 ], + [ 7.6367656, 47.5163754 ], + [ 7.6371324, 47.5161661 ], + [ 7.637371, 47.5159746 ], + [ 7.6375604, 47.5158521 ], + [ 7.6377934, 47.5158595 ], + [ 7.6382588, 47.515485 ], + [ 7.6384051, 47.5153423 ], + [ 7.638389, 47.5153319 ], + [ 7.6384173, 47.5153118 ], + [ 7.6384287, 47.5153192 ], + [ 7.6384661, 47.5152828 ], + [ 7.6385114, 47.5152385 ], + [ 7.6385752, 47.5151763 ], + [ 7.6385936, 47.5151457 ], + [ 7.6385849, 47.5150361 ], + [ 7.6385762, 47.5149265 ], + [ 7.6385718, 47.5149156 ], + [ 7.6385594999999995, 47.5148946 ], + [ 7.6385442, 47.5148745 ], + [ 7.6385257, 47.5148557 ], + [ 7.6385045, 47.5148383 ], + [ 7.6384807, 47.5148224 ], + [ 7.6384676, 47.5148154 ], + [ 7.6384546, 47.5148084 ], + [ 7.6384264, 47.5147962 ], + [ 7.6383966, 47.5147861 ], + [ 7.6383654, 47.5147783 ], + [ 7.6383331, 47.5147726 ], + [ 7.6383166, 47.5147709 ], + [ 7.6383, 47.5147693 ], + [ 7.6382042, 47.514762 ], + [ 7.6380848, 47.514745 ], + [ 7.6379688, 47.5147199 ], + [ 7.637913, 47.5147032 ], + [ 7.6378572, 47.5146865 ], + [ 7.6377516, 47.5146455 ], + [ 7.6376526, 47.5145972 ], + [ 7.6375619, 47.5145421 ], + [ 7.63748, 47.5144809 ], + [ 7.6374725, 47.514472 ], + [ 7.6374679, 47.5144653 ], + [ 7.6373025, 47.514453 ], + [ 7.6371437, 47.5144964 ], + [ 7.6361482, 47.5156375 ], + [ 7.6360141, 47.5157912 ], + [ 7.6357603, 47.5159496 ], + [ 7.635464, 47.5161009 ], + [ 7.6351783, 47.5162594 ], + [ 7.6348926, 47.5164108 ], + [ 7.6350729, 47.5164176 ], + [ 7.6351894, 47.5164031 ], + [ 7.6353377, 47.5163669 ], + [ 7.6354649, 47.5163667 ], + [ 7.6355712, 47.516424 ], + [ 7.6356456999999995, 47.5164957 ], + [ 7.6362451, 47.5166825 ], + [ 7.6362271, 47.5166712 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr072", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Rothalle", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Rothalle", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Rothalle", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Rothalle", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.2061936, 46.2448747 ], + [ 6.2061509, 46.2449175 ], + [ 6.2061032, 46.2448946 ], + [ 6.2054973, 46.2444846 ], + [ 6.2040906, 46.2440939 ], + [ 6.2025755, 46.2441056 ], + [ 6.2025025, 46.2441272 ], + [ 6.2015455, 46.2439842 ], + [ 6.2000526, 46.2441733 ], + [ 6.1994714, 46.2444336 ], + [ 6.1984215, 46.2443535 ], + [ 6.1978864, 46.2444607 ], + [ 6.1977613, 46.2444589 ], + [ 6.1965798, 46.2447114 ], + [ 6.1965116, 46.2447348 ], + [ 6.1964955, 46.2447403 ], + [ 6.196429, 46.2447631 ], + [ 6.1960382, 46.2449695 ], + [ 6.1955099, 46.2452103 ], + [ 6.1953981, 46.2453075 ], + [ 6.1952471, 46.2453872 ], + [ 6.1950748, 46.2455885 ], + [ 6.1947468, 46.2458735 ], + [ 6.194604, 46.2461383 ], + [ 6.1944885, 46.2462733 ], + [ 6.1944589, 46.2464075 ], + [ 6.1943182, 46.2466684 ], + [ 6.1942888, 46.247152 ], + [ 6.1940305, 46.2478376 ], + [ 6.1941019, 46.248681 ], + [ 6.1941832, 46.2488252 ], + [ 6.1942056, 46.2490932 ], + [ 6.194648, 46.24988 ], + [ 6.1946999, 46.2499416 ], + [ 6.1947501, 46.2500011 ], + [ 6.1947756, 46.2500315 ], + [ 6.1957825, 46.2508193 ], + [ 6.1971474, 46.2512798 ], + [ 6.1986624, 46.251343 ], + [ 6.1988497, 46.2512981 ], + [ 6.1996192, 46.2512676 ], + [ 6.1996517, 46.2512588 ], + [ 6.1996399, 46.2512968 ], + [ 6.199051, 46.2518877 ], + [ 6.1987314, 46.2529171 ], + [ 6.1990039, 46.253953 ], + [ 6.1998272, 46.2548376 ], + [ 6.200378, 46.2551018 ], + [ 6.2010552, 46.2558295 ], + [ 6.2023039, 46.2564282 ], + [ 6.2025193, 46.2564604 ], + [ 6.202524, 46.2564627 ], + [ 6.2025319, 46.2564638 ], + [ 6.2017903, 46.2571925 ], + [ 6.2017872, 46.2571974 ], + [ 6.2017821, 46.2572053 ], + [ 6.2017624, 46.2572363 ], + [ 6.2017479, 46.2572591 ], + [ 6.2017128, 46.2572941 ], + [ 6.2013894, 46.2583225 ], + [ 6.2016576, 46.259358399999996 ], + [ 6.2017718, 46.2595601 ], + [ 6.201884, 46.2598759 ], + [ 6.2019349, 46.2599661 ], + [ 6.2020154, 46.2601085 ], + [ 6.2020159, 46.2601095 ], + [ 6.2020193, 46.2601155 ], + [ 6.2020778, 46.2602191 ], + [ 6.2025446, 46.2607246 ], + [ 6.2028944, 46.2611039 ], + [ 6.2028951, 46.2611043 ], + [ 6.2028956, 46.2611048 ], + [ 6.2036413, 46.2614655 ], + [ 6.2041383, 46.2617061 ], + [ 6.2041389, 46.2617062 ], + [ 6.2041394, 46.2617064 ], + [ 6.2041756, 46.261712 ], + [ 6.2042058, 46.2617264 ], + [ 6.2054165, 46.2619072 ], + [ 6.2052793, 46.2619246 ], + [ 6.2040039, 46.2624957 ], + [ 6.2031406, 46.2633619 ], + [ 6.202821, 46.2643913 ], + [ 6.2030937, 46.2654271 ], + [ 6.2039172, 46.2663117 ], + [ 6.2051661, 46.2669105 ], + [ 6.2066504, 46.2671321 ], + [ 6.208144, 46.2669429 ], + [ 6.2094195, 46.2663718 ], + [ 6.2102827, 46.2655055 ], + [ 6.2106022, 46.2644761 ], + [ 6.2103294, 46.2634403 ], + [ 6.2095058, 46.2625557 ], + [ 6.2082569, 46.261957 ], + [ 6.2070456, 46.2617762 ], + [ 6.2071647, 46.2617613 ], + [ 6.2073988, 46.2616977 ], + [ 6.2075013, 46.2616584 ], + [ 6.2075973, 46.2616438 ], + [ 6.2076433, 46.2616314 ], + [ 6.2076602, 46.2616239 ], + [ 6.2076846, 46.2616202 ], + [ 6.2077959, 46.26159 ], + [ 6.2078795, 46.2615579 ], + [ 6.207881, 46.2615575 ], + [ 6.2078947, 46.261552 ], + [ 6.2086992, 46.261243 ], + [ 6.2087367, 46.2612177 ], + [ 6.2089389, 46.2611374 ], + [ 6.2097575, 46.2605109 ], + [ 6.2102564, 46.2597394 ], + [ 6.2103244, 46.2592999 ], + [ 6.2104949, 46.2587546 ], + [ 6.2102254, 46.2577195 ], + [ 6.2101904, 46.2576578 ], + [ 6.2101467, 46.2575808 ], + [ 6.2101416, 46.2575718 ], + [ 6.2101351, 46.2575604 ], + [ 6.2100847, 46.2574714 ], + [ 6.2100552, 46.2574193 ], + [ 6.2094379, 46.2566907 ], + [ 6.208526, 46.2561303 ], + [ 6.207409, 46.255793 ], + [ 6.2069386, 46.2557615 ], + [ 6.2076397, 46.2550579 ], + [ 6.2077096, 46.2548327 ], + [ 6.2077123, 46.2548298 ], + [ 6.2080318, 46.2538005 ], + [ 6.2077591, 46.2527646 ], + [ 6.2071547, 46.2521152 ], + [ 6.2069385, 46.251294 ], + [ 6.2073025, 46.2509287 ], + [ 6.207622, 46.2498993 ], + [ 6.2074761, 46.249345 ], + [ 6.2075068, 46.249312 ], + [ 6.2088394, 46.2495111 ], + [ 6.2103325, 46.2493219 ], + [ 6.2116076, 46.2487507 ], + [ 6.2118968, 46.2484603 ], + [ 6.2125679, 46.248956 ], + [ 6.2136361, 46.249363 ], + [ 6.2142668, 46.249446 ], + [ 6.214281, 46.24945 ], + [ 6.2142962, 46.2494499 ], + [ 6.2148335, 46.2495207 ], + [ 6.2157364, 46.2494406 ], + [ 6.2157972, 46.2494403 ], + [ 6.2158215, 46.2494331 ], + [ 6.2160424, 46.2494135 ], + [ 6.2171442, 46.2490521 ], + [ 6.2171948, 46.2490281 ], + [ 6.2172873, 46.2489845 ], + [ 6.2173184, 46.2489698 ], + [ 6.2173185, 46.2489697 ], + [ 6.2173319, 46.2489634 ], + [ 6.2174905, 46.2488885 ], + [ 6.2179833, 46.2485668 ], + [ 6.2183776, 46.2483094 ], + [ 6.2187121, 46.2478859 ], + [ 6.218963, 46.2475683 ], + [ 6.2190988, 46.2470701 ], + [ 6.2191893, 46.246738 ], + [ 6.2191441, 46.246493 ], + [ 6.2194814, 46.2463004 ], + [ 6.2201362, 46.2455884 ], + [ 6.2204418, 46.2447709 ], + [ 6.2203682, 46.2439279 ], + [ 6.2199227, 46.243142 ], + [ 6.2199209, 46.2431399 ], + [ 6.2199208, 46.2431398 ], + [ 6.2199016, 46.2431172 ], + [ 6.2198423, 46.2430473 ], + [ 6.2198091, 46.2429893 ], + [ 6.2197679, 46.2429411 ], + [ 6.219714, 46.2428959 ], + [ 6.2197098, 46.242891 ], + [ 6.2196855, 46.2428722 ], + [ 6.2189912, 46.2422911 ], + [ 6.2188715, 46.2422386 ], + [ 6.2187007, 46.2421056 ], + [ 6.2184021, 46.2420055 ], + [ 6.2175013, 46.2416091 ], + [ 6.2163193, 46.2413995 ], + [ 6.215102, 46.2414543 ], + [ 6.213969, 46.2417679 ], + [ 6.2138951, 46.2417985 ], + [ 6.2127697, 46.2425015 ], + [ 6.2121166, 46.2434496 ], + [ 6.2120347, 46.2444988 ], + [ 6.2121110999999996, 46.2446496 ], + [ 6.212, 46.244761 ], + [ 6.2117206, 46.2449441 ], + [ 6.2117123, 46.2449546 ], + [ 6.2116937, 46.2449346 ], + [ 6.2104452, 46.244336 ], + [ 6.2089615, 46.2441144 ], + [ 6.2074686, 46.2443036 ], + [ 6.2061936, 46.2448747 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-2", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5920163, 46.7914444 ], + [ 7.5922398, 46.7911811 ], + [ 7.5926269, 46.790709 ], + [ 7.592817, 46.7904732 ], + [ 7.5931995, 46.7900016 ], + [ 7.5935491, 46.7895059 ], + [ 7.5937221, 46.7892634 ], + [ 7.5940641, 46.7887788 ], + [ 7.5943919, 46.7882877 ], + [ 7.5948646, 46.7875221 ], + [ 7.5951583, 46.7870282 ], + [ 7.5953067, 46.7867668 ], + [ 7.5955966, 46.7862888 ], + [ 7.5948277, 46.786172 ], + [ 7.5941352, 46.7860702 ], + [ 7.5934331, 46.7859641 ], + [ 7.592656, 46.7858481 ], + [ 7.5921175, 46.7857675 ], + [ 7.5916773, 46.785938 ], + [ 7.5904872, 46.7857467 ], + [ 7.5904346, 46.7857498 ], + [ 7.5903935, 46.7857523 ], + [ 7.588897, 46.7858426 ], + [ 7.5874045, 46.7858006 ], + [ 7.5873666, 46.7857996 ], + [ 7.5874152, 46.7859356 ], + [ 7.5874401, 46.7860699 ], + [ 7.5874547, 46.7862791 ], + [ 7.5874354, 46.7864074 ], + [ 7.587401, 46.786518 ], + [ 7.5873586, 46.7866925 ], + [ 7.5873405, 46.7867827 ], + [ 7.5871079, 46.7871467 ], + [ 7.587042, 46.7872171 ], + [ 7.5869734, 46.7873236 ], + [ 7.5868391, 46.7874287 ], + [ 7.5867541, 46.7874672 ], + [ 7.5865796, 46.7875244 ], + [ 7.5861852, 46.7876849 ], + [ 7.5860757, 46.7877135 ], + [ 7.5858459, 46.7877545 ], + [ 7.5857334, 46.7877846 ], + [ 7.5856801, 46.7877969 ], + [ 7.5855765, 46.7878207 ], + [ 7.5850923, 46.7879223 ], + [ 7.5849353, 46.7879427 ], + [ 7.5849273, 46.7879549 ], + [ 7.5849262, 46.7879963 ], + [ 7.5848618, 46.7880228 ], + [ 7.584825, 46.7880451 ], + [ 7.5847937, 46.7880702 ], + [ 7.5847715, 46.7881001 ], + [ 7.584757, 46.7881357 ], + [ 7.5846662, 46.7883914 ], + [ 7.5850248, 46.7887326 ], + [ 7.5847622, 46.7889301 ], + [ 7.5843626, 46.7893689 ], + [ 7.5843746, 46.7893228 ], + [ 7.5843015, 46.7893617 ], + [ 7.5841326, 46.7899806 ], + [ 7.5840056, 46.7904459 ], + [ 7.5839975, 46.790501 ], + [ 7.5839967, 46.7905577 ], + [ 7.5840312, 46.7908427 ], + [ 7.5840299, 46.7908959 ], + [ 7.5840198, 46.790949499999996 ], + [ 7.5838947999999995, 46.7914194 ], + [ 7.5838843, 46.7914505 ], + [ 7.583866, 46.7914794 ], + [ 7.5838417, 46.7915047 ], + [ 7.5838136, 46.7915233 ], + [ 7.5837676, 46.791542 ], + [ 7.5837437, 46.7916318 ], + [ 7.5838211, 46.7916235 ], + [ 7.5838876, 46.7916077 ], + [ 7.5839109, 46.7915942 ], + [ 7.5839403, 46.7915771 ], + [ 7.5839739999999995, 46.7915337 ], + [ 7.5840481, 46.7912495 ], + [ 7.5851516, 46.7914279 ], + [ 7.5864261, 46.7916351 ], + [ 7.5875734999999995, 46.7918217 ], + [ 7.588849, 46.7920295 ], + [ 7.5899761, 46.7922131 ], + [ 7.5911076, 46.7923986 ], + [ 7.5911951, 46.7923229 ], + [ 7.591641, 46.7918805 ], + [ 7.5918446, 46.7916466 ], + [ 7.5920163, 46.7914444 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VBS_16", + "country" : "CHE", + "name" : [ + { + "text" : "VBS_16 Uttigen", + "lang" : "de-CH" + }, + { + "text" : "VBS_16 Uttigen", + "lang" : "fr-CH" + }, + { + "text" : "VBS_16 Uttigen", + "lang" : "it-CH" + }, + { + "text" : "VBS_16 Uttigen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "regulationExemption" : "YES", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Eidgenössisches Departement für Verteidigung, Bevölkerungsschutz und Sport (VBS)", + "lang" : "de-CH" + }, + { + "text" : "Département fédéral de la défense, de la protection de la population et des sports (DDPS)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento federale della difesa, della protezione della popolazione e dello sport (DDPS)", + "lang" : "it-CH" + }, + { + "text" : "Federal Department of Defence, Civil Protection and Sport (DDPS)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Lageverfolgungszentrum der Armee LVZ A", + "lang" : "de-CH" + }, + { + "text" : "Centre de suivi de la situation de l’armée, CSS A", + "lang" : "fr-CH" + }, + { + "text" : "Centro di monitoraggio della situazione dell’esercito, Centro mon sit Es", + "lang" : "it-CH" + }, + { + "text" : "Joint Operation Center, JOC", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vtg.admin.ch/en/joint-operations-command", + "email" : "lvz.op@vtg.admin.ch", + "phone" : "+41 58 464 96 43", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.299099, 46.4695939 ], + [ 7.3042104, 46.3904434 ], + [ 7.3035431, 46.3901594 ], + [ 7.3005552, 46.3890322 ], + [ 7.2974864, 46.3880146 ], + [ 7.2943449, 46.3871095 ], + [ 7.2911394, 46.3863193 ], + [ 7.2878785, 46.3856462 ], + [ 7.2845713, 46.385092 ], + [ 7.2812268, 46.3846582 ], + [ 7.2778541, 46.3843461 ], + [ 7.2744624, 46.3841564 ], + [ 7.2722921, 46.3841139 ], + [ 7.270177, 46.3841514 ], + [ 7.2631565, 46.3845006 ], + [ 7.2620496, 46.3845244 ], + [ 7.260892, 46.384628 ], + [ 7.2575448, 46.3850518 ], + [ 7.2542342, 46.3855961 ], + [ 7.2509692, 46.3862595 ], + [ 7.2487322, 46.3868035 ], + [ 7.2470276, 46.3873529 ], + [ 7.2379165, 46.3903956 ], + [ 7.2344766, 46.391836 ], + [ 7.2328259, 46.3926166 ], + [ 7.2303585, 46.3939193 ], + [ 7.2274952, 46.3957739 ], + [ 7.2253659, 46.3969805 ], + [ 7.2250513, 46.3971859 ], + [ 7.2227017, 46.3988895 ], + [ 7.220484, 46.4006758 ], + [ 7.2184042999999996, 46.40254 ], + [ 7.2164684, 46.4044768 ], + [ 7.2146815, 46.4064811 ], + [ 7.2139588, 46.4073954 ], + [ 7.2120937, 46.4099572 ], + [ 7.2094706, 46.4151694 ], + [ 7.2132305, 46.4491806 ], + [ 7.2163377, 46.4531448 ], + [ 7.2197107, 46.4558501 ], + [ 7.2225641, 46.4583744 ], + [ 7.2293132, 46.4634246 ], + [ 7.2329507, 46.4654104 ], + [ 7.2364184, 46.4671856 ], + [ 7.2382527, 46.4679668 ], + [ 7.2389076, 46.468214 ], + [ 7.2425705, 46.4692057 ], + [ 7.2445797, 46.4701908 ], + [ 7.2474614, 46.4710213 ], + [ 7.2506713, 46.4718127 ], + [ 7.2527674, 46.4722455 ], + [ 7.2566191, 46.4728274 ], + [ 7.262556, 46.4736576 ], + [ 7.2633779, 46.4737336 ], + [ 7.2743242, 46.4735742 ], + [ 7.2813568, 46.4730445 ], + [ 7.286306, 46.4725116 ], + [ 7.2915174, 46.4712591 ], + [ 7.2963165, 46.4704653 ], + [ 7.2972708, 46.4701935 ], + [ 7.299099, 46.4695939 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSEA001", + "country" : "CHE", + "name" : [ + { + "text" : "LSEA Gstaad-Grund", + "lang" : "de-CH" + }, + { + "text" : "LSEA Gstaad-Grund", + "lang" : "fr-CH" + }, + { + "text" : "LSEA Gstaad-Grund", + "lang" : "it-CH" + }, + { + "text" : "LSEA Gstaad-Grund", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "startDateTime" : "2024-12-01T00:00:00+01:00", + "endDateTime" : "2025-04-30T00:00:00+02:00" + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swiss Helicopter Basis Gsteigwiler", + "lang" : "de-CH" + }, + { + "text" : "Swiss Helicopter Basis Gsteigwiler", + "lang" : "fr-CH" + }, + { + "text" : "Swiss Helicopter Basis Gsteigwiler", + "lang" : "it-CH" + }, + { + "text" : "Swiss Helicopter Basis Gsteigwiler", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Marc Schallenberg", + "lang" : "de-CH" + }, + { + "text" : "Marc Schallenberg", + "lang" : "fr-CH" + }, + { + "text" : "Marc Schallenberg", + "lang" : "it-CH" + }, + { + "text" : "Marc Schallenberg", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swisshelicopter.ch/en/about-us/helicopter-bases/gstaad-grund", + "email" : "gstaad@swisshelicopter.ch", + "phone" : "0041337551321 / 0041338289000", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.3272079, 47.3811538 ], + [ 8.3272051, 47.381185 ], + [ 8.3271572, 47.3812086 ], + [ 8.3270888, 47.381214 ], + [ 8.32706, 47.3811876 ], + [ 8.3270048, 47.381229 ], + [ 8.326994, 47.3812887 ], + [ 8.3269601, 47.3813148 ], + [ 8.3268754, 47.3813383 ], + [ 8.3267624, 47.3814063 ], + [ 8.3266367, 47.3815333 ], + [ 8.3265494, 47.381649 ], + [ 8.3265044, 47.3817787 ], + [ 8.3265387, 47.3818227 ], + [ 8.3265901, 47.3818387 ], + [ 8.3266392, 47.3818749 ], + [ 8.3266905, 47.3818887 ], + [ 8.3267692, 47.3818649 ], + [ 8.3268335, 47.3818138 ], + [ 8.3270374, 47.3815358 ], + [ 8.327145, 47.3814339 ], + [ 8.3272488, 47.3813533 ], + [ 8.327282199999999, 47.3813176 ], + [ 8.3273034, 47.3812322 ], + [ 8.3273613, 47.3811663 ], + [ 8.3274565, 47.3810976 ], + [ 8.3275181, 47.3810571 ], + [ 8.3275589, 47.3809735 ], + [ 8.3276216, 47.3808236 ], + [ 8.3276713, 47.3806909 ], + [ 8.3277394, 47.3805685 ], + [ 8.3278049, 47.3804133 ], + [ 8.3278098, 47.3803324 ], + [ 8.3277916, 47.3802776 ], + [ 8.3277296, 47.3802565 ], + [ 8.3276412, 47.380256 ], + [ 8.3276094, 47.3802027 ], + [ 8.3276014, 47.3801461 ], + [ 8.3275395, 47.3801387 ], + [ 8.3274638, 47.3801641 ], + [ 8.327454, 47.3802224 ], + [ 8.327484, 47.3803099 ], + [ 8.327476, 47.380393 ], + [ 8.327406, 47.3805481 ], + [ 8.3273437, 47.3806967 ], + [ 8.3273429, 47.3807294 ], + [ 8.3273629, 47.3807617 ], + [ 8.3273564, 47.3808001 ], + [ 8.3273059, 47.3808357 ], + [ 8.3272004, 47.380944 ], + [ 8.3271574, 47.3810213 ], + [ 8.3271554, 47.381076 ], + [ 8.3271702, 47.3811289 ], + [ 8.3272079, 47.3811538 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "KTAG505", + "country" : "CHE", + "name" : [ + { + "text" : "Alte Reuss", + "lang" : "de-CH" + }, + { + "text" : "Alte Reuss", + "lang" : "fr-CH" + }, + { + "text" : "Alte Reuss", + "lang" : "it-CH" + }, + { + "text" : "Alte Reuss", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "regulationExemption" : "NO", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "schedule" : [ + { + "day" : [ "ANY" ], + "startTime" : "00:00:00.00+01:00", + "endTime" : "00:00:00.00+01:00" + } + ] + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Aargau", + "lang" : "de-CH" + }, + { + "text" : "Canton d'Argovie", + "lang" : "fr-CH" + }, + { + "text" : "Canton Argovia", + "lang" : "it-CH" + }, + { + "text" : "Canton of Aargau", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Departement Bau, Verkehr und Umwelt (BVU)", + "lang" : "de-CH" + }, + { + "text" : "Département de la construction, des transports et de l'environnement (CTE)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento delle costruzioni, dei trasporti e dell'ambiente (CTA)", + "lang" : "it-CH" + }, + { + "text" : "Department of Civil Engineering,Transport and Environment (CTE)", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Sektion Gewässernutzung", + "lang" : "de-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "fr-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "it-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ag.ch/de/verwaltung/bvu/umwelt-natur-landschaft/hochwasserschutz-gewaesser/gewaessernutzung", + "email" : "alg@ag.ch", + "phone" : "0041 62 835 34 50", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7102803, 47.4463177 ], + [ 7.7103745, 47.4463432 ], + [ 7.7107229, 47.4463332 ], + [ 7.7110522, 47.4462387 ], + [ 7.7111418, 47.4461755 ], + [ 7.7109932, 47.4460256 ], + [ 7.7109318, 47.4459703 ], + [ 7.7108084, 47.44586 ], + [ 7.7103133, 47.4454951 ], + [ 7.7101154, 47.4453363 ], + [ 7.7099107, 47.4451673 ], + [ 7.709862, 47.4449367 ], + [ 7.7098211, 47.4447048 ], + [ 7.7100209, 47.4446849 ], + [ 7.7101815, 47.4446181 ], + [ 7.7104523, 47.4445394 ], + [ 7.7106786, 47.4444737 ], + [ 7.7108661, 47.4443282 ], + [ 7.7111389, 47.4441933 ], + [ 7.7111428, 47.4440008 ], + [ 7.7109044, 47.4440076 ], + [ 7.710801, 47.4440157 ], + [ 7.7106892, 47.4440266 ], + [ 7.7106083, 47.4440385 ], + [ 7.7105043, 47.4440441 ], + [ 7.7104435, 47.444044 ], + [ 7.7103764, 47.4440383 ], + [ 7.7103009, 47.4440255 ], + [ 7.7102455, 47.4440189 ], + [ 7.7101922, 47.4440166 ], + [ 7.7101752999999995, 47.444016 ], + [ 7.7101382, 47.4440257 ], + [ 7.7100959, 47.4440384 ], + [ 7.7100124999999995, 47.4440676 ], + [ 7.7099816, 47.4440766 ], + [ 7.7098997, 47.4441045 ], + [ 7.7097898, 47.4441441 ], + [ 7.7097309, 47.4441665 ], + [ 7.7096671, 47.444189 ], + [ 7.7096271, 47.4442025 ], + [ 7.7095934, 47.4442161 ], + [ 7.7095205, 47.4442489 ], + [ 7.7094605, 47.4442756 ], + [ 7.7094241, 47.4442932 ], + [ 7.7093765, 47.4443173 ], + [ 7.7093489, 47.4443325 ], + [ 7.7092988, 47.4443608 ], + [ 7.70921, 47.4444088 ], + [ 7.7091652, 47.4444269 ], + [ 7.7091365, 47.4444405 ], + [ 7.7091035, 47.4444588 ], + [ 7.7090528, 47.4444807 ], + [ 7.7090498, 47.4444815 ], + [ 7.7090472, 47.4444827 ], + [ 7.7090449, 47.4444842 ], + [ 7.7090431, 47.444486 ], + [ 7.7090421, 47.4444876 ], + [ 7.7090414, 47.4444892 ], + [ 7.7090411, 47.4444909 ], + [ 7.7090413, 47.4444927 ], + [ 7.7090414, 47.4445065 ], + [ 7.7090623, 47.4445188 ], + [ 7.7090927, 47.4445814 ], + [ 7.7092027, 47.4448083 ], + [ 7.7092483, 47.4452377 ], + [ 7.7092678, 47.4454281 ], + [ 7.7092925, 47.445472 ], + [ 7.7093772, 47.4456233 ], + [ 7.7096875, 47.4458225 ], + [ 7.7099103, 47.4459236 ], + [ 7.7101469, 47.4460917 ], + [ 7.7102803, 47.4463177 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns357", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Riedbach", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Riedbach", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Riedbach", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Riedbach", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4347222, 46.2780555 ], + [ 7.4672222, 46.2333333 ], + [ 7.3973924, 46.2011874 ], + [ 7.2391013, 46.1722385 ], + [ 7.2328631, 46.1714641 ], + [ 7.2265266, 46.1714041 ], + [ 7.2202603, 46.1720602 ], + [ 7.2142307, 46.1734149 ], + [ 7.2085978, 46.1754323 ], + [ 7.2035115, 46.1780588 ], + [ 7.199107, 46.1812245 ], + [ 7.1955015, 46.1848454 ], + [ 7.192791, 46.1888252 ], + [ 7.1910478, 46.193058 ], + [ 7.1903184, 46.1974314 ], + [ 7.1906225, 46.2018289 ], + [ 7.1919523, 46.2061335 ], + [ 7.1942725, 46.2102308 ], + [ 7.1975217, 46.2140116 ], + [ 7.2016135, 46.2173753 ], + [ 7.2064391, 46.2202322 ], + [ 7.2118701, 46.2225064 ], + [ 7.2177618, 46.2241373 ], + [ 7.3474372, 46.2516699 ], + [ 7.4347222, 46.2780555 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 120, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "CTR0013", + "country" : "CHE", + "name" : [ + { + "text" : "CTR SION", + "lang" : "de-CH" + }, + { + "text" : "CTR SION", + "lang" : "fr-CH" + }, + { + "text" : "CTR SION", + "lang" : "it-CH" + }, + { + "text" : "CTR SION", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only permitted from an altitude of 120 m above ground with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Skyguide Special Flight Office", + "lang" : "de-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "it-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "en-GB" + } + ], + "siteURL" : "https://skyguide.ch/services/special-flights", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7198233, 47.4733975 ], + [ 7.7196736999999995, 47.4735192 ], + [ 7.7193760000000005, 47.4737615 ], + [ 7.7193748, 47.4737625 ], + [ 7.7196972, 47.4740078 ], + [ 7.7199063, 47.474074 ], + [ 7.7199063, 47.4740748 ], + [ 7.7199061, 47.4740777 ], + [ 7.7199058, 47.4740814 ], + [ 7.7199057, 47.4740821 ], + [ 7.7199054, 47.4740851 ], + [ 7.7199048, 47.474089 ], + [ 7.7199043, 47.4740924 ], + [ 7.7199036, 47.474096 ], + [ 7.7199028, 47.4740997 ], + [ 7.7199019, 47.4741033 ], + [ 7.7199013999999995, 47.4741047 ], + [ 7.7199009, 47.4741061 ], + [ 7.7199003, 47.4741075 ], + [ 7.7198996, 47.4741088 ], + [ 7.7198988, 47.4741102 ], + [ 7.719898, 47.4741115 ], + [ 7.7198971, 47.4741128 ], + [ 7.7198962, 47.474114 ], + [ 7.7198951000000005, 47.4741153 ], + [ 7.7198941, 47.4741165 ], + [ 7.7198929, 47.4741177 ], + [ 7.7198917, 47.4741189 ], + [ 7.7198975, 47.4741216 ], + [ 7.7199131, 47.4741289 ], + [ 7.7199109, 47.4741311 ], + [ 7.7199042, 47.4741376 ], + [ 7.7199089, 47.4741393 ], + [ 7.7199325, 47.474148 ], + [ 7.7200239, 47.4741817 ], + [ 7.7200928, 47.4742035 ], + [ 7.720103, 47.4742107 ], + [ 7.7201132, 47.4742179 ], + [ 7.7201235, 47.474223 ], + [ 7.7201321, 47.4742307 ], + [ 7.7201417, 47.4742307 ], + [ 7.7201467, 47.4742306 ], + [ 7.72016, 47.4742363 ], + [ 7.7202061, 47.4742812 ], + [ 7.7202912999999995, 47.4743703 ], + [ 7.720343, 47.4744173 ], + [ 7.7204295, 47.4744594 ], + [ 7.7204452, 47.4744891 ], + [ 7.7204983, 47.4745205 ], + [ 7.7205423, 47.4745421 ], + [ 7.7205879, 47.4745592 ], + [ 7.7206613, 47.4745704 ], + [ 7.7206667, 47.4745723 ], + [ 7.7206722, 47.4745742 ], + [ 7.7207278, 47.474607 ], + [ 7.7207358, 47.47461 ], + [ 7.7207747, 47.47463 ], + [ 7.7207864, 47.4746415 ], + [ 7.7208277, 47.4746658 ], + [ 7.7208844, 47.4747255 ], + [ 7.7209441, 47.4747799 ], + [ 7.7210066, 47.4748083 ], + [ 7.7210349, 47.4748117 ], + [ 7.7211012, 47.4748116 ], + [ 7.7211193, 47.4748116 ], + [ 7.7211648, 47.4748059 ], + [ 7.7211663, 47.4748057 ], + [ 7.7212882, 47.4747969 ], + [ 7.7216065, 47.4747883 ], + [ 7.7219137, 47.4748054 ], + [ 7.7221419000000004, 47.4748048 ], + [ 7.7222472, 47.4748105 ], + [ 7.7223258999999995, 47.4747687 ], + [ 7.7223863, 47.4746205 ], + [ 7.722448, 47.4746253 ], + [ 7.7225789, 47.474646 ], + [ 7.7227023, 47.4746749 ], + [ 7.7227718, 47.4746874 ], + [ 7.7228259, 47.4746996 ], + [ 7.7228351, 47.4747017 ], + [ 7.7228443, 47.4747038 ], + [ 7.7228788, 47.4747115 ], + [ 7.7229089, 47.4747262 ], + [ 7.7229388, 47.4747407 ], + [ 7.7229558, 47.474749 ], + [ 7.7229837, 47.474773 ], + [ 7.7229905, 47.4747788 ], + [ 7.7229973, 47.4747847 ], + [ 7.7229984, 47.4747856 ], + [ 7.7229986, 47.4747884 ], + [ 7.7230056, 47.4748092 ], + [ 7.7230215, 47.4747859 ], + [ 7.7230694, 47.4747153 ], + [ 7.7231911, 47.4747759 ], + [ 7.7234493, 47.474885 ], + [ 7.723457, 47.4748866 ], + [ 7.7234648, 47.4748881 ], + [ 7.7236361, 47.4748469 ], + [ 7.7237319, 47.4749697 ], + [ 7.7239706, 47.47509 ], + [ 7.7240179, 47.4750056 ], + [ 7.724023, 47.4749964 ], + [ 7.7241696, 47.4747348 ], + [ 7.7241710999999995, 47.4747321 ], + [ 7.7241792, 47.4747174 ], + [ 7.7241873, 47.4747026 ], + [ 7.724021, 47.4746576 ], + [ 7.7236525, 47.4745521 ], + [ 7.723433, 47.4744888 ], + [ 7.723216, 47.4744216 ], + [ 7.7230016, 47.4743507 ], + [ 7.7228175, 47.4742893 ], + [ 7.7226313, 47.4742308 ], + [ 7.7224431, 47.4741754 ], + [ 7.722156, 47.4740825 ], + [ 7.7218047, 47.473965 ], + [ 7.7214573, 47.4738422 ], + [ 7.721114, 47.4737144 ], + [ 7.7209885, 47.4736629 ], + [ 7.7208663, 47.4736078 ], + [ 7.7207476, 47.4735493 ], + [ 7.7206797, 47.473514 ], + [ 7.7206114, 47.4734791 ], + [ 7.7205425, 47.4734446 ], + [ 7.7202561, 47.4732967 ], + [ 7.7202058000000005, 47.4732709 ], + [ 7.7200668, 47.4731994 ], + [ 7.7198575, 47.4733697 ], + [ 7.7198233, 47.4733975 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr148", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Gstöck", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Gstöck", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Gstöck", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Gstöck", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.0330772, 46.1571482 ], + [ 6.0330918, 46.1571504 ], + [ 6.033295, 46.1579336 ], + [ 6.0336465, 46.1583138 ], + [ 6.0334092, 46.1590718 ], + [ 6.0336781, 46.160108 ], + [ 6.0344972, 46.1609939 ], + [ 6.0357419, 46.1615945 ], + [ 6.0358836, 46.1616159 ], + [ 6.0362926, 46.1620582 ], + [ 6.0375373, 46.1626587 ], + [ 6.0390181, 46.1628826 ], + [ 6.0405094, 46.1626956 ], + [ 6.0417842, 46.1621263 ], + [ 6.0426484, 46.1612614 ], + [ 6.0429705, 46.1602325 ], + [ 6.0427014, 46.1591962 ], + [ 6.0418821, 46.1583104 ], + [ 6.0412541, 46.1580075 ], + [ 6.0411905, 46.1577623 ], + [ 6.040747, 46.1572828 ], + [ 6.0408505, 46.1569522 ], + [ 6.040809, 46.1567923 ], + [ 6.0414684, 46.1564979 ], + [ 6.0423325, 46.1556329 ], + [ 6.0426545, 46.154604 ], + [ 6.0423854, 46.1535678 ], + [ 6.0415663, 46.152682 ], + [ 6.0403217, 46.1520814 ], + [ 6.0388413, 46.1518576 ], + [ 6.0373502, 46.1520445 ], + [ 6.0365744, 46.152391 ], + [ 6.0361775, 46.1521995 ], + [ 6.034697, 46.1519756 ], + [ 6.033206, 46.1521625 ], + [ 6.0321931, 46.1526148 ], + [ 6.0316205, 46.1523384 ], + [ 6.0301401, 46.1521145 ], + [ 6.0299534, 46.1521379 ], + [ 6.0301015, 46.151713 ], + [ 6.0300086, 46.1508709 ], + [ 6.0295457, 46.15009 ], + [ 6.0295445, 46.1500887 ], + [ 6.0294984, 46.1500361 ], + [ 6.0294975, 46.1500351 ], + [ 6.02871, 46.1493916 ], + [ 6.0276748, 46.1489488 ], + [ 6.0264934, 46.1487502 ], + [ 6.0252815, 46.1488152 ], + [ 6.0241578, 46.1491374 ], + [ 6.0239984, 46.1492051 ], + [ 6.0228891, 46.1499145 ], + [ 6.0222521, 46.1508641 ], + [ 6.0221834, 46.1519108 ], + [ 6.0226935, 46.1528967 ], + [ 6.0227416, 46.1529523 ], + [ 6.023526, 46.1536018 ], + [ 6.0245618, 46.1540501 ], + [ 6.0257466, 46.1542528 ], + [ 6.0263578, 46.1542212 ], + [ 6.0261877, 46.1547641 ], + [ 6.0264564, 46.1558004 ], + [ 6.0272754, 46.1566863 ], + [ 6.0285199, 46.157287 ], + [ 6.0300005, 46.1575109 ], + [ 6.0314917, 46.1573241 ], + [ 6.0325046, 46.1568718 ], + [ 6.0330772, 46.1571482 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-9", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.4383595, 46.8534141 ], + [ 8.4372361, 46.8531293 ], + [ 8.4367074, 46.8529832 ], + [ 8.4364794, 46.8524222 ], + [ 8.4357925, 46.8518756 ], + [ 8.4354065, 46.851769 ], + [ 8.4349676, 46.8517766 ], + [ 8.4342687, 46.8515678 ], + [ 8.4330635, 46.8510928 ], + [ 8.4328631, 46.850833 ], + [ 8.4325269, 46.850724 ], + [ 8.4322079, 46.8507701 ], + [ 8.4311867, 46.8506371 ], + [ 8.430977, 46.850569 ], + [ 8.4306378, 46.8505581 ], + [ 8.4304611, 46.8504169 ], + [ 8.4299983, 46.850226 ], + [ 8.4276257, 46.8506062 ], + [ 8.4272473, 46.8507825 ], + [ 8.4265806, 46.8512742 ], + [ 8.4254172, 46.851381 ], + [ 8.4251478, 46.8513631 ], + [ 8.4237522, 46.8516095 ], + [ 8.4234194, 46.8515073 ], + [ 8.4230208, 46.8516425 ], + [ 8.4225488, 46.851698 ], + [ 8.4222332, 46.851783 ], + [ 8.4218907, 46.8517698 ], + [ 8.4212327, 46.851878 ], + [ 8.420827, 46.8518558 ], + [ 8.420189, 46.8519823 ], + [ 8.4200632, 46.8521468 ], + [ 8.4194932, 46.8522321 ], + [ 8.4160622, 46.8514257 ], + [ 8.4153465, 46.8509963 ], + [ 8.4137403, 46.8505997 ], + [ 8.4126756, 46.8511196 ], + [ 8.411613299999999, 46.8517735 ], + [ 8.4105731, 46.8523015 ], + [ 8.4096446, 46.8529291 ], + [ 8.4083883, 46.8536599 ], + [ 8.4072305, 46.8544401 ], + [ 8.4062422, 46.8551435 ], + [ 8.4062224, 46.8551517 ], + [ 8.4061498, 46.8552071 ], + [ 8.4060289, 46.8552673 ], + [ 8.4060085, 46.8552978 ], + [ 8.4059231, 46.8553475 ], + [ 8.4058209, 46.8553946 ], + [ 8.4057152, 46.8554762 ], + [ 8.4055671, 46.8555467 ], + [ 8.4054294, 46.855607 ], + [ 8.4052348, 46.8556577 ], + [ 8.4051389, 46.8557062 ], + [ 8.4050199, 46.8557519 ], + [ 8.4049287, 46.8558291 ], + [ 8.4049138, 46.8559317 ], + [ 8.4049426, 46.8560136 ], + [ 8.4050255, 46.8560663 ], + [ 8.4051529, 46.856133 ], + [ 8.4052744, 46.8562229 ], + [ 8.4053115, 46.8563005 ], + [ 8.4053297, 46.8563739 ], + [ 8.4053332, 46.8564561 ], + [ 8.4053184, 46.8565659 ], + [ 8.4053174, 46.856625 ], + [ 8.4053168, 46.856713 ], + [ 8.4052912, 46.8568056 ], + [ 8.4051856, 46.8569002 ], + [ 8.4051174, 46.8569672 ], + [ 8.4050301, 46.8570242 ], + [ 8.4049198, 46.8570871 ], + [ 8.404872, 46.8571193 ], + [ 8.4048056, 46.8571674 ], + [ 8.4047308, 46.8572214 ], + [ 8.4046369, 46.8572583 ], + [ 8.4045993, 46.8572774 ], + [ 8.4044596, 46.8573435 ], + [ 8.4043683, 46.8574077 ], + [ 8.4042985, 46.857505 ], + [ 8.4042366, 46.8575675 ], + [ 8.404139, 46.8576405 ], + [ 8.4040625, 46.8577118 ], + [ 8.4039792, 46.8577884 ], + [ 8.4039521, 46.8578486 ], + [ 8.4038789, 46.8579042 ], + [ 8.4038842, 46.8579561 ], + [ 8.403764, 46.8580355 ], + [ 8.4037381, 46.8580825 ], + [ 8.4037653, 46.8581067 ], + [ 8.4038283, 46.8581449 ], + [ 8.4038825, 46.8581923 ], + [ 8.4039283, 46.8582621 ], + [ 8.4038905, 46.8583062 ], + [ 8.4037929, 46.8583713 ], + [ 8.4037492, 46.8584166 ], + [ 8.4036955, 46.8584889 ], + [ 8.4036493, 46.8585413 ], + [ 8.4035712, 46.8585671 ], + [ 8.4035273, 46.8586016 ], + [ 8.4034624, 46.8586345 ], + [ 8.4033476, 46.8586553 ], + [ 8.4032694, 46.8586757 ], + [ 8.4032523, 46.8587441 ], + [ 8.4032348, 46.8588277 ], + [ 8.4031132, 46.8588449 ], + [ 8.4030478, 46.8589779 ], + [ 8.4029828, 46.8591283 ], + [ 8.4029137, 46.8592392 ], + [ 8.40282, 46.8593074 ], + [ 8.4025764, 46.8594187 ], + [ 8.4025066, 46.8594218 ], + [ 8.4024533, 46.8594456 ], + [ 8.4023245, 46.8594516 ], + [ 8.4023233, 46.8594885 ], + [ 8.4023421, 46.8595387 ], + [ 8.4022781, 46.859565 ], + [ 8.4021712, 46.8595954 ], + [ 8.4021957, 46.8596616 ], + [ 8.4020831, 46.859676 ], + [ 8.4021007, 46.8597582 ], + [ 8.4020795, 46.859778 ], + [ 8.4019094, 46.8598939 ], + [ 8.4018497, 46.8599807 ], + [ 8.4016209, 46.8600423 ], + [ 8.4015636, 46.860087 ], + [ 8.4013556, 46.8600179 ], + [ 8.4011707, 46.8600108 ], + [ 8.4009604, 46.8599896 ], + [ 8.4008854, 46.8600247 ], + [ 8.4009047, 46.8601657 ], + [ 8.4009644, 46.8602171 ], + [ 8.4009538, 46.8603266 ], + [ 8.4009847, 46.8604127 ], + [ 8.4010413, 46.8605217 ], + [ 8.4008699, 46.8605635 ], + [ 8.4008204, 46.8606129 ], + [ 8.4004993, 46.8607423 ], + [ 8.4004897, 46.8609094 ], + [ 8.4003377, 46.8610979 ], + [ 8.4001398, 46.8613012 ], + [ 8.4001583, 46.8613932 ], + [ 8.4001002, 46.8614311 ], + [ 8.4000942, 46.8615694 ], + [ 8.4000528, 46.8615986 ], + [ 8.4000531, 46.8616187 ], + [ 8.399995, 46.8616538 ], + [ 8.3999365, 46.8619077 ], + [ 8.3999102, 46.8620808 ], + [ 8.3998071, 46.8621853 ], + [ 8.3998209, 46.8622486 ], + [ 8.3989776, 46.8639472 ], + [ 8.3989705, 46.8639744 ], + [ 8.3986165, 46.8646752 ], + [ 8.3985981, 46.8647118 ], + [ 8.3984709, 46.864894 ], + [ 8.3984336, 46.8649474 ], + [ 8.3983084, 46.865127 ], + [ 8.3982157, 46.8652598 ], + [ 8.3974478, 46.8663602 ], + [ 8.3972574, 46.8666331 ], + [ 8.3972355, 46.8666636 ], + [ 8.3972506, 46.8667051 ], + [ 8.3972259, 46.8667408 ], + [ 8.3972389, 46.8667858 ], + [ 8.397259, 46.8668128 ], + [ 8.3972185, 46.8668516 ], + [ 8.397225, 46.8668989 ], + [ 8.3972307, 46.8669453 ], + [ 8.3972625, 46.8669835 ], + [ 8.3971861, 46.8670389 ], + [ 8.3971941, 46.8670609 ], + [ 8.3971445, 46.8671208 ], + [ 8.3971198, 46.8671532 ], + [ 8.3970801, 46.8672133 ], + [ 8.3970417, 46.8672594 ], + [ 8.3970395, 46.8673029 ], + [ 8.3970255, 46.867375 ], + [ 8.3969728, 46.8673957 ], + [ 8.3969413, 46.8674403 ], + [ 8.3969713, 46.8674763 ], + [ 8.3969351, 46.8675288 ], + [ 8.3969469, 46.8675655 ], + [ 8.3969089, 46.8676099 ], + [ 8.3968705, 46.867637 ], + [ 8.3968462, 46.8676464 ], + [ 8.3968367, 46.8676896 ], + [ 8.3968124, 46.8677198 ], + [ 8.396776299999999, 46.8677622 ], + [ 8.3967091, 46.8678202 ], + [ 8.396641, 46.8678839 ], + [ 8.3966197, 46.867913 ], + [ 8.396579299999999, 46.867973 ], + [ 8.3965653, 46.8680111 ], + [ 8.396556499999999, 46.8680667 ], + [ 8.3965491, 46.8681217 ], + [ 8.3965433, 46.868171 ], + [ 8.396561, 46.8682404 ], + [ 8.3965484, 46.868271 ], + [ 8.3965322, 46.8683125 ], + [ 8.396542, 46.8683471 ], + [ 8.3965253, 46.8683959 ], + [ 8.3965022, 46.8684322 ], + [ 8.3965002, 46.8684849 ], + [ 8.3964634, 46.8685332 ], + [ 8.3964685, 46.8686158 ], + [ 8.3964782, 46.8686444 ], + [ 8.3964776, 46.8686566 ], + [ 8.3964697, 46.8687244 ], + [ 8.3964474, 46.868777 ], + [ 8.396463, 46.8688308 ], + [ 8.3964391, 46.8688786 ], + [ 8.3964316, 46.86898 ], + [ 8.3963748, 46.8690779 ], + [ 8.3963412, 46.8691591 ], + [ 8.3962766, 46.8692607 ], + [ 8.3962243, 46.8693328 ], + [ 8.3962092, 46.8693713 ], + [ 8.3961447, 46.8694379 ], + [ 8.3961218, 46.8695663 ], + [ 8.3961283, 46.8696725 ], + [ 8.395058, 46.8707845 ], + [ 8.3949778, 46.8708679 ], + [ 8.394986, 46.870894 ], + [ 8.3953272, 46.870943 ], + [ 8.3959039, 46.8710368 ], + [ 8.3959378, 46.8710472 ], + [ 8.396047, 46.8710473 ], + [ 8.396155, 46.8710552 ], + [ 8.396172, 46.8710533 ], + [ 8.3962994, 46.8710825 ], + [ 8.3963585, 46.8710878 ], + [ 8.3965595, 46.8711313 ], + [ 8.3966441, 46.8711516 ], + [ 8.3967374, 46.8711568 ], + [ 8.3968909, 46.8711917 ], + [ 8.3969009, 46.8712165 ], + [ 8.3972857, 46.8712875 ], + [ 8.39755, 46.87133 ], + [ 8.3977339, 46.8713361 ], + [ 8.3978378, 46.871362 ], + [ 8.3979407, 46.8713715 ], + [ 8.3980845, 46.8714004 ], + [ 8.3982248, 46.8714334 ], + [ 8.3983543, 46.8714693 ], + [ 8.398508, 46.8715051 ], + [ 8.3986942, 46.8715519 ], + [ 8.3995777, 46.8718521 ], + [ 8.3996527, 46.8718874 ], + [ 8.3997466, 46.8719198 ], + [ 8.3999534, 46.8720151 ], + [ 8.400097, 46.8720452 ], + [ 8.4008053, 46.872326 ], + [ 8.4008661, 46.8723413 ], + [ 8.4009941, 46.8723325 ], + [ 8.4011213, 46.8723223 ], + [ 8.4012335, 46.8723297 ], + [ 8.4013958, 46.8723419 ], + [ 8.4014205, 46.8723119 ], + [ 8.4022538, 46.8723762 ], + [ 8.4023398, 46.8723521 ], + [ 8.4024031, 46.8723445 ], + [ 8.4025005, 46.8723452 ], + [ 8.4026532, 46.8723632 ], + [ 8.4027099, 46.8723088 ], + [ 8.4027575, 46.8723121 ], + [ 8.4027843, 46.8723139 ], + [ 8.4028472, 46.8723257 ], + [ 8.40292, 46.872321 ], + [ 8.4029274, 46.8723 ], + [ 8.402982, 46.8722793 ], + [ 8.4030378, 46.8722286 ], + [ 8.4031319, 46.8722511 ], + [ 8.403119, 46.8723005 ], + [ 8.4031077, 46.8723612 ], + [ 8.4031828, 46.8723517 ], + [ 8.4032286, 46.8723337 ], + [ 8.4033329, 46.8723852 ], + [ 8.4034304, 46.8724043 ], + [ 8.4034864, 46.872416 ], + [ 8.4035825, 46.872421 ], + [ 8.4036675, 46.8724242 ], + [ 8.4037314, 46.8724391 ], + [ 8.4037812, 46.8724472 ], + [ 8.4038312, 46.8724673 ], + [ 8.403846099999999, 46.8724982 ], + [ 8.4038881, 46.8725233 ], + [ 8.4039363, 46.8725304 ], + [ 8.4040238, 46.8725219 ], + [ 8.4040537, 46.8725308 ], + [ 8.4041023, 46.8725376 ], + [ 8.4041206, 46.8725491 ], + [ 8.4040788, 46.8726056 ], + [ 8.40407, 46.8726243 ], + [ 8.4040828, 46.8726412 ], + [ 8.4041313, 46.8726974 ], + [ 8.4041801, 46.8727134 ], + [ 8.4042634, 46.8727434 ], + [ 8.4043174, 46.8727617 ], + [ 8.4043988, 46.8727719 ], + [ 8.4043996, 46.8727794 ], + [ 8.4043615, 46.8727967 ], + [ 8.4042921, 46.8728126 ], + [ 8.4042767, 46.8728269 ], + [ 8.4042963, 46.8728492 ], + [ 8.4043758, 46.8728432 ], + [ 8.4044197, 46.8728439 ], + [ 8.4045138, 46.8728374 ], + [ 8.404556, 46.8728392 ], + [ 8.4045783, 46.8728402 ], + [ 8.4046259, 46.8728572 ], + [ 8.4046915, 46.8728843 ], + [ 8.4047765, 46.8729093 ], + [ 8.4048507, 46.8729309 ], + [ 8.4048291, 46.87296 ], + [ 8.4047781, 46.8729623 ], + [ 8.4047758, 46.8729753 ], + [ 8.4047909, 46.8730019 ], + [ 8.4048168, 46.8730271 ], + [ 8.404835, 46.8730771 ], + [ 8.4048412, 46.8731223 ], + [ 8.4049058, 46.8731533 ], + [ 8.4049637, 46.8731674 ], + [ 8.4050095, 46.8731643 ], + [ 8.4050734, 46.8731767 ], + [ 8.4051005, 46.8731784 ], + [ 8.4051821, 46.8732165 ], + [ 8.4051703, 46.8732443 ], + [ 8.4051752, 46.8732532 ], + [ 8.4052464, 46.8732808 ], + [ 8.4052968, 46.8733008 ], + [ 8.4053631, 46.8733129 ], + [ 8.4054408, 46.8733172 ], + [ 8.4055113, 46.8733239 ], + [ 8.4055779, 46.8733304 ], + [ 8.4056478, 46.8733367 ], + [ 8.4058535, 46.8733557 ], + [ 8.4058666, 46.8733551 ], + [ 8.4058939, 46.8733439 ], + [ 8.4059626, 46.8733259 ], + [ 8.4060011, 46.8733226 ], + [ 8.4060581, 46.8733142 ], + [ 8.4061335, 46.8732984 ], + [ 8.4061993, 46.8733046 ], + [ 8.4062336, 46.8733011 ], + [ 8.4063088, 46.8732803 ], + [ 8.4063927, 46.8732845 ], + [ 8.4064821, 46.873288 ], + [ 8.4065536, 46.873289 ], + [ 8.4066042, 46.8732693 ], + [ 8.4066688, 46.8732637 ], + [ 8.4067342, 46.8732519 ], + [ 8.4067708, 46.8732393 ], + [ 8.4068331, 46.8732307 ], + [ 8.4068692, 46.8732287 ], + [ 8.4069172, 46.873226 ], + [ 8.4069625, 46.8732164 ], + [ 8.4070219, 46.8732078 ], + [ 8.4071073, 46.8731724 ], + [ 8.4072007, 46.8731468 ], + [ 8.4072701, 46.8731305 ], + [ 8.4086772, 46.8741956 ], + [ 8.4087862, 46.8742781 ], + [ 8.4089842, 46.8744119 ], + [ 8.4091557, 46.874521 ], + [ 8.4092646, 46.8745946 ], + [ 8.4093314, 46.8746931 ], + [ 8.409366, 46.8748209 ], + [ 8.4094393, 46.8749171 ], + [ 8.4095355, 46.8750154 ], + [ 8.4096683, 46.8751563 ], + [ 8.4096987, 46.875228 ], + [ 8.4097071, 46.8753492 ], + [ 8.4097247, 46.8754345 ], + [ 8.4098267, 46.8754856 ], + [ 8.4100172, 46.8755542 ], + [ 8.4101453, 46.8755985 ], + [ 8.4101928, 46.8757173 ], + [ 8.4102098, 46.8757621 ], + [ 8.4103225, 46.875871599999996 ], + [ 8.4103539, 46.8760062 ], + [ 8.410379, 46.8761566 ], + [ 8.4104104, 46.8762867 ], + [ 8.4104567, 46.8763246 ], + [ 8.4105914, 46.8763733 ], + [ 8.4107029, 46.876402 ], + [ 8.4107692, 46.8764712 ], + [ 8.4108002, 46.8765788 ], + [ 8.4110478, 46.8765731 ], + [ 8.4111218, 46.8764609 ], + [ 8.4111196, 46.8763386 ], + [ 8.4110721, 46.8761761 ], + [ 8.4110821, 46.8759322 ], + [ 8.411109100000001, 46.8757593 ], + [ 8.4111074, 46.8756613 ], + [ 8.4111074, 46.8756608 ], + [ 8.4111708, 46.8756536 ], + [ 8.4113566, 46.8756371 ], + [ 8.4114977, 46.875616 ], + [ 8.4115067, 46.8756144 ], + [ 8.4115155, 46.8756123 ], + [ 8.411524, 46.8756096 ], + [ 8.411532, 46.8756065 ], + [ 8.4115397, 46.8756029 ], + [ 8.4115468, 46.8755988 ], + [ 8.4115534, 46.8755943 ], + [ 8.4115593, 46.8755894 ], + [ 8.4115646, 46.8755841 ], + [ 8.4115692, 46.8755786 ], + [ 8.411573, 46.8755728 ], + [ 8.4115761, 46.8755667 ], + [ 8.4115784, 46.8755605 ], + [ 8.4115798, 46.8755542 ], + [ 8.4115804, 46.8755479 ], + [ 8.4115802, 46.8755415 ], + [ 8.4115791, 46.8755352 ], + [ 8.4115773, 46.8755289 ], + [ 8.4115746, 46.8755228 ], + [ 8.4115711, 46.8755169 ], + [ 8.4115669, 46.8755112 ], + [ 8.4115619, 46.8755059 ], + [ 8.4115563, 46.8755008 ], + [ 8.41155, 46.8754961 ], + [ 8.4114555, 46.8754396 ], + [ 8.4114365, 46.8754254 ], + [ 8.4114067, 46.8753986 ], + [ 8.4114161, 46.8753716 ], + [ 8.4114516, 46.8753399 ], + [ 8.4115133, 46.8753149 ], + [ 8.4116728, 46.8752781 ], + [ 8.4125648, 46.8750621 ], + [ 8.4126048, 46.875046 ], + [ 8.4126681, 46.8750175 ], + [ 8.4127072, 46.8749905 ], + [ 8.4127517, 46.8749598 ], + [ 8.4127711, 46.874938 ], + [ 8.4128055, 46.8749316 ], + [ 8.4128187, 46.8749036 ], + [ 8.4128374, 46.8748843 ], + [ 8.4129134, 46.8748666 ], + [ 8.4129705, 46.8748571 ], + [ 8.4130735, 46.8748214 ], + [ 8.4131951, 46.874787 ], + [ 8.4132179, 46.8747737 ], + [ 8.4132619, 46.8747761 ], + [ 8.413295, 46.8747722 ], + [ 8.4133646, 46.8747556 ], + [ 8.413436, 46.8747452 ], + [ 8.4135085, 46.8747347 ], + [ 8.4135725, 46.8747116 ], + [ 8.4136112, 46.8747102 ], + [ 8.4137078, 46.8747154 ], + [ 8.413808, 46.8747288 ], + [ 8.4138681, 46.874736 ], + [ 8.4139023, 46.8747371 ], + [ 8.413964, 46.8747437 ], + [ 8.4139946, 46.874746 ], + [ 8.4140213, 46.8747345 ], + [ 8.4140422, 46.8747232 ], + [ 8.414069, 46.8747233 ], + [ 8.4141056, 46.8747244 ], + [ 8.4141488, 46.8747138 ], + [ 8.4141751, 46.8746917 ], + [ 8.4142001, 46.8746872 ], + [ 8.4142262, 46.8746917 ], + [ 8.4142486, 46.8746993 ], + [ 8.4142979, 46.8746895 ], + [ 8.4143558, 46.874687 ], + [ 8.4143973, 46.874692 ], + [ 8.4144542, 46.8746825 ], + [ 8.4144841, 46.8746634 ], + [ 8.414533, 46.8746501 ], + [ 8.4146115, 46.8746334 ], + [ 8.4146507, 46.874636 ], + [ 8.4146888, 46.8746185 ], + [ 8.4147215, 46.8746169 ], + [ 8.4147457, 46.874625 ], + [ 8.4147989, 46.874614 ], + [ 8.4148613, 46.8746109 ], + [ 8.4149108, 46.8746035 ], + [ 8.4149855, 46.874588 ], + [ 8.415024, 46.8745691 ], + [ 8.4150823, 46.8745588 ], + [ 8.4152181, 46.8745509 ], + [ 8.4153041, 46.8745466 ], + [ 8.4153863, 46.8745357 ], + [ 8.4154764, 46.8745238 ], + [ 8.4155237, 46.8745314 ], + [ 8.4155479, 46.8745299 ], + [ 8.4155736, 46.8745037 ], + [ 8.4156954, 46.8745 ], + [ 8.4157725, 46.8745091 ], + [ 8.4158352, 46.874497 ], + [ 8.4159371, 46.8744632 ], + [ 8.4160231, 46.8744271 ], + [ 8.4160873, 46.8743993 ], + [ 8.4162801, 46.874379 ], + [ 8.4163562, 46.8743609 ], + [ 8.4164258, 46.8743616 ], + [ 8.4165163, 46.8743549 ], + [ 8.4166093, 46.8743262 ], + [ 8.4167036, 46.8743091 ], + [ 8.4167669, 46.8742497 ], + [ 8.4167984, 46.8742471 ], + [ 8.4168708, 46.8742023 ], + [ 8.4169853, 46.8741085 ], + [ 8.4170422, 46.874038 ], + [ 8.4171, 46.8739649 ], + [ 8.4171428, 46.8739203 ], + [ 8.417199, 46.873864 ], + [ 8.4172132, 46.8738331 ], + [ 8.4172495, 46.8738016 ], + [ 8.4173714, 46.8737579 ], + [ 8.4173932, 46.8737444 ], + [ 8.4174144, 46.8737248 ], + [ 8.4174653, 46.8737096 ], + [ 8.417496, 46.8736924 ], + [ 8.4175315, 46.8736806 ], + [ 8.4175599, 46.8736522 ], + [ 8.4176307, 46.8736257 ], + [ 8.4176686, 46.8735997 ], + [ 8.4177148, 46.873584 ], + [ 8.4178268, 46.873496 ], + [ 8.4178496, 46.8734853 ], + [ 8.4178863, 46.8734473 ], + [ 8.4179092, 46.8734114 ], + [ 8.4179458, 46.873387 ], + [ 8.4179717, 46.8733734 ], + [ 8.4180242, 46.8732218 ], + [ 8.4180495, 46.873188999999996 ], + [ 8.4180893, 46.8731589 ], + [ 8.4181409, 46.8731325 ], + [ 8.4182015, 46.8731023 ], + [ 8.4182495, 46.8730705 ], + [ 8.418371, 46.8730221 ], + [ 8.4184388, 46.8729887 ], + [ 8.4185007, 46.8729509 ], + [ 8.4185382, 46.8728781 ], + [ 8.418551, 46.8728438 ], + [ 8.4185462, 46.8728259 ], + [ 8.418587, 46.8727782 ], + [ 8.4186855, 46.8726786 ], + [ 8.418689, 46.8726563 ], + [ 8.4187076, 46.8726143 ], + [ 8.4187083, 46.8725899 ], + [ 8.4187311, 46.8725729 ], + [ 8.4187429, 46.872544 ], + [ 8.4187689, 46.8725309 ], + [ 8.4188102, 46.8724653 ], + [ 8.418816, 46.8724469 ], + [ 8.418858, 46.8724166 ], + [ 8.418882, 46.8723912 ], + [ 8.4188994, 46.8723596 ], + [ 8.4189499, 46.8723034 ], + [ 8.4189736, 46.8722869 ], + [ 8.419008, 46.8722759 ], + [ 8.4191409, 46.8722771 ], + [ 8.4192434, 46.8722599 ], + [ 8.4192994, 46.8722174 ], + [ 8.41935, 46.8721748 ], + [ 8.4193813, 46.8721284 ], + [ 8.4193945, 46.8721018 ], + [ 8.4194229, 46.8720661 ], + [ 8.4194522, 46.8720526 ], + [ 8.4193705, 46.8719777 ], + [ 8.4192567, 46.8718701 ], + [ 8.419123, 46.8718027 ], + [ 8.4189995, 46.8717408 ], + [ 8.4189041, 46.8716827 ], + [ 8.4188233, 46.8716357 ], + [ 8.4187926, 46.8716047 ], + [ 8.4187694, 46.8715258 ], + [ 8.4187729, 46.8714415 ], + [ 8.4187795, 46.8713848 ], + [ 8.418734, 46.8713122 ], + [ 8.4186719, 46.8712224 ], + [ 8.4186952, 46.8712093 ], + [ 8.4186987, 46.8712102 ], + [ 8.4187865, 46.8712343 ], + [ 8.41885, 46.8712469 ], + [ 8.4189131, 46.8712485 ], + [ 8.4189349, 46.8712251 ], + [ 8.4189408, 46.8711858 ], + [ 8.419011, 46.8711313 ], + [ 8.4190849, 46.8710772 ], + [ 8.4191438, 46.8710876 ], + [ 8.4192184, 46.8710942 ], + [ 8.4194029, 46.8710857 ], + [ 8.4195753, 46.8710805 ], + [ 8.4197438, 46.8710677 ], + [ 8.4198737, 46.871062 ], + [ 8.4199234, 46.871045 ], + [ 8.4199251, 46.8710307 ], + [ 8.4198812, 46.8710032 ], + [ 8.4199668, 46.8709922 ], + [ 8.4201012, 46.8709598 ], + [ 8.4201739, 46.8709394 ], + [ 8.4202364, 46.8709354 ], + [ 8.420346200000001, 46.870921 ], + [ 8.4204976, 46.870904 ], + [ 8.4206198, 46.8708831 ], + [ 8.4206357, 46.8708805 ], + [ 8.4206611, 46.8708741 ], + [ 8.420675899999999, 46.8708658 ], + [ 8.4207104, 46.8708509 ], + [ 8.4207864, 46.87079 ], + [ 8.4207816, 46.8707732 ], + [ 8.4207932, 46.8707561 ], + [ 8.4208485, 46.8707223 ], + [ 8.4208076, 46.8706766 ], + [ 8.4207963, 46.8706393 ], + [ 8.4207614, 46.8706187 ], + [ 8.4207189, 46.8706175 ], + [ 8.4206621, 46.8705681 ], + [ 8.4207112, 46.8705219 ], + [ 8.4206418, 46.8705193 ], + [ 8.4206133, 46.8705298 ], + [ 8.4206044, 46.8705341 ], + [ 8.4205804, 46.8705588 ], + [ 8.420543200000001, 46.8705866 ], + [ 8.4204824, 46.8706161 ], + [ 8.4203925, 46.8706588 ], + [ 8.420391, 46.870657 ], + [ 8.4204399, 46.8706139 ], + [ 8.4203309, 46.870536 ], + [ 8.4204244, 46.8705166 ], + [ 8.420469, 46.8704786 ], + [ 8.4205141, 46.8704565 ], + [ 8.4205363, 46.8704071 ], + [ 8.4205269, 46.8703803 ], + [ 8.4205513, 46.8703449 ], + [ 8.4205842, 46.870304 ], + [ 8.4206361, 46.8702871 ], + [ 8.4206725, 46.8702542 ], + [ 8.4206774, 46.8702385 ], + [ 8.4206202, 46.8702467 ], + [ 8.4206037, 46.8701966 ], + [ 8.4206427, 46.8701307 ], + [ 8.4206849, 46.8701139 ], + [ 8.4207384, 46.8700909 ], + [ 8.4207259, 46.8700647 ], + [ 8.4207962, 46.8700114 ], + [ 8.4208201, 46.8699667 ], + [ 8.42087, 46.8699613 ], + [ 8.4208867, 46.8699442 ], + [ 8.4208248, 46.8698272 ], + [ 8.420828, 46.8698047 ], + [ 8.4209004, 46.8697391 ], + [ 8.420931, 46.8697238 ], + [ 8.4209509, 46.8697208 ], + [ 8.420997, 46.8697099 ], + [ 8.4210102, 46.8696831 ], + [ 8.4210645, 46.8696565 ], + [ 8.4212023, 46.8695278 ], + [ 8.421278, 46.8694829 ], + [ 8.4213425, 46.8694346 ], + [ 8.4213864, 46.8694005 ], + [ 8.4214476, 46.8693543 ], + [ 8.4215246, 46.869314 ], + [ 8.4216024, 46.8692699 ], + [ 8.4216414, 46.8692543 ], + [ 8.4216406, 46.8692522 ], + [ 8.4217048, 46.8692344 ], + [ 8.421769, 46.8692272 ], + [ 8.4218023, 46.8692014 ], + [ 8.4218036, 46.8692033 ], + [ 8.4218264, 46.8691952 ], + [ 8.4219113, 46.8691637 ], + [ 8.4220535, 46.8691143 ], + [ 8.4222054, 46.8690665 ], + [ 8.4223366, 46.8690338 ], + [ 8.4224672, 46.8689919 ], + [ 8.4225048, 46.8689717 ], + [ 8.4225211, 46.8689459 ], + [ 8.4226007, 46.8689335 ], + [ 8.4226067, 46.8689069 ], + [ 8.4226641, 46.8688973 ], + [ 8.4227238, 46.8689021 ], + [ 8.4228035, 46.8688509 ], + [ 8.4227894, 46.8688265 ], + [ 8.4228023, 46.8687928 ], + [ 8.4228473, 46.8687577 ], + [ 8.4228586, 46.8687393 ], + [ 8.4228897, 46.8686998 ], + [ 8.4228986, 46.868678 ], + [ 8.4228966, 46.8686514 ], + [ 8.422924, 46.8686316 ], + [ 8.4229447, 46.8686367 ], + [ 8.4230012, 46.8686253 ], + [ 8.4230415, 46.8685878 ], + [ 8.4230536, 46.8685392 ], + [ 8.4230382, 46.8684782 ], + [ 8.4230857, 46.8684699 ], + [ 8.4231704, 46.868481 ], + [ 8.4232176, 46.868512 ], + [ 8.4232121, 46.8685865 ], + [ 8.4232381, 46.8686046 ], + [ 8.4232629, 46.8686127 ], + [ 8.4232936, 46.8685853 ], + [ 8.4233458, 46.8685744 ], + [ 8.423421, 46.8685875 ], + [ 8.4235792, 46.8685985 ], + [ 8.4236897, 46.8686035 ], + [ 8.423762, 46.8686202 ], + [ 8.4238909, 46.8686274 ], + [ 8.4239306, 46.8686437 ], + [ 8.4240014, 46.8686779 ], + [ 8.4240368, 46.8686888 ], + [ 8.4240814, 46.8686895 ], + [ 8.4241374, 46.8686895 ], + [ 8.4242066, 46.8686992 ], + [ 8.424241, 46.8687006 ], + [ 8.4242834, 46.8687121 ], + [ 8.4243163, 46.8687274 ], + [ 8.4243585, 46.8687442 ], + [ 8.4244154, 46.8687336 ], + [ 8.4244563, 46.8687251 ], + [ 8.4245271, 46.868696 ], + [ 8.4245586, 46.868679 ], + [ 8.4246095, 46.8686523 ], + [ 8.4246473, 46.8686392 ], + [ 8.4247046, 46.8686275 ], + [ 8.4248795, 46.8686122 ], + [ 8.4254956, 46.8682828 ], + [ 8.4259618, 46.8679549 ], + [ 8.4260125, 46.8678555 ], + [ 8.4268009, 46.867219 ], + [ 8.4269038, 46.8671102 ], + [ 8.4271251, 46.8670183 ], + [ 8.4279616, 46.8668581 ], + [ 8.4286528, 46.8665092 ], + [ 8.4294301, 46.8661168 ], + [ 8.429950999999999, 46.8659144 ], + [ 8.4308782, 46.8656904 ], + [ 8.4312444, 46.8656333 ], + [ 8.431572599999999, 46.8656484 ], + [ 8.4321277, 46.8658775 ], + [ 8.4328971, 46.8663477 ], + [ 8.4332286, 46.8665427 ], + [ 8.4339464, 46.8670583 ], + [ 8.4339496, 46.8672292 ], + [ 8.433734, 46.8676269 ], + [ 8.4336983, 46.8678251 ], + [ 8.4337383, 46.8678607 ], + [ 8.4340142, 46.8678853 ], + [ 8.4344329, 46.8678277 ], + [ 8.4348142, 46.8678784 ], + [ 8.4350526, 46.8680023 ], + [ 8.4352281, 46.8682706 ], + [ 8.4354786, 46.8683404 ], + [ 8.4361086, 46.8683619 ], + [ 8.4369123, 46.8685528 ], + [ 8.4373503, 46.8688279 ], + [ 8.4373511, 46.8688729 ], + [ 8.4376481, 46.8691473 ], + [ 8.4376731, 46.8691981 ], + [ 8.4376865, 46.8692396 ], + [ 8.437717899999999, 46.8692621 ], + [ 8.4377303, 46.8693006 ], + [ 8.4377677, 46.8693388 ], + [ 8.4378975, 46.8693628 ], + [ 8.4379184, 46.8693599 ], + [ 8.4379461, 46.8693457 ], + [ 8.4379958, 46.8693539 ], + [ 8.438079, 46.8693332 ], + [ 8.4381518, 46.8693423 ], + [ 8.4382687, 46.8693795 ], + [ 8.4384014, 46.8694376 ], + [ 8.4384141, 46.8694599 ], + [ 8.4384809, 46.8694975 ], + [ 8.4385377, 46.8695442 ], + [ 8.4385841, 46.8695977 ], + [ 8.4386428, 46.8696204 ], + [ 8.438747, 46.8696402 ], + [ 8.4388054, 46.8696308 ], + [ 8.4388649, 46.8696367 ], + [ 8.4388831, 46.8696284 ], + [ 8.4389556, 46.8696185 ], + [ 8.439057, 46.8696128 ], + [ 8.4390765, 46.8696321 ], + [ 8.4391322, 46.8696759 ], + [ 8.4391441, 46.8696755 ], + [ 8.439207, 46.8696795 ], + [ 8.4392685, 46.8697103 ], + [ 8.4393421, 46.8697175 ], + [ 8.439419000000001, 46.8697208 ], + [ 8.4394653, 46.8697634 ], + [ 8.4395006, 46.8697539 ], + [ 8.4395332, 46.8697557 ], + [ 8.4395737, 46.8697635 ], + [ 8.439620099999999, 46.869762 ], + [ 8.439654, 46.8697431 ], + [ 8.4397218, 46.8697331 ], + [ 8.4397442, 46.8697169 ], + [ 8.4397861, 46.8697172 ], + [ 8.4398177, 46.8697251 ], + [ 8.4398821, 46.8697098 ], + [ 8.4399123, 46.8696884 ], + [ 8.4398936, 46.8696723 ], + [ 8.4399118, 46.8696441 ], + [ 8.4399666, 46.8696307 ], + [ 8.4400515, 46.869601 ], + [ 8.4401274, 46.869573 ], + [ 8.4401783, 46.8695469 ], + [ 8.4402438, 46.8694957 ], + [ 8.4403402, 46.8694397 ], + [ 8.4404787, 46.8694339 ], + [ 8.4404944, 46.8694333 ], + [ 8.4405201, 46.8694044 ], + [ 8.4406698, 46.8693328 ], + [ 8.4406766, 46.8692955 ], + [ 8.4406989, 46.8692735 ], + [ 8.4408024, 46.8692522 ], + [ 8.4409062, 46.8692118 ], + [ 8.4410338, 46.8691279 ], + [ 8.4410644, 46.8690906 ], + [ 8.441091, 46.8690366 ], + [ 8.4411224, 46.8690232 ], + [ 8.4411241, 46.8690105 ], + [ 8.4412043, 46.8690073 ], + [ 8.4412328, 46.8690105 ], + [ 8.441271, 46.8689911 ], + [ 8.441321, 46.8689596 ], + [ 8.4413116, 46.8688936 ], + [ 8.4413335, 46.8688876 ], + [ 8.4413355, 46.8688634 ], + [ 8.4413621, 46.8687927 ], + [ 8.4413972, 46.8687845 ], + [ 8.4414142, 46.8687584 ], + [ 8.4414547, 46.8687227 ], + [ 8.4415186, 46.8686702 ], + [ 8.4415534, 46.8686563 ], + [ 8.4415567, 46.8686336 ], + [ 8.4415567, 46.8686077 ], + [ 8.4415594, 46.8685782 ], + [ 8.4416477, 46.8685205 ], + [ 8.4416776, 46.8684771 ], + [ 8.4417022, 46.868472 ], + [ 8.4417678, 46.8684262 ], + [ 8.4418585, 46.8684025 ], + [ 8.4419073, 46.8683601 ], + [ 8.4419302, 46.868322 ], + [ 8.4419311, 46.8682857 ], + [ 8.4419155, 46.8682648 ], + [ 8.4419387, 46.8682497 ], + [ 8.4419337, 46.8682361 ], + [ 8.4419006, 46.8682215 ], + [ 8.4418931, 46.8681843 ], + [ 8.4418659, 46.8681749 ], + [ 8.4418733, 46.8681303 ], + [ 8.4418829, 46.8681136 ], + [ 8.4419238, 46.8680941 ], + [ 8.4419593, 46.868091 ], + [ 8.4419899, 46.8680857 ], + [ 8.4420338, 46.8680593 ], + [ 8.4421783, 46.8680368 ], + [ 8.442243, 46.8680246 ], + [ 8.4422508, 46.868023 ], + [ 8.4423081, 46.8680049 ], + [ 8.4423451, 46.8680014 ], + [ 8.4423972, 46.8679848 ], + [ 8.4424041, 46.8679656 ], + [ 8.4424789, 46.8679331 ], + [ 8.4425927, 46.8679279 ], + [ 8.4425893, 46.8679023 ], + [ 8.4426861, 46.8678641 ], + [ 8.4426947, 46.8678241 ], + [ 8.4427127, 46.8677891 ], + [ 8.4427071, 46.8677427 ], + [ 8.4427082, 46.867705 ], + [ 8.4455651, 46.8676947 ], + [ 8.4455733, 46.8687457 ], + [ 8.4455727, 46.8687984 ], + [ 8.4456084, 46.8688097 ], + [ 8.4456376, 46.8688188 ], + [ 8.4456655, 46.8688156 ], + [ 8.4456795, 46.8688001 ], + [ 8.4457149, 46.8688005 ], + [ 8.4457206, 46.8688366 ], + [ 8.4457734, 46.8688436 ], + [ 8.4458117, 46.8688439 ], + [ 8.4458658, 46.8688424 ], + [ 8.445887, 46.868862 ], + [ 8.4459774, 46.8688929 ], + [ 8.4460382, 46.8688964 ], + [ 8.4461465, 46.8688549 ], + [ 8.4461676, 46.8688699 ], + [ 8.4462816, 46.868874 ], + [ 8.4463465, 46.8688788 ], + [ 8.4464177, 46.8688683 ], + [ 8.4464995, 46.8688619 ], + [ 8.446582, 46.8688929 ], + [ 8.4466272, 46.8689293 ], + [ 8.4466648, 46.8689363 ], + [ 8.446723800000001, 46.8689691 ], + [ 8.4467779, 46.8689925 ], + [ 8.4468414, 46.8690169 ], + [ 8.4468566, 46.8690444 ], + [ 8.4468675, 46.8690497 ], + [ 8.4469066, 46.869061 ], + [ 8.4469408, 46.869056 ], + [ 8.4469439, 46.8690496 ], + [ 8.4469923, 46.8690554 ], + [ 8.4470929, 46.8690873 ], + [ 8.4471421, 46.8690982 ], + [ 8.4471684, 46.8691167 ], + [ 8.4472025, 46.8691246 ], + [ 8.4472274, 46.8691417 ], + [ 8.4473053, 46.8691519 ], + [ 8.447367, 46.8691444 ], + [ 8.4474324, 46.8691255 ], + [ 8.4474355, 46.8691102 ], + [ 8.4474735, 46.8690756 ], + [ 8.447525, 46.8690589 ], + [ 8.447526, 46.8690464 ], + [ 8.447602, 46.8690258 ], + [ 8.4476627, 46.8690289 ], + [ 8.4476899, 46.8690118 ], + [ 8.4477746, 46.8690098 ], + [ 8.4477982, 46.869025 ], + [ 8.4478121, 46.869017 ], + [ 8.4478698, 46.8690103 ], + [ 8.4478883, 46.8690207 ], + [ 8.4479689, 46.8690012 ], + [ 8.448051, 46.8689903 ], + [ 8.4481017, 46.8689936 ], + [ 8.448172, 46.8690042 ], + [ 8.4481915, 46.8690187 ], + [ 8.4482911, 46.8690267 ], + [ 8.448389, 46.869047 ], + [ 8.44845, 46.8690383 ], + [ 8.4484851, 46.869015 ], + [ 8.4485272, 46.8689659 ], + [ 8.4485508, 46.8689576 ], + [ 8.4485963, 46.8689279 ], + [ 8.4486686, 46.8688987 ], + [ 8.4487036, 46.8688907 ], + [ 8.4487631, 46.8688812 ], + [ 8.4488054, 46.8688825 ], + [ 8.4488205, 46.8688721 ], + [ 8.4488948, 46.8688514 ], + [ 8.4489132, 46.8688265 ], + [ 8.448918, 46.8688013 ], + [ 8.4490108, 46.8687867 ], + [ 8.4490601, 46.868791 ], + [ 8.4491525, 46.8687629 ], + [ 8.4492011, 46.8687699 ], + [ 8.4493373, 46.868788 ], + [ 8.4493736, 46.8688095 ], + [ 8.4493808, 46.8688431 ], + [ 8.449388, 46.8688683 ], + [ 8.4494337, 46.8689055 ], + [ 8.4494867, 46.8689364 ], + [ 8.449557, 46.868955 ], + [ 8.4496034, 46.8689862 ], + [ 8.4496455, 46.8689902 ], + [ 8.4496747, 46.8690187 ], + [ 8.4497193, 46.869065 ], + [ 8.4497758, 46.8690947 ], + [ 8.4498576, 46.869086 ], + [ 8.4499509, 46.8691035 ], + [ 8.450033, 46.8691982 ], + [ 8.4500812, 46.8692743 ], + [ 8.4501227, 46.8693095 ], + [ 8.4501928, 46.8693398 ], + [ 8.4502435, 46.8693448 ], + [ 8.4502776, 46.8693699 ], + [ 8.4503205, 46.8693692 ], + [ 8.4503617, 46.8694065 ], + [ 8.4503962, 46.8694355 ], + [ 8.4504285, 46.8694994 ], + [ 8.450440799999999, 46.8695186 ], + [ 8.4505128, 46.8695291 ], + [ 8.4505334, 46.8695409 ], + [ 8.4505708, 46.8695469 ], + [ 8.4506406, 46.8695732 ], + [ 8.4506471, 46.8695936 ], + [ 8.4507015, 46.8696229 ], + [ 8.4507431, 46.8696276 ], + [ 8.4507884, 46.8696474 ], + [ 8.450814, 46.8696478 ], + [ 8.4508888, 46.8696722 ], + [ 8.4509354, 46.8696758 ], + [ 8.4509728, 46.8696667 ], + [ 8.4510649, 46.8696385 ], + [ 8.4511978, 46.8696496 ], + [ 8.4514034, 46.869653 ], + [ 8.4515088, 46.8696584 ], + [ 8.4516635, 46.8697019 ], + [ 8.4517896, 46.8697106 ], + [ 8.4520388, 46.8697109 ], + [ 8.4520985, 46.8697352 ], + [ 8.4521496, 46.8697374 ], + [ 8.4522258, 46.8697378 ], + [ 8.4522386, 46.8697991 ], + [ 8.4522895, 46.8698592 ], + [ 8.4523166, 46.8698637 ], + [ 8.4523664, 46.8699268 ], + [ 8.4524274, 46.8699963 ], + [ 8.4525509, 46.8700337 ], + [ 8.4525952, 46.8700721 ], + [ 8.4526105, 46.8700756 ], + [ 8.4526338, 46.8701062 ], + [ 8.4527054, 46.8701237 ], + [ 8.4527305, 46.8701704 ], + [ 8.4527836, 46.8702365 ], + [ 8.4528297, 46.8702823 ], + [ 8.4528908, 46.870337 ], + [ 8.4529861, 46.8703998 ], + [ 8.4530618, 46.8704261 ], + [ 8.4531354, 46.870449 ], + [ 8.4532338, 46.8704716 ], + [ 8.4533205, 46.8704889 ], + [ 8.4534141, 46.8705214 ], + [ 8.4535458, 46.8705569 ], + [ 8.4537201, 46.8706005 ], + [ 8.4537598, 46.8706123 ], + [ 8.4538347, 46.8706344 ], + [ 8.4539191, 46.8706548 ], + [ 8.4540293, 46.8706756 ], + [ 8.4541067, 46.8706872 ], + [ 8.4541798, 46.8707012 ], + [ 8.4542702, 46.8707249 ], + [ 8.4544196, 46.8707544 ], + [ 8.4545369, 46.8707762 ], + [ 8.4546739, 46.8708053 ], + [ 8.4547403, 46.8708143 ], + [ 8.454815, 46.8708226 ], + [ 8.455006, 46.8708493 ], + [ 8.4551905, 46.8708832 ], + [ 8.4553174, 46.8709112 ], + [ 8.4554364, 46.8709324 ], + [ 8.4555177, 46.8709407 ], + [ 8.4556803, 46.8709516 ], + [ 8.4558434, 46.8709616 ], + [ 8.4560092, 46.8709708 ], + [ 8.4562135, 46.8709778 ], + [ 8.4563405, 46.8709783 ], + [ 8.4564745, 46.8709781 ], + [ 8.4565388, 46.8709782 ], + [ 8.4565853, 46.8709817 ], + [ 8.4566332, 46.8710028 ], + [ 8.4567748, 46.871059 ], + [ 8.4569572, 46.8711292 ], + [ 8.45709, 46.8711903 ], + [ 8.4572349, 46.8712463 ], + [ 8.4573297, 46.8712819 ], + [ 8.4574269, 46.8713096 ], + [ 8.4574959, 46.8713299 ], + [ 8.4575643, 46.8713532 ], + [ 8.4575913, 46.8713664 ], + [ 8.4576662, 46.871426 ], + [ 8.4577459, 46.8714744 ], + [ 8.4578376, 46.8715127 ], + [ 8.4579108, 46.8715313 ], + [ 8.4579759, 46.8715351 ], + [ 8.4580287, 46.8715316 ], + [ 8.458077, 46.8715413 ], + [ 8.4581306, 46.8715655 ], + [ 8.4582513, 46.8716131 ], + [ 8.458345, 46.8716475 ], + [ 8.4584615, 46.8716964 ], + [ 8.4586052, 46.8717468 ], + [ 8.4586587, 46.8717717 ], + [ 8.4587117, 46.8717797 ], + [ 8.458767, 46.8717862 ], + [ 8.4588342, 46.8718132 ], + [ 8.4588953, 46.871834 ], + [ 8.4589529, 46.871847700000004 ], + [ 8.4591049, 46.8718538 ], + [ 8.4592177, 46.871855 ], + [ 8.4592776, 46.87186 ], + [ 8.4593391, 46.8718609 ], + [ 8.4593852, 46.8718462 ], + [ 8.4594309, 46.8718364 ], + [ 8.4595487, 46.8718281 ], + [ 8.4596544, 46.8718199 ], + [ 8.4597219, 46.8718131 ], + [ 8.4597677, 46.8718168 ], + [ 8.459816, 46.8718236 ], + [ 8.4598735, 46.8718173 ], + [ 8.4599524, 46.8717907 ], + [ 8.4600801, 46.8717497 ], + [ 8.4601851, 46.8717278 ], + [ 8.4602979, 46.8717344 ], + [ 8.4603967, 46.8717602 ], + [ 8.4604752, 46.8717931 ], + [ 8.4605661, 46.8718315 ], + [ 8.4606397, 46.8718412 ], + [ 8.4607136, 46.8718331 ], + [ 8.4607895, 46.8718184 ], + [ 8.4608278, 46.871826 ], + [ 8.4608671, 46.8718406 ], + [ 8.4609102, 46.8718485 ], + [ 8.4609604, 46.8718442 ], + [ 8.4610419, 46.8718432 ], + [ 8.4611783, 46.8718445 ], + [ 8.4612647, 46.8718539 ], + [ 8.4613145, 46.8718517 ], + [ 8.4613208, 46.8718499 ], + [ 8.4613912, 46.8718335 ], + [ 8.4614927, 46.8717943 ], + [ 8.4615573, 46.8717873 ], + [ 8.4616761, 46.8717911 ], + [ 8.4618157, 46.8717803 ], + [ 8.462194, 46.8717639 ], + [ 8.4623266, 46.8717411 ], + [ 8.4624541, 46.8717151 ], + [ 8.462581, 46.8716927 ], + [ 8.4626319, 46.8716925 ], + [ 8.4627285, 46.8716871 ], + [ 8.4628591, 46.87168 ], + [ 8.4629023, 46.8716637 ], + [ 8.4629547, 46.8716268 ], + [ 8.4630519, 46.8715911 ], + [ 8.4632644, 46.8715286 ], + [ 8.4633725, 46.8714928 ], + [ 8.463511, 46.8714299 ], + [ 8.4635579, 46.8714019 ], + [ 8.4636346, 46.8713634 ], + [ 8.4637975, 46.8713169 ], + [ 8.4638874, 46.8712983 ], + [ 8.4640516, 46.8712762 ], + [ 8.4641889, 46.8712701 ], + [ 8.4643142, 46.8712746 ], + [ 8.4643463, 46.8712631 ], + [ 8.4643979, 46.8712242 ], + [ 8.4645069, 46.8711431 ], + [ 8.4646215, 46.8710737 ], + [ 8.4647182, 46.8710221 ], + [ 8.4648062, 46.8709848 ], + [ 8.4648966, 46.8709218 ], + [ 8.465009, 46.8708495 ], + [ 8.4650638, 46.8708225 ], + [ 8.4650979, 46.8708001 ], + [ 8.4650992, 46.8707726 ], + [ 8.4651027, 46.87074 ], + [ 8.465142, 46.8706823 ], + [ 8.4652376, 46.8706187 ], + [ 8.4653047, 46.870585 ], + [ 8.4653604, 46.8705693 ], + [ 8.465401, 46.8705486 ], + [ 8.4654346, 46.8704854 ], + [ 8.4654866, 46.8704545 ], + [ 8.465558099999999, 46.8704168 ], + [ 8.4656411, 46.8703588 ], + [ 8.465748, 46.8702733 ], + [ 8.465841, 46.8701877 ], + [ 8.465911, 46.8701103 ], + [ 8.465962, 46.8700661 ], + [ 8.4659754, 46.870014 ], + [ 8.4659929, 46.8699703 ], + [ 8.4660145, 46.8699485 ], + [ 8.4660687, 46.8698849 ], + [ 8.4661011, 46.8698311 ], + [ 8.4661468, 46.8697815 ], + [ 8.466187, 46.8697537 ], + [ 8.4662283, 46.8697199 ], + [ 8.4662535, 46.8696812 ], + [ 8.4662489, 46.8696485 ], + [ 8.4662534, 46.869619900000004 ], + [ 8.4662901, 46.8695977 ], + [ 8.4663375, 46.8696292 ], + [ 8.4663932, 46.8696815 ], + [ 8.4664182, 46.8697276 ], + [ 8.4664066, 46.869755 ], + [ 8.4664209, 46.869791 ], + [ 8.466462, 46.869857 ], + [ 8.4664869, 46.8698818 ], + [ 8.4665245, 46.8698974 ], + [ 8.466543099999999, 46.8699215 ], + [ 8.4665414, 46.8699611 ], + [ 8.4665613, 46.8699976 ], + [ 8.4665755, 46.870029099999996 ], + [ 8.4665894, 46.8700922 ], + [ 8.4665912, 46.8701625 ], + [ 8.4665895, 46.87024 ], + [ 8.4666038, 46.8703031 ], + [ 8.4666384, 46.8703641 ], + [ 8.4666776, 46.8704076 ], + [ 8.466691, 46.8704273 ], + [ 8.466681, 46.870461399999996 ], + [ 8.4666876, 46.8705145 ], + [ 8.4667129, 46.8705557 ], + [ 8.466746, 46.8705933 ], + [ 8.4667752, 46.870638 ], + [ 8.4667624, 46.8706722 ], + [ 8.4667293, 46.8706946 ], + [ 8.4667, 46.8707305 ], + [ 8.4666916, 46.870794 ], + [ 8.4667009, 46.870867 ], + [ 8.4667348, 46.8709997 ], + [ 8.4667552, 46.8710343 ], + [ 8.4667662, 46.8710635 ], + [ 8.4667634, 46.871098 ], + [ 8.4667577, 46.871143000000004 ], + [ 8.4667509, 46.8712243 ], + [ 8.4667587, 46.8713065 ], + [ 8.4667613, 46.8713876 ], + [ 8.466762, 46.8713874 ], + [ 8.466823399999999, 46.8713778 ], + [ 8.4668578, 46.8713603 ], + [ 8.4668925, 46.8713265 ], + [ 8.4669133, 46.8713181 ], + [ 8.4669861, 46.8712921 ], + [ 8.4670376, 46.871284 ], + [ 8.4670857, 46.8712652 ], + [ 8.4671303, 46.8712651 ], + [ 8.4671509, 46.8712448 ], + [ 8.467187299999999, 46.8712446 ], + [ 8.4672373, 46.8712364 ], + [ 8.4672591, 46.871229 ], + [ 8.4672796, 46.8712005 ], + [ 8.4673001, 46.8711867 ], + [ 8.4673042, 46.8711629 ], + [ 8.467331399999999, 46.8711474 ], + [ 8.4673521, 46.8711479 ], + [ 8.4673657, 46.8712122 ], + [ 8.467391, 46.8712179 ], + [ 8.4674075, 46.8711868 ], + [ 8.4674325, 46.871162 ], + [ 8.4674607, 46.8711469 ], + [ 8.4675023, 46.87115 ], + [ 8.4675241, 46.8711402 ], + [ 8.4675489, 46.8711166 ], + [ 8.4676292, 46.8710887 ], + [ 8.4677474, 46.8710638 ], + [ 8.4677843, 46.871046 ], + [ 8.4678453, 46.8710283 ], + [ 8.4678922, 46.870991 ], + [ 8.4679198, 46.8709611 ], + [ 8.4679868, 46.8709274 ], + [ 8.468063, 46.8709028 ], + [ 8.4681344, 46.8708865 ], + [ 8.4681705, 46.8708675 ], + [ 8.4682688, 46.8707874 ], + [ 8.4683487, 46.8707561 ], + [ 8.4684317, 46.8707213 ], + [ 8.4684824, 46.8707002 ], + [ 8.4685578, 46.8706829 ], + [ 8.4685977, 46.8706831 ], + [ 8.4686896, 46.8706474 ], + [ 8.468757, 46.8706205 ], + [ 8.4688256, 46.8706197 ], + [ 8.4688597, 46.8706053 ], + [ 8.4688925, 46.870606 ], + [ 8.4689916, 46.8706097 ], + [ 8.4690131, 46.870623 ], + [ 8.4691022, 46.8706225 ], + [ 8.4691213, 46.8706175 ], + [ 8.4691902, 46.8706349 ], + [ 8.4692437, 46.8706556 ], + [ 8.4693464, 46.8706752 ], + [ 8.4694263, 46.8706794 ], + [ 8.4695552, 46.8706677 ], + [ 8.4696591, 46.870656 ], + [ 8.4697839, 46.8706458 ], + [ 8.469869899999999, 46.8706337 ], + [ 8.4699501, 46.8706387 ], + [ 8.4700414, 46.8706437 ], + [ 8.4701354, 46.8706311 ], + [ 8.4701878, 46.8706195 ], + [ 8.4701341, 46.8700199 ], + [ 8.4701272, 46.8697802 ], + [ 8.4702132, 46.8692189 ], + [ 8.4706472, 46.8689325 ], + [ 8.471035, 46.8685639 ], + [ 8.4713466, 46.8681265 ], + [ 8.4713612, 46.8678777 ], + [ 8.4712694, 46.8676057 ], + [ 8.4711189, 46.8674318 ], + [ 8.4708624, 46.8671844 ], + [ 8.4706061, 46.8665581 ], + [ 8.4705169, 46.86643 ], + [ 8.4704544, 46.8662045 ], + [ 8.4703424, 46.8660778 ], + [ 8.470254, 46.865799 ], + [ 8.4701022, 46.865558899999996 ], + [ 8.4694936, 46.8648721 ], + [ 8.469286, 46.8644902 ], + [ 8.4692405, 46.8642709 ], + [ 8.4691516, 46.864104 ], + [ 8.4692158, 46.8638987 ], + [ 8.4692236, 46.8636841 ], + [ 8.4690883, 46.8634623 ], + [ 8.4691326, 46.8632661 ], + [ 8.4690442, 46.862985 ], + [ 8.4691313, 46.8628665 ], + [ 8.4691771, 46.8623758 ], + [ 8.4692448, 46.8621477 ], + [ 8.4693187, 46.8620087 ], + [ 8.4688906, 46.8617928 ], + [ 8.4687483, 46.8616645 ], + [ 8.4685698, 46.8614448 ], + [ 8.4684737, 46.8613691 ], + [ 8.4684112, 46.8612251 ], + [ 8.468073799999999, 46.8608588 ], + [ 8.4679053, 46.8606414 ], + [ 8.4681237, 46.8602129 ], + [ 8.4685447, 46.859842 ], + [ 8.4686491, 46.8596095 ], + [ 8.4690726, 46.859403 ], + [ 8.4691668, 46.8591932 ], + [ 8.4689278, 46.8584482 ], + [ 8.4690763, 46.8580263 ], + [ 8.4702388, 46.8570687 ], + [ 8.4707433, 46.8565133 ], + [ 8.4708878, 46.8563332 ], + [ 8.4709321, 46.8561279 ], + [ 8.4709333, 46.8558927 ], + [ 8.4708712, 46.8556825 ], + [ 8.4706671, 46.8552641 ], + [ 8.4708438, 46.8548489 ], + [ 8.4708506, 46.8548438 ], + [ 8.4717, 46.8546874 ], + [ 8.471944, 46.8547122 ], + [ 8.4724968, 46.8548151 ], + [ 8.4738434, 46.8546051 ], + [ 8.4743933, 46.8545551 ], + [ 8.4750247, 46.8546573 ], + [ 8.4754448, 46.8546805 ], + [ 8.4759727, 46.8548556 ], + [ 8.4763467, 46.8552121 ], + [ 8.4766879, 46.8559017 ], + [ 8.4777521, 46.8566837 ], + [ 8.4780423, 46.856771 ], + [ 8.4783092, 46.8570115 ], + [ 8.4788351, 46.8570787 ], + [ 8.4793372, 46.8572721 ], + [ 8.4799928, 46.8572661 ], + [ 8.4805362, 46.8568833 ], + [ 8.4808312, 46.8565387 ], + [ 8.4812202, 46.8563103 ], + [ 8.4816307, 46.8558387 ], + [ 8.4826438, 46.8553347 ], + [ 8.483978, 46.8551606 ], + [ 8.4849999, 46.8551062 ], + [ 8.4855453, 46.8548313 ], + [ 8.486489, 46.85413 ], + [ 8.4871646, 46.8538089 ], + [ 8.4878808, 46.8535504 ], + [ 8.4887694, 46.8533893 ], + [ 8.4897111, 46.8532637 ], + [ 8.4905604, 46.853103 ], + [ 8.4930462, 46.8528102 ], + [ 8.4940692, 46.8528187 ], + [ 8.4951216, 46.8529889 ], + [ 8.496112, 46.8533396 ], + [ 8.4978512, 46.8537553 ], + [ 8.498429699999999, 46.8531652 ], + [ 8.4985154, 46.8521928 ], + [ 8.4993543, 46.8515103 ], + [ 8.5003934, 46.8510058 ], + [ 8.5020947, 46.8495056 ], + [ 8.5024977, 46.8479994 ], + [ 8.5027834, 46.8478618 ], + [ 8.503208, 46.847453 ], + [ 8.5038165, 46.8470605 ], + [ 8.5042456, 46.8468766 ], + [ 8.505343, 46.8460117 ], + [ 8.5070365, 46.8454561 ], + [ 8.5054518, 46.8448861 ], + [ 8.5056002, 46.8444349 ], + [ 8.5056329, 46.8441017 ], + [ 8.5057555, 46.8436687 ], + [ 8.5056452, 46.8433999 ], + [ 8.5058949, 46.8427678 ], + [ 8.5054698, 46.8424839 ], + [ 8.5052267, 46.8421263 ], + [ 8.504893599999999, 46.8418595 ], + [ 8.5048213, 46.8415183 ], + [ 8.5039976, 46.8409682 ], + [ 8.5025007, 46.8401905 ], + [ 8.5014161, 46.8397058 ], + [ 8.5010452, 46.8395113 ], + [ 8.4999239, 46.8391619 ], + [ 8.4983496, 46.8391045 ], + [ 8.498083, 46.8388821 ], + [ 8.4976588, 46.8386431 ], + [ 8.4970261, 46.8384691 ], + [ 8.4969321, 46.838353 ], + [ 8.4964986, 46.838312 ], + [ 8.4961015, 46.8381178 ], + [ 8.4957733, 46.8380938 ], + [ 8.4953517, 46.8379898 ], + [ 8.4949585, 46.8379934 ], + [ 8.4943637, 46.837747 ], + [ 8.4938627, 46.8375987 ], + [ 8.4930468, 46.8374443 ], + [ 8.4919921, 46.8371391 ], + [ 8.4912651, 46.836831 ], + [ 8.4908255, 46.8364752 ], + [ 8.4906233, 46.8361891 ], + [ 8.4901995, 46.8359681 ], + [ 8.4903279, 46.835831999999996 ], + [ 8.488844199999999, 46.8357107 ], + [ 8.4884801, 46.8351923 ], + [ 8.4883347, 46.8344559 ], + [ 8.488031, 46.8343417 ], + [ 8.4877233, 46.833355 ], + [ 8.4873887, 46.8329982 ], + [ 8.486217, 46.8320643 ], + [ 8.4862664, 46.8312362 ], + [ 8.486196, 46.8309849 ], + [ 8.4856915, 46.8299819 ], + [ 8.4856202, 46.8296857 ], + [ 8.485282, 46.829149 ], + [ 8.4844748, 46.8280769 ], + [ 8.4835029, 46.8273031 ], + [ 8.4833632, 46.8268545 ], + [ 8.483523, 46.8263133 ], + [ 8.4833448, 46.8259101 ], + [ 8.4836567, 46.8250975 ], + [ 8.483751999999999, 46.8246019 ], + [ 8.4837677, 46.8240619 ], + [ 8.4834291, 46.8234983 ], + [ 8.4836227, 46.8233435 ], + [ 8.4837712, 46.8222176 ], + [ 8.4837646, 46.8218758 ], + [ 8.4834891, 46.8211856 ], + [ 8.4835489, 46.8208882 ], + [ 8.4833668, 46.8202871 ], + [ 8.4836607, 46.8198976 ], + [ 8.4833917, 46.8195402 ], + [ 8.4832507, 46.8190287 ], + [ 8.482416, 46.8185595 ], + [ 8.4816155, 46.8178291 ], + [ 8.4810871, 46.817609 ], + [ 8.4812496, 46.8172027 ], + [ 8.4812688, 46.8168426 ], + [ 8.4812357, 46.8164831 ], + [ 8.4810322, 46.8161251 ], + [ 8.4804942, 46.815410299999996 ], + [ 8.4803557, 46.8150247 ], + [ 8.480047, 46.8146497 ], + [ 8.4796884, 46.814401 ], + [ 8.4787238, 46.813987 ], + [ 8.4781278, 46.8137397 ], + [ 8.4778704, 46.813690199999996 ], + [ 8.4775267, 46.8136998 ], + [ 8.4771269, 46.8137391 ], + [ 8.4766361, 46.8137696 ], + [ 8.4764763, 46.8138475 ], + [ 8.4763164, 46.8139253 ], + [ 8.476084, 46.8140165 ], + [ 8.4758681, 46.8141184 ], + [ 8.4756917, 46.814191 ], + [ 8.475408999999999, 46.8142667 ], + [ 8.4751342, 46.8143307 ], + [ 8.474833, 46.8143786 ], + [ 8.4744929, 46.8144559 ], + [ 8.4742162, 46.814503 ], + [ 8.4738259, 46.8145647 ], + [ 8.4735245, 46.8146069 ], + [ 8.4733046, 46.81463 ], + [ 8.4731515, 46.8146737 ], + [ 8.4729915, 46.8147458 ], + [ 8.472825, 46.8148578 ], + [ 8.4726743, 46.8149466 ], + [ 8.4724405, 46.8150096 ], + [ 8.4722362, 46.8150321 ], + [ 8.471992, 46.8150672 ], + [ 8.471779, 46.8150675 ], + [ 8.4714505, 46.8150596 ], + [ 8.4711783, 46.8150447 ], + [ 8.470929, 46.8149894 ], + [ 8.470612, 46.8148965 ], + [ 8.4703557, 46.8148585 ], + [ 8.4700343, 46.8148392 ], + [ 8.469759700000001, 46.8149146 ], + [ 8.4695356, 46.8150167 ], + [ 8.4693196, 46.8151132 ], + [ 8.4689808, 46.8152128 ], + [ 8.4686908, 46.8151644 ], + [ 8.4685084, 46.8151355 ], + [ 8.4682977, 46.8150399 ], + [ 8.4680694, 46.8149219 ], + [ 8.4678494, 46.8148094 ], + [ 8.4676809, 46.814735 ], + [ 8.4674083, 46.8146974 ], + [ 8.4671861, 46.8146866 ], + [ 8.4669641, 46.8146816 ], + [ 8.4667281, 46.8147163 ], + [ 8.4665245, 46.8147332 ], + [ 8.4663717, 46.8147939 ], + [ 8.4661614, 46.8148506 ], + [ 8.465861, 46.8148984 ], + [ 8.4656413, 46.8149327 ], + [ 8.465406399999999, 46.8149843 ], + [ 8.4652198, 46.8150346 ], + [ 8.4648985, 46.8151508 ], + [ 8.4645119, 46.8152745 ], + [ 8.464207, 46.8153958 ], + [ 8.4638602, 46.815507 ], + [ 8.4636034, 46.8156101 ], + [ 8.4633521, 46.8156621 ], + [ 8.4632131, 46.8156717 ], + [ 8.4630386, 46.8156257 ], + [ 8.4628621, 46.8155628 ], + [ 8.4626852, 46.8154773 ], + [ 8.46245, 46.8153823 ], + [ 8.4621751, 46.8153108 ], + [ 8.4620089, 46.8152703 ], + [ 8.4618636, 46.815167 ], + [ 8.4617054, 46.8149851 ], + [ 8.4615667, 46.8147122 ], + [ 8.461461, 46.8144499 ], + [ 8.4613786, 46.814294 ], + [ 8.4612745, 46.8142066 ], + [ 8.4610905, 46.8141327 ], + [ 8.460681, 46.8140028 ], + [ 8.460185, 46.813802 ], + [ 8.4599557, 46.8136729 ], + [ 8.4597425, 46.813532 ], + [ 8.4595107, 46.8134875 ], + [ 8.4592316, 46.8134952 ], + [ 8.459083, 46.8134767 ], + [ 8.4589823, 46.8134343 ], + [ 8.4588382, 46.8133481 ], + [ 8.4585981, 46.8131684 ], + [ 8.4583336, 46.8130007 ], + [ 8.458056, 46.8128729 ], + [ 8.4576712, 46.812748 ], + [ 8.4572304, 46.8126473 ], + [ 8.4570478, 46.8126072 ], + [ 8.4569447, 46.8125253 ], + [ 8.4568448, 46.812353 ], + [ 8.4567231, 46.8122378 ], + [ 8.4565972, 46.8123372 ], + [ 8.4563938, 46.8123655 ], + [ 8.4560245, 46.81237 ], + [ 8.4556945, 46.8123284 ], + [ 8.455323, 46.8122991 ], + [ 8.4550189, 46.8122849 ], + [ 8.4547232, 46.8122818 ], + [ 8.4545418, 46.8122641 ], + [ 8.4544002, 46.8122229 ], + [ 8.4543065, 46.8121633 ], + [ 8.4543064, 46.8120279 ], + [ 8.4542406, 46.8118829 ], + [ 8.4541306, 46.8118239 ], + [ 8.4539279, 46.8117166 ], + [ 8.4536332, 46.8115892 ], + [ 8.4532984, 46.8114686 ], + [ 8.45323, 46.8114468 ], + [ 8.4531918, 46.8114607 ], + [ 8.4529868, 46.8115338 ], + [ 8.4528394, 46.8115788 ], + [ 8.4526747, 46.8116182 ], + [ 8.4525189, 46.8116069 ], + [ 8.4522726, 46.8115731 ], + [ 8.4521907, 46.8115282 ], + [ 8.4521249, 46.8114718 ], + [ 8.4518705, 46.8113987 ], + [ 8.4516901, 46.8113424 ], + [ 8.4514765, 46.8112638 ], + [ 8.4513698, 46.8112074 ], + [ 8.451213599999999, 46.8111792 ], + [ 8.4510493, 46.8111512 ], + [ 8.4509014, 46.8111229 ], + [ 8.4507625, 46.8110949 ], + [ 8.4505812, 46.8110386 ], + [ 8.4503517, 46.8110273 ], + [ 8.4501133, 46.8109767 ], + [ 8.4499168, 46.8109373 ], + [ 8.4496701, 46.8109261 ], + [ 8.4496372, 46.8108753 ], + [ 8.4496371, 46.8107798 ], + [ 8.4496288, 46.8106897 ], + [ 8.4496459, 46.8105941 ], + [ 8.449662, 46.8105378 ], + [ 8.4495963, 46.8103972 ], + [ 8.4495144, 46.8103071 ], + [ 8.4494485, 46.8102453 ], + [ 8.4493825, 46.8101327 ], + [ 8.4493169, 46.8100427 ], + [ 8.4492187, 46.8099134 ], + [ 8.4491199, 46.8098008 ], + [ 8.4489558, 46.8096939 ], + [ 8.448791, 46.8095532 ], + [ 8.4486439, 46.80948 ], + [ 8.4485858, 46.8094408 ], + [ 8.4484714, 46.8093676 ], + [ 8.4482819, 46.8092606 ], + [ 8.4480853, 46.8091707 ], + [ 8.4479535, 46.8090862 ], + [ 8.4477974, 46.8090131 ], + [ 8.4476827, 46.808968 ], + [ 8.4475759, 46.8089046 ], + [ 8.4474525, 46.808965 ], + [ 8.4473437, 46.8090583 ], + [ 8.4471852, 46.8091643 ], + [ 8.4469832, 46.8092264 ], + [ 8.4467587, 46.8093059 ], + [ 8.4465195, 46.809431000000004 ], + [ 8.4463864, 46.809542 ], + [ 8.4462618, 46.809664 ], + [ 8.446111, 46.8097471 ], + [ 8.445971, 46.8098809 ], + [ 8.4459446, 46.8100001 ], + [ 8.4458769, 46.8101035 ], + [ 8.4456352, 46.8101837 ], + [ 8.4453373, 46.8102822 ], + [ 8.4449327, 46.8102368 ], + [ 8.4447, 46.8101867 ], + [ 8.4445379, 46.8102308 ], + [ 8.4444586, 46.8104136 ], + [ 8.4442818, 46.8103338 ], + [ 8.4440342, 46.810318 ], + [ 8.4439778, 46.8101897 ], + [ 8.4440279, 46.8100642 ], + [ 8.4441468, 46.8099875 ], + [ 8.4442903, 46.8099102 ], + [ 8.4444384, 46.8097706 ], + [ 8.4445201, 46.8096272 ], + [ 8.4444125, 46.8096132 ], + [ 8.4442719, 46.8095833 ], + [ 8.4440092, 46.8095905 ], + [ 8.4437799, 46.8095911 ], + [ 8.443871, 46.80947 ], + [ 8.4439325, 46.8093893 ], + [ 8.443958, 46.8092588 ], + [ 8.4436951, 46.8092604 ], + [ 8.4434825, 46.8092775 ], + [ 8.4432625, 46.8092949 ], + [ 8.4430935, 46.8093616 ], + [ 8.4428865, 46.8094633 ], + [ 8.4426038, 46.8095388 ], + [ 8.4420757, 46.8096324 ], + [ 8.4417743, 46.8096745 ], + [ 8.4416177, 46.8096675 ], + [ 8.4415896, 46.8096062 ], + [ 8.4416255, 46.809514899999996 ], + [ 8.4416779, 46.8094231 ], + [ 8.4416377, 46.8092888 ], + [ 8.4415815, 46.8091718 ], + [ 8.4415196, 46.8092356 ], + [ 8.4413995, 46.8092952 ], + [ 8.4412253, 46.809396 ], + [ 8.4409906, 46.8094589 ], + [ 8.4409205, 46.8093874 ], + [ 8.4408406, 46.8092712 ], + [ 8.4407233, 46.8090881 ], + [ 8.4406551, 46.8088979 ], + [ 8.4406335, 46.8086615 ], + [ 8.4405821, 46.808629 ], + [ 8.4404824, 46.8085979 ], + [ 8.4404542, 46.808531 ], + [ 8.4404459, 46.8083957 ], + [ 8.440408099999999, 46.8081652 ], + [ 8.4403677, 46.8080195 ], + [ 8.4402541, 46.8078985 ], + [ 8.4401032, 46.8078461 ], + [ 8.4398227, 46.8078201 ], + [ 8.4395435, 46.8078221 ], + [ 8.4392429, 46.8078642 ], + [ 8.4345301, 46.8099863 ], + [ 8.4343397, 46.8100988 ], + [ 8.4341344, 46.8102455 ], + [ 8.4340654, 46.8103208 ], + [ 8.433871, 46.8105237 ], + [ 8.4335649, 46.8107579 ], + [ 8.4331356, 46.8111479 ], + [ 8.4328615, 46.8113812 ], + [ 8.4325559, 46.811638 ], + [ 8.432369, 46.8118069 ], + [ 8.4320447, 46.8120302 ], + [ 8.4318707, 46.8121422 ], + [ 8.4316721, 46.812255 ], + [ 8.4314761, 46.8124184 ], + [ 8.4313106, 46.8125471 ], + [ 8.4312102, 46.8126515 ], + [ 8.4310842, 46.8127508 ], + [ 8.4308321, 46.8129328 ], + [ 8.4304828, 46.8131343 ], + [ 8.4301244, 46.8133304 ], + [ 8.429711, 46.8135618 ], + [ 8.4293026, 46.8138892 ], + [ 8.4290363, 46.8141053 ], + [ 8.4288467, 46.8143927 ], + [ 8.4286337, 46.8148333 ], + [ 8.428468, 46.8150862 ], + [ 8.4283727, 46.8152921 ], + [ 8.4283555, 46.8155635 ], + [ 8.4283013, 46.8159093 ], + [ 8.4282774, 46.8162149 ], + [ 8.4282356, 46.8163458 ], + [ 8.4280968, 46.8165021 ], + [ 8.4277979, 46.8167304 ], + [ 8.4274458, 46.8170448 ], + [ 8.4272041, 46.817266 ], + [ 8.426923, 46.817522 ], + [ 8.4267046, 46.8177144 ], + [ 8.4266408, 46.8178967 ], + [ 8.4266246, 46.818044 ], + [ 8.4265794, 46.8182597 ], + [ 8.4265015, 46.8184763 ], + [ 8.4263733, 46.8186774 ], + [ 8.4262114, 46.8188682 ], + [ 8.4264381, 46.8189466 ], + [ 8.4262741, 46.8193857 ], + [ 8.4261115, 46.8198531 ], + [ 8.425957, 46.8203147 ], + [ 8.4258221, 46.8206852 ], + [ 8.4253668, 46.8216347 ], + [ 8.4252363, 46.8219319 ], + [ 8.4251727, 46.8221256 ], + [ 8.4251274, 46.8223357 ], + [ 8.4252074, 46.8225876 ], + [ 8.4253259, 46.8227988 ], + [ 8.4254513, 46.8229817 ], + [ 8.4257371, 46.8232449 ], + [ 8.4259946, 46.823441 ], + [ 8.4262981, 46.8237263 ], + [ 8.4266142, 46.8239492 ], + [ 8.4268298, 46.8241351 ], + [ 8.427138, 46.8243694 ], + [ 8.4273955, 46.8245657 ], + [ 8.4276423, 46.8247114 ], + [ 8.4278636, 46.824852 ], + [ 8.4280347, 46.8249772 ], + [ 8.4281426, 46.8251437 ], + [ 8.4281956, 46.8253567 ], + [ 8.4282323, 46.8255702 ], + [ 8.4283414, 46.8257536 ], + [ 8.4284796, 46.8258739 ], + [ 8.428624899999999, 46.8259829 ], + [ 8.4288218, 46.8261299 ], + [ 8.4289824, 46.8263569 ], + [ 8.4290963, 46.8266248 ], + [ 8.429789, 46.8291406 ], + [ 8.430170799999999, 46.8293672 ], + [ 8.4303521, 46.8293793 ], + [ 8.4304843, 46.8293982 ], + [ 8.4305029, 46.8294315 ], + [ 8.4304176, 46.8295129 ], + [ 8.4302962, 46.8295501 ], + [ 8.4301617, 46.8296328 ], + [ 8.430223, 46.8297102 ], + [ 8.4303925, 46.8297958 ], + [ 8.4307416, 46.8300235 ], + [ 8.430929, 46.8301481 ], + [ 8.4310553, 46.8302011 ], + [ 8.4313022, 46.830216899999996 ], + [ 8.4316797, 46.8302066 ], + [ 8.4316903, 46.8302458 ], + [ 8.4317045, 46.8303528 ], + [ 8.4317494, 46.8304305 ], + [ 8.4318148, 46.8304231 ], + [ 8.4318943, 46.8303813 ], + [ 8.4320298, 46.8303099 ], + [ 8.4321794, 46.8303396 ], + [ 8.432322, 46.8303866 ], + [ 8.4325996, 46.8305089 ], + [ 8.4328034, 46.830633 ], + [ 8.4329847, 46.8307806 ], + [ 8.4332575, 46.8309594 ], + [ 8.4335129, 46.8311218 ], + [ 8.433679, 46.8311568 ], + [ 8.433774, 46.8312444 ], + [ 8.4338397, 46.8313838 ], + [ 8.4335323, 46.8314656 ], + [ 8.4331936, 46.8315765 ], + [ 8.4329237, 46.8317363 ], + [ 8.4330408, 46.8317783 ], + [ 8.433194199999999, 46.8318756 ], + [ 8.4333709, 46.8319498 ], + [ 8.4334833, 46.8320484 ], + [ 8.4335809, 46.8321868 ], + [ 8.4336547, 46.8323259 ], + [ 8.4337227, 46.8325047 ], + [ 8.4338707, 46.8326644 ], + [ 8.4339725, 46.832718 ], + [ 8.4341806, 46.8327632 ], + [ 8.4344322, 46.832858 ], + [ 8.4347074, 46.8329408 ], + [ 8.4349671, 46.8330296 ], + [ 8.4351393, 46.8331716 ], + [ 8.4351383, 46.8332959 ], + [ 8.4351198, 46.8334036 ], + [ 8.4351673, 46.8336677 ], + [ 8.4351689, 46.8338426 ], + [ 8.4351951, 46.8340169 ], + [ 8.4352783, 46.8341726 ], + [ 8.4354413, 46.8343038 ], + [ 8.4356381, 46.8344452 ], + [ 8.4357411, 46.8345213 ], + [ 8.4357528, 46.8345774 ], + [ 8.4357412, 46.8346624 ], + [ 8.4356806, 46.8347488 ], + [ 8.4355849, 46.8348022 ], + [ 8.4355079, 46.8348947 ], + [ 8.435472, 46.8349916 ], + [ 8.4354792, 46.83511 ], + [ 8.4355085, 46.8351882 ], + [ 8.4355368, 46.8352608 ], + [ 8.435551, 46.835362 ], + [ 8.4355479, 46.835458 ], + [ 8.4355235, 46.8355999 ], + [ 8.4354722, 46.8357086 ], + [ 8.4354621, 46.8358273 ], + [ 8.435490099999999, 46.8358774 ], + [ 8.4355432, 46.835955 ], + [ 8.4355901, 46.8360554 ], + [ 8.4355963, 46.836168 ], + [ 8.4355988, 46.8363486 ], + [ 8.4355814, 46.8364733 ], + [ 8.4356203, 46.8365795 ], + [ 8.4357399, 46.8366666 ], + [ 8.4358431, 46.836754 ], + [ 8.4359613, 46.836813 ], + [ 8.4360982, 46.8369052 ], + [ 8.4361427, 46.8369604 ], + [ 8.4362309, 46.8370765 ], + [ 8.436272, 46.8372165 ], + [ 8.4362861, 46.8373178 ], + [ 8.4363416, 46.8374348 ], + [ 8.4364433, 46.8374885 ], + [ 8.4365196, 46.8375371 ], + [ 8.4367045, 46.8376111 ], + [ 8.4368965, 46.837668 ], + [ 8.4371128, 46.8377129 ], + [ 8.4372052, 46.8377499 ], + [ 8.4372661, 46.8378046 ], + [ 8.437285, 46.837854899999996 ], + [ 8.4373062, 46.8379334 ], + [ 8.4373274, 46.8380174 ], + [ 8.4373885, 46.8380892 ], + [ 8.4374658, 46.8381492 ], + [ 8.4375666, 46.8381916 ], + [ 8.4377021, 46.8382557 ], + [ 8.4378509, 46.8382798 ], + [ 8.4380685, 46.8383528 ], + [ 8.4380884, 46.8384088 ], + [ 8.4381237, 46.838453 ], + [ 8.4381462, 46.8385653 ], + [ 8.4381595, 46.8387964 ], + [ 8.4381319, 46.8390286 ], + [ 8.4380356, 46.8392231 ], + [ 8.4379575, 46.8394342 ], + [ 8.4379231, 46.8397005 ], + [ 8.4378735, 46.839984 ], + [ 8.4378693, 46.8401987 ], + [ 8.437865, 46.8404077 ], + [ 8.437922499999999, 46.8405472 ], + [ 8.4380761, 46.840656 ], + [ 8.4381641, 46.8407608 ], + [ 8.4382588, 46.8408316 ], + [ 8.4383128, 46.8409148 ], + [ 8.4383167, 46.8409938 ], + [ 8.4383213, 46.8410669 ], + [ 8.4382971, 46.8412201 ], + [ 8.4382592, 46.8414244 ], + [ 8.438214, 46.8416401 ], + [ 8.4382143, 46.8417869 ], + [ 8.4382101, 46.8420016 ], + [ 8.4381996, 46.8420978 ], + [ 8.4381614, 46.842161 ], + [ 8.4380856, 46.8422703 ], + [ 8.4379827, 46.8423351 ], + [ 8.4378566, 46.842429 ], + [ 8.4377236, 46.8425456 ], + [ 8.4376069, 46.8426616 ], + [ 8.4375323, 46.8427879 ], + [ 8.437549, 46.8429398 ], + [ 8.4375738, 46.8430803 ], + [ 8.4376456, 46.8431968 ], + [ 8.4377031, 46.8433364 ], + [ 8.4377596, 46.8434703 ], + [ 8.4377599, 46.8436171 ], + [ 8.4377262, 46.8437422 ], + [ 8.4376682, 46.8438849 ], + [ 8.4376265, 46.844157 ], + [ 8.437543, 46.8444247 ], + [ 8.4375294, 46.844617 ], + [ 8.4375847, 46.8447284 ], + [ 8.4376387, 46.8448117 ], + [ 8.4377251, 46.844877 ], + [ 8.4377873, 46.8449599 ], + [ 8.4378343, 46.8450659 ], + [ 8.4378475, 46.8451559 ], + [ 8.437856, 46.8453081 ], + [ 8.4378669, 46.8454941 ], + [ 8.4378277, 46.8456814 ], + [ 8.4378126, 46.84584 ], + [ 8.4377969, 46.8460041 ], + [ 8.4377503, 46.8461916 ], + [ 8.4377248, 46.8463165 ], + [ 8.4377171, 46.8464749 ], + [ 8.4377293, 46.846689 ], + [ 8.4377417, 46.84705 ], + [ 8.4383595, 46.8534141 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "JBG0017", + "country" : "CHE", + "name" : [ + { + "text" : "Eidgenössisches Jagdbanngebiet Hahnen", + "lang" : "de-CH" + }, + { + "text" : "District franc fédéral Hahnen", + "lang" : "fr-CH" + }, + { + "text" : "Bandita federale di caccia Hahnen", + "lang" : "it-CH" + }, + { + "text" : "Federal Game Reserve Hahnen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.2276665, 47.2732765 ], + [ 8.2275936, 47.2738728 ], + [ 8.2270577, 47.2758193 ], + [ 8.2263279, 47.2778433 ], + [ 8.2261143, 47.2787318 ], + [ 8.2259146, 47.2794604 ], + [ 8.2253411, 47.2806543 ], + [ 8.2246323, 47.2819979 ], + [ 8.2260823, 47.2825317 ], + [ 8.2261345, 47.2825492 ], + [ 8.2261474, 47.2825325 ], + [ 8.226199, 47.2824738 ], + [ 8.2262438, 47.2824236 ], + [ 8.2262524, 47.2824082 ], + [ 8.2262855, 47.2823495 ], + [ 8.2263574, 47.282241 ], + [ 8.2265088, 47.2820219 ], + [ 8.2266124, 47.2818347 ], + [ 8.2267297, 47.2816405 ], + [ 8.2267741, 47.2815175 ], + [ 8.2268161, 47.2814127 ], + [ 8.2268232, 47.281341 ], + [ 8.226808, 47.2812781 ], + [ 8.2267609, 47.2811805 ], + [ 8.2267536, 47.2811231 ], + [ 8.2267817, 47.2810523 ], + [ 8.226859, 47.280935 ], + [ 8.2269632, 47.2807647 ], + [ 8.2271381, 47.2804671 ], + [ 8.2271849, 47.2802965 ], + [ 8.2271869, 47.2802892 ], + [ 8.2272178, 47.2801034 ], + [ 8.2272304, 47.2800021 ], + [ 8.2272593, 47.2798829 ], + [ 8.2272737, 47.2798173 ], + [ 8.227325, 47.2797386 ], + [ 8.2273881, 47.2796112 ], + [ 8.227454, 47.2794908 ], + [ 8.2275081, 47.2794131 ], + [ 8.2275751, 47.2793958 ], + [ 8.2275826, 47.2793933 ], + [ 8.2276736, 47.2793625 ], + [ 8.2277209, 47.2792928 ], + [ 8.2277445, 47.2791934 ], + [ 8.2277439, 47.2791408 ], + [ 8.2277663, 47.2790229 ], + [ 8.2277737, 47.2789838 ], + [ 8.2278226, 47.2788089 ], + [ 8.2278287, 47.2786942 ], + [ 8.2278328, 47.2786173 ], + [ 8.2278215, 47.2784711 ], + [ 8.2278168, 47.2784089 ], + [ 8.2278518, 47.2782261 ], + [ 8.227946, 47.2780559 ], + [ 8.2279841, 47.2779048 ], + [ 8.228005, 47.2778064 ], + [ 8.2280062, 47.2776635 ], + [ 8.2280118, 47.2775503 ], + [ 8.2280602, 47.2774657 ], + [ 8.2281119, 47.2774217 ], + [ 8.2281287, 47.2773274 ], + [ 8.2281194, 47.277298 ], + [ 8.2281045, 47.2772511 ], + [ 8.2281257, 47.2771825 ], + [ 8.2281925, 47.2771345 ], + [ 8.2282411, 47.2770608 ], + [ 8.2283185, 47.2769869 ], + [ 8.2283782, 47.276924 ], + [ 8.228478, 47.2768907 ], + [ 8.2285278, 47.2768512 ], + [ 8.2285447, 47.2768378 ], + [ 8.2285465, 47.2768151 ], + [ 8.2285495, 47.2767772 ], + [ 8.2285033, 47.2767527 ], + [ 8.228457, 47.2767281 ], + [ 8.2284166, 47.2766707 ], + [ 8.2284014, 47.2765438 ], + [ 8.2283771, 47.2764605 ], + [ 8.228405, 47.276377 ], + [ 8.2284922, 47.276318 ], + [ 8.2285533, 47.2762531 ], + [ 8.228591, 47.2761959 ], + [ 8.2285992, 47.2761834 ], + [ 8.2285984, 47.2761774 ], + [ 8.2285931, 47.2761348 ], + [ 8.2285434, 47.2761033 ], + [ 8.2285277, 47.2760488 ], + [ 8.2285698, 47.2760119 ], + [ 8.2286287, 47.2759391 ], + [ 8.2286375, 47.2759281 ], + [ 8.2286367, 47.2758537 ], + [ 8.2285925, 47.2758096 ], + [ 8.2285784, 47.2757954 ], + [ 8.2285785, 47.2757608 ], + [ 8.2285786, 47.2756892 ], + [ 8.2285716, 47.275677 ], + [ 8.2285408, 47.2756229 ], + [ 8.2285533, 47.2755127 ], + [ 8.2285563, 47.2754154 ], + [ 8.2285115, 47.2753373 ], + [ 8.2284, 47.2753012 ], + [ 8.2283349, 47.2752479 ], + [ 8.2282737, 47.2751817 ], + [ 8.2282259, 47.2750818 ], + [ 8.2282051, 47.274938 ], + [ 8.2281942, 47.2748159 ], + [ 8.2282016, 47.2747405 ], + [ 8.2281788, 47.2746662 ], + [ 8.2281823, 47.2746165 ], + [ 8.2281636, 47.2745392 ], + [ 8.2281624, 47.2744241 ], + [ 8.2281297, 47.274328 ], + [ 8.2281271, 47.2742168 ], + [ 8.2281134, 47.2740968 ], + [ 8.2281057, 47.2740155 ], + [ 8.2281529, 47.2739457 ], + [ 8.2281368, 47.2738565 ], + [ 8.2280753, 47.2737576 ], + [ 8.2280257, 47.2736442 ], + [ 8.227945, 47.2735181 ], + [ 8.2278729, 47.27345 ], + [ 8.2277792, 47.2734148 ], + [ 8.2276963, 47.2733726 ], + [ 8.2276767, 47.273331 ], + [ 8.2276665, 47.2732765 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "KTAG103", + "country" : "CHE", + "name" : [ + { + "text" : "Hallwilersee, Erlenhölzli", + "lang" : "de-CH" + }, + { + "text" : "Hallwilersee, Erlenhölzli", + "lang" : "fr-CH" + }, + { + "text" : "Hallwilersee, Erlenhölzli", + "lang" : "it-CH" + }, + { + "text" : "Hallwilersee, Erlenhölzli", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "regulationExemption" : "NO", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "schedule" : [ + { + "day" : [ "ANY" ], + "startTime" : "00:00:00.00+01:00", + "endTime" : "00:00:00.00+01:00" + } + ] + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Aargau", + "lang" : "de-CH" + }, + { + "text" : "Canton d'Argovie", + "lang" : "fr-CH" + }, + { + "text" : "Canton Argovia", + "lang" : "it-CH" + }, + { + "text" : "Canton of Aargau", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Departement Bau, Verkehr und Umwelt (BVU)", + "lang" : "de-CH" + }, + { + "text" : "Département de la construction, des transports et de l'environnement (CTE)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento delle costruzioni, dei trasporti e dell'ambiente (CTA)", + "lang" : "it-CH" + }, + { + "text" : "Department of Civil Engineering,Transport and Environment (CTE)", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Sektion Gewässernutzung", + "lang" : "de-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "fr-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "it-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ag.ch/de/verwaltung/bvu/umwelt-natur-landschaft/hochwasserschutz-gewaesser/gewaessernutzung", + "email" : "alg@ag.ch", + "phone" : "0041 62 835 34 50", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 5.9803882999999995, 46.1670229 ], + [ 5.9805945, 46.1680296 ], + [ 5.9812188, 46.1682649 ], + [ 5.9825731, 46.1684003 ], + [ 5.983911, 46.1682011 ], + [ 5.9850664, 46.1676919 ], + [ 5.9858959, 46.1669359 ], + [ 5.9862967, 46.166027 ], + [ 5.9863997, 46.1654343 ], + [ 5.9866245, 46.1650335 ], + [ 5.9868847, 46.164188 ], + [ 5.986972, 46.1629703 ], + [ 5.9869286, 46.1624122 ], + [ 5.9866328, 46.16112 ], + [ 5.9864887, 46.1598879 ], + [ 5.9861643, 46.1590068 ], + [ 5.9858668999999995, 46.158697599999996 ], + [ 5.9857858, 46.1580678 ], + [ 5.9851395, 46.1571694 ], + [ 5.984065, 46.1564974 ], + [ 5.9827115, 46.156145 ], + [ 5.9823563, 46.1561024 ], + [ 5.9811055, 46.1560941 ], + [ 5.9799158, 46.1563626 ], + [ 5.9789106, 46.1568801 ], + [ 5.9781943, 46.1575927 ], + [ 5.9774228, 46.1587083 ], + [ 5.9756671, 46.1598588 ], + [ 5.9756409, 46.1598677 ], + [ 5.9755317, 46.1599475 ], + [ 5.9752965, 46.1601017 ], + [ 5.9753087, 46.1601107 ], + [ 5.9753003, 46.1601168 ], + [ 5.9757832, 46.1609201 ], + [ 5.9764016, 46.1619487 ], + [ 5.976404, 46.1619527 ], + [ 5.9764064, 46.1619567 ], + [ 5.9764089, 46.1619607 ], + [ 5.9764113, 46.1619647 ], + [ 5.9764137999999996, 46.1619687 ], + [ 5.9764162, 46.1619727 ], + [ 5.9764187, 46.1619767 ], + [ 5.9764212, 46.1619807 ], + [ 5.9764236, 46.1619846 ], + [ 5.9764261, 46.1619886 ], + [ 5.9764286, 46.1619926 ], + [ 5.9764312, 46.1619966 ], + [ 5.9764337, 46.1620005 ], + [ 5.9764362, 46.1620045 ], + [ 5.9764388, 46.1620085 ], + [ 5.9764413, 46.1620124 ], + [ 5.9764439, 46.1620164 ], + [ 5.9764464, 46.1620204 ], + [ 5.976449, 46.1620243 ], + [ 5.9764516, 46.1620283 ], + [ 5.9764542, 46.1620322 ], + [ 5.9764568, 46.1620362 ], + [ 5.9764593999999995, 46.1620401 ], + [ 5.976462, 46.1620441 ], + [ 5.9764647, 46.162048 ], + [ 5.9764672999999995, 46.1620519 ], + [ 5.97647, 46.1620559 ], + [ 5.9764726, 46.1620598 ], + [ 5.9764753, 46.1620637 ], + [ 5.976478, 46.1620676 ], + [ 5.9764807, 46.1620715 ], + [ 5.9764833, 46.1620755 ], + [ 5.9764861, 46.1620794 ], + [ 5.9764888, 46.1620833 ], + [ 5.9764915, 46.1620872 ], + [ 5.9764942, 46.1620911 ], + [ 5.976497, 46.162095 ], + [ 5.9764997, 46.1620989 ], + [ 5.9765025, 46.1621028 ], + [ 5.9765052, 46.1621067 ], + [ 5.976508, 46.1621106 ], + [ 5.9765108, 46.1621145 ], + [ 5.9765136, 46.1621183 ], + [ 5.9765163999999995, 46.1621222 ], + [ 5.9765192, 46.1621261 ], + [ 5.976522, 46.16213 ], + [ 5.9765249, 46.1621338 ], + [ 5.9765277, 46.1621377 ], + [ 5.9765306, 46.1621416 ], + [ 5.9765334, 46.1621454 ], + [ 5.9765363, 46.1621493 ], + [ 5.9765391999999995, 46.1621531 ], + [ 5.9765421, 46.162157 ], + [ 5.9765449, 46.1621609 ], + [ 5.9765478, 46.1621647 ], + [ 5.9765508, 46.1621685 ], + [ 5.9765537, 46.1621724 ], + [ 5.9765566, 46.1621762 ], + [ 5.9765595, 46.16218 ], + [ 5.9765625, 46.1621839 ], + [ 5.9765654999999995, 46.1621877 ], + [ 5.9765684, 46.1621915 ], + [ 5.9765714, 46.1621953 ], + [ 5.9765744, 46.1621991 ], + [ 5.9765774, 46.162203 ], + [ 5.9765804, 46.1622068 ], + [ 5.9765834, 46.1622106 ], + [ 5.9765864, 46.1622144 ], + [ 5.9765894, 46.1622182 ], + [ 5.9765925, 46.162222 ], + [ 5.9765955, 46.1622258 ], + [ 5.9765986, 46.1622295 ], + [ 5.9766016, 46.1622333 ], + [ 5.9766047, 46.1622371 ], + [ 5.9766078, 46.1622409 ], + [ 5.9766108, 46.1622447 ], + [ 5.9766139, 46.1622484 ], + [ 5.9766171, 46.1622522 ], + [ 5.9766202, 46.162256 ], + [ 5.9766233, 46.1622597 ], + [ 5.9766264, 46.1622635 ], + [ 5.9766296, 46.1622672 ], + [ 5.9766327, 46.162271 ], + [ 5.9766359, 46.1622747 ], + [ 5.976639, 46.1622785 ], + [ 5.9766422, 46.1622822 ], + [ 5.9766454, 46.1622859 ], + [ 5.9766486, 46.1622897 ], + [ 5.9766518, 46.1622934 ], + [ 5.976655, 46.1622971 ], + [ 5.9766582, 46.1623009 ], + [ 5.9766614, 46.1623046 ], + [ 5.9766647, 46.1623083 ], + [ 5.9766679, 46.162312 ], + [ 5.9766712, 46.1623157 ], + [ 5.9766744, 46.1623194 ], + [ 5.9797648, 46.1658203 ], + [ 5.9797683, 46.1658244 ], + [ 5.9797719, 46.1658284 ], + [ 5.9797755, 46.1658325 ], + [ 5.979779, 46.1658365 ], + [ 5.9797825, 46.1658406 ], + [ 5.9797861, 46.1658447 ], + [ 5.9797896, 46.1658487 ], + [ 5.9797931, 46.1658528 ], + [ 5.9797966, 46.1658569 ], + [ 5.9798001, 46.165861 ], + [ 5.9798036, 46.1658651 ], + [ 5.979807, 46.1658692 ], + [ 5.9798105, 46.1658733 ], + [ 5.9798139, 46.1658774 ], + [ 5.9798174, 46.1658815 ], + [ 5.9798208, 46.1658856 ], + [ 5.9798241999999995, 46.1658897 ], + [ 5.9798276999999995, 46.1658938 ], + [ 5.9798311, 46.1658979 ], + [ 5.9798345, 46.165902 ], + [ 5.9798379, 46.1659061 ], + [ 5.9798413, 46.1659103 ], + [ 5.9798446, 46.1659144 ], + [ 5.979848, 46.1659185 ], + [ 5.9798514, 46.1659227 ], + [ 5.9798547, 46.1659268 ], + [ 5.979858, 46.165931 ], + [ 5.9798614, 46.1659351 ], + [ 5.9798647, 46.1659393 ], + [ 5.979868, 46.1659434 ], + [ 5.9798713, 46.1659476 ], + [ 5.9798746, 46.1659517 ], + [ 5.9798779, 46.1659559 ], + [ 5.9798812, 46.1659601 ], + [ 5.9798843999999995, 46.1659642 ], + [ 5.9798877, 46.1659684 ], + [ 5.9798909, 46.1659726 ], + [ 5.9798942, 46.1659768 ], + [ 5.9798974, 46.165981 ], + [ 5.9799006, 46.1659852 ], + [ 5.9799038, 46.1659894 ], + [ 5.979907, 46.1659935 ], + [ 5.9799102, 46.1659977 ], + [ 5.9799134, 46.166002 ], + [ 5.9799166, 46.1660062 ], + [ 5.9799198, 46.1660104 ], + [ 5.9799229, 46.1660146 ], + [ 5.9799261, 46.1660188 ], + [ 5.9799292, 46.166023 ], + [ 5.9799323, 46.1660272 ], + [ 5.9799354, 46.1660315 ], + [ 5.9799385, 46.1660357 ], + [ 5.9799416999999995, 46.1660399 ], + [ 5.9799447, 46.1660442 ], + [ 5.9799478, 46.1660484 ], + [ 5.9799509, 46.1660526 ], + [ 5.979954, 46.1660569 ], + [ 5.979957, 46.1660611 ], + [ 5.9799601, 46.1660654 ], + [ 5.9799631, 46.1660696 ], + [ 5.9799661, 46.1660739 ], + [ 5.9799692, 46.1660782 ], + [ 5.9799722, 46.1660824 ], + [ 5.9799752, 46.1660867 ], + [ 5.9799782, 46.166091 ], + [ 5.9799811, 46.1660952 ], + [ 5.9799841, 46.1660995 ], + [ 5.9799871, 46.1661038 ], + [ 5.97999, 46.1661081 ], + [ 5.979993, 46.1661124 ], + [ 5.9799959, 46.1661167 ], + [ 5.9799988, 46.166121 ], + [ 5.9800017, 46.1661253 ], + [ 5.9800047, 46.1661295 ], + [ 5.9800076, 46.1661338 ], + [ 5.9800105, 46.1661382 ], + [ 5.9800132999999995, 46.1661425 ], + [ 5.9800162, 46.1661468 ], + [ 5.9800191, 46.1661511 ], + [ 5.9800219, 46.1661554 ], + [ 5.9800248, 46.1661597 ], + [ 5.9800276, 46.166164 ], + [ 5.9800304, 46.1661684 ], + [ 5.9800332, 46.1661727 ], + [ 5.980036, 46.166177 ], + [ 5.9800388, 46.1661814 ], + [ 5.9800416, 46.1661857 ], + [ 5.9800444, 46.16619 ], + [ 5.9800471, 46.1661944 ], + [ 5.9800499, 46.1661987 ], + [ 5.9800527, 46.1662031 ], + [ 5.9800553999999995, 46.1662074 ], + [ 5.9800581, 46.1662118 ], + [ 5.9800608, 46.1662161 ], + [ 5.9800636, 46.1662205 ], + [ 5.9800661999999996, 46.1662249 ], + [ 5.9800689, 46.1662292 ], + [ 5.9800716, 46.1662336 ], + [ 5.9800743, 46.166238 ], + [ 5.980077, 46.1662424 ], + [ 5.9800796, 46.1662467 ], + [ 5.9800822, 46.1662511 ], + [ 5.9800849, 46.1662555 ], + [ 5.9800875, 46.1662599 ], + [ 5.9800901, 46.1662643 ], + [ 5.9800927, 46.1662687 ], + [ 5.9800953, 46.1662731 ], + [ 5.9800979, 46.1662774 ], + [ 5.9801005, 46.1662818 ], + [ 5.9801031, 46.1662863 ], + [ 5.9801056, 46.1662907 ], + [ 5.9801082, 46.1662951 ], + [ 5.9801107, 46.1662995 ], + [ 5.9801132, 46.1663039 ], + [ 5.9801158, 46.1663083 ], + [ 5.9801183, 46.1663127 ], + [ 5.9801208, 46.1663171 ], + [ 5.9801231999999995, 46.1663216 ], + [ 5.9801257, 46.166326 ], + [ 5.9801282, 46.1663304 ], + [ 5.9801307, 46.1663349 ], + [ 5.9801331, 46.1663393 ], + [ 5.9801356, 46.1663437 ], + [ 5.980138, 46.1663482 ], + [ 5.9801404, 46.1663526 ], + [ 5.9801428, 46.166357 ], + [ 5.9801452, 46.1663615 ], + [ 5.9801476000000005, 46.1663659 ], + [ 5.98015, 46.1663704 ], + [ 5.9801524, 46.1663748 ], + [ 5.9801548, 46.1663793 ], + [ 5.9801571, 46.1663838 ], + [ 5.9801595, 46.1663882 ], + [ 5.9801618, 46.1663927 ], + [ 5.9801641, 46.1663971 ], + [ 5.9801664, 46.1664016 ], + [ 5.9801687, 46.1664061 ], + [ 5.980171, 46.1664106 ], + [ 5.9801733, 46.166415 ], + [ 5.9801756, 46.1664195 ], + [ 5.9801779, 46.166424 ], + [ 5.9801801, 46.1664285 ], + [ 5.9801824, 46.166433 ], + [ 5.9801846, 46.1664375 ], + [ 5.9801869, 46.1664419 ], + [ 5.9801891, 46.1664464 ], + [ 5.9801912999999995, 46.1664509 ], + [ 5.9801935, 46.1664554 ], + [ 5.9801957, 46.1664599 ], + [ 5.9801979, 46.1664644 ], + [ 5.9802, 46.1664689 ], + [ 5.9802022, 46.1664734 ], + [ 5.9802043, 46.1664779 ], + [ 5.9802064999999995, 46.1664825 ], + [ 5.9802086, 46.166487 ], + [ 5.9802107, 46.1664915 ], + [ 5.9802128, 46.166496 ], + [ 5.9802149, 46.1665005 ], + [ 5.980217, 46.166505 ], + [ 5.9802191, 46.1665096 ], + [ 5.9802212, 46.1665141 ], + [ 5.9802233, 46.1665186 ], + [ 5.9802253, 46.1665232 ], + [ 5.9802274, 46.1665277 ], + [ 5.9802294, 46.1665322 ], + [ 5.9802314, 46.1665368 ], + [ 5.9802333999999995, 46.1665413 ], + [ 5.9802354, 46.1665458 ], + [ 5.9802374, 46.1665504 ], + [ 5.9802394, 46.1665549 ], + [ 5.9802414, 46.1665595 ], + [ 5.9802433, 46.166564 ], + [ 5.9802453, 46.1665686 ], + [ 5.9802472, 46.1665731 ], + [ 5.9802492, 46.1665777 ], + [ 5.9802511, 46.1665822 ], + [ 5.980253, 46.1665868 ], + [ 5.9802549, 46.1665914 ], + [ 5.9802568, 46.1665959 ], + [ 5.9802587, 46.1666005 ], + [ 5.9802606, 46.1666051 ], + [ 5.9802624, 46.1666096 ], + [ 5.9802643, 46.1666142 ], + [ 5.9802661, 46.1666188 ], + [ 5.980268, 46.1666233 ], + [ 5.9802698, 46.1666279 ], + [ 5.9802716, 46.1666325 ], + [ 5.9802734, 46.1666371 ], + [ 5.9802751999999995, 46.1666417 ], + [ 5.980277, 46.1666463 ], + [ 5.9802788, 46.1666508 ], + [ 5.9802806, 46.1666554 ], + [ 5.9802823, 46.16666 ], + [ 5.9802841, 46.1666646 ], + [ 5.9802858, 46.1666692 ], + [ 5.9802875, 46.1666738 ], + [ 5.9802892, 46.1666784 ], + [ 5.9802909, 46.166683 ], + [ 5.9802926, 46.1666876 ], + [ 5.9802943, 46.1666922 ], + [ 5.980296, 46.1666968 ], + [ 5.9802976999999995, 46.1667014 ], + [ 5.9802993, 46.166706 ], + [ 5.980301, 46.1667106 ], + [ 5.9803026, 46.1667152 ], + [ 5.9803042, 46.1667199 ], + [ 5.9803058, 46.1667245 ], + [ 5.9803074, 46.1667291 ], + [ 5.980309, 46.1667337 ], + [ 5.9803106, 46.1667383 ], + [ 5.9803122, 46.1667429 ], + [ 5.9803138, 46.1667476 ], + [ 5.9803153, 46.1667522 ], + [ 5.9803169, 46.1667568 ], + [ 5.9803184, 46.1667614 ], + [ 5.9803199, 46.1667661 ], + [ 5.9803215, 46.1667707 ], + [ 5.980323, 46.1667753 ], + [ 5.9803245, 46.16678 ], + [ 5.9803259, 46.1667846 ], + [ 5.9803274, 46.1667893 ], + [ 5.9803289, 46.1667939 ], + [ 5.9803303, 46.1667985 ], + [ 5.9803318, 46.1668032 ], + [ 5.9803332, 46.1668078 ], + [ 5.9803346, 46.1668125 ], + [ 5.9803361, 46.1668171 ], + [ 5.9803375, 46.1668218 ], + [ 5.9803389, 46.1668264 ], + [ 5.9803402, 46.1668311 ], + [ 5.9803416, 46.1668357 ], + [ 5.9803429999999995, 46.1668404 ], + [ 5.9803443, 46.166845 ], + [ 5.9803457, 46.1668497 ], + [ 5.980347, 46.1668543 ], + [ 5.9803483, 46.166859 ], + [ 5.9803497, 46.1668637 ], + [ 5.980351, 46.1668683 ], + [ 5.9803523, 46.166873 ], + [ 5.9803535, 46.1668777 ], + [ 5.9803548, 46.1668823 ], + [ 5.9803561, 46.166887 ], + [ 5.9803573, 46.1668917 ], + [ 5.9803586, 46.1668963 ], + [ 5.9803598000000004, 46.166901 ], + [ 5.980361, 46.1669057 ], + [ 5.9803622, 46.1669103 ], + [ 5.9803634, 46.166915 ], + [ 5.9803646, 46.1669197 ], + [ 5.9803657999999995, 46.1669244 ], + [ 5.980367, 46.1669291 ], + [ 5.9803681, 46.1669337 ], + [ 5.9803692999999996, 46.1669384 ], + [ 5.9803704, 46.1669431 ], + [ 5.9803716, 46.1669478 ], + [ 5.9803727, 46.1669525 ], + [ 5.9803738, 46.1669572 ], + [ 5.9803749, 46.1669618 ], + [ 5.980376, 46.1669665 ], + [ 5.9803771, 46.1669712 ], + [ 5.9803781, 46.1669759 ], + [ 5.9803792, 46.1669806 ], + [ 5.9803803, 46.1669853 ], + [ 5.9803813, 46.16699 ], + [ 5.9803823, 46.1669947 ], + [ 5.9803833, 46.1669994 ], + [ 5.9803844, 46.1670041 ], + [ 5.9803854, 46.1670088 ], + [ 5.9803863, 46.1670135 ], + [ 5.9803873, 46.1670182 ], + [ 5.9803882999999995, 46.1670229 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-20", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.519902, 47.5388269 ], + [ 7.5198632, 47.5386826 ], + [ 7.5198497, 47.538632 ], + [ 7.5198202, 47.5385219 ], + [ 7.5197738, 47.5383415 ], + [ 7.5197294, 47.5381683 ], + [ 7.5197099, 47.5380924 ], + [ 7.5196651, 47.5380108 ], + [ 7.5196272, 47.5379417 ], + [ 7.5195796999999995, 47.5378549 ], + [ 7.5195321, 47.5377681 ], + [ 7.5194857, 47.5376834 ], + [ 7.5194259, 47.5375575 ], + [ 7.5193408999999996, 47.5373789 ], + [ 7.5193051, 47.5373037 ], + [ 7.5192193, 47.537092200000004 ], + [ 7.5191994, 47.5370431 ], + [ 7.5191508, 47.5369233 ], + [ 7.519131, 47.5368745 ], + [ 7.5191194, 47.5368452 ], + [ 7.5190825, 47.5367525 ], + [ 7.5189996, 47.5365445 ], + [ 7.5197081, 47.5363444 ], + [ 7.5198868, 47.536291 ], + [ 7.5200133000000005, 47.5364879 ], + [ 7.5206178999999995, 47.536316 ], + [ 7.5205152, 47.5361248 ], + [ 7.5208823, 47.5360331 ], + [ 7.5212174, 47.5359216 ], + [ 7.521756, 47.5357434 ], + [ 7.5218035, 47.5357277 ], + [ 7.5219153, 47.5358742 ], + [ 7.5224405, 47.5359775 ], + [ 7.5225365, 47.5359926 ], + [ 7.5229522, 47.5360578 ], + [ 7.5235134, 47.5361431 ], + [ 7.523725, 47.5361602 ], + [ 7.5235302, 47.5356015 ], + [ 7.523426, 47.5354279 ], + [ 7.5232474, 47.53524 ], + [ 7.5229876, 47.5350557 ], + [ 7.522951, 47.5350352 ], + [ 7.5226143, 47.5353032 ], + [ 7.5224858, 47.5352289 ], + [ 7.5222812, 47.5351105 ], + [ 7.5220617, 47.5349836 ], + [ 7.5217846, 47.5347923 ], + [ 7.5216331, 47.534681 ], + [ 7.5214541, 47.5345573 ], + [ 7.521363, 47.5344939 ], + [ 7.5212497, 47.534423 ], + [ 7.5212306, 47.5344143 ], + [ 7.5210722, 47.5343352 ], + [ 7.5209018, 47.5342588 ], + [ 7.5208953, 47.5342621 ], + [ 7.5208197, 47.5343035 ], + [ 7.5207093, 47.5341682 ], + [ 7.5206568, 47.534105 ], + [ 7.5193596, 47.5347231 ], + [ 7.5182139, 47.534253 ], + [ 7.5177311, 47.5340549 ], + [ 7.5157988, 47.5329516 ], + [ 7.5157862, 47.5329383 ], + [ 7.5157655, 47.5329484 ], + [ 7.5152886, 47.5331804 ], + [ 7.5147405, 47.5335048 ], + [ 7.5141686, 47.5338413 ], + [ 7.5136093, 47.5341713 ], + [ 7.512952, 47.5346312 ], + [ 7.5131128, 47.5350246 ], + [ 7.5130402, 47.5354077 ], + [ 7.5133988, 47.5357591 ], + [ 7.5134198, 47.5357813 ], + [ 7.5137331, 47.536111 ], + [ 7.5140517, 47.5363302 ], + [ 7.5141873, 47.5365443 ], + [ 7.514203, 47.5365691 ], + [ 7.5142853, 47.5367421 ], + [ 7.5144057, 47.5369484 ], + [ 7.5145951, 47.5372988 ], + [ 7.5145546, 47.5376573 ], + [ 7.5146459, 47.5378511 ], + [ 7.5148793, 47.5379954 ], + [ 7.5149851, 47.5382857 ], + [ 7.5150473, 47.5385828 ], + [ 7.5150535, 47.5386127 ], + [ 7.5150576000000004, 47.5386322 ], + [ 7.5155727, 47.5390588 ], + [ 7.5158803, 47.5393084 ], + [ 7.5161587, 47.5396008 ], + [ 7.5164603, 47.539906 ], + [ 7.5167929, 47.5402359 ], + [ 7.5168154, 47.5402582 ], + [ 7.5171234, 47.5405926 ], + [ 7.5174139, 47.541146499999996 ], + [ 7.5177504, 47.5415406 ], + [ 7.5182129, 47.5421455 ], + [ 7.5185462, 47.542441 ], + [ 7.5189392, 47.5426897 ], + [ 7.5202723, 47.5432147 ], + [ 7.5202594, 47.5430545 ], + [ 7.5208039, 47.5431301 ], + [ 7.5213143, 47.543176 ], + [ 7.5216769, 47.5429591 ], + [ 7.522177, 47.543626 ], + [ 7.5224596, 47.5438016 ], + [ 7.5227096, 47.5439662 ], + [ 7.5228071, 47.5440305 ], + [ 7.5231387, 47.5437754 ], + [ 7.523459, 47.543548799999996 ], + [ 7.5230819, 47.5432236 ], + [ 7.5228287, 47.5429573 ], + [ 7.5224999, 47.5425893 ], + [ 7.5222978, 47.5423237 ], + [ 7.5221285, 47.5420629 ], + [ 7.5220379, 47.5418496 ], + [ 7.5221521, 47.5416078 ], + [ 7.5222012, 47.5416224 ], + [ 7.5227749, 47.5413446 ], + [ 7.5229349, 47.5416233 ], + [ 7.5234157, 47.5424473 ], + [ 7.5238322, 47.5422072 ], + [ 7.5238626, 47.5421897 ], + [ 7.5240871, 47.5424048 ], + [ 7.5246325, 47.542158 ], + [ 7.5251041, 47.5419446 ], + [ 7.5256549, 47.5416955 ], + [ 7.5249122, 47.540962 ], + [ 7.5248812, 47.5409251 ], + [ 7.5246007, 47.5405913 ], + [ 7.5245505999999995, 47.5405044 ], + [ 7.5242169, 47.5399252 ], + [ 7.5242088, 47.539911000000004 ], + [ 7.524097, 47.5397358 ], + [ 7.5240805, 47.5397101 ], + [ 7.5242037, 47.5396862 ], + [ 7.523386, 47.538324 ], + [ 7.5233413, 47.5383305 ], + [ 7.5232437, 47.5383425 ], + [ 7.5232119, 47.538347 ], + [ 7.5238053, 47.539302 ], + [ 7.5238739, 47.5394125 ], + [ 7.5237818, 47.539381 ], + [ 7.5236887, 47.5393492 ], + [ 7.5236402, 47.5393325 ], + [ 7.5234384, 47.5390322 ], + [ 7.5232978, 47.5387572 ], + [ 7.5231039, 47.5383623 ], + [ 7.5218581, 47.5384238 ], + [ 7.5217982, 47.5384329 ], + [ 7.5212082, 47.5386368 ], + [ 7.5206504, 47.5386799 ], + [ 7.519902, 47.5388269 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns072", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Allschwilerwald", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Allschwilerwald", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Allschwilerwald", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Allschwilerwald", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8598748, 47.4334836 ], + [ 7.8600168, 47.4337752 ], + [ 7.860361, 47.4338284 ], + [ 7.86069, 47.433784 ], + [ 7.863703, 47.4324895 ], + [ 7.8638459, 47.4324241 ], + [ 7.8640283, 47.4323111 ], + [ 7.8640318, 47.4322618 ], + [ 7.8640414, 47.4322128 ], + [ 7.8640568, 47.4321645 ], + [ 7.864078, 47.4321173 ], + [ 7.8641149, 47.4320565 ], + [ 7.8641373, 47.4320271 ], + [ 7.8641749999999995, 47.4319848 ], + [ 7.8642176, 47.4319448 ], + [ 7.864265, 47.4319073 ], + [ 7.8644928, 47.4317413 ], + [ 7.8645144, 47.4317241 ], + [ 7.8645339, 47.4317057 ], + [ 7.8646196, 47.4320004 ], + [ 7.8662442, 47.4317076 ], + [ 7.8663004999999995, 47.4315958 ], + [ 7.8663671, 47.4314867 ], + [ 7.8664439999999995, 47.4313806 ], + [ 7.8665906, 47.4311933 ], + [ 7.8666424, 47.4311334 ], + [ 7.8667017, 47.4310767 ], + [ 7.8667678, 47.4310237 ], + [ 7.8668404, 47.4309748 ], + [ 7.8675722, 47.4305222 ], + [ 7.8676103, 47.4304978 ], + [ 7.8676469, 47.4304723 ], + [ 7.867682, 47.4304458 ], + [ 7.8678761, 47.4302935 ], + [ 7.8679673, 47.4302163 ], + [ 7.86805, 47.4301348 ], + [ 7.8681237, 47.4300494 ], + [ 7.8683264, 47.4297932 ], + [ 7.8683773, 47.4297348 ], + [ 7.8684349000000005, 47.4296793 ], + [ 7.8684989, 47.4296272 ], + [ 7.8685689, 47.4295787 ], + [ 7.8686571999999995, 47.4295224 ], + [ 7.8686596, 47.4295207 ], + [ 7.8686618, 47.4295189 ], + [ 7.8686637, 47.4295169 ], + [ 7.8686654, 47.4295149 ], + [ 7.8687197, 47.4294456 ], + [ 7.8687463, 47.4294464 ], + [ 7.8691225, 47.4294444 ], + [ 7.8692258, 47.4294449 ], + [ 7.8693288, 47.4294512 ], + [ 7.8694306, 47.4294633 ], + [ 7.8695305, 47.4294812 ], + [ 7.8696279, 47.4295046 ], + [ 7.8696681, 47.4295161 ], + [ 7.8697077, 47.4295286 ], + [ 7.8697466, 47.429542 ], + [ 7.8697769, 47.4295533 ], + [ 7.8698067, 47.4295651 ], + [ 7.8698361, 47.4295776 ], + [ 7.869942, 47.4296238 ], + [ 7.8700485, 47.4296702 ], + [ 7.8700588, 47.4296747 ], + [ 7.8701558, 47.4297128 ], + [ 7.8702577, 47.4297446 ], + [ 7.8703635, 47.4297697 ], + [ 7.8704723, 47.4297879 ], + [ 7.8705831, 47.4297992 ], + [ 7.871235, 47.4298425 ], + [ 7.8712807, 47.4296789 ], + [ 7.8712995, 47.4295724 ], + [ 7.8712563, 47.4294311 ], + [ 7.8712262, 47.4293553 ], + [ 7.8711722, 47.4292994 ], + [ 7.8713451, 47.429134 ], + [ 7.8715853, 47.4289402 ], + [ 7.8714319, 47.4288934 ], + [ 7.8712477, 47.4288511 ], + [ 7.8708536, 47.42878 ], + [ 7.8705049, 47.428731 ], + [ 7.8697563, 47.4285671 ], + [ 7.8692649, 47.4284369 ], + [ 7.8689103, 47.4283795 ], + [ 7.868476, 47.4283695 ], + [ 7.8680448, 47.4283923 ], + [ 7.8676167, 47.4284524 ], + [ 7.8672757, 47.4285327 ], + [ 7.8668911, 47.428652 ], + [ 7.866487, 47.428828 ], + [ 7.8662153, 47.4289643 ], + [ 7.8658841, 47.429169 ], + [ 7.865576, 47.4293921 ], + [ 7.8650836, 47.4297874 ], + [ 7.8649952, 47.4298553 ], + [ 7.8649869, 47.42985 ], + [ 7.8649101, 47.429905 ], + [ 7.8645033, 47.4301961 ], + [ 7.8642088, 47.4304188 ], + [ 7.8640236, 47.4305026 ], + [ 7.8636625, 47.4305739 ], + [ 7.8634927, 47.4306463 ], + [ 7.862838, 47.4310308 ], + [ 7.8623731, 47.4313073 ], + [ 7.8619807999999995, 47.431496 ], + [ 7.8617283, 47.4315931 ], + [ 7.8613626, 47.4317338 ], + [ 7.8606756, 47.4319969 ], + [ 7.8603623, 47.4321373 ], + [ 7.8600902999999995, 47.4322672 ], + [ 7.859864, 47.4324371 ], + [ 7.8597045, 47.4327965 ], + [ 7.8597228999999995, 47.4330585 ], + [ 7.859837, 47.4333543 ], + [ 7.8598748, 47.4334836 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns282", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Chrindel", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Chrindel", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Chrindel", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Chrindel", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.0398041, 46.7765485 ], + [ 7.1180834, 46.7727305 ], + [ 7.1134044, 46.7310404 ], + [ 7.0353229, 46.7347185 ], + [ 7.0398041, 46.7765485 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSGE001", + "country" : "CHE", + "name" : [ + { + "text" : "LSGE Ecuvillens", + "lang" : "de-CH" + }, + { + "text" : "LSGE Ecuvillens", + "lang" : "fr-CH" + }, + { + "text" : "LSGE Ecuvillens", + "lang" : "it-CH" + }, + { + "text" : "LSGE Ecuvillens", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Aérodrome Régional Fribourg Ecuvillens SA", + "lang" : "de-CH" + }, + { + "text" : "Aérodrome Régional Fribourg Ecuvillens SA", + "lang" : "fr-CH" + }, + { + "text" : "Aérodrome Régional Fribourg Ecuvillens SA", + "lang" : "it-CH" + }, + { + "text" : "Aérodrome Régional Fribourg Ecuvillens SA", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Chef d'aérodrome", + "lang" : "de-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "fr-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "it-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.aerodrome-ecuvillens.ch/index.php?page=./drones/drones_LSGE.htm", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8259955, 47.4737183 ], + [ 7.8263068, 47.4744853 ], + [ 7.8272641, 47.4747305 ], + [ 7.8267942, 47.474421 ], + [ 7.8264584, 47.4742173 ], + [ 7.8259955, 47.4737183 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr106", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Bischofstein", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Bischofstein", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Bischofstein", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Bischofstein", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.9920065, 46.1253465 ], + [ 8.9920223, 46.1253744 ], + [ 8.9920048, 46.1254086 ], + [ 8.9919718, 46.125432 ], + [ 8.9919183, 46.1254394 ], + [ 8.9918868, 46.12544 ], + [ 8.9918567, 46.1254282 ], + [ 8.9918453, 46.1254396 ], + [ 8.9911691, 46.1261142 ], + [ 8.9915609, 46.1261863 ], + [ 8.9909437, 46.126841 ], + [ 8.990719, 46.1269282 ], + [ 8.990599, 46.1269747 ], + [ 8.9906082, 46.1270555 ], + [ 8.9905862, 46.1271328 ], + [ 8.9905289, 46.1272276 ], + [ 8.9904909, 46.1273136 ], + [ 8.990492, 46.127347 ], + [ 8.9905318, 46.1273942 ], + [ 8.9905827, 46.127422 ], + [ 8.990654, 46.1274238 ], + [ 8.9907564, 46.1274244 ], + [ 8.9908143, 46.1274435 ], + [ 8.990845, 46.1274865 ], + [ 8.9908631, 46.1275384 ], + [ 8.9908758, 46.1276246 ], + [ 8.9909012, 46.1276727 ], + [ 8.9909501, 46.1277227 ], + [ 8.9910151, 46.127761 ], + [ 8.99116, 46.1278284 ], + [ 8.9912647, 46.1278682 ], + [ 8.9914093, 46.1278999 ], + [ 8.9916646, 46.1279471 ], + [ 8.9917611, 46.1279709 ], + [ 8.9918872, 46.1280242 ], + [ 8.9919884, 46.1281005 ], + [ 8.9921506, 46.1282435 ], + [ 8.9921839, 46.1283058 ], + [ 8.992191, 46.1283706 ], + [ 8.992099, 46.1284489 ], + [ 8.9919615, 46.1284989 ], + [ 8.9917397, 46.1285537 ], + [ 8.991673, 46.1285501 ], + [ 8.9916282, 46.1285342 ], + [ 8.9915822, 46.1285112 ], + [ 8.9914805, 46.1284189 ], + [ 8.9914647, 46.1283941 ], + [ 8.9914846, 46.1283683 ], + [ 8.9916221, 46.1282961 ], + [ 8.9916407, 46.1282658 ], + [ 8.9916208, 46.1282384 ], + [ 8.991515, 46.1281901 ], + [ 8.9913991, 46.1281655 ], + [ 8.9913247, 46.1281776 ], + [ 8.9912613, 46.1281966 ], + [ 8.9909383, 46.1283618 ], + [ 8.9907865, 46.1284081 ], + [ 8.9906069, 46.1284816 ], + [ 8.9904997, 46.1285656 ], + [ 8.9904628, 46.1286093 ], + [ 8.9904701, 46.1286555 ], + [ 8.9905421, 46.1287328 ], + [ 8.9905736, 46.128792 ], + [ 8.9904717, 46.1287789 ], + [ 8.9902973, 46.1287633 ], + [ 8.9902305, 46.1287846 ], + [ 8.9902012, 46.1288289 ], + [ 8.9902334, 46.1288685 ], + [ 8.9902897, 46.1288918 ], + [ 8.9903535, 46.1288966 ], + [ 8.9904872, 46.1288986 ], + [ 8.9905809, 46.1289121 ], + [ 8.9906338, 46.1289207 ], + [ 8.990703, 46.1289382 ], + [ 8.9907665, 46.1289615 ], + [ 8.9908226, 46.1289901 ], + [ 8.9908752, 46.1290235 ], + [ 8.9909245, 46.1290618 ], + [ 8.990963, 46.1291043 ], + [ 8.9909823, 46.129155 ], + [ 8.9909803, 46.1292022 ], + [ 8.9909428, 46.1292428 ], + [ 8.9908841, 46.1292729 ], + [ 8.9908537, 46.1292839 ], + [ 8.9906981, 46.1293287 ], + [ 8.9906891, 46.1293713 ], + [ 8.9907373, 46.129451 ], + [ 8.9908482, 46.1295001 ], + [ 8.990753999999999, 46.1296878 ], + [ 8.9908161, 46.1297178 ], + [ 8.9908603, 46.1298118 ], + [ 8.9908018, 46.1300046 ], + [ 8.9905926, 46.1300465 ], + [ 8.9904348, 46.1300772 ], + [ 8.9903157, 46.1301386 ], + [ 8.989988, 46.1298563 ], + [ 8.9899158, 46.1298074 ], + [ 8.9898352, 46.1297661 ], + [ 8.9897469, 46.1297319 ], + [ 8.9896536, 46.1297045 ], + [ 8.9893292, 46.1296266 ], + [ 8.9892917, 46.1296165 ], + [ 8.9892546, 46.1296066 ], + [ 8.9892614, 46.1295866 ], + [ 8.9892178, 46.1295276 ], + [ 8.9892186, 46.129496 ], + [ 8.9892378, 46.1294659 ], + [ 8.9890806, 46.1294616 ], + [ 8.9889739, 46.1294682 ], + [ 8.9887923, 46.1294805 ], + [ 8.9887045, 46.1294864 ], + [ 8.9887241, 46.1294899 ], + [ 8.9887821, 46.1294943 ], + [ 8.9888467, 46.1295052 ], + [ 8.9888674, 46.1295086 ], + [ 8.9889384, 46.1295283 ], + [ 8.9889286, 46.1295454 ], + [ 8.9890843, 46.1296095 ], + [ 8.989086799999999, 46.1296064 ], + [ 8.9891487, 46.1296199 ], + [ 8.9892111, 46.1296316 ], + [ 8.9892398, 46.129638 ], + [ 8.9892789, 46.1296502 ], + [ 8.9895679, 46.129729 ], + [ 8.9896522, 46.1297555 ], + [ 8.9897321, 46.1297859 ], + [ 8.9898101, 46.1298217 ], + [ 8.9898838, 46.129861 ], + [ 8.9899534, 46.1299036 ], + [ 8.9898627, 46.130024 ], + [ 8.9897976, 46.1301106 ], + [ 8.9894136, 46.1299541 ], + [ 8.9891472, 46.1301727 ], + [ 8.9890123, 46.1302836 ], + [ 8.9889667, 46.1302643 ], + [ 8.9888838, 46.1302528 ], + [ 8.9888082, 46.1302424 ], + [ 8.9887132, 46.1302011 ], + [ 8.9885855, 46.1301501 ], + [ 8.988579099999999, 46.1301479 ], + [ 8.988545, 46.1301364 ], + [ 8.9885127, 46.130125 ], + [ 8.9884044, 46.1300908 ], + [ 8.988294, 46.130056 ], + [ 8.9882824, 46.1300523 ], + [ 8.9880227, 46.1299693 ], + [ 8.9880203, 46.129973 ], + [ 8.9878624, 46.1299223 ], + [ 8.9877367, 46.1298804 ], + [ 8.9876628, 46.1299387 ], + [ 8.9877355, 46.1299614 ], + [ 8.9878111, 46.1299851 ], + [ 8.9880019, 46.130041 ], + [ 8.988134, 46.1300714 ], + [ 8.9882789, 46.1301192 ], + [ 8.9884066, 46.1301585 ], + [ 8.9884883, 46.1301851 ], + [ 8.9885072, 46.1301918 ], + [ 8.9885711, 46.1302143 ], + [ 8.9886283, 46.1302368 ], + [ 8.9886595, 46.1302491 ], + [ 8.988715, 46.1302734 ], + [ 8.9887453, 46.1302867 ], + [ 8.9888019, 46.1303134 ], + [ 8.9888577, 46.1303415 ], + [ 8.9889114, 46.1303706 ], + [ 8.9889644, 46.130401 ], + [ 8.9890157, 46.1304323 ], + [ 8.9890656, 46.130465 ], + [ 8.9891142, 46.1304985 ], + [ 8.989161, 46.1305333 ], + [ 8.9892065, 46.1305689 ], + [ 8.9892501, 46.1306055 ], + [ 8.989291399999999, 46.1306422 ], + [ 8.9893303, 46.1306789 ], + [ 8.9893694, 46.1307181 ], + [ 8.98938, 46.1307288 ], + [ 8.9893469, 46.1307614 ], + [ 8.9893851, 46.1308011 ], + [ 8.9894174, 46.1308398 ], + [ 8.989447, 46.1308847 ], + [ 8.9895517, 46.1310589 ], + [ 8.9896458, 46.131102 ], + [ 8.9898007, 46.1313551 ], + [ 8.9898414, 46.1314205 ], + [ 8.9898863, 46.1314853 ], + [ 8.9899355, 46.1315485 ], + [ 8.989988499999999, 46.1316102 ], + [ 8.9900457, 46.13167 ], + [ 8.9901041, 46.1317287 ], + [ 8.9901738, 46.1317888 ], + [ 8.9902434, 46.1318423 ], + [ 8.9903162, 46.1318943 ], + [ 8.9903663, 46.1319267 ], + [ 8.9904165, 46.1319584 ], + [ 8.9905076, 46.1320815 ], + [ 8.9906448, 46.13221 ], + [ 8.9908734, 46.1323886 ], + [ 8.9911977, 46.1326024 ], + [ 8.9915772, 46.1328129 ], + [ 8.9919187, 46.1329312 ], + [ 8.9920824, 46.1330181 ], + [ 8.9921079, 46.1330739 ], + [ 8.9922588, 46.1330633 ], + [ 8.9923628, 46.1330903 ], + [ 8.9924909, 46.1331495 ], + [ 8.9926275, 46.1331809 ], + [ 8.992765, 46.1332397 ], + [ 8.9928675, 46.133259699999996 ], + [ 8.9929402, 46.1332648 ], + [ 8.9929203, 46.133195 ], + [ 8.9930967, 46.1332265 ], + [ 8.9931997, 46.133245 ], + [ 8.9937495, 46.1334858 ], + [ 8.993502, 46.133829 ], + [ 8.993443, 46.133959 ], + [ 8.9935273, 46.1340066 ], + [ 8.9937839, 46.1341517 ], + [ 8.9939488, 46.1341815 ], + [ 8.9941173, 46.1342623 ], + [ 8.9942608, 46.1343641 ], + [ 8.9944294, 46.1345871 ], + [ 8.9945853, 46.1346988 ], + [ 8.9945966, 46.1347703 ], + [ 8.9949039, 46.1349173 ], + [ 8.995176, 46.135011 ], + [ 8.9952538, 46.1350607 ], + [ 8.9953763, 46.1351861 ], + [ 8.9955215, 46.1352443 ], + [ 8.995627, 46.1353624 ], + [ 8.9956282, 46.135414 ], + [ 8.9956711, 46.1355292 ], + [ 8.9957861, 46.1356517 ], + [ 8.9958389, 46.1357427 ], + [ 8.9961219, 46.1359379 ], + [ 8.9963486, 46.1359951 ], + [ 8.9963135, 46.1361168 ], + [ 8.9963911, 46.136355 ], + [ 8.9965123, 46.1364896 ], + [ 8.9965944, 46.136649 ], + [ 8.9966837, 46.1367458 ], + [ 8.9967591, 46.1367885 ], + [ 8.9968386, 46.1368963 ], + [ 8.9969144, 46.1369941 ], + [ 8.9963226, 46.1372278 ], + [ 8.9962407, 46.1375944 ], + [ 8.9960164, 46.1379815 ], + [ 8.9958033, 46.1381978 ], + [ 8.9956304, 46.1380115 ], + [ 8.9955314, 46.138104 ], + [ 8.9953994, 46.1382049 ], + [ 8.9952026, 46.1381351 ], + [ 8.9949558, 46.1381413 ], + [ 8.994803, 46.1380744 ], + [ 8.9947744, 46.1381381 ], + [ 8.9944858, 46.1381399 ], + [ 8.9941243, 46.1381565 ], + [ 8.9940141, 46.1380496 ], + [ 8.9939716, 46.1380505 ], + [ 8.9937904, 46.1380796 ], + [ 8.9934195, 46.1382084 ], + [ 8.9936844, 46.1382701 ], + [ 8.9938763, 46.1383757 ], + [ 8.9936715, 46.1390169 ], + [ 8.9937614, 46.1388985 ], + [ 8.9938287, 46.1388624 ], + [ 8.9940057, 46.1388636 ], + [ 8.9938996, 46.1389583 ], + [ 8.9938677, 46.1389397 ], + [ 8.993715, 46.1390467 ], + [ 8.9936551, 46.1390861 ], + [ 8.9936258, 46.13921 ], + [ 8.9936013, 46.1392275 ], + [ 8.9935845, 46.1392995 ], + [ 8.9936216, 46.1394695 ], + [ 8.9936216, 46.1395429 ], + [ 8.9935864, 46.1397445 ], + [ 8.9936185, 46.139811 ], + [ 8.993815399999999, 46.1399961 ], + [ 8.9938549, 46.1400578 ], + [ 8.9938672, 46.1401199 ], + [ 8.9938286, 46.1403131 ], + [ 8.9938477, 46.1404555 ], + [ 8.9938329, 46.1405181 ], + [ 8.993777399999999, 46.1405723 ], + [ 8.9936851, 46.1406319 ], + [ 8.9935227, 46.1406941 ], + [ 8.9934479, 46.1407318 ], + [ 8.9933854, 46.1407926 ], + [ 8.9933449, 46.1408802 ], + [ 8.9933472, 46.1410108 ], + [ 8.993381, 46.1411629 ], + [ 8.9933819, 46.1412143 ], + [ 8.993360000000001, 46.1412405 ], + [ 8.9932078, 46.1413159 ], + [ 8.993003, 46.1414357 ], + [ 8.9929516, 46.1414822 ], + [ 8.9928718, 46.1415305 ], + [ 8.9926934, 46.1416084 ], + [ 8.9922442, 46.1417252 ], + [ 8.9922816, 46.141747 ], + [ 8.9932949, 46.1423006 ], + [ 8.9933536, 46.1423329 ], + [ 8.9941027, 46.1427432 ], + [ 8.9950508, 46.1431713 ], + [ 8.9952176, 46.1433516 ], + [ 8.9977536, 46.1443927 ], + [ 8.9987301, 46.1448855 ], + [ 9.0008999, 46.1455956 ], + [ 9.0017978, 46.1458932 ], + [ 9.0025242, 46.1460063 ], + [ 9.0044486, 46.1464107 ], + [ 9.0060716, 46.1471283 ], + [ 9.0084333, 46.1477757 ], + [ 9.0094168, 46.1477807 ], + [ 9.0115485, 46.1479753 ], + [ 9.0127224, 46.1462942 ], + [ 9.0166593, 46.1457608 ], + [ 9.0173059, 46.1457853 ], + [ 9.0183233, 46.1449149 ], + [ 9.0217141, 46.1440018 ], + [ 9.0227371, 46.1435386 ], + [ 9.0234734, 46.1433954 ], + [ 9.0238181, 46.1434772 ], + [ 9.0243761, 46.1434843 ], + [ 9.0245829, 46.1437106 ], + [ 9.0249178, 46.1439255 ], + [ 9.0252543, 46.1445066 ], + [ 9.0254301, 46.1452022 ], + [ 9.0269927, 46.1454109 ], + [ 9.0279677, 46.145421 ], + [ 9.0285204, 46.1457875 ], + [ 9.0308503, 46.146218 ], + [ 9.0316403, 46.1470074 ], + [ 9.0325241, 46.1469217 ], + [ 9.0332407, 46.1445189 ], + [ 9.0334115, 46.1437796 ], + [ 9.0335203, 46.1432944 ], + [ 9.0335651, 46.1425972 ], + [ 9.0340043, 46.1421144 ], + [ 9.0342676, 46.141994 ], + [ 9.0345471, 46.1417999 ], + [ 9.0349468, 46.140939 ], + [ 9.0350601, 46.1411435 ], + [ 9.035259, 46.1412474 ], + [ 9.0362804, 46.1415823 ], + [ 9.0373711, 46.1418078 ], + [ 9.0376619, 46.141951 ], + [ 9.0378306, 46.1422392 ], + [ 9.0380451, 46.1424851 ], + [ 9.0381367, 46.1429607 ], + [ 9.0385814, 46.1433109 ], + [ 9.0388226, 46.1433379 ], + [ 9.0391435, 46.1434908 ], + [ 9.0392967, 46.1439619 ], + [ 9.039985099999999, 46.1441335 ], + [ 9.0404515, 46.1441641 ], + [ 9.0407273, 46.1441364 ], + [ 9.0414944, 46.144007 ], + [ 9.0420808, 46.1439381 ], + [ 9.0431915, 46.1436811 ], + [ 9.0434837, 46.1436695 ], + [ 9.0436427, 46.1435965 ], + [ 9.043799, 46.1435567 ], + [ 9.0450089, 46.1431031 ], + [ 9.0476511, 46.1419489 ], + [ 9.0479721, 46.1416655 ], + [ 9.0496701, 46.1410609 ], + [ 9.0505492, 46.1404975 ], + [ 9.0509505, 46.1401491 ], + [ 9.0509636, 46.1396455 ], + [ 9.0510883, 46.139523 ], + [ 9.0510021, 46.1391748 ], + [ 9.0509689, 46.1383134 ], + [ 9.0508873, 46.1379978 ], + [ 9.0507048, 46.137619 ], + [ 9.0505206, 46.1373683 ], + [ 9.0505149, 46.1369645 ], + [ 9.0505406, 46.1366991 ], + [ 9.0506383, 46.1363325 ], + [ 9.0506093, 46.1360854 ], + [ 9.050449, 46.1356975 ], + [ 9.0503882, 46.1353318 ], + [ 9.050942, 46.1349466 ], + [ 9.0511188, 46.1347346 ], + [ 9.0519122, 46.1343104 ], + [ 9.0522776, 46.1340082 ], + [ 9.0523398, 46.1339814 ], + [ 9.0524032, 46.1339561 ], + [ 9.0524678, 46.1339323 ], + [ 9.0525335, 46.13391 ], + [ 9.0526003, 46.1338892 ], + [ 9.052668, 46.1338701 ], + [ 9.0527366, 46.1338525 ], + [ 9.0528131, 46.133835 ], + [ 9.0528904, 46.1338195 ], + [ 9.0529686, 46.133806 ], + [ 9.0530473, 46.1337946 ], + [ 9.0531267, 46.1337851 ], + [ 9.0532065, 46.1337777 ], + [ 9.0532866, 46.1337724 ], + [ 9.0542585, 46.1334717 ], + [ 9.0547141, 46.1334197 ], + [ 9.0547721, 46.1334061 ], + [ 9.0548292, 46.1333908 ], + [ 9.0548853, 46.1333738 ], + [ 9.0549403, 46.1333551 ], + [ 9.054994, 46.1333348 ], + [ 9.0550464, 46.1333128 ], + [ 9.0550974, 46.1332894 ], + [ 9.0551617, 46.1332564 ], + [ 9.0552231, 46.133221 ], + [ 9.0552816, 46.1331833 ], + [ 9.0553369, 46.1331433 ], + [ 9.0553889, 46.1331012 ], + [ 9.0554373, 46.1330571 ], + [ 9.0554821, 46.1330112 ], + [ 9.0555144, 46.132982 ], + [ 9.0555474, 46.1329532 ], + [ 9.0555809, 46.1329247 ], + [ 9.0556151, 46.1328966 ], + [ 9.0556498, 46.1328688 ], + [ 9.0556852, 46.1328413 ], + [ 9.055721, 46.1328142 ], + [ 9.0557585, 46.1327868 ], + [ 9.0557965, 46.1327598 ], + [ 9.0558351, 46.1327331 ], + [ 9.0558743, 46.1327069 ], + [ 9.055914, 46.1326811 ], + [ 9.0559543, 46.1326557 ], + [ 9.0559951, 46.1326307 ], + [ 9.0559813, 46.1325973 ], + [ 9.0559706, 46.1325635 ], + [ 9.0559631, 46.1325292 ], + [ 9.0559589, 46.1324946 ], + [ 9.0559579, 46.1324599 ], + [ 9.0559601, 46.1324253 ], + [ 9.0559656, 46.1323908 ], + [ 9.0559743, 46.1323567 ], + [ 9.0559862, 46.132323 ], + [ 9.0560012, 46.1322899 ], + [ 9.056019299999999, 46.1322576 ], + [ 9.0560404, 46.1322262 ], + [ 9.0560644, 46.1321958 ], + [ 9.0560912, 46.1321665 ], + [ 9.0561206, 46.1321386 ], + [ 9.0561526, 46.132112 ], + [ 9.056187, 46.132087 ], + [ 9.0562237, 46.1320635 ], + [ 9.0562625, 46.1320418 ], + [ 9.0563033, 46.1320218 ], + [ 9.0563458, 46.1320038 ], + [ 9.0563899, 46.1319877 ], + [ 9.0564355, 46.1319737 ], + [ 9.0564823, 46.1319617 ], + [ 9.0565301, 46.1319519 ], + [ 9.0565787, 46.1319442 ], + [ 9.0577105, 46.1318039 ], + [ 9.0588935, 46.1317973 ], + [ 9.0591053, 46.1318342 ], + [ 9.0594158, 46.1319727 ], + [ 9.0598172, 46.1321042 ], + [ 9.059924, 46.1323147 ], + [ 9.0603001, 46.1323648 ], + [ 9.0607317, 46.1324987 ], + [ 9.0609401, 46.1325906 ], + [ 9.0611823, 46.1328024 ], + [ 9.0613273, 46.1329372 ], + [ 9.0615617, 46.133033 ], + [ 9.0620458, 46.1335609 ], + [ 9.0621863, 46.1335732 ], + [ 9.0625933, 46.1336866 ], + [ 9.0626853, 46.1337672 ], + [ 9.0630645, 46.1338666 ], + [ 9.0634037, 46.1340728 ], + [ 9.0635525, 46.1341308 ], + [ 9.0637232, 46.1341868 ], + [ 9.0638034, 46.134284 ], + [ 9.0639314, 46.1347085 ], + [ 9.0640322, 46.1348131 ], + [ 9.064186, 46.134885 ], + [ 9.0650766, 46.134853 ], + [ 9.0652773, 46.1348288 ], + [ 9.065572, 46.1348396 ], + [ 9.0667119, 46.1347594 ], + [ 9.0670768, 46.1347071 ], + [ 9.067421, 46.134696 ], + [ 9.0676683, 46.1347289 ], + [ 9.0676074, 46.1343849 ], + [ 9.0679237, 46.13384 ], + [ 9.0682547, 46.1334149 ], + [ 9.068816, 46.132566 ], + [ 9.0689969, 46.1323422 ], + [ 9.0690962, 46.132098 ], + [ 9.0696483, 46.1316263 ], + [ 9.0710765, 46.1311513 ], + [ 9.0715748, 46.1307657 ], + [ 9.0715286, 46.1294839 ], + [ 9.071901, 46.1287974 ], + [ 9.0718233, 46.128444 ], + [ 9.0723139, 46.1278897 ], + [ 9.0724155, 46.1275827 ], + [ 9.0734011, 46.1270453 ], + [ 9.0744953, 46.1262975 ], + [ 9.0751918, 46.1257987 ], + [ 9.0756064, 46.1251981 ], + [ 9.0760106, 46.1248671 ], + [ 9.0759955, 46.1245659 ], + [ 9.0775402, 46.1236714 ], + [ 9.078321, 46.1233342 ], + [ 9.0783402, 46.1225062 ], + [ 9.0784222, 46.1218911 ], + [ 9.0786886, 46.1212409 ], + [ 9.0786846, 46.1212368 ], + [ 9.0783709, 46.1210686 ], + [ 9.0780453, 46.1210058 ], + [ 9.0773094, 46.1203725 ], + [ 9.0770215, 46.1201816 ], + [ 9.0768314, 46.1201203 ], + [ 9.0764218, 46.1201159 ], + [ 9.0761297, 46.1202082 ], + [ 9.0760487, 46.120335 ], + [ 9.076056, 46.1201626 ], + [ 9.0758376, 46.1199161 ], + [ 9.075561, 46.1197466 ], + [ 9.0754703, 46.119843 ], + [ 9.0753881, 46.1198251 ], + [ 9.0752515, 46.1197378 ], + [ 9.0749653, 46.1194784 ], + [ 9.0747783, 46.1193799 ], + [ 9.0746518, 46.1192652 ], + [ 9.0742804, 46.1190828 ], + [ 9.0742045, 46.1189599 ], + [ 9.0738678, 46.1187321 ], + [ 9.0735503, 46.118703 ], + [ 9.0733874, 46.1187859 ], + [ 9.0729821, 46.1184348 ], + [ 9.0729041, 46.1183259 ], + [ 9.0726887, 46.1182317 ], + [ 9.072505, 46.1181017 ], + [ 9.0724213, 46.1179595 ], + [ 9.0711652, 46.1185055 ], + [ 9.070323, 46.119057 ], + [ 9.0687881, 46.1191468 ], + [ 9.067591, 46.1186957 ], + [ 9.0602741, 46.1170152 ], + [ 9.0546719, 46.1142556 ], + [ 9.0523547, 46.1134371 ], + [ 9.0496119, 46.1170928 ], + [ 9.0493323, 46.1174655 ], + [ 9.0479732, 46.116776 ], + [ 9.0477316, 46.1167474 ], + [ 9.047455, 46.1166784 ], + [ 9.0474013, 46.1166444 ], + [ 9.0472001, 46.1166779 ], + [ 9.0469098, 46.1167003 ], + [ 9.0466233, 46.1167103 ], + [ 9.0465534, 46.1167204 ], + [ 9.0464353, 46.11626 ], + [ 9.0425407, 46.1167529 ], + [ 9.0385655, 46.1168445 ], + [ 9.0385752, 46.118338 ], + [ 9.0362305, 46.1191563 ], + [ 9.0339195, 46.1183947 ], + [ 9.0338482, 46.1182658 ], + [ 9.0337521, 46.1173258 ], + [ 9.0331362, 46.1157405 ], + [ 9.0286117, 46.1157585 ], + [ 9.0259007, 46.116708 ], + [ 9.0251946, 46.1165578 ], + [ 9.0246145, 46.1161525 ], + [ 9.0232723, 46.1153451 ], + [ 9.0184404, 46.1151532 ], + [ 9.0149639, 46.114475 ], + [ 9.0115976, 46.1155131 ], + [ 9.0107928, 46.1174653 ], + [ 9.0083359, 46.1188711 ], + [ 9.0080305, 46.1183616 ], + [ 9.0063831, 46.1158371 ], + [ 9.0063085, 46.1148481 ], + [ 9.0059755, 46.1150005 ], + [ 9.0059566, 46.1150275 ], + [ 9.0057819, 46.1152769 ], + [ 9.0055408, 46.1154926 ], + [ 9.0053529, 46.116165 ], + [ 9.0052461, 46.1163103 ], + [ 9.0051958, 46.116569 ], + [ 9.0051353, 46.1166386 ], + [ 9.0051174, 46.1168619 ], + [ 9.0048735, 46.117467 ], + [ 9.0048576, 46.1176931 ], + [ 9.004759, 46.1178428 ], + [ 9.0046115, 46.1181475 ], + [ 9.0043619, 46.1184604 ], + [ 9.0041497, 46.118681 ], + [ 9.0039264, 46.1188624 ], + [ 9.003994, 46.1192912 ], + [ 9.0040404, 46.119579 ], + [ 9.0039985, 46.1197139 ], + [ 9.0040524, 46.120149 ], + [ 9.003944, 46.1203108 ], + [ 9.0038917, 46.1204454 ], + [ 9.0037232, 46.1205413 ], + [ 9.0036061, 46.1207469 ], + [ 9.0036066, 46.1208536 ], + [ 9.0035319, 46.1210045 ], + [ 9.0033962, 46.1215761 ], + [ 9.0032194, 46.1217959 ], + [ 9.0032721, 46.1219569 ], + [ 9.0031761, 46.1222163 ], + [ 9.0031126, 46.1223118 ], + [ 9.0029787, 46.1223679 ], + [ 9.0029562, 46.1224785 ], + [ 9.0028065, 46.1225718 ], + [ 9.0027915, 46.1227086 ], + [ 9.0027322, 46.1228027 ], + [ 9.0021533, 46.1232317 ], + [ 9.0020891, 46.1234095 ], + [ 9.0018301, 46.1234439 ], + [ 9.0017592, 46.1235133 ], + [ 9.0014796, 46.1236346 ], + [ 9.001385, 46.1237901 ], + [ 9.001174, 46.1239746 ], + [ 9.0011831, 46.1240714 ], + [ 9.0006265, 46.1245787 ], + [ 9.0003696, 46.1246766 ], + [ 9.0000281, 46.1247218 ], + [ 8.9996817, 46.1247294 ], + [ 8.9993765, 46.1247789 ], + [ 8.9990343, 46.1249402 ], + [ 8.9988779, 46.125061 ], + [ 8.9988655, 46.1250632 ], + [ 8.9988567, 46.1250799 ], + [ 8.9988446, 46.1250925 ], + [ 8.9988262, 46.1251016 ], + [ 8.9988045, 46.1251124 ], + [ 8.9987909, 46.1251214 ], + [ 8.9987721, 46.1251466 ], + [ 8.9987504, 46.1251665 ], + [ 8.9987251, 46.12518 ], + [ 8.9987135, 46.1251948 ], + [ 8.9986895, 46.1252157 ], + [ 8.9986685, 46.1252376 ], + [ 8.9986578, 46.125246 ], + [ 8.9986392, 46.1252585 ], + [ 8.9986136, 46.1252775 ], + [ 8.9985744, 46.125308 ], + [ 8.9985516, 46.1253211 ], + [ 8.9985264, 46.1253341 ], + [ 8.9984959, 46.1253468 ], + [ 8.9984536, 46.1253682 ], + [ 8.9984404, 46.1253782 ], + [ 8.998407, 46.1253925 ], + [ 8.9983248, 46.1254274 ], + [ 8.9982996, 46.1254362 ], + [ 8.998276, 46.125441 ], + [ 8.9982229, 46.1254489 ], + [ 8.9981817, 46.1254621 ], + [ 8.9981363, 46.125487 ], + [ 8.9980849, 46.1255129 ], + [ 8.9980457, 46.1255296 ], + [ 8.9979945, 46.125553 ], + [ 8.9979508, 46.1255737 ], + [ 8.9979069, 46.1255983 ], + [ 8.9978783, 46.1256189 ], + [ 8.9978418, 46.1256539 ], + [ 8.9978216, 46.1256852 ], + [ 8.9978067, 46.1257067 ], + [ 8.9977902, 46.1257207 ], + [ 8.9977647, 46.1257321 ], + [ 8.9977334, 46.1257452 ], + [ 8.9977033, 46.1257657 ], + [ 8.9976597, 46.1257887 ], + [ 8.9976299, 46.1258051 ], + [ 8.9975879, 46.1258266 ], + [ 8.9975674, 46.1258346 ], + [ 8.9974932, 46.1258579 ], + [ 8.9974498, 46.1258666 ], + [ 8.9974288, 46.1258685 ], + [ 8.9973887, 46.12588 ], + [ 8.9973639, 46.1258879 ], + [ 8.9973162, 46.1258973 ], + [ 8.9972503, 46.1259145 ], + [ 8.9972091, 46.1259257 ], + [ 8.9971693, 46.1259317 ], + [ 8.9971116, 46.1259359 ], + [ 8.9970381, 46.125933 ], + [ 8.9969597, 46.1259352 ], + [ 8.996882, 46.1259474 ], + [ 8.9968428, 46.125961 ], + [ 8.9968047, 46.1259673 ], + [ 8.9967564, 46.1259686 ], + [ 8.9967274, 46.1259744 ], + [ 8.9966836, 46.1259792 ], + [ 8.9966545, 46.125983 ], + [ 8.996607, 46.1259852 ], + [ 8.9965693, 46.1259883 ], + [ 8.9965392, 46.1259947 ], + [ 8.9964985, 46.1260186 ], + [ 8.9964542, 46.1260434 ], + [ 8.9964241, 46.1260687 ], + [ 8.9963774, 46.1261037 ], + [ 8.9963555, 46.1261293 ], + [ 8.9963138, 46.1261783 ], + [ 8.9962733, 46.1262093 ], + [ 8.9962172, 46.1262412 ], + [ 8.9961975, 46.1262537 ], + [ 8.9961215, 46.1262869 ], + [ 8.9960489, 46.1263196 ], + [ 8.995982399999999, 46.1263472 ], + [ 8.995965, 46.1263664 ], + [ 8.9959499, 46.1263783 ], + [ 8.9959302, 46.1263887 ], + [ 8.9959087, 46.1264005 ], + [ 8.9958962, 46.1264162 ], + [ 8.9958943, 46.1264431 ], + [ 8.9958865, 46.1264648 ], + [ 8.9958769, 46.1264803 ], + [ 8.9958521, 46.1264961 ], + [ 8.9958381, 46.1265246 ], + [ 8.9958165, 46.1265416 ], + [ 8.9956165, 46.1266992 ], + [ 8.9944241, 46.1262711 ], + [ 8.99211, 46.1250177 ], + [ 8.9920541, 46.1250538 ], + [ 8.9917999, 46.1252181 ], + [ 8.9919748, 46.1253196 ], + [ 8.9920065, 46.1253465 ] + ], + [ + [ 8.9920737, 46.1297179 ], + [ 8.9921198, 46.1297343 ], + [ 8.9923871, 46.1301376 ], + [ 8.9921807, 46.1301825 ], + [ 8.9917039, 46.1302862 ], + [ 8.9915249, 46.13007 ], + [ 8.9913808, 46.1298168 ], + [ 8.991594599999999, 46.129758 ], + [ 8.9920737, 46.1297179 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VBS_9", + "country" : "CHE", + "name" : [ + { + "text" : "VBS_9 Isone", + "lang" : "de-CH" + }, + { + "text" : "VBS_9 Isone", + "lang" : "fr-CH" + }, + { + "text" : "VBS_9 Isone", + "lang" : "it-CH" + }, + { + "text" : "VBS_9 Isone", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "regulationExemption" : "YES", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Eidgenössisches Departement für Verteidigung, Bevölkerungsschutz und Sport (VBS)", + "lang" : "de-CH" + }, + { + "text" : "Département fédéral de la défense, de la protection de la population et des sports (DDPS)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento federale della difesa, della protezione della popolazione e dello sport (DDPS)", + "lang" : "it-CH" + }, + { + "text" : "Federal Department of Defence, Civil Protection and Sport (DDPS)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Lageverfolgungszentrum der Armee LVZ A", + "lang" : "de-CH" + }, + { + "text" : "Centre de suivi de la situation de l’armée, CSS A", + "lang" : "fr-CH" + }, + { + "text" : "Centro di monitoraggio della situazione dell’esercito, Centro mon sit Es", + "lang" : "it-CH" + }, + { + "text" : "Joint Operation Center, JOC", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vtg.admin.ch/en/joint-operations-command", + "email" : "lvz.op@vtg.admin.ch", + "phone" : "+41 58 464 96 43", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8338637, 47.3953434 ], + [ 7.8339887, 47.3954315 ], + [ 7.8345886, 47.3954065 ], + [ 7.8346559, 47.3954035 ], + [ 7.834647, 47.3949219 ], + [ 7.8343163, 47.3949011 ], + [ 7.8342717, 47.395018 ], + [ 7.8340449, 47.3950195 ], + [ 7.8340213, 47.3950974 ], + [ 7.8339454, 47.3951549 ], + [ 7.833893, 47.3952293 ], + [ 7.8338637, 47.3953434 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr130", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Dietisbergerweid", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Dietisbergerweid", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Dietisbergerweid", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Dietisbergerweid", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.1101089, 47.406675 ], + [ 8.1101017, 47.4065338 ], + [ 8.1100836, 47.4063931 ], + [ 8.1100547, 47.4062532 ], + [ 8.110015, 47.4061145 ], + [ 8.1099647, 47.4059775 ], + [ 8.1099039, 47.4058424 ], + [ 8.1098327, 47.4057096 ], + [ 8.1097515, 47.4055796 ], + [ 8.1096603, 47.4054526 ], + [ 8.1095594, 47.405329 ], + [ 8.1094492, 47.4052092 ], + [ 8.1093299, 47.4050935 ], + [ 8.1092018, 47.4049821 ], + [ 8.1090653, 47.4048755 ], + [ 8.1089208, 47.4047739 ], + [ 8.1087687, 47.4046775 ], + [ 8.1086093, 47.4045867 ], + [ 8.1084432, 47.4045017 ], + [ 8.1082707, 47.4044226 ], + [ 8.1080923, 47.4043499 ], + [ 8.1079086, 47.4042835 ], + [ 8.1077201, 47.4042238 ], + [ 8.1075272, 47.4041708 ], + [ 8.1073304, 47.4041248 ], + [ 8.1071304, 47.4040859 ], + [ 8.1069277, 47.4040541 ], + [ 8.1067228, 47.4040295 ], + [ 8.1065163, 47.4040122 ], + [ 8.1063087, 47.4040024 ], + [ 8.1061007, 47.4039999 ], + [ 8.1058927, 47.4040048 ], + [ 8.1056854, 47.404017 ], + [ 8.1054794, 47.4040367 ], + [ 8.1052751, 47.4040636 ], + [ 8.1050732, 47.4040977 ], + [ 8.1048742, 47.404139 ], + [ 8.1046787, 47.4041873 ], + [ 8.1044871, 47.4042424 ], + [ 8.1043001, 47.4043043 ], + [ 8.1041181, 47.4043728 ], + [ 8.1039416, 47.4044476 ], + [ 8.1037711, 47.4045286 ], + [ 8.1036071, 47.4046156 ], + [ 8.1034501, 47.4047082 ], + [ 8.1033003, 47.4048063 ], + [ 8.1031584, 47.4049096 ], + [ 8.1030246, 47.4050178 ], + [ 8.1028993, 47.4051306 ], + [ 8.1027829, 47.4052477 ], + [ 8.1026757, 47.4053688 ], + [ 8.102578, 47.4054935 ], + [ 8.10249, 47.4056215 ], + [ 8.102412, 47.4057524 ], + [ 8.1023442, 47.405886 ], + [ 8.1022868, 47.4060218 ], + [ 8.1022399, 47.4061594 ], + [ 8.1022037, 47.4062985 ], + [ 8.1021783, 47.4064387 ], + [ 8.1021637, 47.4065796 ], + [ 8.10216, 47.4067209 ], + [ 8.1021672, 47.4068621 ], + [ 8.1021853, 47.4070028 ], + [ 8.1022142, 47.4071427 ], + [ 8.1022539, 47.4072814 ], + [ 8.1023042, 47.4074184 ], + [ 8.1023649, 47.4075535 ], + [ 8.1024361, 47.4076863 ], + [ 8.1025173, 47.4078164 ], + [ 8.1026085, 47.4079433 ], + [ 8.1027093, 47.4080669 ], + [ 8.1028196, 47.4081867 ], + [ 8.1029389, 47.4083025 ], + [ 8.1030669, 47.4084138 ], + [ 8.1032034, 47.4085204 ], + [ 8.1033479, 47.4086221 ], + [ 8.1035001, 47.4087184 ], + [ 8.1036594, 47.4088093 ], + [ 8.1038256, 47.4088943 ], + [ 8.1039981, 47.4089733 ], + [ 8.1041764, 47.4090461 ], + [ 8.1043601, 47.4091125 ], + [ 8.1045487, 47.4091722 ], + [ 8.1047416, 47.4092252 ], + [ 8.1049384, 47.4092712 ], + [ 8.1051384, 47.4093102 ], + [ 8.1053411, 47.409342 ], + [ 8.1055461, 47.4093665 ], + [ 8.1057526, 47.4093838 ], + [ 8.1059602, 47.4093937 ], + [ 8.1061683, 47.4093962 ], + [ 8.1063762, 47.4093913 ], + [ 8.1065835, 47.409379 ], + [ 8.1067896, 47.4093594 ], + [ 8.1069939, 47.4093324 ], + [ 8.1071958, 47.4092983 ], + [ 8.1073948, 47.409257 ], + [ 8.1075904, 47.4092087 ], + [ 8.107782, 47.4091536 ], + [ 8.107969, 47.4090917 ], + [ 8.108151, 47.4090232 ], + [ 8.1083275, 47.4089484 ], + [ 8.108498, 47.4088674 ], + [ 8.108662, 47.4087804 ], + [ 8.1088191, 47.4086877 ], + [ 8.1089688, 47.4085896 ], + [ 8.1091107, 47.4084863 ], + [ 8.1092445, 47.4083781 ], + [ 8.1093698, 47.4082653 ], + [ 8.1094862, 47.4081482 ], + [ 8.1095934, 47.4080272 ], + [ 8.1096911, 47.4079025 ], + [ 8.1097791, 47.4077744 ], + [ 8.1098571, 47.4076435 ], + [ 8.1099249, 47.4075099 ], + [ 8.1099823, 47.4073741 ], + [ 8.1100291, 47.4072365 ], + [ 8.1100653, 47.4070974 ], + [ 8.1100907, 47.4069572 ], + [ 8.1101052, 47.4068163 ], + [ 8.1101089, 47.406675 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0102", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Rupperswil", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Rupperswil", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Rupperswil", + "lang" : "it-CH" + }, + { + "text" : "Substation Rupperswil", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.7990649, 47.0878107 ], + [ 6.8000971, 47.0868548 ], + [ 6.7974745, 47.0855556 ], + [ 6.7975586, 47.0854671 ], + [ 6.7969916, 47.0851931 ], + [ 6.7971196, 47.0850625 ], + [ 6.7965333999999995, 47.0847444 ], + [ 6.7963412, 47.0846264 ], + [ 6.7939948999999995, 47.0834861 ], + [ 6.7938297, 47.0836407 ], + [ 6.7929552, 47.0832058 ], + [ 6.7928382, 47.0832951 ], + [ 6.7867280999999995, 47.0803289 ], + [ 6.786267, 47.0812106 ], + [ 6.7929680999999995, 47.0844311 ], + [ 6.7923689, 47.0849783 ], + [ 6.7945434, 47.0860592 ], + [ 6.7948564000000005, 47.0857659 ], + [ 6.7990649, 47.0878107 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSGC002", + "country" : "CHE", + "name" : [ + { + "text" : "LSGC Aéroport les Eplatures (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSGC Aéroport les Eplatures (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSGC Aéroport les Eplatures (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSGC Aéroport les Eplatures (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "LSGC Aéroport les Eplatures", + "lang" : "de-CH" + }, + { + "text" : "LSGC Aéroport les Eplatures", + "lang" : "fr-CH" + }, + { + "text" : "LSGC Aéroport les Eplatures", + "lang" : "it-CH" + }, + { + "text" : "LSGC Aéroport les Eplatures", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Chef d'aérodrome", + "lang" : "de-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "fr-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "it-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Emanuele Tocalli", + "lang" : "de-CH" + }, + { + "text" : "Emanuele Tocalli", + "lang" : "fr-CH" + }, + { + "text" : "Emanuele Tocalli", + "lang" : "it-CH" + }, + { + "text" : "Emanuele Tocalli", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.skyguide.ch/services/special-flights", + "email" : "info@leseplaturesairport.ch", + "phone" : "0041329259797", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4999456, 47.4287036 ], + [ 7.4999952, 47.4287018 ], + [ 7.5001049, 47.4286976 ], + [ 7.5000777, 47.4287963 ], + [ 7.5000742, 47.428809 ], + [ 7.5003335, 47.4288244 ], + [ 7.5005254, 47.4288247 ], + [ 7.5007404, 47.4288076 ], + [ 7.5008966, 47.428801 ], + [ 7.5009928, 47.428866 ], + [ 7.5012256, 47.4288673 ], + [ 7.5014208, 47.4288622 ], + [ 7.5015873, 47.4288249 ], + [ 7.5017326, 47.4287894 ], + [ 7.5017990999999995, 47.428792 ], + [ 7.5018945, 47.4286503 ], + [ 7.5019499, 47.4285632 ], + [ 7.5019497, 47.4284987 ], + [ 7.5019113, 47.4284112 ], + [ 7.5020807, 47.4283699 ], + [ 7.5022436, 47.4285116 ], + [ 7.5023469, 47.4285212 ], + [ 7.5026011, 47.4285209 ], + [ 7.5029588, 47.4284973 ], + [ 7.5030493, 47.4284964 ], + [ 7.5030502, 47.4284922 ], + [ 7.5030802, 47.4284962 ], + [ 7.5032309, 47.4284948 ], + [ 7.5033705, 47.4285091 ], + [ 7.50341, 47.4285401 ], + [ 7.5034457, 47.4285449 ], + [ 7.5035374, 47.4285571 ], + [ 7.5037608, 47.4285868 ], + [ 7.503771, 47.4286947 ], + [ 7.5039201, 47.4287498 ], + [ 7.5040479, 47.428797 ], + [ 7.5042632000000005, 47.4288764 ], + [ 7.5043437, 47.4289061 ], + [ 7.5044369, 47.4289406 ], + [ 7.5045002, 47.4289639 ], + [ 7.504492, 47.4290486 ], + [ 7.5045752, 47.4290406 ], + [ 7.5045605, 47.4289231 ], + [ 7.5046493, 47.4288789 ], + [ 7.5046515, 47.4288255 ], + [ 7.504632, 47.4287645 ], + [ 7.5046303, 47.4287338 ], + [ 7.5047923, 47.4286871 ], + [ 7.5049611, 47.4286367 ], + [ 7.5051703, 47.4285903 ], + [ 7.5053476, 47.4285454 ], + [ 7.5054775, 47.4284467 ], + [ 7.5056261, 47.4283563 ], + [ 7.5057613, 47.4282355 ], + [ 7.5058055, 47.4281768 ], + [ 7.5058462, 47.4281112 ], + [ 7.5058786, 47.4280471 ], + [ 7.5059048, 47.4279584 ], + [ 7.5059542, 47.4278758 ], + [ 7.5060439, 47.4277965 ], + [ 7.5061916, 47.4277266 ], + [ 7.5063786, 47.4276635 ], + [ 7.50662, 47.4275751 ], + [ 7.5068911, 47.4274965 ], + [ 7.5071414, 47.427446 ], + [ 7.5073619, 47.4274476 ], + [ 7.5075465999999995, 47.4274776 ], + [ 7.5078302, 47.4275385 ], + [ 7.5080304, 47.4275877 ], + [ 7.5081009, 47.4276178 ], + [ 7.5082504, 47.4277423 ], + [ 7.5082913, 47.4278032 ], + [ 7.5082853, 47.4278421 ], + [ 7.5083006, 47.4278424 ], + [ 7.5082788, 47.4279966 ], + [ 7.5082238, 47.4281977 ], + [ 7.5081799, 47.4284289 ], + [ 7.508163, 47.4285042 ], + [ 7.508161, 47.428521 ], + [ 7.508153, 47.4286218 ], + [ 7.5081533, 47.4287992 ], + [ 7.5081525, 47.4289699 ], + [ 7.5081662, 47.4293202 ], + [ 7.5082276, 47.4293464 ], + [ 7.5077787, 47.429481 ], + [ 7.5076086, 47.4295394 ], + [ 7.5073915, 47.42961 ], + [ 7.5071572, 47.429708 ], + [ 7.5069443, 47.4298308 ], + [ 7.5068012, 47.4299719 ], + [ 7.5066631, 47.4300849 ], + [ 7.5065378, 47.4301852 ], + [ 7.5063905, 47.4303186 ], + [ 7.5062177, 47.4304162 ], + [ 7.506048, 47.4305127 ], + [ 7.5058768, 47.4306383 ], + [ 7.5057168, 47.4307609 ], + [ 7.5055404, 47.4308909 ], + [ 7.5054254, 47.4310268 ], + [ 7.5053296, 47.4311812 ], + [ 7.5052519, 47.4313827 ], + [ 7.5052221, 47.4314857 ], + [ 7.5051915000000005, 47.4315914 ], + [ 7.5051421, 47.4317292 ], + [ 7.505077, 47.4318373 ], + [ 7.5050329, 47.4318431 ], + [ 7.5047397, 47.4327549 ], + [ 7.5041071, 47.4330684 ], + [ 7.5031566, 47.4334139 ], + [ 7.502704, 47.433516 ], + [ 7.5021211, 47.4338062 ], + [ 7.5020537, 47.4341491 ], + [ 7.5023185, 47.434775 ], + [ 7.5031462, 47.4345255 ], + [ 7.5034966, 47.43442 ], + [ 7.5039377, 47.4342803 ], + [ 7.5043253, 47.4341575 ], + [ 7.5044863, 47.4341047 ], + [ 7.5047317, 47.4342882 ], + [ 7.5050357, 47.4341106 ], + [ 7.5053090000000005, 47.4339527 ], + [ 7.5053473, 47.4339278 ], + [ 7.5055438, 47.4337483 ], + [ 7.5057742, 47.4335266 ], + [ 7.5059731, 47.4333363 ], + [ 7.5059845, 47.4333232 ], + [ 7.5061194, 47.4330934 ], + [ 7.5064008, 47.4326254 ], + [ 7.5065234, 47.4324237 ], + [ 7.5067339, 47.4324983 ], + [ 7.5068303, 47.432309 ], + [ 7.5071718, 47.431622 ], + [ 7.5072524, 47.4314601 ], + [ 7.5073257, 47.4313767 ], + [ 7.5074802, 47.431201 ], + [ 7.5079623, 47.4306536 ], + [ 7.5084064, 47.4303991 ], + [ 7.5087774, 47.4301846 ], + [ 7.5090251, 47.4302998 ], + [ 7.5093498, 47.4301358 ], + [ 7.5094727, 47.430073 ], + [ 7.5096201, 47.429867 ], + [ 7.5097308, 47.4298631 ], + [ 7.5097385, 47.4298149 ], + [ 7.5095504, 47.4291572 ], + [ 7.5093624, 47.4284987 ], + [ 7.5092162, 47.4279888 ], + [ 7.5091589, 47.427786 ], + [ 7.5091476, 47.4277418 ], + [ 7.5091368, 47.4276975 ], + [ 7.5091265, 47.4276531 ], + [ 7.5091167, 47.4276087 ], + [ 7.5091075, 47.4275641 ], + [ 7.5090987, 47.4275195 ], + [ 7.5090905, 47.4274749 ], + [ 7.5090828, 47.4274302 ], + [ 7.5090757, 47.4273855 ], + [ 7.5090692, 47.4273408 ], + [ 7.5090632, 47.4272961 ], + [ 7.5090577, 47.4272513 ], + [ 7.5090527, 47.4272065 ], + [ 7.5090482, 47.4271617 ], + [ 7.5090441, 47.4271169 ], + [ 7.5090407, 47.4270721 ], + [ 7.5090365, 47.4270226 ], + [ 7.5090331, 47.4269731 ], + [ 7.5090303, 47.4269235 ], + [ 7.5090281999999995, 47.426874 ], + [ 7.5090268, 47.4268243 ], + [ 7.5090261, 47.4267746 ], + [ 7.509026, 47.426724899999996 ], + [ 7.5090266, 47.4266752 ], + [ 7.5090109, 47.426646 ], + [ 7.5090053999999995, 47.4266379 ], + [ 7.5090007, 47.4266295 ], + [ 7.5089967, 47.426621 ], + [ 7.5089934, 47.4266123 ], + [ 7.5089909, 47.4266034 ], + [ 7.5089892, 47.4265945 ], + [ 7.5089883, 47.4265855 ], + [ 7.5089881, 47.4265765 ], + [ 7.5089976, 47.4264686 ], + [ 7.5088814, 47.4264557 ], + [ 7.5089644, 47.4268329 ], + [ 7.5088189, 47.4268123 ], + [ 7.5082375, 47.426411 ], + [ 7.50796, 47.4262561 ], + [ 7.5076253, 47.4261356 ], + [ 7.507601, 47.4260635 ], + [ 7.5075303, 47.4261209 ], + [ 7.5073386, 47.4260771 ], + [ 7.5067522, 47.4263092 ], + [ 7.5063314, 47.426645 ], + [ 7.5060013, 47.426958 ], + [ 7.5057979, 47.4271186 ], + [ 7.505673, 47.4271903 ], + [ 7.5055398, 47.4272733 ], + [ 7.5050215, 47.4275283 ], + [ 7.5045483, 47.4277043 ], + [ 7.5045079999999995, 47.4277042 ], + [ 7.5044922, 47.4277085 ], + [ 7.5044134, 47.4277244 ], + [ 7.5043531, 47.427734 ], + [ 7.5043149, 47.4277386 ], + [ 7.5042834, 47.4277417 ], + [ 7.50425, 47.4277443 ], + [ 7.5041566, 47.4277504 ], + [ 7.5039431, 47.4277732 ], + [ 7.5034958, 47.4277703 ], + [ 7.5031843, 47.4277709 ], + [ 7.5027854, 47.4278139 ], + [ 7.501948, 47.4279223 ], + [ 7.5017885, 47.4279725 ], + [ 7.501548, 47.4280042 ], + [ 7.5013725, 47.42805 ], + [ 7.5010239, 47.42816 ], + [ 7.5009386, 47.4281795 ], + [ 7.5009796, 47.4282537 ], + [ 7.5012378, 47.4281959 ], + [ 7.5012778, 47.4282979 ], + [ 7.5016777999999995, 47.428281 ], + [ 7.5017081999999995, 47.4284754 ], + [ 7.5016785, 47.4284822 ], + [ 7.5016796, 47.4285055 ], + [ 7.501643, 47.4285062 ], + [ 7.5016352, 47.428699 ], + [ 7.5016267, 47.4287446 ], + [ 7.5015077, 47.4288051 ], + [ 7.5013781999999996, 47.4288207 ], + [ 7.5013472, 47.4288244 ], + [ 7.5011694, 47.4288183 ], + [ 7.5010405, 47.4287544 ], + [ 7.5009825, 47.4286703 ], + [ 7.5009504, 47.4286313 ], + [ 7.5008714, 47.4286192 ], + [ 7.5006687, 47.428622 ], + [ 7.5007161, 47.4284675 ], + [ 7.5006395999999995, 47.4284305 ], + [ 7.5004918, 47.4284135 ], + [ 7.5003923, 47.4284648 ], + [ 7.500216, 47.4285079 ], + [ 7.5001989, 47.4285411 ], + [ 7.5001467, 47.4285286 ], + [ 7.5000891, 47.4286118 ], + [ 7.5000672999999995, 47.4286577 ], + [ 7.4999458, 47.4286611 ], + [ 7.4999389, 47.4287039 ], + [ 7.4999456, 47.4287036 ] + ], + [ + [ 7.5066876, 47.4266081 ], + [ 7.5066607, 47.4266144 ], + [ 7.5066233, 47.4266283 ], + [ 7.5066469, 47.4266064 ], + [ 7.5067072, 47.4265453 ], + [ 7.5067487, 47.4265076 ], + [ 7.5067904, 47.4264696 ], + [ 7.506886, 47.4264022 ], + [ 7.5070204, 47.4264012 ], + [ 7.5071593, 47.4264987 ], + [ 7.5073375, 47.4266239 ], + [ 7.5072366, 47.4267407 ], + [ 7.5071578, 47.4266861 ], + [ 7.5069975, 47.4265666 ], + [ 7.506935, 47.4265663 ], + [ 7.5068612, 47.4266168 ], + [ 7.5068539, 47.4266724 ], + [ 7.5069438, 47.4266699 ], + [ 7.5069689, 47.4266864 ], + [ 7.5070008, 47.4267142 ], + [ 7.5070124, 47.4267309 ], + [ 7.5070974, 47.4268429 ], + [ 7.5070964, 47.426916 ], + [ 7.5073360000000005, 47.4272042 ], + [ 7.5071235, 47.427278 ], + [ 7.5068704, 47.4269645 ], + [ 7.5066979, 47.4267814 ], + [ 7.5068269, 47.426717 ], + [ 7.5067547999999995, 47.4266384 ], + [ 7.5067122, 47.4266116 ], + [ 7.5066876, 47.4266081 ] + ], + [ + [ 7.5081543, 47.4275011 ], + [ 7.508245, 47.4274407 ], + [ 7.5081007, 47.4273913 ], + [ 7.5078999, 47.4274598 ], + [ 7.5077706, 47.4274037 ], + [ 7.507535, 47.4273513 ], + [ 7.5075803, 47.4271988 ], + [ 7.5080313, 47.4272944 ], + [ 7.5080913, 47.427246 ], + [ 7.5081989, 47.4271762 ], + [ 7.5083302, 47.4270985 ], + [ 7.5083461, 47.4271184 ], + [ 7.5083366, 47.4272079 ], + [ 7.5083145, 47.4272978 ], + [ 7.5083748, 47.4273701 ], + [ 7.50853, 47.4275299 ], + [ 7.5085799, 47.4275812 ], + [ 7.5085331, 47.4276257 ], + [ 7.508462, 47.4276225 ], + [ 7.5084154, 47.4276204 ], + [ 7.5083816, 47.4276203 ], + [ 7.5083456, 47.4276071 ], + [ 7.5081543, 47.4275011 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns298", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Dittinger Weide und Dittinger Wald", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Dittinger Weide und Dittinger Wald", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Dittinger Weide und Dittinger Wald", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Dittinger Weide und Dittinger Wald", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.921348, 47.410689 ], + [ 7.9211375, 47.4106923 ], + [ 7.9208827, 47.4107443 ], + [ 7.9207029, 47.410796 ], + [ 7.9204032, 47.4108686 ], + [ 7.9200364, 47.4108574 ], + [ 7.9200188, 47.4108595 ], + [ 7.9200014, 47.4108621 ], + [ 7.9199841, 47.4108651 ], + [ 7.9199671, 47.4108686 ], + [ 7.9199502, 47.410872499999996 ], + [ 7.9199336, 47.4108769 ], + [ 7.9199173, 47.4108817 ], + [ 7.9199013, 47.410887 ], + [ 7.9198854999999995, 47.4108926 ], + [ 7.9198702, 47.4108987 ], + [ 7.9197132, 47.410955799999996 ], + [ 7.9195184, 47.4110395 ], + [ 7.9194471, 47.4110748 ], + [ 7.9193506, 47.4111601 ], + [ 7.9193362, 47.4111693 ], + [ 7.9193213, 47.4111781 ], + [ 7.919306, 47.4111866 ], + [ 7.9192902, 47.4111947 ], + [ 7.9192741, 47.4112024 ], + [ 7.9192575, 47.4112097 ], + [ 7.919245, 47.4112153 ], + [ 7.919232, 47.4112203 ], + [ 7.9192184999999995, 47.4112248 ], + [ 7.9192047, 47.4112287 ], + [ 7.9191905, 47.411232 ], + [ 7.9191761, 47.4112347 ], + [ 7.9191614, 47.4112368 ], + [ 7.9191465999999995, 47.4112383 ], + [ 7.9191329, 47.411239 ], + [ 7.9191192, 47.4112393 ], + [ 7.9191055, 47.411239 ], + [ 7.9190919, 47.4112382 ], + [ 7.9190783, 47.4112368 ], + [ 7.9190649, 47.411235 ], + [ 7.9190517, 47.4112326 ], + [ 7.9190386, 47.4112297 ], + [ 7.919019, 47.4112248 ], + [ 7.9189997, 47.4112195 ], + [ 7.9189807, 47.4112137 ], + [ 7.918962, 47.4112074 ], + [ 7.9189436, 47.4112007 ], + [ 7.9189257, 47.4111935 ], + [ 7.9189097, 47.4111866 ], + [ 7.918894, 47.4111793 ], + [ 7.9188787, 47.4111716 ], + [ 7.9188638000000005, 47.4111637 ], + [ 7.9188493, 47.4111553 ], + [ 7.9188352, 47.4111467 ], + [ 7.9187169, 47.4110593 ], + [ 7.9185912, 47.4109688 ], + [ 7.9184679, 47.4108988 ], + [ 7.9183162, 47.4108272 ], + [ 7.9178949, 47.4108587 ], + [ 7.9178207, 47.4109609 ], + [ 7.9177929, 47.4112057 ], + [ 7.9177496, 47.4113996 ], + [ 7.9176753, 47.4114917 ], + [ 7.9173812, 47.4115965 ], + [ 7.9173938, 47.4116456 ], + [ 7.9174397, 47.4117428 ], + [ 7.9175111, 47.4118561 ], + [ 7.9175913, 47.4119205 ], + [ 7.9176759, 47.4119724 ], + [ 7.9177495, 47.4119781 ], + [ 7.9178465, 47.4119792 ], + [ 7.917902, 47.4119687 ], + [ 7.9180243, 47.411994 ], + [ 7.9180562, 47.4121132 ], + [ 7.9180673, 47.412197 ], + [ 7.9183795, 47.4121764 ], + [ 7.9184586, 47.4123202 ], + [ 7.918585, 47.4125553 ], + [ 7.918789, 47.412769 ], + [ 7.9188601, 47.4131767 ], + [ 7.9191144, 47.4132319 ], + [ 7.9195452, 47.413311 ], + [ 7.9199964, 47.4133619 ], + [ 7.9204004999999995, 47.4133602 ], + [ 7.9205295, 47.4133034 ], + [ 7.9205912, 47.4132539 ], + [ 7.9206624, 47.4130989 ], + [ 7.9207637, 47.4128417 ], + [ 7.920793, 47.4126482 ], + [ 7.9208428, 47.4124264 ], + [ 7.9209233, 47.4121588 ], + [ 7.9210499, 47.4118417 ], + [ 7.9211199, 47.4115601 ], + [ 7.9211988, 47.4111166 ], + [ 7.9213352, 47.4107362 ], + [ 7.921348, 47.410689 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr048", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Wanne", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Wanne", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Wanne", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Wanne", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7826359, 47.3985718 ], + [ 7.7827478, 47.3984482 ], + [ 7.7828832, 47.3983151 ], + [ 7.7830741, 47.3981247 ], + [ 7.7834927, 47.398153 ], + [ 7.7835365, 47.3982729 ], + [ 7.7837589, 47.3984037 ], + [ 7.7839533, 47.3985212 ], + [ 7.7841086, 47.3986272 ], + [ 7.7842024, 47.398747 ], + [ 7.7844363, 47.3986157 ], + [ 7.7846563, 47.3985315 ], + [ 7.7849985, 47.3985397 ], + [ 7.7852993, 47.3985553 ], + [ 7.7854502, 47.3986063 ], + [ 7.7855498, 47.398603 ], + [ 7.7860405, 47.3984058 ], + [ 7.7868667, 47.3984481 ], + [ 7.7868914, 47.3982314 ], + [ 7.7869184, 47.397982 ], + [ 7.7870528, 47.3978134 ], + [ 7.7872015999999995, 47.3977051 ], + [ 7.7874745999999995, 47.3976893 ], + [ 7.7877845, 47.3977133 ], + [ 7.7879276, 47.3968152 ], + [ 7.7876128, 47.396716 ], + [ 7.7874834, 47.3966023 ], + [ 7.7873485, 47.3964769 ], + [ 7.7875115, 47.3962065 ], + [ 7.7877958, 47.3958963 ], + [ 7.7882297, 47.3956376 ], + [ 7.7887339, 47.3956027 ], + [ 7.7890987, 47.3955724 ], + [ 7.7888159, 47.3955066 ], + [ 7.7883037, 47.3954437 ], + [ 7.7880619, 47.3951987 ], + [ 7.7875156, 47.3952394 ], + [ 7.7869516, 47.3953427 ], + [ 7.7865013, 47.3954754 ], + [ 7.7861827, 47.3956076 ], + [ 7.7859207, 47.3956644 ], + [ 7.7858878, 47.3957337 ], + [ 7.785816, 47.3959048 ], + [ 7.7857759, 47.3960358 ], + [ 7.7854776999999995, 47.3960418 ], + [ 7.7852003, 47.3960557 ], + [ 7.7847767999999995, 47.3960829 ], + [ 7.7842146, 47.396132 ], + [ 7.7840104, 47.3961364 ], + [ 7.783663, 47.3963912 ], + [ 7.7834541999999995, 47.3965456 ], + [ 7.7831825, 47.396694 ], + [ 7.7822496, 47.3968139 ], + [ 7.7817719, 47.3969558 ], + [ 7.7813853, 47.3970938 ], + [ 7.7809633, 47.3971238 ], + [ 7.7804974, 47.3971575 ], + [ 7.7806543999999995, 47.3974324 ], + [ 7.7808653, 47.3976396 ], + [ 7.781228, 47.3978958 ], + [ 7.7814837, 47.3980558 ], + [ 7.7817273, 47.3982214 ], + [ 7.7818894, 47.3983288 ], + [ 7.7820222999999995, 47.3984385 ], + [ 7.7821239, 47.3986091 ], + [ 7.7822097, 47.3986701 ], + [ 7.7823326999999995, 47.398756 ], + [ 7.782355, 47.3987716 ], + [ 7.7826359, 47.3985718 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns341", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Roter Herd", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Roter Herd", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Roter Herd", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Roter Herd", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8249068, 46.304099 ], + [ 7.8250521, 46.3046338 ], + [ 7.8301424, 46.304555 ], + [ 7.8301717, 46.3050209 ], + [ 7.8326584, 46.3049753 ], + [ 7.8326383, 46.3045238 ], + [ 7.8387189, 46.3044303 ], + [ 7.838698, 46.3038906 ], + [ 7.8249068, 46.304099 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSTA002", + "country" : "CHE", + "name" : [ + { + "text" : "LSTA Raron (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSTA Raron (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSTA Raron (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSTA Raron (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Flugplatz Raron", + "lang" : "de-CH" + }, + { + "text" : "Flugplatz Raron", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatz Raron", + "lang" : "it-CH" + }, + { + "text" : "Flugplatz Raron", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Lisa Best", + "lang" : "de-CH" + }, + { + "text" : "Lisa Best", + "lang" : "fr-CH" + }, + { + "text" : "Lisa Best", + "lang" : "it-CH" + }, + { + "text" : "Lisa Best", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.fgo.ch", + "email" : "info@fgo.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4462315, 46.5517693 ], + [ 7.4461419, 46.5494153 ], + [ 7.4458738, 46.5470678 ], + [ 7.4454281, 46.5447332 ], + [ 7.4448059, 46.5424179 ], + [ 7.4440091, 46.5401282 ], + [ 7.4430397, 46.5378705 ], + [ 7.4419006, 46.5356508 ], + [ 7.4405947, 46.5334753 ], + [ 7.4391258, 46.5313499 ], + [ 7.4374978, 46.5292805 ], + [ 7.4357153, 46.5272727 ], + [ 7.4337831, 46.525332 ], + [ 7.4317065, 46.5234637 ], + [ 7.4294913, 46.5216729 ], + [ 7.4271435, 46.5199646 ], + [ 7.4246695, 46.5183434 ], + [ 7.4220761, 46.5168137 ], + [ 7.4193705, 46.5153797 ], + [ 7.4165600000000005, 46.5140454 ], + [ 7.4136524, 46.5128145 ], + [ 7.4106555, 46.5116901 ], + [ 7.4075776, 46.5106756 ], + [ 7.4044272, 46.5097735 ], + [ 7.4012128, 46.5089864 ], + [ 7.3979432, 46.5083165 ], + [ 7.3946273, 46.5077655 ], + [ 7.3912744, 46.507335 ], + [ 7.3878934, 46.5070261 ], + [ 7.3844937, 46.5068398 ], + [ 7.3810845, 46.5067764 ], + [ 7.3776752, 46.5068363 ], + [ 7.3742751, 46.5070191 ], + [ 7.3708934, 46.5073245 ], + [ 7.3675395, 46.5077515 ], + [ 7.3642225, 46.5082991 ], + [ 7.3609515, 46.5089657 ], + [ 7.3577353, 46.5097494 ], + [ 7.354583, 46.5106483 ], + [ 7.3515029, 46.5116597 ], + [ 7.3485036, 46.5127809 ], + [ 7.3455933, 46.5140089 ], + [ 7.3427799, 46.5153403 ], + [ 7.3400712, 46.5167714 ], + [ 7.3374745, 46.5182984 ], + [ 7.3349971, 46.5199171 ], + [ 7.3326456, 46.521623 ], + [ 7.3304264, 46.5234115 ], + [ 7.3283458, 46.5252776 ], + [ 7.3264094, 46.5272164 ], + [ 7.3246226, 46.5292223 ], + [ 7.3229901, 46.5312901 ], + [ 7.3215166, 46.533414 ], + [ 7.3202061, 46.5355881 ], + [ 7.3190621, 46.5378066 ], + [ 7.3180879, 46.5400634 ], + [ 7.3172861, 46.5423522 ], + [ 7.3166589, 46.5446669 ], + [ 7.3162081, 46.547001 ], + [ 7.315935, 46.5493482 ], + [ 7.3158402, 46.5517021 ], + [ 7.3159241999999995, 46.5540562 ], + [ 7.3161867, 46.556404 ], + [ 7.3166269, 46.5587391 ], + [ 7.3172438, 46.5610551 ], + [ 7.3180356, 46.5633456 ], + [ 7.3190001, 46.5656045 ], + [ 7.3201349, 46.5678254 ], + [ 7.3214367, 46.5700022 ], + [ 7.3229021, 46.5721291 ], + [ 7.3245269, 46.5742002 ], + [ 7.3263069, 46.5762098 ], + [ 7.3282371, 46.5781523 ], + [ 7.3303121, 46.5800225 ], + [ 7.3325265, 46.5818152 ], + [ 7.334874, 46.5835254 ], + [ 7.3373483, 46.5851486 ], + [ 7.3399425, 46.5866802 ], + [ 7.3426496, 46.588116 ], + [ 7.3454621, 46.5894521 ], + [ 7.3483723, 46.5906849 ], + [ 7.3513722999999995, 46.5918108 ], + [ 7.3544537, 46.5928269 ], + [ 7.3576082, 46.5937304 ], + [ 7.3608270000000005, 46.5945187 ], + [ 7.3641013, 46.5951897 ], + [ 7.3674222, 46.5957416 ], + [ 7.3707805, 46.5961728 ], + [ 7.374167, 46.5964821 ], + [ 7.3775723, 46.5966688 ], + [ 7.3809871, 46.5967322 ], + [ 7.3844021, 46.5966723 ], + [ 7.3878078, 46.5964891 ], + [ 7.391195, 46.5961833 ], + [ 7.3945542, 46.5957555 ], + [ 7.3978762, 46.5952071 ], + [ 7.401152, 46.5945395 ], + [ 7.4043726, 46.5937545 ], + [ 7.407529, 46.5928543 ], + [ 7.4106126, 46.5918414 ], + [ 7.413615, 46.5907185 ], + [ 7.4165279, 46.5894887 ], + [ 7.4193432999999995, 46.5881555 ], + [ 7.4220535, 46.5867225 ], + [ 7.424651, 46.5851936 ], + [ 7.4271288, 46.583573 ], + [ 7.4294801, 46.5818651 ], + [ 7.4316983, 46.5800747 ], + [ 7.4337774, 46.5782067 ], + [ 7.4357118, 46.5762661 ], + [ 7.4374961, 46.5742584 ], + [ 7.4391255, 46.572189 ], + [ 7.4405954, 46.5700636 ], + [ 7.441902, 46.5678881 ], + [ 7.4430415, 46.5656684 ], + [ 7.444011, 46.5634105 ], + [ 7.4448077999999995, 46.5611208 ], + [ 7.4454296, 46.5588054 ], + [ 7.4458749, 46.5564708 ], + [ 7.4461425, 46.5541232 ], + [ 7.4462315, 46.5517693 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSTZ001", + "country" : "CHE", + "name" : [ + { + "text" : "LSTZ Zweisimmen", + "lang" : "de-CH" + }, + { + "text" : "LSTZ Zweisimmen", + "lang" : "fr-CH" + }, + { + "text" : "LSTZ Zweisimmen", + "lang" : "it-CH" + }, + { + "text" : "LSTZ Zweisimmen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Flugplatzgenosenschaft Zweisimmen FGZ", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzgenosenschaft Zweisimmen FGZ", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzgenosenschaft Zweisimmen FGZ", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzgenosenschaft Zweisimmen FGZ", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Roland Ginggen", + "lang" : "de-CH" + }, + { + "text" : "Roland Ginggen", + "lang" : "fr-CH" + }, + { + "text" : "Roland Ginggen", + "lang" : "it-CH" + }, + { + "text" : "Roland Ginggen", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.zweisimmen.aero/modellflug-und-drohnen/", + "email" : "info@zweisimmen.aero", + "phone" : "0041337222577", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7239103, 47.4460774 ], + [ 7.723904, 47.4460738 ], + [ 7.7238317, 47.4460221 ], + [ 7.7237887, 47.4460032 ], + [ 7.7237385, 47.4459869 ], + [ 7.7236941, 47.4459781 ], + [ 7.7236568, 47.4459758 ], + [ 7.7236144, 47.445978 ], + [ 7.723579, 47.4459832 ], + [ 7.7235555, 47.4459898 ], + [ 7.723532, 47.4460024 ], + [ 7.7235051, 47.4460227 ], + [ 7.7234877, 47.446042 ], + [ 7.7234764, 47.4460642 ], + [ 7.7234674, 47.4460987 ], + [ 7.7234663, 47.446135 ], + [ 7.723472, 47.4461673 ], + [ 7.7234832, 47.4461942 ], + [ 7.7234917, 47.4462115 ], + [ 7.7234925, 47.4462137 ], + [ 7.7235062, 47.4462395 ], + [ 7.723528, 47.4462826 ], + [ 7.7235634, 47.4463545 ], + [ 7.7245526, 47.4470054 ], + [ 7.7247565, 47.4472349 ], + [ 7.7248125, 47.4473014 ], + [ 7.7248686, 47.4473486 ], + [ 7.7249492, 47.4473927 ], + [ 7.7250892, 47.4474318 ], + [ 7.725224, 47.4474846 ], + [ 7.725834, 47.4479296 ], + [ 7.7260533, 47.4481167 ], + [ 7.7264648000000005, 47.448566 ], + [ 7.7265629, 47.4487098 ], + [ 7.7272885, 47.4484105 ], + [ 7.7273534999999995, 47.4483838 ], + [ 7.727481, 47.4483311 ], + [ 7.7275539, 47.4483021 ], + [ 7.7271579, 47.4479762 ], + [ 7.7267259, 47.4476022 ], + [ 7.7264078, 47.4473494 ], + [ 7.726029, 47.4470646 ], + [ 7.7259804, 47.4470173 ], + [ 7.7259753, 47.4470197 ], + [ 7.7259557999999995, 47.4470271 ], + [ 7.7259355, 47.4470334 ], + [ 7.7259145, 47.4470385 ], + [ 7.7259033, 47.4470405 ], + [ 7.7258929, 47.4470423 ], + [ 7.7258693, 47.4470446 ], + [ 7.7258454, 47.4470456 ], + [ 7.7258215, 47.4470453 ], + [ 7.7257978, 47.4470437 ], + [ 7.7257743, 47.4470408 ], + [ 7.7257468, 47.4470356 ], + [ 7.7257202, 47.4470287 ], + [ 7.7256947, 47.4470201 ], + [ 7.7256706, 47.4470098 ], + [ 7.7256439, 47.4469992 ], + [ 7.725626, 47.446991 ], + [ 7.7255382, 47.4469452 ], + [ 7.7252491, 47.4467988 ], + [ 7.7250913, 47.4467172 ], + [ 7.7249327, 47.4466333 ], + [ 7.7247129, 47.4465128 ], + [ 7.7246941, 47.4465035 ], + [ 7.7245982, 47.4464614 ], + [ 7.7245912, 47.4464583 ], + [ 7.7245715, 47.4464479 ], + [ 7.724355, 47.4463129 ], + [ 7.7243427, 47.4463051 ], + [ 7.7242145, 47.4462238 ], + [ 7.7242072, 47.4462199 ], + [ 7.7241677, 47.4462026 ], + [ 7.724117, 47.4461803 ], + [ 7.7240991999999995, 47.4461774 ], + [ 7.7239103, 47.4460774 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns359", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Bloond", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Bloond", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Bloond", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Bloond", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7676395, 47.4256292 ], + [ 7.7675964, 47.4258684 ], + [ 7.7676126, 47.4259017 ], + [ 7.7676277, 47.4259353 ], + [ 7.7676416, 47.4259691 ], + [ 7.7676543, 47.4260032 ], + [ 7.7676658, 47.4260374 ], + [ 7.7676762, 47.4260718 ], + [ 7.7677183, 47.4262205 ], + [ 7.7677221, 47.4262343 ], + [ 7.7677256, 47.4262482 ], + [ 7.7677332, 47.4262758 ], + [ 7.7677425, 47.4263031 ], + [ 7.7677533, 47.4263302 ], + [ 7.7677658, 47.4263569 ], + [ 7.7677798, 47.4263833 ], + [ 7.7677952999999995, 47.4264093 ], + [ 7.7678082, 47.4264306 ], + [ 7.7678202, 47.4264521 ], + [ 7.7678312, 47.4264738 ], + [ 7.7678414, 47.4264957 ], + [ 7.7678506, 47.4265178 ], + [ 7.7678589, 47.4265401 ], + [ 7.7679082, 47.4266671 ], + [ 7.7679808999999995, 47.4268472 ], + [ 7.7679879, 47.4268638 ], + [ 7.7681179, 47.4268481 ], + [ 7.7679976, 47.4265535 ], + [ 7.7678453, 47.4261896 ], + [ 7.7676395, 47.4256292 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr118", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Gugen", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Gugen", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Gugen", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Gugen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7536194, 47.417392 ], + [ 7.7536564, 47.4172997 ], + [ 7.7536607, 47.417289 ], + [ 7.7536685, 47.4172918 ], + [ 7.7536763, 47.4172946 ], + [ 7.753684, 47.4172974 ], + [ 7.7537098, 47.4173072 ], + [ 7.7537359, 47.4173165 ], + [ 7.7537624, 47.4173254 ], + [ 7.7537891, 47.4173339 ], + [ 7.7538099, 47.4173406 ], + [ 7.7538306, 47.4173474 ], + [ 7.7538512, 47.4173544 ], + [ 7.7538716, 47.4173616 ], + [ 7.7538882000000005, 47.4173679 ], + [ 7.7539046, 47.4173745 ], + [ 7.7539207, 47.4173814 ], + [ 7.7539364, 47.4173887 ], + [ 7.7539518, 47.4173964 ], + [ 7.7539671, 47.4174047 ], + [ 7.7539826, 47.4174128 ], + [ 7.7539982, 47.4174209 ], + [ 7.7540139, 47.4174288 ], + [ 7.7540344999999995, 47.4174383 ], + [ 7.7540555, 47.4174474 ], + [ 7.7540769, 47.4174561 ], + [ 7.7540986, 47.4174644 ], + [ 7.7541207, 47.4174722 ], + [ 7.7541431, 47.4174796 ], + [ 7.7541511, 47.4174824 ], + [ 7.754159, 47.4174852 ], + [ 7.7541668999999995, 47.417488 ], + [ 7.7541747999999995, 47.4174909 ], + [ 7.7541993, 47.4175004 ], + [ 7.7542235999999995, 47.4175101 ], + [ 7.7542382, 47.417516 ], + [ 7.7542386, 47.4175163 ], + [ 7.7542913, 47.417539 ], + [ 7.7543075, 47.417547 ], + [ 7.7543099, 47.4175482 ], + [ 7.7543122, 47.4175494 ], + [ 7.7543162, 47.4175515 ], + [ 7.7543283, 47.4175579 ], + [ 7.7543405, 47.4175648 ], + [ 7.7543463, 47.417568 ], + [ 7.7543637, 47.4175786 ], + [ 7.7543806, 47.4175895 ], + [ 7.7544004, 47.4176027 ], + [ 7.7544196, 47.4176163 ], + [ 7.7544381, 47.4176303 ], + [ 7.754456, 47.4176447 ], + [ 7.7544733, 47.4176595 ], + [ 7.7544904, 47.4176743 ], + [ 7.7545081, 47.4176888 ], + [ 7.7545649999999995, 47.4177301 ], + [ 7.7545822, 47.4177418 ], + [ 7.7545999, 47.4177531 ], + [ 7.7546183, 47.4177639 ], + [ 7.7546372, 47.4177742 ], + [ 7.7546447, 47.4177783 ], + [ 7.7546492, 47.4177803 ], + [ 7.7546567, 47.4177841 ], + [ 7.7546767, 47.4177935 ], + [ 7.7546972, 47.4178023 ], + [ 7.7547931, 47.4178427 ], + [ 7.7548107, 47.4178491 ], + [ 7.7548287, 47.417855 ], + [ 7.754847, 47.4178604 ], + [ 7.7548657, 47.4178652 ], + [ 7.7548752, 47.4178673 ], + [ 7.7548847, 47.4178695 ], + [ 7.7549024, 47.4178729 ], + [ 7.7553578, 47.4177764 ], + [ 7.7556928, 47.4177054 ], + [ 7.7557541, 47.4176924 ], + [ 7.7564769, 47.4176165 ], + [ 7.7568953, 47.417577 ], + [ 7.7574175, 47.41753 ], + [ 7.7574435, 47.4175277 ], + [ 7.7574342, 47.417512 ], + [ 7.7571872, 47.417253 ], + [ 7.7568935, 47.4169781 ], + [ 7.7564164, 47.4166123 ], + [ 7.7562183000000005, 47.4164345 ], + [ 7.7561812, 47.4163798 ], + [ 7.7561789999999995, 47.4163765 ], + [ 7.756136, 47.416313 ], + [ 7.7560737, 47.4161638 ], + [ 7.7560357, 47.4159491 ], + [ 7.7560619, 47.4157152 ], + [ 7.7561675999999995, 47.4154723 ], + [ 7.7561723, 47.4154615 ], + [ 7.7561966, 47.4154059 ], + [ 7.7562111, 47.4153745 ], + [ 7.7561067, 47.415355 ], + [ 7.7559929, 47.4153338 ], + [ 7.7558689, 47.415311 ], + [ 7.7557829, 47.4153635 ], + [ 7.7556787, 47.4154427 ], + [ 7.7556154, 47.4155204 ], + [ 7.7555458999999995, 47.4156158 ], + [ 7.7554725, 47.4157021 ], + [ 7.7553877, 47.4157915 ], + [ 7.7552643, 47.4158882 ], + [ 7.7552167999999995, 47.415932 ], + [ 7.7551326, 47.415997 ], + [ 7.755052, 47.4160546 ], + [ 7.7549451, 47.4161227 ], + [ 7.7548489, 47.4161795 ], + [ 7.7547519, 47.4162265 ], + [ 7.754643, 47.4162676 ], + [ 7.7545377, 47.4162979 ], + [ 7.754418, 47.416322 ], + [ 7.7543385, 47.4163333 ], + [ 7.7542476, 47.4163433 ], + [ 7.7541729, 47.4163495 ], + [ 7.7540909, 47.4163526 ], + [ 7.7539593, 47.4163512 ], + [ 7.7538599, 47.4163454 ], + [ 7.7537257, 47.4163375 ], + [ 7.7535822, 47.4163366 ], + [ 7.7533332999999995, 47.4163422 ], + [ 7.7533328, 47.4163482 ], + [ 7.753335, 47.4163917 ], + [ 7.7533408, 47.41651 ], + [ 7.7533774, 47.4167812 ], + [ 7.7533504, 47.4169526 ], + [ 7.7532768999999995, 47.4171954 ], + [ 7.7532096, 47.4173276 ], + [ 7.7532248, 47.4173299 ], + [ 7.7534856, 47.4173697 ], + [ 7.7535027, 47.4173722 ], + [ 7.7536194, 47.417392 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns016", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Zwischenflüe-Brunnenstig", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Zwischenflüe-Brunnenstig", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Zwischenflüe-Brunnenstig", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Zwischenflüe-Brunnenstig", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7460155, 47.3708807 ], + [ 7.7463936, 47.3708464 ], + [ 7.7466178, 47.3708458 ], + [ 7.7469394, 47.3707307 ], + [ 7.7471834, 47.3705111 ], + [ 7.7472665, 47.3703443 ], + [ 7.7472446999999995, 47.3702158 ], + [ 7.747167, 47.3701113 ], + [ 7.747008, 47.3699729 ], + [ 7.7469981, 47.3699642 ], + [ 7.7469353, 47.3699445 ], + [ 7.7468927999999995, 47.3699312 ], + [ 7.7464159, 47.3699041 ], + [ 7.7462968, 47.3698566 ], + [ 7.746061, 47.3697773 ], + [ 7.7456271999999995, 47.3696385 ], + [ 7.745404, 47.3695706 ], + [ 7.7452773, 47.3694567 ], + [ 7.7449200000000005, 47.3694548 ], + [ 7.7446257, 47.369447 ], + [ 7.7441753, 47.3693368 ], + [ 7.7439732, 47.3692831 ], + [ 7.7436993, 47.3691667 ], + [ 7.7435475, 47.3690758 ], + [ 7.7434208, 47.3689818 ], + [ 7.7432483, 47.368821 ], + [ 7.743219, 47.3686656 ], + [ 7.742896, 47.3686741 ], + [ 7.7426426, 47.3690671 ], + [ 7.7422626, 47.3691517 ], + [ 7.7420846, 47.369202 ], + [ 7.7414480999999995, 47.3685064 ], + [ 7.7413003, 47.3683878 ], + [ 7.7412132, 47.368331 ], + [ 7.7410823, 47.3682456 ], + [ 7.7409059, 47.3680176 ], + [ 7.7407859, 47.3678656 ], + [ 7.7407012, 47.3677469 ], + [ 7.7406781, 47.3677239 ], + [ 7.7406254, 47.3676722 ], + [ 7.7406009000000005, 47.3676457 ], + [ 7.74058, 47.3676178 ], + [ 7.740563, 47.3675887 ], + [ 7.7405618, 47.3675864 ], + [ 7.7405607, 47.3675841 ], + [ 7.7405597, 47.3675817 ], + [ 7.7405557, 47.3675716 ], + [ 7.7405527, 47.3675613 ], + [ 7.7405506, 47.3675509 ], + [ 7.7405494, 47.3675358 ], + [ 7.7405501999999995, 47.3675208 ], + [ 7.7405529, 47.3675058 ], + [ 7.7405577, 47.3674911 ], + [ 7.7405901, 47.3674113 ], + [ 7.7411472, 47.3673688 ], + [ 7.7418927, 47.3673122 ], + [ 7.7428985, 47.3672356 ], + [ 7.7430634, 47.3672231 ], + [ 7.7430975, 47.3671406 ], + [ 7.7431366, 47.3670856 ], + [ 7.7431825, 47.367033 ], + [ 7.7432349, 47.3669833 ], + [ 7.7432934, 47.3669369 ], + [ 7.7433575, 47.366894 ], + [ 7.7434268, 47.366855 ], + [ 7.7434669, 47.3668296 ], + [ 7.7435039, 47.366802 ], + [ 7.7435374, 47.3667725 ], + [ 7.7435673, 47.3667412 ], + [ 7.7435933, 47.3667084 ], + [ 7.7436153, 47.3666742 ], + [ 7.7437638, 47.3667606 ], + [ 7.7436212, 47.3668885 ], + [ 7.7437622, 47.3669521 ], + [ 7.7438166, 47.3671658 ], + [ 7.7438715, 47.3671616 ], + [ 7.7439373, 47.3670128 ], + [ 7.7440408, 47.3669319 ], + [ 7.7441012, 47.3668027 ], + [ 7.7440959, 47.3667457 ], + [ 7.7441804, 47.3667352 ], + [ 7.744193, 47.3666291 ], + [ 7.744166, 47.3665615 ], + [ 7.7441976, 47.3665445 ], + [ 7.7444653, 47.36653 ], + [ 7.7445454, 47.3665591 ], + [ 7.7446353, 47.366514 ], + [ 7.7446483, 47.3664824 ], + [ 7.7445601, 47.3664419 ], + [ 7.7446394, 47.3663733 ], + [ 7.7445892, 47.3663104 ], + [ 7.7446447, 47.3662457 ], + [ 7.7446584, 47.3661781 ], + [ 7.7445661, 47.3660984 ], + [ 7.7444007, 47.3660878 ], + [ 7.7444402, 47.3660461 ], + [ 7.7444469, 47.3660158 ], + [ 7.7444508, 47.36596 ], + [ 7.744347, 47.3659222 ], + [ 7.7442945, 47.3657783 ], + [ 7.7440782, 47.3656827 ], + [ 7.7442901, 47.3655228 ], + [ 7.7445268, 47.3653653 ], + [ 7.7445325, 47.3652826 ], + [ 7.7446568, 47.3651742 ], + [ 7.7446325, 47.3650592 ], + [ 7.7448029, 47.3649461 ], + [ 7.7448522, 47.3649549 ], + [ 7.7449514, 47.3649726 ], + [ 7.7450575, 47.3649534 ], + [ 7.7451111, 47.3648915 ], + [ 7.7452371, 47.3649501 ], + [ 7.7455863, 47.3648005 ], + [ 7.7457273, 47.364846299999996 ], + [ 7.7460256, 47.3648704 ], + [ 7.7462792, 47.3649115 ], + [ 7.7464406, 47.3648585 ], + [ 7.7466045, 47.3648574 ], + [ 7.7468356, 47.3649257 ], + [ 7.747147, 47.3649082 ], + [ 7.7474027, 47.3648073 ], + [ 7.7474153999999995, 47.3647842 ], + [ 7.7476893, 47.3646771 ], + [ 7.7477796, 47.3646821 ], + [ 7.7478184, 47.3646265 ], + [ 7.7479464, 47.3645787 ], + [ 7.7483148, 47.36472 ], + [ 7.7485392, 47.3646464 ], + [ 7.7485922, 47.3646291 ], + [ 7.7487818, 47.3645963 ], + [ 7.7489481, 47.3646362 ], + [ 7.749146, 47.3648573 ], + [ 7.749316, 47.3648712 ], + [ 7.7494506, 47.3649095 ], + [ 7.7496066, 47.3648542 ], + [ 7.7496211, 47.3646331 ], + [ 7.7497074, 47.3645757 ], + [ 7.7498389, 47.3646214 ], + [ 7.74989, 47.3645653 ], + [ 7.749924, 47.3645069 ], + [ 7.750086, 47.3644588 ], + [ 7.7501973, 47.3642839 ], + [ 7.7502146, 47.3642235 ], + [ 7.7503356, 47.3640383 ], + [ 7.7504554, 47.3640479 ], + [ 7.7504939, 47.3641147 ], + [ 7.7506391, 47.3640641 ], + [ 7.75064, 47.3640199 ], + [ 7.7510258, 47.3640083 ], + [ 7.751289, 47.36404 ], + [ 7.7513225, 47.3640965 ], + [ 7.7514307, 47.3640539 ], + [ 7.7519263, 47.3640381 ], + [ 7.7519474, 47.3640422 ], + [ 7.7520076, 47.3640442 ], + [ 7.7523298, 47.3640528 ], + [ 7.7528763, 47.3640656 ], + [ 7.7531844, 47.3640457 ], + [ 7.7534361, 47.3639641 ], + [ 7.7535073, 47.3638777 ], + [ 7.7535891, 47.3637781 ], + [ 7.7536018, 47.3635543 ], + [ 7.7534883, 47.3633024 ], + [ 7.7533469, 47.3631432 ], + [ 7.7521239, 47.3625695 ], + [ 7.7524122, 47.3621911 ], + [ 7.7525518, 47.3620058 ], + [ 7.752657, 47.3618722 ], + [ 7.7527187, 47.3618065 ], + [ 7.7527004999999996, 47.3617256 ], + [ 7.7525908, 47.3617043 ], + [ 7.7523542, 47.3617031 ], + [ 7.7522267, 47.361683 ], + [ 7.7521863, 47.3616318 ], + [ 7.752078, 47.3616259 ], + [ 7.7520275, 47.3617075 ], + [ 7.7519802, 47.3616775 ], + [ 7.7519618, 47.3616649 ], + [ 7.751763, 47.3617397 ], + [ 7.7517965, 47.3617947 ], + [ 7.7517825, 47.3618134 ], + [ 7.7515195, 47.3618154 ], + [ 7.7513328999999995, 47.3616053 ], + [ 7.7508242, 47.3615096 ], + [ 7.7504369, 47.3611804 ], + [ 7.7503554999999995, 47.3611464 ], + [ 7.7503031, 47.3611126 ], + [ 7.7503025999999995, 47.3610814 ], + [ 7.7502324, 47.3610503 ], + [ 7.7501698999999995, 47.3610347 ], + [ 7.7500716, 47.3610377 ], + [ 7.7498805, 47.3610302 ], + [ 7.7497108, 47.3610208 ], + [ 7.7496243, 47.3609326 ], + [ 7.7492884, 47.3608363 ], + [ 7.749092, 47.3608262 ], + [ 7.749126, 47.3608605 ], + [ 7.7493455, 47.3610276 ], + [ 7.7494824, 47.3611822 ], + [ 7.7495709, 47.3612795 ], + [ 7.7496314, 47.3613461 ], + [ 7.7510156, 47.3624913 ], + [ 7.7511109, 47.3625701 ], + [ 7.7521056, 47.3630707 ], + [ 7.7525024, 47.3632647 ], + [ 7.7524771, 47.363294 ], + [ 7.7523415, 47.3634575 ], + [ 7.7521234, 47.3637308 ], + [ 7.7519552, 47.3639388 ], + [ 7.7518804, 47.3638668 ], + [ 7.7514754, 47.3638349 ], + [ 7.7504957999999995, 47.3637694 ], + [ 7.7497506, 47.3637889 ], + [ 7.7492255, 47.3639086 ], + [ 7.7488141, 47.363788 ], + [ 7.7485304, 47.3638729 ], + [ 7.7480557999999995, 47.3639906 ], + [ 7.7476831, 47.364037 ], + [ 7.7470073, 47.3641227 ], + [ 7.7465774, 47.3641077 ], + [ 7.7461272999999995, 47.3640147 ], + [ 7.74568, 47.3641507 ], + [ 7.7453914, 47.3642649 ], + [ 7.7451718, 47.364363 ], + [ 7.7448387, 47.3645249 ], + [ 7.7440742, 47.3647489 ], + [ 7.7436534, 47.3648972 ], + [ 7.7431675, 47.3651375 ], + [ 7.7430572, 47.3652197 ], + [ 7.7427834, 47.3651233 ], + [ 7.7425957, 47.3650882 ], + [ 7.7424935999999995, 47.365203 ], + [ 7.7423167, 47.365392 ], + [ 7.7422598, 47.3654586 ], + [ 7.7418888, 47.3655889 ], + [ 7.7414375, 47.36562 ], + [ 7.740577, 47.3657882 ], + [ 7.7399011, 47.3659792 ], + [ 7.7397872, 47.3660114 ], + [ 7.739223, 47.3662084 ], + [ 7.738888, 47.3664172 ], + [ 7.7381262, 47.3666468 ], + [ 7.737656, 47.3668552 ], + [ 7.73777, 47.3670339 ], + [ 7.7380388, 47.3671458 ], + [ 7.7382796, 47.36729 ], + [ 7.7386955, 47.3674452 ], + [ 7.7387193, 47.3675542 ], + [ 7.7387598, 47.3677676 ], + [ 7.7389737, 47.3680991 ], + [ 7.7391382, 47.3683171 ], + [ 7.7390847, 47.3685503 ], + [ 7.7391782, 47.3691001 ], + [ 7.7392272, 47.3693404 ], + [ 7.7391731, 47.3695668 ], + [ 7.7392014, 47.3698025 ], + [ 7.7390477, 47.3700275 ], + [ 7.73885, 47.3702251 ], + [ 7.7392620999999995, 47.3703669 ], + [ 7.7395738, 47.3704956 ], + [ 7.7398720999999995, 47.3706188 ], + [ 7.7401112, 47.3707155 ], + [ 7.7402004, 47.3707472 ], + [ 7.7403178, 47.3707764 ], + [ 7.7404098, 47.3707911 ], + [ 7.7404281, 47.3707935 ], + [ 7.740515, 47.3708046 ], + [ 7.7406134, 47.3708136 ], + [ 7.7408084, 47.3708226 ], + [ 7.7412919, 47.3708519 ], + [ 7.741718, 47.3708789 ], + [ 7.7421641, 47.37064 ], + [ 7.7424388, 47.3704794 ], + [ 7.7427014, 47.3703586 ], + [ 7.7430704, 47.3702908 ], + [ 7.7432792, 47.370266 ], + [ 7.7435211, 47.3706325 ], + [ 7.7437899, 47.3706311 ], + [ 7.7449566999999995, 47.3706314 ], + [ 7.7449861, 47.3707254 ], + [ 7.7451673, 47.3708068 ], + [ 7.7454479, 47.3708679 ], + [ 7.7457354, 47.37091 ], + [ 7.7460155, 47.3708807 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns339", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Bilsteinflue - Nünbrunnen", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Bilsteinflue - Nünbrunnen", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Bilsteinflue - Nünbrunnen", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Bilsteinflue - Nünbrunnen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5821252, 47.5180518 ], + [ 7.5821917, 47.5180161 ], + [ 7.5822587, 47.5179808 ], + [ 7.5823260999999995, 47.5179459 ], + [ 7.5823939, 47.5179114 ], + [ 7.5824622, 47.5178772 ], + [ 7.5825309, 47.5178435 ], + [ 7.582711, 47.5177441 ], + [ 7.5826171, 47.5176688 ], + [ 7.5825849, 47.5175931 ], + [ 7.5825913, 47.517469 ], + [ 7.5825786, 47.5173091 ], + [ 7.5825412, 47.517151 ], + [ 7.5824796, 47.5169965 ], + [ 7.5823946, 47.5168471 ], + [ 7.582287, 47.5167046 ], + [ 7.5822761, 47.5166898 ], + [ 7.5822371, 47.516627 ], + [ 7.5822081, 47.5165618 ], + [ 7.5821894, 47.5164949 ], + [ 7.5821814, 47.5164268 ], + [ 7.5823412, 47.5162888 ], + [ 7.5824106, 47.5162511 ], + [ 7.5826833, 47.5160624 ], + [ 7.5830531, 47.5159853 ], + [ 7.5832657, 47.5159016 ], + [ 7.5833549, 47.5158778 ], + [ 7.5834928999999995, 47.5158333 ], + [ 7.5836949, 47.5157857 ], + [ 7.5840135, 47.515657 ], + [ 7.5841438, 47.5155625 ], + [ 7.5842452, 47.5154586 ], + [ 7.584271, 47.5153791 ], + [ 7.5842634, 47.5153362 ], + [ 7.5841482, 47.5153093 ], + [ 7.5840653, 47.5153197 ], + [ 7.584039, 47.515322 ], + [ 7.584039, 47.5153224 ], + [ 7.5839502, 47.5153347 ], + [ 7.5837904, 47.5153997 ], + [ 7.5836497, 47.5154569 ], + [ 7.5831209, 47.5155115 ], + [ 7.5830068, 47.5155117 ], + [ 7.582894, 47.5154942 ], + [ 7.5828109, 47.515468 ], + [ 7.5823842, 47.5152799 ], + [ 7.5823537, 47.5152556 ], + [ 7.5815527, 47.5148544 ], + [ 7.5815124, 47.5148309 ], + [ 7.5808773, 47.5150027 ], + [ 7.5809408, 47.515102 ], + [ 7.5810383, 47.5152143 ], + [ 7.5811538, 47.5153175 ], + [ 7.5812885, 47.5154115 ], + [ 7.5816107, 47.5156135 ], + [ 7.5817284, 47.5157195 ], + [ 7.5817884, 47.5157845 ], + [ 7.5818328, 47.5158319 ], + [ 7.5819, 47.515958 ], + [ 7.581895, 47.516093 ], + [ 7.5818638, 47.5163518 ], + [ 7.5817971, 47.5165739 ], + [ 7.5817761, 47.5166764 ], + [ 7.5817815, 47.5167799 ], + [ 7.5818061, 47.516927 ], + [ 7.5818083, 47.5170534 ], + [ 7.5817659, 47.5171791 ], + [ 7.5816842, 47.5172942 ], + [ 7.5815646, 47.517393 ], + [ 7.5814432, 47.517475 ], + [ 7.5810838, 47.5177194 ], + [ 7.5810133, 47.5177664 ], + [ 7.5806811, 47.518006 ], + [ 7.5805522, 47.5181069 ], + [ 7.5805454, 47.5181128 ], + [ 7.5804363, 47.5182131 ], + [ 7.580332, 47.5183167 ], + [ 7.5799123, 47.5186606 ], + [ 7.5797862, 47.5187545 ], + [ 7.5797526, 47.5187746 ], + [ 7.5796465, 47.51884 ], + [ 7.5794407, 47.5189535 ], + [ 7.5792124, 47.5190896 ], + [ 7.5790009, 47.5192365 ], + [ 7.5784989, 47.5196 ], + [ 7.5780731, 47.5199487 ], + [ 7.5780525, 47.5199646 ], + [ 7.5780272, 47.520065 ], + [ 7.5775165, 47.5203259 ], + [ 7.577308, 47.5204526 ], + [ 7.5772382, 47.5204951 ], + [ 7.5770347000000005, 47.5206055 ], + [ 7.5769743, 47.5206382 ], + [ 7.5766604, 47.5208664 ], + [ 7.5764761, 47.5210004 ], + [ 7.5758806, 47.5212402 ], + [ 7.5757693, 47.5212851 ], + [ 7.5753955, 47.521447 ], + [ 7.5753821, 47.5214528 ], + [ 7.5753687, 47.5214586 ], + [ 7.5754168, 47.5215162 ], + [ 7.575501, 47.5216073 ], + [ 7.5753341, 47.5217089 ], + [ 7.5753366, 47.5218183 ], + [ 7.5753871, 47.5218926 ], + [ 7.5754071, 47.5218959 ], + [ 7.5754434, 47.5219142 ], + [ 7.5754202, 47.5219588 ], + [ 7.5754988, 47.5219228 ], + [ 7.5755769, 47.5218863 ], + [ 7.5756547, 47.5218495 ], + [ 7.575732, 47.5218122 ], + [ 7.5758088, 47.5217745 ], + [ 7.5758852999999995, 47.5217364 ], + [ 7.575952, 47.5217026 ], + [ 7.5760184, 47.5216684 ], + [ 7.5760844, 47.5216339 ], + [ 7.5761500999999996, 47.5215992 ], + [ 7.5762154, 47.5215641 ], + [ 7.5762874, 47.5215242 ], + [ 7.576359, 47.521484 ], + [ 7.5764302, 47.5214435 ], + [ 7.5765011, 47.5214027 ], + [ 7.5765587, 47.521369 ], + [ 7.5766161, 47.5213352 ], + [ 7.5766732, 47.5213011 ], + [ 7.5767301, 47.5212668 ], + [ 7.5771002, 47.5210464 ], + [ 7.5773539, 47.5208947 ], + [ 7.5775766, 47.5207606 ], + [ 7.5780656, 47.5204692 ], + [ 7.5784148, 47.5202603 ], + [ 7.5789527, 47.5199364 ], + [ 7.5793931, 47.5196701 ], + [ 7.5803986, 47.5190698 ], + [ 7.5807221, 47.5188782 ], + [ 7.5817342, 47.5182737 ], + [ 7.5817982, 47.5182357 ], + [ 7.5818627, 47.5181982 ], + [ 7.5819276, 47.518161 ], + [ 7.581993, 47.5181242 ], + [ 7.5820589, 47.5180878 ], + [ 7.5821252, 47.5180518 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns136", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Känelgraben - Bammertsgraben", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Känelgraben - Bammertsgraben", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Känelgraben - Bammertsgraben", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Känelgraben - Bammertsgraben", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8255649, 47.4195336 ], + [ 7.8260698, 47.4195335 ], + [ 7.8263193, 47.4196007 ], + [ 7.8264368, 47.4195296 ], + [ 7.8263579, 47.4194363 ], + [ 7.8261769, 47.4193792 ], + [ 7.8260673, 47.4193292 ], + [ 7.8259706, 47.4191715 ], + [ 7.8256896, 47.4185454 ], + [ 7.8255064999999995, 47.4181392 ], + [ 7.8253686, 47.41792 ], + [ 7.8251196, 47.4175978 ], + [ 7.8250114, 47.417426 ], + [ 7.8249072, 47.4174283 ], + [ 7.8251318, 47.4181713 ], + [ 7.8252747, 47.4188339 ], + [ 7.8253356, 47.419008 ], + [ 7.8254066, 47.4191871 ], + [ 7.8255649, 47.4195336 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns116", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Chilpen-Schmetterlingskorridor", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Chilpen-Schmetterlingskorridor", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Chilpen-Schmetterlingskorridor", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Chilpen-Schmetterlingskorridor", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.627183, 47.4922832 ], + [ 7.6271035, 47.4921132 ], + [ 7.6270006, 47.4919414 ], + [ 7.6268057, 47.4916678 ], + [ 7.6267244, 47.4916037 ], + [ 7.6265216, 47.4917367 ], + [ 7.6262396, 47.4918615 ], + [ 7.6256469, 47.4920714 ], + [ 7.6253525, 47.4921536 ], + [ 7.6251021, 47.492215 ], + [ 7.6250813, 47.492184 ], + [ 7.6250183, 47.4921993 ], + [ 7.6250681, 47.4921529 ], + [ 7.6251984, 47.4920553 ], + [ 7.6252234, 47.4920396 ], + [ 7.6252981, 47.4920024 ], + [ 7.6253747, 47.4919658 ], + [ 7.6254265, 47.4919461 ], + [ 7.6254809, 47.4919298 ], + [ 7.6256525, 47.491833 ], + [ 7.6256687, 47.4918204 ], + [ 7.6257223, 47.491779 ], + [ 7.6257946, 47.4917474 ], + [ 7.6259345, 47.4916681 ], + [ 7.6259586, 47.491633 ], + [ 7.625956, 47.4916257 ], + [ 7.6260065, 47.4916191 ], + [ 7.6261130999999995, 47.4915641 ], + [ 7.6261931, 47.4915277 ], + [ 7.6262216, 47.4915047 ], + [ 7.6263123, 47.4914645 ], + [ 7.6265097, 47.4913833 ], + [ 7.6265275, 47.4913778 ], + [ 7.6266313, 47.4913252 ], + [ 7.6269165999999995, 47.4912144 ], + [ 7.6270061, 47.4911729 ], + [ 7.627126, 47.4911343 ], + [ 7.6271296, 47.4911317 ], + [ 7.62716, 47.4910988 ], + [ 7.6272968, 47.491009 ], + [ 7.6273075, 47.490964 ], + [ 7.6273409, 47.4909006 ], + [ 7.6273976, 47.490868 ], + [ 7.6274463, 47.4908574 ], + [ 7.6275528999999995, 47.4908264 ], + [ 7.6275762, 47.490823 ], + [ 7.6275524, 47.4908044 ], + [ 7.6275184, 47.4907898 ], + [ 7.6273564, 47.490764 ], + [ 7.6269274, 47.4907445 ], + [ 7.6268471, 47.4907563 ], + [ 7.6259308, 47.4909397 ], + [ 7.6251549, 47.4910965 ], + [ 7.6242858, 47.4912706 ], + [ 7.6242288, 47.4912966 ], + [ 7.624206, 47.4913384 ], + [ 7.6242018, 47.4915373 ], + [ 7.6241904, 47.4916279 ], + [ 7.6241679, 47.491721 ], + [ 7.6241357, 47.4918115 ], + [ 7.6240898999999995, 47.491901 ], + [ 7.6240388, 47.4919862 ], + [ 7.6239767, 47.4920698 ], + [ 7.623904, 47.49215 ], + [ 7.6238275, 47.4922256 ], + [ 7.6237439, 47.4922996 ], + [ 7.6235137, 47.4924818 ], + [ 7.6235024, 47.4925161 ], + [ 7.6235424, 47.4925396 ], + [ 7.623654, 47.4925566 ], + [ 7.6239775, 47.4926011 ], + [ 7.6240668, 47.4926723 ], + [ 7.6240979, 47.4926881 ], + [ 7.6241243, 47.4927167 ], + [ 7.6243464, 47.4928639 ], + [ 7.6245139, 47.4930142 ], + [ 7.6245731, 47.4930819 ], + [ 7.6247333, 47.4933563 ], + [ 7.6248336, 47.4934701 ], + [ 7.6247862, 47.493487 ], + [ 7.6247449, 47.493512 ], + [ 7.6246842, 47.4935726 ], + [ 7.6244061, 47.4938724 ], + [ 7.624473, 47.4938989 ], + [ 7.6250102, 47.4941113 ], + [ 7.6255419, 47.494321 ], + [ 7.6255649, 47.4943301 ], + [ 7.6262687, 47.494608 ], + [ 7.6263631, 47.4946454 ], + [ 7.6264126999999995, 47.4943915 ], + [ 7.6265307, 47.4941313 ], + [ 7.6266836, 47.4938867 ], + [ 7.6271614, 47.4933494 ], + [ 7.6271957, 47.4933138 ], + [ 7.6266145, 47.4928267 ], + [ 7.6265399, 47.4927642 ], + [ 7.6265063, 47.492736 ], + [ 7.6265397, 47.4927201 ], + [ 7.6268683, 47.4925859 ], + [ 7.627105, 47.4925195 ], + [ 7.6272499, 47.4925025 ], + [ 7.627183, 47.4922832 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns062", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Ermitage - Chilchholz", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Ermitage - Chilchholz", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Ermitage - Chilchholz", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Ermitage - Chilchholz", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7416454, 47.4253992 ], + [ 7.7418056, 47.4256334 ], + [ 7.7422084, 47.4259212 ], + [ 7.7425594, 47.4261807 ], + [ 7.7427997, 47.426377 ], + [ 7.7432278, 47.4267155 ], + [ 7.7436975, 47.4270353 ], + [ 7.7441426, 47.42725 ], + [ 7.7446355, 47.4274894 ], + [ 7.7450974, 47.4277101 ], + [ 7.745588, 47.4281708 ], + [ 7.7461024, 47.4286514 ], + [ 7.7463422, 47.428871 ], + [ 7.7463496, 47.4288823 ], + [ 7.7463844, 47.4288566 ], + [ 7.7465699, 47.4287203 ], + [ 7.7467371, 47.4285735 ], + [ 7.7466718, 47.4282884 ], + [ 7.7467065, 47.4280834 ], + [ 7.7470006, 47.4274276 ], + [ 7.7467847, 47.4274847 ], + [ 7.7465738, 47.4274026 ], + [ 7.7463301, 47.4270447 ], + [ 7.7458523, 47.4268416 ], + [ 7.7453956, 47.4264265 ], + [ 7.7451445, 47.4262116 ], + [ 7.7448638, 47.4259475 ], + [ 7.7449422, 47.425687 ], + [ 7.745035, 47.4252946 ], + [ 7.7451077999999995, 47.4250594 ], + [ 7.745132, 47.4249723 ], + [ 7.745034, 47.4249325 ], + [ 7.7449924, 47.424881 ], + [ 7.7449763, 47.4247966 ], + [ 7.7449531, 47.424673 ], + [ 7.7446233, 47.4248341 ], + [ 7.7443143, 47.4250026 ], + [ 7.7440335000000005, 47.425154 ], + [ 7.7438713, 47.4252431 ], + [ 7.7437585, 47.4252822 ], + [ 7.7434839, 47.4253156 ], + [ 7.7432801, 47.4253231 ], + [ 7.7430121, 47.4253167 ], + [ 7.7428531, 47.4253197 ], + [ 7.7425585, 47.4253226 ], + [ 7.7421223, 47.4253694 ], + [ 7.7416454, 47.4253992 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns212", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Tannenboden - Allmet", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Tannenboden - Allmet", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Tannenboden - Allmet", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Tannenboden - Allmet", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.8083746, 47.0881522 ], + [ 6.8084296, 47.0883079 ], + [ 6.808538, 47.088468 ], + [ 6.80869, 47.0886106 ], + [ 6.8088747, 47.0887521 ], + [ 6.8089295, 47.0887941 ], + [ 6.8089949, 47.0888442 ], + [ 6.8091846, 47.0889637 ], + [ 6.8094048, 47.0890556 ], + [ 6.8096471, 47.0891164 ], + [ 6.809902, 47.0891438 ], + [ 6.8101599, 47.0891367 ], + [ 6.8104108, 47.0890953 ], + [ 6.810645, 47.0890214 ], + [ 6.8108537, 47.0889177 ], + [ 6.8109649, 47.0888501 ], + [ 6.8113295, 47.0886284 ], + [ 6.8115047, 47.0884988 ], + [ 6.8116394, 47.0883483 ], + [ 6.8117285, 47.0881828 ], + [ 6.8117687, 47.0880085 ], + [ 6.8117582, 47.0878323 ], + [ 6.8116977, 47.0876609 ], + [ 6.8115893, 47.0875008 ], + [ 6.8114373, 47.0873582 ], + [ 6.8111326, 47.0871246 ], + [ 6.8109428, 47.0870051 ], + [ 6.8107226, 47.0869131 ], + [ 6.8105865, 47.086879 ], + [ 6.8105727, 47.0868584 ], + [ 6.8104213, 47.0867156 ], + [ 6.8095046, 47.0860087 ], + [ 6.8093153, 47.0858888 ], + [ 6.8090954, 47.0857964 ], + [ 6.8088533, 47.0857351 ], + [ 6.8085983, 47.0857072 ], + [ 6.8083403, 47.0857139 ], + [ 6.8080891, 47.0857548 ], + [ 6.8078544999999995, 47.0858284 ], + [ 6.8076454, 47.0859319 ], + [ 6.8074099, 47.0860744 ], + [ 6.8072344000000005, 47.0862037 ], + [ 6.8070992, 47.0863539 ], + [ 6.8070094999999995, 47.0865193 ], + [ 6.8069688, 47.0866934 ], + [ 6.8069786, 47.0868696 ], + [ 6.8070385, 47.0870412 ], + [ 6.8071463, 47.0872014 ], + [ 6.8072978, 47.0873442 ], + [ 6.8074755, 47.0874812 ], + [ 6.8078537, 47.0877729 ], + [ 6.8082146, 47.088051 ], + [ 6.8083746, 47.0881522 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "NE02", + "country" : "CHE", + "name" : [ + { + "text" : "SISPOL", + "lang" : "de-CH" + }, + { + "text" : "SISPOL", + "lang" : "fr-CH" + }, + { + "text" : "SISPOL", + "lang" : "it-CH" + }, + { + "text" : "SISPOL", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "regulationExemption" : "YES", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Police Neuchâteloise", + "lang" : "de-CH" + }, + { + "text" : "Police Neuchâteloise", + "lang" : "fr-CH" + }, + { + "text" : "Police Neuchâteloise", + "lang" : "it-CH" + }, + { + "text" : "Police Neuchâteloise", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "PN - Rens et opérations", + "lang" : "de-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "fr-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "it-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "PN - Rens et opérations", + "lang" : "de-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "fr-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "it-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ne.ch/autorites/DESC/PONE/Pages/Drones.aspx", + "email" : "Police.Neuchateloise@ne.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5540288, 47.4926252 ], + [ 7.5540856, 47.4926127 ], + [ 7.554098, 47.4926085 ], + [ 7.5541303, 47.4925977 ], + [ 7.5540155, 47.4925123 ], + [ 7.5538188, 47.4924841 ], + [ 7.5535254, 47.4923776 ], + [ 7.5533884, 47.4923433 ], + [ 7.5531751, 47.4922901 ], + [ 7.5530201, 47.4922517 ], + [ 7.5528485, 47.4922144 ], + [ 7.5528623, 47.4923203 ], + [ 7.5528647, 47.4923401 ], + [ 7.5528856, 47.4923392 ], + [ 7.5528971, 47.4924334 ], + [ 7.5529177, 47.4924393 ], + [ 7.5529386, 47.4924447 ], + [ 7.5529599, 47.4924496 ], + [ 7.5529813, 47.4924539 ], + [ 7.553003, 47.4924578 ], + [ 7.5530249, 47.4924611 ], + [ 7.5530469, 47.4924639 ], + [ 7.553069, 47.4924661 ], + [ 7.553107, 47.4924687 ], + [ 7.5531085000000004, 47.4924087 ], + [ 7.5532384, 47.4924402 ], + [ 7.5532593, 47.4924783 ], + [ 7.5532663, 47.4924791 ], + [ 7.5532733, 47.4924793 ], + [ 7.5532804, 47.4924789 ], + [ 7.5532873, 47.4924779 ], + [ 7.5532939, 47.4924762 ], + [ 7.5533002, 47.4924739 ], + [ 7.5533059, 47.4924711 ], + [ 7.5533111, 47.4924678 ], + [ 7.5533155, 47.4924641 ], + [ 7.5533192, 47.49246 ], + [ 7.5534236, 47.4924748 ], + [ 7.5534911000000005, 47.4924839 ], + [ 7.5535519, 47.4924942 ], + [ 7.5536549, 47.4925223 ], + [ 7.5537721, 47.4925678 ], + [ 7.5538423, 47.4926032 ], + [ 7.5538576, 47.4926102 ], + [ 7.5538738, 47.4926163 ], + [ 7.5538906, 47.4926214 ], + [ 7.553908, 47.4926255 ], + [ 7.5539259, 47.4926285 ], + [ 7.5539441, 47.4926305 ], + [ 7.5539625, 47.4926315 ], + [ 7.553981, 47.4926313 ], + [ 7.5540237, 47.4926262 ], + [ 7.5540288, 47.4926252 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns140", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Marbach", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Marbach", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Marbach", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Marbach", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7720836, 47.3527944 ], + [ 7.772183, 47.3528731 ], + [ 7.7722586, 47.3529497 ], + [ 7.7723186, 47.3530301 ], + [ 7.7723987, 47.3531866 ], + [ 7.772445, 47.3531781 ], + [ 7.7727099, 47.3535678 ], + [ 7.7727996, 47.3537161 ], + [ 7.7729342, 47.3536949 ], + [ 7.7734603, 47.3540347 ], + [ 7.7741691, 47.3545835 ], + [ 7.7746592, 47.3548642 ], + [ 7.7748595, 47.3549526 ], + [ 7.7750099, 47.3550715 ], + [ 7.7751887, 47.3552141 ], + [ 7.7752248, 47.3551726 ], + [ 7.7756962, 47.3554654 ], + [ 7.7761858, 47.3557447 ], + [ 7.7767387, 47.3559521 ], + [ 7.7770315, 47.3560352 ], + [ 7.7774354, 47.3561538 ], + [ 7.7777841, 47.3563377 ], + [ 7.7783225, 47.3565873 ], + [ 7.7788514, 47.3568687 ], + [ 7.7789702, 47.3567817 ], + [ 7.7795371, 47.3570845 ], + [ 7.7801973, 47.3572787 ], + [ 7.7806519, 47.3574312 ], + [ 7.7811153, 47.3575317 ], + [ 7.7814449, 47.3576303 ], + [ 7.7817174, 47.3577962 ], + [ 7.7821257, 47.3579022 ], + [ 7.7827638, 47.3573013 ], + [ 7.7833868, 47.3575039 ], + [ 7.7840431, 47.3576947 ], + [ 7.7847693, 47.3578759 ], + [ 7.7853945, 47.3580076 ], + [ 7.7860342, 47.3582074 ], + [ 7.7866024, 47.358385 ], + [ 7.7872901, 47.3586403 ], + [ 7.78796, 47.3588464 ], + [ 7.7885862, 47.3590499 ], + [ 7.7893118999999995, 47.3592701 ], + [ 7.7899831, 47.3594596 ], + [ 7.7907339, 47.3596131 ], + [ 7.7917662, 47.359891 ], + [ 7.7920576, 47.3599287 ], + [ 7.792643, 47.3600537 ], + [ 7.7931047, 47.3600387 ], + [ 7.793734, 47.3602945 ], + [ 7.7941037, 47.3603563 ], + [ 7.7945333, 47.3604275 ], + [ 7.7954182, 47.3605829 ], + [ 7.7962891, 47.3607234 ], + [ 7.7971231, 47.3608456 ], + [ 7.7982132, 47.3610026 ], + [ 7.7990901, 47.3611732 ], + [ 7.7992777, 47.3612276 ], + [ 7.799804, 47.3614088 ], + [ 7.800206, 47.3616799 ], + [ 7.8002186, 47.3616847 ], + [ 7.8002632, 47.3616122 ], + [ 7.8004976, 47.3612311 ], + [ 7.8003678, 47.360658 ], + [ 7.8001705999999995, 47.3605162 ], + [ 7.799924, 47.3603415 ], + [ 7.7990564, 47.3598207 ], + [ 7.7988973999999995, 47.3592364 ], + [ 7.7972596, 47.3589776 ], + [ 7.7965157, 47.3588623 ], + [ 7.795418, 47.3587485 ], + [ 7.7948885, 47.358688 ], + [ 7.7940721, 47.3585934 ], + [ 7.7934496, 47.3585187 ], + [ 7.7926834, 47.3582926 ], + [ 7.7920509, 47.3581026 ], + [ 7.7916179, 47.3579332 ], + [ 7.7910876, 47.3577234 ], + [ 7.7903872, 47.3574031 ], + [ 7.7896385, 47.356968 ], + [ 7.7893222, 47.3568086 ], + [ 7.7889636, 47.356588 ], + [ 7.7886248, 47.3563867 ], + [ 7.7884181, 47.3562707 ], + [ 7.7876617, 47.3558453 ], + [ 7.7875108, 47.3558428 ], + [ 7.7872571, 47.355802 ], + [ 7.7865193, 47.3556247 ], + [ 7.7860706, 47.3554836 ], + [ 7.7858464, 47.3554346 ], + [ 7.7854281, 47.3553755 ], + [ 7.7852008, 47.3553546 ], + [ 7.784957, 47.3553 ], + [ 7.784561, 47.3552145 ], + [ 7.7841550999999995, 47.3551323 ], + [ 7.7838538, 47.3550487 ], + [ 7.7835904, 47.3549999 ], + [ 7.7835097, 47.3549878 ], + [ 7.7830451, 47.3549199 ], + [ 7.782743, 47.3548577 ], + [ 7.7822769, 47.3547084 ], + [ 7.7816764, 47.3545632 ], + [ 7.7811711, 47.3544704 ], + [ 7.7809652, 47.3544259 ], + [ 7.7807179, 47.3543558 ], + [ 7.7803138, 47.3542909 ], + [ 7.7796671, 47.3541104 ], + [ 7.7787821, 47.353955 ], + [ 7.778289, 47.3538587 ], + [ 7.778001, 47.3537954 ], + [ 7.7774876, 47.3536902 ], + [ 7.7769128, 47.3535978 ], + [ 7.7764992, 47.3534647 ], + [ 7.7757208, 47.3533008 ], + [ 7.7755178, 47.353252499999996 ], + [ 7.7750627, 47.3531629 ], + [ 7.7746395, 47.3531106 ], + [ 7.7738706, 47.3529962 ], + [ 7.7733337, 47.3529166 ], + [ 7.7728783, 47.352821 ], + [ 7.7724548, 47.3527027 ], + [ 7.7723444, 47.3526521 ], + [ 7.7723218, 47.3526689 ], + [ 7.7722532, 47.3527199 ], + [ 7.7721908, 47.3527158 ], + [ 7.7720836, 47.3527944 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns054", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Dürstelberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Dürstelberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Dürstelberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Dürstelberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5013632999999995, 47.3898957 ], + [ 7.5017748, 47.3898264 ], + [ 7.5020336, 47.3897487 ], + [ 7.5022401, 47.3897515 ], + [ 7.5024313, 47.3895911 ], + [ 7.502622, 47.3895868 ], + [ 7.5027175, 47.389518699999996 ], + [ 7.5026955, 47.3894943 ], + [ 7.5026917, 47.3894901 ], + [ 7.5026455, 47.3894386 ], + [ 7.5025145, 47.3893993 ], + [ 7.502127, 47.3894465 ], + [ 7.5019121, 47.3894303 ], + [ 7.5018903, 47.389539 ], + [ 7.5015815, 47.3895489 ], + [ 7.5011307, 47.3895377 ], + [ 7.50112, 47.3895854 ], + [ 7.5012975, 47.3897153 ], + [ 7.5012831, 47.389807 ], + [ 7.5011351, 47.3898921 ], + [ 7.5013632999999995, 47.3898957 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns274", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Stürmen - Eggfels - Bännli", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Stürmen - Eggfels - Bännli", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Stürmen - Eggfels - Bännli", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Stürmen - Eggfels - Bännli", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.5745928, 46.5462781 ], + [ 6.5745897, 46.5461368 ], + [ 6.5745758, 46.5459958 ], + [ 6.5745514, 46.5458556 ], + [ 6.5745163, 46.5457164 ], + [ 6.5744707, 46.5455786 ], + [ 6.5744147, 46.5454427 ], + [ 6.5743484, 46.545309 ], + [ 6.5742722, 46.5451779 ], + [ 6.5741861, 46.5450497 ], + [ 6.5740904, 46.5449248 ], + [ 6.5739853, 46.5448035 ], + [ 6.5738712, 46.5446862 ], + [ 6.5737483, 46.5445732 ], + [ 6.5736171, 46.5444648 ], + [ 6.5734778, 46.5443612 ], + [ 6.5733308, 46.5442628 ], + [ 6.5731766, 46.5441699 ], + [ 6.5730155, 46.5440826 ], + [ 6.5728481, 46.5440013 ], + [ 6.5726747, 46.5439262 ], + [ 6.5724958, 46.5438574 ], + [ 6.572312, 46.5437952 ], + [ 6.5721237, 46.5437397 ], + [ 6.5719314, 46.543691 ], + [ 6.5717357, 46.5436494 ], + [ 6.5715372, 46.5436149 ], + [ 6.5713363000000005, 46.5435876 ], + [ 6.5711336, 46.5435676 ], + [ 6.5709295999999995, 46.543555 ], + [ 6.5707249999999995, 46.5435497 ], + [ 6.5705202, 46.5435519 ], + [ 6.5703159, 46.5435614 ], + [ 6.5701127, 46.5435783 ], + [ 6.5699109, 46.5436025 ], + [ 6.5697113, 46.5436339 ], + [ 6.5695143, 46.5436725 ], + [ 6.5693206, 46.5437182 ], + [ 6.5691305, 46.5437708 ], + [ 6.5689447, 46.5438303 ], + [ 6.5687637, 46.5438963 ], + [ 6.5685879, 46.5439688 ], + [ 6.5684179, 46.5440475 ], + [ 6.5682541, 46.5441322 ], + [ 6.5680969000000005, 46.5442228 ], + [ 6.5679468, 46.5443189 ], + [ 6.5678042, 46.5444203 ], + [ 6.5676695, 46.5445267 ], + [ 6.5675431, 46.5446378 ], + [ 6.5674252, 46.5447534 ], + [ 6.5673163, 46.544873 ], + [ 6.5672166, 46.5449964 ], + [ 6.5671264, 46.5451233 ], + [ 6.5670459, 46.5452532 ], + [ 6.5669754000000005, 46.5453858 ], + [ 6.5669151, 46.5455209 ], + [ 6.5668651, 46.5456579 ], + [ 6.5668255, 46.5457965 ], + [ 6.5667965, 46.5459363 ], + [ 6.5667782, 46.5460771 ], + [ 6.5667705, 46.5462183 ], + [ 6.5667736, 46.5463595 ], + [ 6.5667874, 46.5465005 ], + [ 6.5668119, 46.5466408 ], + [ 6.566847, 46.54678 ], + [ 6.5668925, 46.5469177 ], + [ 6.5669485, 46.5470536 ], + [ 6.5670147, 46.5471873 ], + [ 6.567091, 46.5473184 ], + [ 6.5671771, 46.5474466 ], + [ 6.5672728, 46.5475715 ], + [ 6.5673778, 46.5476928 ], + [ 6.5674919, 46.5478101 ], + [ 6.5676148, 46.5479232 ], + [ 6.567746, 46.5480316 ], + [ 6.5678853, 46.5481352 ], + [ 6.5680323, 46.5482336 ], + [ 6.5681864999999995, 46.5483265 ], + [ 6.5683476, 46.5484138 ], + [ 6.5685151, 46.5484951 ], + [ 6.5686885, 46.5485702 ], + [ 6.5688673, 46.548639 ], + [ 6.5690512, 46.5487013 ], + [ 6.5692395, 46.5487568 ], + [ 6.5694318, 46.5488054 ], + [ 6.5696275, 46.5488471 ], + [ 6.569826, 46.5488816 ], + [ 6.570027, 46.5489088 ], + [ 6.5702297, 46.5489288 ], + [ 6.5704337, 46.5489415 ], + [ 6.5706383, 46.5489467 ], + [ 6.5708431, 46.5489446 ], + [ 6.5710474, 46.5489351 ], + [ 6.5712507, 46.5489182 ], + [ 6.5714524999999995, 46.548894 ], + [ 6.5716521, 46.5488625 ], + [ 6.5718491, 46.5488239 ], + [ 6.5720429, 46.5487782 ], + [ 6.5722328999999995, 46.5487256 ], + [ 6.5724187, 46.5486662 ], + [ 6.5725997, 46.5486002 ], + [ 6.5727755, 46.5485277 ], + [ 6.5729456, 46.5484489 ], + [ 6.5731094, 46.5483642 ], + [ 6.5732666, 46.5482736 ], + [ 6.5734167, 46.5481775 ], + [ 6.5735592, 46.5480761 ], + [ 6.573694, 46.5479697 ], + [ 6.5738204, 46.5478585 ], + [ 6.5739383, 46.547743 ], + [ 6.5740472, 46.5476233 ], + [ 6.5741469, 46.5474999 ], + [ 6.5742370999999995, 46.5473731 ], + [ 6.5743175, 46.5472432 ], + [ 6.574388, 46.5471105 ], + [ 6.5744483, 46.5469755 ], + [ 6.5744983, 46.5468385 ], + [ 6.5745379, 46.5466998 ], + [ 6.5745667999999995, 46.54656 ], + [ 6.5745851, 46.5464193 ], + [ 6.5745928, 46.5462781 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0007", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Banlieue Ouest", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Banlieue Ouest", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Banlieue Ouest", + "lang" : "it-CH" + }, + { + "text" : "Substation Banlieue Ouest", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8627677, 47.5004791 ], + [ 7.8624826, 47.5005516 ], + [ 7.862677, 47.500795 ], + [ 7.8627551, 47.5008841 ], + [ 7.8630515, 47.5007989 ], + [ 7.8629798, 47.5007241 ], + [ 7.8629548, 47.5006992 ], + [ 7.8629304, 47.5006741 ], + [ 7.8629066, 47.5006487 ], + [ 7.8628834, 47.5006231 ], + [ 7.8628608, 47.5005972 ], + [ 7.8628389, 47.5005711 ], + [ 7.8628176, 47.5005447 ], + [ 7.8627969, 47.5005181 ], + [ 7.8627894, 47.5005084 ], + [ 7.8627821, 47.5004987 ], + [ 7.8627748, 47.5004889 ], + [ 7.8627677, 47.5004791 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns267", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Uf Eck", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Uf Eck", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Uf Eck", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Uf Eck", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.1515319, 46.1989676 ], + [ 8.1515406, 46.1988677 ], + [ 8.1517821, 46.1986305 ], + [ 8.1520161, 46.1979164 ], + [ 8.1522346, 46.1974943 ], + [ 8.1521306, 46.1971289 ], + [ 8.1515767, 46.196571 ], + [ 8.151343, 46.1961254 ], + [ 8.152281200000001, 46.1957515 ], + [ 8.1526204, 46.1946926 ], + [ 8.1525273, 46.1946257 ], + [ 8.1523784, 46.1945294 ], + [ 8.1522225, 46.1944386 ], + [ 8.15206, 46.1943536 ], + [ 8.1518913, 46.1942746 ], + [ 8.1517169, 46.1942019 ], + [ 8.1515372, 46.1941356 ], + [ 8.1513528, 46.1940759 ], + [ 8.1511641, 46.1940231 ], + [ 8.1509717, 46.1939771 ], + [ 8.1507761, 46.1939382 ], + [ 8.1505779, 46.1939065 ], + [ 8.1503775, 46.193882 ], + [ 8.1501756, 46.1938648 ], + [ 8.1499726, 46.193855 ], + [ 8.1497692, 46.1938526 ], + [ 8.1495659, 46.1938576 ], + [ 8.1493632, 46.1938699 ], + [ 8.1491617, 46.1938896 ], + [ 8.148962, 46.1939166 ], + [ 8.1487646, 46.1939509 ], + [ 8.1485701, 46.1939922 ], + [ 8.148379, 46.1940406 ], + [ 8.1481917, 46.1940958 ], + [ 8.1480089, 46.1941578 ], + [ 8.147831, 46.1942263 ], + [ 8.1476585, 46.1943012 ], + [ 8.1474918, 46.1943823 ], + [ 8.1473316, 46.1944693 ], + [ 8.147178, 46.1945621 ], + [ 8.1470317, 46.1946602 ], + [ 8.146893, 46.1947636 ], + [ 8.1467623, 46.1948719 ], + [ 8.1466399, 46.1949847 ], + [ 8.1465262, 46.1951019 ], + [ 8.1464214, 46.195223 ], + [ 8.146326, 46.1953478 ], + [ 8.14624, 46.1954758 ], + [ 8.1461639, 46.1956069 ], + [ 8.1460977, 46.1957404 ], + [ 8.1460417, 46.1958763 ], + [ 8.145996, 46.1960139 ], + [ 8.1459607, 46.1961531 ], + [ 8.145936, 46.1962933 ], + [ 8.1459218, 46.1964343 ], + [ 8.1459183, 46.1965755 ], + [ 8.1459255, 46.1967167 ], + [ 8.1459433, 46.1968575 ], + [ 8.1459716, 46.1969974 ], + [ 8.1460105, 46.1971361 ], + [ 8.1460598, 46.1972732 ], + [ 8.1461193, 46.1974083 ], + [ 8.146189, 46.197541 ], + [ 8.1462685, 46.197671 ], + [ 8.1463578, 46.197798 ], + [ 8.1464565, 46.1979216 ], + [ 8.1465644, 46.1980414 ], + [ 8.1466811, 46.1981571 ], + [ 8.1468064, 46.1982684 ], + [ 8.14694, 46.198375 ], + [ 8.1470813, 46.1984766 ], + [ 8.1472302, 46.1985729 ], + [ 8.1473861, 46.1986637 ], + [ 8.1475486, 46.1987487 ], + [ 8.1477173, 46.1988277 ], + [ 8.1478918, 46.1989004 ], + [ 8.1480715, 46.1989667 ], + [ 8.1482559, 46.1990264 ], + [ 8.1484446, 46.1990792 ], + [ 8.148637, 46.1991252 ], + [ 8.1488326, 46.1991641 ], + [ 8.1490308, 46.1991958 ], + [ 8.1492312, 46.1992203 ], + [ 8.1494332, 46.1992375 ], + [ 8.1496362, 46.1992473 ], + [ 8.1498396, 46.1992497 ], + [ 8.1500429, 46.1992447 ], + [ 8.1502456, 46.1992324 ], + [ 8.1504471, 46.1992127 ], + [ 8.1506468, 46.1991857 ], + [ 8.1508442, 46.1991514 ], + [ 8.1510388, 46.1991101 ], + [ 8.15123, 46.1990617 ], + [ 8.1514172, 46.1990065 ], + [ 8.1515319, 46.1989676 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0045", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Gondo", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Gondo", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Gondo", + "lang" : "it-CH" + }, + { + "text" : "Substation Gondo", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4937237, 47.436506 ], + [ 7.493742, 47.4365673 ], + [ 7.4943147, 47.436479 ], + [ 7.4947175, 47.4364336 ], + [ 7.4951127, 47.4364104 ], + [ 7.4954092, 47.4363437 ], + [ 7.4956813, 47.4362352 ], + [ 7.4959123, 47.4361347 ], + [ 7.4961888, 47.4361055 ], + [ 7.4964218, 47.4359842 ], + [ 7.4964044, 47.4359584 ], + [ 7.4963248, 47.4359936 ], + [ 7.4962011, 47.4360723 ], + [ 7.4956579, 47.4361356 ], + [ 7.4955787, 47.4362489 ], + [ 7.4955111, 47.4362588 ], + [ 7.4953385, 47.4362937 ], + [ 7.4950047, 47.436340799999996 ], + [ 7.4947891, 47.4363644 ], + [ 7.4944549, 47.4364132 ], + [ 7.4937237, 47.436506 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns301", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Dittinger Weide und Dittinger Wald", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Dittinger Weide und Dittinger Wald", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Dittinger Weide und Dittinger Wald", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Dittinger Weide und Dittinger Wald", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8257403, 47.4185349 ], + [ 7.8260206, 47.4191595 ], + [ 7.8261186, 47.4192994 ], + [ 7.8262019, 47.419347 ], + [ 7.8265005, 47.4194417 ], + [ 7.8265263, 47.4195356 ], + [ 7.8263431, 47.4197596 ], + [ 7.8262906, 47.4197636 ], + [ 7.8261764, 47.4196286 ], + [ 7.825962, 47.4195697 ], + [ 7.8255617, 47.4195687 ], + [ 7.8258276, 47.4197669 ], + [ 7.8256361, 47.4199229 ], + [ 7.82551, 47.4200382 ], + [ 7.8253413, 47.4201134 ], + [ 7.8251724, 47.4201772 ], + [ 7.8248934, 47.4202126 ], + [ 7.8246903, 47.4202248 ], + [ 7.8246073, 47.4208553 ], + [ 7.824466, 47.4209667 ], + [ 7.8241895, 47.4212014 ], + [ 7.8240845, 47.4215464 ], + [ 7.8240852, 47.4218597 ], + [ 7.8242221, 47.422114 ], + [ 7.8244869, 47.4222663 ], + [ 7.8247718, 47.422347 ], + [ 7.8250553, 47.4223858 ], + [ 7.8253413, 47.4224104 ], + [ 7.8262425, 47.4229614 ], + [ 7.8271701, 47.423084 ], + [ 7.8277295, 47.4232497 ], + [ 7.8274359, 47.4229794 ], + [ 7.8273475, 47.4228257 ], + [ 7.8272312, 47.4225283 ], + [ 7.8272022, 47.4224018 ], + [ 7.8272004, 47.4222705 ], + [ 7.8272374, 47.4221407 ], + [ 7.8273414, 47.4219615 ], + [ 7.8275315, 47.4216873 ], + [ 7.8275949, 47.4214936 ], + [ 7.8275782, 47.421293 ], + [ 7.8275207, 47.4209946 ], + [ 7.8275285, 47.4208623 ], + [ 7.8275576000000004, 47.4207285 ], + [ 7.8275825999999995, 47.4204889 ], + [ 7.8276187, 47.4200317 ], + [ 7.8276412, 47.4194853 ], + [ 7.8276528, 47.4191455 ], + [ 7.8275616, 47.4191066 ], + [ 7.8273711, 47.419067 ], + [ 7.827303, 47.4189203 ], + [ 7.8272705, 47.4186773 ], + [ 7.8273082, 47.4184 ], + [ 7.8257403, 47.4185349 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns115", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Chilpen-Schmetterlingskorridor", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Chilpen-Schmetterlingskorridor", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Chilpen-Schmetterlingskorridor", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Chilpen-Schmetterlingskorridor", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7044472, 47.4229285 ], + [ 7.70464, 47.4227931 ], + [ 7.7047162, 47.4226073 ], + [ 7.7048067, 47.4224596 ], + [ 7.7048553, 47.4223643 ], + [ 7.7047979, 47.4222624 ], + [ 7.7046019, 47.4222987 ], + [ 7.7044559, 47.4220472 ], + [ 7.7041833, 47.4221895 ], + [ 7.7039033, 47.4223192 ], + [ 7.7036845, 47.4224352 ], + [ 7.7034681, 47.4225432 ], + [ 7.7032606999999995, 47.4226463 ], + [ 7.7030704, 47.4227209 ], + [ 7.7033109, 47.4228347 ], + [ 7.70349, 47.4229171 ], + [ 7.7034711, 47.4232109 ], + [ 7.7038701, 47.4230956 ], + [ 7.7044472, 47.4229285 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns354", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Dielenberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Dielenberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Dielenberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Dielenberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.6415648, 47.1704252 ], + [ 8.6415562, 47.170284 ], + [ 8.6415368, 47.1701434 ], + [ 8.6415066, 47.1700036 ], + [ 8.6414657, 47.1698651 ], + [ 8.6414143, 47.1697283 ], + [ 8.6413524, 47.1695934 ], + [ 8.6412803, 47.169461 ], + [ 8.6411981, 47.1693313 ], + [ 8.6411061, 47.1692048 ], + [ 8.6410044, 47.1690817 ], + [ 8.6408935, 47.1689624 ], + [ 8.6407736, 47.1688472 ], + [ 8.6406449, 47.1687364 ], + [ 8.640508, 47.1686304 ], + [ 8.6403631, 47.1685294 ], + [ 8.6402107, 47.1684338 ], + [ 8.6400511, 47.1683437 ], + [ 8.6398849, 47.1682594 ], + [ 8.6397124, 47.1681812 ], + [ 8.6395341, 47.1681092 ], + [ 8.6393506, 47.1680437 ], + [ 8.6391623, 47.1679849 ], + [ 8.6389697, 47.1679328 ], + [ 8.6387734, 47.1678877 ], + [ 8.6385739, 47.1678496 ], + [ 8.6383717, 47.1678188 ], + [ 8.6381675, 47.1677951 ], + [ 8.6379617, 47.1677789 ], + [ 8.637755, 47.1677699 ], + [ 8.6375479, 47.1677684 ], + [ 8.6373409, 47.1677742 ], + [ 8.6371346, 47.1677875 ], + [ 8.6369297, 47.167808 ], + [ 8.6367266, 47.1678359 ], + [ 8.6365259, 47.167871 ], + [ 8.6363282, 47.1679132 ], + [ 8.636134, 47.1679624 ], + [ 8.635943900000001, 47.1680184 ], + [ 8.635758299999999, 47.1680812 ], + [ 8.6355778, 47.1681505 ], + [ 8.6354028, 47.1682261 ], + [ 8.6352339, 47.1683079 ], + [ 8.6350715, 47.1683956 ], + [ 8.6349161, 47.168489 ], + [ 8.634768, 47.1685878 ], + [ 8.6346277, 47.1686917 ], + [ 8.6344956, 47.1688005 ], + [ 8.634371999999999, 47.1689139 ], + [ 8.6342573, 47.1690315 ], + [ 8.6341517, 47.1691531 ], + [ 8.6340557, 47.1692783 ], + [ 8.6339693, 47.1694067 ], + [ 8.633893, 47.169538 ], + [ 8.6338268, 47.1696719 ], + [ 8.633771, 47.1698079 ], + [ 8.6337257, 47.1699458 ], + [ 8.6336911, 47.1700851 ], + [ 8.6336672, 47.1702254 ], + [ 8.633654, 47.1703664 ], + [ 8.633651799999999, 47.1705077 ], + [ 8.6336603, 47.1706488 ], + [ 8.6336797, 47.1707895 ], + [ 8.6337099, 47.1709292 ], + [ 8.6337508, 47.1710677 ], + [ 8.6338022, 47.1712046 ], + [ 8.633863999999999, 47.1713394 ], + [ 8.6339362, 47.1714718 ], + [ 8.6340183, 47.1716015 ], + [ 8.6341104, 47.1717281 ], + [ 8.634212, 47.1718512 ], + [ 8.6343229, 47.1719705 ], + [ 8.6344428, 47.1720857 ], + [ 8.6345714, 47.1721965 ], + [ 8.6347084, 47.1723025 ], + [ 8.6348532, 47.1724035 ], + [ 8.6350057, 47.1724991 ], + [ 8.6351652, 47.1725892 ], + [ 8.6353315, 47.1726735 ], + [ 8.635504, 47.1727517 ], + [ 8.6356823, 47.1728237 ], + [ 8.6358658, 47.1728892 ], + [ 8.6360542, 47.1729481 ], + [ 8.6362468, 47.1730002 ], + [ 8.6364431, 47.1730453 ], + [ 8.6366426, 47.1730833 ], + [ 8.6368448, 47.1731142 ], + [ 8.637049, 47.1731378 ], + [ 8.637254800000001, 47.1731541 ], + [ 8.6374616, 47.173163 ], + [ 8.6376687, 47.1731646 ], + [ 8.6378757, 47.1731587 ], + [ 8.638082, 47.1731455 ], + [ 8.6382869, 47.1731249 ], + [ 8.6384901, 47.173097 ], + [ 8.6386907, 47.173062 ], + [ 8.6388885, 47.1730198 ], + [ 8.6390827, 47.1729706 ], + [ 8.6392728, 47.1729145 ], + [ 8.6394584, 47.1728518 ], + [ 8.639639, 47.1727825 ], + [ 8.6398139, 47.1727068 ], + [ 8.6399828, 47.172625 ], + [ 8.6401453, 47.1725373 ], + [ 8.6403007, 47.1724439 ], + [ 8.6404488, 47.1723451 ], + [ 8.6405891, 47.1722412 ], + [ 8.6407212, 47.1721324 ], + [ 8.6408448, 47.172019 ], + [ 8.6409595, 47.1719013 ], + [ 8.641065, 47.1717798 ], + [ 8.6411611, 47.1716546 ], + [ 8.6412474, 47.1715262 ], + [ 8.6413237, 47.1713948 ], + [ 8.6413899, 47.171261 ], + [ 8.6414457, 47.1711249 ], + [ 8.6414909, 47.170987 ], + [ 8.6415256, 47.1708478 ], + [ 8.6415495, 47.1707074 ], + [ 8.6415625, 47.1705664 ], + [ 8.6415648, 47.1704252 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BOS0001", + "country" : "CHE", + "name" : [ + { + "text" : "JVA Bostadel", + "lang" : "de-CH" + }, + { + "text" : "JVA Bostadel", + "lang" : "fr-CH" + }, + { + "text" : "JVA Bostadel", + "lang" : "it-CH" + }, + { + "text" : "JVA Bostadel", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "JVA Bostadel", + "lang" : "de-CH" + }, + { + "text" : "JVA Bostadel", + "lang" : "fr-CH" + }, + { + "text" : "JVA Bostadel", + "lang" : "it-CH" + }, + { + "text" : "JVA Bostadel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "DirektionJVA Bostadel", + "lang" : "de-CH" + }, + { + "text" : "DirektionJVA Bostadel", + "lang" : "fr-CH" + }, + { + "text" : "DirektionJVA Bostadel", + "lang" : "it-CH" + }, + { + "text" : "DirektionJVA Bostadel", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Administration", + "lang" : "de-CH" + }, + { + "text" : "Administration", + "lang" : "fr-CH" + }, + { + "text" : "Administration", + "lang" : "it-CH" + }, + { + "text" : "Administration", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.zg.ch/behoerden/weitere-organisationen/justizvollzugsanstalt-bostadel/strafanstalt-bostadel", + "email" : "administration@bostadel.ch", + "phone" : "0041417571919", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6957229, 47.5006967 ], + [ 7.6957674, 47.500828 ], + [ 7.6956912, 47.5008492 ], + [ 7.6956947, 47.5008612 ], + [ 7.6957062, 47.5009008 ], + [ 7.6957595, 47.5009262 ], + [ 7.695768, 47.5009358 ], + [ 7.6958443, 47.5010226 ], + [ 7.6959384, 47.5010563 ], + [ 7.6961811, 47.5011711 ], + [ 7.6962542, 47.5011489 ], + [ 7.6962756, 47.5011424 ], + [ 7.696571, 47.5010282 ], + [ 7.696575, 47.5010265 ], + [ 7.6965654, 47.5009845 ], + [ 7.6963489, 47.5008195 ], + [ 7.6962201, 47.5007527 ], + [ 7.6960531, 47.5006564 ], + [ 7.6958509, 47.5005274 ], + [ 7.6957237, 47.5005544 ], + [ 7.6957343, 47.5006298 ], + [ 7.6957229, 47.5006967 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr105", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Asp", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Asp", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Asp", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Asp", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.3573666, 47.0112793 ], + [ 8.379624, 47.0185848 ], + [ 8.3827141, 47.0195324 ], + [ 8.3858716, 47.0203699 ], + [ 8.389088, 47.021095 ], + [ 8.3923548, 47.0217059 ], + [ 8.3956633, 47.0222008 ], + [ 8.3990047, 47.0225785 ], + [ 8.4023702, 47.022838 ], + [ 8.4057508, 47.0229786 ], + [ 8.4091374, 47.0229998 ], + [ 8.4125212, 47.0229017 ], + [ 8.4158931, 47.0226846 ], + [ 8.4192441, 47.0223489 ], + [ 8.4225654, 47.0218956 ], + [ 8.425848, 47.0213258 ], + [ 8.4290834, 47.0206412 ], + [ 8.4322628, 47.0198435 ], + [ 8.4353778, 47.0189349 ], + [ 8.4384203, 47.0179177 ], + [ 8.441382, 47.0167946 ], + [ 8.4442551, 47.0155687 ], + [ 8.447032, 47.0142432 ], + [ 8.4497052, 47.0128216 ], + [ 8.4522679, 47.0113077 ], + [ 8.454713, 47.0097056 ], + [ 8.4570342, 47.0080194 ], + [ 8.4592252, 47.0062537 ], + [ 8.4612803, 47.0044131 ], + [ 8.463194, 47.0025026 ], + [ 8.4649613, 47.0005272 ], + [ 8.4665775, 46.9984921 ], + [ 8.4680383, 46.9964028 ], + [ 8.4693399, 46.9942648 ], + [ 8.4704787, 46.9920838 ], + [ 8.4714519, 46.9898655 ], + [ 8.4722568, 46.9876159 ], + [ 8.4728914, 46.9853409 ], + [ 8.4733539, 46.9830466 ], + [ 8.4736432, 46.980739 ], + [ 8.4737585, 46.9784243 ], + [ 8.4736996, 46.9761086 ], + [ 8.4734666, 46.973798 ], + [ 8.4730602, 46.9714987 ], + [ 8.4724814, 46.9692168 ], + [ 8.4717318, 46.9669583 ], + [ 8.4708135, 46.9647292 ], + [ 8.4697288, 46.9625354 ], + [ 8.4684807, 46.9603827 ], + [ 8.4670725, 46.9582769 ], + [ 8.4655079, 46.9562234 ], + [ 8.4637912, 46.9542278 ], + [ 8.4619269, 46.9522953 ], + [ 8.4599198, 46.9504311 ], + [ 8.4577754, 46.9486401 ], + [ 8.4554994, 46.9469269 ], + [ 8.4530978, 46.9452963 ], + [ 8.4505768, 46.9437524 ], + [ 8.4479434, 46.9422994 ], + [ 8.4452043, 46.940941 ], + [ 8.442367, 46.939681 ], + [ 8.4394388, 46.9385226 ], + [ 8.4364275, 46.937469 ], + [ 8.414196, 46.9301744 ], + [ 8.4110585, 46.9292128 ], + [ 8.4078518, 46.9283649 ], + [ 8.4045849, 46.927633 ], + [ 8.4012667, 46.9270191 ], + [ 8.3979061, 46.926525 ], + [ 8.3945125, 46.9261519 ], + [ 8.391095, 46.9259009 ], + [ 8.3876631, 46.9257727 ], + [ 8.3842261, 46.9257676 ], + [ 8.3807934, 46.9258857 ], + [ 8.3773744, 46.9261266 ], + [ 8.3739784, 46.9264896 ], + [ 8.3706148, 46.9269738 ], + [ 8.3672927, 46.9275778 ], + [ 8.3640212, 46.9283 ], + [ 8.3608093, 46.9291384 ], + [ 8.3576657, 46.9300908 ], + [ 8.3545991, 46.9311545 ], + [ 8.3516178, 46.9323265 ], + [ 8.34873, 46.9336038 ], + [ 8.3459436, 46.9349828 ], + [ 8.3432662, 46.9364597 ], + [ 8.3407053, 46.938030499999996 ], + [ 8.3382676, 46.9396909 ], + [ 8.3359601, 46.9414364 ], + [ 8.3337889, 46.9432622 ], + [ 8.3317601, 46.9451632 ], + [ 8.3298793, 46.9471343 ], + [ 8.3281515, 46.9491701 ], + [ 8.3265815, 46.951265 ], + [ 8.3251736, 46.9534133 ], + [ 8.3239318, 46.955609 ], + [ 8.3228594, 46.9578463 ], + [ 8.3219595, 46.9601189 ], + [ 8.3212344, 46.9624206 ], + [ 8.3206862, 46.9647452 ], + [ 8.3203164, 46.9670862 ], + [ 8.3201261, 46.9694372 ], + [ 8.3201158, 46.9717919 ], + [ 8.3202855, 46.9741437 ], + [ 8.3206349, 46.9764861 ], + [ 8.3211629, 46.9788129 ], + [ 8.3218682, 46.9811175 ], + [ 8.3227488, 46.9833938 ], + [ 8.3238024, 46.9856353 ], + [ 8.325026, 46.987836 ], + [ 8.3264164, 46.9899899 ], + [ 8.3279698, 46.992091 ], + [ 8.3296818, 46.9941336 ], + [ 8.3315479, 46.996112 ], + [ 8.3335629, 46.9980209 ], + [ 8.3357213, 46.9998549 ], + [ 8.3380172, 47.0016092 ], + [ 8.3404443, 47.0032787 ], + [ 8.3429959, 47.004859 ], + [ 8.3456651, 47.0063458 ], + [ 8.3484446, 47.0077349 ], + [ 8.3513266, 47.0090225 ], + [ 8.3543033, 47.010205 ], + [ 8.3573666, 47.0112793 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZC001", + "country" : "CHE", + "name" : [ + { + "text" : "LSZC Buochs", + "lang" : "de-CH" + }, + { + "text" : "LSZC Buochs", + "lang" : "fr-CH" + }, + { + "text" : "LSZC Buochs", + "lang" : "it-CH" + }, + { + "text" : "LSZC Buochs", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Airport Buochs AG / Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Airport Buochs AG / Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Airport Buochs AG / Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Airport Buochs AG / Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Skyguide Special Office", + "lang" : "de-CH" + }, + { + "text" : "Skyguide Special Office", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide Special Office", + "lang" : "it-CH" + }, + { + "text" : "Skyguide Special Office", + "lang" : "en-GB" + } + ], + "siteURL" : "https://skyguide.ch/services/special-flights", + "email" : "info@airportbuochs.ch", + "phone" : "0041416220611", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.2455048, 47.1364662 ], + [ 7.2454999, 47.1363249 ], + [ 7.2454842, 47.1361841 ], + [ 7.2454577, 47.136044 ], + [ 7.2454205, 47.135905 ], + [ 7.2453726, 47.1357675 ], + [ 7.2453143, 47.135632 ], + [ 7.2452457, 47.1354987 ], + [ 7.2451669, 47.135368 ], + [ 7.2450783, 47.1352404 ], + [ 7.2449799, 47.135116 ], + [ 7.2448722, 47.1349954 ], + [ 7.2447553, 47.1348788 ], + [ 7.2446297, 47.1347665 ], + [ 7.2444957, 47.1346588 ], + [ 7.2443535, 47.1345561 ], + [ 7.2442037, 47.1344586 ], + [ 7.2440466, 47.1343666 ], + [ 7.2438827, 47.1342803 ], + [ 7.2437124, 47.1342 ], + [ 7.2435361, 47.1341259 ], + [ 7.2433544, 47.1340581 ], + [ 7.2431678, 47.133997 ], + [ 7.2429767, 47.1339426 ], + [ 7.2427817, 47.1338951 ], + [ 7.2425834, 47.1338546 ], + [ 7.2423822, 47.1338213 ], + [ 7.2421788, 47.1337952 ], + [ 7.2419736, 47.1337764 ], + [ 7.2417672, 47.133765 ], + [ 7.2415603, 47.1337609 ], + [ 7.2413533, 47.1337643 ], + [ 7.2411469, 47.133775 ], + [ 7.2409416, 47.1337931 ], + [ 7.2407379, 47.1338185 ], + [ 7.2405365, 47.1338511 ], + [ 7.2403378, 47.1338909 ], + [ 7.2401425, 47.1339377 ], + [ 7.2399511, 47.1339914 ], + [ 7.239764, 47.1340519 ], + [ 7.2395818, 47.134119 ], + [ 7.239405, 47.1341925 ], + [ 7.2392341, 47.1342722 ], + [ 7.2390695, 47.1343579 ], + [ 7.2389117, 47.1344494 ], + [ 7.2387612, 47.1345464 ], + [ 7.2386183, 47.1346486 ], + [ 7.2384834, 47.1347558 ], + [ 7.238357, 47.1348677 ], + [ 7.2382393, 47.1349839 ], + [ 7.2381306, 47.1351041 ], + [ 7.2380314, 47.1352281 ], + [ 7.2379418, 47.1353555 ], + [ 7.237862, 47.1354858 ], + [ 7.2377924, 47.1356189 ], + [ 7.2377331, 47.1357542 ], + [ 7.2376843, 47.1358915 ], + [ 7.237646, 47.1360304 ], + [ 7.2376185, 47.1361704 ], + [ 7.2376017, 47.1363112 ], + [ 7.2375957, 47.1364524 ], + [ 7.2376006, 47.1365937 ], + [ 7.2376163, 47.1367345 ], + [ 7.2376428, 47.1368746 ], + [ 7.23768, 47.1370136 ], + [ 7.2377278, 47.1371511 ], + [ 7.2377861, 47.1372866 ], + [ 7.2378547, 47.1374199 ], + [ 7.2379335, 47.1375506 ], + [ 7.2380221, 47.1376783 ], + [ 7.2381204, 47.1378026 ], + [ 7.2382282, 47.1379232 ], + [ 7.238345, 47.1380399 ], + [ 7.2384706, 47.1381522 ], + [ 7.2386047, 47.1382598 ], + [ 7.2387468, 47.1383626 ], + [ 7.2388966, 47.1384601 ], + [ 7.2390537, 47.1385521 ], + [ 7.2392177, 47.1386384 ], + [ 7.239388, 47.1387187 ], + [ 7.2395642, 47.1387928 ], + [ 7.239746, 47.1388605 ], + [ 7.2399326, 47.1389217 ], + [ 7.2401237, 47.1389761 ], + [ 7.2403186999999996, 47.1390236 ], + [ 7.240517, 47.1390641 ], + [ 7.2407183, 47.1390974 ], + [ 7.2409217, 47.1391235 ], + [ 7.2411269, 47.1391423 ], + [ 7.2413333, 47.1391537 ], + [ 7.2415403, 47.1391578 ], + [ 7.2417473, 47.1391545 ], + [ 7.2419537, 47.1391437 ], + [ 7.2421591, 47.1391256 ], + [ 7.2423627, 47.1391003 ], + [ 7.2425642, 47.1390676 ], + [ 7.2427628, 47.1390278 ], + [ 7.2429582, 47.138981 ], + [ 7.2431497, 47.1389273 ], + [ 7.2433368, 47.1388668 ], + [ 7.243519, 47.1387997 ], + [ 7.2436958, 47.1387262 ], + [ 7.2438667, 47.1386465 ], + [ 7.2440313, 47.1385607 ], + [ 7.2441891, 47.1384693 ], + [ 7.2443396, 47.1383723 ], + [ 7.2444825, 47.13827 ], + [ 7.2446174, 47.1381628 ], + [ 7.2447438, 47.138051 ], + [ 7.2448615, 47.1379347 ], + [ 7.2449701, 47.1378145 ], + [ 7.2450694, 47.1376905 ], + [ 7.245159, 47.1375631 ], + [ 7.2452387, 47.1374328 ], + [ 7.2453083, 47.1372997 ], + [ 7.2453676, 47.1371643 ], + [ 7.2454164, 47.1370271 ], + [ 7.2454546, 47.1368882 ], + [ 7.2454822, 47.1367482 ], + [ 7.2454989, 47.1366074 ], + [ 7.2455048, 47.1364662 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BIE0001", + "country" : "CHE", + "name" : [ + { + "text" : "Regionalgefängnis Biel", + "lang" : "de-CH" + }, + { + "text" : "Regionalgefängnis Biel", + "lang" : "fr-CH" + }, + { + "text" : "Regionalgefängnis Biel", + "lang" : "it-CH" + }, + { + "text" : "Regionalgefängnis Biel", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Regionalgefängnis Biel", + "lang" : "de-CH" + }, + { + "text" : "Prison regional bienne", + "lang" : "fr-CH" + }, + { + "text" : "Prigione regionale di biel", + "lang" : "it-CH" + }, + { + "text" : "Prison biel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Geschäftsleitung Regionalgefängnis Biel", + "lang" : "de-CH" + }, + { + "text" : "Direction prison regional", + "lang" : "fr-CH" + }, + { + "text" : "Gestione del carcere regionale di Biel", + "lang" : "it-CH" + }, + { + "text" : "Management Regional Prison Biel", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Yan Seckler", + "lang" : "de-CH" + }, + { + "text" : "Yan Seckler", + "lang" : "fr-CH" + }, + { + "text" : "Yan Seckler", + "lang" : "it-CH" + }, + { + "text" : "Yan Seckler", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ajv.sid.be.ch/de/start/themen/haft/regionalgefaengnis-biel.html", + "email" : "regionalgefaengnis-biel@be.ch", + "phone" : "0041316357111", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8830418, 47.4577886 ], + [ 7.883024, 47.4575728 ], + [ 7.8829956, 47.4573502 ], + [ 7.8829595, 47.4571521 ], + [ 7.882967, 47.4569968 ], + [ 7.882988, 47.4569328 ], + [ 7.8830362, 47.4567862 ], + [ 7.8830438, 47.4566459 ], + [ 7.8830484, 47.4565613 ], + [ 7.8830293, 47.4564102 ], + [ 7.8830213, 47.4563476 ], + [ 7.8828996, 47.4561863 ], + [ 7.8827937, 47.4560459 ], + [ 7.8827175, 47.4558682 ], + [ 7.8824487, 47.4558734 ], + [ 7.8824087, 47.4555328 ], + [ 7.8824673, 47.4553752 ], + [ 7.8823051, 47.4553219 ], + [ 7.8822563, 47.4553335 ], + [ 7.8820341, 47.4553466 ], + [ 7.8820242, 47.455243 ], + [ 7.8819587, 47.4554473 ], + [ 7.8817872, 47.4554636 ], + [ 7.8817082, 47.455664 ], + [ 7.8815097, 47.4556819 ], + [ 7.8812761, 47.455651 ], + [ 7.8812947, 47.4558213 ], + [ 7.8813196, 47.4559129 ], + [ 7.8812784, 47.4559275 ], + [ 7.881224, 47.4559467 ], + [ 7.8811888, 47.4559592 ], + [ 7.8812109, 47.4559811 ], + [ 7.8813759, 47.456144 ], + [ 7.8815656, 47.4562684 ], + [ 7.8815796, 47.4562776 ], + [ 7.8817038, 47.4563784 ], + [ 7.8817293, 47.4564337 ], + [ 7.8817705, 47.4565229 ], + [ 7.8818102, 47.45669 ], + [ 7.8818163, 47.4567159 ], + [ 7.8817813999999995, 47.4568372 ], + [ 7.8817297, 47.4570167 ], + [ 7.88172, 47.4570506 ], + [ 7.8816835, 47.4570468 ], + [ 7.8816779, 47.457045 ], + [ 7.8814498, 47.4569757 ], + [ 7.881369, 47.4569508 ], + [ 7.8812987, 47.4568419 ], + [ 7.8811417, 47.4568392 ], + [ 7.8810493, 47.456825 ], + [ 7.8809384, 47.4568084 ], + [ 7.880865, 47.4568307 ], + [ 7.8808073, 47.4567971 ], + [ 7.8808085, 47.4567548 ], + [ 7.8807869, 47.4567175 ], + [ 7.8807483, 47.4566605 ], + [ 7.8807092999999995, 47.4566425 ], + [ 7.8806388, 47.4566339 ], + [ 7.8805716, 47.4566458 ], + [ 7.8805243, 47.4566908 ], + [ 7.8804721, 47.4567545 ], + [ 7.8804182, 47.456838 ], + [ 7.8804099, 47.456919 ], + [ 7.8804144, 47.4569851 ], + [ 7.8804205, 47.457057 ], + [ 7.8804237, 47.4571054 ], + [ 7.88042, 47.457166 ], + [ 7.8804122, 47.4572193 ], + [ 7.8804032, 47.4572571 ], + [ 7.8803873, 47.4572968 ], + [ 7.8803672, 47.4573319 ], + [ 7.8803484, 47.4573606 ], + [ 7.880339, 47.4573736 ], + [ 7.8803296, 47.4573865 ], + [ 7.8803203, 47.4574025 ], + [ 7.8803182, 47.4574071 ], + [ 7.8803171, 47.4574118 ], + [ 7.8803171, 47.4574165 ], + [ 7.880318, 47.4574213 ], + [ 7.88032, 47.4574258 ], + [ 7.8803228999999995, 47.4574302 ], + [ 7.8803266999999995, 47.4574342 ], + [ 7.8803314, 47.4574378 ], + [ 7.8803368, 47.4574409 ], + [ 7.8803427, 47.4574434 ], + [ 7.8803272, 47.4574676 ], + [ 7.8803216, 47.4574656 ], + [ 7.8802553, 47.4575136 ], + [ 7.8810201, 47.4579052 ], + [ 7.8812384, 47.458017 ], + [ 7.8815827, 47.4581934 ], + [ 7.882227, 47.4584197 ], + [ 7.8822320999999995, 47.4584215 ], + [ 7.8822706, 47.458435 ], + [ 7.8828174, 47.4586271 ], + [ 7.8830029, 47.4580325 ], + [ 7.8830115, 47.4579789 ], + [ 7.8830418, 47.4577886 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr053", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Langrüti", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Langrüti", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Langrüti", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Langrüti", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 5.9912566, 46.1785445 ], + [ 5.9912569, 46.1785451 ], + [ 5.9915146, 46.1787226 ], + [ 5.9926001, 46.1791026 ], + [ 5.9933979, 46.1791878 ], + [ 5.993447, 46.1793776 ], + [ 5.9942658, 46.1802637 ], + [ 5.9955105, 46.1808647 ], + [ 5.9969915, 46.1810891 ], + [ 5.9984835, 46.1809027 ], + [ 5.9997592, 46.1803339 ], + [ 5.9997996, 46.1802935 ], + [ 6.0004746, 46.1799925 ], + [ 6.0007648, 46.1797025 ], + [ 6.0016281, 46.1801193 ], + [ 6.0031092, 46.1803436 ], + [ 6.0046011, 46.1801571 ], + [ 6.0058767, 46.1795882 ], + [ 6.0067417, 46.1787235 ], + [ 6.0070646, 46.1776947 ], + [ 6.0067961, 46.1766584 ], + [ 6.0059771, 46.1757723 ], + [ 6.0047325, 46.1751714 ], + [ 6.0032515, 46.1749471 ], + [ 6.0017597, 46.1751336 ], + [ 6.0004842, 46.1757024 ], + [ 6.000194, 46.1759925 ], + [ 5.9993308, 46.1755757 ], + [ 5.9988585, 46.1755041 ], + [ 5.9986103, 46.1747962 ], + [ 5.9982340999999995, 46.1742335 ], + [ 5.9975552, 46.1735323 ], + [ 5.9965974, 46.1730113 ], + [ 5.9965672, 46.1730036 ], + [ 5.9967793, 46.1726032 ], + [ 5.9968255, 46.1717581 ], + [ 5.996493, 46.1709445 ], + [ 5.9959731, 46.1704067 ], + [ 5.9964303999999995, 46.1703495 ], + [ 5.9971893, 46.171171 ], + [ 5.9984339, 46.171772 ], + [ 5.9985242, 46.1717857 ], + [ 5.9992145, 46.1725328 ], + [ 6.0004591, 46.1731338 ], + [ 6.0019399, 46.1733581 ], + [ 6.0034317, 46.1731716 ], + [ 6.0047071, 46.1726028 ], + [ 6.0055721, 46.1717381 ], + [ 6.0058949, 46.1707093 ], + [ 6.0058376, 46.170488 ], + [ 6.0059903, 46.1700013 ], + [ 6.0058969, 46.1696407 ], + [ 6.0061173, 46.1695424 ], + [ 6.0063884, 46.1695085 ], + [ 6.0076637, 46.1689396 ], + [ 6.0085285, 46.1680749 ], + [ 6.0088513, 46.1670461 ], + [ 6.0085828, 46.1660098 ], + [ 6.007764, 46.1651238 ], + [ 6.0072378, 46.1648697 ], + [ 6.0080003, 46.1644557 ], + [ 6.008018, 46.1644432 ], + [ 6.0086343, 46.163873 ], + [ 6.0090141, 46.1632104 ], + [ 6.0090172, 46.1632018 ], + [ 6.0090201, 46.1631938 ], + [ 6.009137, 46.1624948 ], + [ 6.00899, 46.1617986 ], + [ 6.0089832, 46.1617821 ], + [ 6.0085811, 46.1611347 ], + [ 6.0079513, 46.1605818 ], + [ 6.0079336, 46.1605699 ], + [ 6.0071198, 46.1601495 ], + [ 6.0061771, 46.1598898 ], + [ 6.0061532, 46.1598856 ], + [ 6.0051476, 46.1598043 ], + [ 6.0041459, 46.1599064 ], + [ 6.0041222, 46.159911 ], + [ 6.0031902, 46.1601905 ], + [ 6.0023942, 46.1606283 ], + [ 6.002377, 46.1606406 ], + [ 6.0017725, 46.1612054 ], + [ 6.0013988, 46.1618596 ], + [ 6.0013928, 46.1618762 ], + [ 6.0012752, 46.1625724 ], + [ 6.0014196, 46.1632661 ], + [ 6.0014261, 46.1632824 ], + [ 6.0018252, 46.1639297 ], + [ 6.0024516, 46.1644832 ], + [ 6.0024694, 46.1644953 ], + [ 6.0025802, 46.1645528 ], + [ 6.0015214, 46.1646852 ], + [ 6.0002461, 46.165254 ], + [ 5.9993811, 46.1661186 ], + [ 5.9991962999999995, 46.1667076 ], + [ 5.9991315, 46.1667157 ], + [ 5.9983725, 46.1658942 ], + [ 5.9971282, 46.1652932 ], + [ 5.9956475, 46.1650688 ], + [ 5.9944835, 46.1652142 ], + [ 5.9944709, 46.1652006 ], + [ 5.9932266, 46.1645996 ], + [ 5.991746, 46.1643751 ], + [ 5.9902545, 46.1645614 ], + [ 5.9889791, 46.1651301 ], + [ 5.9881139, 46.1659947 ], + [ 5.9877908, 46.1670234 ], + [ 5.9878722, 46.1673382 ], + [ 5.9878341, 46.1674596 ], + [ 5.9881022, 46.168496 ], + [ 5.9889206999999995, 46.1693822 ], + [ 5.9901011, 46.1699524 ], + [ 5.9900009, 46.1700167 ], + [ 5.9899081, 46.1700984 ], + [ 5.9898147999999996, 46.1701585 ], + [ 5.9898018, 46.170164 ], + [ 5.9897624, 46.1701894 ], + [ 5.9890109, 46.1708538 ], + [ 5.9886562, 46.1715254 ], + [ 5.9886578, 46.171528 ], + [ 5.98866, 46.1715316 ], + [ 5.9886623, 46.1715353 ], + [ 5.9886645, 46.171539 ], + [ 5.9886667, 46.1715427 ], + [ 5.988669, 46.1715464 ], + [ 5.9886712, 46.1715501 ], + [ 5.9886734, 46.1715538 ], + [ 5.9886756, 46.1715576 ], + [ 5.9886777, 46.1715613 ], + [ 5.9886799, 46.171565 ], + [ 5.9886821, 46.1715687 ], + [ 5.9886842, 46.1715724 ], + [ 5.9886864, 46.1715761 ], + [ 5.9886885, 46.1715799 ], + [ 5.9886906, 46.1715836 ], + [ 5.9886927, 46.1715873 ], + [ 5.9886948, 46.1715911 ], + [ 5.9886969, 46.1715948 ], + [ 5.988699, 46.1715985 ], + [ 5.9887011, 46.1716023 ], + [ 5.9887032, 46.171606 ], + [ 5.9887052, 46.1716098 ], + [ 5.9887073, 46.1716135 ], + [ 5.9887093, 46.1716173 ], + [ 5.9887113, 46.171621 ], + [ 5.9887134, 46.1716248 ], + [ 5.9887154, 46.1716285 ], + [ 5.9887174, 46.1716323 ], + [ 5.9887194, 46.171636 ], + [ 5.9887213, 46.1716398 ], + [ 5.9887233, 46.1716436 ], + [ 5.9887253, 46.1716474 ], + [ 5.9887272, 46.1716511 ], + [ 5.9887292, 46.1716549 ], + [ 5.9887311, 46.1716587 ], + [ 5.988733, 46.1716625 ], + [ 5.9887349, 46.1716662 ], + [ 5.9887368, 46.17167 ], + [ 5.9887387, 46.1716738 ], + [ 5.9887406, 46.1716776 ], + [ 5.9887425, 46.1716814 ], + [ 5.9887443, 46.1716852 ], + [ 5.9887462, 46.171689 ], + [ 5.988748, 46.1716928 ], + [ 5.9887499, 46.1716966 ], + [ 5.9887517, 46.1717004 ], + [ 5.9887535, 46.1717042 ], + [ 5.9887553, 46.171708 ], + [ 5.9887571, 46.1717118 ], + [ 5.9887589, 46.1717156 ], + [ 5.9887607, 46.1717194 ], + [ 5.9887624, 46.1717233 ], + [ 5.9887642, 46.1717271 ], + [ 5.9887659, 46.1717309 ], + [ 5.9887677, 46.1717347 ], + [ 5.9887694, 46.1717385 ], + [ 5.9887711, 46.1717424 ], + [ 5.9887728, 46.1717462 ], + [ 5.9887745, 46.17175 ], + [ 5.9887762, 46.1717539 ], + [ 5.9887779, 46.1717577 ], + [ 5.9887796, 46.1717615 ], + [ 5.9887812, 46.1717654 ], + [ 5.9887829, 46.1717692 ], + [ 5.9887844999999995, 46.1717731 ], + [ 5.9887861000000004, 46.1717769 ], + [ 5.9887877, 46.1717808 ], + [ 5.9887894, 46.1717846 ], + [ 5.988791, 46.1717885 ], + [ 5.9887925, 46.1717923 ], + [ 5.9887941, 46.1717962 ], + [ 5.9887957, 46.1718 ], + [ 5.9887972, 46.1718039 ], + [ 5.9887988, 46.1718078 ], + [ 5.9888003, 46.1718116 ], + [ 5.9888019, 46.1718155 ], + [ 5.9888034, 46.1718193 ], + [ 5.9888049, 46.1718232 ], + [ 5.9888064, 46.1718271 ], + [ 5.9888079, 46.171831 ], + [ 5.9888094, 46.1718348 ], + [ 5.9888107999999995, 46.1718387 ], + [ 5.9888123, 46.1718426 ], + [ 5.9888138, 46.1718465 ], + [ 5.9888152, 46.1718504 ], + [ 5.9888166, 46.1718542 ], + [ 5.988818, 46.1718581 ], + [ 5.9888195, 46.171862 ], + [ 5.9888208, 46.1718659 ], + [ 5.9888221999999995, 46.1718698 ], + [ 5.9888236, 46.1718737 ], + [ 5.988825, 46.1718776 ], + [ 5.9888264, 46.1718815 ], + [ 5.9888277, 46.1718854 ], + [ 5.988829, 46.1718893 ], + [ 5.9888304, 46.1718932 ], + [ 5.9888317, 46.1718971 ], + [ 5.988833, 46.171901 ], + [ 5.9888343, 46.1719049 ], + [ 5.9888356, 46.1719088 ], + [ 5.9888369, 46.1719127 ], + [ 5.9888381, 46.1719166 ], + [ 5.9888394, 46.1719205 ], + [ 5.9888406, 46.1719244 ], + [ 5.9888419, 46.1719284 ], + [ 5.9888431, 46.1719323 ], + [ 5.9888443, 46.1719362 ], + [ 5.9888455, 46.1719401 ], + [ 5.9888467, 46.171944 ], + [ 5.9888479, 46.171948 ], + [ 5.9888490999999995, 46.1719519 ], + [ 5.9888503, 46.1719558 ], + [ 5.9888515, 46.1719597 ], + [ 5.9888525999999995, 46.1719637 ], + [ 5.9888537, 46.1719676 ], + [ 5.9888549, 46.1719715 ], + [ 5.988856, 46.1719755 ], + [ 5.9888571, 46.1719794 ], + [ 5.9888582, 46.1719833 ], + [ 5.9888593, 46.1719873 ], + [ 5.9888604, 46.1719912 ], + [ 5.9888614, 46.1719952 ], + [ 5.9888625, 46.1719991 ], + [ 5.9888635, 46.172003 ], + [ 5.9888646, 46.172007 ], + [ 5.9888656, 46.1720109 ], + [ 5.9888666, 46.1720149 ], + [ 5.9888676, 46.1720188 ], + [ 5.9888686, 46.1720228 ], + [ 5.9888696, 46.1720267 ], + [ 5.9888706, 46.1720307 ], + [ 5.9888715, 46.1720346 ], + [ 5.9888725, 46.1720386 ], + [ 5.9888734, 46.1720425 ], + [ 5.9888744, 46.1720465 ], + [ 5.9888753, 46.1720504 ], + [ 5.9888762, 46.1720544 ], + [ 5.9888771, 46.1720584 ], + [ 5.988878, 46.1720623 ], + [ 5.9888789, 46.1720663 ], + [ 5.9888798, 46.1720702 ], + [ 5.9888807, 46.1720742 ], + [ 5.9888815, 46.1720782 ], + [ 5.9888824, 46.1720821 ], + [ 5.9888832, 46.1720861 ], + [ 5.988884, 46.1720901 ], + [ 5.9888848, 46.172094 ], + [ 5.9888856, 46.172098 ], + [ 5.9888864, 46.172102 ], + [ 5.9888872, 46.1721059 ], + [ 5.988888, 46.1721099 ], + [ 5.9888888, 46.1721139 ], + [ 5.9888895, 46.1721179 ], + [ 5.9888902999999996, 46.1721218 ], + [ 5.988891, 46.1721258 ], + [ 5.9888917, 46.1721298 ], + [ 5.9888924, 46.1721338 ], + [ 5.9888931, 46.1721378 ], + [ 5.9888938, 46.1721417 ], + [ 5.9888945, 46.1721457 ], + [ 5.9888952, 46.1721497 ], + [ 5.9888958, 46.1721537 ], + [ 5.9888965, 46.1721577 ], + [ 5.9888971, 46.1721617 ], + [ 5.9888978, 46.1721656 ], + [ 5.9888984, 46.1721696 ], + [ 5.988899, 46.1721736 ], + [ 5.9888996, 46.1721776 ], + [ 5.9889002, 46.1721816 ], + [ 5.9889008, 46.1721856 ], + [ 5.9889013, 46.1721896 ], + [ 5.9889019, 46.1721936 ], + [ 5.9890517, 46.1732729 ], + [ 5.9890525, 46.1732782 ], + [ 5.9890533, 46.1732836 ], + [ 5.989054, 46.1732889 ], + [ 5.9890548, 46.1732943 ], + [ 5.9890556, 46.1732996 ], + [ 5.9890564, 46.173305 ], + [ 5.9890571999999995, 46.1733103 ], + [ 5.989058, 46.1733157 ], + [ 5.9890589, 46.173321 ], + [ 5.9890597, 46.1733264 ], + [ 5.9890606, 46.1733317 ], + [ 5.9890614, 46.1733371 ], + [ 5.9890623, 46.1733424 ], + [ 5.9890632, 46.1733477 ], + [ 5.9890641, 46.1733531 ], + [ 5.989065, 46.1733584 ], + [ 5.9890659, 46.1733638 ], + [ 5.9890668, 46.1733691 ], + [ 5.9890677, 46.1733745 ], + [ 5.9890687, 46.1733798 ], + [ 5.9890696, 46.1733851 ], + [ 5.9890706, 46.1733905 ], + [ 5.9890716, 46.1733958 ], + [ 5.9890725, 46.1734011 ], + [ 5.9890735, 46.1734065 ], + [ 5.9890745, 46.1734118 ], + [ 5.9890756, 46.1734171 ], + [ 5.9890766, 46.1734225 ], + [ 5.9890776, 46.1734278 ], + [ 5.9890787, 46.1734331 ], + [ 5.9890797, 46.1734384 ], + [ 5.9890808, 46.1734438 ], + [ 5.9890819, 46.1734491 ], + [ 5.989083, 46.1734544 ], + [ 5.9890840999999995, 46.1734597 ], + [ 5.9890852, 46.1734651 ], + [ 5.9890863, 46.1734704 ], + [ 5.9890874, 46.1734757 ], + [ 5.9890885, 46.173481 ], + [ 5.9890897, 46.1734863 ], + [ 5.9890908, 46.1734917 ], + [ 5.989092, 46.173497 ], + [ 5.9890932, 46.1735023 ], + [ 5.9890944, 46.1735076 ], + [ 5.9890956, 46.1735129 ], + [ 5.9890968, 46.1735182 ], + [ 5.989098, 46.1735235 ], + [ 5.9890992, 46.1735289 ], + [ 5.9891001, 46.1735324 ], + [ 5.9895004, 46.1739465 ], + [ 5.9894049, 46.1740571 ], + [ 5.9893511, 46.1742194 ], + [ 5.989352, 46.1742212 ], + [ 5.9893546, 46.1742263 ], + [ 5.9899757, 46.175454 ], + [ 5.9899777, 46.175458 ], + [ 5.9899797, 46.175462 ], + [ 5.9899816999999995, 46.1754659 ], + [ 5.9899838, 46.1754699 ], + [ 5.9899859, 46.1754739 ], + [ 5.9899879, 46.1754778 ], + [ 5.98999, 46.1754818 ], + [ 5.9899921, 46.1754857 ], + [ 5.9899942, 46.1754897 ], + [ 5.9899963, 46.1754936 ], + [ 5.9899984, 46.1754976 ], + [ 5.9900005, 46.1755015 ], + [ 5.9900026, 46.1755055 ], + [ 5.9900047999999995, 46.1755094 ], + [ 5.990007, 46.1755133 ], + [ 5.9900091, 46.1755173 ], + [ 5.9900113, 46.1755212 ], + [ 5.9900135, 46.1755251 ], + [ 5.9900157, 46.175529 ], + [ 5.9900179, 46.175533 ], + [ 5.9900201, 46.1755369 ], + [ 5.9900223, 46.1755408 ], + [ 5.9900245, 46.1755447 ], + [ 5.9900268, 46.1755486 ], + [ 5.990029, 46.1755526 ], + [ 5.9900313, 46.1755565 ], + [ 5.9900336, 46.1755604 ], + [ 5.9900358, 46.1755643 ], + [ 5.9900381, 46.1755682 ], + [ 5.9900404, 46.1755721 ], + [ 5.9900427, 46.175576 ], + [ 5.990045, 46.1755798 ], + [ 5.9900474, 46.1755837 ], + [ 5.9900497, 46.1755876 ], + [ 5.990052, 46.1755915 ], + [ 5.9900544, 46.1755954 ], + [ 5.9900568, 46.1755993 ], + [ 5.9900591, 46.1756031 ], + [ 5.9900614999999995, 46.175607 ], + [ 5.9900639, 46.1756109 ], + [ 5.9900663, 46.1756147 ], + [ 5.9900687, 46.1756186 ], + [ 5.9900712, 46.1756225 ], + [ 5.9900736, 46.1756263 ], + [ 5.990076, 46.1756302 ], + [ 5.9900785, 46.175634 ], + [ 5.9900809, 46.1756379 ], + [ 5.9900834, 46.1756417 ], + [ 5.9900859, 46.1756456 ], + [ 5.9900884, 46.1756494 ], + [ 5.9900909, 46.1756532 ], + [ 5.9900934, 46.1756571 ], + [ 5.9900959, 46.1756609 ], + [ 5.9900984, 46.1756647 ], + [ 5.990101, 46.1756686 ], + [ 5.9901035, 46.1756724 ], + [ 5.9901061, 46.1756762 ], + [ 5.9901086, 46.17568 ], + [ 5.9901112, 46.1756838 ], + [ 5.9901138, 46.1756876 ], + [ 5.9901164, 46.1756914 ], + [ 5.990119, 46.1756952 ], + [ 5.9901216, 46.1756991 ], + [ 5.9901242, 46.1757028 ], + [ 5.9901268, 46.1757066 ], + [ 5.9901295, 46.1757104 ], + [ 5.9901321, 46.1757142 ], + [ 5.9901348, 46.175718 ], + [ 5.9901374, 46.1757218 ], + [ 5.9901401, 46.1757256 ], + [ 5.9901428, 46.1757293 ], + [ 5.9901455, 46.1757331 ], + [ 5.9901482, 46.1757369 ], + [ 5.9901509, 46.1757407 ], + [ 5.9901536, 46.1757444 ], + [ 5.9901563, 46.1757482 ], + [ 5.9901591, 46.1757519 ], + [ 5.9901618, 46.1757557 ], + [ 5.9901646, 46.1757594 ], + [ 5.9901672999999995, 46.1757632 ], + [ 5.9901701, 46.1757669 ], + [ 5.9901729, 46.1757707 ], + [ 5.9901757, 46.1757744 ], + [ 5.9901785, 46.1757781 ], + [ 5.9901813, 46.1757819 ], + [ 5.9901841, 46.1757856 ], + [ 5.990187, 46.1757893 ], + [ 5.9901898, 46.175793 ], + [ 5.9901927, 46.1757968 ], + [ 5.9901955000000005, 46.1758005 ], + [ 5.9901984, 46.1758042 ], + [ 5.9902013, 46.1758079 ], + [ 5.9902041, 46.1758116 ], + [ 5.990207, 46.1758153 ], + [ 5.9902099, 46.175819 ], + [ 5.9902128999999995, 46.1758227 ], + [ 5.9902158, 46.1758264 ], + [ 5.9902187, 46.1758301 ], + [ 5.9902216, 46.1758337 ], + [ 5.9902246, 46.1758374 ], + [ 5.9902276, 46.1758411 ], + [ 5.9902305, 46.1758448 ], + [ 5.9902335, 46.1758484 ], + [ 5.9902365, 46.1758521 ], + [ 5.9902394999999995, 46.1758558 ], + [ 5.9902425, 46.1758594 ], + [ 5.9902455, 46.1758631 ], + [ 5.9902485, 46.1758667 ], + [ 5.9902515, 46.1758704 ], + [ 5.9902546, 46.175874 ], + [ 5.9902576, 46.1758777 ], + [ 5.9902607, 46.1758813 ], + [ 5.9902637, 46.1758849 ], + [ 5.9902668, 46.1758886 ], + [ 5.9902698999999995, 46.1758922 ], + [ 5.990273, 46.1758958 ], + [ 5.9902761, 46.1758994 ], + [ 5.9902792, 46.175903 ], + [ 5.9902823, 46.1759066 ], + [ 5.9902854, 46.1759103 ], + [ 5.9902885999999995, 46.1759139 ], + [ 5.9902917, 46.1759175 ], + [ 5.9902949, 46.1759211 ], + [ 5.990298, 46.1759246 ], + [ 5.9903012, 46.1759282 ], + [ 5.9903044, 46.1759318 ], + [ 5.9903075999999995, 46.1759354 ], + [ 5.9903108, 46.175939 ], + [ 5.990314, 46.1759425 ], + [ 5.9903172, 46.1759461 ], + [ 5.9903204, 46.1759497 ], + [ 5.9903236, 46.1759532 ], + [ 5.9903269, 46.1759568 ], + [ 5.9903300999999995, 46.1759604 ], + [ 5.9903334, 46.1759639 ], + [ 5.9903367, 46.1759675 ], + [ 5.9903399, 46.175971 ], + [ 5.9903432, 46.1759745 ], + [ 5.9903465, 46.1759781 ], + [ 5.9903498, 46.1759816 ], + [ 5.9903531, 46.1759851 ], + [ 5.9903565, 46.1759887 ], + [ 5.9903598, 46.1759922 ], + [ 5.9903631, 46.1759957 ], + [ 5.9903665, 46.1759992 ], + [ 5.9903698, 46.1760027 ], + [ 5.9903732, 46.1760062 ], + [ 5.9903766, 46.1760097 ], + [ 5.9903799, 46.1760132 ], + [ 5.9903832999999995, 46.1760167 ], + [ 5.9903867, 46.1760202 ], + [ 5.9903901, 46.1760237 ], + [ 5.9903935, 46.1760272 ], + [ 5.990397, 46.1760306 ], + [ 5.9904004, 46.1760341 ], + [ 5.9904038, 46.1760376 ], + [ 5.9904073, 46.176041 ], + [ 5.9904107, 46.1760445 ], + [ 5.9904142, 46.1760479 ], + [ 5.9904177, 46.1760514 ], + [ 5.9904211, 46.1760548 ], + [ 5.9904246, 46.1760583 ], + [ 5.9904281, 46.1760617 ], + [ 5.9904316, 46.1760652 ], + [ 5.9904352, 46.1760686 ], + [ 5.9904387, 46.176072 ], + [ 5.9904422, 46.1760754 ], + [ 5.9904458, 46.1760789 ], + [ 5.9904493, 46.1760823 ], + [ 5.9904529, 46.1760857 ], + [ 5.9904564, 46.1760891 ], + [ 5.990460000000001, 46.1760925 ], + [ 5.9904636, 46.1760959 ], + [ 5.9904672, 46.1760993 ], + [ 5.9904708, 46.1761027 ], + [ 5.9904744, 46.1761061 ], + [ 5.9904779999999995, 46.1761094 ], + [ 5.9904816, 46.1761128 ], + [ 5.9904852, 46.1761162 ], + [ 5.9904889, 46.1761195 ], + [ 5.9904925, 46.1761229 ], + [ 5.9904962, 46.1761263 ], + [ 5.9904999, 46.1761296 ], + [ 5.9905035, 46.176133 ], + [ 5.9905072, 46.1761363 ], + [ 5.9905109, 46.1761397 ], + [ 5.9905146, 46.176143 ], + [ 5.9905183, 46.1761463 ], + [ 5.990522, 46.1761497 ], + [ 5.9905257, 46.176153 ], + [ 5.9905295, 46.1761563 ], + [ 5.9905332, 46.1761596 ], + [ 5.990537, 46.1761629 ], + [ 5.9905407, 46.1761662 ], + [ 5.9905445, 46.1761695 ], + [ 5.9905482, 46.1761728 ], + [ 5.990552, 46.1761761 ], + [ 5.9905558, 46.1761794 ], + [ 5.9905596, 46.1761827 ], + [ 5.9905634, 46.176186 ], + [ 5.9905672, 46.1761892 ], + [ 5.990571, 46.1761925 ], + [ 5.9905749, 46.1761958 ], + [ 5.9905787, 46.176199 ], + [ 5.9905825, 46.1762023 ], + [ 5.9905864, 46.1762055 ], + [ 5.9905903, 46.1762088 ], + [ 5.9905941, 46.176212 ], + [ 5.990598, 46.1762153 ], + [ 5.9906019, 46.1762185 ], + [ 5.9906058, 46.1762217 ], + [ 5.9906097, 46.176225 ], + [ 5.9906136, 46.1762282 ], + [ 5.9906175, 46.1762314 ], + [ 5.9906214, 46.1762346 ], + [ 5.9906253, 46.1762378 ], + [ 5.9906293, 46.176241 ], + [ 5.9906331999999995, 46.1762442 ], + [ 5.9906372, 46.1762474 ], + [ 5.9906410999999995, 46.1762506 ], + [ 5.9906451, 46.1762538 ], + [ 5.9906491, 46.1762569 ], + [ 5.9906531, 46.1762601 ], + [ 5.9906571, 46.1762633 ], + [ 5.9906611, 46.1762665 ], + [ 5.9906651, 46.1762696 ], + [ 5.9906691, 46.1762728 ], + [ 5.9906731, 46.1762759 ], + [ 5.9906771, 46.1762791 ], + [ 5.9906812, 46.1762822 ], + [ 5.9906852, 46.1762853 ], + [ 5.9906893, 46.1762885 ], + [ 5.9906933, 46.1762916 ], + [ 5.9906974, 46.1762947 ], + [ 5.9907015, 46.1762978 ], + [ 5.9907056, 46.1763009 ], + [ 5.9907097, 46.176304 ], + [ 5.9907138, 46.1763071 ], + [ 5.9907179, 46.1763102 ], + [ 5.990722, 46.1763133 ], + [ 5.9907261, 46.1763164 ], + [ 5.9907302, 46.1763195 ], + [ 5.9907344, 46.1763226 ], + [ 5.9907385, 46.1763257 ], + [ 5.9907427, 46.1763287 ], + [ 5.9907468, 46.1763318 ], + [ 5.9907509999999995, 46.1763348 ], + [ 5.9907552, 46.1763379 ], + [ 5.9907594, 46.1763409 ], + [ 5.9907636, 46.176344 ], + [ 5.9907678, 46.176347 ], + [ 5.990772, 46.1763501 ], + [ 5.9907762, 46.1763531 ], + [ 5.9907804, 46.1763561 ], + [ 5.9907846, 46.1763591 ], + [ 5.9907889, 46.1763621 ], + [ 5.9907931, 46.1763651 ], + [ 5.9907974, 46.1763681 ], + [ 5.9908016, 46.1763711 ], + [ 5.9908059, 46.1763741 ], + [ 5.9908101, 46.1763771 ], + [ 5.9908144, 46.1763801 ], + [ 5.9908187, 46.1763831 ], + [ 5.990823, 46.1763861 ], + [ 5.9908273, 46.176389 ], + [ 5.9908316, 46.176392 ], + [ 5.9908359, 46.1763949 ], + [ 5.9908402, 46.1763979 ], + [ 5.9908446, 46.1764008 ], + [ 5.9908489, 46.1764038 ], + [ 5.9908532999999995, 46.1764067 ], + [ 5.9908576, 46.1764097 ], + [ 5.990862, 46.1764126 ], + [ 5.9908663, 46.1764155 ], + [ 5.9908707, 46.1764184 ], + [ 5.9908751, 46.1764213 ], + [ 5.9908795, 46.1764242 ], + [ 5.9908839, 46.1764271 ], + [ 5.9908883, 46.17643 ], + [ 5.9908927, 46.1764329 ], + [ 5.9908971, 46.1764358 ], + [ 5.9909015, 46.1764387 ], + [ 5.990906, 46.1764416 ], + [ 5.9909104, 46.1764444 ], + [ 5.9909148, 46.1764473 ], + [ 5.9909193, 46.1764501 ], + [ 5.9909237, 46.176453 ], + [ 5.9909282, 46.1764558 ], + [ 5.9909327, 46.1764587 ], + [ 5.9909372, 46.1764615 ], + [ 5.9909416, 46.1764644 ], + [ 5.9909461, 46.1764672 ], + [ 5.9909506, 46.17647 ], + [ 5.9909551, 46.1764728 ], + [ 5.9909597, 46.1764756 ], + [ 5.9909642, 46.1764784 ], + [ 5.9909687, 46.1764812 ], + [ 5.9909732, 46.176484 ], + [ 5.9909778, 46.1764868 ], + [ 5.9909823, 46.1764896 ], + [ 5.9909869, 46.1764924 ], + [ 5.9909914, 46.1764952 ], + [ 5.990996, 46.1764979 ], + [ 5.9910006, 46.1765007 ], + [ 5.9910052, 46.1765035 ], + [ 5.9910098, 46.1765062 ], + [ 5.9910143, 46.1765089 ], + [ 5.9910189, 46.1765117 ], + [ 5.9910236, 46.1765144 ], + [ 5.9910282, 46.1765172 ], + [ 5.9910328, 46.1765199 ], + [ 5.9910374, 46.1765226 ], + [ 5.991042, 46.1765253 ], + [ 5.9910467, 46.176528 ], + [ 5.9910513, 46.1765307 ], + [ 5.991056, 46.1765334 ], + [ 5.9910607, 46.1765361 ], + [ 5.9910653, 46.1765388 ], + [ 5.991070000000001, 46.1765415 ], + [ 5.9910747, 46.1765442 ], + [ 5.9910794, 46.1765468 ], + [ 5.9910841, 46.1765495 ], + [ 5.9910888, 46.1765521 ], + [ 5.9910935, 46.1765548 ], + [ 5.9910982, 46.1765574 ], + [ 5.9911029, 46.1765601 ], + [ 5.9911076, 46.1765627 ], + [ 5.9911124000000004, 46.1765653 ], + [ 5.9911171, 46.176568 ], + [ 5.9911219, 46.1765706 ], + [ 5.9911266, 46.1765732 ], + [ 5.9911314, 46.1765758 ], + [ 5.9911361, 46.1765784 ], + [ 5.9911408999999995, 46.176581 ], + [ 5.9911457, 46.1765836 ], + [ 5.9911505, 46.1765862 ], + [ 5.9911553, 46.1765888 ], + [ 5.9911601, 46.1765913 ], + [ 5.9911649, 46.1765939 ], + [ 5.9911697, 46.1765965 ], + [ 5.9911745, 46.176599 ], + [ 5.9911793, 46.1766016 ], + [ 5.9911841, 46.1766041 ], + [ 5.991189, 46.1766067 ], + [ 5.9911938, 46.1766092 ], + [ 5.9911987, 46.1766117 ], + [ 5.9912035, 46.1766143 ], + [ 5.9912084, 46.1766168 ], + [ 5.9912132, 46.1766193 ], + [ 5.9912181, 46.1766218 ], + [ 5.991223, 46.1766243 ], + [ 5.9912279, 46.1766268 ], + [ 5.9912328, 46.1766293 ], + [ 5.9912377, 46.1766318 ], + [ 5.9912426, 46.1766342 ], + [ 5.9912475, 46.1766367 ], + [ 5.9912524, 46.1766392 ], + [ 5.9912573, 46.1766416 ], + [ 5.9912621999999995, 46.1766441 ], + [ 5.9912672, 46.1766465 ], + [ 5.9912721, 46.176649 ], + [ 5.991277, 46.1766514 ], + [ 5.991282, 46.1766538 ], + [ 5.991287, 46.1766563 ], + [ 5.9912919, 46.1766587 ], + [ 5.9912969, 46.1766611 ], + [ 5.9913019, 46.1766635 ], + [ 5.9913068, 46.1766659 ], + [ 5.9913118, 46.1766683 ], + [ 5.9913168, 46.1766707 ], + [ 5.9913218, 46.1766731 ], + [ 5.9913267999999995, 46.1766754 ], + [ 5.9913318, 46.1766778 ], + [ 5.9913368, 46.1766802 ], + [ 5.9913419, 46.1766825 ], + [ 5.9913469, 46.1766849 ], + [ 5.9913519, 46.1766872 ], + [ 5.991357, 46.1766896 ], + [ 5.991362, 46.1766919 ], + [ 5.9913671, 46.1766942 ], + [ 5.9913720999999995, 46.1766966 ], + [ 5.9913772, 46.1766989 ], + [ 5.9913822, 46.1767012 ], + [ 5.9913872999999995, 46.1767035 ], + [ 5.9913924, 46.1767058 ], + [ 5.9913975, 46.1767081 ], + [ 5.9914026, 46.1767104 ], + [ 5.9914076, 46.1767127 ], + [ 5.9914128, 46.1767149 ], + [ 5.9914179, 46.1767172 ], + [ 5.991423, 46.1767195 ], + [ 5.9914281, 46.1767217 ], + [ 5.9914331999999995, 46.176724 ], + [ 5.9914383, 46.1767262 ], + [ 5.9914435, 46.1767285 ], + [ 5.9914486, 46.1767307 ], + [ 5.9914538, 46.1767329 ], + [ 5.9914589, 46.1767351 ], + [ 5.9914641, 46.1767374 ], + [ 5.9914692, 46.1767396 ], + [ 5.9914743999999995, 46.1767418 ], + [ 5.9914796, 46.176744 ], + [ 5.9914847, 46.1767462 ], + [ 5.9914898999999995, 46.1767483 ], + [ 5.9914951, 46.1767505 ], + [ 5.9915003, 46.1767527 ], + [ 5.9915055, 46.1767549 ], + [ 5.9915107, 46.176757 ], + [ 5.9915159, 46.1767592 ], + [ 5.9915211, 46.1767613 ], + [ 5.9915263, 46.1767635 ], + [ 5.9915316, 46.1767656 ], + [ 5.9915368, 46.1767677 ], + [ 5.991542, 46.1767699 ], + [ 5.9915473, 46.176772 ], + [ 5.9915525, 46.1767741 ], + [ 5.9915578, 46.1767762 ], + [ 5.991563, 46.1767783 ], + [ 5.9915683, 46.1767804 ], + [ 5.9915736, 46.1767825 ], + [ 5.9915788, 46.1767845 ], + [ 5.9915841, 46.1767866 ], + [ 5.9915894, 46.1767887 ], + [ 5.9915947, 46.1767907 ], + [ 5.9916, 46.1767928 ], + [ 5.9916053, 46.1767948 ], + [ 5.9916105, 46.1767969 ], + [ 5.9916159, 46.1767989 ], + [ 5.9916212, 46.1768009 ], + [ 5.9916265, 46.176803 ], + [ 5.9916318, 46.176805 ], + [ 5.9916371, 46.176807 ], + [ 5.9916425, 46.176809 ], + [ 5.9916478, 46.176811 ], + [ 5.9916531, 46.176813 ], + [ 5.9916585, 46.176815 ], + [ 5.9916637999999995, 46.176817 ], + [ 5.9916692, 46.1768189 ], + [ 5.9916746, 46.1768209 ], + [ 5.9916799, 46.1768229 ], + [ 5.9916853, 46.1768248 ], + [ 5.9916906999999995, 46.1768268 ], + [ 5.9916961, 46.1768287 ], + [ 5.9917014, 46.1768306 ], + [ 5.9917068, 46.1768326 ], + [ 5.9917122, 46.1768345 ], + [ 5.9917176, 46.1768364 ], + [ 5.991723, 46.1768383 ], + [ 5.9917283999999995, 46.1768402 ], + [ 5.9917338, 46.1768421 ], + [ 5.9914204, 46.1771617 ], + [ 5.9914609, 46.1771819 ], + [ 5.9914511, 46.1772057 ], + [ 5.9914229, 46.1772396 ], + [ 5.9913626, 46.1772781 ], + [ 5.9913365, 46.1772923 ], + [ 5.9913205, 46.1773003 ], + [ 5.9912643, 46.1773128 ], + [ 5.991236, 46.1773226 ], + [ 5.9912173, 46.1773244 ], + [ 5.9911255, 46.1773048 ], + [ 5.9908885, 46.1773127 ], + [ 5.990818, 46.1773281 ], + [ 5.9907767, 46.1773446 ], + [ 5.9904317, 46.177533 ], + [ 5.990431, 46.1775334 ], + [ 5.9904302, 46.1775339 ], + [ 5.9904295, 46.1775343 ], + [ 5.9904288999999995, 46.1775348 ], + [ 5.9904282, 46.1775353 ], + [ 5.9904275, 46.1775357 ], + [ 5.9904268, 46.1775362 ], + [ 5.9904262, 46.1775367 ], + [ 5.9904255, 46.1775371 ], + [ 5.9904249, 46.1775376 ], + [ 5.9904242, 46.1775381 ], + [ 5.9904236, 46.1775386 ], + [ 5.990423, 46.1775391 ], + [ 5.9904223, 46.1775396 ], + [ 5.9904217, 46.1775401 ], + [ 5.9904211, 46.1775406 ], + [ 5.9904205, 46.1775411 ], + [ 5.9904199, 46.1775417 ], + [ 5.9904194, 46.1775422 ], + [ 5.9904188, 46.1775427 ], + [ 5.9904182, 46.1775433 ], + [ 5.9904177, 46.1775438 ], + [ 5.9904171, 46.1775443 ], + [ 5.9904166, 46.1775449 ], + [ 5.990416, 46.1775454 ], + [ 5.9904155, 46.177546 ], + [ 5.990415, 46.1775465 ], + [ 5.9904145, 46.1775471 ], + [ 5.9904139999999995, 46.1775477 ], + [ 5.9904135, 46.1775482 ], + [ 5.990413, 46.1775488 ], + [ 5.9904126, 46.1775494 ], + [ 5.9904121, 46.1775499 ], + [ 5.9904116, 46.1775505 ], + [ 5.9904112, 46.1775511 ], + [ 5.9904108, 46.1775517 ], + [ 5.9904103, 46.1775523 ], + [ 5.9904098999999995, 46.1775529 ], + [ 5.9904095, 46.1775535 ], + [ 5.9904091, 46.1775541 ], + [ 5.9904087, 46.1775547 ], + [ 5.9904083, 46.1775553 ], + [ 5.9904079, 46.1775559 ], + [ 5.9904076, 46.1775565 ], + [ 5.9904072, 46.1775571 ], + [ 5.9904069, 46.1775577 ], + [ 5.9904067, 46.1775583 ], + [ 5.9904063999999995, 46.1775588 ], + [ 5.9904060999999995, 46.1775594 ], + [ 5.9904059, 46.17756 ], + [ 5.9904057, 46.1775606 ], + [ 5.9904054, 46.1775611 ], + [ 5.9904052, 46.1775617 ], + [ 5.990405, 46.1775623 ], + [ 5.9904048, 46.1775629 ], + [ 5.9904046, 46.1775635 ], + [ 5.9904045, 46.1775641 ], + [ 5.9904043, 46.1775647 ], + [ 5.9904041, 46.1775653 ], + [ 5.990404, 46.177565799999996 ], + [ 5.9904039000000004, 46.1775664 ], + [ 5.9904037, 46.177567 ], + [ 5.9904036, 46.1775676 ], + [ 5.9904035, 46.1775682 ], + [ 5.9904034, 46.1775688 ], + [ 5.9904033, 46.1775694 ], + [ 5.9904032, 46.17757 ], + [ 5.9904032, 46.1775706 ], + [ 5.9904031, 46.1775712 ], + [ 5.9904031, 46.1775718 ], + [ 5.990403, 46.1775724 ], + [ 5.990403, 46.177573 ], + [ 5.990403, 46.1775736 ], + [ 5.990403, 46.1775742 ], + [ 5.990403, 46.1775748 ], + [ 5.990403, 46.1775754 ], + [ 5.990403, 46.177576 ], + [ 5.990403, 46.1775766 ], + [ 5.9904031, 46.1775772 ], + [ 5.9904031, 46.1775778 ], + [ 5.9904032, 46.1775784 ], + [ 5.9904033, 46.177579 ], + [ 5.9904033, 46.1775797 ], + [ 5.9904034, 46.1775802 ], + [ 5.9904035, 46.1775808 ], + [ 5.9904036, 46.1775814 ], + [ 5.9904038, 46.177582 ], + [ 5.9904039000000004, 46.1775826 ], + [ 5.990404, 46.1775832 ], + [ 5.9904042, 46.1775838 ], + [ 5.9904043, 46.1775844 ], + [ 5.9904045, 46.177585 ], + [ 5.9904047, 46.1775856 ], + [ 5.9904048, 46.1775862 ], + [ 5.9904051, 46.1775868 ], + [ 5.9904052, 46.1775873 ], + [ 5.9904053, 46.1775878 ], + [ 5.9904055, 46.1775884 ], + [ 5.9904056, 46.1775889 ], + [ 5.9904058, 46.1775895 ], + [ 5.990406, 46.17759 ], + [ 5.9904062, 46.1775905 ], + [ 5.9904063999999995, 46.1775911 ], + [ 5.9904066, 46.1775916 ], + [ 5.9904068, 46.1775921 ], + [ 5.990407, 46.1775926 ], + [ 5.9904073, 46.1775932 ], + [ 5.9904075, 46.1775937 ], + [ 5.9904078, 46.1775942 ], + [ 5.9904081, 46.1775947 ], + [ 5.9904083, 46.1775952 ], + [ 5.9904086, 46.1775958 ], + [ 5.9904089, 46.1775963 ], + [ 5.9904092, 46.1775968 ], + [ 5.9904095, 46.1775973 ], + [ 5.9904098999999995, 46.1775978 ], + [ 5.9904101999999995, 46.1775983 ], + [ 5.9904105, 46.1775988 ], + [ 5.9904109, 46.1775993 ], + [ 5.9904112, 46.1775998 ], + [ 5.9904116, 46.1776002 ], + [ 5.990412, 46.1776007 ], + [ 5.9904123, 46.1776012 ], + [ 5.9904127, 46.1776017 ], + [ 5.9904131, 46.1776022 ], + [ 5.9904135, 46.1776026 ], + [ 5.9904139999999995, 46.1776031 ], + [ 5.9904144, 46.1776036 ], + [ 5.9904148, 46.177604 ], + [ 5.9904153, 46.1776045 ], + [ 5.9904157, 46.1776049 ], + [ 5.9904162, 46.1776054 ], + [ 5.9904166, 46.1776058 ], + [ 5.9904171, 46.1776063 ], + [ 5.9904176, 46.1776067 ], + [ 5.9904181, 46.1776071 ], + [ 5.9904186, 46.1776076 ], + [ 5.9904191, 46.177608 ], + [ 5.9904196, 46.1776084 ], + [ 5.9904201, 46.1776088 ], + [ 5.9904206, 46.1776092 ], + [ 5.9904212, 46.1776096 ], + [ 5.9904217, 46.17761 ], + [ 5.9904223, 46.1776104 ], + [ 5.9904228, 46.1776108 ], + [ 5.9904234, 46.1776112 ], + [ 5.990424, 46.1776116 ], + [ 5.9904245, 46.177612 ], + [ 5.9904250999999995, 46.1776123 ], + [ 5.9904257, 46.1776127 ], + [ 5.9905818, 46.1777114 ], + [ 5.9906077, 46.1777437 ], + [ 5.9906267, 46.1777589 ], + [ 5.9906649, 46.1777816 ], + [ 5.9907335, 46.1778603 ], + [ 5.9909223, 46.1779584 ], + [ 5.990975, 46.1780137 ], + [ 5.9909806, 46.1780533 ], + [ 5.9910007, 46.1781003 ], + [ 5.9910296, 46.1781596 ], + [ 5.9910495, 46.1781848 ], + [ 5.9910548, 46.1781999 ], + [ 5.9911064, 46.1782789 ], + [ 5.9911587, 46.1783331 ], + [ 5.9911649, 46.1783625 ], + [ 5.9911791, 46.1783953 ], + [ 5.9911927, 46.1784628 ], + [ 5.9912154, 46.1785071 ], + [ 5.9912566, 46.1785445 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-3", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4502521999999995, 47.1424692 ], + [ 7.4398058, 47.1392633 ], + [ 7.4366229, 47.1383538 ], + [ 7.4333748, 47.1375592 ], + [ 7.4300702, 47.1368815 ], + [ 7.4267182, 47.1363227 ], + [ 7.423328, 47.1358842 ], + [ 7.4199089, 47.1355674 ], + [ 7.4164702, 47.1353729 ], + [ 7.4130213, 47.1353015 ], + [ 7.4095717, 47.1353532 ], + [ 7.4061307, 47.1355279 ], + [ 7.4027078, 47.1358252 ], + [ 7.3993124, 47.1362442 ], + [ 7.3959536, 47.1367838 ], + [ 7.3926408, 47.1374425 ], + [ 7.389383, 47.1382185 ], + [ 7.386189, 47.1391097 ], + [ 7.3830677, 47.1401137 ], + [ 7.3800275, 47.1412277 ], + [ 7.3770768, 47.1424486 ], + [ 7.3742237, 47.1437732 ], + [ 7.3714759, 47.1451977 ], + [ 7.368841, 47.1467184 ], + [ 7.3663262, 47.148331 ], + [ 7.3639384, 47.1500311 ], + [ 7.3616842, 47.1518141 ], + [ 7.3595697, 47.1536751 ], + [ 7.3576007, 47.155609 ], + [ 7.3557827, 47.1576106 ], + [ 7.3541206, 47.1596742 ], + [ 7.352619, 47.1617943 ], + [ 7.351282, 47.1639652 ], + [ 7.3501134, 47.1661807 ], + [ 7.3491162, 47.1684349 ], + [ 7.3482934, 47.1707216 ], + [ 7.3476471, 47.1730346 ], + [ 7.3471792, 47.1753674 ], + [ 7.3468909, 47.1777137 ], + [ 7.3467831, 47.1800671 ], + [ 7.3468561, 47.1824212 ], + [ 7.3471097, 47.1847694 ], + [ 7.3475432, 47.1871053 ], + [ 7.3481556, 47.1894225 ], + [ 7.348945, 47.1917147 ], + [ 7.3499095, 47.1939756 ], + [ 7.3510463, 47.196199 ], + [ 7.3523523, 47.1983788 ], + [ 7.3538241, 47.200509 ], + [ 7.3554575, 47.2025837 ], + [ 7.3572482, 47.2045973 ], + [ 7.3591912, 47.2065442 ], + [ 7.3612812, 47.2084192 ], + [ 7.3635124, 47.210217 ], + [ 7.3658788, 47.2119327 ], + [ 7.3683739, 47.2135615 ], + [ 7.3709909, 47.2150992 ], + [ 7.3737224999999995, 47.2165413 ], + [ 7.3765613, 47.217884 ], + [ 7.3794995, 47.2191236 ], + [ 7.382529, 47.2202566 ], + [ 7.3856415, 47.2212799 ], + [ 7.3961007, 47.2244907 ], + [ 7.399288, 47.2254012 ], + [ 7.402541, 47.2261968 ], + [ 7.4058508, 47.2268753 ], + [ 7.4092082, 47.2274347 ], + [ 7.4126041, 47.2278736 ], + [ 7.4160291, 47.2281907 ], + [ 7.4194738000000005, 47.2283851 ], + [ 7.4229287, 47.2284564 ], + [ 7.4263843, 47.2284043 ], + [ 7.4298312, 47.2282289 ], + [ 7.4332599, 47.2279308 ], + [ 7.4366609, 47.2275108 ], + [ 7.4400249, 47.2269701 ], + [ 7.4433427, 47.22631 ], + [ 7.4466051, 47.2255325 ], + [ 7.4498032, 47.2246396 ], + [ 7.4529282, 47.2236338 ], + [ 7.4559716, 47.2225179 ], + [ 7.4589248999999995, 47.221295 ], + [ 7.4617801, 47.2199684 ], + [ 7.4645293, 47.2185417 ], + [ 7.467165, 47.2170189 ], + [ 7.46968, 47.2154041 ], + [ 7.4720673, 47.2137018 ], + [ 7.4743205, 47.2119166 ], + [ 7.4764333, 47.2100536 ], + [ 7.4783999, 47.2081176 ], + [ 7.4802151, 47.2061142 ], + [ 7.4818738, 47.2040488 ], + [ 7.4833714, 47.2019269 ], + [ 7.484704, 47.1997546 ], + [ 7.4858678, 47.1975377 ], + [ 7.4868597, 47.1952823 ], + [ 7.487677, 47.1929947 ], + [ 7.4883175, 47.1906809 ], + [ 7.4887794, 47.1883475 ], + [ 7.4890615, 47.1860009 ], + [ 7.4891631, 47.1836473 ], + [ 7.4890837999999995, 47.1812934 ], + [ 7.488824, 47.1789455 ], + [ 7.4883843, 47.1766102 ], + [ 7.487766, 47.1742937 ], + [ 7.4869709, 47.1720024 ], + [ 7.486001, 47.1697426 ], + [ 7.4848592, 47.1675206 ], + [ 7.4835485, 47.1653423 ], + [ 7.4820725, 47.1632138 ], + [ 7.4804354, 47.1611408 ], + [ 7.4786415, 47.1591291 ], + [ 7.4766959, 47.1571842 ], + [ 7.4746039, 47.1553113 ], + [ 7.4723711999999995, 47.1535156 ], + [ 7.470004, 47.1518021 ], + [ 7.4675086, 47.1501754 ], + [ 7.4648921, 47.1486399 ], + [ 7.4621615, 47.1471999 ], + [ 7.4593243, 47.1458593 ], + [ 7.4563883, 47.1446218 ], + [ 7.4533615, 47.1434907 ], + [ 7.4502521999999995, 47.1424692 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZG001", + "country" : "CHE", + "name" : [ + { + "text" : "LSZG Grenchen", + "lang" : "de-CH" + }, + { + "text" : "LSZG Grenchen", + "lang" : "fr-CH" + }, + { + "text" : "LSZG Grenchen", + "lang" : "it-CH" + }, + { + "text" : "LSZG Grenchen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Special Flight Office (SFO)", + "lang" : "de-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "fr-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "it-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "en-GB" + } + ], + "siteURL" : "https://skyguide.ch/services/special-flights", + "email" : "specialflight@skyguide.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.3840603, 47.4123644 ], + [ 7.3830346, 47.4124565 ], + [ 7.3826048, 47.4124953 ], + [ 7.3821604, 47.4125354 ], + [ 7.3817924, 47.4125706 ], + [ 7.3794777, 47.4127818 ], + [ 7.3787486, 47.4129624 ], + [ 7.3784639, 47.4130336 ], + [ 7.3780274, 47.4131443 ], + [ 7.3778765, 47.4132149 ], + [ 7.377445, 47.4134168 ], + [ 7.3759516, 47.4141036 ], + [ 7.3759601, 47.4141026 ], + [ 7.3765913, 47.4140274 ], + [ 7.3773269, 47.4140794 ], + [ 7.3775977, 47.414073 ], + [ 7.3778517, 47.414011 ], + [ 7.3778755, 47.4140096 ], + [ 7.3784316, 47.4139776 ], + [ 7.3785897, 47.4139469 ], + [ 7.3791281, 47.413842700000004 ], + [ 7.3795676, 47.4137766 ], + [ 7.3802332, 47.4137136 ], + [ 7.3806934, 47.4134958 ], + [ 7.3807349, 47.4134869 ], + [ 7.3810599, 47.4134171 ], + [ 7.3815337, 47.4133136 ], + [ 7.3816829, 47.4133044 ], + [ 7.3818016, 47.413297 ], + [ 7.3822672, 47.4133055 ], + [ 7.3825859, 47.4133335 ], + [ 7.3825883, 47.4133338 ], + [ 7.3830712, 47.4133775 ], + [ 7.3836186999999995, 47.4134257 ], + [ 7.3836198, 47.4134258 ], + [ 7.3843617, 47.4135011 ], + [ 7.3844542, 47.4135058 ], + [ 7.3849952, 47.4135328 ], + [ 7.3856121, 47.4136197 ], + [ 7.3856228999999995, 47.4136615 ], + [ 7.385676, 47.4138668 ], + [ 7.3864347, 47.4138105 ], + [ 7.386907, 47.4137994 ], + [ 7.3872579, 47.4138692 ], + [ 7.3876043, 47.4140505 ], + [ 7.3880431, 47.4140103 ], + [ 7.3882759, 47.413956 ], + [ 7.3884225, 47.4138984 ], + [ 7.388439, 47.4138943 ], + [ 7.3884904, 47.4138816 ], + [ 7.3890241, 47.4137498 ], + [ 7.3894952, 47.4136466 ], + [ 7.3898839, 47.4136121 ], + [ 7.3901718, 47.4135583 ], + [ 7.3905922, 47.4135199 ], + [ 7.390909, 47.4134778 ], + [ 7.3912209, 47.4134953 ], + [ 7.3915786, 47.4134941 ], + [ 7.3919285, 47.4133349 ], + [ 7.3924035, 47.4133091 ], + [ 7.3926223, 47.4132582 ], + [ 7.3928578, 47.4132201 ], + [ 7.3933497, 47.4131181 ], + [ 7.3935313, 47.4130804 ], + [ 7.3938279, 47.4130399 ], + [ 7.3941013, 47.413183599999996 ], + [ 7.3941872, 47.4132074 ], + [ 7.3945129, 47.4131767 ], + [ 7.3950183, 47.413129 ], + [ 7.3950622, 47.4131249 ], + [ 7.3952516, 47.4129673 ], + [ 7.3952619, 47.4129588 ], + [ 7.3958501, 47.4129694 ], + [ 7.3958778, 47.4129699 ], + [ 7.3959819, 47.4128588 ], + [ 7.3963778, 47.4128753 ], + [ 7.3966805, 47.4128073 ], + [ 7.3968126, 47.4128394 ], + [ 7.3969526, 47.4128734 ], + [ 7.3977098, 47.4127118 ], + [ 7.398236, 47.4125597 ], + [ 7.3984783, 47.4125094 ], + [ 7.3985092, 47.4125028 ], + [ 7.3985742, 47.4124891 ], + [ 7.3985944, 47.4124848 ], + [ 7.3985836, 47.4124665 ], + [ 7.3985001, 47.4122463 ], + [ 7.3983772, 47.4120777 ], + [ 7.3982729, 47.4118884 ], + [ 7.3981723, 47.4116652 ], + [ 7.3980953, 47.4114257 ], + [ 7.3980902, 47.4114098 ], + [ 7.3979756, 47.4112454 ], + [ 7.3977558, 47.4113153 ], + [ 7.3974384, 47.4113903 ], + [ 7.3968618, 47.4115374 ], + [ 7.3965608, 47.4115921 ], + [ 7.3963121, 47.4116407 ], + [ 7.3955583, 47.4117749 ], + [ 7.3951439, 47.4118317 ], + [ 7.3947491, 47.4118733 ], + [ 7.3943229, 47.4118851 ], + [ 7.3941323, 47.4119076 ], + [ 7.3940367, 47.4119403 ], + [ 7.3936382, 47.4119953 ], + [ 7.3932385, 47.4120168 ], + [ 7.3928246, 47.4120353 ], + [ 7.39243, 47.4120398 ], + [ 7.3922726, 47.4120317 ], + [ 7.3922366, 47.4119732 ], + [ 7.392203, 47.4119186 ], + [ 7.3921368, 47.4119338 ], + [ 7.3919669, 47.4119728 ], + [ 7.3912833, 47.41215 ], + [ 7.3912541, 47.4121575 ], + [ 7.3911335, 47.4121888 ], + [ 7.39111, 47.4121949 ], + [ 7.3911035, 47.4121841 ], + [ 7.3910968, 47.4121727 ], + [ 7.3910882, 47.4121582 ], + [ 7.3909329, 47.4122265 ], + [ 7.3906267, 47.4123515 ], + [ 7.3903478, 47.4124542 ], + [ 7.3902751, 47.4124745 ], + [ 7.3901435, 47.4125112 ], + [ 7.3898783, 47.412562199999996 ], + [ 7.3896415, 47.4125886 ], + [ 7.3889074, 47.4125801 ], + [ 7.3889055, 47.4125803 ], + [ 7.3889036, 47.4125806 ], + [ 7.3887272, 47.4126089 ], + [ 7.3886486, 47.4126089 ], + [ 7.3886461, 47.4126089 ], + [ 7.388469, 47.4126181 ], + [ 7.3884475, 47.4126192 ], + [ 7.3884451, 47.4126194 ], + [ 7.3884426, 47.4126197 ], + [ 7.3884402, 47.4126202 ], + [ 7.3884378, 47.4126207 ], + [ 7.3884356, 47.4126214 ], + [ 7.3884313, 47.4126228 ], + [ 7.388392, 47.4126358 ], + [ 7.3883164, 47.4126607 ], + [ 7.388315, 47.4126612 ], + [ 7.3883136, 47.4126618 ], + [ 7.3880692, 47.4127632 ], + [ 7.3880674, 47.4127641 ], + [ 7.3880656, 47.412765 ], + [ 7.3879044, 47.4128536 ], + [ 7.3876643, 47.4129711 ], + [ 7.3874496, 47.4130674 ], + [ 7.3872531, 47.413134 ], + [ 7.3871329, 47.4131539 ], + [ 7.3871234, 47.4131554 ], + [ 7.3869688, 47.4131534 ], + [ 7.3867876, 47.4131291 ], + [ 7.3866795, 47.4131041 ], + [ 7.3866462, 47.4130963 ], + [ 7.3866453, 47.4130962 ], + [ 7.3864285, 47.4130504 ], + [ 7.386426, 47.41305 ], + [ 7.3864235, 47.4130497 ], + [ 7.386421, 47.4130495 ], + [ 7.3863689, 47.413047 ], + [ 7.3862469, 47.4130411 ], + [ 7.3862448, 47.4130411 ], + [ 7.3862426, 47.4130411 ], + [ 7.3862404, 47.4130412 ], + [ 7.3860837, 47.4130546 ], + [ 7.3860281, 47.4130594 ], + [ 7.3858692, 47.4130433 ], + [ 7.385697, 47.4130151 ], + [ 7.3856337, 47.4129942 ], + [ 7.3855109, 47.4129538 ], + [ 7.3855103, 47.4129537 ], + [ 7.3853061, 47.4128894 ], + [ 7.3850613, 47.4128088 ], + [ 7.3849069, 47.4127509 ], + [ 7.3848682, 47.4127364 ], + [ 7.3848681, 47.4127363 ], + [ 7.3847444, 47.4126907 ], + [ 7.3840603, 47.4123644 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr014", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Chlummen", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Chlummen", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Chlummen", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Chlummen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4182848, 46.9715656 ], + [ 7.4184937, 46.97091 ], + [ 7.4184329, 46.9709219 ], + [ 7.4183549, 46.9709219 ], + [ 7.4180067, 46.970886 ], + [ 7.4176584, 46.9708383 ], + [ 7.4172749, 46.9708263 ], + [ 7.4171353, 46.9707905 ], + [ 7.4170483, 46.9707309 ], + [ 7.416944, 46.970707 ], + [ 7.4167, 46.970707 ], + [ 7.416282, 46.9706949 ], + [ 7.4158121999999995, 46.9706472 ], + [ 7.4154985, 46.9705636 ], + [ 7.4151331, 46.9705159 ], + [ 7.4148719, 46.9704563 ], + [ 7.4144366999999995, 46.970337 ], + [ 7.4140885, 46.9702295 ], + [ 7.4136352, 46.9701222 ], + [ 7.4133568, 46.9700149 ], + [ 7.413287, 46.9699314 ], + [ 7.4132526, 46.9698718 ], + [ 7.4130956999999995, 46.9698717 ], + [ 7.4129914, 46.9697763 ], + [ 7.4128001, 46.9697167 ], + [ 7.4126605, 46.969669 ], + [ 7.4124692, 46.9695974 ], + [ 7.4123994, 46.9695617 ], + [ 7.4121555, 46.9694185 ], + [ 7.4117376, 46.9692992 ], + [ 7.411529, 46.9692038 ], + [ 7.4114246999999995, 46.9691561 ], + [ 7.4112153, 46.9691203 ], + [ 7.4110585, 46.9690606 ], + [ 7.4109714, 46.9690248 ], + [ 7.4107801, 46.9690128 ], + [ 7.4106233, 46.9689175 ], + [ 7.4104665, 46.968834 ], + [ 7.4102924, 46.9688101 ], + [ 7.410101, 46.9687504 ], + [ 7.4099614, 46.9687147 ], + [ 7.4097529, 46.9686431 ], + [ 7.4092651, 46.9685357 ], + [ 7.4090229, 46.9684758 ], + [ 7.4087083, 46.9684401 ], + [ 7.4084119, 46.9684044 ], + [ 7.4082903, 46.9684281 ], + [ 7.4080989, 46.9684519 ], + [ 7.4078551, 46.9684042 ], + [ 7.4076456, 46.9683564 ], + [ 7.407263, 46.9683086 ], + [ 7.4068622, 46.9682966 ], + [ 7.4064795, 46.9682845 ], + [ 7.406183, 46.9682487 ], + [ 7.4058521, 46.9682129 ], + [ 7.4053125, 46.9682365 ], + [ 7.4048074, 46.968284 ], + [ 7.4045806, 46.9683555 ], + [ 7.4044065, 46.9684389 ], + [ 7.4042151, 46.9684388 ], + [ 7.4037971, 46.9684387 ], + [ 7.4033963, 46.9684625 ], + [ 7.403048, 46.9685339 ], + [ 7.4026998, 46.9685695 ], + [ 7.4023688, 46.9686409 ], + [ 7.4020032, 46.9687004 ], + [ 7.4015851999999995, 46.9687003 ], + [ 7.401237, 46.9686882 ], + [ 7.4009758, 46.9686762 ], + [ 7.4007147, 46.9686761 ], + [ 7.400419, 46.9686642 ], + [ 7.4001225999999996, 46.9686163 ], + [ 7.3998615, 46.9685328 ], + [ 7.3994961, 46.9684492 ], + [ 7.3994632, 46.9684418 ], + [ 7.3993392, 46.9684015 ], + [ 7.3988868, 46.9682702 ], + [ 7.3983818, 46.968115 ], + [ 7.3980337, 46.9679718 ], + [ 7.3980157, 46.9679599 ], + [ 7.3975805, 46.9677929 ], + [ 7.3973367, 46.9676855 ], + [ 7.3970584, 46.9675185 ], + [ 7.3967974, 46.9673515 ], + [ 7.3964969, 46.9671798 ], + [ 7.3962754, 46.9669579 ], + [ 7.3961539, 46.9668268 ], + [ 7.3959799, 46.9667432 ], + [ 7.3957534, 46.9665763 ], + [ 7.3955966, 46.9664808 ], + [ 7.395301, 46.9663734 ], + [ 7.3950917, 46.9662899 ], + [ 7.3950596, 46.9662837 ], + [ 7.3950399, 46.9663018 ], + [ 7.3945866, 46.966254 ], + [ 7.394204, 46.9661823 ], + [ 7.3937507, 46.9661463 ], + [ 7.3928974, 46.9661459 ], + [ 7.3925146999999996, 46.9661339 ], + [ 7.391783, 46.9661693 ], + [ 7.3914175, 46.9661692 ], + [ 7.3910865, 46.9661929 ], + [ 7.3906513, 46.9662165 ], + [ 7.390303, 46.9662164 ], + [ 7.3899549, 46.9661805 ], + [ 7.3896584, 46.9661445 ], + [ 7.389293, 46.966120599999996 ], + [ 7.3889621, 46.9660966 ], + [ 7.3883182, 46.9660606 ], + [ 7.3877262, 46.9660245 ], + [ 7.3870117, 46.9659885 ], + [ 7.3869206, 46.9659727 ], + [ 7.3869206, 46.9659881 ], + [ 7.386707, 46.9659772 ], + [ 7.3866988, 46.9659644 ], + [ 7.3866463, 46.9659644 ], + [ 7.3863326, 46.9659523 ], + [ 7.3860714, 46.9659522 ], + [ 7.3856715, 46.9659639 ], + [ 7.385375, 46.9659877 ], + [ 7.3850966, 46.9660233 ], + [ 7.3847656, 46.9659874 ], + [ 7.3842959, 46.9659276 ], + [ 7.3838951999999995, 46.9658678 ], + [ 7.3837039, 46.9658677 ], + [ 7.3835471, 46.9658198 ], + [ 7.382938, 46.9655573 ], + [ 7.3825029, 46.9653783 ], + [ 7.3819628, 46.9651038 ], + [ 7.3817543, 46.9650321 ], + [ 7.381563, 46.9650202 ], + [ 7.3814234, 46.9649724 ], + [ 7.381284, 46.9648055 ], + [ 7.3811971, 46.9646863 ], + [ 7.3809018, 46.9643523 ], + [ 7.3806238, 46.9640303 ], + [ 7.3803622, 46.9636725 ], + [ 7.3801712, 46.9633505 ], + [ 7.379963, 46.9629689 ], + [ 7.379859, 46.9627066 ], + [ 7.3797544, 46.9623014 ], + [ 7.3797546, 46.9621224 ], + [ 7.3797548, 46.961908 ], + [ 7.3796163, 46.9616217 ], + [ 7.3793727, 46.9613832 ], + [ 7.3790593, 46.9611804 ], + [ 7.3789469, 46.9610714 ], + [ 7.3789108, 46.9610507 ], + [ 7.3786202, 46.9609387 ], + [ 7.3784759, 46.9607521 ], + [ 7.3782036, 46.9604162 ], + [ 7.3780044, 46.9601674 ], + [ 7.3778953, 46.9600679 ], + [ 7.3774956, 46.959906 ], + [ 7.37726, 46.9598065 ], + [ 7.3767149, 46.9596819 ], + [ 7.3764062, 46.9596319 ], + [ 7.3761887, 46.9595572 ], + [ 7.3759892, 46.9595322 ], + [ 7.3757708, 46.9595072 ], + [ 7.3755352, 46.9594698 ], + [ 7.374972, 46.9594074 ], + [ 7.3743364, 46.9593945 ], + [ 7.3739003, 46.9594191 ], + [ 7.3736105, 46.9594438 ], + [ 7.3733377, 46.9595307 ], + [ 7.3728112, 46.9596796 ], + [ 7.3724834999999995, 46.9597541 ], + [ 7.3722478, 46.9597663 ], + [ 7.3719208, 46.9599154 ], + [ 7.3714484, 46.9600642 ], + [ 7.3710302, 46.9602505 ], + [ 7.3707393, 46.9604244 ], + [ 7.3703942, 46.9605982 ], + [ 7.3701583, 46.960797 ], + [ 7.3700489, 46.960909 ], + [ 7.3700481, 46.9609275 ], + [ 7.369766, 46.961243 ], + [ 7.369756, 46.9613887 ], + [ 7.3696671, 46.9615577 ], + [ 7.3695017, 46.9617762 ], + [ 7.3692123, 46.9620424 ], + [ 7.3691555, 46.9621439 ], + [ 7.3691218, 46.9621726 ], + [ 7.3690304, 46.9623692 ], + [ 7.3689745, 46.96247 ], + [ 7.3688478, 46.9626115 ], + [ 7.368684, 46.962947 ], + [ 7.368502, 46.9632951 ], + [ 7.3682109, 46.9636306 ], + [ 7.3678114, 46.9639039 ], + [ 7.3674291, 46.9642269 ], + [ 7.3671389, 46.9644754 ], + [ 7.366764, 46.9647566 ], + [ 7.3666818, 46.9648616 ], + [ 7.3664236, 46.9651205 ], + [ 7.3663577, 46.9652733 ], + [ 7.3660552, 46.9654244 ], + [ 7.3659731, 46.965436 ], + [ 7.3657257, 46.965622 ], + [ 7.3655835, 46.9656444 ], + [ 7.3655565, 46.9656389 ], + [ 7.3651572, 46.9657299 ], + [ 7.3648483, 46.9658416 ], + [ 7.3646486, 46.9659533 ], + [ 7.3645032, 46.9659533 ], + [ 7.3641583, 46.9659405 ], + [ 7.3637223, 46.9658658 ], + [ 7.3633774, 46.965853 ], + [ 7.3631229, 46.9658156 ], + [ 7.3627963, 46.9656661 ], + [ 7.3625239, 46.9654671 ], + [ 7.3621973, 46.9652804 ], + [ 7.3617804, 46.9651184 ], + [ 7.3611992, 46.9649688 ], + [ 7.3605637, 46.9648192 ], + [ 7.3598191, 46.964682 ], + [ 7.3590563, 46.9645945 ], + [ 7.3590927, 46.9650171 ], + [ 7.3590365, 46.9652448 ], + [ 7.3590357, 46.9657527 ], + [ 7.3589908, 46.9666618 ], + [ 7.3593127, 46.9666774 ], + [ 7.3594612999999995, 46.9667225 ], + [ 7.3595443, 46.9667209 ], + [ 7.3597618, 46.9667707 ], + [ 7.360252, 46.966858 ], + [ 7.3608332, 46.9669828 ], + [ 7.3612141, 46.9670949 ], + [ 7.3617223, 46.9672196 ], + [ 7.3622305, 46.9673816 ], + [ 7.3626302, 46.9674937 ], + [ 7.3629209, 46.9675437 ], + [ 7.3632296, 46.9676185 ], + [ 7.3637198, 46.9677058 ], + [ 7.3641007, 46.9677558 ], + [ 7.3645729, 46.9678306 ], + [ 7.3650632, 46.9678434 ], + [ 7.3653908999999995, 46.9678311 ], + [ 7.365772, 46.9677692 ], + [ 7.3660628, 46.9677571 ], + [ 7.3664258, 46.9677573 ], + [ 7.3668619, 46.9677078 ], + [ 7.3675337, 46.9676957 ], + [ 7.3681152, 46.9676712 ], + [ 7.3687871, 46.9676344 ], + [ 7.3694591, 46.9674732 ], + [ 7.3698592, 46.967349 ], + [ 7.3704951, 46.9671754 ], + [ 7.3706948, 46.9670637 ], + [ 7.3711313, 46.9666909 ], + [ 7.371277, 46.9664673 ], + [ 7.3714045, 46.9662932 ], + [ 7.3716042, 46.9661317 ], + [ 7.3715867, 46.9657463 ], + [ 7.3715691, 46.9653733 ], + [ 7.3714964, 46.9650127 ], + [ 7.371431, 46.9647995 ], + [ 7.3713945, 46.9643949 ], + [ 7.3713774, 46.9643563 ], + [ 7.3712788, 46.9643221 ], + [ 7.3712789, 46.9642483 ], + [ 7.3713455, 46.9642142 ], + [ 7.371339, 46.9641467 ], + [ 7.3712752, 46.9639607 ], + [ 7.371226, 46.9639184 ], + [ 7.3710258, 46.9637815 ], + [ 7.3708445, 46.9636571 ], + [ 7.3707543, 46.9634829 ], + [ 7.3706995, 46.9633461 ], + [ 7.3706818, 46.9630229 ], + [ 7.3706821, 46.9627991 ], + [ 7.3708098, 46.9624883 ], + [ 7.3709737, 46.962103 ], + [ 7.3711916, 46.9618669 ], + [ 7.3713922, 46.9616681 ], + [ 7.3716101, 46.9614692 ], + [ 7.371846, 46.9612954 ], + [ 7.3720465, 46.9611711 ], + [ 7.3722643, 46.961047 ], + [ 7.372519, 46.9609228 ], + [ 7.3729733, 46.9607365 ], + [ 7.3734087, 46.9606373 ], + [ 7.3737725, 46.9605754 ], + [ 7.3741897, 46.9605258 ], + [ 7.3745165, 46.9605011 ], + [ 7.3748984, 46.9605014 ], + [ 7.3752974, 46.9605265 ], + [ 7.37557, 46.9605764 ], + [ 7.3758787, 46.9606512 ], + [ 7.3761693, 46.9607509 ], + [ 7.3764598, 46.9608504 ], + [ 7.3768046, 46.9609624 ], + [ 7.377059, 46.9611118 ], + [ 7.3772945, 46.9612736 ], + [ 7.3774577, 46.9613981 ], + [ 7.377639, 46.9615349 ], + [ 7.3777481, 46.9616469 ], + [ 7.3778933, 46.9618086 ], + [ 7.3780384, 46.9619952 ], + [ 7.3781467, 46.962132 ], + [ 7.3782737, 46.9623434 ], + [ 7.3783533, 46.9624441 ], + [ 7.3784311, 46.9626225 ], + [ 7.3785349, 46.9630158 ], + [ 7.3786217, 46.9632424 ], + [ 7.378674, 46.9634808 ], + [ 7.3789519, 46.9638983 ], + [ 7.379178, 46.9643871 ], + [ 7.379369, 46.9647686 ], + [ 7.3795428, 46.9650072 ], + [ 7.3796821999999995, 46.9651861 ], + [ 7.3799077, 46.9654604 ], + [ 7.3803255, 46.9657349 ], + [ 7.3804649, 46.9658422 ], + [ 7.3807432, 46.9659973 ], + [ 7.381161, 46.9661883 ], + [ 7.3814918, 46.9663076 ], + [ 7.3815329, 46.966306 ], + [ 7.3816306, 46.9663554 ], + [ 7.3819968, 46.966439 ], + [ 7.3823276, 46.9665345 ], + [ 7.382693, 46.9665943 ], + [ 7.3829714, 46.9666422 ], + [ 7.3833195, 46.9666661 ], + [ 7.3836677, 46.9667139 ], + [ 7.3840159, 46.966738 ], + [ 7.3843468, 46.966762 ], + [ 7.384713, 46.9668218 ], + [ 7.3849216, 46.9668457 ], + [ 7.3850784, 46.9668696 ], + [ 7.3855834, 46.9669771 ], + [ 7.3858273, 46.9670607 ], + [ 7.3862442999999995, 46.9671683 ], + [ 7.3864537, 46.967204100000004 ], + [ 7.3867494, 46.9672042 ], + [ 7.3871157, 46.9671925 ], + [ 7.3876027, 46.9671689 ], + [ 7.3882301, 46.9671692 ], + [ 7.3890136, 46.9671576 ], + [ 7.3898842, 46.9671341 ], + [ 7.3905108, 46.9671344 ], + [ 7.3911555, 46.9671227 ], + [ 7.3916951, 46.9671588 ], + [ 7.3921656, 46.9672186 ], + [ 7.3925663, 46.9672544 ], + [ 7.392949, 46.9673142 ], + [ 7.3933841, 46.9674335 ], + [ 7.3938366, 46.9675411 ], + [ 7.3942898, 46.9677081 ], + [ 7.3946724, 46.9678275 ], + [ 7.3949688, 46.967935 ], + [ 7.3950344999999995, 46.9679575 ], + [ 7.3951354, 46.9680047 ], + [ 7.3954877, 46.9681066 ], + [ 7.3957282, 46.9682245 ], + [ 7.3958029, 46.9682356 ], + [ 7.3958218, 46.9682452 ], + [ 7.3961699, 46.9684122 ], + [ 7.3966051, 46.9685793 ], + [ 7.3968136, 46.9686509 ], + [ 7.3973539, 46.9688538 ], + [ 7.3976494, 46.968985 ], + [ 7.3978407, 46.9690565 ], + [ 7.3980328, 46.969152 ], + [ 7.3983457, 46.9692356 ], + [ 7.3986421, 46.9693549 ], + [ 7.398973, 46.9693789 ], + [ 7.3991471, 46.9694027 ], + [ 7.3994953, 46.9694624 ], + [ 7.3996341, 46.9695221 ], + [ 7.3999477, 46.9696533 ], + [ 7.4001916, 46.9696773 ], + [ 7.4005924, 46.9696774 ], + [ 7.4008355, 46.9696656 ], + [ 7.4013587, 46.9696538 ], + [ 7.4016716, 46.969642 ], + [ 7.402038, 46.9695825 ], + [ 7.4023164, 46.9694992 ], + [ 7.4026475, 46.969392 ], + [ 7.4033958, 46.969273 ], + [ 7.4037621, 46.9691778 ], + [ 7.4040751, 46.9691302 ], + [ 7.4046155, 46.969035 ], + [ 7.4051026, 46.9689875 ], + [ 7.4055206, 46.9689638 ], + [ 7.4058171, 46.96894 ], + [ 7.4062352, 46.9689281 ], + [ 7.4068963, 46.9689642 ], + [ 7.4073668999999995, 46.9690119 ], + [ 7.4078547, 46.9690956 ], + [ 7.4085511, 46.9691792 ], + [ 7.4090898, 46.9692819 ], + [ 7.4096128, 46.969406 ], + [ 7.4099438, 46.9695015 ], + [ 7.4101877, 46.9695611 ], + [ 7.4107453, 46.9696685 ], + [ 7.4112495, 46.9698594 ], + [ 7.4114933, 46.9699905 ], + [ 7.4117372, 46.9700621 ], + [ 7.4119285, 46.9700622 ], + [ 7.4119811, 46.9701576 ], + [ 7.4120681, 46.970253 ], + [ 7.4121723, 46.9703365 ], + [ 7.4123645, 46.97042 ], + [ 7.4125033, 46.9704318 ], + [ 7.4127127, 46.9705154 ], + [ 7.4130781, 46.9706227 ], + [ 7.4133918, 46.9707659 ], + [ 7.4139141, 46.9708256 ], + [ 7.4143321, 46.9709091 ], + [ 7.4146278, 46.9709807 ], + [ 7.4148889, 46.9710761 ], + [ 7.4150457, 46.9711357 ], + [ 7.4151853, 46.9711955 ], + [ 7.4153069, 46.9712073 ], + [ 7.4156025, 46.9712552 ], + [ 7.4158645, 46.9712909 ], + [ 7.4161076, 46.9713149 ], + [ 7.4162645, 46.9713386 ], + [ 7.4164739, 46.9713626 ], + [ 7.4167351, 46.9714342 ], + [ 7.4168918999999995, 46.9714699 ], + [ 7.4170307, 46.9714819 ], + [ 7.4171703, 46.9715295 ], + [ 7.4173091, 46.9715535 ], + [ 7.417484, 46.9715774 ], + [ 7.4177272, 46.9715774 ], + [ 7.4180064, 46.9715775 ], + [ 7.4182848, 46.9715656 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "WZV0037", + "country" : "CHE", + "name" : [ + { + "text" : "Wasser- und Zugvogelreservat Wohlensee", + "lang" : "de-CH" + }, + { + "text" : "Réserve d'oiseaux d'eau et de migrateurs Wohlensee", + "lang" : "fr-CH" + }, + { + "text" : "Riserva di uccelli acquatici e migratori Wohlensee", + "lang" : "it-CH" + }, + { + "text" : "Water Bird and Migratory Bird Reserves Wohlensee", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6199773, 47.232715 ], + [ 7.6199714, 47.2325738 ], + [ 7.6199546, 47.232433 ], + [ 7.6199271, 47.232293 ], + [ 7.6198888, 47.2321541 ], + [ 7.6198399, 47.2320168 ], + [ 7.6197806, 47.2318815 ], + [ 7.6197109, 47.2317484 ], + [ 7.6196311, 47.231618 ], + [ 7.6195414, 47.2314906 ], + [ 7.619442, 47.2313666 ], + [ 7.6193332, 47.2312464 ], + [ 7.6192153000000005, 47.2311301 ], + [ 7.6190887, 47.2310182 ], + [ 7.6189537, 47.230911 ], + [ 7.6188106, 47.2308088 ], + [ 7.6186598, 47.2307118 ], + [ 7.6185018, 47.2306203 ], + [ 7.6183369, 47.2305345 ], + [ 7.6181658, 47.2304548 ], + [ 7.6179887, 47.2303812 ], + [ 7.6178062, 47.2303141 ], + [ 7.6176188, 47.2302536 ], + [ 7.617427, 47.2301998 ], + [ 7.6172313, 47.2301529 ], + [ 7.6170324, 47.2301131 ], + [ 7.6168306, 47.2300805 ], + [ 7.6166266, 47.230055 ], + [ 7.6164209, 47.2300369 ], + [ 7.6162141, 47.2300261 ], + [ 7.6160068, 47.2300228 ], + [ 7.6157994, 47.2300268 ], + [ 7.6155927, 47.2300382 ], + [ 7.6153872, 47.2300569 ], + [ 7.6151833, 47.230083 ], + [ 7.6149818, 47.2301163 ], + [ 7.6147831, 47.2301567 ], + [ 7.6145876999999995, 47.2302042 ], + [ 7.6143963, 47.2302585 ], + [ 7.6142093, 47.2303196 ], + [ 7.6140272, 47.2303873 ], + [ 7.6138506, 47.2304614 ], + [ 7.6136800000000004, 47.2305417 ], + [ 7.6135157, 47.2306279 ], + [ 7.6133583, 47.2307199 ], + [ 7.6132082, 47.2308174 ], + [ 7.6130658, 47.23092 ], + [ 7.6129314, 47.2310277 ], + [ 7.6128055, 47.2311399 ], + [ 7.6126884, 47.2312565 ], + [ 7.6125804, 47.2313772 ], + [ 7.6124819, 47.2315015 ], + [ 7.612393, 47.2316291 ], + [ 7.6123141, 47.2317597 ], + [ 7.6122453, 47.231893 ], + [ 7.6121868, 47.2320285 ], + [ 7.6121388, 47.232166 ], + [ 7.6121015, 47.232305 ], + [ 7.6120749, 47.2324451 ], + [ 7.612059, 47.2325859 ], + [ 7.6120541, 47.2327271 ], + [ 7.6120599, 47.2328684 ], + [ 7.6120767, 47.2330092 ], + [ 7.6121042, 47.2331492 ], + [ 7.6121425, 47.233288 ], + [ 7.6121913, 47.2334253 ], + [ 7.6122507, 47.2335607 ], + [ 7.6123203, 47.2336938 ], + [ 7.6124001, 47.2338242 ], + [ 7.6124898, 47.2339515 ], + [ 7.6125892, 47.2340755 ], + [ 7.612698, 47.2341958 ], + [ 7.6128158, 47.2343121 ], + [ 7.6129424, 47.234424 ], + [ 7.6130775, 47.2345312 ], + [ 7.6132206, 47.2346334 ], + [ 7.6133714, 47.2347305 ], + [ 7.6135294, 47.234822 ], + [ 7.6136942, 47.2349077 ], + [ 7.6138654, 47.2349875 ], + [ 7.6140425, 47.235061 ], + [ 7.614225, 47.2351282 ], + [ 7.6144124, 47.2351887 ], + [ 7.6146042, 47.2352425 ], + [ 7.6147998999999995, 47.2352893 ], + [ 7.6149989, 47.2353291 ], + [ 7.6152007, 47.2353618 ], + [ 7.6154047, 47.2353873 ], + [ 7.6156104, 47.2354054 ], + [ 7.6158172, 47.2354161 ], + [ 7.6160246, 47.2354195 ], + [ 7.6162319, 47.2354155 ], + [ 7.6164387, 47.2354041 ], + [ 7.6166442, 47.2353854 ], + [ 7.6168481, 47.2353593 ], + [ 7.6170497, 47.235326 ], + [ 7.6172484, 47.2352856 ], + [ 7.6174438, 47.2352381 ], + [ 7.6176352, 47.2351838 ], + [ 7.6178222, 47.2351226 ], + [ 7.6180043, 47.235055 ], + [ 7.6181809, 47.2349809 ], + [ 7.6183516000000004, 47.2349006 ], + [ 7.6185158, 47.2348143 ], + [ 7.6186732, 47.2347223 ], + [ 7.6188234, 47.2346249 ], + [ 7.6189658, 47.2345222 ], + [ 7.6191001, 47.2344145 ], + [ 7.619226, 47.2343023 ], + [ 7.6193431, 47.2341856 ], + [ 7.6194511, 47.234065 ], + [ 7.6195496, 47.2339407 ], + [ 7.6196385, 47.2338131 ], + [ 7.6197174, 47.2336824 ], + [ 7.6197862, 47.2335491 ], + [ 7.6198447, 47.2334136 ], + [ 7.6198926, 47.2332762 ], + [ 7.6199299, 47.2331372 ], + [ 7.6199565, 47.2329971 ], + [ 7.6199723, 47.2328562 ], + [ 7.6199773, 47.232715 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0038", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Flumenthal", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Flumenthal", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Flumenthal", + "lang" : "it-CH" + }, + { + "text" : "Substation Flumenthal", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7357151, 47.5064242 ], + [ 7.7357778, 47.506408 ], + [ 7.7359561, 47.5064155 ], + [ 7.7361783, 47.5064249 ], + [ 7.7365564, 47.5064409 ], + [ 7.7366277, 47.5064439 ], + [ 7.7368753, 47.5064242 ], + [ 7.7372333, 47.5063956 ], + [ 7.7373087, 47.5063889 ], + [ 7.7375275, 47.5063694 ], + [ 7.7381898, 47.5063532 ], + [ 7.7382485, 47.5063681 ], + [ 7.7383291, 47.5062756 ], + [ 7.7382627, 47.506297 ], + [ 7.7375259, 47.5063231 ], + [ 7.7372087, 47.5063563 ], + [ 7.7366131, 47.5063987 ], + [ 7.7365372, 47.506395499999996 ], + [ 7.7358058, 47.5063647 ], + [ 7.7357913, 47.5063584 ], + [ 7.7357457, 47.5063388 ], + [ 7.7357151, 47.5064242 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns165", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Rüschgraben", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Rüschgraben", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Rüschgraben", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Rüschgraben", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6597804, 47.4011435 ], + [ 7.660028, 47.40112 ], + [ 7.6605231, 47.4010732 ], + [ 7.6612731, 47.4010022 ], + [ 7.6615186, 47.4009764 ], + [ 7.661896, 47.4009384 ], + [ 7.6622819, 47.4008914 ], + [ 7.662611, 47.4008416 ], + [ 7.6629553, 47.4007611 ], + [ 7.6633602, 47.4006472 ], + [ 7.6636614, 47.400564 ], + [ 7.6641116, 47.4004221 ], + [ 7.6645955, 47.4002385 ], + [ 7.6648785, 47.4001289 ], + [ 7.6651083, 47.4000029 ], + [ 7.6653203, 47.3996383 ], + [ 7.6655959, 47.3991643 ], + [ 7.6656959, 47.3989922 ], + [ 7.6655801, 47.3989528 ], + [ 7.6651416999999995, 47.3988038 ], + [ 7.6648124, 47.398689 ], + [ 7.6644917, 47.398679 ], + [ 7.6639715, 47.3987403 ], + [ 7.6633759999999995, 47.3989337 ], + [ 7.6632247, 47.3990017 ], + [ 7.6629788, 47.3990745 ], + [ 7.6621898, 47.399244 ], + [ 7.6619757, 47.3992853 ], + [ 7.6617272, 47.3993622 ], + [ 7.6609362999999995, 47.3995895 ], + [ 7.6608331, 47.3996392 ], + [ 7.6608593, 47.3996637 ], + [ 7.6607218, 47.3997472 ], + [ 7.6605449, 47.3998577 ], + [ 7.6604477, 47.3999283 ], + [ 7.6604214, 47.399949 ], + [ 7.6602239, 47.4001083 ], + [ 7.6601023, 47.4002067 ], + [ 7.6600762, 47.4002312 ], + [ 7.6600536, 47.4002573 ], + [ 7.6600347, 47.4002847 ], + [ 7.6600195, 47.4003132 ], + [ 7.6600028, 47.4003605 ], + [ 7.6599967, 47.4003796 ], + [ 7.6599022, 47.4003612 ], + [ 7.659806, 47.4005927 ], + [ 7.6597127, 47.4009186 ], + [ 7.6597604, 47.4011114 ], + [ 7.6597804, 47.4011435 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns255", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Balsberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Balsberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Balsberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Balsberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4336067, 47.4097509 ], + [ 7.4337705, 47.4097438 ], + [ 7.4339683, 47.4097538 ], + [ 7.4340187, 47.4097567 ], + [ 7.4342631, 47.4097484 ], + [ 7.4346023, 47.4097023 ], + [ 7.434952, 47.4096255 ], + [ 7.4354101, 47.4095559 ], + [ 7.4356007, 47.4095426 ], + [ 7.436038, 47.4094774 ], + [ 7.4364596, 47.4094156 ], + [ 7.436682, 47.409379 ], + [ 7.4369083, 47.4093466 ], + [ 7.4370695, 47.4093516 ], + [ 7.4372856, 47.4093222 ], + [ 7.4374784, 47.4092746 ], + [ 7.437768, 47.409267 ], + [ 7.4380073, 47.4092527 ], + [ 7.4382717, 47.4092111 ], + [ 7.438421, 47.409145 ], + [ 7.4385085, 47.4090965 ], + [ 7.4386497, 47.409087 ], + [ 7.4387734, 47.4090712 ], + [ 7.4388973, 47.4090258 ], + [ 7.4389859, 47.4089693 ], + [ 7.4391139, 47.4089632 ], + [ 7.4393934999999995, 47.4089745 ], + [ 7.439617, 47.4089782 ], + [ 7.4398944, 47.4089692 ], + [ 7.4401876, 47.4089456 ], + [ 7.4404923, 47.408896 ], + [ 7.440741, 47.4088559 ], + [ 7.4409889, 47.4088102 ], + [ 7.4412542, 47.4087366 ], + [ 7.4414725, 47.4087079 ], + [ 7.441653, 47.4087228 ], + [ 7.4418296, 47.4086428 ], + [ 7.441983, 47.4085738 ], + [ 7.4422701, 47.4085903 ], + [ 7.4423016, 47.4085934 ], + [ 7.4423513, 47.4085981 ], + [ 7.4426234000000004, 47.4086254 ], + [ 7.4428336, 47.4086105 ], + [ 7.4432751, 47.4086219 ], + [ 7.4435946, 47.4086609 ], + [ 7.4438455, 47.4086501 ], + [ 7.4440191, 47.4086007 ], + [ 7.4442978, 47.4085395 ], + [ 7.4446742, 47.4084541 ], + [ 7.4446768, 47.4083765 ], + [ 7.4447456, 47.4083444 ], + [ 7.4450166, 47.4082585 ], + [ 7.4453921, 47.4082368 ], + [ 7.4458186, 47.4081716 ], + [ 7.4461078, 47.4081257 ], + [ 7.446405, 47.4081196 ], + [ 7.446823, 47.408129 ], + [ 7.4472417, 47.4080948 ], + [ 7.4476977, 47.4080676 ], + [ 7.4482344, 47.4080459 ], + [ 7.4486532, 47.4080184 ], + [ 7.4487268, 47.4080365 ], + [ 7.4501772, 47.4078045 ], + [ 7.4508366, 47.4077414 ], + [ 7.4512056, 47.4077082 ], + [ 7.4516802, 47.4076769 ], + [ 7.4521982, 47.4076211 ], + [ 7.4527252, 47.4075363 ], + [ 7.4532656, 47.4074389 ], + [ 7.4538492, 47.4072941 ], + [ 7.4542608999999995, 47.4071401 ], + [ 7.4546557, 47.4069612 ], + [ 7.4552506, 47.4066915 ], + [ 7.4558438, 47.4063842 ], + [ 7.4558122000000004, 47.4058829 ], + [ 7.4559058, 47.4058625 ], + [ 7.4560194, 47.4058443 ], + [ 7.4564479, 47.4057482 ], + [ 7.4565583, 47.4057229 ], + [ 7.4566792, 47.4057003 ], + [ 7.4568069999999995, 47.4056873 ], + [ 7.4569298, 47.4056959 ], + [ 7.4570449, 47.4057071 ], + [ 7.4571248, 47.4057046 ], + [ 7.4571806, 47.4056575 ], + [ 7.4572232, 47.4056001 ], + [ 7.4572272, 47.4055798 ], + [ 7.4572172, 47.4055483 ], + [ 7.457165, 47.4055144 ], + [ 7.4569364, 47.4053725 ], + [ 7.4567241, 47.4052421 ], + [ 7.4565291, 47.4051418 ], + [ 7.4565012, 47.4051338 ], + [ 7.4564443, 47.4051174 ], + [ 7.456366, 47.4051138 ], + [ 7.4561691, 47.405164 ], + [ 7.4559231, 47.4052245 ], + [ 7.4556859, 47.4052823 ], + [ 7.4553782, 47.4053376 ], + [ 7.4550947, 47.405384 ], + [ 7.454831, 47.4054157 ], + [ 7.4545528, 47.4054233 ], + [ 7.4543269, 47.40541 ], + [ 7.4540891, 47.4053792 ], + [ 7.4537991, 47.4053326 ], + [ 7.45351, 47.4052773 ], + [ 7.453276, 47.4052281 ], + [ 7.4531783, 47.4051985 ], + [ 7.453033, 47.4051527 ], + [ 7.4527898, 47.405073 ], + [ 7.4525392, 47.4049932 ], + [ 7.4523866, 47.4049574 ], + [ 7.4521238, 47.404899 ], + [ 7.4519898, 47.4048806 ], + [ 7.4518649, 47.4048463 ], + [ 7.4517488, 47.4048016 ], + [ 7.4516233, 47.4047737 ], + [ 7.4515004, 47.4047396 ], + [ 7.4513216, 47.4046899 ], + [ 7.4511735, 47.404653 ], + [ 7.4511723, 47.4046426 ], + [ 7.4509227, 47.404583099999996 ], + [ 7.4504718, 47.4044812 ], + [ 7.4501664, 47.4044188 ], + [ 7.4498904, 47.4043389 ], + [ 7.4495993, 47.4042487 ], + [ 7.4492858, 47.4041202 ], + [ 7.4490494, 47.4040122 ], + [ 7.4488101, 47.4038895 ], + [ 7.4486399, 47.4037557 ], + [ 7.4485432, 47.4036567 ], + [ 7.4484764, 47.4035736 ], + [ 7.4482458, 47.4035125 ], + [ 7.4480599, 47.4034349 ], + [ 7.4479799, 47.4034292 ], + [ 7.4478453, 47.4033584 ], + [ 7.4477409, 47.4032972 ], + [ 7.4475938, 47.4032372 ], + [ 7.4474535, 47.4031463 ], + [ 7.4470454, 47.4030143 ], + [ 7.4467943, 47.4032583 ], + [ 7.4467228, 47.403215 ], + [ 7.4467025, 47.4032025 ], + [ 7.4468388, 47.4030658 ], + [ 7.4468799, 47.4029855 ], + [ 7.4469695, 47.4028118 ], + [ 7.4471042, 47.4027046 ], + [ 7.4472866, 47.4026603 ], + [ 7.4474165, 47.4026762 ], + [ 7.4475625, 47.402729 ], + [ 7.4479053, 47.4026393 ], + [ 7.4481953, 47.4025542 ], + [ 7.4482135, 47.4025488 ], + [ 7.448222, 47.4025118 ], + [ 7.4482827, 47.4024011 ], + [ 7.4483912, 47.4022372 ], + [ 7.4484947, 47.4020716 ], + [ 7.4485922, 47.4019059 ], + [ 7.4486191, 47.4017466 ], + [ 7.4486026, 47.401581 ], + [ 7.4485609, 47.4014627 ], + [ 7.448467, 47.4013496 ], + [ 7.4483339, 47.4012406 ], + [ 7.4481664, 47.4011618 ], + [ 7.4479158, 47.4010841 ], + [ 7.4477147, 47.4010727 ], + [ 7.4474884, 47.4010767 ], + [ 7.4471578, 47.4011213 ], + [ 7.4469055, 47.4011807 ], + [ 7.4466809, 47.4012658 ], + [ 7.4464235, 47.4013709 ], + [ 7.4456984, 47.4017862 ], + [ 7.445378, 47.401965 ], + [ 7.4451542, 47.4020781 ], + [ 7.4447989, 47.4022796 ], + [ 7.4446553, 47.4023654 ], + [ 7.4444378, 47.4024791 ], + [ 7.4442268, 47.4025691 ], + [ 7.4441801, 47.4025834 ], + [ 7.4439919, 47.4026396 ], + [ 7.4437469, 47.4026745 ], + [ 7.443498, 47.4026919 ], + [ 7.4433723, 47.4026822 ], + [ 7.44337, 47.4027698 ], + [ 7.4433282, 47.4028557 ], + [ 7.4433071, 47.4028986 ], + [ 7.4432893, 47.4029343 ], + [ 7.4430886, 47.4029853 ], + [ 7.4429649, 47.4029753 ], + [ 7.4424311, 47.403567699999996 ], + [ 7.4420679, 47.403563 ], + [ 7.4419749, 47.4036684 ], + [ 7.4418635, 47.4037894 ], + [ 7.4417485, 47.4039239 ], + [ 7.4416902, 47.4040006 ], + [ 7.441638, 47.4040528 ], + [ 7.4415343, 47.4041422 ], + [ 7.4414949, 47.4041877 ], + [ 7.4415287, 47.4043757 ], + [ 7.4418173, 47.4047362 ], + [ 7.4418845, 47.4048252 ], + [ 7.4419061, 47.4048531 ], + [ 7.4420074, 47.4049274 ], + [ 7.4420036, 47.4049299 ], + [ 7.4421219, 47.4050257 ], + [ 7.4421353, 47.4050375 ], + [ 7.4422056, 47.4050994 ], + [ 7.4422499, 47.4051383 ], + [ 7.4420988, 47.4052555 ], + [ 7.441807, 47.4054607 ], + [ 7.441755, 47.4054956 ], + [ 7.4415881, 47.405624 ], + [ 7.4414099, 47.4057526 ], + [ 7.4412345, 47.405866 ], + [ 7.4411224, 47.4059386 ], + [ 7.4409939, 47.4060183 ], + [ 7.4409106, 47.4060756 ], + [ 7.4408735, 47.4061034 ], + [ 7.4408214, 47.4061425 ], + [ 7.4407708, 47.4061884 ], + [ 7.4406601, 47.4063222 ], + [ 7.4405895, 47.4064101 ], + [ 7.4405096, 47.4065043 ], + [ 7.4404333, 47.4065858 ], + [ 7.4405389, 47.4066831 ], + [ 7.4406143, 47.4067684 ], + [ 7.4407195, 47.4068876 ], + [ 7.4403186, 47.4069612 ], + [ 7.4401367, 47.4069916 ], + [ 7.4400895, 47.4070115 ], + [ 7.439923, 47.4071064 ], + [ 7.4398691, 47.4071378 ], + [ 7.4396958, 47.4071699 ], + [ 7.4395727, 47.4071927 ], + [ 7.4395637, 47.4071955 ], + [ 7.4394569, 47.4072617 ], + [ 7.4390222, 47.4074817 ], + [ 7.4388478, 47.4075924 ], + [ 7.4387908, 47.4076179 ], + [ 7.4386165, 47.4076807 ], + [ 7.4386014, 47.4076905 ], + [ 7.4385231, 47.4077237 ], + [ 7.4384879, 47.4077415 ], + [ 7.4384384, 47.407772 ], + [ 7.4384604, 47.4077957 ], + [ 7.4385099, 47.4078426 ], + [ 7.4384117, 47.4078621 ], + [ 7.4383061, 47.4078769 ], + [ 7.4381084, 47.4078757 ], + [ 7.437979, 47.4078765 ], + [ 7.4378269, 47.4078679 ], + [ 7.4376444, 47.407869 ], + [ 7.4375285, 47.4078739 ], + [ 7.437385, 47.4078986 ], + [ 7.4371175, 47.4079633 ], + [ 7.4369713, 47.407989 ], + [ 7.4366883, 47.4080407 ], + [ 7.4363863, 47.4080994 ], + [ 7.4361152, 47.4081424 ], + [ 7.4358969, 47.408184 ], + [ 7.4356825, 47.4082211 ], + [ 7.4354867, 47.4082657 ], + [ 7.4353021, 47.4083163 ], + [ 7.4351263, 47.4083757 ], + [ 7.4350284, 47.4084056 ], + [ 7.4349307, 47.4084236 ], + [ 7.4346316, 47.4084596 ], + [ 7.4343644, 47.4084946 ], + [ 7.4339732, 47.4085473 ], + [ 7.433631, 47.4085978 ], + [ 7.4333044, 47.408639 ], + [ 7.4330237, 47.408675 ], + [ 7.432944, 47.4087009 ], + [ 7.4328575, 47.4087197 ], + [ 7.4328112, 47.4087286 ], + [ 7.4327532, 47.4087321 ], + [ 7.432738, 47.4087214 ], + [ 7.4323366, 47.4088121 ], + [ 7.432305, 47.4088192 ], + [ 7.4320617, 47.4087989 ], + [ 7.4319577, 47.4087903 ], + [ 7.4319384, 47.4089456 ], + [ 7.4319251, 47.4090591 ], + [ 7.4319278, 47.4091533 ], + [ 7.4319293, 47.4092949 ], + [ 7.4319492, 47.4094242 ], + [ 7.4320343, 47.4095927 ], + [ 7.4321186, 47.409636 ], + [ 7.4321827, 47.409687 ], + [ 7.4321893, 47.4097423 ], + [ 7.4321804, 47.4098027 ], + [ 7.4321428, 47.4099084 ], + [ 7.4321138, 47.4100072 ], + [ 7.4321147, 47.4100737 ], + [ 7.4321477, 47.4101717 ], + [ 7.432183, 47.4102549 ], + [ 7.432237, 47.4103316 ], + [ 7.4323044, 47.4105044 ], + [ 7.432412, 47.4104194 ], + [ 7.4324854, 47.4103452 ], + [ 7.4325521, 47.4102735 ], + [ 7.4325842, 47.4102039 ], + [ 7.4326481, 47.410106 ], + [ 7.4327726, 47.4100073 ], + [ 7.43293, 47.409943 ], + [ 7.4330926999999996, 47.4098972 ], + [ 7.4332299, 47.4098444 ], + [ 7.4333864, 47.4097887 ], + [ 7.4336067, 47.4097509 ] + ], + [ + [ 7.444255, 47.4035076 ], + [ 7.4442438, 47.4034982 ], + [ 7.4442332, 47.4034885 ], + [ 7.4442232, 47.4034786 ], + [ 7.444214, 47.4034683 ], + [ 7.4442053999999995, 47.4034578 ], + [ 7.4441974, 47.4034471 ], + [ 7.4441901999999995, 47.4034361 ], + [ 7.4441836, 47.4034249 ], + [ 7.4441778, 47.4034136 ], + [ 7.444074, 47.4031961 ], + [ 7.4443265, 47.4029297 ], + [ 7.4445513, 47.4026917 ], + [ 7.4445773, 47.4026959 ], + [ 7.4446031999999995, 47.4027007 ], + [ 7.4446288, 47.402706 ], + [ 7.4446542, 47.4027118 ], + [ 7.4446793, 47.4027181 ], + [ 7.4447042, 47.4027249 ], + [ 7.4447287, 47.4027322 ], + [ 7.4447529, 47.40274 ], + [ 7.4447768, 47.4027483 ], + [ 7.4448017, 47.4027576 ], + [ 7.4448261, 47.4027673 ], + [ 7.4448501, 47.4027776 ], + [ 7.4448736, 47.4027884 ], + [ 7.4448965, 47.4027997 ], + [ 7.444919, 47.4028115 ], + [ 7.4449409, 47.4028237 ], + [ 7.4449496, 47.4028287 ], + [ 7.4449583, 47.4028337 ], + [ 7.4449667999999996, 47.4028387 ], + [ 7.4449753, 47.4028439 ], + [ 7.4454723, 47.4031504 ], + [ 7.4454798, 47.4031554 ], + [ 7.4454866, 47.4031607 ], + [ 7.4454928, 47.4031664 ], + [ 7.4457116, 47.4033011 ], + [ 7.4457212, 47.4033051 ], + [ 7.4457303, 47.4033096 ], + [ 7.4457389, 47.4033146 ], + [ 7.445747, 47.40332 ], + [ 7.4458262, 47.4033639 ], + [ 7.4458439, 47.4033733 ], + [ 7.4458622, 47.4033822 ], + [ 7.4458811, 47.4033906 ], + [ 7.4459004, 47.4033984 ], + [ 7.4459202, 47.4034057 ], + [ 7.4459405, 47.4034124 ], + [ 7.4459611, 47.4034185 ], + [ 7.4459821999999996, 47.4034239 ], + [ 7.4460035, 47.4034288 ], + [ 7.4460252, 47.4034331 ], + [ 7.446047, 47.4034367 ], + [ 7.4460687, 47.4034396 ], + [ 7.4460905, 47.4034419 ], + [ 7.4461123, 47.4034436 ], + [ 7.4461343, 47.4034446 ], + [ 7.4461564, 47.403445 ], + [ 7.4461784, 47.4034449 ], + [ 7.4462004, 47.403444 ], + [ 7.4462224, 47.4034426 ], + [ 7.4462442, 47.4034405 ], + [ 7.4462659, 47.4034379 ], + [ 7.4462874, 47.4034346 ], + [ 7.4463686, 47.4034893 ], + [ 7.4451183, 47.4043375 ], + [ 7.4445759, 47.4040329 ], + [ 7.4447645, 47.4038925 ], + [ 7.4448139, 47.4038558 ], + [ 7.444666, 47.4037607 ], + [ 7.4446564, 47.4037566 ], + [ 7.4446472, 47.4037521 ], + [ 7.4446385, 47.4037471 ], + [ 7.444292, 47.4035336 ], + [ 7.4442791, 47.4035253 ], + [ 7.4442668, 47.4035166 ], + [ 7.444255, 47.4035076 ] + ], + [ + [ 7.4410519, 47.4060639 ], + [ 7.4411172, 47.40611 ], + [ 7.4415338, 47.4064045 ], + [ 7.4418015, 47.4065937 ], + [ 7.4418157, 47.4066059 ], + [ 7.4416112, 47.4066678 ], + [ 7.4415618, 47.4066843 ], + [ 7.4414077, 47.4067183 ], + [ 7.4413402, 47.4067366 ], + [ 7.441143, 47.4065785 ], + [ 7.4409494, 47.4064234 ], + [ 7.4407839, 47.4062975 ], + [ 7.4407429, 47.4062663 ], + [ 7.4409491, 47.4061309 ], + [ 7.4410519, 47.4060639 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns024", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Meistelberg - Bohlberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Meistelberg - Bohlberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Meistelberg - Bohlberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Meistelberg - Bohlberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.0429835, 46.1874753 ], + [ 6.0429789, 46.1875167 ], + [ 6.0415663, 46.1876937 ], + [ 6.0402909, 46.188263 ], + [ 6.0394262, 46.189128 ], + [ 6.0391039, 46.1901569 ], + [ 6.0392859, 46.1908573 ], + [ 6.0392688, 46.1909119 ], + [ 6.039538, 46.1919481 ], + [ 6.0403577, 46.1928339 ], + [ 6.0404167, 46.1928624 ], + [ 6.0404623, 46.1929116 ], + [ 6.0405283, 46.1929434 ], + [ 6.0406746, 46.1935065 ], + [ 6.0414943, 46.1943923 ], + [ 6.0427399, 46.1949929 ], + [ 6.0442215, 46.1952166 ], + [ 6.0457137, 46.1950296 ], + [ 6.0469892, 46.1944603 ], + [ 6.0478539, 46.1935953 ], + [ 6.0481395, 46.1926828 ], + [ 6.0484318, 46.1923904 ], + [ 6.0486908, 46.1915628 ], + [ 6.049523, 46.1913102 ], + [ 6.0518636, 46.1902535 ], + [ 6.0528579, 46.1896067 ], + [ 6.0534697, 46.1887614 ], + [ 6.0536237, 46.1878213 ], + [ 6.0533011, 46.1869021 ], + [ 6.0525415, 46.1861167 ], + [ 6.0516429, 46.1854701 ], + [ 6.0506108, 46.1849395 ], + [ 6.0493861, 46.1846716 ], + [ 6.0493841, 46.1846716 ], + [ 6.0494369, 46.1843255 ], + [ 6.0490089, 46.1833168 ], + [ 6.0480583, 46.1824983 ], + [ 6.0467295, 46.1819943 ], + [ 6.0466629, 46.1819798 ], + [ 6.0454582, 46.1818564 ], + [ 6.0442577, 46.1819982 ], + [ 6.0431793, 46.182391 ], + [ 6.0423289, 46.1829965 ], + [ 6.0417901, 46.183755 ], + [ 6.0417772, 46.1837839 ], + [ 6.0416188, 46.1848305 ], + [ 6.0420487, 46.1858395 ], + [ 6.0430016, 46.1866577 ], + [ 6.0434508, 46.1868274 ], + [ 6.0429835, 46.1874753 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-16", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.1668842999999995, 46.7998484 ], + [ 7.1676598, 46.7996422 ], + [ 7.1677676, 46.7997021 ], + [ 7.168178, 46.7996589 ], + [ 7.1684534, 46.7994312 ], + [ 7.1685651, 46.799342 ], + [ 7.1689875, 46.7988282 ], + [ 7.1693503, 46.7982422 ], + [ 7.1694879, 46.7977174 ], + [ 7.1694888, 46.797532 ], + [ 7.1695044, 46.7974188 ], + [ 7.1694914, 46.7970275 ], + [ 7.1692819, 46.7969344 ], + [ 7.1691479, 46.7967693 ], + [ 7.1688952, 46.7963362 ], + [ 7.1682828, 46.7958714 ], + [ 7.1679086, 46.7957573 ], + [ 7.1678045, 46.7955923 ], + [ 7.167745, 46.7954892 ], + [ 7.1683321, 46.7950272 ], + [ 7.1688294, 46.7945136 ], + [ 7.1690102, 46.7943287 ], + [ 7.1693554, 46.7942678 ], + [ 7.1693425, 46.7938559 ], + [ 7.1694041, 46.7935265 ], + [ 7.1694798, 46.7933723 ], + [ 7.1692709, 46.7931864 ], + [ 7.1691966, 46.7930421 ], + [ 7.1691353, 46.7926259 ], + [ 7.1690042, 46.792568 ], + [ 7.1691262, 46.7921461 ], + [ 7.1692763, 46.7921053 ], + [ 7.1693675, 46.7918584 ], + [ 7.1697281, 46.7917048 ], + [ 7.169804, 46.7915197 ], + [ 7.1698204, 46.7912314 ], + [ 7.1697612, 46.7910768 ], + [ 7.1695253, 46.7909447 ], + [ 7.1694124, 46.7909295 ], + [ 7.1694116, 46.7909291 ], + [ 7.1694083, 46.790929 ], + [ 7.1687575, 46.7909509 ], + [ 7.1685626, 46.7909504 ], + [ 7.1683687, 46.7907543 ], + [ 7.1682342, 46.7906613 ], + [ 7.1681141, 46.7907022 ], + [ 7.1679936, 46.7908152 ], + [ 7.1677082, 46.7909278 ], + [ 7.1673781, 46.7909785 ], + [ 7.1672727, 46.7910709 ], + [ 7.1671226, 46.791122 ], + [ 7.1669277, 46.7911215 ], + [ 7.1667482, 46.791049 ], + [ 7.1666291, 46.790884 ], + [ 7.1665398, 46.7907602 ], + [ 7.1665254, 46.7906366 ], + [ 7.166511, 46.7905233 ], + [ 7.1664515, 46.7904305 ], + [ 7.1663318, 46.7903787 ], + [ 7.1661075, 46.790275199999996 ], + [ 7.166093, 46.7901825 ], + [ 7.1661833, 46.7901107 ], + [ 7.1662771, 46.7900019 ], + [ 7.166421, 46.7898658 ], + [ 7.1664552, 46.7896892 ], + [ 7.1663961, 46.7895958 ], + [ 7.1662311, 46.7895445 ], + [ 7.1658863, 46.7895539 ], + [ 7.1656314, 46.7895636 ], + [ 7.1654665, 46.7895529 ], + [ 7.1653531, 46.7895784 ], + [ 7.1651209, 46.7897168 ], + [ 7.1649561, 46.7896958 ], + [ 7.1647915, 46.7896336 ], + [ 7.1645973, 46.7894993 ], + [ 7.164448, 46.7893754 ], + [ 7.1644188, 46.7892312 ], + [ 7.1644792, 46.7891489 ], + [ 7.1647944, 46.7890673 ], + [ 7.1651697, 46.788955 ], + [ 7.1653504, 46.7887907 ], + [ 7.1653063, 46.7886258 ], + [ 7.1662865, 46.7874646 ], + [ 7.1659727, 46.7872785 ], + [ 7.1662733, 46.7871042 ], + [ 7.1664384, 46.7870737 ], + [ 7.166469, 46.7869502 ], + [ 7.1663948, 46.7867853 ], + [ 7.1661397000000004, 46.7868465 ], + [ 7.1654346, 46.786958 ], + [ 7.1649546, 46.7870289 ], + [ 7.1648949, 46.7869773 ], + [ 7.1652202, 46.7862871 ], + [ 7.1651558, 46.7857629 ], + [ 7.1641433, 46.7844116 ], + [ 7.1629776, 46.7837292 ], + [ 7.161825, 46.7834071 ], + [ 7.161361, 46.7832618 ], + [ 7.1609716, 46.7832094 ], + [ 7.160612, 46.7831776 ], + [ 7.1600569, 46.783258599999996 ], + [ 7.159847, 46.7832684 ], + [ 7.1593816, 46.7834217 ], + [ 7.1589168, 46.7834412 ], + [ 7.1586616, 46.7835126 ], + [ 7.158511, 46.7836564 ], + [ 7.158061, 46.7837068 ], + [ 7.1574755, 46.7838804 ], + [ 7.1574432, 46.7843436 ], + [ 7.1571719, 46.784621 ], + [ 7.1568117, 46.7847025 ], + [ 7.156584, 46.7852476 ], + [ 7.156404, 46.7852781 ], + [ 7.155697, 46.7857499 ], + [ 7.1555155, 46.7860687 ], + [ 7.1551985, 46.7864901 ], + [ 7.1551653, 46.7871078 ], + [ 7.1547579, 46.7876113 ], + [ 7.1557132, 46.7883715 ], + [ 7.1556463, 46.788518 ], + [ 7.1554545, 46.7888078 ], + [ 7.1551253, 46.7891191 ], + [ 7.1549118, 46.7895179 ], + [ 7.1548979, 46.7901711 ], + [ 7.1547813, 46.7902289 ], + [ 7.1545808, 46.7901703 ], + [ 7.1542776, 46.789538 ], + [ 7.1540468, 46.7892035 ], + [ 7.1538796, 46.7888402 ], + [ 7.1539131, 46.7884991 ], + [ 7.1541795, 46.7880715 ], + [ 7.15417, 46.7878609 ], + [ 7.1539386, 46.7876644 ], + [ 7.1534217, 46.7874816 ], + [ 7.1526297, 46.7873562 ], + [ 7.1521011, 46.7873911 ], + [ 7.1515621, 46.7873898 ], + [ 7.1510013, 46.7875045 ], + [ 7.1504514, 46.7875902 ], + [ 7.1498689, 46.7878065 ], + [ 7.1489785, 46.7883196 ], + [ 7.1486701, 46.7886672 ], + [ 7.1482664, 46.7890654 ], + [ 7.1482551, 46.7892033 ], + [ 7.1477873, 46.7897175 ], + [ 7.1475208, 46.7901378 ], + [ 7.1474568, 46.790261 ], + [ 7.1469702, 46.7903324 ], + [ 7.1467059, 46.7903462 ], + [ 7.1464209, 46.7902656 ], + [ 7.1461638, 46.7900973 ], + [ 7.1460806, 46.7899529 ], + [ 7.1459977, 46.7897508 ], + [ 7.1460214, 46.7892606 ], + [ 7.1458739, 46.789305 ], + [ 7.1448588, 46.7890894 ], + [ 7.1445886, 46.7890486 ], + [ 7.144481, 46.7893895 ], + [ 7.1443522999999995, 46.7897231 ], + [ 7.1443185, 46.7901222 ], + [ 7.1443384, 46.7903473 ], + [ 7.1446119, 46.7905876 ], + [ 7.1450762, 46.7907122 ], + [ 7.1457831, 46.790939 ], + [ 7.1462898, 46.7910565 ], + [ 7.146806, 46.7913772 ], + [ 7.1471971, 46.791371 ], + [ 7.1476839, 46.7912633 ], + [ 7.1479914, 46.7910827 ], + [ 7.1484158, 46.7907789 ], + [ 7.1489563, 46.7905044 ], + [ 7.1492746, 46.790273 ], + [ 7.1499119, 46.7900349 ], + [ 7.1503022, 46.7898183 ], + [ 7.1505855, 46.789705 ], + [ 7.1510219, 46.7896169 ], + [ 7.1513715, 46.7894726 ], + [ 7.1517422, 46.789333 ], + [ 7.1521415, 46.7892619 ], + [ 7.152351, 46.7893489 ], + [ 7.1523502, 46.7894932 ], + [ 7.1521608, 46.7895936 ], + [ 7.1518448, 46.7897803 ], + [ 7.151886, 46.79012 ], + [ 7.1519791, 46.7904904 ], + [ 7.152157, 46.7908247 ], + [ 7.152799, 46.7913345 ], + [ 7.1531783, 46.7915532 ], + [ 7.1533468, 46.7916771 ], + [ 7.1537065, 46.7916054 ], + [ 7.1540337, 46.7917006 ], + [ 7.1543719, 46.7917014 ], + [ 7.1547218, 46.7914918 ], + [ 7.1554731, 46.7913267 ], + [ 7.1558438, 46.791168 ], + [ 7.1560783, 46.7907911 ], + [ 7.1562189, 46.790189 ], + [ 7.1563898, 46.789841 ], + [ 7.1563056, 46.7897754 ], + [ 7.1566357, 46.7892971 ], + [ 7.1566516, 46.7891271 ], + [ 7.1576502, 46.7899213 ], + [ 7.1578764, 46.7899478 ], + [ 7.1584596, 46.7901953 ], + [ 7.1587044, 46.7902607 ], + [ 7.1587992, 46.7901573 ], + [ 7.1588376, 46.7900279 ], + [ 7.1587505, 46.7899035 ], + [ 7.1580065, 46.7896777 ], + [ 7.1576532, 46.7893385 ], + [ 7.1575793, 46.7890405 ], + [ 7.1575995, 46.7887459 ], + [ 7.1579288, 46.7883895 ], + [ 7.1583948, 46.788123 ], + [ 7.1586591, 46.7880718 ], + [ 7.1593378, 46.7880735 ], + [ 7.159658, 46.788139 ], + [ 7.1597684, 46.7881373 ], + [ 7.1598192, 46.7880983 ], + [ 7.1597687, 46.7880634 ], + [ 7.1596549, 46.7880457 ], + [ 7.1594019, 46.7880234 ], + [ 7.1590874, 46.7879714 ], + [ 7.1589025, 46.7879439 ], + [ 7.1586748, 46.7879173 ], + [ 7.1583775, 46.7879122 ], + [ 7.1582385, 46.7878684 ], + [ 7.1582026, 46.7878176 ], + [ 7.1582419999999995, 46.7877473 ], + [ 7.1582618, 46.7877003 ], + [ 7.1584185, 46.7876202 ], + [ 7.1585897, 46.7875569 ], + [ 7.1587855, 46.7874735 ], + [ 7.1589178, 46.7873866 ], + [ 7.1588252, 46.7873629 ], + [ 7.1587518, 46.7873728 ], + [ 7.1577975, 46.7865081 ], + [ 7.1578445, 46.7864546 ], + [ 7.1584391, 46.7859189 ], + [ 7.158832, 46.785557 ], + [ 7.159079, 46.7853772 ], + [ 7.1591502, 46.7853254 ], + [ 7.1593121, 46.7852905 ], + [ 7.1596157, 46.785225 ], + [ 7.160123, 46.785219 ], + [ 7.1606402, 46.7853219 ], + [ 7.1609248, 46.785475 ], + [ 7.1611993, 46.7856872 ], + [ 7.1613246, 46.7858172 ], + [ 7.1614819, 46.7860571 ], + [ 7.1615541, 46.7864057 ], + [ 7.1616998, 46.7868489 ], + [ 7.1618873, 46.7873865 ], + [ 7.1621769, 46.7882658 ], + [ 7.1622363, 46.788682 ], + [ 7.1621998, 46.788856 ], + [ 7.1622111, 46.7889609 ], + [ 7.1622572, 46.7891718 ], + [ 7.1622564, 46.7893258 ], + [ 7.1621622, 46.7894342 ], + [ 7.1620078, 46.789487199999996 ], + [ 7.1616889, 46.7895432 ], + [ 7.1615353, 46.7895914 ], + [ 7.1607059, 46.7897217 ], + [ 7.1611543, 46.7913309 ], + [ 7.1614213, 46.7919936 ], + [ 7.1615411, 46.7920351 ], + [ 7.1617961, 46.7920048 ], + [ 7.1620509, 46.7920055 ], + [ 7.1621855, 46.7920676 ], + [ 7.16235, 46.7921504 ], + [ 7.1623648, 46.7921916 ], + [ 7.1623494, 46.7922739 ], + [ 7.1622137, 46.7924177 ], + [ 7.1619523, 46.7929341 ], + [ 7.161129, 46.7934447 ], + [ 7.1610976, 46.7937123 ], + [ 7.1610518, 46.7938667 ], + [ 7.1609011, 46.7940208 ], + [ 7.1606913, 46.7940099 ], + [ 7.1607651, 46.7942264 ], + [ 7.1606149, 46.7942878 ], + [ 7.1604502, 46.7942359 ], + [ 7.1602111, 46.7940911 ], + [ 7.1602235, 46.7945957 ], + [ 7.1602073, 46.7948119 ], + [ 7.1602024, 46.7957591 ], + [ 7.1602466, 46.7959034 ], + [ 7.1603057, 46.7960683 ], + [ 7.1605887, 46.7964294 ], + [ 7.161007, 46.796729 ], + [ 7.1612256, 46.7968287 ], + [ 7.16151, 46.7970254 ], + [ 7.1617526, 46.7971131 ], + [ 7.161953, 46.7972007 ], + [ 7.1621747, 46.7972593 ], + [ 7.1624387, 46.797289 ], + [ 7.1627343, 46.7973695 ], + [ 7.1630297, 46.7974719 ], + [ 7.1633573, 46.7974872 ], + [ 7.1637371, 46.797626 ], + [ 7.1638103, 46.7977641 ], + [ 7.1638146, 46.797804 ], + [ 7.1638204, 46.7978585 ], + [ 7.1638822, 46.7978719 ], + [ 7.1642352, 46.7980673 ], + [ 7.1644952, 46.7979868 ], + [ 7.1646014, 46.7979952 ], + [ 7.1647545, 46.7980604 ], + [ 7.1648132, 46.7981254 ], + [ 7.1648599, 46.7982065 ], + [ 7.1649006, 46.7982125 ], + [ 7.165143, 46.7982477 ], + [ 7.1653552, 46.7982888 ], + [ 7.165579, 46.7983623 ], + [ 7.1657435, 46.7985004 ], + [ 7.1658102, 46.7985735 ], + [ 7.1658844, 46.7986548 ], + [ 7.165925, 46.7987682 ], + [ 7.1659309, 46.7987846 ], + [ 7.1659445, 46.7988014 ], + [ 7.1659895, 46.7988576 ], + [ 7.1660477, 46.7990477 ], + [ 7.1663197, 46.7993063 ], + [ 7.1666581, 46.7999037 ], + [ 7.1668842999999995, 46.7998484 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "WZV0020", + "country" : "CHE", + "name" : [ + { + "text" : "Wasser- und Zugvogelreservat Lac de Pérolles", + "lang" : "de-CH" + }, + { + "text" : "Réserve d'oiseaux d'eau et de migrateurs Lac de Pérolles", + "lang" : "fr-CH" + }, + { + "text" : "Riserva di uccelli acquatici e migratori Lac de Pérolles", + "lang" : "it-CH" + }, + { + "text" : "Water Bird and Migratory Bird Reserves Lac de Pérolles", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.9418095, 46.9976378 ], + [ 6.9418316, 46.9977209 ], + [ 6.9419263, 46.9978849 ], + [ 6.942066, 46.9980332 ], + [ 6.9422453, 46.99816 ], + [ 6.9424573, 46.9982604 ], + [ 6.9425472, 46.998287 ], + [ 6.9425877, 46.9983062 ], + [ 6.9428251, 46.9983767 ], + [ 6.9430782, 46.998414 ], + [ 6.9432587, 46.9984281 ], + [ 6.9435228, 46.9984305 ], + [ 6.9437822, 46.9983967 ], + [ 6.9440265, 46.9983281 ], + [ 6.9440867, 46.9983005 ], + [ 6.9442317, 46.9982541 ], + [ 6.9444395, 46.9981495 ], + [ 6.9446135, 46.9980191 ], + [ 6.9447469, 46.9978679 ], + [ 6.9448346, 46.9977019 ], + [ 6.9448732, 46.9975273 ], + [ 6.9448612, 46.997351 ], + [ 6.9448577, 46.9973344 ], + [ 6.9448549, 46.9973221 ], + [ 6.9448511, 46.9973056 ], + [ 6.9448481, 46.9972934 ], + [ 6.9448439, 46.9972769 ], + [ 6.9448388, 46.997258 ], + [ 6.9448282, 46.9972213 ], + [ 6.94482, 46.9971948 ], + [ 6.9448079, 46.9971582 ], + [ 6.9447985, 46.9971319 ], + [ 6.9447847, 46.9970956 ], + [ 6.9447731, 46.997067 ], + [ 6.9447543, 46.9970233 ], + [ 6.94474, 46.9969923 ], + [ 6.9447189, 46.9969491 ], + [ 6.944703, 46.9969184 ], + [ 6.9446796, 46.9968758 ], + [ 6.9446631, 46.9968474 ], + [ 6.9446399, 46.996809 ], + [ 6.9446221999999995, 46.9967812 ], + [ 6.9445971, 46.9967435 ], + [ 6.9445781, 46.9967161 ], + [ 6.9445511, 46.9966789 ], + [ 6.9445315, 46.996653 ], + [ 6.9445056, 46.9966201 ], + [ 6.9444864, 46.9965964 ], + [ 6.9444590999999996, 46.9965641 ], + [ 6.9444388, 46.9965409 ], + [ 6.944432, 46.9965333 ], + [ 6.9444463, 46.9963922 ], + [ 6.9444387, 46.9963515 ], + [ 6.9444416, 46.9963215 ], + [ 6.9444087, 46.9961471 ], + [ 6.9443268, 46.9959804 ], + [ 6.9441991, 46.9958278 ], + [ 6.9440304, 46.9956952 ], + [ 6.9438272, 46.9955875 ], + [ 6.9433018, 46.9953615 ], + [ 6.943071, 46.9952827 ], + [ 6.9428221, 46.9952362 ], + [ 6.9425647999999995, 46.9952239 ], + [ 6.942309, 46.9952461 ], + [ 6.9420644, 46.9953022 ], + [ 6.9418405, 46.9953898 ], + [ 6.9417492, 46.9954441 ], + [ 6.9415387, 46.9954915 ], + [ 6.9413154, 46.9955775 ], + [ 6.9411208, 46.9956915 ], + [ 6.9409621999999995, 46.9958291 ], + [ 6.9408693, 46.9959534 ], + [ 6.9408487999999995, 46.9959731 ], + [ 6.9407426999999995, 46.9961343 ], + [ 6.9406848, 46.9963066 ], + [ 6.9406772, 46.9964834 ], + [ 6.9406804, 46.9965142 ], + [ 6.9406593999999995, 46.9966816 ], + [ 6.9406872, 46.9968551 ], + [ 6.9407634, 46.9970217 ], + [ 6.9408852, 46.997175 ], + [ 6.941048, 46.9973094 ], + [ 6.9412457, 46.9974198 ], + [ 6.9414708, 46.9975019 ], + [ 6.9416876, 46.9975471 ], + [ 6.9416942, 46.9975539 ], + [ 6.9418095, 46.9976378 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "NE09", + "country" : "CHE", + "name" : [ + { + "text" : "Hôpital Pourtalès", + "lang" : "de-CH" + }, + { + "text" : "Hôpital Pourtalès", + "lang" : "fr-CH" + }, + { + "text" : "Hôpital Pourtalès", + "lang" : "it-CH" + }, + { + "text" : "Hôpital Pourtalès", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "regulationExemption" : "YES", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Police Neuchâteloise", + "lang" : "de-CH" + }, + { + "text" : "Police Neuchâteloise", + "lang" : "fr-CH" + }, + { + "text" : "Police Neuchâteloise", + "lang" : "it-CH" + }, + { + "text" : "Police Neuchâteloise", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "PN - Rens et opérations", + "lang" : "de-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "fr-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "it-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "PN - Rens et opérations", + "lang" : "de-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "fr-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "it-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ne.ch/autorites/DESC/PONE/Pages/Drones.aspx", + "email" : "Police.Neuchateloise@ne.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.517563299999999, 46.8839413 ], + [ 8.5177735, 46.8840772 ], + [ 8.5178648, 46.8842122 ], + [ 8.5178993, 46.8843367 ], + [ 8.5179935, 46.8844944 ], + [ 8.5180677, 46.8846366 ], + [ 8.5181351, 46.8848106 ], + [ 8.5181307, 46.8849993 ], + [ 8.5181554, 46.885123899999996 ], + [ 8.5181845, 46.8853506 ], + [ 8.5181934, 46.8855095 ], + [ 8.5182119, 46.8856955 ], + [ 8.5182473, 46.8859063 ], + [ 8.5182746, 46.8860014 ], + [ 8.5182995, 46.8861373 ], + [ 8.5183188, 46.8863597 ], + [ 8.5183196, 46.8864846 ], + [ 8.5182818, 46.8866032 ], + [ 8.5182568, 46.8867058 ], + [ 8.5182688, 46.8868941 ], + [ 8.51827, 46.887035 ], + [ 8.5182454, 46.8871603 ], + [ 8.51824, 46.8872966 ], + [ 8.5182486, 46.8874396 ], + [ 8.5182586, 46.8875729 ], + [ 8.5182598, 46.8875917 ], + [ 8.5182526, 46.8877621 ], + [ 8.5182702, 46.8879051 ], + [ 8.5183975, 46.8880783 ], + [ 8.5184989, 46.8882245 ], + [ 8.5185654, 46.8883099 ], + [ 8.5186828, 46.8884378 ], + [ 8.5188319, 46.8885154 ], + [ 8.5189546, 46.8885819 ], + [ 8.5190647, 46.8886713 ], + [ 8.5190573, 46.8888758 ], + [ 8.5190192, 46.8889786 ], + [ 8.518987, 46.8890925 ], + [ 8.5189565, 46.8892474 ], + [ 8.5189903, 46.8893765 ], + [ 8.5190578, 46.8894733 ], + [ 8.5190813, 46.8895411 ], + [ 8.5190924, 46.8896432 ], + [ 8.5191105, 46.889727 ], + [ 8.5191353, 46.8898584 ], + [ 8.5191783, 46.8899192 ], + [ 8.5192189, 46.8900208 ], + [ 8.5192862, 46.8901062 ], + [ 8.5193368, 46.8902123 ], + [ 8.5193229, 46.8903784 ], + [ 8.5193499, 46.8904576 ], + [ 8.5193737, 46.8905413 ], + [ 8.5194243, 46.8906496 ], + [ 8.5194688, 46.8907852 ], + [ 8.5195203, 46.8909368 ], + [ 8.5195446, 46.8910456 ], + [ 8.5195898, 46.8912153 ], + [ 8.5196322, 46.8914464 ], + [ 8.5196343, 46.8916349 ], + [ 8.5196197, 46.8918056 ], + [ 8.5196045, 46.8919466 ], + [ 8.5195576, 46.8921403 ], + [ 8.5194439, 46.892319 ], + [ 8.5192591, 46.8925531 ], + [ 8.5191193, 46.8927776 ], + [ 8.5191035, 46.8928506 ], + [ 8.5190557, 46.8929603 ], + [ 8.5190339, 46.8930628 ], + [ 8.5190079, 46.893154 ], + [ 8.5190196, 46.8932901 ], + [ 8.5191043, 46.8934639 ], + [ 8.5191714, 46.8935765 ], + [ 8.519245399999999, 46.8936665 ], + [ 8.5193384, 46.8937674 ], + [ 8.5194618, 46.893868 ], + [ 8.5195623, 46.8939689 ], + [ 8.5195563, 46.8939985 ], + [ 8.5195808, 46.8941117 ], + [ 8.5196905, 46.8942283 ], + [ 8.5197811, 46.8943249 ], + [ 8.519858, 46.8944374 ], + [ 8.5199823, 46.8945834 ], + [ 8.5200652, 46.8946278 ], + [ 8.5200762, 46.894723 ], + [ 8.5200933, 46.8948022 ], + [ 8.520101499999999, 46.8948817 ], + [ 8.5201123, 46.8950133 ], + [ 8.5201371, 46.8951037 ], + [ 8.5201382, 46.8951992 ], + [ 8.5201661, 46.8953646 ], + [ 8.5202067, 46.8954254 ], + [ 8.5202736, 46.8955268 ], + [ 8.5203243, 46.8956011 ], + [ 8.5204177, 46.8957179 ], + [ 8.5205017, 46.895819 ], + [ 8.5206014, 46.8958813 ], + [ 8.5207012, 46.8959481 ], + [ 8.5208078, 46.8960307 ], + [ 8.5208904, 46.8960592 ], + [ 8.5209508, 46.8960811 ], + [ 8.5210241, 46.8961369 ], + [ 8.5211073, 46.8961971 ], + [ 8.5211246, 46.8962831 ], + [ 8.521076, 46.8963519 ], + [ 8.5210039, 46.8963984 ], + [ 8.5209086, 46.8964297 ], + [ 8.5208955, 46.8964339 ], + [ 8.520823, 46.8964576 ], + [ 8.5207243, 46.8964861 ], + [ 8.5205595, 46.8965293 ], + [ 8.520486, 46.8965449 ], + [ 8.5203463, 46.8966162 ], + [ 8.5202703, 46.8966695 ], + [ 8.5202213, 46.8967201 ], + [ 8.5202227, 46.8967881 ], + [ 8.5202827, 46.8968396 ], + [ 8.5203227, 46.8968663 ], + [ 8.5204056, 46.8969107 ], + [ 8.5204552, 46.8969327 ], + [ 8.5205483, 46.8969496 ], + [ 8.5206704, 46.8969866 ], + [ 8.5207865, 46.8970078 ], + [ 8.5209184, 46.89704 ], + [ 8.521085, 46.8971287 ], + [ 8.5211949, 46.8972068 ], + [ 8.5212617, 46.8973081 ], + [ 8.5213028, 46.8973939 ], + [ 8.5213702, 46.8975224 ], + [ 8.5214041, 46.8976196 ], + [ 8.5214223, 46.8977489 ], + [ 8.5214566, 46.8979029 ], + [ 8.521475, 46.8980436 ], + [ 8.5214862, 46.8981524 ], + [ 8.5215207, 46.8982769 ], + [ 8.5215557, 46.898424 ], + [ 8.5216127, 46.8984846 ], + [ 8.521696, 46.8985471 ], + [ 8.5217723, 46.8985915 ], + [ 8.5218565, 46.898738 ], + [ 8.5218813, 46.8989126 ], + [ 8.5219263, 46.8990666 ], + [ 8.5219609, 46.8992365 ], + [ 8.5219958, 46.8993836 ], + [ 8.5220141, 46.8995197 ], + [ 8.5220557, 46.8996713 ], + [ 8.5220899, 46.8997799 ], + [ 8.5221074, 46.899875 ], + [ 8.5221255, 46.9000406 ], + [ 8.5221772, 46.9002036 ], + [ 8.522211, 46.9002939 ], + [ 8.5222452, 46.9004025 ], + [ 8.5222798, 46.9004929 ], + [ 8.5223304, 46.9005989 ], + [ 8.522381, 46.9007074 ], + [ 8.5224152, 46.9007796 ], + [ 8.522465799999999, 46.900847 ], + [ 8.5225253, 46.9009098 ], + [ 8.5225928, 46.9010044 ], + [ 8.5226601, 46.9011239 ], + [ 8.5227107, 46.9012367 ], + [ 8.5227849, 46.9013766 ], + [ 8.5228296, 46.9014782 ], + [ 8.5228803, 46.9016321 ], + [ 8.5229225, 46.9018133 ], + [ 8.5229669, 46.9019829 ], + [ 8.5229909, 46.9020326 ], + [ 8.5230752, 46.902186 ], + [ 8.5231101, 46.9023264 ], + [ 8.5231442, 46.902435 ], + [ 8.5232118, 46.9025294 ], + [ 8.5232782, 46.9025695 ], + [ 8.5233128, 46.9026985 ], + [ 8.5233972, 46.9028564 ], + [ 8.5234578, 46.9030145 ], + [ 8.5234942, 46.9031083 ], + [ 8.5235411, 46.9031187 ], + [ 8.5237638, 46.9031346 ], + [ 8.5239285, 46.9031676 ], + [ 8.5240355, 46.9032234 ], + [ 8.5240612, 46.9032795 ], + [ 8.5240861, 46.9033356 ], + [ 8.5241123, 46.9034538 ], + [ 8.5241214, 46.9036225 ], + [ 8.524181, 46.9038079 ], + [ 8.5243719, 46.9039589 ], + [ 8.5245871, 46.904138 ], + [ 8.5248274, 46.9042944 ], + [ 8.5251168, 46.90449 ], + [ 8.5253661, 46.9047253 ], + [ 8.5256396, 46.9049434 ], + [ 8.5258964, 46.9051899 ], + [ 8.5260295, 46.9053636 ], + [ 8.5261545, 46.9055376 ], + [ 8.5263298, 46.9057674 ], + [ 8.5264621, 46.9058625 ], + [ 8.5266685, 46.9059235 ], + [ 8.5269074, 46.9059729 ], + [ 8.5271632, 46.906045 ], + [ 8.527452, 46.9062125 ], + [ 8.527709, 46.9063406 ], + [ 8.5278161, 46.9064471 ], + [ 8.5278995, 46.9065535 ], + [ 8.527884, 46.906638 ], + [ 8.5278364, 46.9067564 ], + [ 8.5277305, 46.9068751 ], + [ 8.5275996, 46.9070163 ], + [ 8.527577, 46.9071571 ], + [ 8.5277187, 46.9073873 ], + [ 8.5278932, 46.9076171 ], + [ 8.5281029, 46.907965 ], + [ 8.5283345, 46.9081779 ], + [ 8.5285419, 46.9082949 ], + [ 8.5287807, 46.9083783 ], + [ 8.5290123, 46.9084673 ], + [ 8.529235, 46.9085281 ], + [ 8.5295155, 46.9086449 ], + [ 8.5296978, 46.9087735 ], + [ 8.529806, 46.9089306 ], + [ 8.52993, 46.9089751 ], + [ 8.5301198, 46.9090305 ], + [ 8.5303998, 46.9090799 ], + [ 8.5307628, 46.9091794 ], + [ 8.5311258, 46.9093183 ], + [ 8.5314567, 46.9094913 ], + [ 8.5317617, 46.9096418 ], + [ 8.5321675, 46.90991 ], + [ 8.5326891, 46.9102621 ], + [ 8.5329197, 46.9103061 ], + [ 8.533183, 46.9102992 ], + [ 8.5334705, 46.910236 ], + [ 8.5338318, 46.9101724 ], + [ 8.5342178, 46.910148 ], + [ 8.5346054, 46.9102475 ], + [ 8.5348118, 46.9103479 ], + [ 8.5349691, 46.9104203 ], + [ 8.5352333, 46.9104979 ], + [ 8.5354552, 46.9105587 ], + [ 8.535646, 46.9106591 ], + [ 8.535827, 46.9107258 ], + [ 8.5360406, 46.9106966 ], + [ 8.5362627, 46.9106449 ], + [ 8.536442, 46.9105484 ], + [ 8.5366232, 46.9105025 ], + [ 8.5368778, 46.9105126 ], + [ 8.5376622, 46.9108353 ], + [ 8.5379265, 46.9109634 ], + [ 8.5380669, 46.9110079 ], + [ 8.5382567, 46.9110182 ], + [ 8.538494, 46.9109496 ], + [ 8.5387569, 46.9109258 ], + [ 8.5389136, 46.9109251 ], + [ 8.5390456, 46.9109582 ], + [ 8.5391369, 46.9110534 ], + [ 8.5393106, 46.9111989 ], + [ 8.5394759, 46.9112994 ], + [ 8.5396411, 46.9113099 ], + [ 8.5398138, 46.9112922 ], + [ 8.5400433, 46.9112405 ], + [ 8.5403149, 46.9112392 ], + [ 8.540488, 46.9112778 ], + [ 8.5405866, 46.9112885 ], + [ 8.5406771, 46.91126 ], + [ 8.5408741, 46.9112253 ], + [ 8.5410547, 46.9111851 ], + [ 8.5412608, 46.9112347 ], + [ 8.5415247, 46.9113404 ], + [ 8.5420035, 46.9115632 ], + [ 8.5422518, 46.911669 ], + [ 8.5424083, 46.9116963 ], + [ 8.5425646, 46.9117182 ], + [ 8.5426891, 46.911785 ], + [ 8.5427965, 46.9118634 ], + [ 8.5429702, 46.912008900000004 ], + [ 8.5431774, 46.9121091 ], + [ 8.5434081, 46.9121981 ], + [ 8.5438038, 46.9122862 ], + [ 8.5441995, 46.9123405 ], + [ 8.5447261, 46.9123718 ], + [ 8.5450303, 46.9123986 ], + [ 8.5452936, 46.9123973 ], + [ 8.5455564, 46.9123679 ], + [ 8.5458687, 46.9123158 ], + [ 8.5461653, 46.9123312 ], + [ 8.54651, 46.9122565 ], + [ 8.5468056, 46.9122269 ], + [ 8.5471339, 46.9121915 ], + [ 8.5473562, 46.9122298 ], + [ 8.5476206, 46.9122793 ], + [ 8.5478429, 46.912357 ], + [ 8.5480088, 46.9124462 ], + [ 8.548248, 46.9125857 ], + [ 8.5484793, 46.9126578 ], + [ 8.5487924, 46.9126844 ], + [ 8.5491293, 46.9127053 ], + [ 8.5495166, 46.912709 ], + [ 8.5497952, 46.9126515 ], + [ 8.5501648, 46.9125877 ], + [ 8.5505593, 46.9125409 ], + [ 8.5509863, 46.9125163 ], + [ 8.5513156, 46.9125316 ], + [ 8.5516201, 46.9125358 ], + [ 8.5518257, 46.9125572 ], + [ 8.5520065, 46.9125338 ], + [ 8.5521872, 46.9124654 ], + [ 8.552441, 46.9123574 ], + [ 8.5527108, 46.9121928 ], + [ 8.5530458, 46.9120056 ], + [ 8.5533402, 46.9118409 ], + [ 8.5535454, 46.9117668 ], + [ 8.5538403, 46.9116641 ], + [ 8.5540697, 46.9116066 ], + [ 8.5542013, 46.9115836 ], + [ 8.5544145, 46.9114981 ], + [ 8.5546604, 46.9114069 ], + [ 8.5548977, 46.9112989 ], + [ 8.5551193, 46.911264 ], + [ 8.5554483, 46.9113018 ], + [ 8.5558439, 46.9113842 ], + [ 8.5562569, 46.9115173 ], + [ 8.5564791, 46.9115499 ], + [ 8.5565361, 46.9115272 ], + [ 8.5566831, 46.9114196 ], + [ 8.5568881, 46.9113341 ], + [ 8.5572156, 46.91122 ], + [ 8.5575524, 46.9111228 ], + [ 8.5579622, 46.9110194 ], + [ 8.5583654, 46.9110006 ], + [ 8.5587597, 46.9109424 ], + [ 8.559104, 46.9108507 ], + [ 8.5594074, 46.9107648 ], + [ 8.5597349, 46.9106113 ], + [ 8.5599799, 46.9104807 ], + [ 8.5603565, 46.9102819 ], + [ 8.5606756, 46.9101227 ], + [ 8.5610193, 46.910003 ], + [ 8.5613396, 46.9099 ], + [ 8.5615445, 46.9098484 ], + [ 8.561733199999999, 46.9098475 ], + [ 8.5619468, 46.9098239 ], + [ 8.5620705, 46.909812 ], + [ 8.562226, 46.909755 ], + [ 8.5622829, 46.9096535 ], + [ 8.5622819, 46.9095634 ], + [ 8.5621158, 46.9094292 ], + [ 8.5619584, 46.9093568 ], + [ 8.5618917, 46.9092671 ], + [ 8.5617924, 46.9091495 ], + [ 8.5616502, 46.908942 ], + [ 8.5614755, 46.9087064 ], + [ 8.5613326, 46.9084259 ], + [ 8.5613394, 46.9082795 ], + [ 8.5612884, 46.9081166 ], + [ 8.5611538, 46.9078415 ], + [ 8.5609945, 46.9075609 ], + [ 8.5609018, 46.9073251 ], + [ 8.5608108, 46.9072467 ], + [ 8.5605037, 46.90704 ], + [ 8.5600162, 46.9067555 ], + [ 8.5597513, 46.9066047 ], + [ 8.5596094, 46.906448 ], + [ 8.5595751, 46.9062963 ], + [ 8.5596067, 46.906161 ], + [ 8.5596382, 46.9060201 ], + [ 8.5596125, 46.9058909 ], + [ 8.5595119, 46.905745 ], + [ 8.5592808, 46.9055998 ], + [ 8.5591467, 46.9053868 ], + [ 8.5590876, 46.9052295 ], + [ 8.5590521, 46.9049821 ], + [ 8.5590826, 46.9047512 ], + [ 8.5591541, 46.9045201 ], + [ 8.5591853, 46.9043287 ], + [ 8.5592162, 46.9041541 ], + [ 8.5591896, 46.9039798 ], + [ 8.5590888, 46.9037102 ], + [ 8.5589793, 46.9035362 ], + [ 8.5588368, 46.9032332 ], + [ 8.5587121, 46.9030763 ], + [ 8.5585055, 46.9030041 ], + [ 8.5585538, 46.9029194 ], + [ 8.5586439, 46.902874 ], + [ 8.5587666, 46.9028171 ], + [ 8.5588726, 46.902749 ], + [ 8.5589298, 46.9026588 ], + [ 8.5590671, 46.902393599999996 ], + [ 8.5591698, 46.9020105 ], + [ 8.5592198, 46.9016957 ], + [ 8.5590394, 46.9016975 ], + [ 8.5587236, 46.9017006 ], + [ 8.5585427, 46.9016407 ], + [ 8.5584283, 46.9015801 ], + [ 8.5582494, 46.9014591 ], + [ 8.5581059, 46.9013446 ], + [ 8.5578618, 46.9011246 ], + [ 8.5577404, 46.9009693 ], + [ 8.5576144, 46.9007854 ], + [ 8.5574031, 46.9005653 ], + [ 8.5572972, 46.9002481 ], + [ 8.5571097, 46.8999102 ], + [ 8.5570272, 46.8996506 ], + [ 8.5569886, 46.8994946 ], + [ 8.5569612, 46.899278699999996 ], + [ 8.5568638, 46.8988938 ], + [ 8.5567207, 46.8985246 ], + [ 8.5566013, 46.8981862 ], + [ 8.556550099999999, 46.8978934 ], + [ 8.5565456, 46.8976772 ], + [ 8.5565192, 46.8975077 ], + [ 8.5565179, 46.897446 ], + [ 8.5565166, 46.8973843 ], + [ 8.5565039, 46.8973278 ], + [ 8.556474399999999, 46.8972894 ], + [ 8.5563783, 46.8971614 ], + [ 8.5562171, 46.8970629 ], + [ 8.5560359, 46.8969875 ], + [ 8.5558551, 46.8969738 ], + [ 8.5557191, 46.8969004 ], + [ 8.5556264, 46.8968217 ], + [ 8.5555275, 46.8967185 ], + [ 8.5554209, 46.8965617 ], + [ 8.5553062, 46.8964888 ], + [ 8.5551917, 46.8963899 ], + [ 8.5550337, 46.8962449 ], + [ 8.5549412, 46.8960944 ], + [ 8.5548918, 46.8959675 ], + [ 8.5548089, 46.8958491 ], + [ 8.5547267, 46.8957195 ], + [ 8.5546868, 46.8956167 ], + [ 8.5545994, 46.8954759 ], + [ 8.5545693, 46.8954084 ], + [ 8.5545452, 46.895354 ], + [ 8.554515, 46.8952818 ], + [ 8.5544667, 46.8952049 ], + [ 8.5544218, 46.8950989 ], + [ 8.5542239, 46.8950493 ], + [ 8.5541152, 46.8950279 ], + [ 8.5540112, 46.8949541 ], + [ 8.5538735, 46.8948011 ], + [ 8.5537419, 46.8947061 ], + [ 8.5536513, 46.8946457 ], + [ 8.5535775, 46.8944918 ], + [ 8.5535569, 46.894405 ], + [ 8.5535478, 46.8943257 ], + [ 8.5535698, 46.8942791 ], + [ 8.553658800000001, 46.8942165 ], + [ 8.5537309, 46.8941761 ], + [ 8.5538822, 46.8941526 ], + [ 8.5540539, 46.8941246 ], + [ 8.5542866, 46.8941177 ], + [ 8.5544671, 46.894116 ], + [ 8.5546926, 46.8941138 ], + [ 8.5548459, 46.8940725 ], + [ 8.5549042, 46.8941166 ], + [ 8.5551525, 46.8943017 ], + [ 8.55537, 46.8944269 ], + [ 8.5554992, 46.8945675 ], + [ 8.5557587, 46.8947782 ], + [ 8.5559481, 46.8949304 ], + [ 8.5562249, 46.8951086 ], + [ 8.5563384, 46.8952839 ], + [ 8.5564384, 46.8955153 ], + [ 8.5566827, 46.8957046 ], + [ 8.5568922, 46.8958793 ], + [ 8.5571272, 46.8960184 ], + [ 8.557336, 46.8961223 ], + [ 8.5575448, 46.8962617 ], + [ 8.5575597, 46.8962659 ], + [ 8.557565199999999, 46.8962169 ], + [ 8.557686, 46.8960307 ], + [ 8.5578657, 46.8958723 ], + [ 8.5580367, 46.895697 ], + [ 8.5581422, 46.8955614 ], + [ 8.5581703, 46.8954567 ], + [ 8.5583124, 46.8954662 ], + [ 8.558508, 46.8954834 ], + [ 8.5586391, 46.8955139 ], + [ 8.5587795, 46.8955634 ], + [ 8.5589006, 46.8955878 ], + [ 8.5589658, 46.8956061 ], + [ 8.5591056, 46.8956238 ], + [ 8.5591988, 46.8956485 ], + [ 8.5593296, 46.8956662 ], + [ 8.5594784, 46.8956839 ], + [ 8.5596087, 46.8957145 ], + [ 8.5597113, 46.8957198 ], + [ 8.5598604, 46.8957501 ], + [ 8.5600096, 46.8957869 ], + [ 8.5600749, 46.8958117 ], + [ 8.5601971, 46.8958487 ], + [ 8.5602809, 46.8958925 ], + [ 8.5603475, 46.8959428 ], + [ 8.5603816, 46.8959637 ], + [ 8.560422299999999, 46.8959867 ], + [ 8.5605452, 46.8960611 ], + [ 8.5606412, 46.8961005 ], + [ 8.5607129, 46.8961175 ], + [ 8.5607695, 46.896155 ], + [ 8.5608359, 46.8961926 ], + [ 8.5609104, 46.8962238 ], + [ 8.5609651, 46.8962551 ], + [ 8.5610396, 46.8962863 ], + [ 8.561130200000001, 46.8963038 ], + [ 8.5612269, 46.8963365 ], + [ 8.5612659, 46.8963603 ], + [ 8.561332, 46.8963851 ], + [ 8.56138, 46.8964022 ], + [ 8.5614514, 46.8964064 ], + [ 8.5615442, 46.8964089 ], + [ 8.5616106, 46.8964078 ], + [ 8.5616757, 46.8963817 ], + [ 8.5617213, 46.8963686 ], + [ 8.5617854, 46.8963361 ], + [ 8.5618407, 46.8963101 ], + [ 8.5618964, 46.8963095 ], + [ 8.5619153, 46.8963094 ], + [ 8.5619522, 46.896309 ], + [ 8.5620081, 46.8963148 ], + [ 8.5620917, 46.8963139 ], + [ 8.5621476, 46.8963199 ], + [ 8.5621755, 46.8963196 ], + [ 8.5622223, 46.8963191 ], + [ 8.5622865, 46.8962929 ], + [ 8.562369499999999, 46.8962603 ], + [ 8.5624701, 46.8962085 ], + [ 8.562572, 46.8961755 ], + [ 8.5626917, 46.8961361 ], + [ 8.5627656, 46.8960973 ], + [ 8.5628764, 46.8960643 ], + [ 8.5630048, 46.8960058 ], + [ 8.5630784, 46.8959541 ], + [ 8.5631425, 46.8959217 ], + [ 8.5632348, 46.8959017 ], + [ 8.5632989, 46.8958691 ], + [ 8.5633538, 46.8958305 ], + [ 8.5634367, 46.8957915 ], + [ 8.5634919, 46.8957655 ], + [ 8.5635383, 46.8957459 ], + [ 8.5636121, 46.8957452 ], + [ 8.5637233, 46.8957313 ], + [ 8.5638438, 46.8957238 ], + [ 8.5639374, 46.8957292 ], + [ 8.564021, 46.8957284 ], + [ 8.5640767, 46.8957215 ], + [ 8.5641412, 46.8957081 ], + [ 8.5642246, 46.8956946 ], + [ 8.5643637, 46.8956804 ], + [ 8.5644092, 46.8956609 ], + [ 8.5644646, 46.8956413 ], + [ 8.5645479, 46.8956214 ], + [ 8.5645938, 46.8955827 ], + [ 8.5645731, 46.8954938 ], + [ 8.5645351, 46.8954433 ], + [ 8.5644783, 46.8953928 ], + [ 8.5644398, 46.895355 ], + [ 8.5644212, 46.8953297 ], + [ 8.5643831, 46.8952729 ], + [ 8.5643636, 46.8952412 ], + [ 8.5642983, 46.8951824 ], + [ 8.564213, 46.8951409 ], + [ 8.5641184, 46.8950908 ], + [ 8.5639966, 46.8950283 ], + [ 8.5639307, 46.8949781 ], + [ 8.5638459, 46.8949216 ], + [ 8.5637242, 46.8948719 ], + [ 8.563526, 46.8947274 ], + [ 8.5634502, 46.8946327 ], + [ 8.5633648, 46.894550699999996 ], + [ 8.5633355, 46.894481 ], + [ 8.5632964, 46.8944177 ], + [ 8.5632772, 46.8943606 ], + [ 8.5632663, 46.8943098 ], + [ 8.5632558, 46.8942399 ], + [ 8.563255, 46.894201699999996 ], + [ 8.5632455, 46.8941763 ], + [ 8.5632255, 46.8941256 ], + [ 8.563216, 46.8941001 ], + [ 8.5631873, 46.8940623 ], + [ 8.563131, 46.8940374 ], + [ 8.5630941, 46.8940378 ], + [ 8.5630387, 46.8940573 ], + [ 8.5629555, 46.8940772 ], + [ 8.5628911, 46.894097 ], + [ 8.5628168, 46.8941105 ], + [ 8.562752, 46.8941112 ], + [ 8.5626773, 46.8941119 ], + [ 8.5626124, 46.8941061 ], + [ 8.5625375, 46.8940942 ], + [ 8.562444, 46.8940505 ], + [ 8.5623967, 46.8940255 ], + [ 8.5623222, 46.8939944 ], + [ 8.5622744, 46.8939439 ], + [ 8.5622087, 46.8939 ], + [ 8.562180099999999, 46.8938684 ], + [ 8.5621237, 46.8938372 ], + [ 8.5620952, 46.8938056 ], + [ 8.5620665, 46.8937678 ], + [ 8.5620191, 46.8937363 ], + [ 8.5619915, 46.8937111 ], + [ 8.5619435, 46.8936543 ], + [ 8.5618498, 46.8936043 ], + [ 8.5618114, 46.8935729 ], + [ 8.5617737, 46.893535 ], + [ 8.5617265, 46.8935101 ], + [ 8.5616799, 46.8934786 ], + [ 8.5616234, 46.8934474 ], + [ 8.561567, 46.893416 ], + [ 8.5615297, 46.8933974 ], + [ 8.561547000000001, 46.893359 ], + [ 8.561565, 46.8933206 ], + [ 8.561564, 46.8932698 ], + [ 8.5615346, 46.8932 ], + [ 8.561533, 46.8931236 ], + [ 8.5615042, 46.8930793 ], + [ 8.5614751, 46.8930222 ], + [ 8.5614369, 46.892958899999996 ], + [ 8.5613805, 46.8929277 ], + [ 8.5613145, 46.8929081 ], + [ 8.5612386, 46.8928896 ], + [ 8.5612008, 46.892883499999996 ], + [ 8.5611722, 46.8928516 ], + [ 8.5611618, 46.8928259 ], + [ 8.561105, 46.892775 ], + [ 8.5610476, 46.8927369 ], + [ 8.5610278, 46.892692 ], + [ 8.5609987, 46.8926342 ], + [ 8.5609407, 46.8925639 ], + [ 8.5609101, 46.8924741 ], + [ 8.5608809, 46.8924099 ], + [ 8.5608701, 46.8923264 ], + [ 8.560859, 46.8922684 ], + [ 8.5608491, 46.8922234 ], + [ 8.560848, 46.892172 ], + [ 8.5608371, 46.8921205 ], + [ 8.5608077, 46.8920499 ], + [ 8.5607781, 46.8920051 ], + [ 8.56074, 46.8919475 ], + [ 8.560709899999999, 46.8918833 ], + [ 8.5607184, 46.8918189 ], + [ 8.5607364, 46.8917736 ], + [ 8.5607543, 46.8917283 ], + [ 8.5607535, 46.8916896 ], + [ 8.5607339, 46.8916576 ], + [ 8.5606762, 46.8916003 ], + [ 8.5606479, 46.8915812 ], + [ 8.5606379, 46.8915748 ], + [ 8.5606095, 46.8915494 ], + [ 8.560579, 46.8915024 ], + [ 8.5605226, 46.8914342 ], + [ 8.5604673, 46.8913805 ], + [ 8.5604459, 46.8912971 ], + [ 8.5604187, 46.8912479 ], + [ 8.5603936, 46.8911885 ], + [ 8.5603593, 46.8911546 ], + [ 8.5603179, 46.8911347 ], + [ 8.5602614, 46.8911018 ], + [ 8.5602139, 46.8910636 ], + [ 8.5601812, 46.8910333 ], + [ 8.5601526, 46.8909944 ], + [ 8.5601385, 46.8909514 ], + [ 8.5601507, 46.8909068 ], + [ 8.560172, 46.8908643 ], + [ 8.5602088, 46.890819 ], + [ 8.5602649, 46.890799 ], + [ 8.5604002, 46.8907941 ], + [ 8.5605274, 46.8908004 ], + [ 8.5605842, 46.8908088 ], + [ 8.5606518, 46.8908246 ], + [ 8.5606836, 46.890816 ], + [ 8.5606715, 46.8907889 ], + [ 8.5606596, 46.8907256 ], + [ 8.5606704, 46.8906539 ], + [ 8.5607408, 46.8905707 ], + [ 8.5608412, 46.89051 ], + [ 8.5609354, 46.8905026 ], + [ 8.561001, 46.890502 ], + [ 8.561077, 46.8905269 ], + [ 8.5611993, 46.8905709 ], + [ 8.5613132, 46.8906084 ], + [ 8.5613981, 46.8906268 ], + [ 8.561455, 46.8906392 ], + [ 8.5615859, 46.890625 ], + [ 8.5616512, 46.8906115 ], + [ 8.5617261, 46.8905849 ], + [ 8.5618008, 46.8905456 ], + [ 8.561846599999999, 46.8905001 ], + [ 8.5619019, 46.8904415 ], + [ 8.5619476, 46.8903895 ], + [ 8.5619926, 46.8903054 ], + [ 8.5620294, 46.8902599 ], + [ 8.562047100000001, 46.890208200000004 ], + [ 8.5620731, 46.8901178 ], + [ 8.5620822, 46.8900791 ], + [ 8.5620812, 46.890034 ], + [ 8.5620804, 46.8899953 ], + [ 8.5620694, 46.8899374 ], + [ 8.562068, 46.889873 ], + [ 8.5620854, 46.889802 ], + [ 8.5621392, 46.8896661 ], + [ 8.562286, 46.8895102 ], + [ 8.5623214, 46.8894002 ], + [ 8.5623193, 46.8892972 ], + [ 8.5623174, 46.8892071 ], + [ 8.5623342, 46.8891102 ], + [ 8.5623608, 46.8890069 ], + [ 8.562377099999999, 46.888923 ], + [ 8.5624115, 46.8888431 ], + [ 8.562472, 46.888833 ], + [ 8.5626445, 46.8888096 ], + [ 8.5627344, 46.8887923 ], + [ 8.562826, 46.8888594 ], + [ 8.5629579, 46.8889319 ], + [ 8.5630898, 46.888965 ], + [ 8.5632541, 46.8889754 ], + [ 8.5634106, 46.8889691 ], + [ 8.5635741, 46.888867 ], + [ 8.5637203, 46.8887593 ], + [ 8.5640856, 46.8890501 ], + [ 8.5642165, 46.8890325 ], + [ 8.5643002, 46.8891166 ], + [ 8.5643813, 46.8890711 ], + [ 8.5644484, 46.889144 ], + [ 8.5645461, 46.8891097 ], + [ 8.5646046, 46.8891601 ], + [ 8.5647031, 46.8891259 ], + [ 8.5647937, 46.8891816 ], + [ 8.5649408, 46.889119 ], + [ 8.5650081, 46.8891975 ], + [ 8.565155, 46.889162999999996 ], + [ 8.5652307, 46.8893314 ], + [ 8.565321, 46.8892972 ], + [ 8.5653955, 46.8893699 ], + [ 8.5655757, 46.8892397 ], + [ 8.5656334, 46.8892956 ], + [ 8.565732, 46.8892615 ], + [ 8.5658393, 46.8893341 ], + [ 8.5659371, 46.8892661 ], + [ 8.5660532, 46.8893273 ], + [ 8.5661923, 46.8892704 ], + [ 8.5662428, 46.8893714 ], + [ 8.5664146, 46.8893144 ], + [ 8.5665225, 46.8894151 ], + [ 8.5666615, 46.8893131 ], + [ 8.5668383, 46.8896893 ], + [ 8.5668937, 46.8895146 ], + [ 8.566908399999999, 46.8893569 ], + [ 8.5669958, 46.8890639 ], + [ 8.5670182, 46.8888443 ], + [ 8.5670493, 46.888681 ], + [ 8.5670477, 46.8885291 ], + [ 8.567037599999999, 46.8883209 ], + [ 8.5670432, 46.8880789 ], + [ 8.5670579, 46.8878819 ], + [ 8.5670873, 46.8876004 ], + [ 8.5671427, 46.8873864 ], + [ 8.5672066, 46.8871891 ], + [ 8.5672621, 46.88702 ], + [ 8.5673102, 46.8868904 ], + [ 8.5673345, 46.8867945 ], + [ 8.5673657, 46.8866819 ], + [ 8.5673891, 46.8865861 ], + [ 8.5674381, 46.8865352 ], + [ 8.5675118, 46.8864899 ], + [ 8.5676017, 46.8863993 ], + [ 8.5676746, 46.8863145 ], + [ 8.5677882, 46.8862184 ], + [ 8.5679187, 46.8861052 ], + [ 8.568057, 46.8859751 ], + [ 8.5681545, 46.8858508 ], + [ 8.5682442, 46.8857884 ], + [ 8.5683428, 46.8857204 ], + [ 8.5685301, 46.8856182 ], + [ 8.5687183, 46.8855216 ], + [ 8.5688901, 46.8854251 ], + [ 8.5690286, 46.88534 ], + [ 8.5692251, 46.8852095 ], + [ 8.5693801, 46.8850906 ], + [ 8.5695266, 46.8849606 ], + [ 8.5696074, 46.8848645 ], + [ 8.5696968, 46.8847064 ], + [ 8.5697528, 46.8845655 ], + [ 8.5698415, 46.8844526 ], + [ 8.5699956, 46.8842548 ], + [ 8.5700459, 46.8841866 ], + [ 8.5784036, 46.8840915 ], + [ 8.5783674, 46.8837401 ], + [ 8.5782742, 46.8834816 ], + [ 8.5781561, 46.8832516 ], + [ 8.5780396, 46.8830553 ], + [ 8.577897, 46.8828253 ], + [ 8.577829, 46.8826343 ], + [ 8.5777937, 46.8823982 ], + [ 8.577758, 46.8821057 ], + [ 8.5777713, 46.8818468 ], + [ 8.5777576, 46.881312199999996 ], + [ 8.5777468, 46.8810761 ], + [ 8.5777533, 46.8808791 ], + [ 8.5777996, 46.8805862 ], + [ 8.5778377, 46.8802935 ], + [ 8.5778822, 46.8798824 ], + [ 8.5778403, 46.8797589 ], + [ 8.5777157, 46.8796469 ], + [ 8.5775163, 46.8794454 ], + [ 8.5772174, 46.8791543 ], + [ 8.5769435, 46.8788798 ], + [ 8.5764778, 46.8784209 ], + [ 8.5761791, 46.8781354 ], + [ 8.5757725, 46.8777547 ], + [ 8.5756393, 46.8775811 ], + [ 8.5753132, 46.8770876 ], + [ 8.5753846, 46.8768565 ], + [ 8.5754979, 46.8766702 ], + [ 8.5756437, 46.876433 ], + [ 8.5757478, 46.8761963 ], + [ 8.5757219, 46.8760557 ], + [ 8.5756131, 46.8759156 ], + [ 8.5753962, 46.875624 ], + [ 8.5749904, 46.8753165 ], + [ 8.5746339, 46.8749751 ], + [ 8.574309, 46.8745773 ], + [ 8.5740436, 46.8743142 ], + [ 8.573827, 46.8741126 ], + [ 8.5737362, 46.8740061 ], + [ 8.5736771, 46.8739277 ], + [ 8.5730693, 46.8723215 ], + [ 8.5729044, 46.8723166 ], + [ 8.5727148, 46.8722669 ], + [ 8.5725171, 46.8721836 ], + [ 8.5722363, 46.8720499 ], + [ 8.572095000000001, 46.8718761 ], + [ 8.5719283, 46.8717081 ], + [ 8.5717779, 46.8715007 ], + [ 8.5714748, 46.8715473 ], + [ 8.5712446, 46.8715597 ], + [ 8.570965900000001, 46.8716004 ], + [ 8.570687, 46.8716694 ], + [ 8.5703426, 46.8717442 ], + [ 8.5699739, 46.8718362 ], + [ 8.5697356, 46.871888 ], + [ 8.5695391, 46.8719002 ], + [ 8.5693744, 46.8719066 ], + [ 8.5689792, 46.8718242 ], + [ 8.5684775, 46.8717873 ], + [ 8.5681732, 46.8717438 ], + [ 8.568008, 46.8716884 ], + [ 8.5675768, 46.871336 ], + [ 8.5673116, 46.8710841 ], + [ 8.5670135, 46.8708662 ], + [ 8.5667234, 46.8706763 ], + [ 8.5664428, 46.8705482 ], + [ 8.5661459, 46.8704259 ], + [ 8.5658491, 46.8703486 ], + [ 8.565593400000001, 46.8702711 ], + [ 8.5653125, 46.8701318 ], + [ 8.564759, 46.8698532 ], + [ 8.564123, 46.8695075 ], + [ 8.5632804, 46.8690446 ], + [ 8.5630486, 46.8688994 ], + [ 8.5628248, 46.8687036 ], + [ 8.5626906, 46.8684791 ], + [ 8.5625164, 46.8683449 ], + [ 8.5622431, 46.8681325 ], + [ 8.5619531, 46.867869400000004 ], + [ 8.561588799999999, 46.867618 ], + [ 8.561168, 46.8674513 ], + [ 8.5607552, 46.8672733 ], + [ 8.5604747, 46.8671452 ], + [ 8.560178, 46.8670341 ], + [ 8.5599547, 46.8669002 ], + [ 8.5597801, 46.8667435 ], + [ 8.5596962, 46.8665695 ], + [ 8.5597115, 46.86644 ], + [ 8.5597834, 46.8662707 ], + [ 8.559807, 46.8661075 ], + [ 8.5597142, 46.8658604 ], + [ 8.5596126, 46.8655908 ], + [ 8.5595038, 46.8654056 ], + [ 8.5592718, 46.8652436 ], + [ 8.5590159, 46.865121 ], + [ 8.5587273, 46.8649986 ], + [ 8.5585449, 46.8648251 ], + [ 8.5584109, 46.8646063 ], + [ 8.5582932, 46.8643086 ], + [ 8.5582157, 46.8640108 ], + [ 8.5580987, 46.8637863 ], + [ 8.5579901, 46.8636461 ], + [ 8.557989599999999, 46.8635448 ], + [ 8.5581782, 46.8635102 ], + [ 8.5583338, 46.8634644 ], + [ 8.5584723, 46.8633793 ], + [ 8.5585865, 46.8632775 ], + [ 8.5586581, 46.8630914 ], + [ 8.5587138, 46.8628548 ], + [ 8.5587446, 46.8626802 ], + [ 8.558891299999999, 46.8625614 ], + [ 8.5590137, 46.8624538 ], + [ 8.559078, 46.8623522 ], + [ 8.5591183, 46.8622395 ], + [ 8.5590595, 46.8621329 ], + [ 8.5589678, 46.8620207 ], + [ 8.5587784, 46.8619373 ], + [ 8.5586623, 46.8618365 ], + [ 8.5586207, 46.8617637 ], + [ 8.5586025, 46.8616399 ], + [ 8.5585601, 46.8614938 ], + [ 8.5585579, 46.8613082 ], + [ 8.558605, 46.8610884 ], + [ 8.5585945, 46.8608635 ], + [ 8.5585766, 46.8606722 ], + [ 8.5584344, 46.8604535 ], + [ 8.5582604, 46.8603249 ], + [ 8.5579799, 46.8601969 ], + [ 8.5577076, 46.8600743 ], + [ 8.5575008, 46.8599403 ], + [ 8.5573601, 46.8598398 ], + [ 8.5572439, 46.8597277 ], + [ 8.5570605, 46.8595037 ], + [ 8.5568531, 46.8592626 ], + [ 8.5566532, 46.8589935 ], + [ 8.5564612, 46.8587075 ], + [ 8.5563186, 46.858393 ], + [ 8.5561591, 46.8580506 ], + [ 8.5560669, 46.857916 ], + [ 8.5558765, 46.8577819 ], + [ 8.5557444, 46.8576981 ], + [ 8.5555951, 46.8575356 ], + [ 8.5555679, 46.8573276 ], + [ 8.5555503, 46.8571533 ], + [ 8.5552358, 46.8569691 ], + [ 8.5550615, 46.8568237 ], + [ 8.554920599999999, 46.8566274 ], + [ 8.5548126, 46.8565209 ], + [ 8.5546455, 46.8562854 ], + [ 8.5544708, 46.8560444 ], + [ 8.5542306, 46.8558429 ], + [ 8.5540146, 46.855624399999996 ], + [ 8.5538232, 46.8554059 ], + [ 8.5536978, 46.8552096 ], + [ 8.5535153, 46.8549854 ], + [ 8.5533322, 46.8547332 ], + [ 8.5532057, 46.8544412 ], + [ 8.5531532, 46.85416 ], + [ 8.5531589, 46.8538449 ], + [ 8.5533041, 46.8536134 ], + [ 8.5534415, 46.8533989 ], + [ 8.5536532, 46.8531728 ], + [ 8.5538652, 46.853003 ], + [ 8.5540197, 46.8528671 ], + [ 8.5544978, 46.8522064 ], + [ 8.5540108, 46.8519613 ], + [ 8.553556799999999, 46.8517665 ], + [ 8.5532595, 46.851616 ], + [ 8.5529456, 46.85146 ], + [ 8.552442, 46.8512036 ], + [ 8.552037200000001, 46.8509691 ], + [ 8.5515416, 46.8507409 ], + [ 8.5513677, 46.8506123 ], + [ 8.5512601, 46.8505228 ], + [ 8.5512261, 46.8504216 ], + [ 8.5512008, 46.8503091 ], + [ 8.5511994, 46.850163 ], + [ 8.5512471, 46.8500107 ], + [ 8.5513689, 46.8499201 ], + [ 8.5515161, 46.8498238 ], + [ 8.5515731, 46.8498066 ], + [ 8.5516464, 46.8497443 ], + [ 8.5517773, 46.8496143 ], + [ 8.551995699999999, 46.849315 ], + [ 8.5521571, 46.8490385 ], + [ 8.5521641, 46.8488584 ], + [ 8.5520236, 46.8488028 ], + [ 8.551859199999999, 46.8487811 ], + [ 8.5517109, 46.8487424 ], + [ 8.5515866, 46.8486755 ], + [ 8.551454, 46.8485636 ], + [ 8.5513473, 46.8485191 ], + [ 8.5511986, 46.8484972 ], + [ 8.5510673, 46.8484528 ], + [ 8.55096, 46.8484141 ], + [ 8.5507621, 46.848353 ], + [ 8.5505558, 46.8482866 ], + [ 8.5503579, 46.8481862 ], + [ 8.5502005, 46.8480688 ], + [ 8.5500267, 46.8479064 ], + [ 8.5498201, 46.8477836 ], + [ 8.549482, 46.8476784 ], + [ 8.5492179, 46.8475896 ], + [ 8.5489291, 46.8474559 ], + [ 8.5487307, 46.847333 ], + [ 8.548547899999999, 46.8471313 ], + [ 8.5482662, 46.8468626 ], + [ 8.5479846, 46.8465994 ], + [ 8.5476613, 46.8463422 ], + [ 8.5472462, 46.8459222 ], + [ 8.5470388, 46.8457205 ], + [ 8.5469223, 46.8455129 ], + [ 8.5466653, 46.845289 ], + [ 8.5464084, 46.8451102 ], + [ 8.5461693, 46.8449594 ], + [ 8.5458478, 46.8448653 ], + [ 8.5455679, 46.8448441 ], + [ 8.5453216, 46.8448227 ], + [ 8.5450587, 46.8447903 ], + [ 8.5448442, 46.8447181 ], + [ 8.5446622, 46.8445952 ], + [ 8.5445461, 46.8444494 ], + [ 8.5444123, 46.8442812 ], + [ 8.5443124, 46.8441242 ], + [ 8.5441798, 46.8440123 ], + [ 8.5440397, 46.8439341 ], + [ 8.5438254, 46.8438733 ], + [ 8.5436195, 46.8438236 ], + [ 8.5434058, 46.8437908 ], + [ 8.5431745, 46.8437019 ], + [ 8.5429268, 46.843568 ], + [ 8.542671, 46.8434005 ], + [ 8.5424144, 46.843199 ], + [ 8.5420827, 46.8428855 ], + [ 8.5418328, 46.842566 ], + [ 8.5415332, 46.8421847 ], + [ 8.541209, 46.8417586 ], + [ 8.5410422, 46.8415343 ], + [ 8.5409097, 46.841428 ], + [ 8.5405482, 46.8413791 ], + [ 8.5401775, 46.8413246 ], + [ 8.5397999, 46.8412925 ], + [ 8.5394623, 46.8412097 ], + [ 8.5389196, 46.8411561 ], + [ 8.5380892, 46.8410643 ], + [ 8.537677500000001, 46.8409649 ], + [ 8.5372668, 46.840995 ], + [ 8.5366017, 46.8410094 ], + [ 8.536183, 46.8410113 ], + [ 8.5358124, 46.8409568 ], + [ 8.535449700000001, 46.8408121 ], + [ 8.5350204, 46.8405722 ], + [ 8.5348299, 46.840393 ], + [ 8.5347715, 46.8403427 ], + [ 8.5345832, 46.8403886 ], + [ 8.5343797, 46.8405358 ], + [ 8.5342582, 46.8407277 ], + [ 8.5341617, 46.8409364 ], + [ 8.5339905, 46.841061 ], + [ 8.5336299, 46.8411809 ], + [ 8.5330969, 46.8412395 ], + [ 8.5326699, 46.8412359 ], + [ 8.5325952, 46.8411912 ], + [ 8.532512, 46.8410848 ], + [ 8.5323381, 46.8409168 ], + [ 8.5321808, 46.8408387 ], + [ 8.5318598, 46.840767 ], + [ 8.5313839, 46.8407749 ], + [ 8.530875, 46.840811 ], + [ 8.5303422, 46.8409654 ], + [ 8.5299411, 46.8410686 ], + [ 8.5298769, 46.8412151 ], + [ 8.5297473, 46.8414071 ], + [ 8.5295681, 46.8416218 ], + [ 8.5293728, 46.841814 ], + [ 8.5291938, 46.8419949 ], + [ 8.5288835, 46.8421708 ], + [ 8.5285235, 46.8423187 ], + [ 8.5281719, 46.8424386 ], + [ 8.5277696, 46.8425192 ], + [ 8.527426, 46.8426276 ], + [ 8.5270816, 46.8426574 ], + [ 8.526901, 46.8427202 ], + [ 8.5266149, 46.8428396 ], + [ 8.5263454, 46.8430041 ], + [ 8.5259448, 46.8432141 ], + [ 8.5257, 46.8433446 ], + [ 8.5253725, 46.8435206 ], + [ 8.5250621, 46.8436909 ], + [ 8.5247768, 46.8439285 ], + [ 8.5245087, 46.8441661 ], + [ 8.5243131, 46.8443807 ], + [ 8.524053, 46.8446521 ], + [ 8.5237279, 46.8450249 ], + [ 8.5234351, 46.8453414 ], + [ 8.5232238, 46.8455506 ], + [ 8.5230849, 46.8456525 ], + [ 8.5229465, 46.8457376 ], + [ 8.5225369, 46.8459083 ], + [ 8.5218582, 46.8462265 ], + [ 8.5215313, 46.8463911 ], + [ 8.5212449, 46.8464938 ], + [ 8.5209989, 46.846568 ], + [ 8.5207452, 46.8466255 ], + [ 8.5204577, 46.8466718 ], + [ 8.5200312, 46.846775 ], + [ 8.5196626, 46.8468273 ], + [ 8.5193749, 46.846823 ], + [ 8.5191525, 46.8467678 ], + [ 8.5189792, 46.8467066 ], + [ 8.5187409, 46.8466346 ], + [ 8.5185183, 46.8465681 ], + [ 8.5182304, 46.846513 ], + [ 8.5179169, 46.8464076 ], + [ 8.5176697, 46.8463412 ], + [ 8.5174633, 46.846224 ], + [ 8.5173311, 46.8461683 ], + [ 8.5170765, 46.8461413 ], + [ 8.5168296, 46.8461311 ], + [ 8.5166988, 46.846188 ], + [ 8.5166012, 46.8462673 ], + [ 8.5164876, 46.8464028 ], + [ 8.5163897, 46.8464651 ], + [ 8.516144, 46.8465562 ], + [ 8.5158329, 46.8466533 ], + [ 8.5154892, 46.8468406 ], + [ 8.5151465, 46.8470391 ], + [ 8.5148609, 46.8472654 ], + [ 8.5146175, 46.8475478 ], + [ 8.5143255, 46.8480275 ], + [ 8.5143358, 46.8482188 ], + [ 8.5143791, 46.8484156 ], + [ 8.5144543, 46.8486122 ], + [ 8.5144976, 46.8488089 ], + [ 8.5145145, 46.8489157 ], + [ 8.5146223, 46.8489772 ], + [ 8.5147866, 46.8489989 ], + [ 8.5149186, 46.8490433 ], + [ 8.5149691, 46.8491501 ], + [ 8.5150106, 46.8492173 ], + [ 8.5151595, 46.8492843 ], + [ 8.515225, 46.8493234 ], + [ 8.5152913, 46.8493624 ], + [ 8.5154239, 46.8494743 ], + [ 8.5156139, 46.8496311 ], + [ 8.515796, 46.8497653 ], + [ 8.5158797, 46.8498944 ], + [ 8.5160771, 46.8499666 ], + [ 8.5163171, 46.8500837 ], + [ 8.5167039, 46.8501664 ], + [ 8.5168366, 46.8502839 ], + [ 8.5171896, 46.8503161 ], + [ 8.5172977, 46.8504338 ], + [ 8.5174804, 46.8506356 ], + [ 8.5177128, 46.8509045 ], + [ 8.517714, 46.8510059 ], + [ 8.5176738, 46.8510848 ], + [ 8.5175017, 46.8512095 ], + [ 8.5177015, 46.8514842 ], + [ 8.5178019, 46.8516695 ], + [ 8.517894, 46.8518492 ], + [ 8.5178951, 46.8519449 ], + [ 8.5178886, 46.852108 ], + [ 8.517824, 46.8521984 ], + [ 8.5177262, 46.8523058 ], + [ 8.5175137, 46.8524586 ], + [ 8.5173009, 46.8525552 ], + [ 8.5170065, 46.8526692 ], + [ 8.5168184, 46.8527713 ], + [ 8.5167287, 46.8528786 ], + [ 8.516674, 46.8530926 ], + [ 8.516678, 46.8535372 ], + [ 8.5166136, 46.8536781 ], + [ 8.5165155, 46.8537743 ], + [ 8.5163685, 46.853881799999996 ], + [ 8.5162465, 46.8540118 ], + [ 8.5161336, 46.8542262 ], + [ 8.5161013, 46.8542882 ], + [ 8.5159627, 46.8544071 ], + [ 8.5158403, 46.8544357 ], + [ 8.5156922, 46.8544476 ], + [ 8.5155447, 46.8544482 ], + [ 8.5154463, 46.8544881 ], + [ 8.5153891, 46.854539 ], + [ 8.5153486, 46.8546011 ], + [ 8.5152512, 46.8546915 ], + [ 8.5151692, 46.8547707 ], + [ 8.5150299, 46.8548163 ], + [ 8.5148087, 46.8548624 ], + [ 8.5145295, 46.8548749 ], + [ 8.5143495, 46.854932 ], + [ 8.5141779, 46.8550397 ], + [ 8.5140552, 46.8551359 ], + [ 8.5139576, 46.8551701 ], + [ 8.5138342, 46.8551876 ], + [ 8.5135635, 46.855222499999996 ], + [ 8.5131693, 46.8552637 ], + [ 8.5128742, 46.8553438 ], + [ 8.5125465, 46.8554746 ], + [ 8.5123684, 46.8557061 ], + [ 8.5122715, 46.8558642 ], + [ 8.5122322, 46.856112 ], + [ 8.5118153, 46.8562939 ], + [ 8.5116098, 46.8563061 ], + [ 8.5112935, 46.8567182 ], + [ 8.5111971, 46.8569831 ], + [ 8.510915, 46.8567256 ], + [ 8.5106583, 46.8565129 ], + [ 8.5104181, 46.8563057 ], + [ 8.5100792, 46.8560822 ], + [ 8.5097656, 46.8558922 ], + [ 8.5094607, 46.8557698 ], + [ 8.509082, 46.8556815 ], + [ 8.5086865, 46.8556214 ], + [ 8.5086714, 46.8557283 ], + [ 8.5086804, 46.8558521 ], + [ 8.5087569, 46.8561106 ], + [ 8.5086921, 46.8561896 ], + [ 8.5086271, 46.8563024 ], + [ 8.5086533, 46.8564655 ], + [ 8.5086891, 46.8567411 ], + [ 8.5087326, 46.8570335 ], + [ 8.5087347, 46.8572192 ], + [ 8.5086957, 46.8574838 ], + [ 8.5085591, 46.8577883 ], + [ 8.5084375, 46.8580195 ], + [ 8.508276500000001, 46.8583355 ], + [ 8.5081717, 46.858589 ], + [ 8.5081174, 46.8589494 ], + [ 8.5080951, 46.8591465 ], + [ 8.5080724, 46.859366 ], + [ 8.5080578, 46.8595799 ], + [ 8.5080518, 46.8598556 ], + [ 8.5080462, 46.8601088 ], + [ 8.5080165, 46.8604298 ], + [ 8.507986, 46.8606718 ], + [ 8.5079707, 46.860807 ], + [ 8.5080135, 46.8609812 ], + [ 8.508056, 46.8611837 ], + [ 8.5081235, 46.8614027 ], + [ 8.5081663, 46.861577 ], + [ 8.5082509, 46.8617905 ], + [ 8.508285, 46.8619816 ], + [ 8.5083196, 46.8621559 ], + [ 8.508338, 46.8623809 ], + [ 8.5083486, 46.8626228 ], + [ 8.5083188, 46.8628986 ], + [ 8.5082721, 46.8631858 ], + [ 8.5082173, 46.8634843 ], + [ 8.5081286, 46.863721 ], + [ 8.5080738, 46.8639745 ], + [ 8.5080251, 46.8649482 ], + [ 8.5080706, 46.8654263 ], + [ 8.5080888, 46.8656401 ], + [ 8.5081559, 46.8657973 ], + [ 8.5082397, 46.8659714 ], + [ 8.5083393, 46.8660778 ], + [ 8.508455099999999, 46.8661279 ], + [ 8.508636, 46.8661553 ], + [ 8.508883, 46.8661654 ], + [ 8.5092942, 46.8661917 ], + [ 8.5096401, 46.866314 ], + [ 8.5098553, 46.8664987 ], + [ 8.5099804, 46.8666444 ], + [ 8.5100225, 46.866785 ], + [ 8.5100896, 46.8669422 ], + [ 8.5100755, 46.8671842 ], + [ 8.5100861, 46.867426 ], + [ 8.5101211, 46.8676623 ], + [ 8.5101644, 46.8678984 ], + [ 8.5101253, 46.8681181 ], + [ 8.5100933, 46.8682419 ], + [ 8.5101033, 46.8683713 ], + [ 8.5101693, 46.8684779 ], + [ 8.5102771, 46.8685788 ], + [ 8.5102123, 46.8686579 ], + [ 8.5101719, 46.8687312 ], + [ 8.5101654, 46.868854999999996 ], + [ 8.5101581, 46.8689845 ], + [ 8.5102085, 46.8690855 ], + [ 8.5102251, 46.8691811 ], + [ 8.5101358, 46.8692658 ], + [ 8.5100464, 46.8693844 ], + [ 8.5100561, 46.8695026 ], + [ 8.5101722, 46.869654 ], + [ 8.51024, 46.8698844 ], + [ 8.5103245, 46.8700979 ], + [ 8.5103436, 46.8703566 ], + [ 8.5102876, 46.8705875 ], + [ 8.5101911, 46.8707681 ], + [ 8.510102, 46.8709034 ], + [ 8.5100783, 46.871033 ], + [ 8.510096, 46.8711397 ], + [ 8.5100797, 46.8712242 ], + [ 8.5100233, 46.8712752 ], + [ 8.5098593, 46.8713153 ], + [ 8.5096786, 46.871378 ], + [ 8.5095809, 46.8714572 ], + [ 8.5094833, 46.8715758 ], + [ 8.5094357, 46.8717393 ], + [ 8.5094376, 46.8719193 ], + [ 8.5095297, 46.8721383 ], + [ 8.5095886, 46.8722562 ], + [ 8.5097054, 46.8724414 ], + [ 8.5098716, 46.872632 ], + [ 8.5100861, 46.8727829 ], + [ 8.5102599, 46.8729059 ], + [ 8.510409, 46.8730234 ], + [ 8.5105248, 46.8731129 ], + [ 8.5105919, 46.8732307 ], + [ 8.5106338, 46.8733601 ], + [ 8.5106432, 46.8734613 ], + [ 8.510669, 46.8735625 ], + [ 8.5107518, 46.8736859 ], + [ 8.5108352, 46.873798 ], + [ 8.5109519, 46.8739326 ], + [ 8.511034800000001, 46.8740222 ], + [ 8.5110768, 46.874151499999996 ], + [ 8.5110784, 46.8742752 ], + [ 8.5110952, 46.8743764 ], + [ 8.5111618, 46.8744718 ], + [ 8.5112371, 46.8745446 ], + [ 8.5113194, 46.8746006 ], + [ 8.5113939, 46.874679 ], + [ 8.5114612, 46.874763 ], + [ 8.511544, 46.8748471 ], + [ 8.5116347, 46.8749142 ], + [ 8.5117591, 46.8749812 ], + [ 8.5119478, 46.875031 ], + [ 8.5121539, 46.8750863 ], + [ 8.5123515, 46.8751249 ], + [ 8.512614899999999, 46.8751799 ], + [ 8.5128708, 46.8752633 ], + [ 8.5130605, 46.8753637 ], + [ 8.513168199999999, 46.8754588 ], + [ 8.5132846, 46.8755821 ], + [ 8.5134178, 46.8757221 ], + [ 8.5135664, 46.8758115 ], + [ 8.5137074, 46.8759741 ], + [ 8.5137911, 46.876103 ], + [ 8.5138086, 46.8762381 ], + [ 8.5138105, 46.8764181 ], + [ 8.5138277, 46.8765418 ], + [ 8.5139111, 46.8766484 ], + [ 8.5140187, 46.8767436 ], + [ 8.5141019, 46.8768444 ], + [ 8.5141692, 46.8769679 ], + [ 8.5142524, 46.8771138 ], + [ 8.5143852, 46.8772314 ], + [ 8.5145093, 46.8773321 ], + [ 8.5145924, 46.8774275 ], + [ 8.5146265, 46.8775343 ], + [ 8.5147099, 46.8776857 ], + [ 8.514842699999999, 46.8778034 ], + [ 8.5150738, 46.8779204 ], + [ 8.5154949, 46.8781098 ], + [ 8.515726, 46.8782664 ], + [ 8.5158668, 46.8783783 ], + [ 8.5160154, 46.8783889 ], + [ 8.5163113, 46.8783819 ], + [ 8.5166319, 46.8784199 ], + [ 8.5168628, 46.8785257 ], + [ 8.5170376, 46.8786993 ], + [ 8.517089, 46.8789299 ], + [ 8.5170171, 46.8791496 ], + [ 8.5168624, 46.8793698 ], + [ 8.5166591, 46.8795339 ], + [ 8.5164546, 46.8796812 ], + [ 8.5162682, 46.8799126 ], + [ 8.5160893, 46.8801104 ], + [ 8.5158766, 46.8802182 ], + [ 8.5156053, 46.8802251 ], + [ 8.5153089, 46.8802039 ], + [ 8.5151781, 46.8802664 ], + [ 8.5150972, 46.8804468 ], + [ 8.5151241, 46.8806436 ], + [ 8.5152415, 46.8808964 ], + [ 8.5153263, 46.8811604 ], + [ 8.5153696, 46.8814359 ], + [ 8.5153727, 46.8817173 ], + [ 8.5154156, 46.8819759 ], + [ 8.5153936, 46.8821842 ], + [ 8.5154194, 46.8823697 ], + [ 8.5155036, 46.8826002 ], + [ 8.5157109, 46.8827568 ], + [ 8.5159507, 46.8828963 ], + [ 8.5161571, 46.883008 ], + [ 8.5163234, 46.8831647 ], + [ 8.5164481, 46.8833274 ], + [ 8.5166795, 46.8834613 ], + [ 8.517034, 46.8835948 ], + [ 8.517290299999999, 46.8837399 ], + [ 8.517563299999999, 46.8839413 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "JBG0036", + "country" : "CHE", + "name" : [ + { + "text" : "Eidgenössisches Jagdbanngebiet Urirotstock", + "lang" : "de-CH" + }, + { + "text" : "District franc fédéral Urirotstock", + "lang" : "fr-CH" + }, + { + "text" : "Bandita federale di caccia Urirotstock", + "lang" : "it-CH" + }, + { + "text" : "Federal Game Reserve Urirotstock", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5322612, 47.5294022 ], + [ 7.5322368, 47.529375 ], + [ 7.532222, 47.5293766 ], + [ 7.532187, 47.5293906 ], + [ 7.5317984, 47.5295211 ], + [ 7.5312298, 47.5296967 ], + [ 7.5307755, 47.5298127 ], + [ 7.5303766, 47.529945 ], + [ 7.5303363999999995, 47.5299583 ], + [ 7.5297627, 47.5306834 ], + [ 7.5282476, 47.531612 ], + [ 7.5305801, 47.5325059 ], + [ 7.5311985, 47.5331403 ], + [ 7.5315306, 47.5333249 ], + [ 7.5316147, 47.5334116 ], + [ 7.5325056, 47.5329804 ], + [ 7.5328887, 47.5328117 ], + [ 7.533255, 47.5326523 ], + [ 7.5338629, 47.5323755 ], + [ 7.5343108, 47.5321686 ], + [ 7.5344037, 47.5322764 ], + [ 7.5345618, 47.5324598 ], + [ 7.5346346, 47.5325443 ], + [ 7.5346706, 47.5325861 ], + [ 7.5347307, 47.5326559 ], + [ 7.534836, 47.5327783 ], + [ 7.5348382, 47.5327808 ], + [ 7.5349072, 47.5328772 ], + [ 7.5349964, 47.5330018 ], + [ 7.5350333, 47.5330532 ], + [ 7.535085, 47.5331254 ], + [ 7.5351454, 47.5331027 ], + [ 7.5357772, 47.5328909 ], + [ 7.5363121, 47.532756 ], + [ 7.5370667000000005, 47.53251 ], + [ 7.53714, 47.5326243 ], + [ 7.5371648, 47.532663 ], + [ 7.5372256, 47.5327578 ], + [ 7.5372864, 47.5328528 ], + [ 7.5375233999999995, 47.533224 ], + [ 7.5375725, 47.5333007 ], + [ 7.5376055, 47.5333522 ], + [ 7.5376314, 47.5334134 ], + [ 7.5376777, 47.5335228 ], + [ 7.5377198, 47.5336223 ], + [ 7.5377381, 47.5336657 ], + [ 7.5377718, 47.5337453 ], + [ 7.5377762, 47.5337556 ], + [ 7.5378381, 47.5339273 ], + [ 7.5378529, 47.5339683 ], + [ 7.5378948, 47.5339838 ], + [ 7.5383445, 47.5341497 ], + [ 7.5384009, 47.5341705 ], + [ 7.5387622, 47.5343064 ], + [ 7.5388988999999995, 47.5343578 ], + [ 7.5391739, 47.5344564 ], + [ 7.5394635999999995, 47.5345604 ], + [ 7.5395847, 47.5346005 ], + [ 7.5393267, 47.5349292 ], + [ 7.5391598, 47.5348632 ], + [ 7.5389258, 47.5347736 ], + [ 7.5385721, 47.5346383 ], + [ 7.5385114, 47.5346161 ], + [ 7.5380972, 47.5344649 ], + [ 7.5379672, 47.5344175 ], + [ 7.5375543, 47.5342532 ], + [ 7.5375142, 47.5342372 ], + [ 7.5370273999999995, 47.5346268 ], + [ 7.5366256, 47.5349463 ], + [ 7.5365299, 47.5349351 ], + [ 7.5361142999999995, 47.5352238 ], + [ 7.5358795, 47.5354526 ], + [ 7.535643, 47.5358142 ], + [ 7.5355215, 47.5360565 ], + [ 7.5355077, 47.5360856 ], + [ 7.5355224, 47.5360967 ], + [ 7.5360389, 47.5364694 ], + [ 7.5365314, 47.53681 ], + [ 7.5374068, 47.537334 ], + [ 7.5377937, 47.537669 ], + [ 7.5382439, 47.5383387 ], + [ 7.5385108, 47.5387475 ], + [ 7.5387018, 47.5389203 ], + [ 7.5395568, 47.5394093 ], + [ 7.5395928, 47.5394299 ], + [ 7.5397586, 47.5395246 ], + [ 7.5400507999999995, 47.5392056 ], + [ 7.540396, 47.5388019 ], + [ 7.540803, 47.5383155 ], + [ 7.5408269, 47.5382887 ], + [ 7.5411063, 47.5384079 ], + [ 7.5414192, 47.5385336 ], + [ 7.5416662, 47.5381472 ], + [ 7.5418465999999995, 47.5378637 ], + [ 7.5418637, 47.5378378 ], + [ 7.542023, 47.5375436 ], + [ 7.5422081, 47.5372418 ], + [ 7.5422141, 47.5372403 ], + [ 7.5425874, 47.5371676 ], + [ 7.5428321, 47.5371896 ], + [ 7.5429193, 47.5371976 ], + [ 7.5429993, 47.5372048 ], + [ 7.5429981, 47.5370444 ], + [ 7.543334, 47.5368241 ], + [ 7.5436066, 47.5365671 ], + [ 7.5436635, 47.5364514 ], + [ 7.5436658, 47.5362169 ], + [ 7.5437180999999995, 47.5362169 ], + [ 7.5438388, 47.536218 ], + [ 7.5436028, 47.5357517 ], + [ 7.5432802, 47.5352457 ], + [ 7.5432353, 47.5352588 ], + [ 7.5430428, 47.5349694 ], + [ 7.5428525, 47.5346934 ], + [ 7.5426228, 47.5343585 ], + [ 7.5423318, 47.5339531 ], + [ 7.5423301, 47.5339506 ], + [ 7.542088, 47.5335343 ], + [ 7.5419569, 47.5332652 ], + [ 7.5418126, 47.5328924 ], + [ 7.541105, 47.5327286 ], + [ 7.5405809999999995, 47.5326084 ], + [ 7.5399513, 47.5324611 ], + [ 7.5398855000000005, 47.532586 ], + [ 7.5397984000000005, 47.5325689 ], + [ 7.5394124, 47.5324934 ], + [ 7.53933, 47.5324781 ], + [ 7.5391454, 47.5324432 ], + [ 7.5389228, 47.5324014 ], + [ 7.5388843, 47.5323943 ], + [ 7.5390581, 47.5318571 ], + [ 7.5382964999999995, 47.5316451 ], + [ 7.5377627, 47.5314956 ], + [ 7.5372873, 47.5313845 ], + [ 7.5367161, 47.5312806 ], + [ 7.5363259, 47.5311663 ], + [ 7.53596, 47.5309698 ], + [ 7.535635, 47.5307773 ], + [ 7.5350522, 47.531213 ], + [ 7.5348016, 47.5313793 ], + [ 7.5345048, 47.5315232 ], + [ 7.5343941999999995, 47.531407 ], + [ 7.5343349, 47.5313447 ], + [ 7.5342418, 47.5312467 ], + [ 7.5342362, 47.5312409 ], + [ 7.5341381, 47.5311377 ], + [ 7.5339066, 47.5308942 ], + [ 7.5338577, 47.5308428 ], + [ 7.533784, 47.5307667 ], + [ 7.5337512, 47.530731 ], + [ 7.5337111, 47.5307517 ], + [ 7.5337134, 47.5307542 ], + [ 7.5336746, 47.530778 ], + [ 7.5323356, 47.5293396 ], + [ 7.5322612, 47.5294022 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns262", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Allschwilerwald", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Allschwilerwald", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Allschwilerwald", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Allschwilerwald", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6935683, 47.4147325 ], + [ 7.6935561, 47.4147476 ], + [ 7.693526, 47.414769 ], + [ 7.6934986, 47.4148034 ], + [ 7.6934586, 47.4148323 ], + [ 7.693416, 47.4148575 ], + [ 7.6933847, 47.4148689 ], + [ 7.6933539, 47.414875 ], + [ 7.693334, 47.4148788 ], + [ 7.6932922999999995, 47.4148794 ], + [ 7.6933021, 47.4148828 ], + [ 7.6932756, 47.4148975 ], + [ 7.6931691, 47.4150129 ], + [ 7.6931017, 47.4151786 ], + [ 7.6930944, 47.4152604 ], + [ 7.6930928, 47.4152921 ], + [ 7.6930905, 47.4153249 ], + [ 7.6930874, 47.4153577 ], + [ 7.6930836, 47.4153905 ], + [ 7.6930778, 47.4153945 ], + [ 7.6941997, 47.4155063 ], + [ 7.6944282, 47.4155292 ], + [ 7.6944295, 47.4155294 ], + [ 7.6944794, 47.4155373 ], + [ 7.6947242, 47.4155763 ], + [ 7.694977, 47.4156614 ], + [ 7.6951879, 47.4157704 ], + [ 7.6953918, 47.415889 ], + [ 7.6955186, 47.4160077 ], + [ 7.6955658, 47.4161067 ], + [ 7.6955753, 47.4161265 ], + [ 7.6956036, 47.4161883 ], + [ 7.695703, 47.4161791 ], + [ 7.6958139, 47.4161688 ], + [ 7.6958909, 47.4161496 ], + [ 7.6959236, 47.416148 ], + [ 7.6959891, 47.4161446 ], + [ 7.6961576, 47.4161966 ], + [ 7.6962561, 47.416263 ], + [ 7.6963547, 47.4163485 ], + [ 7.6964681, 47.4158323 ], + [ 7.6964423, 47.4158153 ], + [ 7.6964404, 47.4158141 ], + [ 7.6964122, 47.4157964 ], + [ 7.6963834, 47.415779 ], + [ 7.6963539999999995, 47.4157621 ], + [ 7.6963364, 47.415752499999996 ], + [ 7.6963184, 47.4157433 ], + [ 7.6963, 47.4157345 ], + [ 7.6962813, 47.415726 ], + [ 7.6962523, 47.4157136 ], + [ 7.6962229, 47.4157016 ], + [ 7.6961933, 47.4156899 ], + [ 7.6961633, 47.4156786 ], + [ 7.696133, 47.4156677 ], + [ 7.6961143, 47.4156614 ], + [ 7.6960953, 47.4156555 ], + [ 7.696076, 47.4156499 ], + [ 7.6960565, 47.4156448 ], + [ 7.6960368, 47.41564 ], + [ 7.6960169, 47.4156357 ], + [ 7.6959798, 47.4156281 ], + [ 7.6959428, 47.4156204 ], + [ 7.6959058, 47.4156126 ], + [ 7.6958687999999995, 47.4156048 ], + [ 7.6958312, 47.415597 ], + [ 7.6957934, 47.4155897 ], + [ 7.6957554, 47.4155829 ], + [ 7.6957173, 47.4155765 ], + [ 7.6956919, 47.4155721 ], + [ 7.6956667, 47.4155673 ], + [ 7.6956416999999995, 47.415562 ], + [ 7.6956169, 47.4155563 ], + [ 7.6955924, 47.4155501 ], + [ 7.6955681, 47.4155434 ], + [ 7.6955441, 47.4155363 ], + [ 7.6955203999999995, 47.4155288 ], + [ 7.6953853, 47.415496 ], + [ 7.6952496, 47.4155105 ], + [ 7.6950465, 47.4154559 ], + [ 7.6948423, 47.4153428 ], + [ 7.6946668, 47.4153004 ], + [ 7.6946315, 47.4152576 ], + [ 7.694603, 47.4151673 ], + [ 7.6946375, 47.4150482 ], + [ 7.694616, 47.4149483 ], + [ 7.6945664, 47.4148389 ], + [ 7.6944678, 47.414744 ], + [ 7.6942779, 47.4146302 ], + [ 7.6941304, 47.4145781 ], + [ 7.6940251, 47.4145498 ], + [ 7.6938634, 47.4144669 ], + [ 7.6938527, 47.4144732 ], + [ 7.6938421, 47.4144781 ], + [ 7.6937839, 47.4145016 ], + [ 7.6937643, 47.4145407 ], + [ 7.6937375, 47.4145716 ], + [ 7.6937022, 47.4145941 ], + [ 7.6936618, 47.4146293 ], + [ 7.6935886, 47.4147075 ], + [ 7.6935683, 47.4147325 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns351", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Oberthalrain", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Oberthalrain", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Oberthalrain", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Oberthalrain", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.9035353, 47.5727265 ], + [ 7.9035234, 47.5724747 ], + [ 7.903492, 47.5722237 ], + [ 7.9034412, 47.5719741 ], + [ 7.9033712, 47.5717267 ], + [ 7.9032822, 47.5714821 ], + [ 7.9031744, 47.571241 ], + [ 7.903048, 47.5710041 ], + [ 7.9029036, 47.5707719 ], + [ 7.9027413, 47.5705452 ], + [ 7.9025618, 47.5703245 ], + [ 7.9023654, 47.5701105 ], + [ 7.9021528, 47.5699038 ], + [ 7.9019245, 47.5697048 ], + [ 7.901681, 47.5695142 ], + [ 7.9014232, 47.5693325 ], + [ 7.9011517, 47.5691602 ], + [ 7.9008673, 47.5689977 ], + [ 7.9005707, 47.5688456 ], + [ 7.9002627, 47.5687041 ], + [ 7.8999442, 47.5685737 ], + [ 7.899616, 47.5684549 ], + [ 7.8992791, 47.5683477 ], + [ 7.8989344, 47.5682527 ], + [ 7.8985828, 47.56817 ], + [ 7.8982253, 47.5680999 ], + [ 7.8978629, 47.5680425 ], + [ 7.8974965, 47.567998 ], + [ 7.8971272, 47.5679666 ], + [ 7.896756, 47.5679483 ], + [ 7.8963839, 47.5679432 ], + [ 7.8960118999999995, 47.5679513 ], + [ 7.8956409999999995, 47.5679725 ], + [ 7.8952722, 47.5680068 ], + [ 7.8949067, 47.5680542 ], + [ 7.8945452, 47.5681144 ], + [ 7.894189, 47.5681873 ], + [ 7.8938388, 47.5682728 ], + [ 7.8934958, 47.5683705 ], + [ 7.8931608, 47.5684803 ], + [ 7.8928347, 47.5686018 ], + [ 7.8925184, 47.5687346 ], + [ 7.8922129, 47.5688785 ], + [ 7.8919189, 47.569033 ], + [ 7.8916373, 47.5691977 ], + [ 7.8913688, 47.5693722 ], + [ 7.8911141, 47.5695559 ], + [ 7.890874, 47.5697484 ], + [ 7.8906491, 47.5699491 ], + [ 7.89044, 47.5701575 ], + [ 7.8902474, 47.5703731 ], + [ 7.8900717, 47.5705951 ], + [ 7.8899133, 47.5708231 ], + [ 7.8897729, 47.5710564 ], + [ 7.8896505999999995, 47.5712943 ], + [ 7.889547, 47.5715363 ], + [ 7.8894621, 47.5717816 ], + [ 7.8893964, 47.5720295 ], + [ 7.8893499, 47.5722794 ], + [ 7.8893229, 47.5725307 ], + [ 7.8893153, 47.5727825 ], + [ 7.8893271, 47.5730343 ], + [ 7.8893585, 47.5732853 ], + [ 7.8894092, 47.5735349 ], + [ 7.8894791, 47.5737823 ], + [ 7.8895681, 47.5740269 ], + [ 7.8896759, 47.574268000000004 ], + [ 7.8898021, 47.574505 ], + [ 7.8899466, 47.5747372 ], + [ 7.8901088, 47.5749639 ], + [ 7.8902883, 47.5751846 ], + [ 7.8904846, 47.5753986 ], + [ 7.8906972, 47.5756054 ], + [ 7.8909255, 47.5758044 ], + [ 7.8911689, 47.575995 ], + [ 7.8914267, 47.5761767 ], + [ 7.8916982, 47.576349 ], + [ 7.8919827, 47.5765115 ], + [ 7.8922793, 47.5766637 ], + [ 7.8925874, 47.5768052 ], + [ 7.8929059, 47.5769356 ], + [ 7.8932341, 47.5770545 ], + [ 7.893571, 47.5771616 ], + [ 7.8939158, 47.5772567 ], + [ 7.8942674, 47.5773394 ], + [ 7.894625, 47.5774095 ], + [ 7.8949874, 47.5774669 ], + [ 7.8953539, 47.5775114 ], + [ 7.8957232, 47.5775428 ], + [ 7.8960945, 47.5775611 ], + [ 7.8964666999999995, 47.5775663 ], + [ 7.8968388, 47.5775582 ], + [ 7.8972098, 47.577537 ], + [ 7.8975786, 47.5775026 ], + [ 7.8979441999999995, 47.5774553 ], + [ 7.8983057, 47.577395 ], + [ 7.898662, 47.5773221 ], + [ 7.8990122, 47.5772366 ], + [ 7.8993553, 47.5771388 ], + [ 7.8996904, 47.577029 ], + [ 7.9000164999999996, 47.5769076 ], + [ 7.9003328, 47.5767747 ], + [ 7.9006383, 47.5766308 ], + [ 7.9009323, 47.5764763 ], + [ 7.9012139999999995, 47.5763115 ], + [ 7.9014825, 47.5761371 ], + [ 7.9017371, 47.5759533 ], + [ 7.9019772, 47.5757608 ], + [ 7.9022021, 47.57556 ], + [ 7.9024111999999995, 47.5753516 ], + [ 7.9026038, 47.575136 ], + [ 7.9027795, 47.574914 ], + [ 7.9029377, 47.574686 ], + [ 7.9030781999999995, 47.5744527 ], + [ 7.9032003, 47.5742147 ], + [ 7.903304, 47.5739728 ], + [ 7.9033887, 47.5737275 ], + [ 7.9034544, 47.5734795 ], + [ 7.9035008, 47.5732296 ], + [ 7.9035278, 47.5729783 ], + [ 7.9035353, 47.5727265 ] + ] + ], + "layer" : { + "upper" : 2000, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "EVA0002", + "country" : "CHE", + "name" : [ + { + "text" : "Messstation Wallbach", + "lang" : "de-CH" + }, + { + "text" : "Messstation Wallbach", + "lang" : "fr-CH" + }, + { + "text" : "Messstation Wallbach", + "lang" : "it-CH" + }, + { + "text" : "Messstation Wallbach", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Transitgas AG", + "lang" : "de-CH" + }, + { + "text" : "Transitgas AG", + "lang" : "fr-CH" + }, + { + "text" : "Transitgas AG", + "lang" : "it-CH" + }, + { + "text" : "Transitgas AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Technik", + "lang" : "de-CH" + }, + { + "text" : "Technik", + "lang" : "fr-CH" + }, + { + "text" : "Technik", + "lang" : "it-CH" + }, + { + "text" : "Technik", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.transitgas.ch/en/contact/", + "email" : "info@transitgas.ch", + "phone" : "0041414926010", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.151763, 46.172483 ], + [ 6.1517656, 46.1726677 ], + [ 6.1506777, 46.1731549 ], + [ 6.149815, 46.1740207 ], + [ 6.1494949, 46.1750499 ], + [ 6.1497661, 46.1760859 ], + [ 6.1505874, 46.1769709 ], + [ 6.1518337, 46.1775702 ], + [ 6.1533153, 46.1777926 ], + [ 6.1548066, 46.1776041 ], + [ 6.1560806, 46.1770335 ], + [ 6.1569432, 46.1761677 ], + [ 6.1571643, 46.1754567 ], + [ 6.1577929, 46.175272 ], + [ 6.1578894, 46.1752265 ], + [ 6.1589472, 46.174483 ], + [ 6.159519, 46.1735161 ], + [ 6.1595189, 46.1724707 ], + [ 6.158947, 46.171503799999996 ], + [ 6.1589183, 46.1714737 ], + [ 6.1587082, 46.1713261 ], + [ 6.1581018, 46.1708539 ], + [ 6.1579491, 46.1707929 ], + [ 6.1578591, 46.1707297 ], + [ 6.1576003, 46.1706535 ], + [ 6.1570275, 46.1704247 ], + [ 6.1566317, 46.1703685 ], + [ 6.1564721, 46.1703215 ], + [ 6.1562917, 46.1703202 ], + [ 6.1558133999999995, 46.1702523 ], + [ 6.1550991, 46.1703116 ], + [ 6.1549659, 46.1703106 ], + [ 6.1549040999999995, 46.1703277 ], + [ 6.154583, 46.1703544 ], + [ 6.1534614, 46.1707205 ], + [ 6.1533888, 46.1707549 ], + [ 6.1523287, 46.1715067 ], + [ 6.151763, 46.172483 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-34", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.1194323, 46.295016 ], + [ 6.1208254, 46.2951341 ], + [ 6.1242144, 46.295297 ], + [ 6.1276111, 46.2953367 ], + [ 6.1310061, 46.295253 ], + [ 6.1343901, 46.2950462 ], + [ 6.1377538, 46.2947168 ], + [ 6.141088, 46.2942657 ], + [ 6.1443835, 46.2936942 ], + [ 6.1476312, 46.2930038 ], + [ 6.1508223, 46.2921964 ], + [ 6.1539479, 46.2912743 ], + [ 6.1569996, 46.29024 ], + [ 6.1599688, 46.2890963 ], + [ 6.1628475, 46.2878463 ], + [ 6.1656277, 46.2864936 ], + [ 6.1683019, 46.2850418 ], + [ 6.1708627, 46.2834949 ], + [ 6.173303, 46.2818571 ], + [ 6.1756162, 46.280133 ], + [ 6.177796, 46.2783272 ], + [ 6.1798363, 46.2764448 ], + [ 6.1817316, 46.2744909 ], + [ 6.1834768, 46.2724709 ], + [ 6.1850669, 46.2703902 ], + [ 6.1864977, 46.2682547 ], + [ 6.1877653, 46.2660702 ], + [ 6.1888662, 46.2638426 ], + [ 6.1897975, 46.2615782 ], + [ 6.1905565, 46.259283 ], + [ 6.1911412, 46.2569634 ], + [ 6.1915501, 46.2546258 ], + [ 6.1917821, 46.2522765 ], + [ 6.1918364, 46.249922 ], + [ 6.1917131, 46.2475688 ], + [ 6.1914124, 46.2452233 ], + [ 6.1909353, 46.2428919 ], + [ 6.190283, 46.240581 ], + [ 6.1894574, 46.238297 ], + [ 6.1884606, 46.2360461 ], + [ 6.1872956, 46.2338344 ], + [ 6.1859655, 46.2316681 ], + [ 6.1844739, 46.2295531 ], + [ 6.182825, 46.227495 ], + [ 6.1810233, 46.2254997 ], + [ 6.1790738, 46.2235725 ], + [ 6.1769817, 46.2217188 ], + [ 6.1747529, 46.2199435 ], + [ 6.1723934, 46.2182516 ], + [ 6.1393444, 46.1957471 ], + [ 6.1368627, 46.1941425 ], + [ 6.1342637, 46.1926302 ], + [ 6.1315543, 46.1912143 ], + [ 6.1287422, 46.1898988 ], + [ 6.1258348, 46.1886872 ], + [ 6.1228403, 46.1875829 ], + [ 6.1197668, 46.1865889 ], + [ 6.1166227, 46.1857079 ], + [ 6.1134166, 46.1849423 ], + [ 6.1101573, 46.1842941 ], + [ 6.1068537, 46.1837653 ], + [ 6.1035149, 46.1833572 ], + [ 6.1001499, 46.1830709 ], + [ 6.0967679, 46.1829072 ], + [ 6.0933783, 46.1828666 ], + [ 6.0899902, 46.1829491 ], + [ 6.086613, 46.1831546 ], + [ 6.0832559, 46.1834825 ], + [ 6.079928, 46.1839319 ], + [ 6.0766385, 46.1845015 ], + [ 6.0733963, 46.1851899 ], + [ 6.0702104, 46.1859951 ], + [ 6.0670894, 46.1869148 ], + [ 6.0640418, 46.1879467 ], + [ 6.0610761, 46.1890879 ], + [ 6.0582003, 46.1903353 ], + [ 6.0554223, 46.1916853 ], + [ 6.0527497, 46.1931345 ], + [ 6.0501898, 46.1946787 ], + [ 6.0477497, 46.1963138 ], + [ 6.045436, 46.1980353 ], + [ 6.043255, 46.1998385 ], + [ 6.0412129, 46.2017185 ], + [ 6.039315, 46.20367 ], + [ 6.0375668, 46.2056878 ], + [ 6.0359729, 46.2077664 ], + [ 6.0345378, 46.2099 ], + [ 6.0332653, 46.2120828 ], + [ 6.0321591, 46.2143088 ], + [ 6.0312221, 46.2165719 ], + [ 6.0304569, 46.218866 ], + [ 6.0298658, 46.2211848 ], + [ 6.0294502, 46.2235218 ], + [ 6.0292114, 46.2258708 ], + [ 6.02915, 46.2282252 ], + [ 6.0292662, 46.2305786 ], + [ 6.0295598, 46.2329245 ], + [ 6.03003, 46.2352566 ], + [ 6.030405, 46.2365998 ], + [ 6.0322383, 46.2375954 ], + [ 6.0336528, 46.2385514 ], + [ 6.0388915, 46.2351721 ], + [ 6.0421279, 46.233309 ], + [ 6.0461113, 46.2313935 ], + [ 6.046147, 46.2314222 ], + [ 6.0462191, 46.2314958 ], + [ 6.0463245, 46.2316406 ], + [ 6.0465269, 46.2319315 ], + [ 6.0472802, 46.2330956 ], + [ 6.0474518, 46.2334037 ], + [ 6.047666, 46.2332938 ], + [ 6.0479287, 46.2331719 ], + [ 6.0480063, 46.2331499 ], + [ 6.0480296, 46.2331599 ], + [ 6.0482131, 46.2333114 ], + [ 6.0484784, 46.2334811 ], + [ 6.0490088, 46.2338817 ], + [ 6.0495062, 46.234289 ], + [ 6.0495621, 46.2343822 ], + [ 6.0496731, 46.2345281 ], + [ 6.049662, 46.2345461 ], + [ 6.0499857, 46.2348651 ], + [ 6.0502982, 46.2351392 ], + [ 6.0505964, 46.2355373 ], + [ 6.0507172, 46.2357205 ], + [ 6.0508327, 46.2358635 ], + [ 6.0510762, 46.2364666 ], + [ 6.0511618, 46.2365725 ], + [ 6.0512473, 46.2367278 ], + [ 6.0513331, 46.2369085 ], + [ 6.0515039999999996, 46.2371682 ], + [ 6.0515763, 46.2372859 ], + [ 6.0517014, 46.2374709 ], + [ 6.0517194, 46.2375501 ], + [ 6.0518702, 46.2377365 ], + [ 6.0520151, 46.2378901 ], + [ 6.0521554, 46.2380967 ], + [ 6.0520902, 46.2382323 ], + [ 6.0527063, 46.2388075 ], + [ 6.0534633, 46.2395353 ], + [ 6.0534495, 46.2395413 ], + [ 6.054526, 46.2405109 ], + [ 6.0546363, 46.2404882 ], + [ 6.0558876, 46.2416581 ], + [ 6.0564093, 46.2419009 ], + [ 6.0571247, 46.2421743 ], + [ 6.0577615, 46.2426261 ], + [ 6.0580414, 46.2428496 ], + [ 6.0582099, 46.2430367 ], + [ 6.0586824, 46.2436021 ], + [ 6.0590773, 46.2439353 ], + [ 6.0601074, 46.2448406 ], + [ 6.0604109, 46.2450089 ], + [ 6.0609013, 46.2450792 ], + [ 6.0614217, 46.2450861 ], + [ 6.0622245, 46.2454136 ], + [ 6.0633459, 46.2458015 ], + [ 6.0636433, 46.2454185 ], + [ 6.0636699, 46.2453703 ], + [ 6.0637606, 46.2452682 ], + [ 6.0637511, 46.2452516 ], + [ 6.0637844, 46.2452287 ], + [ 6.0638216, 46.2451589 ], + [ 6.0638742, 46.2451107 ], + [ 6.0638658, 46.2450892 ], + [ 6.0639033, 46.2450545 ], + [ 6.0639338, 46.2450323 ], + [ 6.0640205, 46.2449075 ], + [ 6.0640665, 46.244823 ], + [ 6.0640692, 46.2448013 ], + [ 6.0640982, 46.2447852 ], + [ 6.0641327, 46.2447243 ], + [ 6.0641443, 46.2446553 ], + [ 6.0642072, 46.2446488 ], + [ 6.0643073, 46.2445843 ], + [ 6.0643463, 46.2445853 ], + [ 6.0643553, 46.2445363 ], + [ 6.0644155, 46.244512 ], + [ 6.0644259, 46.2444836 ], + [ 6.0644792, 46.2444626 ], + [ 6.0645274, 46.2444038 ], + [ 6.0645674, 46.2443248 ], + [ 6.0646372, 46.244289 ], + [ 6.0647406, 46.2442598 ], + [ 6.0647891, 46.2441977 ], + [ 6.0648265, 46.2441852 ], + [ 6.0648681, 46.2441311 ], + [ 6.0649321, 46.2440957 ], + [ 6.0649519, 46.2440512 ], + [ 6.0649727, 46.2440523 ], + [ 6.0650015, 46.2440235 ], + [ 6.0650067, 46.2439784 ], + [ 6.0650749, 46.2439501 ], + [ 6.0651447, 46.2438847 ], + [ 6.0651785, 46.2438375 ], + [ 6.0652108, 46.2437996 ], + [ 6.0652008, 46.2437776 ], + [ 6.0653274, 46.2436616 ], + [ 6.0653233, 46.2436374 ], + [ 6.0653907, 46.2435952 ], + [ 6.0653677, 46.2435562 ], + [ 6.0654365, 46.2435237 ], + [ 6.065428, 46.2435045 ], + [ 6.065483, 46.2434189 ], + [ 6.0655561, 46.243376 ], + [ 6.0656342, 46.2433674 ], + [ 6.0656957, 46.2432425 ], + [ 6.0657233, 46.2432289 ], + [ 6.065728, 46.2432035 ], + [ 6.0658415, 46.2431566 ], + [ 6.0658657, 46.2431175 ], + [ 6.0659084, 46.2430991 ], + [ 6.0658686, 46.2430751 ], + [ 6.0658704, 46.2430562 ], + [ 6.0658322, 46.2430352 ], + [ 6.0658139, 46.2430069 ], + [ 6.0658668, 46.2429623 ], + [ 6.0659041, 46.24295 ], + [ 6.0659388, 46.2429102 ], + [ 6.0660038, 46.242883 ], + [ 6.0660301, 46.2428302 ], + [ 6.0661013, 46.2428074 ], + [ 6.0661636, 46.242831699999996 ], + [ 6.0661959, 46.2427762 ], + [ 6.066243, 46.2427887 ], + [ 6.0662557, 46.242743 ], + [ 6.0663007, 46.2427197 ], + [ 6.0663188, 46.2426707 ], + [ 6.066347, 46.2426383 ], + [ 6.0664106, 46.2426039 ], + [ 6.0664222, 46.2425717 ], + [ 6.0664655, 46.2425563 ], + [ 6.0665156, 46.2425595 ], + [ 6.0665196, 46.2425353 ], + [ 6.0665037, 46.2425106 ], + [ 6.0665169, 46.2424879 ], + [ 6.0665651, 46.2424928 ], + [ 6.0665715, 46.2424506 ], + [ 6.0666284, 46.2423886 ], + [ 6.0666615, 46.2423689 ], + [ 6.0666603, 46.2423396 ], + [ 6.0666745, 46.2423278 ], + [ 6.066696, 46.242279 ], + [ 6.0667318, 46.2422686 ], + [ 6.0667679, 46.2422707 ], + [ 6.0667799, 46.2422421 ], + [ 6.0668011, 46.2422163 ], + [ 6.0668449, 46.2421812 ], + [ 6.0668766, 46.242186 ], + [ 6.066906, 46.2421274 ], + [ 6.0669322, 46.2421283 ], + [ 6.0669304, 46.2420919 ], + [ 6.0669558, 46.2420794 ], + [ 6.0670111, 46.2420176 ], + [ 6.0670686, 46.2419979 ], + [ 6.0670708, 46.2419666 ], + [ 6.0670926, 46.2419385 ], + [ 6.0671599, 46.2419158 ], + [ 6.0671689, 46.2419019 ], + [ 6.0671612, 46.2418644 ], + [ 6.067198, 46.2418596 ], + [ 6.0672163, 46.2418343 ], + [ 6.0672476, 46.2418271 ], + [ 6.0672755, 46.2418078 ], + [ 6.0672862, 46.241782 ], + [ 6.0676184, 46.2418802 ], + [ 6.0681971, 46.2419742 ], + [ 6.0695519, 46.2411669 ], + [ 6.0702184, 46.2416878 ], + [ 6.0708998, 46.2413098 ], + [ 6.0713826, 46.2416815 ], + [ 6.0718096, 46.2421922 ], + [ 6.0730249, 46.2413491 ], + [ 6.0734816, 46.2419468 ], + [ 6.0737633, 46.2422862 ], + [ 6.0728169, 46.2431134 ], + [ 6.0735362, 46.2437118 ], + [ 6.073869, 46.2437232 ], + [ 6.0748673, 46.2435626 ], + [ 6.0751722, 46.2437953 ], + [ 6.0755552, 46.24359 ], + [ 6.077155, 46.2446706 ], + [ 6.0778291, 46.2442293 ], + [ 6.0783916, 46.2445905 ], + [ 6.0785078, 46.2446623 ], + [ 6.0787631, 46.2448944 ], + [ 6.0789671, 46.2450367 ], + [ 6.0791897, 46.2451601 ], + [ 6.079402, 46.2453038 ], + [ 6.0795252, 46.2454037 ], + [ 6.0807437, 46.2455991 ], + [ 6.0819587, 46.245799 ], + [ 6.0825169, 46.2453925 ], + [ 6.0825741, 46.2454306 ], + [ 6.0827952, 46.2455994 ], + [ 6.0828164, 46.2456266 ], + [ 6.0828344, 46.2456642 ], + [ 6.0828503, 46.2457475 ], + [ 6.0828659, 46.2457947 ], + [ 6.0828875, 46.2458343 ], + [ 6.0829304, 46.2458954 ], + [ 6.082991, 46.2459674 ], + [ 6.0831082, 46.2460817 ], + [ 6.083163, 46.2461416 ], + [ 6.0833444, 46.246323 ], + [ 6.0834455, 46.2464193 ], + [ 6.083612, 46.2465657 ], + [ 6.083652, 46.2465944 ], + [ 6.0836891, 46.2466271 ], + [ 6.0838484, 46.2467277 ], + [ 6.0838963, 46.2467513 ], + [ 6.0840612, 46.2468503 ], + [ 6.0841533, 46.2468979 ], + [ 6.0843393, 46.247006 ], + [ 6.084392, 46.247022 ], + [ 6.0844081, 46.2470154 ], + [ 6.0855304, 46.2462011 ], + [ 6.0856184, 46.2461144 ], + [ 6.0856314, 46.2460814 ], + [ 6.0855401, 46.2459637 ], + [ 6.0880561, 46.2471256 ], + [ 6.0881535, 46.2462973 ], + [ 6.0885125, 46.2458806 ], + [ 6.0906864, 46.2451252 ], + [ 6.0923284, 46.2438178 ], + [ 6.092386, 46.2436966 ], + [ 6.0933298, 46.2429003 ], + [ 6.0935385, 46.2430443 ], + [ 6.0950282, 46.24194 ], + [ 6.0954361, 46.2416261 ], + [ 6.0970018, 46.2405119 ], + [ 6.0990618, 46.2390648 ], + [ 6.1014504, 46.2376466 ], + [ 6.1018122, 46.237879 ], + [ 6.1054739, 46.2402307 ], + [ 6.1068531, 46.2411708 ], + [ 6.1088274, 46.2398703 ], + [ 6.1207862, 46.2480154 ], + [ 6.1202939, 46.248503 ], + [ 6.1209109999999995, 46.2488307 ], + [ 6.1235784, 46.2506481 ], + [ 6.1244681, 46.2512542 ], + [ 6.1238428, 46.2518371 ], + [ 6.1244574, 46.2525925 ], + [ 6.1242787, 46.25264 ], + [ 6.1240898, 46.2526655 ], + [ 6.1240684, 46.2526436 ], + [ 6.1239958, 46.252611 ], + [ 6.123916, 46.2526081 ], + [ 6.123808, 46.2526778 ], + [ 6.1236425, 46.2526939 ], + [ 6.123459, 46.2527183 ], + [ 6.1234377, 46.2528245 ], + [ 6.123343, 46.2529061 ], + [ 6.1231569, 46.252902399999996 ], + [ 6.1230792, 46.2529192 ], + [ 6.1230379, 46.2529916 ], + [ 6.1230822, 46.2530888 ], + [ 6.1230468, 46.2531334 ], + [ 6.122585, 46.2532727 ], + [ 6.1223108, 46.2533881 ], + [ 6.1222386, 46.2534134 ], + [ 6.1221538, 46.2533991 ], + [ 6.1221088, 46.2534099 ], + [ 6.1219975, 46.2534763 ], + [ 6.1219844, 46.2535007 ], + [ 6.1218126999999996, 46.2536022 ], + [ 6.1217533, 46.2535974 ], + [ 6.1213781, 46.2538946 ], + [ 6.1212885, 46.2538912 ], + [ 6.1212032, 46.2539695 ], + [ 6.1211332, 46.2541331 ], + [ 6.1210803, 46.2541502 ], + [ 6.1210416, 46.2542805 ], + [ 6.1210162, 46.2542909 ], + [ 6.1209503, 46.2543992 ], + [ 6.1208879, 46.254436 ], + [ 6.1208295, 46.2545556 ], + [ 6.1209032, 46.2549074 ], + [ 6.1208203, 46.2549268 ], + [ 6.1208302, 46.2549668 ], + [ 6.121041, 46.2551323 ], + [ 6.1211005, 46.2552253 ], + [ 6.1212331, 46.2553535 ], + [ 6.1213407, 46.255498 ], + [ 6.1215318, 46.2557281 ], + [ 6.1216084, 46.2557957 ], + [ 6.1219204, 46.2560436 ], + [ 6.1221232, 46.2560807 ], + [ 6.1221388, 46.2561087 ], + [ 6.1221761, 46.2561177 ], + [ 6.1222552, 46.2561191 ], + [ 6.1225016, 46.2561997 ], + [ 6.1226441, 46.2563724 ], + [ 6.1227526, 46.2564043 ], + [ 6.1227548, 46.2564516 ], + [ 6.1224929, 46.2566794 ], + [ 6.1223365, 46.2568466 ], + [ 6.122304, 46.2569325 ], + [ 6.1221788, 46.2570331 ], + [ 6.1219872, 46.2572356 ], + [ 6.121996, 46.2572662 ], + [ 6.1218599, 46.257334 ], + [ 6.1217704, 46.2574561 ], + [ 6.1215894, 46.2576339 ], + [ 6.121514, 46.2577022 ], + [ 6.1215556, 46.2577217 ], + [ 6.1217464, 46.2578519 ], + [ 6.122044, 46.2580083 ], + [ 6.1221636, 46.258031 ], + [ 6.122535, 46.2581781 ], + [ 6.1197471, 46.260839 ], + [ 6.1193068, 46.2612592 ], + [ 6.1200569, 46.2616569 ], + [ 6.1180828, 46.2634483 ], + [ 6.1200791, 46.2646468 ], + [ 6.119982, 46.2648305 ], + [ 6.1197197, 46.264932 ], + [ 6.1196599, 46.2649522 ], + [ 6.1190796, 46.2651776 ], + [ 6.1187778, 46.26531 ], + [ 6.1181524, 46.2655438 ], + [ 6.1180525, 46.2655956 ], + [ 6.1176968, 46.2657366 ], + [ 6.1173169, 46.2658815 ], + [ 6.1171881, 46.2659156 ], + [ 6.1166257, 46.2661207 ], + [ 6.1164283, 46.2661866 ], + [ 6.116353, 46.266196 ], + [ 6.1162758, 46.266242 ], + [ 6.1162109, 46.2662853 ], + [ 6.1154257, 46.2659423 ], + [ 6.1134746, 46.2677003 ], + [ 6.1116545, 46.269039 ], + [ 6.1118954, 46.2691688 ], + [ 6.1098993, 46.2705746 ], + [ 6.1100458, 46.2706501 ], + [ 6.1105033, 46.2709016 ], + [ 6.1116099, 46.2715691 ], + [ 6.1123789, 46.2719922 ], + [ 6.1127763, 46.2721593 ], + [ 6.1128308, 46.272164 ], + [ 6.1128426, 46.2722605 ], + [ 6.1132598, 46.2723684 ], + [ 6.1135142, 46.2725525 ], + [ 6.1116593, 46.2733073 ], + [ 6.1117961, 46.2735014 ], + [ 6.1111706, 46.2737133 ], + [ 6.111132, 46.2740122 ], + [ 6.1102425, 46.2741817 ], + [ 6.1102827, 46.27435 ], + [ 6.1101773, 46.2743813 ], + [ 6.1100527, 46.2744618 ], + [ 6.109908, 46.2745105 ], + [ 6.1097508, 46.2745481 ], + [ 6.109644, 46.2745975 ], + [ 6.1095548, 46.2746578 ], + [ 6.1095042, 46.2746666 ], + [ 6.1091206, 46.2747582 ], + [ 6.1090154, 46.2747677 ], + [ 6.1089766, 46.2747672 ], + [ 6.1088583, 46.2747785 ], + [ 6.1088383, 46.2747769 ], + [ 6.1087973, 46.2747426 ], + [ 6.1086457, 46.2747687 ], + [ 6.1085915, 46.2747309 ], + [ 6.108534, 46.274742 ], + [ 6.1084997, 46.2748177 ], + [ 6.1084098000000004, 46.2748343 ], + [ 6.1083707, 46.2749267 ], + [ 6.1082097, 46.2749635 ], + [ 6.1082377, 46.275066699999996 ], + [ 6.1081306, 46.2750965 ], + [ 6.1080821, 46.2751468 ], + [ 6.1080206, 46.275229 ], + [ 6.1079174, 46.2753379 ], + [ 6.1079222, 46.2753845 ], + [ 6.1078721, 46.2754282 ], + [ 6.107906, 46.2754855 ], + [ 6.1078551, 46.2755154 ], + [ 6.1078715, 46.2755814 ], + [ 6.1078168, 46.2755856 ], + [ 6.1077815, 46.2756529 ], + [ 6.1077876, 46.2757186 ], + [ 6.1077234, 46.2757777 ], + [ 6.1077047, 46.2758715 ], + [ 6.1076516, 46.275874 ], + [ 6.1076553, 46.2759452 ], + [ 6.107638, 46.2760345 ], + [ 6.1075612, 46.2760648 ], + [ 6.1075597, 46.2761406 ], + [ 6.1074976, 46.2762084 ], + [ 6.1074422, 46.2762167 ], + [ 6.1074463, 46.2762608 ], + [ 6.1073211, 46.2764021 ], + [ 6.1072811, 46.2763681 ], + [ 6.1072335, 46.2763784 ], + [ 6.1071678, 46.2764713 ], + [ 6.1071544, 46.2765376 ], + [ 6.1070458, 46.2766052 ], + [ 6.1070004, 46.2765982 ], + [ 6.1069696, 46.2766498 ], + [ 6.1068834, 46.2766906 ], + [ 6.1067323, 46.2767176 ], + [ 6.1067001, 46.2767508 ], + [ 6.1066253, 46.2767823 ], + [ 6.1065269, 46.27675 ], + [ 6.1063778, 46.276785 ], + [ 6.1062388, 46.2767237 ], + [ 6.1061585, 46.2767439 ], + [ 6.1060925, 46.2768418 ], + [ 6.106044, 46.2768482 ], + [ 6.1059885, 46.2768872 ], + [ 6.1058833, 46.2768746 ], + [ 6.1058306, 46.2768568 ], + [ 6.1057787, 46.2768997 ], + [ 6.105739, 46.2768658 ], + [ 6.1057079, 46.2768869 ], + [ 6.1056718, 46.2768747 ], + [ 6.105678, 46.2769345 ], + [ 6.1056211, 46.2770084 ], + [ 6.105651, 46.2770332 ], + [ 6.1056803, 46.2770403 ], + [ 6.1056566, 46.2771093 ], + [ 6.1056116, 46.2771161 ], + [ 6.1056321, 46.2772302 ], + [ 6.105559, 46.277304 ], + [ 6.1055413, 46.2773629 ], + [ 6.1054629, 46.277423 ], + [ 6.1053705, 46.2774596 ], + [ 6.1053503, 46.2775465 ], + [ 6.1052422, 46.2775881 ], + [ 6.105256, 46.2776476 ], + [ 6.1051711, 46.2777373 ], + [ 6.105157, 46.277788 ], + [ 6.105109, 46.2778341 ], + [ 6.1049946, 46.2779564 ], + [ 6.1050122, 46.2780088 ], + [ 6.1049214, 46.2780909 ], + [ 6.1048128, 46.2782344 ], + [ 6.1046281, 46.2783009 ], + [ 6.1041768, 46.2784194 ], + [ 6.1038095, 46.2785315 ], + [ 6.103464, 46.2786028 ], + [ 6.1033863, 46.2786472 ], + [ 6.1033577, 46.2786416 ], + [ 6.1032654, 46.2786655 ], + [ 6.1033649, 46.2788028 ], + [ 6.1037635, 46.279285 ], + [ 6.1039946, 46.2795815 ], + [ 6.1040356, 46.2796489 ], + [ 6.1040918, 46.2796945 ], + [ 6.1041584, 46.2798129 ], + [ 6.1041681, 46.2798479 ], + [ 6.1042044, 46.2798846 ], + [ 6.1042147, 46.2799251 ], + [ 6.1042454, 46.2799653 ], + [ 6.1042713, 46.2800301 ], + [ 6.1043422, 46.2801561 ], + [ 6.1044266, 46.2803242 ], + [ 6.1045177, 46.2805643 ], + [ 6.1045838, 46.2809539 ], + [ 6.1046391, 46.2811286 ], + [ 6.104663, 46.2813539 ], + [ 6.104713, 46.281554 ], + [ 6.1047206, 46.2817057 ], + [ 6.104709, 46.2819768 ], + [ 6.1046905, 46.2820917 ], + [ 6.1047955, 46.2823802 ], + [ 6.1048869, 46.2826045 ], + [ 6.1049769, 46.2827794 ], + [ 6.105084, 46.282961 ], + [ 6.1043704, 46.2835339 ], + [ 6.1046859, 46.2838472 ], + [ 6.1044257, 46.2842052 ], + [ 6.1044122, 46.28419 ], + [ 6.1036053, 46.2845408 ], + [ 6.1023904, 46.2849203 ], + [ 6.1023898, 46.2849398 ], + [ 6.1027779, 46.2850773 ], + [ 6.1031119, 46.2852996 ], + [ 6.1034992, 46.2855807 ], + [ 6.1038766, 46.2861488 ], + [ 6.1044152, 46.2865693 ], + [ 6.1045597, 46.2869407 ], + [ 6.1045403, 46.2869764 ], + [ 6.1060808, 46.2877665 ], + [ 6.1073653, 46.2886965 ], + [ 6.108873, 46.289345 ], + [ 6.1097753, 46.2901312 ], + [ 6.1116177, 46.291499 ], + [ 6.1122654, 46.2925588 ], + [ 6.1130502, 46.2932908 ], + [ 6.1127411, 46.2935255 ], + [ 6.1132572, 46.2941274 ], + [ 6.1139322, 46.2943443 ], + [ 6.1139602, 46.2944169 ], + [ 6.1141077, 46.2944405 ], + [ 6.1145287, 46.2944918 ], + [ 6.1145487, 46.2944819 ], + [ 6.1145864, 46.2944988 ], + [ 6.1149673, 46.2945452 ], + [ 6.1150345, 46.2945306 ], + [ 6.1151963, 46.294474 ], + [ 6.1153084, 46.2944301 ], + [ 6.1154201, 46.2943545 ], + [ 6.1154518, 46.2943712 ], + [ 6.1155717, 46.2943307 ], + [ 6.1156476, 46.294311 ], + [ 6.115681, 46.2942698 ], + [ 6.1157716, 46.2942607 ], + [ 6.1158582, 46.294244 ], + [ 6.1159442, 46.2942104 ], + [ 6.115968, 46.2942178 ], + [ 6.1160335, 46.2941867 ], + [ 6.1160721, 46.2941441 ], + [ 6.1161312, 46.2941377 ], + [ 6.1161896, 46.2941053 ], + [ 6.1162292, 46.2940946 ], + [ 6.1162836, 46.2940399 ], + [ 6.1163176, 46.2940133 ], + [ 6.1163915, 46.2940323 ], + [ 6.1164738, 46.2940085 ], + [ 6.1165626, 46.2940152 ], + [ 6.1166359, 46.2940014 ], + [ 6.1167001, 46.2940285 ], + [ 6.1167411, 46.2940716 ], + [ 6.1167758, 46.2940918 ], + [ 6.116813, 46.2941426 ], + [ 6.1168786, 46.2941478 ], + [ 6.1169108, 46.2941946 ], + [ 6.1169127, 46.2942369 ], + [ 6.1170106, 46.294251 ], + [ 6.1170305, 46.2942774 ], + [ 6.1170765, 46.2942814 ], + [ 6.117206, 46.2943408 ], + [ 6.1172686, 46.2943759 ], + [ 6.1173098, 46.2943635 ], + [ 6.1173583, 46.2944054 ], + [ 6.11747, 46.294435 ], + [ 6.1175268, 46.2944586 ], + [ 6.1175816, 46.2944512 ], + [ 6.1176548, 46.2944841 ], + [ 6.1177074, 46.2944889 ], + [ 6.1178397, 46.2945439 ], + [ 6.1179238, 46.2945377 ], + [ 6.1180075, 46.294562 ], + [ 6.118044, 46.2945906 ], + [ 6.1181123, 46.2945667 ], + [ 6.1181605, 46.2945911 ], + [ 6.1182094, 46.2945825 ], + [ 6.1183005, 46.2945522 ], + [ 6.1183779, 46.2945547 ], + [ 6.1184577, 46.2945483 ], + [ 6.1185126, 46.2945277 ], + [ 6.1185582, 46.2945314 ], + [ 6.1186369, 46.2944903 ], + [ 6.118703, 46.2944806 ], + [ 6.1187519, 46.2944299 ], + [ 6.1188278, 46.294437 ], + [ 6.1189012, 46.2944256 ], + [ 6.1189319, 46.2944753 ], + [ 6.1190212, 46.2944515 ], + [ 6.1191131, 46.2944515 ], + [ 6.1191489, 46.2944108 ], + [ 6.1191882, 46.294402 ], + [ 6.1192222, 46.2944167 ], + [ 6.1192641, 46.2944116 ], + [ 6.119274, 46.2943792 ], + [ 6.1193008, 46.2943632 ], + [ 6.1193253, 46.294365 ], + [ 6.119344, 46.2943813 ], + [ 6.1193865, 46.2943838 ], + [ 6.1194339, 46.2943566 ], + [ 6.119484, 46.2943348 ], + [ 6.1196371, 46.2943172 ], + [ 6.1196747, 46.2943976 ], + [ 6.1197295, 46.2945461 ], + [ 6.1197318, 46.2946496 ], + [ 6.119779, 46.2947313 ], + [ 6.11978, 46.2948163 ], + [ 6.1197498, 46.2948851 ], + [ 6.1196078, 46.2949818 ], + [ 6.119464, 46.2950075 ], + [ 6.1194323, 46.295016 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSGG001", + "country" : "CHE", + "name" : [ + { + "text" : "LSGG Genève", + "lang" : "de-CH" + }, + { + "text" : "LSGG Genève", + "lang" : "fr-CH" + }, + { + "text" : "LSGG Genève", + "lang" : "it-CH" + }, + { + "text" : "LSGG Genève", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Skyguide Special Flight Office", + "lang" : "de-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "it-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.skyguide.ch/services/special-flights", + "email" : "specialflight@skyguide.ch", + "phone" : "0041439316236", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.8335801, 47.6719146 ], + [ 8.8334909, 47.6719382 ], + [ 8.833229, 47.6720116 ], + [ 8.8328556, 47.6720881 ], + [ 8.8325207, 47.6721702 ], + [ 8.8322423, 47.6722826 ], + [ 8.8319419, 47.6724425 ], + [ 8.8317268, 47.6726205 ], + [ 8.8314066, 47.6728484 ], + [ 8.8312223, 47.673026 ], + [ 8.8309977, 47.673222 ], + [ 8.8306878, 47.6734616 ], + [ 8.8304383, 47.6736625 ], + [ 8.8302198, 47.6737694 ], + [ 8.8298892, 47.6739856 ], + [ 8.8295072, 47.6741459 ], + [ 8.8290795, 47.6742454 ], + [ 8.8286394, 47.674319 ], + [ 8.8282092, 47.6743851 ], + [ 8.8276973, 47.6744464 ], + [ 8.8272406, 47.6744572 ], + [ 8.8269001, 47.6745169 ], + [ 8.8268267, 47.6745116 ], + [ 8.8264019, 47.6745625 ], + [ 8.8260801, 47.6746076 ], + [ 8.8257201, 47.6747174 ], + [ 8.8255554, 47.6747553 ], + [ 8.8252168, 47.6748257 ], + [ 8.8249624, 47.674898999999996 ], + [ 8.8246695, 47.6750301 ], + [ 8.8243933, 47.6751605 ], + [ 8.8239058, 47.675266 ], + [ 8.8234356, 47.6753327 ], + [ 8.8229906, 47.6754111 ], + [ 8.8226511, 47.6755084 ], + [ 8.8223315, 47.6755727 ], + [ 8.821942, 47.6756374 ], + [ 8.8215435, 47.6756765 ], + [ 8.8211599, 47.67578 ], + [ 8.8207066, 47.6759203 ], + [ 8.8203635, 47.6760413 ], + [ 8.8200282, 47.6761729 ], + [ 8.819742699999999, 47.6763031 ], + [ 8.819367, 47.6764515 ], + [ 8.8189053, 47.6766532 ], + [ 8.8185847, 47.6767731 ], + [ 8.8182606, 47.676956 ], + [ 8.8178663, 47.6770596 ], + [ 8.8174195, 47.6771332 ], + [ 8.8170713, 47.677186 ], + [ 8.8163732, 47.6772291 ], + [ 8.8156081, 47.6772536 ], + [ 8.8152575, 47.6772173 ], + [ 8.8146568, 47.6770328 ], + [ 8.8144161, 47.67687 ], + [ 8.8141291, 47.6767152 ], + [ 8.813597, 47.6765138 ], + [ 8.8131103, 47.676327 ], + [ 8.8128988, 47.6762595 ], + [ 8.8125322, 47.6762459 ], + [ 8.8120538, 47.6762234 ], + [ 8.8119355, 47.6761855 ], + [ 8.8116523, 47.6762102 ], + [ 8.8112502, 47.6761449 ], + [ 8.8109066, 47.676086 ], + [ 8.8105215, 47.6760338 ], + [ 8.8101022, 47.6760101 ], + [ 8.8096257, 47.6759924 ], + [ 8.8090511, 47.6759829 ], + [ 8.808636, 47.6759923 ], + [ 8.8082132, 47.6760917 ], + [ 8.8078619, 47.6761858 ], + [ 8.8074374, 47.6763465 ], + [ 8.807176, 47.6764421 ], + [ 8.8068128, 47.6765293 ], + [ 8.8063111, 47.6766988 ], + [ 8.8056349, 47.6769459 ], + [ 8.8048005, 47.6771267 ], + [ 8.8041606, 47.6773284 ], + [ 8.8036101, 47.6774473 ], + [ 8.8031611, 47.6774644 ], + [ 8.8027424, 47.6774333 ], + [ 8.8024243, 47.6773958 ], + [ 8.8020508, 47.6772759 ], + [ 8.801668, 47.67715 ], + [ 8.8014365, 47.6769801 ], + [ 8.8011096, 47.6767968 ], + [ 8.8007306, 47.6765575 ], + [ 8.8003131, 47.6762484 ], + [ 8.8000099, 47.6760415 ], + [ 8.7996823, 47.6758286 ], + [ 8.7994931, 47.6757203 ], + [ 8.7993218, 47.6756304 ], + [ 8.7987579, 47.676202 ], + [ 8.7982387, 47.6767278 ], + [ 8.7990917, 47.6771127 ], + [ 8.799038, 47.6776828 ], + [ 8.7999904, 47.6780441 ], + [ 8.8000025, 47.6781598 ], + [ 8.8001212, 47.6783104 ], + [ 8.8002439, 47.6784197 ], + [ 8.8004373, 47.6784939 ], + [ 8.8005911, 47.6785514 ], + [ 8.80085, 47.678748 ], + [ 8.8011443, 47.6789272 ], + [ 8.8012678, 47.6790705 ], + [ 8.8013812, 47.6793382 ], + [ 8.8014068, 47.6796229 ], + [ 8.8013871, 47.6798941 ], + [ 8.801335, 47.6800366 ], + [ 8.8012564, 47.6804432 ], + [ 8.801189, 47.6811916 ], + [ 8.8013804, 47.681254 ], + [ 8.8015517, 47.6813133 ], + [ 8.8018949, 47.6813208 ], + [ 8.8022936, 47.6812891 ], + [ 8.8027095, 47.6812752 ], + [ 8.8031087, 47.681259 ], + [ 8.8034985, 47.681268 ], + [ 8.8037845, 47.6812888 ], + [ 8.8041365, 47.6813476 ], + [ 8.8045181, 47.6814249 ], + [ 8.8046246, 47.681422 ], + [ 8.8048695, 47.6813308 ], + [ 8.805586, 47.6811298 ], + [ 8.8059473, 47.6810323 ], + [ 8.8062263, 47.6809399 ], + [ 8.8066223, 47.6810611 ], + [ 8.8074001, 47.6812678 ], + [ 8.8076597, 47.681262 ], + [ 8.8076847, 47.680778 ], + [ 8.8086672, 47.6800125 ], + [ 8.809242, 47.6798348 ], + [ 8.8130495, 47.679769 ], + [ 8.8127956, 47.6790626 ], + [ 8.813049, 47.6791062 ], + [ 8.8135384, 47.6791058 ], + [ 8.8138811, 47.6790936 ], + [ 8.814312900000001, 47.6790536 ], + [ 8.8146117, 47.6790203 ], + [ 8.8150321, 47.6789585 ], + [ 8.8154868, 47.6788696 ], + [ 8.8158345, 47.6788276 ], + [ 8.8160342, 47.6788227 ], + [ 8.8163736, 47.678815 ], + [ 8.8167671, 47.6788058 ], + [ 8.8171644, 47.6787516 ], + [ 8.817443, 47.6786772 ], + [ 8.8178575, 47.6786113 ], + [ 8.8183249, 47.6785338 ], + [ 8.8187164, 47.6784797 ], + [ 8.8189986, 47.6784457 ], + [ 8.8193589, 47.6783469 ], + [ 8.8197373, 47.678237 ], + [ 8.8200888, 47.678117 ], + [ 8.8203672, 47.6780362 ], + [ 8.8207079, 47.6779838 ], + [ 8.8211123, 47.6779463 ], + [ 8.8217698, 47.6778792 ], + [ 8.8222063, 47.6778245 ], + [ 8.82257, 47.67776 ], + [ 8.8229814, 47.6776714 ], + [ 8.8231715, 47.6775881 ], + [ 8.8236698, 47.6774481 ], + [ 8.826368, 47.6768953 ], + [ 8.8278043, 47.6768169 ], + [ 8.8283998, 47.6764157 ], + [ 8.8293712, 47.6755613 ], + [ 8.8301652, 47.6754304 ], + [ 8.8303772, 47.6753281 ], + [ 8.8306588, 47.6753059 ], + [ 8.8309907, 47.6752648 ], + [ 8.8312029, 47.6752029 ], + [ 8.831457, 47.6750849 ], + [ 8.8317149, 47.6749216 ], + [ 8.8320971, 47.6747669 ], + [ 8.8324494, 47.6746168 ], + [ 8.8328755, 47.6744894 ], + [ 8.8333248, 47.6743553 ], + [ 8.833760999999999, 47.6742323 ], + [ 8.8338337, 47.6742125 ], + [ 8.8339217, 47.6742961 ], + [ 8.8347237, 47.673996700000004 ], + [ 8.8349951, 47.6739046 ], + [ 8.8350001, 47.673904 ], + [ 8.835409, 47.6738501 ], + [ 8.8359643, 47.6738255 ], + [ 8.8362, 47.6736742 ], + [ 8.8416175, 47.6707089 ], + [ 8.8415398, 47.6706359 ], + [ 8.8415046, 47.6704683 ], + [ 8.8415153, 47.670182 ], + [ 8.8415532, 47.6699496 ], + [ 8.8416247, 47.6697231 ], + [ 8.8417407, 47.6695811 ], + [ 8.8419558, 47.6693736 ], + [ 8.8419759, 47.6693166 ], + [ 8.8420317, 47.6690955 ], + [ 8.84206, 47.6688138 ], + [ 8.842049, 47.6686177 ], + [ 8.842015, 47.6684661 ], + [ 8.8419889, 47.6682975 ], + [ 8.8419802, 47.6681247 ], + [ 8.8420327, 47.6680046 ], + [ 8.8420759, 47.6678754 ], + [ 8.8421083, 47.6677167 ], + [ 8.8422948, 47.6674696 ], + [ 8.8424703, 47.6673084 ], + [ 8.842816599999999, 47.6670597 ], + [ 8.8430409, 47.6668861 ], + [ 8.8432563, 47.6667232 ], + [ 8.8433896, 47.66654 ], + [ 8.843552, 47.6663267 ], + [ 8.8437211, 47.6661726 ], + [ 8.8441304, 47.6660434 ], + [ 8.8445483, 47.6659548 ], + [ 8.8450091, 47.6658492 ], + [ 8.8453161, 47.6657862 ], + [ 8.8455142, 47.6657523 ], + [ 8.8453661, 47.6656616 ], + [ 8.8452079, 47.6655005 ], + [ 8.8450706, 47.6652522 ], + [ 8.8454046, 47.6651366 ], + [ 8.8452797, 47.664791 ], + [ 8.8456305, 47.6646813 ], + [ 8.8459946, 47.6646347 ], + [ 8.8464238, 47.6646582 ], + [ 8.8468357, 47.6645922 ], + [ 8.8474103, 47.6644214 ], + [ 8.8477866, 47.6642999 ], + [ 8.8482684, 47.6641422 ], + [ 8.8488411, 47.6639309 ], + [ 8.8491773, 47.6638062 ], + [ 8.8496704, 47.6636636 ], + [ 8.8500306, 47.6635657 ], + [ 8.8501908, 47.6634271 ], + [ 8.8503233, 47.6633066 ], + [ 8.8505318, 47.663261 ], + [ 8.8507979, 47.663255 ], + [ 8.851219799999999, 47.6632229 ], + [ 8.8514775, 47.6631829 ], + [ 8.8517425, 47.6631319 ], + [ 8.852152199999999, 47.6630165 ], + [ 8.8527459, 47.6629058 ], + [ 8.8530788, 47.6627848 ], + [ 8.8534015, 47.6626828 ], + [ 8.8537952, 47.662561 ], + [ 8.8540781, 47.6624353 ], + [ 8.8543801, 47.6622779 ], + [ 8.8546123, 47.6621536 ], + [ 8.8548566, 47.6620461 ], + [ 8.8551575, 47.6618771 ], + [ 8.855412, 47.661657 ], + [ 8.855709300000001, 47.6614476 ], + [ 8.8558607, 47.6612873 ], + [ 8.8561047, 47.6610451 ], + [ 8.8562699, 47.6608766 ], + [ 8.8564348, 47.660693 ], + [ 8.8566319, 47.6604703 ], + [ 8.8563644, 47.6603018 ], + [ 8.8564497, 47.6601639 ], + [ 8.8567375, 47.6599391 ], + [ 8.8581006, 47.6591354 ], + [ 8.8583829, 47.6592371 ], + [ 8.8592255, 47.6587602 ], + [ 8.8592816, 47.6586802 ], + [ 8.8595752, 47.6585482 ], + [ 8.859585, 47.6585436 ], + [ 8.8597873, 47.6584528 ], + [ 8.8601326, 47.6583896 ], + [ 8.8605145, 47.658359 ], + [ 8.860886, 47.6583713 ], + [ 8.8612755, 47.6584368 ], + [ 8.8615401, 47.6584996 ], + [ 8.8618532, 47.6585073 ], + [ 8.8622088, 47.6585162 ], + [ 8.8632454, 47.6585417 ], + [ 8.8633797, 47.658585 ], + [ 8.863711200000001, 47.658536 ], + [ 8.8639085, 47.6584436 ], + [ 8.8641203, 47.6584289 ], + [ 8.864494, 47.6584027 ], + [ 8.8651595, 47.6583653 ], + [ 8.865637, 47.6583594 ], + [ 8.8663573, 47.6582856 ], + [ 8.8664336, 47.6582777 ], + [ 8.8667473, 47.6582134 ], + [ 8.867228, 47.658115 ], + [ 8.8673115, 47.6580636 ], + [ 8.8675113, 47.6579412 ], + [ 8.8676472, 47.657858 ], + [ 8.8677418, 47.6577562 ], + [ 8.8693379, 47.6581008 ], + [ 8.8695472, 47.657965 ], + [ 8.8698801, 47.6578108 ], + [ 8.870232, 47.6576858 ], + [ 8.8705617, 47.6576323 ], + [ 8.8712556, 47.6576884 ], + [ 8.8716477, 47.6576675 ], + [ 8.8722285, 47.6576044 ], + [ 8.8726051, 47.6574983 ], + [ 8.8728519, 47.657425 ], + [ 8.8733187, 47.6573014 ], + [ 8.8736883, 47.657187 ], + [ 8.8740598, 47.6571385 ], + [ 8.8744734, 47.6570783 ], + [ 8.8749237, 47.6570837 ], + [ 8.8751659, 47.6570844 ], + [ 8.8754468, 47.6570722 ], + [ 8.8754008, 47.6549488 ], + [ 8.8755598, 47.6549728 ], + [ 8.8757204, 47.6549909 ], + [ 8.8758822, 47.6550029 ], + [ 8.8760447, 47.6550088 ], + [ 8.8783067, 47.6550483 ], + [ 8.8785164, 47.6550492 ], + [ 8.8787259, 47.6550445 ], + [ 8.878935, 47.6550342 ], + [ 8.8791434, 47.6550183 ], + [ 8.8793506, 47.654997 ], + [ 8.8795565, 47.6549701 ], + [ 8.879760600000001, 47.6549378 ], + [ 8.8805255, 47.6547869 ], + [ 8.8809168, 47.6547045 ], + [ 8.8813049, 47.6546154 ], + [ 8.881689399999999, 47.6545196 ], + [ 8.8820702, 47.6544171 ], + [ 8.8824469, 47.654308 ], + [ 8.8828194, 47.6541925 ], + [ 8.8831873, 47.6540706 ], + [ 8.8835505, 47.6539423 ], + [ 8.8845612, 47.653574 ], + [ 8.8847925, 47.6534856 ], + [ 8.8850184, 47.6533911 ], + [ 8.8852385, 47.6532906 ], + [ 8.8854525, 47.6531842 ], + [ 8.885660099999999, 47.6530721 ], + [ 8.8858608, 47.6529546 ], + [ 8.8860545, 47.6528317 ], + [ 8.8862407, 47.6527037 ], + [ 8.8892107, 47.6505786 ], + [ 8.8894652, 47.6504011 ], + [ 8.8897261, 47.6502278 ], + [ 8.8899934, 47.6500591 ], + [ 8.8902668, 47.6498949 ], + [ 8.8905461, 47.6497354 ], + [ 8.8908314, 47.6495806 ], + [ 8.8911289, 47.6494273 ], + [ 8.8914322, 47.6492792 ], + [ 8.891741, 47.6491364 ], + [ 8.8920551, 47.6489989 ], + [ 8.8923742, 47.648867 ], + [ 8.8926983, 47.6487406 ], + [ 8.8935025, 47.6484392 ], + [ 8.8936718, 47.6483847 ], + [ 8.8938446, 47.6483352 ], + [ 8.8940204, 47.6482909 ], + [ 8.894199, 47.648252 ], + [ 8.8943799, 47.6482183 ], + [ 8.8945628, 47.6481901 ], + [ 8.8947473, 47.6481674 ], + [ 8.8949332, 47.6481501 ], + [ 8.8950647, 47.6481418 ], + [ 8.8948542, 47.644262499999996 ], + [ 8.8946932, 47.6436118 ], + [ 8.8947288, 47.6434539 ], + [ 8.8933654, 47.6433965 ], + [ 8.8927184, 47.6434342 ], + [ 8.8921143, 47.6434895 ], + [ 8.8915542, 47.6436036 ], + [ 8.8786168, 47.6464022 ], + [ 8.8783956, 47.6464372 ], + [ 8.8782195, 47.6465698 ], + [ 8.8778802, 47.6467863 ], + [ 8.8775916, 47.6469734 ], + [ 8.8772737, 47.6471547 ], + [ 8.8771045, 47.6472367 ], + [ 8.8766322, 47.647428 ], + [ 8.8760091, 47.6476452 ], + [ 8.8754579, 47.6477824 ], + [ 8.8750137, 47.6478779 ], + [ 8.874273, 47.6480535 ], + [ 8.8735255, 47.6482221 ], + [ 8.8726532, 47.6484226 ], + [ 8.8717844, 47.6485674 ], + [ 8.8712143, 47.6486211 ], + [ 8.8703783, 47.6487467 ], + [ 8.8700568, 47.6487945 ], + [ 8.8694383, 47.6489371 ], + [ 8.8689782, 47.6490608 ], + [ 8.868399, 47.649272 ], + [ 8.8678972, 47.6494193 ], + [ 8.8674663, 47.6495758 ], + [ 8.8670493, 47.6497547 ], + [ 8.8667433, 47.6499462 ], + [ 8.8663632, 47.6501353 ], + [ 8.8609171, 47.6541057 ], + [ 8.8611439, 47.6542176 ], + [ 8.8615638, 47.6544247 ], + [ 8.8623119, 47.6547368 ], + [ 8.8628833, 47.6549752 ], + [ 8.8623187, 47.6552699 ], + [ 8.8618315, 47.655718 ], + [ 8.861264, 47.65624 ], + [ 8.8611495, 47.6563457 ], + [ 8.8608903, 47.6565492 ], + [ 8.8606018, 47.6567751 ], + [ 8.8600392, 47.6571418 ], + [ 8.8597324, 47.6572743 ], + [ 8.859289, 47.6574658 ], + [ 8.8587905, 47.6577418 ], + [ 8.8583866, 47.657914 ], + [ 8.8578718, 47.6580796 ], + [ 8.8574021, 47.6581922 ], + [ 8.8569736, 47.6583144 ], + [ 8.8567723, 47.6583798 ], + [ 8.8566743, 47.6583262 ], + [ 8.8564415, 47.6583318 ], + [ 8.856291, 47.6584318 ], + [ 8.8560818, 47.6585718 ], + [ 8.8556664, 47.6589071 ], + [ 8.8553053, 47.6591904 ], + [ 8.8547802, 47.6594683 ], + [ 8.8544224, 47.6596273 ], + [ 8.8539221, 47.6597733 ], + [ 8.853433, 47.6600289 ], + [ 8.852943, 47.6602201 ], + [ 8.8523024, 47.6603817 ], + [ 8.8518141, 47.6604202 ], + [ 8.8512823, 47.66045 ], + [ 8.8508982, 47.6604303 ], + [ 8.8507718, 47.6604329 ], + [ 8.8506184, 47.6606731 ], + [ 8.8500561, 47.6607761 ], + [ 8.8497116, 47.6608694 ], + [ 8.8493377, 47.6610474 ], + [ 8.8490424, 47.6612382 ], + [ 8.8487362, 47.6614595 ], + [ 8.8485059, 47.6616854 ], + [ 8.8482988, 47.6618752 ], + [ 8.8479838, 47.6620462 ], + [ 8.847672, 47.6621211 ], + [ 8.847346, 47.6621285 ], + [ 8.8471775, 47.6621145 ], + [ 8.8470416, 47.6620729 ], + [ 8.8469622, 47.6621196 ], + [ 8.8467302, 47.6621596 ], + [ 8.8464905, 47.6621597 ], + [ 8.8459223, 47.6621334 ], + [ 8.8454949, 47.6621161 ], + [ 8.8451732, 47.6621577 ], + [ 8.8448473, 47.6621698 ], + [ 8.8444423, 47.6622123 ], + [ 8.8441704, 47.6622822 ], + [ 8.8437054, 47.6624166 ], + [ 8.8433969, 47.6625811 ], + [ 8.8430816, 47.6628028 ], + [ 8.8428907, 47.6629805 ], + [ 8.8426963, 47.6630863 ], + [ 8.842634499999999, 47.6631725 ], + [ 8.842488, 47.6633603 ], + [ 8.8422573, 47.6632875 ], + [ 8.8420212, 47.6632364 ], + [ 8.8418035, 47.6632149 ], + [ 8.8416202, 47.6632413 ], + [ 8.8414527, 47.6633242 ], + [ 8.8413547, 47.6633651 ], + [ 8.8410768, 47.6634612 ], + [ 8.8409529, 47.6635273 ], + [ 8.8408747, 47.6636236 ], + [ 8.8408317, 47.6637556 ], + [ 8.8407726, 47.6639138 ], + [ 8.8405986, 47.6640688 ], + [ 8.8403521, 47.6642497 ], + [ 8.840198000000001, 47.6643704 ], + [ 8.8399776, 47.664596 ], + [ 8.8398071, 47.6648519 ], + [ 8.8396779, 47.6650637 ], + [ 8.8395231, 47.6652814 ], + [ 8.8393362, 47.665515 ], + [ 8.8392402, 47.6656294 ], + [ 8.8390925, 47.6658353 ], + [ 8.838967, 47.6661266 ], + [ 8.8388297, 47.6663478 ], + [ 8.8387376, 47.6665142 ], + [ 8.8385569, 47.6668556 ], + [ 8.8383116, 47.6671473 ], + [ 8.8381389, 47.6674777 ], + [ 8.8379724, 47.6677917 ], + [ 8.8377267, 47.668196 ], + [ 8.8374802, 47.6685678 ], + [ 8.8372357, 47.6688881 ], + [ 8.8369385, 47.6692326 ], + [ 8.8367046, 47.6695466 ], + [ 8.8364632, 47.6698283 ], + [ 8.836186099999999, 47.670117 ], + [ 8.8359309, 47.6703474 ], + [ 8.8357092, 47.6705885 ], + [ 8.8354534, 47.6707678 ], + [ 8.8351072, 47.6709898 ], + [ 8.834859, 47.6712041 ], + [ 8.8345948, 47.6713791 ], + [ 8.834276599999999, 47.67156 ], + [ 8.8339966, 47.6717354 ], + [ 8.8337223, 47.671877 ], + [ 8.8335801, 47.6719146 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "WZV0034", + "country" : "CHE", + "name" : [ + { + "text" : "Wasser- und Zugvogelreservat Stein am Rhein", + "lang" : "de-CH" + }, + { + "text" : "Réserve d'oiseaux d'eau et de migrateurs Stein am Rhein", + "lang" : "fr-CH" + }, + { + "text" : "Riserva di uccelli acquatici e migratori Stein am Rhein", + "lang" : "it-CH" + }, + { + "text" : "Water Bird and Migratory Bird Reserves Stein am Rhein", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.1597548, 46.9699585 ], + [ 7.1526737, 46.959773 ], + [ 7.137617, 46.958552 ], + [ 7.124499, 46.9660518 ], + [ 7.1169803, 46.9800982 ], + [ 7.1169984, 46.9801012 ], + [ 7.1170303, 46.9801065 ], + [ 7.1170394, 46.980108 ], + [ 7.1199897, 46.9805843 ], + [ 7.1238288, 46.9812083 ], + [ 7.1276707, 46.9818322 ], + [ 7.1315171, 46.9824542 ], + [ 7.134719, 46.9829752 ], + [ 7.135358, 46.9830792 ], + [ 7.1379263, 46.9834976 ], + [ 7.1380799, 46.9835225 ], + [ 7.1381281, 46.9835304 ], + [ 7.1465194, 46.9848929 ], + [ 7.1496142, 46.9793876 ], + [ 7.1597548, 46.9699585 ] + ] + ], + "layer" : { + "upper" : 300, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "FR002", + "country" : "CHE", + "name" : [ + { + "text" : "Etablissement pénitentiaire \"Bellechasse\"", + "lang" : "de-CH" + }, + { + "text" : "Etablissement pénitentiaire \"Bellechasse\"", + "lang" : "fr-CH" + }, + { + "text" : "Etablissement pénitentiaire \"Bellechasse\"", + "lang" : "it-CH" + }, + { + "text" : "Etablissement pénitentiaire \"Bellechasse\"", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Freiburger Strafanstalt (FRSA)", + "lang" : "de-CH" + }, + { + "text" : "Etablissement de détention fribourgeois (EDFR)", + "lang" : "fr-CH" + }, + { + "text" : "Etablissement de détention fribourgeois (EDFR)", + "lang" : "it-CH" + }, + { + "text" : "Etablissement de détention fribourgeois (EDFR)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Direktor", + "lang" : "de-CH" + }, + { + "text" : "Directeur", + "lang" : "fr-CH" + }, + { + "text" : "Directeur", + "lang" : "it-CH" + }, + { + "text" : "Directeur", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Guido Sturny", + "lang" : "de-CH" + }, + { + "text" : "Guido Sturny", + "lang" : "fr-CH" + }, + { + "text" : "Guido Sturny", + "lang" : "it-CH" + }, + { + "text" : "Guido Sturny", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.fr.ch/police-et-securite/criminalite-ordre-public-et-circulation/drones-legislation-et-demandes-de-derogation", + "email" : "edfr-eb_Bellechasse@fr.ch", + "phone" : "0041263041010", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7470505, 47.5164905 ], + [ 7.7470319, 47.5164871 ], + [ 7.7469786, 47.5165006 ], + [ 7.7469543, 47.516504 ], + [ 7.7469247, 47.5165049 ], + [ 7.7468808, 47.5165029 ], + [ 7.7468436, 47.5164964 ], + [ 7.746844, 47.5164953 ], + [ 7.7467638, 47.5164823 ], + [ 7.7467212, 47.5164754 ], + [ 7.7466475, 47.5164635 ], + [ 7.7466471, 47.5164646 ], + [ 7.7466314, 47.5164607 ], + [ 7.7466199, 47.5164521 ], + [ 7.7465971, 47.5164427 ], + [ 7.7465749, 47.5164364 ], + [ 7.7465554, 47.5164316 ], + [ 7.7465345, 47.5164274 ], + [ 7.7465156, 47.5164191 ], + [ 7.7464918, 47.5164127 ], + [ 7.7463141, 47.516519 ], + [ 7.7463007, 47.51658 ], + [ 7.7463003, 47.5165815 ], + [ 7.7462932, 47.5166138 ], + [ 7.7461237, 47.517383 ], + [ 7.7460535, 47.5179923 ], + [ 7.7460486, 47.518034 ], + [ 7.7460472, 47.5180462 ], + [ 7.7460372, 47.5181329 ], + [ 7.7460457, 47.518172 ], + [ 7.7461164, 47.5184975 ], + [ 7.7461234999999995, 47.5184975 ], + [ 7.746217, 47.5184973 ], + [ 7.7463628, 47.5184969 ], + [ 7.7464317, 47.5184968 ], + [ 7.7464375, 47.5185011 ], + [ 7.7466967, 47.5186904 ], + [ 7.7467497, 47.5187291 ], + [ 7.7468077, 47.5187714 ], + [ 7.7468677, 47.5188351 ], + [ 7.7476519, 47.5187135 ], + [ 7.7476576, 47.518724 ], + [ 7.7476624, 47.5187348 ], + [ 7.7476662, 47.5187457 ], + [ 7.7476663, 47.5187462 ], + [ 7.747669, 47.5187567 ], + [ 7.7476708, 47.5187678 ], + [ 7.7476716, 47.518779 ], + [ 7.7476714, 47.5187902 ], + [ 7.7476702, 47.5188014 ], + [ 7.7476695, 47.5188052 ], + [ 7.747667, 47.518816 ], + [ 7.7476648, 47.5188235 ], + [ 7.7476607, 47.5188344 ], + [ 7.7476391, 47.5188844 ], + [ 7.7476353, 47.5188932 ], + [ 7.7476286, 47.5189097 ], + [ 7.7476228, 47.5189263 ], + [ 7.7476194, 47.5189374 ], + [ 7.7476098, 47.5189842 ], + [ 7.7476057, 47.5190524 ], + [ 7.7476050999999995, 47.519061 ], + [ 7.747616, 47.5191517 ], + [ 7.7476319, 47.519232 ], + [ 7.7476424999999995, 47.5192878 ], + [ 7.7476386, 47.5193268 ], + [ 7.7476375, 47.5193339 ], + [ 7.7476341, 47.51935 ], + [ 7.74763, 47.519366 ], + [ 7.747625, 47.5193819 ], + [ 7.7476067, 47.5194354 ], + [ 7.7473289, 47.5202505 ], + [ 7.7473234, 47.5202682 ], + [ 7.7473187, 47.5202859 ], + [ 7.747315, 47.5203038 ], + [ 7.7473121, 47.5203217 ], + [ 7.7473102, 47.5203397 ], + [ 7.7473092, 47.5203577 ], + [ 7.7473091, 47.5203757 ], + [ 7.7473099, 47.5203938 ], + [ 7.7473116, 47.5204118 ], + [ 7.7473142, 47.5204297 ], + [ 7.7473178, 47.5204476 ], + [ 7.7473222, 47.5204654 ], + [ 7.7473276, 47.520483 ], + [ 7.7473338, 47.5205006 ], + [ 7.747341, 47.520518 ], + [ 7.7474174, 47.5206928 ], + [ 7.7474941, 47.520868 ], + [ 7.7475476, 47.5209903 ], + [ 7.7475526, 47.5210027 ], + [ 7.7475568, 47.5210152 ], + [ 7.7475602, 47.5210278 ], + [ 7.7475628, 47.5210405 ], + [ 7.7475646, 47.5210533 ], + [ 7.7475657, 47.5210661 ], + [ 7.7475659, 47.5210789 ], + [ 7.7475653, 47.5210917 ], + [ 7.7475639, 47.5211045 ], + [ 7.7475615, 47.5211187 ], + [ 7.7475582, 47.5211328 ], + [ 7.7475541, 47.5211467 ], + [ 7.7475491, 47.5211606 ], + [ 7.7475433, 47.5211743 ], + [ 7.7475366, 47.5211878 ], + [ 7.7475292, 47.5212012 ], + [ 7.7475209, 47.5212143 ], + [ 7.7475121, 47.5212284 ], + [ 7.7475041000000004, 47.5212426 ], + [ 7.7474971, 47.5212571 ], + [ 7.7474909, 47.5212718 ], + [ 7.7474856, 47.5212866 ], + [ 7.7474812, 47.5213016 ], + [ 7.7474778, 47.5213167 ], + [ 7.7474752, 47.5213319 ], + [ 7.7474736, 47.5213471 ], + [ 7.747473, 47.5213624 ], + [ 7.7474733, 47.5213776 ], + [ 7.7474745, 47.5213929 ], + [ 7.7474766, 47.5214081 ], + [ 7.7474796999999995, 47.5214232 ], + [ 7.7475002, 47.5215701 ], + [ 7.7475002, 47.5215763 ], + [ 7.7475008, 47.5215873 ], + [ 7.7475022, 47.5215984 ], + [ 7.7475042, 47.5216094 ], + [ 7.7475426, 47.5217858 ], + [ 7.7475455, 47.521797 ], + [ 7.7475493, 47.5218081 ], + [ 7.747554, 47.521819 ], + [ 7.7475594999999995, 47.5218297 ], + [ 7.7475659, 47.5218403 ], + [ 7.7475663, 47.5218407 ], + [ 7.7475732, 47.5218505 ], + [ 7.7475812, 47.5218605 ], + [ 7.74759, 47.5218702 ], + [ 7.7475996, 47.5218795 ], + [ 7.74761, 47.5218885 ], + [ 7.7476123999999995, 47.5218904 ], + [ 7.747621, 47.5218971 ], + [ 7.7476327, 47.5219052 ], + [ 7.7476564, 47.5219205 ], + [ 7.7476807, 47.5219353 ], + [ 7.7477056, 47.5219497 ], + [ 7.747731, 47.5219636 ], + [ 7.747757, 47.5219771 ], + [ 7.7477834, 47.5219901 ], + [ 7.7478104, 47.5220026 ], + [ 7.7478379, 47.5220146 ], + [ 7.7480967, 47.5221245 ], + [ 7.748302, 47.5222117 ], + [ 7.7483163, 47.5222174 ], + [ 7.7483311, 47.5222226 ], + [ 7.7483462, 47.5222272 ], + [ 7.7483617, 47.5222313 ], + [ 7.7483775, 47.5222347 ], + [ 7.7483935, 47.5222376 ], + [ 7.7484098, 47.5222399 ], + [ 7.7484262, 47.5222415 ], + [ 7.7484428, 47.5222426 ], + [ 7.7484594, 47.522243 ], + [ 7.748476, 47.5222429 ], + [ 7.7484798999999995, 47.5222427 ], + [ 7.7487696, 47.5220054 ], + [ 7.7488806, 47.5218712 ], + [ 7.7490676, 47.5216793 ], + [ 7.7494089, 47.5213679 ], + [ 7.7497285, 47.5211891 ], + [ 7.7501055, 47.5209631 ], + [ 7.7502426, 47.5208415 ], + [ 7.7503206, 47.520694 ], + [ 7.7503693, 47.5204477 ], + [ 7.750485, 47.520242 ], + [ 7.7506779, 47.5199647 ], + [ 7.7508892, 47.5196702 ], + [ 7.7511247999999995, 47.5192874 ], + [ 7.7512749, 47.5191272 ], + [ 7.7513386, 47.5189546 ], + [ 7.7513346, 47.5188416 ], + [ 7.7512649, 47.5187319 ], + [ 7.7512877, 47.5187237 ], + [ 7.7513213, 47.5187125 ], + [ 7.7513553, 47.5187018 ], + [ 7.7513897, 47.5186918 ], + [ 7.7514245, 47.5186824 ], + [ 7.7514597, 47.5186736 ], + [ 7.7514804, 47.5186689 ], + [ 7.7514952, 47.5186655 ], + [ 7.7515309, 47.518658 ], + [ 7.7516924, 47.5186258 ], + [ 7.7517157, 47.5186208 ], + [ 7.7517385999999995, 47.5186153 ], + [ 7.7517613, 47.5186093 ], + [ 7.7517837, 47.5186027 ], + [ 7.7518056, 47.5185955 ], + [ 7.7518272, 47.5185879 ], + [ 7.7518484, 47.5185797 ], + [ 7.7518691, 47.518571 ], + [ 7.7518894, 47.5185619 ], + [ 7.7519092, 47.5185522 ], + [ 7.7519284, 47.5185421 ], + [ 7.7519472, 47.5185315 ], + [ 7.7519653, 47.5185205 ], + [ 7.7519829, 47.5185091 ], + [ 7.7519998, 47.5184972 ], + [ 7.7524449, 47.5181742 ], + [ 7.7524758, 47.5181518 ], + [ 7.7524893, 47.5181424 ], + [ 7.7525033, 47.5181335 ], + [ 7.752518, 47.518125 ], + [ 7.7525332, 47.518117 ], + [ 7.7525489, 47.5181094 ], + [ 7.7525652, 47.5181024 ], + [ 7.7525818, 47.5180958 ], + [ 7.7525857, 47.5180945 ], + [ 7.7525989, 47.5180898 ], + [ 7.7526164, 47.5180842 ], + [ 7.7526342, 47.5180793 ], + [ 7.7525973, 47.5180605 ], + [ 7.752587, 47.5180552 ], + [ 7.7525801, 47.5180517 ], + [ 7.7520123, 47.5176833 ], + [ 7.7515613, 47.5171812 ], + [ 7.7513814, 47.5170341 ], + [ 7.7513793, 47.5170324 ], + [ 7.7510257, 47.5168802 ], + [ 7.7508925, 47.5167869 ], + [ 7.7502708, 47.5165631 ], + [ 7.7500781, 47.5164975 ], + [ 7.7499772, 47.5164632 ], + [ 7.7498835, 47.5164336 ], + [ 7.7495507, 47.5163611 ], + [ 7.7492361, 47.5163266 ], + [ 7.7491924999999995, 47.5163246 ], + [ 7.7491613, 47.5163238 ], + [ 7.7491301, 47.5163235 ], + [ 7.7490989, 47.5163237 ], + [ 7.748899, 47.5163265 ], + [ 7.7484206, 47.5163333 ], + [ 7.7484307, 47.5163517 ], + [ 7.7484311, 47.516352499999996 ], + [ 7.7482941, 47.5164347 ], + [ 7.7482245, 47.516436 ], + [ 7.748161, 47.516444 ], + [ 7.7480951000000005, 47.5164505 ], + [ 7.7480253999999995, 47.5164531 ], + [ 7.7479408, 47.5164645 ], + [ 7.7478711, 47.5164716 ], + [ 7.7478186, 47.5164768 ], + [ 7.7477669, 47.5164761 ], + [ 7.7477316, 47.5164688 ], + [ 7.7477026, 47.5164678 ], + [ 7.7476709, 47.5164727 ], + [ 7.7476423, 47.516478 ], + [ 7.7476111, 47.5164893 ], + [ 7.7475868, 47.5164989 ], + [ 7.7475539, 47.516499 ], + [ 7.747521, 47.5164969 ], + [ 7.7474842, 47.5164981 ], + [ 7.7474426, 47.5164972 ], + [ 7.7474150999999996, 47.5164958 ], + [ 7.7474113, 47.5164956 ], + [ 7.7473588, 47.5164974 ], + [ 7.7473235, 47.5164895 ], + [ 7.7472819, 47.5164817 ], + [ 7.7472396, 47.5164786 ], + [ 7.7472019, 47.5164792 ], + [ 7.747162, 47.5164846 ], + [ 7.7471359, 47.516488 ], + [ 7.7471322, 47.5164884 ], + [ 7.7470947, 47.5164949 ], + [ 7.7470602, 47.5164923 ], + [ 7.7470505, 47.5164905 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns030", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Ramschberg - Zettel", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Ramschberg - Zettel", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Ramschberg - Zettel", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Ramschberg - Zettel", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8573705, 47.4419383 ], + [ 7.857749, 47.4421313 ], + [ 7.8577181, 47.4423751 ], + [ 7.8577096, 47.442402799999996 ], + [ 7.8580968, 47.4424697 ], + [ 7.8583192, 47.4425024 ], + [ 7.8583841, 47.4425119 ], + [ 7.8586922999999995, 47.4425344 ], + [ 7.8594048, 47.4426531 ], + [ 7.8596916, 47.4427121 ], + [ 7.8598007, 47.4427344 ], + [ 7.8602988, 47.4428057 ], + [ 7.8606204, 47.4427604 ], + [ 7.860533, 47.442631 ], + [ 7.8609357, 47.4425235 ], + [ 7.861121, 47.4426981 ], + [ 7.8613853, 47.4426971 ], + [ 7.861586, 47.442682 ], + [ 7.8617022, 47.4426673 ], + [ 7.8618393, 47.4426309 ], + [ 7.8620288, 47.442537 ], + [ 7.8622076, 47.4424288 ], + [ 7.8624288, 47.4423204 ], + [ 7.8622908, 47.4421866 ], + [ 7.8620874, 47.4419617 ], + [ 7.8619447000000005, 47.4417571 ], + [ 7.8617822, 47.4416072 ], + [ 7.8617108, 47.4414981 ], + [ 7.8617101, 47.4414092 ], + [ 7.8617194, 47.4413202 ], + [ 7.8616979, 47.4411425 ], + [ 7.8616466, 47.4410264 ], + [ 7.8615171, 47.4409113 ], + [ 7.8613223, 47.4408156 ], + [ 7.8610698, 47.4407482 ], + [ 7.8607568, 47.4406809 ], + [ 7.8604838, 47.4405793 ], + [ 7.86017, 47.4404095 ], + [ 7.8598866, 47.4402601 ], + [ 7.8596535, 47.4401037 ], + [ 7.8594606, 47.4399266 ], + [ 7.8593385, 47.4397834 ], + [ 7.8592569999999995, 47.4396674 ], + [ 7.8591457, 47.43962 ], + [ 7.8590044, 47.4395931 ], + [ 7.8588534, 47.4396142 ], + [ 7.8586423, 47.439697 ], + [ 7.8585121000000004, 47.4398001 ], + [ 7.8584624, 47.4398891 ], + [ 7.8584326, 47.4400405 ], + [ 7.8584993, 47.440284 ], + [ 7.8585374, 47.4404398 ], + [ 7.8585701, 47.4405848 ], + [ 7.8586025, 47.4406977 ], + [ 7.8586491, 47.4408213 ], + [ 7.8586846, 47.4408652 ], + [ 7.8588062999999995, 47.4409504 ], + [ 7.8588503, 47.4409848 ], + [ 7.8589052, 47.4410286 ], + [ 7.8589734, 47.4411145 ], + [ 7.8589352, 47.4411784 ], + [ 7.8588159, 47.4412579 ], + [ 7.8585315, 47.4413808 ], + [ 7.8583205, 47.4414318 ], + [ 7.8580561, 47.4414184 ], + [ 7.8578594, 47.4414187 ], + [ 7.8576540999999995, 47.4414222 ], + [ 7.8573427, 47.4414142 ], + [ 7.8571349999999995, 47.4413904 ], + [ 7.8569769, 47.4413604 ], + [ 7.856808, 47.4413082 ], + [ 7.8569192999999995, 47.4415933 ], + [ 7.8570668, 47.4417703 ], + [ 7.8573705, 47.4419383 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr036", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Anstaltsmatte", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Anstaltsmatte", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Anstaltsmatte", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Anstaltsmatte", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.6292396, 46.9267306 ], + [ 6.6294888, 46.9267787 ], + [ 6.629747, 46.9267924 ], + [ 6.630004, 46.9267711 ], + [ 6.6302499, 46.9267157 ], + [ 6.6304752, 46.9266283 ], + [ 6.6305222, 46.9266004 ], + [ 6.6305291, 46.9265978 ], + [ 6.6307033, 46.9264953 ], + [ 6.6308588, 46.9264359 ], + [ 6.6310559, 46.9263208 ], + [ 6.6312162, 46.9261814 ], + [ 6.6312966, 46.9260951 ], + [ 6.6312968, 46.926095 ], + [ 6.631311, 46.9260799 ], + [ 6.631312, 46.9260785 ], + [ 6.6313181, 46.9260749 ], + [ 6.6314777, 46.925936899999996 ], + [ 6.63157, 46.9258387 ], + [ 6.631688, 46.9256808 ], + [ 6.6317584, 46.9255102 ], + [ 6.6317787, 46.9253334 ], + [ 6.6317479, 46.9251574 ], + [ 6.6316673, 46.9249888 ], + [ 6.6315401, 46.9248344 ], + [ 6.6313711, 46.9247001 ], + [ 6.6311669, 46.9245912 ], + [ 6.6310977, 46.9245613 ], + [ 6.6309995, 46.9245274 ], + [ 6.6309127, 46.9244803 ], + [ 6.6308443, 46.9244501 ], + [ 6.6306151, 46.9243695 ], + [ 6.6303672, 46.9243212 ], + [ 6.6301103999999995, 46.9243069 ], + [ 6.6298544, 46.9243273 ], + [ 6.6296092, 46.9243815 ], + [ 6.6293841, 46.9244675 ], + [ 6.6293122, 46.9245095 ], + [ 6.6292473, 46.9245343 ], + [ 6.6290515, 46.9246487 ], + [ 6.6288919, 46.924787 ], + [ 6.6288298999999995, 46.9248531 ], + [ 6.6288064, 46.9248783 ], + [ 6.6288009, 46.9248842 ], + [ 6.6287705, 46.9249166 ], + [ 6.6287523, 46.924936 ], + [ 6.6287503999999995, 46.924938 ], + [ 6.628672, 46.9250217 ], + [ 6.628637, 46.9250592 ], + [ 6.6285199, 46.9252164 ], + [ 6.6284821, 46.925308 ], + [ 6.6284672, 46.9253239 ], + [ 6.6284547, 46.9253373 ], + [ 6.6283377, 46.9254942 ], + [ 6.6282675, 46.9256637 ], + [ 6.6282469, 46.9258394 ], + [ 6.6282767, 46.9260144 ], + [ 6.6283558, 46.9261821 ], + [ 6.628481, 46.926336 ], + [ 6.6286477, 46.9264703 ], + [ 6.6288494, 46.9265797 ], + [ 6.6289112, 46.9266069 ], + [ 6.628931, 46.9266156 ], + [ 6.6290091, 46.92665 ], + [ 6.6292396, 46.9267306 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "NE11", + "country" : "CHE", + "name" : [ + { + "text" : "Hôpital Couvet", + "lang" : "de-CH" + }, + { + "text" : "Hôpital Couvet", + "lang" : "fr-CH" + }, + { + "text" : "Hôpital Couvet", + "lang" : "it-CH" + }, + { + "text" : "Hôpital Couvet", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "regulationExemption" : "YES", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Police Neuchâteloise", + "lang" : "de-CH" + }, + { + "text" : "Police Neuchâteloise", + "lang" : "fr-CH" + }, + { + "text" : "Police Neuchâteloise", + "lang" : "it-CH" + }, + { + "text" : "Police Neuchâteloise", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "PN - Rens et opérations", + "lang" : "de-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "fr-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "it-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "PN - Rens et opérations", + "lang" : "de-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "fr-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "it-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ne.ch/autorites/DESC/PONE/Pages/Drones.aspx", + "email" : "Police.Neuchateloise@ne.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4275208, 47.4127225 ], + [ 7.4272956, 47.4126821 ], + [ 7.4268479, 47.4125152 ], + [ 7.4262116, 47.4124618 ], + [ 7.4258827, 47.4124342 ], + [ 7.4257704, 47.4123979 ], + [ 7.4250624, 47.4121689 ], + [ 7.4246924, 47.4119317 ], + [ 7.4245631, 47.4117314 ], + [ 7.4244828, 47.4118304 ], + [ 7.4243094, 47.4120441 ], + [ 7.4242281, 47.4120395 ], + [ 7.4241204, 47.4120335 ], + [ 7.4238875, 47.4120247 ], + [ 7.4236598, 47.4120247 ], + [ 7.4234217, 47.4120387 ], + [ 7.4231681, 47.4121072 ], + [ 7.4230361, 47.4121423 ], + [ 7.4226659999999995, 47.4122546 ], + [ 7.4225094, 47.412327 ], + [ 7.4231013, 47.4128467 ], + [ 7.4230766, 47.4128787 ], + [ 7.4233156, 47.4130655 ], + [ 7.4243412, 47.41326 ], + [ 7.4245729, 47.413312 ], + [ 7.4252784, 47.413281 ], + [ 7.4257225, 47.4133975 ], + [ 7.4262805, 47.4136065 ], + [ 7.4266865, 47.4138039 ], + [ 7.4267354, 47.4138236 ], + [ 7.4268984, 47.4138892 ], + [ 7.4271959, 47.4141809 ], + [ 7.4274888, 47.4144845 ], + [ 7.4284729, 47.4143585 ], + [ 7.4286385, 47.4143551 ], + [ 7.4288001, 47.4143517 ], + [ 7.4287957, 47.4143045 ], + [ 7.4286034, 47.4143211 ], + [ 7.428208, 47.414347 ], + [ 7.4280526, 47.4143458 ], + [ 7.4279791, 47.4141867 ], + [ 7.4279016, 47.4140468 ], + [ 7.4278382, 47.4139847 ], + [ 7.4278495, 47.4138425 ], + [ 7.4278499, 47.4136672 ], + [ 7.4278578, 47.4134915 ], + [ 7.4278494, 47.4133892 ], + [ 7.4278308, 47.4133267 ], + [ 7.4278658, 47.4132449 ], + [ 7.427801, 47.4131808 ], + [ 7.4277129, 47.4131217 ], + [ 7.4275238, 47.4130405 ], + [ 7.4275101, 47.413037 ], + [ 7.4275208, 47.4127225 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns003", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Oltme", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Oltme", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Oltme", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Oltme", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.2083205, 47.2744106 ], + [ 8.208331, 47.2743947 ], + [ 8.2082875, 47.2744391 ], + [ 8.208186, 47.2745412 ], + [ 8.2080823, 47.2746345 ], + [ 8.2079962, 47.2747108 ], + [ 8.2079296, 47.2747531 ], + [ 8.2078757, 47.2748005 ], + [ 8.2077747, 47.2748927 ], + [ 8.2077165, 47.2749356 ], + [ 8.2076611, 47.2749899 ], + [ 8.2076048, 47.2750669 ], + [ 8.2075576, 47.2751438 ], + [ 8.2075144, 47.2752178 ], + [ 8.2074693, 47.2752676 ], + [ 8.2073912, 47.2752962 ], + [ 8.2073635, 47.2753261 ], + [ 8.2073161, 47.2753916 ], + [ 8.2072929, 47.275441 ], + [ 8.2072713, 47.2754852 ], + [ 8.2072272, 47.2755506 ], + [ 8.2071508, 47.2756315 ], + [ 8.2070834, 47.2757068 ], + [ 8.2069985, 47.2758288 ], + [ 8.2069569, 47.2758748 ], + [ 8.2069211, 47.2759145 ], + [ 8.2068825, 47.2759743 ], + [ 8.2068611, 47.2760557 ], + [ 8.206856, 47.2761127 ], + [ 8.2068563, 47.2761334 ], + [ 8.2068433, 47.276147 ], + [ 8.2068021, 47.2761383 ], + [ 8.2067308, 47.2761514 ], + [ 8.2067043, 47.2761453 ], + [ 8.2066408, 47.2761493 ], + [ 8.206601299999999, 47.2761613 ], + [ 8.2065728, 47.276202 ], + [ 8.2065879, 47.2762424 ], + [ 8.2066215, 47.2762764 ], + [ 8.2066284, 47.2762953 ], + [ 8.2066655, 47.2763022 ], + [ 8.2066686, 47.2763328 ], + [ 8.2066528, 47.2763384 ], + [ 8.2066374, 47.2763756 ], + [ 8.2066021, 47.2764306 ], + [ 8.2065726, 47.2764911 ], + [ 8.2065353, 47.2765589 ], + [ 8.2065149, 47.2766346 ], + [ 8.2065278, 47.2766853 ], + [ 8.2065318, 47.2767383 ], + [ 8.2065122, 47.2767916 ], + [ 8.2064782, 47.2768529 ], + [ 8.2063932, 47.2769628 ], + [ 8.2063416, 47.2770509 ], + [ 8.206323, 47.2770888 ], + [ 8.2062873, 47.2772024 ], + [ 8.2062727, 47.2772894 ], + [ 8.2062757, 47.2773578 ], + [ 8.2063006, 47.2774759 ], + [ 8.206325, 47.277553 ], + [ 8.2063181, 47.2776287 ], + [ 8.2062908, 47.2776948 ], + [ 8.2062289, 47.277762 ], + [ 8.2061805, 47.2778436 ], + [ 8.2061547, 47.277937 ], + [ 8.2061437, 47.2780457 ], + [ 8.2061333, 47.278119 ], + [ 8.2061337, 47.2781512 ], + [ 8.2061268, 47.2782341 ], + [ 8.2060945, 47.2783502 ], + [ 8.2060797, 47.2784009 ], + [ 8.2060601, 47.2784678 ], + [ 8.2060362, 47.2785331 ], + [ 8.2060178, 47.278588 ], + [ 8.2060022, 47.2786943 ], + [ 8.2059836, 47.2788296 ], + [ 8.2059653, 47.278898 ], + [ 8.2059314, 47.2789691 ], + [ 8.2058929, 47.279024 ], + [ 8.2058511, 47.2790975 ], + [ 8.2058463, 47.2791586 ], + [ 8.2058289, 47.2792062 ], + [ 8.2058173, 47.2792666 ], + [ 8.2058074, 47.2793809 ], + [ 8.205806, 47.2794518 ], + [ 8.2058306, 47.2795466 ], + [ 8.2058564, 47.2796446 ], + [ 8.2059044, 47.2797256 ], + [ 8.2059738, 47.2798128 ], + [ 8.2060463, 47.2798808 ], + [ 8.2061013, 47.2799451 ], + [ 8.2061292, 47.2799777 ], + [ 8.2061738, 47.2799167 ], + [ 8.2067343, 47.2787878 ], + [ 8.2069171, 47.2781695 ], + [ 8.2071831, 47.2773562 ], + [ 8.2077255, 47.2760203 ], + [ 8.2083205, 47.2744106 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "KTAG102", + "country" : "CHE", + "name" : [ + { + "text" : "Hallwilersee, Beinwil-Ägelmoos", + "lang" : "de-CH" + }, + { + "text" : "Hallwilersee, Beinwil-Ägelmoos", + "lang" : "fr-CH" + }, + { + "text" : "Hallwilersee, Beinwil-Ägelmoos", + "lang" : "it-CH" + }, + { + "text" : "Hallwilersee, Beinwil-Ägelmoos", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "regulationExemption" : "NO", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "schedule" : [ + { + "day" : [ "ANY" ], + "startTime" : "00:00:00.00+01:00", + "endTime" : "00:00:00.00+01:00" + } + ] + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Aargau", + "lang" : "de-CH" + }, + { + "text" : "Canton d'Argovie", + "lang" : "fr-CH" + }, + { + "text" : "Canton Argovia", + "lang" : "it-CH" + }, + { + "text" : "Canton of Aargau", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Departement Bau, Verkehr und Umwelt (BVU)", + "lang" : "de-CH" + }, + { + "text" : "Département de la construction, des transports et de l'environnement (CTE)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento delle costruzioni, dei trasporti e dell'ambiente (CTA)", + "lang" : "it-CH" + }, + { + "text" : "Department of Civil Engineering,Transport and Environment (CTE)", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Sektion Gewässernutzung", + "lang" : "de-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "fr-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "it-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ag.ch/de/verwaltung/bvu/umwelt-natur-landschaft/hochwasserschutz-gewaesser/gewaessernutzung", + "email" : "alg@ag.ch", + "phone" : "0041 62 835 34 50", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8362365, 47.3751274 ], + [ 7.8362412, 47.3751786 ], + [ 7.8367633, 47.3753857 ], + [ 7.8369621, 47.375412 ], + [ 7.83705, 47.3754103 ], + [ 7.8373348, 47.3755455 ], + [ 7.8376657, 47.3756734 ], + [ 7.8381251, 47.375878 ], + [ 7.8383216000000004, 47.3759859 ], + [ 7.8386224, 47.3762208 ], + [ 7.8387487, 47.3763227 ], + [ 7.8389605, 47.3764606 ], + [ 7.8392019, 47.3765791 ], + [ 7.8394489, 47.3766943 ], + [ 7.8397869, 47.3768879 ], + [ 7.8399778, 47.3770047 ], + [ 7.8401609, 47.3771518 ], + [ 7.8403857, 47.3772903 ], + [ 7.8407315, 47.3775144 ], + [ 7.8408478, 47.3776189 ], + [ 7.8409057, 47.3775585 ], + [ 7.8408653, 47.3775164 ], + [ 7.8408095, 47.3774784 ], + [ 7.8406924, 47.3774023 ], + [ 7.8404279, 47.3772324 ], + [ 7.8402385, 47.3771165 ], + [ 7.8400961, 47.377011 ], + [ 7.839879, 47.376864 ], + [ 7.8397941, 47.3768143 ], + [ 7.8394802, 47.3766355 ], + [ 7.8393567, 47.3765732 ], + [ 7.8392086, 47.3765073 ], + [ 7.8391055, 47.376456 ], + [ 7.8388596, 47.3763103 ], + [ 7.8387415, 47.3762283 ], + [ 7.8385591, 47.3760843 ], + [ 7.8384957, 47.3760289 ], + [ 7.8383778, 47.3759465 ], + [ 7.8382547, 47.3758717 ], + [ 7.8381829, 47.3758338 ], + [ 7.8379829999999995, 47.3757496 ], + [ 7.8375813, 47.3755752 ], + [ 7.8374220999999995, 47.3755128 ], + [ 7.8372732, 47.3754393 ], + [ 7.8372588, 47.3754312 ], + [ 7.8371206, 47.3753721 ], + [ 7.8370636, 47.3753515 ], + [ 7.8369859, 47.3753278 ], + [ 7.8369771, 47.3753257 ], + [ 7.8369681, 47.3753242 ], + [ 7.8369588, 47.3753233 ], + [ 7.8369496, 47.3753231 ], + [ 7.8369403, 47.3753236 ], + [ 7.836931, 47.3753247 ], + [ 7.8369222, 47.3753264 ], + [ 7.8369135, 47.3753288 ], + [ 7.8369053, 47.3753318 ], + [ 7.8369009, 47.3753337 ], + [ 7.836874, 47.375315 ], + [ 7.8364971, 47.3751826 ], + [ 7.836295, 47.3751045 ], + [ 7.8362365, 47.3751274 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns048", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Hecken-Komplex Schmutzberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Hecken-Komplex Schmutzberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Hecken-Komplex Schmutzberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Hecken-Komplex Schmutzberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.3187509, 46.9068648 ], + [ 8.3186225, 46.9045117 ], + [ 8.3183146, 46.9021665 ], + [ 8.317828, 46.8998356 ], + [ 8.3171642, 46.8975253 ], + [ 8.316324999999999, 46.895242 ], + [ 8.3153126, 46.8929918 ], + [ 8.31413, 46.8907811 ], + [ 8.3127803, 46.8886159 ], + [ 8.3112673, 46.886502 ], + [ 8.3095951, 46.8844452 ], + [ 8.3077683, 46.8824513 ], + [ 8.305792, 46.8805256 ], + [ 8.3036715, 46.8786734 ], + [ 8.3014127, 46.8768999 ], + [ 8.2990218, 46.8752097 ], + [ 8.2965054, 46.8736077 ], + [ 8.2938702, 46.872098 ], + [ 8.2911237, 46.870685 ], + [ 8.2882731, 46.8693724 ], + [ 8.2853265, 46.8681638 ], + [ 8.2822918, 46.8670626 ], + [ 8.2791773, 46.8660718 ], + [ 8.2759916, 46.865194 ], + [ 8.2727434, 46.8644316 ], + [ 8.2694416, 46.8637868 ], + [ 8.2660951, 46.8632614 ], + [ 8.2627132, 46.8628566 ], + [ 8.2593051, 46.8625738 ], + [ 8.25588, 46.8624135 ], + [ 8.2524475, 46.8623763 ], + [ 8.2490168, 46.8624623 ], + [ 8.2455974, 46.8626712 ], + [ 8.2421985, 46.8630025 ], + [ 8.2388296, 46.8634553 ], + [ 8.2354997, 46.8640282 ], + [ 8.232218, 46.8647198 ], + [ 8.2289935, 46.8655282 ], + [ 8.2258351, 46.8664511 ], + [ 8.2227512, 46.867486 ], + [ 8.2197504, 46.8686302 ], + [ 8.2168409, 46.8698804 ], + [ 8.2140307, 46.8712332 ], + [ 8.2113274, 46.872685 ], + [ 8.2087384, 46.8742318 ], + [ 8.2062709, 46.8758693 ], + [ 8.2039316, 46.8775931 ], + [ 8.201727, 46.8793984 ], + [ 8.1996629, 46.8812803 ], + [ 8.1977453, 46.8832337 ], + [ 8.1959792, 46.8852532 ], + [ 8.1943695, 46.8873333 ], + [ 8.1929208, 46.8894682 ], + [ 8.1916369, 46.8916522 ], + [ 8.1905214, 46.8938793 ], + [ 8.1895773, 46.8961433 ], + [ 8.1888074, 46.8984381 ], + [ 8.1882136, 46.9007573 ], + [ 8.1877978, 46.9030947 ], + [ 8.1875609, 46.9054438 ], + [ 8.1875037, 46.9077981 ], + [ 8.1876264, 46.9101513 ], + [ 8.1879287, 46.9124968 ], + [ 8.1884097, 46.914828299999996 ], + [ 8.1890682, 46.917139399999996 ], + [ 8.1899024, 46.9194236 ], + [ 8.1909099, 46.9216748 ], + [ 8.1920882, 46.9238868 ], + [ 8.1934339, 46.9260535 ], + [ 8.1949434, 46.9281689 ], + [ 8.1966126, 46.9302273 ], + [ 8.1984368, 46.932223 ], + [ 8.2004112, 46.9341505 ], + [ 8.2025303, 46.9360046 ], + [ 8.2047883, 46.9377801 ], + [ 8.207179, 46.9394722 ], + [ 8.2096959, 46.9410762 ], + [ 8.2123321, 46.9425878 ], + [ 8.2150802, 46.9440027 ], + [ 8.2179329, 46.9453171 ], + [ 8.2208823, 46.9465274 ], + [ 8.2239202, 46.9476302 ], + [ 8.2270384, 46.9486226 ], + [ 8.230228199999999, 46.9495017 ], + [ 8.233481, 46.9502653 ], + [ 8.2367878, 46.9509111 ], + [ 8.2401394, 46.9514374 ], + [ 8.2435267, 46.9518428 ], + [ 8.2469404, 46.9521261 ], + [ 8.2503711, 46.9522866 ], + [ 8.2538094, 46.9523239 ], + [ 8.2572458, 46.9522377 ], + [ 8.2606709, 46.9520285 ], + [ 8.2640753, 46.9516966 ], + [ 8.2674496, 46.9512432 ], + [ 8.2707845, 46.9506693 ], + [ 8.2740709, 46.9499766 ], + [ 8.2772998, 46.949167 ], + [ 8.2804623, 46.9482426 ], + [ 8.2835497, 46.9472062 ], + [ 8.2865535, 46.9460604 ], + [ 8.2894655, 46.9448084 ], + [ 8.2922777, 46.9434537 ], + [ 8.2949824, 46.942 ], + [ 8.2975721, 46.9404513 ], + [ 8.3000398, 46.9388118 ], + [ 8.3023787, 46.9370861 ], + [ 8.3045823, 46.9352789 ], + [ 8.3066447, 46.9333951 ], + [ 8.3085602, 46.9314399 ], + [ 8.3103236, 46.9294187 ], + [ 8.31193, 46.927337 ], + [ 8.313375, 46.9252005 ], + [ 8.3146548, 46.9230152 ], + [ 8.3157658, 46.9207869 ], + [ 8.3167049, 46.9185219 ], + [ 8.3174697, 46.9162263 ], + [ 8.318058, 46.9139064 ], + [ 8.3184683, 46.9115685 ], + [ 8.3186995, 46.9092192 ], + [ 8.3187509, 46.9068648 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSPG001", + "country" : "CHE", + "name" : [ + { + "text" : "LSPG Kägiswil", + "lang" : "de-CH" + }, + { + "text" : "LSPG Kägiswil", + "lang" : "fr-CH" + }, + { + "text" : "LSPG Kägiswil", + "lang" : "it-CH" + }, + { + "text" : "LSPG Kägiswil", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Flugplatzgenossenschaft Obwalden", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzgenossenschaft Obwalden", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzgenossenschaft Obwalden", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzgenossenschaft Obwalden", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Jost Vogler", + "lang" : "de-CH" + }, + { + "text" : "Jost Vogler", + "lang" : "fr-CH" + }, + { + "text" : "Jost Vogler", + "lang" : "it-CH" + }, + { + "text" : "Jost Vogler", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.airportlspg.ch/index.php/fuer-piloten/drohnen", + "email" : "lspg@bluewin.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.0874404, 46.6281256 ], + [ 7.1017721, 46.6248587 ], + [ 7.1021073, 46.6046375 ], + [ 7.1227459, 46.6107419 ], + [ 7.128005, 46.6042076 ], + [ 7.1169934, 46.5947495 ], + [ 7.1025695, 46.5640235 ], + [ 7.0834748, 46.5641452 ], + [ 7.0639171, 46.570838 ], + [ 7.0607392, 46.6068861 ], + [ 7.0666917, 46.6224463 ], + [ 7.0874404, 46.6281256 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSGT001", + "country" : "CHE", + "name" : [ + { + "text" : "LSGT Gruyères", + "lang" : "de-CH" + }, + { + "text" : "LSGT Gruyères", + "lang" : "fr-CH" + }, + { + "text" : "LSGT Gruyères", + "lang" : "it-CH" + }, + { + "text" : "LSGT Gruyères", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Aérodrome de la Gruyère", + "lang" : "de-CH" + }, + { + "text" : "Aérodrome de la Gruyère", + "lang" : "fr-CH" + }, + { + "text" : "Aérodrome de la Gruyère", + "lang" : "it-CH" + }, + { + "text" : "Aérodrome de la Gruyère", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Bureau C", + "lang" : "de-CH" + }, + { + "text" : "Bureau C", + "lang" : "fr-CH" + }, + { + "text" : "Bureau C", + "lang" : "it-CH" + }, + { + "text" : "Bureau C", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.aerodrome-gruyere.ch/annonce-de-vol-de-drone/", + "email" : "bureau@aerodrome-gruyere.ch", + "phone" : "0041269210040", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.530551299999999, 47.6918678 ], + [ 8.5306957, 47.6919073 ], + [ 8.5319866, 47.6922911 ], + [ 8.5327885, 47.6910772 ], + [ 8.532464, 47.6910692 ], + [ 8.532024700000001, 47.6910535 ], + [ 8.5311016, 47.6910792 ], + [ 8.5310111, 47.6910669 ], + [ 8.5309523, 47.6910584 ], + [ 8.5309443, 47.6910549 ], + [ 8.5309372, 47.6910531 ], + [ 8.5308993, 47.6910437 ], + [ 8.5308651, 47.6910347 ], + [ 8.5303393, 47.6909039 ], + [ 8.529746, 47.6907314 ], + [ 8.5293218, 47.6905711 ], + [ 8.5291185, 47.690461 ], + [ 8.5288577, 47.6903306 ], + [ 8.5285926, 47.6902386 ], + [ 8.528303, 47.6901744 ], + [ 8.5283344, 47.6901086 ], + [ 8.528467299999999, 47.689848 ], + [ 8.5280496, 47.6897643 ], + [ 8.5274539, 47.6896802 ], + [ 8.5274359, 47.6896812 ], + [ 8.5274292, 47.6896803 ], + [ 8.5273783, 47.6896438 ], + [ 8.526838099999999, 47.6895376 ], + [ 8.5263087, 47.689429 ], + [ 8.5262141, 47.689649 ], + [ 8.5259875, 47.6895952 ], + [ 8.5249211, 47.6893563 ], + [ 8.524147, 47.6891928 ], + [ 8.5235326, 47.6890624 ], + [ 8.5234569, 47.6890439 ], + [ 8.5234566, 47.6890446 ], + [ 8.5234043, 47.6890323 ], + [ 8.5223469, 47.6887933 ], + [ 8.5219621, 47.6895076 ], + [ 8.530551299999999, 47.6918678 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSPF002", + "country" : "CHE", + "name" : [ + { + "text" : "LSPF Schaffhausen (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSPF Schaffhausen (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSPF Schaffhausen (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSPF Schaffhausen (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Segelfluggruppe Schaffhausen", + "lang" : "de-CH" + }, + { + "text" : "Segelfluggruppe Schaffhausen", + "lang" : "fr-CH" + }, + { + "text" : "Segelfluggruppe Schaffhausen", + "lang" : "it-CH" + }, + { + "text" : "Segelfluggruppe Schaffhausen", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "siteURL" : "https://schmerlat.ch/", + "email" : "flugplatzchef@schmerlat.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8456454, 47.4456121 ], + [ 7.8452818, 47.445813 ], + [ 7.8451106, 47.4455512 ], + [ 7.8448021, 47.4455055 ], + [ 7.8444977, 47.4455361 ], + [ 7.8444576999999995, 47.4454646 ], + [ 7.8443355, 47.4452445 ], + [ 7.8445496, 47.4449408 ], + [ 7.8441539, 47.4446811 ], + [ 7.8439083, 47.4448832 ], + [ 7.8434924, 47.4450269 ], + [ 7.8432002, 47.4451716 ], + [ 7.8428852, 47.4453327 ], + [ 7.8424962, 47.4456035 ], + [ 7.8421068, 47.4458746 ], + [ 7.8417188, 47.4459428 ], + [ 7.8416388, 47.4461598 ], + [ 7.8418968, 47.4463001 ], + [ 7.8423064, 47.446547 ], + [ 7.8424475000000005, 47.4466252 ], + [ 7.8430053, 47.4470276 ], + [ 7.8432855, 47.4470991 ], + [ 7.8433367, 47.4471079 ], + [ 7.8435331999999995, 47.447142 ], + [ 7.8435195, 47.4471607 ], + [ 7.8435, 47.4471873 ], + [ 7.8433452, 47.4473351 ], + [ 7.8435589, 47.4476565 ], + [ 7.8437715, 47.4479527 ], + [ 7.8439782000000005, 47.4481543 ], + [ 7.8441081, 47.4484919 ], + [ 7.8442191, 47.4488047 ], + [ 7.8445004, 47.4487705 ], + [ 7.8452271, 47.4486787 ], + [ 7.8452421, 47.4486558 ], + [ 7.8453216, 47.4485347 ], + [ 7.8463807, 47.4479434 ], + [ 7.8470965, 47.4475337 ], + [ 7.8481348, 47.4469736 ], + [ 7.8480132, 47.4467337 ], + [ 7.8478189, 47.446407 ], + [ 7.8478269, 47.4462332 ], + [ 7.8480076, 47.4459232 ], + [ 7.8482181, 47.4457631 ], + [ 7.8482214, 47.4457648 ], + [ 7.8484423, 47.4455994 ], + [ 7.8487031, 47.4454372 ], + [ 7.849143, 47.445181 ], + [ 7.84957, 47.4451707 ], + [ 7.8498005, 47.4452023 ], + [ 7.8501074, 47.4452444 ], + [ 7.850212, 47.4452587 ], + [ 7.8503841, 47.4452548 ], + [ 7.8508909, 47.4452434 ], + [ 7.8514944, 47.4451535 ], + [ 7.8516775, 47.4451316 ], + [ 7.851954, 47.4450815 ], + [ 7.8520601, 47.4450623 ], + [ 7.8521852, 47.4450603 ], + [ 7.8523028, 47.4450585 ], + [ 7.8526089, 47.4450538 ], + [ 7.8527965, 47.4449613 ], + [ 7.8529951, 47.444836 ], + [ 7.8531989, 47.4447088 ], + [ 7.853121, 47.444637 ], + [ 7.8529237, 47.4441492 ], + [ 7.8527474999999995, 47.4436968 ], + [ 7.8520627, 47.4434502 ], + [ 7.8513522, 47.4431211 ], + [ 7.8505643, 47.4427448 ], + [ 7.849916, 47.4424529 ], + [ 7.8490718, 47.4420608 ], + [ 7.84863, 47.4419711 ], + [ 7.8484873, 47.4420873 ], + [ 7.8490263, 47.4421584 ], + [ 7.8490246, 47.442162 ], + [ 7.8488927, 47.4424049 ], + [ 7.8487031, 47.4427101 ], + [ 7.8479320999999995, 47.4429047 ], + [ 7.8477847, 47.4429949 ], + [ 7.8476268000000005, 47.443094 ], + [ 7.8473095, 47.4432945 ], + [ 7.8472711, 47.443283 ], + [ 7.8471371, 47.4434627 ], + [ 7.8467279, 47.4438089 ], + [ 7.8463773, 47.4441399 ], + [ 7.846135, 47.4444143 ], + [ 7.8459055, 47.4446687 ], + [ 7.8460195, 47.4447092 ], + [ 7.8459065, 47.445106 ], + [ 7.8458301, 47.445347 ], + [ 7.8456454, 47.4456121 ] + ], + [ + [ 7.8452818, 47.445813 ], + [ 7.8454977, 47.4459511 ], + [ 7.8454663, 47.4460353 ], + [ 7.8454072, 47.4461935 ], + [ 7.8454762, 47.4462696 ], + [ 7.8456094, 47.4464163 ], + [ 7.8457421, 47.4466124 ], + [ 7.8457965, 47.4466939 ], + [ 7.8454652, 47.4473254 ], + [ 7.8453671, 47.4473029 ], + [ 7.8452412, 47.4472741 ], + [ 7.844931, 47.4472045 ], + [ 7.8449197, 47.4472019 ], + [ 7.8449439, 47.4468861 ], + [ 7.8449304, 47.4468601 ], + [ 7.844904, 47.4468089 ], + [ 7.8448176, 47.4466373 ], + [ 7.8445449, 47.4465503 ], + [ 7.8441916, 47.4464799 ], + [ 7.8440971, 47.4464542 ], + [ 7.8439049, 47.446331 ], + [ 7.8439032, 47.4463299 ], + [ 7.8441149, 47.4462058 ], + [ 7.8442353, 47.4461643 ], + [ 7.8446447, 47.4460231 ], + [ 7.8446995, 47.446005 ], + [ 7.8452818, 47.445813 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns065", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Rebhalde - Rehhag", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Rebhalde - Rehhag", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Rebhalde - Rehhag", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Rebhalde - Rehhag", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.9835988, 46.3336692 ], + [ 8.9835895, 46.3335281 ], + [ 8.9835695, 46.3333875 ], + [ 8.9835389, 46.3332478 ], + [ 8.9834977, 46.3331094 ], + [ 8.9834462, 46.3329727 ], + [ 8.9833845, 46.3328381 ], + [ 8.9833126, 46.3327058 ], + [ 8.9832309, 46.3325764 ], + [ 8.9831394, 46.3324501 ], + [ 8.9830386, 46.3323273 ], + [ 8.9829286, 46.3322083 ], + [ 8.9828098, 46.3320934 ], + [ 8.9826825, 46.3319831 ], + [ 8.982547, 46.3318775 ], + [ 8.9824037, 46.3317769 ], + [ 8.982253, 46.3316817 ], + [ 8.9820953, 46.3315921 ], + [ 8.9819311, 46.3315083 ], + [ 8.9817608, 46.3314306 ], + [ 8.9815848, 46.3313591 ], + [ 8.9814037, 46.3312941 ], + [ 8.9812179, 46.3312358 ], + [ 8.981028, 46.3311844 ], + [ 8.980834399999999, 46.3311398 ], + [ 8.980637699999999, 46.3311024 ], + [ 8.9804385, 46.3310721 ], + [ 8.9802373, 46.3310491 ], + [ 8.9800346, 46.3310334 ], + [ 8.979831, 46.3310251 ], + [ 8.979627, 46.3310241 ], + [ 8.9794232, 46.3310306 ], + [ 8.9792203, 46.3310445 ], + [ 8.9790186, 46.3310656 ], + [ 8.978818799999999, 46.3310941 ], + [ 8.9786215, 46.3311298 ], + [ 8.9784271, 46.3311726 ], + [ 8.9782362, 46.3312223 ], + [ 8.9780493, 46.331279 ], + [ 8.977867, 46.3313423 ], + [ 8.977689699999999, 46.3314121 ], + [ 8.9775179, 46.3314883 ], + [ 8.9773521, 46.3315706 ], + [ 8.9771928, 46.3316588 ], + [ 8.9770403, 46.3317526 ], + [ 8.9768951, 46.3318519 ], + [ 8.9767576, 46.3319562 ], + [ 8.9766282, 46.3320655 ], + [ 8.9765073, 46.3321792 ], + [ 8.9763951, 46.3322972 ], + [ 8.9762919, 46.3324191 ], + [ 8.9761981, 46.3325446 ], + [ 8.9761139, 46.3326732 ], + [ 8.9760396, 46.3328048 ], + [ 8.9759753, 46.3329389 ], + [ 8.9759212, 46.3330751 ], + [ 8.9758775, 46.3332131 ], + [ 8.9758442, 46.3333525 ], + [ 8.9758216, 46.3334929 ], + [ 8.9758096, 46.333634 ], + [ 8.9758082, 46.3337753 ], + [ 8.9758176, 46.3339164 ], + [ 8.9758375, 46.334057 ], + [ 8.9758681, 46.3341967 ], + [ 8.9759092, 46.3343351 ], + [ 8.9759607, 46.3344718 ], + [ 8.9760225, 46.3346065 ], + [ 8.9760943, 46.3347387 ], + [ 8.976176, 46.3348681 ], + [ 8.9762675, 46.3349944 ], + [ 8.9763683, 46.3351173 ], + [ 8.9764782, 46.3352363 ], + [ 8.9765971, 46.3353511 ], + [ 8.9767244, 46.3354615 ], + [ 8.976859900000001, 46.3355671 ], + [ 8.9770032, 46.3356677 ], + [ 8.9771538, 46.3357629 ], + [ 8.9773115, 46.3358525 ], + [ 8.9774757, 46.3359363 ], + [ 8.9776461, 46.336014 ], + [ 8.9778221, 46.3360855 ], + [ 8.9780032, 46.3361505 ], + [ 8.978189, 46.3362088 ], + [ 8.978379, 46.3362603 ], + [ 8.9785725, 46.3363048 ], + [ 8.9787692, 46.3363423 ], + [ 8.9789685, 46.3363725 ], + [ 8.9791697, 46.3363956 ], + [ 8.979372399999999, 46.3364113 ], + [ 8.9795761, 46.3364196 ], + [ 8.9797801, 46.3364205 ], + [ 8.9799838, 46.336414 ], + [ 8.9801868, 46.3364002 ], + [ 8.9803885, 46.336379 ], + [ 8.9805883, 46.3363505 ], + [ 8.9807857, 46.3363148 ], + [ 8.9809801, 46.336272 ], + [ 8.981171, 46.3362223 ], + [ 8.9813579, 46.3361657 ], + [ 8.9815402, 46.3361023 ], + [ 8.9817175, 46.3360325 ], + [ 8.9818893, 46.3359563 ], + [ 8.9820551, 46.335874 ], + [ 8.9822145, 46.3357858 ], + [ 8.9823669, 46.3356919 ], + [ 8.9825121, 46.3355927 ], + [ 8.9826496, 46.3354883 ], + [ 8.982779, 46.3353791 ], + [ 8.9829, 46.3352653 ], + [ 8.9830122, 46.3351473 ], + [ 8.9831153, 46.3350254 ], + [ 8.9832091, 46.3349 ], + [ 8.9832932, 46.3347713 ], + [ 8.9833676, 46.3346397 ], + [ 8.9834319, 46.3345056 ], + [ 8.9834859, 46.3343694 ], + [ 8.9835296, 46.3342314 ], + [ 8.983562899999999, 46.334092 ], + [ 8.9835855, 46.3339516 ], + [ 8.9835975, 46.3338105 ], + [ 8.9835988, 46.3336692 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0014", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Biasca", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Biasca", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Biasca", + "lang" : "it-CH" + }, + { + "text" : "Substation Biasca", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8235748, 47.5090313 ], + [ 7.8239089, 47.5090474 ], + [ 7.8243243, 47.509032 ], + [ 7.8249371, 47.5089664 ], + [ 7.8251105, 47.5088757 ], + [ 7.8250997, 47.5088683 ], + [ 7.8250893999999995, 47.5088606 ], + [ 7.8250798, 47.5088525 ], + [ 7.8250709, 47.508844 ], + [ 7.8250626, 47.5088352 ], + [ 7.8250551, 47.5088262 ], + [ 7.8250484, 47.5088168 ], + [ 7.8250424, 47.5088072 ], + [ 7.8250372, 47.5087975 ], + [ 7.8250328, 47.5087875 ], + [ 7.8250292, 47.5087774 ], + [ 7.8250265, 47.5087671 ], + [ 7.8248444, 47.5087114 ], + [ 7.8244916, 47.5086028 ], + [ 7.8240955, 47.50848 ], + [ 7.8239305, 47.5086568 ], + [ 7.8235748, 47.5090313 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns120", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Alter Weg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Alter Weg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Alter Weg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Alter Weg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6489238, 47.3885975 ], + [ 7.6489336, 47.3885541 ], + [ 7.6489361, 47.3885447 ], + [ 7.6489395, 47.3885355 ], + [ 7.6489436, 47.3885264 ], + [ 7.6489486, 47.3885175 ], + [ 7.6489544, 47.3885089 ], + [ 7.648961, 47.3885005 ], + [ 7.6489683, 47.3884924 ], + [ 7.6489763, 47.3884846 ], + [ 7.6489851, 47.3884772 ], + [ 7.6489945, 47.3884702 ], + [ 7.6490045, 47.3884636 ], + [ 7.6490152, 47.3884574 ], + [ 7.6490264, 47.3884518 ], + [ 7.6490381, 47.3884467 ], + [ 7.6490502, 47.3884421 ], + [ 7.6490627, 47.388438 ], + [ 7.6490756, 47.3884344 ], + [ 7.6490888, 47.3884314 ], + [ 7.6491022, 47.388429 ], + [ 7.6491159, 47.3884271 ], + [ 7.6491296, 47.3884258 ], + [ 7.6491435, 47.3884251 ], + [ 7.6491574, 47.3884249 ], + [ 7.6491713, 47.3884254 ], + [ 7.6496631, 47.3884535 ], + [ 7.6500537, 47.3884455 ], + [ 7.6506501, 47.3885207 ], + [ 7.6508959999999995, 47.3885714 ], + [ 7.6512575, 47.3886233 ], + [ 7.6521229, 47.3887227 ], + [ 7.6524506, 47.3887133 ], + [ 7.6525655, 47.388736 ], + [ 7.6526474, 47.3887631 ], + [ 7.6527075, 47.3887522 ], + [ 7.6526865, 47.388776 ], + [ 7.6527336, 47.388791499999996 ], + [ 7.6526060000000005, 47.3889303 ], + [ 7.6524686, 47.3890139 ], + [ 7.6522621, 47.3890944 ], + [ 7.6520219, 47.3891453 ], + [ 7.6515325, 47.3893049 ], + [ 7.6512053, 47.3893591 ], + [ 7.6511883, 47.3893629 ], + [ 7.6511716, 47.3893673 ], + [ 7.6511552, 47.3893722 ], + [ 7.6511393, 47.3893778 ], + [ 7.6511238, 47.3893838 ], + [ 7.6511087, 47.3893904 ], + [ 7.6510942, 47.3893975 ], + [ 7.6510802, 47.3894051 ], + [ 7.6510668, 47.3894131 ], + [ 7.651054, 47.3894217 ], + [ 7.6510419, 47.3894306 ], + [ 7.6510305, 47.38944 ], + [ 7.6510198, 47.3894497 ], + [ 7.6510098, 47.3894598 ], + [ 7.6510006, 47.3894702 ], + [ 7.6506875999999995, 47.3898022 ], + [ 7.6506491, 47.3900409 ], + [ 7.6506765, 47.3901153 ], + [ 7.6508669000000005, 47.3903385 ], + [ 7.6510589, 47.3905133 ], + [ 7.6512484, 47.3908175 ], + [ 7.6512796, 47.3909507 ], + [ 7.6512262, 47.3911019 ], + [ 7.6516919, 47.3913062 ], + [ 7.6520444, 47.3913138 ], + [ 7.6526119999999995, 47.391113 ], + [ 7.6532532, 47.3912409 ], + [ 7.6536992999999995, 47.3914107 ], + [ 7.6539339, 47.3914327 ], + [ 7.6545048, 47.3913613 ], + [ 7.654654, 47.3913467 ], + [ 7.6548545, 47.3913047 ], + [ 7.654993, 47.3912844 ], + [ 7.6551323, 47.3912133 ], + [ 7.6551591, 47.3909981 ], + [ 7.6550532, 47.3908339 ], + [ 7.6549918, 47.3905276 ], + [ 7.6549613999999995, 47.3904329 ], + [ 7.6549164, 47.3902902 ], + [ 7.6548382, 47.3901568 ], + [ 7.6546983, 47.3900281 ], + [ 7.6545626, 47.3899296 ], + [ 7.6544653, 47.389907 ], + [ 7.6544217, 47.3898969 ], + [ 7.6545884, 47.3895485 ], + [ 7.6545921, 47.3895361 ], + [ 7.6545969, 47.3895238 ], + [ 7.6546026, 47.3895118 ], + [ 7.6547117, 47.3892707 ], + [ 7.6547643, 47.3891299 ], + [ 7.6554961, 47.3885747 ], + [ 7.6559273999999995, 47.3886269 ], + [ 7.655929, 47.3886269 ], + [ 7.6562503, 47.3891895 ], + [ 7.6563726, 47.3893383 ], + [ 7.6586823, 47.3887448 ], + [ 7.659366, 47.3885684 ], + [ 7.660047, 47.3884032 ], + [ 7.6611561, 47.3880748 ], + [ 7.6614848, 47.3879767 ], + [ 7.6616476, 47.3882586 ], + [ 7.661789, 47.3885035 ], + [ 7.6625909, 47.3891018 ], + [ 7.6626665, 47.3890527 ], + [ 7.6630409, 47.3887691 ], + [ 7.6630683, 47.388533699999996 ], + [ 7.6635485, 47.3883085 ], + [ 7.6633846, 47.3882038 ], + [ 7.6635466, 47.3879386 ], + [ 7.6638496, 47.3877632 ], + [ 7.6640494, 47.3875524 ], + [ 7.664236, 47.3875414 ], + [ 7.6644065, 47.387245 ], + [ 7.6641162, 47.3872927 ], + [ 7.6642057999999995, 47.3869936 ], + [ 7.6631872, 47.3862643 ], + [ 7.6632989, 47.3861844 ], + [ 7.6640309, 47.3857266 ], + [ 7.663797, 47.3852345 ], + [ 7.6624289, 47.3858236 ], + [ 7.6620566, 47.3859649 ], + [ 7.6617695999999995, 47.3860638 ], + [ 7.6614945, 47.3861305 ], + [ 7.6612367, 47.386173 ], + [ 7.6607192, 47.3861745 ], + [ 7.6603005, 47.3861416 ], + [ 7.6598912, 47.386097 ], + [ 7.6598543, 47.3859508 ], + [ 7.6597941, 47.3858421 ], + [ 7.6598021, 47.3857721 ], + [ 7.6597716, 47.3856601 ], + [ 7.6596887, 47.3855113 ], + [ 7.6596402999999995, 47.3854358 ], + [ 7.6595286, 47.3852961 ], + [ 7.6593591, 47.385093499999996 ], + [ 7.6592429, 47.3849593 ], + [ 7.6592372, 47.3849507 ], + [ 7.6592305, 47.3849424 ], + [ 7.6592229, 47.3849345 ], + [ 7.6592142, 47.3849271 ], + [ 7.6592047, 47.3849201 ], + [ 7.6591945, 47.3849138 ], + [ 7.6591834, 47.384908 ], + [ 7.6591717, 47.3849029 ], + [ 7.6591594, 47.3848984 ], + [ 7.6591439999999995, 47.3848946 ], + [ 7.6590131, 47.3848647 ], + [ 7.6589535, 47.3848514 ], + [ 7.6589149, 47.384843 ], + [ 7.6588861999999995, 47.3848378 ], + [ 7.6588647, 47.3848334 ], + [ 7.6588509, 47.3848352 ], + [ 7.6588369, 47.3848364 ], + [ 7.6588228, 47.384837 ], + [ 7.6588088, 47.384837 ], + [ 7.6587947, 47.3848363 ], + [ 7.6587807, 47.384835 ], + [ 7.6585654, 47.3848163 ], + [ 7.6583605, 47.3847925 ], + [ 7.6582101, 47.3847621 ], + [ 7.658164, 47.3847526 ], + [ 7.6581176, 47.3847438 ], + [ 7.658071, 47.3847355 ], + [ 7.6580241000000004, 47.3847279 ], + [ 7.6579768999999995, 47.384721 ], + [ 7.6579296, 47.3847148 ], + [ 7.6578821, 47.3847091 ], + [ 7.6578345, 47.3847042 ], + [ 7.6577867, 47.3846999 ], + [ 7.6577388, 47.3846962 ], + [ 7.6576908, 47.3846933 ], + [ 7.6576427, 47.384691 ], + [ 7.6575945999999995, 47.3846893 ], + [ 7.6575464, 47.3846884 ], + [ 7.6574982, 47.3846881 ], + [ 7.65745, 47.3846884 ], + [ 7.6574018, 47.3846895 ], + [ 7.6573537, 47.3846912 ], + [ 7.656905, 47.3847126 ], + [ 7.6567105, 47.3847492 ], + [ 7.6561896, 47.3847546 ], + [ 7.6559276, 47.3847374 ], + [ 7.6557318, 47.3847843 ], + [ 7.6555071, 47.3848847 ], + [ 7.6553117, 47.3850881 ], + [ 7.6552416999999995, 47.3852098 ], + [ 7.6550953, 47.3858749 ], + [ 7.6548685, 47.3862443 ], + [ 7.6546101, 47.3866075 ], + [ 7.6545584, 47.3868209 ], + [ 7.6545184, 47.3868196 ], + [ 7.6540477, 47.3867037 ], + [ 7.6540194, 47.3869589 ], + [ 7.6540327, 47.3871276 ], + [ 7.6540499, 47.3875788 ], + [ 7.6536094, 47.3876413 ], + [ 7.6534514, 47.3875022 ], + [ 7.6530482, 47.3874725 ], + [ 7.6528538, 47.387103 ], + [ 7.6528960999999995, 47.3869309 ], + [ 7.6518342, 47.3871014 ], + [ 7.6514119, 47.3871476 ], + [ 7.650695, 47.3872049 ], + [ 7.6496911, 47.38735 ], + [ 7.6496731, 47.3875065 ], + [ 7.6496689, 47.3875432 ], + [ 7.6496629, 47.3875954 ], + [ 7.6489635, 47.3875599 ], + [ 7.6483329, 47.3877703 ], + [ 7.64786, 47.3878417 ], + [ 7.648762, 47.3885645 ], + [ 7.6489238, 47.3885975 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns247", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Ramstein - Aleten", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Ramstein - Aleten", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Ramstein - Aleten", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Ramstein - Aleten", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.2174132, 46.3403941 ], + [ 9.2174033, 46.340253 ], + [ 9.2173827, 46.3401124 ], + [ 9.2173515, 46.3399728 ], + [ 9.2173097, 46.3398345 ], + [ 9.2172576, 46.3396979 ], + [ 9.2171953, 46.3395634 ], + [ 9.2171228, 46.3394313 ], + [ 9.2170405, 46.339302 ], + [ 9.2169486, 46.3391759 ], + [ 9.2168472, 46.3390533 ], + [ 9.2167367, 46.3389345 ], + [ 9.2166174, 46.3388199 ], + [ 9.2164895, 46.3387098 ], + [ 9.2163536, 46.3386045 ], + [ 9.2162098, 46.3385042 ], + [ 9.2160587, 46.3384093 ], + [ 9.2159007, 46.33832 ], + [ 9.215736, 46.3382366 ], + [ 9.2155654, 46.3381592 ], + [ 9.2153891, 46.3380881 ], + [ 9.2152076, 46.3380236 ], + [ 9.2150216, 46.3379656 ], + [ 9.2148314, 46.3379145 ], + [ 9.2146376, 46.3378704 ], + [ 9.2144408, 46.3378333 ], + [ 9.2142414, 46.3378035 ], + [ 9.21404, 46.3377809 ], + [ 9.2138372, 46.3377656 ], + [ 9.2136336, 46.3377577 ], + [ 9.2134296, 46.3377572 ], + [ 9.2132258, 46.3377641 ], + [ 9.2130229, 46.3377784 ], + [ 9.2128213, 46.3378 ], + [ 9.2126216, 46.3378289 ], + [ 9.2124244, 46.3378649 ], + [ 9.2122302, 46.3379081 ], + [ 9.2120395, 46.3379583 ], + [ 9.2118528, 46.3380153 ], + [ 9.211670699999999, 46.338079 ], + [ 9.2114937, 46.3381492 ], + [ 9.2113222, 46.3382257 ], + [ 9.2111567, 46.3383084 ], + [ 9.2109978, 46.3383969 ], + [ 9.2108457, 46.338491 ], + [ 9.2107009, 46.3385906 ], + [ 9.2105639, 46.3386952 ], + [ 9.2104349, 46.3388047 ], + [ 9.2103144, 46.3389187 ], + [ 9.2102027, 46.339036899999996 ], + [ 9.2101001, 46.339159 ], + [ 9.2100068, 46.3392847 ], + [ 9.2099232, 46.3394136 ], + [ 9.2098494, 46.3395453 ], + [ 9.2097857, 46.3396795 ], + [ 9.2097321, 46.3398158 ], + [ 9.209689, 46.3399539 ], + [ 9.2096564, 46.3400934 ], + [ 9.2096343, 46.3402339 ], + [ 9.2096229, 46.3403749 ], + [ 9.2096222, 46.3405162 ], + [ 9.2096321, 46.3406573 ], + [ 9.2096527, 46.3407979 ], + [ 9.2096839, 46.3409375 ], + [ 9.2097256, 46.3410758 ], + [ 9.2097777, 46.3412124 ], + [ 9.20984, 46.341347 ], + [ 9.2099124, 46.341479 ], + [ 9.2099947, 46.3416083 ], + [ 9.2100867, 46.3417344 ], + [ 9.2101881, 46.341857 ], + [ 9.2102986, 46.3419758 ], + [ 9.2104179, 46.3420904 ], + [ 9.2105457, 46.3422005 ], + [ 9.2106817, 46.3423059 ], + [ 9.2108254, 46.3424061 ], + [ 9.2109765, 46.342501 ], + [ 9.2111346, 46.3425904 ], + [ 9.2112992, 46.3426738 ], + [ 9.2114699, 46.3427512 ], + [ 9.2116462, 46.3428223 ], + [ 9.2118277, 46.3428869 ], + [ 9.2120137, 46.3429448 ], + [ 9.2122039, 46.3429959 ], + [ 9.2123977, 46.34304 ], + [ 9.2125946, 46.3430771 ], + [ 9.212794, 46.343107 ], + [ 9.2129954, 46.3431296 ], + [ 9.2131982, 46.3431448 ], + [ 9.2134019, 46.3431527 ], + [ 9.2136059, 46.3431532 ], + [ 9.2138096, 46.3431463 ], + [ 9.2140126, 46.3431321 ], + [ 9.2142142, 46.3431105 ], + [ 9.2144139, 46.3430816 ], + [ 9.2146112, 46.3430455 ], + [ 9.2148054, 46.3430023 ], + [ 9.2149961, 46.3429521 ], + [ 9.2151828, 46.3428951 ], + [ 9.2153649, 46.3428314 ], + [ 9.2155419, 46.3427612 ], + [ 9.2157134, 46.3426847 ], + [ 9.2158789, 46.342602 ], + [ 9.2160379, 46.3425135 ], + [ 9.2161899, 46.3424193 ], + [ 9.2163347, 46.3423198 ], + [ 9.2164717, 46.3422151 ], + [ 9.2166007, 46.3421056 ], + [ 9.2167212, 46.3419916 ], + [ 9.2168329, 46.3418734 ], + [ 9.2169355, 46.3417513 ], + [ 9.2170288, 46.3416256 ], + [ 9.2171124, 46.3414968 ], + [ 9.2171862, 46.341365 ], + [ 9.2172499, 46.3412308 ], + [ 9.2173034, 46.3410945 ], + [ 9.2173465, 46.3409564 ], + [ 9.2173791, 46.3408169 ], + [ 9.2174011, 46.3406765 ], + [ 9.2174125, 46.3405354 ], + [ 9.2174132, 46.3403941 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0112", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Soazza", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Soazza", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Soazza", + "lang" : "it-CH" + }, + { + "text" : "Substation Soazza", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8790227999999995, 47.4998089 ], + [ 7.8793006, 47.4997783 ], + [ 7.8795622, 47.4997547 ], + [ 7.8799025, 47.4997346 ], + [ 7.8799849, 47.4997267 ], + [ 7.8800671, 47.4997183 ], + [ 7.8801492, 47.4997093 ], + [ 7.8802312, 47.4996997 ], + [ 7.880313, 47.499689599999996 ], + [ 7.8803946, 47.4996789 ], + [ 7.880476, 47.4996677 ], + [ 7.8805572999999995, 47.4996559 ], + [ 7.8809783, 47.4995954 ], + [ 7.8810239, 47.4995884 ], + [ 7.8810697, 47.4995819 ], + [ 7.8811157, 47.499576 ], + [ 7.8811618, 47.4995707 ], + [ 7.8812081, 47.4995658 ], + [ 7.8812543999999995, 47.4995616 ], + [ 7.8813009, 47.4995578 ], + [ 7.8813475, 47.4995546 ], + [ 7.8813942, 47.4995522 ], + [ 7.881441, 47.4995504 ], + [ 7.8814878, 47.4995491 ], + [ 7.8815347, 47.4995483 ], + [ 7.8815815, 47.4995481 ], + [ 7.8816284, 47.4995485 ], + [ 7.8816752, 47.4995494 ], + [ 7.8817221, 47.4995508 ], + [ 7.8830595, 47.4996498 ], + [ 7.8833009, 47.4996635 ], + [ 7.8833274, 47.4996116 ], + [ 7.8831823, 47.499457 ], + [ 7.8815182, 47.4992808 ], + [ 7.8800155, 47.499382 ], + [ 7.8798638, 47.4993797 ], + [ 7.8793341, 47.4994962 ], + [ 7.8788727, 47.4996473 ], + [ 7.8788829, 47.4996626 ], + [ 7.8788925, 47.499678 ], + [ 7.8789015, 47.4996936 ], + [ 7.8789099, 47.4997093 ], + [ 7.8789176, 47.4997252 ], + [ 7.8789247, 47.4997413 ], + [ 7.8789601, 47.4997847 ], + [ 7.8790227999999995, 47.4998089 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns296", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Allmetgraben", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Allmetgraben", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Allmetgraben", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Allmetgraben", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5046737, 47.4317421 ], + [ 7.504886, 47.4317984 ], + [ 7.5048886, 47.4317946 ], + [ 7.5049371, 47.431768 ], + [ 7.5049496, 47.4317397 ], + [ 7.5048937, 47.4316737 ], + [ 7.5048203, 47.4316283 ], + [ 7.5047951, 47.4316181 ], + [ 7.5048266, 47.4315692 ], + [ 7.5048509, 47.4315275 ], + [ 7.5048658, 47.4314902 ], + [ 7.5048724, 47.431472 ], + [ 7.5049036000000005, 47.4313589 ], + [ 7.5049383, 47.431234 ], + [ 7.5049817999999995, 47.4310727 ], + [ 7.5050267, 47.4309008 ], + [ 7.5050574, 47.4307384 ], + [ 7.5050826, 47.4305464 ], + [ 7.5051192, 47.4303787 ], + [ 7.5051718, 47.4302565 ], + [ 7.5052133, 47.4301502 ], + [ 7.5052199, 47.4301209 ], + [ 7.5052406, 47.4300287 ], + [ 7.5052649, 47.4298718 ], + [ 7.5052861, 47.4296918 ], + [ 7.505317, 47.4295522 ], + [ 7.5051796, 47.4295372 ], + [ 7.5051447, 47.4295094 ], + [ 7.5050462, 47.4294936 ], + [ 7.5050327, 47.4294936 ], + [ 7.5049722, 47.4305711 ], + [ 7.504967, 47.4305863 ], + [ 7.5048407, 47.431086 ], + [ 7.5046737, 47.4317421 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns299", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Dittinger Weide und Dittinger Wald", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Dittinger Weide und Dittinger Wald", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Dittinger Weide und Dittinger Wald", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Dittinger Weide und Dittinger Wald", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5725017999999995, 47.503387000000004 ], + [ 7.5723996, 47.5034369 ], + [ 7.5723289000000005, 47.503456 ], + [ 7.5723895, 47.5038621 ], + [ 7.5724499, 47.5042583 ], + [ 7.5724833, 47.5044792 ], + [ 7.571889, 47.5047386 ], + [ 7.5712573, 47.5050137 ], + [ 7.571241, 47.5052216 ], + [ 7.5713795, 47.5052341 ], + [ 7.5717418, 47.5052688 ], + [ 7.5730215, 47.5053996 ], + [ 7.5740646, 47.5054958 ], + [ 7.5742397, 47.505508 ], + [ 7.5742369, 47.5052253 ], + [ 7.5742224, 47.5042983 ], + [ 7.5754186, 47.5044262 ], + [ 7.5754259, 47.5048853 ], + [ 7.5754361, 47.5053096 ], + [ 7.5754422, 47.5055513 ], + [ 7.5754486, 47.5056454 ], + [ 7.5754832, 47.5061305 ], + [ 7.5753854, 47.5068365 ], + [ 7.5753767, 47.5068995 ], + [ 7.5753592, 47.5068983 ], + [ 7.5744171, 47.5068348 ], + [ 7.5735019999999995, 47.506771 ], + [ 7.5734007, 47.5067643 ], + [ 7.5724972, 47.5067046 ], + [ 7.5724069, 47.5066986 ], + [ 7.5721913, 47.5066843 ], + [ 7.571445, 47.506630799999996 ], + [ 7.571282, 47.5066188 ], + [ 7.5712614, 47.507317 ], + [ 7.5712447, 47.507868 ], + [ 7.5712486, 47.5081171 ], + [ 7.5713468, 47.5087082 ], + [ 7.5713818, 47.5089027 ], + [ 7.5714478, 47.5092698 ], + [ 7.5711822, 47.509304 ], + [ 7.5711911, 47.5093415 ], + [ 7.5712011, 47.5093843 ], + [ 7.5713401000000005, 47.5099754 ], + [ 7.5714998, 47.5106533 ], + [ 7.5715019, 47.5106623 ], + [ 7.571668, 47.5113699 ], + [ 7.5717976, 47.5119282 ], + [ 7.571808, 47.5119729 ], + [ 7.5719051, 47.5119272 ], + [ 7.5723772, 47.5117045 ], + [ 7.5725525000000005, 47.5116384 ], + [ 7.5727118, 47.5115986 ], + [ 7.5727408, 47.5116495 ], + [ 7.5727825, 47.5116714 ], + [ 7.5727993, 47.511783199999996 ], + [ 7.5728137, 47.511894 ], + [ 7.5728261, 47.5120069 ], + [ 7.5728515, 47.5122236 ], + [ 7.5728971, 47.512216 ], + [ 7.5731458, 47.5121714 ], + [ 7.5737138999999996, 47.5120674 ], + [ 7.5744793, 47.5119311 ], + [ 7.5745191, 47.5119233 ], + [ 7.5742362, 47.5113889 ], + [ 7.5742597, 47.5113527 ], + [ 7.5742315, 47.5113033 ], + [ 7.5744150999999995, 47.5112578 ], + [ 7.5751467, 47.511049 ], + [ 7.5758965, 47.5108362 ], + [ 7.5761499, 47.5107642 ], + [ 7.5762713999999995, 47.5107305 ], + [ 7.5763762, 47.5107521 ], + [ 7.5763752, 47.5107188 ], + [ 7.5764644, 47.5104231 ], + [ 7.5765381, 47.510179 ], + [ 7.5765549, 47.5101226 ], + [ 7.5766484, 47.509808 ], + [ 7.5766607, 47.5097658 ], + [ 7.5766913, 47.5097655 ], + [ 7.5773313, 47.50976 ], + [ 7.5779403, 47.5097543 ], + [ 7.5784079, 47.5097503 ], + [ 7.5790255, 47.5097451 ], + [ 7.5790575, 47.5102593 ], + [ 7.5790827, 47.5106725 ], + [ 7.5791905, 47.5106492 ], + [ 7.5799768, 47.510366 ], + [ 7.5807531, 47.5100853 ], + [ 7.581651, 47.5097572 ], + [ 7.5819919, 47.5096707 ], + [ 7.5826168, 47.5095378 ], + [ 7.5833106, 47.5094077 ], + [ 7.5832983, 47.5093451 ], + [ 7.5832077, 47.5088824 ], + [ 7.5831286, 47.5084738 ], + [ 7.5830828, 47.5082345 ], + [ 7.5822931, 47.5081457 ], + [ 7.581493, 47.5080558 ], + [ 7.5815653, 47.5078344 ], + [ 7.5814537, 47.5078383 ], + [ 7.5808143, 47.507835 ], + [ 7.580323, 47.5077438 ], + [ 7.5798527, 47.5076329 ], + [ 7.5794802, 47.5075293 ], + [ 7.5791364, 47.507411 ], + [ 7.578788, 47.5070519 ], + [ 7.5787531999999995, 47.5069725 ], + [ 7.5785064, 47.5064198 ], + [ 7.5781844, 47.5053278 ], + [ 7.5781423, 47.5048625 ], + [ 7.5781183, 47.5043229 ], + [ 7.5780717, 47.504102 ], + [ 7.5754795999999995, 47.5041217 ], + [ 7.5755007, 47.5038544 ], + [ 7.5755339, 47.5036743 ], + [ 7.5755479, 47.5035982 ], + [ 7.5756513, 47.5031894 ], + [ 7.5756657, 47.5031388 ], + [ 7.5756122999999995, 47.503137100000004 ], + [ 7.5748042, 47.503113 ], + [ 7.5742154, 47.5032697 ], + [ 7.5737237, 47.503399 ], + [ 7.573154, 47.5033414 ], + [ 7.5727909, 47.5031604 ], + [ 7.5726505, 47.5032872 ], + [ 7.5726364, 47.5032998 ], + [ 7.5726216, 47.5033121 ], + [ 7.5726062, 47.503324 ], + [ 7.5725902, 47.5033355 ], + [ 7.5725736, 47.5033466 ], + [ 7.5725565, 47.5033573 ], + [ 7.5725388, 47.5033677 ], + [ 7.5725204999999995, 47.5033776 ], + [ 7.5725017999999995, 47.503387000000004 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns147", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Bruederholzhof", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Bruederholzhof", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Bruederholzhof", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Bruederholzhof", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.779338, 47.3768148 ], + [ 7.7790531, 47.3768099 ], + [ 7.7789753, 47.3768127 ], + [ 7.7790815, 47.3782005 ], + [ 7.7790861, 47.3782607 ], + [ 7.7791243, 47.3787596 ], + [ 7.7791255, 47.3787755 ], + [ 7.779127, 47.3787948 ], + [ 7.779128, 47.3788079 ], + [ 7.7791471, 47.3790579 ], + [ 7.7791471, 47.3790583 ], + [ 7.7792797, 47.3790826 ], + [ 7.7794887, 47.3790933 ], + [ 7.7797524, 47.3791128 ], + [ 7.7800785999999995, 47.3791315 ], + [ 7.7802086, 47.3791389 ], + [ 7.7802311, 47.3790152 ], + [ 7.7802728, 47.3788333 ], + [ 7.7805111, 47.3788484 ], + [ 7.781054, 47.3788359 ], + [ 7.7811999, 47.3788237 ], + [ 7.7817423, 47.3787809 ], + [ 7.7823173, 47.3789309 ], + [ 7.7829124, 47.3789169 ], + [ 7.7835194, 47.3788457 ], + [ 7.7835474, 47.3788478 ], + [ 7.7840312, 47.3788241 ], + [ 7.7841221, 47.3788172 ], + [ 7.7845062, 47.3786967 ], + [ 7.7847978, 47.3786782 ], + [ 7.7850751, 47.3786653 ], + [ 7.785462, 47.3787464 ], + [ 7.7857943, 47.3787821 ], + [ 7.7861514, 47.3787411 ], + [ 7.786461, 47.3787178 ], + [ 7.7865965, 47.3787166 ], + [ 7.786958, 47.3787039 ], + [ 7.787675, 47.3787275 ], + [ 7.7880527, 47.3788231 ], + [ 7.7886141, 47.3787081 ], + [ 7.7893124, 47.3786405 ], + [ 7.7895627, 47.3789685 ], + [ 7.7897586, 47.3791035 ], + [ 7.7900568, 47.379091 ], + [ 7.7903859, 47.3791101 ], + [ 7.790556, 47.3792034 ], + [ 7.7909097, 47.379311 ], + [ 7.7908363, 47.3789478 ], + [ 7.7905337, 47.3785365 ], + [ 7.7904478, 47.378173 ], + [ 7.7904358, 47.3781223 ], + [ 7.7903553, 47.3777926 ], + [ 7.7901758, 47.3771626 ], + [ 7.789909, 47.3773034 ], + [ 7.7897013, 47.3774129 ], + [ 7.7893742, 47.3774332 ], + [ 7.7890525, 47.3773962 ], + [ 7.7889304, 47.3773821 ], + [ 7.7888152, 47.3773426 ], + [ 7.7886947, 47.3773012 ], + [ 7.7886844, 47.377301 ], + [ 7.7881067999999996, 47.377289 ], + [ 7.7876777, 47.377216 ], + [ 7.7875606, 47.3772415 ], + [ 7.7873681999999995, 47.3772836 ], + [ 7.7870352, 47.3770858 ], + [ 7.7870197999999995, 47.3770811 ], + [ 7.7868718, 47.3770481 ], + [ 7.786766, 47.3770246 ], + [ 7.7863708, 47.3770117 ], + [ 7.786264, 47.3770083 ], + [ 7.785991, 47.3768703 ], + [ 7.7856439, 47.3767789 ], + [ 7.7849955, 47.3767595 ], + [ 7.7847551, 47.3767332 ], + [ 7.7845196, 47.3767636 ], + [ 7.784324, 47.3767888 ], + [ 7.7841783, 47.3767851 ], + [ 7.7841007, 47.3767831 ], + [ 7.7838975999999995, 47.376782 ], + [ 7.7828113, 47.3767672 ], + [ 7.7825051, 47.3769276 ], + [ 7.7824871, 47.3769371 ], + [ 7.7817217, 47.3769245 ], + [ 7.7813377, 47.3768391 ], + [ 7.7802318, 47.3768765 ], + [ 7.7800273, 47.3768571 ], + [ 7.7796343, 47.3768198 ], + [ 7.779338, 47.3768148 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr017", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Lauchflue", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Lauchflue", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Lauchflue", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Lauchflue", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.9432596, 46.4064755 ], + [ 6.9432556, 46.4063342 ], + [ 6.9432408, 46.4061933 ], + [ 6.9432154, 46.4060531 ], + [ 6.9431795, 46.405914 ], + [ 6.9431331, 46.4057764 ], + [ 6.9430762999999995, 46.4056407 ], + [ 6.9430093, 46.4055073 ], + [ 6.9429324, 46.4053764 ], + [ 6.9428456, 46.4052485 ], + [ 6.9427493, 46.4051239 ], + [ 6.9426437, 46.405003 ], + [ 6.9425291, 46.404886 ], + [ 6.9424057999999995, 46.4047734 ], + [ 6.9422741, 46.4046654 ], + [ 6.9421345, 46.4045623 ], + [ 6.9419872, 46.4044644 ], + [ 6.9418328, 46.4043719 ], + [ 6.9416715, 46.4042852 ], + [ 6.9415039, 46.4042044 ], + [ 6.9413305, 46.4041298 ], + [ 6.9411515999999995, 46.4040616 ], + [ 6.9409678, 46.404 ], + [ 6.9407796, 46.4039451 ], + [ 6.9405876, 46.4038971 ], + [ 6.9403921, 46.4038561 ], + [ 6.9401938, 46.4038223 ], + [ 6.9399933, 46.4037956 ], + [ 6.9397909, 46.4037763 ], + [ 6.9395874, 46.4037643 ], + [ 6.9393833, 46.4037597 ], + [ 6.9391791, 46.4037625 ], + [ 6.9389754, 46.4037727 ], + [ 6.9387728, 46.4037902 ], + [ 6.9385717, 46.4038151 ], + [ 6.9383728, 46.4038472 ], + [ 6.9381766, 46.4038865 ], + [ 6.9379837, 46.4039328 ], + [ 6.9377945, 46.403986 ], + [ 6.9376096, 46.404046 ], + [ 6.9374295, 46.4041126 ], + [ 6.9372546, 46.4041857 ], + [ 6.9370856, 46.404265 ], + [ 6.9369228, 46.4043502 ], + [ 6.9367666, 46.4044413 ], + [ 6.9366176, 46.4045379 ], + [ 6.936476, 46.4046398 ], + [ 6.9363424, 46.4047466 ], + [ 6.936217, 46.4048581 ], + [ 6.9361003, 46.4049741 ], + [ 6.9359924, 46.4050941 ], + [ 6.9358938, 46.4052178 ], + [ 6.9358047, 46.4053449 ], + [ 6.9357253, 46.4054751 ], + [ 6.9356559, 46.405608 ], + [ 6.9355967, 46.4057432 ], + [ 6.9355477, 46.4058804 ], + [ 6.9355092, 46.4060191 ], + [ 6.9354812, 46.406159099999996 ], + [ 6.9354639, 46.4062998 ], + [ 6.9354572, 46.4064411 ], + [ 6.9354613, 46.4065823 ], + [ 6.9354759999999995, 46.4067232 ], + [ 6.9355013, 46.4068634 ], + [ 6.9355373, 46.4070025 ], + [ 6.9355837, 46.4071401 ], + [ 6.9356404, 46.4072758 ], + [ 6.9357074, 46.4074093 ], + [ 6.9357843, 46.4075402 ], + [ 6.9358711, 46.4076681 ], + [ 6.9359674, 46.4077927 ], + [ 6.936073, 46.4079136 ], + [ 6.9361876, 46.4080306 ], + [ 6.9363109, 46.4081432 ], + [ 6.9364425, 46.4082512 ], + [ 6.9365822, 46.4083544 ], + [ 6.9367294, 46.4084523 ], + [ 6.9368839, 46.4085447 ], + [ 6.9370451, 46.4086314 ], + [ 6.9372127, 46.4087122 ], + [ 6.9373862, 46.4087868 ], + [ 6.9375651, 46.408855 ], + [ 6.9377489, 46.4089167 ], + [ 6.9379371, 46.4089716 ], + [ 6.9381292, 46.4090196 ], + [ 6.9383246, 46.4090606 ], + [ 6.9385229, 46.4090944 ], + [ 6.9387235, 46.4091211 ], + [ 6.9389259, 46.4091404 ], + [ 6.9391294, 46.409152399999996 ], + [ 6.9393335, 46.409157 ], + [ 6.9395377, 46.4091542 ], + [ 6.9397415, 46.409144 ], + [ 6.9399441, 46.4091264 ], + [ 6.9401452, 46.4091016 ], + [ 6.9403441, 46.4090695 ], + [ 6.9405403, 46.4090302 ], + [ 6.9407333, 46.4089839 ], + [ 6.9409225, 46.4089307 ], + [ 6.9411074, 46.4088706 ], + [ 6.9412875, 46.408804 ], + [ 6.9414624, 46.408731 ], + [ 6.9416314, 46.4086517 ], + [ 6.9417943, 46.4085664 ], + [ 6.9419504, 46.4084753 ], + [ 6.9420995, 46.4083787 ], + [ 6.942241, 46.4082768 ], + [ 6.9423746, 46.40817 ], + [ 6.9425, 46.4080584 ], + [ 6.9426168, 46.4079425 ], + [ 6.9427246, 46.4078225 ], + [ 6.9428232, 46.4076988 ], + [ 6.9429123, 46.4075716 ], + [ 6.9429916, 46.4074415 ], + [ 6.943061, 46.4073086 ], + [ 6.9431203, 46.4071734 ], + [ 6.9431692, 46.4070362 ], + [ 6.9432077, 46.4068974 ], + [ 6.9432357, 46.4067575 ], + [ 6.943253, 46.4066167 ], + [ 6.9432596, 46.4064755 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0125", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Veytaux", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Veytaux", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Veytaux", + "lang" : "it-CH" + }, + { + "text" : "Substation Veytaux", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7443432, 47.4977556 ], + [ 7.7447326, 47.4977499 ], + [ 7.7452273, 47.4978369 ], + [ 7.7458981, 47.4983906 ], + [ 7.7461247, 47.4986469 ], + [ 7.7463902000000004, 47.4985145 ], + [ 7.7467081, 47.4983582 ], + [ 7.746907, 47.498262 ], + [ 7.7472875, 47.4981796 ], + [ 7.7476945, 47.4981633 ], + [ 7.7479612, 47.4980743 ], + [ 7.7480014, 47.4980812 ], + [ 7.748229, 47.4983098 ], + [ 7.7483233, 47.4983144 ], + [ 7.7484949, 47.4982678 ], + [ 7.7486956, 47.4982244 ], + [ 7.7485807, 47.4979807 ], + [ 7.7483522, 47.497721 ], + [ 7.7481179000000004, 47.4974782 ], + [ 7.747829, 47.497326 ], + [ 7.7473104, 47.4973039 ], + [ 7.7466248, 47.4972517 ], + [ 7.7465835, 47.4972729 ], + [ 7.7465583, 47.4972858 ], + [ 7.7464615, 47.497285 ], + [ 7.7464044, 47.4972845 ], + [ 7.7457336, 47.4973366 ], + [ 7.7452716, 47.4974073 ], + [ 7.7448531, 47.497451 ], + [ 7.7443511, 47.4975636 ], + [ 7.7442646, 47.4976812 ], + [ 7.7442612, 47.4977513 ], + [ 7.7442611, 47.4977521 ], + [ 7.7443409, 47.4977509 ], + [ 7.7443432, 47.4977556 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr152", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Gmeinacher", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Gmeinacher", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Gmeinacher", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Gmeinacher", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7732857, 47.4559431 ], + [ 7.7734415, 47.4557125 ], + [ 7.7737362, 47.4554467 ], + [ 7.7739585, 47.4552807 ], + [ 7.7735847, 47.4547305 ], + [ 7.7736501, 47.4546904 ], + [ 7.7738312, 47.4544963 ], + [ 7.7743753, 47.4542755 ], + [ 7.7747314, 47.4541329 ], + [ 7.7752536, 47.4536517 ], + [ 7.7755018, 47.4534957 ], + [ 7.7753657, 47.4532768 ], + [ 7.7750567, 47.4533919 ], + [ 7.7746866, 47.4534432 ], + [ 7.774431, 47.4534942 ], + [ 7.7741954, 47.453504 ], + [ 7.7739187, 47.4534226 ], + [ 7.7736774, 47.4533565 ], + [ 7.7737006, 47.4535481 ], + [ 7.7736719, 47.4536989 ], + [ 7.7735886, 47.4539135 ], + [ 7.7734908, 47.4539855 ], + [ 7.772926, 47.4542441 ], + [ 7.772577, 47.4542487 ], + [ 7.7722761, 47.4542085 ], + [ 7.7722702, 47.4543977 ], + [ 7.7722666, 47.4544243 ], + [ 7.7722613, 47.4544507 ], + [ 7.7722544, 47.454477 ], + [ 7.7722458, 47.4545031 ], + [ 7.7722356, 47.4545289 ], + [ 7.7722238, 47.4545543 ], + [ 7.7722105, 47.4545794 ], + [ 7.7721955, 47.4546041 ], + [ 7.772166, 47.4546509 ], + [ 7.7721346, 47.454697 ], + [ 7.7721014, 47.4547426 ], + [ 7.7720665, 47.4547876 ], + [ 7.772023, 47.4548409 ], + [ 7.7719778, 47.4548935 ], + [ 7.7719309, 47.4549453 ], + [ 7.7718822, 47.4549965 ], + [ 7.7718513, 47.4550283 ], + [ 7.7718212, 47.4550604 ], + [ 7.7717919, 47.4550929 ], + [ 7.7717636, 47.4551258 ], + [ 7.7717361, 47.455159 ], + [ 7.7717095, 47.4551925 ], + [ 7.7716589, 47.4552565 ], + [ 7.7716097, 47.4553209 ], + [ 7.771562, 47.4553858 ], + [ 7.7715157999999995, 47.4554512 ], + [ 7.771486, 47.4555021 ], + [ 7.7714578, 47.4555533 ], + [ 7.7714311, 47.4556049 ], + [ 7.7714058999999995, 47.4556569 ], + [ 7.7732857, 47.4559431 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr062", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Althof", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Althof", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Althof", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Althof", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8787193, 47.4470349 ], + [ 7.8787271, 47.4472157 ], + [ 7.8788495, 47.4471421 ], + [ 7.8790243, 47.4470397 ], + [ 7.8792173, 47.4469235 ], + [ 7.879328, 47.4468856 ], + [ 7.8794611, 47.4468155 ], + [ 7.8795658, 47.4467473 ], + [ 7.879754, 47.4466146 ], + [ 7.880046, 47.4464897 ], + [ 7.8802344, 47.4464074 ], + [ 7.8806876, 47.4461711 ], + [ 7.8807827, 47.4460994 ], + [ 7.8808999, 47.4460147 ], + [ 7.8811042, 47.4458447 ], + [ 7.8812025, 47.4457672 ], + [ 7.8812805, 47.4457191 ], + [ 7.8816007, 47.4455164 ], + [ 7.8816734, 47.4454456 ], + [ 7.8818281, 47.4452252 ], + [ 7.8819439, 47.4450284 ], + [ 7.8820353, 47.4449234 ], + [ 7.88211, 47.4448531 ], + [ 7.8821786, 47.4448006 ], + [ 7.8821683, 47.4447761 ], + [ 7.8820969, 47.444516 ], + [ 7.8820204, 47.4442838 ], + [ 7.8819661, 47.4440446 ], + [ 7.8821859, 47.4435515 ], + [ 7.8823224, 47.4432143 ], + [ 7.8820748, 47.4431928 ], + [ 7.88174, 47.4431627 ], + [ 7.8818081, 47.4428497 ], + [ 7.8815254, 47.4428211 ], + [ 7.8810948, 47.4427493 ], + [ 7.881091, 47.4427484 ], + [ 7.8810207, 47.4427326 ], + [ 7.8810104, 47.4427302 ], + [ 7.8809091, 47.4429269 ], + [ 7.8808271, 47.4430584 ], + [ 7.8807019, 47.4432072 ], + [ 7.8805626, 47.4433477 ], + [ 7.8804261, 47.4434776 ], + [ 7.8803090000000005, 47.4436106 ], + [ 7.8802166, 47.4437436 ], + [ 7.8801091, 47.4439052 ], + [ 7.8799928, 47.4440804 ], + [ 7.8798427, 47.4443127 ], + [ 7.8797431, 47.4444402 ], + [ 7.8795794, 47.4446571 ], + [ 7.8794585, 47.4447913 ], + [ 7.8792884999999995, 47.4449378 ], + [ 7.8791308, 47.4450527 ], + [ 7.8788515, 47.4452317 ], + [ 7.8786143, 47.4453814 ], + [ 7.8783347, 47.4455473 ], + [ 7.8780048, 47.445749 ], + [ 7.8778827, 47.4458329 ], + [ 7.8777773, 47.445923 ], + [ 7.8777925, 47.4459319 ], + [ 7.8779023, 47.4459958 ], + [ 7.8781563, 47.4461469 ], + [ 7.8783992, 47.44629 ], + [ 7.8786698, 47.4464214 ], + [ 7.8789102, 47.4465393 ], + [ 7.8788405, 47.446698 ], + [ 7.8787193, 47.4470349 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns084", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Scheidegg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Scheidegg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Scheidegg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Scheidegg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.1401855, 46.4807981 ], + [ 7.1402007, 46.4807981 ], + [ 7.1403295, 46.4807981 ], + [ 7.1405699, 46.480793 ], + [ 7.1408244, 46.4807764 ], + [ 7.1410768000000004, 46.4807483 ], + [ 7.141326, 46.4807088 ], + [ 7.1415709, 46.4806582 ], + [ 7.1418105, 46.4805966 ], + [ 7.1420437, 46.4805244 ], + [ 7.1422696, 46.4804417 ], + [ 7.1424872, 46.480349 ], + [ 7.1426956, 46.4802467 ], + [ 7.1428938, 46.4801352 ], + [ 7.1430811, 46.4800149 ], + [ 7.1432565, 46.4798865 ], + [ 7.1434194, 46.4797504 ], + [ 7.1435691, 46.4796073 ], + [ 7.1437049, 46.4794577 ], + [ 7.1438263, 46.4793022 ], + [ 7.1439327, 46.4791416 ], + [ 7.1440236, 46.4789766 ], + [ 7.1440988, 46.4788078 ], + [ 7.1441577, 46.478636 ], + [ 7.1442003, 46.4784618 ], + [ 7.1442263, 46.4782862 ], + [ 7.1442357, 46.4781097 ], + [ 7.1442357, 46.4781074 ], + [ 7.1442361, 46.4780135 ], + [ 7.1442287, 46.4778393 ], + [ 7.1442046, 46.4776634 ], + [ 7.1441639, 46.4774891 ], + [ 7.1441068, 46.477317 ], + [ 7.1440335, 46.4771478 ], + [ 7.1439444, 46.4769823 ], + [ 7.1438397, 46.4768211 ], + [ 7.1437201, 46.4766651 ], + [ 7.1435859, 46.4765148 ], + [ 7.1434378, 46.4763708 ], + [ 7.1432764, 46.4762339 ], + [ 7.1431024, 46.4761046 ], + [ 7.1429165, 46.4759833 ], + [ 7.1427195, 46.4758708 ], + [ 7.1425123, 46.4757674 ], + [ 7.1422957, 46.4756736 ], + [ 7.1420707, 46.4755897 ], + [ 7.1418383, 46.4755162 ], + [ 7.1415994, 46.4754534 ], + [ 7.1413551, 46.4754015 ], + [ 7.1411064, 46.4753607 ], + [ 7.1408543, 46.4753313 ], + [ 7.1406, 46.4753133 ], + [ 7.1403446, 46.4753069 ], + [ 7.1402402, 46.4753076 ], + [ 7.1401113, 46.4753096 ], + [ 7.1399602, 46.475314 ], + [ 7.1397057, 46.4753307 ], + [ 7.1394534, 46.4753588 ], + [ 7.1392042, 46.4753982 ], + [ 7.1389593, 46.4754488 ], + [ 7.1387198, 46.4755104 ], + [ 7.1384865, 46.4755827 ], + [ 7.1382606, 46.4756653 ], + [ 7.138043, 46.475758 ], + [ 7.1378347, 46.4758603 ], + [ 7.1376365, 46.4759718 ], + [ 7.1374492, 46.476092 ], + [ 7.1372738, 46.4762204 ], + [ 7.1371109, 46.4763565 ], + [ 7.1369612, 46.4764997 ], + [ 7.1368253, 46.4766493 ], + [ 7.136704, 46.4768047 ], + [ 7.1365976, 46.4769653 ], + [ 7.1365066, 46.4771303 ], + [ 7.1364314, 46.4772991 ], + [ 7.1363724, 46.4774709 ], + [ 7.1363298, 46.4776451 ], + [ 7.1363038, 46.4778207 ], + [ 7.1362944, 46.4779972 ], + [ 7.1362944, 46.4779995 ], + [ 7.136294, 46.4780913 ], + [ 7.1363014, 46.4782656 ], + [ 7.1363255, 46.4784414 ], + [ 7.1363661, 46.4786158 ], + [ 7.1364232, 46.4787879 ], + [ 7.1364965, 46.4789571 ], + [ 7.1365856, 46.4791226 ], + [ 7.1366902, 46.4792837 ], + [ 7.1368098, 46.4794398 ], + [ 7.136944, 46.4795901 ], + [ 7.1370921, 46.4797341 ], + [ 7.1372535, 46.479871 ], + [ 7.1374275, 46.4800004 ], + [ 7.1376134, 46.4801216 ], + [ 7.1378104, 46.4802342 ], + [ 7.1380177, 46.4803376 ], + [ 7.1382342, 46.4804314 ], + [ 7.1384592, 46.4805152 ], + [ 7.1386917, 46.4805887 ], + [ 7.1389306, 46.4806516 ], + [ 7.1391749, 46.4807035 ], + [ 7.1394237, 46.4807443 ], + [ 7.1396757, 46.4807737 ], + [ 7.13993, 46.4807917 ], + [ 7.1401855, 46.4807981 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00030", + "country" : "CHE", + "name" : [ + { + "text" : "Hôpital régional Hôpital du Pays d'Enhaut - Châteaux-d'Oex", + "lang" : "de-CH" + }, + { + "text" : "Hôpital régional Hôpital du Pays d'Enhaut - Châteaux-d'Oex", + "lang" : "fr-CH" + }, + { + "text" : "Hôpital régional Hôpital du Pays d'Enhaut - Châteaux-d'Oex", + "lang" : "it-CH" + }, + { + "text" : "Hôpital régional Hôpital du Pays d'Enhaut - Châteaux-d'Oex", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kantonspolizei Waadt", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale vaudoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Vaud", + "lang" : "it-CH" + }, + { + "text" : "Vaud Cantonal Police", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.pcv@vd.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8075569, 47.1828137 ], + [ 7.8074503, 47.1804603 ], + [ 7.8071632, 47.1781139 ], + [ 7.8066964, 47.1757809 ], + [ 7.8060513, 47.1734678 ], + [ 7.8052296, 47.1711809 ], + [ 7.8042335, 47.1689265 ], + [ 7.8030659, 47.1667106 ], + [ 7.80173, 47.1645395 ], + [ 7.8002294, 47.162419 ], + [ 7.7985683, 47.160355 ], + [ 7.7967512, 47.158353 ], + [ 7.7947831, 47.1564186 ], + [ 7.7926694, 47.1545571 ], + [ 7.7904160000000005, 47.1527736 ], + [ 7.788029, 47.1510729 ], + [ 7.7855149, 47.1494597 ], + [ 7.7828806, 47.1479384 ], + [ 7.7801335, 47.1465132 ], + [ 7.7772808, 47.145188 ], + [ 7.7743306, 47.1439663 ], + [ 7.7712908, 47.1428516 ], + [ 7.7681699, 47.1418469 ], + [ 7.7649761999999996, 47.140955 ], + [ 7.7617186, 47.1401781 ], + [ 7.7584059, 47.139518699999996 ], + [ 7.7550473, 47.1389783 ], + [ 7.7516519, 47.1385584 ], + [ 7.748229, 47.1382603 ], + [ 7.7447879, 47.1380848 ], + [ 7.7413381, 47.1380323 ], + [ 7.737889, 47.1381029 ], + [ 7.7344501, 47.1382965 ], + [ 7.7310306, 47.1386126 ], + [ 7.7276401, 47.1390502 ], + [ 7.7242876, 47.1396083 ], + [ 7.7209825, 47.1402851 ], + [ 7.7177337, 47.141079 ], + [ 7.7145502, 47.1419877 ], + [ 7.7114407, 47.1430088 ], + [ 7.7084136, 47.1441394 ], + [ 7.7054772, 47.1453765 ], + [ 7.7026395999999995, 47.1467167 ], + [ 7.6999086, 47.1481563 ], + [ 7.6972916, 47.1496914 ], + [ 7.6947957, 47.1513177 ], + [ 7.692428, 47.1530309 ], + [ 7.6901947, 47.1548263 ], + [ 7.6881021, 47.1566988 ], + [ 7.6861559, 47.1586435 ], + [ 7.6843615, 47.1606549 ], + [ 7.6827237, 47.1627276 ], + [ 7.6812471, 47.1648559 ], + [ 7.6799357, 47.167034 ], + [ 7.6787931, 47.1692559 ], + [ 7.6778226, 47.1715155 ], + [ 7.6770267, 47.1738067 ], + [ 7.6764077, 47.1761231 ], + [ 7.6759673, 47.1784584 ], + [ 7.6757068, 47.1808062 ], + [ 7.6756268, 47.1831602 ], + [ 7.6757275, 47.1855137 ], + [ 7.6760089, 47.1878604 ], + [ 7.6764700999999995, 47.1901939 ], + [ 7.6771098, 47.1925077 ], + [ 7.6779264, 47.1947955 ], + [ 7.6789176, 47.197051 ], + [ 7.6800806999999995, 47.1992681 ], + [ 7.6814125, 47.2014406 ], + [ 7.6829095, 47.2035626 ], + [ 7.6845675, 47.2056283 ], + [ 7.686382, 47.207632 ], + [ 7.6883481, 47.2095682 ], + [ 7.6904602, 47.2114317 ], + [ 7.6927128, 47.2132171 ], + [ 7.6950996, 47.2149198 ], + [ 7.697614, 47.2165349 ], + [ 7.7002492, 47.2180581 ], + [ 7.702998, 47.2194852 ], + [ 7.7058527, 47.2208123 ], + [ 7.7088056, 47.2220357 ], + [ 7.7118486, 47.223152 ], + [ 7.7149733, 47.2241582 ], + [ 7.7181711, 47.2250515 ], + [ 7.7214332, 47.2258296 ], + [ 7.7247508, 47.2264901 ], + [ 7.7281146, 47.2270314 ], + [ 7.7315154, 47.2274519 ], + [ 7.7349439, 47.2277505 ], + [ 7.7383907, 47.2279263 ], + [ 7.7418463, 47.2279789 ], + [ 7.7453012, 47.2279082 ], + [ 7.7487459, 47.2277142 ], + [ 7.752171, 47.2273977 ], + [ 7.755567, 47.2269593 ], + [ 7.7589246, 47.2264004 ], + [ 7.7622345, 47.2257224 ], + [ 7.7654878, 47.2249273 ], + [ 7.7686754, 47.2240172 ], + [ 7.7717884999999995, 47.2229946 ], + [ 7.7748188, 47.2218623 ], + [ 7.7777577, 47.2206234 ], + [ 7.7805973999999996, 47.2192814 ], + [ 7.7833299, 47.2178399 ], + [ 7.7859478, 47.2163029 ], + [ 7.7884438, 47.2146746 ], + [ 7.7908112, 47.2129595 ], + [ 7.7930435, 47.2111622 ], + [ 7.7951346, 47.2092878 ], + [ 7.7970787, 47.2073413 ], + [ 7.7988704, 47.2053282 ], + [ 7.800505, 47.2032538 ], + [ 7.801978, 47.201124 ], + [ 7.8032851999999995, 47.1989445 ], + [ 7.8044232000000004, 47.1967214 ], + [ 7.8053889, 47.1944608 ], + [ 7.8061795, 47.1921687 ], + [ 7.8067931, 47.1898516 ], + [ 7.8072279, 47.1875158 ], + [ 7.8074826999999996, 47.1851677 ], + [ 7.8075569, 47.1828137 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSPL001", + "country" : "CHE", + "name" : [ + { + "text" : "LSPL Langenthal", + "lang" : "de-CH" + }, + { + "text" : "LSPL Langenthal", + "lang" : "fr-CH" + }, + { + "text" : "LSPL Langenthal", + "lang" : "it-CH" + }, + { + "text" : "LSPL Langenthal", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Flugplatz Langenthal", + "lang" : "de-CH" + }, + { + "text" : "Flugplatz Langenthal", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatz Langenthal", + "lang" : "it-CH" + }, + { + "text" : "Flugplatz Langenthal", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Pauk Zeltner", + "lang" : "de-CH" + }, + { + "text" : "Pauk Zeltner", + "lang" : "fr-CH" + }, + { + "text" : "Pauk Zeltner", + "lang" : "it-CH" + }, + { + "text" : "Pauk Zeltner", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.lspl.ch/", + "email" : "info@lspl.ch", + "phone" : "0041629225072", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.5094493, 47.4496989 ], + [ 8.5089457, 47.450333 ], + [ 8.5084505, 47.4509565 ], + [ 8.5092471, 47.45093 ], + [ 8.5093363, 47.4509523 ], + [ 8.5096046, 47.4512074 ], + [ 8.5099242, 47.4513435 ], + [ 8.5104559, 47.4508545 ], + [ 8.5112061, 47.4501647 ], + [ 8.511508599999999, 47.4499751 ], + [ 8.5115411, 47.4499548 ], + [ 8.5117205, 47.4500049 ], + [ 8.5120916, 47.4501203 ], + [ 8.5126401, 47.4502483 ], + [ 8.5134859, 47.4504076 ], + [ 8.5132336, 47.4502103 ], + [ 8.5132153, 47.4501963 ], + [ 8.5131967, 47.4501823 ], + [ 8.5131779, 47.4501686 ], + [ 8.5131588, 47.4501549 ], + [ 8.5131396, 47.4501415 ], + [ 8.5131201, 47.4501281 ], + [ 8.5131004, 47.4501149 ], + [ 8.5130805, 47.4501019 ], + [ 8.5130604, 47.4500891 ], + [ 8.5130401, 47.4500764 ], + [ 8.5130195, 47.4500639 ], + [ 8.5129988, 47.4500515 ], + [ 8.5129779, 47.4500393 ], + [ 8.5129567, 47.4500272 ], + [ 8.5122147, 47.4496083 ], + [ 8.5120971, 47.4494694 ], + [ 8.5120516, 47.4495014 ], + [ 8.5120284, 47.4494974 ], + [ 8.5120049, 47.4494941 ], + [ 8.5119812, 47.4494915 ], + [ 8.5119574, 47.4494897 ], + [ 8.5119335, 47.4494885 ], + [ 8.5119095, 47.4494881 ], + [ 8.5118856, 47.4494885 ], + [ 8.5118569, 47.4494898 ], + [ 8.5118284, 47.4494922 ], + [ 8.5118002, 47.4494957 ], + [ 8.5117723, 47.4495001 ], + [ 8.5117447, 47.4495056 ], + [ 8.5117176, 47.449512 ], + [ 8.5116911, 47.4495195 ], + [ 8.511669, 47.4495262 ], + [ 8.5116475, 47.4495336 ], + [ 8.5116265, 47.4495417 ], + [ 8.5116061, 47.4495505 ], + [ 8.5115864, 47.44956 ], + [ 8.5115674, 47.4495702 ], + [ 8.5115491, 47.4495809 ], + [ 8.5106608, 47.4493169 ], + [ 8.510470399999999, 47.4492402 ], + [ 8.5102857, 47.4492406 ], + [ 8.5101715, 47.4490436 ], + [ 8.5097847, 47.4491466 ], + [ 8.5094399, 47.4490153 ], + [ 8.5089971, 47.4495485 ], + [ 8.5094493, 47.4496989 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VBS_26", + "country" : "CHE", + "name" : [ + { + "text" : "VBS_26 Rümlang", + "lang" : "de-CH" + }, + { + "text" : "VBS_26 Rümlang", + "lang" : "fr-CH" + }, + { + "text" : "VBS_26 Rümlang", + "lang" : "it-CH" + }, + { + "text" : "VBS_26 Rümlang", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "regulationExemption" : "YES", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Eidgenössisches Departement für Verteidigung, Bevölkerungsschutz und Sport (VBS)", + "lang" : "de-CH" + }, + { + "text" : "Département fédéral de la défense, de la protection de la population et des sports (DDPS)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento federale della difesa, della protezione della popolazione e dello sport (DDPS)", + "lang" : "it-CH" + }, + { + "text" : "Federal Department of Defence, Civil Protection and Sport (DDPS)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Lageverfolgungszentrum der Armee LVZ A", + "lang" : "de-CH" + }, + { + "text" : "Centre de suivi de la situation de l’armée, CSS A", + "lang" : "fr-CH" + }, + { + "text" : "Centro di monitoraggio della situazione dell’esercito, Centro mon sit Es", + "lang" : "it-CH" + }, + { + "text" : "Joint Operation Center, JOC", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vtg.admin.ch/en/joint-operations-command", + "email" : "lvz.op@vtg.admin.ch", + "phone" : "+41 58 464 96 43", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.5407858, 46.7345768 ], + [ 6.5407912, 46.7347533 ], + [ 6.5408135, 46.7349293 ], + [ 6.5408524, 46.7351038 ], + [ 6.5409079, 46.7352763 ], + [ 6.5409796, 46.7354458 ], + [ 6.5410673, 46.7356118 ], + [ 6.5411706, 46.7357735 ], + [ 6.5412891, 46.7359302 ], + [ 6.5414221999999995, 46.7360812 ], + [ 6.5415695, 46.7362259 ], + [ 6.5417301, 46.7363637 ], + [ 6.5419035, 46.7364939 ], + [ 6.542089, 46.7366161 ], + [ 6.5422857, 46.7367297 ], + [ 6.5424927, 46.7368342 ], + [ 6.5427093, 46.7369292 ], + [ 6.5429344, 46.7370142 ], + [ 6.5431671, 46.7370889 ], + [ 6.5434065, 46.737153 ], + [ 6.5436514, 46.7372062 ], + [ 6.5439009, 46.7372483 ], + [ 6.5441538, 46.737279 ], + [ 6.5444091, 46.7372983 ], + [ 6.5444873999999995, 46.7373007 ], + [ 6.5448066, 46.7378377 ], + [ 6.5448333, 46.7378816 ], + [ 6.5449287, 46.7380343 ], + [ 6.5449955, 46.7381355 ], + [ 6.545114, 46.7382922 ], + [ 6.5451307, 46.7383124 ], + [ 6.5452136, 46.7384117 ], + [ 6.54533, 46.7385426 ], + [ 6.5454773, 46.7386873 ], + [ 6.545597, 46.7387917 ], + [ 6.5457071, 46.7388829 ], + [ 6.545748, 46.7389163 ], + [ 6.5459215, 46.7390466 ], + [ 6.5461069, 46.7391687 ], + [ 6.5461404, 46.7391892 ], + [ 6.5462772000000005, 46.7392716 ], + [ 6.5464405, 46.7393648 ], + [ 6.54656, 46.7394269 ], + [ 6.5457497, 46.7403038 ], + [ 6.5456862000000005, 46.7403749 ], + [ 6.5455625, 46.7405297 ], + [ 6.5454538, 46.7406897 ], + [ 6.5453606, 46.7408543 ], + [ 6.5452832, 46.7410227 ], + [ 6.5452221, 46.7411942 ], + [ 6.5451773, 46.7413681 ], + [ 6.5451768999999995, 46.74137 ], + [ 6.5451619999999995, 46.741442 ], + [ 6.5451343, 46.7416156 ], + [ 6.545123, 46.7417921 ], + [ 6.5451284, 46.7419686 ], + [ 6.5451507, 46.7421445 ], + [ 6.5451897, 46.7423191 ], + [ 6.5452451, 46.7424915 ], + [ 6.5453168999999995, 46.7426611 ], + [ 6.5454046, 46.7428271 ], + [ 6.545508, 46.7429887 ], + [ 6.5455485, 46.7430452 ], + [ 6.5455961, 46.7431096 ], + [ 6.5456741, 46.7432098 ], + [ 6.5458073, 46.7433609 ], + [ 6.5459545, 46.7435056 ], + [ 6.5461152, 46.7436433 ], + [ 6.5462886000000005, 46.7437736 ], + [ 6.5464741, 46.7438958 ], + [ 6.5466708, 46.7440093 ], + [ 6.5468779, 46.7441138 ], + [ 6.5468855, 46.7441174 ], + [ 6.5479575, 46.7446195 ], + [ 6.5479598, 46.7446205 ], + [ 6.5491453, 46.7451749 ], + [ 6.5503494, 46.7457383 ], + [ 6.5503528, 46.7457399 ], + [ 6.5515965, 46.7463204 ], + [ 6.5527964, 46.7468805 ], + [ 6.5527983, 46.7468814 ], + [ 6.5539933999999995, 46.7474386 ], + [ 6.555071, 46.7479428 ], + [ 6.5551157, 46.7479638 ], + [ 6.5551238, 46.7479676 ], + [ 6.5552964, 46.7480481 ], + [ 6.5553013, 46.7480504 ], + [ 6.5563857, 46.7485544 ], + [ 6.557466, 46.749058 ], + [ 6.5585418, 46.7495617 ], + [ 6.5585479, 46.7495645 ], + [ 6.5596328, 46.7500704 ], + [ 6.5596345, 46.7500712 ], + [ 6.5607145, 46.7505742 ], + [ 6.5617409, 46.751054 ], + [ 6.5628551999999996, 46.7515756 ], + [ 6.5628579, 46.7515769 ], + [ 6.5639829, 46.7521025 ], + [ 6.5641893, 46.7521926 ], + [ 6.5644145, 46.7522776 ], + [ 6.5646473, 46.7523523 ], + [ 6.5648868, 46.7524163 ], + [ 6.5651318, 46.7524695 ], + [ 6.5653813, 46.7525115 ], + [ 6.5656344, 46.7525422 ], + [ 6.5658898, 46.7525615 ], + [ 6.5661464, 46.752569199999996 ], + [ 6.5664033, 46.7525654 ], + [ 6.5666592999999995, 46.75255 ], + [ 6.5669132, 46.7525232 ], + [ 6.5671641, 46.752485 ], + [ 6.5674108, 46.7524357 ], + [ 6.5676521999999995, 46.7523753 ], + [ 6.5678874, 46.7523042 ], + [ 6.5679631, 46.7522786 ], + [ 6.5687364, 46.7520095 ], + [ 6.5687367, 46.7520095 ], + [ 6.5710708, 46.7511973 ], + [ 6.5710719, 46.7511969 ], + [ 6.5740694, 46.750153 ], + [ 6.5741205, 46.7501357 ], + [ 6.5742953, 46.7500763 ], + [ 6.5743452, 46.7500598 ], + [ 6.5744171, 46.7500354 ], + [ 6.5766846999999995, 46.7492453 ], + [ 6.5790164, 46.7484354 ], + [ 6.5790267, 46.7484318 ], + [ 6.5809536, 46.7477576 ], + [ 6.5810982, 46.7477043 ], + [ 6.5813178, 46.7476127 ], + [ 6.5815282, 46.7475114 ], + [ 6.5817286, 46.7474009 ], + [ 6.581918, 46.7472816 ], + [ 6.5820957, 46.747154 ], + [ 6.5822608, 46.7470188 ], + [ 6.5824128, 46.7468764 ], + [ 6.5825508, 46.7467274 ], + [ 6.5826744, 46.7465726 ], + [ 6.5827829, 46.7464126 ], + [ 6.5828761, 46.746248 ], + [ 6.5829533, 46.7460796 ], + [ 6.5830144, 46.745908 ], + [ 6.583059, 46.7457341 ], + [ 6.583087, 46.7455586 ], + [ 6.5830982, 46.7453821 ], + [ 6.5830926, 46.7452056 ], + [ 6.5830702, 46.7450297 ], + [ 6.5830311, 46.7448551 ], + [ 6.5829755, 46.7446827 ], + [ 6.5829036, 46.7445132 ], + [ 6.5828158, 46.7443472 ], + [ 6.5827123, 46.7441856 ], + [ 6.5825937, 46.744029 ], + [ 6.5824604, 46.743878 ], + [ 6.5823131, 46.7437333 ], + [ 6.5821523, 46.7435956 ], + [ 6.5819788, 46.7434654 ], + [ 6.5817932, 46.7433433 ], + [ 6.5815964000000005, 46.7432298 ], + [ 6.5814102, 46.7431353 ], + [ 6.5806117, 46.7427545 ], + [ 6.5805937, 46.7427459 ], + [ 6.5795152, 46.7422377 ], + [ 6.5784373, 46.7417294 ], + [ 6.5784348, 46.7417282 ], + [ 6.5773553, 46.7412199 ], + [ 6.5773538, 46.7412192 ], + [ 6.5773463, 46.7412157 ], + [ 6.5762721, 46.7407129 ], + [ 6.5751747, 46.7401971 ], + [ 6.5751734, 46.7401965 ], + [ 6.574434, 46.7398492 ], + [ 6.5732808, 46.7392951 ], + [ 6.573253, 46.7392819 ], + [ 6.5721128, 46.738744 ], + [ 6.5721087, 46.7387421 ], + [ 6.5721003, 46.7387381 ], + [ 6.5709583, 46.7382039 ], + [ 6.5698125, 46.737662 ], + [ 6.5698045, 46.7376582 ], + [ 6.569803, 46.7376575 ], + [ 6.5686718, 46.7371258 ], + [ 6.5675353, 46.7365889 ], + [ 6.5668177, 46.7362486 ], + [ 6.5653595, 46.7355513 ], + [ 6.5653351, 46.7355397 ], + [ 6.5653321, 46.7355383 ], + [ 6.5645166, 46.7351553 ], + [ 6.5635929, 46.7347192 ], + [ 6.5626829, 46.7342679 ], + [ 6.5626038, 46.7342297 ], + [ 6.562558, 46.7342084 ], + [ 6.5618525, 46.7338863 ], + [ 6.5618445, 46.7338827 ], + [ 6.5613428, 46.7336549 ], + [ 6.5612619, 46.7336191 ], + [ 6.5606943, 46.7333748 ], + [ 6.5606258, 46.733346 ], + [ 6.560111, 46.7331344 ], + [ 6.5600975, 46.7331289 ], + [ 6.5600279, 46.7331012 ], + [ 6.559414, 46.7328627 ], + [ 6.5587238, 46.7325635 ], + [ 6.5587181, 46.732561 ], + [ 6.5580843, 46.7322873 ], + [ 6.5575545, 46.7320363 ], + [ 6.5568921, 46.7316923 ], + [ 6.5568916999999995, 46.7316921 ], + [ 6.5568526, 46.7316713 ], + [ 6.5567017, 46.7315921 ], + [ 6.5557867, 46.7311026 ], + [ 6.5557682, 46.7310927 ], + [ 6.5548338, 46.7305991 ], + [ 6.5548175, 46.7305905 ], + [ 6.5538795, 46.7301002 ], + [ 6.5538401, 46.7300799 ], + [ 6.5537212, 46.7300193 ], + [ 6.5536666, 46.7299904 ], + [ 6.5535841999999995, 46.7299476 ], + [ 6.5534983, 46.7299028 ], + [ 6.553496, 46.7299016 ], + [ 6.5529404, 46.7296119 ], + [ 6.5524021999999995, 46.729331 ], + [ 6.5523964, 46.729328 ], + [ 6.5523483, 46.729303 ], + [ 6.5521984, 46.7292287 ], + [ 6.5519818, 46.7291338 ], + [ 6.5517567, 46.7290488 ], + [ 6.551524, 46.7289741 ], + [ 6.5512847, 46.72891 ], + [ 6.5510398, 46.7288568 ], + [ 6.5507904, 46.7288148 ], + [ 6.5505375, 46.7287841 ], + [ 6.5502822, 46.7287648 ], + [ 6.5500256, 46.728757 ], + [ 6.5497688, 46.7287607 ], + [ 6.549513, 46.7287761 ], + [ 6.5492592, 46.7288028 ], + [ 6.5490084, 46.728841 ], + [ 6.5487618, 46.7288903 ], + [ 6.5485468000000004, 46.7289435 ], + [ 6.5485163, 46.7289517 ], + [ 6.5485046, 46.7289549 ], + [ 6.5484742, 46.7289631 ], + [ 6.5484623, 46.7289664 ], + [ 6.5484319, 46.7289748 ], + [ 6.5484291, 46.7289755 ], + [ 6.5484203, 46.728978 ], + [ 6.5483899, 46.7289864 ], + [ 6.5483775, 46.7289899 ], + [ 6.5483472, 46.7289984 ], + [ 6.5483367, 46.7290013 ], + [ 6.5483065, 46.7290099 ], + [ 6.5482948, 46.7290132 ], + [ 6.5482645999999995, 46.7290218 ], + [ 6.5482536, 46.729025 ], + [ 6.5482234, 46.7290337 ], + [ 6.548211, 46.7290372 ], + [ 6.5481809, 46.729046 ], + [ 6.5481693, 46.7290494 ], + [ 6.5481392, 46.7290582 ], + [ 6.5481288, 46.7290612 ], + [ 6.5480987, 46.7290701 ], + [ 6.5480859, 46.7290739 ], + [ 6.5480558, 46.7290829 ], + [ 6.5480462, 46.7290858 ], + [ 6.5480162, 46.7290948 ], + [ 6.548004, 46.7290985 ], + [ 6.547974, 46.7291076 ], + [ 6.5479612, 46.7291115 ], + [ 6.5479313, 46.7291207 ], + [ 6.5479217, 46.7291236 ], + [ 6.5478918, 46.7291328 ], + [ 6.5478797, 46.7291366 ], + [ 6.5478498, 46.7291459 ], + [ 6.5478383000000004, 46.7291495 ], + [ 6.5478086, 46.7291588 ], + [ 6.5477977, 46.7291622 ], + [ 6.547768, 46.7291716 ], + [ 6.5477571, 46.7291751 ], + [ 6.5477275, 46.729184599999996 ], + [ 6.547716, 46.7291882 ], + [ 6.5476864, 46.7291978 ], + [ 6.5476743, 46.7292017 ], + [ 6.5476447, 46.7292113 ], + [ 6.5476333, 46.729214999999996 ], + [ 6.5476037, 46.7292247 ], + [ 6.5475947, 46.7292276 ], + [ 6.5475936, 46.729228 ], + [ 6.5475641, 46.7292377 ], + [ 6.5475521, 46.7292417 ], + [ 6.5475226, 46.7292515 ], + [ 6.5475119, 46.7292551 ], + [ 6.5474825, 46.7292649 ], + [ 6.5474699, 46.7292692 ], + [ 6.5474405, 46.7292791 ], + [ 6.5474304, 46.7292825 ], + [ 6.5474011, 46.7292925 ], + [ 6.5473904, 46.7292962 ], + [ 6.5473611, 46.7293062 ], + [ 6.5473486, 46.7293105 ], + [ 6.5473194, 46.7293207 ], + [ 6.54731, 46.7293239 ], + [ 6.5472808, 46.7293341 ], + [ 6.5472676, 46.7293387 ], + [ 6.5472385, 46.729349 ], + [ 6.5472291, 46.7293523 ], + [ 6.5472, 46.7293626 ], + [ 6.5471882, 46.7293668 ], + [ 6.5471592, 46.7293772 ], + [ 6.5471485, 46.729381 ], + [ 6.5471195, 46.7293914 ], + [ 6.5471078, 46.7293956 ], + [ 6.5470787999999995, 46.7294062 ], + [ 6.5470689, 46.7294098 ], + [ 6.54704, 46.7294203 ], + [ 6.5470276, 46.7294249 ], + [ 6.5469988, 46.7294355 ], + [ 6.5469895000000005, 46.7294389 ], + [ 6.5469607, 46.7294496 ], + [ 6.5469477, 46.7294545 ], + [ 6.5469189, 46.7294652 ], + [ 6.546909, 46.7294689 ], + [ 6.5468803, 46.7294798 ], + [ 6.5468687, 46.7294841 ], + [ 6.5468401, 46.729495 ], + [ 6.5468302, 46.7294988 ], + [ 6.5468016, 46.7295097 ], + [ 6.5467905, 46.729514 ], + [ 6.546762, 46.729525 ], + [ 6.5467569, 46.7295269 ], + [ 6.5467503, 46.7295295 ], + [ 6.5467218, 46.7295406 ], + [ 6.5467115, 46.7295446 ], + [ 6.546683, 46.7295557 ], + [ 6.5466732, 46.7295596 ], + [ 6.5466448, 46.7295707 ], + [ 6.5466327, 46.7295755 ], + [ 6.5466043, 46.7295868 ], + [ 6.5465938, 46.729591 ], + [ 6.5465656, 46.7296023 ], + [ 6.5465553, 46.7296064 ], + [ 6.5465271, 46.7296178 ], + [ 6.5465155, 46.7296224 ], + [ 6.5464873, 46.7296339 ], + [ 6.5464771, 46.729638 ], + [ 6.546449, 46.7296495 ], + [ 6.5464374, 46.7296543 ], + [ 6.5464093, 46.7296658 ], + [ 6.5463996, 46.729669799999996 ], + [ 6.5463716, 46.7296815 ], + [ 6.5463608, 46.7296859 ], + [ 6.5463328, 46.7296976 ], + [ 6.5463213, 46.7297025 ], + [ 6.5462934, 46.7297142 ], + [ 6.5462834, 46.7297184 ], + [ 6.5462555, 46.7297303 ], + [ 6.5462451, 46.7297346 ], + [ 6.5462173, 46.7297465 ], + [ 6.5462059, 46.7297514 ], + [ 6.5461781, 46.7297633 ], + [ 6.5461682, 46.7297676 ], + [ 6.5461404, 46.7297796 ], + [ 6.5461302, 46.7297841 ], + [ 6.5461025, 46.7297961 ], + [ 6.5460919, 46.7298008 ], + [ 6.5460643, 46.7298129 ], + [ 6.5460536000000005, 46.7298176 ], + [ 6.5460261, 46.7298298 ], + [ 6.5460159, 46.7298343 ], + [ 6.5459884, 46.7298465 ], + [ 6.5459773, 46.7298515 ], + [ 6.5459771, 46.7298516 ], + [ 6.5459496, 46.7298639 ], + [ 6.5459398, 46.7298683 ], + [ 6.5459124, 46.7298806 ], + [ 6.5459015, 46.7298856 ], + [ 6.5458742, 46.729898 ], + [ 6.5458655, 46.7299019 ], + [ 6.5458383, 46.7299144 ], + [ 6.545826, 46.72992 ], + [ 6.5457988, 46.7299326 ], + [ 6.5457897, 46.7299368 ], + [ 6.5457626, 46.7299493 ], + [ 6.5457511, 46.7299547 ], + [ 6.545724, 46.7299673 ], + [ 6.5457139, 46.7299721 ], + [ 6.5456869, 46.7299848 ], + [ 6.5456776, 46.7299892 ], + [ 6.5456506, 46.7300019 ], + [ 6.5456395, 46.7300072 ], + [ 6.5456126, 46.73002 ], + [ 6.5456033, 46.7300245 ], + [ 6.5455765, 46.7300374 ], + [ 6.5455647, 46.730043 ], + [ 6.5455379, 46.730056 ], + [ 6.5455293999999995, 46.7300601 ], + [ 6.5455027, 46.7300731 ], + [ 6.5454909, 46.7300788 ], + [ 6.5454643, 46.7300919 ], + [ 6.5454551, 46.7300964 ], + [ 6.5454285, 46.7301095 ], + [ 6.5454186, 46.7301144 ], + [ 6.545392, 46.7301276 ], + [ 6.5453811, 46.730133 ], + [ 6.5453546, 46.7301463 ], + [ 6.5453455, 46.7301509 ], + [ 6.5453191, 46.7301641 ], + [ 6.5453082, 46.730169599999996 ], + [ 6.5452818, 46.730183 ], + [ 6.545272, 46.730188 ], + [ 6.5452457, 46.7302014 ], + [ 6.5452358, 46.7302064 ], + [ 6.5452096, 46.7302199 ], + [ 6.5452033, 46.7302231 ], + [ 6.5451988, 46.7302254 ], + [ 6.5451727, 46.7302389 ], + [ 6.5451637, 46.7302436 ], + [ 6.5451376, 46.7302572 ], + [ 6.5451271, 46.7302626 ], + [ 6.5451011, 46.7302763 ], + [ 6.5450911, 46.7302815 ], + [ 6.5450652, 46.7302952 ], + [ 6.5450554, 46.7303003 ], + [ 6.5450296, 46.730314 ], + [ 6.5450208, 46.7303187 ], + [ 6.544995, 46.7303324 ], + [ 6.5449834, 46.7303387 ], + [ 6.5449577, 46.7303525 ], + [ 6.544949, 46.7303572 ], + [ 6.5449233, 46.7303711 ], + [ 6.5449137, 46.7303763 ], + [ 6.5448881, 46.7303902 ], + [ 6.5448775, 46.730396 ], + [ 6.544852, 46.73041 ], + [ 6.5448433, 46.7304148 ], + [ 6.5448178, 46.7304288 ], + [ 6.5448073, 46.7304346 ], + [ 6.5447819, 46.7304487 ], + [ 6.5447724, 46.7304541 ], + [ 6.544747, 46.7304682 ], + [ 6.5447375, 46.7304736 ], + [ 6.5447122, 46.7304878 ], + [ 6.5447027, 46.7304931 ], + [ 6.5446775, 46.7305074 ], + [ 6.5446672, 46.7305132 ], + [ 6.5446421, 46.7305276 ], + [ 6.5446334, 46.7305325 ], + [ 6.5446083, 46.7305469 ], + [ 6.5445972, 46.7305533 ], + [ 6.5445722, 46.7305677 ], + [ 6.5445637, 46.7305726 ], + [ 6.5445388, 46.7305871 ], + [ 6.5445294, 46.7305926 ], + [ 6.5445045, 46.7306071 ], + [ 6.5444952, 46.7306126 ], + [ 6.5444704, 46.7306272 ], + [ 6.5444678, 46.7306287 ], + [ 6.544461, 46.7306327 ], + [ 6.5444363, 46.7306474 ], + [ 6.5444262, 46.7306534 ], + [ 6.5444015, 46.7306681 ], + [ 6.5443923, 46.7306736 ], + [ 6.5443677000000005, 46.7306884 ], + [ 6.5443584, 46.7306939 ], + [ 6.5443339, 46.7307088 ], + [ 6.5443247, 46.7307143 ], + [ 6.5443003, 46.7307291 ], + [ 6.544291, 46.7307348 ], + [ 6.5442666, 46.7307497 ], + [ 6.5442567, 46.7307558 ], + [ 6.5442324, 46.7307707 ], + [ 6.5442241, 46.7307759 ], + [ 6.5441998, 46.7307909 ], + [ 6.544189, 46.7307976 ], + [ 6.5441648, 46.7308127 ], + [ 6.5441575, 46.7308173 ], + [ 6.5441333, 46.7308324 ], + [ 6.5441226, 46.7308391 ], + [ 6.5440986, 46.7308543 ], + [ 6.5440904, 46.7308595 ], + [ 6.5440664, 46.7308747 ], + [ 6.5440566, 46.730881 ], + [ 6.5440327, 46.7308963 ], + [ 6.5440237, 46.730902 ], + [ 6.5439999, 46.7309174 ], + [ 6.543991, 46.7309231 ], + [ 6.5439672, 46.7309385 ], + [ 6.5439583, 46.7309443 ], + [ 6.5439346, 46.7309597 ], + [ 6.5439249, 46.7309661 ], + [ 6.5439013, 46.7309816 ], + [ 6.5438924, 46.7309874 ], + [ 6.5438689, 46.7310029 ], + [ 6.5438601, 46.7310088 ], + [ 6.5438366, 46.7310244 ], + [ 6.5438278, 46.7310302 ], + [ 6.5438043, 46.7310459 ], + [ 6.5437964, 46.7310512 ], + [ 6.5437956, 46.7310517 ], + [ 6.5437722, 46.7310674 ], + [ 6.5437635, 46.7310733 ], + [ 6.5437402, 46.7310891 ], + [ 6.5437308, 46.7310955 ], + [ 6.5437075, 46.7311113 ], + [ 6.5436989, 46.7311173 ], + [ 6.5436757, 46.7311331 ], + [ 6.5436671, 46.7311391 ], + [ 6.5436440000000005, 46.731155 ], + [ 6.5436354, 46.7311609 ], + [ 6.5436124, 46.7311769 ], + [ 6.543603, 46.7311834 ], + [ 6.5435801, 46.7311994 ], + [ 6.5435715, 46.7312055 ], + [ 6.5435487, 46.7312215 ], + [ 6.5435402, 46.7312275 ], + [ 6.5435174, 46.7312436 ], + [ 6.5435089, 46.7312497 ], + [ 6.5434862, 46.7312658 ], + [ 6.5434785, 46.7312713 ], + [ 6.5434559, 46.7312875 ], + [ 6.5434459, 46.7312947 ], + [ 6.5434233, 46.731311 ], + [ 6.5434149999999995, 46.7313171 ], + [ 6.5433924999999995, 46.7313334 ], + [ 6.5433848, 46.731339 ], + [ 6.5433624, 46.7313553 ], + [ 6.5433533, 46.731362 ], + [ 6.543331, 46.7313784 ], + [ 6.5433219000000005, 46.7313851 ], + [ 6.5432996, 46.7314016 ], + [ 6.5432913, 46.7314078 ], + [ 6.5432691, 46.7314243 ], + [ 6.5432616, 46.7314299 ], + [ 6.5432395, 46.7314464 ], + [ 6.5432304, 46.7314532 ], + [ 6.5432084, 46.7314698 ], + [ 6.543201, 46.7314755 ], + [ 6.543179, 46.7314921 ], + [ 6.5431693, 46.7314995 ], + [ 6.5431475, 46.7315162 ], + [ 6.5431438, 46.731519 ], + [ 6.5431401000000005, 46.7315219 ], + [ 6.5431183, 46.7315386 ], + [ 6.5431101, 46.7315449 ], + [ 6.5430884, 46.7315617 ], + [ 6.5430796, 46.7315685 ], + [ 6.5430579, 46.7315854 ], + [ 6.5430497, 46.7315918 ], + [ 6.5430282, 46.7316087 ], + [ 6.5430202, 46.7316149 ], + [ 6.5429987, 46.7316319 ], + [ 6.5429907, 46.7316382 ], + [ 6.5429693, 46.7316552 ], + [ 6.5429613, 46.7316616 ], + [ 6.5429399, 46.7316786 ], + [ 6.5429312, 46.7316857 ], + [ 6.5429099, 46.7317027 ], + [ 6.5429027, 46.7317085 ], + [ 6.5428816, 46.7317257 ], + [ 6.5428729, 46.7317327 ], + [ 6.5428518, 46.7317499 ], + [ 6.5428439, 46.7317563 ], + [ 6.5428229, 46.7317735 ], + [ 6.5428144, 46.7317805 ], + [ 6.5427934, 46.7317978 ], + [ 6.5427862, 46.7318038 ], + [ 6.5427654, 46.7318211 ], + [ 6.5427576, 46.7318276 ], + [ 6.5427368, 46.7318449 ], + [ 6.5427263, 46.7318537 ], + [ 6.5426833, 46.73189 ], + [ 6.5426737, 46.7318981 ], + [ 6.5426514000000005, 46.731917 ], + [ 6.5426429, 46.7319243 ], + [ 6.5426207, 46.7319432 ], + [ 6.5426144, 46.7319487 ], + [ 6.5425923, 46.7319677 ], + [ 6.5425839, 46.7319749 ], + [ 6.542562, 46.7319939 ], + [ 6.5425548, 46.7320002 ], + [ 6.5425329, 46.7320192 ], + [ 6.5425274, 46.732024 ], + [ 6.5425246, 46.7320265 ], + [ 6.5425028, 46.7320456 ], + [ 6.5424964, 46.7320512 ], + [ 6.5424746, 46.7320704 ], + [ 6.5424671, 46.732077 ], + [ 6.5424455, 46.7320963 ], + [ 6.5424379, 46.7321031 ], + [ 6.5424163, 46.7321223 ], + [ 6.5424092, 46.7321287 ], + [ 6.5423878, 46.732148 ], + [ 6.5423797, 46.7321553 ], + [ 6.5423583, 46.7321746 ], + [ 6.5423507, 46.7321815 ], + [ 6.5423295, 46.7322009 ], + [ 6.5423232, 46.7322066 ], + [ 6.542302, 46.7322261 ], + [ 6.5422947, 46.7322328 ], + [ 6.5422735, 46.7322522 ], + [ 6.5422659, 46.7322593 ], + [ 6.5422449, 46.7322789 ], + [ 6.5422359, 46.7322872 ], + [ 6.5422152, 46.7323066 ], + [ 6.5422077, 46.7323136 ], + [ 6.5421871, 46.732333 ], + [ 6.5421804, 46.7323394 ], + [ 6.5421599, 46.7323589 ], + [ 6.542153, 46.7323654 ], + [ 6.5421326, 46.7323849 ], + [ 6.5421252, 46.732392 ], + [ 6.5421048, 46.7324115 ], + [ 6.5420987, 46.7324175 ], + [ 6.5420784, 46.7324371 ], + [ 6.5420711, 46.7324441 ], + [ 6.5420509, 46.7324638 ], + [ 6.5420437, 46.7324709 ], + [ 6.5420236, 46.7324906 ], + [ 6.5420169999999995, 46.732497 ], + [ 6.541997, 46.7325167 ], + [ 6.5419903, 46.7325234 ], + [ 6.5419704, 46.7325431 ], + [ 6.5419637, 46.7325498 ], + [ 6.5419438, 46.7325696 ], + [ 6.5419383, 46.7325751 ], + [ 6.5419267, 46.7325868 ], + [ 6.5419069, 46.732607 ], + [ 6.5419006, 46.7326134 ], + [ 6.5418807999999995, 46.7326336 ], + [ 6.5418736, 46.732641 ], + [ 6.5418538999999996, 46.7326612 ], + [ 6.5418477, 46.7326677 ], + [ 6.5418281, 46.732688 ], + [ 6.541821, 46.7326954 ], + [ 6.5418015, 46.7327157 ], + [ 6.5417946, 46.7327229 ], + [ 6.5417752, 46.7327432 ], + [ 6.5417684, 46.7327504 ], + [ 6.5417491, 46.7327708 ], + [ 6.5417434, 46.7327769 ], + [ 6.5417242, 46.7327973 ], + [ 6.5417165, 46.7328055 ], + [ 6.5416974, 46.732826 ], + [ 6.5416913, 46.7328325 ], + [ 6.5416723, 46.732853 ], + [ 6.5416665, 46.7328593 ], + [ 6.541626, 46.7329033 ], + [ 6.5416209, 46.7329088 ], + [ 6.5415994, 46.7329322 ], + [ 6.541593, 46.7329392 ], + [ 6.5415716, 46.7329627 ], + [ 6.5415662, 46.7329687 ], + [ 6.5415449, 46.7329922 ], + [ 6.5415389, 46.7329989 ], + [ 6.5415178, 46.7330224 ], + [ 6.541512, 46.7330288 ], + [ 6.5414909, 46.7330524 ], + [ 6.5414852, 46.7330588 ], + [ 6.5414642, 46.7330825 ], + [ 6.5414583, 46.7330892 ], + [ 6.5414373999999995, 46.7331128 ], + [ 6.5414321, 46.7331189 ], + [ 6.5414113, 46.7331426 ], + [ 6.5414057, 46.733149 ], + [ 6.5413849, 46.7331728 ], + [ 6.5413791, 46.7331795 ], + [ 6.5413585, 46.7332033 ], + [ 6.5413546, 46.7332079 ], + [ 6.5413527, 46.7332101 ], + [ 6.5413322, 46.7332339 ], + [ 6.5412104, 46.7333865 ], + [ 6.5411017000000005, 46.7335465 ], + [ 6.5410085, 46.733711 ], + [ 6.5409312, 46.7338794 ], + [ 6.54087, 46.7340509 ], + [ 6.5408252000000005, 46.7342248 ], + [ 6.5407971, 46.7344004 ], + [ 6.5407858, 46.7345768 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00034", + "country" : "CHE", + "name" : [ + { + "text" : "Établissements de la plaine de l'Orbe (EPO)", + "lang" : "de-CH" + }, + { + "text" : "Établissements de la plaine de l'Orbe (EPO)", + "lang" : "fr-CH" + }, + { + "text" : "Établissements de la plaine de l'Orbe (EPO)", + "lang" : "it-CH" + }, + { + "text" : "Établissements de la plaine de l'Orbe (EPO)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kantonspolizei Waadt", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale vaudoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Vaud", + "lang" : "it-CH" + }, + { + "text" : "Vaud Cantonal Police", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.pcv@vd.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.9185555999999995, 46.7149155 ], + [ 6.9186872, 46.7142976 ], + [ 6.9187334, 46.7142874 ], + [ 6.9187466, 46.7142517 ], + [ 6.9187192, 46.7142258 ], + [ 6.9187619, 46.7139292 ], + [ 6.9188228, 46.7137686 ], + [ 6.9189229, 46.7136193 ], + [ 6.9197851, 46.7127216 ], + [ 6.9198261, 46.7126435 ], + [ 6.9198436, 46.7125788 ], + [ 6.9199005, 46.7125626 ], + [ 6.9199023, 46.7125385 ], + [ 6.9199048, 46.7125148 ], + [ 6.9197463, 46.7124966 ], + [ 6.9196069, 46.7124014 ], + [ 6.9195599, 46.7123298 ], + [ 6.9195817, 46.7122505 ], + [ 6.9193888999999995, 46.7121841 ], + [ 6.9194389, 46.7121155 ], + [ 6.9195113, 46.711985 ], + [ 6.9195865, 46.7118495 ], + [ 6.9196615, 46.7116772 ], + [ 6.9197027, 46.7115004 ], + [ 6.9197207, 46.7112767 ], + [ 6.9197105, 46.7109751 ], + [ 6.9196976, 46.710747 ], + [ 6.9189295, 46.7102169 ], + [ 6.9181143, 46.7096549 ], + [ 6.9172989, 46.7090922 ], + [ 6.9164449, 46.7085718 ], + [ 6.9158781, 46.7082273 ], + [ 6.9152183, 46.7077149 ], + [ 6.9150084, 46.7075503 ], + [ 6.9149915, 46.707365 ], + [ 6.9146802, 46.7071255 ], + [ 6.9147178, 46.7071042 ], + [ 6.9149736, 46.7069761 ], + [ 6.9152129, 46.7068873 ], + [ 6.9154758, 46.7068099 ], + [ 6.9159852, 46.7066991 ], + [ 6.9162443, 46.7066354 ], + [ 6.9163916, 46.706594 ], + [ 6.9164217, 46.706582 ], + [ 6.9165411, 46.7065358 ], + [ 6.9168399, 46.7063815 ], + [ 6.9169865999999995, 46.7062906 ], + [ 6.9170894, 46.7062269 ], + [ 6.9173232, 46.7060547 ], + [ 6.9175396, 46.705864 ], + [ 6.9176202, 46.7057697 ], + [ 6.9180078, 46.7054841 ], + [ 6.9182812, 46.7053132 ], + [ 6.9184738, 46.7052102 ], + [ 6.9186359, 46.7051339 ], + [ 6.9188047, 46.705064899999996 ], + [ 6.9189772, 46.7050017 ], + [ 6.9191308, 46.7049505 ], + [ 6.9193919, 46.704875 ], + [ 6.9196245, 46.7048119 ], + [ 6.9197502, 46.7047806 ], + [ 6.9199467, 46.7047449 ], + [ 6.9201476, 46.7047301 ], + [ 6.920342, 46.7047373 ], + [ 6.9203624, 46.7047597 ], + [ 6.9203685, 46.7046642 ], + [ 6.9201463, 46.7046581 ], + [ 6.9199273, 46.7046708 ], + [ 6.9197147, 46.7047125 ], + [ 6.9195864, 46.7047463 ], + [ 6.9193574, 46.7048098 ], + [ 6.9191198, 46.7048797 ], + [ 6.9189374, 46.7049369 ], + [ 6.9187551, 46.7050008 ], + [ 6.9185754, 46.7050742 ], + [ 6.9184152999999995, 46.7051482 ], + [ 6.918223, 46.7052513 ], + [ 6.9179358, 46.7054329 ], + [ 6.9175348, 46.7057154 ], + [ 6.9174204, 46.7057919 ], + [ 6.9171765, 46.7059604 ], + [ 6.9169502, 46.7061494 ], + [ 6.9168271, 46.7062515 ], + [ 6.916693, 46.7063631 ], + [ 6.9164762, 46.7064745 ], + [ 6.9163407, 46.7065285 ], + [ 6.9162056, 46.7065685 ], + [ 6.9159499, 46.7066321 ], + [ 6.9154415, 46.7067448 ], + [ 6.9151685, 46.7068205 ], + [ 6.914915, 46.7069147 ], + [ 6.9146488, 46.707052 ], + [ 6.9141642999999995, 46.7073425 ], + [ 6.9138224, 46.7075492 ], + [ 6.913746, 46.7075661 ], + [ 6.913672, 46.7075396 ], + [ 6.9136038, 46.7075791 ], + [ 6.9136881, 46.707648 ], + [ 6.9136725, 46.7076585 ], + [ 6.9137205, 46.707701 ], + [ 6.9134442, 46.707866 ], + [ 6.9132458, 46.7079844 ], + [ 6.9131832, 46.7080473 ], + [ 6.9138344, 46.7085562 ], + [ 6.9138893, 46.7085955 ], + [ 6.9145126, 46.7090424 ], + [ 6.9149692, 46.7095057 ], + [ 6.9155802, 46.710129 ], + [ 6.9162866, 46.7107563 ], + [ 6.9169077, 46.7113085 ], + [ 6.9165911, 46.7115239 ], + [ 6.916081, 46.7118637 ], + [ 6.9159625, 46.7119128 ], + [ 6.9154683, 46.7121752 ], + [ 6.9162412, 46.7128413 ], + [ 6.9167743, 46.7132049 ], + [ 6.9171743, 46.7130241 ], + [ 6.9177209, 46.712768 ], + [ 6.9174033, 46.7124484 ], + [ 6.9181588, 46.7120926 ], + [ 6.9185047, 46.7124437 ], + [ 6.9185867, 46.7125467 ], + [ 6.9188441, 46.7128697 ], + [ 6.9189519, 46.7130048 ], + [ 6.9187444, 46.7132215 ], + [ 6.9184577, 46.7134756 ], + [ 6.918094, 46.7137914 ], + [ 6.9179619, 46.7139522 ], + [ 6.9178808, 46.7141112 ], + [ 6.9178308, 46.7142885 ], + [ 6.9178249, 46.7144707 ], + [ 6.9178664, 46.7146496 ], + [ 6.9179454, 46.7148229 ], + [ 6.9181192, 46.7151806 ], + [ 6.9181902, 46.715322 ], + [ 6.918296, 46.7155488 ], + [ 6.9183111, 46.7155456 ], + [ 6.9184956, 46.715933 ], + [ 6.9186796, 46.7163201 ], + [ 6.9187791, 46.7165345 ], + [ 6.9188183, 46.7166765 ], + [ 6.9188252, 46.716836 ], + [ 6.918795, 46.7169704 ], + [ 6.9187558, 46.7170968 ], + [ 6.918686, 46.7172364 ], + [ 6.9185568, 46.7174311 ], + [ 6.9186285, 46.7174532 ], + [ 6.9187742, 46.7174653 ], + [ 6.9188276, 46.717317 ], + [ 6.9189823, 46.7169702 ], + [ 6.919026, 46.7168301 ], + [ 6.9190252, 46.7166327 ], + [ 6.9189666, 46.7164239 ], + [ 6.9188658, 46.7161863 ], + [ 6.9188642, 46.716113 ], + [ 6.9190263, 46.7158209 ], + [ 6.9186673, 46.7157776 ], + [ 6.9185525, 46.7154776 ], + [ 6.9185123, 46.715151 ], + [ 6.9185555999999995, 46.7149155 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VBS_19", + "country" : "CHE", + "name" : [ + { + "text" : "VBS_19 Romont", + "lang" : "de-CH" + }, + { + "text" : "VBS_19 Romont", + "lang" : "fr-CH" + }, + { + "text" : "VBS_19 Romont", + "lang" : "it-CH" + }, + { + "text" : "VBS_19 Romont", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "regulationExemption" : "YES", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Eidgenössisches Departement für Verteidigung, Bevölkerungsschutz und Sport (VBS)", + "lang" : "de-CH" + }, + { + "text" : "Département fédéral de la défense, de la protection de la population et des sports (DDPS)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento federale della difesa, della protezione della popolazione e dello sport (DDPS)", + "lang" : "it-CH" + }, + { + "text" : "Federal Department of Defence, Civil Protection and Sport (DDPS)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Lageverfolgungszentrum der Armee LVZ A", + "lang" : "de-CH" + }, + { + "text" : "Centre de suivi de la situation de l’armée, CSS A", + "lang" : "fr-CH" + }, + { + "text" : "Centro di monitoraggio della situazione dell’esercito, Centro mon sit Es", + "lang" : "it-CH" + }, + { + "text" : "Joint Operation Center, JOC", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vtg.admin.ch/en/joint-operations-command", + "email" : "lvz.op@vtg.admin.ch", + "phone" : "+41 58 464 96 43", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.1222136, 46.1673025 ], + [ 8.1222065, 46.1671613 ], + [ 8.1221888, 46.1670205 ], + [ 8.1221605, 46.1668806 ], + [ 8.1221217, 46.1667419 ], + [ 8.1220725, 46.1666048 ], + [ 8.122013, 46.1664697 ], + [ 8.1219435, 46.1663369 ], + [ 8.121864, 46.1662069 ], + [ 8.1217749, 46.1660799 ], + [ 8.1216763, 46.1659563 ], + [ 8.1215686, 46.1658365 ], + [ 8.1214519, 46.1657208 ], + [ 8.1213268, 46.1656094 ], + [ 8.1211933, 46.1655028 ], + [ 8.1210521, 46.1654012 ], + [ 8.1209034, 46.1653048 ], + [ 8.1207476, 46.165214 ], + [ 8.1205852, 46.1651289 ], + [ 8.1204167, 46.1650499 ], + [ 8.1202424, 46.1649772 ], + [ 8.1200628, 46.1649108 ], + [ 8.1198786, 46.1648511 ], + [ 8.11969, 46.1647982 ], + [ 8.1194978, 46.1647522 ], + [ 8.1193023, 46.1647132 ], + [ 8.1191042, 46.1646814 ], + [ 8.1189039, 46.1646569 ], + [ 8.1187021, 46.1646397 ], + [ 8.1184993, 46.1646298 ], + [ 8.118296, 46.1646273 ], + [ 8.1180927, 46.1646322 ], + [ 8.1178902, 46.1646445 ], + [ 8.1176888, 46.1646642 ], + [ 8.1174892, 46.1646911 ], + [ 8.1172919, 46.1647253 ], + [ 8.1170974, 46.1647666 ], + [ 8.1169064, 46.1648149 ], + [ 8.1167192, 46.1648701 ], + [ 8.1165364, 46.164932 ], + [ 8.1163585, 46.1650005 ], + [ 8.1161861, 46.1650754 ], + [ 8.1160195, 46.1651564 ], + [ 8.1158593, 46.1652434 ], + [ 8.1157058, 46.1653361 ], + [ 8.1155595, 46.1654342 ], + [ 8.1154208, 46.1655375 ], + [ 8.1152901, 46.1656457 ], + [ 8.1151677, 46.1657586 ], + [ 8.115054, 46.1658757 ], + [ 8.1149492, 46.1659968 ], + [ 8.1148537, 46.1661215 ], + [ 8.1147678, 46.1662496 ], + [ 8.1146916, 46.1663806 ], + [ 8.1146253, 46.1665141 ], + [ 8.1145693, 46.1666499 ], + [ 8.1145235, 46.1667876 ], + [ 8.1144882, 46.1669268 ], + [ 8.1144634, 46.167067 ], + [ 8.1144492, 46.1672079 ], + [ 8.1144456, 46.1673492 ], + [ 8.1144527, 46.1674904 ], + [ 8.1144704, 46.1676311 ], + [ 8.1144986, 46.167771 ], + [ 8.1145374, 46.1679097 ], + [ 8.1145866, 46.1680468 ], + [ 8.114646, 46.168182 ], + [ 8.1147156, 46.1683147 ], + [ 8.114795, 46.1684448 ], + [ 8.1148841, 46.1685718 ], + [ 8.1149827, 46.1686954 ], + [ 8.1150904, 46.1688152 ], + [ 8.115207, 46.1689309 ], + [ 8.1153322, 46.1690423 ], + [ 8.1154656, 46.1691489 ], + [ 8.1156069, 46.1692506 ], + [ 8.1157556, 46.1693469 ], + [ 8.1159113, 46.1694378 ], + [ 8.1160737, 46.1695228 ], + [ 8.1162423, 46.1696018 ], + [ 8.1164166, 46.1696746 ], + [ 8.1165962, 46.1697409 ], + [ 8.1167805, 46.1698007 ], + [ 8.116969, 46.1698536 ], + [ 8.1171613, 46.1698996 ], + [ 8.1173568, 46.1699386 ], + [ 8.1175549, 46.1699703 ], + [ 8.1177552, 46.1699949 ], + [ 8.117957, 46.1700121 ], + [ 8.1181599, 46.170022 ], + [ 8.1183632, 46.1700245 ], + [ 8.1185664, 46.1700195 ], + [ 8.118769, 46.1700072 ], + [ 8.1189704, 46.1699876 ], + [ 8.11917, 46.1699606 ], + [ 8.1193674, 46.1699265 ], + [ 8.1195618, 46.1698852 ], + [ 8.1197529, 46.1698368 ], + [ 8.1199401, 46.1697816 ], + [ 8.1201229, 46.1697197 ], + [ 8.1203008, 46.1696512 ], + [ 8.1204732, 46.1695764 ], + [ 8.1206398, 46.1694953 ], + [ 8.1208001, 46.1694083 ], + [ 8.1209536, 46.1693156 ], + [ 8.1210999, 46.1692175 ], + [ 8.1212385, 46.1691142 ], + [ 8.1213693, 46.169006 ], + [ 8.1214917, 46.1688931 ], + [ 8.1216054, 46.168776 ], + [ 8.1217101, 46.1686549 ], + [ 8.1218056, 46.1685301 ], + [ 8.1218915, 46.1684021 ], + [ 8.1219677, 46.1682711 ], + [ 8.1220339, 46.1681375 ], + [ 8.12209, 46.1680017 ], + [ 8.1221357, 46.167864 ], + [ 8.122171, 46.1677249 ], + [ 8.1221958, 46.1675847 ], + [ 8.12221, 46.1674437 ], + [ 8.1222136, 46.1673025 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0109", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Serra", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Serra", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Serra", + "lang" : "it-CH" + }, + { + "text" : "Substation Serra", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.1437861, 46.4682904 ], + [ 7.1429439, 46.46803 ], + [ 7.1420555, 46.4673953 ], + [ 7.1412481, 46.4665017 ], + [ 7.1406391, 46.4654989 ], + [ 7.1397724, 46.4647346 ], + [ 7.1386008, 46.4628523 ], + [ 7.1384143, 46.4617418 ], + [ 7.1366857, 46.4596268 ], + [ 7.1358522, 46.4594752 ], + [ 7.1354984, 46.4605853 ], + [ 7.1348721, 46.4603866 ], + [ 7.1345567, 46.4595203 ], + [ 7.134012, 46.4589405 ], + [ 7.133673, 46.4594982 ], + [ 7.1332491, 46.4596544 ], + [ 7.133111, 46.4596613 ], + [ 7.1329418, 46.459891999999996 ], + [ 7.133476, 46.4604998 ], + [ 7.1356964, 46.4614845 ], + [ 7.1361705, 46.4612132 ], + [ 7.1367515, 46.4620657 ], + [ 7.1377192, 46.46268 ], + [ 7.1391982, 46.4652306 ], + [ 7.139956, 46.4661448 ], + [ 7.1405345, 46.4672357 ], + [ 7.1415385, 46.4681433 ], + [ 7.1430181, 46.4684935 ], + [ 7.1437861, 46.4682904 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00006", + "country" : "CHE", + "name" : [ + { + "text" : "Bois de Marmottex", + "lang" : "de-CH" + }, + { + "text" : "Bois de Marmottex", + "lang" : "fr-CH" + }, + { + "text" : "Bois de Marmottex", + "lang" : "it-CH" + }, + { + "text" : "Bois de Marmottex", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "startDateTime" : "2025-01-01T00:00:00+01:00", + "endDateTime" : "2025-06-30T00:00:00+02:00" + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Generaldirektion für Umwelt", + "lang" : "de-CH" + }, + { + "text" : "Direction générale de l'environnement", + "lang" : "fr-CH" + }, + { + "text" : "Direzione generale dell'Ambiente", + "lang" : "it-CH" + }, + { + "text" : "Environment Department", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.dge@vd.ch", + "phone" : "0041213164422", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.7202029, 46.9337984 ], + [ 6.7203951, 46.9333272 ], + [ 6.7208611, 46.9327374 ], + [ 6.721163, 46.9323473 ], + [ 6.7215538, 46.9320147 ], + [ 6.7218659, 46.9317374 ], + [ 6.7222881999999995, 46.9315448 ], + [ 6.7223723, 46.9315057 ], + [ 6.7224668, 46.9314705 ], + [ 6.7228699, 46.9313067 ], + [ 6.7234495, 46.9311831 ], + [ 6.7236351, 46.9311338 ], + [ 6.7237033, 46.9311142 ], + [ 6.720874, 46.9258231 ], + [ 6.720218, 46.9239171 ], + [ 6.7202079, 46.9238867 ], + [ 6.7191644, 46.9206865 ], + [ 6.7189285, 46.9209706 ], + [ 6.7188803, 46.9213733 ], + [ 6.7184952, 46.9218111 ], + [ 6.7183188, 46.9221263 ], + [ 6.7180267, 46.9225303 ], + [ 6.7180641, 46.9226974 ], + [ 6.7178016, 46.9237815 ], + [ 6.7178194, 46.9244516 ], + [ 6.7176922, 46.9246337 ], + [ 6.7175425, 46.9248006 ], + [ 6.7171909, 46.9251218 ], + [ 6.7172259, 46.9251546 ], + [ 6.7171543, 46.9252712 ], + [ 6.7171221, 46.9253458 ], + [ 6.7170774, 46.925429 ], + [ 6.7170361, 46.925515 ], + [ 6.7169189, 46.9256766 ], + [ 6.7168675, 46.9257687 ], + [ 6.7167409, 46.9259629 ], + [ 6.7166236, 46.9261023 ], + [ 6.7164861, 46.9262432 ], + [ 6.716424, 46.9263123 ], + [ 6.7163496, 46.9263773 ], + [ 6.7162971, 46.9264259 ], + [ 6.7162279, 46.9264939 ], + [ 6.7158972, 46.9267317 ], + [ 6.7158558, 46.9267642 ], + [ 6.7157125, 46.9268923 ], + [ 6.7156103, 46.9269963 ], + [ 6.7155272, 46.9270723 ], + [ 6.7154276, 46.9271593 ], + [ 6.7153607, 46.9272336 ], + [ 6.7151529, 46.9274253 ], + [ 6.7150619, 46.9275205 ], + [ 6.7148658999999995, 46.9277526 ], + [ 6.7148077, 46.9278107 ], + [ 6.7147439, 46.9278634 ], + [ 6.7146912, 46.9278965 ], + [ 6.7145406, 46.9279678 ], + [ 6.7143086, 46.9280425 ], + [ 6.7139691, 46.9281264 ], + [ 6.7137077, 46.9281688 ], + [ 6.7135431, 46.9282099 ], + [ 6.7134612, 46.9282385 ], + [ 6.7131577, 46.9283869 ], + [ 6.7124802, 46.9288464 ], + [ 6.7123975, 46.9290582 ], + [ 6.7122265, 46.9296455 ], + [ 6.7119902, 46.9299452 ], + [ 6.71206, 46.9309062 ], + [ 6.7125019, 46.9314114 ], + [ 6.7129749, 46.9318657 ], + [ 6.7134473, 46.932361 ], + [ 6.7137149, 46.9328405 ], + [ 6.7139036, 46.9330889 ], + [ 6.7133019, 46.9340875 ], + [ 6.7156215, 46.9347901 ], + [ 6.7208288, 46.9360884 ], + [ 6.7208787999999995, 46.9352989 ], + [ 6.7206679, 46.9349352 ], + [ 6.720579, 46.9347683 ], + [ 6.720396, 46.9348076 ], + [ 6.7203875, 46.934723 ], + [ 6.7203525, 46.9342956 ], + [ 6.7202029, 46.9337984 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00044", + "country" : "CHE", + "name" : [ + { + "text" : "Provence : haut plateau du Creux du Van", + "lang" : "de-CH" + }, + { + "text" : "Provence : haut plateau du Creux du Van", + "lang" : "fr-CH" + }, + { + "text" : "Provence : haut plateau du Creux du Van", + "lang" : "it-CH" + }, + { + "text" : "Provence : haut plateau du Creux du Van", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Generaldirektion für Umwelt", + "lang" : "de-CH" + }, + { + "text" : "Direction générale de l'environnement", + "lang" : "fr-CH" + }, + { + "text" : "Direzione generale dell'Ambiente", + "lang" : "it-CH" + }, + { + "text" : "Environment Department", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.dge@vd.ch", + "phone" : "0041213164422", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.1776268, 46.8223936 ], + [ 8.1776194, 46.822252399999996 ], + [ 8.1776014, 46.8221117 ], + [ 8.1775726, 46.8219718 ], + [ 8.1775332, 46.8218331 ], + [ 8.1774832, 46.8216961 ], + [ 8.1774229, 46.821561 ], + [ 8.1773524, 46.8214282 ], + [ 8.1772718, 46.8212982 ], + [ 8.1771815, 46.8211713 ], + [ 8.1770816, 46.8210478 ], + [ 8.1769724, 46.820928 ], + [ 8.1768542, 46.8208123 ], + [ 8.1767274, 46.8207011 ], + [ 8.1765923, 46.8205945 ], + [ 8.1764492, 46.8204929 ], + [ 8.1762986, 46.8203966 ], + [ 8.1761408, 46.8203059 ], + [ 8.1759764, 46.8202209 ], + [ 8.1758057, 46.820142 ], + [ 8.1756292, 46.8200693 ], + [ 8.1754474, 46.8200031 ], + [ 8.1752608, 46.8199435 ], + [ 8.1750699, 46.8198906 ], + [ 8.1748753, 46.8198447 ], + [ 8.1746774, 46.8198059 ], + [ 8.1744768, 46.8197742 ], + [ 8.1742741, 46.8197497 ], + [ 8.1740698, 46.8197326 ], + [ 8.1738645, 46.8197228 ], + [ 8.1736587, 46.8197205 ], + [ 8.173453, 46.8197255 ], + [ 8.173248, 46.8197379 ], + [ 8.1730442, 46.8197576 ], + [ 8.1728422, 46.8197847 ], + [ 8.1726425, 46.8198189 ], + [ 8.1724457, 46.8198603 ], + [ 8.1722524, 46.8199087 ], + [ 8.172063, 46.819964 ], + [ 8.1718781, 46.820026 ], + [ 8.1716981, 46.8200946 ], + [ 8.1715236, 46.8201695 ], + [ 8.1713551, 46.8202506 ], + [ 8.171193, 46.8203377 ], + [ 8.1710377, 46.8204305 ], + [ 8.1708898, 46.8205287 ], + [ 8.1707495, 46.820632 ], + [ 8.1706173, 46.8207403 ], + [ 8.1704935, 46.8208532 ], + [ 8.1703785, 46.8209704 ], + [ 8.1702726, 46.8210915 ], + [ 8.1701761, 46.8212163 ], + [ 8.1700892, 46.8213444 ], + [ 8.1700123, 46.8214754 ], + [ 8.1699454, 46.821609 ], + [ 8.1698887, 46.8217449 ], + [ 8.1698426, 46.8218825 ], + [ 8.1698069, 46.8220217 ], + [ 8.169782, 46.8221619 ], + [ 8.1697677, 46.8223029 ], + [ 8.1697643, 46.8224441 ], + [ 8.1697716, 46.8225853 ], + [ 8.1697896, 46.8227261 ], + [ 8.1698184, 46.822866 ], + [ 8.1698578, 46.8230046 ], + [ 8.1699077, 46.8231417 ], + [ 8.169968, 46.8232768 ], + [ 8.1700385, 46.8234095 ], + [ 8.170119, 46.8235395 ], + [ 8.1702094, 46.8236665 ], + [ 8.1703093, 46.82379 ], + [ 8.1704185, 46.8239098 ], + [ 8.1705366, 46.8240255 ], + [ 8.1706634, 46.8241368 ], + [ 8.1707986, 46.8242433 ], + [ 8.1709416, 46.8243449 ], + [ 8.1710923, 46.8244412 ], + [ 8.17125, 46.8245319 ], + [ 8.1714145, 46.8246169 ], + [ 8.171585199999999, 46.8246958 ], + [ 8.1717617, 46.8247685 ], + [ 8.1719435, 46.8248348 ], + [ 8.1721301, 46.8248944 ], + [ 8.172321, 46.8249472 ], + [ 8.1725156, 46.8249932 ], + [ 8.1727135, 46.825032 ], + [ 8.1729141, 46.8250637 ], + [ 8.1731169, 46.8250882 ], + [ 8.1733212, 46.8251053 ], + [ 8.1735265, 46.8251151 ], + [ 8.1737323, 46.8251174 ], + [ 8.173938, 46.8251124 ], + [ 8.1741431, 46.8251 ], + [ 8.1743469, 46.8250803 ], + [ 8.1745489, 46.8250532 ], + [ 8.1747486, 46.8250189 ], + [ 8.1749454, 46.8249775 ], + [ 8.1751388, 46.8249291 ], + [ 8.1753282, 46.8248738 ], + [ 8.1755131, 46.8248118 ], + [ 8.1756931, 46.8247433 ], + [ 8.1758676, 46.8246683 ], + [ 8.1760361, 46.8245872 ], + [ 8.1761982, 46.8245001 ], + [ 8.1763535, 46.8244074 ], + [ 8.1765014, 46.8243092 ], + [ 8.1766417, 46.8242058 ], + [ 8.1767739, 46.8240975 ], + [ 8.1768977, 46.8239846 ], + [ 8.1770127, 46.8238674 ], + [ 8.1771186, 46.8237463 ], + [ 8.1772151, 46.8236215 ], + [ 8.1773019, 46.8234934 ], + [ 8.1773789, 46.8233623 ], + [ 8.1774458, 46.8232287 ], + [ 8.1775024, 46.8230929 ], + [ 8.1775485, 46.8229552 ], + [ 8.1775842, 46.8228161 ], + [ 8.1776091, 46.8226758 ], + [ 8.1776233, 46.8225349 ], + [ 8.1776268, 46.8223936 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0044", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Giswil", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Giswil", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Giswil", + "lang" : "it-CH" + }, + { + "text" : "Substation Giswil", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.0031003, 46.3576608 ], + [ 7.0033361, 46.3577382 ], + [ 7.0044518, 46.3577901 ], + [ 7.0048505, 46.3576513 ], + [ 7.0050833, 46.3574588 ], + [ 7.0054873, 46.3572994 ], + [ 7.006103, 46.3573197 ], + [ 7.006243, 46.3572024 ], + [ 7.0070906, 46.3569708 ], + [ 7.0077469, 46.3569518 ], + [ 7.0083299, 46.3571645 ], + [ 7.0087689, 46.3573416 ], + [ 7.0090416, 46.3575306 ], + [ 7.0095103, 46.3570835 ], + [ 7.0102355, 46.3565582 ], + [ 7.010733, 46.3560761 ], + [ 7.0108158, 46.3556321 ], + [ 7.010255, 46.3547438 ], + [ 7.0102281, 46.3547006 ], + [ 7.010078, 46.3544625 ], + [ 7.0083878, 46.3526587 ], + [ 7.0079817, 46.3525897 ], + [ 7.0071671, 46.3525866 ], + [ 7.0056348, 46.352828099999996 ], + [ 7.0048392, 46.3535429 ], + [ 7.0034841, 46.3562967 ], + [ 7.003482, 46.3563993 ], + [ 7.0031442, 46.3575251 ], + [ 7.0031003, 46.3576608 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00020", + "country" : "CHE", + "name" : [ + { + "text" : "La Riondaz", + "lang" : "de-CH" + }, + { + "text" : "La Riondaz", + "lang" : "fr-CH" + }, + { + "text" : "La Riondaz", + "lang" : "it-CH" + }, + { + "text" : "La Riondaz", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "startDateTime" : "2024-11-15T00:00:00+01:00", + "endDateTime" : "2025-04-15T00:00:00+02:00" + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Generaldirektion für Umwelt", + "lang" : "de-CH" + }, + { + "text" : "Direction générale de l'environnement", + "lang" : "fr-CH" + }, + { + "text" : "Direzione generale dell'Ambiente", + "lang" : "it-CH" + }, + { + "text" : "Environment Department", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.dge@vd.ch", + "phone" : "0041213164422", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.4037303, 46.9719075 ], + [ 8.4037004, 46.9718875 ], + [ 8.4035419, 46.9717814 ], + [ 8.4028172, 46.9712972 ], + [ 8.4027845, 46.9712727 ], + [ 8.4026531, 46.9711741 ], + [ 8.4018994, 46.9716926 ], + [ 8.4001296, 46.9709893 ], + [ 8.3998796, 46.9710369 ], + [ 8.3993937, 46.9711293 ], + [ 8.3991608, 46.9714792 ], + [ 8.3991542, 46.9714892 ], + [ 8.4008764, 46.972177 ], + [ 8.4020429, 46.972642 ], + [ 8.4029379, 46.9729989 ], + [ 8.4023461, 46.9738185 ], + [ 8.4060016, 46.9750179 ], + [ 8.4050541, 46.9763007 ], + [ 8.397532, 46.9738323 ], + [ 8.3975242, 46.9738297 ], + [ 8.3831359, 46.9691066 ], + [ 8.382282, 46.9703227 ], + [ 8.3846382, 46.9710963 ], + [ 8.384516, 46.9712544 ], + [ 8.3842794, 46.9715608 ], + [ 8.3842296, 46.9716323 ], + [ 8.3840892, 46.9719002 ], + [ 8.3854963, 46.9723631 ], + [ 8.3858291, 46.9718853 ], + [ 8.3920422, 46.9739258 ], + [ 8.3918881, 46.9741458 ], + [ 8.3834688, 46.9751842 ], + [ 8.3833871, 46.9751943 ], + [ 8.3834508, 46.975305 ], + [ 8.3835092, 46.9753881 ], + [ 8.3835835, 46.97549 ], + [ 8.383628, 46.9754845 ], + [ 8.3926286, 46.9743743 ], + [ 8.3916264, 46.976225 ], + [ 8.3912712, 46.9768809 ], + [ 8.3909375, 46.9774972 ], + [ 8.3907349, 46.977662 ], + [ 8.3905488, 46.9778135 ], + [ 8.3903886, 46.9779438 ], + [ 8.3904649, 46.9779878 ], + [ 8.3904577, 46.9779936 ], + [ 8.3916305, 46.9786687 ], + [ 8.391717, 46.9785029 ], + [ 8.3922687, 46.978635 ], + [ 8.3929094, 46.9787331 ], + [ 8.3930848, 46.9785377 ], + [ 8.3932115, 46.9784401 ], + [ 8.3935752, 46.978261 ], + [ 8.3938994, 46.9781417 ], + [ 8.3941529, 46.9780829 ], + [ 8.3943774, 46.9780526 ], + [ 8.4024392, 46.9773129 ], + [ 8.4024783, 46.9773331 ], + [ 8.4025211, 46.9773602 ], + [ 8.4025471, 46.9773803 ], + [ 8.4026034, 46.9774091 ], + [ 8.4026797, 46.9774337 ], + [ 8.4026936, 46.9774362 ], + [ 8.4026943, 46.9774363 ], + [ 8.4027149, 46.9774414 ], + [ 8.4027168, 46.9774419 ], + [ 8.4027187, 46.9774423 ], + [ 8.4027205, 46.9774428 ], + [ 8.4027446, 46.9774484 ], + [ 8.402769, 46.9774535 ], + [ 8.4027935, 46.9774581 ], + [ 8.4028181, 46.9774624 ], + [ 8.4028428, 46.9774665 ], + [ 8.4028676, 46.9774704 ], + [ 8.4028927, 46.9774739 ], + [ 8.4029181, 46.9774766 ], + [ 8.4029435, 46.9774785 ], + [ 8.402969, 46.9774807 ], + [ 8.4029942, 46.977484 ], + [ 8.403019, 46.9774885 ], + [ 8.4030448, 46.9774944 ], + [ 8.4030702, 46.9775011 ], + [ 8.403095, 46.9775088 ], + [ 8.4031195, 46.9775168 ], + [ 8.4031441, 46.9775249 ], + [ 8.4031685, 46.977533 ], + [ 8.4031967, 46.9775424 ], + [ 8.4032246, 46.9775519 ], + [ 8.4032525, 46.9775617 ], + [ 8.4032802, 46.9775717 ], + [ 8.4033075, 46.9775821 ], + [ 8.4033346, 46.9775929 ], + [ 8.4033665, 46.9776063 ], + [ 8.403398, 46.9776204 ], + [ 8.4034288, 46.9776351 ], + [ 8.4034596, 46.9776498 ], + [ 8.4034909, 46.977664 ], + [ 8.4035227, 46.9776777 ], + [ 8.4035954, 46.9777075 ], + [ 8.403669, 46.9777364 ], + [ 8.4037434, 46.9777644 ], + [ 8.4038973, 46.9778151 ], + [ 8.4039272, 46.977825 ], + [ 8.4039583, 46.9778352 ], + [ 8.4039848, 46.977844 ], + [ 8.4043119, 46.9779467 ], + [ 8.4044034, 46.9779841 ], + [ 8.4044964, 46.9780198 ], + [ 8.4045908, 46.9780536 ], + [ 8.4046492, 46.9780734 ], + [ 8.4047081, 46.9780923 ], + [ 8.4047675, 46.9781105 ], + [ 8.4048271, 46.9781285 ], + [ 8.4048862, 46.9781471 ], + [ 8.4049449, 46.9781664 ], + [ 8.4050236, 46.978193 ], + [ 8.4051019, 46.9782202 ], + [ 8.4051797, 46.978248 ], + [ 8.4052576, 46.9782756 ], + [ 8.4053361, 46.9783024 ], + [ 8.4054153, 46.9783283 ], + [ 8.4055359, 46.9783664 ], + [ 8.405657099999999, 46.9784034 ], + [ 8.405779, 46.9784394 ], + [ 8.405901, 46.9784753 ], + [ 8.4060223, 46.9785123 ], + [ 8.4061427, 46.9785506 ], + [ 8.4062001, 46.9785697 ], + [ 8.4062568, 46.9785899 ], + [ 8.4063128, 46.9786111 ], + [ 8.4063686, 46.9786324 ], + [ 8.4064249, 46.9786531 ], + [ 8.4064817, 46.9786731 ], + [ 8.4065222, 46.9786869 ], + [ 8.406563, 46.9787003 ], + [ 8.406604, 46.9787135 ], + [ 8.4066451, 46.9787264 ], + [ 8.4066862, 46.9787393 ], + [ 8.4067274, 46.9787521 ], + [ 8.4067614, 46.9787626 ], + [ 8.4067955, 46.9787728 ], + [ 8.4068297, 46.9787829 ], + [ 8.406864, 46.9787929 ], + [ 8.4068983, 46.9788029 ], + [ 8.4069276, 46.9788115 ], + [ 8.4069084, 46.9788385 ], + [ 8.406868, 46.9788941 ], + [ 8.406946, 46.9789206 ], + [ 8.4069873, 46.9788612 ], + [ 8.4070062, 46.978834 ], + [ 8.4070226, 46.9788386 ], + [ 8.4070451, 46.9788451 ], + [ 8.4070674, 46.9788518 ], + [ 8.4070846, 46.978857 ], + [ 8.4071018, 46.9788622 ], + [ 8.407119, 46.9788675 ], + [ 8.407136, 46.9788729 ], + [ 8.407153, 46.9788785 ], + [ 8.4071698, 46.9788843 ], + [ 8.4071962, 46.9788937 ], + [ 8.4072224, 46.9789033 ], + [ 8.4072485, 46.978913 ], + [ 8.4072745, 46.9789229 ], + [ 8.4073005, 46.9789329 ], + [ 8.4073265, 46.9789428 ], + [ 8.4073982, 46.9789706 ], + [ 8.4074696, 46.9789986 ], + [ 8.4075409, 46.979027 ], + [ 8.407612199999999, 46.9790552 ], + [ 8.407684, 46.9790829 ], + [ 8.4077562, 46.97911 ], + [ 8.4077783, 46.979118 ], + [ 8.4078007, 46.9791255 ], + [ 8.4078233, 46.9791327 ], + [ 8.4078461, 46.9791396 ], + [ 8.407869, 46.9791464 ], + [ 8.407892, 46.9791531 ], + [ 8.4079241, 46.979162099999996 ], + [ 8.4079566, 46.9791708 ], + [ 8.4079893, 46.979179 ], + [ 8.4080219, 46.9791873 ], + [ 8.4080543, 46.9791961 ], + [ 8.4080863, 46.9792055 ], + [ 8.4081138, 46.9792141 ], + [ 8.4081409, 46.9792231 ], + [ 8.4081678, 46.9792326 ], + [ 8.4081945, 46.9792422 ], + [ 8.4082213, 46.9792517 ], + [ 8.4082482, 46.9792612 ], + [ 8.4083099, 46.9792829 ], + [ 8.4083716, 46.9793048 ], + [ 8.4084331, 46.9793268 ], + [ 8.4084947, 46.9793487 ], + [ 8.4085564, 46.9793704 ], + [ 8.4086184, 46.9793918 ], + [ 8.4086744, 46.9794109 ], + [ 8.4087305, 46.9794298 ], + [ 8.4087869, 46.9794484 ], + [ 8.4088432, 46.9794669 ], + [ 8.4088996, 46.9794855 ], + [ 8.4089559, 46.9795042 ], + [ 8.4090291, 46.9795286 ], + [ 8.4091022, 46.9795532 ], + [ 8.4091753, 46.9795779 ], + [ 8.4092484, 46.9796024 ], + [ 8.4093219, 46.9796265 ], + [ 8.4093957, 46.9796502 ], + [ 8.4094238, 46.9796588 ], + [ 8.4094522, 46.979667 ], + [ 8.4094809, 46.9796747 ], + [ 8.4095096, 46.9796823 ], + [ 8.4095383, 46.9796901 ], + [ 8.4095668, 46.979698 ], + [ 8.4096114, 46.9797104 ], + [ 8.4096561, 46.979722699999996 ], + [ 8.4097009, 46.9797347 ], + [ 8.4097456, 46.979747 ], + [ 8.4097898, 46.9797599 ], + [ 8.4098337, 46.9797735 ], + [ 8.4098776, 46.979788 ], + [ 8.4099211, 46.979803 ], + [ 8.4099642, 46.9798186 ], + [ 8.410007, 46.9798345 ], + [ 8.41005, 46.9798503 ], + [ 8.4100929, 46.979866 ], + [ 8.4101296, 46.9798794 ], + [ 8.4101662, 46.979893 ], + [ 8.4102027, 46.9799067 ], + [ 8.4102391, 46.9799204 ], + [ 8.4102756, 46.979934 ], + [ 8.4103121, 46.9799476 ], + [ 8.4103333, 46.9799555 ], + [ 8.4103544, 46.9799636 ], + [ 8.4103754, 46.9799717 ], + [ 8.4103965, 46.9799797 ], + [ 8.4104179, 46.9799874 ], + [ 8.4104396, 46.9799946 ], + [ 8.4104734, 46.9800053 ], + [ 8.411571, 46.9784391 ], + [ 8.4094336, 46.9777394 ], + [ 8.4096574, 46.9774189 ], + [ 8.4100986, 46.9775639 ], + [ 8.4104188, 46.9770972 ], + [ 8.4099828, 46.9769532 ], + [ 8.4101944, 46.9766503 ], + [ 8.4105576, 46.9761304 ], + [ 8.4107483, 46.9758574 ], + [ 8.4106777, 46.9758227 ], + [ 8.4104077, 46.9756762 ], + [ 8.4100437, 46.9754728 ], + [ 8.4095248, 46.9751569 ], + [ 8.4088926, 46.9747569 ], + [ 8.4084677, 46.9745338 ], + [ 8.4083849, 46.9744695 ], + [ 8.407278699999999, 46.973883 ], + [ 8.4072344, 46.9739204 ], + [ 8.4069241, 46.9737559 ], + [ 8.406202799999999, 46.973373 ], + [ 8.4053062, 46.9728357 ], + [ 8.4051064, 46.9727198 ], + [ 8.4038714, 46.972002 ], + [ 8.4037303, 46.9719075 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZC002", + "country" : "CHE", + "name" : [ + { + "text" : "LSZC Buochs (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSZC Buochs (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSZC Buochs (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSZC Buochs (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Airport Buochs AG / Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Airport Buochs AG / Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Airport Buochs AG / Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Airport Buochs AG / Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Skyguide Special Office", + "lang" : "de-CH" + }, + { + "text" : "Skyguide Special Office", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide Special Office", + "lang" : "it-CH" + }, + { + "text" : "Skyguide Special Office", + "lang" : "en-GB" + } + ], + "siteURL" : "https://skyguide.ch/services/special-flights", + "email" : "info@airportbuochs.ch", + "phone" : "0041416220611", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7135637, 47.4133799 ], + [ 7.7133016, 47.4133496 ], + [ 7.7130138, 47.4133552 ], + [ 7.7129005, 47.4135048 ], + [ 7.7128318, 47.4136878 ], + [ 7.7128021, 47.4139598 ], + [ 7.7127889, 47.414208 ], + [ 7.7129945, 47.414413 ], + [ 7.7132674, 47.4142921 ], + [ 7.7135001, 47.4141886 ], + [ 7.7135544, 47.4141643 ], + [ 7.7135913, 47.4139376 ], + [ 7.7136349, 47.4136632 ], + [ 7.7135637, 47.4133799 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns243", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Chastelenfluh", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Chastelenfluh", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Chastelenfluh", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Chastelenfluh", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.114018, 47.573131599999996 ], + [ 9.1138527, 47.57078 ], + [ 9.1135058, 47.5684375 ], + [ 9.1129782, 47.5661105 ], + [ 9.1122715, 47.5638053 ], + [ 9.1113876, 47.5615283 ], + [ 9.1103289, 47.5592858 ], + [ 9.1090984, 47.5570838 ], + [ 9.1076994, 47.5549284 ], + [ 9.1061358, 47.5528255 ], + [ 9.1044119, 47.5507808 ], + [ 9.1025324, 47.5488 ], + [ 9.1005026, 47.5468885 ], + [ 9.0983279, 47.5450515 ], + [ 9.0960144, 47.543294 ], + [ 9.0935683, 47.5416208 ], + [ 9.0909964, 47.5400366 ], + [ 9.0883058, 47.5385456 ], + [ 9.0855037, 47.537152 ], + [ 9.0825979, 47.5358595 ], + [ 9.0795964, 47.5346716 ], + [ 9.0765073, 47.5335917 ], + [ 9.0733391, 47.5326227 ], + [ 9.0701004, 47.5317672 ], + [ 9.0668002, 47.5310276 ], + [ 9.0634474, 47.5304059 ], + [ 9.0600513, 47.5299038 ], + [ 9.0566211, 47.5295226 ], + [ 9.0531661, 47.5292635 ], + [ 9.0496959, 47.5291271 ], + [ 9.0462199, 47.5291137 ], + [ 9.0427476, 47.5292235 ], + [ 9.0392885, 47.5294561 ], + [ 9.0358522, 47.5298109 ], + [ 9.0324478, 47.530287 ], + [ 9.0290849, 47.5308829 ], + [ 9.0257725, 47.5315971 ], + [ 9.0225198, 47.5324277 ], + [ 9.0193356, 47.5333723 ], + [ 9.0162286, 47.5344285 ], + [ 9.0132074, 47.5355932 ], + [ 9.0102802, 47.5368633 ], + [ 9.007455, 47.5382353 ], + [ 9.0047396, 47.5397056 ], + [ 9.0021414, 47.54127 ], + [ 8.9996675, 47.5429242 ], + [ 8.9973247, 47.5446638 ], + [ 8.9951194, 47.5464841 ], + [ 8.9930577, 47.5483799 ], + [ 8.9911452, 47.5503461 ], + [ 8.9893872, 47.5523774 ], + [ 8.9877885, 47.5544682 ], + [ 8.9863535, 47.5566127 ], + [ 8.9850862, 47.5588051 ], + [ 8.98399, 47.5610394 ], + [ 8.983068, 47.5633095 ], + [ 8.9823227, 47.5656091 ], + [ 8.9817562, 47.5679319 ], + [ 8.9813701, 47.5702716 ], + [ 8.9811654, 47.5726218 ], + [ 8.9811427, 47.574976 ], + [ 8.9813021, 47.5773278 ], + [ 8.9816433, 47.5796707 ], + [ 8.9821652, 47.5819983 ], + [ 8.9828665, 47.5843043 ], + [ 8.9837453, 47.5865822 ], + [ 8.9847992, 47.5888259 ], + [ 8.9860253, 47.5910292 ], + [ 8.9874203, 47.593186 ], + [ 8.9889803, 47.5952905 ], + [ 8.9907012, 47.5973368 ], + [ 8.9925782, 47.5993194 ], + [ 8.9946062, 47.6012328 ], + [ 8.9967796, 47.6030717 ], + [ 8.9990925, 47.6048312 ], + [ 9.0015385, 47.6065063 ], + [ 9.0041109, 47.6080925 ], + [ 9.0068027, 47.6095854 ], + [ 9.0096065, 47.6109809 ], + [ 9.0125146, 47.6122752 ], + [ 9.0155191, 47.6134647 ], + [ 9.0186116, 47.6145462 ], + [ 9.0217837, 47.6155166 ], + [ 9.0250267, 47.6163735 ], + [ 9.0283316, 47.6171142 ], + [ 9.0316894, 47.6177369 ], + [ 9.035091, 47.6182399 ], + [ 9.0385268, 47.6186217 ], + [ 9.0419875, 47.6188812 ], + [ 9.0454636, 47.6190179 ], + [ 9.0489454, 47.6190312 ], + [ 9.0524236, 47.6189213 ], + [ 9.0558884, 47.6186883 ], + [ 9.0593305, 47.6183329 ], + [ 9.0627402, 47.6178561 ], + [ 9.0661083, 47.6172592 ], + [ 9.0694255, 47.6165438 ], + [ 9.0726826, 47.615712 ], + [ 9.0758708, 47.6147659 ], + [ 9.0789813, 47.6137082 ], + [ 9.0820055, 47.6125418 ], + [ 9.0849352, 47.611269899999996 ], + [ 9.0877622, 47.609896 ], + [ 9.0904789, 47.6084239 ], + [ 9.0930778, 47.6068575 ], + [ 9.0955518, 47.6052013 ], + [ 9.0978941, 47.6034597 ], + [ 9.1000982, 47.6016376 ], + [ 9.1021581, 47.5997399 ], + [ 9.1040683, 47.5977719 ], + [ 9.1058234, 47.5957389 ], + [ 9.1074187, 47.5936465 ], + [ 9.1088498, 47.5915005 ], + [ 9.1101128, 47.5893068 ], + [ 9.1112042, 47.5870713 ], + [ 9.1121211, 47.5848003 ], + [ 9.1128611, 47.5824999 ], + [ 9.113422, 47.5801764 ], + [ 9.1138024, 47.5778363 ], + [ 9.1140012, 47.5754859 ], + [ 9.114018, 47.573131599999996 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSPA001", + "country" : "CHE", + "name" : [ + { + "text" : "LSPA Amlikon", + "lang" : "de-CH" + }, + { + "text" : "LSPA Amlikon", + "lang" : "fr-CH" + }, + { + "text" : "LSPA Amlikon", + "lang" : "it-CH" + }, + { + "text" : "LSPA Amlikon", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Segelfluggruppe Cumulus", + "lang" : "de-CH" + }, + { + "text" : "Segelfluggruppe Cumulus", + "lang" : "fr-CH" + }, + { + "text" : "Segelfluggruppe Cumulus", + "lang" : "it-CH" + }, + { + "text" : "Segelfluggruppe Cumulus", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Fabian Grunder", + "lang" : "de-CH" + }, + { + "text" : "Fabian Grunder", + "lang" : "fr-CH" + }, + { + "text" : "Fabian Grunder", + "lang" : "it-CH" + }, + { + "text" : "Fabian Grunder", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.cumulus-segelflug.ch/flugplatz/drohnen/", + "email" : "info@cumulus-segelflug.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P02DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.5497893, 47.4400841 ], + [ 8.5495559, 47.4399214 ], + [ 8.5496151, 47.439801 ], + [ 8.5507865, 47.4386353 ], + [ 8.5516043, 47.4389031 ], + [ 8.5516424, 47.4388403 ], + [ 8.5521817, 47.4382378 ], + [ 8.5508762, 47.43739 ], + [ 8.550645, 47.4376419 ], + [ 8.549692199999999, 47.4373212 ], + [ 8.5488376, 47.4369861 ], + [ 8.5477441, 47.4377946 ], + [ 8.5470652, 47.4383182 ], + [ 8.5470136, 47.4383677 ], + [ 8.5461159, 47.4391119 ], + [ 8.5457548, 47.4394408 ], + [ 8.5462827, 47.4396348 ], + [ 8.546509499999999, 47.4397144 ], + [ 8.5473734, 47.440183 ], + [ 8.547714599999999, 47.4398454 ], + [ 8.5481596, 47.440073 ], + [ 8.5485777, 47.440274 ], + [ 8.5495598, 47.4407371 ], + [ 8.5497567, 47.4404098 ], + [ 8.5497893, 47.4400841 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZH004", + "country" : "CHE", + "name" : [ + { + "text" : "LSZH Zürich (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSZH Zürich (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSZH Zürich (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSZH Zürich (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Flughafen Zürich AG / Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Flughafen Zürich AG / Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Flughafen Zürich AG / Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Flughafen Zürich AG / Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Skyguide Special Flight Office", + "lang" : "de-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "it-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.skyguide.ch/services/special-flights", + "email" : "drones@zurich-airport.com", + "phone" : "0041438162211", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.0332295, 46.1997303 ], + [ 6.0342617, 46.1993857 ], + [ 6.0338465, 46.1998008 ], + [ 6.0335241, 46.2008297 ], + [ 6.0337932, 46.2018659 ], + [ 6.034613, 46.2027518 ], + [ 6.0358586, 46.2033524 ], + [ 6.0373405, 46.2035762 ], + [ 6.0388329, 46.2033893 ], + [ 6.0401087, 46.20282 ], + [ 6.0405602, 46.2023686 ], + [ 6.0406196, 46.2024311 ], + [ 6.0406214, 46.2024355 ], + [ 6.0406758, 46.2024902 ], + [ 6.0412769, 46.2031224 ], + [ 6.0413347, 46.2031528 ], + [ 6.0413467, 46.2031648 ], + [ 6.041876, 46.2034365 ], + [ 6.0420264, 46.2035153 ], + [ 6.0420092, 46.2035328 ], + [ 6.0422277, 46.2036366 ], + [ 6.0423089, 46.2036634 ], + [ 6.0423288, 46.2036738 ], + [ 6.0423585, 46.2036844 ], + [ 6.0423587, 46.2036842 ], + [ 6.0423733, 46.2036917 ], + [ 6.0424149, 46.2037064 ], + [ 6.0425111, 46.2037299 ], + [ 6.0433279, 46.2039989 ], + [ 6.0445356, 46.204107 ], + [ 6.0457321, 46.2039504 ], + [ 6.0468002, 46.2035443 ], + [ 6.0476348, 46.2029288 ], + [ 6.047726, 46.2028359 ], + [ 6.047729, 46.2028328 ], + [ 6.0477553, 46.2028059 ], + [ 6.0482736, 46.2020396 ], + [ 6.0484245, 46.2011995 ], + [ 6.0481931, 46.2003683 ], + [ 6.0476023, 46.1996278 ], + [ 6.0471135, 46.1993117 ], + [ 6.0467548, 46.1990194 ], + [ 6.046753, 46.1990184 ], + [ 6.0466982, 46.1989876 ], + [ 6.0466941, 46.1989853 ], + [ 6.0455946, 46.1985515 ], + [ 6.0443528, 46.1983858 ], + [ 6.0431001, 46.1985057 ], + [ 6.0419691, 46.1988985 ], + [ 6.0410796, 46.1995226 ], + [ 6.0410207, 46.1995802 ], + [ 6.0409961, 46.1996046 ], + [ 6.0409817, 46.199619 ], + [ 6.0408941, 46.1997468 ], + [ 6.0402068, 46.1990041 ], + [ 6.0389612, 46.1984036 ], + [ 6.0374795, 46.1981797 ], + [ 6.0361001, 46.1983525 ], + [ 6.0362476, 46.1982476 ], + [ 6.036715, 46.1975867 ], + [ 6.0374545, 46.1972391 ], + [ 6.0383989, 46.1966108 ], + [ 6.0389896, 46.1958005 ], + [ 6.0391597, 46.1949 ], + [ 6.03889, 46.1940112 ], + [ 6.038211, 46.193235 ], + [ 6.0362463, 46.1916633 ], + [ 6.0353067, 46.1911165 ], + [ 6.0341687, 46.1908001 ], + [ 6.0329453, 46.1907457 ], + [ 6.0317584, 46.1909587 ], + [ 6.0313063, 46.1910956 ], + [ 6.0312821, 46.1910934 ], + [ 6.0298156, 46.1911562 ], + [ 6.0284876, 46.1915926 ], + [ 6.0274877, 46.1923402 ], + [ 6.026959, 46.1932922 ], + [ 6.0267685, 46.1940278 ], + [ 6.0267384, 46.1948473 ], + [ 6.0269313, 46.1958963 ], + [ 6.027063, 46.1966708 ], + [ 6.0273727, 46.1974529 ], + [ 6.0280031, 46.1981357 ], + [ 6.0286917, 46.1986799 ], + [ 6.0295055, 46.1991668 ], + [ 6.029786, 46.1992571 ], + [ 6.0297827, 46.1992612 ], + [ 6.0303598, 46.1994826 ], + [ 6.0317602, 46.1997987 ], + [ 6.0332295, 46.1997303 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-8", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.6154311, 46.5821793 ], + [ 9.6154201, 46.5820383 ], + [ 9.6153984, 46.5818978 ], + [ 9.615366, 46.5817583 ], + [ 9.6153231, 46.5816201 ], + [ 9.6152697, 46.5814837 ], + [ 9.6152061, 46.5813494 ], + [ 9.6151324, 46.5812176 ], + [ 9.6150487, 46.5810886 ], + [ 9.6149554, 46.5809628 ], + [ 9.6148527, 46.5808406 ], + [ 9.6147408, 46.5807222 ], + [ 9.6146201, 46.580608 ], + [ 9.6144909, 46.5804983 ], + [ 9.6143536, 46.5803935 ], + [ 9.6142085, 46.5802938 ], + [ 9.614056, 46.5801994 ], + [ 9.6138965, 46.5801106 ], + [ 9.6137306, 46.5800278 ], + [ 9.6135586, 46.579951 ], + [ 9.613381, 46.5798805 ], + [ 9.6131983, 46.5798166 ], + [ 9.6130109, 46.5797593 ], + [ 9.6128195, 46.5797089 ], + [ 9.6126246, 46.5796654 ], + [ 9.6124266, 46.5796291 ], + [ 9.6122261, 46.5795999 ], + [ 9.6120236, 46.579578 ], + [ 9.6118198, 46.5795635 ], + [ 9.6116152, 46.5795563 ], + [ 9.6114103, 46.5795565 ], + [ 9.6112057, 46.5795641 ], + [ 9.6110019, 46.5795791 ], + [ 9.6107996, 46.5796014 ], + [ 9.6105993, 46.579631 ], + [ 9.6104014, 46.5796678 ], + [ 9.6102066, 46.5797116 ], + [ 9.6100155, 46.5797625 ], + [ 9.6098284, 46.5798201 ], + [ 9.609646, 46.5798845 ], + [ 9.6094687, 46.5799553 ], + [ 9.609297, 46.5800324 ], + [ 9.6091314, 46.5801156 ], + [ 9.6089724, 46.5802047 ], + [ 9.6088203, 46.5802994 ], + [ 9.6086756, 46.5803994 ], + [ 9.6085387, 46.5805046 ], + [ 9.60841, 46.5806145 ], + [ 9.6082898, 46.5807289 ], + [ 9.6081785, 46.5808475 ], + [ 9.6080763, 46.58097 ], + [ 9.6079835, 46.581096 ], + [ 9.6079005, 46.5812251 ], + [ 9.6078273, 46.5813571 ], + [ 9.6077643, 46.5814916 ], + [ 9.6077115, 46.5816281 ], + [ 9.6076692, 46.5817663 ], + [ 9.6076375, 46.5819059 ], + [ 9.6076164, 46.5820464 ], + [ 9.6076059, 46.5821875 ], + [ 9.6076062, 46.5823288 ], + [ 9.6076173, 46.5824699 ], + [ 9.607639, 46.5826104 ], + [ 9.6076713, 46.5827499 ], + [ 9.6077142, 46.5828881 ], + [ 9.6077676, 46.5830245 ], + [ 9.6078312, 46.5831588 ], + [ 9.6079049, 46.5832906 ], + [ 9.6079885, 46.5834196 ], + [ 9.6080818, 46.5835454 ], + [ 9.6081845, 46.5836677 ], + [ 9.6082964, 46.583786 ], + [ 9.6084171, 46.5839002 ], + [ 9.6085463, 46.5840099 ], + [ 9.608683599999999, 46.5841147 ], + [ 9.6088287, 46.5842145 ], + [ 9.6089812, 46.5843089 ], + [ 9.6091407, 46.5843976 ], + [ 9.6093066, 46.5844805 ], + [ 9.6094786, 46.5845573 ], + [ 9.6096563, 46.5846277 ], + [ 9.609839000000001, 46.5846917 ], + [ 9.6100263, 46.584749 ], + [ 9.6102177, 46.5847994 ], + [ 9.6104127, 46.5848429 ], + [ 9.6106107, 46.5848792 ], + [ 9.6108112, 46.5849084 ], + [ 9.6110137, 46.5849303 ], + [ 9.6112175, 46.5849448 ], + [ 9.6114222, 46.584952 ], + [ 9.6116271, 46.5849518 ], + [ 9.6118317, 46.5849442 ], + [ 9.6120355, 46.5849292 ], + [ 9.612237799999999, 46.5849069 ], + [ 9.6124382, 46.5848773 ], + [ 9.6126361, 46.5848405 ], + [ 9.6128309, 46.5847967 ], + [ 9.6130221, 46.5847458 ], + [ 9.6132091, 46.5846882 ], + [ 9.6133916, 46.5846238 ], + [ 9.6135689, 46.584553 ], + [ 9.6137406, 46.5844759 ], + [ 9.6139062, 46.5843926 ], + [ 9.6140652, 46.5843036 ], + [ 9.6142173, 46.5842088 ], + [ 9.614362, 46.5841088 ], + [ 9.6144988, 46.5840036 ], + [ 9.6146276, 46.5838937 ], + [ 9.6147477, 46.5837793 ], + [ 9.6148591, 46.5836607 ], + [ 9.6149613, 46.5835382 ], + [ 9.615054, 46.5834122 ], + [ 9.6151371, 46.583283 ], + [ 9.6152102, 46.5831511 ], + [ 9.6152732, 46.5830166 ], + [ 9.6153259, 46.5828801 ], + [ 9.6153682, 46.5827419 ], + [ 9.6154, 46.5826023 ], + [ 9.6154211, 46.5824617 ], + [ 9.6154315, 46.5823206 ], + [ 9.6154311, 46.5821793 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0120", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Tinzen", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Tinzen", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Tinzen", + "lang" : "it-CH" + }, + { + "text" : "Substation Tinzen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.850687, 47.4415627 ], + [ 7.850754, 47.4413137 ], + [ 7.8510959, 47.4409046 ], + [ 7.8512051, 47.4406349 ], + [ 7.851207, 47.4405202 ], + [ 7.8507339, 47.4404007 ], + [ 7.8505939, 47.4403348 ], + [ 7.8504117, 47.4405868 ], + [ 7.8502244, 47.4408497 ], + [ 7.850047, 47.4410956 ], + [ 7.8497091999999995, 47.4410083 ], + [ 7.8493877, 47.4412622 ], + [ 7.8490632, 47.4415163 ], + [ 7.8488933, 47.4417566 ], + [ 7.84863, 47.4419711 ], + [ 7.8490718, 47.4420608 ], + [ 7.8493276, 47.4417547 ], + [ 7.8496087, 47.4414973 ], + [ 7.8498466, 47.441449 ], + [ 7.8503771, 47.4414901 ], + [ 7.850687, 47.4415627 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns066", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Rebhalde - Rehhag", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Rebhalde - Rehhag", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Rebhalde - Rehhag", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Rebhalde - Rehhag", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.378749, 46.2227792 ], + [ 7.3787439, 46.222638 ], + [ 7.3787281, 46.2224971 ], + [ 7.3787017, 46.222357 ], + [ 7.3786647, 46.2222181 ], + [ 7.3786173, 46.2220807 ], + [ 7.3785597, 46.2219452 ], + [ 7.3784919, 46.221812 ], + [ 7.3784141, 46.2216814 ], + [ 7.3783266, 46.2215538 ], + [ 7.3782297, 46.2214296 ], + [ 7.3781234, 46.2213091 ], + [ 7.3780083, 46.2211926 ], + [ 7.3778845, 46.2210804 ], + [ 7.3777524, 46.2209729 ], + [ 7.3776124, 46.2208703 ], + [ 7.3774649, 46.220773 ], + [ 7.3773102, 46.2206812 ], + [ 7.3771488, 46.2205951 ], + [ 7.3769812, 46.2205149 ], + [ 7.3768077, 46.220441 ], + [ 7.3766289, 46.2203735 ], + [ 7.3764452, 46.2203126 ], + [ 7.3762571999999995, 46.2202584 ], + [ 7.3760654, 46.2202111 ], + [ 7.3758703, 46.2201709 ], + [ 7.3756724, 46.2201378 ], + [ 7.3754723, 46.2201119 ], + [ 7.3752705, 46.2200934 ], + [ 7.3750676, 46.2200822 ], + [ 7.3748642, 46.2200784 ], + [ 7.3746607, 46.220082 ], + [ 7.3744577, 46.2200929 ], + [ 7.3742559, 46.2201112 ], + [ 7.3740556999999995, 46.2201369 ], + [ 7.3738578, 46.2201697 ], + [ 7.3736626, 46.2202098 ], + [ 7.3734706, 46.2202568 ], + [ 7.3732825, 46.2203108 ], + [ 7.3730987, 46.2203715 ], + [ 7.3729198, 46.2204388 ], + [ 7.3727461, 46.2205125 ], + [ 7.3725783, 46.2205924 ], + [ 7.3724167, 46.2206784 ], + [ 7.3722618, 46.22077 ], + [ 7.372114, 46.2208672 ], + [ 7.3719738, 46.2209696 ], + [ 7.3718414, 46.2210769 ], + [ 7.3717174, 46.221189 ], + [ 7.371602, 46.2213053 ], + [ 7.3714954, 46.2214257 ], + [ 7.3713982, 46.2215498 ], + [ 7.3713104, 46.2216773 ], + [ 7.3712323, 46.2218078 ], + [ 7.3711642, 46.2219409 ], + [ 7.3711062, 46.2220764 ], + [ 7.3710585, 46.2222137 ], + [ 7.3710213, 46.2223526 ], + [ 7.3709945, 46.2224927 ], + [ 7.3709784, 46.2226335 ], + [ 7.3709729, 46.2227748 ], + [ 7.370978, 46.222916 ], + [ 7.3709938, 46.2230569 ], + [ 7.3710202, 46.2231969 ], + [ 7.3710571, 46.2233359 ], + [ 7.3711045, 46.2234733 ], + [ 7.3711621, 46.2236088 ], + [ 7.3712299, 46.223742 ], + [ 7.3713076, 46.2238726 ], + [ 7.3713951, 46.2240002 ], + [ 7.3714921, 46.2241244 ], + [ 7.3715983, 46.2242449 ], + [ 7.3717134, 46.2243614 ], + [ 7.3718372, 46.2244736 ], + [ 7.3719693, 46.2245811 ], + [ 7.3721093, 46.2246837 ], + [ 7.3722568, 46.224781 ], + [ 7.3724115, 46.2248729 ], + [ 7.3725729, 46.224959 ], + [ 7.3727406, 46.2250391 ], + [ 7.372914, 46.225113 ], + [ 7.3730929, 46.2251806 ], + [ 7.3732765, 46.2252415 ], + [ 7.3734645, 46.2252957 ], + [ 7.3736564, 46.2253429 ], + [ 7.3738515, 46.2253832 ], + [ 7.3740494, 46.2254163 ], + [ 7.3742495, 46.2254422 ], + [ 7.3744513, 46.2254607 ], + [ 7.3746542, 46.2254719 ], + [ 7.3748577, 46.2254757 ], + [ 7.3750612, 46.2254721 ], + [ 7.3752642, 46.2254612 ], + [ 7.375466, 46.2254429 ], + [ 7.3756662, 46.2254172 ], + [ 7.3758642, 46.2253843 ], + [ 7.3760594, 46.2253443 ], + [ 7.3762514, 46.2252973 ], + [ 7.3764395, 46.2252433 ], + [ 7.3766233, 46.2251826 ], + [ 7.3768023, 46.2251153 ], + [ 7.376976, 46.2250415 ], + [ 7.3771438, 46.2249616 ], + [ 7.3773054, 46.2248757 ], + [ 7.3774603, 46.224784 ], + [ 7.3776081, 46.2246868 ], + [ 7.3777483, 46.2245844 ], + [ 7.3778806, 46.2244771 ], + [ 7.3780047, 46.2243651 ], + [ 7.3781201, 46.2242487 ], + [ 7.3782266, 46.2241283 ], + [ 7.3783239, 46.2240042 ], + [ 7.3784117, 46.2238767 ], + [ 7.3784897, 46.2237462 ], + [ 7.3785578, 46.223613 ], + [ 7.3786158, 46.2234776 ], + [ 7.3786634, 46.2233403 ], + [ 7.3787007, 46.2232013 ], + [ 7.3787274, 46.2230613 ], + [ 7.3787436, 46.2229204 ], + [ 7.378749, 46.2227792 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0025", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Chandoline", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Chandoline", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Chandoline", + "lang" : "it-CH" + }, + { + "text" : "Substation Chandoline", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.1139599, 46.6966657 ], + [ 8.0888166, 46.6986557 ], + [ 8.0854277, 46.6989855 ], + [ 8.0820686, 46.6994368 ], + [ 8.0787483, 46.7000083 ], + [ 8.075476, 46.7006985 ], + [ 8.0722606, 46.7015055 ], + [ 8.0691109, 46.7024271 ], + [ 8.0660354, 46.7034607 ], + [ 8.0630427, 46.7046036 ], + [ 8.060141, 46.7058526 ], + [ 8.057338, 46.7072043 ], + [ 8.0546416, 46.7086549 ], + [ 8.0520592, 46.7102006 ], + [ 8.0495977, 46.7118371 ], + [ 8.0472639, 46.7135599 ], + [ 8.0450643, 46.7153643 ], + [ 8.0430049, 46.7172454 ], + [ 8.0410912, 46.719198 ], + [ 8.0393287, 46.7212168 ], + [ 8.0377221, 46.7232962 ], + [ 8.0362758, 46.7254306 ], + [ 8.0349938, 46.7276141 ], + [ 8.0338796, 46.7298407 ], + [ 8.0329364, 46.7321044 ], + [ 8.0321667, 46.7343989 ], + [ 8.0315727, 46.7367179 ], + [ 8.0311559, 46.7390551 ], + [ 8.0309176, 46.7414042 ], + [ 8.0308585, 46.7437585 ], + [ 8.0309787, 46.7461118 ], + [ 8.0312779, 46.7484576 ], + [ 8.0317553, 46.7507893 ], + [ 8.0324097, 46.7531007 ], + [ 8.0332392, 46.7553854 ], + [ 8.0342417, 46.757637 ], + [ 8.0354144, 46.7598496 ], + [ 8.036754, 46.7620169 ], + [ 8.038257, 46.764133 ], + [ 8.0399192, 46.7661922 ], + [ 8.0417361, 46.7681887 ], + [ 8.0437027, 46.7701171 ], + [ 8.0458136, 46.7719721 ], + [ 8.0480631, 46.7737487 ], + [ 8.050445, 46.7754418 ], + [ 8.0529527, 46.777047 ], + [ 8.0555795, 46.7785597 ], + [ 8.058318, 46.7799758 ], + [ 8.0611608, 46.7812915 ], + [ 8.0641001, 46.782503 ], + [ 8.0671278, 46.7836072 ], + [ 8.0702355, 46.7846009 ], + [ 8.0734149, 46.7854815 ], + [ 8.076657, 46.7862464 ], + [ 8.0799531, 46.7868937 ], + [ 8.083294, 46.7874214 ], + [ 8.086670699999999, 46.7878283 ], + [ 8.0900737, 46.7881131 ], + [ 8.0934938, 46.7882751 ], + [ 8.0969216, 46.7883138 ], + [ 8.1003476, 46.7882292 ], + [ 8.1037625, 46.7880214 ], + [ 8.128947, 46.7860281 ], + [ 8.132341, 46.785697 ], + [ 8.1357051, 46.7852442 ], + [ 8.13903, 46.784671 ], + [ 8.1423066, 46.783979 ], + [ 8.145525899999999, 46.78317 ], + [ 8.1486791, 46.7822463 ], + [ 8.1517574, 46.7812105 ], + [ 8.1547525, 46.7800653 ], + [ 8.1576561, 46.7788139 ], + [ 8.1604602, 46.7774598 ], + [ 8.1631572, 46.7760066 ], + [ 8.1657396, 46.7744584 ], + [ 8.1682005, 46.7728195 ], + [ 8.1705329, 46.7710942 ], + [ 8.1727306, 46.7692874 ], + [ 8.1747875, 46.767404 ], + [ 8.176698, 46.7654491 ], + [ 8.1784568, 46.7634282 ], + [ 8.1800592, 46.7613469 ], + [ 8.1815008, 46.7592107 ], + [ 8.1827776, 46.7570255 ], + [ 8.1838861, 46.7547975 ], + [ 8.1848234, 46.7525326 ], + [ 8.1855869, 46.7502371 ], + [ 8.1861744, 46.7479172 ], + [ 8.1865845, 46.7455794 ], + [ 8.1868161, 46.7432301 ], + [ 8.1868684, 46.7408756 ], + [ 8.1867414, 46.7385225 ], + [ 8.1864355, 46.7361772 ], + [ 8.1859515, 46.7338461 ], + [ 8.1852907, 46.7315356 ], + [ 8.1844551, 46.729252 ], + [ 8.1834469, 46.7270016 ], + [ 8.1822689, 46.7247906 ], + [ 8.1809244, 46.722625 ], + [ 8.1794169, 46.7205108 ], + [ 8.1777508, 46.7184536 ], + [ 8.1759306, 46.7164593 ], + [ 8.1739612, 46.7145331 ], + [ 8.1718481, 46.7126805 ], + [ 8.1695971, 46.7109064 ], + [ 8.1672143, 46.7092157 ], + [ 8.1647063, 46.707613 ], + [ 8.16208, 46.7061028 ], + [ 8.1593424, 46.7046892 ], + [ 8.1565013, 46.703376 ], + [ 8.1535643, 46.7021668 ], + [ 8.1505394, 46.7010649 ], + [ 8.1474349, 46.7000733 ], + [ 8.1442595, 46.6991948 ], + [ 8.1410216, 46.6984318 ], + [ 8.1377302, 46.6977863 ], + [ 8.1343942, 46.6972601 ], + [ 8.1310229, 46.6968547 ], + [ 8.1276254, 46.6965711 ], + [ 8.124211, 46.6964101 ], + [ 8.120789, 46.6963722 ], + [ 8.1173689, 46.6964574 ], + [ 8.1139599, 46.6966657 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSMM-01", + "country" : "CHE", + "name" : [ + { + "text" : "LSMM Meiringen", + "lang" : "de-CH" + }, + { + "text" : "LSMM Meiringen", + "lang" : "fr-CH" + }, + { + "text" : "LSMM Meiringen", + "lang" : "it-CH" + }, + { + "text" : "LSMM Meiringen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Special Flight Office (SFO)", + "lang" : "de-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "fr-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "it-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "en-GB" + } + ], + "siteURL" : "https://skyguide.ch/services/special-flights", + "email" : "specialflight@skyguide.ch", + "phone" : "0041439316236", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 5.9662517, 46.1392252 ], + [ 5.9658548, 46.1399095 ], + [ 5.9661209, 46.1402467 ], + [ 5.9670065999999995, 46.1408257 ], + [ 5.9670955, 46.1408677 ], + [ 5.9684892, 46.1412787 ], + [ 5.9700031, 46.1412878 ], + [ 5.9701497, 46.1412466 ], + [ 5.9702363, 46.1418797 ], + [ 5.9709022, 46.142753 ], + [ 5.9709129999999995, 46.1428526 ], + [ 5.9714441, 46.1436895 ], + [ 5.9716585, 46.1438476 ], + [ 5.971709, 46.1439284 ], + [ 5.9726372, 46.1446084 ], + [ 5.9738441, 46.1450267 ], + [ 5.975184, 46.1451328 ], + [ 5.9759268, 46.1451012 ], + [ 5.9766856, 46.1452511 ], + [ 5.9774977, 46.1453187 ], + [ 5.9788362, 46.1457953 ], + [ 5.9798541, 46.1460409 ], + [ 5.9809299, 46.1460826 ], + [ 5.9819807, 46.1459172 ], + [ 5.9820975, 46.1458864 ], + [ 5.9822501, 46.1458812 ], + [ 5.9822494, 46.1458877 ], + [ 5.9825403, 46.1467127 ], + [ 5.9825536, 46.1467346 ], + [ 5.9834014, 46.147606 ], + [ 5.9846642, 46.1481859 ], + [ 5.98615, 46.1483861 ], + [ 5.9864265, 46.148347 ], + [ 5.9876643, 46.1482964 ], + [ 5.9890266, 46.1478376 ], + [ 5.990033, 46.1470516 ], + [ 5.9905304, 46.1460579 ], + [ 5.9905381, 46.1460196 ], + [ 5.9904506, 46.1449685 ], + [ 5.9897911, 46.1440205 ], + [ 5.9892205, 46.1436672 ], + [ 5.9891657, 46.1436951 ], + [ 5.9891290999999995, 46.1437474 ], + [ 5.9889794, 46.1438392 ], + [ 5.9889322, 46.1438419 ], + [ 5.9888638, 46.1438249 ], + [ 5.9888015, 46.1437812 ], + [ 5.9887407, 46.1436268 ], + [ 5.9886669, 46.1434852 ], + [ 5.988635, 46.1433805 ], + [ 5.9885839999999995, 46.1433048 ], + [ 5.9885757, 46.1432998 ], + [ 5.9884571, 46.1432711 ], + [ 5.9883941, 46.1432719 ], + [ 5.9882532, 46.1432943 ], + [ 5.9881174999999995, 46.1433278 ], + [ 5.9880005, 46.1433233 ], + [ 5.9878992, 46.1432878 ], + [ 5.9878397, 46.1431818 ], + [ 5.9877731999999995, 46.1431056 ], + [ 5.9872294, 46.142974 ], + [ 5.9871652, 46.1429678 ], + [ 5.9864289, 46.1429973 ], + [ 5.9864157, 46.1429955 ], + [ 5.9864223, 46.1429147 ], + [ 5.9863878, 46.1429094 ], + [ 5.9862643, 46.1428301 ], + [ 5.9861602, 46.1428059 ], + [ 5.9859534, 46.1428716 ], + [ 5.9857523, 46.1430684 ], + [ 5.9856099, 46.1432989 ], + [ 5.9855377999999995, 46.143368 ], + [ 5.9854807999999995, 46.1434095 ], + [ 5.9854472, 46.1434057 ], + [ 5.9852045, 46.143391 ], + [ 5.9850703, 46.1433341 ], + [ 5.9849236, 46.1433596 ], + [ 5.9846796, 46.1432831 ], + [ 5.9840304, 46.1432022 ], + [ 5.983845, 46.1431579 ], + [ 5.9837046, 46.1430757 ], + [ 5.9835442, 46.1430112 ], + [ 5.9835033, 46.1429889 ], + [ 5.9834923, 46.1429267 ], + [ 5.983392, 46.1428069 ], + [ 5.9833293, 46.1427204 ], + [ 5.9832154, 46.142607 ], + [ 5.9831216, 46.1425438 ], + [ 5.9830125, 46.1425173 ], + [ 5.9829227, 46.1424723 ], + [ 5.9827615, 46.1424072 ], + [ 5.9824458, 46.1422907 ], + [ 5.9823366, 46.1415446 ], + [ 5.9829267999999995, 46.1413182 ], + [ 5.9828675, 46.1410117 ], + [ 5.9826057, 46.1404044 ], + [ 5.9822005, 46.1386924 ], + [ 5.9819289, 46.1374076 ], + [ 5.9807109, 46.1365025 ], + [ 5.9796989, 46.1366838 ], + [ 5.9795756, 46.1366482 ], + [ 5.9783401, 46.1365855 ], + [ 5.9782997, 46.1365926 ], + [ 5.9781036, 46.1365382 ], + [ 5.9771794, 46.1364482 ], + [ 5.9751427, 46.1364218 ], + [ 5.9738931, 46.1365484 ], + [ 5.9736716, 46.1366269 ], + [ 5.9736709, 46.1366008 ], + [ 5.9736653, 46.1365897 ], + [ 5.9736613, 46.1365212 ], + [ 5.9732377, 46.135728 ], + [ 5.9724816, 46.1350649 ], + [ 5.9724573, 46.1350493 ], + [ 5.9711835, 46.134507 ], + [ 5.9697096, 46.1343392 ], + [ 5.9682536, 46.1345707 ], + [ 5.9670311, 46.1351672 ], + [ 5.9669383, 46.1352344 ], + [ 5.9661227, 46.1361209 ], + [ 5.9660076, 46.1365694 ], + [ 5.9658806, 46.1368934 ], + [ 5.9658923999999995, 46.137018 ], + [ 5.9658568, 46.1371568 ], + [ 5.965859, 46.1371635 ], + [ 5.9658563000000004, 46.1371735 ], + [ 5.965874, 46.1372348 ], + [ 5.9658368, 46.1372894 ], + [ 5.9661668, 46.1377488 ], + [ 5.9661691, 46.1377521 ], + [ 5.9661714, 46.1377553 ], + [ 5.9661737, 46.1377585 ], + [ 5.966176, 46.1377617 ], + [ 5.9661782, 46.137765 ], + [ 5.9661805, 46.1377682 ], + [ 5.9661827, 46.1377714 ], + [ 5.966185, 46.1377746 ], + [ 5.9661872, 46.1377779 ], + [ 5.9661894, 46.1377811 ], + [ 5.9661916, 46.1377844 ], + [ 5.9661938, 46.1377876 ], + [ 5.966196, 46.1377909 ], + [ 5.9661982, 46.1377941 ], + [ 5.9662004, 46.1377974 ], + [ 5.9662025, 46.1378007 ], + [ 5.9662047, 46.1378039 ], + [ 5.9662068, 46.1378072 ], + [ 5.966209, 46.1378104 ], + [ 5.9662111, 46.1378137 ], + [ 5.9662132, 46.137817 ], + [ 5.9662153, 46.1378203 ], + [ 5.9662174, 46.1378236 ], + [ 5.9662195, 46.1378268 ], + [ 5.9662216, 46.1378301 ], + [ 5.9662237, 46.1378334 ], + [ 5.9662257, 46.1378367 ], + [ 5.9662278, 46.13784 ], + [ 5.9662298, 46.1378433 ], + [ 5.9662318, 46.1378466 ], + [ 5.9662339, 46.1378499 ], + [ 5.9662359, 46.1378532 ], + [ 5.9662379, 46.1378565 ], + [ 5.9662399, 46.1378598 ], + [ 5.9662419, 46.1378632 ], + [ 5.9662438, 46.1378665 ], + [ 5.9662458, 46.1378698 ], + [ 5.9662478, 46.1378731 ], + [ 5.9662497, 46.1378765 ], + [ 5.9662516, 46.1378798 ], + [ 5.9662536, 46.1378831 ], + [ 5.9662555, 46.1378864 ], + [ 5.9662574, 46.1378898 ], + [ 5.9662593, 46.1378931 ], + [ 5.9662612, 46.1378965 ], + [ 5.966263, 46.1378998 ], + [ 5.9662649, 46.1379032 ], + [ 5.9662668, 46.1379065 ], + [ 5.9662686, 46.1379099 ], + [ 5.9662705, 46.1379132 ], + [ 5.9662723, 46.1379166 ], + [ 5.9662741, 46.1379199 ], + [ 5.9662759, 46.1379233 ], + [ 5.9662777, 46.1379267 ], + [ 5.9662795, 46.13793 ], + [ 5.9662813, 46.1379334 ], + [ 5.9662831, 46.1379368 ], + [ 5.9662849, 46.1379402 ], + [ 5.9662866, 46.1379435 ], + [ 5.9662883, 46.1379469 ], + [ 5.9662901, 46.1379503 ], + [ 5.9662918, 46.1379537 ], + [ 5.9662935, 46.1379571 ], + [ 5.9662952, 46.1379604 ], + [ 5.9662969, 46.1379638 ], + [ 5.9662986, 46.1379672 ], + [ 5.9663003, 46.1379706 ], + [ 5.9663018999999995, 46.137974 ], + [ 5.9663036, 46.1379774 ], + [ 5.9663052, 46.1379808 ], + [ 5.9663069, 46.1379842 ], + [ 5.9663085, 46.1379877 ], + [ 5.9663101, 46.1379911 ], + [ 5.9663117, 46.1379945 ], + [ 5.9663132999999995, 46.1379979 ], + [ 5.9663149, 46.1380013 ], + [ 5.9663165, 46.1380047 ], + [ 5.9663181, 46.1380081 ], + [ 5.9663196, 46.1380116 ], + [ 5.9663212, 46.138015 ], + [ 5.9663227, 46.1380184 ], + [ 5.9663242, 46.1380219 ], + [ 5.9663258, 46.1380253 ], + [ 5.9663273, 46.1380287 ], + [ 5.9663288, 46.1380322 ], + [ 5.9663302, 46.1380356 ], + [ 5.9663317, 46.138039 ], + [ 5.9663332, 46.1380425 ], + [ 5.9663347, 46.1380459 ], + [ 5.9663360999999995, 46.1380494 ], + [ 5.9663375, 46.1380528 ], + [ 5.966339, 46.1380563 ], + [ 5.9663404, 46.1380597 ], + [ 5.9663418, 46.1380632 ], + [ 5.9663432, 46.1380666 ], + [ 5.9663446, 46.1380701 ], + [ 5.966346, 46.1380736 ], + [ 5.9663474, 46.138077 ], + [ 5.9663487, 46.1380805 ], + [ 5.9663501, 46.1380839 ], + [ 5.9663514, 46.1380874 ], + [ 5.9663527, 46.1380909 ], + [ 5.9663541, 46.1380944 ], + [ 5.9663554, 46.1380978 ], + [ 5.9663567, 46.1381013 ], + [ 5.966358, 46.1381048 ], + [ 5.9663592, 46.1381083 ], + [ 5.9663605, 46.1381117 ], + [ 5.9663618, 46.1381152 ], + [ 5.966363, 46.1381187 ], + [ 5.9663643, 46.1381222 ], + [ 5.9663655, 46.1381257 ], + [ 5.9663667, 46.1381292 ], + [ 5.9663679, 46.1381327 ], + [ 5.9663691, 46.1381362 ], + [ 5.9663702999999995, 46.1381396 ], + [ 5.9663715, 46.1381431 ], + [ 5.9663727, 46.1381466 ], + [ 5.9663737999999995, 46.1381501 ], + [ 5.966375, 46.1381536 ], + [ 5.9663761, 46.1381571 ], + [ 5.9663772, 46.1381606 ], + [ 5.9663784, 46.1381642 ], + [ 5.9663795, 46.1381677 ], + [ 5.9663806, 46.1381712 ], + [ 5.9663817, 46.1381747 ], + [ 5.9663827, 46.1381782 ], + [ 5.9663838, 46.1381817 ], + [ 5.9663848999999995, 46.1381852 ], + [ 5.9663859, 46.1381887 ], + [ 5.966387, 46.1381923 ], + [ 5.966388, 46.1381958 ], + [ 5.9663889999999995, 46.1381993 ], + [ 5.9663900000000005, 46.1382028 ], + [ 5.966391, 46.1382063 ], + [ 5.966392, 46.1382099 ], + [ 5.966393, 46.1382134 ], + [ 5.966394, 46.1382169 ], + [ 5.9663949, 46.1382204 ], + [ 5.9663959, 46.138224 ], + [ 5.9663968, 46.1382275 ], + [ 5.9663977, 46.138231 ], + [ 5.9663986, 46.1382346 ], + [ 5.9663996, 46.1382381 ], + [ 5.9664005, 46.1382416 ], + [ 5.9664013, 46.1382452 ], + [ 5.9664022, 46.1382487 ], + [ 5.9664031, 46.1382523 ], + [ 5.9664038999999995, 46.1382558 ], + [ 5.9664048, 46.1382593 ], + [ 5.9664056, 46.1382629 ], + [ 5.9664065, 46.1382664 ], + [ 5.9664073, 46.13827 ], + [ 5.9664081, 46.1382735 ], + [ 5.9664089, 46.1382771 ], + [ 5.9664097, 46.1382806 ], + [ 5.9664104, 46.1382842 ], + [ 5.9664112, 46.1382877 ], + [ 5.966412, 46.1382913 ], + [ 5.9664127, 46.1382948 ], + [ 5.9664134, 46.1382984 ], + [ 5.9664142, 46.1383019 ], + [ 5.9664149, 46.1383055 ], + [ 5.9664155999999995, 46.1383091 ], + [ 5.9664163, 46.1383126 ], + [ 5.966417, 46.1383162 ], + [ 5.9664176, 46.1383197 ], + [ 5.9664183, 46.1383233 ], + [ 5.9664189, 46.1383269 ], + [ 5.9664196, 46.1383304 ], + [ 5.9664202, 46.138334 ], + [ 5.9664208, 46.1383375 ], + [ 5.9664215, 46.1383411 ], + [ 5.9664221, 46.1383447 ], + [ 5.9664226, 46.1383482 ], + [ 5.9664231999999995, 46.1383518 ], + [ 5.9664238, 46.1383554 ], + [ 5.9664244, 46.1383589 ], + [ 5.9664249, 46.1383625 ], + [ 5.9664255, 46.1383661 ], + [ 5.966426, 46.1383697 ], + [ 5.9664265, 46.1383732 ], + [ 5.9664269999999995, 46.1383768 ], + [ 5.9664275, 46.1383804 ], + [ 5.966428, 46.138384 ], + [ 5.9664285, 46.1383875 ], + [ 5.966429, 46.1383911 ], + [ 5.9664294, 46.1383947 ], + [ 5.9664299, 46.1383983 ], + [ 5.9664303, 46.1384018 ], + [ 5.9664307, 46.1384054 ], + [ 5.9664311, 46.138409 ], + [ 5.9664315, 46.1384126 ], + [ 5.9664319, 46.1384162 ], + [ 5.9664323, 46.1384197 ], + [ 5.9664327, 46.1384233 ], + [ 5.9664331, 46.1384269 ], + [ 5.9664334, 46.1384305 ], + [ 5.9664338, 46.1384341 ], + [ 5.9664341, 46.1384377 ], + [ 5.9664344, 46.1384412 ], + [ 5.9664348, 46.1384448 ], + [ 5.9664351, 46.1384484 ], + [ 5.9664353, 46.138452 ], + [ 5.9664356, 46.1384556 ], + [ 5.9664359, 46.1384592 ], + [ 5.9664362, 46.1384627 ], + [ 5.9664364, 46.1384663 ], + [ 5.9664367, 46.1384699 ], + [ 5.9664369, 46.1384735 ], + [ 5.9664371, 46.1384771 ], + [ 5.9664373, 46.1384807 ], + [ 5.9664375, 46.1384843 ], + [ 5.9664377, 46.1384879 ], + [ 5.9664379, 46.1384914 ], + [ 5.9664380999999995, 46.138495 ], + [ 5.9664382, 46.1384986 ], + [ 5.9664383999999995, 46.1385022 ], + [ 5.9664385, 46.1385058 ], + [ 5.9664386, 46.1385094 ], + [ 5.9664388, 46.138513 ], + [ 5.9664389, 46.1385166 ], + [ 5.966439, 46.1385202 ], + [ 5.9664391, 46.1385238 ], + [ 5.9664391, 46.1385274 ], + [ 5.9664392, 46.1385309 ], + [ 5.9664393, 46.1385345 ], + [ 5.9664393, 46.1385381 ], + [ 5.9664393, 46.1385417 ], + [ 5.9664394, 46.1385453 ], + [ 5.9664394, 46.1385489 ], + [ 5.9664394, 46.1385525 ], + [ 5.9664394, 46.1385561 ], + [ 5.9664394, 46.1385597 ], + [ 5.9664393, 46.1385633 ], + [ 5.9664393, 46.1385669 ], + [ 5.9664393, 46.1385704 ], + [ 5.9664392, 46.138574 ], + [ 5.9664391, 46.1385776 ], + [ 5.9664391, 46.1385812 ], + [ 5.966439, 46.1385848 ], + [ 5.9664389, 46.1385884 ], + [ 5.9664388, 46.138592 ], + [ 5.9664386, 46.1385956 ], + [ 5.9664385, 46.1385992 ], + [ 5.9664383999999995, 46.1386027 ], + [ 5.9664382, 46.1386063 ], + [ 5.9664380999999995, 46.1386099 ], + [ 5.9664379, 46.1386135 ], + [ 5.9664377, 46.1386171 ], + [ 5.9664375, 46.1386207 ], + [ 5.9664373, 46.1386243 ], + [ 5.9664371, 46.1386279 ], + [ 5.9664369, 46.1386315 ], + [ 5.9664367, 46.138635 ], + [ 5.9664364, 46.1386386 ], + [ 5.9664362, 46.1386422 ], + [ 5.9664359, 46.1386458 ], + [ 5.9664356, 46.1386494 ], + [ 5.9664353, 46.138653 ], + [ 5.9664351, 46.1386566 ], + [ 5.9664348, 46.1386601 ], + [ 5.9664344, 46.1386637 ], + [ 5.9664341, 46.1386673 ], + [ 5.9664338, 46.1386709 ], + [ 5.9664334, 46.1386745 ], + [ 5.9664331, 46.1386781 ], + [ 5.9664327, 46.1386816 ], + [ 5.9664323, 46.1386852 ], + [ 5.966432, 46.1386888 ], + [ 5.9664316, 46.1386924 ], + [ 5.9664311, 46.138696 ], + [ 5.9664307, 46.1386995 ], + [ 5.9664303, 46.1387031 ], + [ 5.9664299, 46.1387067 ], + [ 5.9664294, 46.1387103 ], + [ 5.966429, 46.1387139 ], + [ 5.9664285, 46.1387174 ], + [ 5.966428, 46.138721 ], + [ 5.9664275, 46.1387246 ], + [ 5.9664269999999995, 46.1387282 ], + [ 5.9664265, 46.1387317 ], + [ 5.966426, 46.1387353 ], + [ 5.9664255, 46.1387389 ], + [ 5.9664249, 46.1387424 ], + [ 5.9664244, 46.138746 ], + [ 5.9664238, 46.1387496 ], + [ 5.9664231999999995, 46.1387532 ], + [ 5.9664227, 46.1387567 ], + [ 5.9664221, 46.1387603 ], + [ 5.9664215, 46.1387639 ], + [ 5.9664209, 46.1387674 ], + [ 5.9664202, 46.138771 ], + [ 5.9664196, 46.1387746 ], + [ 5.966419, 46.1387781 ], + [ 5.9664183, 46.1387817 ], + [ 5.9664177, 46.1387852 ], + [ 5.966417, 46.1387888 ], + [ 5.9664163, 46.1387924 ], + [ 5.9664155999999995, 46.1387959 ], + [ 5.9664149, 46.1387995 ], + [ 5.9664142, 46.138803 ], + [ 5.9664135, 46.1388066 ], + [ 5.9664127, 46.1388101 ], + [ 5.966412, 46.1388137 ], + [ 5.9664112, 46.1388173 ], + [ 5.9664105, 46.1388208 ], + [ 5.9664097, 46.1388243 ], + [ 5.9664089, 46.1388279 ], + [ 5.9664081, 46.1388314 ], + [ 5.9664073, 46.138835 ], + [ 5.9664065, 46.1388385 ], + [ 5.9664057, 46.1388421 ], + [ 5.9664048, 46.1388456 ], + [ 5.966404, 46.1388492 ], + [ 5.9664031, 46.1388527 ], + [ 5.9664022, 46.1388563 ], + [ 5.9664014, 46.1388598 ], + [ 5.9664005, 46.1388633 ], + [ 5.9663996, 46.1388669 ], + [ 5.9663987, 46.1388704 ], + [ 5.9663978, 46.1388739 ], + [ 5.9663968, 46.1388775 ], + [ 5.9663959, 46.138881 ], + [ 5.9663949, 46.1388845 ], + [ 5.966394, 46.1388881 ], + [ 5.966393, 46.1388916 ], + [ 5.966392, 46.1388951 ], + [ 5.966391, 46.1388986 ], + [ 5.9663901, 46.1389022 ], + [ 5.9663889999999995, 46.1389057 ], + [ 5.966388, 46.1389092 ], + [ 5.966387, 46.1389127 ], + [ 5.966386, 46.1389162 ], + [ 5.9663848999999995, 46.1389198 ], + [ 5.9663838, 46.1389233 ], + [ 5.9663828, 46.1389268 ], + [ 5.9663817, 46.1389303 ], + [ 5.9663806, 46.1389338 ], + [ 5.9663795, 46.1389373 ], + [ 5.9663784, 46.1389408 ], + [ 5.9663772999999996, 46.1389443 ], + [ 5.9663762, 46.1389478 ], + [ 5.966375, 46.1389513 ], + [ 5.9663739, 46.1389548 ], + [ 5.9663727, 46.1389583 ], + [ 5.9663715, 46.1389618 ], + [ 5.9663702999999995, 46.1389653 ], + [ 5.9663692, 46.1389688 ], + [ 5.966368, 46.1389723 ], + [ 5.9663667, 46.1389758 ], + [ 5.9663655, 46.1389793 ], + [ 5.9663643, 46.1389828 ], + [ 5.9663631, 46.1389863 ], + [ 5.9663618, 46.1389897 ], + [ 5.9663605, 46.1389932 ], + [ 5.9663593, 46.1389967 ], + [ 5.966358, 46.1390002 ], + [ 5.9663567, 46.1390037 ], + [ 5.9663554, 46.1390071 ], + [ 5.9663541, 46.1390106 ], + [ 5.9663528, 46.1390141 ], + [ 5.9663514, 46.1390176 ], + [ 5.9663501, 46.139021 ], + [ 5.9663487, 46.1390245 ], + [ 5.9663474, 46.139028 ], + [ 5.966346, 46.1390314 ], + [ 5.9663446, 46.1390349 ], + [ 5.9663432, 46.1390383 ], + [ 5.9663418, 46.1390418 ], + [ 5.9663404, 46.1390453 ], + [ 5.966339, 46.1390487 ], + [ 5.9663376, 46.1390522 ], + [ 5.9663362, 46.1390556 ], + [ 5.9663347, 46.1390591 ], + [ 5.9663333, 46.1390625 ], + [ 5.9663318, 46.1390659 ], + [ 5.9663303, 46.1390694 ], + [ 5.9663288, 46.1390728 ], + [ 5.9663273, 46.1390762 ], + [ 5.9663258, 46.1390797 ], + [ 5.9663243, 46.1390831 ], + [ 5.9663228, 46.1390866 ], + [ 5.9663212, 46.13909 ], + [ 5.9663197, 46.1390934 ], + [ 5.9663181, 46.1390968 ], + [ 5.9663165, 46.1391002 ], + [ 5.966315, 46.1391037 ], + [ 5.9663134, 46.1391071 ], + [ 5.9663118, 46.1391105 ], + [ 5.9663102, 46.1391139 ], + [ 5.9663086, 46.1391173 ], + [ 5.9663069, 46.1391207 ], + [ 5.9663053, 46.1391241 ], + [ 5.9663037, 46.1391275 ], + [ 5.966302, 46.1391309 ], + [ 5.9663003, 46.1391343 ], + [ 5.9662987, 46.1391377 ], + [ 5.966297, 46.1391411 ], + [ 5.9662953, 46.1391445 ], + [ 5.9662936, 46.1391479 ], + [ 5.9662919, 46.1391513 ], + [ 5.9662901, 46.1391547 ], + [ 5.9662884, 46.1391581 ], + [ 5.9662866, 46.1391614 ], + [ 5.9662849, 46.1391648 ], + [ 5.9662831, 46.1391682 ], + [ 5.9662814, 46.1391716 ], + [ 5.9662796, 46.1391749 ], + [ 5.9662778, 46.1391783 ], + [ 5.966276, 46.1391817 ], + [ 5.9662742, 46.139185 ], + [ 5.9662724, 46.1391884 ], + [ 5.9662705, 46.1391918 ], + [ 5.9662687, 46.1391951 ], + [ 5.9662668, 46.1391985 ], + [ 5.966265, 46.1392018 ], + [ 5.9662631, 46.1392052 ], + [ 5.9662612, 46.1392085 ], + [ 5.9662593, 46.1392119 ], + [ 5.9662574, 46.1392152 ], + [ 5.9662555, 46.1392185 ], + [ 5.9662536, 46.1392219 ], + [ 5.9662517, 46.1392252 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-6", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.4947061999999995, 46.8160666 ], + [ 6.4944491, 46.8160702 ], + [ 6.4941928, 46.8160854 ], + [ 6.4939385, 46.8161121 ], + [ 6.4936873, 46.8161501 ], + [ 6.4934403, 46.8161993 ], + [ 6.4931984, 46.8162595 ], + [ 6.4929629, 46.8163305 ], + [ 6.4927346, 46.8164118 ], + [ 6.4925145, 46.8165033 ], + [ 6.4923036, 46.8166044 ], + [ 6.4921028, 46.8167148 ], + [ 6.4919129, 46.8168339 ], + [ 6.4917348, 46.8169613 ], + [ 6.4915692, 46.8170965 ], + [ 6.4914169, 46.8172388 ], + [ 6.4912784, 46.8173876 ], + [ 6.4911544, 46.8175423 ], + [ 6.4910454, 46.8177023 ], + [ 6.4910361, 46.8177174 ], + [ 6.49098, 46.8178088 ], + [ 6.4908958, 46.8179582 ], + [ 6.4908182, 46.8181265 ], + [ 6.4907567, 46.818298 ], + [ 6.4907118, 46.8184719 ], + [ 6.4906835, 46.8186474 ], + [ 6.4906719, 46.8188238 ], + [ 6.4906772, 46.8190003 ], + [ 6.4906993, 46.8191763 ], + [ 6.4907382, 46.8193509 ], + [ 6.4907936, 46.8195233 ], + [ 6.4908653, 46.8196929 ], + [ 6.490953, 46.8198589 ], + [ 6.4910563, 46.8200206 ], + [ 6.4911748, 46.8201774 ], + [ 6.491308, 46.8203285 ], + [ 6.4914553, 46.8204732 ], + [ 6.4916161, 46.8206111 ], + [ 6.4917897, 46.8207414 ], + [ 6.4919753, 46.8208637 ], + [ 6.4921721, 46.8209774 ], + [ 6.4923794, 46.8210819 ], + [ 6.4925962, 46.821177 ], + [ 6.4928216, 46.8212621 ], + [ 6.4930547, 46.8213369 ], + [ 6.4930597, 46.8213384 ], + [ 6.4931928, 46.8213774 ], + [ 6.4934275, 46.8214401 ], + [ 6.4936727, 46.8214934 ], + [ 6.4939225, 46.8215356 ], + [ 6.4941758, 46.8215665 ], + [ 6.4944315, 46.8215859 ], + [ 6.4946885, 46.8215938 ], + [ 6.4949457, 46.8215901 ], + [ 6.4952021, 46.821575 ], + [ 6.4954564, 46.8215483 ], + [ 6.4957076, 46.8215103 ], + [ 6.4959547, 46.821461 ], + [ 6.4961965, 46.8214008 ], + [ 6.4964321, 46.8213299 ], + [ 6.4966604, 46.8212485 ], + [ 6.4968805, 46.8211571 ], + [ 6.4970914, 46.821056 ], + [ 6.4972922, 46.8209456 ], + [ 6.4974821, 46.8208264 ], + [ 6.4976602, 46.820699 ], + [ 6.4978257, 46.8205638 ], + [ 6.4979781, 46.8204215 ], + [ 6.4981165, 46.8202727 ], + [ 6.4982405, 46.820118 ], + [ 6.4983403, 46.8199727 ], + [ 6.4983985, 46.8198809 ], + [ 6.4984078, 46.8198661 ], + [ 6.4985013, 46.8197016 ], + [ 6.4985789, 46.8195333 ], + [ 6.4986403, 46.8193618 ], + [ 6.4986853, 46.8191879 ], + [ 6.4987136, 46.8190124 ], + [ 6.4987251, 46.818836 ], + [ 6.4987197, 46.8186594 ], + [ 6.4986976, 46.8184835 ], + [ 6.4986587, 46.8183089 ], + [ 6.4986033, 46.8181365 ], + [ 6.4985316, 46.8179669 ], + [ 6.4984439, 46.8178009 ], + [ 6.4983406, 46.8176391 ], + [ 6.498222, 46.8174824 ], + [ 6.4980888, 46.8173313 ], + [ 6.4979415, 46.8171866 ], + [ 6.4977807, 46.8170487 ], + [ 6.4976071, 46.8169184 ], + [ 6.4974215, 46.8167962 ], + [ 6.4972246, 46.8166825 ], + [ 6.4970174, 46.8165779 ], + [ 6.4968006, 46.8164829 ], + [ 6.4965752, 46.8163978 ], + [ 6.4963422, 46.8163229 ], + [ 6.4962997, 46.8163107 ], + [ 6.4961644, 46.8162721 ], + [ 6.4959672, 46.8162202 ], + [ 6.495722, 46.816167 ], + [ 6.4954722, 46.8161248 ], + [ 6.4952189, 46.8160939 ], + [ 6.4949632, 46.8160745 ], + [ 6.4947061999999995, 46.8160666 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00036", + "country" : "CHE", + "name" : [ + { + "text" : "Hôpital régional RSBJ Ste-Croix", + "lang" : "de-CH" + }, + { + "text" : "Hôpital régional RSBJ Ste-Croix", + "lang" : "fr-CH" + }, + { + "text" : "Hôpital régional RSBJ Ste-Croix", + "lang" : "it-CH" + }, + { + "text" : "Hôpital régional RSBJ Ste-Croix", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kantonspolizei Waadt", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale vaudoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Vaud", + "lang" : "it-CH" + }, + { + "text" : "Vaud Cantonal Police", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.pcv@vd.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.2106537, 46.3673683 ], + [ 7.2106801, 46.3673667 ], + [ 7.2109114, 46.3673344 ], + [ 7.2111367, 46.3672728 ], + [ 7.2111774, 46.3672518 ], + [ 7.2111985, 46.3672336 ], + [ 7.2112058, 46.3672215 ], + [ 7.21121, 46.3671748 ], + [ 7.2111458, 46.3670118 ], + [ 7.2110256, 46.366838 ], + [ 7.210528, 46.3662162 ], + [ 7.2105163, 46.3662 ], + [ 7.210275, 46.36581 ], + [ 7.2102621, 46.3657821 ], + [ 7.2101414, 46.3654364 ], + [ 7.2101338, 46.3654004 ], + [ 7.2101220999999995, 46.3650784 ], + [ 7.2101725, 46.364859 ], + [ 7.210179, 46.364841 ], + [ 7.2099963, 46.3644205 ], + [ 7.208991, 46.3639948 ], + [ 7.2075705, 46.3637643 ], + [ 7.2069381, 46.3633546 ], + [ 7.2039226, 46.3629697 ], + [ 7.2007308, 46.3627813 ], + [ 7.1952919, 46.3624449 ], + [ 7.1945702, 46.3637135 ], + [ 7.1940175, 46.3643843 ], + [ 7.194589, 46.3644332 ], + [ 7.1965198, 46.3653388 ], + [ 7.1966829, 46.365483 ], + [ 7.1967585, 46.3657252 ], + [ 7.1970429, 46.3657636 ], + [ 7.1971513, 46.365923 ], + [ 7.197535, 46.3658555 ], + [ 7.1976434, 46.3660068 ], + [ 7.1978942, 46.3660074 ], + [ 7.1980585, 46.3661741 ], + [ 7.1986255, 46.3663724 ], + [ 7.198767, 46.3666911 ], + [ 7.1989958, 46.3666835 ], + [ 7.1994298, 46.3669705 ], + [ 7.1999574, 46.3669716 ], + [ 7.2007767, 46.3668276 ], + [ 7.201319, 46.366737 ], + [ 7.2035804, 46.3660652 ], + [ 7.2046423, 46.3657076 ], + [ 7.2047801, 46.3656935 ], + [ 7.2070177, 46.3657071 ], + [ 7.2091447, 46.3666821 ], + [ 7.2104107, 46.3672073 ], + [ 7.2106537, 46.3673683 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00012", + "country" : "CHE", + "name" : [ + { + "text" : "La Palette", + "lang" : "de-CH" + }, + { + "text" : "La Palette", + "lang" : "fr-CH" + }, + { + "text" : "La Palette", + "lang" : "it-CH" + }, + { + "text" : "La Palette", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "startDateTime" : "2024-11-15T00:00:00+01:00", + "endDateTime" : "2025-04-15T00:00:00+02:00" + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Generaldirektion für Umwelt", + "lang" : "de-CH" + }, + { + "text" : "Direction générale de l'environnement", + "lang" : "fr-CH" + }, + { + "text" : "Direzione generale dell'Ambiente", + "lang" : "it-CH" + }, + { + "text" : "Environment Department", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.dge@vd.ch", + "phone" : "0041213164422", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.1854249, 46.3752941 ], + [ 7.1854289, 46.3752904 ], + [ 7.1854442, 46.3752788 ], + [ 7.1854607999999995, 46.3752681 ], + [ 7.1854787, 46.3752585 ], + [ 7.1854978, 46.37525 ], + [ 7.1855178, 46.3752427 ], + [ 7.1855387, 46.3752366 ], + [ 7.1863519, 46.3750282 ], + [ 7.1863584, 46.3750266 ], + [ 7.1863649, 46.3750252 ], + [ 7.1863716, 46.3750238 ], + [ 7.1868489, 46.3749307 ], + [ 7.1868543, 46.3749296 ], + [ 7.1868598, 46.3749287 ], + [ 7.1868653, 46.3749278 ], + [ 7.1871929, 46.3748796 ], + [ 7.1872014, 46.3748785 ], + [ 7.1872099, 46.3748775 ], + [ 7.1872184, 46.3748768 ], + [ 7.1877387, 46.3748369 ], + [ 7.1877506, 46.3748361 ], + [ 7.1877625, 46.3748358 ], + [ 7.1877744, 46.3748358 ], + [ 7.1882506, 46.3748449 ], + [ 7.1882688, 46.3748457 ], + [ 7.188287, 46.3748473 ], + [ 7.1883049, 46.3748499 ], + [ 7.1886307, 46.3749047 ], + [ 7.1886515, 46.3749088 ], + [ 7.1886718, 46.3749142 ], + [ 7.1886913, 46.3749207 ], + [ 7.1889739, 46.3750246 ], + [ 7.1889888, 46.3750305 ], + [ 7.1890032, 46.3750372 ], + [ 7.1890169, 46.3750445 ], + [ 7.1894294, 46.3752791 ], + [ 7.1894362, 46.3752831 ], + [ 7.1894428, 46.3752873 ], + [ 7.1894492, 46.3752916 ], + [ 7.1900533, 46.3757142 ], + [ 7.1900583, 46.3757177 ], + [ 7.1900631, 46.3757214 ], + [ 7.1900678, 46.3757251 ], + [ 7.1911541, 46.3766223 ], + [ 7.191447, 46.3768362 ], + [ 7.1915568, 46.3768936 ], + [ 7.1915118, 46.3755632 ], + [ 7.1914465, 46.375071 ], + [ 7.1912185, 46.3734881 ], + [ 7.1908014, 46.3720515 ], + [ 7.1896634, 46.3708076 ], + [ 7.1882998, 46.3694939 ], + [ 7.1868265, 46.3691398 ], + [ 7.1817131, 46.3690824 ], + [ 7.1785351, 46.3697471 ], + [ 7.1762832, 46.3705047 ], + [ 7.1739247, 46.3704686 ], + [ 7.1729983, 46.3701642 ], + [ 7.1721342, 46.3698674 ], + [ 7.1711656, 46.3698 ], + [ 7.1707076, 46.3697881 ], + [ 7.1703034, 46.3697989 ], + [ 7.1699673, 46.3698314 ], + [ 7.1696621, 46.3698967 ], + [ 7.1694921, 46.3699688 ], + [ 7.1694378, 46.3700079 ], + [ 7.1694035, 46.3700462 ], + [ 7.1693584, 46.3701499 ], + [ 7.1693479, 46.3702775 ], + [ 7.1694213, 46.3708713 ], + [ 7.1694215, 46.370873 ], + [ 7.1694217, 46.3708748 ], + [ 7.1694219, 46.3708765 ], + [ 7.1694767, 46.3715536 ], + [ 7.1695552, 46.3718672 ], + [ 7.1696251, 46.3720018 ], + [ 7.1696818, 46.3720765 ], + [ 7.1698492, 46.37222 ], + [ 7.1699539, 46.3722811 ], + [ 7.1701528, 46.3723702 ], + [ 7.1712806, 46.3728078 ], + [ 7.1720343, 46.3730181 ], + [ 7.1720443, 46.3730211 ], + [ 7.1720542, 46.3730244 ], + [ 7.1720639, 46.3730279 ], + [ 7.1723195, 46.3731268 ], + [ 7.1723367, 46.3731341 ], + [ 7.1723531, 46.3731422 ], + [ 7.1723685, 46.3731513 ], + [ 7.1725139, 46.3732436 ], + [ 7.1725278, 46.3732531 ], + [ 7.1725406, 46.3732633 ], + [ 7.1725522999999995, 46.3732742 ], + [ 7.1726693, 46.3733919 ], + [ 7.1726803, 46.373404 ], + [ 7.1726899, 46.3734167 ], + [ 7.1726981, 46.3734298 ], + [ 7.1727867, 46.3735908 ], + [ 7.1727918, 46.373601 ], + [ 7.172796, 46.3736114 ], + [ 7.1727993, 46.373622 ], + [ 7.1728406, 46.3737759 ], + [ 7.1728429, 46.3737861 ], + [ 7.1728443, 46.3737964 ], + [ 7.1728449, 46.3738067 ], + [ 7.1728505, 46.3741594 ], + [ 7.1728503, 46.3741684 ], + [ 7.1728495, 46.3741773 ], + [ 7.172848, 46.3741862 ], + [ 7.1727758, 46.3745454 ], + [ 7.1727744, 46.3745516 ], + [ 7.1727727, 46.3745578 ], + [ 7.1727706, 46.374564 ], + [ 7.1727616, 46.3745893 ], + [ 7.1770157, 46.3740921 ], + [ 7.1782266, 46.3744457 ], + [ 7.17846, 46.3745641 ], + [ 7.1785568, 46.3746235 ], + [ 7.1785653, 46.3746261 ], + [ 7.1785866, 46.3746343 ], + [ 7.1786066, 46.3746439 ], + [ 7.1787295, 46.3747086 ], + [ 7.1787464, 46.3747183 ], + [ 7.178762, 46.3747289 ], + [ 7.1787762, 46.3747404 ], + [ 7.1787891, 46.3747527 ], + [ 7.1788004, 46.3747657 ], + [ 7.1788997, 46.3748918 ], + [ 7.178909, 46.3749047 ], + [ 7.1789167, 46.374918 ], + [ 7.1789228, 46.3749318 ], + [ 7.1789247, 46.3749376 ], + [ 7.1789577, 46.3749746 ], + [ 7.1791021, 46.3752779 ], + [ 7.1792273, 46.3755302 ], + [ 7.1801525, 46.3771965 ], + [ 7.1845502, 46.3751006 ], + [ 7.1854249, 46.3752941 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00015", + "country" : "CHE", + "name" : [ + { + "text" : "La Chaux", + "lang" : "de-CH" + }, + { + "text" : "La Chaux", + "lang" : "fr-CH" + }, + { + "text" : "La Chaux", + "lang" : "it-CH" + }, + { + "text" : "La Chaux", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "startDateTime" : "2024-11-15T00:00:00+01:00", + "endDateTime" : "2025-04-15T00:00:00+02:00" + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Generaldirektion für Umwelt", + "lang" : "de-CH" + }, + { + "text" : "Direction générale de l'environnement", + "lang" : "fr-CH" + }, + { + "text" : "Direzione generale dell'Ambiente", + "lang" : "it-CH" + }, + { + "text" : "Environment Department", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.dge@vd.ch", + "phone" : "0041213164422", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.8591938, 47.4398371 ], + [ 8.8403335, 47.4002105 ], + [ 8.8023122, 47.3202338 ], + [ 8.7799335, 47.2731049 ], + [ 8.6058108, 47.2873519 ], + [ 8.5430472, 47.3668102 ], + [ 8.5408185, 47.3969707 ], + [ 8.6994191, 47.474106 ], + [ 8.8591938, 47.4398371 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 120, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "CTR0004", + "country" : "CHE", + "name" : [ + { + "text" : "CTR DUEBENDORF", + "lang" : "de-CH" + }, + { + "text" : "CTR DUEBENDORF", + "lang" : "fr-CH" + }, + { + "text" : "CTR DUEBENDORF", + "lang" : "it-CH" + }, + { + "text" : "CTR DUEBENDORF", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only permitted from an altitude of 120 m above ground with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Skyguide Special Flight Office", + "lang" : "de-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "it-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "en-GB" + } + ], + "siteURL" : "https://skyguide.ch/services/special-flights", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5481833, 47.5247473 ], + [ 7.5483145, 47.5248631 ], + [ 7.549008, 47.52547 ], + [ 7.5490619, 47.5254744 ], + [ 7.5496832, 47.5251126 ], + [ 7.5499206, 47.5249676 ], + [ 7.5501651, 47.5248106 ], + [ 7.5505297, 47.5245657 ], + [ 7.5496205, 47.5238767 ], + [ 7.5481833, 47.5247473 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns082", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Ziegelei Oberwil", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Ziegelei Oberwil", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Ziegelei Oberwil", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Ziegelei Oberwil", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.1297227, 46.7667194 ], + [ 7.1297181, 46.7665782 ], + [ 7.1297028000000005, 46.7664373 ], + [ 7.1296767, 46.7662971 ], + [ 7.1296401, 46.7661581 ], + [ 7.1295929, 46.7660206 ], + [ 7.1295352, 46.765885 ], + [ 7.1294674, 46.7657516 ], + [ 7.1293894, 46.7656209 ], + [ 7.1293017, 46.7654931 ], + [ 7.1292043, 46.7653687 ], + [ 7.1290975, 46.7652479 ], + [ 7.1289817, 46.7651312 ], + [ 7.1288572, 46.7650188 ], + [ 7.1287243, 46.764911 ], + [ 7.1285834, 46.7648081 ], + [ 7.1284348, 46.7647104 ], + [ 7.128279, 46.7646182 ], + [ 7.1281164, 46.7645318 ], + [ 7.1279474, 46.7644513 ], + [ 7.1277725, 46.764377 ], + [ 7.1275922, 46.7643091 ], + [ 7.127407, 46.7642478 ], + [ 7.1272174, 46.7641932 ], + [ 7.1270238, 46.7641455 ], + [ 7.1268269, 46.7641048 ], + [ 7.1266272, 46.7640713 ], + [ 7.1264252, 46.764045 ], + [ 7.1262215, 46.764026 ], + [ 7.1260166, 46.7640143 ], + [ 7.1258111, 46.7640101 ], + [ 7.1256055, 46.7640132 ], + [ 7.1254005, 46.7640237 ], + [ 7.1251965, 46.7640416 ], + [ 7.1249942, 46.7640668 ], + [ 7.1247941, 46.7640992 ], + [ 7.1245967, 46.7641388 ], + [ 7.1244027, 46.7641854 ], + [ 7.1242124, 46.764239 ], + [ 7.1240265, 46.7642993 ], + [ 7.1238454, 46.7643662 ], + [ 7.1236696, 46.7644395 ], + [ 7.1234997, 46.7645191 ], + [ 7.1233361, 46.7646047 ], + [ 7.1231792, 46.764696 ], + [ 7.1230295, 46.7647928 ], + [ 7.1228874, 46.7648949 ], + [ 7.1227532, 46.765002 ], + [ 7.1226274, 46.7651137 ], + [ 7.1225103, 46.7652298 ], + [ 7.1224021, 46.76535 ], + [ 7.1223033, 46.7654739 ], + [ 7.122214, 46.7656011 ], + [ 7.1221346, 46.7657315 ], + [ 7.1220651, 46.7658644 ], + [ 7.122006, 46.7659997 ], + [ 7.1219572, 46.766137 ], + [ 7.1219189, 46.7662758 ], + [ 7.1218912, 46.7664158 ], + [ 7.1218742, 46.7665566 ], + [ 7.121868, 46.7666978 ], + [ 7.1218726, 46.7668391 ], + [ 7.1218879, 46.76698 ], + [ 7.1219139, 46.7671201 ], + [ 7.1219505, 46.7672591 ], + [ 7.1219977, 46.7673966 ], + [ 7.1220553, 46.7675323 ], + [ 7.1221232, 46.7676656 ], + [ 7.1222011, 46.7677964 ], + [ 7.1222889, 46.7679242 ], + [ 7.1223862, 46.7680486 ], + [ 7.122493, 46.7681694 ], + [ 7.1226087, 46.7682861 ], + [ 7.1227332, 46.7683985 ], + [ 7.1228662, 46.7685063 ], + [ 7.1230071, 46.7686092 ], + [ 7.1231557, 46.7687069 ], + [ 7.1233115, 46.7687991 ], + [ 7.1234741, 46.7688855 ], + [ 7.1236431, 46.768966 ], + [ 7.123818, 46.7690403 ], + [ 7.1239983, 46.7691082 ], + [ 7.1241835, 46.7691696 ], + [ 7.1243732, 46.7692242 ], + [ 7.1245667, 46.7692719 ], + [ 7.1247636, 46.7693125 ], + [ 7.1249634, 46.7693461 ], + [ 7.1251654, 46.7693724 ], + [ 7.1253692, 46.7693914 ], + [ 7.1255741, 46.769403 ], + [ 7.1257795999999995, 46.7694073 ], + [ 7.1259852, 46.7694042 ], + [ 7.1261902, 46.7693936 ], + [ 7.1263942, 46.7693758 ], + [ 7.1265965, 46.7693506 ], + [ 7.1267967, 46.7693181 ], + [ 7.126994, 46.7692785 ], + [ 7.1271881, 46.7692319 ], + [ 7.1273784, 46.7691784 ], + [ 7.1275644, 46.7691181 ], + [ 7.1277455, 46.7690511 ], + [ 7.1279212, 46.7689778 ], + [ 7.1280911, 46.7688982 ], + [ 7.1282548, 46.7688127 ], + [ 7.1284116, 46.7687213 ], + [ 7.1285614, 46.7686245 ], + [ 7.1287035, 46.7685224 ], + [ 7.1288376, 46.7684153 ], + [ 7.1289635, 46.7683036 ], + [ 7.1290806, 46.7681875 ], + [ 7.1291887, 46.7680673 ], + [ 7.1292875, 46.7679434 ], + [ 7.1293768, 46.7678161 ], + [ 7.1294562, 46.7676858 ], + [ 7.1295256, 46.7675528 ], + [ 7.1295848, 46.7674175 ], + [ 7.1296336, 46.7672803 ], + [ 7.1296719, 46.7671414 ], + [ 7.1296995, 46.7670014 ], + [ 7.1297165, 46.7668606 ], + [ 7.1297227, 46.7667194 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0053", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Hauterive", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Hauterive", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Hauterive", + "lang" : "it-CH" + }, + { + "text" : "Substation Hauterive", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.1886977, 47.0702175 ], + [ 7.1896559, 47.0696022 ], + [ 7.1903284, 47.0691919 ], + [ 7.1906138, 47.0690382 ], + [ 7.1907154, 47.0689641 ], + [ 7.1905145, 47.0687978 ], + [ 7.1903309, 47.0686487 ], + [ 7.1901138, 47.0684596 ], + [ 7.1898887, 47.0681903 ], + [ 7.1897299, 47.0680183 ], + [ 7.1896559, 47.0678352 ], + [ 7.1896069, 47.0675779 ], + [ 7.1895741, 47.0673661 ], + [ 7.1894576, 47.0671257 ], + [ 7.1892327, 47.0668335 ], + [ 7.1890497, 47.066553 ], + [ 7.1888164, 47.066295 ], + [ 7.1886495, 47.0661003 ], + [ 7.1884907, 47.0659227 ], + [ 7.1883827, 47.0657909 ], + [ 7.188199, 47.0656647 ], + [ 7.1880152, 47.0655613 ], + [ 7.1878315, 47.065418 ], + [ 7.1876226, 47.0652401 ], + [ 7.1873975, 47.0649823 ], + [ 7.1871551, 47.0647531 ], + [ 7.1868797, 47.0645179 ], + [ 7.1864289, 47.0641624 ], + [ 7.1860115, 47.0638756 ], + [ 7.1856604, 47.0636574 ], + [ 7.1851919, 47.0633875 ], + [ 7.1848498, 47.0631808 ], + [ 7.1844073999999996, 47.0627853 ], + [ 7.1839975, 47.0624699 ], + [ 7.1837465, 47.0624749 ], + [ 7.1835527, 47.0625888 ], + [ 7.1833931, 47.0627485 ], + [ 7.1832164, 47.0628739 ], + [ 7.1830485, 47.0628964 ], + [ 7.1827317, 47.0625697 ], + [ 7.1824569, 47.062226 ], + [ 7.1821738, 47.0617164 ], + [ 7.1819328, 47.0613671 ], + [ 7.1817238, 47.0612007 ], + [ 7.1814817, 47.0610858 ], + [ 7.1812304, 47.0609937 ], + [ 7.1806516, 47.0610724 ], + [ 7.1798716, 47.0612591 ], + [ 7.1796031, 47.0613213 ], + [ 7.1791673, 47.0612803 ], + [ 7.1787321, 47.0612622 ], + [ 7.1786674, 47.0607073 ], + [ 7.1786695, 47.0602785 ], + [ 7.1786639, 47.0597239 ], + [ 7.1784786, 47.059935 ], + [ 7.1776594, 47.0594069 ], + [ 7.1774512, 47.0592462 ], + [ 7.1784176, 47.0586082 ], + [ 7.1782841, 47.0584878 ], + [ 7.1778078, 47.0581436 ], + [ 7.1774822, 47.0579597 ], + [ 7.1769895, 47.0575984 ], + [ 7.1764714, 47.0572197 ], + [ 7.1759625, 47.0568182 ], + [ 7.175628, 47.0565887 ], + [ 7.1752031, 47.0561816 ], + [ 7.1749444, 47.0559237 ], + [ 7.1747108, 47.0557515 ], + [ 7.1745356, 47.0555795 ], + [ 7.1742765, 47.0554188 ], + [ 7.1737752, 47.055143 ], + [ 7.1730729, 47.0547639 ], + [ 7.1724206, 47.0544421 ], + [ 7.1717773, 47.0541089 ], + [ 7.1711587, 47.0537813 ], + [ 7.1706928, 47.0535202 ], + [ 7.1698327, 47.0540983 ], + [ 7.1694289, 47.054406 ], + [ 7.1681913999999995, 47.0556038 ], + [ 7.1672146, 47.0566534 ], + [ 7.1664308, 47.0574234 ], + [ 7.1660855, 47.0578685 ], + [ 7.1658482, 47.0582625 ], + [ 7.1657962, 47.0586168 ], + [ 7.1659374, 47.0589945 ], + [ 7.1665789, 47.059671 ], + [ 7.1676213, 47.0608114 ], + [ 7.1686628, 47.0619463 ], + [ 7.1694294, 47.0628059 ], + [ 7.1700044, 47.0634821 ], + [ 7.1703297, 47.0639117 ], + [ 7.1704288, 47.0641693 ], + [ 7.1705772, 47.0645986 ], + [ 7.1707838, 47.0652222 ], + [ 7.1708999, 47.065537 ], + [ 7.1712994, 47.0661041 ], + [ 7.1718575, 47.0667231 ], + [ 7.1725587, 47.0673367 ], + [ 7.1731604, 47.0678013 ], + [ 7.1737784, 47.0682832 ], + [ 7.1743035, 47.0687362 ], + [ 7.1747459, 47.0691261 ], + [ 7.1753313, 47.0695507 ], + [ 7.1760836, 47.0698442 ], + [ 7.1765608, 47.0700283 ], + [ 7.1773565, 47.0701903 ], + [ 7.1779264, 47.0702661 ], + [ 7.1785131, 47.0702676 ], + [ 7.1791247, 47.0702175 ], + [ 7.1795447, 47.07015 ], + [ 7.1799975, 47.0700824 ], + [ 7.1807104, 47.070027 ], + [ 7.1810618, 47.0700106 ], + [ 7.1815568, 47.0700918 ], + [ 7.1819996, 47.0702473 ], + [ 7.1822927, 47.0703853 ], + [ 7.1828271, 47.0708096 ], + [ 7.1837121, 47.0715894 ], + [ 7.1847142999999996, 47.0724609 ], + [ 7.1855454, 47.0721142 ], + [ 7.1869658, 47.0712312 ], + [ 7.1880837, 47.0706048 ], + [ 7.1886977, 47.0702175 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "WZV0014", + "country" : "CHE", + "name" : [ + { + "text" : "Wasser- und Zugvogelreservat Hagneckdelta und St. Petersinsel", + "lang" : "de-CH" + }, + { + "text" : "Réserve d'oiseaux d'eau et de migrateurs Hagneckdelta und St. Petersinsel", + "lang" : "fr-CH" + }, + { + "text" : "Riserva di uccelli acquatici e migratori Hagneckdelta und St. Petersinsel", + "lang" : "it-CH" + }, + { + "text" : "Water Bird and Migratory Bird Reserves Hagneckdelta und St. Petersinsel", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.9784289, 46.2663 ], + [ 6.9784248, 46.2661587 ], + [ 6.97841, 46.2660178 ], + [ 6.9783846, 46.2658776 ], + [ 6.9783486, 46.2657386 ], + [ 6.9783023, 46.265601 ], + [ 6.9782455, 46.2654653 ], + [ 6.9781787, 46.2653318 ], + [ 6.9781018, 46.265201 ], + [ 6.9780152, 46.2650731 ], + [ 6.9779191, 46.2649485 ], + [ 6.9778136, 46.2648276 ], + [ 6.9776992, 46.2647107 ], + [ 6.9775762, 46.2645981 ], + [ 6.9774448, 46.2644902 ], + [ 6.9773055, 46.2643871 ], + [ 6.9771585, 46.2642893 ], + [ 6.9770044, 46.2641969 ], + [ 6.9768435, 46.2641102 ], + [ 6.9766763, 46.2640295 ], + [ 6.9765033, 46.2639549 ], + [ 6.9763248, 46.2638868 ], + [ 6.9761415, 46.2638252 ], + [ 6.9759537, 46.2637704 ], + [ 6.9757621, 46.2637224 ], + [ 6.9755671, 46.2636815 ], + [ 6.9753693, 46.2636477 ], + [ 6.9751692, 46.2636211 ], + [ 6.9749675, 46.2636019 ], + [ 6.9747645, 46.2635899 ], + [ 6.9745609, 46.2635854 ], + [ 6.9743572, 46.2635883 ], + [ 6.974154, 46.2635985 ], + [ 6.9739519, 46.2636161 ], + [ 6.9737514, 46.2636411 ], + [ 6.973553, 46.2636732 ], + [ 6.9733574, 46.2637125 ], + [ 6.9731649, 46.2637589 ], + [ 6.9729763, 46.2638122 ], + [ 6.9727919, 46.2638723 ], + [ 6.9726123, 46.2639389 ], + [ 6.972438, 46.264012 ], + [ 6.9722694, 46.2640914 ], + [ 6.972107, 46.2641767 ], + [ 6.9719514, 46.2642678 ], + [ 6.9718027, 46.2643645 ], + [ 6.9716616, 46.2644664 ], + [ 6.9715284, 46.2645733 ], + [ 6.9714034, 46.2646848 ], + [ 6.9712871, 46.2648008 ], + [ 6.9711796, 46.2649208 ], + [ 6.9710813, 46.2650446 ], + [ 6.9709924999999995, 46.2651717 ], + [ 6.9709134, 46.2653019 ], + [ 6.9708442999999995, 46.2654348 ], + [ 6.9707852, 46.2655701 ], + [ 6.9707365, 46.2657072 ], + [ 6.9706982, 46.265846 ], + [ 6.9706703999999995, 46.265986 ], + [ 6.9706532, 46.2661268 ], + [ 6.9706466, 46.266268 ], + [ 6.9706508, 46.2664092 ], + [ 6.9706655, 46.2665501 ], + [ 6.9706909, 46.2666903 ], + [ 6.9707268, 46.2668294 ], + [ 6.9707732, 46.266967 ], + [ 6.9708299, 46.2671027 ], + [ 6.9708968, 46.2672361 ], + [ 6.9709736, 46.267367 ], + [ 6.9710602, 46.2674949 ], + [ 6.9711563, 46.2676195 ], + [ 6.9712617, 46.2677404 ], + [ 6.9713761, 46.2678573 ], + [ 6.9714992, 46.2679699 ], + [ 6.9716306, 46.2680779 ], + [ 6.9717699, 46.2681809 ], + [ 6.9719169, 46.2682788 ], + [ 6.972071, 46.2683712 ], + [ 6.9722319, 46.2684579 ], + [ 6.9723991, 46.2685386 ], + [ 6.9725721, 46.2686131 ], + [ 6.9727505999999995, 46.2686813 ], + [ 6.972934, 46.2687429 ], + [ 6.9731217, 46.2687977 ], + [ 6.9733133, 46.2688456 ], + [ 6.9735083, 46.2688866 ], + [ 6.9737061, 46.2689204 ], + [ 6.9739062, 46.268947 ], + [ 6.9741081, 46.2689662 ], + [ 6.9743110999999995, 46.2689781 ], + [ 6.9745147, 46.2689827 ], + [ 6.9747184, 46.2689798 ], + [ 6.9749216, 46.2689696 ], + [ 6.9751237, 46.268952 ], + [ 6.9753243, 46.268927 ], + [ 6.9755226, 46.2688949 ], + [ 6.9757183, 46.2688555 ], + [ 6.9759107, 46.2688092 ], + [ 6.9760994, 46.2687559 ], + [ 6.9762838, 46.2686958 ], + [ 6.9764634, 46.2686291 ], + [ 6.9766378, 46.268556 ], + [ 6.9768064, 46.2684767 ], + [ 6.9769687, 46.2683913 ], + [ 6.9771244, 46.2683002 ], + [ 6.977273, 46.2682036 ], + [ 6.9774141, 46.2681016 ], + [ 6.9775473, 46.2679948 ], + [ 6.9776723, 46.2678832 ], + [ 6.9777887, 46.2677672 ], + [ 6.9778961, 46.2676472 ], + [ 6.9779944, 46.2675234 ], + [ 6.9780832, 46.2673962 ], + [ 6.9781623, 46.267266 ], + [ 6.9782314, 46.2671331 ], + [ 6.9782904, 46.2669979 ], + [ 6.9783390999999995, 46.2668607 ], + [ 6.9783774, 46.2667219 ], + [ 6.9784052, 46.266582 ], + [ 6.9784223999999995, 46.2664412 ], + [ 6.9784289, 46.2663 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0114", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk St.Triphon", + "lang" : "de-CH" + }, + { + "text" : "Sous-station St.Triphon", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione St.Triphon", + "lang" : "it-CH" + }, + { + "text" : "Substation St.Triphon", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.3108778, 47.4712501 ], + [ 8.31087, 47.4711089 ], + [ 8.3108514, 47.4709682 ], + [ 8.3108219, 47.4708284 ], + [ 8.3107816, 47.4706898 ], + [ 8.3107308, 47.4705528 ], + [ 8.3106694, 47.4704178 ], + [ 8.3105976, 47.4702852 ], + [ 8.3105158, 47.4701553 ], + [ 8.310424, 47.4700285 ], + [ 8.3103226, 47.4699051 ], + [ 8.3102118, 47.4697855 ], + [ 8.3100919, 47.4696699 ], + [ 8.3099632, 47.4695588 ], + [ 8.3098262, 47.4694524 ], + [ 8.3096811, 47.4693511 ], + [ 8.3095284, 47.469255 ], + [ 8.3093685, 47.4691644 ], + [ 8.3092018, 47.4690797 ], + [ 8.3090288, 47.469001 ], + [ 8.30885, 47.4689285 ], + [ 8.3086658, 47.4688625 ], + [ 8.3084768, 47.4688031 ], + [ 8.3082835, 47.4687505 ], + [ 8.3080863, 47.4687048 ], + [ 8.3078859, 47.4686662 ], + [ 8.3076828, 47.4686347 ], + [ 8.3074776, 47.4686105 ], + [ 8.3072707, 47.4685936 ], + [ 8.3070629, 47.4685841 ], + [ 8.3068546, 47.468582 ], + [ 8.3066464, 47.4685872 ], + [ 8.3064389, 47.4685999 ], + [ 8.3062327, 47.4686199 ], + [ 8.3060283, 47.4686471 ], + [ 8.3058263, 47.4686816 ], + [ 8.3056272, 47.4687233 ], + [ 8.3054316, 47.4687719 ], + [ 8.30524, 47.4688274 ], + [ 8.305053, 47.4688896 ], + [ 8.304871, 47.4689584 ], + [ 8.3046946, 47.4690335 ], + [ 8.3045242, 47.4691148 ], + [ 8.3043603, 47.469202 ], + [ 8.3042034, 47.4692949 ], + [ 8.3040539, 47.4693933 ], + [ 8.3039122, 47.4694968 ], + [ 8.3037786, 47.4696053 ], + [ 8.3036536, 47.4697183 ], + [ 8.3035375, 47.4698356 ], + [ 8.3034306, 47.4699568 ], + [ 8.3033333, 47.4700817 ], + [ 8.3032456, 47.4702099 ], + [ 8.303168, 47.470341 ], + [ 8.3031007, 47.4704746 ], + [ 8.3030437, 47.4706105 ], + [ 8.3029973, 47.4707482 ], + [ 8.3029616, 47.4708874 ], + [ 8.3029367, 47.4710276 ], + [ 8.3029226, 47.4711686 ], + [ 8.3029195, 47.4713098 ], + [ 8.3029272, 47.471451 ], + [ 8.3029458, 47.4715917 ], + [ 8.3029753, 47.4717315 ], + [ 8.3030155, 47.4718701 ], + [ 8.3030664, 47.4720071 ], + [ 8.3031278, 47.4721421 ], + [ 8.3031995, 47.4722747 ], + [ 8.3032813, 47.4724046 ], + [ 8.3033731, 47.4725315 ], + [ 8.3034745, 47.4726549 ], + [ 8.3035853, 47.4727745 ], + [ 8.3037052, 47.47289 ], + [ 8.3038338, 47.4730011 ], + [ 8.3039709, 47.4731075 ], + [ 8.304116, 47.4732089 ], + [ 8.3042687, 47.473305 ], + [ 8.3044286, 47.4733956 ], + [ 8.3045953, 47.4734803 ], + [ 8.3047683, 47.473559 ], + [ 8.3049471, 47.4736315 ], + [ 8.3051313, 47.4736975 ], + [ 8.3053203, 47.4737569 ], + [ 8.3055137, 47.4738095 ], + [ 8.3057108, 47.4738552 ], + [ 8.3059112, 47.4738938 ], + [ 8.3061143, 47.4739253 ], + [ 8.3063196, 47.4739495 ], + [ 8.3065265, 47.4739664 ], + [ 8.3067343, 47.4739759 ], + [ 8.3069427, 47.4739781 ], + [ 8.3071509, 47.4739728 ], + [ 8.3073584, 47.4739601 ], + [ 8.3075646, 47.4739402 ], + [ 8.3077691, 47.4739129 ], + [ 8.3079711, 47.4738784 ], + [ 8.3081702, 47.4738368 ], + [ 8.3083658, 47.4737881 ], + [ 8.3085574, 47.4737326 ], + [ 8.3087444, 47.4736704 ], + [ 8.3089264, 47.4736016 ], + [ 8.3091029, 47.4735265 ], + [ 8.3092732, 47.4734452 ], + [ 8.3094371, 47.4733579 ], + [ 8.309594, 47.473265 ], + [ 8.309743600000001, 47.4731667 ], + [ 8.3098853, 47.4730631 ], + [ 8.3100188, 47.4729547 ], + [ 8.3101438, 47.4728417 ], + [ 8.3102599, 47.4727244 ], + [ 8.3103668, 47.4726031 ], + [ 8.3104642, 47.4724782 ], + [ 8.3105518, 47.4723501 ], + [ 8.3106293, 47.472219 ], + [ 8.3106967, 47.4720853 ], + [ 8.3107536, 47.4719494 ], + [ 8.3108, 47.4718117 ], + [ 8.3108357, 47.4716725 ], + [ 8.3108606, 47.4715323 ], + [ 8.3108746, 47.4713913 ], + [ 8.3108778, 47.4712501 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BAD0001", + "country" : "CHE", + "name" : [ + { + "text" : "Bezirksgefängnis Baden", + "lang" : "de-CH" + }, + { + "text" : "Bezirksgefängnis Baden", + "lang" : "fr-CH" + }, + { + "text" : "Bezirksgefängnis Baden", + "lang" : "it-CH" + }, + { + "text" : "Bezirksgefängnis Baden", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Bezirksgefängnis Baden", + "lang" : "de-CH" + }, + { + "text" : "Bezirksgefängnis Baden", + "lang" : "fr-CH" + }, + { + "text" : "Bezirksgefängnis Baden", + "lang" : "it-CH" + }, + { + "text" : "Bezirksgefängnis Baden", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Gefängnisleitung", + "lang" : "de-CH" + }, + { + "text" : "Gefängnisleitung", + "lang" : "fr-CH" + }, + { + "text" : "Gefängnisleitung", + "lang" : "it-CH" + }, + { + "text" : "Gefängnisleitung", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ag.ch/de/verwaltung/dvi/strafverfolgung-strafvollzug/strafvollzug/bezirksgefaengnisse", + "email" : "justizvollzug@ag.ch", + "phone" : "0041562001263", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7329987, 47.4537335 ], + [ 7.7330708, 47.4541086 ], + [ 7.7331109, 47.4544741 ], + [ 7.7331518, 47.4549095 ], + [ 7.7331599, 47.4551566 ], + [ 7.7331275999999995, 47.4553828 ], + [ 7.7331395, 47.4554921 ], + [ 7.7331826, 47.4559001 ], + [ 7.7333617, 47.4563371 ], + [ 7.7336817, 47.4564083 ], + [ 7.7337266, 47.4558297 ], + [ 7.7337926, 47.4552779 ], + [ 7.7337164, 47.4549282 ], + [ 7.7336488, 47.4546878 ], + [ 7.7336138, 47.454563 ], + [ 7.7335743, 47.4545098 ], + [ 7.7335267, 47.4543441 ], + [ 7.733575, 47.4540533 ], + [ 7.7337335, 47.4537342 ], + [ 7.7337299, 47.4537342 ], + [ 7.7330381, 47.4537335 ], + [ 7.7329987, 47.4537335 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns360", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Chaiberain", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Chaiberain", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Chaiberain", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Chaiberain", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.8646727, 47.2036006 ], + [ 8.864526399999999, 47.203956 ], + [ 8.8639803, 47.2038224 ], + [ 8.8635993, 47.2046314 ], + [ 8.8709135, 47.2056075 ], + [ 8.8710501, 47.2050408 ], + [ 8.8655225, 47.2042828 ], + [ 8.8657155, 47.203845 ], + [ 8.8660256, 47.2031007 ], + [ 8.8644918, 47.2028058 ], + [ 8.8642251, 47.2034964 ], + [ 8.8646727, 47.2036006 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSPV002", + "country" : "CHE", + "name" : [ + { + "text" : "LSPV Wangen-Lachen (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSPV Wangen-Lachen (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSPV Wangen-Lachen (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSPV Wangen-Lachen (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "ASFG Ausserschwyzer Fluggemeinschaft Wangen", + "lang" : "de-CH" + }, + { + "text" : "ASFG Ausserschwyzer Fluggemeinschaft Wangen", + "lang" : "fr-CH" + }, + { + "text" : "ASFG Ausserschwyzer Fluggemeinschaft Wangen", + "lang" : "it-CH" + }, + { + "text" : "ASFG Ausserschwyzer Fluggemeinschaft Wangen", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.flugplatzwangen.ch/flugplatz/drohnenbewilligung/", + "email" : "drohnen@flugplatzwangen.ch", + "phone" : "0041554404217", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7589872, 47.4577835 ], + [ 7.7590568, 47.4579665 ], + [ 7.7590702, 47.4579652 ], + [ 7.7591127, 47.4579586 ], + [ 7.7591542, 47.4579494 ], + [ 7.7592099, 47.4579374 ], + [ 7.7592668, 47.4579286 ], + [ 7.7593246, 47.457923 ], + [ 7.7593829, 47.4579207 ], + [ 7.7594413, 47.4579216 ], + [ 7.7594994, 47.4579259 ], + [ 7.7596348, 47.4579397 ], + [ 7.7596943, 47.4579402 ], + [ 7.7597714, 47.4579352 ], + [ 7.7598208, 47.457933 ], + [ 7.7598824, 47.4579355 ], + [ 7.7600039, 47.457959 ], + [ 7.7601196, 47.4580016 ], + [ 7.7601797999999995, 47.4580169 ], + [ 7.7603073, 47.4580368 ], + [ 7.7604027, 47.4580397 ], + [ 7.7605067, 47.458029 ], + [ 7.7606112, 47.4580103 ], + [ 7.7607335, 47.4579849 ], + [ 7.7608217, 47.4579784 ], + [ 7.7608995, 47.4579827 ], + [ 7.7609004, 47.4579828 ], + [ 7.7609013000000004, 47.4579827 ], + [ 7.7609974, 47.4579732 ], + [ 7.7610733, 47.4580151 ], + [ 7.7611564, 47.4580703 ], + [ 7.7612188, 47.4581212 ], + [ 7.7612955, 47.4582104 ], + [ 7.7613728, 47.4582892 ], + [ 7.7614591, 47.4583635 ], + [ 7.7615537, 47.4584331 ], + [ 7.761656, 47.4584974 ], + [ 7.7620221, 47.4587042 ], + [ 7.7620422, 47.4587173 ], + [ 7.7620605, 47.4587315 ], + [ 7.7620771, 47.4587467 ], + [ 7.7620917, 47.4587628 ], + [ 7.7621042, 47.4587797 ], + [ 7.7621147, 47.4587972 ], + [ 7.7621229, 47.4588153 ], + [ 7.7621289, 47.4588338 ], + [ 7.7621325, 47.4588525 ], + [ 7.7621338, 47.4588714 ], + [ 7.7621355, 47.4590269 ], + [ 7.7621402, 47.4590971 ], + [ 7.7619896, 47.4591171 ], + [ 7.7618402, 47.4591411 ], + [ 7.7614792, 47.4591969 ], + [ 7.7614475, 47.4592016 ], + [ 7.7614166, 47.4592082 ], + [ 7.7613867, 47.4592166 ], + [ 7.7613579999999995, 47.4592268 ], + [ 7.7613308, 47.4592388 ], + [ 7.7613054, 47.4592524 ], + [ 7.7612818, 47.4592674 ], + [ 7.7612604, 47.4592839 ], + [ 7.7612412, 47.4593016 ], + [ 7.7612245, 47.4593204 ], + [ 7.7612189, 47.459328 ], + [ 7.7612143, 47.459336 ], + [ 7.7612107, 47.4593441 ], + [ 7.7612082000000004, 47.4593525 ], + [ 7.7612067, 47.4593609 ], + [ 7.7612017, 47.4593821 ], + [ 7.7611941, 47.4594029 ], + [ 7.7611839, 47.4594231 ], + [ 7.76117, 47.4594513 ], + [ 7.7611532, 47.4594913 ], + [ 7.7611315, 47.459561 ], + [ 7.7611191, 47.4596317 ], + [ 7.7611161, 47.4597029 ], + [ 7.7611223, 47.4597741 ], + [ 7.761137, 47.4598194 ], + [ 7.7611574999999995, 47.4598636 ], + [ 7.7611836, 47.4599065 ], + [ 7.7612151, 47.4599476 ], + [ 7.7613942, 47.4601719 ], + [ 7.7615599, 47.4604009 ], + [ 7.761712, 47.4606341 ], + [ 7.7617641, 47.4607043 ], + [ 7.7618254, 47.4607709 ], + [ 7.7618686, 47.4608094 ], + [ 7.7630277, 47.4602627 ], + [ 7.763078, 47.4603747 ], + [ 7.7633344, 47.4604383 ], + [ 7.7633946, 47.4603619 ], + [ 7.7635006, 47.4602518 ], + [ 7.7636229, 47.4601497 ], + [ 7.7637602999999995, 47.4600569 ], + [ 7.7639113, 47.4599743 ], + [ 7.7640742, 47.4599029 ], + [ 7.7642471, 47.4598434 ], + [ 7.7644283, 47.4597966 ], + [ 7.7644774, 47.4597208 ], + [ 7.7646475, 47.4596812 ], + [ 7.7646188, 47.4596437 ], + [ 7.7644168, 47.4593462 ], + [ 7.7643619, 47.4592665 ], + [ 7.764319, 47.4592128 ], + [ 7.7642746, 47.4591728 ], + [ 7.7642326, 47.4591429 ], + [ 7.7641867, 47.4591158 ], + [ 7.7641372, 47.4590916 ], + [ 7.7641119, 47.4590793 ], + [ 7.7640884, 47.4590654 ], + [ 7.7640668, 47.4590501 ], + [ 7.7640474, 47.4590335 ], + [ 7.7640303, 47.4590158 ], + [ 7.7640157, 47.4589972 ], + [ 7.7640036, 47.4589776 ], + [ 7.7639942, 47.4589575 ], + [ 7.7639542, 47.4588793 ], + [ 7.7639396, 47.4588373 ], + [ 7.7639097, 47.4587386 ], + [ 7.7638926, 47.4586604 ], + [ 7.7638788, 47.4586149 ], + [ 7.7638487, 47.4585612 ], + [ 7.763831, 47.4585327 ], + [ 7.7638082, 47.4584983 ], + [ 7.7637795, 47.4584674 ], + [ 7.7636522, 47.4583818 ], + [ 7.7635457, 47.4583076 ], + [ 7.7634957, 47.4582818 ], + [ 7.7634316, 47.4582549 ], + [ 7.7633101, 47.45821 ], + [ 7.7632698, 47.4581987 ], + [ 7.7631699, 47.4581789 ], + [ 7.7629691, 47.4581386 ], + [ 7.7628468, 47.4581106 ], + [ 7.7626737, 47.458067 ], + [ 7.7625846, 47.4580401 ], + [ 7.7623847999999995, 47.4579669 ], + [ 7.7623421, 47.4579491 ], + [ 7.7622902, 47.4579271 ], + [ 7.7622391, 47.4579042 ], + [ 7.7621888, 47.4578805 ], + [ 7.7621768, 47.4578739 ], + [ 7.762164, 47.457868 ], + [ 7.7621505, 47.4578629 ], + [ 7.7621364, 47.4578586 ], + [ 7.7621218, 47.4578551 ], + [ 7.7621068, 47.4578525 ], + [ 7.7620916, 47.4578508 ], + [ 7.7620762, 47.45785 ], + [ 7.7620607, 47.45785 ], + [ 7.7620453, 47.457851 ], + [ 7.7620301, 47.4578529 ], + [ 7.7620152000000004, 47.4578557 ], + [ 7.7620007, 47.4578593 ], + [ 7.7619867, 47.4578638 ], + [ 7.7619733, 47.4578691 ], + [ 7.7619606, 47.4578751 ], + [ 7.7619488, 47.4578819 ], + [ 7.7619378999999995, 47.4578893 ], + [ 7.7619297, 47.4579043 ], + [ 7.7619249, 47.4579422 ], + [ 7.7619295, 47.4579591 ], + [ 7.7619413999999995, 47.4579748 ], + [ 7.7619071, 47.4579924 ], + [ 7.7618152, 47.4579101 ], + [ 7.7610019999999995, 47.4571997 ], + [ 7.7602303, 47.4567832 ], + [ 7.7601853, 47.4567618 ], + [ 7.7598593000000005, 47.4562983 ], + [ 7.7595856, 47.456176 ], + [ 7.7593464, 47.4559803 ], + [ 7.7578073, 47.4566181 ], + [ 7.7588276, 47.4571282 ], + [ 7.758901, 47.457122 ], + [ 7.7589872, 47.4577835 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns313", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Landschachen - Huppergruben", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Landschachen - Huppergruben", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Landschachen - Huppergruben", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Landschachen - Huppergruben", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5419444, 47.2180555 ], + [ 7.547433, 47.2166752 ], + [ 7.5525589, 47.2147537 ], + [ 7.5572082, 47.2123342 ], + [ 7.5612776, 47.2094706 ], + [ 7.5646768, 47.2062265 ], + [ 7.5673302, 47.202674 ], + [ 7.569179, 47.1988922 ], + [ 7.5701824, 47.1949651 ], + [ 7.5703181, 47.1909799 ], + [ 7.5695834, 47.1870253 ], + [ 7.3898583, 47.1338524 ], + [ 7.3498741, 47.1311088 ], + [ 7.3445517, 47.1332984 ], + [ 7.3398050999999995, 47.1360362 ], + [ 7.3357545, 47.139253 ], + [ 7.3325024, 47.1428673 ], + [ 7.3301313, 47.1467878 ], + [ 7.3287015, 47.1509152 ], + [ 7.3282492, 47.1551451 ], + [ 7.3287862, 47.1593703 ], + [ 7.3302992, 47.163484 ], + [ 7.33275, 47.1673818 ], + [ 7.3855455, 47.1875591 ], + [ 7.5419444, 47.2180555 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 120, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "CTR0007", + "country" : "CHE", + "name" : [ + { + "text" : "CTR GRENCHEN", + "lang" : "de-CH" + }, + { + "text" : "CTR GRENCHEN", + "lang" : "fr-CH" + }, + { + "text" : "CTR GRENCHEN", + "lang" : "it-CH" + }, + { + "text" : "CTR GRENCHEN", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only permitted from an altitude of 120 m above ground with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Skyguide Special Flight Office", + "lang" : "de-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "it-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "en-GB" + } + ], + "siteURL" : "https://skyguide.ch/services/special-flights", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.4795884, 47.4328789 ], + [ 8.4795621, 47.4325655 ], + [ 8.4794956, 47.4322549 ], + [ 8.4793895, 47.4319494 ], + [ 8.4792446, 47.4316514 ], + [ 8.479062, 47.431363 ], + [ 8.478843, 47.4310866 ], + [ 8.4785893, 47.4308241 ], + [ 8.4783029, 47.4305777 ], + [ 8.4779859, 47.4303491 ], + [ 8.4776408, 47.4301401 ], + [ 8.4772702, 47.4299524 ], + [ 8.4768768, 47.4297873 ], + [ 8.4764638, 47.4296461 ], + [ 8.4760342, 47.4295298 ], + [ 8.4755913, 47.4294394 ], + [ 8.4751385, 47.4293755 ], + [ 8.4746792, 47.4293387 ], + [ 8.4742169, 47.4293291 ], + [ 8.4737551, 47.4293469 ], + [ 8.4732974, 47.429392 ], + [ 8.4728472, 47.429464 ], + [ 8.472408, 47.4295623 ], + [ 8.4719831, 47.4296862 ], + [ 8.4715757, 47.4298348 ], + [ 8.4711889, 47.4300069 ], + [ 8.4708257, 47.4302012 ], + [ 8.4704888, 47.4304163 ], + [ 8.4701809, 47.4306505 ], + [ 8.4699041, 47.4309019 ], + [ 8.4696608, 47.4311688 ], + [ 8.4694526, 47.4314491 ], + [ 8.4692813, 47.4317406 ], + [ 8.469148, 47.4320412 ], + [ 8.4690538, 47.4323485 ], + [ 8.4689995, 47.4326602 ], + [ 8.4689854, 47.4329739 ], + [ 8.4690116, 47.4332872 ], + [ 8.469078, 47.4335978 ], + [ 8.4691841, 47.4339033 ], + [ 8.4693289, 47.4342014 ], + [ 8.4695115, 47.4344898 ], + [ 8.4697305, 47.4347662 ], + [ 8.4699841, 47.4350287 ], + [ 8.4702705, 47.4352751 ], + [ 8.4705875, 47.4355037 ], + [ 8.4709326, 47.4357127 ], + [ 8.4713033, 47.4359005 ], + [ 8.4716966, 47.4360656 ], + [ 8.4721097, 47.4362069 ], + [ 8.4725393, 47.4363231 ], + [ 8.4729823, 47.4364136 ], + [ 8.4734352, 47.4364774 ], + [ 8.4738946, 47.4365143 ], + [ 8.4743569, 47.4365238 ], + [ 8.4748187, 47.436506 ], + [ 8.4752765, 47.4364609 ], + [ 8.4757267, 47.436389 ], + [ 8.476166, 47.4362906 ], + [ 8.476590999999999, 47.4361667 ], + [ 8.4769984, 47.4360181 ], + [ 8.4773852, 47.435846 ], + [ 8.4777484, 47.4356516 ], + [ 8.4780853, 47.4354365 ], + [ 8.4783933, 47.4352024 ], + [ 8.47867, 47.4349508 ], + [ 8.4789133, 47.4346839 ], + [ 8.4791214, 47.4344036 ], + [ 8.4792927, 47.4341121 ], + [ 8.479426, 47.4338115 ], + [ 8.4795201, 47.4335043 ], + [ 8.4795743, 47.4331926 ], + [ 8.4795884, 47.4328789 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "POE0001", + "country" : "CHE", + "name" : [ + { + "text" : "Justizvollzugsanstalt Pöschwies", + "lang" : "de-CH" + }, + { + "text" : "Justizvollzugsanstalt Pöschwies", + "lang" : "fr-CH" + }, + { + "text" : "Justizvollzugsanstalt Pöschwies", + "lang" : "it-CH" + }, + { + "text" : "Justizvollzugsanstalt Pöschwies", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "de-CH" + }, + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "fr-CH" + }, + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "it-CH" + }, + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "de-CH" + }, + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "fr-CH" + }, + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "it-CH" + }, + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Reno Berner", + "lang" : "de-CH" + }, + { + "text" : "Reno Berner", + "lang" : "fr-CH" + }, + { + "text" : "Reno Berner", + "lang" : "it-CH" + }, + { + "text" : "Reno Berner", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.zh.ch/de/direktion-der-justiz-und-des-innern/justizvollzug-wiedereingliederung.html", + "email" : "sicherheit-juwe@ji.zh.ch", + "phone" : "0041432583400", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT12H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.3066516, 47.3977371 ], + [ 9.3066412, 47.397596 ], + [ 9.3066199, 47.3974555 ], + [ 9.3065879, 47.3973159 ], + [ 9.3065451, 47.3971776 ], + [ 9.3064917, 47.3970411 ], + [ 9.3064279, 47.3969067 ], + [ 9.3063538, 47.3967747 ], + [ 9.3062696, 47.3966455 ], + [ 9.3061756, 47.3965194 ], + [ 9.306072, 47.3963969 ], + [ 9.3059591, 47.3962783 ], + [ 9.3058372, 47.3961638 ], + [ 9.3057067, 47.3960538 ], + [ 9.3055679, 47.3959486 ], + [ 9.3054211, 47.3958485 ], + [ 9.3052668, 47.3957537 ], + [ 9.3051055, 47.3956645 ], + [ 9.3049375, 47.3955812 ], + [ 9.3047633, 47.395504 ], + [ 9.304583300000001, 47.3954331 ], + [ 9.3043982, 47.3953687 ], + [ 9.304208299999999, 47.3953109 ], + [ 9.3040143, 47.3952599 ], + [ 9.3038166, 47.395216 ], + [ 9.3036158, 47.3951791 ], + [ 9.3034124, 47.3951494 ], + [ 9.303207, 47.3951269 ], + [ 9.3030002, 47.3951118 ], + [ 9.3027924, 47.3951041 ], + [ 9.3025844, 47.3951038 ], + [ 9.3023766, 47.3951108 ], + [ 9.3021696, 47.3951252 ], + [ 9.3019641, 47.395147 ], + [ 9.3017605, 47.395176 ], + [ 9.3015594, 47.3952123 ], + [ 9.3013614, 47.3952556 ], + [ 9.301167, 47.3953059 ], + [ 9.3009767, 47.395363 ], + [ 9.3007912, 47.3954269 ], + [ 9.3006107, 47.3954972 ], + [ 9.300436, 47.3955738 ], + [ 9.3002674, 47.3956566 ], + [ 9.3001054, 47.3957452 ], + [ 9.2999504, 47.3958395 ], + [ 9.299803, 47.3959391 ], + [ 9.2996634, 47.3960439 ], + [ 9.299532, 47.3961535 ], + [ 9.2994094, 47.3962675 ], + [ 9.2992956, 47.3963858 ], + [ 9.2991911, 47.396508 ], + [ 9.2990962, 47.3966337 ], + [ 9.2990112, 47.3967626 ], + [ 9.2989361, 47.3968944 ], + [ 9.2988713, 47.3970286 ], + [ 9.298817, 47.397165 ], + [ 9.2987732, 47.3973031 ], + [ 9.2987402, 47.3974425 ], + [ 9.2987179, 47.397583 ], + [ 9.2987065, 47.397724 ], + [ 9.298706, 47.3978653 ], + [ 9.2987164, 47.3980064 ], + [ 9.2987376, 47.3981469 ], + [ 9.2987697, 47.3982865 ], + [ 9.2988124, 47.3984247 ], + [ 9.2988658, 47.3985613 ], + [ 9.2989296, 47.3986957 ], + [ 9.2990037, 47.3988277 ], + [ 9.2990878, 47.3989569 ], + [ 9.2991818, 47.399083 ], + [ 9.2992854, 47.3992055 ], + [ 9.2993983, 47.3993241 ], + [ 9.2995202, 47.3994386 ], + [ 9.2996507, 47.3995486 ], + [ 9.2997895, 47.3996538 ], + [ 9.2999363, 47.399754 ], + [ 9.3000906, 47.3998487 ], + [ 9.3002519, 47.3999379 ], + [ 9.3004199, 47.4000212 ], + [ 9.3005942, 47.4000985 ], + [ 9.3007741, 47.4001694 ], + [ 9.3009592, 47.4002338 ], + [ 9.3011491, 47.4002916 ], + [ 9.3013432, 47.4003425 ], + [ 9.3015409, 47.4003865 ], + [ 9.301741700000001, 47.4004234 ], + [ 9.3019451, 47.4004531 ], + [ 9.3021506, 47.4004756 ], + [ 9.3023574, 47.4004907 ], + [ 9.3025652, 47.4004984 ], + [ 9.3027732, 47.4004987 ], + [ 9.302981, 47.4004917 ], + [ 9.303188, 47.4004773 ], + [ 9.3033936, 47.4004555 ], + [ 9.3035972, 47.4004265 ], + [ 9.3037983, 47.4003902 ], + [ 9.3039963, 47.4003469 ], + [ 9.3041907, 47.4002966 ], + [ 9.304381, 47.4002395 ], + [ 9.3045666, 47.4001756 ], + [ 9.304747, 47.4001053 ], + [ 9.3049218, 47.4000286 ], + [ 9.3050904, 47.3999459 ], + [ 9.3052524, 47.3998572 ], + [ 9.3054074, 47.399763 ], + [ 9.3055548, 47.3996633 ], + [ 9.3056944, 47.3995585 ], + [ 9.3058257, 47.399449 ], + [ 9.3059484, 47.3993349 ], + [ 9.3060622, 47.3992166 ], + [ 9.3061666, 47.3990944 ], + [ 9.3062615, 47.3989687 ], + [ 9.3063466, 47.3988398 ], + [ 9.3064216, 47.398708 ], + [ 9.3064864, 47.3985738 ], + [ 9.3065407, 47.3984374 ], + [ 9.3065844, 47.3982993 ], + [ 9.3066175, 47.3981598 ], + [ 9.3066397, 47.3980194 ], + [ 9.3066511, 47.3978783 ], + [ 9.3066516, 47.3977371 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0130", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Winkeln", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Winkeln", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Winkeln", + "lang" : "it-CH" + }, + { + "text" : "Substation Winkeln", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8181316, 47.4844394 ], + [ 7.8178999000000005, 47.4846425 ], + [ 7.818035, 47.4847729 ], + [ 7.8182656999999995, 47.4848664 ], + [ 7.8183902, 47.4850068 ], + [ 7.8184443, 47.4853044 ], + [ 7.8184839, 47.4854974 ], + [ 7.8183738, 47.4854996 ], + [ 7.8183699, 47.4855399 ], + [ 7.8185310999999995, 47.4856983 ], + [ 7.8183534, 47.4858284 ], + [ 7.8185123999999995, 47.4859805 ], + [ 7.8186644, 47.4860226 ], + [ 7.8187849, 47.4859913 ], + [ 7.8189208, 47.4857449 ], + [ 7.8191713, 47.4855392 ], + [ 7.8192813999999995, 47.4855795 ], + [ 7.8190858, 47.4858847 ], + [ 7.8192666, 47.4859431 ], + [ 7.8196585, 47.4858032 ], + [ 7.8201801, 47.4854033 ], + [ 7.8202312, 47.4853941 ], + [ 7.8203305, 47.4856466 ], + [ 7.8203389, 47.4856667 ], + [ 7.8203481, 47.4856867 ], + [ 7.8203581, 47.4857065 ], + [ 7.8203689, 47.4857261 ], + [ 7.8203805, 47.4857455 ], + [ 7.8203928, 47.4857647 ], + [ 7.8204059, 47.4857836 ], + [ 7.8204197, 47.4858023 ], + [ 7.8204343, 47.4858207 ], + [ 7.8204498000000005, 47.4858388 ], + [ 7.8204661, 47.4858566 ], + [ 7.820483, 47.4858741 ], + [ 7.8205006, 47.4858913 ], + [ 7.820519, 47.4859081 ], + [ 7.8205379, 47.4859246 ], + [ 7.8205575, 47.4859408 ], + [ 7.8205778, 47.4859565 ], + [ 7.8205987, 47.4859719 ], + [ 7.8206959, 47.4858389 ], + [ 7.8206038, 47.4856043 ], + [ 7.8204361, 47.4854362 ], + [ 7.8207699, 47.4852039 ], + [ 7.820631, 47.4851137 ], + [ 7.8206154, 47.485104 ], + [ 7.8205992, 47.4850948 ], + [ 7.8205824, 47.485086 ], + [ 7.8205652, 47.4850776 ], + [ 7.8205475, 47.4850698 ], + [ 7.8205293000000005, 47.4850624 ], + [ 7.8205108, 47.4850555 ], + [ 7.8204918, 47.4850491 ], + [ 7.8204725, 47.4850433 ], + [ 7.8204528, 47.4850379 ], + [ 7.8204328, 47.4850331 ], + [ 7.8204126, 47.4850289 ], + [ 7.8203922, 47.4850252 ], + [ 7.8203716, 47.4850221 ], + [ 7.8203508, 47.4850195 ], + [ 7.8203299, 47.4850176 ], + [ 7.820309, 47.4850161 ], + [ 7.8202879, 47.4850153 ], + [ 7.8202668, 47.485015 ], + [ 7.8202457, 47.4850153 ], + [ 7.8202247, 47.4850161 ], + [ 7.8202037, 47.4850175 ], + [ 7.8201827999999995, 47.4850195 ], + [ 7.820162, 47.485022 ], + [ 7.8201414, 47.4850251 ], + [ 7.820121, 47.4850288 ], + [ 7.8200174, 47.4850487 ], + [ 7.8199968, 47.4850522 ], + [ 7.8199761, 47.4850552 ], + [ 7.8199551, 47.4850576 ], + [ 7.8199341, 47.4850595 ], + [ 7.8199129, 47.4850607 ], + [ 7.8198917, 47.4850615 ], + [ 7.8198705, 47.4850616 ], + [ 7.8198492, 47.4850611 ], + [ 7.8198281, 47.4850601 ], + [ 7.819807, 47.4850585 ], + [ 7.819786, 47.4850564 ], + [ 7.8197651, 47.4850536 ], + [ 7.8197444, 47.4850503 ], + [ 7.8197298, 47.4850475 ], + [ 7.8197153, 47.4850441 ], + [ 7.8197012, 47.4850401 ], + [ 7.8196875, 47.4850356 ], + [ 7.8196741, 47.4850306 ], + [ 7.8196613, 47.485025 ], + [ 7.8196489, 47.485019 ], + [ 7.819637, 47.4850125 ], + [ 7.8196257, 47.4850055 ], + [ 7.819615, 47.4849981 ], + [ 7.819605, 47.4849903 ], + [ 7.8195955999999995, 47.4849822 ], + [ 7.8195869, 47.484973600000004 ], + [ 7.819579, 47.4849648 ], + [ 7.8195719, 47.4849556 ], + [ 7.8195387, 47.4849095 ], + [ 7.8195322, 47.4849011 ], + [ 7.8195248, 47.4848931 ], + [ 7.8195167, 47.4848854 ], + [ 7.8195078, 47.4848781 ], + [ 7.8194983, 47.4848713 ], + [ 7.819488, 47.4848649 ], + [ 7.8194772, 47.4848589 ], + [ 7.8194658, 47.4848535 ], + [ 7.8194538, 47.4848486 ], + [ 7.8194414, 47.4848443 ], + [ 7.8194286, 47.4848406 ], + [ 7.8194155, 47.4848374 ], + [ 7.8194021, 47.4848349 ], + [ 7.8193884, 47.484833 ], + [ 7.8193746, 47.4848317 ], + [ 7.8193607, 47.4848311 ], + [ 7.8193447, 47.4848311 ], + [ 7.8193287, 47.4848317 ], + [ 7.8193128, 47.4848328 ], + [ 7.819297, 47.4848345 ], + [ 7.8192813, 47.4848368 ], + [ 7.8192658999999995, 47.4848396 ], + [ 7.8192506, 47.4848429 ], + [ 7.8192357, 47.4848468 ], + [ 7.819221, 47.4848511 ], + [ 7.8192044, 47.4848569 ], + [ 7.8191291, 47.4848321 ], + [ 7.8181316, 47.4844394 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns241", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Bottenmatt", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Bottenmatt", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Bottenmatt", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Bottenmatt", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7288106, 47.3819806 ], + [ 7.7299036, 47.3821217 ], + [ 7.7307375, 47.3821443 ], + [ 7.7314924, 47.3821393 ], + [ 7.7316296, 47.3820965 ], + [ 7.7317302, 47.3821407 ], + [ 7.7317651, 47.3821365 ], + [ 7.7317993, 47.3821302 ], + [ 7.7318326, 47.3821219 ], + [ 7.7318646, 47.3821115 ], + [ 7.7318952, 47.3820993 ], + [ 7.7319241, 47.3820853 ], + [ 7.7319509, 47.3820696 ], + [ 7.7319757, 47.3820523 ], + [ 7.731998, 47.3820336 ], + [ 7.7320893, 47.3819653 ], + [ 7.732184, 47.3819308 ], + [ 7.7322419, 47.3820406 ], + [ 7.7321267, 47.3820898 ], + [ 7.7319881, 47.3822541 ], + [ 7.7319109, 47.3824232 ], + [ 7.7319989, 47.3825775 ], + [ 7.7320078, 47.3825758 ], + [ 7.732755, 47.382432 ], + [ 7.7333102, 47.3825249 ], + [ 7.733678, 47.382427 ], + [ 7.7341393, 47.3822465 ], + [ 7.7343434, 47.3820758 ], + [ 7.7343899, 47.3819314 ], + [ 7.7353619, 47.3818481 ], + [ 7.7357104, 47.3816021 ], + [ 7.736008, 47.3815784 ], + [ 7.7366176, 47.3815462 ], + [ 7.7372723, 47.3815162 ], + [ 7.7373185, 47.3813687 ], + [ 7.7374047, 47.3812644 ], + [ 7.7377153, 47.3810811 ], + [ 7.7374111, 47.3808835 ], + [ 7.7372676, 47.3808346 ], + [ 7.7373047, 47.3811106 ], + [ 7.7365786, 47.3812331 ], + [ 7.7356831, 47.38125 ], + [ 7.7351484, 47.3812743 ], + [ 7.7344217, 47.3814087 ], + [ 7.7334378, 47.3816464 ], + [ 7.7330803, 47.3814614 ], + [ 7.7333288, 47.3812372 ], + [ 7.7334963, 47.3809305 ], + [ 7.7338611, 47.3808507 ], + [ 7.7343448, 47.3807335 ], + [ 7.7350081, 47.3805884 ], + [ 7.7353328999999995, 47.3806433 ], + [ 7.7354115, 47.3806572 ], + [ 7.7363154, 47.3807461 ], + [ 7.7369424, 47.3807664 ], + [ 7.7368342, 47.3807075 ], + [ 7.7367897, 47.3806832 ], + [ 7.7368913, 47.3806395 ], + [ 7.7369102, 47.3806317 ], + [ 7.7369296, 47.3806245 ], + [ 7.7369494, 47.3806178 ], + [ 7.7369696, 47.3806118 ], + [ 7.7369901, 47.3806063 ], + [ 7.737011, 47.3806015 ], + [ 7.7370322, 47.3805972 ], + [ 7.7370536, 47.3805935 ], + [ 7.7370752, 47.3805905 ], + [ 7.737097, 47.3805881 ], + [ 7.737119, 47.3805864 ], + [ 7.737152, 47.3805845 ], + [ 7.7371852, 47.3805833 ], + [ 7.7372184, 47.3805826 ], + [ 7.7372516000000005, 47.3805826 ], + [ 7.7372847, 47.3805832 ], + [ 7.7373179, 47.3805844 ], + [ 7.7373321, 47.3805851 ], + [ 7.7373303, 47.3805714 ], + [ 7.737328, 47.3805484 ], + [ 7.7373188, 47.3804518 ], + [ 7.7372969, 47.3804307 ], + [ 7.737199, 47.3804735 ], + [ 7.7371315, 47.3804439 ], + [ 7.7371678, 47.3804042 ], + [ 7.7371656, 47.3803673 ], + [ 7.7372108, 47.3803402 ], + [ 7.737295, 47.3803018 ], + [ 7.737287, 47.3802706 ], + [ 7.7372398, 47.3802764 ], + [ 7.7371661, 47.3803045 ], + [ 7.7371183, 47.38033 ], + [ 7.7370365, 47.3803887 ], + [ 7.7369553, 47.3804156 ], + [ 7.7368465, 47.3804554 ], + [ 7.7366503, 47.380471299999996 ], + [ 7.7364266, 47.3805074 ], + [ 7.7363219, 47.380495 ], + [ 7.736172, 47.3804722 ], + [ 7.73595, 47.3804548 ], + [ 7.7357886, 47.3804358 ], + [ 7.7357273, 47.3804221 ], + [ 7.7356233, 47.3803874 ], + [ 7.7354942, 47.3804086 ], + [ 7.7354473, 47.3803421 ], + [ 7.7354558, 47.380339 ], + [ 7.7355095, 47.380281 ], + [ 7.7356062, 47.38028 ], + [ 7.7358128, 47.3802088 ], + [ 7.7358788, 47.3800143 ], + [ 7.7358709999999995, 47.3799998 ], + [ 7.7358481, 47.3799848 ], + [ 7.7318331, 47.378555 ], + [ 7.7315197, 47.3785055 ], + [ 7.7311892, 47.3786117 ], + [ 7.7311675, 47.3786185 ], + [ 7.7311467, 47.3786264 ], + [ 7.731127, 47.3786356 ], + [ 7.7311084999999995, 47.3786458 ], + [ 7.7310914, 47.3786571 ], + [ 7.7310757, 47.3786693 ], + [ 7.7310615, 47.3786823 ], + [ 7.7310491, 47.3786962 ], + [ 7.7310384, 47.3787107 ], + [ 7.7310296, 47.3787257 ], + [ 7.7310227, 47.3787412 ], + [ 7.7310177, 47.3787571 ], + [ 7.7310147, 47.3787732 ], + [ 7.7310137, 47.3787893 ], + [ 7.7309826, 47.3791374 ], + [ 7.7309813, 47.3791531 ], + [ 7.730978, 47.3791687 ], + [ 7.7309729, 47.3791841 ], + [ 7.7309659, 47.3791991 ], + [ 7.730957, 47.3792136 ], + [ 7.7309463, 47.3792276 ], + [ 7.7309339999999995, 47.379241 ], + [ 7.73092, 47.3792535 ], + [ 7.7309046, 47.3792653 ], + [ 7.7308877, 47.3792761 ], + [ 7.7308696, 47.3792859 ], + [ 7.7308503, 47.3792946 ], + [ 7.73083, 47.3793022 ], + [ 7.7308088, 47.3793086 ], + [ 7.7306587, 47.3793466 ], + [ 7.7306462, 47.3793488 ], + [ 7.730634, 47.3793517 ], + [ 7.7306223, 47.3793554 ], + [ 7.7306111, 47.3793597 ], + [ 7.7306004999999995, 47.3793648 ], + [ 7.7305906, 47.3793704 ], + [ 7.7305814999999996, 47.3793766 ], + [ 7.7305732, 47.3793833 ], + [ 7.7305658, 47.3793905 ], + [ 7.7305594, 47.3793981 ], + [ 7.730554, 47.3794061 ], + [ 7.7305497, 47.3794144 ], + [ 7.7305465, 47.3794229 ], + [ 7.7305444, 47.3794315 ], + [ 7.7305434, 47.3794403 ], + [ 7.7305436, 47.379449 ], + [ 7.7305448, 47.3794634 ], + [ 7.7305442, 47.3794778 ], + [ 7.7305416000000005, 47.3794921 ], + [ 7.7305372, 47.3795062 ], + [ 7.730531, 47.37952 ], + [ 7.7305231, 47.3795333 ], + [ 7.7305133, 47.3795461 ], + [ 7.7305019999999995, 47.3795583 ], + [ 7.7304892, 47.3795697 ], + [ 7.7304748, 47.3795804 ], + [ 7.7304592, 47.3795901 ], + [ 7.7304423, 47.3795988 ], + [ 7.7304244, 47.3796065 ], + [ 7.7304055, 47.3796131 ], + [ 7.7303859, 47.3796185 ], + [ 7.7303656, 47.3796227 ], + [ 7.730278, 47.3796396 ], + [ 7.7302638, 47.3796425 ], + [ 7.7302501, 47.3796463 ], + [ 7.7302368999999995, 47.3796509 ], + [ 7.7302244, 47.3796562 ], + [ 7.7302126, 47.3796622 ], + [ 7.7302016, 47.379669 ], + [ 7.7301915, 47.3796763 ], + [ 7.7301825, 47.3796843 ], + [ 7.7301745, 47.3796927 ], + [ 7.7301676, 47.3797016 ], + [ 7.7301619, 47.3797109 ], + [ 7.7301573999999995, 47.3797204 ], + [ 7.7301541, 47.3797302 ], + [ 7.7301208, 47.3798174 ], + [ 7.7300802, 47.3799031 ], + [ 7.7300322999999995, 47.379987 ], + [ 7.7300036, 47.3800303 ], + [ 7.7299694, 47.3800716 ], + [ 7.72993, 47.3801108 ], + [ 7.7298857, 47.3801474 ], + [ 7.7298368, 47.3801812 ], + [ 7.7297837, 47.3802121 ], + [ 7.7297269, 47.3802396 ], + [ 7.7297011, 47.3802508 ], + [ 7.7296768, 47.3802634 ], + [ 7.7296542, 47.3802773 ], + [ 7.7296334, 47.3802925 ], + [ 7.7296145, 47.3803088 ], + [ 7.7295976, 47.3803262 ], + [ 7.729583, 47.3803444 ], + [ 7.7295707, 47.3803634 ], + [ 7.7295608, 47.380383 ], + [ 7.7295533, 47.3804031 ], + [ 7.7295457, 47.3804278 ], + [ 7.729535, 47.3804518 ], + [ 7.7295210999999995, 47.3804751 ], + [ 7.7295041, 47.3804975 ], + [ 7.7294843, 47.3805187 ], + [ 7.7294618, 47.3805386 ], + [ 7.7294366, 47.3805571 ], + [ 7.7294092, 47.380574 ], + [ 7.7293992, 47.3805815 ], + [ 7.7293901, 47.3805896 ], + [ 7.729382, 47.3805982 ], + [ 7.7293751, 47.3806071 ], + [ 7.7293692, 47.3806165 ], + [ 7.7293646, 47.3806262 ], + [ 7.7293611, 47.3806361 ], + [ 7.7293589, 47.3806461 ], + [ 7.7293579, 47.3806562 ], + [ 7.7293483, 47.3809144 ], + [ 7.7293464, 47.3809264 ], + [ 7.7293431, 47.3809382 ], + [ 7.7293382, 47.3809498 ], + [ 7.7293318, 47.380961 ], + [ 7.729324, 47.3809718 ], + [ 7.7293148, 47.3809821 ], + [ 7.7293044, 47.3809919 ], + [ 7.7292033, 47.3810661 ], + [ 7.7291858, 47.3810797 ], + [ 7.7291674, 47.3810927 ], + [ 7.7291481, 47.3811051 ], + [ 7.7290219, 47.3811821 ], + [ 7.7290039, 47.3811958 ], + [ 7.7289877, 47.3812105 ], + [ 7.7289733, 47.381226 ], + [ 7.7289609, 47.3812423 ], + [ 7.7289505, 47.3812592 ], + [ 7.7289123, 47.381315 ], + [ 7.7288626, 47.3813682 ], + [ 7.7288095, 47.3814199 ], + [ 7.7287532, 47.38147 ], + [ 7.7286623, 47.3815515 ], + [ 7.7285017, 47.381716 ], + [ 7.7284483, 47.381771 ], + [ 7.7284011, 47.3818286 ], + [ 7.7283603, 47.3818883 ], + [ 7.7283559, 47.3818966 ], + [ 7.7283478, 47.3819134 ], + [ 7.7288106, 47.3819806 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns284", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Esel", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Esel", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Esel", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Esel", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.2438335, 47.1117746 ], + [ 8.2616031, 47.1275016 ], + [ 8.2637812, 47.1293276 ], + [ 8.2660965, 47.1310733 ], + [ 8.2685427, 47.1327338 ], + [ 8.2711129, 47.1343047 ], + [ 8.2738003, 47.1357815 ], + [ 8.2765974, 47.1371602 ], + [ 8.2794966, 47.1384371 ], + [ 8.2824899, 47.1396086 ], + [ 8.285569, 47.1406716 ], + [ 8.2887256, 47.141623 ], + [ 8.2919509, 47.1424604 ], + [ 8.2952361, 47.1431813 ], + [ 8.2985722, 47.1437838 ], + [ 8.30195, 47.1442663 ], + [ 8.3053603, 47.1446274 ], + [ 8.3087936, 47.1448661 ], + [ 8.3122405, 47.1449818 ], + [ 8.3156916, 47.1449742 ], + [ 8.3191373, 47.1448433 ], + [ 8.3225683, 47.1445893 ], + [ 8.325975, 47.1442132 ], + [ 8.3293482, 47.1437158 ], + [ 8.3326785, 47.1430985 ], + [ 8.3359568, 47.1423631 ], + [ 8.3391741, 47.1415115 ], + [ 8.3423215, 47.1405461 ], + [ 8.3453905, 47.1394695 ], + [ 8.3483726, 47.1382848 ], + [ 8.3512595, 47.1369951 ], + [ 8.3540435, 47.135604 ], + [ 8.3567168, 47.1341153 ], + [ 8.3592721, 47.1325332 ], + [ 8.3617024, 47.1308619 ], + [ 8.3640011, 47.129106 ], + [ 8.3661618, 47.1272704 ], + [ 8.3681786, 47.1253601 ], + [ 8.3700461, 47.1233804 ], + [ 8.371759, 47.1213366 ], + [ 8.3733128, 47.1192344 ], + [ 8.3747031, 47.1170795 ], + [ 8.3759263, 47.114878 ], + [ 8.3769788, 47.1126357 ], + [ 8.377858, 47.1103589 ], + [ 8.3785613, 47.1080538 ], + [ 8.379087, 47.1057267 ], + [ 8.3794335, 47.103384 ], + [ 8.3795999, 47.1010322 ], + [ 8.3795858, 47.0986776 ], + [ 8.3793913, 47.0963268 ], + [ 8.379017, 47.0939861 ], + [ 8.3784638, 47.091662 ], + [ 8.3777333, 47.0893609 ], + [ 8.3768275, 47.087089 ], + [ 8.3757491, 47.0848526 ], + [ 8.3745008, 47.0826578 ], + [ 8.3730861, 47.0805106 ], + [ 8.3715091, 47.0784169 ], + [ 8.3697739, 47.0763825 ], + [ 8.3678853, 47.0744128 ], + [ 8.3658486, 47.0725133 ], + [ 8.3480667, 47.0568022 ], + [ 8.3458887, 47.0549778 ], + [ 8.3435741, 47.0532337 ], + [ 8.3411293, 47.0515747 ], + [ 8.3385609, 47.0500054 ], + [ 8.335876, 47.0485301 ], + [ 8.333082, 47.0471528 ], + [ 8.3301865, 47.0458772 ], + [ 8.3271974, 47.0447069 ], + [ 8.324123, 47.0436451 ], + [ 8.3209715, 47.0426946 ], + [ 8.3177518, 47.041858 ], + [ 8.3144725, 47.0411377 ], + [ 8.3111426, 47.0405356 ], + [ 8.3077712, 47.0400534 ], + [ 8.304367599999999, 47.0396924 ], + [ 8.3009411, 47.0394535 ], + [ 8.297501, 47.0393375 ], + [ 8.2940567, 47.0393445 ], + [ 8.2906176, 47.0394748 ], + [ 8.2871933, 47.0397277 ], + [ 8.2837929, 47.0401028 ], + [ 8.280425900000001, 47.0405988 ], + [ 8.2771013, 47.0412146 ], + [ 8.2738284, 47.0419484 ], + [ 8.270616, 47.0427981 ], + [ 8.267473, 47.0437616 ], + [ 8.264408, 47.0448361 ], + [ 8.2614293, 47.0460187 ], + [ 8.258545, 47.0473061 ], + [ 8.2557632, 47.0486949 ], + [ 8.2530914, 47.0501813 ], + [ 8.2505368, 47.0517611 ], + [ 8.2481067, 47.0534301 ], + [ 8.2458074, 47.0551836 ], + [ 8.2436455, 47.057017 ], + [ 8.2416268, 47.0589252 ], + [ 8.2397569, 47.0609029 ], + [ 8.2380408, 47.0629447 ], + [ 8.2364834, 47.0650451 ], + [ 8.2350888, 47.0671983 ], + [ 8.233861, 47.0693984 ], + [ 8.2328033, 47.0716393 ], + [ 8.2319186, 47.073915 ], + [ 8.2312094, 47.0762193 ], + [ 8.2306776, 47.0785457 ], + [ 8.2303248, 47.0808879 ], + [ 8.2301519, 47.0832395 ], + [ 8.2301594, 47.0855941 ], + [ 8.2303473, 47.0879452 ], + [ 8.2307151, 47.0902864 ], + [ 8.2312618, 47.0926112 ], + [ 8.2319861, 47.0949132 ], + [ 8.2328858, 47.0971863 ], + [ 8.2339586, 47.099424 ], + [ 8.2352015, 47.1016203 ], + [ 8.2366111, 47.1037692 ], + [ 8.2381837, 47.1058647 ], + [ 8.2399148, 47.1079012 ], + [ 8.2417998, 47.1098729 ], + [ 8.2438335, 47.1117746 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSME-01", + "country" : "CHE", + "name" : [ + { + "text" : "LSME Emmen", + "lang" : "de-CH" + }, + { + "text" : "LSME Emmen", + "lang" : "fr-CH" + }, + { + "text" : "LSME Emmen", + "lang" : "it-CH" + }, + { + "text" : "LSME Emmen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Special Flight Office (SFO)", + "lang" : "de-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "fr-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "it-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "en-GB" + } + ], + "siteURL" : "https://skyguide.ch/services/special-flights", + "email" : "specialflight@skyguide.ch", + "phone" : "0041439316236", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.074042, 46.1881336 ], + [ 8.074035, 46.1879924 ], + [ 8.0740174, 46.1878516 ], + [ 8.0739893, 46.1877117 ], + [ 8.0739506, 46.187573 ], + [ 8.0739015, 46.1874359 ], + [ 8.0738421, 46.1873007 ], + [ 8.0737727, 46.1871679 ], + [ 8.0736933, 46.1870378 ], + [ 8.0736043, 46.1869108 ], + [ 8.0735057, 46.1867872 ], + [ 8.0733981, 46.1866673 ], + [ 8.0732815, 46.1865515 ], + [ 8.0731564, 46.1864402 ], + [ 8.073023, 46.1863335 ], + [ 8.0728818, 46.1862318 ], + [ 8.0727331, 46.1861353 ], + [ 8.0725774, 46.1860445 ], + [ 8.072415, 46.1859594 ], + [ 8.0722464, 46.1858803 ], + [ 8.0720721, 46.1858074 ], + [ 8.0718926, 46.185741 ], + [ 8.0717083, 46.1856812 ], + [ 8.0715197, 46.1856282 ], + [ 8.0713274, 46.1855821 ], + [ 8.0711319, 46.1855431 ], + [ 8.0709338, 46.1855112 ], + [ 8.0707334, 46.1854866 ], + [ 8.0705316, 46.1854693 ], + [ 8.0703287, 46.1854593 ], + [ 8.0701253, 46.1854567 ], + [ 8.069922, 46.1854616 ], + [ 8.0697193, 46.1854738 ], + [ 8.0695179, 46.1854934 ], + [ 8.0693181, 46.1855202 ], + [ 8.0691207, 46.1855543 ], + [ 8.0689262, 46.1855955 ], + [ 8.068735, 46.1856438 ], + [ 8.0685477, 46.1856989 ], + [ 8.0683648, 46.1857607 ], + [ 8.0681868, 46.1858291 ], + [ 8.0680142, 46.1859039 ], + [ 8.0678475, 46.1859849 ], + [ 8.0676871, 46.1860718 ], + [ 8.0675335, 46.1861644 ], + [ 8.0673871, 46.1862625 ], + [ 8.0672482, 46.1863657 ], + [ 8.0671173, 46.1864739 ], + [ 8.0669948, 46.1865867 ], + [ 8.0668809, 46.1867037 ], + [ 8.066776, 46.1868248 ], + [ 8.0666804, 46.1869495 ], + [ 8.0665943, 46.1870775 ], + [ 8.066518, 46.1872085 ], + [ 8.0664516, 46.187342 ], + [ 8.0663954, 46.1874778 ], + [ 8.0663495, 46.1876154 ], + [ 8.066314, 46.1877546 ], + [ 8.0662891, 46.1878948 ], + [ 8.0662747, 46.1880357 ], + [ 8.066271, 46.188177 ], + [ 8.066278, 46.1883182 ], + [ 8.0662955, 46.1884589 ], + [ 8.0663237, 46.1885989 ], + [ 8.0663624, 46.1887376 ], + [ 8.0664115, 46.1888747 ], + [ 8.0664708, 46.1890098 ], + [ 8.0665402, 46.1891426 ], + [ 8.0666196, 46.1892727 ], + [ 8.0667086, 46.1893998 ], + [ 8.0668071, 46.1895234 ], + [ 8.0669148, 46.1896433 ], + [ 8.0670314, 46.189759 ], + [ 8.0671565, 46.1898704 ], + [ 8.0672899, 46.1899771 ], + [ 8.0674311, 46.1900788 ], + [ 8.0675797, 46.1901753 ], + [ 8.0677355, 46.1902662 ], + [ 8.0678979, 46.1903513 ], + [ 8.0680664, 46.1904304 ], + [ 8.0682408, 46.1905032 ], + [ 8.0684203, 46.1905696 ], + [ 8.0686046, 46.1906294 ], + [ 8.0687932, 46.1906825 ], + [ 8.0689855, 46.1907285 ], + [ 8.069181, 46.1907676 ], + [ 8.0693792, 46.1907995 ], + [ 8.0695795, 46.1908241 ], + [ 8.0697814, 46.1908414 ], + [ 8.0699844, 46.1908514 ], + [ 8.0701878, 46.1908539 ], + [ 8.0703911, 46.1908491 ], + [ 8.0705938, 46.1908369 ], + [ 8.0707952, 46.1908173 ], + [ 8.070995, 46.1907904 ], + [ 8.0711924, 46.1907564 ], + [ 8.071387, 46.1907151 ], + [ 8.0715782, 46.1906669 ], + [ 8.0717655, 46.1906118 ], + [ 8.0719484, 46.1905499 ], + [ 8.0721264, 46.1904815 ], + [ 8.072299, 46.1904067 ], + [ 8.0724657, 46.1903258 ], + [ 8.0726261, 46.1902388 ], + [ 8.0727797, 46.1901462 ], + [ 8.0729262, 46.1900481 ], + [ 8.073065, 46.1899449 ], + [ 8.0731959, 46.1898367 ], + [ 8.0733184, 46.1897239 ], + [ 8.0734323, 46.1896068 ], + [ 8.0735372, 46.1894858 ], + [ 8.0736328, 46.1893611 ], + [ 8.0737189, 46.1892331 ], + [ 8.0737952, 46.1891021 ], + [ 8.0738616, 46.1889685 ], + [ 8.0739178, 46.1888328 ], + [ 8.0739636, 46.1886951 ], + [ 8.0739991, 46.188556 ], + [ 8.074024, 46.1884158 ], + [ 8.0740383, 46.1882748 ], + [ 8.074042, 46.1881336 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0041", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Gabi", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Gabi", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Gabi", + "lang" : "it-CH" + }, + { + "text" : "Substation Gabi", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.2549593, 47.2992671 ], + [ 8.2674988, 47.3063737 ], + [ 8.2806505, 47.3101463 ], + [ 8.2956266, 47.3121049 ], + [ 8.3073917, 47.3117471 ], + [ 8.3039992, 47.2982801 ], + [ 8.3039482, 47.2951322 ], + [ 8.3210867, 47.292124 ], + [ 8.3253743, 47.2875936 ], + [ 8.3214489, 47.2820467 ], + [ 8.3419047, 47.2253987 ], + [ 8.3274255, 47.2202041 ], + [ 8.3127278, 47.217618 ], + [ 8.2974162, 47.2178231 ], + [ 8.2549593, 47.2992671 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZU001", + "country" : "CHE", + "name" : [ + { + "text" : "LSZU Buttwil", + "lang" : "de-CH" + }, + { + "text" : "LSZU Buttwil", + "lang" : "fr-CH" + }, + { + "text" : "LSZU Buttwil", + "lang" : "it-CH" + }, + { + "text" : "LSZU Buttwil", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Buttwil Airport AG", + "lang" : "de-CH" + }, + { + "text" : "Buttwil Airport AG", + "lang" : "fr-CH" + }, + { + "text" : "Buttwil Airport AG", + "lang" : "it-CH" + }, + { + "text" : "Buttwil Airport AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Patrik Eichenberger", + "lang" : "de-CH" + }, + { + "text" : "Patrik Eichenberger", + "lang" : "fr-CH" + }, + { + "text" : "Patrik Eichenberger", + "lang" : "it-CH" + }, + { + "text" : "Patrik Eichenberger", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.flugschule-eichenberger.ch/uas.html", + "email" : "patrik@flugschule-eichenberger.ch", + "phone" : "0041566755050", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P02DT12H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.9456454, 47.4169396 ], + [ 7.9449335, 47.4169873 ], + [ 7.9444514999999996, 47.4170457 ], + [ 7.944023, 47.4172099 ], + [ 7.9437337, 47.4173519 ], + [ 7.9434032, 47.4175961 ], + [ 7.9433997, 47.4175994 ], + [ 7.943382, 47.4176133 ], + [ 7.9433615, 47.4176308 ], + [ 7.9433416, 47.4176487 ], + [ 7.9433224, 47.417667 ], + [ 7.9433038, 47.4176856 ], + [ 7.9432981, 47.4176939 ], + [ 7.9432916, 47.417699 ], + [ 7.943286, 47.4177044 ], + [ 7.9432856, 47.4177048 ], + [ 7.9432852, 47.4177052 ], + [ 7.9432849, 47.4177056 ], + [ 7.9431683, 47.4178799 ], + [ 7.9439204, 47.4181303 ], + [ 7.945165, 47.4185484 ], + [ 7.9458997, 47.4188116 ], + [ 7.9469726, 47.4191952 ], + [ 7.9469978999999995, 47.4191718 ], + [ 7.9472892, 47.418876 ], + [ 7.9476427, 47.4185168 ], + [ 7.9476748, 47.4184938 ], + [ 7.9478943, 47.4186272 ], + [ 7.9479062, 47.4186335 ], + [ 7.9479187, 47.4186393 ], + [ 7.9479316, 47.4186446 ], + [ 7.9479448999999995, 47.4186494 ], + [ 7.9479586, 47.4186537 ], + [ 7.9479726, 47.4186575 ], + [ 7.9479869999999995, 47.4186607 ], + [ 7.9480015999999996, 47.4186633 ], + [ 7.9480163, 47.4186654 ], + [ 7.9480313, 47.4186669 ], + [ 7.9480463, 47.4186678 ], + [ 7.9480614, 47.4186681 ], + [ 7.9480765, 47.4186679 ], + [ 7.9482805, 47.4186497 ], + [ 7.9484839, 47.4186446 ], + [ 7.9489045, 47.4187145 ], + [ 7.9492167, 47.4187851 ], + [ 7.9494691, 47.4188226 ], + [ 7.949713, 47.4188279 ], + [ 7.9499828, 47.418786 ], + [ 7.9502223999999995, 47.4187452 ], + [ 7.9504393, 47.4187196 ], + [ 7.9506675, 47.4187231 ], + [ 7.9509887, 47.4187783 ], + [ 7.9515606, 47.4189301 ], + [ 7.951585, 47.4189352 ], + [ 7.9516096, 47.4189397 ], + [ 7.9516344, 47.4189437 ], + [ 7.9516594, 47.4189472 ], + [ 7.9516845, 47.4189501 ], + [ 7.9517098, 47.4189525 ], + [ 7.9517351, 47.4189543 ], + [ 7.9517605, 47.4189556 ], + [ 7.951786, 47.4189563 ], + [ 7.9518115, 47.4189565 ], + [ 7.9518366, 47.4189558 ], + [ 7.9518616, 47.4189547 ], + [ 7.9518865, 47.4189529 ], + [ 7.9519114, 47.4189507 ], + [ 7.9519361, 47.4189479 ], + [ 7.9519607, 47.4189446 ], + [ 7.9519851, 47.4189408 ], + [ 7.9520094, 47.4189364 ], + [ 7.9520333999999995, 47.4189316 ], + [ 7.9520572, 47.4189262 ], + [ 7.952183, 47.4188901 ], + [ 7.952292, 47.4188331 ], + [ 7.952362, 47.4187122 ], + [ 7.9523839, 47.4185212 ], + [ 7.9523415, 47.4184552 ], + [ 7.9520853, 47.4184044 ], + [ 7.9518181, 47.418314 ], + [ 7.9515733, 47.4182006 ], + [ 7.9513128, 47.4181038 ], + [ 7.9510364, 47.4180386 ], + [ 7.9507426, 47.4179987 ], + [ 7.9504451, 47.4179878 ], + [ 7.9501354, 47.4180153 ], + [ 7.9498413, 47.4180639 ], + [ 7.9495816, 47.4180897 ], + [ 7.949312, 47.4180761 ], + [ 7.9490589, 47.4180294 ], + [ 7.9488235, 47.4179532 ], + [ 7.9485934, 47.4178563 ], + [ 7.9483639, 47.4177767 ], + [ 7.9482049, 47.4177355 ], + [ 7.9471736, 47.4175747 ], + [ 7.9468767, 47.4175037 ], + [ 7.9466068, 47.4174146 ], + [ 7.9463496, 47.4172768 ], + [ 7.9461198, 47.4170785 ], + [ 7.9461079, 47.4170667 ], + [ 7.9460953, 47.4170553 ], + [ 7.946082, 47.4170442 ], + [ 7.9460681, 47.4170334 ], + [ 7.9460536, 47.4170231 ], + [ 7.9460385, 47.4170131 ], + [ 7.9460229, 47.4170036 ], + [ 7.9460067, 47.4169945 ], + [ 7.9459899, 47.4169858 ], + [ 7.9459727, 47.4169776 ], + [ 7.945955, 47.4169699 ], + [ 7.9459368999999995, 47.4169626 ], + [ 7.9459184, 47.4169559 ], + [ 7.9458982, 47.4169512 ], + [ 7.9458778, 47.4169471 ], + [ 7.9458571, 47.4169435 ], + [ 7.9458362, 47.4169405 ], + [ 7.9458152, 47.4169381 ], + [ 7.9457941, 47.4169363 ], + [ 7.9457728, 47.416935 ], + [ 7.9457515, 47.4169343 ], + [ 7.9457302, 47.4169342 ], + [ 7.9457089, 47.4169347 ], + [ 7.9456877, 47.4169358 ], + [ 7.9456665, 47.4169374 ], + [ 7.9456454, 47.4169396 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns169", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Schafmatt", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Schafmatt", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Schafmatt", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Schafmatt", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.0783902, 46.7539996 ], + [ 7.0774576, 46.7540992 ], + [ 7.0756401, 46.7544092 ], + [ 7.0734232, 46.7545712 ], + [ 7.0703738, 46.7547287 ], + [ 7.070106, 46.7548412 ], + [ 7.0701713999999996, 46.7559946 ], + [ 7.0814234, 46.7552901 ], + [ 7.0813885, 46.7546279 ], + [ 7.0812964, 46.7544999 ], + [ 7.0784552, 46.754652 ], + [ 7.0783902, 46.7539996 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSGE002", + "country" : "CHE", + "name" : [ + { + "text" : "LSGE Ecuvillens (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSGE Ecuvillens (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSGE Ecuvillens (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSGE Ecuvillens (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Aérodrome Régional Fribourg Ecuvillens SA", + "lang" : "de-CH" + }, + { + "text" : "Aérodrome Régional Fribourg Ecuvillens SA", + "lang" : "fr-CH" + }, + { + "text" : "Aérodrome Régional Fribourg Ecuvillens SA", + "lang" : "it-CH" + }, + { + "text" : "Aérodrome Régional Fribourg Ecuvillens SA", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Chef d'aérodrome", + "lang" : "de-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "fr-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "it-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.aerodrome-ecuvillens.ch/index.php?page=./drones/drones_LSGE.htm", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.2119578, 46.8075512 ], + [ 7.2080871, 46.8093973 ], + [ 7.207016, 46.8128126 ], + [ 7.2078843, 46.813656 ], + [ 7.2143951, 46.8138732 ], + [ 7.2145902, 46.8113735 ], + [ 7.2151635, 46.8076768 ], + [ 7.2119578, 46.8075512 ] + ] + ], + "layer" : { + "upper" : 300, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "FR008", + "country" : "CHE", + "name" : [ + { + "text" : "HFR Tavel", + "lang" : "de-CH" + }, + { + "text" : "HFR Tavel", + "lang" : "fr-CH" + }, + { + "text" : "HFR Tavel", + "lang" : "it-CH" + }, + { + "text" : "HFR Tavel", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Freiburger Spital (HFR)", + "lang" : "de-CH" + }, + { + "text" : "Hôpital fribourgeois (HFR)", + "lang" : "fr-CH" + }, + { + "text" : "Hôpital fribourgeois (HFR)", + "lang" : "it-CH" + }, + { + "text" : "Hôpital fribourgeois (HFR)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Die Generaldirektion", + "lang" : "de-CH" + }, + { + "text" : "La direction générale", + "lang" : "fr-CH" + }, + { + "text" : "La direction générale", + "lang" : "it-CH" + }, + { + "text" : "La direction générale", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Sébastien Ruffieux, secrétaire général", + "lang" : "de-CH" + }, + { + "text" : "Sébastien Ruffieux, secrétaire général", + "lang" : "fr-CH" + }, + { + "text" : "Sébastien Ruffieux, secrétaire général", + "lang" : "it-CH" + }, + { + "text" : "Sébastien Ruffieux, secrétaire général", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.fr.ch/police-et-securite/criminalite-ordre-public-et-circulation/drones-legislation-et-demandes-de-derogation", + "email" : "sg@h-fr.ch", + "phone" : "0041263060110", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8691993, 47.5056319 ], + [ 7.869188, 47.5054043 ], + [ 7.8691791, 47.5052241 ], + [ 7.8696863, 47.5052023 ], + [ 7.8702449, 47.5051365 ], + [ 7.8702361, 47.5050657 ], + [ 7.8705992, 47.50505 ], + [ 7.8709643, 47.505005 ], + [ 7.8711844, 47.5050445 ], + [ 7.8714882, 47.504992 ], + [ 7.8713163999999995, 47.5043771 ], + [ 7.8713406, 47.504379 ], + [ 7.8713649, 47.5043804 ], + [ 7.8713892, 47.5043812 ], + [ 7.8714136, 47.5043814 ], + [ 7.8714379999999995, 47.5043811 ], + [ 7.8714623, 47.5043803 ], + [ 7.8714866, 47.5043789 ], + [ 7.8715108, 47.504377 ], + [ 7.8715349, 47.5043745 ], + [ 7.8715588, 47.5043715 ], + [ 7.8715826, 47.5043679 ], + [ 7.8716062, 47.5043638 ], + [ 7.8716295, 47.5043591 ], + [ 7.8716526, 47.5043539 ], + [ 7.8716755, 47.5043482 ], + [ 7.871698, 47.504342 ], + [ 7.8717203, 47.5043352 ], + [ 7.8717421, 47.504328 ], + [ 7.8717637, 47.5043203 ], + [ 7.8717848, 47.5043121 ], + [ 7.8718055, 47.5043034 ], + [ 7.8718257, 47.5042943 ], + [ 7.872024, 47.504202 ], + [ 7.8721844999999995, 47.5041578 ], + [ 7.8724114, 47.5041207 ], + [ 7.87256, 47.504091 ], + [ 7.873016, 47.50399 ], + [ 7.8732691, 47.5039339 ], + [ 7.8732529, 47.5038997 ], + [ 7.8732745, 47.5038961 ], + [ 7.8732959000000005, 47.503892 ], + [ 7.873317, 47.5038872 ], + [ 7.8733377, 47.5038818 ], + [ 7.8733581, 47.5038759 ], + [ 7.8733782, 47.5038694 ], + [ 7.8733978, 47.5038623 ], + [ 7.8734169, 47.5038547 ], + [ 7.8734341, 47.5038458 ], + [ 7.8734507, 47.5038365 ], + [ 7.8734667, 47.5038268 ], + [ 7.8734821, 47.5038166 ], + [ 7.8734969, 47.5038059 ], + [ 7.8735111, 47.5037949 ], + [ 7.8735246, 47.5037835 ], + [ 7.8735374, 47.5037718 ], + [ 7.873553, 47.5037571 ], + [ 7.8728145, 47.5033687 ], + [ 7.8728058, 47.5033778 ], + [ 7.8727965, 47.5033865 ], + [ 7.8727865, 47.5033949 ], + [ 7.8727759, 47.503403 ], + [ 7.8727647, 47.5034106 ], + [ 7.8727529, 47.5034179 ], + [ 7.8727405, 47.5034247 ], + [ 7.8727277, 47.5034311 ], + [ 7.8727143, 47.503437 ], + [ 7.8727006, 47.5034424 ], + [ 7.8726864, 47.5034473 ], + [ 7.8718816, 47.5036902 ], + [ 7.8718498, 47.5037 ], + [ 7.8718177, 47.5037093 ], + [ 7.8717852, 47.5037182 ], + [ 7.8717524999999995, 47.5037264 ], + [ 7.8717194, 47.5037342 ], + [ 7.8716861, 47.5037414 ], + [ 7.8716526, 47.5037481 ], + [ 7.8716188, 47.5037542 ], + [ 7.8715848, 47.5037598 ], + [ 7.8715506, 47.5037648 ], + [ 7.8715163, 47.5037693 ], + [ 7.8714818, 47.5037732 ], + [ 7.8714471, 47.5037766 ], + [ 7.8714124, 47.5037794 ], + [ 7.8710836, 47.5037971 ], + [ 7.8707484, 47.5038101 ], + [ 7.8698616999999995, 47.5038134 ], + [ 7.8697032, 47.5038165 ], + [ 7.8692583, 47.5038412 ], + [ 7.8689234, 47.5038566 ], + [ 7.8683331, 47.5039323 ], + [ 7.8684535, 47.504393 ], + [ 7.8684588, 47.5044132 ], + [ 7.8686612, 47.504371 ], + [ 7.8686833, 47.5043664 ], + [ 7.8692317, 47.5043665 ], + [ 7.8694959, 47.5043417 ], + [ 7.8697168, 47.5043377 ], + [ 7.8699426, 47.5043847 ], + [ 7.8702242, 47.5043931 ], + [ 7.8704039, 47.5043694 ], + [ 7.8704051, 47.504386 ], + [ 7.8704118, 47.5044217 ], + [ 7.870198, 47.5044577 ], + [ 7.8701585, 47.5044605 ], + [ 7.8699382, 47.5044577 ], + [ 7.8691526, 47.5045181 ], + [ 7.8689769, 47.5045377 ], + [ 7.8684988, 47.5045991 ], + [ 7.8683203, 47.5046228 ], + [ 7.868097, 47.5046648 ], + [ 7.8678037, 47.5047045 ], + [ 7.8671571, 47.5047724 ], + [ 7.867192, 47.5048466 ], + [ 7.8666903, 47.5050272 ], + [ 7.8665833, 47.5051013 ], + [ 7.8665807, 47.505133 ], + [ 7.8664994, 47.5052057 ], + [ 7.8664041000000005, 47.5052814 ], + [ 7.8663841, 47.5053053 ], + [ 7.8663711, 47.505347 ], + [ 7.8663821, 47.5053915 ], + [ 7.8664373, 47.5054907 ], + [ 7.8664869, 47.5055663 ], + [ 7.8664973, 47.5055819 ], + [ 7.8666953, 47.5055317 ], + [ 7.866762, 47.5055148 ], + [ 7.8667783, 47.5056572 ], + [ 7.8667817, 47.5056877 ], + [ 7.8668162, 47.5057886 ], + [ 7.8667262000000004, 47.5058141 ], + [ 7.8667354, 47.5058699 ], + [ 7.8667122, 47.5059216 ], + [ 7.8668131, 47.5059641 ], + [ 7.8671223, 47.5059975 ], + [ 7.8674301, 47.505753 ], + [ 7.8691993, 47.5056319 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns295", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Rugen", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Rugen", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Rugen", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Rugen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.9123055, 46.98978 ], + [ 6.9126491, 46.9898114 ], + [ 6.9127098, 46.989816 ], + [ 6.9127172, 46.9898164 ], + [ 6.9128313, 46.9898198 ], + [ 6.9128386, 46.9898198 ], + [ 6.9129527, 46.9898164 ], + [ 6.91296, 46.989815899999996 ], + [ 6.9130731999999995, 46.9898057 ], + [ 6.9130804999999995, 46.9898048 ], + [ 6.9131920000000004, 46.989788 ], + [ 6.9131991, 46.9897867 ], + [ 6.913308, 46.9897632 ], + [ 6.9133149, 46.9897615 ], + [ 6.9134205, 46.9897317 ], + [ 6.9134271, 46.9897296 ], + [ 6.9135285, 46.9896936 ], + [ 6.9135349, 46.9896911 ], + [ 6.9136313, 46.9896492 ], + [ 6.9136372999999995, 46.9896463 ], + [ 6.9137281, 46.9895989 ], + [ 6.9137337, 46.9895957 ], + [ 6.9138181, 46.9895431 ], + [ 6.9138234, 46.9895395 ], + [ 6.9139008, 46.9894821 ], + [ 6.9139055, 46.9894782 ], + [ 6.9139753, 46.9894164 ], + [ 6.9139796, 46.9894123 ], + [ 6.9140413, 46.989346499999996 ], + [ 6.914045, 46.9893422 ], + [ 6.9140981, 46.989273 ], + [ 6.9141013000000004, 46.9892685 ], + [ 6.9141454, 46.9891964 ], + [ 6.914148, 46.9891917 ], + [ 6.9141829, 46.9891173 ], + [ 6.9141848, 46.9891124 ], + [ 6.9142101, 46.9890362 ], + [ 6.9142114, 46.9890313 ], + [ 6.9142269, 46.9889539 ], + [ 6.9142276, 46.9889489 ], + [ 6.9142333, 46.9888715 ], + [ 6.9142333, 46.9888667 ], + [ 6.9142294, 46.988791 ], + [ 6.9142289, 46.9887861 ], + [ 6.9142157, 46.9887109 ], + [ 6.9142146, 46.9887061 ], + [ 6.9141922000000005, 46.9886319 ], + [ 6.9141904, 46.9886272 ], + [ 6.914159, 46.9885545 ], + [ 6.9141566999999995, 46.9885499 ], + [ 6.9141165, 46.9884793 ], + [ 6.9141136, 46.9884749 ], + [ 6.9140648, 46.9884069 ], + [ 6.9140614, 46.9884026 ], + [ 6.9140044, 46.9883376 ], + [ 6.9140005, 46.9883336 ], + [ 6.9139358, 46.9882721 ], + [ 6.9139313, 46.9882683 ], + [ 6.9138593, 46.9882108 ], + [ 6.9138544, 46.9882072 ], + [ 6.9137755, 46.9881541 ], + [ 6.9137702, 46.9881508 ], + [ 6.9136851, 46.9881024 ], + [ 6.9136793999999995, 46.9880995 ], + [ 6.9135886, 46.9880561 ], + [ 6.9135826, 46.9880535 ], + [ 6.9134868, 46.9880155 ], + [ 6.9134805, 46.9880133 ], + [ 6.9134307, 46.9879963 ], + [ 6.9131592, 46.9879088 ], + [ 6.9131322, 46.9879003 ], + [ 6.9131284, 46.9878992 ], + [ 6.913023, 46.9878708 ], + [ 6.9130191, 46.9878699 ], + [ 6.9129105, 46.9878478 ], + [ 6.9129065, 46.9878472 ], + [ 6.912896, 46.9878457 ], + [ 6.912795, 46.9878242 ], + [ 6.9127908, 46.987823399999996 ], + [ 6.9126738, 46.9878063 ], + [ 6.9126695, 46.9878058 ], + [ 6.9126206, 46.9878009 ], + [ 6.9123225999999995, 46.9877748 ], + [ 6.9122616, 46.9877705 ], + [ 6.9122542, 46.9877701 ], + [ 6.9121405, 46.9877671 ], + [ 6.9121331999999995, 46.9877672 ], + [ 6.9120194999999995, 46.987771 ], + [ 6.9120121999999995, 46.9877715 ], + [ 6.9118994, 46.987782 ], + [ 6.9118922, 46.9877829 ], + [ 6.9117812, 46.9878001 ], + [ 6.9117741, 46.9878014 ], + [ 6.9116657, 46.9878251 ], + [ 6.9116588, 46.9878268 ], + [ 6.9115538, 46.9878569 ], + [ 6.9115472, 46.987859 ], + [ 6.9114463, 46.9878951 ], + [ 6.91144, 46.9878976 ], + [ 6.9113441, 46.9879396 ], + [ 6.9113381, 46.9879425 ], + [ 6.9112479, 46.9879899 ], + [ 6.9112422, 46.9879932 ], + [ 6.9111584, 46.9880458 ], + [ 6.9111532, 46.9880494 ], + [ 6.9110762999999995, 46.9881068 ], + [ 6.9110715, 46.9881106 ], + [ 6.9110022, 46.9881723 ], + [ 6.9109979, 46.9881764 ], + [ 6.9109366, 46.9882421 ], + [ 6.9109329, 46.9882464 ], + [ 6.9108801, 46.9883154 ], + [ 6.910877, 46.9883199 ], + [ 6.9108332, 46.9883918 ], + [ 6.9108306, 46.9883965 ], + [ 6.9107959999999995, 46.9884707 ], + [ 6.9107941, 46.9884756 ], + [ 6.910769, 46.9885515 ], + [ 6.9107677, 46.9885565 ], + [ 6.9107522, 46.9886336 ], + [ 6.9107515, 46.9886386 ], + [ 6.9107459, 46.9887178 ], + [ 6.9107459, 46.9887231 ], + [ 6.9107506999999995, 46.9888041 ], + [ 6.9107514, 46.9888093 ], + [ 6.9107668, 46.9888896 ], + [ 6.9107681, 46.9888948 ], + [ 6.9107941, 46.9889739 ], + [ 6.9107961, 46.9889789 ], + [ 6.9108324, 46.9890561 ], + [ 6.910835, 46.989061 ], + [ 6.9108813, 46.9891356 ], + [ 6.9108846, 46.9891403 ], + [ 6.9109405, 46.9892118 ], + [ 6.9109444, 46.9892163 ], + [ 6.9110094, 46.989284 ], + [ 6.9110139, 46.9892882 ], + [ 6.9110876, 46.9893517 ], + [ 6.9110927, 46.9893556 ], + [ 6.9111744, 46.9894143 ], + [ 6.9111799, 46.9894179 ], + [ 6.9112691, 46.9894713 ], + [ 6.911275, 46.9894746 ], + [ 6.9113708, 46.9895222 ], + [ 6.9113772, 46.9895251 ], + [ 6.9114789, 46.9895667 ], + [ 6.9114856, 46.9895692 ], + [ 6.9115511, 46.9895917 ], + [ 6.9118396, 46.9896841 ], + [ 6.9118526, 46.9896882 ], + [ 6.9118659000000005, 46.9896923 ], + [ 6.9119158, 46.989707 ], + [ 6.9119293, 46.9897108 ], + [ 6.9119801, 46.9897241 ], + [ 6.9119939, 46.9897274 ], + [ 6.9120587, 46.9897421 ], + [ 6.912111, 46.9897525 ], + [ 6.9121251, 46.989755099999996 ], + [ 6.9121921, 46.9897661 ], + [ 6.9123055, 46.98978 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "NE01", + "country" : "CHE", + "name" : [ + { + "text" : "Bâtiment administratif des Poudrières BAP", + "lang" : "de-CH" + }, + { + "text" : "Bâtiment administratif des Poudrières BAP", + "lang" : "fr-CH" + }, + { + "text" : "Bâtiment administratif des Poudrières BAP", + "lang" : "it-CH" + }, + { + "text" : "Bâtiment administratif des Poudrières BAP", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "regulationExemption" : "YES", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Police Neuchâteloise", + "lang" : "de-CH" + }, + { + "text" : "Police Neuchâteloise", + "lang" : "fr-CH" + }, + { + "text" : "Police Neuchâteloise", + "lang" : "it-CH" + }, + { + "text" : "Police Neuchâteloise", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "PN - Rens et opérations", + "lang" : "de-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "fr-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "it-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "PN - Rens et opérations", + "lang" : "de-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "fr-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "it-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ne.ch/autorites/DESC/PONE/Pages/Drones.aspx", + "email" : "Police.Neuchateloise@ne.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.1817454, 46.2281964 ], + [ 6.1825266, 46.2290969 ], + [ 6.1825659, 46.2291269 ], + [ 6.1837688, 46.2297471 ], + [ 6.1852202, 46.2300056 ], + [ 6.1867047, 46.2298639 ], + [ 6.1880017, 46.2293433 ], + [ 6.1880626, 46.2293063 ], + [ 6.1888516, 46.228647 ], + [ 6.1893028, 46.2278493 ], + [ 6.189371, 46.2269936 ], + [ 6.1890491, 46.2261662 ], + [ 6.1883697, 46.2254506 ], + [ 6.1883289, 46.2254197 ], + [ 6.1871062, 46.2247977 ], + [ 6.1856337, 46.2245474 ], + [ 6.1841353, 46.224707 ], + [ 6.1828386, 46.2252521 ], + [ 6.1827792, 46.2252899 ], + [ 6.1818821, 46.2261367 ], + [ 6.1815191, 46.2271571 ], + [ 6.1817454, 46.2281964 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-48", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.1370737, 46.2952267 ], + [ 6.1371833, 46.2952266 ], + [ 6.1376079, 46.2955431 ], + [ 6.1386725, 46.2959535 ], + [ 6.139868, 46.2961157 ], + [ 6.1410773, 46.2960138 ], + [ 6.142182, 46.2956579 ], + [ 6.1423138999999995, 46.2955964 ], + [ 6.1432058, 46.2950213 ], + [ 6.1437976, 46.2942832 ], + [ 6.1440314, 46.2934546 ], + [ 6.1438843, 46.2926164 ], + [ 6.1433708, 46.2918507 ], + [ 6.143137, 46.2916098 ], + [ 6.1423068, 46.2909914 ], + [ 6.1412416, 46.2905812 ], + [ 6.1401388, 46.290432 ], + [ 6.1393417, 46.2900401 ], + [ 6.1378955, 46.2898024 ], + [ 6.1378848, 46.2898021 ], + [ 6.1368327, 46.289872 ], + [ 6.1358464, 46.2901354 ], + [ 6.1349988, 46.290573 ], + [ 6.1349375, 46.2906147 ], + [ 6.1343084, 46.2911734 ], + [ 6.1339108, 46.2918264 ], + [ 6.1337721, 46.2925287 ], + [ 6.1337721, 46.292536 ], + [ 6.1339006, 46.2932354 ], + [ 6.1342861, 46.2938878 ], + [ 6.1349022, 46.2944488 ], + [ 6.1349221, 46.2944627 ], + [ 6.1359102, 46.2949634 ], + [ 6.1370737, 46.2952267 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-35", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.2849264, 46.6689221 ], + [ 7.2859325, 46.6684782 ], + [ 7.2808646, 46.6632404 ], + [ 7.2797344, 46.6636616 ], + [ 7.2849264, 46.6689221 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSWS002", + "country" : "CHE", + "name" : [ + { + "text" : "LSWS Lac Noir (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSWS Lac Noir (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSWS Lac Noir (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSWS Lac Noir (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "startDateTime" : "2024-11-01T00:00:00+01:00", + "endDateTime" : "2025-04-01T00:00:00+02:00" + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Aérodrome Régional Fribourg Ecuvillens SA", + "lang" : "de-CH" + }, + { + "text" : "Aérodrome Régional Fribourg Ecuvillens SA", + "lang" : "fr-CH" + }, + { + "text" : "Aérodrome Régional Fribourg Ecuvillens SA", + "lang" : "it-CH" + }, + { + "text" : "Aérodrome Régional Fribourg Ecuvillens SA", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Chef d'aérodrome", + "lang" : "de-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "fr-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "it-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.aerodrome-ecuvillens.ch/index.php?page=./drones/drones_LSGE.htm", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7631569, 47.4135455 ], + [ 7.7630595, 47.4132726 ], + [ 7.7626513, 47.412237 ], + [ 7.7626484, 47.412234 ], + [ 7.7626405, 47.4122256 ], + [ 7.7626309, 47.4122143 ], + [ 7.7626219, 47.4122028 ], + [ 7.7626138000000005, 47.4121909 ], + [ 7.7626074, 47.4121805 ], + [ 7.7626015, 47.4121698 ], + [ 7.7625963, 47.412159 ], + [ 7.762525, 47.4122031 ], + [ 7.7624327, 47.4121673 ], + [ 7.7621258, 47.4120656 ], + [ 7.7619407, 47.4120094 ], + [ 7.7618233, 47.4119378 ], + [ 7.7616803999999995, 47.4118207 ], + [ 7.7616848, 47.4117328 ], + [ 7.7617781, 47.4116828 ], + [ 7.7618597, 47.4116258 ], + [ 7.7618862, 47.4115665 ], + [ 7.7618887999999995, 47.4115055 ], + [ 7.7618878, 47.411456 ], + [ 7.7618799, 47.4114104 ], + [ 7.7618831, 47.411363 ], + [ 7.7617896, 47.4113441 ], + [ 7.7616102, 47.4113139 ], + [ 7.7615327, 47.411322 ], + [ 7.7612841, 47.411379 ], + [ 7.76113, 47.4114405 ], + [ 7.7611099, 47.4114523 ], + [ 7.7609907, 47.4115217 ], + [ 7.7609516, 47.4115441 ], + [ 7.760982, 47.4116439 ], + [ 7.7610201, 47.4117426 ], + [ 7.7610658, 47.4118397 ], + [ 7.7610890999999995, 47.41188 ], + [ 7.7611172, 47.4119189 ], + [ 7.7611498, 47.4119562 ], + [ 7.7613843, 47.412201 ], + [ 7.7614135, 47.4122302 ], + [ 7.7614443, 47.4122586 ], + [ 7.7614768, 47.4122861 ], + [ 7.761892, 47.4126248 ], + [ 7.7621414, 47.4128038 ], + [ 7.762117, 47.412819 ], + [ 7.7620686, 47.4128716 ], + [ 7.7618948, 47.4129476 ], + [ 7.7617061, 47.413032 ], + [ 7.7615652, 47.4129018 ], + [ 7.7614703, 47.4129559 ], + [ 7.7614472, 47.4129424 ], + [ 7.7614105, 47.4129779 ], + [ 7.7614019, 47.4129862 ], + [ 7.7616935, 47.4133075 ], + [ 7.7619556, 47.4136139 ], + [ 7.7621835, 47.4138149 ], + [ 7.7622132, 47.4137902 ], + [ 7.7622475, 47.4137617 ], + [ 7.762301, 47.4138041 ], + [ 7.7624132, 47.4137694 ], + [ 7.7627633, 47.4136518 ], + [ 7.7631442, 47.4135489 ], + [ 7.7631569, 47.4135455 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr081", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Bachmatte", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Bachmatte", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Bachmatte", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Bachmatte", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7555366, 47.4113885 ], + [ 7.7554537, 47.4114375 ], + [ 7.7554329, 47.4114468 ], + [ 7.7554084, 47.4114556 ], + [ 7.7550215, 47.4115774 ], + [ 7.7549879, 47.4115893 ], + [ 7.7549556, 47.4116026 ], + [ 7.7549201, 47.4116197 ], + [ 7.7548951, 47.4116335 ], + [ 7.7548789, 47.4116017 ], + [ 7.7548733, 47.4115908 ], + [ 7.7548037999999995, 47.4114547 ], + [ 7.7547969, 47.4114412 ], + [ 7.7547556, 47.4113603 ], + [ 7.7547051, 47.4112557 ], + [ 7.7545779, 47.4111858 ], + [ 7.7544311, 47.4111051 ], + [ 7.7541404, 47.410979 ], + [ 7.7539435999999995, 47.4108941 ], + [ 7.7538135, 47.4108379 ], + [ 7.7535288, 47.4110233 ], + [ 7.7533141, 47.4111631 ], + [ 7.7532996, 47.4112064 ], + [ 7.7532099, 47.4114739 ], + [ 7.7531669, 47.4116115 ], + [ 7.7532194, 47.411822 ], + [ 7.7532446, 47.4119233 ], + [ 7.7533265, 47.4119784 ], + [ 7.7535533, 47.4121305 ], + [ 7.7536732, 47.4121334 ], + [ 7.7538075, 47.412478899999996 ], + [ 7.7538128, 47.4124926 ], + [ 7.753818, 47.4125061 ], + [ 7.7535389, 47.4128585 ], + [ 7.7535065, 47.4132576 ], + [ 7.7531329, 47.4132143 ], + [ 7.7531147, 47.4132122 ], + [ 7.7530792, 47.4132425 ], + [ 7.7530447, 47.4133492 ], + [ 7.7530555, 47.4133857 ], + [ 7.7530281, 47.4134356 ], + [ 7.7530284, 47.413484 ], + [ 7.7529997999999996, 47.4135254 ], + [ 7.7529118, 47.4135846 ], + [ 7.7528981, 47.4136197 ], + [ 7.7528217999999995, 47.4136964 ], + [ 7.7527697, 47.4137162 ], + [ 7.7527396, 47.4137538 ], + [ 7.7526165, 47.4138341 ], + [ 7.7525282, 47.4138687 ], + [ 7.7523732, 47.413966 ], + [ 7.7523351, 47.4139991 ], + [ 7.7523254999999995, 47.4140019 ], + [ 7.7523054, 47.4140216 ], + [ 7.752126, 47.4141323 ], + [ 7.7520654, 47.4141591 ], + [ 7.7520335, 47.4141781 ], + [ 7.7520027, 47.414181 ], + [ 7.7518356, 47.4142362 ], + [ 7.7517294, 47.4142578 ], + [ 7.7517487, 47.4142797 ], + [ 7.7519443, 47.4144717 ], + [ 7.7519776, 47.4145017 ], + [ 7.7519612, 47.4145162 ], + [ 7.7519476, 47.4145307 ], + [ 7.7519358, 47.414546 ], + [ 7.7519259, 47.4145618 ], + [ 7.7519122, 47.4145949 ], + [ 7.7519068, 47.4146291 ], + [ 7.7519027, 47.4146706 ], + [ 7.7518934, 47.4147117 ], + [ 7.7518788, 47.4147522 ], + [ 7.7518592, 47.4147916 ], + [ 7.7518346000000005, 47.4148298 ], + [ 7.7518053, 47.4148663 ], + [ 7.7517714, 47.414901 ], + [ 7.7517332, 47.4149336 ], + [ 7.751691, 47.4149639 ], + [ 7.7516452000000005, 47.4149915 ], + [ 7.751596, 47.4150164 ], + [ 7.7515473, 47.4150365 ], + [ 7.7514959999999995, 47.4150532 ], + [ 7.7514424, 47.4150664 ], + [ 7.7514167, 47.4150714 ], + [ 7.7513676, 47.4150785 ], + [ 7.7513178, 47.4150826 ], + [ 7.7512676, 47.4150837 ], + [ 7.7512175, 47.4150819 ], + [ 7.7511678, 47.4150771 ], + [ 7.7509498, 47.4150494 ], + [ 7.7508637, 47.4150408 ], + [ 7.7507769, 47.4150368 ], + [ 7.7507274, 47.4150371 ], + [ 7.7508183, 47.4152662 ], + [ 7.7509332, 47.4155559 ], + [ 7.7510367, 47.415828 ], + [ 7.7510409, 47.4160641 ], + [ 7.7510235, 47.4163683 ], + [ 7.7510181, 47.4164053 ], + [ 7.7509898, 47.4165512 ], + [ 7.7514351, 47.4166235 ], + [ 7.7518427, 47.4167461 ], + [ 7.7522405, 47.4168963 ], + [ 7.7526132, 47.4170716 ], + [ 7.7531265, 47.417314 ], + [ 7.7532096, 47.4173276 ], + [ 7.7532768999999995, 47.4171954 ], + [ 7.7533504, 47.4169526 ], + [ 7.7533774, 47.4167812 ], + [ 7.7533408, 47.41651 ], + [ 7.753335, 47.4163917 ], + [ 7.7533328, 47.4163482 ], + [ 7.7533496, 47.4161455 ], + [ 7.7533719, 47.4161433 ], + [ 7.7534434, 47.4159553 ], + [ 7.7542096, 47.4151459 ], + [ 7.7541796, 47.4136325 ], + [ 7.7547645, 47.41353 ], + [ 7.754775, 47.4135249 ], + [ 7.7547797, 47.4135233 ], + [ 7.7547846, 47.413522 ], + [ 7.7547896, 47.4135211 ], + [ 7.7547948, 47.4135205 ], + [ 7.7548001, 47.4135203 ], + [ 7.7548053, 47.4135205 ], + [ 7.7548105, 47.413521 ], + [ 7.7560897, 47.4129404 ], + [ 7.7560216, 47.4127234 ], + [ 7.7559876, 47.4125472 ], + [ 7.7560256, 47.4123499 ], + [ 7.7561198000000005, 47.4122199 ], + [ 7.75615, 47.4121245 ], + [ 7.7561, 47.4119403 ], + [ 7.7560262, 47.4118236 ], + [ 7.7558898, 47.4116601 ], + [ 7.755723, 47.4115218 ], + [ 7.7555366, 47.4113885 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns014", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Zwischenflüe", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Zwischenflüe", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Zwischenflüe", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Zwischenflüe", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.8067007, 47.1313528 ], + [ 6.808518, 47.1311983 ], + [ 6.8118596, 47.130794 ], + [ 6.8151662, 47.1302728 ], + [ 6.8184289, 47.129636 ], + [ 6.8216393, 47.1288854 ], + [ 6.8247887, 47.1280229 ], + [ 6.8278687, 47.1270507 ], + [ 6.8308712, 47.1259716 ], + [ 6.8337882, 47.1247884 ], + [ 6.8366119, 47.1235041 ], + [ 6.8393349, 47.1221223 ], + [ 6.8419498999999995, 47.1206465 ], + [ 6.8444500999999995, 47.1190808 ], + [ 6.8468286, 47.1174293 ], + [ 6.8490793, 47.1156963 ], + [ 6.8511962, 47.1138865 ], + [ 6.8531737, 47.1120046 ], + [ 6.8550065, 47.1100557 ], + [ 6.8566898, 47.108045 ], + [ 6.8582192, 47.1059777 ], + [ 6.8595904999999995, 47.1038594 ], + [ 6.8608002, 47.1016957 ], + [ 6.8618451, 47.0994924 ], + [ 6.8627224, 47.0972552 ], + [ 6.8634299, 47.0949902 ], + [ 6.8639656, 47.0927032 ], + [ 6.8643281, 47.0904005 ], + [ 6.8645166, 47.0880881 ], + [ 6.8645306, 47.0857721 ], + [ 6.86437, 47.0834587 ], + [ 6.8640352, 47.081154 ], + [ 6.8635273, 47.0788641 ], + [ 6.8628475, 47.0765951 ], + [ 6.8619977, 47.0743531 ], + [ 6.8609802, 47.0721438 ], + [ 6.8597977, 47.0699733 ], + [ 6.8584532, 47.0678473 ], + [ 6.8569505, 47.0657713 ], + [ 6.8552935, 47.0637509 ], + [ 6.8534866, 47.0617914 ], + [ 6.8515346, 47.0598981 ], + [ 6.8494428, 47.0580759 ], + [ 6.8472166, 47.0563297 ], + [ 6.8448619, 47.054664 ], + [ 6.842385, 47.0530834 ], + [ 6.8397925, 47.0515919 ], + [ 6.8370913, 47.0501936 ], + [ 6.8261587, 47.0448299 ], + [ 6.8233089, 47.0435073 ], + [ 6.8203618, 47.0422884 ], + [ 6.8173256, 47.0411765 ], + [ 6.8142085, 47.0401746 ], + [ 6.8110192, 47.0392856 ], + [ 6.8077662, 47.0385118 ], + [ 6.8044585, 47.0378553 ], + [ 6.8011052, 47.037318 ], + [ 6.7977153999999995, 47.0369013 ], + [ 6.7942984, 47.0366064 ], + [ 6.7908635, 47.036434 ], + [ 6.7874202, 47.0363847 ], + [ 6.7839778, 47.0364585 ], + [ 6.7805457, 47.0366553 ], + [ 6.7771334, 47.0369745 ], + [ 6.7737501, 47.0374153 ], + [ 6.7704052, 47.0379765 ], + [ 6.7671076, 47.0386564 ], + [ 6.7638666, 47.0394533 ], + [ 6.7606909, 47.040365 ], + [ 6.7575893, 47.041389 ], + [ 6.7545702, 47.0425224 ], + [ 6.7516418, 47.0437623 ], + [ 6.7488123, 47.0451051 ], + [ 6.7460892999999995, 47.0465473 ], + [ 6.7434803, 47.0480848 ], + [ 6.7409924, 47.0497135 ], + [ 6.7386326, 47.0514289 ], + [ 6.7364071, 47.0532263 ], + [ 6.7343222, 47.0551009 ], + [ 6.7323836, 47.0570474 ], + [ 6.7305965, 47.0590605 ], + [ 6.7289659, 47.0611348 ], + [ 6.7274964, 47.0632645 ], + [ 6.7261918, 47.0654438 ], + [ 6.7250558, 47.0676668 ], + [ 6.7240915999999995, 47.0699274 ], + [ 6.7233018, 47.0722194 ], + [ 6.7226886, 47.0745364 ], + [ 6.7222536999999996, 47.0768722 ], + [ 6.7219982, 47.0792203 ], + [ 6.7219231, 47.0815743 ], + [ 6.7220284, 47.0839278 ], + [ 6.7223138, 47.0862744 ], + [ 6.7227788, 47.0886074 ], + [ 6.723093, 47.0897379 ], + [ 6.7233487, 47.0898467 ], + [ 6.7235952999999995, 47.0899052 ], + [ 6.7237571, 47.0900056 ], + [ 6.7240819, 47.0903272 ], + [ 6.7241316, 47.0904898 ], + [ 6.7241515, 47.090845 ], + [ 6.7242816, 47.0910222 ], + [ 6.7246744, 47.0913272 ], + [ 6.7251613, 47.0916215 ], + [ 6.7256941999999995, 47.0918804 ], + [ 6.7258744, 47.0919394 ], + [ 6.7261752999999995, 47.0919898 ], + [ 6.7265172, 47.0919871 ], + [ 6.7266476, 47.091949 ], + [ 6.7270343, 47.0916934 ], + [ 6.7275873, 47.0912638 ], + [ 6.7277517, 47.0912101 ], + [ 6.7278801, 47.0911354 ], + [ 6.72795, 47.091019 ], + [ 6.7289343, 47.0905445 ], + [ 6.7291229999999995, 47.0903453 ], + [ 6.7295815, 47.0900182 ], + [ 6.7302033, 47.0898053 ], + [ 6.7307895, 47.0896467 ], + [ 6.7311896, 47.0895783 ], + [ 6.7314256, 47.0895143 ], + [ 6.7319919, 47.0894654 ], + [ 6.7333974, 47.0896563 ], + [ 6.7337315, 47.0896701 ], + [ 6.7345511, 47.0896559 ], + [ 6.7351778, 47.0896054 ], + [ 6.7354669, 47.0896987 ], + [ 6.7356131, 47.0897458 ], + [ 6.736058, 47.0899359 ], + [ 6.736188, 47.0899914 ], + [ 6.7368483, 47.0901795 ], + [ 6.7373408999999995, 47.090244 ], + [ 6.7377724, 47.0903345 ], + [ 6.738435, 47.0904019 ], + [ 6.7386323, 47.0904102 ], + [ 6.7389968, 47.090355 ], + [ 6.7392461, 47.0903762 ], + [ 6.7400295, 47.0905274 ], + [ 6.7403169, 47.0906205 ], + [ 6.740576, 47.0906278 ], + [ 6.7415702, 47.0909269 ], + [ 6.741763, 47.0910481 ], + [ 6.741887, 47.0911644 ], + [ 6.7419984, 47.0913545 ], + [ 6.7421717999999995, 47.091552 ], + [ 6.7423873, 47.0916425 ], + [ 6.7429518, 47.0919456 ], + [ 6.7435352, 47.0921443 ], + [ 6.744065, 47.0923776 ], + [ 6.7443946, 47.092561 ], + [ 6.7445667, 47.0926845 ], + [ 6.7446993, 47.0930063 ], + [ 6.7447867, 47.0933946 ], + [ 6.7448787, 47.0936443 ], + [ 6.7449211, 47.093963 ], + [ 6.7450555, 47.0944001 ], + [ 6.7451457, 47.0949925 ], + [ 6.7452654, 47.0953562 ], + [ 6.7454849, 47.0957981 ], + [ 6.745888, 47.0964905 ], + [ 6.7464478, 47.0970106 ], + [ 6.7465953, 47.0972693 ], + [ 6.7467035, 47.0975596 ], + [ 6.746729, 47.0978158 ], + [ 6.7466817, 47.0980998 ], + [ 6.7463201, 47.0986587 ], + [ 6.7463248, 47.0988055 ], + [ 6.7465214, 47.0992942 ], + [ 6.746538, 47.0994086 ], + [ 6.7465083, 47.099529 ], + [ 6.7464125, 47.0996677 ], + [ 6.7461107, 47.0998415 ], + [ 6.7457171, 47.1001523 ], + [ 6.7455657, 47.1004311 ], + [ 6.7451904, 47.100801 ], + [ 6.7449359, 47.1011082 ], + [ 6.7448518, 47.1011764 ], + [ 6.7447117, 47.1012769 ], + [ 6.7445989, 47.1013576 ], + [ 6.7444775, 47.1014767 ], + [ 6.7441613, 47.1017306 ], + [ 6.7439516, 47.1020132 ], + [ 6.7433111, 47.1025857 ], + [ 6.7429179, 47.1029372 ], + [ 6.742045, 47.1035323 ], + [ 6.7418555, 47.1037432 ], + [ 6.741786, 47.1037838 ], + [ 6.7414621, 47.1042091 ], + [ 6.7413618, 47.1045614 ], + [ 6.7413748, 47.1046217 ], + [ 6.7411245, 47.1050706 ], + [ 6.7410168, 47.1052635 ], + [ 6.7406865, 47.1057158 ], + [ 6.7406279, 47.1059852 ], + [ 6.7399856, 47.1080175 ], + [ 6.7399783, 47.10825 ], + [ 6.7400352, 47.1087549 ], + [ 6.7401209, 47.1090488 ], + [ 6.7403994, 47.1094728 ], + [ 6.7405433, 47.1096227 ], + [ 6.7408985999999995, 47.1096604 ], + [ 6.7415087, 47.1098421 ], + [ 6.7421531, 47.1098934 ], + [ 6.7422965999999995, 47.1099665 ], + [ 6.7424241, 47.1099535 ], + [ 6.7429419, 47.1098057 ], + [ 6.7430914, 47.1096975 ], + [ 6.7438856, 47.1095983 ], + [ 6.744396, 47.1095706 ], + [ 6.7447634999999995, 47.1095142 ], + [ 6.744898, 47.1095376 ], + [ 6.7450396999999995, 47.1096273 ], + [ 6.7456619, 47.1096852 ], + [ 6.7459648, 47.1097503 ], + [ 6.7463261, 47.109791799999996 ], + [ 6.7468437, 47.1099901 ], + [ 6.7474867, 47.1103853 ], + [ 6.7478818, 47.1108187 ], + [ 6.7482717999999995, 47.1111139 ], + [ 6.7483541, 47.1112176 ], + [ 6.7486713, 47.1113863 ], + [ 6.7489242, 47.1114785 ], + [ 6.7492169, 47.1116545 ], + [ 6.7498096, 47.112247 ], + [ 6.750044, 47.1124273 ], + [ 6.7500964, 47.1125476 ], + [ 6.7509881, 47.1135264 ], + [ 6.7511281, 47.1137884 ], + [ 6.7512343, 47.1139166 ], + [ 6.7513103, 47.1139555 ], + [ 6.7514914, 47.1142014 ], + [ 6.7516733, 47.1143547 ], + [ 6.7520636, 47.1145929 ], + [ 6.7523874, 47.1147678 ], + [ 6.7530875, 47.1149715 ], + [ 6.7541384, 47.1151548 ], + [ 6.7543683, 47.1152983 ], + [ 6.7545459999999995, 47.1154659 ], + [ 6.7548401, 47.1156816 ], + [ 6.7552521, 47.1160759 ], + [ 6.7556592, 47.1162652 ], + [ 6.7557298, 47.1163468 ], + [ 6.756047, 47.1165897 ], + [ 6.7562464, 47.1167887 ], + [ 6.7562671, 47.1168639 ], + [ 6.7565002, 47.1170067 ], + [ 6.756905, 47.1170847 ], + [ 6.7577466, 47.1173726 ], + [ 6.7580653, 47.1174346 ], + [ 6.7584757, 47.1176273 ], + [ 6.7585655, 47.11771 ], + [ 6.7591521, 47.1180089 ], + [ 6.7595, 47.1183067 ], + [ 6.7598413, 47.1184784 ], + [ 6.7601923, 47.1186123 ], + [ 6.7609645, 47.1187657 ], + [ 6.7613663, 47.1189034 ], + [ 6.7622177, 47.1193018 ], + [ 6.7628492, 47.1195517 ], + [ 6.7636738, 47.1199935 ], + [ 6.7639485, 47.1200665 ], + [ 6.7647133, 47.120384 ], + [ 6.7657738, 47.1207214 ], + [ 6.7660812, 47.1207659 ], + [ 6.7674482, 47.1210672 ], + [ 6.7682124, 47.1211058 ], + [ 6.7685005, 47.1211397 ], + [ 6.7687267, 47.1211917 ], + [ 6.7691173, 47.1212316 ], + [ 6.7697841, 47.1212647 ], + [ 6.7705908, 47.1214134 ], + [ 6.7717273, 47.1214759 ], + [ 6.7721031, 47.1214474 ], + [ 6.772536, 47.1214614 ], + [ 6.7727143, 47.1214425 ], + [ 6.7733222, 47.1213104 ], + [ 6.7735087, 47.1211938 ], + [ 6.7739785, 47.1211377 ], + [ 6.7744593, 47.1211103 ], + [ 6.7746844, 47.1211201 ], + [ 6.7754741, 47.1212546 ], + [ 6.7759695, 47.1213636 ], + [ 6.7763659, 47.1215223 ], + [ 6.7768388, 47.1217473 ], + [ 6.7772279, 47.1219925 ], + [ 6.7774224, 47.1221623 ], + [ 6.7774437, 47.1221897 ], + [ 6.7776589, 47.1224645 ], + [ 6.7782285, 47.1230832 ], + [ 6.77883, 47.123527 ], + [ 6.7791604, 47.1237011 ], + [ 6.7793727, 47.123771 ], + [ 6.7798334, 47.1238661 ], + [ 6.7809275, 47.1239973 ], + [ 6.7813712, 47.1240789 ], + [ 6.7823467, 47.1242043 ], + [ 6.7831972, 47.1243599 ], + [ 6.7839241999999995, 47.1246036 ], + [ 6.7854996, 47.1250479 ], + [ 6.7860625, 47.1252411 ], + [ 6.7868317, 47.1254358 ], + [ 6.7873938, 47.1256764 ], + [ 6.7881304, 47.12583 ], + [ 6.7895262, 47.126185 ], + [ 6.7911475, 47.126672 ], + [ 6.791715, 47.1267829 ], + [ 6.7921642, 47.1269581 ], + [ 6.7923428999999995, 47.1270482 ], + [ 6.7924954, 47.1271249 ], + [ 6.7926952, 47.127169 ], + [ 6.7934199, 47.1273989 ], + [ 6.7938929, 47.1276418 ], + [ 6.7942804, 47.1277295 ], + [ 6.7950616, 47.1281818 ], + [ 6.7955643, 47.128563 ], + [ 6.7958129, 47.128684 ], + [ 6.7961752, 47.1287954 ], + [ 6.7965477, 47.1290359 ], + [ 6.7968938, 47.1291451 ], + [ 6.7974461, 47.1292152 ], + [ 6.7980601, 47.1291995 ], + [ 6.7984881999999995, 47.1290798 ], + [ 6.7987438000000004, 47.128981 ], + [ 6.7990493999999995, 47.1289292 ], + [ 6.8002863, 47.1290142 ], + [ 6.8003587, 47.1290287 ], + [ 6.8005392, 47.1291768 ], + [ 6.8006155, 47.1291947 ], + [ 6.8019316, 47.1293921 ], + [ 6.8022519, 47.1295514 ], + [ 6.802746, 47.1296439 ], + [ 6.8031062, 47.129768 ], + [ 6.8035248, 47.1299614 ], + [ 6.8042358, 47.1301727 ], + [ 6.8048136, 47.130289 ], + [ 6.8052695, 47.1304315 ], + [ 6.8057251, 47.1306412 ], + [ 6.8060456, 47.130712 ], + [ 6.8062945, 47.1308748 ], + [ 6.8065769, 47.1311525 ], + [ 6.8066642, 47.1312701 ], + [ 6.8067007, 47.1313528 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSGC001", + "country" : "CHE", + "name" : [ + { + "text" : "LSGC Aéroport les Eplatures", + "lang" : "de-CH" + }, + { + "text" : "LSGC Aéroport les Eplatures", + "lang" : "fr-CH" + }, + { + "text" : "LSGC Aéroport les Eplatures", + "lang" : "it-CH" + }, + { + "text" : "LSGC Aéroport les Eplatures", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "LSGC Aéroport les Eplatures", + "lang" : "de-CH" + }, + { + "text" : "LSGC Aéroport les Eplatures", + "lang" : "fr-CH" + }, + { + "text" : "LSGC Aéroport les Eplatures", + "lang" : "it-CH" + }, + { + "text" : "LSGC Aéroport les Eplatures", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Chef d'aérodrome", + "lang" : "de-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "fr-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "it-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Emanuele Tocalli", + "lang" : "de-CH" + }, + { + "text" : "Emanuele Tocalli", + "lang" : "fr-CH" + }, + { + "text" : "Emanuele Tocalli", + "lang" : "it-CH" + }, + { + "text" : "Emanuele Tocalli", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.skyguide.ch/services/special-flights", + "email" : "info@leseplaturesairport.ch", + "phone" : "0041329259797", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7178053, 47.380113 ], + [ 7.7189074, 47.3804026 ], + [ 7.719049, 47.3804412 ], + [ 7.7192668, 47.3804922 ], + [ 7.7195248, 47.3805441 ], + [ 7.7197835, 47.3805802 ], + [ 7.7201284, 47.3806057 ], + [ 7.7205164, 47.3806232 ], + [ 7.7208357, 47.3806416 ], + [ 7.7212404, 47.3799622 ], + [ 7.7200369, 47.3796035 ], + [ 7.7197226, 47.3795364 ], + [ 7.7195728, 47.3795003 ], + [ 7.7193888, 47.3794303 ], + [ 7.7192988, 47.3793878 ], + [ 7.7191497, 47.3792984 ], + [ 7.7190361, 47.3792014 ], + [ 7.7190174, 47.3791414 ], + [ 7.7190189, 47.3790343 ], + [ 7.719016, 47.3789754 ], + [ 7.7190094, 47.3789254 ], + [ 7.718996, 47.3788805 ], + [ 7.7189725, 47.3788303 ], + [ 7.718929, 47.3787541 ], + [ 7.7188168, 47.378613 ], + [ 7.7187474, 47.3785068 ], + [ 7.7186918, 47.3784134 ], + [ 7.7186372, 47.3783138 ], + [ 7.7184604, 47.3782642 ], + [ 7.7182679, 47.3784898 ], + [ 7.7180895, 47.378755 ], + [ 7.7180859, 47.3787598 ], + [ 7.7180817, 47.3787643 ], + [ 7.7180768, 47.3787686 ], + [ 7.7180715, 47.3787726 ], + [ 7.7180656, 47.3787762 ], + [ 7.7180593, 47.3787795 ], + [ 7.7180526, 47.3787824 ], + [ 7.7180455, 47.3787849 ], + [ 7.7180326, 47.3787892 ], + [ 7.7180199, 47.378794 ], + [ 7.7180077, 47.3787992 ], + [ 7.7179958, 47.3788048 ], + [ 7.7179844, 47.3788108 ], + [ 7.7179735, 47.3788172 ], + [ 7.717963, 47.378824 ], + [ 7.7179531, 47.3788312 ], + [ 7.7176967, 47.379026 ], + [ 7.7174731, 47.3792053 ], + [ 7.7174647, 47.3792117 ], + [ 7.7174559, 47.3792177 ], + [ 7.7174466, 47.3792234 ], + [ 7.7174369, 47.3792288 ], + [ 7.7174268, 47.3792338 ], + [ 7.7174163, 47.3792385 ], + [ 7.7174054, 47.3792428 ], + [ 7.717321, 47.379274 ], + [ 7.7173108, 47.3792781 ], + [ 7.717301, 47.3792828 ], + [ 7.7172918, 47.3792879 ], + [ 7.7172830999999995, 47.3792935 ], + [ 7.7172751, 47.3792995 ], + [ 7.7172677, 47.3793058 ], + [ 7.717261, 47.3793126 ], + [ 7.7172552, 47.3793196 ], + [ 7.71725, 47.3793269 ], + [ 7.717244, 47.3793358 ], + [ 7.7172373, 47.3793443 ], + [ 7.7172298, 47.3793527 ], + [ 7.7172217, 47.3793607 ], + [ 7.7172129, 47.3793684 ], + [ 7.7172035, 47.3793758 ], + [ 7.7171936, 47.3793828 ], + [ 7.7171854, 47.3793841 ], + [ 7.717172, 47.3793956 ], + [ 7.7171026, 47.3794323 ], + [ 7.7170971999999995, 47.3794355 ], + [ 7.7170922, 47.379439 ], + [ 7.7170878, 47.3794428 ], + [ 7.717084, 47.379447 ], + [ 7.7170808, 47.3794513 ], + [ 7.7170781999999996, 47.379455899999996 ], + [ 7.7170764, 47.3794606 ], + [ 7.7169718, 47.3797833 ], + [ 7.7169346999999995, 47.3798441 ], + [ 7.7173052, 47.3799526 ], + [ 7.7173597, 47.3799726 ], + [ 7.7175258, 47.3799855 ], + [ 7.7178053, 47.380113 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns244", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Örlenberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Örlenberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Örlenberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Örlenberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7429946, 46.6134846 ], + [ 7.742892, 46.6111309 ], + [ 7.7426107, 46.6087841 ], + [ 7.7421517, 46.6064507 ], + [ 7.7415161, 46.604137 ], + [ 7.7407056999999995, 46.6018495 ], + [ 7.7397229, 46.5995943 ], + [ 7.7385703, 46.5973776 ], + [ 7.737251, 46.5952055 ], + [ 7.7357686999999995, 46.593084 ], + [ 7.7341276, 46.5910188 ], + [ 7.7323319999999995, 46.5890157 ], + [ 7.7303869, 46.58708 ], + [ 7.7282978, 46.5852172 ], + [ 7.7260702, 46.5834322 ], + [ 7.7237103, 46.5817301 ], + [ 7.7212246, 46.5801153 ], + [ 7.7186199, 46.5785924 ], + [ 7.7159034, 46.5771656 ], + [ 7.7130824, 46.5758386 ], + [ 7.7101647, 46.5746152 ], + [ 7.7071582, 46.5734988 ], + [ 7.7040713, 46.5724922 ], + [ 7.7009123, 46.5715984 ], + [ 7.6976899, 46.5708197 ], + [ 7.694413, 46.5701583 ], + [ 7.6910903, 46.569616 ], + [ 7.6877312, 46.5691943 ], + [ 7.6843447, 46.5688942 ], + [ 7.6809401, 46.5687168 ], + [ 7.6775267, 46.5686623 ], + [ 7.6741138, 46.5687311 ], + [ 7.6707108, 46.5689228 ], + [ 7.667327, 46.569237 ], + [ 7.6639716, 46.5696728 ], + [ 7.6606538, 46.570229 ], + [ 7.6573827, 46.5709041 ], + [ 7.6541672, 46.5716962 ], + [ 7.6510162, 46.5726033 ], + [ 7.6479382000000005, 46.5736227 ], + [ 7.6449416, 46.5747518 ], + [ 7.6420347, 46.5759873 ], + [ 7.6392255, 46.5773261 ], + [ 7.6365215, 46.5787643 ], + [ 7.6339302, 46.580298 ], + [ 7.6314588, 46.5819232 ], + [ 7.6291139999999995, 46.5836352 ], + [ 7.6269021, 46.5854294 ], + [ 7.6248294, 46.587301 ], + [ 7.6229014, 46.5892447 ], + [ 7.6211234999999995, 46.5912554 ], + [ 7.6195006, 46.5933274 ], + [ 7.618037, 46.5954551 ], + [ 7.6167369, 46.5976326 ], + [ 7.6156038, 46.5998541 ], + [ 7.6146408999999995, 46.6021134 ], + [ 7.6138507, 46.6044043 ], + [ 7.6132355, 46.6067205 ], + [ 7.612797, 46.6090558 ], + [ 7.6125364, 46.6114037 ], + [ 7.6124545, 46.6137578 ], + [ 7.6125515, 46.616111599999996 ], + [ 7.6128272, 46.6184587 ], + [ 7.6132807, 46.6207926 ], + [ 7.613911, 46.623107 ], + [ 7.6147162999999995, 46.6253955 ], + [ 7.6156944, 46.6276518 ], + [ 7.6168427, 46.6298697 ], + [ 7.6181579, 46.6320431 ], + [ 7.6196366, 46.6341662 ], + [ 7.6212747, 46.636233 ], + [ 7.6230678, 46.6382379 ], + [ 7.6250108, 46.6401753 ], + [ 7.6270985, 46.6420401 ], + [ 7.6293253, 46.643827 ], + [ 7.6316849, 46.6455311 ], + [ 7.6341709, 46.6471478 ], + [ 7.6367765, 46.6486726 ], + [ 7.6394946, 46.6501013 ], + [ 7.6423176, 46.6514301 ], + [ 7.645238, 46.6526552 ], + [ 7.6482475, 46.6537733 ], + [ 7.6513381, 46.6547814 ], + [ 7.6545011, 46.6556766 ], + [ 7.6577279, 46.6564565 ], + [ 7.6610097, 46.6571189 ], + [ 7.6643374, 46.6576621 ], + [ 7.6677018, 46.6580846 ], + [ 7.6710939, 46.6583851 ], + [ 7.6745041, 46.6585628 ], + [ 7.6779232, 46.6586174 ], + [ 7.6813417, 46.6585485 ], + [ 7.6847503, 46.6583565 ], + [ 7.6881395999999995, 46.6580418 ], + [ 7.6915002999999995, 46.6576053 ], + [ 7.6948231, 46.6570482 ], + [ 7.698099, 46.656372 ], + [ 7.7013189, 46.6555786 ], + [ 7.7044739, 46.6546702 ], + [ 7.7075555, 46.6536492 ], + [ 7.7105551, 46.6525185 ], + [ 7.7134646, 46.6512812 ], + [ 7.7162758, 46.6499406 ], + [ 7.7189812, 46.6485005 ], + [ 7.7215733, 46.6469648 ], + [ 7.724045, 46.6453378 ], + [ 7.7263895, 46.6436238 ], + [ 7.7286003999999995, 46.6418276 ], + [ 7.7306717, 46.6399542 ], + [ 7.7325976, 46.6380086 ], + [ 7.7343729, 46.6359963 ], + [ 7.7359927, 46.6339226 ], + [ 7.7374526, 46.6317934 ], + [ 7.7387487, 46.6296145 ], + [ 7.7398774, 46.6273918 ], + [ 7.7408355, 46.6251315 ], + [ 7.7416206, 46.6228397 ], + [ 7.7422305, 46.6205227 ], + [ 7.7426635, 46.6181869 ], + [ 7.7429184, 46.6158388 ], + [ 7.7429946, 46.6134846 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSGR001", + "country" : "CHE", + "name" : [ + { + "text" : "LSGR Reichenbach", + "lang" : "de-CH" + }, + { + "text" : "LSGR Reichenbach", + "lang" : "fr-CH" + }, + { + "text" : "LSGR Reichenbach", + "lang" : "it-CH" + }, + { + "text" : "LSGR Reichenbach", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Flugplatzgenossenschaft Reichenbach", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzgenossenschaft Reichenbach", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzgenossenschaft Reichenbach", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzgenossenschaft Reichenbach", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Roland Lüscher", + "lang" : "de-CH" + }, + { + "text" : "Roland Lüscher", + "lang" : "fr-CH" + }, + { + "text" : "Roland Lüscher", + "lang" : "it-CH" + }, + { + "text" : "Roland Lüscher", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.flugplatz-reichenbach.ch/?page_id=173", + "email" : "flugplatzleiter@flugplatz-reichenbach.ch", + "phone" : "0041796421761", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.7282618, 47.1567927 ], + [ 8.7282529, 47.156651600000004 ], + [ 8.7282333, 47.156511 ], + [ 8.7282029, 47.1563712 ], + [ 8.7281618, 47.1562327 ], + [ 8.7281102, 47.1560959 ], + [ 8.7280481, 47.1559612 ], + [ 8.7279757, 47.1558288 ], + [ 8.7278933, 47.1556992 ], + [ 8.7278011, 47.1555727 ], + [ 8.7276993, 47.1554496 ], + [ 8.7275882, 47.1553304 ], + [ 8.7274681, 47.1552153 ], + [ 8.7273394, 47.1551047 ], + [ 8.7272023, 47.1549988 ], + [ 8.7270573, 47.1548979 ], + [ 8.7269047, 47.1548024 ], + [ 8.7267451, 47.1547124 ], + [ 8.7265787, 47.1546282 ], + [ 8.7264061, 47.1545501 ], + [ 8.7262278, 47.1544783 ], + [ 8.7260442, 47.1544129 ], + [ 8.7258558, 47.1543542 ], + [ 8.7256632, 47.1543023 ], + [ 8.7254669, 47.1542573 ], + [ 8.7252674, 47.1542194 ], + [ 8.7250652, 47.1541887 ], + [ 8.724861, 47.1541653 ], + [ 8.7246552, 47.1541491 ], + [ 8.7244485, 47.1541403 ], + [ 8.7242414, 47.154139 ], + [ 8.7240345, 47.154145 ], + [ 8.7238284, 47.1541584 ], + [ 8.7236235, 47.1541791 ], + [ 8.7234205, 47.1542071 ], + [ 8.72322, 47.1542423 ], + [ 8.7230224, 47.1542847 ], + [ 8.7228283, 47.154334 ], + [ 8.7226383, 47.1543902 ], + [ 8.7224529, 47.1544531 ], + [ 8.7222725, 47.1545225 ], + [ 8.722097699999999, 47.1545983 ], + [ 8.721929, 47.1546802 ], + [ 8.7217667, 47.154768 ], + [ 8.7216115, 47.1548615 ], + [ 8.7214636, 47.1549604 ], + [ 8.7213235, 47.1550645 ], + [ 8.7211916, 47.1551734 ], + [ 8.7210682, 47.1552869 ], + [ 8.720953699999999, 47.1554046 ], + [ 8.7208484, 47.1555262 ], + [ 8.7207526, 47.1556515 ], + [ 8.7206665, 47.1557799 ], + [ 8.7205904, 47.1559113 ], + [ 8.7205244, 47.1560452 ], + [ 8.7204689, 47.1561813 ], + [ 8.7204238, 47.1563192 ], + [ 8.7203894, 47.1564585 ], + [ 8.7203657, 47.1565989 ], + [ 8.7203529, 47.1567399 ], + [ 8.7203508, 47.1568811 ], + [ 8.7203596, 47.1570223 ], + [ 8.7203792, 47.1571629 ], + [ 8.7204096, 47.1573027 ], + [ 8.7204507, 47.1574411 ], + [ 8.7205023, 47.157578 ], + [ 8.7205644, 47.1577127 ], + [ 8.7206367, 47.1578451 ], + [ 8.7207191, 47.1579747 ], + [ 8.7208113, 47.1581012 ], + [ 8.7209131, 47.1582243 ], + [ 8.7210242, 47.1583435 ], + [ 8.7211443, 47.1584586 ], + [ 8.721273, 47.1585693 ], + [ 8.7214101, 47.1586752 ], + [ 8.7215551, 47.158776 ], + [ 8.7217076, 47.1588716 ], + [ 8.7218673, 47.1589616 ], + [ 8.7220337, 47.1590457 ], + [ 8.7222063, 47.1591238 ], + [ 8.7223846, 47.1591957 ], + [ 8.7225682, 47.1592611 ], + [ 8.7227566, 47.1593198 ], + [ 8.7229492, 47.1593717 ], + [ 8.7231456, 47.1594167 ], + [ 8.7233451, 47.1594546 ], + [ 8.7235473, 47.1594853 ], + [ 8.7237515, 47.1595088 ], + [ 8.7239573, 47.1595249 ], + [ 8.724164, 47.1595337 ], + [ 8.724371099999999, 47.1595351 ], + [ 8.7245781, 47.1595291 ], + [ 8.7247842, 47.1595157 ], + [ 8.7249891, 47.1594949 ], + [ 8.7251921, 47.1594669 ], + [ 8.7253927, 47.1594317 ], + [ 8.7255903, 47.1593894 ], + [ 8.7257844, 47.15934 ], + [ 8.7259744, 47.1592838 ], + [ 8.7261599, 47.1592209 ], + [ 8.7263402, 47.1591515 ], + [ 8.726515, 47.1590757 ], + [ 8.7266838, 47.1589938 ], + [ 8.726846, 47.1589059 ], + [ 8.7270013, 47.1588124 ], + [ 8.7271492, 47.1587135 ], + [ 8.7272893, 47.1586095 ], + [ 8.7274212, 47.158500599999996 ], + [ 8.7275445, 47.1583871 ], + [ 8.727659, 47.1582694 ], + [ 8.7277643, 47.1581477 ], + [ 8.727860100000001, 47.1580225 ], + [ 8.7279462, 47.157894 ], + [ 8.7280223, 47.1577626 ], + [ 8.7280882, 47.1576286 ], + [ 8.7281438, 47.1574926 ], + [ 8.7281888, 47.1573547 ], + [ 8.7282232, 47.1572153 ], + [ 8.7282469, 47.157075 ], + [ 8.7282597, 47.156934 ], + [ 8.7282618, 47.1567927 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BIB0001", + "country" : "CHE", + "name" : [ + { + "text" : "Kantonsgefängnis Schwyz", + "lang" : "de-CH" + }, + { + "text" : "Kantonsgefängnis Schwyz", + "lang" : "fr-CH" + }, + { + "text" : "Kantonsgefängnis Schwyz", + "lang" : "it-CH" + }, + { + "text" : "Kantonsgefängnis Schwyz", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Justizvollzug Kanton Schwyz", + "lang" : "de-CH" + }, + { + "text" : "Amt für Justizvollzug Kanton Schwyz", + "lang" : "fr-CH" + }, + { + "text" : "Amt für Justizvollzug Kanton Schwyz", + "lang" : "it-CH" + }, + { + "text" : "Amt für Justizvollzug Kanton Schwyz", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Amtsvorsteher/-in", + "lang" : "de-CH" + }, + { + "text" : "Amtsvorsteher/-in", + "lang" : "fr-CH" + }, + { + "text" : "Amtsvorsteher/-in", + "lang" : "it-CH" + }, + { + "text" : "Amtsvorsteher/-in", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Liliane Kistler", + "lang" : "de-CH" + }, + { + "text" : "Liliane Kistler", + "lang" : "fr-CH" + }, + { + "text" : "Liliane Kistler", + "lang" : "it-CH" + }, + { + "text" : "Liliane Kistler", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.sz.ch/ajv", + "email" : "ajv@sz.ch", + "phone" : "0041418195640", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.5580036, 46.756135 ], + [ 6.5580005, 46.7559937 ], + [ 6.5579867, 46.7558528 ], + [ 6.5579622, 46.7557125 ], + [ 6.557927, 46.7555733 ], + [ 6.5578812, 46.7554355 ], + [ 6.5578251, 46.7552996 ], + [ 6.5577586, 46.7551659 ], + [ 6.5576821, 46.7550348 ], + [ 6.5575957, 46.7549066 ], + [ 6.5574996, 46.7547817 ], + [ 6.5573942, 46.7546604 ], + [ 6.5572797, 46.7545431 ], + [ 6.5571564, 46.75443 ], + [ 6.5570246999999995, 46.7543216 ], + [ 6.5568848, 46.754218 ], + [ 6.5567373, 46.7541196 ], + [ 6.5565825, 46.7540266 ], + [ 6.5564209, 46.7539394 ], + [ 6.5562528, 46.753858 ], + [ 6.5560787, 46.7537829 ], + [ 6.5558992, 46.7537141 ], + [ 6.5557147, 46.7536518 ], + [ 6.5555257000000005, 46.7535963 ], + [ 6.5553327, 46.7535476 ], + [ 6.5551362, 46.753506 ], + [ 6.5549368999999995, 46.7534714 ], + [ 6.5547352, 46.7534441 ], + [ 6.5545318, 46.7534241 ], + [ 6.554327, 46.7534114 ], + [ 6.5541216, 46.7534061 ], + [ 6.5539161, 46.7534082 ], + [ 6.553711, 46.7534177 ], + [ 6.5535069, 46.7534346 ], + [ 6.5533043, 46.7534588 ], + [ 6.5531039, 46.7534902 ], + [ 6.5529062, 46.7535288 ], + [ 6.5527117, 46.7535744 ], + [ 6.5525209, 46.753627 ], + [ 6.5523343, 46.7536864 ], + [ 6.5521526, 46.7537524 ], + [ 6.5519761, 46.7538248 ], + [ 6.5518054, 46.7539035 ], + [ 6.5516409, 46.7539883 ], + [ 6.5514831000000004, 46.7540788 ], + [ 6.5513324, 46.7541749 ], + [ 6.5511892, 46.7542763 ], + [ 6.5510539, 46.7543827 ], + [ 6.5509269, 46.7544938 ], + [ 6.5508086, 46.7546093 ], + [ 6.5506992, 46.7547289 ], + [ 6.5505991, 46.7548523 ], + [ 6.5505085, 46.7549791 ], + [ 6.5504277, 46.755109 ], + [ 6.5503569, 46.7552417 ], + [ 6.5502962, 46.7553767 ], + [ 6.550246, 46.7555137 ], + [ 6.5502062, 46.7556523 ], + [ 6.5501771, 46.7557921 ], + [ 6.5501586, 46.7559328 ], + [ 6.5501509, 46.756074 ], + [ 6.550154, 46.7562153 ], + [ 6.5501678, 46.7563563 ], + [ 6.5501923, 46.7564965 ], + [ 6.5502275, 46.7566357 ], + [ 6.5502732, 46.7567735 ], + [ 6.5503293, 46.7569094 ], + [ 6.5503958, 46.7570431 ], + [ 6.5504723, 46.7571742 ], + [ 6.5505587, 46.7573024 ], + [ 6.5506547, 46.7574274 ], + [ 6.5507601, 46.7575487 ], + [ 6.5508746, 46.757666 ], + [ 6.5509979, 46.757779 ], + [ 6.5511297, 46.7578875 ], + [ 6.5512695, 46.7579911 ], + [ 6.551417, 46.7580895 ], + [ 6.5515718, 46.7581825 ], + [ 6.5517334, 46.7582697 ], + [ 6.5519015, 46.7583511 ], + [ 6.5520756, 46.758426299999996 ], + [ 6.5522551, 46.7584951 ], + [ 6.5524397, 46.7585573 ], + [ 6.5526287, 46.7586129 ], + [ 6.5528217, 46.7586615 ], + [ 6.5530182, 46.7587032 ], + [ 6.5532175, 46.7587377 ], + [ 6.5534192000000004, 46.758765 ], + [ 6.5536227, 46.7587851 ], + [ 6.5538275, 46.7587977 ], + [ 6.5540329, 46.758803 ], + [ 6.5542385, 46.7588009 ], + [ 6.5544436, 46.7587914 ], + [ 6.5546477, 46.7587746 ], + [ 6.5548502, 46.7587504 ], + [ 6.5550507, 46.758719 ], + [ 6.5552484, 46.7586804 ], + [ 6.555443, 46.7586347 ], + [ 6.5556338, 46.7585821 ], + [ 6.5558203, 46.7585227 ], + [ 6.5560021, 46.758456699999996 ], + [ 6.5561786, 46.7583843 ], + [ 6.5563493, 46.7583056 ], + [ 6.5565138, 46.7582208 ], + [ 6.5566716, 46.7581303 ], + [ 6.5568223, 46.7580342 ], + [ 6.5569655000000004, 46.7579328 ], + [ 6.5571008, 46.7578264 ], + [ 6.5572277, 46.7577153 ], + [ 6.5573461, 46.7575998 ], + [ 6.5574555, 46.7574802 ], + [ 6.5575556, 46.7573568 ], + [ 6.5576462, 46.7572299 ], + [ 6.557727, 46.7571 ], + [ 6.5577978, 46.7569674 ], + [ 6.5578584, 46.7568324 ], + [ 6.5579086, 46.7566954 ], + [ 6.5579483, 46.7565567 ], + [ 6.5579775, 46.7564169 ], + [ 6.5579959, 46.7562762 ], + [ 6.5580036, 46.756135 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0070", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Mathod", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Mathod", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Mathod", + "lang" : "it-CH" + }, + { + "text" : "Substation Mathod", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.9440707, 47.4430772 ], + [ 7.9439069, 47.4431006 ], + [ 7.9438615, 47.4431457 ], + [ 7.9435967, 47.4432057 ], + [ 7.9434675, 47.4431832 ], + [ 7.9432558, 47.4432296 ], + [ 7.9442166, 47.44323 ], + [ 7.9440707, 47.4430772 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns154", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Riedmatt", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Riedmatt", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Riedmatt", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Riedmatt", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6767432, 47.520174 ], + [ 7.6767371, 47.5200328 ], + [ 7.6767201, 47.519892 ], + [ 7.6766923, 47.519752 ], + [ 7.6766536, 47.5196132 ], + [ 7.6766044, 47.519476 ], + [ 7.6765445, 47.5193406 ], + [ 7.6764743, 47.5192076 ], + [ 7.6763939, 47.5190773 ], + [ 7.6763036, 47.51895 ], + [ 7.6762036, 47.518826 ], + [ 7.6760941, 47.5187058 ], + [ 7.6759754000000004, 47.5185896 ], + [ 7.675848, 47.5184778 ], + [ 7.6757121, 47.5183707 ], + [ 7.6755681, 47.5182685 ], + [ 7.6754164, 47.5181716 ], + [ 7.6752574, 47.5180802 ], + [ 7.6750916, 47.5179945 ], + [ 7.6749194, 47.5179149 ], + [ 7.6747413, 47.5178414 ], + [ 7.6745578, 47.5177744 ], + [ 7.6743693, 47.5177139 ], + [ 7.6741764, 47.5176603 ], + [ 7.6739796, 47.5176135 ], + [ 7.6737795, 47.5175738 ], + [ 7.6735766, 47.5175413 ], + [ 7.6733715, 47.5175159 ], + [ 7.6731647, 47.5174979 ], + [ 7.6729568, 47.5174872 ], + [ 7.6727483, 47.517484 ], + [ 7.6725399, 47.5174881 ], + [ 7.672332, 47.5174996 ], + [ 7.6721254, 47.5175184 ], + [ 7.6719205, 47.5175446 ], + [ 7.6717179, 47.517578 ], + [ 7.6715181, 47.5176185 ], + [ 7.6713218, 47.517666 ], + [ 7.6711293, 47.5177205 ], + [ 7.6709414, 47.5177817 ], + [ 7.6707585, 47.5178494 ], + [ 7.670581, 47.5179236 ], + [ 7.6704095, 47.518004 ], + [ 7.6702444, 47.5180903 ], + [ 7.6700863, 47.5181823 ], + [ 7.6699354, 47.5182799 ], + [ 7.6697923, 47.5183826 ], + [ 7.6696574, 47.5184903 ], + [ 7.6695309, 47.5186026 ], + [ 7.6694133, 47.5187193 ], + [ 7.6693049, 47.5188399 ], + [ 7.6692059, 47.5189643 ], + [ 7.6691167, 47.5190919 ], + [ 7.6690375, 47.5192226 ], + [ 7.6689684, 47.5193559 ], + [ 7.6689098, 47.5194915 ], + [ 7.6688617, 47.5196289 ], + [ 7.6688243, 47.5197679 ], + [ 7.6687977, 47.519908 ], + [ 7.6687819, 47.5200488 ], + [ 7.6687771, 47.5201901 ], + [ 7.6687832, 47.5203313 ], + [ 7.6688001, 47.520472 ], + [ 7.6688279999999995, 47.520612 ], + [ 7.6688666, 47.5207509 ], + [ 7.6689158, 47.5208881 ], + [ 7.6689756, 47.5210234 ], + [ 7.6690458, 47.521156500000004 ], + [ 7.6691262, 47.5212868 ], + [ 7.6692165, 47.5214141 ], + [ 7.6693166, 47.5215381 ], + [ 7.669426, 47.5216583 ], + [ 7.6695447, 47.5217745 ], + [ 7.6696721, 47.5218863 ], + [ 7.669808, 47.5219934 ], + [ 7.669952, 47.5220956 ], + [ 7.6701037, 47.5221925 ], + [ 7.6702626, 47.522284 ], + [ 7.6704285, 47.5223696 ], + [ 7.6706007, 47.5224493 ], + [ 7.6707788, 47.5225228 ], + [ 7.6709624, 47.5225898 ], + [ 7.6711507999999995, 47.5226502 ], + [ 7.6713436999999995, 47.5227039 ], + [ 7.6715405, 47.5227507 ], + [ 7.6717406, 47.5227904 ], + [ 7.6719436, 47.5228229 ], + [ 7.6721487, 47.5228483 ], + [ 7.6723555999999995, 47.5228663 ], + [ 7.6725635, 47.522877 ], + [ 7.672772, 47.5228802 ], + [ 7.6729804, 47.5228761 ], + [ 7.6731883, 47.5228646 ], + [ 7.673395, 47.5228458 ], + [ 7.6735999, 47.5228196 ], + [ 7.6738025, 47.5227862 ], + [ 7.6740023, 47.5227457 ], + [ 7.6741987, 47.5226981 ], + [ 7.6743911, 47.5226437 ], + [ 7.674579, 47.5225825 ], + [ 7.674762, 47.5225147 ], + [ 7.6749395, 47.5224406 ], + [ 7.675111, 47.5223602 ], + [ 7.6752761, 47.5222739 ], + [ 7.6754342, 47.5221818 ], + [ 7.6755851, 47.5220843 ], + [ 7.6757281, 47.5219815 ], + [ 7.6758631, 47.5218738 ], + [ 7.6759896, 47.5217615 ], + [ 7.6761071, 47.5216448 ], + [ 7.6762156, 47.5215242 ], + [ 7.6763145, 47.5213998 ], + [ 7.6764037, 47.5212721 ], + [ 7.6764829, 47.5211415 ], + [ 7.676552, 47.5210082 ], + [ 7.6766106, 47.5208726 ], + [ 7.6766586, 47.5207352 ], + [ 7.676696, 47.5205962 ], + [ 7.6767226, 47.5204561 ], + [ 7.6767384, 47.5203152 ], + [ 7.6767432, 47.520174 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0059", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Lachmatt", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Lachmatt", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Lachmatt", + "lang" : "it-CH" + }, + { + "text" : "Substation Lachmatt", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7754968, 47.4976113 ], + [ 7.7752982, 47.4976472 ], + [ 7.7751224, 47.4976881 ], + [ 7.7749647, 47.4977436 ], + [ 7.7749493, 47.4977591 ], + [ 7.774877, 47.497832 ], + [ 7.7748445, 47.4978502 ], + [ 7.7748251, 47.4979221 ], + [ 7.7747797, 47.4980707 ], + [ 7.774775, 47.4981264 ], + [ 7.7747749, 47.4981821 ], + [ 7.7747796000000005, 47.4982395 ], + [ 7.7747891, 47.4982964 ], + [ 7.7748017, 47.4983528 ], + [ 7.7748181, 47.4984088 ], + [ 7.7748214, 47.4984179 ], + [ 7.7748383, 47.4984643 ], + [ 7.7748626, 47.498519 ], + [ 7.7749516, 47.4986677 ], + [ 7.7749721, 47.4987056 ], + [ 7.7750582, 47.4989424 ], + [ 7.7750825, 47.4990273 ], + [ 7.7751914, 47.4990763 ], + [ 7.7756176, 47.4992682 ], + [ 7.7763632, 47.4996223 ], + [ 7.7769684, 47.4996595 ], + [ 7.7771063, 47.4996229 ], + [ 7.7772488, 47.4995927 ], + [ 7.7774125, 47.4995945 ], + [ 7.7775622, 47.4996173 ], + [ 7.7776669, 47.4996434 ], + [ 7.777776, 47.4996684 ], + [ 7.7778603, 47.4997152 ], + [ 7.777952, 47.4997557 ], + [ 7.7780314, 47.4997433 ], + [ 7.7781042, 47.4996863 ], + [ 7.7782152, 47.4996383 ], + [ 7.7781473, 47.4992826 ], + [ 7.7781126, 47.4992827 ], + [ 7.7780986, 47.4992826 ], + [ 7.7780845, 47.4992825 ], + [ 7.7780705999999995, 47.4992821 ], + [ 7.7780521, 47.4992814 ], + [ 7.7780377, 47.4992811 ], + [ 7.7780233, 47.4992809 ], + [ 7.7780088, 47.4992808 ], + [ 7.7779942, 47.4992808 ], + [ 7.7779362, 47.499281 ], + [ 7.7779222, 47.499281 ], + [ 7.7779088, 47.4992809 ], + [ 7.7778963, 47.4992806 ], + [ 7.7778845, 47.4992801 ], + [ 7.7778521, 47.4992786 ], + [ 7.7778367, 47.4992778 ], + [ 7.7778254, 47.4992773 ], + [ 7.7778083, 47.499277 ], + [ 7.7777968, 47.4992769 ], + [ 7.7777388, 47.4992771 ], + [ 7.7777272, 47.499277 ], + [ 7.7777157, 47.4992769 ], + [ 7.7777043, 47.4992765 ], + [ 7.7776889, 47.4992757 ], + [ 7.7776729, 47.4992752 ], + [ 7.7776569, 47.4992749 ], + [ 7.7776461999999995, 47.4992746 ], + [ 7.7776257, 47.4992737 ], + [ 7.7776147, 47.4992733 ], + [ 7.7776036, 47.4992732 ], + [ 7.7775758, 47.499273 ], + [ 7.7775647, 47.4992728 ], + [ 7.7775537, 47.4992725 ], + [ 7.7775429, 47.4992719 ], + [ 7.7775213999999995, 47.4992701 ], + [ 7.777506, 47.4992693 ], + [ 7.7774904, 47.4992687 ], + [ 7.777475, 47.499268 ], + [ 7.7774571, 47.4992665 ], + [ 7.7774434, 47.499265199999996 ], + [ 7.7774283, 47.4992639 ], + [ 7.777402, 47.4992613 ], + [ 7.7773819, 47.4992594 ], + [ 7.7773620999999995, 47.4992569 ], + [ 7.7773482, 47.4992552 ], + [ 7.7773289, 47.4992525 ], + [ 7.7773152, 47.4992505 ], + [ 7.7773022, 47.4992482 ], + [ 7.7772901999999995, 47.4992461 ], + [ 7.7772679, 47.499242 ], + [ 7.7772559, 47.4992395 ], + [ 7.7772445, 47.4992372 ], + [ 7.7772341, 47.499235 ], + [ 7.7772071, 47.4992284 ], + [ 7.7771893, 47.4992237 ], + [ 7.7771739, 47.4992196 ], + [ 7.7771603, 47.4992156 ], + [ 7.7771374, 47.4992083 ], + [ 7.7771241, 47.4992039 ], + [ 7.7771109, 47.4991994 ], + [ 7.7770976, 47.4991948 ], + [ 7.7770845, 47.49919 ], + [ 7.7770696, 47.4991837 ], + [ 7.7770542, 47.4991772 ], + [ 7.7770443, 47.4991727 ], + [ 7.7770334, 47.4991675 ], + [ 7.7770245, 47.4991634 ], + [ 7.7770076, 47.4991549 ], + [ 7.7769874, 47.4991441 ], + [ 7.7769708, 47.4991351 ], + [ 7.7769577, 47.499128 ], + [ 7.7769403, 47.499118 ], + [ 7.7769308, 47.4991128 ], + [ 7.7769178, 47.4991055 ], + [ 7.7769063, 47.4990987 ], + [ 7.7768949, 47.4990917 ], + [ 7.7768834, 47.499085 ], + [ 7.7768713, 47.4990785 ], + [ 7.77686, 47.4990719 ], + [ 7.7768414, 47.4990603 ], + [ 7.7768301, 47.4990537 ], + [ 7.7768180000000005, 47.4990472 ], + [ 7.7768064, 47.4990404 ], + [ 7.7767951, 47.4990335 ], + [ 7.7767608, 47.4990138 ], + [ 7.7767417, 47.4990022 ], + [ 7.7767302, 47.4989955 ], + [ 7.7767181, 47.498989 ], + [ 7.7767031, 47.4989801 ], + [ 7.7766882, 47.4989708 ], + [ 7.7766769, 47.4989642 ], + [ 7.7766648, 47.4989577 ], + [ 7.7766532999999995, 47.498951 ], + [ 7.7766418, 47.498944 ], + [ 7.7766303, 47.4989374 ], + [ 7.7766182, 47.4989309 ], + [ 7.7766032, 47.4989219 ], + [ 7.7765847, 47.49891 ], + [ 7.7765737999999995, 47.4989033 ], + [ 7.7765645, 47.4988979 ], + [ 7.7765507, 47.4988898 ], + [ 7.7765408, 47.498884 ], + [ 7.7765291, 47.4988767 ], + [ 7.7765214, 47.4988717 ], + [ 7.7765099, 47.4988641 ], + [ 7.7764985, 47.4988565 ], + [ 7.7764909, 47.4988513 ], + [ 7.7764834, 47.4988462 ], + [ 7.7764761, 47.4988409 ], + [ 7.7764657, 47.4988329 ], + [ 7.7764533, 47.4988224 ], + [ 7.7764417, 47.498813 ], + [ 7.7764294, 47.4988024 ], + [ 7.776418, 47.4987929 ], + [ 7.7764053, 47.4987815 ], + [ 7.7763979, 47.4987745 ], + [ 7.7763896, 47.4987665 ], + [ 7.7763818, 47.4987592 ], + [ 7.7763759, 47.4987531 ], + [ 7.7763685, 47.4987457 ], + [ 7.7763585, 47.4987345 ], + [ 7.7763484, 47.4987233 ], + [ 7.776341, 47.4987145 ], + [ 7.7763321, 47.498703 ], + [ 7.7763254, 47.498694 ], + [ 7.7763187, 47.498685 ], + [ 7.776312, 47.498676 ], + [ 7.7763053, 47.4986671 ], + [ 7.7762986, 47.4986581 ], + [ 7.7762919, 47.4986491 ], + [ 7.7762855, 47.4986401 ], + [ 7.7762794, 47.4986309 ], + [ 7.776275, 47.4986232 ], + [ 7.776266, 47.4986085 ], + [ 7.7762619, 47.4986006 ], + [ 7.7762548, 47.4985873 ], + [ 7.776248, 47.4985751 ], + [ 7.7762393, 47.4985591 ], + [ 7.7762344, 47.4985482 ], + [ 7.7762282, 47.4985333 ], + [ 7.7762245, 47.4985246 ], + [ 7.7762211, 47.4985154 ], + [ 7.7762176, 47.498507 ], + [ 7.7762146, 47.4984987 ], + [ 7.7762118000000005, 47.4984905 ], + [ 7.7762083, 47.4984806 ], + [ 7.7762048, 47.4984681 ], + [ 7.7762017, 47.4984581 ], + [ 7.7761986, 47.4984446 ], + [ 7.7761949999999995, 47.4984311 ], + [ 7.7761919, 47.4984143 ], + [ 7.7761887, 47.4984018 ], + [ 7.7761867, 47.4983918 ], + [ 7.7761854, 47.4983817 ], + [ 7.7761835, 47.4983717 ], + [ 7.7761811, 47.4983626 ], + [ 7.7761797999999995, 47.4983529 ], + [ 7.7761786, 47.4983397 ], + [ 7.7761773, 47.49833 ], + [ 7.776175, 47.4983208 ], + [ 7.7761733, 47.498311 ], + [ 7.7761718, 47.4982924 ], + [ 7.776171, 47.4982848 ], + [ 7.7761698, 47.4982773 ], + [ 7.7761675, 47.4982671 ], + [ 7.7761664, 47.4982595 ], + [ 7.7761657, 47.4982517 ], + [ 7.7761653, 47.49824 ], + [ 7.7761651, 47.4982282 ], + [ 7.7761648, 47.4981729 ], + [ 7.7761644, 47.4981137 ], + [ 7.7761644, 47.4981058 ], + [ 7.7761645, 47.4980979 ], + [ 7.7761648, 47.4980901 ], + [ 7.7761654, 47.4980824 ], + [ 7.7761667, 47.4980749 ], + [ 7.7761688, 47.4980655 ], + [ 7.7761701, 47.4980548 ], + [ 7.7761713, 47.4980405 ], + [ 7.7761727, 47.4980298 ], + [ 7.776175, 47.4980196 ], + [ 7.7761779, 47.4979985 ], + [ 7.7761815, 47.4979814 ], + [ 7.7761846, 47.4979655 ], + [ 7.7761879, 47.4979522 ], + [ 7.7761905, 47.4979394 ], + [ 7.7761947, 47.497923 ], + [ 7.7761971, 47.4979136 ], + [ 7.7762011, 47.4979004 ], + [ 7.7762037, 47.4978911 ], + [ 7.7762099, 47.4978726 ], + [ 7.7762127, 47.4978651 ], + [ 7.7762171, 47.4978542 ], + [ 7.7762202, 47.4978473 ], + [ 7.7762277, 47.4978308 ], + [ 7.7762334, 47.497818 ], + [ 7.7762398, 47.4978044 ], + [ 7.7762463, 47.4977909 ], + [ 7.776253, 47.4977775 ], + [ 7.7762601, 47.4977641 ], + [ 7.776267, 47.497752 ], + [ 7.7762752, 47.4977367 ], + [ 7.77628, 47.4977282 ], + [ 7.7762874, 47.4977162 ], + [ 7.7762931, 47.4977056 ], + [ 7.7763, 47.4976922 ], + [ 7.7763124, 47.4976695 ], + [ 7.7763174, 47.4976648 ], + [ 7.7763232, 47.4976595 ], + [ 7.7763241, 47.4976488 ], + [ 7.7763297, 47.4976373 ], + [ 7.776334, 47.4976274 ], + [ 7.7763371, 47.4976195 ], + [ 7.7763399, 47.4976115 ], + [ 7.7763425, 47.4976021 ], + [ 7.775597, 47.49761 ], + [ 7.7754968, 47.4976113 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr144", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Dumberg", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Dumberg", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Dumberg", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Dumberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.7706853, 47.5103866 ], + [ 8.769665, 47.5111017 ], + [ 8.7695471, 47.51122 ], + [ 8.7695162, 47.5113634 ], + [ 8.7698076, 47.5121822 ], + [ 8.7698766, 47.5125007 ], + [ 8.769848, 47.5126306 ], + [ 8.7698146, 47.512729 ], + [ 8.770648, 47.5136657 ], + [ 8.7700287, 47.5139094 ], + [ 8.7716696, 47.5157533 ], + [ 8.7717753, 47.515996799999996 ], + [ 8.7708312, 47.5163675 ], + [ 8.7716803, 47.5173975 ], + [ 8.7718308, 47.5173634 ], + [ 8.7723974, 47.5181421 ], + [ 8.7741229, 47.5185396 ], + [ 8.7706853, 47.5103866 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSPH002", + "country" : "CHE", + "name" : [ + { + "text" : "LSPH Winterthur (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSPH Winterthur (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSPH Winterthur (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSPH Winterthur (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Segelfluggruppe Winterthur", + "lang" : "de-CH" + }, + { + "text" : "Segelfluggruppe Winterthur", + "lang" : "fr-CH" + }, + { + "text" : "Segelfluggruppe Winterthur", + "lang" : "it-CH" + }, + { + "text" : "Segelfluggruppe Winterthur", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Christian Spaltenstein", + "lang" : "de-CH" + }, + { + "text" : "Christian Spaltenstein", + "lang" : "fr-CH" + }, + { + "text" : "Christian Spaltenstein", + "lang" : "it-CH" + }, + { + "text" : "Christian Spaltenstein", + "lang" : "en-GB" + } + ], + "siteURL" : "https://sgw.ch/drohnen-operationen/vereinbarung-fur-drohnen-operationen/", + "email" : "flugplatzchef@sgw.ch", + "phone" : "0041523372393", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5004677, 47.5151632 ], + [ 7.5005102, 47.5151691 ], + [ 7.500987, 47.5152346 ], + [ 7.5011885, 47.5152599 ], + [ 7.5013141, 47.5153049 ], + [ 7.5014306, 47.5153779 ], + [ 7.5014585, 47.5153958 ], + [ 7.5016043, 47.5154265 ], + [ 7.5020432, 47.5154412 ], + [ 7.5022836999999996, 47.5149117 ], + [ 7.5007641, 47.5149228 ], + [ 7.5004677, 47.5151632 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns033", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Holzmatt", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Holzmatt", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Holzmatt", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Holzmatt", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.1762718, 47.4704467 ], + [ 8.2114836, 47.4621265 ], + [ 8.2783221, 47.4579232 ], + [ 8.2877352, 47.458654 ], + [ 8.2895598, 47.4529641 ], + [ 8.293079, 47.4463185 ], + [ 8.2911708, 47.4352643 ], + [ 8.2844302, 47.4281931 ], + [ 8.2692035, 47.4268543 ], + [ 8.256685300000001, 47.4268435 ], + [ 8.2535472, 47.4262911 ], + [ 8.2208949, 47.4140491 ], + [ 8.20558, 47.4010845 ], + [ 8.203365699999999, 47.4014996 ], + [ 8.1923858, 47.4054769 ], + [ 8.1826402, 47.4108064 ], + [ 8.182401, 47.4109678 ], + [ 8.1738436, 47.4178946 ], + [ 8.1675322, 47.4258197 ], + [ 8.1636439, 47.4344389 ], + [ 8.1623885, 47.4433963 ], + [ 8.1637702, 47.452372 ], + [ 8.1677776, 47.4609665 ], + [ 8.1742381, 47.4688657 ], + [ 8.1762718, 47.4704467 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZF001", + "country" : "CHE", + "name" : [ + { + "text" : "LSZF Birrfeld", + "lang" : "de-CH" + }, + { + "text" : "LSZF Birrfeld", + "lang" : "fr-CH" + }, + { + "text" : "LSZF Birrfeld", + "lang" : "it-CH" + }, + { + "text" : "LSZF Birrfeld", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Flugplatz Birrfeld", + "lang" : "de-CH" + }, + { + "text" : "Flugplatz Birrfeld", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatz Birrfeld", + "lang" : "it-CH" + }, + { + "text" : "Flugplatz Birrfeld", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Carlo Ferrari", + "lang" : "de-CH" + }, + { + "text" : "Carlo Ferrari", + "lang" : "fr-CH" + }, + { + "text" : "Carlo Ferrari", + "lang" : "it-CH" + }, + { + "text" : "Carlo Ferrari", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.birrfeld.ch/home/drohnen/", + "email" : "info@birrfeld.ch", + "phone" : "0041564644040", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.86702, 47.4963823 ], + [ 7.8671353, 47.496284 ], + [ 7.8672534, 47.4962724 ], + [ 7.8673479, 47.4961572 ], + [ 7.8674581, 47.4958955 ], + [ 7.8677052, 47.4957495 ], + [ 7.8676551, 47.4957221 ], + [ 7.867596, 47.4957063 ], + [ 7.8675938, 47.4956745 ], + [ 7.8676712, 47.4956688 ], + [ 7.8678086, 47.4956585 ], + [ 7.8679535, 47.4956196 ], + [ 7.868548, 47.4952034 ], + [ 7.8682946, 47.495231 ], + [ 7.8677459, 47.4952671 ], + [ 7.8678027, 47.4949763 ], + [ 7.8682199, 47.4944707 ], + [ 7.8682065, 47.4944624 ], + [ 7.8681937, 47.4944538 ], + [ 7.8681813, 47.4944448 ], + [ 7.8681694, 47.4944356 ], + [ 7.8681581, 47.494426 ], + [ 7.8681474, 47.4944161 ], + [ 7.8681372, 47.494406 ], + [ 7.8681276, 47.4943956 ], + [ 7.8681176, 47.4943838 ], + [ 7.8681084, 47.4943718 ], + [ 7.8680999, 47.4943596 ], + [ 7.8680921999999995, 47.4943471 ], + [ 7.8680853, 47.4943344 ], + [ 7.8680792, 47.4943215 ], + [ 7.8680739, 47.4943084 ], + [ 7.8680695, 47.4942952 ], + [ 7.8680658999999995, 47.4942819 ], + [ 7.8680632, 47.4942684 ], + [ 7.8680643, 47.4942549 ], + [ 7.8680661, 47.4942415 ], + [ 7.8680687, 47.4942281 ], + [ 7.8680721, 47.4942147 ], + [ 7.8680762, 47.4942015 ], + [ 7.8680810999999995, 47.4941884 ], + [ 7.8680867, 47.4941754 ], + [ 7.8680931, 47.4941626 ], + [ 7.8681002, 47.49415 ], + [ 7.8681079, 47.4941375 ], + [ 7.8681165, 47.4941253 ], + [ 7.8681257, 47.4941132 ], + [ 7.8681356000000005, 47.4941015 ], + [ 7.8681461, 47.4940899 ], + [ 7.8681573, 47.4940787 ], + [ 7.8681691, 47.4940678 ], + [ 7.8681816, 47.4940572 ], + [ 7.8681946, 47.4940469 ], + [ 7.8682082, 47.494037 ], + [ 7.8682224, 47.4940274 ], + [ 7.8684318, 47.4938949 ], + [ 7.8684462, 47.4938852 ], + [ 7.8684613, 47.4938759 ], + [ 7.868477, 47.4938671 ], + [ 7.8684932, 47.4938587 ], + [ 7.8685099, 47.4938508 ], + [ 7.868527, 47.4938433 ], + [ 7.8685447, 47.4938364 ], + [ 7.8685628, 47.49383 ], + [ 7.8685811999999995, 47.4938242 ], + [ 7.8686, 47.4938188 ], + [ 7.8686191, 47.493814 ], + [ 7.8686385, 47.4938098 ], + [ 7.8686582, 47.4938061 ], + [ 7.868678, 47.493803 ], + [ 7.868698, 47.4938005 ], + [ 7.8687181, 47.4937985 ], + [ 7.8687383, 47.4937972 ], + [ 7.8687586, 47.4937964 ], + [ 7.868779, 47.4937962 ], + [ 7.8687993, 47.4937966 ], + [ 7.8688196, 47.4937975 ], + [ 7.8688398, 47.4937991 ], + [ 7.8688599, 47.4938012 ], + [ 7.8688798, 47.493804 ], + [ 7.8688996, 47.4938073 ], + [ 7.8689191, 47.4938111 ], + [ 7.8697031, 47.4927967 ], + [ 7.869631, 47.4927416 ], + [ 7.8688828, 47.4926087 ], + [ 7.8680153, 47.4925876 ], + [ 7.8663481, 47.4938506 ], + [ 7.8663115999999995, 47.494401 ], + [ 7.8662733, 47.494432 ], + [ 7.8662561, 47.4944747 ], + [ 7.8662566, 47.4945269 ], + [ 7.8662431, 47.4945863 ], + [ 7.8662049, 47.4946315 ], + [ 7.8656939, 47.495089 ], + [ 7.865976, 47.4965237 ], + [ 7.86702, 47.4963823 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns088", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Farnsberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Farnsberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Farnsberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Farnsberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7732857, 47.4559431 ], + [ 7.7714058999999995, 47.4556569 ], + [ 7.7713517, 47.4557598 ], + [ 7.7712809, 47.4558965 ], + [ 7.7712065, 47.4560969 ], + [ 7.7711338, 47.4564224 ], + [ 7.7711336, 47.456529 ], + [ 7.7711763, 47.4568768 ], + [ 7.7712516, 47.4575671 ], + [ 7.7712726, 47.4577853 ], + [ 7.7712891, 47.4579571 ], + [ 7.7713032, 47.4580822 ], + [ 7.771314, 47.4581783 ], + [ 7.7713354, 47.4583693 ], + [ 7.7713453999999995, 47.4586592 ], + [ 7.7713456999999995, 47.4588012 ], + [ 7.7713458, 47.458806 ], + [ 7.7719993, 47.4587944 ], + [ 7.7721418, 47.4582859 ], + [ 7.772207, 47.4580533 ], + [ 7.7723212, 47.4576228 ], + [ 7.7723514, 47.45754 ], + [ 7.7723594, 47.4574885 ], + [ 7.7723821, 47.4574679 ], + [ 7.772425, 47.4573677 ], + [ 7.7724928, 47.4572034 ], + [ 7.7725846, 47.457017 ], + [ 7.7726613, 47.4568448 ], + [ 7.7726636, 47.456816 ], + [ 7.7726859, 47.4567955 ], + [ 7.7727044, 47.4567642 ], + [ 7.7727213, 47.4567395 ], + [ 7.7727442, 47.4567094 ], + [ 7.7727596, 47.456691 ], + [ 7.7729001, 47.4565332 ], + [ 7.7729241, 47.456509 ], + [ 7.7729593999999995, 47.4564765 ], + [ 7.7729697, 47.4564648 ], + [ 7.7729782, 47.4564534 ], + [ 7.7732268, 47.4560419 ], + [ 7.7732857, 47.4559431 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr147", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Buechholde", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Buechholde", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Buechholde", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Buechholde", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.0241161, 46.3412551 ], + [ 7.0238718, 46.3411939 ], + [ 7.0236708, 46.3415788 ], + [ 7.0239151, 46.34164 ], + [ 7.0244647, 46.3417777 ], + [ 7.0246658, 46.3413928 ], + [ 7.0241161, 46.3412551 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSEY002", + "country" : "CHE", + "name" : [ + { + "text" : "LSEY Leysin (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSEY Leysin (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSEY Leysin (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSEY Leysin (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Héliport Leysin", + "lang" : "de-CH" + }, + { + "text" : "Héliport Leysin", + "lang" : "fr-CH" + }, + { + "text" : "Héliport Leysin", + "lang" : "it-CH" + }, + { + "text" : "Héliport Leysin", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Chef d'aérodrome", + "lang" : "de-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "fr-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "it-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Silvano Meli", + "lang" : "de-CH" + }, + { + "text" : "Silvano Meli", + "lang" : "fr-CH" + }, + { + "text" : "Silvano Meli", + "lang" : "it-CH" + }, + { + "text" : "Silvano Meli", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.air-glaciers.ch/leysin", + "email" : "leysin@air-glaciers.ch", + "phone" : "0041244943434", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P01DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.1409894, 46.3287347 ], + [ 7.1409829, 46.3287605 ], + [ 7.1411068, 46.3287329 ], + [ 7.141324, 46.328716299999996 ], + [ 7.1415247, 46.3287207 ], + [ 7.1416949, 46.3287535 ], + [ 7.1418129, 46.3287919 ], + [ 7.1419335, 46.3288474 ], + [ 7.1420842, 46.328943 ], + [ 7.1421827, 46.3290289 ], + [ 7.1422755, 46.3291472 ], + [ 7.142379, 46.3293246 ], + [ 7.1425149, 46.3295986 ], + [ 7.1426127, 46.3298107 ], + [ 7.1426371, 46.3298558 ], + [ 7.1427161, 46.3300014 ], + [ 7.1428171, 46.3303266 ], + [ 7.1428376, 46.3303978 ], + [ 7.1428728, 46.3304912 ], + [ 7.1429247, 46.3305618 ], + [ 7.1430504, 46.3306992 ], + [ 7.1432005, 46.3308919 ], + [ 7.1432712, 46.3310311 ], + [ 7.1432927, 46.3311206 ], + [ 7.1432892, 46.3312653 ], + [ 7.1432935, 46.3314786 ], + [ 7.1433066, 46.3315948 ], + [ 7.143361, 46.3317111 ], + [ 7.143462, 46.3318389 ], + [ 7.1435659, 46.3319268 ], + [ 7.143722, 46.3320338 ], + [ 7.1438151, 46.3321159 ], + [ 7.1438434, 46.3321615 ], + [ 7.1438695, 46.3322037 ], + [ 7.1438909, 46.3323161 ], + [ 7.1439173, 46.3325123 ], + [ 7.1439468, 46.332659 ], + [ 7.1439765, 46.3327637 ], + [ 7.1439953, 46.3327934 ], + [ 7.1440201, 46.3328324 ], + [ 7.1440885, 46.3328897 ], + [ 7.1441429, 46.3329135 ], + [ 7.1441634, 46.3329224 ], + [ 7.1441982, 46.3329376 ], + [ 7.1442289, 46.3329427 ], + [ 7.1442396, 46.3329444 ], + [ 7.1443629, 46.3329647 ], + [ 7.1446542, 46.3329864 ], + [ 7.1448163, 46.3330116 ], + [ 7.1449342, 46.3330557 ], + [ 7.1450384, 46.333115 ], + [ 7.1451396, 46.3331971 ], + [ 7.1451968, 46.3332963 ], + [ 7.1452181, 46.3334182 ], + [ 7.1452064, 46.3335591 ], + [ 7.1451728, 46.3336675 ], + [ 7.1450896, 46.3338044 ], + [ 7.1450231, 46.333907 ], + [ 7.1450007, 46.3339793 ], + [ 7.1450058, 46.3340555 ], + [ 7.1450329, 46.3341165 ], + [ 7.1450889, 46.3341647 ], + [ 7.145115, 46.3341872 ], + [ 7.1452412, 46.3342294 ], + [ 7.1453786, 46.3342507 ], + [ 7.1455599, 46.3342588 ], + [ 7.1457825, 46.3342708 ], + [ 7.1459446, 46.3342884 ], + [ 7.1462, 46.3343309 ], + [ 7.1463675, 46.3343713 ], + [ 7.1464964, 46.3344231 ], + [ 7.1466444, 46.334511 ], + [ 7.1468826, 46.3346849 ], + [ 7.1470442, 46.3348015 ], + [ 7.1471564, 46.3348989 ], + [ 7.1472384, 46.3349886 ], + [ 7.1473312, 46.3351069 ], + [ 7.1474214, 46.3351985 ], + [ 7.1475556, 46.3352922 ], + [ 7.1476734, 46.3353724 ], + [ 7.1477691, 46.335466 ], + [ 7.1478482, 46.3355785 ], + [ 7.1479247, 46.3356701 ], + [ 7.1480204, 46.3357656 ], + [ 7.1481654, 46.3358859 ], + [ 7.1483022, 46.3360195 ], + [ 7.1484497, 46.3361875 ], + [ 7.1485481, 46.3362867 ], + [ 7.1486468, 46.3363479 ], + [ 7.1487565, 46.3363882 ], + [ 7.1490119, 46.3364498 ], + [ 7.1491299, 46.3364863 ], + [ 7.1492148, 46.3365417 ], + [ 7.1493705, 46.336723 ], + [ 7.1495453, 46.3369462 ], + [ 7.1496981, 46.3371465 ], + [ 7.1497883, 46.3372515 ], + [ 7.1499225, 46.3373489 ], + [ 7.1500651, 46.3374198 ], + [ 7.1502324, 46.3374887 ], + [ 7.150353, 46.3375519 ], + [ 7.1503628, 46.337562 ], + [ 7.150346, 46.3374354 ], + [ 7.1517412, 46.3373634 ], + [ 7.1517893, 46.3373671 ], + [ 7.1522279, 46.3374339 ], + [ 7.152511, 46.3374319 ], + [ 7.1529352, 46.3375364 ], + [ 7.1532151, 46.3376487 ], + [ 7.1533904, 46.3376716 ], + [ 7.1542501, 46.3379319 ], + [ 7.1544386, 46.3378847 ], + [ 7.1552813, 46.3379363 ], + [ 7.1562312, 46.3378362 ], + [ 7.1562572, 46.3378335 ], + [ 7.1564389, 46.3378691 ], + [ 7.1564632, 46.3374391 ], + [ 7.156516, 46.3365181 ], + [ 7.1558603, 46.3364985 ], + [ 7.1553576, 46.3362597 ], + [ 7.1548614, 46.3360237 ], + [ 7.1547876, 46.3359857 ], + [ 7.1539923, 46.3355717 ], + [ 7.1541098, 46.3354596 ], + [ 7.1542547, 46.3353196 ], + [ 7.1543983, 46.3351823 ], + [ 7.1544493, 46.3351159 ], + [ 7.1544908, 46.3351295 ], + [ 7.1545026, 46.3351133 ], + [ 7.1545272, 46.335126 ], + [ 7.1545363, 46.3351098 ], + [ 7.1545547, 46.3350838 ], + [ 7.1545913, 46.3350308 ], + [ 7.1546646, 46.3349275 ], + [ 7.1546672000000004, 46.3349239 ], + [ 7.1547458, 46.3347901 ], + [ 7.1547975, 46.3345923 ], + [ 7.1547664, 46.3345833 ], + [ 7.1548281, 46.3344575 ], + [ 7.1548542, 46.3344288 ], + [ 7.1549521, 46.3343273 ], + [ 7.1549574, 46.3343211 ], + [ 7.1549292, 46.3339917 ], + [ 7.1557358, 46.3339704 ], + [ 7.1559086, 46.3339654 ], + [ 7.1559203, 46.3339628 ], + [ 7.1561205, 46.3339111 ], + [ 7.1563767, 46.3338461 ], + [ 7.1565614, 46.3337988 ], + [ 7.1563893, 46.3331831 ], + [ 7.1562517, 46.3326763 ], + [ 7.1561981, 46.3322363 ], + [ 7.1561931, 46.3321922 ], + [ 7.1559729, 46.3318363 ], + [ 7.1555933, 46.3316734 ], + [ 7.1554831, 46.3313898 ], + [ 7.1554297, 46.3311594 ], + [ 7.1552658, 46.3309736 ], + [ 7.1553537, 46.3307976 ], + [ 7.1554816, 46.330686299999996 ], + [ 7.1554925, 46.3303355 ], + [ 7.1553284, 46.3301732 ], + [ 7.1555558, 46.3294028 ], + [ 7.1554506, 46.3291669 ], + [ 7.1562056, 46.3283106 ], + [ 7.1561194, 46.328161 ], + [ 7.1558834000000004, 46.3281011 ], + [ 7.1556517, 46.3279512 ], + [ 7.1551747, 46.3277808 ], + [ 7.1547281, 46.3275162 ], + [ 7.1545328, 46.3273672 ], + [ 7.1543781, 46.3271635 ], + [ 7.1543203, 46.3270357 ], + [ 7.1541546, 46.3269408 ], + [ 7.1537357, 46.3268309 ], + [ 7.1535024, 46.3267628 ], + [ 7.1534159, 46.3266547 ], + [ 7.1533673, 46.3265124 ], + [ 7.1535158, 46.3261889 ], + [ 7.1536818, 46.3259726 ], + [ 7.1539959, 46.3257512 ], + [ 7.15424, 46.3255215 ], + [ 7.1544389, 46.3249678 ], + [ 7.1544599, 46.3246908 ], + [ 7.1542659, 46.3242918 ], + [ 7.1538089, 46.3240343 ], + [ 7.1533312, 46.3240124 ], + [ 7.1527269, 46.3241125 ], + [ 7.1511333, 46.3249127 ], + [ 7.1508969, 46.325182 ], + [ 7.1505941, 46.3252217 ], + [ 7.1503401, 46.3253703 ], + [ 7.1501639, 46.3255381 ], + [ 7.1500458, 46.3257744 ], + [ 7.1496648, 46.3258814 ], + [ 7.1493528, 46.325948 ], + [ 7.1491168, 46.3261237 ], + [ 7.1490769, 46.3262991 ], + [ 7.149009, 46.3263664 ], + [ 7.1488528, 46.3264334 ], + [ 7.148675, 46.3266633 ], + [ 7.1486597, 46.3271013 ], + [ 7.1485539, 46.3272027 ], + [ 7.1484822, 46.3272619 ], + [ 7.1484209, 46.3273076 ], + [ 7.1483766, 46.3273327 ], + [ 7.1482193, 46.3273772 ], + [ 7.1481295, 46.327413 ], + [ 7.1480891, 46.3274363 ], + [ 7.1478637, 46.3275823 ], + [ 7.1477958, 46.327646 ], + [ 7.147784, 46.3276667 ], + [ 7.1477178, 46.3276584 ], + [ 7.1477205999999995, 46.3273948 ], + [ 7.1477156, 46.3273508 ], + [ 7.1477004, 46.3272859 ], + [ 7.1476264, 46.3270321 ], + [ 7.1476422, 46.3269997 ], + [ 7.147671, 46.3269521 ], + [ 7.1478552, 46.3267412 ], + [ 7.1478631, 46.326725 ], + [ 7.1478632, 46.326698 ], + [ 7.147831, 46.3266647 ], + [ 7.1477896, 46.3266241 ], + [ 7.1477806, 46.3266025 ], + [ 7.1477821, 46.3265665 ], + [ 7.1477941, 46.3265072 ], + [ 7.1478167, 46.3264263 ], + [ 7.147822, 46.3264065 ], + [ 7.1478208, 46.326375 ], + [ 7.1478148, 46.3262931 ], + [ 7.1478149, 46.3262769 ], + [ 7.1478152, 46.3262167 ], + [ 7.1478076, 46.3261843 ], + [ 7.1477857, 46.3261482 ], + [ 7.1477123, 46.3260356 ], + [ 7.1477073, 46.3260032 ], + [ 7.1477205, 46.3259582 ], + [ 7.1477415, 46.3259115 ], + [ 7.1477765, 46.3256849 ], + [ 7.147804, 46.3256427 ], + [ 7.1479047, 46.3255107 ], + [ 7.1479493, 46.3254218 ], + [ 7.1479927, 46.325322 ], + [ 7.148031, 46.3252025 ], + [ 7.1480337, 46.3251818 ], + [ 7.1480094, 46.3251125 ], + [ 7.1479226, 46.3250808 ], + [ 7.1469882, 46.3247365 ], + [ 7.1468574, 46.3249125 ], + [ 7.1463286, 46.3247438 ], + [ 7.1458301, 46.3252022 ], + [ 7.1454994, 46.325599 ], + [ 7.1452273, 46.3254975 ], + [ 7.1449729, 46.3257145 ], + [ 7.1444827, 46.3260794 ], + [ 7.1440919, 46.3258184 ], + [ 7.1440815, 46.3258211 ], + [ 7.1440724, 46.3258246 ], + [ 7.144062, 46.3258282 ], + [ 7.1440529, 46.3258309 ], + [ 7.1440425, 46.3258335 ], + [ 7.1440334, 46.3258371 ], + [ 7.144023, 46.3258398 ], + [ 7.1440126, 46.3258425 ], + [ 7.1440035, 46.3258451 ], + [ 7.1439931, 46.3258478 ], + [ 7.1439827, 46.3258505 ], + [ 7.1439723, 46.3258532 ], + [ 7.1439619, 46.3258558 ], + [ 7.1439528, 46.3258576 ], + [ 7.1439424, 46.3258603 ], + [ 7.143932, 46.3258629 ], + [ 7.1439216, 46.3258647 ], + [ 7.1439112, 46.3258665 ], + [ 7.1439008, 46.3258692 ], + [ 7.1438904, 46.3258709 ], + [ 7.14388, 46.3258727 ], + [ 7.1438696, 46.3258745 ], + [ 7.1438592, 46.3258762 ], + [ 7.1438488, 46.325878 ], + [ 7.1438384, 46.3258798 ], + [ 7.143828, 46.3258816 ], + [ 7.1438163, 46.3258833 ], + [ 7.1438059, 46.3258842 ], + [ 7.1437433, 46.3259263 ], + [ 7.1428128, 46.3265437 ], + [ 7.1399377, 46.3272872 ], + [ 7.139186, 46.3272628 ], + [ 7.1384639, 46.3272761 ], + [ 7.1380068, 46.3272812 ], + [ 7.1369669, 46.3272416 ], + [ 7.1369017, 46.3273017 ], + [ 7.1369114, 46.3274258 ], + [ 7.1368488, 46.3274607 ], + [ 7.1368509, 46.3275561 ], + [ 7.1368542999999995, 46.3276524 ], + [ 7.1371739, 46.3280778 ], + [ 7.1371817, 46.3280814 ], + [ 7.1371895, 46.3280851 ], + [ 7.137196, 46.3280878 ], + [ 7.1372037, 46.3280914 ], + [ 7.1372115, 46.328095 ], + [ 7.1372193, 46.3280977 ], + [ 7.137227, 46.3281004 ], + [ 7.1372348, 46.3281041 ], + [ 7.1372426, 46.3281068 ], + [ 7.1372504, 46.3281095 ], + [ 7.1372594, 46.3281131 ], + [ 7.1372672, 46.3281158 ], + [ 7.137275, 46.3281186 ], + [ 7.1372828, 46.3281213 ], + [ 7.1372906, 46.3281231 ], + [ 7.1372996, 46.3281258 ], + [ 7.1373074, 46.3281285 ], + [ 7.1373152, 46.3281313 ], + [ 7.1373243, 46.3281331 ], + [ 7.137332, 46.3281358 ], + [ 7.1373411, 46.3281376 ], + [ 7.1373489, 46.3281395 ], + [ 7.137358, 46.3281422 ], + [ 7.1373657999999995, 46.328144 ], + [ 7.1373748, 46.3281458 ], + [ 7.1373839, 46.3281476 ], + [ 7.1373917, 46.3281495 ], + [ 7.1374008, 46.3281513 ], + [ 7.1374086, 46.3281531 ], + [ 7.1374176, 46.328154 ], + [ 7.1374267, 46.3281559 ], + [ 7.1374358, 46.3281568 ], + [ 7.1374436, 46.3281586 ], + [ 7.1374527, 46.3281595 ], + [ 7.1374617, 46.3281613 ], + [ 7.1374708, 46.3281623 ], + [ 7.1374786, 46.3281632 ], + [ 7.1374877, 46.3281641 ], + [ 7.1374968, 46.328165 ], + [ 7.1375059, 46.328166 ], + [ 7.137515, 46.3281669 ], + [ 7.137524, 46.3281678 ], + [ 7.1375551999999995, 46.3281706 ], + [ 7.1375876, 46.3281743 ], + [ 7.1376201, 46.328178 ], + [ 7.1376525, 46.3281807 ], + [ 7.1376837, 46.3281844 ], + [ 7.1377161, 46.3281872 ], + [ 7.1377486, 46.32819 ], + [ 7.137781, 46.3281937 ], + [ 7.1378122, 46.3281965 ], + [ 7.1378446, 46.3281992 ], + [ 7.1378771, 46.328202 ], + [ 7.1379095, 46.3282048 ], + [ 7.137942, 46.3282076 ], + [ 7.1379744, 46.3282095 ], + [ 7.1380056, 46.3282123 ], + [ 7.1380172, 46.3282132 ], + [ 7.1380289, 46.328215 ], + [ 7.1380406, 46.328216 ], + [ 7.1380523, 46.3282178 ], + [ 7.138064, 46.3282187 ], + [ 7.1380742999999995, 46.3282206 ], + [ 7.138086, 46.3282224 ], + [ 7.1380977, 46.3282242 ], + [ 7.1381094, 46.3282251 ], + [ 7.138121, 46.328227 ], + [ 7.1381314, 46.3282288 ], + [ 7.1381431, 46.3282315 ], + [ 7.1381548, 46.3282334 ], + [ 7.1381651999999995, 46.3282352 ], + [ 7.1381768, 46.3282379 ], + [ 7.1381885, 46.3282397 ], + [ 7.1381989, 46.3282425 ], + [ 7.1382106, 46.3282443 ], + [ 7.1382209, 46.328247 ], + [ 7.1382326, 46.3282498 ], + [ 7.138243, 46.3282516 ], + [ 7.1382546, 46.3282543 ], + [ 7.138265, 46.328257 ], + [ 7.1382767, 46.3282598 ], + [ 7.1382871, 46.3282634 ], + [ 7.1382974, 46.3282661 ], + [ 7.1383091, 46.3282689 ], + [ 7.1383195, 46.3282716 ], + [ 7.1383298, 46.3282752 ], + [ 7.1383415, 46.3282779 ], + [ 7.1383519, 46.3282816 ], + [ 7.1383623, 46.3282852 ], + [ 7.1383726, 46.3282879 ], + [ 7.138383, 46.3282915 ], + [ 7.1383973, 46.328297 ], + [ 7.1384115, 46.3283024 ], + [ 7.1384258, 46.3283069 ], + [ 7.13844, 46.3283124 ], + [ 7.1384543, 46.3283169 ], + [ 7.1384698, 46.3283224 ], + [ 7.1384841, 46.3283269 ], + [ 7.1384984, 46.3283314 ], + [ 7.1385126, 46.3283369 ], + [ 7.1385269, 46.3283414 ], + [ 7.1385424, 46.3283459 ], + [ 7.1385567, 46.3283505 ], + [ 7.1385709, 46.328355 ], + [ 7.1385865, 46.3283595 ], + [ 7.1386008, 46.3283632 ], + [ 7.1386163, 46.3283677 ], + [ 7.1386306, 46.3283723 ], + [ 7.1386461, 46.3283759 ], + [ 7.1386604, 46.3283804 ], + [ 7.138676, 46.3283841 ], + [ 7.1386902, 46.3283877 ], + [ 7.1387058, 46.3283922 ], + [ 7.1387213, 46.3283959 ], + [ 7.1390754, 46.328476 ], + [ 7.1390884, 46.3284787 ], + [ 7.1391014, 46.3284815 ], + [ 7.139113, 46.3284842 ], + [ 7.139126, 46.3284869 ], + [ 7.139139, 46.3284888 ], + [ 7.1391519, 46.3284915 ], + [ 7.1391636, 46.3284942 ], + [ 7.1391766, 46.3284961 ], + [ 7.1391896, 46.3284988 ], + [ 7.1392025, 46.3285006 ], + [ 7.1392155, 46.3285025 ], + [ 7.1392285, 46.3285052 ], + [ 7.1392415, 46.328507 ], + [ 7.1392531, 46.3285088 ], + [ 7.1392661, 46.3285107 ], + [ 7.1392790999999995, 46.3285125 ], + [ 7.1392921, 46.3285143 ], + [ 7.139305, 46.3285153 ], + [ 7.139318, 46.3285171 ], + [ 7.139331, 46.3285189 ], + [ 7.139344, 46.3285199 ], + [ 7.1393569, 46.3285217 ], + [ 7.1393699, 46.3285227 ], + [ 7.1393829, 46.3285236 ], + [ 7.1393959, 46.3285254 ], + [ 7.1394089, 46.3285264 ], + [ 7.1394231, 46.3285273 ], + [ 7.1394361, 46.3285282 ], + [ 7.1394491, 46.3285292 ], + [ 7.1394621, 46.3285292 ], + [ 7.1394751, 46.3285301 ], + [ 7.139488, 46.3285311 ], + [ 7.139501, 46.3285311 ], + [ 7.139514, 46.328532 ], + [ 7.139527, 46.3285321 ], + [ 7.1395413, 46.3285321 ], + [ 7.1395543, 46.328533 ], + [ 7.1395608, 46.3285331 ], + [ 7.1395685, 46.3285331 ], + [ 7.1395763, 46.328534 ], + [ 7.1395828, 46.3285349 ], + [ 7.1395906, 46.3285349 ], + [ 7.1395984, 46.3285359 ], + [ 7.1396049, 46.3285368 ], + [ 7.1396127, 46.3285377 ], + [ 7.1396192, 46.3285386 ], + [ 7.1396269, 46.3285395 ], + [ 7.1396347, 46.3285404 ], + [ 7.1396412, 46.3285423 ], + [ 7.139649, 46.3285432 ], + [ 7.1396555, 46.3285441 ], + [ 7.1396633, 46.3285459 ], + [ 7.1396698, 46.3285468 ], + [ 7.1396762, 46.3285487 ], + [ 7.139684, 46.3285505 ], + [ 7.1396905, 46.3285523 ], + [ 7.1396983, 46.3285532 ], + [ 7.1397048, 46.328555 ], + [ 7.1397113, 46.3285568 ], + [ 7.139719, 46.3285587 ], + [ 7.1397255, 46.3285614 ], + [ 7.139732, 46.3285632 ], + [ 7.1397385, 46.328565 ], + [ 7.139745, 46.3285677 ], + [ 7.1397527, 46.3285695 ], + [ 7.1397592, 46.3285723 ], + [ 7.1397657, 46.3285741 ], + [ 7.1397722, 46.3285768 ], + [ 7.1397787, 46.3285786 ], + [ 7.1397851, 46.3285813 ], + [ 7.1397916, 46.328584 ], + [ 7.1397968, 46.3285868 ], + [ 7.1398033, 46.3285895 ], + [ 7.1398098, 46.3285922 ], + [ 7.1398162, 46.3285949 ], + [ 7.1398214, 46.3285985 ], + [ 7.1398279, 46.3286012 ], + [ 7.1398344, 46.3286039 ], + [ 7.1398395, 46.3286076 ], + [ 7.139846, 46.3286103 ], + [ 7.1398512, 46.3286139 ], + [ 7.1398577, 46.3286166 ], + [ 7.1398628, 46.3286202 ], + [ 7.139868, 46.3286229 ], + [ 7.1398745, 46.3286265 ], + [ 7.1398797, 46.3286302 ], + [ 7.1398848, 46.3286338 ], + [ 7.13989, 46.3286374 ], + [ 7.1398952, 46.328641 ], + [ 7.1399004, 46.3286446 ], + [ 7.1399055, 46.3286482 ], + [ 7.1401643, 46.3288288 ], + [ 7.1401681, 46.3288315 ], + [ 7.140172, 46.3288342 ], + [ 7.1401772, 46.328836 ], + [ 7.1401811, 46.3288387 ], + [ 7.1401863, 46.3288415 ], + [ 7.1401901, 46.3288442 ], + [ 7.1401953, 46.328846 ], + [ 7.1401992, 46.3288487 ], + [ 7.1402044, 46.3288505 ], + [ 7.1402096, 46.3288523 ], + [ 7.1402148, 46.328855 ], + [ 7.1402186, 46.3288568 ], + [ 7.1402238, 46.3288587 ], + [ 7.140229, 46.3288605 ], + [ 7.1402342, 46.3288623 ], + [ 7.1402394, 46.3288641 ], + [ 7.1402446, 46.3288659 ], + [ 7.1402497, 46.3288677 ], + [ 7.1402549, 46.3288695 ], + [ 7.1402601, 46.3288704 ], + [ 7.1402653, 46.3288723 ], + [ 7.1402705, 46.3288741 ], + [ 7.1402757, 46.328875 ], + [ 7.1402822, 46.3288759 ], + [ 7.1402874, 46.3288777 ], + [ 7.1402925, 46.3288786 ], + [ 7.1402977, 46.3288795 ], + [ 7.1403042, 46.3288805 ], + [ 7.1403094, 46.3288814 ], + [ 7.1403146, 46.3288823 ], + [ 7.1403211, 46.3288832 ], + [ 7.1403263, 46.3288841 ], + [ 7.1403315, 46.328885 ], + [ 7.140338, 46.328885 ], + [ 7.1403431, 46.328886 ], + [ 7.1403483, 46.328886 ], + [ 7.1403548, 46.3288869 ], + [ 7.14036, 46.3288869 ], + [ 7.1403665, 46.3288869 ], + [ 7.1403717, 46.3288869 ], + [ 7.1403769, 46.3288869 ], + [ 7.1409894, 46.3287347 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00017", + "country" : "CHE", + "name" : [ + { + "text" : "La Jorasse", + "lang" : "de-CH" + }, + { + "text" : "La Jorasse", + "lang" : "fr-CH" + }, + { + "text" : "La Jorasse", + "lang" : "it-CH" + }, + { + "text" : "La Jorasse", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "startDateTime" : "2024-11-15T00:00:00+01:00", + "endDateTime" : "2025-04-15T00:00:00+02:00" + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Generaldirektion für Umwelt", + "lang" : "de-CH" + }, + { + "text" : "Direction générale de l'environnement", + "lang" : "fr-CH" + }, + { + "text" : "Direzione generale dell'Ambiente", + "lang" : "it-CH" + }, + { + "text" : "Environment Department", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.dge@vd.ch", + "phone" : "0041213164422", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.361469, 47.2437358 ], + [ 9.3613926, 47.2438541 ], + [ 9.3611717, 47.2439558 ], + [ 9.3609476, 47.2439704 ], + [ 9.3607002, 47.2440726 ], + [ 9.3603185, 47.2441113 ], + [ 9.3598679, 47.244073 ], + [ 9.3595725, 47.2441265 ], + [ 9.3592912, 47.244204 ], + [ 9.3586081, 47.2443126 ], + [ 9.3583291, 47.2442687 ], + [ 9.3580766, 47.2442648 ], + [ 9.3571432, 47.2443595 ], + [ 9.3568413, 47.2442683 ], + [ 9.3563751, 47.2443102 ], + [ 9.355506, 47.2443922 ], + [ 9.3552266, 47.2443375 ], + [ 9.3546597, 47.2441867 ], + [ 9.3541635, 47.2442409 ], + [ 9.3538016, 47.2442055 ], + [ 9.353432, 47.2442162 ], + [ 9.3527713, 47.2443261 ], + [ 9.3523749, 47.2442956 ], + [ 9.3520874, 47.2443033 ], + [ 9.3518716, 47.2443627 ], + [ 9.3512788, 47.2443014 ], + [ 9.3510021, 47.2443609 ], + [ 9.3507554, 47.2445171 ], + [ 9.350308, 47.2445695 ], + [ 9.3500844, 47.2446722 ], + [ 9.3496378, 47.244819 ], + [ 9.3491324, 47.2449453 ], + [ 9.3486409, 47.2451685 ], + [ 9.3484345, 47.2454931 ], + [ 9.3477928, 47.2457637 ], + [ 9.3476646, 47.2459845 ], + [ 9.3471197, 47.2461159 ], + [ 9.3468152, 47.2462109 ], + [ 9.3458555, 47.2464562 ], + [ 9.3449476, 47.2470804 ], + [ 9.3444256, 47.2474111 ], + [ 9.3436882, 47.2477427 ], + [ 9.3435353, 47.2479 ], + [ 9.3432691, 47.2484019 ], + [ 9.3431396, 47.248787 ], + [ 9.3430942, 47.2490635 ], + [ 9.3431656, 47.2491968 ], + [ 9.3432725, 47.2493953 ], + [ 9.34243, 47.2498824 ], + [ 9.342003, 47.2503213 ], + [ 9.3420889, 47.2505088 ], + [ 9.342135, 47.250688 ], + [ 9.3420019, 47.2510321 ], + [ 9.3417077, 47.2513069 ], + [ 9.3415734, 47.251615 ], + [ 9.341306, 47.2518983 ], + [ 9.3412985, 47.2520604 ], + [ 9.3362458, 47.2595421 ], + [ 9.3361009, 47.2597398 ], + [ 9.3360434, 47.2599836 ], + [ 9.3357305, 47.2604746 ], + [ 9.3352191, 47.2609599 ], + [ 9.3349406, 47.2613064 ], + [ 9.3348049, 47.2615785 ], + [ 9.334734, 47.261813599999996 ], + [ 9.3347188, 47.2621288 ], + [ 9.3346443, 47.2622649 ], + [ 9.3342831, 47.2625138 ], + [ 9.3341319, 47.2627232 ], + [ 9.3339183, 47.2632216 ], + [ 9.33391, 47.2635456 ], + [ 9.3339344, 47.2638601 ], + [ 9.3335996, 47.2642975 ], + [ 9.3332097, 47.2650417 ], + [ 9.3331384, 47.2652678 ], + [ 9.3332975, 47.265652 ], + [ 9.3333947, 47.2657854 ], + [ 9.3334322, 47.2659107 ], + [ 9.3333742, 47.2661366 ], + [ 9.3333806, 47.2665054 ], + [ 9.3333619, 47.2667216 ], + [ 9.3331405, 47.2673731 ], + [ 9.3330527, 47.2678436 ], + [ 9.332777, 47.2697866 ], + [ 9.3327636, 47.2698822 ], + [ 9.3327535, 47.2699548 ], + [ 9.3314385, 47.2718212 ], + [ 9.3291098, 47.2751259 ], + [ 9.3288029, 47.2755614 ], + [ 9.3263835, 47.2789944 ], + [ 9.3250434, 47.2808958 ], + [ 9.3247676, 47.2812869 ], + [ 9.3236265, 47.2829059 ], + [ 9.3232591, 47.2830641 ], + [ 9.3222238, 47.2835451 ], + [ 9.3217149, 47.2838416 ], + [ 9.3217316, 47.2839154 ], + [ 9.3216485, 47.2840129 ], + [ 9.3215985, 47.2842166 ], + [ 9.3215237, 47.2842928 ], + [ 9.3213543, 47.2843092 ], + [ 9.3208448, 47.2842841 ], + [ 9.3203903, 47.2845928 ], + [ 9.320044, 47.2848138 ], + [ 9.3200091, 47.2848377 ], + [ 9.3196466, 47.285086 ], + [ 9.319619, 47.2851527 ], + [ 9.3193917, 47.2853683 ], + [ 9.3192177, 47.2855853 ], + [ 9.3190033, 47.2856612 ], + [ 9.31885, 47.2857738 ], + [ 9.3188854, 47.2858728 ], + [ 9.318871, 47.2859947 ], + [ 9.3188343, 47.2862256 ], + [ 9.318747, 47.2863365 ], + [ 9.3187887, 47.2863694 ], + [ 9.3187363, 47.2864773 ], + [ 9.3187099, 47.2865317 ], + [ 9.318652, 47.2867146 ], + [ 9.3187008, 47.2868339 ], + [ 9.3188984, 47.286922 ], + [ 9.3188597, 47.2870078 ], + [ 9.3188994, 47.2871109 ], + [ 9.3188314, 47.2872 ], + [ 9.3184924, 47.2874963 ], + [ 9.3183342, 47.2878574 ], + [ 9.3183136, 47.2879678 ], + [ 9.3184056, 47.2880583 ], + [ 9.3185747, 47.2881754 ], + [ 9.3186026, 47.2882552 ], + [ 9.3185316, 47.2883306 ], + [ 9.3183303, 47.2884734 ], + [ 9.3181759, 47.2885862 ], + [ 9.3178628, 47.2887212 ], + [ 9.3179755, 47.2887624 ], + [ 9.3177801, 47.2889079 ], + [ 9.3178277, 47.2889877 ], + [ 9.3177681, 47.2890564 ], + [ 9.3176078, 47.2890869 ], + [ 9.3173704, 47.2892186 ], + [ 9.3170216, 47.2892133 ], + [ 9.3165532, 47.2891589 ], + [ 9.3165603, 47.2892163 ], + [ 9.3165205, 47.2893141 ], + [ 9.3164051, 47.289392 ], + [ 9.3160589, 47.2892717 ], + [ 9.3159314, 47.2891877 ], + [ 9.315822, 47.2891732 ], + [ 9.3157067, 47.2892764 ], + [ 9.3154592, 47.2893057 ], + [ 9.315354899999999, 47.2894635 ], + [ 9.3151732, 47.2895094 ], + [ 9.3149553, 47.2897374 ], + [ 9.3147955, 47.2897532 ], + [ 9.3147087, 47.2899446 ], + [ 9.3145377, 47.2899872 ], + [ 9.3144509, 47.2902265 ], + [ 9.314376, 47.2903794 ], + [ 9.314406, 47.2905888 ], + [ 9.3144331, 47.2907873 ], + [ 9.3144643, 47.2909038 ], + [ 9.314413, 47.2909787 ], + [ 9.3142019, 47.290992 ], + [ 9.3139644, 47.2910691 ], + [ 9.3137877, 47.2911853 ], + [ 9.3135586, 47.2914467 ], + [ 9.313559, 47.2916144 ], + [ 9.313542, 47.2917358 ], + [ 9.3134954, 47.2918818 ], + [ 9.3133953, 47.2922864 ], + [ 9.3135008, 47.2923061 ], + [ 9.313421, 47.2927192 ], + [ 9.3136796, 47.292759 ], + [ 9.313672799999999, 47.292861 ], + [ 9.3135999, 47.2929431 ], + [ 9.3135013, 47.2930346 ], + [ 9.3133565, 47.2931326 ], + [ 9.3132204, 47.2932374 ], + [ 9.3129852, 47.2935319 ], + [ 9.3127925, 47.2936399 ], + [ 9.3126402, 47.2939468 ], + [ 9.3127046, 47.2941284 ], + [ 9.3128682, 47.2942591 ], + [ 9.3127811, 47.2943443 ], + [ 9.312793, 47.2944574 ], + [ 9.3129528, 47.2944668 ], + [ 9.3128641, 47.2945151 ], + [ 9.3129047, 47.2945846 ], + [ 9.3128003, 47.2948654 ], + [ 9.3129659, 47.2950364 ], + [ 9.312987, 47.2951059 ], + [ 9.312922, 47.2953183 ], + [ 9.3131345, 47.295398 ], + [ 9.3131843, 47.2954805 ], + [ 9.3131266, 47.2957219 ], + [ 9.3131267, 47.2959663 ], + [ 9.3130404, 47.2961147 ], + [ 9.3133991, 47.296596 ], + [ 9.3138058, 47.2968614 ], + [ 9.3140804, 47.2971827 ], + [ 9.3142058, 47.2974518 ], + [ 9.314271, 47.29753 ], + [ 9.3144694, 47.2976868 ], + [ 9.3146553, 47.2978067 ], + [ 9.3146875, 47.2978939 ], + [ 9.3145753, 47.2980447 ], + [ 9.314584, 47.2982094 ], + [ 9.3146928, 47.2983674 ], + [ 9.3146699, 47.2986588 ], + [ 9.3147147, 47.2987073 ], + [ 9.3147183, 47.2989252 ], + [ 9.3149061, 47.2990895 ], + [ 9.3150601, 47.2993216 ], + [ 9.3152371, 47.2995809 ], + [ 9.3155178, 47.2998062 ], + [ 9.3156765, 47.3000464 ], + [ 9.3158343, 47.3001928 ], + [ 9.3158215, 47.3004043 ], + [ 9.3158772, 47.3004627 ], + [ 9.3160188, 47.3008283 ], + [ 9.3159666, 47.3010916 ], + [ 9.3160687, 47.3012573 ], + [ 9.3161352, 47.3012765 ], + [ 9.3164141, 47.3012775 ], + [ 9.3164947, 47.3013736 ], + [ 9.3167254, 47.301551 ], + [ 9.3169798, 47.3016858 ], + [ 9.3171101, 47.3017431 ], + [ 9.3177306, 47.3021132 ], + [ 9.3183549, 47.3021214 ], + [ 9.3187933, 47.3022435 ], + [ 9.3188262, 47.302409 ], + [ 9.3188863, 47.3025741 ], + [ 9.3192117, 47.3025688 ], + [ 9.3195971, 47.3027286 ], + [ 9.3196869, 47.3029671 ], + [ 9.3199123, 47.3032033 ], + [ 9.3201589, 47.3032731 ], + [ 9.3204301, 47.3032687 ], + [ 9.3206225, 47.3033394 ], + [ 9.320906, 47.3036854 ], + [ 9.3211101, 47.304088 ], + [ 9.3214117, 47.3041754 ], + [ 9.3216325, 47.3042825 ], + [ 9.3217752, 47.3044832 ], + [ 9.3221078, 47.3046808 ], + [ 9.3222088, 47.3047626 ], + [ 9.3226572, 47.3048748 ], + [ 9.3229, 47.3048339 ], + [ 9.3234204, 47.304973 ], + [ 9.3238052, 47.3051144 ], + [ 9.3242655, 47.3050884 ], + [ 9.3245478, 47.3053975 ], + [ 9.3246977, 47.3058011 ], + [ 9.3249734, 47.3059257 ], + [ 9.3254912, 47.3059911 ], + [ 9.3258199, 47.306078 ], + [ 9.3262041, 47.3062009 ], + [ 9.3263978, 47.3063084 ], + [ 9.3276595, 47.3066938 ], + [ 9.3280463, 47.3068904 ], + [ 9.3285501, 47.3073251 ], + [ 9.3289428, 47.3076877 ], + [ 9.3290882, 47.3079622 ], + [ 9.3293421, 47.3082348 ], + [ 9.3293493, 47.3084377 ], + [ 9.329576, 47.3087108 ], + [ 9.3297175, 47.3088746 ], + [ 9.3302174, 47.3091986 ], + [ 9.3304951, 47.3093786 ], + [ 9.3308244, 47.3094839 ], + [ 9.3308561, 47.3096125 ], + [ 9.3306702, 47.3097263 ], + [ 9.3303223, 47.3098612 ], + [ 9.330334, 47.3101932 ], + [ 9.3305886, 47.3104843 ], + [ 9.3309418, 47.310497 ], + [ 9.331242, 47.3105474 ], + [ 9.3312215, 47.3107323 ], + [ 9.3311473, 47.3109365 ], + [ 9.3311545, 47.3111394 ], + [ 9.3314593, 47.3113189 ], + [ 9.3318217, 47.3115898 ], + [ 9.3319089, 47.3117545 ], + [ 9.3317871, 47.312144 ], + [ 9.3317905, 47.3122868 ], + [ 9.3318362, 47.3123908 ], + [ 9.3319395, 47.3125415 ], + [ 9.3322408, 47.312746 ], + [ 9.3324957, 47.3128275 ], + [ 9.3327987, 47.3130796 ], + [ 9.333131, 47.3133694 ], + [ 9.3342729, 47.3130997 ], + [ 9.3346405, 47.3130623 ], + [ 9.335313, 47.3125181 ], + [ 9.3361203, 47.3118774 ], + [ 9.3368006, 47.3115526 ], + [ 9.3375785, 47.311383 ], + [ 9.338261, 47.3111208 ], + [ 9.3388973, 47.3108594 ], + [ 9.3395337, 47.310598 ], + [ 9.340076700000001, 47.3103067 ], + [ 9.3406681, 47.3100774 ], + [ 9.3417159, 47.3097151 ], + [ 9.3422229, 47.3097067 ], + [ 9.3429592, 47.3096632 ], + [ 9.3436427, 47.3094323 ], + [ 9.3442768, 47.3091082 ], + [ 9.3450907, 47.3086556 ], + [ 9.3457697, 47.3082993 ], + [ 9.3464083, 47.3081006 ], + [ 9.3477493, 47.3082039 ], + [ 9.3488006, 47.3079511 ], + [ 9.3494174, 47.3075838 ], + [ 9.3501151, 47.3071295 ], + [ 9.3505809, 47.3066504 ], + [ 9.3508804, 47.3062169 ], + [ 9.3511229, 47.3058268 ], + [ 9.3516579, 47.3053161 ], + [ 9.3523751, 47.3047396 ], + [ 9.3521255, 47.3042105 ], + [ 9.3527606, 47.3039177 ], + [ 9.3534833, 47.303497899999996 ], + [ 9.3536103, 47.3031821 ], + [ 9.3533608, 47.3026531 ], + [ 9.3530697, 47.3022501 ], + [ 9.3539509, 47.3023923 ], + [ 9.3545533, 47.3024764 ], + [ 9.3552356, 47.3022141 ], + [ 9.3556908, 47.3020497 ], + [ 9.3560134, 47.3020444 ], + [ 9.356436, 47.3022569 ], + [ 9.3566687, 47.3023158 ], + [ 9.3569773, 47.3016432 ], + [ 9.3575339, 47.3018324 ], + [ 9.3587755, 47.3021896 ], + [ 9.3595263, 47.3023993 ], + [ 9.3600712, 47.3025801 ], + [ 9.3616258, 47.3030036 ], + [ 9.3615888, 47.3031837 ], + [ 9.3617743, 47.3032402 ], + [ 9.3622722, 47.3033918 ], + [ 9.3623926, 47.303245 ], + [ 9.3627413, 47.3033048 ], + [ 9.3634397, 47.3035271 ], + [ 9.3645227, 47.3037384 ], + [ 9.3659142, 47.3041434 ], + [ 9.3666114, 47.3042568 ], + [ 9.367293, 47.3043777 ], + [ 9.3678202, 47.3043266 ], + [ 9.3680934, 47.304089 ], + [ 9.368676, 47.3042178 ], + [ 9.3696166, 47.3043307 ], + [ 9.3700911, 47.3044308 ], + [ 9.3704051, 47.3044831 ], + [ 9.3707528, 47.3045132 ], + [ 9.3711406, 47.3046309 ], + [ 9.3716971, 47.3045856 ], + [ 9.372424, 47.3047507 ], + [ 9.3727876, 47.3048149 ], + [ 9.3728124, 47.3048193 ], + [ 9.3729776, 47.3048485 ], + [ 9.3739536, 47.305020999999996 ], + [ 9.3743769, 47.3050958 ], + [ 9.3749357, 47.3051125 ], + [ 9.3750584, 47.305052 ], + [ 9.3752357, 47.3049645 ], + [ 9.3752567, 47.3049541 ], + [ 9.375824, 47.3050238 ], + [ 9.3763993, 47.3049844 ], + [ 9.3769369, 47.3050204 ], + [ 9.3773022, 47.3050448 ], + [ 9.3780541, 47.3052209 ], + [ 9.3784694, 47.3052406 ], + [ 9.3787668, 47.3052565 ], + [ 9.3792456, 47.3053177 ], + [ 9.3794477, 47.3053436 ], + [ 9.3794905, 47.305349 ], + [ 9.3804753, 47.3054496 ], + [ 9.3805194, 47.3054541 ], + [ 9.3810099, 47.3054669 ], + [ 9.3812108, 47.3054754 ], + [ 9.3812416, 47.3053774 ], + [ 9.3812765, 47.3052662 ], + [ 9.3813772, 47.3049457 ], + [ 9.3813959, 47.3048861 ], + [ 9.381392, 47.3048408 ], + [ 9.3813902, 47.3048199 ], + [ 9.3813647, 47.3045278 ], + [ 9.3813705, 47.3042703 ], + [ 9.3813751, 47.3041976 ], + [ 9.3813766, 47.3041979 ], + [ 9.3814233, 47.3042042 ], + [ 9.3815736, 47.3042239 ], + [ 9.3816909, 47.3042371 ], + [ 9.3817496, 47.3042437 ], + [ 9.3818075, 47.304253 ], + [ 9.3818728, 47.3042663 ], + [ 9.3819369, 47.3042822 ], + [ 9.3820653, 47.3043137 ], + [ 9.3821872, 47.3043406 ], + [ 9.3823107, 47.3043641 ], + [ 9.3824159, 47.3043774 ], + [ 9.3825219, 47.3043874 ], + [ 9.3826192, 47.3043931 ], + [ 9.382668, 47.3043959 ], + [ 9.382716, 47.3044021 ], + [ 9.3827801, 47.3044141 ], + [ 9.3828429, 47.3044287 ], + [ 9.3829364, 47.3044528 ], + [ 9.3829671, 47.3044607 ], + [ 9.3830329, 47.3044777 ], + [ 9.383140000000001, 47.3045056 ], + [ 9.3832257, 47.3045293 ], + [ 9.38331, 47.3045553 ], + [ 9.3834305, 47.3045961 ], + [ 9.3835488, 47.3046398 ], + [ 9.3836647, 47.3046864 ], + [ 9.3836945, 47.304699 ], + [ 9.3839041, 47.304775 ], + [ 9.3842759, 47.3048948 ], + [ 9.384371699999999, 47.3049263 ], + [ 9.3844625, 47.3049535 ], + [ 9.384554, 47.3049795 ], + [ 9.3846507, 47.3050065 ], + [ 9.3847487, 47.3050315 ], + [ 9.3847738, 47.3050371 ], + [ 9.3848312, 47.3050479 ], + [ 9.3849145, 47.3050626 ], + [ 9.3849939, 47.3050777 ], + [ 9.3850738, 47.3050918 ], + [ 9.3851654, 47.3051056 ], + [ 9.3852579, 47.3051167 ], + [ 9.385374, 47.3051247 ], + [ 9.3854903, 47.3051319 ], + [ 9.385584099999999, 47.3051397 ], + [ 9.3856772, 47.3051509 ], + [ 9.3857241, 47.305159 ], + [ 9.3857702, 47.3051689 ], + [ 9.3858626, 47.3051886 ], + [ 9.3859436, 47.305204 ], + [ 9.3860256, 47.3052168 ], + [ 9.3860898, 47.3052233 ], + [ 9.3861223, 47.3052249 ], + [ 9.3861549, 47.305224 ], + [ 9.3861703, 47.3052221 ], + [ 9.3861851, 47.3052184 ], + [ 9.3861942, 47.3052149 ], + [ 9.3862024, 47.3052104 ], + [ 9.3862093, 47.305205 ], + [ 9.3862162, 47.3051976 ], + [ 9.3862216, 47.3051897 ], + [ 9.3862254, 47.3051814 ], + [ 9.3863923, 47.3053181 ], + [ 9.3867072, 47.3054106 ], + [ 9.3869117, 47.3054475 ], + [ 9.3870509, 47.3054601 ], + [ 9.3871431, 47.3054792 ], + [ 9.387261, 47.3055095 ], + [ 9.3874798, 47.305568 ], + [ 9.3876187, 47.3056174 ], + [ 9.3877416, 47.3056925 ], + [ 9.3878447, 47.3057806 ], + [ 9.3879792, 47.3058474 ], + [ 9.3881165, 47.305898 ], + [ 9.3883817, 47.3059691 ], + [ 9.388569799999999, 47.3060137 ], + [ 9.3886143, 47.3060239 ], + [ 9.3886581, 47.3060355 ], + [ 9.3887214, 47.3060578 ], + [ 9.3887838, 47.3060811 ], + [ 9.3888606, 47.3061085 ], + [ 9.3888682, 47.3061112 ], + [ 9.3889376, 47.3061357 ], + [ 9.3889698, 47.3061471 ], + [ 9.3890023, 47.3061581 ], + [ 9.3890437, 47.3061703 ], + [ 9.3890843, 47.3061838 ], + [ 9.3890969, 47.3061896 ], + [ 9.3891084, 47.3061962 ], + [ 9.3891303, 47.3062105 ], + [ 9.389166, 47.3062362 ], + [ 9.3892013, 47.3062622 ], + [ 9.3892271, 47.3062806 ], + [ 9.3892545, 47.3062979 ], + [ 9.3892771, 47.3063085 ], + [ 9.3893016, 47.306317 ], + [ 9.3893465, 47.3063287 ], + [ 9.3893924, 47.3063387 ], + [ 9.3894594, 47.3063512 ], + [ 9.3895268, 47.3063628 ], + [ 9.3896162, 47.3063773 ], + [ 9.3897492, 47.3064199 ], + [ 9.3899839, 47.3065017 ], + [ 9.3901285, 47.3065348 ], + [ 9.3903283, 47.3065881 ], + [ 9.3904378, 47.3066142 ], + [ 9.3905557, 47.3066427 ], + [ 9.3906378, 47.3066517 ], + [ 9.3906949, 47.3066533 ], + [ 9.3909181, 47.3066525 ], + [ 9.3912354, 47.306657 ], + [ 9.3913893, 47.3066532 ], + [ 9.3914672, 47.3066702 ], + [ 9.3915861, 47.3067001 ], + [ 9.3916683, 47.3067225 ], + [ 9.3917252, 47.3067429 ], + [ 9.3918472, 47.3067763 ], + [ 9.3919329, 47.3067908 ], + [ 9.3919835, 47.3067929 ], + [ 9.392098, 47.3068399 ], + [ 9.3922289, 47.3069013 ], + [ 9.3924027, 47.306998 ], + [ 9.3925289, 47.3070769 ], + [ 9.3925857, 47.307093 ], + [ 9.3926717, 47.3071647 ], + [ 9.3927592, 47.3071765 ], + [ 9.3928217, 47.3071704 ], + [ 9.3928418, 47.307229 ], + [ 9.3928927, 47.3072312 ], + [ 9.3929357, 47.3072203 ], + [ 9.3929522, 47.3072637 ], + [ 9.3929601, 47.307316900000004 ], + [ 9.3929588, 47.307336 ], + [ 9.392987, 47.307362 ], + [ 9.393162, 47.3074693 ], + [ 9.3932485, 47.307513900000004 ], + [ 9.3933076, 47.3075501 ], + [ 9.3933369, 47.3075619 ], + [ 9.3934418, 47.307635 ], + [ 9.3934904, 47.3076584 ], + [ 9.3935422, 47.3076887 ], + [ 9.3935887, 47.3077236 ], + [ 9.3936543, 47.3077458 ], + [ 9.3937187, 47.3077696 ], + [ 9.3937389, 47.3077926 ], + [ 9.3937814, 47.3078053 ], + [ 9.3938749, 47.3078278 ], + [ 9.3939682, 47.3078294 ], + [ 9.3940628, 47.3078323 ], + [ 9.3941235, 47.307846 ], + [ 9.3941417, 47.3078549 ], + [ 9.3941003, 47.3078921 ], + [ 9.3940339, 47.3079148 ], + [ 9.3940081, 47.3079487 ], + [ 9.3939601, 47.3080128 ], + [ 9.3939874, 47.3080333 ], + [ 9.3939731, 47.308062 ], + [ 9.3939591, 47.3080769 ], + [ 9.3942616, 47.3085441 ], + [ 9.3949865, 47.3088876 ], + [ 9.395147099999999, 47.3089637 ], + [ 9.3952757, 47.3089787 ], + [ 9.3956307, 47.3090798 ], + [ 9.3957016, 47.3091103 ], + [ 9.395768499999999, 47.3091474 ], + [ 9.395926, 47.3093139 ], + [ 9.3959816, 47.3093588 ], + [ 9.3960497, 47.3094142 ], + [ 9.3961349, 47.3094738 ], + [ 9.396271, 47.3095161 ], + [ 9.3964747, 47.3095785 ], + [ 9.3966131, 47.3096063 ], + [ 9.3968732, 47.3096522 ], + [ 9.3971336, 47.3097014 ], + [ 9.3973878, 47.3097763 ], + [ 9.3976044, 47.3098598 ], + [ 9.397784, 47.309929 ], + [ 9.397952, 47.3099812 ], + [ 9.3981063, 47.3100351 ], + [ 9.3983221, 47.3101114 ], + [ 9.3984554, 47.3101582 ], + [ 9.3989186, 47.3102648 ], + [ 9.398974, 47.310291 ], + [ 9.3990489, 47.3103061 ], + [ 9.3991422, 47.3103287 ], + [ 9.3992648, 47.3103486 ], + [ 9.3993515, 47.3104012 ], + [ 9.3993737, 47.3104033 ], + [ 9.3994624, 47.3104708 ], + [ 9.3995043, 47.3104957 ], + [ 9.3995509, 47.3105123 ], + [ 9.3996501, 47.31058 ], + [ 9.3997955, 47.3106684 ], + [ 9.3998759, 47.3107175 ], + [ 9.4001567, 47.3108502 ], + [ 9.4006212, 47.3110077 ], + [ 9.4006887, 47.311013 ], + [ 9.4007006, 47.3110119 ], + [ 9.4007823, 47.3109853 ], + [ 9.4008919, 47.3109646 ], + [ 9.4010217, 47.31095 ], + [ 9.4011374, 47.3109707 ], + [ 9.4012218, 47.3109869 ], + [ 9.4012969, 47.3109879 ], + [ 9.4013279, 47.3110116 ], + [ 9.401329, 47.311031 ], + [ 9.4014051, 47.3109981 ], + [ 9.4014654, 47.310982 ], + [ 9.4015018, 47.3110072 ], + [ 9.401586, 47.3110495 ], + [ 9.4016653, 47.3110871 ], + [ 9.4017772, 47.3111003 ], + [ 9.4018943, 47.3111297 ], + [ 9.4020139, 47.3111785 ], + [ 9.4021399, 47.3112195 ], + [ 9.4023522, 47.3112502 ], + [ 9.4028182, 47.3112868 ], + [ 9.4031768, 47.3112869 ], + [ 9.4033737, 47.3113657 ], + [ 9.4034186, 47.3113719 ], + [ 9.4036763, 47.311407 ], + [ 9.4037359, 47.3114104 ], + [ 9.4038691, 47.3114845 ], + [ 9.4044931, 47.3116295 ], + [ 9.4048725, 47.3115522 ], + [ 9.404949, 47.3115191 ], + [ 9.4050874, 47.3115232 ], + [ 9.4050821, 47.3115159 ], + [ 9.4051209, 47.311516 ], + [ 9.4052546, 47.3115794 ], + [ 9.4055115, 47.3116869 ], + [ 9.4058662, 47.311745 ], + [ 9.4062811, 47.3117809 ], + [ 9.4066521, 47.3118299 ], + [ 9.4069497, 47.3118767 ], + [ 9.4070689, 47.3118692 ], + [ 9.4072462, 47.311875 ], + [ 9.4074261, 47.3118915 ], + [ 9.4074428, 47.3118964 ], + [ 9.4074857, 47.311909 ], + [ 9.4075646, 47.3119408 ], + [ 9.4076796, 47.3119729 ], + [ 9.4077938, 47.3119896 ], + [ 9.4078639, 47.3119864 ], + [ 9.4079584, 47.3120057 ], + [ 9.4081372, 47.312075899999996 ], + [ 9.4082288, 47.3120958 ], + [ 9.4083534, 47.3121093 ], + [ 9.408562, 47.3121433 ], + [ 9.4087002, 47.3121515 ], + [ 9.4088752, 47.3121717 ], + [ 9.4090469, 47.3122035 ], + [ 9.4091758, 47.3122189 ], + [ 9.409329, 47.31224 ], + [ 9.4093819, 47.3122551 ], + [ 9.4095535, 47.3123098 ], + [ 9.4097715, 47.3123657 ], + [ 9.4099116, 47.3124009 ], + [ 9.4100717, 47.312432 ], + [ 9.410322, 47.31247 ], + [ 9.4104083, 47.3124866 ], + [ 9.410575099999999, 47.312518 ], + [ 9.4107809, 47.3125634 ], + [ 9.4110175, 47.3126462 ], + [ 9.4112121, 47.3126871 ], + [ 9.4113391, 47.3127118 ], + [ 9.4114591, 47.3127293 ], + [ 9.4116038, 47.3127531 ], + [ 9.4118205, 47.3127837 ], + [ 9.4119375, 47.3127964 ], + [ 9.4120241, 47.3128222 ], + [ 9.4120781, 47.3128513 ], + [ 9.4121057, 47.3128882 ], + [ 9.4121386, 47.3129397 ], + [ 9.4121689, 47.312975 ], + [ 9.4122377, 47.3129897 ], + [ 9.4123486, 47.312978 ], + [ 9.4126028, 47.312932 ], + [ 9.4127421, 47.312897 ], + [ 9.4128126, 47.3128626 ], + [ 9.412848199999999, 47.312821 ], + [ 9.4128661, 47.3127521 ], + [ 9.412854, 47.3126827 ], + [ 9.4128684, 47.3126386 ], + [ 9.4129136, 47.3125895 ], + [ 9.4129758, 47.312531 ], + [ 9.4129984, 47.3125123 ], + [ 9.413029, 47.3124869 ], + [ 9.4130451, 47.3124306 ], + [ 9.4130546, 47.3123946 ], + [ 9.4131432, 47.3124047 ], + [ 9.4132304, 47.3124195 ], + [ 9.4133157, 47.3124388 ], + [ 9.4133985, 47.3124626 ], + [ 9.4134596, 47.3124802 ], + [ 9.413724, 47.3125561 ], + [ 9.413962, 47.312633 ], + [ 9.4142142, 47.3127129 ], + [ 9.414377, 47.3127606 ], + [ 9.4145301, 47.312822 ], + [ 9.4146046, 47.3128479 ], + [ 9.4147853, 47.312893 ], + [ 9.414968, 47.3129345 ], + [ 9.4151004, 47.3129658 ], + [ 9.4152539, 47.3130014 ], + [ 9.4152849, 47.3130062 ], + [ 9.4153167, 47.3130077 ], + [ 9.4153342, 47.3130076 ], + [ 9.4153515, 47.3130092 ], + [ 9.4153682, 47.3130126 ], + [ 9.4153841, 47.3130176 ], + [ 9.4153987, 47.3130241 ], + [ 9.4154724, 47.3130599 ], + [ 9.415518, 47.3130918 ], + [ 9.4155585, 47.3131267 ], + [ 9.4155934, 47.3131643 ], + [ 9.4156224, 47.3132042 ], + [ 9.4156381, 47.3132206 ], + [ 9.4156574, 47.3132352 ], + [ 9.4156798, 47.3132476 ], + [ 9.4157046, 47.3132574 ], + [ 9.4158251, 47.3132833 ], + [ 9.4158784, 47.3132885 ], + [ 9.4159321, 47.3132898 ], + [ 9.4160695, 47.313291 ], + [ 9.4162655, 47.3133126 ], + [ 9.4165246, 47.3133612 ], + [ 9.416727, 47.3133928 ], + [ 9.4169006, 47.3134189 ], + [ 9.4170078, 47.313435 ], + [ 9.4171138, 47.3134544 ], + [ 9.4172184, 47.3134772 ], + [ 9.417307, 47.3135061 ], + [ 9.4173287, 47.3135163 ], + [ 9.4173525, 47.313524 ], + [ 9.4173779, 47.313529 ], + [ 9.4174041, 47.3135311 ], + [ 9.4174305, 47.3135304 ], + [ 9.4174563, 47.3135268 ], + [ 9.417481, 47.3135205 ], + [ 9.4175039, 47.3135115 ], + [ 9.4175193, 47.3135028 ], + [ 9.4175366, 47.313496 ], + [ 9.4175553, 47.3134912 ], + [ 9.417575, 47.3134887 ], + [ 9.417595, 47.3134885 ], + [ 9.4176148, 47.3134906 ], + [ 9.4176337, 47.3134949 ], + [ 9.4176513, 47.3135013 ], + [ 9.4177244, 47.3135232 ], + [ 9.417801, 47.3135386 ], + [ 9.4178798, 47.3135473 ], + [ 9.4179596, 47.3135491 ], + [ 9.4180391, 47.3135441 ], + [ 9.4181333, 47.3135453 ], + [ 9.4182273, 47.3135504 ], + [ 9.4183206, 47.3135595 ], + [ 9.4183485, 47.3135641 ], + [ 9.418377, 47.3135662 ], + [ 9.4184057, 47.3135658 ], + [ 9.4184324, 47.3135661 ], + [ 9.4184587, 47.3135693 ], + [ 9.4184839, 47.3135751 ], + [ 9.4187515, 47.3136073 ], + [ 9.4190185, 47.3136279 ], + [ 9.4192246, 47.313667 ], + [ 9.4193583, 47.3136833 ], + [ 9.4192875, 47.3137325 ], + [ 9.4191546, 47.3138341 ], + [ 9.41905, 47.3138712 ], + [ 9.4189758, 47.3139029 ], + [ 9.4189957, 47.313933 ], + [ 9.419027, 47.3139608 ], + [ 9.41908, 47.3139797 ], + [ 9.4191783, 47.3140509 ], + [ 9.4193276, 47.3141536 ], + [ 9.419385, 47.3141873 ], + [ 9.4195396, 47.3142189 ], + [ 9.4195397, 47.3142183 ], + [ 9.419886, 47.3142381 ], + [ 9.4199047, 47.3142417 ], + [ 9.4199988, 47.3142599 ], + [ 9.4200892, 47.3142817 ], + [ 9.4201103, 47.3142868 ], + [ 9.4202252, 47.314284 ], + [ 9.4204057, 47.3142525 ], + [ 9.4206866, 47.3142809 ], + [ 9.4208587, 47.3143149 ], + [ 9.4210489, 47.3143393 ], + [ 9.4212014, 47.3143761 ], + [ 9.4213843, 47.314372 ], + [ 9.4214741, 47.3144155 ], + [ 9.4215147, 47.3144206 ], + [ 9.4217973, 47.3144561 ], + [ 9.4222165, 47.3145655 ], + [ 9.4226283, 47.3146806 ], + [ 9.4230631, 47.3146626 ], + [ 9.4232561, 47.3145385 ], + [ 9.4232852, 47.3144942 ], + [ 9.4232838, 47.3143983 ], + [ 9.4232932, 47.3143671 ], + [ 9.4233841, 47.3141681 ], + [ 9.4234279, 47.314027 ], + [ 9.4234668, 47.3139486 ], + [ 9.4234765, 47.3138577 ], + [ 9.4235603, 47.3137587 ], + [ 9.4236865, 47.3136039 ], + [ 9.4237671, 47.3135316 ], + [ 9.4238936, 47.3134023 ], + [ 9.4238969, 47.3133519 ], + [ 9.4239053, 47.3132257 ], + [ 9.423907, 47.3131109 ], + [ 9.4239075, 47.313074 ], + [ 9.4239315, 47.3130178 ], + [ 9.4240684, 47.3128627 ], + [ 9.4240886, 47.3127983 ], + [ 9.4240913, 47.3127898 ], + [ 9.4240833, 47.3127314 ], + [ 9.4240898, 47.3127293 ], + [ 9.4241024, 47.3127252 ], + [ 9.4241472, 47.312711 ], + [ 9.4241995, 47.3126094 ], + [ 9.4242075, 47.3125939 ], + [ 9.4242082, 47.312586 ], + [ 9.4242082, 47.3125856 ], + [ 9.4242416, 47.3122172 ], + [ 9.4242471, 47.3121561 ], + [ 9.4243372, 47.3120032 ], + [ 9.4243577, 47.311977 ], + [ 9.424384, 47.3119441 ], + [ 9.4243911, 47.311931799999996 ], + [ 9.4243951, 47.3119189 ], + [ 9.4243957, 47.3119058 ], + [ 9.4243958, 47.3118998 ], + [ 9.4243972, 47.3118939 ], + [ 9.4243998, 47.3118882 ], + [ 9.4244036, 47.3118827 ], + [ 9.4244051, 47.3118805 ], + [ 9.424406, 47.3118781 ], + [ 9.4244064, 47.3118757 ], + [ 9.4244061, 47.3118732 ], + [ 9.4244053, 47.3118708 ], + [ 9.4244038, 47.3118666 ], + [ 9.4244033, 47.3118623 ], + [ 9.4244037, 47.311858 ], + [ 9.4244051, 47.3118538 ], + [ 9.4244074, 47.3118498 ], + [ 9.4244105, 47.311846 ], + [ 9.4244134, 47.3118425 ], + [ 9.4244155, 47.3118388 ], + [ 9.4244179, 47.3118307 ], + [ 9.4244183, 47.3118225 ], + [ 9.4244168, 47.3118144 ], + [ 9.4244068, 47.3117824 ], + [ 9.4244027, 47.3117731 ], + [ 9.4243964, 47.3117645 ], + [ 9.424388, 47.3117567 ], + [ 9.4243778, 47.3117499 ], + [ 9.4243661, 47.3117444 ], + [ 9.424359, 47.3117411 ], + [ 9.4243528, 47.3117372 ], + [ 9.4243477, 47.3117325 ], + [ 9.4243262, 47.3117116 ], + [ 9.4243024, 47.311692 ], + [ 9.4242928, 47.3116835 ], + [ 9.4242852, 47.3116742 ], + [ 9.4242795, 47.3116643 ], + [ 9.424276, 47.3116539 ], + [ 9.4242748, 47.3116433 ], + [ 9.4242729, 47.311621 ], + [ 9.4242679, 47.3115988 ], + [ 9.424266, 47.3115877 ], + [ 9.4242669, 47.3115765 ], + [ 9.4242706, 47.3115656 ], + [ 9.4242771, 47.3115552 ], + [ 9.424286, 47.3115458 ], + [ 9.4242955, 47.3115359 ], + [ 9.4243024, 47.311525 ], + [ 9.4243064, 47.3115135 ], + [ 9.4243076, 47.3115017 ], + [ 9.4243087, 47.3114904 ], + [ 9.4243125, 47.3114793 ], + [ 9.424319, 47.3114688 ], + [ 9.4243205, 47.3114664 ], + [ 9.4243215, 47.311464 ], + [ 9.4243244, 47.311446 ], + [ 9.4243232, 47.3114279 ], + [ 9.4243184, 47.3114112 ], + [ 9.42431, 47.3113952 ], + [ 9.424298199999999, 47.3113802 ], + [ 9.4242691, 47.3113518 ], + [ 9.4242363, 47.3113253 ], + [ 9.4242273, 47.3113194 ], + [ 9.4242175, 47.3113143 ], + [ 9.4241791, 47.3112947 ], + [ 9.4241708, 47.3112907 ], + [ 9.424161699999999, 47.3112874 ], + [ 9.4241521, 47.3112851 ], + [ 9.4241374, 47.3112816 ], + [ 9.4241234, 47.311277 ], + [ 9.4241104, 47.3112712 ], + [ 9.4240337, 47.3112327 ], + [ 9.4240085, 47.3112135 ], + [ 9.4239607, 47.3111775 ], + [ 9.4239101, 47.3111434 ], + [ 9.4238931, 47.3111336 ], + [ 9.4238883, 47.3111307 ], + [ 9.4238842, 47.3111272 ], + [ 9.4238809, 47.3111234 ], + [ 9.4238786, 47.3111193 ], + [ 9.4238755, 47.3111141 ], + [ 9.4238713, 47.3111093 ], + [ 9.4238659, 47.311105 ], + [ 9.4238595, 47.3111014 ], + [ 9.4238524, 47.3110986 ], + [ 9.4238495, 47.3110975 ], + [ 9.4238469, 47.3110961 ], + [ 9.4238446, 47.3110944 ], + [ 9.4238427, 47.3110925 ], + [ 9.4238412, 47.3110905 ], + [ 9.4238402, 47.3110883 ], + [ 9.4238397, 47.311086 ], + [ 9.4238394, 47.3110664 ], + [ 9.4238406, 47.3110606 ], + [ 9.423843, 47.3110549 ], + [ 9.4238467, 47.3110496 ], + [ 9.4238483, 47.3110472 ], + [ 9.4238493, 47.3110445 ], + [ 9.4238496, 47.3110418 ], + [ 9.4238492, 47.3110392 ], + [ 9.4238403, 47.3110111 ], + [ 9.4238288, 47.3109834 ], + [ 9.4238268, 47.3109801 ], + [ 9.4238241, 47.310977 ], + [ 9.4238208, 47.3109742 ], + [ 9.4238169, 47.3109718 ], + [ 9.4238125, 47.3109698 ], + [ 9.4238061, 47.3109668 ], + [ 9.4238003, 47.3109633 ], + [ 9.4237954, 47.3109591 ], + [ 9.4237914, 47.3109546 ], + [ 9.4237885, 47.3109496 ], + [ 9.4238181, 47.3109345 ], + [ 9.4237972, 47.3109155 ], + [ 9.4237831, 47.3108937 ], + [ 9.4237681, 47.3108705 ], + [ 9.4237548, 47.3108324 ], + [ 9.4237003, 47.3107788 ], + [ 9.4237036, 47.3107259 ], + [ 9.4236651, 47.3106459 ], + [ 9.4236101, 47.3105982 ], + [ 9.4237134, 47.3105919 ], + [ 9.4238638, 47.3105732 ], + [ 9.4238702, 47.3105653 ], + [ 9.4238782, 47.3105582 ], + [ 9.4238875, 47.3105519 ], + [ 9.4238981, 47.3105465 ], + [ 9.4239096, 47.3105422 ], + [ 9.4239234, 47.3105387 ], + [ 9.4239379, 47.3105368 ], + [ 9.4239526, 47.3105363 ], + [ 9.4239672, 47.3105375 ], + [ 9.4240397, 47.3105654 ], + [ 9.4241129, 47.3105682 ], + [ 9.4241711, 47.3105725 ], + [ 9.4242883, 47.3105184 ], + [ 9.4243143, 47.3105017 ], + [ 9.424335, 47.3104888 ], + [ 9.4249273, 47.3104138 ], + [ 9.4250189, 47.3104258 ], + [ 9.4251772, 47.3104897 ], + [ 9.4252966, 47.3104802 ], + [ 9.4256724, 47.3105211 ], + [ 9.4257545, 47.3105812 ], + [ 9.4258324, 47.310578 ], + [ 9.4258991, 47.3105641 ], + [ 9.425995, 47.3106161 ], + [ 9.4260489, 47.3106062 ], + [ 9.4261683, 47.3105384 ], + [ 9.4263172, 47.3105015 ], + [ 9.4264, 47.3104925 ], + [ 9.4266825, 47.3103792 ], + [ 9.4266602, 47.3103151 ], + [ 9.4268192, 47.3102198 ], + [ 9.4268583, 47.3101491 ], + [ 9.4268978, 47.3100666 ], + [ 9.4269364, 47.3099535 ], + [ 9.426991, 47.3099374 ], + [ 9.4270408, 47.3098799 ], + [ 9.4271127, 47.3098745 ], + [ 9.4271189, 47.3098329 ], + [ 9.4271727, 47.3098148 ], + [ 9.4272268, 47.3098168 ], + [ 9.4279649, 47.3095088 ], + [ 9.4282955, 47.3094114 ], + [ 9.4285671, 47.3093275 ], + [ 9.4288231, 47.3093511 ], + [ 9.4290696, 47.3093544 ], + [ 9.428988499999999, 47.3091087 ], + [ 9.4288685, 47.3088035 ], + [ 9.4287101, 47.3086566 ], + [ 9.4283138, 47.3084989 ], + [ 9.4279985, 47.3084403 ], + [ 9.4275952, 47.3084244 ], + [ 9.4276804, 47.3083202 ], + [ 9.4277078, 47.3082026 ], + [ 9.4276839, 47.3081573 ], + [ 9.4276035, 47.3081167 ], + [ 9.4276638, 47.308089 ], + [ 9.4277659, 47.3080421 ], + [ 9.4280685, 47.3079842 ], + [ 9.4282943, 47.3079552 ], + [ 9.4284738, 47.3079652 ], + [ 9.4286692, 47.3080221 ], + [ 9.4287683, 47.3079853 ], + [ 9.4292447, 47.3075157 ], + [ 9.4292379, 47.3074599 ], + [ 9.4293065, 47.3073101 ], + [ 9.4295928, 47.3069405 ], + [ 9.4296856, 47.3067303 ], + [ 9.4298341, 47.3066145 ], + [ 9.4300658, 47.3064841 ], + [ 9.4302633, 47.3063427 ], + [ 9.4301894, 47.3061716 ], + [ 9.4300613, 47.3059094 ], + [ 9.4297722, 47.3054087 ], + [ 9.4293779, 47.3047192 ], + [ 9.4295242, 47.3047089 ], + [ 9.4297201, 47.304697 ], + [ 9.4298508, 47.3046919 ], + [ 9.429996299999999, 47.3046943 ], + [ 9.4301069, 47.3047057 ], + [ 9.4302091, 47.3047267 ], + [ 9.4302793, 47.3047459 ], + [ 9.4303524, 47.304777 ], + [ 9.4304183, 47.3048099 ], + [ 9.4305754, 47.3048109 ], + [ 9.4308945, 47.3041063 ], + [ 9.4310252, 47.3035946 ], + [ 9.4311745, 47.3030099 ], + [ 9.4314499, 47.3023648 ], + [ 9.4318155, 47.3022255 ], + [ 9.4320159, 47.3019247 ], + [ 9.432232, 47.3015363 ], + [ 9.4327264, 47.3013901 ], + [ 9.4330954, 47.3011675 ], + [ 9.4337364, 47.300803 ], + [ 9.4342209, 47.3004609 ], + [ 9.434724, 47.3002936 ], + [ 9.4353662, 47.3001935 ], + [ 9.4354806, 47.30073 ], + [ 9.4357485, 47.3007718 ], + [ 9.4359774, 47.300531 ], + [ 9.4360733, 47.3004882 ], + [ 9.4363899, 47.3003993 ], + [ 9.4366331, 47.3004002 ], + [ 9.4368419, 47.3005573 ], + [ 9.4371701, 47.3009767 ], + [ 9.4378411, 47.3017689 ], + [ 9.4378947, 47.3018616 ], + [ 9.4379009, 47.3018698 ], + [ 9.437909, 47.3018773 ], + [ 9.4379188, 47.3018837 ], + [ 9.43793, 47.301889 ], + [ 9.4379423, 47.3018929 ], + [ 9.4379554, 47.3018954 ], + [ 9.437969, 47.3018964 ], + [ 9.4382857, 47.301888 ], + [ 9.4385911, 47.3018796 ], + [ 9.4386063, 47.3018789 ], + [ 9.4386215, 47.3018799 ], + [ 9.4386363, 47.3018824 ], + [ 9.4386545, 47.3018881 ], + [ 9.4386738, 47.3018917 ], + [ 9.4386937, 47.3018929 ], + [ 9.4388083, 47.3018998 ], + [ 9.4389221, 47.3019113 ], + [ 9.4390347, 47.3019275 ], + [ 9.4391301, 47.301943 ], + [ 9.4392268, 47.3019546 ], + [ 9.4393005, 47.3019654 ], + [ 9.439372, 47.3019816 ], + [ 9.4394337, 47.3019942 ], + [ 9.439497, 47.3020025 ], + [ 9.4395612, 47.3020064 ], + [ 9.4396208, 47.3020092 ], + [ 9.4396798, 47.3020153 ], + [ 9.4397458, 47.3020201 ], + [ 9.4398122, 47.3020192 ], + [ 9.4401771, 47.3020244 ], + [ 9.4403707, 47.3020517 ], + [ 9.4403735, 47.3020497 ], + [ 9.4404633, 47.3020016 ], + [ 9.4405603, 47.3019593 ], + [ 9.4406647, 47.3019257 ], + [ 9.440774, 47.3019021 ], + [ 9.440888, 47.3018914 ], + [ 9.4410322, 47.3018939 ], + [ 9.4411731, 47.3019097 ], + [ 9.4413679, 47.3019457 ], + [ 9.4423117, 47.3021393 ], + [ 9.4425487, 47.3021811 ], + [ 9.4427018, 47.3022014 ], + [ 9.4428548, 47.3022127 ], + [ 9.4430124, 47.3022164 ], + [ 9.4431674, 47.3022123 ], + [ 9.4433217, 47.3021974 ], + [ 9.4434737, 47.3021713 ], + [ 9.443688, 47.3021205 ], + [ 9.4443535, 47.3019491 ], + [ 9.4445549, 47.3018972 ], + [ 9.445129, 47.3017484 ], + [ 9.4453642, 47.3016832 ], + [ 9.4455961, 47.3016134 ], + [ 9.4463067, 47.3013893 ], + [ 9.4466193, 47.3012887 ], + [ 9.446648, 47.3012781 ], + [ 9.4467795, 47.3012299 ], + [ 9.4468572, 47.3011957 ], + [ 9.4469267, 47.301155 ], + [ 9.4469858, 47.3011067 ], + [ 9.4470331, 47.3010539 ], + [ 9.4470668, 47.3009964 ], + [ 9.4470845, 47.3009344 ], + [ 9.4470936, 47.3008701 ], + [ 9.4471181, 47.3006178 ], + [ 9.4471399, 47.3004624 ], + [ 9.4471736, 47.3003538 ], + [ 9.447252, 47.3002233 ], + [ 9.4473561, 47.3000667 ], + [ 9.447494, 47.2998598 ], + [ 9.4475621, 47.2997645 ], + [ 9.4476404, 47.2996721 ], + [ 9.4477189, 47.299593 ], + [ 9.4478132, 47.2995142 ], + [ 9.4479404, 47.2994205 ], + [ 9.4480632, 47.2993407 ], + [ 9.448205399999999, 47.2992553 ], + [ 9.4489222, 47.2988245 ], + [ 9.449059, 47.2987338 ], + [ 9.4491845, 47.2986363 ], + [ 9.4492895, 47.2985282 ], + [ 9.4493841, 47.2983847 ], + [ 9.4494279, 47.298278 ], + [ 9.4495584, 47.297915 ], + [ 9.4495869, 47.297842 ], + [ 9.4496276, 47.2977714 ], + [ 9.4496897, 47.2977076 ], + [ 9.4497668, 47.297653 ], + [ 9.4498564, 47.2976073 ], + [ 9.4499575, 47.2975683 ], + [ 9.4501085, 47.2975169 ], + [ 9.450254, 47.2974626 ], + [ 9.4503923, 47.2974043 ], + [ 9.4505257, 47.297343 ], + [ 9.4506541, 47.2972772 ], + [ 9.4506815, 47.2972608 ], + [ 9.4507746, 47.2972053 ], + [ 9.4509803, 47.2970669 ], + [ 9.4510898, 47.2970058 ], + [ 9.4511867, 47.296969 ], + [ 9.4512932, 47.2969477 ], + [ 9.4514036, 47.2969445 ], + [ 9.451691, 47.2969481 ], + [ 9.4518529, 47.2969417 ], + [ 9.4519349, 47.2969218 ], + [ 9.4520105, 47.2968919 ], + [ 9.4520817, 47.2968559 ], + [ 9.45218, 47.2967961 ], + [ 9.452338, 47.2966804 ], + [ 9.4524559, 47.2965889 ], + [ 9.4525835, 47.2965174 ], + [ 9.452658, 47.2964906 ], + [ 9.4526822, 47.2964819 ], + [ 9.4527271, 47.2964719 ], + [ 9.4527567, 47.2964652 ], + [ 9.452836, 47.2964577 ], + [ 9.4530905, 47.2964461 ], + [ 9.4530898, 47.2964433 ], + [ 9.4532593, 47.2964362 ], + [ 9.4534202, 47.2964294 ], + [ 9.4534207, 47.2964319 ], + [ 9.4539032, 47.296411 ], + [ 9.454053, 47.2964057 ], + [ 9.4541667, 47.2964152 ], + [ 9.4542749, 47.2964424 ], + [ 9.4543706, 47.2964848 ], + [ 9.454406, 47.2965047 ], + [ 9.4544101, 47.296507 ], + [ 9.4544198, 47.2965124 ], + [ 9.4544572, 47.2965333 ], + [ 9.4544964, 47.2965552 ], + [ 9.4545046, 47.2965599 ], + [ 9.4545087, 47.2965622 ], + [ 9.4545571, 47.2965892 ], + [ 9.4547067, 47.296674 ], + [ 9.4547734, 47.2967118 ], + [ 9.4548436, 47.2967666 ], + [ 9.4548889, 47.2968342 ], + [ 9.4549039, 47.2969078 ], + [ 9.4548868, 47.2969797 ], + [ 9.4548379, 47.2970493 ], + [ 9.4546145, 47.2972624 ], + [ 9.4544574, 47.2974122 ], + [ 9.4544324, 47.2974641 ], + [ 9.454434299999999, 47.2975221 ], + [ 9.4544785, 47.2975636 ], + [ 9.4545472, 47.2975872 ], + [ 9.4546271, 47.2975857 ], + [ 9.4547025, 47.2975601 ], + [ 9.4548162, 47.2975119 ], + [ 9.4548346, 47.2974944 ], + [ 9.4552609, 47.2973128 ], + [ 9.4552636, 47.2973221 ], + [ 9.4555301, 47.2972089 ], + [ 9.4555222, 47.2972002 ], + [ 9.4555647, 47.2971842 ], + [ 9.4556323, 47.2971622 ], + [ 9.4556511, 47.2971563 ], + [ 9.4556689, 47.297149 ], + [ 9.4556852, 47.2971403 ], + [ 9.4557056, 47.2971259 ], + [ 9.4557223, 47.2971094 ], + [ 9.4557423, 47.2971125 ], + [ 9.4557934, 47.2970554 ], + [ 9.4559034, 47.2970782 ], + [ 9.4558781, 47.2971052 ], + [ 9.4558569, 47.2971337 ], + [ 9.45584, 47.2971636 ], + [ 9.4557296, 47.2974064 ], + [ 9.4556645, 47.2975471 ], + [ 9.4556687, 47.2975729 ], + [ 9.4556493, 47.297615 ], + [ 9.4556241, 47.2976348 ], + [ 9.4556012, 47.2976849 ], + [ 9.4554461, 47.2980214 ], + [ 9.455404099999999, 47.2981113 ], + [ 9.4554148, 47.2981446 ], + [ 9.455403, 47.2981703 ], + [ 9.4553724, 47.2981883 ], + [ 9.4552948, 47.2983601 ], + [ 9.4552707, 47.2984124 ], + [ 9.456201, 47.2985371 ], + [ 9.4564118, 47.2985138 ], + [ 9.4566638, 47.2985618 ], + [ 9.456980399999999, 47.2987919 ], + [ 9.4571471, 47.2988741 ], + [ 9.4574102, 47.2989611 ], + [ 9.4575957, 47.2990299 ], + [ 9.4578869, 47.2990968 ], + [ 9.4581483, 47.299138 ], + [ 9.4583502, 47.2991345 ], + [ 9.4585216, 47.2990857 ], + [ 9.45874, 47.2990098 ], + [ 9.458950399999999, 47.2989734 ], + [ 9.4592196, 47.2989687 ], + [ 9.4595273, 47.2989633 ], + [ 9.4597872, 47.2989653 ], + [ 9.4601031, 47.2989205 ], + [ 9.4602192, 47.2989157 ], + [ 9.4603787, 47.2989505 ], + [ 9.4605842, 47.2990878 ], + [ 9.4606571, 47.2991366 ], + [ 9.4608833, 47.2991948 ], + [ 9.460947, 47.2992087 ], + [ 9.4610764, 47.2992111 ], + [ 9.4612583, 47.2991882 ], + [ 9.4616306, 47.2991097 ], + [ 9.4618775, 47.2990203 ], + [ 9.4622663, 47.2991247 ], + [ 9.4626381, 47.2990331 ], + [ 9.4629547, 47.2990079 ], + [ 9.463166, 47.2989977 ], + [ 9.4633616, 47.2990793 ], + [ 9.46357, 47.2992459 ], + [ 9.463767, 47.2993668 ], + [ 9.4639421, 47.2994161 ], + [ 9.4642227, 47.299457 ], + [ 9.4646326, 47.2996069 ], + [ 9.4648691, 47.2997533 ], + [ 9.465115, 47.299893 ], + [ 9.4651678, 47.3000164 ], + [ 9.4652342, 47.3002444 ], + [ 9.4653057, 47.3003544 ], + [ 9.4652993, 47.3004396 ], + [ 9.46536, 47.3005171 ], + [ 9.4655763, 47.3006377 ], + [ 9.4657016, 47.300642 ], + [ 9.4658597, 47.3007505 ], + [ 9.4664803, 47.3006861 ], + [ 9.4667019, 47.3006626 ], + [ 9.4669227, 47.300576 ], + [ 9.4673172, 47.300498 ], + [ 9.4674193, 47.3004446 ], + [ 9.4677152, 47.3002407 ], + [ 9.4679419, 47.3002522 ], + [ 9.4680565, 47.3002363 ], + [ 9.4681547, 47.3002479 ], + [ 9.4682886, 47.3002932 ], + [ 9.4685022, 47.3002585 ], + [ 9.4687171, 47.3002376 ], + [ 9.4689119, 47.3002516 ], + [ 9.4692966, 47.3002064 ], + [ 9.469669, 47.3001961 ], + [ 9.4698866, 47.3002167 ], + [ 9.4700194, 47.3002491 ], + [ 9.4705508, 47.3003772 ], + [ 9.4707475, 47.3004512 ], + [ 9.4708982, 47.3005585 ], + [ 9.47115, 47.3006492 ], + [ 9.471289, 47.3006995 ], + [ 9.4717001, 47.3008177 ], + [ 9.4717786, 47.3008185 ], + [ 9.4721641, 47.3008189 ], + [ 9.4724808, 47.3008345 ], + [ 9.4726406, 47.300864 ], + [ 9.4727691, 47.3008082 ], + [ 9.4730633, 47.3007474 ], + [ 9.4733405, 47.3007585 ], + [ 9.4734073, 47.3006608 ], + [ 9.4735076, 47.3006616 ], + [ 9.473700000000001, 47.3006633 ], + [ 9.4738936, 47.3006201 ], + [ 9.4740239, 47.3005717 ], + [ 9.4741857, 47.300581 ], + [ 9.4743558, 47.3006253 ], + [ 9.4745962, 47.3007074 ], + [ 9.474781, 47.3006855 ], + [ 9.4748849, 47.3007078 ], + [ 9.4753217, 47.3006846 ], + [ 9.4754275, 47.3007468 ], + [ 9.475537899999999, 47.3008496 ], + [ 9.475748, 47.3008401 ], + [ 9.4759302, 47.3008436 ], + [ 9.4760687, 47.3008902 ], + [ 9.4764088, 47.3009254 ], + [ 9.4766665, 47.3010441 ], + [ 9.4767887, 47.3011186 ], + [ 9.4768588, 47.3011549 ], + [ 9.4769513, 47.3011726 ], + [ 9.4770462, 47.3012422 ], + [ 9.4771126, 47.3012925 ], + [ 9.477393, 47.301326 ], + [ 9.4774878, 47.301376 ], + [ 9.4776189, 47.3014811 ], + [ 9.4776511, 47.3015505 ], + [ 9.4777295, 47.3016325 ], + [ 9.4777363, 47.3017133 ], + [ 9.4778619, 47.3017941 ], + [ 9.477909, 47.3018079 ], + [ 9.4779749, 47.3018272 ], + [ 9.4780949, 47.3019368 ], + [ 9.4783315, 47.3020079 ], + [ 9.4784771, 47.3019779 ], + [ 9.4786484, 47.3019185 ], + [ 9.4789939, 47.3019583 ], + [ 9.4791401, 47.3019119 ], + [ 9.479263, 47.3020028 ], + [ 9.4793772, 47.3020113 ], + [ 9.4795771, 47.302083 ], + [ 9.4796902, 47.3020931 ], + [ 9.4797925, 47.3021021 ], + [ 9.4799769, 47.302108 ], + [ 9.4800664, 47.3021078 ], + [ 9.480144899999999, 47.3021076 ], + [ 9.4803134, 47.3020193 ], + [ 9.4804866, 47.3020384 ], + [ 9.4806081, 47.3020235 ], + [ 9.4807749, 47.3021602 ], + [ 9.4809248, 47.3021505 ], + [ 9.4812534, 47.3021027 ], + [ 9.4813377, 47.3020656 ], + [ 9.4815744, 47.3019615 ], + [ 9.4818426, 47.3019243 ], + [ 9.4819227, 47.3018928 ], + [ 9.481962, 47.3018452 ], + [ 9.4820247, 47.3017425 ], + [ 9.4820954, 47.3017372 ], + [ 9.4821711, 47.3018128 ], + [ 9.4822569, 47.3019007 ], + [ 9.4824869, 47.3019662 ], + [ 9.4825006, 47.3018951 ], + [ 9.4825464, 47.3018097 ], + [ 9.4824681, 47.30167 ], + [ 9.4826727, 47.3016305 ], + [ 9.4828993, 47.3015436 ], + [ 9.4829223, 47.3014885 ], + [ 9.4831415, 47.3013915 ], + [ 9.4832535, 47.3013424 ], + [ 9.4834992, 47.3013227 ], + [ 9.4837164, 47.3012897 ], + [ 9.4837577, 47.3011849 ], + [ 9.4837926, 47.301177 ], + [ 9.4838583, 47.3011622 ], + [ 9.484051, 47.3011923 ], + [ 9.4843189, 47.3009629 ], + [ 9.4843942, 47.3009555 ], + [ 9.4846814, 47.3010461 ], + [ 9.4847828, 47.3010666 ], + [ 9.4849154, 47.3009996 ], + [ 9.4851187, 47.3010733 ], + [ 9.4851983, 47.3011014 ], + [ 9.4853196, 47.3010553 ], + [ 9.485341, 47.3010501 ], + [ 9.4854364, 47.3010645 ], + [ 9.485476, 47.3010705 ], + [ 9.4856057, 47.3011124 ], + [ 9.4858792, 47.3010701 ], + [ 9.485996, 47.3011322 ], + [ 9.4861909, 47.301321 ], + [ 9.4864109, 47.3013365 ], + [ 9.4866249, 47.3014779 ], + [ 9.4868343, 47.3015005 ], + [ 9.4869804, 47.3014817 ], + [ 9.4871818, 47.3015345 ], + [ 9.4872519, 47.3016211 ], + [ 9.4872694, 47.3016428 ], + [ 9.4876127, 47.3017287 ], + [ 9.4878342, 47.3017459 ], + [ 9.4882393, 47.3018306 ], + [ 9.4884407, 47.3018662 ], + [ 9.4887201, 47.3018223 ], + [ 9.4888698, 47.3017975 ], + [ 9.489019, 47.3017327 ], + [ 9.4896375, 47.3014639 ], + [ 9.4900088, 47.3014194 ], + [ 9.4900334, 47.3013287 ], + [ 9.4900413, 47.3012996 ], + [ 9.4901288, 47.3012259 ], + [ 9.4902784, 47.3010997 ], + [ 9.490331, 47.3010555 ], + [ 9.4906904, 47.3007653 ], + [ 9.4906045, 47.300638 ], + [ 9.4905085, 47.3004958 ], + [ 9.490454100000001, 47.3004525 ], + [ 9.4901901, 47.3002425 ], + [ 9.4903451, 47.2999808 ], + [ 9.4905775, 47.2998258 ], + [ 9.4903946, 47.2995386 ], + [ 9.490548, 47.2995003 ], + [ 9.4903292, 47.2990584 ], + [ 9.4899759, 47.298577 ], + [ 9.4898977, 47.2980925 ], + [ 9.4895176, 47.2978572 ], + [ 9.4896063, 47.2977201 ], + [ 9.4892804, 47.2963447 ], + [ 9.4893349, 47.294701 ], + [ 9.4883205, 47.2932881 ], + [ 9.488214, 47.2930963 ], + [ 9.4880151, 47.292738 ], + [ 9.4875398, 47.2918821 ], + [ 9.4868449, 47.2907137 ], + [ 9.4867157, 47.2897038 ], + [ 9.4878032, 47.2891204 ], + [ 9.4877643, 47.2882873 ], + [ 9.4870228, 47.2872308 ], + [ 9.4864792, 47.2861591 ], + [ 9.4863298, 47.2859166 ], + [ 9.4857551, 47.284984 ], + [ 9.485174, 47.284041 ], + [ 9.4850717, 47.283875 ], + [ 9.4849932, 47.2837478 ], + [ 9.4849778, 47.2837364 ], + [ 9.4847605, 47.2835792 ], + [ 9.4839852, 47.2830181 ], + [ 9.4833363, 47.2826699 ], + [ 9.4830688, 47.2825737 ], + [ 9.482793, 47.2825082 ], + [ 9.482389, 47.2824756 ], + [ 9.4820966, 47.2823523 ], + [ 9.4815674, 47.2820588 ], + [ 9.4809923, 47.2816895 ], + [ 9.4807931, 47.2814972 ], + [ 9.480714, 47.2811199 ], + [ 9.480523999999999, 47.2806938 ], + [ 9.4802607, 47.2805677 ], + [ 9.4802026, 47.2804552 ], + [ 9.4802139, 47.2801337 ], + [ 9.4798461, 47.2796475 ], + [ 9.4798627, 47.2793794 ], + [ 9.4798106, 47.2791575 ], + [ 9.479671, 47.2790186 ], + [ 9.4786832, 47.2785584 ], + [ 9.4786155, 47.2784567 ], + [ 9.4786276, 47.2782466 ], + [ 9.4785898, 47.2781358 ], + [ 9.4785812, 47.2781266 ], + [ 9.4784217, 47.2779546 ], + [ 9.4781779, 47.2778111 ], + [ 9.4780568, 47.277629 ], + [ 9.4779166, 47.2775629 ], + [ 9.4776114, 47.2774805 ], + [ 9.4773685, 47.2773627 ], + [ 9.4772791, 47.2772783 ], + [ 9.4769785, 47.2769947 ], + [ 9.4766074, 47.276772 ], + [ 9.4765253, 47.2766888 ], + [ 9.4764835, 47.2761219 ], + [ 9.4763982, 47.2759898 ], + [ 9.4760862, 47.2757524 ], + [ 9.475958, 47.2755896 ], + [ 9.4759801, 47.2753614 ], + [ 9.4759498, 47.2751194 ], + [ 9.4760351, 47.2749248 ], + [ 9.4760352, 47.2748002 ], + [ 9.4758812, 47.2746005 ], + [ 9.4752798, 47.2740598 ], + [ 9.4749265, 47.2738184 ], + [ 9.4744481, 47.273559 ], + [ 9.4741719, 47.2730998 ], + [ 9.4736881, 47.2725088 ], + [ 9.4737181, 47.2723781 ], + [ 9.473865, 47.2722845 ], + [ 9.473524, 47.2720444 ], + [ 9.4731366, 47.2718675 ], + [ 9.4729042, 47.2716598 ], + [ 9.4729456, 47.2712106 ], + [ 9.4725932, 47.2711825 ], + [ 9.4723013, 47.2710787 ], + [ 9.4719492, 47.2709851 ], + [ 9.4716494, 47.2708289 ], + [ 9.4712194, 47.270554 ], + [ 9.4709711, 47.2703545 ], + [ 9.4708415, 47.2702929 ], + [ 9.4704736, 47.2701844 ], + [ 9.4703882, 47.270022 ], + [ 9.4703023, 47.2699266 ], + [ 9.4699869, 47.2696963 ], + [ 9.4699649, 47.2696803 ], + [ 9.4697181, 47.2695345 ], + [ 9.4693031, 47.2693347 ], + [ 9.4683671, 47.2690482 ], + [ 9.4681905, 47.2689648 ], + [ 9.4680847, 47.2688773 ], + [ 9.4676446, 47.2685133 ], + [ 9.4670442, 47.268527399999996 ], + [ 9.4665509, 47.2682433 ], + [ 9.466488, 47.2681252 ], + [ 9.466463, 47.2679046 ], + [ 9.4663816, 47.267691 ], + [ 9.4660882, 47.2672907 ], + [ 9.4656801, 47.266941 ], + [ 9.4650031, 47.2666823 ], + [ 9.4648814, 47.2666003 ], + [ 9.4647972, 47.2665072 ], + [ 9.464674, 47.266301 ], + [ 9.4645767, 47.266197 ], + [ 9.4643046, 47.2659753 ], + [ 9.4643459, 47.2658371 ], + [ 9.4634658, 47.2654464 ], + [ 9.4625254, 47.2651132 ], + [ 9.4620698, 47.2648717 ], + [ 9.4618838, 47.264711 ], + [ 9.4617295, 47.2645235 ], + [ 9.4613659, 47.2641791 ], + [ 9.461246, 47.2640994 ], + [ 9.4608191, 47.2638921 ], + [ 9.4601536, 47.2637123 ], + [ 9.459697, 47.2634823 ], + [ 9.459632299999999, 47.2634497 ], + [ 9.4594428, 47.2633891 ], + [ 9.4587785, 47.2632443 ], + [ 9.458286, 47.2631914 ], + [ 9.4581445, 47.2631938 ], + [ 9.4580362, 47.2632348 ], + [ 9.4577323, 47.26346 ], + [ 9.4578344, 47.263132 ], + [ 9.45779, 47.2630219 ], + [ 9.457635, 47.262854 ], + [ 9.4573269, 47.2626325 ], + [ 9.4569629, 47.2623324 ], + [ 9.4565596, 47.2621456 ], + [ 9.4560922, 47.2619403 ], + [ 9.4557203, 47.2617769 ], + [ 9.4553135, 47.2616313 ], + [ 9.454930000000001, 47.2614646 ], + [ 9.4546984, 47.2613394 ], + [ 9.4541772, 47.2610048 ], + [ 9.4540725, 47.2609354 ], + [ 9.4536654, 47.2607184 ], + [ 9.453570299999999, 47.260689 ], + [ 9.4532843, 47.2605618 ], + [ 9.4528905, 47.2604924 ], + [ 9.4527557, 47.260529 ], + [ 9.4524031, 47.2603364 ], + [ 9.4522698, 47.2602972 ], + [ 9.4520163, 47.2603035 ], + [ 9.4518451, 47.260164 ], + [ 9.4517007, 47.260112 ], + [ 9.4511117, 47.2600285 ], + [ 9.4502597, 47.2589604 ], + [ 9.4501938, 47.2586873 ], + [ 9.4500518, 47.2584184 ], + [ 9.449648, 47.2581123 ], + [ 9.4494077, 47.2579741 ], + [ 9.4491033, 47.257753 ], + [ 9.4485474, 47.2574324 ], + [ 9.4474328, 47.2566416 ], + [ 9.4474739, 47.2564807 ], + [ 9.4474918, 47.2562644 ], + [ 9.4472559, 47.2558773 ], + [ 9.4471687, 47.2558026 ], + [ 9.4468653, 47.2557713 ], + [ 9.4465221, 47.2557703 ], + [ 9.4462657, 47.255758900000004 ], + [ 9.4459418, 47.2557756 ], + [ 9.4451326, 47.2551485 ], + [ 9.4450791, 47.2550543 ], + [ 9.444992599999999, 47.2548397 ], + [ 9.4449103, 47.2547617 ], + [ 9.4446513, 47.2546332 ], + [ 9.4443592, 47.2545769 ], + [ 9.4442249, 47.2545296 ], + [ 9.4435429, 47.2541289 ], + [ 9.4434006, 47.2540795 ], + [ 9.4431162, 47.254017 ], + [ 9.442845, 47.2539252 ], + [ 9.442489, 47.2537111 ], + [ 9.4424248, 47.2536286 ], + [ 9.4423975, 47.2535253 ], + [ 9.4421355, 47.2534751 ], + [ 9.4421011, 47.253358 ], + [ 9.4419938, 47.2532816 ], + [ 9.4410802, 47.2531659 ], + [ 9.4407146, 47.2531528 ], + [ 9.4404645, 47.2531237 ], + [ 9.4399798, 47.2529441 ], + [ 9.4397927, 47.2529647 ], + [ 9.4396629, 47.2529125 ], + [ 9.4390539, 47.2523107 ], + [ 9.4384163, 47.2518177 ], + [ 9.4382521, 47.2516907 ], + [ 9.4381599, 47.2515829 ], + [ 9.4378057, 47.2510606 ], + [ 9.4378009, 47.2507254 ], + [ 9.4374766, 47.2508178 ], + [ 9.4371233, 47.2508809 ], + [ 9.4368855, 47.2509799 ], + [ 9.436706, 47.2509794 ], + [ 9.4350869, 47.2508333 ], + [ 9.4346328, 47.2507853 ], + [ 9.4344798, 47.2507947 ], + [ 9.4343434, 47.2507775 ], + [ 9.4341811, 47.2507125 ], + [ 9.4332476, 47.2504523 ], + [ 9.4329941, 47.2503585 ], + [ 9.4328219, 47.2502559 ], + [ 9.4324871, 47.2500939 ], + [ 9.4321467, 47.2498971 ], + [ 9.4318485, 47.2498774 ], + [ 9.4314366, 47.2497003 ], + [ 9.4309974, 47.2496384 ], + [ 9.4309121, 47.2495766 ], + [ 9.4308475, 47.2494453 ], + [ 9.4305441, 47.2493991 ], + [ 9.4303967, 47.2493488 ], + [ 9.4301761, 47.2493094 ], + [ 9.4299524, 47.2492469 ], + [ 9.4298302, 47.2492128 ], + [ 9.4295805, 47.2490828 ], + [ 9.4295206, 47.2490021 ], + [ 9.4294808, 47.2488867 ], + [ 9.4291141, 47.2487099 ], + [ 9.4289995, 47.248637 ], + [ 9.428822, 47.2484674 ], + [ 9.4283762, 47.2484041 ], + [ 9.4282256, 47.2483551 ], + [ 9.4277458, 47.2479347 ], + [ 9.4273942, 47.2477224 ], + [ 9.4271524, 47.2475238 ], + [ 9.4269991, 47.247632 ], + [ 9.4268153, 47.2476404 ], + [ 9.4266563, 47.2476135 ], + [ 9.4265343, 47.24757 ], + [ 9.4263834, 47.2472646 ], + [ 9.4262366, 47.2471066 ], + [ 9.4247467, 47.2472715 ], + [ 9.4189207, 47.2476135 ], + [ 9.4173535, 47.2470834 ], + [ 9.416696, 47.2467995 ], + [ 9.4159439, 47.2466293 ], + [ 9.4155305, 47.2466526 ], + [ 9.4148057, 47.2465307 ], + [ 9.4141838, 47.2457436 ], + [ 9.4123182, 47.2451343 ], + [ 9.411317, 47.2447246 ], + [ 9.4103555, 47.2442172 ], + [ 9.4099221, 47.2439419 ], + [ 9.4094053, 47.2435241 ], + [ 9.4086369, 47.2427749 ], + [ 9.4074385, 47.2417442 ], + [ 9.4071135, 47.2415404 ], + [ 9.4064161, 47.2410333 ], + [ 9.406354, 47.2408938 ], + [ 9.4056943, 47.2402047 ], + [ 9.4051579, 47.2395988 ], + [ 9.4050604, 47.2392168 ], + [ 9.4048165, 47.2390474 ], + [ 9.404406999999999, 47.238735 ], + [ 9.4041762, 47.2386399 ], + [ 9.4038868, 47.2382694 ], + [ 9.4033378, 47.2380863 ], + [ 9.4028026, 47.2379011 ], + [ 9.4024412, 47.2376864 ], + [ 9.4019305, 47.2375574 ], + [ 9.3998072, 47.2374389 ], + [ 9.3988851, 47.2373682 ], + [ 9.3975155, 47.2373527 ], + [ 9.3962067, 47.2373535 ], + [ 9.3935423, 47.2368166 ], + [ 9.3921131, 47.236679 ], + [ 9.3911039, 47.236428 ], + [ 9.3896656, 47.2361131 ], + [ 9.3890867, 47.2357433 ], + [ 9.3886367, 47.2355377 ], + [ 9.3879825, 47.2354304 ], + [ 9.3869954, 47.2350895 ], + [ 9.3861919, 47.2348988 ], + [ 9.3849963, 47.234606 ], + [ 9.3841762, 47.2345775 ], + [ 9.3820149, 47.2339932 ], + [ 9.3784463, 47.236121 ], + [ 9.3765658, 47.2365413 ], + [ 9.3755896, 47.236762 ], + [ 9.3749271, 47.237071 ], + [ 9.3738396, 47.2384136 ], + [ 9.3733765, 47.2386482 ], + [ 9.3730864, 47.2387727 ], + [ 9.3724838, 47.2391697 ], + [ 9.3720434, 47.2393372 ], + [ 9.371868599999999, 47.2395675 ], + [ 9.371556, 47.2395605 ], + [ 9.3712454, 47.2396296 ], + [ 9.3703102, 47.2401824 ], + [ 9.3701938, 47.2403598 ], + [ 9.3697432, 47.240577 ], + [ 9.3694269, 47.2406714 ], + [ 9.3686772, 47.2408756 ], + [ 9.3683151, 47.2409086 ], + [ 9.3677572, 47.2408235 ], + [ 9.3677345, 47.2410371 ], + [ 9.3673928, 47.2413425 ], + [ 9.3664265, 47.2418409 ], + [ 9.3659834, 47.2419725 ], + [ 9.3657589, 47.242014 ], + [ 9.3656054, 47.2425186 ], + [ 9.3654408, 47.24257 ], + [ 9.3653577, 47.2428305 ], + [ 9.3650352, 47.2430482 ], + [ 9.3648875, 47.2433098 ], + [ 9.3638782, 47.243597 ], + [ 9.3633731, 47.2435969 ], + [ 9.3630739, 47.2435426 ], + [ 9.3630188, 47.2434805 ], + [ 9.3625619, 47.2437086 ], + [ 9.362169399999999, 47.2437421 ], + [ 9.361469, 47.2437358 ] + ] + ], + "layer" : { + "upper" : 300, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "AI00001", + "country" : "CHE", + "name" : [ + { + "text" : "Alpstein", + "lang" : "de-CH" + }, + { + "text" : "Alpstein", + "lang" : "fr-CH" + }, + { + "text" : "Alpstein", + "lang" : "it-CH" + }, + { + "text" : "Alpstein", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Appenzell Innerrhoden", + "lang" : "de-CH" + }, + { + "text" : "Kanton Appenzell Innerrhoden", + "lang" : "fr-CH" + }, + { + "text" : "Kanton Appenzell Innerrhoden", + "lang" : "it-CH" + }, + { + "text" : "Kanton Appenzell Innerrhoden", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Bau- und Umweltdepartement", + "lang" : "de-CH" + }, + { + "text" : "Bau- und Umweltdepartement", + "lang" : "fr-CH" + }, + { + "text" : "Bau- und Umweltdepartement", + "lang" : "it-CH" + }, + { + "text" : "Bau- und Umweltdepartement", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Departementssekretariat Bau und Umwelt", + "lang" : "de-CH" + }, + { + "text" : "Departementssekretariat Bau und Umwelt", + "lang" : "fr-CH" + }, + { + "text" : "Departementssekretariat Bau und Umwelt", + "lang" : "it-CH" + }, + { + "text" : "Departementssekretariat Bau und Umwelt", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ai.ch/themen/natur-und-umwelt/jagd/gesuch-zur-ausnahmebewilligung-von-drohnenfluegen-im-alpstein", + "email" : "info@bud.ai.ch", + "phone" : "+41 71 788 93 41", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8098872, 47.4273664 ], + [ 7.8105603, 47.4275463 ], + [ 7.810636, 47.4274038 ], + [ 7.8108735, 47.4270188 ], + [ 7.8111602, 47.4267065 ], + [ 7.8114948, 47.426261 ], + [ 7.8116832, 47.4259284 ], + [ 7.8119364000000004, 47.4254806 ], + [ 7.8122796999999995, 47.4251128 ], + [ 7.8124965, 47.424862 ], + [ 7.8127987, 47.4244266 ], + [ 7.8129764, 47.4242326 ], + [ 7.8134045, 47.4237919 ], + [ 7.8139577, 47.4231698 ], + [ 7.8140091, 47.423086 ], + [ 7.8142023, 47.4227841 ], + [ 7.8143598, 47.4225952 ], + [ 7.8143955, 47.4224796 ], + [ 7.8143782999999996, 47.4223465 ], + [ 7.8143115, 47.4222362 ], + [ 7.8142878, 47.4222021 ], + [ 7.814278, 47.4221878 ], + [ 7.8141682, 47.4220308 ], + [ 7.8141573, 47.4220137 ], + [ 7.8141473999999995, 47.4219963 ], + [ 7.8141384, 47.4219787 ], + [ 7.8141309, 47.4219666 ], + [ 7.8141217, 47.421955 ], + [ 7.814111, 47.4219441 ], + [ 7.8139592, 47.4206195 ], + [ 7.8139228, 47.4205947 ], + [ 7.8139134, 47.4205109 ], + [ 7.8139412, 47.4204552 ], + [ 7.8134064, 47.4200702 ], + [ 7.8129763, 47.419846 ], + [ 7.8128276, 47.4197358 ], + [ 7.8127782, 47.4198052 ], + [ 7.812537, 47.4201721 ], + [ 7.8123649, 47.4203677 ], + [ 7.8121453, 47.420617 ], + [ 7.8121595, 47.420649 ], + [ 7.8121728, 47.4206811 ], + [ 7.8121852, 47.4207134 ], + [ 7.8121968, 47.4207459 ], + [ 7.8122074, 47.4207785 ], + [ 7.8122172, 47.4208112 ], + [ 7.8122261, 47.420844 ], + [ 7.812234, 47.4208769 ], + [ 7.8122411, 47.42091 ], + [ 7.8122473, 47.4209431 ], + [ 7.8122526, 47.4209763 ], + [ 7.8122568999999995, 47.4210095 ], + [ 7.8122599, 47.4210334 ], + [ 7.8122627, 47.4210573 ], + [ 7.8122652, 47.4210812 ], + [ 7.8122674, 47.4211052 ], + [ 7.8122708, 47.4211472 ], + [ 7.8122734, 47.4211893 ], + [ 7.8122752, 47.4212315 ], + [ 7.8122763, 47.4212736 ], + [ 7.8122766, 47.4213157 ], + [ 7.8122761, 47.4213579 ], + [ 7.8122749, 47.4214 ], + [ 7.8122729, 47.4214421 ], + [ 7.8122701, 47.4214842 ], + [ 7.8122665, 47.4215374 ], + [ 7.8122619, 47.4215904 ], + [ 7.8122342, 47.4218023 ], + [ 7.812225, 47.4218552 ], + [ 7.8122149, 47.4219079 ], + [ 7.8122038, 47.4219606 ], + [ 7.8121348, 47.4222223 ], + [ 7.8121183, 47.4222743 ], + [ 7.8121008, 47.4223262 ], + [ 7.8120825, 47.4223779 ], + [ 7.8120002, 47.4225831 ], + [ 7.8119774, 47.422634 ], + [ 7.8119537, 47.4226847 ], + [ 7.8119306, 47.4227324 ], + [ 7.8119067, 47.42278 ], + [ 7.811882, 47.4228273 ], + [ 7.8118565, 47.4228745 ], + [ 7.8118303000000004, 47.4229214 ], + [ 7.8118032, 47.4229682 ], + [ 7.8117754999999995, 47.4230147 ], + [ 7.8117469, 47.4230611 ], + [ 7.8117176, 47.4231072 ], + [ 7.8116875, 47.4231531 ], + [ 7.8116567, 47.4231988 ], + [ 7.8116252, 47.4232442 ], + [ 7.8115685, 47.4233237 ], + [ 7.8115112, 47.4234031 ], + [ 7.8114533999999995, 47.4234823 ], + [ 7.811395, 47.4235613 ], + [ 7.811336, 47.42364 ], + [ 7.8112960000000005, 47.4236937 ], + [ 7.8112566999999995, 47.4237476 ], + [ 7.8112183, 47.4238018 ], + [ 7.8111805, 47.4238562 ], + [ 7.8111436, 47.4239109 ], + [ 7.8111074, 47.4239658 ], + [ 7.811072, 47.4240209 ], + [ 7.8110374, 47.4240763 ], + [ 7.8110036, 47.4241319 ], + [ 7.8109705, 47.4241877 ], + [ 7.8109001, 47.4243832 ], + [ 7.8108219, 47.4246258 ], + [ 7.8106915, 47.4248589 ], + [ 7.8106005, 47.4250359 ], + [ 7.8105108, 47.4252451 ], + [ 7.8104807, 47.4253347 ], + [ 7.8103845, 47.4257208 ], + [ 7.8103679, 47.4258286 ], + [ 7.8103342, 47.425982 ], + [ 7.810218, 47.4263776 ], + [ 7.8101664, 47.4266056 ], + [ 7.8101443, 47.4266768 ], + [ 7.8101214, 47.426748 ], + [ 7.8100977, 47.426819 ], + [ 7.8100733, 47.4268899 ], + [ 7.8100480999999995, 47.4269607 ], + [ 7.8100222, 47.4270314 ], + [ 7.8099955, 47.4271019 ], + [ 7.8099679, 47.4271723 ], + [ 7.8099397, 47.4272425 ], + [ 7.8098872, 47.4273664 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns060", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Rutenrain", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Rutenrain", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Rutenrain", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Rutenrain", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.8334832, 47.1145056 ], + [ 6.8335447, 47.1145012 ], + [ 6.8337961, 47.1144471 ], + [ 6.8340267, 47.11436 ], + [ 6.8342273, 47.1142433 ], + [ 6.8343374, 47.114165 ], + [ 6.8344966, 47.1140269 ], + [ 6.8346135, 47.1138703 ], + [ 6.8346836, 47.1137011 ], + [ 6.8346862999999995, 47.1136776 ], + [ 6.8347116, 47.1136438 ], + [ 6.834782, 47.1134736 ], + [ 6.8348022, 47.1132973 ], + [ 6.8347715, 47.1131217 ], + [ 6.8347663, 47.1131109 ], + [ 6.8347648, 47.1131022 ], + [ 6.8346856, 47.112935 ], + [ 6.8345603, 47.1127816 ], + [ 6.8343937, 47.1126477 ], + [ 6.8343507, 47.1126193 ], + [ 6.834147, 47.1125091 ], + [ 6.8341405, 47.1125068 ], + [ 6.8341205, 47.1124939 ], + [ 6.8341134, 47.1124901 ], + [ 6.8341014, 47.1124813 ], + [ 6.8340873, 47.112472 ], + [ 6.8340845, 47.1124687 ], + [ 6.8339163, 47.1123343 ], + [ 6.8338735, 47.1123062 ], + [ 6.8336706, 47.1121971 ], + [ 6.8335916999999995, 47.1121697 ], + [ 6.8335132, 47.1121287 ], + [ 6.833391, 47.1120876 ], + [ 6.8333487, 47.1120649 ], + [ 6.8331201, 47.1119854 ], + [ 6.8328732, 47.1119377 ], + [ 6.8326175, 47.1119235 ], + [ 6.8326095, 47.1119241 ], + [ 6.8325543, 47.1118992 ], + [ 6.8325414, 47.1118939 ], + [ 6.8325054, 47.1118804 ], + [ 6.8324087, 47.1118165 ], + [ 6.8322064000000005, 47.1117069 ], + [ 6.8319767, 47.1116263 ], + [ 6.8317284, 47.1115779 ], + [ 6.831471, 47.1115634 ], + [ 6.8312145, 47.1115835 ], + [ 6.8309686, 47.1116374 ], + [ 6.8307428, 47.111723 ], + [ 6.8305459, 47.1118371 ], + [ 6.8303401, 47.1119821 ], + [ 6.8303334, 47.1119868 ], + [ 6.830322, 47.1119946 ], + [ 6.830278, 47.1120113 ], + [ 6.830081, 47.1121255 ], + [ 6.830078, 47.1121275 ], + [ 6.8299175, 47.1122656 ], + [ 6.8297996, 47.1124224 ], + [ 6.8297287, 47.1125919 ], + [ 6.8297075, 47.1127676 ], + [ 6.829737, 47.1129427 ], + [ 6.8297569, 47.112985 ], + [ 6.8297452, 47.1130129 ], + [ 6.8297243, 47.1131884 ], + [ 6.8297539, 47.1133632 ], + [ 6.8298327, 47.1135308 ], + [ 6.8299579, 47.1136847 ], + [ 6.8301245, 47.113819 ], + [ 6.8303031, 47.1139372 ], + [ 6.8305073, 47.1140478 ], + [ 6.8305394, 47.114062 ], + [ 6.8305976, 47.1140823 ], + [ 6.8306426, 47.1141373 ], + [ 6.8308103, 47.1142715 ], + [ 6.8308162, 47.1142754 ], + [ 6.8308391, 47.1142905 ], + [ 6.8308554, 47.1143012 ], + [ 6.8309449, 47.1143599 ], + [ 6.8309548, 47.1143665 ], + [ 6.831157, 47.1144754 ], + [ 6.831202, 47.1144911 ], + [ 6.8312255, 47.1145066 ], + [ 6.8313998, 47.1146005 ], + [ 6.8314641, 47.1146426 ], + [ 6.8316671, 47.1147517 ], + [ 6.8318974, 47.1148316 ], + [ 6.8321462, 47.1148794 ], + [ 6.8324038, 47.1148931 ], + [ 6.8326603, 47.1148721 ], + [ 6.8329059999999995, 47.1148175 ], + [ 6.8331313, 47.1147311 ], + [ 6.8333276, 47.1146164 ], + [ 6.8334832, 47.1145056 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "NE10", + "country" : "CHE", + "name" : [ + { + "text" : "Hôpital Chaux-de-Fonds", + "lang" : "de-CH" + }, + { + "text" : "Hôpital Chaux-de-Fonds", + "lang" : "fr-CH" + }, + { + "text" : "Hôpital Chaux-de-Fonds", + "lang" : "it-CH" + }, + { + "text" : "Hôpital Chaux-de-Fonds", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "regulationExemption" : "YES", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Police Neuchâteloise", + "lang" : "de-CH" + }, + { + "text" : "Police Neuchâteloise", + "lang" : "fr-CH" + }, + { + "text" : "Police Neuchâteloise", + "lang" : "it-CH" + }, + { + "text" : "Police Neuchâteloise", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "PN - Rens et opérations", + "lang" : "de-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "fr-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "it-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "PN - Rens et opérations", + "lang" : "de-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "fr-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "it-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ne.ch/autorites/DESC/PONE/Pages/Drones.aspx", + "email" : "Police.Neuchateloise@ne.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.8587022, 46.869163 ], + [ 6.8840627, 46.8845547 ], + [ 6.8866936, 46.8860683 ], + [ 6.8894366, 46.8874854 ], + [ 6.8922840999999995, 46.888802 ], + [ 6.8952283, 46.8900146 ], + [ 6.8982613, 46.8911198 ], + [ 6.9013745, 46.8921145 ], + [ 6.9045596, 46.8929962 ], + [ 6.9078076, 46.8937622 ], + [ 6.9111098, 46.8944106 ], + [ 6.9144571, 46.8949395 ], + [ 6.9178402, 46.8953475 ], + [ 6.9212498, 46.8956335 ], + [ 6.9246767, 46.8957967 ], + [ 6.9281113, 46.8958366 ], + [ 6.9315442, 46.8957531 ], + [ 6.9349661, 46.8955465 ], + [ 6.9383674, 46.8952173 ], + [ 6.9417389, 46.8947665 ], + [ 6.9450713, 46.8941952 ], + [ 6.9483554, 46.893505 ], + [ 6.9515822, 46.8926979 ], + [ 6.9547429, 46.891776 ], + [ 6.9578287, 46.8907419 ], + [ 6.9608313, 46.8895984 ], + [ 6.9637423, 46.8883487 ], + [ 6.9665537, 46.8869962 ], + [ 6.969258, 46.8855446 ], + [ 6.9718475, 46.8839979 ], + [ 6.9743153, 46.8823603 ], + [ 6.9766546, 46.8806364 ], + [ 6.9788589, 46.8788308 ], + [ 6.9809223, 46.8769486 ], + [ 6.982839, 46.8749949 ], + [ 6.9846038, 46.872975 ], + [ 6.986212, 46.8708945 ], + [ 6.987659, 46.8687592 ], + [ 6.988941, 46.8665748 ], + [ 6.9900545, 46.8643474 ], + [ 6.9909964, 46.8620831 ], + [ 6.9917642, 46.859788 ], + [ 6.9923557, 46.8574686 ], + [ 6.9927695, 46.855131 ], + [ 6.9930043, 46.8527818 ], + [ 6.9930595, 46.8504275 ], + [ 6.9929351, 46.8480743 ], + [ 6.9926313, 46.8457288 ], + [ 6.9921491, 46.8433975 ], + [ 6.9914898, 46.8410867 ], + [ 6.9906553, 46.8388027 ], + [ 6.9896477, 46.8365518 ], + [ 6.9884699, 46.8343401 ], + [ 6.9871251999999995, 46.8321738 ], + [ 6.9856172999999995, 46.8300587 ], + [ 6.9839502, 46.8280007 ], + [ 6.9821286, 46.8260053 ], + [ 6.9801576, 46.8240781 ], + [ 6.9780424, 46.8222242 ], + [ 6.9757888999999995, 46.8204489 ], + [ 6.9734033, 46.8187569 ], + [ 6.9708921, 46.817152899999996 ], + [ 6.9455385, 46.8017803 ], + [ 6.9429101, 46.800268 ], + [ 6.9401702, 46.7988523 ], + [ 6.9373263, 46.7975368 ], + [ 6.9343861, 46.7963253 ], + [ 6.9313578, 46.7952211 ], + [ 6.9282496, 46.7942271 ], + [ 6.92507, 46.7933461 ], + [ 6.9218277, 46.7925805 ], + [ 6.9185316, 46.7919324 ], + [ 6.9151907999999995, 46.7914036 ], + [ 6.9118142, 46.7909955 ], + [ 6.9084112, 46.7907092 ], + [ 6.9049911, 46.7905456 ], + [ 6.9015633, 46.790505 ], + [ 6.898137, 46.7905876 ], + [ 6.8947217, 46.7907931 ], + [ 6.8913267, 46.791121 ], + [ 6.8879613, 46.7915704 ], + [ 6.8846346, 46.79214 ], + [ 6.8813559, 46.7928283 ], + [ 6.878134, 46.7936335 ], + [ 6.8749778, 46.7945533 ], + [ 6.8718958, 46.7955852 ], + [ 6.8688966, 46.7967263 ], + [ 6.8659884, 46.7979736 ], + [ 6.863179, 46.7993237 ], + [ 6.8604763, 46.8007728 ], + [ 6.8578875, 46.802317 ], + [ 6.8554199, 46.8039521 ], + [ 6.8530801, 46.8056736 ], + [ 6.8508745, 46.8074767 ], + [ 6.8488093, 46.8093566 ], + [ 6.84689, 46.8113081 ], + [ 6.845122, 46.8133258 ], + [ 6.8435102, 46.8154043 ], + [ 6.8420588, 46.8175379 ], + [ 6.840772, 46.8197206 ], + [ 6.8396533, 46.8219466 ], + [ 6.8387057, 46.8242097 ], + [ 6.8379319, 46.8265037 ], + [ 6.8373341, 46.8288224 ], + [ 6.8369138, 46.8311593 ], + [ 6.8366723, 46.8335082 ], + [ 6.8366102, 46.8358625 ], + [ 6.8367278, 46.8382158 ], + [ 6.8370247, 46.8405617 ], + [ 6.8375001, 46.8428937 ], + [ 6.8381528, 46.8452054 ], + [ 6.8389811, 46.8474905 ], + [ 6.8399825, 46.8497427 ], + [ 6.8411545, 46.8519559 ], + [ 6.8424938, 46.854124 ], + [ 6.8439968, 46.8562409 ], + [ 6.8456594, 46.858301 ], + [ 6.847477, 46.8602985 ], + [ 6.8494446, 46.862228 ], + [ 6.851557, 46.8640842 ], + [ 6.8538082, 46.865862 ], + [ 6.8561921, 46.8675565 ], + [ 6.8587022, 46.869163 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSMP001", + "country" : "CHE", + "name" : [ + { + "text" : "LSMP Payerne Ziv", + "lang" : "de-CH" + }, + { + "text" : "LSMP Payerne Ziv", + "lang" : "fr-CH" + }, + { + "text" : "LSMP Payerne Ziv", + "lang" : "it-CH" + }, + { + "text" : "LSMP Payerne Ziv", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Skyguide Special Flight Office", + "lang" : "de-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "it-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.skyguide.ch/services/special-flights", + "email" : "specialflight@skyguide.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6080397, 47.5035184 ], + [ 7.6096465, 47.5029756 ], + [ 7.6096219, 47.5029179 ], + [ 7.6096009, 47.5028595 ], + [ 7.6095838, 47.5028005 ], + [ 7.6094259, 47.5023644 ], + [ 7.6092878, 47.5019786 ], + [ 7.6091207, 47.5015165 ], + [ 7.6090235, 47.501216 ], + [ 7.6090165, 47.5011935 ], + [ 7.609012, 47.5011836 ], + [ 7.6090062, 47.501174 ], + [ 7.6089993, 47.5011647 ], + [ 7.6089913, 47.5011559 ], + [ 7.6089896, 47.5011536 ], + [ 7.6089876, 47.5011513 ], + [ 7.6089853, 47.5011493 ], + [ 7.6089828, 47.5011473 ], + [ 7.6089801, 47.5011455 ], + [ 7.6089772, 47.5011438 ], + [ 7.608974, 47.5011423 ], + [ 7.6089703, 47.5011409 ], + [ 7.6089664, 47.5011397 ], + [ 7.6089624, 47.5011387 ], + [ 7.6089583, 47.501138 ], + [ 7.608954, 47.5011376 ], + [ 7.6089497999999995, 47.5011374 ], + [ 7.6089455, 47.5011375 ], + [ 7.608914, 47.5011359 ], + [ 7.6088825, 47.5011358 ], + [ 7.608851, 47.5011371 ], + [ 7.6087396, 47.501145 ], + [ 7.6085443999999995, 47.5011605 ], + [ 7.6083501, 47.5011815 ], + [ 7.608279, 47.5011891 ], + [ 7.6082153, 47.5011956 ], + [ 7.6081513, 47.5012011 ], + [ 7.6080872, 47.5012056 ], + [ 7.6079124, 47.5012215 ], + [ 7.6077755, 47.5012376 ], + [ 7.6076942, 47.5012487 ], + [ 7.6075903, 47.50126 ], + [ 7.6073989, 47.5012813 ], + [ 7.607301, 47.501295 ], + [ 7.6072790999999995, 47.5012978 ], + [ 7.6072576, 47.5013017 ], + [ 7.6071421, 47.5013212 ], + [ 7.6071734, 47.5013919 ], + [ 7.6072007, 47.5014633 ], + [ 7.6072241, 47.5015354 ], + [ 7.6072755, 47.501704 ], + [ 7.6073248, 47.5018661 ], + [ 7.6074025, 47.5021224 ], + [ 7.6075286, 47.5025302 ], + [ 7.6076612, 47.5029654 ], + [ 7.6076694, 47.5029967 ], + [ 7.6076738, 47.5030283 ], + [ 7.6076745, 47.5030601 ], + [ 7.6076705, 47.5030861 ], + [ 7.6076682, 47.5030991 ], + [ 7.6076669, 47.5031029 ], + [ 7.6076652, 47.5031066 ], + [ 7.607663, 47.5031102 ], + [ 7.6076604, 47.5031136 ], + [ 7.6076573, 47.5031169 ], + [ 7.6076538, 47.5031199 ], + [ 7.6076499, 47.5031228 ], + [ 7.6076457, 47.5031254 ], + [ 7.6076384, 47.5031285 ], + [ 7.6076407, 47.5031325 ], + [ 7.6076513, 47.5031318 ], + [ 7.6076619, 47.5031317 ], + [ 7.6076725, 47.5031321 ], + [ 7.607683, 47.5031331 ], + [ 7.6076933, 47.5031347 ], + [ 7.6077034999999995, 47.5031368 ], + [ 7.6077133, 47.5031394 ], + [ 7.6077229, 47.5031425 ], + [ 7.607732, 47.5031462 ], + [ 7.607741, 47.5031504 ], + [ 7.6077495, 47.5031552 ], + [ 7.6077574, 47.5031604 ], + [ 7.6077647, 47.503166 ], + [ 7.6077712, 47.503172 ], + [ 7.6077770000000005, 47.5031783 ], + [ 7.6077821, 47.503185 ], + [ 7.6080397, 47.5035184 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns150", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Reinacherheide", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Reinacherheide", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Reinacherheide", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Reinacherheide", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.1287648, 46.2739456 ], + [ 6.1288046, 46.2742861 ], + [ 6.1292731, 46.2750654 ], + [ 6.1293143, 46.2751117 ], + [ 6.1293359, 46.2751279 ], + [ 6.129359, 46.2751538 ], + [ 6.1301538, 46.275794 ], + [ 6.1303183, 46.2758633 ], + [ 6.1303396, 46.2758792 ], + [ 6.1304094, 46.2759016 ], + [ 6.131195, 46.2762324 ], + [ 6.1316945, 46.276314 ], + [ 6.1317089, 46.2763187 ], + [ 6.131726, 46.2763192 ], + [ 6.1323808, 46.2764262 ], + [ 6.1335948, 46.2763562 ], + [ 6.1346678, 46.2760441 ], + [ 6.1349845, 46.275964 ], + [ 6.1351077, 46.275912 ], + [ 6.1362263, 46.2752004 ], + [ 6.1368671, 46.2742462 ], + [ 6.1369327, 46.2731946 ], + [ 6.1364132, 46.2722055 ], + [ 6.1363453, 46.2721279 ], + [ 6.1355584, 46.2714836 ], + [ 6.1345229, 46.2710394 ], + [ 6.1333401, 46.2708388 ], + [ 6.1321259, 46.2709015 ], + [ 6.1318766, 46.2709723 ], + [ 6.1317868, 46.2709773 ], + [ 6.1306622, 46.2713024 ], + [ 6.1305455, 46.2713522 ], + [ 6.1299336, 46.2717164 ], + [ 6.1297424, 46.2709866 ], + [ 6.1289201, 46.2701014 ], + [ 6.1276719, 46.2695018 ], + [ 6.1273087, 46.2694473 ], + [ 6.1272319, 46.2693648 ], + [ 6.1281796, 46.2689413 ], + [ 6.1290442, 46.2680757 ], + [ 6.1293652, 46.2670466 ], + [ 6.129094, 46.2660105 ], + [ 6.1282717, 46.2651254 ], + [ 6.1270236, 46.2645258 ], + [ 6.1255397, 46.2643031 ], + [ 6.1240459, 46.2644912 ], + [ 6.1227696, 46.2650614 ], + [ 6.121905, 46.265927 ], + [ 6.1215838, 46.2669561 ], + [ 6.1218549, 46.2679921 ], + [ 6.1222505, 46.2684181 ], + [ 6.1209864, 46.2682283 ], + [ 6.1194925, 46.2684163 ], + [ 6.1194874, 46.2684186 ], + [ 6.1191925, 46.2684557 ], + [ 6.117916, 46.2690259 ], + [ 6.1170513, 46.2698914 ], + [ 6.1167300000000004, 46.2709205 ], + [ 6.1170011, 46.2719566 ], + [ 6.1178233, 46.2728419 ], + [ 6.1185381, 46.2731853 ], + [ 6.1185969, 46.2732854 ], + [ 6.119386, 46.2739326 ], + [ 6.1195336, 46.2740207 ], + [ 6.1205708, 46.2744656 ], + [ 6.1207381, 46.2744939 ], + [ 6.1217798, 46.2746774 ], + [ 6.1230082, 46.2746187 ], + [ 6.1231005, 46.2745927 ], + [ 6.1232803, 46.274679 ], + [ 6.1247644, 46.2749018 ], + [ 6.1262585, 46.2747137 ], + [ 6.1264556, 46.2746257 ], + [ 6.1275516, 46.2744877 ], + [ 6.1287648, 46.2739456 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-12", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6174239, 47.0647551 ], + [ 7.617418, 47.0646139 ], + [ 7.6174013, 47.064473 ], + [ 7.6173739, 47.064333 ], + [ 7.6173357, 47.0641942 ], + [ 7.617287, 47.0640569 ], + [ 7.6172278, 47.0639215 ], + [ 7.6171584, 47.0637884 ], + [ 7.6170788, 47.063658 ], + [ 7.6169894, 47.0635306 ], + [ 7.6168903, 47.0634066 ], + [ 7.6167819, 47.0632863 ], + [ 7.6166644, 47.0631701 ], + [ 7.6165382, 47.0630582 ], + [ 7.6164035, 47.062951 ], + [ 7.6162609, 47.0628487 ], + [ 7.6161106, 47.0627517 ], + [ 7.615953, 47.0626602 ], + [ 7.6157886999999995, 47.0625744 ], + [ 7.6156181, 47.0624947 ], + [ 7.6154416, 47.0624211 ], + [ 7.6152596, 47.062354 ], + [ 7.6150728, 47.0622935 ], + [ 7.6148817, 47.0622397 ], + [ 7.6146866, 47.0621928 ], + [ 7.6144882, 47.062153 ], + [ 7.6142871, 47.0621203 ], + [ 7.6140837, 47.0620949 ], + [ 7.6138787, 47.0620768 ], + [ 7.6136725, 47.062066 ], + [ 7.6134659, 47.0620626 ], + [ 7.6132592, 47.0620666 ], + [ 7.6130531, 47.062078 ], + [ 7.6128482, 47.0620968 ], + [ 7.612645, 47.0621228 ], + [ 7.6124441, 47.0621561 ], + [ 7.612246, 47.0621966 ], + [ 7.6120512, 47.062244 ], + [ 7.6118604, 47.0622984 ], + [ 7.611674, 47.0623595 ], + [ 7.6114925, 47.0624272 ], + [ 7.6113165, 47.0625012 ], + [ 7.6111463, 47.0625815 ], + [ 7.6109826, 47.0626678 ], + [ 7.6108257, 47.0627598 ], + [ 7.610676, 47.0628572 ], + [ 7.610534, 47.0629599 ], + [ 7.6104001, 47.0630676 ], + [ 7.6102746, 47.0631798 ], + [ 7.6101578, 47.0632964 ], + [ 7.6100502, 47.0634171 ], + [ 7.6099519, 47.0635414 ], + [ 7.6098633, 47.063669 ], + [ 7.6097846, 47.0637997 ], + [ 7.609716, 47.0639329 ], + [ 7.6096578, 47.0640685 ], + [ 7.6096099, 47.0642059 ], + [ 7.6095727, 47.0643449 ], + [ 7.6095462, 47.064485 ], + [ 7.6095304, 47.0646259 ], + [ 7.6095254, 47.0647671 ], + [ 7.6095313, 47.0649083 ], + [ 7.6095479, 47.0650492 ], + [ 7.6095754, 47.0651892 ], + [ 7.6096135, 47.0653281 ], + [ 7.6096622, 47.0654654 ], + [ 7.6097214, 47.0656007 ], + [ 7.6097908, 47.0657338 ], + [ 7.6098704, 47.0658642 ], + [ 7.6099598, 47.0659916 ], + [ 7.6100588, 47.0661156 ], + [ 7.6101673, 47.0662359 ], + [ 7.6102847, 47.0663522 ], + [ 7.610411, 47.0664641 ], + [ 7.6105456, 47.0665713 ], + [ 7.6106882, 47.0666736 ], + [ 7.6108385, 47.0667706 ], + [ 7.6109960999999995, 47.0668621 ], + [ 7.6111604, 47.0669479 ], + [ 7.611331, 47.0670276 ], + [ 7.6115075999999995, 47.0671012 ], + [ 7.6116895, 47.0671683 ], + [ 7.6118763, 47.0672289 ], + [ 7.6120675, 47.0672826 ], + [ 7.6122626, 47.0673295 ], + [ 7.612461, 47.0673693 ], + [ 7.6126621, 47.067402 ], + [ 7.6128655, 47.0674274 ], + [ 7.6130706, 47.0674456 ], + [ 7.6132767999999995, 47.0674563 ], + [ 7.6134835, 47.0674597 ], + [ 7.6136901, 47.0674557 ], + [ 7.6138962, 47.0674443 ], + [ 7.6141012, 47.0674255 ], + [ 7.6143044, 47.0673995 ], + [ 7.6145053, 47.0673662 ], + [ 7.6147035, 47.0673258 ], + [ 7.6148982, 47.0672783 ], + [ 7.6150891, 47.067224 ], + [ 7.6152755, 47.0671628 ], + [ 7.615457, 47.0670951 ], + [ 7.615633, 47.0670211 ], + [ 7.6158032, 47.0669408 ], + [ 7.6159669, 47.0668545 ], + [ 7.6161239, 47.0667625 ], + [ 7.6162735, 47.066665 ], + [ 7.6164155000000004, 47.0665623 ], + [ 7.6165494, 47.0664547 ], + [ 7.6166749, 47.0663424 ], + [ 7.6167917, 47.0662258 ], + [ 7.6168993, 47.0661052 ], + [ 7.6169975, 47.0659809 ], + [ 7.6170861, 47.0658532 ], + [ 7.6171648, 47.0657226 ], + [ 7.6172334, 47.0655893 ], + [ 7.6172917, 47.0654537 ], + [ 7.6173395, 47.0653163 ], + [ 7.6173767, 47.0651773 ], + [ 7.6174032, 47.0650372 ], + [ 7.6174189, 47.0648963 ], + [ 7.6174239, 47.0647551 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BGD0001", + "country" : "CHE", + "name" : [ + { + "text" : "Regionalgefängnis Burgdorf", + "lang" : "de-CH" + }, + { + "text" : "Regionalgefängnis Burgdorf", + "lang" : "fr-CH" + }, + { + "text" : "Regionalgefängnis Burgdorf", + "lang" : "it-CH" + }, + { + "text" : "Regionalgefängnis Burgdorf", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Justizvollzug des Kantons Bern, Regionalgefängnis Burgdorf", + "lang" : "de-CH" + }, + { + "text" : "Office de l'exécution judiciaire, Prison régionale de Berthoud", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio delle correzioni, Carcere regionale di Burgdorf", + "lang" : "it-CH" + }, + { + "text" : "Department of Corrections, Prison regional of Burgdorf", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Chef Sicherheit", + "lang" : "de-CH" + }, + { + "text" : "Chef sécurité", + "lang" : "fr-CH" + }, + { + "text" : "Capo sicurezza", + "lang" : "it-CH" + }, + { + "text" : "Chief Security", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ajv.sid.be.ch/de/start/themen/haft/kontakt.html", + "email" : "regionalgefaengnis-burgdorf@be.ch", + "phone" : "0041316357211", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P02DT12H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7463689, 47.4289118 ], + [ 7.7465549, 47.4291972 ], + [ 7.7467398, 47.429483 ], + [ 7.7469452, 47.4297958 ], + [ 7.7473188, 47.4305057 ], + [ 7.7476997, 47.4312264 ], + [ 7.7479185, 47.4320804 ], + [ 7.7484003, 47.4328665 ], + [ 7.7489897, 47.4334663 ], + [ 7.74958, 47.433957 ], + [ 7.7498362, 47.4343497 ], + [ 7.7501304, 47.4348033 ], + [ 7.7504101, 47.4352322 ], + [ 7.7504508, 47.4353127 ], + [ 7.7504299, 47.4353546 ], + [ 7.7504141, 47.4353974 ], + [ 7.7504036, 47.435441 ], + [ 7.7503983, 47.435485 ], + [ 7.7504001, 47.4356901 ], + [ 7.7503972999999995, 47.4358038 ], + [ 7.7504769, 47.4358503 ], + [ 7.7508481, 47.4363201 ], + [ 7.7510583, 47.4365695 ], + [ 7.7511576, 47.4367484 ], + [ 7.7502313, 47.4374001 ], + [ 7.7507487, 47.4376379 ], + [ 7.7512427, 47.4378442 ], + [ 7.7516507, 47.438082 ], + [ 7.7521119, 47.4383177 ], + [ 7.7527601, 47.4386734 ], + [ 7.753359, 47.4390038 ], + [ 7.7543348, 47.4387069 ], + [ 7.7543346, 47.4387047 ], + [ 7.7543346, 47.4387025 ], + [ 7.754335, 47.4387003 ], + [ 7.7543356, 47.4386981 ], + [ 7.7543365, 47.4386959 ], + [ 7.7543375999999995, 47.4386939 ], + [ 7.754339, 47.4386919 ], + [ 7.7543406, 47.4386899 ], + [ 7.7543519, 47.4386786 ], + [ 7.7543618, 47.4386667 ], + [ 7.7543703, 47.4386543 ], + [ 7.7543775, 47.4386415 ], + [ 7.7543931, 47.4386116 ], + [ 7.7543942, 47.4386085 ], + [ 7.7543949, 47.4386053 ], + [ 7.7543952, 47.4386021 ], + [ 7.754395, 47.4385989 ], + [ 7.7543945, 47.4385957 ], + [ 7.7543936, 47.4385925 ], + [ 7.7543923, 47.4385894 ], + [ 7.7543904999999995, 47.4385856 ], + [ 7.7543891, 47.4385816 ], + [ 7.7543883000000005, 47.4385775 ], + [ 7.7543879, 47.4385735 ], + [ 7.7543881, 47.4385694 ], + [ 7.7543889, 47.4385653 ], + [ 7.7543901, 47.4385614 ], + [ 7.7543919, 47.4385575 ], + [ 7.7543941, 47.4385537 ], + [ 7.7543968, 47.43855 ], + [ 7.7544, 47.4385466 ], + [ 7.7544036, 47.4385433 ], + [ 7.7544077, 47.4385403 ], + [ 7.754412, 47.4385375 ], + [ 7.7544167999999996, 47.438535 ], + [ 7.7544286, 47.4385304 ], + [ 7.7544408, 47.4385261 ], + [ 7.7544532, 47.4385222 ], + [ 7.7544623999999995, 47.4385179 ], + [ 7.7544711, 47.4385131 ], + [ 7.7544791, 47.4385077 ], + [ 7.7544863, 47.4385019 ], + [ 7.7544927999999995, 47.4384957 ], + [ 7.7544984, 47.4384891 ], + [ 7.7545032, 47.4384822 ], + [ 7.754507, 47.4384751 ], + [ 7.7545099, 47.4384677 ], + [ 7.7545227, 47.4384421 ], + [ 7.754538, 47.4384171 ], + [ 7.7545556, 47.4383929 ], + [ 7.7545783, 47.4383678 ], + [ 7.7546017, 47.4383431 ], + [ 7.754626, 47.4383188 ], + [ 7.7546558999999995, 47.438288299999996 ], + [ 7.754683, 47.4382566 ], + [ 7.7547073, 47.4382239 ], + [ 7.75472, 47.4382036 ], + [ 7.7547303, 47.4381827 ], + [ 7.754738, 47.4381613 ], + [ 7.7547433, 47.4381396 ], + [ 7.7547474, 47.4381173 ], + [ 7.7547489, 47.4380949 ], + [ 7.7547477, 47.4380724 ], + [ 7.7547438, 47.4380501 ], + [ 7.7546754, 47.4378306 ], + [ 7.7546536, 47.4377594 ], + [ 7.7546326, 47.437688 ], + [ 7.7546122, 47.4376166 ], + [ 7.7545944, 47.4375599 ], + [ 7.7545769, 47.4375031 ], + [ 7.7545596, 47.4374464 ], + [ 7.7545358, 47.4373859 ], + [ 7.7545054, 47.4373269 ], + [ 7.7544684, 47.4372695 ], + [ 7.7544336, 47.4372264 ], + [ 7.7543939, 47.4371852 ], + [ 7.7530089, 47.4359306 ], + [ 7.7527348, 47.4359986 ], + [ 7.7524424, 47.4360718 ], + [ 7.7525955, 47.4362978 ], + [ 7.7525559, 47.4363102 ], + [ 7.7532876, 47.4368599 ], + [ 7.7529015999999995, 47.4370313 ], + [ 7.7524996, 47.437174 ], + [ 7.7522451, 47.436903 ], + [ 7.7519794, 47.4365753 ], + [ 7.7517975, 47.4363465 ], + [ 7.7520869, 47.4362665 ], + [ 7.7523746, 47.4361862 ], + [ 7.7524566, 47.4361633 ], + [ 7.7524023, 47.4360832 ], + [ 7.7521611, 47.4356941 ], + [ 7.7520914, 47.4357146 ], + [ 7.7518693, 47.4357801 ], + [ 7.7514654, 47.4358961 ], + [ 7.7513032, 47.4356644 ], + [ 7.7511510999999995, 47.435444 ], + [ 7.7515287, 47.4353404 ], + [ 7.7518007, 47.4352639 ], + [ 7.75187, 47.4352444 ], + [ 7.7517009, 47.4349963 ], + [ 7.7517398, 47.4349829 ], + [ 7.7522686, 47.4348299 ], + [ 7.7528985, 47.4348618 ], + [ 7.7529471999999995, 47.4348118 ], + [ 7.7529958, 47.4347718 ], + [ 7.7530544, 47.4347385 ], + [ 7.7530967, 47.4347018 ], + [ 7.7531512, 47.4346084 ], + [ 7.7532122, 47.4344778 ], + [ 7.7532664, 47.4343424 ], + [ 7.7533069, 47.4342259 ], + [ 7.75332, 47.434128 ], + [ 7.7533104, 47.4340474 ], + [ 7.7532793, 47.4339491 ], + [ 7.7532469, 47.4338725 ], + [ 7.7532067, 47.4338131 ], + [ 7.753153, 47.4337365 ], + [ 7.7530822, 47.4336659 ], + [ 7.7533885, 47.4324796 ], + [ 7.7537261, 47.432326 ], + [ 7.7537093, 47.4322709 ], + [ 7.7536938, 47.4322156 ], + [ 7.7536796, 47.4321602 ], + [ 7.7536618, 47.4320936 ], + [ 7.7536462, 47.4320267 ], + [ 7.7536328999999995, 47.4319596 ], + [ 7.7536286, 47.43194 ], + [ 7.7536249999999995, 47.4319203 ], + [ 7.7536223, 47.4319006 ], + [ 7.7536178, 47.4318888 ], + [ 7.7536119, 47.4318774 ], + [ 7.7536046, 47.4318664 ], + [ 7.7535959, 47.4318558 ], + [ 7.7535859, 47.4318458 ], + [ 7.7535651, 47.4318243 ], + [ 7.7530281, 47.4317957 ], + [ 7.7525416, 47.4316872 ], + [ 7.7518342, 47.4317588 ], + [ 7.7516374, 47.4317702 ], + [ 7.7515396, 47.4317752 ], + [ 7.7516896, 47.432172 ], + [ 7.7516449, 47.4321802 ], + [ 7.7511913, 47.4322956 ], + [ 7.7506595, 47.4324297 ], + [ 7.7504866, 47.4321028 ], + [ 7.7503084, 47.4317158 ], + [ 7.7503059, 47.4317088 ], + [ 7.7501867, 47.4313813 ], + [ 7.749941, 47.4313895 ], + [ 7.7496938, 47.4313989 ], + [ 7.7496501, 47.4314006 ], + [ 7.7495926, 47.431403 ], + [ 7.749591, 47.431215 ], + [ 7.7491702, 47.4312294 ], + [ 7.7488718, 47.4312373 ], + [ 7.7486412, 47.4309787 ], + [ 7.7484747, 47.4306723 ], + [ 7.7484654, 47.4305796 ], + [ 7.7484456999999995, 47.4303304 ], + [ 7.7485829, 47.4300379 ], + [ 7.7485959, 47.4299171 ], + [ 7.7486286, 47.4296655 ], + [ 7.7486792, 47.4292588 ], + [ 7.7485949, 47.4288893 ], + [ 7.7485147, 47.4287134 ], + [ 7.7483183, 47.4283524 ], + [ 7.7481134, 47.4280782 ], + [ 7.7479584, 47.4278335 ], + [ 7.7478735, 47.4276565 ], + [ 7.7476987, 47.4272925 ], + [ 7.7476427, 47.4271758 ], + [ 7.7475695, 47.4270252 ], + [ 7.7474512, 47.4267774 ], + [ 7.7474451, 47.4267615 ], + [ 7.7474317, 47.4267263 ], + [ 7.7473537, 47.4268643 ], + [ 7.7472465, 47.4270163 ], + [ 7.7470464, 47.4274351 ], + [ 7.7467514, 47.4280939 ], + [ 7.7467179, 47.4282873 ], + [ 7.7467934, 47.4286146 ], + [ 7.7466035, 47.4287415 ], + [ 7.7464215, 47.4288736 ], + [ 7.7463689, 47.4289118 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns086", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Stälzer - Pfiferatten", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Stälzer - Pfiferatten", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Stälzer - Pfiferatten", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Stälzer - Pfiferatten", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.4772379, 47.0699432 ], + [ 9.4843024, 47.072157 ], + [ 9.494397, 47.0812446 ], + [ 9.5030123, 47.0928775 ], + [ 9.5206318, 47.0851809 ], + [ 9.5058144, 47.0767205 ], + [ 9.4846228, 47.0667524 ], + [ 9.4848185, 47.0615301 ], + [ 9.4867987, 47.051327 ], + [ 9.4984771, 47.0434695 ], + [ 9.4773138, 47.0338597 ], + [ 9.4602805, 47.0358708 ], + [ 9.4501835, 47.0438765 ], + [ 9.4513373, 47.0535741 ], + [ 9.4606496, 47.059619 ], + [ 9.4615783, 47.0632918 ], + [ 9.4336827, 47.0673792 ], + [ 9.4360355, 47.0775059 ], + [ 9.4454412, 47.0859798 ], + [ 9.4608923, 47.0904776 ], + [ 9.4657492, 47.0760853 ], + [ 9.4772379, 47.0699432 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSXB001", + "country" : "LIE", + "name" : [ + { + "text" : "LSXB Balzers", + "lang" : "de-CH" + }, + { + "text" : "LSXB Balzers", + "lang" : "fr-CH" + }, + { + "text" : "LSXB Balzers", + "lang" : "it-CH" + }, + { + "text" : "LSXB Balzers", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 27, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Heliport Balzers", + "lang" : "de-CH" + }, + { + "text" : "Heliport Balzers", + "lang" : "fr-CH" + }, + { + "text" : "Heliport Balzers", + "lang" : "it-CH" + }, + { + "text" : "Heliport Balzers", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleiter", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleiter", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleiter", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleiter", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Renzo Aldovini", + "lang" : "de-CH" + }, + { + "text" : "Renzo Aldovini", + "lang" : "fr-CH" + }, + { + "text" : "Renzo Aldovini", + "lang" : "it-CH" + }, + { + "text" : "Renzo Aldovini", + "lang" : "en-GB" + } + ], + "siteURL" : "https://lsxb.li/drohnenfluege/", + "email" : "info@lsxb.li", + "phone" : "004233800303", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P01DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.557002, 47.4885065 ], + [ 9.5580296, 47.4883797 ], + [ 9.5587979, 47.4883063 ], + [ 9.5597534, 47.4880683 ], + [ 9.5663373, 47.4869452 ], + [ 9.5666992, 47.4870681 ], + [ 9.5669093, 47.4868771 ], + [ 9.5682462, 47.4866851 ], + [ 9.5691192, 47.4865098 ], + [ 9.570259, 47.4862369 ], + [ 9.570678000000001, 47.4861923 ], + [ 9.5712238, 47.4860023 ], + [ 9.5715802, 47.4858859 ], + [ 9.5712808, 47.4849405 ], + [ 9.5748226, 47.484526 ], + [ 9.5745153, 47.4826909 ], + [ 9.5706924, 47.4831105 ], + [ 9.5702726, 47.4819756 ], + [ 9.5656781, 47.483013 ], + [ 9.5606065, 47.4838043 ], + [ 9.5580373, 47.4839782 ], + [ 9.5569654, 47.4840932 ], + [ 9.5517931, 47.4847267 ], + [ 9.5497511, 47.4851769 ], + [ 9.5487586, 47.4857888 ], + [ 9.5485883, 47.4859107 ], + [ 9.5440821, 47.486314 ], + [ 9.5444948, 47.4874167 ], + [ 9.5497739, 47.486922 ], + [ 9.5501613, 47.4872514 ], + [ 9.5511128, 47.4883164 ], + [ 9.5512667, 47.4891485 ], + [ 9.5539189, 47.4889183 ], + [ 9.553921, 47.4894365 ], + [ 9.5551742, 47.4893407 ], + [ 9.5551118, 47.4888065 ], + [ 9.5555405, 47.4887717 ], + [ 9.5564695, 47.488635 ], + [ 9.557002, 47.4885065 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZR002", + "country" : "CHE", + "name" : [ + { + "text" : "LSZR St.Gallen (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSZR St.Gallen (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSZR St.Gallen (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSZR St.Gallen (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Special Flight Office (SFO)", + "lang" : "de-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "fr-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "it-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "en-GB" + } + ], + "siteURL" : "https://skyguide.ch/services/special-flights", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.0682972, 47.0825345 ], + [ 9.0678702, 47.0812748 ], + [ 9.0675156, 47.0802286 ], + [ 9.0670904, 47.0789741 ], + [ 9.0670832, 47.0789494 ], + [ 9.0670783, 47.0789248 ], + [ 9.0670756, 47.0789001 ], + [ 9.0670752, 47.0788752 ], + [ 9.067077, 47.0788504 ], + [ 9.067081, 47.0788258 ], + [ 9.0670872, 47.0788013 ], + [ 9.0670956, 47.0787771 ], + [ 9.0671062, 47.0787534 ], + [ 9.0671189, 47.0787301 ], + [ 9.0671336, 47.0787074 ], + [ 9.0671504, 47.0786854 ], + [ 9.067169, 47.0786641 ], + [ 9.0671896, 47.0786436 ], + [ 9.0672161, 47.0786193 ], + [ 9.0672361, 47.0786054 ], + [ 9.0672618, 47.0785879 ], + [ 9.067289, 47.0785714 ], + [ 9.0673177, 47.0785562 ], + [ 9.0673477, 47.0785421 ], + [ 9.0673788, 47.0785294 ], + [ 9.0674111, 47.0785179 ], + [ 9.0674443, 47.0785079 ], + [ 9.0674784, 47.0784992 ], + [ 9.0675132, 47.078492 ], + [ 9.0675253, 47.0784898 ], + [ 9.0675486, 47.0784863 ], + [ 9.0683426, 47.0783648 ], + [ 9.0683799, 47.0783642 ], + [ 9.0684195, 47.0783728 ], + [ 9.0684576, 47.0783946 ], + [ 9.0684103, 47.0783545 ], + [ 9.0682036, 47.0782058 ], + [ 9.0681329, 47.0781594 ], + [ 9.0680973, 47.0781847 ], + [ 9.067984299999999, 47.0781193 ], + [ 9.0678658, 47.0780585 ], + [ 9.0677422, 47.0780027 ], + [ 9.067614, 47.077952 ], + [ 9.0674816, 47.0779066 ], + [ 9.0673454, 47.0778667 ], + [ 9.0672061, 47.0778323 ], + [ 9.0670656, 47.077804 ], + [ 9.0667419, 47.0777496 ], + [ 9.0662074, 47.0776648 ], + [ 9.0661588, 47.0776583 ], + [ 9.066111, 47.0776497 ], + [ 9.0660639, 47.0776393 ], + [ 9.0660179, 47.0776269 ], + [ 9.065973, 47.0776127 ], + [ 9.0659295, 47.0775967 ], + [ 9.0658874, 47.0775789 ], + [ 9.065847, 47.0775594 ], + [ 9.0658084, 47.0775382 ], + [ 9.0657717, 47.0775156 ], + [ 9.0657371, 47.0774914 ], + [ 9.0657047, 47.0774659 ], + [ 9.0656745, 47.0774391 ], + [ 9.0656468, 47.0774111 ], + [ 9.0656216, 47.0773821 ], + [ 9.065599, 47.0773521 ], + [ 9.0655512, 47.0772834 ], + [ 9.0652062, 47.0766107 ], + [ 9.0650206, 47.0766372 ], + [ 9.0646373, 47.0766982 ], + [ 9.0626941, 47.0709719 ], + [ 9.061668, 47.0711345 ], + [ 9.0621712, 47.0726173 ], + [ 9.0619752, 47.0726484 ], + [ 9.0622737, 47.0735245 ], + [ 9.06158, 47.0736301 ], + [ 9.0616827, 47.0739413 ], + [ 9.0617241, 47.074069 ], + [ 9.0626176, 47.0739329 ], + [ 9.0673792, 47.0879604 ], + [ 9.0684055, 47.0877978 ], + [ 9.0667152, 47.0828194 ], + [ 9.0673683, 47.0827154 ], + [ 9.0677819, 47.0826159 ], + [ 9.0682972, 47.0825345 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZM002", + "country" : "CHE", + "name" : [ + { + "text" : "LSZM Mollis (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSZM Mollis (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSZM Mollis (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSZM Mollis (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Mollis Airport AG", + "lang" : "de-CH" + }, + { + "text" : "Mollis Airport AG", + "lang" : "fr-CH" + }, + { + "text" : "Mollis Airport AG", + "lang" : "it-CH" + }, + { + "text" : "Mollis Airport AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Stefan Oswald", + "lang" : "de-CH" + }, + { + "text" : "Stefan Oswald", + "lang" : "fr-CH" + }, + { + "text" : "Stefan Oswald", + "lang" : "it-CH" + }, + { + "text" : "Stefan Oswald", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.mollisairport.ch", + "email" : "flugbetrieb@mollisairport.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P20DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6498073, 47.5343373 ], + [ 7.6498013, 47.5341961 ], + [ 7.6497844, 47.5340553 ], + [ 7.6497566, 47.5339153 ], + [ 7.649718, 47.5337765 ], + [ 7.6496688, 47.5336392 ], + [ 7.649609, 47.5335039 ], + [ 7.6495388, 47.5333709 ], + [ 7.6494585, 47.5332405 ], + [ 7.6493682, 47.5331132 ], + [ 7.6492682, 47.5329892 ], + [ 7.6491587, 47.532869 ], + [ 7.6490401, 47.5327528 ], + [ 7.6489127, 47.5326409 ], + [ 7.6487768, 47.5325338 ], + [ 7.6486328, 47.5324316 ], + [ 7.6484811, 47.5323346 ], + [ 7.6483222, 47.5322431 ], + [ 7.6481563999999995, 47.5321574 ], + [ 7.6479841, 47.5320777 ], + [ 7.647806, 47.5320042 ], + [ 7.6476223999999995, 47.5319372 ], + [ 7.6474339, 47.5318767 ], + [ 7.647241, 47.531823 ], + [ 7.6470442, 47.5317762 ], + [ 7.6468441, 47.5317364 ], + [ 7.6466411999999995, 47.5317038 ], + [ 7.646436, 47.5316784 ], + [ 7.6462291, 47.5316604 ], + [ 7.6460211000000005, 47.5316497 ], + [ 7.6458126, 47.5316463 ], + [ 7.6456041, 47.5316504 ], + [ 7.6453962, 47.5316619 ], + [ 7.6451895, 47.5316807 ], + [ 7.6449845, 47.5317068 ], + [ 7.6447818, 47.5317401 ], + [ 7.644582, 47.5317806 ], + [ 7.6443856, 47.5318281 ], + [ 7.6441931, 47.5318825 ], + [ 7.6440051, 47.5319436 ], + [ 7.643822, 47.5320114 ], + [ 7.6436445, 47.5320855 ], + [ 7.6434729, 47.5321658 ], + [ 7.6433077, 47.5322521 ], + [ 7.6431495, 47.5323441 ], + [ 7.6429986, 47.5324416 ], + [ 7.6428554, 47.5325443 ], + [ 7.6427203, 47.532652 ], + [ 7.6425938, 47.5327643 ], + [ 7.6424761, 47.5328809 ], + [ 7.6423676, 47.5330015 ], + [ 7.6422685, 47.5331259 ], + [ 7.6421792, 47.5332535 ], + [ 7.6420999, 47.5333842 ], + [ 7.6420308, 47.5335174 ], + [ 7.641972, 47.533653 ], + [ 7.6419239, 47.5337904 ], + [ 7.6418864, 47.5339294 ], + [ 7.6418596999999995, 47.5340695 ], + [ 7.6418439, 47.5342103 ], + [ 7.641839, 47.5343515 ], + [ 7.641845, 47.5344927 ], + [ 7.6418619, 47.5346335 ], + [ 7.6418896, 47.5347735 ], + [ 7.6419282, 47.5349124 ], + [ 7.6419774, 47.5350496 ], + [ 7.6420371, 47.535185 ], + [ 7.6421073, 47.535318 ], + [ 7.6421876, 47.5354484 ], + [ 7.6422779, 47.5355757 ], + [ 7.6423779, 47.5356997 ], + [ 7.6424874, 47.5358199 ], + [ 7.642606, 47.5359361 ], + [ 7.6427334, 47.536048 ], + [ 7.6428693, 47.5361552 ], + [ 7.6430132, 47.5362574 ], + [ 7.6431649, 47.5363543 ], + [ 7.6433239, 47.5364458 ], + [ 7.6434897, 47.5365315 ], + [ 7.6436619, 47.5366112 ], + [ 7.6438401, 47.5366847 ], + [ 7.6440236, 47.5367518 ], + [ 7.6442122, 47.5368123 ], + [ 7.6444051, 47.536866 ], + [ 7.6446019, 47.5369128 ], + [ 7.6448021, 47.5369525 ], + [ 7.645005, 47.5369852 ], + [ 7.6452102, 47.5370105 ], + [ 7.6454170999999995, 47.5370286 ], + [ 7.6456251, 47.5370393 ], + [ 7.6458337, 47.5370426 ], + [ 7.6460422, 47.5370386 ], + [ 7.6462501, 47.5370271 ], + [ 7.6464568, 47.5370083 ], + [ 7.6466618, 47.5369822 ], + [ 7.6468644999999995, 47.5369489 ], + [ 7.6470644, 47.5369084 ], + [ 7.6472608, 47.5368609 ], + [ 7.6474533000000005, 47.5368065 ], + [ 7.6476413999999995, 47.5367453 ], + [ 7.6478244, 47.5366776 ], + [ 7.648002, 47.5366035 ], + [ 7.6481736, 47.5365231 ], + [ 7.6483387, 47.5364368 ], + [ 7.648497, 47.5363448 ], + [ 7.6486479, 47.5362473 ], + [ 7.6487911, 47.5361446 ], + [ 7.6489261, 47.5360369 ], + [ 7.6490527, 47.5359246 ], + [ 7.6491704, 47.535808 ], + [ 7.6492789, 47.5356873 ], + [ 7.6493779, 47.535563 ], + [ 7.6494672, 47.5354354 ], + [ 7.6495465, 47.5353047 ], + [ 7.6496156, 47.5351714 ], + [ 7.6496743, 47.5350359 ], + [ 7.6497225, 47.5348984 ], + [ 7.6497599, 47.5347595 ], + [ 7.6497866, 47.5346194 ], + [ 7.6498024000000004, 47.5344785 ], + [ 7.6498073, 47.5343373 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "MUZ0001", + "country" : "CHE", + "name" : [ + { + "text" : "Gefängnis Muttenz", + "lang" : "de-CH" + }, + { + "text" : "Gefängnis Muttenz", + "lang" : "fr-CH" + }, + { + "text" : "Gefängnis Muttenz", + "lang" : "it-CH" + }, + { + "text" : "Gefängnis Muttenz", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Justizvollzug Basel-Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Amt für Justizvollzug Basel-Landschaft", + "lang" : "fr-CH" + }, + { + "text" : "Amt für Justizvollzug Basel-Landschaft", + "lang" : "it-CH" + }, + { + "text" : "Amt für Justizvollzug Basel-Landschaft", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Amtsleitung", + "lang" : "de-CH" + }, + { + "text" : "Amtsleitung", + "lang" : "fr-CH" + }, + { + "text" : "Amtsleitung", + "lang" : "it-CH" + }, + { + "text" : "Amtsleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Nicolas Pozar", + "lang" : "de-CH" + }, + { + "text" : "Nicolas Pozar", + "lang" : "fr-CH" + }, + { + "text" : "Nicolas Pozar", + "lang" : "it-CH" + }, + { + "text" : "Nicolas Pozar", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/sicherheitsdirektion/bv-sid/justizvollzug", + "email" : "kanzlei.ajv@bl.ch", + "phone" : "0041615529045", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P21DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.9100511000000004, 47.2354446 ], + [ 7.9103847, 47.2352183 ], + [ 7.9098026, 47.2348911 ], + [ 7.909573, 47.2350966 ], + [ 7.9097292, 47.2351825 ], + [ 7.9097033, 47.2352536 ], + [ 7.9100511000000004, 47.2354446 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSXP002", + "country" : "CHE", + "name" : [ + { + "text" : "LSXP Pfaffnau (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSXP Pfaffnau (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSXP Pfaffnau (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSXP Pfaffnau (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swiss Helicopter AG", + "lang" : "de-CH" + }, + { + "text" : "Swiss Helicopter AG", + "lang" : "fr-CH" + }, + { + "text" : "Swiss Helicopter AG", + "lang" : "it-CH" + }, + { + "text" : "Swiss Helicopter AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Basis Pfaffnau", + "lang" : "de-CH" + }, + { + "text" : "Basis Pfaffnau", + "lang" : "fr-CH" + }, + { + "text" : "Basis Pfaffnau", + "lang" : "it-CH" + }, + { + "text" : "Basis Pfaffnau", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Markus Lerch", + "lang" : "de-CH" + }, + { + "text" : "Markus Lerch", + "lang" : "fr-CH" + }, + { + "text" : "Markus Lerch", + "lang" : "it-CH" + }, + { + "text" : "Markus Lerch", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swisshelicopter.ch/en/about-us/helicopter-bases/pfaffnau", + "email" : "pfaffnau@swisshelicopter.ch", + "phone" : "0041627540101", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P00DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.9468207, 47.4451903 ], + [ 7.9468853, 47.4450869 ], + [ 7.9469467, 47.444809 ], + [ 7.9470735, 47.4444403 ], + [ 7.9471618, 47.4443083 ], + [ 7.9471408, 47.4442373 ], + [ 7.9470646, 47.4442254 ], + [ 7.9469254, 47.4444627 ], + [ 7.9468211, 47.4447923 ], + [ 7.9468207, 47.4451903 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns153", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Riedmatt", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Riedmatt", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Riedmatt", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Riedmatt", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.1444825, 46.8297653 ], + [ 7.1488587, 46.8310649 ], + [ 7.1494354, 46.8308429 ], + [ 7.1498453, 46.8308626 ], + [ 7.1504381, 46.8308974 ], + [ 7.1507505, 46.8310272 ], + [ 7.1514671, 46.8309895 ], + [ 7.1518346, 46.8308075 ], + [ 7.1520261, 46.8309586 ], + [ 7.152414, 46.8309087 ], + [ 7.1528263, 46.8308401 ], + [ 7.1540726, 46.829420999999996 ], + [ 7.1541938, 46.8284404 ], + [ 7.1536179, 46.827924 ], + [ 7.1538412, 46.8266627 ], + [ 7.153336, 46.8260751 ], + [ 7.1524955, 46.8255851 ], + [ 7.1519267, 46.8249091 ], + [ 7.1518806, 46.8247073 ], + [ 7.1517245, 46.8247086 ], + [ 7.1514633, 46.8248768 ], + [ 7.1508365, 46.8247687 ], + [ 7.1495428, 46.8238683 ], + [ 7.1471602, 46.8263357 ], + [ 7.146134, 46.8274406 ], + [ 7.1456333, 46.8278827 ], + [ 7.1450435, 46.8282259 ], + [ 7.1452843999999995, 46.8285146 ], + [ 7.1448629, 46.8290127 ], + [ 7.1444825, 46.8297653 ] + ] + ], + "layer" : { + "upper" : 300, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "FR004", + "country" : "CHE", + "name" : [ + { + "text" : "CIG Centre", + "lang" : "de-CH" + }, + { + "text" : "CIG Centre", + "lang" : "fr-CH" + }, + { + "text" : "CIG Centre", + "lang" : "it-CH" + }, + { + "text" : "CIG Centre", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kantonspolizei (Pol)", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale (Pol)", + "lang" : "fr-CH" + }, + { + "text" : "Police cantonale (Pol)", + "lang" : "it-CH" + }, + { + "text" : "Police cantonale (Pol)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Kommandant", + "lang" : "de-CH" + }, + { + "text" : "Commandant", + "lang" : "fr-CH" + }, + { + "text" : "Commandant", + "lang" : "it-CH" + }, + { + "text" : "Commandant", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.fr.ch/police-et-securite/criminalite-ordre-public-et-circulation/drones-legislation-et-demandes-de-derogation", + "email" : "CEA@fr.ch", + "phone" : "0041263470117", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.9412094, 47.4429824 ], + [ 7.9412082, 47.4429841 ], + [ 7.9412073, 47.4429859 ], + [ 7.9412065, 47.4429878 ], + [ 7.9412061, 47.4429897 ], + [ 7.9412058, 47.4429916 ], + [ 7.9412059, 47.4429935 ], + [ 7.9412061, 47.4429954 ], + [ 7.9412066, 47.4429973 ], + [ 7.9412074, 47.4429991 ], + [ 7.9412084, 47.4430009 ], + [ 7.9412096, 47.4430026 ], + [ 7.941211, 47.4430043 ], + [ 7.9412126, 47.4430059 ], + [ 7.9412145, 47.4430073 ], + [ 7.9412165, 47.4430086 ], + [ 7.9412187, 47.4430099 ], + [ 7.941221, 47.4430109 ], + [ 7.9412234999999995, 47.4430119 ], + [ 7.9417552, 47.4430918 ], + [ 7.9429691, 47.4432139 ], + [ 7.9432558, 47.4432296 ], + [ 7.9434675, 47.4431832 ], + [ 7.9435967, 47.4432057 ], + [ 7.9438615, 47.4431457 ], + [ 7.9439069, 47.4431006 ], + [ 7.9440707, 47.4430772 ], + [ 7.9442166, 47.44323 ], + [ 7.944224, 47.4432612 ], + [ 7.9441478, 47.4433305 ], + [ 7.9440068, 47.4434699 ], + [ 7.9440649, 47.4436393 ], + [ 7.9437442, 47.4438526 ], + [ 7.9436528, 47.4440525 ], + [ 7.9436151, 47.444219 ], + [ 7.9434982, 47.4444472 ], + [ 7.943475, 47.4445578 ], + [ 7.9432327, 47.4446641 ], + [ 7.943274, 47.4446964 ], + [ 7.9433781, 47.4446838 ], + [ 7.9434963, 47.4446357 ], + [ 7.9435598, 47.4445715 ], + [ 7.9436754, 47.4443434 ], + [ 7.9438306, 47.4439711 ], + [ 7.9438803, 47.4438885 ], + [ 7.9439717, 47.44382 ], + [ 7.9441744, 47.4437218 ], + [ 7.9443417, 47.443585 ], + [ 7.9443777, 47.4436049 ], + [ 7.9453156, 47.4438671 ], + [ 7.9453301, 47.4440269 ], + [ 7.945481, 47.4442526 ], + [ 7.9456786, 47.4446651 ], + [ 7.945496, 47.4453724 ], + [ 7.945499, 47.4456566 ], + [ 7.9454555, 47.4461016 ], + [ 7.9451144, 47.446371 ], + [ 7.9450272, 47.4463757 ], + [ 7.9447627, 47.4465553 ], + [ 7.9447859, 47.4466211 ], + [ 7.9454871, 47.4462306 ], + [ 7.9456153, 47.446134 ], + [ 7.9457192, 47.4460305 ], + [ 7.9457626, 47.4459506 ], + [ 7.9457702, 47.4458667 ], + [ 7.9457398, 47.4457391 ], + [ 7.9457344, 47.4456433 ], + [ 7.9457951, 47.4455374 ], + [ 7.9456611, 47.445453 ], + [ 7.9457333, 47.4451797 ], + [ 7.9457511, 47.4446751 ], + [ 7.9457877, 47.4445863 ], + [ 7.9456646, 47.4443615 ], + [ 7.9453964, 47.4440155 ], + [ 7.9453983, 47.4438914 ], + [ 7.9456261999999995, 47.4434366 ], + [ 7.9458271, 47.4433118 ], + [ 7.9460464, 47.4432336 ], + [ 7.9464166, 47.4431015 ], + [ 7.9455081, 47.4426762 ], + [ 7.9447034, 47.4424286 ], + [ 7.9443745, 47.4424445 ], + [ 7.9440119, 47.4424095 ], + [ 7.9436951, 47.4422642 ], + [ 7.9436257999999995, 47.4423929 ], + [ 7.9440131, 47.4426165 ], + [ 7.9440398, 47.4427458 ], + [ 7.9434803, 47.4429306 ], + [ 7.9431649, 47.4429622 ], + [ 7.9424152, 47.4429194 ], + [ 7.9420911, 47.4428631 ], + [ 7.941828, 47.4427329 ], + [ 7.9412142, 47.4429777 ], + [ 7.9412123999999995, 47.4429792 ], + [ 7.9412108, 47.4429807 ], + [ 7.9412094, 47.4429824 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns152", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Riedmatt", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Riedmatt", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Riedmatt", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Riedmatt", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.7420656, 47.4961045 ], + [ 8.7420566, 47.4959634 ], + [ 8.7420368, 47.4958228 ], + [ 8.7420062, 47.495683 ], + [ 8.7419648, 47.4955446 ], + [ 8.7419128, 47.4954078 ], + [ 8.7418503, 47.495273 ], + [ 8.7417775, 47.4951407 ], + [ 8.7416945, 47.4950111 ], + [ 8.7416017, 47.4948846 ], + [ 8.7414992, 47.4947616 ], + [ 8.7413874, 47.4946424 ], + [ 8.7412665, 47.4945273 ], + [ 8.7411369, 47.4944167 ], + [ 8.7409989, 47.4943108 ], + [ 8.7408529, 47.49421 ], + [ 8.7406994, 47.4941145 ], + [ 8.7405387, 47.4940245 ], + [ 8.7403712, 47.4939404 ], + [ 8.7401975, 47.4938623 ], + [ 8.7400181, 47.4937906 ], + [ 8.7398333, 47.4937252 ], + [ 8.7396437, 47.4936665 ], + [ 8.7394498, 47.4936146 ], + [ 8.7392522, 47.4935697 ], + [ 8.7390515, 47.4935318 ], + [ 8.738848, 47.4935011 ], + [ 8.7386425, 47.4934777 ], + [ 8.7384354, 47.4934616 ], + [ 8.7382274, 47.4934528 ], + [ 8.738019, 47.4934515 ], + [ 8.7378108, 47.4934575 ], + [ 8.7376033, 47.4934709 ], + [ 8.737397099999999, 47.4934917 ], + [ 8.7371928, 47.4935197 ], + [ 8.736991, 47.493555 ], + [ 8.7367922, 47.4935973 ], + [ 8.7365969, 47.4936467 ], + [ 8.7364057, 47.4937029 ], + [ 8.7362191, 47.4937658 ], + [ 8.7360376, 47.4938353 ], + [ 8.7358617, 47.493911 ], + [ 8.735691899999999, 47.493993 ], + [ 8.7355287, 47.4940808 ], + [ 8.7353725, 47.4941743 ], + [ 8.7352237, 47.4942732 ], + [ 8.7350827, 47.4943773 ], + [ 8.73495, 47.4944862 ], + [ 8.7348259, 47.4945997 ], + [ 8.7347107, 47.4947174 ], + [ 8.7346047, 47.494839 ], + [ 8.7345083, 47.4949643 ], + [ 8.7344217, 47.4950928 ], + [ 8.7343451, 47.4952241 ], + [ 8.7342788, 47.4953581 ], + [ 8.7342229, 47.4954941 ], + [ 8.7341776, 47.495632 ], + [ 8.734143, 47.4957713 ], + [ 8.7341192, 47.4959117 ], + [ 8.7341063, 47.4960526 ], + [ 8.7341043, 47.4961939 ], + [ 8.7341132, 47.496335 ], + [ 8.734133, 47.4964756 ], + [ 8.7341636, 47.4966154 ], + [ 8.7342049, 47.4967538 ], + [ 8.7342569, 47.4968906 ], + [ 8.7343194, 47.4970254 ], + [ 8.7343922, 47.4971577 ], + [ 8.7344752, 47.497287299999996 ], + [ 8.734568, 47.4974138 ], + [ 8.7346705, 47.4975368 ], + [ 8.734782299999999, 47.497656 ], + [ 8.7349032, 47.4977711 ], + [ 8.735032799999999, 47.4978817 ], + [ 8.7351707, 47.4979876 ], + [ 8.7353167, 47.4980885 ], + [ 8.7354703, 47.498184 ], + [ 8.735631, 47.4982739 ], + [ 8.7357984, 47.4983581 ], + [ 8.7359721, 47.4984361 ], + [ 8.7361516, 47.4985079 ], + [ 8.7363364, 47.4985733 ], + [ 8.736526, 47.498632 ], + [ 8.7367199, 47.4986839 ], + [ 8.7369175, 47.4987288 ], + [ 8.7371183, 47.4987667 ], + [ 8.7373218, 47.4987974 ], + [ 8.7375273, 47.4988208 ], + [ 8.7377344, 47.4988369 ], + [ 8.7379424, 47.4988457 ], + [ 8.7381508, 47.498847 ], + [ 8.7383591, 47.498841 ], + [ 8.7385666, 47.4988276 ], + [ 8.7387728, 47.4988068 ], + [ 8.7389771, 47.4987788 ], + [ 8.7391789, 47.4987436 ], + [ 8.7393778, 47.4987012 ], + [ 8.7395731, 47.4986518 ], + [ 8.7397643, 47.4985956 ], + [ 8.7399509, 47.4985327 ], + [ 8.7401324, 47.4984632 ], + [ 8.7403083, 47.4983875 ], + [ 8.7404781, 47.4983055 ], + [ 8.7406414, 47.4982177 ], + [ 8.7407976, 47.4981242 ], + [ 8.7409464, 47.4980252 ], + [ 8.7410873, 47.4979212 ], + [ 8.74122, 47.4978123 ], + [ 8.7413442, 47.4976988 ], + [ 8.7414594, 47.497581 ], + [ 8.7415653, 47.4974594 ], + [ 8.7416617, 47.4973342 ], + [ 8.7417483, 47.4972057 ], + [ 8.7418248, 47.4970743 ], + [ 8.7418912, 47.4969404 ], + [ 8.741947, 47.4968043 ], + [ 8.7419923, 47.4966664 ], + [ 8.742026899999999, 47.4965271 ], + [ 8.7420507, 47.4963867 ], + [ 8.7420636, 47.4962458 ], + [ 8.7420656, 47.4961045 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "HGW0001", + "country" : "CHE", + "name" : [ + { + "text" : "Halbgefangenschaft Winterthur", + "lang" : "de-CH" + }, + { + "text" : "Halbgefangenschaft Winterthur", + "lang" : "fr-CH" + }, + { + "text" : "Halbgefangenschaft Winterthur", + "lang" : "it-CH" + }, + { + "text" : "Halbgefangenschaft Winterthur", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "de-CH" + }, + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "fr-CH" + }, + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "it-CH" + }, + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "de-CH" + }, + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "fr-CH" + }, + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "it-CH" + }, + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Reno Berner", + "lang" : "de-CH" + }, + { + "text" : "Reno Berner", + "lang" : "fr-CH" + }, + { + "text" : "Reno Berner", + "lang" : "it-CH" + }, + { + "text" : "Reno Berner", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.zh.ch/de/direktion-der-justiz-und-des-innern/justizvollzug-wiedereingliederung.html", + "email" : "sicherheit-juwe@ji.zh.ch", + "phone" : "0041432583400", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT12H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7498539, 47.3877876 ], + [ 7.7500915, 47.3877903 ], + [ 7.7503153000000005, 47.3877948 ], + [ 7.7505535, 47.3877984 ], + [ 7.7506803, 47.3881261 ], + [ 7.750694, 47.3884479 ], + [ 7.7507041, 47.3884882 ], + [ 7.7510033, 47.3885812 ], + [ 7.7513196, 47.3886891 ], + [ 7.7516312, 47.3888232 ], + [ 7.7514606, 47.3889673 ], + [ 7.7512183, 47.3891762 ], + [ 7.751603, 47.3894737 ], + [ 7.7518081, 47.3894866 ], + [ 7.7521185, 47.3895071 ], + [ 7.7525313, 47.3895211 ], + [ 7.7527075, 47.3895274 ], + [ 7.7529656, 47.3895367 ], + [ 7.7530909, 47.3895314 ], + [ 7.7533611, 47.3895231 ], + [ 7.7534896, 47.389518699999996 ], + [ 7.7537427, 47.3894943 ], + [ 7.7539901, 47.3894735 ], + [ 7.7544681, 47.3893516 ], + [ 7.7549624999999995, 47.3891669 ], + [ 7.7551691, 47.3889774 ], + [ 7.7552974, 47.3888605 ], + [ 7.7554869, 47.3886825 ], + [ 7.7556131, 47.3884742 ], + [ 7.7557373, 47.3882965 ], + [ 7.7557686, 47.3882555 ], + [ 7.7558836, 47.3881119 ], + [ 7.7559608, 47.388013 ], + [ 7.7561165, 47.3877651 ], + [ 7.7562552, 47.3875609 ], + [ 7.7559529, 47.3874179 ], + [ 7.7558638, 47.3872797 ], + [ 7.7557054, 47.3870561 ], + [ 7.7555406, 47.3868508 ], + [ 7.7552191, 47.3864571 ], + [ 7.7554237, 47.386198 ], + [ 7.755952, 47.386199 ], + [ 7.7562529, 47.3862011 ], + [ 7.7601473, 47.3851636 ], + [ 7.7618215, 47.3847745 ], + [ 7.7618766, 47.3847597 ], + [ 7.7619701, 47.3847295 ], + [ 7.7620343, 47.3847145 ], + [ 7.7621466, 47.3846662 ], + [ 7.7622477, 47.3846289 ], + [ 7.7623203, 47.3846068 ], + [ 7.7623978000000005, 47.3845909 ], + [ 7.7624919, 47.3845479 ], + [ 7.7626636, 47.384489 ], + [ 7.7629679, 47.3844054 ], + [ 7.7630656, 47.3843928 ], + [ 7.7631103, 47.3843841 ], + [ 7.7631745, 47.3843611 ], + [ 7.7632276000000005, 47.3843524 ], + [ 7.7632667, 47.3843532 ], + [ 7.7633296, 47.3843445 ], + [ 7.7634314, 47.3843052 ], + [ 7.7634677, 47.3842975 ], + [ 7.7635236, 47.3842841 ], + [ 7.7636324, 47.3842495 ], + [ 7.7641902, 47.3841259 ], + [ 7.7642464, 47.3841193 ], + [ 7.7642999, 47.3841009 ], + [ 7.7644449, 47.3840578 ], + [ 7.7656654, 47.3835716 ], + [ 7.7657028, 47.3835569 ], + [ 7.7657751, 47.3835349 ], + [ 7.7658728, 47.3835081 ], + [ 7.7660384, 47.383457 ], + [ 7.7667961, 47.3832508 ], + [ 7.7672421, 47.3831224 ], + [ 7.7674243, 47.3830546 ], + [ 7.7676282, 47.3829727 ], + [ 7.7679861, 47.382829 ], + [ 7.7684833, 47.3825672 ], + [ 7.7689764, 47.3823847 ], + [ 7.7692092, 47.3824607 ], + [ 7.7696397, 47.382134 ], + [ 7.7697543, 47.3820915 ], + [ 7.770045, 47.3819839 ], + [ 7.7705543, 47.3813316 ], + [ 7.7699852, 47.3813633 ], + [ 7.7693147, 47.381446 ], + [ 7.7686606, 47.3815759 ], + [ 7.7667029, 47.382018 ], + [ 7.7662559, 47.3821444 ], + [ 7.7656822, 47.3823501 ], + [ 7.7651430999999995, 47.3825954 ], + [ 7.7646448, 47.3828778 ], + [ 7.7643576, 47.3830058 ], + [ 7.7640756, 47.3832122 ], + [ 7.7640375, 47.3832678 ], + [ 7.7635777, 47.3834355 ], + [ 7.7634045, 47.3833969 ], + [ 7.7633536, 47.3833924 ], + [ 7.7632761, 47.3834044 ], + [ 7.7624385, 47.3836532 ], + [ 7.7619728, 47.38375 ], + [ 7.7615433, 47.3838087 ], + [ 7.7611278, 47.3838845 ], + [ 7.7609677, 47.3839326 ], + [ 7.760782, 47.3839879 ], + [ 7.7597596, 47.3843655 ], + [ 7.7596996, 47.3843984 ], + [ 7.7596705, 47.3844647 ], + [ 7.7588882, 47.384658 ], + [ 7.7588239, 47.3845862 ], + [ 7.7585999, 47.3846802 ], + [ 7.7582984, 47.384764 ], + [ 7.7579355, 47.3848207 ], + [ 7.7578546, 47.3848399 ], + [ 7.7577726, 47.3848738 ], + [ 7.7576852, 47.3849129 ], + [ 7.7576248, 47.3849409 ], + [ 7.7575880999999995, 47.3849479 ], + [ 7.7575487, 47.3849619 ], + [ 7.7575123999999995, 47.3849837 ], + [ 7.757405, 47.3850276 ], + [ 7.7573531, 47.3850598 ], + [ 7.7573035, 47.3850919 ], + [ 7.7572015, 47.385157 ], + [ 7.7571241, 47.3852038 ], + [ 7.7562586, 47.3854298 ], + [ 7.7558199, 47.3855018 ], + [ 7.755812, 47.3854297 ], + [ 7.755497, 47.3854188 ], + [ 7.7547743, 47.3855034 ], + [ 7.7543451, 47.385528 ], + [ 7.7540978, 47.3855627 ], + [ 7.7537769999999995, 47.3856683 ], + [ 7.7526262, 47.3859028 ], + [ 7.752269, 47.3859419 ], + [ 7.7513729, 47.3860172 ], + [ 7.7507049, 47.3861571 ], + [ 7.7502763, 47.386274 ], + [ 7.7502693, 47.3862759 ], + [ 7.7498292, 47.3867141 ], + [ 7.7498496, 47.386896899999996 ], + [ 7.7498646, 47.3870314 ], + [ 7.7498809, 47.387178 ], + [ 7.7499028, 47.3873794 ], + [ 7.7499164, 47.3875044 ], + [ 7.7499295, 47.3876239 ], + [ 7.7498539, 47.3877876 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns205", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Edlisberg - Meiersberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Edlisberg - Meiersberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Edlisberg - Meiersberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Edlisberg - Meiersberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.9073258, 47.4814729 ], + [ 7.9065609, 47.4815574 ], + [ 7.9065735, 47.4815896 ], + [ 7.9073473, 47.4815041 ], + [ 7.9080008, 47.481431 ], + [ 7.9080738, 47.4814425 ], + [ 7.9084739, 47.4813935 ], + [ 7.9089167, 47.4813394 ], + [ 7.9090897, 47.4813701 ], + [ 7.9090863, 47.4812934 ], + [ 7.9090516, 47.4812447 ], + [ 7.9090399, 47.4812865 ], + [ 7.9089082, 47.4813052 ], + [ 7.908732, 47.4812632 ], + [ 7.9087194, 47.4813309 ], + [ 7.9085025, 47.4813574 ], + [ 7.9082804, 47.4813855 ], + [ 7.9081885, 47.4813969 ], + [ 7.9081752, 47.481341 ], + [ 7.9081285999999995, 47.4813439 ], + [ 7.9081203, 47.4813839 ], + [ 7.9079894, 47.4813985 ], + [ 7.9073258, 47.4814729 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns280", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Z'Allenggraben", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Z'Allenggraben", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Z'Allenggraben", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Z'Allenggraben", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4757762, 47.4069758 ], + [ 7.4759578, 47.4069645 ], + [ 7.4761948, 47.4069658 ], + [ 7.4763636, 47.4069688 ], + [ 7.4765473, 47.4070174 ], + [ 7.4766952, 47.407055 ], + [ 7.4768009, 47.4070838 ], + [ 7.4768996, 47.4071034 ], + [ 7.4770168, 47.407079 ], + [ 7.4771266, 47.4070237 ], + [ 7.4771653, 47.4069842 ], + [ 7.477235, 47.4068116 ], + [ 7.4772377, 47.4067056 ], + [ 7.4771904, 47.4065908 ], + [ 7.4770553, 47.406443 ], + [ 7.4768237, 47.4062768 ], + [ 7.4766028, 47.406147 ], + [ 7.4763795, 47.4060503 ], + [ 7.4763445, 47.4060351 ], + [ 7.4763109, 47.4060206 ], + [ 7.4759756, 47.405933 ], + [ 7.4756143999999995, 47.4058674 ], + [ 7.4753479, 47.4058318 ], + [ 7.4747806, 47.4057505 ], + [ 7.474273, 47.4056821 ], + [ 7.4737492, 47.4056115 ], + [ 7.4732191, 47.4055329 ], + [ 7.4728204, 47.4054691 ], + [ 7.472783, 47.4054649 ], + [ 7.4727101, 47.4054468 ], + [ 7.4723575, 47.4055227 ], + [ 7.4717621, 47.4056313 ], + [ 7.4711231, 47.4057991 ], + [ 7.4706584, 47.4059176 ], + [ 7.4701646, 47.4060261 ], + [ 7.4698742, 47.406115 ], + [ 7.469424, 47.4062433 ], + [ 7.4686543, 47.4064308 ], + [ 7.4677394, 47.4065888 ], + [ 7.4666211, 47.4067567 ], + [ 7.4662458, 47.406795 ], + [ 7.4672466, 47.4078402 ], + [ 7.4690824, 47.4087844 ], + [ 7.4695289, 47.4084261 ], + [ 7.4697862, 47.4082544 ], + [ 7.4700025, 47.4081305 ], + [ 7.4704149, 47.4079869 ], + [ 7.4707484, 47.4078831 ], + [ 7.4714072, 47.4077018 ], + [ 7.4718202, 47.4076149 ], + [ 7.4721512, 47.4075413 ], + [ 7.4726403999999995, 47.4074341 ], + [ 7.4731758, 47.4073377 ], + [ 7.473553, 47.4072685 ], + [ 7.4737173, 47.4072454 ], + [ 7.4740788, 47.4071992 ], + [ 7.474589, 47.4071263 ], + [ 7.475104, 47.4070579 ], + [ 7.4755022, 47.4070071 ], + [ 7.4757762, 47.4069758 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr019", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Gmür", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Gmür", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Gmür", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Gmür", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8813822, 47.4233833 ], + [ 7.881384, 47.4233624 ], + [ 7.8811117, 47.4233702 ], + [ 7.8808264999999995, 47.4233743 ], + [ 7.8806772, 47.4234278 ], + [ 7.8805926, 47.4233577 ], + [ 7.8807837, 47.4233045 ], + [ 7.8808394, 47.4232599 ], + [ 7.8810232, 47.4232104 ], + [ 7.8811412999999995, 47.4231758 ], + [ 7.8812009, 47.4230868 ], + [ 7.8811733, 47.422953 ], + [ 7.8811239, 47.4229482 ], + [ 7.881102, 47.4230865 ], + [ 7.8808876, 47.4231122 ], + [ 7.8806529, 47.4231566 ], + [ 7.8804663, 47.4232201 ], + [ 7.8802974, 47.4232945 ], + [ 7.8801587, 47.4233846 ], + [ 7.8800471, 47.4234766 ], + [ 7.8799334, 47.4235073 ], + [ 7.8797429, 47.4235558 ], + [ 7.8795474, 47.4236241 ], + [ 7.879376, 47.4236952 ], + [ 7.8792518, 47.4237624 ], + [ 7.8790728, 47.4238781 ], + [ 7.8790548, 47.4238719 ], + [ 7.878996, 47.4238304 ], + [ 7.8787744, 47.4236395 ], + [ 7.8788789, 47.4235496 ], + [ 7.8787774, 47.4235022 ], + [ 7.8786373, 47.4234356 ], + [ 7.8786197, 47.4234272 ], + [ 7.8785127, 47.4235483 ], + [ 7.8784647, 47.4236548 ], + [ 7.8784463, 47.423801 ], + [ 7.8784278, 47.423934 ], + [ 7.8783598999999995, 47.424014 ], + [ 7.8782041, 47.4241143 ], + [ 7.8780293, 47.424281 ], + [ 7.8779518, 47.4243877 ], + [ 7.8778745, 47.4245142 ], + [ 7.8777676, 47.4246076 ], + [ 7.877592, 47.4246814 ], + [ 7.8774263, 47.4247751 ], + [ 7.8772017, 47.424849 ], + [ 7.8769477, 47.4249164 ], + [ 7.8767814, 47.4249436 ], + [ 7.8764191, 47.4249383 ], + [ 7.8763017, 47.4249521 ], + [ 7.8762042, 47.424999 ], + [ 7.8759898, 47.4251127 ], + [ 7.8757949, 47.4252264 ], + [ 7.8755907, 47.4254066 ], + [ 7.8752897, 47.4257068 ], + [ 7.875193, 47.42586 ], + [ 7.8753114, 47.4259658 ], + [ 7.8755278, 47.4260846 ], + [ 7.8757634, 47.4261635 ], + [ 7.8760386, 47.4262887 ], + [ 7.8763722, 47.4263738 ], + [ 7.8768526, 47.4264517 ], + [ 7.8772345999999995, 47.4264569 ], + [ 7.8776263, 47.4264687 ], + [ 7.8779295, 47.4264211 ], + [ 7.8781303, 47.4263485 ], + [ 7.8785627, 47.4261923 ], + [ 7.8792864, 47.4259308 ], + [ 7.8793343, 47.4258044 ], + [ 7.8794505, 47.4256511 ], + [ 7.8795768, 47.425531 ], + [ 7.8796545, 47.4254443 ], + [ 7.8797321, 47.4253577 ], + [ 7.8798192, 47.4252377 ], + [ 7.8799352, 47.4250579 ], + [ 7.8800219, 47.4248914 ], + [ 7.8800997, 47.424818 ], + [ 7.8803526, 47.4246177 ], + [ 7.880771, 47.4243105 ], + [ 7.8809363999999995, 47.4241769 ], + [ 7.8811022, 47.4241098 ], + [ 7.8812981, 47.4241091 ], + [ 7.8814686, 47.4240674 ], + [ 7.8813822, 47.4233833 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr032", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Stierengraben", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Stierengraben", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Stierengraben", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Stierengraben", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.1360555, 46.2841049 ], + [ 6.1360809, 46.2840996 ], + [ 6.1361892, 46.2841224 ], + [ 6.1374071, 46.2841058 ], + [ 6.1385579, 46.2838291 ], + [ 6.1386057, 46.2838114 ], + [ 6.1397794, 46.2831435 ], + [ 6.1404952, 46.282215 ], + [ 6.1406442, 46.2811673 ], + [ 6.1402035999999995, 46.2801598 ], + [ 6.1401597, 46.2801028 ], + [ 6.1394248, 46.2794294 ], + [ 6.1384257, 46.2789464 ], + [ 6.1372602, 46.2787012 ], + [ 6.1368103, 46.2787073 ], + [ 6.1357859, 46.2785306 ], + [ 6.1355255, 46.2785445 ], + [ 6.1354141, 46.2785297 ], + [ 6.1351722, 46.2785634 ], + [ 6.1345456, 46.278597 ], + [ 6.1341914, 46.2787003 ], + [ 6.1339415, 46.2787351 ], + [ 6.1339307, 46.2787401 ], + [ 6.1339113, 46.2787458 ], + [ 6.1339129, 46.2787483 ], + [ 6.1337175, 46.2788384 ], + [ 6.1333988999999995, 46.278931299999996 ], + [ 6.1330282, 46.2791563 ], + [ 6.1326908, 46.2793119 ], + [ 6.1325726, 46.2794328 ], + [ 6.1324628, 46.2794994 ], + [ 6.1321735, 46.2798412 ], + [ 6.1318481, 46.280174099999996 ], + [ 6.1318264, 46.2802097 ], + [ 6.1317801, 46.2802853 ], + [ 6.1314854, 46.2811058 ], + [ 6.1315714, 46.2819492 ], + [ 6.1320296, 46.2827328 ], + [ 6.132815, 46.2833797 ], + [ 6.1333238, 46.283599 ], + [ 6.1333462, 46.2836139 ], + [ 6.1334008, 46.2836322 ], + [ 6.1338507, 46.2838262 ], + [ 6.133862, 46.2838295 ], + [ 6.1338621, 46.2838295 ], + [ 6.1339331, 46.2838503 ], + [ 6.1341388, 46.2838797 ], + [ 6.1344436, 46.2839819 ], + [ 6.1344779, 46.2839891 ], + [ 6.1344781, 46.2839891 ], + [ 6.1344803, 46.2839896 ], + [ 6.1344815, 46.2839898 ], + [ 6.134487, 46.283991 ], + [ 6.1345066, 46.2839951 ], + [ 6.1345083, 46.2839954 ], + [ 6.1345098, 46.2839957 ], + [ 6.1345446, 46.284003 ], + [ 6.1354111, 46.2840615 ], + [ 6.1354163, 46.2840622 ], + [ 6.1354182, 46.284062 ], + [ 6.1360555, 46.2841049 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-38", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8962456, 47.4418655 ], + [ 7.8963304999999995, 47.4418594 ], + [ 7.8966554, 47.4418963 ], + [ 7.8969772, 47.4419144 ], + [ 7.8973199, 47.4419423 ], + [ 7.8976463, 47.4419245 ], + [ 7.8979576, 47.4419472 ], + [ 7.8981770000000004, 47.4419342 ], + [ 7.8987229, 47.4420076 ], + [ 7.8989815, 47.441974 ], + [ 7.8991812, 47.442027 ], + [ 7.8994495, 47.4420684 ], + [ 7.899781, 47.4420754 ], + [ 7.9002574, 47.4421578 ], + [ 7.900668, 47.4421637 ], + [ 7.9009713, 47.4422412 ], + [ 7.9013238999999995, 47.4422762 ], + [ 7.9016756, 47.4423456 ], + [ 7.9020798, 47.4424507 ], + [ 7.9023083, 47.442535 ], + [ 7.9024857, 47.4425605 ], + [ 7.9027213, 47.4426842 ], + [ 7.9032745, 47.4429543 ], + [ 7.9035491, 47.4430932 ], + [ 7.9037817, 47.4432276 ], + [ 7.9040558999999995, 47.443246 ], + [ 7.9043041, 47.4432626 ], + [ 7.9044411, 47.4433459 ], + [ 7.904665, 47.443315 ], + [ 7.9045945, 47.4432013 ], + [ 7.9043648, 47.4432334 ], + [ 7.9037124, 47.4430166 ], + [ 7.9035599, 47.4428346 ], + [ 7.9035185, 47.442818 ], + [ 7.9032888, 47.4427239 ], + [ 7.9030603, 47.442579 ], + [ 7.9027921, 47.4423435 ], + [ 7.9026091, 47.4422993 ], + [ 7.902061, 47.442166 ], + [ 7.9020245, 47.4421537 ], + [ 7.9015617, 47.4419926 ], + [ 7.9010899, 47.4418293 ], + [ 7.9010602, 47.4417393 ], + [ 7.9005301, 47.4416833 ], + [ 7.8998653, 47.4416905 ], + [ 7.8996040999999995, 47.4415586 ], + [ 7.8989374, 47.4414129 ], + [ 7.8988479, 47.4412582 ], + [ 7.8975297, 47.4413545 ], + [ 7.8973385, 47.4412729 ], + [ 7.8973337, 47.4412511 ], + [ 7.8967944, 47.4413375 ], + [ 7.8965676, 47.4413777 ], + [ 7.8965374, 47.441383 ], + [ 7.8963158, 47.4414679 ], + [ 7.8962843, 47.4416623 ], + [ 7.8962509, 47.4418378 ], + [ 7.8962456, 47.4418655 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns052", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Eital - Summerholden", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Eital - Summerholden", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Eital - Summerholden", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Eital - Summerholden", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.2359646, 47.5560172 ], + [ 8.235957, 47.555876 ], + [ 8.2359385, 47.5557353 ], + [ 8.2359092, 47.5555955 ], + [ 8.2358691, 47.5554568 ], + [ 8.2358183, 47.5553198 ], + [ 8.235757, 47.5551848 ], + [ 8.2356854, 47.5550521 ], + [ 8.2356036, 47.5549222 ], + [ 8.2355118, 47.5547953 ], + [ 8.2354104, 47.5546719 ], + [ 8.2352996, 47.5545522 ], + [ 8.2351796, 47.5544366 ], + [ 8.2350509, 47.5543254 ], + [ 8.2349138, 47.5542189 ], + [ 8.2347687, 47.5541174 ], + [ 8.2346158, 47.5540212 ], + [ 8.2344558, 47.5539306 ], + [ 8.234289, 47.5538457 ], + [ 8.2341158, 47.5537669 ], + [ 8.2339368, 47.5536943 ], + [ 8.2337525, 47.5536282 ], + [ 8.2335632, 47.5535687 ], + [ 8.2333696, 47.5535159 ], + [ 8.2331723, 47.5534701 ], + [ 8.2329716, 47.5534314 ], + [ 8.2327682, 47.5533998 ], + [ 8.2325627, 47.5533755 ], + [ 8.2323556, 47.5533585 ], + [ 8.2321474, 47.5533488 ], + [ 8.2319388, 47.5533465 ], + [ 8.2317302, 47.5533517 ], + [ 8.2315224, 47.5533642 ], + [ 8.2313158, 47.553384 ], + [ 8.231111, 47.5534112 ], + [ 8.2309086, 47.5534455 ], + [ 8.2307092, 47.553487 ], + [ 8.2305132, 47.5535355 ], + [ 8.2303212, 47.5535909 ], + [ 8.2301338, 47.553653 ], + [ 8.2299515, 47.5537216 ], + [ 8.2297747, 47.5537966 ], + [ 8.2296039, 47.5538778 ], + [ 8.2294396, 47.5539649 ], + [ 8.2292824, 47.5540577 ], + [ 8.2291324, 47.554156 ], + [ 8.2289903, 47.5542594 ], + [ 8.2288564, 47.5543678 ], + [ 8.2287311, 47.5544807 ], + [ 8.2286146, 47.5545979 ], + [ 8.2285074, 47.5547191 ], + [ 8.2284097, 47.5548439 ], + [ 8.2283217, 47.554972 ], + [ 8.2282438, 47.555103 ], + [ 8.2281762, 47.5552367 ], + [ 8.2281189, 47.5553725 ], + [ 8.2280722, 47.5555102 ], + [ 8.2280363, 47.5556493 ], + [ 8.2280111, 47.5557895 ], + [ 8.2279968, 47.5559305 ], + [ 8.2279935, 47.5560717 ], + [ 8.228001, 47.5562129 ], + [ 8.2280195, 47.5563536 ], + [ 8.2280488, 47.5564934 ], + [ 8.2280889, 47.5566321 ], + [ 8.2281397, 47.5567691 ], + [ 8.2282009, 47.5569041 ], + [ 8.2282726, 47.5570368 ], + [ 8.2283544, 47.5571667 ], + [ 8.2284461, 47.5572936 ], + [ 8.2285475, 47.5574171 ], + [ 8.2286583, 47.5575368 ], + [ 8.2287782, 47.5576524 ], + [ 8.2289069, 47.5577635 ], + [ 8.2290441, 47.55787 ], + [ 8.2291892, 47.5579715 ], + [ 8.229342, 47.5580677 ], + [ 8.2295021, 47.558158399999996 ], + [ 8.2296689, 47.5582432 ], + [ 8.229842, 47.5583221 ], + [ 8.2300211, 47.5583946 ], + [ 8.2302054, 47.5584608 ], + [ 8.2303947, 47.5585203 ], + [ 8.2305883, 47.558573 ], + [ 8.2307857, 47.5586189 ], + [ 8.2309864, 47.5586576 ], + [ 8.2311898, 47.5586892 ], + [ 8.2313953, 47.5587135 ], + [ 8.2316025, 47.5587306 ], + [ 8.2318107, 47.5587402 ], + [ 8.2320193, 47.5587425 ], + [ 8.2322279, 47.5587374 ], + [ 8.2324357, 47.5587249 ], + [ 8.2326423, 47.558705 ], + [ 8.2328471, 47.5586779 ], + [ 8.2330495, 47.5586435 ], + [ 8.233249, 47.558602 ], + [ 8.233445, 47.5585535 ], + [ 8.233637, 47.5584981 ], + [ 8.2338244, 47.558436 ], + [ 8.2340068, 47.5583674 ], + [ 8.2341836, 47.5582923 ], + [ 8.2343544, 47.5582112 ], + [ 8.2345186, 47.558124 ], + [ 8.2346759, 47.5580312 ], + [ 8.2348258, 47.5579329 ], + [ 8.2349679, 47.5578295 ], + [ 8.2351018, 47.5577212 ], + [ 8.2352272, 47.5576082 ], + [ 8.2353436, 47.557491 ], + [ 8.2354509, 47.557369800000004 ], + [ 8.2355486, 47.557245 ], + [ 8.2356365, 47.5571169 ], + [ 8.235714399999999, 47.5569859 ], + [ 8.235782, 47.5568522 ], + [ 8.2358393, 47.5567164 ], + [ 8.2358859, 47.5565787 ], + [ 8.2359219, 47.5564396 ], + [ 8.235947, 47.5562993 ], + [ 8.2359612, 47.5561584 ], + [ 8.2359646, 47.5560172 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0013", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Beznau", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Beznau", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Beznau", + "lang" : "it-CH" + }, + { + "text" : "Substation Beznau", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6302974, 47.492979 ], + [ 7.6302071, 47.4927945 ], + [ 7.6302015999999995, 47.4927414 ], + [ 7.630117, 47.4927742 ], + [ 7.6300647, 47.4927786 ], + [ 7.6298431, 47.4928034 ], + [ 7.6293336, 47.4927992 ], + [ 7.6288277, 47.4927536 ], + [ 7.628591, 47.4927364 ], + [ 7.628319, 47.4928397 ], + [ 7.6281674, 47.492796 ], + [ 7.6280263, 47.4926907 ], + [ 7.6278496, 47.492579 ], + [ 7.6277929, 47.4926397 ], + [ 7.6275425, 47.4929212 ], + [ 7.6272881, 47.4932085 ], + [ 7.6271957, 47.4933138 ], + [ 7.6271614, 47.4933494 ], + [ 7.6266836, 47.4938867 ], + [ 7.6265307, 47.4941313 ], + [ 7.6264126999999995, 47.4943915 ], + [ 7.6263631, 47.4946454 ], + [ 7.6263377, 47.4947749 ], + [ 7.6263261, 47.4948343 ], + [ 7.6263091, 47.4949208 ], + [ 7.6262988, 47.4949734 ], + [ 7.6262922, 47.4950071 ], + [ 7.6262611, 47.4951659 ], + [ 7.6262606, 47.4951806 ], + [ 7.6262598, 47.4952048 ], + [ 7.6262441, 47.4956832 ], + [ 7.6262528, 47.4957717 ], + [ 7.6262737, 47.4958616 ], + [ 7.6264006, 47.4962566 ], + [ 7.6264344, 47.496446399999996 ], + [ 7.6264427, 47.4965372 ], + [ 7.626429, 47.4966457 ], + [ 7.6264243, 47.4967466 ], + [ 7.6264309, 47.4968012 ], + [ 7.62645, 47.4968525 ], + [ 7.6265947, 47.4971115 ], + [ 7.6268671999999995, 47.4976375 ], + [ 7.6268961, 47.4977239 ], + [ 7.6269355999999995, 47.497864 ], + [ 7.6269646, 47.4979252 ], + [ 7.6269638, 47.4979738 ], + [ 7.6269808999999995, 47.4980412 ], + [ 7.626983, 47.4980495 ], + [ 7.62701, 47.4981563 ], + [ 7.6270894, 47.498649 ], + [ 7.6272843, 47.4986734 ], + [ 7.627528, 47.4987062 ], + [ 7.6277342, 47.4987361 ], + [ 7.6279397, 47.4987685 ], + [ 7.6280649, 47.4987895 ], + [ 7.6281738, 47.4988072 ], + [ 7.6282861, 47.4987823 ], + [ 7.6283608, 47.4988117 ], + [ 7.6283961, 47.4987904 ], + [ 7.6285943, 47.4987467 ], + [ 7.6286234, 47.4987735 ], + [ 7.6291459, 47.4992667 ], + [ 7.6294524, 47.499283 ], + [ 7.6296173, 47.4993173 ], + [ 7.6296586, 47.4993258 ], + [ 7.6296118, 47.4993686 ], + [ 7.6293115, 47.4996561 ], + [ 7.6291163, 47.499856199999996 ], + [ 7.6291622, 47.4999167 ], + [ 7.62933, 47.4998679 ], + [ 7.6295708, 47.4999942 ], + [ 7.6295648, 47.5000908 ], + [ 7.6295755, 47.5001798 ], + [ 7.6294831, 47.5002768 ], + [ 7.6297895, 47.5003632 ], + [ 7.6297195, 47.5005069 ], + [ 7.6297356, 47.5005105 ], + [ 7.6297683, 47.5005179 ], + [ 7.6296811, 47.5006944 ], + [ 7.6295795, 47.5009085 ], + [ 7.6295117999999995, 47.5010602 ], + [ 7.6294755, 47.5011378 ], + [ 7.6294415, 47.5011993 ], + [ 7.6294126, 47.5012432 ], + [ 7.6293744, 47.5012938 ], + [ 7.6293328, 47.5013434 ], + [ 7.6292501, 47.5014308 ], + [ 7.6291196, 47.5015501 ], + [ 7.6290522, 47.501625 ], + [ 7.6289817, 47.5017175 ], + [ 7.6289049, 47.5018003 ], + [ 7.6288519, 47.501842 ], + [ 7.6288812, 47.5018672 ], + [ 7.6286311, 47.5021012 ], + [ 7.6286898, 47.5022165 ], + [ 7.6294772, 47.5020262 ], + [ 7.6303899, 47.5018054 ], + [ 7.6310059, 47.501689 ], + [ 7.6315546, 47.5015847 ], + [ 7.631974, 47.5018273 ], + [ 7.6321806, 47.5016284 ], + [ 7.6325973, 47.5012357 ], + [ 7.6331696, 47.5009876 ], + [ 7.6333328, 47.5009439 ], + [ 7.6334754, 47.5008809 ], + [ 7.6336344, 47.5008996 ], + [ 7.6340343, 47.5008615 ], + [ 7.6351214, 47.5007857 ], + [ 7.6355123, 47.5007253 ], + [ 7.6363475, 47.5006604 ], + [ 7.6368862, 47.5007133 ], + [ 7.6371766999999995, 47.5007651 ], + [ 7.6375199, 47.5008407 ], + [ 7.6378317, 47.5009292 ], + [ 7.6381159, 47.5010359 ], + [ 7.6384007, 47.5011691 ], + [ 7.6386655999999995, 47.5011856 ], + [ 7.6391637, 47.5011536 ], + [ 7.6394252, 47.5012282 ], + [ 7.6396458, 47.5013137 ], + [ 7.6397585, 47.501385 ], + [ 7.6401864, 47.5017127 ], + [ 7.6403626, 47.5018669 ], + [ 7.6404854, 47.5020492 ], + [ 7.6406843, 47.5024435 ], + [ 7.6407008, 47.5024761 ], + [ 7.6407274, 47.5024603 ], + [ 7.6415641999999995, 47.5019652 ], + [ 7.6421648, 47.5016016 ], + [ 7.6422035, 47.5015782 ], + [ 7.642214, 47.5015302 ], + [ 7.6422388, 47.5014168 ], + [ 7.6423448, 47.5012794 ], + [ 7.6425621, 47.5011459 ], + [ 7.6427033, 47.501019 ], + [ 7.6428016, 47.5008902 ], + [ 7.6428662, 47.5006662 ], + [ 7.6427001, 47.5001471 ], + [ 7.6424541999999995, 47.4996846 ], + [ 7.6423536, 47.4995533 ], + [ 7.642198, 47.499431 ], + [ 7.6420383, 47.4993685 ], + [ 7.6414957999999995, 47.4992305 ], + [ 7.6408264, 47.4989978 ], + [ 7.6401392999999995, 47.4987275 ], + [ 7.6397345, 47.4984686 ], + [ 7.6394783, 47.4983578 ], + [ 7.6385278, 47.4980218 ], + [ 7.6383493, 47.4979901 ], + [ 7.6379033, 47.4979617 ], + [ 7.63756, 47.4979532 ], + [ 7.63736, 47.497952 ], + [ 7.6369578, 47.4980142 ], + [ 7.6364611, 47.4979675 ], + [ 7.6358969, 47.497897 ], + [ 7.6352996, 47.4977714 ], + [ 7.6351065, 47.4976669 ], + [ 7.6347358, 47.4973106 ], + [ 7.6344951, 47.4970095 ], + [ 7.6342928, 47.4968492 ], + [ 7.6340806, 47.4967158 ], + [ 7.633765, 47.4965464 ], + [ 7.6335206, 47.4964746 ], + [ 7.6329603, 47.4963714 ], + [ 7.6325734, 47.4963447 ], + [ 7.6320368, 47.4963437 ], + [ 7.6318841, 47.4963268 ], + [ 7.6312416, 47.4961146 ], + [ 7.6310581, 47.4960359 ], + [ 7.6309258, 47.4959252 ], + [ 7.6308298, 47.4957793 ], + [ 7.6307181, 47.4954596 ], + [ 7.6307325, 47.495120299999996 ], + [ 7.6306488, 47.4946968 ], + [ 7.6306264, 47.4943879 ], + [ 7.6306433, 47.494081 ], + [ 7.6306321, 47.494004 ], + [ 7.6306202, 47.4939213 ], + [ 7.6305596, 47.4937405 ], + [ 7.6305233999999995, 47.493593 ], + [ 7.63046, 47.4934134 ], + [ 7.6303312, 47.493048 ], + [ 7.6302974, 47.492979 ] + ], + [ + [ 7.6289866, 47.4966913 ], + [ 7.6289837, 47.4966914 ], + [ 7.6289809, 47.4966909 ], + [ 7.6289784, 47.4966899 ], + [ 7.6289764, 47.4966885 ], + [ 7.6289751, 47.4966868 ], + [ 7.6289735, 47.4966846 ], + [ 7.6289714, 47.4966825 ], + [ 7.6289689, 47.4966807 ], + [ 7.628966, 47.4966791 ], + [ 7.6289629, 47.4966778 ], + [ 7.6289602, 47.4966772 ], + [ 7.6289579, 47.4966761 ], + [ 7.6289561, 47.4966747 ], + [ 7.6289549, 47.4966729 ], + [ 7.6289544, 47.4966711 ], + [ 7.6289546, 47.4966692 ], + [ 7.6289556, 47.4966674 ], + [ 7.6289563000000005, 47.4966662 ], + [ 7.6289568, 47.496665 ], + [ 7.6289572, 47.4966637 ], + [ 7.6289574, 47.4966624 ], + [ 7.6289571, 47.4966606 ], + [ 7.6289576, 47.4966588 ], + [ 7.6289589, 47.4966572 ], + [ 7.6289609, 47.4966559 ], + [ 7.6289633, 47.496655 ], + [ 7.628966, 47.4966547 ], + [ 7.6289687, 47.4966549 ], + [ 7.6289705, 47.4966558 ], + [ 7.6289727, 47.4966563 ], + [ 7.628975, 47.4966562 ], + [ 7.6289771, 47.4966557 ], + [ 7.6289789, 47.4966547 ], + [ 7.6289802, 47.4966534 ], + [ 7.6289808, 47.4966519 ], + [ 7.6289809, 47.4966495 ], + [ 7.6289807, 47.4966471 ], + [ 7.6289802, 47.4966447 ], + [ 7.6289795, 47.4966424 ], + [ 7.6289784, 47.4966407 ], + [ 7.6289779, 47.4966389 ], + [ 7.6289779, 47.4966371 ], + [ 7.6289786, 47.4966353 ], + [ 7.6289792, 47.4966331 ], + [ 7.6289791000000005, 47.4966309 ], + [ 7.6289782, 47.4966288 ], + [ 7.6289768, 47.4966269 ], + [ 7.6289767, 47.4966252 ], + [ 7.6289772, 47.4966237 ], + [ 7.6289781, 47.4966222 ], + [ 7.6289795, 47.4966209 ], + [ 7.6289797, 47.4966182 ], + [ 7.6289797, 47.4966156 ], + [ 7.6289795, 47.496612999999996 ], + [ 7.6289791000000005, 47.49661 ], + [ 7.6289786, 47.4966085 ], + [ 7.6289782, 47.496607 ], + [ 7.628978, 47.4966055 ], + [ 7.6289779, 47.496604 ], + [ 7.6289782, 47.4966024 ], + [ 7.6289793, 47.4966009 ], + [ 7.628981, 47.4965998 ], + [ 7.6289832, 47.496599 ], + [ 7.6289856, 47.4965988 ], + [ 7.628988, 47.4965991 ], + [ 7.6289901, 47.4965999 ], + [ 7.6289918, 47.496601 ], + [ 7.6290009, 47.4966035 ], + [ 7.6290102, 47.4966058 ], + [ 7.6290195, 47.4966079 ], + [ 7.6290288, 47.49661 ], + [ 7.6290349, 47.4966106 ], + [ 7.6290407, 47.4966116 ], + [ 7.6290465, 47.496612999999996 ], + [ 7.629052, 47.4966148 ], + [ 7.6290595, 47.4966157 ], + [ 7.6290672, 47.4966162 ], + [ 7.6290748, 47.4966162 ], + [ 7.6290825, 47.4966159 ], + [ 7.62909, 47.4966151 ], + [ 7.6290975, 47.496614 ], + [ 7.6291002, 47.4966135 ], + [ 7.6291029, 47.4966132 ], + [ 7.6291057, 47.4966131 ], + [ 7.6291084, 47.4966132 ], + [ 7.6291174, 47.4966139 ], + [ 7.6291264, 47.4966143 ], + [ 7.6291354, 47.4966143 ], + [ 7.6291443999999995, 47.4966139 ], + [ 7.6291534, 47.4966131 ], + [ 7.6291583, 47.4966123 ], + [ 7.6291633, 47.496612 ], + [ 7.6291683, 47.4966121 ], + [ 7.6291733, 47.4966127 ], + [ 7.6291781, 47.4966138 ], + [ 7.6291826, 47.4966153 ], + [ 7.6291855, 47.4966182 ], + [ 7.629189, 47.4966209 ], + [ 7.629193, 47.4966231 ], + [ 7.6291974, 47.496625 ], + [ 7.6292021, 47.4966264 ], + [ 7.6292071, 47.4966273 ], + [ 7.6292098, 47.496628 ], + [ 7.6292123, 47.4966289 ], + [ 7.6292147, 47.49663 ], + [ 7.6292169, 47.4966312 ], + [ 7.6292166, 47.4966338 ], + [ 7.6292157, 47.4966362 ], + [ 7.6292142, 47.4966385 ], + [ 7.629212, 47.4966406 ], + [ 7.6292073, 47.4966454 ], + [ 7.6292033, 47.4966505 ], + [ 7.6291999, 47.4966559 ], + [ 7.6291972, 47.4966614 ], + [ 7.6291955, 47.4966666 ], + [ 7.6291931, 47.4966718 ], + [ 7.6291902, 47.4966768 ], + [ 7.6291868, 47.4966816 ], + [ 7.6291828, 47.4966863 ], + [ 7.6291812, 47.4966881 ], + [ 7.6291799000000005, 47.49669 ], + [ 7.6291789, 47.496692 ], + [ 7.6291782, 47.4966941 ], + [ 7.629178, 47.496696 ], + [ 7.6291776, 47.4966979 ], + [ 7.6291771, 47.4966998 ], + [ 7.6291756, 47.4967043 ], + [ 7.6291735, 47.4967087 ], + [ 7.6291708, 47.4967129 ], + [ 7.6291677, 47.496717 ], + [ 7.6291662, 47.4967191 ], + [ 7.6291649, 47.4967213 ], + [ 7.6291637, 47.4967235 ], + [ 7.6291626, 47.4967258 ], + [ 7.629161, 47.4967322 ], + [ 7.6291587, 47.4967385 ], + [ 7.6291556, 47.4967447 ], + [ 7.6291519, 47.4967507 ], + [ 7.6291475, 47.4967565 ], + [ 7.6291448, 47.4967599 ], + [ 7.6291418, 47.4967632 ], + [ 7.6291386, 47.4967664 ], + [ 7.6291351, 47.4967694 ], + [ 7.6291346, 47.4967699 ], + [ 7.6291341, 47.4967704 ], + [ 7.6291336, 47.4967708 ], + [ 7.6291321, 47.4967724 ], + [ 7.6291308, 47.4967739 ], + [ 7.6291295, 47.4967756 ], + [ 7.6291285, 47.4967773 ], + [ 7.6291262, 47.4967799 ], + [ 7.6291235, 47.4967824 ], + [ 7.6291204, 47.4967846 ], + [ 7.6291169, 47.4967865 ], + [ 7.629113, 47.4967881 ], + [ 7.6291087, 47.4967894 ], + [ 7.6291048, 47.4967912 ], + [ 7.6291015, 47.4967934 ], + [ 7.6290987999999995, 47.4967961 ], + [ 7.6290969, 47.496799 ], + [ 7.6290958, 47.496802 ], + [ 7.6290955, 47.4968052 ], + [ 7.6290961, 47.4968084 ], + [ 7.6290959, 47.4968107 ], + [ 7.6290953, 47.496813 ], + [ 7.6290942, 47.4968152 ], + [ 7.6290927, 47.4968173 ], + [ 7.6290894, 47.4968195 ], + [ 7.6290857, 47.4968213 ], + [ 7.6290816, 47.4968227 ], + [ 7.6290772, 47.4968237 ], + [ 7.6290727, 47.4968243 ], + [ 7.6290610999999995, 47.4968262 ], + [ 7.6290496999999995, 47.4968285 ], + [ 7.6290385, 47.4968313 ], + [ 7.6290275, 47.4968346 ], + [ 7.6290169, 47.4968383 ], + [ 7.6290097, 47.4968423 ], + [ 7.6290022, 47.496846 ], + [ 7.6289942, 47.4968492 ], + [ 7.6289858, 47.496852 ], + [ 7.6289772, 47.4968544 ], + [ 7.6289683, 47.4968564 ], + [ 7.6289593, 47.4968578 ], + [ 7.6289526, 47.4968585 ], + [ 7.6289459, 47.4968595 ], + [ 7.6289394, 47.4968608 ], + [ 7.628933, 47.4968624 ], + [ 7.6289315, 47.4968624 ], + [ 7.6289301, 47.4968619 ], + [ 7.6289291, 47.4968611 ], + [ 7.6289288, 47.4968601 ], + [ 7.6289276, 47.4968522 ], + [ 7.6289256, 47.4968443 ], + [ 7.6289229, 47.4968366 ], + [ 7.6289195, 47.496829 ], + [ 7.6289154, 47.4968216 ], + [ 7.6289128999999996, 47.4968181 ], + [ 7.628911, 47.4968144 ], + [ 7.6289095, 47.4968106 ], + [ 7.6289085, 47.4968068 ], + [ 7.6289081, 47.4968029 ], + [ 7.6289071, 47.4967997 ], + [ 7.628906, 47.4967966 ], + [ 7.6289046, 47.4967936 ], + [ 7.6289032, 47.4967905 ], + [ 7.6289024, 47.4967889 ], + [ 7.6289011, 47.4967827 ], + [ 7.6289013, 47.4967802 ], + [ 7.6289017999999995, 47.4967778 ], + [ 7.6289028, 47.4967755 ], + [ 7.6289041, 47.4967733 ], + [ 7.6289069, 47.4967684 ], + [ 7.6289103, 47.4967638 ], + [ 7.6289143, 47.4967595 ], + [ 7.6289189, 47.4967553 ], + [ 7.628924, 47.4967515 ], + [ 7.6289256, 47.4967505 ], + [ 7.6289273, 47.4967495 ], + [ 7.628929, 47.4967485 ], + [ 7.6289409, 47.4967418 ], + [ 7.628943, 47.4967407 ], + [ 7.628945, 47.4967396 ], + [ 7.6289470999999995, 47.4967386 ], + [ 7.6289502, 47.4967359 ], + [ 7.6289529, 47.4967331 ], + [ 7.6289551, 47.49673 ], + [ 7.6289568, 47.4967268 ], + [ 7.6289578, 47.4967231 ], + [ 7.6289596, 47.4967195 ], + [ 7.628962, 47.4967161 ], + [ 7.6289652, 47.496713 ], + [ 7.6289689, 47.4967102 ], + [ 7.6289732, 47.4967077 ], + [ 7.628978, 47.4967057 ], + [ 7.6289831, 47.4967042 ], + [ 7.6289974, 47.4966996 ], + [ 7.6289955, 47.4966971 ], + [ 7.628993, 47.4966948 ], + [ 7.62899, 47.4966929 ], + [ 7.6289866, 47.4966913 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns235", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Ermitage - Chilchholz", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Ermitage - Chilchholz", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Ermitage - Chilchholz", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Ermitage - Chilchholz", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8105197, 47.4082562 ], + [ 7.810755, 47.4083437 ], + [ 7.8111437, 47.408176 ], + [ 7.8108595, 47.407933 ], + [ 7.810763, 47.4078504 ], + [ 7.8106846999999995, 47.4077834 ], + [ 7.8106421, 47.407747 ], + [ 7.810594, 47.4077003 ], + [ 7.810563, 47.4076615 ], + [ 7.8105378, 47.4076208 ], + [ 7.8105146, 47.4075679 ], + [ 7.8101196999999996, 47.4076275 ], + [ 7.8101565, 47.4078551 ], + [ 7.8102578, 47.407967 ], + [ 7.8104169, 47.4081426 ], + [ 7.8105197, 47.4082562 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr126", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Stiller", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Stiller", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Stiller", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Stiller", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.1666372, 46.2953281 ], + [ 6.1664175, 46.2953558 ], + [ 6.1670367, 46.295079 ], + [ 6.167901, 46.2942131 ], + [ 6.1681902, 46.2932841 ], + [ 6.1685614, 46.2929123 ], + [ 6.168597, 46.292922 ], + [ 6.1686691, 46.2929251 ], + [ 6.1686695, 46.2929252 ], + [ 6.169891, 46.2929809 ], + [ 6.1699973, 46.2929741 ], + [ 6.1708807, 46.2928177 ], + [ 6.1712279, 46.2927591 ], + [ 6.1722694, 46.2923114 ], + [ 6.1730584, 46.2916615 ], + [ 6.1735169, 46.2908738 ], + [ 6.1735443, 46.2905932 ], + [ 6.1740454, 46.2899635 ], + [ 6.1742746, 46.2891303 ], + [ 6.1742771, 46.2890745 ], + [ 6.1740279, 46.2880383 ], + [ 6.1735567, 46.2875137 ], + [ 6.1735312, 46.287476 ], + [ 6.1735062, 46.2874575 ], + [ 6.1733583, 46.2872928 ], + [ 6.1734745, 46.2870666 ], + [ 6.173508, 46.2862205 ], + [ 6.1735036, 46.2861973 ], + [ 6.1731413, 46.285451 ], + [ 6.1731027, 46.2853559 ], + [ 6.1730875, 46.2853401 ], + [ 6.1730233, 46.2852078 ], + [ 6.1727445, 46.2849848 ], + [ 6.1724224, 46.2846511 ], + [ 6.1721256, 46.2844896 ], + [ 6.1720372, 46.2844188 ], + [ 6.1719206, 46.284378 ], + [ 6.1714601, 46.2841274 ], + [ 6.170311, 46.2838367 ], + [ 6.1699296, 46.2838276 ], + [ 6.1698852, 46.2838066 ], + [ 6.1696631, 46.2837744 ], + [ 6.1700825, 46.2833542 ], + [ 6.1704029, 46.2823249 ], + [ 6.1701852, 46.2814961 ], + [ 6.1707684, 46.2809162 ], + [ 6.1709027, 46.2807037 ], + [ 6.1709499, 46.2806569 ], + [ 6.1709792, 46.2806106 ], + [ 6.1710502, 46.2804237 ], + [ 6.1711132, 46.2803471 ], + [ 6.1712021, 46.2801672 ], + [ 6.1716711, 46.2796971 ], + [ 6.1719914, 46.2786678 ], + [ 6.1719196, 46.2783944 ], + [ 6.1719503, 46.2783636 ], + [ 6.1729426, 46.2779198 ], + [ 6.1738065, 46.2770539 ], + [ 6.1741268, 46.2760246 ], + [ 6.1739741, 46.2754434 ], + [ 6.1740262, 46.2753932 ], + [ 6.1743958, 46.2745399 ], + [ 6.1743445, 46.2736496 ], + [ 6.173878, 46.2728195 ], + [ 6.1730471, 46.2721399 ], + [ 6.1730197, 46.2721238 ], + [ 6.1725236, 46.2718765 ], + [ 6.1724944, 46.2718643 ], + [ 6.1723198, 46.271791 ], + [ 6.1722984, 46.2717819 ], + [ 6.1721055, 46.2717334 ], + [ 6.1720692, 46.2717106 ], + [ 6.1720239, 46.2716901 ], + [ 6.1706192, 46.2712989 ], + [ 6.1691055, 46.271309 ], + [ 6.1677118, 46.2717189 ], + [ 6.1666491, 46.2724664 ], + [ 6.1666387, 46.2724773 ], + [ 6.1661672, 46.2722149 ], + [ 6.1647097, 46.2719202 ], + [ 6.1632004, 46.2720346 ], + [ 6.1618692, 46.2725408 ], + [ 6.1618627, 46.2725446 ], + [ 6.1618626, 46.2725447 ], + [ 6.1617763, 46.2725949 ], + [ 6.1612893, 46.2729832 ], + [ 6.1604282, 46.27257 ], + [ 6.158944, 46.2723477 ], + [ 6.1574501, 46.2725363 ], + [ 6.1561739, 46.2731069 ], + [ 6.1553097, 46.2739727 ], + [ 6.1549891, 46.2750019 ], + [ 6.1552609, 46.2760379 ], + [ 6.1560838, 46.2769229 ], + [ 6.1565975, 46.2771694 ], + [ 6.1565654, 46.2772905 ], + [ 6.1566308, 46.2775028 ], + [ 6.1566246, 46.2775695 ], + [ 6.1567906, 46.2780217 ], + [ 6.1568059, 46.2780712 ], + [ 6.1566921, 46.2783996 ], + [ 6.1566225, 46.2785288 ], + [ 6.1566171, 46.2786161 ], + [ 6.1564851, 46.2789971 ], + [ 6.1565701, 46.2793733 ], + [ 6.1564123, 46.2798799 ], + [ 6.1566842, 46.2809159 ], + [ 6.1575072, 46.2818008 ], + [ 6.1586312, 46.2823402 ], + [ 6.1586682, 46.2824809 ], + [ 6.1583491, 46.2824331 ], + [ 6.1568549, 46.2826216 ], + [ 6.1555785, 46.2831922 ], + [ 6.1547141, 46.284058 ], + [ 6.1543935, 46.2850873 ], + [ 6.1546653, 46.2861232 ], + [ 6.1547329, 46.2861959 ], + [ 6.1546089, 46.2863201 ], + [ 6.1542882, 46.2873493 ], + [ 6.15456, 46.2883853 ], + [ 6.1553831, 46.2892703 ], + [ 6.1566321, 46.2898695 ], + [ 6.1581168, 46.2900918 ], + [ 6.1588018, 46.2900054 ], + [ 6.1589037, 46.2903938 ], + [ 6.1592879, 46.2908069 ], + [ 6.1592075, 46.2908875 ], + [ 6.1588868, 46.2919167 ], + [ 6.1591207, 46.2928075 ], + [ 6.1585272, 46.2930309 ], + [ 6.1575739, 46.2938432 ], + [ 6.1573923, 46.2942612 ], + [ 6.1563235, 46.2937484 ], + [ 6.1548387, 46.2935261 ], + [ 6.1533442, 46.2937146 ], + [ 6.1520674, 46.2942851 ], + [ 6.1512029, 46.2951509 ], + [ 6.150882, 46.2961802 ], + [ 6.1509877, 46.2965829 ], + [ 6.1504845, 46.2973297 ], + [ 6.1503353, 46.298168 ], + [ 6.1505673, 46.2989971 ], + [ 6.1511578, 46.299736 ], + [ 6.1512197, 46.2997909 ], + [ 6.1518393, 46.3001916 ], + [ 6.1533809999999995, 46.2991589 ], + [ 6.1554433, 46.2986959 ], + [ 6.1573507, 46.2982631 ], + [ 6.1592196, 46.2978126 ], + [ 6.1587927, 46.2973537 ], + [ 6.1594611, 46.2976474 ], + [ 6.1596953, 46.2976889 ], + [ 6.1626661, 46.2966744 ], + [ 6.165304, 46.2957651 ], + [ 6.1666372, 46.2953281 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-1", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.9201138, 46.1393669 ], + [ 8.9201188, 46.1392969 ], + [ 8.9200308, 46.1394593 ], + [ 8.9200068, 46.1398914 ], + [ 8.9198624, 46.1399155 ], + [ 8.9197427, 46.1396231 ], + [ 8.919884, 46.1393322 ], + [ 8.9199284, 46.1392159 ], + [ 8.9199926, 46.1391554 ], + [ 8.9201188, 46.1392969 ], + [ 8.9201728, 46.1393017 ], + [ 8.921167, 46.1393926 ], + [ 8.9213777, 46.1388163 ], + [ 8.9215665, 46.138748 ], + [ 8.9219207, 46.1386623 ], + [ 8.9219507, 46.1386223 ], + [ 8.9215206, 46.1385056 ], + [ 8.9215222, 46.1384912 ], + [ 8.9215274, 46.138442 ], + [ 8.9215419, 46.1382592 ], + [ 8.9215644, 46.1381972 ], + [ 8.9216842, 46.1380156 ], + [ 8.9217886, 46.137789 ], + [ 8.9218172, 46.1376892 ], + [ 8.9218485, 46.1376318 ], + [ 8.9219077, 46.1375298 ], + [ 8.9222202, 46.1372647 ], + [ 8.9216884, 46.1366936 ], + [ 8.9211908, 46.1366676 ], + [ 8.9208911, 46.1366708 ], + [ 8.9205095, 46.1366745 ], + [ 8.9202597, 46.1366761 ], + [ 8.9200659, 46.1366778 ], + [ 8.9200249, 46.1366203 ], + [ 8.9198599, 46.1366448 ], + [ 8.9197118, 46.1366199 ], + [ 8.919558, 46.1365951 ], + [ 8.9196105, 46.136438 ], + [ 8.9196641, 46.1363383 ], + [ 8.9193817, 46.1363301 ], + [ 8.9192971, 46.1362504 ], + [ 8.9190052, 46.1359755 ], + [ 8.9187867, 46.1357759 ], + [ 8.9187372, 46.1357306 ], + [ 8.9187182, 46.1357133 ], + [ 8.9188777, 46.135434 ], + [ 8.9189442, 46.1353714 ], + [ 8.9189502, 46.1353584 ], + [ 8.9189071, 46.1353582 ], + [ 8.9182713, 46.1353564 ], + [ 8.9182724, 46.1350593 ], + [ 8.9142053, 46.1350514 ], + [ 8.9141859, 46.1350514 ], + [ 8.9142294, 46.135252 ], + [ 8.9143364, 46.1353668 ], + [ 8.9143581, 46.1357306 ], + [ 8.9144036, 46.135879 ], + [ 8.9141765, 46.1361554 ], + [ 8.9139893, 46.1362308 ], + [ 8.9139756, 46.1362363 ], + [ 8.9139259, 46.136283 ], + [ 8.9137299, 46.1363987 ], + [ 8.9135795, 46.1364495 ], + [ 8.9136007, 46.1364821 ], + [ 8.9139299, 46.1369898 ], + [ 8.9136376, 46.1370667 ], + [ 8.9135396, 46.137103 ], + [ 8.9134953, 46.1371274 ], + [ 8.9134771, 46.1371412 ], + [ 8.9134581, 46.1371592 ], + [ 8.9134358, 46.1372006 ], + [ 8.9134006, 46.1373217 ], + [ 8.913394199999999, 46.1373323 ], + [ 8.9133874, 46.1373428 ], + [ 8.9133802, 46.1373531 ], + [ 8.9133725, 46.1373633 ], + [ 8.9133644, 46.1373733 ], + [ 8.913355899999999, 46.1373832 ], + [ 8.913347, 46.1373929 ], + [ 8.9133383, 46.1374018 ], + [ 8.9133292, 46.1374106 ], + [ 8.9133197, 46.1374192 ], + [ 8.91331, 46.1374277 ], + [ 8.9132999, 46.1374359 ], + [ 8.9132895, 46.137444 ], + [ 8.9132788, 46.1374518 ], + [ 8.9132703, 46.1374591 ], + [ 8.9132615, 46.1374662 ], + [ 8.9132522, 46.137473 ], + [ 8.913242499999999, 46.1374795 ], + [ 8.9132325, 46.1374858 ], + [ 8.9132221, 46.1374918 ], + [ 8.9132113, 46.1374974 ], + [ 8.9131931, 46.137506 ], + [ 8.913174099999999, 46.1375137 ], + [ 8.9131545, 46.1375206 ], + [ 8.9131342, 46.1375265 ], + [ 8.9131134, 46.1375315 ], + [ 8.9130921, 46.1375354 ], + [ 8.9130705, 46.1375385 ], + [ 8.9128093, 46.1375607 ], + [ 8.9127316, 46.1375571 ], + [ 8.912689, 46.1375518 ], + [ 8.9125985, 46.1375368 ], + [ 8.912581, 46.1375354 ], + [ 8.9119697, 46.1374589 ], + [ 8.9117748, 46.1375032 ], + [ 8.9115416, 46.1379557 ], + [ 8.9115944, 46.1380094 ], + [ 8.9117955, 46.1382138 ], + [ 8.911787499999999, 46.1382196 ], + [ 8.9117792, 46.1382252 ], + [ 8.9117705, 46.1382305 ], + [ 8.9117615, 46.1382355 ], + [ 8.9117522, 46.1382403 ], + [ 8.9117427, 46.1382448 ], + [ 8.9117328, 46.138249 ], + [ 8.9117271, 46.1382512 ], + [ 8.9117214, 46.1382534 ], + [ 8.9117156, 46.1382554 ], + [ 8.9117097, 46.1382573 ], + [ 8.9117037, 46.1382591 ], + [ 8.9116977, 46.1382609 ], + [ 8.9116916, 46.1382625 ], + [ 8.9116853, 46.1382642 ], + [ 8.9116788, 46.1382658 ], + [ 8.9116723, 46.1382672 ], + [ 8.9116657, 46.1382684 ], + [ 8.9116591, 46.1382694 ], + [ 8.9116524, 46.1382703 ], + [ 8.9116456, 46.138271 ], + [ 8.9116388, 46.1382715 ], + [ 8.9116321, 46.1382719 ], + [ 8.9116253, 46.138272 ], + [ 8.9116185, 46.138272 ], + [ 8.9116117, 46.1382718 ], + [ 8.9116049, 46.1382714 ], + [ 8.911598099999999, 46.1382709 ], + [ 8.9115145, 46.1382678 ], + [ 8.9115002, 46.1382688 ], + [ 8.9114859, 46.1382702 ], + [ 8.9114717, 46.138272 ], + [ 8.9114577, 46.1382742 ], + [ 8.9114438, 46.1382768 ], + [ 8.9114301, 46.1382798 ], + [ 8.9114165, 46.1382833 ], + [ 8.9112099, 46.1383403 ], + [ 8.9112007, 46.1383427 ], + [ 8.9111913, 46.1383449 ], + [ 8.9111819, 46.138347 ], + [ 8.9111724, 46.1383489 ], + [ 8.9111628, 46.1383506 ], + [ 8.9111532, 46.1383521 ], + [ 8.9111435, 46.1383534 ], + [ 8.9111338, 46.1383546 ], + [ 8.9111242, 46.1383556 ], + [ 8.9111145, 46.1383564 ], + [ 8.9111047, 46.138357 ], + [ 8.911095, 46.1383574 ], + [ 8.9110852, 46.1383577 ], + [ 8.9110754, 46.1383578 ], + [ 8.9110655, 46.1383582 ], + [ 8.9110556, 46.1383584 ], + [ 8.9110457, 46.1383585 ], + [ 8.9110358, 46.1383583 ], + [ 8.9110259, 46.138358 ], + [ 8.9110161, 46.1383575 ], + [ 8.9110062, 46.1383568 ], + [ 8.9109981, 46.1383561 ], + [ 8.91099, 46.1383553 ], + [ 8.9109819, 46.1383543 ], + [ 8.9109738, 46.1383532 ], + [ 8.9109658, 46.138352 ], + [ 8.9109578, 46.1383507 ], + [ 8.9109499, 46.1383493 ], + [ 8.9106399, 46.1383084 ], + [ 8.9104937, 46.1382874 ], + [ 8.910435, 46.1382852 ], + [ 8.910378, 46.1382868 ], + [ 8.9103217, 46.1382961 ], + [ 8.9102682, 46.1383115 ], + [ 8.9099639, 46.1384141 ], + [ 8.909957, 46.1384159 ], + [ 8.90995, 46.1384177 ], + [ 8.909943, 46.1384194 ], + [ 8.9099359, 46.138421 ], + [ 8.9099288, 46.1384225 ], + [ 8.9099216, 46.1384239 ], + [ 8.9099144, 46.1384252 ], + [ 8.9099071, 46.1384265 ], + [ 8.9098996, 46.1384277 ], + [ 8.9098922, 46.1384287 ], + [ 8.9098848, 46.1384297 ], + [ 8.9098773, 46.1384306 ], + [ 8.9098698, 46.1384315 ], + [ 8.9098622, 46.1384322 ], + [ 8.909855, 46.138433 ], + [ 8.9098478, 46.1384337 ], + [ 8.9098406, 46.1384342 ], + [ 8.9098333, 46.1384347 ], + [ 8.909826, 46.138435 ], + [ 8.9098187, 46.1384352 ], + [ 8.9098114, 46.1384353 ], + [ 8.909804, 46.1384353 ], + [ 8.9097966, 46.1384351 ], + [ 8.9097892, 46.1384348 ], + [ 8.9097818, 46.1384344 ], + [ 8.9097744, 46.1384339 ], + [ 8.909767, 46.1384333 ], + [ 8.9097597, 46.1384325 ], + [ 8.9097524, 46.1384315 ], + [ 8.9097451, 46.1384304 ], + [ 8.9097379, 46.1384293 ], + [ 8.9097306, 46.1384282 ], + [ 8.9097234, 46.138427 ], + [ 8.9097162, 46.1384257 ], + [ 8.909709, 46.1384244 ], + [ 8.9097053, 46.1384237 ], + [ 8.9097017, 46.138423 ], + [ 8.909698, 46.1384223 ], + [ 8.9096944, 46.1384216 ], + [ 8.9096907, 46.1384209 ], + [ 8.9096871, 46.1384202 ], + [ 8.9096835, 46.1384194 ], + [ 8.9095219, 46.1383868 ], + [ 8.909514099999999, 46.138385 ], + [ 8.9095063, 46.1383834 ], + [ 8.9094984, 46.138382 ], + [ 8.9094904, 46.1383807 ], + [ 8.9094823, 46.1383797 ], + [ 8.9094742, 46.1383789 ], + [ 8.9094661, 46.1383783 ], + [ 8.9094579, 46.1383779 ], + [ 8.9094497, 46.1383777 ], + [ 8.9094415, 46.1383777 ], + [ 8.9094333, 46.1383779 ], + [ 8.9094251, 46.1383783 ], + [ 8.9094169, 46.1383789 ], + [ 8.9094088, 46.1383798 ], + [ 8.9090931, 46.1384632 ], + [ 8.9090877, 46.1384649 ], + [ 8.9090822, 46.1384665 ], + [ 8.9090767, 46.138468 ], + [ 8.9090711, 46.1384693 ], + [ 8.9090654, 46.1384706 ], + [ 8.9090597, 46.1384718 ], + [ 8.909054, 46.1384728 ], + [ 8.9090483, 46.1384737 ], + [ 8.9090426, 46.1384745 ], + [ 8.909036799999999, 46.1384752 ], + [ 8.909031, 46.1384758 ], + [ 8.9090252, 46.1384763 ], + [ 8.9090194, 46.1384766 ], + [ 8.9090136, 46.1384769 ], + [ 8.908973, 46.1385681 ], + [ 8.9088869, 46.1387899 ], + [ 8.9088275, 46.1389411 ], + [ 8.9088255, 46.1389461 ], + [ 8.9088237, 46.138951 ], + [ 8.908822, 46.138956 ], + [ 8.9088205, 46.1389611 ], + [ 8.9088191, 46.1389661 ], + [ 8.9088179, 46.1389712 ], + [ 8.9088169, 46.1389763 ], + [ 8.908816, 46.1389814 ], + [ 8.9088152, 46.1389866 ], + [ 8.9088147, 46.1389918 ], + [ 8.9088143, 46.138997 ], + [ 8.9088141, 46.1390022 ], + [ 8.908814, 46.1390074 ], + [ 8.9088141, 46.1390126 ], + [ 8.9088178, 46.1390484 ], + [ 8.908821, 46.1390833 ], + [ 8.9088304, 46.1391869 ], + [ 8.9088397, 46.1392308 ], + [ 8.9088588, 46.1392732 ], + [ 8.9088824, 46.1392969 ], + [ 8.9083824, 46.1395252 ], + [ 8.9084275, 46.1395713 ], + [ 8.9077252, 46.1399113 ], + [ 8.9082138, 46.1399456 ], + [ 8.9083415, 46.1399546 ], + [ 8.9083317, 46.1400417 ], + [ 8.9082462, 46.1407985 ], + [ 8.9082469, 46.1408271 ], + [ 8.9086018, 46.1408439 ], + [ 8.9089498, 46.1408152 ], + [ 8.9091665, 46.1407691 ], + [ 8.9093073, 46.1407392 ], + [ 8.9095786, 46.1407035 ], + [ 8.9099669, 46.1408163 ], + [ 8.9103303, 46.1409579 ], + [ 8.9104412, 46.1410707 ], + [ 8.910427, 46.1413066 ], + [ 8.9104507, 46.1414205 ], + [ 8.9105612, 46.1415191 ], + [ 8.9103108, 46.1423293 ], + [ 8.9089704, 46.1421526 ], + [ 8.9089859, 46.1426707 ], + [ 8.9090904, 46.1428426 ], + [ 8.9094161, 46.1429529 ], + [ 8.9099339, 46.1430426 ], + [ 8.9110767, 46.1432407 ], + [ 8.911237, 46.1425365 ], + [ 8.9135135, 46.1428569 ], + [ 8.9145041, 46.1427998 ], + [ 8.9150004, 46.1428411 ], + [ 8.9152717, 46.1428738 ], + [ 8.9156084, 46.1429024 ], + [ 8.9156118, 46.1429065 ], + [ 8.9165682, 46.1428104 ], + [ 8.9165086, 46.1428123 ], + [ 8.916470799999999, 46.1428082 ], + [ 8.9164354, 46.1428014 ], + [ 8.9164089, 46.1427943 ], + [ 8.9163181, 46.1427592 ], + [ 8.916278, 46.1427499 ], + [ 8.9162423, 46.1427477 ], + [ 8.9162033, 46.142751 ], + [ 8.9160255, 46.1428131 ], + [ 8.9156017, 46.14284 ], + [ 8.9152857, 46.14282 ], + [ 8.9145199, 46.1427165 ], + [ 8.913659299999999, 46.1427196 ], + [ 8.9135851, 46.1427217 ], + [ 8.912423, 46.1425963 ], + [ 8.9124806, 46.142353 ], + [ 8.9129586, 46.1423631 ], + [ 8.9136774, 46.1421879 ], + [ 8.9142303, 46.1421387 ], + [ 8.9147984, 46.1422573 ], + [ 8.916178, 46.1419806 ], + [ 8.9162456, 46.1421571 ], + [ 8.9163344, 46.1421389 ], + [ 8.9164407, 46.1421168 ], + [ 8.9163757, 46.1419245 ], + [ 8.9167423, 46.1419206 ], + [ 8.9171695, 46.141918 ], + [ 8.9176066, 46.1419103 ], + [ 8.9182525, 46.1418307 ], + [ 8.9182875, 46.1418246 ], + [ 8.9189428, 46.1416914 ], + [ 8.919802, 46.1417585 ], + [ 8.9198378, 46.1416397 ], + [ 8.9198692, 46.1415512 ], + [ 8.9192359, 46.1414401 ], + [ 8.9188454, 46.1413098 ], + [ 8.9184368, 46.141196 ], + [ 8.9182365, 46.1411313 ], + [ 8.9182864, 46.1410092 ], + [ 8.9183911, 46.140663 ], + [ 8.9183935, 46.1405744 ], + [ 8.9185729, 46.1402161 ], + [ 8.918342299999999, 46.1401041 ], + [ 8.9186623, 46.1400489 ], + [ 8.9187321, 46.140045 ], + [ 8.9189693, 46.1399994 ], + [ 8.9189948, 46.1399977 ], + [ 8.9190941, 46.1399825 ], + [ 8.9191228, 46.1399739 ], + [ 8.9191494, 46.1399635 ], + [ 8.9191929, 46.1399234 ], + [ 8.9198668, 46.1406003 ], + [ 8.9207022, 46.1403207 ], + [ 8.9203569, 46.1399085 ], + [ 8.9202713, 46.1397864 ], + [ 8.920209, 46.1398187 ], + [ 8.9201485, 46.1396958 ], + [ 8.9201138, 46.1393669 ] + ], + [ + [ 8.9186532, 46.1400164 ], + [ 8.9182351, 46.1400866 ], + [ 8.9180518, 46.1399713 ], + [ 8.9179976, 46.1399377 ], + [ 8.9182189, 46.139744 ], + [ 8.9183834, 46.1395084 ], + [ 8.918603300000001, 46.139654 ], + [ 8.9186186, 46.13964 ], + [ 8.9187998, 46.1394746 ], + [ 8.9188679, 46.1395078 ], + [ 8.9188786, 46.1395139 ], + [ 8.9189322, 46.1395499 ], + [ 8.9189803, 46.139589 ], + [ 8.9190586, 46.1396737 ], + [ 8.9191074, 46.1397248 ], + [ 8.9191324, 46.1397572 ], + [ 8.9191539, 46.1397901 ], + [ 8.9191664, 46.1398258 ], + [ 8.9191678, 46.1398632 ], + [ 8.9191533, 46.1398983 ], + [ 8.9191206, 46.1399268 ], + [ 8.9190734, 46.1399438 ], + [ 8.9190326, 46.1399509 ], + [ 8.91868, 46.140013 ], + [ 8.9186532, 46.1400164 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VBS_8-0", + "country" : "CHE", + "name" : [ + { + "text" : "VBS_8 Monte Ceneri 1", + "lang" : "de-CH" + }, + { + "text" : "VBS_8 Monte Ceneri 1", + "lang" : "fr-CH" + }, + { + "text" : "VBS_8 Monte Ceneri 1", + "lang" : "it-CH" + }, + { + "text" : "VBS_8 Monte Ceneri 1", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "regulationExemption" : "YES", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Eidgenössisches Departement für Verteidigung, Bevölkerungsschutz und Sport (VBS)", + "lang" : "de-CH" + }, + { + "text" : "Département fédéral de la défense, de la protection de la population et des sports (DDPS)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento federale della difesa, della protezione della popolazione e dello sport (DDPS)", + "lang" : "it-CH" + }, + { + "text" : "Federal Department of Defence, Civil Protection and Sport (DDPS)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Lageverfolgungszentrum der Armee LVZ A", + "lang" : "de-CH" + }, + { + "text" : "Centre de suivi de la situation de l’armée, CSS A", + "lang" : "fr-CH" + }, + { + "text" : "Centro di monitoraggio della situazione dell’esercito, Centro mon sit Es", + "lang" : "it-CH" + }, + { + "text" : "Joint Operation Center, JOC", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vtg.admin.ch/en/joint-operations-command", + "email" : "lvz.op@vtg.admin.ch", + "phone" : "+41 58 464 96 43", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.7446149, 46.8093143 ], + [ 6.7621313, 46.8138542 ], + [ 6.7796502, 46.8183915 ], + [ 6.780684, 46.8177423 ], + [ 6.7807318, 46.8177016 ], + [ 6.7806022, 46.8175839 ], + [ 6.7806035, 46.817476 ], + [ 6.7808011, 46.8173871 ], + [ 6.7810263, 46.8171879 ], + [ 6.7810776, 46.8170757 ], + [ 6.7810572, 46.8169407 ], + [ 6.7809289, 46.8167195 ], + [ 6.7808397, 46.8165796 ], + [ 6.7808196, 46.8164112 ], + [ 6.7808454, 46.8162468 ], + [ 6.7809957, 46.8160749 ], + [ 6.7813423, 46.8158528 ], + [ 6.7816343, 46.8156864 ], + [ 6.7818654, 46.8155348 ], + [ 6.7820749, 46.8154091 ], + [ 6.7823132, 46.8156103 ], + [ 6.782538, 46.8158445 ], + [ 6.7826971, 46.8158273 ], + [ 6.7827215, 46.8158226 ], + [ 6.7828465, 46.8157985 ], + [ 6.7828796, 46.8157013 ], + [ 6.7829048, 46.8155869 ], + [ 6.7828798, 46.815421 ], + [ 6.7828129, 46.8152666 ], + [ 6.7827125, 46.8151065 ], + [ 6.782604, 46.8150037 ], + [ 6.7824288, 46.8148608 ], + [ 6.7821121, 46.8146494 ], + [ 6.7815788, 46.8143297 ], + [ 6.7802785, 46.8135987 ], + [ 6.7800367999999995, 46.8134731 ], + [ 6.7797114, 46.8133647 ], + [ 6.7794697, 46.8133078 ], + [ 6.7792618000000004, 46.8132394 ], + [ 6.778936, 46.8130967 ], + [ 6.7785191000000005, 46.8128396 ], + [ 6.7779941, 46.8124453 ], + [ 6.7777774, 46.8122912 ], + [ 6.7774939, 46.8121713 ], + [ 6.7772521999999995, 46.81212 ], + [ 6.7767192, 46.8120461 ], + [ 6.7762939, 46.8120065 ], + [ 6.7761937, 46.8120351 ], + [ 6.7755948, 46.8125905 ], + [ 6.7753836, 46.8127989 ], + [ 6.7740159, 46.8122412 ], + [ 6.7738516, 46.8121714 ], + [ 6.7732992, 46.8120001 ], + [ 6.7727942, 46.811591 ], + [ 6.7724692, 46.8113293 ], + [ 6.7717456, 46.810752 ], + [ 6.7712718, 46.8103685 ], + [ 6.7705355, 46.8097746 ], + [ 6.7704884, 46.8097388 ], + [ 6.7698739, 46.8092572 ], + [ 6.7695396, 46.8089954 ], + [ 6.7690804, 46.8086336 ], + [ 6.7684075, 46.8081011 ], + [ 6.768382, 46.8080823 ], + [ 6.7703291, 46.8067852 ], + [ 6.7707147, 46.8065053 ], + [ 6.7710161, 46.8064867 ], + [ 6.7709094, 46.8064199 ], + [ 6.770869, 46.8063944 ], + [ 6.7700230999999995, 46.8058596 ], + [ 6.7697131, 46.8056628 ], + [ 6.7697059, 46.8056582 ], + [ 6.7695449, 46.805556 ], + [ 6.7694595, 46.8055018 ], + [ 6.7692319, 46.8053608 ], + [ 6.7688468, 46.8051222 ], + [ 6.7682471, 46.8047676 ], + [ 6.767567, 46.8043794 ], + [ 6.7672539, 46.8042022 ], + [ 6.7670525, 46.8040883 ], + [ 6.7669905, 46.8040532 ], + [ 6.7668181, 46.8039557 ], + [ 6.7660105999999995, 46.8034971 ], + [ 6.7656311, 46.8032863 ], + [ 6.7651053999999995, 46.8029803 ], + [ 6.7646653, 46.8026897 ], + [ 6.7646259, 46.8026558 ], + [ 6.7645768, 46.8026136 ], + [ 6.7644545, 46.8025062 ], + [ 6.7642181, 46.8023003 ], + [ 6.7641694999999995, 46.8022579 ], + [ 6.7640394, 46.8021446 ], + [ 6.7635171, 46.801664099999996 ], + [ 6.7631768999999995, 46.8013566 ], + [ 6.7628221, 46.8010988 ], + [ 6.7628103, 46.8010902 ], + [ 6.7626396, 46.8009662 ], + [ 6.7622146, 46.800704 ], + [ 6.7617586, 46.8004592 ], + [ 6.7612898, 46.8002304 ], + [ 6.7608044, 46.7999934 ], + [ 6.7601394, 46.7996682 ], + [ 6.7596077, 46.7994081 ], + [ 6.759513, 46.7993583 ], + [ 6.7592085, 46.7991979 ], + [ 6.7592068, 46.799197 ], + [ 6.7590417, 46.7991101 ], + [ 6.7587981, 46.7989818 ], + [ 6.7586417999999995, 46.7989046 ], + [ 6.7584223, 46.7987962 ], + [ 6.7578054, 46.7985085 ], + [ 6.7577098, 46.7986249 ], + [ 6.7572644, 46.7991672 ], + [ 6.757247, 46.7991891 ], + [ 6.7572238, 46.7992182 ], + [ 6.7571981999999995, 46.7992487 ], + [ 6.7571656, 46.7992875 ], + [ 6.7571658, 46.7993768 ], + [ 6.7571663, 46.7995977 ], + [ 6.7570644, 46.7995994 ], + [ 6.7564717, 46.7996045 ], + [ 6.7558538, 46.7996126 ], + [ 6.7552744, 46.7996357 ], + [ 6.7552695, 46.7996361 ], + [ 6.754641, 46.7996879 ], + [ 6.7539794, 46.7997664 ], + [ 6.7531541, 46.7998999 ], + [ 6.7523134, 46.8000554 ], + [ 6.7515564, 46.8002129 ], + [ 6.7514033, 46.8002469 ], + [ 6.7513268, 46.8002639 ], + [ 6.7511434, 46.8003047 ], + [ 6.7510781, 46.8003217 ], + [ 6.7510791, 46.8003234 ], + [ 6.7498377, 46.8006587 ], + [ 6.7494826, 46.8007546 ], + [ 6.7487835, 46.8009648 ], + [ 6.7483383, 46.8010987 ], + [ 6.7475021, 46.8013505 ], + [ 6.7475018, 46.8013506 ], + [ 6.7474505, 46.8013661 ], + [ 6.7470949000000005, 46.8014734 ], + [ 6.7464474, 46.8016689 ], + [ 6.7454248, 46.8019766 ], + [ 6.7453705, 46.8019679 ], + [ 6.7453044, 46.8019574 ], + [ 6.7452954, 46.8019603 ], + [ 6.7451984, 46.8019911 ], + [ 6.7450641000000005, 46.8020338 ], + [ 6.7450499, 46.8020383 ], + [ 6.7450232, 46.8020467 ], + [ 6.7449774, 46.8020612 ], + [ 6.7448037, 46.8021159 ], + [ 6.7446202, 46.8021739 ], + [ 6.7445727, 46.802189 ], + [ 6.7445078, 46.8022095 ], + [ 6.7443580999999995, 46.8022568 ], + [ 6.7442721, 46.802284 ], + [ 6.7436823, 46.8024701 ], + [ 6.7436793999999995, 46.802471 ], + [ 6.7434638, 46.8025391 ], + [ 6.7433926, 46.8025616 ], + [ 6.7421391, 46.8029747 ], + [ 6.7415111, 46.803165 ], + [ 6.7413059, 46.8032271 ], + [ 6.7412239, 46.8032403 ], + [ 6.7411038, 46.8032595 ], + [ 6.7411357, 46.803295 ], + [ 6.7413471, 46.8035296 ], + [ 6.7414243, 46.8036156 ], + [ 6.7416609, 46.803879 ], + [ 6.741702, 46.8039247 ], + [ 6.7417067, 46.80393 ], + [ 6.7416751999999995, 46.8039436 ], + [ 6.7415576999999995, 46.8039945 ], + [ 6.7410641, 46.8045052 ], + [ 6.7409114, 46.8045157 ], + [ 6.7408052, 46.8045531 ], + [ 6.7406581, 46.8046003 ], + [ 6.7406071, 46.8046166 ], + [ 6.7405498999999995, 46.8046534 ], + [ 6.7404869, 46.8046938 ], + [ 6.7404612, 46.8047104 ], + [ 6.7402975, 46.8046956 ], + [ 6.7401634, 46.8046097 ], + [ 6.7401511, 46.8046018 ], + [ 6.7401401, 46.8045948 ], + [ 6.7401181999999995, 46.8045808 ], + [ 6.7399736, 46.8045607 ], + [ 6.7399227, 46.8047425 ], + [ 6.7399055, 46.8049959 ], + [ 6.7399945, 46.8052178 ], + [ 6.7400742000000005, 46.8053797 ], + [ 6.7401014, 46.8054347 ], + [ 6.7401032, 46.8054964 ], + [ 6.7401049, 46.8055547 ], + [ 6.7401056, 46.8055798 ], + [ 6.7401219, 46.8056722 ], + [ 6.7401371999999995, 46.8057592 ], + [ 6.740157, 46.8058724 ], + [ 6.7401727000000005, 46.8059854 ], + [ 6.7401834, 46.8060634 ], + [ 6.7400491, 46.8060857 ], + [ 6.7399365, 46.8060925 ], + [ 6.7397915, 46.8061014 ], + [ 6.7394145, 46.80611 ], + [ 6.7393111, 46.8061905 ], + [ 6.7392537, 46.8062176 ], + [ 6.7392216, 46.8062215 ], + [ 6.7392309, 46.8062511 ], + [ 6.7390723999999995, 46.8062867 ], + [ 6.7390723, 46.8062866 ], + [ 6.7389289, 46.8063201 ], + [ 6.7387243, 46.8065712 ], + [ 6.737889, 46.8076146 ], + [ 6.741872, 46.8086042 ], + [ 6.7446149, 46.8093143 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "WZV0038", + "country" : "CHE", + "name" : [ + { + "text" : "Wasser- und Zugvogelreservat Yvonand jusqu'à Cheyres", + "lang" : "de-CH" + }, + { + "text" : "Réserve d'oiseaux d'eau et de migrateurs Yvonand jusqu'à Cheyres", + "lang" : "fr-CH" + }, + { + "text" : "Riserva di uccelli acquatici e migratori Yvonand jusqu'à Cheyres", + "lang" : "it-CH" + }, + { + "text" : "Water Bird and Migratory Bird Reserves Yvonand jusqu'à Cheyres", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.865364, 46.9605407 ], + [ 6.866348, 46.959933 ], + [ 6.8665281, 46.9600472 ], + [ 6.8666816, 46.9599464 ], + [ 6.8665121, 46.9598268 ], + [ 6.8670264, 46.9595262 ], + [ 6.867686, 46.9598911 ], + [ 6.8679393, 46.9596756 ], + [ 6.8680804, 46.9597492 ], + [ 6.8687895999999995, 46.9591581 ], + [ 6.8679235, 46.958686900000004 ], + [ 6.8678953, 46.9585042 ], + [ 6.8623127, 46.9554527 ], + [ 6.8626044, 46.955205 ], + [ 6.8618965, 46.9548191 ], + [ 6.8614867, 46.9551715 ], + [ 6.860963, 46.9548837 ], + [ 6.8605839, 46.9551966 ], + [ 6.8604794, 46.9551421 ], + [ 6.8596467, 46.9558467 ], + [ 6.8623935, 46.9573458 ], + [ 6.8627495, 46.9572289 ], + [ 6.8655355, 46.9587586 ], + [ 6.8645478, 46.9594571 ], + [ 6.8643237, 46.9597726 ], + [ 6.865364, 46.9605407 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSGN002", + "country" : "CHE", + "name" : [ + { + "text" : "LSGN Neuchâtel (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSGN Neuchâtel (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSGN Neuchâtel (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSGN Neuchâtel (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Neuchâtel Airport", + "lang" : "de-CH" + }, + { + "text" : "Neuchâtel Airport", + "lang" : "fr-CH" + }, + { + "text" : "Neuchâtel Airport", + "lang" : "it-CH" + }, + { + "text" : "Neuchâtel Airport", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Chef d'aérodrome", + "lang" : "de-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "fr-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "it-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Arsène Gigon", + "lang" : "de-CH" + }, + { + "text" : "Arsène Gigon", + "lang" : "fr-CH" + }, + { + "text" : "Arsène Gigon", + "lang" : "it-CH" + }, + { + "text" : "Arsène Gigon", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.neuchatel-airport.ch/?lang=en", + "email" : "admin@neuchatel-airport.ch", + "phone" : "0041328413155", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P01DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5227096, 47.5439662 ], + [ 7.5224209, 47.5441609 ], + [ 7.5223754, 47.5441916 ], + [ 7.5223986, 47.5442145 ], + [ 7.5224922, 47.544307 ], + [ 7.5225335, 47.5443409 ], + [ 7.5225901, 47.5443908 ], + [ 7.5226329, 47.5444297 ], + [ 7.5226581, 47.5444541 ], + [ 7.5226775, 47.5444791 ], + [ 7.5226942, 47.5445094 ], + [ 7.5227022, 47.5445439 ], + [ 7.5227044, 47.5445745 ], + [ 7.5227031, 47.5445947 ], + [ 7.5227041, 47.5446224 ], + [ 7.5227104, 47.5446729 ], + [ 7.5226765, 47.5446944 ], + [ 7.5226876, 47.5447894 ], + [ 7.5227021, 47.5448007 ], + [ 7.5232735, 47.544335 ], + [ 7.5231654, 47.5442643 ], + [ 7.523132, 47.5442425 ], + [ 7.523104, 47.5442242 ], + [ 7.5229543, 47.5441265 ], + [ 7.5228071, 47.5440305 ], + [ 7.5227096, 47.5439662 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns074", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Allschwilerwald", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Allschwilerwald", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Allschwilerwald", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Allschwilerwald", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6613176, 47.5131998 ], + [ 7.6612418, 47.5132047 ], + [ 7.6610777, 47.5132234 ], + [ 7.6610937, 47.5132506 ], + [ 7.6613232, 47.5136386 ], + [ 7.661337, 47.5136619 ], + [ 7.6615078, 47.5136545 ], + [ 7.6615893, 47.5136594 ], + [ 7.6624583, 47.5137116 ], + [ 7.6626934, 47.5137272 ], + [ 7.6632404, 47.5137806 ], + [ 7.6635537, 47.5137863 ], + [ 7.6638149, 47.5137585 ], + [ 7.6643171, 47.5136825 ], + [ 7.6641464, 47.5132469 ], + [ 7.6649081, 47.5130894 ], + [ 7.6659816, 47.5129487 ], + [ 7.6660341, 47.5129453 ], + [ 7.6661241, 47.5129403 ], + [ 7.6662198, 47.5129324 ], + [ 7.6662942, 47.5129245 ], + [ 7.6663826, 47.5129176 ], + [ 7.6664755, 47.5129107 ], + [ 7.666564, 47.5129037 ], + [ 7.6666512, 47.5128957 ], + [ 7.6667368, 47.5128887 ], + [ 7.6668183, 47.5128799 ], + [ 7.6668924, 47.5128672 ], + [ 7.6669488, 47.5128555 ], + [ 7.6670131999999995, 47.5128341 ], + [ 7.6670601, 47.5128136 ], + [ 7.6671086, 47.5127845 ], + [ 7.6671741, 47.5127467 ], + [ 7.6672268, 47.5127194 ], + [ 7.6672823999999995, 47.5126825 ], + [ 7.6673423, 47.5126505 ], + [ 7.6673964, 47.5126156 ], + [ 7.6674207, 47.5126039 ], + [ 7.667524, 47.512569 ], + [ 7.6677281, 47.5125222 ], + [ 7.667875, 47.512486 ], + [ 7.6680563, 47.512445 ], + [ 7.668259, 47.5124069 ], + [ 7.6684361, 47.5123794 ], + [ 7.6685102, 47.5123658 ], + [ 7.6686502, 47.5123422 ], + [ 7.6687851, 47.5123303 ], + [ 7.6688837, 47.5123244 ], + [ 7.6689279, 47.512321299999996 ], + [ 7.6689851, 47.5123096 ], + [ 7.6690599, 47.5122968 ], + [ 7.6690547, 47.5122866 ], + [ 7.6688075, 47.5117982 ], + [ 7.6684456, 47.5118011 ], + [ 7.6683409000000005, 47.5117605 ], + [ 7.6682555, 47.5117851 ], + [ 7.668163, 47.5117901 ], + [ 7.6681567, 47.5117629 ], + [ 7.668339, 47.511657 ], + [ 7.6683008, 47.5116228 ], + [ 7.6682357, 47.5116053 ], + [ 7.6677903, 47.51158 ], + [ 7.667668, 47.5115904 ], + [ 7.6675514, 47.5116214 ], + [ 7.6668427999999995, 47.5118773 ], + [ 7.6666698, 47.5119291 ], + [ 7.6664826999999995, 47.511961 ], + [ 7.6663058, 47.5119686 ], + [ 7.6654101, 47.5119695 ], + [ 7.6652261, 47.5119887 ], + [ 7.6650352, 47.5120261 ], + [ 7.6644666, 47.5122053 ], + [ 7.6644197, 47.5122148 ], + [ 7.6644303, 47.5122469 ], + [ 7.6645944, 47.512745 ], + [ 7.6646044, 47.5127753 ], + [ 7.664004, 47.5129192 ], + [ 7.6638646999999995, 47.5129618 ], + [ 7.6638265, 47.5129816 ], + [ 7.6638175, 47.5129543 ], + [ 7.6635452, 47.5121342 ], + [ 7.6635352, 47.5121042 ], + [ 7.663408, 47.5120793 ], + [ 7.6632016, 47.5120479 ], + [ 7.6629670999999995, 47.5120212 ], + [ 7.662959, 47.5120208 ], + [ 7.662969, 47.5120511 ], + [ 7.6631543, 47.5126076 ], + [ 7.6634239, 47.5134175 ], + [ 7.6634304, 47.5134372 ], + [ 7.6633878, 47.513459 ], + [ 7.663174, 47.5135419 ], + [ 7.6632092, 47.5135153 ], + [ 7.6632062, 47.5134803 ], + [ 7.6631693, 47.5134541 ], + [ 7.6630198, 47.5133944 ], + [ 7.6629138999999995, 47.5133399 ], + [ 7.662817, 47.5132784 ], + [ 7.6626909, 47.5132291 ], + [ 7.6625512, 47.5132025 ], + [ 7.6624048, 47.5131893 ], + [ 7.6614371, 47.513192 ], + [ 7.6613176, 47.5131998 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns318", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Zinggibrunn", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Zinggibrunn", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Zinggibrunn", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Zinggibrunn", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.061342, 46.8320236 ], + [ 7.06123, 46.8319485 ], + [ 7.0611405, 46.8318829 ], + [ 7.0609919, 46.8318123 ], + [ 7.0608044, 46.8319115 ], + [ 7.060576, 46.8319959 ], + [ 7.0604433, 46.8320278 ], + [ 7.0603982, 46.8321216 ], + [ 7.0601846, 46.8320739 ], + [ 7.0600773, 46.8320875 ], + [ 7.0598425, 46.8320935 ], + [ 7.0598379, 46.8322883 ], + [ 7.0597813, 46.8324126 ], + [ 7.0597841, 46.8324557 ], + [ 7.0597849, 46.8324591 ], + [ 7.0597442, 46.8326571 ], + [ 7.0597533, 46.8328306 ], + [ 7.0596739, 46.8327881 ], + [ 7.0596411, 46.8327706 ], + [ 7.059649, 46.8327815 ], + [ 7.0596459, 46.832801 ], + [ 7.0596392, 46.8328069 ], + [ 7.0596271, 46.8328117 ], + [ 7.059618, 46.8328163 ], + [ 7.0596105, 46.8328271 ], + [ 7.0596053, 46.832852 ], + [ 7.0596112, 46.832868 ], + [ 7.0596056, 46.8328807 ], + [ 7.05961, 46.8328896 ], + [ 7.0596112, 46.8328982 ], + [ 7.0596116, 46.8329112 ], + [ 7.0596157, 46.8329175 ], + [ 7.0596413, 46.8329252 ], + [ 7.0596605, 46.8329315 ], + [ 7.0596762, 46.832947 ], + [ 7.0596835, 46.8329564 ], + [ 7.0597151, 46.8329742 ], + [ 7.0597302, 46.8329917 ], + [ 7.0597319, 46.8330203 ], + [ 7.0597338, 46.8330343 ], + [ 7.0597292, 46.8330416 ], + [ 7.0597228, 46.833046 ], + [ 7.059716, 46.833052 ], + [ 7.0597076, 46.8330946 ], + [ 7.0597046, 46.8331189 ], + [ 7.0597066, 46.8331443 ], + [ 7.0597058, 46.8331573 ], + [ 7.059719, 46.833168 ], + [ 7.059716, 46.8331737 ], + [ 7.0597068, 46.8331765 ], + [ 7.0596946, 46.8331869 ], + [ 7.0596603, 46.8332111 ], + [ 7.0596675, 46.8332277 ], + [ 7.05965, 46.8332895 ], + [ 7.0596425, 46.8333192 ], + [ 7.0596392, 46.8333459 ], + [ 7.0596216, 46.8333639 ], + [ 7.0596231, 46.8333735 ], + [ 7.0596234, 46.8333957 ], + [ 7.0596262, 46.8334082 ], + [ 7.0596327, 46.8334245 ], + [ 7.0596316, 46.8334343 ], + [ 7.0596383, 46.8334508 ], + [ 7.0596325, 46.8334593 ], + [ 7.0596358, 46.8334812 ], + [ 7.0596449, 46.8334979 ], + [ 7.0596511, 46.8335119 ], + [ 7.0596532, 46.8335283 ], + [ 7.0596475, 46.8335545 ], + [ 7.0596531, 46.8335686 ], + [ 7.0596579, 46.8335745 ], + [ 7.0596705, 46.8335812 ], + [ 7.0596871, 46.8335933 ], + [ 7.0597338, 46.8336428 ], + [ 7.0597498, 46.8336488 ], + [ 7.0597703, 46.8336471 ], + [ 7.0597933, 46.8336445 ], + [ 7.0598145, 46.8336438 ], + [ 7.0598475, 46.8336465 ], + [ 7.0598665, 46.8336509 ], + [ 7.0599025, 46.833667 ], + [ 7.0599534, 46.8336977 ], + [ 7.0599682, 46.8337029 ], + [ 7.0600023, 46.8336966 ], + [ 7.0600298, 46.8336907 ], + [ 7.0600472, 46.8336903 ], + [ 7.0600864, 46.8336945 ], + [ 7.0601078, 46.8336973 ], + [ 7.0601289, 46.8337018 ], + [ 7.0601842, 46.8336724 ], + [ 7.0603712, 46.833573200000004 ], + [ 7.060654, 46.83342 ], + [ 7.0607044, 46.8333929 ], + [ 7.0607654, 46.8333164 ], + [ 7.0609815, 46.8333338 ], + [ 7.0609862, 46.833334 ], + [ 7.0609909, 46.833334 ], + [ 7.0609956, 46.8333338 ], + [ 7.0610003, 46.8333334 ], + [ 7.0610049, 46.8333328 ], + [ 7.0610094, 46.833332 ], + [ 7.0610139, 46.8333309 ], + [ 7.0610182, 46.8333297 ], + [ 7.0610224, 46.8333283 ], + [ 7.0610265, 46.8333267 ], + [ 7.0610304, 46.8333249 ], + [ 7.0610342, 46.833323 ], + [ 7.0610377, 46.8333209 ], + [ 7.0610411, 46.8333186 ], + [ 7.0610442, 46.8333162 ], + [ 7.0610471, 46.8333137 ], + [ 7.0610497, 46.833311 ], + [ 7.0614137, 46.8329205 ], + [ 7.0614209, 46.8329127 ], + [ 7.0614274, 46.8329046 ], + [ 7.061433, 46.8328962 ], + [ 7.0614379, 46.8328876 ], + [ 7.0614419, 46.8328788 ], + [ 7.061445, 46.8328698 ], + [ 7.0614473, 46.8328607 ], + [ 7.0614487, 46.8328515 ], + [ 7.0614492, 46.8328423 ], + [ 7.0614488, 46.8328331 ], + [ 7.0614475, 46.8328239 ], + [ 7.0614453, 46.8328148 ], + [ 7.0614423, 46.8328058 ], + [ 7.0614384, 46.8327969 ], + [ 7.0614336, 46.8327883 ], + [ 7.061428, 46.8327799 ], + [ 7.0614217, 46.8327717 ], + [ 7.0613842, 46.832731 ], + [ 7.0614577, 46.8326615 ], + [ 7.0618119, 46.8323294 ], + [ 7.0620401, 46.8320943 ], + [ 7.0615199, 46.8318916 ], + [ 7.0615075, 46.8319021 ], + [ 7.061495, 46.8319124 ], + [ 7.0614824, 46.8319227 ], + [ 7.0614695, 46.8319329 ], + [ 7.0614566, 46.831943 ], + [ 7.0614435, 46.831953 ], + [ 7.0614302, 46.8319629 ], + [ 7.0614087, 46.8319785 ], + [ 7.0613868, 46.8319938 ], + [ 7.0613646, 46.8320088 ], + [ 7.061342, 46.8320236 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VBS_1-1", + "country" : "CHE", + "name" : [ + { + "text" : "VBS_15 Grolley", + "lang" : "de-CH" + }, + { + "text" : "VBS_15 Grolley", + "lang" : "fr-CH" + }, + { + "text" : "VBS_15 Grolley", + "lang" : "it-CH" + }, + { + "text" : "VBS_15 Grolley", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "regulationExemption" : "YES", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Eidgenössisches Departement für Verteidigung, Bevölkerungsschutz und Sport (VBS)", + "lang" : "de-CH" + }, + { + "text" : "Département fédéral de la défense, de la protection de la population et des sports (DDPS)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento federale della difesa, della protezione della popolazione e dello sport (DDPS)", + "lang" : "it-CH" + }, + { + "text" : "Federal Department of Defence, Civil Protection and Sport (DDPS)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Lageverfolgungszentrum der Armee LVZ A", + "lang" : "de-CH" + }, + { + "text" : "Centre de suivi de la situation de l’armée, CSS A", + "lang" : "fr-CH" + }, + { + "text" : "Centro di monitoraggio della situazione dell’esercito, Centro mon sit Es", + "lang" : "it-CH" + }, + { + "text" : "Joint Operation Center, JOC", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vtg.admin.ch/en/joint-operations-command", + "email" : "lvz.op@vtg.admin.ch", + "phone" : "+41 58 464 96 43", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.1009477, 46.3264873 ], + [ 7.1002105, 46.3253876 ], + [ 7.0995801, 46.3244493 ], + [ 7.0987325, 46.3239934 ], + [ 7.097355, 46.3233388 ], + [ 7.0962691, 46.3225925 ], + [ 7.095693, 46.3217011 ], + [ 7.0911449, 46.3210637 ], + [ 7.0899018, 46.3231595 ], + [ 7.0904221, 46.3244349 ], + [ 7.0915873, 46.3243656 ], + [ 7.093148, 46.3245719 ], + [ 7.093801, 46.3258117 ], + [ 7.0944966, 46.3266936 ], + [ 7.0959182, 46.3265396 ], + [ 7.0960324, 46.3265427 ], + [ 7.0980805, 46.3271084 ], + [ 7.0995148, 46.3267961 ], + [ 7.1009477, 46.3264873 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00060", + "country" : "CHE", + "name" : [ + { + "text" : "Secteur Perche", + "lang" : "de-CH" + }, + { + "text" : "Secteur Perche", + "lang" : "fr-CH" + }, + { + "text" : "Secteur Perche", + "lang" : "it-CH" + }, + { + "text" : "Secteur Perche", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "startDateTime" : "2024-11-15T00:00:00+01:00", + "endDateTime" : "2025-05-31T00:00:00+02:00" + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Generaldirektion für Umwelt", + "lang" : "de-CH" + }, + { + "text" : "Direction générale de l'environnement", + "lang" : "fr-CH" + }, + { + "text" : "Direzione generale dell'Ambiente", + "lang" : "it-CH" + }, + { + "text" : "Environment Department", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.dge@vd.ch", + "phone" : "0041213164422", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8828142, 47.4586302 ], + [ 7.8831886, 47.4587631 ], + [ 7.8832917, 47.4586602 ], + [ 7.8833849, 47.4581722 ], + [ 7.8834457, 47.457844 ], + [ 7.883463, 47.4574757 ], + [ 7.8834817, 47.457163 ], + [ 7.8835163999999995, 47.4566963 ], + [ 7.8839113, 47.456695 ], + [ 7.8840647, 47.4566934 ], + [ 7.8842821999999995, 47.4570976 ], + [ 7.8844904, 47.4574247 ], + [ 7.8847507, 47.457172 ], + [ 7.8851046, 47.4559769 ], + [ 7.8856119, 47.4553404 ], + [ 7.8861038, 47.4547255 ], + [ 7.8864374999999995, 47.4540921 ], + [ 7.8867362, 47.453481 ], + [ 7.8875627999999995, 47.4529316 ], + [ 7.8884519, 47.4523472 ], + [ 7.8887896, 47.4520393 ], + [ 7.8890008, 47.4516805 ], + [ 7.8892567, 47.45119 ], + [ 7.8895378, 47.4509181 ], + [ 7.8900267, 47.4505333 ], + [ 7.8905255, 47.4499404 ], + [ 7.8905711, 47.4499423 ], + [ 7.8907104, 47.4497602 ], + [ 7.8908018, 47.4496765 ], + [ 7.8914094, 47.4492402 ], + [ 7.8917314, 47.44904 ], + [ 7.8918907, 47.4489171 ], + [ 7.8922457, 47.4485834 ], + [ 7.8922494, 47.4485816 ], + [ 7.8922757, 47.4485697 ], + [ 7.8923105, 47.4484695 ], + [ 7.8924, 47.4477949 ], + [ 7.8926328, 47.4475004 ], + [ 7.8933587, 47.4470119 ], + [ 7.893563, 47.4469788 ], + [ 7.8938199000000004, 47.4469811 ], + [ 7.8939269, 47.4469855 ], + [ 7.8940076999999995, 47.4469803 ], + [ 7.8941218, 47.4469686 ], + [ 7.8941623, 47.4469503 ], + [ 7.8942198, 47.4468968 ], + [ 7.8943043, 47.4468958 ], + [ 7.8947917, 47.4467128 ], + [ 7.8949726, 47.4466338 ], + [ 7.8950207, 47.44661 ], + [ 7.8956188, 47.446251 ], + [ 7.8959715, 47.4460361 ], + [ 7.8960911, 47.445964 ], + [ 7.8961587, 47.4459246 ], + [ 7.8962666, 47.4458651 ], + [ 7.8962875, 47.4458581 ], + [ 7.8964396, 47.4458066 ], + [ 7.8965717, 47.445773 ], + [ 7.8966049, 47.4457653 ], + [ 7.8967857, 47.4457274 ], + [ 7.8968869, 47.445703 ], + [ 7.896897, 47.4457 ], + [ 7.8969213, 47.4456927 ], + [ 7.8969895999999995, 47.4456722 ], + [ 7.8970545, 47.4456388 ], + [ 7.8971386, 47.4455983 ], + [ 7.8972375, 47.4455614 ], + [ 7.897685, 47.4454118 ], + [ 7.8977768, 47.4453623 ], + [ 7.8978519, 47.4453164 ], + [ 7.8979043, 47.4452734 ], + [ 7.8982091, 47.4450098 ], + [ 7.8983004999999995, 47.4449389 ], + [ 7.898386, 47.4448733 ], + [ 7.8984849, 47.4448055 ], + [ 7.8985663, 47.444756 ], + [ 7.8987164, 47.4446902 ], + [ 7.8988442, 47.444652 ], + [ 7.8989137, 47.444638 ], + [ 7.8992895999999995, 47.4445751 ], + [ 7.8994479, 47.4445553 ], + [ 7.8998044, 47.4445301 ], + [ 7.9000179, 47.4445211 ], + [ 7.9005142, 47.4445431 ], + [ 7.9007751, 47.4445629 ], + [ 7.9013636, 47.4446599 ], + [ 7.9018353999999995, 47.4447076 ], + [ 7.901892, 47.4447116 ], + [ 7.9019514, 47.4447198 ], + [ 7.9022223, 47.4447233 ], + [ 7.9024954, 47.4447432 ], + [ 7.9029592, 47.4448205 ], + [ 7.9031061, 47.4448265 ], + [ 7.9032319, 47.4448113 ], + [ 7.9033902, 47.4447767 ], + [ 7.9035332, 47.4447431 ], + [ 7.9037003, 47.4446915 ], + [ 7.9039159, 47.4446238 ], + [ 7.9041215, 47.4445622 ], + [ 7.9042862, 47.4445412 ], + [ 7.9043513999999995, 47.4445173 ], + [ 7.9044267999999995, 47.4445155 ], + [ 7.9044993, 47.4445353 ], + [ 7.9043475999999995, 47.4444193 ], + [ 7.9045594, 47.4443181 ], + [ 7.9048328, 47.4442936 ], + [ 7.9045455, 47.4440537 ], + [ 7.9046029, 47.4439431 ], + [ 7.9046312, 47.4438731 ], + [ 7.9045863, 47.4438502 ], + [ 7.9045247, 47.4438338 ], + [ 7.9043659, 47.4438252 ], + [ 7.904239, 47.4438472 ], + [ 7.9037562, 47.4440052 ], + [ 7.9033318, 47.4440621 ], + [ 7.9029828, 47.4440528 ], + [ 7.9019511, 47.4438694 ], + [ 7.9016129, 47.4437817 ], + [ 7.9014811, 47.4437474 ], + [ 7.9010549999999995, 47.4436991 ], + [ 7.9003032, 47.4436362 ], + [ 7.8998095, 47.4436313 ], + [ 7.8993801, 47.4436528 ], + [ 7.898898, 47.4437113 ], + [ 7.8982339, 47.4438168 ], + [ 7.8975953, 47.44396 ], + [ 7.8970909, 47.444034 ], + [ 7.8963936, 47.444089 ], + [ 7.8963863, 47.4440937 ], + [ 7.8957076, 47.4442392 ], + [ 7.8952191, 47.444401 ], + [ 7.8946552, 47.4446099 ], + [ 7.8941859999999995, 47.4448788 ], + [ 7.8935601, 47.4451956 ], + [ 7.8932371, 47.4453409 ], + [ 7.8933167, 47.4454782 ], + [ 7.8925574, 47.4457184 ], + [ 7.892732, 47.4460166 ], + [ 7.8922983, 47.4460951 ], + [ 7.8918591, 47.4462371 ], + [ 7.8915106999999995, 47.4463814 ], + [ 7.891103, 47.4466067 ], + [ 7.8904554000000005, 47.4470569 ], + [ 7.890257, 47.4469833 ], + [ 7.8899647, 47.4471972 ], + [ 7.8898781, 47.4471435 ], + [ 7.8894839, 47.4475448 ], + [ 7.8894261, 47.4476334 ], + [ 7.8893913, 47.4476869 ], + [ 7.8893884, 47.4476897 ], + [ 7.8896048, 47.4478353 ], + [ 7.8896256, 47.4477255 ], + [ 7.8898976, 47.4478534 ], + [ 7.8901287, 47.4480331 ], + [ 7.8901268, 47.448244 ], + [ 7.8900904, 47.4484973 ], + [ 7.8900418, 47.4486237 ], + [ 7.8898128, 47.4485578 ], + [ 7.8894364, 47.4484493 ], + [ 7.8889954, 47.448779 ], + [ 7.8888519, 47.4488767 ], + [ 7.8886552, 47.449011 ], + [ 7.8885876, 47.4492687 ], + [ 7.8882788999999995, 47.4494743 ], + [ 7.8879173, 47.449676 ], + [ 7.8878526, 47.4497174 ], + [ 7.8876108, 47.449864 ], + [ 7.8871931, 47.4503702 ], + [ 7.8871613, 47.4504456 ], + [ 7.8870296, 47.4507541 ], + [ 7.8869666, 47.4511352 ], + [ 7.8868466999999995, 47.451333 ], + [ 7.8866291, 47.4515442 ], + [ 7.8863328, 47.4517369 ], + [ 7.8859446, 47.4518926 ], + [ 7.886101, 47.4520158 ], + [ 7.8862783, 47.4521559 ], + [ 7.8861519, 47.4523436 ], + [ 7.8859329, 47.4525749 ], + [ 7.8856602, 47.4528784 ], + [ 7.8855175, 47.4530551 ], + [ 7.8854723, 47.453204 ], + [ 7.8854444, 47.4533742 ], + [ 7.8854476, 47.4535428 ], + [ 7.8854958, 47.4537299 ], + [ 7.8855397, 47.4539722 ], + [ 7.8855961, 47.4543 ], + [ 7.8855427, 47.4545201 ], + [ 7.8853782, 47.4546973 ], + [ 7.885105, 47.4548175 ], + [ 7.8848999, 47.4548702 ], + [ 7.8845136, 47.4550626 ], + [ 7.884171, 47.455214 ], + [ 7.8840146, 47.4554518 ], + [ 7.8839347, 47.4556602 ], + [ 7.8838669, 47.4558514 ], + [ 7.8833946, 47.4558487 ], + [ 7.8832002, 47.455854 ], + [ 7.8829721, 47.4558602 ], + [ 7.8827549, 47.4558667 ], + [ 7.8827145, 47.4558679 ], + [ 7.8827871, 47.4560428 ], + [ 7.8830187, 47.4563459 ], + [ 7.8830458, 47.4565607 ], + [ 7.883035, 47.4567861 ], + [ 7.8829612000000004, 47.4569943 ], + [ 7.8829574000000004, 47.4571515 ], + [ 7.8829945, 47.4573501 ], + [ 7.8830222, 47.4575723 ], + [ 7.8830395, 47.4577861 ], + [ 7.8830013999999995, 47.458032 ], + [ 7.8828165, 47.4586266 ], + [ 7.8828142, 47.4586302 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns204", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Eital - Summerholden", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Eital - Summerholden", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Eital - Summerholden", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Eital - Summerholden", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8180249, 46.0291618 ], + [ 7.8179201, 46.0268082 ], + [ 7.8176386, 46.0244617 ], + [ 7.8171813, 46.0221286 ], + [ 7.8165493, 46.0198154 ], + [ 7.8157445, 46.0175284 ], + [ 7.8147690999999995, 46.0152738 ], + [ 7.8136257, 46.013058 ], + [ 7.8123176, 46.0108868 ], + [ 7.8108482, 46.0087663 ], + [ 7.8092217999999995, 46.0067022 ], + [ 7.8074427, 46.0047003 ], + [ 7.8055157, 46.002766 ], + [ 7.8034464, 46.0009045 ], + [ 7.8012401, 45.999121099999996 ], + [ 7.7989032, 45.9974205 ], + [ 7.7964418, 45.9958074 ], + [ 7.7938629, 45.9942863 ], + [ 7.7911734, 45.9928612 ], + [ 7.7883808, 45.9915362 ], + [ 7.7854925999999995, 45.9903147 ], + [ 7.7825167, 45.9892003 ], + [ 7.7794614, 45.9881958 ], + [ 7.7763349999999996, 45.9873041 ], + [ 7.773146, 45.9865275 ], + [ 7.7699031, 45.9858683 ], + [ 7.7666153, 45.9853282 ], + [ 7.7632915, 45.9849087 ], + [ 7.7599407, 45.984611 ], + [ 7.7565723, 45.9844358 ], + [ 7.7531953, 45.9843836 ], + [ 7.7498190000000005, 45.9844546 ], + [ 7.7464527, 45.9846486 ], + [ 7.7431055, 45.984965 ], + [ 7.7397866, 45.9854031 ], + [ 7.736505, 45.9859615 ], + [ 7.7332698, 45.9866388 ], + [ 7.7300898, 45.9874331 ], + [ 7.7269737, 45.9883422 ], + [ 7.72393, 45.9893637 ], + [ 7.7209671, 45.9904947 ], + [ 7.718093, 45.9917322 ], + [ 7.7153156, 45.9930728 ], + [ 7.7126426, 45.9945128 ], + [ 7.7100812, 45.9960483 ], + [ 7.7076384000000004, 45.997675 ], + [ 7.7053211, 45.9993886 ], + [ 7.7031354, 46.0011843 ], + [ 7.7010874, 46.0030572 ], + [ 7.6991828, 46.0050022 ], + [ 7.6974267, 46.007014 ], + [ 7.695824, 46.0090871 ], + [ 7.6943791, 46.0112157 ], + [ 7.6930959, 46.0133941 ], + [ 7.691978, 46.0156163 ], + [ 7.6910286, 46.0178762 ], + [ 7.69025, 46.0201676 ], + [ 7.6896447, 46.0224843 ], + [ 7.6892142, 46.0248199 ], + [ 7.6889597, 46.0271679 ], + [ 7.6888819, 46.029522 ], + [ 7.6889812, 46.0318758 ], + [ 7.6892572, 46.0342226 ], + [ 7.6897091, 46.0365562 ], + [ 7.6903359, 46.0388702 ], + [ 7.6911358, 46.0411581 ], + [ 7.6921066, 46.0434137 ], + [ 7.6932456, 46.0456308 ], + [ 7.6945499, 46.0478034 ], + [ 7.6960157, 46.0499254 ], + [ 7.6976392, 46.0519911 ], + [ 7.6994158, 46.0539948 ], + [ 7.7013408, 46.0559309 ], + [ 7.7034088, 46.0577943 ], + [ 7.7056142, 46.0595796 ], + [ 7.7079509, 46.0612822 ], + [ 7.7104126, 46.0628972 ], + [ 7.7129924, 46.0644203 ], + [ 7.7156834, 46.0658472 ], + [ 7.7184781000000005, 46.067174 ], + [ 7.7213688, 46.0683972 ], + [ 7.7243477, 46.0695133 ], + [ 7.7274066, 46.0705193 ], + [ 7.730537, 46.0714124 ], + [ 7.7337304, 46.0721901 ], + [ 7.7369779, 46.0728504 ], + [ 7.7402707, 46.0733913 ], + [ 7.7435998, 46.0738115 ], + [ 7.7469559, 46.0741098 ], + [ 7.7503298, 46.0742853 ], + [ 7.7537123999999995, 46.0743375 ], + [ 7.7570942, 46.0742664 ], + [ 7.7604661, 46.0740721 ], + [ 7.7638186000000005, 46.0737551 ], + [ 7.7671427, 46.0733164 ], + [ 7.7704292, 46.0727571 ], + [ 7.773669, 46.0720787 ], + [ 7.7768533, 46.0712832 ], + [ 7.7799733, 46.0703727 ], + [ 7.7830205, 46.0693497 ], + [ 7.7859864, 46.068217 ], + [ 7.788863, 46.0669777 ], + [ 7.7916422999999995, 46.0656353 ], + [ 7.7943168, 46.0641934 ], + [ 7.796879, 46.062656 ], + [ 7.799322, 46.0610273 ], + [ 7.801639, 46.0593118 ], + [ 7.8038238, 46.0575142 ], + [ 7.8058703, 46.0556394 ], + [ 7.8077729, 46.0536926 ], + [ 7.8095264, 46.051679 ], + [ 7.811126, 46.0496044 ], + [ 7.8125674, 46.0474742 ], + [ 7.8138466, 46.0452945 ], + [ 7.8149601, 46.043071 ], + [ 7.8159049, 46.0408101 ], + [ 7.8166784, 46.0385178 ], + [ 7.8172786, 46.0362004 ], + [ 7.8177037, 46.0338644 ], + [ 7.8179527, 46.0315161 ], + [ 7.8180249, 46.0291618 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSEZ001", + "country" : "CHE", + "name" : [ + { + "text" : "LSEZ Zermatt", + "lang" : "de-CH" + }, + { + "text" : "LSEZ Zermatt", + "lang" : "fr-CH" + }, + { + "text" : "LSEZ Zermatt", + "lang" : "it-CH" + }, + { + "text" : "LSEZ Zermatt", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Air Zermatt AG", + "lang" : "de-CH" + }, + { + "text" : "Air Zermatt AG", + "lang" : "fr-CH" + }, + { + "text" : "Air Zermatt AG", + "lang" : "it-CH" + }, + { + "text" : "Air Zermatt AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.air-zermatt.ch/en/air-zermatt/contact", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.0713938, 46.162768 ], + [ 6.0711241, 46.1617319 ], + [ 6.0703044, 46.1608463 ], + [ 6.0690593, 46.1602461 ], + [ 6.0675785, 46.1600226 ], + [ 6.0660874, 46.1602099 ], + [ 6.0648129, 46.1607795 ], + [ 6.063949, 46.1616446 ], + [ 6.0636273, 46.1626736 ], + [ 6.0638969, 46.1637098 ], + [ 6.0647166, 46.1645954 ], + [ 6.0659617, 46.1651956 ], + [ 6.0674426, 46.1654191 ], + [ 6.0689339, 46.1652318 ], + [ 6.0702084, 46.1646622 ], + [ 6.0710722, 46.163797 ], + [ 6.0713938, 46.162768 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-53", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.0541978, 47.5500574 ], + [ 8.0541883, 47.5498692 ], + [ 8.0541643, 47.5496815 ], + [ 8.0541259, 47.549495 ], + [ 8.054073, 47.5493101 ], + [ 8.054006, 47.5491273 ], + [ 8.0539249, 47.5489471 ], + [ 8.05383, 47.5487701 ], + [ 8.0537215, 47.5485967 ], + [ 8.0535998, 47.5484273 ], + [ 8.0534651, 47.5482625 ], + [ 8.0533179, 47.5481027 ], + [ 8.0531586, 47.5479483 ], + [ 8.0529875, 47.5477998 ], + [ 8.0528052, 47.5476575 ], + [ 8.0526121, 47.5475219 ], + [ 8.0524088, 47.5473933 ], + [ 8.0521959, 47.5472722 ], + [ 8.0519739, 47.5471587 ], + [ 8.0517434, 47.5470532 ], + [ 8.0515051, 47.5469561 ], + [ 8.0512596, 47.5468675 ], + [ 8.0510076, 47.5467877 ], + [ 8.0507498, 47.546717 ], + [ 8.0504868, 47.5466555 ], + [ 8.0502195, 47.5466034 ], + [ 8.0499485, 47.5465609 ], + [ 8.0496746, 47.546528 ], + [ 8.0493985, 47.5465049 ], + [ 8.0491211, 47.5464916 ], + [ 8.0488429, 47.5464881 ], + [ 8.0485649, 47.5464945 ], + [ 8.0482878, 47.5465107 ], + [ 8.0480123, 47.5465368 ], + [ 8.0477392, 47.5465725 ], + [ 8.0474692, 47.5466179 ], + [ 8.0472031, 47.5466728 ], + [ 8.0469416, 47.546737 ], + [ 8.0466854, 47.5468105 ], + [ 8.0464353, 47.5468929 ], + [ 8.0461918, 47.546984 ], + [ 8.0459558, 47.5470837 ], + [ 8.0457278, 47.5471915 ], + [ 8.0455084, 47.5473073 ], + [ 8.0452982, 47.5474308 ], + [ 8.0450979, 47.5475615 ], + [ 8.044908, 47.5476991 ], + [ 8.044729, 47.5478432 ], + [ 8.0445614, 47.5479935 ], + [ 8.0444056, 47.5481496 ], + [ 8.044262, 47.5483109 ], + [ 8.0441312, 47.5484771 ], + [ 8.0440134, 47.5486477 ], + [ 8.0439089, 47.5488223 ], + [ 8.0438181, 47.5490003 ], + [ 8.0437411, 47.5491813 ], + [ 8.0436783, 47.5493648 ], + [ 8.0436297, 47.5495502 ], + [ 8.0435955, 47.5497371 ], + [ 8.0435758, 47.549925 ], + [ 8.0435707, 47.5501133 ], + [ 8.0435801, 47.5503016 ], + [ 8.043604, 47.5504892 ], + [ 8.0436425, 47.5506757 ], + [ 8.0436953, 47.5508607 ], + [ 8.0437623, 47.5510435 ], + [ 8.0438434, 47.5512236 ], + [ 8.0439383, 47.5514007 ], + [ 8.0440467, 47.5515741 ], + [ 8.0441684, 47.5517435 ], + [ 8.044303, 47.5519083 ], + [ 8.0444502, 47.5520681 ], + [ 8.0446096, 47.5522225 ], + [ 8.0447806, 47.552371 ], + [ 8.0449629, 47.5525133 ], + [ 8.045156, 47.5526489 ], + [ 8.0453593, 47.5527775 ], + [ 8.0455722, 47.5528987 ], + [ 8.0457942, 47.5530122 ], + [ 8.0460247, 47.5531177 ], + [ 8.0462631, 47.5532149 ], + [ 8.0465086, 47.5533035 ], + [ 8.0467606, 47.5533832 ], + [ 8.0470185, 47.5534539 ], + [ 8.0472814, 47.5535154 ], + [ 8.0475488, 47.5535675 ], + [ 8.0478198, 47.5536101 ], + [ 8.0480937, 47.553643 ], + [ 8.0483699, 47.5536661 ], + [ 8.0486474, 47.5536794 ], + [ 8.0489255, 47.5536829 ], + [ 8.0492036, 47.5536765 ], + [ 8.0494808, 47.5536602 ], + [ 8.0497563, 47.5536342 ], + [ 8.0500295, 47.5535984 ], + [ 8.0502995, 47.553553 ], + [ 8.0505656, 47.5534982 ], + [ 8.0508271, 47.5534339 ], + [ 8.0510833, 47.5533605 ], + [ 8.0513335, 47.5532781 ], + [ 8.0515769, 47.5531869 ], + [ 8.051813, 47.5530872 ], + [ 8.0520411, 47.5529794 ], + [ 8.0522604, 47.5528635 ], + [ 8.0524706, 47.5527401 ], + [ 8.0526709, 47.5526094 ], + [ 8.0528608, 47.5524718 ], + [ 8.0530398, 47.5523276 ], + [ 8.0532075, 47.5521773 ], + [ 8.0533632, 47.5520212 ], + [ 8.0535067, 47.5518599 ], + [ 8.0536376, 47.5516937 ], + [ 8.0537554, 47.551523 ], + [ 8.0538598, 47.5513485 ], + [ 8.0539506, 47.5511704 ], + [ 8.0540275, 47.5509894 ], + [ 8.0540904, 47.550806 ], + [ 8.0541389, 47.5506205 ], + [ 8.0541731, 47.5504336 ], + [ 8.0541927, 47.5502457 ], + [ 8.0541978, 47.5500574 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0060", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Laufenburg", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Laufenburg", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Laufenburg", + "lang" : "it-CH" + }, + { + "text" : "Substation Laufenburg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8627465999999995, 47.4826621 ], + [ 7.8625492999999995, 47.4828818 ], + [ 7.8623719, 47.4831173 ], + [ 7.8622333, 47.4834052 ], + [ 7.8619924999999995, 47.4835274 ], + [ 7.8613205, 47.4836699 ], + [ 7.8606902, 47.4838286 ], + [ 7.8602270999999995, 47.4839443 ], + [ 7.8598251, 47.4841023 ], + [ 7.8596524, 47.4842314 ], + [ 7.8594529, 47.4843561 ], + [ 7.8595871, 47.4846231 ], + [ 7.8595101, 47.484846 ], + [ 7.8593468, 47.4850729 ], + [ 7.8592197, 47.4851501 ], + [ 7.8588992, 47.485325 ], + [ 7.8590166, 47.4855669 ], + [ 7.8590097, 47.4858274 ], + [ 7.8589459999999995, 47.4861431 ], + [ 7.8589513, 47.486303 ], + [ 7.8587899, 47.4865563 ], + [ 7.8587216, 47.4868282 ], + [ 7.8588463, 47.4870553 ], + [ 7.8591524, 47.4874052 ], + [ 7.8595718, 47.4878234 ], + [ 7.8598627, 47.4880376 ], + [ 7.8601892, 47.4882094 ], + [ 7.8604672, 47.4882298 ], + [ 7.8607823, 47.4883719 ], + [ 7.8611282, 47.4884776 ], + [ 7.8615108, 47.4885272 ], + [ 7.8623085, 47.4885435 ], + [ 7.8628978, 47.4885555 ], + [ 7.8631892, 47.488618 ], + [ 7.8634933, 47.4887671 ], + [ 7.8636236, 47.4888694 ], + [ 7.8638163, 47.4888583 ], + [ 7.8642339, 47.4888341 ], + [ 7.8656793, 47.4886122 ], + [ 7.8652816, 47.4879479 ], + [ 7.8648817, 47.4872821 ], + [ 7.864441, 47.4865185 ], + [ 7.8644407, 47.4865181 ], + [ 7.8644358, 47.4865122 ], + [ 7.8638776, 47.4858391 ], + [ 7.8633615, 47.4852149 ], + [ 7.8633606, 47.4852137 ], + [ 7.8633388, 47.4850455 ], + [ 7.8633313, 47.4850053 ], + [ 7.8631872, 47.4842344 ], + [ 7.8631813, 47.4842031 ], + [ 7.8628222999999995, 47.4827464 ], + [ 7.8628222999999995, 47.4827462 ], + [ 7.8627465999999995, 47.4826621 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr012", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Farnsberg", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Farnsberg", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Farnsberg", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Farnsberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5992563, 47.4547204 ], + [ 7.5994837, 47.4552279 ], + [ 7.5999982, 47.4563766 ], + [ 7.6001542, 47.4565818 ], + [ 7.6004123, 47.456636 ], + [ 7.6007193, 47.4568015 ], + [ 7.6008854, 47.4571112 ], + [ 7.6012024, 47.4572088 ], + [ 7.6016183999999996, 47.4575447 ], + [ 7.6020078, 47.4578738 ], + [ 7.6021626, 47.4580593 ], + [ 7.6025523, 47.4580738 ], + [ 7.6027924, 47.4582423 ], + [ 7.603128, 47.4584426 ], + [ 7.603116, 47.4585543 ], + [ 7.6034851, 47.4587792 ], + [ 7.6035734, 47.4590198 ], + [ 7.6039823, 47.4592272 ], + [ 7.604344, 47.4593626 ], + [ 7.6044295, 47.4594315 ], + [ 7.6045359999999995, 47.4595172 ], + [ 7.6046236, 47.459586 ], + [ 7.6046863, 47.4596353 ], + [ 7.6047183, 47.4597789 ], + [ 7.6044623, 47.4600055 ], + [ 7.6041134, 47.4605101 ], + [ 7.6039074, 47.4608785 ], + [ 7.6030199, 47.4615734 ], + [ 7.602708, 47.4616058 ], + [ 7.6024658, 47.4618136 ], + [ 7.6027653, 47.4621482 ], + [ 7.6029884, 47.4623976 ], + [ 7.6030344, 47.4623631 ], + [ 7.6030713, 47.4623346 ], + [ 7.6031163, 47.4623073 ], + [ 7.6031791, 47.462269 ], + [ 7.603232, 47.4622361 ], + [ 7.603277, 47.4622098 ], + [ 7.6033317, 47.4621781 ], + [ 7.6033752, 47.4621627 ], + [ 7.6034234, 47.4621397 ], + [ 7.6034911, 47.4621145 ], + [ 7.6035569, 47.4620948 ], + [ 7.6036439, 47.462076 ], + [ 7.6037243, 47.4620541 ], + [ 7.6038663, 47.4619118 ], + [ 7.6041329, 47.4616539 ], + [ 7.60419, 47.461607 ], + [ 7.6042667999999995, 47.4615738 ], + [ 7.6043597, 47.4615287 ], + [ 7.6044277000000005, 47.461476 ], + [ 7.6044783, 47.4614391 ], + [ 7.6045405, 47.4614073 ], + [ 7.6046425, 47.4613719 ], + [ 7.6047385, 47.4613394 ], + [ 7.6048294, 47.4613151 ], + [ 7.6050406, 47.4612408 ], + [ 7.6051943, 47.4611456 ], + [ 7.6052843, 47.4610833 ], + [ 7.6054013, 47.4610251 ], + [ 7.6056541, 47.4608828 ], + [ 7.6057182, 47.4608364 ], + [ 7.605938, 47.4606587 ], + [ 7.6059895, 47.4606126 ], + [ 7.6062136, 47.4603574 ], + [ 7.6062507, 47.4603028 ], + [ 7.6062803, 47.4602586 ], + [ 7.6063216, 47.4601961 ], + [ 7.6063621999999995, 47.4601334 ], + [ 7.6063846999999996, 47.4600996 ], + [ 7.6064029, 47.4600698 ], + [ 7.6064232, 47.460025 ], + [ 7.6064516, 47.4599655 ], + [ 7.6064631, 47.4599319 ], + [ 7.6064758, 47.4598941 ], + [ 7.6064804, 47.4598662 ], + [ 7.6064818, 47.4598157 ], + [ 7.6064783, 47.4597788 ], + [ 7.6064727, 47.4597557 ], + [ 7.6064568999999995, 47.4597133 ], + [ 7.6064429, 47.4596792 ], + [ 7.6064285, 47.4596465 ], + [ 7.6063925, 47.4595768 ], + [ 7.6063568, 47.4595049 ], + [ 7.6063191, 47.4594343 ], + [ 7.6063064, 47.4594004 ], + [ 7.6062907, 47.4593697 ], + [ 7.6062798, 47.4593417 ], + [ 7.6062572, 47.4592917 ], + [ 7.606238, 47.4592667 ], + [ 7.6062114, 47.4592286 ], + [ 7.6061822, 47.4591748 ], + [ 7.6061697, 47.4591365 ], + [ 7.6061616, 47.4590974 ], + [ 7.6061623, 47.4590464 ], + [ 7.6061673, 47.4590008 ], + [ 7.6061701, 47.458963 ], + [ 7.6061707, 47.4589335 ], + [ 7.6061647, 47.4589057 ], + [ 7.6061494, 47.458875 ], + [ 7.6061355, 47.4588472 ], + [ 7.6061189, 47.4588194 ], + [ 7.6061046999999995, 47.4587975 ], + [ 7.6060915, 47.4587735 ], + [ 7.6060732, 47.4587467 ], + [ 7.6060567, 47.4587203 ], + [ 7.6060242, 47.458671 ], + [ 7.605983, 47.4586099 ], + [ 7.6059235, 47.4585394 ], + [ 7.6058599000000005, 47.4584856 ], + [ 7.6058308, 47.4584633 ], + [ 7.6057372, 47.4583877 ], + [ 7.6056174, 47.4582893 ], + [ 7.6054919, 47.4581849 ], + [ 7.6054008, 47.4581081 ], + [ 7.6051282, 47.4578953 ], + [ 7.6047147, 47.4575727 ], + [ 7.6046407, 47.4575183 ], + [ 7.6045418, 47.4574537 ], + [ 7.604473, 47.4574114 ], + [ 7.6044363, 47.4573885 ], + [ 7.6042918, 47.4573104 ], + [ 7.604076, 47.4572076 ], + [ 7.604014, 47.4571814 ], + [ 7.6039397, 47.4571477 ], + [ 7.6039183, 47.4571377 ], + [ 7.6038753, 47.457115 ], + [ 7.6038349, 47.4570916 ], + [ 7.6027097999999995, 47.4564502 ], + [ 7.6025679, 47.4563665 ], + [ 7.6024939, 47.4563094 ], + [ 7.602194, 47.4561424 ], + [ 7.6019859, 47.4560193 ], + [ 7.6017779999999995, 47.4558945 ], + [ 7.6015847999999995, 47.4557916 ], + [ 7.6013677, 47.4556824 ], + [ 7.6011463, 47.4555661 ], + [ 7.6008387, 47.4554092 ], + [ 7.6007502, 47.4553711 ], + [ 7.6002767, 47.4551653 ], + [ 7.5998799, 47.4549925 ], + [ 7.5994968, 47.4548327 ], + [ 7.5993179, 47.4547592 ], + [ 7.5992563, 47.4547204 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns090", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Duggingen, Muggenberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Duggingen, Muggenberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Duggingen, Muggenberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Duggingen, Muggenberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.9137835, 46.0118545 ], + [ 8.9140137, 46.0119172 ], + [ 8.9147314, 46.0116693 ], + [ 8.9147854, 46.0115624 ], + [ 8.914692, 46.0109267 ], + [ 8.9140881, 46.0097002 ], + [ 8.9140408, 46.0093823 ], + [ 8.912803199999999, 46.0065842 ], + [ 8.9128373, 46.0064119 ], + [ 8.9118667, 46.0043211 ], + [ 8.9102178, 46.000912 ], + [ 8.908715, 45.9978393 ], + [ 8.9084412, 45.9978825 ], + [ 8.9083167, 45.9976709 ], + [ 8.9057707, 45.997903 ], + [ 8.9072049, 46.0007823 ], + [ 8.9063665, 46.000957 ], + [ 8.9065028, 46.001226 ], + [ 8.9051875, 46.0014753 ], + [ 8.9048929, 46.0013712 ], + [ 8.9047585, 46.0015088 ], + [ 8.905005899999999, 46.001636 ], + [ 8.9056456, 46.0031032 ], + [ 8.9065425, 46.0048154 ], + [ 8.9071052, 46.0058139 ], + [ 8.9090576, 46.0052927 ], + [ 8.9099702, 46.0060509 ], + [ 8.9103303, 46.0066697 ], + [ 8.9107167, 46.007594 ], + [ 8.9109359, 46.0079628 ], + [ 8.911153, 46.0082118 ], + [ 8.9122899, 46.0094313 ], + [ 8.9127338, 46.010328 ], + [ 8.9127176, 46.0104478 ], + [ 8.9128524, 46.0105126 ], + [ 8.9130563, 46.0109877 ], + [ 8.9133901, 46.0113945 ], + [ 8.9137835, 46.0118545 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZA002", + "country" : "CHE", + "name" : [ + { + "text" : "LSZA Lugano (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSZA Lugano (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSZA Lugano (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSZA Lugano (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Lugano Airport / Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Lugano Airport / Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Lugano Airport / Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Lugano Airport / Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Skyguide Special Flight Office", + "lang" : "de-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "it-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "en-GB" + } + ], + "siteURL" : "https://skyguide.ch/services/special-flights", + "email" : "info@luganoairport.ch", + "phone" : "0041916101111", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.132366, 46.4168326 ], + [ 9.1323744, 46.4168516 ], + [ 9.1324654, 46.4171081 ], + [ 9.1324288, 46.41807 ], + [ 9.1324695, 46.4184634 ], + [ 9.1325865, 46.4187706 ], + [ 9.1328475, 46.4191867 ], + [ 9.1330335, 46.4194396 ], + [ 9.1332442, 46.4198324 ], + [ 9.1333339, 46.4199965 ], + [ 9.133581, 46.4203562 ], + [ 9.1336012, 46.4205865 ], + [ 9.133521, 46.4207523 ], + [ 9.1333477, 46.4210357 ], + [ 9.1332691, 46.4213542 ], + [ 9.1332681, 46.4216878 ], + [ 9.1331821, 46.4219536 ], + [ 9.1334371, 46.4220189 ], + [ 9.1337807, 46.422087 ], + [ 9.1340112, 46.4221243 ], + [ 9.1341298, 46.4221469 ], + [ 9.134243, 46.4222021 ], + [ 9.1341149, 46.4222407 ], + [ 9.1340036, 46.4222708 ], + [ 9.1338943, 46.4223375 ], + [ 9.1337818, 46.4225102 ], + [ 9.133682, 46.4226988 ], + [ 9.1335436, 46.4227986 ], + [ 9.1332404, 46.4230635 ], + [ 9.1328478, 46.4234843 ], + [ 9.1323739, 46.4239592 ], + [ 9.1318877, 46.424406 ], + [ 9.1315062, 46.4247941 ], + [ 9.1313372, 46.4250325 ], + [ 9.1311933, 46.4253195 ], + [ 9.1310222, 46.4254928 ], + [ 9.1310396, 46.4256839 ], + [ 9.1310549, 46.4259928 ], + [ 9.1309666, 46.4263684 ], + [ 9.1309795, 46.4266002 ], + [ 9.1311598, 46.4267236 ], + [ 9.1313098, 46.4268388 ], + [ 9.1313552, 46.4269371 ], + [ 9.1316413, 46.4268281 ], + [ 9.1321415, 46.4267251 ], + [ 9.1324322, 46.4266346 ], + [ 9.1328007, 46.4264535 ], + [ 9.133119, 46.4263872 ], + [ 9.1333272, 46.4263349 ], + [ 9.1335351, 46.4261685 ], + [ 9.1338197, 46.4260103 ], + [ 9.1342522, 46.4258776 ], + [ 9.1345307, 46.4258088 ], + [ 9.1346284, 46.4258135 ], + [ 9.1348803, 46.4258835 ], + [ 9.1355658, 46.4258825 ], + [ 9.135846, 46.4258721 ], + [ 9.1359736, 46.4258179 ], + [ 9.1361828, 46.425667 ], + [ 9.1365047, 46.4254281 ], + [ 9.1366503, 46.4253766 ], + [ 9.1368022, 46.425396 ], + [ 9.1370784, 46.4255427 ], + [ 9.1372735, 46.4256722 ], + [ 9.13745, 46.4257496 ], + [ 9.1376689, 46.4257802 ], + [ 9.1378259, 46.4258086 ], + [ 9.1380432, 46.4259163 ], + [ 9.1383597, 46.4260778 ], + [ 9.1386572, 46.4261749 ], + [ 9.1391009, 46.4262668 ], + [ 9.1394519, 46.426284 ], + [ 9.1396823, 46.4262914 ], + [ 9.1399064, 46.4263584 ], + [ 9.1400806, 46.4264136 ], + [ 9.1402815, 46.4264937 ], + [ 9.1405002, 46.4266456 ], + [ 9.1406607, 46.4267589 ], + [ 9.1408916, 46.4268096 ], + [ 9.1410871, 46.4268716 ], + [ 9.1412208, 46.42696 ], + [ 9.1413398, 46.4270991 ], + [ 9.1414372, 46.427195 ], + [ 9.1416353, 46.4273654 ], + [ 9.1419191, 46.4275706 ], + [ 9.1421483, 46.4277225 ], + [ 9.1423581, 46.4279289 ], + [ 9.1424628, 46.4281043 ], + [ 9.1425793, 46.4283157 ], + [ 9.142661, 46.4284084 ], + [ 9.1427722, 46.428479 ], + [ 9.1429938, 46.4285406 ], + [ 9.1433258, 46.4286259 ], + [ 9.1435513, 46.4286586 ], + [ 9.1438756, 46.4286754 ], + [ 9.1441377, 46.4287112 ], + [ 9.1443432, 46.4287551 ], + [ 9.1444346, 46.4288403 ], + [ 9.1446154, 46.4289531 ], + [ 9.1447845, 46.4290012 ], + [ 9.1449357, 46.4289989 ], + [ 9.1451328, 46.4289563 ], + [ 9.1452732, 46.4289216 ], + [ 9.1455285, 46.4289178 ], + [ 9.1456951, 46.4288901 ], + [ 9.1458861, 46.4288329 ], + [ 9.1460647, 46.428693 ], + [ 9.1461675, 46.4286264 ], + [ 9.1463596, 46.4286055 ], + [ 9.1466194, 46.4285654 ], + [ 9.1468804, 46.4285398 ], + [ 9.1472043, 46.4285458 ], + [ 9.1473798, 46.428489 ], + [ 9.1474943, 46.4284836 ], + [ 9.147663, 46.4285209 ], + [ 9.1478592, 46.4286045 ], + [ 9.1480585, 46.4286305 ], + [ 9.1482922, 46.4285872 ], + [ 9.1487153, 46.4286975 ], + [ 9.1492953, 46.4287285 ], + [ 9.1498973, 46.4286562 ], + [ 9.150313, 46.4284777 ], + [ 9.1507134, 46.428334 ], + [ 9.1511511, 46.4283099 ], + [ 9.1517367, 46.4282606 ], + [ 9.1522411, 46.4282413 ], + [ 9.1529531, 46.4282531 ], + [ 9.15357, 46.4281632 ], + [ 9.1540132, 46.4280588 ], + [ 9.1544646, 46.4279314 ], + [ 9.1550111, 46.4276994 ], + [ 9.1555753, 46.427512899999996 ], + [ 9.1560176, 46.4273798 ], + [ 9.1565598, 46.4272453 ], + [ 9.1573995, 46.4271289 ], + [ 9.1579038, 46.4268745 ], + [ 9.1585555, 46.4265777 ], + [ 9.1593028, 46.4263941 ], + [ 9.1600909, 46.4262155 ], + [ 9.1607376, 46.4260162 ], + [ 9.1613382, 46.4259036 ], + [ 9.1620463, 46.425818 ], + [ 9.1626956, 46.425676 ], + [ 9.1632304, 46.4253581 ], + [ 9.1629451, 46.4249785 ], + [ 9.162671, 46.4246963 ], + [ 9.1623812, 46.4244314 ], + [ 9.1619805, 46.4240537 ], + [ 9.1618137, 46.4237697 ], + [ 9.1617631, 46.423484 ], + [ 9.1616845, 46.4231068 ], + [ 9.1615736, 46.4227648 ], + [ 9.1613019, 46.4225569 ], + [ 9.1612264, 46.4222543 ], + [ 9.1611971, 46.4218707 ], + [ 9.1611259, 46.4214706 ], + [ 9.1610478, 46.4211108 ], + [ 9.1611225, 46.4206224 ], + [ 9.1608725, 46.4200475 ], + [ 9.1608127, 46.4197503 ], + [ 9.1606041, 46.4191747 ], + [ 9.1601545, 46.4188436 ], + [ 9.1599899, 46.4186284 ], + [ 9.1596482, 46.4182898 ], + [ 9.1591757, 46.418005 ], + [ 9.158665, 46.4178238 ], + [ 9.1580504, 46.4177246 ], + [ 9.1570698, 46.4175966 ], + [ 9.1566225, 46.4175692 ], + [ 9.1560422, 46.4175267 ], + [ 9.1556693, 46.4175096 ], + [ 9.1556921, 46.4175021 ], + [ 9.1561682, 46.4173471 ], + [ 9.1570434, 46.4170467 ], + [ 9.1580834, 46.4167381 ], + [ 9.1589529, 46.4165182 ], + [ 9.1601186, 46.4162535 ], + [ 9.1612077, 46.4159038 ], + [ 9.162012, 46.4157308 ], + [ 9.1623464, 46.4158401 ], + [ 9.1625898, 46.415951 ], + [ 9.1629402, 46.4160257 ], + [ 9.1631453, 46.4159823 ], + [ 9.1632678, 46.415946 ], + [ 9.1634557, 46.4158743 ], + [ 9.1637427, 46.4157952 ], + [ 9.1641556, 46.4157659 ], + [ 9.1643966, 46.4158021 ], + [ 9.1648698, 46.415852 ], + [ 9.1652619, 46.4159605 ], + [ 9.1655203, 46.4160309 ], + [ 9.1657865, 46.4160669 ], + [ 9.1662016, 46.4161292 ], + [ 9.1668394, 46.4161421 ], + [ 9.1670816, 46.4162128 ], + [ 9.1673423, 46.4163577 ], + [ 9.1676782, 46.4165129 ], + [ 9.1681453, 46.4166259 ], + [ 9.168518, 46.4166373 ], + [ 9.1691144, 46.4166737 ], + [ 9.1694673, 46.4165993 ], + [ 9.1696808, 46.4167909 ], + [ 9.1698508, 46.41692 ], + [ 9.1700727, 46.4171457 ], + [ 9.1704132, 46.4174212 ], + [ 9.1706956, 46.4177091 ], + [ 9.1710195, 46.4179963 ], + [ 9.1715568, 46.4182458 ], + [ 9.171914, 46.4183032 ], + [ 9.1722128, 46.4183156 ], + [ 9.1729523, 46.4184301 ], + [ 9.1735063, 46.4184385 ], + [ 9.1740085, 46.4183502 ], + [ 9.1743946, 46.4182697 ], + [ 9.1748386, 46.4181939 ], + [ 9.1752084, 46.4181135 ], + [ 9.1754069, 46.4181161 ], + [ 9.1758461, 46.4181436 ], + [ 9.1763879, 46.4182784 ], + [ 9.1768419, 46.4184889 ], + [ 9.1771201, 46.4186451 ], + [ 9.1774612, 46.4187085 ], + [ 9.1780197, 46.4188543 ], + [ 9.1783242, 46.4190444 ], + [ 9.1785479, 46.4192988 ], + [ 9.1787474, 46.419588 ], + [ 9.1791972, 46.419919 ], + [ 9.1797208, 46.4200196 ], + [ 9.180275, 46.4200051 ], + [ 9.1806015, 46.4201203 ], + [ 9.1808792, 46.4202593 ], + [ 9.1813098, 46.4205275 ], + [ 9.1816919, 46.4208252 ], + [ 9.1819139, 46.4210281 ], + [ 9.1821908, 46.421167 ], + [ 9.1823893, 46.4213988 ], + [ 9.1825408, 46.4217346 ], + [ 9.1826285, 46.4221344 ], + [ 9.1827549, 46.4224477 ], + [ 9.1830531, 46.4227181 ], + [ 9.1837665, 46.4227756 ], + [ 9.1844685, 46.4227301 ], + [ 9.1849728, 46.4227335 ], + [ 9.1852488, 46.4228209 ], + [ 9.1854869, 46.4230177 ], + [ 9.1857488, 46.4231684 ], + [ 9.1861271, 46.4233515 ], + [ 9.1864327, 46.4235658 ], + [ 9.1865506, 46.4236485 ], + [ 9.1867656, 46.4239087 ], + [ 9.1868143, 46.4241315 ], + [ 9.1868802, 46.4243598 ], + [ 9.1870796, 46.4246431 ], + [ 9.1873811, 46.424988 ], + [ 9.1877145, 46.4253151 ], + [ 9.1879456, 46.4255465 ], + [ 9.1881447, 46.4258184 ], + [ 9.1882187, 46.4260466 ], + [ 9.1884571, 46.4262492 ], + [ 9.1887263, 46.4263766 ], + [ 9.1892627, 46.4265916 ], + [ 9.1897151, 46.4267736 ], + [ 9.1899867, 46.4269757 ], + [ 9.1902344, 46.4271895 ], + [ 9.1904151, 46.4274216 ], + [ 9.1907758, 46.4275592 ], + [ 9.191245, 46.4277352 ], + [ 9.1917381, 46.4278934 ], + [ 9.1923747, 46.4281126 ], + [ 9.1927501, 46.428227 ], + [ 9.1930775, 46.4283651 ], + [ 9.1936138, 46.4285514 ], + [ 9.1939712, 46.4286145 ], + [ 9.1943063, 46.4287409 ], + [ 9.1945023, 46.4289155 ], + [ 9.1947635, 46.4290431 ], + [ 9.1951226, 46.4291578 ], + [ 9.195331, 46.4291889 ], + [ 9.1957793, 46.4292448 ], + [ 9.1959518, 46.4294484 ], + [ 9.1962102, 46.4296654 ], + [ 9.1965202, 46.4297694 ], + [ 9.1967933, 46.4298634 ], + [ 9.1969433, 46.4298766 ], + [ 9.1970391, 46.4298442 ], + [ 9.1970134, 46.4297307 ], + [ 9.1971508, 46.4295784 ], + [ 9.1973924, 46.4294297 ], + [ 9.1975771, 46.4293544 ], + [ 9.1976658, 46.4293065 ], + [ 9.1979343, 46.429059 ], + [ 9.198013, 46.4289284 ], + [ 9.197896, 46.4287801 ], + [ 9.1980349, 46.4287003 ], + [ 9.198206, 46.4286614 ], + [ 9.1985495, 46.4283922 ], + [ 9.1985686, 46.4283039 ], + [ 9.1985113, 46.4281443 ], + [ 9.1985386, 46.4280559 ], + [ 9.1989283, 46.4280861 ], + [ 9.1991378, 46.4280777 ], + [ 9.1992487, 46.4280345 ], + [ 9.1994403, 46.4279487 ], + [ 9.199797, 46.4278655 ], + [ 9.1999285, 46.4277548 ], + [ 9.2001519, 46.4274977 ], + [ 9.2003491, 46.4273342 ], + [ 9.2005399, 46.4272226 ], + [ 9.200663, 46.4271068 ], + [ 9.2006827, 46.4270133 ], + [ 9.2006209, 46.4269625 ], + [ 9.2005597, 46.4269065 ], + [ 9.2005281, 46.4268605 ], + [ 9.2005867, 46.426813 ], + [ 9.2006617, 46.4268169 ], + [ 9.2007587, 46.4268258 ], + [ 9.2008483, 46.4268037 ], + [ 9.200898, 46.4267304 ], + [ 9.2009038, 46.4266838 ], + [ 9.2009082, 46.4265957 ], + [ 9.2009827, 46.4265843 ], + [ 9.2010432, 46.4265936 ], + [ 9.2011416, 46.426618 ], + [ 9.2012762, 46.4266315 ], + [ 9.2013496, 46.4265889 ], + [ 9.2013323, 46.4265063 ], + [ 9.2014046, 46.4264276 ], + [ 9.2015625, 46.4264562 ], + [ 9.2017414, 46.4264328 ], + [ 9.2021786, 46.4262965 ], + [ 9.2025933, 46.4261451 ], + [ 9.202939, 46.425969 ], + [ 9.203188, 46.4257994 ], + [ 9.203393, 46.4256514 ], + [ 9.2036058, 46.4255186 ], + [ 9.2039262, 46.425493 ], + [ 9.2044274, 46.4254748 ], + [ 9.2047063, 46.4255223 ], + [ 9.2050641, 46.4254959 ], + [ 9.205438, 46.4254642 ], + [ 9.2055558, 46.4254107 ], + [ 9.2055973, 46.4253118 ], + [ 9.2056476, 46.4252332 ], + [ 9.2057506, 46.4252007 ], + [ 9.2058725, 46.4252453 ], + [ 9.2059416, 46.4253219 ], + [ 9.2060354, 46.4254291 ], + [ 9.2061752, 46.425577 ], + [ 9.2063751, 46.4257448 ], + [ 9.2065782, 46.4257881 ], + [ 9.2066888, 46.4257399 ], + [ 9.2067376, 46.4256148 ], + [ 9.2068966, 46.4254519 ], + [ 9.2071907, 46.425292 ], + [ 9.2075316, 46.4251729 ], + [ 9.208021, 46.425041 ], + [ 9.2084837, 46.4249925 ], + [ 9.2089105, 46.4250117 ], + [ 9.2090963, 46.4249467 ], + [ 9.2092968, 46.4249125 ], + [ 9.2096219, 46.4250057 ], + [ 9.2099058, 46.4249806 ], + [ 9.2101577, 46.4249249 ], + [ 9.2102976, 46.4248503 ], + [ 9.2104375, 46.4247756 ], + [ 9.2105408, 46.4247274 ], + [ 9.2106154, 46.4247211 ], + [ 9.2106393, 46.424757 ], + [ 9.210612, 46.4248402 ], + [ 9.2105625, 46.4249444 ], + [ 9.2105219, 46.4250694 ], + [ 9.2104323, 46.4252171 ], + [ 9.2104417, 46.4255038 ], + [ 9.2110359, 46.4252881 ], + [ 9.2116239, 46.4250524 ], + [ 9.212405, 46.4248033 ], + [ 9.212772, 46.4246431 ], + [ 9.2130514, 46.4245358 ], + [ 9.2132882, 46.4244909 ], + [ 9.2135862, 46.4244965 ], + [ 9.2138092, 46.4244828 ], + [ 9.214118, 46.4243647 ], + [ 9.2144563, 46.4242358 ], + [ 9.2146779, 46.4241809 ], + [ 9.2149454, 46.4241664 ], + [ 9.2151677, 46.424132 ], + [ 9.2154177, 46.4240354 ], + [ 9.2155919, 46.4238988 ], + [ 9.2156917, 46.4237634 ], + [ 9.2158666, 46.4236474 ], + [ 9.2160428, 46.4235725 ], + [ 9.2162941, 46.4235171 ], + [ 9.216563, 46.4235438 ], + [ 9.2168022, 46.4235709 ], + [ 9.2170254, 46.4235674 ], + [ 9.2172023, 46.4235131 ], + [ 9.2174523, 46.4234165 ], + [ 9.2176874, 46.4233202 ], + [ 9.2178923, 46.423214 ], + [ 9.2181122, 46.4231075 ], + [ 9.2183179, 46.4230219 ], + [ 9.218555, 46.4229873 ], + [ 9.2187772, 46.4229529 ], + [ 9.2189842, 46.4229085 ], + [ 9.2191885, 46.4227817 ], + [ 9.2194209, 46.422603 ], + [ 9.2196661, 46.4223623 ], + [ 9.2198532, 46.4221637 ], + [ 9.2200828, 46.4219026 ], + [ 9.2203281, 46.4216619 ], + [ 9.2206443, 46.4213171 ], + [ 9.2207441, 46.4211817 ], + [ 9.2208611, 46.4211181 ], + [ 9.2210516, 46.4210224 ], + [ 9.2214043, 46.420883 ], + [ 9.2216249, 46.4207971 ], + [ 9.2218298, 46.4206909 ], + [ 9.2219587, 46.4205345 ], + [ 9.2219847, 46.4204208 ], + [ 9.2220845, 46.4202853 ], + [ 9.2222333, 46.420283 ], + [ 9.2224735, 46.420341 ], + [ 9.222668, 46.4203688 ], + [ 9.2228313, 46.420356 ], + [ 9.2229477, 46.4202717 ], + [ 9.2231936, 46.4200516 ], + [ 9.2233941, 46.4198116 ], + [ 9.2235656, 46.4195927 ], + [ 9.2237824, 46.4193936 ], + [ 9.2240286, 46.4191838 ], + [ 9.224289, 46.4189531 ], + [ 9.2245647, 46.4187325 ], + [ 9.2247689, 46.4186058 ], + [ 9.2250202, 46.4185503 ], + [ 9.2253906, 46.418493 ], + [ 9.2252384, 46.4183924 ], + [ 9.2251883, 46.4182284 ], + [ 9.2252874, 46.4180724 ], + [ 9.2252982, 46.4179487 ], + [ 9.2253111, 46.4178867 ], + [ 9.2253811, 46.4177517 ], + [ 9.2254183, 46.4175246 ], + [ 9.2254128, 46.4173599 ], + [ 9.2254071, 46.4171849 ], + [ 9.2253851, 46.416969 ], + [ 9.2253326, 46.416733 ], + [ 9.2251906, 46.4164881 ], + [ 9.2251118, 46.4163555 ], + [ 9.2250461, 46.4161712 ], + [ 9.225129, 46.4159742 ], + [ 9.2253408, 46.4157518 ], + [ 9.2253775, 46.4156078 ], + [ 9.2255527, 46.4154216 ], + [ 9.2257259, 46.4151268 ], + [ 9.2257736, 46.4147979 ], + [ 9.2258691, 46.4140179 ], + [ 9.2258486, 46.4136685 ], + [ 9.2258768, 46.4135133 ], + [ 9.2260248, 46.4134901 ], + [ 9.226104, 46.4136472 ], + [ 9.2260955, 46.4138823 ], + [ 9.2260958, 46.4141116 ], + [ 9.2262636, 46.4144414 ], + [ 9.2264091, 46.414588 ], + [ 9.2265535, 46.4146774 ], + [ 9.2266931, 46.4146694 ], + [ 9.2267565, 46.4145709 ], + [ 9.2267336, 46.4143936 ], + [ 9.2266025, 46.4141894 ], + [ 9.226477, 46.4139106 ], + [ 9.2266965, 46.4135402 ], + [ 9.226845, 46.4132234 ], + [ 9.2269758, 46.4130847 ], + [ 9.2271081, 46.4127816 ], + [ 9.227181, 46.4124776 ], + [ 9.2271237, 46.4122436 ], + [ 9.2270945, 46.4121237 ], + [ 9.2270807, 46.4119519 ], + [ 9.2272179, 46.4115957 ], + [ 9.2271783, 46.4114344 ], + [ 9.2272637, 46.4112611 ], + [ 9.2272899, 46.4110714 ], + [ 9.227281, 46.4110547 ], + [ 9.2274736, 46.411146 ], + [ 9.2275567, 46.4113709 ], + [ 9.2276309, 46.4115991 ], + [ 9.2277238, 46.4116548 ], + [ 9.2278165, 46.4114814 ], + [ 9.2278035, 46.4108396 ], + [ 9.227538, 46.4105802 ], + [ 9.2275399, 46.4103911 ], + [ 9.2275491, 46.4101788 ], + [ 9.2275525, 46.4100354 ], + [ 9.2276083, 46.4099772 ], + [ 9.2277586, 46.4100207 ], + [ 9.2277985, 46.410220699999996 ], + [ 9.2277688, 46.410307 ], + [ 9.2277476, 46.4104279 ], + [ 9.2279291, 46.4106542 ], + [ 9.2281482, 46.4107652 ], + [ 9.2284647, 46.4108461 ], + [ 9.2287307, 46.4108761 ], + [ 9.2290136, 46.4109231 ], + [ 9.2290601, 46.4108306 ], + [ 9.2289735, 46.4107174 ], + [ 9.2285402, 46.4106212 ], + [ 9.2283956, 46.4102568 ], + [ 9.2284647, 46.4101067 ], + [ 9.2284673, 46.4096938 ], + [ 9.2284749, 46.4094301 ], + [ 9.2284924, 46.4092234 ], + [ 9.2286222, 46.4089175 ], + [ 9.2288592, 46.408587 ], + [ 9.2290312, 46.4083033 ], + [ 9.2291882, 46.4080601 ], + [ 9.2293201, 46.4077942 ], + [ 9.2294922, 46.4075162 ], + [ 9.2297222, 46.4072201 ], + [ 9.2298323, 46.407058 ], + [ 9.2299002, 46.4068734 ], + [ 9.2298998, 46.4066154 ], + [ 9.2297916, 46.4063421 ], + [ 9.2296874, 46.406189 ], + [ 9.2295063, 46.4059742 ], + [ 9.2293479, 46.4057073 ], + [ 9.2291975, 46.4054118 ], + [ 9.2289939, 46.405031 ], + [ 9.2287248, 46.4046628 ], + [ 9.2285936, 46.4044299 ], + [ 9.2285552, 46.4042759 ], + [ 9.2286244, 46.4041314 ], + [ 9.2286664, 46.4039014 ], + [ 9.2286105, 46.4037361 ], + [ 9.2284808, 46.4035491 ], + [ 9.2283239, 46.4033281 ], + [ 9.2282433, 46.4031518 ], + [ 9.228101, 46.402856 ], + [ 9.2280851, 46.4026213 ], + [ 9.2280373, 46.4024272 ], + [ 9.2280126, 46.4021983 ], + [ 9.2280147, 46.4020149 ], + [ 9.2280766, 46.4018934 ], + [ 9.2281409, 46.4018466 ], + [ 9.2282512, 46.4019136 ], + [ 9.2282812, 46.4020851 ], + [ 9.228303, 46.402228 ], + [ 9.228311, 46.4024686 ], + [ 9.2283324, 46.4026001 ], + [ 9.2284326, 46.4028793 ], + [ 9.2284612, 46.4029821 ], + [ 9.2285148, 46.4031014 ], + [ 9.2285869, 46.4032665 ], + [ 9.2287041, 46.403322 ], + [ 9.2288222, 46.4031538 ], + [ 9.2288178, 46.403022 ], + [ 9.2287868, 46.4028449 ], + [ 9.2287497, 46.4027078 ], + [ 9.2287315, 46.4024274 ], + [ 9.2287166, 46.4022212 ], + [ 9.2287589, 46.4020257 ], + [ 9.2288422, 46.4017893 ], + [ 9.2287789, 46.401647 ], + [ 9.2285605, 46.4015302 ], + [ 9.2282606, 46.4014606 ], + [ 9.2280819, 46.4013145 ], + [ 9.2281721, 46.40129 ], + [ 9.2283972, 46.401361 ], + [ 9.2286728, 46.4014367 ], + [ 9.2287992, 46.4014977 ], + [ 9.2289403, 46.4015126 ], + [ 9.2289364, 46.4013923 ], + [ 9.2288762, 46.4013416 ], + [ 9.2286244, 46.4012254 ], + [ 9.2284736, 46.4011648 ], + [ 9.2282523, 46.4009849 ], + [ 9.2281563, 46.4008376 ], + [ 9.2280495, 46.4008508 ], + [ 9.2278733, 46.4007848 ], + [ 9.2275485, 46.4007213 ], + [ 9.2273227, 46.4006276 ], + [ 9.227269100000001, 46.400531 ], + [ 9.2272502, 46.400451 ], + [ 9.2273279, 46.4003179 ], + [ 9.227415, 46.4001962 ], + [ 9.2275869, 46.4001361 ], + [ 9.228016, 46.4001062 ], + [ 9.2287535, 46.3999667 ], + [ 9.2291877, 46.3999436 ], + [ 9.22953, 46.3999951 ], + [ 9.2298124, 46.4000313 ], + [ 9.2300234, 46.4000198 ], + [ 9.2302799, 46.3999588 ], + [ 9.2305591, 46.3998731 ], + [ 9.2307404, 46.3996752 ], + [ 9.2308721, 46.3993807 ], + [ 9.230873, 46.3990638 ], + [ 9.2307379, 46.3988871 ], + [ 9.2304655, 46.3988101 ], + [ 9.2302302, 46.3987977 ], + [ 9.2300303, 46.3988008 ], + [ 9.2298995, 46.3987541 ], + [ 9.2298616, 46.3986653 ], + [ 9.2296284, 46.3987178 ], + [ 9.2292207, 46.3988011 ], + [ 9.2287839, 46.398891 ], + [ 9.2281064, 46.3989293 ], + [ 9.2274688, 46.3989946 ], + [ 9.2271064, 46.398899 ], + [ 9.2264304, 46.3986147 ], + [ 9.2256381, 46.3984244 ], + [ 9.2252012, 46.3984867 ], + [ 9.2246158, 46.3985327 ], + [ 9.2242627, 46.3986712 ], + [ 9.2224626, 46.3994742 ], + [ 9.2218558, 46.3998566 ], + [ 9.221612499999999, 46.3999485 ], + [ 9.2214314, 46.4001264 ], + [ 9.2213633, 46.4004777 ], + [ 9.2209985, 46.4007323 ], + [ 9.2207491, 46.4008376 ], + [ 9.2203895, 46.4008525 ], + [ 9.2200799, 46.400756 ], + [ 9.2198076, 46.4006578 ], + [ 9.2195497, 46.4006276 ], + [ 9.2193498, 46.4005792 ], + [ 9.2190476, 46.4005372 ], + [ 9.2186235, 46.4006175 ], + [ 9.2179732, 46.4006922 ], + [ 9.2174537, 46.4006912 ], + [ 9.2171688, 46.4009261 ], + [ 9.2167708, 46.4009876 ], + [ 9.2163484, 46.4010956 ], + [ 9.2161302, 46.4009608 ], + [ 9.215229, 46.4010947 ], + [ 9.2145531, 46.4012067 ], + [ 9.214281100000001, 46.4014414 ], + [ 9.2141439, 46.4017199 ], + [ 9.2138841, 46.4019267 ], + [ 9.2134463, 46.4019888 ], + [ 9.2130318, 46.4021189 ], + [ 9.2125499, 46.4022701 ], + [ 9.211937, 46.4022706 ], + [ 9.2115802, 46.4023498 ], + [ 9.211261, 46.4023825 ], + [ 9.2108663, 46.4025178 ], + [ 9.2102731, 46.4027251 ], + [ 9.2093357, 46.4029702 ], + [ 9.2088982, 46.4030414 ], + [ 9.2085153, 46.4031396 ], + [ 9.2076397, 46.4032639 ], + [ 9.2074793, 46.4032295 ], + [ 9.2070572, 46.4029503 ], + [ 9.2068543, 46.4028614 ], + [ 9.2065541, 46.4026541 ], + [ 9.2061518, 46.402559 ], + [ 9.2059592, 46.4025109 ], + [ 9.2057535, 46.4024092 ], + [ 9.205526, 46.4023365 ], + [ 9.2052435, 46.4022741 ], + [ 9.205100999999999, 46.4022667 ], + [ 9.20442, 46.4021246 ], + [ 9.2039854, 46.4020583 ], + [ 9.2037017, 46.4020849 ], + [ 9.2034234, 46.4021528 ], + [ 9.2029386, 46.4022431 ], + [ 9.2025025, 46.4022563 ], + [ 9.201808, 46.4022479 ], + [ 9.2016578, 46.4023044 ], + [ 9.2014023, 46.4023465 ], + [ 9.2012055, 46.4023941 ], + [ 9.2009314, 46.4024397 ], + [ 9.2003909, 46.4024926 ], + [ 9.1999325, 46.4025443 ], + [ 9.1996305, 46.4025839 ], + [ 9.1992807, 46.4026515 ], + [ 9.1988418, 46.4027282 ], + [ 9.1984919, 46.4027177 ], + [ 9.1982867, 46.4026319 ], + [ 9.1980912, 46.4025427 ], + [ 9.1979478, 46.4025353 ], + [ 9.1976043, 46.4024198 ], + [ 9.1971971, 46.4023466 ], + [ 9.1966092, 46.4022157 ], + [ 9.1958507, 46.4020907 ], + [ 9.1944669, 46.4019594 ], + [ 9.194104, 46.4018219 ], + [ 9.1938652, 46.4017021 ], + [ 9.193129, 46.4013339 ], + [ 9.1927668, 46.4011938 ], + [ 9.1923753, 46.4010541 ], + [ 9.1920967, 46.4009365 ], + [ 9.1919215, 46.4008205 ], + [ 9.1914545, 46.4006074 ], + [ 9.1911952, 46.400459 ], + [ 9.1909992, 46.4003028 ], + [ 9.1908375, 46.4000054 ], + [ 9.1905567, 46.3999927 ], + [ 9.1902417, 46.3999804 ], + [ 9.1900013, 46.3999613 ], + [ 9.1896103, 46.3998874 ], + [ 9.1892443, 46.3998302 ], + [ 9.1888948, 46.3997554 ], + [ 9.1887609, 46.3997117 ], + [ 9.1883833, 46.3995458 ], + [ 9.1881671, 46.3994976 ], + [ 9.1879173, 46.3994386 ], + [ 9.1875925, 46.399375 ], + [ 9.1873907, 46.3992922 ], + [ 9.1871574, 46.3992156 ], + [ 9.1870511, 46.3992746 ], + [ 9.1868718, 46.3993347 ], + [ 9.1866797, 46.3992749 ], + [ 9.1865589, 46.3993857 ], + [ 9.1864896, 46.3992778 ], + [ 9.1862672, 46.3993158 ], + [ 9.1861486, 46.3992144 ], + [ 9.186018, 46.3992738 ], + [ 9.1858746, 46.3991901 ], + [ 9.185728, 46.3992555 ], + [ 9.1854275, 46.3991628 ], + [ 9.1850753, 46.3992831 ], + [ 9.1847695, 46.3992764 ], + [ 9.1844917, 46.399384 ], + [ 9.1841427, 46.3995788 ], + [ 9.1839828, 46.3997361 ], + [ 9.1838058, 46.3998707 ], + [ 9.1835181, 46.3999212 ], + [ 9.1828514, 46.3997656 ], + [ 9.1825745, 46.3996495 ], + [ 9.1823533, 46.3994697 ], + [ 9.1819941, 46.3993435 ], + [ 9.1817384, 46.399382 ], + [ 9.1813944, 46.3994791 ], + [ 9.1811019, 46.3996328 ], + [ 9.1808006, 46.3997694 ], + [ 9.1805822, 46.3999046 ], + [ 9.1803037, 46.3999894 ], + [ 9.180065, 46.4000983 ], + [ 9.1798118, 46.4001874 ], + [ 9.1795361, 46.4000587 ], + [ 9.1791383, 46.3999489 ], + [ 9.1788535, 46.3999636 ], + [ 9.1786389, 46.4000384 ], + [ 9.1785192, 46.4000096 ], + [ 9.1783255, 46.4000258 ], + [ 9.177999, 46.3999853 ], + [ 9.1777368, 46.3998688 ], + [ 9.1775483, 46.3997188 ], + [ 9.1774492, 46.3996975 ], + [ 9.1773307, 46.3998295 ], + [ 9.1770055, 46.4000315 ], + [ 9.176889599999999, 46.4005217 ], + [ 9.176684, 46.4010068 ], + [ 9.1758212, 46.4019089 ], + [ 9.175392, 46.4022155 ], + [ 9.1752064, 46.4024093 ], + [ 9.1751347, 46.4024819 ], + [ 9.1748888, 46.4024926 ], + [ 9.1745035, 46.4024677 ], + [ 9.1743652, 46.4024664 ], + [ 9.1742631, 46.4025022 ], + [ 9.1741711, 46.4025479 ], + [ 9.1740364, 46.4025056 ], + [ 9.1739603, 46.402438599999996 ], + [ 9.1737628, 46.4024144 ], + [ 9.1736426, 46.402365 ], + [ 9.1736103, 46.4022701 ], + [ 9.1735161, 46.4020976 ], + [ 9.1733699, 46.4019976 ], + [ 9.1731835, 46.4018641 ], + [ 9.1729134, 46.4017558 ], + [ 9.1726645, 46.4016744 ], + [ 9.1725425, 46.4015466 ], + [ 9.1725239, 46.4014208 ], + [ 9.1725061, 46.4013222 ], + [ 9.1724541, 46.4012481 ], + [ 9.1722851, 46.4011995 ], + [ 9.1720783, 46.4012129 ], + [ 9.1719526, 46.4012762 ], + [ 9.1717257, 46.4012729 ], + [ 9.171475, 46.4011335 ], + [ 9.1712019, 46.4010831 ], + [ 9.1707885, 46.4010963 ], + [ 9.1704573, 46.4010605 ], + [ 9.1698745, 46.4008581 ], + [ 9.1691546, 46.4005349 ], + [ 9.1688747, 46.4004267 ], + [ 9.1681716, 46.3999943 ], + [ 9.1677933, 46.3998842 ], + [ 9.1672704, 46.3996979 ], + [ 9.1666631, 46.3995163 ], + [ 9.1662644, 46.3993757 ], + [ 9.1658174, 46.3992269 ], + [ 9.1655968, 46.3991404 ], + [ 9.1653598, 46.399127 ], + [ 9.1650866, 46.3991497 ], + [ 9.1648261, 46.3990616 ], + [ 9.1644973, 46.3989456 ], + [ 9.1642213, 46.3989065 ], + [ 9.1639924, 46.3986623 ], + [ 9.1637979, 46.3985529 ], + [ 9.1635642, 46.3985392 ], + [ 9.1631632, 46.3986317 ], + [ 9.1627428, 46.3987821 ], + [ 9.162586, 46.3988364 ], + [ 9.1621834, 46.39888 ], + [ 9.1616346, 46.3988998 ], + [ 9.161429, 46.3988512 ], + [ 9.1609848, 46.3986361 ], + [ 9.16085, 46.3985863 ], + [ 9.1607785, 46.3985643 ], + [ 9.1607935, 46.3985237 ], + [ 9.1608425, 46.3984797 ], + [ 9.1605827, 46.3984376 ], + [ 9.1602509, 46.3984829 ], + [ 9.1598757, 46.3985981 ], + [ 9.1595243, 46.3986669 ], + [ 9.1591551, 46.3987128 ], + [ 9.1588132, 46.3988506 ], + [ 9.1584454, 46.3989427 ], + [ 9.1581793, 46.3989322 ], + [ 9.1579966, 46.3988342 ], + [ 9.157734, 46.3988352 ], + [ 9.157483299999999, 46.3987987 ], + [ 9.1572456, 46.3986583 ], + [ 9.157089299999999, 46.3985742 ], + [ 9.1567249, 46.3985164 ], + [ 9.1560545, 46.398394 ], + [ 9.155359, 46.3984017 ], + [ 9.1546892, 46.3984031 ], + [ 9.1541567, 46.3982989 ], + [ 9.1534554, 46.3981222 ], + [ 9.1531307, 46.3981099 ], + [ 9.1528164, 46.3981981 ], + [ 9.1523403, 46.3984099 ], + [ 9.1520192, 46.3985388 ], + [ 9.1518552, 46.3986218 ], + [ 9.1519891, 46.3987697 ], + [ 9.1517809, 46.3988939 ], + [ 9.1515651, 46.398779 ], + [ 9.1514459, 46.3988413 ], + [ 9.151003, 46.39892 ], + [ 9.1505523, 46.3989095 ], + [ 9.1503765, 46.3990044 ], + [ 9.1498501, 46.3993495 ], + [ 9.1495131, 46.3996168 ], + [ 9.1493317, 46.3996656 ], + [ 9.1491157, 46.3996977 ], + [ 9.1489334, 46.3998474 ], + [ 9.148747, 46.3998876 ], + [ 9.1484647, 46.3999092 ], + [ 9.1480842, 46.3998803 ], + [ 9.1478548, 46.3998492 ], + [ 9.1476121, 46.3998328 ], + [ 9.1475119, 46.3998285 ], + [ 9.1474059, 46.3998935 ], + [ 9.1474045, 46.3999771 ], + [ 9.1474375, 46.4000976 ], + [ 9.1474328, 46.4002072 ], + [ 9.1473214, 46.400255 ], + [ 9.1471051, 46.4002525 ], + [ 9.1468034, 46.4001994 ], + [ 9.1463994, 46.4000701 ], + [ 9.1459088, 46.4000803 ], + [ 9.1456491, 46.4001735 ], + [ 9.1453917, 46.4002062 ], + [ 9.1451165, 46.4003229 ], + [ 9.1449506, 46.4003455 ], + [ 9.1445627, 46.4003398 ], + [ 9.1439869, 46.4003303 ], + [ 9.1436447, 46.400331 ], + [ 9.1433393, 46.4002355 ], + [ 9.1424526, 46.400267 ], + [ 9.1421324, 46.4003218 ], + [ 9.1416906, 46.4004878 ], + [ 9.141327, 46.4004296 ], + [ 9.14095, 46.4003579 ], + [ 9.1405047, 46.4004146 ], + [ 9.1402921, 46.4003495 ], + [ 9.1400756, 46.4003664 ], + [ 9.1397302, 46.4004444 ], + [ 9.1388763, 46.4004845 ], + [ 9.1383349, 46.4004062 ], + [ 9.1379581, 46.4003671 ], + [ 9.1378108, 46.4004153 ], + [ 9.137607, 46.4004987 ], + [ 9.1374275, 46.4005818 ], + [ 9.1371106, 46.4007415 ], + [ 9.1367922, 46.4008781 ], + [ 9.1365629, 46.4009275 ], + [ 9.1363503, 46.4010168 ], + [ 9.1360567, 46.4011418 ], + [ 9.135796, 46.4012547 ], + [ 9.1354939, 46.4013683 ], + [ 9.1352328, 46.4014927 ], + [ 9.1349573, 46.4016516 ], + [ 9.1347214, 46.4017756 ], + [ 9.134373, 46.4019931 ], + [ 9.1340884, 46.4021466 ], + [ 9.1338194, 46.4022539 ], + [ 9.1335321, 46.4023214 ], + [ 9.1332783, 46.4023941 ], + [ 9.1331164, 46.402517 ], + [ 9.1330411, 46.4027359 ], + [ 9.1330288, 46.4028622 ], + [ 9.1330213, 46.4031432 ], + [ 9.1330052, 46.403407 ], + [ 9.1328539, 46.4035871 ], + [ 9.1326686, 46.4037447 ], + [ 9.1324332, 46.4038859 ], + [ 9.1321726, 46.4039989 ], + [ 9.1318364, 46.4040899 ], + [ 9.1319115, 46.4043582 ], + [ 9.131916499999999, 46.4045186 ], + [ 9.1318875, 46.4046566 ], + [ 9.1318844, 46.4048172 ], + [ 9.1319357, 46.4051087 ], + [ 9.1319941, 46.4053886 ], + [ 9.1319989, 46.4055433 ], + [ 9.1320255, 46.4058466 ], + [ 9.1320929, 46.4061323 ], + [ 9.132201, 46.4064172 ], + [ 9.1322141, 46.4069127 ], + [ 9.1322795, 46.407134 ], + [ 9.1325775, 46.4083428 ], + [ 9.1325245, 46.4087276 ], + [ 9.1326249, 46.4091563 ], + [ 9.1328868, 46.4094487 ], + [ 9.1330341, 46.4096598 ], + [ 9.1327495, 46.4103331 ], + [ 9.1326279, 46.4108131 ], + [ 9.1326507, 46.4112305 ], + [ 9.1328084, 46.4115918 ], + [ 9.1329202, 46.4120482 ], + [ 9.1330643, 46.4123154 ], + [ 9.1331925, 46.4126706 ], + [ 9.1331091, 46.413123 ], + [ 9.1327712, 46.413835399999996 ], + [ 9.1324914, 46.4142235 ], + [ 9.1323981, 46.4146695 ], + [ 9.1322471, 46.4148334 ], + [ 9.1320335, 46.4151532 ], + [ 9.1320387, 46.4154239 ], + [ 9.1321406, 46.4157719 ], + [ 9.1321726, 46.4159892 ], + [ 9.1321521, 46.4161385 ], + [ 9.1321695, 46.4164076 ], + [ 9.1322756, 46.4166296 ], + [ 9.132366, 46.4168326 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "JBG0034", + "country" : "CHE", + "name" : [ + { + "text" : "Eidgenössisches Jagdbanngebiet Trescolmen", + "lang" : "de-CH" + }, + { + "text" : "District franc fédéral Trescolmen", + "lang" : "fr-CH" + }, + { + "text" : "Bandita federale di caccia Trescolmen", + "lang" : "it-CH" + }, + { + "text" : "Federal Game Reserve Trescolmen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.2319605, 46.4438716 ], + [ 6.2322536, 46.4438105 ], + [ 6.232357, 46.4437889 ], + [ 6.2332804, 46.4435343 ], + [ 6.2334282, 46.4434911 ], + [ 6.2335358, 46.4434595 ], + [ 6.2340866, 46.4432982 ], + [ 6.2343121, 46.4432163 ], + [ 6.2344657, 46.4431605 ], + [ 6.2344688999999995, 46.4431593 ], + [ 6.2346, 46.4431117 ], + [ 6.234744, 46.4430593 ], + [ 6.2353089, 46.442835 ], + [ 6.2354258, 46.4427679 ], + [ 6.2356896, 46.4426164 ], + [ 6.2357003, 46.4426104 ], + [ 6.2361925, 46.4423321 ], + [ 6.2362865, 46.4422693 ], + [ 6.2365903, 46.4420656 ], + [ 6.2366808, 46.4420133 ], + [ 6.2370852, 46.441779 ], + [ 6.2372009, 46.441712 ], + [ 6.2374184, 46.441586 ], + [ 6.2375593, 46.4415043 ], + [ 6.2375861, 46.4414891 ], + [ 6.2376618, 46.4414419 ], + [ 6.2379038, 46.4412955 ], + [ 6.2380932, 46.441181 ], + [ 6.2385896, 46.4409022 ], + [ 6.2386612, 46.4408406 ], + [ 6.2388205, 46.4407038 ], + [ 6.2388281, 46.4406973 ], + [ 6.238888, 46.4406191 ], + [ 6.2389223, 46.4405744 ], + [ 6.2389249, 46.4405711 ], + [ 6.2390503, 46.4404076 ], + [ 6.2390507, 46.440407 ], + [ 6.2391334, 46.4402992 ], + [ 6.239174, 46.4402289 ], + [ 6.2392075, 46.4401706 ], + [ 6.2392326, 46.4401271 ], + [ 6.239236, 46.4401212 ], + [ 6.2393453, 46.4399317 ], + [ 6.2393495, 46.4399244 ], + [ 6.2394454, 46.4397581 ], + [ 6.2394851, 46.4395984 ], + [ 6.2395224, 46.4394488 ], + [ 6.2396412, 46.4389712 ], + [ 6.2396443, 46.4389687 ], + [ 6.2397214, 46.4389051 ], + [ 6.2399311, 46.4387318 ], + [ 6.2402158, 46.4384966 ], + [ 6.2403509, 46.4382744 ], + [ 6.2403527, 46.4382714 ], + [ 6.2403895, 46.4380796 ], + [ 6.240422, 46.4379097 ], + [ 6.2404779, 46.4376175 ], + [ 6.2404887, 46.4375936 ], + [ 6.2404913, 46.4375879 ], + [ 6.2405123, 46.4375416 ], + [ 6.2405534, 46.437451 ], + [ 6.2407821, 46.437138 ], + [ 6.241083, 46.4368902 ], + [ 6.2410855, 46.4368882 ], + [ 6.2411693, 46.4368192 ], + [ 6.2415197, 46.4365295 ], + [ 6.2417792, 46.4361333 ], + [ 6.241779, 46.4361313 ], + [ 6.2417528, 46.4358377 ], + [ 6.2417401, 46.4356952 ], + [ 6.2417007, 46.4352747 ], + [ 6.2413945, 46.4347545 ], + [ 6.2412036, 46.4343909 ], + [ 6.2411154, 46.4341964 ], + [ 6.2412246, 46.4338756 ], + [ 6.2412257, 46.4338732 ], + [ 6.2414198, 46.4334822 ], + [ 6.2415293, 46.4332616 ], + [ 6.2415776, 46.4331451 ], + [ 6.2415785, 46.4331422 ], + [ 6.2415948, 46.4330887 ], + [ 6.2415964, 46.4330874 ], + [ 6.241604, 46.4330816 ], + [ 6.241778, 46.4328214 ], + [ 6.24178, 46.4328185 ], + [ 6.2418645999999995, 46.4327595 ], + [ 6.2421956, 46.4325286 ], + [ 6.2422033, 46.4325233 ], + [ 6.2423506, 46.4324004 ], + [ 6.2425329, 46.4322483 ], + [ 6.242772, 46.4319227 ], + [ 6.242788, 46.4317955 ], + [ 6.2428222, 46.4315233 ], + [ 6.2427993, 46.4315151 ], + [ 6.2428013, 46.4313679 ], + [ 6.2429066, 46.4311184 ], + [ 6.2429446, 46.4310626 ], + [ 6.2430281, 46.43094 ], + [ 6.2429751, 46.4309162 ], + [ 6.242069, 46.4302674 ], + [ 6.2420554, 46.4302432 ], + [ 6.242022, 46.4302203 ], + [ 6.2418114, 46.4301317 ], + [ 6.2415462, 46.4300201 ], + [ 6.2414149, 46.4299648 ], + [ 6.2408784, 46.4297032 ], + [ 6.2408597, 46.4296941 ], + [ 6.2406979, 46.4296152 ], + [ 6.2402542, 46.4294421 ], + [ 6.2402441, 46.4294393 ], + [ 6.2395148, 46.4292947 ], + [ 6.2394607, 46.4292836 ], + [ 6.2388657, 46.4291611 ], + [ 6.2387974, 46.4291467 ], + [ 6.2388409, 46.4288495 ], + [ 6.2387075, 46.4286576 ], + [ 6.238707, 46.4286577 ], + [ 6.238707, 46.4286576 ], + [ 6.2377528, 46.4288379 ], + [ 6.2377909, 46.4289808 ], + [ 6.2377923, 46.4289844 ], + [ 6.2377991, 46.4290096 ], + [ 6.2378423, 46.4291721 ], + [ 6.2378508, 46.4294103 ], + [ 6.2378503, 46.4294099 ], + [ 6.2377621, 46.429354 ], + [ 6.237362, 46.4291004 ], + [ 6.2370728, 46.4288754 ], + [ 6.2370642, 46.4288687 ], + [ 6.2362637, 46.428327 ], + [ 6.2357622, 46.4279694 ], + [ 6.2354116, 46.4276325 ], + [ 6.2352488, 46.427526 ], + [ 6.235379, 46.4273175 ], + [ 6.2355078, 46.4272762 ], + [ 6.2358245, 46.4271781 ], + [ 6.2367179, 46.4267979 ], + [ 6.2367158, 46.4267952 ], + [ 6.2367247, 46.4267915 ], + [ 6.2365186, 46.4265329 ], + [ 6.2362403, 46.426311 ], + [ 6.2360367, 46.4261487 ], + [ 6.2359871, 46.4261034 ], + [ 6.2359509, 46.4260437 ], + [ 6.2357745, 46.4257551 ], + [ 6.2357686, 46.4257454 ], + [ 6.2357573, 46.4257509 ], + [ 6.2356659, 46.4257959 ], + [ 6.2355564, 46.4258355 ], + [ 6.2354657, 46.4258441 ], + [ 6.2353578, 46.4258543 ], + [ 6.2353309, 46.4258568 ], + [ 6.2352665, 46.4258511 ], + [ 6.2349408, 46.425822 ], + [ 6.234724, 46.4258391 ], + [ 6.2343023, 46.4258722 ], + [ 6.2342179, 46.4258842 ], + [ 6.2341151, 46.4258989 ], + [ 6.2340569, 46.4259072 ], + [ 6.2339083, 46.4259382 ], + [ 6.233777, 46.425983 ], + [ 6.2335813, 46.4260582 ], + [ 6.2335313, 46.4260774 ], + [ 6.2334267, 46.4261176 ], + [ 6.2333077, 46.42615 ], + [ 6.2333017, 46.4261516 ], + [ 6.2332118, 46.4261707 ], + [ 6.2331897, 46.4261753 ], + [ 6.2330738, 46.4261955 ], + [ 6.2327948, 46.4262366 ], + [ 6.2327069, 46.4262495 ], + [ 6.2327069999999996, 46.4262542 ], + [ 6.2326952, 46.4262559 ], + [ 6.2326967, 46.4262753 ], + [ 6.2326968, 46.426276 ], + [ 6.2322375, 46.4263407 ], + [ 6.2317765, 46.4263961 ], + [ 6.2313801, 46.4264455 ], + [ 6.2312218999999995, 46.4266782 ], + [ 6.2315632, 46.4268107 ], + [ 6.2314135, 46.4270855 ], + [ 6.2314237, 46.4270896 ], + [ 6.2314276, 46.4270912 ], + [ 6.2315157, 46.4271267 ], + [ 6.2317092, 46.4272047 ], + [ 6.2318022, 46.4272422 ], + [ 6.2318933, 46.4272789 ], + [ 6.2318937, 46.427279 ], + [ 6.232412, 46.4274879 ], + [ 6.2326363, 46.4275783 ], + [ 6.2326281, 46.4275877 ], + [ 6.2324872, 46.4277491 ], + [ 6.2331268, 46.4281193 ], + [ 6.2334165, 46.4282871 ], + [ 6.2334261, 46.4282926 ], + [ 6.2330504, 46.4284808 ], + [ 6.2328895, 46.4286581 ], + [ 6.2328858, 46.4286622 ], + [ 6.2328831, 46.4286651 ], + [ 6.2328241, 46.4287411 ], + [ 6.2327823, 46.428795 ], + [ 6.2327281, 46.428865 ], + [ 6.2324926, 46.4291686 ], + [ 6.2320912, 46.4296861 ], + [ 6.2320881, 46.4296902 ], + [ 6.231944, 46.4298759 ], + [ 6.2317415, 46.429831 ], + [ 6.2317401, 46.4298307 ], + [ 6.2315361, 46.4297854 ], + [ 6.2308699, 46.4296376 ], + [ 6.2303943, 46.4295332 ], + [ 6.2303488, 46.4295228 ], + [ 6.2303062, 46.4295132 ], + [ 6.228821, 46.4291869 ], + [ 6.2286634, 46.4291523 ], + [ 6.2286633, 46.4291527 ], + [ 6.2286618, 46.4291559 ], + [ 6.2286528, 46.4291773 ], + [ 6.2286441, 46.4291979 ], + [ 6.2286014, 46.4292513 ], + [ 6.2284989, 46.4293794 ], + [ 6.2284539, 46.4294356 ], + [ 6.2284393, 46.4294501 ], + [ 6.2280729, 46.4298138 ], + [ 6.2277964, 46.430131 ], + [ 6.2277302, 46.4302095 ], + [ 6.227728, 46.4302121 ], + [ 6.2276431, 46.4303128 ], + [ 6.2276128, 46.4303506 ], + [ 6.2276026, 46.4303632 ], + [ 6.2273135, 46.430706 ], + [ 6.2272827, 46.4307425 ], + [ 6.2271212, 46.430918 ], + [ 6.2270789, 46.4309639 ], + [ 6.2269404, 46.4311105 ], + [ 6.2263978, 46.4316643 ], + [ 6.2263451, 46.4317517 ], + [ 6.2262671, 46.4318811 ], + [ 6.2262534, 46.4320784 ], + [ 6.2262684, 46.4321403 ], + [ 6.2262686, 46.4321411 ], + [ 6.2263461, 46.432308 ], + [ 6.2263462, 46.4323081 ], + [ 6.2264907, 46.4325399 ], + [ 6.2268674, 46.4331439 ], + [ 6.2269113, 46.4332144 ], + [ 6.2269047, 46.4332534 ], + [ 6.2270181000000004, 46.4334555 ], + [ 6.2270882, 46.43375 ], + [ 6.2270975, 46.4338866 ], + [ 6.2271402, 46.4345103 ], + [ 6.2271402, 46.4345104 ], + [ 6.2270781, 46.43464 ], + [ 6.2270736, 46.4346442 ], + [ 6.2270685, 46.4346483 ], + [ 6.2269461, 46.4347596 ], + [ 6.2269446, 46.434761 ], + [ 6.2266062, 46.4350502 ], + [ 6.2261358, 46.4354431 ], + [ 6.2258443, 46.4356447 ], + [ 6.2258302, 46.4356558 ], + [ 6.2257677, 46.435699 ], + [ 6.225767, 46.4356995 ], + [ 6.2257427, 46.4357163 ], + [ 6.2257425, 46.4357164 ], + [ 6.2257367, 46.4357205 ], + [ 6.2255531, 46.435772 ], + [ 6.2254669, 46.4357863 ], + [ 6.2254652, 46.4357866 ], + [ 6.2254329, 46.435792 ], + [ 6.2253166, 46.4358142 ], + [ 6.2252515, 46.4358237 ], + [ 6.2252337, 46.4358162 ], + [ 6.2252241, 46.4357776 ], + [ 6.2251828, 46.4357738 ], + [ 6.2251715, 46.4357723 ], + [ 6.2251189, 46.4357676 ], + [ 6.2250259, 46.4357366 ], + [ 6.2249709, 46.4357139 ], + [ 6.2249702, 46.4357136 ], + [ 6.224791, 46.4356396 ], + [ 6.2247766, 46.4356278 ], + [ 6.2247678, 46.4356207 ], + [ 6.2247672, 46.4356202 ], + [ 6.2247531, 46.4356087 ], + [ 6.224654, 46.43557 ], + [ 6.2246497, 46.4355683 ], + [ 6.2244876, 46.4355051 ], + [ 6.2244851, 46.4355045 ], + [ 6.2243199, 46.4354685 ], + [ 6.2241223, 46.4354646 ], + [ 6.2240388, 46.4354788 ], + [ 6.2240366, 46.4354792 ], + [ 6.2238337, 46.4355138 ], + [ 6.2236158, 46.4355509 ], + [ 6.2236151, 46.435551 ], + [ 6.2235541, 46.4355614 ], + [ 6.2232769, 46.4356125 ], + [ 6.2232758, 46.4356127 ], + [ 6.22325, 46.4356174 ], + [ 6.2230612, 46.4356533 ], + [ 6.2229329, 46.4356979 ], + [ 6.2229322, 46.4356981 ], + [ 6.2226943, 46.4357809 ], + [ 6.2226939, 46.435781 ], + [ 6.2226853, 46.435784 ], + [ 6.2226665, 46.4357912 ], + [ 6.222709, 46.4358107 ], + [ 6.2227097, 46.435811 ], + [ 6.2227107, 46.4358129 ], + [ 6.2227844, 46.43587 ], + [ 6.2230099, 46.4360443 ], + [ 6.223163, 46.4361879 ], + [ 6.2233202, 46.436295 ], + [ 6.2233474, 46.4364232 ], + [ 6.2232758, 46.4365445 ], + [ 6.2231749, 46.4366326 ], + [ 6.2228619, 46.4366757 ], + [ 6.2228615, 46.4366758 ], + [ 6.2228614, 46.4366757 ], + [ 6.2226481, 46.4366954 ], + [ 6.2225912, 46.4366916 ], + [ 6.2225301, 46.4366874 ], + [ 6.2222831, 46.4366707 ], + [ 6.2221579, 46.4368393 ], + [ 6.2221272, 46.4368805 ], + [ 6.2221268, 46.4368809 ], + [ 6.2221201, 46.4368866 ], + [ 6.2222133, 46.4369154 ], + [ 6.2222149, 46.4369159 ], + [ 6.2224121, 46.436977 ], + [ 6.2225002, 46.4370006 ], + [ 6.2228449, 46.4370905 ], + [ 6.2228452, 46.4370905 ], + [ 6.2229228, 46.4371108 ], + [ 6.2231508, 46.4371471 ], + [ 6.2231599, 46.4371486 ], + [ 6.2231815, 46.437152 ], + [ 6.2231817, 46.4371522 ], + [ 6.2231821, 46.4371523 ], + [ 6.2231264, 46.4372055 ], + [ 6.22291, 46.4374122 ], + [ 6.222864, 46.4374556 ], + [ 6.2228347, 46.4374833 ], + [ 6.2231922, 46.4376506 ], + [ 6.2231238, 46.4379789 ], + [ 6.2231012, 46.4380871 ], + [ 6.2230607, 46.4382816 ], + [ 6.2230331, 46.438414 ], + [ 6.223033, 46.4384144 ], + [ 6.2230308, 46.4384159 ], + [ 6.2224074, 46.4384347 ], + [ 6.2223801, 46.4384577 ], + [ 6.2223429, 46.4385498 ], + [ 6.2222248, 46.4388417 ], + [ 6.2222432, 46.439001 ], + [ 6.2222433, 46.4390017 ], + [ 6.2222574, 46.4390664 ], + [ 6.22226, 46.4390677 ], + [ 6.2223537, 46.4391143 ], + [ 6.2223539, 46.4391165 ], + [ 6.2223572, 46.4391465 ], + [ 6.2222963, 46.439219 ], + [ 6.2222113, 46.4392356 ], + [ 6.2221307, 46.4392436 ], + [ 6.2220579, 46.4392808 ], + [ 6.2219718, 46.4393443 ], + [ 6.2219236, 46.439414 ], + [ 6.2219311, 46.4394609 ], + [ 6.2219898, 46.4395143 ], + [ 6.2220339, 46.4395382 ], + [ 6.2220668, 46.439556 ], + [ 6.2220421, 46.4396062 ], + [ 6.2220199, 46.4396382 ], + [ 6.2219885, 46.4396727 ], + [ 6.2219329, 46.4397293 ], + [ 6.2218895, 46.439778 ], + [ 6.2218268, 46.4398729 ], + [ 6.2218256, 46.4398743 ], + [ 6.2217886, 46.4399107 ], + [ 6.2217792, 46.4399199 ], + [ 6.2217163, 46.4400195 ], + [ 6.2217077, 46.4400381 ], + [ 6.2217661, 46.4400702 ], + [ 6.2217676, 46.4400711 ], + [ 6.2217947, 46.4400859 ], + [ 6.2217998, 46.4401125 ], + [ 6.2217905, 46.4401272 ], + [ 6.2217896, 46.4401287 ], + [ 6.2217558, 46.4401515 ], + [ 6.2217249, 46.4401634 ], + [ 6.2216639, 46.4401737 ], + [ 6.2216369, 46.440176 ], + [ 6.2216231, 46.4401772 ], + [ 6.221646, 46.4401945 ], + [ 6.2217951, 46.4403174 ], + [ 6.2218052, 46.4403256 ], + [ 6.2222909, 46.4406732 ], + [ 6.2223611, 46.4407234 ], + [ 6.2223617, 46.4407238 ], + [ 6.2224984, 46.4408216 ], + [ 6.2226638, 46.4409296 ], + [ 6.2227494, 46.4409795 ], + [ 6.2228152, 46.4410178 ], + [ 6.2228168, 46.4410187 ], + [ 6.2228181, 46.4410192 ], + [ 6.2229098, 46.4410548 ], + [ 6.2229529, 46.4410715 ], + [ 6.2232597, 46.4411658 ], + [ 6.2233903999999995, 46.4411757 ], + [ 6.2238077, 46.4412071 ], + [ 6.2246826, 46.4412498 ], + [ 6.2251655, 46.4413309 ], + [ 6.2252333, 46.441341800000004 ], + [ 6.2252541, 46.4413452 ], + [ 6.2256467, 46.4414085 ], + [ 6.2259503, 46.4414713 ], + [ 6.2265866, 46.4415879 ], + [ 6.2266629, 46.4416106 ], + [ 6.2267436, 46.4416347 ], + [ 6.2269114, 46.4416847 ], + [ 6.2271549, 46.4417574 ], + [ 6.2273294, 46.4418163 ], + [ 6.2276201, 46.4419145 ], + [ 6.2281096, 46.4421552 ], + [ 6.2281428, 46.4421697 ], + [ 6.2290642, 46.442573 ], + [ 6.2295242, 46.4427929 ], + [ 6.2297281, 46.4428905 ], + [ 6.2298618, 46.4429553 ], + [ 6.2302939, 46.4431648 ], + [ 6.2303851, 46.443209 ], + [ 6.2304551, 46.4432462 ], + [ 6.2305797, 46.4433125 ], + [ 6.2306148, 46.4433311 ], + [ 6.2311283, 46.443702 ], + [ 6.2311471, 46.4437029 ], + [ 6.2311476, 46.4437029 ], + [ 6.2312034, 46.4437056 ], + [ 6.2312035, 46.4437056 ], + [ 6.231204, 46.4437056 ], + [ 6.2313539, 46.4436737 ], + [ 6.2315832, 46.44364 ], + [ 6.2315952, 46.4436408 ], + [ 6.2316472, 46.4436737 ], + [ 6.2319599, 46.4438715 ], + [ 6.2319603, 46.4438715 ], + [ 6.2319605, 46.4438716 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00045", + "country" : "CHE", + "name" : [ + { + "text" : "Genolier : Bois de Chênes", + "lang" : "de-CH" + }, + { + "text" : "Genolier : Bois de Chênes", + "lang" : "fr-CH" + }, + { + "text" : "Genolier : Bois de Chênes", + "lang" : "it-CH" + }, + { + "text" : "Genolier : Bois de Chênes", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Generaldirektion für Umwelt", + "lang" : "de-CH" + }, + { + "text" : "Direction générale de l'environnement", + "lang" : "fr-CH" + }, + { + "text" : "Direzione generale dell'Ambiente", + "lang" : "it-CH" + }, + { + "text" : "Environment Department", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.dge@vd.ch", + "phone" : "0041213164422", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.0691953, 46.3365395 ], + [ 7.068781, 46.3359616 ], + [ 7.0682081, 46.3350367 ], + [ 7.0675895, 46.3343348 ], + [ 7.0664853, 46.3334388 ], + [ 7.0664414, 46.334152 ], + [ 7.0661729, 46.3365611 ], + [ 7.0658156, 46.3384625 ], + [ 7.0654861, 46.3399205 ], + [ 7.0653115, 46.3405595 ], + [ 7.0694256, 46.3423821 ], + [ 7.0697689, 46.3423248 ], + [ 7.0705467, 46.3421618 ], + [ 7.0721596, 46.341639 ], + [ 7.0734679, 46.3411997 ], + [ 7.074387, 46.3406953 ], + [ 7.0747782, 46.3402837 ], + [ 7.0748727, 46.339935 ], + [ 7.0743946, 46.3395691 ], + [ 7.0731157, 46.3391206 ], + [ 7.072269, 46.3389118 ], + [ 7.0704656, 46.3382403 ], + [ 7.069577, 46.3375078 ], + [ 7.0692378, 46.3369679 ], + [ 7.0691953, 46.3365395 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00056", + "country" : "CHE", + "name" : [ + { + "text" : "Petit Chamossaire", + "lang" : "de-CH" + }, + { + "text" : "Petit Chamossaire", + "lang" : "fr-CH" + }, + { + "text" : "Petit Chamossaire", + "lang" : "it-CH" + }, + { + "text" : "Petit Chamossaire", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "startDateTime" : "2024-11-15T00:00:00+01:00", + "endDateTime" : "2025-04-15T00:00:00+02:00" + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Generaldirektion für Umwelt", + "lang" : "de-CH" + }, + { + "text" : "Direction générale de l'environnement", + "lang" : "fr-CH" + }, + { + "text" : "Direzione generale dell'Ambiente", + "lang" : "it-CH" + }, + { + "text" : "Environment Department", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.dge@vd.ch", + "phone" : "0041213164422", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.515102, 47.5052618 ], + [ 7.5152524, 47.5053384 ], + [ 7.5153651, 47.5054039 ], + [ 7.5154312, 47.5054577 ], + [ 7.5155457, 47.5055506 ], + [ 7.5155604, 47.505543 ], + [ 7.5154452, 47.5054497 ], + [ 7.5153801, 47.5053964 ], + [ 7.5151744, 47.5052762 ], + [ 7.5151346, 47.505256 ], + [ 7.515102, 47.5052618 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns032", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Mühleteich", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Mühleteich", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Mühleteich", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Mühleteich", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 10.0375116, 46.3866735 ], + [ 10.0373095, 46.3866769 ], + [ 10.0370755, 46.386662 ], + [ 10.0368608, 46.3866435 ], + [ 10.036557, 46.3867009 ], + [ 10.0361833, 46.3867061 ], + [ 10.0359678, 46.3867715 ], + [ 10.0357645, 46.3867863 ], + [ 10.0354926, 46.3866949 ], + [ 10.0352732, 46.3866965 ], + [ 10.035038, 46.3867592 ], + [ 10.0349071, 46.3868598 ], + [ 10.0348221, 46.3870198 ], + [ 10.0346269, 46.3873069 ], + [ 10.0345295, 46.3874975 ], + [ 10.034516, 46.3876224 ], + [ 10.0344565, 46.3877045 ], + [ 10.0343036, 46.3877551 ], + [ 10.0341712, 46.387943 ], + [ 10.0340691, 46.3881372 ], + [ 10.0338457, 46.38826 ], + [ 10.0337136, 46.3883371 ], + [ 10.033727, 46.388616 ], + [ 10.0337308, 46.3886966 ], + [ 10.033728, 46.3887404 ], + [ 10.0337212, 46.3888012 ], + [ 10.0336041, 46.3887836 ], + [ 10.0334629, 46.3887902 ], + [ 10.0332071, 46.3888298 ], + [ 10.0328045, 46.3888423 ], + [ 10.0324009, 46.3888515 ], + [ 10.0321267, 46.388915 ], + [ 10.0319116, 46.3889907 ], + [ 10.0317527, 46.3890663 ], + [ 10.0317186, 46.3892392 ], + [ 10.0317537, 46.3894622 ], + [ 10.0317546, 46.389686 ], + [ 10.0318545, 46.390074 ], + [ 10.0319827, 46.3903583 ], + [ 10.032197, 46.3907269 ], + [ 10.0323826, 46.3910042 ], + [ 10.032594, 46.3912925 ], + [ 10.0327883, 46.3915811 ], + [ 10.0329327, 46.391865 ], + [ 10.0329675, 46.3920823 ], + [ 10.0329899, 46.3924147 ], + [ 10.0330301, 46.3925745 ], + [ 10.0331211, 46.392762 ], + [ 10.0332824, 46.3930397 ], + [ 10.0333824, 46.3932615 ], + [ 10.0334262, 46.3934959 ], + [ 10.0334293, 46.3937654 ], + [ 10.033286499999999, 46.3940954 ], + [ 10.0332165, 46.3941944 ], + [ 10.0331727, 46.3943158 ], + [ 10.0332867, 46.3944741 ], + [ 10.0334585, 46.394614 ], + [ 10.0336042, 46.3947373 ], + [ 10.0338679, 46.395099 ], + [ 10.0340208, 46.3953713 ], + [ 10.0341054, 46.3956105 ], + [ 10.0341698, 46.3959535 ], + [ 10.0341068, 46.3962015 ], + [ 10.0339754, 46.3964279 ], + [ 10.0337963, 46.3966784 ], + [ 10.0335776, 46.3967805 ], + [ 10.0334019, 46.396916 ], + [ 10.0332307, 46.3971778 ], + [ 10.0331493, 46.3973975 ], + [ 10.0331071, 46.3975705 ], + [ 10.0330299, 46.3978761 ], + [ 10.0329097, 46.3979647 ], + [ 10.0325635, 46.3981726 ], + [ 10.0322655, 46.3983681 ], + [ 10.0316754, 46.3986786 ], + [ 10.0311727, 46.3989127 ], + [ 10.0307385, 46.3992028 ], + [ 10.0305948, 46.3993092 ], + [ 10.0304747, 46.3993977 ], + [ 10.030283, 46.3995565 ], + [ 10.0302495, 46.399740800000004 ], + [ 10.030338799999999, 46.4000775 ], + [ 10.03048, 46.4002926 ], + [ 10.0306282, 46.4004502 ], + [ 10.0306868, 46.4006728 ], + [ 10.0306138, 46.4008809 ], + [ 10.030491, 46.4011014 ], + [ 10.030363, 46.4011959 ], + [ 10.0300969, 46.401362 ], + [ 10.0297241, 46.4015418 ], + [ 10.0292793, 46.4017632 ], + [ 10.0287769, 46.402003 ], + [ 10.0283722, 46.4022123 ], + [ 10.0279474, 46.4025308 ], + [ 10.0275642, 46.4028485 ], + [ 10.0272968, 46.4031581 ], + [ 10.0269856, 46.4036064 ], + [ 10.0268611, 46.4037925 ], + [ 10.0266251, 46.4040785 ], + [ 10.0262767, 46.4044299 ], + [ 10.0260791, 46.4046348 ], + [ 10.0259054, 46.4048277 ], + [ 10.0258266, 46.4049154 ], + [ 10.0256111, 46.4051034 ], + [ 10.0253236, 46.4053332 ], + [ 10.0251396, 46.4054804 ], + [ 10.0249384, 46.4056107 ], + [ 10.0245377, 46.4059059 ], + [ 10.0241635, 46.406057 ], + [ 10.0238779, 46.4061375 ], + [ 10.0237344, 46.4062666 ], + [ 10.0236153, 46.406378 ], + [ 10.0234401, 46.4065424 ], + [ 10.0229744, 46.406856 ], + [ 10.0228223, 46.4069738 ], + [ 10.0225838, 46.4071911 ], + [ 10.0224335, 46.407348999999996 ], + [ 10.0222573, 46.4074903 ], + [ 10.022201, 46.4075201 ], + [ 10.0221371, 46.4075788 ], + [ 10.0219893, 46.4077885 ], + [ 10.0218978, 46.4079682 ], + [ 10.0217584, 46.4082006 ], + [ 10.0216394, 46.4083984 ], + [ 10.0215711, 46.4085701 ], + [ 10.0216796, 46.4087145 ], + [ 10.0219535, 46.4087611 ], + [ 10.0223565, 46.4090277 ], + [ 10.0224634, 46.4091369 ], + [ 10.0224519, 46.4092545 ], + [ 10.0222627, 46.4095523 ], + [ 10.0222337, 46.4096587 ], + [ 10.0223134, 46.4097274 ], + [ 10.0226734, 46.4099774 ], + [ 10.0228907, 46.4100839 ], + [ 10.0231646, 46.4101306 ], + [ 10.0233022, 46.4101685 ], + [ 10.0233327, 46.4102793 ], + [ 10.0232739, 46.4104627 ], + [ 10.0233315, 46.4106141 ], + [ 10.0242945, 46.4105813 ], + [ 10.0247834, 46.4106 ], + [ 10.0254285, 46.410604 ], + [ 10.0262229, 46.4106162 ], + [ 10.0267556, 46.4106857 ], + [ 10.027306, 46.4107834 ], + [ 10.0277061, 46.4108497 ], + [ 10.0279737, 46.4109189 ], + [ 10.0281064, 46.4109219 ], + [ 10.028464, 46.4105932 ], + [ 10.0289565, 46.4103134 ], + [ 10.0295359, 46.4099457 ], + [ 10.0300108, 46.4096376 ], + [ 10.0303449, 46.4095159 ], + [ 10.0309744, 46.4091587 ], + [ 10.0313437, 46.4089044 ], + [ 10.0315731, 46.4088037 ], + [ 10.0321197, 46.4088217 ], + [ 10.0324656, 46.4087947 ], + [ 10.0326675, 46.4087482 ], + [ 10.0329717, 46.4086457 ], + [ 10.0332625, 46.4086048 ], + [ 10.0342271, 46.4088269 ], + [ 10.0344336, 46.4088756 ], + [ 10.0346599, 46.4090001 ], + [ 10.0351003, 46.4090931 ], + [ 10.035394, 46.4091283 ], + [ 10.0356273, 46.409161 ], + [ 10.0358788, 46.4092317 ], + [ 10.0362977, 46.4092335 ], + [ 10.0365245, 46.4092321 ], + [ 10.0366937, 46.4091977 ], + [ 10.0368359, 46.4091792 ], + [ 10.0372358, 46.4092425 ], + [ 10.037384, 46.4092277 ], + [ 10.0377163, 46.4091362 ], + [ 10.037873, 46.409064 ], + [ 10.0381126, 46.4088868 ], + [ 10.0384015, 46.4087046 ], + [ 10.0386071, 46.4086161 ], + [ 10.0388434, 46.4086069 ], + [ 10.0392293, 46.4084798 ], + [ 10.0393898, 46.4083846 ], + [ 10.0395111, 46.4083703 ], + [ 10.0397033, 46.4083583 ], + [ 10.0400489, 46.4082053 ], + [ 10.041869, 46.4076296 ], + [ 10.0420916, 46.4075558 ], + [ 10.0422412, 46.4074532 ], + [ 10.042381, 46.4073852 ], + [ 10.0424423, 46.4072884 ], + [ 10.0424604, 46.4072078 ], + [ 10.0425008, 46.4071191 ], + [ 10.0425978, 46.4070712 ], + [ 10.0427238, 46.407053 ], + [ 10.0428274, 46.4070277 ], + [ 10.0429181, 46.4069685 ], + [ 10.0429419, 46.4068878 ], + [ 10.0429571, 46.4067463 ], + [ 10.0430549, 46.4067173 ], + [ 10.0431875, 46.4067182 ], + [ 10.0433021, 46.4067002 ], + [ 10.0434414, 46.4066207 ], + [ 10.0437004, 46.4066109 ], + [ 10.0438006, 46.4065133 ], + [ 10.0439237, 46.4064342 ], + [ 10.0440233, 46.4064433 ], + [ 10.0441914, 46.4064891 ], + [ 10.0443135, 46.4065091 ], + [ 10.0445158, 46.4064701 ], + [ 10.044731, 46.4064805 ], + [ 10.0448616, 46.4064394 ], + [ 10.044936, 46.4063805 ], + [ 10.0450449, 46.4062444 ], + [ 10.0452635, 46.4062222 ], + [ 10.0459076, 46.4062074 ], + [ 10.0460731, 46.4061805 ], + [ 10.0461604, 46.4061359 ], + [ 10.0461703, 46.4060372 ], + [ 10.0462823, 46.4058968 ], + [ 10.0464202, 46.4058051 ], + [ 10.0465935, 46.4057749 ], + [ 10.0467425, 46.4058109 ], + [ 10.0468895, 46.4058075 ], + [ 10.0470186, 46.4057356 ], + [ 10.047144, 46.4056703 ], + [ 10.0472577, 46.4056677 ], + [ 10.047356, 46.4057343 ], + [ 10.0474585, 46.4058009 ], + [ 10.0475471, 46.4058678 ], + [ 10.0476606, 46.4059636 ], + [ 10.0479294, 46.4061248 ], + [ 10.048208, 46.4062004 ], + [ 10.0485019, 46.4061904 ], + [ 10.0488957, 46.4061944 ], + [ 10.0491803, 46.4060928 ], + [ 10.0500632, 46.4057149 ], + [ 10.0502586, 46.4056348 ], + [ 10.0506791, 46.4055006 ], + [ 10.0510844, 46.4053566 ], + [ 10.0513217, 46.4052181 ], + [ 10.0514924, 46.4051821 ], + [ 10.0517712, 46.4051459 ], + [ 10.0521292, 46.4051484 ], + [ 10.0524477, 46.405194 ], + [ 10.0529758, 46.4052343 ], + [ 10.0534568, 46.4052415 ], + [ 10.0537556, 46.4052656 ], + [ 10.0542826, 46.405283 ], + [ 10.0545221, 46.4053267 ], + [ 10.0548498, 46.4053416 ], + [ 10.055201, 46.40534 ], + [ 10.0553691, 46.4053682 ], + [ 10.0554263, 46.4054074 ], + [ 10.055486, 46.4054316 ], + [ 10.0555265, 46.4054286 ], + [ 10.0555872, 46.4054058 ], + [ 10.0556804, 46.4053653 ], + [ 10.0558526, 46.4052929 ], + [ 10.055993, 46.4052534 ], + [ 10.0561432, 46.4052308 ], + [ 10.0563434, 46.4052348 ], + [ 10.0564777, 46.4052038 ], + [ 10.0566249, 46.4052539 ], + [ 10.0567121, 46.4052582 ], + [ 10.056813, 46.4052431 ], + [ 10.0569422, 46.4051719 ], + [ 10.0570861, 46.4051558 ], + [ 10.0572014, 46.4051168 ], + [ 10.0572606, 46.4050643 ], + [ 10.0572812, 46.4049848 ], + [ 10.0573102, 46.4049457 ], + [ 10.0573874, 46.4048778 ], + [ 10.0575314, 46.4048617 ], + [ 10.0577724, 46.4048668 ], + [ 10.0578671, 46.4049094 ], + [ 10.0579863, 46.4049515 ], + [ 10.0581488, 46.4049989 ], + [ 10.058355, 46.404992 ], + [ 10.0585488, 46.4049129 ], + [ 10.0587906, 46.4048177 ], + [ 10.0589592, 46.4047552 ], + [ 10.0591453, 46.4047353 ], + [ 10.059282, 46.4047047 ], + [ 10.059356, 46.4046542 ], + [ 10.0594182, 46.4045434 ], + [ 10.0595276, 46.4044178 ], + [ 10.0597095, 46.4043119 ], + [ 10.0598569, 46.4042656 ], + [ 10.0600816, 46.4041862 ], + [ 10.0602416, 46.4041141 ], + [ 10.0604398, 46.4040098 ], + [ 10.0605845, 46.4039577 ], + [ 10.0608868, 46.4039527 ], + [ 10.0611106, 46.4039728 ], + [ 10.0613012, 46.4039958 ], + [ 10.0614276, 46.403987 ], + [ 10.0615462, 46.4039843 ], + [ 10.0617409, 46.4040423 ], + [ 10.0619012, 46.4040604 ], + [ 10.0625762, 46.403203 ], + [ 10.0659022, 46.4019942 ], + [ 10.065963, 46.4018198 ], + [ 10.0664412, 46.4004466 ], + [ 10.0670061, 46.4000726 ], + [ 10.0670001, 46.3997473 ], + [ 10.067014, 46.3989759 ], + [ 10.0669992, 46.3984528 ], + [ 10.0667291, 46.3977445 ], + [ 10.066758, 46.3972841 ], + [ 10.0667682, 46.3970574 ], + [ 10.0665841, 46.3968495 ], + [ 10.0663292, 46.3966572 ], + [ 10.0662318, 46.3963412 ], + [ 10.066105, 46.39604 ], + [ 10.0659477, 46.3957464 ], + [ 10.065982, 46.395399 ], + [ 10.0661952, 46.3951676 ], + [ 10.0663147, 46.3948819 ], + [ 10.0663082, 46.3945283 ], + [ 10.0662195, 46.3941907 ], + [ 10.0662222, 46.3940279 ], + [ 10.066273, 46.3938355 ], + [ 10.0664233, 46.3936659 ], + [ 10.0664471, 46.3936534 ], + [ 10.0665482, 46.3936928 ], + [ 10.0667314, 46.393664 ], + [ 10.0670676, 46.3935555 ], + [ 10.0674215, 46.3934588 ], + [ 10.0676232, 46.3933092 ], + [ 10.0677767, 46.3932394 ], + [ 10.0679107, 46.3931527 ], + [ 10.0679921, 46.3930033 ], + [ 10.0679527, 46.3928446 ], + [ 10.0678385, 46.3926849 ], + [ 10.0677382, 46.3925276 ], + [ 10.06768, 46.3924184 ], + [ 10.0677074, 46.3923293 ], + [ 10.0677847, 46.3921629 ], + [ 10.0679094, 46.3919511 ], + [ 10.0680326, 46.3916411 ], + [ 10.0682637, 46.3912082 ], + [ 10.0683372, 46.391032 ], + [ 10.0684131, 46.3908362 ], + [ 10.0685838, 46.390702 ], + [ 10.0687857, 46.3906236 ], + [ 10.0690495, 46.3905635 ], + [ 10.0692894, 46.3904645 ], + [ 10.0695206, 46.3903878 ], + [ 10.0697396, 46.3902255 ], + [ 10.0701363, 46.3900566 ], + [ 10.0702317, 46.3899783 ], + [ 10.0703788, 46.3897757 ], + [ 10.0704961, 46.389714 ], + [ 10.0705859, 46.3896554 ], + [ 10.0706691, 46.389543 ], + [ 10.0708672, 46.3894548 ], + [ 10.0712848, 46.3892142 ], + [ 10.0716681, 46.3889866 ], + [ 10.0719896, 46.3888095 ], + [ 10.0721968, 46.3886745 ], + [ 10.0721941, 46.3885518 ], + [ 10.0720995, 46.3884285 ], + [ 10.0721687, 46.3882452 ], + [ 10.0721745, 46.3879968 ], + [ 10.0719336, 46.3877911 ], + [ 10.0719099, 46.3876712 ], + [ 10.0718303, 46.3871033 ], + [ 10.0717372, 46.3868757 ], + [ 10.0716521, 46.3866307 ], + [ 10.071597, 46.3863164 ], + [ 10.071465, 46.3861413 ], + [ 10.0713878, 46.3858904 ], + [ 10.0714457, 46.3857114 ], + [ 10.0713385, 46.3854458 ], + [ 10.0713576, 46.3853194 ], + [ 10.0713691, 46.3851711 ], + [ 10.0713433, 46.3850239 ], + [ 10.0714431, 46.3848869 ], + [ 10.0714804, 46.3847511 ], + [ 10.0714002, 46.3846399 ], + [ 10.0711739, 46.3845148 ], + [ 10.0711411, 46.384359 ], + [ 10.0710404, 46.3842265 ], + [ 10.0709948, 46.384058 ], + [ 10.0708003, 46.3839365 ], + [ 10.0706816, 46.3838174 ], + [ 10.0707706, 46.3835761 ], + [ 10.0707973, 46.3834886 ], + [ 10.0706714, 46.3833568 ], + [ 10.0704905, 46.3832479 ], + [ 10.0702306, 46.3832018 ], + [ 10.0700844, 46.3831703 ], + [ 10.069867, 46.3830971 ], + [ 10.0696814, 46.3830231 ], + [ 10.0695806, 46.3828907 ], + [ 10.0695275, 46.3827162 ], + [ 10.0694721, 46.3825975 ], + [ 10.0693616, 46.3825131 ], + [ 10.0690901, 46.3823629 ], + [ 10.0690554, 46.382168 ], + [ 10.0690709, 46.3819676 ], + [ 10.069154, 46.3818526 ], + [ 10.0693186, 46.3817619 ], + [ 10.0693583, 46.381674 ], + [ 10.0694476, 46.3815718 ], + [ 10.069858, 46.3812175 ], + [ 10.0698942, 46.3811919 ], + [ 10.0699451, 46.3811353 ], + [ 10.0701052, 46.3810172 ], + [ 10.0701293, 46.3809267 ], + [ 10.0702304, 46.3808489 ], + [ 10.0704102, 46.3807694 ], + [ 10.0704139, 46.3806783 ], + [ 10.0703117, 46.3805143 ], + [ 10.0701538, 46.380427 ], + [ 10.0699753, 46.3804 ], + [ 10.0696805, 46.3803548 ], + [ 10.0695451, 46.3802774 ], + [ 10.0694815, 46.3801229 ], + [ 10.0695144, 46.3799454 ], + [ 10.0696647, 46.3797105 ], + [ 10.0696766, 46.3795699 ], + [ 10.0695428, 46.3793756 ], + [ 10.0692681, 46.3792077 ], + [ 10.068316, 46.3787827 ], + [ 10.0680548, 46.3786588 ], + [ 10.0673252, 46.3781768 ], + [ 10.0672525, 46.3779185 ], + [ 10.0670439, 46.3776374 ], + [ 10.066948, 46.3775201 ], + [ 10.0667116, 46.3771357 ], + [ 10.0665382, 46.376963 ], + [ 10.066221, 46.376622 ], + [ 10.0660401, 46.3764442 ], + [ 10.065947, 46.3762333 ], + [ 10.0658585, 46.3759494 ], + [ 10.065796, 46.3757481 ], + [ 10.0657874, 46.3755715 ], + [ 10.0658366, 46.3755296 ], + [ 10.0659311, 46.375433 ], + [ 10.0660152, 46.3753063 ], + [ 10.0660193, 46.375088 ], + [ 10.0659959, 46.3749065 ], + [ 10.0658479, 46.3747535 ], + [ 10.0657715, 46.3746368 ], + [ 10.0657723, 46.3744855 ], + [ 10.0656376, 46.3741871 ], + [ 10.0656311, 46.3740521 ], + [ 10.0656966, 46.3738426 ], + [ 10.0657427, 46.373722 ], + [ 10.0657812, 46.373274 ], + [ 10.0657644, 46.3730768 ], + [ 10.0657044, 46.3726103 ], + [ 10.0655675, 46.3722652 ], + [ 10.0653278, 46.3718133 ], + [ 10.065127, 46.3715425 ], + [ 10.065092, 46.3712884 ], + [ 10.0651499, 46.3709739 ], + [ 10.0652848, 46.3707557 ], + [ 10.0654869, 46.370665 ], + [ 10.0655733, 46.3705866 ], + [ 10.065721, 46.3703632 ], + [ 10.0657959, 46.3701991 ], + [ 10.0658888, 46.3699675 ], + [ 10.0660643, 46.3697484 ], + [ 10.0663076, 46.3695038 ], + [ 10.066645, 46.3693383 ], + [ 10.0668672, 46.369228 ], + [ 10.0670348, 46.3691142 ], + [ 10.0671927, 46.3689528 ], + [ 10.0673578, 46.3686526 ], + [ 10.0674703, 46.3684254 ], + [ 10.0675331, 46.368295 ], + [ 10.0677669, 46.3681223 ], + [ 10.0678138, 46.3679491 ], + [ 10.0678413, 46.3676619 ], + [ 10.0679563, 46.3674679 ], + [ 10.0682486, 46.3672461 ], + [ 10.0688341, 46.3666495 ], + [ 10.0691109, 46.3663755 ], + [ 10.0692665, 46.3661664 ], + [ 10.069389, 46.3658433 ], + [ 10.0695776, 46.3656095 ], + [ 10.069702, 46.3653247 ], + [ 10.0698479, 46.3650488 ], + [ 10.0698529, 46.3648672 ], + [ 10.0696886, 46.3644792 ], + [ 10.0696163, 46.364261 ], + [ 10.0695362, 46.3638996 ], + [ 10.0696878, 46.3634565 ], + [ 10.0698709, 46.3628262 ], + [ 10.069999, 46.3624839 ], + [ 10.0700162, 46.3622684 ], + [ 10.0699569, 46.3620357 ], + [ 10.0700385, 46.3617567 ], + [ 10.0699381, 46.3613629 ], + [ 10.069901, 46.3610824 ], + [ 10.0699307, 46.3608237 ], + [ 10.0699432, 46.360478 ], + [ 10.0698969, 46.360092 ], + [ 10.0698524, 46.359878 ], + [ 10.0697647, 46.3596459 ], + [ 10.069303, 46.3592218 ], + [ 10.0689358, 46.3589053 ], + [ 10.0687743, 46.3587084 ], + [ 10.0687478, 46.3583122 ], + [ 10.0685858, 46.3578191 ], + [ 10.0683546, 46.3576093 ], + [ 10.0682016, 46.3574361 ], + [ 10.0681233, 46.3570939 ], + [ 10.068372, 46.356677 ], + [ 10.0685562, 46.3564864 ], + [ 10.0686638, 46.3562928 ], + [ 10.0686561, 46.3561353 ], + [ 10.0684702, 46.3558529 ], + [ 10.0682816, 46.3556661 ], + [ 10.0681594, 46.3554252 ], + [ 10.0680903, 46.3552738 ], + [ 10.0679075, 46.3550726 ], + [ 10.0676586, 46.3549159 ], + [ 10.0674475, 46.354701 ], + [ 10.0670235, 46.3541995 ], + [ 10.066825, 46.3539604 ], + [ 10.0666768, 46.3537345 ], + [ 10.0661565, 46.3528386 ], + [ 10.0658401, 46.3522772 ], + [ 10.0656194, 46.3517961 ], + [ 10.0654991, 46.3513254 ], + [ 10.0654207, 46.3508634 ], + [ 10.0654474, 46.3505439 ], + [ 10.0654776, 46.3503113 ], + [ 10.0655165, 46.3502427 ], + [ 10.0653898, 46.3502263 ], + [ 10.0638245, 46.3498953 ], + [ 10.0624898, 46.3502837 ], + [ 10.0607593, 46.3482654 ], + [ 10.0595908, 46.3466105 ], + [ 10.0594405, 46.3467451 ], + [ 10.0593106, 46.3468972 ], + [ 10.0591349, 46.3470458 ], + [ 10.0588342, 46.3471613 ], + [ 10.0585619, 46.3473257 ], + [ 10.0583746, 46.3475017 ], + [ 10.0582598, 46.3476986 ], + [ 10.05818, 46.347931 ], + [ 10.0580661, 46.348146 ], + [ 10.0578574, 46.3484174 ], + [ 10.0577326, 46.3485422 ], + [ 10.0575546, 46.3486413 ], + [ 10.0574616, 46.3488693 ], + [ 10.0574387, 46.3490687 ], + [ 10.0573399, 46.3491929 ], + [ 10.0572047, 46.3492367 ], + [ 10.05706, 46.3491994 ], + [ 10.0569429, 46.3492157 ], + [ 10.0568962, 46.3493252 ], + [ 10.0568978, 46.3494923 ], + [ 10.0569095, 46.349736 ], + [ 10.0569473, 46.3499791 ], + [ 10.0569631, 46.3501731 ], + [ 10.0570476, 46.3503067 ], + [ 10.0570677, 46.3504554 ], + [ 10.0570918, 46.3506672 ], + [ 10.0570668, 46.3508395 ], + [ 10.056929, 46.3510821 ], + [ 10.0566531, 46.351459 ], + [ 10.0565306, 46.3516155 ], + [ 10.0563126, 46.3517108 ], + [ 10.0559717, 46.3518 ], + [ 10.0556178, 46.3519076 ], + [ 10.0554569, 46.351976 ], + [ 10.0551816, 46.3521799 ], + [ 10.0551169, 46.3523886 ], + [ 10.0550293, 46.3526108 ], + [ 10.054843, 46.3527219 ], + [ 10.0545766, 46.3528252 ], + [ 10.0544362, 46.3529127 ], + [ 10.0542842, 46.3529615 ], + [ 10.0540697, 46.3529793 ], + [ 10.0535483, 46.3530334 ], + [ 10.0529867, 46.3532148 ], + [ 10.0526552, 46.3534167 ], + [ 10.0522975, 46.3536646 ], + [ 10.0518588, 46.3538689 ], + [ 10.0517342, 46.3539981 ], + [ 10.0513362, 46.3541853 ], + [ 10.0510954, 46.3545341 ], + [ 10.0508841, 46.3549048 ], + [ 10.0507145, 46.3550609 ], + [ 10.0504113, 46.3552784 ], + [ 10.0501755, 46.3555266 ], + [ 10.0499207, 46.3558725 ], + [ 10.0497654, 46.3560379 ], + [ 10.0494515, 46.3562361 ], + [ 10.0490106, 46.3564956 ], + [ 10.0485618, 46.3568947 ], + [ 10.0483391, 46.3571805 ], + [ 10.0481259, 46.3574952 ], + [ 10.0480169, 46.3575943 ], + [ 10.0478365, 46.3577124 ], + [ 10.047786200000001, 46.3577984 ], + [ 10.0478101, 46.3578563 ], + [ 10.0478983, 46.3579332 ], + [ 10.0481382, 46.3581061 ], + [ 10.0484026, 46.3583339 ], + [ 10.0484798, 46.3584344 ], + [ 10.048471, 46.3586072 ], + [ 10.0485293, 46.3586877 ], + [ 10.0485961, 46.3587593 ], + [ 10.0487278, 46.3588614 ], + [ 10.0487715, 46.3589774 ], + [ 10.0488018, 46.3591667 ], + [ 10.0488451, 46.359274 ], + [ 10.0489637, 46.3593735 ], + [ 10.0491187, 46.359522 ], + [ 10.0492081, 46.3596244 ], + [ 10.0492374, 46.3597946 ], + [ 10.049325, 46.3598916 ], + [ 10.0494268, 46.3600332 ], + [ 10.0493867, 46.360094 ], + [ 10.0492765, 46.3601505 ], + [ 10.0491682, 46.3602309 ], + [ 10.0490099, 46.3602856 ], + [ 10.0489762, 46.3604116 ], + [ 10.0485592, 46.3606957 ], + [ 10.0480342, 46.3609647 ], + [ 10.047552, 46.3612789 ], + [ 10.0469469, 46.3618078 ], + [ 10.0462891, 46.3624583 ], + [ 10.0455078, 46.3631114 ], + [ 10.0450916, 46.3634299 ], + [ 10.044546799999999, 46.3639977 ], + [ 10.0441085, 46.3643797 ], + [ 10.0438837, 46.3645221 ], + [ 10.0435562, 46.3647928 ], + [ 10.0432133, 46.3650639 ], + [ 10.0429093, 46.3652997 ], + [ 10.0427292, 46.3655272 ], + [ 10.0427189, 46.3658717 ], + [ 10.0428015, 46.3662371 ], + [ 10.042921, 46.36651 ], + [ 10.0430492, 46.3667943 ], + [ 10.0430679, 46.3672357 ], + [ 10.042962, 46.3674502 ], + [ 10.0427211, 46.3677995 ], + [ 10.0425797, 46.3679688 ], + [ 10.0425957, 46.3683358 ], + [ 10.0427884, 46.3687793 ], + [ 10.042934, 46.369086 ], + [ 10.0429275, 46.3694936 ], + [ 10.0431381, 46.3699713 ], + [ 10.043291, 46.3702434 ], + [ 10.0434791, 46.3705724 ], + [ 10.0435645, 46.3708288 ], + [ 10.0436213, 46.3711833 ], + [ 10.0436402, 46.3714239 ], + [ 10.0436252, 46.3716538 ], + [ 10.0434879, 46.3719091 ], + [ 10.0434865, 46.3722534 ], + [ 10.043461, 46.3724318 ], + [ 10.0434549, 46.3726786 ], + [ 10.0433487, 46.3728875 ], + [ 10.0432512, 46.3731247 ], + [ 10.0432523, 46.3732843 ], + [ 10.0431264, 46.3734715 ], + [ 10.0430532, 46.3737594 ], + [ 10.0430325, 46.3739554 ], + [ 10.0430574, 46.3744729 ], + [ 10.0430857, 46.3747419 ], + [ 10.0430091, 46.3749075 ], + [ 10.0428409, 46.3750593 ], + [ 10.0426306, 46.3751329 ], + [ 10.04241, 46.375159 ], + [ 10.0421957, 46.3751482 ], + [ 10.0421884, 46.3753016 ], + [ 10.0422382, 46.3755436 ], + [ 10.0423631, 46.3759265 ], + [ 10.0424194, 46.3761527 ], + [ 10.042391, 46.3763382 ], + [ 10.0422219, 46.3766435 ], + [ 10.0422275, 46.3767597 ], + [ 10.0421673, 46.376946 ], + [ 10.0420529, 46.3772552 ], + [ 10.0420822, 46.3775611 ], + [ 10.041964, 46.3779603 ], + [ 10.0419572, 46.3781243 ], + [ 10.0419019, 46.3782577 ], + [ 10.0417399, 46.3785416 ], + [ 10.0416146, 46.378793 ], + [ 10.0416245, 46.3789989 ], + [ 10.041693, 46.3793091 ], + [ 10.0417132, 46.3795783 ], + [ 10.041573, 46.3801471 ], + [ 10.0414957, 46.380297 ], + [ 10.0414302, 46.3803047 ], + [ 10.0413728, 46.3803109 ], + [ 10.0413625, 46.3803495 ], + [ 10.0413463, 46.3804199 ], + [ 10.0413207, 46.3805288 ], + [ 10.0413118, 46.3807009 ], + [ 10.0413017, 46.3808962 ], + [ 10.0412644, 46.3811188 ], + [ 10.0412141, 46.3812217 ], + [ 10.0409863, 46.3815053 ], + [ 10.0409838, 46.3816404 ], + [ 10.0410296, 46.3817478 ], + [ 10.0410871, 46.3818448 ], + [ 10.0411563, 46.3820333 ], + [ 10.0411739, 46.3820962 ], + [ 10.0411523, 46.3821868 ], + [ 10.041112, 46.3822627 ], + [ 10.0409839, 46.3824057 ], + [ 10.0408512, 46.3825022 ], + [ 10.0408091, 46.3827782 ], + [ 10.0408035, 46.3830169 ], + [ 10.0407939, 46.3831037 ], + [ 10.0407679, 46.3832244 ], + [ 10.0407112, 46.3834991 ], + [ 10.0406387, 46.3836491 ], + [ 10.0405485, 46.3839197 ], + [ 10.0405511, 46.384128 ], + [ 10.0405877, 46.3842974 ], + [ 10.0405884, 46.3843973 ], + [ 10.040526, 46.3846038 ], + [ 10.0405026, 46.3846761 ], + [ 10.0404172, 46.3848098 ], + [ 10.0402692, 46.3850282 ], + [ 10.0401647, 46.3851716 ], + [ 10.0400584, 46.3852951 ], + [ 10.0399203, 46.3853487 ], + [ 10.0397032, 46.3853806 ], + [ 10.0395114, 46.385449 ], + [ 10.0394683, 46.3855508 ], + [ 10.039428, 46.3856258 ], + [ 10.0392798, 46.3856897 ], + [ 10.0390659, 46.3857888 ], + [ 10.0387771, 46.3859536 ], + [ 10.0385944, 46.3859914 ], + [ 10.038371, 46.3860975 ], + [ 10.0382387, 46.3861678 ], + [ 10.0382149, 46.3861818 ], + [ 10.0380512, 46.3863268 ], + [ 10.0380164, 46.3863983 ], + [ 10.037944, 46.3866187 ], + [ 10.0378732, 46.3866674 ], + [ 10.0375116, 46.3866735 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "JBG0008", + "country" : "CHE", + "name" : [ + { + "text" : "Eidgenössisches Jagdbanngebiet Campasc", + "lang" : "de-CH" + }, + { + "text" : "District franc fédéral Campasc", + "lang" : "fr-CH" + }, + { + "text" : "Bandita federale di caccia Campasc", + "lang" : "it-CH" + }, + { + "text" : "Federal Game Reserve Campasc", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.0344796, 47.3934778 ], + [ 7.0237673, 47.3908494 ], + [ 7.0234972, 47.3913566 ], + [ 7.0241463, 47.3915118 ], + [ 7.0242237, 47.391781 ], + [ 7.0282002, 47.3927648 ], + [ 7.0281914, 47.3933818 ], + [ 7.0324539, 47.3944132 ], + [ 7.0326761, 47.3946245 ], + [ 7.0327931, 47.3945727 ], + [ 7.0334209, 47.394047 ], + [ 7.034119, 47.3942141 ], + [ 7.0344796, 47.3934778 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZQ002", + "country" : "CHE", + "name" : [ + { + "text" : "LSZQ Bressaucourt (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSZQ Bressaucourt (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSZQ Bressaucourt (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSZQ Bressaucourt (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Aérodrome du Jura", + "lang" : "de-CH" + }, + { + "text" : "Aérodrome du Jura", + "lang" : "fr-CH" + }, + { + "text" : "Aérodrome du Jura", + "lang" : "it-CH" + }, + { + "text" : "Aérodrome du Jura", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Chef d'aérodrome", + "lang" : "de-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "fr-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "it-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Serge Crelier", + "lang" : "de-CH" + }, + { + "text" : "Serge Crelier", + "lang" : "fr-CH" + }, + { + "text" : "Serge Crelier", + "lang" : "it-CH" + }, + { + "text" : "Serge Crelier", + "lang" : "en-GB" + } + ], + "siteURL" : "https://aerojura.ch/contact", + "email" : "info@aerojura.ch", + "phone" : "0041324666073", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.9506246, 47.3176382 ], + [ 7.9506178, 47.317497 ], + [ 7.9506001, 47.3173563 ], + [ 7.9505717, 47.3172164 ], + [ 7.9505325, 47.3170776 ], + [ 7.9504827, 47.3169405 ], + [ 7.9504224, 47.3168053 ], + [ 7.9503518, 47.3166724 ], + [ 7.950271, 47.3165423 ], + [ 7.9501804, 47.3164152 ], + [ 7.9500801, 47.3162915 ], + [ 7.9499704, 47.3161715 ], + [ 7.9498516, 47.3160556 ], + [ 7.9497241, 47.3159441 ], + [ 7.9495881, 47.3158373 ], + [ 7.9494442, 47.3157354 ], + [ 7.9492925, 47.3156389 ], + [ 7.9491337, 47.3155478 ], + [ 7.9489681, 47.3154625 ], + [ 7.9487961, 47.3153833 ], + [ 7.9486183, 47.3153102 ], + [ 7.9484351, 47.3152436 ], + [ 7.9482471, 47.3151837 ], + [ 7.9480546, 47.3151304 ], + [ 7.9478584, 47.3150842 ], + [ 7.9476588, 47.3150449 ], + [ 7.9474564999999995, 47.3150128 ], + [ 7.947252, 47.314988 ], + [ 7.9470459, 47.3149704 ], + [ 7.9468387, 47.3149603 ], + [ 7.9466311, 47.3149575 ], + [ 7.9464234, 47.3149621 ], + [ 7.9462165, 47.3149741 ], + [ 7.9460107, 47.3149934 ], + [ 7.9458067, 47.3150201 ], + [ 7.945605, 47.3150539 ], + [ 7.9454062, 47.3150949 ], + [ 7.9452109, 47.315143 ], + [ 7.9450195, 47.3151979 ], + [ 7.9448326, 47.3152595 ], + [ 7.9446507, 47.3153277 ], + [ 7.9444742, 47.3154023 ], + [ 7.9443038, 47.315483 ], + [ 7.9441398, 47.3155698 ], + [ 7.9439827, 47.3156622 ], + [ 7.943833, 47.3157601 ], + [ 7.943691, 47.3158632 ], + [ 7.9435571, 47.3159712 ], + [ 7.9434317, 47.3160838 ], + [ 7.9433150999999995, 47.3162008 ], + [ 7.9432077, 47.3163217 ], + [ 7.9431098, 47.3164463 ], + [ 7.9430215, 47.3165742 ], + [ 7.9429433, 47.316705 ], + [ 7.9428752, 47.3168385 ], + [ 7.9428175, 47.3169742 ], + [ 7.9427703, 47.3171118 ], + [ 7.9427337, 47.3172508 ], + [ 7.9427079, 47.317391 ], + [ 7.942693, 47.3175319 ], + [ 7.9426889, 47.3176731 ], + [ 7.9426956, 47.3178143 ], + [ 7.9427133, 47.3179551 ], + [ 7.9427417, 47.318095 ], + [ 7.9427809, 47.3182338 ], + [ 7.9428307, 47.3183709 ], + [ 7.9428909, 47.3185061 ], + [ 7.9429615, 47.318639 ], + [ 7.9430423, 47.3187691 ], + [ 7.9431329, 47.3188962 ], + [ 7.9432332, 47.31902 ], + [ 7.9433429, 47.3191399 ], + [ 7.9434616, 47.3192558 ], + [ 7.9435892, 47.3193674 ], + [ 7.9437251, 47.3194742 ], + [ 7.9438691, 47.319576 ], + [ 7.9440207, 47.3196726 ], + [ 7.9441795, 47.3197637 ], + [ 7.9443451, 47.3198489 ], + [ 7.9445171, 47.3199282 ], + [ 7.9446949, 47.3200012 ], + [ 7.9448781, 47.3200678 ], + [ 7.9450662, 47.3201278 ], + [ 7.9452587, 47.3201811 ], + [ 7.9454549, 47.3202273 ], + [ 7.9456545, 47.3202666 ], + [ 7.9458568, 47.3202987 ], + [ 7.9460613, 47.3203235 ], + [ 7.9462675, 47.3203411 ], + [ 7.9464747, 47.3203512 ], + [ 7.9466824, 47.320354 ], + [ 7.94689, 47.3203494 ], + [ 7.947097, 47.3203374 ], + [ 7.9473028, 47.3203181 ], + [ 7.9475068, 47.3202914 ], + [ 7.9477085, 47.3202576 ], + [ 7.9479073, 47.3202166 ], + [ 7.9481027, 47.3201685 ], + [ 7.9482941, 47.3201136 ], + [ 7.948481, 47.320052 ], + [ 7.9486629, 47.3199838 ], + [ 7.9488394, 47.3199092 ], + [ 7.9490098, 47.3198284 ], + [ 7.9491738, 47.3197417 ], + [ 7.9493309, 47.3196492 ], + [ 7.9494807, 47.3195513 ], + [ 7.9496227, 47.3194482 ], + [ 7.9497566, 47.3193402 ], + [ 7.9498819, 47.3192276 ], + [ 7.9499984999999995, 47.3191107 ], + [ 7.9501059, 47.3189897 ], + [ 7.9502038, 47.3188651 ], + [ 7.950292, 47.3187372 ], + [ 7.9503703, 47.3186064 ], + [ 7.9504383, 47.3184729 ], + [ 7.9504961, 47.3183372 ], + [ 7.9505432, 47.3181996 ], + [ 7.9505798, 47.3180606 ], + [ 7.9506055, 47.3179204 ], + [ 7.9506205, 47.3177795 ], + [ 7.9506246, 47.3176382 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0081", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Oftringen", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Oftringen", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Oftringen", + "lang" : "it-CH" + }, + { + "text" : "Substation Oftringen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6352559, 47.4908515 ], + [ 7.6350863, 47.4907584 ], + [ 7.6349037, 47.490663 ], + [ 7.6348635, 47.4906579 ], + [ 7.6348516, 47.4906597 ], + [ 7.6347842, 47.4906482 ], + [ 7.634768, 47.4906435 ], + [ 7.6346812, 47.4906284 ], + [ 7.6345927, 47.4906003 ], + [ 7.6344173, 47.4905883 ], + [ 7.6342623, 47.4905866 ], + [ 7.6342251, 47.4905879 ], + [ 7.634104, 47.4905949 ], + [ 7.6340268, 47.4906112 ], + [ 7.6339918, 47.4906315 ], + [ 7.6338864, 47.4906718 ], + [ 7.6337186, 47.4907424 ], + [ 7.6336246, 47.4908098 ], + [ 7.6335302, 47.4908762 ], + [ 7.6334576, 47.4909259 ], + [ 7.6334254999999995, 47.4909454 ], + [ 7.6333172000000005, 47.4910113 ], + [ 7.6333075, 47.4910171 ], + [ 7.6332822, 47.4910332 ], + [ 7.6332921, 47.4910425 ], + [ 7.6333282, 47.4910311 ], + [ 7.6333335, 47.4910278 ], + [ 7.6334745, 47.4909399 ], + [ 7.63355, 47.4908865 ], + [ 7.6336422, 47.4908191 ], + [ 7.6337373, 47.4907535 ], + [ 7.6339051, 47.4906804 ], + [ 7.6340404, 47.4906301 ], + [ 7.6341126, 47.4906176 ], + [ 7.6342685, 47.4906097 ], + [ 7.6343568, 47.4906107 ], + [ 7.6344359, 47.4906077 ], + [ 7.6345246, 47.4906124 ], + [ 7.6345705, 47.4906228 ], + [ 7.6346144, 47.490621 ], + [ 7.6347841, 47.4906638 ], + [ 7.6348026, 47.4906669 ], + [ 7.634869, 47.4906789 ], + [ 7.6348856, 47.4906891 ], + [ 7.6352655, 47.4908843 ], + [ 7.6354289, 47.4909309 ], + [ 7.6356122, 47.4909882 ], + [ 7.6358675, 47.4910514 ], + [ 7.6359941, 47.4910652 ], + [ 7.6362494, 47.4911161 ], + [ 7.6365055, 47.4911641 ], + [ 7.6366377, 47.4911814 ], + [ 7.6366978, 47.4911816 ], + [ 7.6368409, 47.4911758 ], + [ 7.6369508, 47.4912144 ], + [ 7.6370001, 47.4912379 ], + [ 7.6371586, 47.4913048 ], + [ 7.6372564, 47.4913495 ], + [ 7.6373045, 47.4913773 ], + [ 7.6373481, 47.4914277 ], + [ 7.6373997, 47.4914603 ], + [ 7.6374543, 47.4914899 ], + [ 7.6375281, 47.4914979 ], + [ 7.6376691999999995, 47.4914872 ], + [ 7.6377602, 47.4915378 ], + [ 7.6378362, 47.4915836 ], + [ 7.6379015, 47.4916103 ], + [ 7.6379925, 47.4916331 ], + [ 7.6381043, 47.4916519 ], + [ 7.6382631, 47.4916552 ], + [ 7.6381027, 47.4916649 ], + [ 7.6374977, 47.4916828 ], + [ 7.6371964, 47.4916816 ], + [ 7.6369196, 47.4916945 ], + [ 7.636691, 47.4917278 ], + [ 7.6367989, 47.4921256 ], + [ 7.6364346, 47.492491 ], + [ 7.6365965, 47.4930149 ], + [ 7.6365666, 47.4932068 ], + [ 7.6368863000000005, 47.493537 ], + [ 7.6374047, 47.4936925 ], + [ 7.638103, 47.4936955 ], + [ 7.638616, 47.4939495 ], + [ 7.6385872, 47.4941155 ], + [ 7.6389157, 47.4942506 ], + [ 7.6400582, 47.4944341 ], + [ 7.6399203, 47.4946455 ], + [ 7.6396739, 47.4950327 ], + [ 7.6396332000000005, 47.4950966 ], + [ 7.6396436, 47.4950995 ], + [ 7.6397401, 47.4951271 ], + [ 7.6398521, 47.4948313 ], + [ 7.6398741999999995, 47.4948054 ], + [ 7.6399211000000005, 47.4947151 ], + [ 7.6401848, 47.4946732 ], + [ 7.6404051, 47.4945173 ], + [ 7.6409591, 47.4946503 ], + [ 7.6411807, 47.4945207 ], + [ 7.6415163, 47.4947444 ], + [ 7.6420133, 47.49502 ], + [ 7.6425477, 47.4953808 ], + [ 7.6430494, 47.4950046 ], + [ 7.6431256, 47.4950974 ], + [ 7.6436369, 47.4956132 ], + [ 7.6439555, 47.4954991 ], + [ 7.6444349, 47.4959877 ], + [ 7.6449762, 47.4965365 ], + [ 7.6454143, 47.4965857 ], + [ 7.6460095, 47.4964996 ], + [ 7.6468526, 47.4969005 ], + [ 7.6470334, 47.4969865 ], + [ 7.6470948, 47.4969824 ], + [ 7.6472321999999995, 47.4969973 ], + [ 7.6474779999999996, 47.4970446 ], + [ 7.6476106999999995, 47.4970462 ], + [ 7.6477175, 47.4970338 ], + [ 7.6478136, 47.4970044 ], + [ 7.6478926, 47.4969575 ], + [ 7.6479517999999995, 47.4968972 ], + [ 7.6479875, 47.4968294 ], + [ 7.6480683, 47.496606 ], + [ 7.6481561, 47.4963822 ], + [ 7.6482365, 47.4962057 ], + [ 7.6483067, 47.4960436 ], + [ 7.6483523, 47.4958885 ], + [ 7.6483649, 47.4957265 ], + [ 7.6483655, 47.495447 ], + [ 7.6483882, 47.4952559 ], + [ 7.6484851, 47.494798 ], + [ 7.6485517, 47.494685 ], + [ 7.6486368, 47.4946169 ], + [ 7.6487448, 47.4945665 ], + [ 7.6488717, 47.4945375 ], + [ 7.6486208, 47.4944112 ], + [ 7.6486756, 47.4943619 ], + [ 7.6473212, 47.4937897 ], + [ 7.6472803, 47.4938344 ], + [ 7.646126, 47.4933386 ], + [ 7.6456382, 47.4931288 ], + [ 7.6456324, 47.4930746 ], + [ 7.645626, 47.4930203 ], + [ 7.646143, 47.4932367 ], + [ 7.6473635, 47.493745 ], + [ 7.6487302, 47.4943149 ], + [ 7.6491427, 47.4945407 ], + [ 7.6493529, 47.4945526 ], + [ 7.6495947, 47.4945605 ], + [ 7.6489265, 47.494144 ], + [ 7.6475109, 47.4935876 ], + [ 7.6461703, 47.4930602 ], + [ 7.6456064999999995, 47.4928373 ], + [ 7.6455944, 47.4927391 ], + [ 7.6461844, 47.4929742 ], + [ 7.6467766, 47.4932104 ], + [ 7.6475772, 47.4935183 ], + [ 7.6490138, 47.4940679 ], + [ 7.6497584, 47.4945628 ], + [ 7.6502637, 47.4945652 ], + [ 7.6504324, 47.4945403 ], + [ 7.6506316, 47.4945029 ], + [ 7.6505842, 47.4944419 ], + [ 7.6504872, 47.4943173 ], + [ 7.6504446, 47.4942626 ], + [ 7.6504124000000004, 47.4942211 ], + [ 7.6503813, 47.4941812 ], + [ 7.6502798, 47.4940507 ], + [ 7.6502765, 47.4940465 ], + [ 7.6502194, 47.493973 ], + [ 7.6501806, 47.4939232 ], + [ 7.6501727, 47.493913 ], + [ 7.6498929, 47.4935531 ], + [ 7.6496875, 47.4932889 ], + [ 7.6494917000000004, 47.493037 ], + [ 7.6494817, 47.4930242 ], + [ 7.6493244, 47.4927989 ], + [ 7.6491357, 47.4925286 ], + [ 7.64906, 47.4924203 ], + [ 7.6489023, 47.4921931 ], + [ 7.6486532, 47.4918344 ], + [ 7.6487991, 47.4918344 ], + [ 7.6488661, 47.4918344 ], + [ 7.6489366, 47.4918344 ], + [ 7.6492821, 47.4918344 ], + [ 7.64943, 47.4918344 ], + [ 7.6498885, 47.4918344 ], + [ 7.6500271, 47.4914553 ], + [ 7.6501903, 47.4910151 ], + [ 7.6507379, 47.4909563 ], + [ 7.6514012000000005, 47.4908857 ], + [ 7.6515585999999995, 47.4908485 ], + [ 7.6516834, 47.4908556 ], + [ 7.6519858, 47.490662 ], + [ 7.652153, 47.490555 ], + [ 7.6526914999999995, 47.4904956 ], + [ 7.6531275, 47.4906259 ], + [ 7.6533562, 47.4908137 ], + [ 7.6536028, 47.4909778 ], + [ 7.653812, 47.490872 ], + [ 7.654599, 47.4904741 ], + [ 7.6551206, 47.4903012 ], + [ 7.6553965, 47.4902097 ], + [ 7.6553805, 47.490193 ], + [ 7.6552219, 47.4900266 ], + [ 7.6551746, 47.4899909 ], + [ 7.6551054, 47.4899389 ], + [ 7.655066, 47.4899092 ], + [ 7.6549147, 47.4898729 ], + [ 7.6547517, 47.4898338 ], + [ 7.6545108, 47.4897491 ], + [ 7.6544901, 47.489739 ], + [ 7.654247, 47.4896196 ], + [ 7.6541703, 47.489582 ], + [ 7.6540911, 47.4895333 ], + [ 7.6539467, 47.4894447 ], + [ 7.6539309, 47.489435 ], + [ 7.65381, 47.4893497 ], + [ 7.6537082, 47.4892779 ], + [ 7.6536936, 47.48927 ], + [ 7.653444, 47.4891356 ], + [ 7.6533399, 47.4890888 ], + [ 7.6532358, 47.489042 ], + [ 7.6530523, 47.4889595 ], + [ 7.6530363999999995, 47.4889523 ], + [ 7.6529454999999995, 47.4889198 ], + [ 7.6528366, 47.4888809 ], + [ 7.6524733, 47.488751 ], + [ 7.6524451, 47.4887409 ], + [ 7.6515152, 47.4885551 ], + [ 7.6505798, 47.4883677 ], + [ 7.6505206, 47.4882651 ], + [ 7.6512826, 47.4881861 ], + [ 7.6532282, 47.4879799 ], + [ 7.6537294, 47.4878724 ], + [ 7.6542279, 47.4877655 ], + [ 7.6543946, 47.4877298 ], + [ 7.6547969, 47.4876432 ], + [ 7.6550391, 47.4875911 ], + [ 7.6554725999999995, 47.4874978 ], + [ 7.6559327, 47.4873988 ], + [ 7.6555059, 47.4872027 ], + [ 7.6546829, 47.4868312 ], + [ 7.6546071, 47.486797 ], + [ 7.6536731, 47.4863733 ], + [ 7.6528421, 47.4861504 ], + [ 7.6528212, 47.4861448 ], + [ 7.6516504, 47.4858832 ], + [ 7.6511388, 47.4857593 ], + [ 7.65099, 47.4857233 ], + [ 7.6502856999999995, 47.4853882 ], + [ 7.6496934, 47.4852115 ], + [ 7.6495298, 47.4851845 ], + [ 7.6484541, 47.4850067 ], + [ 7.6472877, 47.4848118 ], + [ 7.6463247, 47.4851246 ], + [ 7.6457244, 47.4852396 ], + [ 7.6444294, 47.485642 ], + [ 7.6439797, 47.4851425 ], + [ 7.6434277999999996, 47.484526 ], + [ 7.6430994, 47.4841587 ], + [ 7.6421510999999995, 47.4832833 ], + [ 7.6417268, 47.4830872 ], + [ 7.6412354, 47.4828598 ], + [ 7.6412510000000005, 47.4836228 ], + [ 7.6412485, 47.4837727 ], + [ 7.6412438, 47.4844846 ], + [ 7.6412458, 47.4845127 ], + [ 7.6412514, 47.4845406 ], + [ 7.6412605, 47.4845681 ], + [ 7.6412779, 47.484602 ], + [ 7.6412995, 47.4846348 ], + [ 7.6413253, 47.4846662 ], + [ 7.6413551, 47.484696 ], + [ 7.6413885, 47.4847239 ], + [ 7.6414254, 47.4847498 ], + [ 7.6414655, 47.4847733 ], + [ 7.6415600999999995, 47.484823 ], + [ 7.6416576, 47.48487 ], + [ 7.6417578, 47.4849144 ], + [ 7.6417828, 47.4849271 ], + [ 7.6418042, 47.4849425 ], + [ 7.6418213999999995, 47.4849602 ], + [ 7.6418322, 47.4849731 ], + [ 7.6418412, 47.4849865 ], + [ 7.6418484, 47.4850005 ], + [ 7.6418537, 47.4850148 ], + [ 7.6418571, 47.4850295 ], + [ 7.6418585, 47.4850442 ], + [ 7.641858, 47.485059 ], + [ 7.6418555, 47.4850737 ], + [ 7.641851, 47.4850882 ], + [ 7.6418446, 47.4851023 ], + [ 7.6418364, 47.485116 ], + [ 7.6418263, 47.4851291 ], + [ 7.6418146, 47.4851416 ], + [ 7.6417962, 47.4851546 ], + [ 7.6417762, 47.4851664 ], + [ 7.6417547, 47.4851769 ], + [ 7.6417319, 47.4851861 ], + [ 7.6417079, 47.4851938 ], + [ 7.6416830000000004, 47.4852 ], + [ 7.6416574, 47.4852047 ], + [ 7.6416312, 47.4852077 ], + [ 7.6416048, 47.4852091 ], + [ 7.6409576999999995, 47.485258 ], + [ 7.6409271, 47.4852609 ], + [ 7.6408966, 47.4852645 ], + [ 7.6408663, 47.4852688 ], + [ 7.6408496, 47.485272 ], + [ 7.6408335, 47.4852761 ], + [ 7.6408179, 47.4852812 ], + [ 7.6408032, 47.4852873 ], + [ 7.6407893, 47.4852943 ], + [ 7.6407764, 47.4853021 ], + [ 7.6407004, 47.4853616 ], + [ 7.6406331, 47.4854256 ], + [ 7.6405749, 47.4854937 ], + [ 7.6405614, 47.4855159 ], + [ 7.6405509, 47.4855388 ], + [ 7.6405434, 47.4855623 ], + [ 7.6405391, 47.4855862 ], + [ 7.6405379, 47.485610199999996 ], + [ 7.6405399, 47.4856342 ], + [ 7.6405451, 47.485658 ], + [ 7.6405509, 47.4856799 ], + [ 7.6405595, 47.4857015 ], + [ 7.6405707, 47.4857225 ], + [ 7.6405843, 47.4857428 ], + [ 7.6406005, 47.4857622 ], + [ 7.6406189, 47.4857807 ], + [ 7.6406396, 47.485798 ], + [ 7.6406623, 47.4858142 ], + [ 7.6406869, 47.4858289 ], + [ 7.6407133, 47.4858423 ], + [ 7.6407403, 47.4858543 ], + [ 7.6407687, 47.4858647 ], + [ 7.6407983, 47.4858734 ], + [ 7.6408289, 47.4858804 ], + [ 7.6408603, 47.4858856 ], + [ 7.6408922, 47.485889 ], + [ 7.6409365000000005, 47.4858936 ], + [ 7.6409812, 47.4858969 ], + [ 7.6410259, 47.4858987 ], + [ 7.6410985, 47.4859022 ], + [ 7.6411711, 47.4859037 ], + [ 7.6412438, 47.485903 ], + [ 7.6415174, 47.4859059 ], + [ 7.641535, 47.4859374 ], + [ 7.6415375999999995, 47.485968 ], + [ 7.6413489, 47.4860123 ], + [ 7.6413265, 47.4860197 ], + [ 7.6413051, 47.4860285 ], + [ 7.6412849, 47.4860384 ], + [ 7.641266, 47.4860495 ], + [ 7.6412486, 47.4860616 ], + [ 7.6412327, 47.4860747 ], + [ 7.6412186, 47.4860886 ], + [ 7.6412063, 47.4861033 ], + [ 7.6411959, 47.4861187 ], + [ 7.6411874, 47.4861346 ], + [ 7.641181, 47.486151 ], + [ 7.6411747, 47.4861711 ], + [ 7.6411713, 47.4861915 ], + [ 7.6411708, 47.4862121 ], + [ 7.6411508999999995, 47.4866351 ], + [ 7.6411468, 47.4866551 ], + [ 7.6411402, 47.4866749 ], + [ 7.6411311, 47.4866942 ], + [ 7.6411196, 47.4867129 ], + [ 7.6411058, 47.4867308 ], + [ 7.6410898, 47.4867479 ], + [ 7.6410716, 47.486764 ], + [ 7.6410515, 47.486779 ], + [ 7.6410295999999995, 47.4867927 ], + [ 7.641006, 47.4868051 ], + [ 7.6409809, 47.4868161 ], + [ 7.6409545, 47.4868256 ], + [ 7.6409298, 47.4868327 ], + [ 7.6409043, 47.4868383 ], + [ 7.6408783, 47.4868425 ], + [ 7.6408518, 47.4868451 ], + [ 7.6408249999999995, 47.4868462 ], + [ 7.6407982, 47.4868458 ], + [ 7.6407716, 47.4868439 ], + [ 7.6407453, 47.4868404 ], + [ 7.6407195, 47.4868355 ], + [ 7.6399989, 47.486641 ], + [ 7.6399009, 47.4866128 ], + [ 7.6398288, 47.4865873 ], + [ 7.6397594, 47.4865584 ], + [ 7.6396931, 47.4865264 ], + [ 7.6396107, 47.4864794 ], + [ 7.6395301, 47.4864285 ], + [ 7.6394546, 47.4863741 ], + [ 7.6393847, 47.4863164 ], + [ 7.6393205, 47.4862492 ], + [ 7.639264, 47.4861788 ], + [ 7.6392156, 47.4861058 ], + [ 7.639186, 47.4860533 ], + [ 7.6391513, 47.4860023 ], + [ 7.6391118, 47.485953 ], + [ 7.6390554, 47.4858778 ], + [ 7.6390068, 47.4858002 ], + [ 7.6389662, 47.4857205 ], + [ 7.6388931, 47.4855218 ], + [ 7.6387132, 47.4850514 ], + [ 7.6387013, 47.4850066 ], + [ 7.6386946, 47.4849614 ], + [ 7.6386932, 47.4849159 ], + [ 7.6386794, 47.4845034 ], + [ 7.6386734, 47.4844349 ], + [ 7.6386626, 47.4843667 ], + [ 7.6386468, 47.4842989 ], + [ 7.6386379, 47.4842579 ], + [ 7.6386341, 47.4842166 ], + [ 7.6386354, 47.4841753 ], + [ 7.6386418, 47.4841342 ], + [ 7.6386533, 47.4840935 ], + [ 7.6387336, 47.4839511 ], + [ 7.6387406, 47.4839363 ], + [ 7.6387474, 47.4839216 ], + [ 7.6387542, 47.4839068 ], + [ 7.6387582, 47.4838974 ], + [ 7.638761, 47.4838878 ], + [ 7.638763, 47.4838684 ], + [ 7.6387623, 47.4838586 ], + [ 7.6387608, 47.4838376 ], + [ 7.6387568, 47.4838167 ], + [ 7.6387504, 47.4837962 ], + [ 7.6387398, 47.4837542 ], + [ 7.6387097, 47.4836602 ], + [ 7.6386913, 47.4835738 ], + [ 7.6386813, 47.4834874 ], + [ 7.6386614, 47.4833659 ], + [ 7.6382511, 47.4834772 ], + [ 7.6374108, 47.4837038 ], + [ 7.6367939, 47.4838694 ], + [ 7.636186, 47.4840335 ], + [ 7.6345635, 47.4842188 ], + [ 7.6333262, 47.4843594 ], + [ 7.6326073999999995, 47.4844417 ], + [ 7.6328165, 47.484904 ], + [ 7.6330096, 47.4851537 ], + [ 7.6331837, 47.4856296 ], + [ 7.6332493, 47.4859426 ], + [ 7.633227, 47.4862377 ], + [ 7.632923, 47.486256 ], + [ 7.632819, 47.4859867 ], + [ 7.6327012, 47.4857089 ], + [ 7.6324539, 47.4854308 ], + [ 7.6320362, 47.4851223 ], + [ 7.6316088, 47.484825 ], + [ 7.6311165, 47.4847282 ], + [ 7.6302657, 47.4844794 ], + [ 7.6301613, 47.4844527 ], + [ 7.6296501, 47.4843223 ], + [ 7.6291532, 47.4844448 ], + [ 7.628246, 47.4846683 ], + [ 7.6281476999999995, 47.4846925 ], + [ 7.6281455000000005, 47.4848057 ], + [ 7.6281112, 47.4848968 ], + [ 7.6280091, 47.4850301 ], + [ 7.6279886999999995, 47.4850567 ], + [ 7.627851, 47.4852725 ], + [ 7.6279664, 47.4854734 ], + [ 7.6280449, 47.485610199999996 ], + [ 7.6280717, 47.4857657 ], + [ 7.6281437, 47.4861835 ], + [ 7.6281671, 47.4862768 ], + [ 7.6282664, 47.4866736 ], + [ 7.6282809, 47.4867318 ], + [ 7.6283985, 47.4869612 ], + [ 7.628577, 47.4873092 ], + [ 7.6285647, 47.4873375 ], + [ 7.6283575, 47.4878109 ], + [ 7.6282356, 47.4879689 ], + [ 7.6282867, 47.4879797 ], + [ 7.6284845, 47.4880472 ], + [ 7.628534, 47.4880655 ], + [ 7.6284902, 47.4882092 ], + [ 7.6284849, 47.4885413 ], + [ 7.6283833, 47.4887917 ], + [ 7.6279926, 47.4887314 ], + [ 7.6279416, 47.4887823 ], + [ 7.6279124, 47.4888124 ], + [ 7.6277883, 47.4889232 ], + [ 7.6276439, 47.4890218 ], + [ 7.6276119, 47.4890328 ], + [ 7.6276893999999995, 47.4891483 ], + [ 7.6275775, 47.4891887 ], + [ 7.6275661, 47.4892922 ], + [ 7.6275169, 47.489375 ], + [ 7.6274253, 47.4895293 ], + [ 7.6274309, 47.4896211 ], + [ 7.6274419, 47.4898105 ], + [ 7.6274344, 47.4900542 ], + [ 7.6271049, 47.4903711 ], + [ 7.6269593, 47.4906945 ], + [ 7.6269507999999995, 47.4907134 ], + [ 7.6273572, 47.4907342 ], + [ 7.6274916, 47.4907526 ], + [ 7.6275089, 47.4907198 ], + [ 7.6275729, 47.4905982 ], + [ 7.6276530000000005, 47.4904398 ], + [ 7.6279718, 47.4899497 ], + [ 7.6282043, 47.4897626 ], + [ 7.6284273, 47.4895851 ], + [ 7.6287859000000005, 47.4893005 ], + [ 7.6287631000000005, 47.489362 ], + [ 7.6292196, 47.4894036 ], + [ 7.629115, 47.4897042 ], + [ 7.6290178, 47.4899833 ], + [ 7.6289158, 47.4902762 ], + [ 7.6288936, 47.4903399 ], + [ 7.6289483, 47.4903312 ], + [ 7.6293397, 47.490288 ], + [ 7.6296628, 47.4902524 ], + [ 7.6297322, 47.490251 ], + [ 7.6297601, 47.4900786 ], + [ 7.6298788, 47.4893436 ], + [ 7.6299513, 47.4888744 ], + [ 7.6299731, 47.4887336 ], + [ 7.6302647, 47.4885919 ], + [ 7.6304297, 47.4885118 ], + [ 7.6304795, 47.4884876 ], + [ 7.6305693, 47.4884424 ], + [ 7.6306753, 47.4883921 ], + [ 7.6307612, 47.4883505 ], + [ 7.6307925, 47.4883144 ], + [ 7.6308018, 47.4883031 ], + [ 7.6310434, 47.4884884 ], + [ 7.6315463, 47.4888734 ], + [ 7.6319879, 47.4892118 ], + [ 7.632081, 47.4892832 ], + [ 7.6321082, 47.4892539 ], + [ 7.6321123, 47.4891166 ], + [ 7.6316605, 47.4888037 ], + [ 7.63109, 47.4884089 ], + [ 7.6308512, 47.4882429 ], + [ 7.6310161, 47.488042 ], + [ 7.6311979999999995, 47.4877185 ], + [ 7.6312583, 47.4875482 ], + [ 7.6312511, 47.487411 ], + [ 7.6312918, 47.4873418 ], + [ 7.6314817, 47.4871719 ], + [ 7.6316106, 47.4868606 ], + [ 7.6317471999999995, 47.4866802 ], + [ 7.6317858, 47.4866291 ], + [ 7.6318249, 47.4865776 ], + [ 7.6321615, 47.4866697 ], + [ 7.632765, 47.4868349 ], + [ 7.6332633, 47.486871 ], + [ 7.6332930999999995, 47.4867345 ], + [ 7.6333248000000005, 47.4865892 ], + [ 7.6333579, 47.486437 ], + [ 7.6338361, 47.4865671 ], + [ 7.6339477, 47.4865898 ], + [ 7.6342318, 47.486645 ], + [ 7.6344902, 47.4867241 ], + [ 7.6347852, 47.4868128 ], + [ 7.6346447, 47.4869731 ], + [ 7.6345949, 47.4871736 ], + [ 7.6347347, 47.4872453 ], + [ 7.6346814, 47.4873887 ], + [ 7.6349272, 47.4878911 ], + [ 7.6352606, 47.4879208 ], + [ 7.6351681, 47.4883715 ], + [ 7.6352058, 47.4883807 ], + [ 7.6350727, 47.48858 ], + [ 7.6348933, 47.4887607 ], + [ 7.6345296, 47.4890711 ], + [ 7.6343989, 47.4892981 ], + [ 7.6342634, 47.4896026 ], + [ 7.634285, 47.4897077 ], + [ 7.6344082, 47.4899388 ], + [ 7.6344966, 47.4901495 ], + [ 7.6345282, 47.4904133 ], + [ 7.63457, 47.4904727 ], + [ 7.6346854, 47.4904743 ], + [ 7.6352223, 47.4906364 ], + [ 7.6353999, 47.4906565 ], + [ 7.6357105, 47.490644 ], + [ 7.636003, 47.4906208 ], + [ 7.6363988, 47.4906543 ], + [ 7.6368334, 47.4907229 ], + [ 7.6369568999999995, 47.4907154 ], + [ 7.6372113, 47.4906135 ], + [ 7.6374059, 47.4905769 ], + [ 7.6379245000000004, 47.4906031 ], + [ 7.6380961, 47.4905839 ], + [ 7.6391852, 47.4903546 ], + [ 7.6394094, 47.4903223 ], + [ 7.6397814, 47.4902401 ], + [ 7.6401620999999995, 47.4901168 ], + [ 7.6410164, 47.4897912 ], + [ 7.6413826, 47.4896807 ], + [ 7.6417057, 47.4895996 ], + [ 7.6421551999999995, 47.4894441 ], + [ 7.6423901, 47.4893317 ], + [ 7.6427731, 47.4890771 ], + [ 7.6430834, 47.4889568 ], + [ 7.6433974, 47.4888693 ], + [ 7.6435902, 47.4887813 ], + [ 7.6436784, 47.4887304 ], + [ 7.6439863, 47.4885764 ], + [ 7.6442374, 47.4884805 ], + [ 7.6442569, 47.4885042 ], + [ 7.6442955999999995, 47.4887004 ], + [ 7.6444301, 47.4893051 ], + [ 7.6444648, 47.4894613 ], + [ 7.6445212, 47.4896381 ], + [ 7.6445626, 47.4896956 ], + [ 7.6447735, 47.4899886 ], + [ 7.6451091, 47.490537 ], + [ 7.6452495, 47.490762 ], + [ 7.645264, 47.4907873 ], + [ 7.6452452, 47.4907869 ], + [ 7.645059, 47.4907483 ], + [ 7.6450306999999995, 47.4907464 ], + [ 7.64497, 47.4907391 ], + [ 7.6448259, 47.4907182 ], + [ 7.6448063, 47.4907181 ], + [ 7.6447408, 47.4906939 ], + [ 7.6447123, 47.4906668 ], + [ 7.6446936999999995, 47.490662 ], + [ 7.6446754, 47.4906548 ], + [ 7.6446415, 47.490655 ], + [ 7.6445957, 47.4906243 ], + [ 7.6445536, 47.4905822 ], + [ 7.6445436, 47.4905816 ], + [ 7.6444995, 47.4905902 ], + [ 7.6444393999999996, 47.4906515 ], + [ 7.6443975, 47.4906192 ], + [ 7.6443718, 47.490611 ], + [ 7.6443104, 47.4906094 ], + [ 7.6442721, 47.4906202 ], + [ 7.6442307, 47.4906524 ], + [ 7.6441142, 47.4906416 ], + [ 7.6440025, 47.4906416 ], + [ 7.6439159, 47.490679 ], + [ 7.6438538, 47.4906684 ], + [ 7.6437034, 47.4906838 ], + [ 7.6436511, 47.4906747 ], + [ 7.6436288, 47.4906845 ], + [ 7.6435602, 47.4907403 ], + [ 7.6434938, 47.4907554 ], + [ 7.6434462, 47.4907846 ], + [ 7.6434429999999995, 47.4907379 ], + [ 7.6434268, 47.490501 ], + [ 7.6434001, 47.4902671 ], + [ 7.6432511, 47.4903469 ], + [ 7.6426258, 47.4904868 ], + [ 7.6425752, 47.4904981 ], + [ 7.6425754, 47.4905565 ], + [ 7.6425622, 47.4906076 ], + [ 7.6425503, 47.4906535 ], + [ 7.6425007, 47.4906858 ], + [ 7.6423559, 47.490738 ], + [ 7.6422945, 47.490736 ], + [ 7.6421937, 47.4907481 ], + [ 7.6421719, 47.4907534 ], + [ 7.6420505, 47.4907866 ], + [ 7.6420462, 47.4907763 ], + [ 7.6420125, 47.4907501 ], + [ 7.6419457, 47.4907428 ], + [ 7.6419524, 47.4907637 ], + [ 7.6419415, 47.4907837 ], + [ 7.6419663, 47.4908221 ], + [ 7.6419378, 47.4908522 ], + [ 7.6419027, 47.4908479 ], + [ 7.6418365, 47.4908104 ], + [ 7.6418187, 47.4908047 ], + [ 7.6417263, 47.4908174 ], + [ 7.6416942, 47.4908126 ], + [ 7.6416566, 47.4908162 ], + [ 7.6414539999999995, 47.4908799 ], + [ 7.6414124, 47.4908997 ], + [ 7.6413573, 47.4909236 ], + [ 7.6412732, 47.4909093 ], + [ 7.6411424, 47.4909332 ], + [ 7.6411196, 47.4909442 ], + [ 7.6410969, 47.4909574 ], + [ 7.6410115, 47.491028299999996 ], + [ 7.6409587, 47.4910792 ], + [ 7.6408926, 47.4911386 ], + [ 7.6408614, 47.4911931 ], + [ 7.6408426, 47.4912646 ], + [ 7.640814, 47.4912796 ], + [ 7.6407842, 47.4912435 ], + [ 7.6407498, 47.4912333 ], + [ 7.6407295, 47.4912385 ], + [ 7.6405907, 47.4913036 ], + [ 7.6404461, 47.4912797 ], + [ 7.6403747, 47.4912918 ], + [ 7.6402932, 47.4913227 ], + [ 7.6401829, 47.4913719 ], + [ 7.6399749, 47.4914383 ], + [ 7.6399527, 47.4914494 ], + [ 7.639887, 47.4914645 ], + [ 7.6397672, 47.4915001 ], + [ 7.6397566, 47.4915028 ], + [ 7.639679, 47.4915111 ], + [ 7.6395917, 47.4915193 ], + [ 7.6394606, 47.4915363 ], + [ 7.6393469, 47.4915486 ], + [ 7.639314, 47.4915566 ], + [ 7.6392632, 47.4915591 ], + [ 7.6392261999999995, 47.4915571 ], + [ 7.6390531, 47.4915687 ], + [ 7.6388544, 47.4915875 ], + [ 7.6387232, 47.4916153 ], + [ 7.6386722, 47.4916208 ], + [ 7.6385506, 47.4916298 ], + [ 7.6384469, 47.4916299 ], + [ 7.638327, 47.4916249 ], + [ 7.6382416, 47.4916269 ], + [ 7.638101, 47.4916298 ], + [ 7.6379984, 47.4916125 ], + [ 7.637911, 47.4915939 ], + [ 7.6378425, 47.4915661 ], + [ 7.6377667, 47.4915177 ], + [ 7.6376745, 47.4914636 ], + [ 7.6375354, 47.4914759 ], + [ 7.6374718999999995, 47.4914654 ], + [ 7.6374201, 47.4914373 ], + [ 7.6373733, 47.4914089 ], + [ 7.6372898, 47.4913536 ], + [ 7.6372498, 47.4913292 ], + [ 7.6371794, 47.4912787 ], + [ 7.6369687, 47.4911913 ], + [ 7.636855, 47.4911514 ], + [ 7.6366469, 47.4911537 ], + [ 7.6365162, 47.4911376 ], + [ 7.6362612, 47.4910857 ], + [ 7.6358763, 47.4910172 ], + [ 7.6356234, 47.4909633 ], + [ 7.635501, 47.4909233 ], + [ 7.6352559, 47.4908515 ] + ], + [ + [ 7.6364744, 47.4902519 ], + [ 7.6364526, 47.4904204 ], + [ 7.6360582, 47.4903723 ], + [ 7.6360167, 47.4902394 ], + [ 7.6360529, 47.4901788 ], + [ 7.6362103, 47.4900993 ], + [ 7.6364777, 47.4901205 ], + [ 7.6364744, 47.4902519 ] + ], + [ + [ 7.6510918, 47.4906671 ], + [ 7.6511143, 47.4907588 ], + [ 7.6510146, 47.4907715 ], + [ 7.65099, 47.4906784 ], + [ 7.6510918, 47.4906671 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns063", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Ermitage - Chilchholz", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Ermitage - Chilchholz", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Ermitage - Chilchholz", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Ermitage - Chilchholz", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.4710825, 46.7048663 ], + [ 9.4710718, 46.7047252 ], + [ 9.4710504, 46.7045847 ], + [ 9.4710184, 46.7044452 ], + [ 9.4709757, 46.704307 ], + [ 9.4709226, 46.7041705 ], + [ 9.4708592, 46.7040361 ], + [ 9.4707856, 46.7039042 ], + [ 9.4707022, 46.7037751 ], + [ 9.470609, 46.7036492 ], + [ 9.4705063, 46.7035268 ], + [ 9.4703945, 46.7034083 ], + [ 9.4702739, 46.703294 ], + [ 9.4701447, 46.7031842 ], + [ 9.4700073, 46.7030791 ], + [ 9.4698621, 46.7029792 ], + [ 9.4697095, 46.7028846 ], + [ 9.46955, 46.7027957 ], + [ 9.4693839, 46.7027126 ], + [ 9.4692117, 46.7026356 ], + [ 9.4690338, 46.7025649 ], + [ 9.4688509, 46.7025008 ], + [ 9.4686633, 46.7024433 ], + [ 9.4684716, 46.7023926 ], + [ 9.4682763, 46.7023489 ], + [ 9.4680779, 46.7023123 ], + [ 9.4678771, 46.7022829 ], + [ 9.4676742, 46.7022607 ], + [ 9.46747, 46.7022459 ], + [ 9.4672649, 46.7022385 ], + [ 9.4670596, 46.7022384 ], + [ 9.4668545, 46.7022458 ], + [ 9.4666502, 46.7022605 ], + [ 9.4664474, 46.7022825 ], + [ 9.4662465, 46.7023119 ], + [ 9.4660481, 46.7023484 ], + [ 9.4658528, 46.702392 ], + [ 9.465661, 46.7024426 ], + [ 9.4654734, 46.7025 ], + [ 9.4652904, 46.7025641 ], + [ 9.4651125, 46.7026347 ], + [ 9.4649402, 46.7027116 ], + [ 9.464774, 46.7027946 ], + [ 9.4646144, 46.7028835 ], + [ 9.4644617, 46.702978 ], + [ 9.4643164, 46.7030779 ], + [ 9.4641789, 46.7031828 ], + [ 9.4640496, 46.7032926 ], + [ 9.463928899999999, 46.7034069 ], + [ 9.463817, 46.7035253 ], + [ 9.4637142, 46.7036477 ], + [ 9.4636209, 46.7037735 ], + [ 9.4635373, 46.7039026 ], + [ 9.4634636, 46.7040345 ], + [ 9.4634001, 46.7041688 ], + [ 9.4633469, 46.7043053 ], + [ 9.4633041, 46.7044435 ], + [ 9.4632719, 46.704583 ], + [ 9.4632503, 46.7047235 ], + [ 9.4632395, 46.7048646 ], + [ 9.463239399999999, 46.7050059 ], + [ 9.4632501, 46.705147 ], + [ 9.4632715, 46.7052875 ], + [ 9.4633035, 46.705427 ], + [ 9.4633462, 46.7055652 ], + [ 9.4633993, 46.7057017 ], + [ 9.463462700000001, 46.7058361 ], + [ 9.4635362, 46.705968 ], + [ 9.4636197, 46.7060971 ], + [ 9.4637128, 46.706223 ], + [ 9.4638155, 46.706345400000004 ], + [ 9.4639273, 46.7064639 ], + [ 9.4640479, 46.7065783 ], + [ 9.4641771, 46.7066881 ], + [ 9.4643145, 46.7067931 ], + [ 9.4644597, 46.7068931 ], + [ 9.4646122, 46.7069876 ], + [ 9.4647718, 46.7070766 ], + [ 9.4649379, 46.7071597 ], + [ 9.4651101, 46.7072367 ], + [ 9.465288, 46.7073074 ], + [ 9.4654709, 46.7073715 ], + [ 9.4656585, 46.7074291 ], + [ 9.4658503, 46.7074797 ], + [ 9.4660456, 46.7075234 ], + [ 9.4662439, 46.70756 ], + [ 9.4664448, 46.7075895 ], + [ 9.4666477, 46.7076116 ], + [ 9.4668519, 46.7076264 ], + [ 9.467057, 46.7076339 ], + [ 9.4672624, 46.7076339 ], + [ 9.4674675, 46.7076266 ], + [ 9.4676718, 46.7076118 ], + [ 9.4678747, 46.7075898 ], + [ 9.4680756, 46.7075604 ], + [ 9.468274, 46.7075239 ], + [ 9.4684693, 46.7074803 ], + [ 9.4686611, 46.7074297 ], + [ 9.4688488, 46.7073723 ], + [ 9.4690318, 46.7073082 ], + [ 9.4692097, 46.7072376 ], + [ 9.469382, 46.7071607 ], + [ 9.4695482, 46.7070776 ], + [ 9.4697078, 46.7069888 ], + [ 9.4698605, 46.7068943 ], + [ 9.4700058, 46.7067944 ], + [ 9.4701432, 46.7066894 ], + [ 9.4702725, 46.7065796 ], + [ 9.4703933, 46.7064654 ], + [ 9.4705052, 46.7063469 ], + [ 9.4706079, 46.7062246 ], + [ 9.4707012, 46.7060987 ], + [ 9.4707848, 46.7059696 ], + [ 9.4708585, 46.705837700000004 ], + [ 9.470922, 46.7057034 ], + [ 9.4709752, 46.7055669 ], + [ 9.471018, 46.7054287 ], + [ 9.4710502, 46.7052892 ], + [ 9.4710717, 46.7051487 ], + [ 9.4710825, 46.7050076 ], + [ 9.4710825, 46.7048663 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0111", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Sils", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Sils", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Sils", + "lang" : "it-CH" + }, + { + "text" : "Substation Sils", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.1795186, 47.4775076 ], + [ 8.1795111, 47.4773664 ], + [ 8.1794928, 47.4772257 ], + [ 8.1794637, 47.4770858 ], + [ 8.1794238, 47.4769472 ], + [ 8.1793732, 47.4768101 ], + [ 8.1793122, 47.4766751 ], + [ 8.1792408, 47.4765424 ], + [ 8.1791592, 47.4764124 ], + [ 8.1790678, 47.4762854 ], + [ 8.1789666, 47.4761619 ], + [ 8.1788561, 47.4760422 ], + [ 8.1787364, 47.4759265 ], + [ 8.1786081, 47.4758153 ], + [ 8.1784712, 47.4757087 ], + [ 8.1783264, 47.4756072 ], + [ 8.1781739, 47.4755109 ], + [ 8.1780142, 47.4754202 ], + [ 8.1778478, 47.4753353 ], + [ 8.1776749, 47.4752564 ], + [ 8.1774963, 47.4751837 ], + [ 8.1773122, 47.4751174 ], + [ 8.1771233, 47.4750578 ], + [ 8.1769301, 47.475005 ], + [ 8.1767331, 47.4749591 ], + [ 8.1765328, 47.4749203 ], + [ 8.1763297, 47.4748886 ], + [ 8.1761245, 47.4748641 ], + [ 8.1759177, 47.474847 ], + [ 8.1757098, 47.4748373 ], + [ 8.1755015, 47.4748349 ], + [ 8.1752933, 47.4748399 ], + [ 8.1750857, 47.4748523 ], + [ 8.1748794, 47.4748721 ], + [ 8.1746749, 47.4748991 ], + [ 8.1744728, 47.4749334 ], + [ 8.1742736, 47.4749748 ], + [ 8.1740779, 47.4750232 ], + [ 8.1738861, 47.4750784 ], + [ 8.1736989, 47.4751404 ], + [ 8.1735168, 47.475209 ], + [ 8.1733401, 47.4752839 ], + [ 8.1731695, 47.475365 ], + [ 8.1730054, 47.4754521 ], + [ 8.1728483, 47.4755448 ], + [ 8.1726985, 47.475643 ], + [ 8.1725565, 47.4757464 ], + [ 8.1724227, 47.4758547 ], + [ 8.1722974, 47.4759675 ], + [ 8.172181, 47.4760847 ], + [ 8.1720738, 47.4762058 ], + [ 8.1719761, 47.4763306 ], + [ 8.1718881, 47.4764586 ], + [ 8.1718102, 47.4765896 ], + [ 8.1717425, 47.4767232 ], + [ 8.1716852, 47.476859 ], + [ 8.1716384, 47.4769967 ], + [ 8.1716024, 47.4771358 ], + [ 8.1715771, 47.4772761 ], + [ 8.1715627, 47.477417 ], + [ 8.1715592, 47.4775582 ], + [ 8.1715666, 47.4776994 ], + [ 8.1715849, 47.4778401 ], + [ 8.171614, 47.47798 ], + [ 8.1716539, 47.4781186 ], + [ 8.1717044, 47.4782557 ], + [ 8.1717654, 47.4783907 ], + [ 8.1718368, 47.4785234 ], + [ 8.1719184, 47.4786534 ], + [ 8.1720098, 47.4787804 ], + [ 8.1721109, 47.4789039 ], + [ 8.1722215, 47.4790236 ], + [ 8.1723411, 47.4791393 ], + [ 8.1724695, 47.4792506 ], + [ 8.1726063, 47.4793571 ], + [ 8.1727511, 47.4794587 ], + [ 8.1729036, 47.4795549 ], + [ 8.1730633, 47.4796457 ], + [ 8.1732298, 47.4797306 ], + [ 8.1734026, 47.4798095 ], + [ 8.1735813, 47.4798822 ], + [ 8.1737653, 47.4799484 ], + [ 8.1739542, 47.4800081 ], + [ 8.1741475, 47.4800609 ], + [ 8.1743445, 47.4801068 ], + [ 8.1745449, 47.4801456 ], + [ 8.1747479, 47.4801773 ], + [ 8.1749532, 47.4802018 ], + [ 8.17516, 47.4802189 ], + [ 8.1753679, 47.4802287 ], + [ 8.1755762, 47.480231 ], + [ 8.1757845, 47.480226 ], + [ 8.175992, 47.4802136 ], + [ 8.1761984, 47.4801939 ], + [ 8.1764029, 47.4801668 ], + [ 8.176605, 47.4801325 ], + [ 8.1768042, 47.4800911 ], + [ 8.177, 47.4800427 ], + [ 8.1771918, 47.4799875 ], + [ 8.177379, 47.4799254 ], + [ 8.1775612, 47.4798569 ], + [ 8.1777378, 47.4797819 ], + [ 8.1779084, 47.4797008 ], + [ 8.1780725, 47.4796138 ], + [ 8.1782297, 47.479521 ], + [ 8.1783794, 47.4794228 ], + [ 8.1785214, 47.4793195 ], + [ 8.1786553, 47.4792112 ], + [ 8.1787806, 47.4790983 ], + [ 8.1788969, 47.4789811 ], + [ 8.1790041, 47.47886 ], + [ 8.1791018, 47.4787352 ], + [ 8.1791898, 47.4786072 ], + [ 8.1792677, 47.4784762 ], + [ 8.1793354, 47.4783426 ], + [ 8.1793927, 47.4782067 ], + [ 8.1794394, 47.4780691 ], + [ 8.1794754, 47.4779299 ], + [ 8.1795007, 47.4777897 ], + [ 8.1795151, 47.4776488 ], + [ 8.1795186, 47.4775076 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0097", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Riniken Süd", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Riniken Süd", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Riniken Süd", + "lang" : "it-CH" + }, + { + "text" : "Substation Riniken Süd", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7702649, 47.496913 ], + [ 7.7704975, 47.4968019 ], + [ 7.7714087, 47.4963671 ], + [ 7.7714904, 47.4961896 ], + [ 7.7715665, 47.4960983 ], + [ 7.7724661, 47.4953957 ], + [ 7.773632, 47.495088 ], + [ 7.773633, 47.4950878 ], + [ 7.7736388, 47.4950728 ], + [ 7.7736538, 47.4950374 ], + [ 7.7736697, 47.4950021 ], + [ 7.7736865, 47.4949671 ], + [ 7.7737041, 47.4949322 ], + [ 7.7737227, 47.4948976 ], + [ 7.7737422, 47.4948631 ], + [ 7.7737625, 47.4948289 ], + [ 7.7737837, 47.494795 ], + [ 7.7738057, 47.4947613 ], + [ 7.773817, 47.4947452 ], + [ 7.7738291, 47.4947293 ], + [ 7.773842, 47.4947137 ], + [ 7.7738557, 47.4946985 ], + [ 7.7738701, 47.4946835 ], + [ 7.7738852, 47.4946689 ], + [ 7.7739011, 47.4946547 ], + [ 7.7739177, 47.4946408 ], + [ 7.7739293, 47.4946319 ], + [ 7.7739417, 47.4946234 ], + [ 7.7739547, 47.4946154 ], + [ 7.7739683, 47.4946079 ], + [ 7.7739825, 47.4946008 ], + [ 7.7739972, 47.4945943 ], + [ 7.7740124, 47.4945884 ], + [ 7.7740281, 47.494583 ], + [ 7.7740442, 47.4945781 ], + [ 7.7740606, 47.4945739 ], + [ 7.7740773, 47.4945703 ], + [ 7.7740943, 47.4945673 ], + [ 7.7741178, 47.4945639 ], + [ 7.7741413, 47.494561 ], + [ 7.774165, 47.4945587 ], + [ 7.7741889, 47.494557 ], + [ 7.7742123, 47.4945559 ], + [ 7.7742128, 47.4945559 ], + [ 7.7741033, 47.4939393 ], + [ 7.7740751, 47.493944 ], + [ 7.7739641, 47.4939624 ], + [ 7.7738679, 47.4939755 ], + [ 7.7738042, 47.4939842 ], + [ 7.7734373, 47.494029 ], + [ 7.773384, 47.4940371 ], + [ 7.7733821, 47.4940375 ], + [ 7.7733319, 47.4940481 ], + [ 7.7732897, 47.4940597 ], + [ 7.7732738, 47.4940646 ], + [ 7.7732325, 47.4940788 ], + [ 7.773186, 47.4940982 ], + [ 7.7731823, 47.4941001 ], + [ 7.773142, 47.4941202 ], + [ 7.7730016, 47.4941966 ], + [ 7.7729486, 47.494228 ], + [ 7.7728997, 47.4942623 ], + [ 7.7728553, 47.4942993 ], + [ 7.7728155, 47.4943387 ], + [ 7.7727808, 47.4943801 ], + [ 7.7727012, 47.4944852 ], + [ 7.7727011, 47.4944853 ], + [ 7.7726593, 47.4945162 ], + [ 7.7726379, 47.4945268 ], + [ 7.7726178, 47.4945385 ], + [ 7.7725992999999995, 47.4945514 ], + [ 7.7725824, 47.4945652 ], + [ 7.7722414, 47.4948696 ], + [ 7.7721194, 47.4949798 ], + [ 7.7719993, 47.4950911 ], + [ 7.7718813, 47.4952033 ], + [ 7.7717452, 47.4953288 ], + [ 7.7716015, 47.4954505 ], + [ 7.7714507, 47.495568 ], + [ 7.7710281, 47.495884 ], + [ 7.7709565, 47.4959403 ], + [ 7.7708891, 47.4959989 ], + [ 7.7708259, 47.4960596 ], + [ 7.770722, 47.4961756 ], + [ 7.7707052999999995, 47.4961986 ], + [ 7.7707047, 47.4961994 ], + [ 7.7703136, 47.4961978 ], + [ 7.770314, 47.4962002 ], + [ 7.7703147999999995, 47.4962062 ], + [ 7.770315, 47.4962108 ], + [ 7.7703155, 47.4962217 ], + [ 7.7703154, 47.4962372 ], + [ 7.7703145, 47.4962527 ], + [ 7.7703126000000005, 47.4962681 ], + [ 7.7703107, 47.4962789 ], + [ 7.7703099, 47.4962835 ], + [ 7.7703064, 47.4962988 ], + [ 7.7703019, 47.4963141 ], + [ 7.7702966, 47.4963291 ], + [ 7.7702086, 47.4965602 ], + [ 7.7702028, 47.4965767 ], + [ 7.7701977, 47.4965934 ], + [ 7.7701934999999995, 47.4966101 ], + [ 7.7701901, 47.4966269 ], + [ 7.7701876, 47.4966438 ], + [ 7.7701858999999995, 47.4966608 ], + [ 7.7701856, 47.496665899999996 ], + [ 7.770185, 47.4966777 ], + [ 7.7701849, 47.4966947 ], + [ 7.7701858, 47.4967117 ], + [ 7.7701874, 47.4967286 ], + [ 7.7701899, 47.4967455 ], + [ 7.7701932, 47.4967623 ], + [ 7.7701972999999995, 47.4967791 ], + [ 7.7702024, 47.4967959 ], + [ 7.7702083, 47.4968126 ], + [ 7.770215, 47.4968291 ], + [ 7.7702227, 47.4968455 ], + [ 7.7702312, 47.4968617 ], + [ 7.7702405, 47.4968776 ], + [ 7.7702507, 47.4968934 ], + [ 7.7702617, 47.4969088 ], + [ 7.7702649, 47.496913 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns122", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Eileten - Dumberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Eileten - Dumberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Eileten - Dumberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Eileten - Dumberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.9333098, 47.191864699999996 ], + [ 8.9251893, 47.1920545 ], + [ 8.9165062, 47.1918514 ], + [ 8.9127186, 47.1917358 ], + [ 8.9097056, 47.1917137 ], + [ 8.9085655, 47.1922455 ], + [ 8.9053914, 47.1932081 ], + [ 8.9043912, 47.1931916 ], + [ 8.8986453, 47.1934986 ], + [ 8.8973631, 47.1939107 ], + [ 8.8959535, 47.1954579 ], + [ 8.8919827, 47.1960119 ], + [ 8.8859866, 47.1968431 ], + [ 8.8827227, 47.19719 ], + [ 8.8824645, 47.195448 ], + [ 8.8828297, 47.1943099 ], + [ 8.8826043, 47.1918297 ], + [ 8.8707431, 47.1887528 ], + [ 8.8691538, 47.1914984 ], + [ 8.8687634, 47.1936804 ], + [ 8.8596499, 47.1977628 ], + [ 8.8581156, 47.198389 ], + [ 8.8532594, 47.1981789 ], + [ 8.849436, 47.1958418 ], + [ 8.8480463, 47.194442 ], + [ 8.8470714, 47.1937567 ], + [ 8.8452401, 47.1931269 ], + [ 8.843513699999999, 47.1927206 ], + [ 8.8417957, 47.1926292 ], + [ 8.8395693, 47.193286 ], + [ 8.8371449, 47.1939452 ], + [ 8.8346316, 47.1949878 ], + [ 8.8329964, 47.1955474 ], + [ 8.8318831, 47.1958757 ], + [ 8.8311209, 47.19575 ], + [ 8.8298639, 47.1956303 ], + [ 8.8282047, 47.195268 ], + [ 8.8264443, 47.1948169 ], + [ 8.8253616, 47.1950549 ], + [ 8.8236326, 47.1958179 ], + [ 8.8226946, 47.1965488 ], + [ 8.8209481, 47.1966373 ], + [ 8.820613, 47.1964389 ], + [ 8.8194215, 47.1962958 ], + [ 8.8176536, 47.1968343 ], + [ 8.8170043, 47.1985288 ], + [ 8.8164974, 47.2006265 ], + [ 8.8156432, 47.2007716 ], + [ 8.8129543, 47.2014335 ], + [ 8.8109882, 47.2019742 ], + [ 8.8093821, 47.2023982 ], + [ 8.8076603, 47.2021713 ], + [ 8.8061781, 47.2022788 ], + [ 8.8041551, 47.20318 ], + [ 8.8029105, 47.2041955 ], + [ 8.7998116, 47.2056131 ], + [ 8.799177, 47.2076537 ], + [ 8.800101699999999, 47.209747899999996 ], + [ 8.8047149, 47.2115284 ], + [ 8.8072263, 47.2135789 ], + [ 8.8096187, 47.2154846 ], + [ 8.8117802, 47.217393 ], + [ 8.8142331, 47.219073 ], + [ 8.8179934, 47.2202424 ], + [ 8.8210683, 47.2204305 ], + [ 8.8231982, 47.2198201 ], + [ 8.828070499999999, 47.2167702 ], + [ 8.831874299999999, 47.2158022 ], + [ 8.8340104, 47.215439 ], + [ 8.8377721, 47.2153933 ], + [ 8.8403123, 47.2153399 ], + [ 8.8417975, 47.2147034 ], + [ 8.8465866, 47.2135654 ], + [ 8.8497156, 47.2145616 ], + [ 8.8526056, 47.2165053 ], + [ 8.8537068, 47.218201 ], + [ 8.8568397, 47.219332 ], + [ 8.8581717, 47.2197654 ], + [ 8.860017299999999, 47.2196526 ], + [ 8.8640613, 47.2178034 ], + [ 8.8714193, 47.2164526 ], + [ 8.8785129, 47.2151047 ], + [ 8.8831556, 47.2159012 ], + [ 8.888744299999999, 47.2174952 ], + [ 8.8952475, 47.2187176 ], + [ 8.8993189, 47.2203303 ], + [ 8.9051896, 47.2207392 ], + [ 8.9117322, 47.2221626 ], + [ 8.9184277, 47.2231338 ], + [ 8.922784, 47.2242697 ], + [ 8.927481, 47.2245914 ], + [ 8.9324831, 47.2244907 ], + [ 8.9348362, 47.2184461 ], + [ 8.936589099999999, 47.2045488 ], + [ 8.935159, 47.1959039 ], + [ 8.9333098, 47.191864699999996 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSPW001", + "country" : "CHE", + "name" : [ + { + "text" : "LSPW Wangen Seaplanebase", + "lang" : "de-CH" + }, + { + "text" : "LSPW Wangen Seaplanebase", + "lang" : "fr-CH" + }, + { + "text" : "LSPW Wangen Seaplanebase", + "lang" : "it-CH" + }, + { + "text" : "LSPW Wangen Seaplanebase", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Wangen Seaplanebase", + "lang" : "de-CH" + }, + { + "text" : "Wangen Seaplanebase", + "lang" : "fr-CH" + }, + { + "text" : "Wangen Seaplanebase", + "lang" : "it-CH" + }, + { + "text" : "Wangen Seaplanebase", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.flugplatzwangen.ch/flugplatz/drohnenbewilligung/", + "email" : "drohnen@flugplatzwangen.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6472165, 47.4970351 ], + [ 7.6477862, 47.4973091 ], + [ 7.6480674, 47.4978835 ], + [ 7.6481009, 47.4980724 ], + [ 7.6474456, 47.4986914 ], + [ 7.6468234, 47.4989406 ], + [ 7.6460757, 47.4987178 ], + [ 7.6457342, 47.4984007 ], + [ 7.6455675, 47.4981853 ], + [ 7.6456228, 47.497875 ], + [ 7.6454699, 47.4977644 ], + [ 7.6453004, 47.4976758 ], + [ 7.644976, 47.4974543 ], + [ 7.6448126, 47.4972833 ], + [ 7.6445761999999995, 47.4969822 ], + [ 7.6441607, 47.4965945 ], + [ 7.6441203, 47.4965614 ], + [ 7.6440765, 47.4965305 ], + [ 7.644028, 47.4965031 ], + [ 7.6439759, 47.4964788 ], + [ 7.6439212, 47.4964574 ], + [ 7.6438637, 47.4964391 ], + [ 7.6437452, 47.496409 ], + [ 7.6436161, 47.4963763 ], + [ 7.6435275, 47.4963491 ], + [ 7.6434412, 47.4963186 ], + [ 7.6433568, 47.4962862 ], + [ 7.6432732, 47.4962521 ], + [ 7.6430963, 47.4961768 ], + [ 7.6429873, 47.4961394 ], + [ 7.6429203, 47.4961079 ], + [ 7.6428573, 47.4960732 ], + [ 7.6427965, 47.4960361 ], + [ 7.6426008, 47.4959075 ], + [ 7.6425067, 47.4958473 ], + [ 7.6424111, 47.4957882 ], + [ 7.6423129, 47.4957312 ], + [ 7.6422487, 47.4956988 ], + [ 7.6421813, 47.4956694 ], + [ 7.6421106, 47.4956433 ], + [ 7.6420376, 47.4956211 ], + [ 7.6419383, 47.495594 ], + [ 7.6418364, 47.495571 ], + [ 7.6417328, 47.4955522 ], + [ 7.6414539, 47.4955059 ], + [ 7.641087, 47.4954468 ], + [ 7.6406565, 47.495378 ], + [ 7.6403908, 47.4953316 ], + [ 7.6402391, 47.4953029 ], + [ 7.6400888, 47.4952709 ], + [ 7.6399408, 47.4952349 ], + [ 7.6397766, 47.4951895 ], + [ 7.6396142000000005, 47.4951414 ], + [ 7.6386984, 47.4948618 ], + [ 7.6383998, 47.4947641 ], + [ 7.6381736, 47.4946884 ], + [ 7.6380624, 47.4946626 ], + [ 7.6372213, 47.494332 ], + [ 7.6369152, 47.4942146 ], + [ 7.6367604, 47.4941595 ], + [ 7.6367128, 47.4941464 ], + [ 7.6364856, 47.4940403 ], + [ 7.6362641, 47.4939012 ], + [ 7.6357261, 47.4935242 ], + [ 7.635476, 47.4933212 ], + [ 7.6352731, 47.4932125 ], + [ 7.6351738000000005, 47.4932905 ], + [ 7.6348684, 47.4935305 ], + [ 7.6346644, 47.4936909 ], + [ 7.6341497, 47.4940862 ], + [ 7.6336778, 47.4944492 ], + [ 7.6336321, 47.4944824 ], + [ 7.6334469, 47.4943743 ], + [ 7.6330055, 47.494028 ], + [ 7.6327947, 47.4937414 ], + [ 7.6325393, 47.4933909 ], + [ 7.6323109, 47.49308 ], + [ 7.6320775, 47.4927622 ], + [ 7.6316177, 47.4921391 ], + [ 7.6316024, 47.4921184 ], + [ 7.6314975, 47.4921085 ], + [ 7.6313402, 47.4921131 ], + [ 7.6312296, 47.4921582 ], + [ 7.6310444, 47.4922931 ], + [ 7.6309118, 47.4925211 ], + [ 7.6306893, 47.492904 ], + [ 7.6303136, 47.4929759 ], + [ 7.6302974, 47.492979 ], + [ 7.6303312, 47.493048 ], + [ 7.63046, 47.4934134 ], + [ 7.6307439, 47.4933812 ], + [ 7.6307799, 47.4935229 ], + [ 7.6307597, 47.4935252 ], + [ 7.6308233, 47.4939832 ], + [ 7.6306823999999995, 47.4939986 ], + [ 7.6306433, 47.494081 ], + [ 7.6306264, 47.4943879 ], + [ 7.6306488, 47.4946968 ], + [ 7.6307325, 47.495120299999996 ], + [ 7.6307181, 47.4954596 ], + [ 7.6308298, 47.4957793 ], + [ 7.6309258, 47.4959252 ], + [ 7.6310581, 47.4960359 ], + [ 7.6312416, 47.4961146 ], + [ 7.6318841, 47.4963268 ], + [ 7.6320368, 47.4963437 ], + [ 7.6325734, 47.4963447 ], + [ 7.6329603, 47.4963714 ], + [ 7.6335206, 47.4964746 ], + [ 7.633765, 47.4965464 ], + [ 7.6340806, 47.4967158 ], + [ 7.6342928, 47.4968492 ], + [ 7.6344951, 47.4970095 ], + [ 7.6347358, 47.4973106 ], + [ 7.6351065, 47.4976669 ], + [ 7.6352996, 47.4977714 ], + [ 7.6358969, 47.497897 ], + [ 7.6364611, 47.4979675 ], + [ 7.6369578, 47.4980142 ], + [ 7.63736, 47.497952 ], + [ 7.63756, 47.4979532 ], + [ 7.6379033, 47.4979617 ], + [ 7.6383493, 47.4979901 ], + [ 7.6385278, 47.4980218 ], + [ 7.6394783, 47.4983578 ], + [ 7.6397345, 47.4984686 ], + [ 7.6401392999999995, 47.4987275 ], + [ 7.6408264, 47.4989978 ], + [ 7.6414957999999995, 47.4992305 ], + [ 7.6420383, 47.4993685 ], + [ 7.642198, 47.499431 ], + [ 7.6423536, 47.4995533 ], + [ 7.6424541999999995, 47.4996846 ], + [ 7.6427001, 47.5001471 ], + [ 7.6428662, 47.5006662 ], + [ 7.6428016, 47.5008902 ], + [ 7.6427033, 47.501019 ], + [ 7.6425621, 47.5011459 ], + [ 7.6423448, 47.5012794 ], + [ 7.6422388, 47.5014168 ], + [ 7.642214, 47.5015302 ], + [ 7.6422035, 47.5015782 ], + [ 7.6425212, 47.5013858 ], + [ 7.6429583999999995, 47.5012212 ], + [ 7.6434444, 47.5010364 ], + [ 7.6445452, 47.5006369 ], + [ 7.6453935, 47.500275 ], + [ 7.6462430999999995, 47.4998379 ], + [ 7.6466935, 47.4995886 ], + [ 7.6472444, 47.4992925 ], + [ 7.6481317, 47.4988365 ], + [ 7.6485695, 47.4978176 ], + [ 7.6489684, 47.4968652 ], + [ 7.6496072999999996, 47.4960343 ], + [ 7.6498797, 47.4956182 ], + [ 7.6499623, 47.4950893 ], + [ 7.6496394, 47.4949258 ], + [ 7.649503, 47.4948565 ], + [ 7.6489386, 47.4945709 ], + [ 7.6488805, 47.4945762 ], + [ 7.64877, 47.4946021 ], + [ 7.6486762, 47.4946458 ], + [ 7.648603, 47.494705 ], + [ 7.6485424, 47.4948038 ], + [ 7.6484464, 47.495261 ], + [ 7.6484234, 47.4954503 ], + [ 7.6484243, 47.4957277 ], + [ 7.6484096, 47.4958952 ], + [ 7.6483618, 47.4960561 ], + [ 7.6482911, 47.4962175 ], + [ 7.6482121, 47.4963921 ], + [ 7.6481259, 47.4966134 ], + [ 7.6480438, 47.4968381 ], + [ 7.6480029, 47.4969153 ], + [ 7.6479356, 47.4969829 ], + [ 7.6478432, 47.4970375 ], + [ 7.6477335, 47.4970719 ], + [ 7.6476146, 47.4970881 ], + [ 7.6474639, 47.4970823 ], + [ 7.6472165, 47.4970351 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns232", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Ermitage - Chilchholz", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Ermitage - Chilchholz", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Ermitage - Chilchholz", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Ermitage - Chilchholz", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5245612, 47.5369088 ], + [ 7.5249829, 47.5368462 ], + [ 7.5250275, 47.5368404 ], + [ 7.5248599, 47.53633 ], + [ 7.5248184, 47.5363086 ], + [ 7.5243837, 47.536394 ], + [ 7.5239616, 47.5364772 ], + [ 7.5239253999999995, 47.5365332 ], + [ 7.5240742, 47.5369173 ], + [ 7.524094, 47.5369765 ], + [ 7.5241135, 47.5369731 ], + [ 7.5245612, 47.5369088 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns233", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Allschwilerwald", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Allschwilerwald", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Allschwilerwald", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Allschwilerwald", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5584132, 46.7636937 ], + [ 7.5893546, 46.7809285 ], + [ 7.6376596, 46.7414548 ], + [ 7.6079016, 46.7238715 ], + [ 7.5584132, 46.7636937 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZW001", + "country" : "CHE", + "name" : [ + { + "text" : "LSZW Thun", + "lang" : "de-CH" + }, + { + "text" : "LSZW Thun", + "lang" : "fr-CH" + }, + { + "text" : "LSZW Thun", + "lang" : "it-CH" + }, + { + "text" : "LSZW Thun", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Thun Airfield", + "lang" : "de-CH" + }, + { + "text" : "Thun Airfield", + "lang" : "fr-CH" + }, + { + "text" : "Thun Airfield", + "lang" : "it-CH" + }, + { + "text" : "Thun Airfield", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "André Schneeberger", + "lang" : "de-CH" + }, + { + "text" : "André Schneeberger", + "lang" : "fr-CH" + }, + { + "text" : "André Schneeberger", + "lang" : "it-CH" + }, + { + "text" : "André Schneeberger", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.thun-airfield.ch", + "email" : "flugplatzleitung@thun-airfield.ch", + "phone" : "0041332224214", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P02DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7323622, 46.2730607 ], + [ 7.7324268, 46.2730196 ], + [ 7.7325327, 46.2729635 ], + [ 7.7327191, 46.272947 ], + [ 7.7328983000000004, 46.2729529 ], + [ 7.7331093, 46.2729871 ], + [ 7.7333122, 46.2730213 ], + [ 7.7335225, 46.2730837 ], + [ 7.7336687, 46.2731347 ], + [ 7.7338305, 46.2732082 ], + [ 7.7340657, 46.273372 ], + [ 7.7342682, 46.2734963 ], + [ 7.7344781, 46.2736319 ], + [ 7.7346646, 46.273773 ], + [ 7.7348507, 46.2738579 ], + [ 7.7350051, 46.2739145 ], + [ 7.7352723999999995, 46.2740164 ], + [ 7.7355967, 46.2740283 ], + [ 7.7354835, 46.2739323 ], + [ 7.7354036, 46.2738421 ], + [ 7.7353309, 46.2737406 ], + [ 7.7352181, 46.2735825 ], + [ 7.7351215, 46.2734078 ], + [ 7.735073, 46.2732782 ], + [ 7.7350331, 46.2731092 ], + [ 7.7350671, 46.2729458 ], + [ 7.7351167, 46.2728164 ], + [ 7.7351659999999995, 46.2726475 ], + [ 7.7352397, 46.2724843 ], + [ 7.7352978, 46.2722704 ], + [ 7.7353722, 46.2721016 ], + [ 7.7354701, 46.2719159 ], + [ 7.7355688, 46.2717134 ], + [ 7.735675, 46.2715671 ], + [ 7.7357738, 46.2714039 ], + [ 7.73584, 46.2712068 ], + [ 7.7358974, 46.2710155 ], + [ 7.7359556, 46.2708411 ], + [ 7.7360211, 46.2706553 ], + [ 7.7361281, 46.2705034 ], + [ 7.7362343, 46.2703516 ], + [ 7.7363653, 46.270149 ], + [ 7.7365043, 46.2699128 ], + [ 7.7365867999999995, 46.2697383 ], + [ 7.736661, 46.2695075 ], + [ 7.7367513, 46.2692711 ], + [ 7.7369316, 46.2690349 ], + [ 7.7370464, 46.2688156 ], + [ 7.7370714, 46.2686578 ], + [ 7.7370806, 46.2685452 ], + [ 7.7370488, 46.2683704 ], + [ 7.7370668, 46.2681002 ], + [ 7.7371322, 46.2679088 ], + [ 7.7372066, 46.2677287 ], + [ 7.7373533, 46.2675657 ], + [ 7.7374764, 46.2673912 ], + [ 7.7376317, 46.2671888 ], + [ 7.7377714, 46.2669357 ], + [ 7.7378781, 46.2667387 ], + [ 7.7379437, 46.2665642 ], + [ 7.7380587, 46.2664067 ], + [ 7.7382789, 46.2661987 ], + [ 7.7384506, 46.2660245 ], + [ 7.7386471, 46.2656306 ], + [ 7.738754, 46.2654617 ], + [ 7.7388278, 46.2653211 ], + [ 7.7389254, 46.2652425 ], + [ 7.7391209, 46.2651245 ], + [ 7.7392522, 46.2649559 ], + [ 7.739342, 46.2647814 ], + [ 7.7394406, 46.2645844 ], + [ 7.7395233999999995, 46.2643087 ], + [ 7.7395815, 46.2641117 ], + [ 7.739607, 46.263892 ], + [ 7.7396726000000005, 46.2637345 ], + [ 7.7397386, 46.2634981 ], + [ 7.7398292, 46.2633293 ], + [ 7.7398786, 46.263166 ], + [ 7.7398308, 46.2630196 ], + [ 7.7397579, 46.2628898 ], + [ 7.7396207, 46.2626982 ], + [ 7.7395002999999996, 46.2624838 ], + [ 7.7394117, 46.2622922 ], + [ 7.7393395, 46.2621344 ], + [ 7.7393323, 46.2620103 ], + [ 7.7393569, 46.2619034 ], + [ 7.739447, 46.2617797 ], + [ 7.7394559, 46.2616277 ], + [ 7.739441, 46.2614305 ], + [ 7.7394178, 46.2611883 ], + [ 7.739492, 46.26098 ], + [ 7.7395495, 46.2608225 ], + [ 7.7397373, 46.2606425 ], + [ 7.739901, 46.2604796 ], + [ 7.7401213, 46.2602941 ], + [ 7.7403002999999995, 46.2601368 ], + [ 7.7404308, 46.259985 ], + [ 7.740627, 46.2598558 ], + [ 7.7408304999999995, 46.2597153 ], + [ 7.7410585, 46.2595976 ], + [ 7.7413194, 46.2594403 ], + [ 7.7415068, 46.2593169 ], + [ 7.7417352, 46.2591427 ], + [ 7.7419628, 46.258974 ], + [ 7.7422157, 46.258817 ], + [ 7.7424522, 46.2586484 ], + [ 7.7427698, 46.2584857 ], + [ 7.743055, 46.258306 ], + [ 7.7433962, 46.2581601 ], + [ 7.7436407, 46.2579748 ], + [ 7.7438784, 46.2577105 ], + [ 7.7441555, 46.2574069 ], + [ 7.7443432, 46.2572101 ], + [ 7.7445721, 46.2569853 ], + [ 7.7447921, 46.2567491 ], + [ 7.7451102, 46.2565244 ], + [ 7.7454201, 46.2562997 ], + [ 7.7456727999999995, 46.2561144 ], + [ 7.7459497, 46.2559177 ], + [ 7.7461867, 46.2556929 ], + [ 7.7463583, 46.2555073 ], + [ 7.7462854, 46.2553832 ], + [ 7.7462371, 46.2552987 ], + [ 7.7462699, 46.2552142 ], + [ 7.7463356, 46.2550848 ], + [ 7.7463608, 46.2549611 ], + [ 7.7463529, 46.2548427 ], + [ 7.7463538, 46.2547245 ], + [ 7.7464525, 46.2545443 ], + [ 7.7466413, 46.2541054 ], + [ 7.7468627, 46.2535764 ], + [ 7.7470113, 46.2531937 ], + [ 7.7471837, 46.2528618 ], + [ 7.7473633, 46.2526649 ], + [ 7.7475344, 46.2525413 ], + [ 7.7476237999999995, 46.2524514 ], + [ 7.7476975, 46.2522994 ], + [ 7.7477883, 46.2521475 ], + [ 7.7478622999999995, 46.2519224 ], + [ 7.7479197, 46.2517423 ], + [ 7.747986, 46.2515735 ], + [ 7.7480429, 46.2514609 ], + [ 7.7481331, 46.2513597 ], + [ 7.7482145, 46.2512866 ], + [ 7.7483201, 46.2511911 ], + [ 7.7484513, 46.2510392 ], + [ 7.7485817, 46.2508817 ], + [ 7.7486967, 46.2507243 ], + [ 7.7488022, 46.250595 ], + [ 7.7489246, 46.2504657 ], + [ 7.7490881, 46.2502857 ], + [ 7.7491538, 46.2501507 ], + [ 7.7492684, 46.2499256 ], + [ 7.7492859, 46.2497285 ], + [ 7.7493273, 46.2496103 ], + [ 7.7493845, 46.2495485 ], + [ 7.7494983, 46.2494585 ], + [ 7.7495959, 46.24938 ], + [ 7.7497021, 46.2492504 ], + [ 7.7498009, 46.249093 ], + [ 7.7499319, 46.2488962 ], + [ 7.7500137, 46.2487498 ], + [ 7.7501446, 46.248553 ], + [ 7.7502344999999995, 46.248401 ], + [ 7.7503002, 46.2482716 ], + [ 7.750366, 46.2481421 ], + [ 7.7504473, 46.2480522 ], + [ 7.7505125, 46.2479792 ], + [ 7.7505453, 46.247906 ], + [ 7.7505298, 46.2477426 ], + [ 7.7505552, 46.247523 ], + [ 7.7505889, 46.2473091 ], + [ 7.7506141, 46.2471908 ], + [ 7.750639, 46.2470051 ], + [ 7.7506723, 46.2468756 ], + [ 7.7507137, 46.2467518 ], + [ 7.7507795, 46.2466392 ], + [ 7.7508769, 46.2465211 ], + [ 7.7508941, 46.2464141 ], + [ 7.750895, 46.2462846 ], + [ 7.7509363, 46.2461439 ], + [ 7.7509771, 46.2460482 ], + [ 7.7509774, 46.2459637 ], + [ 7.7509127, 46.2458509 ], + [ 7.7508246, 46.2457438 ], + [ 7.7507113, 46.2456252 ], + [ 7.7505658, 46.2455519 ], + [ 7.7504282, 46.2454502 ], + [ 7.7502902, 46.2453993 ], + [ 7.7501604, 46.2453765 ], + [ 7.7500307, 46.245365 ], + [ 7.7498765, 46.2453252 ], + [ 7.7497229, 46.2452574 ], + [ 7.7496179, 46.2451728 ], + [ 7.7494885, 46.2450654 ], + [ 7.7493832, 46.244947 ], + [ 7.7492374, 46.2448116 ], + [ 7.7490918, 46.2447211 ], + [ 7.7489138, 46.2446307 ], + [ 7.7487439, 46.2445235 ], + [ 7.7486151, 46.2443992 ], + [ 7.7485585, 46.244281 ], + [ 7.7485425, 46.2441683 ], + [ 7.7485029999999995, 46.2440554 ], + [ 7.7484633, 46.2439146 ], + [ 7.7484315, 46.24374 ], + [ 7.7483835, 46.243571 ], + [ 7.7482945999999995, 46.2434638 ], + [ 7.7481894, 46.2433622 ], + [ 7.7480769, 46.2432324 ], + [ 7.7479635, 46.2431083 ], + [ 7.7478426, 46.2429392 ], + [ 7.7477298999999995, 46.2427869 ], + [ 7.7475599, 46.2426627 ], + [ 7.7473576, 46.2425665 ], + [ 7.747228, 46.2424424 ], + [ 7.7471803, 46.2423128 ], + [ 7.7471729, 46.2421608 ], + [ 7.7471412, 46.2419917 ], + [ 7.747093, 46.2419295 ], + [ 7.7469715, 46.2417942 ], + [ 7.7468509999999995, 46.2416814 ], + [ 7.7467543, 46.2415009 ], + [ 7.7467144, 46.2413262 ], + [ 7.7466422999999995, 46.2411854 ], + [ 7.7465534, 46.2410782 ], + [ 7.7464644, 46.2409654 ], + [ 7.7463516, 46.2407906 ], + [ 7.7462553, 46.2406778 ], + [ 7.7461502, 46.240565 ], + [ 7.7460695, 46.2404803 ], + [ 7.7458833, 46.2403786 ], + [ 7.7457215, 46.2402713 ], + [ 7.7456407, 46.2401641 ], + [ 7.745544, 46.2399837 ], + [ 7.7454154, 46.2397413 ], + [ 7.7453192, 46.2394877 ], + [ 7.7452232, 46.2392791 ], + [ 7.7451184, 46.2390874 ], + [ 7.7450068, 46.2388282 ], + [ 7.7448692, 46.2385801 ], + [ 7.7447652, 46.2383884 ], + [ 7.7446762, 46.238253 ], + [ 7.7444985, 46.2380725 ], + [ 7.7443861, 46.2379653 ], + [ 7.7442884, 46.2378862 ], + [ 7.744216, 46.2378354 ], + [ 7.7440619, 46.2378013 ], + [ 7.7438915999999995, 46.2377841 ], + [ 7.7437213, 46.2377557 ], + [ 7.7435266, 46.2377158 ], + [ 7.7433482, 46.2376817 ], + [ 7.7432102, 46.2376364 ], + [ 7.7429993, 46.2375853 ], + [ 7.7427809, 46.2375173 ], + [ 7.7425131, 46.2374323 ], + [ 7.7421893, 46.2373529 ], + [ 7.7420026, 46.2372849 ], + [ 7.7417031, 46.2371998 ], + [ 7.7414597, 46.2371375 ], + [ 7.741111, 46.2370805 ], + [ 7.7407294, 46.2370798 ], + [ 7.7404129, 46.2371355 ], + [ 7.740343, 46.2365215 ], + [ 7.7402791, 46.2362398 ], + [ 7.7402804, 46.2360426 ], + [ 7.740265, 46.2358905 ], + [ 7.7402495, 46.2357385 ], + [ 7.7402099, 46.2356032 ], + [ 7.7401458, 46.2354341 ], + [ 7.7400647, 46.2352819 ], + [ 7.7399682, 46.2351296 ], + [ 7.7399044, 46.2350056 ], + [ 7.7398646, 46.2348478 ], + [ 7.7398573, 46.2346957 ], + [ 7.7398498, 46.2345268 ], + [ 7.7398913, 46.2343973 ], + [ 7.7399731, 46.2342623 ], + [ 7.7400382, 46.234161 ], + [ 7.7400796, 46.2340259 ], + [ 7.7401054, 46.2338571 ], + [ 7.7401299, 46.2337501 ], + [ 7.740114, 46.2336655 ], + [ 7.7401147, 46.2334909 ], + [ 7.7401075, 46.2333614 ], + [ 7.7401649, 46.2332039 ], + [ 7.7402467999999995, 46.2330575 ], + [ 7.740353, 46.2329282 ], + [ 7.7404762, 46.2327876 ], + [ 7.740606, 46.2326752 ], + [ 7.7407123, 46.2325572 ], + [ 7.7408187, 46.2324672 ], + [ 7.7409403999999995, 46.2323605 ], + [ 7.7410306, 46.2322649 ], + [ 7.7411612, 46.2321469 ], + [ 7.7413079, 46.2320063 ], + [ 7.7414622, 46.2319221 ], + [ 7.7416091, 46.2318267 ], + [ 7.7418046, 46.2317256 ], + [ 7.7420238, 46.2316641 ], + [ 7.7422673, 46.2316083 ], + [ 7.7425925, 46.2315244 ], + [ 7.7429419, 46.2314237 ], + [ 7.7433238, 46.2313399 ], + [ 7.7436652, 46.2312505 ], + [ 7.744039, 46.2311554 ], + [ 7.7442672, 46.231105 ], + [ 7.7444946, 46.2310718 ], + [ 7.7447376, 46.231061 ], + [ 7.7449894, 46.2310277 ], + [ 7.7452331, 46.2310168 ], + [ 7.7454607, 46.2310003 ], + [ 7.7456389, 46.2310007 ], + [ 7.7458664, 46.2309673 ], + [ 7.7459966, 46.2309281 ], + [ 7.7461431, 46.2309058 ], + [ 7.746297, 46.2308893 ], + [ 7.7465408, 46.2308784 ], + [ 7.7467838, 46.2308733 ], + [ 7.7470113, 46.2308568 ], + [ 7.7472469, 46.2308347 ], + [ 7.7474495, 46.230835 ], + [ 7.7476286, 46.2308523 ], + [ 7.7478717, 46.2308583 ], + [ 7.7480993, 46.2308588 ], + [ 7.7483747, 46.230848 ], + [ 7.7485374, 46.2308202 ], + [ 7.7486834, 46.230843 ], + [ 7.7488617, 46.2308546 ], + [ 7.7490569, 46.2308549 ], + [ 7.7492271, 46.2308608 ], + [ 7.7494061, 46.2308499 ], + [ 7.7495681, 46.2308502 ], + [ 7.7498031, 46.2308618 ], + [ 7.7502009, 46.2308626 ], + [ 7.7505748, 46.2307957 ], + [ 7.7507126, 46.2308185 ], + [ 7.7508423, 46.2308356 ], + [ 7.7509726, 46.2308077 ], + [ 7.7510704, 46.2307684 ], + [ 7.7511676, 46.2307686 ], + [ 7.7513546, 46.2307465 ], + [ 7.7514921, 46.2307016 ], + [ 7.7516142, 46.2306567 ], + [ 7.7517531, 46.2305895 ], + [ 7.7519073, 46.2304939 ], + [ 7.7520299, 46.2303984 ], + [ 7.7522085, 46.2303256 ], + [ 7.7524851, 46.230236 ], + [ 7.7527771, 46.2301689 ], + [ 7.7532489, 46.2300796 ], + [ 7.7537448, 46.2299566 ], + [ 7.7542896, 46.2297379 ], + [ 7.754452, 46.2296649 ], + [ 7.7545415, 46.229592 ], + [ 7.7546154, 46.229485 ], + [ 7.7546649, 46.2293556 ], + [ 7.7547386, 46.2292149 ], + [ 7.7548851, 46.2290518 ], + [ 7.7550235, 46.2289 ], + [ 7.7552196, 46.2287708 ], + [ 7.7553905, 46.2286191 ], + [ 7.7555783, 46.2284673 ], + [ 7.7556838, 46.2283492 ], + [ 7.7557333, 46.2282366 ], + [ 7.7557504, 46.2281015 ], + [ 7.7557836, 46.2279664 ], + [ 7.7559306, 46.2277583 ], + [ 7.7561019, 46.2275333 ], + [ 7.7562655, 46.2272633 ], + [ 7.7564293, 46.2270157 ], + [ 7.7566254, 46.2267401 ], + [ 7.7568379, 46.2263744 ], + [ 7.7570593, 46.2260087 ], + [ 7.7567345, 46.2260082 ], + [ 7.7565555, 46.2260134 ], + [ 7.7563045, 46.2260299 ], + [ 7.7558901, 46.2260911 ], + [ 7.7554195, 46.2261072 ], + [ 7.7551434, 46.2261292 ], + [ 7.754745, 46.2261567 ], + [ 7.7543886, 46.2261561 ], + [ 7.753909, 46.2261552 ], + [ 7.7534228, 46.2261318 ], + [ 7.7529195, 46.2260746 ], + [ 7.7524492, 46.2260062 ], + [ 7.7521005, 46.2259323 ], + [ 7.751809, 46.2258135 ], + [ 7.7514363, 46.2256664 ], + [ 7.7510557, 46.2255474 ], + [ 7.7508534000000004, 46.2254457 ], + [ 7.7507155, 46.225406 ], + [ 7.7505535, 46.2254227 ], + [ 7.7501397, 46.2254332 ], + [ 7.7498878, 46.2254383 ], + [ 7.749652, 46.2254378 ], + [ 7.7494815, 46.2255108 ], + [ 7.7493675, 46.22555 ], + [ 7.749246, 46.2255497 ], + [ 7.7490921, 46.2255382 ], + [ 7.7489137, 46.225521 ], + [ 7.7487349, 46.2255489 ], + [ 7.7486694, 46.2255769 ], + [ 7.7486124, 46.2256557 ], + [ 7.7485308, 46.2256949 ], + [ 7.7483844, 46.2257398 ], + [ 7.7482463, 46.225807 ], + [ 7.7481, 46.22588 ], + [ 7.7479454, 46.225891 ], + [ 7.7478812999999995, 46.225874 ], + [ 7.7478324, 46.2258233 ], + [ 7.7478086, 46.2257612 ], + [ 7.7477604, 46.2256992 ], + [ 7.7476386, 46.2256482 ], + [ 7.7473391, 46.2255463 ], + [ 7.7471444, 46.2254896 ], + [ 7.7469577, 46.2254217 ], + [ 7.7466827, 46.2253592 ], + [ 7.746463, 46.2253363 ], + [ 7.746366, 46.2253642 ], + [ 7.7462275, 46.2253752 ], + [ 7.7459844, 46.2253579 ], + [ 7.745676, 46.2253912 ], + [ 7.7452701, 46.2253792 ], + [ 7.7449371, 46.225372899999996 ], + [ 7.7448319, 46.2254008 ], + [ 7.7446368, 46.2254118 ], + [ 7.744507, 46.2253778 ], + [ 7.7443287, 46.2253774 ], + [ 7.7441911, 46.2253941 ], + [ 7.7440202, 46.2253937 ], + [ 7.7437366, 46.2253819 ], + [ 7.743469, 46.2253363 ], + [ 7.7432413, 46.225319 ], + [ 7.7431443, 46.2253583 ], + [ 7.7430059, 46.2253749 ], + [ 7.7427465, 46.2253406 ], + [ 7.7423487, 46.2253342 ], + [ 7.7420805999999995, 46.2253394 ], + [ 7.7418941, 46.2253052 ], + [ 7.741708, 46.2251978 ], + [ 7.7416274, 46.2251245 ], + [ 7.7415062, 46.2250341 ], + [ 7.7413682, 46.2249888 ], + [ 7.7412794, 46.2249042 ], + [ 7.7411913, 46.2247914 ], + [ 7.7411431, 46.2245772 ], + [ 7.7411364, 46.2243857 ], + [ 7.7411208, 46.2242111 ], + [ 7.7410817, 46.2240196 ], + [ 7.7409851, 46.2238392 ], + [ 7.7409043, 46.223732 ], + [ 7.7409046, 46.2236363 ], + [ 7.7409137, 46.2235293 ], + [ 7.7408572, 46.2234221 ], + [ 7.7407528, 46.2233037 ], + [ 7.7406471, 46.2232303 ], + [ 7.7405259, 46.2231399 ], + [ 7.740372, 46.2231396 ], + [ 7.7402417, 46.2231619 ], + [ 7.740096, 46.2231729 ], + [ 7.7399899, 46.2231839 ], + [ 7.7399092, 46.2232232 ], + [ 7.7397953, 46.2232793 ], + [ 7.7396649, 46.2232904 ], + [ 7.7395267, 46.223352 ], + [ 7.7393885000000004, 46.2234082 ], + [ 7.7392427, 46.2234134 ], + [ 7.7390806, 46.223385 ], + [ 7.7389665, 46.2234073 ], + [ 7.7388282, 46.2234577 ], + [ 7.7386737, 46.2234967 ], + [ 7.7384794, 46.2235134 ], + [ 7.7382436, 46.223496 ], + [ 7.7378789, 46.2234559 ], + [ 7.7374408, 46.2233424 ], + [ 7.7372707, 46.2233364 ], + [ 7.7370843, 46.2233304 ], + [ 7.736881, 46.2233301 ], + [ 7.7366702, 46.2233014 ], + [ 7.7365, 46.2232843 ], + [ 7.7362725, 46.223295 ], + [ 7.7360531, 46.2233284 ], + [ 7.7358749, 46.2233168 ], + [ 7.7357613, 46.2232828 ], + [ 7.7356321, 46.2232151 ], + [ 7.7355023, 46.223181 ], + [ 7.7353323, 46.2231919 ], + [ 7.7351453, 46.2232141 ], + [ 7.7349912, 46.2231912 ], + [ 7.7348696, 46.2231684 ], + [ 7.73474, 46.2231626 ], + [ 7.7346665, 46.2232018 ], + [ 7.7345768, 46.2232466 ], + [ 7.7344878, 46.2232692 ], + [ 7.7343494, 46.2232912 ], + [ 7.7342686, 46.2233193 ], + [ 7.7341708, 46.2233698 ], + [ 7.7339839999999995, 46.2234202 ], + [ 7.7337888, 46.223431 ], + [ 7.7335539, 46.2234193 ], + [ 7.7333506, 46.2234302 ], + [ 7.7330507, 46.2234014 ], + [ 7.73275, 46.223367 ], + [ 7.7323528, 46.2233155 ], + [ 7.7319799, 46.2232529 ], + [ 7.7316400000000005, 46.2231677 ], + [ 7.7313879, 46.223139 ], + [ 7.7310551, 46.2231609 ], + [ 7.7307883, 46.2230984 ], + [ 7.7305772, 46.2230079 ], + [ 7.730367, 46.2229343 ], + [ 7.7301394, 46.2229338 ], + [ 7.7299693, 46.2229391 ], + [ 7.7297421, 46.2228655 ], + [ 7.7295314, 46.2228482 ], + [ 7.7293364, 46.2228872 ], + [ 7.7291009, 46.2229318 ], + [ 7.7290197, 46.2228978 ], + [ 7.7289392, 46.2228244 ], + [ 7.7288504, 46.2227454 ], + [ 7.7286556, 46.2226661 ], + [ 7.7284616, 46.2225869 ], + [ 7.728308, 46.2224964 ], + [ 7.7280246, 46.2223608 ], + [ 7.7279032, 46.2223717 ], + [ 7.7277812, 46.2224335 ], + [ 7.7275856, 46.2225119 ], + [ 7.7274715, 46.2225342 ], + [ 7.7272696, 46.2224944 ], + [ 7.727091, 46.2224321 ], + [ 7.7269694, 46.222398 ], + [ 7.7268236, 46.2224035 ], + [ 7.7266852, 46.2224369 ], + [ 7.7265475, 46.2224366 ], + [ 7.7263286, 46.2223967 ], + [ 7.7261496, 46.2223851 ], + [ 7.726052, 46.2224638 ], + [ 7.7260272, 46.2225369 ], + [ 7.7260268, 46.2226101 ], + [ 7.7259942, 46.2227227 ], + [ 7.7259694, 46.2227903 ], + [ 7.7258873, 46.2228746 ], + [ 7.7257571, 46.222925 ], + [ 7.7255547, 46.2229415 ], + [ 7.7254243, 46.2229412 ], + [ 7.7252217, 46.2229295 ], + [ 7.7250758, 46.222918 ], + [ 7.7249536, 46.2229401 ], + [ 7.7247101, 46.2229905 ], + [ 7.7245319, 46.2229957 ], + [ 7.724369, 46.2229898 ], + [ 7.7241666, 46.2230006 ], + [ 7.7240935, 46.2229609 ], + [ 7.7238098, 46.2229155 ], + [ 7.7236638, 46.2228813 ], + [ 7.7234611, 46.2228415 ], + [ 7.7232341, 46.2228128 ], + [ 7.7230556, 46.2227618 ], + [ 7.7229103, 46.2226883 ], + [ 7.7227648, 46.2226034 ], + [ 7.7225784, 46.2225693 ], + [ 7.7224488000000004, 46.222569 ], + [ 7.7222373, 46.2225686 ], + [ 7.7220348, 46.2225682 ], + [ 7.7218964, 46.2225847 ], + [ 7.7217337, 46.2226069 ], + [ 7.7216367, 46.2226349 ], + [ 7.7215065, 46.2226741 ], + [ 7.7213519, 46.2227132 ], + [ 7.7211818999999995, 46.2227241 ], + [ 7.7210434, 46.2227181 ], + [ 7.7208403, 46.2227628 ], + [ 7.7206621, 46.2227737 ], + [ 7.7204873, 46.222789 ], + [ 7.7204103, 46.2227958 ], + [ 7.7200295, 46.2227611 ], + [ 7.719964, 46.2227948 ], + [ 7.7197772, 46.222845 ], + [ 7.7196632, 46.2229011 ], + [ 7.7194521, 46.2229457 ], + [ 7.7193304, 46.2229173 ], + [ 7.7191846, 46.2229114 ], + [ 7.7190461, 46.2229279 ], + [ 7.718916, 46.2229783 ], + [ 7.7188020999999996, 46.2230345 ], + [ 7.7186643, 46.2230285 ], + [ 7.7185097, 46.2230394 ], + [ 7.7183801, 46.2230505 ], + [ 7.7181365, 46.2230781 ], + [ 7.7179009, 46.223117 ], + [ 7.7177707, 46.2231506 ], + [ 7.7176325, 46.2232123 ], + [ 7.717478, 46.223257 ], + [ 7.7173397, 46.2232848 ], + [ 7.7171123, 46.223335 ], + [ 7.7168525, 46.2233852 ], + [ 7.7166252, 46.2234466 ], + [ 7.7164458, 46.2235307 ], + [ 7.7158041, 46.223642 ], + [ 7.7157232, 46.22367 ], + [ 7.7155768, 46.2237147 ], + [ 7.715398, 46.2237538 ], + [ 7.7152354, 46.2237929 ], + [ 7.7150891, 46.2238658 ], + [ 7.7149016, 46.2239498 ], + [ 7.7147224, 46.2240679 ], + [ 7.7145923, 46.2241351 ], + [ 7.71434, 46.2242191 ], + [ 7.714031, 46.2242972 ], + [ 7.7137308, 46.2243698 ], + [ 7.7134138, 46.2244705 ], + [ 7.7131864, 46.2245151 ], + [ 7.7129583, 46.2245766 ], + [ 7.7127384, 46.2246718 ], + [ 7.712584, 46.2247447 ], + [ 7.7124782, 46.2247895 ], + [ 7.71234, 46.2248682 ], + [ 7.7122336, 46.224958 ], + [ 7.7121441, 46.2250479 ], + [ 7.7120627, 46.2251378 ], + [ 7.71194, 46.2252277 ], + [ 7.7118668, 46.2253176 ], + [ 7.7117935, 46.2254019 ], + [ 7.7116952, 46.2255031 ], + [ 7.7115407, 46.2255479 ], + [ 7.7113542, 46.2255138 ], + [ 7.7113303, 46.2254347 ], + [ 7.7112982, 46.2253334 ], + [ 7.7112182, 46.2252148 ], + [ 7.7112105, 46.2251248 ], + [ 7.7112109, 46.2250515 ], + [ 7.7112679, 46.2249446 ], + [ 7.7113258, 46.2248546 ], + [ 7.7113179, 46.224742 ], + [ 7.711327, 46.2246125 ], + [ 7.7112948, 46.2244998 ], + [ 7.711239, 46.2243475 ], + [ 7.7112239, 46.2242461 ], + [ 7.7112243, 46.224156 ], + [ 7.7112577, 46.2240378 ], + [ 7.7112661, 46.2239476 ], + [ 7.7112098, 46.2238631 ], + [ 7.7111616, 46.2237785 ], + [ 7.7112187, 46.2236942 ], + [ 7.711284, 46.223638 ], + [ 7.7113412, 46.2235649 ], + [ 7.7114063999999996, 46.2234806 ], + [ 7.7114074, 46.2233622 ], + [ 7.7113752, 46.2232384 ], + [ 7.7113762, 46.2231144 ], + [ 7.7113689, 46.222951 ], + [ 7.7113698, 46.222799 ], + [ 7.7113626, 46.2226526 ], + [ 7.7113312, 46.2225398 ], + [ 7.7112585, 46.2224101 ], + [ 7.7111947, 46.2222861 ], + [ 7.7111381, 46.2221451 ], + [ 7.7110338, 46.2220154 ], + [ 7.7109045, 46.2219081 ], + [ 7.7107347, 46.2218232 ], + [ 7.7106135, 46.221716 ], + [ 7.7104523, 46.221541 ], + [ 7.710323, 46.2214394 ], + [ 7.7102829, 46.2213547 ], + [ 7.7102433, 46.2212195 ], + [ 7.7102118, 46.2210617 ], + [ 7.7101305, 46.2210053 ], + [ 7.7100579, 46.2209038 ], + [ 7.7099531, 46.2208359 ], + [ 7.7099298, 46.2207176 ], + [ 7.7098814, 46.220605 ], + [ 7.7098011, 46.2204132 ], + [ 7.7097458, 46.2202103 ], + [ 7.7097141, 46.2200187 ], + [ 7.7096907, 46.2198666 ], + [ 7.7096847, 46.2196301 ], + [ 7.7097265, 46.2194105 ], + [ 7.709719, 46.2192078 ], + [ 7.7097198, 46.2190444 ], + [ 7.7097046, 46.2189092 ], + [ 7.7096818, 46.2187345 ], + [ 7.7096333, 46.2185823 ], + [ 7.7095214, 46.2183907 ], + [ 7.7094088, 46.2182158 ], + [ 7.7092886, 46.2179847 ], + [ 7.7091348, 46.2178491 ], + [ 7.7089335, 46.2175896 ], + [ 7.7088452, 46.217426 ], + [ 7.7088052, 46.2173697 ], + [ 7.7087977, 46.2171669 ], + [ 7.7087667, 46.2169528 ], + [ 7.7087192, 46.21684 ], + [ 7.7086627, 46.2167161 ], + [ 7.7085422, 46.2165863 ], + [ 7.7084446, 46.2165128 ], + [ 7.7083642999999995, 46.2164787 ], + [ 7.708267, 46.2164505 ], + [ 7.7081454, 46.2164277 ], + [ 7.7079831, 46.2163653 ], + [ 7.7078135, 46.2163086 ], + [ 7.7076756, 46.2162689 ], + [ 7.7075789, 46.2161955 ], + [ 7.7074894, 46.2161165 ], + [ 7.7074413, 46.2160432 ], + [ 7.707361, 46.2158684 ], + [ 7.7073215, 46.2157331 ], + [ 7.7072739, 46.2156091 ], + [ 7.7072176, 46.2155188 ], + [ 7.7071532, 46.2154286 ], + [ 7.7071049, 46.2153327 ], + [ 7.7070647999999995, 46.2152594 ], + [ 7.7070734, 46.2151863 ], + [ 7.7070986999999995, 46.2150624 ], + [ 7.7070988, 46.2149272 ], + [ 7.7070587, 46.214837 ], + [ 7.7069619, 46.214758 ], + [ 7.706865, 46.2146563 ], + [ 7.7068249, 46.2145661 ], + [ 7.7067935, 46.2144422 ], + [ 7.7067382, 46.2142449 ], + [ 7.7067061, 46.2141435 ], + [ 7.7067066, 46.2140646 ], + [ 7.706601, 46.2140137 ], + [ 7.7065287, 46.2139685 ], + [ 7.7063907, 46.2139119 ], + [ 7.706286, 46.213861 ], + [ 7.7062297, 46.213782 ], + [ 7.7061645, 46.213703 ], + [ 7.7061252, 46.2136071 ], + [ 7.7060768, 46.2134887 ], + [ 7.7060292, 46.2133647 ], + [ 7.7060218, 46.2131732 ], + [ 7.7059659, 46.2130154 ], + [ 7.7058285, 46.2129024 ], + [ 7.7057972, 46.2127898 ], + [ 7.7057573999999995, 46.2126095 ], + [ 7.7056686, 46.2125078 ], + [ 7.7055319, 46.212378 ], + [ 7.7054263, 46.2123215 ], + [ 7.7053944, 46.2122425 ], + [ 7.7053543, 46.212158 ], + [ 7.7052655, 46.2120676 ], + [ 7.7051445, 46.2119884 ], + [ 7.7050962, 46.2118927 ], + [ 7.7050643, 46.2118138 ], + [ 7.7050978, 46.2117125 ], + [ 7.7051546, 46.211583 ], + [ 7.7052701, 46.2113637 ], + [ 7.7052705, 46.2112791 ], + [ 7.7051571, 46.211262 ], + [ 7.705076, 46.2112393 ], + [ 7.7049387, 46.2111602 ], + [ 7.7047684, 46.2111034 ], + [ 7.7046635, 46.2110243 ], + [ 7.704599, 46.2109116 ], + [ 7.7045995, 46.2108496 ], + [ 7.7046004, 46.2107088 ], + [ 7.7045932, 46.2105567 ], + [ 7.7045771, 46.2104271 ], + [ 7.7044884, 46.2103369 ], + [ 7.7043831, 46.2103254 ], + [ 7.7041888, 46.2103305 ], + [ 7.7039862, 46.210302 ], + [ 7.7038726, 46.2102623 ], + [ 7.7037509, 46.2102113 ], + [ 7.7035731, 46.2101208 ], + [ 7.7034924, 46.2100248 ], + [ 7.7033796, 46.2099739 ], + [ 7.7032255, 46.2099229 ], + [ 7.7029985, 46.2098774 ], + [ 7.7027715, 46.2098149 ], + [ 7.7026343, 46.2097582 ], + [ 7.7025364, 46.2097748 ], + [ 7.7024878999999995, 46.2097974 ], + [ 7.7024387999999995, 46.209848 ], + [ 7.7024141, 46.2099324 ], + [ 7.7023651, 46.2100167 ], + [ 7.7023158, 46.2100393 ], + [ 7.7021788, 46.2100051 ], + [ 7.7020815, 46.2099711 ], + [ 7.7019272999999995, 46.2099031 ], + [ 7.7018381, 46.2098917 ], + [ 7.7018134, 46.2099648 ], + [ 7.7017887, 46.2100492 ], + [ 7.7018128, 46.2101732 ], + [ 7.7018443, 46.2103197 ], + [ 7.7019001, 46.2104775 ], + [ 7.7019478, 46.2106297 ], + [ 7.702028, 46.2107876 ], + [ 7.7020514, 46.210934 ], + [ 7.7020829, 46.2110862 ], + [ 7.7020571, 46.2112832 ], + [ 7.7020562, 46.2114297 ], + [ 7.7020878, 46.211593 ], + [ 7.7021038, 46.211717 ], + [ 7.7022002, 46.2118862 ], + [ 7.7023039, 46.2120723 ], + [ 7.7024415, 46.2122134 ], + [ 7.7026824, 46.2126251 ], + [ 7.7024723, 46.2125401 ], + [ 7.702318, 46.2124553 ], + [ 7.702083, 46.2124266 ], + [ 7.7022525, 46.2126522 ], + [ 7.7022182, 46.2129226 ], + [ 7.7017641, 46.2128033 ], + [ 7.7017383, 46.2131523 ], + [ 7.7017283, 46.2134396 ], + [ 7.7016548, 46.213462 ], + [ 7.7015327, 46.2135124 ], + [ 7.7013701999999995, 46.2135684 ], + [ 7.7012644, 46.2136357 ], + [ 7.7012155, 46.2137257 ], + [ 7.701174, 46.2138552 ], + [ 7.7011413, 46.2139621 ], + [ 7.7011158, 46.2140521 ], + [ 7.7010913, 46.2141647 ], + [ 7.7010984, 46.2143055 ], + [ 7.701138, 46.2144521 ], + [ 7.7010885, 46.214604 ], + [ 7.700975, 46.2145643 ], + [ 7.7008697, 46.2145754 ], + [ 7.700845, 46.214643 ], + [ 7.7008121, 46.2147216 ], + [ 7.7007144, 46.2147834 ], + [ 7.7005924, 46.214845 ], + [ 7.7008182, 46.2149751 ], + [ 7.7007356, 46.2153128 ], + [ 7.7006196, 46.2156111 ], + [ 7.7004658, 46.2156163 ], + [ 7.7003198, 46.2155822 ], + [ 7.7001821, 46.2155819 ], + [ 7.7000195, 46.2156153 ], + [ 7.6998894, 46.2156657 ], + [ 7.6997917000000005, 46.2157387 ], + [ 7.699621, 46.2157833 ], + [ 7.6994017, 46.2158167 ], + [ 7.6993466, 46.2158165 ], + [ 7.699264, 46.2158164 ], + [ 7.6990116, 46.2158777 ], + [ 7.6987276, 46.2159334 ], + [ 7.6983943, 46.2160341 ], + [ 7.698101, 46.2161797 ], + [ 7.697703, 46.2162915 ], + [ 7.6975814, 46.2162519 ], + [ 7.6974928, 46.2161897 ], + [ 7.6974034, 46.2161388 ], + [ 7.6972662, 46.2160596 ], + [ 7.6971775000000004, 46.2159694 ], + [ 7.6971211, 46.2158735 ], + [ 7.6970244, 46.2157944 ], + [ 7.696927, 46.2157491 ], + [ 7.6968297, 46.2157321 ], + [ 7.6968058, 46.2156531 ], + [ 7.6968225, 46.2155743 ], + [ 7.6968309999999995, 46.2154956 ], + [ 7.6966694, 46.2154049 ], + [ 7.6964996, 46.2153089 ], + [ 7.6963137, 46.215224 ], + [ 7.6961514, 46.2151504 ], + [ 7.696006, 46.2150712 ], + [ 7.6958849, 46.2149808 ], + [ 7.6957557, 46.2148792 ], + [ 7.6956588, 46.2147719 ], + [ 7.6954967, 46.2147604 ], + [ 7.6952877, 46.2144163 ], + [ 7.6949876, 46.2144888 ], + [ 7.6947757, 46.2145559 ], + [ 7.6943944, 46.2146 ], + [ 7.694094, 46.214605 ], + [ 7.6939069, 46.2146158 ], + [ 7.6938103, 46.2145761 ], + [ 7.6936724, 46.2145196 ], + [ 7.6934939, 46.2144629 ], + [ 7.6933, 46.2143948 ], + [ 7.6931379, 46.2143663 ], + [ 7.6929272, 46.2143377 ], + [ 7.6926752, 46.2143258 ], + [ 7.6923917, 46.2143082 ], + [ 7.6922289, 46.2143191 ], + [ 7.6921323, 46.2142627 ], + [ 7.6920436, 46.2141836 ], + [ 7.6919468, 46.2140877 ], + [ 7.6917849, 46.2139408 ], + [ 7.6916969, 46.2138335 ], + [ 7.691559, 46.2137882 ], + [ 7.6913564, 46.2137483 ], + [ 7.6912185, 46.2137141 ], + [ 7.6909998, 46.2137024 ], + [ 7.690708, 46.2136679 ], + [ 7.6903913, 46.2136672 ], + [ 7.6901235, 46.2137172 ], + [ 7.6896849, 46.2137895 ], + [ 7.6893515, 46.2138563 ], + [ 7.6890022, 46.2139794 ], + [ 7.6885143, 46.2141021 ], + [ 7.6883112, 46.2141355 ], + [ 7.6881487, 46.2142027 ], + [ 7.6879854, 46.2142754 ], + [ 7.6878152, 46.214247 ], + [ 7.6876207999999995, 46.2142465 ], + [ 7.6875149, 46.2142912 ], + [ 7.6873768, 46.2143643 ], + [ 7.687271, 46.2144259 ], + [ 7.6871244, 46.2144424 ], + [ 7.6868734, 46.2144475 ], + [ 7.6867431, 46.2144753 ], + [ 7.6865724, 46.2145087 ], + [ 7.6863935, 46.2145278 ], + [ 7.6862639999999995, 46.2145587 ], + [ 7.6861093, 46.2145583 ], + [ 7.6859797, 46.2145524 ], + [ 7.6858502, 46.2145691 ], + [ 7.6857524, 46.2146195 ], + [ 7.6856539, 46.2146981 ], + [ 7.6854997, 46.2147878 ], + [ 7.6853121, 46.2148606 ], + [ 7.685215, 46.2148941 ], + [ 7.6850282, 46.2149557 ], + [ 7.6848569, 46.2150454 ], + [ 7.6847593, 46.2151354 ], + [ 7.6846608, 46.2152026 ], + [ 7.684514, 46.2153262 ], + [ 7.6842538000000005, 46.2154665 ], + [ 7.6839686, 46.2156291 ], + [ 7.6837004, 46.2157805 ], + [ 7.6835696, 46.215859 ], + [ 7.6834146, 46.2159769 ], + [ 7.6832191, 46.216089 ], + [ 7.6831047, 46.216224 ], + [ 7.6829829, 46.2163307 ], + [ 7.6828522, 46.2164599 ], + [ 7.6826643, 46.2166397 ], + [ 7.6825255, 46.2167521 ], + [ 7.6824198, 46.2168306 ], + [ 7.6822329, 46.2168752 ], + [ 7.6820452, 46.216931 ], + [ 7.6818995, 46.2169532 ], + [ 7.6817448, 46.2169585 ], + [ 7.6815748, 46.2169863 ], + [ 7.6814116, 46.2170591 ], + [ 7.6812573, 46.2171543 ], + [ 7.6811677, 46.2172162 ], + [ 7.6811259, 46.2173062 ], + [ 7.6810439, 46.2174468 ], + [ 7.6809382, 46.2175366 ], + [ 7.6808485, 46.2175758 ], + [ 7.6807346, 46.2176431 ], + [ 7.6805802, 46.217716 ], + [ 7.6804255999999995, 46.2177438 ], + [ 7.6802548999999996, 46.2177828 ], + [ 7.6801814, 46.2178333 ], + [ 7.680075, 46.2179456 ], + [ 7.6799687, 46.2180749 ], + [ 7.6798462, 46.2182154 ], + [ 7.6797889999999995, 46.2182941 ], + [ 7.6797967, 46.2183786 ], + [ 7.6797963, 46.21848 ], + [ 7.6797959, 46.2185589 ], + [ 7.679763, 46.2186376 ], + [ 7.679697, 46.2187276 ], + [ 7.6795671, 46.2188287 ], + [ 7.6794693, 46.2188847 ], + [ 7.6793789, 46.2189577 ], + [ 7.6792077, 46.2190701 ], + [ 7.67911, 46.2191373 ], + [ 7.6789879, 46.2192046 ], + [ 7.6788822, 46.2192945 ], + [ 7.6788243, 46.2193901 ], + [ 7.6787671, 46.2194574 ], + [ 7.678718, 46.2195193 ], + [ 7.6786615, 46.2195586 ], + [ 7.6786043, 46.2196317 ], + [ 7.6785788, 46.2197218 ], + [ 7.6785216, 46.2197948 ], + [ 7.678457, 46.2198341 ], + [ 7.6783186, 46.2198675 ], + [ 7.6781884, 46.2199123 ], + [ 7.6780501, 46.2199739 ], + [ 7.6779276, 46.2201088 ], + [ 7.6778126, 46.2202999 ], + [ 7.6777555, 46.22039 ], + [ 7.677617, 46.2203953 ], + [ 7.6775278, 46.2203725 ], + [ 7.6773501, 46.2203101 ], + [ 7.6772922999999995, 46.2204226 ], + [ 7.6771875, 46.2203548 ], + [ 7.6770734, 46.2203769 ], + [ 7.6768871, 46.2203766 ], + [ 7.6765703, 46.2203533 ], + [ 7.6762536, 46.2203694 ], + [ 7.6763264, 46.220516 ], + [ 7.6764393, 46.2205951 ], + [ 7.6765928, 46.2206969 ], + [ 7.676414, 46.2207414 ], + [ 7.6763329, 46.2207131 ], + [ 7.6762112, 46.2206621 ], + [ 7.6761064, 46.2206055 ], + [ 7.6759847, 46.2205658 ], + [ 7.6758795, 46.2205825 ], + [ 7.6758462, 46.2207401 ], + [ 7.6756996, 46.2207454 ], + [ 7.6755700000000004, 46.2207563 ], + [ 7.6754235, 46.2207672 ], + [ 7.6753096, 46.2208458 ], + [ 7.6752525, 46.2209358 ], + [ 7.6751547, 46.2209806 ], + [ 7.6750406, 46.2210141 ], + [ 7.6749185, 46.22107 ], + [ 7.674764, 46.2211204 ], + [ 7.6745366, 46.2211705 ], + [ 7.6744064, 46.2212097 ], + [ 7.6742761999999995, 46.2212599 ], + [ 7.6741136999999995, 46.2213497 ], + [ 7.6738693, 46.2213998 ], + [ 7.6737391, 46.2214446 ], + [ 7.6736172, 46.2215343 ], + [ 7.673487, 46.221596 ], + [ 7.6733244, 46.2216294 ], + [ 7.6731454, 46.2216515 ], + [ 7.6729996, 46.2216455 ], + [ 7.6728289, 46.221690100000004 ], + [ 7.6727723, 46.2217069 ], + [ 7.6726415, 46.2218135 ], + [ 7.6724622, 46.2219314 ], + [ 7.6723402, 46.2220099 ], + [ 7.6722992, 46.222083 ], + [ 7.6722663, 46.2221562 ], + [ 7.672224, 46.2223081 ], + [ 7.6721582999999995, 46.2224656 ], + [ 7.6720600999999995, 46.2226063 ], + [ 7.6719213, 46.2227411 ], + [ 7.6717831, 46.2228082 ], + [ 7.6716279, 46.2228868 ], + [ 7.6714248, 46.2229482 ], + [ 7.6713596, 46.2230325 ], + [ 7.6713105, 46.2231056 ], + [ 7.6712769, 46.2232125 ], + [ 7.6712192, 46.2233476 ], + [ 7.6711702, 46.2234601 ], + [ 7.6710801, 46.2236063 ], + [ 7.6710221, 46.2236851 ], + [ 7.6709326, 46.2237693 ], + [ 7.6708104, 46.2238027 ], + [ 7.6706072, 46.2238361 ], + [ 7.6703885, 46.2238355 ], + [ 7.6701933, 46.2238406 ], + [ 7.6699663000000005, 46.2238062 ], + [ 7.6698535, 46.2237497 ], + [ 7.6697722, 46.2236875 ], + [ 7.6697081, 46.2236535 ], + [ 7.669554, 46.2236137 ], + [ 7.6694487, 46.2236134 ], + [ 7.6692785, 46.2235904 ], + [ 7.6691649, 46.2235676 ], + [ 7.6690757, 46.2235336 ], + [ 7.668954, 46.2234938 ], + [ 7.6688241999999995, 46.2234485 ], + [ 7.6686709, 46.2233975 ], + [ 7.668525, 46.2233745 ], + [ 7.6683946, 46.2233741 ], + [ 7.6682489, 46.2234188 ], + [ 7.6681267, 46.2234411 ], + [ 7.6680046, 46.2234802 ], + [ 7.6679148, 46.2235195 ], + [ 7.667842, 46.2235417 ], + [ 7.6677522, 46.2235641 ], + [ 7.6676145, 46.2235863 ], + [ 7.6675335, 46.223586 ], + [ 7.6674443, 46.2235576 ], + [ 7.6673794, 46.2235236 ], + [ 7.6672827, 46.2234727 ], + [ 7.6671771, 46.2233992 ], + [ 7.6670887, 46.2233595 ], + [ 7.666886, 46.2233252 ], + [ 7.6667152, 46.2233587 ], + [ 7.6665769, 46.2234033 ], + [ 7.6664224, 46.2234593 ], + [ 7.6663245, 46.2234984 ], + [ 7.6661706, 46.2234812 ], + [ 7.6660165, 46.2234412 ], + [ 7.6658787, 46.2234296 ], + [ 7.665716, 46.2234519 ], + [ 7.6655211, 46.2235301 ], + [ 7.6654394, 46.2235581 ], + [ 7.6653584, 46.2235523 ], + [ 7.665261, 46.2235238 ], + [ 7.6651477, 46.2235461 ], + [ 7.664993, 46.2235512 ], + [ 7.6648717, 46.2235848 ], + [ 7.6647413, 46.2235901 ], + [ 7.6645793, 46.2235953 ], + [ 7.6644496, 46.2235668 ], + [ 7.6643197, 46.2235101 ], + [ 7.6642224, 46.2234931 ], + [ 7.6641409, 46.223549 ], + [ 7.6640682, 46.2236052 ], + [ 7.663946, 46.2236443 ], + [ 7.6638238, 46.2236609 ], + [ 7.6636537, 46.2236774 ], + [ 7.6634098999999996, 46.2236824 ], + [ 7.6631911, 46.2236537 ], + [ 7.6629722000000005, 46.2236024 ], + [ 7.6628261, 46.2235457 ], + [ 7.6626815, 46.2234326 ], + [ 7.6626084, 46.223393 ], + [ 7.662535, 46.2234604 ], + [ 7.6624367, 46.2235898 ], + [ 7.6623317, 46.2234655 ], + [ 7.6621308, 46.2232566 ], + [ 7.6620642, 46.223425399999996 ], + [ 7.6619107, 46.2233291 ], + [ 7.6617578, 46.2231712 ], + [ 7.6616146, 46.2228046 ], + [ 7.6613777, 46.222928 ], + [ 7.6614093, 46.2231196 ], + [ 7.6614089, 46.2232153 ], + [ 7.6613996, 46.2233166 ], + [ 7.6613743, 46.2234687 ], + [ 7.6613488, 46.2235925 ], + [ 7.6613316000000005, 46.2237445 ], + [ 7.6612902, 46.223919 ], + [ 7.6612326, 46.2240935 ], + [ 7.6612147, 46.2242737 ], + [ 7.6611403, 46.2244819 ], + [ 7.6611151, 46.2246676 ], + [ 7.6610805, 46.224921 ], + [ 7.6610553, 46.2250956 ], + [ 7.6610049, 46.2252645 ], + [ 7.6609718, 46.2254727 ], + [ 7.6609458, 46.2256529 ], + [ 7.6609031, 46.2259231 ], + [ 7.6608936, 46.226171 ], + [ 7.6608846, 46.2263399 ], + [ 7.660843, 46.2264694 ], + [ 7.6607769999999995, 46.2265873 ], + [ 7.6607118, 46.2266717 ], + [ 7.6606871, 46.2267674 ], + [ 7.6606866, 46.2268463 ], + [ 7.6606860999999995, 46.2269251 ], + [ 7.660685, 46.227049 ], + [ 7.6606838, 46.2271616 ], + [ 7.6606746999999995, 46.2273081 ], + [ 7.6606986, 46.2274264 ], + [ 7.6607301, 46.2275786 ], + [ 7.6607125, 46.2278377 ], + [ 7.6606221, 46.2279106 ], + [ 7.6605573, 46.2279273 ], + [ 7.6604351, 46.2279496 ], + [ 7.6603217, 46.2279662 ], + [ 7.6601267, 46.228022 ], + [ 7.6599965, 46.2280724 ], + [ 7.6598737, 46.2281565 ], + [ 7.6597679, 46.2282351 ], + [ 7.6596621, 46.2283305 ], + [ 7.6595638, 46.2284429 ], + [ 7.6594492, 46.2285609 ], + [ 7.6593753, 46.2287297 ], + [ 7.6593008000000005, 46.2289266 ], + [ 7.6592673, 46.2290618 ], + [ 7.6592257, 46.2291743 ], + [ 7.6591354, 46.2292979 ], + [ 7.6590784, 46.2294217 ], + [ 7.6590045, 46.2295679 ], + [ 7.6589135, 46.2297254 ], + [ 7.6588153, 46.2298717 ], + [ 7.6587007, 46.2299839 ], + [ 7.6585862, 46.2301189 ], + [ 7.6585049, 46.2302368 ], + [ 7.6584226, 46.2303268 ], + [ 7.6582595, 46.2304784 ], + [ 7.6580559, 46.2306074 ], + [ 7.6578509, 46.2308041 ], + [ 7.6576468, 46.2310176 ], + [ 7.6574264, 46.2312254 ], + [ 7.6572382999999995, 46.2313769 ], + [ 7.6571562, 46.2315231 ], + [ 7.6571072000000004, 46.2316301 ], + [ 7.6570737, 46.2317651 ], + [ 7.657024, 46.2319001 ], + [ 7.6569663, 46.2320464 ], + [ 7.6569085, 46.2321815 ], + [ 7.6568583, 46.2323785 ], + [ 7.6568152, 46.2327558 ], + [ 7.6567974, 46.2329585 ], + [ 7.6567883, 46.2331049 ], + [ 7.6567879, 46.2332119 ], + [ 7.6568355, 46.2333697 ], + [ 7.6568594, 46.2334768 ], + [ 7.656915, 46.2335896 ], + [ 7.656922, 46.2337361 ], + [ 7.656913, 46.2338937 ], + [ 7.6568957, 46.2340345 ], + [ 7.6568618, 46.2342766 ], + [ 7.6568452, 46.2343668 ], + [ 7.6568035, 46.2344679 ], + [ 7.6567383, 46.2345917 ], + [ 7.6566641, 46.2346703 ], + [ 7.656623, 46.2347322 ], + [ 7.656566, 46.234856 ], + [ 7.6565081, 46.2349628 ], + [ 7.6564672, 46.2350641 ], + [ 7.6564173, 46.2351597 ], + [ 7.6563438999999995, 46.2352214 ], + [ 7.6562217, 46.2352774 ], + [ 7.6561164999999995, 46.2352997 ], + [ 7.6559782, 46.2353613 ], + [ 7.6558391, 46.2354286 ], + [ 7.6556685, 46.2355126 ], + [ 7.6555538, 46.2355967 ], + [ 7.6554075, 46.2356921 ], + [ 7.6553333, 46.2357877 ], + [ 7.6552924, 46.2358946 ], + [ 7.6552752, 46.2360353 ], + [ 7.6552829, 46.2361367 ], + [ 7.6553223, 46.2362719 ], + [ 7.6553462, 46.2363623 ], + [ 7.6554024, 46.2364468 ], + [ 7.6554417, 46.2365596 ], + [ 7.6554656, 46.2366554 ], + [ 7.6554488, 46.2367116 ], + [ 7.6554078, 46.236796 ], + [ 7.6553505, 46.2368466 ], + [ 7.6552852, 46.2369309 ], + [ 7.655236, 46.236987 ], + [ 7.6552194, 46.2370884 ], + [ 7.655219, 46.2371785 ], + [ 7.655226, 46.2373193 ], + [ 7.6552655, 46.2374659 ], + [ 7.6552481, 46.2375841 ], + [ 7.6552228, 46.2377305 ], + [ 7.6551812, 46.2378599 ], + [ 7.6551314999999995, 46.2380006 ], + [ 7.6550739, 46.2381863 ], + [ 7.6549838, 46.2383495 ], + [ 7.6548362, 46.238518 ], + [ 7.6546569, 46.2386583 ], + [ 7.6545097, 46.238748 ], + [ 7.6543708, 46.2388491 ], + [ 7.6541192, 46.2389385 ], + [ 7.6536878999999995, 46.2390894 ], + [ 7.6538245, 46.239208 ], + [ 7.6539618, 46.2393042 ], + [ 7.6540674, 46.2393776 ], + [ 7.6542614, 46.2394571 ], + [ 7.6545122, 46.2395761 ], + [ 7.6547551, 46.239723 ], + [ 7.6549816, 46.2398363 ], + [ 7.6551594, 46.2399213 ], + [ 7.6553374, 46.2400513 ], + [ 7.6554908, 46.2401362 ], + [ 7.655612, 46.2402379 ], + [ 7.6556926, 46.2403226 ], + [ 7.6557562, 46.240441 ], + [ 7.6558532, 46.2405709 ], + [ 7.6558845, 46.2407061 ], + [ 7.6559329, 46.2408413 ], + [ 7.6559642, 46.240971 ], + [ 7.6559712, 46.2410949 ], + [ 7.6559708, 46.2412076 ], + [ 7.6559535, 46.2413371 ], + [ 7.6559281, 46.2414778 ], + [ 7.6559028, 46.2416186 ], + [ 7.6558606000000005, 46.2418212 ], + [ 7.6558672, 46.2420465 ], + [ 7.6559154, 46.2421536 ], + [ 7.6559306, 46.2422888 ], + [ 7.6559787, 46.2423791 ], + [ 7.6560431, 46.242475 ], + [ 7.6560752, 46.2425877 ], + [ 7.656147, 46.2427119 ], + [ 7.6562035, 46.2428416 ], + [ 7.6562835, 46.2429882 ], + [ 7.6563716, 46.2431517 ], + [ 7.6565483, 46.2433662 ], + [ 7.6566852, 46.2435356 ], + [ 7.6567989, 46.2436034 ], + [ 7.6569037, 46.2436601 ], + [ 7.6571308, 46.2437226 ], + [ 7.6573417, 46.2437739 ], + [ 7.6573822, 46.2437795 ], + [ 7.6575607, 46.2438251 ], + [ 7.6577629, 46.243927 ], + [ 7.657997, 46.2440966 ], + [ 7.6581344, 46.2442095 ], + [ 7.6583765, 46.2443566 ], + [ 7.6585708, 46.2445093 ], + [ 7.6587562, 46.2446618 ], + [ 7.6589016999999995, 46.2447917 ], + [ 7.659031, 46.2448935 ], + [ 7.6591596, 46.2450233 ], + [ 7.6592647, 46.2451588 ], + [ 7.6593851, 46.2452717 ], + [ 7.6596036, 46.2454075 ], + [ 7.659806, 46.2455544 ], + [ 7.6600638, 46.2457634 ], + [ 7.6604116, 46.2460065 ], + [ 7.6606457, 46.2461705 ], + [ 7.6608887, 46.2463457 ], + [ 7.6611958, 46.2465211 ], + [ 7.6614387, 46.2466625 ], + [ 7.6617699, 46.2468155 ], + [ 7.6621182, 46.2469515 ], + [ 7.6624177, 46.2470762 ], + [ 7.6627659, 46.2472066 ], + [ 7.6630737, 46.2473538 ], + [ 7.6633414, 46.2474109 ], + [ 7.6635605, 46.2474847 ], + [ 7.6638033, 46.247597999999996 ], + [ 7.6641022, 46.2477621 ], + [ 7.6644425, 46.2479262 ], + [ 7.6647657, 46.2480848 ], + [ 7.6650649, 46.2483107 ], + [ 7.6651854, 46.2484576 ], + [ 7.6652249999999995, 46.2486097 ], + [ 7.6651917, 46.2487899 ], + [ 7.6651501, 46.2489362 ], + [ 7.6650922999999995, 46.24906 ], + [ 7.6649861, 46.2492344 ], + [ 7.6648546, 46.2493973 ], + [ 7.6646829, 46.2496052 ], + [ 7.6645514, 46.2497683 ], + [ 7.6644047, 46.2499425 ], + [ 7.6642733, 46.250128 ], + [ 7.6641501, 46.2503079 ], + [ 7.6639869, 46.2504314 ], + [ 7.6637826, 46.2506168 ], + [ 7.6635454, 46.2508809 ], + [ 7.6633493, 46.2510775 ], + [ 7.6632093999999995, 46.2513531 ], + [ 7.6631348, 46.2515501 ], + [ 7.6631572, 46.2518599 ], + [ 7.6631158, 46.2520457 ], + [ 7.6633422, 46.2521137 ], + [ 7.6635851, 46.2522327 ], + [ 7.6637225, 46.2523401 ], + [ 7.6638599, 46.2524474 ], + [ 7.6639817, 46.2525154 ], + [ 7.6643787, 46.2526572 ], + [ 7.6644991000000005, 46.2527814 ], + [ 7.6646286, 46.2529282 ], + [ 7.6647166, 46.2530411 ], + [ 7.664919, 46.2531711 ], + [ 7.6651206, 46.2533181 ], + [ 7.6653064, 46.2535608 ], + [ 7.6657658, 46.254097 ], + [ 7.6660875, 46.2544808 ], + [ 7.6662584, 46.2544361 ], + [ 7.6664213, 46.254431 ], + [ 7.6666239, 46.2544371 ], + [ 7.6667531, 46.2545049 ], + [ 7.6668338, 46.2546178 ], + [ 7.6668576, 46.2547024 ], + [ 7.666906, 46.2548207 ], + [ 7.666946, 46.2548941 ], + [ 7.6670259, 46.2550126 ], + [ 7.6672115, 46.2552046 ], + [ 7.6674133, 46.255391 ], + [ 7.6676639, 46.2556224 ], + [ 7.6680024, 46.2559219 ], + [ 7.6685117, 46.2563737 ], + [ 7.6685674, 46.2565089 ], + [ 7.6686075, 46.2565992 ], + [ 7.6686146, 46.2567513 ], + [ 7.6686129, 46.256926 ], + [ 7.6685963, 46.2570273 ], + [ 7.6685636, 46.2571342 ], + [ 7.6685137999999995, 46.2572523 ], + [ 7.668456, 46.257393 ], + [ 7.6683738, 46.2574998 ], + [ 7.6682762, 46.2576122 ], + [ 7.6681777, 46.2577078 ], + [ 7.6680301, 46.2578876 ], + [ 7.6678421, 46.2580842 ], + [ 7.6677026999999995, 46.2582698 ], + [ 7.6676295, 46.258399 ], + [ 7.6675386, 46.2585848 ], + [ 7.6674891, 46.2587479 ], + [ 7.6674874, 46.2589283 ], + [ 7.6674865, 46.2590971 ], + [ 7.6674775, 46.2592774 ], + [ 7.667484, 46.2594632 ], + [ 7.6675316, 46.2595928 ], + [ 7.6675955, 46.2597677 ], + [ 7.6676021, 46.2599817 ], + [ 7.6676009, 46.2602746 ], + [ 7.6675491000000005, 46.2606856 ], + [ 7.667799, 46.2609228 ], + [ 7.6679047, 46.261002 ], + [ 7.6680984, 46.2611882 ], + [ 7.6682595, 46.2613182 ], + [ 7.668445, 46.261482 ], + [ 7.6685664, 46.2616344 ], + [ 7.6687188, 46.2618263 ], + [ 7.6689689, 46.2621142 ], + [ 7.669267, 46.2624416 ], + [ 7.6696059, 46.2628479 ], + [ 7.6696779, 46.2630002 ], + [ 7.6697342, 46.2630792 ], + [ 7.6698796, 46.2631528 ], + [ 7.6699934, 46.2632151 ], + [ 7.6701551, 46.2633055 ], + [ 7.6703649, 46.2634582 ], + [ 7.6704536, 46.2635485 ], + [ 7.6706562, 46.2637236 ], + [ 7.6709546, 46.2639328 ], + [ 7.6711977000000005, 46.2641023 ], + [ 7.6714562, 46.2642494 ], + [ 7.6717241, 46.2643515 ], + [ 7.6719992999999995, 46.2644422 ], + [ 7.6722672, 46.2645274 ], + [ 7.6726079, 46.2645846 ], + [ 7.6728108, 46.2646189 ], + [ 7.6731353, 46.2646817 ], + [ 7.6734678, 46.264705 ], + [ 7.6740832999999995, 46.2649375 ], + [ 7.6743106, 46.265011200000004 ], + [ 7.6744643, 46.2651356 ], + [ 7.6746018, 46.2652316 ], + [ 7.6747548, 46.2653728 ], + [ 7.6749892, 46.265593 ], + [ 7.6751018, 46.2657566 ], + [ 7.6752218, 46.2659541 ], + [ 7.6752857, 46.2661063 ], + [ 7.6753503, 46.2662359 ], + [ 7.6755115, 46.2663884 ], + [ 7.6756652, 46.2664847 ], + [ 7.6758995, 46.2666766 ], + [ 7.6761338, 46.2668575 ], + [ 7.6763119, 46.2669931 ], + [ 7.6764657, 46.2671174 ], + [ 7.6766675, 46.2672868 ], + [ 7.6767725, 46.267394 ], + [ 7.6769744, 46.2675805 ], + [ 7.6772406, 46.2678177 ], + [ 7.6775638, 46.2681226 ], + [ 7.6779187, 46.2684446 ], + [ 7.6782339, 46.2687776 ], + [ 7.678484, 46.2690542 ], + [ 7.6787738, 46.2693309 ], + [ 7.6787486, 46.2694941 ], + [ 7.6788709, 46.2694494 ], + [ 7.6789931, 46.2694046 ], + [ 7.6791634, 46.2694163 ], + [ 7.679375, 46.2694112 ], + [ 7.679602, 46.2694117 ], + [ 7.679822, 46.2692996 ], + [ 7.6797959, 46.2696319 ], + [ 7.6799509, 46.2694802 ], + [ 7.6801623, 46.2694411 ], + [ 7.6805278, 46.2694083 ], + [ 7.6804216, 46.2695883 ], + [ 7.6805594, 46.2695774 ], + [ 7.6808277, 46.2695611 ], + [ 7.6810391, 46.2695221 ], + [ 7.6812262, 46.269472 ], + [ 7.6814624, 46.2693599 ], + [ 7.6816987999999995, 46.2692871 ], + [ 7.6819831, 46.2692203 ], + [ 7.6821627, 46.2691418 ], + [ 7.6823497, 46.2690747 ], + [ 7.682546, 46.2689231 ], + [ 7.6827249, 46.2688504 ], + [ 7.6829774, 46.2687553 ], + [ 7.6834579, 46.2685254 ], + [ 7.6841087, 46.2683018 ], + [ 7.6842154, 46.2682287 ], + [ 7.6843049, 46.2681163 ], + [ 7.6843620999999995, 46.2680376 ], + [ 7.6844443, 46.2679195 ], + [ 7.684559, 46.2678297 ], + [ 7.6847378, 46.2677512 ], + [ 7.6848605, 46.2676277 ], + [ 7.6849913, 46.2675097 ], + [ 7.685163, 46.2673017 ], + [ 7.6852531, 46.2671386 ], + [ 7.6853267, 46.2670937 ], + [ 7.685474, 46.2670403 ], + [ 7.6854812, 46.2670377 ], + [ 7.6856446, 46.266948 ], + [ 7.6857261, 46.2668581 ], + [ 7.6857752, 46.2667793 ], + [ 7.6858086, 46.2666329 ], + [ 7.6858583, 46.2665148 ], + [ 7.6859487, 46.2664249 ], + [ 7.6860868, 46.2663183 ], + [ 7.6862993, 46.2661667 ], + [ 7.6864873, 46.2659643 ], + [ 7.6866673, 46.2657845 ], + [ 7.6867654, 46.2656101 ], + [ 7.6869209, 46.2654077 ], + [ 7.6870604, 46.2652391 ], + [ 7.6871587, 46.2650985 ], + [ 7.6871678, 46.2649747 ], + [ 7.6870788999999995, 46.2648505 ], + [ 7.686942, 46.2646981 ], + [ 7.6874206, 46.2647556 ], + [ 7.6877040999999995, 46.2648858 ], + [ 7.6879387999999995, 46.2649765 ], + [ 7.6881006, 46.2650782 ], + [ 7.6882306, 46.2651517 ], + [ 7.6883598, 46.265214 ], + [ 7.6885628, 46.265282 ], + [ 7.6889598, 46.2653956 ], + [ 7.6892513000000005, 46.265509 ], + [ 7.6898194, 46.2656342 ], + [ 7.690403, 46.2657933 ], + [ 7.6909303, 46.2658733 ], + [ 7.6915227, 46.2660043 ], + [ 7.6920251, 46.2661292 ], + [ 7.6925282, 46.2662093 ], + [ 7.6927236, 46.2662154 ], + [ 7.6929511999999995, 46.2661878 ], + [ 7.6931619, 46.2661713 ], + [ 7.693414, 46.2661607 ], + [ 7.6935926, 46.2662005 ], + [ 7.6937712, 46.2662517 ], + [ 7.6939572, 46.2663422 ], + [ 7.6941109, 46.2664439 ], + [ 7.6942802, 46.2665851 ], + [ 7.6944015, 46.2666811 ], + [ 7.6945147, 46.2667997 ], + [ 7.6946767, 46.2669465 ], + [ 7.694846, 46.2670877 ], + [ 7.6950404, 46.2672233 ], + [ 7.6951779, 46.2673307 ], + [ 7.6954047, 46.2674438 ], + [ 7.6955501, 46.2675117 ], + [ 7.6956793, 46.2675739 ], + [ 7.6958176, 46.2676644 ], + [ 7.6959062, 46.2677322 ], + [ 7.6960193, 46.267817 ], + [ 7.6961568, 46.2679073 ], + [ 7.6963266, 46.2679979 ], + [ 7.6964405, 46.2680601 ], + [ 7.6966183, 46.2681168 ], + [ 7.6967731, 46.2681172 ], + [ 7.6968868, 46.2681456 ], + [ 7.6970896, 46.2681855 ], + [ 7.6972838, 46.2682704 ], + [ 7.6975915, 46.2683668 ], + [ 7.6979319, 46.2685027 ], + [ 7.6981991, 46.268616 ], + [ 7.6984502, 46.2687236 ], + [ 7.6987419, 46.2688707 ], + [ 7.6990018, 46.2689614 ], + [ 7.6992609, 46.2690577 ], + [ 7.6995042, 46.2690808 ], + [ 7.6997477, 46.2691432 ], + [ 7.7001377, 46.2691442 ], + [ 7.7004215, 46.2691505 ], + [ 7.7006574, 46.2691565 ], + [ 7.7008521, 46.2691795 ], + [ 7.7010306, 46.2692138 ], + [ 7.7011605, 46.2692535 ], + [ 7.7014034, 46.2693555 ], + [ 7.7016056, 46.2694178 ], + [ 7.7017679999999995, 46.2694633 ], + [ 7.7020034, 46.2695201 ], + [ 7.7026288, 46.2695835 ], + [ 7.7026776, 46.2694653 ], + [ 7.7027356000000005, 46.2693753 ], + [ 7.7028008, 46.269291 ], + [ 7.7029068, 46.2692461 ], + [ 7.7030283, 46.2692183 ], + [ 7.703143, 46.2691284 ], + [ 7.7032656, 46.2689935 ], + [ 7.7034286, 46.2688474 ], + [ 7.7035844, 46.2686957 ], + [ 7.7037634, 46.2685102 ], + [ 7.7039192, 46.268364 ], + [ 7.7041959, 46.2682576 ], + [ 7.7044565, 46.2681625 ], + [ 7.7046516, 46.2680897 ], + [ 7.7048958, 46.2679776 ], + [ 7.7051482, 46.2678599 ], + [ 7.7054093, 46.2676972 ], + [ 7.7056379, 46.2675344 ], + [ 7.7058257999999995, 46.267332 ], + [ 7.7059241, 46.2672026 ], + [ 7.7059818, 46.2670732 ], + [ 7.7059745, 46.2669042 ], + [ 7.705959, 46.2667183 ], + [ 7.7059926, 46.2666114 ], + [ 7.7060902, 46.2665159 ], + [ 7.7062697, 46.2664261 ], + [ 7.7064248, 46.2663195 ], + [ 7.7065307, 46.2662465 ], + [ 7.7066202, 46.2661509 ], + [ 7.7066780999999995, 46.2660496 ], + [ 7.7067602, 46.2659316 ], + [ 7.7069221, 46.2658925 ], + [ 7.7070367, 46.2657858 ], + [ 7.7071108, 46.2656901 ], + [ 7.7072576999999995, 46.265544 ], + [ 7.7075099, 46.265398 ], + [ 7.7077542, 46.2652972 ], + [ 7.7079412, 46.2652471 ], + [ 7.7081366, 46.2652417 ], + [ 7.7082912, 46.2652027 ], + [ 7.7083727, 46.2651297 ], + [ 7.7084543, 46.2650622 ], + [ 7.7084789, 46.2649553 ], + [ 7.7085203, 46.2648145 ], + [ 7.7085456, 46.2646795 ], + [ 7.7085875999999995, 46.2644936 ], + [ 7.7086533, 46.2643305 ], + [ 7.7087356, 46.2642461 ], + [ 7.7088251, 46.2641675 ], + [ 7.7089634, 46.2640889 ], + [ 7.7090936, 46.2640217 ], + [ 7.7092482, 46.2639769 ], + [ 7.7094190000000005, 46.2639379 ], + [ 7.709525, 46.2638931 ], + [ 7.7096308, 46.2638144 ], + [ 7.7097049, 46.2637244 ], + [ 7.7097945, 46.2636459 ], + [ 7.7098516, 46.2635615 ], + [ 7.7098755, 46.2636234 ], + [ 7.7098914, 46.2637192 ], + [ 7.7098586000000005, 46.263815 ], + [ 7.7097771, 46.2638823 ], + [ 7.7096792, 46.2639385 ], + [ 7.7096221, 46.2640227 ], + [ 7.709646, 46.2640961 ], + [ 7.7097102, 46.2641243 ], + [ 7.7096208, 46.2642481 ], + [ 7.709118, 46.2655087 ], + [ 7.7091908, 46.2654862 ], + [ 7.7092968, 46.2654358 ], + [ 7.7093708, 46.2653232 ], + [ 7.7094766, 46.2652391 ], + [ 7.7096146999999995, 46.2651493 ], + [ 7.7098025, 46.2650934 ], + [ 7.7099813, 46.2650204 ], + [ 7.7101278, 46.2649702 ], + [ 7.7101856, 46.2648633 ], + [ 7.7102919, 46.264717 ], + [ 7.7103813, 46.2646046 ], + [ 7.7105205, 46.2645486 ], + [ 7.7106586, 46.2644475 ], + [ 7.710798, 46.2642788 ], + [ 7.7109118, 46.2641833 ], + [ 7.7110908, 46.2641555 ], + [ 7.7112694, 46.2641954 ], + [ 7.7114317, 46.2642408 ], + [ 7.7115043, 46.264331 ], + [ 7.711519, 46.2645113 ], + [ 7.711527, 46.2646409 ], + [ 7.7115826, 46.2647536 ], + [ 7.7114285, 46.2647251 ], + [ 7.7114606, 46.2648322 ], + [ 7.7114109, 46.2649448 ], + [ 7.7112962, 46.2651811 ], + [ 7.7111899, 46.2653216 ], + [ 7.7110997, 46.2654341 ], + [ 7.7109771, 46.2655747 ], + [ 7.7108864, 46.2657547 ], + [ 7.7107966, 46.265946 ], + [ 7.7107222, 46.2661429 ], + [ 7.7107868, 46.2662501 ], + [ 7.7109161, 46.2663348 ], + [ 7.7110773, 46.2664705 ], + [ 7.7111986, 46.2665889 ], + [ 7.7111333, 46.2666451 ], + [ 7.7110356, 46.2667406 ], + [ 7.7108966, 46.2668305 ], + [ 7.7107179, 46.266909 ], + [ 7.7105871, 46.2670269 ], + [ 7.7105694, 46.2672128 ], + [ 7.7105523, 46.2673648 ], + [ 7.7105839, 46.267517 ], + [ 7.7106318, 46.267686 ], + [ 7.7106635, 46.2678663 ], + [ 7.7105977, 46.2680183 ], + [ 7.7105968, 46.2681591 ], + [ 7.7106202, 46.2682943 ], + [ 7.7105062, 46.2683617 ], + [ 7.7104004, 46.2684347 ], + [ 7.7102938, 46.268519 ], + [ 7.7102368, 46.2686258 ], + [ 7.7102682, 46.2687554 ], + [ 7.7102916, 46.2688907 ], + [ 7.7103238, 46.2690202 ], + [ 7.7103142, 46.2692117 ], + [ 7.7102891, 46.269375 ], + [ 7.7102639, 46.2695158 ], + [ 7.710125, 46.2696394 ], + [ 7.710116, 46.2697688 ], + [ 7.7101474, 46.2698986 ], + [ 7.7102035, 46.2700845 ], + [ 7.71026, 46.2702029 ], + [ 7.710292, 46.2702818 ], + [ 7.7102667, 46.2704113 ], + [ 7.7102014, 46.27049 ], + [ 7.7101516, 46.2705801 ], + [ 7.7099971, 46.2706586 ], + [ 7.7098669, 46.2707146 ], + [ 7.709874, 46.2708328 ], + [ 7.7098333, 46.270968 ], + [ 7.7096126, 46.2710969 ], + [ 7.7094009, 46.2712486 ], + [ 7.7091643, 46.2714453 ], + [ 7.7087649, 46.2716584 ], + [ 7.7087553, 46.2718498 ], + [ 7.7087623, 46.2721202 ], + [ 7.7087771, 46.2723174 ], + [ 7.7087276, 46.272475 ], + [ 7.70871, 46.2727003 ], + [ 7.708693, 46.2728636 ], + [ 7.7086349, 46.2730831 ], + [ 7.7085853, 46.2732294 ], + [ 7.7085270999999995, 46.2734264 ], + [ 7.7085014, 46.2736292 ], + [ 7.7085401000000005, 46.2739165 ], + [ 7.708572, 46.2741306 ], + [ 7.7086516, 46.2743223 ], + [ 7.7087886, 46.2744803 ], + [ 7.7091206, 46.2747401 ], + [ 7.7092575, 46.2748756 ], + [ 7.7093383, 46.2749771 ], + [ 7.7093461, 46.2750841 ], + [ 7.7093126, 46.2751854 ], + [ 7.7091981, 46.2753148 ], + [ 7.7091165, 46.2753822 ], + [ 7.7090108, 46.2754777 ], + [ 7.7088557, 46.2755956 ], + [ 7.7087978, 46.2757025 ], + [ 7.7087489, 46.2758039 ], + [ 7.7086181, 46.2759162 ], + [ 7.7085197, 46.2760174 ], + [ 7.7083649, 46.2761973 ], + [ 7.7083067, 46.2764112 ], + [ 7.7082976, 46.276535 ], + [ 7.7083539, 46.2766084 ], + [ 7.7084186, 46.2767268 ], + [ 7.7085144, 46.2769297 ], + [ 7.7086116, 46.2770708 ], + [ 7.708716, 46.2771837 ], + [ 7.7088616, 46.2772967 ], + [ 7.7089747, 46.2773701 ], + [ 7.7089905, 46.2774546 ], + [ 7.7089739999999995, 46.2775504 ], + [ 7.7089567, 46.2776573 ], + [ 7.7089079, 46.277798 ], + [ 7.7088576, 46.2779443 ], + [ 7.7088902, 46.2779951 ], + [ 7.7089715, 46.2780347 ], + [ 7.7091087, 46.2780688 ], + [ 7.709336, 46.27812 ], + [ 7.7096114, 46.2782219 ], + [ 7.7097084, 46.2783348 ], + [ 7.7097162, 46.2784194 ], + [ 7.7095773, 46.278543 ], + [ 7.7095763999999996, 46.2786837 ], + [ 7.7096079, 46.2788359 ], + [ 7.7095908, 46.278971 ], + [ 7.7094354, 46.2791905 ], + [ 7.709296, 46.2793703 ], + [ 7.7092304, 46.2795448 ], + [ 7.7091728, 46.2797136 ], + [ 7.7091793, 46.279877 ], + [ 7.709219, 46.2800348 ], + [ 7.7092751, 46.280232 ], + [ 7.7094514, 46.2806267 ], + [ 7.709581, 46.2807678 ], + [ 7.7097343, 46.2809314 ], + [ 7.7098956, 46.2810781 ], + [ 7.7100819, 46.2811969 ], + [ 7.7102843, 46.2812987 ], + [ 7.7104792, 46.2813555 ], + [ 7.7107059, 46.2814573 ], + [ 7.7108922, 46.2815649 ], + [ 7.7109648, 46.2816663 ], + [ 7.7109718, 46.2817733 ], + [ 7.7109872, 46.2819311 ], + [ 7.7110519, 46.2820439 ], + [ 7.7111567, 46.2821005 ], + [ 7.7113998, 46.2822136 ], + [ 7.7116592, 46.2823718 ], + [ 7.7118458, 46.2823891 ], + [ 7.712122, 46.2824742 ], + [ 7.7122108, 46.2825645 ], + [ 7.7122421, 46.282666 ], + [ 7.712323, 46.2827845 ], + [ 7.7125093, 46.2829087 ], + [ 7.7129066, 46.2830505 ], + [ 7.7132306, 46.2831469 ], + [ 7.7134093, 46.2832091 ], + [ 7.7135549, 46.283294 ], + [ 7.7137005, 46.2833787 ], + [ 7.7138298, 46.2834579 ], + [ 7.713943, 46.2835483 ], + [ 7.7141699, 46.2836783 ], + [ 7.7143804, 46.2837745 ], + [ 7.7146486, 46.2838877 ], + [ 7.7148591, 46.2839727 ], + [ 7.7149884, 46.2840462 ], + [ 7.7151421, 46.2841309 ], + [ 7.715337, 46.2841821 ], + [ 7.7156372, 46.2842277 ], + [ 7.7160193, 46.2842511 ], + [ 7.7164494999999995, 46.2843195 ], + [ 7.7165796, 46.2842298 ], + [ 7.7166694, 46.2841849 ], + [ 7.716751, 46.2841343 ], + [ 7.7169056, 46.284084 ], + [ 7.7170841, 46.2840845 ], + [ 7.717328, 46.2840567 ], + [ 7.7175152, 46.2840232 ], + [ 7.7176781, 46.2840124 ], + [ 7.7178571, 46.2839733 ], + [ 7.7180604, 46.2839175 ], + [ 7.7182474, 46.2838502 ], + [ 7.7184102, 46.2838168 ], + [ 7.7185163, 46.2837888 ], + [ 7.7186462, 46.2838117 ], + [ 7.7188326, 46.2838063 ], + [ 7.7189549, 46.2837728 ], + [ 7.7191171, 46.2837676 ], + [ 7.7192875, 46.2837905 ], + [ 7.7195153, 46.2837797 ], + [ 7.7198323, 46.283769 ], + [ 7.7200033, 46.2837525 ], + [ 7.720133, 46.2837359 ], + [ 7.7202876, 46.2836799 ], + [ 7.7204754, 46.2836071 ], + [ 7.7207597, 46.2835401 ], + [ 7.7208737, 46.283484 ], + [ 7.7209389999999996, 46.2834109 ], + [ 7.721005, 46.2833096 ], + [ 7.721087, 46.283169 ], + [ 7.7212008, 46.2830679 ], + [ 7.7212906, 46.2830173 ], + [ 7.7214943, 46.2829051 ], + [ 7.7216982, 46.2828041 ], + [ 7.7218937, 46.2826581 ], + [ 7.7222861, 46.2823378 ], + [ 7.7226852, 46.2820458 ], + [ 7.7232163, 46.2815682 ], + [ 7.7233382, 46.2814782 ], + [ 7.7233715, 46.2813319 ], + [ 7.7234624, 46.2811744 ], + [ 7.7235444, 46.2810506 ], + [ 7.7236501, 46.2809551 ], + [ 7.7238215, 46.280848399999996 ], + [ 7.7240491, 46.2808038 ], + [ 7.7242687, 46.2807705 ], + [ 7.7244309, 46.2807652 ], + [ 7.7246506, 46.2807544 ], + [ 7.7248783, 46.2807323 ], + [ 7.7251545, 46.2806709 ], + [ 7.7252924, 46.2806881 ], + [ 7.7254548, 46.2807334 ], + [ 7.7256097, 46.2807281 ], + [ 7.7257069, 46.2807001 ], + [ 7.7258371, 46.2806384 ], + [ 7.7259348, 46.2805654 ], + [ 7.7260088, 46.2804417 ], + [ 7.7260988, 46.2802898 ], + [ 7.7261646, 46.2801603 ], + [ 7.7263364, 46.2799861 ], + [ 7.7264832, 46.2798399 ], + [ 7.7266058, 46.2797107 ], + [ 7.7267697, 46.2795757 ], + [ 7.7269981, 46.2793791 ], + [ 7.7272675, 46.2791037 ], + [ 7.7274636999999995, 46.2789351 ], + [ 7.7276673, 46.2788116 ], + [ 7.7278222, 46.2786598 ], + [ 7.7279691, 46.2785249 ], + [ 7.7281651, 46.2783338 ], + [ 7.7284356, 46.277957 ], + [ 7.7285089, 46.2778613 ], + [ 7.7286314, 46.2777265 ], + [ 7.7287621, 46.2776084 ], + [ 7.7288198999999995, 46.2774903 ], + [ 7.7289019, 46.277355299999996 ], + [ 7.7290005, 46.277158299999996 ], + [ 7.7290824, 46.2770007 ], + [ 7.7292461, 46.2768209 ], + [ 7.7293929, 46.2766916 ], + [ 7.7294669, 46.2765678 ], + [ 7.7295488, 46.2764272 ], + [ 7.7296145, 46.2762752 ], + [ 7.7297208, 46.2761347 ], + [ 7.7298434, 46.276011 ], + [ 7.7299741, 46.2758873 ], + [ 7.7301373, 46.2757862 ], + [ 7.7303492, 46.275674 ], + [ 7.730561, 46.2755618 ], + [ 7.730732, 46.2754044 ], + [ 7.7308795, 46.2752357 ], + [ 7.7310101, 46.2750895 ], + [ 7.7311407, 46.274949 ], + [ 7.7312388, 46.2747915 ], + [ 7.7313375, 46.2746114 ], + [ 7.7313957, 46.2744257 ], + [ 7.7314943, 46.2742005 ], + [ 7.7315842, 46.2740374 ], + [ 7.7317234, 46.2738349 ], + [ 7.7320751, 46.2733512 ], + [ 7.7322063, 46.2731825 ], + [ 7.732321, 46.273087 ], + [ 7.7323622, 46.2730607 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "JBG0035", + "country" : "CHE", + "name" : [ + { + "text" : "Eidgenössisches Jagdbanngebiet Turtmanntal", + "lang" : "de-CH" + }, + { + "text" : "District franc fédéral Turtmanntal", + "lang" : "fr-CH" + }, + { + "text" : "Bandita federale di caccia Turtmanntal", + "lang" : "it-CH" + }, + { + "text" : "Federal Game Reserve Turtmanntal", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6881736, 47.37278 ], + [ 7.6876882, 47.3727995 ], + [ 7.6876787, 47.372932 ], + [ 7.6879424, 47.3729792 ], + [ 7.6885319, 47.3730458 ], + [ 7.6892648999999995, 47.3731292 ], + [ 7.6897432, 47.3731896 ], + [ 7.6904739, 47.3732786 ], + [ 7.6910668, 47.3733453 ], + [ 7.6917339, 47.3734028 ], + [ 7.6923816, 47.3734549 ], + [ 7.6926609, 47.3734846 ], + [ 7.6931728, 47.3735249 ], + [ 7.693511, 47.3735665 ], + [ 7.6937137, 47.3735927 ], + [ 7.6939159, 47.3736407 ], + [ 7.6940847, 47.3737042 ], + [ 7.694279, 47.3737962 ], + [ 7.6944508, 47.3738963 ], + [ 7.6946598, 47.3740232 ], + [ 7.6948699, 47.3741411 ], + [ 7.6950078, 47.3741781 ], + [ 7.6950538, 47.374222 ], + [ 7.6950927, 47.3742468 ], + [ 7.6951326, 47.3742709 ], + [ 7.6951736, 47.3742942 ], + [ 7.6954358, 47.3743866 ], + [ 7.6956672, 47.3744746 ], + [ 7.6959057, 47.3745595 ], + [ 7.6961218, 47.3746353 ], + [ 7.6963650999999995, 47.3747205 ], + [ 7.6966019, 47.3747894 ], + [ 7.6968063, 47.3748328 ], + [ 7.6970713, 47.3748379 ], + [ 7.6972816, 47.3748406 ], + [ 7.6974002, 47.3748329 ], + [ 7.6974432, 47.3748333 ], + [ 7.6975238, 47.3748344 ], + [ 7.6974737, 47.3750343 ], + [ 7.6974349, 47.3751892 ], + [ 7.6973755, 47.3754703 ], + [ 7.6973115, 47.3757141 ], + [ 7.6972532000000005, 47.3760332 ], + [ 7.6972218, 47.3762056 ], + [ 7.6972021, 47.3765254 ], + [ 7.6972213, 47.376745 ], + [ 7.6972695, 47.3769917 ], + [ 7.6973281, 47.3771716 ], + [ 7.6974364, 47.3773907 ], + [ 7.697562, 47.3776039 ], + [ 7.6976765, 47.3778122 ], + [ 7.6977381, 47.3779798 ], + [ 7.6978043, 47.3782317 ], + [ 7.6978054, 47.3782373 ], + [ 7.6978071, 47.3782461 ], + [ 7.6978471, 47.3784513 ], + [ 7.6978997, 47.3787688 ], + [ 7.697918, 47.3790949 ], + [ 7.6979028, 47.3793532 ], + [ 7.6978813, 47.3795452 ], + [ 7.6978645, 47.3797542 ], + [ 7.6978293, 47.3799802 ], + [ 7.6977765, 47.3802144 ], + [ 7.6977465, 47.3804374 ], + [ 7.6977458, 47.3805898 ], + [ 7.6977608, 47.3807217 ], + [ 7.6978075, 47.3809179 ], + [ 7.6978601, 47.3810496 ], + [ 7.6978648, 47.3810618 ], + [ 7.6979717, 47.3813269 ], + [ 7.6980392, 47.3815026 ], + [ 7.6980906000000004, 47.3817517 ], + [ 7.6981003999999995, 47.3819473 ], + [ 7.6980819, 47.3821102 ], + [ 7.6980395, 47.3823079 ], + [ 7.6979838, 47.3825038 ], + [ 7.6979246, 47.3827018 ], + [ 7.6978694999999995, 47.3828922 ], + [ 7.6978394, 47.3830302 ], + [ 7.6979039, 47.3830278 ], + [ 7.6980068, 47.3830535 ], + [ 7.6981225, 47.3830519 ], + [ 7.6984265, 47.3830467 ], + [ 7.6986316, 47.3831051 ], + [ 7.6985953, 47.3832061 ], + [ 7.6985353, 47.3832795 ], + [ 7.6983062, 47.383556 ], + [ 7.6981906, 47.3836837 ], + [ 7.6981695, 47.3837204 ], + [ 7.6981531, 47.3837582 ], + [ 7.6981415, 47.3837968 ], + [ 7.6981351, 47.3838324 ], + [ 7.6981328, 47.3838683 ], + [ 7.6981345999999995, 47.3839041 ], + [ 7.6981405, 47.3839398 ], + [ 7.6981622, 47.3839987 ], + [ 7.6981879, 47.3840568 ], + [ 7.6982175, 47.384114 ], + [ 7.6982520999999995, 47.3841821 ], + [ 7.6982774, 47.3842522 ], + [ 7.6982929, 47.3843235 ], + [ 7.6983037, 47.3843925 ], + [ 7.6983069, 47.3844619 ], + [ 7.6983026, 47.3845312 ], + [ 7.6982676, 47.3850471 ], + [ 7.6982336, 47.3853978 ], + [ 7.6981821, 47.3855958 ], + [ 7.6981651, 47.3856887 ], + [ 7.6980981, 47.3857152 ], + [ 7.6980395, 47.3861385 ], + [ 7.697999, 47.386407 ], + [ 7.6977195, 47.3871391 ], + [ 7.697554, 47.3874294 ], + [ 7.6975142, 47.3875693 ], + [ 7.6975403, 47.3877334 ], + [ 7.6976607, 47.3879968 ], + [ 7.6978593, 47.3882415 ], + [ 7.6979284, 47.3883688 ], + [ 7.698021, 47.3886964 ], + [ 7.6981183, 47.3886803 ], + [ 7.6981603, 47.388674 ], + [ 7.6982755, 47.3886568 ], + [ 7.6982541, 47.3885359 ], + [ 7.6981933, 47.3884121 ], + [ 7.6982274, 47.3883337 ], + [ 7.6981421, 47.3881499 ], + [ 7.6980483, 47.387949 ], + [ 7.6979683, 47.3877533 ], + [ 7.6978463, 47.3875294 ], + [ 7.6979106999999996, 47.387384 ], + [ 7.6979892, 47.3872543 ], + [ 7.6981513, 47.3871276 ], + [ 7.6982766, 47.3870674 ], + [ 7.6984343, 47.3869912 ], + [ 7.6985177, 47.3869216 ], + [ 7.6985824, 47.3868581 ], + [ 7.6985699, 47.3868067 ], + [ 7.6985597, 47.3867181 ], + [ 7.698452, 47.3867004 ], + [ 7.698396, 47.3866912 ], + [ 7.6983765, 47.3866595 ], + [ 7.6983391, 47.3866113 ], + [ 7.6982646, 47.3864114 ], + [ 7.6982568, 47.3863146 ], + [ 7.6982608, 47.3861985 ], + [ 7.6983149, 47.3861221 ], + [ 7.698353, 47.3860335 ], + [ 7.69835, 47.3859638 ], + [ 7.6983727, 47.3859504 ], + [ 7.698347, 47.3859272 ], + [ 7.6984785, 47.385848 ], + [ 7.6984898, 47.3858393 ], + [ 7.6984928, 47.3858255 ], + [ 7.698551, 47.3856513 ], + [ 7.6986273, 47.3854661 ], + [ 7.6987489, 47.3850517 ], + [ 7.6988059, 47.384631 ], + [ 7.6988095, 47.3845651 ], + [ 7.6988002, 47.3843641 ], + [ 7.6987601, 47.3841648 ], + [ 7.6986894, 47.3839695 ], + [ 7.6986837999999995, 47.3839536 ], + [ 7.6986704, 47.3839014 ], + [ 7.6986652, 47.3838486 ], + [ 7.6986681, 47.3837957 ], + [ 7.6986792, 47.3837432 ], + [ 7.6986982, 47.3836919 ], + [ 7.6987251, 47.3836421 ], + [ 7.6987594, 47.3835946 ], + [ 7.6988009, 47.3835498 ], + [ 7.698849, 47.3835082 ], + [ 7.6989028, 47.3834701 ], + [ 7.6989276, 47.3834539 ], + [ 7.6989662, 47.3834233 ], + [ 7.6990001, 47.3833899 ], + [ 7.6990285, 47.3833544 ], + [ 7.6990514999999995, 47.3833171 ], + [ 7.6990684, 47.3832783 ], + [ 7.6990793, 47.3832385 ], + [ 7.6991081, 47.3830737 ], + [ 7.6991154, 47.3828647 ], + [ 7.6990907, 47.3826562 ], + [ 7.6989665, 47.3824422 ], + [ 7.6989436, 47.3823066 ], + [ 7.6989222, 47.3822057 ], + [ 7.6988416, 47.3819778 ], + [ 7.6987616, 47.3817779 ], + [ 7.6986823, 47.3815219 ], + [ 7.6986466, 47.3813162 ], + [ 7.6986394, 47.3812226 ], + [ 7.6986376, 47.3810634 ], + [ 7.6986677, 47.380984 ], + [ 7.698701, 47.3809216 ], + [ 7.6987228, 47.3809059 ], + [ 7.6987851, 47.3808728 ], + [ 7.6988584, 47.3809749 ], + [ 7.6989614, 47.3810681 ], + [ 7.6991175, 47.3811504 ], + [ 7.6992644, 47.3812076 ], + [ 7.6995272, 47.3812992 ], + [ 7.6997474, 47.381362 ], + [ 7.699944, 47.3814102 ], + [ 7.7001878999999995, 47.3814729 ], + [ 7.7004734, 47.3815555 ], + [ 7.7006185, 47.3816136 ], + [ 7.7008019999999995, 47.3817073 ], + [ 7.7009587, 47.3818008 ], + [ 7.7011476, 47.3818913 ], + [ 7.701277, 47.3819398 ], + [ 7.7013847, 47.3819705 ], + [ 7.7015557, 47.3820064 ], + [ 7.7017572, 47.3820391 ], + [ 7.7019411, 47.3820487 ], + [ 7.702132, 47.3820562 ], + [ 7.7023206, 47.3820682 ], + [ 7.7026658, 47.3821244 ], + [ 7.7029463, 47.3822067 ], + [ 7.703262, 47.3823063 ], + [ 7.703421, 47.382345 ], + [ 7.7038608, 47.3824446 ], + [ 7.7040615, 47.3824716 ], + [ 7.7042247, 47.382468 ], + [ 7.7043929, 47.3824353 ], + [ 7.7045911, 47.3823738 ], + [ 7.7047740000000005, 47.382165 ], + [ 7.7047563, 47.3820099 ], + [ 7.7047295, 47.3818787 ], + [ 7.7046605, 47.381686 ], + [ 7.7045697, 47.3815406 ], + [ 7.7044628, 47.3814119 ], + [ 7.7043554, 47.3812804 ], + [ 7.704335, 47.3812719 ], + [ 7.704279, 47.3812429 ], + [ 7.7042212, 47.3812157 ], + [ 7.7041616, 47.3811902 ], + [ 7.7041217, 47.3811746 ], + [ 7.704081, 47.3811596 ], + [ 7.7040398, 47.3811455 ], + [ 7.7037544, 47.3810393 ], + [ 7.7036895, 47.3810141 ], + [ 7.7036282, 47.380985 ], + [ 7.7035709, 47.3809523 ], + [ 7.7035181, 47.3809163 ], + [ 7.7034465999999995, 47.3808837 ], + [ 7.7032047, 47.3808189 ], + [ 7.7029208, 47.3807364 ], + [ 7.7026858, 47.3806696 ], + [ 7.7024255, 47.3805713 ], + [ 7.7022232, 47.3804802 ], + [ 7.702125, 47.3804231 ], + [ 7.7019625, 47.3803225 ], + [ 7.7017143, 47.3801711 ], + [ 7.7014278, 47.3800009 ], + [ 7.7010721, 47.3797862 ], + [ 7.7009038, 47.3797032 ], + [ 7.7005866, 47.3794949 ], + [ 7.7002371, 47.3793164 ], + [ 7.6999231, 47.3792168 ], + [ 7.6997467, 47.3791852 ], + [ 7.6994441, 47.3791702 ], + [ 7.6991847, 47.3791931 ], + [ 7.6989859, 47.3792143 ], + [ 7.6989099, 47.3792212 ], + [ 7.6988430999999995, 47.3792273 ], + [ 7.6988383, 47.3792128 ], + [ 7.6988326, 47.3791834 ], + [ 7.6988309, 47.3791538 ], + [ 7.6988277, 47.3791199 ], + [ 7.6988198, 47.3790864 ], + [ 7.6988073, 47.3790535 ], + [ 7.6988145, 47.3789071 ], + [ 7.6988129, 47.3787938 ], + [ 7.6988161, 47.378601 ], + [ 7.6988167, 47.378416 ], + [ 7.6987898, 47.3782073 ], + [ 7.6986931, 47.3778765 ], + [ 7.6986218, 47.3776469 ], + [ 7.6985766, 47.3775628 ], + [ 7.6984587, 47.3773732 ], + [ 7.6983755, 47.3772675 ], + [ 7.6981583, 47.3770282 ], + [ 7.6980734, 47.3769039 ], + [ 7.6980731, 47.3768255 ], + [ 7.6980846, 47.3767307 ], + [ 7.69817, 47.3767659 ], + [ 7.698314, 47.3768185 ], + [ 7.6984851, 47.3768701 ], + [ 7.698844, 47.3769414 ], + [ 7.6991516, 47.3770037 ], + [ 7.6995109, 47.3770705 ], + [ 7.6998834, 47.3771559 ], + [ 7.7000744, 47.3771938 ], + [ 7.7001772, 47.3772075 ], + [ 7.7004598, 47.3772529 ], + [ 7.7008723, 47.3773569 ], + [ 7.7012554, 47.3774384 ], + [ 7.7013356, 47.3774589 ], + [ 7.7015568, 47.377497 ], + [ 7.7016683, 47.3775066 ], + [ 7.701815, 47.377502 ], + [ 7.7019479, 47.3774835 ], + [ 7.7020247, 47.3774567 ], + [ 7.7020682, 47.377425 ], + [ 7.7020929, 47.3773824 ], + [ 7.7020715, 47.3773444 ], + [ 7.7020253, 47.3773053 ], + [ 7.7019421999999995, 47.3772757 ], + [ 7.7018092, 47.3772129 ], + [ 7.7017191, 47.3771709 ], + [ 7.7016301, 47.377128 ], + [ 7.7015421, 47.377083999999996 ], + [ 7.7015266, 47.3770783 ], + [ 7.7015106, 47.3770732 ], + [ 7.7014892, 47.3770676 ], + [ 7.7014449, 47.3770598 ], + [ 7.7013998, 47.3770546 ], + [ 7.7013541, 47.377052 ], + [ 7.7013084, 47.3770521 ], + [ 7.7012095, 47.3770571 ], + [ 7.7011837, 47.3770571 ], + [ 7.7011579, 47.3770556 ], + [ 7.7011325, 47.3770524 ], + [ 7.7011075, 47.3770477 ], + [ 7.7010833, 47.3770415 ], + [ 7.7010601, 47.3770338 ], + [ 7.7006771, 47.3768779 ], + [ 7.7005859, 47.3768138 ], + [ 7.7005590999999995, 47.3767945 ], + [ 7.7005301, 47.3767767 ], + [ 7.7004992, 47.3767605 ], + [ 7.7004666, 47.3767459 ], + [ 7.7004486, 47.3767389 ], + [ 7.7004351, 47.3767341 ], + [ 7.7001316, 47.3766293 ], + [ 7.7000697, 47.3766144 ], + [ 7.700007, 47.3766009 ], + [ 7.6999437, 47.3765887 ], + [ 7.6998464, 47.3765668 ], + [ 7.6997494, 47.3765443 ], + [ 7.6996528, 47.3765211 ], + [ 7.6993756, 47.3764417 ], + [ 7.6993191, 47.3764256 ], + [ 7.6992481999999995, 47.3764018 ], + [ 7.6991807, 47.376374 ], + [ 7.6991172, 47.3763421 ], + [ 7.699058, 47.3763066 ], + [ 7.6989553, 47.3762205 ], + [ 7.6988826, 47.3761558 ], + [ 7.6988181, 47.3760872 ], + [ 7.6987621, 47.3760152 ], + [ 7.6987366999999995, 47.3759672 ], + [ 7.6987165, 47.3759181 ], + [ 7.6987014, 47.3758681 ], + [ 7.698687, 47.375809 ], + [ 7.6986795, 47.3757492 ], + [ 7.6986788, 47.3756892 ], + [ 7.6986812, 47.3756539 ], + [ 7.6986873, 47.3756187 ], + [ 7.6986973, 47.375584 ], + [ 7.6987552, 47.3754832 ], + [ 7.6987606, 47.3754742 ], + [ 7.6987649000000005, 47.3754649 ], + [ 7.698768, 47.3754553 ], + [ 7.6987698, 47.3754457 ], + [ 7.6987702, 47.375442 ], + [ 7.6987703, 47.3754323 ], + [ 7.6987692, 47.3754227 ], + [ 7.6987668, 47.3754131 ], + [ 7.6987632999999995, 47.3754037 ], + [ 7.6987586, 47.3753946 ], + [ 7.6987351, 47.3753645 ], + [ 7.698709, 47.3753355 ], + [ 7.6986805, 47.3753075 ], + [ 7.6985917, 47.3752316 ], + [ 7.6984553, 47.3750984 ], + [ 7.6982912, 47.3749344 ], + [ 7.6982403999999995, 47.3748803 ], + [ 7.6981934, 47.3748247 ], + [ 7.6981503, 47.3747677 ], + [ 7.6981236, 47.3747293 ], + [ 7.6981003999999995, 47.3746898 ], + [ 7.6980808, 47.3746494 ], + [ 7.6980558, 47.3745993 ], + [ 7.6980342, 47.3745484 ], + [ 7.6982159, 47.3744757 ], + [ 7.6984121, 47.3743595 ], + [ 7.6985192, 47.3742497 ], + [ 7.6986295, 47.3741453 ], + [ 7.6987615, 47.3740506 ], + [ 7.6988603, 47.3739843 ], + [ 7.6987166, 47.3738803 ], + [ 7.6987742, 47.3734956 ], + [ 7.6997137, 47.3734665 ], + [ 7.7001761, 47.3733758 ], + [ 7.7005524, 47.3734996 ], + [ 7.7004301, 47.3738191 ], + [ 7.7005733, 47.3740161 ], + [ 7.7013524, 47.3737216 ], + [ 7.7015376, 47.3739673 ], + [ 7.7016405, 47.3743872 ], + [ 7.7018559, 47.3745248 ], + [ 7.7018628, 47.374514 ], + [ 7.7019738, 47.3744682 ], + [ 7.701985, 47.3744604 ], + [ 7.701997, 47.3744532 ], + [ 7.70201, 47.3744467 ], + [ 7.7020237, 47.374441 ], + [ 7.702038, 47.3744361 ], + [ 7.7020529, 47.3744321 ], + [ 7.7020661, 47.3744293 ], + [ 7.7020839, 47.3744266 ], + [ 7.7020999, 47.3744252 ], + [ 7.7021159, 47.3744247 ], + [ 7.7021318999999995, 47.3744251 ], + [ 7.7021479, 47.3744264 ], + [ 7.7022345, 47.374438 ], + [ 7.7023204, 47.3744519 ], + [ 7.7024053, 47.3744681 ], + [ 7.7025309, 47.3744904 ], + [ 7.702657, 47.3745114 ], + [ 7.7027835, 47.3745311 ], + [ 7.7028227000000005, 47.3745383 ], + [ 7.7028607000000004, 47.3745479 ], + [ 7.7028972, 47.3745598 ], + [ 7.7029321, 47.3745739 ], + [ 7.7029649, 47.3745901 ], + [ 7.7029954, 47.3746083 ], + [ 7.7030233, 47.3746282 ], + [ 7.7031306, 47.3747153 ], + [ 7.7033394, 47.3748964 ], + [ 7.7036186, 47.3751436 ], + [ 7.7038467, 47.375347 ], + [ 7.7039171, 47.3754044 ], + [ 7.7039947, 47.3754573 ], + [ 7.7040612, 47.3755359 ], + [ 7.7042665, 47.3756943 ], + [ 7.7043516, 47.3757562 ], + [ 7.7044352, 47.3758191 ], + [ 7.7045173, 47.3758829 ], + [ 7.7045517, 47.3759066 ], + [ 7.7045876, 47.3759292 ], + [ 7.7045728, 47.3759528 ], + [ 7.7046436, 47.3759919 ], + [ 7.7047194, 47.3760265 ], + [ 7.7047996, 47.3760562 ], + [ 7.704822, 47.376093 ], + [ 7.7056056, 47.3763182 ], + [ 7.7059381, 47.3764335 ], + [ 7.7065402, 47.3765705 ], + [ 7.7070071, 47.3766569 ], + [ 7.7074919, 47.3767396 ], + [ 7.7075631, 47.3772966 ], + [ 7.707567, 47.3773329 ], + [ 7.7074464, 47.3773412 ], + [ 7.7073484, 47.3773479 ], + [ 7.7072503, 47.3773534 ], + [ 7.707152, 47.3773575 ], + [ 7.7071149, 47.3773581 ], + [ 7.7070778, 47.3773575 ], + [ 7.7070408, 47.3773557 ], + [ 7.7069582, 47.3773505 ], + [ 7.7068755, 47.3773462 ], + [ 7.7067927, 47.3773426 ], + [ 7.7067702, 47.3773423 ], + [ 7.7067476, 47.3773431 ], + [ 7.7067252, 47.3773451 ], + [ 7.7066285, 47.3773559 ], + [ 7.7065315, 47.3773658 ], + [ 7.7064344, 47.3773748 ], + [ 7.7064065, 47.3773781 ], + [ 7.7063792, 47.3773829 ], + [ 7.7063524999999995, 47.3773891 ], + [ 7.7062734, 47.3774119 ], + [ 7.7061962, 47.3774373 ], + [ 7.7061208, 47.3774652 ], + [ 7.7060812, 47.3774794 ], + [ 7.7060399, 47.3774914 ], + [ 7.7059974, 47.3775011 ], + [ 7.7059539, 47.3775085 ], + [ 7.7059096, 47.3775136 ], + [ 7.7057915999999995, 47.3775237 ], + [ 7.7057467, 47.3775264 ], + [ 7.7057017, 47.3775271 ], + [ 7.7056567, 47.3775255 ], + [ 7.7055281, 47.3775225 ], + [ 7.7053996, 47.3775281 ], + [ 7.7052727, 47.3775425 ], + [ 7.705252, 47.377545 ], + [ 7.7052311, 47.3775463 ], + [ 7.7052101, 47.3775464 ], + [ 7.7051891999999995, 47.3775454 ], + [ 7.7051684, 47.3775432 ], + [ 7.7045194, 47.3774553 ], + [ 7.7044504, 47.377447599999996 ], + [ 7.7043809, 47.3774434 ], + [ 7.704311, 47.3774426 ], + [ 7.7039171, 47.3774474 ], + [ 7.7038025, 47.3774479 ], + [ 7.7036879, 47.3774465 ], + [ 7.7035734, 47.3774431 ], + [ 7.7035407, 47.3774565 ], + [ 7.7032843, 47.377482 ], + [ 7.703096, 47.3775801 ], + [ 7.7029099, 47.3776953 ], + [ 7.7028871, 47.3777379 ], + [ 7.7028598, 47.3779528 ], + [ 7.7028498, 47.3780328 ], + [ 7.7028709, 47.3781334 ], + [ 7.7028929, 47.378187 ], + [ 7.7029151, 47.3782405 ], + [ 7.7029376, 47.378294 ], + [ 7.7029505, 47.3783246 ], + [ 7.702982, 47.3784065 ], + [ 7.7030102, 47.3784851 ], + [ 7.7030367, 47.378564 ], + [ 7.7030497, 47.3786032 ], + [ 7.7031033, 47.3786568 ], + [ 7.7033285, 47.3788444 ], + [ 7.703591, 47.3790565 ], + [ 7.703855, 47.3792551 ], + [ 7.704179, 47.3794552 ], + [ 7.7045009, 47.3796249 ], + [ 7.7047967, 47.3797596 ], + [ 7.7050672, 47.3798846 ], + [ 7.7053978, 47.3800066 ], + [ 7.7057500999999995, 47.3801227 ], + [ 7.7058623, 47.3795685 ], + [ 7.7059716, 47.3790771 ], + [ 7.7072227, 47.37912 ], + [ 7.7077445, 47.3790672 ], + [ 7.7085874, 47.3787881 ], + [ 7.7090331, 47.3787832 ], + [ 7.7100132, 47.3789953 ], + [ 7.7112359999999995, 47.3788509 ], + [ 7.7116606, 47.3788188 ], + [ 7.7122488, 47.378841 ], + [ 7.7132194, 47.378853 ], + [ 7.7138666, 47.3782344 ], + [ 7.7141818, 47.3777269 ], + [ 7.714249, 47.3776631 ], + [ 7.7150769, 47.3775471 ], + [ 7.715635, 47.3774974 ], + [ 7.7160937, 47.3773961 ], + [ 7.7164428, 47.3772696 ], + [ 7.7167918, 47.377115 ], + [ 7.7171613, 47.3769604 ], + [ 7.7174898, 47.3768268 ], + [ 7.7177461, 47.3766925 ], + [ 7.7175244, 47.3766231 ], + [ 7.7169215, 47.3765032 ], + [ 7.7161092, 47.3764199 ], + [ 7.7154469, 47.3762985 ], + [ 7.714535, 47.3757701 ], + [ 7.7144837, 47.3757745 ], + [ 7.714417, 47.3757816 ], + [ 7.7143364, 47.3757919 ], + [ 7.7142537, 47.3758078 ], + [ 7.7141769, 47.3758282 ], + [ 7.7139775, 47.375888 ], + [ 7.7136738, 47.3760036 ], + [ 7.7133639, 47.3761189 ], + [ 7.7128544, 47.3763438 ], + [ 7.7125302, 47.3764897 ], + [ 7.7112223, 47.3760369 ], + [ 7.7110216, 47.3759016 ], + [ 7.7111296, 47.3755943 ], + [ 7.7111906, 47.3751687 ], + [ 7.7104308, 47.3752717 ], + [ 7.7098455999999995, 47.3750313 ], + [ 7.7102631, 47.3742983 ], + [ 7.7102445, 47.3726219 ], + [ 7.709802, 47.3723274 ], + [ 7.7095196, 47.3721911 ], + [ 7.7091677, 47.3721324 ], + [ 7.7090876, 47.3718598 ], + [ 7.7090326000000005, 47.3715098 ], + [ 7.7085538, 47.3715979 ], + [ 7.7080405, 47.3716388 ], + [ 7.7075583, 47.3717209 ], + [ 7.7066392, 47.3717678 ], + [ 7.706104, 47.3718865 ], + [ 7.7052856, 47.3719511 ], + [ 7.7047381999999995, 47.3720543 ], + [ 7.7040194, 47.3721417 ], + [ 7.7029267, 47.3723459 ], + [ 7.7019571, 47.3724496 ], + [ 7.7011647, 47.3723895 ], + [ 7.7003643, 47.3723039 ], + [ 7.6998376, 47.3722596 ], + [ 7.6989227, 47.3721787 ], + [ 7.6964529, 47.3719624 ], + [ 7.6942547999999995, 47.3717719 ], + [ 7.6920085, 47.3715718 ], + [ 7.6905122, 47.3714408 ], + [ 7.6886398, 47.3712759 ], + [ 7.6890347, 47.3713454 ], + [ 7.6900696, 47.3714835 ], + [ 7.6908369, 47.3715901 ], + [ 7.6920306, 47.3717088 ], + [ 7.6921029, 47.3722307 ], + [ 7.6921844, 47.3728013 ], + [ 7.692255, 47.3732358 ], + [ 7.6918388, 47.3732038 ], + [ 7.6914482, 47.3732007 ], + [ 7.6907094, 47.3731262 ], + [ 7.6897293, 47.3730247 ], + [ 7.6892598, 47.3728999 ], + [ 7.6885837, 47.372804 ], + [ 7.6881736, 47.37278 ] + ], + [ + [ 7.698751, 47.372547 ], + [ 7.698933, 47.3726969 ], + [ 7.6987509, 47.3728506 ], + [ 7.6984685, 47.3728169 ], + [ 7.6985272, 47.3725994 ], + [ 7.698751, 47.372547 ] + ], + [ + [ 7.7006559, 47.3725887 ], + [ 7.7006803999999995, 47.3727358 ], + [ 7.7003651, 47.3727528 ], + [ 7.7003758, 47.3726094 ], + [ 7.7006559, 47.3725887 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns092", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Wasserfallen", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Wasserfallen", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Wasserfallen", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Wasserfallen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7641383, 47.368193 ], + [ 7.7646545, 47.3680966 ], + [ 7.7651144, 47.3680115 ], + [ 7.7656677, 47.3679051 ], + [ 7.7662685, 47.3675211 ], + [ 7.7664698, 47.3673925 ], + [ 7.7669584, 47.3672314 ], + [ 7.7675435, 47.3669148 ], + [ 7.767929, 47.3663688 ], + [ 7.768397, 47.3659132 ], + [ 7.7679453, 47.3655132 ], + [ 7.7675703, 47.3651319 ], + [ 7.7669882, 47.3647224 ], + [ 7.7666918, 47.3644192 ], + [ 7.7666652, 47.3643657 ], + [ 7.7666276, 47.3642077 ], + [ 7.766434, 47.3639096 ], + [ 7.7663706, 47.3636563 ], + [ 7.7662835, 47.3634708 ], + [ 7.7662915, 47.3634511 ], + [ 7.7662227, 47.3631065 ], + [ 7.7662865, 47.3630681 ], + [ 7.7664241, 47.3630317 ], + [ 7.7665278, 47.3630622 ], + [ 7.7666062, 47.3630734 ], + [ 7.7666612, 47.3631823 ], + [ 7.7667564, 47.3633194 ], + [ 7.7669502999999995, 47.3633742 ], + [ 7.7671814, 47.3633948 ], + [ 7.7674076, 47.3633469 ], + [ 7.7676245, 47.3632714 ], + [ 7.7677664, 47.3632991 ], + [ 7.7679194, 47.3632298 ], + [ 7.7680612, 47.3632321 ], + [ 7.7681366, 47.363179099999996 ], + [ 7.7679968, 47.3630164 ], + [ 7.7681346, 47.3629118 ], + [ 7.7681823, 47.3628009 ], + [ 7.7683298, 47.3627729 ], + [ 7.768471, 47.3627291 ], + [ 7.7689346, 47.362763 ], + [ 7.769109, 47.3627359 ], + [ 7.7693426, 47.3626455 ], + [ 7.7695279, 47.3624396 ], + [ 7.7695857, 47.362285 ], + [ 7.7695966, 47.3622325 ], + [ 7.769503, 47.3620149 ], + [ 7.7694176, 47.3619563 ], + [ 7.7692393, 47.3619419 ], + [ 7.7691999, 47.3618536 ], + [ 7.7694101, 47.3616203 ], + [ 7.7694707, 47.3615635 ], + [ 7.7697456, 47.3615778 ], + [ 7.7699342, 47.3615632 ], + [ 7.7700255, 47.3615649 ], + [ 7.7701213, 47.3615656 ], + [ 7.770336, 47.3615401 ], + [ 7.7703731, 47.3614994 ], + [ 7.7703417, 47.3614121 ], + [ 7.7702756, 47.3613956 ], + [ 7.7702524, 47.3613602 ], + [ 7.7701883, 47.3614074 ], + [ 7.7701041, 47.3613774 ], + [ 7.7700175, 47.3613668 ], + [ 7.7700952, 47.3613095 ], + [ 7.7700248, 47.3611956 ], + [ 7.7701189, 47.3611919 ], + [ 7.7703428, 47.3611342 ], + [ 7.7704534, 47.36103 ], + [ 7.7704982, 47.3609047 ], + [ 7.7707508, 47.3607986 ], + [ 7.7715266, 47.360625 ], + [ 7.7717218, 47.3606677 ], + [ 7.7718782, 47.360761 ], + [ 7.7719909, 47.3608113 ], + [ 7.7720885, 47.3610354 ], + [ 7.7723235, 47.361147 ], + [ 7.7723599, 47.3612308 ], + [ 7.7725116, 47.3613638 ], + [ 7.7726607, 47.3613253 ], + [ 7.7726594, 47.3612054 ], + [ 7.7726126, 47.3610272 ], + [ 7.7725273999999995, 47.3609179 ], + [ 7.7725463, 47.36088 ], + [ 7.7724937, 47.3608165 ], + [ 7.7725326, 47.360733 ], + [ 7.7726288, 47.3606549 ], + [ 7.7726646, 47.3606117 ], + [ 7.7726621, 47.3606023 ], + [ 7.7726704, 47.3605534 ], + [ 7.7727365, 47.3604458 ], + [ 7.772791, 47.3603158 ], + [ 7.7727737, 47.3602454 ], + [ 7.7727453, 47.360182 ], + [ 7.7727246999999995, 47.3601283 ], + [ 7.7726342, 47.3601287 ], + [ 7.7725744, 47.3601106 ], + [ 7.7724249, 47.3599998 ], + [ 7.7722669, 47.3598337 ], + [ 7.7721808, 47.3596618 ], + [ 7.7715393, 47.3594931 ], + [ 7.7708895, 47.3593424 ], + [ 7.7703107, 47.359492 ], + [ 7.7697258, 47.3596562 ], + [ 7.7691749, 47.3596654 ], + [ 7.7686344, 47.3596794 ], + [ 7.7685287, 47.3597077 ], + [ 7.7684258, 47.3597114 ], + [ 7.7681869, 47.3597391 ], + [ 7.7675708, 47.359858 ], + [ 7.7672827, 47.3599273 ], + [ 7.767075, 47.3599684 ], + [ 7.7663682, 47.3601335 ], + [ 7.7658939, 47.3602339 ], + [ 7.7656919, 47.3602876 ], + [ 7.7654943, 47.3603498 ], + [ 7.7652877, 47.3604176 ], + [ 7.765091, 47.3604894 ], + [ 7.764873, 47.3605733 ], + [ 7.7645123, 47.360723899999996 ], + [ 7.7642615, 47.3608245 ], + [ 7.7642071999999995, 47.3608486 ], + [ 7.7641561, 47.3608757 ], + [ 7.7641086999999995, 47.3609057 ], + [ 7.7640653, 47.3609384 ], + [ 7.7640262, 47.3609736 ], + [ 7.7639918, 47.3610109 ], + [ 7.763853, 47.3612027 ], + [ 7.7638381, 47.3612212 ], + [ 7.7638207999999995, 47.3612386 ], + [ 7.7638012, 47.3612549 ], + [ 7.7637796, 47.3612699 ], + [ 7.763756, 47.3612835 ], + [ 7.7637307, 47.3612955 ], + [ 7.7637038, 47.361306 ], + [ 7.7636757, 47.3613147 ], + [ 7.7635457, 47.3613393 ], + [ 7.7631867, 47.3613557 ], + [ 7.7629403, 47.3613844 ], + [ 7.7626909, 47.3613965 ], + [ 7.762441, 47.361392 ], + [ 7.7623215, 47.3613851 ], + [ 7.7622774, 47.3613839 ], + [ 7.7622333, 47.3613854 ], + [ 7.7621897, 47.3613897 ], + [ 7.7621468, 47.3613967 ], + [ 7.762105, 47.3614063 ], + [ 7.7620646, 47.3614184 ], + [ 7.7620261, 47.361433 ], + [ 7.7618487, 47.3615157 ], + [ 7.7616836, 47.3616094 ], + [ 7.7615321999999995, 47.3617132 ], + [ 7.7615025, 47.3617363 ], + [ 7.7614554, 47.3617728 ], + [ 7.7614158, 47.361874 ], + [ 7.7613364, 47.3621971 ], + [ 7.7612732, 47.3623052 ], + [ 7.7611853, 47.3624649 ], + [ 7.7610772, 47.362628 ], + [ 7.7609461, 47.3627912 ], + [ 7.760793, 47.3629479 ], + [ 7.7606024, 47.3631271 ], + [ 7.7604776, 47.3632552 ], + [ 7.7603984, 47.3635676 ], + [ 7.7603446, 47.3635445 ], + [ 7.7603245, 47.3635861 ], + [ 7.7602873, 47.363643 ], + [ 7.7602468, 47.3637127 ], + [ 7.7602252, 47.3637754 ], + [ 7.7601815, 47.3638455 ], + [ 7.7601526, 47.363887 ], + [ 7.7600972, 47.363948 ], + [ 7.7600521, 47.3639939 ], + [ 7.7599949, 47.3640392 ], + [ 7.7599535, 47.364061 ], + [ 7.7586391, 47.3645136 ], + [ 7.7580347, 47.3645036 ], + [ 7.7571236, 47.3644347 ], + [ 7.7566808, 47.3643129 ], + [ 7.7566066, 47.3644841 ], + [ 7.7569078000000005, 47.364659 ], + [ 7.7572583999999996, 47.3647199 ], + [ 7.7578892, 47.3647657 ], + [ 7.7584069, 47.3647729 ], + [ 7.7585526, 47.365034 ], + [ 7.7589034, 47.3652943 ], + [ 7.7595164, 47.3656069 ], + [ 7.759504, 47.3656757 ], + [ 7.7593278, 47.3659163 ], + [ 7.7598712, 47.366164 ], + [ 7.759993, 47.3663136 ], + [ 7.7600163, 47.3664879 ], + [ 7.7600339, 47.3666194 ], + [ 7.7600178, 47.3667069 ], + [ 7.7600033, 47.366717 ], + [ 7.759934, 47.3667197 ], + [ 7.7594656, 47.3666121 ], + [ 7.759146, 47.366591 ], + [ 7.7590656, 47.366579 ], + [ 7.7589023, 47.3665488 ], + [ 7.7588418, 47.3665688 ], + [ 7.7586708, 47.3665526 ], + [ 7.7583359, 47.3665679 ], + [ 7.7581142, 47.3665506 ], + [ 7.7580932, 47.3665485 ], + [ 7.7579928, 47.3665395 ], + [ 7.7577012, 47.3664843 ], + [ 7.7575701, 47.3663207 ], + [ 7.7574393, 47.3661509 ], + [ 7.7573170000000005, 47.3660569 ], + [ 7.7570425, 47.366112 ], + [ 7.7567736, 47.3661402 ], + [ 7.7567686, 47.366331 ], + [ 7.7569171, 47.3663938 ], + [ 7.7570864, 47.366413 ], + [ 7.7571344, 47.3665129 ], + [ 7.7572568, 47.3665801 ], + [ 7.7573053, 47.366717 ], + [ 7.7571436, 47.3667714 ], + [ 7.756633, 47.3668417 ], + [ 7.7561639, 47.3669398 ], + [ 7.7561429, 47.3670392 ], + [ 7.7562548, 47.3671072 ], + [ 7.7561612, 47.3671818 ], + [ 7.7562827, 47.3671859 ], + [ 7.7564028, 47.3671846 ], + [ 7.7566407, 47.3671763 ], + [ 7.7567638, 47.3671769 ], + [ 7.7568809, 47.3671878 ], + [ 7.7569883, 47.3672059 ], + [ 7.7571011, 47.3672301 ], + [ 7.7573001999999995, 47.3672795 ], + [ 7.7573567, 47.3672997 ], + [ 7.7573981, 47.3673215 ], + [ 7.7574817, 47.3673804 ], + [ 7.7575533, 47.3674287 ], + [ 7.7578463, 47.3676007 ], + [ 7.7580526, 47.367722 ], + [ 7.7581559, 47.3677669 ], + [ 7.7581868, 47.3677733 ], + [ 7.7582572, 47.3677969 ], + [ 7.7586088, 47.3680258 ], + [ 7.7590012999999995, 47.3680105 ], + [ 7.7593492, 47.3678923 ], + [ 7.7597698, 47.3677521 ], + [ 7.7600701999999995, 47.3676485 ], + [ 7.7605305, 47.3676921 ], + [ 7.7609457, 47.3677666 ], + [ 7.7610892, 47.3678913 ], + [ 7.7614491999999995, 47.3679328 ], + [ 7.7617484, 47.3679976 ], + [ 7.7619555, 47.3680147 ], + [ 7.7621732, 47.368072 ], + [ 7.7626335, 47.3681775 ], + [ 7.7629275, 47.3681927 ], + [ 7.7632826, 47.3681523 ], + [ 7.7637059, 47.3682742 ], + [ 7.7641383, 47.368193 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns242", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Schöntalfluh - Spittelweid", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Schöntalfluh - Spittelweid", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Schöntalfluh - Spittelweid", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Schöntalfluh - Spittelweid", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7572776999999995, 47.4360178 ], + [ 7.7575318, 47.4362049 ], + [ 7.7576391000000005, 47.4364683 ], + [ 7.7575622, 47.436604 ], + [ 7.7575592, 47.43675 ], + [ 7.7575798, 47.4369438 ], + [ 7.7575887, 47.4370868 ], + [ 7.757647, 47.4373287 ], + [ 7.7576966, 47.4375046 ], + [ 7.7577383, 47.437686 ], + [ 7.7577798, 47.437851 ], + [ 7.758107, 47.4383177 ], + [ 7.7583269999999995, 47.438504 ], + [ 7.7585958, 47.4387014 ], + [ 7.7587586, 47.4388054 ], + [ 7.7590105, 47.4388983 ], + [ 7.7591564, 47.4388924 ], + [ 7.7593019, 47.4388369 ], + [ 7.7594967, 47.4388475 ], + [ 7.7597563, 47.4388687 ], + [ 7.7597898, 47.4390447 ], + [ 7.7600978, 47.4390273 ], + [ 7.7603568, 47.4389771 ], + [ 7.7605265, 47.4389395 ], + [ 7.7604769000000005, 47.4386101 ], + [ 7.7606973, 47.4386011 ], + [ 7.7607946, 47.4385953 ], + [ 7.7608918, 47.4385881 ], + [ 7.7609888, 47.4385797 ], + [ 7.761072, 47.4385712 ], + [ 7.7611548, 47.4385608 ], + [ 7.7612369999999995, 47.4385485 ], + [ 7.7612929, 47.4385391 ], + [ 7.7613487, 47.4385295 ], + [ 7.7614045, 47.4385196 ], + [ 7.7614841, 47.4385036 ], + [ 7.7615628, 47.4384856 ], + [ 7.7616405, 47.4384658 ], + [ 7.7617215999999996, 47.4384458 ], + [ 7.7618023, 47.4384251 ], + [ 7.7618827, 47.4384038 ], + [ 7.7619976, 47.4383757 ], + [ 7.7621120999999995, 47.4383468 ], + [ 7.7622262, 47.438317 ], + [ 7.7624531999999995, 47.4382575 ], + [ 7.7625291, 47.4382373 ], + [ 7.7626045, 47.4382163 ], + [ 7.7626794, 47.4381945 ], + [ 7.7627137, 47.4381845 ], + [ 7.7627478, 47.4381743 ], + [ 7.7627818, 47.4381639 ], + [ 7.7628165, 47.4381501 ], + [ 7.7628495, 47.4381345 ], + [ 7.7628806, 47.4381172 ], + [ 7.7629095, 47.4380982 ], + [ 7.7629283000000004, 47.438084 ], + [ 7.7629453, 47.4380687 ], + [ 7.7629605, 47.4380526 ], + [ 7.7629737, 47.4380358 ], + [ 7.7629848, 47.4380183 ], + [ 7.7630022, 47.4379855 ], + [ 7.7630194, 47.4379526 ], + [ 7.7630302, 47.4379336 ], + [ 7.7630415, 47.4379148 ], + [ 7.7630532, 47.437896 ], + [ 7.7630564, 47.4378916 ], + [ 7.7630602, 47.4378874 ], + [ 7.7630644, 47.4378833 ], + [ 7.7630692, 47.4378796 ], + [ 7.7630744, 47.4378762 ], + [ 7.7630801, 47.437873 ], + [ 7.7630861, 47.4378703 ], + [ 7.7630913, 47.4378681 ], + [ 7.7630968, 47.4378662 ], + [ 7.7631025000000005, 47.4378646 ], + [ 7.7631084, 47.4378634 ], + [ 7.7631144, 47.4378626 ], + [ 7.7631205, 47.4378621 ], + [ 7.7631266, 47.4378619 ], + [ 7.7631328, 47.4378621 ], + [ 7.7631388999999995, 47.4378627 ], + [ 7.7631449, 47.4378636 ], + [ 7.7634387, 47.4378611 ], + [ 7.7635152, 47.4376005 ], + [ 7.7635694, 47.4374271 ], + [ 7.7630970999999995, 47.4373454 ], + [ 7.7623266, 47.4373036 ], + [ 7.7621758, 47.4375524 ], + [ 7.7620807, 47.4377076 ], + [ 7.7620325, 47.4377862 ], + [ 7.7614019, 47.4379191 ], + [ 7.7613139, 47.4379517 ], + [ 7.7609156, 47.4380994 ], + [ 7.7604117, 47.4381543 ], + [ 7.7602854, 47.4377075 ], + [ 7.7602001, 47.437159 ], + [ 7.7601808, 47.4369733 ], + [ 7.7601606, 47.4367813 ], + [ 7.7598469, 47.4362897 ], + [ 7.7599418, 47.4358941 ], + [ 7.7598834, 47.4358147 ], + [ 7.7597099, 47.4355789 ], + [ 7.7596758, 47.4355326 ], + [ 7.7595185, 47.4352316 ], + [ 7.759415, 47.4349447 ], + [ 7.7590025, 47.4347343 ], + [ 7.7588597, 47.4346665 ], + [ 7.7587146, 47.4346147 ], + [ 7.7583814, 47.4343504 ], + [ 7.7581621, 47.4343549 ], + [ 7.7581345, 47.4343073 ], + [ 7.7580243, 47.4341154 ], + [ 7.7578808, 47.4337805 ], + [ 7.7577484, 47.4334669 ], + [ 7.7576158, 47.4331482 ], + [ 7.7574632999999995, 47.4327694 ], + [ 7.7573720999999995, 47.4324282 ], + [ 7.7573564, 47.432349 ], + [ 7.7571594, 47.4323846 ], + [ 7.7569559, 47.432406 ], + [ 7.7568454, 47.4324172 ], + [ 7.756792, 47.4324248 ], + [ 7.7566874, 47.4324397 ], + [ 7.7560842999999995, 47.4325202 ], + [ 7.7561016, 47.4328341 ], + [ 7.756184, 47.4332163 ], + [ 7.7563001, 47.4335747 ], + [ 7.7564317, 47.4339439 ], + [ 7.7567356, 47.4338895 ], + [ 7.7567942, 47.4343408 ], + [ 7.7569195, 47.434743 ], + [ 7.757076, 47.4350037 ], + [ 7.7573091, 47.435351 ], + [ 7.7569992, 47.4354464 ], + [ 7.7570638, 47.4356032 ], + [ 7.757204, 47.4359189 ], + [ 7.7572776999999995, 47.4360178 ] + ], + [ + [ 7.7574774, 47.4357001 ], + [ 7.7574625, 47.4356464 ], + [ 7.7574533, 47.4355922 ], + [ 7.757408, 47.4354101 ], + [ 7.7575032, 47.4354179 ], + [ 7.7576695, 47.4354229 ], + [ 7.7577235, 47.4354275 ], + [ 7.7577673, 47.4354833 ], + [ 7.7580302, 47.4357222 ], + [ 7.758118, 47.4358501 ], + [ 7.7581928, 47.43591 ], + [ 7.7575538, 47.4359157 ], + [ 7.7575335, 47.4358617 ], + [ 7.7575149, 47.4358075 ], + [ 7.7574978, 47.435753 ], + [ 7.7574774, 47.4357001 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns291", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Stälzer - Pfiferatten", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Stälzer - Pfiferatten", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Stälzer - Pfiferatten", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Stälzer - Pfiferatten", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.9749909, 47.5457536 ], + [ 7.974984, 47.5456124 ], + [ 7.9749662, 47.5454717 ], + [ 7.9749375, 47.5453318 ], + [ 7.9748981, 47.545193 ], + [ 7.974848, 47.5450559 ], + [ 7.9747874, 47.5449207 ], + [ 7.9747164, 47.5447879 ], + [ 7.9746353, 47.5446578 ], + [ 7.9745442, 47.5445307 ], + [ 7.9744434, 47.544407 ], + [ 7.9743332, 47.5442871 ], + [ 7.9742138, 47.5441712 ], + [ 7.9740857, 47.5440597 ], + [ 7.9739491, 47.543953 ], + [ 7.9738045, 47.5438512 ], + [ 7.9736522, 47.5437546 ], + [ 7.9734926, 47.5436636 ], + [ 7.9733263, 47.5435784 ], + [ 7.9731535000000004, 47.5434992 ], + [ 7.9729749, 47.5434262 ], + [ 7.9727909, 47.5433596 ], + [ 7.972602, 47.5432997 ], + [ 7.9724087, 47.5432465 ], + [ 7.9722116, 47.5432003 ], + [ 7.9720112, 47.5431611 ], + [ 7.971808, 47.543129 ], + [ 7.9716026, 47.5431042 ], + [ 7.9713956, 47.5430867 ], + [ 7.9711875, 47.5430766 ], + [ 7.970979, 47.5430739 ], + [ 7.9707704, 47.5430785 ], + [ 7.9705626, 47.5430906 ], + [ 7.9703558999999995, 47.54311 ], + [ 7.9701511, 47.5431366 ], + [ 7.9699486, 47.5431705 ], + [ 7.9697489, 47.5432116 ], + [ 7.9695528, 47.5432596 ], + [ 7.9693606, 47.5433146 ], + [ 7.9691729, 47.5433762 ], + [ 7.9689902, 47.5434445 ], + [ 7.9688131, 47.5435191 ], + [ 7.9686419, 47.5435999 ], + [ 7.9684773, 47.5436866 ], + [ 7.9683196, 47.5437791 ], + [ 7.9681692, 47.543877 ], + [ 7.9680266, 47.5439801 ], + [ 7.9678922, 47.5440882 ], + [ 7.9677663, 47.5442008 ], + [ 7.9676493, 47.5443178 ], + [ 7.9675415, 47.5444387 ], + [ 7.9674432, 47.5445633 ], + [ 7.9673547, 47.5446912 ], + [ 7.9672761, 47.5448221 ], + [ 7.9672078, 47.5449555 ], + [ 7.9671499, 47.5450912 ], + [ 7.9671026, 47.5452288 ], + [ 7.9670659, 47.5453679 ], + [ 7.9670401, 47.545508 ], + [ 7.9670251, 47.5456489 ], + [ 7.9670211, 47.5457902 ], + [ 7.9670279, 47.5459314 ], + [ 7.9670457, 47.5460721 ], + [ 7.9670743, 47.546212 ], + [ 7.9671137, 47.5463507 ], + [ 7.9671638, 47.5464879 ], + [ 7.9672244, 47.546623 ], + [ 7.9672954, 47.5467559 ], + [ 7.9673765, 47.546886 ], + [ 7.9674676, 47.5470131 ], + [ 7.9675684, 47.5471368 ], + [ 7.9676786, 47.5472567 ], + [ 7.9677979, 47.5473726 ], + [ 7.967926, 47.5474841 ], + [ 7.9680626, 47.5475909 ], + [ 7.9682072, 47.5476927 ], + [ 7.9683595, 47.5477892 ], + [ 7.9685191, 47.5478802 ], + [ 7.9686855, 47.5479655 ], + [ 7.9688582, 47.5480447 ], + [ 7.9690368, 47.5481177 ], + [ 7.9692209, 47.5481842 ], + [ 7.9694098, 47.5482442 ], + [ 7.9696031, 47.5482974 ], + [ 7.9698002, 47.5483436 ], + [ 7.9700006, 47.5483828 ], + [ 7.9702038, 47.5484148 ], + [ 7.9704092, 47.5484397 ], + [ 7.9706163, 47.5484571 ], + [ 7.9708244, 47.5484673 ], + [ 7.971033, 47.54847 ], + [ 7.9712415, 47.5484654 ], + [ 7.9714494, 47.5484533 ], + [ 7.971656, 47.5484339 ], + [ 7.9718609, 47.5484072 ], + [ 7.9720635, 47.5483733 ], + [ 7.9722631, 47.5483323 ], + [ 7.9724593, 47.5482842 ], + [ 7.9726515, 47.5482293 ], + [ 7.9728392, 47.5481676 ], + [ 7.9730219, 47.5480994 ], + [ 7.973199, 47.5480248 ], + [ 7.9733702, 47.547944 ], + [ 7.9735347999999995, 47.5478572 ], + [ 7.9736925, 47.5477647 ], + [ 7.9738429, 47.5476668 ], + [ 7.9739854999999995, 47.5475637 ], + [ 7.9741199, 47.5474556 ], + [ 7.9742458, 47.547343 ], + [ 7.9743628, 47.547226 ], + [ 7.9744706, 47.5471051 ], + [ 7.9745688999999995, 47.5469805 ], + [ 7.9746574, 47.5468526 ], + [ 7.9747359, 47.5467217 ], + [ 7.9748042, 47.5465882 ], + [ 7.9748621, 47.5464525 ], + [ 7.9749094, 47.546315 ], + [ 7.9749461, 47.5461759 ], + [ 7.9749719, 47.5460357 ], + [ 7.9749868, 47.5458948 ], + [ 7.9749909, 47.5457536 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0077", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Münchwilen", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Münchwilen", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Münchwilen", + "lang" : "it-CH" + }, + { + "text" : "Substation Münchwilen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.442916, 47.3965722 ], + [ 7.4430129, 47.3965169 ], + [ 7.4430829, 47.3964289 ], + [ 7.4431353, 47.396367 ], + [ 7.4431441, 47.3963421 ], + [ 7.4430811, 47.396303 ], + [ 7.4430888, 47.3962381 ], + [ 7.4430896, 47.396168 ], + [ 7.4431326, 47.3960946 ], + [ 7.4432007, 47.3960631 ], + [ 7.4432101, 47.3959998 ], + [ 7.4431739, 47.3959136 ], + [ 7.443147, 47.3958477 ], + [ 7.4430875, 47.3957945 ], + [ 7.4430957, 47.3957649 ], + [ 7.4430805, 47.3957134 ], + [ 7.4430202, 47.3956829 ], + [ 7.4429575, 47.3956484 ], + [ 7.442856, 47.395631 ], + [ 7.4427781, 47.3955984 ], + [ 7.4427322, 47.3955296 ], + [ 7.4427234, 47.395483 ], + [ 7.4428313, 47.3954201 ], + [ 7.442794, 47.3953371 ], + [ 7.4427724, 47.3953019 ], + [ 7.4427562, 47.3952111 ], + [ 7.442755, 47.3951545 ], + [ 7.4426798, 47.3951225 ], + [ 7.4426257, 47.395111 ], + [ 7.4424626, 47.3949552 ], + [ 7.4424684, 47.3948784 ], + [ 7.4424121, 47.3948324 ], + [ 7.4424349, 47.3948035 ], + [ 7.4424727, 47.3947247 ], + [ 7.4423446, 47.3946864 ], + [ 7.4422385, 47.3946705 ], + [ 7.4422127, 47.3947254 ], + [ 7.4421172, 47.3949418 ], + [ 7.4420234, 47.3951608 ], + [ 7.4419725, 47.3952372 ], + [ 7.4418675, 47.3953148 ], + [ 7.4417798, 47.3953875 ], + [ 7.4416128, 47.3955463 ], + [ 7.4416038, 47.395555 ], + [ 7.4415265999999995, 47.3955125 ], + [ 7.4414552, 47.39548 ], + [ 7.441426, 47.3954889 ], + [ 7.4413958000000004, 47.3954957 ], + [ 7.4413648, 47.3955003 ], + [ 7.4413332, 47.3955027 ], + [ 7.4413014, 47.3955027 ], + [ 7.4412696, 47.3955007 ], + [ 7.4412385, 47.3954963 ], + [ 7.4412081, 47.3954897 ], + [ 7.441179, 47.395481 ], + [ 7.4411555, 47.3954721 ], + [ 7.4402951999999996, 47.3951907 ], + [ 7.4402493, 47.3951688 ], + [ 7.4402069, 47.3951437 ], + [ 7.4401686, 47.3951158 ], + [ 7.4401351, 47.3950853 ], + [ 7.4401061, 47.3950526 ], + [ 7.4400824, 47.395018 ], + [ 7.4400641, 47.3949819 ], + [ 7.4400515, 47.3949448 ], + [ 7.440071, 47.3949456 ], + [ 7.4400753, 47.3949247 ], + [ 7.4400783, 47.394884 ], + [ 7.440087, 47.3948492 ], + [ 7.4401017, 47.3948065 ], + [ 7.4401236, 47.3947767 ], + [ 7.4401689, 47.3947172 ], + [ 7.4402063, 47.3946239 ], + [ 7.4402485, 47.3945192 ], + [ 7.4403535, 47.3942147 ], + [ 7.4403816, 47.3940576 ], + [ 7.4403535, 47.3938958 ], + [ 7.4402553, 47.3936864 ], + [ 7.4401923, 47.3935531 ], + [ 7.4400858, 47.3934103 ], + [ 7.4400956, 47.3924358 ], + [ 7.440044, 47.3920413 ], + [ 7.4398892, 47.3917169 ], + [ 7.439773, 47.391489 ], + [ 7.4395022, 47.3911646 ], + [ 7.4391038, 47.3908344 ], + [ 7.4389812, 47.3907495 ], + [ 7.4389735, 47.3907509 ], + [ 7.4384083, 47.3904014 ], + [ 7.4378179, 47.390339 ], + [ 7.4377144, 47.3902832 ], + [ 7.4377052, 47.3899651 ], + [ 7.4374504, 47.3897337 ], + [ 7.4372889, 47.3898006 ], + [ 7.4368675, 47.3895818 ], + [ 7.4361451, 47.389419 ], + [ 7.4354026, 47.3892391 ], + [ 7.4347357, 47.3890556 ], + [ 7.4347264, 47.3890532 ], + [ 7.4343497, 47.3887924 ], + [ 7.4339338, 47.3887565 ], + [ 7.4339267, 47.388756 ], + [ 7.4333064, 47.3885998 ], + [ 7.4329409, 47.3884839 ], + [ 7.4329259, 47.3884854 ], + [ 7.4323898, 47.3885367 ], + [ 7.4318486, 47.3885387 ], + [ 7.4318149, 47.3885386 ], + [ 7.4312254, 47.3885701 ], + [ 7.4305811, 47.3885729 ], + [ 7.4299368999999995, 47.3885762 ], + [ 7.4287807, 47.3884505 ], + [ 7.4284229, 47.3879004 ], + [ 7.4283439, 47.3877804 ], + [ 7.4283401, 47.3877779 ], + [ 7.4285487, 47.3877344 ], + [ 7.4285515, 47.3877338 ], + [ 7.429682, 47.3874757 ], + [ 7.4297175, 47.3874378 ], + [ 7.4298227, 47.3873411 ], + [ 7.4301251, 47.3870346 ], + [ 7.4295881999999995, 47.3870766 ], + [ 7.4292013, 47.3871074 ], + [ 7.4279128, 47.387227 ], + [ 7.4267116, 47.3867461 ], + [ 7.4266056, 47.3866067 ], + [ 7.4265798, 47.3865727 ], + [ 7.4266100999999995, 47.3865646 ], + [ 7.4267936, 47.3865152 ], + [ 7.426941, 47.3864696 ], + [ 7.426717, 47.3862181 ], + [ 7.4263328, 47.3862714 ], + [ 7.4264877, 47.3864515 ], + [ 7.4256063, 47.3865752 ], + [ 7.4255837, 47.3865685 ], + [ 7.4253675999999995, 47.3865053 ], + [ 7.4252755, 47.3864115 ], + [ 7.4250602, 47.3861925 ], + [ 7.4244557, 47.3859749 ], + [ 7.4238602, 47.3856553 ], + [ 7.4235219, 47.3856111 ], + [ 7.4232852, 47.385599 ], + [ 7.4230637, 47.385552 ], + [ 7.4230545, 47.3855537 ], + [ 7.4230184, 47.3855115 ], + [ 7.4229588, 47.3852544 ], + [ 7.4227925, 47.3851213 ], + [ 7.4230396, 47.3849476 ], + [ 7.4230472, 47.3849424 ], + [ 7.4232921, 47.3848393 ], + [ 7.4232963, 47.3848326 ], + [ 7.4235501, 47.384526 ], + [ 7.4224798, 47.3846815 ], + [ 7.4216994, 47.3844597 ], + [ 7.4206444, 47.3856213 ], + [ 7.4206377, 47.3856339 ], + [ 7.4208716, 47.3856385 ], + [ 7.4210566, 47.3857185 ], + [ 7.4211557, 47.3858464 ], + [ 7.4206275, 47.3862289 ], + [ 7.4202388, 47.3865042 ], + [ 7.4198131, 47.3868101 ], + [ 7.4196465, 47.3872032 ], + [ 7.4195119, 47.3875081 ], + [ 7.4192039, 47.3879342 ], + [ 7.41897, 47.3882654 ], + [ 7.4184032, 47.3882881 ], + [ 7.4180314, 47.3882514 ], + [ 7.4171063, 47.3882981 ], + [ 7.4166371, 47.3883117 ], + [ 7.4159625, 47.3883378 ], + [ 7.4151924, 47.3892585 ], + [ 7.4151858, 47.3892668 ], + [ 7.4150525, 47.3894315 ], + [ 7.4148603, 47.3895061 ], + [ 7.4146854, 47.3895461 ], + [ 7.4144214, 47.3893964 ], + [ 7.4142496, 47.3894867 ], + [ 7.4141068, 47.3894224 ], + [ 7.4135905, 47.3894404 ], + [ 7.4136911, 47.3905901 ], + [ 7.4138211, 47.3905875 ], + [ 7.4147428, 47.3906883 ], + [ 7.4154952, 47.3906454 ], + [ 7.4161837, 47.3908614 ], + [ 7.4166605, 47.3907104 ], + [ 7.4169996, 47.390732 ], + [ 7.4172866, 47.3907972 ], + [ 7.4173691999999996, 47.39086 ], + [ 7.4173868, 47.3908556 ], + [ 7.4174443, 47.3908115 ], + [ 7.4175271, 47.3907677 ], + [ 7.4175907, 47.3907525 ], + [ 7.417565, 47.3907706 ], + [ 7.4175568, 47.3907748 ], + [ 7.4177168, 47.3907839 ], + [ 7.4178741, 47.3907932 ], + [ 7.4179831, 47.3907996 ], + [ 7.4183267, 47.3908159 ], + [ 7.418715, 47.3908185 ], + [ 7.4189396, 47.3908233 ], + [ 7.4193067, 47.3908154 ], + [ 7.4193118, 47.3908153 ], + [ 7.4194292, 47.3907962 ], + [ 7.4195543, 47.3907757 ], + [ 7.4197089, 47.3907036 ], + [ 7.4198439, 47.3905932 ], + [ 7.419894, 47.3905381 ], + [ 7.4199241, 47.390505 ], + [ 7.4200664, 47.3902785 ], + [ 7.4203059, 47.3899697 ], + [ 7.4205909, 47.3897121 ], + [ 7.4207216, 47.3895554 ], + [ 7.4209803, 47.3892774 ], + [ 7.4212489, 47.3890303 ], + [ 7.4213304, 47.3889627 ], + [ 7.4215542, 47.3887769 ], + [ 7.4223467, 47.3898573 ], + [ 7.4224119, 47.389846 ], + [ 7.422505, 47.3898316 ], + [ 7.4226431, 47.3898125 ], + [ 7.4228529, 47.3897878 ], + [ 7.4229222, 47.3896267 ], + [ 7.4229242, 47.3895293 ], + [ 7.4228992, 47.3894012 ], + [ 7.4228844, 47.389237 ], + [ 7.42291, 47.3891709 ], + [ 7.4229054, 47.3891635 ], + [ 7.4229880999999995, 47.3888046 ], + [ 7.4231611, 47.3883776 ], + [ 7.423364, 47.3878725 ], + [ 7.4234847, 47.3876736 ], + [ 7.4241376, 47.3877742 ], + [ 7.4240751, 47.387877 ], + [ 7.4239717, 47.3880265 ], + [ 7.4238591, 47.3881885 ], + [ 7.4237841, 47.3883624 ], + [ 7.4237183, 47.3885412 ], + [ 7.4236629, 47.3886931 ], + [ 7.4236347, 47.3888306 ], + [ 7.4236296, 47.3889742 ], + [ 7.4236196, 47.3891063 ], + [ 7.4236267, 47.3892466 ], + [ 7.4236311, 47.3893409 ], + [ 7.423613, 47.389483 ], + [ 7.4235921, 47.3896196 ], + [ 7.4235589, 47.3897759 ], + [ 7.423552, 47.3899186 ], + [ 7.4235806, 47.3900744 ], + [ 7.4236246, 47.3902165 ], + [ 7.4237526, 47.3904675 ], + [ 7.423863, 47.3906242 ], + [ 7.4238943, 47.3906765 ], + [ 7.4239418, 47.3907562 ], + [ 7.4239869, 47.3908142 ], + [ 7.4240114, 47.3908545 ], + [ 7.4240505, 47.3909463 ], + [ 7.424055, 47.3909586 ], + [ 7.4240783, 47.3909675 ], + [ 7.4242339, 47.3910247 ], + [ 7.4245061, 47.3911296 ], + [ 7.4246842, 47.3911971 ], + [ 7.4250144, 47.3911696 ], + [ 7.4251093, 47.3911614 ], + [ 7.425182, 47.3911551 ], + [ 7.4252734, 47.3911471 ], + [ 7.4254172, 47.391134 ], + [ 7.4254274, 47.3911331 ], + [ 7.4259473, 47.3902703 ], + [ 7.4261938, 47.3902264 ], + [ 7.4264601, 47.3898988 ], + [ 7.4266397, 47.3898453 ], + [ 7.4267573, 47.3898175 ], + [ 7.4269949, 47.3897874 ], + [ 7.4272313, 47.3897634 ], + [ 7.42741, 47.3897358 ], + [ 7.4275513, 47.389715699999996 ], + [ 7.4277087, 47.3897049 ], + [ 7.4278672, 47.3897028 ], + [ 7.4280252, 47.3897062 ], + [ 7.4281371, 47.3897184 ], + [ 7.4282447, 47.3897297 ], + [ 7.4283051, 47.3897039 ], + [ 7.4283693, 47.3897018 ], + [ 7.4284332, 47.3897225 ], + [ 7.4284897, 47.3897412 ], + [ 7.4286757, 47.3896894 ], + [ 7.428844, 47.3896489 ], + [ 7.4289742, 47.3896341 ], + [ 7.4293109, 47.3896342 ], + [ 7.4294141, 47.3896231 ], + [ 7.4297833, 47.3896232 ], + [ 7.4299462, 47.3896084 ], + [ 7.430196, 47.3895679 ], + [ 7.4304784, 47.3895237 ], + [ 7.4306576, 47.3894942 ], + [ 7.4308259, 47.3894757 ], + [ 7.4309617, 47.3894831 ], + [ 7.431119, 47.3895126 ], + [ 7.4312385, 47.3895532 ], + [ 7.4313579, 47.3895975 ], + [ 7.4314394, 47.3896307 ], + [ 7.4315589, 47.3896122 ], + [ 7.4317489, 47.3895754 ], + [ 7.431977, 47.3895238 ], + [ 7.4321725, 47.3894795 ], + [ 7.432295, 47.3894893 ], + [ 7.4323284, 47.3894887 ], + [ 7.4326227, 47.3902026 ], + [ 7.4327322, 47.3905691 ], + [ 7.4329372, 47.391281 ], + [ 7.4331295, 47.3914063 ], + [ 7.4338747, 47.3918873 ], + [ 7.4340158, 47.3920471 ], + [ 7.4340319, 47.3920652 ], + [ 7.4344716, 47.3925596 ], + [ 7.4345649, 47.3926645 ], + [ 7.4354382, 47.3932676 ], + [ 7.4360455, 47.3936857 ], + [ 7.4360994, 47.3937257 ], + [ 7.4361868, 47.3938041 ], + [ 7.4363, 47.3940339 ], + [ 7.436454, 47.3944717 ], + [ 7.4364685, 47.3945013 ], + [ 7.4364694, 47.3944903 ], + [ 7.4365161, 47.3944813 ], + [ 7.4365754, 47.3945899 ], + [ 7.4366638, 47.3946881 ], + [ 7.4368112, 47.3947844 ], + [ 7.4369152, 47.3948966 ], + [ 7.4371119, 47.3953034 ], + [ 7.4371459, 47.3953542 ], + [ 7.4371939, 47.3954044 ], + [ 7.4373461, 47.3955255 ], + [ 7.4373173, 47.395542 ], + [ 7.4373777, 47.3955907 ], + [ 7.4374113, 47.3956178 ], + [ 7.4374446, 47.395645 ], + [ 7.4374777, 47.3956724 ], + [ 7.4375105, 47.3956999 ], + [ 7.437543, 47.3957276 ], + [ 7.4375752, 47.3957553 ], + [ 7.4376071, 47.3957832 ], + [ 7.4376388, 47.3958113 ], + [ 7.4377137, 47.3958583 ], + [ 7.4377385, 47.3958772 ], + [ 7.4377628, 47.3958964 ], + [ 7.4377867, 47.395916 ], + [ 7.43781, 47.3959357 ], + [ 7.4378329, 47.3959558 ], + [ 7.4378551999999996, 47.3959761 ], + [ 7.4378769, 47.3959966 ], + [ 7.4378981, 47.3960174 ], + [ 7.4379188, 47.3960384 ], + [ 7.4379389, 47.3960596 ], + [ 7.4379585, 47.3960811 ], + [ 7.4379775, 47.3961028 ], + [ 7.4379962, 47.3961246 ], + [ 7.4380143, 47.3961467 ], + [ 7.4380319, 47.3961691 ], + [ 7.4380486999999995, 47.3961916 ], + [ 7.438065, 47.3962144 ], + [ 7.4380806, 47.3962374 ], + [ 7.4380956, 47.3962606 ], + [ 7.4381099, 47.396284 ], + [ 7.4381236, 47.3963075 ], + [ 7.4381366, 47.3963313 ], + [ 7.438149, 47.3963552 ], + [ 7.4381606, 47.3963792 ], + [ 7.4382380999999995, 47.3964919 ], + [ 7.4382737, 47.3964792 ], + [ 7.4383618, 47.396597 ], + [ 7.4384388, 47.3966773 ], + [ 7.4384966, 47.3967575 ], + [ 7.4385469, 47.3968257 ], + [ 7.4385895, 47.3968871 ], + [ 7.4386597, 47.3969672 ], + [ 7.4387176, 47.3970423 ], + [ 7.4387578, 47.3970985 ], + [ 7.4388155, 47.3971685 ], + [ 7.4388808, 47.3972332 ], + [ 7.4389587, 47.39731 ], + [ 7.4390616, 47.3973884 ], + [ 7.4391471, 47.3974652 ], + [ 7.4392424, 47.3975435 ], + [ 7.4392977, 47.3975981 ], + [ 7.4393579, 47.3976501 ], + [ 7.4394157, 47.3977064 ], + [ 7.439461, 47.3977525 ], + [ 7.4395438, 47.3978071 ], + [ 7.4396166, 47.3978599 ], + [ 7.4396618, 47.397877 ], + [ 7.4397335, 47.3979238 ], + [ 7.4398062, 47.3979596 ], + [ 7.4399017, 47.3980074 ], + [ 7.4399971, 47.3980483 ], + [ 7.4401151, 47.3980994 ], + [ 7.4401955, 47.3981336 ], + [ 7.4403161, 47.3981847 ], + [ 7.4404164999999995, 47.3982257 ], + [ 7.4404969, 47.3982649 ], + [ 7.4405871999999995, 47.3983161 ], + [ 7.4406802, 47.3983689 ], + [ 7.4407706, 47.3984303 ], + [ 7.4408484999999995, 47.3984798 ], + [ 7.4409289, 47.3985343 ], + [ 7.4410067, 47.398594 ], + [ 7.4410456, 47.3986195 ], + [ 7.4410883, 47.3986383 ], + [ 7.4411461, 47.3986452 ], + [ 7.4411862, 47.3986434 ], + [ 7.4412289, 47.3986264 ], + [ 7.4412649, 47.3986063 ], + [ 7.4412717, 47.3986025 ], + [ 7.4413843, 47.398579 ], + [ 7.4414259, 47.3985653 ], + [ 7.4414481, 47.3985508 ], + [ 7.4414802, 47.3985262 ], + [ 7.4414961, 47.3984966 ], + [ 7.441516, 47.3984469 ], + [ 7.4414874, 47.3983489 ], + [ 7.4414338, 47.3982858 ], + [ 7.4413396, 47.3981889 ], + [ 7.4413637, 47.398148 ], + [ 7.4414182, 47.3980384 ], + [ 7.4413691, 47.3979433 ], + [ 7.4413571, 47.3978883 ], + [ 7.441395, 47.3978393 ], + [ 7.4414655, 47.3977625 ], + [ 7.4415183, 47.3976998 ], + [ 7.4415903, 47.3976377 ], + [ 7.4416417, 47.3976118 ], + [ 7.4416873, 47.3976052 ], + [ 7.4417722, 47.3974189 ], + [ 7.4420213, 47.3971087 ], + [ 7.4421623, 47.3970229 ], + [ 7.4423367, 47.3969711 ], + [ 7.4423712, 47.3969065 ], + [ 7.4424212, 47.3968647 ], + [ 7.4424593, 47.3967988 ], + [ 7.4426273, 47.3967099 ], + [ 7.4427551, 47.3966217 ], + [ 7.4428212, 47.3965715 ], + [ 7.442916, 47.3965722 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns312", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Löffelberg - Baanholz", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Löffelberg - Baanholz", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Löffelberg - Baanholz", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Löffelberg - Baanholz", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6958471, 47.4196128 ], + [ 7.695855, 47.4196297 ], + [ 7.6958637, 47.4196465 ], + [ 7.6958685, 47.4196551 ], + [ 7.695873, 47.4196631 ], + [ 7.6958831, 47.4196795 ], + [ 7.6958938, 47.4196957 ], + [ 7.6959031, 47.4197096 ], + [ 7.6959117, 47.4197237 ], + [ 7.6959198, 47.4197379 ], + [ 7.6959272, 47.4197523 ], + [ 7.6959341, 47.4197668 ], + [ 7.6959403, 47.4197815 ], + [ 7.6959464, 47.4197958 ], + [ 7.6959532, 47.41981 ], + [ 7.6959608, 47.419824 ], + [ 7.695969, 47.4198379 ], + [ 7.6959719, 47.4198424 ], + [ 7.6960979, 47.4198187 ], + [ 7.6962727, 47.4196946 ], + [ 7.6963984, 47.4196039 ], + [ 7.696517, 47.4194704 ], + [ 7.6965796, 47.419356 ], + [ 7.6966703, 47.4192606 ], + [ 7.6968381, 47.4191603 ], + [ 7.6970127999999995, 47.4190457 ], + [ 7.6970896, 47.4189741 ], + [ 7.6970597, 47.4185886 ], + [ 7.6970726, 47.4183554 ], + [ 7.6968411, 47.4183416 ], + [ 7.6966518, 47.4183421 ], + [ 7.6964905, 47.4183424 ], + [ 7.6963642, 47.4183237 ], + [ 7.6962408, 47.4183114 ], + [ 7.6962268, 47.418321 ], + [ 7.6961813, 47.4183416 ], + [ 7.6961675, 47.4183482 ], + [ 7.6961534, 47.4183544 ], + [ 7.6961388, 47.4183601 ], + [ 7.6961239, 47.4183654 ], + [ 7.6961086, 47.4183702 ], + [ 7.6959225, 47.4184348 ], + [ 7.6958341, 47.4184651 ], + [ 7.6958215, 47.4184706 ], + [ 7.6958094, 47.4184765 ], + [ 7.6957978, 47.4184829 ], + [ 7.6957866, 47.4184897 ], + [ 7.6957765, 47.4184964 ], + [ 7.6957669, 47.4185035 ], + [ 7.6957578, 47.4185109 ], + [ 7.6957492, 47.4185186 ], + [ 7.6957469, 47.418521 ], + [ 7.6957412, 47.4185266 ], + [ 7.6957338, 47.4185348 ], + [ 7.6957234, 47.4185475 ], + [ 7.6957134, 47.4185604 ], + [ 7.6957041, 47.4185735 ], + [ 7.6956953, 47.4185867 ], + [ 7.6956866, 47.4186009 ], + [ 7.6956786, 47.4186153 ], + [ 7.6956755999999995, 47.4186213 ], + [ 7.6956716, 47.4186584 ], + [ 7.695651, 47.4187393 ], + [ 7.6956584, 47.418825 ], + [ 7.6956662, 47.4189868 ], + [ 7.6956843, 47.4191134 ], + [ 7.6956886, 47.4191346 ], + [ 7.6956933, 47.4191569 ], + [ 7.6957236, 47.4192579 ], + [ 7.6957255, 47.4192654 ], + [ 7.6957328, 47.4192932 ], + [ 7.695776, 47.4194114 ], + [ 7.6957854, 47.4194332 ], + [ 7.6957943, 47.419455 ], + [ 7.6958024, 47.419477 ], + [ 7.6958099, 47.4194991 ], + [ 7.6958167, 47.4195213 ], + [ 7.6958229, 47.4195436 ], + [ 7.6958278, 47.4195611 ], + [ 7.6958305, 47.4195691 ], + [ 7.6958335, 47.4195784 ], + [ 7.6958400000000005, 47.4195957 ], + [ 7.6958471, 47.4196128 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns031", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Oberthalrain", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Oberthalrain", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Oberthalrain", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Oberthalrain", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6956658000000004, 47.4548162 ], + [ 7.6956945, 47.454823 ], + [ 7.6957235, 47.4548401 ], + [ 7.695786, 47.4549107 ], + [ 7.6958712, 47.4549738 ], + [ 7.6959329, 47.4550222 ], + [ 7.6960027, 47.4550471 ], + [ 7.6960695999999995, 47.4550479 ], + [ 7.696089, 47.4550404 ], + [ 7.6961006, 47.455023 ], + [ 7.6961438, 47.4550052 ], + [ 7.696199, 47.4550163 ], + [ 7.6962393, 47.4550218 ], + [ 7.6962999, 47.4550158 ], + [ 7.696356, 47.4550828 ], + [ 7.6964214, 47.455126 ], + [ 7.6964473, 47.4551493 ], + [ 7.6964984, 47.4551691 ], + [ 7.6965946, 47.4552512 ], + [ 7.6966215, 47.4552893 ], + [ 7.6966665, 47.4553026 ], + [ 7.6967416, 47.4552925 ], + [ 7.696809, 47.4552742 ], + [ 7.696887, 47.4552635 ], + [ 7.6969736, 47.4552671 ], + [ 7.697062, 47.4552537 ], + [ 7.6970468, 47.455243 ], + [ 7.6966021, 47.4549295 ], + [ 7.6964729, 47.4548385 ], + [ 7.6962204, 47.4546591 ], + [ 7.6956461, 47.4547565 ], + [ 7.6956598, 47.4547979 ], + [ 7.6956658000000004, 47.4548162 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns293", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Stegmatten", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Stegmatten", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Stegmatten", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Stegmatten", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4815354, 47.4002784 ], + [ 7.4803902, 47.4000761 ], + [ 7.4805297, 47.4003886 ], + [ 7.4807521, 47.400561 ], + [ 7.4808475, 47.4007657 ], + [ 7.4809698000000004, 47.4009756 ], + [ 7.4810496, 47.4009982 ], + [ 7.4811426, 47.4010246 ], + [ 7.4813115, 47.4010515 ], + [ 7.48153, 47.401105 ], + [ 7.481827, 47.401174 ], + [ 7.4820839, 47.4012441 ], + [ 7.482374, 47.4013603 ], + [ 7.4826005, 47.4014546 ], + [ 7.4828754, 47.4015645 ], + [ 7.4832181, 47.4017054 ], + [ 7.4834792, 47.40183 ], + [ 7.4837373, 47.4019488 ], + [ 7.4841368, 47.4021082 ], + [ 7.4845863999999995, 47.4022836 ], + [ 7.4847485, 47.4023462 ], + [ 7.4848926, 47.4024019 ], + [ 7.4851179, 47.4024866 ], + [ 7.4852041, 47.402519 ], + [ 7.4852633, 47.4025407 ], + [ 7.4854821, 47.402621 ], + [ 7.4857314, 47.4027124 ], + [ 7.4862273, 47.402884 ], + [ 7.4867612, 47.4030746 ], + [ 7.4870981, 47.403205 ], + [ 7.4874484, 47.4033544 ], + [ 7.4886593, 47.4023576 ], + [ 7.4888307, 47.4021763 ], + [ 7.4898489999999995, 47.4013873 ], + [ 7.4904837, 47.4008491 ], + [ 7.4905508, 47.4007664 ], + [ 7.4907967, 47.4004923 ], + [ 7.4910083, 47.4001812 ], + [ 7.4910834, 47.4000372 ], + [ 7.491167, 47.3999049 ], + [ 7.4915237999999995, 47.3996936 ], + [ 7.492103, 47.3993598 ], + [ 7.4923362000000004, 47.3992853 ], + [ 7.4918237, 47.3991728 ], + [ 7.4915868, 47.3990865 ], + [ 7.4910846, 47.3989301 ], + [ 7.490355, 47.3987873 ], + [ 7.4892363, 47.3987327 ], + [ 7.488053, 47.3988213 ], + [ 7.4873073, 47.3988987 ], + [ 7.4860362, 47.3989948 ], + [ 7.4858311, 47.3990274 ], + [ 7.4857218, 47.399111 ], + [ 7.4856123, 47.399204 ], + [ 7.4855858, 47.399258 ], + [ 7.4855329, 47.399321 ], + [ 7.4854468, 47.3993948 ], + [ 7.4853383000000004, 47.3994668 ], + [ 7.4851754, 47.3995415 ], + [ 7.4847781, 47.3996991 ], + [ 7.4843544, 47.3998584 ], + [ 7.4841756, 47.3999484 ], + [ 7.4840869, 47.4000114 ], + [ 7.4839448, 47.4000588 ], + [ 7.4836515, 47.4000749 ], + [ 7.4826057, 47.4000245 ], + [ 7.4815354, 47.4002784 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr007", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Im Buchloch", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Im Buchloch", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Im Buchloch", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Im Buchloch", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4466466, 47.4030115 ], + [ 7.4467075, 47.4029948 ], + [ 7.4467555, 47.4030162 ], + [ 7.4467888, 47.4030311 ], + [ 7.4468029, 47.4030375 ], + [ 7.4468105, 47.4030408 ], + [ 7.4468115, 47.4030398 ], + [ 7.4468154, 47.4030368 ], + [ 7.4468233999999995, 47.4030305 ], + [ 7.4468801, 47.4029859 ], + [ 7.4468874, 47.4029716 ], + [ 7.4471216, 47.4027904 ], + [ 7.4471374, 47.4027772 ], + [ 7.4471547, 47.4027648 ], + [ 7.4471734, 47.4027535 ], + [ 7.4471935, 47.4027432 ], + [ 7.4472147, 47.402734 ], + [ 7.4472369, 47.4027261 ], + [ 7.44726, 47.4027194 ], + [ 7.4472839, 47.402714 ], + [ 7.4473076, 47.40271 ], + [ 7.4473317, 47.4027073 ], + [ 7.447356, 47.4027059 ], + [ 7.4473804, 47.4027058 ], + [ 7.4474048, 47.4027071 ], + [ 7.4474289, 47.4027096 ], + [ 7.4474527, 47.4027134 ], + [ 7.447476, 47.4027185 ], + [ 7.4475564, 47.4027268 ], + [ 7.4476408, 47.4027356 ], + [ 7.4477477, 47.402679 ], + [ 7.4478335, 47.4026336 ], + [ 7.4478672, 47.4026157 ], + [ 7.4478922, 47.4026019 ], + [ 7.4480319999999995, 47.4025243 ], + [ 7.4482702, 47.4024178 ], + [ 7.4483912, 47.4022372 ], + [ 7.4485922, 47.4019059 ], + [ 7.4486191, 47.4017466 ], + [ 7.4486136, 47.401678 ], + [ 7.4485905, 47.4016358 ], + [ 7.448505, 47.401454 ], + [ 7.44843, 47.4013582 ], + [ 7.4483411, 47.4012945 ], + [ 7.4482282, 47.4012391 ], + [ 7.4481012, 47.4011894 ], + [ 7.4479755, 47.4011252 ], + [ 7.4476554, 47.4011101 ], + [ 7.4473214, 47.4011071 ], + [ 7.4471578, 47.4011213 ], + [ 7.4469055, 47.4011807 ], + [ 7.4466809, 47.4012658 ], + [ 7.4465031, 47.4013384 ], + [ 7.4464235, 47.4013709 ], + [ 7.4459701, 47.4016306 ], + [ 7.4456984, 47.4017862 ], + [ 7.445378, 47.401965 ], + [ 7.4451131, 47.4020992 ], + [ 7.4450129, 47.40215 ], + [ 7.4447989, 47.4022796 ], + [ 7.4447441, 47.4024004 ], + [ 7.4447103, 47.4024748 ], + [ 7.4446918, 47.4025216 ], + [ 7.4447523, 47.402638 ], + [ 7.4449274, 47.4027078 ], + [ 7.4451731, 47.4027495 ], + [ 7.4453434, 47.4027565 ], + [ 7.4454982, 47.4028673 ], + [ 7.445625, 47.4030424 ], + [ 7.4457462, 47.4031623 ], + [ 7.4458202, 47.4031705 ], + [ 7.4461746, 47.4032102 ], + [ 7.4463786, 47.4031635 ], + [ 7.4465618, 47.4030348 ], + [ 7.4466466, 47.4030115 ] + ], + [ + [ 7.4459467, 47.4023551 ], + [ 7.4459908, 47.4023071 ], + [ 7.4461467, 47.402195 ], + [ 7.4464718, 47.4020189 ], + [ 7.446604, 47.4019528 ], + [ 7.4467739, 47.4018677 ], + [ 7.4469338, 47.4018105 ], + [ 7.4469432, 47.401808 ], + [ 7.4471834999999995, 47.4017439 ], + [ 7.4472661, 47.4017279 ], + [ 7.4472913, 47.4017603 ], + [ 7.4473821000000004, 47.4018767 ], + [ 7.4474105, 47.4019132 ], + [ 7.4474389, 47.4019496 ], + [ 7.4474444, 47.4019566 ], + [ 7.4471408, 47.4021232 ], + [ 7.4466875, 47.4023473 ], + [ 7.4463269, 47.4025024 ], + [ 7.4462507, 47.4025352 ], + [ 7.4461482, 47.4025904 ], + [ 7.4458284, 47.4027629 ], + [ 7.4458397, 47.4028379 ], + [ 7.4458091, 47.4028741 ], + [ 7.4457596, 47.4028331 ], + [ 7.4457438, 47.40282 ], + [ 7.4457325, 47.402813 ], + [ 7.4456879, 47.4027851 ], + [ 7.4456582000000004, 47.4027664 ], + [ 7.4456057, 47.402699 ], + [ 7.445714, 47.4026168 ], + [ 7.4457082, 47.4025877 ], + [ 7.4457506, 47.402548 ], + [ 7.4457843, 47.4025166 ], + [ 7.4458835, 47.4024238 ], + [ 7.4459467, 47.4023551 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr055", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Stefansmatten", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Stefansmatten", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Stefansmatten", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Stefansmatten", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.9790219, 46.3171674 ], + [ 7.9801025, 46.3164648 ], + [ 7.9792945, 46.316011 ], + [ 7.9784573, 46.3165834 ], + [ 7.9787164, 46.3169146 ], + [ 7.9790219, 46.3171674 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BRI0001", + "country" : "CHE", + "name" : [ + { + "text" : "Gefängnis Brig", + "lang" : "de-CH" + }, + { + "text" : "Gefängnis Brig", + "lang" : "fr-CH" + }, + { + "text" : "Gefängnis Brig", + "lang" : "it-CH" + }, + { + "text" : "Gefängnis Brig", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Dienststelle für Straf-und Massnahmenvollzug", + "lang" : "de-CH" + }, + { + "text" : "Service de l'application des peines et mesures", + "lang" : "fr-CH" + }, + { + "text" : "Dienststelle für Straf-und Massnahmenvollzug", + "lang" : "it-CH" + }, + { + "text" : "Dienststelle für Straf-und Massnahmenvollzug", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Dienststelle für Straf-und Massnahmenvollzug", + "lang" : "de-CH" + }, + { + "text" : "Service de l'application des peines et mesures", + "lang" : "fr-CH" + }, + { + "text" : "Dienststelle für Straf-und Massnahmenvollzug", + "lang" : "it-CH" + }, + { + "text" : "Dienststelle für Straf-und Massnahmenvollzug", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.polizeiwallis.ch/", + "email" : "SAPEM-DIRECTION@admin.vs.ch", + "phone" : "0041276065166", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.3733433999999995, 47.4199889 ], + [ 7.373521, 47.4201501 ], + [ 7.373397, 47.4204977 ], + [ 7.3735254, 47.4206309 ], + [ 7.3735963, 47.4207348 ], + [ 7.3738437, 47.4207881 ], + [ 7.3740696, 47.4207036 ], + [ 7.3742235, 47.4206438 ], + [ 7.3742261, 47.4206427 ], + [ 7.3742287, 47.4206416 ], + [ 7.3742312, 47.4206405 ], + [ 7.3742338, 47.4206394 ], + [ 7.3742364, 47.4206384 ], + [ 7.3742389, 47.4206372 ], + [ 7.3742415, 47.4206361 ], + [ 7.374244, 47.420635 ], + [ 7.3742465, 47.4206339 ], + [ 7.3742491, 47.4206328 ], + [ 7.3742516, 47.4206316 ], + [ 7.3742541, 47.4206305 ], + [ 7.3742566, 47.4206294 ], + [ 7.3742592, 47.4206282 ], + [ 7.3742617, 47.4206271 ], + [ 7.3742642, 47.4206259 ], + [ 7.3742667, 47.4206248 ], + [ 7.3742692, 47.4206236 ], + [ 7.3742716, 47.4206224 ], + [ 7.3742741, 47.4206212 ], + [ 7.3742766, 47.4206201 ], + [ 7.3742791, 47.4206189 ], + [ 7.3742815, 47.4206177 ], + [ 7.374284, 47.4206165 ], + [ 7.3742864, 47.4206153 ], + [ 7.3742889, 47.4206141 ], + [ 7.3742913, 47.4206128 ], + [ 7.3742938, 47.4206116 ], + [ 7.3742962, 47.4206104 ], + [ 7.3742986, 47.4206092 ], + [ 7.374301, 47.4206079 ], + [ 7.3743034, 47.4206067 ], + [ 7.3743058, 47.4206054 ], + [ 7.3743082, 47.4206042 ], + [ 7.3743106, 47.4206029 ], + [ 7.374313, 47.4206017 ], + [ 7.3743154, 47.4206004 ], + [ 7.3743178, 47.4205991 ], + [ 7.3743202, 47.4205978 ], + [ 7.3743225, 47.4205966 ], + [ 7.3743248999999995, 47.4205953 ], + [ 7.3743272, 47.420594 ], + [ 7.3743296, 47.4205927 ], + [ 7.3743319, 47.4205914 ], + [ 7.3743342, 47.4205901 ], + [ 7.3743365, 47.4205888 ], + [ 7.3743389, 47.4205875 ], + [ 7.3743412, 47.4205862 ], + [ 7.3743435, 47.4205848 ], + [ 7.3743458, 47.4205835 ], + [ 7.3743481, 47.4205822 ], + [ 7.3743503, 47.4205808 ], + [ 7.3743526, 47.4205795 ], + [ 7.3743549, 47.4205781 ], + [ 7.3743572, 47.4205768 ], + [ 7.3743594, 47.4205754 ], + [ 7.3743617, 47.4205741 ], + [ 7.3743639, 47.4205727 ], + [ 7.3743662, 47.4205713 ], + [ 7.3743684, 47.4205699 ], + [ 7.3743707, 47.4205686 ], + [ 7.3743729, 47.4205672 ], + [ 7.3743751, 47.4205658 ], + [ 7.3743773, 47.4205644 ], + [ 7.3743795, 47.420563 ], + [ 7.3743817, 47.4205616 ], + [ 7.3743839, 47.4205601 ], + [ 7.3743861, 47.4205587 ], + [ 7.3744572999999995, 47.4205023 ], + [ 7.3744942, 47.4204555 ], + [ 7.3745481, 47.4202878 ], + [ 7.3745738, 47.420077 ], + [ 7.3741517, 47.4199519 ], + [ 7.3738783, 47.419811 ], + [ 7.3735399, 47.4196577 ], + [ 7.3736013, 47.419513 ], + [ 7.3734566, 47.4194646 ], + [ 7.3729859, 47.4193499 ], + [ 7.3727257999999996, 47.4192956 ], + [ 7.3725591, 47.4194172 ], + [ 7.3723709, 47.4194234 ], + [ 7.3719102, 47.4194263 ], + [ 7.3716072, 47.4193691 ], + [ 7.3711322, 47.4192717 ], + [ 7.3707101, 47.4192654 ], + [ 7.3703954, 47.4193341 ], + [ 7.3702328999999995, 47.4194518 ], + [ 7.3701023, 47.4196103 ], + [ 7.3699261, 47.419923 ], + [ 7.3699117, 47.4199484 ], + [ 7.3698425, 47.4200713 ], + [ 7.3696699, 47.4201221 ], + [ 7.3697392, 47.420671 ], + [ 7.3701466, 47.4206656 ], + [ 7.3705967, 47.4206697 ], + [ 7.3710504, 47.4206276 ], + [ 7.3719136, 47.420589 ], + [ 7.3722033, 47.4205431 ], + [ 7.3723694, 47.4205504 ], + [ 7.372864, 47.4205724 ], + [ 7.3733433999999995, 47.4199889 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr054", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Undere Ritzigrund", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Undere Ritzigrund", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Undere Ritzigrund", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Undere Ritzigrund", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8342022, 47.4890158 ], + [ 7.8339671, 47.4890208 ], + [ 7.8338791, 47.4890223 ], + [ 7.8336392, 47.489042 ], + [ 7.8334039, 47.4890787 ], + [ 7.8332907, 47.4891026 ], + [ 7.8332344, 47.4891176 ], + [ 7.8331808, 47.4891365 ], + [ 7.8331303, 47.489159 ], + [ 7.8330836999999995, 47.4891849 ], + [ 7.8330411, 47.4892141 ], + [ 7.8330034, 47.4892461 ], + [ 7.8329709, 47.4892806 ], + [ 7.8329438, 47.4893172 ], + [ 7.8329225000000005, 47.4893555 ], + [ 7.8329073000000005, 47.4893951 ], + [ 7.8329004, 47.4894222 ], + [ 7.8328836, 47.4895089 ], + [ 7.8328723, 47.4895661 ], + [ 7.8328587, 47.4896343 ], + [ 7.8328162, 47.4897133 ], + [ 7.8325724, 47.4899763 ], + [ 7.8322255, 47.4903086 ], + [ 7.8319753, 47.490559 ], + [ 7.8317008999999995, 47.4908461 ], + [ 7.831609, 47.4909419 ], + [ 7.8316484, 47.4909182 ], + [ 7.8319574, 47.4908042 ], + [ 7.8320748, 47.4907606 ], + [ 7.8322338, 47.4907631 ], + [ 7.8323545, 47.4907753 ], + [ 7.8324701, 47.4908061 ], + [ 7.8325664, 47.4908422 ], + [ 7.8330823, 47.4910763 ], + [ 7.8333624, 47.4911059 ], + [ 7.8336809, 47.4913289 ], + [ 7.8337767, 47.4913738 ], + [ 7.8339207, 47.4912602 ], + [ 7.8340682, 47.4911435 ], + [ 7.8341711, 47.4910776 ], + [ 7.8342023, 47.4910554 ], + [ 7.8342298, 47.4910311 ], + [ 7.8342535, 47.4910051 ], + [ 7.8342729, 47.4909775 ], + [ 7.8342767, 47.4909712 ], + [ 7.8348967, 47.4912618 ], + [ 7.8349429, 47.491281 ], + [ 7.8354079, 47.491492 ], + [ 7.8354462, 47.49151 ], + [ 7.8353368, 47.4915864 ], + [ 7.835156, 47.4916857 ], + [ 7.834987, 47.4917965 ], + [ 7.8348518, 47.4918962 ], + [ 7.8348002999999995, 47.4919302 ], + [ 7.8347439, 47.4919603 ], + [ 7.8346831, 47.4919863 ], + [ 7.8346518, 47.4919974 ], + [ 7.8342683, 47.4921246 ], + [ 7.8342491, 47.4921319 ], + [ 7.8342313, 47.4921404 ], + [ 7.8342148, 47.4921501 ], + [ 7.8341999, 47.492161 ], + [ 7.8341867, 47.4921728 ], + [ 7.8341826, 47.4921771 ], + [ 7.8341313, 47.4922392 ], + [ 7.8340899, 47.4923047 ], + [ 7.8340586, 47.4923728 ], + [ 7.8340575, 47.4923761 ], + [ 7.8340285, 47.4924364 ], + [ 7.8340446, 47.492504 ], + [ 7.8340451, 47.4925718 ], + [ 7.8340742, 47.4926491 ], + [ 7.8341031999999995, 47.4927006 ], + [ 7.8341656, 47.4927778 ], + [ 7.8342328, 47.4928486 ], + [ 7.8343095, 47.4929193 ], + [ 7.8343576, 47.4929869 ], + [ 7.8344057, 47.4930577 ], + [ 7.8344732, 47.4931704 ], + [ 7.8345357, 47.4932605 ], + [ 7.8346079, 47.4933667 ], + [ 7.8346657, 47.4934504 ], + [ 7.8346933, 47.4934934 ], + [ 7.8347179, 47.4935275 ], + [ 7.8347424, 47.4935616 ], + [ 7.8349648, 47.4937049 ], + [ 7.8351932, 47.493809 ], + [ 7.8352468, 47.4938302 ], + [ 7.8354925, 47.4939141 ], + [ 7.8355498, 47.4939306 ], + [ 7.8356258, 47.4939486 ], + [ 7.8357042, 47.4939611 ], + [ 7.8357212, 47.4939631 ], + [ 7.8358495999999995, 47.4939768 ], + [ 7.8359882, 47.4939971 ], + [ 7.8361227, 47.4940272 ], + [ 7.836252, 47.4940667 ], + [ 7.8363508, 47.4941047 ], + [ 7.8367494, 47.4942736 ], + [ 7.8369451, 47.4943605 ], + [ 7.8371014, 47.4944399 ], + [ 7.8372385, 47.4944293 ], + [ 7.8373764, 47.4944251 ], + [ 7.8375144, 47.4944273 ], + [ 7.8376519, 47.4944359 ], + [ 7.8377881, 47.4944509 ], + [ 7.8379226, 47.4944722 ], + [ 7.8380545, 47.4944997 ], + [ 7.8381834, 47.4945332 ], + [ 7.8383085, 47.4945727 ], + [ 7.8386658, 47.4943163 ], + [ 7.8392579, 47.4940853 ], + [ 7.8394746, 47.4939916 ], + [ 7.8397824, 47.4936906 ], + [ 7.8401633, 47.4933479 ], + [ 7.8408479, 47.4932172 ], + [ 7.8408483, 47.4932228 ], + [ 7.8408523, 47.493223 ], + [ 7.8408779, 47.493224 ], + [ 7.8410467, 47.4932307 ], + [ 7.8410485, 47.4932307 ], + [ 7.8410751, 47.4932296 ], + [ 7.8410842, 47.4932819 ], + [ 7.8410904, 47.4933177 ], + [ 7.8410923, 47.4933288 ], + [ 7.8411048, 47.4934005 ], + [ 7.8412901999999995, 47.4934237 ], + [ 7.841362, 47.4934326 ], + [ 7.8415398, 47.4934549 ], + [ 7.8417552, 47.4934314 ], + [ 7.841891, 47.4934165 ], + [ 7.8419444, 47.4934107 ], + [ 7.8419338, 47.4933836 ], + [ 7.8419053, 47.4933313 ], + [ 7.8418313, 47.4932135 ], + [ 7.8418227, 47.4931979 ], + [ 7.8418051, 47.4931662 ], + [ 7.8417847, 47.4931175 ], + [ 7.8417705, 47.4930679 ], + [ 7.8417624, 47.4930177 ], + [ 7.8417604999999995, 47.4929671 ], + [ 7.8417621, 47.4929489 ], + [ 7.8417648, 47.4929167 ], + [ 7.8417685, 47.4928901 ], + [ 7.8417783, 47.4928242 ], + [ 7.8417951, 47.4927111 ], + [ 7.841791, 47.4926525 ], + [ 7.8417904, 47.4926445 ], + [ 7.8417346, 47.4925683 ], + [ 7.8416772, 47.4925102 ], + [ 7.8416149, 47.4924472 ], + [ 7.8415301, 47.4923374 ], + [ 7.8413845, 47.4922201 ], + [ 7.8413452, 47.4921884 ], + [ 7.8412316, 47.4920959 ], + [ 7.8411956, 47.4920642 ], + [ 7.8411639, 47.4920304 ], + [ 7.8411366000000005, 47.4919949 ], + [ 7.8411139, 47.491958 ], + [ 7.8410468, 47.4918311 ], + [ 7.8409142, 47.4915456 ], + [ 7.8408904, 47.4914998 ], + [ 7.8408622, 47.4914552 ], + [ 7.8408296, 47.491412 ], + [ 7.8407346, 47.4912843 ], + [ 7.8404021, 47.4911163 ], + [ 7.8400831, 47.4910303 ], + [ 7.8399342, 47.4910047 ], + [ 7.8397567, 47.4909492 ], + [ 7.8396526, 47.4908767 ], + [ 7.8395796, 47.4908435 ], + [ 7.8394448, 47.4907316 ], + [ 7.8392364, 47.4905433 ], + [ 7.8391859, 47.49036 ], + [ 7.8392001, 47.4901251 ], + [ 7.8393847999999995, 47.489637 ], + [ 7.8396687, 47.489009 ], + [ 7.8397883, 47.4887071 ], + [ 7.8397673999999995, 47.4885395 ], + [ 7.8396334, 47.4882846 ], + [ 7.8395237, 47.4881862 ], + [ 7.8390613, 47.4882851 ], + [ 7.8371501, 47.4885178 ], + [ 7.8360251, 47.488692 ], + [ 7.8356902999999996, 47.488798 ], + [ 7.8353528, 47.4889243 ], + [ 7.8352646, 47.4889532 ], + [ 7.8351724, 47.4889757 ], + [ 7.8350774, 47.4889916 ], + [ 7.8349803, 47.4890005 ], + [ 7.8349204, 47.4890027 ], + [ 7.8342022, 47.4890158 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr095", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Wid", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Wid", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Wid", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Wid", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8410957, 47.468056 ], + [ 7.8411258, 47.4679825 ], + [ 7.8411724, 47.4678689 ], + [ 7.8411915, 47.4678223 ], + [ 7.8412043, 47.4677912 ], + [ 7.841195, 47.4677813 ], + [ 7.8408574, 47.4676321 ], + [ 7.8405919, 47.4675354 ], + [ 7.8403069, 47.467443 ], + [ 7.8397013, 47.4674147 ], + [ 7.8396334, 47.4675909 ], + [ 7.8395984, 47.4676818 ], + [ 7.8395936, 47.4676944 ], + [ 7.8392794, 47.4680005 ], + [ 7.8392668, 47.4680113 ], + [ 7.8391894, 47.4680769 ], + [ 7.8391921, 47.4681198 ], + [ 7.839197, 47.4681969 ], + [ 7.8392705, 47.4683785 ], + [ 7.8391932, 47.4684919 ], + [ 7.8391993, 47.4685847 ], + [ 7.8392012, 47.468614 ], + [ 7.8392019, 47.4686247 ], + [ 7.8392393, 47.4686168 ], + [ 7.8392416, 47.4686227 ], + [ 7.8392472, 47.4686374 ], + [ 7.8392452, 47.4686455 ], + [ 7.8392405, 47.4686639 ], + [ 7.8392359, 47.4686822 ], + [ 7.8392343, 47.4686885 ], + [ 7.8390922, 47.4686959 ], + [ 7.839091, 47.468696 ], + [ 7.8390767, 47.4686967 ], + [ 7.8387454, 47.46877 ], + [ 7.8386517, 47.4688422 ], + [ 7.8386484, 47.4688616 ], + [ 7.8385275, 47.4695678 ], + [ 7.8385979, 47.4697496 ], + [ 7.838677, 47.469834 ], + [ 7.8387867, 47.4698627 ], + [ 7.8389111, 47.4698739 ], + [ 7.8390272, 47.4698639 ], + [ 7.8391873, 47.4698501 ], + [ 7.8392915, 47.4697792 ], + [ 7.8392945, 47.4696811 ], + [ 7.8392983, 47.4695542 ], + [ 7.839323, 47.469539 ], + [ 7.8393301, 47.4694633 ], + [ 7.8393089, 47.4693709 ], + [ 7.8393326, 47.4692687 ], + [ 7.8399162, 47.4691728 ], + [ 7.8399654, 47.4691176 ], + [ 7.8401451, 47.4691027 ], + [ 7.8402638, 47.4690929 ], + [ 7.8405059, 47.4690728 ], + [ 7.8405622, 47.4690449 ], + [ 7.84073, 47.4689477 ], + [ 7.8407496, 47.4689 ], + [ 7.8407644, 47.4688639 ], + [ 7.8408203, 47.4687276 ], + [ 7.8408321, 47.4686987 ], + [ 7.8408937, 47.4685486 ], + [ 7.8408958, 47.4685434 ], + [ 7.8410957, 47.468056 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr071", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Chriesmatt", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Chriesmatt", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Chriesmatt", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Chriesmatt", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7301952, 47.3958983 ], + [ 7.7302342, 47.3959244 ], + [ 7.7304022, 47.3960597 ], + [ 7.7305122, 47.3961676 ], + [ 7.7305437, 47.3961985 ], + [ 7.7305547, 47.3962093 ], + [ 7.7306632, 47.3963233 ], + [ 7.7307568, 47.3964933 ], + [ 7.7307397, 47.3965014 ], + [ 7.7308219, 47.3966828 ], + [ 7.7309322, 47.3967498 ], + [ 7.7310331, 47.3967955 ], + [ 7.7314225, 47.3969718 ], + [ 7.7317827999999995, 47.3971463 ], + [ 7.7323104, 47.3974048 ], + [ 7.73241, 47.3974588 ], + [ 7.7327395, 47.3976322 ], + [ 7.733409, 47.397951 ], + [ 7.7334172, 47.3979549 ], + [ 7.7335335, 47.3978375 ], + [ 7.7337561, 47.3976129 ], + [ 7.7342032, 47.3973347 ], + [ 7.7344167, 47.3972562 ], + [ 7.7346687, 47.3972304 ], + [ 7.7350284, 47.3967634 ], + [ 7.7350471, 47.3967391 ], + [ 7.7351849999999995, 47.3964238 ], + [ 7.7352521, 47.3964091 ], + [ 7.7353188, 47.3963554 ], + [ 7.7353698, 47.396300600000004 ], + [ 7.7355838, 47.3962156 ], + [ 7.7356031, 47.3960939 ], + [ 7.7356205, 47.3959835 ], + [ 7.7357043, 47.3958711 ], + [ 7.7358066, 47.3957405 ], + [ 7.7358832, 47.3956793 ], + [ 7.7360293, 47.3955498 ], + [ 7.7360839, 47.3954681 ], + [ 7.7361594, 47.3953781 ], + [ 7.7361168, 47.3950761 ], + [ 7.736091, 47.3949845 ], + [ 7.7360685, 47.3949048 ], + [ 7.7360688, 47.394822 ], + [ 7.7360221, 47.3947271 ], + [ 7.7359981, 47.3946447 ], + [ 7.7359348, 47.3945356 ], + [ 7.7362374, 47.3944713 ], + [ 7.7363169, 47.3944404 ], + [ 7.7364293, 47.3943853 ], + [ 7.7364703, 47.3943743 ], + [ 7.7364695, 47.3943734 ], + [ 7.736944, 47.3940375 ], + [ 7.7371362, 47.3939015 ], + [ 7.7371405, 47.3938973 ], + [ 7.7371572, 47.3938815 ], + [ 7.7371187, 47.393855 ], + [ 7.7370788, 47.3938294 ], + [ 7.7370376, 47.3938047 ], + [ 7.7369953, 47.393781 ], + [ 7.7369517, 47.3937584 ], + [ 7.7369071, 47.3937367 ], + [ 7.7368614, 47.3937161 ], + [ 7.7368146, 47.3936966 ], + [ 7.7367669, 47.3936782 ], + [ 7.7367183, 47.393661 ], + [ 7.7367016, 47.3936558 ], + [ 7.7363675, 47.3935925 ], + [ 7.7363544, 47.3935941 ], + [ 7.7359843, 47.3935023 ], + [ 7.735877, 47.393469 ], + [ 7.7358404, 47.3934513 ], + [ 7.7358158, 47.3934394 ], + [ 7.7356277, 47.3933935 ], + [ 7.7356161, 47.3933896 ], + [ 7.7355865, 47.3934015 ], + [ 7.7354574, 47.3933748 ], + [ 7.7354415, 47.3933745 ], + [ 7.7353837, 47.3933732 ], + [ 7.735388, 47.3933625 ], + [ 7.7352951999999995, 47.3933305 ], + [ 7.7351522, 47.3932879 ], + [ 7.7351412, 47.3932847 ], + [ 7.7351075, 47.3932785 ], + [ 7.7351083, 47.3932593 ], + [ 7.7351138, 47.3932345 ], + [ 7.7349803, 47.3932098 ], + [ 7.7347937, 47.3931878 ], + [ 7.734439, 47.393186299999996 ], + [ 7.7342683, 47.3932008 ], + [ 7.7338365, 47.3932396 ], + [ 7.7335858, 47.3932616 ], + [ 7.7330516, 47.3933418 ], + [ 7.7328877, 47.393363 ], + [ 7.7319893, 47.3934787 ], + [ 7.7310303000000005, 47.3935988 ], + [ 7.7308689, 47.3939064 ], + [ 7.7307266, 47.3941588 ], + [ 7.7306127, 47.3943822 ], + [ 7.7305029, 47.3949144 ], + [ 7.7304679, 47.3950841 ], + [ 7.7304077, 47.3952638 ], + [ 7.7302979, 47.3955915 ], + [ 7.7302143999999995, 47.395841 ], + [ 7.7301952, 47.3958983 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr018", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Fuchsloch", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Fuchsloch", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Fuchsloch", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Fuchsloch", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4347711, 47.3979221 ], + [ 7.4355477, 47.3978036 ], + [ 7.4362545, 47.3976915 ], + [ 7.4371469, 47.3976637 ], + [ 7.4365697, 47.3970746 ], + [ 7.4362681, 47.3963669 ], + [ 7.4360102999999995, 47.3963463 ], + [ 7.4355934, 47.3964245 ], + [ 7.435045, 47.3965275 ], + [ 7.4350004, 47.3967039 ], + [ 7.4344412, 47.3969303 ], + [ 7.4344278, 47.3969535 ], + [ 7.4344101, 47.3969775 ], + [ 7.4343731, 47.3970072 ], + [ 7.4343256, 47.3970386 ], + [ 7.4342238, 47.3970854 ], + [ 7.4340842, 47.3971708 ], + [ 7.4340678, 47.3971979 ], + [ 7.4340417, 47.3972165 ], + [ 7.4340046, 47.3972298 ], + [ 7.4339718, 47.3972355 ], + [ 7.433944, 47.3972367 ], + [ 7.4339137, 47.3972264 ], + [ 7.4338624, 47.3972247 ], + [ 7.4338128, 47.3972344 ], + [ 7.4337127, 47.3972726 ], + [ 7.4336, 47.3972966 ], + [ 7.4335638, 47.397292 ], + [ 7.4334999, 47.3972966 ], + [ 7.433351, 47.3973034 ], + [ 7.4333013, 47.3973063 ], + [ 7.4332241, 47.3973204 ], + [ 7.4332358, 47.3973535 ], + [ 7.4332253, 47.3973969 ], + [ 7.4332047, 47.39744 ], + [ 7.4331702, 47.3974943 ], + [ 7.4331281, 47.397546 ], + [ 7.4330857, 47.3975874 ], + [ 7.4330524, 47.3976276 ], + [ 7.4330066, 47.3976636 ], + [ 7.4329422, 47.3977053 ], + [ 7.4329023, 47.3977476 ], + [ 7.4328253, 47.3978035 ], + [ 7.4327445, 47.3978441 ], + [ 7.4326436, 47.39789 ], + [ 7.432557, 47.3978258 ], + [ 7.4323261, 47.3979494 ], + [ 7.432256, 47.3979021 ], + [ 7.4321137, 47.3979945 ], + [ 7.4315529, 47.39828 ], + [ 7.4311659, 47.3984628 ], + [ 7.4311042, 47.3984056 ], + [ 7.4310482, 47.3984018 ], + [ 7.4308799, 47.3984323 ], + [ 7.4307563, 47.3984783 ], + [ 7.4305378, 47.3985084 ], + [ 7.4304425, 47.3985122 ], + [ 7.4303696, 47.3984665 ], + [ 7.4302631, 47.3983827 ], + [ 7.4302174, 47.3983393 ], + [ 7.4298812, 47.3985001 ], + [ 7.4291867, 47.3988225 ], + [ 7.4290423, 47.3988896 ], + [ 7.4290129, 47.3989032 ], + [ 7.4289487, 47.3989563 ], + [ 7.4289148, 47.3989794 ], + [ 7.4288827, 47.3990012 ], + [ 7.4288215, 47.3990391 ], + [ 7.4287461, 47.399079 ], + [ 7.4286918, 47.3991076 ], + [ 7.42864, 47.3991306 ], + [ 7.4285684, 47.3991552 ], + [ 7.4284778, 47.3991869 ], + [ 7.4283831, 47.3992182 ], + [ 7.4282955, 47.3992473 ], + [ 7.428183, 47.3992835 ], + [ 7.4281009000000005, 47.3993094 ], + [ 7.4280155, 47.3993419 ], + [ 7.4279096, 47.399387 ], + [ 7.4277307, 47.3994634 ], + [ 7.427581, 47.3995275 ], + [ 7.4274772, 47.399574 ], + [ 7.4274961, 47.3995837 ], + [ 7.4272358, 47.3996736 ], + [ 7.4268954, 47.3997998 ], + [ 7.4268177, 47.3998291 ], + [ 7.4267554, 47.3998527 ], + [ 7.4264535, 47.39998 ], + [ 7.4262806999999995, 47.4000458 ], + [ 7.4261959, 47.4000658 ], + [ 7.4261192, 47.400075 ], + [ 7.4259489, 47.4001103 ], + [ 7.4258116, 47.4001676 ], + [ 7.4257905, 47.4001792 ], + [ 7.42577, 47.4001913 ], + [ 7.42575, 47.4002038 ], + [ 7.4257307, 47.4002167 ], + [ 7.425712, 47.4002301 ], + [ 7.425694, 47.4002438 ], + [ 7.4256766, 47.400258 ], + [ 7.4256599, 47.4002725 ], + [ 7.4256439, 47.4002874 ], + [ 7.4256259, 47.4003044 ], + [ 7.4256152, 47.4003135 ], + [ 7.4256053, 47.4003231 ], + [ 7.4255962, 47.4003329 ], + [ 7.4255878, 47.4003431 ], + [ 7.4255803, 47.4003536 ], + [ 7.4255736, 47.4003644 ], + [ 7.4255677, 47.4003753 ], + [ 7.4255627, 47.4003865 ], + [ 7.4255586, 47.4003978 ], + [ 7.4255553, 47.4004092 ], + [ 7.425553, 47.4004208 ], + [ 7.4255516, 47.4004324 ], + [ 7.4255511, 47.4004441 ], + [ 7.4255515, 47.4004558 ], + [ 7.4255528, 47.4004674 ], + [ 7.425555, 47.400479 ], + [ 7.4256423, 47.4008715 ], + [ 7.4256434, 47.4008975 ], + [ 7.4256473, 47.4009916 ], + [ 7.4256202, 47.4011127 ], + [ 7.4257233, 47.4012386 ], + [ 7.426351, 47.4011964 ], + [ 7.426472, 47.4011969 ], + [ 7.4265672, 47.4011933 ], + [ 7.4272114, 47.4012526 ], + [ 7.4273418, 47.4012618 ], + [ 7.4274293, 47.4012393 ], + [ 7.4281115, 47.4012246 ], + [ 7.4284236, 47.4012173 ], + [ 7.428434, 47.4007565 ], + [ 7.4286526, 47.4007365 ], + [ 7.4290322, 47.4006862 ], + [ 7.4294582, 47.4005983 ], + [ 7.4299132, 47.4004414 ], + [ 7.4302798, 47.4002899 ], + [ 7.4306342, 47.400064 ], + [ 7.4309398, 47.3997623 ], + [ 7.4313287, 47.3995234 ], + [ 7.4317639, 47.3991777 ], + [ 7.4323287, 47.3988823 ], + [ 7.4326621, 47.3987314 ], + [ 7.4329862, 47.3986183 ], + [ 7.4331806, 47.3985428 ], + [ 7.4331991, 47.3985051 ], + [ 7.433185, 47.3984141 ], + [ 7.4347711, 47.3979221 ] + ], + [ + [ 7.4257565, 47.4003342 ], + [ 7.4260452, 47.4003531 ], + [ 7.4260232, 47.4004873 ], + [ 7.4257463999999995, 47.4004714 ], + [ 7.4257565, 47.4003342 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns007", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Chestel", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Chestel", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Chestel", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Chestel", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.6717797, 46.7701564 ], + [ 8.6717711, 46.7700152 ], + [ 8.6717517, 46.7698745 ], + [ 8.671721699999999, 46.7697348 ], + [ 8.671681, 46.7695963 ], + [ 8.6716299, 46.7694594 ], + [ 8.6715684, 46.7693246 ], + [ 8.6714967, 46.7691922 ], + [ 8.6714151, 46.7690625 ], + [ 8.671323600000001, 46.768936 ], + [ 8.6712227, 46.7688129 ], + [ 8.6711125, 46.7686936 ], + [ 8.6709934, 46.7685784 ], + [ 8.6708657, 46.7684677 ], + [ 8.6707297, 46.7683617 ], + [ 8.6705858, 46.7682608 ], + [ 8.6704345, 46.7681652 ], + [ 8.6702761, 46.7680751 ], + [ 8.670111, 46.7679909 ], + [ 8.6699397, 46.7679127 ], + [ 8.6697627, 46.7678408 ], + [ 8.6695805, 46.7677753 ], + [ 8.6693936, 46.7677165 ], + [ 8.6692024, 46.7676645 ], + [ 8.6690075, 46.7676194 ], + [ 8.6688095, 46.7675814 ], + [ 8.6686088, 46.7675506 ], + [ 8.6684061, 46.767527 ], + [ 8.6682018, 46.7675108 ], + [ 8.6679966, 46.7675019 ], + [ 8.667791, 46.7675004 ], + [ 8.6675856, 46.7675063 ], + [ 8.6673809, 46.7675196 ], + [ 8.6671775, 46.7675402 ], + [ 8.6669759, 46.7675682 ], + [ 8.6667767, 46.7676033 ], + [ 8.6665805, 46.7676455 ], + [ 8.6663878, 46.7676948 ], + [ 8.6661991, 46.7677509 ], + [ 8.6660149, 46.7678137 ], + [ 8.6658358, 46.767883 ], + [ 8.6656622, 46.7679587 ], + [ 8.6654946, 46.7680406 ], + [ 8.6653334, 46.7681283 ], + [ 8.6651792, 46.7682217 ], + [ 8.6650322, 46.7683206 ], + [ 8.6648931, 46.7684246 ], + [ 8.664762, 46.7685334 ], + [ 8.6646394, 46.7686468 ], + [ 8.6645256, 46.7687645 ], + [ 8.6644209, 46.7688861 ], + [ 8.6643256, 46.7690113 ], + [ 8.66424, 46.7691398 ], + [ 8.6641643, 46.7692711 ], + [ 8.6640987, 46.769405 ], + [ 8.6640434, 46.7695411 ], + [ 8.6639985, 46.769679 ], + [ 8.6639642, 46.7698183 ], + [ 8.6639405, 46.7699586 ], + [ 8.6639276, 46.7700996 ], + [ 8.6639254, 46.7702409 ], + [ 8.663934, 46.7703821 ], + [ 8.6639533, 46.7705227 ], + [ 8.6639834, 46.7706625 ], + [ 8.664024, 46.770801 ], + [ 8.6640751, 46.7709378 ], + [ 8.664136599999999, 46.7710727 ], + [ 8.6642082, 46.7712051 ], + [ 8.6642899, 46.7713348 ], + [ 8.6643813, 46.7714613 ], + [ 8.6644822, 46.7715844 ], + [ 8.6645924, 46.7717037 ], + [ 8.6647115, 46.7718189 ], + [ 8.6648392, 46.7719296 ], + [ 8.6649752, 46.7720356 ], + [ 8.6651191, 46.7721365 ], + [ 8.6652704, 46.7722322 ], + [ 8.6654288, 46.7723223 ], + [ 8.6655939, 46.7724065 ], + [ 8.6657652, 46.7724847 ], + [ 8.6659422, 46.7725566 ], + [ 8.6661244, 46.7726221 ], + [ 8.6663114, 46.7726809 ], + [ 8.6665026, 46.7727329 ], + [ 8.6666975, 46.772778 ], + [ 8.6668955, 46.772816 ], + [ 8.6670962, 46.772846799999996 ], + [ 8.667299, 46.7728704 ], + [ 8.6675032, 46.7728866 ], + [ 8.6677084, 46.7728955 ], + [ 8.6679141, 46.772897 ], + [ 8.6681195, 46.7728911 ], + [ 8.6683243, 46.7728778 ], + [ 8.6685277, 46.7728572 ], + [ 8.6687293, 46.7728292 ], + [ 8.6689284, 46.7727941 ], + [ 8.6691247, 46.7727519 ], + [ 8.6693174, 46.7727026 ], + [ 8.6695061, 46.7726465 ], + [ 8.6696903, 46.7725837 ], + [ 8.6698695, 46.7725143 ], + [ 8.670043100000001, 46.7724386 ], + [ 8.6702107, 46.7723568 ], + [ 8.6703719, 46.772269 ], + [ 8.6705261, 46.7721756 ], + [ 8.670673, 46.7720768 ], + [ 8.6708122, 46.7719728 ], + [ 8.6709433, 46.7718639 ], + [ 8.6710659, 46.7717505 ], + [ 8.6711797, 46.7716328 ], + [ 8.6712844, 46.7715112 ], + [ 8.6713796, 46.771386 ], + [ 8.6714652, 46.7712575 ], + [ 8.6715409, 46.7711262 ], + [ 8.6716065, 46.7709923 ], + [ 8.6716618, 46.7708562 ], + [ 8.6717067, 46.7707183 ], + [ 8.671741, 46.770579 ], + [ 8.6717646, 46.7704386 ], + [ 8.6717775, 46.7702976 ], + [ 8.6717797, 46.7701564 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0089", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Plattischachen", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Plattischachen", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Plattischachen", + "lang" : "it-CH" + }, + { + "text" : "Substation Plattischachen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5701354, 47.4390485 ], + [ 7.5674792, 47.4397355 ], + [ 7.5647835, 47.4410344 ], + [ 7.5640234, 47.4413268 ], + [ 7.5638702, 47.4414311 ], + [ 7.562808, 47.4416485 ], + [ 7.5616989, 47.4420021 ], + [ 7.5614749, 47.4421305 ], + [ 7.5608733, 47.4424115 ], + [ 7.5609327, 47.4425557 ], + [ 7.5602751999999995, 47.4425739 ], + [ 7.5602461, 47.4425859 ], + [ 7.5599536, 47.4426962 ], + [ 7.5599468, 47.4426967 ], + [ 7.5598304, 47.4427557 ], + [ 7.5596514, 47.442897 ], + [ 7.5595154, 47.4430626 ], + [ 7.559398, 47.4431805 ], + [ 7.5593792, 47.4434077 ], + [ 7.5593462, 47.4437217 ], + [ 7.5595647, 47.4439162 ], + [ 7.5597027, 47.4440406 ], + [ 7.5597259, 47.4441691 ], + [ 7.5598411, 47.4443559 ], + [ 7.5599621, 47.444527 ], + [ 7.5603295, 47.4445812 ], + [ 7.5605247, 47.4446082 ], + [ 7.5606166, 47.4446237 ], + [ 7.560668, 47.4445458 ], + [ 7.560398, 47.4444331 ], + [ 7.5601969, 47.444301 ], + [ 7.560408, 47.4437557 ], + [ 7.5605681, 47.4434791 ], + [ 7.5606653999999995, 47.4433592 ], + [ 7.5607572, 47.4433903 ], + [ 7.560683, 47.4435344 ], + [ 7.560689, 47.4436785 ], + [ 7.5609703, 47.4436821 ], + [ 7.561554, 47.4438136 ], + [ 7.562006, 47.4435982 ], + [ 7.5624933, 47.4434031 ], + [ 7.5638036, 47.4429267 ], + [ 7.5641954, 47.4427984 ], + [ 7.5648933, 47.4426169 ], + [ 7.5656888, 47.4422656 ], + [ 7.5658464, 47.4421633 ], + [ 7.5660397, 47.4420171 ], + [ 7.566312, 47.4419048 ], + [ 7.5666635, 47.4418606 ], + [ 7.5668785, 47.4417679 ], + [ 7.5676601, 47.4416405 ], + [ 7.5676672, 47.4416403 ], + [ 7.5693351, 47.4412205 ], + [ 7.5718143, 47.4405105 ], + [ 7.5714676, 47.4402036 ], + [ 7.5701354, 47.4390485 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr020", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Cholholz", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Cholholz", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Cholholz", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Cholholz", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.2224876, 47.4264687 ], + [ 8.2224801, 47.4263276 ], + [ 8.2224617, 47.4261869 ], + [ 8.2224325, 47.426047 ], + [ 8.2223925, 47.4259084 ], + [ 8.2223419, 47.4257713 ], + [ 8.2222808, 47.4256363 ], + [ 8.2222093, 47.4255036 ], + [ 8.222127799999999, 47.4253737 ], + [ 8.2220363, 47.4252468 ], + [ 8.2219351, 47.4251233 ], + [ 8.2218246, 47.4250036 ], + [ 8.221705, 47.424888 ], + [ 8.2215766, 47.4247768 ], + [ 8.2214399, 47.4246703 ], + [ 8.2212951, 47.4245688 ], + [ 8.2211427, 47.4244726 ], + [ 8.2209831, 47.4243819 ], + [ 8.2208167, 47.424297 ], + [ 8.220644, 47.4242182 ], + [ 8.2204654, 47.4241456 ], + [ 8.2202815, 47.4240794 ], + [ 8.2200927, 47.4240199 ], + [ 8.2198996, 47.4239671 ], + [ 8.2197027, 47.4239213 ], + [ 8.2195026, 47.4238825 ], + [ 8.2192997, 47.4238509 ], + [ 8.2190947, 47.4238265 ], + [ 8.2188881, 47.4238095 ], + [ 8.2186804, 47.4237998 ], + [ 8.2184723, 47.4237975 ], + [ 8.2182643, 47.4238026 ], + [ 8.2180569, 47.4238151 ], + [ 8.2178508, 47.4238349 ], + [ 8.2176465, 47.4238621 ], + [ 8.2174446, 47.4238964 ], + [ 8.2172457, 47.4239379 ], + [ 8.2170502, 47.4239863 ], + [ 8.2168586, 47.4240417 ], + [ 8.2166717, 47.4241038 ], + [ 8.2164897, 47.4241724 ], + [ 8.2163133, 47.4242474 ], + [ 8.216143, 47.4243285 ], + [ 8.2159791, 47.4244156 ], + [ 8.2158222, 47.4245085 ], + [ 8.2156726, 47.4246067 ], + [ 8.2155308, 47.4247101 ], + [ 8.2153972, 47.4248184 ], + [ 8.2152721, 47.4249314 ], + [ 8.2151559, 47.4250486 ], + [ 8.2150489, 47.4251697 ], + [ 8.2149514, 47.4252945 ], + [ 8.2148637, 47.4254226 ], + [ 8.2147859, 47.4255537 ], + [ 8.2147184, 47.4256873 ], + [ 8.2146612, 47.4258231 ], + [ 8.2146146, 47.4259608 ], + [ 8.2145787, 47.4261 ], + [ 8.2145536, 47.4262402 ], + [ 8.2145393, 47.4263811 ], + [ 8.2145359, 47.4265224 ], + [ 8.2145434, 47.4266635 ], + [ 8.2145618, 47.4268042 ], + [ 8.214591, 47.4269441 ], + [ 8.214631, 47.4270828 ], + [ 8.2146816, 47.4272198 ], + [ 8.2147427, 47.4273548 ], + [ 8.2148141, 47.4274875 ], + [ 8.2148956, 47.4276175 ], + [ 8.2149871, 47.4277444 ], + [ 8.2150882, 47.4278678 ], + [ 8.2151988, 47.4279876 ], + [ 8.2153184, 47.4281032 ], + [ 8.2154467, 47.4282144 ], + [ 8.2155835, 47.4283209 ], + [ 8.2157283, 47.4284224 ], + [ 8.2158807, 47.4285186 ], + [ 8.2160403, 47.4286093 ], + [ 8.2162067, 47.4286942 ], + [ 8.2163794, 47.428773 ], + [ 8.216558, 47.4288456 ], + [ 8.2167419, 47.4289118 ], + [ 8.2169307, 47.4289714 ], + [ 8.2171238, 47.4290241 ], + [ 8.2173207, 47.4290699 ], + [ 8.2175208, 47.4291087 ], + [ 8.2177237, 47.4291403 ], + [ 8.2179288, 47.4291647 ], + [ 8.2181354, 47.4291817 ], + [ 8.2183431, 47.4291914 ], + [ 8.2185513, 47.4291937 ], + [ 8.2187593, 47.4291886 ], + [ 8.2189667, 47.4291761 ], + [ 8.2191728, 47.4291563 ], + [ 8.219377099999999, 47.4291292 ], + [ 8.219579, 47.4290948 ], + [ 8.219778, 47.4290534 ], + [ 8.2199735, 47.4290049 ], + [ 8.2201651, 47.4289495 ], + [ 8.220352, 47.4288875 ], + [ 8.220534, 47.4288188 ], + [ 8.2207104, 47.4287438 ], + [ 8.2208808, 47.4286627 ], + [ 8.2210447, 47.4285755 ], + [ 8.2212016, 47.4284827 ], + [ 8.2213512, 47.4283845 ], + [ 8.2214929, 47.428281 ], + [ 8.2216265, 47.4281727 ], + [ 8.2217516, 47.4280598 ], + [ 8.2218678, 47.4279426 ], + [ 8.2219748, 47.4278214 ], + [ 8.2220723, 47.4276966 ], + [ 8.22216, 47.4275685 ], + [ 8.2222378, 47.4274374 ], + [ 8.2223053, 47.4273038 ], + [ 8.2223624, 47.427168 ], + [ 8.222409, 47.4270303 ], + [ 8.2224449, 47.4268912 ], + [ 8.22247, 47.4267509 ], + [ 8.2224843, 47.42661 ], + [ 8.2224876, 47.4264687 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0016", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Birr", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Birr", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Birr", + "lang" : "it-CH" + }, + { + "text" : "Substation Birr", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.2088402, 46.5327413 ], + [ 7.2088351, 46.5327089 ], + [ 7.2086860999999995, 46.5325098 ], + [ 7.2084111, 46.532189 ], + [ 7.2080709, 46.5318914 ], + [ 7.2077589, 46.5316893 ], + [ 7.2075297, 46.5316492 ], + [ 7.207316, 46.5316308 ], + [ 7.2071977, 46.5315604 ], + [ 7.206995, 46.5314071 ], + [ 7.2068407, 46.5312295 ], + [ 7.2066626, 46.5311095 ], + [ 7.2064611, 46.5309958 ], + [ 7.2062372, 46.5309215 ], + [ 7.2060448, 46.5308186 ], + [ 7.2059007, 46.5306861 ], + [ 7.2056292, 46.5304606 ], + [ 7.2051852, 46.5300477 ], + [ 7.2048957, 46.5297826 ], + [ 7.2048156, 46.5296331 ], + [ 7.2048108, 46.5295198 ], + [ 7.2048297, 46.5293786 ], + [ 7.204872, 46.5292428 ], + [ 7.2048661, 46.5291079 ], + [ 7.2048005, 46.5289009 ], + [ 7.204718, 46.5287001 ], + [ 7.2045703, 46.5284947 ], + [ 7.2043935, 46.5283738 ], + [ 7.2041516, 46.5282725 ], + [ 7.2039211, 46.5282145 ], + [ 7.2035589, 46.5281777 ], + [ 7.2032318, 46.5281788 ], + [ 7.2031316, 46.5281355 ], + [ 7.2029796, 46.5280263 ], + [ 7.2027365, 46.52789 ], + [ 7.2025428, 46.5277699 ], + [ 7.2023166, 46.5276345 ], + [ 7.2021646, 46.5275244 ], + [ 7.2020126, 46.5274099 ], + [ 7.201883, 46.5272378 ], + [ 7.2018174, 46.5270478 ], + [ 7.2017989, 46.5268229 ], + [ 7.2018401, 46.5266413 ], + [ 7.2018149, 46.5264388 ], + [ 7.2017728, 46.5262265 ], + [ 7.2016498, 46.526031 ], + [ 7.2014931, 46.525804 ], + [ 7.2014342, 46.5255736 ], + [ 7.2013662, 46.5253278 ], + [ 7.2012053, 46.5251791 ], + [ 7.2010521, 46.5250411 ], + [ 7.2008439, 46.5249669 ], + [ 7.2006672, 46.524846 ], + [ 7.2003801, 46.5246331 ], + [ 7.2000737, 46.5243635 ], + [ 7.1996448, 46.5241017 ], + [ 7.1992461, 46.523777 ], + [ 7.1989253, 46.5235308 ], + [ 7.1987022, 46.5232928 ], + [ 7.1984647, 46.5230836 ], + [ 7.1982989, 46.522862 ], + [ 7.1981622, 46.5225324 ], + [ 7.1979772, 46.5222208 ], + [ 7.1977988, 46.5218921 ], + [ 7.1975331, 46.521582 ], + [ 7.1972189, 46.5213187 ], + [ 7.1967472, 46.5210073 ], + [ 7.1964814, 46.5207081 ], + [ 7.1962595, 46.5204935 ], + [ 7.1959496, 46.5201618 ], + [ 7.1957132999999995, 46.5199697 ], + [ 7.1953351, 46.5197296 ], + [ 7.1950425, 46.5196004 ], + [ 7.1947072, 46.5194044 ], + [ 7.1945191, 46.5192169 ], + [ 7.1942702, 46.5189294 ], + [ 7.1941225, 46.5187294 ], + [ 7.1938952, 46.5185706 ], + [ 7.1935948, 46.5184251 ], + [ 7.1930031, 46.5181612 ], + [ 7.1924686, 46.5179189 ], + [ 7.1921086, 46.5177175 ], + [ 7.1913477, 46.5171365 ], + [ 7.1907736, 46.516726 ], + [ 7.190375, 46.5164013 ], + [ 7.1900767, 46.5160921 ], + [ 7.1898344, 46.5157983 ], + [ 7.1897079999999995, 46.5155254 ], + [ 7.1895369, 46.5153316 ], + [ 7.1892734, 46.515117 ], + [ 7.1890539, 46.5149591 ], + [ 7.1863823, 46.5130874 ], + [ 7.185583, 46.5123831 ], + [ 7.1853412, 46.5122638 ], + [ 7.1851091, 46.512015 ], + [ 7.1847703, 46.5117345 ], + [ 7.1843562, 46.5114277 ], + [ 7.1839793, 46.5112101 ], + [ 7.1835518, 46.5109599 ], + [ 7.1830906, 46.5106818 ], + [ 7.1825629, 46.5104116 ], + [ 7.1821535, 46.5101939 ], + [ 7.1818902, 46.5099576 ], + [ 7.1816052, 46.5096026 ], + [ 7.1813504, 46.509208 ], + [ 7.1762479, 46.5095435 ], + [ 7.1762146, 46.5097017 ], + [ 7.1761517, 46.5097709 ], + [ 7.1760449, 46.5097724 ], + [ 7.175946, 46.5097353 ], + [ 7.1758369, 46.5096649 ], + [ 7.1756917, 46.5095323 ], + [ 7.1755206, 46.5093439 ], + [ 7.175273, 46.5090959 ], + [ 7.1750658, 46.5088301 ], + [ 7.1749472, 46.5085734 ], + [ 7.1748267, 46.5084346 ], + [ 7.1747188, 46.5083804 ], + [ 7.1746411, 46.5082921 ], + [ 7.1745779, 46.5081471 ], + [ 7.1744339, 46.5080199 ], + [ 7.1743337, 46.5079945 ], + [ 7.1741877, 46.5080139 ], + [ 7.1740597, 46.5080784 ], + [ 7.1739914, 46.5082042 ], + [ 7.1739399, 46.5083345 ], + [ 7.1738681, 46.5083757 ], + [ 7.1737558, 46.5084231 ], + [ 7.1736526, 46.5084813 ], + [ 7.1735335, 46.5085845 ], + [ 7.1734225, 46.5086382 ], + [ 7.1733392, 46.5086173 ], + [ 7.1732873999999995, 46.5085561 ], + [ 7.1732773, 46.508494 ], + [ 7.1732804, 46.5083932 ], + [ 7.1732993, 46.5082574 ], + [ 7.1732946, 46.5081558 ], + [ 7.1732056, 46.5079774 ], + [ 7.1731436, 46.507855 ], + [ 7.1731197, 46.5076867 ], + [ 7.1731048, 46.5075346 ], + [ 7.1732058, 46.5073918 ], + [ 7.1733055, 46.5072607 ], + [ 7.1732785, 46.5071878 ], + [ 7.1732043, 46.5071777 ], + [ 7.1730728, 46.5071639 ], + [ 7.1729974, 46.5071143 ], + [ 7.1729613, 46.5070368 ], + [ 7.172897, 46.5068694 ], + [ 7.1728068, 46.5066793 ], + [ 7.1726906, 46.506456 ], + [ 7.1725407, 46.5062001 ], + [ 7.1724427, 46.5060047 ], + [ 7.1723313, 46.5058722 ], + [ 7.1722343, 46.5057218 ], + [ 7.1721801, 46.5056218 ], + [ 7.172152, 46.5055156 ], + [ 7.1721384, 46.5053698 ], + [ 7.1721651, 46.5052394 ], + [ 7.1721658999999995, 46.5050757 ], + [ 7.1721522, 46.5049407 ], + [ 7.1721137, 46.5048237 ], + [ 7.171981, 46.5047757 ], + [ 7.1718441, 46.5048069 ], + [ 7.1717329, 46.504893 ], + [ 7.1716151, 46.5050141 ], + [ 7.1715119, 46.5050724 ], + [ 7.1713423, 46.5051097 ], + [ 7.1710297, 46.5050991 ], + [ 7.1709335, 46.5053148 ], + [ 7.1705758, 46.5057394 ], + [ 7.170108, 46.5062727 ], + [ 7.1699297, 46.5065016 ], + [ 7.1698692, 46.5066211 ], + [ 7.1698347, 46.5067452 ], + [ 7.1697753, 46.5068872 ], + [ 7.1696901, 46.5069904 ], + [ 7.1695263, 46.5071798 ], + [ 7.1693782, 46.5073576 ], + [ 7.1693358, 46.5075104 ], + [ 7.1692842, 46.5076632 ], + [ 7.1692575, 46.507799 ], + [ 7.1691802, 46.5078852 ], + [ 7.1690207, 46.5079783 ], + [ 7.1690163, 46.50808 ], + [ 7.1691054, 46.5082466 ], + [ 7.1692112, 46.5084421 ], + [ 7.1693847, 46.5086692 ], + [ 7.1695334, 46.5088917 ], + [ 7.1694874, 46.5089663 ], + [ 7.1694729, 46.5090166 ], + [ 7.1694462, 46.5091299 ], + [ 7.1694486, 46.5091803 ], + [ 7.1693362, 46.5092448 ], + [ 7.1692137, 46.5092643 ], + [ 7.1690924, 46.5092775 ], + [ 7.1689892, 46.5093366 ], + [ 7.168697, 46.5094097 ], + [ 7.1684712, 46.5094766 ], + [ 7.1682364, 46.5095318 ], + [ 7.167968, 46.5095429 ], + [ 7.1674665, 46.5095084 ], + [ 7.167098, 46.5094652 ], + [ 7.1670058, 46.5094164 ], + [ 7.1669437, 46.5093218 ], + [ 7.166848, 46.5091768 ], + [ 7.1666141, 46.5090521 ], + [ 7.1663915, 46.5090119 ], + [ 7.1660712, 46.5089788 ], + [ 7.1656452999999996, 46.5089535 ], + [ 7.1652375, 46.5089561 ], + [ 7.1648464, 46.5089866 ], + [ 7.1646587, 46.5090078 ], + [ 7.1645126, 46.5090443 ], + [ 7.1643846, 46.5091142 ], + [ 7.1642849, 46.5092515 ], + [ 7.1642176, 46.5094052 ], + [ 7.1641516, 46.5095814 ], + [ 7.1640451, 46.5097745 ], + [ 7.1639815, 46.5099849 ], + [ 7.1638603, 46.5102292 ], + [ 7.163746, 46.510417 ], + [ 7.1636081, 46.5106451 ], + [ 7.1634599, 46.5108229 ], + [ 7.1633524, 46.5109549 ], + [ 7.1631415, 46.5111783 ], + [ 7.1629124, 46.5113856 ], + [ 7.1626508, 46.5115828 ], + [ 7.1623881, 46.5117459 ], + [ 7.1621364, 46.5117795 ], + [ 7.1619228, 46.5117664 ], + [ 7.1618228, 46.5117068 ], + [ 7.161727, 46.5115959 ], + [ 7.1616741, 46.5114959 ], + [ 7.1616797, 46.5114167 ], + [ 7.1617233, 46.5113026 ], + [ 7.161849, 46.511177 ], + [ 7.1619982, 46.5110442 ], + [ 7.162115, 46.5108844 ], + [ 7.1622136, 46.5107128 ], + [ 7.1623122, 46.5105304 ], + [ 7.1623692, 46.5103435 ], + [ 7.1624769, 46.5101728 ], + [ 7.1625935, 46.5100516 ], + [ 7.1626957, 46.5099484 ], + [ 7.1627775, 46.5097444 ], + [ 7.1627929, 46.5095358 ], + [ 7.1627185, 46.5093116 ], + [ 7.1625292, 46.5091186 ], + [ 7.1623468, 46.5088627 ], + [ 7.1621173, 46.5086535 ], + [ 7.1618473, 46.508456699999996 ], + [ 7.161584, 46.5082249 ], + [ 7.1613699, 46.5077961 ], + [ 7.1612291, 46.5075619 ], + [ 7.1610478, 46.5073465 ], + [ 7.1608184, 46.5071201 ], + [ 7.1605382, 46.5068891 ], + [ 7.1602569, 46.5066078 ], + [ 7.1599429, 46.5063605 ], + [ 7.1596169, 46.5061582 ], + [ 7.1592535, 46.5058955 ], + [ 7.1589701, 46.505777 ], + [ 7.1587127, 46.505675600000004 ], + [ 7.158445, 46.5055454 ], + [ 7.1581269, 46.5053386 ], + [ 7.1579478, 46.5051898 ], + [ 7.1578275, 46.5050347 ], + [ 7.1577384, 46.5048735 ], + [ 7.1576415, 46.504723 ], + [ 7.1574842, 46.5046525 ], + [ 7.1572401, 46.5044944 ], + [ 7.1568611, 46.5042317 ], + [ 7.1565586, 46.5040241 ], + [ 7.156238, 46.5037993 ], + [ 7.1558389, 46.5036444 ], + [ 7.1554209, 46.5036137 ], + [ 7.1553176, 46.5036827 ], + [ 7.1552076, 46.5037814 ], + [ 7.1550537, 46.5038287 ], + [ 7.1548987, 46.5038211 ], + [ 7.1547986, 46.5037777 ], + [ 7.1546593, 46.503753 ], + [ 7.1545109, 46.5037446 ], + [ 7.1543962, 46.5037407 ], + [ 7.1542558, 46.5036936 ], + [ 7.1541199, 46.5037697 ], + [ 7.1539851, 46.5038845 ], + [ 7.1538226, 46.5040739 ], + [ 7.1535857, 46.5042757 ], + [ 7.1534151, 46.5044983 ], + [ 7.153322, 46.5046133 ], + [ 7.1532717, 46.5047724 ], + [ 7.153228, 46.5049081 ], + [ 7.1530843, 46.5049725 ], + [ 7.152973, 46.5050766 ], + [ 7.1523923, 46.5052568 ], + [ 7.1521341, 46.5053074 ], + [ 7.151769, 46.5053713 ], + [ 7.1514106, 46.5054009 ], + [ 7.1511082, 46.5054299 ], + [ 7.1507969, 46.5054021 ], + [ 7.1504621, 46.5053976 ], + [ 7.1502238, 46.5053799 ], + [ 7.1500193, 46.5053785 ], + [ 7.1498564, 46.5053925 ], + [ 7.1497194, 46.5054236 ], + [ 7.1494586, 46.5054625 ], + [ 7.1491654, 46.5054852 ], + [ 7.1488407, 46.5055311 ], + [ 7.1485407, 46.5055996 ], + [ 7.1482149, 46.5056177 ], + [ 7.1478149, 46.5056256 ], + [ 7.1472779, 46.5056809 ], + [ 7.1470035, 46.5055912 ], + [ 7.1468305, 46.5055323 ], + [ 7.1465898, 46.5054759 ], + [ 7.146319, 46.5054302 ], + [ 7.1460561, 46.5053908 ], + [ 7.1457109, 46.5053746 ], + [ 7.1453267, 46.5053548 ], + [ 7.1449919, 46.5053611 ], + [ 7.1446142, 46.5053295 ], + [ 7.1441388, 46.5053049 ], + [ 7.1439457, 46.5053602 ], + [ 7.1438581, 46.5054121 ], + [ 7.1438109, 46.5054696 ], + [ 7.1437583, 46.5055549 ], + [ 7.1437617, 46.5056502 ], + [ 7.1437259, 46.5057752 ], + [ 7.1436834, 46.5059226 ], + [ 7.1436138, 46.5060196 ], + [ 7.1435532, 46.5061337 ], + [ 7.1433895, 46.506306 ], + [ 7.1432311, 46.5064333 ], + [ 7.1430457, 46.5065102 ], + [ 7.1428639, 46.5066428 ], + [ 7.1426537, 46.5067151 ], + [ 7.1424291, 46.506809 ], + [ 7.1422203, 46.5068813 ], + [ 7.141954, 46.5069769 ], + [ 7.1417190999999995, 46.507032 ], + [ 7.141508, 46.5070477 ], + [ 7.1412563, 46.507092 ], + [ 7.1409877999999996, 46.5071201 ], + [ 7.1408, 46.507152 ], + [ 7.1405484, 46.5071738 ], + [ 7.1403866, 46.5072111 ], + [ 7.1402484, 46.507236 ], + [ 7.1400956, 46.5073012 ], + [ 7.1399192, 46.5073889 ], + [ 7.1396869, 46.5074729 ], + [ 7.1394532, 46.5075568 ], + [ 7.1393397, 46.5075808 ], + [ 7.1391846, 46.5075903 ], + [ 7.1389106, 46.507668699999996 ], + [ 7.1386195, 46.5077588 ], + [ 7.1382825, 46.5079117 ], + [ 7.138068, 46.5080686 ], + [ 7.1377489, 46.5080471 ], + [ 7.1374623, 46.5080409 ], + [ 7.1373747, 46.5080937 ], + [ 7.1371658, 46.5081768 ], + [ 7.136958, 46.5082878 ], + [ 7.1367919, 46.5084151 ], + [ 7.136639, 46.5084912 ], + [ 7.1364705, 46.5085627 ], + [ 7.1363153, 46.508601 ], + [ 7.1362605, 46.5086098 ], + [ 7.1364233, 46.5100199 ], + [ 7.1370823, 46.5131044 ], + [ 7.1436757, 46.5221121 ], + [ 7.1450117, 46.5268626 ], + [ 7.1470388, 46.5274894 ], + [ 7.1483539, 46.5284625 ], + [ 7.1483838, 46.5284752 ], + [ 7.1489453, 46.5285162 ], + [ 7.1497258, 46.5283158 ], + [ 7.1507881, 46.5278201 ], + [ 7.1511765, 46.5278121 ], + [ 7.1518464999999996, 46.5275793 ], + [ 7.1519709, 46.527536 ], + [ 7.1519713, 46.5275359 ], + [ 7.1519757, 46.5275344 ], + [ 7.1528526, 46.5273315 ], + [ 7.1536634, 46.5273012 ], + [ 7.1541529, 46.5274032 ], + [ 7.1546202, 46.5272802 ], + [ 7.1549677, 46.5273629 ], + [ 7.1562234, 46.5274128 ], + [ 7.1569136, 46.5269934 ], + [ 7.1569157, 46.5269932 ], + [ 7.1569181, 46.5269918 ], + [ 7.1576256, 46.5269298 ], + [ 7.1578139, 46.5268146 ], + [ 7.157816, 46.5268146 ], + [ 7.1578184, 46.5268132 ], + [ 7.1583436, 46.5268145 ], + [ 7.1585738, 46.5269113 ], + [ 7.1589322, 46.5269194 ], + [ 7.1592982, 46.5272001 ], + [ 7.1596489, 46.5271793 ], + [ 7.1606048, 46.5275883 ], + [ 7.1612166, 46.5277337 ], + [ 7.161797, 46.5281579 ], + [ 7.1627133, 46.5284022 ], + [ 7.1629237, 46.5285466 ], + [ 7.163462, 46.528545199999996 ], + [ 7.1639017, 46.52897 ], + [ 7.1643097000000004, 46.5292175 ], + [ 7.1645503, 46.5295779 ], + [ 7.1653701, 46.5298506 ], + [ 7.1661465, 46.5304453 ], + [ 7.1666495, 46.5307281 ], + [ 7.1671024, 46.5308632 ], + [ 7.1670938, 46.5310116 ], + [ 7.1683805, 46.5314825 ], + [ 7.1686986, 46.5317396 ], + [ 7.1698513, 46.5321588 ], + [ 7.1700601, 46.5321215 ], + [ 7.1702709, 46.5321814 ], + [ 7.170543, 46.5322585 ], + [ 7.1707026, 46.5323929 ], + [ 7.1707292, 46.5325459 ], + [ 7.171188, 46.5328187 ], + [ 7.1712867, 46.5328864 ], + [ 7.1714752, 46.5329903 ], + [ 7.1715351, 46.5330138 ], + [ 7.1716041, 46.5330329 ], + [ 7.1720293999999996, 46.5332129 ], + [ 7.1720971, 46.5332373 ], + [ 7.1721999, 46.5332627 ], + [ 7.172308, 46.5332765 ], + [ 7.1724006, 46.5332794 ], + [ 7.1725466, 46.5332708 ], + [ 7.172643, 46.5332773 ], + [ 7.1727446, 46.5332982 ], + [ 7.1728448, 46.5333335 ], + [ 7.1737104, 46.533842 ], + [ 7.1737832, 46.5338917 ], + [ 7.1738702, 46.5339431 ], + [ 7.174025, 46.53402 ], + [ 7.1742045, 46.5340879 ], + [ 7.1746982, 46.5344218 ], + [ 7.17507, 46.5346377 ], + [ 7.1751361, 46.5347044 ], + [ 7.1752127, 46.5347676 ], + [ 7.1753219, 46.5348416 ], + [ 7.1754428, 46.5349066 ], + [ 7.1755479, 46.535004 ], + [ 7.17567, 46.5350916 ], + [ 7.1757506, 46.5351385 ], + [ 7.1758364, 46.5351801 ], + [ 7.1759262, 46.5352181 ], + [ 7.1760485, 46.5352616 ], + [ 7.17612, 46.535295 ], + [ 7.1761733, 46.5353275 ], + [ 7.17622, 46.5353645 ], + [ 7.1762654, 46.5354096 ], + [ 7.1763017, 46.5354574 ], + [ 7.1763705, 46.5355115 ], + [ 7.1764485, 46.5355513 ], + [ 7.1765045, 46.5355712 ], + [ 7.1765709, 46.5355857 ], + [ 7.1766385, 46.535621 ], + [ 7.1766788, 46.5356517 ], + [ 7.1767138, 46.5356895 ], + [ 7.1767332, 46.5357201 ], + [ 7.1767641, 46.5357904 ], + [ 7.1768056, 46.5358471 ], + [ 7.1768588, 46.5358976 ], + [ 7.1769224, 46.5359428 ], + [ 7.1769718, 46.5359681 ], + [ 7.1770239, 46.5359889 ], + [ 7.1773115, 46.5360822 ], + [ 7.1775131, 46.5361825 ], + [ 7.1776832, 46.5363232 ], + [ 7.1779146, 46.5364506 ], + [ 7.1782051, 46.536481 ], + [ 7.1784664, 46.5366246 ], + [ 7.1785861, 46.5366851 ], + [ 7.1787526, 46.5367584 ], + [ 7.1789257, 46.5368218 ], + [ 7.1790984, 46.5369508 ], + [ 7.1792882, 46.5370682 ], + [ 7.1796329, 46.5372174 ], + [ 7.1803813, 46.5377355 ], + [ 7.1808167, 46.5380063 ], + [ 7.1809988, 46.5380787 ], + [ 7.1813402, 46.5381074 ], + [ 7.181434, 46.5381229 ], + [ 7.181516, 46.5381419 ], + [ 7.1815876, 46.5381646 ], + [ 7.1816631, 46.5381935 ], + [ 7.1817268, 46.5382234 ], + [ 7.1817879, 46.5382577 ], + [ 7.1818621, 46.5382894 ], + [ 7.1819311, 46.5383138 ], + [ 7.1820131, 46.5383365 ], + [ 7.1820978, 46.5383529 ], + [ 7.1821733, 46.5383629 ], + [ 7.1822515, 46.5383685 ], + [ 7.1823388, 46.5383696 ], + [ 7.1873276, 46.542588 ], + [ 7.1906519, 46.5448785 ], + [ 7.1921774, 46.5465568 ], + [ 7.1934173, 46.5461373 ], + [ 7.1966985, 46.5441869 ], + [ 7.2008084, 46.541693 ], + [ 7.2009031, 46.5409106 ], + [ 7.2010701, 46.5400015 ], + [ 7.2036849, 46.5370753 ], + [ 7.2076487, 46.5329068 ], + [ 7.2076508, 46.532908 ], + [ 7.2076534, 46.5329053 ], + [ 7.2082099, 46.5332123 ], + [ 7.2088402, 46.5327413 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00057", + "country" : "CHE", + "name" : [ + { + "text" : "Les Bimis-Ciernes Picat", + "lang" : "de-CH" + }, + { + "text" : "Les Bimis-Ciernes Picat", + "lang" : "fr-CH" + }, + { + "text" : "Les Bimis-Ciernes Picat", + "lang" : "it-CH" + }, + { + "text" : "Les Bimis-Ciernes Picat", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "startDateTime" : "2024-11-15T00:00:00+01:00", + "endDateTime" : "2025-04-15T00:00:00+02:00" + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Generaldirektion für Umwelt", + "lang" : "de-CH" + }, + { + "text" : "Direction générale de l'environnement", + "lang" : "fr-CH" + }, + { + "text" : "Direzione generale dell'Ambiente", + "lang" : "it-CH" + }, + { + "text" : "Environment Department", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.dge@vd.ch", + "phone" : "0041213164422", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5644183, 47.4511518 ], + [ 7.5651668, 47.451516 ], + [ 7.5666231, 47.4520381 ], + [ 7.5687117, 47.4528855 ], + [ 7.5693251, 47.4531704 ], + [ 7.5694946, 47.4529588 ], + [ 7.5702248999999995, 47.4521871 ], + [ 7.5710682, 47.4523815 ], + [ 7.5717662, 47.4525743 ], + [ 7.5726357, 47.4527062 ], + [ 7.57372, 47.452272 ], + [ 7.5748669, 47.4517582 ], + [ 7.5757245, 47.4505884 ], + [ 7.5777899, 47.4503467 ], + [ 7.5779977, 47.450325 ], + [ 7.577857, 47.4500316 ], + [ 7.5778524, 47.4497411 ], + [ 7.5778143, 47.4493299 ], + [ 7.5778245, 47.4490646 ], + [ 7.5778028, 47.4487918 ], + [ 7.5778923, 47.4483114 ], + [ 7.5781429, 47.4480703 ], + [ 7.5784368, 47.4479179 ], + [ 7.5785255, 47.4474364 ], + [ 7.5785742, 47.4470812 ], + [ 7.5783456000000005, 47.4468459 ], + [ 7.5783275, 47.4468044 ], + [ 7.5782385, 47.4465631 ], + [ 7.5779911, 47.4463162 ], + [ 7.5777965, 47.4461761 ], + [ 7.5777657, 47.4460527 ], + [ 7.5777299, 47.4459309 ], + [ 7.5776295000000005, 47.4456918 ], + [ 7.5775293, 47.4454438 ], + [ 7.5774308999999995, 47.4451901 ], + [ 7.5773693, 47.4450232 ], + [ 7.5777377, 47.4447946 ], + [ 7.5777294, 47.4447901 ], + [ 7.5777155, 47.4447988 ], + [ 7.577592, 47.444701 ], + [ 7.577259, 47.4446391 ], + [ 7.5770866, 47.4445653 ], + [ 7.576891, 47.4443748 ], + [ 7.576707, 47.444227 ], + [ 7.5765462, 47.4441766 ], + [ 7.5763452000000004, 47.4441379 ], + [ 7.5760811, 47.4441071 ], + [ 7.5757712, 47.4441113 ], + [ 7.5757816, 47.4441168 ], + [ 7.5756882, 47.4441893 ], + [ 7.5754304999999995, 47.4444349 ], + [ 7.5752603, 47.4445342 ], + [ 7.5751038, 47.4451634 ], + [ 7.5755342, 47.4457001 ], + [ 7.5753337, 47.4458571 ], + [ 7.5753943, 47.4459865 ], + [ 7.5753342, 47.4460547 ], + [ 7.5750234, 47.4462663 ], + [ 7.5742707, 47.4465261 ], + [ 7.5737286, 47.4466289 ], + [ 7.5737892, 47.4467583 ], + [ 7.5734079, 47.446895 ], + [ 7.5728456, 47.4469842 ], + [ 7.5725209, 47.447372 ], + [ 7.5717582, 47.447625 ], + [ 7.5716782, 47.4477818 ], + [ 7.5712168, 47.4480548 ], + [ 7.5708884, 47.448135 ], + [ 7.5704362, 47.448047 ], + [ 7.570145, 47.4480882 ], + [ 7.5699042, 47.448177 ], + [ 7.5699044, 47.4482588 ], + [ 7.5697538, 47.4483067 ], + [ 7.5695231, 47.4484296 ], + [ 7.5693826, 47.4484638 ], + [ 7.568941, 47.4486346 ], + [ 7.5682884999999995, 47.4487716 ], + [ 7.568118, 47.4488944 ], + [ 7.567787, 47.4490788 ], + [ 7.5678331, 47.4491731 ], + [ 7.5667995, 47.4495627 ], + [ 7.5664784, 47.4497061 ], + [ 7.5665187, 47.4497537 ], + [ 7.566318, 47.4498562 ], + [ 7.5663987, 47.4499855 ], + [ 7.565967, 47.4501018 ], + [ 7.5659071, 47.4502314 ], + [ 7.5655361, 47.4505384 ], + [ 7.5653854, 47.4505181 ], + [ 7.5653455, 47.4506408 ], + [ 7.5651549, 47.4507364 ], + [ 7.5647231999999995, 47.4508254 ], + [ 7.5646331, 47.4509482 ], + [ 7.5644524, 47.4510097 ], + [ 7.5644186, 47.4511478 ], + [ 7.5644183, 47.4511518 ] + ], + [ + [ 7.5744063, 47.4473818 ], + [ 7.5746334, 47.4487363 ], + [ 7.5718695, 47.4495421 ], + [ 7.5696601, 47.4504948 ], + [ 7.5690498999999996, 47.4502354 ], + [ 7.5679416, 47.4497735 ], + [ 7.5699364, 47.4488392 ], + [ 7.5727139999999995, 47.4478823 ], + [ 7.5744063, 47.4473818 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr001", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Eggflue", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Eggflue", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Eggflue", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Eggflue", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 5.9888183999999995, 46.2076398 ], + [ 5.9884799, 46.2079778 ], + [ 5.9883027, 46.2080568 ], + [ 5.9874369, 46.2089213 ], + [ 5.9871134999999995, 46.2099501 ], + [ 5.9873818, 46.2109864 ], + [ 5.9882009, 46.2118726 ], + [ 5.9894463, 46.2124737 ], + [ 5.9909282, 46.2126982 ], + [ 5.992421, 46.2125119 ], + [ 5.9936975, 46.2119431 ], + [ 5.9940359999999995, 46.2116051 ], + [ 5.9942132, 46.2115262 ], + [ 5.9950789, 46.2106616 ], + [ 5.9954022, 46.2096328 ], + [ 5.9951337, 46.2085964 ], + [ 5.9943145, 46.2077103 ], + [ 5.9930692, 46.2071093 ], + [ 5.9915875, 46.2068848 ], + [ 5.9900948, 46.2070711 ], + [ 5.9888183999999995, 46.2076398 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-41", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.5816166, 47.2381244 ], + [ 8.5814758, 47.2357719 ], + [ 8.581154399999999, 47.2334275 ], + [ 8.5806534, 47.2310979 ], + [ 8.5799741, 47.2287893 ], + [ 8.5791184, 47.2265081 ], + [ 8.5780887, 47.2242604 ], + [ 8.5768879, 47.2220526 ], + [ 8.5755192, 47.2198906 ], + [ 8.5739864, 47.2177804 ], + [ 8.5722937, 47.2157276 ], + [ 8.5704458, 47.213738 ], + [ 8.5684478, 47.211817 ], + [ 8.5663051, 47.2099698 ], + [ 8.5640236, 47.2082016 ], + [ 8.5616096, 47.2065171 ], + [ 8.5590696, 47.2049209 ], + [ 8.5564108, 47.2034174 ], + [ 8.5536402, 47.2020108 ], + [ 8.5507656, 47.2007048 ], + [ 8.5477948, 47.1995031 ], + [ 8.5447359, 47.198409 ], + [ 8.5415972, 47.1974253 ], + [ 8.5383875, 47.1965549 ], + [ 8.5351154, 47.1958001 ], + [ 8.5317899, 47.1951629 ], + [ 8.5284202, 47.1946451 ], + [ 8.5250153, 47.1942482 ], + [ 8.5215847, 47.1939732 ], + [ 8.5181377, 47.1938208 ], + [ 8.514683699999999, 47.1937915 ], + [ 8.5112322, 47.1938853 ], + [ 8.5077926, 47.1941021 ], + [ 8.5043743, 47.1944411 ], + [ 8.5009867, 47.1949016 ], + [ 8.497639, 47.1954821 ], + [ 8.4943404, 47.1961812 ], + [ 8.4910999, 47.1969969 ], + [ 8.4879263, 47.197927 ], + [ 8.4848285, 47.1989689 ], + [ 8.4818147, 47.2001199 ], + [ 8.4788933, 47.2013766 ], + [ 8.4760723, 47.2027358 ], + [ 8.4733593, 47.2041937 ], + [ 8.4707619, 47.2057463 ], + [ 8.4682871, 47.2073894 ], + [ 8.4659418, 47.2091184 ], + [ 8.4637323, 47.2109286 ], + [ 8.4616647, 47.2128151 ], + [ 8.4597448, 47.2147728 ], + [ 8.4579776, 47.2167962 ], + [ 8.4563682, 47.2188798 ], + [ 8.4549209, 47.2210179 ], + [ 8.4536398, 47.2232046 ], + [ 8.4525283, 47.2254341 ], + [ 8.4515895, 47.2277001 ], + [ 8.450826, 47.2299965 ], + [ 8.45024, 47.2323169 ], + [ 8.449833, 47.234655 ], + [ 8.4496062, 47.2370045 ], + [ 8.4495602, 47.2393588 ], + [ 8.4496952, 47.2417115 ], + [ 8.4500109, 47.2440562 ], + [ 8.4505063, 47.2463864 ], + [ 8.4511802, 47.2486957 ], + [ 8.4520308, 47.2509779 ], + [ 8.4530557, 47.2532266 ], + [ 8.4542521, 47.2554357 ], + [ 8.4556168, 47.2575992 ], + [ 8.4571461, 47.259711 ], + [ 8.4588357, 47.2617654 ], + [ 8.4606811, 47.2637567 ], + [ 8.4626772, 47.2656796 ], + [ 8.4648185, 47.2675287 ], + [ 8.4670993, 47.2692989 ], + [ 8.4695131, 47.2709853 ], + [ 8.4720535, 47.2725835 ], + [ 8.4747135, 47.2740888 ], + [ 8.4774857, 47.2754973 ], + [ 8.4803625, 47.2768051 ], + [ 8.4833361, 47.2780085 ], + [ 8.4863984, 47.2791043 ], + [ 8.4895408, 47.2800894 ], + [ 8.4927547, 47.2809612 ], + [ 8.4960314, 47.2817172 ], + [ 8.4993619, 47.2823554 ], + [ 8.5027369, 47.282874 ], + [ 8.5061473, 47.2832716 ], + [ 8.5095835, 47.2835471 ], + [ 8.5130363, 47.2836997 ], + [ 8.5164961, 47.283729 ], + [ 8.5199534, 47.283635 ], + [ 8.5233988, 47.2834179 ], + [ 8.5268226, 47.2830783 ], + [ 8.5302156, 47.2826171 ], + [ 8.5335684, 47.2820357 ], + [ 8.5368718, 47.2813355 ], + [ 8.5401168, 47.2805185 ], + [ 8.5432943, 47.279587 ], + [ 8.5463957, 47.2785435 ], + [ 8.5494125, 47.2773909 ], + [ 8.5523364, 47.2761323 ], + [ 8.5551594, 47.2747713 ], + [ 8.5578737, 47.2733115 ], + [ 8.5604718, 47.271757 ], + [ 8.5629467, 47.270112 ], + [ 8.5652916, 47.268381 ], + [ 8.5675, 47.2665689 ], + [ 8.569566, 47.2646805 ], + [ 8.5714837, 47.262721 ], + [ 8.5732481, 47.2606959 ], + [ 8.5748542, 47.2586107 ], + [ 8.5762977, 47.2564711 ], + [ 8.5775746, 47.254283 ], + [ 8.5786815, 47.2520524 ], + [ 8.5796153, 47.2497854 ], + [ 8.5803735, 47.2474881 ], + [ 8.5809541, 47.2451671 ], + [ 8.5813554, 47.2428285 ], + [ 8.5815764, 47.2404788 ], + [ 8.5816166, 47.2381244 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZN001", + "country" : "CHE", + "name" : [ + { + "text" : "LSZN Hausen am Albis", + "lang" : "de-CH" + }, + { + "text" : "LSZN Hausen am Albis", + "lang" : "fr-CH" + }, + { + "text" : "LSZN Hausen am Albis", + "lang" : "it-CH" + }, + { + "text" : "LSZN Hausen am Albis", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Flugplatzgenossenschaft Hausen Oberamt", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzgenossenschaft Hausen Oberamt", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzgenossenschaft Hausen Oberamt", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzgenossenschaft Hausen Oberamt", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Michael Ras", + "lang" : "de-CH" + }, + { + "text" : "Michael Ras", + "lang" : "fr-CH" + }, + { + "text" : "Michael Ras", + "lang" : "it-CH" + }, + { + "text" : "Michael Ras", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.fgho.ch/de/kontakt", + "email" : "office@fgho.ch", + "phone" : "0041794574479", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P02DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5626947, 47.430502 ], + [ 7.5626090999999995, 47.4307351 ], + [ 7.5634135, 47.4313603 ], + [ 7.5656206, 47.4303704 ], + [ 7.5655675, 47.4301325 ], + [ 7.5654618, 47.4299541 ], + [ 7.5651278, 47.4295975 ], + [ 7.5646358, 47.4291221 ], + [ 7.5641793, 47.4288846 ], + [ 7.5640208, 47.4285873 ], + [ 7.5639682, 47.4285755 ], + [ 7.5636168999999995, 47.4291996 ], + [ 7.5635338999999995, 47.4294083 ], + [ 7.5632932, 47.4296406 ], + [ 7.562965, 47.4298721 ], + [ 7.5627732, 47.4300459 ], + [ 7.5627073, 47.4302169 ], + [ 7.5626947, 47.430502 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr068", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Im Schäll", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Im Schäll", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Im Schäll", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Im Schäll", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7850744, 47.4545153 ], + [ 7.7850654, 47.4545411 ], + [ 7.7850827, 47.4546556 ], + [ 7.7850917, 47.4547706 ], + [ 7.7850923, 47.4548857 ], + [ 7.7850845, 47.4550008 ], + [ 7.7845127, 47.4558458 ], + [ 7.7841251, 47.4563289 ], + [ 7.7835609, 47.4569811 ], + [ 7.7833227, 47.4572348 ], + [ 7.7826687, 47.4577307 ], + [ 7.7816273, 47.4587518 ], + [ 7.7815233, 47.4591557 ], + [ 7.7812774000000005, 47.4595901 ], + [ 7.7811739, 47.4600663 ], + [ 7.7811693, 47.460741 ], + [ 7.7811877, 47.4608251 ], + [ 7.7816938, 47.4609142 ], + [ 7.7820867, 47.4609233 ], + [ 7.7824123, 47.4609593 ], + [ 7.7824217, 47.4611697 ], + [ 7.782446, 47.4611933 ], + [ 7.7829371, 47.4612307 ], + [ 7.7829677, 47.4612332 ], + [ 7.783284, 47.4612587 ], + [ 7.7839591, 47.4613135 ], + [ 7.7839096, 47.4611625 ], + [ 7.7838388, 47.4608576 ], + [ 7.7837987, 47.4606055 ], + [ 7.7837615, 47.4602543 ], + [ 7.7838343, 47.4599652 ], + [ 7.7839071, 47.4596761 ], + [ 7.7840043, 47.4594363 ], + [ 7.7841097999999995, 47.4591762 ], + [ 7.7841152000000005, 47.4591632 ], + [ 7.7842898, 47.4587555 ], + [ 7.7844645, 47.4583478 ], + [ 7.7846257, 47.4579918 ], + [ 7.7849257, 47.4571178 ], + [ 7.7852163999999995, 47.4560823 ], + [ 7.7854513999999995, 47.4553337 ], + [ 7.7854828, 47.4552128 ], + [ 7.7855051, 47.455091 ], + [ 7.7855184, 47.4549685 ], + [ 7.7855224, 47.4548458 ], + [ 7.7855173, 47.454723 ], + [ 7.785503, 47.4546006 ], + [ 7.7854796, 47.4544788 ], + [ 7.7854554, 47.454458 ], + [ 7.7854263, 47.4544403 ], + [ 7.7853931, 47.4544263 ], + [ 7.7853569, 47.4544163 ], + [ 7.7853186999999995, 47.4544107 ], + [ 7.7852797, 47.4544096 ], + [ 7.7852409, 47.4544131 ], + [ 7.7852036, 47.4544211 ], + [ 7.7851689, 47.4544332 ], + [ 7.7851377, 47.4544493 ], + [ 7.7851111, 47.4544687 ], + [ 7.7850898, 47.4544909 ], + [ 7.7850744, 47.4545153 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr025", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Tal", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Tal", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Tal", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Tal", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.2528176, 46.1857142 ], + [ 7.2528128, 46.185573 ], + [ 7.2527973, 46.1854321 ], + [ 7.2527713, 46.185292 ], + [ 7.2527346999999995, 46.185153 ], + [ 7.2526877, 46.1850155 ], + [ 7.2526303, 46.18488 ], + [ 7.2525629, 46.1847467 ], + [ 7.2524855, 46.184616 ], + [ 7.2523984, 46.1844883 ], + [ 7.2523017, 46.184364 ], + [ 7.2521959, 46.1842434 ], + [ 7.2520811, 46.1841267 ], + [ 7.2519576, 46.1840145 ], + [ 7.2518259, 46.1839068 ], + [ 7.2516862, 46.1838041 ], + [ 7.251539, 46.1837066 ], + [ 7.2513846, 46.1836146 ], + [ 7.2512236, 46.1835283 ], + [ 7.2510562, 46.183448 ], + [ 7.250883, 46.1833739 ], + [ 7.2507045, 46.1833062 ], + [ 7.2505211, 46.183245 ], + [ 7.2503334, 46.1831906 ], + [ 7.2501418, 46.1831432 ], + [ 7.2499469, 46.1831027 ], + [ 7.2497492, 46.1830694 ], + [ 7.2495493, 46.1830433 ], + [ 7.2493477, 46.1830245 ], + [ 7.249145, 46.1830131 ], + [ 7.2489417, 46.1830091 ], + [ 7.2487383, 46.1830124 ], + [ 7.2485355, 46.1830231 ], + [ 7.2483338, 46.1830412 ], + [ 7.2481337, 46.1830667 ], + [ 7.2479358, 46.1830993 ], + [ 7.2477406, 46.1831391 ], + [ 7.2475487, 46.1831859 ], + [ 7.2473606, 46.1832397 ], + [ 7.2471768, 46.1833002 ], + [ 7.2469978, 46.1833673 ], + [ 7.2468240999999995, 46.1834408 ], + [ 7.2466561, 46.1835206 ], + [ 7.2464945, 46.1836063 ], + [ 7.2463395, 46.1836978 ], + [ 7.2461916, 46.1837948 ], + [ 7.2460512, 46.183897 ], + [ 7.2459187, 46.1840043 ], + [ 7.2457945, 46.1841161 ], + [ 7.2456789, 46.1842324 ], + [ 7.2455721, 46.1843527 ], + [ 7.2454746, 46.184476599999996 ], + [ 7.2453866, 46.184604 ], + [ 7.2453083, 46.1847344 ], + [ 7.2452399, 46.1848675 ], + [ 7.2451817, 46.1850028 ], + [ 7.2451337, 46.1851401 ], + [ 7.2450961, 46.185279 ], + [ 7.2450691, 46.185419 ], + [ 7.2450526, 46.1855599 ], + [ 7.2450468, 46.1857011 ], + [ 7.2450516, 46.1858423 ], + [ 7.2450671, 46.1859832 ], + [ 7.2450931, 46.1861233 ], + [ 7.2451297, 46.1862623 ], + [ 7.2451767, 46.1863998 ], + [ 7.245234, 46.1865353 ], + [ 7.2453014, 46.1866686 ], + [ 7.2453788, 46.1867993 ], + [ 7.2454659, 46.186927 ], + [ 7.2455625, 46.1870513 ], + [ 7.2456684, 46.187172 ], + [ 7.2457832, 46.1872886 ], + [ 7.2459066, 46.1874009 ], + [ 7.2460384, 46.1875086 ], + [ 7.246178, 46.1876113 ], + [ 7.2463252, 46.1877088 ], + [ 7.2464796, 46.1878008 ], + [ 7.2466407, 46.1878871 ], + [ 7.246808, 46.1879674 ], + [ 7.2469812, 46.1880415 ], + [ 7.2471598, 46.1881093 ], + [ 7.2473431999999995, 46.1881704 ], + [ 7.2475309, 46.1882248 ], + [ 7.2477225, 46.1882723 ], + [ 7.2479174, 46.1883127 ], + [ 7.2481151, 46.188346 ], + [ 7.248315, 46.1883721 ], + [ 7.2485167, 46.1883909 ], + [ 7.2487194, 46.1884023 ], + [ 7.2489228, 46.1884064 ], + [ 7.2491261, 46.188403 ], + [ 7.249329, 46.1883923 ], + [ 7.2495307, 46.1883742 ], + [ 7.2497308, 46.1883488 ], + [ 7.2499288, 46.1883161 ], + [ 7.2501239, 46.1882763 ], + [ 7.2503159, 46.1882295 ], + [ 7.250504, 46.1881757 ], + [ 7.2506878, 46.1881152 ], + [ 7.2508668, 46.1880481 ], + [ 7.2510405, 46.1879746 ], + [ 7.2512085, 46.1878948 ], + [ 7.2513701, 46.1878091 ], + [ 7.2515251, 46.1877176 ], + [ 7.251673, 46.1876206 ], + [ 7.2518134, 46.1875183 ], + [ 7.2519459, 46.1874111 ], + [ 7.2520701, 46.1872992 ], + [ 7.2521858, 46.187183 ], + [ 7.2522925, 46.1870627 ], + [ 7.2523899, 46.1869387 ], + [ 7.252478, 46.1868113 ], + [ 7.2525563, 46.1866809 ], + [ 7.2526246, 46.1865478 ], + [ 7.2526829, 46.1864125 ], + [ 7.2527308, 46.1862752 ], + [ 7.2527684, 46.1861363 ], + [ 7.2527954, 46.1859963 ], + [ 7.2528118, 46.1858554 ], + [ 7.2528176, 46.1857142 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0024", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Chamoson", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Chamoson", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Chamoson", + "lang" : "it-CH" + }, + { + "text" : "Substation Chamoson", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.1792962, 47.3762132 ], + [ 8.1792888, 47.376072 ], + [ 8.1792705, 47.3759313 ], + [ 8.1792415, 47.3757914 ], + [ 8.1792016, 47.3756528 ], + [ 8.1791512, 47.3755157 ], + [ 8.1790902, 47.3753807 ], + [ 8.179019, 47.375248 ], + [ 8.1789376, 47.375118 ], + [ 8.1788463, 47.374991 ], + [ 8.1787453, 47.3748675 ], + [ 8.178635, 47.3747478 ], + [ 8.1785156, 47.3746321 ], + [ 8.1783874, 47.3745209 ], + [ 8.1782509, 47.3744143 ], + [ 8.1781063, 47.3743128 ], + [ 8.177954100000001, 47.3742165 ], + [ 8.1777948, 47.3741258 ], + [ 8.1776286, 47.3740408 ], + [ 8.1774561, 47.3739619 ], + [ 8.1772778, 47.3738892 ], + [ 8.1770941, 47.373823 ], + [ 8.1769056, 47.3737634 ], + [ 8.1767127, 47.3737106 ], + [ 8.176516, 47.3736647 ], + [ 8.1763161, 47.3736258 ], + [ 8.1761134, 47.3735941 ], + [ 8.1759086, 47.3735697 ], + [ 8.1757022, 47.3735526 ], + [ 8.1754947, 47.3735428 ], + [ 8.1752868, 47.3735405 ], + [ 8.175079, 47.3735455 ], + [ 8.1748718, 47.3735579 ], + [ 8.1746659, 47.3735776 ], + [ 8.1744618, 47.3736047 ], + [ 8.1742601, 47.373639 ], + [ 8.1740613, 47.3736803 ], + [ 8.1738659, 47.3737287 ], + [ 8.1736745, 47.373784 ], + [ 8.1734877, 47.373846 ], + [ 8.1733058, 47.3739146 ], + [ 8.1731296, 47.3739895 ], + [ 8.1729593, 47.3740706 ], + [ 8.1727955, 47.3741577 ], + [ 8.1726386, 47.3742504 ], + [ 8.1724891, 47.3743486 ], + [ 8.1723474, 47.374452 ], + [ 8.1722138, 47.3745603 ], + [ 8.1720888, 47.3746731 ], + [ 8.1719726, 47.3747903 ], + [ 8.1718656, 47.3749114 ], + [ 8.1717681, 47.3750362 ], + [ 8.1716803, 47.3751643 ], + [ 8.1716025, 47.3752953 ], + [ 8.1715349, 47.3754289 ], + [ 8.1714777, 47.3755647 ], + [ 8.1714311, 47.3757024 ], + [ 8.1713951, 47.3758415 ], + [ 8.1713699, 47.3759817 ], + [ 8.1713555, 47.3761227 ], + [ 8.171352, 47.3762639 ], + [ 8.1713594, 47.3764051 ], + [ 8.1713776, 47.3765458 ], + [ 8.1714067, 47.3766857 ], + [ 8.1714465, 47.3768243 ], + [ 8.1714969, 47.3769614 ], + [ 8.1715579, 47.3770964 ], + [ 8.1716291, 47.3772292 ], + [ 8.1717105, 47.3773592 ], + [ 8.1718018, 47.3774861 ], + [ 8.1719027, 47.3776096 ], + [ 8.172013, 47.3777294 ], + [ 8.1721324, 47.377845 ], + [ 8.1722606, 47.3779563 ], + [ 8.1723971, 47.3780628 ], + [ 8.1725417, 47.3781644 ], + [ 8.1726939, 47.3782607 ], + [ 8.1728533, 47.3783514 ], + [ 8.1730194, 47.3784364 ], + [ 8.1731919, 47.3785153 ], + [ 8.1733703, 47.378588 ], + [ 8.173554, 47.3786542 ], + [ 8.1737425, 47.3787138 ], + [ 8.1739354, 47.3787666 ], + [ 8.1741321, 47.3788126 ], + [ 8.174332, 47.3788514 ], + [ 8.1745347, 47.3788831 ], + [ 8.1747395, 47.3789075 ], + [ 8.174946, 47.3789247 ], + [ 8.1751535, 47.3789344 ], + [ 8.1753614, 47.3789368 ], + [ 8.1755693, 47.3789318 ], + [ 8.1757764, 47.3789194 ], + [ 8.1759824, 47.3788996 ], + [ 8.1761865, 47.3788726 ], + [ 8.1763883, 47.3788383 ], + [ 8.1765871, 47.3787969 ], + [ 8.1767825, 47.3787485 ], + [ 8.1769739, 47.3786932 ], + [ 8.1771608, 47.3786312 ], + [ 8.1773426, 47.3785626 ], + [ 8.1775189, 47.3784877 ], + [ 8.1776892, 47.3784066 ], + [ 8.1778529, 47.3783195 ], + [ 8.1780098, 47.3782268 ], + [ 8.1781593, 47.3781286 ], + [ 8.178301, 47.3780252 ], + [ 8.1784346, 47.3779169 ], + [ 8.1785597, 47.377804 ], + [ 8.1786758, 47.3776868 ], + [ 8.1787828, 47.3775657 ], + [ 8.1788803, 47.3774409 ], + [ 8.1789681, 47.3773129 ], + [ 8.1790458, 47.3771818 ], + [ 8.1791134, 47.3770482 ], + [ 8.1791706, 47.3769124 ], + [ 8.1792172, 47.3767747 ], + [ 8.1792532, 47.3766356 ], + [ 8.1792784, 47.3764954 ], + [ 8.1792927, 47.3763545 ], + [ 8.1792962, 47.3762132 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LZG0001", + "country" : "CHE", + "name" : [ + { + "text" : "Justizvollzugsanstalt Lenzburg Zentralgefängnis", + "lang" : "de-CH" + }, + { + "text" : "Justizvollzugsanstalt Lenzburg Zentralgefängnis", + "lang" : "fr-CH" + }, + { + "text" : "Justizvollzugsanstalt Lenzburg Zentralgefängnis", + "lang" : "it-CH" + }, + { + "text" : "Justizvollzugsanstalt Lenzburg Zentralgefängnis", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Justizvollzugsanstalt Lenzburg", + "lang" : "de-CH" + }, + { + "text" : "Justizvollzugsanstalt Lenzburg", + "lang" : "fr-CH" + }, + { + "text" : "Justizvollzugsanstalt Lenzburg", + "lang" : "it-CH" + }, + { + "text" : "Justizvollzugsanstalt Lenzburg", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Direktion", + "lang" : "de-CH" + }, + { + "text" : "Direktion", + "lang" : "fr-CH" + }, + { + "text" : "Direktion", + "lang" : "it-CH" + }, + { + "text" : "Direktion", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ag.ch/de/verwaltung/dvi/strafverfolgung-strafvollzug/strafvollzug/justizvollzugsanstalt-lenzburg", + "email" : "direktion.jva@ag.ch", + "phone" : "0041628887766", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7769537, 47.4375458 ], + [ 7.7769128, 47.4375578 ], + [ 7.7768884, 47.4375424 ], + [ 7.7768635, 47.4375274 ], + [ 7.776838, 47.4375129 ], + [ 7.776812, 47.4374988 ], + [ 7.7767854, 47.4374853 ], + [ 7.7767583, 47.4374722 ], + [ 7.7767307, 47.4374596 ], + [ 7.7767026, 47.4374474 ], + [ 7.7766741, 47.4374358 ], + [ 7.7766451, 47.4374248 ], + [ 7.7766137, 47.4374137 ], + [ 7.7765818, 47.4374031 ], + [ 7.7765496, 47.4373932 ], + [ 7.7765169, 47.4373838 ], + [ 7.7764839, 47.4373751 ], + [ 7.7764506, 47.4373669 ], + [ 7.776417, 47.4373594 ], + [ 7.7763831, 47.4373524 ], + [ 7.7763489, 47.4373461 ], + [ 7.7763145, 47.4373404 ], + [ 7.7762799, 47.4373353 ], + [ 7.7762451, 47.4373309 ], + [ 7.7762101, 47.437327 ], + [ 7.7761792, 47.4373267 ], + [ 7.7761484, 47.4373257 ], + [ 7.7761176, 47.4373241 ], + [ 7.7760868, 47.4373219 ], + [ 7.7760562, 47.4373191 ], + [ 7.7760258, 47.4373157 ], + [ 7.7759954, 47.4373117 ], + [ 7.7759653, 47.437307 ], + [ 7.7759354, 47.4373018 ], + [ 7.7759057, 47.437296 ], + [ 7.7758763, 47.4372897 ], + [ 7.775833, 47.4372797 ], + [ 7.7757901, 47.4372692 ], + [ 7.7757476, 47.4372581 ], + [ 7.7757054, 47.4372463 ], + [ 7.7756635, 47.437234 ], + [ 7.7756221, 47.4372211 ], + [ 7.775581, 47.4372076 ], + [ 7.7755404, 47.4371935 ], + [ 7.7755002, 47.4371788 ], + [ 7.7754605, 47.4371636 ], + [ 7.7754213, 47.4371478 ], + [ 7.7753825, 47.4371315 ], + [ 7.7753455, 47.4371144 ], + [ 7.7753089, 47.4370969 ], + [ 7.775273, 47.4370787 ], + [ 7.7752376, 47.4370601 ], + [ 7.7752028, 47.437041 ], + [ 7.7751686, 47.4370214 ], + [ 7.775135, 47.4370012 ], + [ 7.7751021, 47.4369807 ], + [ 7.7750698, 47.4369596 ], + [ 7.7750381, 47.4369381 ], + [ 7.7750072, 47.4369161 ], + [ 7.7749769, 47.4368937 ], + [ 7.7749473, 47.4368709 ], + [ 7.7749185, 47.4368477 ], + [ 7.7748904, 47.436824 ], + [ 7.774863, 47.4367999 ], + [ 7.7748364, 47.4367755 ], + [ 7.7748105, 47.4367507 ], + [ 7.7747554, 47.4367 ], + [ 7.7747379, 47.4366865 ], + [ 7.7747197, 47.4366734 ], + [ 7.7747009, 47.4366608 ], + [ 7.7746815, 47.4366486 ], + [ 7.7746616, 47.4366368 ], + [ 7.774641, 47.4366255 ], + [ 7.7746199, 47.4366146 ], + [ 7.7745983, 47.4366042 ], + [ 7.7745762, 47.4365943 ], + [ 7.7745536, 47.436585 ], + [ 7.7745306, 47.4365761 ], + [ 7.7745071, 47.4365678 ], + [ 7.7744833, 47.43656 ], + [ 7.7744616, 47.436554 ], + [ 7.7744396, 47.4365487 ], + [ 7.7744173, 47.4365439 ], + [ 7.7743947, 47.4365399 ], + [ 7.7743719, 47.4365364 ], + [ 7.7743489, 47.4365337 ], + [ 7.7743257, 47.4365315 ], + [ 7.7743025, 47.4365301 ], + [ 7.7742791, 47.4365293 ], + [ 7.7742558, 47.4365292 ], + [ 7.7742324, 47.4365297 ], + [ 7.7742091, 47.4365309 ], + [ 7.7741859, 47.4365327 ], + [ 7.7741628, 47.4365353 ], + [ 7.7741399, 47.4365384 ], + [ 7.7741172, 47.4365423 ], + [ 7.7740948, 47.4365467 ], + [ 7.7740727, 47.4365518 ], + [ 7.7740509, 47.4365576 ], + [ 7.7740294, 47.4365639 ], + [ 7.7740084, 47.4365709 ], + [ 7.7739879, 47.4365784 ], + [ 7.7739665, 47.4365894 ], + [ 7.7739456, 47.4366007 ], + [ 7.773925, 47.4366125 ], + [ 7.7739049, 47.4366245 ], + [ 7.7738853, 47.4366369 ], + [ 7.7738662, 47.4366496 ], + [ 7.7738475, 47.4366627 ], + [ 7.7737931, 47.4367032 ], + [ 7.7737661, 47.4367277 ], + [ 7.7737399, 47.4367524 ], + [ 7.7737143, 47.4367775 ], + [ 7.7736895, 47.4368029 ], + [ 7.7736653, 47.4368287 ], + [ 7.7736419, 47.4368547 ], + [ 7.7736192, 47.436881 ], + [ 7.7735972, 47.4369076 ], + [ 7.773576, 47.4369345 ], + [ 7.7735555, 47.4369617 ], + [ 7.7735357, 47.4369891 ], + [ 7.7735168, 47.4370168 ], + [ 7.7754367, 47.4386306 ], + [ 7.7760794, 47.4390451 ], + [ 7.7763091, 47.4393062 ], + [ 7.776511, 47.4393532 ], + [ 7.7765805, 47.4393858 ], + [ 7.7784334, 47.440255 ], + [ 7.7787928, 47.4401797 ], + [ 7.7788205, 47.4401544 ], + [ 7.7788432, 47.4401122 ], + [ 7.7788944, 47.4397881 ], + [ 7.7788867, 47.4397152 ], + [ 7.7788749, 47.4396651 ], + [ 7.7788391, 47.4395371 ], + [ 7.7791492, 47.4391551 ], + [ 7.7792512, 47.4386551 ], + [ 7.7792584, 47.4384052 ], + [ 7.7791604, 47.4381735 ], + [ 7.7787904999999995, 47.4379068 ], + [ 7.7781925, 47.4376409 ], + [ 7.7777448, 47.4375648 ], + [ 7.7769537, 47.4375458 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns342", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Amerika", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Amerika", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Amerika", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Amerika", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.9438858, 47.4416218 ], + [ 7.9435737, 47.4416969 ], + [ 7.9434381, 47.441811799999996 ], + [ 7.9435028, 47.4419301 ], + [ 7.943624, 47.4419384 ], + [ 7.9437268, 47.4417817 ], + [ 7.9439741, 47.4417054 ], + [ 7.9438858, 47.4416218 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns155", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Riedmatt", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Riedmatt", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Riedmatt", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Riedmatt", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8622949, 47.381958 ], + [ 7.8621896, 47.3820133 ], + [ 7.8623069999999995, 47.3821589 ], + [ 7.8623469, 47.3821793 ], + [ 7.8623506, 47.3822517 ], + [ 7.8625103, 47.3822655 ], + [ 7.8626678, 47.3826521 ], + [ 7.862818, 47.3826372 ], + [ 7.8629611, 47.3825641 ], + [ 7.8629731, 47.3825836 ], + [ 7.8630191, 47.3825717 ], + [ 7.8630408, 47.3825899 ], + [ 7.8632587, 47.382482 ], + [ 7.863461, 47.382401 ], + [ 7.8636593999999995, 47.382287 ], + [ 7.8637246, 47.3822631 ], + [ 7.8638216, 47.3822776 ], + [ 7.8640161, 47.3822924 ], + [ 7.8642148, 47.3823062 ], + [ 7.864429, 47.3823126 ], + [ 7.864733, 47.3822773 ], + [ 7.8649654, 47.3822372 ], + [ 7.8652178, 47.3822176 ], + [ 7.8655346, 47.38217 ], + [ 7.865878, 47.3821349 ], + [ 7.8661353, 47.3821326 ], + [ 7.8661105, 47.3820011 ], + [ 7.8666763, 47.3819302 ], + [ 7.8667687, 47.3821321 ], + [ 7.8669644, 47.3821298 ], + [ 7.8671438, 47.3821186 ], + [ 7.8673318, 47.3820885 ], + [ 7.8674024, 47.3820776 ], + [ 7.867608, 47.3820459 ], + [ 7.8678406, 47.3820156 ], + [ 7.8679368, 47.3819699 ], + [ 7.8681414, 47.3818278 ], + [ 7.8681609, 47.3818152 ], + [ 7.8687842, 47.3814147 ], + [ 7.8688036, 47.3814012 ], + [ 7.8688226, 47.3813728 ], + [ 7.8687886, 47.381358 ], + [ 7.8687277, 47.3813351 ], + [ 7.868718, 47.3813314 ], + [ 7.8685385, 47.3814846 ], + [ 7.8684444, 47.3815539 ], + [ 7.8684363, 47.3815658 ], + [ 7.8683817, 47.3816023 ], + [ 7.868381, 47.3816058 ], + [ 7.8682757, 47.38168 ], + [ 7.8682277, 47.3817279 ], + [ 7.8681438, 47.3817998 ], + [ 7.8680584, 47.381848 ], + [ 7.8680179, 47.3818677 ], + [ 7.8679794, 47.3818847 ], + [ 7.8679681, 47.3818819 ], + [ 7.8679518999999996, 47.3818726 ], + [ 7.8679451, 47.3818663 ], + [ 7.8679368, 47.3818499 ], + [ 7.8679421, 47.3818297 ], + [ 7.8679533, 47.3818087 ], + [ 7.8679702, 47.3817861 ], + [ 7.8680071, 47.3817565 ], + [ 7.8680445, 47.3817296 ], + [ 7.8680579, 47.3817164 ], + [ 7.8680748, 47.3816999 ], + [ 7.8681141, 47.3816598 ], + [ 7.8681497, 47.381626 ], + [ 7.8681671, 47.3815979 ], + [ 7.8681894, 47.3815761 ], + [ 7.8682127, 47.3815578 ], + [ 7.8682423, 47.3815364 ], + [ 7.8682684, 47.3815209 ], + [ 7.8682899, 47.381508 ], + [ 7.8684261, 47.3814224 ], + [ 7.8685011, 47.3813451 ], + [ 7.8685144, 47.3812914 ], + [ 7.8682973, 47.381347 ], + [ 7.868281, 47.3813514 ], + [ 7.8682829, 47.3813675 ], + [ 7.8681373, 47.3813897 ], + [ 7.868136, 47.38139 ], + [ 7.8680684, 47.3814079 ], + [ 7.8678676, 47.3814626 ], + [ 7.8675706, 47.3815434 ], + [ 7.8669109, 47.3816196 ], + [ 7.8662219, 47.3816702 ], + [ 7.8654753, 47.3817047 ], + [ 7.8651456, 47.3817317 ], + [ 7.8649033, 47.3817516 ], + [ 7.864249, 47.3818034 ], + [ 7.8640027, 47.3818389 ], + [ 7.8638559, 47.3818603 ], + [ 7.8634761, 47.3819164 ], + [ 7.8631312, 47.3819743 ], + [ 7.863068, 47.3819852 ], + [ 7.8630662000000004, 47.3819852 ], + [ 7.8630648, 47.3819855 ], + [ 7.8626569, 47.3819868 ], + [ 7.8625864, 47.3819696 ], + [ 7.8622949, 47.381958 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr079", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Hauensteinholz", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Hauensteinholz", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Hauensteinholz", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Hauensteinholz", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7521631, 47.3758034 ], + [ 7.751738, 47.3760159 ], + [ 7.7514442, 47.3762641 ], + [ 7.7498316, 47.3770702 ], + [ 7.7502801, 47.3771937 ], + [ 7.7501218, 47.3772534 ], + [ 7.7500072, 47.3778982 ], + [ 7.7507342999999995, 47.3779204 ], + [ 7.7509613, 47.3772204 ], + [ 7.7514456, 47.3773501 ], + [ 7.7518302, 47.3773667 ], + [ 7.7521529000000005, 47.3775019 ], + [ 7.7526228, 47.3776062 ], + [ 7.7528285, 47.3778247 ], + [ 7.7531392, 47.3779059 ], + [ 7.753373, 47.3780905 ], + [ 7.7536381, 47.378137100000004 ], + [ 7.7542373, 47.3784469 ], + [ 7.7545711, 47.3785571 ], + [ 7.7545418, 47.3786535 ], + [ 7.7545562, 47.3786534 ], + [ 7.7545793, 47.3786536 ], + [ 7.7546024, 47.3786544 ], + [ 7.7546254999999995, 47.3786558 ], + [ 7.7546722, 47.3786607 ], + [ 7.7547181, 47.3786682 ], + [ 7.754763, 47.3786782 ], + [ 7.7547905, 47.3786846 ], + [ 7.7548185, 47.3786898 ], + [ 7.754847, 47.3786939 ], + [ 7.7549026, 47.3787026 ], + [ 7.7549568, 47.378715 ], + [ 7.7550088, 47.3787309 ], + [ 7.7550584, 47.3787502 ], + [ 7.7551325, 47.3787839 ], + [ 7.7552043, 47.3788199 ], + [ 7.7552737, 47.3788581 ], + [ 7.7553364, 47.3788912 ], + [ 7.7554031, 47.3789206 ], + [ 7.7554732, 47.3789461 ], + [ 7.7555461999999995, 47.3789674 ], + [ 7.7556216, 47.3789845 ], + [ 7.7556988, 47.3789972 ], + [ 7.7557773999999995, 47.3790054 ], + [ 7.7558567, 47.379009 ], + [ 7.7559362, 47.3790081 ], + [ 7.7561786999999995, 47.3790015 ], + [ 7.7561543, 47.3789868 ], + [ 7.7562816, 47.3782068 ], + [ 7.7557072, 47.3772496 ], + [ 7.7555094, 47.3763209 ], + [ 7.7543429, 47.3749344 ], + [ 7.7521631, 47.3758034 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns080", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Chapfflüeli", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Chapfflüeli", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Chapfflüeli", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Chapfflüeli", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.8845025, 47.5765565 ], + [ 8.8845854, 47.5767274 ], + [ 8.8846603, 47.5769137 ], + [ 8.8847194, 47.5770923 ], + [ 8.8847662, 47.5772724 ], + [ 8.8848164, 47.5776417 ], + [ 8.8848296, 47.5780133 ], + [ 8.8847977, 47.5783962 ], + [ 8.8846807, 47.5786355 ], + [ 8.8846513, 47.5787279 ], + [ 8.8846128, 47.5787543 ], + [ 8.8845546, 47.5790686 ], + [ 8.8847512, 47.5790867 ], + [ 8.8851969, 47.5791285 ], + [ 8.8854706, 47.5789535 ], + [ 8.8863766, 47.5783428 ], + [ 8.8869015, 47.5779984 ], + [ 8.8871956, 47.5778086 ], + [ 8.8882671, 47.5770873 ], + [ 8.8891294, 47.5765261 ], + [ 8.8894196, 47.5763388 ], + [ 8.8895625, 47.5762446 ], + [ 8.889797399999999, 47.5760854 ], + [ 8.8900831, 47.575897 ], + [ 8.8902691, 47.5757684 ], + [ 8.8904033, 47.5756686 ], + [ 8.8904829, 47.5756086 ], + [ 8.8906209, 47.57548 ], + [ 8.8907348, 47.5753692 ], + [ 8.8908386, 47.5752539 ], + [ 8.8909446, 47.5751396 ], + [ 8.8910655, 47.5750035 ], + [ 8.8911409, 47.5748977 ], + [ 8.8912531, 47.5747342 ], + [ 8.8914872, 47.5743131 ], + [ 8.8915448, 47.574207 ], + [ 8.8915215, 47.5742012 ], + [ 8.8916661, 47.5739288 ], + [ 8.8920222, 47.5732919 ], + [ 8.8922834, 47.5727942 ], + [ 8.8924868, 47.5724361 ], + [ 8.8925124, 47.5723911 ], + [ 8.8929923, 47.5715098 ], + [ 8.893092, 47.5713339 ], + [ 8.8931877, 47.5711649 ], + [ 8.8934478, 47.5706736 ], + [ 8.8937686, 47.5701108 ], + [ 8.8940515, 47.5695839 ], + [ 8.8942672, 47.5691773 ], + [ 8.8944462, 47.568817 ], + [ 8.8945887, 47.5685179 ], + [ 8.8946841, 47.5682895 ], + [ 8.8947443, 47.568114 ], + [ 8.894631, 47.5681145 ], + [ 8.8933024, 47.5681215 ], + [ 8.8920107, 47.5681282 ], + [ 8.8919179, 47.5681327 ], + [ 8.8918268, 47.568145799999996 ], + [ 8.8917407, 47.5681696 ], + [ 8.8914557, 47.5680828 ], + [ 8.8915172, 47.5678357 ], + [ 8.8915377, 47.5676713 ], + [ 8.8915497, 47.567563 ], + [ 8.8915641, 47.5673179 ], + [ 8.8915554, 47.5670737 ], + [ 8.891528, 47.5667453 ], + [ 8.8914653, 47.566303 ], + [ 8.8914377, 47.5662242 ], + [ 8.8914167, 47.5662134 ], + [ 8.8912206, 47.5662083 ], + [ 8.8905973, 47.5661506 ], + [ 8.8902961, 47.5661162 ], + [ 8.8899257, 47.5660863 ], + [ 8.8899398, 47.5659962 ], + [ 8.8884419, 47.5658862 ], + [ 8.887822, 47.5658406 ], + [ 8.8876066, 47.5658248 ], + [ 8.8865827, 47.5657594 ], + [ 8.8867368, 47.5658584 ], + [ 8.886145299999999, 47.5658379 ], + [ 8.8860037, 47.5658435 ], + [ 8.8857615, 47.5658913 ], + [ 8.8852992, 47.5660029 ], + [ 8.8850249, 47.5660785 ], + [ 8.8849865, 47.5660897 ], + [ 8.8849485, 47.5661015 ], + [ 8.8849109, 47.5661138 ], + [ 8.8848738, 47.5661268 ], + [ 8.8848372, 47.5661404 ], + [ 8.884801, 47.5661545 ], + [ 8.8847653, 47.5661693 ], + [ 8.8847317, 47.5661839 ], + [ 8.8846985, 47.566199 ], + [ 8.8846659, 47.5662146 ], + [ 8.8846338, 47.5662307 ], + [ 8.8846022, 47.5662473 ], + [ 8.8845712, 47.5662644 ], + [ 8.8845407, 47.5662819 ], + [ 8.8845095, 47.5663025 ], + [ 8.8844792, 47.5663239 ], + [ 8.88445, 47.5663458 ], + [ 8.8844219, 47.5663684 ], + [ 8.884394799999999, 47.5663916 ], + [ 8.8843688, 47.5664154 ], + [ 8.884344, 47.5664397 ], + [ 8.8843211, 47.5664636 ], + [ 8.8842994, 47.566488 ], + [ 8.8842788, 47.5665128 ], + [ 8.8842593, 47.5665381 ], + [ 8.8842409, 47.5665637 ], + [ 8.884223800000001, 47.5665897 ], + [ 8.8842078, 47.5666161 ], + [ 8.8841092, 47.5668023 ], + [ 8.8839744, 47.5671043 ], + [ 8.8836239, 47.5678975 ], + [ 8.8836123, 47.5679247 ], + [ 8.8836013, 47.5679519 ], + [ 8.8835909, 47.5679793 ], + [ 8.8835813, 47.5680067 ], + [ 8.8835723, 47.5680343 ], + [ 8.883564, 47.568062 ], + [ 8.8835563, 47.5680898 ], + [ 8.8835494, 47.5681176 ], + [ 8.8835431, 47.5681455 ], + [ 8.8835375, 47.5681735 ], + [ 8.8835326, 47.5682015 ], + [ 8.8835284, 47.5682296 ], + [ 8.8835249, 47.5682578 ], + [ 8.883522, 47.5682859 ], + [ 8.8835216, 47.5683131 ], + [ 8.8835223, 47.5683402 ], + [ 8.8835241, 47.5683673 ], + [ 8.883527, 47.5683944 ], + [ 8.883531, 47.5684214 ], + [ 8.8835361, 47.5684483 ], + [ 8.8835423, 47.5684751 ], + [ 8.8835517, 47.5685093 ], + [ 8.883563, 47.5685433 ], + [ 8.8835759, 47.5685769 ], + [ 8.8835906, 47.5686102 ], + [ 8.8836071, 47.5686432 ], + [ 8.8836252, 47.5686757 ], + [ 8.883645, 47.5687078 ], + [ 8.8836615, 47.5687309 ], + [ 8.8836787, 47.5687538 ], + [ 8.8836963, 47.5687766 ], + [ 8.8837145, 47.5687991 ], + [ 8.8837332, 47.5688214 ], + [ 8.8837525, 47.5688436 ], + [ 8.8837722, 47.5688655 ], + [ 8.8837925, 47.5688872 ], + [ 8.8838133, 47.5689087 ], + [ 8.8838346, 47.56893 ], + [ 8.883856399999999, 47.5689511 ], + [ 8.8838786, 47.5689719 ], + [ 8.8839014, 47.5689925 ], + [ 8.8839247, 47.5690128 ], + [ 8.884091699999999, 47.5691571 ], + [ 8.8841181, 47.5691784 ], + [ 8.884144, 47.5692 ], + [ 8.8841692, 47.5692219 ], + [ 8.8841938, 47.5692442 ], + [ 8.8842178, 47.5692667 ], + [ 8.8842412, 47.5692896 ], + [ 8.8842639, 47.5693127 ], + [ 8.8842813, 47.5693311 ], + [ 8.8842982, 47.5693497 ], + [ 8.8843148, 47.5693684 ], + [ 8.884331, 47.5693873 ], + [ 8.8843467, 47.5694063 ], + [ 8.884362, 47.5694255 ], + [ 8.884377, 47.5694449 ], + [ 8.8843893, 47.569462 ], + [ 8.8844009, 47.5694793 ], + [ 8.884412, 47.5694969 ], + [ 8.8844223, 47.5695146 ], + [ 8.8844321, 47.5695324 ], + [ 8.8844411, 47.5695505 ], + [ 8.8844495, 47.5695686 ], + [ 8.8844589, 47.5695912 ], + [ 8.8844673, 47.569614 ], + [ 8.8844747, 47.569637 ], + [ 8.8844809, 47.5696601 ], + [ 8.8844862, 47.5696833 ], + [ 8.8844904, 47.5697066 ], + [ 8.8844935, 47.56973 ], + [ 8.8844966, 47.5697549 ], + [ 8.884500899999999, 47.5697676 ], + [ 8.8845049, 47.5697804 ], + [ 8.8845088, 47.5697933 ], + [ 8.8845123, 47.5698061 ], + [ 8.8845157, 47.569819 ], + [ 8.8845187, 47.5698319 ], + [ 8.8845215, 47.5698449 ], + [ 8.884523399999999, 47.569857 ], + [ 8.8845258, 47.569869 ], + [ 8.8845286, 47.569881 ], + [ 8.884532, 47.5698929 ], + [ 8.8845358, 47.5699048 ], + [ 8.8845402, 47.5699166 ], + [ 8.884545, 47.5699283 ], + [ 8.8845489, 47.5699356 ], + [ 8.884553499999999, 47.5699428 ], + [ 8.8845587, 47.5699497 ], + [ 8.8845646, 47.5699565 ], + [ 8.8845711, 47.5699629 ], + [ 8.8845781, 47.5699691 ], + [ 8.8845856, 47.569975 ], + [ 8.8845937, 47.5699806 ], + [ 8.8846023, 47.5699858 ], + [ 8.884614599999999, 47.5699929 ], + [ 8.8846267, 47.5700002 ], + [ 8.8846386, 47.5700075 ], + [ 8.8846504, 47.570015 ], + [ 8.8846621, 47.5700225 ], + [ 8.8846736, 47.5700302 ], + [ 8.884685, 47.5700379 ], + [ 8.8846869, 47.5700397 ], + [ 8.8846886, 47.5700416 ], + [ 8.8846901, 47.5700436 ], + [ 8.8846914, 47.5700456 ], + [ 8.8846925, 47.5700477 ], + [ 8.8846934, 47.5700498 ], + [ 8.884694, 47.570052 ], + [ 8.8846944, 47.5700541 ], + [ 8.8846946, 47.5700563 ], + [ 8.8846945, 47.5700586 ], + [ 8.8846942, 47.5700608 ], + [ 8.8846937, 47.570062899999996 ], + [ 8.884693, 47.5700651 ], + [ 8.8846924, 47.5700688 ], + [ 8.8846916, 47.5700724 ], + [ 8.8846905, 47.5700761 ], + [ 8.884689, 47.5700796 ], + [ 8.8846873, 47.5700832 ], + [ 8.8846853, 47.5700866 ], + [ 8.8846829, 47.57009 ], + [ 8.8847405, 47.5701192 ], + [ 8.8846337, 47.5702329 ], + [ 8.8846317, 47.5702322 ], + [ 8.884629799999999, 47.5702315 ], + [ 8.8846279, 47.5702308 ], + [ 8.8846259, 47.5702302 ], + [ 8.884624, 47.570229499999996 ], + [ 8.884622, 47.5702289 ], + [ 8.8846201, 47.5702282 ], + [ 8.8845666, 47.5702145 ], + [ 8.8845574, 47.5702158 ], + [ 8.884548, 47.5702167 ], + [ 8.8845385, 47.5702171 ], + [ 8.884529, 47.5702171 ], + [ 8.8845196, 47.5702166 ], + [ 8.8845102, 47.5702158 ], + [ 8.884500899999999, 47.5702145 ], + [ 8.8844918, 47.5702127 ], + [ 8.8844828, 47.5702106 ], + [ 8.8844764, 47.5702104 ], + [ 8.88447, 47.5702105 ], + [ 8.8844636, 47.5702109 ], + [ 8.8844573, 47.5702116 ], + [ 8.884451, 47.5702125 ], + [ 8.8844449, 47.5702138 ], + [ 8.8844389, 47.5702153 ], + [ 8.884433, 47.570217 ], + [ 8.8844273, 47.570219 ], + [ 8.8844219, 47.5702213 ], + [ 8.8844166, 47.5702238 ], + [ 8.8844036, 47.5702325 ], + [ 8.8843905, 47.570241 ], + [ 8.8843772, 47.5702495 ], + [ 8.8843638, 47.5702579 ], + [ 8.8843503, 47.5702662 ], + [ 8.8843367, 47.5702745 ], + [ 8.884323, 47.5702826 ], + [ 8.8842612, 47.5703216 ], + [ 8.8842341, 47.57034 ], + [ 8.8842056, 47.5703574 ], + [ 8.8841757, 47.5703737 ], + [ 8.884144599999999, 47.5703889 ], + [ 8.8841123, 47.570403 ], + [ 8.8840789, 47.5704158 ], + [ 8.8840446, 47.5704275 ], + [ 8.8840357, 47.5704314 ], + [ 8.8840267, 47.5704353 ], + [ 8.8840178, 47.5704391 ], + [ 8.8840089, 47.570443 ], + [ 8.8839999, 47.5704468 ], + [ 8.8839909, 47.5704506 ], + [ 8.8839818, 47.5704543 ], + [ 8.8825743, 47.5709891 ], + [ 8.8822636, 47.5711115 ], + [ 8.88185, 47.571283 ], + [ 8.8817256, 47.5713623 ], + [ 8.8816687, 47.5714706 ], + [ 8.8816902, 47.5715848 ], + [ 8.8820241, 47.5721865 ], + [ 8.8822854, 47.572696 ], + [ 8.883038299999999, 47.5740417 ], + [ 8.88353, 47.5749221 ], + [ 8.8837783, 47.5753647 ], + [ 8.8839889, 47.5756357 ], + [ 8.884318799999999, 47.5762128 ], + [ 8.8845025, 47.5765565 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VBS_27", + "country" : "CHE", + "name" : [ + { + "text" : "VBS_27 Frauenfeld", + "lang" : "de-CH" + }, + { + "text" : "VBS_27 Frauenfeld", + "lang" : "fr-CH" + }, + { + "text" : "VBS_27 Frauenfeld", + "lang" : "it-CH" + }, + { + "text" : "VBS_27 Frauenfeld", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "regulationExemption" : "YES", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Eidgenössisches Departement für Verteidigung, Bevölkerungsschutz und Sport (VBS)", + "lang" : "de-CH" + }, + { + "text" : "Département fédéral de la défense, de la protection de la population et des sports (DDPS)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento federale della difesa, della protezione della popolazione e dello sport (DDPS)", + "lang" : "it-CH" + }, + { + "text" : "Federal Department of Defence, Civil Protection and Sport (DDPS)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Lageverfolgungszentrum der Armee LVZ A", + "lang" : "de-CH" + }, + { + "text" : "Centre de suivi de la situation de l’armée, CSS A", + "lang" : "fr-CH" + }, + { + "text" : "Centro di monitoraggio della situazione dell’esercito, Centro mon sit Es", + "lang" : "it-CH" + }, + { + "text" : "Joint Operation Center, JOC", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vtg.admin.ch/en/joint-operations-command", + "email" : "lvz.op@vtg.admin.ch", + "phone" : "+41 58 464 96 43", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8632686, 47.4367229 ], + [ 7.8633374, 47.4367233 ], + [ 7.863365, 47.4367093 ], + [ 7.863435, 47.4366681 ], + [ 7.8635201, 47.4366169 ], + [ 7.8636139, 47.4365589 ], + [ 7.8636995, 47.4365147 ], + [ 7.8637554, 47.4364914 ], + [ 7.863825, 47.4364633 ], + [ 7.8638823, 47.4364421 ], + [ 7.8639352, 47.4364338 ], + [ 7.8639935, 47.4364312 ], + [ 7.8640531, 47.4364345 ], + [ 7.8641173, 47.4364446 ], + [ 7.8642042, 47.4364614 ], + [ 7.8642643, 47.4364797 ], + [ 7.8643319, 47.4365044 ], + [ 7.864385, 47.4365337 ], + [ 7.8644278, 47.4365632 ], + [ 7.8644665, 47.4365954 ], + [ 7.8645395, 47.4366745 ], + [ 7.8645964, 47.4367562 ], + [ 7.8646467, 47.4368402 ], + [ 7.8646955, 47.436918 ], + [ 7.8647326, 47.4369736 ], + [ 7.8647553, 47.4370227 ], + [ 7.8647642, 47.437062 ], + [ 7.8647679, 47.4370865 ], + [ 7.8647864, 47.4371748 ], + [ 7.8648205, 47.4372739 ], + [ 7.8648492999999995, 47.4373504 ], + [ 7.8648837, 47.4374154 ], + [ 7.8649363999999995, 47.4374896 ], + [ 7.8649731, 47.4375349 ], + [ 7.8650497999999995, 47.4376028 ], + [ 7.8651054, 47.4376434 ], + [ 7.8651795, 47.4376782 ], + [ 7.8652511, 47.4377078 ], + [ 7.8653534, 47.4377382 ], + [ 7.8654876, 47.4377689 ], + [ 7.8656384, 47.4377998 ], + [ 7.8658523, 47.4378439 ], + [ 7.8659791, 47.437874 ], + [ 7.8661085, 47.4379101 ], + [ 7.86633, 47.4379774 ], + [ 7.866379, 47.4379882 ], + [ 7.8664281, 47.4379939 ], + [ 7.8664755, 47.4379955 ], + [ 7.8665275999999995, 47.4379906 ], + [ 7.8665782, 47.4379813 ], + [ 7.8666286, 47.4379636 ], + [ 7.8666549, 47.4379499 ], + [ 7.8666848, 47.4379158 ], + [ 7.8667044, 47.4378818 ], + [ 7.8667149, 47.4378463 ], + [ 7.8667119, 47.4378083 ], + [ 7.8667026, 47.4377881 ], + [ 7.8666805, 47.4377635 ], + [ 7.8667043, 47.4377362 ], + [ 7.8666229, 47.4376306 ], + [ 7.8665945, 47.4376033 ], + [ 7.8665151, 47.4375346 ], + [ 7.8663951, 47.4374434 ], + [ 7.8663139, 47.4373783 ], + [ 7.8662362, 47.4373083 ], + [ 7.8661513, 47.4372158 ], + [ 7.8660594, 47.4371246 ], + [ 7.866008, 47.4370653 ], + [ 7.8660077, 47.4370308 ], + [ 7.8660263, 47.4369307 ], + [ 7.8660491, 47.4367177 ], + [ 7.8660432, 47.4366464 ], + [ 7.8660198, 47.4365762 ], + [ 7.8660143, 47.4365464 ], + [ 7.8659856, 47.4364502 ], + [ 7.8659798, 47.4363895 ], + [ 7.8659828, 47.4363229 ], + [ 7.8659977, 47.4362158 ], + [ 7.8659884, 47.4361563 ], + [ 7.8659242, 47.4358091 ], + [ 7.8659045, 47.4357437 ], + [ 7.8658866, 47.435695 ], + [ 7.8658687, 47.4356641 ], + [ 7.8655521, 47.4353298 ], + [ 7.8652054, 47.4349574 ], + [ 7.865101, 47.4348341 ], + [ 7.8650692, 47.4348008 ], + [ 7.8649758, 47.4347394 ], + [ 7.8648045, 47.4346031 ], + [ 7.8647727, 47.434577 ], + [ 7.8647355, 47.434526 ], + [ 7.8646876, 47.4344524 ], + [ 7.8646309, 47.4343764 ], + [ 7.86453, 47.4342602 ], + [ 7.8644752, 47.4341986 ], + [ 7.8644185, 47.4341453 ], + [ 7.8643446, 47.4341003 ], + [ 7.8643022, 47.4340585 ], + [ 7.8642234, 47.4340996 ], + [ 7.8640348, 47.4340763 ], + [ 7.8640235, 47.4340771 ], + [ 7.8632642, 47.4341275 ], + [ 7.8632519, 47.4341283 ], + [ 7.8627819, 47.4342177 ], + [ 7.8621145, 47.4343348 ], + [ 7.861625, 47.4343581 ], + [ 7.8611421, 47.4343803 ], + [ 7.860472, 47.4344695 ], + [ 7.8604245, 47.4344731 ], + [ 7.8600182, 47.4345683 ], + [ 7.8597283000000004, 47.4346244 ], + [ 7.8591673, 47.4346758 ], + [ 7.8591618, 47.4346754 ], + [ 7.8583606, 47.4346185 ], + [ 7.8583575, 47.4346508 ], + [ 7.8582379, 47.434644 ], + [ 7.8581931, 47.4346555 ], + [ 7.8577767, 47.4347798 ], + [ 7.8574884, 47.4348808 ], + [ 7.8570267, 47.4350946 ], + [ 7.8565589, 47.435316 ], + [ 7.8562715999999995, 47.4354711 ], + [ 7.8560189, 47.4356822 ], + [ 7.8558994, 47.435893 ], + [ 7.8558369, 47.43597 ], + [ 7.8558409000000005, 47.435975 ], + [ 7.8558905, 47.4361582 ], + [ 7.8558952, 47.4362755 ], + [ 7.8558686, 47.4363729 ], + [ 7.8557388, 47.4364432 ], + [ 7.8557933, 47.4367883 ], + [ 7.8558202, 47.4370664 ], + [ 7.8559532, 47.4374026 ], + [ 7.8559926, 47.4376505 ], + [ 7.8559974, 47.4376811 ], + [ 7.8560115, 47.4377696 ], + [ 7.8559439, 47.4378106 ], + [ 7.8560694, 47.4380267 ], + [ 7.8562225, 47.4383164 ], + [ 7.8558647, 47.4382381 ], + [ 7.8555205, 47.4380733 ], + [ 7.855276, 47.4379583 ], + [ 7.8551686, 47.4379171 ], + [ 7.8551303, 47.4379025 ], + [ 7.8551054, 47.4378929 ], + [ 7.8547088, 47.4381341 ], + [ 7.8543277, 47.4384495 ], + [ 7.8542965, 47.4384686 ], + [ 7.8542925, 47.4384663 ], + [ 7.8539925, 47.4386502 ], + [ 7.8536739, 47.4388991 ], + [ 7.8533867, 47.4392474 ], + [ 7.8531517, 47.4395081 ], + [ 7.8531208, 47.4395426 ], + [ 7.8529909, 47.4396801 ], + [ 7.852855, 47.439896 ], + [ 7.8526751, 47.4400652 ], + [ 7.8526262, 47.4402271 ], + [ 7.8525029, 47.4404044 ], + [ 7.8522187, 47.4407462 ], + [ 7.8521839, 47.4409261 ], + [ 7.8521982, 47.4411773 ], + [ 7.8522366, 47.4414621 ], + [ 7.8519825, 47.4417583 ], + [ 7.851679, 47.4417147 ], + [ 7.8512546, 47.4416501 ], + [ 7.850687, 47.4415627 ], + [ 7.8503771, 47.4414901 ], + [ 7.8498466, 47.441449 ], + [ 7.8496087, 47.4414973 ], + [ 7.8493276, 47.4417547 ], + [ 7.8490718, 47.4420608 ], + [ 7.849916, 47.4424529 ], + [ 7.8505643, 47.4427448 ], + [ 7.8513522, 47.4431211 ], + [ 7.8520627, 47.4434502 ], + [ 7.8527474999999995, 47.4436968 ], + [ 7.8535781, 47.4440178 ], + [ 7.8534865, 47.4438762 ], + [ 7.8533848, 47.4437179 ], + [ 7.853299, 47.443584 ], + [ 7.8532366, 47.4434831 ], + [ 7.8532296, 47.443469 ], + [ 7.8532236, 47.4434548 ], + [ 7.8532185, 47.4434404 ], + [ 7.8532143, 47.4434258 ], + [ 7.8532112, 47.4434111 ], + [ 7.853209, 47.4433964 ], + [ 7.8532079, 47.4433816 ], + [ 7.8532077000000005, 47.4433668 ], + [ 7.8532084, 47.4433519 ], + [ 7.8532086, 47.4433516 ], + [ 7.8532104, 47.4433372 ], + [ 7.8532132, 47.4433225 ], + [ 7.853217, 47.4433079 ], + [ 7.8532218, 47.4432934 ], + [ 7.8532276, 47.4432791 ], + [ 7.8532343000000004, 47.443265 ], + [ 7.853242, 47.4432511 ], + [ 7.8532506, 47.4432375 ], + [ 7.8532601, 47.4432241 ], + [ 7.8532705, 47.4432111 ], + [ 7.8532817, 47.4431984 ], + [ 7.8532938, 47.443186 ], + [ 7.8533068, 47.4431741 ], + [ 7.8533205, 47.4431625 ], + [ 7.8533349, 47.4431514 ], + [ 7.8533501, 47.4431408 ], + [ 7.853366, 47.4431306 ], + [ 7.8533826, 47.4431209 ], + [ 7.8533998, 47.4431118 ], + [ 7.8534176, 47.4431032 ], + [ 7.8534575, 47.4430788 ], + [ 7.8535166, 47.4430528 ], + [ 7.8535846, 47.4430237 ], + [ 7.853673, 47.4429981 ], + [ 7.8537531, 47.4429766 ], + [ 7.8538638, 47.4429491 ], + [ 7.8540872, 47.4428922 ], + [ 7.8543692, 47.4428268 ], + [ 7.8547087, 47.4427558 ], + [ 7.8549053, 47.4427033 ], + [ 7.8549596, 47.44268 ], + [ 7.8549902, 47.4426655 ], + [ 7.8550315, 47.4426432 ], + [ 7.8550754, 47.4426144 ], + [ 7.8551022, 47.4425977 ], + [ 7.855137, 47.4426255 ], + [ 7.8553207, 47.442731 ], + [ 7.8558177, 47.4428968 ], + [ 7.8560181, 47.4430116 ], + [ 7.8561244, 47.4426867 ], + [ 7.8562141, 47.4423683 ], + [ 7.856219, 47.4423699 ], + [ 7.8563523, 47.4423559 ], + [ 7.8564922, 47.44235 ], + [ 7.8567667, 47.4423315 ], + [ 7.8569097, 47.4420699 ], + [ 7.8570671999999995, 47.4417716 ], + [ 7.857374, 47.4419394 ], + [ 7.8577523, 47.4421324 ], + [ 7.8577211, 47.4423763 ], + [ 7.8577161, 47.4423761 ], + [ 7.8577079, 47.4424016 ], + [ 7.8577128, 47.4424035 ], + [ 7.8581, 47.4424716 ], + [ 7.8583888, 47.4425139 ], + [ 7.8586960999999995, 47.4425363 ], + [ 7.8594103, 47.4426556 ], + [ 7.8596956, 47.4427137 ], + [ 7.8597985, 47.4427345 ], + [ 7.8598699, 47.4422798 ], + [ 7.8598669, 47.442277 ], + [ 7.8600521, 47.4422458 ], + [ 7.8592534, 47.4413777 ], + [ 7.858917, 47.4411975 ], + [ 7.8589169, 47.4411961 ], + [ 7.8589174, 47.4411958 ], + [ 7.8589426, 47.4411737 ], + [ 7.858948, 47.4411677 ], + [ 7.8589535999999995, 47.4411554 ], + [ 7.8589589, 47.4411376 ], + [ 7.8589591, 47.4411271 ], + [ 7.8589556, 47.4411028 ], + [ 7.8589515, 47.441084 ], + [ 7.8589442, 47.4410711 ], + [ 7.8589268, 47.4410489 ], + [ 7.8589006999999995, 47.4410218 ], + [ 7.8588645, 47.4409905 ], + [ 7.8588265, 47.440961 ], + [ 7.8587621, 47.4409186 ], + [ 7.8587615, 47.4409181 ], + [ 7.8587384, 47.4409045 ], + [ 7.858716, 47.4408899 ], + [ 7.8587011, 47.4408789 ], + [ 7.8586851, 47.4408638 ], + [ 7.8586545999999995, 47.44083 ], + [ 7.8586449, 47.4408089 ], + [ 7.8586046, 47.4406981 ], + [ 7.8585778, 47.4406151 ], + [ 7.858559, 47.4405371 ], + [ 7.8585372, 47.4404382 ], + [ 7.8584947, 47.4402598 ], + [ 7.8584433, 47.4400723 ], + [ 7.8584105, 47.4399631 ], + [ 7.8583755, 47.4398368 ], + [ 7.8583422, 47.4397267 ], + [ 7.8583139, 47.4396349 ], + [ 7.8582765, 47.4395015 ], + [ 7.8582611, 47.4394487 ], + [ 7.8582485, 47.4394002 ], + [ 7.8582461, 47.4393679 ], + [ 7.8582443, 47.4393364 ], + [ 7.858245, 47.4393062 ], + [ 7.8582453999999995, 47.4393046 ], + [ 7.8582511, 47.4392833 ], + [ 7.8582577, 47.4392649 ], + [ 7.8582657, 47.4392425 ], + [ 7.8582832, 47.4392131 ], + [ 7.8583023, 47.4391888 ], + [ 7.8583295, 47.43917 ], + [ 7.858383, 47.4391409 ], + [ 7.8584731, 47.4391057 ], + [ 7.858511, 47.4390923 ], + [ 7.8585522, 47.4390754 ], + [ 7.8585823999999995, 47.4390629 ], + [ 7.8586121, 47.439046 ], + [ 7.8586477, 47.4390223 ], + [ 7.8586773, 47.4390009 ], + [ 7.8587345, 47.438956 ], + [ 7.8587901, 47.4389139 ], + [ 7.8588414, 47.4388836 ], + [ 7.8589088, 47.4388583 ], + [ 7.8590101, 47.4388307 ], + [ 7.8590625, 47.4388245 ], + [ 7.8591206, 47.4388226 ], + [ 7.8591599, 47.4388243 ], + [ 7.8592077, 47.4388325 ], + [ 7.8592528999999995, 47.4388417 ], + [ 7.8596076, 47.4389478 ], + [ 7.8596195, 47.4389515 ], + [ 7.8596316999999996, 47.4389546 ], + [ 7.8596442, 47.4389572 ], + [ 7.859657, 47.4389593 ], + [ 7.8596699, 47.4389608 ], + [ 7.8596829, 47.4389617 ], + [ 7.859696, 47.4389621 ], + [ 7.8597091, 47.4389619 ], + [ 7.8597222, 47.4389611 ], + [ 7.8597351, 47.4389597 ], + [ 7.8597479, 47.4389578 ], + [ 7.8597605, 47.4389553 ], + [ 7.8597728, 47.4389522 ], + [ 7.8597848, 47.4389486 ], + [ 7.8597962, 47.4389446 ], + [ 7.8598072, 47.4389401 ], + [ 7.8598178, 47.4389351 ], + [ 7.8598278, 47.4389297 ], + [ 7.8598374, 47.4389238 ], + [ 7.8598463, 47.4389176 ], + [ 7.8598547, 47.4389109 ], + [ 7.8598624, 47.438904 ], + [ 7.8598695, 47.4388967 ], + [ 7.8598759, 47.4388891 ], + [ 7.8598815, 47.4388812 ], + [ 7.8598864, 47.4388732 ], + [ 7.8598943, 47.4388609 ], + [ 7.8599014, 47.4388484 ], + [ 7.8599076, 47.4388356 ], + [ 7.859913, 47.4388227 ], + [ 7.8599176, 47.4388097 ], + [ 7.8599213, 47.4387965 ], + [ 7.8599241, 47.4387832 ], + [ 7.859926, 47.4387699 ], + [ 7.859927, 47.4387565 ], + [ 7.8599217, 47.4387225 ], + [ 7.8599073, 47.4386797 ], + [ 7.8598907, 47.4386402 ], + [ 7.8598597, 47.4386001 ], + [ 7.8598276, 47.4385671 ], + [ 7.8597941, 47.4385385 ], + [ 7.8597278, 47.4384958 ], + [ 7.8596189, 47.4384258 ], + [ 7.8595033, 47.4383499 ], + [ 7.8594337, 47.4383041 ], + [ 7.8593906, 47.4382748 ], + [ 7.8593415, 47.4382396 ], + [ 7.8592934, 47.438204 ], + [ 7.8592606, 47.438175 ], + [ 7.8592321, 47.4381394 ], + [ 7.8592058, 47.4381052 ], + [ 7.8591822, 47.4380722 ], + [ 7.8591552, 47.4380236 ], + [ 7.8591332, 47.4379787 ], + [ 7.8591247, 47.4379612 ], + [ 7.8591112, 47.4379259 ], + [ 7.8590991, 47.4378868 ], + [ 7.8590927, 47.437867 ], + [ 7.8590812, 47.4378159 ], + [ 7.8590748, 47.4377855 ], + [ 7.8590691, 47.4377322 ], + [ 7.8590669, 47.4376938 ], + [ 7.8590732, 47.4376587 ], + [ 7.8590894, 47.4375951 ], + [ 7.8591102, 47.4375343 ], + [ 7.8591286, 47.4374901 ], + [ 7.8591464, 47.4374604 ], + [ 7.8591739, 47.4374212 ], + [ 7.8592106, 47.4373864 ], + [ 7.8592443, 47.4373609 ], + [ 7.8592859, 47.4373344 ], + [ 7.8593109, 47.437323 ], + [ 7.8593267, 47.4373161 ], + [ 7.859516, 47.4372453 ], + [ 7.859674, 47.4371875 ], + [ 7.8598973999999995, 47.4371051 ], + [ 7.8600711, 47.4370506 ], + [ 7.8601890999999995, 47.4370127 ], + [ 7.8603221, 47.4369843 ], + [ 7.860733, 47.4369434 ], + [ 7.8609732999999995, 47.4369181 ], + [ 7.8611185, 47.4368998 ], + [ 7.8612269999999995, 47.4368841 ], + [ 7.8613285, 47.4368658 ], + [ 7.8615208, 47.4368292 ], + [ 7.86163, 47.4368081 ], + [ 7.8618542, 47.4367644 ], + [ 7.8620079, 47.436734799999996 ], + [ 7.8621922, 47.4366972 ], + [ 7.8623141, 47.4366798 ], + [ 7.8624091, 47.4366669 ], + [ 7.8624697, 47.4366584 ], + [ 7.8625352, 47.4366604 ], + [ 7.8626055, 47.4366612 ], + [ 7.8626645, 47.4366643 ], + [ 7.8627154, 47.4366685 ], + [ 7.8628335, 47.4366845 ], + [ 7.8629055, 47.4366941 ], + [ 7.8629921, 47.4367053 ], + [ 7.8630366, 47.4367112 ], + [ 7.86306, 47.4367122 ], + [ 7.8631025, 47.4367148 ], + [ 7.8631427, 47.4367172 ], + [ 7.8632128, 47.4367204 ], + [ 7.8632686, 47.4367229 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns026", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Mutti - Schöffleten", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Mutti - Schöffleten", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Mutti - Schöffleten", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Mutti - Schöffleten", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.2613544, 47.5093957 ], + [ 9.2612041, 47.5098137 ], + [ 9.2620599, 47.5099504 ], + [ 9.2621241, 47.5097704 ], + [ 9.2621849, 47.5097613 ], + [ 9.2629055, 47.509866 ], + [ 9.2631328, 47.5099128 ], + [ 9.2631615, 47.5099763 ], + [ 9.263159, 47.5100573 ], + [ 9.2631363, 47.5101323 ], + [ 9.2631022, 47.5101823 ], + [ 9.2630508, 47.5102317 ], + [ 9.2629936, 47.5102668 ], + [ 9.2629254, 47.5102921 ], + [ 9.2628793, 47.5103037 ], + [ 9.2626756, 47.510288 ], + [ 9.2618496, 47.510167 ], + [ 9.2616789, 47.5106878 ], + [ 9.2639386, 47.5114169 ], + [ 9.2639585, 47.5114535 ], + [ 9.2640918, 47.5112768 ], + [ 9.2643929, 47.5110355 ], + [ 9.2661209, 47.5097766 ], + [ 9.2664426, 47.509517 ], + [ 9.2667962, 47.5092208 ], + [ 9.2594749, 47.5081343 ], + [ 9.2581573, 47.5087011 ], + [ 9.2595468, 47.5089941 ], + [ 9.2602368, 47.5090975 ], + [ 9.2603771, 47.5091619 ], + [ 9.2603908, 47.5091734 ], + [ 9.2604129, 47.5091973 ], + [ 9.2604336, 47.509222199999996 ], + [ 9.260446, 47.5092355 ], + [ 9.260461, 47.5092469 ], + [ 9.2604692, 47.5092513 ], + [ 9.2604759, 47.5092548 ], + [ 9.260488, 47.5092591 ], + [ 9.2605001, 47.5092625 ], + [ 9.2605188, 47.5092658 ], + [ 9.2613544, 47.5093957 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZV002", + "country" : "CHE", + "name" : [ + { + "text" : "LSZV Sitterdorf (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSZV Sitterdorf (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSZV Sitterdorf (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSZV Sitterdorf (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Flugplatz Sitterdorf", + "lang" : "de-CH" + }, + { + "text" : "Flugplatz Sitterdorf", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatz Sitterdorf", + "lang" : "it-CH" + }, + { + "text" : "Flugplatz Sitterdorf", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Willi Hefel", + "lang" : "de-CH" + }, + { + "text" : "Willi Hefel", + "lang" : "fr-CH" + }, + { + "text" : "Willi Hefel", + "lang" : "it-CH" + }, + { + "text" : "Willi Hefel", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.erlebnisflugplatz.ch/deu/drohnen_42639.shtml", + "email" : "info@erlebnisflugplatz.ch", + "phone" : "0041714223031", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P02DT12H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8087208, 47.4380797 ], + [ 7.808925, 47.438215 ], + [ 7.8090997, 47.4378787 ], + [ 7.8091875, 47.4376245 ], + [ 7.8092203, 47.4372434 ], + [ 7.8092467, 47.4368518 ], + [ 7.8092828, 47.4356409 ], + [ 7.8092856, 47.4354999 ], + [ 7.8092693, 47.4350193 ], + [ 7.8091702, 47.4346574 ], + [ 7.8090242, 47.4344603 ], + [ 7.8089729, 47.433969 ], + [ 7.8089923, 47.4338572 ], + [ 7.8091137, 47.4336921 ], + [ 7.809163, 47.4335969 ], + [ 7.8092251, 47.4335393 ], + [ 7.8092473, 47.4334594 ], + [ 7.8092600999999995, 47.433342 ], + [ 7.8092517, 47.4332876 ], + [ 7.8092216, 47.4331922 ], + [ 7.8090879, 47.4329815 ], + [ 7.8090504, 47.432884 ], + [ 7.8090322, 47.4328245 ], + [ 7.8090053, 47.4327072 ], + [ 7.8089986, 47.4326398 ], + [ 7.8090012, 47.4324896 ], + [ 7.8089968, 47.4323762 ], + [ 7.8089711, 47.4322779 ], + [ 7.8089462, 47.4322124 ], + [ 7.8089136, 47.4320871 ], + [ 7.808893, 47.4319328 ], + [ 7.8088937, 47.4318173 ], + [ 7.8089061, 47.4317088 ], + [ 7.808911, 47.4316138 ], + [ 7.808911, 47.4315502 ], + [ 7.8088972, 47.4315116 ], + [ 7.8088845, 47.431475 ], + [ 7.8088467, 47.4313821 ], + [ 7.8087862999999995, 47.4312759 ], + [ 7.8087613000000005, 47.4312372 ], + [ 7.8087138, 47.4311723 ], + [ 7.8087124, 47.4312497 ], + [ 7.8087097, 47.4312494 ], + [ 7.808712, 47.4314579 ], + [ 7.8087378, 47.4322309 ], + [ 7.8088604, 47.4343335 ], + [ 7.8088789, 47.4347978 ], + [ 7.8089233, 47.4349128 ], + [ 7.8088741, 47.4364782 ], + [ 7.8088562, 47.4367748 ], + [ 7.8088027, 47.4373793 ], + [ 7.808711, 47.4380732 ], + [ 7.8087208, 47.4380797 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr140", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Tenniken Diegterbach", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Tenniken Diegterbach", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Tenniken Diegterbach", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Tenniken Diegterbach", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7617597, 47.445097 ], + [ 7.7617206, 47.4449696 ], + [ 7.7620356, 47.4451414 ], + [ 7.7626472, 47.4453538 ], + [ 7.7626716, 47.4453296 ], + [ 7.7628786, 47.4451271 ], + [ 7.7632533, 47.4449267 ], + [ 7.7634223, 47.444989 ], + [ 7.7637512, 47.4451285 ], + [ 7.7639494, 47.4451992 ], + [ 7.7641894, 47.4452487 ], + [ 7.7647354, 47.4454268 ], + [ 7.7652657, 47.4454899 ], + [ 7.7654505, 47.4455378 ], + [ 7.7658903, 47.4455504 ], + [ 7.766385, 47.4454695 ], + [ 7.7663539, 47.44588 ], + [ 7.7664466999999995, 47.445915 ], + [ 7.7670766, 47.4454927 ], + [ 7.7667406, 47.4452601 ], + [ 7.7670347, 47.4451118 ], + [ 7.7669538, 47.4449742 ], + [ 7.7668902, 47.4447539 ], + [ 7.7665232, 47.4445881 ], + [ 7.7662602, 47.4445724 ], + [ 7.7658380000000005, 47.4448443 ], + [ 7.7654057, 47.4449647 ], + [ 7.7647768, 47.4449834 ], + [ 7.7644466, 47.4449932 ], + [ 7.7643654, 47.4449832 ], + [ 7.7640198, 47.4449409 ], + [ 7.7634424, 47.4446312 ], + [ 7.7631888, 47.4443982 ], + [ 7.7630331, 47.4442317 ], + [ 7.7628549, 47.4440188 ], + [ 7.7626912, 47.4437863 ], + [ 7.7626622, 47.4437946 ], + [ 7.7622981, 47.4438933 ], + [ 7.7618236, 47.4440192 ], + [ 7.7613216, 47.4436963 ], + [ 7.7612502, 47.4436864 ], + [ 7.7610909, 47.4434237 ], + [ 7.7608847999999995, 47.4431417 ], + [ 7.7608214, 47.4431638 ], + [ 7.760726, 47.4431581 ], + [ 7.7605234, 47.4431461 ], + [ 7.7603837, 47.443195 ], + [ 7.7602569, 47.4432585 ], + [ 7.7601466, 47.443334899999996 ], + [ 7.7600556, 47.4434222 ], + [ 7.759986, 47.4435184 ], + [ 7.7599583, 47.4435755 ], + [ 7.7599369, 47.4436338 ], + [ 7.7599239, 47.4436933 ], + [ 7.7599187, 47.4437533 ], + [ 7.7599156, 47.4439526 ], + [ 7.7599057, 47.4443229 ], + [ 7.7598807, 47.4444583 ], + [ 7.759895, 47.4445705 ], + [ 7.7598674, 47.4447088 ], + [ 7.759909, 47.4447238 ], + [ 7.7600698, 47.4447814 ], + [ 7.7602549, 47.4448607 ], + [ 7.7603788, 47.4449799 ], + [ 7.7605239, 47.4453237 ], + [ 7.7606611999999995, 47.4455134 ], + [ 7.7609386, 47.4460078 ], + [ 7.7605284, 47.4462227 ], + [ 7.7608722, 47.4466052 ], + [ 7.7611133, 47.4468932 ], + [ 7.7613379, 47.4471615 ], + [ 7.7615093, 47.4473815 ], + [ 7.7616517, 47.4476006 ], + [ 7.7618238, 47.447913 ], + [ 7.7620975, 47.4485053 ], + [ 7.7623784, 47.4486755 ], + [ 7.7626028, 47.4488233 ], + [ 7.7628228, 47.4489759 ], + [ 7.7630593999999995, 47.44909 ], + [ 7.7630449, 47.4489533 ], + [ 7.7630132, 47.4487139 ], + [ 7.7629949, 47.4485659 ], + [ 7.7628863, 47.4484069 ], + [ 7.7627808, 47.4482482 ], + [ 7.7627269, 47.4480846 ], + [ 7.7626659, 47.4479057 ], + [ 7.7626428, 47.4478383 ], + [ 7.7626101, 47.4476946 ], + [ 7.7625297, 47.4473412 ], + [ 7.7624908999999995, 47.4471698 ], + [ 7.7623484, 47.4468051 ], + [ 7.76233, 47.4467578 ], + [ 7.7622589, 47.4465757 ], + [ 7.7621249, 47.4463662 ], + [ 7.7618761, 47.445916 ], + [ 7.7618039, 47.4457863 ], + [ 7.7616008, 47.4454169 ], + [ 7.7616748, 47.4453721 ], + [ 7.7616943, 47.4453603 ], + [ 7.7616598, 47.4453413 ], + [ 7.7616872, 47.4453158 ], + [ 7.7617597, 47.445097 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns343", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Eggwald - Looch", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Eggwald - Looch", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Eggwald - Looch", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Eggwald - Looch", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.4850488, 46.9484127 ], + [ 9.485038, 46.9482716 ], + [ 9.4850165, 46.9481311 ], + [ 9.4849842, 46.9479915 ], + [ 9.4849413, 46.9478533 ], + [ 9.484888, 46.9477168 ], + [ 9.4848242, 46.9475825 ], + [ 9.4847503, 46.9474506 ], + [ 9.4846664, 46.9473215 ], + [ 9.4845728, 46.9471956 ], + [ 9.4844697, 46.9470733 ], + [ 9.4843573, 46.9469548 ], + [ 9.4842361, 46.9468405 ], + [ 9.4841063, 46.9467307 ], + [ 9.4839682, 46.9466257 ], + [ 9.4838224, 46.9465257 ], + [ 9.4836691, 46.9464312 ], + [ 9.4835088, 46.9463423 ], + [ 9.4833419, 46.9462592 ], + [ 9.4831689, 46.9461823 ], + [ 9.4829902, 46.9461116 ], + [ 9.4828064, 46.9460474 ], + [ 9.482618, 46.94599 ], + [ 9.4824254, 46.9459393 ], + [ 9.4822292, 46.9458956 ], + [ 9.4820299, 46.9458591 ], + [ 9.4818281, 46.9458297 ], + [ 9.4816244, 46.9458075 ], + [ 9.4814192, 46.9457928 ], + [ 9.4812132, 46.9457853 ], + [ 9.4810069, 46.9457853 ], + [ 9.4808009, 46.9457927 ], + [ 9.4805957, 46.9458074 ], + [ 9.480392, 46.9458295 ], + [ 9.4801902, 46.9458589 ], + [ 9.4799909, 46.9458954 ], + [ 9.4797947, 46.9459391 ], + [ 9.4796021, 46.9459897 ], + [ 9.4794136, 46.9460471 ], + [ 9.4792298, 46.9461112 ], + [ 9.4790511, 46.9461819 ], + [ 9.478878, 46.9462588 ], + [ 9.4787111, 46.9463418 ], + [ 9.4785508, 46.9464307 ], + [ 9.4783974, 46.946525199999996 ], + [ 9.4782515, 46.9466251 ], + [ 9.4781135, 46.946730099999996 ], + [ 9.4779836, 46.9468398 ], + [ 9.4778623, 46.9469541 ], + [ 9.4777499, 46.9470726 ], + [ 9.4776467, 46.9471949 ], + [ 9.477553, 46.9473208 ], + [ 9.4774691, 46.9474499 ], + [ 9.4773951, 46.9475818 ], + [ 9.4773313, 46.9477161 ], + [ 9.4772779, 46.9478526 ], + [ 9.477235, 46.9479907 ], + [ 9.4772026, 46.9481303 ], + [ 9.477181, 46.9482708 ], + [ 9.4771702, 46.948411899999996 ], + [ 9.4771702, 46.9485532 ], + [ 9.4771809, 46.9486942 ], + [ 9.4772024, 46.9488348 ], + [ 9.4772347, 46.9489743 ], + [ 9.4772775, 46.9491125 ], + [ 9.4773309, 46.949249 ], + [ 9.4773946, 46.9493833 ], + [ 9.4774685, 46.9495152 ], + [ 9.4775524, 46.9496443 ], + [ 9.477646, 46.9497702 ], + [ 9.4777491, 46.9498926 ], + [ 9.4778615, 46.9500111 ], + [ 9.4779827, 46.9501254 ], + [ 9.4781125, 46.9502352 ], + [ 9.478250599999999, 46.9503402 ], + [ 9.4783964, 46.9504401 ], + [ 9.4785497, 46.9505347 ], + [ 9.47871, 46.9506236 ], + [ 9.4788769, 46.9507067 ], + [ 9.4790499, 46.9507836 ], + [ 9.4792286, 46.9508543 ], + [ 9.4794124, 46.9509185 ], + [ 9.4796009, 46.950976 ], + [ 9.4797935, 46.9510266 ], + [ 9.4799897, 46.9510703 ], + [ 9.480189, 46.9511069 ], + [ 9.4803908, 46.9511363 ], + [ 9.4805945, 46.9511584 ], + [ 9.4807997, 46.9511732 ], + [ 9.4810058, 46.9511806 ], + [ 9.4812121, 46.9511806 ], + [ 9.481418099999999, 46.9511732 ], + [ 9.4816233, 46.9511585 ], + [ 9.4818271, 46.9511364 ], + [ 9.4820289, 46.951107 ], + [ 9.4822282, 46.9510705 ], + [ 9.4824244, 46.9510269 ], + [ 9.482617, 46.9509762 ], + [ 9.4828055, 46.9509188 ], + [ 9.4829894, 46.9508547 ], + [ 9.4831681, 46.9507841 ], + [ 9.4833411, 46.9507071 ], + [ 9.4835081, 46.9506241 ], + [ 9.483668399999999, 46.9505352 ], + [ 9.4838217, 46.9504407 ], + [ 9.4839676, 46.9503408 ], + [ 9.4841057, 46.9502358 ], + [ 9.4842356, 46.950126 ], + [ 9.4843568, 46.9500117 ], + [ 9.4844692, 46.9498932 ], + [ 9.4845724, 46.9497709 ], + [ 9.4846661, 46.949645 ], + [ 9.48475, 46.949516 ], + [ 9.484824, 46.9493841 ], + [ 9.4848878, 46.9492497 ], + [ 9.4849412, 46.9491133 ], + [ 9.4849841, 46.9489751 ], + [ 9.4850164, 46.9488355 ], + [ 9.485038, 46.948695 ], + [ 9.4850488, 46.9485539 ], + [ 9.4850488, 46.9484127 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0069", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Mapragg", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Mapragg", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Mapragg", + "lang" : "it-CH" + }, + { + "text" : "Substation Mapragg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.746073, 46.9398155 ], + [ 6.7470083, 46.9396465 ], + [ 6.7471229, 46.939183 ], + [ 6.7479177, 46.9384864 ], + [ 6.7487447, 46.9377505 ], + [ 6.7487527, 46.9377528 ], + [ 6.7489427, 46.9378063 ], + [ 6.7495947, 46.9373477 ], + [ 6.7502336, 46.9374135 ], + [ 6.7500302, 46.937579 ], + [ 6.7499348, 46.9376645 ], + [ 6.7505191, 46.9380141 ], + [ 6.7507946, 46.9380828 ], + [ 6.7518961, 46.9382981 ], + [ 6.7522771, 46.9387089 ], + [ 6.7523095, 46.9383324 ], + [ 6.7523123, 46.9383175 ], + [ 6.7521659, 46.938246 ], + [ 6.7522841, 46.9381691 ], + [ 6.7520583, 46.9378026 ], + [ 6.752167, 46.937517 ], + [ 6.7533369, 46.937525 ], + [ 6.7541215999999995, 46.9374075 ], + [ 6.754109, 46.9373904 ], + [ 6.7537943, 46.936966 ], + [ 6.7544304, 46.9368534 ], + [ 6.7547539, 46.9367335 ], + [ 6.7554118, 46.9364944 ], + [ 6.7556755, 46.9364164 ], + [ 6.7559453, 46.9363445 ], + [ 6.7564976, 46.936134 ], + [ 6.7566836, 46.9359165 ], + [ 6.7560785, 46.9354704 ], + [ 6.7554493, 46.9350151 ], + [ 6.7548853, 46.9346023 ], + [ 6.7542188, 46.9341175 ], + [ 6.7543519, 46.9340475 ], + [ 6.7544745, 46.9339772 ], + [ 6.7546591, 46.9338569 ], + [ 6.7551441, 46.9338548 ], + [ 6.7553866, 46.9337241 ], + [ 6.7555359, 46.9336454 ], + [ 6.7563987999999995, 46.9329108 ], + [ 6.7572156, 46.9322115 ], + [ 6.7583514000000005, 46.9311857 ], + [ 6.7578437000000005, 46.9307926 ], + [ 6.757524, 46.9306745 ], + [ 6.7570324, 46.9305234 ], + [ 6.7554388, 46.9302902 ], + [ 6.7550672, 46.93017 ], + [ 6.7537562, 46.9302155 ], + [ 6.7532043, 46.930203 ], + [ 6.7532711, 46.9298222 ], + [ 6.7531045, 46.9291435 ], + [ 6.7521059, 46.9292756 ], + [ 6.7512365, 46.9292338 ], + [ 6.750357, 46.9289507 ], + [ 6.7501327, 46.9287757 ], + [ 6.7492324, 46.9280733 ], + [ 6.7491997999999995, 46.9277271 ], + [ 6.7491329, 46.9270165 ], + [ 6.7490901, 46.9265012 ], + [ 6.7492775, 46.925767 ], + [ 6.7493476999999995, 46.925101 ], + [ 6.7492073, 46.9250049 ], + [ 6.7491907, 46.9250226 ], + [ 6.7476942, 46.9266139 ], + [ 6.7475635, 46.9265558 ], + [ 6.7474349, 46.9264991 ], + [ 6.7471794, 46.9263874 ], + [ 6.7470935, 46.9263491 ], + [ 6.7469159, 46.9262644 ], + [ 6.7466477, 46.9261762 ], + [ 6.7464028, 46.9260595 ], + [ 6.7461503, 46.9259432 ], + [ 6.7459033999999996, 46.9258182 ], + [ 6.745825, 46.925770299999996 ], + [ 6.7457504, 46.9257199 ], + [ 6.7456694, 46.9256858 ], + [ 6.7454721, 46.9255146 ], + [ 6.7451576, 46.9253369 ], + [ 6.7451238, 46.9253171 ], + [ 6.7450303, 46.9251646 ], + [ 6.7448215, 46.925035 ], + [ 6.7446443, 46.9248493 ], + [ 6.7445807, 46.9247826 ], + [ 6.7445699, 46.9247542 ], + [ 6.7444738, 46.924692 ], + [ 6.7443655, 46.924599 ], + [ 6.7441688, 46.9242998 ], + [ 6.7439674, 46.9241149 ], + [ 6.7439065, 46.9238511 ], + [ 6.743579, 46.9240896 ], + [ 6.7434102, 46.9242838 ], + [ 6.7434006, 46.9243233 ], + [ 6.7428118999999995, 46.9244957 ], + [ 6.7425343, 46.9245986 ], + [ 6.7424181999999995, 46.9243993 ], + [ 6.7423452, 46.9243143 ], + [ 6.7422672, 46.924225 ], + [ 6.7420928, 46.9241245 ], + [ 6.7419227, 46.9240515 ], + [ 6.7417654, 46.9239656 ], + [ 6.7416019, 46.9238845 ], + [ 6.7413035, 46.9238464 ], + [ 6.7409544, 46.9236965 ], + [ 6.7404720000000005, 46.9236941 ], + [ 6.7403962, 46.9235749 ], + [ 6.740295, 46.9234886 ], + [ 6.7398401, 46.9231047 ], + [ 6.7398275, 46.9230906 ], + [ 6.7393136, 46.922754 ], + [ 6.7391928, 46.9227107 ], + [ 6.7391302, 46.9226888 ], + [ 6.7389361, 46.9226352 ], + [ 6.7384961, 46.9227208 ], + [ 6.7381618, 46.9227951 ], + [ 6.7378991, 46.9227657 ], + [ 6.7377518, 46.9227492 ], + [ 6.7377043, 46.9227304 ], + [ 6.7373352, 46.9225848 ], + [ 6.7372452, 46.9225493 ], + [ 6.7370830999999995, 46.922456 ], + [ 6.7373235000000005, 46.9223327 ], + [ 6.7371881, 46.9221589 ], + [ 6.7370613, 46.9219963 ], + [ 6.7369204, 46.9219539 ], + [ 6.7370315, 46.9218355 ], + [ 6.7369386, 46.9217547 ], + [ 6.7368217999999995, 46.9216448 ], + [ 6.7370779, 46.9215343 ], + [ 6.7368808, 46.9213345 ], + [ 6.7368102, 46.9212773 ], + [ 6.7366469, 46.9211833 ], + [ 6.7365132, 46.921121 ], + [ 6.7364971, 46.9211131 ], + [ 6.7361547, 46.9209469 ], + [ 6.7354432, 46.920653 ], + [ 6.734849, 46.9202882 ], + [ 6.7345531, 46.9201212 ], + [ 6.7344529, 46.9200647 ], + [ 6.7344353, 46.9200444 ], + [ 6.7342535, 46.9198347 ], + [ 6.7340824999999995, 46.9196375 ], + [ 6.7339144, 46.919525 ], + [ 6.7338834, 46.9194942 ], + [ 6.7337292, 46.9193412 ], + [ 6.7336813, 46.9192936 ], + [ 6.7335802000000005, 46.9191933 ], + [ 6.7333491, 46.918964 ], + [ 6.7331611, 46.9186768 ], + [ 6.733028, 46.9184833 ], + [ 6.7329256, 46.9184116 ], + [ 6.7328373, 46.9183527 ], + [ 6.7325487, 46.9181605 ], + [ 6.7321949, 46.9179491 ], + [ 6.7320333, 46.9178586 ], + [ 6.7317928, 46.9176838 ], + [ 6.7316897, 46.9176088 ], + [ 6.7311653, 46.9174885 ], + [ 6.7308837, 46.9173467 ], + [ 6.7306324, 46.9172168 ], + [ 6.7304147, 46.9171067 ], + [ 6.7299163, 46.9168061 ], + [ 6.729718, 46.9165785 ], + [ 6.7296852, 46.9165409 ], + [ 6.7286319, 46.9164803 ], + [ 6.7284879, 46.9164263 ], + [ 6.7282366, 46.9163205 ], + [ 6.7281732, 46.9162762 ], + [ 6.7278637, 46.9160598 ], + [ 6.7275021, 46.9158497 ], + [ 6.7273223, 46.9157502 ], + [ 6.7271597, 46.9156408 ], + [ 6.7269392, 46.9154151 ], + [ 6.7266969, 46.9152025 ], + [ 6.7264175999999996, 46.9150196 ], + [ 6.726226, 46.9148686 ], + [ 6.7258317, 46.9145839 ], + [ 6.7256817, 46.914485 ], + [ 6.7253462, 46.9147065 ], + [ 6.7251888, 46.9145842 ], + [ 6.7251505, 46.9145527 ], + [ 6.7250175, 46.9144471 ], + [ 6.7249555, 46.9143978 ], + [ 6.7248714, 46.9143446 ], + [ 6.7248324, 46.914320000000004 ], + [ 6.7247421, 46.9142391 ], + [ 6.7244564, 46.9140522 ], + [ 6.7240135, 46.9138159 ], + [ 6.7239816999999995, 46.9137964 ], + [ 6.7237864, 46.913686 ], + [ 6.7237728, 46.9136435 ], + [ 6.723759, 46.9136005 ], + [ 6.723719, 46.9134755 ], + [ 6.7237589, 46.913366 ], + [ 6.7238154, 46.9132106 ], + [ 6.7238313, 46.9131669 ], + [ 6.723777, 46.9130205 ], + [ 6.7236979, 46.9128071 ], + [ 6.7237823, 46.9124992 ], + [ 6.7235309999999995, 46.9122116 ], + [ 6.7234045, 46.9120668 ], + [ 6.7232821, 46.9119267 ], + [ 6.7227321, 46.9114604 ], + [ 6.7224954, 46.9111742 ], + [ 6.7223647, 46.9110152 ], + [ 6.7222523, 46.9109125 ], + [ 6.72198, 46.9106692 ], + [ 6.7218202, 46.9103707 ], + [ 6.722081, 46.9102515 ], + [ 6.7222539, 46.9101486 ], + [ 6.7221060999999995, 46.9099942 ], + [ 6.7220694, 46.9099354 ], + [ 6.7220295, 46.9098957 ], + [ 6.721988, 46.9098593 ], + [ 6.721934, 46.9098062 ], + [ 6.7218149, 46.909689 ], + [ 6.7216642, 46.9096162 ], + [ 6.7215956, 46.9095687 ], + [ 6.7213342, 46.9097564 ], + [ 6.7212349, 46.9097977 ], + [ 6.7210344, 46.9095895 ], + [ 6.7209433, 46.9096239 ], + [ 6.7206207, 46.9097564 ], + [ 6.7205763, 46.9097747 ], + [ 6.7205842, 46.9097225 ], + [ 6.7205556, 46.909619 ], + [ 6.7205091, 46.9094509 ], + [ 6.7204689, 46.9093055 ], + [ 6.7204332, 46.9091764 ], + [ 6.7204165, 46.9091168 ], + [ 6.7203921, 46.9090301 ], + [ 6.7203564, 46.9089216 ], + [ 6.7202924, 46.9087276 ], + [ 6.7202742, 46.908665 ], + [ 6.7202657, 46.9086354 ], + [ 6.7202454, 46.9085656 ], + [ 6.7202291, 46.9085097 ], + [ 6.720219, 46.908475 ], + [ 6.7201826, 46.9083496 ], + [ 6.7201353, 46.908179 ], + [ 6.7200576, 46.9078991 ], + [ 6.7200412, 46.9078397 ], + [ 6.7200874, 46.9078266 ], + [ 6.7200461, 46.9076931 ], + [ 6.7200349, 46.907605 ], + [ 6.7200344, 46.9075674 ], + [ 6.7200307, 46.9074551 ], + [ 6.7200219, 46.9073892 ], + [ 6.7200054, 46.9072647 ], + [ 6.7200035, 46.90723 ], + [ 6.7199544, 46.9070821 ], + [ 6.7199302, 46.9070123 ], + [ 6.7198453, 46.9067672 ], + [ 6.7197929, 46.9066613 ], + [ 6.7197768, 46.906621 ], + [ 6.7197663, 46.906595 ], + [ 6.7196976, 46.9064237 ], + [ 6.719453, 46.9060658 ], + [ 6.7193168, 46.9058696 ], + [ 6.7191674, 46.9056948 ], + [ 6.717757, 46.905908 ], + [ 6.7167011, 46.9060767 ], + [ 6.7167878, 46.9065261 ], + [ 6.7169086, 46.907153 ], + [ 6.7170054, 46.9076549 ], + [ 6.7170929, 46.9081083 ], + [ 6.7172008, 46.9086678 ], + [ 6.7172444, 46.9088937 ], + [ 6.7172754999999995, 46.9090549 ], + [ 6.7172781, 46.9090699 ], + [ 6.7173703, 46.9095872 ], + [ 6.717385, 46.9096695 ], + [ 6.7174186, 46.9098582 ], + [ 6.7174496999999995, 46.9100332 ], + [ 6.7174742, 46.9101706 ], + [ 6.7175347, 46.9105101 ], + [ 6.7176387, 46.9110938 ], + [ 6.7176516, 46.9111663 ], + [ 6.7176768, 46.9113079 ], + [ 6.7176838, 46.9113472 ], + [ 6.7177150999999995, 46.911523 ], + [ 6.7177451999999995, 46.9116914 ], + [ 6.7177439, 46.9117176 ], + [ 6.7175372, 46.9158644 ], + [ 6.7185623, 46.9188287 ], + [ 6.7190156, 46.9202318 ], + [ 6.7193263, 46.9211939 ], + [ 6.720872, 46.925823 ], + [ 6.7211592, 46.9263595 ], + [ 6.7226406, 46.9291277 ], + [ 6.7235202, 46.9307688 ], + [ 6.7236154, 46.9309464 ], + [ 6.7237086, 46.9311203 ], + [ 6.7238530999999995, 46.9310816 ], + [ 6.7245165, 46.9309562 ], + [ 6.7246024, 46.9309578 ], + [ 6.724693, 46.9309855 ], + [ 6.7247815, 46.9310004 ], + [ 6.7249055, 46.9309741 ], + [ 6.7250723, 46.9309711 ], + [ 6.7251635, 46.9309573 ], + [ 6.7252484, 46.9309762 ], + [ 6.7254116, 46.9309108 ], + [ 6.7260019, 46.9307838 ], + [ 6.7260816, 46.930937 ], + [ 6.7259576, 46.931 ], + [ 6.7259148, 46.9310387 ], + [ 6.7259129, 46.9310986 ], + [ 6.7259658, 46.9311485 ], + [ 6.7260672, 46.9311571 ], + [ 6.7261844, 46.9311345 ], + [ 6.7272998, 46.9313186 ], + [ 6.7285205999999995, 46.9318147 ], + [ 6.7285979000000005, 46.9318515 ], + [ 6.7290089, 46.9317278 ], + [ 6.729111, 46.93177 ], + [ 6.7292027999999995, 46.9317114 ], + [ 6.7293307, 46.9316531 ], + [ 6.7295071, 46.9315961 ], + [ 6.7296773, 46.9321206 ], + [ 6.7296395, 46.9321878 ], + [ 6.7297003, 46.9323576 ], + [ 6.7297755, 46.9324232 ], + [ 6.729902, 46.9324531 ], + [ 6.7301374, 46.9323787 ], + [ 6.7302015, 46.9323094 ], + [ 6.7305217, 46.9322238 ], + [ 6.7307161, 46.9325174 ], + [ 6.7314376, 46.9326142 ], + [ 6.7318207, 46.9328105 ], + [ 6.7319159, 46.9328593 ], + [ 6.7343544, 46.9337602 ], + [ 6.7369797, 46.9353353 ], + [ 6.7373014, 46.9355283 ], + [ 6.7374529, 46.9356655 ], + [ 6.7379492, 46.9356723 ], + [ 6.738026, 46.9359229 ], + [ 6.7384153, 46.9359138 ], + [ 6.7386162, 46.9360399 ], + [ 6.7392636, 46.9363244 ], + [ 6.740332, 46.9364969 ], + [ 6.7406969, 46.9368823 ], + [ 6.7431279, 46.9371002 ], + [ 6.7434104999999995, 46.9371622 ], + [ 6.7436653, 46.9378246 ], + [ 6.7446169, 46.9387555 ], + [ 6.7447504, 46.9390533 ], + [ 6.746073, 46.9398155 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "NAT2", + "country" : "CHE", + "name" : [ + { + "text" : "Roche devant", + "lang" : "de-CH" + }, + { + "text" : "Roche devant", + "lang" : "fr-CH" + }, + { + "text" : "Roche devant", + "lang" : "it-CH" + }, + { + "text" : "Roche devant", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "regulationExemption" : "NO", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Section nature", + "lang" : "de-CH" + }, + { + "text" : "Section nature", + "lang" : "fr-CH" + }, + { + "text" : "Section nature", + "lang" : "it-CH" + }, + { + "text" : "Section nature", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Service de la faune, des forêts et de la nature", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, des forêts et de la nature", + "lang" : "fr-CH" + }, + { + "text" : "Service de la faune, des forêts et de la nature", + "lang" : "it-CH" + }, + { + "text" : "Service de la faune, des forêts et de la nature", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Chef de la section nature", + "lang" : "de-CH" + }, + { + "text" : "Chef de la section nature", + "lang" : "fr-CH" + }, + { + "text" : "Chef de la section nature", + "lang" : "it-CH" + }, + { + "text" : "Chef de la section nature", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ne.ch/autorites/DDTE/SFFN/nature/Pages/accueil.aspx", + "email" : "sffn@ne.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.7096815, 47.4808783 ], + [ 8.7096727, 47.4807372 ], + [ 8.709653, 47.4805966 ], + [ 8.7096224, 47.4804569 ], + [ 8.7095811, 47.4803184 ], + [ 8.7095292, 47.4801816 ], + [ 8.7094668, 47.4800468 ], + [ 8.7093941, 47.4799144 ], + [ 8.7093112, 47.4797848 ], + [ 8.7092185, 47.4796583 ], + [ 8.7091161, 47.4795353 ], + [ 8.7090044, 47.479416 ], + [ 8.7088836, 47.4793009 ], + [ 8.7087541, 47.4791903 ], + [ 8.7086162, 47.4790844 ], + [ 8.7084703, 47.4789835 ], + [ 8.7083169, 47.4788879 ], + [ 8.7081563, 47.4787979 ], + [ 8.707989, 47.4787138 ], + [ 8.7078153, 47.4786356 ], + [ 8.7076359, 47.4785638 ], + [ 8.7074512, 47.4784984 ], + [ 8.7072618, 47.4784397 ], + [ 8.707068, 47.4783877 ], + [ 8.7068705, 47.4783427 ], + [ 8.7066698, 47.4783048 ], + [ 8.7064664, 47.478274 ], + [ 8.7062609, 47.4782505 ], + [ 8.7060539, 47.4782344 ], + [ 8.705846, 47.4782256 ], + [ 8.7056376, 47.4782241 ], + [ 8.7054294, 47.4782301 ], + [ 8.705222, 47.4782435 ], + [ 8.7050159, 47.4782642 ], + [ 8.7048117, 47.4782922 ], + [ 8.7046099, 47.4783273 ], + [ 8.7044111, 47.4783696 ], + [ 8.7042158, 47.4784189 ], + [ 8.7040246, 47.4784751 ], + [ 8.703838, 47.478538 ], + [ 8.7036565, 47.4786074 ], + [ 8.7034806, 47.4786831 ], + [ 8.7033108, 47.478765 ], + [ 8.7031476, 47.4788528 ], + [ 8.7029914, 47.4789462 ], + [ 8.7028426, 47.4790451 ], + [ 8.7027016, 47.4791491 ], + [ 8.7025688, 47.479258 ], + [ 8.7024447, 47.4793714 ], + [ 8.7023294, 47.4794891 ], + [ 8.7022234, 47.4796107 ], + [ 8.702127, 47.479736 ], + [ 8.7020403, 47.4798644 ], + [ 8.7019637, 47.4799958 ], + [ 8.7018973, 47.4801297 ], + [ 8.7018413, 47.4802658 ], + [ 8.7017959, 47.4804036 ], + [ 8.7017613, 47.4805429 ], + [ 8.7017374, 47.4806832 ], + [ 8.7017244, 47.4808242 ], + [ 8.7017223, 47.4809655 ], + [ 8.7017311, 47.4811066 ], + [ 8.7017508, 47.4812473 ], + [ 8.7017813, 47.481387 ], + [ 8.7018226, 47.4815255 ], + [ 8.7018745, 47.481662299999996 ], + [ 8.7019369, 47.481797 ], + [ 8.7020096, 47.4819294 ], + [ 8.7020924, 47.482059 ], + [ 8.7021851, 47.4821855 ], + [ 8.7022875, 47.4823086 ], + [ 8.7023992, 47.482427799999996 ], + [ 8.70252, 47.4825429 ], + [ 8.7026495, 47.4826536 ], + [ 8.7027874, 47.4827595 ], + [ 8.7029332, 47.4828604 ], + [ 8.7030867, 47.482956 ], + [ 8.7032473, 47.483046 ], + [ 8.7034146, 47.4831302 ], + [ 8.7035883, 47.4832083 ], + [ 8.7037677, 47.4832801 ], + [ 8.7039524, 47.4833455 ], + [ 8.7041419, 47.4834043 ], + [ 8.7043357, 47.4834562 ], + [ 8.7045332, 47.4835012 ], + [ 8.7047339, 47.4835392 ], + [ 8.7049373, 47.4835699 ], + [ 8.7051428, 47.4835934 ], + [ 8.7053498, 47.4836096 ], + [ 8.7055578, 47.4836184 ], + [ 8.7057662, 47.4836198 ], + [ 8.7059744, 47.4836138 ], + [ 8.7061818, 47.4836005 ], + [ 8.706388, 47.4835798 ], + [ 8.7065922, 47.4835518 ], + [ 8.706794, 47.4835166 ], + [ 8.7069928, 47.4834743 ], + [ 8.7071881, 47.483425 ], + [ 8.7073793, 47.4833688 ], + [ 8.7075659, 47.483306 ], + [ 8.7077474, 47.4832366 ], + [ 8.7079233, 47.4831608 ], + [ 8.7080931, 47.4830789 ], + [ 8.7082564, 47.4829911 ], + [ 8.708412599999999, 47.4828977 ], + [ 8.7085614, 47.4827988 ], + [ 8.7087024, 47.4826948 ], + [ 8.7088352, 47.4825859 ], + [ 8.7089593, 47.4824724 ], + [ 8.7090746, 47.4823547 ], + [ 8.7091806, 47.4822331 ], + [ 8.709277, 47.4821079 ], + [ 8.7093637, 47.4819794 ], + [ 8.7094403, 47.4818481 ], + [ 8.7095066, 47.4817142 ], + [ 8.7095626, 47.4815781 ], + [ 8.7096079, 47.4814402 ], + [ 8.7096426, 47.4813009 ], + [ 8.7096664, 47.4811606 ], + [ 8.7096794, 47.4810196 ], + [ 8.7096815, 47.4808783 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0121", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Töss", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Töss", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Töss", + "lang" : "it-CH" + }, + { + "text" : "Substation Töss", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.5574353, 47.4432282 ], + [ 8.5574269, 47.4430871 ], + [ 8.5574076, 47.4429464 ], + [ 8.5573775, 47.4428067 ], + [ 8.5573366, 47.4426681 ], + [ 8.5572851, 47.4425313 ], + [ 8.5572232, 47.4423964 ], + [ 8.5571509, 47.4422639 ], + [ 8.5570684, 47.4421342 ], + [ 8.5569761, 47.4420076 ], + [ 8.5568742, 47.4418844 ], + [ 8.5567629, 47.441765 ], + [ 8.5566425, 47.4416498 ], + [ 8.5565134, 47.4415389 ], + [ 8.556375899999999, 47.4414328 ], + [ 8.5562304, 47.4413318 ], + [ 8.5560774, 47.441236 ], + [ 8.5559171, 47.4411458 ], + [ 8.5557502, 47.4410614 ], + [ 8.5555769, 47.440983 ], + [ 8.5553978, 47.440911 ], + [ 8.5552135, 47.4408453 ], + [ 8.5550243, 47.4407863 ], + [ 8.5548308, 47.4407341 ], + [ 8.5546335, 47.4406889 ], + [ 8.5544331, 47.4406507 ], + [ 8.5542299, 47.4406197 ], + [ 8.5540247, 47.4405959 ], + [ 8.5538179, 47.4405795 ], + [ 8.5536101, 47.4405704 ], + [ 8.5534019, 47.4405687 ], + [ 8.5531939, 47.4405744 ], + [ 8.5529865, 47.4405875 ], + [ 8.5527805, 47.4406079 ], + [ 8.5525763, 47.4406356 ], + [ 8.5523746, 47.4406706 ], + [ 8.5521758, 47.4407126 ], + [ 8.551980499999999, 47.4407616 ], + [ 8.5517893, 47.4408176 ], + [ 8.5516027, 47.4408802 ], + [ 8.5514211, 47.4409493 ], + [ 8.5512452, 47.4410249 ], + [ 8.5510753, 47.4411065 ], + [ 8.5509119, 47.4411941 ], + [ 8.5507555, 47.4412873 ], + [ 8.5506065, 47.441386 ], + [ 8.550465299999999, 47.4414899 ], + [ 8.5503324, 47.4415986 ], + [ 8.550208, 47.4417119 ], + [ 8.5500925, 47.4418294 ], + [ 8.5499862, 47.4419509 ], + [ 8.5498894, 47.442076 ], + [ 8.5498025, 47.4422043 ], + [ 8.5497255, 47.4423356 ], + [ 8.5496588, 47.4424694 ], + [ 8.5496025, 47.4426054 ], + [ 8.5495568, 47.4427432 ], + [ 8.5495217, 47.4428825 ], + [ 8.5494975, 47.4430228 ], + [ 8.5494841, 47.4431637 ], + [ 8.5494816, 47.443305 ], + [ 8.54949, 47.4434461 ], + [ 8.5495093, 47.4435868 ], + [ 8.5495394, 47.4437266 ], + [ 8.5495802, 47.4438651 ], + [ 8.549631699999999, 47.444002 ], + [ 8.5496936, 47.4441368 ], + [ 8.5497659, 47.4442693 ], + [ 8.5498483, 47.4443991 ], + [ 8.5499406, 47.4445257 ], + [ 8.5500426, 47.4446489 ], + [ 8.5501539, 47.4447682 ], + [ 8.5502742, 47.4448835 ], + [ 8.5504033, 47.4449944 ], + [ 8.5505408, 47.4451005 ], + [ 8.5506863, 47.4452015 ], + [ 8.5508393, 47.4452973 ], + [ 8.5509996, 47.4453875 ], + [ 8.5511666, 47.4454719 ], + [ 8.5513398, 47.4455503 ], + [ 8.5515189, 47.4456224 ], + [ 8.5517033, 47.445688 ], + [ 8.5518925, 47.445747 ], + [ 8.552086, 47.4457992 ], + [ 8.5522833, 47.4458445 ], + [ 8.5524837, 47.4458827 ], + [ 8.5526869, 47.4459137 ], + [ 8.5528922, 47.4459374 ], + [ 8.553099, 47.4459539 ], + [ 8.5533068, 47.445963 ], + [ 8.553515, 47.4459647 ], + [ 8.5537231, 47.445959 ], + [ 8.5539304, 47.4459459 ], + [ 8.5541365, 47.4459254 ], + [ 8.5543406, 47.4458977 ], + [ 8.5545424, 47.4458628 ], + [ 8.5547412, 47.4458207 ], + [ 8.5549365, 47.4457717 ], + [ 8.5551277, 47.4457158 ], + [ 8.5553144, 47.4456532 ], + [ 8.555496, 47.445584 ], + [ 8.5556719, 47.4455085 ], + [ 8.5558418, 47.4454268 ], + [ 8.5560052, 47.4453392 ], + [ 8.5561616, 47.445246 ], + [ 8.5563106, 47.4451473 ], + [ 8.5564518, 47.4450434 ], + [ 8.5565847, 47.4449347 ], + [ 8.556709099999999, 47.4448214 ], + [ 8.5568246, 47.4447039 ], + [ 8.5569309, 47.4445824 ], + [ 8.5570276, 47.4444573 ], + [ 8.5571146, 47.4443289 ], + [ 8.5571915, 47.4441977 ], + [ 8.5572582, 47.4440638 ], + [ 8.5573145, 47.4439278 ], + [ 8.5573602, 47.44379 ], + [ 8.5573952, 47.4436508 ], + [ 8.5574195, 47.4435105 ], + [ 8.5574328, 47.4433695 ], + [ 8.5574353, 47.4432282 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "AHK0001", + "country" : "CHE", + "name" : [ + { + "text" : "Zentrum für ausländerrechtliche Administrativhaft", + "lang" : "de-CH" + }, + { + "text" : "Zentrum für ausländerrechtliche Administrativhaft", + "lang" : "fr-CH" + }, + { + "text" : "Zentrum für ausländerrechtliche Administrativhaft", + "lang" : "it-CH" + }, + { + "text" : "Zentrum für ausländerrechtliche Administrativhaft", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "de-CH" + }, + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "fr-CH" + }, + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "it-CH" + }, + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "de-CH" + }, + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "fr-CH" + }, + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "it-CH" + }, + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Reno Berner", + "lang" : "de-CH" + }, + { + "text" : "Reno Berner", + "lang" : "fr-CH" + }, + { + "text" : "Reno Berner", + "lang" : "it-CH" + }, + { + "text" : "Reno Berner", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.zh.ch/de/direktion-der-justiz-und-des-innern/justizvollzug-wiedereingliederung.html", + "email" : "sicherheit-juwe@ji.zh.ch", + "phone" : "0041432583400", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT12H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.0469485, 46.7514374 ], + [ 9.0469389, 46.7512963 ], + [ 9.0469186, 46.7511557 ], + [ 9.0468876, 46.751016 ], + [ 9.046846, 46.7508777 ], + [ 9.0467939, 46.750741 ], + [ 9.0467315, 46.7506064 ], + [ 9.0466589, 46.7504742 ], + [ 9.0465764, 46.7503448 ], + [ 9.0464841, 46.7502185 ], + [ 9.0463824, 46.7500958 ], + [ 9.0462714, 46.7499769 ], + [ 9.0461515, 46.7498621 ], + [ 9.0460231, 46.7497518 ], + [ 9.0458864, 46.7496463 ], + [ 9.0457419, 46.7495458 ], + [ 9.0455899, 46.7494507 ], + [ 9.0454309, 46.7493611 ], + [ 9.0452653, 46.7492774 ], + [ 9.0450936, 46.7491998 ], + [ 9.0449162, 46.7491285 ], + [ 9.0447336, 46.7490636 ], + [ 9.0445463, 46.7490054 ], + [ 9.0443548, 46.748954 ], + [ 9.0441597, 46.7489096 ], + [ 9.0439615, 46.7488722 ], + [ 9.0437607, 46.7488421 ], + [ 9.0435578, 46.7488192 ], + [ 9.0433535, 46.7488036 ], + [ 9.0431483, 46.7487954 ], + [ 9.0429428, 46.7487946 ], + [ 9.0427375, 46.7488012 ], + [ 9.0425329, 46.7488151 ], + [ 9.0423298, 46.7488364 ], + [ 9.0421284, 46.748865 ], + [ 9.0419296, 46.7489008 ], + [ 9.0417338, 46.7489437 ], + [ 9.0415415, 46.7489936 ], + [ 9.0413532, 46.7490503 ], + [ 9.0411695, 46.7491137 ], + [ 9.0409909, 46.7491836 ], + [ 9.0408179, 46.7492599 ], + [ 9.0406509, 46.7493423 ], + [ 9.0404904, 46.7494306 ], + [ 9.0403369, 46.7495245 ], + [ 9.0401907, 46.7496238 ], + [ 9.0400523, 46.7497283 ], + [ 9.039922, 46.7498376 ], + [ 9.0398003, 46.7499514 ], + [ 9.0396873, 46.7500694 ], + [ 9.0395835, 46.7501914 ], + [ 9.0394891, 46.7503169 ], + [ 9.0394044, 46.7504456 ], + [ 9.0393297, 46.7505772 ], + [ 9.039265, 46.7507113 ], + [ 9.0392107, 46.7508476 ], + [ 9.0391668, 46.7509856 ], + [ 9.0391335, 46.751125 ], + [ 9.0391108, 46.7512655 ], + [ 9.0390988, 46.7514065 ], + [ 9.0390977, 46.7515478 ], + [ 9.0391072, 46.7516889 ], + [ 9.0391275, 46.7518295 ], + [ 9.0391585, 46.7519692 ], + [ 9.0392001, 46.7521075 ], + [ 9.0392521, 46.7522442 ], + [ 9.0393145, 46.7523788 ], + [ 9.0393871, 46.752511 ], + [ 9.0394696, 46.7526404 ], + [ 9.0395619, 46.7527667 ], + [ 9.0396636, 46.7528894 ], + [ 9.0397746, 46.7530084 ], + [ 9.0398944, 46.7531232 ], + [ 9.0400229, 46.7532335 ], + [ 9.0401596, 46.753339 ], + [ 9.0403041, 46.7534395 ], + [ 9.040456, 46.7535346 ], + [ 9.040615, 46.7536242 ], + [ 9.0407806, 46.7537079 ], + [ 9.0409524, 46.7537855 ], + [ 9.0411298, 46.7538568 ], + [ 9.0413124, 46.7539217 ], + [ 9.0414997, 46.7539799 ], + [ 9.0416912, 46.7540313 ], + [ 9.0418864, 46.7540757 ], + [ 9.0420846, 46.7541131 ], + [ 9.0422854, 46.7541432 ], + [ 9.0424883, 46.7541662 ], + [ 9.0426926, 46.7541817 ], + [ 9.0428978, 46.7541899 ], + [ 9.0431034, 46.7541907 ], + [ 9.0433087, 46.7541841 ], + [ 9.0435133, 46.7541702 ], + [ 9.0437165, 46.7541489 ], + [ 9.0439178, 46.7541203 ], + [ 9.0441167, 46.7540845 ], + [ 9.0443125, 46.7540416 ], + [ 9.0445048, 46.7539917 ], + [ 9.0446931, 46.753935 ], + [ 9.0448768, 46.7538716 ], + [ 9.0450554, 46.7538017 ], + [ 9.0452285, 46.7537254 ], + [ 9.0453954, 46.753643 ], + [ 9.0455559, 46.7535547 ], + [ 9.0457095, 46.7534608 ], + [ 9.0458556, 46.7533614 ], + [ 9.0459941, 46.753257 ], + [ 9.0461243, 46.7531477 ], + [ 9.0462461, 46.7530339 ], + [ 9.046359, 46.7529158 ], + [ 9.0464628, 46.7527939 ], + [ 9.0465572, 46.7526683 ], + [ 9.0466419, 46.7525396 ], + [ 9.0467166, 46.752408 ], + [ 9.0467812, 46.7522739 ], + [ 9.0468356, 46.7521376 ], + [ 9.0468795, 46.7519996 ], + [ 9.0469128, 46.7518602 ], + [ 9.0469354, 46.7517197 ], + [ 9.0469473, 46.7515787 ], + [ 9.0469485, 46.7514374 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0117", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Tavanasa", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Tavanasa", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Tavanasa", + "lang" : "it-CH" + }, + { + "text" : "Substation Tavanasa", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7918587, 47.4841056 ], + [ 7.7926576, 47.4846848 ], + [ 7.7929009, 47.4845711 ], + [ 7.7930597, 47.4844035 ], + [ 7.7927795, 47.4833511 ], + [ 7.7926316, 47.4836633 ], + [ 7.7925906, 47.4837123 ], + [ 7.7925424, 47.4837582 ], + [ 7.7924874, 47.4838004 ], + [ 7.7924264, 47.4838387 ], + [ 7.7923598, 47.4838724 ], + [ 7.7922885, 47.4839013 ], + [ 7.7922132, 47.4839252 ], + [ 7.7919077, 47.4839752 ], + [ 7.7918587, 47.4841056 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr066", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Schward", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Schward", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Schward", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Schward", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.2825988, 46.376031 ], + [ 6.2680776, 46.3683825 ], + [ 6.2529699, 46.3604208 ], + [ 6.2414321, 46.3436679 ], + [ 6.2323218, 46.3304352 ], + [ 6.2235693, 46.3177229 ], + [ 6.219551, 46.3118844 ], + [ 6.2415153, 46.3043691 ], + [ 6.2419226, 46.3041936 ], + [ 6.2423986, 46.3037687 ], + [ 6.2425139, 46.3036915 ], + [ 6.2427524, 46.3035552 ], + [ 6.2431762, 46.3033841 ], + [ 6.2432458, 46.3033632 ], + [ 6.2432828, 46.3033618 ], + [ 6.2434806, 46.303379 ], + [ 6.2435941, 46.3034171 ], + [ 6.2436393, 46.3034384 ], + [ 6.2437484, 46.303521 ], + [ 6.2439422, 46.3036931 ], + [ 6.2440198, 46.3037707 ], + [ 6.2441065, 46.3038423 ], + [ 6.2442244, 46.3039317 ], + [ 6.244342, 46.3039946 ], + [ 6.2444379, 46.3040266 ], + [ 6.244585, 46.3040511 ], + [ 6.2446455, 46.3040518 ], + [ 6.2447006, 46.3040408 ], + [ 6.2448135, 46.3039569 ], + [ 6.2448419, 46.3039152 ], + [ 6.244908, 46.30378 ], + [ 6.2450572, 46.3033431 ], + [ 6.2450826, 46.3032536 ], + [ 6.2451499, 46.3031443 ], + [ 6.2452876, 46.3030263 ], + [ 6.2454046, 46.3029771 ], + [ 6.2455762, 46.302918 ], + [ 6.2456893, 46.3028854 ], + [ 6.2457446, 46.3028621 ], + [ 6.2458383, 46.3028295 ], + [ 6.2461656, 46.3027324 ], + [ 6.246374, 46.3026816 ], + [ 6.2465348, 46.3026483 ], + [ 6.2466163, 46.3026364 ], + [ 6.2467381, 46.3026361 ], + [ 6.2469052, 46.3026821 ], + [ 6.2471089, 46.3027335 ], + [ 6.2472317, 46.3027538 ], + [ 6.247339, 46.3027583 ], + [ 6.2474875, 46.3027397 ], + [ 6.2475467, 46.3027209 ], + [ 6.2476783, 46.3026689 ], + [ 6.2477021, 46.3026258 ], + [ 6.2477738, 46.3025137 ], + [ 6.247802, 46.3023412 ], + [ 6.2478461, 46.3022075 ], + [ 6.2479476, 46.3020683 ], + [ 6.2480211, 46.3019827 ], + [ 6.2480496, 46.3019596 ], + [ 6.2481225, 46.3019249 ], + [ 6.2482102, 46.3019133 ], + [ 6.2483068, 46.301908 ], + [ 6.2483986, 46.3019187 ], + [ 6.2484902, 46.3019353 ], + [ 6.2485783, 46.3019448 ], + [ 6.2486968, 46.3019895 ], + [ 6.2488161, 46.3020086 ], + [ 6.2488926, 46.3020272 ], + [ 6.248965, 46.3019666 ], + [ 6.2490239, 46.3018972 ], + [ 6.2490359, 46.3018224 ], + [ 6.2490113, 46.3017223 ], + [ 6.2489877, 46.3016558 ], + [ 6.2488645, 46.3015355 ], + [ 6.2486645, 46.3013518 ], + [ 6.2486257, 46.3013098 ], + [ 6.2485294, 46.3011676 ], + [ 6.2484613, 46.3010093 ], + [ 6.2483083, 46.3007785 ], + [ 6.2482203, 46.3007252 ], + [ 6.2480776, 46.3006874 ], + [ 6.2479238, 46.300681 ], + [ 6.2478553, 46.3006889 ], + [ 6.2477734, 46.3007315 ], + [ 6.2476706, 46.3007548 ], + [ 6.2475964, 46.300738 ], + [ 6.2474563, 46.3007241 ], + [ 6.2472647, 46.3006851 ], + [ 6.2472297, 46.300653 ], + [ 6.2472192, 46.3005937 ], + [ 6.2472235, 46.3003537 ], + [ 6.2471844, 46.3002664 ], + [ 6.2470178, 46.3000891 ], + [ 6.2469732, 46.3000151 ], + [ 6.2470041, 46.2999543 ], + [ 6.2474353, 46.2998391 ], + [ 6.2475586, 46.2998676 ], + [ 6.2477735, 46.3000231 ], + [ 6.2478957, 46.3000311 ], + [ 6.2479644, 46.2999893 ], + [ 6.2480254, 46.2998879 ], + [ 6.2480423, 46.2998423 ], + [ 6.2481395, 46.299749 ], + [ 6.2481854, 46.2996473 ], + [ 6.248197, 46.2995443 ], + [ 6.2483066, 46.2994299 ], + [ 6.2484476, 46.2993827 ], + [ 6.2486032, 46.2992732 ], + [ 6.2486545, 46.2992256 ], + [ 6.2487169, 46.2991197 ], + [ 6.2487857, 46.29906 ], + [ 6.2488046, 46.2990241 ], + [ 6.2487875, 46.2989985 ], + [ 6.2488814, 46.2989738 ], + [ 6.2489284, 46.2989678 ], + [ 6.2489478, 46.2990179 ], + [ 6.2489437, 46.2990592 ], + [ 6.2490863, 46.2990586 ], + [ 6.2491698, 46.2990143 ], + [ 6.2493085, 46.2989001 ], + [ 6.2493326, 46.298758 ], + [ 6.2492234, 46.2986663 ], + [ 6.2491346, 46.2986177 ], + [ 6.2487772, 46.2985256 ], + [ 6.2485329, 46.2983774 ], + [ 6.2484004, 46.2982898 ], + [ 6.2482758, 46.298192 ], + [ 6.2480839, 46.2980549 ], + [ 6.2479885, 46.298008 ], + [ 6.247972, 46.2979445 ], + [ 6.2479886, 46.29789 ], + [ 6.2480684, 46.2978185 ], + [ 6.2481523, 46.2977975 ], + [ 6.2483785, 46.2977489 ], + [ 6.2485702, 46.2977229 ], + [ 6.2486729, 46.297692 ], + [ 6.2487603, 46.2976496 ], + [ 6.2489497, 46.2974856 ], + [ 6.2489654, 46.2974511 ], + [ 6.2489451, 46.2973995 ], + [ 6.2487884, 46.297316 ], + [ 6.2486738, 46.2972346 ], + [ 6.2483768, 46.2971309 ], + [ 6.2481189, 46.2970533 ], + [ 6.2480591, 46.2970229 ], + [ 6.2480447, 46.2970014 ], + [ 6.2480509, 46.2969573 ], + [ 6.2480983, 46.296928 ], + [ 6.2481655, 46.296879 ], + [ 6.2482567, 46.2967903 ], + [ 6.2483078, 46.2967083 ], + [ 6.2483064, 46.2966566 ], + [ 6.2482508, 46.296583 ], + [ 6.2482453, 46.2965393 ], + [ 6.2482638999999995, 46.2965162 ], + [ 6.2483145, 46.2964822 ], + [ 6.2484125, 46.2964685 ], + [ 6.2487411, 46.2964818 ], + [ 6.248779, 46.2964768 ], + [ 6.2491096, 46.2964896 ], + [ 6.2493077, 46.2964804 ], + [ 6.2494068, 46.2964663 ], + [ 6.2495808, 46.2964494 ], + [ 6.2496723, 46.296456 ], + [ 6.249806, 46.2964764 ], + [ 6.2499054, 46.2965063 ], + [ 6.2499799, 46.2965324 ], + [ 6.2500468, 46.2965382 ], + [ 6.2500816, 46.2965081 ], + [ 6.2501581, 46.2964247 ], + [ 6.2501565, 46.296405 ], + [ 6.2501346, 46.296332 ], + [ 6.2500793, 46.2962575 ], + [ 6.2500113, 46.2961174 ], + [ 6.2499687999999995, 46.2960647 ], + [ 6.2498662, 46.2959692 ], + [ 6.2497059, 46.2958537 ], + [ 6.2495839, 46.2957414 ], + [ 6.249547, 46.2956569 ], + [ 6.2495374, 46.2955915 ], + [ 6.2495588, 46.2955374 ], + [ 6.2495955, 46.2954639 ], + [ 6.2496095, 46.2953883 ], + [ 6.2496294, 46.2953723 ], + [ 6.2497641999999995, 46.2952993 ], + [ 6.2497929, 46.2952658 ], + [ 6.2497975, 46.2952348 ], + [ 6.249773, 46.2951962 ], + [ 6.2497113, 46.2951645 ], + [ 6.2495311, 46.2951729 ], + [ 6.2493847, 46.2952263 ], + [ 6.249116, 46.2952893 ], + [ 6.2489621, 46.295245800000004 ], + [ 6.2487858, 46.2951467 ], + [ 6.2486898, 46.2950801 ], + [ 6.2486062, 46.2950136 ], + [ 6.248533, 46.2949184 ], + [ 6.2485216, 46.2947841 ], + [ 6.2485149, 46.2946188 ], + [ 6.2485087, 46.2945649 ], + [ 6.2485304, 46.294413 ], + [ 6.2485785, 46.2942537 ], + [ 6.2486491, 46.2941181 ], + [ 6.2488104, 46.2939401 ], + [ 6.2489733, 46.2937873 ], + [ 6.2491202, 46.2936929 ], + [ 6.2491698, 46.2936566 ], + [ 6.2492326, 46.2935929 ], + [ 6.2493445, 46.2934317 ], + [ 6.2493782, 46.2934043 ], + [ 6.2494309, 46.2933876 ], + [ 6.2495594, 46.293389 ], + [ 6.2496194, 46.2933948 ], + [ 6.2496827, 46.2934111 ], + [ 6.249881, 46.2935533 ], + [ 6.2501523, 46.2936288 ], + [ 6.2502041, 46.2936538 ], + [ 6.2502771, 46.2936715 ], + [ 6.2503283, 46.2936713 ], + [ 6.2503869, 46.2936619 ], + [ 6.2504571, 46.2936271 ], + [ 6.250489, 46.2936064 ], + [ 6.2505698, 46.2935915 ], + [ 6.2506631, 46.2936182 ], + [ 6.2507038, 46.293606 ], + [ 6.2507375, 46.293588 ], + [ 6.2508436, 46.2934809 ], + [ 6.2508749, 46.2934436 ], + [ 6.2508993, 46.2933929 ], + [ 6.2509031, 46.2933168 ], + [ 6.2509121, 46.2933016 ], + [ 6.2509359, 46.2932854 ], + [ 6.2509784, 46.2932644 ], + [ 6.2510681, 46.2932821 ], + [ 6.2511654, 46.2932741 ], + [ 6.2512489, 46.2932296 ], + [ 6.2512742, 46.2931999 ], + [ 6.251281, 46.2931615 ], + [ 6.251277, 46.2931197 ], + [ 6.2512524, 46.293006 ], + [ 6.2512218, 46.2929644 ], + [ 6.2511392, 46.2928724 ], + [ 6.2510945, 46.292836199999996 ], + [ 6.2509697, 46.2927133 ], + [ 6.2509163, 46.2926248 ], + [ 6.250893, 46.2926054 ], + [ 6.2508573, 46.2925955 ], + [ 6.2507190999999995, 46.292568 ], + [ 6.2506192, 46.2924903 ], + [ 6.2504797, 46.2922882 ], + [ 6.2504468, 46.2921755 ], + [ 6.2504206, 46.2921451 ], + [ 6.250391, 46.2921342 ], + [ 6.2503456, 46.2921035 ], + [ 6.2503261, 46.2920719 ], + [ 6.2503234, 46.2920529 ], + [ 6.2503712, 46.2919158 ], + [ 6.2503955, 46.2918935 ], + [ 6.2504838, 46.2918427 ], + [ 6.2506096, 46.291797 ], + [ 6.2507007, 46.2918025 ], + [ 6.2508973, 46.2918665 ], + [ 6.2510122, 46.2918677 ], + [ 6.2511318, 46.2918519 ], + [ 6.2512346, 46.2918525 ], + [ 6.2513069, 46.2918264 ], + [ 6.2513818, 46.2917842 ], + [ 6.2514288, 46.2917406 ], + [ 6.2514703, 46.2916712 ], + [ 6.2515061, 46.2916511 ], + [ 6.2515838, 46.2916519 ], + [ 6.2516648, 46.2916792 ], + [ 6.2517236, 46.2917259 ], + [ 6.251762, 46.2918326 ], + [ 6.2517808, 46.2918746 ], + [ 6.251836, 46.2919209 ], + [ 6.2519174, 46.291905 ], + [ 6.2520307, 46.2918734 ], + [ 6.2520838, 46.2918721 ], + [ 6.2521546, 46.2918626 ], + [ 6.2522773, 46.2918073 ], + [ 6.2523292, 46.2917475 ], + [ 6.2523266, 46.2917142 ], + [ 6.2523173, 46.2917005 ], + [ 6.2522975, 46.291676 ], + [ 6.2522747, 46.2916674 ], + [ 6.2522387, 46.2916654 ], + [ 6.2521545, 46.2916283 ], + [ 6.2521172, 46.2915994 ], + [ 6.2521101, 46.2915728 ], + [ 6.2521131, 46.2915556 ], + [ 6.2521965999999995, 46.2914776 ], + [ 6.2523919, 46.2913398 ], + [ 6.2524062, 46.2913011 ], + [ 6.2524192, 46.2911439 ], + [ 6.2524308, 46.2910959 ], + [ 6.2524643, 46.29105 ], + [ 6.2524824, 46.291011 ], + [ 6.2524813, 46.290967 ], + [ 6.2524314, 46.2908525 ], + [ 6.2524716, 46.2908245 ], + [ 6.252689, 46.2907799 ], + [ 6.2528271, 46.2907309 ], + [ 6.2529438, 46.290666 ], + [ 6.2529876, 46.290592 ], + [ 6.2530017, 46.2905031 ], + [ 6.2529686, 46.2904261 ], + [ 6.2527665, 46.2902755 ], + [ 6.2527248, 46.2902303 ], + [ 6.2525636, 46.2900876 ], + [ 6.2524283, 46.2900239 ], + [ 6.2522726, 46.289979 ], + [ 6.2521054, 46.2899051 ], + [ 6.2519926, 46.2898301 ], + [ 6.2519367, 46.2897726 ], + [ 6.2518943, 46.2897189 ], + [ 6.2518303, 46.2895719 ], + [ 6.2516932, 46.2892137 ], + [ 6.2516509, 46.2891382 ], + [ 6.2516517, 46.2890794 ], + [ 6.2516707, 46.2889713 ], + [ 6.2517566, 46.2888268 ], + [ 6.2517553, 46.2887047 ], + [ 6.2516532, 46.2884269 ], + [ 6.2516035, 46.288322 ], + [ 6.2516069, 46.2882692 ], + [ 6.2515469, 46.2881504 ], + [ 6.251468, 46.2880665 ], + [ 6.2512143, 46.2880008 ], + [ 6.2509084, 46.2879572 ], + [ 6.2506303, 46.2878672 ], + [ 6.2503746, 46.2877704 ], + [ 6.2501931, 46.2876936 ], + [ 6.2500501, 46.2876697 ], + [ 6.2498999, 46.2876736 ], + [ 6.2496993, 46.2877719 ], + [ 6.2495814, 46.2877924 ], + [ 6.2491653, 46.2877335 ], + [ 6.2489245, 46.2876538 ], + [ 6.2487777, 46.2875664 ], + [ 6.2486964, 46.2874923 ], + [ 6.2486728, 46.2874651 ], + [ 6.2486696, 46.2874264 ], + [ 6.2487638, 46.2873231 ], + [ 6.2489327, 46.2872312 ], + [ 6.2489735, 46.2871992 ], + [ 6.2490373, 46.2870551 ], + [ 6.2490384, 46.2869359 ], + [ 6.249012, 46.2869 ], + [ 6.2490032, 46.286811 ], + [ 6.2490806, 46.2867401 ], + [ 6.2491043, 46.2867048 ], + [ 6.2490558, 46.2866749 ], + [ 6.2490084, 46.2866264 ], + [ 6.2488879, 46.2864674 ], + [ 6.2486714, 46.2864654 ], + [ 6.2484209, 46.2864449 ], + [ 6.2482287, 46.2865253 ], + [ 6.2480985, 46.2865854 ], + [ 6.2479964, 46.286586 ], + [ 6.2478711, 46.2865371 ], + [ 6.2478366, 46.2864431 ], + [ 6.2478624, 46.2863194 ], + [ 6.2478841, 46.2862767 ], + [ 6.2478898, 46.2862029 ], + [ 6.2478855, 46.286183 ], + [ 6.2478723, 46.2861524 ], + [ 6.2478525, 46.2861351 ], + [ 6.2477673, 46.2861205 ], + [ 6.2475115, 46.2861554 ], + [ 6.2473405, 46.2861579 ], + [ 6.2470991, 46.2861856 ], + [ 6.2470611, 46.2861711 ], + [ 6.2470077, 46.2861203 ], + [ 6.247041, 46.2860306 ], + [ 6.2470742, 46.2859234 ], + [ 6.247067, 46.2858743 ], + [ 6.2469806, 46.28566 ], + [ 6.2468702, 46.2855423 ], + [ 6.2467197, 46.2854358 ], + [ 6.2465041, 46.2853324 ], + [ 6.2462418, 46.2852592 ], + [ 6.2458919, 46.2852169 ], + [ 6.2457284, 46.2852126 ], + [ 6.2452138999999995, 46.2851706 ], + [ 6.2450595, 46.2851716 ], + [ 6.2449315, 46.2851869 ], + [ 6.2446924, 46.285237 ], + [ 6.2445205999999995, 46.2852868 ], + [ 6.2443553, 46.2852857 ], + [ 6.2441552, 46.2852639 ], + [ 6.244071, 46.2852629 ], + [ 6.2439776, 46.2852605 ], + [ 6.2438168, 46.2852844 ], + [ 6.2436872, 46.2853537 ], + [ 6.2435904, 46.2854282 ], + [ 6.2435084, 46.2854562 ], + [ 6.2434534, 46.2854615 ], + [ 6.2432535, 46.2854473 ], + [ 6.2431109, 46.2854222 ], + [ 6.2429612, 46.2853682 ], + [ 6.2427911, 46.2852492 ], + [ 6.2427422, 46.2851942 ], + [ 6.2426403, 46.2851033 ], + [ 6.2425391, 46.2850574 ], + [ 6.242512, 46.2850519 ], + [ 6.2424309, 46.2850639 ], + [ 6.2423267, 46.2850618 ], + [ 6.2422395999999996, 46.2850506 ], + [ 6.242152, 46.2850269 ], + [ 6.2420657, 46.2850236 ], + [ 6.2418519, 46.2850379 ], + [ 6.2417637, 46.285035 ], + [ 6.2417322, 46.2850164 ], + [ 6.2416922, 46.2849458 ], + [ 6.2416668, 46.2847532 ], + [ 6.2416617, 46.2846146 ], + [ 6.2416763, 46.2845012 ], + [ 6.2417387, 46.284285 ], + [ 6.241784, 46.2841873 ], + [ 6.2418337, 46.2841486 ], + [ 6.2419255, 46.2841216 ], + [ 6.241973, 46.2840819 ], + [ 6.2419733, 46.2840544 ], + [ 6.2419361, 46.2839602 ], + [ 6.2418492, 46.283861 ], + [ 6.2417412, 46.2837616 ], + [ 6.2416318, 46.2836862 ], + [ 6.2415116, 46.2836467 ], + [ 6.2412779, 46.2836554 ], + [ 6.2412026, 46.283618 ], + [ 6.2409656, 46.2834817 ], + [ 6.240931, 46.2834518 ], + [ 6.2408643, 46.2834072 ], + [ 6.240808, 46.2832721 ], + [ 6.2406745, 46.2831429 ], + [ 6.2403693, 46.2829346 ], + [ 6.2401863, 46.2828231 ], + [ 6.2400299, 46.2827958 ], + [ 6.239882, 46.2827495 ], + [ 6.2398036, 46.2827036 ], + [ 6.2397479, 46.2826202 ], + [ 6.2397421, 46.2825539 ], + [ 6.2397577, 46.2824912 ], + [ 6.2398008, 46.2824054 ], + [ 6.2398917, 46.2821458 ], + [ 6.2398948, 46.2820771 ], + [ 6.2397437, 46.2819669 ], + [ 6.2395994, 46.2818989 ], + [ 6.239363, 46.2818261 ], + [ 6.2391763, 46.2817798 ], + [ 6.239107, 46.2818015 ], + [ 6.2389846, 46.281884 ], + [ 6.2388499, 46.2819373 ], + [ 6.2386815, 46.2819911 ], + [ 6.2383445, 46.282061 ], + [ 6.2381518, 46.2821408 ], + [ 6.2380513, 46.2821369 ], + [ 6.2380016, 46.2821255 ], + [ 6.2379158, 46.2820461 ], + [ 6.2378674, 46.2819685 ], + [ 6.2378556, 46.2819079 ], + [ 6.2378294, 46.2818169 ], + [ 6.2378291, 46.2817739 ], + [ 6.2378898, 46.2817246 ], + [ 6.2380045, 46.2816858 ], + [ 6.2381117, 46.2816771 ], + [ 6.2382117, 46.2816912 ], + [ 6.2382861, 46.2817086 ], + [ 6.2383535, 46.2816731 ], + [ 6.2383728, 46.2816494 ], + [ 6.2383453, 46.2815687 ], + [ 6.2382752, 46.2814473 ], + [ 6.2382651, 46.2813429 ], + [ 6.2382769, 46.2813107 ], + [ 6.2383238, 46.2812764 ], + [ 6.2383854, 46.2812372 ], + [ 6.2384158, 46.2811946 ], + [ 6.2384146, 46.2811467 ], + [ 6.238382, 46.281107 ], + [ 6.2383325, 46.281081 ], + [ 6.2382509, 46.2810729 ], + [ 6.2381997, 46.2810586 ], + [ 6.2381671, 46.2810305 ], + [ 6.2381287, 46.2809205 ], + [ 6.2380942, 46.2808636 ], + [ 6.2380661, 46.2808058 ], + [ 6.2380757, 46.2807679 ], + [ 6.2380934, 46.2807537 ], + [ 6.2381829, 46.2807355 ], + [ 6.2382068, 46.2807376 ], + [ 6.2382754, 46.2807639 ], + [ 6.2383453, 46.2808172 ], + [ 6.2383908, 46.2808422 ], + [ 6.2385441, 46.2808556 ], + [ 6.2385656, 46.2808331 ], + [ 6.2385747, 46.2807427 ], + [ 6.238551, 46.2806819 ], + [ 6.2385074, 46.2806209 ], + [ 6.2384824, 46.2806053 ], + [ 6.2382857, 46.2805373 ], + [ 6.2382761, 46.2805047 ], + [ 6.2382799, 46.2804829 ], + [ 6.2383246, 46.2804486 ], + [ 6.2384449, 46.2804149 ], + [ 6.2385418, 46.2803801 ], + [ 6.23865, 46.2803233 ], + [ 6.2387737, 46.2802945 ], + [ 6.2388542, 46.2802632 ], + [ 6.2388545, 46.2802183 ], + [ 6.2387086, 46.2801477 ], + [ 6.2386145, 46.280088 ], + [ 6.2385514, 46.2800258 ], + [ 6.2385206, 46.2799654 ], + [ 6.2385533, 46.2799032 ], + [ 6.2386361, 46.2798642 ], + [ 6.238732, 46.2798547 ], + [ 6.2387985, 46.2798533 ], + [ 6.2388307, 46.2798183 ], + [ 6.2389927, 46.2795734 ], + [ 6.2390145, 46.2795256 ], + [ 6.2390265, 46.2794666 ], + [ 6.2390182, 46.2793897 ], + [ 6.238958, 46.2793581 ], + [ 6.2385816, 46.279236 ], + [ 6.2385262, 46.2791933 ], + [ 6.2385334, 46.2791445 ], + [ 6.238615, 46.2790315 ], + [ 6.2386931, 46.2788514 ], + [ 6.2386842, 46.2788052 ], + [ 6.2385241, 46.2786825 ], + [ 6.2384898, 46.2785638 ], + [ 6.2384599, 46.2784049 ], + [ 6.2384563, 46.2782494 ], + [ 6.2383594, 46.2781181 ], + [ 6.2383817, 46.2780594 ], + [ 6.2382673, 46.2779596 ], + [ 6.2380951, 46.2779303 ], + [ 6.2378784, 46.2778788 ], + [ 6.2377474, 46.2778373 ], + [ 6.2376568, 46.2777946 ], + [ 6.2376019, 46.2777485 ], + [ 6.237582, 46.2777163 ], + [ 6.237565, 46.2776635 ], + [ 6.237583, 46.2775536 ], + [ 6.237643, 46.2774858 ], + [ 6.2378335, 46.2773498 ], + [ 6.2379065, 46.2772855 ], + [ 6.2379486, 46.2772198 ], + [ 6.2379898, 46.2771421 ], + [ 6.2380178, 46.2770588 ], + [ 6.2380249, 46.2769493 ], + [ 6.2380271, 46.2767315 ], + [ 6.2380238, 46.2766204 ], + [ 6.2380293, 46.2763658 ], + [ 6.2380434, 46.276256 ], + [ 6.2380702, 46.2761578 ], + [ 6.2381081, 46.2760487 ], + [ 6.2381616, 46.2759424 ], + [ 6.2382848, 46.2757645 ], + [ 6.2385006, 46.2755322 ], + [ 6.2389829, 46.2750312 ], + [ 6.2390898, 46.274930499999996 ], + [ 6.2391718, 46.2748726 ], + [ 6.2392643, 46.274814 ], + [ 6.2394096, 46.2747413 ], + [ 6.239552, 46.2746832 ], + [ 6.2397314, 46.2746152 ], + [ 6.2398408, 46.2745604 ], + [ 6.2398935, 46.274528 ], + [ 6.2399424, 46.2744919 ], + [ 6.2399867, 46.2744527 ], + [ 6.2401854, 46.2742523 ], + [ 6.240296, 46.274151 ], + [ 6.2403838, 46.2740749 ], + [ 6.2405048, 46.2739832 ], + [ 6.240729, 46.2738306 ], + [ 6.2408376, 46.2737632 ], + [ 6.2415386999999996, 46.2733436 ], + [ 6.2419023, 46.2731303 ], + [ 6.2419678, 46.2730962 ], + [ 6.2420339, 46.2730672 ], + [ 6.2422156, 46.2729963 ], + [ 6.242356, 46.2729507 ], + [ 6.2424858, 46.2729174 ], + [ 6.2426009, 46.2728944 ], + [ 6.2427085, 46.2728784 ], + [ 6.2427132, 46.2728629 ], + [ 6.2428713, 46.2728527 ], + [ 6.2452676, 46.269271 ], + [ 6.2497176, 46.2626344 ], + [ 6.2497375, 46.2626045 ], + [ 6.2497398, 46.2625962 ], + [ 6.2497346, 46.2625916 ], + [ 6.2497339, 46.2625819 ], + [ 6.2497492, 46.2625168 ], + [ 6.2498468, 46.2622075 ], + [ 6.0838111, 46.1504672 ], + [ 6.0816406, 46.1500658 ], + [ 6.0749146, 46.1488423 ], + [ 6.0743408, 46.1490877 ], + [ 6.0723392, 46.1499437 ], + [ 6.0672512, 46.1504807 ], + [ 6.0606681, 46.1511792 ], + [ 6.0522631, 46.1513428 ], + [ 6.0485217, 46.1471171 ], + [ 6.0475548, 46.1441279 ], + [ 6.0470394, 46.1425723 ], + [ 6.0472934, 46.1424336 ], + [ 6.0474416, 46.1423331 ], + [ 6.0476143, 46.1422011 ], + [ 6.0468988, 46.141756 ], + [ 6.0450784, 46.1399673 ], + [ 6.0450175, 46.1400009 ], + [ 6.0449129, 46.1400858 ], + [ 6.0428242, 46.141238799999996 ], + [ 6.0424782, 46.1414111 ], + [ 6.042469, 46.1413886 ], + [ 6.0421567, 46.1409418 ], + [ 6.0420416, 46.1408031 ], + [ 6.0413213, 46.1401875 ], + [ 6.0411564, 46.1400524 ], + [ 6.0410413, 46.1399789 ], + [ 6.0409055, 46.1399216 ], + [ 6.0407418, 46.139887 ], + [ 6.0405147, 46.1398695 ], + [ 6.0400762, 46.1398468 ], + [ 6.0398683, 46.1398263 ], + [ 6.0396714, 46.1397881 ], + [ 6.0394879, 46.1397264 ], + [ 6.0392973, 46.1396394 ], + [ 6.0390763, 46.1394803 ], + [ 6.0387598, 46.1392246 ], + [ 6.0382911, 46.138871 ], + [ 6.0379744, 46.1386271 ], + [ 6.037436, 46.1382416 ], + [ 6.0371676, 46.1380585 ], + [ 6.0370124, 46.1379232 ], + [ 6.0368376, 46.1377335 ], + [ 6.0364593, 46.1372305 ], + [ 6.0362856, 46.1369838 ], + [ 6.0361924, 46.1368266 ], + [ 6.036106, 46.1366235 ], + [ 6.0359764, 46.1360753 ], + [ 6.0358864, 46.136082 ], + [ 6.0355968, 46.1351286 ], + [ 6.0354663, 46.1348211 ], + [ 6.0354617, 46.1346399 ], + [ 6.0354252, 46.1344589 ], + [ 6.0353938, 46.1343331 ], + [ 6.0353322, 46.1343915 ], + [ 6.0350707, 46.1345996 ], + [ 6.0349381, 46.1347242 ], + [ 6.0348577, 46.1348682 ], + [ 6.0348226, 46.135165 ], + [ 6.0347574999999996, 46.135354 ], + [ 6.0346722, 46.1355159 ], + [ 6.0346553, 46.1355809 ], + [ 6.0345596, 46.135727 ], + [ 6.0343566, 46.1358941 ], + [ 6.0342839, 46.1360452 ], + [ 6.0342817, 46.1361585 ], + [ 6.0344329, 46.1363158 ], + [ 6.0345565, 46.1365331 ], + [ 6.0346281, 46.1366814 ], + [ 6.0345928, 46.1367518 ], + [ 6.034423, 46.1368536 ], + [ 6.0343395, 46.1368775 ], + [ 6.0342806, 46.1368335 ], + [ 6.0341651, 46.1367688 ], + [ 6.0340134, 46.1367394 ], + [ 6.0338094, 46.1366004 ], + [ 6.0336681, 46.1365301 ], + [ 6.033522, 46.1365303 ], + [ 6.0334834, 46.1365417 ], + [ 6.0334316, 46.1366181 ], + [ 6.0335349, 46.136733 ], + [ 6.0335946, 46.1367854 ], + [ 6.0336771, 46.1369723 ], + [ 6.0336475, 46.1370994 ], + [ 6.0335588, 46.1371839 ], + [ 6.0334513, 46.1372198 ], + [ 6.0334136, 46.1372555 ], + [ 6.033405, 46.1372844 ], + [ 6.0334151, 46.1373044 ], + [ 6.0334078, 46.1374153 ], + [ 6.0334407, 46.1375396 ], + [ 6.0335433, 46.1376631 ], + [ 6.0336669, 46.1378611 ], + [ 6.0336748, 46.1379278 ], + [ 6.0336355, 46.1379733 ], + [ 6.0334806, 46.1379916 ], + [ 6.0333862, 46.1379825 ], + [ 6.0332171, 46.1378621 ], + [ 6.0330845, 46.1377737 ], + [ 6.032908, 46.1377063 ], + [ 6.0327465, 46.1377228 ], + [ 6.0325581, 46.1378117 ], + [ 6.032531, 46.1378361 ], + [ 6.0324771, 46.1379171 ], + [ 6.0325442, 46.1380153 ], + [ 6.032621, 46.1380652 ], + [ 6.0328507, 46.1383017 ], + [ 6.0330262, 46.138587 ], + [ 6.0330297999999996, 46.1386673 ], + [ 6.0330094, 46.1387081 ], + [ 6.0329773, 46.1387342 ], + [ 6.0327483, 46.1387701 ], + [ 6.032627, 46.1387126 ], + [ 6.0325359, 46.1386228 ], + [ 6.0322511, 46.1385064 ], + [ 6.0319897, 46.1383859 ], + [ 6.0318758, 46.1383078 ], + [ 6.0318649, 46.1382849 ], + [ 6.031754, 46.1381887 ], + [ 6.0316004, 46.1380467 ], + [ 6.0315146, 46.1379839 ], + [ 6.031486, 46.1379741 ], + [ 6.0314511, 46.1379838 ], + [ 6.0314035, 46.1380271 ], + [ 6.0314046, 46.1380668 ], + [ 6.0314559, 46.1381036 ], + [ 6.0314819, 46.1382167 ], + [ 6.0316172, 46.1384552 ], + [ 6.0316568, 46.1385692 ], + [ 6.031673, 46.1386674 ], + [ 6.0316685, 46.1386859 ], + [ 6.0316302, 46.1387635 ], + [ 6.0315774, 46.1388481 ], + [ 6.0315547, 46.1388943 ], + [ 6.0315387, 46.1389661 ], + [ 6.0315695, 46.1390758 ], + [ 6.0316187, 46.1391116 ], + [ 6.0316972, 46.1392161 ], + [ 6.0317027, 46.1392861 ], + [ 6.0316553, 46.139396 ], + [ 6.031586, 46.1394449 ], + [ 6.031491, 46.1394745 ], + [ 6.0312303, 46.1394757 ], + [ 6.0309103, 46.1394497 ], + [ 6.030805, 46.1394051 ], + [ 6.0307356, 46.1393337 ], + [ 6.0307279, 46.1392537 ], + [ 6.0306381, 46.1391366 ], + [ 6.0305151, 46.1390736 ], + [ 6.0304778, 46.1390692 ], + [ 6.0303257, 46.1390832 ], + [ 6.0300561, 46.1391156 ], + [ 6.0299206, 46.1391575 ], + [ 6.0298546, 46.139213 ], + [ 6.0298812, 46.1393509 ], + [ 6.0299467, 46.1394497 ], + [ 6.0299504, 46.139512 ], + [ 6.0299068, 46.1395663 ], + [ 6.0298335, 46.1396137 ], + [ 6.0296527, 46.1396139 ], + [ 6.0294069, 46.1395003 ], + [ 6.0293161, 46.1393984 ], + [ 6.0292907, 46.1393774 ], + [ 6.0292077, 46.1393555 ], + [ 6.0290367, 46.1393766 ], + [ 6.0288999, 46.1394985 ], + [ 6.0288573, 46.1395973 ], + [ 6.028811, 46.1396574 ], + [ 6.0287636, 46.1396917 ], + [ 6.0287009, 46.1397113 ], + [ 6.0286262, 46.1397592 ], + [ 6.0285508, 46.1397864 ], + [ 6.0284689, 46.1397665 ], + [ 6.0283806, 46.1397028 ], + [ 6.0282758, 46.1397079 ], + [ 6.0282263, 46.1397355 ], + [ 6.0282713, 46.1399336 ], + [ 6.028308, 46.1401235 ], + [ 6.028341, 46.1401552 ], + [ 6.0284035, 46.140166 ], + [ 6.0284903, 46.140208 ], + [ 6.0285215, 46.1403146 ], + [ 6.0285044, 46.1403728 ], + [ 6.0284521, 46.1404374 ], + [ 6.0282974, 46.1404451 ], + [ 6.0280306, 46.1403845 ], + [ 6.0279595, 46.1402729 ], + [ 6.0278773, 46.1402034 ], + [ 6.0276953, 46.1401372 ], + [ 6.027512, 46.1400988 ], + [ 6.0274335, 46.1400636 ], + [ 6.0272929, 46.1400327 ], + [ 6.0271843, 46.1400385 ], + [ 6.0268572, 46.1400832 ], + [ 6.0267158, 46.1400805 ], + [ 6.0265938, 46.1400933 ], + [ 6.0264379, 46.1400838 ], + [ 6.0262355, 46.1401075 ], + [ 6.026185, 46.1401212 ], + [ 6.0259472, 46.140258 ], + [ 6.0258546, 46.1403017 ], + [ 6.0257533, 46.1403267 ], + [ 6.0255664, 46.1403373 ], + [ 6.0253122, 46.1404009 ], + [ 6.0252466, 46.1404107 ], + [ 6.0250435, 46.1404081 ], + [ 6.0249917, 46.1403971 ], + [ 6.024738, 46.1404044 ], + [ 6.024531, 46.1403995 ], + [ 6.0243578, 46.1403771 ], + [ 6.0240822, 46.1403687 ], + [ 6.0239589, 46.1403708 ], + [ 6.0239025, 46.1403817 ], + [ 6.0238241, 46.1404289 ], + [ 6.0237622, 46.1405506 ], + [ 6.0236711, 46.1406512 ], + [ 6.0236547, 46.1406825 ], + [ 6.0236302, 46.140718 ], + [ 6.0235791, 46.1407618 ], + [ 6.0235223, 46.1408346 ], + [ 6.023427, 46.1409026 ], + [ 6.0233712, 46.1409668 ], + [ 6.0232887999999996, 46.1410298 ], + [ 6.0232311, 46.1410553 ], + [ 6.0232081, 46.1410867 ], + [ 6.0231564, 46.1411715 ], + [ 6.0230937, 46.1412292 ], + [ 6.0230148, 46.1413129 ], + [ 6.0229244, 46.1413889 ], + [ 6.0228612, 46.1414174 ], + [ 6.0227244, 46.1415651 ], + [ 6.0226556, 46.1416055 ], + [ 6.0225259, 46.1416574 ], + [ 6.0224339, 46.1416787 ], + [ 6.022336, 46.1416754 ], + [ 6.0222074, 46.1416597 ], + [ 6.0219179, 46.1416084 ], + [ 6.0218112, 46.141594 ], + [ 6.0217312, 46.1415715 ], + [ 6.0216508, 46.1415357 ], + [ 6.0216075, 46.1415196 ], + [ 6.0215722, 46.1414851 ], + [ 6.0215411, 46.1414319 ], + [ 6.0214874, 46.1412969 ], + [ 6.0214583, 46.1412382 ], + [ 6.021373, 46.1411388 ], + [ 6.02133, 46.1411187 ], + [ 6.0212853, 46.1411094 ], + [ 6.0212274, 46.1411096 ], + [ 6.0211695, 46.1411295 ], + [ 6.0210818, 46.1411876 ], + [ 6.0210293, 46.1412271 ], + [ 6.0209477, 46.1412755 ], + [ 6.0208865, 46.1413458 ], + [ 6.0208318, 46.1413947 ], + [ 6.0207557, 46.1414522 ], + [ 6.0207073, 46.141478 ], + [ 6.020669, 46.1414938 ], + [ 6.0206226, 46.1415398 ], + [ 6.0205701, 46.1416055 ], + [ 6.0205521, 46.1416355 ], + [ 6.0205266, 46.1416917 ], + [ 6.0205085, 46.141786 ], + [ 6.0204843, 46.1418173 ], + [ 6.0204327, 46.1418609 ], + [ 6.0202919, 46.1419911 ], + [ 6.0202548, 46.1420154 ], + [ 6.0201534, 46.1420616 ], + [ 6.0200534, 46.1420891 ], + [ 6.0199985, 46.1420956 ], + [ 6.0199602, 46.1420981 ], + [ 6.0197868, 46.1420888 ], + [ 6.0197196, 46.1420799 ], + [ 6.0196423, 46.1420641 ], + [ 6.0195681, 46.1420402 ], + [ 6.0195219, 46.1420215 ], + [ 6.0194631, 46.1419911 ], + [ 6.0192864, 46.1419565 ], + [ 6.0192445, 46.1419508 ], + [ 6.0192152, 46.1419611 ], + [ 6.0191883, 46.1419768 ], + [ 6.0192652, 46.1420893 ], + [ 6.0192306, 46.1420946 ], + [ 6.0190336, 46.1421074 ], + [ 6.0188576, 46.1421414 ], + [ 6.0186331, 46.1421925 ], + [ 6.0184953, 46.1421871 ], + [ 6.0183719, 46.1422224 ], + [ 6.0183204, 46.142262 ], + [ 6.0183009, 46.1423439 ], + [ 6.0182617, 46.1423879 ], + [ 6.0181632, 46.1423995 ], + [ 6.0180875, 46.1424647 ], + [ 6.0180434, 46.1424912 ], + [ 6.0179119, 46.1425488 ], + [ 6.017781, 46.1426142 ], + [ 6.0176753, 46.142673 ], + [ 6.0174706, 46.1427436 ], + [ 6.0171787, 46.1428385 ], + [ 6.0170682, 46.1428425 ], + [ 6.0169378, 46.1428176 ], + [ 6.0166267, 46.1427728 ], + [ 6.0164812, 46.1427825 ], + [ 6.0162516, 46.1427823 ], + [ 6.0158901, 46.1427569 ], + [ 6.0155321, 46.1427847 ], + [ 6.0154045, 46.142813 ], + [ 6.0153278, 46.1428671 ], + [ 6.015297, 46.1429258 ], + [ 6.0152196, 46.1429883 ], + [ 6.0151061, 46.143057 ], + [ 6.0150126, 46.1430756 ], + [ 6.0149322, 46.1430753 ], + [ 6.0147617, 46.143021 ], + [ 6.0146891, 46.1429168 ], + [ 6.0146762, 46.1428347 ], + [ 6.0145419, 46.1426556 ], + [ 6.0144576, 46.142456 ], + [ 6.0143277, 46.142364 ], + [ 6.014248, 46.1423461 ], + [ 6.0141738, 46.1423604 ], + [ 6.0139416, 46.1424413 ], + [ 6.013769, 46.1425386 ], + [ 6.0136252, 46.1425337 ], + [ 6.0135172, 46.1424459 ], + [ 6.0133295, 46.1422048 ], + [ 6.0132451, 46.1421539 ], + [ 6.013081, 46.1420997 ], + [ 6.0129837, 46.1421165 ], + [ 6.0128963, 46.1421151 ], + [ 6.0128111, 46.142125 ], + [ 6.0127399, 46.1421432 ], + [ 6.0127324, 46.1421599 ], + [ 6.0126891, 46.142191 ], + [ 6.0126584, 46.1422009 ], + [ 6.0125741, 46.1422024 ], + [ 6.0124608, 46.1421839 ], + [ 6.0123798, 46.1421449 ], + [ 6.0123646, 46.1421471 ], + [ 6.0123256, 46.1421362 ], + [ 6.0122906, 46.1421209 ], + [ 6.0122625, 46.1421267 ], + [ 6.012194, 46.142119 ], + [ 6.0121078, 46.1421183 ], + [ 6.0120254, 46.142125 ], + [ 6.0119572, 46.142133 ], + [ 6.0119063, 46.1421451 ], + [ 6.0117375, 46.1421688 ], + [ 6.0116595, 46.1421745 ], + [ 6.0116223, 46.1421721 ], + [ 6.011518, 46.1421736 ], + [ 6.0114272, 46.1421684 ], + [ 6.0114086, 46.1421638 ], + [ 6.0112976, 46.1421495 ], + [ 6.0111548, 46.142111 ], + [ 6.0110393, 46.1420315 ], + [ 6.0110063, 46.1419839 ], + [ 6.0109495, 46.1419353 ], + [ 6.0109144, 46.1419286 ], + [ 6.0108564, 46.1419467 ], + [ 6.0107865, 46.1419862 ], + [ 6.0107325, 46.1420654 ], + [ 6.0107235, 46.1421164 ], + [ 6.0106986, 46.1421571 ], + [ 6.0106759, 46.1421613 ], + [ 6.010639, 46.1421896 ], + [ 6.0105773, 46.1422242 ], + [ 6.0105149, 46.1422471 ], + [ 6.0104949, 46.1422482 ], + [ 6.0104751, 46.1422406 ], + [ 6.0104162, 46.1422289 ], + [ 6.0103632, 46.1422279 ], + [ 6.0102654, 46.1422195 ], + [ 6.0102509, 46.1422131 ], + [ 6.0101707, 46.1421959 ], + [ 6.0101243, 46.142213 ], + [ 6.0100218, 46.1421844 ], + [ 6.0099186, 46.1421613 ], + [ 6.0098722, 46.1421583 ], + [ 6.0098402, 46.1421507 ], + [ 6.0097304, 46.1421029 ], + [ 6.0097079, 46.1421086 ], + [ 6.0096033, 46.1420923 ], + [ 6.0095635, 46.1421102 ], + [ 6.0095159, 46.1421529 ], + [ 6.0094581, 46.1422635 ], + [ 6.0095068, 46.1422855 ], + [ 6.0095161, 46.1423113 ], + [ 6.0095134, 46.1423532 ], + [ 6.0095237, 46.1424303 ], + [ 6.0094868, 46.1424686 ], + [ 6.0093943, 46.1425262 ], + [ 6.0092662, 46.1425911 ], + [ 6.0092134, 46.1426272 ], + [ 6.0091483, 46.1426415 ], + [ 6.0090432, 46.1426497 ], + [ 6.0090166, 46.1426586 ], + [ 6.0090028, 46.142669 ], + [ 6.0089291, 46.1426936 ], + [ 6.0088813, 46.1427198 ], + [ 6.0087842, 46.1427609 ], + [ 6.008674, 46.1427907 ], + [ 6.0086462, 46.142801 ], + [ 6.008571, 46.1428117 ], + [ 6.0085476, 46.142819 ], + [ 6.0084423, 46.1428123 ], + [ 6.0082659, 46.1427851 ], + [ 6.0080499, 46.1426939 ], + [ 6.0079451, 46.1426721 ], + [ 6.007692, 46.1425951 ], + [ 6.007542, 46.1425249 ], + [ 6.0074446, 46.1424718 ], + [ 6.0073561, 46.1423909 ], + [ 6.0073103, 46.1423612 ], + [ 6.0072192, 46.1423229 ], + [ 6.0071448, 46.1422772 ], + [ 6.0070619, 46.1422365 ], + [ 6.0067874, 46.1421453 ], + [ 6.0067412, 46.1421322 ], + [ 6.0065727, 46.1421022 ], + [ 6.0065219, 46.1420963 ], + [ 6.0065008, 46.1421068 ], + [ 6.0064454, 46.1421111 ], + [ 6.0061616, 46.1421237 ], + [ 6.0060263, 46.1421606 ], + [ 6.0059846, 46.1421806 ], + [ 6.0059901, 46.1422138 ], + [ 6.0060049, 46.1422594 ], + [ 6.0059827, 46.1422773 ], + [ 6.0059615, 46.1423028 ], + [ 6.0059299, 46.1423194 ], + [ 6.0059, 46.1423157 ], + [ 6.0058067, 46.1423323 ], + [ 6.005709, 46.1423411 ], + [ 6.0056397, 46.1423208 ], + [ 6.0055639, 46.142325 ], + [ 6.0054726, 46.1423064 ], + [ 6.0052883, 46.1422903 ], + [ 6.0052867, 46.1422817 ], + [ 6.0052481, 46.1422778 ], + [ 6.0052393, 46.142269 ], + [ 6.0051873, 46.1422673 ], + [ 6.0051922, 46.1422752 ], + [ 6.0051637, 46.1422748 ], + [ 6.005155, 46.1422677 ], + [ 6.0050525, 46.1422431 ], + [ 6.0049385, 46.1421975 ], + [ 6.0045537, 46.1419921 ], + [ 6.004351, 46.1419257 ], + [ 6.0041107, 46.1419304 ], + [ 6.0039825, 46.1419513 ], + [ 6.0039583, 46.1419745 ], + [ 6.0038684, 46.1420055 ], + [ 6.0037543, 46.1420151 ], + [ 6.0036768, 46.1419865 ], + [ 6.0035825, 46.1419311 ], + [ 6.0032672, 46.1417808 ], + [ 6.0032292, 46.1417766 ], + [ 6.0031535, 46.1417925 ], + [ 6.0031077, 46.1418146 ], + [ 6.0031007, 46.1418489 ], + [ 6.0030528, 46.1418739 ], + [ 6.0029852, 46.1419254 ], + [ 6.0029331, 46.1419505 ], + [ 6.0028754, 46.141961 ], + [ 6.0028202, 46.141986 ], + [ 6.0028105, 46.1420074 ], + [ 6.0027486, 46.1420548 ], + [ 6.002745, 46.1420754 ], + [ 6.002679, 46.1421246 ], + [ 6.0025677, 46.1421812 ], + [ 6.0024139, 46.1422123 ], + [ 6.0023697, 46.1422158 ], + [ 6.0020966, 46.1422841 ], + [ 6.0019778, 46.1422943 ], + [ 6.0019522, 46.1423019 ], + [ 6.0017967, 46.1422848 ], + [ 6.0017204, 46.1422682 ], + [ 6.0016985, 46.1422701 ], + [ 6.0016936, 46.1422472 ], + [ 6.001555, 46.1422076 ], + [ 6.0014558, 46.1421865 ], + [ 6.0013742, 46.1421646 ], + [ 6.001305, 46.1421631 ], + [ 6.0012812, 46.1421702 ], + [ 6.0012531, 46.1421858 ], + [ 6.0012254, 46.142194 ], + [ 6.0012137, 46.1421923 ], + [ 6.0011095, 46.1422822 ], + [ 6.0011052, 46.1422922 ], + [ 6.0010212, 46.1423533 ], + [ 6.0009461, 46.1424512 ], + [ 6.000891, 46.1425514 ], + [ 6.0007881, 46.1426386 ], + [ 6.0007533, 46.1426574 ], + [ 6.0006907, 46.1426743 ], + [ 6.0006145, 46.1426707 ], + [ 6.0005944, 46.1426562 ], + [ 6.000577, 46.1426332 ], + [ 6.0005306, 46.1426006 ], + [ 6.0005393, 46.1425941 ], + [ 6.0005517, 46.1425917 ], + [ 6.0005261, 46.1425381 ], + [ 6.0005029, 46.1425418 ], + [ 6.0004965, 46.1425582 ], + [ 6.0004075, 46.1425542 ], + [ 6.0003998, 46.1425476 ], + [ 6.0003662, 46.1425599 ], + [ 6.0002804, 46.1425783 ], + [ 6.0002757, 46.1425913 ], + [ 6.000268, 46.1425979 ], + [ 6.0002149, 46.142622 ], + [ 6.0002047, 46.1426283 ], + [ 6.0002021, 46.1426397 ], + [ 6.00012, 46.1426877 ], + [ 5.9999879, 46.1428665 ], + [ 6.0000122, 46.1429775 ], + [ 5.9999926, 46.1430118 ], + [ 5.9999929, 46.1430464 ], + [ 5.9999310999999995, 46.1431172 ], + [ 5.9998985, 46.1431265 ], + [ 5.9998709, 46.1431447 ], + [ 5.9998563, 46.1431463 ], + [ 5.999834, 46.1431324 ], + [ 5.9998001, 46.143128 ], + [ 5.9996686, 46.143093 ], + [ 5.9996317, 46.1430934 ], + [ 5.9996105, 46.1430904 ], + [ 5.9995994, 46.143077 ], + [ 5.9996019, 46.1430664 ], + [ 5.9996187, 46.1430604 ], + [ 5.9995469, 46.1430107 ], + [ 5.9994942, 46.1429458 ], + [ 5.9992104, 46.1428952 ], + [ 5.9991942, 46.1429091 ], + [ 5.9991885, 46.1429276 ], + [ 5.9991081, 46.1429286 ], + [ 5.999041, 46.1429184 ], + [ 5.9989543, 46.1429104 ], + [ 5.9989425, 46.1429028 ], + [ 5.998685, 46.1428569 ], + [ 5.9986816, 46.1428794 ], + [ 5.9986719, 46.1428857 ], + [ 5.9986713, 46.1429111 ], + [ 5.9986119, 46.1429463 ], + [ 5.998561, 46.1429605 ], + [ 5.998554, 46.1429547 ], + [ 5.998461, 46.1430076 ], + [ 5.9984492, 46.1430034 ], + [ 5.9982636, 46.1430268 ], + [ 5.9981214, 46.1430374 ], + [ 5.9980633999999995, 46.1430233 ], + [ 5.9980354, 46.1430054 ], + [ 5.9980387, 46.1429828 ], + [ 5.9979224, 46.1429604 ], + [ 5.9979036, 46.1429503 ], + [ 5.9978254, 46.1429398 ], + [ 5.9976775, 46.1428915 ], + [ 5.9975863, 46.1428574 ], + [ 5.9975148, 46.142819 ], + [ 5.9974505, 46.142799 ], + [ 5.9973657, 46.1427844 ], + [ 5.9972946, 46.1428103 ], + [ 5.9971442, 46.1428475 ], + [ 5.9970701, 46.1428711 ], + [ 5.9969392, 46.14296 ], + [ 5.9969339, 46.1429857 ], + [ 5.9968848, 46.1430812 ], + [ 5.9969114999999995, 46.1431349 ], + [ 5.9968953, 46.1431944 ], + [ 5.9969212, 46.1432675 ], + [ 5.9968415, 46.1433452 ], + [ 5.9967384, 46.143552 ], + [ 5.99672, 46.1436064 ], + [ 5.9966591, 46.1436668 ], + [ 5.996593, 46.1437009 ], + [ 5.9964034, 46.143778 ], + [ 5.9962652, 46.1438001 ], + [ 5.9961331, 46.1438024 ], + [ 5.996091, 46.1437822 ], + [ 5.9960672, 46.1437913 ], + [ 5.9958585, 46.143831 ], + [ 5.9957768, 46.1438634 ], + [ 5.9957756, 46.1438931 ], + [ 5.9957068, 46.1439265 ], + [ 5.9957, 46.1439212 ], + [ 5.9956086, 46.1439561 ], + [ 5.9955986, 46.1439748 ], + [ 5.9955473, 46.143967 ], + [ 5.9952977, 46.144027 ], + [ 5.9950229, 46.1440351 ], + [ 5.9949462, 46.1440204 ], + [ 5.9948441, 46.1439658 ], + [ 5.9948063, 46.1438916 ], + [ 5.9948222, 46.1438367 ], + [ 5.9948063, 46.1437639 ], + [ 5.9948246, 46.1437354 ], + [ 5.9948108, 46.1436947 ], + [ 5.994817, 46.1436465 ], + [ 5.9947826, 46.1436023 ], + [ 5.9947542, 46.1435905 ], + [ 5.9947096, 46.1435986 ], + [ 5.9946213, 46.1436411 ], + [ 5.9945618, 46.1437059 ], + [ 5.9945185, 46.1437449 ], + [ 5.9944778, 46.1438259 ], + [ 5.9942627, 46.1440373 ], + [ 5.9942554999999995, 46.1440596 ], + [ 5.9941997, 46.144136 ], + [ 5.9941932, 46.1441338 ], + [ 5.9941505, 46.1442198 ], + [ 5.9941313, 46.1442331 ], + [ 5.9941192, 46.1442994 ], + [ 5.9941218, 46.1443633 ], + [ 5.9941493, 46.1444069 ], + [ 5.9941972, 46.144433 ], + [ 5.9942236, 46.1444791 ], + [ 5.9942012, 46.1444882 ], + [ 5.9941955, 46.1445402 ], + [ 5.994169, 46.1445482 ], + [ 5.9941475, 46.1445634 ], + [ 5.9941013, 46.1445694 ], + [ 5.994072, 46.1445633 ], + [ 5.9940088, 46.1445334 ], + [ 5.9939463, 46.1444807 ], + [ 5.9937856, 46.1444449 ], + [ 5.9937864, 46.1444377 ], + [ 5.9937723, 46.1444309 ], + [ 5.9937673, 46.1444339 ], + [ 5.9936792, 46.1443883 ], + [ 5.9936611, 46.1443763 ], + [ 5.9936383, 46.1443698 ], + [ 5.9936297, 46.144356 ], + [ 5.9933477, 46.1442102 ], + [ 5.9933149, 46.1441999 ], + [ 5.9932156, 46.1441389 ], + [ 5.9930022, 46.144049 ], + [ 5.9928292, 46.144009 ], + [ 5.9926049, 46.1439629 ], + [ 5.9921951, 46.1439166 ], + [ 5.9921279, 46.1439136 ], + [ 5.9917622999999995, 46.1438089 ], + [ 5.9911331, 46.1435781 ], + [ 5.9908838, 46.1434926 ], + [ 5.9905525, 46.1433528 ], + [ 5.9903499, 46.1433033 ], + [ 5.9901735, 46.1433697 ], + [ 5.9900208, 46.143445 ], + [ 5.9899272, 46.1434452 ], + [ 5.9896231, 46.1435105 ], + [ 5.9892655999999995, 46.1436442 ], + [ 5.9891657, 46.1436951 ], + [ 5.9891290999999995, 46.1437474 ], + [ 5.9889794, 46.1438392 ], + [ 5.9889322, 46.1438419 ], + [ 5.9888638, 46.1438249 ], + [ 5.9888015, 46.1437812 ], + [ 5.9887407, 46.1436268 ], + [ 5.9886669, 46.1434852 ], + [ 5.988635, 46.1433805 ], + [ 5.9885839999999995, 46.1433048 ], + [ 5.9885408, 46.1432788 ], + [ 5.9885022, 46.1432705 ], + [ 5.9883941, 46.1432719 ], + [ 5.9882532, 46.1432943 ], + [ 5.9881174999999995, 46.1433278 ], + [ 5.9880005, 46.1433233 ], + [ 5.9878992, 46.1432878 ], + [ 5.9878397, 46.1431818 ], + [ 5.9877122, 46.1430358 ], + [ 5.9876348, 46.1429811 ], + [ 5.9875867, 46.14296 ], + [ 5.9874431, 46.1428575 ], + [ 5.987085, 46.1425905 ], + [ 5.9869898, 46.1425676 ], + [ 5.9868995, 46.1425861 ], + [ 5.9868706, 46.1426054 ], + [ 5.9867104, 46.1427439 ], + [ 5.9866731, 46.1428155 ], + [ 5.9865489, 46.1429343 ], + [ 5.9863878, 46.1429094 ], + [ 5.9862643, 46.1428301 ], + [ 5.9861602, 46.1428059 ], + [ 5.9859534, 46.1428716 ], + [ 5.9857523, 46.1430684 ], + [ 5.9856099, 46.1432989 ], + [ 5.9855377999999995, 46.143368 ], + [ 5.9854807999999995, 46.1434095 ], + [ 5.9852045, 46.143391 ], + [ 5.9850703, 46.1433341 ], + [ 5.9849236, 46.1433596 ], + [ 5.9846796, 46.1432831 ], + [ 5.9840304, 46.1432022 ], + [ 5.983845, 46.1431579 ], + [ 5.9837046, 46.1430757 ], + [ 5.9835442, 46.1430112 ], + [ 5.9835033, 46.1429889 ], + [ 5.9834923, 46.1429267 ], + [ 5.983392, 46.1428069 ], + [ 5.9833293, 46.1427205 ], + [ 5.9832155, 46.142607 ], + [ 5.9831216, 46.1425438 ], + [ 5.9830125, 46.1425173 ], + [ 5.9829227, 46.1424723 ], + [ 5.9827615, 46.1424072 ], + [ 5.9824458, 46.1422907 ], + [ 5.9823366, 46.1415446 ], + [ 5.9829267999999995, 46.1413182 ], + [ 5.9828675, 46.1410117 ], + [ 5.9826057, 46.1404044 ], + [ 5.9822005, 46.1386924 ], + [ 5.9819289, 46.1374076 ], + [ 5.9806544, 46.1364605 ], + [ 5.9798726, 46.1359846 ], + [ 5.9790813, 46.1355412 ], + [ 5.9775075, 46.133618 ], + [ 5.9771799, 46.1334036 ], + [ 5.9767116, 46.1331553 ], + [ 5.9754042, 46.1326692 ], + [ 5.9741466, 46.1323585 ], + [ 5.9734487, 46.1320346 ], + [ 5.9729658, 46.1316227 ], + [ 5.9729352, 46.1316299 ], + [ 5.9729133, 46.1316556 ], + [ 5.9728871, 46.1316774 ], + [ 5.9728236, 46.1316962 ], + [ 5.9727262, 46.1317412 ], + [ 5.972661, 46.1317818 ], + [ 5.9725936, 46.1318033 ], + [ 5.9725734, 46.131827 ], + [ 5.9725932, 46.1318539 ], + [ 5.9726251999999995, 46.1318708 ], + [ 5.9726246, 46.1318882 ], + [ 5.9726085, 46.1319009 ], + [ 5.9725478, 46.1319177 ], + [ 5.972511, 46.1319176 ], + [ 5.9724294, 46.1319558 ], + [ 5.9723914, 46.1319705 ], + [ 5.9723649, 46.1319765 ], + [ 5.9723436, 46.1319704 ], + [ 5.9722972, 46.1319668 ], + [ 5.9722223, 46.1320011 ], + [ 5.9721773, 46.1320276 ], + [ 5.97209, 46.1320654 ], + [ 5.9720571, 46.1320662 ], + [ 5.972009, 46.1320783 ], + [ 5.9719535, 46.1320783 ], + [ 5.971845, 46.1321029 ], + [ 5.9717902, 46.1321221 ], + [ 5.9717497, 46.1321259 ], + [ 5.9717066, 46.1321349 ], + [ 5.9716667999999995, 46.1321379 ], + [ 5.971555, 46.1321385 ], + [ 5.9715077, 46.1321219 ], + [ 5.971482, 46.1321047 ], + [ 5.9714246, 46.1321304 ], + [ 5.9714044, 46.1321319 ], + [ 5.9713457, 46.1321107 ], + [ 5.9712564, 46.1321045 ], + [ 5.9711479, 46.1320905 ], + [ 5.9710537, 46.1320695 ], + [ 5.971016, 46.1320709 ], + [ 5.9709169, 46.1320556 ], + [ 5.9708564, 46.1320627 ], + [ 5.9708241, 46.1320629 ], + [ 5.9707237, 46.1320501 ], + [ 5.9706881, 46.1320227 ], + [ 5.9706639, 46.1320211 ], + [ 5.9706129, 46.13203 ], + [ 5.9705588, 46.1320153 ], + [ 5.9705324, 46.1319949 ], + [ 5.9704014, 46.1319824 ], + [ 5.9703607, 46.1319926 ], + [ 5.9702950999999995, 46.1320019 ], + [ 5.9702027, 46.132 ], + [ 5.9701537, 46.131995 ], + [ 5.9701135, 46.1319965 ], + [ 5.9700654, 46.1320278 ], + [ 5.9700114, 46.132029 ], + [ 5.9699759, 46.1320249 ], + [ 5.969934, 46.1320469 ], + [ 5.9698796, 46.1320696 ], + [ 5.9698491, 46.1320727 ], + [ 5.9697767, 46.132071 ], + [ 5.9696944, 46.1320472 ], + [ 5.9696089, 46.1320356 ], + [ 5.969548, 46.1320216 ], + [ 5.9695014, 46.1320355 ], + [ 5.9694759, 46.1320383 ], + [ 5.9694571, 46.1320038 ], + [ 5.9693477999999995, 46.131889 ], + [ 5.969313, 46.1316748 ], + [ 5.9692634, 46.1316303 ], + [ 5.9692606999999995, 46.1315706 ], + [ 5.9691534, 46.1315008 ], + [ 5.9692017, 46.1314411 ], + [ 5.9688947, 46.1313365 ], + [ 5.9688764, 46.1312812 ], + [ 5.9686077, 46.1312 ], + [ 5.9683548, 46.1311448 ], + [ 5.9682318, 46.1311542 ], + [ 5.9679884, 46.1310906 ], + [ 5.9678778, 46.1311107 ], + [ 5.9676616, 46.13104 ], + [ 5.9675039, 46.1309342 ], + [ 5.9673212, 46.1307009 ], + [ 5.9672123, 46.1306699 ], + [ 5.9670856, 46.1305275 ], + [ 5.9666973, 46.1303439 ], + [ 5.9667259, 46.1302864 ], + [ 5.9665687, 46.1302471 ], + [ 5.9665124, 46.130195 ], + [ 5.9662385, 46.1301459 ], + [ 5.9662188, 46.1301183 ], + [ 5.9659619, 46.1300638 ], + [ 5.9659298, 46.130024 ], + [ 5.9657859, 46.1300594 ], + [ 5.9657026, 46.1300302 ], + [ 5.9656332, 46.1300895 ], + [ 5.9654188, 46.1299936 ], + [ 5.9654499, 46.1298905 ], + [ 5.9652905, 46.129804 ], + [ 5.9652954, 46.1297719 ], + [ 5.9652004, 46.1296847 ], + [ 5.9647771, 46.130193 ], + [ 5.9642297, 46.1302831 ], + [ 5.9627476, 46.1305182 ], + [ 5.9611053, 46.1308028 ], + [ 5.9611468, 46.1307247 ], + [ 5.9610861, 46.1306099 ], + [ 5.9609508, 46.1305629 ], + [ 5.9606362, 46.1303465 ], + [ 5.9605687, 46.13025 ], + [ 5.9598864, 46.1298316 ], + [ 5.958791, 46.1293978 ], + [ 5.957382, 46.1285503 ], + [ 5.9573313, 46.1285755 ], + [ 5.9568463, 46.1287567 ], + [ 5.9564458, 46.1318025 ], + [ 5.955902, 46.1323556 ], + [ 5.9571236, 46.133275 ], + [ 5.9575125, 46.1335439 ], + [ 5.9579329, 46.133789 ], + [ 5.9583816, 46.1340085 ], + [ 5.9588554, 46.1342007 ], + [ 5.9622437999999995, 46.1354441 ], + [ 5.9624198, 46.1355048 ], + [ 5.9626000999999995, 46.1355593 ], + [ 5.962784, 46.1356073 ], + [ 5.9631361, 46.1356922 ], + [ 5.9634661, 46.1357819 ], + [ 5.9637849, 46.1358893 ], + [ 5.9640907, 46.1360137 ], + [ 5.9643816, 46.1361544 ], + [ 5.9649243, 46.1364393 ], + [ 5.9651078, 46.1365452 ], + [ 5.9652766, 46.1366624 ], + [ 5.965429, 46.1367899 ], + [ 5.965564, 46.1369266 ], + [ 5.9656803, 46.1370714 ], + [ 5.9661668, 46.1377488 ], + [ 5.9662562999999995, 46.1378878 ], + [ 5.9663284999999995, 46.1380315 ], + [ 5.966383, 46.1381789 ], + [ 5.9664193, 46.138329 ], + [ 5.9664373, 46.1384807 ], + [ 5.9664368, 46.1386329 ], + [ 5.9664178, 46.1387845 ], + [ 5.9663804, 46.1389345 ], + [ 5.9663249, 46.1390817 ], + [ 5.9662517, 46.1392252 ], + [ 5.9658385, 46.1399377 ], + [ 5.9657312, 46.1401096 ], + [ 5.9656112, 46.1402774 ], + [ 5.9654788, 46.1404407 ], + [ 5.9648102, 46.1412169 ], + [ 5.9647322, 46.1413117 ], + [ 5.9646599, 46.1414086 ], + [ 5.9645931999999995, 46.1415074 ], + [ 5.9644746, 46.1417159 ], + [ 5.9643813, 46.1419304 ], + [ 5.964314, 46.1421496 ], + [ 5.9641006999999995, 46.1430189 ], + [ 5.9640465, 46.1433117 ], + [ 5.9640271, 46.1436065 ], + [ 5.9640424, 46.1439014 ], + [ 5.9640925, 46.1441945 ], + [ 5.964177, 46.1444837 ], + [ 5.9642953, 46.1447672 ], + [ 5.964745, 46.1456998 ], + [ 5.9649573, 46.1460816 ], + [ 5.9652188, 46.1464484 ], + [ 5.9655271, 46.1467972 ], + [ 5.9658798, 46.1471251 ], + [ 5.9665059, 46.1476548 ], + [ 5.9666101, 46.1477515 ], + [ 5.9667014, 46.1478543 ], + [ 5.9667791, 46.1479624 ], + [ 5.9668426, 46.1480749 ], + [ 5.9668914, 46.1481908 ], + [ 5.9672997, 46.149352 ], + [ 5.967341, 46.1494558 ], + [ 5.967391, 46.1495576 ], + [ 5.9674498, 46.1496572 ], + [ 5.968781, 46.1517332 ], + [ 5.9689049, 46.151909 ], + [ 5.9690469, 46.1520781 ], + [ 5.9692062, 46.1522397 ], + [ 5.9718624, 46.1547345 ], + [ 5.9725527, 46.1554395 ], + [ 5.9731608, 46.1561802 ], + [ 5.9736829, 46.1569519 ], + [ 5.9745552, 46.1583856 ], + [ 5.9745936, 46.158457 ], + [ 5.9746231, 46.1585304 ], + [ 5.9746436, 46.1586052 ], + [ 5.974655, 46.158681 ], + [ 5.9746562, 46.1589153 ], + [ 5.9746673, 46.1589903 ], + [ 5.9746874, 46.1590645 ], + [ 5.9747163, 46.1591371 ], + [ 5.9747539, 46.1592079 ], + [ 5.9757832, 46.1609201 ], + [ 5.9764016, 46.1619487 ], + [ 5.9764833, 46.1620755 ], + [ 5.9765744, 46.1621991 ], + [ 5.9766744, 46.1623194 ], + [ 5.9797648, 46.1658203 ], + [ 5.9799454, 46.166045 ], + [ 5.9800989, 46.1662792 ], + [ 5.9802245, 46.1665213 ], + [ 5.9803212, 46.1667698 ], + [ 5.9803882999999995, 46.1670229 ], + [ 5.9809825, 46.1699244 ], + [ 5.9810031, 46.1700862 ], + [ 5.9810026, 46.1702486 ], + [ 5.9809811, 46.1704103 ], + [ 5.9809149, 46.1707239 ], + [ 5.9808969, 46.170851 ], + [ 5.9808962999999995, 46.1709786 ], + [ 5.980913, 46.1711057 ], + [ 5.9809469, 46.1712312 ], + [ 5.9809978, 46.1713539 ], + [ 5.9818222, 46.1730388 ], + [ 5.9818728, 46.1731292 ], + [ 5.9819343, 46.1732162 ], + [ 5.9820065, 46.1732991 ], + [ 5.9820887, 46.1733775 ], + [ 5.9821802, 46.1734507 ], + [ 5.9822805, 46.1735181 ], + [ 5.9823889, 46.1735792 ], + [ 5.9825043, 46.1736336 ], + [ 5.9826261, 46.173681 ], + [ 5.9827533, 46.1737208 ], + [ 5.982885, 46.1737529 ], + [ 5.9830202, 46.173777 ], + [ 5.9831579, 46.1737929 ], + [ 5.983297, 46.1738006 ], + [ 5.9834365, 46.1737998 ], + [ 5.9835755, 46.1737908 ], + [ 5.9837128, 46.1737734 ], + [ 5.9838474, 46.1737479 ], + [ 5.9839784, 46.1737144 ], + [ 5.9841047, 46.1736732 ], + [ 5.9842255, 46.1736246 ], + [ 5.9845065, 46.1735 ], + [ 5.9847709, 46.1733717 ], + [ 5.9850191, 46.1732286 ], + [ 5.9852494, 46.1730717 ], + [ 5.9854601, 46.172902 ], + [ 5.9856498, 46.1727208 ], + [ 5.9858173, 46.1725293 ], + [ 5.9859613, 46.1723287 ], + [ 5.9860808, 46.1721206 ], + [ 5.9861751, 46.1719063 ], + [ 5.9862435, 46.1716873 ], + [ 5.9863833, 46.1711281 ], + [ 5.9864016, 46.1710701 ], + [ 5.9864272, 46.1710135 ], + [ 5.9864598, 46.1709586 ], + [ 5.9864993, 46.170906 ], + [ 5.9865452, 46.170856 ], + [ 5.9865973, 46.170809 ], + [ 5.9866551, 46.1707653 ], + [ 5.9867183, 46.1707253 ], + [ 5.9867862, 46.1706894 ], + [ 5.9868584, 46.1706577 ], + [ 5.9869344, 46.1706306 ], + [ 5.9870135, 46.1706082 ], + [ 5.9870951, 46.1705907 ], + [ 5.9871786, 46.1705783 ], + [ 5.9872634, 46.170571 ], + [ 5.9873487, 46.1705689 ], + [ 5.987434, 46.170572 ], + [ 5.9875186, 46.1705804 ], + [ 5.9876018, 46.1705938 ], + [ 5.9876829, 46.1706123 ], + [ 5.9877614, 46.1706357 ], + [ 5.9878367, 46.1706638 ], + [ 5.9879081, 46.1706963 ], + [ 5.9879751, 46.1707331 ], + [ 5.9880372, 46.1707738 ], + [ 5.9880939, 46.1708182 ], + [ 5.9881448, 46.1708659 ], + [ 5.9881893999999996, 46.1709164 ], + [ 5.9885109, 46.1713191 ], + [ 5.9886299, 46.1714839 ], + [ 5.9887292, 46.1716549 ], + [ 5.9888079, 46.171831 ], + [ 5.9888656, 46.1720109 ], + [ 5.9889019, 46.1721936 ], + [ 5.9890517, 46.1732729 ], + [ 5.9891157, 46.173596 ], + [ 5.9892168, 46.1739145 ], + [ 5.9893546, 46.1742263 ], + [ 5.9899757, 46.175454 ], + [ 5.9900884, 46.1756494 ], + [ 5.9902246, 46.1758374 ], + [ 5.9903832999999995, 46.1760167 ], + [ 5.9905634, 46.176186 ], + [ 5.9907636, 46.176344 ], + [ 5.9909823, 46.1764896 ], + [ 5.9912181, 46.1766218 ], + [ 5.9914692, 46.1767396 ], + [ 5.9917334, 46.1768419 ], + [ 5.9914205, 46.1771617 ], + [ 5.9914609, 46.1771819 ], + [ 5.9914511, 46.1772057 ], + [ 5.9914229, 46.1772395 ], + [ 5.9913626, 46.1772781 ], + [ 5.9913205, 46.1773003 ], + [ 5.9912643, 46.1773128 ], + [ 5.991236, 46.1773226 ], + [ 5.9912173, 46.1773244 ], + [ 5.9911255, 46.1773048 ], + [ 5.9908885, 46.1773127 ], + [ 5.990818, 46.1773281 ], + [ 5.9907767, 46.1773446 ], + [ 5.9904317, 46.177533 ], + [ 5.990415, 46.1775465 ], + [ 5.9904054, 46.1775612 ], + [ 5.9904032, 46.1775783 ], + [ 5.9904097, 46.1775976 ], + [ 5.9904257, 46.1776127 ], + [ 5.9905818, 46.1777114 ], + [ 5.9906077, 46.1777437 ], + [ 5.9906267, 46.1777589 ], + [ 5.9906649, 46.1777816 ], + [ 5.9907335, 46.1778603 ], + [ 5.9909222, 46.1779584 ], + [ 5.990975, 46.1780137 ], + [ 5.9909806, 46.1780533 ], + [ 5.9910296, 46.1781596 ], + [ 5.9910495, 46.1781848 ], + [ 5.9910548, 46.1781999 ], + [ 5.9911064, 46.1782789 ], + [ 5.9911587, 46.1783331 ], + [ 5.9911649, 46.1783625 ], + [ 5.9911791, 46.1783953 ], + [ 5.9911927, 46.1784628 ], + [ 5.9912154, 46.1785071 ], + [ 5.9912566, 46.1785445 ], + [ 5.9912689, 46.1785803 ], + [ 5.9913071, 46.1786199 ], + [ 5.9913267, 46.1786554 ], + [ 5.9913184, 46.1787552 ], + [ 5.9913022, 46.17877 ], + [ 5.9912852, 46.1788242 ], + [ 5.9912602, 46.1788627 ], + [ 5.9912514, 46.178891 ], + [ 5.9912647, 46.1789389 ], + [ 5.9912799, 46.1789499 ], + [ 5.9913232, 46.1789553 ], + [ 5.9914334, 46.1789306 ], + [ 5.9914738, 46.1789394 ], + [ 5.9915147, 46.1790293 ], + [ 5.9915455, 46.179056 ], + [ 5.9915713, 46.1790671 ], + [ 5.9916037, 46.1790753 ], + [ 5.9916211, 46.179086 ], + [ 5.9916462, 46.1790908 ], + [ 5.9917095, 46.1790904 ], + [ 5.9917748, 46.1790721 ], + [ 5.9917917, 46.1790631 ], + [ 5.9918567, 46.179046 ], + [ 5.9919082, 46.179066 ], + [ 5.9919283, 46.1790836 ], + [ 5.9919449, 46.1791287 ], + [ 5.9919388, 46.1791419 ], + [ 5.9919614, 46.1791997 ], + [ 5.9919932, 46.1792142 ], + [ 5.9920443, 46.1792165 ], + [ 5.9921319, 46.1791911 ], + [ 5.9921512, 46.1791715 ], + [ 5.9921425, 46.1790849 ], + [ 5.9921849, 46.1790538 ], + [ 5.9922181, 46.1790429 ], + [ 5.9922507, 46.1790514 ], + [ 5.9922682, 46.1790633 ], + [ 5.9922802, 46.1790945 ], + [ 5.9923261, 46.1791815 ], + [ 5.9923646, 46.1792282 ], + [ 5.9924188, 46.1792585 ], + [ 5.9924317, 46.1792741 ], + [ 5.9924859, 46.1793085 ], + [ 5.9925758, 46.1793573 ], + [ 5.9926253, 46.1794048 ], + [ 5.9926651, 46.1794541 ], + [ 5.9927255, 46.1794768 ], + [ 5.9927464, 46.179493 ], + [ 5.9927554999999995, 46.1795177 ], + [ 5.992773, 46.1795356 ], + [ 5.9928104, 46.1796139 ], + [ 5.9928481, 46.1796394 ], + [ 5.9928808, 46.1796463 ], + [ 5.9929252, 46.1797058 ], + [ 5.9929413, 46.1797454 ], + [ 5.9930299, 46.1797859 ], + [ 5.9930764, 46.1798245 ], + [ 5.9930934, 46.1798479 ], + [ 5.9930944, 46.1798607 ], + [ 5.9931072, 46.1798718 ], + [ 5.9931185, 46.1798755 ], + [ 5.9931341, 46.1799009 ], + [ 5.9931342999999995, 46.1799226 ], + [ 5.9931753, 46.1800151 ], + [ 5.9933, 46.1801483 ], + [ 5.9933609, 46.18016 ], + [ 5.9933957, 46.1801979 ], + [ 5.9933995, 46.180249 ], + [ 5.9934203, 46.1802734 ], + [ 5.9934283, 46.180296 ], + [ 5.9934754, 46.1803287 ], + [ 5.9935203, 46.1803804 ], + [ 5.9935431999999995, 46.1804542 ], + [ 5.9935676, 46.1804813 ], + [ 5.9936103, 46.1804955 ], + [ 5.9936335, 46.1805097 ], + [ 5.9936454999999995, 46.1805431 ], + [ 5.9936795, 46.1805616 ], + [ 5.9937254, 46.180574 ], + [ 5.9937941, 46.180587 ], + [ 5.9938336, 46.1805871 ], + [ 5.9938642, 46.1805808 ], + [ 5.9938816, 46.180595 ], + [ 5.9939238, 46.180656 ], + [ 5.9939306, 46.1806853 ], + [ 5.9939246, 46.1806991 ], + [ 5.9939443, 46.1807385 ], + [ 5.9939883, 46.1807638 ], + [ 5.9939982, 46.1808071 ], + [ 5.9940088, 46.1808341 ], + [ 5.994076, 46.180881 ], + [ 5.9941534, 46.180884 ], + [ 5.9941803, 46.1809088 ], + [ 5.9941926, 46.1809306 ], + [ 5.9942106, 46.1809499 ], + [ 5.9942326, 46.181003 ], + [ 5.9942668999999995, 46.1810562 ], + [ 5.9943689, 46.1811092 ], + [ 5.9944533, 46.1811712 ], + [ 5.9944546, 46.1811993 ], + [ 5.9944954, 46.181243 ], + [ 5.9945241, 46.1812519 ], + [ 5.9945628, 46.1812841 ], + [ 5.9946107, 46.1813055 ], + [ 5.9946261, 46.181316699999996 ], + [ 5.994626, 46.1813385 ], + [ 5.9946477, 46.1813567 ], + [ 5.9946863, 46.1813976 ], + [ 5.9946886, 46.1814122 ], + [ 5.9946995, 46.1814232 ], + [ 5.9947038, 46.1814553 ], + [ 5.9947155, 46.1814857 ], + [ 5.9947107, 46.1815119 ], + [ 5.9947216999999995, 46.1815245 ], + [ 5.9947146, 46.1815797 ], + [ 5.9947074, 46.1816039 ], + [ 5.9947221, 46.1816255 ], + [ 5.9947209, 46.1816385 ], + [ 5.9947469, 46.1816679 ], + [ 5.9947672999999995, 46.1816833 ], + [ 5.9947823, 46.1817092 ], + [ 5.9948353, 46.1817747 ], + [ 5.9949051, 46.181807 ], + [ 5.9949119, 46.1818394 ], + [ 5.9948649, 46.1818874 ], + [ 5.9948602, 46.1819283 ], + [ 5.9948753, 46.1819508 ], + [ 5.9948763, 46.1819634 ], + [ 5.9948882999999995, 46.181987 ], + [ 5.9948822, 46.181999 ], + [ 5.9948815, 46.1820138 ], + [ 5.9948958, 46.1820323 ], + [ 5.994895, 46.182077 ], + [ 5.9948685, 46.1821007 ], + [ 5.9948558, 46.1821315 ], + [ 5.994878, 46.1821509 ], + [ 5.9948811, 46.182199 ], + [ 5.9948704, 46.1822188 ], + [ 5.9948774, 46.1822609 ], + [ 5.9948692999999995, 46.1822879 ], + [ 5.9948595000000005, 46.1822972 ], + [ 5.9948663, 46.1823306 ], + [ 5.994882, 46.1823629 ], + [ 5.9948969, 46.1823791 ], + [ 5.9948822, 46.1824205 ], + [ 5.9948871, 46.1824423 ], + [ 5.9948765, 46.1824852 ], + [ 5.994872, 46.1825242 ], + [ 5.9948851, 46.1825549 ], + [ 5.994882, 46.1825692 ], + [ 5.994889, 46.182606 ], + [ 5.994924, 46.1826456 ], + [ 5.9949058, 46.1826794 ], + [ 5.9949265, 46.1827036 ], + [ 5.9949422, 46.1827687 ], + [ 5.9949601999999995, 46.1827826 ], + [ 5.9949962, 46.182834 ], + [ 5.9949917, 46.1828787 ], + [ 5.9949426, 46.182915 ], + [ 5.9949202, 46.1829396 ], + [ 5.9949127, 46.1829549 ], + [ 5.9949221, 46.1829686 ], + [ 5.9949266, 46.182987 ], + [ 5.9949352, 46.1829922 ], + [ 5.9949522, 46.183012 ], + [ 5.9949451, 46.1830184 ], + [ 5.994937, 46.1830347 ], + [ 5.9949137, 46.1830584 ], + [ 5.9948951, 46.1830696 ], + [ 5.9948662, 46.1830783 ], + [ 5.9948178, 46.1830881 ], + [ 5.9947921, 46.1831043 ], + [ 5.9947372, 46.1831111 ], + [ 5.9947201, 46.1831215 ], + [ 5.9947075, 46.1831534 ], + [ 5.9946932, 46.1831555 ], + [ 5.9946718, 46.1831828 ], + [ 5.994632, 46.1832143 ], + [ 5.9945939, 46.1832822 ], + [ 5.9945623999999995, 46.1832933 ], + [ 5.9945382, 46.1833105 ], + [ 5.9945301, 46.1833231 ], + [ 5.9944679999999995, 46.1833591 ], + [ 5.9944595, 46.1833831 ], + [ 5.9943698, 46.1834296 ], + [ 5.9943393, 46.183464 ], + [ 5.9942624, 46.1834977 ], + [ 5.9941759, 46.1835485 ], + [ 5.9941309, 46.1835647 ], + [ 5.9940898, 46.1835911 ], + [ 5.9940728, 46.1835925 ], + [ 5.9940363, 46.1836028 ], + [ 5.9940116, 46.1836234 ], + [ 5.9939143, 46.1836765 ], + [ 5.993867, 46.1836782 ], + [ 5.9938576, 46.1836917 ], + [ 5.9938588, 46.1837169 ], + [ 5.9937973, 46.1837434 ], + [ 5.993748, 46.1837803 ], + [ 5.993748, 46.1838083 ], + [ 5.9937423, 46.1838237 ], + [ 5.9936792, 46.1838544 ], + [ 5.9936041, 46.1839283 ], + [ 5.9934882, 46.1839772 ], + [ 5.9933823, 46.1840434 ], + [ 5.9932969, 46.1842032 ], + [ 5.993302, 46.1842957 ], + [ 5.9932813, 46.1843216 ], + [ 5.9932788, 46.1843623 ], + [ 5.9932576, 46.1844213 ], + [ 5.9932392, 46.1845063 ], + [ 5.9932158, 46.1845295 ], + [ 5.9931193, 46.1846602 ], + [ 5.9929806, 46.1848037 ], + [ 5.9929313, 46.1848971 ], + [ 5.9929012, 46.1849221 ], + [ 5.9928698, 46.18498 ], + [ 5.9928501, 46.1850575 ], + [ 5.9928141, 46.1850974 ], + [ 5.9927638, 46.1851386 ], + [ 5.9927436, 46.1851635 ], + [ 5.9927531, 46.1852003 ], + [ 5.9927419, 46.1852421 ], + [ 5.9927535, 46.1852925 ], + [ 5.9927442, 46.1853188 ], + [ 5.9927033, 46.185386 ], + [ 5.992697, 46.1854077 ], + [ 5.9926413, 46.1854712 ], + [ 5.9924679, 46.1855736 ], + [ 5.9922229, 46.1865474 ], + [ 5.9914363, 46.1870844 ], + [ 5.9902981, 46.1878037 ], + [ 5.9896848, 46.1878435 ], + [ 5.989616, 46.1878395 ], + [ 5.9895344, 46.1878119 ], + [ 5.9894595, 46.1878017 ], + [ 5.9894034, 46.187759 ], + [ 5.9893569, 46.1877491 ], + [ 5.9893152, 46.187719799999996 ], + [ 5.9891775, 46.187696 ], + [ 5.9890622, 46.1876522 ], + [ 5.9889989, 46.187682 ], + [ 5.9889018, 46.1876636 ], + [ 5.9888473, 46.1876741 ], + [ 5.9888297999999995, 46.1876664 ], + [ 5.9888029, 46.1876646 ], + [ 5.9887821, 46.1876765 ], + [ 5.9887549, 46.1876727 ], + [ 5.9886526, 46.1877049 ], + [ 5.9886392, 46.187696 ], + [ 5.9886182, 46.187727 ], + [ 5.988553, 46.1877378 ], + [ 5.9885028, 46.1877327 ], + [ 5.9884575, 46.1877736 ], + [ 5.9883208, 46.1878217 ], + [ 5.9879232, 46.1879437 ], + [ 5.9849267, 46.1886662 ], + [ 5.9849089, 46.1886589 ], + [ 5.9848827, 46.1886656 ], + [ 5.9847717, 46.1886758 ], + [ 5.9847171, 46.1886718 ], + [ 5.984596, 46.1886941 ], + [ 5.9845613, 46.1887156 ], + [ 5.9844592, 46.1887551 ], + [ 5.9842819, 46.1887809 ], + [ 5.9842040999999995, 46.1888171 ], + [ 5.9840631, 46.1888475 ], + [ 5.9838127, 46.1888712 ], + [ 5.9836726, 46.1889334 ], + [ 5.9836333, 46.1889945 ], + [ 5.9835872, 46.1890162 ], + [ 5.9832808, 46.1892734 ], + [ 5.9819604, 46.1900239 ], + [ 5.9828166, 46.1907706 ], + [ 5.9773122999999995, 46.1924581 ], + [ 5.9759123, 46.1928831 ], + [ 5.9718689, 46.1941813 ], + [ 5.9706178, 46.1946187 ], + [ 5.9673691, 46.195747 ], + [ 5.9637276, 46.1970065 ], + [ 5.9637378, 46.1970399 ], + [ 5.9637613, 46.1970448 ], + [ 5.9638328, 46.1970873 ], + [ 5.9638035, 46.1971035 ], + [ 5.9637554, 46.1971574 ], + [ 5.9637584, 46.1972046 ], + [ 5.9638435, 46.1972771 ], + [ 5.9638743, 46.1972992 ], + [ 5.9639592, 46.1973335 ], + [ 5.9639673, 46.1973523 ], + [ 5.9639605, 46.197363 ], + [ 5.9638648, 46.1973942 ], + [ 5.9638531, 46.1974274 ], + [ 5.9639069, 46.1974533 ], + [ 5.9639281, 46.1974706 ], + [ 5.9639403, 46.1974894 ], + [ 5.9639669, 46.1975041 ], + [ 5.96403, 46.1975262 ], + [ 5.9640568, 46.1975478 ], + [ 5.9640743, 46.197566 ], + [ 5.9640845, 46.1975823 ], + [ 5.9641032, 46.1976379 ], + [ 5.9640768, 46.1976567 ], + [ 5.9640594, 46.1976785 ], + [ 5.9640554, 46.1976925 ], + [ 5.9640668, 46.1977195 ], + [ 5.9640826, 46.1977229 ], + [ 5.9640945, 46.1977216 ], + [ 5.964163, 46.1977003 ], + [ 5.9641646, 46.1976887 ], + [ 5.9641788, 46.1976737 ], + [ 5.9642264, 46.1976849 ], + [ 5.9642598, 46.1977445 ], + [ 5.9642519, 46.1977876 ], + [ 5.9642586, 46.1978156 ], + [ 5.9642838, 46.1978425 ], + [ 5.9643145, 46.197851 ], + [ 5.9643552, 46.1978751 ], + [ 5.9644193, 46.1979233 ], + [ 5.964458, 46.1979612 ], + [ 5.9644665, 46.197996 ], + [ 5.9644569, 46.1980455 ], + [ 5.9644686, 46.1980615 ], + [ 5.9644812, 46.1981035 ], + [ 5.9644835, 46.1981178 ], + [ 5.9644787, 46.1981326 ], + [ 5.9645113, 46.1981859 ], + [ 5.9645700999999995, 46.1982105 ], + [ 5.9646305, 46.1982187 ], + [ 5.9646484, 46.1982357 ], + [ 5.9646506, 46.1982823 ], + [ 5.9646305, 46.1983109 ], + [ 5.9645963, 46.1983309 ], + [ 5.9645897, 46.198344 ], + [ 5.9645953, 46.1983892 ], + [ 5.9646253, 46.1983932 ], + [ 5.9646559, 46.198412 ], + [ 5.9646611, 46.1984737 ], + [ 5.9646512, 46.1985039 ], + [ 5.9646402, 46.1985231 ], + [ 5.9646506, 46.1985761 ], + [ 5.9646674, 46.1986017 ], + [ 5.9646696, 46.1987108 ], + [ 5.9646566, 46.1987911 ], + [ 5.9646788, 46.1988232 ], + [ 5.9647454, 46.1988685 ], + [ 5.9648637, 46.1989687 ], + [ 5.9649394000000004, 46.1989932 ], + [ 5.9649736, 46.1989863 ], + [ 5.9649999, 46.1989945 ], + [ 5.9650967, 46.1990064 ], + [ 5.9651568, 46.1989949 ], + [ 5.9651891, 46.1990062 ], + [ 5.9652385, 46.1990319 ], + [ 5.9652818, 46.1991116 ], + [ 5.965408, 46.1992946 ], + [ 5.9654443, 46.1993261 ], + [ 5.9654647, 46.1993611 ], + [ 5.9655448, 46.1994617 ], + [ 5.9656353, 46.1995323 ], + [ 5.9657376, 46.1995673 ], + [ 5.9659153, 46.1996435 ], + [ 5.9660485, 46.1996871 ], + [ 5.9660914, 46.1996929 ], + [ 5.9662324, 46.199638 ], + [ 5.9662444, 46.1996269 ], + [ 5.9662762, 46.1996293 ], + [ 5.9663009, 46.1996448 ], + [ 5.966354, 46.1996902 ], + [ 5.9663937, 46.199713 ], + [ 5.9664604, 46.1997592 ], + [ 5.9664836, 46.1997794 ], + [ 5.9665862, 46.1998181 ], + [ 5.9666341, 46.1998402 ], + [ 5.9666771999999995, 46.1998773 ], + [ 5.9666989, 46.1999151 ], + [ 5.9667033, 46.1999415 ], + [ 5.9667445, 46.1999841 ], + [ 5.966781, 46.2000033 ], + [ 5.9668551, 46.1999997 ], + [ 5.9668725, 46.1999932 ], + [ 5.9669366, 46.1999405 ], + [ 5.9669641, 46.1999241 ], + [ 5.9670274, 46.1998782 ], + [ 5.9671427, 46.199887 ], + [ 5.9672667, 46.1999432 ], + [ 5.9673332, 46.2000377 ], + [ 5.9674096, 46.2001001 ], + [ 5.9674911999999996, 46.2001312 ], + [ 5.9675545, 46.2001789 ], + [ 5.9675443999999995, 46.2002355 ], + [ 5.9675286, 46.2002542 ], + [ 5.9675556, 46.2002724 ], + [ 5.9675927, 46.2002821 ], + [ 5.9677502, 46.200235 ], + [ 5.9677633, 46.2002046 ], + [ 5.9677467, 46.2001343 ], + [ 5.9677787, 46.2001081 ], + [ 5.967822, 46.2000935 ], + [ 5.9678942, 46.2001159 ], + [ 5.9679465, 46.2001487 ], + [ 5.9679866, 46.2002083 ], + [ 5.9680175, 46.2002365 ], + [ 5.9680494, 46.2002443 ], + [ 5.9681223, 46.2002464 ], + [ 5.9681285, 46.2002026 ], + [ 5.9681169, 46.2001603 ], + [ 5.9681318999999995, 46.2000228 ], + [ 5.9681799, 46.2000159 ], + [ 5.9682122, 46.2000175 ], + [ 5.9682451, 46.200038 ], + [ 5.9683108, 46.2001167 ], + [ 5.9683483, 46.2001415 ], + [ 5.9684428, 46.2001867 ], + [ 5.9685289, 46.2002175 ], + [ 5.9686224, 46.2002668 ], + [ 5.968657, 46.2003079 ], + [ 5.9686957, 46.2003666 ], + [ 5.9687176, 46.2004371 ], + [ 5.9687241, 46.2005104 ], + [ 5.9687324, 46.2005405 ], + [ 5.9687261, 46.200607 ], + [ 5.9687503, 46.2006319 ], + [ 5.9687851, 46.2006368 ], + [ 5.9690065, 46.2005564 ], + [ 5.9690476, 46.2005216 ], + [ 5.9691044, 46.2005139 ], + [ 5.9691595, 46.2005332 ], + [ 5.9691939, 46.2005835 ], + [ 5.9691773, 46.2007112 ], + [ 5.9691839, 46.2007601 ], + [ 5.9692108, 46.2008046 ], + [ 5.9692573, 46.2009059 ], + [ 5.9692723999999995, 46.2009515 ], + [ 5.9692827, 46.2009982 ], + [ 5.9692748, 46.2010724 ], + [ 5.9692525, 46.2011258 ], + [ 5.9692351, 46.2011922 ], + [ 5.9692461, 46.2012191 ], + [ 5.9692969, 46.2012321 ], + [ 5.9693469, 46.2012259 ], + [ 5.9693781, 46.2012093 ], + [ 5.9694739, 46.2011812 ], + [ 5.9695333999999995, 46.201156 ], + [ 5.969575, 46.2011014 ], + [ 5.9696812, 46.2010705 ], + [ 5.9697098, 46.2010348 ], + [ 5.9697652, 46.201041 ], + [ 5.9698344, 46.2011559 ], + [ 5.9699525, 46.2012026 ], + [ 5.9700286, 46.201221 ], + [ 5.9701251, 46.201283 ], + [ 5.9701958, 46.2013525 ], + [ 5.9702253, 46.2013773 ], + [ 5.9702953999999995, 46.2014258 ], + [ 5.970321, 46.2014501 ], + [ 5.9703634999999995, 46.201469 ], + [ 5.970395, 46.2014764 ], + [ 5.9704515, 46.2014645 ], + [ 5.970467, 46.2014702 ], + [ 5.9704822, 46.2015116 ], + [ 5.9704552, 46.201625 ], + [ 5.9704783, 46.2016887 ], + [ 5.970518, 46.201726 ], + [ 5.9705896, 46.2017085 ], + [ 5.9706154, 46.2016743 ], + [ 5.9708193, 46.201591 ], + [ 5.9708427, 46.2015641 ], + [ 5.9708875, 46.2015407 ], + [ 5.9709606, 46.2015403 ], + [ 5.9710168, 46.2015648 ], + [ 5.971039, 46.2016169 ], + [ 5.9710772, 46.2016444 ], + [ 5.9711203, 46.2016501 ], + [ 5.9711822, 46.2016414 ], + [ 5.9713549, 46.2015702 ], + [ 5.9714271, 46.2015909 ], + [ 5.9715278, 46.2015903 ], + [ 5.9715708, 46.2016112 ], + [ 5.9716552, 46.2016731 ], + [ 5.9717082999999995, 46.2017023 ], + [ 5.971766, 46.2017689 ], + [ 5.9719701, 46.2019659 ], + [ 5.9720404, 46.2020858 ], + [ 5.9720916, 46.2021316 ], + [ 5.972107, 46.2021552 ], + [ 5.97215, 46.2021821 ], + [ 5.9722029, 46.2021828 ], + [ 5.9722301, 46.2021634 ], + [ 5.9722401, 46.2021621 ], + [ 5.9722791, 46.2021655 ], + [ 5.9723071999999995, 46.2021614 ], + [ 5.9723203, 46.2021303 ], + [ 5.9723652, 46.202117 ], + [ 5.9724183, 46.2021256 ], + [ 5.9724626999999995, 46.2021274 ], + [ 5.9726224, 46.202159 ], + [ 5.9726835, 46.2021736 ], + [ 5.9727383, 46.2021949 ], + [ 5.972728, 46.2022409 ], + [ 5.972718, 46.2022512 ], + [ 5.9726834, 46.2022703 ], + [ 5.972641, 46.2022601 ], + [ 5.972604, 46.2022646 ], + [ 5.9725705, 46.2022849 ], + [ 5.9725605999999996, 46.2023112 ], + [ 5.9725544, 46.2023538 ], + [ 5.9725317, 46.2023803 ], + [ 5.9725421999999995, 46.2024022 ], + [ 5.9725968, 46.2024162 ], + [ 5.972651, 46.2024233 ], + [ 5.9727795, 46.2024125 ], + [ 5.9728058, 46.2024131 ], + [ 5.9728737, 46.2024198 ], + [ 5.9730032, 46.2024393 ], + [ 5.9730887, 46.2024589 ], + [ 5.9732520000000005, 46.2024914 ], + [ 5.9732644, 46.2024915 ], + [ 5.9733932, 46.2025336 ], + [ 5.9734299, 46.2025752 ], + [ 5.9734437, 46.2026281 ], + [ 5.9733996, 46.2026861 ], + [ 5.973397, 46.2027096 ], + [ 5.9734308, 46.2027357 ], + [ 5.9734853, 46.20275 ], + [ 5.9735182, 46.2027778 ], + [ 5.9734437, 46.2028163 ], + [ 5.9733903999999995, 46.2028345 ], + [ 5.973278, 46.2028608 ], + [ 5.9732529, 46.2029313 ], + [ 5.9732074, 46.202973 ], + [ 5.9731552, 46.2029907 ], + [ 5.9731026, 46.2030219 ], + [ 5.9730527, 46.2030877 ], + [ 5.9730359, 46.2031724 ], + [ 5.9729928, 46.2032316 ], + [ 5.9729186, 46.2032552 ], + [ 5.9728858, 46.2032896 ], + [ 5.9728311, 46.2033278 ], + [ 5.9727823, 46.2033398 ], + [ 5.9727757, 46.2033557 ], + [ 5.9727813, 46.2033723 ], + [ 5.9728131, 46.2034013 ], + [ 5.9728364, 46.2034129 ], + [ 5.9728747, 46.2034437 ], + [ 5.9728823, 46.2034627 ], + [ 5.972876, 46.203484 ], + [ 5.9728476, 46.2035014 ], + [ 5.972835, 46.2035206 ], + [ 5.9728316, 46.2036002 ], + [ 5.9728088, 46.2036172 ], + [ 5.9726951, 46.2036508 ], + [ 5.9726627, 46.2036568 ], + [ 5.9726194, 46.2036814 ], + [ 5.9725793, 46.2036963 ], + [ 5.9725522, 46.2037152 ], + [ 5.9724974, 46.2037411 ], + [ 5.9723777, 46.2037656 ], + [ 5.9723439, 46.2037889 ], + [ 5.9721767, 46.203851 ], + [ 5.972082, 46.2038567 ], + [ 5.9720227, 46.2038792 ], + [ 5.9719472, 46.2039342 ], + [ 5.9719207, 46.2039664 ], + [ 5.9719103, 46.2039961 ], + [ 5.9718883, 46.2040158 ], + [ 5.9717609, 46.2040817 ], + [ 5.9717101, 46.2041296 ], + [ 5.9716313, 46.204175 ], + [ 5.9715931, 46.2041883 ], + [ 5.9715239, 46.2042541 ], + [ 5.9714107, 46.2042789 ], + [ 5.9713560999999995, 46.2043257 ], + [ 5.9712092, 46.2043327 ], + [ 5.9711167, 46.204298 ], + [ 5.9709269, 46.2043303 ], + [ 5.9708448, 46.2043652 ], + [ 5.9707455, 46.2043834 ], + [ 5.970751, 46.2044066 ], + [ 5.9707503, 46.2044304 ], + [ 5.970732, 46.2044493 ], + [ 5.9707125, 46.2044561 ], + [ 5.9706835, 46.2044553 ], + [ 5.9706553, 46.204461 ], + [ 5.9706491, 46.2045054 ], + [ 5.9706604, 46.2045508 ], + [ 5.9706765, 46.2045919 ], + [ 5.9707471, 46.2046693 ], + [ 5.9707639, 46.2047018 ], + [ 5.970732, 46.2047486 ], + [ 5.9707224, 46.2047815 ], + [ 5.9707253, 46.2048108 ], + [ 5.9708176, 46.2048774 ], + [ 5.9708246, 46.2049047 ], + [ 5.9708184, 46.2049234 ], + [ 5.9707796, 46.2049523 ], + [ 5.9707027, 46.2049745 ], + [ 5.9706329, 46.2050021 ], + [ 5.970588, 46.2050297 ], + [ 5.9705657, 46.2050523 ], + [ 5.9705272, 46.2050784 ], + [ 5.9704975, 46.2050918 ], + [ 5.9704708, 46.2051109 ], + [ 5.970434, 46.2051222 ], + [ 5.9703531, 46.2051668 ], + [ 5.9702619, 46.2052028 ], + [ 5.97022, 46.2052238 ], + [ 5.9701871, 46.2052629 ], + [ 5.9701863, 46.2053023 ], + [ 5.97016, 46.2053707 ], + [ 5.970145, 46.2053956 ], + [ 5.9700985, 46.2055102 ], + [ 5.9700903, 46.2055378 ], + [ 5.9700898, 46.2055772 ], + [ 5.9700385, 46.2056767 ], + [ 5.9699582, 46.2057671 ], + [ 5.9699173, 46.2058488 ], + [ 5.9698147, 46.2058926 ], + [ 5.969791, 46.2059422 ], + [ 5.969774, 46.2059692 ], + [ 5.9697603, 46.2060136 ], + [ 5.9697467, 46.2060426 ], + [ 5.9697254, 46.206076 ], + [ 5.9696725, 46.2060989 ], + [ 5.9696566, 46.2061262 ], + [ 5.9696329, 46.2061423 ], + [ 5.9695933, 46.2062025 ], + [ 5.9695909, 46.2062308 ], + [ 5.969554, 46.206314 ], + [ 5.9694997999999995, 46.2063425 ], + [ 5.9694266, 46.2063597 ], + [ 5.9694153, 46.206390999999996 ], + [ 5.9694281, 46.2064496 ], + [ 5.9694123999999995, 46.2064654 ], + [ 5.9693977, 46.2064876 ], + [ 5.9693908, 46.2065119 ], + [ 5.9693769, 46.2065352 ], + [ 5.9693393, 46.2065699 ], + [ 5.9693145, 46.2065879 ], + [ 5.9692725, 46.2066092 ], + [ 5.9692544, 46.2066268 ], + [ 5.9692548, 46.2066719 ], + [ 5.969263, 46.2066912 ], + [ 5.9695386, 46.206966 ], + [ 5.9699745, 46.2078093 ], + [ 5.9703174, 46.2084318 ], + [ 5.9710099, 46.2099288 ], + [ 5.9716422, 46.2113129 ], + [ 5.9733579, 46.2137156 ], + [ 5.9746754, 46.2150265 ], + [ 5.9785062, 46.2169383 ], + [ 5.9791723, 46.2172519 ], + [ 5.9792322, 46.2172358 ], + [ 5.9793252, 46.2172359 ], + [ 5.9793599, 46.2172417 ], + [ 5.9794829, 46.2172304 ], + [ 5.9795765, 46.2171488 ], + [ 5.9797978, 46.217099 ], + [ 5.9799818, 46.2170135 ], + [ 5.9800981, 46.2169805 ], + [ 5.9802026999999995, 46.2170031 ], + [ 5.9802335, 46.2170713 ], + [ 5.980249, 46.2171577 ], + [ 5.9803074, 46.2172099 ], + [ 5.9803637, 46.2172062 ], + [ 5.9804673, 46.2172121 ], + [ 5.9805227, 46.2172359 ], + [ 5.9805858, 46.2172296 ], + [ 5.9806884, 46.2171618 ], + [ 5.9808677, 46.2171864 ], + [ 5.9809006, 46.2172038 ], + [ 5.9810479999999995, 46.2172388 ], + [ 5.9810838, 46.2172401 ], + [ 5.9811573, 46.2172286 ], + [ 5.9812560999999995, 46.2171961 ], + [ 5.9813219, 46.2171513 ], + [ 5.9814809, 46.2170973 ], + [ 5.9815275, 46.2171001 ], + [ 5.9816467, 46.2170458 ], + [ 5.981695, 46.2170419 ], + [ 5.981755, 46.217031 ], + [ 5.9818516, 46.2170337 ], + [ 5.9819154999999995, 46.217022 ], + [ 5.9820946, 46.2170121 ], + [ 5.982171, 46.2169839 ], + [ 5.9822246, 46.216996 ], + [ 5.9823338, 46.2169726 ], + [ 5.9823794, 46.21695 ], + [ 5.9824417, 46.216911 ], + [ 5.9825365999999995, 46.2169049 ], + [ 5.9826741, 46.2169282 ], + [ 5.9828235, 46.2168767 ], + [ 5.982906, 46.2168611 ], + [ 5.9829982, 46.2168568 ], + [ 5.9831536, 46.2168698 ], + [ 5.983404, 46.2169049 ], + [ 5.9835396, 46.2169015 ], + [ 5.9836227, 46.2169149 ], + [ 5.9837074, 46.2169903 ], + [ 5.9837809, 46.2170973 ], + [ 5.9838036, 46.2171113 ], + [ 5.9838629999999995, 46.2171084 ], + [ 5.98393, 46.2170959 ], + [ 5.9839686, 46.2171047 ], + [ 5.9839953, 46.2171199 ], + [ 5.9840260999999995, 46.2171952 ], + [ 5.9840518, 46.2172193 ], + [ 5.9841176, 46.2172192 ], + [ 5.9841359, 46.2172064 ], + [ 5.9841816, 46.2171897 ], + [ 5.9842176, 46.2171494 ], + [ 5.9842715, 46.2171313 ], + [ 5.9843386, 46.2170889 ], + [ 5.9843369, 46.2170313 ], + [ 5.9843208, 46.2169654 ], + [ 5.9843551, 46.2169192 ], + [ 5.9844903, 46.2168547 ], + [ 5.9845739, 46.216873 ], + [ 5.9846449, 46.2169849 ], + [ 5.9846338, 46.2170633 ], + [ 5.9846526, 46.2171044 ], + [ 5.9847171, 46.2171295 ], + [ 5.9847786, 46.2171304 ], + [ 5.9848269, 46.2170894 ], + [ 5.9849089, 46.2169882 ], + [ 5.9849785, 46.2169551 ], + [ 5.985087, 46.2169492 ], + [ 5.9851376, 46.2169606 ], + [ 5.9851878, 46.2169447 ], + [ 5.9852469, 46.2169367 ], + [ 5.9853109, 46.2169186 ], + [ 5.985478, 46.2169 ], + [ 5.9855584, 46.2169012 ], + [ 5.9856443, 46.2168462 ], + [ 5.985734, 46.2167632 ], + [ 5.9858088, 46.2167596 ], + [ 5.9859398, 46.2167902 ], + [ 5.9860515, 46.216841 ], + [ 5.9861312, 46.2168435 ], + [ 5.9862076, 46.2168109 ], + [ 5.9862902, 46.2167921 ], + [ 5.9864297, 46.2167851 ], + [ 5.9866364, 46.2167881 ], + [ 5.9867642, 46.216738 ], + [ 5.9868656, 46.2166648 ], + [ 5.9870004, 46.2166823 ], + [ 5.9871308, 46.216727 ], + [ 5.9873981, 46.2167416 ], + [ 5.9874548999999995, 46.2167235 ], + [ 5.9875342, 46.2167119 ], + [ 5.9876423, 46.216665 ], + [ 5.9876979, 46.216589 ], + [ 5.9877269, 46.2165281 ], + [ 5.9877736, 46.2164867 ], + [ 5.9878537, 46.2164537 ], + [ 5.9879065, 46.2164724 ], + [ 5.9880551, 46.2164547 ], + [ 5.9881388, 46.2164152 ], + [ 5.9881963, 46.2164049 ], + [ 5.9882549, 46.2163738 ], + [ 5.9883795, 46.2162613 ], + [ 5.988475, 46.216205 ], + [ 5.9885814, 46.2161744 ], + [ 5.9886296, 46.2161445 ], + [ 5.9888109, 46.2160862 ], + [ 5.9888995, 46.216072 ], + [ 5.9889395, 46.2160762 ], + [ 5.9889875, 46.2160741 ], + [ 5.9890639, 46.2160892 ], + [ 5.9891395, 46.216117 ], + [ 5.9892282, 46.2161317 ], + [ 5.9893631, 46.2161634 ], + [ 5.9895405, 46.2161683 ], + [ 5.9896477, 46.2161958 ], + [ 5.989703, 46.2161997 ], + [ 5.9897361, 46.2161848 ], + [ 5.9898763, 46.2160368 ], + [ 5.9899088, 46.2159867 ], + [ 5.9899927, 46.215928 ], + [ 5.9900476, 46.215899 ], + [ 5.9901029, 46.2158967 ], + [ 5.9901386, 46.2159087 ], + [ 5.9901883, 46.2159386 ], + [ 5.9902356999999995, 46.2159532 ], + [ 5.990296, 46.2159556 ], + [ 5.9903555, 46.2159368 ], + [ 5.9905112, 46.215854 ], + [ 5.990539, 46.2158179 ], + [ 5.9906017, 46.2157876 ], + [ 5.9907025, 46.215758 ], + [ 5.9908142, 46.2157674 ], + [ 5.9908938, 46.2157982 ], + [ 5.9910271, 46.2158334 ], + [ 5.9911598999999995, 46.2158289 ], + [ 5.9912036, 46.2158202 ], + [ 5.9912482, 46.2157936 ], + [ 5.9912791, 46.2157484 ], + [ 5.9912875, 46.2157026 ], + [ 5.9913136, 46.2156368 ], + [ 5.9913335, 46.2156146 ], + [ 5.991422, 46.2154828 ], + [ 5.9914784999999995, 46.2154617 ], + [ 5.9915258, 46.2154521 ], + [ 5.9916192, 46.215463 ], + [ 5.9917234, 46.2154903 ], + [ 5.9917827, 46.21551 ], + [ 5.9918567, 46.2155284 ], + [ 5.9918933, 46.2155325 ], + [ 5.9919454, 46.2155338 ], + [ 5.9920493, 46.2155002 ], + [ 5.9921312, 46.2154505 ], + [ 5.9921657, 46.2154221 ], + [ 5.9922367, 46.2153768 ], + [ 5.9923986, 46.2152886 ], + [ 5.9924162, 46.2152839 ], + [ 5.9924766, 46.2152459 ], + [ 5.9925059, 46.2152343 ], + [ 5.9926209, 46.215224 ], + [ 5.9926354, 46.2152303 ], + [ 5.9927123, 46.2152274 ], + [ 5.9927752, 46.2152213 ], + [ 5.9929988, 46.2156046 ], + [ 5.9932726, 46.2162826 ], + [ 5.99334, 46.2166935 ], + [ 5.9936539, 46.2173135 ], + [ 5.9935514, 46.2178984 ], + [ 5.9934277, 46.2181846 ], + [ 5.9929065999999995, 46.2190356 ], + [ 5.9915939, 46.2198115 ], + [ 5.9914112, 46.2200066 ], + [ 5.9912677, 46.2202628 ], + [ 5.9910801, 46.2208103 ], + [ 5.9908983, 46.2211293 ], + [ 5.9906588, 46.2214268 ], + [ 5.9901875, 46.221719 ], + [ 5.9928517, 46.2229537 ], + [ 5.9929159, 46.222962 ], + [ 5.9929448999999995, 46.2229605 ], + [ 5.9929726, 46.2229539 ], + [ 5.9929912, 46.222941 ], + [ 5.9930679, 46.2229081 ], + [ 5.9931157, 46.2228939 ], + [ 5.9931677, 46.2228893 ], + [ 5.9932247, 46.2228655 ], + [ 5.9932937, 46.2228116 ], + [ 5.993335, 46.2228017 ], + [ 5.9933657, 46.2227797 ], + [ 5.9933957, 46.2227755 ], + [ 5.9934098, 46.2227615 ], + [ 5.9934218999999995, 46.2227116 ], + [ 5.993473, 46.2226908 ], + [ 5.9935322, 46.2226837 ], + [ 5.9936202, 46.2226834 ], + [ 5.9937097, 46.2226698 ], + [ 5.9937639, 46.2226428 ], + [ 5.9938986, 46.2225948 ], + [ 5.9939951, 46.2225729 ], + [ 5.9940505, 46.2225175 ], + [ 5.9940659, 46.2225083 ], + [ 5.9941189999999995, 46.222486 ], + [ 5.9941789, 46.2224776 ], + [ 5.9942785, 46.2224296 ], + [ 5.9943195, 46.2224256 ], + [ 5.9943618, 46.2224257 ], + [ 5.994607, 46.2224357 ], + [ 5.9946946, 46.2224471 ], + [ 5.9948426999999995, 46.2225189 ], + [ 5.9949281, 46.2225054 ], + [ 5.9950214, 46.222517 ], + [ 5.9950444, 46.2225231 ], + [ 5.9951169, 46.2225654 ], + [ 5.9951812, 46.2225909 ], + [ 5.9952684, 46.2225942 ], + [ 5.9955096, 46.2225469 ], + [ 5.9957952, 46.2224728 ], + [ 5.9961227, 46.2223553 ], + [ 5.9963725, 46.2223534 ], + [ 5.9965532, 46.2223084 ], + [ 5.9967724, 46.2222905 ], + [ 5.9968486, 46.2223149 ], + [ 5.9970293, 46.2223406 ], + [ 5.9972843, 46.2222987 ], + [ 5.9973743, 46.2222998 ], + [ 5.9974796999999995, 46.2222665 ], + [ 5.9975688, 46.2222682 ], + [ 5.9976685, 46.2222291 ], + [ 5.9977708, 46.2222042 ], + [ 5.9978117, 46.2221663 ], + [ 5.997847, 46.2221512 ], + [ 5.9978911, 46.2221425 ], + [ 5.9979482, 46.2221427 ], + [ 5.9980179, 46.2221376 ], + [ 5.9980689, 46.2221079 ], + [ 5.9981329, 46.2220835 ], + [ 5.9983454, 46.2219824 ], + [ 5.9984825, 46.2219264 ], + [ 5.998518, 46.2219022 ], + [ 5.9986124, 46.2218474 ], + [ 5.9986856, 46.2217477 ], + [ 5.9987682, 46.2216805 ], + [ 5.9988198, 46.2216587 ], + [ 5.9988604, 46.2216336 ], + [ 5.9989801, 46.2216296 ], + [ 5.9990994, 46.221618 ], + [ 5.9991483, 46.2215925 ], + [ 5.9991631, 46.2215545 ], + [ 5.9992147, 46.2214892 ], + [ 5.9992324, 46.2214552 ], + [ 5.9992536, 46.2214298 ], + [ 5.9993528, 46.2213575 ], + [ 5.9994248, 46.2212624 ], + [ 5.9994807, 46.2211958 ], + [ 5.9995037, 46.2211212 ], + [ 5.9995027, 46.2210921 ], + [ 5.9995743, 46.2210954 ], + [ 6.0000253, 46.2200551 ], + [ 6.0000357, 46.220031 ], + [ 6.0001703, 46.2200702 ], + [ 6.000294, 46.2201251 ], + [ 6.0003737, 46.2201404 ], + [ 6.0006538, 46.2202338 ], + [ 6.0011114, 46.2203933 ], + [ 6.0013279, 46.2204274 ], + [ 6.0015392, 46.2205001 ], + [ 6.0016575, 46.2205923 ], + [ 6.0017956, 46.220721 ], + [ 6.0020139, 46.2211222 ], + [ 6.0021435, 46.2212857 ], + [ 6.0023161, 46.2215284 ], + [ 6.0025262, 46.2217746 ], + [ 6.0025687, 46.2219072 ], + [ 6.0026095, 46.2219706 ], + [ 6.00275, 46.2221247 ], + [ 6.0027811, 46.2221441 ], + [ 6.0028532, 46.2222231 ], + [ 6.0029068, 46.2223109 ], + [ 6.0030583, 46.2224204 ], + [ 6.0031216, 46.2224874 ], + [ 6.0031937, 46.2225293 ], + [ 6.0032124, 46.2225607 ], + [ 6.0035148, 46.2227755 ], + [ 6.003644, 46.2228217 ], + [ 6.0037771, 46.2229047 ], + [ 6.0040387, 46.2230297 ], + [ 6.0040688, 46.2230292 ], + [ 6.0042382, 46.2231332 ], + [ 6.0043126, 46.2231752 ], + [ 6.0044138, 46.2232514 ], + [ 6.004606, 46.2233499 ], + [ 6.0047535, 46.2233958 ], + [ 6.0048735, 46.2234468 ], + [ 6.0050996, 46.2234975 ], + [ 6.0052303, 46.2235388 ], + [ 6.0053405, 46.2235602 ], + [ 6.0054621, 46.2236098 ], + [ 6.0055524, 46.2236285 ], + [ 6.0056521, 46.2236396 ], + [ 6.0057434, 46.223684 ], + [ 6.0058041, 46.2237035 ], + [ 6.0058301, 46.2237068 ], + [ 6.0058619, 46.2236992 ], + [ 6.0059429, 46.2237165 ], + [ 6.0060343, 46.2237219 ], + [ 6.0060984, 46.2237165 ], + [ 6.006124, 46.2237311 ], + [ 6.0062112, 46.2237307 ], + [ 6.0062568, 46.2237428 ], + [ 6.0064305, 46.2237486 ], + [ 6.0065597, 46.2237723 ], + [ 6.0066389, 46.2238049 ], + [ 6.0068684, 46.2238369 ], + [ 6.0069121, 46.2238536 ], + [ 6.0070111, 46.2238493 ], + [ 6.0070433, 46.2238301 ], + [ 6.0071079, 46.2238381 ], + [ 6.0071567, 46.223872 ], + [ 6.0071889, 46.2238809 ], + [ 6.0072403, 46.2239357 ], + [ 6.0072433, 46.2239664 ], + [ 6.0072098, 46.2239776 ], + [ 6.007136, 46.224239 ], + [ 6.0070461, 46.2243727 ], + [ 6.0070148, 46.2244496 ], + [ 6.0070021, 46.2244969 ], + [ 6.0070016, 46.2245879 ], + [ 6.007029, 46.2246469 ], + [ 6.0070377, 46.2249968 ], + [ 6.0070238, 46.2250334 ], + [ 6.0069929, 46.2253687 ], + [ 6.006975, 46.2253884 ], + [ 6.0069701, 46.2255491 ], + [ 6.0069495, 46.2255989 ], + [ 6.0068879, 46.2256934 ], + [ 6.0066912, 46.2259159 ], + [ 6.0066266, 46.2260206 ], + [ 6.0065939, 46.2261904 ], + [ 6.0065717, 46.226232 ], + [ 6.0065806, 46.2263522 ], + [ 6.0065594, 46.2264691 ], + [ 6.006571, 46.226541 ], + [ 6.006618, 46.2266148 ], + [ 6.0067215, 46.2266743 ], + [ 6.0067787, 46.2266884 ], + [ 6.0069037, 46.2266698 ], + [ 6.0071479, 46.2265727 ], + [ 6.0071778, 46.226554 ], + [ 6.0073358, 46.2265181 ], + [ 6.0074307, 46.2264736 ], + [ 6.007524, 46.2264566 ], + [ 6.0077427, 46.2263951 ], + [ 6.0079042, 46.2263871 ], + [ 6.008061, 46.2264017 ], + [ 6.0082051, 46.2264357 ], + [ 6.0082861, 46.2264692 ], + [ 6.0084642, 46.2265711 ], + [ 6.0085738, 46.2266257 ], + [ 6.0086045, 46.2266481 ], + [ 6.0086883, 46.2266765 ], + [ 6.008839, 46.226753 ], + [ 6.009044, 46.2268269 ], + [ 6.009136, 46.2268888 ], + [ 6.0092089, 46.2269211 ], + [ 6.009402, 46.2270334 ], + [ 6.0094846, 46.2270984 ], + [ 6.0096573, 46.2272172 ], + [ 6.0097473, 46.2272702 ], + [ 6.0099267, 46.2274204 ], + [ 6.0099803, 46.2274782 ], + [ 6.0100563, 46.2275937 ], + [ 6.0101139, 46.227705 ], + [ 6.0102123, 46.2278191 ], + [ 6.0102574, 46.2278813 ], + [ 6.0102671, 46.2279369 ], + [ 6.010256, 46.2279904 ], + [ 6.010206, 46.2280739 ], + [ 6.0100525, 46.2281762 ], + [ 6.0099318, 46.2282724 ], + [ 6.0098103, 46.2283993 ], + [ 6.0096882, 46.2285014 ], + [ 6.0096078, 46.2285562 ], + [ 6.0095625, 46.22861 ], + [ 6.0095073, 46.2287259 ], + [ 6.0094882, 46.2288525 ], + [ 6.0095612, 46.2289952 ], + [ 6.0096926, 46.2290447 ], + [ 6.009805, 46.2290458 ], + [ 6.0099359, 46.2290248 ], + [ 6.0100272, 46.2290055 ], + [ 6.0100513, 46.2289912 ], + [ 6.0101136, 46.2289757 ], + [ 6.010144, 46.2289732 ], + [ 6.0102218, 46.2289343 ], + [ 6.0103099, 46.2289197 ], + [ 6.0103569, 46.2289039 ], + [ 6.0104188, 46.22887 ], + [ 6.0105796, 46.2288041 ], + [ 6.0108366, 46.228723 ], + [ 6.0108709, 46.2287046 ], + [ 6.0111441, 46.2286181 ], + [ 6.0113708, 46.2285852 ], + [ 6.0115559, 46.2285482 ], + [ 6.011777, 46.2285161 ], + [ 6.0118563, 46.2285176 ], + [ 6.0119183, 46.2285265 ], + [ 6.0120744, 46.2285133 ], + [ 6.0121302, 46.228493 ], + [ 6.0122301, 46.2284896 ], + [ 6.0122792, 46.2284806 ], + [ 6.0124915, 46.2285452 ], + [ 6.0125269, 46.228569 ], + [ 6.0125963, 46.2285898 ], + [ 6.0127852, 46.2286868 ], + [ 6.0128175, 46.2286889 ], + [ 6.0128478, 46.22871 ], + [ 6.0129186, 46.2287369 ], + [ 6.0129462, 46.2287365 ], + [ 6.013061, 46.2288404 ], + [ 6.0130955, 46.2288614 ], + [ 6.0132265, 46.2289712 ], + [ 6.013341, 46.2290533 ], + [ 6.0133888, 46.2291234 ], + [ 6.0134207, 46.2292322 ], + [ 6.0134071, 46.2294135 ], + [ 6.0133658, 46.2295348 ], + [ 6.0132981, 46.2296702 ], + [ 6.0132054, 46.2297953 ], + [ 6.0129503, 46.2299638 ], + [ 6.0127634, 46.2300584 ], + [ 6.0126207, 46.2301649 ], + [ 6.0125882, 46.2302085 ], + [ 6.0125516, 46.2303013 ], + [ 6.012649, 46.2306066 ], + [ 6.0127528, 46.2308049 ], + [ 6.0128385, 46.2309382 ], + [ 6.0129564, 46.2310491 ], + [ 6.0130929, 46.2311014 ], + [ 6.0131811, 46.231119 ], + [ 6.0133439, 46.231079 ], + [ 6.0135415, 46.2309937 ], + [ 6.0135856, 46.2309583 ], + [ 6.0137586, 46.2308523 ], + [ 6.0139233, 46.2307704 ], + [ 6.0140198, 46.2307294 ], + [ 6.0141265, 46.2307027 ], + [ 6.0147598, 46.2305027 ], + [ 6.014851, 46.2304681 ], + [ 6.0148835, 46.2304651 ], + [ 6.0149277, 46.2304671 ], + [ 6.0150509, 46.2304321 ], + [ 6.0151097, 46.2304227 ], + [ 6.0151603, 46.2304263 ], + [ 6.0152613, 46.2304427 ], + [ 6.0153675, 46.2304806 ], + [ 6.0154842, 46.2305507 ], + [ 6.0155684, 46.2306467 ], + [ 6.0156281, 46.2307354 ], + [ 6.0159036, 46.2310819 ], + [ 6.0159138, 46.2311115 ], + [ 6.0159383, 46.2311254 ], + [ 6.0159831, 46.2311772 ], + [ 6.015977, 46.2311909 ], + [ 6.0161417, 46.2313783 ], + [ 6.0161992, 46.2315273 ], + [ 6.0162092, 46.2315854 ], + [ 6.0162426, 46.2316421 ], + [ 6.0162563, 46.2316938 ], + [ 6.0162816, 46.2317545 ], + [ 6.0163956, 46.2319506 ], + [ 6.0164342, 46.2319842 ], + [ 6.0174177, 46.2315767 ], + [ 6.017431, 46.2315989 ], + [ 6.0175009, 46.2315845 ], + [ 6.017552, 46.2315673 ], + [ 6.0175773, 46.2315615 ], + [ 6.0176013, 46.2315655 ], + [ 6.0176139, 46.2315708 ], + [ 6.0176239, 46.2315892 ], + [ 6.0176293, 46.2316182 ], + [ 6.0176369, 46.2316201 ], + [ 6.0176824, 46.2316139 ], + [ 6.0177846, 46.2315796 ], + [ 6.018032, 46.2315701 ], + [ 6.0180815, 46.2316257 ], + [ 6.0181627, 46.2316331 ], + [ 6.0182641, 46.2316553 ], + [ 6.0184522, 46.2315714 ], + [ 6.0184837, 46.2315723 ], + [ 6.0184851, 46.2316556 ], + [ 6.0186756, 46.2316268 ], + [ 6.0188149, 46.2316337 ], + [ 6.0188353, 46.2316539 ], + [ 6.0187609, 46.2316969 ], + [ 6.0188292, 46.2317774 ], + [ 6.0189384, 46.2318119 ], + [ 6.0191858, 46.231804 ], + [ 6.0193734, 46.2318049 ], + [ 6.0193998, 46.2318266 ], + [ 6.0193673, 46.2318761 ], + [ 6.0194273, 46.2318822 ], + [ 6.0195263, 46.231767 ], + [ 6.0195961, 46.23175 ], + [ 6.0196485, 46.2317921 ], + [ 6.0197612, 46.231857 ], + [ 6.0198298, 46.2318188 ], + [ 6.019908, 46.2318333 ], + [ 6.0199528, 46.2318947 ], + [ 6.0200077, 46.2320443 ], + [ 6.0199841, 46.2321065 ], + [ 6.0199233, 46.2321566 ], + [ 6.0199702, 46.2321923 ], + [ 6.020103, 46.2321905 ], + [ 6.0201888, 46.2322397 ], + [ 6.0202407000000004, 46.2322465 ], + [ 6.0203819, 46.2321527 ], + [ 6.0206401, 46.2321791 ], + [ 6.0206577, 46.2322646 ], + [ 6.0207924, 46.2322984 ], + [ 6.0209396, 46.23229 ], + [ 6.0210089, 46.2323606 ], + [ 6.0210633, 46.2323638 ], + [ 6.0211728, 46.2323059 ], + [ 6.0214005, 46.2323071 ], + [ 6.0214313, 46.232321 ], + [ 6.0214028, 46.2324634 ], + [ 6.0214519, 46.2325343 ], + [ 6.0214568, 46.2326113 ], + [ 6.021559, 46.2326234 ], + [ 6.0216639, 46.2326242 ], + [ 6.0216831, 46.2326154 ], + [ 6.0217093, 46.2325922 ], + [ 6.0217896, 46.232551 ], + [ 6.0217984, 46.2325336 ], + [ 6.0218045, 46.2324949 ], + [ 6.021858, 46.2324691 ], + [ 6.0218717, 46.2324211 ], + [ 6.0218874, 46.232418 ], + [ 6.0219019, 46.232421 ], + [ 6.0219266, 46.2324463 ], + [ 6.0219498, 46.232486 ], + [ 6.0219768, 46.2324955 ], + [ 6.0220348, 46.2324859 ], + [ 6.022071, 46.2324724 ], + [ 6.0221275, 46.23248 ], + [ 6.0222003, 46.2324566 ], + [ 6.0222143, 46.2324588 ], + [ 6.02228, 46.2325894 ], + [ 6.0223446, 46.232639 ], + [ 6.0224103, 46.2326415 ], + [ 6.0224778, 46.2326141 ], + [ 6.0225775, 46.2325962 ], + [ 6.0226021, 46.2325955 ], + [ 6.022805, 46.2326462 ], + [ 6.022944, 46.2326733 ], + [ 6.0231118, 46.2326815 ], + [ 6.0231281, 46.2327014 ], + [ 6.023145, 46.2327631 ], + [ 6.0231687, 46.2328108 ], + [ 6.0231882, 46.2328375 ], + [ 6.0232001, 46.2328777 ], + [ 6.0232337, 46.2329118 ], + [ 6.0232967, 46.2329459 ], + [ 6.0233589, 46.2329865 ], + [ 6.0234105, 46.2329919 ], + [ 6.0234214, 46.2330001 ], + [ 6.0234258, 46.2330371 ], + [ 6.0234388, 46.2330551 ], + [ 6.023558, 46.2330867 ], + [ 6.0236541, 46.2331254 ], + [ 6.0237198, 46.2331377 ], + [ 6.0238097, 46.2331222 ], + [ 6.0238894, 46.2331188 ], + [ 6.0239379, 46.2331255 ], + [ 6.0239642, 46.233122 ], + [ 6.0239813, 46.2330996 ], + [ 6.0240161, 46.2330914 ], + [ 6.0240541, 46.2330901 ], + [ 6.0241098, 46.2330971 ], + [ 6.0241755, 46.2330925 ], + [ 6.0242625, 46.2330566 ], + [ 6.0242948, 46.2330548 ], + [ 6.0244402, 46.2331099 ], + [ 6.0245443, 46.2331388 ], + [ 6.024612, 46.2331473 ], + [ 6.0246939, 46.2331218 ], + [ 6.0247543, 46.2330807 ], + [ 6.0248354, 46.2330798 ], + [ 6.0249009, 46.2330889 ], + [ 6.0249219, 46.2330945 ], + [ 6.0249663, 46.2331211 ], + [ 6.0250709, 46.233219 ], + [ 6.0253986, 46.2332002 ], + [ 6.0254959, 46.2332255 ], + [ 6.0255244, 46.2332625 ], + [ 6.0255671, 46.2332995 ], + [ 6.025625, 46.2333806 ], + [ 6.0256499, 46.2333892 ], + [ 6.0257142, 46.2334751 ], + [ 6.0257405, 46.2335491 ], + [ 6.0257298, 46.2336848 ], + [ 6.0258184, 46.2339004 ], + [ 6.0258276, 46.2339854 ], + [ 6.0258751, 46.234085 ], + [ 6.0259696, 46.2341472 ], + [ 6.0260842, 46.2341831 ], + [ 6.0261921, 46.2342372 ], + [ 6.0263371, 46.2343385 ], + [ 6.0264385, 46.2343526 ], + [ 6.0266433, 46.2343066 ], + [ 6.0268372, 46.2342426 ], + [ 6.0269094, 46.234258 ], + [ 6.0269722, 46.2342779 ], + [ 6.0276074, 46.2347409 ], + [ 6.0286891, 46.2352351 ], + [ 6.0293611, 46.2357188 ], + [ 6.0301344, 46.2364528 ], + [ 6.0322383, 46.2375954 ], + [ 6.0336528, 46.2385514 ], + [ 6.0388915, 46.2351721 ], + [ 6.0421279, 46.233309 ], + [ 6.0461113, 46.2313935 ], + [ 6.046147, 46.2314222 ], + [ 6.0462191, 46.2314958 ], + [ 6.0463245, 46.2316406 ], + [ 6.0465269, 46.2319315 ], + [ 6.0472802, 46.2330956 ], + [ 6.0474518, 46.2334037 ], + [ 6.047666, 46.2332938 ], + [ 6.0479287, 46.2331719 ], + [ 6.0480063, 46.2331499 ], + [ 6.0480296, 46.2331599 ], + [ 6.0482131, 46.2333114 ], + [ 6.0484784, 46.2334811 ], + [ 6.0490088, 46.2338817 ], + [ 6.0495062, 46.234289 ], + [ 6.0495621, 46.2343822 ], + [ 6.0496731, 46.2345281 ], + [ 6.049662, 46.2345461 ], + [ 6.0499857, 46.2348651 ], + [ 6.0502982, 46.2351392 ], + [ 6.0505964, 46.2355373 ], + [ 6.0507172, 46.2357205 ], + [ 6.0508327, 46.2358635 ], + [ 6.0510762, 46.2364666 ], + [ 6.0511618, 46.2365725 ], + [ 6.0512473, 46.2367278 ], + [ 6.0513331, 46.2369085 ], + [ 6.0515039999999996, 46.2371682 ], + [ 6.0515763, 46.2372859 ], + [ 6.0517014, 46.2374709 ], + [ 6.0517194, 46.2375501 ], + [ 6.0518702, 46.2377365 ], + [ 6.0520151, 46.2378901 ], + [ 6.0521554, 46.2380967 ], + [ 6.0520902, 46.2382323 ], + [ 6.0527063, 46.2388075 ], + [ 6.0534633, 46.2395353 ], + [ 6.0534495, 46.2395413 ], + [ 6.054526, 46.2405109 ], + [ 6.0546363, 46.2404882 ], + [ 6.0558876, 46.2416581 ], + [ 6.0564093, 46.2419009 ], + [ 6.0571247, 46.2421743 ], + [ 6.0577615, 46.2426261 ], + [ 6.0580414, 46.2428496 ], + [ 6.0582099, 46.2430367 ], + [ 6.0586824, 46.2436021 ], + [ 6.0590773, 46.2439353 ], + [ 6.0601074, 46.2448406 ], + [ 6.0604109, 46.2450089 ], + [ 6.0609013, 46.2450792 ], + [ 6.0614217, 46.2450861 ], + [ 6.0622245, 46.2454136 ], + [ 6.0633459, 46.2458015 ], + [ 6.0636433, 46.2454185 ], + [ 6.0636699, 46.2453703 ], + [ 6.0637606, 46.2452682 ], + [ 6.0637511, 46.2452516 ], + [ 6.0637844, 46.2452287 ], + [ 6.0638216, 46.2451589 ], + [ 6.0638742, 46.2451107 ], + [ 6.0638658, 46.2450892 ], + [ 6.0639033, 46.2450545 ], + [ 6.0639338, 46.2450323 ], + [ 6.0640205, 46.2449075 ], + [ 6.0640665, 46.244823 ], + [ 6.0640692, 46.2448013 ], + [ 6.0640982, 46.2447852 ], + [ 6.0641327, 46.2447243 ], + [ 6.0641443, 46.2446553 ], + [ 6.0642072, 46.2446488 ], + [ 6.0643073, 46.2445843 ], + [ 6.0643463, 46.2445853 ], + [ 6.0643553, 46.2445363 ], + [ 6.0644155, 46.244512 ], + [ 6.0644259, 46.2444836 ], + [ 6.0644792, 46.2444626 ], + [ 6.0645274, 46.2444038 ], + [ 6.0645674, 46.2443248 ], + [ 6.0646372, 46.244289 ], + [ 6.0647406, 46.2442598 ], + [ 6.0647891, 46.2441977 ], + [ 6.0648265, 46.2441852 ], + [ 6.0648681, 46.2441311 ], + [ 6.0649321, 46.2440957 ], + [ 6.0649519, 46.2440512 ], + [ 6.0649727, 46.2440523 ], + [ 6.0650015, 46.2440235 ], + [ 6.0650067, 46.2439784 ], + [ 6.0650749, 46.2439501 ], + [ 6.0651447, 46.2438847 ], + [ 6.0651785, 46.2438375 ], + [ 6.0652108, 46.2437996 ], + [ 6.0652008, 46.2437776 ], + [ 6.0653274, 46.2436616 ], + [ 6.0653233, 46.2436374 ], + [ 6.0653907, 46.2435952 ], + [ 6.0653677, 46.2435562 ], + [ 6.0654365, 46.2435237 ], + [ 6.065428, 46.2435045 ], + [ 6.065483, 46.2434189 ], + [ 6.0655561, 46.243376 ], + [ 6.0656342, 46.2433674 ], + [ 6.0656957, 46.2432425 ], + [ 6.0657233, 46.2432289 ], + [ 6.065728, 46.2432035 ], + [ 6.0658415, 46.2431566 ], + [ 6.0658657, 46.2431175 ], + [ 6.0659084, 46.2430991 ], + [ 6.0658686, 46.2430751 ], + [ 6.0658704, 46.2430562 ], + [ 6.0658322, 46.2430352 ], + [ 6.0658139, 46.2430069 ], + [ 6.0658668, 46.2429623 ], + [ 6.0659041, 46.24295 ], + [ 6.0659388, 46.2429102 ], + [ 6.0660038, 46.242883 ], + [ 6.0660301, 46.2428302 ], + [ 6.0661013, 46.2428074 ], + [ 6.0661636, 46.242831699999996 ], + [ 6.0661959, 46.2427762 ], + [ 6.066243, 46.2427887 ], + [ 6.0662557, 46.242743 ], + [ 6.0663007, 46.2427197 ], + [ 6.0663188, 46.2426707 ], + [ 6.066347, 46.2426383 ], + [ 6.0664106, 46.2426039 ], + [ 6.0664222, 46.2425717 ], + [ 6.0664655, 46.2425563 ], + [ 6.0665156, 46.2425595 ], + [ 6.0665196, 46.2425353 ], + [ 6.0665037, 46.2425106 ], + [ 6.0665169, 46.2424879 ], + [ 6.0665651, 46.2424928 ], + [ 6.0665715, 46.2424506 ], + [ 6.0666284, 46.2423886 ], + [ 6.0666615, 46.2423689 ], + [ 6.0666603, 46.2423396 ], + [ 6.0666745, 46.2423278 ], + [ 6.066696, 46.242279 ], + [ 6.0667318, 46.2422686 ], + [ 6.0667679, 46.2422707 ], + [ 6.0667799, 46.2422421 ], + [ 6.0668011, 46.2422163 ], + [ 6.0668449, 46.2421812 ], + [ 6.0668766, 46.242186 ], + [ 6.066906, 46.2421274 ], + [ 6.0669322, 46.2421283 ], + [ 6.0669304, 46.2420919 ], + [ 6.0669558, 46.2420794 ], + [ 6.0670111, 46.2420176 ], + [ 6.0670686, 46.2419979 ], + [ 6.0670708, 46.2419666 ], + [ 6.0670926, 46.2419385 ], + [ 6.0671599, 46.2419158 ], + [ 6.0671689, 46.2419019 ], + [ 6.0671612, 46.2418644 ], + [ 6.067198, 46.2418596 ], + [ 6.0672163, 46.2418343 ], + [ 6.0672476, 46.2418271 ], + [ 6.0672755, 46.2418078 ], + [ 6.0672862, 46.241782 ], + [ 6.0676184, 46.2418802 ], + [ 6.0681971, 46.2419742 ], + [ 6.0695519, 46.2411669 ], + [ 6.0702184, 46.2416878 ], + [ 6.0708998, 46.2413098 ], + [ 6.0713826, 46.2416815 ], + [ 6.0718096, 46.2421922 ], + [ 6.0730249, 46.2413491 ], + [ 6.0734816, 46.2419468 ], + [ 6.0737633, 46.2422862 ], + [ 6.0728169, 46.2431134 ], + [ 6.0735362, 46.2437118 ], + [ 6.073869, 46.2437232 ], + [ 6.0748673, 46.2435626 ], + [ 6.0751722, 46.2437953 ], + [ 6.0755552, 46.24359 ], + [ 6.077155, 46.2446706 ], + [ 6.0778291, 46.2442293 ], + [ 6.0783916, 46.2445905 ], + [ 6.0785078, 46.2446623 ], + [ 6.0787631, 46.2448944 ], + [ 6.0789671, 46.2450367 ], + [ 6.0791897, 46.2451601 ], + [ 6.079402, 46.2453038 ], + [ 6.0795252, 46.2454037 ], + [ 6.0807437, 46.2455991 ], + [ 6.0819587, 46.245799 ], + [ 6.0825169, 46.2453925 ], + [ 6.0825741, 46.2454306 ], + [ 6.0827952, 46.2455994 ], + [ 6.0828164, 46.2456266 ], + [ 6.0828344, 46.2456642 ], + [ 6.0828503, 46.2457475 ], + [ 6.0828659, 46.2457947 ], + [ 6.0828875, 46.2458343 ], + [ 6.0829304, 46.2458954 ], + [ 6.082991, 46.2459674 ], + [ 6.0831082, 46.2460817 ], + [ 6.083163, 46.2461416 ], + [ 6.0833444, 46.246323 ], + [ 6.0834455, 46.2464193 ], + [ 6.083612, 46.2465657 ], + [ 6.083652, 46.2465944 ], + [ 6.0836891, 46.2466271 ], + [ 6.0838484, 46.2467277 ], + [ 6.0838963, 46.2467513 ], + [ 6.0840612, 46.2468503 ], + [ 6.0841533, 46.2468979 ], + [ 6.0843393, 46.247006 ], + [ 6.084392, 46.247022 ], + [ 6.0844081, 46.2470154 ], + [ 6.0855304, 46.2462011 ], + [ 6.0856184, 46.2461144 ], + [ 6.0856314, 46.2460814 ], + [ 6.0855401, 46.2459637 ], + [ 6.0880561, 46.2471256 ], + [ 6.0881535, 46.2462973 ], + [ 6.0885125, 46.2458806 ], + [ 6.0906864, 46.2451252 ], + [ 6.0923284, 46.2438178 ], + [ 6.092386, 46.2436966 ], + [ 6.0933298, 46.2429003 ], + [ 6.0935385, 46.2430443 ], + [ 6.0950282, 46.24194 ], + [ 6.0954361, 46.2416261 ], + [ 6.0970018, 46.2405119 ], + [ 6.0990618, 46.2390648 ], + [ 6.1014504, 46.2376466 ], + [ 6.1018122, 46.237879 ], + [ 6.1054739, 46.2402307 ], + [ 6.1068531, 46.2411708 ], + [ 6.1088274, 46.2398703 ], + [ 6.1207862, 46.2480154 ], + [ 6.1202939, 46.248503 ], + [ 6.1209109999999995, 46.2488307 ], + [ 6.1235784, 46.2506481 ], + [ 6.1244681, 46.2512542 ], + [ 6.1238428, 46.2518371 ], + [ 6.1244574, 46.2525925 ], + [ 6.1242787, 46.25264 ], + [ 6.1240898, 46.2526655 ], + [ 6.1240684, 46.2526436 ], + [ 6.1239958, 46.252611 ], + [ 6.123916, 46.2526081 ], + [ 6.123808, 46.2526778 ], + [ 6.1236425, 46.2526939 ], + [ 6.123459, 46.2527183 ], + [ 6.1234377, 46.2528245 ], + [ 6.123343, 46.2529061 ], + [ 6.1231569, 46.252902399999996 ], + [ 6.1230792, 46.2529192 ], + [ 6.1230379, 46.2529916 ], + [ 6.1230822, 46.2530888 ], + [ 6.1230468, 46.2531334 ], + [ 6.122585, 46.2532727 ], + [ 6.1223108, 46.2533881 ], + [ 6.1222386, 46.2534134 ], + [ 6.1221538, 46.2533991 ], + [ 6.1221088, 46.2534099 ], + [ 6.1219975, 46.2534763 ], + [ 6.1219844, 46.2535007 ], + [ 6.1218126999999996, 46.2536022 ], + [ 6.1217533, 46.2535974 ], + [ 6.1213781, 46.2538946 ], + [ 6.1212885, 46.2538912 ], + [ 6.1212032, 46.2539695 ], + [ 6.1211332, 46.2541331 ], + [ 6.1210803, 46.2541502 ], + [ 6.1210416, 46.2542805 ], + [ 6.1210162, 46.2542909 ], + [ 6.1209503, 46.2543992 ], + [ 6.1208879, 46.254436 ], + [ 6.1208295, 46.2545556 ], + [ 6.1209032, 46.2549074 ], + [ 6.1208203, 46.2549268 ], + [ 6.1208302, 46.2549668 ], + [ 6.121041, 46.2551323 ], + [ 6.1211005, 46.2552253 ], + [ 6.1212331, 46.2553535 ], + [ 6.1213407, 46.255498 ], + [ 6.1215318, 46.2557281 ], + [ 6.1216084, 46.2557957 ], + [ 6.1219204, 46.2560436 ], + [ 6.1221232, 46.2560807 ], + [ 6.1221388, 46.2561087 ], + [ 6.1221761, 46.2561177 ], + [ 6.1222552, 46.2561191 ], + [ 6.1225016, 46.2561997 ], + [ 6.1226441, 46.2563724 ], + [ 6.1227526, 46.2564043 ], + [ 6.1227548, 46.2564516 ], + [ 6.1224929, 46.2566794 ], + [ 6.1223365, 46.2568466 ], + [ 6.122304, 46.2569325 ], + [ 6.1221788, 46.2570331 ], + [ 6.1219872, 46.2572356 ], + [ 6.121996, 46.2572662 ], + [ 6.1218599, 46.257334 ], + [ 6.1217704, 46.2574561 ], + [ 6.1215894, 46.2576339 ], + [ 6.121514, 46.2577022 ], + [ 6.1215556, 46.2577217 ], + [ 6.1217464, 46.2578519 ], + [ 6.122044, 46.2580083 ], + [ 6.1221636, 46.258031 ], + [ 6.122535, 46.2581781 ], + [ 6.1197471, 46.260839 ], + [ 6.1193068, 46.2612592 ], + [ 6.1200569, 46.2616569 ], + [ 6.1180828, 46.2634483 ], + [ 6.1200791, 46.2646468 ], + [ 6.119982, 46.2648305 ], + [ 6.1197197, 46.264932 ], + [ 6.1196599, 46.2649522 ], + [ 6.1190796, 46.2651776 ], + [ 6.1187778, 46.26531 ], + [ 6.1181524, 46.2655438 ], + [ 6.1180525, 46.2655956 ], + [ 6.1176968, 46.2657366 ], + [ 6.1173169, 46.2658815 ], + [ 6.1171881, 46.2659156 ], + [ 6.1166257, 46.2661207 ], + [ 6.1164283, 46.2661866 ], + [ 6.116353, 46.266196 ], + [ 6.1162758, 46.266242 ], + [ 6.1162109, 46.2662853 ], + [ 6.1154257, 46.2659423 ], + [ 6.1134746, 46.2677003 ], + [ 6.1116545, 46.269039 ], + [ 6.1118954, 46.2691688 ], + [ 6.1098993, 46.2705746 ], + [ 6.1100458, 46.2706501 ], + [ 6.1105033, 46.2709016 ], + [ 6.1116099, 46.2715691 ], + [ 6.1123789, 46.2719922 ], + [ 6.1127763, 46.2721593 ], + [ 6.1128308, 46.272164 ], + [ 6.1128426, 46.2722605 ], + [ 6.1132598, 46.2723684 ], + [ 6.1135142, 46.2725525 ], + [ 6.1116593, 46.2733073 ], + [ 6.1117961, 46.2735014 ], + [ 6.1111706, 46.2737133 ], + [ 6.111132, 46.2740122 ], + [ 6.1102425, 46.2741817 ], + [ 6.1102827, 46.27435 ], + [ 6.1101773, 46.2743813 ], + [ 6.1100527, 46.2744618 ], + [ 6.109908, 46.2745105 ], + [ 6.1097508, 46.2745481 ], + [ 6.109644, 46.2745975 ], + [ 6.1095548, 46.2746578 ], + [ 6.1095042, 46.2746666 ], + [ 6.1091206, 46.2747582 ], + [ 6.1090154, 46.2747677 ], + [ 6.1089766, 46.2747672 ], + [ 6.1088583, 46.2747785 ], + [ 6.1088383, 46.2747769 ], + [ 6.1087973, 46.2747426 ], + [ 6.1086457, 46.2747687 ], + [ 6.1085915, 46.2747309 ], + [ 6.108534, 46.274742 ], + [ 6.1084997, 46.2748177 ], + [ 6.1084098000000004, 46.2748343 ], + [ 6.1083707, 46.2749267 ], + [ 6.1082097, 46.2749635 ], + [ 6.1082377, 46.275066699999996 ], + [ 6.1081306, 46.2750965 ], + [ 6.1080821, 46.2751468 ], + [ 6.1080206, 46.275229 ], + [ 6.1079174, 46.2753379 ], + [ 6.1079222, 46.2753845 ], + [ 6.1078721, 46.2754282 ], + [ 6.107906, 46.2754855 ], + [ 6.1078551, 46.2755154 ], + [ 6.1078715, 46.2755814 ], + [ 6.1078168, 46.2755856 ], + [ 6.1077815, 46.2756529 ], + [ 6.1077876, 46.2757186 ], + [ 6.1077234, 46.2757777 ], + [ 6.1077047, 46.2758715 ], + [ 6.1076516, 46.275874 ], + [ 6.1076553, 46.2759452 ], + [ 6.107638, 46.2760345 ], + [ 6.1075612, 46.2760648 ], + [ 6.1075597, 46.2761406 ], + [ 6.1074976, 46.2762084 ], + [ 6.1074422, 46.2762167 ], + [ 6.1074463, 46.2762608 ], + [ 6.1073211, 46.2764021 ], + [ 6.1072811, 46.2763681 ], + [ 6.1072335, 46.2763784 ], + [ 6.1071678, 46.2764713 ], + [ 6.1071544, 46.2765376 ], + [ 6.1070458, 46.2766052 ], + [ 6.1070004, 46.2765982 ], + [ 6.1069696, 46.2766498 ], + [ 6.1068834, 46.2766906 ], + [ 6.1067323, 46.2767176 ], + [ 6.1067001, 46.2767508 ], + [ 6.1066253, 46.2767823 ], + [ 6.1065269, 46.27675 ], + [ 6.1063778, 46.276785 ], + [ 6.1062388, 46.2767237 ], + [ 6.1061585, 46.2767439 ], + [ 6.1060925, 46.2768418 ], + [ 6.106044, 46.2768482 ], + [ 6.1059885, 46.2768872 ], + [ 6.1058833, 46.2768746 ], + [ 6.1058306, 46.2768568 ], + [ 6.1057787, 46.2768997 ], + [ 6.105739, 46.2768658 ], + [ 6.1057079, 46.2768869 ], + [ 6.1056718, 46.2768747 ], + [ 6.105678, 46.2769345 ], + [ 6.1056211, 46.2770084 ], + [ 6.105651, 46.2770332 ], + [ 6.1056803, 46.2770403 ], + [ 6.1056566, 46.2771093 ], + [ 6.1056116, 46.2771161 ], + [ 6.1056321, 46.2772302 ], + [ 6.105559, 46.277304 ], + [ 6.1055413, 46.2773629 ], + [ 6.1054629, 46.277423 ], + [ 6.1053705, 46.2774596 ], + [ 6.1053503, 46.2775465 ], + [ 6.1052422, 46.2775881 ], + [ 6.105256, 46.2776476 ], + [ 6.1051711, 46.2777373 ], + [ 6.105157, 46.277788 ], + [ 6.105109, 46.2778341 ], + [ 6.1049946, 46.2779564 ], + [ 6.1050122, 46.2780088 ], + [ 6.1049214, 46.2780909 ], + [ 6.1048128, 46.2782344 ], + [ 6.1046281, 46.2783009 ], + [ 6.1041768, 46.2784194 ], + [ 6.1038095, 46.2785315 ], + [ 6.103464, 46.2786028 ], + [ 6.1033863, 46.2786472 ], + [ 6.1033577, 46.2786416 ], + [ 6.1032654, 46.2786655 ], + [ 6.1033649, 46.2788028 ], + [ 6.1037635, 46.279285 ], + [ 6.1039946, 46.2795815 ], + [ 6.1040356, 46.2796489 ], + [ 6.1040918, 46.2796945 ], + [ 6.1041584, 46.2798129 ], + [ 6.1041681, 46.2798479 ], + [ 6.1042044, 46.2798846 ], + [ 6.1042147, 46.2799251 ], + [ 6.1042454, 46.2799653 ], + [ 6.1042713, 46.2800301 ], + [ 6.1043422, 46.2801561 ], + [ 6.1044266, 46.2803242 ], + [ 6.1045177, 46.2805643 ], + [ 6.1045838, 46.2809539 ], + [ 6.1046391, 46.2811286 ], + [ 6.104663, 46.2813539 ], + [ 6.104713, 46.281554 ], + [ 6.1047206, 46.2817057 ], + [ 6.104709, 46.2819768 ], + [ 6.1046905, 46.2820917 ], + [ 6.1047955, 46.2823802 ], + [ 6.1048869, 46.2826045 ], + [ 6.1049769, 46.2827794 ], + [ 6.105084, 46.282961 ], + [ 6.1043704, 46.2835339 ], + [ 6.1046859, 46.2838472 ], + [ 6.1044257, 46.2842052 ], + [ 6.1044122, 46.28419 ], + [ 6.1036053, 46.2845408 ], + [ 6.1023904, 46.2849203 ], + [ 6.1023898, 46.2849398 ], + [ 6.1027779, 46.2850773 ], + [ 6.1031119, 46.2852996 ], + [ 6.1034992, 46.2855807 ], + [ 6.1038766, 46.2861488 ], + [ 6.1044152, 46.2865693 ], + [ 6.1045597, 46.2869407 ], + [ 6.1045403, 46.2869764 ], + [ 6.1060808, 46.2877665 ], + [ 6.1073653, 46.2886965 ], + [ 6.108873, 46.289345 ], + [ 6.1097753, 46.2901312 ], + [ 6.1116177, 46.291499 ], + [ 6.1122654, 46.2925588 ], + [ 6.1130502, 46.2932908 ], + [ 6.1127411, 46.2935255 ], + [ 6.1132572, 46.2941274 ], + [ 6.1139322, 46.2943443 ], + [ 6.1140755, 46.294716 ], + [ 6.1145487, 46.2944819 ], + [ 6.1146469, 46.2945259 ], + [ 6.1147735, 46.2945874 ], + [ 6.1150345, 46.2945306 ], + [ 6.1151963, 46.294474 ], + [ 6.1153084, 46.2944301 ], + [ 6.1154201, 46.2943545 ], + [ 6.1154518, 46.2943712 ], + [ 6.1155717, 46.2943307 ], + [ 6.1156476, 46.294311 ], + [ 6.115681, 46.2942698 ], + [ 6.1157716, 46.2942607 ], + [ 6.1158582, 46.294244 ], + [ 6.1159442, 46.2942104 ], + [ 6.115968, 46.2942178 ], + [ 6.1160335, 46.2941867 ], + [ 6.1160721, 46.2941441 ], + [ 6.1161312, 46.2941377 ], + [ 6.1161896, 46.2941053 ], + [ 6.1162292, 46.2940946 ], + [ 6.1162836, 46.2940399 ], + [ 6.1163176, 46.2940133 ], + [ 6.1163915, 46.2940323 ], + [ 6.1164738, 46.2940085 ], + [ 6.1165626, 46.2940152 ], + [ 6.1166359, 46.2940014 ], + [ 6.1167001, 46.2940285 ], + [ 6.1167411, 46.2940716 ], + [ 6.1167758, 46.2940918 ], + [ 6.116813, 46.2941426 ], + [ 6.1168786, 46.2941478 ], + [ 6.1169108, 46.2941946 ], + [ 6.1169127, 46.2942369 ], + [ 6.1170106, 46.294251 ], + [ 6.1170305, 46.2942774 ], + [ 6.1170765, 46.2942814 ], + [ 6.117206, 46.2943408 ], + [ 6.1172686, 46.2943759 ], + [ 6.1173098, 46.2943635 ], + [ 6.1173583, 46.2944054 ], + [ 6.11747, 46.294435 ], + [ 6.1175268, 46.2944586 ], + [ 6.1175816, 46.2944512 ], + [ 6.1176548, 46.2944841 ], + [ 6.1177074, 46.2944889 ], + [ 6.1178397, 46.2945439 ], + [ 6.1179238, 46.2945377 ], + [ 6.1180075, 46.294562 ], + [ 6.118044, 46.2945906 ], + [ 6.1181123, 46.2945667 ], + [ 6.1181605, 46.2945911 ], + [ 6.1182094, 46.2945825 ], + [ 6.1183005, 46.2945522 ], + [ 6.1183779, 46.2945547 ], + [ 6.1184577, 46.2945483 ], + [ 6.1185126, 46.2945277 ], + [ 6.1185582, 46.2945314 ], + [ 6.1186369, 46.2944903 ], + [ 6.118703, 46.2944806 ], + [ 6.1187519, 46.2944299 ], + [ 6.1188278, 46.294437 ], + [ 6.1189012, 46.2944256 ], + [ 6.1189319, 46.2944753 ], + [ 6.1190212, 46.2944515 ], + [ 6.1191131, 46.2944515 ], + [ 6.1191489, 46.2944108 ], + [ 6.1191882, 46.294402 ], + [ 6.1192222, 46.2944167 ], + [ 6.1192641, 46.2944116 ], + [ 6.119274, 46.2943792 ], + [ 6.1193008, 46.2943632 ], + [ 6.1193253, 46.294365 ], + [ 6.119344, 46.2943813 ], + [ 6.1193865, 46.2943838 ], + [ 6.1194339, 46.2943566 ], + [ 6.119484, 46.2943348 ], + [ 6.1196371, 46.2943172 ], + [ 6.1196747, 46.2943976 ], + [ 6.1197295, 46.2945461 ], + [ 6.1197318, 46.2946496 ], + [ 6.119779, 46.2947313 ], + [ 6.11978, 46.2948163 ], + [ 6.1197498, 46.2948851 ], + [ 6.1196078, 46.2949818 ], + [ 6.119464, 46.2950075 ], + [ 6.1192588, 46.2950625 ], + [ 6.1191869, 46.2951044 ], + [ 6.1190818, 46.2951405 ], + [ 6.1189592, 46.2951994 ], + [ 6.1188552, 46.2952959 ], + [ 6.1187926, 46.2953822 ], + [ 6.1186747, 46.2955949 ], + [ 6.1186679999999996, 46.2956669 ], + [ 6.1186561, 46.2957024 ], + [ 6.1185968, 46.2957797 ], + [ 6.1185612, 46.2959086 ], + [ 6.118598, 46.2959544 ], + [ 6.1186706, 46.2960083 ], + [ 6.1187082, 46.2960683 ], + [ 6.1187763, 46.2961253 ], + [ 6.1189205, 46.2962062 ], + [ 6.1191043, 46.2962833 ], + [ 6.1192727, 46.2963196 ], + [ 6.1193961, 46.2963586 ], + [ 6.119526, 46.2963703 ], + [ 6.1198657, 46.2964258 ], + [ 6.1199116, 46.2964256 ], + [ 6.1200633, 46.2964661 ], + [ 6.1201701, 46.2965266 ], + [ 6.1202699, 46.2965765 ], + [ 6.1203754, 46.2966459 ], + [ 6.1205095, 46.2967285 ], + [ 6.1207365, 46.2969109 ], + [ 6.1208702, 46.2970077 ], + [ 6.1208771, 46.2970727 ], + [ 6.1208661, 46.2971357 ], + [ 6.1206577, 46.2972977 ], + [ 6.1205179, 46.297397 ], + [ 6.1204774, 46.2974428 ], + [ 6.1204118, 46.2975171 ], + [ 6.1203242, 46.2975887 ], + [ 6.1201477, 46.2976637 ], + [ 6.1199277, 46.2978802 ], + [ 6.1199773, 46.298047 ], + [ 6.1200072, 46.2981326 ], + [ 6.1201658, 46.2982057 ], + [ 6.1202851, 46.2982783 ], + [ 6.1203989, 46.298353 ], + [ 6.1208205, 46.2985433 ], + [ 6.1209292, 46.2985854 ], + [ 6.1210651, 46.298611 ], + [ 6.1213487, 46.2987755 ], + [ 6.1215468, 46.2989234 ], + [ 6.1217038, 46.2989911 ], + [ 6.1217512, 46.2990372 ], + [ 6.1217918, 46.2991127 ], + [ 6.121784, 46.2994695 ], + [ 6.1217693, 46.2995636 ], + [ 6.1217901, 46.2996642 ], + [ 6.1217311, 46.2999014 ], + [ 6.1216381, 46.300072 ], + [ 6.1215415, 46.3002857 ], + [ 6.1214606, 46.3004124 ], + [ 6.1213986, 46.3005709 ], + [ 6.1213512, 46.3007587 ], + [ 6.1212952, 46.3008331 ], + [ 6.1212557, 46.3008542 ], + [ 6.1211064, 46.3008672 ], + [ 6.1209991, 46.3008391 ], + [ 6.1208676, 46.3008264 ], + [ 6.1207105, 46.3008312 ], + [ 6.1205086, 46.3008118 ], + [ 6.1202356, 46.3008127 ], + [ 6.1201555, 46.3008677 ], + [ 6.1199723, 46.300979 ], + [ 6.1198637, 46.3011217 ], + [ 6.1198407, 46.3011658 ], + [ 6.1196546, 46.3013353 ], + [ 6.1195252, 46.3014067 ], + [ 6.1193387, 46.3016156 ], + [ 6.1191147, 46.3018533 ], + [ 6.119059, 46.3020122 ], + [ 6.1190179, 46.3022607 ], + [ 6.1189772, 46.3024021 ], + [ 6.1189563, 46.3024595 ], + [ 6.1188485, 46.3026443 ], + [ 6.1187702999999996, 46.3028039 ], + [ 6.1187945, 46.3029534 ], + [ 6.11887, 46.3031242 ], + [ 6.1189705, 46.3032284 ], + [ 6.1191812, 46.3033765 ], + [ 6.1192969, 46.3034334 ], + [ 6.1197086, 46.3035702 ], + [ 6.1198831, 46.3036213 ], + [ 6.1199514, 46.3036281 ], + [ 6.1200198, 46.3036864 ], + [ 6.120037, 46.3037332 ], + [ 6.1200083, 46.3038418 ], + [ 6.1199573, 46.3038865 ], + [ 6.1199191, 46.3038991 ], + [ 6.1198027, 46.303911 ], + [ 6.1196962, 46.3038938 ], + [ 6.1196146, 46.3039462 ], + [ 6.1195437, 46.3040312 ], + [ 6.1195597, 46.3041893 ], + [ 6.1197315, 46.3043888 ], + [ 6.1198372, 46.3044945 ], + [ 6.1199504, 46.3045729 ], + [ 6.1201086, 46.3046358 ], + [ 6.1202487, 46.3047718 ], + [ 6.1202767, 46.3048357 ], + [ 6.1202919, 46.3049541 ], + [ 6.1202674, 46.3051174 ], + [ 6.120258, 46.3051553 ], + [ 6.1201903, 46.3051982 ], + [ 6.1199742, 46.305286100000004 ], + [ 6.1198671, 46.3052957 ], + [ 6.1196418, 46.3052688 ], + [ 6.1195236, 46.3053503 ], + [ 6.1194698, 46.3054677 ], + [ 6.1194437, 46.3055842 ], + [ 6.1194787, 46.3056796 ], + [ 6.1195128, 46.3057337 ], + [ 6.1196883, 46.3058797 ], + [ 6.1199215, 46.3060374 ], + [ 6.1201071, 46.3060441 ], + [ 6.120282, 46.3060089 ], + [ 6.1204041, 46.3059772 ], + [ 6.1204661, 46.3060086 ], + [ 6.1205413, 46.3060336 ], + [ 6.1205757, 46.3060601 ], + [ 6.1206285, 46.3061487 ], + [ 6.1206141, 46.3061828 ], + [ 6.1206618, 46.3062732 ], + [ 6.12067, 46.3064047 ], + [ 6.1206488, 46.3064665 ], + [ 6.1206509, 46.3066466 ], + [ 6.1206946, 46.3067003 ], + [ 6.1207608, 46.3067699 ], + [ 6.1207662, 46.3068139 ], + [ 6.1206174, 46.3070029 ], + [ 6.1205474, 46.3070996 ], + [ 6.1205686, 46.3071877 ], + [ 6.1205945, 46.3072729 ], + [ 6.1205886, 46.3073747 ], + [ 6.1205057, 46.307462 ], + [ 6.1204443, 46.3074892 ], + [ 6.1203185, 46.3075235 ], + [ 6.1201666, 46.3075547 ], + [ 6.1200295, 46.3075754 ], + [ 6.1197198, 46.3076352 ], + [ 6.1194332, 46.3076676 ], + [ 6.119298, 46.3077228 ], + [ 6.1192101, 46.3077641 ], + [ 6.1191907, 46.3078458 ], + [ 6.1192589, 46.3079663 ], + [ 6.1193401, 46.3080544 ], + [ 6.1194299, 46.3081604 ], + [ 6.119532, 46.3082646 ], + [ 6.1197366, 46.308306 ], + [ 6.1198404, 46.3083782 ], + [ 6.1198722, 46.3084213 ], + [ 6.1199036, 46.3085292 ], + [ 6.1199156, 46.3086326 ], + [ 6.1198919, 46.3087366 ], + [ 6.1198836, 46.3088508 ], + [ 6.1198953, 46.3089858 ], + [ 6.1199069, 46.309072 ], + [ 6.1198662, 46.309211 ], + [ 6.1198375, 46.3092814 ], + [ 6.1197728, 46.3093255 ], + [ 6.1197267, 46.3094278 ], + [ 6.1197274, 46.3094864 ], + [ 6.1197231, 46.3095367 ], + [ 6.1198743, 46.3096035 ], + [ 6.1200593, 46.3095954 ], + [ 6.12019, 46.3096277 ], + [ 6.120222, 46.3096605 ], + [ 6.1201995, 46.3097248 ], + [ 6.1200945, 46.3098208 ], + [ 6.1200287, 46.3098436 ], + [ 6.1198757, 46.3098855 ], + [ 6.1199006, 46.3099753 ], + [ 6.1199083, 46.3101154 ], + [ 6.1198786, 46.3102126 ], + [ 6.1197813, 46.3103131 ], + [ 6.1196927, 46.3103391 ], + [ 6.1195768, 46.3103781 ], + [ 6.1195457, 46.31042 ], + [ 6.1195444, 46.3104902 ], + [ 6.1197285, 46.3105443 ], + [ 6.1198237, 46.3105831 ], + [ 6.1198835, 46.3106295 ], + [ 6.1200412, 46.3108188 ], + [ 6.120083, 46.3110729 ], + [ 6.1200535, 46.31132 ], + [ 6.1200104, 46.3114172 ], + [ 6.1199957, 46.3115575 ], + [ 6.1200574, 46.3116459 ], + [ 6.1200905, 46.3117331 ], + [ 6.1201137, 46.3118231 ], + [ 6.12033, 46.3120437 ], + [ 6.1203427, 46.3121527 ], + [ 6.1202865, 46.3122098 ], + [ 6.1202084, 46.3122399 ], + [ 6.1200836, 46.3122654 ], + [ 6.119965, 46.3123064 ], + [ 6.1198907, 46.3123398 ], + [ 6.1198201, 46.3124051 ], + [ 6.1197934, 46.3124874 ], + [ 6.1198245, 46.3125641 ], + [ 6.1199986, 46.3127646 ], + [ 6.1201355, 46.3128821 ], + [ 6.1202988, 46.3129404 ], + [ 6.1204361, 46.3130086 ], + [ 6.1204757, 46.3130692 ], + [ 6.1204702, 46.3131235 ], + [ 6.1203895, 46.3131866 ], + [ 6.1203574, 46.3132955 ], + [ 6.1204831, 46.3133266 ], + [ 6.1207541, 46.3133262 ], + [ 6.1209216, 46.3132134 ], + [ 6.1210378, 46.3131437 ], + [ 6.1211723, 46.3131668 ], + [ 6.1212733, 46.3132106 ], + [ 6.1214362, 46.3132924 ], + [ 6.1215321, 46.3133589 ], + [ 6.1216092, 46.3134179 ], + [ 6.1217065, 46.3135025 ], + [ 6.1217135, 46.3135415 ], + [ 6.1220091, 46.3137544 ], + [ 6.1220084, 46.3138209 ], + [ 6.1221168, 46.3139784 ], + [ 6.1222303, 46.3140377 ], + [ 6.1224305, 46.3141184 ], + [ 6.1225855, 46.3141586 ], + [ 6.1227376, 46.3142104 ], + [ 6.1228649, 46.3142737 ], + [ 6.1229023, 46.3143105 ], + [ 6.1228578, 46.3144085 ], + [ 6.1227594, 46.314582 ], + [ 6.1227315, 46.3146626 ], + [ 6.1227432, 46.3147103 ], + [ 6.1227745, 46.3147529 ], + [ 6.1228554, 46.3147991 ], + [ 6.1233402, 46.3150402 ], + [ 6.1235344, 46.3151267 ], + [ 6.1237051, 46.3152076 ], + [ 6.12398, 46.3153928 ], + [ 6.1241111, 46.3155265 ], + [ 6.1241893, 46.3156387 ], + [ 6.1242574, 46.3157282 ], + [ 6.1242891, 46.3157959 ], + [ 6.1242897, 46.3158227 ], + [ 6.1243146, 46.3159199 ], + [ 6.1242806, 46.315988 ], + [ 6.1241878, 46.3160782 ], + [ 6.124232, 46.3162237 ], + [ 6.1242298, 46.3163094 ], + [ 6.1241441, 46.316355 ], + [ 6.12411, 46.3165078 ], + [ 6.1242335, 46.3167075 ], + [ 6.1242903, 46.3168226 ], + [ 6.1243336, 46.3169831 ], + [ 6.1242392, 46.3171582 ], + [ 6.1242293, 46.3172303 ], + [ 6.1243391, 46.3172784 ], + [ 6.1245253, 46.3173091 ], + [ 6.124709, 46.3173448 ], + [ 6.1249383, 46.3173723 ], + [ 6.1250457, 46.3173889 ], + [ 6.1252411, 46.3173912 ], + [ 6.125356, 46.317342 ], + [ 6.1254574, 46.3173186 ], + [ 6.1256028, 46.3173208 ], + [ 6.1257434, 46.3173578 ], + [ 6.1257895, 46.3174699 ], + [ 6.1257982, 46.3174895 ], + [ 6.1257822, 46.3175856 ], + [ 6.1258325, 46.3176621 ], + [ 6.1259518, 46.3177136 ], + [ 6.1260597, 46.3177238 ], + [ 6.1261239, 46.3177502 ], + [ 6.1261393, 46.3178005 ], + [ 6.1260978, 46.3179909 ], + [ 6.1260322, 46.3181058 ], + [ 6.1257779, 46.3182369 ], + [ 6.1256823, 46.3183126 ], + [ 6.125638, 46.3184636 ], + [ 6.1255917, 46.3185854 ], + [ 6.1254227, 46.3187105 ], + [ 6.1254104, 46.3187771 ], + [ 6.1254426, 46.3188804 ], + [ 6.1253933, 46.3189141 ], + [ 6.1980947, 46.367723 ], + [ 6.2045058, 46.3715476 ], + [ 6.2115165, 46.3748302 ], + [ 6.2190311, 46.3775267 ], + [ 6.2269478, 46.3796006 ], + [ 6.2351594, 46.3810239 ], + [ 6.2435545, 46.3817771 ], + [ 6.2520192, 46.3818501 ], + [ 6.2604388, 46.381242 ], + [ 6.2686992, 46.3799608 ], + [ 6.2766882, 46.3780241 ], + [ 6.2825988, 46.376031 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 120, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "CTR0006", + "country" : "CHE", + "name" : [ + { + "text" : "CTR GENEVA", + "lang" : "de-CH" + }, + { + "text" : "CTR GENEVA", + "lang" : "fr-CH" + }, + { + "text" : "CTR GENEVA", + "lang" : "it-CH" + }, + { + "text" : "CTR GENEVA", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only permitted from an altitude of 120 m above ground with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Skyguide Special Flight Office", + "lang" : "de-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "it-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "en-GB" + } + ], + "siteURL" : "https://skyguide.ch/services/special-flights", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.0331253, 47.0284629 ], + [ 7.0328766, 47.0283991 ], + [ 7.0326091, 47.0283709 ], + [ 7.0310762, 47.0283185 ], + [ 7.0310535, 47.0282998 ], + [ 7.0308605, 47.0281915 ], + [ 7.030641, 47.0281101 ], + [ 7.0304029, 47.0280585 ], + [ 7.0300286, 47.0280034 ], + [ 7.0297824, 47.0279835 ], + [ 7.0295352, 47.0279955 ], + [ 7.0292956, 47.028039 ], + [ 7.0290723, 47.0281125 ], + [ 7.028873, 47.0282134 ], + [ 7.028705, 47.028338 ], + [ 7.0285741, 47.0284819 ], + [ 7.0284851, 47.0286401 ], + [ 7.0284645, 47.0286904 ], + [ 7.0283987, 47.0287975 ], + [ 7.0282475, 47.028981 ], + [ 7.0281401, 47.0291497 ], + [ 7.0280851, 47.0293298 ], + [ 7.028084, 47.0293372 ], + [ 7.0280795, 47.029374 ], + [ 7.0280789, 47.0293814 ], + [ 7.0280766, 47.0294184 ], + [ 7.0280764, 47.0294258 ], + [ 7.0280764, 47.0294628 ], + [ 7.0280766, 47.0294701 ], + [ 7.0280768, 47.0294768 ], + [ 7.0280793, 47.0295373 ], + [ 7.028082, 47.0295756 ], + [ 7.0280827, 47.0295825 ], + [ 7.0280642, 47.0296087 ], + [ 7.0280569, 47.0296188 ], + [ 7.0280371, 47.0296472 ], + [ 7.0280275, 47.0296617 ], + [ 7.0280092, 47.0296906 ], + [ 7.0280004, 47.0297052 ], + [ 7.0279836, 47.0297345 ], + [ 7.0279755, 47.0297494 ], + [ 7.02796, 47.0297796 ], + [ 7.0279527, 47.0297945 ], + [ 7.0279392, 47.0298241 ], + [ 7.0279327, 47.0298392 ], + [ 7.0279206, 47.0298691 ], + [ 7.0279149, 47.0298843 ], + [ 7.0279044, 47.0299145 ], + [ 7.0278994, 47.0299298 ], + [ 7.0278787, 47.0300118 ], + [ 7.0278775, 47.0300185 ], + [ 7.0278721, 47.0300538 ], + [ 7.0278713, 47.0300605 ], + [ 7.0278679, 47.0300959 ], + [ 7.0278674, 47.0301027 ], + [ 7.0278661, 47.0301381 ], + [ 7.027866, 47.0301449 ], + [ 7.0278668, 47.0301827 ], + [ 7.0278672, 47.0301894 ], + [ 7.0278701, 47.0302251 ], + [ 7.0278708, 47.0302318 ], + [ 7.0278758, 47.0302673 ], + [ 7.0278769, 47.030274 ], + [ 7.0278838, 47.0303087 ], + [ 7.0278874, 47.0303243 ], + [ 7.0278921, 47.0303438 ], + [ 7.0278944, 47.0303527 ], + [ 7.0279, 47.0303727 ], + [ 7.0279026, 47.0303815 ], + [ 7.0279088, 47.0304014 ], + [ 7.0279117, 47.0304102 ], + [ 7.0279185, 47.0304299 ], + [ 7.0279217, 47.0304386 ], + [ 7.027929, 47.0304577 ], + [ 7.0279324, 47.0304664 ], + [ 7.0279403, 47.0304853 ], + [ 7.027944, 47.0304939 ], + [ 7.0279525, 47.0305127 ], + [ 7.0279565, 47.0305213 ], + [ 7.0279821, 47.0305709 ], + [ 7.0279868, 47.0305793 ], + [ 7.0280113, 47.0306198 ], + [ 7.0280166, 47.030628 ], + [ 7.028044, 47.0306676 ], + [ 7.0280499, 47.0306756 ], + [ 7.0280801, 47.0307143 ], + [ 7.0280865, 47.0307221 ], + [ 7.0281197, 47.03076 ], + [ 7.0281267, 47.0307676 ], + [ 7.0281618, 47.0308036 ], + [ 7.0281693, 47.0308109 ], + [ 7.0282068, 47.0308457 ], + [ 7.0282149, 47.0308528 ], + [ 7.0282548, 47.0308863 ], + [ 7.0282633, 47.0308931 ], + [ 7.0284309, 47.0310051 ], + [ 7.0286248, 47.0310949 ], + [ 7.0286698, 47.031112 ], + [ 7.0287207, 47.0311303 ], + [ 7.0290393, 47.031239 ], + [ 7.029253, 47.0312965 ], + [ 7.0294263, 47.0313206 ], + [ 7.0333938, 47.0313798 ], + [ 7.0335285, 47.0313351 ], + [ 7.0337386, 47.0312249 ], + [ 7.0338989, 47.0310987 ], + [ 7.0338763, 47.0310666 ], + [ 7.0336859, 47.0307387 ], + [ 7.0334846, 47.0303369 ], + [ 7.0332889, 47.0297834 ], + [ 7.0331877, 47.029324 ], + [ 7.0331428, 47.0289108 ], + [ 7.0331253, 47.0284629 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "NE14", + "country" : "CHE", + "name" : [ + { + "text" : "GROUPE E SA", + "lang" : "de-CH" + }, + { + "text" : "GROUPE E SA", + "lang" : "fr-CH" + }, + { + "text" : "GROUPE E SA", + "lang" : "it-CH" + }, + { + "text" : "GROUPE E SA", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "regulationExemption" : "YES", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Police Neuchâteloise", + "lang" : "de-CH" + }, + { + "text" : "Police Neuchâteloise", + "lang" : "fr-CH" + }, + { + "text" : "Police Neuchâteloise", + "lang" : "it-CH" + }, + { + "text" : "Police Neuchâteloise", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "PN - Rens et opérations", + "lang" : "de-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "fr-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "it-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "PN - Rens et opérations", + "lang" : "de-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "fr-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "it-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ne.ch/autorites/DESC/PONE/Pages/Drones.aspx", + "email" : "Police.Neuchateloise@ne.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4276384, 46.9470163 ], + [ 7.427633, 46.9468751 ], + [ 7.4276169, 46.9467343 ], + [ 7.42759, 46.9465942 ], + [ 7.4275524, 46.9464553 ], + [ 7.4275043, 46.9463179 ], + [ 7.4274457, 46.9461824 ], + [ 7.4273769, 46.9460492 ], + [ 7.427298, 46.9459187 ], + [ 7.4272092, 46.9457912 ], + [ 7.4271108, 46.945667 ], + [ 7.427003, 46.9455465 ], + [ 7.4268862, 46.9454301 ], + [ 7.4267606, 46.945318 ], + [ 7.4266267, 46.9452105 ], + [ 7.4264847, 46.945108 ], + [ 7.4263351, 46.9450108 ], + [ 7.4261782, 46.944919 ], + [ 7.4260146, 46.944833 ], + [ 7.4258446, 46.9447529 ], + [ 7.4256687, 46.9446791 ], + [ 7.4254875, 46.9446117 ], + [ 7.4253013, 46.9445508 ], + [ 7.4251107, 46.9444967 ], + [ 7.4249162, 46.9444495 ], + [ 7.4247185, 46.9444094 ], + [ 7.4245179, 46.9443764 ], + [ 7.424315, 46.9443506 ], + [ 7.4241105, 46.9443321 ], + [ 7.4239049, 46.944321 ], + [ 7.4236987, 46.9443173 ], + [ 7.4234924, 46.944321 ], + [ 7.4232868, 46.944332 ], + [ 7.4230822, 46.9443504 ], + [ 7.4228794, 46.9443762 ], + [ 7.4226788, 46.9444091 ], + [ 7.422481, 46.9444492 ], + [ 7.4222865, 46.9444963 ], + [ 7.4220959, 46.9445504 ], + [ 7.4219097, 46.9446112 ], + [ 7.4217284, 46.9446785 ], + [ 7.4215524, 46.9447523 ], + [ 7.4213824, 46.9448323 ], + [ 7.4212187, 46.9449183 ], + [ 7.4210618, 46.94501 ], + [ 7.4209121, 46.9451073 ], + [ 7.4207701, 46.9452097 ], + [ 7.4206361, 46.9453171 ], + [ 7.4205105, 46.9454292 ], + [ 7.4203936, 46.9455456 ], + [ 7.4202857, 46.9456661 ], + [ 7.4201873, 46.9457902 ], + [ 7.4200984, 46.9459177 ], + [ 7.4200194, 46.9460482 ], + [ 7.4199505, 46.9461814 ], + [ 7.4198918, 46.9463168 ], + [ 7.4198436, 46.9464542 ], + [ 7.419806, 46.9465931 ], + [ 7.419779, 46.9467332 ], + [ 7.4197628, 46.946874 ], + [ 7.4197573, 46.9470152 ], + [ 7.4197627, 46.9471565 ], + [ 7.4197788, 46.9472973 ], + [ 7.4198057, 46.9474374 ], + [ 7.4198432, 46.9475763 ], + [ 7.4198913, 46.9477137 ], + [ 7.4199499, 46.9478492 ], + [ 7.4200187, 46.9479824 ], + [ 7.4200976, 46.9481129 ], + [ 7.4201864, 46.9482404 ], + [ 7.4202848, 46.9483646 ], + [ 7.4203925, 46.9484851 ], + [ 7.4205093, 46.9486015 ], + [ 7.4206349, 46.9487136 ], + [ 7.4207688, 46.9488211 ], + [ 7.4209108, 46.9489236 ], + [ 7.4210604, 46.9490209 ], + [ 7.4212173, 46.9491127 ], + [ 7.4213809, 46.9491987 ], + [ 7.4215509, 46.9492787 ], + [ 7.4217268, 46.9493526 ], + [ 7.4219081, 46.94942 ], + [ 7.4220943, 46.9494809 ], + [ 7.4222849, 46.949535 ], + [ 7.4224793, 46.9495822 ], + [ 7.4226771, 46.9496223 ], + [ 7.4228777, 46.9496553 ], + [ 7.4230806, 46.9496811 ], + [ 7.4232851, 46.9496996 ], + [ 7.4234908, 46.9497107 ], + [ 7.4236971, 46.9497144 ], + [ 7.4239033, 46.9497107 ], + [ 7.424109, 46.9496997 ], + [ 7.4243135, 46.9496813 ], + [ 7.4245164, 46.9496555 ], + [ 7.424717, 46.9496226 ], + [ 7.4249148, 46.9495825 ], + [ 7.4251093, 46.9495354 ], + [ 7.4253, 46.9494813 ], + [ 7.4254862, 46.9494205 ], + [ 7.4256675, 46.9493531 ], + [ 7.4258435, 46.9492793 ], + [ 7.4260135, 46.9491993 ], + [ 7.4261772, 46.9491133 ], + [ 7.4263341, 46.9490216 ], + [ 7.4264838, 46.9489244 ], + [ 7.4266258, 46.9488219 ], + [ 7.4267598, 46.9487145 ], + [ 7.4268854, 46.9486024 ], + [ 7.4270023, 46.948486 ], + [ 7.4271101999999996, 46.9483656 ], + [ 7.4272086, 46.9482414 ], + [ 7.4272975, 46.9481139 ], + [ 7.4273764, 46.9479834 ], + [ 7.4274453, 46.9478502 ], + [ 7.427504, 46.9477148 ], + [ 7.4275522, 46.9475774 ], + [ 7.4275898, 46.9474385 ], + [ 7.4276167, 46.9472984 ], + [ 7.427633, 46.9471576 ], + [ 7.4276384, 46.9470163 ] + ] + ], + "layer" : { + "upper" : 300, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BEW0001", + "country" : "CHE", + "name" : [ + { + "text" : "BEWA Inselspital", + "lang" : "de-CH" + }, + { + "text" : "BEWA Inselspital", + "lang" : "fr-CH" + }, + { + "text" : "BEWA Inselspital", + "lang" : "it-CH" + }, + { + "text" : "BEWA Inselspital", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Bewachungsstation Inselspital", + "lang" : "de-CH" + }, + { + "text" : "Bewachungsstation Inselspital", + "lang" : "fr-CH" + }, + { + "text" : "Bewachungstation Inselspital", + "lang" : "it-CH" + }, + { + "text" : "Bewachungsstation Inselspital", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachbereich Sicherheit", + "lang" : "de-CH" + }, + { + "text" : "Fachbereich Sicherheit", + "lang" : "fr-CH" + }, + { + "text" : "Fachbereich Sicherheit", + "lang" : "it-CH" + }, + { + "text" : "Fachbereich Sicherheit", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ajv.sid.be.ch/de/start/themen/haft/bewachungsstation.html", + "email" : "bewa.admin@be.ch", + "phone" : "0041316323504", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8855125, 47.4153606 ], + [ 7.885529, 47.4153183 ], + [ 7.8855349, 47.4153 ], + [ 7.8855647, 47.4152264 ], + [ 7.8856201, 47.4151336 ], + [ 7.8856845, 47.4150425 ], + [ 7.8857842, 47.4149688 ], + [ 7.8860541, 47.4148731 ], + [ 7.8860773, 47.4148638 ], + [ 7.8863633, 47.4147489 ], + [ 7.886368, 47.4147477 ], + [ 7.8866546, 47.4145089 ], + [ 7.8866602, 47.4145049 ], + [ 7.8866542, 47.4145012 ], + [ 7.8865692, 47.4144496 ], + [ 7.8865153, 47.4144174 ], + [ 7.8864168, 47.4143704 ], + [ 7.8860393, 47.4147056 ], + [ 7.8856257, 47.4149504 ], + [ 7.8855577, 47.415005 ], + [ 7.8854949, 47.4150761 ], + [ 7.8854372999999995, 47.4151723 ], + [ 7.8854051, 47.4152675 ], + [ 7.8854298, 47.415353 ], + [ 7.8855125, 47.4153606 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns178", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Mapprach - Hofmatt", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Mapprach - Hofmatt", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Mapprach - Hofmatt", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Mapprach - Hofmatt", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.0671376, 46.2162087 ], + [ 6.0671358, 46.2160674 ], + [ 6.0671234, 46.2159264 ], + [ 6.0671004, 46.2157861 ], + [ 6.0670668, 46.2156467 ], + [ 6.0670227, 46.2155088 ], + [ 6.0669684, 46.2153726 ], + [ 6.0669038, 46.2152387 ], + [ 6.0668292, 46.2151072 ], + [ 6.0667448, 46.2149786 ], + [ 6.0666508, 46.2148533 ], + [ 6.0665476, 46.2147316 ], + [ 6.0664352, 46.2146137 ], + [ 6.0663142, 46.2145002 ], + [ 6.0661847, 46.2143911 ], + [ 6.0660472, 46.214287 ], + [ 6.0659021, 46.2141879 ], + [ 6.0657497, 46.2140943 ], + [ 6.0655904, 46.2140064 ], + [ 6.0654247, 46.2139243 ], + [ 6.0652531, 46.2138484 ], + [ 6.0650759, 46.2137788 ], + [ 6.0648938, 46.2137158 ], + [ 6.0647072, 46.2136594 ], + [ 6.0645166, 46.2136099 ], + [ 6.0643225, 46.2135674 ], + [ 6.0641254, 46.213532 ], + [ 6.063926, 46.2135038 ], + [ 6.0637247, 46.2134829 ], + [ 6.0635221, 46.2134694 ], + [ 6.0633188, 46.2134632 ], + [ 6.0631153, 46.2134644 ], + [ 6.0629122, 46.213473 ], + [ 6.06271, 46.213489 ], + [ 6.0625092, 46.2135123 ], + [ 6.0623105, 46.2135429 ], + [ 6.0621144, 46.2135806 ], + [ 6.0619214, 46.2136254 ], + [ 6.061732, 46.2136772 ], + [ 6.0615468, 46.2137357 ], + [ 6.0613663, 46.213801 ], + [ 6.0611909, 46.2138727 ], + [ 6.0610212, 46.2139506 ], + [ 6.0608576, 46.2140346 ], + [ 6.0607005, 46.2141245 ], + [ 6.0605505, 46.2142199 ], + [ 6.0604078, 46.2143207 ], + [ 6.0602729, 46.2144265 ], + [ 6.0601462, 46.214537 ], + [ 6.060028, 46.214652 ], + [ 6.0599186, 46.2147712 ], + [ 6.0598184, 46.2148941 ], + [ 6.0597275, 46.2150205 ], + [ 6.0596464, 46.2151501 ], + [ 6.059575, 46.2152824 ], + [ 6.0595138, 46.2154172 ], + [ 6.0594628, 46.2155539 ], + [ 6.0594222, 46.2156924 ], + [ 6.0593921, 46.2158321 ], + [ 6.0593726, 46.2159727 ], + [ 6.0593637, 46.2161139 ], + [ 6.0593654, 46.2162552 ], + [ 6.0593778, 46.2163962 ], + [ 6.0594008, 46.2165366 ], + [ 6.0594344, 46.2166759 ], + [ 6.0594784, 46.2168138 ], + [ 6.0595328, 46.21695 ], + [ 6.0595973, 46.217084 ], + [ 6.0596719, 46.2172154 ], + [ 6.0597563, 46.217344 ], + [ 6.0598503, 46.2174693 ], + [ 6.0599535, 46.2175911 ], + [ 6.0600659, 46.2177089 ], + [ 6.0601869, 46.2178225 ], + [ 6.0603163, 46.2179315 ], + [ 6.0604538, 46.2180357 ], + [ 6.060599, 46.2181347 ], + [ 6.0607514, 46.2182284 ], + [ 6.0609107, 46.2183163 ], + [ 6.0610764, 46.2183984 ], + [ 6.061248, 46.2184743 ], + [ 6.0614252, 46.2185439 ], + [ 6.0616073, 46.218607 ], + [ 6.061794, 46.2186633 ], + [ 6.0619846, 46.2187128 ], + [ 6.0621787, 46.2187553 ], + [ 6.0623758, 46.2187907 ], + [ 6.0625752, 46.2188189 ], + [ 6.0627765, 46.2188398 ], + [ 6.0629791, 46.2188534 ], + [ 6.0631825, 46.2188595 ], + [ 6.063386, 46.2188583 ], + [ 6.0635891, 46.2188497 ], + [ 6.0637914, 46.2188337 ], + [ 6.0639921, 46.2188104 ], + [ 6.0641908, 46.2187799 ], + [ 6.064387, 46.2187421 ], + [ 6.06458, 46.2186973 ], + [ 6.0647694, 46.2186455 ], + [ 6.0649546, 46.218587 ], + [ 6.0651351, 46.2185217 ], + [ 6.0653105, 46.21845 ], + [ 6.0654802, 46.2183721 ], + [ 6.0656439, 46.2182881 ], + [ 6.0658009, 46.2181982 ], + [ 6.065951, 46.2181028 ], + [ 6.0660937, 46.218002 ], + [ 6.0662285, 46.2178962 ], + [ 6.0663553, 46.2177856 ], + [ 6.0664735, 46.2176706 ], + [ 6.0665828, 46.2175515 ], + [ 6.0666831, 46.2174285 ], + [ 6.0667739, 46.2173021 ], + [ 6.066855, 46.2171725 ], + [ 6.0669263, 46.2170402 ], + [ 6.0669875, 46.2169055 ], + [ 6.0670385, 46.2167687 ], + [ 6.0670791, 46.2166302 ], + [ 6.0671092, 46.2164905 ], + [ 6.0671287, 46.2163499 ], + [ 6.0671376, 46.2162087 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE28", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7899048, 46.3098175 ], + [ 7.7898007, 46.3074638 ], + [ 7.789519, 46.3051172 ], + [ 7.7890605, 46.3027839 ], + [ 7.7884265, 46.3004705 ], + [ 7.7876187, 46.2981833 ], + [ 7.7866394, 46.2959284 ], + [ 7.7854913, 46.2937122 ], + [ 7.7841775, 46.2915407 ], + [ 7.7827017, 46.2894198 ], + [ 7.7810679, 46.2873553 ], + [ 7.7792806, 46.2853529 ], + [ 7.7773448, 46.283418 ], + [ 7.7752657, 46.281556 ], + [ 7.773049, 46.279772 ], + [ 7.7707008, 46.2780707 ], + [ 7.7682276, 46.276457 ], + [ 7.7656362, 46.2749352 ], + [ 7.7629335, 46.2735095 ], + [ 7.7601272, 46.2721837 ], + [ 7.7572247, 46.2709615 ], + [ 7.7542341, 46.2698462 ], + [ 7.7511635, 46.268841 ], + [ 7.7480214, 46.2679485 ], + [ 7.7448163, 46.2671711 ], + [ 7.7415571, 46.2665111 ], + [ 7.7382526, 46.2659701 ], + [ 7.7349118, 46.2655498 ], + [ 7.7315439, 46.2652512 ], + [ 7.7281582, 46.2650751 ], + [ 7.7247638, 46.2650221 ], + [ 7.72137, 46.2650922 ], + [ 7.7179862, 46.2652854 ], + [ 7.7146216, 46.265601 ], + [ 7.7112853, 46.2660382 ], + [ 7.7079866, 46.2665958 ], + [ 7.7047343, 46.2672722 ], + [ 7.7015375, 46.2680657 ], + [ 7.6984048, 46.2689741 ], + [ 7.6953449, 46.2699948 ], + [ 7.692366, 46.2711251 ], + [ 7.6894765, 46.2723619 ], + [ 7.686684, 46.2737018 ], + [ 7.6839964, 46.2751412 ], + [ 7.681421, 46.276676 ], + [ 7.6789648, 46.2783022 ], + [ 7.6766346, 46.2800152 ], + [ 7.6744366, 46.2818104 ], + [ 7.6723771, 46.2836828 ], + [ 7.6704616, 46.2856274 ], + [ 7.6686954, 46.2876388 ], + [ 7.6670833, 46.2897115 ], + [ 7.6656298, 46.2918398 ], + [ 7.6643389, 46.2940179 ], + [ 7.6632141, 46.2962398 ], + [ 7.6622585, 46.2984995 ], + [ 7.6614747, 46.3007908 ], + [ 7.660865, 46.3031074 ], + [ 7.660431, 46.3054428 ], + [ 7.660174, 46.3077909 ], + [ 7.6600946, 46.310145 ], + [ 7.6601931, 46.3124988 ], + [ 7.6604693, 46.3148458 ], + [ 7.6609223, 46.3171795 ], + [ 7.6615511, 46.3194937 ], + [ 7.6623539, 46.3217818 ], + [ 7.6633285, 46.3240377 ], + [ 7.6644723, 46.3262552 ], + [ 7.6657820999999995, 46.3284281 ], + [ 7.6672544, 46.3305505 ], + [ 7.6688852, 46.3326167 ], + [ 7.6706699, 46.3346208 ], + [ 7.6726038, 46.3365575 ], + [ 7.6746815, 46.3384214 ], + [ 7.6768973, 46.3402074 ], + [ 7.6792452, 46.3419105 ], + [ 7.6817188, 46.3435262 ], + [ 7.6843112, 46.34505 ], + [ 7.6870153, 46.3464776 ], + [ 7.6898237, 46.3478052 ], + [ 7.6927288, 46.3490291 ], + [ 7.6957225000000005, 46.350146 ], + [ 7.6987966, 46.3511527 ], + [ 7.7019427, 46.3520466 ], + [ 7.7051522, 46.3528252 ], + [ 7.7084162, 46.3534863 ], + [ 7.7117258, 46.3540281 ], + [ 7.7150718, 46.3544491 ], + [ 7.7184451, 46.3547482 ], + [ 7.7218364, 46.3549246 ], + [ 7.7252364, 46.3549777 ], + [ 7.7286358, 46.3549074 ], + [ 7.7320250999999995, 46.354714 ], + [ 7.7353952, 46.3543979 ], + [ 7.7387367, 46.3539599 ], + [ 7.7420405, 46.3534015 ], + [ 7.7452974, 46.3527239 ], + [ 7.7484986, 46.3519292 ], + [ 7.7516352, 46.3510194 ], + [ 7.7546986, 46.3499972 ], + [ 7.7576805, 46.3488652 ], + [ 7.7605726, 46.3476267 ], + [ 7.763367, 46.3462849 ], + [ 7.766056, 46.3448437 ], + [ 7.7686323, 46.3433069 ], + [ 7.7710887, 46.3416788 ], + [ 7.7734187, 46.3399639 ], + [ 7.7756156, 46.3381668 ], + [ 7.7776737, 46.3362924 ], + [ 7.7795871, 46.3343461 ], + [ 7.7813507, 46.3323329 ], + [ 7.7829597, 46.3302586 ], + [ 7.7844097, 46.3281288 ], + [ 7.7856966, 46.3259493 ], + [ 7.786817, 46.3237262 ], + [ 7.7877679, 46.3214654 ], + [ 7.7885466, 46.3191733 ], + [ 7.789151, 46.316856 ], + [ 7.7895796, 46.3145201 ], + [ 7.7898311, 46.3121717 ], + [ 7.7899048, 46.3098175 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSEG001", + "country" : "CHE", + "name" : [ + { + "text" : "LSEG Gampel", + "lang" : "de-CH" + }, + { + "text" : "LSEG Gampel", + "lang" : "fr-CH" + }, + { + "text" : "LSEG Gampel", + "lang" : "it-CH" + }, + { + "text" : "LSEG Gampel", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Air Zermatt AG", + "lang" : "de-CH" + }, + { + "text" : "Air Zermatt AG", + "lang" : "fr-CH" + }, + { + "text" : "Air Zermatt AG", + "lang" : "it-CH" + }, + { + "text" : "Air Zermatt AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.air-zermatt.ch/en/air-zermatt/contact", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7498539, 47.3877876 ], + [ 7.7497892, 47.3878134 ], + [ 7.7497682999999995, 47.3879675 ], + [ 7.7497613, 47.38799 ], + [ 7.7499055, 47.388129 ], + [ 7.7499801999999995, 47.388479 ], + [ 7.7499829, 47.3885243 ], + [ 7.7499888, 47.3886243 ], + [ 7.7499643, 47.388704 ], + [ 7.7499797, 47.3887033 ], + [ 7.7502559, 47.3886917 ], + [ 7.750498, 47.3886815 ], + [ 7.7505030999999995, 47.3886813 ], + [ 7.750539, 47.3885573 ], + [ 7.750694, 47.3884479 ], + [ 7.7506803, 47.3881261 ], + [ 7.7505535, 47.3877984 ], + [ 7.7503153000000005, 47.3877948 ], + [ 7.7500915, 47.3877903 ], + [ 7.7498539, 47.3877876 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns206", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Edlisberg - Meiersberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Edlisberg - Meiersberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Edlisberg - Meiersberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Edlisberg - Meiersberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8580303, 47.4752223 ], + [ 7.8577247, 47.4747736 ], + [ 7.8575303, 47.4744916 ], + [ 7.8573701, 47.4742846 ], + [ 7.8573428, 47.4742517 ], + [ 7.8571656999999995, 47.4740387 ], + [ 7.8574925, 47.4738382 ], + [ 7.8573591, 47.4735141 ], + [ 7.8572172, 47.4731685 ], + [ 7.857087, 47.4729052 ], + [ 7.8568591, 47.4729117 ], + [ 7.8565188, 47.4729438 ], + [ 7.856166, 47.4730191 ], + [ 7.8559751, 47.4728078 ], + [ 7.85577, 47.4726416 ], + [ 7.8556481, 47.4724385 ], + [ 7.855634, 47.4724152 ], + [ 7.8555307, 47.4722524 ], + [ 7.855493, 47.4721931 ], + [ 7.8553748, 47.472007 ], + [ 7.8551049, 47.471637 ], + [ 7.8550162, 47.4715155 ], + [ 7.8549016, 47.4713256 ], + [ 7.8549468000000005, 47.4710222 ], + [ 7.854802, 47.4709812 ], + [ 7.854606, 47.4711657 ], + [ 7.8545309, 47.4713274 ], + [ 7.8545697, 47.4715392 ], + [ 7.8546391, 47.4717226 ], + [ 7.8548232, 47.4719647 ], + [ 7.8550067, 47.4723472 ], + [ 7.8550388, 47.4723941 ], + [ 7.855138, 47.4725389 ], + [ 7.8551621, 47.4725741 ], + [ 7.8554082, 47.4727298 ], + [ 7.8555694, 47.4729009 ], + [ 7.8557187, 47.4731455 ], + [ 7.8557711, 47.473325 ], + [ 7.8559083, 47.4734599 ], + [ 7.8560292, 47.4736274 ], + [ 7.8562515, 47.4737822 ], + [ 7.8564945999999996, 47.473963 ], + [ 7.8568285, 47.4741979 ], + [ 7.8570471, 47.474457 ], + [ 7.8571624, 47.4747013 ], + [ 7.8573251, 47.4749422 ], + [ 7.8572594, 47.4751046 ], + [ 7.8572032, 47.4752492 ], + [ 7.8572251, 47.475367 ], + [ 7.8573345, 47.4753483 ], + [ 7.8574380999999995, 47.475225 ], + [ 7.8575303, 47.4751602 ], + [ 7.8576697, 47.4751998 ], + [ 7.8578033, 47.4753423 ], + [ 7.8580444, 47.4755504 ], + [ 7.8582065, 47.4755498 ], + [ 7.8582488999999995, 47.4754731 ], + [ 7.8580303, 47.4752223 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr076", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Lörenhöldeli", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Lörenhöldeli", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Lörenhöldeli", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Lörenhöldeli", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.6084616, 47.6370688 ], + [ 8.608589, 47.6369648 ], + [ 8.6087138, 47.6368515 ], + [ 8.6088296, 47.6367339 ], + [ 8.6089361, 47.6366124 ], + [ 8.6090331, 47.6364872 ], + [ 8.6091202, 47.6363589 ], + [ 8.6091973, 47.6362276 ], + [ 8.6092641, 47.6360937 ], + [ 8.609320499999999, 47.6359577 ], + [ 8.6093662, 47.6358199 ], + [ 8.6094012, 47.6356806 ], + [ 8.6094254, 47.6355403 ], + [ 8.6094387, 47.6353994 ], + [ 8.609441, 47.6352581 ], + [ 8.6094324, 47.635117 ], + [ 8.6094129, 47.6349764 ], + [ 8.6093826, 47.6348366 ], + [ 8.6093414, 47.6346981 ], + [ 8.6092896, 47.6345613 ], + [ 8.6092273, 47.634426500000004 ], + [ 8.6091546, 47.634294 ], + [ 8.6090718, 47.6341643 ], + [ 8.608979, 47.6340378 ], + [ 8.6088765, 47.6339147 ], + [ 8.6087647, 47.6337953 ], + [ 8.6086438, 47.6336801 ], + [ 8.6085141, 47.6335694 ], + [ 8.608376, 47.6334633 ], + [ 8.6082299, 47.6333623 ], + [ 8.6080762, 47.6332667 ], + [ 8.6079153, 47.6331765 ], + [ 8.607747700000001, 47.6330922 ], + [ 8.6075737, 47.633014 ], + [ 8.6073939, 47.632942 ], + [ 8.6072088, 47.6328764 ], + [ 8.6070189, 47.6328175 ], + [ 8.6068246, 47.6327654 ], + [ 8.6066266, 47.6327203 ], + [ 8.6064254, 47.6326822 ], + [ 8.6062215, 47.6326512 ], + [ 8.6060155, 47.6326276 ], + [ 8.6058079, 47.6326112 ], + [ 8.6055994, 47.6326022 ], + [ 8.6053904, 47.6326006 ], + [ 8.6051816, 47.6326064 ], + [ 8.6049736, 47.6326196 ], + [ 8.6047668, 47.6326401 ], + [ 8.6045619, 47.6326679 ], + [ 8.6043595, 47.6327029 ], + [ 8.60416, 47.6327451 ], + [ 8.6039641, 47.6327942 ], + [ 8.6037723, 47.6328502 ], + [ 8.603585, 47.6329129 ], + [ 8.6034029, 47.6329821 ], + [ 8.6032263, 47.6330577 ], + [ 8.6030559, 47.6331394 ], + [ 8.602892, 47.6332271 ], + [ 8.6027351, 47.6333204 ], + [ 8.6025857, 47.6334191 ], + [ 8.6024441, 47.633523 ], + [ 8.6023108, 47.6336318 ], + [ 8.602186, 47.6337451 ], + [ 8.6020702, 47.6338627 ], + [ 8.6019637, 47.6339842 ], + [ 8.6018667, 47.6341093 ], + [ 8.6017796, 47.6342377 ], + [ 8.6017025, 47.634369 ], + [ 8.6016356, 47.6345028 ], + [ 8.6015793, 47.6346389 ], + [ 8.6015335, 47.6347767 ], + [ 8.6014985, 47.6349159 ], + [ 8.6014743, 47.6350562 ], + [ 8.6014609, 47.6351972 ], + [ 8.6014586, 47.6353384 ], + [ 8.6014672, 47.6354796 ], + [ 8.6014866, 47.6356202 ], + [ 8.601517, 47.63576 ], + [ 8.6015581, 47.6358984 ], + [ 8.6016099, 47.6360353 ], + [ 8.6016722, 47.6361701 ], + [ 8.6017449, 47.6363026 ], + [ 8.6018277, 47.6364322 ], + [ 8.6019205, 47.6365588 ], + [ 8.6020229, 47.6366819 ], + [ 8.6021347, 47.6368013 ], + [ 8.6022556, 47.6369165 ], + [ 8.6023853, 47.6370272 ], + [ 8.602523399999999, 47.6371333 ], + [ 8.6026695, 47.6372343 ], + [ 8.6028232, 47.63733 ], + [ 8.6029841, 47.6374201 ], + [ 8.6031518, 47.6375044 ], + [ 8.6033257, 47.6375827 ], + [ 8.6035055, 47.6376547 ], + [ 8.6036907, 47.6377202 ], + [ 8.6038806, 47.6377791 ], + [ 8.6040749, 47.6378313 ], + [ 8.6042729, 47.6378764 ], + [ 8.6044032, 47.6379011 ], + [ 8.6046654, 47.6377463 ], + [ 8.6050165, 47.6375742 ], + [ 8.6053891, 47.6374242 ], + [ 8.6057803, 47.6372977 ], + [ 8.6061868, 47.6371956 ], + [ 8.6066054, 47.6371188 ], + [ 8.6070324, 47.6370678 ], + [ 8.6074646, 47.6370432 ], + [ 8.6078983, 47.6370451 ], + [ 8.6084616, 47.6370688 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "RHE0001", + "country" : "CHE", + "name" : [ + { + "text" : "Vollzugseinrichtung / Psychiatrische Forensik Rheinau", + "lang" : "de-CH" + }, + { + "text" : "Vollzugseinrichtung / Psychiatrische Forensik Rheinau", + "lang" : "fr-CH" + }, + { + "text" : "Vollzugseinrichtung / Psychiatrische Forensik Rheinau", + "lang" : "it-CH" + }, + { + "text" : "Vollzugseinrichtung / Psychiatrische Forensik Rheinau", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Psychiatrische Universitätsklinik, Klinik für Stationäre Forensische Therapie, Alleestrasse 59, 8462 Rheinau", + "lang" : "de-CH" + }, + { + "text" : "Psychiatrische Universitätsklinik, Klinik für Stationäre Forensische Therapie, Alleestrasse 59, 8462 Rheinau", + "lang" : "fr-CH" + }, + { + "text" : "Psychiatrische Universitätsklinik, Klinik für Stationäre Forensische Therapie, Alleestrasse 59, 8462 Rheinau", + "lang" : "it-CH" + }, + { + "text" : "Psychiatrische Universitätsklinik, Klinik für Stationäre Forensische Therapie, Alleestrasse 59, 8462 Rheinau", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Sicherheitsstation, Leiter/in Sicherheitszentrale", + "lang" : "de-CH" + }, + { + "text" : "Sicherheitsstation, Leiter/in Sicherheitszentrale", + "lang" : "fr-CH" + }, + { + "text" : "Sicherheitsstation, Leiter/in Sicherheitszentrale", + "lang" : "it-CH" + }, + { + "text" : "Sicherheitsstation, Leiter/in Sicherheitszentrale", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Herbert Hofer / Michel Zollinger", + "lang" : "de-CH" + }, + { + "text" : "Herbert Hofer / Michel Zollinger", + "lang" : "fr-CH" + }, + { + "text" : "Herbert Hofer / Michel Zollinger", + "lang" : "it-CH" + }, + { + "text" : "Herbert Hofer / Michel Zollinger", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.pukzh.ch/unsere-angebote/forensische-psychiatrie/", + "email" : "station59az@pukzh.ch", + "phone" : "0041583842111", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT12H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5216769, 47.5429591 ], + [ 7.5216188, 47.5432331 ], + [ 7.5215539, 47.5435098 ], + [ 7.5215455, 47.5435404 ], + [ 7.5215442, 47.5435449 ], + [ 7.5215872, 47.5435723 ], + [ 7.5216022, 47.5435817 ], + [ 7.5216262, 47.5435951 ], + [ 7.5216553, 47.5436257 ], + [ 7.5216764, 47.5436441 ], + [ 7.5216978999999995, 47.5436565 ], + [ 7.5217076, 47.543662 ], + [ 7.5217299, 47.5436793 ], + [ 7.5217773, 47.5437253 ], + [ 7.5218084, 47.5437488 ], + [ 7.5218291, 47.5437607 ], + [ 7.5218727, 47.5437824 ], + [ 7.5218935, 47.5437971 ], + [ 7.5219609, 47.543851599999996 ], + [ 7.5220397, 47.5439213 ], + [ 7.5221175, 47.5440019 ], + [ 7.5221381, 47.5440184 ], + [ 7.5221693, 47.5440332 ], + [ 7.5221917, 47.5440475 ], + [ 7.5222238, 47.5440722 ], + [ 7.5222827, 47.5441219 ], + [ 7.5223347, 47.544159 ], + [ 7.5223694, 47.5441857 ], + [ 7.5223754, 47.5441916 ], + [ 7.5224209, 47.5441609 ], + [ 7.5227096, 47.5439662 ], + [ 7.5224596, 47.5438016 ], + [ 7.522177, 47.543626 ], + [ 7.5216769, 47.5429591 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns263", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Allschwilerwald", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Allschwilerwald", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Allschwilerwald", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Allschwilerwald", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8413056999999995, 47.3776691 ], + [ 7.8413289, 47.3776905 ], + [ 7.8416707, 47.377788699999996 ], + [ 7.8417633, 47.3778138 ], + [ 7.8419446, 47.3778615 ], + [ 7.8419799, 47.3778978 ], + [ 7.8423444, 47.377981 ], + [ 7.842394, 47.3779747 ], + [ 7.842415, 47.3779473 ], + [ 7.8424042, 47.3779128 ], + [ 7.8421813, 47.3778474 ], + [ 7.8418649, 47.3777551 ], + [ 7.841651, 47.3777039 ], + [ 7.8414177, 47.3776544 ], + [ 7.8413351, 47.377646 ], + [ 7.8413056999999995, 47.3776691 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns049", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Hecken-Komplex Schmutzberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Hecken-Komplex Schmutzberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Hecken-Komplex Schmutzberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Hecken-Komplex Schmutzberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6598797, 46.6810138 ], + [ 7.6598737, 46.6808725 ], + [ 7.6598571, 46.6807317 ], + [ 7.6598296999999995, 46.6805917 ], + [ 7.6597916999999995, 46.6804528 ], + [ 7.6597432, 46.6803156 ], + [ 7.6596844, 46.6801802 ], + [ 7.6596153000000005, 46.6800472 ], + [ 7.6595362, 46.6799168 ], + [ 7.6594473, 46.6797894 ], + [ 7.6593489, 46.6796655 ], + [ 7.6592411, 46.6795452 ], + [ 7.6591244, 46.679429 ], + [ 7.658999, 46.6793171 ], + [ 7.6588652, 46.67921 ], + [ 7.6587235, 46.6791078 ], + [ 7.6585742, 46.6790108 ], + [ 7.6584177, 46.6789193 ], + [ 7.6582545, 46.6788336 ], + [ 7.658085, 46.6787539 ], + [ 7.6579097, 46.6786804 ], + [ 7.657729, 46.6786134 ], + [ 7.6575435, 46.6785529 ], + [ 7.6573536, 46.6784992 ], + [ 7.6571599, 46.6784524 ], + [ 7.6569629, 46.6784127 ], + [ 7.6567632, 46.6783801 ], + [ 7.6565613, 46.6783547 ], + [ 7.6563577, 46.6783366 ], + [ 7.656153, 46.6783259 ], + [ 7.6559478, 46.6783226 ], + [ 7.6557426, 46.6783267 ], + [ 7.655538, 46.6783382 ], + [ 7.6553345, 46.678357 ], + [ 7.6551328, 46.6783832 ], + [ 7.6549333, 46.6784165 ], + [ 7.6547367, 46.678457 ], + [ 7.6545434, 46.6785045 ], + [ 7.6543539, 46.678559 ], + [ 7.6541689, 46.6786201 ], + [ 7.6539888, 46.6786879 ], + [ 7.653814, 46.678762 ], + [ 7.6536452, 46.6788424 ], + [ 7.6534826, 46.6789287 ], + [ 7.6533269, 46.6790208 ], + [ 7.6531784, 46.6791183 ], + [ 7.6530375, 46.679221 ], + [ 7.6529046, 46.6793287 ], + [ 7.6527801, 46.679441 ], + [ 7.6526643, 46.6795577 ], + [ 7.6525575, 46.6796784 ], + [ 7.65246, 46.6798027 ], + [ 7.6523722, 46.6799304 ], + [ 7.6522941, 46.6800611 ], + [ 7.6522261, 46.6801944 ], + [ 7.6521683, 46.6803299 ], + [ 7.652121, 46.6804674 ], + [ 7.6520841, 46.6806064 ], + [ 7.6520579, 46.6807465 ], + [ 7.6520423, 46.6808874 ], + [ 7.6520375, 46.6810287 ], + [ 7.6520434, 46.6811699 ], + [ 7.6520601, 46.6813107 ], + [ 7.6520874, 46.6814507 ], + [ 7.6521254, 46.6815896 ], + [ 7.6521738, 46.6817269 ], + [ 7.6522327, 46.6818622 ], + [ 7.6523017, 46.6819953 ], + [ 7.6523807999999995, 46.6821257 ], + [ 7.6524697, 46.682253 ], + [ 7.6525681, 46.682377 ], + [ 7.6526759, 46.6824973 ], + [ 7.6527926, 46.6826135 ], + [ 7.652918, 46.6827253 ], + [ 7.6530518, 46.6828325 ], + [ 7.6531935, 46.6829347 ], + [ 7.6533428, 46.6830317 ], + [ 7.6534993, 46.6831232 ], + [ 7.6536625, 46.6832089 ], + [ 7.6538319999999995, 46.6832886 ], + [ 7.6540073, 46.6833621 ], + [ 7.6541879999999995, 46.6834292 ], + [ 7.6543735, 46.6834896 ], + [ 7.6545634, 46.6835433 ], + [ 7.6547571, 46.6835901 ], + [ 7.6549541, 46.6836299 ], + [ 7.6551539, 46.6836625 ], + [ 7.6553559, 46.6836879 ], + [ 7.6555595, 46.6837059 ], + [ 7.6557642, 46.6837166 ], + [ 7.6559694, 46.6837199 ], + [ 7.6561746, 46.6837158 ], + [ 7.6563792, 46.6837044 ], + [ 7.6565826999999995, 46.6836855 ], + [ 7.6567845, 46.6836594 ], + [ 7.6569839, 46.683626 ], + [ 7.6571806, 46.6835855 ], + [ 7.6573739, 46.683538 ], + [ 7.6575634, 46.6834836 ], + [ 7.6577484, 46.6834224 ], + [ 7.6579286, 46.6833546 ], + [ 7.6581033, 46.6832805 ], + [ 7.6582722, 46.6832001 ], + [ 7.6584347, 46.6831138 ], + [ 7.6585905, 46.6830217 ], + [ 7.658739, 46.6829242 ], + [ 7.6588799, 46.6828214 ], + [ 7.6590128, 46.6827138 ], + [ 7.6591373, 46.6826014 ], + [ 7.6592531, 46.6824848 ], + [ 7.6593599, 46.6823641 ], + [ 7.6594573, 46.6822397 ], + [ 7.6595452, 46.6821121 ], + [ 7.6596232, 46.6819814 ], + [ 7.6596912, 46.6818481 ], + [ 7.6597489, 46.6817125 ], + [ 7.6597963, 46.681575 ], + [ 7.6598331, 46.681436 ], + [ 7.6598594, 46.6812959 ], + [ 7.6598749, 46.681155 ], + [ 7.6598797, 46.6810138 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0129", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Wimmis", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Wimmis", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Wimmis", + "lang" : "it-CH" + }, + { + "text" : "Substation Wimmis", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4507646, 47.435177 ], + [ 7.4508982, 47.4352606 ], + [ 7.4511232, 47.4356377 ], + [ 7.4511263, 47.435657 ], + [ 7.4515668, 47.4356559 ], + [ 7.4520365, 47.4356547 ], + [ 7.4521709, 47.4356576 ], + [ 7.4521896, 47.4356085 ], + [ 7.4522266, 47.435511 ], + [ 7.4522354, 47.435488 ], + [ 7.4522631, 47.4353966 ], + [ 7.4522813, 47.4353165 ], + [ 7.452286, 47.4352956 ], + [ 7.4523159, 47.4351635 ], + [ 7.452358, 47.4348494 ], + [ 7.452356, 47.4348315 ], + [ 7.4523369, 47.434728 ], + [ 7.4523343, 47.4346358 ], + [ 7.4523263, 47.4345638 ], + [ 7.4522957, 47.434478 ], + [ 7.4523131, 47.434261 ], + [ 7.4523275, 47.4341503 ], + [ 7.4523529, 47.4340406 ], + [ 7.4523890999999995, 47.4339322 ], + [ 7.4525379, 47.4335478 ], + [ 7.4525611, 47.4334973 ], + [ 7.4525908, 47.4334485 ], + [ 7.4526269, 47.4334017 ], + [ 7.452669, 47.4333574 ], + [ 7.4527169, 47.4333157 ], + [ 7.4527701, 47.4332772 ], + [ 7.4528282, 47.4332421 ], + [ 7.4528907, 47.4332106 ], + [ 7.4529572, 47.4331831 ], + [ 7.4534553, 47.4329973 ], + [ 7.4535045, 47.4329806 ], + [ 7.4535555, 47.4329666 ], + [ 7.453608, 47.4329554 ], + [ 7.4538777, 47.4329057 ], + [ 7.4539005, 47.4329007 ], + [ 7.4539225, 47.4328944 ], + [ 7.4539436, 47.4328868 ], + [ 7.4539636, 47.4328778 ], + [ 7.4539668, 47.4328761 ], + [ 7.4540015, 47.4328789 ], + [ 7.4543337, 47.4329052 ], + [ 7.4546827, 47.4329327 ], + [ 7.4552598, 47.4329783 ], + [ 7.4556296, 47.4330082 ], + [ 7.4555539, 47.4327938 ], + [ 7.4555332, 47.4326654 ], + [ 7.4555436, 47.4325634 ], + [ 7.4556261, 47.4324813 ], + [ 7.4558166, 47.432362 ], + [ 7.4559644, 47.4322655 ], + [ 7.4561498, 47.4321058 ], + [ 7.4562831, 47.4319056 ], + [ 7.4564546, 47.4316943 ], + [ 7.4566825, 47.4314996 ], + [ 7.4568945, 47.4313154 ], + [ 7.4571987, 47.4310774 ], + [ 7.4574381, 47.4309056 ], + [ 7.4575488, 47.4307543 ], + [ 7.4576231, 47.4305458 ], + [ 7.4577955, 47.4303424 ], + [ 7.4580242, 47.430095 ], + [ 7.4582495, 47.4298746 ], + [ 7.4582356, 47.429809 ], + [ 7.4581516, 47.4297922 ], + [ 7.4580667, 47.4297772 ], + [ 7.4579812, 47.429764 ], + [ 7.4579506, 47.4297605 ], + [ 7.4579196, 47.4297589 ], + [ 7.4578885, 47.4297591 ], + [ 7.4578575, 47.4297612 ], + [ 7.4578412, 47.4297401 ], + [ 7.4580269999999995, 47.4296747 ], + [ 7.4581861, 47.4296452 ], + [ 7.4584356, 47.4296019 ], + [ 7.4586656, 47.4295525 ], + [ 7.4588830999999995, 47.4294656 ], + [ 7.4592988, 47.4295925 ], + [ 7.4596446, 47.4297275 ], + [ 7.4599078, 47.4294794 ], + [ 7.4600952, 47.4292531 ], + [ 7.4603272, 47.4290293 ], + [ 7.4605488, 47.4291304 ], + [ 7.4607244, 47.4292657 ], + [ 7.4609848, 47.4294163 ], + [ 7.4611807, 47.4295255 ], + [ 7.4612624, 47.4295697 ], + [ 7.4616023, 47.4296967 ], + [ 7.4620163, 47.4298303 ], + [ 7.4620102, 47.4298521 ], + [ 7.4620049999999996, 47.4302467 ], + [ 7.4620264, 47.4304266 ], + [ 7.4620918, 47.430647 ], + [ 7.4621088, 47.4307594 ], + [ 7.4621389, 47.4307775 ], + [ 7.4628721, 47.4312434 ], + [ 7.4628771, 47.431238 ], + [ 7.4632703, 47.4309926 ], + [ 7.4635326, 47.4307103 ], + [ 7.4637634, 47.4305637 ], + [ 7.463913, 47.4304687 ], + [ 7.4639462, 47.4304342 ], + [ 7.4640821, 47.4302931 ], + [ 7.4642181, 47.4301519 ], + [ 7.4643125, 47.430054 ], + [ 7.4643219, 47.4300471 ], + [ 7.4644453, 47.4299566 ], + [ 7.4645662, 47.429868 ], + [ 7.4646884, 47.429778400000004 ], + [ 7.4647459, 47.4297363 ], + [ 7.4648428, 47.4296418 ], + [ 7.4654035, 47.4290953 ], + [ 7.4654713, 47.4290292 ], + [ 7.4655261, 47.4289758 ], + [ 7.4655669, 47.428936 ], + [ 7.465018, 47.4285902 ], + [ 7.4650955, 47.4285426 ], + [ 7.4651681, 47.428497899999996 ], + [ 7.465177, 47.4284925 ], + [ 7.4652656, 47.4284319 ], + [ 7.4653597, 47.4283717 ], + [ 7.4654641, 47.428305 ], + [ 7.4655391, 47.4282571 ], + [ 7.4656262, 47.4282014 ], + [ 7.4657077, 47.4281493 ], + [ 7.4657697, 47.4281097 ], + [ 7.4658043, 47.4280875 ], + [ 7.4658338, 47.4280687 ], + [ 7.4658754, 47.4280421 ], + [ 7.4658849, 47.4280348 ], + [ 7.4661371, 47.427841 ], + [ 7.4662615, 47.4277454 ], + [ 7.4664442, 47.427605 ], + [ 7.4665729, 47.4275061 ], + [ 7.4668132, 47.4273215 ], + [ 7.4668286, 47.4273097 ], + [ 7.4668822, 47.4272713 ], + [ 7.4669305, 47.4272367 ], + [ 7.4670161, 47.4271754 ], + [ 7.4671102, 47.4271129 ], + [ 7.4671136, 47.4271104 ], + [ 7.4672487, 47.4270114 ], + [ 7.4673636, 47.4269273 ], + [ 7.4674127, 47.4268913 ], + [ 7.4675495, 47.426718 ], + [ 7.4676241, 47.4266233 ], + [ 7.4673775, 47.4265607 ], + [ 7.4676188, 47.4262421 ], + [ 7.4675376, 47.4262103 ], + [ 7.4667373, 47.427208 ], + [ 7.4661273, 47.4276865 ], + [ 7.4659906, 47.4277151 ], + [ 7.4653434, 47.4278675 ], + [ 7.4652608, 47.4278583 ], + [ 7.4651314, 47.4278941 ], + [ 7.4649447, 47.4279659 ], + [ 7.4647544, 47.4280262 ], + [ 7.4645654, 47.4280698 ], + [ 7.4645638, 47.4280766 ], + [ 7.4645175, 47.4281885 ], + [ 7.4644919, 47.4282605 ], + [ 7.4644828, 47.4282977 ], + [ 7.4644832, 47.4283342 ], + [ 7.4645037, 47.4283682 ], + [ 7.4645302000000004, 47.4284011 ], + [ 7.4645586, 47.4284342 ], + [ 7.4645909, 47.4284657 ], + [ 7.4646303, 47.4284937 ], + [ 7.4646658, 47.4285178 ], + [ 7.4646444, 47.4285221 ], + [ 7.4632781, 47.4277846 ], + [ 7.4632627, 47.4277896 ], + [ 7.4631464, 47.4278199 ], + [ 7.4631093, 47.4278279 ], + [ 7.4630909, 47.4278276 ], + [ 7.4629984, 47.4278177 ], + [ 7.4629469, 47.4278168 ], + [ 7.4629279, 47.4278184 ], + [ 7.4628763, 47.4278207 ], + [ 7.4628238, 47.4278255 ], + [ 7.4627723, 47.4278334 ], + [ 7.4627215, 47.427843 ], + [ 7.4626678, 47.4278504 ], + [ 7.4626191, 47.4278618 ], + [ 7.4625157, 47.4278852 ], + [ 7.4624599, 47.4278885 ], + [ 7.4624065, 47.4278871 ], + [ 7.4623483, 47.4278883 ], + [ 7.4623467, 47.4278885 ], + [ 7.4613833, 47.429251 ], + [ 7.4608995, 47.4290826 ], + [ 7.4601733, 47.42883 ], + [ 7.4601718, 47.4288299 ], + [ 7.4596788, 47.428808599999996 ], + [ 7.4576906, 47.4291873 ], + [ 7.4575265, 47.4292689 ], + [ 7.4572593, 47.4294016 ], + [ 7.4563724, 47.4285371 ], + [ 7.4558578, 47.4285425 ], + [ 7.4557966, 47.4285432 ], + [ 7.4551293, 47.4285492 ], + [ 7.4550954, 47.428595 ], + [ 7.4549895, 47.4291024 ], + [ 7.4545234, 47.4293781 ], + [ 7.4537582, 47.4298328 ], + [ 7.4535706, 47.4299295 ], + [ 7.4528662, 47.4307885 ], + [ 7.4525647, 47.4309154 ], + [ 7.4523867, 47.431029 ], + [ 7.4523534, 47.4310779 ], + [ 7.4532606, 47.4311912 ], + [ 7.4541497, 47.4313035 ], + [ 7.4541006, 47.4315026 ], + [ 7.4540507, 47.4317049 ], + [ 7.4539998, 47.4319112 ], + [ 7.4539683, 47.432039 ], + [ 7.4539609, 47.4320979 ], + [ 7.4529705, 47.4319345 ], + [ 7.4520221, 47.4318807 ], + [ 7.4520151, 47.4319085 ], + [ 7.4520451, 47.4324941 ], + [ 7.4518617, 47.4328006 ], + [ 7.4516594, 47.4329897 ], + [ 7.4515084, 47.4331308 ], + [ 7.4511568, 47.4337286 ], + [ 7.4511024, 47.4344073 ], + [ 7.4511728, 47.4346339 ], + [ 7.4509857, 47.4348844 ], + [ 7.4507646, 47.435177 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns329", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Brunnhollen", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Brunnhollen", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Brunnhollen", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Brunnhollen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8833475, 47.4120056 ], + [ 7.8833801, 47.4122249 ], + [ 7.8833867, 47.4123975 ], + [ 7.883405, 47.4124727 ], + [ 7.8834701, 47.4124581 ], + [ 7.8834731, 47.4124801 ], + [ 7.8835085, 47.4125526 ], + [ 7.8835117, 47.4127857 ], + [ 7.8835212, 47.4128325 ], + [ 7.8835553, 47.4129128 ], + [ 7.8836167, 47.4129663 ], + [ 7.8836797, 47.4130743 ], + [ 7.8837237, 47.4131721 ], + [ 7.883748, 47.4132577 ], + [ 7.8837715, 47.4133381 ], + [ 7.8838065, 47.4134452 ], + [ 7.8838374, 47.4134855 ], + [ 7.8838849, 47.4135761 ], + [ 7.8839527, 47.4136453 ], + [ 7.8839898, 47.4137161 ], + [ 7.8840524, 47.4137776 ], + [ 7.8841262, 47.413807 ], + [ 7.8842362999999995, 47.4138145 ], + [ 7.8843964, 47.4138175 ], + [ 7.8845058, 47.413834 ], + [ 7.8847757, 47.4138621 ], + [ 7.8848904, 47.4138654 ], + [ 7.8848969, 47.4138426 ], + [ 7.8850184, 47.4138528 ], + [ 7.8851803, 47.4138719 ], + [ 7.8854046, 47.4138921 ], + [ 7.8855699, 47.4139033 ], + [ 7.8857519, 47.4138985 ], + [ 7.8859811, 47.4138721 ], + [ 7.886168, 47.4138344 ], + [ 7.8864362, 47.4137447 ], + [ 7.8866268, 47.4137224 ], + [ 7.8868929, 47.4137029 ], + [ 7.8872359, 47.413684 ], + [ 7.8876241, 47.4136589 ], + [ 7.8878885, 47.4136395 ], + [ 7.8881239, 47.4135997 ], + [ 7.8884373, 47.4135202 ], + [ 7.8887718, 47.4134072 ], + [ 7.8890047, 47.413325 ], + [ 7.8894258, 47.4131849 ], + [ 7.8896981, 47.4130633 ], + [ 7.8899854, 47.4129336 ], + [ 7.8901401, 47.4128654 ], + [ 7.8903296, 47.4127805 ], + [ 7.890555, 47.4126975 ], + [ 7.8907632, 47.4126213 ], + [ 7.8908162, 47.4126071 ], + [ 7.8908702, 47.4125944 ], + [ 7.8909249, 47.4125835 ], + [ 7.8911338, 47.4125432 ], + [ 7.8909327, 47.4124703 ], + [ 7.8904701, 47.4126267 ], + [ 7.890083, 47.4127848 ], + [ 7.8897062, 47.4129612 ], + [ 7.8893059, 47.4131332 ], + [ 7.8887581, 47.413311 ], + [ 7.8883305, 47.4134592 ], + [ 7.8881204, 47.4135091 ], + [ 7.8879369, 47.4135451 ], + [ 7.8877329, 47.4135685 ], + [ 7.8874718, 47.4135811 ], + [ 7.887169, 47.4136077 ], + [ 7.8868762, 47.4136229 ], + [ 7.8865297, 47.4136453 ], + [ 7.8863007, 47.4136713 ], + [ 7.8863152, 47.4137125 ], + [ 7.8859942, 47.4137902 ], + [ 7.8858105, 47.4138098 ], + [ 7.8856588, 47.4138213 ], + [ 7.8854582, 47.4138101 ], + [ 7.8852761000000005, 47.4137979 ], + [ 7.8850973, 47.4137764 ], + [ 7.8850464, 47.4137714 ], + [ 7.8850502, 47.4136621 ], + [ 7.8850886, 47.4135847 ], + [ 7.8850867000000004, 47.4134353 ], + [ 7.8850572, 47.4134274 ], + [ 7.8850314, 47.4133607 ], + [ 7.8849677, 47.4133111 ], + [ 7.8849306, 47.4132119 ], + [ 7.8849358, 47.4130951 ], + [ 7.8849364, 47.4130526 ], + [ 7.8850736, 47.4130531 ], + [ 7.8854437, 47.4130397 ], + [ 7.8857668, 47.4130301 ], + [ 7.886118, 47.4130008 ], + [ 7.8863768, 47.4129572 ], + [ 7.8865172999999995, 47.4129401 ], + [ 7.8865556, 47.4129282 ], + [ 7.88659, 47.4128935 ], + [ 7.8865941, 47.4128453 ], + [ 7.8865977, 47.4126893 ], + [ 7.8865894999999995, 47.4125323 ], + [ 7.8865556, 47.4123479 ], + [ 7.8864991, 47.412119 ], + [ 7.8863475, 47.4116639 ], + [ 7.8862114, 47.4113106 ], + [ 7.8864371, 47.4112881 ], + [ 7.8866279, 47.4112715 ], + [ 7.8868786, 47.4112419 ], + [ 7.8870121, 47.4112144 ], + [ 7.8871067, 47.4111746 ], + [ 7.8872077, 47.4111095 ], + [ 7.8872713999999995, 47.4110275 ], + [ 7.8873279, 47.4109285 ], + [ 7.887326, 47.4108276 ], + [ 7.8872037, 47.410832 ], + [ 7.8872032999999995, 47.4108962 ], + [ 7.8871778, 47.4109618 ], + [ 7.8871372, 47.4110241 ], + [ 7.8870646, 47.411082 ], + [ 7.8869667, 47.4111299 ], + [ 7.8868284, 47.4111609 ], + [ 7.886479, 47.4112005 ], + [ 7.8861898, 47.4112317 ], + [ 7.8860509, 47.4112443 ], + [ 7.8861497, 47.4114866 ], + [ 7.8862771, 47.4118239 ], + [ 7.8863795, 47.4121671 ], + [ 7.8864362, 47.4124063 ], + [ 7.8864772, 47.4126984 ], + [ 7.8864734, 47.4128429 ], + [ 7.8863367, 47.4128728 ], + [ 7.8861112, 47.4129067 ], + [ 7.8858352, 47.4129332 ], + [ 7.8854936, 47.4129453 ], + [ 7.8851004, 47.4129658 ], + [ 7.8849373, 47.4129845 ], + [ 7.8848058, 47.4129458 ], + [ 7.884699, 47.4128985 ], + [ 7.8845568, 47.4128101 ], + [ 7.8842929999999996, 47.4126318 ], + [ 7.8840461, 47.4125285 ], + [ 7.8838349999999995, 47.4124431 ], + [ 7.883572, 47.4123642 ], + [ 7.883521, 47.4123252 ], + [ 7.8835169, 47.4122933 ], + [ 7.8835002, 47.4121173 ], + [ 7.8834721, 47.4119575 ], + [ 7.8834609, 47.4118101 ], + [ 7.8834781, 47.4116602 ], + [ 7.8834959, 47.411548 ], + [ 7.8835287, 47.4114207 ], + [ 7.8835776, 47.411267 ], + [ 7.8836323, 47.411151 ], + [ 7.8834862999999995, 47.4111307 ], + [ 7.8834452, 47.4112489 ], + [ 7.8834026, 47.4113877 ], + [ 7.8833699, 47.4115057 ], + [ 7.8833353, 47.4117119 ], + [ 7.8833298, 47.4118606 ], + [ 7.8833475, 47.4120056 ] + ], + [ + [ 7.8846733, 47.4137568 ], + [ 7.8843977, 47.4137664 ], + [ 7.8843071, 47.4137573 ], + [ 7.8841825, 47.4137404 ], + [ 7.8841375, 47.4137171 ], + [ 7.884119, 47.41369 ], + [ 7.8841000999999995, 47.4136664 ], + [ 7.8840667, 47.4135995 ], + [ 7.8840242, 47.4134591 ], + [ 7.8839909, 47.4134063 ], + [ 7.8839717, 47.4133147 ], + [ 7.8839418, 47.4132698 ], + [ 7.8838918, 47.4132087 ], + [ 7.8838607, 47.4131425 ], + [ 7.8838065, 47.4130378 ], + [ 7.8837779, 47.4129414 ], + [ 7.8837341, 47.412829 ], + [ 7.8836979, 47.4127573 ], + [ 7.8836034, 47.4125508 ], + [ 7.8835804, 47.4124512 ], + [ 7.8837625, 47.4125102 ], + [ 7.8839924, 47.4126081 ], + [ 7.8844003, 47.4128837 ], + [ 7.8847372, 47.4130974 ], + [ 7.8847274, 47.4132011 ], + [ 7.8847058, 47.4132655 ], + [ 7.8846938, 47.4133011 ], + [ 7.8846018, 47.4133667 ], + [ 7.884558, 47.4133936 ], + [ 7.8845877, 47.4135211 ], + [ 7.8846187, 47.4136539 ], + [ 7.8846733, 47.4137568 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns362", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Mapprach - Hofmatt", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Mapprach - Hofmatt", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Mapprach - Hofmatt", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Mapprach - Hofmatt", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4845605, 47.4572164 ], + [ 7.4845314, 47.4572158 ], + [ 7.4846362, 47.4573126 ], + [ 7.4846669, 47.457341 ], + [ 7.4847283000000004, 47.4573977 ], + [ 7.4848966, 47.4574414 ], + [ 7.4852333, 47.4575286 ], + [ 7.4856644, 47.4576043 ], + [ 7.4860257, 47.4577175 ], + [ 7.4862183, 47.4577668 ], + [ 7.4867364, 47.4578997 ], + [ 7.4872073, 47.4579842 ], + [ 7.4872491, 47.4579917 ], + [ 7.4873861999999995, 47.4580163 ], + [ 7.4876781999999995, 47.4580686 ], + [ 7.4883134, 47.4582104 ], + [ 7.4891893, 47.4583655 ], + [ 7.4899495, 47.4584937 ], + [ 7.4906331999999995, 47.4586599 ], + [ 7.4906801, 47.4586688 ], + [ 7.4916443, 47.4588503 ], + [ 7.492362, 47.4589765 ], + [ 7.4924222, 47.4589818 ], + [ 7.4929217, 47.4590254 ], + [ 7.4932352, 47.4590528 ], + [ 7.4937815, 47.4590866 ], + [ 7.4939453, 47.4590968 ], + [ 7.4939971, 47.4591063 ], + [ 7.4940748, 47.4591207 ], + [ 7.4950518, 47.459300999999996 ], + [ 7.495581, 47.4593435 ], + [ 7.4956626, 47.45935 ], + [ 7.496306, 47.4594017 ], + [ 7.4963507, 47.4594053 ], + [ 7.4963661, 47.4594117 ], + [ 7.4964424, 47.4594434 ], + [ 7.4969616, 47.4596592 ], + [ 7.4973016, 47.4596678 ], + [ 7.497302, 47.4596678 ], + [ 7.498216, 47.459691 ], + [ 7.4986719, 47.4596411 ], + [ 7.4990618, 47.4595984 ], + [ 7.499373, 47.4595643 ], + [ 7.5009497, 47.4593894 ], + [ 7.5010102, 47.4593827 ], + [ 7.498075, 47.4584146 ], + [ 7.4980388, 47.4584026 ], + [ 7.497828, 47.4584005 ], + [ 7.4976924, 47.4583986 ], + [ 7.4974766, 47.45839 ], + [ 7.4972926, 47.4583759 ], + [ 7.4970663, 47.4583498 ], + [ 7.4968013, 47.4583111 ], + [ 7.4965787, 47.4582738 ], + [ 7.4965643, 47.4582711 ], + [ 7.4963978000000004, 47.4582409 ], + [ 7.4962494, 47.4582113 ], + [ 7.4961144, 47.4581797 ], + [ 7.4959671, 47.458141499999996 ], + [ 7.4958386, 47.4581046 ], + [ 7.4957015, 47.4580657 ], + [ 7.4954562, 47.4579982 ], + [ 7.4952707, 47.457944 ], + [ 7.4950788, 47.4578851 ], + [ 7.4949447, 47.4578449 ], + [ 7.4947931, 47.4578049 ], + [ 7.4946354, 47.4577665 ], + [ 7.4944723, 47.4577267 ], + [ 7.4942532, 47.4576719 ], + [ 7.4939681, 47.4576079 ], + [ 7.4937885, 47.457569 ], + [ 7.4935407, 47.457525 ], + [ 7.4934073, 47.4574902 ], + [ 7.4933417, 47.4574688 ], + [ 7.4932678, 47.4574395 ], + [ 7.4932098, 47.4574163 ], + [ 7.4931212, 47.4573865 ], + [ 7.4930028, 47.4573923 ], + [ 7.4928821, 47.4573995 ], + [ 7.491912, 47.4574556 ], + [ 7.491438, 47.4574887 ], + [ 7.4909682, 47.4574405 ], + [ 7.4909128, 47.4574349 ], + [ 7.4908672, 47.4574302 ], + [ 7.4896576, 47.4573612 ], + [ 7.488654, 47.4573698 ], + [ 7.4885376, 47.4573708 ], + [ 7.4882501999999995, 47.457357 ], + [ 7.4878786, 47.457339 ], + [ 7.4874651, 47.4573191 ], + [ 7.4870575, 47.4572943 ], + [ 7.4864173, 47.4572555 ], + [ 7.4860561, 47.4572479 ], + [ 7.4859824, 47.4572463 ], + [ 7.4845605, 47.4572164 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns019", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Radme, Hanslifels und Chällengraben", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Radme, Hanslifels und Chällengraben", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Radme, Hanslifels und Chällengraben", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Radme, Hanslifels und Chällengraben", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.0685161, 46.3336767 ], + [ 7.0685174, 46.333683 ], + [ 7.0690694, 46.3346221 ], + [ 7.0697531, 46.3352946 ], + [ 7.0707116, 46.3356719 ], + [ 7.0718312, 46.3360408 ], + [ 7.072676, 46.3363449 ], + [ 7.0739801, 46.3365074 ], + [ 7.0762229, 46.3365308 ], + [ 7.0771864, 46.3363594 ], + [ 7.0779579, 46.3361631 ], + [ 7.0779773, 46.3353931 ], + [ 7.077956, 46.3347004 ], + [ 7.0779409, 46.334237 ], + [ 7.0762963, 46.332944499999996 ], + [ 7.0760999, 46.3327837 ], + [ 7.0740822, 46.3331155 ], + [ 7.0722696, 46.3342125 ], + [ 7.0685161, 46.3336767 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00009", + "country" : "CHE", + "name" : [ + { + "text" : "Petit Chamossaire", + "lang" : "de-CH" + }, + { + "text" : "Petit Chamossaire", + "lang" : "fr-CH" + }, + { + "text" : "Petit Chamossaire", + "lang" : "it-CH" + }, + { + "text" : "Petit Chamossaire", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "startDateTime" : "2024-11-15T00:00:00+01:00", + "endDateTime" : "2025-04-15T00:00:00+02:00" + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Generaldirektion für Umwelt", + "lang" : "de-CH" + }, + { + "text" : "Direction générale de l'environnement", + "lang" : "fr-CH" + }, + { + "text" : "Direzione generale dell'Ambiente", + "lang" : "it-CH" + }, + { + "text" : "Environment Department", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.dge@vd.ch", + "phone" : "0041213164422", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.9309374, 45.9799364 ], + [ 8.9309283, 45.9797953 ], + [ 8.9309086, 45.9796547 ], + [ 8.9308783, 45.979515 ], + [ 8.9308376, 45.9793766 ], + [ 8.9307865, 45.9792398 ], + [ 8.9307253, 45.9791052 ], + [ 8.930654, 45.9789729 ], + [ 8.9305729, 45.9788434 ], + [ 8.9304822, 45.9787171 ], + [ 8.9303821, 45.9785942 ], + [ 8.930273, 45.9784752 ], + [ 8.9301551, 45.9783603 ], + [ 8.9300287, 45.9782499 ], + [ 8.9298941, 45.9781442 ], + [ 8.9297519, 45.9780436 ], + [ 8.929602299999999, 45.9779483 ], + [ 8.9294457, 45.9778586 ], + [ 8.9292826, 45.9777747 ], + [ 8.9291135, 45.9776969 ], + [ 8.9289387, 45.9776254 ], + [ 8.9287588, 45.9775604 ], + [ 8.9285743, 45.977502 ], + [ 8.9283856, 45.9774504 ], + [ 8.9281933, 45.9774058 ], + [ 8.927998, 45.9773682 ], + [ 8.9278001, 45.9773379 ], + [ 8.9276002, 45.9773148 ], + [ 8.9273988, 45.977299 ], + [ 8.9271965, 45.9772906 ], + [ 8.9269939, 45.9772895 ], + [ 8.926791399999999, 45.9772959 ], + [ 8.9265898, 45.9773097 ], + [ 8.9263894, 45.9773308 ], + [ 8.9261909, 45.9773592 ], + [ 8.9259948, 45.9773947 ], + [ 8.9258016, 45.9774374 ], + [ 8.9256119, 45.9774871 ], + [ 8.9254262, 45.9775436 ], + [ 8.925245, 45.9776069 ], + [ 8.9250687, 45.9776766 ], + [ 8.924898, 45.977752699999996 ], + [ 8.9247332, 45.9778349 ], + [ 8.9245748, 45.977923 ], + [ 8.9244232, 45.9780168 ], + [ 8.9242789, 45.978116 ], + [ 8.9241422, 45.9782203 ], + [ 8.9240135, 45.9783294 ], + [ 8.9238932, 45.9784431 ], + [ 8.9237816, 45.9785611 ], + [ 8.923679, 45.9786829 ], + [ 8.9235857, 45.9788083 ], + [ 8.923502, 45.978937 ], + [ 8.923428, 45.9790685 ], + [ 8.923364, 45.9792026 ], + [ 8.9233101, 45.9793388 ], + [ 8.9232665, 45.9794767 ], + [ 8.9232334, 45.9796161 ], + [ 8.9232107, 45.9797565 ], + [ 8.9231986, 45.9798975 ], + [ 8.9231972, 45.9800388 ], + [ 8.9232063, 45.98018 ], + [ 8.923226, 45.9803206 ], + [ 8.9232563, 45.9804603 ], + [ 8.923297, 45.9805987 ], + [ 8.923348, 45.9807354 ], + [ 8.9234092, 45.9808701 ], + [ 8.9234805, 45.9810024 ], + [ 8.9235616, 45.9811319 ], + [ 8.9236523, 45.9812582 ], + [ 8.9237523, 45.9813811 ], + [ 8.9238615, 45.9815001 ], + [ 8.9239794, 45.981615 ], + [ 8.9241058, 45.9817254 ], + [ 8.9242403, 45.9818311 ], + [ 8.9243825, 45.9819317 ], + [ 8.9245322, 45.982027 ], + [ 8.9246887, 45.9821167 ], + [ 8.9248518, 45.9822006 ], + [ 8.925021, 45.9822784 ], + [ 8.925195800000001, 45.9823499 ], + [ 8.9253757, 45.982415 ], + [ 8.9255602, 45.9824734 ], + [ 8.9257489, 45.982525 ], + [ 8.9259412, 45.9825696 ], + [ 8.9261365, 45.9826072 ], + [ 8.9263345, 45.9826375 ], + [ 8.9265344, 45.9826606 ], + [ 8.9267358, 45.9826764 ], + [ 8.9269381, 45.9826848 ], + [ 8.9271408, 45.9826858 ], + [ 8.9273432, 45.9826795 ], + [ 8.927544900000001, 45.9826657 ], + [ 8.9277453, 45.9826446 ], + [ 8.9279438, 45.9826162 ], + [ 8.92814, 45.9825807 ], + [ 8.9283332, 45.982538 ], + [ 8.9285229, 45.9824883 ], + [ 8.9287086, 45.9824317 ], + [ 8.9288898, 45.9823685 ], + [ 8.9290661, 45.9822987 ], + [ 8.9292368, 45.9822226 ], + [ 8.9294016, 45.9821404 ], + [ 8.92956, 45.9820523 ], + [ 8.9297116, 45.9819585 ], + [ 8.9298559, 45.981859299999996 ], + [ 8.9299926, 45.981755 ], + [ 8.9301213, 45.9816459 ], + [ 8.9302416, 45.9815322 ], + [ 8.9303532, 45.9814142 ], + [ 8.9304558, 45.9812924 ], + [ 8.930549, 45.981167 ], + [ 8.9306328, 45.9810383 ], + [ 8.9307068, 45.9809068 ], + [ 8.9307708, 45.9807727 ], + [ 8.9308246, 45.9806365 ], + [ 8.930868199999999, 45.9804985 ], + [ 8.9309013, 45.9803591 ], + [ 8.9309239, 45.9802187 ], + [ 8.930935999999999, 45.9800777 ], + [ 8.9309374, 45.9799364 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0087", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Pian Scairolo", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Pian Scairolo", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Pian Scairolo", + "lang" : "it-CH" + }, + { + "text" : "Substation Pian Scairolo", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.03772, 47.0793388 ], + [ 9.0375756, 47.0789942 ], + [ 9.0374456, 47.0788581 ], + [ 9.0373387, 47.0788348 ], + [ 9.0372487, 47.0787442 ], + [ 9.0371841, 47.0786479 ], + [ 9.0371034, 47.0785065 ], + [ 9.0369328, 47.07828 ], + [ 9.0367616, 47.0781156 ], + [ 9.0366315, 47.0779738 ], + [ 9.0364519, 47.0778318 ], + [ 9.0362798, 47.077718 ], + [ 9.0360922, 47.0776098 ], + [ 9.0358627, 47.0775069 ], + [ 9.0356909, 47.0774043 ], + [ 9.0355601, 47.0772683 ], + [ 9.0354881, 47.0771157 ], + [ 9.0354815, 47.076924 ], + [ 9.0354828, 47.0767719 ], + [ 9.0354858, 47.0765409 ], + [ 9.0354376, 47.0763604 ], + [ 9.0353582, 47.0761007 ], + [ 9.0351799, 47.0758628 ], + [ 9.035082, 47.075727 ], + [ 9.0349358, 47.0755965 ], + [ 9.0348289, 47.0755168 ], + [ 9.0347888, 47.0754152 ], + [ 9.0347335, 47.0752459 ], + [ 9.0347101, 47.0750654 ], + [ 9.0346296, 47.0749071 ], + [ 9.0345074, 47.0747823 ], + [ 9.0342696, 47.0746737 ], + [ 9.0340324, 47.0745595 ], + [ 9.0338113, 47.0744848 ], + [ 9.0336965, 47.0744164 ], + [ 9.0336075, 47.0743032 ], + [ 9.0334933, 47.0741728 ], + [ 9.0332723, 47.0740193 ], + [ 9.0330845, 47.0738772 ], + [ 9.0328388, 47.0737516 ], + [ 9.0326753, 47.0736774 ], + [ 9.032586, 47.073581 ], + [ 9.03248, 47.0734788 ], + [ 9.0323422, 47.0732977 ], + [ 9.0322204, 47.0731335 ], + [ 9.0320897, 47.0729748 ], + [ 9.0319267, 47.072833 ], + [ 9.0317302, 47.0727303 ], + [ 9.0314924, 47.0726217 ], + [ 9.0311647, 47.072535 ], + [ 9.030704, 47.0724587 ], + [ 9.0303764, 47.072372 ], + [ 9.0298998, 47.072262 ], + [ 9.0295638, 47.0721414 ], + [ 9.0292369, 47.0719421 ], + [ 9.0289343, 47.0717316 ], + [ 9.0287304, 47.0715725 ], + [ 9.028436, 47.0713847 ], + [ 9.028306, 47.0712203 ], + [ 9.028193, 47.0709887 ], + [ 9.0280717, 47.0707569 ], + [ 9.0280077, 47.0705705 ], + [ 9.0279854, 47.0704013 ], + [ 9.0279466, 47.0701756 ], + [ 9.02794, 47.0699783 ], + [ 9.027984, 47.069742 ], + [ 9.0280359, 47.0694944 ], + [ 9.0280623, 47.0692749 ], + [ 9.028123, 47.0690442 ], + [ 9.0281085, 47.0688357 ], + [ 9.0280937, 47.0686666 ], + [ 9.0280053, 47.0684632 ], + [ 9.027875, 47.0682877 ], + [ 9.0277212, 47.0680669 ], + [ 9.0274522, 47.0677947 ], + [ 9.0272401, 47.0676355 ], + [ 9.0271589, 47.0675336 ], + [ 9.02712, 47.0673587 ], + [ 9.0269987, 47.0671269 ], + [ 9.0268784, 47.0668443 ], + [ 9.0267896, 47.066624 ], + [ 9.0266122, 47.0663298 ], + [ 9.0264908, 47.0660924 ], + [ 9.0264604, 47.0659007 ], + [ 9.0263953, 47.0657875 ], + [ 9.0262812, 47.0657135 ], + [ 9.0261337, 47.0656225 ], + [ 9.0258888, 47.0654406 ], + [ 9.0256598, 47.0653208 ], + [ 9.0255032, 47.0653141 ], + [ 9.0253305, 47.0652903 ], + [ 9.0250923, 47.0652776 ], + [ 9.0247718, 47.065236 ], + [ 9.0243362, 47.0651711 ], + [ 9.0237202, 47.0650713 ], + [ 9.0222174, 47.0647909 ], + [ 9.0218072, 47.0646925 ], + [ 9.0214788, 47.0646058 ], + [ 9.0213072, 47.0644806 ], + [ 9.0212097, 47.0643842 ], + [ 9.0210783, 47.0643101 ], + [ 9.0206771, 47.0641835 ], + [ 9.0202415, 47.0640622 ], + [ 9.0198476, 47.0639864 ], + [ 9.019371, 47.0638988 ], + [ 9.0189114, 47.0638281 ], + [ 9.0184761, 47.0637464 ], + [ 9.0181312, 47.0636877 ], + [ 9.0177951, 47.0635896 ], + [ 9.0174418, 47.0634972 ], + [ 9.016949199999999, 47.0634262 ], + [ 9.0164155, 47.063327 ], + [ 9.0157748, 47.0631988 ], + [ 9.0152081, 47.0630935 ], + [ 9.0146502, 47.0629546 ], + [ 9.0141907, 47.0628332 ], + [ 9.0138784, 47.0627353 ], + [ 9.0135836, 47.0626432 ], + [ 9.0130659, 47.0625834 ], + [ 9.0126139, 47.0625183 ], + [ 9.0123097, 47.0624713 ], + [ 9.0120721, 47.0624246 ], + [ 9.0117933, 47.0623439 ], + [ 9.011556, 47.0621958 ], + [ 9.0113434, 47.0620703 ], + [ 9.0111799, 47.0619678 ], + [ 9.0110327, 47.061888 ], + [ 9.0108278, 47.0618021 ], + [ 9.0100648, 47.0615998 ], + [ 9.0096302, 47.0614279 ], + [ 9.0093189, 47.0613356 ], + [ 9.0090475, 47.0613112 ], + [ 9.0087845, 47.0612645 ], + [ 9.0085058, 47.0612174 ], + [ 9.0082016, 47.0611704 ], + [ 9.0078732, 47.0610836 ], + [ 9.0074957, 47.0609796 ], + [ 9.0071598, 47.0608872 ], + [ 9.0068801, 47.0608346 ], + [ 9.0066093, 47.0608328 ], + [ 9.0063786, 47.0608481 ], + [ 9.0061647, 47.0608523 ], + [ 9.0059341, 47.0608452 ], + [ 9.0057455, 47.0608101 ], + [ 9.0055157, 47.0607466 ], + [ 9.0052775, 47.0607055 ], + [ 9.0050644, 47.0606195 ], + [ 9.0048509, 47.0605787 ], + [ 9.0046203, 47.0605997 ], + [ 9.0043888, 47.0606769 ], + [ 9.0041576, 47.0607599 ], + [ 9.0039933, 47.06077 ], + [ 9.0037627, 47.0607629 ], + [ 9.0033765, 47.0607545 ], + [ 9.0029892, 47.0607915 ], + [ 9.0025937, 47.0608001 ], + [ 9.0022812, 47.0608374 ], + [ 9.0019112, 47.0607897 ], + [ 9.0015989, 47.0607481 ], + [ 9.0012298, 47.0606442 ], + [ 9.0009348, 47.0605465 ], + [ 9.0005569, 47.0604538 ], + [ 9.0003518, 47.0603903 ], + [ 8.9999902, 47.0603767 ], + [ 8.9992907, 47.0603775 ], + [ 8.9985015, 47.060344 ], + [ 8.9981227, 47.0603358 ], + [ 8.9978594, 47.0603621 ], + [ 8.9977109, 47.0603781 ], + [ 8.997596, 47.0603604 ], + [ 8.9964379, 47.0601496 ], + [ 8.995921, 47.0600616 ], + [ 8.9956006, 47.06002 ], + [ 8.995337, 47.0600125 ], + [ 8.9951472, 47.0600506 ], + [ 8.9948597, 47.0600374 ], + [ 8.994638, 47.0599965 ], + [ 8.9944252, 47.0598936 ], + [ 8.9940567, 47.0597276 ], + [ 8.9938104, 47.059664 ], + [ 8.9935232, 47.0596057 ], + [ 8.9931779, 47.0595582 ], + [ 8.9929478, 47.0595398 ], + [ 8.9926852, 47.0595098 ], + [ 8.9924877, 47.0595084 ], + [ 8.9922988, 47.0594903 ], + [ 8.99211, 47.0594495 ], + [ 8.9918641, 47.0593689 ], + [ 8.9917, 47.059272 ], + [ 8.9914714, 47.0591353 ], + [ 8.9912173, 47.0590546 ], + [ 8.9910528, 47.0590309 ], + [ 8.9908972, 47.0590243 ], + [ 8.9906338, 47.0590223 ], + [ 8.9903041, 47.0590314 ], + [ 8.9900241, 47.0590802 ], + [ 8.989768, 47.0591573 ], + [ 8.9894465, 47.0592508 ], + [ 8.9892066, 47.0593506 ], + [ 8.9889921, 47.0593885 ], + [ 8.9888277, 47.0593931 ], + [ 8.9885645, 47.0593968 ], + [ 8.988284, 47.059457 ], + [ 8.9879454, 47.0595279 ], + [ 8.9876484, 47.059616 ], + [ 8.9873186, 47.0596757 ], + [ 8.9870463, 47.0597357 ], + [ 8.9867419, 47.0597674 ], + [ 8.9863615, 47.0599 ], + [ 8.9860561, 47.0600388 ], + [ 8.9857249, 47.0602224 ], + [ 8.985401, 47.0604344 ], + [ 8.9849461, 47.0606678 ], + [ 8.9845818, 47.0608737 ], + [ 8.9844252, 47.0608953 ], + [ 8.9842277, 47.0608938 ], + [ 8.9839732, 47.0608582 ], + [ 8.9837757, 47.060885 ], + [ 8.9835117, 47.060917 ], + [ 8.9832399, 47.0609659 ], + [ 8.9830165, 47.0610375 ], + [ 8.982744499999999, 47.0611089 ], + [ 8.9825381, 47.0611412 ], + [ 8.9823656, 47.0611513 ], + [ 8.9821597, 47.0611161 ], + [ 8.9819628, 47.0610809 ], + [ 8.9817164, 47.0610679 ], + [ 8.9814198, 47.061111 ], + [ 8.9811641, 47.0611486 ], + [ 8.9808759, 47.0611692 ], + [ 8.9806873, 47.0611341 ], + [ 8.9804651, 47.0611043 ], + [ 8.9803344, 47.0610526 ], + [ 8.980005, 47.0610166 ], + [ 8.9795863, 47.0609911 ], + [ 8.979117, 47.0609822 ], + [ 8.978894799999999, 47.0610088 ], + [ 8.9787561, 47.0609064 ], + [ 8.9785836, 47.060832 ], + [ 8.9783953, 47.0607518 ], + [ 8.9782153, 47.0606998 ], + [ 8.9778783, 47.0606862 ], + [ 8.977697299999999, 47.0606849 ], + [ 8.9774919, 47.0606665 ], + [ 8.9772856, 47.0606482 ], + [ 8.9771213, 47.0606302 ], + [ 8.9769573, 47.0605896 ], + [ 8.9766133, 47.0605026 ], + [ 8.9764081, 47.0604054 ], + [ 8.9762111, 47.0603646 ], + [ 8.9760137, 47.0603407 ], + [ 8.9758657, 47.0603453 ], + [ 8.974522799999999, 47.060488 ], + [ 8.9739302, 47.0605402 ], + [ 8.9736999, 47.0605441 ], + [ 8.9734451, 47.0604974 ], + [ 8.9730998, 47.0604498 ], + [ 8.9727547, 47.0604079 ], + [ 8.97241, 47.060383 ], + [ 8.9719323, 47.0603965 ], + [ 8.9715454, 47.0603881 ], + [ 8.9714312, 47.0603366 ], + [ 8.9711933, 47.0602504 ], + [ 8.9710954, 47.0602216 ], + [ 8.9709802, 47.0602208 ], + [ 8.9708237, 47.0601859 ], + [ 8.9705363, 47.0601782 ], + [ 8.9703707, 47.0602278 ], + [ 8.9701485, 47.0602544 ], + [ 8.9699844, 47.0602137 ], + [ 8.9698438, 47.0602465 ], + [ 8.9697042, 47.060285 ], + [ 8.9694571, 47.0602776 ], + [ 8.9691773, 47.0602756 ], + [ 8.9688978, 47.0602567 ], + [ 8.9685439, 47.0602542 ], + [ 8.9683215, 47.0602471 ], + [ 8.9680914, 47.0602566 ], + [ 8.967983199999999, 47.0603292 ], + [ 8.9678676, 47.0604297 ], + [ 8.967751, 47.0604965 ], + [ 8.967603, 47.0605011 ], + [ 8.9674957, 47.0605173 ], + [ 8.9673559, 47.0605501 ], + [ 8.9671661, 47.0605882 ], + [ 8.9669681, 47.060598 ], + [ 8.9667541, 47.0606248 ], + [ 8.9664665, 47.0606114 ], + [ 8.9662445, 47.0606154 ], + [ 8.9659969, 47.0606475 ], + [ 8.9658575, 47.0606353 ], + [ 8.9656899, 47.0608481 ], + [ 8.9656319, 47.0608929 ], + [ 8.9655409, 47.0609316 ], + [ 8.9654338, 47.0609871 ], + [ 8.9653421, 47.0610598 ], + [ 8.9652591, 47.0611493 ], + [ 8.9651433, 47.0612161 ], + [ 8.9650185, 47.0613111 ], + [ 8.964959799999999, 47.0613894 ], + [ 8.9648388, 47.0619352 ], + [ 8.9644073, 47.0622138 ], + [ 8.9645964, 47.0622096 ], + [ 8.9646624, 47.0622156 ], + [ 8.9647439, 47.0622726 ], + [ 8.9648337, 47.0623352 ], + [ 8.9649408, 47.0623415 ], + [ 8.9650146, 47.062359 ], + [ 8.9650801, 47.0623764 ], + [ 8.9651452, 47.0624389 ], + [ 8.9652273, 47.0624901 ], + [ 8.965359, 47.0624629 ], + [ 8.965606, 47.0624647 ], + [ 8.9657615, 47.0625221 ], + [ 8.9658264, 47.0625788 ], + [ 8.9659079, 47.0626639 ], + [ 8.9659975, 47.0627209 ], + [ 8.9660718, 47.0627271 ], + [ 8.9661712, 47.062694 ], + [ 8.9663607, 47.0626447 ], + [ 8.9665758, 47.0625392 ], + [ 8.9667987, 47.0624787 ], + [ 8.9670379, 47.062441 ], + [ 8.9672922, 47.062471 ], + [ 8.9674724, 47.0625568 ], + [ 8.9676444, 47.0626144 ], + [ 8.9679168, 47.0625881 ], + [ 8.968188, 47.0625731 ], + [ 8.968435, 47.0625524 ], + [ 8.9685989, 47.0626154 ], + [ 8.9687546, 47.0626786 ], + [ 8.9689352, 47.0627474 ], + [ 8.9691816, 47.0627886 ], + [ 8.9692793, 47.0628682 ], + [ 8.969311, 47.0629416 ], + [ 8.9694166, 47.0630946 ], + [ 8.9697425, 47.063356 ], + [ 8.9699796, 47.0635324 ], + [ 8.9701994, 47.0636804 ], + [ 8.9703714, 47.0638225 ], + [ 8.9705585, 47.0639478 ], + [ 8.9706557, 47.0640949 ], + [ 8.9707776, 47.0642142 ], + [ 8.9713115, 47.0642968 ], + [ 8.9714264, 47.0643427 ], + [ 8.9716315, 47.0644061 ], + [ 8.9717705, 47.0644634 ], + [ 8.9720907, 47.0645502 ], + [ 8.9723041, 47.0645911 ], + [ 8.9725502, 47.0646492 ], + [ 8.972764, 47.0647015 ], + [ 8.9730015, 47.0647482 ], + [ 8.9731661, 47.0647775 ], + [ 8.9734451, 47.0648076 ], + [ 8.9737159, 47.0648941 ], + [ 8.9739537, 47.0649802 ], + [ 8.9741253, 47.0650829 ], + [ 8.9742148, 47.0651905 ], + [ 8.9742796, 47.065298 ], + [ 8.9744271, 47.0653611 ], + [ 8.9746806, 47.0654474 ], + [ 8.9748194, 47.0655836 ], + [ 8.9749078, 47.0657364 ], + [ 8.9750207, 47.0659456 ], + [ 8.9751495, 47.066217 ], + [ 8.9752446, 47.0664938 ], + [ 8.9753094, 47.0666294 ], + [ 8.9754494, 47.0666303 ], + [ 8.9755718, 47.0667101 ], + [ 8.9756865, 47.0667786 ], + [ 8.9757594, 47.0668524 ], + [ 8.9757832, 47.0669088 ], + [ 8.9757909, 47.0669765 ], + [ 8.9757901, 47.067061 ], + [ 8.9758137, 47.0671401 ], + [ 8.9758779, 47.0672532 ], + [ 8.9759176, 47.0673774 ], + [ 8.9759578, 47.0674848 ], + [ 8.9759402, 47.0675917 ], + [ 8.9758723, 47.067749 ], + [ 8.9758464, 47.0678784 ], + [ 8.9758699, 47.06798 ], + [ 8.9758846, 47.0681492 ], + [ 8.9759069, 47.0683239 ], + [ 8.9759379, 47.0685158 ], + [ 8.9760353, 47.0686685 ], + [ 8.9762145, 47.0688331 ], + [ 8.9763697, 47.0689356 ], + [ 8.9764915, 47.069021 ], + [ 8.9765723, 47.0691681 ], + [ 8.976612, 47.0692924 ], + [ 8.9766611, 47.0693379 ], + [ 8.9768085, 47.0694008 ], + [ 8.9770221, 47.0694417 ], + [ 8.9772186, 47.069522 ], + [ 8.977275, 47.0695956 ], + [ 8.977324, 47.0696974 ], + [ 8.9773799, 47.0698386 ], + [ 8.9774029, 47.0699796 ], + [ 8.977483, 47.0701606 ], + [ 8.9775883, 47.0703302 ], + [ 8.9777092, 47.0705001 ], + [ 8.977886999999999, 47.0707887 ], + [ 8.9780321, 47.0710828 ], + [ 8.9783581, 47.0713724 ], + [ 8.9785714, 47.071464 ], + [ 8.9788007, 47.0715107 ], + [ 8.9790302, 47.0715913 ], + [ 8.9793257, 47.0717059 ], + [ 8.979555, 47.071809 ], + [ 8.9797189, 47.0718158 ], + [ 8.9799494, 47.0718175 ], + [ 8.9801389, 47.0718243 ], + [ 8.9803187, 47.0719214 ], + [ 8.9805315, 47.0720524 ], + [ 8.9808749, 47.0722296 ], + [ 8.9811208, 47.0723383 ], + [ 8.9811937, 47.0724121 ], + [ 8.9811925, 47.0725416 ], + [ 8.9811743, 47.0727105 ], + [ 8.9812223, 47.0728348 ], + [ 8.9813364, 47.0729371 ], + [ 8.9815072, 47.073096 ], + [ 8.9818094, 47.0733291 ], + [ 8.9820373, 47.0735279 ], + [ 8.9822172, 47.0736306 ], + [ 8.9824797, 47.0736832 ], + [ 8.9828501, 47.073742 ], + [ 8.9833427, 47.0738131 ], + [ 8.9839109, 47.0737945 ], + [ 8.9840268, 47.0737333 ], + [ 8.9841923, 47.0736781 ], + [ 8.9843313, 47.0737017 ], + [ 8.9844547, 47.0737306 ], + [ 8.9845611, 47.0737933 ], + [ 8.9846755, 47.0738786 ], + [ 8.9847645, 47.0739694 ], + [ 8.9848048, 47.0740542 ], + [ 8.9848362, 47.0742009 ], + [ 8.9848594, 47.0743475 ], + [ 8.9848914, 47.0744605 ], + [ 8.9849882, 47.0745908 ], + [ 8.9851517, 47.0746933 ], + [ 8.9854621, 47.0748983 ], + [ 8.9857242, 47.0749958 ], + [ 8.9860439, 47.0751221 ], + [ 8.9865115, 47.0752661 ], + [ 8.9866916, 47.0753463 ], + [ 8.9869624, 47.0754609 ], + [ 8.9871912, 47.0756033 ], + [ 8.987313499999999, 47.0757055 ], + [ 8.9873377, 47.0757734 ], + [ 8.9873037, 47.0758237 ], + [ 8.9872122, 47.0759303 ], + [ 8.9871779, 47.076054 ], + [ 8.9872258, 47.0761444 ], + [ 8.987389499999999, 47.0762865 ], + [ 8.9876261, 47.076412 ], + [ 8.9878313, 47.0764753 ], + [ 8.9882267, 47.0764894 ], + [ 8.9884161, 47.0764906 ], + [ 8.9885718, 47.0765537 ], + [ 8.9886532, 47.0766332 ], + [ 8.9887748, 47.0767411 ], + [ 8.98884, 47.0768598 ], + [ 8.9889611, 47.0770353 ], + [ 8.9890831, 47.0771826 ], + [ 8.9892949, 47.0773362 ], + [ 8.9894676, 47.0774163 ], + [ 8.9895575, 47.0774508 ], + [ 8.989639, 47.0775358 ], + [ 8.9897773, 47.0776495 ], + [ 8.9898994, 47.0777461 ], + [ 8.9900552, 47.0778374 ], + [ 8.9901859, 47.0779171 ], + [ 8.9902918, 47.0780193 ], + [ 8.9903979, 47.0781327 ], + [ 8.9904297, 47.0782343 ], + [ 8.99051, 47.0783927 ], + [ 8.9906894, 47.0785629 ], + [ 8.990901, 47.0787333 ], + [ 8.9910394, 47.0788809 ], + [ 8.9911696, 47.0790283 ], + [ 8.9912173, 47.0791694 ], + [ 8.991274, 47.079305 ], + [ 8.9914042, 47.0793961 ], + [ 8.9915275, 47.0794477 ], + [ 8.9916836, 47.0794655 ], + [ 8.9918889, 47.0795064 ], + [ 8.9921184, 47.0795587 ], + [ 8.9923154, 47.0795939 ], + [ 8.9924637, 47.0796287 ], + [ 8.992578, 47.0797084 ], + [ 8.9927243, 47.0798446 ], + [ 8.9930592, 47.0800948 ], + [ 8.9930986, 47.0802303 ], + [ 8.9931389, 47.0803432 ], + [ 8.9931789, 47.080445 ], + [ 8.9932518, 47.0805187 ], + [ 8.993342, 47.0805644 ], + [ 8.9934731, 47.0806273 ], + [ 8.9935878, 47.0806956 ], + [ 8.9936776, 47.0807808 ], + [ 8.993726, 47.0808319 ], + [ 8.9937582, 47.080894 ], + [ 8.9937828, 47.0809448 ], + [ 8.9937902, 47.0810295 ], + [ 8.9937967, 47.0811422 ], + [ 8.9938779, 47.081216 ], + [ 8.9940094, 47.0812957 ], + [ 8.994181, 47.0813645 ], + [ 8.9943205, 47.081405 ], + [ 8.9944275, 47.0814058 ], + [ 8.9945184, 47.0813612 ], + [ 8.9945685, 47.0813278 ], + [ 8.9947014, 47.0812554 ], + [ 8.9948662, 47.0812058 ], + [ 8.9949823, 47.0811503 ], + [ 8.9951309, 47.0811062 ], + [ 8.9952392, 47.080983 ], + [ 8.9953143, 47.0808766 ], + [ 8.9953886, 47.0808263 ], + [ 8.9954459, 47.0808436 ], + [ 8.9954953, 47.0808721 ], + [ 8.9956171, 47.0810137 ], + [ 8.9958047, 47.0812066 ], + [ 8.9959262, 47.0813652 ], + [ 8.9960078, 47.0814277 ], + [ 8.9961307, 47.0814906 ], + [ 8.9962782, 47.0815254 ], + [ 8.9964256, 47.0816109 ], + [ 8.9966138, 47.0817136 ], + [ 8.9967776, 47.0818273 ], + [ 8.9968998, 47.0819241 ], + [ 8.9969971, 47.082043 ], + [ 8.9970527, 47.0822012 ], + [ 8.9971161, 47.0824552 ], + [ 8.997252, 47.0827997 ], + [ 8.9972677, 47.0829125 ], + [ 8.9972422, 47.0829969 ], + [ 8.9972166, 47.0830812 ], + [ 8.99724, 47.0831772 ], + [ 8.9972716, 47.0833013 ], + [ 8.9973519, 47.0834596 ], + [ 8.9974418, 47.0835505 ], + [ 8.9975398, 47.0836075 ], + [ 8.9976954, 47.0836648 ], + [ 8.9978351, 47.083739 ], + [ 8.9979579, 47.0838018 ], + [ 8.9980389, 47.0838981 ], + [ 8.9981864, 47.0839612 ], + [ 8.9984074, 47.0840584 ], + [ 8.9986702, 47.0841505 ], + [ 8.9987692, 47.0841286 ], + [ 8.998925, 47.0841352 ], + [ 8.9991712, 47.0842496 ], + [ 8.9991122, 47.084345 ], + [ 8.99998, 47.0847453 ], + [ 9.0003734, 47.0849114 ], + [ 9.0005539, 47.0849746 ], + [ 9.000784, 47.0850437 ], + [ 9.0011043, 47.0851022 ], + [ 9.0012932, 47.0851712 ], + [ 9.0014899, 47.0852288 ], + [ 9.001613, 47.0852691 ], + [ 9.0017187, 47.0853655 ], + [ 9.0018004, 47.0854562 ], + [ 9.0019634, 47.0855701 ], + [ 9.0022094, 47.0857069 ], + [ 9.0024709, 47.0858383 ], + [ 9.0028805, 47.0860214 ], + [ 9.0033484, 47.0861993 ], + [ 9.003889, 47.0863888 ], + [ 9.0044718, 47.0865562 ], + [ 9.004997, 47.086723 ], + [ 9.0053331, 47.0868437 ], + [ 9.0055461, 47.0869184 ], + [ 9.0058257, 47.0869653 ], + [ 9.0060391, 47.0870287 ], + [ 9.006285, 47.0871037 ], + [ 9.0066878, 47.0871964 ], + [ 9.0074434, 47.0873312 ], + [ 9.0082163, 47.0874096 ], + [ 9.0081766, 47.0872911 ], + [ 9.0082766, 47.0871903 ], + [ 9.0083266, 47.0871005 ], + [ 9.0083701, 47.0869543 ], + [ 9.0084531, 47.0868365 ], + [ 9.0084872, 47.0867354 ], + [ 9.0084799, 47.0866564 ], + [ 9.0084478, 47.0865434 ], + [ 9.008433, 47.0864306 ], + [ 9.0084585, 47.0863463 ], + [ 9.0085497, 47.0862568 ], + [ 9.0086585, 47.0861505 ], + [ 9.0087417, 47.0860384 ], + [ 9.0088, 47.0859486 ], + [ 9.0088349, 47.0858193 ], + [ 9.0086644, 47.0855364 ], + [ 9.0085598, 47.0853667 ], + [ 9.0084783, 47.0852534 ], + [ 9.0085536, 47.0851526 ], + [ 9.008596, 47.085057 ], + [ 9.0087281, 47.0849846 ], + [ 9.0089099, 47.0849239 ], + [ 9.0090667, 47.0848799 ], + [ 9.0092565, 47.0848698 ], + [ 9.0094616, 47.0848995 ], + [ 9.0096506, 47.0849739 ], + [ 9.0099293, 47.0850716 ], + [ 9.010077, 47.085112 ], + [ 9.0102003, 47.0851354 ], + [ 9.0104964, 47.0851542 ], + [ 9.0107761, 47.0852013 ], + [ 9.0110804, 47.0852202 ], + [ 9.0113348, 47.0852783 ], + [ 9.0116551, 47.0853648 ], + [ 9.012032, 47.0854689 ], + [ 9.0123778, 47.0855275 ], + [ 9.0125581, 47.0855287 ], + [ 9.0127391, 47.0855524 ], + [ 9.0129621, 47.0855483 ], + [ 9.0131511, 47.0855664 ], + [ 9.0133898, 47.0855624 ], + [ 9.0135618, 47.0855917 ], + [ 9.0137758, 47.0856439 ], + [ 9.0140711, 47.0857472 ], + [ 9.0145297, 47.0859193 ], + [ 9.0148338, 47.0860116 ], + [ 9.0150966, 47.086047 ], + [ 9.0153188, 47.0860711 ], + [ 9.0154834, 47.0860722 ], + [ 9.0155908, 47.0860279 ], + [ 9.0156914, 47.0858932 ], + [ 9.0155353, 47.0858471 ], + [ 9.015512, 47.0857287 ], + [ 9.0154805, 47.0855538 ], + [ 9.0155075, 47.0853793 ], + [ 9.0155666, 47.0852333 ], + [ 9.0156418, 47.0851323 ], + [ 9.0157826, 47.0850488 ], + [ 9.0159889, 47.0849543 ], + [ 9.0162125, 47.08486 ], + [ 9.0167237, 47.0847733 ], + [ 9.0179926, 47.0846465 ], + [ 9.0183381, 47.0846375 ], + [ 9.0186263, 47.0846394 ], + [ 9.0187497, 47.0846628 ], + [ 9.0188485, 47.0846916 ], + [ 9.0189954, 47.0847602 ], + [ 9.0190936, 47.084851 ], + [ 9.0192489, 47.0849816 ], + [ 9.0195674, 47.0851472 ], + [ 9.0198463, 47.0852785 ], + [ 9.0200757, 47.0854096 ], + [ 9.0240145, 47.0850356 ], + [ 9.0259384, 47.0852569 ], + [ 9.0262342, 47.0852645 ], + [ 9.0264069, 47.08526 ], + [ 9.0265148, 47.0852325 ], + [ 9.0265972, 47.0851823 ], + [ 9.0267054, 47.0851098 ], + [ 9.0267793, 47.0850764 ], + [ 9.026887, 47.0850433 ], + [ 9.0270029, 47.0850102 ], + [ 9.0270183, 47.0850837 ], + [ 9.027001, 47.0851398 ], + [ 9.0270001, 47.0852187 ], + [ 9.0269834, 47.0852693 ], + [ 9.0269912, 47.0853369 ], + [ 9.0270403, 47.0853542 ], + [ 9.0270894, 47.0853433 ], + [ 9.0271643, 47.0852874 ], + [ 9.0283184, 47.0843428 ], + [ 9.0284921, 47.0842312 ], + [ 9.0286409, 47.0841702 ], + [ 9.0288229, 47.0841433 ], + [ 9.0290371, 47.0841222 ], + [ 9.0292512, 47.0840953 ], + [ 9.0296215, 47.084064 ], + [ 9.0315755, 47.08375 ], + [ 9.0317816, 47.083757 ], + [ 9.0319704, 47.0837694 ], + [ 9.0321182, 47.0838098 ], + [ 9.0322582, 47.0838389 ], + [ 9.0323817, 47.0838397 ], + [ 9.0324882, 47.0838516 ], + [ 9.0326125, 47.0838243 ], + [ 9.0327281, 47.08378 ], + [ 9.0328853, 47.0836683 ], + [ 9.0331092, 47.0835571 ], + [ 9.0332993, 47.0834175 ], + [ 9.033689, 47.0831778 ], + [ 9.0339459, 47.083016 ], + [ 9.0341201, 47.082865 ], + [ 9.0340797, 47.0827803 ], + [ 9.034073, 47.0826675 ], + [ 9.0340909, 47.0825212 ], + [ 9.0341577, 47.0824145 ], + [ 9.0341996, 47.0823303 ], + [ 9.0342747, 47.082252 ], + [ 9.0344151, 47.0821852 ], + [ 9.0345147, 47.0821013 ], + [ 9.0345736, 47.0819778 ], + [ 9.0346903, 47.0818884 ], + [ 9.0348562, 47.0817374 ], + [ 9.0349478, 47.0816083 ], + [ 9.03504, 47.0814963 ], + [ 9.0350988, 47.0813445 ], + [ 9.0351422, 47.0811701 ], + [ 9.0351759, 47.0810576 ], + [ 9.0352676, 47.0809849 ], + [ 9.0353418, 47.0809066 ], + [ 9.035392, 47.0808224 ], + [ 9.0354841, 47.0806822 ], + [ 9.0356579, 47.0805762 ], + [ 9.0358322, 47.0804591 ], + [ 9.0360147, 47.0802856 ], + [ 9.0363467, 47.0800736 ], + [ 9.0366124, 47.0798724 ], + [ 9.0369758, 47.0796946 ], + [ 9.0370673, 47.0795882 ], + [ 9.0371341, 47.0795096 ], + [ 9.0372172, 47.0794538 ], + [ 9.0374234, 47.0794102 ], + [ 9.03772, 47.0793388 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "JBG0029", + "country" : "CHE", + "name" : [ + { + "text" : "Eidgenössisches Jagdbanngebiet Rauti-Tros", + "lang" : "de-CH" + }, + { + "text" : "District franc fédéral Rauti-Tros", + "lang" : "fr-CH" + }, + { + "text" : "Bandita federale di caccia Rauti-Tros", + "lang" : "it-CH" + }, + { + "text" : "Federal Game Reserve Rauti-Tros", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.2490146, 46.8889955 ], + [ 8.2490858, 46.8890599 ], + [ 8.2491632, 46.889121 ], + [ 8.249246, 46.8891787 ], + [ 8.2493336, 46.8892329 ], + [ 8.2494269, 46.8892824 ], + [ 8.2495309, 46.8893366 ], + [ 8.2496362, 46.8893903 ], + [ 8.2497428, 46.8894424 ], + [ 8.2498568, 46.8894947 ], + [ 8.250168, 46.8896306 ], + [ 8.2502673, 46.8896753 ], + [ 8.2503632, 46.8897224 ], + [ 8.2504561, 46.8897726 ], + [ 8.2505454, 46.8898251 ], + [ 8.2506313, 46.8898808 ], + [ 8.2506369, 46.8898848 ], + [ 8.2506429, 46.8898886 ], + [ 8.2506491, 46.8898922 ], + [ 8.2506555, 46.8898956 ], + [ 8.2506621, 46.8898988 ], + [ 8.250669, 46.8899018 ], + [ 8.250676, 46.8899046 ], + [ 8.2506827, 46.889907 ], + [ 8.2506896, 46.8899092 ], + [ 8.2506967, 46.8899112 ], + [ 8.2507038, 46.889913 ], + [ 8.250711, 46.8899146 ], + [ 8.2507184, 46.8899159 ], + [ 8.2507258, 46.8899171 ], + [ 8.2511964, 46.8892592 ], + [ 8.2512834, 46.8891116 ], + [ 8.2504504, 46.8887535 ], + [ 8.2497286, 46.8883087 ], + [ 8.2496709, 46.8882733 ], + [ 8.2491449, 46.887794 ], + [ 8.2488289, 46.8875006 ], + [ 8.2487268, 46.8874057 ], + [ 8.2483665, 46.8870774 ], + [ 8.2475166, 46.8875334 ], + [ 8.2478293, 46.8878383 ], + [ 8.2479283, 46.8879348 ], + [ 8.2479689, 46.8879744 ], + [ 8.2484689, 46.8884629 ], + [ 8.2489333, 46.888916 ], + [ 8.2490146, 46.8889955 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VBS_10", + "country" : "CHE", + "name" : [ + { + "text" : "VBS_10 Sarnen", + "lang" : "de-CH" + }, + { + "text" : "VBS_10 Sarnen", + "lang" : "fr-CH" + }, + { + "text" : "VBS_10 Sarnen", + "lang" : "it-CH" + }, + { + "text" : "VBS_10 Sarnen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "regulationExemption" : "YES", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Eidgenössisches Departement für Verteidigung, Bevölkerungsschutz und Sport (VBS)", + "lang" : "de-CH" + }, + { + "text" : "Département fédéral de la défense, de la protection de la population et des sports (DDPS)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento federale della difesa, della protezione della popolazione e dello sport (DDPS)", + "lang" : "it-CH" + }, + { + "text" : "Federal Department of Defence, Civil Protection and Sport (DDPS)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Lageverfolgungszentrum der Armee LVZ A", + "lang" : "de-CH" + }, + { + "text" : "Centre de suivi de la situation de l’armée, CSS A", + "lang" : "fr-CH" + }, + { + "text" : "Centro di monitoraggio della situazione dell’esercito, Centro mon sit Es", + "lang" : "it-CH" + }, + { + "text" : "Joint Operation Center, JOC", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vtg.admin.ch/en/joint-operations-command", + "email" : "lvz.op@vtg.admin.ch", + "phone" : "+41 58 464 96 43", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8088948, 47.4406207 ], + [ 7.8089056, 47.4406561 ], + [ 7.808917, 47.4406914 ], + [ 7.808929, 47.4407266 ], + [ 7.8089414999999995, 47.4407617 ], + [ 7.8089547, 47.4407967 ], + [ 7.8089578, 47.4408043 ], + [ 7.8095664, 47.4409766 ], + [ 7.8095803, 47.4410072 ], + [ 7.8097361, 47.4410519 ], + [ 7.8096964, 47.4408742 ], + [ 7.8094965, 47.4408168 ], + [ 7.8094832, 47.4407859 ], + [ 7.8088948, 47.4406207 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns305", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Zelgli", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Zelgli", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Zelgli", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Zelgli", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.4378359, 46.5302335 ], + [ 9.4378253, 46.5300924 ], + [ 9.4378041, 46.5299518 ], + [ 9.4377722, 46.5298123 ], + [ 9.4377298, 46.5296741 ], + [ 9.4376769, 46.5295376 ], + [ 9.4376138, 46.5294032 ], + [ 9.4375406, 46.5292712 ], + [ 9.4374575, 46.5291421 ], + [ 9.4373646, 46.5290162 ], + [ 9.4372624, 46.5288938 ], + [ 9.437151, 46.5287752 ], + [ 9.4370308, 46.5286609 ], + [ 9.4369021, 46.528551 ], + [ 9.4367652, 46.5284459 ], + [ 9.4366206, 46.528346 ], + [ 9.4364686, 46.5282514 ], + [ 9.4363096, 46.5281624 ], + [ 9.4361441, 46.5280792 ], + [ 9.4359725, 46.5280022 ], + [ 9.4357952, 46.5279315 ], + [ 9.4356129, 46.5278672 ], + [ 9.435426, 46.5278097 ], + [ 9.4352349, 46.5277589 ], + [ 9.4350403, 46.5277152 ], + [ 9.4348426, 46.5276785 ], + [ 9.4346424, 46.527649 ], + [ 9.4344402, 46.5276268 ], + [ 9.4342367, 46.527612 ], + [ 9.4340322, 46.5276045 ], + [ 9.4338275, 46.5276044 ], + [ 9.4336231, 46.5276116 ], + [ 9.4334195, 46.5276263 ], + [ 9.4332173, 46.5276483 ], + [ 9.433017, 46.5276776 ], + [ 9.4328193, 46.527714 ], + [ 9.4326245, 46.5277576 ], + [ 9.4324334, 46.5278081 ], + [ 9.4322463, 46.5278655 ], + [ 9.4320638, 46.5279295 ], + [ 9.4318865, 46.5280001 ], + [ 9.4317147, 46.528077 ], + [ 9.431549, 46.5281599 ], + [ 9.4313898, 46.5282487 ], + [ 9.4312376, 46.5283432 ], + [ 9.4310927, 46.528443 ], + [ 9.4309556, 46.5285479 ], + [ 9.4308267, 46.5286577 ], + [ 9.4307062, 46.5287719 ], + [ 9.4305946, 46.5288903 ], + [ 9.4304921, 46.5290126 ], + [ 9.430399, 46.5291385 ], + [ 9.4303156, 46.5292675 ], + [ 9.4302421, 46.5293994 ], + [ 9.4301787, 46.5295337 ], + [ 9.4301255, 46.5296702 ], + [ 9.4300828, 46.5298083 ], + [ 9.4300506, 46.5299479 ], + [ 9.4300291, 46.5300884 ], + [ 9.4300182, 46.5302294 ], + [ 9.430018, 46.5303707 ], + [ 9.4300286, 46.5305118 ], + [ 9.4300498, 46.5306524 ], + [ 9.4300817, 46.5307919 ], + [ 9.4301241, 46.5309301 ], + [ 9.4301769, 46.5310666 ], + [ 9.43024, 46.5312011 ], + [ 9.4303132, 46.531333 ], + [ 9.4303964, 46.5314621 ], + [ 9.4304892, 46.531588 ], + [ 9.4305914, 46.5317105 ], + [ 9.4307027, 46.531829 ], + [ 9.4308229, 46.5319434 ], + [ 9.4309517, 46.5320533 ], + [ 9.4310885, 46.5321583 ], + [ 9.4312332, 46.5322583 ], + [ 9.4313852, 46.5323529 ], + [ 9.4315442, 46.5324419 ], + [ 9.4317097, 46.5325251 ], + [ 9.4318813, 46.5326021 ], + [ 9.4320586, 46.5326728 ], + [ 9.4322409, 46.5327371 ], + [ 9.4324279, 46.5327946 ], + [ 9.4326189, 46.5328454 ], + [ 9.4328136, 46.5328891 ], + [ 9.4330113, 46.5329258 ], + [ 9.4332115, 46.5329553 ], + [ 9.4334137, 46.5329775 ], + [ 9.4336173, 46.5329924 ], + [ 9.4338217, 46.5329999 ], + [ 9.4340264, 46.533 ], + [ 9.4342309, 46.5329927 ], + [ 9.4344345, 46.532978 ], + [ 9.4346367, 46.532956 ], + [ 9.434837, 46.5329267 ], + [ 9.4350348, 46.5328903 ], + [ 9.4352295, 46.5328467 ], + [ 9.4354207, 46.5327962 ], + [ 9.4356078, 46.5327388 ], + [ 9.4357903, 46.5326748 ], + [ 9.435967699999999, 46.5326042 ], + [ 9.4361394, 46.5325273 ], + [ 9.4363052, 46.5324444 ], + [ 9.4364643, 46.5323555 ], + [ 9.4366166, 46.5322611 ], + [ 9.4367614, 46.5321612 ], + [ 9.4368985, 46.5320563 ], + [ 9.4370275, 46.5319466 ], + [ 9.4371479, 46.5318323 ], + [ 9.4372595, 46.5317139 ], + [ 9.437362, 46.5315916 ], + [ 9.4374551, 46.5314657 ], + [ 9.4375385, 46.5313367 ], + [ 9.437612, 46.5312048 ], + [ 9.4376754, 46.5310705 ], + [ 9.4377285, 46.5309341 ], + [ 9.4377712, 46.5307959 ], + [ 9.4378034, 46.5306563 ], + [ 9.4378249, 46.5305158 ], + [ 9.4378358, 46.5303748 ], + [ 9.4378359, 46.5302335 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0033", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Ferrera", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Ferrera", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Ferrera", + "lang" : "it-CH" + }, + { + "text" : "Substation Ferrera", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.6432468, 46.771587 ], + [ 6.6432525, 46.7717636 ], + [ 6.6432582, 46.7718223 ], + [ 6.6432595, 46.7718332 ], + [ 6.6432763999999995, 46.7719504 ], + [ 6.6433157, 46.7721249 ], + [ 6.6433715, 46.7722973 ], + [ 6.6433755, 46.7723079 ], + [ 6.6434476, 46.7724774 ], + [ 6.6435357, 46.7726433 ], + [ 6.643603, 46.7727514 ], + [ 6.6436096, 46.7727614 ], + [ 6.643646, 46.7728149 ], + [ 6.6437648, 46.7729714 ], + [ 6.6438983, 46.7731223 ], + [ 6.643946, 46.7731714 ], + [ 6.6439551, 46.7731804 ], + [ 6.6440549, 46.773276 ], + [ 6.644216, 46.7734136 ], + [ 6.6443897, 46.7735437 ], + [ 6.6444009, 46.773551499999996 ], + [ 6.6445867, 46.7736736 ], + [ 6.6447837, 46.773787 ], + [ 6.644921, 46.7738576 ], + [ 6.644934, 46.773864 ], + [ 6.6450040999999995, 46.7738977 ], + [ 6.645221, 46.7739924 ], + [ 6.6454464, 46.7740772 ], + [ 6.6455233, 46.7741032 ], + [ 6.6455377, 46.774108 ], + [ 6.6456938999999995, 46.7741565 ], + [ 6.6459335, 46.7742204 ], + [ 6.6461787, 46.7742733 ], + [ 6.6461941, 46.7742763 ], + [ 6.6464438, 46.7743181 ], + [ 6.646697, 46.7743486 ], + [ 6.6468671, 46.7743626 ], + [ 6.646883, 46.7743637 ], + [ 6.6469684, 46.7743688 ], + [ 6.6472252, 46.7743764 ], + [ 6.6474820999999995, 46.7743724 ], + [ 6.6475676, 46.7743685 ], + [ 6.6475835, 46.7743676 ], + [ 6.6477541, 46.774356 ], + [ 6.6480081, 46.774329 ], + [ 6.6482589999999995, 46.7742906 ], + [ 6.6482744, 46.7742879 ], + [ 6.6485211, 46.7742383 ], + [ 6.6487625999999995, 46.7741778 ], + [ 6.6489202, 46.7741314 ], + [ 6.6489347, 46.7741269 ], + [ 6.6490123, 46.774102 ], + [ 6.6492401999999995, 46.7740203 ], + [ 6.6494598, 46.7739286 ], + [ 6.6495309, 46.7738959 ], + [ 6.6495441, 46.7738897 ], + [ 6.6496834, 46.773821 ], + [ 6.6498837, 46.7737103 ], + [ 6.6500731, 46.7735909 ], + [ 6.6500845, 46.7735832 ], + [ 6.6502621, 46.7734556 ], + [ 6.6504271, 46.7733202 ], + [ 6.6505298, 46.773226 ], + [ 6.6505391, 46.7732171 ], + [ 6.6505882, 46.7731688 ], + [ 6.6507261, 46.7730198 ], + [ 6.6508496, 46.7728649 ], + [ 6.6508875, 46.7728119 ], + [ 6.6508944, 46.772802 ], + [ 6.6509649, 46.7726949 ], + [ 6.6510578, 46.7725302 ], + [ 6.6511349, 46.7723618 ], + [ 6.6511392, 46.7723512 ], + [ 6.6512001, 46.7721797 ], + [ 6.6512445, 46.7720057 ], + [ 6.6512649, 46.7718888 ], + [ 6.6512664, 46.7718779 ], + [ 6.6512738, 46.7718192 ], + [ 6.6512848, 46.7716428 ], + [ 6.651279, 46.7714663 ], + [ 6.6512733, 46.7714076 ], + [ 6.6512721, 46.7713966 ], + [ 6.6512551, 46.7712794 ], + [ 6.6512158, 46.7711049 ], + [ 6.65116, 46.7709326 ], + [ 6.651156, 46.7709219 ], + [ 6.6510839, 46.7707524 ], + [ 6.6509958000000005, 46.7705865 ], + [ 6.6509284, 46.7704785 ], + [ 6.6509218, 46.7704685 ], + [ 6.6508855, 46.770415 ], + [ 6.6507666, 46.7702584 ], + [ 6.6506331, 46.7701075 ], + [ 6.6505852999999995, 46.7700585 ], + [ 6.6505763, 46.7700495 ], + [ 6.6504764, 46.7699539 ], + [ 6.6503154, 46.7698163 ], + [ 6.6501415999999995, 46.7696862 ], + [ 6.6501304, 46.7696783 ], + [ 6.6499445999999995, 46.7695563 ], + [ 6.6497475999999995, 46.7694429 ], + [ 6.6496103, 46.7693723 ], + [ 6.6495974, 46.7693659 ], + [ 6.6495272, 46.7693323 ], + [ 6.6493104, 46.7692375 ], + [ 6.649085, 46.7691527 ], + [ 6.6490081, 46.7691267 ], + [ 6.6489937, 46.769122 ], + [ 6.6488375, 46.7690735 ], + [ 6.6485979, 46.7690096 ], + [ 6.6483527, 46.7689566 ], + [ 6.6483374, 46.7689537 ], + [ 6.6480877, 46.7689118 ], + [ 6.6478345999999995, 46.7688813 ], + [ 6.6476644, 46.7688673 ], + [ 6.6476485, 46.7688663 ], + [ 6.6475632000000004, 46.7688612 ], + [ 6.6473064, 46.7688536 ], + [ 6.6470495, 46.7688576 ], + [ 6.646964, 46.7688615 ], + [ 6.6469481, 46.7688624 ], + [ 6.6467775, 46.768874 ], + [ 6.6465235, 46.768901 ], + [ 6.6462727, 46.7689393 ], + [ 6.6462572, 46.7689421 ], + [ 6.6460105, 46.7689916 ], + [ 6.6457691, 46.7690522 ], + [ 6.6456115, 46.7690985 ], + [ 6.645597, 46.769103 ], + [ 6.6455193999999995, 46.7691279 ], + [ 6.6452915, 46.769209599999996 ], + [ 6.6450719, 46.7693013 ], + [ 6.6450008, 46.769334 ], + [ 6.6449876, 46.7693402 ], + [ 6.6448483, 46.7694089 ], + [ 6.644648, 46.7695196 ], + [ 6.6444586999999995, 46.769639 ], + [ 6.6444472999999995, 46.7696466 ], + [ 6.6442697, 46.7697743 ], + [ 6.6441046, 46.7699097 ], + [ 6.644002, 46.7700038 ], + [ 6.6439927, 46.7700127 ], + [ 6.6439435, 46.7700611 ], + [ 6.6438056, 46.7702101 ], + [ 6.6436822, 46.770365 ], + [ 6.6436442, 46.7704179 ], + [ 6.6436373, 46.7704278 ], + [ 6.6435668, 46.770535 ], + [ 6.6434738, 46.7706996 ], + [ 6.6433967, 46.7708681 ], + [ 6.6433924, 46.7708786 ], + [ 6.6433316, 46.7710502 ], + [ 6.6432871, 46.7712241 ], + [ 6.6432667, 46.771341 ], + [ 6.6432652, 46.7713519 ], + [ 6.6432578, 46.7714106 ], + [ 6.6432468, 46.771587 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00023", + "country" : "CHE", + "name" : [ + { + "text" : "Hôpital régional eHnv - site d'Yverdon", + "lang" : "de-CH" + }, + { + "text" : "Hôpital régional eHnv - site d'Yverdon", + "lang" : "fr-CH" + }, + { + "text" : "Hôpital régional eHnv - site d'Yverdon", + "lang" : "it-CH" + }, + { + "text" : "Hôpital régional eHnv - site d'Yverdon", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kantonspolizei Waadt", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale vaudoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Vaud", + "lang" : "it-CH" + }, + { + "text" : "Vaud Cantonal Police", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.pcv@vd.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.9869734, 46.3134408 ], + [ 6.9803183, 46.3328449 ], + [ 6.9976548, 46.3728551 ], + [ 7.0376131, 46.3823596 ], + [ 7.0730778, 46.3662875 ], + [ 7.0718868, 46.3502713 ], + [ 7.0155473, 46.3117524 ], + [ 6.9869734, 46.3134408 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSEY001", + "country" : "CHE", + "name" : [ + { + "text" : "LSEY Leysin", + "lang" : "de-CH" + }, + { + "text" : "LSEY Leysin", + "lang" : "fr-CH" + }, + { + "text" : "LSEY Leysin", + "lang" : "it-CH" + }, + { + "text" : "LSEY Leysin", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Héliport Leysin", + "lang" : "de-CH" + }, + { + "text" : "Héliport Leysin", + "lang" : "fr-CH" + }, + { + "text" : "Héliport Leysin", + "lang" : "it-CH" + }, + { + "text" : "Héliport Leysin", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Chef d'aérodrome", + "lang" : "de-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "fr-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "it-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Silvano Meli", + "lang" : "de-CH" + }, + { + "text" : "Silvano Meli", + "lang" : "fr-CH" + }, + { + "text" : "Silvano Meli", + "lang" : "it-CH" + }, + { + "text" : "Silvano Meli", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.air-glaciers.ch/leysin", + "email" : "leysin@air-glaciers.ch", + "phone" : "0041244943434", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P01DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.1566402, 46.9495571 ], + [ 7.1566355999999995, 46.9494158 ], + [ 7.1566201, 46.9492749 ], + [ 7.1565939, 46.9491348 ], + [ 7.1565571, 46.9489958 ], + [ 7.1565096, 46.9488583 ], + [ 7.1564517, 46.9487227 ], + [ 7.1563836, 46.9485894 ], + [ 7.1563053, 46.9484586 ], + [ 7.1562172, 46.9483309 ], + [ 7.1561194, 46.9482065 ], + [ 7.1560122, 46.9480858 ], + [ 7.155896, 46.9479691 ], + [ 7.155771, 46.9478567 ], + [ 7.1556376, 46.9477489 ], + [ 7.1554961, 46.9476461 ], + [ 7.155347, 46.947548499999996 ], + [ 7.1551906, 46.9474563 ], + [ 7.1550274, 46.9473699 ], + [ 7.1548578, 46.9472894 ], + [ 7.1546823, 46.9472152 ], + [ 7.1545013, 46.9471473 ], + [ 7.1543154, 46.947086 ], + [ 7.1541251, 46.9470315 ], + [ 7.1539309, 46.9469839 ], + [ 7.1537333, 46.9469432 ], + [ 7.1535329, 46.9469098 ], + [ 7.1533302, 46.9468835 ], + [ 7.1531258, 46.9468645 ], + [ 7.1529201, 46.946853 ], + [ 7.1527139, 46.9468487 ], + [ 7.1525077, 46.9468519 ], + [ 7.152302, 46.9468625 ], + [ 7.1520973, 46.9468804 ], + [ 7.1518943, 46.9469057 ], + [ 7.1516936, 46.9469381 ], + [ 7.1514955, 46.9469778 ], + [ 7.1513008, 46.9470244 ], + [ 7.1511099, 46.947078 ], + [ 7.1509234, 46.9471384 ], + [ 7.1507417, 46.9472053 ], + [ 7.1505654, 46.9472787 ], + [ 7.150395, 46.9473583 ], + [ 7.1502309, 46.9474439 ], + [ 7.1500735, 46.9475352 ], + [ 7.1499233, 46.9476321 ], + [ 7.1497808, 46.9477342 ], + [ 7.1496462, 46.9478413 ], + [ 7.14952, 46.9479531 ], + [ 7.1494025, 46.9480692 ], + [ 7.1492941, 46.9481894 ], + [ 7.149195, 46.9483133 ], + [ 7.1491054, 46.9484406 ], + [ 7.1490258, 46.9485709 ], + [ 7.1489562, 46.9487039 ], + [ 7.1488969, 46.9488392 ], + [ 7.148848, 46.9489765 ], + [ 7.1488096, 46.9491153 ], + [ 7.1487819, 46.9492553 ], + [ 7.148765, 46.9493961 ], + [ 7.1487588, 46.9495373 ], + [ 7.1487635, 46.9496786 ], + [ 7.1487789, 46.9498195 ], + [ 7.148805, 46.9499596 ], + [ 7.1488419, 46.9500986 ], + [ 7.1488893000000004, 46.9502361 ], + [ 7.1489472, 46.9503717 ], + [ 7.1490153, 46.9505051 ], + [ 7.1490936, 46.9506358 ], + [ 7.1491817, 46.9507635 ], + [ 7.1492795, 46.9508879 ], + [ 7.1493866, 46.9510087 ], + [ 7.1495029, 46.9511254 ], + [ 7.1496278, 46.9512378 ], + [ 7.1497613, 46.9513456 ], + [ 7.1499027, 46.9514484 ], + [ 7.1500519, 46.951546 ], + [ 7.1502083, 46.9516382 ], + [ 7.1503715, 46.9517246 ], + [ 7.1505411, 46.951805 ], + [ 7.1507166, 46.9518793 ], + [ 7.1508976, 46.9519472 ], + [ 7.1510834, 46.9520085 ], + [ 7.1512738, 46.952063 ], + [ 7.151468, 46.9521107 ], + [ 7.1516656, 46.9521513 ], + [ 7.151866, 46.9521848 ], + [ 7.1520688, 46.952211 ], + [ 7.1522732, 46.95223 ], + [ 7.1524789, 46.9522416 ], + [ 7.1526851, 46.9522458 ], + [ 7.1528914, 46.9522426 ], + [ 7.1530971, 46.9522321 ], + [ 7.1533018, 46.9522141 ], + [ 7.1535048, 46.9521889 ], + [ 7.1537056, 46.9521564 ], + [ 7.1539036, 46.9521168 ], + [ 7.1540983, 46.9520701 ], + [ 7.1542892, 46.9520165 ], + [ 7.1544758, 46.9519561 ], + [ 7.1546575, 46.9518892 ], + [ 7.1548338, 46.9518158 ], + [ 7.1550042, 46.9517362 ], + [ 7.1551684, 46.9516506 ], + [ 7.1553257, 46.9515592 ], + [ 7.1554759, 46.9514624 ], + [ 7.1556185, 46.9513602 ], + [ 7.155753, 46.9512531 ], + [ 7.1558792, 46.9511414 ], + [ 7.1559967, 46.9510252 ], + [ 7.1561050999999996, 46.950905 ], + [ 7.1562042, 46.9507811 ], + [ 7.1562937, 46.9506538 ], + [ 7.1563734, 46.9505235 ], + [ 7.1564429, 46.9503905 ], + [ 7.1565023, 46.9502552 ], + [ 7.1565511, 46.9501179 ], + [ 7.1565895, 46.9499791 ], + [ 7.1566171, 46.9498391 ], + [ 7.1566341, 46.9496983 ], + [ 7.1566402, 46.9495571 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0042", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Galmiz", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Galmiz", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Galmiz", + "lang" : "it-CH" + }, + { + "text" : "Substation Galmiz", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.9356005, 47.4975842 ], + [ 8.935591, 47.4974431 ], + [ 8.9355707, 47.4973025 ], + [ 8.9355396, 47.4971629 ], + [ 8.935497699999999, 47.4970245 ], + [ 8.9354452, 47.4968878 ], + [ 8.9353822, 47.4967531 ], + [ 8.9353089, 47.4966209 ], + [ 8.9352254, 47.4964914 ], + [ 8.9351321, 47.4963651 ], + [ 8.9350292, 47.4962423 ], + [ 8.9349169, 47.4961233 ], + [ 8.9347956, 47.4960084 ], + [ 8.9346656, 47.495898 ], + [ 8.9345272, 47.4957924 ], + [ 8.9343809, 47.4956918 ], + [ 8.934227, 47.4955965 ], + [ 8.934066, 47.4955068 ], + [ 8.9338982, 47.495423 ], + [ 8.9337242, 47.4953452 ], + [ 8.9335445, 47.4952737 ], + [ 8.9333594, 47.4952087 ], + [ 8.9331696, 47.4951503 ], + [ 8.9329756, 47.4950987 ], + [ 8.9327778, 47.4950541 ], + [ 8.9325769, 47.4950166 ], + [ 8.9323733, 47.4949862 ], + [ 8.9321677, 47.4949631 ], + [ 8.9319606, 47.4949474 ], + [ 8.9317525, 47.494939 ], + [ 8.9315441, 47.494938 ], + [ 8.9313359, 47.4949443 ], + [ 8.9311284, 47.4949581 ], + [ 8.9309223, 47.4949792 ], + [ 8.9307181, 47.4950076 ], + [ 8.9305164, 47.4950432 ], + [ 8.9303178, 47.4950859 ], + [ 8.9301226, 47.4951355 ], + [ 8.9299316, 47.4951921 ], + [ 8.9297452, 47.4952553 ], + [ 8.929564, 47.495325 ], + [ 8.9293884, 47.4954011 ], + [ 8.9292189, 47.4954833 ], + [ 8.929056, 47.4955714 ], + [ 8.9289001, 47.4956652 ], + [ 8.9287516, 47.4957644 ], + [ 8.928611, 47.4958687 ], + [ 8.9284787, 47.4959778 ], + [ 8.928355, 47.4960915 ], + [ 8.9282402, 47.4962094 ], + [ 8.9281347, 47.4963312 ], + [ 8.9280387, 47.4964566 ], + [ 8.9279526, 47.4965852 ], + [ 8.9278765, 47.4967168 ], + [ 8.9278107, 47.4968508 ], + [ 8.9277553, 47.496987 ], + [ 8.9277105, 47.4971249 ], + [ 8.9276764, 47.4972643 ], + [ 8.9276531, 47.4974046 ], + [ 8.9276407, 47.4975457 ], + [ 8.9276392, 47.4976869 ], + [ 8.9276486, 47.497828 ], + [ 8.9276689, 47.4979686 ], + [ 8.9277, 47.4981083 ], + [ 8.927741900000001, 47.4982467 ], + [ 8.9277944, 47.4983834 ], + [ 8.9278574, 47.498518 ], + [ 8.9279307, 47.4986503 ], + [ 8.9280141, 47.4987797 ], + [ 8.9281074, 47.4989061 ], + [ 8.9282103, 47.4990289 ], + [ 8.9283226, 47.4991479 ], + [ 8.9284439, 47.4992628 ], + [ 8.9285739, 47.4993732 ], + [ 8.9287122, 47.4994789 ], + [ 8.9288586, 47.4995795 ], + [ 8.9290125, 47.4996747 ], + [ 8.9291735, 47.4997644 ], + [ 8.9293413, 47.4998483 ], + [ 8.9295153, 47.499926 ], + [ 8.929695, 47.4999976 ], + [ 8.9298801, 47.5000626 ], + [ 8.9300699, 47.500121 ], + [ 8.930264, 47.5001725 ], + [ 8.9304617, 47.5002171 ], + [ 8.9306627, 47.5002547 ], + [ 8.9308663, 47.500285 ], + [ 8.9310719, 47.5003081 ], + [ 8.9312791, 47.5003239 ], + [ 8.9314871, 47.5003323 ], + [ 8.9316956, 47.5003333 ], + [ 8.9319038, 47.5003269 ], + [ 8.9321113, 47.5003132 ], + [ 8.9323174, 47.5002921 ], + [ 8.9325216, 47.5002637 ], + [ 8.9327233, 47.5002281 ], + [ 8.932922, 47.5001854 ], + [ 8.9331172, 47.5001357 ], + [ 8.933308199999999, 47.5000792 ], + [ 8.9334946, 47.500016 ], + [ 8.9336759, 47.4999462 ], + [ 8.9338515, 47.4998701 ], + [ 8.934021, 47.4997879 ], + [ 8.9341839, 47.4996998 ], + [ 8.9343398, 47.499606 ], + [ 8.9344882, 47.4995068 ], + [ 8.9346288, 47.4994025 ], + [ 8.9347611, 47.4992934 ], + [ 8.9348849, 47.4991797 ], + [ 8.9349996, 47.4990618 ], + [ 8.9351051, 47.49894 ], + [ 8.9352011, 47.4988146 ], + [ 8.9352872, 47.4986859 ], + [ 8.9353633, 47.4985544 ], + [ 8.9354291, 47.4984204 ], + [ 8.9354845, 47.4982842 ], + [ 8.9355293, 47.4981462 ], + [ 8.9355634, 47.4980069 ], + [ 8.9355866, 47.4978665 ], + [ 8.935599, 47.4977255 ], + [ 8.9356005, 47.4975842 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0131", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Wittenwil", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Wittenwil", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Wittenwil", + "lang" : "it-CH" + }, + { + "text" : "Substation Wittenwil", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8499047, 47.5295015 ], + [ 7.8500677, 47.5296514 ], + [ 7.8505053, 47.5301331 ], + [ 7.8508694, 47.5305353 ], + [ 7.8510051, 47.5305829 ], + [ 7.8512755, 47.5306659 ], + [ 7.8515249, 47.5307767 ], + [ 7.8522501, 47.5302537 ], + [ 7.8524231, 47.5300055 ], + [ 7.8522834, 47.5299345 ], + [ 7.8521776, 47.5298284 ], + [ 7.8520392, 47.5298317 ], + [ 7.8520135, 47.5298322 ], + [ 7.8519877000000005, 47.5298321 ], + [ 7.851962, 47.5298315 ], + [ 7.8519363, 47.5298302 ], + [ 7.8519108, 47.5298284 ], + [ 7.8518853, 47.5298259 ], + [ 7.8518599, 47.5298229 ], + [ 7.8518346999999995, 47.5298193 ], + [ 7.8518094, 47.5298152 ], + [ 7.8517844, 47.5298104 ], + [ 7.8517596, 47.5298051 ], + [ 7.8517351, 47.5297992 ], + [ 7.8517109, 47.5297927 ], + [ 7.851687, 47.5297857 ], + [ 7.8516635, 47.5297782 ], + [ 7.8516404, 47.5297701 ], + [ 7.8516148999999995, 47.52976 ], + [ 7.8515897, 47.5297495 ], + [ 7.8515649, 47.5297387 ], + [ 7.8515404, 47.5297274 ], + [ 7.8515163999999995, 47.5297158 ], + [ 7.8514927, 47.5297038 ], + [ 7.8514695, 47.5296914 ], + [ 7.8514467, 47.5296787 ], + [ 7.8514244, 47.5296656 ], + [ 7.8514025, 47.5296522 ], + [ 7.8513811, 47.5296385 ], + [ 7.8513602, 47.5296244 ], + [ 7.8513398, 47.52961 ], + [ 7.8513198, 47.5295953 ], + [ 7.8509531, 47.5292981 ], + [ 7.8509269, 47.5292767 ], + [ 7.8509014, 47.529255 ], + [ 7.8508765, 47.5292329 ], + [ 7.8508523, 47.5292105 ], + [ 7.8508287, 47.5291878 ], + [ 7.8508058, 47.5291648 ], + [ 7.8507836, 47.5291414 ], + [ 7.8507621, 47.5291178 ], + [ 7.850553, 47.5288823 ], + [ 7.8505378, 47.5288658 ], + [ 7.850522, 47.5288495 ], + [ 7.8505054, 47.5288336 ], + [ 7.8504882, 47.528818 ], + [ 7.8504704, 47.5288027 ], + [ 7.8504518999999995, 47.5287877 ], + [ 7.8504328, 47.5287732 ], + [ 7.850413, 47.528759 ], + [ 7.8503927000000004, 47.5287452 ], + [ 7.8503718, 47.5287318 ], + [ 7.8503504, 47.5287188 ], + [ 7.8503284, 47.5287062 ], + [ 7.8501988, 47.5286387 ], + [ 7.8501308, 47.5285706 ], + [ 7.8501094, 47.5284942 ], + [ 7.8500187, 47.5284603 ], + [ 7.8499618, 47.5284546 ], + [ 7.849905, 47.5284484 ], + [ 7.8498483, 47.5284416 ], + [ 7.8497918, 47.5284342 ], + [ 7.8497354, 47.5284263 ], + [ 7.8496793, 47.5284178 ], + [ 7.8496233, 47.5284088 ], + [ 7.8495675, 47.5283993 ], + [ 7.8495118999999995, 47.5283892 ], + [ 7.8490714, 47.5283058 ], + [ 7.8489424, 47.5283158 ], + [ 7.8486251, 47.5282188 ], + [ 7.8484055, 47.5281615 ], + [ 7.8482392, 47.5281299 ], + [ 7.8478465, 47.5280102 ], + [ 7.8475882, 47.5279529 ], + [ 7.8468373, 47.5278454 ], + [ 7.8467734, 47.5279378 ], + [ 7.8472385, 47.528021 ], + [ 7.8474817, 47.528101 ], + [ 7.8475215, 47.5281145 ], + [ 7.8475608, 47.5281284 ], + [ 7.8475997, 47.5281429 ], + [ 7.8476382000000005, 47.5281579 ], + [ 7.8476763, 47.5281734 ], + [ 7.8477139, 47.5281894 ], + [ 7.847751, 47.5282059 ], + [ 7.8477877, 47.5282229 ], + [ 7.8478238000000005, 47.5282403 ], + [ 7.8486253, 47.5286363 ], + [ 7.8486538, 47.5286501 ], + [ 7.8486827, 47.5286635 ], + [ 7.848712, 47.5286766 ], + [ 7.8487416, 47.5286894 ], + [ 7.8487716, 47.5287017 ], + [ 7.8488019, 47.5287137 ], + [ 7.8490851, 47.5288243 ], + [ 7.8491159, 47.5288366 ], + [ 7.8491462, 47.5288495 ], + [ 7.849176, 47.5288628 ], + [ 7.8492052999999995, 47.5288767 ], + [ 7.849234, 47.5288912 ], + [ 7.8492622, 47.5289061 ], + [ 7.8492898, 47.5289215 ], + [ 7.8493169, 47.5289373 ], + [ 7.8493432, 47.5289537 ], + [ 7.849369, 47.5289705 ], + [ 7.8493941, 47.5289877 ], + [ 7.8494186, 47.5290054 ], + [ 7.8494423, 47.5290235 ], + [ 7.8494654, 47.529042 ], + [ 7.8494919, 47.5290644 ], + [ 7.8495177, 47.5290872 ], + [ 7.8495429, 47.5291102 ], + [ 7.8495674, 47.5291337 ], + [ 7.8495912, 47.5291574 ], + [ 7.8496143, 47.5291815 ], + [ 7.8496367, 47.5292058 ], + [ 7.8496584, 47.5292305 ], + [ 7.8496794, 47.5292554 ], + [ 7.8496996, 47.5292806 ], + [ 7.8497226, 47.5293093 ], + [ 7.8497463, 47.5293377 ], + [ 7.8497708, 47.5293658 ], + [ 7.8497961, 47.5293936 ], + [ 7.8498222, 47.5294211 ], + [ 7.849849, 47.5294483 ], + [ 7.8498765, 47.5294751 ], + [ 7.8499047, 47.5295015 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns251", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Sonnenberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Sonnenberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Sonnenberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Sonnenberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4772701, 47.4166329 ], + [ 7.4773146, 47.4165888 ], + [ 7.4777156, 47.416197 ], + [ 7.477784, 47.4161063 ], + [ 7.4781349, 47.4158703 ], + [ 7.4782398, 47.4157651 ], + [ 7.4785476, 47.4155899 ], + [ 7.4789372, 47.4154193 ], + [ 7.4790965, 47.4153264 ], + [ 7.4790577, 47.4152941 ], + [ 7.4790034, 47.415249 ], + [ 7.4787352, 47.4150258 ], + [ 7.4783118, 47.4146785 ], + [ 7.4777831, 47.414242 ], + [ 7.4774474, 47.4139648 ], + [ 7.4773203, 47.4138615 ], + [ 7.4772013, 47.4139167 ], + [ 7.4765704, 47.4141882 ], + [ 7.4761709, 47.4144096 ], + [ 7.4755506, 47.4146739 ], + [ 7.4751404, 47.4147669 ], + [ 7.4747561, 47.4148305 ], + [ 7.4747513, 47.4148312 ], + [ 7.4746883, 47.4149098 ], + [ 7.474762, 47.4150526 ], + [ 7.4748357, 47.415231 ], + [ 7.4748044, 47.4155023 ], + [ 7.4748043, 47.4155029 ], + [ 7.474794, 47.4156879 ], + [ 7.4746994, 47.415895 ], + [ 7.4744156, 47.4161235 ], + [ 7.4741002, 47.4163521 ], + [ 7.4737533, 47.4166235 ], + [ 7.4735641, 47.4168163 ], + [ 7.473396, 47.4170249 ], + [ 7.4731326, 47.4170604 ], + [ 7.4729903, 47.4171528 ], + [ 7.4728351, 47.4172188 ], + [ 7.4727964, 47.4173506 ], + [ 7.4727771, 47.4175924 ], + [ 7.4726996, 47.4177243 ], + [ 7.4726997, 47.4178781 ], + [ 7.4726415, 47.4179397 ], + [ 7.4726674, 47.41801 ], + [ 7.4725996, 47.4181527 ], + [ 7.4727242, 47.4182292 ], + [ 7.4731893, 47.4182319 ], + [ 7.4733436, 47.4181938 ], + [ 7.4734137, 47.41817 ], + [ 7.4735118, 47.41807 ], + [ 7.4737501, 47.4178653 ], + [ 7.4739673, 47.4176701 ], + [ 7.4741004, 47.417513 ], + [ 7.4741845, 47.417413 ], + [ 7.4742927, 47.4173876 ], + [ 7.474602, 47.4175098 ], + [ 7.4753391, 47.417823 ], + [ 7.4758906, 47.4180693 ], + [ 7.4760683, 47.4181486 ], + [ 7.4761291, 47.4181757 ], + [ 7.4761585, 47.4181889 ], + [ 7.4762271, 47.4181158 ], + [ 7.4763172, 47.4180421 ], + [ 7.4763336, 47.4179842 ], + [ 7.4764028, 47.4179309 ], + [ 7.4765109, 47.4178756 ], + [ 7.4766156, 47.4177996 ], + [ 7.4766774, 47.4177325 ], + [ 7.4767713, 47.4176156 ], + [ 7.4769001, 47.4174493 ], + [ 7.4769156, 47.4173334 ], + [ 7.4769129, 47.4173153 ], + [ 7.4769516, 47.4170829 ], + [ 7.4770206, 47.4169031 ], + [ 7.4770798, 47.4168213 ], + [ 7.4771092, 47.4167922 ], + [ 7.4770586, 47.4167723 ], + [ 7.4769027999999995, 47.4167109 ], + [ 7.4763538, 47.4164948 ], + [ 7.4761222, 47.4163757 ], + [ 7.4757605, 47.4162125 ], + [ 7.4754834, 47.4160916 ], + [ 7.4749422, 47.4158553 ], + [ 7.4749776, 47.4157069 ], + [ 7.4749812, 47.4156919 ], + [ 7.4750049, 47.4156482 ], + [ 7.4755899, 47.4159034 ], + [ 7.4759139, 47.4160447 ], + [ 7.4762977, 47.4162168 ], + [ 7.476567, 47.4163447 ], + [ 7.4770769999999995, 47.4165537 ], + [ 7.4772332, 47.4166178 ], + [ 7.4772701, 47.4166329 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns104", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Bärelöcher", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Bärelöcher", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Bärelöcher", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Bärelöcher", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8802672, 47.418066 ], + [ 7.8803002, 47.4180808 ], + [ 7.8803162, 47.4180795 ], + [ 7.8803412, 47.418077 ], + [ 7.8803648, 47.4180606 ], + [ 7.8803554, 47.4179167 ], + [ 7.8803538, 47.4177845 ], + [ 7.8803797, 47.4176663 ], + [ 7.880424, 47.4175121 ], + [ 7.8803786, 47.4174635 ], + [ 7.8803778, 47.4173761 ], + [ 7.8804646, 47.4172101 ], + [ 7.8805011, 47.4170715 ], + [ 7.8805761, 47.416888900000004 ], + [ 7.880532, 47.4168362 ], + [ 7.8805127, 47.4167569 ], + [ 7.880551, 47.4166298 ], + [ 7.8806177, 47.4164812 ], + [ 7.8806867, 47.4163531 ], + [ 7.8807100000000005, 47.4162929 ], + [ 7.8807095, 47.4162057 ], + [ 7.880694, 47.4160737 ], + [ 7.8806432, 47.4161141 ], + [ 7.8803335, 47.4167698 ], + [ 7.8803245, 47.4169381 ], + [ 7.8803000999999995, 47.4171539 ], + [ 7.880275, 47.4172663 ], + [ 7.8802159, 47.4174209 ], + [ 7.880275, 47.4174971 ], + [ 7.8802702, 47.4176814 ], + [ 7.8802713, 47.4178476 ], + [ 7.8802631, 47.4180118 ], + [ 7.8802672, 47.418066 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns187", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Mapprach - Hofmatt", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Mapprach - Hofmatt", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Mapprach - Hofmatt", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Mapprach - Hofmatt", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5692008, 47.0019003 ], + [ 7.569195, 47.0017591 ], + [ 7.5691785, 47.0016182 ], + [ 7.5691512, 47.0014782 ], + [ 7.5691132, 47.0013393 ], + [ 7.5690647, 47.001202 ], + [ 7.5690057, 47.0010666 ], + [ 7.5689364, 47.0009335 ], + [ 7.5688571, 47.0008031 ], + [ 7.5687679, 47.0006756 ], + [ 7.568669, 47.0005516 ], + [ 7.5685608, 47.0004313 ], + [ 7.5684436, 47.000315 ], + [ 7.5683176, 47.000203 ], + [ 7.5681832, 47.0000957 ], + [ 7.5680408, 46.9999934 ], + [ 7.5678908, 46.9998963 ], + [ 7.5677336, 46.9998048 ], + [ 7.5675695, 46.9997189 ], + [ 7.5673991, 46.9996391 ], + [ 7.5672229, 46.9995655 ], + [ 7.5670413, 46.9994983 ], + [ 7.5668547, 46.9994377 ], + [ 7.5666638, 46.9993838 ], + [ 7.566469, 46.9993369 ], + [ 7.5662709, 46.999297 ], + [ 7.5660701, 46.9992642 ], + [ 7.565867, 46.9992387 ], + [ 7.5656622, 46.9992205 ], + [ 7.5654563, 46.9992096 ], + [ 7.5652498, 46.9992062 ], + [ 7.5650434, 46.9992101 ], + [ 7.5648376, 46.9992214 ], + [ 7.5646329, 46.9992401 ], + [ 7.5644299, 46.999266 ], + [ 7.5642292, 46.9992992 ], + [ 7.5640313, 46.9993396 ], + [ 7.5638366999999995, 46.9993869 ], + [ 7.5636461, 46.9994412 ], + [ 7.5634598, 46.9995022 ], + [ 7.5632785, 46.9995699 ], + [ 7.5631026, 46.9996439 ], + [ 7.5629326, 46.9997241 ], + [ 7.5627689, 46.9998103 ], + [ 7.5626121, 46.9999022 ], + [ 7.5624626, 46.9999996 ], + [ 7.5623206, 47.0001022 ], + [ 7.5621868, 47.0002098 ], + [ 7.5620613, 47.000322 ], + [ 7.5619446, 47.0004386 ], + [ 7.561837, 47.0005592 ], + [ 7.5617387, 47.0006834 ], + [ 7.5616501, 47.000811 ], + [ 7.5615714, 47.0009417 ], + [ 7.5615027999999995, 47.0010749 ], + [ 7.5614444, 47.0012104 ], + [ 7.5613965, 47.0013479 ], + [ 7.5613592, 47.0014868 ], + [ 7.5613326, 47.0016269 ], + [ 7.5613167, 47.0017678 ], + [ 7.5613116, 47.001909 ], + [ 7.5613173, 47.0020502 ], + [ 7.5613339, 47.0021911 ], + [ 7.5613611, 47.0023311 ], + [ 7.5613991, 47.00247 ], + [ 7.5614476, 47.0026073 ], + [ 7.5615065999999995, 47.0027427 ], + [ 7.5615758, 47.0028758 ], + [ 7.5616552, 47.0030063 ], + [ 7.5617444, 47.0031337 ], + [ 7.5618432, 47.0032577 ], + [ 7.5619514, 47.0033781 ], + [ 7.5620686, 47.0034944 ], + [ 7.5621946, 47.0036063 ], + [ 7.562329, 47.0037136 ], + [ 7.5624714, 47.003816 ], + [ 7.5626214, 47.003913 ], + [ 7.5627786, 47.0040046 ], + [ 7.5629427, 47.0040905 ], + [ 7.5631131, 47.0041703 ], + [ 7.5632893, 47.0042439 ], + [ 7.563471, 47.0043111 ], + [ 7.5636575, 47.0043717 ], + [ 7.5638485, 47.0044256 ], + [ 7.5640433, 47.0044726 ], + [ 7.5642414, 47.0045125 ], + [ 7.5644423, 47.0045452 ], + [ 7.5646454, 47.0045707 ], + [ 7.5648502, 47.004589 ], + [ 7.5650561, 47.0045998 ], + [ 7.5652626, 47.0046033 ], + [ 7.565469, 47.0045994 ], + [ 7.5656749, 47.004588 ], + [ 7.5658796, 47.0045694 ], + [ 7.5660826, 47.0045434 ], + [ 7.5662833, 47.0045102 ], + [ 7.5664812999999995, 47.0044699 ], + [ 7.5666758, 47.0044225 ], + [ 7.5668665, 47.0043682 ], + [ 7.5670528, 47.0043072 ], + [ 7.5672341, 47.0042396 ], + [ 7.56741, 47.0041655 ], + [ 7.56758, 47.0040853 ], + [ 7.5677437, 47.0039991 ], + [ 7.5679005, 47.0039072 ], + [ 7.56805, 47.0038098 ], + [ 7.568192, 47.0037071 ], + [ 7.5683258, 47.0035996 ], + [ 7.5684512999999995, 47.0034873 ], + [ 7.568568, 47.0033707 ], + [ 7.5686756, 47.0032502 ], + [ 7.5687738, 47.0031259 ], + [ 7.5688624, 47.0029983 ], + [ 7.5689411, 47.0028677 ], + [ 7.5690098, 47.0027344 ], + [ 7.5690681, 47.0025989 ], + [ 7.569116, 47.0024614 ], + [ 7.5691532, 47.0023225 ], + [ 7.5691799, 47.0021824 ], + [ 7.5691957, 47.0020415 ], + [ 7.5692008, 47.0019003 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "THO0001", + "country" : "CHE", + "name" : [ + { + "text" : "Justizvollzugsanstalt Thorberg", + "lang" : "de-CH" + }, + { + "text" : "Justizvollzugsanstalt Thorberg", + "lang" : "fr-CH" + }, + { + "text" : "Justizvollzugsanstalt Thorberg", + "lang" : "it-CH" + }, + { + "text" : "Justizvollzugsanstalt Thorberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Justizvollzugsanstalt Thorberg", + "lang" : "de-CH" + }, + { + "text" : "Établissement pénitentiaire de Thorberg", + "lang" : "fr-CH" + }, + { + "text" : "Prigione di Thorberg", + "lang" : "it-CH" + }, + { + "text" : "Thorberg Prison", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Leitung SIKO", + "lang" : "de-CH" + }, + { + "text" : "Chef du SIKO", + "lang" : "fr-CH" + }, + { + "text" : "Capo SIKO", + "lang" : "it-CH" + }, + { + "text" : "SIKO Head", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Simon Peier", + "lang" : "de-CH" + }, + { + "text" : "Simon Peier", + "lang" : "fr-CH" + }, + { + "text" : "Simon Peier", + "lang" : "it-CH" + }, + { + "text" : "Simon Peier", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ajv.sid.be.ch/de/start/themen/erwachsenen--und-jugendvollzug/justizvollzugsanstalt-thorberg.html", + "email" : "jva.thorberg@be.ch", + "phone" : "0041316356411", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4834071, 47.3891948 ], + [ 7.4832669, 47.3891734 ], + [ 7.4831695, 47.3891638 ], + [ 7.482294, 47.3893725 ], + [ 7.4820698, 47.3894059 ], + [ 7.4819297, 47.3895107 ], + [ 7.4816256, 47.3898043 ], + [ 7.4815044, 47.3899205 ], + [ 7.4814137, 47.3900267 ], + [ 7.481292, 47.3901786 ], + [ 7.4812318, 47.3902818 ], + [ 7.4812175, 47.3903688 ], + [ 7.4812359, 47.3904505 ], + [ 7.4820012, 47.3902559 ], + [ 7.4822246, 47.3902007 ], + [ 7.4825333, 47.3901116 ], + [ 7.4826871, 47.3900673 ], + [ 7.4830935, 47.390029 ], + [ 7.483444, 47.3901146 ], + [ 7.4843974, 47.3903284 ], + [ 7.4849511, 47.3903567 ], + [ 7.4853926, 47.390328 ], + [ 7.4860373, 47.390204 ], + [ 7.4865113, 47.3900074 ], + [ 7.486628, 47.3899519 ], + [ 7.4867163, 47.3898561 ], + [ 7.4869247, 47.3895805 ], + [ 7.4871052, 47.3894138 ], + [ 7.4873309, 47.3892563 ], + [ 7.4875517, 47.3891632 ], + [ 7.4879244, 47.3891029 ], + [ 7.4883063, 47.3890537 ], + [ 7.4886598, 47.3889921 ], + [ 7.4887776, 47.3889775 ], + [ 7.4888778, 47.3889614 ], + [ 7.4889106, 47.3889531 ], + [ 7.4889424, 47.388943 ], + [ 7.4889729, 47.3889312 ], + [ 7.4890013, 47.3889181 ], + [ 7.489028, 47.3889035 ], + [ 7.4890529, 47.3888874 ], + [ 7.4890683, 47.3888742 ], + [ 7.489082, 47.3888602 ], + [ 7.4890937, 47.3888454 ], + [ 7.4891035, 47.3888299 ], + [ 7.4891112, 47.3888139 ], + [ 7.4891168, 47.3887975 ], + [ 7.4891203, 47.3887808 ], + [ 7.4891202, 47.3887583 ], + [ 7.4891173, 47.3887358 ], + [ 7.4891118, 47.3887136 ], + [ 7.4891024999999996, 47.3886895 ], + [ 7.4890901, 47.388666 ], + [ 7.4890745, 47.3886434 ], + [ 7.489056, 47.3886219 ], + [ 7.4889707, 47.3885537 ], + [ 7.4889348, 47.388525 ], + [ 7.4888533, 47.3884628 ], + [ 7.4888426, 47.3884475 ], + [ 7.4888335, 47.3884318 ], + [ 7.4888261, 47.3884157 ], + [ 7.4888144, 47.3883657 ], + [ 7.4888395, 47.3883206 ], + [ 7.4889108, 47.3882562 ], + [ 7.488985, 47.3882072 ], + [ 7.4890754, 47.3881627 ], + [ 7.4893512, 47.388044 ], + [ 7.4894899, 47.3879822 ], + [ 7.4895911, 47.387925 ], + [ 7.4896095, 47.3879152 ], + [ 7.4896265, 47.3879043 ], + [ 7.4896421, 47.3878925 ], + [ 7.4896561, 47.3878798 ], + [ 7.4896685, 47.3878663 ], + [ 7.4896779, 47.3878538 ], + [ 7.4896859, 47.3878408 ], + [ 7.4896924, 47.3878275 ], + [ 7.4897021, 47.3878122 ], + [ 7.4897096, 47.3877964 ], + [ 7.4897149, 47.3877801 ], + [ 7.4897177, 47.3877636 ], + [ 7.489718, 47.3877501 ], + [ 7.4897167, 47.3877367 ], + [ 7.4897138, 47.3877233 ], + [ 7.4896179, 47.3877697 ], + [ 7.4894796, 47.3878125 ], + [ 7.4893683, 47.3878202 ], + [ 7.4887593, 47.3879285 ], + [ 7.4879, 47.3881904 ], + [ 7.4874844, 47.3882583 ], + [ 7.487458, 47.3882623 ], + [ 7.4873534, 47.3882666 ], + [ 7.4869698, 47.3882821 ], + [ 7.4861631, 47.3883553 ], + [ 7.4858067, 47.3885241 ], + [ 7.4853817, 47.3887475 ], + [ 7.4848408, 47.3888747 ], + [ 7.4847464, 47.3888833 ], + [ 7.4847446, 47.388896 ], + [ 7.4846594, 47.3889049 ], + [ 7.4845958, 47.3889265 ], + [ 7.4844922, 47.3889935 ], + [ 7.4843775, 47.3890589 ], + [ 7.4841562, 47.3890989 ], + [ 7.4839573, 47.3891431 ], + [ 7.4836495, 47.3891783 ], + [ 7.4834534999999995, 47.3891964 ], + [ 7.4834071, 47.3891948 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns335", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Mittler Stürmen", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Mittler Stürmen", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Mittler Stürmen", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Mittler Stürmen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.9805673, 46.047029 ], + [ 8.980558, 46.0468879 ], + [ 8.9805381, 46.0467473 ], + [ 8.9805077, 46.0466076 ], + [ 8.9804668, 46.0464692 ], + [ 8.9804156, 46.0463325 ], + [ 8.9803541, 46.0461978 ], + [ 8.9802826, 46.0460656 ], + [ 8.9802013, 46.0459362 ], + [ 8.9801104, 46.0458099 ], + [ 8.9800101, 46.0456871 ], + [ 8.9799007, 46.0455681 ], + [ 8.9797825, 46.0454532 ], + [ 8.9796558, 46.0453428 ], + [ 8.9795211, 46.0452372 ], + [ 8.9793785, 46.0451367 ], + [ 8.9792286, 46.0450414 ], + [ 8.9790718, 46.0449518 ], + [ 8.9789084, 46.044868 ], + [ 8.978739, 46.0447903 ], + [ 8.9785639, 46.0447189 ], + [ 8.9783838, 46.0446539 ], + [ 8.978199, 46.0445956 ], + [ 8.97801, 46.0445441 ], + [ 8.9778175, 46.0444995 ], + [ 8.9776218, 46.0444621 ], + [ 8.9774237, 46.0444318 ], + [ 8.9772235, 46.0444088 ], + [ 8.9770219, 46.0443931 ], + [ 8.9768193, 46.0443848 ], + [ 8.9766164, 46.0443838 ], + [ 8.9764137, 46.0443903 ], + [ 8.9762118, 46.0444041 ], + [ 8.9760112, 46.0444253 ], + [ 8.9758125, 46.0444538 ], + [ 8.9756162, 46.0444895 ], + [ 8.9754228, 46.0445322 ], + [ 8.9752329, 46.044582 ], + [ 8.9750471, 46.0446386 ], + [ 8.9748657, 46.0447019 ], + [ 8.9746893, 46.0447717 ], + [ 8.974518400000001, 46.0448479 ], + [ 8.9743535, 46.0449302 ], + [ 8.974195, 46.0450184 ], + [ 8.9740433, 46.0451122 ], + [ 8.9738989, 46.0452115 ], + [ 8.9737622, 46.0453158 ], + [ 8.9736335, 46.045425 ], + [ 8.9735131, 46.0455388 ], + [ 8.9734015, 46.0456567 ], + [ 8.9732989, 46.0457786 ], + [ 8.9732056, 46.0459041 ], + [ 8.9731218, 46.0460328 ], + [ 8.9730479, 46.0461643 ], + [ 8.9729839, 46.0462984 ], + [ 8.9729301, 46.0464346 ], + [ 8.9728866, 46.0465726 ], + [ 8.9728536, 46.046712 ], + [ 8.972831, 46.0468524 ], + [ 8.9728191, 46.0469935 ], + [ 8.9728177, 46.0471348 ], + [ 8.972827, 46.0472759 ], + [ 8.9728469, 46.0474165 ], + [ 8.9728773, 46.0475562 ], + [ 8.9729182, 46.0476946 ], + [ 8.9729694, 46.0478313 ], + [ 8.9730309, 46.0479659 ], + [ 8.9731023, 46.0480982 ], + [ 8.9731836, 46.0482276 ], + [ 8.9732745, 46.0483539 ], + [ 8.9733748, 46.0484767 ], + [ 8.9734842, 46.0485957 ], + [ 8.9736024, 46.0487106 ], + [ 8.9737291, 46.048821 ], + [ 8.9738638, 46.0489266 ], + [ 8.9740064, 46.0490272 ], + [ 8.9741563, 46.0491224 ], + [ 8.9743131, 46.049212 ], + [ 8.9744765, 46.0492958 ], + [ 8.9746459, 46.0493736 ], + [ 8.974821, 46.049445 ], + [ 8.9750012, 46.04951 ], + [ 8.975186, 46.0495683 ], + [ 8.9753749, 46.0496198 ], + [ 8.9755675, 46.0496643 ], + [ 8.9757631, 46.0497018 ], + [ 8.9759613, 46.0497321 ], + [ 8.9761615, 46.0497551 ], + [ 8.9763632, 46.0497708 ], + [ 8.9765658, 46.0497791 ], + [ 8.9767687, 46.0497801 ], + [ 8.9769714, 46.0497736 ], + [ 8.9771733, 46.0497597 ], + [ 8.9773739, 46.0497386 ], + [ 8.9775727, 46.0497101 ], + [ 8.977769, 46.0496744 ], + [ 8.9779624, 46.0496317 ], + [ 8.9781523, 46.0495819 ], + [ 8.9783382, 46.0495253 ], + [ 8.9785196, 46.049462 ], + [ 8.9786959, 46.0493921 ], + [ 8.9788668, 46.0493159 ], + [ 8.9790318, 46.0492337 ], + [ 8.979190299999999, 46.0491455 ], + [ 8.979341999999999, 46.0490516 ], + [ 8.9794864, 46.0489524 ], + [ 8.9796231, 46.048848 ], + [ 8.9797518, 46.0487388 ], + [ 8.979872199999999, 46.048625 ], + [ 8.9799838, 46.048507 ], + [ 8.9800864, 46.0483852 ], + [ 8.9801796, 46.0482597 ], + [ 8.9802634, 46.048131 ], + [ 8.9803373, 46.0479994 ], + [ 8.9804013, 46.0478654 ], + [ 8.9804551, 46.0477291 ], + [ 8.9804985, 46.0475911 ], + [ 8.980531599999999, 46.0474517 ], + [ 8.980554099999999, 46.0473113 ], + [ 8.980566, 46.0471703 ], + [ 8.9805673, 46.047029 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "STA0001", + "country" : "CHE", + "name" : [ + { + "text" : "Carcere Penale La Stampa e Carcere Giudiziario La Farera", + "lang" : "de-CH" + }, + { + "text" : "Carcere Penale La Stampa e Carcere Giudiziario La Farera", + "lang" : "fr-CH" + }, + { + "text" : "Carcere Penale La Stampa e Carcere Giudiziario La Farera", + "lang" : "it-CH" + }, + { + "text" : "Carcere Penale La Stampa e Carcere Giudiziario La Farera", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Strutture Carcerarie Cantonali, Casella Postale, 6901 Lugano", + "lang" : "de-CH" + }, + { + "text" : "Strutture Carcerarie Cantonali, Casella Postale, 6901 Lugano", + "lang" : "fr-CH" + }, + { + "text" : "Strutture Carcerarie Cantonali, Casella Postale, 6901 Lugano", + "lang" : "it-CH" + }, + { + "text" : "Strutture Carcerarie Cantonali, Casella Postale, 6901 Lugano", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Direzione delle Strutture Carcerarie / Staff di direzione", + "lang" : "de-CH" + }, + { + "text" : "Direzione delle Strutture Carcerarie / Staff di direzione", + "lang" : "fr-CH" + }, + { + "text" : "Direzione delle Strutture Carcerarie / Staff di direzione", + "lang" : "it-CH" + }, + { + "text" : "Direzione delle Strutture Carcerarie / Staff di direzione", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.ti.ch/carcere", + "email" : "di-penitenziario.cantonale@ti.ch", + "phone" : "0041918150011", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 10.1475, 46.2333478 ], + [ 10.1467355, 46.2319182 ], + [ 10.1459512, 46.2304825 ], + [ 10.1440152, 46.2297546 ], + [ 10.1439031, 46.2297512 ], + [ 10.1436995, 46.2297524 ], + [ 10.1434963, 46.2297609 ], + [ 10.143294, 46.2297769 ], + [ 10.1430932, 46.2298001 ], + [ 10.1428944, 46.2298307 ], + [ 10.1426982, 46.2298684 ], + [ 10.1425051, 46.2299131 ], + [ 10.1423157, 46.2299649 ], + [ 10.1421304, 46.2300234 ], + [ 10.1419498, 46.2300886 ], + [ 10.1417743, 46.2301602 ], + [ 10.1416045, 46.2302382 ], + [ 10.1414408, 46.2303221 ], + [ 10.1412836, 46.230412 ], + [ 10.1411335, 46.2305074 ], + [ 10.1409907, 46.2306081 ], + [ 10.1408557, 46.2307139 ], + [ 10.1407289, 46.2308244 ], + [ 10.1406106, 46.2309394 ], + [ 10.1405011, 46.2310585 ], + [ 10.1404008, 46.2311815 ], + [ 10.1403099, 46.2313079 ], + [ 10.1402286, 46.2314374 ], + [ 10.1401572, 46.2315697 ], + [ 10.1400959, 46.2317045 ], + [ 10.1400448, 46.2318412 ], + [ 10.1400042, 46.2319797 ], + [ 10.139974, 46.2321194 ], + [ 10.1399544, 46.23226 ], + [ 10.1399454, 46.2324012 ], + [ 10.1399471, 46.2325425 ], + [ 10.1399594, 46.2326835 ], + [ 10.1399824, 46.2328239 ], + [ 10.1400159, 46.2329632 ], + [ 10.1400599, 46.2331012 ], + [ 10.1401142, 46.2332374 ], + [ 10.1401787, 46.2333714 ], + [ 10.1402532, 46.2335028 ], + [ 10.1403376, 46.2336314 ], + [ 10.1404315, 46.2337568 ], + [ 10.1405347, 46.2338786 ], + [ 10.140647, 46.2339964 ], + [ 10.1407681, 46.23411 ], + [ 10.1408975, 46.2342191 ], + [ 10.141035, 46.2343233 ], + [ 10.1411801, 46.2344224 ], + [ 10.1413326, 46.234516 ], + [ 10.1414918, 46.234604 ], + [ 10.1416575, 46.2346861 ], + [ 10.1418292, 46.2347621 ], + [ 10.1420064, 46.2348317 ], + [ 10.1421886, 46.2348948 ], + [ 10.1423752, 46.2349512 ], + [ 10.1425659, 46.2350008 ], + [ 10.1427601, 46.2350433 ], + [ 10.1429572, 46.2350787 ], + [ 10.1431567, 46.235107 ], + [ 10.143358, 46.2351279 ], + [ 10.1435607, 46.2351415 ], + [ 10.1437641, 46.2351477 ], + [ 10.1439677, 46.2351466 ], + [ 10.1441709, 46.235138 ], + [ 10.1443732, 46.2351221 ], + [ 10.144574, 46.2350988 ], + [ 10.1447728, 46.2350683 ], + [ 10.1449691, 46.2350306 ], + [ 10.1451622, 46.2349858 ], + [ 10.1453516, 46.2349341 ], + [ 10.1455369, 46.2348755 ], + [ 10.1457176, 46.2348103 ], + [ 10.145893, 46.2347387 ], + [ 10.1460629, 46.2346607 ], + [ 10.1462266, 46.2345767 ], + [ 10.1463837, 46.2344869 ], + [ 10.1465339, 46.2343915 ], + [ 10.1466767, 46.2342908 ], + [ 10.1468116, 46.234185 ], + [ 10.1469384, 46.2340744 ], + [ 10.1470567, 46.2339595 ], + [ 10.1471662, 46.2338403 ], + [ 10.1472665, 46.2337174 ], + [ 10.1473574, 46.233591 ], + [ 10.1474387, 46.2334614 ], + [ 10.1475, 46.2333478 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0021", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Campocologno", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Campocologno", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Campocologno", + "lang" : "it-CH" + }, + { + "text" : "Substation Campocologno", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.5432612, 46.9774663 ], + [ 9.5432502, 46.9773252 ], + [ 9.5432285, 46.9771847 ], + [ 9.5431961, 46.9770452 ], + [ 9.5431531, 46.976907 ], + [ 9.5430995, 46.9767706 ], + [ 9.5430356, 46.9766362 ], + [ 9.5429615, 46.9765044 ], + [ 9.5428774, 46.9763753 ], + [ 9.5427836, 46.9762495 ], + [ 9.5426803, 46.9761272 ], + [ 9.5425677, 46.9760088 ], + [ 9.5424463, 46.9758945 ], + [ 9.5423163, 46.9757848 ], + [ 9.5421781, 46.9756798 ], + [ 9.542032, 46.97558 ], + [ 9.5418786, 46.9754855 ], + [ 9.5417181, 46.9753967 ], + [ 9.541551, 46.9753137 ], + [ 9.5413778, 46.9752369 ], + [ 9.541199, 46.9751663 ], + [ 9.541015, 46.9751022 ], + [ 9.5408264, 46.9750448 ], + [ 9.5406337, 46.9749943 ], + [ 9.5404373, 46.9749507 ], + [ 9.5402379, 46.9749142 ], + [ 9.540036, 46.974885 ], + [ 9.5398321, 46.9748629 ], + [ 9.5396268, 46.9748483 ], + [ 9.5394207, 46.9748409 ], + [ 9.5392143, 46.974841 ], + [ 9.5390081, 46.9748485 ], + [ 9.5388029, 46.9748634 ], + [ 9.538599, 46.9748855 ], + [ 9.5383971, 46.974915 ], + [ 9.5381978, 46.9749516 ], + [ 9.5380015, 46.9749954 ], + [ 9.5378089, 46.9750461 ], + [ 9.5376204, 46.9751036 ], + [ 9.5374365, 46.9751678 ], + [ 9.5372578, 46.9752385 ], + [ 9.5370847, 46.9753156 ], + [ 9.5369178, 46.9753987 ], + [ 9.5367575, 46.9754876 ], + [ 9.5366042, 46.9755822 ], + [ 9.5364583, 46.9756822 ], + [ 9.5363203, 46.9757872 ], + [ 9.5361905, 46.9758971 ], + [ 9.5360692, 46.9760114 ], + [ 9.5359569, 46.9761299 ], + [ 9.5358538, 46.9762523 ], + [ 9.5357602, 46.9763783 ], + [ 9.5356763, 46.9765074 ], + [ 9.5356025, 46.9766393 ], + [ 9.5355388, 46.9767737 ], + [ 9.5354855, 46.9769101 ], + [ 9.5354427, 46.9770484 ], + [ 9.5354105, 46.9771879 ], + [ 9.535389, 46.9773284 ], + [ 9.5353783, 46.9774695 ], + [ 9.535378399999999, 46.9776108 ], + [ 9.5353894, 46.9777519 ], + [ 9.535411, 46.9778924 ], + [ 9.5354434, 46.9780319 ], + [ 9.5354865, 46.9781701 ], + [ 9.53554, 46.9783065 ], + [ 9.5356039, 46.9784409 ], + [ 9.535678, 46.9785727 ], + [ 9.5357621, 46.9787018 ], + [ 9.5358559, 46.9788276 ], + [ 9.5359592, 46.9789499 ], + [ 9.5360717, 46.9790684 ], + [ 9.5361931, 46.9791826 ], + [ 9.5363231, 46.9792924 ], + [ 9.5364614, 46.9793973 ], + [ 9.5366074, 46.9794971 ], + [ 9.5367609, 46.9795916 ], + [ 9.5369214, 46.9796805 ], + [ 9.5370884, 46.9797634 ], + [ 9.5372616, 46.9798403 ], + [ 9.5374405, 46.9799109 ], + [ 9.5376245, 46.9799749 ], + [ 9.5378131, 46.9800323 ], + [ 9.5380059, 46.9800829 ], + [ 9.5382022, 46.9801265 ], + [ 9.5384016, 46.980163 ], + [ 9.5386036, 46.9801922 ], + [ 9.5388075, 46.9802143 ], + [ 9.5390128, 46.980229 ], + [ 9.539219, 46.9802363 ], + [ 9.5394254, 46.9802362 ], + [ 9.5396315, 46.9802287 ], + [ 9.5398368, 46.9802138 ], + [ 9.5400407, 46.9801917 ], + [ 9.5402426, 46.9801622 ], + [ 9.5404419, 46.9801256 ], + [ 9.5406382, 46.9800818 ], + [ 9.5408309, 46.9800311 ], + [ 9.5410194, 46.9799736 ], + [ 9.5412033, 46.9799093 ], + [ 9.541382, 46.9798386 ], + [ 9.5415551, 46.9797616 ], + [ 9.541722, 46.9796785 ], + [ 9.5418823, 46.9795895 ], + [ 9.5420357, 46.9794949 ], + [ 9.5421815, 46.9793949 ], + [ 9.5423196, 46.9792899 ], + [ 9.5424494, 46.97918 ], + [ 9.5425706, 46.9790657 ], + [ 9.542682899999999, 46.9789472 ], + [ 9.542786, 46.9788248 ], + [ 9.5428796, 46.9786988 ], + [ 9.5429634, 46.9785697 ], + [ 9.5430373, 46.9784378 ], + [ 9.543101, 46.9783034 ], + [ 9.5431543, 46.9781669 ], + [ 9.543197, 46.9780287 ], + [ 9.5432292, 46.9778892 ], + [ 9.5432506, 46.9777487 ], + [ 9.5432613, 46.9776076 ], + [ 9.5432612, 46.9774663 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0105", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Sarelli", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Sarelli", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Sarelli", + "lang" : "it-CH" + }, + { + "text" : "Substation Sarelli", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.9783336, 47.220016 ], + [ 8.9783241, 47.2198749 ], + [ 8.9783037, 47.2197343 ], + [ 8.9782727, 47.2195946 ], + [ 8.9782309, 47.2194563 ], + [ 8.9781785, 47.2193196 ], + [ 8.9781157, 47.2191849 ], + [ 8.9780427, 47.2190527 ], + [ 8.9779596, 47.2189233 ], + [ 8.9778667, 47.218797 ], + [ 8.9777642, 47.2186742 ], + [ 8.9776524, 47.2185552 ], + [ 8.9775316, 47.2184404 ], + [ 8.9774022, 47.21833 ], + [ 8.9772645, 47.2182244 ], + [ 8.9771188, 47.2181238 ], + [ 8.9769656, 47.2180286 ], + [ 8.9768054, 47.217939 ], + [ 8.9766384, 47.2178552 ], + [ 8.9764653, 47.2177775 ], + [ 8.9762864, 47.217706 ], + [ 8.9761023, 47.2176411 ], + [ 8.9759134, 47.2175828 ], + [ 8.9757203, 47.2175313 ], + [ 8.9755235, 47.2174867 ], + [ 8.9753236, 47.2174493 ], + [ 8.975121099999999, 47.217419 ], + [ 8.974916499999999, 47.217396 ], + [ 8.9747105, 47.2173803 ], + [ 8.9745035, 47.217372 ], + [ 8.9742961, 47.217371 ], + [ 8.974089, 47.2173775 ], + [ 8.9738826, 47.2173913 ], + [ 8.9736776, 47.2174125 ], + [ 8.9734745, 47.217441 ], + [ 8.9732739, 47.2174766 ], + [ 8.9730763, 47.2175194 ], + [ 8.9728822, 47.2175691 ], + [ 8.9726923, 47.2176257 ], + [ 8.972506899999999, 47.217689 ], + [ 8.9723266, 47.2177589 ], + [ 8.972152, 47.217835 ], + [ 8.9719834, 47.2179173 ], + [ 8.9718214, 47.2180055 ], + [ 8.9716664, 47.2180993 ], + [ 8.9715188, 47.2181985 ], + [ 8.9713791, 47.2183029 ], + [ 8.9712475, 47.2184121 ], + [ 8.9711245, 47.2185258 ], + [ 8.9710104, 47.2186438 ], + [ 8.9709056, 47.2187657 ], + [ 8.9708102, 47.2188911 ], + [ 8.9707246, 47.2190198 ], + [ 8.970649, 47.2191513 ], + [ 8.9705836, 47.2192854 ], + [ 8.9705286, 47.2194216 ], + [ 8.9704842, 47.2195596 ], + [ 8.9704504, 47.219699 ], + [ 8.9704273, 47.2198394 ], + [ 8.9704151, 47.2199804 ], + [ 8.9704137, 47.2201217 ], + [ 8.970423199999999, 47.2202628 ], + [ 8.9704435, 47.2204034 ], + [ 8.9704746, 47.220543 ], + [ 8.9705163, 47.2206814 ], + [ 8.9705687, 47.2208181 ], + [ 8.9706314, 47.2209528 ], + [ 8.9707045, 47.221085 ], + [ 8.9707875, 47.2212144 ], + [ 8.9708804, 47.2213407 ], + [ 8.9709829, 47.2214635 ], + [ 8.9710947, 47.2215825 ], + [ 8.9712155, 47.2216974 ], + [ 8.9713449, 47.2218077 ], + [ 8.9714826, 47.2219133 ], + [ 8.9716283, 47.2220139 ], + [ 8.9717815, 47.2221091 ], + [ 8.9719417, 47.2221988 ], + [ 8.9721087, 47.2222826 ], + [ 8.9722818, 47.2223603 ], + [ 8.9724607, 47.2224317 ], + [ 8.9726449, 47.2224967 ], + [ 8.9728337, 47.222555 ], + [ 8.9730268, 47.2226065 ], + [ 8.9732236, 47.2226511 ], + [ 8.9734236, 47.2226885 ], + [ 8.9736261, 47.2227188 ], + [ 8.9738307, 47.2227418 ], + [ 8.9740368, 47.2227575 ], + [ 8.9742438, 47.2227658 ], + [ 8.9744512, 47.2227668 ], + [ 8.9746583, 47.2227603 ], + [ 8.9748647, 47.2227465 ], + [ 8.9750697, 47.2227253 ], + [ 8.975272799999999, 47.2226968 ], + [ 8.9754735, 47.2226612 ], + [ 8.9756711, 47.2226184 ], + [ 8.9758652, 47.2225686 ], + [ 8.9760552, 47.222512 ], + [ 8.9762406, 47.2224487 ], + [ 8.9764208, 47.2223789 ], + [ 8.9765955, 47.2223027 ], + [ 8.976764, 47.2222205 ], + [ 8.976926, 47.2221323 ], + [ 8.9770811, 47.2220384 ], + [ 8.9772286, 47.2219392 ], + [ 8.9773684, 47.2218348 ], + [ 8.9775, 47.2217256 ], + [ 8.9776229, 47.2216119 ], + [ 8.977737, 47.2214939 ], + [ 8.9778419, 47.221372 ], + [ 8.9779372, 47.2212466 ], + [ 8.9780228, 47.2211179 ], + [ 8.9780984, 47.2209864 ], + [ 8.9781638, 47.2208523 ], + [ 8.9782187, 47.2207161 ], + [ 8.9782632, 47.2205781 ], + [ 8.978297, 47.2204387 ], + [ 8.97832, 47.2202983 ], + [ 8.9783322, 47.2201573 ], + [ 8.9783336, 47.220016 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0050", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Grynau", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Grynau", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Grynau", + "lang" : "it-CH" + }, + { + "text" : "Substation Grynau", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.3092819, 47.0103174 ], + [ 8.3408747, 46.9296069 ], + [ 8.2731088, 46.8835044 ], + [ 8.2417288, 46.8898908 ], + [ 8.2236741, 46.9232191 ], + [ 8.2520044, 46.9707077 ], + [ 8.3044324, 47.0069671 ], + [ 8.3092819, 47.0103174 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 120, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "CTR0001", + "country" : "CHE", + "name" : [ + { + "text" : "CTR ALPNACH (MIL)", + "lang" : "de-CH" + }, + { + "text" : "CTR ALPNACH (MIL)", + "lang" : "fr-CH" + }, + { + "text" : "CTR ALPNACH (MIL)", + "lang" : "it-CH" + }, + { + "text" : "CTR ALPNACH (MIL)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only permitted from an altitude of 120 m above ground with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Skyguide Special Flight Office", + "lang" : "de-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "it-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "en-GB" + } + ], + "siteURL" : "https://skyguide.ch/services/special-flights", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.8357437, 46.9496071 ], + [ 6.8357988, 46.9496013 ], + [ 6.8358008, 46.9496011 ], + [ 6.8358034, 46.9496008 ], + [ 6.8360529, 46.9495566 ], + [ 6.8362849, 46.9494799 ], + [ 6.8364906, 46.9493736 ], + [ 6.8366621, 46.9492419 ], + [ 6.8367927, 46.9490898 ], + [ 6.8368775, 46.9489232 ], + [ 6.8369131, 46.9487485 ], + [ 6.8368982, 46.9485724 ], + [ 6.8368659, 46.9484315 ], + [ 6.8368008, 46.9482602 ], + [ 6.8366881, 46.948101 ], + [ 6.8365319, 46.9479599 ], + [ 6.8363385, 46.9478426 ], + [ 6.8361153, 46.9477534 ], + [ 6.8360702, 46.9477428 ], + [ 6.8360388, 46.9477309 ], + [ 6.8360306, 46.9477285 ], + [ 6.835797, 46.9476772 ], + [ 6.8355536, 46.9476565 ], + [ 6.8353089, 46.9476672 ], + [ 6.8352734, 46.9476711 ], + [ 6.8352307, 46.9476789 ], + [ 6.8352251, 46.9476796 ], + [ 6.8351951, 46.9476828 ], + [ 6.8351432, 46.9476883 ], + [ 6.8348858, 46.9477345 ], + [ 6.8346474, 46.9478153 ], + [ 6.8344376, 46.9479273 ], + [ 6.834265, 46.9480659 ], + [ 6.8341368, 46.9482256 ], + [ 6.8340582, 46.9483996 ], + [ 6.8340323, 46.9485809 ], + [ 6.8340604, 46.9487621 ], + [ 6.834101, 46.9488944 ], + [ 6.834175, 46.949057 ], + [ 6.8342924, 46.9492072 ], + [ 6.8344491, 46.9493395 ], + [ 6.8346393, 46.9494492 ], + [ 6.8348564, 46.9495324 ], + [ 6.8350924, 46.9495861 ], + [ 6.835339, 46.9496083 ], + [ 6.8353814, 46.9496066 ], + [ 6.8354862, 46.9496168 ], + [ 6.8357437, 46.9496071 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "NE08", + "country" : "CHE", + "name" : [ + { + "text" : "Tribunal régional Boudry", + "lang" : "de-CH" + }, + { + "text" : "Tribunal régional Boudry", + "lang" : "fr-CH" + }, + { + "text" : "Tribunal régional Boudry", + "lang" : "it-CH" + }, + { + "text" : "Tribunal régional Boudry", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "regulationExemption" : "YES", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Police Neuchâteloise", + "lang" : "de-CH" + }, + { + "text" : "Police Neuchâteloise", + "lang" : "fr-CH" + }, + { + "text" : "Police Neuchâteloise", + "lang" : "it-CH" + }, + { + "text" : "Police Neuchâteloise", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "PN - Rens et opérations", + "lang" : "de-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "fr-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "it-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "PN - Rens et opérations", + "lang" : "de-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "fr-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "it-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ne.ch/autorites/DESC/PONE/Pages/Drones.aspx", + "email" : "Police.Neuchateloise@ne.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7218158, 47.4386353 ], + [ 7.7219853, 47.4383886 ], + [ 7.7224618, 47.4377327 ], + [ 7.722744, 47.4373456 ], + [ 7.7227497, 47.4373378 ], + [ 7.7224388, 47.4372952 ], + [ 7.7216636, 47.4371672 ], + [ 7.7210103, 47.4370227 ], + [ 7.7204159, 47.4368519 ], + [ 7.7199138, 47.43664 ], + [ 7.7199088, 47.4366467 ], + [ 7.7198159, 47.4367701 ], + [ 7.7203692, 47.4370741 ], + [ 7.7202043, 47.4374433 ], + [ 7.7200928, 47.4376966 ], + [ 7.7200196, 47.4378491 ], + [ 7.7200166, 47.4381271 ], + [ 7.7200257, 47.4381736 ], + [ 7.7200752, 47.4383385 ], + [ 7.7203171, 47.4386296 ], + [ 7.7205771, 47.4387835 ], + [ 7.7208501, 47.4390276 ], + [ 7.7210533, 47.4392813 ], + [ 7.7211078, 47.439343 ], + [ 7.72152, 47.4389297 ], + [ 7.7218158, 47.4386353 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns356", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Öschberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Öschberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Öschberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Öschberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6251666, 47.520345 ], + [ 7.6247784, 47.5205064 ], + [ 7.6246861, 47.5205499 ], + [ 7.6244597, 47.5206674 ], + [ 7.6243757, 47.5207092 ], + [ 7.624269, 47.5207679 ], + [ 7.624265, 47.5207988 ], + [ 7.6242577, 47.5208798 ], + [ 7.6239761999999995, 47.5212103 ], + [ 7.6238589999999995, 47.5213713 ], + [ 7.6238019, 47.5215273 ], + [ 7.6237749, 47.5216922 ], + [ 7.6237064, 47.5218487 ], + [ 7.6236083, 47.5220061 ], + [ 7.6234941, 47.5221577 ], + [ 7.6232567, 47.522433 ], + [ 7.6235613, 47.5224596 ], + [ 7.6235638, 47.5224602 ], + [ 7.6235674, 47.5224609 ], + [ 7.6235675, 47.522461 ], + [ 7.623766, 47.5225011 ], + [ 7.6239145, 47.5225153 ], + [ 7.6240847, 47.5225539 ], + [ 7.6241506999999995, 47.5225689 ], + [ 7.6242450999999996, 47.5226013 ], + [ 7.624338, 47.5226677 ], + [ 7.6243979, 47.5227199 ], + [ 7.6244157, 47.522783 ], + [ 7.6244325, 47.5228696 ], + [ 7.6244878, 47.5230389 ], + [ 7.6245362, 47.5231869 ], + [ 7.6245758, 47.5232792 ], + [ 7.6245944, 47.5233412 ], + [ 7.6246054999999995, 47.5233783 ], + [ 7.624635, 47.5234083 ], + [ 7.6246594, 47.5234393 ], + [ 7.6246914, 47.5234799 ], + [ 7.6247664, 47.5235178 ], + [ 7.6247941, 47.5235746 ], + [ 7.6248269, 47.523631 ], + [ 7.6248882, 47.5236605 ], + [ 7.6248943, 47.5236646 ], + [ 7.6249511, 47.5237036 ], + [ 7.6249327000000005, 47.5238262 ], + [ 7.6248951, 47.5239023 ], + [ 7.6249998, 47.5242511 ], + [ 7.6253464, 47.5242122 ], + [ 7.6256538, 47.5241902 ], + [ 7.6258447, 47.524197 ], + [ 7.6261206, 47.5242469 ], + [ 7.6263962, 47.5242321 ], + [ 7.6267248, 47.5241884 ], + [ 7.6270955, 47.5240801 ], + [ 7.6276674, 47.5238852 ], + [ 7.6279316, 47.5236334 ], + [ 7.6276025, 47.5235334 ], + [ 7.6274115, 47.5234834 ], + [ 7.6271036, 47.523369 ], + [ 7.626923, 47.5232759 ], + [ 7.6267423, 47.5231398 ], + [ 7.6266252, 47.523025 ], + [ 7.6266037, 47.5229317 ], + [ 7.6266458, 47.5228383 ], + [ 7.6268993, 47.5225721 ], + [ 7.6271846, 47.5222772 ], + [ 7.6268499, 47.5220977 ], + [ 7.6264461, 47.5217975 ], + [ 7.6259558, 47.5214613 ], + [ 7.6257241, 47.5211442 ], + [ 7.6252273, 47.520479 ], + [ 7.6252168000000005, 47.5204627 ], + [ 7.6252092000000005, 47.5204451 ], + [ 7.6251666, 47.520345 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr038", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Rütihardhof", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Rütihardhof", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Rütihardhof", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Rütihardhof", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4305377, 47.4097226 ], + [ 7.4306758, 47.4097498 ], + [ 7.4308519, 47.4097805 ], + [ 7.4311139, 47.409822 ], + [ 7.4316189, 47.4098953 ], + [ 7.4316392, 47.4098992 ], + [ 7.4316593, 47.4099037 ], + [ 7.4316791, 47.4099086 ], + [ 7.4316986, 47.4099141 ], + [ 7.4317178, 47.40992 ], + [ 7.4317551, 47.4099334 ], + [ 7.4317732, 47.4099408 ], + [ 7.4317868, 47.4099475 ], + [ 7.4318121999999995, 47.4099623 ], + [ 7.4318239, 47.4099705 ], + [ 7.4318451, 47.4099881 ], + [ 7.4318546, 47.4099975 ], + [ 7.431871, 47.4100173 ], + [ 7.4318779, 47.4100277 ], + [ 7.4321138, 47.4100072 ], + [ 7.4321428, 47.4099084 ], + [ 7.4321804, 47.4098027 ], + [ 7.4321893, 47.4097423 ], + [ 7.4321827, 47.409687 ], + [ 7.4321186, 47.409636 ], + [ 7.4320343, 47.4095927 ], + [ 7.4319492, 47.4094242 ], + [ 7.4319293, 47.4092949 ], + [ 7.4319278, 47.4091533 ], + [ 7.4319251, 47.4090591 ], + [ 7.4319384, 47.4089456 ], + [ 7.4319577, 47.4087903 ], + [ 7.4315202, 47.4087488 ], + [ 7.4312875, 47.4087294 ], + [ 7.4308271999999995, 47.4086927 ], + [ 7.4305776, 47.4086748 ], + [ 7.4300306, 47.4086337 ], + [ 7.4297334, 47.4086111 ], + [ 7.4294381, 47.4085887 ], + [ 7.4292988, 47.408578 ], + [ 7.4292689, 47.4086708 ], + [ 7.4292328, 47.4087835 ], + [ 7.4291566, 47.4088601 ], + [ 7.4291465, 47.4088701 ], + [ 7.4290913, 47.4089256 ], + [ 7.4289731, 47.4090981 ], + [ 7.4287179, 47.4092358 ], + [ 7.4285402, 47.4093675 ], + [ 7.4284871, 47.4094265 ], + [ 7.4284858, 47.4094468 ], + [ 7.4285095, 47.4094453 ], + [ 7.4285331, 47.4094435 ], + [ 7.4285566, 47.4094414 ], + [ 7.4285801, 47.4094391 ], + [ 7.4286143, 47.4094353 ], + [ 7.4286482, 47.4094309 ], + [ 7.4286821, 47.409426 ], + [ 7.4287157, 47.4094205 ], + [ 7.4287491, 47.4094145 ], + [ 7.4287823, 47.409408 ], + [ 7.4288153, 47.4094009 ], + [ 7.4288389, 47.4093957 ], + [ 7.4288628, 47.409391 ], + [ 7.4288868, 47.4093867 ], + [ 7.428911, 47.409383 ], + [ 7.4289354, 47.4093797 ], + [ 7.4289599, 47.409377 ], + [ 7.4289845, 47.4093747 ], + [ 7.4290092, 47.409373 ], + [ 7.4290339, 47.4093717 ], + [ 7.4290634, 47.4093704 ], + [ 7.4290929, 47.4093696 ], + [ 7.4291224, 47.4093694 ], + [ 7.4291519, 47.4093699 ], + [ 7.4291813, 47.4093709 ], + [ 7.4292107, 47.4093724 ], + [ 7.4292401, 47.4093746 ], + [ 7.4292693, 47.4093773 ], + [ 7.4292984, 47.4093807 ], + [ 7.4293274, 47.4093846 ], + [ 7.4293619, 47.4093894 ], + [ 7.4293962, 47.4093949 ], + [ 7.4294303, 47.4094009 ], + [ 7.4294641, 47.4094074 ], + [ 7.4294978, 47.4094145 ], + [ 7.4295311, 47.4094222 ], + [ 7.4295642, 47.4094304 ], + [ 7.429597, 47.4094392 ], + [ 7.4300342, 47.4096034 ], + [ 7.4302495, 47.4096709 ], + [ 7.4305264, 47.4097206 ], + [ 7.4305377, 47.4097226 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns002", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Oltme", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Oltme", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Oltme", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Oltme", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.6321068, 46.7733125 ], + [ 6.637645, 46.7695165 ], + [ 6.6465903, 46.7633836 ], + [ 6.6395011, 46.7559125 ], + [ 6.6319358, 46.75415 ], + [ 6.6061863, 46.7476226 ], + [ 6.5872028, 46.7397908 ], + [ 6.5853482, 46.7412163 ], + [ 6.5706515, 46.7518555 ], + [ 6.5613064, 46.7550674 ], + [ 6.6176293, 46.7782018 ], + [ 6.6273116, 46.7787209 ], + [ 6.6321068, 46.7733125 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSGY001", + "country" : "CHE", + "name" : [ + { + "text" : "LSGY Yverdon-les-Bains", + "lang" : "de-CH" + }, + { + "text" : "LSGY Yverdon-les-Bains", + "lang" : "fr-CH" + }, + { + "text" : "LSGY Yverdon-les-Bains", + "lang" : "it-CH" + }, + { + "text" : "LSGY Yverdon-les-Bains", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Air-Club Yverdon /Aérodrome Yverdon-les Bains", + "lang" : "de-CH" + }, + { + "text" : "Air-Club Yverdon /Aérodrome Yverdon-les Bains", + "lang" : "fr-CH" + }, + { + "text" : "Air-Club Yverdon /Aérodrome Yverdon-les Bains", + "lang" : "it-CH" + }, + { + "text" : "Air-Club Yverdon /Aérodrome Yverdon-les Bains", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Chef d'aérodrome", + "lang" : "de-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "fr-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "it-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "en-GB" + } + ], + "siteURL" : "https://airport.lsgy.ch/vol-de-drone-ballons-ou-lanternes", + "email" : "admin@air-club-yverdon.ch", + "phone" : "0041244252724", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P02DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.512927, 47.4254981 ], + [ 7.5113844, 47.4257892 ], + [ 7.5116151, 47.4264961 ], + [ 7.5117619, 47.4268523 ], + [ 7.5120465, 47.4272784 ], + [ 7.5123438, 47.4276053 ], + [ 7.5127315, 47.4279379 ], + [ 7.5134722, 47.4283638 ], + [ 7.5142128, 47.428667 ], + [ 7.5147552, 47.4288535 ], + [ 7.514961, 47.4283044 ], + [ 7.5150121, 47.4278722 ], + [ 7.5152529, 47.427802 ], + [ 7.5153818, 47.4276559 ], + [ 7.5144605, 47.4273294 ], + [ 7.5139952999999995, 47.426991 ], + [ 7.5137366, 47.4266291 ], + [ 7.513672, 47.4265357 ], + [ 7.5133008, 47.4257125 ], + [ 7.5131632, 47.4257593 ], + [ 7.512927, 47.4254981 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr033", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Schleifehalde", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Schleifehalde", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Schleifehalde", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Schleifehalde", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.5694307, 46.7337317 ], + [ 6.568534, 46.7324927 ], + [ 6.568268, 46.732124999999996 ], + [ 6.568248, 46.7320975 ], + [ 6.5682442, 46.7320989 ], + [ 6.5682176, 46.7320697 ], + [ 6.5683684, 46.7320334 ], + [ 6.5686998, 46.7320009 ], + [ 6.5687763, 46.7319934 ], + [ 6.5698674, 46.731879 ], + [ 6.5704503, 46.7317818 ], + [ 6.570742, 46.7317475 ], + [ 6.5708836, 46.7317417 ], + [ 6.570943, 46.7317402 ], + [ 6.5710071, 46.7317387 ], + [ 6.5712194, 46.7317335 ], + [ 6.5713507, 46.731730400000004 ], + [ 6.5714505, 46.7316731 ], + [ 6.5721181, 46.7311472 ], + [ 6.5717943, 46.7307873 ], + [ 6.5716373, 46.7305358 ], + [ 6.571472, 46.7301872 ], + [ 6.5712321, 46.7297472 ], + [ 6.5709743, 46.7294042 ], + [ 6.570751, 46.7290042 ], + [ 6.5705605, 46.7286956 ], + [ 6.5704118000000005, 46.7284385 ], + [ 6.5702956, 46.7281355 ], + [ 6.5702133, 46.727867 ], + [ 6.5701148, 46.7275869 ], + [ 6.5700403, 46.7273355 ], + [ 6.5699502, 46.7269926 ], + [ 6.5698599, 46.7266612 ], + [ 6.5698357, 46.7263868 ], + [ 6.5697944, 46.7261067 ], + [ 6.5697707, 46.7258039 ], + [ 6.5697379, 46.7255525 ], + [ 6.5697025, 46.7252397 ], + [ 6.5697065, 46.7250383 ], + [ 6.5697492, 46.7248038 ], + [ 6.5698413, 46.7244666 ], + [ 6.5699009, 46.7241637 ], + [ 6.5699766, 46.7238836 ], + [ 6.570069, 46.723575 ], + [ 6.5701450999999995, 46.7232664 ], + [ 6.5704047, 46.7227348 ], + [ 6.5705729999999996, 46.7223862 ], + [ 6.5708487, 46.721969 ], + [ 6.5711827, 46.721586 ], + [ 6.5714925, 46.7211859 ], + [ 6.5717266, 46.7208602 ], + [ 6.5720523, 46.7204372 ], + [ 6.5721947, 46.7202772 ], + [ 6.57232, 46.7201057 ], + [ 6.5720143, 46.7195457 ], + [ 6.5717738, 46.7191 ], + [ 6.571575, 46.7186999 ], + [ 6.5714759, 46.7185056 ], + [ 6.5713768, 46.7182656 ], + [ 6.571245, 46.7179742 ], + [ 6.5711535, 46.7177628 ], + [ 6.5710547, 46.7174999 ], + [ 6.5709803, 46.7172999 ], + [ 6.5708568, 46.7169456 ], + [ 6.5705846, 46.7162883 ], + [ 6.5705073, 46.7160205 ], + [ 6.5704915, 46.7159656 ], + [ 6.5704443999999995, 46.7158026 ], + [ 6.5703748, 46.7156128 ], + [ 6.5703648999999995, 46.715586 ], + [ 6.570361, 46.7155875 ], + [ 6.5703047, 46.7156101 ], + [ 6.5703037, 46.7156072 ], + [ 6.5702382, 46.7155967 ], + [ 6.5701713, 46.715639 ], + [ 6.570158, 46.715641 ], + [ 6.5701545, 46.7156309 ], + [ 6.570138, 46.7156128 ], + [ 6.5700901, 46.7154588 ], + [ 6.5700079, 46.7152581 ], + [ 6.569863, 46.7149027 ], + [ 6.569748, 46.7146186 ], + [ 6.5696271, 46.7143188 ], + [ 6.569522, 46.7140642 ], + [ 6.569487, 46.7139589 ], + [ 6.5694832, 46.7139511 ], + [ 6.5694721, 46.7139281 ], + [ 6.5694539, 46.7138905 ], + [ 6.569397, 46.713756 ], + [ 6.5693608, 46.7136842 ], + [ 6.5693247, 46.7136318 ], + [ 6.5692909, 46.7135949 ], + [ 6.5692517, 46.7135613 ], + [ 6.5692091, 46.7135304 ], + [ 6.5691631, 46.7135028 ], + [ 6.5691153, 46.7134776 ], + [ 6.5690656, 46.7134547 ], + [ 6.5690142, 46.7134342 ], + [ 6.5689372, 46.7134091 ], + [ 6.5687387, 46.7133455 ], + [ 6.5686592, 46.7133115 ], + [ 6.5686049, 46.7132818 ], + [ 6.5685558, 46.7132485 ], + [ 6.5685118, 46.7132121 ], + [ 6.5684733, 46.7131732 ], + [ 6.56844, 46.7131324 ], + [ 6.5684123, 46.7130901 ], + [ 6.5683255, 46.7129443 ], + [ 6.5681557999999995, 46.712661 ], + [ 6.5681226, 46.7126125 ], + [ 6.5680502, 46.7125116 ], + [ 6.5680168, 46.7124615 ], + [ 6.5679639, 46.712382 ], + [ 6.5679418, 46.7123479 ], + [ 6.5679242, 46.7123184 ], + [ 6.5679016, 46.7122993 ], + [ 6.5678742, 46.7122881 ], + [ 6.567838, 46.712285 ], + [ 6.5673219, 46.7124549 ], + [ 6.566237, 46.7128118 ], + [ 6.5658245, 46.7129476 ], + [ 6.5657953, 46.7129173 ], + [ 6.5656238, 46.712557 ], + [ 6.5655946, 46.7124955 ], + [ 6.5654091, 46.7121058 ], + [ 6.5652906, 46.7118567 ], + [ 6.5651288, 46.7115166 ], + [ 6.5651278, 46.7115145 ], + [ 6.5650708, 46.7114168 ], + [ 6.5647451, 46.7115027 ], + [ 6.5647433, 46.7115031 ], + [ 6.5643233, 46.7116138 ], + [ 6.5631144, 46.7119626 ], + [ 6.5616651, 46.7123627 ], + [ 6.5613313, 46.712477 ], + [ 6.5610402, 46.7125856 ], + [ 6.5608731, 46.7126598 ], + [ 6.560756, 46.7127227 ], + [ 6.5606397, 46.7127857 ], + [ 6.560406, 46.7129285 ], + [ 6.5602221, 46.7130256 ], + [ 6.5600474, 46.713117 ], + [ 6.5598635, 46.7132657 ], + [ 6.5597056, 46.7133743 ], + [ 6.5594879, 46.71354 ], + [ 6.5571349, 46.7151573 ], + [ 6.5555911, 46.7163347 ], + [ 6.5549039, 46.7168105 ], + [ 6.55377, 46.7176625 ], + [ 6.5530419, 46.7181867 ], + [ 6.5527719, 46.7183499 ], + [ 6.5524935, 46.7185299 ], + [ 6.5521979, 46.7187042 ], + [ 6.5519875, 46.7188222 ], + [ 6.5525004, 46.7195955 ], + [ 6.5534124, 46.7209704 ], + [ 6.5535352, 46.7211555 ], + [ 6.5545598, 46.7227853 ], + [ 6.5554914, 46.72446 ], + [ 6.5564894, 46.7260273 ], + [ 6.557499, 46.7276904 ], + [ 6.5588325, 46.7298049 ], + [ 6.558973, 46.7300621 ], + [ 6.5586067, 46.7301078 ], + [ 6.555366, 46.7305707 ], + [ 6.5545403, 46.7306881 ], + [ 6.561729, 46.7344992 ], + [ 6.5619945, 46.7349417 ], + [ 6.562487, 46.7357443 ], + [ 6.5626262, 46.7356686 ], + [ 6.5635291, 46.7351618 ], + [ 6.5637362, 46.7350455 ], + [ 6.5650799, 46.7341825 ], + [ 6.5658639999999995, 46.7336418 ], + [ 6.5659301, 46.7335962 ], + [ 6.5659671, 46.7335706 ], + [ 6.5661542, 46.7334416 ], + [ 6.566142, 46.7334831 ], + [ 6.5661666, 46.7335136 ], + [ 6.5663479, 46.7337378 ], + [ 6.5676363, 46.735331 ], + [ 6.5671611, 46.7358402 ], + [ 6.5671127, 46.7358931 ], + [ 6.5670859, 46.735920899999996 ], + [ 6.5666785, 46.7363574 ], + [ 6.5658199, 46.7372773 ], + [ 6.5645827, 46.7384671 ], + [ 6.5645269, 46.7385282 ], + [ 6.5644389, 46.7386245 ], + [ 6.5608268, 46.7425798 ], + [ 6.5607695, 46.7427044 ], + [ 6.5599495999999995, 46.7434611 ], + [ 6.5591306, 46.7442193 ], + [ 6.5583079, 46.7449812 ], + [ 6.5575036, 46.7457265 ], + [ 6.5573596, 46.7458577 ], + [ 6.5567648, 46.7464077 ], + [ 6.5558601, 46.747236 ], + [ 6.5550559, 46.7479885 ], + [ 6.554235, 46.7487479 ], + [ 6.5534596, 46.7494646 ], + [ 6.5534562, 46.7495315 ], + [ 6.5552774, 46.7507367 ], + [ 6.5570574, 46.7519152 ], + [ 6.5580117, 46.7525073 ], + [ 6.5582298, 46.7526426 ], + [ 6.5605629, 46.7518281 ], + [ 6.5631571, 46.7509277 ], + [ 6.5651425, 46.750235 ], + [ 6.5661135, 46.7498973 ], + [ 6.5661902, 46.7498707 ], + [ 6.5669634, 46.7496017 ], + [ 6.5692976, 46.7487896 ], + [ 6.5723105, 46.7477404 ], + [ 6.5723802, 46.7477166 ], + [ 6.5725743, 46.7476507 ], + [ 6.5726420999999995, 46.7476283 ], + [ 6.5749118, 46.7468375 ], + [ 6.5772458, 46.7460268 ], + [ 6.5781451, 46.7457121 ], + [ 6.5791658, 46.745355 ], + [ 6.5798907, 46.7451052 ], + [ 6.5807165, 46.7448146 ], + [ 6.5814687, 46.7442848 ], + [ 6.5817689, 46.7440685 ], + [ 6.5818418, 46.7440159 ], + [ 6.581814, 46.7440063 ], + [ 6.58147, 46.7438886 ], + [ 6.5808047, 46.7436457 ], + [ 6.580591, 46.7435676 ], + [ 6.5794367000000005, 46.7431594 ], + [ 6.5784451, 46.7425241 ], + [ 6.5775326, 46.741973 ], + [ 6.5773158, 46.741842 ], + [ 6.5771004, 46.7417129 ], + [ 6.5769617, 46.7416298 ], + [ 6.5766046, 46.7414037 ], + [ 6.5758689, 46.7409576 ], + [ 6.5753068, 46.7406125 ], + [ 6.5752656, 46.7405872 ], + [ 6.5750406, 46.740449 ], + [ 6.5742607, 46.7399539 ], + [ 6.5740113000000004, 46.7397936 ], + [ 6.5738845999999995, 46.7397058 ], + [ 6.5735864, 46.7394554 ], + [ 6.5733674, 46.7391557 ], + [ 6.5730976, 46.7387867 ], + [ 6.5718898, 46.737123 ], + [ 6.5706865, 46.7354666 ], + [ 6.5694307, 46.7337317 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "WZV0025", + "country" : "CHE", + "name" : [ + { + "text" : "Wasser- und Zugvogelreservat Plaine de l’Orbe – Chavornay", + "lang" : "de-CH" + }, + { + "text" : "Réserve d'oiseaux d'eau et de migrateurs Plaine de l’Orbe – Chavornay", + "lang" : "fr-CH" + }, + { + "text" : "Riserva di uccelli acquatici e migratori Plaine de l’Orbe – Chavornay", + "lang" : "it-CH" + }, + { + "text" : "Water Bird and Migratory Bird Reserves Plaine de l’Orbe – Chavornay", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4102022, 47.1816843 ], + [ 7.4092, 47.1832176 ], + [ 7.4114415, 47.1832956 ], + [ 7.4126131, 47.1833363 ], + [ 7.4138479, 47.1833582 ], + [ 7.4140115, 47.18336 ], + [ 7.4137567, 47.1837323 ], + [ 7.4162659, 47.1842473 ], + [ 7.4169973, 47.1830503 ], + [ 7.4191014, 47.1834914 ], + [ 7.4195779, 47.1827242 ], + [ 7.4233125, 47.1838545 ], + [ 7.4238615, 47.1834984 ], + [ 7.4238958, 47.1833797 ], + [ 7.4239301, 47.1832502 ], + [ 7.4215253, 47.182577 ], + [ 7.4219318, 47.1819754 ], + [ 7.4227881, 47.181881 ], + [ 7.4205297, 47.1811962 ], + [ 7.420634, 47.181019 ], + [ 7.417848, 47.1801605 ], + [ 7.4177781, 47.1802576 ], + [ 7.4149487, 47.1793369 ], + [ 7.4152629, 47.1788656 ], + [ 7.4126487, 47.1780294 ], + [ 7.4122737, 47.1785933 ], + [ 7.4121326, 47.1785483 ], + [ 7.41152, 47.179471 ], + [ 7.4106218, 47.1791587 ], + [ 7.4096782, 47.1797098 ], + [ 7.4111489, 47.1802499 ], + [ 7.4102022, 47.1816843 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZG002", + "country" : "CHE", + "name" : [ + { + "text" : "LSZG Grenchen (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSZG Grenchen (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSZG Grenchen (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSZG Grenchen (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Special Flight Office (SFO)", + "lang" : "de-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "fr-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "it-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "en-GB" + } + ], + "siteURL" : "https://skyguide.ch/services/special-flights", + "email" : "specialflight@skyguide.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.9390097, 46.6841125 ], + [ 7.9408804, 46.6789297 ], + [ 7.9418546, 46.6754028 ], + [ 7.8868406, 46.6595193 ], + [ 7.8203271, 46.6461366 ], + [ 7.8200391, 46.646404 ], + [ 7.8147996, 46.6537099 ], + [ 7.8115375, 46.6615425 ], + [ 7.8103586, 46.6696502 ], + [ 7.8113017, 46.6777726 ], + [ 7.8143373, 46.6856484 ], + [ 7.8150794, 46.6867363 ], + [ 7.8483272, 46.6936 ], + [ 7.8854976, 46.7144204 ], + [ 7.8865873, 46.7148261 ], + [ 7.8904929, 46.714487 ], + [ 7.9017917, 46.7120383 ], + [ 7.9122719, 46.7082403 ], + [ 7.9215961, 46.7032153 ], + [ 7.9294643, 46.6971251 ], + [ 7.9356238999999995, 46.6901659 ], + [ 7.9390097, 46.6841125 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSXI001", + "country" : "CHE", + "name" : [ + { + "text" : "LSXI Interlaken", + "lang" : "de-CH" + }, + { + "text" : "LSXI Interlaken", + "lang" : "fr-CH" + }, + { + "text" : "LSXI Interlaken", + "lang" : "it-CH" + }, + { + "text" : "LSXI Interlaken", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "REGA", + "lang" : "de-CH" + }, + { + "text" : "REGA", + "lang" : "fr-CH" + }, + { + "text" : "REGA", + "lang" : "it-CH" + }, + { + "text" : "REGA", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Leitung Einsatzbasis Wilderswil", + "lang" : "de-CH" + }, + { + "text" : "Leitung Einsatzbasis Wilderswil", + "lang" : "fr-CH" + }, + { + "text" : "Leitung Einsatzbasis Wilderswil", + "lang" : "it-CH" + }, + { + "text" : "Leitung Einsatzbasis Wilderswil", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.rega.ch/en/our-missions/locations-and-infrastructure/rega-10-wilderswil-base/lsxi-interlaken-authorization-for-drone-pilot", + "email" : "ebbo@rega.ch", + "phone" : "0041338289030", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P01DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7468775999999995, 47.4535122 ], + [ 7.7465012, 47.4536535 ], + [ 7.7461933, 47.4536139 ], + [ 7.7459092, 47.4537761 ], + [ 7.7458805, 47.4540901 ], + [ 7.7458328, 47.4543232 ], + [ 7.7456032, 47.4546494 ], + [ 7.7451038, 47.4551885 ], + [ 7.7449148, 47.455309 ], + [ 7.7450859, 47.4554575 ], + [ 7.7451241, 47.4554354 ], + [ 7.7451616, 47.4554129 ], + [ 7.7451984, 47.4553898 ], + [ 7.7452346, 47.4553663 ], + [ 7.7452701, 47.4553423 ], + [ 7.745305, 47.4553179 ], + [ 7.7453391, 47.455293 ], + [ 7.7453725, 47.4552677 ], + [ 7.7454052, 47.4552419 ], + [ 7.7454371, 47.4552157 ], + [ 7.7454683, 47.4551891 ], + [ 7.7454987, 47.455162 ], + [ 7.7455283999999995, 47.4551346 ], + [ 7.7455572, 47.4551068 ], + [ 7.7455853, 47.4550787 ], + [ 7.7456125, 47.4550501 ], + [ 7.7456389, 47.4550213 ], + [ 7.7456645, 47.454992 ], + [ 7.7456893, 47.4549625 ], + [ 7.7465601, 47.4538996 ], + [ 7.7468775999999995, 47.4535122 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns123", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Grüngen", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Grüngen", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Grüngen", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Grüngen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.3496241, 47.3878495 ], + [ 9.3496835, 47.3877839 ], + [ 9.3498601, 47.3878522 ], + [ 9.3498069, 47.3879179 ], + [ 9.3497949, 47.387933 ], + [ 9.3498262, 47.3879473 ], + [ 9.3498571, 47.3879619 ], + [ 9.3498876, 47.3879769 ], + [ 9.3499177, 47.3879923 ], + [ 9.3499474, 47.3880081 ], + [ 9.3499767, 47.3880242 ], + [ 9.3500055, 47.3880407 ], + [ 9.3502058, 47.3881573 ], + [ 9.350235, 47.3881741 ], + [ 9.3502646, 47.3881905 ], + [ 9.3502947, 47.3882066 ], + [ 9.3503251, 47.3882224 ], + [ 9.3503559, 47.3882378 ], + [ 9.3503874, 47.3882523 ], + [ 9.3504193, 47.3882664 ], + [ 9.3504518, 47.3882799 ], + [ 9.350484699999999, 47.3882929 ], + [ 9.350518, 47.3883054 ], + [ 9.3505518, 47.3883174 ], + [ 9.350586, 47.3883288 ], + [ 9.3506205, 47.3883397 ], + [ 9.3508197, 47.3883559 ], + [ 9.3509053, 47.3883857 ], + [ 9.350906, 47.3883451 ], + [ 9.3510115, 47.3880339 ], + [ 9.351408, 47.3880721 ], + [ 9.3525523, 47.3881824 ], + [ 9.3527101, 47.3881514 ], + [ 9.3531294, 47.388102 ], + [ 9.3534811, 47.3879818 ], + [ 9.3537254, 47.3879051 ], + [ 9.3541336, 47.3877983 ], + [ 9.3544692, 47.3877105 ], + [ 9.3546738, 47.3876561 ], + [ 9.35477, 47.3877844 ], + [ 9.3548585, 47.3877539 ], + [ 9.3548592, 47.3876461 ], + [ 9.3548963, 47.3876092 ], + [ 9.3554789, 47.3874498 ], + [ 9.3558336, 47.3874672 ], + [ 9.3560184, 47.3874785 ], + [ 9.35618, 47.3875363 ], + [ 9.3562321, 47.3876195 ], + [ 9.356160299999999, 47.3878116 ], + [ 9.3572301, 47.3880408 ], + [ 9.3572911, 47.3880556 ], + [ 9.3595168, 47.388528 ], + [ 9.3597912, 47.3885669 ], + [ 9.3600634, 47.3885623 ], + [ 9.3606756, 47.3884972 ], + [ 9.3607415, 47.3884777 ], + [ 9.3611481, 47.3883754 ], + [ 9.3611809, 47.3883534 ], + [ 9.3614275, 47.388302 ], + [ 9.3617431, 47.3882632 ], + [ 9.3620221, 47.3882667 ], + [ 9.3620489, 47.3882805 ], + [ 9.3623132, 47.3882438 ], + [ 9.3623346, 47.3882236 ], + [ 9.3625735, 47.3881706 ], + [ 9.3628351, 47.3881428 ], + [ 9.3630925, 47.3881386 ], + [ 9.3631247, 47.3881402 ], + [ 9.3631568, 47.3881423 ], + [ 9.3631888, 47.3881451 ], + [ 9.3632207, 47.3881483 ], + [ 9.3632524, 47.3881522 ], + [ 9.363284, 47.3881566 ], + [ 9.3632993, 47.388159 ], + [ 9.3633145, 47.3881615 ], + [ 9.3633297, 47.3881641 ], + [ 9.3633448, 47.3881669 ], + [ 9.3633547, 47.3880933 ], + [ 9.3633638, 47.3880243 ], + [ 9.3631073, 47.3879757 ], + [ 9.3627567, 47.3879391 ], + [ 9.3626306, 47.387979 ], + [ 9.3625223, 47.3879879 ], + [ 9.3623044, 47.3880765 ], + [ 9.3621379, 47.3880794 ], + [ 9.3620017, 47.3881448 ], + [ 9.3619081, 47.3881449 ], + [ 9.3617381, 47.3881056 ], + [ 9.3615006, 47.3881968 ], + [ 9.3613989, 47.3881893 ], + [ 9.3612237, 47.3882017 ], + [ 9.3611068, 47.388249 ], + [ 9.360942, 47.3882384 ], + [ 9.3607469, 47.3883218 ], + [ 9.360668, 47.3883486 ], + [ 9.3606307, 47.3883681 ], + [ 9.3605479, 47.3883295 ], + [ 9.3603427, 47.3883728 ], + [ 9.3601529, 47.3883153 ], + [ 9.3600802, 47.3883212 ], + [ 9.3599597, 47.3883622 ], + [ 9.3597692, 47.3883662 ], + [ 9.3597056, 47.3883452 ], + [ 9.3597174, 47.3883195 ], + [ 9.3597628, 47.3882247 ], + [ 9.3598132, 47.3881298 ], + [ 9.359956, 47.3881474 ], + [ 9.3600817, 47.3881666 ], + [ 9.360261, 47.3881695 ], + [ 9.3603679, 47.3881631 ], + [ 9.3604752, 47.388161 ], + [ 9.360702, 47.3880903 ], + [ 9.3606288, 47.3879119 ], + [ 9.3605828, 47.3877831 ], + [ 9.3605097, 47.3875765 ], + [ 9.3602839, 47.3875638 ], + [ 9.359887, 47.38751 ], + [ 9.3595106, 47.3874807 ], + [ 9.3590277, 47.3874426 ], + [ 9.3585892, 47.3874319 ], + [ 9.3581968, 47.3874182 ], + [ 9.3578859, 47.3874241 ], + [ 9.3574873, 47.3874548 ], + [ 9.3572461, 47.3874424 ], + [ 9.3572314, 47.387338 ], + [ 9.3572318, 47.3872054 ], + [ 9.3572586, 47.3869937 ], + [ 9.357354, 47.3869073 ], + [ 9.357482, 47.3867965 ], + [ 9.3576203, 47.3866936 ], + [ 9.3577985, 47.3865895 ], + [ 9.3580351, 47.3864085 ], + [ 9.3581985, 47.3862405 ], + [ 9.3583258, 47.3861149 ], + [ 9.3583945, 47.3860052 ], + [ 9.358451, 47.385915 ], + [ 9.3584915, 47.3858504 ], + [ 9.3582196, 47.3857776 ], + [ 9.3582404, 47.3857204 ], + [ 9.3582739, 47.3856246 ], + [ 9.3583144, 47.3855098 ], + [ 9.358358, 47.3854002 ], + [ 9.3584105, 47.3852678 ], + [ 9.358487, 47.385053 ], + [ 9.3584982, 47.3850216 ], + [ 9.3584222, 47.3850055 ], + [ 9.3578204, 47.3848876 ], + [ 9.3576316, 47.3848298 ], + [ 9.35753, 47.3847672 ], + [ 9.3574921, 47.3846219 ], + [ 9.3573181, 47.3845152 ], + [ 9.3573019, 47.3843452 ], + [ 9.3572475, 47.38418 ], + [ 9.3572787, 47.3840979 ], + [ 9.3572103, 47.3839842 ], + [ 9.3571381, 47.3838281 ], + [ 9.3569759, 47.3837414 ], + [ 9.3567445, 47.3835955 ], + [ 9.3566611, 47.3834623 ], + [ 9.3565473, 47.3833838 ], + [ 9.3564593, 47.3833676 ], + [ 9.3563452, 47.3833885 ], + [ 9.3562017, 47.3834538 ], + [ 9.3560432, 47.3835034 ], + [ 9.3558434, 47.3835237 ], + [ 9.3557346, 47.3835226 ], + [ 9.355447999999999, 47.3836533 ], + [ 9.3552564, 47.3838213 ], + [ 9.3550775, 47.3839951 ], + [ 9.354955499999999, 47.3839846 ], + [ 9.3549233, 47.384032 ], + [ 9.3548092, 47.3841241 ], + [ 9.3546614, 47.3842119 ], + [ 9.3545214, 47.3842294 ], + [ 9.3544608, 47.38419 ], + [ 9.3543916, 47.3841666 ], + [ 9.3543164, 47.3841668 ], + [ 9.3541261, 47.3840891 ], + [ 9.3538705, 47.3840307 ], + [ 9.3537096, 47.3840211 ], + [ 9.3535444, 47.3839528 ], + [ 9.3533692, 47.3839054 ], + [ 9.3530492, 47.3838014 ], + [ 9.352913, 47.3837728 ], + [ 9.352728, 47.383706 ], + [ 9.3524316, 47.3836395 ], + [ 9.3520973, 47.3835205 ], + [ 9.3519071, 47.3834811 ], + [ 9.3517131, 47.3834173 ], + [ 9.3513216, 47.3833011 ], + [ 9.3507374, 47.3831562 ], + [ 9.3502139, 47.3831073 ], + [ 9.3499704, 47.3831403 ], + [ 9.3492147, 47.3834923 ], + [ 9.3489494, 47.383798 ], + [ 9.3486, 47.3839442 ], + [ 9.3484459, 47.3840791 ], + [ 9.3482843, 47.3843281 ], + [ 9.348279, 47.3844309 ], + [ 9.3483297, 47.384682 ], + [ 9.3483165, 47.3847482 ], + [ 9.3481979, 47.3849246 ], + [ 9.3480437, 47.385046 ], + [ 9.3479608, 47.3851642 ], + [ 9.3479599, 47.3852428 ], + [ 9.347932, 47.3853417 ], + [ 9.3477398, 47.3855389 ], + [ 9.3477681, 47.3857437 ], + [ 9.3476424, 47.3861218 ], + [ 9.3476149, 47.386238 ], + [ 9.3476242, 47.3863344 ], + [ 9.3477065, 47.3865079 ], + [ 9.3477455, 47.3867492 ], + [ 9.3477521, 47.3870279 ], + [ 9.3477249, 47.3870814 ], + [ 9.3477632, 47.3871458 ], + [ 9.3477946, 47.3872521 ], + [ 9.3478616, 47.3873022 ], + [ 9.3479384, 47.3873327 ], + [ 9.3479785, 47.3873918 ], + [ 9.3480998, 47.3875158 ], + [ 9.3481386, 47.3876068 ], + [ 9.3481557, 47.3876897 ], + [ 9.3481569, 47.387721 ], + [ 9.349028, 47.3877288 ], + [ 9.3491478, 47.387741 ], + [ 9.3492098, 47.3877421 ], + [ 9.3492093, 47.3877566 ], + [ 9.3495287, 47.3878191 ], + [ 9.3496241, 47.3878495 ] + ], + [ + [ 9.3563425, 47.3867571 ], + [ 9.3565244, 47.3868294 ], + [ 9.3564502, 47.3869137 ], + [ 9.3562654, 47.3868414 ], + [ 9.3563425, 47.3867571 ] + ], + [ + [ 9.3498089, 47.3868692 ], + [ 9.3499533, 47.3870037 ], + [ 9.3498763, 47.3870481 ], + [ 9.3498768, 47.387077 ], + [ 9.3498383, 47.3871521 ], + [ 9.3497248, 47.3870896 ], + [ 9.3496016, 47.3869673 ], + [ 9.3498089, 47.3868692 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "AR-0001", + "country" : "CHE", + "name" : [ + { + "text" : "Strafanstalt Gmünden", + "lang" : "de-CH" + }, + { + "text" : "Pénitencier Gmünden", + "lang" : "fr-CH" + }, + { + "text" : "Penitenziario Gmünden", + "lang" : "it-CH" + }, + { + "text" : "Penitentiary Gmünden", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "regulationExemption" : "NO", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Departement Bau und Volkswirtschaft", + "lang" : "de-CH" + }, + { + "text" : "Département d'économie", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di economia", + "lang" : "it-CH" + }, + { + "text" : "Economics department", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Tiefbauamt - Mobilität und Support", + "lang" : "de-CH" + }, + { + "text" : "Bureau de génie civil", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio di ingegneria civile", + "lang" : "it-CH" + }, + { + "text" : "Civil engineering office", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ar.ch/verwaltung/departement-bau-und-volkswirtschaft/tiefbauamt/abteilung-mobilitaet-support/", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8139576, 47.4413276 ], + [ 7.813966, 47.4414298 ], + [ 7.8140947, 47.4416446 ], + [ 7.8141408, 47.4417474 ], + [ 7.8141546, 47.4418546 ], + [ 7.8141513, 47.442032 ], + [ 7.8141934, 47.4421702 ], + [ 7.8142773, 47.4423006 ], + [ 7.8143813, 47.4424269 ], + [ 7.8145377, 47.4425564 ], + [ 7.8150617, 47.4424721 ], + [ 7.815838, 47.4423474 ], + [ 7.8172979, 47.4424458 ], + [ 7.8173584, 47.4424499 ], + [ 7.8186985, 47.4425402 ], + [ 7.8185187, 47.4420475 ], + [ 7.818424, 47.4416904 ], + [ 7.8184091, 47.4414697 ], + [ 7.8180654, 47.4414884 ], + [ 7.818164, 47.4412268 ], + [ 7.8185461, 47.4411946 ], + [ 7.8190661, 47.4411165 ], + [ 7.8194636, 47.4410182 ], + [ 7.8198604, 47.4408991 ], + [ 7.8202688, 47.4407295 ], + [ 7.8210521, 47.4404647 ], + [ 7.8214211, 47.4405562 ], + [ 7.8214956, 47.4403664 ], + [ 7.8215506, 47.4401292 ], + [ 7.8216231, 47.4397683 ], + [ 7.8215894, 47.4395105 ], + [ 7.8214243, 47.4395135 ], + [ 7.8211262999999995, 47.4395431 ], + [ 7.8208339, 47.4395934 ], + [ 7.819275, 47.4399321 ], + [ 7.8190319, 47.4399759 ], + [ 7.8187817, 47.4399976 ], + [ 7.8185308, 47.4400037 ], + [ 7.8183974, 47.4400207 ], + [ 7.8180326, 47.4400068 ], + [ 7.8179016, 47.4399785 ], + [ 7.8177607, 47.4399816 ], + [ 7.8176569, 47.4399955 ], + [ 7.8176018, 47.4399622 ], + [ 7.8175814, 47.4398908 ], + [ 7.8176338, 47.4398613 ], + [ 7.8173424, 47.4395831 ], + [ 7.8172689, 47.4395938 ], + [ 7.8172059, 47.4395081 ], + [ 7.8171752, 47.4394661 ], + [ 7.8171113, 47.4394567 ], + [ 7.8170944, 47.439384 ], + [ 7.8170082, 47.4393412 ], + [ 7.8164660999999995, 47.4392526 ], + [ 7.8158784, 47.439128 ], + [ 7.8158615000000005, 47.4390924 ], + [ 7.8157905, 47.4389436 ], + [ 7.8153926, 47.4387731 ], + [ 7.8151896, 47.4388057 ], + [ 7.8151405, 47.438888 ], + [ 7.8150697000000005, 47.4389906 ], + [ 7.8151384, 47.4390493 ], + [ 7.8150675, 47.4391626 ], + [ 7.8149728, 47.439281 ], + [ 7.8148964, 47.4394226 ], + [ 7.814805, 47.439495 ], + [ 7.8146637, 47.4395677 ], + [ 7.8146312, 47.4397351 ], + [ 7.8146049, 47.4400547 ], + [ 7.814654, 47.4402163 ], + [ 7.8146599, 47.4402568 ], + [ 7.8148034, 47.4404086 ], + [ 7.8146491000000005, 47.4406174 ], + [ 7.8144833, 47.4406564 ], + [ 7.8143205, 47.4408507 ], + [ 7.8142077, 47.4409752 ], + [ 7.813966, 47.4410783 ], + [ 7.8139576, 47.4413276 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns216", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Tenniker Fluh - Sangeten", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Tenniker Fluh - Sangeten", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Tenniker Fluh - Sangeten", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Tenniker Fluh - Sangeten", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8113325, 47.4961524 ], + [ 7.8108705, 47.4960947 ], + [ 7.8103584999999995, 47.4961604 ], + [ 7.8103828, 47.4962296 ], + [ 7.810403, 47.4962815 ], + [ 7.8106035, 47.4964239 ], + [ 7.8110669, 47.4968539 ], + [ 7.8111751, 47.4968192 ], + [ 7.8111618, 47.4968057 ], + [ 7.8111493, 47.4967918 ], + [ 7.8111377, 47.4967777 ], + [ 7.8111268, 47.4967632 ], + [ 7.8111166999999995, 47.4967485 ], + [ 7.8111075, 47.4967335 ], + [ 7.8110991, 47.4967183 ], + [ 7.8110916, 47.4967029 ], + [ 7.8110849, 47.4966873 ], + [ 7.8110791, 47.4966716 ], + [ 7.8110742, 47.4966557 ], + [ 7.8110702, 47.4966397 ], + [ 7.8110671, 47.4966236 ], + [ 7.8110649, 47.4966074 ], + [ 7.8110636, 47.4965912 ], + [ 7.8110633, 47.496575 ], + [ 7.8110638, 47.4965588 ], + [ 7.8110653, 47.4965426 ], + [ 7.8110677, 47.4965264 ], + [ 7.811071, 47.4965103 ], + [ 7.8110751, 47.4964943 ], + [ 7.8110802, 47.4964785 ], + [ 7.8110862, 47.4964627 ], + [ 7.811093, 47.4964472 ], + [ 7.8111007, 47.4964318 ], + [ 7.8111093, 47.4964167 ], + [ 7.8111186, 47.4964017 ], + [ 7.8111289, 47.496387 ], + [ 7.8111399, 47.4963726 ], + [ 7.8111518, 47.4963585 ], + [ 7.8113325, 47.4961524 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns290", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Uf der Höchi", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Uf der Höchi", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Uf der Höchi", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Uf der Höchi", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.336399, 47.4403374 ], + [ 7.3364299, 47.4401879 ], + [ 7.3363322, 47.4401766 ], + [ 7.3360968, 47.4400421 ], + [ 7.3358051, 47.4400711 ], + [ 7.335623, 47.4399765 ], + [ 7.3351888, 47.4399783 ], + [ 7.3347628, 47.4400802 ], + [ 7.3339276, 47.4400974 ], + [ 7.3333181, 47.439935 ], + [ 7.3328142, 47.4400515 ], + [ 7.3309056, 47.4398518 ], + [ 7.3298986, 47.439716 ], + [ 7.3293949, 47.4397604 ], + [ 7.3287336, 47.4390852 ], + [ 7.329081, 47.4376916 ], + [ 7.3290866, 47.4376691 ], + [ 7.3288136, 47.4375705 ], + [ 7.3285754, 47.4375214 ], + [ 7.3285815, 47.4376091 ], + [ 7.3285817, 47.4376097 ], + [ 7.3285818, 47.4376103 ], + [ 7.3285819, 47.4376109 ], + [ 7.3285821, 47.4376115 ], + [ 7.3285822, 47.4376121 ], + [ 7.3285823, 47.4376127 ], + [ 7.3285824, 47.4376134 ], + [ 7.3285824999999996, 47.437614 ], + [ 7.3285826, 47.4376146 ], + [ 7.3285826, 47.4376152 ], + [ 7.3285827, 47.4376158 ], + [ 7.3285827, 47.4376164 ], + [ 7.3285828, 47.4376171 ], + [ 7.3285828, 47.4376177 ], + [ 7.3285828, 47.4376183 ], + [ 7.3285828, 47.4376189 ], + [ 7.3285828, 47.4376195 ], + [ 7.3285828, 47.4376202 ], + [ 7.3285828, 47.4376208 ], + [ 7.3285828, 47.4376214 ], + [ 7.3285827, 47.437622 ], + [ 7.3285827, 47.4376226 ], + [ 7.3285826, 47.4376232 ], + [ 7.3285826, 47.4376239 ], + [ 7.3285824999999996, 47.4376245 ], + [ 7.3285824, 47.4376251 ], + [ 7.3285823, 47.4376257 ], + [ 7.3285822, 47.4376263 ], + [ 7.3285821, 47.4376269 ], + [ 7.3285819, 47.4376276 ], + [ 7.3285818, 47.4376282 ], + [ 7.3285817, 47.4376288 ], + [ 7.3285815, 47.4376294 ], + [ 7.3285813, 47.43763 ], + [ 7.3285812, 47.4376306 ], + [ 7.328581, 47.4376312 ], + [ 7.3285808, 47.4376318 ], + [ 7.3285806000000004, 47.4376324 ], + [ 7.3285804, 47.437633 ], + [ 7.3285801, 47.4376336 ], + [ 7.3285799, 47.4376342 ], + [ 7.3285796, 47.4376348 ], + [ 7.3285794, 47.4376354 ], + [ 7.3285791, 47.437636 ], + [ 7.3285788, 47.4376366 ], + [ 7.3285786, 47.4376372 ], + [ 7.3285783, 47.4376378 ], + [ 7.328578, 47.4376384 ], + [ 7.3285777, 47.4376389 ], + [ 7.3285773, 47.4376395 ], + [ 7.328577, 47.4376401 ], + [ 7.3285767, 47.4376407 ], + [ 7.3285763, 47.4376413 ], + [ 7.328576, 47.4376418 ], + [ 7.3285756, 47.4376424 ], + [ 7.3285752, 47.437643 ], + [ 7.3285749, 47.4376435 ], + [ 7.3285745, 47.4376441 ], + [ 7.3285741, 47.4376446 ], + [ 7.3285736, 47.4376452 ], + [ 7.3285732, 47.4376457 ], + [ 7.3285728, 47.4376463 ], + [ 7.3285724, 47.4376468 ], + [ 7.3285719, 47.4376474 ], + [ 7.3285715, 47.4376479 ], + [ 7.328571, 47.4376484 ], + [ 7.3285705, 47.437649 ], + [ 7.32857, 47.4376495 ], + [ 7.3285696, 47.43765 ], + [ 7.3285691, 47.4376505 ], + [ 7.3285686, 47.4376511 ], + [ 7.328568, 47.4376516 ], + [ 7.3285675, 47.4376521 ], + [ 7.328567, 47.4376526 ], + [ 7.3285664, 47.4376531 ], + [ 7.3285659, 47.4376536 ], + [ 7.3285653, 47.4376541 ], + [ 7.3285648, 47.4376546 ], + [ 7.3285642, 47.4376551 ], + [ 7.3285636, 47.4376556 ], + [ 7.328563, 47.4376561 ], + [ 7.3285624, 47.4376565 ], + [ 7.3285618, 47.437657 ], + [ 7.3285612, 47.4376575 ], + [ 7.3285606, 47.4376579 ], + [ 7.3285599, 47.4376584 ], + [ 7.3285593, 47.4376588 ], + [ 7.3285587, 47.4376593 ], + [ 7.328558, 47.4376597 ], + [ 7.3285574, 47.4376602 ], + [ 7.3285567, 47.4376606 ], + [ 7.328556, 47.437661 ], + [ 7.3285554, 47.4376615 ], + [ 7.3285547, 47.4376619 ], + [ 7.3285540000000005, 47.4376623 ], + [ 7.3285533, 47.4376627 ], + [ 7.3285526, 47.4376631 ], + [ 7.3285519, 47.4376635 ], + [ 7.3285511, 47.4376639 ], + [ 7.3285504, 47.4376643 ], + [ 7.3285497, 47.4376647 ], + [ 7.328549, 47.437665 ], + [ 7.3285482, 47.4376654 ], + [ 7.3285475, 47.4376658 ], + [ 7.3285467, 47.4376661 ], + [ 7.328546, 47.4376665 ], + [ 7.3285452, 47.4376668 ], + [ 7.3285444, 47.4376672 ], + [ 7.3285437, 47.4376675 ], + [ 7.3285429, 47.4376678 ], + [ 7.3285421, 47.4376682 ], + [ 7.3285413, 47.4376685 ], + [ 7.3285405, 47.4376688 ], + [ 7.3285397, 47.4376691 ], + [ 7.3285389, 47.4376694 ], + [ 7.3285381, 47.4376697 ], + [ 7.3285373, 47.43767 ], + [ 7.3285364, 47.4376703 ], + [ 7.3285356, 47.4376706 ], + [ 7.3285348, 47.4376708 ], + [ 7.3285339, 47.4376711 ], + [ 7.3285331, 47.4376714 ], + [ 7.3285323, 47.4376716 ], + [ 7.3285314, 47.4376719 ], + [ 7.3285306, 47.4376721 ], + [ 7.3285297, 47.4376723 ], + [ 7.3285289, 47.4376726 ], + [ 7.328528, 47.4376728 ], + [ 7.3285271, 47.437673 ], + [ 7.3285263, 47.4376732 ], + [ 7.3285254, 47.4376734 ], + [ 7.3285245, 47.4376736 ], + [ 7.3285236, 47.4376738 ], + [ 7.3285228, 47.437674 ], + [ 7.3285219, 47.4376741 ], + [ 7.328521, 47.4376743 ], + [ 7.3285201, 47.4376745 ], + [ 7.3285193, 47.4376746 ], + [ 7.3285185, 47.4376747 ], + [ 7.3285176, 47.4376748 ], + [ 7.3285168, 47.4376748 ], + [ 7.328516, 47.4376749 ], + [ 7.3285151, 47.437675 ], + [ 7.3285143, 47.437675 ], + [ 7.3285135, 47.4376751 ], + [ 7.3285127, 47.4376751 ], + [ 7.3285118, 47.4376752 ], + [ 7.328511, 47.4376752 ], + [ 7.3285102, 47.4376752 ], + [ 7.3285093, 47.4376753 ], + [ 7.3285085, 47.4376753 ], + [ 7.3285076, 47.4376753 ], + [ 7.3285067999999995, 47.4376753 ], + [ 7.328506, 47.4376753 ], + [ 7.3285051, 47.4376752 ], + [ 7.3285043, 47.4376752 ], + [ 7.3285035, 47.4376752 ], + [ 7.3285026, 47.4376752 ], + [ 7.3285018, 47.4376751 ], + [ 7.328501, 47.4376751 ], + [ 7.3285001, 47.437675 ], + [ 7.3284993, 47.437675 ], + [ 7.3284985, 47.4376749 ], + [ 7.3284977, 47.4376748 ], + [ 7.3284968, 47.4376747 ], + [ 7.328496, 47.4376746 ], + [ 7.3284952, 47.4376746 ], + [ 7.3284944, 47.4376745 ], + [ 7.3284935, 47.4376743 ], + [ 7.3284927, 47.4376742 ], + [ 7.3284919, 47.4376741 ], + [ 7.3284911, 47.437674 ], + [ 7.3284903, 47.4376738 ], + [ 7.3284895, 47.4376737 ], + [ 7.3284887, 47.4376736 ], + [ 7.3284879, 47.4376734 ], + [ 7.3284871, 47.4376733 ], + [ 7.3284863, 47.4376731 ], + [ 7.3284855, 47.4376729 ], + [ 7.3284847, 47.4376727 ], + [ 7.3284839, 47.4376725 ], + [ 7.3284831, 47.4376724 ], + [ 7.3284823, 47.4376722 ], + [ 7.3284815, 47.4376719 ], + [ 7.3284808, 47.4376717 ], + [ 7.32848, 47.4376715 ], + [ 7.3284792, 47.4376713 ], + [ 7.3284785, 47.4376711 ], + [ 7.3284777, 47.4376708 ], + [ 7.3284769, 47.4376706 ], + [ 7.3284762, 47.4376704 ], + [ 7.3284754, 47.4376701 ], + [ 7.3284747, 47.4376698 ], + [ 7.328474, 47.4376696 ], + [ 7.3284732, 47.4376693 ], + [ 7.3284725, 47.437669 ], + [ 7.3284718, 47.4376687 ], + [ 7.3284711, 47.4376685 ], + [ 7.3284703, 47.4376682 ], + [ 7.3284696, 47.4376679 ], + [ 7.3284689, 47.4376676 ], + [ 7.3284682, 47.4376673 ], + [ 7.3284675, 47.437666899999996 ], + [ 7.3284669000000005, 47.4376666 ], + [ 7.3284662, 47.4376663 ], + [ 7.3284655, 47.4376659 ], + [ 7.3283667999999995, 47.4375866 ], + [ 7.3282708, 47.4375141 ], + [ 7.3281083, 47.4374965 ], + [ 7.3283488, 47.4377809 ], + [ 7.3283501, 47.4377832 ], + [ 7.3283514, 47.4377856 ], + [ 7.3283527, 47.437788 ], + [ 7.328354, 47.4377904 ], + [ 7.3283553, 47.4377928 ], + [ 7.3283565, 47.4377951 ], + [ 7.3283578, 47.4377975 ], + [ 7.3283591, 47.4377999 ], + [ 7.3283603, 47.4378023 ], + [ 7.3283615, 47.4378047 ], + [ 7.3283628, 47.4378071 ], + [ 7.328364, 47.4378095 ], + [ 7.3283652, 47.4378119 ], + [ 7.3283664, 47.4378143 ], + [ 7.3283676, 47.4378167 ], + [ 7.3283688, 47.4378192 ], + [ 7.3283699, 47.4378216 ], + [ 7.3283711, 47.437824 ], + [ 7.3283722000000004, 47.4378264 ], + [ 7.3283734, 47.4378288 ], + [ 7.3283745, 47.4378312 ], + [ 7.3283756, 47.4378337 ], + [ 7.3283768, 47.4378361 ], + [ 7.3283779, 47.4378385 ], + [ 7.328379, 47.4378409 ], + [ 7.32838, 47.4378434 ], + [ 7.3283811, 47.4378458 ], + [ 7.3283822, 47.4378482 ], + [ 7.3283832, 47.4378506 ], + [ 7.3283843, 47.4378531 ], + [ 7.3283853, 47.4378555 ], + [ 7.3283863, 47.4378579 ], + [ 7.3283873, 47.4378603 ], + [ 7.3283883, 47.4378627 ], + [ 7.3283892999999996, 47.4378651 ], + [ 7.3283903, 47.4378675 ], + [ 7.3283912, 47.43787 ], + [ 7.3283922, 47.4378724 ], + [ 7.3283932, 47.4378748 ], + [ 7.3283941, 47.4378772 ], + [ 7.328395, 47.4378797 ], + [ 7.328396, 47.4378821 ], + [ 7.3283968999999995, 47.4378845 ], + [ 7.3283978, 47.437887 ], + [ 7.3283987, 47.4378894 ], + [ 7.3283996, 47.4378918 ], + [ 7.3284004, 47.437894299999996 ], + [ 7.3284013, 47.4378967 ], + [ 7.3284021, 47.4378992 ], + [ 7.328403, 47.437901600000004 ], + [ 7.3284038, 47.437904 ], + [ 7.3284047, 47.4379065 ], + [ 7.3284055, 47.4379089 ], + [ 7.3284063, 47.4379114 ], + [ 7.3284071, 47.4379138 ], + [ 7.3284079, 47.4379163 ], + [ 7.3284087, 47.4379187 ], + [ 7.328409, 47.4379199 ], + [ 7.3284093, 47.437921 ], + [ 7.3284095, 47.4379222 ], + [ 7.3284098, 47.4379233 ], + [ 7.3284101, 47.4379245 ], + [ 7.3284104, 47.4379256 ], + [ 7.3284106, 47.4379268 ], + [ 7.3284108, 47.437928 ], + [ 7.3284111, 47.4379291 ], + [ 7.3284113, 47.4379303 ], + [ 7.3284115, 47.4379314 ], + [ 7.3284117, 47.4379326 ], + [ 7.3284119, 47.4379338 ], + [ 7.3284120999999995, 47.4379349 ], + [ 7.3284122, 47.4379361 ], + [ 7.3284124, 47.4379373 ], + [ 7.3284125, 47.4379384 ], + [ 7.3284127, 47.4379396 ], + [ 7.3284128, 47.4379407 ], + [ 7.3284129, 47.4379419 ], + [ 7.328413, 47.4379431 ], + [ 7.3284131, 47.4379442 ], + [ 7.3284132, 47.4379454 ], + [ 7.3284133, 47.4379466 ], + [ 7.3284134, 47.4379477 ], + [ 7.3284134, 47.4379489 ], + [ 7.3284135, 47.4379501 ], + [ 7.3284135, 47.4379512 ], + [ 7.3284135, 47.4379524 ], + [ 7.3284135, 47.4379536 ], + [ 7.3284136, 47.4379547 ], + [ 7.3284135, 47.4379559 ], + [ 7.3284135, 47.4379571 ], + [ 7.3284135, 47.4379583 ], + [ 7.3284135, 47.4379594 ], + [ 7.3284134, 47.4379606 ], + [ 7.3284134, 47.4379618 ], + [ 7.3284133, 47.4379629 ], + [ 7.3284133, 47.4379641 ], + [ 7.3284132, 47.4379652 ], + [ 7.3284131, 47.4379664 ], + [ 7.328413, 47.4379676 ], + [ 7.3284129, 47.4379687 ], + [ 7.3284128, 47.4379699 ], + [ 7.3284126, 47.437971 ], + [ 7.3284125, 47.4379722 ], + [ 7.3284124, 47.4379733 ], + [ 7.3284122, 47.4379745 ], + [ 7.328412, 47.4379757 ], + [ 7.3284118, 47.4379768 ], + [ 7.3284117, 47.437978 ], + [ 7.3284115, 47.4379791 ], + [ 7.3284113, 47.4379803 ], + [ 7.328411, 47.4379814 ], + [ 7.3284108, 47.4379826 ], + [ 7.3284106, 47.4379837 ], + [ 7.3284103, 47.4379849 ], + [ 7.3284101, 47.437986 ], + [ 7.3284098, 47.4379872 ], + [ 7.3284095, 47.4379883 ], + [ 7.3284093, 47.4379895 ], + [ 7.328409, 47.4379906 ], + [ 7.3284087, 47.4379918 ], + [ 7.3284084, 47.4379929 ], + [ 7.328408, 47.437994 ], + [ 7.3284077, 47.4379952 ], + [ 7.3284074, 47.4379963 ], + [ 7.328407, 47.4379975 ], + [ 7.3284066, 47.4379986 ], + [ 7.3284063, 47.4379997 ], + [ 7.3284059, 47.4380009 ], + [ 7.3284055, 47.438002 ], + [ 7.3284051, 47.4380031 ], + [ 7.3284047, 47.4380042 ], + [ 7.3284043, 47.4380054 ], + [ 7.3284038, 47.4380065 ], + [ 7.3284034, 47.4380076 ], + [ 7.328403, 47.4380087 ], + [ 7.3284021, 47.4380109 ], + [ 7.3284012, 47.4380131 ], + [ 7.3284003, 47.4380152 ], + [ 7.3283994, 47.4380174 ], + [ 7.3283985, 47.4380195 ], + [ 7.3283976, 47.4380217 ], + [ 7.3283967, 47.4380238 ], + [ 7.3283958, 47.438026 ], + [ 7.3283948, 47.4380281 ], + [ 7.3283939, 47.4380302 ], + [ 7.3283929, 47.4380324 ], + [ 7.3283919, 47.4380345 ], + [ 7.328391, 47.4380367 ], + [ 7.32839, 47.4380388 ], + [ 7.328389, 47.4380409 ], + [ 7.328388, 47.4380431 ], + [ 7.3283869, 47.4380452 ], + [ 7.3283859, 47.4380473 ], + [ 7.3283849, 47.4380494 ], + [ 7.3283838, 47.4380516 ], + [ 7.3283828, 47.4380537 ], + [ 7.3283816999999996, 47.4380558 ], + [ 7.3283806, 47.4380579 ], + [ 7.3283796, 47.43806 ], + [ 7.3283785, 47.4380622 ], + [ 7.3283774, 47.4380643 ], + [ 7.3283762, 47.4380664 ], + [ 7.3283751, 47.4380685 ], + [ 7.328374, 47.4380706 ], + [ 7.3283728, 47.4380727 ], + [ 7.3283717, 47.4380748 ], + [ 7.3283705, 47.4380769 ], + [ 7.3283694, 47.438079 ], + [ 7.3283681, 47.4380813 ], + [ 7.3283667999999995, 47.4380835 ], + [ 7.3283655, 47.4380858 ], + [ 7.3283642, 47.4380881 ], + [ 7.3283629, 47.4380904 ], + [ 7.3283616, 47.4380926 ], + [ 7.3283603, 47.4380949 ], + [ 7.3283589, 47.4380971 ], + [ 7.3283576, 47.4380994 ], + [ 7.3283562, 47.4381017 ], + [ 7.3283549, 47.4381039 ], + [ 7.3283535, 47.4381062 ], + [ 7.3283521, 47.4381084 ], + [ 7.3283507, 47.4381107 ], + [ 7.3283493, 47.4381129 ], + [ 7.3283479, 47.4381151 ], + [ 7.3283465, 47.4381174 ], + [ 7.3283451, 47.4381196 ], + [ 7.3283436, 47.4381219 ], + [ 7.3283422, 47.4381241 ], + [ 7.3283408, 47.4381263 ], + [ 7.3283393, 47.4381285 ], + [ 7.3283378, 47.4381308 ], + [ 7.3283363, 47.4381331 ], + [ 7.3283348, 47.4381354 ], + [ 7.3283332, 47.4381377 ], + [ 7.3283317, 47.43814 ], + [ 7.3283301, 47.4381423 ], + [ 7.3283285, 47.4381446 ], + [ 7.3283269, 47.4381469 ], + [ 7.3283253, 47.4381491 ], + [ 7.3283237, 47.4381514 ], + [ 7.3283221, 47.4381537 ], + [ 7.3283205, 47.438156 ], + [ 7.3283189, 47.4381583 ], + [ 7.3283172, 47.4381605 ], + [ 7.3283156, 47.4381628 ], + [ 7.3283139, 47.4381651 ], + [ 7.3283123, 47.4381673 ], + [ 7.3283106, 47.4381696 ], + [ 7.3283089, 47.4381718 ], + [ 7.3283072, 47.4381741 ], + [ 7.3283055, 47.4381763 ], + [ 7.3283038, 47.4381786 ], + [ 7.3283021, 47.4381808 ], + [ 7.3283004, 47.4381831 ], + [ 7.3282986, 47.4381853 ], + [ 7.3282964, 47.438188 ], + [ 7.3282942, 47.4381907 ], + [ 7.328292, 47.4381934 ], + [ 7.3282897, 47.4381961 ], + [ 7.3282875, 47.4381988 ], + [ 7.3282852, 47.4382015 ], + [ 7.328283, 47.4382041 ], + [ 7.3282807, 47.4382068 ], + [ 7.3282784, 47.4382095 ], + [ 7.3282761, 47.4382122 ], + [ 7.3282738, 47.4382148 ], + [ 7.3282715, 47.4382175 ], + [ 7.3282692, 47.4382202 ], + [ 7.3282669, 47.4382228 ], + [ 7.3282646, 47.4382255 ], + [ 7.3282622, 47.4382281 ], + [ 7.3282599, 47.4382308 ], + [ 7.3282575, 47.4382334 ], + [ 7.3282552, 47.438236 ], + [ 7.3282528, 47.4382387 ], + [ 7.3282504, 47.4382414 ], + [ 7.328248, 47.4382441 ], + [ 7.3282454999999995, 47.4382467 ], + [ 7.3282431, 47.4382494 ], + [ 7.3282406, 47.4382521 ], + [ 7.3282382, 47.4382547 ], + [ 7.3282357, 47.4382574 ], + [ 7.3282332, 47.4382601 ], + [ 7.3282307, 47.4382627 ], + [ 7.3282282, 47.4382654 ], + [ 7.3282257, 47.438268 ], + [ 7.3282232, 47.4382707 ], + [ 7.3282207, 47.4382733 ], + [ 7.3282181, 47.438276 ], + [ 7.3282156, 47.4382786 ], + [ 7.3282131, 47.4382813 ], + [ 7.3282105, 47.4382839 ], + [ 7.3282079, 47.4382865 ], + [ 7.3281641, 47.4383328 ], + [ 7.3281624, 47.4383346 ], + [ 7.3281607, 47.4383364 ], + [ 7.3281591, 47.4383381 ], + [ 7.3281575, 47.4383399 ], + [ 7.3281558, 47.4383417 ], + [ 7.3281542, 47.4383435 ], + [ 7.3281526, 47.4383453 ], + [ 7.328151, 47.4383472 ], + [ 7.3281494, 47.438349 ], + [ 7.3281478, 47.4383508 ], + [ 7.3281462, 47.4383526 ], + [ 7.3281446, 47.4383544 ], + [ 7.328143, 47.4383562 ], + [ 7.3281415, 47.4383581 ], + [ 7.3281399, 47.4383599 ], + [ 7.3281384, 47.4383617 ], + [ 7.3281369, 47.4383636 ], + [ 7.3281353, 47.4383654 ], + [ 7.3281338, 47.4383672 ], + [ 7.3281323, 47.4383691 ], + [ 7.3281308, 47.438371 ], + [ 7.3281292, 47.4383729 ], + [ 7.3281277, 47.4383748 ], + [ 7.3281261, 47.4383767 ], + [ 7.3281246, 47.4383786 ], + [ 7.3281231, 47.4383806 ], + [ 7.3281216, 47.4383825 ], + [ 7.3281201, 47.4383844 ], + [ 7.3281186, 47.4383864 ], + [ 7.3281172, 47.4383883 ], + [ 7.3281157, 47.4383902 ], + [ 7.3281143, 47.4383922 ], + [ 7.3281127999999995, 47.4383941 ], + [ 7.3281114, 47.4383961 ], + [ 7.3281099, 47.438398 ], + [ 7.3281085, 47.4384 ], + [ 7.3281071, 47.4384019 ], + [ 7.3281057, 47.4384039 ], + [ 7.3281043, 47.4384058 ], + [ 7.3281029, 47.4384078 ], + [ 7.3281015, 47.4384098 ], + [ 7.3280999, 47.4384118 ], + [ 7.3280983, 47.4384139 ], + [ 7.3280967, 47.4384159 ], + [ 7.3280951, 47.438418 ], + [ 7.3280935, 47.4384201 ], + [ 7.3280919, 47.4384221 ], + [ 7.3280903, 47.4384242 ], + [ 7.3280887, 47.4384263 ], + [ 7.3280871, 47.4384284 ], + [ 7.3280856, 47.4384305 ], + [ 7.328084, 47.4384325 ], + [ 7.3280825, 47.4384346 ], + [ 7.328081, 47.4384367 ], + [ 7.3280795, 47.4384388 ], + [ 7.3280779, 47.4384409 ], + [ 7.3280764, 47.438443 ], + [ 7.3280749, 47.4384451 ], + [ 7.3280734, 47.4384472 ], + [ 7.328072, 47.4384493 ], + [ 7.3280705, 47.4384515 ], + [ 7.328069, 47.4384536 ], + [ 7.3280676, 47.4384557 ], + [ 7.3280662, 47.4384578 ], + [ 7.3280648, 47.4384599 ], + [ 7.3280633, 47.438462 ], + [ 7.3280619, 47.4384641 ], + [ 7.3280605, 47.4384662 ], + [ 7.3280591, 47.4384683 ], + [ 7.3280577000000005, 47.4384705 ], + [ 7.3280564, 47.4384726 ], + [ 7.328055, 47.4384747 ], + [ 7.3280536, 47.4384769 ], + [ 7.3280522999999995, 47.438479 ], + [ 7.328051, 47.4384811 ], + [ 7.3280496, 47.4384833 ], + [ 7.3280483, 47.4384854 ], + [ 7.328047, 47.4384875 ], + [ 7.3280457, 47.4384897 ], + [ 7.3280444, 47.4384918 ], + [ 7.3280423, 47.4384961 ], + [ 7.3280402, 47.4385003 ], + [ 7.3280381, 47.4385045 ], + [ 7.328036, 47.4385087 ], + [ 7.328034, 47.4385129 ], + [ 7.3280319, 47.4385172 ], + [ 7.3280298, 47.4385214 ], + [ 7.3280278, 47.4385256 ], + [ 7.3280256999999995, 47.4385299 ], + [ 7.3280237, 47.4385341 ], + [ 7.3280217, 47.4385383 ], + [ 7.3280197, 47.4385426 ], + [ 7.3280177, 47.4385468 ], + [ 7.3280157, 47.4385511 ], + [ 7.3280138, 47.4385552 ], + [ 7.3280118, 47.4385594 ], + [ 7.3280099, 47.4385636 ], + [ 7.328008, 47.4385677 ], + [ 7.328006, 47.4385719 ], + [ 7.3280041, 47.4385761 ], + [ 7.3280022, 47.4385803 ], + [ 7.3280003, 47.4385845 ], + [ 7.3279985, 47.4385886 ], + [ 7.3279966, 47.4385928 ], + [ 7.3279947, 47.438597 ], + [ 7.3279929, 47.4386012 ], + [ 7.327991, 47.4386054 ], + [ 7.3279892, 47.4386096 ], + [ 7.3279873, 47.4386138 ], + [ 7.3279864, 47.4386158 ], + [ 7.3279855, 47.4386179 ], + [ 7.3279845, 47.4386199 ], + [ 7.3279836, 47.438622 ], + [ 7.3279827, 47.4386241 ], + [ 7.3279818, 47.4386261 ], + [ 7.3279809, 47.4386282 ], + [ 7.32798, 47.4386302 ], + [ 7.3279792, 47.4386323 ], + [ 7.3279783, 47.4386344 ], + [ 7.3279774, 47.4386364 ], + [ 7.3279766, 47.4386385 ], + [ 7.3279757, 47.4386406 ], + [ 7.3279749, 47.4386426 ], + [ 7.3279741, 47.4386447 ], + [ 7.3279733, 47.4386468 ], + [ 7.3279725, 47.4386489 ], + [ 7.3279717, 47.4386509 ], + [ 7.3279709, 47.4386531 ], + [ 7.3279701, 47.4386552 ], + [ 7.3279693, 47.4386573 ], + [ 7.3279686, 47.4386594 ], + [ 7.3279678, 47.4386615 ], + [ 7.3279671, 47.4386636 ], + [ 7.3279663, 47.4386657 ], + [ 7.3279656, 47.4386679 ], + [ 7.3279649, 47.43867 ], + [ 7.3279642, 47.4386721 ], + [ 7.3279635, 47.4386742 ], + [ 7.3279628, 47.4386764 ], + [ 7.3279621, 47.4386785 ], + [ 7.3279613999999995, 47.4386806 ], + [ 7.3279608, 47.4386828 ], + [ 7.3279601, 47.4386849 ], + [ 7.3279595, 47.438687 ], + [ 7.3279588, 47.4386892 ], + [ 7.3279582, 47.4386913 ], + [ 7.3279575999999995, 47.4386934 ], + [ 7.3279571, 47.4386951 ], + [ 7.3279566, 47.4386967 ], + [ 7.3279561, 47.4386983 ], + [ 7.3279557, 47.4387 ], + [ 7.3279552, 47.4387016 ], + [ 7.3279547, 47.4387032 ], + [ 7.3279543, 47.4387049 ], + [ 7.3279539, 47.4387065 ], + [ 7.3279534, 47.4387082 ], + [ 7.327953, 47.4387098 ], + [ 7.3279526, 47.4387114 ], + [ 7.3279522, 47.4387131 ], + [ 7.3279518, 47.4387147 ], + [ 7.3279515, 47.4387164 ], + [ 7.3279511, 47.438718 ], + [ 7.3279507, 47.4387197 ], + [ 7.3279504, 47.4387213 ], + [ 7.32795, 47.438723 ], + [ 7.3279497, 47.4387246 ], + [ 7.3279494, 47.4387262 ], + [ 7.3279491, 47.4387279 ], + [ 7.3279488, 47.4387296 ], + [ 7.3279485, 47.4387312 ], + [ 7.3279482, 47.4387329 ], + [ 7.3279479, 47.4387345 ], + [ 7.3279477, 47.4387362 ], + [ 7.3279474, 47.4387378 ], + [ 7.3279471, 47.4387395 ], + [ 7.3279469, 47.4387412 ], + [ 7.3279467, 47.4387429 ], + [ 7.3279465, 47.4387446 ], + [ 7.3279463, 47.4387463 ], + [ 7.3279461, 47.438748 ], + [ 7.3279459, 47.4387497 ], + [ 7.3279457, 47.4387514 ], + [ 7.3279455, 47.4387531 ], + [ 7.3279454, 47.4387548 ], + [ 7.3279452, 47.4387565 ], + [ 7.3279451, 47.4387582 ], + [ 7.3279449, 47.4387599 ], + [ 7.3279448, 47.4387616 ], + [ 7.3279447, 47.4387633 ], + [ 7.3279446, 47.438765 ], + [ 7.3279445, 47.4387667 ], + [ 7.3279445, 47.4387684 ], + [ 7.3279444, 47.4387701 ], + [ 7.3279443, 47.4387718 ], + [ 7.3279443, 47.4387735 ], + [ 7.3279443, 47.4387752 ], + [ 7.3279442, 47.4387769 ], + [ 7.3279442, 47.4387786 ], + [ 7.3279442, 47.4387803 ], + [ 7.3279442, 47.438782 ], + [ 7.3279442, 47.4387837 ], + [ 7.3279471, 47.4388378 ], + [ 7.3279482, 47.4388652 ], + [ 7.3279483, 47.4388666 ], + [ 7.3279484, 47.438868 ], + [ 7.3279485, 47.4388695 ], + [ 7.3279486, 47.4388709 ], + [ 7.3279487, 47.4388723 ], + [ 7.3279488, 47.4388738 ], + [ 7.3279489, 47.4388752 ], + [ 7.3279491, 47.4388767 ], + [ 7.3279492, 47.4388781 ], + [ 7.3279494, 47.4388795 ], + [ 7.3279496, 47.438881 ], + [ 7.3279497, 47.4388824 ], + [ 7.3279499, 47.4388838 ], + [ 7.3279501, 47.4388853 ], + [ 7.3279503, 47.4388867 ], + [ 7.3279506, 47.4388881 ], + [ 7.3279508, 47.4388896 ], + [ 7.327951, 47.438891 ], + [ 7.3279513, 47.4388924 ], + [ 7.3279515, 47.4388938 ], + [ 7.3279518, 47.4388953 ], + [ 7.3279521, 47.4388967 ], + [ 7.3279524, 47.4388981 ], + [ 7.3279527, 47.4388996 ], + [ 7.327953, 47.438901 ], + [ 7.3279533, 47.4389024 ], + [ 7.3279536, 47.4389038 ], + [ 7.327954, 47.4389052 ], + [ 7.3279543, 47.4389066 ], + [ 7.3279547, 47.438908 ], + [ 7.327955, 47.4389094 ], + [ 7.3279554000000005, 47.4389108 ], + [ 7.3279558, 47.4389122 ], + [ 7.3279562, 47.4389135 ], + [ 7.3279566, 47.4389149 ], + [ 7.327957, 47.4389163 ], + [ 7.3279574, 47.4389177 ], + [ 7.3279578, 47.4389191 ], + [ 7.3279582, 47.4389204 ], + [ 7.3279587, 47.4389218 ], + [ 7.3279592000000005, 47.4389232 ], + [ 7.3279596, 47.4389245 ], + [ 7.3279601, 47.4389259 ], + [ 7.3279606, 47.4389273 ], + [ 7.3279611, 47.4389287 ], + [ 7.3279616, 47.43893 ], + [ 7.3279621, 47.4389314 ], + [ 7.3279626, 47.4389327 ], + [ 7.3279631, 47.4389341 ], + [ 7.3279637, 47.4389355 ], + [ 7.3279642, 47.4389368 ], + [ 7.3279647, 47.4389382 ], + [ 7.3279769, 47.4389747 ], + [ 7.3280142, 47.4390855 ], + [ 7.3280432, 47.4391563 ], + [ 7.3280538, 47.4391733 ], + [ 7.328177, 47.4393522 ], + [ 7.328023, 47.4397208 ], + [ 7.3282345, 47.4400047 ], + [ 7.3283122, 47.4400739 ], + [ 7.3280513, 47.4402228 ], + [ 7.327927, 47.440292 ], + [ 7.3287143, 47.4408903 ], + [ 7.3286664, 47.4409241 ], + [ 7.3287543, 47.4409142 ], + [ 7.3288673, 47.4409282 ], + [ 7.3289670000000005, 47.4409453 ], + [ 7.3290075, 47.4409522 ], + [ 7.3292363, 47.4410509 ], + [ 7.3293061, 47.441081 ], + [ 7.3294546, 47.4411727 ], + [ 7.3294587, 47.4411752 ], + [ 7.3296762, 47.4413092 ], + [ 7.329724, 47.4413703 ], + [ 7.3298308, 47.4416302 ], + [ 7.3298399, 47.4416339 ], + [ 7.3298734, 47.4416473 ], + [ 7.3301477, 47.4417091 ], + [ 7.3303469, 47.4417501 ], + [ 7.3303571, 47.4417522 ], + [ 7.3304365, 47.4417422 ], + [ 7.3306162, 47.4416016 ], + [ 7.3307164, 47.4415518 ], + [ 7.3307877999999995, 47.4415163 ], + [ 7.3310166, 47.4414024 ], + [ 7.3312426, 47.4412884 ], + [ 7.3314376, 47.4412403 ], + [ 7.3315947, 47.4412301 ], + [ 7.3317082, 47.4412871 ], + [ 7.3319012, 47.4413161 ], + [ 7.3320624, 47.4413033 ], + [ 7.3322742, 47.4412394 ], + [ 7.3323481, 47.4412172 ], + [ 7.3324705, 47.4411406 ], + [ 7.3325724, 47.4410405 ], + [ 7.3326007, 47.4410381 ], + [ 7.3328729, 47.4410156 ], + [ 7.3329456, 47.4410378 ], + [ 7.3331292999999995, 47.4410351 ], + [ 7.333289, 47.4410446 ], + [ 7.3334202, 47.4410386 ], + [ 7.3335033, 47.4410363 ], + [ 7.3336493, 47.4410195 ], + [ 7.3338393, 47.4409913 ], + [ 7.3341914, 47.4409645 ], + [ 7.3342817, 47.4409581 ], + [ 7.334308, 47.4409047 ], + [ 7.3343061, 47.440891 ], + [ 7.3343514, 47.4408425 ], + [ 7.3343792, 47.4408318 ], + [ 7.3344346, 47.4408237 ], + [ 7.3344546, 47.4408457 ], + [ 7.3344865, 47.4408706 ], + [ 7.3346540000000005, 47.4408494 ], + [ 7.3348258, 47.4408249 ], + [ 7.3349687, 47.4408022 ], + [ 7.3351711, 47.4407839 ], + [ 7.3353539, 47.4407594 ], + [ 7.335514, 47.4406319 ], + [ 7.3357494, 47.4405294 ], + [ 7.3359664, 47.4404333 ], + [ 7.3366261999999995, 47.4405394 ], + [ 7.3367048, 47.4404215 ], + [ 7.336399, 47.4403374 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr085", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Neumühli", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Neumühli", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Neumühli", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Neumühli", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7896373, 47.4415502 ], + [ 7.7896415, 47.4414017 ], + [ 7.7893432, 47.4413752 ], + [ 7.7889623, 47.441417 ], + [ 7.7889195, 47.4414297 ], + [ 7.7886931, 47.4414637 ], + [ 7.7886211, 47.4415782 ], + [ 7.7888769, 47.4416863 ], + [ 7.788953, 47.4417185 ], + [ 7.7889095, 47.4419246 ], + [ 7.7894881, 47.4421517 ], + [ 7.7898177, 47.4423073 ], + [ 7.7903342, 47.4425407 ], + [ 7.7905073, 47.4426434 ], + [ 7.7892579, 47.4429646 ], + [ 7.7892532, 47.4429616 ], + [ 7.7891268, 47.4429191 ], + [ 7.7889382, 47.4428947 ], + [ 7.7887246999999995, 47.4428672 ], + [ 7.7886629, 47.4428544 ], + [ 7.7886556, 47.442853 ], + [ 7.7884312, 47.4428067 ], + [ 7.7886182999999996, 47.4433152 ], + [ 7.7887771, 47.4436696 ], + [ 7.7888786, 47.443896 ], + [ 7.7888872, 47.4439152 ], + [ 7.7884602, 47.4440364 ], + [ 7.7884391, 47.4440424 ], + [ 7.7885083, 47.4441386 ], + [ 7.788526, 47.4441631 ], + [ 7.7886573, 47.4443456 ], + [ 7.7886668, 47.4443625 ], + [ 7.7887439, 47.4445001 ], + [ 7.7890771999999995, 47.4450953 ], + [ 7.7892426, 47.4454245 ], + [ 7.7893137, 47.4455547 ], + [ 7.7893414, 47.4455867 ], + [ 7.7893681, 47.4456178 ], + [ 7.7894369999999995, 47.4455961 ], + [ 7.7895664, 47.4455553 ], + [ 7.789617, 47.4455392 ], + [ 7.7897164, 47.4455077 ], + [ 7.7898598, 47.4454621 ], + [ 7.7901948999999995, 47.4453504 ], + [ 7.790214, 47.445344 ], + [ 7.7903632, 47.4453218 ], + [ 7.7903842999999995, 47.4453403 ], + [ 7.7904633, 47.4454098 ], + [ 7.790515, 47.4454341 ], + [ 7.7905717, 47.4454379 ], + [ 7.7908208, 47.4453527 ], + [ 7.7908914, 47.4453285 ], + [ 7.7909169, 47.4452988 ], + [ 7.7909388, 47.4452734 ], + [ 7.7909415, 47.445259 ], + [ 7.7910562, 47.4445559 ], + [ 7.7914249, 47.4445941 ], + [ 7.791503, 47.4446026 ], + [ 7.7915683, 47.444608 ], + [ 7.791568, 47.4446439 ], + [ 7.7915863, 47.4446411 ], + [ 7.791639, 47.444629 ], + [ 7.7916763, 47.4446205 ], + [ 7.7916936, 47.4446141 ], + [ 7.791711, 47.444608 ], + [ 7.7917186, 47.4446048 ], + [ 7.7917254, 47.444601 ], + [ 7.7917314, 47.4445966 ], + [ 7.7917364, 47.4445917 ], + [ 7.7917514, 47.4445747 ], + [ 7.7917667999999995, 47.4445579 ], + [ 7.7917827, 47.4445414 ], + [ 7.7917991, 47.4445251 ], + [ 7.7918312, 47.444495 ], + [ 7.7918649, 47.4444657 ], + [ 7.7918777, 47.4444562 ], + [ 7.792234, 47.444177 ], + [ 7.7922566, 47.4441593 ], + [ 7.792499, 47.443951 ], + [ 7.7925164, 47.4439376 ], + [ 7.7925812, 47.4438873 ], + [ 7.7926055, 47.4438711 ], + [ 7.7926305, 47.4438554 ], + [ 7.7926563, 47.4438402 ], + [ 7.7926828, 47.4438257 ], + [ 7.7927099, 47.4438117 ], + [ 7.7927378, 47.4437983 ], + [ 7.7927487, 47.4437939 ], + [ 7.7927603, 47.4437903 ], + [ 7.7927722, 47.4437874 ], + [ 7.7927846, 47.4437853 ], + [ 7.7927972, 47.4437841 ], + [ 7.7928099, 47.4437836 ], + [ 7.7928396, 47.4437842 ], + [ 7.7928692, 47.4437856 ], + [ 7.7928988, 47.443788 ], + [ 7.7929281, 47.4437913 ], + [ 7.7929572, 47.4437954 ], + [ 7.792986, 47.4438004 ], + [ 7.7930095999999995, 47.4438075 ], + [ 7.7930122, 47.4438017 ], + [ 7.7932909, 47.4436406 ], + [ 7.7934888, 47.4435262 ], + [ 7.7934955, 47.4435245 ], + [ 7.7935689, 47.4435059 ], + [ 7.7935281, 47.4434978 ], + [ 7.7934996, 47.4434921 ], + [ 7.7935759000000004, 47.4432521 ], + [ 7.7937028999999995, 47.4432266 ], + [ 7.7937864, 47.4431794 ], + [ 7.7937995, 47.4430302 ], + [ 7.7936299, 47.4430917 ], + [ 7.7935182, 47.4430183 ], + [ 7.7933266, 47.4427784 ], + [ 7.7931351, 47.4425384 ], + [ 7.7930630999999995, 47.4424189 ], + [ 7.7930231, 47.4422934 ], + [ 7.7930165, 47.4422095 ], + [ 7.792964, 47.442214 ], + [ 7.7928947, 47.4421366 ], + [ 7.7928664, 47.4419858 ], + [ 7.7928949, 47.4419267 ], + [ 7.7926545, 47.4416947 ], + [ 7.7925346, 47.4415372 ], + [ 7.792558, 47.4414441 ], + [ 7.792712, 47.4414991 ], + [ 7.7927237, 47.4415033 ], + [ 7.7927472, 47.4414747 ], + [ 7.7928508, 47.4413486 ], + [ 7.7929689, 47.4412047 ], + [ 7.7930265, 47.4411346 ], + [ 7.7928059, 47.4409946 ], + [ 7.7925114, 47.4408893 ], + [ 7.7925091, 47.4408885 ], + [ 7.7924957, 47.4408837 ], + [ 7.7924915, 47.4408813 ], + [ 7.7922087, 47.4407238 ], + [ 7.7921171000000005, 47.4406727 ], + [ 7.7918481, 47.4404614 ], + [ 7.791825, 47.4404456 ], + [ 7.7916089, 47.4402979 ], + [ 7.7915631, 47.4403005 ], + [ 7.7914156, 47.4403091 ], + [ 7.7914102, 47.4403094 ], + [ 7.7914027, 47.4403183 ], + [ 7.7912854, 47.4404583 ], + [ 7.7912994, 47.4407287 ], + [ 7.7912909, 47.4407419 ], + [ 7.7912438, 47.4408153 ], + [ 7.7913906, 47.4407905 ], + [ 7.7916009, 47.4407551 ], + [ 7.7916993, 47.4409415 ], + [ 7.7918178000000005, 47.4412395 ], + [ 7.7919436, 47.4412958 ], + [ 7.7918696, 47.4414359 ], + [ 7.7916317, 47.4416104 ], + [ 7.7911259, 47.4417635 ], + [ 7.7904627, 47.4417093 ], + [ 7.7901294, 47.4416382 ], + [ 7.7898671, 47.441598 ], + [ 7.7897836, 47.4416158 ], + [ 7.7897602, 47.4415654 ], + [ 7.7896373, 47.4415502 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr117", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Menschegrund", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Menschegrund", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Menschegrund", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Menschegrund", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7926576, 47.4846848 ], + [ 7.7918587, 47.4841056 ], + [ 7.7917745, 47.4840632 ], + [ 7.7917713, 47.4840635 ], + [ 7.7917682, 47.4840637 ], + [ 7.7913673, 47.4840927 ], + [ 7.7913160999999995, 47.4840964 ], + [ 7.7911876, 47.4841057 ], + [ 7.7906165, 47.4841647 ], + [ 7.7903331, 47.4842344 ], + [ 7.7902566, 47.4842532 ], + [ 7.7902302, 47.4842597 ], + [ 7.790162, 47.4842764 ], + [ 7.7899541, 47.4843559 ], + [ 7.7894863999999995, 47.4845347 ], + [ 7.7889418, 47.4847167 ], + [ 7.7884109, 47.4848282 ], + [ 7.7880709, 47.4848996 ], + [ 7.7880274, 47.4849087 ], + [ 7.7878204, 47.4849497 ], + [ 7.7876557, 47.4849823 ], + [ 7.7876552, 47.4849824 ], + [ 7.7876454, 47.4850454 ], + [ 7.7874365999999995, 47.485066 ], + [ 7.7872966, 47.4851082 ], + [ 7.7872213, 47.4851442 ], + [ 7.7868575, 47.4853177 ], + [ 7.7863150999999995, 47.4855757 ], + [ 7.7862451, 47.485609 ], + [ 7.7862626, 47.4856399 ], + [ 7.7864017, 47.4858863 ], + [ 7.78665, 47.4860483 ], + [ 7.7866715, 47.4860623 ], + [ 7.786583, 47.4862649 ], + [ 7.7864772, 47.4865073 ], + [ 7.7862639, 47.4865613 ], + [ 7.7862313, 47.4865695 ], + [ 7.7862333, 47.4866228 ], + [ 7.7862337, 47.4866334 ], + [ 7.7862352999999995, 47.486676 ], + [ 7.7861185, 47.4866821 ], + [ 7.7856733, 47.4867052 ], + [ 7.7855933, 47.4869837 ], + [ 7.7855834, 47.4870182 ], + [ 7.7855565, 47.4871121 ], + [ 7.7855482, 47.4871691 ], + [ 7.7855471, 47.4871768 ], + [ 7.7855474000000005, 47.4872055 ], + [ 7.7855477, 47.4872315 ], + [ 7.7855481, 47.4872735 ], + [ 7.7855491, 47.4873142 ], + [ 7.7858377999999995, 47.4873263 ], + [ 7.7860333, 47.4874037 ], + [ 7.7862145, 47.4875963 ], + [ 7.7864801, 47.4877073 ], + [ 7.7870896, 47.4876512 ], + [ 7.7873697, 47.4876775 ], + [ 7.7878357, 47.4878455 ], + [ 7.7881312, 47.4879293 ], + [ 7.7883412, 47.4879422 ], + [ 7.7886255, 47.4878431 ], + [ 7.7884094, 47.4876676 ], + [ 7.7883726, 47.4874034 ], + [ 7.7884657, 47.4871185 ], + [ 7.7888161, 47.4866832 ], + [ 7.788855, 47.4862669 ], + [ 7.7889972, 47.4858435 ], + [ 7.7892365, 47.4857479 ], + [ 7.7895491, 47.4856566 ], + [ 7.7897891, 47.4854853 ], + [ 7.7902122, 47.485135 ], + [ 7.7905643, 47.4849713 ], + [ 7.7910364, 47.4848117 ], + [ 7.7915955, 47.4846971 ], + [ 7.7924021, 47.4847217 ], + [ 7.7926576, 47.4846848 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr031", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Schward", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Schward", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Schward", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Schward", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.4731764, 47.4084254 ], + [ 9.4731015, 47.4086943 ], + [ 9.47306, 47.4086887 ], + [ 9.4729591, 47.4090797 ], + [ 9.4733034, 47.4091272 ], + [ 9.473347799999999, 47.4089545 ], + [ 9.473506, 47.4089771 ], + [ 9.4735848, 47.4089803 ], + [ 9.4736236, 47.4089758 ], + [ 9.4736421, 47.4089691 ], + [ 9.4736689, 47.4089557 ], + [ 9.4736854, 47.4089129 ], + [ 9.4736919, 47.4088909 ], + [ 9.473714, 47.4088119 ], + [ 9.4737456, 47.4087024 ], + [ 9.4736616, 47.4086931 ], + [ 9.473713, 47.4085121 ], + [ 9.4737648, 47.4083107 ], + [ 9.4736853, 47.4083354 ], + [ 9.4736107, 47.4083574 ], + [ 9.4734998, 47.4083909 ], + [ 9.473378199999999, 47.4084168 ], + [ 9.4732791, 47.4084295 ], + [ 9.4731764, 47.4084254 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSXT002", + "country" : "CHE", + "name" : [ + { + "text" : "LSXT Trogen (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSXT Trogen (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSXT Trogen (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSXT Trogen (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Stiftung Helimission", + "lang" : "de-CH" + }, + { + "text" : "Stiftung Helimission", + "lang" : "fr-CH" + }, + { + "text" : "Stiftung Helimission", + "lang" : "it-CH" + }, + { + "text" : "Stiftung Helimission", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Basis St. Gallen", + "lang" : "de-CH" + }, + { + "text" : "Basis St. Gallen", + "lang" : "fr-CH" + }, + { + "text" : "Basis St. Gallen", + "lang" : "it-CH" + }, + { + "text" : "Basis St. Gallen", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.helimission.org/en/", + "email" : "info@hm-int.org", + "phone" : "0041713437171", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P01DT12H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.3092445, 47.3623585 ], + [ 8.3092833, 47.3624028 ], + [ 8.3092951, 47.3624485 ], + [ 8.309277, 47.3624895 ], + [ 8.3092828, 47.3625085 ], + [ 8.3093252, 47.3625126 ], + [ 8.3093758, 47.3625587 ], + [ 8.3094252, 47.3626404 ], + [ 8.3094833, 47.362703 ], + [ 8.3095387, 47.3627255 ], + [ 8.309633, 47.3627081 ], + [ 8.3096747, 47.3627192 ], + [ 8.3097802, 47.3627221 ], + [ 8.3098237, 47.3627182 ], + [ 8.3098891, 47.3627123 ], + [ 8.3099659, 47.3626785 ], + [ 8.3100614, 47.362628 ], + [ 8.3102125, 47.3625726 ], + [ 8.3103485, 47.3625211 ], + [ 8.3104282, 47.3624962 ], + [ 8.3104963, 47.3624325 ], + [ 8.3105349, 47.3623832 ], + [ 8.3105795, 47.3623618 ], + [ 8.310618, 47.3623449 ], + [ 8.3106943, 47.3622901 ], + [ 8.3107696, 47.3622697 ], + [ 8.3108717, 47.3622617 ], + [ 8.3109719, 47.3622616 ], + [ 8.3110082, 47.3622741 ], + [ 8.3110235, 47.3623166 ], + [ 8.3110625, 47.3623271 ], + [ 8.3111256, 47.3623228 ], + [ 8.3112246, 47.3622897 ], + [ 8.3112634, 47.3622766 ], + [ 8.3113581, 47.3622365 ], + [ 8.3114485, 47.3621633 ], + [ 8.3115176, 47.3620957 ], + [ 8.3115421, 47.3620716 ], + [ 8.3116056, 47.362005 ], + [ 8.3116429, 47.3619354 ], + [ 8.311648, 47.3618386 ], + [ 8.3116054, 47.3617441 ], + [ 8.311566, 47.3616744 ], + [ 8.3115169, 47.361615 ], + [ 8.3115122, 47.3615609 ], + [ 8.3115427, 47.3615123 ], + [ 8.3115372, 47.3614697 ], + [ 8.3115168, 47.3614438 ], + [ 8.3114294, 47.3614425 ], + [ 8.3113666, 47.3614602 ], + [ 8.3113359, 47.3614559 ], + [ 8.3113264, 47.3614356 ], + [ 8.311263199999999, 47.3614304 ], + [ 8.311194, 47.3614404 ], + [ 8.3111107, 47.3614658 ], + [ 8.3110353, 47.3614855 ], + [ 8.3109473, 47.361502 ], + [ 8.3107325, 47.3615335 ], + [ 8.3105695, 47.3615589 ], + [ 8.3103743, 47.3615788 ], + [ 8.3102219, 47.3615851 ], + [ 8.3100087, 47.3615665 ], + [ 8.3098698, 47.3615607 ], + [ 8.309751200000001, 47.3615764 ], + [ 8.3095955, 47.3616331 ], + [ 8.3094625, 47.3616973 ], + [ 8.3093402, 47.3617551 ], + [ 8.3092197, 47.3618109 ], + [ 8.3091105, 47.3618513 ], + [ 8.3089876, 47.3618766 ], + [ 8.3088807, 47.3618966 ], + [ 8.3087699, 47.3619001 ], + [ 8.3086501, 47.3619444 ], + [ 8.3085108, 47.3620087 ], + [ 8.3085013, 47.361989 ], + [ 8.3085114, 47.3619539 ], + [ 8.3084777, 47.3619332 ], + [ 8.3084002, 47.3619338 ], + [ 8.3083085, 47.3619493 ], + [ 8.3082287, 47.3619678 ], + [ 8.3082023, 47.3619967 ], + [ 8.3082218, 47.3620239 ], + [ 8.3083139, 47.3620327 ], + [ 8.3084281, 47.3620202 ], + [ 8.3084348, 47.3620412 ], + [ 8.3082567, 47.3620994 ], + [ 8.3081652, 47.362169 ], + [ 8.3081114, 47.3622217 ], + [ 8.3080681, 47.3622647 ], + [ 8.308064, 47.3622864 ], + [ 8.3080948, 47.3623365 ], + [ 8.3081247, 47.3623872 ], + [ 8.3081263, 47.3624668 ], + [ 8.3081035, 47.3624976 ], + [ 8.3080498, 47.3625159 ], + [ 8.3080474, 47.3625726 ], + [ 8.3080247, 47.3626097 ], + [ 8.3080688, 47.3626488 ], + [ 8.3081278, 47.3626675 ], + [ 8.3081952, 47.3626611 ], + [ 8.3082416, 47.3626353 ], + [ 8.308292, 47.3626316 ], + [ 8.3083152, 47.3626633 ], + [ 8.3083096, 47.3626978 ], + [ 8.3083486, 47.3627095 ], + [ 8.3084446, 47.362689 ], + [ 8.3086745, 47.3626475 ], + [ 8.3087764, 47.3626065 ], + [ 8.3088298, 47.362571 ], + [ 8.3088616, 47.3625395 ], + [ 8.308921, 47.3625384 ], + [ 8.3089716, 47.3624978 ], + [ 8.3090014, 47.3624561 ], + [ 8.3090136, 47.3623955 ], + [ 8.3090286, 47.3623801 ], + [ 8.3091571, 47.3623573 ], + [ 8.3092445, 47.3623585 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "KTAG602", + "country" : "CHE", + "name" : [ + { + "text" : "Fischbacher Moos", + "lang" : "de-CH" + }, + { + "text" : "Fischbacher Moos", + "lang" : "fr-CH" + }, + { + "text" : "Fischbacher Moos", + "lang" : "it-CH" + }, + { + "text" : "Fischbacher Moos", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "regulationExemption" : "NO", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "schedule" : [ + { + "day" : [ "ANY" ], + "startTime" : "00:00:00.00+01:00", + "endTime" : "00:00:00.00+01:00" + } + ] + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Aargau", + "lang" : "de-CH" + }, + { + "text" : "Canton d'Argovie", + "lang" : "fr-CH" + }, + { + "text" : "Canton Argovia", + "lang" : "it-CH" + }, + { + "text" : "Canton of Aargau", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Departement Bau, Verkehr und Umwelt (BVU)", + "lang" : "de-CH" + }, + { + "text" : "Département de la construction, des transports et de l'environnement (CTE)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento delle costruzioni, dei trasporti e dell'ambiente (CTA)", + "lang" : "it-CH" + }, + { + "text" : "Department of Civil Engineering,Transport and Environment (CTE)", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Sektion Gewässernutzung", + "lang" : "de-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "fr-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "it-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ag.ch/de/verwaltung/bvu/umwelt-natur-landschaft/hochwasserschutz-gewaesser/gewaessernutzung", + "email" : "alg@ag.ch", + "phone" : "0041 62 835 34 50", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.3396604, 46.2178513 ], + [ 7.3403645, 46.2169445 ], + [ 7.3387466, 46.2163747 ], + [ 7.3381063, 46.2173154 ], + [ 7.3396604, 46.2178513 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SIO0001", + "country" : "CHE", + "name" : [ + { + "text" : "Prison de Sion", + "lang" : "de-CH" + }, + { + "text" : "Prison de Sion", + "lang" : "fr-CH" + }, + { + "text" : "Prison de Sion", + "lang" : "it-CH" + }, + { + "text" : "Prison de Sion", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Prison de Sion", + "lang" : "de-CH" + }, + { + "text" : "Prison de Sion", + "lang" : "fr-CH" + }, + { + "text" : "Prison de Sion", + "lang" : "it-CH" + }, + { + "text" : "Prison de Sion", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Dienststelle für Straf-und Massnahmenvollzug", + "lang" : "de-CH" + }, + { + "text" : "Service de l'application des peines et mesures", + "lang" : "fr-CH" + }, + { + "text" : "Service de l'application des peines et mesures", + "lang" : "it-CH" + }, + { + "text" : "Service de l'application des peines et mesures", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.polizeiwallis.ch/", + "email" : "SAPEM-DIRECTION@admin.vs.ch", + "phone" : "0041276065166", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5538233, 47.4580094 ], + [ 7.5542115, 47.458011 ], + [ 7.5517759, 47.4564002 ], + [ 7.5515507, 47.4564832 ], + [ 7.551203, 47.4562284 ], + [ 7.5493429, 47.4565867 ], + [ 7.5465322, 47.4571267 ], + [ 7.5461727, 47.457279 ], + [ 7.5473662, 47.4575278 ], + [ 7.5486474999999995, 47.4578478 ], + [ 7.5502446, 47.4581081 ], + [ 7.5525953, 47.4580225 ], + [ 7.5538233, 47.4580094 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr046", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Chuenisberg", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Chuenisberg", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Chuenisberg", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Chuenisberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.9468212, 46.8157459 ], + [ 6.9465641, 46.8157506 ], + [ 6.9463079, 46.8157668 ], + [ 6.9460539, 46.8157945 ], + [ 6.945803, 46.8158335 ], + [ 6.9455564, 46.8158837 ], + [ 6.9453151, 46.8159449 ], + [ 6.9450801, 46.8160167 ], + [ 6.9448525, 46.816099 ], + [ 6.9446332, 46.8161913 ], + [ 6.9444231, 46.8162932 ], + [ 6.9442233, 46.8164044 ], + [ 6.9440344, 46.8165243 ], + [ 6.9439009, 46.8166193 ], + [ 6.9438158, 46.816683 ], + [ 6.9437722, 46.8167161 ], + [ 6.9436078, 46.8168519 ], + [ 6.9434566, 46.8169948 ], + [ 6.9433194, 46.8171442 ], + [ 6.9431967, 46.8172994 ], + [ 6.9430891, 46.8174598 ], + [ 6.9429969, 46.8176246 ], + [ 6.9429207, 46.8177933 ], + [ 6.9428607, 46.817965 ], + [ 6.9428172, 46.8181391 ], + [ 6.9427903, 46.8183147 ], + [ 6.9427803, 46.8184911 ], + [ 6.9427871, 46.8186677 ], + [ 6.9428107, 46.8188435 ], + [ 6.942851, 46.8190179 ], + [ 6.9429078, 46.8191902 ], + [ 6.9429809, 46.8193595 ], + [ 6.9430700000000005, 46.8195251 ], + [ 6.9431747, 46.8196864 ], + [ 6.9432945, 46.8198427 ], + [ 6.943429, 46.8199933 ], + [ 6.9435775, 46.8201375 ], + [ 6.9437394, 46.8202747 ], + [ 6.9439141, 46.8204043 ], + [ 6.9440077, 46.8204672 ], + [ 6.9440939, 46.8205233 ], + [ 6.944187, 46.8205819 ], + [ 6.9443848, 46.8206948 ], + [ 6.944593, 46.8207986 ], + [ 6.9448106, 46.8208928 ], + [ 6.9450367, 46.820977 ], + [ 6.9452703, 46.8210509 ], + [ 6.9455105, 46.8211141 ], + [ 6.9457562, 46.8211665 ], + [ 6.9460064, 46.8212077 ], + [ 6.9462600000000005, 46.8212375 ], + [ 6.9465158, 46.8212559 ], + [ 6.9467729, 46.8212628 ], + [ 6.94703, 46.8212582 ], + [ 6.9472862, 46.8212419 ], + [ 6.9475403, 46.8212143 ], + [ 6.9477912, 46.8211753 ], + [ 6.9480378, 46.8211251 ], + [ 6.9482792, 46.8210639 ], + [ 6.9485142, 46.820992 ], + [ 6.9487418, 46.8209097 ], + [ 6.9489611, 46.8208174 ], + [ 6.9491712, 46.8207155 ], + [ 6.949371, 46.8206043 ], + [ 6.9495599, 46.8204844 ], + [ 6.9496365, 46.820431 ], + [ 6.9497241, 46.8203682 ], + [ 6.9498245999999995, 46.8202935 ], + [ 6.949989, 46.8201576 ], + [ 6.9501402, 46.8200147 ], + [ 6.9502774, 46.8198654 ], + [ 6.9504, 46.8197101 ], + [ 6.9505077, 46.8195498 ], + [ 6.9505998, 46.8193849 ], + [ 6.950676, 46.8192162 ], + [ 6.950736, 46.8190445 ], + [ 6.9507795, 46.8188704 ], + [ 6.9508063, 46.8186948 ], + [ 6.9508163, 46.8185183 ], + [ 6.9508095, 46.8183418 ], + [ 6.9507859, 46.818166 ], + [ 6.9507455, 46.8179916 ], + [ 6.9506887, 46.8178193 ], + [ 6.9506155, 46.81765 ], + [ 6.9505264, 46.8174844 ], + [ 6.9504217, 46.8173231 ], + [ 6.9503018999999995, 46.8171668 ], + [ 6.9501674, 46.8170163 ], + [ 6.9500189, 46.8168721 ], + [ 6.9498569, 46.8167349 ], + [ 6.9496823, 46.8166052 ], + [ 6.9495701, 46.8165303 ], + [ 6.9494814, 46.8164733 ], + [ 6.9494069, 46.8164268 ], + [ 6.9492091, 46.8163139 ], + [ 6.9490009, 46.8162101 ], + [ 6.9487833, 46.8161159 ], + [ 6.9485572, 46.816031699999996 ], + [ 6.9483236, 46.8159578 ], + [ 6.9480834, 46.8158946 ], + [ 6.9478378, 46.8158423 ], + [ 6.9475876, 46.8158011 ], + [ 6.9473341, 46.8157713 ], + [ 6.9470782, 46.8157528 ], + [ 6.9468212, 46.8157459 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00026", + "country" : "CHE", + "name" : [ + { + "text" : "Hôpital régonal HIB Payerne", + "lang" : "de-CH" + }, + { + "text" : "Hôpital régonal HIB Payerne", + "lang" : "fr-CH" + }, + { + "text" : "Hôpital régonal HIB Payerne", + "lang" : "it-CH" + }, + { + "text" : "Hôpital régonal HIB Payerne", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kantonspolizei Waadt", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale vaudoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Vaud", + "lang" : "it-CH" + }, + { + "text" : "Vaud Cantonal Police", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.pcv@vd.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.0132134, 46.3802031 ], + [ 7.013117, 46.3813974 ], + [ 7.0129258, 46.3824042 ], + [ 7.0140273, 46.3838324 ], + [ 7.0156776, 46.3857322 ], + [ 7.0164676, 46.3869433 ], + [ 7.0167901, 46.3872575 ], + [ 7.0168051, 46.3880042 ], + [ 7.0165861, 46.3884217 ], + [ 7.0164537, 46.3887199 ], + [ 7.0172043, 46.3894981 ], + [ 7.0180655, 46.3899178 ], + [ 7.0190822, 46.3899207 ], + [ 7.0194909, 46.3901912 ], + [ 7.0198802, 46.3901171 ], + [ 7.020533, 46.3895815 ], + [ 7.0213103, 46.3897634 ], + [ 7.0225208, 46.3897517 ], + [ 7.0238823, 46.3898754 ], + [ 7.0253066, 46.3901181 ], + [ 7.0263608, 46.3908075 ], + [ 7.0270951, 46.3908389 ], + [ 7.0269092, 46.3903327 ], + [ 7.0261845, 46.3883591 ], + [ 7.0252189, 46.3874614 ], + [ 7.0250813, 46.3857445 ], + [ 7.0246088, 46.3853101 ], + [ 7.0248406, 46.3849223 ], + [ 7.0288952, 46.384382 ], + [ 7.0309288, 46.3843138 ], + [ 7.032116, 46.3844359 ], + [ 7.0327206, 46.3845874 ], + [ 7.0332333, 46.3853791 ], + [ 7.0345679, 46.386144 ], + [ 7.03569, 46.3864611 ], + [ 7.0369663, 46.3863145 ], + [ 7.0377432, 46.3863766 ], + [ 7.0385432, 46.3864838 ], + [ 7.0392991, 46.3865746 ], + [ 7.0398402, 46.3865316 ], + [ 7.0404036, 46.3862799 ], + [ 7.0405575, 46.3858621 ], + [ 7.0404522, 46.3855037 ], + [ 7.0402383, 46.3852493 ], + [ 7.0371132, 46.3840319 ], + [ 7.0365201, 46.3823287 ], + [ 7.0367811, 46.3821956 ], + [ 7.0370696, 46.3811513 ], + [ 7.0367932, 46.3805692 ], + [ 7.0360626, 46.3798802 ], + [ 7.0357416, 46.379521 ], + [ 7.0335841, 46.3789781 ], + [ 7.0326804, 46.3783343 ], + [ 7.030998, 46.3778812 ], + [ 7.0292503, 46.3774737 ], + [ 7.0276529, 46.377305 ], + [ 7.0263945, 46.3778537 ], + [ 7.0255464, 46.3786269 ], + [ 7.0233537, 46.3798 ], + [ 7.0232822, 46.3806508 ], + [ 7.0242087, 46.3810266 ], + [ 7.0242183, 46.3826585 ], + [ 7.0245054, 46.3847285 ], + [ 7.023552, 46.3849643 ], + [ 7.0219776, 46.3844818 ], + [ 7.0198878, 46.3835808 ], + [ 7.0184013, 46.3828448 ], + [ 7.0172565, 46.3827974 ], + [ 7.0141026, 46.3811834 ], + [ 7.0132134, 46.3802031 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00014", + "country" : "CHE", + "name" : [ + { + "text" : "Tour de Famelon", + "lang" : "de-CH" + }, + { + "text" : "Tour de Famelon", + "lang" : "fr-CH" + }, + { + "text" : "Tour de Famelon", + "lang" : "it-CH" + }, + { + "text" : "Tour de Famelon", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "startDateTime" : "2024-11-15T00:00:00+01:00", + "endDateTime" : "2025-04-15T00:00:00+02:00" + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Generaldirektion für Umwelt", + "lang" : "de-CH" + }, + { + "text" : "Direction générale de l'environnement", + "lang" : "fr-CH" + }, + { + "text" : "Direzione generale dell'Ambiente", + "lang" : "it-CH" + }, + { + "text" : "Environment Department", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.dge@vd.ch", + "phone" : "0041213164422", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.0764332, 47.4194337 ], + [ 7.0764287, 47.4192924 ], + [ 7.0764133, 47.4191516 ], + [ 7.0763871, 47.4190114 ], + [ 7.0763501, 47.4188724 ], + [ 7.0763025, 47.4187349 ], + [ 7.0762443, 47.4185993 ], + [ 7.0761757, 47.4184659 ], + [ 7.0760969, 47.4183352 ], + [ 7.0760082, 47.4182074 ], + [ 7.0759097, 47.4180829 ], + [ 7.0758018, 47.4179622 ], + [ 7.0756847, 47.4178454 ], + [ 7.0755588, 47.4177329 ], + [ 7.0754244, 47.4176251 ], + [ 7.0752818, 47.4175221 ], + [ 7.0751315, 47.4174244 ], + [ 7.0749738, 47.4173322 ], + [ 7.0748093, 47.4172457 ], + [ 7.0746383, 47.4171651 ], + [ 7.0744614, 47.4170907 ], + [ 7.0742789, 47.4170228 ], + [ 7.0740915, 47.4169613 ], + [ 7.0738996, 47.4169067 ], + [ 7.0737037, 47.4168589 ], + [ 7.0735044, 47.4168181 ], + [ 7.0733023, 47.4167845 ], + [ 7.0730978, 47.4167581 ], + [ 7.0728916, 47.416739 ], + [ 7.0726842, 47.4167273 ], + [ 7.0724762, 47.4167229 ], + [ 7.0722681, 47.416726 ], + [ 7.0720605, 47.4167364 ], + [ 7.0718541, 47.4167541 ], + [ 7.0716493, 47.4167792 ], + [ 7.0714467, 47.4168115 ], + [ 7.0712468, 47.416851 ], + [ 7.0710503, 47.4168975 ], + [ 7.0708577, 47.4169509 ], + [ 7.0706694, 47.4170112 ], + [ 7.070486, 47.417078 ], + [ 7.070308, 47.4171512 ], + [ 7.070136, 47.4172307 ], + [ 7.0699703, 47.4173161 ], + [ 7.0698114, 47.4174073 ], + [ 7.0696597, 47.4175041 ], + [ 7.0695157, 47.4176061 ], + [ 7.0693798, 47.4177131 ], + [ 7.0692523, 47.4178247 ], + [ 7.0691337, 47.4179408 ], + [ 7.0690241, 47.4180609 ], + [ 7.0689239, 47.4181847 ], + [ 7.0688334, 47.4183119 ], + [ 7.0687529, 47.4184422 ], + [ 7.0686825, 47.4185751 ], + [ 7.0686224, 47.4187104 ], + [ 7.0685729, 47.4188476 ], + [ 7.068534, 47.4189863 ], + [ 7.0685058, 47.4191263 ], + [ 7.0684885, 47.4192671 ], + [ 7.0684821, 47.4194082 ], + [ 7.0684866, 47.4195495 ], + [ 7.0685019, 47.4196903 ], + [ 7.0685281, 47.4198305 ], + [ 7.0685651, 47.4199695 ], + [ 7.0686127, 47.420107 ], + [ 7.0686709, 47.4202426 ], + [ 7.0687395, 47.420376 ], + [ 7.0688182, 47.4205068 ], + [ 7.0689069, 47.4206346 ], + [ 7.0690054, 47.420759 ], + [ 7.0691133, 47.4208798 ], + [ 7.0692304, 47.4209966 ], + [ 7.0693563, 47.4211091 ], + [ 7.0694907, 47.4212169 ], + [ 7.0696333, 47.4213199 ], + [ 7.0697836, 47.4214176 ], + [ 7.0699413, 47.4215098 ], + [ 7.0701058, 47.4215964 ], + [ 7.0702768, 47.4216769 ], + [ 7.0704537, 47.4217513 ], + [ 7.0706362, 47.4218193 ], + [ 7.0708237, 47.4218807 ], + [ 7.0710156, 47.4219354 ], + [ 7.0712115, 47.4219832 ], + [ 7.0714108, 47.4220239 ], + [ 7.0716129, 47.4220576 ], + [ 7.0718174, 47.422084 ], + [ 7.0720237, 47.4221031 ], + [ 7.0722311, 47.4221148 ], + [ 7.0724391, 47.4221192 ], + [ 7.0726472, 47.4221161 ], + [ 7.0728548, 47.4221057 ], + [ 7.0730613, 47.4220879 ], + [ 7.0732661, 47.4220628 ], + [ 7.0734688, 47.4220305 ], + [ 7.0736686, 47.421991 ], + [ 7.0738651, 47.4219445 ], + [ 7.0740578, 47.4218911 ], + [ 7.0742461, 47.4218309 ], + [ 7.0744295, 47.421764 ], + [ 7.0746074, 47.4216908 ], + [ 7.0747795, 47.4216113 ], + [ 7.0749452, 47.4215259 ], + [ 7.0751041, 47.4214346 ], + [ 7.0752558, 47.4213379 ], + [ 7.0753998, 47.4212358 ], + [ 7.0755357, 47.4211289 ], + [ 7.0756631, 47.4210172 ], + [ 7.0757818, 47.4209012 ], + [ 7.0758914, 47.4207811 ], + [ 7.0759915, 47.4206572 ], + [ 7.076082, 47.42053 ], + [ 7.0761626, 47.4203998 ], + [ 7.0762329, 47.4202668 ], + [ 7.076293, 47.4201316 ], + [ 7.0763425, 47.4199944 ], + [ 7.0763814, 47.4198556 ], + [ 7.0764095, 47.4197156 ], + [ 7.0764268, 47.4195749 ], + [ 7.0764332, 47.4194337 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "POR0001", + "country" : "CHE", + "name" : [ + { + "text" : "Prison de Porrentruy", + "lang" : "de-CH" + }, + { + "text" : "Prison de Porrentruy", + "lang" : "fr-CH" + }, + { + "text" : "Prison de Porrentruy", + "lang" : "it-CH" + }, + { + "text" : "Prison de Porrentruy", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Service juridique", + "lang" : "de-CH" + }, + { + "text" : "Service juridique", + "lang" : "fr-CH" + }, + { + "text" : "Service juridique", + "lang" : "it-CH" + }, + { + "text" : "Service juridique", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Service juridique", + "lang" : "de-CH" + }, + { + "text" : "Service juridique", + "lang" : "fr-CH" + }, + { + "text" : "Service juridique", + "lang" : "it-CH" + }, + { + "text" : "Service juridique", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.jura.ch/fr/Autorites/Administration/DIN/JUR/Prison-de-Porrentruy/Prison-de-Porrentruy.html", + "email" : "secr.jur@jura.ch", + "phone" : "0041324205630", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.2406198, 47.1188334 ], + [ 7.2458534, 47.122256 ], + [ 7.2483633, 47.1238146 ], + [ 7.2509875, 47.1252828 ], + [ 7.2537191, 47.1266568 ], + [ 7.2565509, 47.127933 ], + [ 7.2594753, 47.1291079 ], + [ 7.2624846, 47.1301784 ], + [ 7.2655708, 47.1311417 ], + [ 7.2687256, 47.1319952 ], + [ 7.2719407, 47.1327367 ], + [ 7.2752076, 47.1333641 ], + [ 7.2785174999999995, 47.1338758 ], + [ 7.2818617, 47.1342705 ], + [ 7.2852312999999995, 47.1345471 ], + [ 7.2886173, 47.1347049 ], + [ 7.2920107, 47.1347434 ], + [ 7.2954025, 47.1346625 ], + [ 7.2987836999999995, 47.1344625 ], + [ 7.3021453, 47.1341439 ], + [ 7.3054783, 47.1337075 ], + [ 7.308774, 47.1331545 ], + [ 7.3120235000000005, 47.1324863 ], + [ 7.3152181, 47.1317049 ], + [ 7.3183495, 47.1308121 ], + [ 7.3214093, 47.1298104 ], + [ 7.3243893, 47.1287025 ], + [ 7.3272817, 47.1274913 ], + [ 7.3300788, 47.12618 ], + [ 7.3327731, 47.124772 ], + [ 7.3353575, 47.1232713 ], + [ 7.3378251, 47.1216816 ], + [ 7.3401695, 47.1200074 ], + [ 7.3423843, 47.1182529 ], + [ 7.3444637, 47.1164229 ], + [ 7.3464022, 47.1145221 ], + [ 7.3481946, 47.1125558 ], + [ 7.3498363, 47.1105291 ], + [ 7.3513228999999995, 47.1084473 ], + [ 7.3526504, 47.106316 ], + [ 7.3538153, 47.1041409 ], + [ 7.3548146, 47.1019277 ], + [ 7.3556457, 47.0996823 ], + [ 7.3563064, 47.0974106 ], + [ 7.3567948, 47.0951188 ], + [ 7.3571098, 47.0928128 ], + [ 7.3572506, 47.0904988 ], + [ 7.3572167, 47.0881829 ], + [ 7.3570084, 47.0858713 ], + [ 7.3566261, 47.08357 ], + [ 7.356071, 47.0812853 ], + [ 7.3553444, 47.0790231 ], + [ 7.3544484, 47.0767894 ], + [ 7.3533854, 47.0745902 ], + [ 7.3521581, 47.0724313 ], + [ 7.3507698999999995, 47.0703184 ], + [ 7.3492244, 47.0682571 ], + [ 7.3475259, 47.0662528 ], + [ 7.3456787, 47.064311 ], + [ 7.3436877, 47.0624366 ], + [ 7.3415584, 47.0606348 ], + [ 7.3392963, 47.0589101 ], + [ 7.3369074, 47.0572673 ], + [ 7.3316744, 47.0538488 ], + [ 7.3291225, 47.0522669 ], + [ 7.3264533, 47.0507783 ], + [ 7.3236738, 47.0493872 ], + [ 7.3207917, 47.0480974 ], + [ 7.3178149999999995, 47.0469123 ], + [ 7.3147517, 47.0458353 ], + [ 7.3116103, 47.0448692 ], + [ 7.3083994, 47.0440168 ], + [ 7.3051276, 47.0432803 ], + [ 7.3018041, 47.0426618 ], + [ 7.2984378, 47.0421629 ], + [ 7.2950379, 47.041785 ], + [ 7.2916139, 47.0415292 ], + [ 7.2881749, 47.0413962 ], + [ 7.2847305, 47.0413862 ], + [ 7.2812901, 47.0414994 ], + [ 7.277863, 47.0417354 ], + [ 7.2744586, 47.0420937 ], + [ 7.2710863, 47.0425731 ], + [ 7.2677552, 47.0431724 ], + [ 7.2644745, 47.04389 ], + [ 7.2612531, 47.0447238 ], + [ 7.2580999, 47.0456717 ], + [ 7.2550234, 47.046731 ], + [ 7.2520322, 47.0478988 ], + [ 7.2491343, 47.049172 ], + [ 7.2463377, 47.050547 ], + [ 7.2436501, 47.0520201 ], + [ 7.2410789, 47.0535873 ], + [ 7.238631, 47.0552442 ], + [ 7.2363132, 47.0569863 ], + [ 7.2341319, 47.058809 ], + [ 7.2320929, 47.0607071 ], + [ 7.230202, 47.0626755 ], + [ 7.2284643, 47.0647088 ], + [ 7.2268846, 47.0668014 ], + [ 7.2254673, 47.0689476 ], + [ 7.2242161, 47.0711416 ], + [ 7.2231347, 47.0733773 ], + [ 7.2222259, 47.0756485 ], + [ 7.2214923, 47.0779492 ], + [ 7.2209359, 47.0802729 ], + [ 7.2205582, 47.0826133 ], + [ 7.2203604, 47.0849641 ], + [ 7.2203429, 47.0873186 ], + [ 7.2205059, 47.0896706 ], + [ 7.2208489, 47.0920135 ], + [ 7.2213709999999995, 47.0943409 ], + [ 7.2220708, 47.0966465 ], + [ 7.2229465, 47.0989239 ], + [ 7.2239955, 47.1011669 ], + [ 7.2252151, 47.1033693 ], + [ 7.226602, 47.1055251 ], + [ 7.2281523, 47.1076283 ], + [ 7.2298619, 47.1096733 ], + [ 7.231726, 47.1116543 ], + [ 7.2337395, 47.113566 ], + [ 7.235897, 47.1154031 ], + [ 7.2381926, 47.1171605 ], + [ 7.2406198, 47.1188334 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZP001", + "country" : "CHE", + "name" : [ + { + "text" : "LSZP Biel-Kappelen", + "lang" : "de-CH" + }, + { + "text" : "LSZP Biel-Kappelen", + "lang" : "fr-CH" + }, + { + "text" : "LSZP Biel-Kappelen", + "lang" : "it-CH" + }, + { + "text" : "LSZP Biel-Kappelen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Flugplatz Biel-Kappelen", + "lang" : "de-CH" + }, + { + "text" : "Flugplatz Biel-Kappelen", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatz Biel-Kappelen", + "lang" : "it-CH" + }, + { + "text" : "Flugplatz Biel-Kappelen", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Paul Misteli", + "lang" : "de-CH" + }, + { + "text" : "Paul Misteli", + "lang" : "fr-CH" + }, + { + "text" : "Paul Misteli", + "lang" : "it-CH" + }, + { + "text" : "Paul Misteli", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.lszp.ch", + "email" : "misteli.p@bluewin.ch", + "phone" : "0041791362839", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P02DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.6846623, 46.5145991 ], + [ 8.6900702, 46.5136808 ], + [ 8.690394, 46.514554 ], + [ 8.6911562, 46.5144314 ], + [ 8.6912205, 46.5143398 ], + [ 8.691414, 46.5143098 ], + [ 8.6913815, 46.5141455 ], + [ 8.6913159, 46.5140122 ], + [ 8.6912448, 46.513869 ], + [ 8.6912, 46.5137903 ], + [ 8.6911258, 46.5137399 ], + [ 8.6910216, 46.5136834 ], + [ 8.6908936, 46.5136731 ], + [ 8.6908509, 46.5135482 ], + [ 8.7000145, 46.5119915 ], + [ 8.7026643, 46.5111766 ], + [ 8.7024709, 46.5106479 ], + [ 8.7024891, 46.510367 ], + [ 8.6980941, 46.5111122 ], + [ 8.6979101, 46.5107643 ], + [ 8.6977683, 46.5103259 ], + [ 8.6976041, 46.509877 ], + [ 8.6971116, 46.509994 ], + [ 8.6977345, 46.5111729 ], + [ 8.6957992, 46.5115002 ], + [ 8.695446, 46.5108267 ], + [ 8.6948046, 46.5109804 ], + [ 8.6951476, 46.5116109 ], + [ 8.6842645, 46.5134537 ], + [ 8.6846623, 46.5145991 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSPM002", + "country" : "CHE", + "name" : [ + { + "text" : "LSPM Ambri Airport (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSPM Ambri Airport (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSPM Ambri Airport (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSPM Ambri Airport (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "HELI REZIA SA", + "lang" : "de-CH" + }, + { + "text" : "HELI REZIA SA", + "lang" : "fr-CH" + }, + { + "text" : "HELI REZIA SA", + "lang" : "it-CH" + }, + { + "text" : "HELI REZIA SA", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Capo d'aerodromo", + "lang" : "de-CH" + }, + { + "text" : "Capo d'aerodromo", + "lang" : "fr-CH" + }, + { + "text" : "Capo d'aerodromo", + "lang" : "it-CH" + }, + { + "text" : "Capo d'aerodromo", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.helirezia.ch/", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.5156755, 46.4422245 ], + [ 8.5156673, 46.4420833 ], + [ 8.5156485, 46.4419426 ], + [ 8.5156191, 46.4418028 ], + [ 8.515579, 46.4416642 ], + [ 8.5155286, 46.4415273 ], + [ 8.5154679, 46.4413924 ], + [ 8.515397, 46.4412599 ], + [ 8.515316200000001, 46.4411301 ], + [ 8.5152257, 46.4410034 ], + [ 8.5151257, 46.4408802 ], + [ 8.5150166, 46.4407608 ], + [ 8.5148985, 46.4406454 ], + [ 8.5147719, 46.4405345 ], + [ 8.514637, 46.4404284 ], + [ 8.514494299999999, 46.4403272 ], + [ 8.5143442, 46.4402314 ], + [ 8.514187, 46.4401411 ], + [ 8.5140231, 46.4400566 ], + [ 8.5138531, 46.4399782 ], + [ 8.5136774, 46.439906 ], + [ 8.5134965, 46.4398403 ], + [ 8.5133109, 46.4397813 ], + [ 8.513121, 46.439729 ], + [ 8.5129274, 46.4396837 ], + [ 8.5127307, 46.4396454 ], + [ 8.5125313, 46.4396143 ], + [ 8.5123299, 46.4395904 ], + [ 8.5121269, 46.4395739 ], + [ 8.511923, 46.4395648 ], + [ 8.5117186, 46.439563 ], + [ 8.5115144, 46.4395686 ], + [ 8.5113109, 46.4395816 ], + [ 8.5111087, 46.439602 ], + [ 8.5109082, 46.4396296 ], + [ 8.5107102, 46.4396645 ], + [ 8.5105151, 46.4397065 ], + [ 8.5103234, 46.4397554 ], + [ 8.5101356, 46.4398113 ], + [ 8.5099524, 46.4398738 ], + [ 8.5097741, 46.4399429 ], + [ 8.5096013, 46.4400184 ], + [ 8.5094345, 46.4401 ], + [ 8.5092741, 46.4401875 ], + [ 8.5091205, 46.4402808 ], + [ 8.5089742, 46.4403794 ], + [ 8.5088355, 46.4404832 ], + [ 8.5087049, 46.4405919 ], + [ 8.5085827, 46.4407051 ], + [ 8.5084693, 46.4408227 ], + [ 8.5083649, 46.4409441 ], + [ 8.5082698, 46.4410692 ], + [ 8.5081844, 46.4411975 ], + [ 8.5081087, 46.4413288 ], + [ 8.5080431, 46.4414626 ], + [ 8.5079878, 46.4415986 ], + [ 8.5079428, 46.4417364 ], + [ 8.5079083, 46.4418757 ], + [ 8.5078843, 46.442016 ], + [ 8.5078711, 46.442157 ], + [ 8.5078685, 46.4422983 ], + [ 8.5078767, 46.4424394 ], + [ 8.5078955, 46.4425801 ], + [ 8.5079249, 46.4427199 ], + [ 8.5079649, 46.4428585 ], + [ 8.5080153, 46.4429954 ], + [ 8.508075999999999, 46.4431303 ], + [ 8.5081469, 46.4432629 ], + [ 8.5082276, 46.4433926 ], + [ 8.5083181, 46.4435193 ], + [ 8.5084181, 46.4436426 ], + [ 8.5085273, 46.443762 ], + [ 8.5086453, 46.4438773 ], + [ 8.5087719, 46.4439883 ], + [ 8.5089068, 46.4440944 ], + [ 8.5090495, 46.4441956 ], + [ 8.5091997, 46.4442914 ], + [ 8.5093569, 46.4443817 ], + [ 8.5095207, 46.4444662 ], + [ 8.5096907, 46.4445446 ], + [ 8.5098664, 46.4446168 ], + [ 8.5100474, 46.4446825 ], + [ 8.510233, 46.4447416 ], + [ 8.5104229, 46.4447939 ], + [ 8.5106165, 46.4448392 ], + [ 8.5108132, 46.4448775 ], + [ 8.5110126, 46.4449086 ], + [ 8.5112141, 46.4449324 ], + [ 8.5114171, 46.4449489 ], + [ 8.511621, 46.4449581 ], + [ 8.5118254, 46.4449599 ], + [ 8.5120296, 46.4449542 ], + [ 8.5122332, 46.4449412 ], + [ 8.5124354, 46.4449209 ], + [ 8.5126359, 46.4448932 ], + [ 8.5128339, 46.4448584 ], + [ 8.5130291, 46.4448164 ], + [ 8.5132208, 46.4447674 ], + [ 8.5134085, 46.4447116 ], + [ 8.5135918, 46.444649 ], + [ 8.5137701, 46.4445799 ], + [ 8.5139429, 46.4445044 ], + [ 8.5141097, 46.4444228 ], + [ 8.5142701, 46.4443353 ], + [ 8.5144237, 46.444242 ], + [ 8.51457, 46.4441434 ], + [ 8.5147087, 46.444039599999996 ], + [ 8.5148393, 46.4439309 ], + [ 8.5149615, 46.4438176 ], + [ 8.5150749, 46.4437001 ], + [ 8.5151793, 46.4435786 ], + [ 8.5152743, 46.4434536 ], + [ 8.5153598, 46.4433252 ], + [ 8.5154354, 46.4431939 ], + [ 8.515501, 46.4430601 ], + [ 8.5155563, 46.4429241 ], + [ 8.5156013, 46.4427863 ], + [ 8.5156358, 46.442647 ], + [ 8.5156597, 46.4425067 ], + [ 8.5156729, 46.4423657 ], + [ 8.5156755, 46.4422245 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0099", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Robiei", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Robiei", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Robiei", + "lang" : "it-CH" + }, + { + "text" : "Substation Robiei", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.0565742, 46.9027931 ], + [ 7.0564078, 46.9024217 ], + [ 7.0562599, 46.9024667 ], + [ 7.0558756, 46.9025225 ], + [ 7.0556835, 46.9025446 ], + [ 7.0553832, 46.9025436 ], + [ 7.0550077, 46.9025253 ], + [ 7.054566, 46.9024668 ], + [ 7.054207, 46.9024313 ], + [ 7.0539571, 46.902379 ], + [ 7.0535658, 46.9022693 ], + [ 7.0526418, 46.9019807 ], + [ 7.0518341, 46.901727 ], + [ 7.0515428, 46.9016233 ], + [ 7.0513015, 46.9015253 ], + [ 7.0511019, 46.9014562 ], + [ 7.050844, 46.9013925 ], + [ 7.0506524, 46.9013348 ], + [ 7.0504025, 46.9013054 ], + [ 7.0501688, 46.9012989 ], + [ 7.0499935, 46.9012641 ], + [ 7.0497853, 46.9012349 ], + [ 7.04961, 46.9012057 ], + [ 7.049368, 46.9012163 ], + [ 7.0487747, 46.9013569 ], + [ 7.0468697, 46.9017386 ], + [ 7.0450558, 46.9021205 ], + [ 7.0445793, 46.9022216 ], + [ 7.044346, 46.9022721 ], + [ 7.0429244, 46.9026155 ], + [ 7.0415539, 46.9029132 ], + [ 7.0408346, 46.9031218 ], + [ 7.0405839, 46.9032009 ], + [ 7.0403577, 46.9032743 ], + [ 7.0401735, 46.9033365 ], + [ 7.0400647, 46.9034046 ], + [ 7.0399393, 46.9035125 ], + [ 7.0357162, 46.9068139 ], + [ 7.0332135, 46.9089683 ], + [ 7.0320202, 46.9100029 ], + [ 7.0306004, 46.9112535 ], + [ 7.029508, 46.9121799 ], + [ 7.0285424, 46.9129242 ], + [ 7.0275184, 46.9136854 ], + [ 7.0269812, 46.9140829 ], + [ 7.0265108, 46.9144465 ], + [ 7.0260328, 46.9147302 ], + [ 7.0246909, 46.9156271 ], + [ 7.0234154, 46.9164331 ], + [ 7.0232398, 46.9165408 ], + [ 7.02313, 46.916626 ], + [ 7.0230628, 46.9167285 ], + [ 7.0229853, 46.9169908 ], + [ 7.022749, 46.9174066 ], + [ 7.0225171, 46.9182106 ], + [ 7.0224906, 46.9183531 ], + [ 7.022498, 46.9184617 ], + [ 7.0228377, 46.9187768 ], + [ 7.0231531, 46.9190518 ], + [ 7.0234274, 46.9192356 ], + [ 7.0237847, 46.9194023 ], + [ 7.0247328, 46.9198853 ], + [ 7.0255569, 46.9201678 ], + [ 7.0262134, 46.9204784 ], + [ 7.0267876, 46.9207145 ], + [ 7.0273781, 46.920973599999996 ], + [ 7.0278187, 46.921192 ], + [ 7.0284504, 46.9215367 ], + [ 7.0291076, 46.9218702 ], + [ 7.0299471, 46.9222898 ], + [ 7.0304129, 46.9225484 ], + [ 7.0311109, 46.9229104 ], + [ 7.0313685, 46.9231282 ], + [ 7.0320003, 46.9234672 ], + [ 7.0326739, 46.9238006 ], + [ 7.0331725, 46.9240707 ], + [ 7.0334636, 46.9242088 ], + [ 7.03383, 46.9243641 ], + [ 7.0340715, 46.9244392 ], + [ 7.0345548, 46.9245608 ], + [ 7.0348627, 46.9246417 ], + [ 7.0351461, 46.9247113 ], + [ 7.0356778, 46.9239541 ], + [ 7.0358121, 46.9238803 ], + [ 7.0360138, 46.9236869 ], + [ 7.0470186, 46.9148439 ], + [ 7.0580197, 46.9059999 ], + [ 7.0579873, 46.9059371 ], + [ 7.0579792, 46.9058058 ], + [ 7.0579394, 46.9056401 ], + [ 7.0577646, 46.905531 ], + [ 7.0575735, 46.9054162 ], + [ 7.0573744, 46.9052671 ], + [ 7.0572831, 46.905187 ], + [ 7.0571759, 46.9050382 ], + [ 7.0570774, 46.9048039 ], + [ 7.0570717, 46.9044613 ], + [ 7.0571223, 46.9043759 ], + [ 7.0571392, 46.9043133 ], + [ 7.0573487, 46.9041426 ], + [ 7.0570921, 46.9038964 ], + [ 7.0569852, 46.9036963 ], + [ 7.0568544, 46.9032963 ], + [ 7.0565742, 46.9027931 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "WZV0032", + "country" : "CHE", + "name" : [ + { + "text" : "Wasser- und Zugvogelreservat Salavaux", + "lang" : "de-CH" + }, + { + "text" : "Réserve d'oiseaux d'eau et de migrateurs Salavaux", + "lang" : "fr-CH" + }, + { + "text" : "Riserva di uccelli acquatici e migratori Salavaux", + "lang" : "it-CH" + }, + { + "text" : "Water Bird and Migratory Bird Reserves Salavaux", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6275611, 47.4906206 ], + [ 7.6277563, 47.4906151 ], + [ 7.6278062, 47.4905557 ], + [ 7.6279181, 47.4904592 ], + [ 7.6281524, 47.4903983 ], + [ 7.6282806, 47.4903807 ], + [ 7.628453, 47.4903743 ], + [ 7.6287117, 47.490369 ], + [ 7.6288936, 47.4903399 ], + [ 7.6289158, 47.4902762 ], + [ 7.6290178, 47.4899833 ], + [ 7.629115, 47.4897042 ], + [ 7.6292196, 47.4894036 ], + [ 7.6287631000000005, 47.489362 ], + [ 7.6287859000000005, 47.4893005 ], + [ 7.6284273, 47.4895851 ], + [ 7.6282043, 47.4897626 ], + [ 7.6279718, 47.4899497 ], + [ 7.6276530000000005, 47.4904398 ], + [ 7.6275729, 47.4905982 ], + [ 7.6275611, 47.4906206 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns061", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Ermitage - Chilchholz", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Ermitage - Chilchholz", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Ermitage - Chilchholz", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Ermitage - Chilchholz", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7094796, 47.4107256 ], + [ 7.7094084, 47.4107659 ], + [ 7.7092562000000004, 47.410913 ], + [ 7.7091152, 47.4111011 ], + [ 7.7091078, 47.4111078 ], + [ 7.7090789, 47.4111559 ], + [ 7.7090371, 47.4112237 ], + [ 7.7090367, 47.4112295 ], + [ 7.70904, 47.4112359 ], + [ 7.7090663, 47.4112849 ], + [ 7.7091987, 47.4113726 ], + [ 7.7093279, 47.4117215 ], + [ 7.709407, 47.4121255 ], + [ 7.7094778999999996, 47.4122156 ], + [ 7.709563, 47.4123478 ], + [ 7.709605, 47.4124741 ], + [ 7.709625, 47.4125375 ], + [ 7.7096378, 47.4125484 ], + [ 7.709702, 47.4126033 ], + [ 7.709808, 47.412644 ], + [ 7.7099269, 47.4126611 ], + [ 7.7099705, 47.4127868 ], + [ 7.709988, 47.4129368 ], + [ 7.709973, 47.4129855 ], + [ 7.7098493, 47.4130549 ], + [ 7.7099108, 47.4131649 ], + [ 7.7099462, 47.4133016 ], + [ 7.7099592, 47.4133941 ], + [ 7.7099966, 47.4136587 ], + [ 7.7100508, 47.4137819 ], + [ 7.7101915, 47.4139692 ], + [ 7.710378, 47.4142236 ], + [ 7.7104797, 47.4143476 ], + [ 7.7106403, 47.4144754 ], + [ 7.7107077, 47.414529 ], + [ 7.7107673, 47.4145864 ], + [ 7.7108852, 47.4146997 ], + [ 7.710897, 47.4147111 ], + [ 7.7110198, 47.4148291 ], + [ 7.7111979, 47.4149156 ], + [ 7.711351, 47.4149574 ], + [ 7.7115321, 47.4149588 ], + [ 7.7122009, 47.4148666 ], + [ 7.7122376, 47.4148634 ], + [ 7.712389, 47.4148505 ], + [ 7.7125496, 47.4148754 ], + [ 7.7125637000000005, 47.4148796 ], + [ 7.7128717, 47.4149715 ], + [ 7.7131336, 47.4150735 ], + [ 7.7133164, 47.4151629 ], + [ 7.7134575, 47.4152408 ], + [ 7.7136559, 47.4153506 ], + [ 7.7138789, 47.4154576 ], + [ 7.7141172000000005, 47.4155506 ], + [ 7.7142373, 47.4155958 ], + [ 7.7143083, 47.414181 ], + [ 7.7143125, 47.4140988 ], + [ 7.7143223, 47.4139761 ], + [ 7.7143393, 47.4137644 ], + [ 7.7143419, 47.4137338 ], + [ 7.7143459, 47.4136838 ], + [ 7.7143735, 47.4133401 ], + [ 7.7144957, 47.412768 ], + [ 7.7146928, 47.4124388 ], + [ 7.7149012, 47.4121593 ], + [ 7.7148607, 47.4120824 ], + [ 7.7145391, 47.4117154 ], + [ 7.7143456, 47.4114868 ], + [ 7.714252, 47.4114035 ], + [ 7.7141168, 47.4113254 ], + [ 7.7139118, 47.4112483 ], + [ 7.7137136, 47.4111772 ], + [ 7.7135104, 47.411088 ], + [ 7.7132806, 47.4109629 ], + [ 7.7131861, 47.410899 ], + [ 7.7131313, 47.4108619 ], + [ 7.712708, 47.4105407 ], + [ 7.7123597, 47.4102789 ], + [ 7.712049, 47.4100409 ], + [ 7.7117474999999995, 47.4098232 ], + [ 7.7117423, 47.4098194 ], + [ 7.7117373, 47.4098154 ], + [ 7.7117325, 47.4098114 ], + [ 7.7117279, 47.4098073 ], + [ 7.7117202, 47.4097999 ], + [ 7.7117132, 47.4097924 ], + [ 7.7117066, 47.4097845 ], + [ 7.7117007, 47.4097765 ], + [ 7.7117001, 47.4097756 ], + [ 7.7094549, 47.4098541 ], + [ 7.7094796, 47.4107256 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr015", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Schorenacher", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Schorenacher", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Schorenacher", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Schorenacher", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.6268122, 46.5473365 ], + [ 6.6265564999999995, 46.5473289 ], + [ 6.6263006, 46.5473328 ], + [ 6.6261102, 46.5473433 ], + [ 6.6260515, 46.5473452 ], + [ 6.6258213999999995, 46.5473587 ], + [ 6.6258092, 46.5473597 ], + [ 6.6257843, 46.5473617 ], + [ 6.6255314, 46.5473886 ], + [ 6.6252815, 46.547427 ], + [ 6.6252301, 46.5474363 ], + [ 6.6252183, 46.5474385 ], + [ 6.6250239, 46.5474787 ], + [ 6.6247834999999995, 46.5475392 ], + [ 6.6246681, 46.5475726 ], + [ 6.6246569, 46.5475761 ], + [ 6.624538, 46.5476138 ], + [ 6.624311, 46.5476954 ], + [ 6.6241354, 46.5477679 ], + [ 6.624125, 46.5477725 ], + [ 6.6240819, 46.5477916 ], + [ 6.6238723, 46.547893 ], + [ 6.6236728, 46.5480036 ], + [ 6.6235927, 46.5480523 ], + [ 6.6235781, 46.5480615 ], + [ 6.6234695, 46.5481322 ], + [ 6.6232926, 46.5482598 ], + [ 6.6232606, 46.548284699999996 ], + [ 6.6232476, 46.548295 ], + [ 6.6231151, 46.5484054 ], + [ 6.6229683999999995, 46.5485433 ], + [ 6.6229572, 46.5485546 ], + [ 6.6229526, 46.5485592 ], + [ 6.6228152, 46.5487082 ], + [ 6.6227597, 46.5487751 ], + [ 6.622678, 46.5488662 ], + [ 6.622555, 46.5490211 ], + [ 6.6224469, 46.5491812 ], + [ 6.6224149, 46.5492346 ], + [ 6.6222889, 46.5493272 ], + [ 6.6221245, 46.5494625 ], + [ 6.6219732, 46.549605 ], + [ 6.6218357999999995, 46.5497539 ], + [ 6.6217128, 46.5499088 ], + [ 6.6216047, 46.5500689 ], + [ 6.6215121, 46.5502335 ], + [ 6.6214352, 46.550402 ], + [ 6.6213745, 46.5505735 ], + [ 6.6213301, 46.5507474 ], + [ 6.6213024, 46.550923 ], + [ 6.6212914, 46.5510994 ], + [ 6.6212971, 46.551276 ], + [ 6.6213195, 46.5514519 ], + [ 6.6213584999999995, 46.5516264 ], + [ 6.6214141, 46.5517988 ], + [ 6.6214858, 46.5519683 ], + [ 6.6215735, 46.5521343 ], + [ 6.6216767, 46.5522959 ], + [ 6.621795, 46.5524525 ], + [ 6.6219279, 46.5526034 ], + [ 6.6220748, 46.552748 ], + [ 6.6220766, 46.5527496 ], + [ 6.6220824, 46.5527604 ], + [ 6.6220836, 46.5527626 ], + [ 6.62212, 46.5528275 ], + [ 6.6221252, 46.5528365 ], + [ 6.6221265, 46.5528387 ], + [ 6.6221795, 46.5529243 ], + [ 6.6221808, 46.5529264 ], + [ 6.6222258, 46.5529934 ], + [ 6.6222293, 46.5529984 ], + [ 6.6222308, 46.5530005 ], + [ 6.6222916, 46.5530837 ], + [ 6.6222932, 46.5530858 ], + [ 6.6223472, 46.5531542 ], + [ 6.6223515, 46.5531595 ], + [ 6.6223532, 46.5531615 ], + [ 6.6224148, 46.5532339 ], + [ 6.6224166, 46.5532359 ], + [ 6.6224834999999995, 46.5533091 ], + [ 6.6224859, 46.5533116 ], + [ 6.6224877, 46.5533136 ], + [ 6.6225578, 46.5533849 ], + [ 6.6225597, 46.5533868 ], + [ 6.6226307, 46.5534544 ], + [ 6.6226327, 46.5534562 ], + [ 6.6226362, 46.5534594 ], + [ 6.6227069, 46.5535224 ], + [ 6.622709, 46.5535242 ], + [ 6.6227862, 46.5535888 ], + [ 6.6227883, 46.5535906 ], + [ 6.6228007, 46.5536005 ], + [ 6.6228754, 46.5536589 ], + [ 6.6228776, 46.5536605 ], + [ 6.622953, 46.5537161 ], + [ 6.6229553, 46.5537177 ], + [ 6.6229782, 46.553734 ], + [ 6.6230484, 46.5537822 ], + [ 6.6230508, 46.5537838 ], + [ 6.6231385, 46.5538407 ], + [ 6.6231409, 46.5538423 ], + [ 6.6231612, 46.5538549 ], + [ 6.6232382, 46.5539424 ], + [ 6.6233851, 46.554087 ], + [ 6.6235454, 46.5542247 ], + [ 6.6237185, 46.5543548 ], + [ 6.6239035, 46.5544768 ], + [ 6.6239138, 46.5544832 ], + [ 6.6242108, 46.5546654 ], + [ 6.6243967, 46.5547725 ], + [ 6.6246033, 46.5548769 ], + [ 6.6248192, 46.5549717 ], + [ 6.6250437, 46.5550565 ], + [ 6.6252758, 46.5551311 ], + [ 6.6255144, 46.555195 ], + [ 6.6257586, 46.555248 ], + [ 6.6260072999999995, 46.5552899 ], + [ 6.6262594, 46.5553205 ], + [ 6.6265139, 46.555339599999996 ], + [ 6.6267697, 46.5553472 ], + [ 6.6270256, 46.5553433 ], + [ 6.6272806, 46.5553278 ], + [ 6.6275336, 46.5553008 ], + [ 6.6277835, 46.5552625 ], + [ 6.6280292, 46.555213 ], + [ 6.6282697, 46.5551525 ], + [ 6.6285039999999995, 46.5550813 ], + [ 6.628731, 46.5549997 ], + [ 6.6289498, 46.554908 ], + [ 6.6291594, 46.5548066 ], + [ 6.6293589, 46.554696 ], + [ 6.6295476, 46.5545766 ], + [ 6.6297245, 46.554449 ], + [ 6.629729, 46.5544455 ], + [ 6.629858, 46.5543457 ], + [ 6.630018, 46.5542138 ], + [ 6.6301692, 46.5540714 ], + [ 6.6303066, 46.5539224 ], + [ 6.6304296, 46.5537675 ], + [ 6.6305377, 46.5536074 ], + [ 6.6306303, 46.5534428 ], + [ 6.6307071, 46.5532743 ], + [ 6.6307678, 46.5531028 ], + [ 6.6308121, 46.5529288 ], + [ 6.6308399, 46.5527533 ], + [ 6.6308509, 46.5525768 ], + [ 6.6308454999999995, 46.5524124 ], + [ 6.6309013, 46.5522902 ], + [ 6.630962, 46.5521186 ], + [ 6.6310063, 46.5519447 ], + [ 6.631034, 46.5517691 ], + [ 6.631045, 46.5515927 ], + [ 6.6310448, 46.5515242 ], + [ 6.6310705, 46.5514633 ], + [ 6.6311312000000004, 46.5512917 ], + [ 6.6311755, 46.5511178 ], + [ 6.6312032, 46.5509422 ], + [ 6.6312142, 46.5507658 ], + [ 6.6312085, 46.5505892 ], + [ 6.631186, 46.5504133 ], + [ 6.631147, 46.5502388 ], + [ 6.6310914, 46.5500664 ], + [ 6.6310196, 46.5498969 ], + [ 6.6309319, 46.549731 ], + [ 6.6308287, 46.5495694 ], + [ 6.6307104, 46.5494128 ], + [ 6.6305775, 46.5492619 ], + [ 6.6304305, 46.5491173 ], + [ 6.6304283999999996, 46.5491153 ], + [ 6.6302779, 46.5489773 ], + [ 6.6301197, 46.5488416 ], + [ 6.6301037, 46.5488289 ], + [ 6.6296421, 46.5484054 ], + [ 6.6294833, 46.5482692 ], + [ 6.6293103, 46.548139 ], + [ 6.6291253, 46.548017 ], + [ 6.6289291, 46.5479036 ], + [ 6.6287226, 46.5477992 ], + [ 6.6285067, 46.5477044 ], + [ 6.6282822, 46.5476196 ], + [ 6.6280502, 46.547545 ], + [ 6.6278116, 46.5474811 ], + [ 6.6275674, 46.5474281 ], + [ 6.6273188, 46.5473862 ], + [ 6.6270667, 46.5473556 ], + [ 6.6268122, 46.5473365 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00035", + "country" : "CHE", + "name" : [ + { + "text" : "Centre de la police cantonale (Blécherette)", + "lang" : "de-CH" + }, + { + "text" : "Centre de la police cantonale (Blécherette)", + "lang" : "fr-CH" + }, + { + "text" : "Centre de la police cantonale (Blécherette)", + "lang" : "it-CH" + }, + { + "text" : "Centre de la police cantonale (Blécherette)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kantonspolizei Waadt", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale vaudoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Vaud", + "lang" : "it-CH" + }, + { + "text" : "Vaud Cantonal Police", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.pcv@vd.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8458011, 47.4246681 ], + [ 7.845896, 47.4245003 ], + [ 7.8460102, 47.4244007 ], + [ 7.8460614, 47.4242781 ], + [ 7.8460988, 47.4239852 ], + [ 7.8460763, 47.4238043 ], + [ 7.8459587, 47.4236038 ], + [ 7.846031, 47.423595 ], + [ 7.8458873, 47.4232835 ], + [ 7.8457246, 47.4228874 ], + [ 7.8455778, 47.422511 ], + [ 7.8453647, 47.4222025 ], + [ 7.8451805, 47.4219196 ], + [ 7.8450726, 47.4217539 ], + [ 7.8449779, 47.4215811 ], + [ 7.8447653, 47.4212535 ], + [ 7.8445968, 47.4208837 ], + [ 7.844525, 47.420717 ], + [ 7.8444363, 47.4205139 ], + [ 7.844436, 47.4205133 ], + [ 7.8444357, 47.4205104 ], + [ 7.8443751, 47.4199478 ], + [ 7.8443643, 47.4197104 ], + [ 7.8443642, 47.4197093 ], + [ 7.8441495, 47.419215 ], + [ 7.843877, 47.419524 ], + [ 7.8437352, 47.4197251 ], + [ 7.8436706, 47.419735 ], + [ 7.8436509999999995, 47.419738 ], + [ 7.8438797000000005, 47.4205215 ], + [ 7.8438876, 47.4205478 ], + [ 7.8438962, 47.4205741 ], + [ 7.8439054, 47.4206002 ], + [ 7.8439151, 47.4206263 ], + [ 7.8439254, 47.4206523 ], + [ 7.8439363, 47.4206781 ], + [ 7.8439478, 47.4207039 ], + [ 7.8439599, 47.4207295 ], + [ 7.8439727, 47.4207549 ], + [ 7.843986, 47.4207801 ], + [ 7.8439999, 47.4208053 ], + [ 7.8440144, 47.4208302 ], + [ 7.8440294999999995, 47.4208551 ], + [ 7.8440451, 47.4208797 ], + [ 7.8440612, 47.4209042 ], + [ 7.8440779, 47.4209286 ], + [ 7.8442643, 47.4211983 ], + [ 7.8442807, 47.4212228 ], + [ 7.8442965000000004, 47.4212475 ], + [ 7.8443115, 47.4212724 ], + [ 7.8443258, 47.4212975 ], + [ 7.8443394, 47.4213227 ], + [ 7.8443522, 47.4213482 ], + [ 7.8443642, 47.4213738 ], + [ 7.8443755, 47.4213996 ], + [ 7.8444833, 47.421653 ], + [ 7.8446185, 47.4219717 ], + [ 7.8447982, 47.4223142 ], + [ 7.8449219, 47.4225504 ], + [ 7.8449296, 47.4225662 ], + [ 7.8449364, 47.4225821 ], + [ 7.8449423, 47.4225982 ], + [ 7.8449471, 47.4226145 ], + [ 7.844951, 47.4226309 ], + [ 7.8449539999999995, 47.4226473 ], + [ 7.844956, 47.4226639 ], + [ 7.8449569, 47.4226805 ], + [ 7.844957, 47.422697 ], + [ 7.844956, 47.4227136 ], + [ 7.8449541, 47.4227302 ], + [ 7.8449511, 47.422746599999996 ], + [ 7.8449472, 47.422763 ], + [ 7.8449424, 47.4227793 ], + [ 7.84494, 47.4227863 ], + [ 7.8449395, 47.422788 ], + [ 7.8449363, 47.4227967 ], + [ 7.8448062, 47.423125 ], + [ 7.844784, 47.4231811 ], + [ 7.8447737, 47.4232057 ], + [ 7.8447625, 47.4232302 ], + [ 7.8447503, 47.4232545 ], + [ 7.8447372, 47.4232785 ], + [ 7.8447230999999995, 47.4233023 ], + [ 7.8447081999999995, 47.4233258 ], + [ 7.8446924, 47.4233491 ], + [ 7.8446757, 47.4233721 ], + [ 7.8442576, 47.4237681 ], + [ 7.8442365, 47.4237821 ], + [ 7.8442149, 47.4237957 ], + [ 7.8441927, 47.423809 ], + [ 7.8441700999999995, 47.4238219 ], + [ 7.8441469999999995, 47.4238343 ], + [ 7.8441234, 47.4238464 ], + [ 7.8440994, 47.4238581 ], + [ 7.844075, 47.4238693 ], + [ 7.8440501, 47.4238801 ], + [ 7.8440248, 47.4238905 ], + [ 7.8439992, 47.4239004 ], + [ 7.8439732, 47.4239099 ], + [ 7.8439468, 47.4239189 ], + [ 7.8439201, 47.4239275 ], + [ 7.8438931, 47.4239355 ], + [ 7.8438658, 47.4239431 ], + [ 7.8438382, 47.4239502 ], + [ 7.8438103, 47.4239569 ], + [ 7.843786, 47.423962 ], + [ 7.8437615, 47.4239666 ], + [ 7.8437368, 47.4239706 ], + [ 7.8437118, 47.423974 ], + [ 7.8436867, 47.4239767 ], + [ 7.8436615, 47.4239789 ], + [ 7.8436361, 47.4239805 ], + [ 7.8436107, 47.4239814 ], + [ 7.8435853, 47.4239817 ], + [ 7.8435599, 47.4239815 ], + [ 7.8435345, 47.4239806 ], + [ 7.8435091, 47.4239791 ], + [ 7.8434839, 47.4239769 ], + [ 7.8434588, 47.4239742 ], + [ 7.8434338, 47.4239709 ], + [ 7.843409, 47.423967 ], + [ 7.843164, 47.4239304 ], + [ 7.843149, 47.423928599999996 ], + [ 7.8431339, 47.4239274 ], + [ 7.8431188, 47.4239269 ], + [ 7.8431036, 47.4239271 ], + [ 7.8430885, 47.423928 ], + [ 7.8430735, 47.4239296 ], + [ 7.8430587, 47.4239319 ], + [ 7.8430442, 47.4239349 ], + [ 7.8430299, 47.4239385 ], + [ 7.8430161, 47.4239427 ], + [ 7.8430026999999995, 47.4239476 ], + [ 7.8429899, 47.4239531 ], + [ 7.8429776, 47.4239591 ], + [ 7.8429659, 47.4239657 ], + [ 7.8429549, 47.4239728 ], + [ 7.8429447, 47.4239804 ], + [ 7.8429037, 47.4240732 ], + [ 7.8435282, 47.4241376 ], + [ 7.8450519, 47.4244048 ], + [ 7.8453275, 47.4245186 ], + [ 7.8458011, 47.4246681 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr098", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Neuweg", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Neuweg", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Neuweg", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Neuweg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.875274600000001, 46.5252876 ], + [ 9.8762411, 46.5264818 ], + [ 9.8750234, 46.5269489 ], + [ 9.87541, 46.5274266 ], + [ 9.8757136, 46.5277981 ], + [ 9.8775223, 46.5300273 ], + [ 9.8783652, 46.5310802 ], + [ 9.8782849, 46.5313249 ], + [ 9.8781566, 46.5316607 ], + [ 9.8783565, 46.5320434 ], + [ 9.8788178, 46.5318625 ], + [ 9.8789407, 46.5319859 ], + [ 9.879055900000001, 46.5319384 ], + [ 9.8801191, 46.5332475 ], + [ 9.8818455, 46.5353794 ], + [ 9.8821753, 46.5354623 ], + [ 9.8825185, 46.535554 ], + [ 9.883249, 46.5352682 ], + [ 9.8833516, 46.53523 ], + [ 9.8876204, 46.5405111 ], + [ 9.887543, 46.5405308 ], + [ 9.8874958, 46.5406398 ], + [ 9.8875642, 46.5407103 ], + [ 9.8876061, 46.5407724 ], + [ 9.8882303, 46.541596 ], + [ 9.8884702, 46.5417078 ], + [ 9.8891197, 46.5419368 ], + [ 9.889517099999999, 46.5420722 ], + [ 9.8901796, 46.5423009 ], + [ 9.8904419, 46.5423313 ], + [ 9.8905074, 46.5423389 ], + [ 9.8906634, 46.5423265 ], + [ 9.8911174, 46.5422717 ], + [ 9.8912607, 46.5422686 ], + [ 9.8914175, 46.5422742 ], + [ 9.8915474, 46.5422624 ], + [ 9.8915112, 46.5420382 ], + [ 9.8914493, 46.5418235 ], + [ 9.8913906, 46.5416808 ], + [ 9.8912628, 46.5414496 ], + [ 9.8908576, 46.5408553 ], + [ 9.8908258, 46.54073 ], + [ 9.888864, 46.5383063 ], + [ 9.8891331, 46.5382015 ], + [ 9.8888432, 46.5378478 ], + [ 9.8884568, 46.5373791 ], + [ 9.8881246, 46.5369542 ], + [ 9.8877801, 46.5365477 ], + [ 9.8871857, 46.5358045 ], + [ 9.8861487, 46.5345038 ], + [ 9.8843937, 46.532318599999996 ], + [ 9.8840208, 46.5318586 ], + [ 9.8836891, 46.5314428 ], + [ 9.8832612, 46.530921 ], + [ 9.8826535, 46.5301691 ], + [ 9.8821146, 46.5294966 ], + [ 9.8816721, 46.528939199999996 ], + [ 9.8815891, 46.5288329 ], + [ 9.8814507, 46.5286559 ], + [ 9.8812427, 46.5283814 ], + [ 9.8809122, 46.5279925 ], + [ 9.880843, 46.527904 ], + [ 9.8806216, 46.5276207 ], + [ 9.8803721, 46.5272931 ], + [ 9.8802064, 46.5270897 ], + [ 9.8798206, 46.52663 ], + [ 9.8796554, 46.5264355 ], + [ 9.8795162, 46.5262405 ], + [ 9.8792105, 46.5258241 ], + [ 9.8787661, 46.5252216 ], + [ 9.878738, 46.5251772 ], + [ 9.8786969, 46.5251331 ], + [ 9.8786009, 46.5250272 ], + [ 9.8779871, 46.5244283 ], + [ 9.8779061, 46.5243671 ], + [ 9.8778386, 46.5243145 ], + [ 9.8777991, 46.5243064 ], + [ 9.8777462, 46.5242895 ], + [ 9.8776672, 46.5242732 ], + [ 9.8774966, 46.5242499 ], + [ 9.875523, 46.5250122 ], + [ 9.875274600000001, 46.5252876 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZS002", + "country" : "CHE", + "name" : [ + { + "text" : "LSZS Samedan (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSZS Samedan (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSZS Samedan (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSZS Samedan (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Engadin Airport", + "lang" : "de-CH" + }, + { + "text" : "Engadin Airport", + "lang" : "fr-CH" + }, + { + "text" : "Engadin Airport", + "lang" : "it-CH" + }, + { + "text" : "Engadin Airport", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "GL Safety Officer", + "lang" : "de-CH" + }, + { + "text" : "GL Safety Officer", + "lang" : "fr-CH" + }, + { + "text" : "GL Safety Officer", + "lang" : "it-CH" + }, + { + "text" : "GL Safety Officer", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.engadin-airport.ch/en/drone/", + "email" : "info@engadin-airport.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 5.9937909, 46.2001578 ], + [ 5.9922974, 46.2002354 ], + [ 5.990957, 46.2006994 ], + [ 5.9899687, 46.2014808 ], + [ 5.9894794000000005, 46.2024638 ], + [ 5.9894733, 46.2024942 ], + [ 5.9895561, 46.2035337 ], + [ 5.9901994, 46.2044741 ], + [ 5.9913075, 46.2051754 ], + [ 5.9927156, 46.2055333 ], + [ 5.9927926, 46.2055418 ], + [ 5.9940134, 46.205541 ], + [ 5.9951736, 46.2052774 ], + [ 5.9961588, 46.2047768 ], + [ 5.9968718, 46.2040888 ], + [ 5.9972423, 46.2032812 ], + [ 5.9972493, 46.2032488 ], + [ 5.9972373999999995, 46.2023877 ], + [ 5.9968354999999995, 46.2015731 ], + [ 5.9960845, 46.2008879 ], + [ 5.9950609, 46.2004018 ], + [ 5.9938689, 46.2001643 ], + [ 5.9937909, 46.2001578 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-49", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.9765006, 47.3649791 ], + [ 7.9764835, 47.3646261 ], + [ 7.9764391, 47.3642742 ], + [ 7.9763678, 47.3639244 ], + [ 7.9762695, 47.3635776 ], + [ 7.9761447, 47.3632348 ], + [ 7.9759937, 47.3628968 ], + [ 7.9758168, 47.3625648 ], + [ 7.9756146999999995, 47.3622394 ], + [ 7.9753877, 47.3619217 ], + [ 7.9751366, 47.3616125 ], + [ 7.974862, 47.3613126 ], + [ 7.9745647, 47.3610229 ], + [ 7.9742454, 47.3607442 ], + [ 7.9739052, 47.3604773 ], + [ 7.9735449, 47.3602227 ], + [ 7.9731654, 47.3599814 ], + [ 7.9727679, 47.3597539 ], + [ 7.9723534, 47.3595408 ], + [ 7.9719231, 47.3593427 ], + [ 7.9714781, 47.3591602 ], + [ 7.9710197, 47.3589938 ], + [ 7.970549, 47.358844 ], + [ 7.9700675, 47.358711 ], + [ 7.9695764, 47.3585954 ], + [ 7.9690771, 47.3584974 ], + [ 7.9685709, 47.3584172 ], + [ 7.9680593, 47.3583552 ], + [ 7.9675435, 47.3583115 ], + [ 7.9670251, 47.3582862 ], + [ 7.9665055, 47.3582793 ], + [ 7.965986, 47.3582909 ], + [ 7.9654682, 47.358321 ], + [ 7.9649534, 47.3583694 ], + [ 7.964443, 47.3584361 ], + [ 7.9639384, 47.3585208 ], + [ 7.9634411, 47.3586234 ], + [ 7.9629522999999995, 47.3587435 ], + [ 7.9624735, 47.3588808 ], + [ 7.9620059, 47.359035 ], + [ 7.9615507999999995, 47.3592056 ], + [ 7.9611094, 47.3593921 ], + [ 7.9606829999999995, 47.3595941 ], + [ 7.9602728, 47.3598109 ], + [ 7.9598797999999995, 47.3600421 ], + [ 7.9595052, 47.3602869 ], + [ 7.9591499, 47.3605446 ], + [ 7.9588149999999995, 47.3608147 ], + [ 7.9585013, 47.3610963 ], + [ 7.9582098, 47.3613887 ], + [ 7.9579411, 47.361691 ], + [ 7.9576961, 47.3620025 ], + [ 7.9574755, 47.3623222 ], + [ 7.9572797, 47.3626494 ], + [ 7.9571095, 47.3629831 ], + [ 7.9569651, 47.3633224 ], + [ 7.9568471, 47.3636663 ], + [ 7.9567558, 47.364014 ], + [ 7.9566913, 47.3643644 ], + [ 7.956654, 47.3647167 ], + [ 7.9566438, 47.3650698 ], + [ 7.9566608, 47.3654227 ], + [ 7.9567049999999995, 47.3657746 ], + [ 7.9567763, 47.3661245 ], + [ 7.9568744, 47.3664713 ], + [ 7.9569991, 47.3668141 ], + [ 7.95715, 47.3671521 ], + [ 7.9573267, 47.3674842 ], + [ 7.9575288, 47.3678096 ], + [ 7.9577557, 47.3681273 ], + [ 7.9580068, 47.3684366 ], + [ 7.9582813, 47.3687365 ], + [ 7.9585786, 47.3690262 ], + [ 7.9588978, 47.3693049 ], + [ 7.959238, 47.369572 ], + [ 7.9595983, 47.3698265 ], + [ 7.9599778, 47.3700679 ], + [ 7.9603753, 47.3702955 ], + [ 7.9607898, 47.3705086 ], + [ 7.9612202, 47.3707067 ], + [ 7.9616653, 47.3708892 ], + [ 7.9621238, 47.3710557 ], + [ 7.9625945, 47.3712056 ], + [ 7.9630761, 47.3713386 ], + [ 7.9635673, 47.3714542 ], + [ 7.9640667, 47.3715523 ], + [ 7.964573, 47.3716324 ], + [ 7.9650848, 47.3716944 ], + [ 7.9656006999999995, 47.3717382 ], + [ 7.9661192, 47.3717635 ], + [ 7.966639, 47.3717704 ], + [ 7.9671585, 47.3717588 ], + [ 7.9676765, 47.3717287 ], + [ 7.9681915, 47.3716802 ], + [ 7.968702, 47.3716136 ], + [ 7.9692067, 47.3715288 ], + [ 7.9697040999999995, 47.3714262 ], + [ 7.970193, 47.3713061 ], + [ 7.9706719, 47.3711687 ], + [ 7.9711396, 47.3710145 ], + [ 7.9715948, 47.3708439 ], + [ 7.9720362, 47.3706573 ], + [ 7.9724626, 47.3704553 ], + [ 7.9728728, 47.3702384 ], + [ 7.9732658, 47.3700072 ], + [ 7.9736405, 47.3697624 ], + [ 7.9739958, 47.3695046 ], + [ 7.9743307, 47.3692345 ], + [ 7.9746443, 47.3689528 ], + [ 7.9749358, 47.3686604 ], + [ 7.9752044, 47.368358 ], + [ 7.9754493, 47.3680465 ], + [ 7.9756699, 47.3677267 ], + [ 7.9758655, 47.3673995 ], + [ 7.9760357, 47.3670658 ], + [ 7.9761799, 47.3667265 ], + [ 7.9762978, 47.3663826 ], + [ 7.976389, 47.3660349 ], + [ 7.9764533, 47.3656844 ], + [ 7.9764906, 47.3653322 ], + [ 7.9765006, 47.3649791 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "ENSI002", + "country" : "CHE", + "name" : [ + { + "text" : "KKA Gösgen", + "lang" : "de-CH" + }, + { + "text" : "KKA Gösgen", + "lang" : "fr-CH" + }, + { + "text" : "KKA Gösgen", + "lang" : "it-CH" + }, + { + "text" : "KKA Gösgen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kernkraftwerk Gösgen-Däniken AG", + "lang" : "de-CH" + }, + { + "text" : "Kernkraftwerk Gösgen-Däniken AG", + "lang" : "fr-CH" + }, + { + "text" : "Kernkraftwerk Gösgen-Däniken AG", + "lang" : "it-CH" + }, + { + "text" : "Kernkraftwerk Gösgen-Däniken AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Sicherungsbeauftragter", + "lang" : "de-CH" + }, + { + "text" : "Sicherungsbeauftragter", + "lang" : "fr-CH" + }, + { + "text" : "Sicherungsbeauftragter", + "lang" : "it-CH" + }, + { + "text" : "Sicherungsbeauftragter", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Rolf Burgherr", + "lang" : "de-CH" + }, + { + "text" : "Rolf Burgherr", + "lang" : "fr-CH" + }, + { + "text" : "Rolf Burgherr", + "lang" : "it-CH" + }, + { + "text" : "Rolf Burgherr", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kkg.ch", + "phone" : "0041622882000", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5882487, 47.4531433 ], + [ 7.5873296, 47.4535584 ], + [ 7.5875764, 47.4540007 ], + [ 7.5876326, 47.4540751 ], + [ 7.5881816, 47.4539276 ], + [ 7.5882944, 47.4540878 ], + [ 7.5878754, 47.4542263 ], + [ 7.5880724, 47.4542616 ], + [ 7.5882784999999995, 47.4542536 ], + [ 7.5888824, 47.4541302 ], + [ 7.5894631, 47.4539639 ], + [ 7.589899, 47.4538403 ], + [ 7.5899759, 47.4538271 ], + [ 7.5899033, 47.453626 ], + [ 7.590135, 47.4535841 ], + [ 7.5902082, 47.4537898 ], + [ 7.5910244, 47.4536582 ], + [ 7.5912279, 47.453653 ], + [ 7.5911288, 47.453437 ], + [ 7.5910369, 47.4533503 ], + [ 7.591375, 47.4532306 ], + [ 7.5917243, 47.4531238 ], + [ 7.5920594999999995, 47.4529111 ], + [ 7.5923986, 47.4529024 ], + [ 7.5926656999999995, 47.4530267 ], + [ 7.5928474, 47.4530475 ], + [ 7.5934627, 47.4529823 ], + [ 7.5937376, 47.4527934 ], + [ 7.5939651, 47.4524972 ], + [ 7.5945766, 47.4524778 ], + [ 7.5951123, 47.4525492 ], + [ 7.5958124, 47.4526763 ], + [ 7.5963453, 47.4531034 ], + [ 7.5968929, 47.4536297 ], + [ 7.5974055, 47.4539774 ], + [ 7.5976099, 47.4540503 ], + [ 7.5976661, 47.4542522 ], + [ 7.5975833, 47.4544677 ], + [ 7.5975357, 47.4544874 ], + [ 7.5980021, 47.4549013 ], + [ 7.5982801, 47.4553558 ], + [ 7.5984476, 47.4556441 ], + [ 7.5986189, 47.4557373 ], + [ 7.5984481, 47.4558106 ], + [ 7.5982704, 47.4557937 ], + [ 7.5981687, 47.4557808 ], + [ 7.5981556, 47.4558048 ], + [ 7.5987688, 47.4564166 ], + [ 7.5991895, 47.4568629 ], + [ 7.5996027999999995, 47.4573025 ], + [ 7.5999984, 47.4577487 ], + [ 7.600395, 47.4581969 ], + [ 7.600752, 47.4586589 ], + [ 7.6011104, 47.4591211 ], + [ 7.6007736, 47.4591998 ], + [ 7.6003033, 47.4592504 ], + [ 7.5996705, 47.4593607 ], + [ 7.5985554, 47.4593914 ], + [ 7.5982007, 47.4594393 ], + [ 7.5976896, 47.4595288 ], + [ 7.5980142, 47.4600001 ], + [ 7.5983243, 47.4602376 ], + [ 7.5984025, 47.4603532 ], + [ 7.5983208, 47.4605559 ], + [ 7.5981712, 47.4606655 ], + [ 7.5979503, 47.4606952 ], + [ 7.5978297999999995, 47.4607269 ], + [ 7.5980245, 47.4607438 ], + [ 7.5982357, 47.4607898 ], + [ 7.5984597, 47.4608717 ], + [ 7.5982337, 47.4611565 ], + [ 7.5981655, 47.4611765 ], + [ 7.598668, 47.4613944 ], + [ 7.6017579, 47.462735 ], + [ 7.6024658, 47.4618136 ], + [ 7.602708, 47.4616058 ], + [ 7.6030199, 47.4615734 ], + [ 7.6039074, 47.4608785 ], + [ 7.6041134, 47.4605101 ], + [ 7.6044623, 47.4600055 ], + [ 7.6047183, 47.4597789 ], + [ 7.6046863, 47.4596353 ], + [ 7.6046236, 47.459586 ], + [ 7.6045359999999995, 47.4595172 ], + [ 7.6044295, 47.4594315 ], + [ 7.604344, 47.4593626 ], + [ 7.6039823, 47.4592272 ], + [ 7.6035734, 47.4590198 ], + [ 7.6034851, 47.4587792 ], + [ 7.603116, 47.4585543 ], + [ 7.603128, 47.4584426 ], + [ 7.6027924, 47.4582423 ], + [ 7.6025523, 47.4580738 ], + [ 7.6021626, 47.4580593 ], + [ 7.6020078, 47.4578738 ], + [ 7.6016183999999996, 47.4575447 ], + [ 7.6012024, 47.4572088 ], + [ 7.6008854, 47.4571112 ], + [ 7.6007193, 47.4568015 ], + [ 7.6004123, 47.456636 ], + [ 7.6001542, 47.4565818 ], + [ 7.5999982, 47.4563766 ], + [ 7.5994837, 47.4552279 ], + [ 7.5992563, 47.4547204 ], + [ 7.5990641, 47.4545828 ], + [ 7.5989872, 47.4545356 ], + [ 7.5989129, 47.454487 ], + [ 7.5988413999999995, 47.4544426 ], + [ 7.5987808, 47.4544093 ], + [ 7.5987136, 47.4543737 ], + [ 7.5986281, 47.45433 ], + [ 7.5985414, 47.4542855 ], + [ 7.598472, 47.4542411 ], + [ 7.5984015, 47.4541933 ], + [ 7.598317, 47.454139 ], + [ 7.598234, 47.454085 ], + [ 7.5981601, 47.4540377 ], + [ 7.5980921, 47.4539875 ], + [ 7.5980302, 47.4539354 ], + [ 7.5979743, 47.4538852 ], + [ 7.5979086, 47.4538364 ], + [ 7.5978351, 47.4537828 ], + [ 7.5977759, 47.4537421 ], + [ 7.5976939, 47.4536931 ], + [ 7.5976197, 47.4536574 ], + [ 7.5975411, 47.4536166 ], + [ 7.597467, 47.4535752 ], + [ 7.5973995, 47.4535325 ], + [ 7.5975071, 47.4534205 ], + [ 7.5975312, 47.453405 ], + [ 7.5980937, 47.4530436 ], + [ 7.5980466, 47.4530065 ], + [ 7.5979997, 47.4529693 ], + [ 7.5979529, 47.4529321 ], + [ 7.5979063, 47.4528947 ], + [ 7.5978419, 47.4528428 ], + [ 7.5977777, 47.4527907 ], + [ 7.5977139000000005, 47.4527384 ], + [ 7.5976503, 47.452686 ], + [ 7.5975869, 47.4526333 ], + [ 7.5975237, 47.4525805 ], + [ 7.5974609, 47.4525275 ], + [ 7.5973984, 47.4524743 ], + [ 7.5973351000000005, 47.4524216 ], + [ 7.5972722, 47.4523687 ], + [ 7.5972097, 47.4523157 ], + [ 7.5971475, 47.4522624 ], + [ 7.5970857, 47.4522089 ], + [ 7.5970243, 47.4521553 ], + [ 7.5969633, 47.4521015 ], + [ 7.5969027, 47.4520475 ], + [ 7.5968686, 47.4520164 ], + [ 7.5968352, 47.4519851 ], + [ 7.5968024, 47.4519535 ], + [ 7.5967703, 47.4519215 ], + [ 7.5967388, 47.4518893 ], + [ 7.596708, 47.4518567 ], + [ 7.5966778, 47.4518239 ], + [ 7.5966477999999995, 47.4517909 ], + [ 7.5966185, 47.4517576 ], + [ 7.5965899, 47.4517241 ], + [ 7.5965619, 47.4516903 ], + [ 7.5965347, 47.4516562 ], + [ 7.5965081, 47.4516219 ], + [ 7.5964823, 47.4515873 ], + [ 7.5964603, 47.4515567 ], + [ 7.5964388, 47.4515258 ], + [ 7.596418, 47.4514948 ], + [ 7.5963975999999995, 47.4514637 ], + [ 7.5963778, 47.4514323 ], + [ 7.5961384, 47.4511394 ], + [ 7.5961018, 47.4511555 ], + [ 7.5960516, 47.4511713 ], + [ 7.5960002, 47.4511852 ], + [ 7.5959477, 47.4511972 ], + [ 7.5959116, 47.4512115 ], + [ 7.5958839000000005, 47.4512215 ], + [ 7.5959455, 47.4513941 ], + [ 7.5959873, 47.4514929 ], + [ 7.5960177, 47.4515637 ], + [ 7.5960467, 47.4516388 ], + [ 7.5960774, 47.4517153 ], + [ 7.5961151000000005, 47.4517864 ], + [ 7.5961449, 47.4518369 ], + [ 7.5961768, 47.4518918 ], + [ 7.5962152, 47.4519571 ], + [ 7.5962596, 47.4520291 ], + [ 7.5963004, 47.4520957 ], + [ 7.5963435, 47.4521679 ], + [ 7.5963807, 47.452223 ], + [ 7.5964283, 47.4522804 ], + [ 7.5964811999999995, 47.4523273 ], + [ 7.596533, 47.4523798 ], + [ 7.596584, 47.4524399 ], + [ 7.5966013, 47.4524582 ], + [ 7.5966167, 47.4524773 ], + [ 7.5966303, 47.452497 ], + [ 7.5966419, 47.4525172 ], + [ 7.5966515, 47.452538 ], + [ 7.596659, 47.4525591 ], + [ 7.5966645, 47.4525805 ], + [ 7.5966649, 47.4525814 ], + [ 7.5966664, 47.4526003 ], + [ 7.5966647, 47.4526186 ], + [ 7.5966613, 47.4526346 ], + [ 7.5966542, 47.452652 ], + [ 7.5966494, 47.4526657 ], + [ 7.5966464, 47.452679 ], + [ 7.5965586, 47.4527027 ], + [ 7.5965403, 47.4526976 ], + [ 7.5965213, 47.4526939 ], + [ 7.5965077999999995, 47.4526902 ], + [ 7.596487, 47.4526831 ], + [ 7.5964672, 47.4526748 ], + [ 7.5964486, 47.4526653 ], + [ 7.5964313, 47.4526546 ], + [ 7.5964155, 47.452643 ], + [ 7.5964013999999995, 47.4526304 ], + [ 7.596389, 47.4526171 ], + [ 7.5963318, 47.4525633 ], + [ 7.5962686, 47.4525014 ], + [ 7.5962012, 47.4524365 ], + [ 7.5961341000000004, 47.4523756 ], + [ 7.596066, 47.4523131 ], + [ 7.5959984, 47.4522508 ], + [ 7.595925, 47.4521846 ], + [ 7.5958625, 47.452135 ], + [ 7.595789, 47.452084 ], + [ 7.5957155, 47.4520415 ], + [ 7.5956147, 47.4519952 ], + [ 7.5955401, 47.4519717 ], + [ 7.5954487, 47.4519437 ], + [ 7.5953586, 47.4519134 ], + [ 7.5952695, 47.4518847 ], + [ 7.5951833, 47.4518566 ], + [ 7.5950897, 47.451825 ], + [ 7.5949919, 47.4517941 ], + [ 7.5948965, 47.4517588 ], + [ 7.5946068, 47.4521954 ], + [ 7.5945923, 47.4522167 ], + [ 7.5945683, 47.4522367 ], + [ 7.5945333999999995, 47.4522525 ], + [ 7.5944998, 47.4522618 ], + [ 7.5944605, 47.4522633 ], + [ 7.5943978, 47.4522494 ], + [ 7.5943292, 47.452218 ], + [ 7.5942613, 47.4521843 ], + [ 7.5942045, 47.4521684 ], + [ 7.5941467, 47.4521604 ], + [ 7.5940436, 47.4521457 ], + [ 7.5939318, 47.4521295 ], + [ 7.5938153, 47.4521129 ], + [ 7.5937044, 47.4520968 ], + [ 7.5936329, 47.4520867 ], + [ 7.5934857000000004, 47.4520683 ], + [ 7.5933747, 47.4520528 ], + [ 7.5932727, 47.4520377 ], + [ 7.5931726, 47.4520261 ], + [ 7.5930578, 47.4520143 ], + [ 7.5929589, 47.4520027 ], + [ 7.5928222, 47.4519912 ], + [ 7.592562, 47.4519787 ], + [ 7.59243, 47.4519777 ], + [ 7.5922934, 47.4519813 ], + [ 7.5921772, 47.4519925 ], + [ 7.5920576, 47.4520078 ], + [ 7.5919849, 47.4520206 ], + [ 7.5919142, 47.4520363 ], + [ 7.5918095999999995, 47.4520629 ], + [ 7.5917089, 47.45209 ], + [ 7.5916091, 47.4521165 ], + [ 7.5914977, 47.4521495 ], + [ 7.5913877, 47.4521841 ], + [ 7.5912858, 47.4522185 ], + [ 7.5912228, 47.4522365 ], + [ 7.5911147, 47.4522656 ], + [ 7.5910159, 47.4522915 ], + [ 7.5909067, 47.452322 ], + [ 7.5908052999999995, 47.4523472 ], + [ 7.5907449, 47.4523621 ], + [ 7.5906970000000005, 47.4523694 ], + [ 7.5906229, 47.4523774 ], + [ 7.5902776, 47.4523999 ], + [ 7.5896696, 47.4525133 ], + [ 7.5896027, 47.4525169 ], + [ 7.5895952, 47.4525164 ], + [ 7.5895748, 47.4525138 ], + [ 7.5895548, 47.4525098 ], + [ 7.5895355, 47.4525044 ], + [ 7.5895171, 47.4524978 ], + [ 7.5894998000000005, 47.4524899 ], + [ 7.5894837, 47.4524809 ], + [ 7.5894692, 47.4524708 ], + [ 7.589407, 47.452488 ], + [ 7.5892395, 47.4525514 ], + [ 7.5887807, 47.452843 ], + [ 7.5882302, 47.4531106 ], + [ 7.5882487, 47.4531433 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns297", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Pfeffingen, Muggenberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Pfeffingen, Muggenberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Pfeffingen, Muggenberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Pfeffingen, Muggenberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8359411, 47.4550814 ], + [ 7.8359477, 47.4550475 ], + [ 7.8359776, 47.454894 ], + [ 7.8359552, 47.4546899 ], + [ 7.8359486, 47.4546295 ], + [ 7.8359355, 47.45451 ], + [ 7.8359476, 47.454336 ], + [ 7.8359515, 47.4543231 ], + [ 7.8359879, 47.4542012 ], + [ 7.8360064, 47.4541393 ], + [ 7.8360506, 47.4541327 ], + [ 7.8359658, 47.4539861 ], + [ 7.8357451, 47.4539578 ], + [ 7.8357592, 47.4539173 ], + [ 7.8358052, 47.4537851 ], + [ 7.835825, 47.4536613 ], + [ 7.8358687, 47.4535296 ], + [ 7.8359037, 47.4535049 ], + [ 7.835997, 47.4534387 ], + [ 7.8360936, 47.4533537 ], + [ 7.8360644, 47.4533252 ], + [ 7.8358139, 47.4535007 ], + [ 7.8357782, 47.4535387 ], + [ 7.8357662999999995, 47.4535513 ], + [ 7.8355184, 47.4538968 ], + [ 7.8355163999999995, 47.4538996 ], + [ 7.8354808, 47.4539492 ], + [ 7.8352015999999995, 47.4538561 ], + [ 7.8351173, 47.453828 ], + [ 7.8347969, 47.4541303 ], + [ 7.8347873, 47.4543165 ], + [ 7.834778, 47.4544786 ], + [ 7.8348351, 47.4548041 ], + [ 7.8352674, 47.4550589 ], + [ 7.8353015, 47.455079 ], + [ 7.8354528, 47.4549895 ], + [ 7.8355033, 47.4549886 ], + [ 7.8356721, 47.4549855 ], + [ 7.8357873, 47.4552531 ], + [ 7.8359574, 47.455368 ], + [ 7.8359836, 47.4553858 ], + [ 7.8361447, 47.455302 ], + [ 7.8359612, 47.4551032 ], + [ 7.8359411, 47.4550814 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr093", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Brünnler", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Brünnler", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Brünnler", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Brünnler", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.746314, 47.516519 ], + [ 7.7460284, 47.5163334 ], + [ 7.7455564, 47.5160285 ], + [ 7.7446192, 47.5154502 ], + [ 7.7439877, 47.5150771 ], + [ 7.7435342, 47.5148049 ], + [ 7.743221, 47.5146158 ], + [ 7.7431927, 47.5147552 ], + [ 7.7431158, 47.5151349 ], + [ 7.7432111, 47.5152124 ], + [ 7.7432649, 47.5152562 ], + [ 7.7443945, 47.515588 ], + [ 7.7444825999999996, 47.515556 ], + [ 7.7445103, 47.5155459 ], + [ 7.7445336000000005, 47.5155375 ], + [ 7.7445235, 47.5160278 ], + [ 7.7445149, 47.5161614 ], + [ 7.744472, 47.5162943 ], + [ 7.7444088, 47.5164203 ], + [ 7.7441473, 47.5167645 ], + [ 7.7440356, 47.5168833 ], + [ 7.7438907, 47.516984 ], + [ 7.7429556, 47.5175891 ], + [ 7.7429047, 47.5176623 ], + [ 7.742929, 47.5177556 ], + [ 7.7429569, 47.5178684 ], + [ 7.7431839, 47.5178925 ], + [ 7.7439082, 47.5180873 ], + [ 7.744251, 47.5182316 ], + [ 7.7448575, 47.5184869 ], + [ 7.7457133, 47.5184942 ], + [ 7.7461164, 47.5184975 ], + [ 7.7460457, 47.518172 ], + [ 7.7460372, 47.5181329 ], + [ 7.7460472, 47.5180462 ], + [ 7.7460486, 47.518034 ], + [ 7.7460535, 47.5179923 ], + [ 7.7461237, 47.517383 ], + [ 7.7462932, 47.5166138 ], + [ 7.7463003, 47.5165815 ], + [ 7.7463007, 47.51658 ], + [ 7.746314, 47.516519 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns001", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Ramschberg - Zettel", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Ramschberg - Zettel", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Ramschberg - Zettel", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Ramschberg - Zettel", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8147745, 47.394804 ], + [ 7.8148378, 47.394749 ], + [ 7.814946, 47.3946472 ], + [ 7.8147836, 47.3941346 ], + [ 7.81473, 47.3941591 ], + [ 7.8147516, 47.3942871 ], + [ 7.8147334, 47.3943463 ], + [ 7.8145428, 47.3943596 ], + [ 7.8144672, 47.3942149 ], + [ 7.8143413, 47.3940776 ], + [ 7.8142919, 47.3939935 ], + [ 7.814221, 47.3938797 ], + [ 7.814179, 47.3937602 ], + [ 7.814028, 47.3936567 ], + [ 7.8139911, 47.3935818 ], + [ 7.8139359, 47.3935288 ], + [ 7.813839, 47.3934357 ], + [ 7.813777, 47.3933344 ], + [ 7.8136867, 47.3932548 ], + [ 7.8136225, 47.3931638 ], + [ 7.8135663, 47.3931038 ], + [ 7.8135292, 47.3930321 ], + [ 7.8134789, 47.3929618 ], + [ 7.8134549, 47.3929104 ], + [ 7.81343, 47.3927303 ], + [ 7.8133418, 47.3927184 ], + [ 7.8132382, 47.3926859 ], + [ 7.8131919, 47.392645 ], + [ 7.8131191, 47.3925325 ], + [ 7.8130869, 47.3923949 ], + [ 7.8130123, 47.3922049 ], + [ 7.8128829, 47.3919329 ], + [ 7.8128022999999995, 47.3918203 ], + [ 7.8127309, 47.3917484 ], + [ 7.8126472, 47.3917271 ], + [ 7.8124206, 47.3915286 ], + [ 7.8123388, 47.3914851 ], + [ 7.812209, 47.3913974 ], + [ 7.8120244, 47.3913139 ], + [ 7.8116379, 47.3911011 ], + [ 7.8111585, 47.3909321 ], + [ 7.8110435, 47.3908915 ], + [ 7.8101778, 47.3914904 ], + [ 7.8103595, 47.391546 ], + [ 7.8105756, 47.3915885 ], + [ 7.8107326, 47.3916352 ], + [ 7.8108565, 47.3917127 ], + [ 7.8109866, 47.3917655 ], + [ 7.8112426, 47.3919519 ], + [ 7.8116161, 47.3922113 ], + [ 7.8117653, 47.3924055 ], + [ 7.8118306, 47.3924905 ], + [ 7.8120465, 47.3925667 ], + [ 7.8122871, 47.3926512 ], + [ 7.8123764, 47.3927136 ], + [ 7.8127069, 47.3929473 ], + [ 7.8129584, 47.3931337 ], + [ 7.8130603, 47.3932481 ], + [ 7.8132798999999995, 47.3933902 ], + [ 7.8134937, 47.3935279 ], + [ 7.8136795, 47.3936468 ], + [ 7.8138943, 47.3936711 ], + [ 7.813981, 47.3937421 ], + [ 7.814103, 47.3938618 ], + [ 7.8141796, 47.3939715 ], + [ 7.8142409, 47.3941139 ], + [ 7.8142684, 47.3942306 ], + [ 7.8142642, 47.3943097 ], + [ 7.8144274, 47.3944918 ], + [ 7.814616, 47.3947023 ], + [ 7.8147106, 47.3947643 ], + [ 7.8147745, 47.394804 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr135", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Sagi", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Sagi", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Sagi", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Sagi", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.2289859, 46.2163322 ], + [ 6.2289838, 46.2161909 ], + [ 6.2289709, 46.2160499 ], + [ 6.2289475, 46.2159095 ], + [ 6.2289135, 46.2157702 ], + [ 6.2288689999999995, 46.2156324 ], + [ 6.2288142, 46.2154963 ], + [ 6.2287493, 46.2153624 ], + [ 6.2286743, 46.2152311 ], + [ 6.2285895, 46.2151026 ], + [ 6.2284952, 46.2149774 ], + [ 6.2283915, 46.2148558 ], + [ 6.2282788, 46.2147382 ], + [ 6.2281574, 46.2146248 ], + [ 6.2280277, 46.2145159 ], + [ 6.2278899, 46.214412 ], + [ 6.2277444, 46.2143131 ], + [ 6.2275917, 46.2142197 ], + [ 6.2274322, 46.214132 ], + [ 6.2272662, 46.2140502 ], + [ 6.2270944, 46.2139745 ], + [ 6.226917, 46.2139052 ], + [ 6.2267347, 46.2138424 ], + [ 6.2265479, 46.2137863 ], + [ 6.2263570999999995, 46.2137371 ], + [ 6.2261629, 46.2136949 ], + [ 6.2259657, 46.2136598 ], + [ 6.2257662, 46.2136319 ], + [ 6.2255649, 46.2136113 ], + [ 6.2253622, 46.213598 ], + [ 6.2251589, 46.2135921 ], + [ 6.2249554, 46.2135936 ], + [ 6.2247523, 46.2136025 ], + [ 6.2245501, 46.2136188 ], + [ 6.2243494, 46.2136424 ], + [ 6.2241508, 46.2136732 ], + [ 6.2239548, 46.2137113 ], + [ 6.2237619, 46.2137564 ], + [ 6.2235727, 46.2138084 ], + [ 6.2233877, 46.2138672 ], + [ 6.2232073, 46.2139327 ], + [ 6.2230322, 46.2140047 ], + [ 6.2228627, 46.2140829 ], + [ 6.2226993, 46.2141671 ], + [ 6.2225425, 46.2142572 ], + [ 6.2223927, 46.2143529 ], + [ 6.2222503, 46.2144538 ], + [ 6.2221157, 46.2145598 ], + [ 6.2219894, 46.2146706 ], + [ 6.2218715, 46.2147857 ], + [ 6.2217625, 46.214905 ], + [ 6.2216626, 46.2150281 ], + [ 6.2215721, 46.2151547 ], + [ 6.2214913, 46.2152844 ], + [ 6.2214204, 46.2154168 ], + [ 6.2213595999999995, 46.2155516 ], + [ 6.221309, 46.2156885 ], + [ 6.2212688, 46.215827 ], + [ 6.2212391, 46.2159668 ], + [ 6.22122, 46.2161074 ], + [ 6.2212115, 46.2162486 ], + [ 6.2212137, 46.2163899 ], + [ 6.2212265, 46.2165309 ], + [ 6.2212499, 46.2166712 ], + [ 6.2212838999999995, 46.2168105 ], + [ 6.2213283, 46.2169484 ], + [ 6.2213831, 46.2170845 ], + [ 6.2214481, 46.2172183 ], + [ 6.221523, 46.2173497 ], + [ 6.2216078, 46.2174782 ], + [ 6.2217021, 46.2176033 ], + [ 6.2218058, 46.2177249 ], + [ 6.2219184, 46.2178426 ], + [ 6.2220398, 46.217956 ], + [ 6.2221696, 46.2180649 ], + [ 6.2223074, 46.2181688 ], + [ 6.2224528, 46.2182677 ], + [ 6.2226055, 46.2183611 ], + [ 6.2227651, 46.2184488 ], + [ 6.222931, 46.2185307 ], + [ 6.2231029, 46.2186063 ], + [ 6.2232802, 46.2186757 ], + [ 6.2234626, 46.2187385 ], + [ 6.2236494, 46.2187945 ], + [ 6.2238402, 46.2188438 ], + [ 6.2240345, 46.218886 ], + [ 6.2242316, 46.2189211 ], + [ 6.2244311, 46.218949 ], + [ 6.2246325, 46.2189696 ], + [ 6.2248352, 46.2189829 ], + [ 6.2250385, 46.2189887 ], + [ 6.2252421, 46.2189872 ], + [ 6.2254452, 46.2189783 ], + [ 6.2256474, 46.2189621 ], + [ 6.2258481, 46.2189385 ], + [ 6.2260467, 46.2189076 ], + [ 6.2262428, 46.2188696 ], + [ 6.2264356, 46.2188245 ], + [ 6.2266249, 46.2187725 ], + [ 6.2268099, 46.2187136 ], + [ 6.2269903, 46.2186481 ], + [ 6.2271655, 46.2185762 ], + [ 6.227335, 46.218498 ], + [ 6.2274983, 46.2184137 ], + [ 6.2276551, 46.2183236 ], + [ 6.2278049, 46.218228 ], + [ 6.2279473, 46.218127 ], + [ 6.2280819, 46.218021 ], + [ 6.2282083, 46.2179102 ], + [ 6.2283261, 46.2177951 ], + [ 6.2284351000000004, 46.2176757 ], + [ 6.228535, 46.2175526 ], + [ 6.2286255, 46.2174261 ], + [ 6.2287063, 46.2172964 ], + [ 6.2287771, 46.217164 ], + [ 6.228838, 46.2170291 ], + [ 6.2288885, 46.2168923 ], + [ 6.2289287, 46.2167538 ], + [ 6.2289584, 46.216614 ], + [ 6.2289775, 46.2164733 ], + [ 6.2289859, 46.2163322 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE27", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.2207926, 46.5978675 ], + [ 6.2205364, 46.5978706 ], + [ 6.2202811, 46.5978851 ], + [ 6.2200277, 46.5979112 ], + [ 6.2197773, 46.5979486 ], + [ 6.219531, 46.5979972 ], + [ 6.2192899, 46.5980569 ], + [ 6.2190549, 46.5981272 ], + [ 6.2188271, 46.598208 ], + [ 6.2186074, 46.5982989 ], + [ 6.2183969, 46.5983996 ], + [ 6.2181963, 46.5985095 ], + [ 6.2180067, 46.5986281 ], + [ 6.2178286, 46.5987552 ], + [ 6.2177044, 46.5988545 ], + [ 6.2175786, 46.5989603 ], + [ 6.2175372, 46.5989957 ], + [ 6.2173847, 46.5991376 ], + [ 6.217246, 46.5992861 ], + [ 6.2171218, 46.5994405 ], + [ 6.2170124, 46.5996002 ], + [ 6.2169184, 46.5997645 ], + [ 6.2168402, 46.5999327 ], + [ 6.2167782, 46.600104 ], + [ 6.2167325, 46.6002778 ], + [ 6.2167034, 46.6004532 ], + [ 6.216691, 46.6006296 ], + [ 6.2166954, 46.6008062 ], + [ 6.2167166, 46.6009822 ], + [ 6.2167544, 46.6011568 ], + [ 6.2168086, 46.6013294 ], + [ 6.2168792, 46.6014992 ], + [ 6.2169657, 46.6016654 ], + [ 6.2170678, 46.6018274 ], + [ 6.217185, 46.6019844 ], + [ 6.2173169, 46.6021358 ], + [ 6.2174629, 46.602281 ], + [ 6.2176223, 46.6024192 ], + [ 6.2177945, 46.60255 ], + [ 6.2179788, 46.6026727 ], + [ 6.2181743, 46.6027868 ], + [ 6.2181812, 46.6027906 ], + [ 6.2183365, 46.602875 ], + [ 6.2185354, 46.6029763 ], + [ 6.2187509, 46.6030718 ], + [ 6.2189749, 46.6031575 ], + [ 6.2192066, 46.6032329 ], + [ 6.219445, 46.6032977 ], + [ 6.219689, 46.6033516 ], + [ 6.2199376, 46.6033943 ], + [ 6.2201897, 46.6034258 ], + [ 6.2204443, 46.6034458 ], + [ 6.2207002, 46.6034544 ], + [ 6.2209564, 46.6034513 ], + [ 6.2212117, 46.6034367 ], + [ 6.2214652, 46.6034107 ], + [ 6.2217156, 46.6033733 ], + [ 6.2219619, 46.6033246 ], + [ 6.2222031, 46.603265 ], + [ 6.2224381, 46.6031946 ], + [ 6.2226659, 46.6031138 ], + [ 6.2228855, 46.6030229 ], + [ 6.2230961, 46.6029223 ], + [ 6.2232966, 46.6028124 ], + [ 6.2234863, 46.6026937 ], + [ 6.2236644, 46.6025667 ], + [ 6.2238225, 46.6024384 ], + [ 6.2239449, 46.6023326 ], + [ 6.2239524, 46.6023261 ], + [ 6.2241048, 46.602184199999996 ], + [ 6.2242435, 46.6020357 ], + [ 6.2243677, 46.6018812 ], + [ 6.2244771, 46.6017215 ], + [ 6.224571, 46.6015572 ], + [ 6.2246492, 46.601389 ], + [ 6.2247112, 46.6012177 ], + [ 6.2247569, 46.6010439 ], + [ 6.2247859, 46.6008685 ], + [ 6.2247983, 46.6006921 ], + [ 6.2247939, 46.6005155 ], + [ 6.2247727, 46.6003395 ], + [ 6.2247349, 46.6001649 ], + [ 6.2246806, 46.5999923 ], + [ 6.22461, 46.5998225 ], + [ 6.2245235, 46.5996563 ], + [ 6.2244214, 46.5994943 ], + [ 6.2243041, 46.5993373 ], + [ 6.2241722, 46.5991859 ], + [ 6.2240263, 46.5990408 ], + [ 6.2238668, 46.5989026 ], + [ 6.2236946, 46.5987718 ], + [ 6.2235103, 46.5986491 ], + [ 6.2233408, 46.5985493 ], + [ 6.223189, 46.5984649 ], + [ 6.2231631, 46.5984506 ], + [ 6.2229572, 46.5983456 ], + [ 6.2227417, 46.59825 ], + [ 6.2225177, 46.5981643 ], + [ 6.222286, 46.598089 ], + [ 6.2220476, 46.5980242 ], + [ 6.2218037, 46.5979703 ], + [ 6.2215551, 46.5979276 ], + [ 6.221303, 46.5978961 ], + [ 6.2210485, 46.597876 ], + [ 6.2207926, 46.5978675 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00029", + "country" : "CHE", + "name" : [ + { + "text" : "Hôpital régional eHnv site de La Vallée - Le Sentier", + "lang" : "de-CH" + }, + { + "text" : "Hôpital régional eHnv site de La Vallée - Le Sentier", + "lang" : "fr-CH" + }, + { + "text" : "Hôpital régional eHnv site de La Vallée - Le Sentier", + "lang" : "it-CH" + }, + { + "text" : "Hôpital régional eHnv site de La Vallée - Le Sentier", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kantonspolizei Waadt", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale vaudoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Vaud", + "lang" : "it-CH" + }, + { + "text" : "Vaud Cantonal Police", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.pcv@vd.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8789195, 46.6478038 ], + [ 7.8785694, 46.6475587 ], + [ 7.8781153, 46.6473526 ], + [ 7.8778284, 46.6476525 ], + [ 7.877683, 46.6479354 ], + [ 7.8777155, 46.6481036 ], + [ 7.8778082, 46.6483654 ], + [ 7.8779309, 46.6483329 ], + [ 7.8780757999999995, 46.6483335 ], + [ 7.8781265, 46.648281 ], + [ 7.8785854, 46.6481593 ], + [ 7.8789236, 46.6478057 ], + [ 7.8789195, 46.6478038 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSXG002", + "country" : "CHE", + "name" : [ + { + "text" : "LSXG Gsteigwiler (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSXG Gsteigwiler (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSXG Gsteigwiler (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSXG Gsteigwiler (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swiss Helicopter AG", + "lang" : "de-CH" + }, + { + "text" : "Swiss Helicopter AG", + "lang" : "fr-CH" + }, + { + "text" : "Swiss Helicopter AG", + "lang" : "it-CH" + }, + { + "text" : "Swiss Helicopter AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Basis Gsteigwiler", + "lang" : "de-CH" + }, + { + "text" : "Basis Gsteigwiler", + "lang" : "fr-CH" + }, + { + "text" : "Basis Gsteigwiler", + "lang" : "it-CH" + }, + { + "text" : "Basis Gsteigwiler", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Martin Burgener", + "lang" : "de-CH" + }, + { + "text" : "Martin Burgener", + "lang" : "fr-CH" + }, + { + "text" : "Martin Burgener", + "lang" : "it-CH" + }, + { + "text" : "Martin Burgener", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swisshelicopter.ch/en/about-us/helicopter-bases/gsteigwiler-interlaken", + "email" : "berneroberland@swisshelicopter.ch", + "phone" : "0041338289000", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P02DT12H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.2114097, 46.3441103 ], + [ 7.2103367, 46.3435009 ], + [ 7.209431, 46.3429854 ], + [ 7.1980359, 46.3365073 ], + [ 7.1974335, 46.3361642 ], + [ 7.1967733, 46.335972 ], + [ 7.195802, 46.3356569 ], + [ 7.1938515, 46.3344581 ], + [ 7.1923447, 46.3331009 ], + [ 7.1913694, 46.3313923 ], + [ 7.1911705, 46.3311697 ], + [ 7.1905425, 46.3310379 ], + [ 7.1889956, 46.3311037 ], + [ 7.1870827, 46.3313747 ], + [ 7.1854568, 46.3316617 ], + [ 7.1838655, 46.3317579 ], + [ 7.1831346, 46.3322609 ], + [ 7.1816835, 46.3329089 ], + [ 7.1829176, 46.3336539 ], + [ 7.1836981, 46.3344814 ], + [ 7.1844999, 46.3355016 ], + [ 7.1845166, 46.3366414 ], + [ 7.1849558, 46.337416 ], + [ 7.1844905, 46.3386068 ], + [ 7.183623, 46.3405102 ], + [ 7.1825053, 46.3417508 ], + [ 7.1812517, 46.3426071 ], + [ 7.1804036, 46.3434022 ], + [ 7.1812659, 46.3437127 ], + [ 7.1813957, 46.3437427 ], + [ 7.1827191, 46.3440506 ], + [ 7.1844914, 46.3447581 ], + [ 7.1848428, 46.3448974 ], + [ 7.1850749, 46.3449897 ], + [ 7.1856739, 46.3452231 ], + [ 7.1860043, 46.3453966 ], + [ 7.186704, 46.3457679 ], + [ 7.1877224, 46.3460517 ], + [ 7.1884501, 46.3462737 ], + [ 7.1895283, 46.3465514 ], + [ 7.1900135, 46.3466766 ], + [ 7.1900888, 46.3466929 ], + [ 7.1902431, 46.3467562 ], + [ 7.1907147, 46.3470335 ], + [ 7.191557, 46.3471882 ], + [ 7.1920969, 46.3472875 ], + [ 7.1918854, 46.3478069 ], + [ 7.1915802, 46.3483712 ], + [ 7.1915566, 46.3484161 ], + [ 7.1918602, 46.3485032 ], + [ 7.1920029, 46.3485484 ], + [ 7.1921378, 46.3485856 ], + [ 7.1921612, 46.3485902 ], + [ 7.1921793, 46.3485893 ], + [ 7.1922015, 46.3485822 ], + [ 7.1922314, 46.3485687 ], + [ 7.1922587, 46.3485535 ], + [ 7.1923447, 46.3484961 ], + [ 7.1924463, 46.3484424 ], + [ 7.1924893, 46.34842 ], + [ 7.1926267, 46.348485 ], + [ 7.192711, 46.3485212 ], + [ 7.1928743, 46.3485953 ], + [ 7.1928899, 46.3486008 ], + [ 7.1929119, 46.3486017 ], + [ 7.1931224, 46.3485905 ], + [ 7.1932667, 46.3485782 ], + [ 7.1932823, 46.3485737 ], + [ 7.1932966, 46.3485675 ], + [ 7.193307, 46.3485612 ], + [ 7.1933631, 46.3485154 ], + [ 7.1934726, 46.3484347 ], + [ 7.1935795, 46.3483531 ], + [ 7.1936081, 46.3483388 ], + [ 7.1936744, 46.3483416 ], + [ 7.1937276, 46.348348 ], + [ 7.1937938, 46.3483598 ], + [ 7.1938431, 46.3483734 ], + [ 7.1940115, 46.3484782 ], + [ 7.1942188, 46.3486001 ], + [ 7.1942408, 46.3486109 ], + [ 7.1942603, 46.3486181 ], + [ 7.1943031, 46.3486245 ], + [ 7.1944706, 46.3486393 ], + [ 7.1945239, 46.3486412 ], + [ 7.1946395, 46.3486504 ], + [ 7.1946888, 46.3486568 ], + [ 7.1949209, 46.3487392 ], + [ 7.1951408, 46.348674 ], + [ 7.1961905999999995, 46.3486376 ], + [ 7.1970177, 46.348723 ], + [ 7.1976527, 46.3487631 ], + [ 7.1980343, 46.3488457 ], + [ 7.1984844, 46.348996 ], + [ 7.1992493, 46.3493449 ], + [ 7.2039838, 46.3503696 ], + [ 7.2062447, 46.3508582 ], + [ 7.2064701, 46.3506967 ], + [ 7.2067581, 46.3504904 ], + [ 7.2069194, 46.3480098 ], + [ 7.2100213, 46.3455945 ], + [ 7.2101113, 46.3455065 ], + [ 7.2108039, 46.3448332 ], + [ 7.2111287, 46.3445181 ], + [ 7.2114097, 46.3441103 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00043", + "country" : "CHE", + "name" : [ + { + "text" : "Pierres Pointes", + "lang" : "de-CH" + }, + { + "text" : "Pierres Pointes", + "lang" : "fr-CH" + }, + { + "text" : "Pierres Pointes", + "lang" : "it-CH" + }, + { + "text" : "Pierres Pointes", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Generaldirektion für Umwelt", + "lang" : "de-CH" + }, + { + "text" : "Direction générale de l'environnement", + "lang" : "fr-CH" + }, + { + "text" : "Direzione generale dell'Ambiente", + "lang" : "it-CH" + }, + { + "text" : "Environment Department", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.dge@vd.ch", + "phone" : "0041213164422", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5487231, 47.4713039 ], + [ 7.5483317, 47.4690083 ], + [ 7.5481705, 47.4690398 ], + [ 7.5479333, 47.4690798 ], + [ 7.5476963999999995, 47.4691153 ], + [ 7.5475355, 47.4691332 ], + [ 7.5474716, 47.4691404 ], + [ 7.5474213, 47.4691432 ], + [ 7.5471994, 47.4691533 ], + [ 7.5470616, 47.4691558 ], + [ 7.5468499, 47.4691531 ], + [ 7.5465164, 47.4691402 ], + [ 7.5461301, 47.4691238 ], + [ 7.5459055, 47.4691108 ], + [ 7.5457003, 47.4691001 ], + [ 7.545498, 47.4690922 ], + [ 7.5453301, 47.4690888 ], + [ 7.5453222, 47.4703685 ], + [ 7.5434545, 47.4704857 ], + [ 7.5436264, 47.4705765 ], + [ 7.5437003, 47.470644 ], + [ 7.5437551, 47.4707293 ], + [ 7.5438122, 47.4708253 ], + [ 7.5438578, 47.4708936 ], + [ 7.5439145, 47.47099 ], + [ 7.5439516, 47.4710321 ], + [ 7.5440206, 47.4710798 ], + [ 7.5441411, 47.4711175 ], + [ 7.5442972, 47.471146 ], + [ 7.5443932, 47.4711579 ], + [ 7.5445757, 47.471175 ], + [ 7.5447245, 47.4711852 ], + [ 7.5450165, 47.4712198 ], + [ 7.5451565, 47.4712529 ], + [ 7.5452485, 47.4712966 ], + [ 7.5453231, 47.4713681 ], + [ 7.545337, 47.4713983 ], + [ 7.5453584, 47.4714228 ], + [ 7.5453714, 47.4714341 ], + [ 7.5453858, 47.4714444 ], + [ 7.5454015, 47.4714539 ], + [ 7.5454184, 47.4714624 ], + [ 7.5454364, 47.4714698 ], + [ 7.5454552, 47.4714761 ], + [ 7.5454749, 47.4714812 ], + [ 7.5454939, 47.471483 ], + [ 7.5455131, 47.4714837 ], + [ 7.5455322, 47.4714831 ], + [ 7.5456122, 47.4714639 ], + [ 7.5457002, 47.47145 ], + [ 7.5457896, 47.4714417 ], + [ 7.5458798, 47.4714389 ], + [ 7.5459700000000005, 47.4714416 ], + [ 7.5460595, 47.4714498 ], + [ 7.5461475, 47.4714635 ], + [ 7.5464201, 47.4715226 ], + [ 7.546506, 47.4715426 ], + [ 7.5465505, 47.4715489 ], + [ 7.5465956, 47.4715528 ], + [ 7.546641, 47.471554 ], + [ 7.5466864000000005, 47.4715527 ], + [ 7.5469914, 47.4715557 ], + [ 7.5472269, 47.4715347 ], + [ 7.5474592, 47.471501 ], + [ 7.5476868, 47.4714549 ], + [ 7.5481317, 47.47139 ], + [ 7.5487231, 47.4713039 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns100", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Amselfels", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Amselfels", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Amselfels", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Amselfels", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.0707507, 47.0421586 ], + [ 9.070741, 47.0420175 ], + [ 9.0707205, 47.0418769 ], + [ 9.0706892, 47.0417373 ], + [ 9.0706473, 47.0415989 ], + [ 9.0705949, 47.0414623 ], + [ 9.0705321, 47.0413277 ], + [ 9.0704591, 47.0411955 ], + [ 9.070376, 47.0410661 ], + [ 9.0702832, 47.0409399 ], + [ 9.0701808, 47.0408172 ], + [ 9.0700692, 47.0406983 ], + [ 9.0699486, 47.0405835 ], + [ 9.0698194, 47.0404733 ], + [ 9.069682, 47.0403678 ], + [ 9.0695366, 47.0402673 ], + [ 9.0693838, 47.0401722 ], + [ 9.0692239, 47.0400827 ], + [ 9.0690574, 47.0399991 ], + [ 9.0688846, 47.0399215 ], + [ 9.0687062, 47.0398502 ], + [ 9.0685226, 47.0397854 ], + [ 9.0683343, 47.0397272 ], + [ 9.0681417, 47.0396759 ], + [ 9.0679455, 47.0396315 ], + [ 9.0677462, 47.0395942 ], + [ 9.0675443, 47.0395641 ], + [ 9.0673403, 47.0395412 ], + [ 9.0671349, 47.0395257 ], + [ 9.0669286, 47.0395175 ], + [ 9.0667219, 47.0395168 ], + [ 9.0665155, 47.0395234 ], + [ 9.0663099, 47.0395374 ], + [ 9.0661056, 47.0395587 ], + [ 9.0659032, 47.0395874 ], + [ 9.0657033, 47.0396232 ], + [ 9.0655064, 47.0396661 ], + [ 9.0653131, 47.039716 ], + [ 9.0651238, 47.0397728 ], + [ 9.0649391, 47.0398363 ], + [ 9.0647596, 47.0399062 ], + [ 9.0645857, 47.0399825 ], + [ 9.0644178, 47.040065 ], + [ 9.0642565, 47.0401533 ], + [ 9.0641022, 47.0402472 ], + [ 9.0639553, 47.0403466 ], + [ 9.0638161, 47.0404511 ], + [ 9.0636852, 47.0405604 ], + [ 9.0635628, 47.0406742 ], + [ 9.0634493, 47.0407923 ], + [ 9.063345, 47.0409142 ], + [ 9.0632502, 47.0410398 ], + [ 9.0631651, 47.0411685 ], + [ 9.06309, 47.0413001 ], + [ 9.063025, 47.0414342 ], + [ 9.0629705, 47.0415705 ], + [ 9.0629264, 47.0417085 ], + [ 9.0628929, 47.0418479 ], + [ 9.0628702, 47.0419884 ], + [ 9.0628583, 47.0421294 ], + [ 9.0628571, 47.0422707 ], + [ 9.0628668, 47.042411799999996 ], + [ 9.0628873, 47.0425524 ], + [ 9.0629185, 47.042692 ], + [ 9.0629604, 47.0428304 ], + [ 9.0630128, 47.042967 ], + [ 9.0630756, 47.0431016 ], + [ 9.0631486, 47.0432338 ], + [ 9.0632316, 47.0433632 ], + [ 9.0633245, 47.0434894 ], + [ 9.0634268, 47.0436122 ], + [ 9.0635384, 47.0437311 ], + [ 9.063659, 47.0438458 ], + [ 9.0637882, 47.0439561 ], + [ 9.0639257, 47.0440616 ], + [ 9.064071, 47.044162 ], + [ 9.0642238, 47.0442571 ], + [ 9.0643838, 47.0443466 ], + [ 9.0645503, 47.0444303 ], + [ 9.064723, 47.0445079 ], + [ 9.0649014, 47.0445792 ], + [ 9.0650851, 47.044644 ], + [ 9.0652734, 47.0447022 ], + [ 9.065466, 47.0447535 ], + [ 9.0656622, 47.0447979 ], + [ 9.0658615, 47.0448352 ], + [ 9.0660635, 47.0448654 ], + [ 9.0662674, 47.0448882 ], + [ 9.0664728, 47.0449037 ], + [ 9.0666792, 47.0449119 ], + [ 9.0668859, 47.0449127 ], + [ 9.0670923, 47.044906 ], + [ 9.067298, 47.044892 ], + [ 9.0675023, 47.0448707 ], + [ 9.0677047, 47.0448421 ], + [ 9.0679046, 47.0448062 ], + [ 9.0681015, 47.0447633 ], + [ 9.0682949, 47.0447134 ], + [ 9.0684841, 47.0446566 ], + [ 9.0686688, 47.0445932 ], + [ 9.0688483, 47.0445232 ], + [ 9.0690223, 47.0444469 ], + [ 9.0691901, 47.0443645 ], + [ 9.0693514, 47.0442761 ], + [ 9.0695058, 47.0441822 ], + [ 9.0696527, 47.0440828 ], + [ 9.0697918, 47.0439783 ], + [ 9.0699228, 47.043869 ], + [ 9.0700451, 47.0437552 ], + [ 9.0701586, 47.0436371 ], + [ 9.0702629, 47.0435151 ], + [ 9.0703578, 47.0433896 ], + [ 9.0704428, 47.0432608 ], + [ 9.0705179, 47.0431292 ], + [ 9.0705829, 47.0429951 ], + [ 9.0706374, 47.0428588 ], + [ 9.0706815, 47.0427208 ], + [ 9.0707149, 47.0425814 ], + [ 9.0707376, 47.042441 ], + [ 9.0707496, 47.0422999 ], + [ 9.0707507, 47.0421586 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GLA0001", + "country" : "CHE", + "name" : [ + { + "text" : "Kantonsgefängnis Glarus", + "lang" : "de-CH" + }, + { + "text" : "Kantonsgefängnis Glarus", + "lang" : "fr-CH" + }, + { + "text" : "Kantonsgefängnis Glarus", + "lang" : "it-CH" + }, + { + "text" : "Kantonsgefängnis Glarus", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Glarus", + "lang" : "de-CH" + }, + { + "text" : "Kanton Glarus", + "lang" : "fr-CH" + }, + { + "text" : "Kanton Glarus", + "lang" : "it-CH" + }, + { + "text" : "Kanton Glarus", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Hauptabteilung Justiz", + "lang" : "de-CH" + }, + { + "text" : "Hauptabteilung Justiz", + "lang" : "fr-CH" + }, + { + "text" : "Hauptabteilung Justiz", + "lang" : "it-CH" + }, + { + "text" : "Hauptabteilung Justiz", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.gl.ch/verwaltung/sicherheit-und-justiz/justiz.html/1259", + "email" : "justiz@gl.ch", + "phone" : "0041556466881", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8660748, 47.4724394 ], + [ 7.8660682, 47.4722983 ], + [ 7.8660507, 47.4721575 ], + [ 7.8660224, 47.4720175 ], + [ 7.8659833, 47.4718788 ], + [ 7.8659336, 47.4717416 ], + [ 7.8658733, 47.4716064 ], + [ 7.8658027, 47.4714735 ], + [ 7.8657219, 47.4713433 ], + [ 7.8656312, 47.4712161 ], + [ 7.8655308, 47.4710923 ], + [ 7.8654209999999996, 47.4709723 ], + [ 7.8653021, 47.4708563 ], + [ 7.8651743, 47.4707447 ], + [ 7.8650382, 47.4706378 ], + [ 7.8648939, 47.4705359 ], + [ 7.864742, 47.4704392 ], + [ 7.8645829, 47.470348 ], + [ 7.8644169, 47.4702626 ], + [ 7.8642446, 47.4701833 ], + [ 7.8640664000000005, 47.4701101 ], + [ 7.8638828, 47.4700434 ], + [ 7.8636942, 47.4699832 ], + [ 7.8635013, 47.4699299 ], + [ 7.8633046, 47.4698835 ], + [ 7.8631045, 47.4698441 ], + [ 7.8629017, 47.4698118 ], + [ 7.8626966, 47.4697868 ], + [ 7.86249, 47.4697692 ], + [ 7.8622822, 47.4697588 ], + [ 7.8620739, 47.4697559 ], + [ 7.8618657, 47.4697604 ], + [ 7.8616581, 47.4697722 ], + [ 7.8614517, 47.4697914 ], + [ 7.861247, 47.4698179 ], + [ 7.8610447, 47.4698516 ], + [ 7.8608453, 47.4698924 ], + [ 7.8606493, 47.4699403 ], + [ 7.8604572, 47.4699951 ], + [ 7.8602697, 47.4700566 ], + [ 7.8600871, 47.4701246 ], + [ 7.8599101000000005, 47.4701991 ], + [ 7.859739, 47.4702797 ], + [ 7.8595744, 47.4703663 ], + [ 7.8594167, 47.4704586 ], + [ 7.8592664, 47.4705564 ], + [ 7.8591238, 47.4706594 ], + [ 7.8589893, 47.4707673 ], + [ 7.8588634, 47.4708798 ], + [ 7.8587463, 47.4709967 ], + [ 7.8586384, 47.4711175 ], + [ 7.85854, 47.471242 ], + [ 7.8584513, 47.4713698 ], + [ 7.8583726, 47.4715006 ], + [ 7.8583041, 47.471634 ], + [ 7.858246, 47.4717697 ], + [ 7.8581984, 47.4719072 ], + [ 7.8581616, 47.4720463 ], + [ 7.8581354999999995, 47.4721864 ], + [ 7.8581202, 47.4723273 ], + [ 7.8581159, 47.4724685 ], + [ 7.8581225, 47.4726097 ], + [ 7.8581399, 47.4727505 ], + [ 7.8581682, 47.4728904 ], + [ 7.8582073, 47.4730292 ], + [ 7.858257, 47.4731664 ], + [ 7.8583172, 47.4733016 ], + [ 7.8583878, 47.4734345 ], + [ 7.8584686, 47.4735647 ], + [ 7.8585593, 47.4736919 ], + [ 7.8586597, 47.4738157 ], + [ 7.8587695, 47.4739357 ], + [ 7.8588884, 47.4740517 ], + [ 7.8590161, 47.4741633 ], + [ 7.8591523, 47.4742702 ], + [ 7.8592965, 47.4743722 ], + [ 7.8594484, 47.4744689 ], + [ 7.8596076, 47.47456 ], + [ 7.8597735, 47.4746454 ], + [ 7.8599459, 47.4747248 ], + [ 7.8601241, 47.474798 ], + [ 7.8603077, 47.4748647 ], + [ 7.8604963, 47.4749248 ], + [ 7.8606891999999995, 47.4749782 ], + [ 7.860886, 47.4750246 ], + [ 7.861086, 47.475064 ], + [ 7.8612889, 47.4750963 ], + [ 7.861494, 47.4751213 ], + [ 7.8617007, 47.475139 ], + [ 7.8619085, 47.4751493 ], + [ 7.8621168, 47.4751522 ], + [ 7.862325, 47.4751478 ], + [ 7.8625327, 47.4751359 ], + [ 7.8627391, 47.4751167 ], + [ 7.8629437, 47.4750902 ], + [ 7.8631461, 47.4750565 ], + [ 7.8633455, 47.4750157 ], + [ 7.8635415, 47.4749678 ], + [ 7.8637336, 47.474913 ], + [ 7.8639211, 47.4748515 ], + [ 7.8641037, 47.4747834 ], + [ 7.8642807999999995, 47.474709 ], + [ 7.8644518, 47.4746283 ], + [ 7.8646164, 47.4745417 ], + [ 7.8647741, 47.4744494 ], + [ 7.8649245, 47.4743516 ], + [ 7.8650671, 47.4742486 ], + [ 7.8652014999999995, 47.4741407 ], + [ 7.8653275, 47.4740282 ], + [ 7.8654445, 47.4739113 ], + [ 7.8655524, 47.4737905 ], + [ 7.8656508, 47.473666 ], + [ 7.8657395, 47.4735382 ], + [ 7.8658182, 47.4734073 ], + [ 7.8658867, 47.4732739 ], + [ 7.8659448, 47.4731383 ], + [ 7.8659923, 47.4730007 ], + [ 7.8660292, 47.4728617 ], + [ 7.8660552, 47.4727216 ], + [ 7.8660704, 47.4725807 ], + [ 7.8660748, 47.4724394 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0083", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Ormalingen", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Ormalingen", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Ormalingen", + "lang" : "it-CH" + }, + { + "text" : "Substation Ormalingen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5047118, 47.4386894 ], + [ 7.5046802, 47.4380756 ], + [ 7.5045869, 47.4374648 ], + [ 7.5044322999999995, 47.4368596 ], + [ 7.5042173, 47.4362631 ], + [ 7.5039428, 47.4356779 ], + [ 7.50361, 47.4351068 ], + [ 7.5032206, 47.4345524 ], + [ 7.5027764, 47.4340173 ], + [ 7.5022794, 47.433504 ], + [ 7.5017319, 47.433015 ], + [ 7.5011366, 47.4325524 ], + [ 7.5004961, 47.4321185 ], + [ 7.4998135, 47.4317152 ], + [ 7.4990919, 47.4313445 ], + [ 7.4983347, 47.4310081 ], + [ 7.4975455, 47.4307075 ], + [ 7.4967279, 47.4304441 ], + [ 7.4958857, 47.4302192 ], + [ 7.4950229, 47.4300339 ], + [ 7.4941434, 47.4298889 ], + [ 7.4932514, 47.429785 ], + [ 7.4923511, 47.4297226 ], + [ 7.4914466, 47.429702 ], + [ 7.4905421, 47.4297234 ], + [ 7.4896418, 47.4297866 ], + [ 7.4887501, 47.4298913 ], + [ 7.4878709, 47.4300371 ], + [ 7.4870084, 47.4302232 ], + [ 7.4861667, 47.4304489 ], + [ 7.4853496, 47.430713 ], + [ 7.4845609, 47.4310143 ], + [ 7.4838044, 47.4313514 ], + [ 7.4830836, 47.4317227 ], + [ 7.4824017, 47.4321266 ], + [ 7.4817621, 47.4325611 ], + [ 7.4811676, 47.4330242 ], + [ 7.4806211, 47.4335137 ], + [ 7.4801251, 47.4340274 ], + [ 7.4796819, 47.4345629 ], + [ 7.4792936, 47.4351177 ], + [ 7.478962, 47.4356891 ], + [ 7.4786886, 47.4362745 ], + [ 7.4784747, 47.4368713 ], + [ 7.4783214, 47.4374765 ], + [ 7.4782292, 47.4380875 ], + [ 7.4781988, 47.4387013 ], + [ 7.4782301, 47.4393151 ], + [ 7.4783232, 47.4399259 ], + [ 7.4784774, 47.4405311 ], + [ 7.4786922, 47.4411277 ], + [ 7.4789664, 47.441713 ], + [ 7.479299, 47.4422842 ], + [ 7.4796882, 47.4428386 ], + [ 7.4801323, 47.4433738 ], + [ 7.4806291, 47.4438872 ], + [ 7.4811765, 47.4443763 ], + [ 7.4817718, 47.444839 ], + [ 7.4824123, 47.445273 ], + [ 7.483095, 47.4456763 ], + [ 7.4838167, 47.4460472 ], + [ 7.4845739, 47.4463837 ], + [ 7.4853633, 47.4466844 ], + [ 7.4861811, 47.4469478 ], + [ 7.4870235, 47.4471728 ], + [ 7.4878866, 47.4473582 ], + [ 7.4887663, 47.4475032 ], + [ 7.4896586, 47.4476072 ], + [ 7.4905593, 47.4476696 ], + [ 7.4914641, 47.4476902 ], + [ 7.4923689, 47.4476688 ], + [ 7.4932694, 47.4476056 ], + [ 7.4941615, 47.4475008 ], + [ 7.4950409, 47.447355 ], + [ 7.4959036, 47.4471688 ], + [ 7.4967456, 47.4469431 ], + [ 7.4975629, 47.4466789 ], + [ 7.4983517, 47.4463775 ], + [ 7.4991083, 47.4460403 ], + [ 7.4998293, 47.4456688 ], + [ 7.5005111, 47.4452649 ], + [ 7.5011508, 47.4448303 ], + [ 7.5017452, 47.4443671 ], + [ 7.5022915999999995, 47.4438774 ], + [ 7.5027875, 47.4433636 ], + [ 7.5032305, 47.4428281 ], + [ 7.5036187, 47.4422732 ], + [ 7.5039501, 47.4417018 ], + [ 7.5042232, 47.4411162 ], + [ 7.5044368, 47.4405194 ], + [ 7.5045899, 47.4399142 ], + [ 7.5046817, 47.4393032 ], + [ 7.5047118, 47.4386894 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSPD001", + "country" : "CHE", + "name" : [ + { + "text" : "LSPD Dittingen", + "lang" : "de-CH" + }, + { + "text" : "LSPD Dittingen", + "lang" : "fr-CH" + }, + { + "text" : "LSPD Dittingen", + "lang" : "it-CH" + }, + { + "text" : "LSPD Dittingen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Segelfluggruppe Dittingen", + "lang" : "de-CH" + }, + { + "text" : "Segelfluggruppe Dittingen", + "lang" : "fr-CH" + }, + { + "text" : "Segelfluggruppe Dittingen", + "lang" : "it-CH" + }, + { + "text" : "Segelfluggruppe Dittingen", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Philipp Glogg", + "lang" : "de-CH" + }, + { + "text" : "Philipp Glogg", + "lang" : "fr-CH" + }, + { + "text" : "Philipp Glogg", + "lang" : "it-CH" + }, + { + "text" : "Philipp Glogg", + "lang" : "en-GB" + } + ], + "siteURL" : "https://sg-dittingen.ch/e/index.php/c-buero#regelungen", + "email" : "info@sg-dittingen.ch", + "phone" : "0041796458361", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P01DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6505798, 47.4883677 ], + [ 7.6505206, 47.4882651 ], + [ 7.6512826, 47.4881861 ], + [ 7.6532282, 47.4879799 ], + [ 7.6543944, 47.4877298 ], + [ 7.6543946, 47.4877298 ], + [ 7.6543949, 47.4877297 ], + [ 7.6544251, 47.4877232 ], + [ 7.6559308999999995, 47.4873992 ], + [ 7.6555055, 47.4872039 ], + [ 7.6546061, 47.4867986 ], + [ 7.6536719, 47.4863751 ], + [ 7.6528203999999995, 47.4861467 ], + [ 7.6516497, 47.485885 ], + [ 7.6509887, 47.4857258 ], + [ 7.6502851, 47.4853899 ], + [ 7.6474608, 47.4864882 ], + [ 7.6474639, 47.4865181 ], + [ 7.6474571000000005, 47.4865477 ], + [ 7.6474407, 47.4865755 ], + [ 7.6473524, 47.4866882 ], + [ 7.6473184, 47.486747 ], + [ 7.647293, 47.4868078 ], + [ 7.6472847999999995, 47.4868454 ], + [ 7.6472805, 47.4868833 ], + [ 7.6472801, 47.4869213 ], + [ 7.6472835, 47.4869593 ], + [ 7.6472925, 47.4869948 ], + [ 7.6473055, 47.4870297 ], + [ 7.6473521, 47.487102 ], + [ 7.6474071, 47.4871715 ], + [ 7.6474440999999995, 47.4872108 ], + [ 7.6474844, 47.4872486 ], + [ 7.647528, 47.4872846 ], + [ 7.6475748, 47.4873188 ], + [ 7.6476219, 47.4873527 ], + [ 7.6476718, 47.4873849 ], + [ 7.6477242, 47.4874151 ], + [ 7.647779, 47.4874433 ], + [ 7.6478464, 47.487476 ], + [ 7.6479183, 47.4875038 ], + [ 7.6479674, 47.487524 ], + [ 7.6480147, 47.487546 ], + [ 7.6480453, 47.4875655 ], + [ 7.6480712, 47.4875879 ], + [ 7.6480841, 47.4876087 ], + [ 7.6480877, 47.4876312 ], + [ 7.6480817, 47.4876534 ], + [ 7.6480668, 47.4876736 ], + [ 7.6480439, 47.48769 ], + [ 7.6480152, 47.4877014 ], + [ 7.6479786, 47.4877119 ], + [ 7.6479408, 47.48772 ], + [ 7.647902, 47.4877256 ], + [ 7.6478626, 47.4877287 ], + [ 7.647632, 47.4877313 ], + [ 7.6474014, 47.4877343 ], + [ 7.6468027, 47.4877461 ], + [ 7.6467667, 47.4877469 ], + [ 7.6467313, 47.487751 ], + [ 7.6466666, 47.4877657 ], + [ 7.6466028999999995, 47.4877822 ], + [ 7.6465166, 47.4878119 ], + [ 7.6464338, 47.4878459 ], + [ 7.6463415999999995, 47.4878922 ], + [ 7.6462544, 47.4879428 ], + [ 7.6461726, 47.4879974 ], + [ 7.6460968, 47.4880558 ], + [ 7.6460272, 47.4881176 ], + [ 7.6459642, 47.4881827 ], + [ 7.6459067, 47.488251 ], + [ 7.645857, 47.4883221 ], + [ 7.645796, 47.4884271 ], + [ 7.6457387, 47.488533 ], + [ 7.6455653, 47.488904 ], + [ 7.6455509, 47.4889423 ], + [ 7.645544, 47.4889815 ], + [ 7.6455448, 47.489021 ], + [ 7.6455532999999996, 47.48906 ], + [ 7.6455722, 47.4891042 ], + [ 7.6455955, 47.4891474 ], + [ 7.645623, 47.4891895 ], + [ 7.6456547, 47.4892301 ], + [ 7.6456843, 47.4892754 ], + [ 7.6457197, 47.4893187 ], + [ 7.6457606, 47.4893597 ], + [ 7.6458067, 47.4893982 ], + [ 7.6458300999999995, 47.4894144 ], + [ 7.6458579, 47.4894271 ], + [ 7.6461713, 47.4895432 ], + [ 7.646268, 47.4895719 ], + [ 7.6463671, 47.4895964 ], + [ 7.6464683, 47.4896167 ], + [ 7.6465711, 47.4896326 ], + [ 7.6466427, 47.4896373 ], + [ 7.6467145, 47.4896402 ], + [ 7.64781, 47.4896758 ], + [ 7.6479374, 47.4896803 ], + [ 7.6480649, 47.4896841 ], + [ 7.6482501, 47.4896844 ], + [ 7.6484353, 47.4896798 ], + [ 7.6485057, 47.4896768 ], + [ 7.6485757, 47.4896708 ], + [ 7.6486449, 47.4896618 ], + [ 7.6487131999999995, 47.4896498 ], + [ 7.6487949, 47.4896368 ], + [ 7.648878, 47.4896293 ], + [ 7.6489559, 47.4896257 ], + [ 7.649034, 47.489626 ], + [ 7.6490651, 47.4896434 ], + [ 7.6490899, 47.489665 ], + [ 7.6505656, 47.4897374 ], + [ 7.6505798, 47.4883677 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr013", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Hornichopf", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Hornichopf", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Hornichopf", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Hornichopf", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.0284125, 46.2145764 ], + [ 6.028478, 46.214608 ], + [ 6.0280412, 46.2148028 ], + [ 6.0271759, 46.2156676 ], + [ 6.0268532, 46.2166965 ], + [ 6.0271223, 46.2177328 ], + [ 6.0279422, 46.2186187 ], + [ 6.0291882, 46.2192194 ], + [ 6.0306704, 46.2194433 ], + [ 6.0308595, 46.2194196 ], + [ 6.0306347, 46.2201366 ], + [ 6.0309039, 46.2211728 ], + [ 6.0317239, 46.2220587 ], + [ 6.03297, 46.2226593 ], + [ 6.0344523, 46.2228833 ], + [ 6.0359453, 46.2226964 ], + [ 6.0372216, 46.2221271 ], + [ 6.0380868, 46.2212622 ], + [ 6.0384093, 46.2202333 ], + [ 6.03814, 46.219197 ], + [ 6.0373199, 46.2183112 ], + [ 6.0361174, 46.2177316 ], + [ 6.0369252, 46.2176305 ], + [ 6.0382013, 46.2170612 ], + [ 6.0390665, 46.2161963 ], + [ 6.0393889, 46.2151674 ], + [ 6.0392032, 46.2144529 ], + [ 6.0392406, 46.2144431 ], + [ 6.039835, 46.2141114 ], + [ 6.0401144, 46.2139661 ], + [ 6.0401637, 46.213928 ], + [ 6.0401939, 46.2139112 ], + [ 6.0402834, 46.2138425 ], + [ 6.0402882, 46.2138389 ], + [ 6.0403146, 46.2138188 ], + [ 6.0403935, 46.213758 ], + [ 6.0403988, 46.213752 ], + [ 6.0404085, 46.2137464 ], + [ 6.0404785, 46.213692 ], + [ 6.0412458, 46.2127883 ], + [ 6.0414587, 46.2117498 ], + [ 6.0413859, 46.2115516 ], + [ 6.0414117, 46.2112806 ], + [ 6.0409284, 46.2102859 ], + [ 6.039935, 46.2094945 ], + [ 6.039881, 46.2094655 ], + [ 6.0388117, 46.2090592 ], + [ 6.0376138, 46.2089027 ], + [ 6.036405, 46.2090115 ], + [ 6.0353041, 46.2093749 ], + [ 6.0350909, 46.2095152 ], + [ 6.0343265, 46.2099401 ], + [ 6.0342657, 46.2099865 ], + [ 6.0337447, 46.2105866 ], + [ 6.0337254, 46.2105897 ], + [ 6.0336121, 46.2106382 ], + [ 6.0327621, 46.2102285 ], + [ 6.0312801, 46.2100046 ], + [ 6.0297875, 46.2101914 ], + [ 6.0285114, 46.2107605 ], + [ 6.0276462, 46.2116254 ], + [ 6.0273235, 46.2126543 ], + [ 6.0275926, 46.2136905 ], + [ 6.0284125, 46.2145764 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-11", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6354289, 47.4909309 ], + [ 7.6352655, 47.4908843 ], + [ 7.6348856, 47.4906891 ], + [ 7.634869, 47.4906789 ], + [ 7.6348026, 47.4906669 ], + [ 7.6347841, 47.4906638 ], + [ 7.6346144, 47.490621 ], + [ 7.6345705, 47.4906228 ], + [ 7.6345246, 47.4906124 ], + [ 7.6344359, 47.4906077 ], + [ 7.6343568, 47.4906107 ], + [ 7.6342685, 47.4906097 ], + [ 7.6341126, 47.4906176 ], + [ 7.6340404, 47.4906301 ], + [ 7.6339051, 47.4906804 ], + [ 7.6337373, 47.4907535 ], + [ 7.6336422, 47.4908191 ], + [ 7.63355, 47.4908865 ], + [ 7.6334745, 47.4909399 ], + [ 7.6334459, 47.4909577 ], + [ 7.6334921, 47.4909841 ], + [ 7.6335603, 47.4910346 ], + [ 7.6336829, 47.4911085 ], + [ 7.6337672, 47.4911516 ], + [ 7.6338977, 47.4912033 ], + [ 7.6340121, 47.4912291 ], + [ 7.6341204, 47.4912387 ], + [ 7.6340482, 47.4912802 ], + [ 7.6340167999999995, 47.4912902 ], + [ 7.6339158, 47.4913043 ], + [ 7.6339051, 47.4913056 ], + [ 7.6338834, 47.4913063 ], + [ 7.633866, 47.4913074 ], + [ 7.6338487, 47.4913093 ], + [ 7.6338315, 47.4913119 ], + [ 7.6337843, 47.4913219 ], + [ 7.633697, 47.4913374 ], + [ 7.633569, 47.4913573 ], + [ 7.6333887, 47.4913806 ], + [ 7.633205, 47.4914046 ], + [ 7.6329036, 47.491452 ], + [ 7.6328587, 47.4914591 ], + [ 7.6327823, 47.4914709 ], + [ 7.6325713, 47.4914977 ], + [ 7.6323484, 47.4915566 ], + [ 7.6321502, 47.4915927 ], + [ 7.6318246, 47.4916189 ], + [ 7.6317345, 47.4916228 ], + [ 7.6316262, 47.4916106 ], + [ 7.6314376, 47.4915714 ], + [ 7.6313234, 47.4915629 ], + [ 7.6311108999999995, 47.4915485 ], + [ 7.6309425, 47.4915463 ], + [ 7.6306322, 47.4916432 ], + [ 7.6303726, 47.4916507 ], + [ 7.6300840999999995, 47.4916697 ], + [ 7.6299839, 47.4916637 ], + [ 7.6297293, 47.4916406 ], + [ 7.6297353999999995, 47.4916764 ], + [ 7.6298099, 47.4917702 ], + [ 7.6298282, 47.4918394 ], + [ 7.6297884, 47.4919148 ], + [ 7.6297493, 47.4921928 ], + [ 7.6297161, 47.4923691 ], + [ 7.6296266, 47.4923394 ], + [ 7.6292412, 47.4922049 ], + [ 7.629166, 47.4921785 ], + [ 7.6290822, 47.4921444 ], + [ 7.6290444, 47.4921641 ], + [ 7.6289229, 47.492176 ], + [ 7.6287785, 47.4921907 ], + [ 7.628624, 47.4921963 ], + [ 7.6285568, 47.4921966 ], + [ 7.628455, 47.4921896 ], + [ 7.6281058, 47.4921198 ], + [ 7.6280641, 47.4922187 ], + [ 7.6280947999999995, 47.4923731 ], + [ 7.6280798, 47.492551399999996 ], + [ 7.6284599, 47.4926058 ], + [ 7.6286239, 47.4926277 ], + [ 7.6286142, 47.4926624 ], + [ 7.628591, 47.4927364 ], + [ 7.6288277, 47.4927536 ], + [ 7.6293336, 47.4927992 ], + [ 7.6298431, 47.4928034 ], + [ 7.6300647, 47.4927786 ], + [ 7.630117, 47.4927742 ], + [ 7.6302015999999995, 47.4927414 ], + [ 7.6302071, 47.4927945 ], + [ 7.6302974, 47.492979 ], + [ 7.6303136, 47.4929759 ], + [ 7.6306893, 47.492904 ], + [ 7.6309118, 47.4925211 ], + [ 7.6310444, 47.4922931 ], + [ 7.6312296, 47.4921582 ], + [ 7.6313402, 47.4921131 ], + [ 7.6314975, 47.4921085 ], + [ 7.6316024, 47.4921184 ], + [ 7.6316177, 47.4921391 ], + [ 7.6320775, 47.4927622 ], + [ 7.6323109, 47.49308 ], + [ 7.6325393, 47.4933909 ], + [ 7.6327947, 47.4937414 ], + [ 7.6330055, 47.494028 ], + [ 7.6334469, 47.4943743 ], + [ 7.6336321, 47.4944824 ], + [ 7.6336778, 47.4944492 ], + [ 7.6341497, 47.4940862 ], + [ 7.6346644, 47.4936909 ], + [ 7.6348684, 47.4935305 ], + [ 7.6351738000000005, 47.4932905 ], + [ 7.6352731, 47.4932125 ], + [ 7.6353079, 47.4931847 ], + [ 7.6355106, 47.4932925 ], + [ 7.6357652, 47.4934999 ], + [ 7.6362993, 47.4938743 ], + [ 7.6365188, 47.4940132 ], + [ 7.6367344, 47.4941132 ], + [ 7.63712, 47.4942396 ], + [ 7.6376091, 47.4944313 ], + [ 7.6379047, 47.4945408 ], + [ 7.6382039, 47.4946467 ], + [ 7.6387269, 47.4948199 ], + [ 7.6395154, 47.4950639 ], + [ 7.6396332000000005, 47.4950966 ], + [ 7.6396739, 47.4950327 ], + [ 7.6399203, 47.4946455 ], + [ 7.6400582, 47.4944341 ], + [ 7.6389157, 47.4942506 ], + [ 7.6385872, 47.4941155 ], + [ 7.638616, 47.4939495 ], + [ 7.638103, 47.4936955 ], + [ 7.6374047, 47.4936925 ], + [ 7.6368863000000005, 47.493537 ], + [ 7.6365666, 47.4932068 ], + [ 7.6365965, 47.4930149 ], + [ 7.6364346, 47.492491 ], + [ 7.6367989, 47.4921256 ], + [ 7.636691, 47.4917278 ], + [ 7.6369196, 47.4916945 ], + [ 7.6371964, 47.4916816 ], + [ 7.6374977, 47.4916828 ], + [ 7.6381027, 47.4916649 ], + [ 7.6382631, 47.4916552 ], + [ 7.6381043, 47.4916519 ], + [ 7.6379925, 47.4916331 ], + [ 7.6379015, 47.4916103 ], + [ 7.6378362, 47.4915836 ], + [ 7.6377602, 47.4915378 ], + [ 7.6376691999999995, 47.4914872 ], + [ 7.6375281, 47.4914979 ], + [ 7.6374543, 47.4914899 ], + [ 7.6373997, 47.4914603 ], + [ 7.6373481, 47.4914277 ], + [ 7.6373045, 47.4913773 ], + [ 7.6372564, 47.4913495 ], + [ 7.6371586, 47.4913048 ], + [ 7.6370001, 47.4912379 ], + [ 7.6369508, 47.4912144 ], + [ 7.6368409, 47.4911758 ], + [ 7.6366978, 47.4911816 ], + [ 7.6366377, 47.4911814 ], + [ 7.6365055, 47.4911641 ], + [ 7.6362494, 47.4911161 ], + [ 7.6359941, 47.4910652 ], + [ 7.6358675, 47.4910514 ], + [ 7.6356122, 47.4909882 ], + [ 7.6354289, 47.4909309 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns231", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Ermitage - Chilchholz", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Ermitage - Chilchholz", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Ermitage - Chilchholz", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Ermitage - Chilchholz", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.1439645, 47.226237 ], + [ 8.143843, 47.2238839 ], + [ 8.1435409, 47.2215384 ], + [ 8.143059, 47.2192069 ], + [ 8.1423988, 47.2168957 ], + [ 8.141562, 47.2146112 ], + [ 8.140551, 47.2123597 ], + [ 8.1393685, 47.2101474 ], + [ 8.1380179, 47.2079802 ], + [ 8.1365027, 47.2058641 ], + [ 8.1348273, 47.203805 ], + [ 8.1329961, 47.2018084 ], + [ 8.1310143, 47.1998798 ], + [ 8.1288872, 47.1980245 ], + [ 8.1266207, 47.1962476 ], + [ 8.1242211, 47.1945539 ], + [ 8.1216948, 47.1929481 ], + [ 8.1190489, 47.1914346 ], + [ 8.1162905, 47.1900174 ], + [ 8.1134273, 47.1887006 ], + [ 8.110467, 47.1874876 ], + [ 8.1074178, 47.1863818 ], + [ 8.1042879, 47.1853862 ], + [ 8.1010861, 47.1845036 ], + [ 8.097821, 47.1837364 ], + [ 8.0945015, 47.1830866 ], + [ 8.0911368, 47.182556 ], + [ 8.087736, 47.1821461 ], + [ 8.0843085, 47.181858 ], + [ 8.0808635, 47.1816926 ], + [ 8.0774106, 47.1816501 ], + [ 8.073959200000001, 47.1817309 ], + [ 8.0705187, 47.1819345 ], + [ 8.0670984, 47.1822606 ], + [ 8.0637079, 47.1827081 ], + [ 8.0603562, 47.1832759 ], + [ 8.0570527, 47.1839625 ], + [ 8.0538063, 47.1847659 ], + [ 8.050626, 47.1856839 ], + [ 8.0475203, 47.186714 ], + [ 8.0444978, 47.1878535 ], + [ 8.0415669, 47.1890991 ], + [ 8.0387354, 47.1904476 ], + [ 8.0360112, 47.191895099999996 ], + [ 8.0334017, 47.1934378 ], + [ 8.0309141, 47.1950715 ], + [ 8.0285552, 47.1967915 ], + [ 8.0263315, 47.1985934 ], + [ 8.024249, 47.200472 ], + [ 8.0223134, 47.2024223 ], + [ 8.0205302, 47.2044389 ], + [ 8.0189041, 47.2065164 ], + [ 8.0174397, 47.208649 ], + [ 8.0161409, 47.2108309 ], + [ 8.0150114, 47.2130561 ], + [ 8.0140543, 47.2153185 ], + [ 8.0132722, 47.2176119 ], + [ 8.0126673, 47.2199301 ], + [ 8.0122413, 47.2222667 ], + [ 8.0119953, 47.2246152 ], + [ 8.01193, 47.2269693 ], + [ 8.0120457, 47.2293225 ], + [ 8.0123421, 47.2316683 ], + [ 8.0128183, 47.2340004 ], + [ 8.0134731, 47.2363123 ], + [ 8.0143048, 47.2385977 ], + [ 8.015311, 47.2408503 ], + [ 8.016489, 47.2430639 ], + [ 8.0178356, 47.2452325 ], + [ 8.0193472, 47.2473501 ], + [ 8.0210196, 47.2494109 ], + [ 8.0228482, 47.2514092 ], + [ 8.024828, 47.2533397 ], + [ 8.0269536, 47.2551968 ], + [ 8.0292193, 47.2569757 ], + [ 8.0316187, 47.2586713 ], + [ 8.0341454, 47.2602791 ], + [ 8.0367923, 47.2617946 ], + [ 8.0395523, 47.2632136 ], + [ 8.0424177, 47.2645323 ], + [ 8.0453807, 47.265747 ], + [ 8.0484332, 47.2668544 ], + [ 8.0515668, 47.2678514 ], + [ 8.0547728, 47.2687354 ], + [ 8.058042499999999, 47.2695039 ], + [ 8.0613669, 47.2701547 ], + [ 8.0647368, 47.2706861 ], + [ 8.0681431, 47.2710967 ], + [ 8.0715763, 47.2713852 ], + [ 8.075027, 47.271551 ], + [ 8.0784857, 47.2715935 ], + [ 8.0819429, 47.2715126 ], + [ 8.0853892, 47.2713086 ], + [ 8.088815, 47.270982 ], + [ 8.092211, 47.2705337 ], + [ 8.0955677, 47.269965 ], + [ 8.0988761, 47.2692774 ], + [ 8.1021269, 47.2684728 ], + [ 8.1053114, 47.2675533 ], + [ 8.1084206, 47.2665217 ], + [ 8.1114461, 47.2653805 ], + [ 8.1143797, 47.2641331 ], + [ 8.1172131, 47.2627828 ], + [ 8.1199387, 47.2613334 ], + [ 8.122549, 47.2597887 ], + [ 8.1250368, 47.2581532 ], + [ 8.1273954, 47.2564311 ], + [ 8.1296181, 47.2546274 ], + [ 8.131699, 47.2527469 ], + [ 8.1336324, 47.2507948 ], + [ 8.1354129, 47.2487764 ], + [ 8.1370358, 47.2466973 ], + [ 8.1384964, 47.2445632 ], + [ 8.139791, 47.24238 ], + [ 8.1409159, 47.2401536 ], + [ 8.1418681, 47.2378901 ], + [ 8.1426449, 47.2355958 ], + [ 8.1432444, 47.233277 ], + [ 8.1436648, 47.23094 ], + [ 8.143905, 47.2285911 ], + [ 8.1439645, 47.226237 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSPN001", + "country" : "CHE", + "name" : [ + { + "text" : "LSPN Triengen", + "lang" : "de-CH" + }, + { + "text" : "LSPN Triengen", + "lang" : "fr-CH" + }, + { + "text" : "LSPN Triengen", + "lang" : "it-CH" + }, + { + "text" : "LSPN Triengen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Triengen Airport", + "lang" : "de-CH" + }, + { + "text" : "Triengen Airport", + "lang" : "fr-CH" + }, + { + "text" : "Triengen Airport", + "lang" : "it-CH" + }, + { + "text" : "Triengen Airport", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Bruno Müller", + "lang" : "de-CH" + }, + { + "text" : "Bruno Müller", + "lang" : "fr-CH" + }, + { + "text" : "Bruno Müller", + "lang" : "it-CH" + }, + { + "text" : "Bruno Müller", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.flyingranch.ch/", + "email" : "info@flyingranch.ch", + "phone" : "0041419333880", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P01DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6247947, 47.4927816 ], + [ 7.6247888, 47.4926404 ], + [ 7.624772, 47.4924996 ], + [ 7.6247443, 47.4923596 ], + [ 7.6247058, 47.4922208 ], + [ 7.6246567, 47.4920835 ], + [ 7.624597, 47.4919481 ], + [ 7.624527, 47.4918151 ], + [ 7.6244467, 47.4916847 ], + [ 7.6243566, 47.4915574 ], + [ 7.6242567, 47.4914334 ], + [ 7.6241474, 47.4913131 ], + [ 7.6240289, 47.4911969 ], + [ 7.6239017, 47.491085 ], + [ 7.6237659, 47.4909778 ], + [ 7.6236221, 47.4908756 ], + [ 7.6234706, 47.4907786 ], + [ 7.6233118, 47.4906871 ], + [ 7.6231461, 47.4906014 ], + [ 7.6229741, 47.4905216 ], + [ 7.6227962, 47.4904481 ], + [ 7.6226128, 47.490381 ], + [ 7.6224244, 47.4903205 ], + [ 7.6222317, 47.4902667 ], + [ 7.6220351, 47.4902199 ], + [ 7.6218351, 47.4901801 ], + [ 7.6216324, 47.4901474 ], + [ 7.6214274, 47.490122 ], + [ 7.6212207, 47.4901039 ], + [ 7.6210129, 47.4900931 ], + [ 7.6208045, 47.4900898 ], + [ 7.6205962, 47.4900938 ], + [ 7.6203883999999995, 47.4901052 ], + [ 7.6201819, 47.490124 ], + [ 7.6199770000000004, 47.49015 ], + [ 7.6197745, 47.4901833 ], + [ 7.6195748, 47.4902237 ], + [ 7.6193785, 47.4902712 ], + [ 7.6191861, 47.4903256 ], + [ 7.6189982, 47.4903867 ], + [ 7.6188153, 47.4904544 ], + [ 7.6186378, 47.4905284 ], + [ 7.6184663, 47.4906087 ], + [ 7.6183013, 47.490695 ], + [ 7.6181431, 47.4907869 ], + [ 7.6179923, 47.4908844 ], + [ 7.6178492, 47.4909871 ], + [ 7.6177142, 47.4910947 ], + [ 7.6175877, 47.491207 ], + [ 7.61747, 47.4913236 ], + [ 7.6173615, 47.4914442 ], + [ 7.6172625, 47.4915685 ], + [ 7.6171732, 47.4916961 ], + [ 7.6170939, 47.4918268 ], + [ 7.6170247, 47.49196 ], + [ 7.616966, 47.4920956 ], + [ 7.6169177999999995, 47.492233 ], + [ 7.6168803, 47.492372 ], + [ 7.6168534999999995, 47.4925121 ], + [ 7.6168376, 47.4926529 ], + [ 7.6168327, 47.4927941 ], + [ 7.6168386, 47.4929353 ], + [ 7.6168554, 47.4930761 ], + [ 7.6168831, 47.4932161 ], + [ 7.6169215, 47.493355 ], + [ 7.6169706999999995, 47.4934923 ], + [ 7.6170303, 47.4936276 ], + [ 7.6171003, 47.4937607 ], + [ 7.6171805, 47.4938911 ], + [ 7.6172707, 47.4940184 ], + [ 7.6173706, 47.4941424 ], + [ 7.6174799, 47.4942627 ], + [ 7.6175983, 47.4943789 ], + [ 7.6177256, 47.4944908 ], + [ 7.6178612999999995, 47.494598 ], + [ 7.6180050999999995, 47.4947002 ], + [ 7.6181566, 47.4947973 ], + [ 7.6183154, 47.4948887 ], + [ 7.6184811, 47.4949745 ], + [ 7.6186530999999995, 47.4950542 ], + [ 7.6188310999999995, 47.4951278 ], + [ 7.6190145000000005, 47.4951949 ], + [ 7.6192028, 47.4952554 ], + [ 7.6193956, 47.4953092 ], + [ 7.6195922, 47.495356 ], + [ 7.6197922, 47.4953958 ], + [ 7.619995, 47.4954285 ], + [ 7.6202000000000005, 47.4954539 ], + [ 7.6204067, 47.495472 ], + [ 7.6206146, 47.4954828 ], + [ 7.6208229, 47.4954861 ], + [ 7.6210313, 47.4954821 ], + [ 7.621239, 47.4954707 ], + [ 7.6214455999999995, 47.4954519 ], + [ 7.6216505, 47.4954259 ], + [ 7.621853, 47.4953926 ], + [ 7.6220527, 47.4953521 ], + [ 7.6222491, 47.4953047 ], + [ 7.6224414, 47.4952503 ], + [ 7.6226294, 47.4951892 ], + [ 7.6228123, 47.4951215 ], + [ 7.6229898, 47.4950474 ], + [ 7.6231613, 47.4949671 ], + [ 7.6233263, 47.4948809 ], + [ 7.6234845, 47.4947889 ], + [ 7.6236353999999995, 47.4946914 ], + [ 7.6237785, 47.4945887 ], + [ 7.6239135000000005, 47.4944811 ], + [ 7.62404, 47.4943688 ], + [ 7.6241576, 47.4942522 ], + [ 7.6242661, 47.4941316 ], + [ 7.6243651, 47.4940073 ], + [ 7.6244544, 47.4938796 ], + [ 7.6245337, 47.493749 ], + [ 7.6246028, 47.4936157 ], + [ 7.6246615, 47.4934802 ], + [ 7.6247097, 47.4933428 ], + [ 7.6247472, 47.4932038 ], + [ 7.6247739, 47.4930637 ], + [ 7.6247898, 47.4929228 ], + [ 7.6247947, 47.4927816 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "ARL0001", + "country" : "CHE", + "name" : [ + { + "text" : "Gefängnis Arlesheim", + "lang" : "de-CH" + }, + { + "text" : "Gefängnis Arlesheim", + "lang" : "fr-CH" + }, + { + "text" : "Gefängnis Arlesheim", + "lang" : "it-CH" + }, + { + "text" : "Gefängnis Arlesheim", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Justizvollzug Basel-Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Amt für Justizvollzug Basel-Landschaft", + "lang" : "fr-CH" + }, + { + "text" : "Amt für Justizvollzug Basel-Landschaft", + "lang" : "it-CH" + }, + { + "text" : "Amt für Justizvollzug Basel-Landschaft", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Amtsleitung", + "lang" : "de-CH" + }, + { + "text" : "Amtsleitung", + "lang" : "fr-CH" + }, + { + "text" : "Amtsleitung", + "lang" : "it-CH" + }, + { + "text" : "Amtsleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Nicolas Pozar", + "lang" : "de-CH" + }, + { + "text" : "Nicolas Pozar", + "lang" : "fr-CH" + }, + { + "text" : "Nicolas Pozar", + "lang" : "it-CH" + }, + { + "text" : "Nicolas Pozar", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/sicherheitsdirektion/bv-sid/justizvollzug", + "email" : "kanzlei.ajv@bl.ch", + "phone" : "0041615529045", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P21DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.88164, 47.4095946 ], + [ 7.8817201, 47.4096342 ], + [ 7.8817965, 47.4096785 ], + [ 7.8818503, 47.4097207 ], + [ 7.8818993, 47.4097623 ], + [ 7.8819541, 47.409815 ], + [ 7.8820259, 47.4098804 ], + [ 7.8820612, 47.4099593 ], + [ 7.8821074, 47.4100645 ], + [ 7.8821373999999995, 47.4102367 ], + [ 7.8821542, 47.4103552 ], + [ 7.882149, 47.4104888 ], + [ 7.8820525, 47.4107605 ], + [ 7.8820347, 47.4107942 ], + [ 7.8818967, 47.4110556 ], + [ 7.8818486, 47.4112752 ], + [ 7.8819181, 47.4112899 ], + [ 7.881947, 47.4111229 ], + [ 7.882059, 47.4109193 ], + [ 7.8821753999999995, 47.4109438 ], + [ 7.8821692, 47.410809 ], + [ 7.8822436, 47.410792 ], + [ 7.8823358, 47.4106183 ], + [ 7.8823615, 47.4104379 ], + [ 7.882245, 47.4104076 ], + [ 7.8823039999999995, 47.4102202 ], + [ 7.8823486, 47.4100644 ], + [ 7.8822564, 47.4100249 ], + [ 7.8821622, 47.4099114 ], + [ 7.8820448, 47.4097983 ], + [ 7.8818836, 47.4096776 ], + [ 7.8817615, 47.4095896 ], + [ 7.8817053999999995, 47.4095432 ], + [ 7.88164, 47.4095946 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns188", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Mapprach - Hofmatt", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Mapprach - Hofmatt", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Mapprach - Hofmatt", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Mapprach - Hofmatt", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.2400709, 47.0032659 ], + [ 7.240274, 47.002812 ], + [ 7.2405607, 47.0030545 ], + [ 7.2408432, 47.0028868 ], + [ 7.2404181, 47.0024903 ], + [ 7.2404531, 47.0023617 ], + [ 7.2405365, 47.0022611 ], + [ 7.240663, 47.0018214 ], + [ 7.2409735, 47.0014216 ], + [ 7.2412051, 47.001227 ], + [ 7.2414287999999996, 47.000962 ], + [ 7.2417343, 47.0007718 ], + [ 7.2418583, 47.0005849 ], + [ 7.2427223, 46.9998119 ], + [ 7.2434638, 46.9990495 ], + [ 7.2442287, 46.998395 ], + [ 7.244496, 46.998114 ], + [ 7.2448175, 46.9978338 ], + [ 7.245375, 46.9974921 ], + [ 7.2456791, 46.9972461 ], + [ 7.245874, 46.996976599999996 ], + [ 7.246523, 46.9963211 ], + [ 7.2474355, 46.9955257 ], + [ 7.2481604, 46.9945644 ], + [ 7.2491205, 46.9935099 ], + [ 7.2502722, 46.9919673 ], + [ 7.2506549, 46.9915523 ], + [ 7.252178, 46.9897387 ], + [ 7.2525234, 46.9891888 ], + [ 7.2538301, 46.9876572 ], + [ 7.2551953000000005, 46.9870109 ], + [ 7.2557396, 46.9868714 ], + [ 7.2574482, 46.9862436 ], + [ 7.2586215, 46.9856975 ], + [ 7.2588866, 46.9855397 ], + [ 7.2589031, 46.9855297 ], + [ 7.2583112, 46.9848956 ], + [ 7.2581336, 46.9849573 ], + [ 7.2569969, 46.9853513 ], + [ 7.256447, 46.9854432 ], + [ 7.2560659, 46.9856557 ], + [ 7.2544702, 46.9861893 ], + [ 7.2538108, 46.9863502 ], + [ 7.2533747, 46.9865222 ], + [ 7.2531766, 46.9865731 ], + [ 7.2530015, 46.9866061 ], + [ 7.2528285, 46.9867174 ], + [ 7.2524066, 46.9868731 ], + [ 7.252218, 46.9869736 ], + [ 7.2520022, 46.9871307 ], + [ 7.2520018, 46.9872656 ], + [ 7.2518613, 46.9879752 ], + [ 7.2515397, 46.988785 ], + [ 7.2513628, 46.9890699 ], + [ 7.2510415, 46.9893276 ], + [ 7.2505143, 46.9899519 ], + [ 7.2502459, 46.9903446 ], + [ 7.2499554, 46.9907039 ], + [ 7.249418, 46.9911909 ], + [ 7.2492402, 46.9912931 ], + [ 7.2490418, 46.9913973 ], + [ 7.2488887, 46.9914769 ], + [ 7.2487718, 46.9915259 ], + [ 7.2486098, 46.9915748 ], + [ 7.2484659, 46.9915991 ], + [ 7.2482053, 46.9916417 ], + [ 7.2478181, 46.9917133 ], + [ 7.2478066, 46.9917123 ], + [ 7.2475918, 46.9918081 ], + [ 7.2471699, 46.9919235 ], + [ 7.2467399, 46.9920001 ], + [ 7.2463607, 46.9921002 ], + [ 7.2458416, 46.9922892 ], + [ 7.2453975, 46.9924107 ], + [ 7.2447678, 46.9927118 ], + [ 7.2434828, 46.992931 ], + [ 7.2429529, 46.9931262 ], + [ 7.2426297, 46.9931976 ], + [ 7.2424083, 46.9933088 ], + [ 7.2421661, 46.9934838 ], + [ 7.2420257, 46.9936679 ], + [ 7.242122, 46.9938597 ], + [ 7.2420943, 46.9940125 ], + [ 7.2418618, 46.9942478 ], + [ 7.2414236, 46.9943109 ], + [ 7.241259, 46.9943736 ], + [ 7.2409864, 46.9943093 ], + [ 7.2408219, 46.994372 ], + [ 7.2404656, 46.9947302 ], + [ 7.2402351, 46.9948539 ], + [ 7.2400669, 46.9949922 ], + [ 7.2398531, 46.9950548 ], + [ 7.2397604, 46.9952345 ], + [ 7.2396095, 46.9953628 ], + [ 7.2394111, 46.9954696 ], + [ 7.2393514, 46.9958346 ], + [ 7.2392681, 46.9959199 ], + [ 7.2392554, 46.9962357 ], + [ 7.2391646, 46.9963587 ], + [ 7.2387084999999995, 46.9966053 ], + [ 7.238657, 46.9967554 ], + [ 7.238689, 46.9969705 ], + [ 7.2384248, 46.9979675 ], + [ 7.2382437, 46.9984962 ], + [ 7.2381912, 46.9989287 ], + [ 7.2380015, 46.9997803 ], + [ 7.2380352, 47.0004235 ], + [ 7.2381051, 47.0008742 ], + [ 7.2384797, 47.0011016 ], + [ 7.2385287, 47.0011916 ], + [ 7.2385281, 47.0013652 ], + [ 7.2385919, 47.0014518 ], + [ 7.2387167, 47.0014565 ], + [ 7.2388567, 47.0013964 ], + [ 7.2389328, 47.0012661 ], + [ 7.2389744, 47.0011151 ], + [ 7.2389376, 47.0008379 ], + [ 7.2390441, 47.0007256 ], + [ 7.2391426, 47.0007556 ], + [ 7.2394646, 47.0007678 ], + [ 7.239563, 47.0008363 ], + [ 7.2395682, 47.0009758 ], + [ 7.2395109, 47.0011402 ], + [ 7.2390469, 47.0015101 ], + [ 7.2389445, 47.0016601 ], + [ 7.2388942, 47.0019082 ], + [ 7.2387582, 47.0022526 ], + [ 7.2387239, 47.0024217 ], + [ 7.2387683, 47.002839 ], + [ 7.2389059, 47.0029742 ], + [ 7.2392566, 47.003465 ], + [ 7.239469, 47.0035905 ], + [ 7.2401037, 47.0033119 ], + [ 7.2400709, 47.0032659 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "WZV0033", + "country" : "CHE", + "name" : [ + { + "text" : "Wasser- und Zugvogelreservat Stausee Niederried", + "lang" : "de-CH" + }, + { + "text" : "Réserve d'oiseaux d'eau et de migrateurs Stausee Niederried", + "lang" : "fr-CH" + }, + { + "text" : "Riserva di uccelli acquatici e migratori Stausee Niederried", + "lang" : "it-CH" + }, + { + "text" : "Water Bird and Migratory Bird Reserves Stausee Niederried", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4197327, 47.4095044 ], + [ 7.4197296, 47.4095715 ], + [ 7.419722, 47.4097337 ], + [ 7.4197167, 47.4098468 ], + [ 7.4225555, 47.4097312 ], + [ 7.4225549, 47.409884 ], + [ 7.4238619, 47.4100552 ], + [ 7.4247382, 47.4102186 ], + [ 7.4249319, 47.4102246 ], + [ 7.4250991, 47.410162 ], + [ 7.4249919, 47.4098792 ], + [ 7.4256455, 47.4098353 ], + [ 7.4257377, 47.4097303 ], + [ 7.4268088, 47.4097177 ], + [ 7.4268776, 47.4097169 ], + [ 7.4279595, 47.4092927 ], + [ 7.4279588, 47.409285 ], + [ 7.428184, 47.4088253 ], + [ 7.4280822, 47.4086137 ], + [ 7.4279425, 47.4084375 ], + [ 7.4278959, 47.4083559 ], + [ 7.4279025, 47.4082769 ], + [ 7.4277502, 47.408346 ], + [ 7.4267835, 47.4083882 ], + [ 7.4266568, 47.408417 ], + [ 7.4257557, 47.4086217 ], + [ 7.4251334, 47.408859 ], + [ 7.4249814, 47.408917 ], + [ 7.4247381, 47.4089131 ], + [ 7.424563, 47.4089103 ], + [ 7.4244736, 47.4089089 ], + [ 7.4244189, 47.408908 ], + [ 7.4243574, 47.408907 ], + [ 7.4242623, 47.4089055 ], + [ 7.4241991, 47.4089045 ], + [ 7.4241478, 47.4089037 ], + [ 7.424077, 47.4089025 ], + [ 7.4240088, 47.4089014 ], + [ 7.4239423, 47.4089004 ], + [ 7.4238345, 47.4088987 ], + [ 7.4236787, 47.4088962 ], + [ 7.4235954, 47.4088949 ], + [ 7.4233309, 47.4088906 ], + [ 7.4232215, 47.4088889 ], + [ 7.4231136, 47.4088872 ], + [ 7.423059, 47.4088863 ], + [ 7.4230042, 47.4088854 ], + [ 7.4229552, 47.4088911 ], + [ 7.4228508, 47.4089031 ], + [ 7.4227598, 47.4089136 ], + [ 7.4226663, 47.4089243 ], + [ 7.4225733, 47.4089351 ], + [ 7.4222515, 47.4089721 ], + [ 7.4221378, 47.4089852 ], + [ 7.4220355, 47.408997 ], + [ 7.4218733, 47.4090158 ], + [ 7.4218163, 47.4090224 ], + [ 7.4217672, 47.409032 ], + [ 7.4215624, 47.4090722 ], + [ 7.4215094, 47.4090825 ], + [ 7.4214538, 47.4090934 ], + [ 7.4211355, 47.4091558 ], + [ 7.4210853, 47.4091656 ], + [ 7.4209724999999995, 47.4091877 ], + [ 7.4208687, 47.4092079 ], + [ 7.4208448, 47.4092226 ], + [ 7.420759, 47.4092755 ], + [ 7.4206481, 47.4093438 ], + [ 7.4204746, 47.4094507 ], + [ 7.4204468, 47.4094678 ], + [ 7.4202439, 47.4094782 ], + [ 7.4201827, 47.4094813 ], + [ 7.4200234, 47.4094895 ], + [ 7.4199416, 47.4094937 ], + [ 7.4198615, 47.4094978 ], + [ 7.4197327, 47.4095044 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns004", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Oltme", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Oltme", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Oltme", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Oltme", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6064489, 47.4941414 ], + [ 7.6064549, 47.494047 ], + [ 7.6064661000000005, 47.4938717 ], + [ 7.6064863, 47.4935571 ], + [ 7.606558, 47.4929972 ], + [ 7.6066177, 47.4925471 ], + [ 7.6066363, 47.4924141 ], + [ 7.6066603, 47.4922071 ], + [ 7.6067509, 47.4915091 ], + [ 7.6068024, 47.4913963 ], + [ 7.6068687, 47.4909664 ], + [ 7.6069192, 47.4906075 ], + [ 7.6069515, 47.4905017 ], + [ 7.6070307, 47.490091 ], + [ 7.6070704, 47.489656 ], + [ 7.6072026, 47.4893762 ], + [ 7.6072625, 47.4890848 ], + [ 7.6072736, 47.4890004 ], + [ 7.607276, 47.4889893 ], + [ 7.6072793, 47.4889784 ], + [ 7.6072836, 47.4889676 ], + [ 7.6072887, 47.488957 ], + [ 7.6072947, 47.4889466 ], + [ 7.6073015999999996, 47.4889364 ], + [ 7.6073093, 47.4889265 ], + [ 7.6073178, 47.488917 ], + [ 7.6073259, 47.4889074 ], + [ 7.607011, 47.4888204 ], + [ 7.6068918, 47.488788 ], + [ 7.6068384, 47.4887737 ], + [ 7.6067859, 47.4887654 ], + [ 7.6067779, 47.4887663 ], + [ 7.6067701, 47.4887678 ], + [ 7.6067626, 47.48877 ], + [ 7.6067555, 47.4887727 ], + [ 7.6067488999999995, 47.488776 ], + [ 7.606743, 47.4887798 ], + [ 7.6067378, 47.4887841 ], + [ 7.6067333, 47.4887887 ], + [ 7.6067297, 47.4887936 ], + [ 7.606727, 47.4887989 ], + [ 7.6067252, 47.4888042 ], + [ 7.6067244, 47.4888097 ], + [ 7.6067245, 47.4888153 ], + [ 7.6066486, 47.4890961 ], + [ 7.6065975, 47.4891269 ], + [ 7.6065916, 47.489132 ], + [ 7.6065851, 47.4891368 ], + [ 7.6065781999999995, 47.4891412 ], + [ 7.6065709, 47.4891453 ], + [ 7.6065631, 47.4891491 ], + [ 7.6065549, 47.4891524 ], + [ 7.6065457, 47.4891556 ], + [ 7.6065361, 47.4891582 ], + [ 7.6065262, 47.4891604 ], + [ 7.6065162, 47.489162 ], + [ 7.6045446, 47.489404 ], + [ 7.6045337, 47.4894049 ], + [ 7.6045227, 47.4894053 ], + [ 7.6045118, 47.4894051 ], + [ 7.6045008, 47.4894043 ], + [ 7.60449, 47.4894031 ], + [ 7.6044794, 47.4894013 ], + [ 7.604469, 47.4893989 ], + [ 7.6044588, 47.4893961 ], + [ 7.604449, 47.4893927 ], + [ 7.6044396, 47.4893889 ], + [ 7.6042963, 47.4894065 ], + [ 7.6044192, 47.4895389 ], + [ 7.604681, 47.4898951 ], + [ 7.6047426, 47.4901989 ], + [ 7.6055513999999995, 47.4901702 ], + [ 7.6055909, 47.4901953 ], + [ 7.6051432, 47.4905514 ], + [ 7.6050933, 47.490591 ], + [ 7.6050231, 47.4906805 ], + [ 7.6050345, 47.4907495 ], + [ 7.6049884, 47.4907825 ], + [ 7.6048995999999995, 47.4909155 ], + [ 7.6043464, 47.4913679 ], + [ 7.6039243, 47.4916063 ], + [ 7.6033062000000005, 47.4917941 ], + [ 7.6026547, 47.4920605 ], + [ 7.6024402, 47.4923483 ], + [ 7.6023376, 47.4926576 ], + [ 7.6022274, 47.4930361 ], + [ 7.603574, 47.4933589 ], + [ 7.6043512, 47.4935453 ], + [ 7.6042338, 47.4937491 ], + [ 7.6041828, 47.4938377 ], + [ 7.6041083, 47.4939671 ], + [ 7.6039862, 47.4941792 ], + [ 7.6040307, 47.4941891 ], + [ 7.6040805, 47.4942013 ], + [ 7.6040488, 47.4944319 ], + [ 7.6039607, 47.4946031 ], + [ 7.6036206, 47.494976199999996 ], + [ 7.603418, 47.4951787 ], + [ 7.6031996, 47.4953604 ], + [ 7.6026441, 47.4957195 ], + [ 7.6023555, 47.4953195 ], + [ 7.6019672, 47.4953416 ], + [ 7.6020577, 47.4956709 ], + [ 7.6020645, 47.4956976 ], + [ 7.6020708, 47.4957243 ], + [ 7.6020766, 47.4957511 ], + [ 7.6020818, 47.495778 ], + [ 7.6020866, 47.4958049 ], + [ 7.6020916, 47.4958386 ], + [ 7.6020959, 47.4958724 ], + [ 7.6020995, 47.4959062 ], + [ 7.6021023, 47.49594 ], + [ 7.6021047, 47.4959739 ], + [ 7.6021064, 47.4960078 ], + [ 7.6021075, 47.4960417 ], + [ 7.6021079, 47.4960756 ], + [ 7.6019925, 47.4965268 ], + [ 7.6020131, 47.4965783 ], + [ 7.6020342, 47.4966298 ], + [ 7.6020557, 47.4966812 ], + [ 7.6020777, 47.4967326 ], + [ 7.6021059, 47.4967966 ], + [ 7.6021347, 47.4968604 ], + [ 7.6021643, 47.4969241 ], + [ 7.6021946, 47.4969876 ], + [ 7.6022255, 47.497051 ], + [ 7.6022572, 47.4971142 ], + [ 7.6022894999999995, 47.4971772 ], + [ 7.6023226, 47.4972401 ], + [ 7.6023553, 47.4973014 ], + [ 7.6023887, 47.4973625 ], + [ 7.6024228, 47.4974235 ], + [ 7.6024575, 47.497484299999996 ], + [ 7.6024768, 47.4974792 ], + [ 7.6025747, 47.4975087 ], + [ 7.6027583, 47.4978431 ], + [ 7.6030062, 47.4982557 ], + [ 7.603244, 47.4986365 ], + [ 7.6032836, 47.4986945 ], + [ 7.6035768, 47.4991239 ], + [ 7.6039816, 47.4997048 ], + [ 7.6041666, 47.5000483 ], + [ 7.6042791, 47.5003084 ], + [ 7.6044595, 47.5005972 ], + [ 7.6044021, 47.5006114 ], + [ 7.6045242, 47.5008855 ], + [ 7.6046114, 47.5010911 ], + [ 7.6046925, 47.5013127 ], + [ 7.6047803, 47.5015781 ], + [ 7.6048589, 47.501843 ], + [ 7.6049216, 47.5020659 ], + [ 7.6050733, 47.5026038 ], + [ 7.6051698, 47.5029109 ], + [ 7.6052807, 47.5032116 ], + [ 7.605316, 47.5033058 ], + [ 7.6053617, 47.5032779 ], + [ 7.6053635, 47.5032708 ], + [ 7.6053659, 47.5032638 ], + [ 7.6053689, 47.5032569 ], + [ 7.6053725, 47.5032501 ], + [ 7.6053767, 47.503243499999996 ], + [ 7.6053815, 47.5032371 ], + [ 7.6053877, 47.5032298 ], + [ 7.6053947, 47.5032228 ], + [ 7.6054023, 47.5032162 ], + [ 7.6054106, 47.5032099 ], + [ 7.6054195, 47.503204 ], + [ 7.6055415, 47.5031302 ], + [ 7.6055832, 47.5031317 ], + [ 7.6055889, 47.5031315 ], + [ 7.6055945, 47.5031308 ], + [ 7.6055999, 47.5031296 ], + [ 7.6056051, 47.503128 ], + [ 7.60561, 47.5031259 ], + [ 7.6057571, 47.5030608 ], + [ 7.6057811, 47.5030453 ], + [ 7.6058057, 47.5030302 ], + [ 7.6058307, 47.5030155 ], + [ 7.6058562, 47.5030011 ], + [ 7.6058822, 47.5029871 ], + [ 7.6059086, 47.5029735 ], + [ 7.6059356000000005, 47.5029603 ], + [ 7.605963, 47.5029474 ], + [ 7.6059908, 47.502935 ], + [ 7.606019, 47.502923 ], + [ 7.6060476, 47.5029114 ], + [ 7.6060766, 47.5029003 ], + [ 7.6060883, 47.5028955 ], + [ 7.6061005, 47.5028912 ], + [ 7.6061132, 47.5028875 ], + [ 7.6061262, 47.5028845 ], + [ 7.6061394, 47.502882 ], + [ 7.6061529, 47.5028803 ], + [ 7.6061666, 47.5028792 ], + [ 7.6061803, 47.5028787 ], + [ 7.606194, 47.5028789 ], + [ 7.6062077, 47.5028798 ], + [ 7.6062213, 47.5028813 ], + [ 7.6062346, 47.5028835 ], + [ 7.6062477, 47.5028863 ], + [ 7.6062605, 47.5028898 ], + [ 7.6062728, 47.5028938 ], + [ 7.6062848, 47.5028985 ], + [ 7.606299, 47.5029055 ], + [ 7.6063127, 47.5029131 ], + [ 7.6063257, 47.5029211 ], + [ 7.6063381, 47.5029296 ], + [ 7.6063499, 47.5029385 ], + [ 7.6063609, 47.5029479 ], + [ 7.6063711, 47.5029576 ], + [ 7.6063806, 47.5029677 ], + [ 7.6063893, 47.5029781 ], + [ 7.6063972, 47.5029888 ], + [ 7.6064042, 47.5029997 ], + [ 7.6064103, 47.5030109 ], + [ 7.6065352, 47.5032186 ], + [ 7.6065436, 47.5032321 ], + [ 7.6065526, 47.5032454 ], + [ 7.6065623, 47.5032585 ], + [ 7.6065727, 47.5032713 ], + [ 7.6065838, 47.5032839 ], + [ 7.6065938, 47.5032945 ], + [ 7.6066043, 47.5033049 ], + [ 7.6066153, 47.503315 ], + [ 7.6066267, 47.5033249 ], + [ 7.606689, 47.5033508 ], + [ 7.6067167, 47.5033879 ], + [ 7.6068058, 47.5034573 ], + [ 7.6068484, 47.50344 ], + [ 7.6069445, 47.503401 ], + [ 7.6071953, 47.5033002 ], + [ 7.6073372, 47.5032431 ], + [ 7.607355, 47.5032366 ], + [ 7.6073821, 47.5032728 ], + [ 7.6075342, 47.503513 ], + [ 7.6075583, 47.5035061 ], + [ 7.6075667, 47.5035169 ], + [ 7.6076075, 47.5035857 ], + [ 7.607627, 47.50362 ], + [ 7.6076487, 47.5036634 ], + [ 7.6078989, 47.503566 ], + [ 7.6080397, 47.5035184 ], + [ 7.6077821, 47.503185 ], + [ 7.6077770000000005, 47.5031783 ], + [ 7.6077712, 47.503172 ], + [ 7.6077647, 47.503166 ], + [ 7.6077574, 47.5031604 ], + [ 7.6077495, 47.5031552 ], + [ 7.607741, 47.5031504 ], + [ 7.607732, 47.5031462 ], + [ 7.6077229, 47.5031425 ], + [ 7.6077133, 47.5031394 ], + [ 7.6077034999999995, 47.5031368 ], + [ 7.6076933, 47.5031347 ], + [ 7.607683, 47.5031331 ], + [ 7.6076725, 47.5031321 ], + [ 7.6076619, 47.5031317 ], + [ 7.6076513, 47.5031318 ], + [ 7.6076407, 47.5031325 ], + [ 7.6076384, 47.5031285 ], + [ 7.6076457, 47.5031254 ], + [ 7.6076499, 47.5031228 ], + [ 7.6076538, 47.5031199 ], + [ 7.6076573, 47.5031169 ], + [ 7.6076604, 47.5031136 ], + [ 7.607663, 47.5031102 ], + [ 7.6076652, 47.5031066 ], + [ 7.6076669, 47.5031029 ], + [ 7.6076682, 47.5030991 ], + [ 7.6076705, 47.5030861 ], + [ 7.6076745, 47.5030601 ], + [ 7.6076738, 47.5030283 ], + [ 7.6076694, 47.5029967 ], + [ 7.6076612, 47.5029654 ], + [ 7.6075286, 47.5025302 ], + [ 7.6074025, 47.5021224 ], + [ 7.6073248, 47.5018661 ], + [ 7.6072755, 47.501704 ], + [ 7.6072241, 47.5015354 ], + [ 7.6072007, 47.5014633 ], + [ 7.6071734, 47.5013919 ], + [ 7.6071421, 47.5013212 ], + [ 7.607022, 47.5013403 ], + [ 7.6069484, 47.5013424 ], + [ 7.6069442, 47.5012699 ], + [ 7.6069129, 47.5007295 ], + [ 7.6068797, 47.5001926 ], + [ 7.6068484, 47.4996526 ], + [ 7.6068247, 47.4992131 ], + [ 7.6067873, 47.4985686 ], + [ 7.6067568, 47.4980309 ], + [ 7.6067252, 47.4974904 ], + [ 7.6067229, 47.4974517 ], + [ 7.606694, 47.4969453 ], + [ 7.6067246, 47.49656 ], + [ 7.6067529, 47.4961926 ], + [ 7.6067549, 47.4961656 ], + [ 7.6067759, 47.4958935 ], + [ 7.6068166999999995, 47.4953635 ], + [ 7.6068307, 47.4951807 ], + [ 7.6068592, 47.4948131 ], + [ 7.6068656, 47.4947293 ], + [ 7.6065308, 47.49472 ], + [ 7.6064223, 47.4945557 ], + [ 7.6064276, 47.4944742 ], + [ 7.6064489, 47.4941414 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns156", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Reinacherheide", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Reinacherheide", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Reinacherheide", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Reinacherheide", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6301634, 47.4844527 ], + [ 7.6301613, 47.4844527 ], + [ 7.6296501, 47.4843223 ], + [ 7.6281497, 47.484692 ], + [ 7.6281468, 47.4848041 ], + [ 7.6281111, 47.4848954 ], + [ 7.6280063, 47.4850328 ], + [ 7.6279882, 47.4850574 ], + [ 7.6278507, 47.485273 ], + [ 7.6278782, 47.4853208 ], + [ 7.627966, 47.4854728 ], + [ 7.6280438, 47.4856097 ], + [ 7.6280705, 47.4857645 ], + [ 7.6281012, 47.4859403 ], + [ 7.6281436, 47.486182 ], + [ 7.6281666, 47.4862758 ], + [ 7.6282656, 47.4866723 ], + [ 7.6282805, 47.4867307 ], + [ 7.628398, 47.48696 ], + [ 7.6284939, 47.4871477 ], + [ 7.6285769, 47.487307799999996 ], + [ 7.6285644999999995, 47.487336 ], + [ 7.6283573, 47.4878095 ], + [ 7.6282353, 47.4879675 ], + [ 7.6282864, 47.4879782 ], + [ 7.6284842, 47.4880458 ], + [ 7.6285338, 47.488064 ], + [ 7.6284898, 47.4882077 ], + [ 7.6284848, 47.4885378 ], + [ 7.6283828, 47.4887887 ], + [ 7.6279923, 47.4887299 ], + [ 7.6279412, 47.4887808 ], + [ 7.627912, 47.4888109 ], + [ 7.6277878999999995, 47.4889217 ], + [ 7.6276435, 47.4890203 ], + [ 7.6276116, 47.4890313 ], + [ 7.6276889, 47.4891465 ], + [ 7.6275768, 47.4891872 ], + [ 7.6275658, 47.4892906 ], + [ 7.6275164, 47.4893725 ], + [ 7.6274381, 47.4895045 ], + [ 7.6274253, 47.4895276 ], + [ 7.6274305, 47.4896196 ], + [ 7.6274416, 47.489809 ], + [ 7.6274341, 47.4900527 ], + [ 7.6271045, 47.4903696 ], + [ 7.626959, 47.4906929 ], + [ 7.6269504999999995, 47.4907119 ], + [ 7.6273567, 47.4907326 ], + [ 7.6274911, 47.4907508 ], + [ 7.6275081, 47.4907178 ], + [ 7.6275624, 47.4906205 ], + [ 7.6277563, 47.4906146 ], + [ 7.6278062, 47.4905551 ], + [ 7.6279181, 47.4904586 ], + [ 7.6281524, 47.4903977 ], + [ 7.6282806, 47.4903801 ], + [ 7.628453, 47.4903738 ], + [ 7.6287234999999995, 47.4903684 ], + [ 7.6287439, 47.4903672 ], + [ 7.6288923, 47.4903388 ], + [ 7.6289467, 47.4903293 ], + [ 7.6293399, 47.490286 ], + [ 7.6296614, 47.4902506 ], + [ 7.6297302, 47.4902497 ], + [ 7.6298824, 47.4902834 ], + [ 7.6302748000000005, 47.4903167 ], + [ 7.6302844, 47.4902818 ], + [ 7.6303583, 47.4902548 ], + [ 7.630414, 47.4902239 ], + [ 7.630522, 47.4901392 ], + [ 7.6305869, 47.4901058 ], + [ 7.6306811, 47.4900647 ], + [ 7.630861, 47.4900048 ], + [ 7.6310879, 47.4899291 ], + [ 7.6312657999999995, 47.4898703 ], + [ 7.631377, 47.4898335 ], + [ 7.6315421, 47.4897344 ], + [ 7.6316344, 47.4896453 ], + [ 7.6318, 47.4894855 ], + [ 7.6318628, 47.4894392 ], + [ 7.6319875, 47.4893475 ], + [ 7.6320704, 47.489287 ], + [ 7.6320778, 47.4892802 ], + [ 7.6321075, 47.4892529 ], + [ 7.6322154, 47.4891567 ], + [ 7.6322661, 47.4891216 ], + [ 7.6323783, 47.4890666 ], + [ 7.6324606, 47.4890165 ], + [ 7.6325254000000005, 47.4889819 ], + [ 7.6326148, 47.4889401 ], + [ 7.6326832, 47.488915 ], + [ 7.6327375, 47.4888947 ], + [ 7.6327638, 47.4888744 ], + [ 7.6327883, 47.4888518 ], + [ 7.6327987, 47.4888363 ], + [ 7.6328706, 47.4887981 ], + [ 7.6329494, 47.4887623 ], + [ 7.6330722, 47.4887335 ], + [ 7.6331932, 47.4887083 ], + [ 7.6333353, 47.4886855 ], + [ 7.6334423000000005, 47.4886651 ], + [ 7.6335370000000005, 47.4886387 ], + [ 7.6336598, 47.4886028 ], + [ 7.633744, 47.4885801 ], + [ 7.6337983, 47.4885645 ], + [ 7.6336889, 47.488483 ], + [ 7.6334211, 47.4884169 ], + [ 7.6333867, 47.4884036 ], + [ 7.6333154, 47.4883738 ], + [ 7.6332269, 47.488334 ], + [ 7.6331161, 47.488266 ], + [ 7.6329956, 47.4881913 ], + [ 7.6329144, 47.4881332 ], + [ 7.6327913, 47.4880436 ], + [ 7.6326931, 47.4880337 ], + [ 7.6325797, 47.4878992 ], + [ 7.6326723, 47.4878573 ], + [ 7.6327353, 47.4877941 ], + [ 7.6327788, 47.4877119 ], + [ 7.6327647, 47.4876965 ], + [ 7.6327559, 47.4876846 ], + [ 7.6327541, 47.487662 ], + [ 7.6328049, 47.487625 ], + [ 7.6328223, 47.4876083 ], + [ 7.6328554, 47.487525 ], + [ 7.6328762, 47.4874643 ], + [ 7.6329165, 47.4874226 ], + [ 7.6329637, 47.4873785 ], + [ 7.6330196, 47.4872951 ], + [ 7.6330737, 47.4872069 ], + [ 7.633105, 47.4871391 ], + [ 7.6331188999999995, 47.4870903 ], + [ 7.6331135, 47.48707 ], + [ 7.6330864, 47.4868637 ], + [ 7.633012, 47.4866782 ], + [ 7.6329375, 47.4864641 ], + [ 7.6329234, 47.4862517 ], + [ 7.6327028, 47.4857067 ], + [ 7.6324555, 47.4854287 ], + [ 7.6320412, 47.4851185 ], + [ 7.6316101, 47.4848228 ], + [ 7.6311175, 47.484726 ], + [ 7.6302676, 47.4844791 ], + [ 7.6301634, 47.4844527 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr011", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Hinderi Hagebueche", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Hinderi Hagebueche", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Hinderi Hagebueche", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Hinderi Hagebueche", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.0289798, 46.9820612 ], + [ 7.021472, 46.990796 ], + [ 7.0208957, 46.9914767 ], + [ 7.0174517, 46.9952828 ], + [ 7.0168205, 46.9960379 ], + [ 7.0156662, 46.9973587 ], + [ 7.0156705, 46.9973627 ], + [ 7.0150928, 46.9981566 ], + [ 7.0252527, 47.0066228 ], + [ 7.0260172, 47.0073497 ], + [ 7.0267375, 47.0079605 ], + [ 7.0267078, 47.00808 ], + [ 7.026616, 47.0081525 ], + [ 7.026602, 47.0082648 ], + [ 7.026631, 47.0083387 ], + [ 7.0267472, 47.0084058 ], + [ 7.0268787, 47.0084044 ], + [ 7.0270089, 47.0083581 ], + [ 7.0271951, 47.0083039 ], + [ 7.0274101, 47.0083577 ], + [ 7.0278107, 47.0086345 ], + [ 7.0281221, 47.0088677 ], + [ 7.0283714, 47.0090403 ], + [ 7.0286888, 47.0092502 ], + [ 7.0291563, 47.0095982 ], + [ 7.0295654, 47.0099496 ], + [ 7.0300838, 47.0104093 ], + [ 7.0307041, 47.0112076 ], + [ 7.0309659, 47.0115918 ], + [ 7.0311542, 47.0119154 ], + [ 7.0313172, 47.012202 ], + [ 7.0314596, 47.0123959 ], + [ 7.0317584, 47.0123472 ], + [ 7.0325682, 47.0122154 ], + [ 7.0336318, 47.0147334 ], + [ 7.0339567, 47.015573 ], + [ 7.0342438, 47.0164195 ], + [ 7.034395, 47.0172944 ], + [ 7.0344912, 47.0182599 ], + [ 7.0343131, 47.0202895 ], + [ 7.0347809, 47.0201795 ], + [ 7.0363268, 47.0202417 ], + [ 7.0368356, 47.0202515 ], + [ 7.0372799, 47.0201911 ], + [ 7.0377923, 47.0200579 ], + [ 7.0580558, 47.0108866 ], + [ 7.0583482, 47.0107895 ], + [ 7.0585044, 47.0106794 ], + [ 7.0585855, 47.010364 ], + [ 7.0593635, 47.0079836 ], + [ 7.0597601, 47.0073346 ], + [ 7.0603507, 47.0065637 ], + [ 7.0617951, 47.0049898 ], + [ 7.0622107, 47.004446 ], + [ 7.0651203, 47.0005091 ], + [ 7.0652118, 47.0002324 ], + [ 7.0654756, 46.9995325 ], + [ 7.0673361, 46.9938354 ], + [ 7.067626, 46.9929063 ], + [ 7.067811, 46.9922907 ], + [ 7.0678303, 46.991751 ], + [ 7.067831, 46.9912968 ], + [ 7.0678081, 46.9911491 ], + [ 7.0798061, 46.9940259 ], + [ 7.0836598, 46.9950563 ], + [ 7.0855795, 46.9938657 ], + [ 7.0877339, 46.9944879 ], + [ 7.0885941, 46.9947523 ], + [ 7.0894011, 46.9949935 ], + [ 7.0902565, 46.9942395 ], + [ 7.09043, 46.9940933 ], + [ 7.0906297, 46.9939518 ], + [ 7.0907905, 46.9938651 ], + [ 7.0910368, 46.9937789 ], + [ 7.0904773, 46.9928779 ], + [ 7.0898115, 46.9917884 ], + [ 7.0941318, 46.9906433 ], + [ 7.0875389, 46.9764611 ], + [ 7.0871543, 46.9764175 ], + [ 7.0865972, 46.9762885 ], + [ 7.085018, 46.976029 ], + [ 7.0833948, 46.9753875 ], + [ 7.0820051, 46.9746194 ], + [ 7.0804308, 46.9736279 ], + [ 7.0782548, 46.9722525 ], + [ 7.0768661999999996, 46.9713252 ], + [ 7.0751048, 46.9705558 ], + [ 7.0743622, 46.9703625 ], + [ 7.0732951, 46.9700408 ], + [ 7.0724141, 46.9696879 ], + [ 7.0711626, 46.9691429 ], + [ 7.0700488, 46.9688528 ], + [ 7.0690727, 46.9688179 ], + [ 7.0679559, 46.9689734 ], + [ 7.0666978, 46.969383 ], + [ 7.065485, 46.9699519 ], + [ 7.0641784, 46.9706478 ], + [ 7.0627758, 46.9717571 ], + [ 7.0610923, 46.9731519 ], + [ 7.0601588, 46.973658 ], + [ 7.0589931, 46.9741315 ], + [ 7.0581539, 46.974447 ], + [ 7.0573154, 46.974667 ], + [ 7.0560081, 46.9754264 ], + [ 7.0560038, 46.9754311 ], + [ 7.0559945, 46.975424 ], + [ 7.0556596, 46.9751688 ], + [ 7.0555819, 46.9751098 ], + [ 7.0553638, 46.9749433 ], + [ 7.0537251, 46.9736938 ], + [ 7.0523392, 46.9729289 ], + [ 7.0470144, 46.9703327 ], + [ 7.0439852, 46.968785 ], + [ 7.0411795, 46.96714 ], + [ 7.0378278, 46.9651637 ], + [ 7.0351553, 46.963546 ], + [ 7.034183, 46.9629992 ], + [ 7.0331642, 46.9626339 ], + [ 7.0325947, 46.9623639 ], + [ 7.0311691, 46.9614971 ], + [ 7.0287288, 46.963596 ], + [ 7.0290438, 46.9637501 ], + [ 7.0279718, 46.9647502 ], + [ 7.028091, 46.9665596 ], + [ 7.0281005, 46.9667087 ], + [ 7.0282426, 46.9688611 ], + [ 7.0289895, 46.9792119 ], + [ 7.0282867, 46.9801496 ], + [ 7.0275473999999996, 46.9811433 ], + [ 7.0287566, 46.981423 ], + [ 7.0289798, 46.9820612 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "WZV0011", + "country" : "CHE", + "name" : [ + { + "text" : "Wasser- und Zugvogelreservat Fanel jusqu'à Chablais de Cudrefin, Pointe de Marin", + "lang" : "de-CH" + }, + { + "text" : "Réserve d'oiseaux d'eau et de migrateurs Fanel jusqu'à Chablais de Cudrefin, Pointe de Marin", + "lang" : "fr-CH" + }, + { + "text" : "Riserva di uccelli acquatici e migratori Fanel jusqu'à Chablais de Cudrefin, Pointe de Marin", + "lang" : "it-CH" + }, + { + "text" : "Water Bird and Migratory Bird Reserves Fanel jusqu'à Chablais de Cudrefin, Pointe de Marin", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.4658709, 46.5907956 ], + [ 6.4658239, 46.588441 ], + [ 6.4655983, 46.5860914 ], + [ 6.4651946, 46.5837532 ], + [ 6.464614, 46.5814327 ], + [ 6.4638581, 46.5791363 ], + [ 6.4629291, 46.5768703 ], + [ 6.4618294, 46.574641 ], + [ 6.4605622, 46.5724544 ], + [ 6.4591308, 46.5703165 ], + [ 6.4575393, 46.5682332 ], + [ 6.455792, 46.5662102 ], + [ 6.4538938, 46.564253 ], + [ 6.4518497, 46.5623669 ], + [ 6.4496655, 46.5605572 ], + [ 6.4473471, 46.5588288 ], + [ 6.4449009, 46.5571863 ], + [ 6.4423335999999995, 46.5556344 ], + [ 6.4396522, 46.5541772 ], + [ 6.4368641, 46.5528188 ], + [ 6.4339769, 46.5515628 ], + [ 6.4309985, 46.5504127 ], + [ 6.427937, 46.5493717 ], + [ 6.4248009, 46.5484425 ], + [ 6.4215987, 46.5476278 ], + [ 6.4183391, 46.5469297 ], + [ 6.4150312, 46.5463501 ], + [ 6.4116839, 46.5458907 ], + [ 6.4083063, 46.5455528 ], + [ 6.4049078, 46.5453371 ], + [ 6.4014976, 46.5452443 ], + [ 6.3980851, 46.5452748 ], + [ 6.3946795, 46.5454283 ], + [ 6.3912902, 46.5457044 ], + [ 6.3879264, 46.5461025 ], + [ 6.3845974, 46.5466214 ], + [ 6.3813123, 46.5472597 ], + [ 6.3780799, 46.5480157 ], + [ 6.3749093, 46.5488872 ], + [ 6.371809, 46.549872 ], + [ 6.3687875, 46.550967299999996 ], + [ 6.3658531, 46.55217 ], + [ 6.3630138, 46.5534771 ], + [ 6.3602775, 46.5548847 ], + [ 6.3576516, 46.5563892 ], + [ 6.3551432, 46.5579864 ], + [ 6.3527593, 46.5596719 ], + [ 6.3505064, 46.561441 ], + [ 6.3483907, 46.5632891 ], + [ 6.3464179, 46.565211 ], + [ 6.3445936, 46.5672014 ], + [ 6.3429227, 46.5692549 ], + [ 6.3414097, 46.5713659 ], + [ 6.340059, 46.5735285 ], + [ 6.338874, 46.575737 ], + [ 6.3378583, 46.5779852 ], + [ 6.3370145, 46.5802669 ], + [ 6.336345, 46.582576 ], + [ 6.3358516, 46.5849061 ], + [ 6.3355357, 46.5872507 ], + [ 6.3353982, 46.5896036 ], + [ 6.3354395, 46.5919582 ], + [ 6.3356596, 46.594308 ], + [ 6.3360577, 46.5966468 ], + [ 6.3366329, 46.5989679 ], + [ 6.3373837, 46.6012651 ], + [ 6.3383079, 46.6035321 ], + [ 6.339403, 46.6057626 ], + [ 6.3406661, 46.6079505 ], + [ 6.3420938, 46.6100899 ], + [ 6.3436821, 46.6121748 ], + [ 6.3454267, 46.6141996 ], + [ 6.3473228, 46.6161586 ], + [ 6.3493652, 46.6180465 ], + [ 6.3515484, 46.6198582 ], + [ 6.3538663, 46.6215885 ], + [ 6.3563127, 46.6232329 ], + [ 6.3588807, 46.6247868 ], + [ 6.3615634, 46.6262458 ], + [ 6.3643534, 46.6276061 ], + [ 6.3672431, 46.6288639 ], + [ 6.3702245, 46.6300156 ], + [ 6.3732894, 46.6310582 ], + [ 6.3764294, 46.6319888 ], + [ 6.379636, 46.6328048 ], + [ 6.3829002, 46.633504 ], + [ 6.3862131, 46.6340845 ], + [ 6.3895657, 46.6345446 ], + [ 6.3929487, 46.6348832 ], + [ 6.3963528, 46.6350992 ], + [ 6.3997686, 46.6351921 ], + [ 6.4031869, 46.6351616 ], + [ 6.4065981, 46.6350079 ], + [ 6.4099929, 46.6347312 ], + [ 6.413362, 46.6343325 ], + [ 6.4166962, 46.6338128 ], + [ 6.4199862, 46.6331734 ], + [ 6.423223, 46.6324163 ], + [ 6.4263978, 46.6315434 ], + [ 6.4295018, 46.6305572 ], + [ 6.4325265, 46.6294603 ], + [ 6.4354636, 46.6282558 ], + [ 6.438305, 46.626947 ], + [ 6.441043, 46.6255374 ], + [ 6.44367, 46.624031 ], + [ 6.4461788, 46.6224319 ], + [ 6.4485624999999995, 46.6207445 ], + [ 6.4508147, 46.6189733 ], + [ 6.4529291, 46.6171234 ], + [ 6.4548999, 46.6151997 ], + [ 6.4567218, 46.6132075 ], + [ 6.4583898, 46.6111524 ], + [ 6.4598993, 46.6090398 ], + [ 6.4612461, 46.6068757 ], + [ 6.4624267, 46.604666 ], + [ 6.4634378, 46.6024167 ], + [ 6.4642766, 46.600134 ], + [ 6.4649409, 46.5978242 ], + [ 6.4654288, 46.5954936 ], + [ 6.4657391, 46.5931486 ], + [ 6.4658709, 46.5907956 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSTR001", + "country" : "CHE", + "name" : [ + { + "text" : "LSTR Montricher", + "lang" : "de-CH" + }, + { + "text" : "LSTR Montricher", + "lang" : "fr-CH" + }, + { + "text" : "LSTR Montricher", + "lang" : "it-CH" + }, + { + "text" : "LSTR Montricher", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Fondation pour l'exploitation du terrain de vol à voile de Montricher", + "lang" : "de-CH" + }, + { + "text" : "Fondation pour l'exploitation du terrain de vol à voile de Montricher", + "lang" : "fr-CH" + }, + { + "text" : "Fondation pour l'exploitation du terrain de vol à voile de Montricher", + "lang" : "it-CH" + }, + { + "text" : "Fondation pour l'exploitation du terrain de vol à voile de Montricher", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Chef d'aérodrome", + "lang" : "de-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "fr-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "it-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Didier Kuttel", + "lang" : "de-CH" + }, + { + "text" : "Didier Kuttel", + "lang" : "fr-CH" + }, + { + "text" : "Didier Kuttel", + "lang" : "it-CH" + }, + { + "text" : "Didier Kuttel", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.lstr.ch", + "email" : "chef.aerodrome@lstr.ch", + "phone" : "0041799487937", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P02DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.1287944, 46.7412278 ], + [ 8.1287206, 46.7400723 ], + [ 8.1304021, 46.7396663 ], + [ 8.1299101, 46.7383396 ], + [ 8.121638, 46.7388689 ], + [ 8.121409, 46.7379392 ], + [ 8.1157516, 46.7390111 ], + [ 8.1157032, 46.7397419 ], + [ 8.1147879, 46.7394801 ], + [ 8.1143201, 46.7398409 ], + [ 8.1122756, 46.7405259 ], + [ 8.1121677, 46.740057 ], + [ 8.1119079, 46.7402096 ], + [ 8.1118356, 46.7391359 ], + [ 8.1107012, 46.7392524 ], + [ 8.1098262, 46.7392791 ], + [ 8.1070427, 46.7408302 ], + [ 8.1054206, 46.7403422 ], + [ 8.1044948, 46.7403962 ], + [ 8.1037352, 46.7400255 ], + [ 8.1029073, 46.741225 ], + [ 8.0964899, 46.742052 ], + [ 8.0965772, 46.7414929 ], + [ 8.0950225, 46.7413741 ], + [ 8.0949131, 46.7424848 ], + [ 8.0936336, 46.7425111 ], + [ 8.0936315, 46.7422313 ], + [ 8.0913004, 46.7430507 ], + [ 8.0911686, 46.7428616 ], + [ 8.0893554, 46.74323 ], + [ 8.0892318, 46.744259 ], + [ 8.0918971, 46.7446585 ], + [ 8.0915559, 46.744369 ], + [ 8.0922994, 46.7441713 ], + [ 8.0925228, 46.7444597 ], + [ 8.0936986, 46.744623 ], + [ 8.0936814, 46.7439645 ], + [ 8.1018502, 46.7433641 ], + [ 8.106912, 46.7427444 ], + [ 8.1081797, 46.7430338 ], + [ 8.1175076, 46.7421178 ], + [ 8.1235879, 46.7416595 ], + [ 8.1236278, 46.7417133 ], + [ 8.1287944, 46.7412278 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSMM002", + "country" : "CHE", + "name" : [ + { + "text" : "LSMM Meiringen (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSMM Meiringen (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSMM Meiringen (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSMM Meiringen (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Special Flight Office (SFO)", + "lang" : "de-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "fr-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "it-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "en-GB" + } + ], + "siteURL" : "https://skyguide.ch/services/special-flights", + "email" : "specialflight@skyguide.ch", + "phone" : "0041439316236", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.0342209, 47.0432815 ], + [ 7.0366317, 47.0448673 ], + [ 7.0368288, 47.0449741 ], + [ 7.037052, 47.0450534 ], + [ 7.0372932, 47.0451021 ], + [ 7.0375436, 47.0451187 ], + [ 7.037794, 47.0451023 ], + [ 7.0380353, 47.0450536 ], + [ 7.0382586, 47.0449745 ], + [ 7.0384558, 47.0448678 ], + [ 7.0386912, 47.0447132 ], + [ 7.0388305, 47.044658 ], + [ 7.039023, 47.0445425 ], + [ 7.0401293, 47.0437352 ], + [ 7.0404239, 47.0435203 ], + [ 7.0404299, 47.0435159 ], + [ 7.0409943, 47.0430986 ], + [ 7.0411363, 47.0429729 ], + [ 7.041196, 47.0428947 ], + [ 7.0412676, 47.042847 ], + [ 7.0412891, 47.0428326 ], + [ 7.0412905, 47.0428317 ], + [ 7.0416872, 47.0425673 ], + [ 7.0417271, 47.0425406 ], + [ 7.0417471, 47.0425278 ], + [ 7.0419027, 47.0424091 ], + [ 7.0431674, 47.0412525 ], + [ 7.0446383, 47.0401661 ], + [ 7.0448022, 47.0400165 ], + [ 7.0449173, 47.0398469 ], + [ 7.0449786, 47.0396647 ], + [ 7.0449836, 47.0394778 ], + [ 7.0449581, 47.0393874 ], + [ 7.0429617, 47.0383415 ], + [ 7.0415404, 47.0375904 ], + [ 7.0403581, 47.0369691 ], + [ 7.0396469, 47.0365536 ], + [ 7.0392365, 47.0362843 ], + [ 7.0388815, 47.0360251 ], + [ 7.0385245, 47.0357427 ], + [ 7.0382955, 47.0355494 ], + [ 7.0378594, 47.0351405 ], + [ 7.0372713, 47.034565 ], + [ 7.036292, 47.0336068 ], + [ 7.0361621, 47.0335925 ], + [ 7.0357669, 47.0335738 ], + [ 7.0352214, 47.0333634 ], + [ 7.0349475, 47.0332841 ], + [ 7.0346546, 47.0332489 ], + [ 7.0341883, 47.0332295 ], + [ 7.0341474999999996, 47.0336709 ], + [ 7.0341368, 47.0337862 ], + [ 7.0340915, 47.0339198 ], + [ 7.0300758, 47.0337624 ], + [ 7.028878, 47.0340069 ], + [ 7.02887, 47.0340436 ], + [ 7.0288674, 47.034059 ], + [ 7.0288598, 47.0341246 ], + [ 7.0288589, 47.0341402 ], + [ 7.0288583, 47.034206 ], + [ 7.0288591, 47.0342215 ], + [ 7.0288656, 47.0342871 ], + [ 7.0288679, 47.0343026 ], + [ 7.0288814, 47.0343677 ], + [ 7.0288854, 47.034383 ], + [ 7.0288925, 47.0344081 ], + [ 7.0292601, 47.0356124 ], + [ 7.0293268, 47.036332 ], + [ 7.0293448, 47.0364338 ], + [ 7.0293518, 47.0364608 ], + [ 7.0293416, 47.0365682 ], + [ 7.0293443, 47.036708 ], + [ 7.0293786, 47.0368459 ], + [ 7.0298635, 47.0381634 ], + [ 7.0300568, 47.0386885 ], + [ 7.0303845, 47.0395783 ], + [ 7.0304788, 47.039888 ], + [ 7.0304289, 47.0400031 ], + [ 7.0304039, 47.0401694 ], + [ 7.0304244, 47.0403359 ], + [ 7.0304472, 47.0404231 ], + [ 7.0306033, 47.0410418 ], + [ 7.0306867, 47.0413724 ], + [ 7.0307081, 47.041441 ], + [ 7.030968, 47.0421405 ], + [ 7.0310105, 47.0422334 ], + [ 7.0311753, 47.0425356 ], + [ 7.0313155, 47.0427223 ], + [ 7.0314827, 47.0428559 ], + [ 7.0315456, 47.0429541 ], + [ 7.0316814, 47.0430909 ], + [ 7.0318514, 47.0432083 ], + [ 7.0320501, 47.0433024 ], + [ 7.0322706, 47.0433702 ], + [ 7.0325066, 47.0434255 ], + [ 7.0327657, 47.0434669 ], + [ 7.0330318, 47.0434717 ], + [ 7.0332938, 47.0434398 ], + [ 7.033511, 47.0433808 ], + [ 7.0336698, 47.0433717 ], + [ 7.0339536, 47.0433381 ], + [ 7.0342209, 47.0432815 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "NE12", + "country" : "CHE", + "name" : [ + { + "text" : "VARO REFINING (CRESSIER) SA", + "lang" : "de-CH" + }, + { + "text" : "VARO REFINING (CRESSIER) SA", + "lang" : "fr-CH" + }, + { + "text" : "VARO REFINING (CRESSIER) SA", + "lang" : "it-CH" + }, + { + "text" : "VARO REFINING (CRESSIER) SA", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "regulationExemption" : "YES", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Police Neuchâteloise", + "lang" : "de-CH" + }, + { + "text" : "Police Neuchâteloise", + "lang" : "fr-CH" + }, + { + "text" : "Police Neuchâteloise", + "lang" : "it-CH" + }, + { + "text" : "Police Neuchâteloise", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "PN - Rens et opérations", + "lang" : "de-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "fr-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "it-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "PN - Rens et opérations", + "lang" : "de-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "fr-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "it-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ne.ch/autorites/DESC/PONE/Pages/Drones.aspx", + "email" : "Police.Neuchateloise@ne.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.8442249, 47.211854 ], + [ 8.8491033, 47.2126562 ], + [ 8.8526892, 47.2133057 ], + [ 8.8562051, 47.2169896 ], + [ 8.8599836, 47.217668 ], + [ 8.8641909, 47.2157574 ], + [ 8.870013, 47.2157301 ], + [ 8.8733517, 47.2136481 ], + [ 8.8766123, 47.2124514 ], + [ 8.8799572, 47.2131122 ], + [ 8.9178056, 47.2214545 ], + [ 8.9094927, 47.2097849 ], + [ 8.9015216, 47.2083959 ], + [ 8.8989639, 47.2085193 ], + [ 8.8960461, 47.2088963 ], + [ 8.8931579, 47.2103156 ], + [ 8.8878961, 47.2113572 ], + [ 8.8802556, 47.2101244 ], + [ 8.861480199999999, 47.2078698 ], + [ 8.8624672, 47.2047488 ], + [ 8.8627912, 47.2037322 ], + [ 8.8633277, 47.2026326 ], + [ 8.863393, 47.2024688 ], + [ 8.8634552, 47.2023051 ], + [ 8.8635015, 47.2021149 ], + [ 8.863503399999999, 47.2014584 ], + [ 8.8634664, 47.2014416 ], + [ 8.8634927, 47.2013849 ], + [ 8.8636021, 47.201389 ], + [ 8.8637037, 47.2012597 ], + [ 8.8635813, 47.2012275 ], + [ 8.86337, 47.2012052 ], + [ 8.863071, 47.2012154 ], + [ 8.8630994, 47.2012896 ], + [ 8.8628644, 47.2013279 ], + [ 8.8628396, 47.2013525 ], + [ 8.8628624, 47.2014095 ], + [ 8.8628413, 47.2014162 ], + [ 8.8628742, 47.20154 ], + [ 8.8629099, 47.2015252 ], + [ 8.8632477, 47.2014925 ], + [ 8.8633177, 47.2014901 ], + [ 8.8633077, 47.202109 ], + [ 8.8632728, 47.2022744 ], + [ 8.8632452, 47.2023737 ], + [ 8.8631804, 47.202554 ], + [ 8.8625993, 47.2036851 ], + [ 8.8622259, 47.2046885 ], + [ 8.8609049, 47.2077797 ], + [ 8.8445375, 47.2058174 ], + [ 8.8327148, 47.2047073 ], + [ 8.8285185, 47.2044594 ], + [ 8.8151156, 47.2105408 ], + [ 8.8211317, 47.2173236 ], + [ 8.8261291, 47.2148759 ], + [ 8.8302943, 47.2128366 ], + [ 8.8442249, 47.211854 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSPW002", + "country" : "CHE", + "name" : [ + { + "text" : "LSPW Wangen Seaplanebase (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSPW Wangen Seaplanebase (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSPW Wangen Seaplanebase (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSPW Wangen Seaplanebase (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Wangen Seaplanebase", + "lang" : "de-CH" + }, + { + "text" : "Wangen Seaplanebase", + "lang" : "fr-CH" + }, + { + "text" : "Wangen Seaplanebase", + "lang" : "it-CH" + }, + { + "text" : "Wangen Seaplanebase", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.flugplatzwangen.ch/flugplatz/drohnenbewilligung/", + "email" : "drohnen@flugplatzwangen.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6985965, 47.5004283 ], + [ 7.6986462, 47.5004088 ], + [ 7.6987834, 47.5004157 ], + [ 7.6989494, 47.500475 ], + [ 7.6989545, 47.50046 ], + [ 7.6989596, 47.500445 ], + [ 7.6989698, 47.5004149 ], + [ 7.6987895, 47.5001916 ], + [ 7.6986678, 47.5000468 ], + [ 7.698374, 47.4998492 ], + [ 7.6979551, 47.4996966 ], + [ 7.6978296, 47.4996771 ], + [ 7.6978943, 47.4995771 ], + [ 7.6976557, 47.499573 ], + [ 7.6976978, 47.4997299 ], + [ 7.6979825, 47.4998796 ], + [ 7.6981294, 47.4999423 ], + [ 7.6982204, 47.5002151 ], + [ 7.6983201999999995, 47.500341 ], + [ 7.6983882, 47.5003998 ], + [ 7.698411, 47.5004974 ], + [ 7.6985965, 47.5004283 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr104", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Aspgraben", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Aspgraben", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Aspgraben", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Aspgraben", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.841798, 47.4948202 ], + [ 7.8415578, 47.4948903 ], + [ 7.8416062, 47.4955411 ], + [ 7.8417851, 47.4958852 ], + [ 7.841803, 47.4959112 ], + [ 7.8420024999999995, 47.496142 ], + [ 7.8422394, 47.4962262 ], + [ 7.8421888, 47.4960219 ], + [ 7.8421776, 47.4959763 ], + [ 7.8421445, 47.4958426 ], + [ 7.8420328999999995, 47.4956673 ], + [ 7.8419426, 47.4953202 ], + [ 7.8418985, 47.4950644 ], + [ 7.841798, 47.4948202 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr103", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Stüdler", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Stüdler", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Stüdler", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Stüdler", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.500515, 47.4567314 ], + [ 7.5005404, 47.4567277 ], + [ 7.5014809, 47.4565911 ], + [ 7.5021499, 47.4565738 ], + [ 7.5026753, 47.4567092 ], + [ 7.503038, 47.4567811 ], + [ 7.5033945, 47.4568488 ], + [ 7.5036822, 47.4568698 ], + [ 7.5039823, 47.4568654 ], + [ 7.5042325, 47.4569119 ], + [ 7.5052001, 47.4571915 ], + [ 7.5052286, 47.4571925 ], + [ 7.5052585, 47.4571707 ], + [ 7.5053098, 47.4571433 ], + [ 7.5053567, 47.457126099999996 ], + [ 7.5054349, 47.4571151 ], + [ 7.5055099, 47.4571159 ], + [ 7.5056245, 47.4571322 ], + [ 7.505304, 47.4569874 ], + [ 7.5046856, 47.4567717 ], + [ 7.5034795, 47.4563911 ], + [ 7.5030155, 47.4562425 ], + [ 7.5028153, 47.4561324 ], + [ 7.5026964, 47.4560392 ], + [ 7.5026772, 47.4557169 ], + [ 7.5026204, 47.4552716 ], + [ 7.5025887, 47.4548475 ], + [ 7.5026057, 47.4546318 ], + [ 7.5026114, 47.4546272 ], + [ 7.502527, 47.4541832 ], + [ 7.5025095, 47.4541258 ], + [ 7.5025078, 47.4541174 ], + [ 7.5024847, 47.4540907 ], + [ 7.502463, 47.4539344 ], + [ 7.5024472, 47.4538168 ], + [ 7.502511, 47.4537081 ], + [ 7.502656, 47.4535388 ], + [ 7.5027304, 47.4534999 ], + [ 7.5028192, 47.4534805 ], + [ 7.5028965, 47.4534668 ], + [ 7.5030574, 47.4534176 ], + [ 7.5030743, 47.4534149 ], + [ 7.5030213, 47.4533837 ], + [ 7.502988, 47.4533642 ], + [ 7.5029261, 47.4533295 ], + [ 7.502815, 47.4533034 ], + [ 7.5026848, 47.4532815 ], + [ 7.5025774, 47.453242 ], + [ 7.5024871, 47.4531702 ], + [ 7.5024552, 47.4531167 ], + [ 7.5024429999999995, 47.4530628 ], + [ 7.5024684, 47.4529995 ], + [ 7.5024965, 47.4529436 ], + [ 7.5026158, 47.4528851 ], + [ 7.5027596, 47.4528369 ], + [ 7.502619, 47.4528282 ], + [ 7.5024571, 47.4528655 ], + [ 7.5023421, 47.452937 ], + [ 7.5021301000000005, 47.4531075 ], + [ 7.5018685, 47.4533194 ], + [ 7.5015838, 47.4535423 ], + [ 7.5013638, 47.4537219 ], + [ 7.5013478, 47.4537378 ], + [ 7.5012922, 47.4538077 ], + [ 7.5012385, 47.4538975 ], + [ 7.5011881, 47.4540105 ], + [ 7.50114, 47.4541643 ], + [ 7.501091, 47.454337699999996 ], + [ 7.5010464, 47.454494 ], + [ 7.5009879999999995, 47.4546995 ], + [ 7.5009258, 47.4548953 ], + [ 7.5008591, 47.4550918 ], + [ 7.5007815, 47.4552944 ], + [ 7.5007073, 47.4554697 ], + [ 7.5006248, 47.4557386 ], + [ 7.5005857, 47.4558926 ], + [ 7.500567, 47.4560869 ], + [ 7.5005811, 47.4562873 ], + [ 7.5005471, 47.4564466 ], + [ 7.5005095, 47.4565637 ], + [ 7.5005144999999995, 47.4566974 ], + [ 7.500515, 47.4567314 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns012", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Radme, Hanslifels und Chällengraben", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Radme, Hanslifels und Chällengraben", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Radme, Hanslifels und Chällengraben", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Radme, Hanslifels und Chällengraben", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.6315557, 46.5163406 ], + [ 6.6315524, 46.5161993 ], + [ 6.6315385, 46.5160584 ], + [ 6.6315138000000005, 46.5159181 ], + [ 6.6314786, 46.5157789 ], + [ 6.6314329, 46.5156412 ], + [ 6.6313768, 46.5155053 ], + [ 6.6313105, 46.5153717 ], + [ 6.6312341, 46.5152406 ], + [ 6.6311479, 46.5151125 ], + [ 6.6310521, 46.5149876 ], + [ 6.630947, 46.5148664 ], + [ 6.6308328, 46.5147492 ], + [ 6.6307099, 46.5146362 ], + [ 6.6305786, 46.5145278 ], + [ 6.6304392, 46.5144243 ], + [ 6.6302923, 46.514326 ], + [ 6.630138, 46.5142332 ], + [ 6.6299769, 46.514146 ], + [ 6.6298095, 46.5140648 ], + [ 6.6296361, 46.5139897 ], + [ 6.6294573, 46.513921 ], + [ 6.6292735, 46.5138589 ], + [ 6.6290852000000005, 46.5138035 ], + [ 6.628893, 46.5137549 ], + [ 6.6286974, 46.5137134 ], + [ 6.6284989, 46.513679 ], + [ 6.6282981, 46.5136518 ], + [ 6.6280955, 46.5136319 ], + [ 6.6278916, 46.5136194 ], + [ 6.6276871, 46.5136142 ], + [ 6.6274825, 46.5136164 ], + [ 6.6272783, 46.5136261 ], + [ 6.6270751, 46.5136431 ], + [ 6.6268735, 46.5136674 ], + [ 6.6266739999999995, 46.5136989 ], + [ 6.6264772, 46.5137376 ], + [ 6.6262836, 46.5137834 ], + [ 6.6260938, 46.5138361 ], + [ 6.6259081, 46.5138956 ], + [ 6.6257273, 46.5139617 ], + [ 6.6255517, 46.5140343 ], + [ 6.6253817999999995, 46.5141131 ], + [ 6.6252182, 46.514198 ], + [ 6.6250612, 46.5142886 ], + [ 6.6249113, 46.5143848 ], + [ 6.6247689, 46.5144863 ], + [ 6.6246343, 46.5145927 ], + [ 6.6245081, 46.5147039 ], + [ 6.6243904, 46.5148195 ], + [ 6.6242817, 46.5149392 ], + [ 6.6241822, 46.5150627 ], + [ 6.6240921, 46.5151896 ], + [ 6.6240119, 46.5153195 ], + [ 6.6239415, 46.5154522 ], + [ 6.6238814, 46.5155872 ], + [ 6.6238315, 46.5157243 ], + [ 6.6237922000000005, 46.5158629 ], + [ 6.6237633, 46.5160028 ], + [ 6.6237452, 46.5161435 ], + [ 6.6237376999999995, 46.5162847 ], + [ 6.6237409, 46.516426 ], + [ 6.6237548, 46.5165669 ], + [ 6.6237794, 46.5167072 ], + [ 6.6238146, 46.5168464 ], + [ 6.6238604, 46.5169841 ], + [ 6.6239164, 46.5171199 ], + [ 6.6239827, 46.5172536 ], + [ 6.6240591, 46.5173847 ], + [ 6.6241453, 46.5175128 ], + [ 6.6242411, 46.5176377 ], + [ 6.6243462, 46.5177589 ], + [ 6.6244604, 46.5178762 ], + [ 6.6245833, 46.5179892 ], + [ 6.6247146, 46.5180975 ], + [ 6.6248539, 46.518201 ], + [ 6.6250009, 46.5182993 ], + [ 6.6251551, 46.5183922 ], + [ 6.6253162, 46.5184794 ], + [ 6.6254837, 46.5185606 ], + [ 6.6256571, 46.5186357 ], + [ 6.6258359, 46.5187044 ], + [ 6.6260197, 46.5187665 ], + [ 6.626208, 46.5188219 ], + [ 6.6264002, 46.5188705 ], + [ 6.6265958, 46.518912 ], + [ 6.6267943, 46.5189464 ], + [ 6.6269952, 46.5189736 ], + [ 6.6271978, 46.5189935 ], + [ 6.6274017, 46.519006 ], + [ 6.6276062, 46.5190112 ], + [ 6.6278109, 46.5190089 ], + [ 6.6280151, 46.5189993 ], + [ 6.6282183, 46.5189823 ], + [ 6.6284199, 46.518958 ], + [ 6.6286194, 46.5189265 ], + [ 6.6288162, 46.5188877 ], + [ 6.6290098, 46.518842 ], + [ 6.6291997, 46.5187892 ], + [ 6.6293854, 46.5187297 ], + [ 6.6295662, 46.5186636 ], + [ 6.6297418, 46.518591 ], + [ 6.6299117, 46.5185122 ], + [ 6.6300754, 46.5184274 ], + [ 6.6302323, 46.5183367 ], + [ 6.6303823, 46.5182406 ], + [ 6.6305247, 46.5181391 ], + [ 6.6306592, 46.5180326 ], + [ 6.6307854, 46.5179214 ], + [ 6.6309031, 46.5178058 ], + [ 6.6310118, 46.5176861 ], + [ 6.6311113, 46.5175626 ], + [ 6.6312013, 46.5174358 ], + [ 6.6312816, 46.5173058 ], + [ 6.6313519, 46.5171731 ], + [ 6.631412, 46.5170381 ], + [ 6.6314619, 46.516901 ], + [ 6.6315012, 46.5167624 ], + [ 6.6315301, 46.5166225 ], + [ 6.6315482, 46.5164818 ], + [ 6.6315557, 46.5163406 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SIM0001", + "country" : "CHE", + "name" : [ + { + "text" : "Prison du Simplon", + "lang" : "de-CH" + }, + { + "text" : "Prison du Simplon", + "lang" : "fr-CH" + }, + { + "text" : "Prison du Simplon", + "lang" : "it-CH" + }, + { + "text" : "Prison du Simplon", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Direction du Service pénitentiaire Vaud", + "lang" : "de-CH" + }, + { + "text" : "Direction du Service pénitentiaire Vaud", + "lang" : "fr-CH" + }, + { + "text" : "Direction du Service pénitentiaire Vaud", + "lang" : "it-CH" + }, + { + "text" : "Direction du Service pénitentiaire Vaud", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/toutes-les-autorites/departements/departement-de-la-jeunesse-de-lenvironnement-et-de-la-securite-djes/service-penitentiaire-spen/", + "email" : "info.spen@vd.ch", + "phone" : "0041213164801", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.1825401, 46.4595169 ], + [ 7.1824733, 46.459057 ], + [ 7.1823265, 46.4589838 ], + [ 7.1821395, 46.4589051 ], + [ 7.1819916, 46.458787 ], + [ 7.1817543, 46.4586119 ], + [ 7.1815259, 46.4584495 ], + [ 7.1812483, 46.4582518 ], + [ 7.1810368, 46.4581227 ], + [ 7.18089, 46.4580495 ], + [ 7.1807679, 46.4579935 ], + [ 7.180556, 46.4579435 ], + [ 7.1802946, 46.4578925 ], + [ 7.1799854, 46.4577641 ], + [ 7.1796921, 46.4575898 ], + [ 7.1786313, 46.4570332 ], + [ 7.1781248, 46.4567964 ], + [ 7.1778314, 46.4566338 ], + [ 7.1775134, 46.456454 ], + [ 7.1773007, 46.4562961 ], + [ 7.1771295, 46.4561779 ], + [ 7.1769752, 46.4560597 ], + [ 7.1768442, 46.4559532 ], + [ 7.1767131, 46.4558801 ], + [ 7.1765909, 46.4558465 ], + [ 7.1764282999999995, 46.4558299 ], + [ 7.1761839, 46.4557619 ], + [ 7.1759966, 46.4557453 ], + [ 7.1758577, 46.4556559 ], + [ 7.1756787, 46.455543 ], + [ 7.1754668, 46.4554876 ], + [ 7.1752458, 46.4554197 ], + [ 7.1751237, 46.4553753 ], + [ 7.1750106, 46.4553355 ], + [ 7.1748549, 46.4552514 ], + [ 7.1751966, 46.4551038 ], + [ 7.1753746, 46.4549117 ], + [ 7.1754639, 46.4547365 ], + [ 7.1755692, 46.4545056 ], + [ 7.1756834, 46.4542962 ], + [ 7.1758049, 46.4542003 ], + [ 7.1759097, 46.4540755 ], + [ 7.1759508, 46.4539235 ], + [ 7.1759907, 46.4537311 ], + [ 7.1760227, 46.4535792 ], + [ 7.1760479, 46.4534893 ], + [ 7.1759897, 46.4534154 ], + [ 7.1756884, 46.4532698 ], + [ 7.1753429, 46.4531368 ], + [ 7.1726578, 46.4549818 ], + [ 7.1738382, 46.4558032 ], + [ 7.1723711, 46.4571707 ], + [ 7.1722719, 46.4577417 ], + [ 7.172008, 46.458198 ], + [ 7.171717, 46.4586165 ], + [ 7.1717152, 46.4589872 ], + [ 7.1714113, 46.4591106 ], + [ 7.1710367999999995, 46.4595568 ], + [ 7.170567, 46.4597941 ], + [ 7.1697927, 46.4605254 ], + [ 7.1704803, 46.4607267 ], + [ 7.1713904, 46.4604239 ], + [ 7.1725125, 46.4593795 ], + [ 7.1732698, 46.4594388 ], + [ 7.1738612, 46.4596021 ], + [ 7.1747275, 46.4600035 ], + [ 7.1752767, 46.4602999 ], + [ 7.1779531, 46.4624498 ], + [ 7.1782085, 46.4626554 ], + [ 7.1782954, 46.4627249 ], + [ 7.1785039, 46.4626777 ], + [ 7.178586, 46.462659 ], + [ 7.1790867, 46.4616796 ], + [ 7.1797224, 46.4610343 ], + [ 7.1804541, 46.4607409 ], + [ 7.1810625, 46.4603609 ], + [ 7.1825401, 46.4595169 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00008", + "country" : "CHE", + "name" : [ + { + "text" : "Pierreuse - Gummfluh", + "lang" : "de-CH" + }, + { + "text" : "Pierreuse - Gummfluh", + "lang" : "fr-CH" + }, + { + "text" : "Pierreuse - Gummfluh", + "lang" : "it-CH" + }, + { + "text" : "Pierreuse - Gummfluh", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "startDateTime" : "2024-11-15T00:00:00+01:00", + "endDateTime" : "2025-04-15T00:00:00+02:00" + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Generaldirektion für Umwelt", + "lang" : "de-CH" + }, + { + "text" : "Direction générale de l'environnement", + "lang" : "fr-CH" + }, + { + "text" : "Direzione generale dell'Ambiente", + "lang" : "it-CH" + }, + { + "text" : "Environment Department", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.dge@vd.ch", + "phone" : "0041213164422", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.1158637, 46.6112466 ], + [ 7.1158592, 46.6111053 ], + [ 7.115844, 46.6109644 ], + [ 7.1158181, 46.6108243 ], + [ 7.1157815, 46.6106853 ], + [ 7.1157345, 46.6105477 ], + [ 7.1156771, 46.6104121 ], + [ 7.1156094, 46.6102787 ], + [ 7.1155318, 46.610148 ], + [ 7.1154443, 46.6100202 ], + [ 7.1153472, 46.6098958 ], + [ 7.1152408, 46.609775 ], + [ 7.1151254, 46.6096582 ], + [ 7.1150012, 46.6095458 ], + [ 7.1148687, 46.609438 ], + [ 7.1147282, 46.6093351 ], + [ 7.1145801, 46.6092374 ], + [ 7.1144248, 46.6091452 ], + [ 7.1142626, 46.6090587 ], + [ 7.1140942, 46.6089782 ], + [ 7.1139198, 46.6089039 ], + [ 7.11374, 46.608836 ], + [ 7.1135554, 46.6087746 ], + [ 7.1133663, 46.60872 ], + [ 7.1131733, 46.6086723 ], + [ 7.112977, 46.6086316 ], + [ 7.1127779, 46.608598 ], + [ 7.1125764, 46.6085717 ], + [ 7.1123733, 46.6085527 ], + [ 7.112169, 46.608541 ], + [ 7.1119641, 46.6085367 ], + [ 7.1117591000000004, 46.6085398 ], + [ 7.1115547, 46.6085503 ], + [ 7.1113513, 46.6085682 ], + [ 7.1111496, 46.6085934 ], + [ 7.11095, 46.6086258 ], + [ 7.1107531999999996, 46.6086653 ], + [ 7.1105597, 46.6087119 ], + [ 7.1103699, 46.6087654 ], + [ 7.1101845, 46.6088257 ], + [ 7.110004, 46.6088926 ], + [ 7.1098287, 46.6089659 ], + [ 7.1096593, 46.6090455 ], + [ 7.1094961, 46.609131 ], + [ 7.1093397, 46.6092223 ], + [ 7.1091903, 46.6093191 ], + [ 7.1090486, 46.6094212 ], + [ 7.1089148, 46.6095283 ], + [ 7.1087893, 46.60964 ], + [ 7.1086725, 46.6097561 ], + [ 7.1085646, 46.6098762 ], + [ 7.108466, 46.6100001 ], + [ 7.108377, 46.6101274 ], + [ 7.1082977, 46.6102577 ], + [ 7.1082285, 46.610390699999996 ], + [ 7.1081694, 46.610526 ], + [ 7.1081207, 46.6106632 ], + [ 7.1080825, 46.610802 ], + [ 7.1080549, 46.610942 ], + [ 7.1080379, 46.6110828 ], + [ 7.1080317, 46.611224 ], + [ 7.1080362, 46.6113653 ], + [ 7.1080514, 46.6115062 ], + [ 7.1080773, 46.6116463 ], + [ 7.1081138, 46.6117854 ], + [ 7.1081608, 46.6119229 ], + [ 7.1082182, 46.6120585 ], + [ 7.1082859, 46.6121919 ], + [ 7.1083635, 46.6123226 ], + [ 7.108451, 46.6124504 ], + [ 7.1085481, 46.6125749 ], + [ 7.1086545, 46.6126957 ], + [ 7.1087699, 46.6128124 ], + [ 7.108894, 46.6129249 ], + [ 7.1090265, 46.6130327 ], + [ 7.109167, 46.6131356 ], + [ 7.1093151, 46.6132333 ], + [ 7.1094705, 46.6133255 ], + [ 7.1096326, 46.613412 ], + [ 7.1098011, 46.6134925 ], + [ 7.1099755, 46.6135668 ], + [ 7.1101552, 46.6136347 ], + [ 7.1103399, 46.6136961 ], + [ 7.110529, 46.6137507 ], + [ 7.110722, 46.6137984 ], + [ 7.1109183, 46.6138391 ], + [ 7.1111175, 46.6138727 ], + [ 7.1113189, 46.613899 ], + [ 7.1115221, 46.6139181 ], + [ 7.1117264, 46.6139297 ], + [ 7.1119313, 46.613934 ], + [ 7.1121363, 46.6139309 ], + [ 7.1123408, 46.6139204 ], + [ 7.1125442, 46.6139026 ], + [ 7.1127459, 46.6138774 ], + [ 7.1129455, 46.613845 ], + [ 7.1131423, 46.6138054 ], + [ 7.1133359, 46.6137588 ], + [ 7.1135256, 46.6137053 ], + [ 7.113711, 46.613645 ], + [ 7.1138916, 46.6135781 ], + [ 7.1140669, 46.6135048 ], + [ 7.1142363, 46.6134252 ], + [ 7.1143995, 46.6133397 ], + [ 7.114556, 46.6132484 ], + [ 7.1147053, 46.6131515 ], + [ 7.114847, 46.6130495 ], + [ 7.1149808, 46.6129424 ], + [ 7.1151063, 46.6128307 ], + [ 7.1152231, 46.6127146 ], + [ 7.115331, 46.6125944 ], + [ 7.1154296, 46.6124705 ], + [ 7.1155186, 46.6123433 ], + [ 7.1155978, 46.6122129 ], + [ 7.1156671, 46.61208 ], + [ 7.1157261, 46.6119447 ], + [ 7.1157748, 46.611807400000004 ], + [ 7.115813, 46.6116686 ], + [ 7.1158406, 46.6115286 ], + [ 7.1158575, 46.6113878 ], + [ 7.1158637, 46.6112466 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0019", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Botterens", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Botterens", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Botterens", + "lang" : "it-CH" + }, + { + "text" : "Substation Botterens", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5449865, 47.0333692 ], + [ 7.5449808, 47.0332279 ], + [ 7.5449643, 47.0330871 ], + [ 7.544937, 47.032947 ], + [ 7.5448991, 47.0328082 ], + [ 7.5448506, 47.0326708 ], + [ 7.5447916, 47.0325354 ], + [ 7.5447223999999995, 47.0324023 ], + [ 7.5446431, 47.0322718 ], + [ 7.5445538, 47.0321444 ], + [ 7.544455, 47.0320203 ], + [ 7.5443468, 47.0319 ], + [ 7.5442295, 47.0317837 ], + [ 7.5441035, 47.0316717 ], + [ 7.5439691, 47.0315644 ], + [ 7.5438267, 47.031462 ], + [ 7.5436765999999995, 47.0313649 ], + [ 7.5435193, 47.0312733 ], + [ 7.5433552, 47.0311874 ], + [ 7.5431847, 47.0311076 ], + [ 7.5430084, 47.0310339 ], + [ 7.5428267, 47.0309667 ], + [ 7.5426401, 47.030906 ], + [ 7.5424491, 47.0308521 ], + [ 7.5422542, 47.0308051 ], + [ 7.542056, 47.0307652 ], + [ 7.5418551, 47.0307324 ], + [ 7.5416518, 47.0307068 ], + [ 7.5414469, 47.0306886 ], + [ 7.5412409, 47.0306777 ], + [ 7.5410344, 47.0306742 ], + [ 7.5408278, 47.030678 ], + [ 7.5406219, 47.0306893 ], + [ 7.540417, 47.0307079 ], + [ 7.5402139, 47.0307339 ], + [ 7.5400131, 47.030767 ], + [ 7.539815, 47.0308073 ], + [ 7.5396203, 47.0308547 ], + [ 7.5394295, 47.0309089 ], + [ 7.5392432, 47.0309699 ], + [ 7.5390616999999995, 47.0310375 ], + [ 7.5388857, 47.0311114 ], + [ 7.5387155, 47.0311916 ], + [ 7.5385518000000005, 47.0312778 ], + [ 7.5383948, 47.0313697 ], + [ 7.5382451, 47.031467 ], + [ 7.5381031, 47.0315696 ], + [ 7.5379691, 47.0316772 ], + [ 7.5378435, 47.0317894 ], + [ 7.5377267, 47.0319059 ], + [ 7.5376189, 47.0320265 ], + [ 7.5375206, 47.0321507 ], + [ 7.5374318, 47.0322783 ], + [ 7.5373529999999995, 47.0324089 ], + [ 7.5372843, 47.0325422 ], + [ 7.5372258, 47.0326777 ], + [ 7.5371778, 47.0328151 ], + [ 7.5371404, 47.032954 ], + [ 7.5371137, 47.0330941 ], + [ 7.5370978, 47.033235 ], + [ 7.5370926, 47.0333762 ], + [ 7.5370983, 47.0335174 ], + [ 7.5371148, 47.0336583 ], + [ 7.537142, 47.0337983 ], + [ 7.5371799, 47.0339372 ], + [ 7.5372284, 47.0340745 ], + [ 7.5372873, 47.0342099 ], + [ 7.5373565, 47.034343 ], + [ 7.5374358, 47.0344735 ], + [ 7.5375250000000005, 47.0346009 ], + [ 7.5376239, 47.034725 ], + [ 7.5377320999999995, 47.0348454 ], + [ 7.5378492999999995, 47.0349617 ], + [ 7.5379753, 47.0350737 ], + [ 7.5381097, 47.035181 ], + [ 7.5382522, 47.0352834 ], + [ 7.5384022, 47.0353805 ], + [ 7.5385596, 47.0354721 ], + [ 7.5387236, 47.035558 ], + [ 7.5388941, 47.0356378 ], + [ 7.5390704, 47.0357115 ], + [ 7.5392522, 47.0357788 ], + [ 7.5394388, 47.0358394 ], + [ 7.5396298, 47.0358933 ], + [ 7.5398247, 47.0359403 ], + [ 7.5400229, 47.0359803 ], + [ 7.5402239, 47.0360131 ], + [ 7.5404271, 47.0360386 ], + [ 7.5406321, 47.0360569 ], + [ 7.5408381, 47.0360678 ], + [ 7.5410447, 47.0360713 ], + [ 7.5412513, 47.0360674 ], + [ 7.5414573, 47.0360562 ], + [ 7.5416621, 47.0360376 ], + [ 7.5418652, 47.0360116 ], + [ 7.5420660999999996, 47.0359785 ], + [ 7.5422642, 47.0359382 ], + [ 7.5424589, 47.0358908 ], + [ 7.5426497, 47.0358366 ], + [ 7.5428361, 47.0357756 ], + [ 7.5430176, 47.035708 ], + [ 7.5431936, 47.0356341 ], + [ 7.5433638, 47.0355539 ], + [ 7.5435276, 47.0354677 ], + [ 7.5436845, 47.0353758 ], + [ 7.5438342, 47.0352784 ], + [ 7.5439763, 47.0351758 ], + [ 7.5441102, 47.0350683 ], + [ 7.5442358, 47.0349561 ], + [ 7.5443526, 47.0348395 ], + [ 7.5444604, 47.034719 ], + [ 7.5445587, 47.0345947 ], + [ 7.5446474, 47.0344671 ], + [ 7.5447261999999995, 47.0343365 ], + [ 7.544795, 47.0342033 ], + [ 7.5448534, 47.0340677 ], + [ 7.5449013, 47.0339303 ], + [ 7.5449387, 47.0337914 ], + [ 7.5449654, 47.0336513 ], + [ 7.5449813, 47.0335104 ], + [ 7.5449865, 47.0333692 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "HIB0001", + "country" : "CHE", + "name" : [ + { + "text" : "JVA Hindelbank", + "lang" : "de-CH" + }, + { + "text" : "JVA Hindelbank", + "lang" : "fr-CH" + }, + { + "text" : "JVA Hindelbank", + "lang" : "it-CH" + }, + { + "text" : "JVA Hindelbank", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Justizvollzug", + "lang" : "de-CH" + }, + { + "text" : "Amt für Justizvollzug", + "lang" : "fr-CH" + }, + { + "text" : "Amt für Justizvollzug", + "lang" : "it-CH" + }, + { + "text" : "Amt für Justizvollzug", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Schutz und Sicherheit", + "lang" : "de-CH" + }, + { + "text" : "Schutz und Sicherheit", + "lang" : "fr-CH" + }, + { + "text" : "Schutz und Sicherheit", + "lang" : "it-CH" + }, + { + "text" : "Schutz und Sicherheit", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.be.ch/hindelbank", + "email" : "jva.hindelbank@be.ch", + "phone" : "0041316363711", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.506249, 47.1923129 ], + [ 8.5062407, 47.1921718 ], + [ 8.5062217, 47.1920311 ], + [ 8.5061918, 47.1918913 ], + [ 8.506151299999999, 47.1917527 ], + [ 8.5061002, 47.1916158 ], + [ 8.5060386, 47.191481 ], + [ 8.5059668, 47.1913484 ], + [ 8.5058849, 47.1912187 ], + [ 8.5057931, 47.191092 ], + [ 8.5056918, 47.1909688 ], + [ 8.5055811, 47.190849299999996 ], + [ 8.5054614, 47.190734 ], + [ 8.505333, 47.1906231 ], + [ 8.5051963, 47.1905169 ], + [ 8.5050516, 47.1904158 ], + [ 8.5048994, 47.1903199 ], + [ 8.5047399, 47.1902297 ], + [ 8.5045738, 47.1901452 ], + [ 8.5044015, 47.1900668 ], + [ 8.5042233, 47.1899946 ], + [ 8.5040399, 47.1899289 ], + [ 8.5038516, 47.1898698 ], + [ 8.5036591, 47.1898175 ], + [ 8.5034628, 47.1897722 ], + [ 8.5032633, 47.1897339 ], + [ 8.5030612, 47.1897028 ], + [ 8.5028569, 47.1896789 ], + [ 8.5026511, 47.1896624 ], + [ 8.5024443, 47.1896532 ], + [ 8.5022371, 47.1896514 ], + [ 8.50203, 47.189657 ], + [ 8.5018236, 47.18967 ], + [ 8.5016186, 47.1896903 ], + [ 8.5014153, 47.189718 ], + [ 8.5012145, 47.1897528 ], + [ 8.5010166, 47.1897948 ], + [ 8.5008222, 47.1898437 ], + [ 8.5006318, 47.1898995 ], + [ 8.500446, 47.1899621 ], + [ 8.5002652, 47.1900312 ], + [ 8.50009, 47.1901066 ], + [ 8.4999208, 47.1901882 ], + [ 8.4997581, 47.1902757 ], + [ 8.4996024, 47.1903689 ], + [ 8.499454, 47.1904675 ], + [ 8.4993134, 47.1905713 ], + [ 8.4991809, 47.1906799 ], + [ 8.499057, 47.1907932 ], + [ 8.4989419, 47.1909107 ], + [ 8.498836, 47.1910321 ], + [ 8.4987396, 47.1911572 ], + [ 8.4986529, 47.1912855 ], + [ 8.4985762, 47.1914167 ], + [ 8.4985097, 47.1915505 ], + [ 8.4984535, 47.1916865 ], + [ 8.4984079, 47.1918243 ], + [ 8.4983728, 47.1919635 ], + [ 8.4983486, 47.1921038 ], + [ 8.4983351, 47.1922448 ], + [ 8.4983325, 47.1923861 ], + [ 8.4983407, 47.1925272 ], + [ 8.4983597, 47.192667900000004 ], + [ 8.4983896, 47.1928077 ], + [ 8.4984301, 47.1929463 ], + [ 8.4984812, 47.1930832 ], + [ 8.4985427, 47.1932181 ], + [ 8.4986145, 47.1933506 ], + [ 8.4986964, 47.1934804 ], + [ 8.4987882, 47.193607 ], + [ 8.4988895, 47.1937303 ], + [ 8.4990002, 47.1938497 ], + [ 8.4991199, 47.1939651 ], + [ 8.4992482, 47.194076 ], + [ 8.499385, 47.1941821 ], + [ 8.4995297, 47.1942833 ], + [ 8.4996819, 47.1943791 ], + [ 8.4998413, 47.1944694 ], + [ 8.5000074, 47.1945539 ], + [ 8.5001798, 47.1946323 ], + [ 8.500358, 47.1947045 ], + [ 8.5005414, 47.1947702 ], + [ 8.5007297, 47.1948293 ], + [ 8.5009222, 47.1948816 ], + [ 8.5011185, 47.194927 ], + [ 8.501318, 47.1949653 ], + [ 8.5015202, 47.1949964 ], + [ 8.5017245, 47.1950202 ], + [ 8.5019303, 47.1950368 ], + [ 8.5021371, 47.195046 ], + [ 8.5023444, 47.1950477 ], + [ 8.5025515, 47.1950421 ], + [ 8.5027579, 47.1950291 ], + [ 8.502963, 47.1950088 ], + [ 8.5031662, 47.1949812 ], + [ 8.5033671, 47.1949463 ], + [ 8.503565, 47.1949044 ], + [ 8.5037594, 47.1948554 ], + [ 8.503949800000001, 47.1947996 ], + [ 8.5041356, 47.194737 ], + [ 8.5043164, 47.194668 ], + [ 8.5044916, 47.1945925 ], + [ 8.5046608, 47.1945109 ], + [ 8.5048235, 47.1944234 ], + [ 8.5049793, 47.1943302 ], + [ 8.5051277, 47.1942316 ], + [ 8.505268300000001, 47.1941278 ], + [ 8.5054007, 47.1940191 ], + [ 8.5055247, 47.1939059 ], + [ 8.5056397, 47.1937884 ], + [ 8.505745600000001, 47.1936669 ], + [ 8.505842, 47.1935419 ], + [ 8.5059287, 47.1934135 ], + [ 8.5060054, 47.1932823 ], + [ 8.5060719, 47.1931485 ], + [ 8.5061281, 47.1930125 ], + [ 8.5061737, 47.1928747 ], + [ 8.5062087, 47.1927355 ], + [ 8.5062329, 47.1925952 ], + [ 8.5062464, 47.1924542 ], + [ 8.506249, 47.1923129 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0003", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Altgass", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Altgass", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Altgass", + "lang" : "it-CH" + }, + { + "text" : "Substation Altgass", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4743393, 46.9765813 ], + [ 7.4743596, 46.9765659 ], + [ 7.4743798, 46.9765504 ], + [ 7.4743998, 46.9765348 ], + [ 7.4744196, 46.9765191 ], + [ 7.4744387, 46.9765037 ], + [ 7.4744576, 46.9764883 ], + [ 7.4744764, 46.9764727 ], + [ 7.474495, 46.9764571 ], + [ 7.4745134, 46.9764413 ], + [ 7.4745316, 46.9764255 ], + [ 7.4745497, 46.9764096 ], + [ 7.4745716, 46.9763901 ], + [ 7.4745933, 46.9763706 ], + [ 7.4746148, 46.9763509 ], + [ 7.474636, 46.976331 ], + [ 7.4746569, 46.9763111 ], + [ 7.4746777, 46.9762911 ], + [ 7.4746981, 46.9762709 ], + [ 7.4747077, 46.9762658 ], + [ 7.4743617, 46.9761121 ], + [ 7.474098, 46.9759944 ], + [ 7.4739793, 46.976113 ], + [ 7.4738435, 46.9762463 ], + [ 7.4738209, 46.9762676 ], + [ 7.473798, 46.9762889 ], + [ 7.473775, 46.97631 ], + [ 7.4737517, 46.976331 ], + [ 7.4737283, 46.9763519 ], + [ 7.4737046, 46.9763728 ], + [ 7.4736807, 46.9763934 ], + [ 7.4736638, 46.9764076 ], + [ 7.4736468, 46.9764217 ], + [ 7.4736296, 46.9764356 ], + [ 7.4736123, 46.9764495 ], + [ 7.4735948, 46.9764633 ], + [ 7.4735771, 46.976477 ], + [ 7.4735592, 46.9764906 ], + [ 7.4735408, 46.9765042 ], + [ 7.4735221, 46.9765178 ], + [ 7.4735032, 46.9765312 ], + [ 7.4734842, 46.9765445 ], + [ 7.4734649, 46.9765577 ], + [ 7.4734454, 46.976570699999996 ], + [ 7.4734258, 46.9765836 ], + [ 7.4734634, 46.976618 ], + [ 7.4729506, 46.9768316 ], + [ 7.4733309, 46.9771812 ], + [ 7.4737241, 46.9769805 ], + [ 7.4737366, 46.9769743 ], + [ 7.4737491, 46.976968 ], + [ 7.4737615, 46.9769617 ], + [ 7.4737739, 46.9769553 ], + [ 7.4737862, 46.976949 ], + [ 7.4737985, 46.9769425 ], + [ 7.4738108, 46.9769361 ], + [ 7.4738351, 46.9769232 ], + [ 7.4738593, 46.9769102 ], + [ 7.4738833, 46.976897 ], + [ 7.4739072, 46.9768837 ], + [ 7.4739309, 46.9768703 ], + [ 7.4739545, 46.9768568 ], + [ 7.4739778999999995, 46.9768432 ], + [ 7.4740011, 46.9768295 ], + [ 7.4740241, 46.9768157 ], + [ 7.474047, 46.9768019 ], + [ 7.4740698, 46.9767879 ], + [ 7.4740924, 46.9767738 ], + [ 7.4741149, 46.9767596 ], + [ 7.4741372, 46.9767453 ], + [ 7.4741602, 46.9767303 ], + [ 7.474183, 46.9767151 ], + [ 7.4742056, 46.9766999 ], + [ 7.4742281, 46.9766846 ], + [ 7.4742505, 46.9766692 ], + [ 7.4742728, 46.9766537 ], + [ 7.4742949, 46.9766381 ], + [ 7.4742773, 46.9766269 ], + [ 7.4742981, 46.9766118 ], + [ 7.4743188, 46.9765966 ], + [ 7.4743393, 46.9765813 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VBS_33", + "country" : "CHE", + "name" : [ + { + "text" : "VBS_33 Ittigen", + "lang" : "de-CH" + }, + { + "text" : "VBS_33 Ittigen", + "lang" : "fr-CH" + }, + { + "text" : "VBS_33 Ittigen", + "lang" : "it-CH" + }, + { + "text" : "VBS_33 Ittigen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "regulationExemption" : "YES", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Eidgenössisches Departement für Verteidigung, Bevölkerungsschutz und Sport (VBS)", + "lang" : "de-CH" + }, + { + "text" : "Département fédéral de la défense, de la protection de la population et des sports (DDPS)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento federale della difesa, della protezione della popolazione e dello sport (DDPS)", + "lang" : "it-CH" + }, + { + "text" : "Federal Department of Defence, Civil Protection and Sport (DDPS)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Lageverfolgungszentrum der Armee LVZ A", + "lang" : "de-CH" + }, + { + "text" : "Centre de suivi de la situation de l’armée, CSS A", + "lang" : "fr-CH" + }, + { + "text" : "Centro di monitoraggio della situazione dell’esercito, Centro mon sit Es", + "lang" : "it-CH" + }, + { + "text" : "Joint Operation Center, JOC", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vtg.admin.ch/en/joint-operations-command", + "email" : "lvz.op@vtg.admin.ch", + "phone" : "+41 58 464 96 43", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6419497, 47.5157269 ], + [ 7.6428021, 47.5157971 ], + [ 7.6436488, 47.5158278 ], + [ 7.6436729, 47.5158333 ], + [ 7.6441058, 47.5157589 ], + [ 7.6445732, 47.5157959 ], + [ 7.6452245, 47.5159319 ], + [ 7.6457434, 47.5160686 ], + [ 7.646052, 47.5161674 ], + [ 7.6463829, 47.5161073 ], + [ 7.6464241, 47.5160998 ], + [ 7.6464387, 47.5160667 ], + [ 7.6464043, 47.5158884 ], + [ 7.6463757, 47.5157442 ], + [ 7.6463419, 47.5156459 ], + [ 7.6461387, 47.5152532 ], + [ 7.6448466, 47.5148808 ], + [ 7.6442787, 47.515066 ], + [ 7.644185, 47.5150776 ], + [ 7.6437924, 47.5150631 ], + [ 7.6437206, 47.5151167 ], + [ 7.6435595, 47.5152191 ], + [ 7.6434429, 47.5152816 ], + [ 7.6433228, 47.51533 ], + [ 7.6432058, 47.5153641 ], + [ 7.6425825, 47.5155591 ], + [ 7.6424784, 47.5155905 ], + [ 7.6423538, 47.5156231 ], + [ 7.6420513, 47.5156962 ], + [ 7.6419721, 47.5157166 ], + [ 7.6419566, 47.5157233 ], + [ 7.6419497, 47.5157269 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns057", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Dürrain", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Dürrain", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Dürrain", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Dürrain", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5406115, 47.4566777 ], + [ 7.5403731, 47.4566654 ], + [ 7.5400031, 47.4566496 ], + [ 7.539859, 47.4566341 ], + [ 7.5387899, 47.4565042 ], + [ 7.5380377, 47.4564177 ], + [ 7.5379143, 47.4564013 ], + [ 7.5378907, 47.4564005 ], + [ 7.5378843, 47.4563997 ], + [ 7.537878, 47.4563986 ], + [ 7.5378719, 47.4563972 ], + [ 7.537866, 47.4563953 ], + [ 7.5378603, 47.4563932 ], + [ 7.5378549, 47.4563907 ], + [ 7.5378498, 47.4563879 ], + [ 7.5378451, 47.4563849 ], + [ 7.5378408, 47.4563816 ], + [ 7.537837, 47.456378 ], + [ 7.5378336, 47.4563743 ], + [ 7.5378166, 47.4563708 ], + [ 7.5378173, 47.4564276 ], + [ 7.5376826, 47.4569346 ], + [ 7.5376747, 47.4569646 ], + [ 7.537778, 47.4569692 ], + [ 7.5386147999999995, 47.4570121 ], + [ 7.5398648999999995, 47.4570598 ], + [ 7.5405117, 47.457098 ], + [ 7.5405706, 47.4568466 ], + [ 7.5406040999999995, 47.456708 ], + [ 7.5406115, 47.4566777 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns047", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Blauenweid", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Blauenweid", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Blauenweid", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Blauenweid", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.4072469, 47.4072029 ], + [ 8.4072388, 47.4070618 ], + [ 8.40722, 47.4069211 ], + [ 8.4071902, 47.4067813 ], + [ 8.4071498, 47.4066427 ], + [ 8.4070987, 47.4065058 ], + [ 8.4070372, 47.4063708 ], + [ 8.4069653, 47.4062382 ], + [ 8.4068833, 47.4061084 ], + [ 8.4067914, 47.4059817 ], + [ 8.4066899, 47.4058584 ], + [ 8.406579, 47.4057388 ], + [ 8.406459, 47.4056234 ], + [ 8.4063303, 47.4055124 ], + [ 8.4061932, 47.4054062 ], + [ 8.4060481, 47.4053049 ], + [ 8.4058954, 47.4052089 ], + [ 8.4057356, 47.4051185 ], + [ 8.4055689, 47.4050339 ], + [ 8.405396, 47.4049554 ], + [ 8.4052173, 47.404883 ], + [ 8.4050332, 47.4048172 ], + [ 8.4048443, 47.4047579 ], + [ 8.4046511, 47.4047055 ], + [ 8.4044541, 47.40466 ], + [ 8.4042539, 47.4046215 ], + [ 8.404051, 47.4045902 ], + [ 8.4038459, 47.4045662 ], + [ 8.4036393, 47.4045495 ], + [ 8.4034317, 47.4045402 ], + [ 8.4032236, 47.4045382 ], + [ 8.4030157, 47.4045436 ], + [ 8.4028085, 47.4045565 ], + [ 8.4026025, 47.4045766 ], + [ 8.4023984, 47.4046041 ], + [ 8.4021967, 47.4046387 ], + [ 8.4019979, 47.4046805 ], + [ 8.4018026, 47.4047293 ], + [ 8.4016114, 47.404785 ], + [ 8.4014247, 47.4048474 ], + [ 8.4012431, 47.4049163 ], + [ 8.401067, 47.4049916 ], + [ 8.400897, 47.405073 ], + [ 8.4007335, 47.4051604 ], + [ 8.4005769, 47.4052534 ], + [ 8.4004277, 47.4053519 ], + [ 8.4002864, 47.4054556 ], + [ 8.4001532, 47.4055641 ], + [ 8.4000285, 47.4056772 ], + [ 8.3999128, 47.4057946 ], + [ 8.3998062, 47.405916 ], + [ 8.3997092, 47.4060409 ], + [ 8.3996219, 47.4061692 ], + [ 8.3995447, 47.4063003 ], + [ 8.3994776, 47.406434 ], + [ 8.399421, 47.40657 ], + [ 8.3993749, 47.4067077 ], + [ 8.3993395, 47.4068469 ], + [ 8.399314799999999, 47.4069872 ], + [ 8.3993011, 47.4071281 ], + [ 8.3992982, 47.4072694 ], + [ 8.3993061, 47.4074105 ], + [ 8.399325, 47.4075512 ], + [ 8.3993547, 47.407691 ], + [ 8.3993951, 47.4078296 ], + [ 8.3994462, 47.4079665 ], + [ 8.3995077, 47.4081015 ], + [ 8.3995796, 47.408234 ], + [ 8.3996616, 47.4083639 ], + [ 8.3997535, 47.4084906 ], + [ 8.399855, 47.4086139 ], + [ 8.3999659, 47.4087335 ], + [ 8.4000859, 47.4088489 ], + [ 8.4002146, 47.4089599 ], + [ 8.4003516, 47.4090662 ], + [ 8.4004967, 47.4091674 ], + [ 8.4006494, 47.4092634 ], + [ 8.4008093, 47.4093538 ], + [ 8.4009759, 47.4094384 ], + [ 8.4011489, 47.409517 ], + [ 8.4013276, 47.4095893 ], + [ 8.4015117, 47.4096552 ], + [ 8.4017006, 47.4097144 ], + [ 8.4018938, 47.4097669 ], + [ 8.4020908, 47.4098124 ], + [ 8.4022911, 47.4098509 ], + [ 8.402494, 47.4098821 ], + [ 8.4026991, 47.4099062 ], + [ 8.4029057, 47.4099229 ], + [ 8.4031133, 47.4099322 ], + [ 8.4033214, 47.4099342 ], + [ 8.4035294, 47.4099288 ], + [ 8.4037366, 47.4099159 ], + [ 8.4039426, 47.4098958 ], + [ 8.4041467, 47.4098683 ], + [ 8.4043484, 47.4098337 ], + [ 8.4045472, 47.4097919 ], + [ 8.4047425, 47.4097431 ], + [ 8.4049338, 47.4096874 ], + [ 8.4051205, 47.4096251 ], + [ 8.4053021, 47.4095561 ], + [ 8.4054782, 47.4094808 ], + [ 8.4056482, 47.4093994 ], + [ 8.4058117, 47.409312 ], + [ 8.4059683, 47.409219 ], + [ 8.4061175, 47.4091205 ], + [ 8.4062588, 47.4090168 ], + [ 8.406392, 47.4089083 ], + [ 8.4065167, 47.4087952 ], + [ 8.4066324, 47.4086778 ], + [ 8.4067389, 47.4085564 ], + [ 8.406836, 47.4084314 ], + [ 8.4069232, 47.4083032 ], + [ 8.4070005, 47.408172 ], + [ 8.4070675, 47.4080383 ], + [ 8.4071241, 47.4079024 ], + [ 8.4071702, 47.4077646 ], + [ 8.4072056, 47.4076254 ], + [ 8.4072302, 47.4074851 ], + [ 8.407244, 47.4073442 ], + [ 8.4072469, 47.4072029 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LIM0001", + "country" : "CHE", + "name" : [ + { + "text" : "Gefängnis Limmattal", + "lang" : "de-CH" + }, + { + "text" : "Gefängnis Limmattal", + "lang" : "fr-CH" + }, + { + "text" : "Gefängnis Limmattal", + "lang" : "it-CH" + }, + { + "text" : "Gefängnis Limmattal", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "de-CH" + }, + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "fr-CH" + }, + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "it-CH" + }, + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "de-CH" + }, + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "fr-CH" + }, + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "it-CH" + }, + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Reno Berner", + "lang" : "de-CH" + }, + { + "text" : "Reno Berner", + "lang" : "fr-CH" + }, + { + "text" : "Reno Berner", + "lang" : "it-CH" + }, + { + "text" : "Reno Berner", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.zh.ch/de/direktion-der-justiz-und-des-innern/justizvollzug-wiedereingliederung.html", + "email" : "sicherheit-juwe@ji.zh.ch", + "phone" : "0041432583400", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT12H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.9854217, 46.3246622 ], + [ 6.9859864, 46.3245224 ], + [ 6.9862977, 46.3240981 ], + [ 6.9863219, 46.323222 ], + [ 6.9861929, 46.3223453 ], + [ 6.9859407000000004, 46.3219188 ], + [ 6.9854793, 46.3218099 ], + [ 6.9850001, 46.3219735 ], + [ 6.9847903, 46.3225295 ], + [ 6.9847134, 46.3236537 ], + [ 6.984911, 46.3244002 ], + [ 6.9854217, 46.3246622 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00002", + "country" : "CHE", + "name" : [ + { + "text" : "Tassonnaire", + "lang" : "de-CH" + }, + { + "text" : "Tassonnaire", + "lang" : "fr-CH" + }, + { + "text" : "Tassonnaire", + "lang" : "it-CH" + }, + { + "text" : "Tassonnaire", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "startDateTime" : "2025-01-01T00:00:00+01:00", + "endDateTime" : "2025-06-01T00:00:00+02:00" + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Generaldirektion für Umwelt", + "lang" : "de-CH" + }, + { + "text" : "Direction générale de l'environnement", + "lang" : "fr-CH" + }, + { + "text" : "Direzione generale dell'Ambiente", + "lang" : "it-CH" + }, + { + "text" : "Environment Department", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.dge@vd.ch", + "phone" : "0041213164422", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.1377903, 46.1550929 ], + [ 6.1366396, 46.1555065 ], + [ 6.1365575, 46.1555304 ], + [ 6.1365066, 46.1555543 ], + [ 6.1364445, 46.1555766 ], + [ 6.1364242, 46.1555878 ], + [ 6.1362597, 46.155713 ], + [ 6.1356106, 46.1561338 ], + [ 6.1350215, 46.156873 ], + [ 6.1347902, 46.1577025 ], + [ 6.1349393, 46.158541 ], + [ 6.1354543, 46.1593064 ], + [ 6.1355584, 46.1594134 ], + [ 6.1366318, 46.160152 ], + [ 6.1380295, 46.1605502 ], + [ 6.1395401, 46.1605476 ], + [ 6.140935, 46.1601447 ], + [ 6.1409733, 46.1601269 ], + [ 6.14102, 46.1601052 ], + [ 6.141914, 46.1595296 ], + [ 6.1425073, 46.1587899 ], + [ 6.142674, 46.1581983 ], + [ 6.1427584, 46.1580138 ], + [ 6.14263, 46.1569648 ], + [ 6.1419338, 46.1560297 ], + [ 6.1419019, 46.1560019 ], + [ 6.1407438, 46.1553231 ], + [ 6.1393, 46.1550039 ], + [ 6.1377903, 46.1550929 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-45", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.6164922, 46.549525 ], + [ 6.6179756, 46.54947 ], + [ 6.6183529, 46.5482358 ], + [ 6.618464, 46.5480459 ], + [ 6.6183496, 46.5469088 ], + [ 6.6187436, 46.5468937 ], + [ 6.6184775, 46.5438141 ], + [ 6.6187317, 46.5438133 ], + [ 6.6186136, 46.5424045 ], + [ 6.6191537, 46.5419532 ], + [ 6.6193297, 46.5416117 ], + [ 6.6187258, 46.5414544 ], + [ 6.6184337, 46.5413713 ], + [ 6.6178551, 46.5411827 ], + [ 6.6174507, 46.5408586 ], + [ 6.6171796, 46.5405049 ], + [ 6.6171108, 46.5400573 ], + [ 6.6171649, 46.5395062 ], + [ 6.6155266, 46.5395555 ], + [ 6.6161723, 46.5462112 ], + [ 6.6157807, 46.5465025 ], + [ 6.615779, 46.5465268 ], + [ 6.6156471, 46.5466239 ], + [ 6.6157888, 46.5467356 ], + [ 6.6162206, 46.5467243 ], + [ 6.6164922, 46.549525 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSGL002", + "country" : "CHE", + "name" : [ + { + "text" : "LSGL Lausanne-la Blécherette (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSGL Lausanne-la Blécherette (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSGL Lausanne-la Blécherette (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSGL Lausanne-la Blécherette (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Aéroport de Lausanne-La Blécherette", + "lang" : "de-CH" + }, + { + "text" : "Aéroport de Lausanne-La Blécherette", + "lang" : "fr-CH" + }, + { + "text" : "Aéroport de Lausanne-La Blécherette", + "lang" : "it-CH" + }, + { + "text" : "Aéroport de Lausanne-La Blécherette", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Chef d'aérodrome", + "lang" : "de-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "fr-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "it-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.lausanne-airport.ch/", + "email" : "drones@lausanne-airport.ch", + "phone" : "0041216461551", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.2603596, 47.0586087 ], + [ 8.260352, 47.0584675 ], + [ 8.2603336, 47.0583268 ], + [ 8.2603045, 47.058187 ], + [ 8.2602647, 47.0580483 ], + [ 8.2602144, 47.0579113 ], + [ 8.2601536, 47.0577763 ], + [ 8.2600825, 47.0576436 ], + [ 8.2600014, 47.0575136 ], + [ 8.2599105, 47.0573868 ], + [ 8.2598099, 47.0572633 ], + [ 8.2597001, 47.0571437 ], + [ 8.2595812, 47.0570281 ], + [ 8.2594537, 47.0569169 ], + [ 8.2593178, 47.0568104 ], + [ 8.2591739, 47.056709 ], + [ 8.2590225, 47.0566128 ], + [ 8.2588639, 47.0565222 ], + [ 8.2586986, 47.0564373 ], + [ 8.258527, 47.0563585 ], + [ 8.2583496, 47.056286 ], + [ 8.258166899999999, 47.0562199 ], + [ 8.2579794, 47.0561604 ], + [ 8.2577876, 47.0561077 ], + [ 8.257592, 47.0560619 ], + [ 8.2573932, 47.0560232 ], + [ 8.2571917, 47.0559917 ], + [ 8.2569881, 47.0559674 ], + [ 8.2567829, 47.0559504 ], + [ 8.2565766, 47.0559408 ], + [ 8.2563699, 47.0559386 ], + [ 8.2561633, 47.0559437 ], + [ 8.2559574, 47.0559563 ], + [ 8.2557528, 47.0559762 ], + [ 8.2555499, 47.0560034 ], + [ 8.2553494, 47.0560378 ], + [ 8.2551518, 47.0560793 ], + [ 8.2549577, 47.0561278 ], + [ 8.2547675, 47.0561833 ], + [ 8.2545819, 47.0562454 ], + [ 8.2544013, 47.0563141 ], + [ 8.2542261, 47.0563892 ], + [ 8.254057, 47.0564704 ], + [ 8.2538943, 47.0565576 ], + [ 8.2537385, 47.0566504 ], + [ 8.25359, 47.0567487 ], + [ 8.2534493, 47.0568522 ], + [ 8.2533167, 47.0569606 ], + [ 8.2531925, 47.0570736 ], + [ 8.2530772, 47.0571908 ], + [ 8.252971, 47.057312 ], + [ 8.2528743, 47.0574369 ], + [ 8.2527872, 47.057565 ], + [ 8.2527101, 47.0576961 ], + [ 8.2526431, 47.0578297 ], + [ 8.2525865, 47.0579656 ], + [ 8.2525403, 47.0581033 ], + [ 8.2525047, 47.0582425 ], + [ 8.2524799, 47.0583827 ], + [ 8.2524658, 47.0585237 ], + [ 8.2524625, 47.058665 ], + [ 8.2524701, 47.0588061 ], + [ 8.2524884, 47.0589469 ], + [ 8.2525175, 47.0590867 ], + [ 8.2525573, 47.0592254 ], + [ 8.2526077, 47.0593624 ], + [ 8.2526684, 47.0594974 ], + [ 8.2527395, 47.0596301 ], + [ 8.2528205, 47.05976 ], + [ 8.2529115, 47.0598869 ], + [ 8.253012, 47.0600104 ], + [ 8.2531219, 47.0601301 ], + [ 8.2532407, 47.0602457 ], + [ 8.2533683, 47.0603568 ], + [ 8.2535042, 47.0604633 ], + [ 8.253648, 47.0605648 ], + [ 8.2537995, 47.0606609 ], + [ 8.253958, 47.0607516 ], + [ 8.2541234, 47.0608364 ], + [ 8.2542949, 47.0609152 ], + [ 8.2544723, 47.0609878 ], + [ 8.254655, 47.0610539 ], + [ 8.2548426, 47.0611134 ], + [ 8.2550344, 47.0611661 ], + [ 8.25523, 47.0612119 ], + [ 8.2554288, 47.0612506 ], + [ 8.2556303, 47.0612821 ], + [ 8.255834, 47.0613064 ], + [ 8.2560392, 47.0613234 ], + [ 8.2562455, 47.061333 ], + [ 8.2564522, 47.0613353 ], + [ 8.2566588, 47.0613301 ], + [ 8.2568647, 47.0613175 ], + [ 8.2570694, 47.0612976 ], + [ 8.2572723, 47.0612704 ], + [ 8.2574728, 47.061236 ], + [ 8.2576704, 47.0611945 ], + [ 8.2578646, 47.0611459 ], + [ 8.2580547, 47.0610905 ], + [ 8.2582404, 47.0610284 ], + [ 8.258421, 47.0609597 ], + [ 8.2585962, 47.0608846 ], + [ 8.2587653, 47.0608034 ], + [ 8.258928, 47.0607162 ], + [ 8.259083799999999, 47.0606233 ], + [ 8.2592323, 47.060525 ], + [ 8.259373, 47.0604215 ], + [ 8.2595056, 47.0603131 ], + [ 8.2596298, 47.0602002 ], + [ 8.2597451, 47.0600829 ], + [ 8.2598512, 47.0599617 ], + [ 8.259948, 47.0598368 ], + [ 8.260035, 47.0597087 ], + [ 8.2601121, 47.0595776 ], + [ 8.2601791, 47.0594439 ], + [ 8.2602357, 47.0593081 ], + [ 8.2602819, 47.0591704 ], + [ 8.2603175, 47.0590312 ], + [ 8.2603423, 47.0588909 ], + [ 8.2603563, 47.05875 ], + [ 8.2603596, 47.0586087 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0065", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Littau", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Littau", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Littau", + "lang" : "it-CH" + }, + { + "text" : "Substation Littau", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7039422, 47.400365 ], + [ 7.703999, 47.4004221 ], + [ 7.7040082, 47.4005189 ], + [ 7.7038502, 47.4007869 ], + [ 7.7038379, 47.4008058 ], + [ 7.7038798, 47.4008925 ], + [ 7.703879, 47.4010309 ], + [ 7.7038893, 47.4010504 ], + [ 7.7039405, 47.4010706 ], + [ 7.7039634, 47.4010497 ], + [ 7.7041395, 47.4008894 ], + [ 7.7045645, 47.4009815 ], + [ 7.7051155, 47.4011682 ], + [ 7.7054854, 47.4013083 ], + [ 7.705842, 47.401174 ], + [ 7.7061397, 47.4011464 ], + [ 7.7064422, 47.4011963 ], + [ 7.7065528, 47.4011371 ], + [ 7.7068465, 47.4012243 ], + [ 7.7071404, 47.4012661 ], + [ 7.7074498, 47.4012879 ], + [ 7.707784, 47.4013744 ], + [ 7.7082334, 47.4014655 ], + [ 7.708454, 47.4014717 ], + [ 7.708945, 47.4015752 ], + [ 7.7092666, 47.4014731 ], + [ 7.7096022, 47.4013677 ], + [ 7.7098296, 47.4010061 ], + [ 7.7100521, 47.4007032 ], + [ 7.7100603, 47.4006923 ], + [ 7.7102939, 47.4003798 ], + [ 7.7100773, 47.4002197 ], + [ 7.7100082, 47.4001721 ], + [ 7.7097143, 47.4002358 ], + [ 7.7095047, 47.4004112 ], + [ 7.7092975, 47.4002785 ], + [ 7.7090709, 47.4001428 ], + [ 7.7086849, 47.4001011 ], + [ 7.7084158, 47.400082 ], + [ 7.7082512, 47.3998937 ], + [ 7.7081598, 47.3997455 ], + [ 7.7080307999999995, 47.399649 ], + [ 7.7077192, 47.3995796 ], + [ 7.7074605, 47.3996189 ], + [ 7.7072182, 47.3998229 ], + [ 7.7070766, 47.3999347 ], + [ 7.7069442, 47.3999417 ], + [ 7.7065917, 47.3999596 ], + [ 7.7059678, 47.3999667 ], + [ 7.70614, 47.400163 ], + [ 7.7061984, 47.4003401 ], + [ 7.7062478, 47.4005072 ], + [ 7.7062856, 47.4006546 ], + [ 7.7062363, 47.4006516 ], + [ 7.7056783, 47.4006168 ], + [ 7.7052589000000005, 47.400538 ], + [ 7.7046209999999995, 47.4004379 ], + [ 7.7044563, 47.4004201 ], + [ 7.7040071, 47.400372 ], + [ 7.7039422, 47.400365 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns259", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Rifenstein - Horniflue", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Rifenstein - Horniflue", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Rifenstein - Horniflue", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Rifenstein - Horniflue", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.3643393, 46.9193398 ], + [ 9.3642873, 46.9192163 ], + [ 9.3642289, 46.9191661 ], + [ 9.364122, 46.9191615 ], + [ 9.3640237, 46.9191906 ], + [ 9.3638851, 46.9192146 ], + [ 9.3637204, 46.9191992 ], + [ 9.3635881, 46.9191723 ], + [ 9.3634642, 46.9191511 ], + [ 9.3633738, 46.9191238 ], + [ 9.3632097, 46.9191479 ], + [ 9.3631282, 46.9191656 ], + [ 9.3630137, 46.919200599999996 ], + [ 9.3629233, 46.9191959 ], + [ 9.362677099999999, 46.9192433 ], + [ 9.362449, 46.9193133 ], + [ 9.3622374, 46.9194111 ], + [ 9.3620917, 46.919514 ], + [ 9.3619448, 46.9195831 ], + [ 9.3617163, 46.9196418 ], + [ 9.3615027, 46.9196607 ], + [ 9.3612148, 46.919641 ], + [ 9.3609924, 46.9196206 ], + [ 9.3607789, 46.9196396 ], + [ 9.3606076, 46.9196695 ], + [ 9.3604523, 46.9197105 ], + [ 9.3602712, 46.9197179 ], + [ 9.3599908, 46.9196586 ], + [ 9.3598843, 46.9196878 ], + [ 9.3597953, 46.9197451 ], + [ 9.359706, 46.9197967 ], + [ 9.359608099999999, 46.9198145 ], + [ 9.3594856, 46.9198552 ], + [ 9.3593711, 46.9199127 ], + [ 9.3592579, 46.9199815 ], + [ 9.3591112, 46.9200336 ], + [ 9.3589881, 46.9200574 ], + [ 9.3588658, 46.9200811 ], + [ 9.3587025, 46.9201278 ], + [ 9.3585564, 46.9202195 ], + [ 9.3584589, 46.9202937 ], + [ 9.358336, 46.920323 ], + [ 9.3582219, 46.9203467 ], + [ 9.3580661, 46.9203482 ], + [ 9.3579342, 46.9203327 ], + [ 9.3578181, 46.9202999 ], + [ 9.357695, 46.9203011 ], + [ 9.3575966, 46.9203021 ], + [ 9.3575141, 46.9203141 ], + [ 9.3573992, 46.9203154 ], + [ 9.3573086, 46.9203049 ], + [ 9.3571849, 46.9202892 ], + [ 9.357044, 46.9202285 ], + [ 9.3568863, 46.9201568 ], + [ 9.3567955, 46.9201182 ], + [ 9.35668, 46.9201025 ], + [ 9.3565571, 46.9201093 ], + [ 9.3564177, 46.9201333 ], + [ 9.3562385, 46.920197 ], + [ 9.3560102, 46.9202838 ], + [ 9.3558138, 46.9203477 ], + [ 9.3555276, 46.9204237 ], + [ 9.3552991, 46.9204824 ], + [ 9.3551273, 46.9205235 ], + [ 9.3548898, 46.9205596 ], + [ 9.3546856, 46.9206123 ], + [ 9.3544717, 46.9206201 ], + [ 9.3542744, 46.9205881 ], + [ 9.3541917, 46.9205946 ], + [ 9.3540697, 46.920624 ], + [ 9.3539472, 46.9206646 ], + [ 9.3537672, 46.9207058 ], + [ 9.3536281, 46.9207409 ], + [ 9.3533978, 46.9207264 ], + [ 9.3532743, 46.9207162 ], + [ 9.3531018, 46.9207123 ], + [ 9.3529785, 46.9207078 ], + [ 9.3528302, 46.9207149 ], + [ 9.3525851, 46.9207681 ], + [ 9.3523975, 46.9208488 ], + [ 9.352235, 46.920918 ], + [ 9.3520392, 46.9210214 ], + [ 9.3518847, 46.9210849 ], + [ 9.351696, 46.9210867 ], + [ 9.3514578, 46.9211059 ], + [ 9.3512201, 46.9211138 ], + [ 9.3510237, 46.9211552 ], + [ 9.3506082, 46.9213341 ], + [ 9.3500546, 46.9215986 ], + [ 9.349858, 46.9216344 ], + [ 9.3497179, 46.9215964 ], + [ 9.3496181, 46.9215578 ], + [ 9.349535, 46.9215079 ], + [ 9.3493862, 46.921453 ], + [ 9.3491957, 46.9213815 ], + [ 9.3488643, 46.9212721 ], + [ 9.3485597, 46.9212243 ], + [ 9.3474422, 46.921235 ], + [ 9.3471876, 46.9212318 ], + [ 9.3470636, 46.9212049 ], + [ 9.3469071, 46.9211895 ], + [ 9.346742, 46.9211629 ], + [ 9.3466599, 46.9211637 ], + [ 9.3463405, 46.9212063 ], + [ 9.3460785, 46.9212482 ], + [ 9.3457833, 46.9213018 ], + [ 9.3454805, 46.9213723 ], + [ 9.345161300000001, 46.921420499999996 ], + [ 9.344786, 46.9215312 ], + [ 9.3444585, 46.9216247 ], + [ 9.3440992, 46.9217239 ], + [ 9.3435186, 46.9218761 ], + [ 9.3430856, 46.9220042 ], + [ 9.3429059, 46.922051 ], + [ 9.3428256, 46.9221251 ], + [ 9.3427869, 46.9222382 ], + [ 9.3427717, 46.9223173 ], + [ 9.3427578, 46.9224358 ], + [ 9.3427779, 46.9226103 ], + [ 9.3427744, 46.9228584 ], + [ 9.3427203, 46.9230224 ], + [ 9.342649, 46.9231415 ], + [ 9.3425036, 46.9232782 ], + [ 9.3424077, 46.923375 ], + [ 9.3421717, 46.9235012 ], + [ 9.3419999, 46.9235648 ], + [ 9.3416322, 46.923636 ], + [ 9.3412954, 46.9236506 ], + [ 9.3409085, 46.923643 ], + [ 9.3406127, 46.9236345 ], + [ 9.3404316, 46.9235969 ], + [ 9.3402071, 46.923492 ], + [ 9.3399998, 46.9234094 ], + [ 9.3397669, 46.9232763 ], + [ 9.3395677, 46.9231654 ], + [ 9.3392858, 46.9230385 ], + [ 9.339103099999999, 46.9229331 ], + [ 9.3387078, 46.9228975 ], + [ 9.3384353, 46.9228495 ], + [ 9.3380729, 46.9227908 ], + [ 9.337752, 46.9227939 ], + [ 9.3375207, 46.9227285 ], + [ 9.3370594, 46.9226822 ], + [ 9.336641, 46.9227088 ], + [ 9.3360269, 46.9228218 ], + [ 9.3356658, 46.9228477 ], + [ 9.3354699, 46.9229003 ], + [ 9.3352069, 46.9228916 ], + [ 9.3350095, 46.9229047 ], + [ 9.3349032, 46.9229396 ], + [ 9.3348128, 46.9229348 ], + [ 9.3345326, 46.9229037 ], + [ 9.3343759, 46.9228601 ], + [ 9.3342036, 46.9228618 ], + [ 9.3338427, 46.9229158 ], + [ 9.3335229, 46.9229472 ], + [ 9.3333041, 46.9230732 ], + [ 9.3330923, 46.9231881 ], + [ 9.3330028, 46.923234 ], + [ 9.3329205, 46.9232292 ], + [ 9.3327562, 46.923225 ], + [ 9.3325909, 46.9231928 ], + [ 9.3324098, 46.9231551 ], + [ 9.3322941, 46.9231336 ], + [ 9.3321629, 46.9231348 ], + [ 9.3320153, 46.9231644 ], + [ 9.3318782, 46.9232784 ], + [ 9.3317713, 46.9232964 ], + [ 9.3315912, 46.9233095 ], + [ 9.3313114, 46.9233121 ], + [ 9.3310902, 46.923348 ], + [ 9.3309352, 46.9234002 ], + [ 9.3307729, 46.9234751 ], + [ 9.3306845, 46.9235774 ], + [ 9.3306042, 46.9236965 ], + [ 9.3304563, 46.9236922 ], + [ 9.330309, 46.9237049 ], + [ 9.33007, 46.9237015 ], + [ 9.3298571, 46.9237149 ], + [ 9.3296609, 46.9237619 ], + [ 9.3294245, 46.9238543 ], + [ 9.3292298, 46.9239914 ], + [ 9.3290925, 46.9240998 ], + [ 9.3289069, 46.9242595 ], + [ 9.3287206, 46.9244022 ], + [ 9.3285013, 46.924562 ], + [ 9.3281924, 46.9246946 ], + [ 9.3278329, 46.9248334 ], + [ 9.3276463, 46.9249197 ], + [ 9.3275323, 46.924994 ], + [ 9.3274286, 46.9251246 ], + [ 9.3273234, 46.9252384 ], + [ 9.3272112, 46.9253634 ], + [ 9.3270723, 46.9254042 ], + [ 9.326926, 46.9254677 ], + [ 9.3266649, 46.9255829 ], + [ 9.3264705, 46.9257031 ], + [ 9.3262672, 46.925829 ], + [ 9.3258833, 46.9259285 ], + [ 9.32581, 46.9259687 ], + [ 9.3257056, 46.9260823 ], + [ 9.325584, 46.9261962 ], + [ 9.3254447, 46.9262032 ], + [ 9.3252548, 46.9261711 ], + [ 9.3251638, 46.926127 ], + [ 9.3250718, 46.9260545 ], + [ 9.3249565, 46.9260218 ], + [ 9.3248086, 46.9260177 ], + [ 9.3246203, 46.9260532 ], + [ 9.3244733, 46.9260997 ], + [ 9.3243006, 46.9261126 ], + [ 9.3241599, 46.9260801 ], + [ 9.3239794, 46.9260593 ], + [ 9.3238559, 46.9260717 ], + [ 9.3237002, 46.9260788 ], + [ 9.3236001, 46.9260347 ], + [ 9.3235263, 46.9260128 ], + [ 9.3234016, 46.925969 ], + [ 9.3232037, 46.9259201 ], + [ 9.3230066, 46.9259163 ], + [ 9.3228424, 46.9259404 ], + [ 9.3225892, 46.9260217 ], + [ 9.3224428, 46.9260851 ], + [ 9.3223273, 46.9260918 ], + [ 9.3221378, 46.9260485 ], + [ 9.3219892, 46.9259992 ], + [ 9.3218239, 46.9259669 ], + [ 9.3216678, 46.9259628 ], + [ 9.3215191, 46.925936 ], + [ 9.3214034, 46.925892 ], + [ 9.321295, 46.9258422 ], + [ 9.3212212, 46.9258204 ], + [ 9.3209982, 46.925783 ], + [ 9.3208169, 46.9257397 ], + [ 9.3205936, 46.9256684 ], + [ 9.3202699, 46.9255419 ], + [ 9.31998, 46.9254207 ], + [ 9.3197886, 46.9252984 ], + [ 9.3197128, 46.9252202 ], + [ 9.3196202, 46.9251083 ], + [ 9.3195452, 46.9250301 ], + [ 9.3194776, 46.924951899999996 ], + [ 9.3193851, 46.9248626 ], + [ 9.3191692, 46.9247462 ], + [ 9.3190036, 46.9246576 ], + [ 9.3188371, 46.9245689 ], + [ 9.3185346, 46.9242505 ], + [ 9.3182957, 46.924202 ], + [ 9.3180978, 46.9241757 ], + [ 9.3179188, 46.924245 ], + [ 9.317829, 46.9243079 ], + [ 9.3177068, 46.9243316 ], + [ 9.3175987, 46.9242931 ], + [ 9.3174258, 46.9242553 ], + [ 9.3172859, 46.9242453 ], + [ 9.3171048, 46.9242527 ], + [ 9.3169831, 46.9243159 ], + [ 9.3168941, 46.9243787 ], + [ 9.3167563, 46.9244983 ], + [ 9.3166935, 46.9246512 ], + [ 9.3166724, 46.9247979 ], + [ 9.3166087, 46.9249 ], + [ 9.3163952, 46.9249471 ], + [ 9.3162659, 46.9250272 ], + [ 9.3162193, 46.9251516 ], + [ 9.3160962, 46.9251979 ], + [ 9.3158922, 46.9252562 ], + [ 9.3156975, 46.9253932 ], + [ 9.3155941, 46.9255352 ], + [ 9.3149321, 46.9257331 ], + [ 9.3146622, 46.9258089 ], + [ 9.3145987, 46.925894 ], + [ 9.3145748, 46.9259619 ], + [ 9.3145195, 46.926047 ], + [ 9.3144874, 46.9260924 ], + [ 9.3144067, 46.9261551 ], + [ 9.3143742, 46.9261893 ], + [ 9.3143187, 46.9262913 ], + [ 9.3142467, 46.9263934 ], + [ 9.3141494, 46.9264732 ], + [ 9.3139475, 46.9266386 ], + [ 9.3136812, 46.9268666 ], + [ 9.3134402, 46.9271562 ], + [ 9.3132312, 46.9273781 ], + [ 9.3130378, 46.9275998 ], + [ 9.3129186, 46.9277813 ], + [ 9.312847, 46.9279172 ], + [ 9.3126278, 46.9280602 ], + [ 9.312482, 46.9281629 ], + [ 9.3123526, 46.9282657 ], + [ 9.3121501, 46.9284141 ], + [ 9.3119641, 46.9285399 ], + [ 9.3117856, 46.9286712 ], + [ 9.3116325, 46.9288248 ], + [ 9.3115361, 46.9289554 ], + [ 9.3114657, 46.9291252 ], + [ 9.3114433, 46.9292381 ], + [ 9.3114632, 46.9294069 ], + [ 9.3114905, 46.9295308 ], + [ 9.3114697, 46.9297114 ], + [ 9.3114398, 46.9298919 ], + [ 9.3114441, 46.9300836 ], + [ 9.3114792, 46.9301961 ], + [ 9.3113601, 46.9304057 ], + [ 9.3114931, 46.9305003 ], + [ 9.3112927, 46.9307333 ], + [ 9.3113362, 46.9308512 ], + [ 9.311347, 46.9309977 ], + [ 9.3113079, 46.9310995 ], + [ 9.3112367, 46.9312243 ], + [ 9.3111741, 46.9313826 ], + [ 9.3111277, 46.9315352 ], + [ 9.3110892, 46.9316539 ], + [ 9.3110164, 46.9317336 ], + [ 9.3109364, 46.9318414 ], + [ 9.3109633, 46.9319539 ], + [ 9.3109822, 46.9320721 ], + [ 9.3110263, 46.9322296 ], + [ 9.311079, 46.9323756 ], + [ 9.3111395, 46.9325329 ], + [ 9.3111492, 46.932623 ], + [ 9.3111591, 46.9326961 ], + [ 9.3111771, 46.9327636 ], + [ 9.3112196, 46.9328534 ], + [ 9.3112548, 46.9329432 ], + [ 9.3112721, 46.9330164 ], + [ 9.3112414, 46.9331238 ], + [ 9.311203, 46.9332482 ], + [ 9.3111635, 46.9333387 ], + [ 9.3111337, 46.9334969 ], + [ 9.3111364, 46.9336209 ], + [ 9.3111475, 46.9337504 ], + [ 9.3111251, 46.9338859 ], + [ 9.3110693, 46.9339823 ], + [ 9.3110064, 46.9341069 ], + [ 9.3109439, 46.9342709 ], + [ 9.3109, 46.9345418 ], + [ 9.3108649, 46.9348297 ], + [ 9.3108345, 46.9349708 ], + [ 9.310804, 46.9350839 ], + [ 9.3106992, 46.9351863 ], + [ 9.3105936, 46.9352662 ], + [ 9.3105216, 46.9353458 ], + [ 9.310467, 46.9354986 ], + [ 9.310438, 46.9356793 ], + [ 9.3104485, 46.9357919 ], + [ 9.3104743, 46.9358706 ], + [ 9.3104615, 46.9360228 ], + [ 9.3103977, 46.9361474 ], + [ 9.3103677, 46.9362774 ], + [ 9.3102227, 46.9364252 ], + [ 9.310101, 46.9365166 ], + [ 9.3099657, 46.9367321 ], + [ 9.3097809, 46.9369424 ], + [ 9.3097091, 46.9370501 ], + [ 9.3096709, 46.9372027 ], + [ 9.3096327, 46.9373552 ], + [ 9.3095214, 46.9375311 ], + [ 9.3094493, 46.9376276 ], + [ 9.3092876, 46.9377699 ], + [ 9.3091253, 46.937873 ], + [ 9.30893, 46.9379706 ], + [ 9.3087589, 46.9380568 ], + [ 9.3085724, 46.9381712 ], + [ 9.3084594, 46.9382737 ], + [ 9.3083706, 46.9383647 ], + [ 9.3082412, 46.93849 ], + [ 9.3081026, 46.938542 ], + [ 9.3079795, 46.9385432 ], + [ 9.3077567, 46.9385114 ], + [ 9.3076164, 46.9384902 ], + [ 9.3073869, 46.9385036 ], + [ 9.3072728, 46.9385498 ], + [ 9.3071424, 46.9386017 ], + [ 9.3070202, 46.9386761 ], + [ 9.3068978, 46.9387223 ], + [ 9.3067262, 46.938769 ], + [ 9.3064967, 46.9388049 ], + [ 9.3063009, 46.9388857 ], + [ 9.3061961, 46.9389656 ], + [ 9.3061153, 46.9390509 ], + [ 9.305977500000001, 46.9391255 ], + [ 9.3058144, 46.9392059 ], + [ 9.3055601, 46.9392365 ], + [ 9.3052388, 46.9392056 ], + [ 9.3050336, 46.93923 ], + [ 9.3047965, 46.9392831 ], + [ 9.3046161, 46.9393129 ], + [ 9.3044527, 46.9393596 ], + [ 9.3042803, 46.9393611 ], + [ 9.3041003, 46.9394023 ], + [ 9.3038531, 46.9393989 ], + [ 9.3037136, 46.9393777 ], + [ 9.3035169, 46.9394133 ], + [ 9.3033521, 46.9394205 ], + [ 9.3031546, 46.9394055 ], + [ 9.3029003, 46.939436 ], + [ 9.3025717, 46.9394559 ], + [ 9.3022674, 46.9394418 ], + [ 9.3020772, 46.9393534 ], + [ 9.2986101, 46.941567 ], + [ 9.2977595, 46.941355 ], + [ 9.2974119, 46.9412286 ], + [ 9.2970152, 46.9411308 ], + [ 9.2963404, 46.9410863 ], + [ 9.2959779, 46.9410502 ], + [ 9.2956237, 46.9410423 ], + [ 9.2952467, 46.9410851 ], + [ 9.2949593, 46.9411102 ], + [ 9.2947295, 46.9411349 ], + [ 9.2945012, 46.9412047 ], + [ 9.2943377, 46.9412738 ], + [ 9.2942894, 46.9413251 ], + [ 9.2942019, 46.9414554 ], + [ 9.2941453, 46.9415293 ], + [ 9.2940722, 46.9415751 ], + [ 9.2939759, 46.9416887 ], + [ 9.2938549, 46.9417969 ], + [ 9.2937897, 46.9418369 ], + [ 9.2936677, 46.9418944 ], + [ 9.2935375, 46.9419521 ], + [ 9.2934153, 46.9420265 ], + [ 9.2932931, 46.9420784 ], + [ 9.2932205, 46.9421635 ], + [ 9.2931984, 46.9422596 ], + [ 9.2931925, 46.9423044 ], + [ 9.2932491, 46.9424439 ], + [ 9.2932885, 46.9426592 ], + [ 9.2933252, 46.9428179 ], + [ 9.2933683, 46.9429494 ], + [ 9.2934218, 46.943165 ], + [ 9.2934235, 46.9431689 ], + [ 9.2934253, 46.9431735 ], + [ 9.2934548, 46.943361 ], + [ 9.2935117, 46.9436057 ], + [ 9.2935794, 46.9437117 ], + [ 9.2936474, 46.943803 ], + [ 9.2936888, 46.9438584 ], + [ 9.2937673, 46.9439705 ], + [ 9.293806, 46.9441858 ], + [ 9.2938178, 46.9443629 ], + [ 9.2938065, 46.9445332 ], + [ 9.2937554, 46.9447436 ], + [ 9.2936637, 46.9450124 ], + [ 9.2936177, 46.9451543 ], + [ 9.2935784, 46.9452755 ], + [ 9.2934764, 46.945413 ], + [ 9.2934049, 46.9455321 ], + [ 9.2933186, 46.9456243 ], + [ 9.293175, 46.9458418 ], + [ 9.2930643, 46.946037 ], + [ 9.2929474, 46.9462882 ], + [ 9.292748, 46.9464849 ], + [ 9.2926105, 46.9466634 ], + [ 9.2923635, 46.9468833 ], + [ 9.2921258, 46.9470383 ], + [ 9.2919654, 46.9471957 ], + [ 9.2917478, 46.9473162 ], + [ 9.2915866, 46.9474051 ], + [ 9.291315, 46.947505 ], + [ 9.2911351, 46.9475754 ], + [ 9.2908516, 46.9476888 ], + [ 9.2906565, 46.9477477 ], + [ 9.2905165, 46.9478067 ], + [ 9.290303, 46.9478776 ], + [ 9.2901988, 46.9479298 ], + [ 9.2900705, 46.9480182 ], + [ 9.2899735, 46.9481097 ], + [ 9.2898663, 46.9481681 ], + [ 9.2897301, 46.9482433 ], + [ 9.289533, 46.9482914 ], + [ 9.2893596, 46.9483347 ], + [ 9.2890917, 46.9484002 ], + [ 9.2887542, 46.9484956 ], + [ 9.288412, 46.9485758 ], + [ 9.2881148, 46.9486248 ], + [ 9.2877506, 46.9487556 ], + [ 9.2874717, 46.9488384 ], + [ 9.2871947, 46.9489491 ], + [ 9.2869527, 46.9491231 ], + [ 9.2867972, 46.9492344 ], + [ 9.2866291, 46.9493622 ], + [ 9.2865067, 46.949455 ], + [ 9.2863544, 46.9495411 ], + [ 9.2862605, 46.9494852 ], + [ 9.2861198, 46.9493578 ], + [ 9.2858575, 46.9491794 ], + [ 9.2857068, 46.9490955 ], + [ 9.2854829, 46.9489857 ], + [ 9.2851575, 46.9488829 ], + [ 9.2850421, 46.9488956 ], + [ 9.2848364, 46.9488351 ], + [ 9.2844806, 46.9488066 ], + [ 9.2843317, 46.9487973 ], + [ 9.2840344, 46.9487967 ], + [ 9.2837709, 46.948801 ], + [ 9.2834532, 46.9488501 ], + [ 9.2832136, 46.9489034 ], + [ 9.2829691, 46.9489822 ], + [ 9.2827827, 46.9490302 ], + [ 9.2825361, 46.9490728 ], + [ 9.2823633, 46.9491322 ], + [ 9.2821833, 46.9492251 ], + [ 9.2820146, 46.9492845 ], + [ 9.2818081, 46.9492986 ], + [ 9.2816376, 46.9493077 ], + [ 9.2813467, 46.9493007 ], + [ 9.2810915, 46.9492589 ], + [ 9.2808332, 46.9491992 ], + [ 9.2805506, 46.9491236 ], + [ 9.2804342, 46.9490571 ], + [ 9.2801993, 46.9489125 ], + [ 9.2800425, 46.9488195 ], + [ 9.2798745, 46.9487081 ], + [ 9.2797574, 46.9486235 ], + [ 9.2796306, 46.9485644 ], + [ 9.2793733, 46.9484129 ], + [ 9.2791952, 46.9482978 ], + [ 9.2790546, 46.94822 ], + [ 9.2788941, 46.9481362 ], + [ 9.2786438, 46.947999 ], + [ 9.2784846, 46.947881 ], + [ 9.2783178, 46.9477577 ], + [ 9.2781734, 46.9476422 ], + [ 9.2780482, 46.9475119 ], + [ 9.2778972, 46.9474189 ], + [ 9.2776851, 46.9472666 ], + [ 9.2775451, 46.9471852 ], + [ 9.2772934, 46.9470525 ], + [ 9.2770263, 46.9469245 ], + [ 9.2768008, 46.9468139 ], + [ 9.2764138, 46.946785 ], + [ 9.2763218, 46.946782 ], + [ 9.2761338, 46.9467617 ], + [ 9.2758603, 46.9467363 ], + [ 9.2755561, 46.946725 ], + [ 9.2752657, 46.9467333 ], + [ 9.2749969, 46.9467484 ], + [ 9.2747843, 46.9467743 ], + [ 9.2745265, 46.9467775 ], + [ 9.2742791, 46.9467698 ], + [ 9.2740408, 46.9467394 ], + [ 9.2738256, 46.9466924 ], + [ 9.2735185, 46.9466443 ], + [ 9.2731875, 46.9465695 ], + [ 9.2728986, 46.9465013 ], + [ 9.2726332, 46.9464254 ], + [ 9.272407, 46.9463417 ], + [ 9.2721007, 46.9462217 ], + [ 9.271875, 46.9461515 ], + [ 9.2715594, 46.9460702 ], + [ 9.2713377, 46.9460008 ], + [ 9.2710264, 46.9459023 ], + [ 9.2707616, 46.9458427 ], + [ 9.2704963, 46.9457668 ], + [ 9.2702741, 46.9456796 ], + [ 9.2699639, 46.9455657 ], + [ 9.2696326, 46.9454837 ], + [ 9.2693841, 46.9454194 ], + [ 9.2690473, 46.9453671 ], + [ 9.2688811, 46.9453078 ], + [ 9.2685494, 46.9452149 ], + [ 9.2682742, 46.9451617 ], + [ 9.2679776, 46.9451323 ], + [ 9.267805599999999, 46.9451459 ], + [ 9.2676486, 46.9451889 ], + [ 9.2673623, 46.9451979 ], + [ 9.2671147, 46.9451857 ], + [ 9.2667752, 46.9451263 ], + [ 9.2665098, 46.9450964 ], + [ 9.2661564, 46.9450624 ], + [ 9.2659812, 46.945031 ], + [ 9.2657778, 46.9450388 ], + [ 9.2655856, 46.9450365 ], + [ 9.2653547, 46.9450554 ], + [ 9.2651927, 46.9451219 ], + [ 9.2650741, 46.9452075 ], + [ 9.2650003, 46.9452833 ], + [ 9.264895899999999, 46.9453759 ], + [ 9.2647032, 46.9455535 ], + [ 9.2646238, 46.9456799 ], + [ 9.2645455, 46.9458169 ], + [ 9.2645046, 46.9459427 ], + [ 9.2644749, 46.946034 ], + [ 9.2644719, 46.9461655 ], + [ 9.264491, 46.9462677 ], + [ 9.2645335, 46.9464075 ], + [ 9.2645534, 46.9465096 ], + [ 9.2645782, 46.9465874 ], + [ 9.2646834, 46.9467575 ], + [ 9.2647438, 46.9469149 ], + [ 9.2648545, 46.947128 ], + [ 9.2648822, 46.9472913 ], + [ 9.2649182, 46.9474318 ], + [ 9.2649205, 46.9475728 ], + [ 9.2649233, 46.9477024 ], + [ 9.2649172, 46.9478377 ], + [ 9.2648703, 46.9479566 ], + [ 9.2648234, 46.9480255 ], + [ 9.2647741, 46.9480983 ], + [ 9.2647357, 46.9482227 ], + [ 9.264738, 46.9483636 ], + [ 9.2648168, 46.9486053 ], + [ 9.2648436, 46.9487177 ], + [ 9.2648874, 46.9488471 ], + [ 9.2649829, 46.9489971 ], + [ 9.2649976, 46.9490208 ], + [ 9.2650577, 46.9491442 ], + [ 9.2650518, 46.9492852 ], + [ 9.2650392, 46.9494222 ], + [ 9.2650387, 46.9494319 ], + [ 9.265072, 46.9494936 ], + [ 9.265098, 46.9495329 ], + [ 9.2652657, 46.9497061 ], + [ 9.2652844, 46.9497249 ], + [ 9.2653746, 46.9498178 ], + [ 9.265426, 46.9499301 ], + [ 9.2654941, 46.9500478 ], + [ 9.2655802, 46.9502613 ], + [ 9.2656592, 46.9505311 ], + [ 9.2656936, 46.9506741 ], + [ 9.2658024, 46.9511217 ], + [ 9.265838, 46.9512736 ], + [ 9.2658484, 46.9513637 ], + [ 9.2658092, 46.9514656 ], + [ 9.2657447, 46.9515507 ], + [ 9.2656721, 46.9516359 ], + [ 9.2656372, 46.9516975 ], + [ 9.265617, 46.9517321 ], + [ 9.265614, 46.9517406 ], + [ 9.2655922, 46.9517973 ], + [ 9.265577799999999, 46.951834 ], + [ 9.26553, 46.9519245 ], + [ 9.2655316, 46.9520204 ], + [ 9.2655588, 46.9521443 ], + [ 9.2655932, 46.9522397 ], + [ 9.265611700000001, 46.9523241 ], + [ 9.2655803, 46.9524145 ], + [ 9.2655824, 46.9524991 ], + [ 9.2655515, 46.952629 ], + [ 9.2655378, 46.9527813 ], + [ 9.2655001, 46.952928299999996 ], + [ 9.265477, 46.9530469 ], + [ 9.2654712, 46.9531427 ], + [ 9.2654825, 46.953306 ], + [ 9.2655014, 46.9534525 ], + [ 9.2655047, 46.9536216 ], + [ 9.2655076, 46.9537793 ], + [ 9.2654857, 46.9539317 ], + [ 9.2654399, 46.9541069 ], + [ 9.2653938, 46.9542708 ], + [ 9.2653965, 46.954423 ], + [ 9.265433, 46.9546031 ], + [ 9.265494499999999, 46.9548166 ], + [ 9.2655228, 46.9549968 ], + [ 9.2655414, 46.9550868 ], + [ 9.2655262, 46.9551715 ], + [ 9.2655445, 46.9552727 ], + [ 9.2655494, 46.9552958 ], + [ 9.2655629, 46.9553572 ], + [ 9.2655554, 46.9554009 ], + [ 9.2655477, 46.9554418 ], + [ 9.2655331, 46.9555434 ], + [ 9.2655269, 46.9556506 ], + [ 9.2655528, 46.9557123 ], + [ 9.2655603, 46.9557396 ], + [ 9.2655791, 46.955808 ], + [ 9.2655729, 46.9558925 ], + [ 9.2655675, 46.9559015 ], + [ 9.2655171, 46.9559889 ], + [ 9.2654623, 46.9561416 ], + [ 9.265464099999999, 46.9562431 ], + [ 9.2654827, 46.9563557 ], + [ 9.2655099, 46.9564794 ], + [ 9.2654791, 46.9565867 ], + [ 9.2654725, 46.9566601 ], + [ 9.2654753, 46.9567897 ], + [ 9.2655183, 46.956919 ], + [ 9.2655249, 46.9569448 ], + [ 9.2655625, 46.9570821 ], + [ 9.2656242, 46.9572788 ], + [ 9.2656926, 46.9574304 ], + [ 9.2657526, 46.9575538 ], + [ 9.2657488, 46.9577794 ], + [ 9.2657224, 46.957944 ], + [ 9.2657196, 46.9579599 ], + [ 9.2656824, 46.9581689 ], + [ 9.2656453, 46.958406 ], + [ 9.265594, 46.9587334 ], + [ 9.2655827, 46.9589815 ], + [ 9.2656427, 46.9591275 ], + [ 9.2656646, 46.9591446 ], + [ 9.2657845, 46.959239 ], + [ 9.2659561, 46.9595756 ], + [ 9.2658854, 46.9597679 ], + [ 9.2658132, 46.9598644 ], + [ 9.2657575, 46.9599439 ], + [ 9.2657109, 46.9599972 ], + [ 9.2656927, 46.9600177 ], + [ 9.2657125, 46.9601641 ], + [ 9.2656653, 46.9602998 ], + [ 9.2656029, 46.9604695 ], + [ 9.2655652, 46.9606389 ], + [ 9.2656248, 46.9607512 ], + [ 9.2657091, 46.9608856 ], + [ 9.2659091, 46.9610191 ], + [ 9.2660937, 46.9611809 ], + [ 9.2662498, 46.9612077 ], + [ 9.2664222, 46.9611554 ], + [ 9.2666926, 46.9611361 ], + [ 9.2668647, 46.9611007 ], + [ 9.2669985, 46.9612179 ], + [ 9.2671156, 46.9613296 ], + [ 9.2671589, 46.9614193 ], + [ 9.267235, 46.9615314 ], + [ 9.2672939, 46.961621 ], + [ 9.2674031, 46.9617159 ], + [ 9.2675126, 46.9618446 ], + [ 9.2675971, 46.9619622 ], + [ 9.2676324, 46.9620803 ], + [ 9.2676263, 46.9622156 ], + [ 9.2675801, 46.9623794 ], + [ 9.2675088, 46.9625042 ], + [ 9.2674699, 46.9626398 ], + [ 9.2675058, 46.962803 ], + [ 9.2675318, 46.9628647 ], + [ 9.2675827, 46.9629375 ], + [ 9.2676833, 46.9630211 ], + [ 9.2678159, 46.9631045 ], + [ 9.2680087, 46.9632663 ], + [ 9.2681001, 46.9633444 ], + [ 9.2682022, 46.9634956 ], + [ 9.2682552, 46.963703699999996 ], + [ 9.2682766, 46.9639459 ], + [ 9.2683301, 46.9641653 ], + [ 9.2685403, 46.9644284 ], + [ 9.2687504, 46.9646407 ], + [ 9.2690174, 46.9648581 ], + [ 9.2692261, 46.9650028 ], + [ 9.2694747, 46.965090599999996 ], + [ 9.2697392, 46.9651616 ], + [ 9.2699627, 46.9652385 ], + [ 9.2701369, 46.9653102 ], + [ 9.2703683, 46.9653758 ], + [ 9.2705495, 46.965391 ], + [ 9.2709204, 46.9654498 ], + [ 9.2711026, 46.9654931 ], + [ 9.2712522, 46.9655707 ], + [ 9.2713352, 46.965643299999996 ], + [ 9.2713785, 46.9657557 ], + [ 9.2714056, 46.9658511 ], + [ 9.271449, 46.965991700000004 ], + [ 9.2715665, 46.9661147 ], + [ 9.2716832, 46.9661869 ], + [ 9.2718492, 46.9662869 ], + [ 9.2722054, 46.9663965 ], + [ 9.27242, 46.9664508 ], + [ 9.2725863, 46.9665339 ], + [ 9.2728267, 46.9666445 ], + [ 9.2730514, 46.9667777 ], + [ 9.2732436, 46.9669225 ], + [ 9.2733539, 46.9670963 ], + [ 9.2733645, 46.9672145 ], + [ 9.2733674, 46.9673724 ], + [ 9.2733205, 46.9675137 ], + [ 9.2733636, 46.9675978 ], + [ 9.2734392, 46.967693 ], + [ 9.2735235, 46.967805 ], + [ 9.2735834, 46.9679228 ], + [ 9.2736116, 46.9680748 ], + [ 9.273548, 46.9682106 ], + [ 9.2734612, 46.9684087 ], + [ 9.2734574, 46.9686116 ], + [ 9.2735666, 46.9687291 ], + [ 9.2736998, 46.9688293 ], + [ 9.2739749, 46.9690185 ], + [ 9.2741416, 46.9691128 ], + [ 9.2742157, 46.9691403 ], + [ 9.2743243, 46.9692183 ], + [ 9.2744415, 46.9693299 ], + [ 9.2745753, 46.969424599999996 ], + [ 9.2746921, 46.9695474 ], + [ 9.274876, 46.9696643 ], + [ 9.2751005, 46.9698143 ], + [ 9.275383099999999, 46.9699584 ], + [ 9.2756892, 46.9700684 ], + [ 9.2759121, 46.9701002 ], + [ 9.2762428, 46.9701874 ], + [ 9.2764661, 46.970253 ], + [ 9.2767307, 46.9703295 ], + [ 9.2769057, 46.9704238 ], + [ 9.277097, 46.9705404 ], + [ 9.2772963, 46.9706513 ], + [ 9.277497, 46.9708016 ], + [ 9.277673, 46.9709748 ], + [ 9.2777659, 46.971098 ], + [ 9.277818, 46.9712273 ], + [ 9.2778375, 46.9713904 ], + [ 9.2778563, 46.9715313 ], + [ 9.2778586, 46.971644 ], + [ 9.2777941, 46.9717291 ], + [ 9.2777062, 46.9718482 ], + [ 9.2776593, 46.9719671 ], + [ 9.2776785, 46.9720965 ], + [ 9.2777722, 46.9722648 ], + [ 9.2780133, 46.9724204 ], + [ 9.2781791, 46.9724866 ], + [ 9.2782942, 46.9724912 ], + [ 9.2784668, 46.9724671 ], + [ 9.2786313, 46.9724487 ], + [ 9.2787709, 46.9724475 ], + [ 9.2789523, 46.9724908 ], + [ 9.2791002, 46.9724669 ], + [ 9.2792647, 46.9724485 ], + [ 9.2794196, 46.9723908 ], + [ 9.279574, 46.9722935 ], + [ 9.2796942, 46.9721572 ], + [ 9.2798991, 46.9720933 ], + [ 9.280088, 46.9720691 ], + [ 9.280393, 46.9721226 ], + [ 9.2806329, 46.9721712 ], + [ 9.280814, 46.9721808 ], + [ 9.2809529, 46.9721344 ], + [ 9.2810576, 46.9720263 ], + [ 9.2812701, 46.9719456 ], + [ 9.2814835, 46.9719379 ], + [ 9.2816727, 46.9719476 ], + [ 9.2818223, 46.9719969 ], + [ 9.2819965, 46.9720686 ], + [ 9.2821465, 46.9721799 ], + [ 9.2822712, 46.9722465 ], + [ 9.2823948, 46.9722791 ], + [ 9.2825844, 46.9723 ], + [ 9.2827805, 46.9722193 ], + [ 9.2829519, 46.9721388 ], + [ 9.283139, 46.9720356 ], + [ 9.2833609, 46.9720392 ], + [ 9.2835108, 46.9721224 ], + [ 9.2836025, 46.9721836 ], + [ 9.2837353, 46.9722726 ], + [ 9.2839429, 46.9723609 ], + [ 9.2841328, 46.9724099 ], + [ 9.2843971, 46.9724526 ], + [ 9.284586000000001, 46.9724508 ], + [ 9.2849324, 46.9724646 ], + [ 9.2852616, 46.9725067 ], + [ 9.2855021, 46.9725947 ], + [ 9.2857011, 46.9726718 ], + [ 9.2858829, 46.9727265 ], + [ 9.2860814, 46.9727641 ], + [ 9.2862878, 46.9728185 ], + [ 9.2865608, 46.9728725 ], + [ 9.286798600000001, 46.9728591 ], + [ 9.2871356, 46.9728165 ], + [ 9.2873801, 46.9727128 ], + [ 9.287617000000001, 46.9726486 ], + [ 9.2878799, 46.9726011 ], + [ 9.2881362, 46.9726947 ], + [ 9.28831, 46.972755 ], + [ 9.2884489, 46.9726861 ], + [ 9.2886201, 46.9726 ], + [ 9.2888901, 46.9725186 ], + [ 9.2890963, 46.9725674 ], + [ 9.2892533, 46.9726167 ], + [ 9.2895188, 46.9727158 ], + [ 9.2896848, 46.9727875 ], + [ 9.2900236, 46.972869 ], + [ 9.290338, 46.9729563 ], + [ 9.2907102, 46.9730543 ], + [ 9.290975, 46.9731308 ], + [ 9.2911816, 46.9732135 ], + [ 9.2913793, 46.9732285 ], + [ 9.2915683, 46.9731818 ], + [ 9.2918317, 46.9731962 ], + [ 9.2920039, 46.9731891 ], + [ 9.2921701, 46.973289 ], + [ 9.2922871, 46.9733724 ], + [ 9.2924449, 46.9734443 ], + [ 9.2925855, 46.9734711 ], + [ 9.2927754, 46.9734975 ], + [ 9.2929807, 46.9734958 ], + [ 9.2931625, 46.9735503 ], + [ 9.2933625, 46.9736783 ], + [ 9.2935374, 46.9737724 ], + [ 9.2936614, 46.9738164 ], + [ 9.2938016, 46.973832 ], + [ 9.2940555, 46.9737621 ], + [ 9.2943175, 46.973737 ], + [ 9.2945493, 46.9737857 ], + [ 9.2947151, 46.9738518 ], + [ 9.2948976, 46.9739516 ], + [ 9.2950883, 46.9740005 ], + [ 9.2952948, 46.9740325 ], + [ 9.295577399999999, 46.974199 ], + [ 9.2960436, 46.9744934 ], + [ 9.296055, 46.9746342 ], + [ 9.2960733, 46.9747355 ], + [ 9.2961984, 46.9748358 ], + [ 9.2963397, 46.9749079 ], + [ 9.2965138, 46.9749513 ], + [ 9.2967126, 46.9750453 ], + [ 9.296954, 46.9751615 ], + [ 9.2971853, 46.9752213 ], + [ 9.2973843, 46.9752983 ], + [ 9.2976069, 46.9753189 ], + [ 9.2978046, 46.975334 ], + [ 9.2979364, 46.9753666 ], + [ 9.2981672, 46.9753644 ], + [ 9.2984868, 46.9753165 ], + [ 9.2988061, 46.9752628 ], + [ 9.2993345, 46.9753367 ], + [ 9.2995819, 46.9753851 ], + [ 9.2996904, 46.9754575 ], + [ 9.2996277, 46.9756158 ], + [ 9.2996383, 46.9757341 ], + [ 9.2997222, 46.9758066 ], + [ 9.299931, 46.9759512 ], + [ 9.3000566, 46.9760684 ], + [ 9.300174, 46.9762084 ], + [ 9.3003654, 46.9763249 ], + [ 9.3004749, 46.9764253 ], + [ 9.3005488, 46.9764247 ], + [ 9.3006302, 46.9763788 ], + [ 9.3007685, 46.9763155 ], + [ 9.3009322, 46.976274599999996 ], + [ 9.3010715, 46.9762395 ], + [ 9.3012547, 46.9763336 ], + [ 9.3014534, 46.9763994 ], + [ 9.3016425, 46.9764033 ], + [ 9.3018392, 46.9763902 ], + [ 9.3020851, 46.9763259 ], + [ 9.3026088, 46.9761914 ], + [ 9.302906, 46.9762337 ], + [ 9.3030395, 46.976317 ], + [ 9.303173, 46.9764454 ], + [ 9.303283, 46.9765854 ], + [ 9.3033435, 46.9767427 ], + [ 9.3033552, 46.9769116 ], + [ 9.3033664, 46.9770693 ], + [ 9.3034189, 46.9772324 ], + [ 9.3036045, 46.9774674 ], + [ 9.3037371, 46.9775 ], + [ 9.3039253, 46.9774305 ], + [ 9.3041208, 46.9773329 ], + [ 9.3044411, 46.9773074 ], + [ 9.3047953, 46.9773323 ], + [ 9.3050753, 46.9773748 ], + [ 9.3053319, 46.9774513 ], + [ 9.3055485, 46.977562 ], + [ 9.3057157, 46.9776901 ], + [ 9.3057999, 46.9777965 ], + [ 9.3059107, 46.9779814 ], + [ 9.3059871, 46.9780991 ], + [ 9.3060714, 46.9782336 ], + [ 9.3061903, 46.9783903 ], + [ 9.306307, 46.9784851 ], + [ 9.3064813, 46.9785849 ], + [ 9.306573, 46.9786461 ], + [ 9.3066569, 46.9787186 ], + [ 9.3067578, 46.9788077 ], + [ 9.3069156, 46.9788797 ], + [ 9.307056, 46.9789233 ], + [ 9.3071969, 46.978984 ], + [ 9.3074378, 46.9791058 ], + [ 9.3076216, 46.9792168 ], + [ 9.3078459, 46.9793331 ], + [ 9.3080466, 46.979506 ], + [ 9.3081557, 46.9795951 ], + [ 9.308175, 46.9797472 ], + [ 9.3081293, 46.9799223 ], + [ 9.3081199, 46.9802888 ], + [ 9.3081883, 46.9804123 ], + [ 9.3084859, 46.9805109 ], + [ 9.3087995, 46.9805249 ], + [ 9.30904, 46.9806354 ], + [ 9.3092981, 46.9807795 ], + [ 9.309465, 46.9809246 ], + [ 9.309584, 46.981087 ], + [ 9.3096604, 46.9812045 ], + [ 9.3098685, 46.9813267 ], + [ 9.3100675, 46.9814262 ], + [ 9.3102251, 46.9814924 ], + [ 9.3103581, 46.9815588 ], + [ 9.3104011, 46.9816599 ], + [ 9.3103949, 46.981767 ], + [ 9.3104708, 46.9818452 ], + [ 9.3112461, 46.982351 ], + [ 9.3114125, 46.9824339 ], + [ 9.3115525, 46.9824665 ], + [ 9.3119062, 46.9824294 ], + [ 9.3122436, 46.9824431 ], + [ 9.3125978, 46.982468 ], + [ 9.3129934, 46.9825037 ], + [ 9.3132983, 46.9825516 ], + [ 9.3134974, 46.9826286 ], + [ 9.313673, 46.9827397 ], + [ 9.3140055, 46.982917 ], + [ 9.3144867, 46.983121 ], + [ 9.3147953, 46.9833211 ], + [ 9.3150761, 46.9833861 ], + [ 9.3153238, 46.9834176 ], + [ 9.3155299, 46.9834608 ], + [ 9.3158312, 46.9837116 ], + [ 9.3161959, 46.9838265 ], + [ 9.3163943, 46.983881 ], + [ 9.3165349, 46.9839305 ], + [ 9.3166354, 46.9840084 ], + [ 9.3167359, 46.984109 ], + [ 9.3169447, 46.9842536 ], + [ 9.3172611, 46.9844421 ], + [ 9.3175595, 46.9845633 ], + [ 9.3178823, 46.9846506 ], + [ 9.3179992, 46.9847284 ], + [ 9.31805, 46.9848181 ], + [ 9.3182254, 46.9849236 ], + [ 9.3183416, 46.9849788 ], + [ 9.3184427, 46.9851188 ], + [ 9.318560399999999, 46.9852417 ], + [ 9.3186701, 46.9853478 ], + [ 9.3189359, 46.9854749 ], + [ 9.3193419, 46.9856176 ], + [ 9.3196397, 46.985722 ], + [ 9.3200374, 46.9858365 ], + [ 9.3203693, 46.9859743 ], + [ 9.3206511, 46.98609 ], + [ 9.3208836, 46.9862063 ], + [ 9.3210346, 46.9863176 ], + [ 9.3211428, 46.9864011 ], + [ 9.321309, 46.9864784 ], + [ 9.3214829, 46.9865388 ], + [ 9.3217219, 46.986559 ], + [ 9.3222731, 46.9865539 ], + [ 9.3225707, 46.9866018 ], + [ 9.322851, 46.9866274 ], + [ 9.3231891, 46.9866862 ], + [ 9.3235197, 46.9867394 ], + [ 9.3237574, 46.9866977 ], + [ 9.3239704, 46.9866787 ], + [ 9.3241997, 46.9866315 ], + [ 9.3244788, 46.9866006 ], + [ 9.3246934, 46.9866269 ], + [ 9.3249002, 46.9866644 ], + [ 9.3251314, 46.9867185 ], + [ 9.325288, 46.9867339 ], + [ 9.3254197, 46.9867384 ], + [ 9.3256079, 46.9866914 ], + [ 9.3257485, 46.9866957 ], + [ 9.3259052, 46.9867111 ], + [ 9.3260934, 46.9866643 ], + [ 9.3262986, 46.9866567 ], + [ 9.3265051, 46.9867111 ], + [ 9.326671, 46.9867772 ], + [ 9.3268054, 46.986883 ], + [ 9.326848, 46.9869502 ], + [ 9.3269489, 46.987062 ], + [ 9.3270416, 46.9871964 ], + [ 9.3271194, 46.9873761 ], + [ 9.327236599999999, 46.9874595 ], + [ 9.3274186, 46.9875197 ], + [ 9.3276999, 46.9875961 ], + [ 9.327948, 46.9876388 ], + [ 9.3282856, 46.9876806 ], + [ 9.3287298, 46.9876708 ], + [ 9.3297188, 46.9877516 ], + [ 9.3301236, 46.9878097 ], + [ 9.3304457, 46.9878799 ], + [ 9.3306441, 46.9879119 ], + [ 9.3307685, 46.9879671 ], + [ 9.330877, 46.9880619 ], + [ 9.330995, 46.9881678 ], + [ 9.3311366, 46.9882679 ], + [ 9.3312936, 46.9883172 ], + [ 9.3314419, 46.988327 ], + [ 9.3316477, 46.9883138 ], + [ 9.3318948, 46.9883284 ], + [ 9.3321168, 46.9883319 ], + [ 9.3322318, 46.9883308 ], + [ 9.3323556, 46.9883465 ], + [ 9.33253, 46.9883956 ], + [ 9.3327357, 46.9884275 ], + [ 9.3330078, 46.9884531 ], + [ 9.333288, 46.9884504 ], + [ 9.3335677, 46.9884364 ], + [ 9.3338629, 46.9884168 ], + [ 9.3341995, 46.9883853 ], + [ 9.3344953, 46.9883599 ], + [ 9.3348576, 46.9883791 ], + [ 9.335154, 46.9883705 ], + [ 9.3354255, 46.9883566 ], + [ 9.3356559, 46.9883657 ], + [ 9.3359269, 46.988335 ], + [ 9.3362635, 46.9883035 ], + [ 9.3365098, 46.9882956 ], + [ 9.3366917, 46.9883051 ], + [ 9.3368646, 46.9883373 ], + [ 9.3370465, 46.9883919 ], + [ 9.3372539, 46.9884689 ], + [ 9.3374859, 46.9885455 ], + [ 9.3377676, 46.9886104 ], + [ 9.3380896, 46.9886751 ], + [ 9.3384935, 46.9887106 ], + [ 9.3388885, 46.9887012 ], + [ 9.3392383, 46.9885062 ], + [ 9.339465, 46.9883406 ], + [ 9.3395775, 46.9881986 ], + [ 9.3396563, 46.9880343 ], + [ 9.3397089, 46.9878027 ], + [ 9.3397308, 46.9876785 ], + [ 9.3397197, 46.9875038 ], + [ 9.3397913, 46.9874129 ], + [ 9.3398623, 46.98726 ], + [ 9.3399251, 46.9871073 ], + [ 9.3399699, 46.9868644 ], + [ 9.340016, 46.9867287 ], + [ 9.3401115, 46.9865699 ], + [ 9.340216, 46.9864337 ], + [ 9.3402629, 46.9863206 ], + [ 9.3403902, 46.9861106 ], + [ 9.3405023, 46.98598 ], + [ 9.3405088, 46.9858615 ], + [ 9.340472, 46.9857041 ], + [ 9.3404855, 46.9855291 ], + [ 9.34058, 46.9853423 ], + [ 9.3407517, 46.9848784 ], + [ 9.3410258, 46.9850055 ], + [ 9.3412413, 46.9850823 ], + [ 9.3414557, 46.9851253 ], + [ 9.3416947, 46.985123 ], + [ 9.3419253, 46.9851377 ], + [ 9.3421235, 46.9851865 ], + [ 9.3423224, 46.9852353 ], + [ 9.3426115, 46.9853227 ], + [ 9.3429945, 46.9851387 ], + [ 9.3430493, 46.9853862 ], + [ 9.3433004, 46.9852146 ], + [ 9.3433053, 46.9854231 ], + [ 9.3435647, 46.9852515 ], + [ 9.3436173, 46.9853919 ], + [ 9.3437881, 46.985317 ], + [ 9.3439184, 46.9852369 ], + [ 9.3440472, 46.9851172 ], + [ 9.3441922, 46.9849637 ], + [ 9.3442563, 46.9848728 ], + [ 9.3443774, 46.9847646 ], + [ 9.3444914, 46.9846902 ], + [ 9.3446058, 46.9846721 ], + [ 9.344858, 46.9845289 ], + [ 9.345053, 46.9843973 ], + [ 9.3453286, 46.9841973 ], + [ 9.3455963, 46.9840313 ], + [ 9.3458255, 46.9839614 ], + [ 9.3461297, 46.9839416 ], + [ 9.3463685, 46.9839562 ], + [ 9.346558, 46.9839938 ], + [ 9.3466991, 46.9840319 ], + [ 9.3470115, 46.9840346 ], + [ 9.3472413, 46.9840042 ], + [ 9.34743, 46.9839741 ], + [ 9.3476857, 46.9839999 ], + [ 9.3480403, 46.9840584 ], + [ 9.3483549, 46.9841455 ], + [ 9.348243, 46.9842819 ], + [ 9.3481396, 46.9844465 ], + [ 9.3479692, 46.9846003 ], + [ 9.3477999, 46.9847372 ], + [ 9.3475387, 46.9848581 ], + [ 9.3472219, 46.9850303 ], + [ 9.3470435, 46.9851672 ], + [ 9.3470783, 46.9852684 ], + [ 9.347106, 46.9853978 ], + [ 9.3471071, 46.9854767 ], + [ 9.3471009, 46.9855782 ], + [ 9.3471027, 46.9856289 ], + [ 9.3471124, 46.985719 ], + [ 9.3471469, 46.9858089 ], + [ 9.3471647, 46.9858707 ], + [ 9.3471747, 46.9859439 ], + [ 9.3471676, 46.9860003 ], + [ 9.3471031, 46.9860798 ], + [ 9.3470227, 46.986154 ], + [ 9.346975, 46.9862446 ], + [ 9.3469772, 46.9863517 ], + [ 9.3470124, 46.986464 ], + [ 9.347032, 46.9865992 ], + [ 9.3470339, 46.9867005 ], + [ 9.3469786, 46.9868308 ], + [ 9.3468587, 46.9869728 ], + [ 9.34673, 46.9871433 ], + [ 9.3467708, 46.9875036 ], + [ 9.3468298, 46.9875932 ], + [ 9.3469404, 46.9877443 ], + [ 9.3471004, 46.9879231 ], + [ 9.3471767, 46.9880352 ], + [ 9.3472532, 46.9881528 ], + [ 9.3472961, 46.9882257 ], + [ 9.3473706, 46.9882643 ], + [ 9.3474782, 46.9883084 ], + [ 9.3476106, 46.9883354 ], + [ 9.3479655, 46.988377 ], + [ 9.3479587, 46.9884616 ], + [ 9.3486371, 46.9886129 ], + [ 9.3486569, 46.9887987 ], + [ 9.3490752, 46.9891217 ], + [ 9.349041, 46.9894546 ], + [ 9.3490602, 46.9896009 ], + [ 9.3491114, 46.9897019 ], + [ 9.3491702, 46.9897352 ], + [ 9.3492782, 46.989768 ], + [ 9.3495084, 46.9897713 ], + [ 9.349510800000001, 46.989884 ], + [ 9.3493647, 46.9899812 ], + [ 9.3492588, 46.9900555 ], + [ 9.3492115, 46.9901575 ], + [ 9.3492714, 46.9902697 ], + [ 9.3493569, 46.9904097 ], + [ 9.3494176, 46.9905445 ], + [ 9.349519, 46.9906675 ], + [ 9.3495299, 46.990814 ], + [ 9.3495321, 46.9909211 ], + [ 9.3495675, 46.991039 ], + [ 9.349644, 46.9911567 ], + [ 9.3498094, 46.9912058 ], + [ 9.350043, 46.9913501 ], + [ 9.3502622, 46.9912296 ], + [ 9.3503684, 46.9911892 ], + [ 9.3505011, 46.9912217 ], + [ 9.3506348, 46.9913049 ], + [ 9.3506363, 46.9913951 ], + [ 9.3505972, 46.9914969 ], + [ 9.350493, 46.9916163 ], + [ 9.3503885, 46.9917301 ], + [ 9.3502344, 46.9918555 ], + [ 9.3501126, 46.9919187 ], + [ 9.3499821, 46.9919933 ], + [ 9.3498278, 46.992068 ], + [ 9.349582, 46.992138 ], + [ 9.349369, 46.9921795 ], + [ 9.3491636, 46.9922042 ], + [ 9.3488762, 46.9922351 ], + [ 9.3486295, 46.9922544 ], + [ 9.3484576, 46.992273 ], + [ 9.348253, 46.9923427 ], + [ 9.3482786, 46.9923931 ], + [ 9.3483619, 46.9924487 ], + [ 9.3484799, 46.9925545 ], + [ 9.3486789, 46.992626 ], + [ 9.3488601, 46.992658 ], + [ 9.3490494, 46.9926449 ], + [ 9.349124400000001, 46.992672400000004 ], + [ 9.3492169, 46.9927786 ], + [ 9.3493335, 46.9928676 ], + [ 9.3494511, 46.9929849 ], + [ 9.3494613, 46.9930637 ], + [ 9.3493972, 46.993132 ], + [ 9.3492917, 46.9932175 ], + [ 9.3491214, 46.9933262 ], + [ 9.3489586, 46.9934406 ], + [ 9.348861, 46.9934698 ], + [ 9.3487704, 46.9934876 ], + [ 9.3486141, 46.9934834 ], + [ 9.3485069, 46.9934731 ], + [ 9.3483009, 46.9934583 ], + [ 9.3481123, 46.9934939 ], + [ 9.3478738, 46.9935131 ], + [ 9.3477103, 46.9935373 ], + [ 9.3475941, 46.9935045 ], + [ 9.3473875, 46.9934502 ], + [ 9.3471985, 46.993452 ], + [ 9.3470259, 46.9934988 ], + [ 9.3468972, 46.9936239 ], + [ 9.3468333, 46.9937205 ], + [ 9.3469992, 46.9937639 ], + [ 9.3471893, 46.9938411 ], + [ 9.3474875, 46.9939058 ], + [ 9.3476955, 46.9940222 ], + [ 9.347829, 46.9940998 ], + [ 9.3479467, 46.9942452 ], + [ 9.3480407, 46.9944134 ], + [ 9.3480931, 46.9945482 ], + [ 9.3481947, 46.9946769 ], + [ 9.3483039, 46.9947885 ], + [ 9.3484127, 46.9948664 ], + [ 9.3485784, 46.9949268 ], + [ 9.3488265, 46.9949921 ], + [ 9.3491421, 46.9951299 ], + [ 9.3493823, 46.995229 ], + [ 9.3495992, 46.9953397 ], + [ 9.3497901, 46.9954393 ], + [ 9.3499416, 46.9956069 ], + [ 9.350051, 46.9957016 ], + [ 9.3501269, 46.9957798 ], + [ 9.3502854, 46.995891 ], + [ 9.3504106, 46.9959688 ], + [ 9.3506186, 46.9960851 ], + [ 9.3508176, 46.9961791 ], + [ 9.3509757, 46.9962564 ], + [ 9.3511404, 46.9962661 ], + [ 9.3513547, 46.9962584 ], + [ 9.3516008, 46.9962447 ], + [ 9.3518322, 46.9962819 ], + [ 9.3520232, 46.996359 ], + [ 9.3521661, 46.9964929 ], + [ 9.352326099999999, 46.9966942 ], + [ 9.352552, 46.9968725 ], + [ 9.3526543, 46.9970236 ], + [ 9.3527483, 46.9971919 ], + [ 9.3527591, 46.9973327 ], + [ 9.3527613, 46.9974398 ], + [ 9.3527568, 46.997592 ], + [ 9.3527602, 46.9977554 ], + [ 9.352903, 46.9979344 ], + [ 9.3530126, 46.9980573 ], + [ 9.3531481, 46.9982364 ], + [ 9.3533316, 46.9983586 ], + [ 9.3535829, 46.9985366 ], + [ 9.3538246, 46.9986978 ], + [ 9.3540076, 46.9988031 ], + [ 9.354182699999999, 46.9988972 ], + [ 9.3543899, 46.998991 ], + [ 9.3545073, 46.99908 ], + [ 9.3545252, 46.9991418 ], + [ 9.3545761, 46.9992315 ], + [ 9.3546195, 46.9993438 ], + [ 9.3546139, 46.9994623 ], + [ 9.3546331, 46.9995861 ], + [ 9.3546361, 46.9997157 ], + [ 9.3546457, 46.9998002 ], + [ 9.3547136, 46.9999066 ], + [ 9.3548313, 47.0000014 ], + [ 9.3550896, 47.0001679 ], + [ 9.3552565, 47.0002847 ], + [ 9.3554982, 47.0004232 ], + [ 9.3557152, 47.0005845 ], + [ 9.3559411, 47.0007402 ], + [ 9.3561992, 47.0009012 ], + [ 9.3565072, 47.001056 ], + [ 9.3567822, 47.0012055 ], + [ 9.3570149, 47.0013217 ], + [ 9.3572075, 47.0014664 ], + [ 9.3572918, 47.0015952 ], + [ 9.3575384, 47.0015702 ], + [ 9.3577608, 47.0015624 ], + [ 9.3579244, 47.0015382 ], + [ 9.3580563, 47.0015257 ], + [ 9.3582288, 47.0015239 ], + [ 9.358394, 47.0015449 ], + [ 9.3585834, 47.0015544 ], + [ 9.3587726, 47.0015581 ], + [ 9.3589955, 47.0015616 ], + [ 9.3591673, 47.0015148 ], + [ 9.3593783, 47.0013945 ], + [ 9.3596559, 47.0012733 ], + [ 9.3599396, 47.0010676 ], + [ 9.3602571, 47.0008898 ], + [ 9.3606734, 47.0007391 ], + [ 9.3608692, 47.0006753 ], + [ 9.361164, 47.0005765 ], + [ 9.3613763, 47.0004899 ], + [ 9.3614981, 47.0004267 ], + [ 9.3616026, 47.0003129 ], + [ 9.3616998, 47.0002275 ], + [ 9.3618966, 47.0001917 ], + [ 9.3621592, 47.0001552 ], + [ 9.3622407, 47.0001151 ], + [ 9.3623211, 47.000041 ], + [ 9.362442, 46.9999271 ], + [ 9.3625885, 46.9998411 ], + [ 9.3627681, 46.999783 ], + [ 9.3630725, 46.9997461 ], + [ 9.3632765, 46.9996821 ], + [ 9.3634399, 46.9996072 ], + [ 9.3635692, 46.9994989 ], + [ 9.3636161, 46.9994081 ], + [ 9.3637125, 46.9992776 ], + [ 9.3637846, 46.9991811 ], + [ 9.3639478, 46.9991006 ], + [ 9.3641195, 46.9990538 ], + [ 9.364267, 46.9990185 ], + [ 9.3643811, 46.9989893 ], + [ 9.3645366, 46.9989483 ], + [ 9.3647004, 46.9988847 ], + [ 9.3648469, 46.9988212 ], + [ 9.3650761, 46.9987739 ], + [ 9.3652329, 46.9987893 ], + [ 9.3653976, 46.9987989 ], + [ 9.3655954, 46.9988138 ], + [ 9.3657918, 46.9987668 ], + [ 9.3659059, 46.9986925 ], + [ 9.3660847, 46.9985892 ], + [ 9.3662468, 46.998458 ], + [ 9.3664338, 46.9983546 ], + [ 9.3665637, 46.9982632 ], + [ 9.3666753, 46.9981211 ], + [ 9.3667861, 46.9979115 ], + [ 9.3668803, 46.9976965 ], + [ 9.3669971, 46.9973796 ], + [ 9.3670753, 46.9971533 ], + [ 9.3671302, 46.9970344 ], + [ 9.3672512, 46.9969261 ], + [ 9.3673807, 46.9968234 ], + [ 9.3675424, 46.9966809 ], + [ 9.3677043, 46.9965666 ], + [ 9.3678829, 46.9964577 ], + [ 9.3679633, 46.996361 ], + [ 9.3679847, 46.9961804 ], + [ 9.3680055, 46.9960281 ], + [ 9.3680685, 46.9958583 ], + [ 9.3680815, 46.9957173 ], + [ 9.3681193, 46.9955592 ], + [ 9.3681901, 46.9954005 ], + [ 9.368246, 46.9953099 ], + [ 9.3682752, 46.995163 ], + [ 9.3682456, 46.9949096 ], + [ 9.3682259, 46.9947519 ], + [ 9.3682133, 46.9945605 ], + [ 9.3682273, 46.994425 ], + [ 9.3683489, 46.9943337 ], + [ 9.3684864, 46.9942477 ], + [ 9.368789, 46.9941376 ], + [ 9.3690419, 46.9940393 ], + [ 9.3692122, 46.9939306 ], + [ 9.3693084, 46.9938169 ], + [ 9.3693395, 46.9936981 ], + [ 9.3693208, 46.9936138 ], + [ 9.3692703, 46.9935354 ], + [ 9.3691936, 46.9934348 ], + [ 9.3691168, 46.9932888 ], + [ 9.3690725, 46.9931541 ], + [ 9.3690206, 46.9930136 ], + [ 9.3690426, 46.992895 ], + [ 9.3690651, 46.9928103 ], + [ 9.3691298, 46.9927364 ], + [ 9.3692689, 46.992695499999996 ], + [ 9.3694903, 46.9926595 ], + [ 9.3696047, 46.9926189 ], + [ 9.3697602, 46.992578 ], + [ 9.3698728, 46.9924867 ], + [ 9.3699706, 46.992418 ], + [ 9.3700584, 46.9922988 ], + [ 9.3701225, 46.9922079 ], + [ 9.3702035, 46.9921507 ], + [ 9.3703103, 46.9921271 ], + [ 9.3704491, 46.9920808 ], + [ 9.3705056, 46.9920294 ], + [ 9.3705207, 46.9919673 ], + [ 9.370485, 46.9918436 ], + [ 9.3704579, 46.9917311 ], + [ 9.3704222, 46.9916075 ], + [ 9.37042, 46.9915004 ], + [ 9.3704515, 46.9914156 ], + [ 9.3705076, 46.991353 ], + [ 9.3706138, 46.9913125 ], + [ 9.3706258, 46.9910982 ], + [ 9.3705815, 46.9909633 ], + [ 9.3704971, 46.990857 ], + [ 9.3704446, 46.9906997 ], + [ 9.3704245, 46.9905534 ], + [ 9.3704466, 46.9904123 ], + [ 9.370491, 46.9901863 ], + [ 9.3705858, 46.9899881 ], + [ 9.3706401, 46.9898297 ], + [ 9.3706188, 46.989627 ], + [ 9.3705988, 46.9894356 ], + [ 9.3706428, 46.9891984 ], + [ 9.3706693, 46.9888599 ], + [ 9.3706556, 46.9886177 ], + [ 9.3706364, 46.9884713 ], + [ 9.3706748, 46.9883751 ], + [ 9.3707468, 46.9882503 ], + [ 9.3707361, 46.9881602 ], + [ 9.370765, 46.987957 ], + [ 9.370776, 46.9876919 ], + [ 9.370814, 46.9875395 ], + [ 9.3709357, 46.987448 ], + [ 9.3711887, 46.9873553 ], + [ 9.371457, 46.9872061 ], + [ 9.3717493, 46.9870173 ], + [ 9.3719505, 46.9868293 ], + [ 9.372111199999999, 46.9866359 ], + [ 9.3722638, 46.986471 ], + [ 9.3723354, 46.9863351 ], + [ 9.372414299999999, 46.9861764 ], + [ 9.3725331, 46.9859837 ], + [ 9.3727344, 46.9857562 ], + [ 9.3729195, 46.985557 ], + [ 9.3731127, 46.9853747 ], + [ 9.3731926, 46.9852443 ], + [ 9.3733364, 46.9850624 ], + [ 9.3736107, 46.9848062 ], + [ 9.3742414, 46.9842475 ], + [ 9.3745497, 46.9840471 ], + [ 9.3749157, 46.9838519 ], + [ 9.3751101, 46.9837033 ], + [ 9.3752214, 46.9835332 ], + [ 9.3752997, 46.983335 ], + [ 9.3753875, 46.9832159 ], + [ 9.3754929, 46.9831302 ], + [ 9.3756221, 46.9830218 ], + [ 9.3758078, 46.9828622 ], + [ 9.375944, 46.9826747 ], + [ 9.376087, 46.9824479 ], + [ 9.3761405, 46.9822444 ], + [ 9.376336, 46.9821748 ], + [ 9.3765558, 46.9820486 ], + [ 9.3767174, 46.9819061 ], + [ 9.3769119, 46.9817632 ], + [ 9.3770808, 46.9815925 ], + [ 9.377241, 46.9814106 ], + [ 9.3773029, 46.9812127 ], + [ 9.3773486, 46.9810206 ], + [ 9.3775154, 46.9807482 ], + [ 9.3776865, 46.980662 ], + [ 9.3778489, 46.9805871 ], + [ 9.3779872, 46.9805012 ], + [ 9.3779845, 46.9803829 ], + [ 9.3779488, 46.9802366 ], + [ 9.3780017, 46.9800162 ], + [ 9.3780631, 46.9798296 ], + [ 9.378127, 46.9797332 ], + [ 9.3782817, 46.9796471 ], + [ 9.3784852, 46.9795493 ], + [ 9.3786557, 46.9794235 ], + [ 9.3787348, 46.9792706 ], + [ 9.3787893, 46.9791404 ], + [ 9.3789033, 46.9790659 ], + [ 9.3790577, 46.9789968 ], + [ 9.3792128, 46.978922 ], + [ 9.379374, 46.9787682 ], + [ 9.3795356, 46.9786482 ], + [ 9.379757, 46.9786121 ], + [ 9.3799794, 46.9786042 ], + [ 9.3801342, 46.978569 ], + [ 9.3802735, 46.9785338 ], + [ 9.3804612, 46.978453 ], + [ 9.3806819, 46.9784 ], + [ 9.3808867, 46.9783586 ], + [ 9.3811251, 46.9783392 ], + [ 9.3813545, 46.9782749 ], + [ 9.3815756, 46.9782333 ], + [ 9.3817553, 46.9781808 ], + [ 9.3819923, 46.9781221 ], + [ 9.3821722, 46.9780752 ], + [ 9.3823613, 46.9780563 ], + [ 9.3826989, 46.9780755 ], + [ 9.3830613, 46.9780775 ], + [ 9.3832599, 46.9781376 ], + [ 9.3835135, 46.9780843 ], + [ 9.3838504, 46.978064 ], + [ 9.3841958, 46.9780719 ], + [ 9.3845507, 46.9780909 ], + [ 9.3849788, 46.9781373 ], + [ 9.3853574, 46.9781336 ], + [ 9.385577, 46.9780243 ], + [ 9.3856154, 46.9779055 ], + [ 9.385646, 46.9777755 ], + [ 9.3857021, 46.9776903 ], + [ 9.3857744, 46.9776221 ], + [ 9.3859044, 46.9775587 ], + [ 9.3861255, 46.9774945 ], + [ 9.3863867, 46.9774018 ], + [ 9.38655, 46.9773494 ], + [ 9.3866711, 46.9772466 ], + [ 9.3868498, 46.9771435 ], + [ 9.3869884, 46.9770687 ], + [ 9.3871605, 46.9770332 ], + [ 9.3874474, 46.9769909 ], + [ 9.3877422, 46.9769429 ], + [ 9.3881361, 46.9768825 ], + [ 9.3883246, 46.9768468 ], + [ 9.3884377, 46.9767498 ], + [ 9.3885256, 46.9766588 ], + [ 9.3886388, 46.9765618 ], + [ 9.3887768, 46.9764702 ], + [ 9.3890045, 46.9763384 ], + [ 9.3892002, 46.9762518 ], + [ 9.389479, 46.9762152 ], + [ 9.389692, 46.9761736 ], + [ 9.389822, 46.9761103 ], + [ 9.3899446, 46.9760471 ], + [ 9.3900986, 46.9759441 ], + [ 9.3903019, 46.975863 ], + [ 9.3905655, 46.9758604 ], + [ 9.3909764, 46.9758394 ], + [ 9.3914205, 46.9758293 ], + [ 9.3919207, 46.9757566 ], + [ 9.3922963, 46.9756232 ], + [ 9.3925464, 46.9754065 ], + [ 9.3928439, 46.9750934 ], + [ 9.3931421, 46.9747973 ], + [ 9.3935312, 46.9745397 ], + [ 9.3937577, 46.9743514 ], + [ 9.3940488, 46.9741343 ], + [ 9.3942422, 46.9739407 ], + [ 9.3944213, 46.9738262 ], + [ 9.394457, 46.9736116 ], + [ 9.394692299999999, 46.9738234 ], + [ 9.394605, 46.9735932 ], + [ 9.3949631, 46.9737925 ], + [ 9.3949102, 46.9736465 ], + [ 9.3949165, 46.973528 ], + [ 9.3948884, 46.9733874 ], + [ 9.394760699999999, 46.973197 ], + [ 9.3949512, 46.9732402 ], + [ 9.3948808, 46.973021 ], + [ 9.3949188, 46.9728686 ], + [ 9.3950142, 46.9727379 ], + [ 9.3952011, 46.9726346 ], + [ 9.3954204, 46.972497 ], + [ 9.3955811, 46.972332 ], + [ 9.3957189, 46.9722347 ], + [ 9.3959154, 46.9721708 ], + [ 9.3963324, 46.9720481 ], + [ 9.3966338, 46.9719098 ], + [ 9.3969834, 46.9717429 ], + [ 9.3972922, 46.9715818 ], + [ 9.3977599, 46.9714982 ], + [ 9.3980112, 46.9713378 ], + [ 9.3984243, 46.9710406 ], + [ 9.3985769, 46.9708529 ], + [ 9.3987132, 46.9706937 ], + [ 9.3988257, 46.9705799 ], + [ 9.3989887, 46.9704993 ], + [ 9.3991673, 46.9704187 ], + [ 9.3992884, 46.9703159 ], + [ 9.3993506, 46.9701518 ], + [ 9.3993225, 46.9699886 ], + [ 9.3992691, 46.9697862 ], + [ 9.3992646, 46.9695947 ], + [ 9.3993851, 46.96943 ], + [ 9.3995216, 46.9692763 ], + [ 9.3997223, 46.9690827 ], + [ 9.3999322, 46.9688664 ], + [ 9.4001003, 46.9686561 ], + [ 9.4000793, 46.9684421 ], + [ 9.4000481, 46.9681493 ], + [ 9.3999282, 46.967925 ], + [ 9.3998331, 46.9677287 ], + [ 9.3997949, 46.9674923 ], + [ 9.3997099, 46.9673466 ], + [ 9.3995368, 46.9673314 ], + [ 9.3993301, 46.9672942 ], + [ 9.3991549, 46.9671775 ], + [ 9.3990128, 46.9670662 ], + [ 9.3990262, 46.9669363 ], + [ 9.3990307, 46.9667446 ], + [ 9.3989206, 46.9665879 ], + [ 9.3987508, 46.9663473 ], + [ 9.3985225, 46.966079 ], + [ 9.3983704, 46.9658945 ], + [ 9.3983925, 46.9657817 ], + [ 9.3984389, 46.9656345 ], + [ 9.3985085, 46.9654252 ], + [ 9.3985795, 46.965278 ], + [ 9.3985107, 46.9651491 ], + [ 9.3983758, 46.9650095 ], + [ 9.3982662, 46.9648641 ], + [ 9.3981387, 46.9646568 ], + [ 9.3979925, 46.9643876 ], + [ 9.3978979, 46.9642027 ], + [ 9.3977927, 46.963888 ], + [ 9.3977465, 46.9636347 ], + [ 9.3976917, 46.963392999999996 ], + [ 9.3976775, 46.9631395 ], + [ 9.3977145, 46.9629136 ], + [ 9.3976837, 46.9626546 ], + [ 9.3976379, 46.9624352 ], + [ 9.3975196, 46.9623012 ], + [ 9.3973784, 46.962235 ], + [ 9.3972369, 46.9621405 ], + [ 9.397045, 46.9620127 ], + [ 9.3968116, 46.9618742 ], + [ 9.3965938, 46.9616905 ], + [ 9.3964177, 46.9615231 ], + [ 9.39629, 46.9613102 ], + [ 9.3962741, 46.960989 ], + [ 9.396019, 46.9609522 ], + [ 9.3958371, 46.9609202 ], + [ 9.3955555, 46.9608328 ], + [ 9.395266, 46.9607342 ], + [ 9.3954949, 46.9606812 ], + [ 9.3956657, 46.9606118 ], + [ 9.3953325, 46.9604179 ], + [ 9.395125, 46.9603129 ], + [ 9.3947945, 46.9602374 ], + [ 9.394307, 46.9601351 ], + [ 9.3939609, 46.9600822 ], + [ 9.393746, 46.960045 ], + [ 9.3936374, 46.9599727 ], + [ 9.3934701, 46.9598448 ], + [ 9.3932379, 46.9597401 ], + [ 9.3928984, 46.959642 ], + [ 9.3925583, 46.9595045 ], + [ 9.392112, 46.9594075 ], + [ 9.391832, 46.9593878 ], + [ 9.3917805, 46.9592812 ], + [ 9.3917037, 46.9591579 ], + [ 9.391536, 46.9589961 ], + [ 9.3913109, 46.9588801 ], + [ 9.3911853, 46.9587461 ], + [ 9.3909735, 46.9584777 ], + [ 9.3906793, 46.9581818 ], + [ 9.3903758, 46.9578297 ], + [ 9.3902579, 46.9577069 ], + [ 9.3900839, 46.957641 ], + [ 9.3899104, 46.957592 ], + [ 9.3896799, 46.9575774 ], + [ 9.3893343, 46.957580899999996 ], + [ 9.3890713, 46.9576004 ], + [ 9.3887614, 46.9576824 ], + [ 9.3884764, 46.9578206 ], + [ 9.3882149, 46.9579247 ], + [ 9.3879126, 46.9579897 ], + [ 9.3875447, 46.9581061 ], + [ 9.3872816, 46.95812 ], + [ 9.3869852, 46.9580779 ], + [ 9.3868522, 46.9580116 ], + [ 9.3867738, 46.9578207 ], + [ 9.3866284, 46.957935 ], + [ 9.3864425, 46.9577226 ], + [ 9.3862473, 46.9578204 ], + [ 9.3861627, 46.9576859 ], + [ 9.3860742, 46.9577827 ], + [ 9.3859868, 46.9575694 ], + [ 9.385899, 46.9576829 ], + [ 9.3857145, 46.9574875 ], + [ 9.3854827, 46.9574165 ], + [ 9.3850778, 46.9573473 ], + [ 9.38469, 46.9572779 ], + [ 9.3842036, 46.9572264 ], + [ 9.3837013, 46.9571919 ], + [ 9.3830923, 46.9571585 ], + [ 9.382785, 46.9570207 ], + [ 9.3826664, 46.9568752 ], + [ 9.3826065, 46.9567406 ], + [ 9.3825129, 46.9566289 ], + [ 9.3824364, 46.9564886 ], + [ 9.3824083, 46.9563254 ], + [ 9.3822838, 46.9562647 ], + [ 9.3820843, 46.9561765 ], + [ 9.3818285, 46.9561452 ], + [ 9.3814831, 46.9561318 ], + [ 9.3812528, 46.9561227 ], + [ 9.3804258, 46.9558998 ], + [ 9.3804296, 46.9556857 ], + [ 9.3803859, 46.9555677 ], + [ 9.3802833, 46.9554109 ], + [ 9.3801908, 46.9552821 ], + [ 9.3800141, 46.9551205 ], + [ 9.3798132, 46.9549477 ], + [ 9.3795977, 46.9548483 ], + [ 9.3794301, 46.954709199999996 ], + [ 9.379386, 46.9545799 ], + [ 9.3793817, 46.9543939 ], + [ 9.3793695, 46.9541911 ], + [ 9.3791222, 46.9537821 ], + [ 9.3788314, 46.9536441 ], + [ 9.3787287, 46.9534366 ], + [ 9.3785666, 46.9531788 ], + [ 9.3784134, 46.952938 ], + [ 9.3779902, 46.952728 ], + [ 9.3781904, 46.9524724 ], + [ 9.3782448, 46.9523421 ], + [ 9.3782596, 46.9522517 ], + [ 9.3781841, 46.9521848 ], + [ 9.3780846, 46.9521352 ], + [ 9.3779422, 46.9520351 ], + [ 9.3778244, 46.9519123 ], + [ 9.3777151, 46.9517724 ], + [ 9.3775885, 46.9516328 ], + [ 9.3774607, 46.9514142 ], + [ 9.3773994, 46.9512401 ], + [ 9.3774039, 46.9510709 ], + [ 9.3774572, 46.9508843 ], + [ 9.3776352, 46.9507192 ], + [ 9.3778702, 46.9505646 ], + [ 9.3781223, 46.9504493 ], + [ 9.3783413, 46.9503062 ], + [ 9.3783208, 46.9501036 ], + [ 9.378217, 46.9498677 ], + [ 9.3781952, 46.9496031 ], + [ 9.3782129, 46.9492985 ], + [ 9.3782657, 46.9490782 ], + [ 9.3783448, 46.9489026 ], + [ 9.3783496, 46.9487617 ], + [ 9.3782981, 46.948655 ], + [ 9.3782216, 46.9485374 ], + [ 9.3781707, 46.9484477 ], + [ 9.3781434, 46.9483521 ], + [ 9.3781582, 46.9482619 ], + [ 9.3782217, 46.948131599999996 ], + [ 9.3782919, 46.9479843 ], + [ 9.378347, 46.9478711 ], + [ 9.3783534, 46.9477526 ], + [ 9.3783177, 46.9476289 ], + [ 9.3783487, 46.9475328 ], + [ 9.3784364, 46.9474135 ], + [ 9.3784506, 46.9473062 ], + [ 9.378333, 46.947189 ], + [ 9.3781412, 46.9470614 ], + [ 9.3779665, 46.9469559 ], + [ 9.3779881, 46.9468487 ], + [ 9.3780438, 46.9467523 ], + [ 9.3779591, 46.9466348 ], + [ 9.3778836, 46.9465452 ], + [ 9.3778151, 46.946422 ], + [ 9.3778048, 46.9463431 ], + [ 9.3778607, 46.9462524 ], + [ 9.3779732, 46.946116 ], + [ 9.3781175, 46.9459511 ], + [ 9.3778017, 46.9457794 ], + [ 9.3776265, 46.9456798 ], + [ 9.377392799999999, 46.9455073 ], + [ 9.3772679, 46.9454128 ], + [ 9.3771649, 46.9452221 ], + [ 9.3770952, 46.9450424 ], + [ 9.3770017, 46.9448856 ], + [ 9.3768513, 46.9447911 ], + [ 9.3766428, 46.9446353 ], + [ 9.376182, 46.9442454 ], + [ 9.3760555, 46.9441057 ], + [ 9.3760374, 46.9440157 ], + [ 9.3760839, 46.9438687 ], + [ 9.3761871, 46.9437042 ], + [ 9.376291, 46.9435566 ], + [ 9.3764115, 46.943437 ], + [ 9.3764902, 46.9432728 ], + [ 9.3764791, 46.9431263 ], + [ 9.3764433, 46.9429745 ], + [ 9.3764234, 46.9428112 ], + [ 9.3764516, 46.9426136 ], + [ 9.3765461, 46.9424097 ], + [ 9.37655, 46.9422011 ], + [ 9.3764387, 46.9420049 ], + [ 9.3764172, 46.941774 ], + [ 9.3763894, 46.9416165 ], + [ 9.3763954, 46.9414867 ], + [ 9.3764174, 46.9413683 ], + [ 9.3763899, 46.9412444 ], + [ 9.3763294, 46.9411154 ], + [ 9.3762103, 46.9409081 ], + [ 9.3760911, 46.9407232 ], + [ 9.3760214, 46.940521 ], + [ 9.3760098, 46.9403575 ], + [ 9.3760297, 46.9401601 ], + [ 9.3761088, 46.940007 ], + [ 9.3762453, 46.9398536 ], + [ 9.3764803, 46.9396991 ], + [ 9.3768052, 46.9395098 ], + [ 9.3773259, 46.9392396 ], + [ 9.377658, 46.9389996 ], + [ 9.3779338, 46.938839 ], + [ 9.3782166, 46.938622 ], + [ 9.3784931, 46.9384557 ], + [ 9.3786784, 46.9382905 ], + [ 9.3788648, 46.9381533 ], + [ 9.3789604, 46.9380058 ], + [ 9.3790465, 46.9377964 ], + [ 9.3791731, 46.9375753 ], + [ 9.3793144, 46.937280799999996 ], + [ 9.3794647, 46.9369861 ], + [ 9.3796312, 46.9366858 ], + [ 9.379773, 46.9364307 ], + [ 9.3798909, 46.9361702 ], + [ 9.3801172, 46.9359819 ], + [ 9.3802773, 46.9357774 ], + [ 9.3804212, 46.9355787 ], + [ 9.3805485, 46.9353745 ], + [ 9.3807256, 46.9352093 ], + [ 9.381, 46.934964 ], + [ 9.381233, 46.9347306 ], + [ 9.381565, 46.934468 ], + [ 9.3817331, 46.9342803 ], + [ 9.3818611, 46.9341212 ], + [ 9.3819896, 46.9339509 ], + [ 9.3820742, 46.933702 ], + [ 9.3822165, 46.9334355 ], + [ 9.382348499999999, 46.9330453 ], + [ 9.3824893, 46.9327395 ], + [ 9.3826002, 46.9325129 ], + [ 9.382711, 46.9323089 ], + [ 9.3828128, 46.932105 ], + [ 9.3829497, 46.9319401 ], + [ 9.3831344, 46.9317578 ], + [ 9.3833521, 46.9315358 ], + [ 9.3836597, 46.9313468 ], + [ 9.3838212, 46.9311817 ], + [ 9.3838986, 46.930983499999996 ], + [ 9.3840177, 46.930757 ], + [ 9.3841837, 46.9304678 ], + [ 9.3843183, 46.9302185 ], + [ 9.3844694, 46.9299914 ], + [ 9.3847205, 46.9298086 ], + [ 9.3848984, 46.9296658 ], + [ 9.3850505, 46.9294671 ], + [ 9.3852192, 46.9292962 ], + [ 9.3853723, 46.9291481 ], + [ 9.3854665, 46.9289612 ], + [ 9.3855927, 46.9287062 ], + [ 9.3856643, 46.9285758 ], + [ 9.3857917, 46.9283772 ], + [ 9.3859522, 46.9282291 ], + [ 9.3861447, 46.9279903 ], + [ 9.3863293, 46.9277856 ], + [ 9.386483, 46.9276545 ], + [ 9.386585, 46.9274562 ], + [ 9.3867026, 46.92719 ], + [ 9.3868136, 46.9269691 ], + [ 9.3869337, 46.9268156 ], + [ 9.3871842, 46.9266158 ], + [ 9.3874573, 46.9263368 ], + [ 9.3878592, 46.9258988 ], + [ 9.3881093, 46.9256877 ], + [ 9.3881889, 46.9255742 ], + [ 9.3883057, 46.9252855 ], + [ 9.3883977, 46.9249464 ], + [ 9.3885058, 46.9246465 ], + [ 9.388655, 46.9243238 ], + [ 9.3888134, 46.9240291 ], + [ 9.38898, 46.9237567 ], + [ 9.3891478, 46.9235184 ], + [ 9.3893411, 46.9233472 ], + [ 9.3895267, 46.9231707 ], + [ 9.3896462, 46.9230229 ], + [ 9.389789799999999, 46.9228185 ], + [ 9.3900161, 46.9226077 ], + [ 9.3903068, 46.922385 ], + [ 9.3905336, 46.922236 ], + [ 9.3908933, 46.9221254 ], + [ 9.3913107, 46.9220478 ], + [ 9.3917442, 46.9219589 ], + [ 9.3920964, 46.9218934 ], + [ 9.3924492, 46.9218898 ], + [ 9.3927682, 46.9218134 ], + [ 9.3931027, 46.9217141 ], + [ 9.39364, 46.921455 ], + [ 9.3933899, 46.9212828 ], + [ 9.3931805, 46.921099 ], + [ 9.3929613, 46.92087 ], + [ 9.3928259, 46.9206685 ], + [ 9.39264, 46.9204335 ], + [ 9.392479699999999, 46.920221 ], + [ 9.3923947, 46.9200979 ], + [ 9.3923336, 46.9199518 ], + [ 9.3923472, 46.9198051 ], + [ 9.3924274, 46.9197086 ], + [ 9.3925408, 46.9196228 ], + [ 9.3926372, 46.9195204 ], + [ 9.3927661, 46.9194064 ], + [ 9.393010199999999, 46.9193024 ], + [ 9.3934756, 46.9191681 ], + [ 9.3941816, 46.9187664 ], + [ 9.3944091, 46.9186345 ], + [ 9.3945627, 46.9185258 ], + [ 9.3946351, 46.9184405 ], + [ 9.3946585, 46.9183614 ], + [ 9.3947229, 46.9183043 ], + [ 9.3948772, 46.918235 ], + [ 9.3950316, 46.918149 ], + [ 9.3951767, 46.9180067 ], + [ 9.3953457, 46.917847 ], + [ 9.395441, 46.9177165 ], + [ 9.3954798, 46.9176089 ], + [ 9.3955182, 46.9174677 ], + [ 9.3954907, 46.9173439 ], + [ 9.3954402, 46.9172654 ], + [ 9.3953487, 46.9172325 ], + [ 9.3952322, 46.9171661 ], + [ 9.3950747, 46.9171 ], + [ 9.39495, 46.9170337 ], + [ 9.3947679, 46.9169679 ], + [ 9.394659, 46.9168619 ], + [ 9.394485, 46.9168185 ], + [ 9.3942223, 46.9168155 ], + [ 9.3939509, 46.9168013 ], + [ 9.3937524, 46.9167357 ], + [ 9.3935286, 46.9166535 ], + [ 9.3932964, 46.9165656 ], + [ 9.3931469, 46.9164713 ], + [ 9.3931434, 46.9163303 ], + [ 9.3930591, 46.9162241 ], + [ 9.3930009, 46.9161795 ], + [ 9.3929654, 46.9160841 ], + [ 9.3927974, 46.9159111 ], + [ 9.3926797, 46.9157883 ], + [ 9.3925944, 46.9156313 ], + [ 9.3926073, 46.9154452 ], + [ 9.3927093, 46.9152467 ], + [ 9.3928217, 46.9151104 ], + [ 9.3929419, 46.9149852 ], + [ 9.3931524, 46.9148365 ], + [ 9.3933725, 46.9147497 ], + [ 9.393642, 46.914668 ], + [ 9.3938953, 46.9145923 ], + [ 9.3940911, 46.9145169 ], + [ 9.3938348, 46.9144631 ], + [ 9.3936118, 46.914426 ], + [ 9.3932833, 46.9143955 ], + [ 9.3929358, 46.914320000000004 ], + [ 9.3925972, 46.9142164 ], + [ 9.3923243, 46.9141346 ], + [ 9.392001, 46.9140251 ], + [ 9.3917279, 46.913915 ], + [ 9.391499, 46.913985 ], + [ 9.3913273, 46.9140037 ], + [ 9.391138, 46.9140112 ], + [ 9.3909985, 46.9140125 ], + [ 9.3908344, 46.9140142 ], + [ 9.3906874, 46.9140551 ], + [ 9.3905493, 46.9141186 ], + [ 9.3903206, 46.9141942 ], + [ 9.3901652, 46.9142295 ], + [ 9.3899607, 46.9142711 ], + [ 9.3897968, 46.9142784 ], + [ 9.3896321, 46.9142857 ], + [ 9.3895008, 46.9142869 ], + [ 9.3893944, 46.9142937 ], + [ 9.3892959, 46.9143171 ], + [ 9.389206099999999, 46.914352 ], + [ 9.3891083, 46.9143923 ], + [ 9.3890022, 46.9144103 ], + [ 9.388904, 46.9144169 ], + [ 9.3887721, 46.9144014 ], + [ 9.388608, 46.914403 ], + [ 9.3884763, 46.9144156 ], + [ 9.3883455, 46.9144507 ], + [ 9.3881664, 46.9145145 ], + [ 9.3878218, 46.9145406 ], + [ 9.3873868, 46.9145618 ], + [ 9.3871397, 46.9145361 ], + [ 9.3867036, 46.9145067 ], + [ 9.3863913, 46.9145155 ], + [ 9.3860301, 46.914536 ], + [ 9.3859142, 46.9144864 ], + [ 9.3857067, 46.9143984 ], + [ 9.3855414, 46.914321 ], + [ 9.3853096, 46.9142444 ], + [ 9.3850623, 46.9142131 ], + [ 9.3848876, 46.9141246 ], + [ 9.3845502, 46.9140772 ], + [ 9.3839487, 46.9140326 ], + [ 9.3834318, 46.9140377 ], + [ 9.3829798, 46.9140423 ], + [ 9.3825369, 46.9140974 ], + [ 9.3820605, 46.9141079 ], + [ 9.3817079, 46.9141396 ], + [ 9.3814206, 46.9141367 ], + [ 9.3811342, 46.9141847 ], + [ 9.3809217, 46.9142544 ], + [ 9.380726, 46.9143354 ], + [ 9.3805634, 46.914399 ], + [ 9.3803587, 46.9144574 ], + [ 9.3801292, 46.9144653 ], + [ 9.3799745, 46.9145233 ], + [ 9.3795937, 46.9147751 ], + [ 9.3794228, 46.9148838 ], + [ 9.379251, 46.9148969 ], + [ 9.3790795, 46.9149661 ], + [ 9.3789252, 46.9150354 ], + [ 9.3787205, 46.9150712 ], + [ 9.3785798, 46.9150389 ], + [ 9.3784079, 46.9150518 ], + [ 9.3783019, 46.9150924 ], + [ 9.378203599999999, 46.9151214 ], + [ 9.3781054, 46.915128 ], + [ 9.3779741, 46.9151294 ], + [ 9.37772, 46.9151826 ], + [ 9.3775981, 46.9152176 ], + [ 9.3774663, 46.9152021 ], + [ 9.3772929, 46.9151757 ], + [ 9.37703, 46.9151895 ], + [ 9.3768167, 46.9152141 ], + [ 9.3765866, 46.9151826 ], + [ 9.3764559, 46.9152234 ], + [ 9.3763254, 46.9152698 ], + [ 9.3761689, 46.915277 ], + [ 9.3760315, 46.9153573 ], + [ 9.3759008, 46.9154205 ], + [ 9.375680299999999, 46.9154735 ], + [ 9.3752585, 46.9157257 ], + [ 9.3750938, 46.9157105 ], + [ 9.3749623, 46.9157061 ], + [ 9.374766, 46.9157475 ], + [ 9.3746356, 46.9158165 ], + [ 9.3744493, 46.915931 ], + [ 9.3742536, 46.9159893 ], + [ 9.3741229, 46.9160526 ], + [ 9.3739846, 46.9161104 ], + [ 9.3738636, 46.9162131 ], + [ 9.3737823, 46.9162589 ], + [ 9.3737003, 46.9162597 ], + [ 9.3736016, 46.9162551 ], + [ 9.3734792, 46.9162958 ], + [ 9.3733569, 46.9163421 ], + [ 9.3732418, 46.9163601 ], + [ 9.3730775, 46.9163561 ], + [ 9.3728632, 46.9163301 ], + [ 9.3725502, 46.9162994 ], + [ 9.3722555, 46.9163418 ], + [ 9.3721646, 46.9163031 ], + [ 9.3719415, 46.9162603 ], + [ 9.371686799999999, 46.9162289 ], + [ 9.3713826, 46.9162376 ], + [ 9.370965, 46.9163094 ], + [ 9.3707198, 46.9163625 ], + [ 9.3705633, 46.9163698 ], + [ 9.370399, 46.9163657 ], + [ 9.3701291, 46.9164135 ], + [ 9.3698093, 46.9164448 ], + [ 9.3694247, 46.9165219 ], + [ 9.3691133, 46.9165814 ], + [ 9.3688918, 46.9165836 ], + [ 9.3685088, 46.9167282 ], + [ 9.3683287, 46.9167639 ], + [ 9.3682732, 46.9168659 ], + [ 9.368315, 46.9169105 ], + [ 9.3676621, 46.9171255 ], + [ 9.3675162, 46.917200199999996 ], + [ 9.3673611, 46.9172695 ], + [ 9.3672064, 46.9173273 ], + [ 9.3670423, 46.9173515 ], + [ 9.3669034, 46.9173923 ], + [ 9.3667645, 46.9174332 ], + [ 9.3665434, 46.9174466 ], + [ 9.3663711, 46.9174709 ], + [ 9.3660049, 46.9176491 ], + [ 9.365958299999999, 46.9177455 ], + [ 9.3658352, 46.9177917 ], + [ 9.3657633, 46.9178714 ], + [ 9.3657327, 46.9179788 ], + [ 9.3657177, 46.9180635 ], + [ 9.3656296, 46.9181489 ], + [ 9.3655414, 46.9182512 ], + [ 9.3654447, 46.9183707 ], + [ 9.3653572, 46.9184954 ], + [ 9.3652778, 46.9186372 ], + [ 9.3651001, 46.918763 ], + [ 9.36493, 46.9188717 ], + [ 9.3647432, 46.9189976 ], + [ 9.3646145, 46.919139799999996 ], + [ 9.3643393, 46.9193398 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "JBG0015", + "country" : "CHE", + "name" : [ + { + "text" : "Eidgenössisches Jagdbanngebiet Graue Hörner", + "lang" : "de-CH" + }, + { + "text" : "District franc fédéral Graue Hörner", + "lang" : "fr-CH" + }, + { + "text" : "Bandita federale di caccia Graue Hörner", + "lang" : "it-CH" + }, + { + "text" : "Federal Game Reserve Graue Hörner", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.3303479, 47.4416947 ], + [ 7.3303963, 47.4413867 ], + [ 7.3305877, 47.4413968 ], + [ 7.3307462, 47.4413972 ], + [ 7.3307877999999995, 47.4415163 ], + [ 7.3310166, 47.4414024 ], + [ 7.3312426, 47.4412884 ], + [ 7.3314376, 47.4412403 ], + [ 7.3315947, 47.4412301 ], + [ 7.3317082, 47.4412871 ], + [ 7.3318539, 47.441309 ], + [ 7.3322109, 47.4412466 ], + [ 7.3325724, 47.4410405 ], + [ 7.3326007, 47.4410381 ], + [ 7.3328729, 47.4410155 ], + [ 7.3329456, 47.4410377 ], + [ 7.3331292999999995, 47.4410351 ], + [ 7.333289, 47.4410446 ], + [ 7.3334202, 47.4410386 ], + [ 7.3335033, 47.4410363 ], + [ 7.3336493, 47.4410195 ], + [ 7.3338393, 47.4409913 ], + [ 7.3341914, 47.4409645 ], + [ 7.3342817, 47.4409581 ], + [ 7.3343755, 47.440936 ], + [ 7.3344044, 47.4409292 ], + [ 7.3350292, 47.4408528 ], + [ 7.3352135, 47.4408399 ], + [ 7.3354019, 47.4408316 ], + [ 7.3354644, 47.4408306 ], + [ 7.3356031999999995, 47.4408315 ], + [ 7.3356427, 47.4408281 ], + [ 7.3358357, 47.4408147 ], + [ 7.3360737, 47.4408006 ], + [ 7.3362842, 47.4407698 ], + [ 7.3365684, 47.4407474 ], + [ 7.3367678, 47.4407396 ], + [ 7.3370356, 47.4407484 ], + [ 7.3372065, 47.4407657 ], + [ 7.3372806, 47.4407768 ], + [ 7.337353, 47.4408003 ], + [ 7.3374681, 47.4408198 ], + [ 7.3376034, 47.4408554 ], + [ 7.337669, 47.4409024 ], + [ 7.3377513, 47.4409559 ], + [ 7.3378014, 47.4409779 ], + [ 7.3378584, 47.4409979 ], + [ 7.3379192, 47.4410031 ], + [ 7.3379908, 47.440998 ], + [ 7.3380413, 47.4409875 ], + [ 7.3380615, 47.4409756 ], + [ 7.3380980000000005, 47.4409508 ], + [ 7.3381492, 47.4409022 ], + [ 7.3382013, 47.4408513 ], + [ 7.3382557, 47.4407903 ], + [ 7.3383047999999995, 47.4407135 ], + [ 7.3383331, 47.4406468 ], + [ 7.3383545, 47.4406052 ], + [ 7.3383725, 47.4405942 ], + [ 7.3383821, 47.4405381 ], + [ 7.3384375, 47.4402126 ], + [ 7.3384867, 47.4401154 ], + [ 7.3386046, 47.4399001 ], + [ 7.3388623, 47.4395169 ], + [ 7.3387205, 47.4394393 ], + [ 7.3383253, 47.4398543 ], + [ 7.3379192, 47.439655 ], + [ 7.3376127, 47.4394617 ], + [ 7.3368696, 47.4390227 ], + [ 7.3364176, 47.4388963 ], + [ 7.3360546, 47.4387596 ], + [ 7.3354797, 47.4384539 ], + [ 7.3350521, 47.4382635 ], + [ 7.3347578, 47.4381574 ], + [ 7.3343537, 47.4379556 ], + [ 7.3328725, 47.4373909 ], + [ 7.332744, 47.4373233 ], + [ 7.3325476, 47.4373477 ], + [ 7.3316842, 47.4374032 ], + [ 7.3305474, 47.4372763 ], + [ 7.3300244, 47.4371253 ], + [ 7.3299653, 47.4371082 ], + [ 7.3297168, 47.4373102 ], + [ 7.3285007, 47.4372912 ], + [ 7.3280983, 47.4374697 ], + [ 7.3283528, 47.4377656 ], + [ 7.3284264, 47.4379296 ], + [ 7.3283878, 47.43807 ], + [ 7.3282446, 47.4382628 ], + [ 7.3281241999999995, 47.4383941 ], + [ 7.3280024, 47.4385745 ], + [ 7.3279455, 47.4387866 ], + [ 7.3279593, 47.4389268 ], + [ 7.3280538, 47.4391733 ], + [ 7.328177, 47.4393522 ], + [ 7.328023, 47.4397208 ], + [ 7.3282345, 47.4400047 ], + [ 7.3283122, 47.4400739 ], + [ 7.3286235, 47.4403412 ], + [ 7.3290075, 47.4406837 ], + [ 7.3289444, 47.4407282 ], + [ 7.3286664, 47.4409241 ], + [ 7.3287543, 47.4409142 ], + [ 7.3288673, 47.4409282 ], + [ 7.3289670000000005, 47.4409452 ], + [ 7.3291561, 47.4407898 ], + [ 7.3293665, 47.4406161 ], + [ 7.3295144, 47.4406686 ], + [ 7.3293776, 47.4408567 ], + [ 7.3292363, 47.4410509 ], + [ 7.3293061, 47.441081 ], + [ 7.3294546, 47.4411727 ], + [ 7.3294587, 47.4411752 ], + [ 7.3296691, 47.4412674 ], + [ 7.3297952, 47.4409805 ], + [ 7.329885, 47.4407721 ], + [ 7.3300598, 47.4408191 ], + [ 7.3299872, 47.4410381 ], + [ 7.3299766, 47.4410741 ], + [ 7.3298815, 47.4413522 ], + [ 7.3299834, 47.4413591 ], + [ 7.3298522, 47.4415959 ], + [ 7.3299119, 47.4416338 ], + [ 7.3301187, 47.4417025 ], + [ 7.3303479, 47.4416947 ] + ], + [ + [ 7.3309424, 47.4410461 ], + [ 7.3308042, 47.441084 ], + [ 7.3305333, 47.4411516 ], + [ 7.3306075, 47.4409695 ], + [ 7.3314070000000005, 47.440915 ], + [ 7.332151, 47.4408877 ], + [ 7.3325922, 47.4410186 ], + [ 7.3320637, 47.4410488 ], + [ 7.331565, 47.4411799 ], + [ 7.3313152, 47.4412425 ], + [ 7.3312102, 47.4412804 ], + [ 7.3310863, 47.4410092 ], + [ 7.3309424, 47.4410461 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns325", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Gebstelli", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Gebstelli", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Gebstelli", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Gebstelli", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5272151, 47.439788 ], + [ 7.5272480999999996, 47.4397984 ], + [ 7.5272809, 47.439809 ], + [ 7.5273135, 47.43982 ], + [ 7.5273458, 47.4398313 ], + [ 7.5274762, 47.4398636 ], + [ 7.5275428, 47.4398871 ], + [ 7.5276105, 47.4399091 ], + [ 7.5276793, 47.4399296 ], + [ 7.5284576, 47.4401518 ], + [ 7.529342, 47.4404049 ], + [ 7.5294297, 47.4402957 ], + [ 7.5289564, 47.440174999999996 ], + [ 7.5287977999999995, 47.4401338 ], + [ 7.5285423, 47.4400549 ], + [ 7.5285177999999995, 47.4400481 ], + [ 7.5281903, 47.4399446 ], + [ 7.5278675, 47.4398498 ], + [ 7.5275418, 47.4397569 ], + [ 7.5272869, 47.439684 ], + [ 7.5272151, 47.439788 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns059", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Hart", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Hart", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Hart", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Hart", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6972456000000005, 47.4543446 ], + [ 7.6971101, 47.4543642 ], + [ 7.696855, 47.4545162 ], + [ 7.6970577, 47.4548509 ], + [ 7.6972725, 47.4552056 ], + [ 7.6973164, 47.4551993 ], + [ 7.6973787, 47.4552032 ], + [ 7.6974157, 47.4552205 ], + [ 7.6974442, 47.455231 ], + [ 7.6974748, 47.4552418 ], + [ 7.6974966, 47.4552404 ], + [ 7.697532, 47.4552414 ], + [ 7.6977046, 47.4552488 ], + [ 7.6977014, 47.4550184 ], + [ 7.6976057, 47.4543365 ], + [ 7.6975336, 47.4543195 ], + [ 7.6974417, 47.4543211 ], + [ 7.6972456000000005, 47.4543446 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns093", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Stegmatten", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Stegmatten", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Stegmatten", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Stegmatten", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.3799548, 46.5549487 ], + [ 7.3796537, 46.5549161 ], + [ 7.3796917, 46.5547129 ], + [ 7.3789706, 46.5546666 ], + [ 7.3788762, 46.5551703 ], + [ 7.3795933, 46.5552489 ], + [ 7.379609, 46.5551842 ], + [ 7.3806795, 46.5552882 ], + [ 7.380875, 46.5541935 ], + [ 7.381566, 46.5542604 ], + [ 7.381638, 46.5539942 ], + [ 7.3809261, 46.5539165 ], + [ 7.3810796, 46.5530566 ], + [ 7.3820483, 46.5531533 ], + [ 7.3820343, 46.5528619 ], + [ 7.3818886, 46.5525955 ], + [ 7.3811741, 46.5525187 ], + [ 7.3816567, 46.5498635 ], + [ 7.3824286, 46.5499422 ], + [ 7.3824991, 46.5497992 ], + [ 7.3825293, 46.5496481 ], + [ 7.3824553, 46.5493035 ], + [ 7.3822483, 46.5489805 ], + [ 7.38201, 46.5487321 ], + [ 7.3817274, 46.5483586 ], + [ 7.3816389000000004, 46.5482254 ], + [ 7.3815114, 46.547996 ], + [ 7.3814113, 46.5477576 ], + [ 7.38128, 46.5473743 ], + [ 7.3807645, 46.5477878 ], + [ 7.3810447, 46.5479688 ], + [ 7.3811748, 46.5481982 ], + [ 7.3809716, 46.5492695 ], + [ 7.3796222, 46.5491438 ], + [ 7.3793212, 46.5489664 ], + [ 7.3789153, 46.5492972 ], + [ 7.3791225, 46.5494268 ], + [ 7.3790651, 46.5494718 ], + [ 7.3793322, 46.5496339 ], + [ 7.3795958, 46.5494217 ], + [ 7.3809191, 46.5495708 ], + [ 7.3799548, 46.5549487 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSTZ002", + "country" : "CHE", + "name" : [ + { + "text" : "LSTZ Zweisimmen (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSTZ Zweisimmen (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSTZ Zweisimmen (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSTZ Zweisimmen (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Flugplatzgenosenschaft Zweisimmen FGZ", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzgenosenschaft Zweisimmen FGZ", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzgenosenschaft Zweisimmen FGZ", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzgenosenschaft Zweisimmen FGZ", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Roland Ginggen", + "lang" : "de-CH" + }, + { + "text" : "Roland Ginggen", + "lang" : "fr-CH" + }, + { + "text" : "Roland Ginggen", + "lang" : "it-CH" + }, + { + "text" : "Roland Ginggen", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.zweisimmen.aero/modellflug-und-drohnen/", + "email" : "info@zweisimmen.aero", + "phone" : "0041337222577", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.568972, 47.419991 ], + [ 7.5685696, 47.4203485 ], + [ 7.5689939, 47.420403 ], + [ 7.5693553, 47.4202587 ], + [ 7.5696234, 47.4200609 ], + [ 7.5703668, 47.4196939 ], + [ 7.5705712, 47.4195315 ], + [ 7.5706869999999995, 47.4194247 ], + [ 7.5710892, 47.419137 ], + [ 7.5715435, 47.4189211 ], + [ 7.5721204, 47.4187854 ], + [ 7.572193, 47.418181 ], + [ 7.5724302, 47.4174577 ], + [ 7.5722185, 47.4174533 ], + [ 7.5717956, 47.4176253 ], + [ 7.5714752, 47.4178157 ], + [ 7.5709907, 47.4179599 ], + [ 7.5706086, 47.4180855 ], + [ 7.5703359, 47.4182387 ], + [ 7.5700764, 47.4182344 ], + [ 7.5700721, 47.4182407 ], + [ 7.569618, 47.4189075 ], + [ 7.5694966, 47.419455 ], + [ 7.568972, 47.419991 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr113", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Littstall", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Littstall", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Littstall", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Littstall", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.5304308, 47.374901 ], + [ 8.5304225, 47.3747599 ], + [ 8.5304033, 47.3746192 ], + [ 8.5303733, 47.3744794 ], + [ 8.5303325, 47.3743409 ], + [ 8.5302812, 47.374204 ], + [ 8.5302193, 47.3740691 ], + [ 8.5301472, 47.3739366 ], + [ 8.530065, 47.3738069 ], + [ 8.5299728, 47.3736803 ], + [ 8.5298711, 47.3735571 ], + [ 8.52976, 47.3734377 ], + [ 8.5296398, 47.3733224 ], + [ 8.5295109, 47.3732115 ], + [ 8.5293737, 47.3731053 ], + [ 8.5292285, 47.3730042 ], + [ 8.5290756, 47.3729084 ], + [ 8.5289156, 47.3728182 ], + [ 8.5287489, 47.3727338 ], + [ 8.5285759, 47.3726554 ], + [ 8.5283971, 47.3725832 ], + [ 8.528213, 47.3725176 ], + [ 8.5280241, 47.3724585 ], + [ 8.5278309, 47.3724063 ], + [ 8.5276339, 47.372361 ], + [ 8.5274337, 47.3723227 ], + [ 8.5272309, 47.3722917 ], + [ 8.5270259, 47.3722679 ], + [ 8.5268194, 47.3722514 ], + [ 8.5266119, 47.3722422 ], + [ 8.5264039, 47.3722405 ], + [ 8.5261961, 47.3722462 ], + [ 8.5259891, 47.3722592 ], + [ 8.5257833, 47.3722796 ], + [ 8.5255794, 47.3723072 ], + [ 8.5253779, 47.3723421 ], + [ 8.5251793, 47.3723841 ], + [ 8.5249843, 47.3724331 ], + [ 8.5247933, 47.372489 ], + [ 8.5246069, 47.3725515 ], + [ 8.5244255, 47.3726207 ], + [ 8.5242497, 47.3726961 ], + [ 8.52408, 47.3727778 ], + [ 8.5239168, 47.3728653 ], + [ 8.5237605, 47.3729585 ], + [ 8.5236117, 47.3730572 ], + [ 8.5234706, 47.373161 ], + [ 8.5233378, 47.3732697 ], + [ 8.5232135, 47.3733829 ], + [ 8.5230981, 47.3735004 ], + [ 8.5229919, 47.3736219 ], + [ 8.5228952, 47.3737469 ], + [ 8.5228083, 47.3738753 ], + [ 8.5227313, 47.3740065 ], + [ 8.5226646, 47.3741403 ], + [ 8.5226083, 47.3742763 ], + [ 8.5225626, 47.3744141 ], + [ 8.5225275, 47.3745534 ], + [ 8.5225032, 47.3746937 ], + [ 8.5224898, 47.3748346 ], + [ 8.5224872, 47.3749759 ], + [ 8.5224955, 47.375117 ], + [ 8.5225147, 47.3752577 ], + [ 8.5225447, 47.3753975 ], + [ 8.5225854, 47.375536 ], + [ 8.5226368, 47.3756729 ], + [ 8.5226986, 47.3758078 ], + [ 8.5227707, 47.3759403 ], + [ 8.5228529, 47.37607 ], + [ 8.522945, 47.3761967 ], + [ 8.5230468, 47.3763199 ], + [ 8.5231579, 47.3764393 ], + [ 8.5232781, 47.3765546 ], + [ 8.5234069, 47.3766655 ], + [ 8.5235442, 47.3767716 ], + [ 8.5236894, 47.3768728 ], + [ 8.5238422, 47.3769686 ], + [ 8.5240022, 47.3770588 ], + [ 8.5241689, 47.3771433 ], + [ 8.5243419, 47.3772216 ], + [ 8.5245208, 47.3772938 ], + [ 8.5247049, 47.3773595 ], + [ 8.5248938, 47.3774185 ], + [ 8.525087, 47.3774708 ], + [ 8.525284, 47.3775161 ], + [ 8.5254842, 47.3775543 ], + [ 8.5256871, 47.3775854 ], + [ 8.5258921, 47.3776092 ], + [ 8.5260986, 47.3776257 ], + [ 8.5263062, 47.3776348 ], + [ 8.5265141, 47.3776366 ], + [ 8.5267219, 47.3776309 ], + [ 8.526928999999999, 47.3776179 ], + [ 8.5271348, 47.3775975 ], + [ 8.5273387, 47.3775698 ], + [ 8.5275403, 47.3775349 ], + [ 8.5277388, 47.3774929 ], + [ 8.5279339, 47.3774439 ], + [ 8.5281249, 47.3773881 ], + [ 8.5283114, 47.3773255 ], + [ 8.5284927, 47.3772564 ], + [ 8.5286685, 47.3771809 ], + [ 8.5288383, 47.3770993 ], + [ 8.5290015, 47.3770117 ], + [ 8.5291577, 47.3769185 ], + [ 8.5293066, 47.3768198 ], + [ 8.5294476, 47.376716 ], + [ 8.5295805, 47.3766073 ], + [ 8.5297048, 47.3764941 ], + [ 8.5298202, 47.3763766 ], + [ 8.5299263, 47.3762551 ], + [ 8.530023, 47.37613 ], + [ 8.5301099, 47.3760017 ], + [ 8.5301868, 47.3758704 ], + [ 8.5302535, 47.3757366 ], + [ 8.5303098, 47.3756006 ], + [ 8.5303555, 47.3754628 ], + [ 8.5303906, 47.3753236 ], + [ 8.530414799999999, 47.3751833 ], + [ 8.5304283, 47.3750423 ], + [ 8.5304308, 47.374901 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "ZBG0001", + "country" : "CHE", + "name" : [ + { + "text" : "Gefängnis Zürich", + "lang" : "de-CH" + }, + { + "text" : "Gefängnis Zürich", + "lang" : "fr-CH" + }, + { + "text" : "Gefängnis Zürich", + "lang" : "it-CH" + }, + { + "text" : "Gefängnis Zürich", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "de-CH" + }, + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "fr-CH" + }, + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "it-CH" + }, + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "de-CH" + }, + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "fr-CH" + }, + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "it-CH" + }, + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Reno Berner", + "lang" : "de-CH" + }, + { + "text" : "Reno Berner", + "lang" : "fr-CH" + }, + { + "text" : "Reno Berner", + "lang" : "it-CH" + }, + { + "text" : "Reno Berner", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.zh.ch/de/direktion-der-justiz-und-des-innern/justizvollzug-wiedereingliederung.html", + "email" : "sicherheit-juwe@ji.zh.ch", + "phone" : "0041432583400", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT12H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6305733, 47.5007342 ], + [ 7.6304824, 47.5008559 ], + [ 7.6306088, 47.5009729 ], + [ 7.6307365, 47.5011164 ], + [ 7.6309149, 47.501208 ], + [ 7.6311782, 47.5013225 ], + [ 7.6313312, 47.5014257 ], + [ 7.6315943, 47.5015827 ], + [ 7.632, 47.5018567 ], + [ 7.6321509, 47.5019887 ], + [ 7.6322814999999995, 47.5021317 ], + [ 7.6323675, 47.5023023 ], + [ 7.6324486, 47.5025212 ], + [ 7.6324956, 47.5024955 ], + [ 7.6325479, 47.5024751 ], + [ 7.6325963, 47.5024651 ], + [ 7.6326466, 47.502461 ], + [ 7.6327346, 47.502461 ], + [ 7.6328221, 47.5024679 ], + [ 7.6331467, 47.5025171 ], + [ 7.6332492, 47.5025301 ], + [ 7.6333519, 47.5025418 ], + [ 7.6334565, 47.5025507 ], + [ 7.6335619, 47.5025526 ], + [ 7.6336262999999995, 47.502549 ], + [ 7.6336899, 47.5025413 ], + [ 7.6337521, 47.5025293 ], + [ 7.6338123, 47.5025132 ], + [ 7.6338477000000005, 47.5024985 ], + [ 7.6338814, 47.5024819 ], + [ 7.6339428, 47.5024439 ], + [ 7.6340594, 47.5023678 ], + [ 7.634108, 47.5023441 ], + [ 7.6341594, 47.5023233 ], + [ 7.6342132, 47.5023056 ], + [ 7.634269, 47.502291 ], + [ 7.6344978, 47.5022405 ], + [ 7.6345856, 47.5022182 ], + [ 7.6346691, 47.5021894 ], + [ 7.6347474, 47.5021544 ], + [ 7.6348194, 47.5021137 ], + [ 7.6348672, 47.5020775 ], + [ 7.63491, 47.5020386 ], + [ 7.6349475, 47.5019972 ], + [ 7.6349792, 47.5019536 ], + [ 7.6350325, 47.5018762 ], + [ 7.6350776, 47.5017963 ], + [ 7.6352525, 47.5014515 ], + [ 7.6353235, 47.501308 ], + [ 7.635395, 47.5011647 ], + [ 7.6355508, 47.500881 ], + [ 7.6355728, 47.5008622 ], + [ 7.635592, 47.500842 ], + [ 7.6356082, 47.5008206 ], + [ 7.6356212, 47.5007984 ], + [ 7.6356285, 47.5007789 ], + [ 7.6356327, 47.500759 ], + [ 7.635634, 47.5007389 ], + [ 7.6356322, 47.5007188 ], + [ 7.6356322, 47.5007187 ], + [ 7.6356315, 47.5007146 ], + [ 7.6356307999999995, 47.5007112 ], + [ 7.6354669, 47.5007309 ], + [ 7.6349456, 47.5007938 ], + [ 7.6347728, 47.5008147 ], + [ 7.6343216, 47.5008332 ], + [ 7.6337769, 47.5008555 ], + [ 7.6335614, 47.5008643 ], + [ 7.6333161, 47.5009414 ], + [ 7.6331366, 47.5009978 ], + [ 7.6329408999999995, 47.5010593 ], + [ 7.6329364, 47.5010627 ], + [ 7.6329073, 47.5010549 ], + [ 7.6326422, 47.5009839 ], + [ 7.6323098, 47.5008949 ], + [ 7.6320762, 47.5008323 ], + [ 7.6319157, 47.5007791 ], + [ 7.6315579, 47.5006605 ], + [ 7.6313906, 47.500605 ], + [ 7.6311271, 47.500559 ], + [ 7.6310167, 47.5005398 ], + [ 7.6308635, 47.5005131 ], + [ 7.6308213, 47.5005323 ], + [ 7.6306742, 47.500599 ], + [ 7.6305733, 47.5007342 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr050", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Meierten", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Meierten", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Meierten", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Meierten", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7183288, 47.5348197 ], + [ 7.7183875, 47.5347999 ], + [ 7.7185366, 47.5347496 ], + [ 7.7187391, 47.5346802 ], + [ 7.7187631, 47.5346736 ], + [ 7.7187873, 47.5346676 ], + [ 7.7188118, 47.5346622 ], + [ 7.7188365999999995, 47.5346573 ], + [ 7.7188617, 47.534653 ], + [ 7.7188869, 47.5346493 ], + [ 7.7189122999999995, 47.5346461 ], + [ 7.7189353, 47.5346438 ], + [ 7.7189584, 47.534642 ], + [ 7.7189816, 47.5346407 ], + [ 7.7190048, 47.5346398 ], + [ 7.7190281, 47.5346394 ], + [ 7.7190514, 47.5346396 ], + [ 7.7190746, 47.5346402 ], + [ 7.7190978, 47.5346412 ], + [ 7.7191157, 47.5346431 ], + [ 7.7191335, 47.5346456 ], + [ 7.719151, 47.5346487 ], + [ 7.7191683, 47.5346525 ], + [ 7.7191852, 47.5346568 ], + [ 7.7192019, 47.5346616 ], + [ 7.7192181, 47.5346671 ], + [ 7.719234, 47.534673 ], + [ 7.7192492999999995, 47.5346795 ], + [ 7.7192642, 47.5346866 ], + [ 7.7192783, 47.5346941 ], + [ 7.7192918, 47.534702 ], + [ 7.7193047, 47.5347105 ], + [ 7.719317, 47.5347193 ], + [ 7.7193286, 47.5347285 ], + [ 7.7193395, 47.5347382 ], + [ 7.7193497, 47.5347481 ], + [ 7.7193591999999995, 47.5347585 ], + [ 7.7193679, 47.5347691 ], + [ 7.7193758, 47.53478 ], + [ 7.7193844, 47.5347928 ], + [ 7.7193923, 47.5348058 ], + [ 7.7193995, 47.534819 ], + [ 7.7194061, 47.5348323 ], + [ 7.7194119, 47.5348458 ], + [ 7.719417, 47.5348594 ], + [ 7.7194214, 47.5348731 ], + [ 7.7194251, 47.534887 ], + [ 7.7194281, 47.5349009 ], + [ 7.7194302, 47.5349147 ], + [ 7.7194316, 47.5349285 ], + [ 7.7194323, 47.5349424 ], + [ 7.7194323, 47.5349563 ], + [ 7.7194316, 47.5349702 ], + [ 7.7194301, 47.534984 ], + [ 7.719428, 47.5349978 ], + [ 7.7193584, 47.5351206 ], + [ 7.7193191, 47.5351851 ], + [ 7.7192241, 47.5353009 ], + [ 7.7191713, 47.5353672 ], + [ 7.7191374, 47.535427 ], + [ 7.7190842, 47.5354998 ], + [ 7.7190255, 47.5355573 ], + [ 7.7190171, 47.5355663 ], + [ 7.7190405, 47.535569100000004 ], + [ 7.7189805, 47.5356567 ], + [ 7.7189575, 47.5356536 ], + [ 7.7189559, 47.535656 ], + [ 7.7188877, 47.5356466 ], + [ 7.7188829, 47.5356522 ], + [ 7.7188615, 47.5356851 ], + [ 7.7187331, 47.5358451 ], + [ 7.7186942, 47.5358726 ], + [ 7.7186294, 47.5358963 ], + [ 7.7185308, 47.535901 ], + [ 7.7185062, 47.5359045 ], + [ 7.7184666, 47.5359127 ], + [ 7.7184283, 47.5359192 ], + [ 7.7183755, 47.5359314 ], + [ 7.7183227, 47.5359371 ], + [ 7.7182364, 47.5359484 ], + [ 7.718125, 47.5359615 ], + [ 7.7179006, 47.5359576 ], + [ 7.7177477, 47.5359455 ], + [ 7.717541, 47.5358054 ], + [ 7.7175268, 47.5358019 ], + [ 7.7174768, 47.5357867 ], + [ 7.7174286, 47.535769 ], + [ 7.7172981, 47.5357036 ], + [ 7.7172281, 47.5356752 ], + [ 7.7171594, 47.5356565 ], + [ 7.7170156, 47.5356175 ], + [ 7.7169402, 47.5356034 ], + [ 7.7168634, 47.5355932 ], + [ 7.7167857, 47.535587 ], + [ 7.7167599, 47.5355864 ], + [ 7.7167341, 47.5355876 ], + [ 7.7167086, 47.5355905 ], + [ 7.7166477, 47.5355987 ], + [ 7.7165865, 47.5356053 ], + [ 7.7165249, 47.5356103 ], + [ 7.7164971, 47.5356121 ], + [ 7.7164392, 47.5356146 ], + [ 7.7163813999999995, 47.5356157 ], + [ 7.7163234, 47.5356154 ], + [ 7.7162495, 47.5356243 ], + [ 7.7162306, 47.5356266 ], + [ 7.7162119, 47.5356293 ], + [ 7.7161932, 47.5356322 ], + [ 7.7161661, 47.5356371 ], + [ 7.7161392, 47.5356425 ], + [ 7.7161127, 47.5356486 ], + [ 7.7160672, 47.5356562 ], + [ 7.7160228, 47.5356663 ], + [ 7.7159663, 47.535683399999996 ], + [ 7.7159251, 47.5356992 ], + [ 7.7158922, 47.5357143 ], + [ 7.7158609, 47.5357309 ], + [ 7.7157845, 47.5357721 ], + [ 7.7156814, 47.5358317 ], + [ 7.7156021, 47.5358828 ], + [ 7.7155116, 47.5359393 ], + [ 7.7153808, 47.536007 ], + [ 7.7153086, 47.5360552 ], + [ 7.7152367, 47.5361035 ], + [ 7.7151651, 47.5361521 ], + [ 7.7151399, 47.5361693 ], + [ 7.7151147, 47.5361865 ], + [ 7.7150896, 47.5362037 ], + [ 7.7149739, 47.5363103 ], + [ 7.7147922, 47.5364794 ], + [ 7.7147099, 47.536566 ], + [ 7.7146628, 47.5366259 ], + [ 7.7146172, 47.5366863 ], + [ 7.714573, 47.5367473 ], + [ 7.714525, 47.5368165 ], + [ 7.7144788, 47.5368863 ], + [ 7.7144345, 47.5369567 ], + [ 7.7143672, 47.5370415 ], + [ 7.7143577, 47.537078 ], + [ 7.7143239999999995, 47.5371187 ], + [ 7.7142937, 47.537168199999996 ], + [ 7.7142712, 47.5372118 ], + [ 7.7142474, 47.5372415 ], + [ 7.7142219999999995, 47.5372706 ], + [ 7.714195, 47.537299 ], + [ 7.7141735, 47.5373201 ], + [ 7.7141512, 47.5373408 ], + [ 7.714128, 47.5373611 ], + [ 7.7140958, 47.5373883 ], + [ 7.7140914, 47.5373969 ], + [ 7.7141874, 47.537417 ], + [ 7.7141501, 47.5374606 ], + [ 7.7140909, 47.5375311 ], + [ 7.7140535, 47.5375732 ], + [ 7.7140204, 47.5376175 ], + [ 7.714012, 47.5376277 ], + [ 7.7140035000000005, 47.5376378 ], + [ 7.7139949, 47.5376479 ], + [ 7.7139658, 47.5376807 ], + [ 7.7139585, 47.537688 ], + [ 7.7139512, 47.5376953 ], + [ 7.7139399, 47.537701 ], + [ 7.713928, 47.5377145 ], + [ 7.7138877, 47.5377529 ], + [ 7.713872, 47.5377601 ], + [ 7.7138582, 47.5377679 ], + [ 7.7138432, 47.5377606 ], + [ 7.7137735, 47.5378196 ], + [ 7.7136866, 47.5378931 ], + [ 7.7136807, 47.5378972 ], + [ 7.7136568, 47.5379141 ], + [ 7.7136439, 47.537924 ], + [ 7.7136297, 47.5379332 ], + [ 7.7136109, 47.5379432 ], + [ 7.713591, 47.5379516 ], + [ 7.7135701, 47.5379585 ], + [ 7.7135481, 47.5379639 ], + [ 7.7135255, 47.5379678 ], + [ 7.7135088, 47.5379695 ], + [ 7.7134855, 47.5379705 ], + [ 7.7134623, 47.5379699 ], + [ 7.7134393, 47.5379676 ], + [ 7.7134858, 47.5380322 ], + [ 7.7141376, 47.5383826 ], + [ 7.71415, 47.5383568 ], + [ 7.7145494, 47.5375223 ], + [ 7.7148777, 47.5365528 ], + [ 7.7159645999999995, 47.5358264 ], + [ 7.716687, 47.5357554 ], + [ 7.7183013, 47.536112 ], + [ 7.7187189, 47.5359863 ], + [ 7.7188891, 47.5360927 ], + [ 7.7189496, 47.5360335 ], + [ 7.7190905999999995, 47.5358954 ], + [ 7.7191297, 47.5358833 ], + [ 7.7191485, 47.5358544 ], + [ 7.719158, 47.535825 ], + [ 7.7191892, 47.5357289 ], + [ 7.7192061, 47.5356883 ], + [ 7.7192728, 47.535594 ], + [ 7.7193376, 47.5355289 ], + [ 7.7193533, 47.5355199 ], + [ 7.7193725, 47.5354991 ], + [ 7.719384, 47.5354868 ], + [ 7.7194304, 47.535436 ], + [ 7.7194467, 47.5354178 ], + [ 7.7194787, 47.535382 ], + [ 7.7194794, 47.5353813 ], + [ 7.7195066, 47.5353372 ], + [ 7.7195548, 47.5352837 ], + [ 7.7195709, 47.5352617 ], + [ 7.7195977, 47.5352391 ], + [ 7.7196123, 47.5352037 ], + [ 7.7196161, 47.5352 ], + [ 7.71967, 47.5351467 ], + [ 7.7196853, 47.5351316 ], + [ 7.7196827, 47.5350776 ], + [ 7.7196711, 47.5350473 ], + [ 7.7196631, 47.5350369 ], + [ 7.719661, 47.5350235 ], + [ 7.7196525, 47.5350053 ], + [ 7.7196527, 47.5349897 ], + [ 7.7196363, 47.5349675 ], + [ 7.7196438, 47.534954 ], + [ 7.7196334, 47.5349372 ], + [ 7.7196283999999995, 47.5349148 ], + [ 7.719663, 47.5348767 ], + [ 7.7196808, 47.53485 ], + [ 7.7196612, 47.5348404 ], + [ 7.7196561, 47.5348067 ], + [ 7.7196466, 47.5347891 ], + [ 7.7196222, 47.5347646 ], + [ 7.7196381, 47.5347536 ], + [ 7.7196242999999996, 47.5347185 ], + [ 7.7196147, 47.5347129 ], + [ 7.7195981, 47.5346992 ], + [ 7.7195573, 47.5346799 ], + [ 7.7195285, 47.5346623 ], + [ 7.719468, 47.5346359 ], + [ 7.7194522, 47.5346199 ], + [ 7.7194272, 47.5346037 ], + [ 7.7193442, 47.53455 ], + [ 7.7193283, 47.5345429 ], + [ 7.7193037, 47.5345362 ], + [ 7.7191561, 47.5344958 ], + [ 7.7189726, 47.5344749 ], + [ 7.7188592, 47.5344748 ], + [ 7.7186945, 47.534496 ], + [ 7.7186388, 47.5345144 ], + [ 7.7186157, 47.5344824 ], + [ 7.718264, 47.5346181 ], + [ 7.7182344, 47.5346266 ], + [ 7.7174735, 47.5348431 ], + [ 7.7173067, 47.5348059 ], + [ 7.7171213, 47.5347411 ], + [ 7.7170082, 47.5346364 ], + [ 7.7169905, 47.5345582 ], + [ 7.7165616, 47.534281 ], + [ 7.7165314, 47.5342586 ], + [ 7.716498, 47.5341371 ], + [ 7.716382, 47.5335522 ], + [ 7.7165637, 47.5333372 ], + [ 7.716699, 47.5331773 ], + [ 7.7167404, 47.5331831 ], + [ 7.7168026, 47.5331027 ], + [ 7.7169068, 47.5328511 ], + [ 7.7169833, 47.5325737 ], + [ 7.7169343999999995, 47.5323426 ], + [ 7.7167693, 47.5320328 ], + [ 7.7166243, 47.5318481 ], + [ 7.7162676, 47.5315171 ], + [ 7.7159039, 47.5311797 ], + [ 7.7155927, 47.5308511 ], + [ 7.7155024, 47.5306034 ], + [ 7.715467, 47.5303225 ], + [ 7.7157321, 47.5297755 ], + [ 7.7162162, 47.5294124 ], + [ 7.7173117, 47.5287334 ], + [ 7.7181814, 47.5281109 ], + [ 7.7183969999999995, 47.5277805 ], + [ 7.7184346, 47.5274154 ], + [ 7.7183527, 47.5270171 ], + [ 7.7182416, 47.5267891 ], + [ 7.7181414, 47.5265232 ], + [ 7.7181066, 47.5260436 ], + [ 7.7182337, 47.5256977 ], + [ 7.7184611, 47.5253308 ], + [ 7.7189355, 47.5247853 ], + [ 7.7195949, 47.5234625 ], + [ 7.7197833, 47.5232311 ], + [ 7.7205166, 47.5228349 ], + [ 7.7206192, 47.522799 ], + [ 7.7206543, 47.5227589 ], + [ 7.7208503, 47.5226328 ], + [ 7.720908, 47.5225042 ], + [ 7.7209429, 47.5221945 ], + [ 7.7208366, 47.5220804 ], + [ 7.7208306, 47.5218762 ], + [ 7.7205165000000004, 47.521967599999996 ], + [ 7.720133, 47.5219792 ], + [ 7.7200194, 47.5219723 ], + [ 7.7200105, 47.522017 ], + [ 7.7199256, 47.522059 ], + [ 7.7198758, 47.5221035 ], + [ 7.719851, 47.5221565 ], + [ 7.7197892, 47.522313 ], + [ 7.7197137, 47.5224401 ], + [ 7.7196087, 47.5225805 ], + [ 7.719416, 47.5227772 ], + [ 7.7193089, 47.5228923 ], + [ 7.7192432, 47.5229871 ], + [ 7.7191868, 47.5231028 ], + [ 7.7190354, 47.5234434 ], + [ 7.7188503, 47.5238811 ], + [ 7.7186801, 47.5242827 ], + [ 7.7186323, 47.5243707 ], + [ 7.7185352, 47.5245005 ], + [ 7.7183124, 47.5247557 ], + [ 7.7180428, 47.5250848 ], + [ 7.7179266, 47.5252474 ], + [ 7.7177817, 47.5255055 ], + [ 7.717655, 47.525744 ], + [ 7.7175934, 47.5258922 ], + [ 7.7175524, 47.5260882 ], + [ 7.7175747, 47.526353 ], + [ 7.7176378, 47.5266001 ], + [ 7.7177273, 47.5268847 ], + [ 7.7177298, 47.5269 ], + [ 7.7177459, 47.5269946 ], + [ 7.7177491, 47.5270386 ], + [ 7.7177469, 47.5270826 ], + [ 7.7177394, 47.5271264 ], + [ 7.7177264999999995, 47.5271695 ], + [ 7.7177013, 47.5272534 ], + [ 7.7177222, 47.5272721 ], + [ 7.7176019, 47.5276999 ], + [ 7.717526, 47.5278496 ], + [ 7.7173579, 47.5280884 ], + [ 7.7172394, 47.5282182 ], + [ 7.7169212, 47.5285026 ], + [ 7.7166239999999995, 47.5287439 ], + [ 7.7164532999999995, 47.5288687 ], + [ 7.7162329, 47.529014 ], + [ 7.7161299, 47.5290985 ], + [ 7.7160129, 47.5291711 ], + [ 7.7158697, 47.5292484 ], + [ 7.7154978, 47.5295251 ], + [ 7.7151807, 47.5298199 ], + [ 7.7151037, 47.529914 ], + [ 7.7150607, 47.5300078 ], + [ 7.7150467, 47.5301038 ], + [ 7.7150562, 47.5303204 ], + [ 7.715096, 47.5306466 ], + [ 7.7151513, 47.5308381 ], + [ 7.7152557999999996, 47.5310162 ], + [ 7.7155014, 47.5313361 ], + [ 7.7158659, 47.5317855 ], + [ 7.7160673, 47.5320388 ], + [ 7.7160845, 47.5320181 ], + [ 7.7161159, 47.5320586 ], + [ 7.7161611, 47.5321234 ], + [ 7.7161937, 47.532174 ], + [ 7.7162182, 47.5321668 ], + [ 7.7162236, 47.5321746 ], + [ 7.7162295, 47.5321822 ], + [ 7.7162361, 47.5321895 ], + [ 7.7162433, 47.5321966 ], + [ 7.7162509, 47.5322035 ], + [ 7.7162591, 47.53221 ], + [ 7.7162679, 47.5322163 ], + [ 7.7162772, 47.5322222 ], + [ 7.7162869, 47.5322277 ], + [ 7.7162971, 47.5322329 ], + [ 7.7163076, 47.5322378 ], + [ 7.7163185, 47.5322422 ], + [ 7.7163298000000005, 47.5322463 ], + [ 7.7163413, 47.5322499 ], + [ 7.7166194, 47.5323322 ], + [ 7.7166571, 47.5324431 ], + [ 7.7166556, 47.5324558 ], + [ 7.7164812, 47.5324043 ], + [ 7.7164725, 47.532402 ], + [ 7.7164636, 47.5324003 ], + [ 7.7164544, 47.5323991 ], + [ 7.7164452, 47.5323985 ], + [ 7.7164359000000005, 47.5323984 ], + [ 7.7164266, 47.5323988 ], + [ 7.7164174, 47.5323998 ], + [ 7.7164084, 47.5324014 ], + [ 7.7163996, 47.5324034 ], + [ 7.7163911, 47.532406 ], + [ 7.716383, 47.5324091 ], + [ 7.7163753, 47.5324126 ], + [ 7.716368, 47.5324166 ], + [ 7.7163613, 47.532421 ], + [ 7.7163552, 47.5324258 ], + [ 7.7163498, 47.532431 ], + [ 7.7163450000000005, 47.5324364 ], + [ 7.7163409, 47.5324421 ], + [ 7.7163376, 47.5324481 ], + [ 7.7163351, 47.5324542 ], + [ 7.7163334, 47.5324604 ], + [ 7.7163325, 47.5324667 ], + [ 7.7163325, 47.532473 ], + [ 7.7163332, 47.5324793 ], + [ 7.7163378, 47.5325061 ], + [ 7.7163415, 47.5325329 ], + [ 7.7163445, 47.5325598 ], + [ 7.7163466, 47.5325867 ], + [ 7.7163478, 47.5326137 ], + [ 7.7163483, 47.5326406 ], + [ 7.7163479, 47.5326675 ], + [ 7.7163467, 47.5326945 ], + [ 7.7163447, 47.5327214 ], + [ 7.7163419, 47.5327483 ], + [ 7.7163383, 47.5327751 ], + [ 7.7163338, 47.5328019 ], + [ 7.7163284999999995, 47.5328286 ], + [ 7.7163224, 47.5328552 ], + [ 7.7163154, 47.5328818 ], + [ 7.7163077, 47.5329082 ], + [ 7.7162991, 47.5329346 ], + [ 7.7162898, 47.5329608 ], + [ 7.7162796, 47.5329868 ], + [ 7.7162687, 47.5330128 ], + [ 7.7161659, 47.5332037 ], + [ 7.7159682, 47.533516 ], + [ 7.7158086, 47.5337443 ], + [ 7.7157577, 47.53383 ], + [ 7.7157376, 47.533866 ], + [ 7.7157425, 47.5339701 ], + [ 7.7158021, 47.534132 ], + [ 7.7158774, 47.5342548 ], + [ 7.7158978, 47.5342685 ], + [ 7.7163214, 47.5345546 ], + [ 7.7165248, 47.5347026 ], + [ 7.7166597, 47.5348183 ], + [ 7.7167376999999995, 47.5347769 ], + [ 7.7167437, 47.5347817 ], + [ 7.7169805, 47.5349104 ], + [ 7.7172105, 47.5349973 ], + [ 7.7172646, 47.5350063 ], + [ 7.7173104, 47.5350139 ], + [ 7.7174159, 47.5350129 ], + [ 7.7179155999999995, 47.5349506 ], + [ 7.7180504, 47.5349111 ], + [ 7.7183288, 47.5348197 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns028", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Ergolz", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Ergolz", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Ergolz", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Ergolz", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.2950445, 46.4249141 ], + [ 6.2951806, 46.4248409 ], + [ 6.2952047, 46.4249902 ], + [ 6.2952556, 46.4251212 ], + [ 6.295417, 46.4251415 ], + [ 6.295634, 46.4250691 ], + [ 6.2957705, 46.424996 ], + [ 6.2959335, 46.4249416 ], + [ 6.2961493, 46.4249253 ], + [ 6.2963663, 46.4248528 ], + [ 6.2965853, 46.4247059 ], + [ 6.296971, 46.42448 ], + [ 6.3071159, 46.4171992 ], + [ 6.3065208, 46.416788 ], + [ 6.306341, 46.4166781 ], + [ 6.3062254, 46.4166083 ], + [ 6.3058818, 46.4164368 ], + [ 6.3056086, 46.4162423 ], + [ 6.305257, 46.4160667 ], + [ 6.3052798, 46.4157154 ], + [ 6.3050943, 46.413956 ], + [ 6.3050336, 46.4137484 ], + [ 6.3049513, 46.4134282 ], + [ 6.3047939, 46.4128689 ], + [ 6.3044522, 46.4119077 ], + [ 6.3041793, 46.4112752 ], + [ 6.3032366, 46.4096311 ], + [ 6.3030723, 46.4094044 ], + [ 6.3027704, 46.4090103 ], + [ 6.3026976, 46.4089363 ], + [ 6.3024088, 46.4085599 ], + [ 6.3022635, 46.4083754 ], + [ 6.3011847, 46.407276 ], + [ 6.3010321, 46.4068583 ], + [ 6.299988, 46.4052488 ], + [ 6.2985561, 46.4037891 ], + [ 6.2971919, 46.4028178 ], + [ 6.2974052, 46.4022976 ], + [ 6.2976644, 46.4005426 ], + [ 6.2976129, 46.3995351 ], + [ 6.297524, 46.3988144 ], + [ 6.2970618, 46.3970116 ], + [ 6.2968986000000005, 46.3965978 ], + [ 6.2968247999999996, 46.3958977 ], + [ 6.2964928, 46.3949882 ], + [ 6.2963198, 46.3944468 ], + [ 6.2960148, 46.3937626 ], + [ 6.2949712, 46.392153 ], + [ 6.2935397, 46.3906933 ], + [ 6.2917632, 46.3894279 ], + [ 6.2914838, 46.3892881 ], + [ 6.2905891, 46.3886944 ], + [ 6.290242, 46.388511 ], + [ 6.2894714, 46.3882339 ], + [ 6.2893767, 46.388125 ], + [ 6.2886714999999995, 46.3873884 ], + [ 6.2884174, 46.3871469 ], + [ 6.2877782, 46.3861603 ], + [ 6.286347, 46.3847005 ], + [ 6.2856591, 46.3842103 ], + [ 6.2852834, 46.3838243 ], + [ 6.2850917, 46.3836694 ], + [ 6.2835488, 46.3825968 ], + [ 6.2814827, 46.3815638 ], + [ 6.2791889, 46.3807947 ], + [ 6.2767365999999996, 46.380313 ], + [ 6.2742011, 46.3801331 ], + [ 6.271659, 46.3802607 ], + [ 6.2705772, 46.3804104 ], + [ 6.2699641, 46.380512 ], + [ 6.2683206, 46.3809168 ], + [ 6.2677503, 46.3808763 ], + [ 6.2652082, 46.3810038 ], + [ 6.2627362, 46.3814347 ], + [ 6.2621099000000005, 46.3815963 ], + [ 6.261953, 46.3816399 ], + [ 6.2614608, 46.381802 ], + [ 6.2612531, 46.3816707 ], + [ 6.2611926, 46.381093 ], + [ 6.2605699, 46.3793825 ], + [ 6.2595275, 46.3777727 ], + [ 6.2592053, 46.3774438 ], + [ 6.2469317, 46.3841448 ], + [ 6.2469434, 46.3841681 ], + [ 6.2469145, 46.384209 ], + [ 6.2466367, 46.3842778 ], + [ 6.2460205, 46.384532899999996 ], + [ 6.2459012, 46.3846526 ], + [ 6.2459855, 46.3847943 ], + [ 6.2461251, 46.3850574 ], + [ 6.2465117, 46.3860075 ], + [ 6.246843, 46.3868162 ], + [ 6.2469835, 46.3870391 ], + [ 6.2471537999999995, 46.3872221 ], + [ 6.2474385, 46.3875069 ], + [ 6.2480685, 46.3879563 ], + [ 6.2486684, 46.3884659 ], + [ 6.2492686, 46.3889452 ], + [ 6.2506126, 46.390006 ], + [ 6.2535021, 46.3922504 ], + [ 6.255617, 46.3939834 ], + [ 6.2603074, 46.3976857 ], + [ 6.2625672, 46.3994806 ], + [ 6.2643688, 46.4009184 ], + [ 6.2662288, 46.4023667 ], + [ 6.2668575, 46.4028966 ], + [ 6.2672283, 46.4032427 ], + [ 6.267629, 46.4035487 ], + [ 6.2678544, 46.4038933 ], + [ 6.2680523, 46.4041569 ], + [ 6.2682485, 46.4045013 ], + [ 6.2684438, 46.4048856 ], + [ 6.2687756, 46.4057043 ], + [ 6.26894, 46.406169 ], + [ 6.2691956, 46.4064535 ], + [ 6.2694787, 46.4068187 ], + [ 6.2698501, 46.4071446 ], + [ 6.2708802, 46.4079604 ], + [ 6.2717074, 46.4087338 ], + [ 6.2733358, 46.4101394 ], + [ 6.274609, 46.4112474 ], + [ 6.2763549, 46.4127752 ], + [ 6.2782595, 46.4144351 ], + [ 6.2799804, 46.415888 ], + [ 6.2824684, 46.4180105 ], + [ 6.284427, 46.4197083 ], + [ 6.286465, 46.4214626 ], + [ 6.287154, 46.4220194 ], + [ 6.2875786, 46.4223407 ], + [ 6.2880828, 46.4226999 ], + [ 6.289307, 46.4234394 ], + [ 6.2900784, 46.4239318 ], + [ 6.2909019, 46.4244995 ], + [ 6.2917533, 46.4250299 ], + [ 6.2920457, 46.4252192 ], + [ 6.2923665, 46.4253531 ], + [ 6.2927398, 46.4255432 ], + [ 6.2933542, 46.4258104 ], + [ 6.2940491, 46.426097 ], + [ 6.2954921, 46.4266894 ], + [ 6.2956302, 46.4265417 ], + [ 6.2957138, 46.4264121 ], + [ 6.2956878, 46.4263559 ], + [ 6.2955808, 46.4263175 ], + [ 6.2953654, 46.4263153 ], + [ 6.2952316, 46.4262581 ], + [ 6.2952352, 46.4260904 ], + [ 6.2952407, 46.4258294 ], + [ 6.295028, 46.4256968 ], + [ 6.2948402, 46.4256577 ], + [ 6.2947344, 46.4255447 ], + [ 6.2947375, 46.4253956 ], + [ 6.2948484, 46.4252663 ], + [ 6.2950445, 46.4249141 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "WZV0026", + "country" : "CHE", + "name" : [ + { + "text" : "Wasser- und Zugvogelreservat Pointe de Promenthoux", + "lang" : "de-CH" + }, + { + "text" : "Réserve d'oiseaux d'eau et de migrateurs Pointe de Promenthoux", + "lang" : "fr-CH" + }, + { + "text" : "Riserva di uccelli acquatici e migratori Pointe de Promenthoux", + "lang" : "it-CH" + }, + { + "text" : "Water Bird and Migratory Bird Reserves Pointe de Promenthoux", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.0621243, 47.3662483 ], + [ 9.0621146, 47.3661072 ], + [ 9.062094, 47.3659667 ], + [ 9.0620626, 47.365827 ], + [ 9.0620205, 47.3656887 ], + [ 9.0619678, 47.365552 ], + [ 9.0619046, 47.3654174 ], + [ 9.0618312, 47.3652853 ], + [ 9.0617476, 47.3651559 ], + [ 9.0616543, 47.3650297 ], + [ 9.0615513, 47.364907 ], + [ 9.061439, 47.3647881 ], + [ 9.0613178, 47.3646733 ], + [ 9.0611878, 47.3645631 ], + [ 9.0610495, 47.3644576 ], + [ 9.0609033, 47.3643571 ], + [ 9.0607496, 47.364262 ], + [ 9.0605887, 47.3641725 ], + [ 9.0604212, 47.3640889 ], + [ 9.0602474, 47.3640113 ], + [ 9.060068, 47.36394 ], + [ 9.0598832, 47.3638751 ], + [ 9.0596938, 47.363817 ], + [ 9.0595001, 47.3637656 ], + [ 9.0593027, 47.3637212 ], + [ 9.0591022, 47.3636839 ], + [ 9.058899, 47.3636538 ], + [ 9.0586939, 47.3636309 ], + [ 9.0584872, 47.3636154 ], + [ 9.0582797, 47.3636072 ], + [ 9.0580717, 47.3636064 ], + [ 9.0578641, 47.363613 ], + [ 9.0576572, 47.363627 ], + [ 9.0574516, 47.3636484 ], + [ 9.057248, 47.363677 ], + [ 9.0570469, 47.3637128 ], + [ 9.0568488, 47.3637557 ], + [ 9.0566543, 47.3638056 ], + [ 9.0564639, 47.3638623 ], + [ 9.0562781, 47.3639258 ], + [ 9.0560975, 47.3639957 ], + [ 9.0559225, 47.364072 ], + [ 9.0557536, 47.3641544 ], + [ 9.0555913, 47.3642427 ], + [ 9.055436, 47.3643366 ], + [ 9.0552882, 47.364436 ], + [ 9.0551482, 47.3645404 ], + [ 9.0550164, 47.3646497 ], + [ 9.0548933, 47.3647635 ], + [ 9.0547791, 47.3648816 ], + [ 9.0546741, 47.3650035 ], + [ 9.0545787, 47.365129 ], + [ 9.054493, 47.3652578 ], + [ 9.0544175, 47.3653894 ], + [ 9.0543521, 47.3655235 ], + [ 9.0542972, 47.3656597 ], + [ 9.0542528, 47.3657978 ], + [ 9.0542191, 47.3659372 ], + [ 9.0541962, 47.3660776 ], + [ 9.0541842, 47.3662186 ], + [ 9.054183, 47.3663599 ], + [ 9.0541927, 47.366501 ], + [ 9.0542133, 47.3666415 ], + [ 9.0542447, 47.3667812 ], + [ 9.0542868, 47.3669195 ], + [ 9.0543395, 47.3670562 ], + [ 9.0544026, 47.3671908 ], + [ 9.0544761, 47.3673229 ], + [ 9.0545596, 47.3674523 ], + [ 9.0546529, 47.3675785 ], + [ 9.0547559, 47.3677013 ], + [ 9.0548682, 47.3678202 ], + [ 9.0549894, 47.3679349 ], + [ 9.0551194, 47.3680452 ], + [ 9.0552576, 47.3681507 ], + [ 9.0554038, 47.3682511 ], + [ 9.0555576, 47.3683463 ], + [ 9.0557184, 47.3684358 ], + [ 9.055886, 47.3685194 ], + [ 9.0560597, 47.368597 ], + [ 9.0562392, 47.3686683 ], + [ 9.056424, 47.3687332 ], + [ 9.0566135, 47.3687913 ], + [ 9.0568072, 47.3688427 ], + [ 9.0570046, 47.3688871 ], + [ 9.0572051, 47.3689244 ], + [ 9.0574083, 47.3689545 ], + [ 9.0576134, 47.3689774 ], + [ 9.0578201, 47.3689929 ], + [ 9.0580277, 47.3690011 ], + [ 9.0582356, 47.3690019 ], + [ 9.0584433, 47.3689953 ], + [ 9.0586502, 47.3689813 ], + [ 9.0588558, 47.36896 ], + [ 9.0590594, 47.3689314 ], + [ 9.0592606, 47.3688955 ], + [ 9.0594587, 47.3688526 ], + [ 9.0596532, 47.3688027 ], + [ 9.0598436, 47.368746 ], + [ 9.0600294, 47.3686825 ], + [ 9.0602101, 47.3686126 ], + [ 9.0603851, 47.3685363 ], + [ 9.060554, 47.3684539 ], + [ 9.0607163, 47.3683656 ], + [ 9.0608716, 47.3682716 ], + [ 9.0610194, 47.3681723 ], + [ 9.0611594, 47.3680678 ], + [ 9.0612911, 47.3679585 ], + [ 9.0614143, 47.3678447 ], + [ 9.0615285, 47.3677266 ], + [ 9.0616334, 47.3676047 ], + [ 9.0617288, 47.3674792 ], + [ 9.0618145, 47.3673504 ], + [ 9.06189, 47.3672188 ], + [ 9.0619554, 47.3670847 ], + [ 9.0620103, 47.3669485 ], + [ 9.0620546, 47.3668105 ], + [ 9.0620883, 47.3666711 ], + [ 9.0621112, 47.3665306 ], + [ 9.0621232, 47.3663896 ], + [ 9.0621243, 47.3662483 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "MZB0001", + "country" : "CHE", + "name" : [ + { + "text" : "Massnahmenzentrum Bitzi Mosnang", + "lang" : "de-CH" + }, + { + "text" : "Massnahmenzentrum Bitzi Mosnang", + "lang" : "fr-CH" + }, + { + "text" : "Massnahmenzentrum Bitzi Mosnang", + "lang" : "it-CH" + }, + { + "text" : "Massnahmenzentrum Bitzi Mosnang", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Massnahmenzentrum Bitzi Mosnang", + "lang" : "de-CH" + }, + { + "text" : "Massnahmenzentrum Bitzi Mosnang", + "lang" : "fr-CH" + }, + { + "text" : "Massnahmenzentrum Bitzi Mosnang", + "lang" : "it-CH" + }, + { + "text" : "Massnahmenzentrum Bitzi Mosnang", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Direktion", + "lang" : "de-CH" + }, + { + "text" : "Direktion", + "lang" : "fr-CH" + }, + { + "text" : "Direktion", + "lang" : "it-CH" + }, + { + "text" : "Direktion", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Claudio Vannini", + "lang" : "de-CH" + }, + { + "text" : "Claudio Vannini", + "lang" : "fr-CH" + }, + { + "text" : "Claudio Vannini", + "lang" : "it-CH" + }, + { + "text" : "Claudio Vannini", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.sg.ch/sicherheit/justizvollzug/massnahmenzentrum-bitzi.html", + "email" : "info@mzb.sg.ch", + "phone" : "0041582281585", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.5095218, 47.6468966 ], + [ 8.5084552, 47.6470801 ], + [ 8.505128599999999, 47.6477794 ], + [ 8.5018607, 47.6485953 ], + [ 8.4986603, 47.6495255 ], + [ 8.4955362, 47.6505676 ], + [ 8.492497, 47.6517187 ], + [ 8.4895509, 47.6529755 ], + [ 8.4867061, 47.6543348 ], + [ 8.4839704, 47.6557927 ], + [ 8.4813511, 47.6573453 ], + [ 8.4788556, 47.6589884 ], + [ 8.4764906, 47.6607173 ], + [ 8.4742626, 47.6625275 ], + [ 8.4721778, 47.6644139 ], + [ 8.4702419, 47.6663715 ], + [ 8.4684601, 47.6683947 ], + [ 8.4668373, 47.6704782 ], + [ 8.4653782, 47.6726161 ], + [ 8.4640865, 47.6748027 ], + [ 8.462966, 47.6770319 ], + [ 8.4620196, 47.6792976 ], + [ 8.4612501, 47.6815937 ], + [ 8.4606595, 47.6839139 ], + [ 8.4602495, 47.6862517 ], + [ 8.4600212, 47.6886008 ], + [ 8.4599783, 47.6908033 ], + [ 8.4608069, 47.6910697 ], + [ 8.4921136, 47.7011289 ], + [ 8.4949676, 47.7114092 ], + [ 8.4922485, 47.7151728 ], + [ 8.4756048, 47.7188987 ], + [ 8.475217, 47.7189885 ], + [ 8.4753695, 47.7191189 ], + [ 8.47767, 47.7208887 ], + [ 8.4801048, 47.7225747 ], + [ 8.4826672, 47.7241723 ], + [ 8.4853502, 47.7256772 ], + [ 8.4881463, 47.7270852 ], + [ 8.491048, 47.7283925 ], + [ 8.4940473, 47.7295955 ], + [ 8.4971358, 47.7306908 ], + [ 8.5003053, 47.7316755 ], + [ 8.5035468, 47.7325468 ], + [ 8.5068517, 47.7333024 ], + [ 8.5102107, 47.7339401 ], + [ 8.5136146, 47.7344583 ], + [ 8.5170542, 47.7348556 ], + [ 8.5205199, 47.7351307 ], + [ 8.5240021, 47.7352829 ], + [ 8.5274915, 47.735312 ], + [ 8.5309783, 47.7352176 ], + [ 8.534453, 47.7350002 ], + [ 8.537906, 47.7346603 ], + [ 8.5413279, 47.7341989 ], + [ 8.5447092, 47.7336172 ], + [ 8.5480406, 47.7329168 ], + [ 8.5513131, 47.7320996 ], + [ 8.5545175, 47.7311679 ], + [ 8.5576452, 47.7301243 ], + [ 8.5606875, 47.7289716 ], + [ 8.5636361, 47.7277129 ], + [ 8.5664829, 47.7263518 ], + [ 8.56922, 47.724892 ], + [ 8.57184, 47.7233375 ], + [ 8.5743357, 47.7216925 ], + [ 8.5767002, 47.7199615 ], + [ 8.5789271, 47.7181494 ], + [ 8.5810102, 47.7162611 ], + [ 8.5829439, 47.7143018 ], + [ 8.5847229, 47.7122768 ], + [ 8.5863422, 47.7101918 ], + [ 8.5877976, 47.7080524 ], + [ 8.5890849, 47.7058645 ], + [ 8.5902007, 47.7036341 ], + [ 8.591142, 47.7013673 ], + [ 8.5919062, 47.6990703 ], + [ 8.5924912, 47.6967496 ], + [ 8.592895500000001, 47.6944113 ], + [ 8.5931179, 47.6920619 ], + [ 8.5931579, 47.6897079 ], + [ 8.5930153, 47.6873557 ], + [ 8.5926907, 47.6850118 ], + [ 8.5921849, 47.6826825 ], + [ 8.5914993, 47.6803743 ], + [ 8.5906358, 47.6780935 ], + [ 8.5895969, 47.6758464 ], + [ 8.5883853, 47.673639 ], + [ 8.5870044, 47.6714774 ], + [ 8.5854581, 47.6693676 ], + [ 8.5837506, 47.6673154 ], + [ 8.5818865, 47.6653262 ], + [ 8.579871, 47.6634057 ], + [ 8.5777096, 47.661559 ], + [ 8.5776648, 47.6615246 ], + [ 8.5771658, 47.6619651 ], + [ 8.5761214, 47.6624672 ], + [ 8.5749426, 47.6626146 ], + [ 8.5738342, 47.6627913 ], + [ 8.5728994, 47.6636292 ], + [ 8.5717833, 47.6643228 ], + [ 8.5716048, 47.6641913 ], + [ 8.5709128, 47.6648674 ], + [ 8.5707787, 47.6647553 ], + [ 8.5704901, 47.6648416 ], + [ 8.5698504, 47.6645712 ], + [ 8.5691756, 47.6641924 ], + [ 8.5683977, 47.6644954 ], + [ 8.5671881, 47.6649398 ], + [ 8.5665992, 47.665293 ], + [ 8.5661616, 47.6657015 ], + [ 8.5647542, 47.665264 ], + [ 8.5640223, 47.6669069 ], + [ 8.5634406, 47.668087 ], + [ 8.5636033, 47.6692319 ], + [ 8.5637173, 47.6700397 ], + [ 8.5625304, 47.6701193 ], + [ 8.5617475, 47.6701867 ], + [ 8.560891, 47.6703197 ], + [ 8.5597285, 47.6702052 ], + [ 8.5592546, 47.6701285 ], + [ 8.5582945, 47.6696176 ], + [ 8.5568719, 47.6692612 ], + [ 8.5560419, 47.6693144 ], + [ 8.5544067, 47.6694059 ], + [ 8.5522654, 47.6688603 ], + [ 8.551039, 47.6682541 ], + [ 8.5496216, 47.6674173 ], + [ 8.5477072, 47.66705 ], + [ 8.5470847, 47.6670852 ], + [ 8.5468276, 47.6674968 ], + [ 8.5460802, 47.6670889 ], + [ 8.5447469, 47.666493 ], + [ 8.5436125, 47.6659852 ], + [ 8.5422891, 47.6653097 ], + [ 8.5409822, 47.6652446 ], + [ 8.5399607, 47.6650764 ], + [ 8.5397409, 47.6640887 ], + [ 8.5388675, 47.6635289 ], + [ 8.5388706, 47.6627676 ], + [ 8.5391896, 47.6624353 ], + [ 8.539138, 47.6621684 ], + [ 8.5394298, 47.6618085 ], + [ 8.539776, 47.6615924 ], + [ 8.5399816, 47.6613314 ], + [ 8.5401797, 47.6607541 ], + [ 8.5404698, 47.6599151 ], + [ 8.540861, 47.6590889 ], + [ 8.540881, 47.6587507 ], + [ 8.5414807, 47.6580218 ], + [ 8.5414566, 47.6574818 ], + [ 8.5416794, 47.657076 ], + [ 8.5416454, 47.6567931 ], + [ 8.540991, 47.6568254 ], + [ 8.5402227, 47.6574622 ], + [ 8.538664, 47.6578456 ], + [ 8.5379879, 47.6580741 ], + [ 8.5366053, 47.658434 ], + [ 8.5356839, 47.6587861 ], + [ 8.5344693, 47.6593553 ], + [ 8.5337183, 47.6599905 ], + [ 8.533833, 47.660553 ], + [ 8.5341504, 47.6611603 ], + [ 8.534070700000001, 47.6617516 ], + [ 8.533455, 47.6631214 ], + [ 8.5324839, 47.6628338 ], + [ 8.5314179, 47.6620895 ], + [ 8.5300748, 47.6614225 ], + [ 8.528902, 47.660973 ], + [ 8.52787, 47.6606473 ], + [ 8.5269427, 47.6604547 ], + [ 8.5272954, 47.6596526 ], + [ 8.5276426, 47.6588774 ], + [ 8.5280173, 47.6580215 ], + [ 8.5290969, 47.657707 ], + [ 8.5300313, 47.6570371 ], + [ 8.5294211, 47.6563374 ], + [ 8.5290146, 47.6554909 ], + [ 8.5291278, 47.6550106 ], + [ 8.530145, 47.6540768 ], + [ 8.5308759, 47.653798 ], + [ 8.5316724, 47.6526935 ], + [ 8.5316083, 47.6522952 ], + [ 8.531861, 47.6520046 ], + [ 8.533037, 47.6514043 ], + [ 8.533506299999999, 47.6509828 ], + [ 8.533452, 47.6505029 ], + [ 8.5337792, 47.650103 ], + [ 8.5346218, 47.6496937 ], + [ 8.5336971, 47.6492069 ], + [ 8.533343200000001, 47.6485183 ], + [ 8.5333974, 47.6478697 ], + [ 8.5331129, 47.6475785 ], + [ 8.5329539, 47.6471302 ], + [ 8.5324029, 47.6466492 ], + [ 8.532287, 47.6464784 ], + [ 8.5317933, 47.6457482 ], + [ 8.5298398, 47.6459366 ], + [ 8.5284518, 47.6456782 ], + [ 8.5269616, 47.645399 ], + [ 8.5256448, 47.6453881 ], + [ 8.5221639, 47.645482200000004 ], + [ 8.5194338, 47.6456531 ], + [ 8.5189076, 47.6458141 ], + [ 8.5177373, 47.646221 ], + [ 8.5171631, 47.6464661 ], + [ 8.5158133, 47.6469083 ], + [ 8.5139022, 47.6473867 ], + [ 8.51332, 47.647496 ], + [ 8.512963, 47.6474794 ], + [ 8.5124433, 47.6474905 ], + [ 8.5118066, 47.6474332 ], + [ 8.5113395, 47.6473684 ], + [ 8.5110457, 47.6472895 ], + [ 8.5108061, 47.6469638 ], + [ 8.5102041, 47.6471835 ], + [ 8.5095218, 47.6468966 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSPF001", + "country" : "CHE", + "name" : [ + { + "text" : "LSPF Schaffhausen", + "lang" : "de-CH" + }, + { + "text" : "LSPF Schaffhausen", + "lang" : "fr-CH" + }, + { + "text" : "LSPF Schaffhausen", + "lang" : "it-CH" + }, + { + "text" : "LSPF Schaffhausen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Segelfluggruppe Schaffhausen", + "lang" : "de-CH" + }, + { + "text" : "Segelfluggruppe Schaffhausen", + "lang" : "fr-CH" + }, + { + "text" : "Segelfluggruppe Schaffhausen", + "lang" : "it-CH" + }, + { + "text" : "Segelfluggruppe Schaffhausen", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "siteURL" : "https://schmerlat.ch/", + "email" : "flugplatzchef@schmerlat.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4399913, 47.4568772 ], + [ 7.440015, 47.4568733 ], + [ 7.4400133, 47.4565565 ], + [ 7.4406077, 47.4566402 ], + [ 7.4406123, 47.4566385 ], + [ 7.4406172, 47.4566373 ], + [ 7.4406224, 47.4566367 ], + [ 7.4406277, 47.4566367 ], + [ 7.4406328, 47.4566373 ], + [ 7.4406377, 47.4566386 ], + [ 7.4406422, 47.4566404 ], + [ 7.440645, 47.4566419 ], + [ 7.4406474, 47.4566437 ], + [ 7.4406495, 47.4566456 ], + [ 7.4406513, 47.4566476 ], + [ 7.4408747, 47.456666 ], + [ 7.4410092, 47.4566788 ], + [ 7.4414756, 47.4567281 ], + [ 7.4413643, 47.4569711 ], + [ 7.4415237, 47.4569905 ], + [ 7.4417601, 47.4570149 ], + [ 7.4418123, 47.4570205 ], + [ 7.4420227, 47.4570245 ], + [ 7.4422053, 47.4570902 ], + [ 7.4423923, 47.4570689 ], + [ 7.4424635, 47.4567658 ], + [ 7.4423912, 47.456673 ], + [ 7.4423662, 47.4565946 ], + [ 7.4423532, 47.4565717 ], + [ 7.4423018, 47.4565663 ], + [ 7.4419525, 47.4565526 ], + [ 7.4417285, 47.456533 ], + [ 7.4414967, 47.4565435 ], + [ 7.4414934, 47.4565431 ], + [ 7.4410477, 47.4564952 ], + [ 7.4407281, 47.4564608 ], + [ 7.4404111, 47.4563841 ], + [ 7.4401845, 47.456307699999996 ], + [ 7.4398818, 47.4562035 ], + [ 7.4399076, 47.4561167 ], + [ 7.4398701, 47.456016 ], + [ 7.4397333, 47.4559692 ], + [ 7.4394146, 47.4559101 ], + [ 7.4390958, 47.4558497 ], + [ 7.438811, 47.4557966 ], + [ 7.4385309, 47.4557271 ], + [ 7.4383429, 47.4556858 ], + [ 7.4380709, 47.455626 ], + [ 7.4377223, 47.4555581 ], + [ 7.4373636, 47.4554829 ], + [ 7.4371456, 47.4554312 ], + [ 7.4368836, 47.4553659 ], + [ 7.4367734, 47.4553362 ], + [ 7.4365263, 47.4553129 ], + [ 7.4362715999999995, 47.4552413 ], + [ 7.4358126, 47.4551614 ], + [ 7.4354595, 47.4550456 ], + [ 7.4348872, 47.4553546 ], + [ 7.4344676, 47.4555812 ], + [ 7.4347004, 47.4556773 ], + [ 7.4348505, 47.4557428 ], + [ 7.4350626, 47.4558238 ], + [ 7.4350952, 47.4558498 ], + [ 7.4351846, 47.4558888 ], + [ 7.43538, 47.456008 ], + [ 7.4356527, 47.4561152 ], + [ 7.4357964, 47.4561996 ], + [ 7.4359666, 47.4562692 ], + [ 7.4361891, 47.45634 ], + [ 7.4364389, 47.4563923 ], + [ 7.43659, 47.4564358 ], + [ 7.4367301, 47.4565961 ], + [ 7.4367894, 47.45662 ], + [ 7.437241, 47.4568017 ], + [ 7.4374023, 47.4568646 ], + [ 7.437567, 47.4569312 ], + [ 7.4376237, 47.4569556 ], + [ 7.4379194, 47.4570313 ], + [ 7.4382269, 47.457104 ], + [ 7.4384509, 47.4569959 ], + [ 7.4384426999999995, 47.4568513 ], + [ 7.4388585, 47.4568897 ], + [ 7.4391099, 47.4569012 ], + [ 7.439185, 47.4571019 ], + [ 7.4393737, 47.4570525 ], + [ 7.4399913, 47.4568772 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns338", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Schlosssberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Schlosssberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Schlosssberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Schlosssberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7118493, 47.4142475 ], + [ 7.7117736, 47.41417 ], + [ 7.7118487, 47.4141382 ], + [ 7.7120246, 47.4139864 ], + [ 7.712312, 47.4137363 ], + [ 7.712529, 47.4134883 ], + [ 7.7126524, 47.4130727 ], + [ 7.712836, 47.412686 ], + [ 7.7130499, 47.4125533 ], + [ 7.7133975, 47.4123373 ], + [ 7.7136303, 47.4122904 ], + [ 7.7136298, 47.4122764 ], + [ 7.7136196, 47.4119544 ], + [ 7.7133049, 47.4116453 ], + [ 7.712918, 47.4113686 ], + [ 7.7127092, 47.4112413 ], + [ 7.7125171, 47.411128 ], + [ 7.7119254, 47.410991 ], + [ 7.7114925, 47.4109381 ], + [ 7.7111564, 47.4109079 ], + [ 7.7110755, 47.4109016 ], + [ 7.7106389, 47.4108949 ], + [ 7.7100615999999995, 47.4109185 ], + [ 7.7096004, 47.4109326 ], + [ 7.7094203, 47.411037 ], + [ 7.7091987, 47.4113726 ], + [ 7.7093279, 47.4117215 ], + [ 7.709407, 47.4121255 ], + [ 7.7096224, 47.4122499 ], + [ 7.7096108, 47.4124057 ], + [ 7.7096746, 47.4127427 ], + [ 7.7096963, 47.4128573 ], + [ 7.7098858, 47.4131963 ], + [ 7.7099462, 47.4133016 ], + [ 7.7099634, 47.4133311 ], + [ 7.7100639, 47.4136859 ], + [ 7.7104039, 47.4140424 ], + [ 7.7106665, 47.4142068 ], + [ 7.7112055999999995, 47.4142022 ], + [ 7.7113098, 47.4142318 ], + [ 7.7114728, 47.414441 ], + [ 7.7115769, 47.4144469 ], + [ 7.7115496, 47.4142686 ], + [ 7.7118493, 47.4142475 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns068", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Chastelenfluh", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Chastelenfluh", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Chastelenfluh", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Chastelenfluh", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8185333, 47.4177407 ], + [ 7.8183541, 47.4176949 ], + [ 7.8182752, 47.4176903 ], + [ 7.8182067, 47.4177149 ], + [ 7.8181484999999995, 47.417756 ], + [ 7.8180857, 47.4178417 ], + [ 7.8180243, 47.4181455 ], + [ 7.8179577, 47.4184771 ], + [ 7.8185481, 47.4185483 ], + [ 7.8190637, 47.4186104 ], + [ 7.8190755, 47.4185272 ], + [ 7.8191112, 47.4184479 ], + [ 7.8193576, 47.4181201 ], + [ 7.819472, 47.4179972 ], + [ 7.8194832, 47.4179145 ], + [ 7.8195701, 47.4178922 ], + [ 7.8197544, 47.417846 ], + [ 7.8200409, 47.4179992 ], + [ 7.8201654, 47.4181729 ], + [ 7.8202414000000005, 47.4183696 ], + [ 7.8201093, 47.418676 ], + [ 7.8199792, 47.4189807 ], + [ 7.8198794, 47.4195712 ], + [ 7.820017, 47.4195286 ], + [ 7.8206687, 47.4193229 ], + [ 7.821427, 47.4190826 ], + [ 7.8223479, 47.4190841 ], + [ 7.8226846, 47.4190365 ], + [ 7.8229112, 47.4190404 ], + [ 7.8234789, 47.4192889 ], + [ 7.823919, 47.4195285 ], + [ 7.8240788, 47.4194604 ], + [ 7.8242221, 47.4194 ], + [ 7.8244193, 47.4193735 ], + [ 7.8248629, 47.4194166 ], + [ 7.8251731, 47.4194874 ], + [ 7.8253626, 47.4195228 ], + [ 7.8255649, 47.4195336 ], + [ 7.8254066, 47.4191871 ], + [ 7.8253356, 47.419008 ], + [ 7.8252747, 47.4188339 ], + [ 7.8251318, 47.4181713 ], + [ 7.8249072, 47.4174283 ], + [ 7.8250114, 47.417426 ], + [ 7.8250612, 47.4174134 ], + [ 7.8250440999999995, 47.4173685 ], + [ 7.8252057, 47.4172739 ], + [ 7.8272286, 47.4172797 ], + [ 7.8272793, 47.4172798 ], + [ 7.8272951, 47.4166202 ], + [ 7.8272928, 47.4161499 ], + [ 7.8272855, 47.4159578 ], + [ 7.8272477, 47.4157733 ], + [ 7.8272054, 47.4156974 ], + [ 7.8269172, 47.4157323 ], + [ 7.8267545, 47.4153983 ], + [ 7.8266129, 47.4147576 ], + [ 7.8266507999999995, 47.4147532 ], + [ 7.8266071, 47.4146358 ], + [ 7.8265270000000005, 47.414466 ], + [ 7.8265025, 47.4144129 ], + [ 7.8264835999999995, 47.4143588 ], + [ 7.8264703, 47.414304 ], + [ 7.8264593, 47.4142054 ], + [ 7.8264714, 47.4140655 ], + [ 7.8264752, 47.413963 ], + [ 7.8264302, 47.413642 ], + [ 7.8264054, 47.4134468 ], + [ 7.8264629, 47.4132415 ], + [ 7.8265474, 47.4131435 ], + [ 7.8265389, 47.4131379 ], + [ 7.8264274, 47.4130723 ], + [ 7.8262260999999995, 47.4130388 ], + [ 7.8261568, 47.4130975 ], + [ 7.8260979, 47.4133433 ], + [ 7.8260982, 47.413380599999996 ], + [ 7.8261052, 47.4134481 ], + [ 7.826109, 47.4135211 ], + [ 7.8258806, 47.4135646 ], + [ 7.8255951, 47.413579 ], + [ 7.8254363, 47.4135583 ], + [ 7.8254182, 47.4135632 ], + [ 7.8253935, 47.4135691 ], + [ 7.8253009, 47.4135915 ], + [ 7.825018, 47.4135593 ], + [ 7.8245834, 47.4135406 ], + [ 7.8244498, 47.4136415 ], + [ 7.8243218, 47.4137382 ], + [ 7.8242329, 47.4138014 ], + [ 7.8242142, 47.4138001 ], + [ 7.8240759, 47.4139634 ], + [ 7.8239032, 47.4141154 ], + [ 7.8237653, 47.4141923 ], + [ 7.8235957, 47.4142055 ], + [ 7.8232506, 47.4142005 ], + [ 7.8231269999999995, 47.4142038 ], + [ 7.8231119, 47.4141742 ], + [ 7.8230053, 47.4141369 ], + [ 7.8226842, 47.4141141 ], + [ 7.8224804, 47.4141116 ], + [ 7.8222819999999995, 47.4141363 ], + [ 7.8216660000000005, 47.4142795 ], + [ 7.8213805, 47.4143329 ], + [ 7.8210827, 47.4143579 ], + [ 7.8208147, 47.4143452 ], + [ 7.8205545999999995, 47.4143278 ], + [ 7.820402, 47.414325 ], + [ 7.8202539, 47.4143324 ], + [ 7.8198207, 47.4143927 ], + [ 7.8195436, 47.4144516 ], + [ 7.8192166, 47.4145059 ], + [ 7.8190519, 47.414517 ], + [ 7.818889, 47.4145093 ], + [ 7.8183006, 47.4144594 ], + [ 7.818134, 47.4144355 ], + [ 7.817756, 47.4143647 ], + [ 7.8176051, 47.4143483 ], + [ 7.8169702999999995, 47.4143218 ], + [ 7.8168907999999995, 47.4143434 ], + [ 7.8169106, 47.4144168 ], + [ 7.8177145, 47.4144409 ], + [ 7.8182792, 47.4145587 ], + [ 7.8190243, 47.4145977 ], + [ 7.8199513, 47.4144684 ], + [ 7.8199661, 47.414991 ], + [ 7.8199796, 47.4149896 ], + [ 7.8199881, 47.4150209 ], + [ 7.8199156, 47.4150275 ], + [ 7.8195939, 47.4152209 ], + [ 7.8193813, 47.4154332 ], + [ 7.8193292, 47.4155515 ], + [ 7.8193741, 47.4156208 ], + [ 7.8195881, 47.4156907 ], + [ 7.8198452, 47.4156999 ], + [ 7.8199026, 47.4158976 ], + [ 7.8197633, 47.4158947 ], + [ 7.8193709, 47.4159563 ], + [ 7.8189135, 47.416053 ], + [ 7.8190943, 47.4163015 ], + [ 7.8193304, 47.4164834 ], + [ 7.8195327, 47.4166024 ], + [ 7.8198006, 47.4167036 ], + [ 7.8201944999999995, 47.4167897 ], + [ 7.8203474, 47.4168876 ], + [ 7.8203475000000005, 47.4169297 ], + [ 7.8210095, 47.4173264 ], + [ 7.8211095, 47.4174095 ], + [ 7.8206144, 47.4174005 ], + [ 7.8203905, 47.417396 ], + [ 7.8201694, 47.4174166 ], + [ 7.8196924, 47.4175487 ], + [ 7.8193152, 47.4176115 ], + [ 7.8189611, 47.4176808 ], + [ 7.8187973, 47.4177271 ], + [ 7.8187584999999995, 47.4177604 ], + [ 7.8185333, 47.4177407 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns175", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Chilpen", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Chilpen", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Chilpen", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Chilpen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.1858492, 46.1643199 ], + [ 6.1856141000000004, 46.1642847 ], + [ 6.1841232999999995, 46.1644735 ], + [ 6.1840216, 46.1645191 ], + [ 6.1838205, 46.164505 ], + [ 6.1837937, 46.1645056 ], + [ 6.1833181, 46.1645811 ], + [ 6.1826001, 46.1642361 ], + [ 6.1811188, 46.1640141 ], + [ 6.1796279, 46.1642029 ], + [ 6.1783545, 46.1647738 ], + [ 6.1774924, 46.1656397 ], + [ 6.1771728, 46.166669 ], + [ 6.1772752, 46.1670594 ], + [ 6.177039, 46.1671653 ], + [ 6.1761768, 46.1680313 ], + [ 6.1758572, 46.1690606 ], + [ 6.1761289, 46.1700965 ], + [ 6.1769505, 46.1709813 ], + [ 6.178197, 46.1715803 ], + [ 6.1793759999999995, 46.171757 ], + [ 6.1795188, 46.1723016 ], + [ 6.1803405, 46.1731864 ], + [ 6.1815871, 46.1737854 ], + [ 6.1830687, 46.1740073 ], + [ 6.1845599, 46.1738185 ], + [ 6.1858334, 46.1732476 ], + [ 6.1866955, 46.1723815 ], + [ 6.1868618, 46.1718455 ], + [ 6.1875181, 46.1719438 ], + [ 6.1879875, 46.1699682 ], + [ 6.1887762, 46.1663879 ], + [ 6.1884539, 46.1661988 ], + [ 6.187795, 46.1657596 ], + [ 6.1858492, 46.1643199 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-21", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8458575, 47.426143 ], + [ 7.8458055, 47.4262379 ], + [ 7.845748, 47.4263274 ], + [ 7.845884, 47.4264722 ], + [ 7.8460284, 47.426626 ], + [ 7.8460529999999995, 47.4266522 ], + [ 7.8460519, 47.4266839 ], + [ 7.8457291, 47.426681 ], + [ 7.845703, 47.426681 ], + [ 7.8456771, 47.4266816 ], + [ 7.8456510999999995, 47.4266827 ], + [ 7.8456252, 47.4266843 ], + [ 7.8455994, 47.4266865 ], + [ 7.8455737, 47.4266892 ], + [ 7.8455481, 47.4266924 ], + [ 7.8455227, 47.4266961 ], + [ 7.8453067999999995, 47.4267297 ], + [ 7.8452859, 47.4267333 ], + [ 7.8452653, 47.4267374 ], + [ 7.8452449, 47.4267421 ], + [ 7.8452248, 47.426747399999996 ], + [ 7.8452051, 47.4267532 ], + [ 7.8451857, 47.4267595 ], + [ 7.8451667, 47.4267664 ], + [ 7.8451481, 47.4267738 ], + [ 7.84513, 47.4267817 ], + [ 7.8451124, 47.4267901 ], + [ 7.8450953, 47.4267989 ], + [ 7.8450788, 47.4268083 ], + [ 7.8450628, 47.426818 ], + [ 7.8450474, 47.4268282 ], + [ 7.8450471, 47.4268404 ], + [ 7.8450463, 47.4268718 ], + [ 7.8450462, 47.4268732 ], + [ 7.8450448999999995, 47.4269234 ], + [ 7.8452863, 47.4270471 ], + [ 7.8455318, 47.4272167 ], + [ 7.845722, 47.427408 ], + [ 7.845725, 47.427414 ], + [ 7.8457751, 47.4275128 ], + [ 7.8458349, 47.4276309 ], + [ 7.845857, 47.4277074 ], + [ 7.8459091, 47.4278876 ], + [ 7.8459486, 47.4281575 ], + [ 7.8459354999999995, 47.4285999 ], + [ 7.8459334, 47.4286729 ], + [ 7.8459104, 47.4288536 ], + [ 7.8459071, 47.4288791 ], + [ 7.8458271, 47.4291295 ], + [ 7.8457083, 47.429337 ], + [ 7.8454307, 47.4296511 ], + [ 7.8454259, 47.4296566 ], + [ 7.8452885, 47.4298633 ], + [ 7.8452801999999995, 47.4300356 ], + [ 7.8455639, 47.4305006 ], + [ 7.8456222, 47.4306703 ], + [ 7.8456392, 47.4307198 ], + [ 7.8456469, 47.430778 ], + [ 7.8460725, 47.4307476 ], + [ 7.8466885, 47.430699 ], + [ 7.846632, 47.4305788 ], + [ 7.8465824, 47.4304732 ], + [ 7.846362, 47.4301205 ], + [ 7.8463418, 47.4299578 ], + [ 7.8463531, 47.4299192 ], + [ 7.8464562, 47.4295509 ], + [ 7.8465464, 47.4291646 ], + [ 7.8466874, 47.4285683 ], + [ 7.8466427, 47.4282064 ], + [ 7.8467244, 47.4277841 ], + [ 7.8468213, 47.4275571 ], + [ 7.8472299, 47.4271416 ], + [ 7.847232, 47.426898 ], + [ 7.847117, 47.4265878 ], + [ 7.8470323, 47.426326 ], + [ 7.8469274, 47.426087 ], + [ 7.8468664, 47.4260999 ], + [ 7.8464651, 47.4261125 ], + [ 7.8458575, 47.426143 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr057", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Neuweg", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Neuweg", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Neuweg", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Neuweg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.2772061, 46.4916878 ], + [ 7.2772011, 46.4915465 ], + [ 7.2771855, 46.4914056 ], + [ 7.2771592, 46.4912655 ], + [ 7.2771224, 46.4911266 ], + [ 7.277075, 46.4909891 ], + [ 7.2770173, 46.4908536 ], + [ 7.2769494, 46.4907203 ], + [ 7.2768716, 46.4905896 ], + [ 7.2767839, 46.490462 ], + [ 7.2766866, 46.4903377 ], + [ 7.2765801, 46.4902171 ], + [ 7.2764646, 46.4901005 ], + [ 7.2763404, 46.4899882 ], + [ 7.2762079, 46.4898806 ], + [ 7.2760674, 46.4897779 ], + [ 7.2759193, 46.4896804 ], + [ 7.275764, 46.4895884 ], + [ 7.275602, 46.4895022 ], + [ 7.2754337, 46.489421899999996 ], + [ 7.2752595, 46.4893478 ], + [ 7.2750799, 46.4892802 ], + [ 7.2748954, 46.4892191 ], + [ 7.2747066, 46.4891647 ], + [ 7.2745139, 46.4891173 ], + [ 7.2743179, 46.4890769 ], + [ 7.2741191, 46.4890436 ], + [ 7.2739181, 46.4890176 ], + [ 7.2737153, 46.4889988 ], + [ 7.2735114, 46.4889874 ], + [ 7.273307, 46.4889834 ], + [ 7.2731025, 46.4889868 ], + [ 7.2728985, 46.4889976 ], + [ 7.2726956, 46.4890158 ], + [ 7.2724944, 46.4890412 ], + [ 7.2722954, 46.4890739 ], + [ 7.2720991999999995, 46.4891137 ], + [ 7.2719062, 46.4891606 ], + [ 7.271717, 46.4892144 ], + [ 7.2715322, 46.489275 ], + [ 7.2713522, 46.4893421 ], + [ 7.2711776, 46.4894157 ], + [ 7.2710088, 46.4894955 ], + [ 7.2708462, 46.4895812 ], + [ 7.2706904, 46.4896727 ], + [ 7.2705417, 46.4897698 ], + [ 7.2704006, 46.4898721 ], + [ 7.2702674, 46.4899793 ], + [ 7.2701425, 46.4900912 ], + [ 7.2700263, 46.4902075 ], + [ 7.269919, 46.4903278 ], + [ 7.269821, 46.4904518 ], + [ 7.2697325, 46.4905792 ], + [ 7.2696538, 46.4907096 ], + [ 7.2695851, 46.4908427 ], + [ 7.2695266, 46.490978 ], + [ 7.2694784, 46.4911154 ], + [ 7.2694407, 46.4912542 ], + [ 7.2694136, 46.4913943 ], + [ 7.2693971, 46.4915351 ], + [ 7.2693913, 46.4916763 ], + [ 7.2693962, 46.4918176 ], + [ 7.2694118, 46.4919584 ], + [ 7.2694381, 46.4920986 ], + [ 7.2694749, 46.4922375 ], + [ 7.2695222, 46.492375 ], + [ 7.2695799, 46.4925105 ], + [ 7.2696477999999995, 46.4926438 ], + [ 7.2697256, 46.4927745 ], + [ 7.2698133, 46.4929021 ], + [ 7.2699105, 46.4930264 ], + [ 7.2700171000000005, 46.4931471 ], + [ 7.2701326, 46.4932637 ], + [ 7.2702567, 46.493376 ], + [ 7.2703893, 46.4934836 ], + [ 7.2705298, 46.4935863 ], + [ 7.2706779, 46.4936838 ], + [ 7.2708331, 46.4937758 ], + [ 7.2709952, 46.493862 ], + [ 7.2711635, 46.4939423 ], + [ 7.2713377, 46.4940164 ], + [ 7.2715173, 46.494084 ], + [ 7.2717017, 46.4941451 ], + [ 7.2718906, 46.4941995 ], + [ 7.2720833, 46.4942469 ], + [ 7.2722793, 46.4942873 ], + [ 7.2724781, 46.4943206 ], + [ 7.2726792, 46.4943467 ], + [ 7.272882, 46.4943654 ], + [ 7.2730859, 46.4943768 ], + [ 7.2732904, 46.4943808 ], + [ 7.2734949, 46.4943774 ], + [ 7.2736989, 46.4943666 ], + [ 7.2739018, 46.4943485 ], + [ 7.274103, 46.494323 ], + [ 7.274302, 46.4942903 ], + [ 7.2744983, 46.4942505 ], + [ 7.2746913, 46.4942036 ], + [ 7.2748805, 46.4941498 ], + [ 7.2750653, 46.4940892 ], + [ 7.2752453, 46.4940221 ], + [ 7.2754199, 46.4939485 ], + [ 7.2755887999999995, 46.4938687 ], + [ 7.2757513, 46.493783 ], + [ 7.2759072, 46.4936914 ], + [ 7.2760559, 46.4935944 ], + [ 7.276197, 46.4934921 ], + [ 7.2763302, 46.4933849 ], + [ 7.276455, 46.4932729 ], + [ 7.2765713, 46.4931567 ], + [ 7.2766785, 46.4930364 ], + [ 7.2767765, 46.4929123 ], + [ 7.276865, 46.4927849 ], + [ 7.2769436, 46.4926545 ], + [ 7.2770123, 46.4925214 ], + [ 7.2770708, 46.492386 ], + [ 7.277119, 46.4922487 ], + [ 7.2771567, 46.4921099 ], + [ 7.2771837999999995, 46.4919698 ], + [ 7.2772003, 46.491829 ], + [ 7.2772061, 46.4916878 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0051", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Gstaad", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Gstaad", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Gstaad", + "lang" : "it-CH" + }, + { + "text" : "Substation Gstaad", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8315386, 47.4468279 ], + [ 7.8315356, 47.4468712 ], + [ 7.8315888000000005, 47.4469381 ], + [ 7.8317048, 47.4470668 ], + [ 7.8318086000000005, 47.4471712 ], + [ 7.8318847, 47.4472491 ], + [ 7.8319548999999995, 47.4473097 ], + [ 7.8319559, 47.4473137 ], + [ 7.831957, 47.4473181 ], + [ 7.8319648, 47.4473499 ], + [ 7.8318968, 47.4475231 ], + [ 7.8316704999999995, 47.4477241 ], + [ 7.8314676, 47.4478551 ], + [ 7.8319583999999995, 47.448135 ], + [ 7.8329205, 47.4486838 ], + [ 7.8329409, 47.4486955 ], + [ 7.8330445, 47.4485667 ], + [ 7.833133, 47.448454 ], + [ 7.8331452, 47.4484341 ], + [ 7.8331562, 47.4484161 ], + [ 7.8332614, 47.4482441 ], + [ 7.8333677999999995, 47.448111 ], + [ 7.8334335, 47.447974 ], + [ 7.8333707, 47.4479238 ], + [ 7.8332952, 47.4479041 ], + [ 7.8332313, 47.4478508 ], + [ 7.8332368, 47.4478092 ], + [ 7.8332603, 47.4477282 ], + [ 7.8332436, 47.447653 ], + [ 7.8332529, 47.4475535 ], + [ 7.8332889, 47.4474372 ], + [ 7.8332388, 47.4473769 ], + [ 7.8332325, 47.4472653 ], + [ 7.8332956, 47.447159 ], + [ 7.8333238, 47.4470687 ], + [ 7.8333064, 47.4469749 ], + [ 7.8333594, 47.4468211 ], + [ 7.8334133999999995, 47.4466147 ], + [ 7.833449, 47.4464463 ], + [ 7.8333935, 47.4463805 ], + [ 7.833352, 47.4462804 ], + [ 7.8332906, 47.4461942 ], + [ 7.8331531, 47.4461716 ], + [ 7.8330103, 47.4461108 ], + [ 7.8329006, 47.4460793 ], + [ 7.8328499, 47.4459921 ], + [ 7.8327918, 47.4459514 ], + [ 7.832757, 47.4459163 ], + [ 7.8326701, 47.4458889 ], + [ 7.8326017, 47.4458364 ], + [ 7.8324839, 47.4457987 ], + [ 7.8323174, 47.4457477 ], + [ 7.8321584, 47.445687 ], + [ 7.8320093, 47.4456255 ], + [ 7.8318662, 47.4456095 ], + [ 7.8317743, 47.4455885 ], + [ 7.8316651, 47.445589 ], + [ 7.8316476999999995, 47.4456048 ], + [ 7.8316427, 47.4456588 ], + [ 7.8317014, 47.445757 ], + [ 7.8318543, 47.4458929 ], + [ 7.8320044, 47.4459579 ], + [ 7.8320861, 47.446026 ], + [ 7.8320364, 47.4461035 ], + [ 7.8319494, 47.4461466 ], + [ 7.8317349, 47.4462136 ], + [ 7.8315779, 47.4462578 ], + [ 7.8315738, 47.4463169 ], + [ 7.8315386, 47.4468279 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr064", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Dubenrain", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Dubenrain", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Dubenrain", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Dubenrain", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.1961646, 46.2414871 ], + [ 6.1974826, 46.2416841 ], + [ 6.1975925, 46.2421022 ], + [ 6.1984156, 46.2429868 ], + [ 6.1996639, 46.2435856 ], + [ 6.2011476, 46.2438074 ], + [ 6.2026405, 46.2436182 ], + [ 6.2039155, 46.2430471 ], + [ 6.2039703, 46.2429922 ], + [ 6.204297, 46.243041 ], + [ 6.20579, 46.2428519 ], + [ 6.2070649, 46.2422807 ], + [ 6.2079278, 46.2414145 ], + [ 6.2082472, 46.2403851 ], + [ 6.2079745, 46.2393493 ], + [ 6.2071514, 46.2384647 ], + [ 6.2070779, 46.2384294 ], + [ 6.2067765, 46.2381056 ], + [ 6.2055282, 46.2375069 ], + [ 6.2041743, 46.2373046 ], + [ 6.2038454, 46.236951 ], + [ 6.2036401, 46.2361708 ], + [ 6.2028171, 46.2352861 ], + [ 6.2015689, 46.2346874 ], + [ 6.2000855, 46.2344657 ], + [ 6.1985928, 46.2346547 ], + [ 6.1982857, 46.2347923 ], + [ 6.1977324, 46.2343593 ], + [ 6.1963706, 46.2338991 ], + [ 6.1963627, 46.2338976 ], + [ 6.1963621, 46.2338975 ], + [ 6.1963196, 46.2338898 ], + [ 6.1948084, 46.2338255 ], + [ 6.1933764, 46.2341666 ], + [ 6.1922405, 46.2348613 ], + [ 6.191573, 46.2358044 ], + [ 6.1915597, 46.2358391 ], + [ 6.1915151, 46.2363194 ], + [ 6.1914735, 46.2364123 ], + [ 6.1914614, 46.2366677 ], + [ 6.1914212, 46.2369094 ], + [ 6.191446, 46.2369946 ], + [ 6.1914394, 46.2371331 ], + [ 6.1916816, 46.2378344 ], + [ 6.1916949, 46.2378583 ], + [ 6.1917696, 46.2379404 ], + [ 6.1917729, 46.2379444 ], + [ 6.1917669, 46.2379462 ], + [ 6.1917674, 46.237947 ], + [ 6.191813, 46.2379937 ], + [ 6.1923067, 46.2386013 ], + [ 6.192459, 46.2386979 ], + [ 6.192496, 46.2387385 ], + [ 6.1925802, 46.2387801 ], + [ 6.1925954, 46.2387957 ], + [ 6.1926643, 46.238828 ], + [ 6.1932138, 46.2391762 ], + [ 6.1936672999999995, 46.2393179 ], + [ 6.1937177, 46.2393428 ], + [ 6.1937283, 46.2393461 ], + [ 6.19379, 46.2393562 ], + [ 6.1937973, 46.2393585 ], + [ 6.1938197, 46.2393689 ], + [ 6.193841, 46.2393721 ], + [ 6.193935, 46.2394015 ], + [ 6.1940933, 46.2400036 ], + [ 6.1949163, 46.2408883 ], + [ 6.1961646, 46.2414871 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-19", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8553134, 47.44968 ], + [ 7.8551812, 47.4497707 ], + [ 7.8547934999999995, 47.4499846 ], + [ 7.8544816, 47.4501596 ], + [ 7.8543685, 47.4502695 ], + [ 7.8542653, 47.4504309 ], + [ 7.8541434, 47.4506245 ], + [ 7.8539657, 47.4509729 ], + [ 7.8537482, 47.4514469 ], + [ 7.8538596, 47.4514604 ], + [ 7.8538661, 47.4514612 ], + [ 7.8538723, 47.4514619 ], + [ 7.8540025, 47.4514777 ], + [ 7.8541435, 47.451482 ], + [ 7.8541424, 47.4515448 ], + [ 7.8541281, 47.4523648 ], + [ 7.8541219, 47.4525002 ], + [ 7.8540966999999995, 47.4526277 ], + [ 7.8540805, 47.4531698 ], + [ 7.8541054, 47.4534255 ], + [ 7.8542173, 47.4536895 ], + [ 7.8543155, 47.4539307 ], + [ 7.854552, 47.4541034 ], + [ 7.8548645, 47.4542876 ], + [ 7.8552343, 47.454204 ], + [ 7.8553596, 47.4541758 ], + [ 7.8556133, 47.4541144 ], + [ 7.8559596, 47.4540167 ], + [ 7.8558376, 47.4539189 ], + [ 7.8557924, 47.4538827 ], + [ 7.8557237, 47.4538684 ], + [ 7.8554079, 47.4538026 ], + [ 7.855172, 47.4536986 ], + [ 7.855173, 47.4535834 ], + [ 7.8551509, 47.4534025 ], + [ 7.8553029, 47.4531901 ], + [ 7.8554828, 47.4529752 ], + [ 7.8553073, 47.4525918 ], + [ 7.8551628000000004, 47.4522761 ], + [ 7.8551229, 47.4520379 ], + [ 7.8550924, 47.451774 ], + [ 7.8550809, 47.4515164 ], + [ 7.8551069, 47.4512007 ], + [ 7.8551034, 47.4507499 ], + [ 7.8551111, 47.4505244 ], + [ 7.8551109, 47.4505051 ], + [ 7.8551368, 47.4501637 ], + [ 7.855164, 47.4500026 ], + [ 7.8552199, 47.4498736 ], + [ 7.8553041, 47.4497058 ], + [ 7.8553134, 47.44968 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr059", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Rütenen", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Rütenen", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Rütenen", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Rütenen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.370425, 47.4174865 ], + [ 7.3704145, 47.4175768 ], + [ 7.3704346, 47.4177681 ], + [ 7.370489, 47.4178926 ], + [ 7.3708881, 47.4180432 ], + [ 7.3713547, 47.4183145 ], + [ 7.3716936, 47.4184293 ], + [ 7.3720026, 47.4185725 ], + [ 7.3722079, 47.418582 ], + [ 7.372372, 47.4185401 ], + [ 7.3723996, 47.418533 ], + [ 7.3724298, 47.4184651 ], + [ 7.3725548, 47.4184119 ], + [ 7.3726366, 47.4184997 ], + [ 7.3727716, 47.4186323 ], + [ 7.372871, 47.4188745 ], + [ 7.3733982, 47.4190451 ], + [ 7.3737352, 47.4190779 ], + [ 7.3739117, 47.4190723 ], + [ 7.3741709, 47.4188412 ], + [ 7.3741387, 47.4187558 ], + [ 7.3741798, 47.4185692 ], + [ 7.3742048, 47.4183519 ], + [ 7.3744911, 47.4180479 ], + [ 7.3745128, 47.4179243 ], + [ 7.3744112, 47.4177478 ], + [ 7.3744918, 47.4176767 ], + [ 7.3740559, 47.4171548 ], + [ 7.3737382, 47.4168784 ], + [ 7.3735371, 47.4166592 ], + [ 7.3734312, 47.4165958 ], + [ 7.3734335, 47.4165537 ], + [ 7.3734346, 47.4165347 ], + [ 7.3732902, 47.4165393 ], + [ 7.3731138, 47.4165557 ], + [ 7.3729811, 47.4165802 ], + [ 7.3728915, 47.4166191 ], + [ 7.3728514, 47.4166546 ], + [ 7.3728508999999995, 47.4166556 ], + [ 7.3728504, 47.4166567 ], + [ 7.37285, 47.4166577 ], + [ 7.3728495, 47.4166588 ], + [ 7.372849, 47.4166598 ], + [ 7.3728486, 47.4166609 ], + [ 7.3728481, 47.416662 ], + [ 7.3728477, 47.416663 ], + [ 7.3728473, 47.4166641 ], + [ 7.3728469, 47.4166651 ], + [ 7.3728465, 47.4166662 ], + [ 7.3728461, 47.4166673 ], + [ 7.3728457, 47.4166684 ], + [ 7.3728454, 47.4166694 ], + [ 7.372845, 47.4166705 ], + [ 7.3728447, 47.4166716 ], + [ 7.3728443, 47.4166726 ], + [ 7.372844, 47.4166737 ], + [ 7.3728437, 47.4166748 ], + [ 7.3728434, 47.4166759 ], + [ 7.3728431, 47.416677 ], + [ 7.3728428, 47.416678 ], + [ 7.3728425, 47.4166791 ], + [ 7.3728422, 47.4166802 ], + [ 7.372842, 47.4166813 ], + [ 7.3728417, 47.4166824 ], + [ 7.3728415, 47.4166835 ], + [ 7.3728412, 47.416684599999996 ], + [ 7.372841, 47.4166856 ], + [ 7.3728408, 47.4166867 ], + [ 7.3728406, 47.4166878 ], + [ 7.3728404, 47.4166889 ], + [ 7.3728402, 47.41669 ], + [ 7.3728401, 47.4166911 ], + [ 7.3728399, 47.4166922 ], + [ 7.3728398, 47.4166933 ], + [ 7.3728396, 47.4166944 ], + [ 7.3728394999999995, 47.4166955 ], + [ 7.3728394, 47.4166966 ], + [ 7.3728393, 47.4166977 ], + [ 7.3728391, 47.4166988 ], + [ 7.3728391, 47.4166999 ], + [ 7.372839, 47.416701 ], + [ 7.3728389, 47.4167021 ], + [ 7.3728388, 47.4167032 ], + [ 7.3728388, 47.4167043 ], + [ 7.3728388, 47.4167054 ], + [ 7.3728387, 47.4167065 ], + [ 7.3728387, 47.4167076 ], + [ 7.3728387, 47.4167087 ], + [ 7.3728387, 47.4167098 ], + [ 7.3728387, 47.4167109 ], + [ 7.3728387, 47.416712 ], + [ 7.3728387, 47.4167131 ], + [ 7.3728388, 47.4167142 ], + [ 7.3728388, 47.4167153 ], + [ 7.3728389, 47.4167163 ], + [ 7.372839, 47.4167174 ], + [ 7.372839, 47.4167185 ], + [ 7.3728391, 47.4167196 ], + [ 7.3728392, 47.4167207 ], + [ 7.3728393, 47.4167218 ], + [ 7.3728394, 47.4167228 ], + [ 7.3728396, 47.4167239 ], + [ 7.3728397, 47.416725 ], + [ 7.3728399, 47.4167261 ], + [ 7.37284, 47.4167271 ], + [ 7.3728402, 47.4167282 ], + [ 7.3728404, 47.4167293 ], + [ 7.3728405, 47.4167304 ], + [ 7.3728407, 47.4167315 ], + [ 7.3728409, 47.4167325 ], + [ 7.3728411, 47.4167336 ], + [ 7.3728414, 47.4167347 ], + [ 7.3728416, 47.4167357 ], + [ 7.3728418, 47.4167368 ], + [ 7.3728421, 47.4167379 ], + [ 7.3728424, 47.416739 ], + [ 7.3728426, 47.41674 ], + [ 7.3728429, 47.4167411 ], + [ 7.3728432, 47.4167421 ], + [ 7.3728435, 47.4167432 ], + [ 7.3728438, 47.4167443 ], + [ 7.3728441, 47.4167453 ], + [ 7.3728445, 47.4167464 ], + [ 7.3728448, 47.4167475 ], + [ 7.3728451, 47.4167485 ], + [ 7.3728455, 47.4167496 ], + [ 7.3728459, 47.4167506 ], + [ 7.3728462, 47.4167517 ], + [ 7.3728466, 47.4167527 ], + [ 7.372847, 47.4167538 ], + [ 7.3728474, 47.4167548 ], + [ 7.3728478, 47.4167559 ], + [ 7.3728483, 47.4167569 ], + [ 7.3728487, 47.416758 ], + [ 7.3728491, 47.416759 ], + [ 7.3728496, 47.41676 ], + [ 7.3728501, 47.4167611 ], + [ 7.3728505, 47.4167621 ], + [ 7.372851, 47.4167631 ], + [ 7.3728515, 47.4167642 ], + [ 7.3728887, 47.4168444 ], + [ 7.3728886, 47.4168455 ], + [ 7.3728885, 47.4168466 ], + [ 7.3728884, 47.4168477 ], + [ 7.3728883, 47.4168489 ], + [ 7.3728882, 47.41685 ], + [ 7.3728881, 47.4168511 ], + [ 7.3728879, 47.4168523 ], + [ 7.3728878, 47.4168534 ], + [ 7.3728876, 47.4168545 ], + [ 7.3728874, 47.4168557 ], + [ 7.3728873, 47.4168568 ], + [ 7.3728871, 47.4168579 ], + [ 7.3728869, 47.416859 ], + [ 7.3728867, 47.4168601 ], + [ 7.3728864, 47.4168613 ], + [ 7.3728862, 47.4168624 ], + [ 7.372886, 47.4168635 ], + [ 7.3728857, 47.4168646 ], + [ 7.3728855, 47.4168658 ], + [ 7.3728852, 47.4168669 ], + [ 7.3728849, 47.416868 ], + [ 7.3728846, 47.4168691 ], + [ 7.3728843, 47.4168702 ], + [ 7.372884, 47.4168713 ], + [ 7.3728837, 47.4168724 ], + [ 7.3728834, 47.4168735 ], + [ 7.3728831, 47.4168747 ], + [ 7.3728827, 47.4168758 ], + [ 7.3728823, 47.4168769 ], + [ 7.372882, 47.416878 ], + [ 7.3728816, 47.4168791 ], + [ 7.3728812, 47.4168802 ], + [ 7.3728808, 47.4168813 ], + [ 7.3728804, 47.4168824 ], + [ 7.37288, 47.4168835 ], + [ 7.3728796, 47.4168846 ], + [ 7.3728791, 47.4168857 ], + [ 7.3728787, 47.4168867 ], + [ 7.3728782, 47.4168878 ], + [ 7.3728778, 47.416888900000004 ], + [ 7.3728773, 47.41689 ], + [ 7.3728768, 47.4168911 ], + [ 7.3728763, 47.4168922 ], + [ 7.3728758, 47.4168933 ], + [ 7.3728753, 47.4168943 ], + [ 7.3728748, 47.4168954 ], + [ 7.3728742, 47.4168965 ], + [ 7.3728736999999995, 47.4168976 ], + [ 7.3728731, 47.4168986 ], + [ 7.3728726, 47.4168997 ], + [ 7.372872, 47.4169008 ], + [ 7.3728714, 47.4169018 ], + [ 7.3728709, 47.4169029 ], + [ 7.3728703, 47.4169039 ], + [ 7.3728697, 47.416905 ], + [ 7.372869, 47.416906 ], + [ 7.3728684, 47.4169071 ], + [ 7.3728678, 47.4169081 ], + [ 7.3728671, 47.4169092 ], + [ 7.3728665, 47.4169102 ], + [ 7.3728658, 47.4169113 ], + [ 7.3728651, 47.4169123 ], + [ 7.3728645, 47.4169133 ], + [ 7.3728638, 47.4169144 ], + [ 7.3728631, 47.4169154 ], + [ 7.3728624, 47.4169164 ], + [ 7.3728617, 47.4169174 ], + [ 7.3728609, 47.4169184 ], + [ 7.3728602, 47.4169195 ], + [ 7.3728595, 47.4169205 ], + [ 7.3728587, 47.4169215 ], + [ 7.3728579, 47.4169225 ], + [ 7.3728572, 47.4169235 ], + [ 7.3728564, 47.4169245 ], + [ 7.3728556, 47.4169255 ], + [ 7.3728548, 47.4169265 ], + [ 7.372854, 47.4169275 ], + [ 7.3728532, 47.4169284 ], + [ 7.3728524, 47.4169294 ], + [ 7.3728516, 47.4169304 ], + [ 7.3728507, 47.4169314 ], + [ 7.3728499, 47.4169323 ], + [ 7.372849, 47.4169333 ], + [ 7.3728482, 47.4169343 ], + [ 7.3728473, 47.4169352 ], + [ 7.3728464, 47.4169362 ], + [ 7.3728455, 47.4169371 ], + [ 7.3728446, 47.4169381 ], + [ 7.3728437, 47.416939 ], + [ 7.3728428, 47.41694 ], + [ 7.3728419, 47.4169409 ], + [ 7.3728409, 47.4169419 ], + [ 7.37284, 47.4169428 ], + [ 7.3728391, 47.4169437 ], + [ 7.3728381, 47.4169446 ], + [ 7.3728371, 47.4169456 ], + [ 7.3728362, 47.4169465 ], + [ 7.3728352, 47.4169474 ], + [ 7.3728342, 47.4169483 ], + [ 7.3728332, 47.4169492 ], + [ 7.3728322, 47.4169501 ], + [ 7.3728312, 47.416951 ], + [ 7.3728302, 47.4169519 ], + [ 7.3728291, 47.4169528 ], + [ 7.3728280999999996, 47.4169537 ], + [ 7.3728271, 47.4169545 ], + [ 7.372826, 47.4169554 ], + [ 7.3728249, 47.4169563 ], + [ 7.3728239, 47.4169571 ], + [ 7.3728228, 47.416958 ], + [ 7.3728217, 47.4169589 ], + [ 7.3728206, 47.4169597 ], + [ 7.3728195, 47.4169606 ], + [ 7.3728184, 47.4169614 ], + [ 7.3728173, 47.4169622 ], + [ 7.3728162, 47.4169631 ], + [ 7.3728151, 47.4169639 ], + [ 7.3728139, 47.4169647 ], + [ 7.3728128, 47.4169656 ], + [ 7.3728117, 47.4169664 ], + [ 7.3728105, 47.4169672 ], + [ 7.3728093, 47.416968 ], + [ 7.3728082, 47.4169688 ], + [ 7.372807, 47.4169696 ], + [ 7.3728058, 47.4169704 ], + [ 7.3728046, 47.4169712 ], + [ 7.3728034000000005, 47.416972 ], + [ 7.3728022, 47.4169727 ], + [ 7.372801, 47.4169735 ], + [ 7.3727998, 47.4169743 ], + [ 7.3727986, 47.416975 ], + [ 7.3727973, 47.4169758 ], + [ 7.3727961, 47.4169765 ], + [ 7.3727948, 47.4169773 ], + [ 7.3727936, 47.416978 ], + [ 7.3727923, 47.4169788 ], + [ 7.3727911, 47.4169795 ], + [ 7.3727898, 47.4169802 ], + [ 7.3727885, 47.416981 ], + [ 7.3727872, 47.4169817 ], + [ 7.3727859, 47.4169824 ], + [ 7.3727847, 47.4169831 ], + [ 7.3727833, 47.4169838 ], + [ 7.372782, 47.4169845 ], + [ 7.3727807, 47.4169852 ], + [ 7.3727794, 47.4169859 ], + [ 7.3727781, 47.4169865 ], + [ 7.3727768, 47.4169872 ], + [ 7.3727754, 47.4169879 ], + [ 7.3727741, 47.4169885 ], + [ 7.3727727, 47.4169892 ], + [ 7.3727713999999995, 47.4169899 ], + [ 7.37277, 47.4169905 ], + [ 7.3727675999999995, 47.4169918 ], + [ 7.3727652, 47.4169931 ], + [ 7.3727629, 47.4169944 ], + [ 7.3727605, 47.4169957 ], + [ 7.3727581, 47.416997 ], + [ 7.3727557, 47.4169983 ], + [ 7.3727533, 47.4169995 ], + [ 7.3727509, 47.4170008 ], + [ 7.3727484, 47.4170021 ], + [ 7.372746, 47.4170033 ], + [ 7.3727436, 47.4170046 ], + [ 7.3727412, 47.4170058 ], + [ 7.3727387, 47.4170071 ], + [ 7.3727363, 47.4170083 ], + [ 7.3727338, 47.4170095 ], + [ 7.3727314, 47.4170108 ], + [ 7.3727289, 47.417012 ], + [ 7.3727264, 47.4170132 ], + [ 7.372724, 47.4170144 ], + [ 7.3727215, 47.4170156 ], + [ 7.372719, 47.4170168 ], + [ 7.3727165, 47.417018 ], + [ 7.372714, 47.4170192 ], + [ 7.3727115, 47.4170204 ], + [ 7.372709, 47.4170216 ], + [ 7.3727065, 47.4170228 ], + [ 7.3727039, 47.4170239 ], + [ 7.3727014, 47.4170251 ], + [ 7.3726989, 47.4170263 ], + [ 7.3726964, 47.4170274 ], + [ 7.3726938, 47.4170286 ], + [ 7.3726913, 47.4170297 ], + [ 7.3726887, 47.4170308 ], + [ 7.3726862, 47.417032 ], + [ 7.3726897, 47.4170376 ], + [ 7.3728477, 47.4172901 ], + [ 7.372515, 47.4174167 ], + [ 7.3724622, 47.4176172 ], + [ 7.3723731, 47.4176023 ], + [ 7.3720139, 47.4175422 ], + [ 7.3716519, 47.4175188 ], + [ 7.3714767, 47.4174496 ], + [ 7.3713217, 47.4174285 ], + [ 7.3712254, 47.4173947 ], + [ 7.3709308, 47.4173905 ], + [ 7.3708106, 47.4173377 ], + [ 7.3706207, 47.4173572 ], + [ 7.370425, 47.4174865 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr052", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Undere Ritzigrund", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Undere Ritzigrund", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Undere Ritzigrund", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Undere Ritzigrund", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.1568119, 47.183558 ], + [ 7.1567339, 47.181204 ], + [ 7.1564754, 47.1788561 ], + [ 7.1560369999999995, 47.1765206 ], + [ 7.1554201, 47.1742039 ], + [ 7.1546262, 47.1719125 ], + [ 7.1536576, 47.1696524 ], + [ 7.152517, 47.1674301 ], + [ 7.1512075, 47.1652515 ], + [ 7.1497327, 47.1631226 ], + [ 7.1480967, 47.1610492 ], + [ 7.146304, 47.159037 ], + [ 7.1443595, 47.1570916 ], + [ 7.1422686, 47.1552182 ], + [ 7.1400369, 47.1534219 ], + [ 7.1376706, 47.1517078 ], + [ 7.1351761, 47.1500804 ], + [ 7.1325605, 47.1485443 ], + [ 7.1298307, 47.1471036 ], + [ 7.1269942, 47.1457622 ], + [ 7.1240589, 47.144524 ], + [ 7.1210328, 47.1433921 ], + [ 7.1179241, 47.1423698 ], + [ 7.1147413, 47.1414597 ], + [ 7.1114932, 47.1406645 ], + [ 7.1081887, 47.1399863 ], + [ 7.1048367, 47.1394269 ], + [ 7.1014465, 47.1389879 ], + [ 7.0980273, 47.1386705 ], + [ 7.0945885, 47.1384754 ], + [ 7.0911394, 47.1384034 ], + [ 7.0876896, 47.1384545 ], + [ 7.0842483, 47.1386287 ], + [ 7.0808251, 47.1389254 ], + [ 7.0774294, 47.1393438 ], + [ 7.0740702, 47.1398828 ], + [ 7.070757, 47.140541 ], + [ 7.0674987, 47.1413165 ], + [ 7.0643042, 47.1422071 ], + [ 7.0611823, 47.1432106 ], + [ 7.0581416, 47.1443241 ], + [ 7.0551903, 47.1455445 ], + [ 7.0523365, 47.1468686 ], + [ 7.049588, 47.1482927 ], + [ 7.0469524, 47.1498129 ], + [ 7.0444369, 47.151425 ], + [ 7.0420484, 47.1531248 ], + [ 7.0397934, 47.1549074 ], + [ 7.0376781, 47.156768 ], + [ 7.0357083, 47.1587016 ], + [ 7.0338894, 47.1607028 ], + [ 7.0322265, 47.1627662 ], + [ 7.030724, 47.1648861 ], + [ 7.0293862, 47.1670567 ], + [ 7.0282166, 47.169272 ], + [ 7.0272186, 47.1715261 ], + [ 7.0263949, 47.1738127 ], + [ 7.0257477, 47.1761255 ], + [ 7.025279, 47.1784582 ], + [ 7.0249898, 47.1808045 ], + [ 7.0248811, 47.1831579 ], + [ 7.0249533, 47.1855119 ], + [ 7.0252061, 47.1878601 ], + [ 7.0256388, 47.1901961 ], + [ 7.0262503, 47.1925135 ], + [ 7.027039, 47.1948058 ], + [ 7.0280027, 47.1970669 ], + [ 7.0291387, 47.1992905 ], + [ 7.0304441, 47.2014705 ], + [ 7.0319152, 47.2036009 ], + [ 7.033548, 47.2056759 ], + [ 7.035338, 47.2076898 ], + [ 7.0372804, 47.209637 ], + [ 7.0393698, 47.2115123 ], + [ 7.0416005, 47.2133105 ], + [ 7.0439665, 47.2150266 ], + [ 7.0464611, 47.2166559 ], + [ 7.0490777, 47.218194 ], + [ 7.0518089, 47.2196366 ], + [ 7.0546474, 47.2209797 ], + [ 7.0575853, 47.2222198 ], + [ 7.0606146, 47.2233533 ], + [ 7.0637269, 47.2243772 ], + [ 7.0669137, 47.2252886 ], + [ 7.0701663, 47.226085 ], + [ 7.0734756, 47.2267643 ], + [ 7.0768328, 47.2273246 ], + [ 7.0802284, 47.2277643 ], + [ 7.0836532, 47.2280823 ], + [ 7.0870977, 47.2282777 ], + [ 7.0905526, 47.2283498 ], + [ 7.0940083, 47.2282986 ], + [ 7.0974552, 47.2281242 ], + [ 7.100884, 47.227827 ], + [ 7.1042853, 47.2274079 ], + [ 7.1076496, 47.226868 ], + [ 7.1109677, 47.2262088 ], + [ 7.1142306, 47.2254321 ], + [ 7.1174292, 47.22454 ], + [ 7.1205548, 47.2235351 ], + [ 7.1235988, 47.22242 ], + [ 7.1265528, 47.2211978 ], + [ 7.1294087, 47.2198719 ], + [ 7.1321587, 47.2184459 ], + [ 7.1347952, 47.2169238 ], + [ 7.1373111, 47.2153097 ], + [ 7.1396994, 47.213608 ], + [ 7.1419535, 47.2118234 ], + [ 7.1440674, 47.2099609 ], + [ 7.1460351, 47.2080255 ], + [ 7.1478514, 47.2060225 ], + [ 7.1495112, 47.2039575 ], + [ 7.1510101, 47.2018361 ], + [ 7.1523438, 47.1996641 ], + [ 7.1535089, 47.1974475 ], + [ 7.154502, 47.1951924 ], + [ 7.1553206, 47.1929049 ], + [ 7.1559624, 47.1905914 ], + [ 7.1564256, 47.1882581 ], + [ 7.156709, 47.1859115 ], + [ 7.1568119, 47.183558 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZJ001", + "country" : "CHE", + "name" : [ + { + "text" : "LSZJ Courtelary", + "lang" : "de-CH" + }, + { + "text" : "LSZJ Courtelary", + "lang" : "fr-CH" + }, + { + "text" : "LSZJ Courtelary", + "lang" : "it-CH" + }, + { + "text" : "LSZJ Courtelary", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Segelfluggruppe Biel", + "lang" : "de-CH" + }, + { + "text" : "Groupe de vol à voile Courtelary", + "lang" : "fr-CH" + }, + { + "text" : "Groupe de vol à voile Courtelary", + "lang" : "it-CH" + }, + { + "text" : "Groupe de vol à voile Courtelary", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleiter", + "lang" : "de-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "fr-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "it-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Cédric Bassin", + "lang" : "de-CH" + }, + { + "text" : "Cédric Bassin", + "lang" : "fr-CH" + }, + { + "text" : "Cédric Bassin", + "lang" : "it-CH" + }, + { + "text" : "Cédric Bassin", + "lang" : "en-GB" + } + ], + "siteURL" : "https://lszj.ch/fr/kontakt-ppr/", + "email" : "chefdaerodrome@lszj.ch", + "phone" : "0041329441280", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8168442, 46.306055 ], + [ 7.8190595, 46.3061745 ], + [ 7.8191726, 46.3060121 ], + [ 7.8191779, 46.3056649 ], + [ 7.8184066, 46.3056189 ], + [ 7.8184532, 46.3059696 ], + [ 7.8180636, 46.3059457 ], + [ 7.8178823, 46.305635 ], + [ 7.8177025, 46.3048017 ], + [ 7.8250447, 46.3046878 ], + [ 7.8246718, 46.3033531 ], + [ 7.824176, 46.3033629 ], + [ 7.8242962, 46.303833 ], + [ 7.8226517, 46.3038494 ], + [ 7.8225303, 46.3033883 ], + [ 7.821605, 46.303413 ], + [ 7.8214311, 46.3026786 ], + [ 7.8205486, 46.3026879 ], + [ 7.8206621, 46.303149 ], + [ 7.8210165, 46.303146 ], + [ 7.8212835, 46.3042031 ], + [ 7.8175845, 46.3042587 ], + [ 7.8174159, 46.3035342 ], + [ 7.8178271, 46.3034914 ], + [ 7.8177200000000004, 46.303024 ], + [ 7.8168063, 46.3030288 ], + [ 7.81709, 46.304264 ], + [ 7.8128252, 46.304333 ], + [ 7.8128471, 46.3048754 ], + [ 7.8172119, 46.3048114 ], + [ 7.8174019999999995, 46.3056339 ], + [ 7.8167491, 46.305637 ], + [ 7.8168442, 46.306055 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSTA003", + "country" : "CHE", + "name" : [ + { + "text" : "LSTA Raron (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSTA Raron (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSTA Raron (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSTA Raron (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Flugplatz Raron", + "lang" : "de-CH" + }, + { + "text" : "Flugplatz Raron", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatz Raron", + "lang" : "it-CH" + }, + { + "text" : "Flugplatz Raron", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Lisa Best", + "lang" : "de-CH" + }, + { + "text" : "Lisa Best", + "lang" : "fr-CH" + }, + { + "text" : "Lisa Best", + "lang" : "it-CH" + }, + { + "text" : "Lisa Best", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.fgo.ch", + "email" : "info@fgo.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.3849421, 47.4095501 ], + [ 7.3847068, 47.4100625 ], + [ 7.3845801, 47.4103421 ], + [ 7.3844347, 47.4109566 ], + [ 7.3843884, 47.4111567 ], + [ 7.3843332, 47.4113953 ], + [ 7.3842263, 47.4117733 ], + [ 7.3840603, 47.4123644 ], + [ 7.3840163, 47.4123731 ], + [ 7.3843913, 47.4126539 ], + [ 7.3843929, 47.4126552 ], + [ 7.3845457, 47.4126737 ], + [ 7.3847164, 47.4127312 ], + [ 7.3848576999999995, 47.4127886 ], + [ 7.3850803, 47.4128681 ], + [ 7.3853565, 47.4129541 ], + [ 7.3855888, 47.4130244 ], + [ 7.3858153, 47.4130838 ], + [ 7.3859617, 47.4130934 ], + [ 7.386154, 47.413087 ], + [ 7.3863629, 47.413089 ], + [ 7.3865839, 47.4131248 ], + [ 7.3868265, 47.4131769 ], + [ 7.3870661, 47.4131841 ], + [ 7.3873466, 47.413135 ], + [ 7.3874856, 47.4130764 ], + [ 7.3876029, 47.4130269 ], + [ 7.3878268, 47.4129256 ], + [ 7.3879965, 47.4128336 ], + [ 7.3882294, 47.4127283 ], + [ 7.3883535, 47.412676 ], + [ 7.3885146, 47.4126448 ], + [ 7.3886616, 47.412639 ], + [ 7.3888258, 47.4126185 ], + [ 7.3889381, 47.4126 ], + [ 7.3890656, 47.4125903 ], + [ 7.3892379, 47.4126008 ], + [ 7.3894616, 47.4126174 ], + [ 7.3895953, 47.4126132 ], + [ 7.3897368, 47.4126031 ], + [ 7.3899485, 47.4125736 ], + [ 7.3901958, 47.4125267 ], + [ 7.3904311, 47.4124562 ], + [ 7.3904482, 47.4124511 ], + [ 7.3906843, 47.4123583 ], + [ 7.3908494, 47.4122922 ], + [ 7.3911071, 47.412177 ], + [ 7.3910938, 47.4121595 ], + [ 7.3910219999999995, 47.4120383 ], + [ 7.3915278, 47.4117119 ], + [ 7.3917684999999995, 47.4115566 ], + [ 7.3923681, 47.4113094 ], + [ 7.3927351, 47.4112353 ], + [ 7.3930901, 47.4111157 ], + [ 7.393557, 47.4109675 ], + [ 7.3940788, 47.410906 ], + [ 7.3946552, 47.410821 ], + [ 7.3946911, 47.4105857 ], + [ 7.3949882, 47.4103728 ], + [ 7.3949982, 47.4103453 ], + [ 7.3950441, 47.4102194 ], + [ 7.3951296, 47.409985 ], + [ 7.3951597, 47.4099023 ], + [ 7.3954371, 47.4096657 ], + [ 7.3954441, 47.4095332 ], + [ 7.3954663, 47.4091127 ], + [ 7.3953666, 47.4090474 ], + [ 7.3953352, 47.40897 ], + [ 7.3951953, 47.4087603 ], + [ 7.3951301, 47.4086081 ], + [ 7.3946814, 47.4084713 ], + [ 7.3941294, 47.4083029 ], + [ 7.3939622, 47.4083605 ], + [ 7.3938013, 47.4084159 ], + [ 7.3936494, 47.4084683 ], + [ 7.3934509, 47.4085368 ], + [ 7.3930532, 47.4084483 ], + [ 7.3929788, 47.4084317 ], + [ 7.392808, 47.4084626 ], + [ 7.3923161, 47.4085516 ], + [ 7.3920751, 47.4085952 ], + [ 7.3919946, 47.4086134 ], + [ 7.3919333, 47.4086241 ], + [ 7.391901, 47.4086251 ], + [ 7.3918216, 47.4086278 ], + [ 7.3915694, 47.4086473 ], + [ 7.3913167, 47.4086669 ], + [ 7.3910591, 47.4086868 ], + [ 7.3910532, 47.408687 ], + [ 7.3907874, 47.4086964 ], + [ 7.3902436, 47.4087155 ], + [ 7.3898834, 47.4087281 ], + [ 7.3894803, 47.4087429 ], + [ 7.3894788, 47.4086859 ], + [ 7.3894801, 47.4085364 ], + [ 7.3893834, 47.4085405 ], + [ 7.389163, 47.4085534 ], + [ 7.3888227, 47.4085969 ], + [ 7.3883085, 47.4086462 ], + [ 7.3878922, 47.4086579 ], + [ 7.3876807, 47.4086721 ], + [ 7.3874088, 47.4086773 ], + [ 7.3872941, 47.4086894 ], + [ 7.3871409, 47.4086737 ], + [ 7.3871084, 47.4086596 ], + [ 7.387097, 47.4086376 ], + [ 7.3870892, 47.4085734 ], + [ 7.3870904, 47.4085323 ], + [ 7.3868333, 47.408547 ], + [ 7.3867278, 47.4085557 ], + [ 7.3865666, 47.4085682 ], + [ 7.386438, 47.4085742 ], + [ 7.3863123, 47.4085814 ], + [ 7.3861945, 47.4085867 ], + [ 7.3860726, 47.408591 ], + [ 7.3859269, 47.4085955 ], + [ 7.3858156, 47.4085975 ], + [ 7.385717, 47.4086002 ], + [ 7.3855931, 47.408601 ], + [ 7.3855129, 47.4085906 ], + [ 7.385447, 47.40858 ], + [ 7.3851914, 47.4089981 ], + [ 7.3849421, 47.4095501 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns005", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Erhollen - Chlummen", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Erhollen - Chlummen", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Erhollen - Chlummen", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Erhollen - Chlummen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.1175234, 46.1498751 ], + [ 6.1174703, 46.1499284 ], + [ 6.1174443, 46.14994 ], + [ 6.1165815, 46.1508055 ], + [ 6.1162608, 46.1518347 ], + [ 6.1165313, 46.1528707 ], + [ 6.1173517, 46.153756 ], + [ 6.1185971, 46.1543556 ], + [ 6.1190381, 46.154422 ], + [ 6.1190558, 46.1544305 ], + [ 6.1205367, 46.1546533 ], + [ 6.1220275, 46.1544653 ], + [ 6.1233012, 46.153895 ], + [ 6.124164, 46.1530295 ], + [ 6.1244845, 46.1520003 ], + [ 6.1242139, 46.1509643 ], + [ 6.1233934, 46.1500791 ], + [ 6.122148, 46.1494795 ], + [ 6.1220183, 46.1494599 ], + [ 6.1217685, 46.1493397 ], + [ 6.1202878, 46.1491169 ], + [ 6.1187971, 46.1493049 ], + [ 6.1175234, 46.1498751 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-43", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.0137968, 46.1425229 ], + [ 6.013769, 46.1425386 ], + [ 6.0136252, 46.1425337 ], + [ 6.0135172, 46.1424459 ], + [ 6.0133295, 46.1422048 ], + [ 6.0132451, 46.1421539 ], + [ 6.013081, 46.1420997 ], + [ 6.0129837, 46.1421165 ], + [ 6.0128963, 46.1421151 ], + [ 6.0128111, 46.142125 ], + [ 6.0127399, 46.1421432 ], + [ 6.0127324, 46.1421599 ], + [ 6.0126891, 46.142191 ], + [ 6.0126584, 46.1422009 ], + [ 6.0125741, 46.1422024 ], + [ 6.0124608, 46.1421839 ], + [ 6.0123798, 46.1421449 ], + [ 6.0123646, 46.1421471 ], + [ 6.0123256, 46.1421362 ], + [ 6.0122906, 46.1421209 ], + [ 6.0122625, 46.1421267 ], + [ 6.012194, 46.142119 ], + [ 6.0121078, 46.1421183 ], + [ 6.0120254, 46.142125 ], + [ 6.0119572, 46.142133 ], + [ 6.0119063, 46.1421451 ], + [ 6.0117588, 46.1421641 ], + [ 6.0117375, 46.1421688 ], + [ 6.0116595, 46.1421745 ], + [ 6.0116223, 46.1421721 ], + [ 6.011518, 46.1421736 ], + [ 6.0114272, 46.1421684 ], + [ 6.0114086, 46.1421638 ], + [ 6.0112976, 46.1421495 ], + [ 6.0111548, 46.142111 ], + [ 6.0110393, 46.1420315 ], + [ 6.0110062, 46.1419839 ], + [ 6.0109495, 46.1419353 ], + [ 6.0109144, 46.1419286 ], + [ 6.0108564, 46.1419467 ], + [ 6.0107865, 46.1419862 ], + [ 6.0107602, 46.1420226 ], + [ 6.0107325, 46.1420654 ], + [ 6.0107235, 46.1421164 ], + [ 6.0106986, 46.1421571 ], + [ 6.0106759, 46.1421613 ], + [ 6.010639, 46.1421896 ], + [ 6.0105773, 46.1422242 ], + [ 6.0105149, 46.1422471 ], + [ 6.0104949, 46.1422482 ], + [ 6.0104751, 46.1422406 ], + [ 6.0104162, 46.1422289 ], + [ 6.0103632, 46.1422279 ], + [ 6.0102654, 46.1422195 ], + [ 6.0102509, 46.1422131 ], + [ 6.0101707, 46.1421959 ], + [ 6.0101243, 46.142213 ], + [ 6.0100218, 46.1421844 ], + [ 6.0099186, 46.1421613 ], + [ 6.0098722, 46.1421583 ], + [ 6.0098402, 46.1421507 ], + [ 6.0097304, 46.1421029 ], + [ 6.0097079, 46.1421086 ], + [ 6.0096033, 46.1420923 ], + [ 6.0095635, 46.1421102 ], + [ 6.0095159, 46.1421529 ], + [ 6.0094581, 46.1422635 ], + [ 6.0095068, 46.1422855 ], + [ 6.0095161, 46.1423113 ], + [ 6.0095135, 46.1423532 ], + [ 6.0095237, 46.1424303 ], + [ 6.0094868, 46.1424686 ], + [ 6.0093943, 46.1425262 ], + [ 6.0092662, 46.1425911 ], + [ 6.0092133, 46.1426272 ], + [ 6.0091483, 46.1426415 ], + [ 6.0090432, 46.1426497 ], + [ 6.0090166, 46.1426586 ], + [ 6.0090028, 46.142669 ], + [ 6.0089291, 46.1426936 ], + [ 6.0088812, 46.1427198 ], + [ 6.0087842, 46.1427609 ], + [ 6.0087277, 46.1427779 ], + [ 6.008674, 46.1427907 ], + [ 6.0086462, 46.142801 ], + [ 6.008571, 46.1428117 ], + [ 6.0085476, 46.142819 ], + [ 6.0084423, 46.1428123 ], + [ 6.0082659, 46.1427851 ], + [ 6.0080499, 46.1426939 ], + [ 6.0079451, 46.1426721 ], + [ 6.007692, 46.1425951 ], + [ 6.007542, 46.1425249 ], + [ 6.0074446, 46.1424718 ], + [ 6.0073561, 46.1423909 ], + [ 6.0073103, 46.1423612 ], + [ 6.0072192, 46.1423229 ], + [ 6.0071448, 46.1422772 ], + [ 6.0070619, 46.1422365 ], + [ 6.0069143, 46.1421891 ], + [ 6.0067874, 46.1421453 ], + [ 6.0067412, 46.1421322 ], + [ 6.0066047, 46.1421079 ], + [ 6.0063122, 46.1422385 ], + [ 6.0061904, 46.1422537 ], + [ 6.0049157, 46.1428226 ], + [ 6.0040511, 46.1436872 ], + [ 6.0037284, 46.144716 ], + [ 6.0039967, 46.1457524 ], + [ 6.0048152, 46.1466384 ], + [ 6.0060592, 46.1472394 ], + [ 6.0075394, 46.1474636 ], + [ 6.0079768, 46.1474089 ], + [ 6.0080338, 46.1474175 ], + [ 6.0095248, 46.147231 ], + [ 6.0107996, 46.1466621 ], + [ 6.010944, 46.1465176 ], + [ 6.0119459, 46.1463922 ], + [ 6.0132206, 46.1458232 ], + [ 6.0140851, 46.1449585 ], + [ 6.0144076, 46.1439297 ], + [ 6.0141391, 46.1428934 ], + [ 6.0137968, 46.1425229 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-37", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5372752, 47.5212356 ], + [ 7.5372919, 47.5213452 ], + [ 7.5373966, 47.5220497 ], + [ 7.5374906, 47.5226786 ], + [ 7.5374158, 47.5233767 ], + [ 7.5374127, 47.5234052 ], + [ 7.5379271, 47.5234989 ], + [ 7.5380027, 47.5234984 ], + [ 7.53852, 47.5233216 ], + [ 7.5385936000000004, 47.5232962 ], + [ 7.5386406, 47.5232571 ], + [ 7.5386687, 47.5232079 ], + [ 7.5386801, 47.523158 ], + [ 7.5386754, 47.5230488 ], + [ 7.538658, 47.5229516 ], + [ 7.5386444, 47.5228903 ], + [ 7.53864, 47.5228704 ], + [ 7.5385926, 47.5226578 ], + [ 7.5385173, 47.5223202 ], + [ 7.5385077, 47.5222345 ], + [ 7.5385229, 47.5221923 ], + [ 7.5385393, 47.5221431 ], + [ 7.5386786, 47.5218815 ], + [ 7.538657, 47.5217483 ], + [ 7.5385758, 47.5216506 ], + [ 7.5381715, 47.5213866 ], + [ 7.5380212, 47.5212452 ], + [ 7.5379244, 47.5210998 ], + [ 7.5378786, 47.5209778 ], + [ 7.5378203, 47.5208332 ], + [ 7.5378234, 47.5207717 ], + [ 7.5375116, 47.5210356 ], + [ 7.5372752, 47.5212356 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns146", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Kuegraben - Weiher", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Kuegraben - Weiher", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Kuegraben - Weiher", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Kuegraben - Weiher", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8631813, 47.4842031 ], + [ 7.8631872, 47.4842344 ], + [ 7.8631071, 47.4842417 ], + [ 7.8630648, 47.4842472 ], + [ 7.8630230999999995, 47.4842542 ], + [ 7.862982, 47.4842629 ], + [ 7.8628397, 47.4842979 ], + [ 7.8626997, 47.4843369 ], + [ 7.8625621, 47.4843797 ], + [ 7.8625083, 47.4843989 ], + [ 7.8624565, 47.4844206 ], + [ 7.8624072, 47.4844448 ], + [ 7.8620985, 47.484607 ], + [ 7.861963, 47.4846741 ], + [ 7.8617425999999995, 47.4847736 ], + [ 7.861512, 47.4848751 ], + [ 7.8613938999999995, 47.4849159 ], + [ 7.8612772, 47.4849585 ], + [ 7.8611618, 47.4850027 ], + [ 7.8610242, 47.4850779 ], + [ 7.8609265, 47.4851336 ], + [ 7.8608236, 47.4851848 ], + [ 7.8607157999999995, 47.4852313 ], + [ 7.8605506, 47.4852971 ], + [ 7.8604699, 47.4853314 ], + [ 7.8603933, 47.4853698 ], + [ 7.8603214999999995, 47.4854123 ], + [ 7.8602549, 47.4854584 ], + [ 7.8601947, 47.4855029 ], + [ 7.8601367, 47.4855488 ], + [ 7.8600811, 47.4855959 ], + [ 7.8600224, 47.4856285 ], + [ 7.8599035, 47.4856925 ], + [ 7.8598089, 47.4857509 ], + [ 7.8597182, 47.4858121 ], + [ 7.8596316, 47.485876 ], + [ 7.8595904999999995, 47.4859062 ], + [ 7.8595532, 47.4859386 ], + [ 7.85952, 47.485973 ], + [ 7.8594697, 47.4860166 ], + [ 7.8593687, 47.4861513 ], + [ 7.8593448, 47.4861853 ], + [ 7.8593250999999995, 47.4862206 ], + [ 7.8593098, 47.4862568 ], + [ 7.859299, 47.4862938 ], + [ 7.8592927, 47.4863313 ], + [ 7.8592897, 47.4863988 ], + [ 7.8592898, 47.4864663 ], + [ 7.8592932, 47.4865338 ], + [ 7.8593012, 47.4866392 ], + [ 7.8593221, 47.4867439 ], + [ 7.8593559, 47.486847 ], + [ 7.8594093, 47.4869197 ], + [ 7.8594722, 47.4869889 ], + [ 7.8595441, 47.4870539 ], + [ 7.8596353, 47.4871175 ], + [ 7.859788, 47.4872171 ], + [ 7.859987, 47.4873398 ], + [ 7.8600872, 47.4874005 ], + [ 7.860296, 47.4875186 ], + [ 7.8603473, 47.4875459 ], + [ 7.8604018, 47.4875702 ], + [ 7.8604589, 47.4875914 ], + [ 7.8605184999999995, 47.4876094 ], + [ 7.860580000000001, 47.487624 ], + [ 7.8606431, 47.4876352 ], + [ 7.8609067, 47.4876764 ], + [ 7.8609658, 47.487688 ], + [ 7.8610233, 47.4877028 ], + [ 7.8610789, 47.4877206 ], + [ 7.8611322, 47.4877414 ], + [ 7.8611828, 47.4877651 ], + [ 7.8613956, 47.4878605 ], + [ 7.8615426, 47.4879216 ], + [ 7.8617007999999995, 47.4879826 ], + [ 7.8618192, 47.4880195 ], + [ 7.8619399, 47.4880529 ], + [ 7.8620626, 47.4880826 ], + [ 7.8619599000000004, 47.4880332 ], + [ 7.8618651, 47.4879771 ], + [ 7.8617791, 47.4879148 ], + [ 7.8617361, 47.4878829 ], + [ 7.8616974, 47.4878487 ], + [ 7.8616631, 47.4878124 ], + [ 7.8616335, 47.4877742 ], + [ 7.8614947, 47.4875852 ], + [ 7.8614446000000004, 47.4875236 ], + [ 7.8613885, 47.4874645 ], + [ 7.8613265, 47.4874081 ], + [ 7.8612755, 47.4873686 ], + [ 7.8612196, 47.4873321 ], + [ 7.8611593, 47.4872991 ], + [ 7.8610951, 47.4872697 ], + [ 7.8610223999999995, 47.4872366 ], + [ 7.8609528, 47.4872006 ], + [ 7.8608866, 47.4871617 ], + [ 7.8607976, 47.4870945 ], + [ 7.8607186, 47.4870217 ], + [ 7.8606504, 47.486944 ], + [ 7.8606194, 47.4869067 ], + [ 7.8605926, 47.4868679 ], + [ 7.8605701, 47.4868279 ], + [ 7.8605244, 47.4867596 ], + [ 7.8605158, 47.4866965 ], + [ 7.8605382, 47.4866178 ], + [ 7.8605992, 47.4865588 ], + [ 7.8606236, 47.4865194 ], + [ 7.8606531, 47.4864816 ], + [ 7.8606874, 47.4864458 ], + [ 7.8607262, 47.4864121 ], + [ 7.8607692, 47.4863809 ], + [ 7.8608162, 47.4863524 ], + [ 7.8608699, 47.4863216 ], + [ 7.8609262, 47.4862929 ], + [ 7.860985, 47.4862666 ], + [ 7.8610600999999996, 47.4862356 ], + [ 7.8612489, 47.4861341 ], + [ 7.8615033, 47.4860148 ], + [ 7.861607, 47.4859673 ], + [ 7.8617048, 47.4859145 ], + [ 7.8617962, 47.4858566 ], + [ 7.8618602, 47.485805 ], + [ 7.8619263, 47.4857547 ], + [ 7.8619945, 47.4857057 ], + [ 7.8621028, 47.4856394 ], + [ 7.8622145, 47.4855759 ], + [ 7.8623296, 47.4855151 ], + [ 7.8624732999999996, 47.4854368 ], + [ 7.8626192, 47.4853605 ], + [ 7.8627674, 47.4852862 ], + [ 7.8628519, 47.4852425 ], + [ 7.8629385, 47.4852007 ], + [ 7.863027, 47.4851608 ], + [ 7.8631331, 47.4851147 ], + [ 7.8632349, 47.4850644 ], + [ 7.8633322, 47.4850101 ], + [ 7.8633313, 47.4850053 ], + [ 7.8633934, 47.4849704 ], + [ 7.8634029, 47.4849655 ], + [ 7.8634129999999995, 47.484961 ], + [ 7.8634236, 47.4849571 ], + [ 7.8634346, 47.4849537 ], + [ 7.8634459, 47.4849509 ], + [ 7.8634575, 47.4849487 ], + [ 7.8634693, 47.4849471 ], + [ 7.8634813, 47.484946 ], + [ 7.8634934, 47.4849457 ], + [ 7.8635054, 47.4849459 ], + [ 7.8635174, 47.4849467 ], + [ 7.8635293, 47.4849482 ], + [ 7.8635409, 47.4849503 ], + [ 7.8636385, 47.4849702 ], + [ 7.8636653, 47.484976 ], + [ 7.8636918, 47.4849823 ], + [ 7.863718, 47.4849891 ], + [ 7.8637439, 47.4849965 ], + [ 7.8637695, 47.4850043 ], + [ 7.8637948, 47.4850127 ], + [ 7.8638197, 47.4850216 ], + [ 7.8638441, 47.4850309 ], + [ 7.8638682, 47.4850408 ], + [ 7.8638918, 47.4850511 ], + [ 7.8639149, 47.4850619 ], + [ 7.8639376, 47.4850731 ], + [ 7.864179, 47.4851965 ], + [ 7.8641965, 47.4852058 ], + [ 7.8642138, 47.4852154 ], + [ 7.8642306, 47.4852252 ], + [ 7.8642472, 47.4852354 ], + [ 7.8642633, 47.4852458 ], + [ 7.8644067, 47.485135 ], + [ 7.8648504, 47.4847924 ], + [ 7.8648853, 47.4847661 ], + [ 7.8646468, 47.4846005 ], + [ 7.8643106, 47.4843835 ], + [ 7.8640672, 47.4842261 ], + [ 7.8640527, 47.4842171 ], + [ 7.8640377, 47.4842084 ], + [ 7.8640223, 47.4842 ], + [ 7.8640064, 47.4841921 ], + [ 7.8639902, 47.4841845 ], + [ 7.8639736, 47.4841773 ], + [ 7.8639566, 47.4841705 ], + [ 7.8638291, 47.4841214 ], + [ 7.8638046, 47.4841017 ], + [ 7.8636793, 47.4840931 ], + [ 7.8636646, 47.4840921 ], + [ 7.8635804, 47.4841535 ], + [ 7.8635738, 47.4841579 ], + [ 7.8635666, 47.4841618 ], + [ 7.8635589, 47.4841651 ], + [ 7.8635507, 47.484168 ], + [ 7.8635421, 47.4841703 ], + [ 7.8635333, 47.484172 ], + [ 7.8635242, 47.4841731 ], + [ 7.8631813, 47.4842031 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns276", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Farnsberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Farnsberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Farnsberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Farnsberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.6181804, 46.5570325 ], + [ 6.6181772, 46.5568912 ], + [ 6.6181632, 46.5567502 ], + [ 6.6181386, 46.55661 ], + [ 6.6181034, 46.5564708 ], + [ 6.6180577, 46.5563331 ], + [ 6.6180015999999995, 46.5561972 ], + [ 6.6179352, 46.5560635 ], + [ 6.6178589, 46.5559324 ], + [ 6.6177726, 46.5558043 ], + [ 6.6176768, 46.5556794 ], + [ 6.6175716, 46.5555582 ], + [ 6.6174574, 46.5554409 ], + [ 6.6173344, 46.5553279 ], + [ 6.617203, 46.5552195 ], + [ 6.6170636, 46.555116 ], + [ 6.6169166, 46.5550177 ], + [ 6.6167622, 46.5549248 ], + [ 6.6166011000000005, 46.5548377 ], + [ 6.6164335, 46.5547564 ], + [ 6.6162600000000005, 46.5546813 ], + [ 6.6160811, 46.5546126 ], + [ 6.6158971, 46.5545504 ], + [ 6.6157088, 46.554495 ], + [ 6.6155164, 46.5544465 ], + [ 6.6153207, 46.5544049 ], + [ 6.6151221, 46.5543705 ], + [ 6.6149211, 46.5543433 ], + [ 6.6147183, 46.5543234 ], + [ 6.6145143, 46.5543108 ], + [ 6.6143097, 46.5543056 ], + [ 6.6141049, 46.5543078 ], + [ 6.6139005, 46.5543174 ], + [ 6.6136972, 46.5543344 ], + [ 6.6134955, 46.5543587 ], + [ 6.6132957999999995, 46.5543902 ], + [ 6.6130989, 46.5544289 ], + [ 6.6129051, 46.5544747 ], + [ 6.6127151, 46.5545273 ], + [ 6.6125293, 46.5545868 ], + [ 6.6123483, 46.5546529 ], + [ 6.6121725, 46.5547255 ], + [ 6.6120025, 46.5548043 ], + [ 6.6118387, 46.5548891 ], + [ 6.6116816, 46.5549797 ], + [ 6.6115316, 46.5550759 ], + [ 6.611389, 46.5551773 ], + [ 6.6112544, 46.5552838 ], + [ 6.611128, 46.5553949 ], + [ 6.6110102, 46.5555105 ], + [ 6.6109013, 46.5556302 ], + [ 6.6108017, 46.5557537 ], + [ 6.6107116, 46.5558805 ], + [ 6.6106312, 46.5560105 ], + [ 6.6105608, 46.5561432 ], + [ 6.6105006, 46.5562782 ], + [ 6.6104507, 46.5564152 ], + [ 6.6104112, 46.5565539 ], + [ 6.6103822999999995, 46.5566937 ], + [ 6.6103641, 46.5568345 ], + [ 6.6103566, 46.5569757 ], + [ 6.6103598, 46.5571169 ], + [ 6.6103737, 46.5572579 ], + [ 6.6103983, 46.5573981 ], + [ 6.6104335, 46.5575373 ], + [ 6.6104792, 46.5576751 ], + [ 6.6105353000000004, 46.5578109 ], + [ 6.6106016, 46.5579446 ], + [ 6.6106779, 46.5580757 ], + [ 6.6107642, 46.5582039 ], + [ 6.61086, 46.5583287 ], + [ 6.6109652, 46.55845 ], + [ 6.6110793999999995, 46.5585673 ], + [ 6.6112023, 46.5586802 ], + [ 6.6113337, 46.5587886 ], + [ 6.6114730999999995, 46.5588922 ], + [ 6.6116202, 46.5589905 ], + [ 6.6117745, 46.5590834 ], + [ 6.6119357, 46.5591706 ], + [ 6.6121033, 46.5592518 ], + [ 6.6122768, 46.5593269 ], + [ 6.6124557, 46.5593956 ], + [ 6.6126397, 46.5594578 ], + [ 6.6128281, 46.5595132 ], + [ 6.6130204, 46.5595618 ], + [ 6.6132162, 46.5596034 ], + [ 6.6134148, 46.5596378 ], + [ 6.6136158, 46.559665 ], + [ 6.6138186, 46.5596849 ], + [ 6.6140226, 46.5596975 ], + [ 6.6142273, 46.5597027 ], + [ 6.6144321, 46.5597004 ], + [ 6.6146365, 46.5596908 ], + [ 6.6148398, 46.5596739 ], + [ 6.6150416, 46.5596496 ], + [ 6.6152412, 46.5596181 ], + [ 6.6154382, 46.5595794 ], + [ 6.615632, 46.5595336 ], + [ 6.615822, 46.5594809 ], + [ 6.6160078, 46.5594214 ], + [ 6.6161888, 46.5593553 ], + [ 6.6163646, 46.5592828 ], + [ 6.6165346, 46.559204 ], + [ 6.6166984, 46.5591191 ], + [ 6.6168555, 46.5590285 ], + [ 6.6170056, 46.5589323 ], + [ 6.6171481, 46.5588309 ], + [ 6.6172828, 46.5587244 ], + [ 6.6174092, 46.558613199999996 ], + [ 6.6175269, 46.5584976 ], + [ 6.6176358, 46.558377899999996 ], + [ 6.6177354, 46.5582545 ], + [ 6.6178255, 46.5581276 ], + [ 6.6179059, 46.5579977 ], + [ 6.6179763, 46.557865 ], + [ 6.6180365, 46.5577299 ], + [ 6.6180864, 46.5575929 ], + [ 6.6181258, 46.5574543 ], + [ 6.6181547, 46.5573144 ], + [ 6.6181729, 46.5571737 ], + [ 6.6181804, 46.5570325 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0100", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Romanel", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Romanel", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Romanel", + "lang" : "it-CH" + }, + { + "text" : "Substation Romanel", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.3114937, 46.6172417 ], + [ 8.311486, 46.6171005 ], + [ 8.3114677, 46.6169598 ], + [ 8.3114386, 46.6168199 ], + [ 8.311399, 46.6166813 ], + [ 8.3113489, 46.6165443 ], + [ 8.3112885, 46.6164093 ], + [ 8.3112179, 46.6162766 ], + [ 8.3111374, 46.6161467 ], + [ 8.311047, 46.6160199 ], + [ 8.3109472, 46.6158964 ], + [ 8.3108381, 46.6157768 ], + [ 8.3107201, 46.6156613 ], + [ 8.3105935, 46.6155501 ], + [ 8.3104586, 46.6154437 ], + [ 8.310315899999999, 46.6153423 ], + [ 8.3101656, 46.6152462 ], + [ 8.3100082, 46.6151557 ], + [ 8.3098442, 46.6150709 ], + [ 8.3096739, 46.6149922 ], + [ 8.3094979, 46.6149197 ], + [ 8.3093166, 46.6148537 ], + [ 8.3091306, 46.6147942 ], + [ 8.3089403, 46.6147416 ], + [ 8.3087463, 46.614696 ], + [ 8.3085491, 46.6146573 ], + [ 8.3083492, 46.6146259 ], + [ 8.3081472, 46.6146017 ], + [ 8.3079436, 46.6145848 ], + [ 8.3077391, 46.6145752 ], + [ 8.3075341, 46.6145731 ], + [ 8.3073292, 46.6145784 ], + [ 8.3071249, 46.614591 ], + [ 8.306922, 46.614611 ], + [ 8.3067208, 46.6146383 ], + [ 8.306522, 46.6146728 ], + [ 8.306326, 46.6147144 ], + [ 8.3061335, 46.614762999999996 ], + [ 8.305945, 46.6148185 ], + [ 8.3057609, 46.6148808 ], + [ 8.3055818, 46.6149496 ], + [ 8.3054082, 46.6150247 ], + [ 8.3052405, 46.615106 ], + [ 8.3050792, 46.6151933 ], + [ 8.3049248, 46.6152862 ], + [ 8.3047776, 46.6153846 ], + [ 8.3046382, 46.6154881 ], + [ 8.3045067, 46.6155966 ], + [ 8.3043837, 46.6157096 ], + [ 8.3042694, 46.6158269 ], + [ 8.3041642, 46.6159482 ], + [ 8.3040684, 46.6160731 ], + [ 8.3039822, 46.6162013 ], + [ 8.3039058, 46.6163324 ], + [ 8.3038395, 46.6164661 ], + [ 8.3037834, 46.616602 ], + [ 8.3037378, 46.6167397 ], + [ 8.3037026, 46.6168789 ], + [ 8.3036781, 46.6170192 ], + [ 8.3036643, 46.6171602 ], + [ 8.3036612, 46.6173014 ], + [ 8.3036688, 46.6174426 ], + [ 8.3036871, 46.6175833 ], + [ 8.3037161, 46.6177232 ], + [ 8.3037557, 46.6178618 ], + [ 8.3038058, 46.6179988 ], + [ 8.3038662, 46.6181338 ], + [ 8.3039367, 46.6182665 ], + [ 8.3040173, 46.6183964 ], + [ 8.3041076, 46.6185233 ], + [ 8.3042074, 46.6186467 ], + [ 8.3043165, 46.6187663 ], + [ 8.3044345, 46.6188819 ], + [ 8.3045611, 46.618993 ], + [ 8.304696, 46.6190994 ], + [ 8.3048388, 46.6192008 ], + [ 8.3049891, 46.6192969 ], + [ 8.3051464, 46.6193875 ], + [ 8.3053105, 46.6194723 ], + [ 8.3054807, 46.619551 ], + [ 8.3056568, 46.6196235 ], + [ 8.305838, 46.6196895 ], + [ 8.3060241, 46.619749 ], + [ 8.3062144, 46.6198016 ], + [ 8.3064084, 46.6198473 ], + [ 8.3066056, 46.6198859 ], + [ 8.3068055, 46.6199174 ], + [ 8.3070076, 46.6199416 ], + [ 8.3072111, 46.6199585 ], + [ 8.3074157, 46.619968 ], + [ 8.3076208, 46.6199701 ], + [ 8.3078257, 46.6199649 ], + [ 8.3080299, 46.6199522 ], + [ 8.3082329, 46.6199322 ], + [ 8.3084341, 46.6199049 ], + [ 8.3086329, 46.619870399999996 ], + [ 8.3088289, 46.6198288 ], + [ 8.3090214, 46.6197802 ], + [ 8.30921, 46.6197247 ], + [ 8.3093941, 46.6196624 ], + [ 8.309573199999999, 46.6195936 ], + [ 8.3097468, 46.6195185 ], + [ 8.3099145, 46.6194372 ], + [ 8.3100758, 46.6193499 ], + [ 8.3102302, 46.619257 ], + [ 8.3103774, 46.6191586 ], + [ 8.3105169, 46.619055 ], + [ 8.3106483, 46.6189466 ], + [ 8.3107713, 46.6188335 ], + [ 8.3108856, 46.6187162 ], + [ 8.3109907, 46.6185949 ], + [ 8.3110866, 46.61847 ], + [ 8.3111728, 46.6183418 ], + [ 8.3112491, 46.6182107 ], + [ 8.3113154, 46.618077 ], + [ 8.3113715, 46.6179411 ], + [ 8.3114171, 46.6178034 ], + [ 8.3114523, 46.6176642 ], + [ 8.3114768, 46.6175239 ], + [ 8.3114906, 46.6173829 ], + [ 8.3114937, 46.6172417 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0052", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Handeck", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Handeck", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Handeck", + "lang" : "it-CH" + }, + { + "text" : "Substation Handeck", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5089144999999995, 47.3898274 ], + [ 7.5087752, 47.3900468 ], + [ 7.5087064, 47.3901656 ], + [ 7.5095218, 47.3906206 ], + [ 7.5098372, 47.3907868 ], + [ 7.5099877, 47.3908773 ], + [ 7.5101194, 47.3909512 ], + [ 7.5102569, 47.3910321 ], + [ 7.5104407, 47.3911167 ], + [ 7.5106053, 47.3911651 ], + [ 7.5107482999999995, 47.3911933 ], + [ 7.5109231, 47.391205 ], + [ 7.5111053, 47.3911905 ], + [ 7.5113084, 47.3911714 ], + [ 7.5114918, 47.3911394 ], + [ 7.511883, 47.3910931 ], + [ 7.5123338, 47.3910172 ], + [ 7.5128752, 47.3909422 ], + [ 7.5133085, 47.3908619 ], + [ 7.5135301, 47.3908042 ], + [ 7.5137507, 47.3907372 ], + [ 7.5139833, 47.3906382 ], + [ 7.5142553, 47.3905209 ], + [ 7.5144511, 47.3904536 ], + [ 7.5150524, 47.3903935 ], + [ 7.5152803, 47.3903727 ], + [ 7.5155591, 47.3903721 ], + [ 7.5158462, 47.3903866 ], + [ 7.5158952, 47.3903867 ], + [ 7.515921, 47.3888174 ], + [ 7.5141674, 47.3891633 ], + [ 7.5135088, 47.3893725 ], + [ 7.5116781, 47.3894735 ], + [ 7.5113016, 47.3897476 ], + [ 7.5107162, 47.3895624 ], + [ 7.51001, 47.389004 ], + [ 7.5099523, 47.3889719 ], + [ 7.5099406, 47.3889654 ], + [ 7.5094269, 47.3893896 ], + [ 7.5091144, 47.3896342 ], + [ 7.5089144999999995, 47.3898274 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns227", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Stürmen - Eggfels - Bännli", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Stürmen - Eggfels - Bännli", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Stürmen - Eggfels - Bännli", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Stürmen - Eggfels - Bännli", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.9305534, 47.4055739 ], + [ 7.9304875, 47.4056792 ], + [ 7.9306985999999995, 47.405765 ], + [ 7.9307709, 47.4057956 ], + [ 7.9308536, 47.4058013 ], + [ 7.9311888, 47.4059275 ], + [ 7.9313166, 47.4059683 ], + [ 7.9315814, 47.4059867 ], + [ 7.931901, 47.4060521 ], + [ 7.9320086, 47.406159099999996 ], + [ 7.9321478, 47.4062589 ], + [ 7.9323258, 47.4063713 ], + [ 7.9324427, 47.406445 ], + [ 7.9324724, 47.4064951 ], + [ 7.9325548, 47.4066342 ], + [ 7.9325553, 47.4066402 ], + [ 7.9325607, 47.4067055 ], + [ 7.9323809999999995, 47.4067917 ], + [ 7.9322419, 47.406925 ], + [ 7.9323649, 47.4069604 ], + [ 7.932488, 47.4069958 ], + [ 7.9327418, 47.4070175 ], + [ 7.9330217, 47.4069882 ], + [ 7.9332068, 47.4068113 ], + [ 7.9333402, 47.4066558 ], + [ 7.9336287, 47.4064362 ], + [ 7.933752, 47.4063159 ], + [ 7.9337406, 47.4062033 ], + [ 7.933584, 47.4060913 ], + [ 7.9334585, 47.4059862 ], + [ 7.933011, 47.4058402 ], + [ 7.9324072, 47.4056174 ], + [ 7.9318041, 47.405472 ], + [ 7.9315027, 47.4054099 ], + [ 7.9313676, 47.4053894 ], + [ 7.9311809, 47.4053901 ], + [ 7.9308903, 47.4053773 ], + [ 7.9306774, 47.4053668 ], + [ 7.9304123, 47.4053019 ], + [ 7.9303857, 47.4054063 ], + [ 7.9305534, 47.4055739 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr083", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne In der Chuchi", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage In der Chuchi", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica In der Chuchi", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge In der Chuchi", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.2894723, 46.231224 ], + [ 6.2887484, 46.231043 ], + [ 6.2875318, 46.2310164 ], + [ 6.286363, 46.2312521 ], + [ 6.2862407000000005, 46.231292 ], + [ 6.2852323, 46.2317681 ], + [ 6.2844859, 46.2324376 ], + [ 6.2840751, 46.2332345 ], + [ 6.2840746, 46.233247 ], + [ 6.2840376, 46.2332747 ], + [ 6.2835274, 46.2340413 ], + [ 6.2833836, 46.2348799 ], + [ 6.2836203, 46.2357082 ], + [ 6.2842143, 46.2364452 ], + [ 6.2843136, 46.2365327 ], + [ 6.2854665, 46.2372168 ], + [ 6.2869089, 46.2375428 ], + [ 6.2884212999999995, 46.237461 ], + [ 6.2897736, 46.236984 ], + [ 6.2901015000000005, 46.236805 ], + [ 6.2910881, 46.236005 ], + [ 6.2915583999999996, 46.2350038 ], + [ 6.2915427, 46.2348641 ], + [ 6.2916834999999995, 46.2347013 ], + [ 6.2921667, 46.2348768 ], + [ 6.2936766, 46.2349713 ], + [ 6.2937226, 46.2349679 ], + [ 6.2949004, 46.2347472 ], + [ 6.2959216, 46.234284099999996 ], + [ 6.2966858, 46.2336242 ], + [ 6.2971179, 46.2328326 ], + [ 6.2971365, 46.2325574 ], + [ 6.2973059, 46.2323235 ], + [ 6.2974188, 46.2312782 ], + [ 6.2969492, 46.2302819 ], + [ 6.2969, 46.2302211 ], + [ 6.2968222, 46.2301249 ], + [ 6.2960617, 46.2294579 ], + [ 6.2950398, 46.2289884 ], + [ 6.293858, 46.2287628 ], + [ 6.2926339, 46.2288038 ], + [ 6.2914889, 46.2291071 ], + [ 6.291397, 46.2291438 ], + [ 6.2911591, 46.2292876 ], + [ 6.2910312, 46.2293484 ], + [ 6.2908255, 46.2294619 ], + [ 6.2906313, 46.2295848 ], + [ 6.2904494, 46.2297164 ], + [ 6.2902689, 46.2298255 ], + [ 6.2901752, 46.2299543 ], + [ 6.2899635, 46.2301845 ], + [ 6.2897861, 46.2304284 ], + [ 6.289645, 46.2306834 ], + [ 6.289595, 46.2307522 ], + [ 6.2895875, 46.230817 ], + [ 6.2895414, 46.2309475 ], + [ 6.2895048, 46.2310794 ], + [ 6.2894776, 46.2312124 ], + [ 6.2894723, 46.231224 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-25", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.0564222, 46.8319889 ], + [ 7.0565671, 46.8317013 ], + [ 7.05719, 46.831848 ], + [ 7.0576452, 46.8319553 ], + [ 7.0579273, 46.8320219 ], + [ 7.0579403, 46.8319277 ], + [ 7.0575964, 46.8318469 ], + [ 7.0578262, 46.8313862 ], + [ 7.0579365, 46.8311651 ], + [ 7.0570787, 46.8309921 ], + [ 7.0573201, 46.83051 ], + [ 7.0554311, 46.8300922 ], + [ 7.0554781, 46.8299988 ], + [ 7.0555053, 46.8300055 ], + [ 7.0556644, 46.8297388 ], + [ 7.0555824, 46.829721 ], + [ 7.0556404, 46.829604 ], + [ 7.0557189, 46.8294451 ], + [ 7.0557711, 46.829457 ], + [ 7.0557712, 46.8294571 ], + [ 7.0565258, 46.8296291 ], + [ 7.0565978, 46.8296509 ], + [ 7.0569968, 46.829753 ], + [ 7.0574274, 46.8288435 ], + [ 7.0565938, 46.8286156 ], + [ 7.0552817, 46.8285196 ], + [ 7.0545216, 46.8283506 ], + [ 7.0536058, 46.8282586 ], + [ 7.0526032, 46.8280835 ], + [ 7.0525781, 46.8281385 ], + [ 7.0512955999999996, 46.8277944 ], + [ 7.0507068, 46.8276348 ], + [ 7.0502988, 46.8274506 ], + [ 7.0498673, 46.8277115 ], + [ 7.04978, 46.8280276 ], + [ 7.0497448, 46.8285278 ], + [ 7.0497312, 46.8287212 ], + [ 7.0494344, 46.8287695 ], + [ 7.0489335, 46.8288709 ], + [ 7.0482763, 46.8290134 ], + [ 7.0484491, 46.8295459 ], + [ 7.0487915, 46.829623 ], + [ 7.0490901, 46.8297241 ], + [ 7.0494375, 46.8298792 ], + [ 7.049713, 46.8300269 ], + [ 7.0500466, 46.8302223 ], + [ 7.0503698, 46.8304186 ], + [ 7.0506756, 46.830605 ], + [ 7.0509953, 46.8307992 ], + [ 7.0513056, 46.8309876 ], + [ 7.0513581, 46.8310258 ], + [ 7.0524521, 46.8316987 ], + [ 7.0529412, 46.8319796 ], + [ 7.0533932, 46.8321909 ], + [ 7.0539068, 46.8323723 ], + [ 7.0544772, 46.8325226 ], + [ 7.0559398, 46.8329468 ], + [ 7.0560937, 46.8326413 ], + [ 7.056282, 46.8322674 ], + [ 7.0564222, 46.8319889 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VBS_1-0", + "country" : "CHE", + "name" : [ + { + "text" : "VBS_15 Grolley", + "lang" : "de-CH" + }, + { + "text" : "VBS_15 Grolley", + "lang" : "fr-CH" + }, + { + "text" : "VBS_15 Grolley", + "lang" : "it-CH" + }, + { + "text" : "VBS_15 Grolley", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "regulationExemption" : "YES", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Eidgenössisches Departement für Verteidigung, Bevölkerungsschutz und Sport (VBS)", + "lang" : "de-CH" + }, + { + "text" : "Département fédéral de la défense, de la protection de la population et des sports (DDPS)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento federale della difesa, della protezione della popolazione e dello sport (DDPS)", + "lang" : "it-CH" + }, + { + "text" : "Federal Department of Defence, Civil Protection and Sport (DDPS)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Lageverfolgungszentrum der Armee LVZ A", + "lang" : "de-CH" + }, + { + "text" : "Centre de suivi de la situation de l’armée, CSS A", + "lang" : "fr-CH" + }, + { + "text" : "Centro di monitoraggio della situazione dell’esercito, Centro mon sit Es", + "lang" : "it-CH" + }, + { + "text" : "Joint Operation Center, JOC", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vtg.admin.ch/en/joint-operations-command", + "email" : "lvz.op@vtg.admin.ch", + "phone" : "+41 58 464 96 43", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.7926299, 47.3687425 ], + [ 8.7926209, 47.3686014 ], + [ 8.792601, 47.3684607 ], + [ 8.7925703, 47.368321 ], + [ 8.7925289, 47.3681826 ], + [ 8.7924769, 47.3680458 ], + [ 8.7924144, 47.3679111 ], + [ 8.7923416, 47.3677787 ], + [ 8.7922587, 47.3676492 ], + [ 8.792166, 47.3675227 ], + [ 8.7920636, 47.3673998 ], + [ 8.791952, 47.3672806 ], + [ 8.7918313, 47.3671656 ], + [ 8.7917019, 47.367055 ], + [ 8.7915641, 47.3669492 ], + [ 8.7914184, 47.3668484 ], + [ 8.7912651, 47.366753 ], + [ 8.7911047, 47.3666631 ], + [ 8.7909376, 47.366579 ], + [ 8.7907642, 47.366501 ], + [ 8.7905851, 47.3664293 ], + [ 8.7904007, 47.366364 ], + [ 8.7902115, 47.3663054 ], + [ 8.7900181, 47.3662536 ], + [ 8.7898209, 47.3662088 ], + [ 8.7896206, 47.366171 ], + [ 8.7894176, 47.3661404 ], + [ 8.7892125, 47.366117 ], + [ 8.7890059, 47.366101 ], + [ 8.7887984, 47.3660924 ], + [ 8.7885905, 47.3660911 ], + [ 8.7883828, 47.3660972 ], + [ 8.7881758, 47.3661107 ], + [ 8.7879702, 47.3661316 ], + [ 8.7877664, 47.3661597 ], + [ 8.7875651, 47.366195 ], + [ 8.7873668, 47.3662375 ], + [ 8.787172, 47.3662869 ], + [ 8.7869813, 47.3663432 ], + [ 8.7867952, 47.3664062 ], + [ 8.7866142, 47.3664757 ], + [ 8.786438799999999, 47.3665516 ], + [ 8.7862695, 47.3666336 ], + [ 8.7861067, 47.3667215 ], + [ 8.785951, 47.3668151 ], + [ 8.7858026, 47.3669141 ], + [ 8.7856621, 47.3670182 ], + [ 8.785529799999999, 47.3671272 ], + [ 8.7854061, 47.367240699999996 ], + [ 8.7852912, 47.3673585 ], + [ 8.7851857, 47.3674802 ], + [ 8.7850896, 47.3676055 ], + [ 8.7850033, 47.367734 ], + [ 8.7849271, 47.3678654 ], + [ 8.784861, 47.3679994 ], + [ 8.7848054, 47.3681355 ], + [ 8.7847603, 47.3682734 ], + [ 8.7847259, 47.3684127 ], + [ 8.7847023, 47.3685531 ], + [ 8.7846896, 47.3686941 ], + [ 8.7846877, 47.3688354 ], + [ 8.7846967, 47.3689765 ], + [ 8.7847166, 47.3691171 ], + [ 8.7847473, 47.3692568 ], + [ 8.7847886, 47.3693953 ], + [ 8.7848406, 47.369532 ], + [ 8.7849031, 47.3696668 ], + [ 8.7849759, 47.3697991 ], + [ 8.7850587, 47.3699287 ], + [ 8.7851515, 47.3700551 ], + [ 8.7852538, 47.3701781 ], + [ 8.7853655, 47.3702973 ], + [ 8.7854862, 47.3704123 ], + [ 8.7856156, 47.3705229 ], + [ 8.7857533, 47.3706287 ], + [ 8.785899, 47.3707295 ], + [ 8.7860523, 47.370824999999996 ], + [ 8.7862127, 47.3709148 ], + [ 8.7863798, 47.3709989 ], + [ 8.7865532, 47.3710769 ], + [ 8.7867323, 47.3711486 ], + [ 8.7869168, 47.3712139 ], + [ 8.787106, 47.3712725 ], + [ 8.7872994, 47.3713243 ], + [ 8.7874966, 47.3713692 ], + [ 8.787697, 47.371407 ], + [ 8.7879, 47.3714376 ], + [ 8.788105, 47.3714609 ], + [ 8.7883117, 47.3714769 ], + [ 8.7885192, 47.3714856 ], + [ 8.7887271, 47.3714869 ], + [ 8.7889349, 47.3714807 ], + [ 8.7891419, 47.3714672 ], + [ 8.7893475, 47.3714464 ], + [ 8.7895513, 47.3714183 ], + [ 8.7897527, 47.3713829 ], + [ 8.789951, 47.3713405 ], + [ 8.7901458, 47.371291 ], + [ 8.7903365, 47.3712347 ], + [ 8.7905226, 47.3711717 ], + [ 8.7907036, 47.3711022 ], + [ 8.790879, 47.3710263 ], + [ 8.7910483, 47.3709443 ], + [ 8.7912111, 47.3708564 ], + [ 8.7913669, 47.3707628 ], + [ 8.7915152, 47.3706638 ], + [ 8.7916557, 47.3705597 ], + [ 8.791788, 47.3704507 ], + [ 8.7919118, 47.3703372 ], + [ 8.7920266, 47.3702194 ], + [ 8.7921321, 47.3700977 ], + [ 8.7922282, 47.3699724 ], + [ 8.7923145, 47.3698438 ], + [ 8.7923907, 47.3697124 ], + [ 8.7924567, 47.3695785 ], + [ 8.7925123, 47.3694423 ], + [ 8.7925574, 47.3693044 ], + [ 8.7925918, 47.3691651 ], + [ 8.7926153, 47.3690247 ], + [ 8.7926281, 47.3688837 ], + [ 8.7926299, 47.3687425 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "PZH0001", + "country" : "CHE", + "name" : [ + { + "text" : "Gefängnis Pfäffikon", + "lang" : "de-CH" + }, + { + "text" : "Gefängnis Pfäffikon", + "lang" : "fr-CH" + }, + { + "text" : "Gefängnis Pfäffikon", + "lang" : "it-CH" + }, + { + "text" : "Gefängnis Pfäffikon", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "de-CH" + }, + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "fr-CH" + }, + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "it-CH" + }, + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "de-CH" + }, + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "fr-CH" + }, + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "it-CH" + }, + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Reno Berner", + "lang" : "de-CH" + }, + { + "text" : "Reno Berner", + "lang" : "fr-CH" + }, + { + "text" : "Reno Berner", + "lang" : "it-CH" + }, + { + "text" : "Reno Berner", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.zh.ch/de/direktion-der-justiz-und-des-innern/justizvollzug-wiedereingliederung.html", + "email" : "sicherheit-juwe@ji.zh.ch", + "phone" : "0041432583400", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT12H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.867574, 47.4435216 ], + [ 7.8672773, 47.4436291 ], + [ 7.8673269999999995, 47.4436685 ], + [ 7.8673844, 47.4437086 ], + [ 7.8674244, 47.4437316 ], + [ 7.8674723, 47.4437524 ], + [ 7.8675172, 47.4437658 ], + [ 7.8675665, 47.4437759 ], + [ 7.8676251, 47.4437835 ], + [ 7.8676801, 47.4437883 ], + [ 7.8677192, 47.4437896 ], + [ 7.867758, 47.4437884 ], + [ 7.8677131, 47.4439348 ], + [ 7.8677004, 47.4439762 ], + [ 7.8676984999999995, 47.4440017 ], + [ 7.8677009, 47.4440262 ], + [ 7.8679129, 47.4441242 ], + [ 7.8680544999999995, 47.4442026 ], + [ 7.8681672, 47.4442904 ], + [ 7.8683222, 47.4444332 ], + [ 7.8684889, 47.4445921 ], + [ 7.8686559, 47.4447568 ], + [ 7.8688009999999995, 47.4448939 ], + [ 7.8690143, 47.4450939 ], + [ 7.8691357, 47.4451978 ], + [ 7.869526, 47.4455219 ], + [ 7.8698498, 47.4458421 ], + [ 7.8700165, 47.4461554 ], + [ 7.87013, 47.4463643 ], + [ 7.8701712, 47.44636 ], + [ 7.8702124, 47.4463556 ], + [ 7.8702713, 47.4463488 ], + [ 7.8703294, 47.4463388 ], + [ 7.8703821, 47.4463281 ], + [ 7.8704231, 47.446315 ], + [ 7.8704691, 47.4462937 ], + [ 7.8705071, 47.4462729 ], + [ 7.870535, 47.4462467 ], + [ 7.8705628999999995, 47.4462104 ], + [ 7.8705828, 47.4461791 ], + [ 7.8706023, 47.4461407 ], + [ 7.8706279, 47.4460683 ], + [ 7.8706381, 47.4460321 ], + [ 7.8707222, 47.4457866 ], + [ 7.8707379, 47.4457417 ], + [ 7.8707429, 47.4457077 ], + [ 7.8707407, 47.4456638 ], + [ 7.8707355, 47.4456316 ], + [ 7.870719, 47.4455751 ], + [ 7.8706941, 47.4455081 ], + [ 7.8706721, 47.4454661 ], + [ 7.8706521, 47.4454341 ], + [ 7.8706884, 47.4452565 ], + [ 7.8706866, 47.4451401 ], + [ 7.8706759, 47.4450379 ], + [ 7.8706197, 47.4448781 ], + [ 7.8706043999999995, 47.4448339 ], + [ 7.8705976, 47.4448005 ], + [ 7.8707058, 47.4447659 ], + [ 7.8709346, 47.444695 ], + [ 7.8711809, 47.4445287 ], + [ 7.8711137, 47.4442216 ], + [ 7.8710016, 47.4439379 ], + [ 7.8706705, 47.4433425 ], + [ 7.870468, 47.4431318 ], + [ 7.8703655999999995, 47.4430682 ], + [ 7.8703047999999995, 47.4430399 ], + [ 7.8702327, 47.4430105 ], + [ 7.8700945, 47.4429909 ], + [ 7.8699483, 47.4429738 ], + [ 7.8698137, 47.4429681 ], + [ 7.8696729, 47.4429693 ], + [ 7.8695522, 47.4429922 ], + [ 7.8694218, 47.4430141 ], + [ 7.8690429, 47.4431166 ], + [ 7.8687088, 47.4432038 ], + [ 7.8684296, 47.4432835 ], + [ 7.8681694, 47.4433538 ], + [ 7.867574, 47.4435216 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr044", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Zangegrabe", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Zangegrabe", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Zangegrabe", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Zangegrabe", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6198659, 47.5367534 ], + [ 7.6198716, 47.5378508 ], + [ 7.6198771, 47.5389487 ], + [ 7.6198854, 47.5400344 ], + [ 7.6198839, 47.5402636 ], + [ 7.621486, 47.5399428 ], + [ 7.6221578999999995, 47.5398082 ], + [ 7.6221578, 47.5397694 ], + [ 7.6221575999999995, 47.5397172 ], + [ 7.6221564, 47.5393143 ], + [ 7.6221203, 47.5387677 ], + [ 7.6221081, 47.5386289 ], + [ 7.6221046999999995, 47.5385896 ], + [ 7.6220728, 47.5382269 ], + [ 7.6220424, 47.5378257 ], + [ 7.6220262, 47.5372914 ], + [ 7.6219712, 47.5367466 ], + [ 7.6219431, 47.5363634 ], + [ 7.6218893, 47.5358252 ], + [ 7.6218595, 47.5352856 ], + [ 7.621837, 47.5349755 ], + [ 7.6218343, 47.5349382 ], + [ 7.6218311, 47.5348967 ], + [ 7.6218094, 47.5346183 ], + [ 7.6217843, 47.5342966 ], + [ 7.621753, 47.5334862 ], + [ 7.6217007, 47.5326782 ], + [ 7.6216409, 47.5318695 ], + [ 7.6215805, 47.5310618 ], + [ 7.621524, 47.5302534 ], + [ 7.6214870999999995, 47.5298134 ], + [ 7.6212626, 47.5297845 ], + [ 7.6212753, 47.5301842 ], + [ 7.6212844, 47.5310619 ], + [ 7.6212938999999995, 47.5314458 ], + [ 7.6213065, 47.531951 ], + [ 7.6212866, 47.5323088 ], + [ 7.6212665, 47.5327882 ], + [ 7.621, 47.5333446 ], + [ 7.6210339, 47.5336942 ], + [ 7.6210436999999995, 47.5337218 ], + [ 7.6210322, 47.5346405 ], + [ 7.6210426, 47.5357807 ], + [ 7.6208592, 47.5357829 ], + [ 7.6208626, 47.5367488 ], + [ 7.6207807, 47.5367511 ], + [ 7.6198659, 47.5367534 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns141", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt St. Jakob", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé St. Jakob", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto St. Jakob", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object St. Jakob", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6585769, 47.5136609 ], + [ 7.6583168, 47.5131985 ], + [ 7.6582026, 47.5132458 ], + [ 7.6581558, 47.5132802 ], + [ 7.6580705, 47.5132792 ], + [ 7.6578861, 47.5133244 ], + [ 7.6578716, 47.513327 ], + [ 7.6580497, 47.5137449 ], + [ 7.6584321, 47.5136779 ], + [ 7.6585376, 47.5136649 ], + [ 7.6585769, 47.5136609 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns317", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Zinggibrunn", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Zinggibrunn", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Zinggibrunn", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Zinggibrunn", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.540148, 47.5310394 ], + [ 7.5401678, 47.5310482 ], + [ 7.540436, 47.5311594 ], + [ 7.5407071, 47.531272 ], + [ 7.5411655, 47.5314654 ], + [ 7.5414424, 47.5315819 ], + [ 7.5414629, 47.5315906 ], + [ 7.5419795, 47.5308469 ], + [ 7.5422089, 47.5304956 ], + [ 7.5423906, 47.5299492 ], + [ 7.5423995999999995, 47.5299254 ], + [ 7.5423694999999995, 47.5299198 ], + [ 7.5413011, 47.5297208 ], + [ 7.5413561, 47.529659 ], + [ 7.5414556, 47.5295471 ], + [ 7.5414172, 47.5295293 ], + [ 7.5410713, 47.5293688 ], + [ 7.5407725, 47.5291876 ], + [ 7.5405505999999995, 47.5290683 ], + [ 7.5403189, 47.5292835 ], + [ 7.5399721, 47.5290721 ], + [ 7.5397549999999995, 47.528877 ], + [ 7.5395635, 47.5286428 ], + [ 7.5393989, 47.5283915 ], + [ 7.5392513, 47.5280846 ], + [ 7.5391862, 47.5279492 ], + [ 7.5391036, 47.5279849 ], + [ 7.5380511, 47.5284227 ], + [ 7.5373407, 47.5287184 ], + [ 7.5371853, 47.5288044 ], + [ 7.5367601, 47.5290396 ], + [ 7.536904, 47.5291649 ], + [ 7.5369785, 47.5292297 ], + [ 7.5372113, 47.5293829 ], + [ 7.5373349, 47.5294794 ], + [ 7.5375831, 47.5293406 ], + [ 7.5375839, 47.5293416 ], + [ 7.5376983, 47.529509 ], + [ 7.5378334, 47.5297064 ], + [ 7.5379188, 47.5298315 ], + [ 7.5381028, 47.5299906 ], + [ 7.5382682, 47.5301339 ], + [ 7.5384245, 47.5302182 ], + [ 7.538681, 47.5303569 ], + [ 7.538804, 47.5304243 ], + [ 7.5391297, 47.5305968 ], + [ 7.5394705, 47.5307427 ], + [ 7.5395581, 47.5307788 ], + [ 7.540148, 47.5310394 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns236", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Allschwilerwald", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Allschwilerwald", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Allschwilerwald", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Allschwilerwald", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.5520246, 46.897401 ], + [ 6.5667881999999995, 46.909569 ], + [ 6.5761559, 46.9147677 ], + [ 6.6060357, 46.9350497 ], + [ 6.6648134, 46.9481465 ], + [ 6.6832654, 46.9157957 ], + [ 6.6345572, 46.8984615 ], + [ 6.5847913, 46.875341 ], + [ 6.5704024, 46.8808999 ], + [ 6.5520246, 46.897401 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSTO001", + "country" : "CHE", + "name" : [ + { + "text" : "LSTO Môtiers", + "lang" : "de-CH" + }, + { + "text" : "LSTO Môtiers", + "lang" : "fr-CH" + }, + { + "text" : "LSTO Môtiers", + "lang" : "it-CH" + }, + { + "text" : "LSTO Môtiers", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Aéro-Club du Val-de-Travers", + "lang" : "de-CH" + }, + { + "text" : "Aéro-Club du Val-de-Travers", + "lang" : "fr-CH" + }, + { + "text" : "Aéro-Club du Val-de-Travers", + "lang" : "it-CH" + }, + { + "text" : "Aéro-Club du Val-de-Travers", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Chef d'aérodrome", + "lang" : "de-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "fr-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "it-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Alexandre Iseppi", + "lang" : "de-CH" + }, + { + "text" : "Alexandre Iseppi", + "lang" : "fr-CH" + }, + { + "text" : "Alexandre Iseppi", + "lang" : "it-CH" + }, + { + "text" : "Alexandre Iseppi", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.acvt.ch/dronesmodeles/", + "email" : "iseppi@acvt.ch", + "phone" : "0041328631555", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P02DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.0069818, 46.6102269 ], + [ 8.0068677, 46.6078735 ], + [ 8.006575, 46.6055274 ], + [ 8.0061046, 46.6031951 ], + [ 8.0054577, 46.6008829 ], + [ 8.0046363, 46.5985972 ], + [ 8.0036425, 46.5963443 ], + [ 8.0024791, 46.5941303 ], + [ 8.0011493, 46.5919613 ], + [ 7.9996568, 46.5898432 ], + [ 7.9980056, 46.5877819 ], + [ 7.9962004, 46.5857829 ], + [ 7.994246, 46.5838518 ], + [ 7.9921479, 46.5819938 ], + [ 7.9899117, 46.580214 ], + [ 7.9875437, 46.5785173 ], + [ 7.9850503, 46.5769084 ], + [ 7.9824383999999995, 46.5753915 ], + [ 7.979715, 46.573971 ], + [ 7.9768877, 46.5726506 ], + [ 7.9739642, 46.571433999999996 ], + [ 7.9709525, 46.5703245 ], + [ 7.9678609, 46.5693251 ], + [ 7.9646978, 46.5684386 ], + [ 7.9614718, 46.5676674 ], + [ 7.9581918, 46.5670136 ], + [ 7.9548667, 46.566479 ], + [ 7.9515057, 46.5660651 ], + [ 7.948118, 46.5657729 ], + [ 7.9447127, 46.5656033 ], + [ 7.9412993, 46.5655568 ], + [ 7.9378869, 46.5656335 ], + [ 7.9344851, 46.5658331 ], + [ 7.931103, 46.5661551 ], + [ 7.92775, 46.5665987 ], + [ 7.9244351, 46.5671626 ], + [ 7.9211675, 46.5678453 ], + [ 7.9179561, 46.5686449 ], + [ 7.9148097, 46.5695593 ], + [ 7.9117368, 46.5705858 ], + [ 7.908746, 46.5717218 ], + [ 7.9058453, 46.5729642 ], + [ 7.9030427, 46.5743094 ], + [ 7.9003459, 46.5757539 ], + [ 7.8977623, 46.5772936 ], + [ 7.895299, 46.5789245 ], + [ 7.8929626, 46.5806419 ], + [ 7.8907597, 46.5824413 ], + [ 7.8886962, 46.5843177 ], + [ 7.8867779, 46.5862659 ], + [ 7.8850099, 46.5882806 ], + [ 7.8833971, 46.5903564 ], + [ 7.8819441, 46.5924874 ], + [ 7.8806547, 46.594668 ], + [ 7.8795325, 46.5968921 ], + [ 7.8785806, 46.5991536 ], + [ 7.8778017, 46.6014463 ], + [ 7.8771978, 46.603764 ], + [ 7.8767708, 46.6061003 ], + [ 7.8765217, 46.6084488 ], + [ 7.8764513, 46.6108031 ], + [ 7.8765598, 46.613156599999996 ], + [ 7.8768469, 46.6155031 ], + [ 7.8773118, 46.6178359 ], + [ 7.8779534, 46.6201488 ], + [ 7.8787698, 46.6224354 ], + [ 7.8797589, 46.6246894 ], + [ 7.8809179, 46.6269047 ], + [ 7.8822437, 46.6290751 ], + [ 7.8837326999999995, 46.6311947 ], + [ 7.8853808, 46.6332576 ], + [ 7.8871835, 46.6352584 ], + [ 7.8891359, 46.6371913 ], + [ 7.8912327, 46.6390512 ], + [ 7.893468, 46.6408329 ], + [ 7.8958358, 46.6425316 ], + [ 7.8983296, 46.6441425 ], + [ 7.9009425, 46.6456612 ], + [ 7.9036674, 46.6470837 ], + [ 7.9064968, 46.6484059 ], + [ 7.9094229, 46.6496242 ], + [ 7.9124378, 46.6507353 ], + [ 7.915533, 46.6517362 ], + [ 7.9187002, 46.6526241 ], + [ 7.9219307, 46.6533965 ], + [ 7.9252155, 46.6540513 ], + [ 7.9285456, 46.6545868 ], + [ 7.931912, 46.6550014 ], + [ 7.9353052, 46.655294 ], + [ 7.9387161, 46.6554639 ], + [ 7.9421353, 46.6555105 ], + [ 7.9455533, 46.6554337 ], + [ 7.9489607, 46.6552337 ], + [ 7.9523482, 46.6549112 ], + [ 7.9557066, 46.6544669 ], + [ 7.9590265, 46.6539021 ], + [ 7.9622988, 46.6532183 ], + [ 7.9655146, 46.6524174 ], + [ 7.968665, 46.6515017 ], + [ 7.9717414, 46.6504736 ], + [ 7.9747353, 46.6493359 ], + [ 7.9776385, 46.6480919 ], + [ 7.980443, 46.6467448 ], + [ 7.9831412, 46.6452984 ], + [ 7.9857256, 46.6437567 ], + [ 7.9881892, 46.6421239 ], + [ 7.9905252, 46.6404045 ], + [ 7.9927271, 46.6386032 ], + [ 7.9947891, 46.636725 ], + [ 7.9967053, 46.634775 ], + [ 7.9984707, 46.6327585 ], + [ 8.0000803, 46.6306811 ], + [ 8.0015297, 46.6285486 ], + [ 8.002815, 46.6263666 ], + [ 8.0039327, 46.6241413 ], + [ 8.0048798, 46.6218788 ], + [ 8.0056536, 46.6195852 ], + [ 8.0062521, 46.6172668 ], + [ 8.0066737, 46.61493 ], + [ 8.0069171, 46.6125813 ], + [ 8.0069818, 46.6102269 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSWM001", + "country" : "CHE", + "name" : [ + { + "text" : "LSWM Männlichen", + "lang" : "de-CH" + }, + { + "text" : "LSWM Männlichen", + "lang" : "fr-CH" + }, + { + "text" : "LSWM Männlichen", + "lang" : "it-CH" + }, + { + "text" : "LSWM Männlichen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "startDateTime" : "2024-11-01T00:00:00+01:00", + "endDateTime" : "2025-04-30T00:00:00+02:00" + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swiss Helicopter AG", + "lang" : "de-CH" + }, + { + "text" : "Swiss Helicopter AG", + "lang" : "fr-CH" + }, + { + "text" : "Swiss Helicopter AG", + "lang" : "it-CH" + }, + { + "text" : "Swiss Helicopter AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Basis Gsteigwiler", + "lang" : "de-CH" + }, + { + "text" : "Basis Gsteigwiler", + "lang" : "fr-CH" + }, + { + "text" : "Basis Gsteigwiler", + "lang" : "it-CH" + }, + { + "text" : "Basis Gsteigwiler", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Martin Burgener", + "lang" : "de-CH" + }, + { + "text" : "Martin Burgener", + "lang" : "fr-CH" + }, + { + "text" : "Martin Burgener", + "lang" : "it-CH" + }, + { + "text" : "Martin Burgener", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swisshelicopter.ch/en/about-us/helicopter-bases/gsteigwiler-interlaken", + "email" : "berneroberland@swisshelicopter.ch", + "phone" : "0041338289010", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P02DT12H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.8855484, 45.9574057 ], + [ 8.8842545, 45.95774 ], + [ 8.8811541, 45.9586721 ], + [ 8.8781278, 45.9597161 ], + [ 8.8751839, 45.9608691 ], + [ 8.8723304, 45.9621278 ], + [ 8.8695751, 45.963489 ], + [ 8.8669257, 45.9649487 ], + [ 8.8643892, 45.9665031 ], + [ 8.8619728, 45.9681479 ], + [ 8.8596829, 45.9698785 ], + [ 8.857526, 45.9716903 ], + [ 8.8555078, 45.9735783 ], + [ 8.853634, 45.9755374 ], + [ 8.8519097, 45.9775621 ], + [ 8.8503396, 45.9796469 ], + [ 8.848928, 45.9817861 ], + [ 8.8476789, 45.9839739 ], + [ 8.8465956, 45.9862043 ], + [ 8.8456812, 45.9884711 ], + [ 8.8449381, 45.9907682 ], + [ 8.8443685, 45.9930892 ], + [ 8.8439739, 45.9954278 ], + [ 8.8437554, 45.9977776 ], + [ 8.8437137, 46.0001322 ], + [ 8.8438489, 46.002485 ], + [ 8.8441606, 46.0048297 ], + [ 8.8446479, 46.0071598 ], + [ 8.8453097, 46.009469 ], + [ 8.8461441, 46.0117508 ], + [ 8.8471488, 46.0139991 ], + [ 8.8491697, 46.0181362 ], + [ 8.8492246, 46.0182572 ], + [ 8.8492712, 46.018344 ], + [ 8.8514151, 46.022732 ], + [ 8.8525878, 46.0249405 ], + [ 8.853924899999999, 46.0271032 ], + [ 8.8554227, 46.0292142 ], + [ 8.857077199999999, 46.0312677 ], + [ 8.8588839, 46.033258 ], + [ 8.8608378, 46.0351797 ], + [ 8.8629335, 46.0370275 ], + [ 8.8651654, 46.0387963 ], + [ 8.8675273, 46.0404814 ], + [ 8.8700127, 46.0420779 ], + [ 8.8726149, 46.0435817 ], + [ 8.8753266, 46.0449884 ], + [ 8.8781405, 46.0462944 ], + [ 8.8810488, 46.0474959 ], + [ 8.8840436, 46.0485898 ], + [ 8.8871165, 46.0495729 ], + [ 8.8902593, 46.0504426 ], + [ 8.8934632, 46.0511965 ], + [ 8.8967195, 46.0518325 ], + [ 8.9000192, 46.0523489 ], + [ 8.9033532, 46.0527442 ], + [ 8.9067125, 46.0530174 ], + [ 8.9100876, 46.0531678 ], + [ 8.9134695, 46.0531948 ], + [ 8.9168487, 46.0530985 ], + [ 8.9202161, 46.052879 ], + [ 8.9235623, 46.0525371 ], + [ 8.9268782, 46.0520736 ], + [ 8.9301546, 46.0514898 ], + [ 8.9333825, 46.0507874 ], + [ 8.9365532, 46.0499681 ], + [ 8.939657799999999, 46.0490344 ], + [ 8.9426879, 46.0479888 ], + [ 8.9456351, 46.046834 ], + [ 8.9484913, 46.0455734 ], + [ 8.9512487, 46.0442103 ], + [ 8.9538998, 46.0427486 ], + [ 8.9564372, 46.0411922 ], + [ 8.9588541, 46.0395454 ], + [ 8.9611437, 46.0378127 ], + [ 8.9632998, 46.0359989 ], + [ 8.9653166, 46.0341089 ], + [ 8.9671884, 46.032148 ], + [ 8.9689102, 46.0301215 ], + [ 8.9704772, 46.028035 ], + [ 8.9718852, 46.0258943 ], + [ 8.9731303, 46.0237051 ], + [ 8.9742092, 46.0214735 ], + [ 8.9751188, 46.0192056 ], + [ 8.9758568, 46.0169077 ], + [ 8.976421, 46.014586 ], + [ 8.9768101, 46.0122469 ], + [ 8.9770229, 46.0098969 ], + [ 8.9770589, 46.0075423 ], + [ 8.976918, 46.0051896 ], + [ 8.9766006, 46.0028452 ], + [ 8.9761076, 46.0005157 ], + [ 8.9754404, 45.9982073 ], + [ 8.9746009, 45.9959264 ], + [ 8.9735913, 45.9936793 ], + [ 8.9693076, 45.9849511 ], + [ 8.9681311, 45.9827438 ], + [ 8.9667906, 45.9805824 ], + [ 8.9652898, 45.978473 ], + [ 8.9636329, 45.9764211 ], + [ 8.9618242, 45.9744325 ], + [ 8.959869, 45.9725125 ], + [ 8.9577724, 45.9706665 ], + [ 8.9555403, 45.9688996 ], + [ 8.9531788, 45.9672164 ], + [ 8.9506944, 45.9656217 ], + [ 8.9480938, 45.9641198 ], + [ 8.9453842, 45.9627147 ], + [ 8.942573, 45.9614105 ], + [ 8.9396679, 45.9602105 ], + [ 8.9366769, 45.9591182 ], + [ 8.9336081, 45.9581365 ], + [ 8.9304699, 45.957268 ], + [ 8.927271, 45.9565151 ], + [ 8.92402, 45.95588 ], + [ 8.920726, 45.9553643 ], + [ 8.9173977, 45.9549695 ], + [ 8.9140445, 45.9546966 ], + [ 8.9106754, 45.9545464 ], + [ 8.9072996, 45.9545193 ], + [ 8.9039264, 45.9546153 ], + [ 8.9005651, 45.9548343 ], + [ 8.8972247, 45.9551755 ], + [ 8.8962829, 45.9553072 ], + [ 8.895147, 45.9570367 ], + [ 8.893658, 45.9589814 ], + [ 8.8870879, 45.9575787 ], + [ 8.8855484, 45.9574057 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZA001", + "country" : "CHE", + "name" : [ + { + "text" : "LSZA Lugano", + "lang" : "de-CH" + }, + { + "text" : "LSZA Lugano", + "lang" : "fr-CH" + }, + { + "text" : "LSZA Lugano", + "lang" : "it-CH" + }, + { + "text" : "LSZA Lugano", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Lugano Airport / Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Lugano Airport / Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Lugano Airport / Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Lugano Airport / Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Skyguide Special Flight Office", + "lang" : "de-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "it-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "en-GB" + } + ], + "siteURL" : "https://skyguide.ch/services/special-flights", + "email" : "info@luganoairport.ch", + "phone" : "0041916101111", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8470119, 47.3812812 ], + [ 7.8470848, 47.3813147 ], + [ 7.8474482, 47.3814092 ], + [ 7.847791, 47.3815193 ], + [ 7.8479988, 47.3815805 ], + [ 7.8480257, 47.3815786 ], + [ 7.848039, 47.3815647 ], + [ 7.8480565, 47.3815437 ], + [ 7.8480231, 47.3815185 ], + [ 7.8478423, 47.3814501 ], + [ 7.8475016, 47.3813429 ], + [ 7.8471257, 47.3812455 ], + [ 7.8470593, 47.3812402 ], + [ 7.8470361, 47.3812572 ], + [ 7.8470119, 47.3812812 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns202", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Hecken-Komplex Schmutzberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Hecken-Komplex Schmutzberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Hecken-Komplex Schmutzberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Hecken-Komplex Schmutzberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6217519, 47.5298479 ], + [ 7.6217781, 47.530246 ], + [ 7.6218315, 47.5310547 ], + [ 7.6218874, 47.5318632 ], + [ 7.621942, 47.5326718 ], + [ 7.6219965, 47.5334807 ], + [ 7.6220333, 47.53407 ], + [ 7.6220471, 47.5342898 ], + [ 7.6220817, 47.5347419 ], + [ 7.6220898, 47.5348531 ], + [ 7.6227281, 47.5348999 ], + [ 7.6227652, 47.5348447 ], + [ 7.6227202, 47.5346572 ], + [ 7.6225760000000005, 47.5345997 ], + [ 7.622654, 47.5340194 ], + [ 7.6226687, 47.5339171 ], + [ 7.6228296, 47.5339103 ], + [ 7.622853, 47.5340047 ], + [ 7.6233603, 47.5339472 ], + [ 7.6234364, 47.5339388 ], + [ 7.6233269, 47.5336281 ], + [ 7.6231682, 47.5332013 ], + [ 7.6230084, 47.5327717 ], + [ 7.6230514, 47.5327642 ], + [ 7.6230566, 47.5327624 ], + [ 7.6229769, 47.5325517 ], + [ 7.6229036, 47.5323317 ], + [ 7.6228343, 47.5321084 ], + [ 7.6226998, 47.5316658 ], + [ 7.6225663, 47.5312293 ], + [ 7.6224314, 47.5307883 ], + [ 7.6222984, 47.5303536 ], + [ 7.6222376, 47.5301548 ], + [ 7.6222338, 47.5301403 ], + [ 7.6222294, 47.5301258 ], + [ 7.6222244, 47.5301114 ], + [ 7.6222187, 47.5300972 ], + [ 7.6222124, 47.530083 ], + [ 7.622206, 47.5300694 ], + [ 7.622199, 47.5300559 ], + [ 7.6221914, 47.5300425 ], + [ 7.6221833, 47.5300293 ], + [ 7.6221745, 47.5300163 ], + [ 7.6221653, 47.530005 ], + [ 7.6221553, 47.529994 ], + [ 7.6221445, 47.5299834 ], + [ 7.622133, 47.5299731 ], + [ 7.6221207, 47.5299632 ], + [ 7.6221078, 47.5299537 ], + [ 7.6220942, 47.5299446 ], + [ 7.6220818, 47.5299371 ], + [ 7.622069, 47.5299299 ], + [ 7.6220557, 47.529923 ], + [ 7.622042, 47.5299166 ], + [ 7.6220279, 47.5299105 ], + [ 7.6220134, 47.5299049 ], + [ 7.6219985999999995, 47.5298996 ], + [ 7.6219835, 47.5298948 ], + [ 7.6219589, 47.529888 ], + [ 7.6219341, 47.5298815 ], + [ 7.6219091, 47.5298755 ], + [ 7.6218838, 47.52987 ], + [ 7.6218584, 47.5298648 ], + [ 7.6218319999999995, 47.5298599 ], + [ 7.6218055, 47.5298554 ], + [ 7.6217787999999995, 47.5298515 ], + [ 7.6217519, 47.5298479 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns142", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt In den Weiden", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé In den Weiden", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto In den Weiden", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object In den Weiden", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8918839, 47.4102051 ], + [ 7.8919405, 47.4101999 ], + [ 7.8919457, 47.4101424 ], + [ 7.8919536, 47.4100971 ], + [ 7.8920031, 47.4099388 ], + [ 7.8920401, 47.4098185 ], + [ 7.8920753, 47.4096937 ], + [ 7.8921005, 47.4095614 ], + [ 7.8921357, 47.409453 ], + [ 7.8922053, 47.4093155 ], + [ 7.8922701, 47.4091997 ], + [ 7.892331, 47.4090657 ], + [ 7.8923916, 47.4089161 ], + [ 7.8924363, 47.4087813 ], + [ 7.8925035, 47.4085819 ], + [ 7.8924492, 47.4085773 ], + [ 7.89238, 47.4085068 ], + [ 7.8923926, 47.4085974 ], + [ 7.8923065, 47.408815 ], + [ 7.8922318, 47.4090139 ], + [ 7.8921572, 47.4092222 ], + [ 7.8920761, 47.4094339 ], + [ 7.8919716, 47.4096538 ], + [ 7.8919375, 47.4097906 ], + [ 7.8919041, 47.409964 ], + [ 7.89189, 47.4100938 ], + [ 7.8918839, 47.4102051 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns180", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Mapprach - Hofmatt", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Mapprach - Hofmatt", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Mapprach - Hofmatt", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Mapprach - Hofmatt", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.701325, 46.8351071 ], + [ 7.7012747, 46.8350964 ], + [ 7.7010156, 46.83504 ], + [ 7.7008356, 46.8350106 ], + [ 7.7008361, 46.8350093 ], + [ 7.7007361, 46.834992 ], + [ 7.700481, 46.8349481 ], + [ 7.6999582, 46.8348313 ], + [ 7.699883, 46.8348722 ], + [ 7.6995854, 46.8348159 ], + [ 7.6993929, 46.8347778 ], + [ 7.6992626, 46.8347619 ], + [ 7.6990914, 46.8347239 ], + [ 7.6988843, 46.8346927 ], + [ 7.6985761, 46.8346326 ], + [ 7.6983699, 46.8345905 ], + [ 7.6982948, 46.8345925 ], + [ 7.6985941, 46.8350647 ], + [ 7.6988147, 46.8355329 ], + [ 7.6988698, 46.8356413 ], + [ 7.6975601000000005, 46.8369884 ], + [ 7.6973097, 46.8374389 ], + [ 7.6975912, 46.837728 ], + [ 7.6974115, 46.837903 ], + [ 7.6978283, 46.8383045 ], + [ 7.698005, 46.8384759 ], + [ 7.6980312, 46.8385368 ], + [ 7.6981001, 46.8384921 ], + [ 7.6986994, 46.8386907 ], + [ 7.6986691, 46.8387475 ], + [ 7.6989592, 46.8388486 ], + [ 7.6992188, 46.8389442 ], + [ 7.6994717999999995, 46.839024 ], + [ 7.6995268, 46.8390386 ], + [ 7.6996497, 46.8390713 ], + [ 7.6997628, 46.8391029 ], + [ 7.6999966, 46.8391614 ], + [ 7.7000503, 46.8391525 ], + [ 7.7003885, 46.8392537 ], + [ 7.7009594, 46.8394023 ], + [ 7.7011498, 46.839451 ], + [ 7.7011536, 46.8392071 ], + [ 7.7013052, 46.8389996 ], + [ 7.701405, 46.8386757 ], + [ 7.7015023, 46.8385528 ], + [ 7.7015996, 46.838294 ], + [ 7.7012684, 46.8382337 ], + [ 7.7014668, 46.8379012 ], + [ 7.7016535, 46.8375744 ], + [ 7.701719, 46.837432 ], + [ 7.7017461, 46.8372246 ], + [ 7.7017223, 46.8370976 ], + [ 7.7016902, 46.8368009 ], + [ 7.7016975, 46.8365508 ], + [ 7.7017776, 46.8361225 ], + [ 7.7018385, 46.8359307 ], + [ 7.7018945, 46.8357551 ], + [ 7.7020305, 46.835229 ], + [ 7.7017062, 46.8351733 ], + [ 7.7015319, 46.8351509 ], + [ 7.701325, 46.8351071 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VBS_22", + "country" : "CHE", + "name" : [ + { + "text" : "VBS_22 Jassbach", + "lang" : "de-CH" + }, + { + "text" : "VBS_22 Jassbach", + "lang" : "fr-CH" + }, + { + "text" : "VBS_22 Jassbach", + "lang" : "it-CH" + }, + { + "text" : "VBS_22 Jassbach", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "regulationExemption" : "YES", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Eidgenössisches Departement für Verteidigung, Bevölkerungsschutz und Sport (VBS)", + "lang" : "de-CH" + }, + { + "text" : "Département fédéral de la défense, de la protection de la population et des sports (DDPS)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento federale della difesa, della protezione della popolazione e dello sport (DDPS)", + "lang" : "it-CH" + }, + { + "text" : "Federal Department of Defence, Civil Protection and Sport (DDPS)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Lageverfolgungszentrum der Armee LVZ A", + "lang" : "de-CH" + }, + { + "text" : "Centre de suivi de la situation de l’armée, CSS A", + "lang" : "fr-CH" + }, + { + "text" : "Centro di monitoraggio della situazione dell’esercito, Centro mon sit Es", + "lang" : "it-CH" + }, + { + "text" : "Joint Operation Center, JOC", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vtg.admin.ch/en/joint-operations-command", + "email" : "lvz.op@vtg.admin.ch", + "phone" : "+41 58 464 96 43", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.3410586, 47.1158105 ], + [ 8.3410508, 47.1156693 ], + [ 8.3410322, 47.1155286 ], + [ 8.3410029, 47.1153888 ], + [ 8.3409628, 47.1152502 ], + [ 8.3409122, 47.1151132 ], + [ 8.3408511, 47.1149782 ], + [ 8.3407798, 47.1148456 ], + [ 8.3406984, 47.1147157 ], + [ 8.3406072, 47.1145889 ], + [ 8.3405064, 47.1144655 ], + [ 8.3403962, 47.114345900000004 ], + [ 8.340277, 47.1142304 ], + [ 8.3401492, 47.1141194 ], + [ 8.340013, 47.114013 ], + [ 8.3398688, 47.1139116 ], + [ 8.3397171, 47.1138156 ], + [ 8.3395582, 47.1137251 ], + [ 8.3393926, 47.1136403 ], + [ 8.3392207, 47.1135617 ], + [ 8.339043, 47.1134892 ], + [ 8.33886, 47.1134233 ], + [ 8.3386722, 47.1133639 ], + [ 8.3384801, 47.1133113 ], + [ 8.3382843, 47.1132657 ], + [ 8.3380852, 47.1132271 ], + [ 8.3378834, 47.1131957 ], + [ 8.3376795, 47.1131716 ], + [ 8.3374741, 47.1131547 ], + [ 8.3372676, 47.1131453 ], + [ 8.3370607, 47.1131432 ], + [ 8.3368539, 47.1131485 ], + [ 8.3366478, 47.1131612 ], + [ 8.3364429, 47.1131812 ], + [ 8.3362399, 47.1132086 ], + [ 8.3360392, 47.1132431 ], + [ 8.3358415, 47.1132848 ], + [ 8.3356472, 47.1133335 ], + [ 8.3354569, 47.113389 ], + [ 8.3352712, 47.1134513 ], + [ 8.3350905, 47.1135201 ], + [ 8.3349153, 47.1135953 ], + [ 8.3347461, 47.1136767 ], + [ 8.3345833, 47.1137639 ], + [ 8.3344275, 47.1138569 ], + [ 8.334279, 47.1139553 ], + [ 8.3341383, 47.1140589 ], + [ 8.3340057, 47.1141674 ], + [ 8.3338816, 47.1142804 ], + [ 8.3337663, 47.1143977 ], + [ 8.3336602, 47.114519 ], + [ 8.3335636, 47.114644 ], + [ 8.333476600000001, 47.1147722 ], + [ 8.3333996, 47.1149033 ], + [ 8.3333327, 47.115037 ], + [ 8.3332762, 47.1151729 ], + [ 8.3332302, 47.1153106 ], + [ 8.3331948, 47.1154498 ], + [ 8.3331701, 47.1155901 ], + [ 8.3331563, 47.115731 ], + [ 8.3331532, 47.1158723 ], + [ 8.333161, 47.1160135 ], + [ 8.3331796, 47.1161542 ], + [ 8.3332089, 47.116294 ], + [ 8.333249, 47.1164326 ], + [ 8.3332996, 47.1165696 ], + [ 8.3333606, 47.1167046 ], + [ 8.3334319, 47.1168372 ], + [ 8.3335133, 47.1169671 ], + [ 8.3336045, 47.1170939 ], + [ 8.3337053, 47.1172173 ], + [ 8.3338155, 47.1173369 ], + [ 8.3339346, 47.1174524 ], + [ 8.3340625, 47.1175635 ], + [ 8.3341987, 47.1176699 ], + [ 8.3343428, 47.1177713 ], + [ 8.3344946, 47.1178673 ], + [ 8.3346535, 47.1179579 ], + [ 8.3348191, 47.1180426 ], + [ 8.334991, 47.1181213 ], + [ 8.3351687, 47.1181937 ], + [ 8.3353517, 47.1182597 ], + [ 8.3355395, 47.118319 ], + [ 8.3357316, 47.1183716 ], + [ 8.3359274, 47.1184172 ], + [ 8.3361265, 47.1184558 ], + [ 8.3363283, 47.1184872 ], + [ 8.3365322, 47.1185114 ], + [ 8.3367377, 47.1185282 ], + [ 8.3369442, 47.1185377 ], + [ 8.3371512, 47.1185398 ], + [ 8.337358, 47.1185345 ], + [ 8.3375641, 47.1185218 ], + [ 8.337769, 47.1185017 ], + [ 8.337972, 47.1184744 ], + [ 8.3381727, 47.1184398 ], + [ 8.3383705, 47.1183982 ], + [ 8.3385648, 47.1183495 ], + [ 8.338755, 47.1182939 ], + [ 8.3389408, 47.1182316 ], + [ 8.3391215, 47.1181628 ], + [ 8.3392968, 47.1180876 ], + [ 8.339466, 47.1180063 ], + [ 8.3396287, 47.117919 ], + [ 8.3397845, 47.117826 ], + [ 8.339933, 47.1177276 ], + [ 8.3400737, 47.117624 ], + [ 8.3402063, 47.1175155 ], + [ 8.3403304, 47.1174025 ], + [ 8.3404457, 47.1172851 ], + [ 8.3405518, 47.1171638 ], + [ 8.3406484, 47.1170389 ], + [ 8.3407354, 47.1169107 ], + [ 8.3408124, 47.1167796 ], + [ 8.3408792, 47.1166459 ], + [ 8.3409357, 47.11651 ], + [ 8.3409817, 47.1163722 ], + [ 8.3410171, 47.116233 ], + [ 8.3410417, 47.1160927 ], + [ 8.3410556, 47.1159518 ], + [ 8.3410586, 47.1158105 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0072", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Mettlen", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Mettlen", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Mettlen", + "lang" : "it-CH" + }, + { + "text" : "Substation Mettlen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.6049168, 47.463772 ], + [ 9.6049181, 47.4637742 ], + [ 9.6050216, 47.4639689 ], + [ 9.60511, 47.464167 ], + [ 9.6054271, 47.4649513 ], + [ 9.605615, 47.465443 ], + [ 9.6057824, 47.4659382 ], + [ 9.605929, 47.4664364 ], + [ 9.6060549, 47.4669372 ], + [ 9.6061598, 47.4674403 ], + [ 9.6062437, 47.4679452 ], + [ 9.6064522, 47.4693809 ], + [ 9.6064751, 47.4694913 ], + [ 9.6065113, 47.4696001 ], + [ 9.6065607, 47.4697064 ], + [ 9.6066228, 47.4698097 ], + [ 9.6066974, 47.4699091 ], + [ 9.6067837, 47.470004 ], + [ 9.6068814, 47.4700937 ], + [ 9.6069896, 47.4701777 ], + [ 9.6071077, 47.4702553 ], + [ 9.6072349, 47.470326 ], + [ 9.6073702, 47.4703894 ], + [ 9.6075128, 47.470445 ], + [ 9.6076617, 47.4704924 ], + [ 9.6078159, 47.4705313 ], + [ 9.6079742, 47.4705614 ], + [ 9.6081358, 47.4705826 ], + [ 9.6082993, 47.4705947 ], + [ 9.6084637, 47.4705975 ], + [ 9.6086279, 47.4705911 ], + [ 9.6087908, 47.4705756 ], + [ 9.6091507, 47.4705208 ], + [ 9.609503, 47.4704469 ], + [ 9.6098455, 47.4703542 ], + [ 9.6101761, 47.4702434 ], + [ 9.6104927, 47.4701151 ], + [ 9.6107933, 47.4699703 ], + [ 9.6110759, 47.4698097 ], + [ 9.6113388, 47.4696344 ], + [ 9.6115803, 47.4694455 ], + [ 9.611799, 47.4692442 ], + [ 9.6119935, 47.4690317 ], + [ 9.6121624, 47.4688095 ], + [ 9.6161278, 47.4630439 ], + [ 9.6049168, 47.463772 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 120, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "CTR0014", + "country" : "CHE", + "name" : [ + { + "text" : "CTR ST. GALLEN", + "lang" : "de-CH" + }, + { + "text" : "CTR ST. GALLEN", + "lang" : "fr-CH" + }, + { + "text" : "CTR ST. GALLEN", + "lang" : "it-CH" + }, + { + "text" : "CTR ST. GALLEN", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only permitted from an altitude of 120 m above ground with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Skyguide Special Flight Office", + "lang" : "de-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "it-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "en-GB" + } + ], + "siteURL" : "https://skyguide.ch/services/special-flights", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.1693089, 46.4536641 ], + [ 7.1692055, 46.453501 ], + [ 7.1690826, 46.453364 ], + [ 7.1690437, 46.4533207 ], + [ 7.1688714000000004, 46.4531629 ], + [ 7.168717, 46.4530681 ], + [ 7.1685378, 46.4529948 ], + [ 7.1683987, 46.4529666 ], + [ 7.1682284, 46.4529158 ], + [ 7.1680973, 46.4528435 ], + [ 7.1679495, 46.4527307 ], + [ 7.1678435, 46.4525838 ], + [ 7.1677453, 46.4524379 ], + [ 7.1677042, 46.4523307 ], + [ 7.167598, 46.4522288 ], + [ 7.1674033, 46.452133 ], + [ 7.1671175, 46.4520154 ], + [ 7.1668967, 46.4519204 ], + [ 7.1666771, 46.451847 ], + [ 7.1664902999999995, 46.4517287 ], + [ 7.1664075, 46.4516277 ], + [ 7.1663181, 46.4515484 ], + [ 7.1662858, 46.4515096 ], + [ 7.1661792, 46.4514815 ], + [ 7.1660246, 46.4514361 ], + [ 7.1659025, 46.4513854 ], + [ 7.1657805, 46.4513123 ], + [ 7.1656418, 46.4512004 ], + [ 7.1656003, 46.4511607 ], + [ 7.1653065, 46.4511105 ], + [ 7.1650138, 46.4510828 ], + [ 7.1648096, 46.4510437 ], + [ 7.1645902, 46.4509424 ], + [ 7.1644517, 46.4507846 ], + [ 7.1642395, 46.4505367 ], + [ 7.1640998, 46.4503736 ], + [ 7.1638954, 46.4501428 ], + [ 7.1637652, 46.4501371 ], + [ 7.1636754, 46.4501368 ], + [ 7.1635377, 46.4501032 ], + [ 7.1633751, 46.4500758 ], + [ 7.1633012, 46.4500253 ], + [ 7.163178, 46.4499296 ], + [ 7.1629829, 46.4499067 ], + [ 7.1628046, 46.4499017 ], + [ 7.1626904, 46.4498511 ], + [ 7.1625438, 46.4497608 ], + [ 7.1625181, 46.4496824 ], + [ 7.162486, 46.4495978 ], + [ 7.1625581, 46.4495017 ], + [ 7.162696, 46.4492583 ], + [ 7.1627526, 46.4491397 ], + [ 7.1627621, 46.4490551 ], + [ 7.1625906, 46.4490052 ], + [ 7.162264, 46.4489829 ], + [ 7.1619872, 46.4489048 ], + [ 7.1617431, 46.4487981 ], + [ 7.1615143, 46.4487471 ], + [ 7.1613023, 46.4487196 ], + [ 7.1610342, 46.4487253 ], + [ 7.1608468, 46.4487149 ], + [ 7.1606922, 46.4486642 ], + [ 7.1604066, 46.4485348 ], + [ 7.1600146, 46.4483377 ], + [ 7.1596733, 46.4481354 ], + [ 7.1593944, 46.4479557 ], + [ 7.1591832, 46.4477753 ], + [ 7.1589707, 46.4476011 ], + [ 7.1588973, 46.447448 ], + [ 7.1588396, 46.4472958 ], + [ 7.1588638, 46.4471322 ], + [ 7.1589205, 46.4469911 ], + [ 7.1589615, 46.446867 ], + [ 7.1590663, 46.4467261 ], + [ 7.159115, 46.4466353 ], + [ 7.1591232, 46.4465508 ], + [ 7.1591224, 46.4464491 ], + [ 7.159058, 46.4463311 ], + [ 7.1589674, 46.4462239 ], + [ 7.1589588, 46.4461339 ], + [ 7.1589672, 46.4460269 ], + [ 7.1589989, 46.4459307 ], + [ 7.1589589, 46.4458577 ], + [ 7.1588526, 46.4457783 ], + [ 7.1586892, 46.4456663 ], + [ 7.1585663, 46.4455365 ], + [ 7.1584029, 46.4454183 ], + [ 7.158224, 46.4452829 ], + [ 7.1580606, 46.44517 ], + [ 7.1579791, 46.4450862 ], + [ 7.1578327999999996, 46.4449455 ], + [ 7.1576862, 46.4448551 ], + [ 7.1575798, 46.4447937 ], + [ 7.1574902, 46.4447539 ], + [ 7.1573264, 46.4447202 ], + [ 7.157156, 46.4447153 ], + [ 7.1570012, 46.444687 ], + [ 7.1568616, 46.4445122 ], + [ 7.1565286, 46.4444906 ], + [ 7.1560641, 46.4444742 ], + [ 7.1556323, 46.4444182 ], + [ 7.1553074, 46.4443455 ], + [ 7.1549723, 46.4442277 ], + [ 7.1546463, 46.4441045 ], + [ 7.1544018, 46.4440652 ], + [ 7.1540184, 46.4439815 ], + [ 7.1537415, 46.4439142 ], + [ 7.1535062, 46.443880300000004 ], + [ 7.1533594, 46.4438296 ], + [ 7.1532698, 46.4437907 ], + [ 7.1496411, 46.4468328 ], + [ 7.1514543, 46.4477415 ], + [ 7.1693089, 46.4536641 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00058", + "country" : "CHE", + "name" : [ + { + "text" : "Pierreuse - Gummfluh", + "lang" : "de-CH" + }, + { + "text" : "Pierreuse - Gummfluh", + "lang" : "fr-CH" + }, + { + "text" : "Pierreuse - Gummfluh", + "lang" : "it-CH" + }, + { + "text" : "Pierreuse - Gummfluh", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "startDateTime" : "2024-11-15T00:00:00+01:00", + "endDateTime" : "2025-04-15T00:00:00+02:00" + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Generaldirektion für Umwelt", + "lang" : "de-CH" + }, + { + "text" : "Direction générale de l'environnement", + "lang" : "fr-CH" + }, + { + "text" : "Direzione generale dell'Ambiente", + "lang" : "it-CH" + }, + { + "text" : "Environment Department", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.dge@vd.ch", + "phone" : "0041213164422", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8947579999999995, 47.4200076 ], + [ 7.8949288, 47.4198759 ], + [ 7.8950373, 47.4197705 ], + [ 7.8951263, 47.4196093 ], + [ 7.8951677, 47.4194773 ], + [ 7.8952316, 47.4189428 ], + [ 7.8951891, 47.4189064 ], + [ 7.8947373, 47.418925 ], + [ 7.894506, 47.4189477 ], + [ 7.8935808, 47.4190544 ], + [ 7.8936022999999995, 47.4191268 ], + [ 7.8936089, 47.4191393 ], + [ 7.8936893999999995, 47.4192939 ], + [ 7.8937071, 47.4193279 ], + [ 7.8937091, 47.4193317 ], + [ 7.892719, 47.4194966 ], + [ 7.8926797, 47.4195038 ], + [ 7.8923670999999995, 47.4195613 ], + [ 7.8919719, 47.4196577 ], + [ 7.8916159, 47.4197618 ], + [ 7.8914442, 47.419812 ], + [ 7.8913841, 47.4199542 ], + [ 7.8914577999999995, 47.4199718 ], + [ 7.8914821, 47.4199942 ], + [ 7.8914959, 47.4200609 ], + [ 7.8917828, 47.4200544 ], + [ 7.8921579, 47.4200229 ], + [ 7.8923956, 47.4199927 ], + [ 7.89251, 47.419979 ], + [ 7.8926222, 47.4199657 ], + [ 7.8928556, 47.4199393 ], + [ 7.8928394, 47.4200322 ], + [ 7.8927898, 47.4202895 ], + [ 7.893333, 47.4202512 ], + [ 7.8937861, 47.4202246 ], + [ 7.8942193, 47.4201943 ], + [ 7.8944227, 47.4201736 ], + [ 7.8945605, 47.4201598 ], + [ 7.8947579999999995, 47.4200076 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr078", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Rüttiacher", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Rüttiacher", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Rüttiacher", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Rüttiacher", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.9737865, 46.6112861 ], + [ 6.9719994, 46.6129541 ], + [ 6.9707318, 46.6155555 ], + [ 6.9718627, 46.6168104 ], + [ 6.9749795, 46.6176173 ], + [ 6.9805974, 46.6175621 ], + [ 6.9803285, 46.6169368 ], + [ 6.9791573, 46.6151191 ], + [ 6.9787824, 46.6145916 ], + [ 6.9784258999999995, 46.614088100000004 ], + [ 6.9779791, 46.6135953 ], + [ 6.9771676, 46.6132933 ], + [ 6.9757866, 46.6128877 ], + [ 6.9754865, 46.6128642 ], + [ 6.9752775, 46.6124547 ], + [ 6.9749845, 46.6121137 ], + [ 6.9737865, 46.6112861 ] + ] + ], + "layer" : { + "upper" : 300, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "FR006", + "country" : "CHE", + "name" : [ + { + "text" : "CIG Sud", + "lang" : "de-CH" + }, + { + "text" : "CIG Sud", + "lang" : "fr-CH" + }, + { + "text" : "CIG Sud", + "lang" : "it-CH" + }, + { + "text" : "CIG Sud", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kantonspolizei (Pol)", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale (Pol)", + "lang" : "fr-CH" + }, + { + "text" : "Police cantonale (Pol)", + "lang" : "it-CH" + }, + { + "text" : "Police cantonale (Pol)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Kommandant", + "lang" : "de-CH" + }, + { + "text" : "Commandant", + "lang" : "fr-CH" + }, + { + "text" : "Commandant", + "lang" : "it-CH" + }, + { + "text" : "Commandant", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.fr.ch/police-et-securite/criminalite-ordre-public-et-circulation/drones-legislation-et-demandes-de-derogation", + "email" : "CEA@fr.ch", + "phone" : "0041263470117", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.756364, 47.5394676 ], + [ 7.7563577, 47.5393264 ], + [ 7.7563405, 47.5391856 ], + [ 7.7563124, 47.5390456 ], + [ 7.7562736, 47.5389069 ], + [ 7.7562241, 47.5387696 ], + [ 7.756164, 47.5386344 ], + [ 7.7560936, 47.5385014 ], + [ 7.756013, 47.5383711 ], + [ 7.7559224, 47.5382439 ], + [ 7.7558221, 47.53812 ], + [ 7.7557124, 47.5379998 ], + [ 7.7555936, 47.5378838 ], + [ 7.7554659, 47.537772 ], + [ 7.7553298, 47.537665 ], + [ 7.7551856, 47.5375629 ], + [ 7.7550337, 47.5374661 ], + [ 7.7548746, 47.5373748 ], + [ 7.7547086, 47.5372893 ], + [ 7.7545362, 47.5372097 ], + [ 7.7543579, 47.5371364 ], + [ 7.7541742, 47.5370695 ], + [ 7.7539855, 47.5370092 ], + [ 7.7537925, 47.5369556 ], + [ 7.7535956, 47.536909 ], + [ 7.7533954, 47.5368695 ], + [ 7.7531923, 47.536837 ], + [ 7.7529871, 47.5368118 ], + [ 7.7527802, 47.536794 ], + [ 7.7525721999999995, 47.5367834 ], + [ 7.7523636, 47.5367803 ], + [ 7.7521550999999995, 47.5367846 ], + [ 7.7519472, 47.5367962 ], + [ 7.7517405, 47.5368152 ], + [ 7.7515356, 47.5368415 ], + [ 7.7513328999999995, 47.536875 ], + [ 7.7511332, 47.5369157 ], + [ 7.7509368, 47.5369634 ], + [ 7.7507444, 47.5370179 ], + [ 7.7505565, 47.5370793 ], + [ 7.7503736, 47.5371471 ], + [ 7.7501961999999995, 47.5372214 ], + [ 7.7500247, 47.5373019 ], + [ 7.7498597, 47.5373883 ], + [ 7.7497017, 47.5374805 ], + [ 7.7495509, 47.5375781 ], + [ 7.7494079, 47.537681 ], + [ 7.7492731, 47.5377888 ], + [ 7.7491467, 47.5379012 ], + [ 7.7490293, 47.5380179 ], + [ 7.748921, 47.5381386 ], + [ 7.7488222, 47.538263 ], + [ 7.7487331, 47.5383908 ], + [ 7.748654, 47.5385215 ], + [ 7.7485852, 47.5386548 ], + [ 7.7485267, 47.5387904 ], + [ 7.7484788, 47.5389279 ], + [ 7.7484416, 47.5390669 ], + [ 7.7484152, 47.539207 ], + [ 7.7483997, 47.5393479 ], + [ 7.748395, 47.5394891 ], + [ 7.7484013, 47.5396303 ], + [ 7.7484185, 47.5397711 ], + [ 7.7484465, 47.5399111 ], + [ 7.7484854, 47.5400499 ], + [ 7.7485349, 47.5401871 ], + [ 7.7485949, 47.5403224 ], + [ 7.7486653, 47.5404553 ], + [ 7.7487459, 47.5405856 ], + [ 7.7488364, 47.5407129 ], + [ 7.7489367, 47.5408367 ], + [ 7.7490464, 47.5409569 ], + [ 7.7491652, 47.541073 ], + [ 7.7492929, 47.5411847 ], + [ 7.749429, 47.5412918 ], + [ 7.7495732, 47.5413938 ], + [ 7.7497251, 47.5414907 ], + [ 7.7498842, 47.541582 ], + [ 7.7500502000000004, 47.5416675 ], + [ 7.7502226, 47.5417471 ], + [ 7.7504009, 47.5418204 ], + [ 7.7505847, 47.5418873 ], + [ 7.7507733, 47.5419476 ], + [ 7.7509664, 47.5420012 ], + [ 7.7511633, 47.5420478 ], + [ 7.7513635, 47.5420874 ], + [ 7.7515666, 47.5421198 ], + [ 7.7517719, 47.542145 ], + [ 7.7519788, 47.5421629 ], + [ 7.7521868, 47.5421734 ], + [ 7.7523954, 47.5421765 ], + [ 7.7526039, 47.5421723 ], + [ 7.7528118, 47.5421606 ], + [ 7.7530185, 47.5421416 ], + [ 7.7532235, 47.5421153 ], + [ 7.7534262, 47.5420818 ], + [ 7.753626, 47.5420411 ], + [ 7.7538222999999995, 47.5419935 ], + [ 7.7540147, 47.5419389 ], + [ 7.7542027000000004, 47.5418776 ], + [ 7.7543856, 47.5418097 ], + [ 7.754563, 47.5417354 ], + [ 7.7547345, 47.5416549 ], + [ 7.7548995, 47.5415684 ], + [ 7.7550576, 47.5414763 ], + [ 7.7552083, 47.5413786 ], + [ 7.7553513, 47.5412758 ], + [ 7.7554861, 47.541168 ], + [ 7.7556125, 47.5410556 ], + [ 7.7557299, 47.5409388 ], + [ 7.7558382, 47.5408181 ], + [ 7.755937, 47.5406937 ], + [ 7.7560261, 47.5405659 ], + [ 7.7561051, 47.5404352 ], + [ 7.7561739, 47.5403019 ], + [ 7.7562324, 47.5401663 ], + [ 7.7562803, 47.5400288 ], + [ 7.7563174, 47.5398898 ], + [ 7.7563438, 47.5397497 ], + [ 7.7563594, 47.5396088 ], + [ 7.756364, 47.5394676 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0004", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Asphard", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Asphard", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Asphard", + "lang" : "it-CH" + }, + { + "text" : "Substation Asphard", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8818978, 47.4152643 ], + [ 7.8818602, 47.4152959 ], + [ 7.8819531, 47.4153681 ], + [ 7.8820965, 47.415442 ], + [ 7.8821551, 47.4155233 ], + [ 7.8822805, 47.4156703 ], + [ 7.8823172, 47.4158598 ], + [ 7.8823884, 47.4159177 ], + [ 7.8823864, 47.4160001 ], + [ 7.8823871, 47.416009 ], + [ 7.882389, 47.4160178 ], + [ 7.882424, 47.4161051 ], + [ 7.882512, 47.4164071 ], + [ 7.8825229, 47.416456 ], + [ 7.8825275999999995, 47.4165054 ], + [ 7.882701, 47.4164819 ], + [ 7.8826392, 47.4163874 ], + [ 7.8825914, 47.416273 ], + [ 7.8825705, 47.4161518 ], + [ 7.8825388, 47.4160402 ], + [ 7.8825243, 47.4159714 ], + [ 7.8824827, 47.4159027 ], + [ 7.8824676, 47.4158778 ], + [ 7.8824287, 47.4158327 ], + [ 7.8824527, 47.4157328 ], + [ 7.8824374, 47.4156331 ], + [ 7.8823582, 47.4155632 ], + [ 7.8822837, 47.4154847 ], + [ 7.8822704, 47.4154525 ], + [ 7.882237, 47.4154261 ], + [ 7.8821396, 47.4153767 ], + [ 7.8820831, 47.4153126 ], + [ 7.8818978, 47.4152643 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns189", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Mapprach - Hofmatt", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Mapprach - Hofmatt", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Mapprach - Hofmatt", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Mapprach - Hofmatt", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.1349667, 46.395721 ], + [ 8.1349595, 46.3955798 ], + [ 8.1349417, 46.3954391 ], + [ 8.1349132, 46.3952992 ], + [ 8.1348742, 46.3951605 ], + [ 8.1348248, 46.3950234 ], + [ 8.1347651, 46.3948883 ], + [ 8.1346952, 46.3947555 ], + [ 8.1346154, 46.3946255 ], + [ 8.1345259, 46.3944985 ], + [ 8.1344268, 46.3943749 ], + [ 8.1343186, 46.3942551 ], + [ 8.1342015, 46.3941394 ], + [ 8.1340757, 46.3940281 ], + [ 8.1339417, 46.3939215 ], + [ 8.1337999, 46.3938198 ], + [ 8.1336505, 46.3937235 ], + [ 8.1334941, 46.3936327 ], + [ 8.133331, 46.3935477 ], + [ 8.1331617, 46.3934687 ], + [ 8.1329866, 46.3933959 ], + [ 8.1328063, 46.3933296 ], + [ 8.132621199999999, 46.3932699 ], + [ 8.1324319, 46.393217 ], + [ 8.1322388, 46.393171 ], + [ 8.1320425, 46.3931321 ], + [ 8.1318436, 46.3931003 ], + [ 8.1316425, 46.3930758 ], + [ 8.1314398, 46.3930586 ], + [ 8.1312361, 46.3930488 ], + [ 8.1310319, 46.3930463 ], + [ 8.1308279, 46.3930513 ], + [ 8.1306244, 46.3930636 ], + [ 8.1304222, 46.3930833 ], + [ 8.1302218, 46.3931102 ], + [ 8.1300237, 46.3931444 ], + [ 8.1298284, 46.3931857 ], + [ 8.1296365, 46.3932341 ], + [ 8.1294486, 46.3932893 ], + [ 8.129265, 46.3933512 ], + [ 8.1290864, 46.3934197 ], + [ 8.1289133, 46.3934946 ], + [ 8.128746, 46.3935757 ], + [ 8.1285851, 46.3936627 ], + [ 8.128431, 46.3937554 ], + [ 8.1282841, 46.3938535 ], + [ 8.1281449, 46.3939568 ], + [ 8.1280136, 46.3940651 ], + [ 8.1278908, 46.3941779 ], + [ 8.1277766, 46.3942951 ], + [ 8.1276714, 46.3944162 ], + [ 8.1275756, 46.3945409 ], + [ 8.1274893, 46.394669 ], + [ 8.1274128, 46.394800000000004 ], + [ 8.1273463, 46.3949336 ], + [ 8.12729, 46.3950694 ], + [ 8.1272441, 46.395207 ], + [ 8.1272086, 46.3953462 ], + [ 8.1271838, 46.3954864 ], + [ 8.1271695, 46.3956274 ], + [ 8.127166, 46.3957686 ], + [ 8.1271731, 46.3959098 ], + [ 8.1271909, 46.3960506 ], + [ 8.1272193, 46.3961905 ], + [ 8.1272583, 46.3963292 ], + [ 8.1273077, 46.3964663 ], + [ 8.1273675, 46.3966014 ], + [ 8.1274373, 46.3967341 ], + [ 8.1275171, 46.3968642 ], + [ 8.1276066, 46.3969912 ], + [ 8.1277056, 46.3971148 ], + [ 8.1278139, 46.3972346 ], + [ 8.127931, 46.3973503 ], + [ 8.1280567, 46.3974616 ], + [ 8.1281907, 46.3975683 ], + [ 8.1283326, 46.3976699 ], + [ 8.128482, 46.3977662 ], + [ 8.1286384, 46.397857 ], + [ 8.1288015, 46.3979421 ], + [ 8.1289708, 46.3980211 ], + [ 8.1291459, 46.3980938 ], + [ 8.1293262, 46.3981601 ], + [ 8.1295113, 46.3982198 ], + [ 8.1297006, 46.3982728 ], + [ 8.1298937, 46.3983188 ], + [ 8.13009, 46.3983577 ], + [ 8.130289, 46.3983895 ], + [ 8.1304901, 46.398414 ], + [ 8.1306928, 46.3984312 ], + [ 8.1308965, 46.398441 ], + [ 8.1311007, 46.3984435 ], + [ 8.1313048, 46.3984385 ], + [ 8.1315083, 46.3984262 ], + [ 8.1317105, 46.3984065 ], + [ 8.131911, 46.3983796 ], + [ 8.1321091, 46.3983454 ], + [ 8.1323044, 46.398304 ], + [ 8.1324963, 46.3982557 ], + [ 8.1326842, 46.3982005 ], + [ 8.1328678, 46.3981385 ], + [ 8.1330464, 46.39807 ], + [ 8.1332195, 46.3979951 ], + [ 8.1333868, 46.3979141 ], + [ 8.1335477, 46.3978271 ], + [ 8.1337018, 46.3977344 ], + [ 8.1338487, 46.3976362 ], + [ 8.133988, 46.3975329 ], + [ 8.1341192, 46.3974246 ], + [ 8.1342421, 46.3973118 ], + [ 8.1343562, 46.3971946 ], + [ 8.1344614, 46.3970735 ], + [ 8.1345573, 46.3969488 ], + [ 8.1346435, 46.3968207 ], + [ 8.13472, 46.3966897 ], + [ 8.1347865, 46.3965561 ], + [ 8.1348427, 46.3964203 ], + [ 8.1348886, 46.3962826 ], + [ 8.1349241, 46.3961435 ], + [ 8.1349489, 46.3960032 ], + [ 8.1349631, 46.3958623 ], + [ 8.1349667, 46.395721 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0034", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Fiesch", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Fiesch", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Fiesch", + "lang" : "it-CH" + }, + { + "text" : "Substation Fiesch", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6995444, 47.4596743 ], + [ 7.6995786, 47.4599051 ], + [ 7.69962, 47.4601525 ], + [ 7.6996701, 47.4603851 ], + [ 7.7000326, 47.4607773 ], + [ 7.7002267, 47.4608873 ], + [ 7.7004736, 47.4609482 ], + [ 7.7007802, 47.4609366 ], + [ 7.7008029, 47.460831 ], + [ 7.7008734, 47.4607981 ], + [ 7.7010183, 47.460753 ], + [ 7.7011188, 47.4607753 ], + [ 7.7011773, 47.4608495 ], + [ 7.7012096, 47.4608904 ], + [ 7.7012487, 47.4609401 ], + [ 7.7012767, 47.4613037 ], + [ 7.7013367, 47.461449 ], + [ 7.7014906, 47.4615813 ], + [ 7.7014981, 47.4615816 ], + [ 7.7017507, 47.461694 ], + [ 7.7027652, 47.4613567 ], + [ 7.7028295, 47.4613236 ], + [ 7.7035698, 47.4606801 ], + [ 7.7035815, 47.4606459 ], + [ 7.7035964, 47.4606117 ], + [ 7.7036158, 47.4605759 ], + [ 7.7036554, 47.4605274 ], + [ 7.7036868, 47.4604937 ], + [ 7.703722, 47.4604656 ], + [ 7.7037625, 47.4604466 ], + [ 7.7038013, 47.4604327 ], + [ 7.70384, 47.4604273 ], + [ 7.703882, 47.460428 ], + [ 7.7039466, 47.4604278 ], + [ 7.7039992999999996, 47.4604343 ], + [ 7.7041152, 47.4604504 ], + [ 7.7042897, 47.460478 ], + [ 7.7044154, 47.4604849 ], + [ 7.7044935, 47.4604806 ], + [ 7.7045875, 47.4604758 ], + [ 7.7046738999999995, 47.4604705 ], + [ 7.7047574, 47.4604667 ], + [ 7.70481, 47.4604682 ], + [ 7.7048777, 47.4604706 ], + [ 7.7050748, 47.4604259 ], + [ 7.7051053, 47.4604197 ], + [ 7.7051209, 47.4604177 ], + [ 7.7051526, 47.4604158 ], + [ 7.7051843, 47.4604167 ], + [ 7.7052156, 47.4604205 ], + [ 7.7052458999999995, 47.4604271 ], + [ 7.7052605, 47.4604314 ], + [ 7.7052899, 47.4604426 ], + [ 7.7054591, 47.4605186 ], + [ 7.7054972, 47.4605345 ], + [ 7.7055656, 47.4605664 ], + [ 7.7056397, 47.4605935 ], + [ 7.7057344, 47.4606241 ], + [ 7.7058188, 47.4606508 ], + [ 7.7059218, 47.4606822 ], + [ 7.7060537, 47.4607177 ], + [ 7.7061703999999995, 47.4607414 ], + [ 7.7062268, 47.4607492 ], + [ 7.7062684, 47.4607548 ], + [ 7.7063272, 47.4607619 ], + [ 7.7063655, 47.4607675 ], + [ 7.706759, 47.4607712 ], + [ 7.7068054, 47.4607718 ], + [ 7.7068609, 47.4607728 ], + [ 7.7073803, 47.4604672 ], + [ 7.7073468, 47.4603299 ], + [ 7.7073221, 47.4602538 ], + [ 7.7072943, 47.4601526 ], + [ 7.7072796, 47.460103 ], + [ 7.7069738999999995, 47.460131 ], + [ 7.7066986, 47.4601536 ], + [ 7.7066727, 47.4600182 ], + [ 7.7064211, 47.4600599 ], + [ 7.7063793, 47.4597357 ], + [ 7.7063483, 47.4594964 ], + [ 7.7063454, 47.4594737 ], + [ 7.7063388, 47.4594064 ], + [ 7.7063219, 47.4592485 ], + [ 7.7063177, 47.4592146 ], + [ 7.7066902, 47.4592282 ], + [ 7.7069355, 47.459238 ], + [ 7.7069299, 47.4589837 ], + [ 7.7060635, 47.4586922 ], + [ 7.7058013, 47.4586529 ], + [ 7.7048558, 47.4587853 ], + [ 7.7033194, 47.4589081 ], + [ 7.7016501, 47.4589273 ], + [ 7.7017145, 47.4588751 ], + [ 7.7017504, 47.4588445 ], + [ 7.7017709, 47.4588207 ], + [ 7.7017846, 47.4587948 ], + [ 7.7017961, 47.4587596 ], + [ 7.701826, 47.4586046 ], + [ 7.7018389, 47.4585352 ], + [ 7.7018567000000004, 47.4584852 ], + [ 7.7018803, 47.4584435 ], + [ 7.7019245, 47.4583827 ], + [ 7.7019847, 47.4583222 ], + [ 7.7020495, 47.4582599 ], + [ 7.7020838, 47.45823 ], + [ 7.7022755, 47.4581081 ], + [ 7.7023478999999995, 47.4580633 ], + [ 7.7023838, 47.4580439 ], + [ 7.702414, 47.4580312 ], + [ 7.7024742, 47.4580102 ], + [ 7.702596, 47.4579794 ], + [ 7.7026557, 47.4579574 ], + [ 7.702859, 47.4579123 ], + [ 7.7029733, 47.4578866 ], + [ 7.7030337, 47.4578853 ], + [ 7.7031168999999995, 47.457897 ], + [ 7.7031484, 47.4579021 ], + [ 7.703262, 47.4579019 ], + [ 7.7033336, 47.4578996 ], + [ 7.7033662, 47.4578959 ], + [ 7.7033930999999995, 47.4578901 ], + [ 7.7034214, 47.4578812 ], + [ 7.7036862, 47.4577855 ], + [ 7.7037616, 47.4577627 ], + [ 7.703851, 47.4577362 ], + [ 7.703893, 47.4577246 ], + [ 7.703936, 47.457715 ], + [ 7.7039706, 47.4577079 ], + [ 7.7039949, 47.4574777 ], + [ 7.7040497, 47.4572169 ], + [ 7.7042021, 47.4570817 ], + [ 7.70435, 47.4569486 ], + [ 7.7044864, 47.4568522 ], + [ 7.7049663, 47.4565129 ], + [ 7.7036415, 47.4561909 ], + [ 7.7030455, 47.4558554 ], + [ 7.7029557, 47.4558699 ], + [ 7.7022464, 47.4557993 ], + [ 7.7016344, 47.4557385 ], + [ 7.6999662, 47.4555736 ], + [ 7.7000178, 47.4557207 ], + [ 7.7000995, 47.4559203 ], + [ 7.700193, 47.4561539 ], + [ 7.7003585999999995, 47.4565276 ], + [ 7.7004268, 47.4566814 ], + [ 7.7004738, 47.4567876 ], + [ 7.7004339, 47.4570388 ], + [ 7.7003998, 47.4572539 ], + [ 7.7003857, 47.4573424 ], + [ 7.7003683, 47.457406 ], + [ 7.7002439, 47.4578603 ], + [ 7.700141, 47.458167 ], + [ 7.6998678, 47.4581552 ], + [ 7.6997189, 47.458489900000004 ], + [ 7.6996564, 47.4586062 ], + [ 7.6996459999999995, 47.4588705 ], + [ 7.6996362, 47.4590652 ], + [ 7.6996348, 47.4591195 ], + [ 7.6995834, 47.4593741 ], + [ 7.6995798, 47.4594017 ], + [ 7.6995444, 47.4596743 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns223", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Stellihübel - Furtboden", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Stellihübel - Furtboden", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Stellihübel - Furtboden", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Stellihübel - Furtboden", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.597172, 47.5153237 ], + [ 7.597172, 47.515324 ], + [ 7.5970756999999995, 47.5152992 ], + [ 7.5965195, 47.5153135 ], + [ 7.5954138, 47.5155339 ], + [ 7.5934772, 47.5150662 ], + [ 7.5924488, 47.5150212 ], + [ 7.5925133, 47.5151552 ], + [ 7.5925294, 47.5151556 ], + [ 7.5928712, 47.5151631 ], + [ 7.5929104, 47.515187 ], + [ 7.5929138, 47.5151891 ], + [ 7.592918, 47.5151989 ], + [ 7.5929441, 47.5152601 ], + [ 7.5930461000000005, 47.5154994 ], + [ 7.5930707, 47.5157244 ], + [ 7.5930736, 47.5157507 ], + [ 7.593101, 47.5158101 ], + [ 7.5931952, 47.5160138 ], + [ 7.5932765, 47.5162382 ], + [ 7.5934587, 47.5166098 ], + [ 7.5936228, 47.5166734 ], + [ 7.5936283, 47.5166756 ], + [ 7.5938151, 47.5166153 ], + [ 7.5939516000000005, 47.5165713 ], + [ 7.5940104999999996, 47.5165537 ], + [ 7.594036, 47.5165461 ], + [ 7.5942124, 47.5164934 ], + [ 7.5943888, 47.5164407 ], + [ 7.5944983, 47.5164066 ], + [ 7.5945374999999995, 47.5163944 ], + [ 7.5945767, 47.5163821 ], + [ 7.5947057000000004, 47.5163419 ], + [ 7.5947343, 47.516333 ], + [ 7.5947771, 47.5163184 ], + [ 7.5947844, 47.516316 ], + [ 7.5948264, 47.5163017 ], + [ 7.5948373, 47.5162979 ], + [ 7.5949095, 47.516273 ], + [ 7.5949195, 47.5162689 ], + [ 7.5950777, 47.5162042 ], + [ 7.5950968, 47.5161956 ], + [ 7.5951922, 47.5161532 ], + [ 7.5952721, 47.5161177 ], + [ 7.5952876, 47.5161108 ], + [ 7.5954822, 47.5160521 ], + [ 7.5958396, 47.5159443 ], + [ 7.5959689, 47.5159053 ], + [ 7.596103, 47.5158728 ], + [ 7.5963677, 47.5158087 ], + [ 7.5964636, 47.5157855 ], + [ 7.5965584, 47.51577 ], + [ 7.5966391, 47.5157568 ], + [ 7.596657, 47.5157541 ], + [ 7.5966751, 47.515752 ], + [ 7.5966933999999995, 47.5157507 ], + [ 7.5967118, 47.51575 ], + [ 7.5967301, 47.5157499 ], + [ 7.5967485, 47.5157506 ], + [ 7.5967668, 47.5157519 ], + [ 7.5967849, 47.5157538 ], + [ 7.5968029, 47.5157565 ], + [ 7.5968206, 47.5157598 ], + [ 7.5968381, 47.5157637 ], + [ 7.5968552, 47.5157682 ], + [ 7.5968719, 47.5157734 ], + [ 7.5968882, 47.5157792 ], + [ 7.596904, 47.5157855 ], + [ 7.5969193, 47.5157924 ], + [ 7.5969322, 47.515799 ], + [ 7.5969447, 47.5158059 ], + [ 7.5969567, 47.5158133 ], + [ 7.5969682, 47.515821 ], + [ 7.5969791, 47.5158291 ], + [ 7.5969895, 47.5158375 ], + [ 7.5969992, 47.5158462 ], + [ 7.5970083, 47.5158553 ], + [ 7.5970168000000005, 47.5158646 ], + [ 7.5970247, 47.5158742 ], + [ 7.5970318, 47.515884 ], + [ 7.5970383, 47.515894 ], + [ 7.597044, 47.5159045 ], + [ 7.5970489, 47.5159152 ], + [ 7.5970531, 47.5159261 ], + [ 7.5970566, 47.5159371 ], + [ 7.5970592, 47.5159481 ], + [ 7.597061, 47.5159593 ], + [ 7.5970738, 47.516045 ], + [ 7.597111, 47.5162953 ], + [ 7.5971386, 47.5164277 ], + [ 7.5971736, 47.5165384 ], + [ 7.5971798, 47.5165579 ], + [ 7.5972386, 47.5167181 ], + [ 7.5972398, 47.5167214 ], + [ 7.5972655, 47.5167911 ], + [ 7.5972764, 47.5168208 ], + [ 7.5972767999999995, 47.5168218 ], + [ 7.5972772, 47.5168228 ], + [ 7.5972932, 47.5168664 ], + [ 7.5973095, 47.5169106 ], + [ 7.597267, 47.5169256 ], + [ 7.5972106, 47.5169039 ], + [ 7.5972093, 47.5169035 ], + [ 7.597207, 47.5169061 ], + [ 7.5971761, 47.5169417 ], + [ 7.5971927, 47.516992 ], + [ 7.5972474, 47.5170496 ], + [ 7.5973989, 47.5172094 ], + [ 7.5975307, 47.517342 ], + [ 7.5975451, 47.5173565 ], + [ 7.59775, 47.5175627 ], + [ 7.5978401, 47.5176535 ], + [ 7.5978623, 47.5177392 ], + [ 7.598079, 47.5179284 ], + [ 7.5982955, 47.5180789 ], + [ 7.5986476, 47.5182554 ], + [ 7.598951, 47.518338 ], + [ 7.5990736, 47.5183531 ], + [ 7.5991641, 47.5184011 ], + [ 7.5992355, 47.5185757 ], + [ 7.599242, 47.5185823 ], + [ 7.5993327, 47.518698 ], + [ 7.5994263, 47.5187175 ], + [ 7.5996329, 47.5187959 ], + [ 7.599969, 47.519003 ], + [ 7.6011133, 47.5198425 ], + [ 7.6015274999999995, 47.5202877 ], + [ 7.6017869000000005, 47.5207243 ], + [ 7.6019429, 47.5211348 ], + [ 7.6018156, 47.5216768 ], + [ 7.6016824, 47.5219124 ], + [ 7.6017329, 47.5220715 ], + [ 7.6017938, 47.5222637 ], + [ 7.601877, 47.522526 ], + [ 7.6019194, 47.5226596 ], + [ 7.6019553, 47.5227728 ], + [ 7.6019911, 47.522886 ], + [ 7.6018408, 47.5229588 ], + [ 7.6016904, 47.5230317 ], + [ 7.6015938, 47.5230785 ], + [ 7.6016770000000005, 47.5232638 ], + [ 7.6023515, 47.5239308 ], + [ 7.6027657, 47.5243585 ], + [ 7.603012, 47.5247514 ], + [ 7.6031679, 47.5250833 ], + [ 7.6033225, 47.5253301 ], + [ 7.6034524, 47.52529 ], + [ 7.6034463, 47.525218100000004 ], + [ 7.6034398, 47.5251346 ], + [ 7.6034265, 47.5249618 ], + [ 7.6032963, 47.5249667 ], + [ 7.6032938, 47.524938 ], + [ 7.6032934999999995, 47.5249343 ], + [ 7.603293, 47.5249342 ], + [ 7.6032619, 47.5248994 ], + [ 7.6032531, 47.5248658 ], + [ 7.6032304, 47.5248347 ], + [ 7.6032435, 47.524796 ], + [ 7.6032731, 47.5247652 ], + [ 7.6032787, 47.524762 ], + [ 7.6032762, 47.5247329 ], + [ 7.6033345, 47.5247306 ], + [ 7.6033358, 47.5247298 ], + [ 7.6034094, 47.5247275 ], + [ 7.6034045, 47.524689 ], + [ 7.603407, 47.5246875 ], + [ 7.6033916, 47.5244213 ], + [ 7.6033784, 47.5241947 ], + [ 7.6033254, 47.5238187 ], + [ 7.6032344, 47.5235203 ], + [ 7.6032231, 47.5234833 ], + [ 7.6032156, 47.5234856 ], + [ 7.6031767, 47.5234149 ], + [ 7.6031309, 47.5233461 ], + [ 7.603073, 47.5232658 ], + [ 7.6029795, 47.523136 ], + [ 7.602958, 47.5231033 ], + [ 7.6029348, 47.5230677 ], + [ 7.6028981, 47.5230041 ], + [ 7.6028285, 47.5228742 ], + [ 7.6027966, 47.5228147 ], + [ 7.6027827, 47.5227886 ], + [ 7.6027695, 47.5227623 ], + [ 7.6027572, 47.5227358 ], + [ 7.6027457, 47.5227092 ], + [ 7.602735, 47.5226824 ], + [ 7.6027251, 47.5226555 ], + [ 7.6027161, 47.5226284 ], + [ 7.6027079, 47.5226012 ], + [ 7.6027005, 47.5225739 ], + [ 7.602694, 47.5225465 ], + [ 7.6026878, 47.5225214 ], + [ 7.6026823, 47.5224962 ], + [ 7.6026777, 47.5224709 ], + [ 7.6026738, 47.5224456 ], + [ 7.6026707, 47.5224202 ], + [ 7.6026684, 47.5223948 ], + [ 7.6026669, 47.5223693 ], + [ 7.6026661, 47.5223439 ], + [ 7.6026658, 47.5223233 ], + [ 7.6026666, 47.5223027 ], + [ 7.6026684, 47.5222822 ], + [ 7.6026712, 47.5222617 ], + [ 7.6026751, 47.5222413 ], + [ 7.6026778, 47.5222301 ], + [ 7.6026782, 47.5222286 ], + [ 7.60268, 47.522221 ], + [ 7.6026859, 47.5222009 ], + [ 7.6026929, 47.5221808 ], + [ 7.6027009, 47.522161 ], + [ 7.6027099, 47.5221413 ], + [ 7.6027199, 47.5221219 ], + [ 7.6027309, 47.5221027 ], + [ 7.6027429, 47.5220838 ], + [ 7.6027446, 47.522081299999996 ], + [ 7.6027558, 47.5220652 ], + [ 7.6028659, 47.5219133 ], + [ 7.6029172, 47.5218347 ], + [ 7.6029271, 47.5218166 ], + [ 7.602936, 47.5217983 ], + [ 7.6029439, 47.5217798 ], + [ 7.6029508, 47.5217611 ], + [ 7.6029567, 47.5217422 ], + [ 7.6029617, 47.5217233 ], + [ 7.6029663, 47.521698 ], + [ 7.6029699, 47.5216727 ], + [ 7.6029725, 47.5216473 ], + [ 7.6029742, 47.5216219 ], + [ 7.6029748, 47.5215965 ], + [ 7.6029744, 47.521571 ], + [ 7.6029731, 47.5215456 ], + [ 7.6029708, 47.5215202 ], + [ 7.6029675, 47.5214949 ], + [ 7.6029633, 47.5214703 ], + [ 7.6029631, 47.5214696 ], + [ 7.6029578, 47.5214444 ], + [ 7.6029516, 47.5214194 ], + [ 7.6029479, 47.5214052 ], + [ 7.6029435, 47.5213912 ], + [ 7.6029384, 47.5213773 ], + [ 7.6029327, 47.5213635 ], + [ 7.6029262, 47.5213499 ], + [ 7.6029191, 47.5213364 ], + [ 7.6029113, 47.5213231 ], + [ 7.6029029, 47.5213099 ], + [ 7.602855, 47.5212416 ], + [ 7.6028791, 47.5212337 ], + [ 7.6029128, 47.5212227 ], + [ 7.6027172, 47.5209454 ], + [ 7.6026785, 47.5208905 ], + [ 7.6025741, 47.5207426 ], + [ 7.6021575, 47.5202089 ], + [ 7.6019199, 47.5199046 ], + [ 7.6019143, 47.5198967 ], + [ 7.6018357, 47.5198691 ], + [ 7.60173, 47.5197908 ], + [ 7.6016873, 47.519759 ], + [ 7.6016067, 47.5196993 ], + [ 7.6014943, 47.5196159 ], + [ 7.6010558, 47.5192775 ], + [ 7.6010397, 47.5192651 ], + [ 7.6008629, 47.5191336 ], + [ 7.6007225, 47.5190293 ], + [ 7.6006751, 47.5189941 ], + [ 7.6003865, 47.5187796 ], + [ 7.6002785, 47.5187305 ], + [ 7.5994208, 47.5183398 ], + [ 7.5994002, 47.5183305 ], + [ 7.599251, 47.5182629 ], + [ 7.5992432, 47.5182589 ], + [ 7.5991926, 47.5182332 ], + [ 7.5991924, 47.5182332 ], + [ 7.5991926, 47.5182329 ], + [ 7.5990282, 47.5181502 ], + [ 7.5990239, 47.518148 ], + [ 7.5987026, 47.5177483 ], + [ 7.5986386, 47.5176526 ], + [ 7.5984364, 47.5173506 ], + [ 7.5978639, 47.5162459 ], + [ 7.5973936, 47.5153902 ], + [ 7.5972755, 47.5153547 ], + [ 7.5972463, 47.515346 ], + [ 7.597172, 47.5153237 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr084", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Bruederholzrain", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Bruederholzrain", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Bruederholzrain", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Bruederholzrain", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.0340218, 47.126976 ], + [ 7.0342853, 47.1279669 ], + [ 7.0343593, 47.128208 ], + [ 7.0344559, 47.1283981 ], + [ 7.0345195, 47.128583 ], + [ 7.034632, 47.1287446 ], + [ 7.0347801, 47.1289846 ], + [ 7.0349364, 47.1292358 ], + [ 7.0351269, 47.1295315 ], + [ 7.0352489, 47.1297323 ], + [ 7.0353037, 47.1298948 ], + [ 7.0353591, 47.1300911 ], + [ 7.0353885, 47.1302315 ], + [ 7.0353588, 47.1303445 ], + [ 7.0353149, 47.1304917 ], + [ 7.0352028, 47.1306116 ], + [ 7.0350586, 47.1307263 ], + [ 7.034871, 47.1308023 ], + [ 7.0346183, 47.1308847 ], + [ 7.0344233, 47.1309608 ], + [ 7.0342446, 47.1310647 ], + [ 7.0340503, 47.1311577 ], + [ 7.0338566, 47.1312845 ], + [ 7.0336545, 47.1314225 ], + [ 7.0334868, 47.1315883 ], + [ 7.033326, 47.1317201 ], + [ 7.0330335, 47.1318426 ], + [ 7.0327712, 47.1318804 ], + [ 7.0324581, 47.1318849 ], + [ 7.0320443, 47.1318233 ], + [ 7.0317339, 47.1316815 ], + [ 7.0314485, 47.1315166 ], + [ 7.0311618, 47.1313012 ], + [ 7.0308599, 47.1311423 ], + [ 7.0304749, 47.130962 ], + [ 7.030166, 47.1308482 ], + [ 7.0145835, 47.1423532 ], + [ 7.0145488, 47.1425677 ], + [ 7.0144757, 47.1428559 ], + [ 7.0143674, 47.1430997 ], + [ 7.0142684, 47.143332 ], + [ 7.0141279, 47.1435875 ], + [ 7.013988, 47.143871 ], + [ 7.013792, 47.1441779 ], + [ 7.0136921, 47.1443989 ], + [ 7.0135661, 47.1445979 ], + [ 7.0134607, 47.1449035 ], + [ 7.0133539, 47.1451697 ], + [ 7.0132464, 47.1454247 ], + [ 7.0131237, 47.1457305 ], + [ 7.0130251, 47.1460022 ], + [ 7.0129059, 47.1463812 ], + [ 7.0127858, 47.1467658 ], + [ 7.0126831, 47.1471502 ], + [ 7.0125871, 47.1475064 ], + [ 7.0125426, 47.1479237 ], + [ 7.0132236, 47.1480885 ], + [ 7.0133973, 47.1481029 ], + [ 7.0135278, 47.1480672 ], + [ 7.0136151, 47.1479646 ], + [ 7.0137356, 47.147839 ], + [ 7.0138091, 47.1478266 ], + [ 7.0139759, 47.1478863 ], + [ 7.0140672, 47.1479018 ], + [ 7.0140989, 47.1478562 ], + [ 7.0142604, 47.1477525 ], + [ 7.0145604, 47.1478496 ], + [ 7.0145383, 47.1479401 ], + [ 7.0145827, 47.1480463 ], + [ 7.0146445, 47.1481582 ], + [ 7.014746, 47.1482412 ], + [ 7.0148365, 47.1482567 ], + [ 7.0149272, 47.1482555 ], + [ 7.015042, 47.1482257 ], + [ 7.0150805, 47.1481463 ], + [ 7.0151101, 47.1480445 ], + [ 7.0151927, 47.1480264 ], + [ 7.0152997, 47.1480361 ], + [ 7.0154412, 47.1480678 ], + [ 7.0157076, 47.1481485 ], + [ 7.0159245, 47.1482298 ], + [ 7.0161914, 47.1483386 ], + [ 7.0163913, 47.148392 ], + [ 7.0165505, 47.1484685 ], + [ 7.0167496, 47.1485163 ], + [ 7.0171478, 47.1485895 ], + [ 7.0173223, 47.1486207 ], + [ 7.0174306, 47.1486755 ], + [ 7.0175822, 47.1487802 ], + [ 7.0177251, 47.1488514 ], + [ 7.0178397, 47.1488385 ], + [ 7.0180053, 47.1488418 ], + [ 7.0181124, 47.1488458 ], + [ 7.0183217, 47.1489498 ], + [ 7.0185374, 47.1489861 ], + [ 7.0187605, 47.1490054 ], + [ 7.0189907, 47.1489796 ], + [ 7.0192673, 47.1491108 ], + [ 7.0195075, 47.1491635 ], + [ 7.0197729, 47.1489514 ], + [ 7.0199486, 47.1490277 ], + [ 7.0201943, 47.1492213 ], + [ 7.0205015, 47.1495659 ], + [ 7.0208218, 47.150023 ], + [ 7.0210209, 47.1500652 ], + [ 7.0213772, 47.1501332 ], + [ 7.0218496, 47.1502108 ], + [ 7.0223722, 47.1502934 ], + [ 7.0223115, 47.1504745 ], + [ 7.022299, 47.1505929 ], + [ 7.0223676, 47.1506708 ], + [ 7.0224686, 47.1507257 ], + [ 7.022726, 47.1507896 ], + [ 7.0234641, 47.1509308 ], + [ 7.0229181, 47.1521551 ], + [ 7.0230939, 47.1522314 ], + [ 7.0230957, 47.1523102 ], + [ 7.0230579, 47.1524121 ], + [ 7.0230138, 47.1525704 ], + [ 7.0228795, 47.1527695 ], + [ 7.0228843, 47.1529045 ], + [ 7.0229522, 47.1529655 ], + [ 7.0233227, 47.1526898 ], + [ 7.0234225, 47.1524688 ], + [ 7.0235601, 47.1523711 ], + [ 7.0236035, 47.1521846 ], + [ 7.0236642, 47.1520147 ], + [ 7.0237584, 47.1518783 ], + [ 7.0239123, 47.1517916 ], + [ 7.0239305, 47.1515773 ], + [ 7.0240095, 47.1514805 ], + [ 7.0241394, 47.1514222 ], + [ 7.0242693, 47.1513472 ], + [ 7.0244239, 47.1512886 ], + [ 7.0245298, 47.1512364 ], + [ 7.0246938, 47.1512284 ], + [ 7.0247934, 47.1512438 ], + [ 7.0248448, 47.1513106 ], + [ 7.0248262, 47.1514799 ], + [ 7.0250938, 47.1516112 ], + [ 7.0252792, 47.1517323 ], + [ 7.0252083, 47.1518404 ], + [ 7.0252693, 47.1519408 ], + [ 7.0253405, 47.1521088 ], + [ 7.0253877, 47.1522939 ], + [ 7.0253607, 47.1524858 ], + [ 7.0255585, 47.1524829 ], + [ 7.0256706, 47.1523742 ], + [ 7.0257065, 47.1522048 ], + [ 7.0255819, 47.1519081 ], + [ 7.0254749, 47.1516731 ], + [ 7.0253207, 47.1514727 ], + [ 7.0257056, 47.1511518 ], + [ 7.0260011, 47.1510912 ], + [ 7.0265527, 47.1515844 ], + [ 7.0270109, 47.151482 ], + [ 7.0278007, 47.1521856 ], + [ 7.0275406, 47.1525667 ], + [ 7.0289848, 47.1533848 ], + [ 7.0291141, 47.1532873 ], + [ 7.0298794, 47.1537604 ], + [ 7.0307865, 47.1540119 ], + [ 7.0322529, 47.1547338 ], + [ 7.0322004, 47.1549148 ], + [ 7.0324422, 47.1549789 ], + [ 7.0327333, 47.1550591 ], + [ 7.0329311, 47.1550675 ], + [ 7.0332361, 47.1550517 ], + [ 7.0334408, 47.1550149 ], + [ 7.033756, 47.1550724 ], + [ 7.0340003, 47.1552377 ], + [ 7.0343864, 47.1551927 ], + [ 7.0347333, 47.1552046 ], + [ 7.0349984, 47.1552344 ], + [ 7.0352489, 47.155349 ], + [ 7.0354926, 47.1554862 ], + [ 7.0356546, 47.1556528 ], + [ 7.0359352, 47.155919 ], + [ 7.0363395, 47.1561835 ], + [ 7.036827, 47.1564578 ], + [ 7.0374483, 47.1568035 ], + [ 7.0380038, 47.157139 ], + [ 7.0386339, 47.1575126 ], + [ 7.0391791, 47.1577862 ], + [ 7.0396371, 47.1579372 ], + [ 7.0401363, 47.158082 ], + [ 7.0405677, 47.1581432 ], + [ 7.0413964, 47.156988 ], + [ 7.041569, 47.1567208 ], + [ 7.0416708, 47.1565503 ], + [ 7.0416826, 47.1564037 ], + [ 7.0417451, 47.1563127 ], + [ 7.0417926, 47.1562388 ], + [ 7.0418881, 47.1561361 ], + [ 7.0430965, 47.1532296 ], + [ 7.0438217, 47.1534554 ], + [ 7.0439041, 47.1534655 ], + [ 7.0440359, 47.1534636 ], + [ 7.04664, 47.1531438 ], + [ 7.0468619, 47.1531236 ], + [ 7.0470597, 47.1531207 ], + [ 7.0472005, 47.1531356 ], + [ 7.0474827, 47.1531989 ], + [ 7.0493245, 47.1535492 ], + [ 7.0504054, 47.1538205 ], + [ 7.0505984, 47.153919 ], + [ 7.0507, 47.1539963 ], + [ 7.0507754, 47.1540459 ], + [ 7.0508586, 47.1540559 ], + [ 7.0509658, 47.1540544 ], + [ 7.0511382, 47.1540293 ], + [ 7.0513668, 47.1539809 ], + [ 7.0515235, 47.1539673 ], + [ 7.0516149, 47.1539828 ], + [ 7.0517151, 47.1540265 ], + [ 7.051816, 47.1540926 ], + [ 7.0520192, 47.1542529 ], + [ 7.0523069, 47.1544738 ], + [ 7.0526419, 47.1546379 ], + [ 7.0529756, 47.1547681 ], + [ 7.0533012, 47.1548759 ], + [ 7.053617, 47.1549613 ], + [ 7.0537764, 47.1550322 ], + [ 7.0539267, 47.1551032 ], + [ 7.0541121, 47.1552244 ], + [ 7.0543964, 47.1553385 ], + [ 7.0546635, 47.1554359 ], + [ 7.0550206, 47.1555207 ], + [ 7.0553119, 47.1555896 ], + [ 7.055625, 47.1555906 ], + [ 7.0558805, 47.1555868 ], + [ 7.056167, 47.1555262 ], + [ 7.0564315, 47.1555279 ], + [ 7.0566045, 47.1555367 ], + [ 7.0568037, 47.1555788 ], + [ 7.0569534, 47.155616 ], + [ 7.0571292, 47.1556866 ], + [ 7.0573819, 47.1558575 ], + [ 7.0575761, 47.1560067 ], + [ 7.0577465, 47.1561562 ], + [ 7.0579984, 47.1563101 ], + [ 7.0585238, 47.1564882 ], + [ 7.0591255, 47.1567158 ], + [ 7.0598914, 47.1569297 ], + [ 7.0608562, 47.1572026 ], + [ 7.0611558, 47.1572658 ], + [ 7.0614869, 47.1573002 ], + [ 7.0618172, 47.1573347 ], + [ 7.0620493, 47.1573708 ], + [ 7.062239, 47.1573566 ], + [ 7.062362, 47.1573323 ], + [ 7.0625083, 47.1572795 ], + [ 7.0626787, 47.1571925 ], + [ 7.0628251, 47.1571227 ], + [ 7.0629734, 47.1571261 ], + [ 7.0630812, 47.1571528 ], + [ 7.0631575, 47.1572022 ], + [ 7.0631849, 47.1572807 ], + [ 7.0631464, 47.157377 ], + [ 7.0630592, 47.1574684 ], + [ 7.062989, 47.1575934 ], + [ 7.0630165, 47.1576774 ], + [ 7.0631277, 47.1577996 ], + [ 7.0633055, 47.1579546 ], + [ 7.0635342, 47.1581258 ], + [ 7.0637031, 47.1582585 ], + [ 7.0641276, 47.1583761 ], + [ 7.0678266, 47.1527293 ], + [ 7.0689582, 47.1517608 ], + [ 7.069075, 47.1515562 ], + [ 7.0691905, 47.1513125 ], + [ 7.0724328, 47.1463481 ], + [ 7.0728478, 47.1454295 ], + [ 7.0733164, 47.144392 ], + [ 7.0737217, 47.1434342 ], + [ 7.0739527, 47.1429239 ], + [ 7.0742041, 47.1423009 ], + [ 7.0759767, 47.1372962 ], + [ 7.073314, 47.1365477 ], + [ 7.0726583, 47.136411 ], + [ 7.0721433, 47.1363004 ], + [ 7.0716964, 47.1362339 ], + [ 7.0713647, 47.1361938 ], + [ 7.0710654, 47.1361026 ], + [ 7.0705979, 47.1359237 ], + [ 7.070212, 47.1357323 ], + [ 7.0699031, 47.1356017 ], + [ 7.0696759, 47.1354588 ], + [ 7.0694671, 47.1353774 ], + [ 7.0692433, 47.1353469 ], + [ 7.0689948, 47.1352999 ], + [ 7.0685121, 47.1351664 ], + [ 7.0651356, 47.1342706 ], + [ 7.0649098, 47.1341612 ], + [ 7.0647677, 47.1341071 ], + [ 7.0645356, 47.1340654 ], + [ 7.0640722, 47.1340104 ], + [ 7.0636493, 47.1339266 ], + [ 7.063317, 47.133847 ], + [ 7.0629676, 47.1337508 ], + [ 7.0626112, 47.1336998 ], + [ 7.0610871, 47.1334691 ], + [ 7.0607891, 47.1334284 ], + [ 7.0606066, 47.1333861 ], + [ 7.0604732, 47.1333654 ], + [ 7.0603834, 47.1333724 ], + [ 7.0602837, 47.1333683 ], + [ 7.0601012, 47.133326 ], + [ 7.0598596, 47.1332394 ], + [ 7.059692, 47.1331688 ], + [ 7.0596241, 47.1330966 ], + [ 7.0595266, 47.1331374 ], + [ 7.059403, 47.1331393 ], + [ 7.059254, 47.1331302 ], + [ 7.0588888, 47.1330399 ], + [ 7.0581254, 47.1328878 ], + [ 7.0575851, 47.1327607 ], + [ 7.0571457, 47.1326826 ], + [ 7.0568478, 47.1326364 ], + [ 7.0565417, 47.1325959 ], + [ 7.0562835, 47.1325266 ], + [ 7.0561167, 47.132467 ], + [ 7.0559423, 47.1324301 ], + [ 7.0557789, 47.132472 ], + [ 7.0554727, 47.1324371 ], + [ 7.0552159, 47.1324014 ], + [ 7.0549084, 47.1323159 ], + [ 7.0544506, 47.1321762 ], + [ 7.0539831, 47.1320029 ], + [ 7.0534916, 47.1318413 ], + [ 7.0528224, 47.131547 ], + [ 7.0518697, 47.1311331 ], + [ 7.0510077, 47.1307347 ], + [ 7.0503275, 47.1303561 ], + [ 7.0497902, 47.130043 ], + [ 7.0488753, 47.129544 ], + [ 7.0480786, 47.1291109 ], + [ 7.0472057, 47.1286225 ], + [ 7.0465667, 47.1282546 ], + [ 7.0460378, 47.1279357 ], + [ 7.0455161, 47.127628 ], + [ 7.0447867, 47.1272389 ], + [ 7.0441396, 47.1268542 ], + [ 7.0435516, 47.1265079 ], + [ 7.0430651, 47.1262448 ], + [ 7.0399692, 47.1247463 ], + [ 7.0382057, 47.1265101 ], + [ 7.0360692, 47.1267005 ], + [ 7.0340218, 47.126976 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "JBG0011", + "country" : "CHE", + "name" : [ + { + "text" : "Eidgenössisches Jagdbanngebiet Combe-Grède", + "lang" : "de-CH" + }, + { + "text" : "District franc fédéral Combe-Grède", + "lang" : "fr-CH" + }, + { + "text" : "Bandita federale di caccia Combe-Grède", + "lang" : "it-CH" + }, + { + "text" : "Federal Game Reserve Combe-Grède", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.9789864999999995, 46.58446 ], + [ 7.9788736, 46.5821065 ], + [ 7.9785823, 46.5797603 ], + [ 7.9781133, 46.5774278 ], + [ 7.977468, 46.5751155 ], + [ 7.9766481, 46.5728296 ], + [ 7.9756559, 46.5705765 ], + [ 7.9744942, 46.5683622 ], + [ 7.9731662, 46.5661929 ], + [ 7.9716755, 46.5640744 ], + [ 7.9700261999999995, 46.5620127 ], + [ 7.9682227999999995, 46.5600132 ], + [ 7.9662704, 46.5580816 ], + [ 7.9641742, 46.5562231 ], + [ 7.9619401, 46.5544428 ], + [ 7.9595741, 46.5527455 ], + [ 7.9570827, 46.5511359 ], + [ 7.9544728, 46.5496185 ], + [ 7.9517514, 46.5481972 ], + [ 7.9489262, 46.5468762 ], + [ 7.9460047, 46.5456588 ], + [ 7.942995, 46.5445486 ], + [ 7.9399054, 46.5435484 ], + [ 7.9367442, 46.5426612 ], + [ 7.9335202, 46.5418892 ], + [ 7.9302421, 46.5412346 ], + [ 7.9269189, 46.5406992 ], + [ 7.9235597, 46.5402844 ], + [ 7.9201737, 46.5399914 ], + [ 7.9167701, 46.539821 ], + [ 7.9133583, 46.5397736 ], + [ 7.9099476, 46.5398494 ], + [ 7.9065473, 46.5400482 ], + [ 7.9031667, 46.5403694 ], + [ 7.899815, 46.5408122 ], + [ 7.8965014, 46.5413753 ], + [ 7.893235, 46.5420572 ], + [ 7.8900247, 46.542856 ], + [ 7.8868793, 46.5437696 ], + [ 7.8838074, 46.5447954 ], + [ 7.8808174, 46.5459307 ], + [ 7.8779174, 46.5471723 ], + [ 7.8751155, 46.5485168 ], + [ 7.8724193, 46.5499606 ], + [ 7.8698361, 46.5514998 ], + [ 7.8673731, 46.55313 ], + [ 7.865037, 46.5548469 ], + [ 7.8628342, 46.5566457 ], + [ 7.8607707, 46.5585216 ], + [ 7.8588522, 46.5604693 ], + [ 7.8570841, 46.5624836 ], + [ 7.855471, 46.564559 ], + [ 7.8540175, 46.5666897 ], + [ 7.8527276, 46.5688699 ], + [ 7.8516048, 46.5710938 ], + [ 7.8506522, 46.573355 ], + [ 7.8498725, 46.575647599999996 ], + [ 7.8492678, 46.5779651 ], + [ 7.8488397, 46.5803013 ], + [ 7.8485895, 46.5826498 ], + [ 7.8485179, 46.585004 ], + [ 7.8486252, 46.5873576 ], + [ 7.8489109, 46.5897041 ], + [ 7.8493744, 46.5920371 ], + [ 7.8500145, 46.5943502 ], + [ 7.8508293, 46.5966369 ], + [ 7.8518168, 46.5988912 ], + [ 7.8529741, 46.6011067 ], + [ 7.8542982, 46.6032775 ], + [ 7.8557853, 46.6053974 ], + [ 7.8574316, 46.6074608 ], + [ 7.8592324, 46.609462 ], + [ 7.8611829, 46.6113954 ], + [ 7.8632777, 46.6132558 ], + [ 7.865511, 46.6150381 ], + [ 7.8678768, 46.6167373 ], + [ 7.8703685, 46.6183488 ], + [ 7.8729794, 46.6198682 ], + [ 7.8757023, 46.6212913 ], + [ 7.8785296, 46.6226142 ], + [ 7.8814537, 46.6238333 ], + [ 7.8844666, 46.6249452 ], + [ 7.8875598, 46.6259468 ], + [ 7.8907251, 46.6268354 ], + [ 7.8939536, 46.6276087 ], + [ 7.8972365, 46.6282643 ], + [ 7.9005648, 46.6288006 ], + [ 7.9039293, 46.629216 ], + [ 7.9073208, 46.6295095 ], + [ 7.9107299, 46.6296802 ], + [ 7.9141474, 46.6297276 ], + [ 7.9175638, 46.6296517 ], + [ 7.9209697, 46.6294526 ], + [ 7.9243558, 46.6291309 ], + [ 7.9277128, 46.6286874 ], + [ 7.9310314, 46.6281234 ], + [ 7.9343025, 46.6274404 ], + [ 7.9375172, 46.6266403 ], + [ 7.9406666, 46.6257254 ], + [ 7.943742, 46.624698 ], + [ 7.9467351, 46.6235611 ], + [ 7.9496375, 46.622317699999996 ], + [ 7.9524414, 46.6209714 ], + [ 7.9551391, 46.6195256 ], + [ 7.9577231, 46.6179846 ], + [ 7.9601863, 46.6163524 ], + [ 7.9625221, 46.6146336 ], + [ 7.9647239, 46.6128328 ], + [ 7.9667858, 46.6109551 ], + [ 7.9687022, 46.6090055 ], + [ 7.9704677, 46.6069895 ], + [ 7.9720776, 46.6049125 ], + [ 7.9735275, 46.6027803 ], + [ 7.9748133, 46.6005987 ], + [ 7.9759317, 46.5983736 ], + [ 7.9768794, 46.5961113 ], + [ 7.9776541, 46.5938179 ], + [ 7.9782535, 46.5914997 ], + [ 7.978676, 46.589163 ], + [ 7.9789206, 46.5868143 ], + [ 7.9789864999999995, 46.58446 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSXL001", + "country" : "CHE", + "name" : [ + { + "text" : "LSXL Lauterbrunnen", + "lang" : "de-CH" + }, + { + "text" : "LSXL Lauterbrunnen", + "lang" : "fr-CH" + }, + { + "text" : "LSXL Lauterbrunnen", + "lang" : "it-CH" + }, + { + "text" : "LSXL Lauterbrunnen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Air-Glaciers SA", + "lang" : "de-CH" + }, + { + "text" : "Air-Glaciers SA", + "lang" : "fr-CH" + }, + { + "text" : "Air-Glaciers SA", + "lang" : "it-CH" + }, + { + "text" : "Air-Glaciers SA", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Basis Lauterbrunnen", + "lang" : "de-CH" + }, + { + "text" : "Basis Lauterbrunnen", + "lang" : "fr-CH" + }, + { + "text" : "Basis Lauterbrunnen", + "lang" : "it-CH" + }, + { + "text" : "Basis Lauterbrunnen", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.air-glaciers.ch/de-ch/lauterbrunnen-de", + "email" : "agl@air-glaciers.ch", + "phone" : "0041338560560", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P02DT12H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4603976, 47.4458283 ], + [ 7.4603541, 47.4457895 ], + [ 7.4603964, 47.4457716 ], + [ 7.4604517999999995, 47.445532299999996 ], + [ 7.4605037, 47.4453091 ], + [ 7.4605081, 47.4452854 ], + [ 7.4602089, 47.4438962 ], + [ 7.4601053, 47.4436262 ], + [ 7.4600728, 47.443501 ], + [ 7.4600052, 47.4434017 ], + [ 7.4599929, 47.4433549 ], + [ 7.4599736, 47.443293 ], + [ 7.4599525, 47.4432217 ], + [ 7.4599315, 47.4431289 ], + [ 7.4598869, 47.443022 ], + [ 7.4598519, 47.4429436 ], + [ 7.4598033, 47.4429028 ], + [ 7.459738, 47.4428491 ], + [ 7.4597329, 47.442845 ], + [ 7.4597942, 47.4427828 ], + [ 7.4598377, 47.4427381 ], + [ 7.4599625, 47.4426132 ], + [ 7.4599954, 47.4425701 ], + [ 7.4600255, 47.4424981 ], + [ 7.4600444, 47.4424504 ], + [ 7.4600767999999995, 47.4423876 ], + [ 7.4601414, 47.4422892 ], + [ 7.4602043, 47.4421885 ], + [ 7.4602601, 47.4421067 ], + [ 7.4602991, 47.4420462 ], + [ 7.4603158, 47.4419932 ], + [ 7.4603247, 47.4419447 ], + [ 7.4603391, 47.441866 ], + [ 7.4603464, 47.4418418 ], + [ 7.4603753, 47.4417494 ], + [ 7.4603782, 47.441689 ], + [ 7.4603708, 47.4416276 ], + [ 7.4604132, 47.4415034 ], + [ 7.4604342, 47.4414558 ], + [ 7.4604692, 47.4413511 ], + [ 7.4605183, 47.441275 ], + [ 7.4605814, 47.4411845 ], + [ 7.4606656, 47.441075 ], + [ 7.4607918, 47.4409989 ], + [ 7.4610061, 47.4409375 ], + [ 7.4612618, 47.4409417 ], + [ 7.4614372, 47.4409416 ], + [ 7.4614371, 47.4408417 ], + [ 7.4614453, 47.4407641 ], + [ 7.4614462, 47.4407632 ], + [ 7.4614357, 47.4407047 ], + [ 7.4614262, 47.4406501 ], + [ 7.4613962, 47.440484 ], + [ 7.4613871, 47.4403993 ], + [ 7.4613847, 47.4403238 ], + [ 7.4613854, 47.4402359 ], + [ 7.4614449, 47.4400012 ], + [ 7.4614528, 47.4399594 ], + [ 7.4614583, 47.4398678 ], + [ 7.4614568, 47.4398399 ], + [ 7.4614486, 47.4398345 ], + [ 7.4614412, 47.4398285 ], + [ 7.4614345, 47.4398222 ], + [ 7.4614192, 47.4398046 ], + [ 7.4614063, 47.4397862 ], + [ 7.4613958, 47.439767 ], + [ 7.4613879, 47.4397473 ], + [ 7.4613825, 47.4397272 ], + [ 7.4613798, 47.4397069 ], + [ 7.4613712, 47.439583999999996 ], + [ 7.4613585, 47.4395856 ], + [ 7.461346, 47.4395878 ], + [ 7.4613339, 47.4395908 ], + [ 7.4613221, 47.4395945 ], + [ 7.4613109, 47.4395989 ], + [ 7.4613002, 47.4396038 ], + [ 7.4612902, 47.4396094 ], + [ 7.461281, 47.4396155 ], + [ 7.4612725, 47.4396221 ], + [ 7.4612648, 47.4396292 ], + [ 7.4612581, 47.4396366 ], + [ 7.4612523, 47.4396445 ], + [ 7.4612475, 47.4396526 ], + [ 7.4611376, 47.4398654 ], + [ 7.461083, 47.4399575 ], + [ 7.4610165, 47.4400459 ], + [ 7.4609386, 47.4401299 ], + [ 7.4608499, 47.4402088 ], + [ 7.4607510999999995, 47.440282 ], + [ 7.460643, 47.4403489 ], + [ 7.4605265, 47.440409 ], + [ 7.4604025, 47.4404617 ], + [ 7.459686, 47.4407368 ], + [ 7.4596709, 47.4407425 ], + [ 7.4596555, 47.4407479 ], + [ 7.4596399, 47.440753 ], + [ 7.4593048, 47.4408602 ], + [ 7.459277, 47.4408686 ], + [ 7.4592486000000005, 47.4408761 ], + [ 7.4592197, 47.4408829 ], + [ 7.4589743, 47.440936 ], + [ 7.4585361, 47.4410516 ], + [ 7.4584652, 47.4410693 ], + [ 7.4583933, 47.4410852 ], + [ 7.4583206, 47.4410992 ], + [ 7.4577273, 47.4412057 ], + [ 7.4572109, 47.4412985 ], + [ 7.4571334, 47.4413151 ], + [ 7.4570586, 47.4413368 ], + [ 7.4569872, 47.4413632 ], + [ 7.456929, 47.4413895 ], + [ 7.4568742, 47.441419 ], + [ 7.4568232, 47.4414515 ], + [ 7.4567764, 47.4414867 ], + [ 7.4563675, 47.4418206 ], + [ 7.4563401, 47.4418409 ], + [ 7.4563099, 47.4418595 ], + [ 7.4562774, 47.441876 ], + [ 7.4562269, 47.4419515 ], + [ 7.4562045, 47.4419777 ], + [ 7.4561112, 47.4420872 ], + [ 7.4559324, 47.4422871 ], + [ 7.4559955, 47.4423799 ], + [ 7.455964, 47.4424941 ], + [ 7.4558904, 47.4426512 ], + [ 7.4558063, 47.4430153 ], + [ 7.4557537, 47.4432366 ], + [ 7.455714, 47.4434269 ], + [ 7.4557114, 47.4435155 ], + [ 7.4557124, 47.4436155 ], + [ 7.4557159, 47.4437053 ], + [ 7.4557273, 47.4437963 ], + [ 7.4557365, 47.4438931 ], + [ 7.4557466, 47.4439022 ], + [ 7.4557665, 47.4439859 ], + [ 7.455818, 47.4441447 ], + [ 7.4558636, 47.4442808 ], + [ 7.4558954, 47.4443723 ], + [ 7.4559277, 47.4444519 ], + [ 7.4559721, 47.4445579 ], + [ 7.456005, 47.4446359 ], + [ 7.4560404, 47.4447245 ], + [ 7.456071, 47.4447907 ], + [ 7.4560919, 47.4448366 ], + [ 7.4561093, 47.44487 ], + [ 7.4561405, 47.4449179 ], + [ 7.4561902, 47.444976 ], + [ 7.4562706, 47.4450622 ], + [ 7.4563668, 47.4451422 ], + [ 7.4564945, 47.4452382 ], + [ 7.4565906, 47.4453007 ], + [ 7.4566932, 47.4453588 ], + [ 7.4568183999999995, 47.445424 ], + [ 7.4571269000000004, 47.4455533 ], + [ 7.4573862, 47.4456602 ], + [ 7.4574768, 47.4456982 ], + [ 7.4575303, 47.4457179 ], + [ 7.4576039, 47.4457413 ], + [ 7.457682, 47.4457565 ], + [ 7.4577374, 47.4457664 ], + [ 7.4577401, 47.4457424 ], + [ 7.4585012, 47.4459273 ], + [ 7.4587336, 47.4459581 ], + [ 7.4587302, 47.445977 ], + [ 7.4588527, 47.4460091 ], + [ 7.4589455000000005, 47.4460317 ], + [ 7.4592979, 47.4461255 ], + [ 7.4593955, 47.4461588 ], + [ 7.4594769, 47.4461898 ], + [ 7.4595516, 47.4462178 ], + [ 7.4597234, 47.4462844 ], + [ 7.4597992, 47.4463162 ], + [ 7.4598606, 47.4463404 ], + [ 7.4599632, 47.446382 ], + [ 7.4599999, 47.4464002 ], + [ 7.4600289, 47.4464206 ], + [ 7.4601059, 47.4464849 ], + [ 7.4601628, 47.4465326 ], + [ 7.4601967, 47.4465586 ], + [ 7.4602367, 47.4465918 ], + [ 7.4602582, 47.4466098 ], + [ 7.460314, 47.446659 ], + [ 7.4605081, 47.4468172 ], + [ 7.4605147, 47.4468255 ], + [ 7.4606177, 47.4466353 ], + [ 7.4606444, 47.4465788 ], + [ 7.4606642, 47.4465211 ], + [ 7.4606769, 47.4464624 ], + [ 7.4606824, 47.4464032 ], + [ 7.4606807, 47.4463439 ], + [ 7.4606719, 47.4462849 ], + [ 7.4606559, 47.4462266 ], + [ 7.4606125, 47.4461212 ], + [ 7.4605546, 47.4460191 ], + [ 7.4604828, 47.4459212 ], + [ 7.4603976, 47.4458283 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns332", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Redelsflue", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Redelsflue", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Redelsflue", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Redelsflue", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.9279561, 47.4695856 ], + [ 7.9275138, 47.4697118 ], + [ 7.9272977000000004, 47.4697621 ], + [ 7.927129, 47.469788199999996 ], + [ 7.9270533, 47.4697962 ], + [ 7.9269022, 47.4698027 ], + [ 7.9266333, 47.469802 ], + [ 7.9262777, 47.4698106 ], + [ 7.9258194, 47.46985 ], + [ 7.9256744, 47.4698624 ], + [ 7.9254633, 47.469879 ], + [ 7.9253138, 47.4698964 ], + [ 7.9251657, 47.4699184 ], + [ 7.9250191999999995, 47.469945 ], + [ 7.9245923, 47.4700388 ], + [ 7.9245976, 47.4700824 ], + [ 7.9244178, 47.4702538 ], + [ 7.9243623, 47.4704588 ], + [ 7.9242834, 47.4707329 ], + [ 7.9241809, 47.4710991 ], + [ 7.9241714, 47.4711328 ], + [ 7.9242577, 47.4713046 ], + [ 7.924138, 47.4713263 ], + [ 7.9241002, 47.4714087 ], + [ 7.9240533, 47.4717088 ], + [ 7.924013, 47.4719292 ], + [ 7.9239385, 47.4720764 ], + [ 7.9238191, 47.4722095 ], + [ 7.9235181, 47.4723756 ], + [ 7.9235387, 47.4726063 ], + [ 7.9234796, 47.4729537 ], + [ 7.9233283, 47.4728755 ], + [ 7.9229063, 47.4726421 ], + [ 7.9224923, 47.472411 ], + [ 7.9221499, 47.4722167 ], + [ 7.9217922, 47.4719636 ], + [ 7.9219056, 47.4718777 ], + [ 7.921985, 47.4718164 ], + [ 7.9217004, 47.4715686 ], + [ 7.9214105, 47.471292 ], + [ 7.9211463, 47.4713609 ], + [ 7.920933, 47.4714772 ], + [ 7.9207708, 47.4712468 ], + [ 7.9206022, 47.4711302 ], + [ 7.9206305, 47.4711131 ], + [ 7.9207939, 47.4709996 ], + [ 7.9204885, 47.470683 ], + [ 7.9201684, 47.470816 ], + [ 7.9200035, 47.4706396 ], + [ 7.9197366, 47.470356699999996 ], + [ 7.9203114, 47.470041 ], + [ 7.9206161999999996, 47.4704476 ], + [ 7.9207022, 47.4705767 ], + [ 7.9212024, 47.4703659 ], + [ 7.9214591, 47.4707695 ], + [ 7.9217574, 47.4712139 ], + [ 7.9220198, 47.4713782 ], + [ 7.9226243, 47.4711318 ], + [ 7.9224494, 47.4709677 ], + [ 7.9219905, 47.4711352 ], + [ 7.9217001, 47.4706894 ], + [ 7.9215549, 47.470399 ], + [ 7.921414, 47.4701271 ], + [ 7.9212537, 47.4697729 ], + [ 7.9217747, 47.4696069 ], + [ 7.9217983, 47.4695988 ], + [ 7.921631, 47.4693158 ], + [ 7.9214482, 47.468963 ], + [ 7.9212857, 47.4687731 ], + [ 7.9212749, 47.4687653 ], + [ 7.9212601, 47.4687795 ], + [ 7.9210928, 47.4689392 ], + [ 7.9207599, 47.4691848 ], + [ 7.9204884, 47.4693952 ], + [ 7.9201868, 47.469627 ], + [ 7.919953, 47.4698066 ], + [ 7.9194187, 47.4695312 ], + [ 7.9190047, 47.4695519 ], + [ 7.9189802, 47.4693814 ], + [ 7.9182961, 47.469375 ], + [ 7.9183129, 47.4692604 ], + [ 7.9184348, 47.4691198 ], + [ 7.9184396, 47.469005 ], + [ 7.9184025, 47.4688588 ], + [ 7.9182238, 47.4685604 ], + [ 7.9178713, 47.4686483 ], + [ 7.9175454, 47.4687408 ], + [ 7.9171313, 47.4688531 ], + [ 7.9169046, 47.4688744 ], + [ 7.9167901, 47.4688368 ], + [ 7.9165271, 47.4686578 ], + [ 7.9164114, 47.4685329 ], + [ 7.9165054999999995, 47.4680732 ], + [ 7.9166175, 47.4675829 ], + [ 7.9169906, 47.4676747 ], + [ 7.91737, 47.4677686 ], + [ 7.9174568, 47.4676107 ], + [ 7.917486, 47.4676198 ], + [ 7.917744, 47.4672413 ], + [ 7.9177105, 47.4672324 ], + [ 7.9180174999999995, 47.4667816 ], + [ 7.9182982, 47.4663835 ], + [ 7.9182964, 47.4663204 ], + [ 7.918241, 47.4661269 ], + [ 7.9181439000000005, 47.4658404 ], + [ 7.9179252, 47.4656084 ], + [ 7.917681, 47.4653382 ], + [ 7.917281, 47.4654809 ], + [ 7.9170413, 47.4651916 ], + [ 7.9168414, 47.4649977 ], + [ 7.9169699, 47.4649338 ], + [ 7.9166717, 47.4645959 ], + [ 7.9164499, 47.4643297 ], + [ 7.9163359, 47.4641967 ], + [ 7.9161829, 47.4640521 ], + [ 7.9159787999999995, 47.4638701 ], + [ 7.9159442, 47.4638829 ], + [ 7.9157951, 47.4639549 ], + [ 7.9154703, 47.463988 ], + [ 7.9151421, 47.4640571 ], + [ 7.9148305, 47.4641495 ], + [ 7.9146024, 47.4642387 ], + [ 7.914334, 47.4643676 ], + [ 7.9144277, 47.4644826 ], + [ 7.9141623, 47.4646145 ], + [ 7.9142517, 47.4646885 ], + [ 7.9142969999999995, 47.4647223 ], + [ 7.9146937, 47.4645371 ], + [ 7.9149169, 47.4644501 ], + [ 7.9150462, 47.4647519 ], + [ 7.9153964, 47.4646412 ], + [ 7.9153504, 47.4649456 ], + [ 7.9153451, 47.4649777 ], + [ 7.9153223, 47.4649596 ], + [ 7.9148695, 47.4650253 ], + [ 7.9144029, 47.4651089 ], + [ 7.9143136, 47.4650033 ], + [ 7.9142581, 47.4650189 ], + [ 7.9140552, 47.465081 ], + [ 7.9138984, 47.465128 ], + [ 7.9138848, 47.4651162 ], + [ 7.913635, 47.46492 ], + [ 7.9137543, 47.4648659 ], + [ 7.9135671, 47.464681 ], + [ 7.9137006, 47.464607 ], + [ 7.9136085, 47.4645114 ], + [ 7.9135626, 47.4645553 ], + [ 7.9133407, 47.4642551 ], + [ 7.9133363, 47.4642596 ], + [ 7.9133325, 47.4642644 ], + [ 7.9133296, 47.4642694 ], + [ 7.9133274, 47.4642746 ], + [ 7.913326, 47.46428 ], + [ 7.9133255, 47.4642854 ], + [ 7.9133259, 47.4642908 ], + [ 7.913327, 47.4642962 ], + [ 7.9133291, 47.4643014 ], + [ 7.9133319, 47.4643065 ], + [ 7.9133468, 47.4643336 ], + [ 7.913285, 47.4643545 ], + [ 7.9132612, 47.4643224 ], + [ 7.9132575, 47.464318 ], + [ 7.9132531, 47.4643138 ], + [ 7.9132481, 47.4643101 ], + [ 7.9132425, 47.4643066 ], + [ 7.9132365, 47.4643037 ], + [ 7.91323, 47.4643011 ], + [ 7.9132231, 47.4642991 ], + [ 7.9132159, 47.4642976 ], + [ 7.9132086, 47.4642965 ], + [ 7.9132011, 47.4642961 ], + [ 7.9131797, 47.4643005 ], + [ 7.9131581, 47.4643045 ], + [ 7.9131363, 47.4643079 ], + [ 7.9131143999999995, 47.464311 ], + [ 7.9130924, 47.4643135 ], + [ 7.9130834, 47.4643158 ], + [ 7.9130748, 47.4643186 ], + [ 7.9130667, 47.4643219 ], + [ 7.913059, 47.4643258 ], + [ 7.9130518, 47.46433 ], + [ 7.9130452, 47.4643347 ], + [ 7.9130393, 47.4643398 ], + [ 7.9128584, 47.4646464 ], + [ 7.9127275, 47.4648696 ], + [ 7.9132079, 47.4650263 ], + [ 7.9134554999999995, 47.4651186 ], + [ 7.9135177, 47.4651433 ], + [ 7.913344, 47.4653006 ], + [ 7.9133123, 47.4652902 ], + [ 7.9129057, 47.4651558 ], + [ 7.912546, 47.4650399 ], + [ 7.9123190999999995, 47.4651559 ], + [ 7.9118731, 47.4653294 ], + [ 7.9114067, 47.4654965 ], + [ 7.9118, 47.4658394 ], + [ 7.9112483000000005, 47.4661802 ], + [ 7.9108741, 47.4663001 ], + [ 7.9107002, 47.4663544 ], + [ 7.9106994, 47.4664562 ], + [ 7.9103752, 47.4664302 ], + [ 7.9101536, 47.4664165 ], + [ 7.910105, 47.4666107 ], + [ 7.9105215, 47.4666 ], + [ 7.9106927, 47.4665953 ], + [ 7.9106868, 47.4667517 ], + [ 7.9106783, 47.4669423 ], + [ 7.9106134, 47.467128 ], + [ 7.9105867, 47.4671415 ], + [ 7.9105399, 47.4671655 ], + [ 7.9105139, 47.4672033 ], + [ 7.9104641, 47.467278 ], + [ 7.9102377, 47.4675801 ], + [ 7.9101869, 47.4676432 ], + [ 7.9100263, 47.4678343 ], + [ 7.9098168, 47.468071 ], + [ 7.9096936, 47.4682609 ], + [ 7.909613, 47.4684388 ], + [ 7.9092446, 47.4688351 ], + [ 7.9089925999999995, 47.4691543 ], + [ 7.9088457, 47.4694204 ], + [ 7.9087008999999995, 47.4696785 ], + [ 7.9086783, 47.4699283 ], + [ 7.9087251, 47.4700977 ], + [ 7.9087703, 47.470091 ], + [ 7.9088241, 47.4702171 ], + [ 7.9088771, 47.4703538 ], + [ 7.9089171, 47.4704345 ], + [ 7.9090248, 47.4706567 ], + [ 7.9090603, 47.4707334 ], + [ 7.9090915, 47.4707923 ], + [ 7.9091404999999995, 47.4708621 ], + [ 7.9092394, 47.4710027 ], + [ 7.909269, 47.4710429 ], + [ 7.9092924, 47.4710711 ], + [ 7.9093722, 47.4711619 ], + [ 7.9094491, 47.4712583 ], + [ 7.909526, 47.4713536 ], + [ 7.9096457000000004, 47.4715016 ], + [ 7.9097876, 47.4716683 ], + [ 7.909923, 47.4718241 ], + [ 7.9099789, 47.471887100000004 ], + [ 7.9100434, 47.4719527 ], + [ 7.910117, 47.4720132 ], + [ 7.9101697, 47.4720502 ], + [ 7.9102244, 47.4720838 ], + [ 7.9102583, 47.4721021 ], + [ 7.9103174, 47.4721278 ], + [ 7.9103584, 47.4721436 ], + [ 7.9104275, 47.4721652 ], + [ 7.9105471, 47.472201 ], + [ 7.9107042, 47.4722423 ], + [ 7.9108758, 47.4722897 ], + [ 7.9109406, 47.4723099 ], + [ 7.9111595, 47.4723818 ], + [ 7.9111956, 47.4723887 ], + [ 7.9112314999999995, 47.4723908 ], + [ 7.9112557, 47.4723891 ], + [ 7.9112817, 47.4723847 ], + [ 7.9113785, 47.4723579 ], + [ 7.9113709, 47.4723503 ], + [ 7.9112713, 47.4722388 ], + [ 7.9111122, 47.4720342 ], + [ 7.9110621, 47.4719611 ], + [ 7.9110211, 47.4718854 ], + [ 7.9109894, 47.4718077 ], + [ 7.9109672, 47.4717285 ], + [ 7.9109547, 47.4716483 ], + [ 7.9109397, 47.4715232 ], + [ 7.9109045, 47.4712494 ], + [ 7.9109017999999995, 47.47121 ], + [ 7.910904, 47.4711706 ], + [ 7.9109109, 47.4711315 ], + [ 7.9109226, 47.4710928 ], + [ 7.9109389, 47.471055 ], + [ 7.9109597, 47.4710182 ], + [ 7.910985, 47.4709827 ], + [ 7.9110144, 47.4709487 ], + [ 7.9110781, 47.4708904 ], + [ 7.9111492, 47.4708364 ], + [ 7.9112273, 47.4707869 ], + [ 7.9113118, 47.4707424 ], + [ 7.9114018, 47.4707033 ], + [ 7.9118104, 47.4705526 ], + [ 7.9119523, 47.4705097 ], + [ 7.9120036, 47.4704959 ], + [ 7.9120564, 47.470485 ], + [ 7.9121103, 47.4704769 ], + [ 7.9121649, 47.4704717 ], + [ 7.9122058, 47.4704693 ], + [ 7.9122468, 47.4704694 ], + [ 7.9122877, 47.470472 ], + [ 7.912328, 47.4704771 ], + [ 7.9123675, 47.4704846 ], + [ 7.9124058999999995, 47.4704945 ], + [ 7.9124427, 47.4705067 ], + [ 7.9124778, 47.4705211 ], + [ 7.9125114, 47.4705357 ], + [ 7.9126087, 47.4705979 ], + [ 7.9126589, 47.4706507 ], + [ 7.9127577, 47.4707571 ], + [ 7.9128515, 47.4708503 ], + [ 7.9129497, 47.4709415 ], + [ 7.9130522, 47.4710304 ], + [ 7.9131896, 47.4711268 ], + [ 7.9133396, 47.471214 ], + [ 7.9135010999999995, 47.4712912 ], + [ 7.9136725, 47.4713579 ], + [ 7.9138760999999995, 47.4714289 ], + [ 7.914074, 47.471507 ], + [ 7.9142656, 47.471592 ], + [ 7.9145845, 47.471736 ], + [ 7.9147607, 47.4718186 ], + [ 7.9149478, 47.4718892 ], + [ 7.9151441, 47.4719472 ], + [ 7.9153477, 47.4719922 ], + [ 7.9156398, 47.4720462 ], + [ 7.9158949, 47.4720812 ], + [ 7.9161519, 47.472109 ], + [ 7.9164104, 47.4721296 ], + [ 7.91697, 47.4721727 ], + [ 7.9174059, 47.4721964 ], + [ 7.9176426, 47.4722166 ], + [ 7.9178635, 47.4722436 ], + [ 7.9179253, 47.4722548 ], + [ 7.9180265, 47.4722814 ], + [ 7.9181954999999995, 47.4723403 ], + [ 7.918315, 47.472395 ], + [ 7.9184306, 47.4724513 ], + [ 7.9191111, 47.4727858 ], + [ 7.9200691, 47.473256 ], + [ 7.9202018, 47.4733307 ], + [ 7.9203256, 47.4734123 ], + [ 7.9204396, 47.4735001 ], + [ 7.9205431, 47.4735937 ], + [ 7.9206896, 47.4737097 ], + [ 7.9208501, 47.4738168 ], + [ 7.9210233, 47.4739144 ], + [ 7.9211674, 47.4739949 ], + [ 7.9212672, 47.4740543 ], + [ 7.9213591, 47.4741192 ], + [ 7.9214424999999995, 47.4741894 ], + [ 7.9215166, 47.4742641 ], + [ 7.921581, 47.4743428 ], + [ 7.9216351, 47.474425 ], + [ 7.9216786, 47.4745101 ], + [ 7.9217249, 47.474625 ], + [ 7.9217501, 47.4747058 ], + [ 7.9217838, 47.4747853 ], + [ 7.921826, 47.4748628 ], + [ 7.9223813, 47.4749195 ], + [ 7.9225274, 47.474937 ], + [ 7.9229479, 47.475001 ], + [ 7.9232374, 47.4750408 ], + [ 7.9232583, 47.4750185 ], + [ 7.9232455, 47.4747004 ], + [ 7.9232403, 47.4746964 ], + [ 7.9238821999999995, 47.4744972 ], + [ 7.9244618, 47.4741176 ], + [ 7.9250479, 47.4735231 ], + [ 7.9255707, 47.4728676 ], + [ 7.9258106, 47.4721095 ], + [ 7.9258697, 47.471568 ], + [ 7.9258757, 47.4712106 ], + [ 7.9264556, 47.4710493 ], + [ 7.9272954, 47.4708716 ], + [ 7.9287943, 47.4705075 ], + [ 7.9298078, 47.470539 ], + [ 7.9305734, 47.4709882 ], + [ 7.9316917, 47.4715721 ], + [ 7.9308059, 47.4723703 ], + [ 7.9313172, 47.4729759 ], + [ 7.9312591999999995, 47.4734698 ], + [ 7.9303671, 47.4743539 ], + [ 7.9292277, 47.4749925 ], + [ 7.9285973, 47.4754419 ], + [ 7.9277831, 47.4760408 ], + [ 7.9269412, 47.4764425 ], + [ 7.9264007, 47.4769614 ], + [ 7.9258371, 47.4772909 ], + [ 7.9266114, 47.4778583 ], + [ 7.9277808, 47.4779521 ], + [ 7.9281932, 47.4783573 ], + [ 7.9286076, 47.4788634 ], + [ 7.9294271, 47.4784362 ], + [ 7.9300265, 47.4783164 ], + [ 7.9313666, 47.478046 ], + [ 7.9319785, 47.4785038 ], + [ 7.9325145, 47.4789884 ], + [ 7.9326754, 47.4794991 ], + [ 7.9332147, 47.4795206 ], + [ 7.9336261, 47.4791724 ], + [ 7.9344974, 47.4791915 ], + [ 7.9352701, 47.4791062 ], + [ 7.9361280999999995, 47.4790974 ], + [ 7.9365035, 47.4792956 ], + [ 7.9368049, 47.4796734 ], + [ 7.9374535999999996, 47.4792164 ], + [ 7.9374781, 47.4786727 ], + [ 7.9373733, 47.4784868 ], + [ 7.9373464, 47.4783886 ], + [ 7.9372666, 47.4781426 ], + [ 7.9372264, 47.4780181 ], + [ 7.9371563, 47.4778203 ], + [ 7.9368794, 47.4778682 ], + [ 7.9367589, 47.4776863 ], + [ 7.9366482, 47.4775242 ], + [ 7.9365371, 47.4773625 ], + [ 7.9364711, 47.477267499999996 ], + [ 7.9361729, 47.4768276 ], + [ 7.9364482, 47.4767142 ], + [ 7.9372937, 47.4766422 ], + [ 7.9377967, 47.4766605 ], + [ 7.9383495, 47.476687 ], + [ 7.9387948999999995, 47.4767227 ], + [ 7.9392897, 47.4767627 ], + [ 7.9398751, 47.4768125 ], + [ 7.9402944, 47.4768748 ], + [ 7.9408131, 47.4769539 ], + [ 7.9409682, 47.4765697 ], + [ 7.9415179, 47.4763931 ], + [ 7.9421048, 47.4763407 ], + [ 7.9427177, 47.4762967 ], + [ 7.9430855, 47.4760327 ], + [ 7.9427014, 47.4757471 ], + [ 7.9423333, 47.4755481 ], + [ 7.9417551, 47.475347 ], + [ 7.9411803, 47.4751002 ], + [ 7.940414, 47.4748879 ], + [ 7.9396237, 47.4747268 ], + [ 7.9389795, 47.4744317 ], + [ 7.9383166, 47.4741066 ], + [ 7.9380403, 47.4736282 ], + [ 7.9386483, 47.473261 ], + [ 7.9399702, 47.4729875 ], + [ 7.9413784, 47.4728483 ], + [ 7.9408719, 47.472440399999996 ], + [ 7.9402627, 47.4720023 ], + [ 7.9395205, 47.4716712 ], + [ 7.9385821, 47.4711906 ], + [ 7.9390844, 47.4706644 ], + [ 7.9395514, 47.4701335 ], + [ 7.9401307, 47.4696662 ], + [ 7.9403144999999995, 47.4690944 ], + [ 7.9399831, 47.4690396 ], + [ 7.9396591, 47.4689711 ], + [ 7.9392319, 47.4688284 ], + [ 7.938842, 47.4686774 ], + [ 7.9382331, 47.4685556 ], + [ 7.9378607, 47.4684401 ], + [ 7.9374951, 47.4683454 ], + [ 7.9370737, 47.468266 ], + [ 7.9366062, 47.4682144 ], + [ 7.9360261, 47.4681352 ], + [ 7.9354174, 47.467977 ], + [ 7.9350241, 47.467831 ], + [ 7.9345823, 47.4676141 ], + [ 7.9341857000000005, 47.4673542 ], + [ 7.9338729, 47.4671412 ], + [ 7.933734, 47.4670094 ], + [ 7.933691, 47.4669072 ], + [ 7.9336941, 47.4668001 ], + [ 7.9337378, 47.4666906 ], + [ 7.9338987, 47.466502 ], + [ 7.9341494, 47.4663117 ], + [ 7.9344438, 47.4661226 ], + [ 7.9347266, 47.465973 ], + [ 7.9350537, 47.4658287 ], + [ 7.9354211, 47.4656417 ], + [ 7.9356792, 47.4655486 ], + [ 7.9362394, 47.4652847 ], + [ 7.9367399, 47.4650031 ], + [ 7.9367091, 47.4650134 ], + [ 7.9364272, 47.4651161 ], + [ 7.935953, 47.4652914 ], + [ 7.9356501999999995, 47.4654025 ], + [ 7.935579, 47.4654297 ], + [ 7.9347573, 47.4657407 ], + [ 7.9344479, 47.4658569 ], + [ 7.9341287, 47.4659949 ], + [ 7.9337809, 47.4661427 ], + [ 7.9334231, 47.4665235 ], + [ 7.9331265, 47.4668695 ], + [ 7.9330300000000005, 47.4673067 ], + [ 7.9325703, 47.4673871 ], + [ 7.9322844, 47.4674359 ], + [ 7.9328604, 47.4679099 ], + [ 7.9332458, 47.4681909 ], + [ 7.93336, 47.4682704 ], + [ 7.9333816, 47.4691096 ], + [ 7.9334795, 47.4691708 ], + [ 7.9334869, 47.4691745 ], + [ 7.9334948, 47.4691778 ], + [ 7.9335031, 47.4691805 ], + [ 7.9339184, 47.4693995 ], + [ 7.9339267, 47.4694015 ], + [ 7.9339347, 47.469404 ], + [ 7.9339423, 47.4694071 ], + [ 7.9339495, 47.4694106 ], + [ 7.9339561, 47.4694145 ], + [ 7.9339673, 47.4694216 ], + [ 7.9339791, 47.4694282 ], + [ 7.9339914, 47.4694344 ], + [ 7.9340043, 47.4694401 ], + [ 7.9340176, 47.4694452 ], + [ 7.9340314, 47.4694498 ], + [ 7.9340455, 47.4694539 ], + [ 7.9340522, 47.4694559 ], + [ 7.9340585, 47.4694583 ], + [ 7.9340645, 47.4694612 ], + [ 7.9340699, 47.4694645 ], + [ 7.9340748, 47.4694683 ], + [ 7.934079, 47.4694723 ], + [ 7.9340825, 47.4694767 ], + [ 7.9340853, 47.4694812 ], + [ 7.9340874, 47.469486 ], + [ 7.9340886, 47.4694909 ], + [ 7.9340908, 47.4694964 ], + [ 7.9340938, 47.4695017 ], + [ 7.9340976, 47.4695068 ], + [ 7.9341021, 47.4695116 ], + [ 7.9341074, 47.469516 ], + [ 7.9341133, 47.46952 ], + [ 7.9341199, 47.4695236 ], + [ 7.9341269, 47.4695267 ], + [ 7.9341328, 47.4695293 ], + [ 7.9341383, 47.4695324 ], + [ 7.9341432, 47.4695358 ], + [ 7.9341476, 47.4695395 ], + [ 7.9341473, 47.4695439 ], + [ 7.9341463999999995, 47.4695482 ], + [ 7.934145, 47.4695525 ], + [ 7.9341429, 47.4695566 ], + [ 7.9341402, 47.4695606 ], + [ 7.9341397, 47.4695645 ], + [ 7.9341398, 47.4695683 ], + [ 7.9341403, 47.4695721 ], + [ 7.9341413, 47.4695759 ], + [ 7.9341483, 47.4695776 ], + [ 7.9341556, 47.4695788 ], + [ 7.934163, 47.4695794 ], + [ 7.9341705, 47.4695794 ], + [ 7.934178, 47.4695789 ], + [ 7.9341853, 47.4695778 ], + [ 7.9341944, 47.4695768 ], + [ 7.9342036, 47.4695764 ], + [ 7.9342129, 47.4695766 ], + [ 7.934222, 47.4695774 ], + [ 7.934231, 47.4695789 ], + [ 7.9342397, 47.469581 ], + [ 7.9342481, 47.4695836 ], + [ 7.9342559999999995, 47.4695868 ], + [ 7.9342635, 47.4695905 ], + [ 7.9343096, 47.4696202 ], + [ 7.9343159, 47.4696275 ], + [ 7.9343216, 47.4696351 ], + [ 7.9343264, 47.4696429 ], + [ 7.9343305, 47.4696509 ], + [ 7.9343337, 47.4696591 ], + [ 7.9343362, 47.4696674 ], + [ 7.9343378, 47.4696758 ], + [ 7.9343385, 47.4696843 ], + [ 7.9344374, 47.4697637 ], + [ 7.9344474, 47.4697673 ], + [ 7.934457, 47.4697713 ], + [ 7.9344661, 47.4697759 ], + [ 7.9344747, 47.4697808 ], + [ 7.9344828, 47.4697861 ], + [ 7.9344903, 47.4697918 ], + [ 7.9344972, 47.4697979 ], + [ 7.9345034, 47.4698043 ], + [ 7.934509, 47.4698109 ], + [ 7.9345137999999995, 47.4698178 ], + [ 7.9345499, 47.4698806 ], + [ 7.934552, 47.4698862 ], + [ 7.9345533, 47.4698919 ], + [ 7.9345538, 47.4698976 ], + [ 7.9345535, 47.4699033 ], + [ 7.9345525, 47.4699091 ], + [ 7.9345507, 47.4699147 ], + [ 7.9345482, 47.4699202 ], + [ 7.9345449, 47.4699255 ], + [ 7.9345415, 47.4699308 ], + [ 7.9345389, 47.4699364 ], + [ 7.9345372, 47.4699421 ], + [ 7.9345365, 47.4699479 ], + [ 7.9345365999999995, 47.4699537 ], + [ 7.9345377, 47.4699595 ], + [ 7.9345397, 47.4699652 ], + [ 7.9345426, 47.4699707 ], + [ 7.9345464, 47.4699759 ], + [ 7.934551, 47.4699809 ], + [ 7.9345563, 47.4699854 ], + [ 7.934563, 47.4699913 ], + [ 7.934569, 47.4699975 ], + [ 7.9345742, 47.470004 ], + [ 7.9345786, 47.4700108 ], + [ 7.9345821999999995, 47.4700178 ], + [ 7.9345849, 47.470025 ], + [ 7.9345867, 47.4700323 ], + [ 7.9345876, 47.4700397 ], + [ 7.9345876, 47.4700471 ], + [ 7.934588, 47.4700538 ], + [ 7.9345894, 47.4700604 ], + [ 7.9345916, 47.4700669 ], + [ 7.9345948, 47.4700733 ], + [ 7.9345988, 47.4700794 ], + [ 7.9346036, 47.4700852 ], + [ 7.9346091, 47.4700907 ], + [ 7.9346155, 47.4700959 ], + [ 7.9346224, 47.4701006 ], + [ 7.93463, 47.4701048 ], + [ 7.9346382, 47.4701086 ], + [ 7.9346501, 47.4701166 ], + [ 7.9346616, 47.4701249 ], + [ 7.9346725, 47.4701335 ], + [ 7.9346828, 47.4701424 ], + [ 7.9346926, 47.4701516 ], + [ 7.9347019, 47.4701611 ], + [ 7.9347104999999996, 47.4701708 ], + [ 7.9347154, 47.470175 ], + [ 7.9347399, 47.4702206 ], + [ 7.9347444, 47.4703408 ], + [ 7.9347965, 47.470445 ], + [ 7.9348503, 47.4705702 ], + [ 7.9348821, 47.4705882 ], + [ 7.9349436, 47.4707524 ], + [ 7.9349035, 47.4707897 ], + [ 7.9349076, 47.4708574 ], + [ 7.9349211, 47.4709773 ], + [ 7.9349315, 47.4710454 ], + [ 7.9348818, 47.4711109 ], + [ 7.9348669, 47.4711882 ], + [ 7.9349138, 47.4712186 ], + [ 7.93488, 47.4712667 ], + [ 7.9348873, 47.4713358 ], + [ 7.9349526, 47.471453 ], + [ 7.9349863, 47.4715782 ], + [ 7.9349044, 47.4716551 ], + [ 7.9348763, 47.47174 ], + [ 7.9348565, 47.4718731 ], + [ 7.9349150999999996, 47.472035 ], + [ 7.9348858, 47.47216 ], + [ 7.9349042999999995, 47.4723051 ], + [ 7.9349979, 47.4725058 ], + [ 7.9350442999999995, 47.4726882 ], + [ 7.9351082, 47.472892 ], + [ 7.9352097, 47.4733739 ], + [ 7.935223, 47.4737236 ], + [ 7.9341833, 47.4736333 ], + [ 7.9342546, 47.4734964 ], + [ 7.9344174, 47.4731476 ], + [ 7.9345175999999995, 47.4729516 ], + [ 7.934645, 47.4729914 ], + [ 7.9346287, 47.4727343 ], + [ 7.9344423, 47.472737 ], + [ 7.9344728, 47.4726039 ], + [ 7.934339, 47.4722686 ], + [ 7.9342621, 47.4722651 ], + [ 7.9342441, 47.4724903 ], + [ 7.9342507, 47.4727855 ], + [ 7.9343463, 47.473146 ], + [ 7.9343505, 47.4732135 ], + [ 7.9340193, 47.4732442 ], + [ 7.9340195, 47.4732282 ], + [ 7.9340184, 47.4732123 ], + [ 7.9340162, 47.4731965 ], + [ 7.9340121, 47.4731779 ], + [ 7.9340063999999995, 47.4731595 ], + [ 7.9339992, 47.4731414 ], + [ 7.933935, 47.4729757 ], + [ 7.9339987999999995, 47.4727828 ], + [ 7.9340235, 47.4726075 ], + [ 7.9340498, 47.4724144 ], + [ 7.9340431, 47.4722975 ], + [ 7.9339674, 47.4722283 ], + [ 7.9340806, 47.4720294 ], + [ 7.9341757, 47.4718012 ], + [ 7.9342717, 47.4716996 ], + [ 7.9343236, 47.4716344 ], + [ 7.934336, 47.4714871 ], + [ 7.9342814, 47.4710851 ], + [ 7.934258, 47.4709117 ], + [ 7.9340842, 47.4705676 ], + [ 7.9339385, 47.4704627 ], + [ 7.9338626, 47.4704064 ], + [ 7.9338408, 47.4703674 ], + [ 7.9336915, 47.4703982 ], + [ 7.9338751, 47.4707468 ], + [ 7.9339825, 47.470892 ], + [ 7.9340052, 47.4709827 ], + [ 7.9339788, 47.4711676 ], + [ 7.9339802, 47.4712914 ], + [ 7.9339549, 47.4714781 ], + [ 7.9339490999999995, 47.4716214 ], + [ 7.9339549, 47.4717458 ], + [ 7.9339072999999996, 47.4718492 ], + [ 7.9338758, 47.4718445 ], + [ 7.933847, 47.4717038 ], + [ 7.9338229, 47.4714903 ], + [ 7.9337771, 47.4712269 ], + [ 7.9337317, 47.4710663 ], + [ 7.9336375, 47.470841 ], + [ 7.9335568, 47.4707101 ], + [ 7.9333539, 47.4705232 ], + [ 7.9333423, 47.470425 ], + [ 7.9334131, 47.470233 ], + [ 7.9335515999999995, 47.4701377 ], + [ 7.9335726, 47.4701213 ], + [ 7.9336592, 47.4701835 ], + [ 7.933715, 47.4702267 ], + [ 7.9337612, 47.4702505 ], + [ 7.9337721, 47.4702561 ], + [ 7.9337758, 47.4702541 ], + [ 7.933774, 47.4702476 ], + [ 7.9337446, 47.4701854 ], + [ 7.9337174, 47.4701227 ], + [ 7.9336926, 47.4700595 ], + [ 7.9336789, 47.4700099 ], + [ 7.9336603, 47.4699611 ], + [ 7.9336134, 47.4698709 ], + [ 7.9335621, 47.4698833 ], + [ 7.9335671, 47.4699003 ], + [ 7.9335697, 47.4699176 ], + [ 7.9335701, 47.4699349 ], + [ 7.9335681000000005, 47.4699522 ], + [ 7.9335638, 47.4699693 ], + [ 7.9335572, 47.4699861 ], + [ 7.9335484, 47.4700024 ], + [ 7.9335374, 47.470018 ], + [ 7.9335244, 47.470033 ], + [ 7.933513, 47.4700404 ], + [ 7.9335007, 47.4700472 ], + [ 7.9334875, 47.4700531 ], + [ 7.9334736, 47.4700582 ], + [ 7.9334668, 47.4700603 ], + [ 7.93346, 47.4700623 ], + [ 7.933453, 47.470064 ], + [ 7.933439, 47.4700666 ], + [ 7.9334247, 47.4700685 ], + [ 7.9334103, 47.4700695 ], + [ 7.9333957999999996, 47.4700696 ], + [ 7.9333861, 47.4700693 ], + [ 7.9333279, 47.4700642 ], + [ 7.9332705, 47.4700557 ], + [ 7.9332145, 47.4700438 ], + [ 7.9331603, 47.4700286 ], + [ 7.9331083, 47.4700102 ], + [ 7.9330589, 47.4699887 ], + [ 7.9329855, 47.4699564 ], + [ 7.9329148, 47.4699214 ], + [ 7.932847, 47.469884 ], + [ 7.9327202, 47.4698208 ], + [ 7.9325934, 47.4697577 ], + [ 7.9324665, 47.4696946 ], + [ 7.9323044, 47.4695907 ], + [ 7.9323266, 47.4695685 ], + [ 7.9321098, 47.4694451 ], + [ 7.9320251, 47.4692957 ], + [ 7.9318778, 47.4690118 ], + [ 7.931793, 47.4691963 ], + [ 7.9309736, 47.4691011 ], + [ 7.9305195, 47.469004 ], + [ 7.9302958, 47.468957 ], + [ 7.9302469, 47.4689446 ], + [ 7.9299811, 47.4689182 ], + [ 7.9295626, 47.4688789 ], + [ 7.9289448, 47.4688822 ], + [ 7.9285987, 47.4688781 ], + [ 7.9284687, 47.4688992 ], + [ 7.9281299, 47.468958 ], + [ 7.9276789, 47.4690335 ], + [ 7.9276855, 47.4690684 ], + [ 7.9277159, 47.4691622 ], + [ 7.9277163999999996, 47.4691637 ], + [ 7.9277169, 47.4691651 ], + [ 7.9277191, 47.4691842 ], + [ 7.9277204999999995, 47.4691954 ], + [ 7.9277256, 47.4692396 ], + [ 7.9279171999999996, 47.4695688 ], + [ 7.9279561, 47.4695856 ] + ], + [ + [ 7.9166175, 47.4675829 ], + [ 7.9160728, 47.4675225 ], + [ 7.915889, 47.4674998 ], + [ 7.9159972, 47.4669515 ], + [ 7.9162001, 47.4669654 ], + [ 7.9164435, 47.4669871 ], + [ 7.9168062, 47.4670202 ], + [ 7.9166175, 47.4675829 ] + ], + [ + [ 7.9348897, 47.469575 ], + [ 7.9353984, 47.469666 ], + [ 7.9355, 47.4696768 ], + [ 7.935761, 47.4697064 ], + [ 7.9360582, 47.4697343 ], + [ 7.9360857, 47.4699382 ], + [ 7.9361358, 47.470396 ], + [ 7.9361059, 47.4708388 ], + [ 7.9361003, 47.4711347 ], + [ 7.9360941, 47.4713556 ], + [ 7.9355903, 47.4713521 ], + [ 7.9353576, 47.4722345 ], + [ 7.9352765, 47.4726687 ], + [ 7.9352365, 47.4722673 ], + [ 7.9352355, 47.4722576 ], + [ 7.9351882, 47.4713534 ], + [ 7.9351409, 47.4709726 ], + [ 7.9350786, 47.4705704 ], + [ 7.9350213, 47.4701619 ], + [ 7.9350056, 47.470138 ], + [ 7.9348059, 47.4698691 ], + [ 7.9348897, 47.469575 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns056", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Roti Flue - Dübach", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Roti Flue - Dübach", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Roti Flue - Dübach", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Roti Flue - Dübach", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.740293, 47.4341426 ], + [ 7.7401254999999995, 47.4341842 ], + [ 7.7398717999999995, 47.4342714 ], + [ 7.7397829, 47.4343304 ], + [ 7.7396136, 47.4343581 ], + [ 7.7395192, 47.4344013 ], + [ 7.7393161, 47.4344496 ], + [ 7.7392674, 47.4345115 ], + [ 7.739165, 47.4345378 ], + [ 7.7390947, 47.4345755 ], + [ 7.7389424, 47.434608 ], + [ 7.7388221999999995, 47.4346488 ], + [ 7.7387806999999995, 47.434721 ], + [ 7.7386464, 47.4347994 ], + [ 7.7383484, 47.4349448 ], + [ 7.7382281, 47.4349778 ], + [ 7.7381116, 47.435032 ], + [ 7.738006, 47.4351406 ], + [ 7.7379673, 47.4352303 ], + [ 7.7378684, 47.4354121 ], + [ 7.7378675999999995, 47.4354703 ], + [ 7.7378476, 47.4355308 ], + [ 7.7379001, 47.4356093 ], + [ 7.7379764, 47.4357107 ], + [ 7.7380595, 47.4358229 ], + [ 7.737872, 47.4363685 ], + [ 7.7378189, 47.4365312 ], + [ 7.7377304, 47.436933 ], + [ 7.7376837, 47.4371647 ], + [ 7.7377417, 47.4374514 ], + [ 7.737815, 47.4377153 ], + [ 7.7379627, 47.4379617 ], + [ 7.7380848, 47.4382341 ], + [ 7.7381559, 47.438447 ], + [ 7.738225, 47.4386722 ], + [ 7.7382995999999995, 47.4388987 ], + [ 7.7383752999999995, 47.4390696 ], + [ 7.7387993, 47.4390694 ], + [ 7.7388536, 47.4390415 ], + [ 7.7388616, 47.4389076 ], + [ 7.7388418, 47.4388712 ], + [ 7.7388411, 47.4387423 ], + [ 7.7389236, 47.4386977 ], + [ 7.7391071, 47.4386962 ], + [ 7.7391644, 47.4386828 ], + [ 7.7392287, 47.4386061 ], + [ 7.7392487, 47.4385444 ], + [ 7.7393134, 47.4384733 ], + [ 7.7393097, 47.4384393 ], + [ 7.7393082, 47.4384153 ], + [ 7.7393077, 47.4383914 ], + [ 7.739308, 47.4383674 ], + [ 7.7393093, 47.4383435 ], + [ 7.7393114, 47.4383196 ], + [ 7.7393145, 47.4382958 ], + [ 7.7393169, 47.4382761 ], + [ 7.7393184999999995, 47.4382563 ], + [ 7.7393192, 47.4382366 ], + [ 7.739319, 47.4382168 ], + [ 7.7393179, 47.4381971 ], + [ 7.7393159, 47.4381773 ], + [ 7.739313, 47.4381577 ], + [ 7.7393093, 47.4381381 ], + [ 7.7393047, 47.4381185 ], + [ 7.7392992, 47.4380991 ], + [ 7.7392928, 47.4380798 ], + [ 7.7392856, 47.4380607 ], + [ 7.7392775, 47.4380417 ], + [ 7.7392686, 47.4380229 ], + [ 7.7392589, 47.4380043 ], + [ 7.7392483, 47.4379859 ], + [ 7.7392369, 47.4379677 ], + [ 7.7391932, 47.4378928 ], + [ 7.7391365, 47.437787 ], + [ 7.7390503, 47.4376255 ], + [ 7.7389978, 47.4374989 ], + [ 7.7389694, 47.4374207 ], + [ 7.7389606, 47.4373975 ], + [ 7.7389363, 47.4373649 ], + [ 7.7388846000000004, 47.4372918 ], + [ 7.7388176, 47.4372022 ], + [ 7.7388009, 47.4371471 ], + [ 7.7387893, 47.4370982 ], + [ 7.7387721, 47.4370333 ], + [ 7.7387591, 47.436976 ], + [ 7.7387437, 47.436913 ], + [ 7.7387341, 47.4368686 ], + [ 7.7387315, 47.4368466 ], + [ 7.7387384, 47.4367605 ], + [ 7.738741, 47.4367429 ], + [ 7.7387446, 47.4367254 ], + [ 7.738749, 47.4367079 ], + [ 7.7387543, 47.4366906 ], + [ 7.7387604, 47.4366733 ], + [ 7.7387674, 47.4366563 ], + [ 7.7387752, 47.4366394 ], + [ 7.7387839, 47.4366227 ], + [ 7.7387934, 47.4366062 ], + [ 7.7388037, 47.4365899 ], + [ 7.7388148, 47.4365739 ], + [ 7.7388267, 47.4365581 ], + [ 7.7388393, 47.4365426 ], + [ 7.7388528, 47.4365274 ], + [ 7.7388669, 47.4365125 ], + [ 7.7388896, 47.4364902 ], + [ 7.738913, 47.4364682 ], + [ 7.7389372, 47.4364465 ], + [ 7.738962, 47.4364252 ], + [ 7.7389875, 47.4364043 ], + [ 7.7390136, 47.4363838 ], + [ 7.7390405, 47.4363637 ], + [ 7.7390679, 47.4363439 ], + [ 7.7390963, 47.436324 ], + [ 7.739124, 47.4363037 ], + [ 7.7391511, 47.436283 ], + [ 7.7391776, 47.436262 ], + [ 7.7392034, 47.4362406 ], + [ 7.7392285, 47.4362188 ], + [ 7.739253, 47.4361966 ], + [ 7.7392769, 47.436174199999996 ], + [ 7.7392863, 47.4361641 ], + [ 7.739295, 47.4361538 ], + [ 7.7393028, 47.4361431 ], + [ 7.7393099, 47.4361322 ], + [ 7.7393161, 47.436121 ], + [ 7.7393214, 47.4361097 ], + [ 7.7393259, 47.4360982 ], + [ 7.7393294, 47.4360865 ], + [ 7.7393321, 47.4360747 ], + [ 7.7393339, 47.4360629 ], + [ 7.7393348, 47.4360509 ], + [ 7.7393348, 47.436039 ], + [ 7.7393339, 47.4360271 ], + [ 7.7393307, 47.4359046 ], + [ 7.7393260999999995, 47.4358697 ], + [ 7.7393225, 47.4358347 ], + [ 7.7393197, 47.4357997 ], + [ 7.7393178, 47.4357646 ], + [ 7.7393169, 47.4357296 ], + [ 7.7393168, 47.4356945 ], + [ 7.7393176, 47.4356594 ], + [ 7.7393194, 47.4356244 ], + [ 7.7393207, 47.4356046 ], + [ 7.7393229, 47.4355848 ], + [ 7.739326, 47.4355652 ], + [ 7.73933, 47.4355455 ], + [ 7.739335, 47.435526 ], + [ 7.7393409, 47.4355066 ], + [ 7.7393476, 47.4354874 ], + [ 7.7393553, 47.4354682 ], + [ 7.7393638, 47.4354493 ], + [ 7.7393733000000005, 47.4354306 ], + [ 7.7393836, 47.435412 ], + [ 7.7393947, 47.4353937 ], + [ 7.7394067, 47.4353757 ], + [ 7.7394258, 47.4353515 ], + [ 7.7394457, 47.4353277 ], + [ 7.7394663, 47.4353041 ], + [ 7.7394877, 47.4352809 ], + [ 7.7395099, 47.435258 ], + [ 7.7395327, 47.4352354 ], + [ 7.7395563, 47.4352132 ], + [ 7.7395835, 47.4351881 ], + [ 7.7396112, 47.4351633 ], + [ 7.7396395, 47.4351388 ], + [ 7.7396683, 47.4351146 ], + [ 7.7396977, 47.4350907 ], + [ 7.7397276, 47.4350671 ], + [ 7.7397580999999995, 47.4350438 ], + [ 7.739789, 47.4350209 ], + [ 7.7398462, 47.4349832 ], + [ 7.739904, 47.4349461 ], + [ 7.7399625, 47.4349094 ], + [ 7.7400216, 47.4348732 ], + [ 7.7400814, 47.4348374 ], + [ 7.7401418, 47.4348022 ], + [ 7.7402028, 47.4347675 ], + [ 7.7402645, 47.4347333 ], + [ 7.7403267, 47.4346996 ], + [ 7.7403896, 47.4346664 ], + [ 7.740453, 47.4346337 ], + [ 7.740481, 47.43462 ], + [ 7.7405095, 47.4346067 ], + [ 7.7405384999999995, 47.4345939 ], + [ 7.7405679, 47.4345816 ], + [ 7.7405978, 47.4345698 ], + [ 7.740628, 47.4345585 ], + [ 7.7406587, 47.4345477 ], + [ 7.7406898, 47.434537399999996 ], + [ 7.7407212, 47.4345277 ], + [ 7.740753, 47.4345185 ], + [ 7.7407851, 47.4345098 ], + [ 7.7408175, 47.4345017 ], + [ 7.7408502, 47.4344941 ], + [ 7.7409033, 47.4344859 ], + [ 7.7409564, 47.434478 ], + [ 7.7410097, 47.4344706 ], + [ 7.741063, 47.4344635 ], + [ 7.7411165, 47.4344567 ], + [ 7.7413799, 47.4344245 ], + [ 7.7413898, 47.434423 ], + [ 7.7413994, 47.4344208 ], + [ 7.7414087, 47.4344179 ], + [ 7.7414175, 47.4344145 ], + [ 7.7414258, 47.4344104 ], + [ 7.7414334, 47.4344059 ], + [ 7.7414404, 47.4344008 ], + [ 7.7414466, 47.4343954 ], + [ 7.741452, 47.4343895 ], + [ 7.7414564, 47.4343833 ], + [ 7.7415122, 47.4342251 ], + [ 7.741471, 47.4342076 ], + [ 7.7413995, 47.4341931 ], + [ 7.7412638, 47.434199 ], + [ 7.741155, 47.4341759 ], + [ 7.7410501, 47.4341737 ], + [ 7.7407511, 47.4341094 ], + [ 7.7406767, 47.4340875 ], + [ 7.740498, 47.4341221 ], + [ 7.7403563, 47.4341363 ], + [ 7.740293, 47.4341426 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns361", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Häuli", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Häuli", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Häuli", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Häuli", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6830961, 47.5120203 ], + [ 7.6831173, 47.5120759 ], + [ 7.6830245999999995, 47.5121063 ], + [ 7.683011, 47.512146 ], + [ 7.6829993, 47.5121489 ], + [ 7.682988, 47.5121524 ], + [ 7.6829772, 47.5121566 ], + [ 7.6829669, 47.5121614 ], + [ 7.6829572, 47.5121667 ], + [ 7.6829483, 47.5121726 ], + [ 7.6829401, 47.5121789 ], + [ 7.6829342, 47.512185 ], + [ 7.6829292, 47.5121913 ], + [ 7.6829249, 47.5121979 ], + [ 7.6829215, 47.5122047 ], + [ 7.682919, 47.5122117 ], + [ 7.6829173, 47.5122188 ], + [ 7.6829165, 47.512226 ], + [ 7.6829166, 47.5122332 ], + [ 7.6829176, 47.5122404 ], + [ 7.6829195, 47.5122475 ], + [ 7.6829222999999995, 47.5122544 ], + [ 7.6829259, 47.5122612 ], + [ 7.6829303, 47.5122677 ], + [ 7.6829356, 47.512274 ], + [ 7.6829415999999995, 47.5122799 ], + [ 7.6829483, 47.5122855 ], + [ 7.6829514, 47.5122877 ], + [ 7.6829637, 47.5122954 ], + [ 7.6832654, 47.5124852 ], + [ 7.6833305, 47.5125282 ], + [ 7.6833564, 47.5125535 ], + [ 7.6833824, 47.5125787 ], + [ 7.6835308, 47.512746 ], + [ 7.6837609, 47.5129562 ], + [ 7.6838606, 47.5130533 ], + [ 7.6839521, 47.5131546 ], + [ 7.6840647, 47.5133131 ], + [ 7.6841036, 47.5133441 ], + [ 7.6841425, 47.5133752 ], + [ 7.6842323, 47.5134304 ], + [ 7.6845227, 47.5135996 ], + [ 7.6845582, 47.5136203 ], + [ 7.6846454, 47.5136712 ], + [ 7.6847398, 47.5137342 ], + [ 7.6847891, 47.5137718 ], + [ 7.68487, 47.5138336 ], + [ 7.6850003000000005, 47.5139329 ], + [ 7.6850309, 47.5139624 ], + [ 7.6851096, 47.5140382 ], + [ 7.6851467, 47.5140784 ], + [ 7.6853116, 47.5142652 ], + [ 7.6853397999999995, 47.5142978 ], + [ 7.6853681, 47.5143303 ], + [ 7.6853833, 47.514351 ], + [ 7.6853986, 47.5143718 ], + [ 7.685473, 47.5143544 ], + [ 7.6857486999999995, 47.5142551 ], + [ 7.686055, 47.5143804 ], + [ 7.6864776, 47.5145534 ], + [ 7.6869384, 47.5147224 ], + [ 7.686977, 47.5147297 ], + [ 7.6874174, 47.5148154 ], + [ 7.6875031, 47.514861 ], + [ 7.6876758, 47.5149293 ], + [ 7.6878055, 47.5149803 ], + [ 7.6879343, 47.5150307 ], + [ 7.6879577, 47.5150061 ], + [ 7.6879608, 47.5150028 ], + [ 7.6879528, 47.5149976 ], + [ 7.6877417, 47.5148675 ], + [ 7.6877014, 47.5148427 ], + [ 7.6877701, 47.5148734 ], + [ 7.6879903, 47.5149717 ], + [ 7.6882159, 47.5151201 ], + [ 7.688229, 47.5151239 ], + [ 7.6883298, 47.5151536 ], + [ 7.6887552, 47.515341 ], + [ 7.6887725, 47.5153486 ], + [ 7.6889348, 47.5154026 ], + [ 7.6889529, 47.5153721 ], + [ 7.6889609, 47.5153588 ], + [ 7.6889948, 47.5153023 ], + [ 7.6891873, 47.5149817 ], + [ 7.6893992, 47.5146308 ], + [ 7.6894238, 47.51459 ], + [ 7.689325, 47.5145149 ], + [ 7.6886600000000005, 47.5140099 ], + [ 7.688684, 47.513929 ], + [ 7.6887594, 47.5136749 ], + [ 7.6886115, 47.5136543 ], + [ 7.6884188, 47.5135784 ], + [ 7.6880659, 47.5134395 ], + [ 7.6878743, 47.5133347 ], + [ 7.6874137000000005, 47.5130829 ], + [ 7.68747, 47.5130388 ], + [ 7.6875273, 47.5129939 ], + [ 7.6875175, 47.512991 ], + [ 7.6873983, 47.5129471 ], + [ 7.6872807, 47.5128978 ], + [ 7.6869331, 47.5127368 ], + [ 7.6867393, 47.5126471 ], + [ 7.6866576, 47.512605 ], + [ 7.6865814, 47.5125571 ], + [ 7.6865121, 47.5125055 ], + [ 7.6864502, 47.5124498 ], + [ 7.6860048, 47.5119994 ], + [ 7.6859043, 47.5118977 ], + [ 7.6857843, 47.5117764 ], + [ 7.6857077, 47.5117096 ], + [ 7.6856047, 47.5116625 ], + [ 7.685368, 47.5115766 ], + [ 7.6851692, 47.5115072 ], + [ 7.685017, 47.5114619 ], + [ 7.6849666, 47.5114469 ], + [ 7.6849343999999995, 47.5114374 ], + [ 7.6842385, 47.5112325 ], + [ 7.6841564, 47.5112437 ], + [ 7.684039, 47.5112867 ], + [ 7.6840092, 47.5112949 ], + [ 7.6839388, 47.5113141 ], + [ 7.6839178, 47.5113198 ], + [ 7.6837878, 47.5113007 ], + [ 7.6836509, 47.5112458 ], + [ 7.6829425, 47.5109617 ], + [ 7.682898, 47.511008 ], + [ 7.6828351, 47.5110109 ], + [ 7.6826893, 47.5112305 ], + [ 7.6824592, 47.5111814 ], + [ 7.6823947, 47.5111643 ], + [ 7.6823497, 47.5111523 ], + [ 7.6822216, 47.5111183 ], + [ 7.6822184, 47.5111188 ], + [ 7.6819771, 47.5111837 ], + [ 7.6818262, 47.5114201 ], + [ 7.6819051, 47.5114911 ], + [ 7.6820539, 47.5115712 ], + [ 7.6820612, 47.5115751 ], + [ 7.6825389, 47.511658 ], + [ 7.6829272, 47.511851300000004 ], + [ 7.6830672, 47.5119391 ], + [ 7.6830936, 47.5120137 ], + [ 7.6830961, 47.5120203 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr024", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Zunftacher", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Zunftacher", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Zunftacher", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Zunftacher", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 10.3363557, 46.8050195 ], + [ 10.3363427, 46.8048785 ], + [ 10.336319, 46.8047382 ], + [ 10.3362847, 46.8045989 ], + [ 10.3362397, 46.804461 ], + [ 10.3361843, 46.804325 ], + [ 10.3361186, 46.8041911 ], + [ 10.3360428, 46.8040597 ], + [ 10.3359571, 46.8039313 ], + [ 10.3358618, 46.8038061 ], + [ 10.335757, 46.8036845 ], + [ 10.3356431, 46.8035669 ], + [ 10.3355203, 46.8034535 ], + [ 10.3353891, 46.8033446 ], + [ 10.3352498, 46.8032406 ], + [ 10.3351028, 46.8031418 ], + [ 10.3349484, 46.8030484 ], + [ 10.3347871, 46.8029607 ], + [ 10.3346194, 46.8028789 ], + [ 10.3344456, 46.8028032 ], + [ 10.3342664, 46.8027339 ], + [ 10.334082, 46.8026711 ], + [ 10.3338932, 46.802615 ], + [ 10.3337003, 46.802565799999996 ], + [ 10.333504, 46.8025236 ], + [ 10.3333047, 46.8024885 ], + [ 10.333103, 46.8024606 ], + [ 10.3328994, 46.80244 ], + [ 10.3326946, 46.8024267 ], + [ 10.332489, 46.8024208 ], + [ 10.3322833, 46.8024224 ], + [ 10.3320779, 46.8024313 ], + [ 10.3318736, 46.8024475 ], + [ 10.3316707, 46.8024711 ], + [ 10.3314699, 46.802502 ], + [ 10.3312718, 46.80254 ], + [ 10.3310768, 46.8025851 ], + [ 10.3308855, 46.8026371 ], + [ 10.3306984, 46.802696 ], + [ 10.3305161, 46.8027615 ], + [ 10.330339, 46.8028334 ], + [ 10.3301677, 46.8029116 ], + [ 10.330002499999999, 46.8029959 ], + [ 10.329844, 46.803086 ], + [ 10.3296926, 46.8031816 ], + [ 10.3295487, 46.8032826 ], + [ 10.3294127, 46.8033886 ], + [ 10.3292849, 46.8034993 ], + [ 10.3291657, 46.8036145 ], + [ 10.3290555, 46.8037338 ], + [ 10.3289545, 46.8038569 ], + [ 10.3288631, 46.8039835 ], + [ 10.3287814, 46.8041131 ], + [ 10.3287097, 46.8042456 ], + [ 10.3286482, 46.8043804 ], + [ 10.3285971, 46.8045172 ], + [ 10.3285565, 46.8046557 ], + [ 10.3285264, 46.8047955 ], + [ 10.3285071, 46.8049362 ], + [ 10.3284985, 46.8050773 ], + [ 10.3285007, 46.8052186 ], + [ 10.3285137, 46.8053596 ], + [ 10.3285374, 46.8055 ], + [ 10.3285717, 46.8056393 ], + [ 10.3286167, 46.8057771 ], + [ 10.328672, 46.8059132 ], + [ 10.3287377, 46.8060471 ], + [ 10.3288135, 46.8061784 ], + [ 10.3288992, 46.8063069 ], + [ 10.3289945, 46.8064321 ], + [ 10.3290993, 46.8065537 ], + [ 10.3292132, 46.8066713 ], + [ 10.3293359, 46.8067848 ], + [ 10.3294671, 46.8068936 ], + [ 10.3296064, 46.8069976 ], + [ 10.3297535, 46.8070964 ], + [ 10.3299079, 46.8071898 ], + [ 10.3300691, 46.8072776 ], + [ 10.3302369, 46.8073594 ], + [ 10.3304106, 46.807435 ], + [ 10.3305899, 46.8075044 ], + [ 10.3307743, 46.8075672 ], + [ 10.3309631, 46.8076233 ], + [ 10.331156, 46.8076725 ], + [ 10.3313524, 46.8077147 ], + [ 10.3315517, 46.8077498 ], + [ 10.3317534, 46.8077777 ], + [ 10.331957, 46.8077983 ], + [ 10.3321618, 46.8078116 ], + [ 10.3323674, 46.8078174 ], + [ 10.3325732, 46.8078159 ], + [ 10.3327786, 46.807807 ], + [ 10.332983, 46.8077908 ], + [ 10.3331858, 46.8077672 ], + [ 10.3333866, 46.8077363 ], + [ 10.3335848, 46.8076983 ], + [ 10.3337798, 46.8076532 ], + [ 10.3339711, 46.8076011 ], + [ 10.3341582, 46.8075423 ], + [ 10.3343405, 46.8074768 ], + [ 10.3345176, 46.8074048 ], + [ 10.334689, 46.8073266 ], + [ 10.3348541, 46.8072424 ], + [ 10.3350126, 46.8071523 ], + [ 10.335164, 46.8070566 ], + [ 10.335308, 46.8069556 ], + [ 10.335444, 46.8068496 ], + [ 10.3355718, 46.8067389 ], + [ 10.3356909, 46.8066237 ], + [ 10.3358011, 46.8065044 ], + [ 10.3359021, 46.8063813 ], + [ 10.3359935, 46.8062547 ], + [ 10.3360752, 46.806125 ], + [ 10.3361469, 46.8059926 ], + [ 10.3362083, 46.8058578 ], + [ 10.3362595, 46.8057209 ], + [ 10.3363001, 46.8055824 ], + [ 10.3363301, 46.8054426 ], + [ 10.3363494, 46.805302 ], + [ 10.3363579, 46.8051608 ], + [ 10.3363557, 46.8050195 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0091", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Pradella A", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Pradella A", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Pradella A", + "lang" : "it-CH" + }, + { + "text" : "Substation Pradella A", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8529321, 47.5154218 ], + [ 7.8529107, 47.5153395 ], + [ 7.8529024, 47.5153075 ], + [ 7.8529574, 47.5152792 ], + [ 7.8531759, 47.5151666 ], + [ 7.8533023, 47.5148474 ], + [ 7.8532695, 47.5147844 ], + [ 7.8532083, 47.5146671 ], + [ 7.8532098, 47.5146269 ], + [ 7.8532165, 47.5144385 ], + [ 7.8532864, 47.5144113 ], + [ 7.8533511, 47.5141985 ], + [ 7.8533973, 47.5141296 ], + [ 7.8534144999999995, 47.514104 ], + [ 7.8534137, 47.5140266 ], + [ 7.8534125, 47.5139112 ], + [ 7.8533874, 47.5138275 ], + [ 7.853344, 47.5137877 ], + [ 7.8533136, 47.5137598 ], + [ 7.8532408, 47.5136932 ], + [ 7.8532422, 47.5136803 ], + [ 7.8532588, 47.5135267 ], + [ 7.8532603, 47.5135122 ], + [ 7.8533013, 47.5133916 ], + [ 7.85335, 47.5132485 ], + [ 7.8533788, 47.5129836 ], + [ 7.8533837, 47.5129386 ], + [ 7.8534194, 47.5128228 ], + [ 7.8534253, 47.5127956 ], + [ 7.8533771, 47.5126947 ], + [ 7.8534863, 47.5124809 ], + [ 7.8538006, 47.5122775 ], + [ 7.853946, 47.5121143 ], + [ 7.8540972, 47.5118337 ], + [ 7.8542077, 47.5114674 ], + [ 7.8514444999999995, 47.5110622 ], + [ 7.8512511, 47.5112165 ], + [ 7.8511833, 47.5116461 ], + [ 7.8512384, 47.5117652 ], + [ 7.8511234, 47.511842 ], + [ 7.8509875000000005, 47.5123824 ], + [ 7.8508751, 47.5133722 ], + [ 7.8507546999999995, 47.5142485 ], + [ 7.850657, 47.5147679 ], + [ 7.8529321, 47.5154218 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr030", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Mettele", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Mettele", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Mettele", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Mettele", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.1196814, 46.3337663 ], + [ 7.1182628, 46.3331721 ], + [ 7.1162737, 46.3330909 ], + [ 7.1157025, 46.33328 ], + [ 7.1155426, 46.3333056 ], + [ 7.1152948, 46.3332671 ], + [ 7.115104, 46.3332513 ], + [ 7.1147572, 46.3332485 ], + [ 7.1145898, 46.3332354 ], + [ 7.1142208, 46.3332658 ], + [ 7.1140076, 46.3332931 ], + [ 7.1139751, 46.3332993 ], + [ 7.1137788, 46.3333401 ], + [ 7.1136957, 46.3333273 ], + [ 7.1134689, 46.3332565 ], + [ 7.1133041, 46.3332344 ], + [ 7.1131002, 46.3332374 ], + [ 7.1129819, 46.3332488 ], + [ 7.1127062, 46.3333209 ], + [ 7.1126867, 46.3333262 ], + [ 7.1124772, 46.3333886 ], + [ 7.1121873, 46.333439 ], + [ 7.1119249, 46.3334517 ], + [ 7.1118094, 46.3334307 ], + [ 7.1116452, 46.3333142 ], + [ 7.1111231, 46.3333172 ], + [ 7.1107754, 46.333479 ], + [ 7.1105488, 46.3335782 ], + [ 7.1099241, 46.3338021 ], + [ 7.1097457, 46.3338853 ], + [ 7.1096178, 46.3339767 ], + [ 7.1091748, 46.334221 ], + [ 7.1089703, 46.3343166 ], + [ 7.1088231, 46.3343855 ], + [ 7.1087243, 46.3344086 ], + [ 7.108645, 46.3344263 ], + [ 7.1083839, 46.3344345 ], + [ 7.1082657, 46.3344405 ], + [ 7.1080381, 46.3344839 ], + [ 7.1078702, 46.3345491 ], + [ 7.1077725, 46.3345911 ], + [ 7.1074734, 46.3346586 ], + [ 7.1074318, 46.3346683 ], + [ 7.1073602, 46.3346996 ], + [ 7.1073261, 46.3347418 ], + [ 7.1073308, 46.3348309 ], + [ 7.1073469, 46.3353806 ], + [ 7.1073864, 46.3355039 ], + [ 7.1074677, 46.3355995 ], + [ 7.1074702, 46.3356022 ], + [ 7.1075023, 46.3356716 ], + [ 7.1074793, 46.3360367 ], + [ 7.1074765, 46.3360646 ], + [ 7.1074683, 46.3361258 ], + [ 7.1074831, 46.3362616 ], + [ 7.1075235, 46.3364489 ], + [ 7.1075641, 46.3366055 ], + [ 7.1076025, 46.3367046 ], + [ 7.107672, 46.3368037 ], + [ 7.1077185, 46.3368434 ], + [ 7.1077753, 46.3368985 ], + [ 7.1078321, 46.3369535 ], + [ 7.1078224, 46.3370606 ], + [ 7.1077006, 46.3372248 ], + [ 7.1076739, 46.3373462 ], + [ 7.1076716, 46.3375108 ], + [ 7.1077021, 46.337608 ], + [ 7.1077136, 46.3376468 ], + [ 7.1077557, 46.3377728 ], + [ 7.1077445, 46.337905 ], + [ 7.1077502, 46.3380301 ], + [ 7.1077666, 46.3381138 ], + [ 7.1078117, 46.3381634 ], + [ 7.1078195, 46.3381742 ], + [ 7.1079022, 46.3382437 ], + [ 7.1079045, 46.3382824 ], + [ 7.1079045, 46.3382941 ], + [ 7.1078939, 46.3383283 ], + [ 7.1078846, 46.3383615 ], + [ 7.1078151, 46.3384639 ], + [ 7.1077784, 46.3385213 ], + [ 7.1077794, 46.3385735 ], + [ 7.1077828, 46.338856 ], + [ 7.1077748, 46.3389036 ], + [ 7.1077626, 46.3389765 ], + [ 7.1077476, 46.339088 ], + [ 7.1077198, 46.3391823 ], + [ 7.1075857, 46.3394536 ], + [ 7.1075928, 46.3395562 ], + [ 7.1076335, 46.3396993 ], + [ 7.1075995, 46.3399502 ], + [ 7.1075912, 46.3400321 ], + [ 7.1076195, 46.3400726 ], + [ 7.1077488, 46.3401684 ], + [ 7.1081265, 46.3404366 ], + [ 7.1081962, 46.340498 ], + [ 7.1082359, 46.3405953 ], + [ 7.1082666, 46.3406709 ], + [ 7.1082757, 46.3406683 ], + [ 7.1083238, 46.3406621 ], + [ 7.1083732, 46.3406604 ], + [ 7.1084212, 46.3406624 ], + [ 7.1084913, 46.3406716 ], + [ 7.1085588, 46.3406835 ], + [ 7.1086249, 46.3406999 ], + [ 7.1086884, 46.3407189 ], + [ 7.1087507, 46.3407416 ], + [ 7.1088414, 46.340777 ], + [ 7.1089334, 46.3408123 ], + [ 7.1090241, 46.3408477 ], + [ 7.1091161, 46.340883 ], + [ 7.1092068, 46.3409175 ], + [ 7.109234, 46.3409274 ], + [ 7.1092923, 46.3409474 ], + [ 7.1093507, 46.3409647 ], + [ 7.1093818, 46.3409728 ], + [ 7.1094116, 46.3409792 ], + [ 7.1094726, 46.3409911 ], + [ 7.1095362, 46.3410003 ], + [ 7.1095842, 46.3410067 ], + [ 7.1096322, 46.3410132 ], + [ 7.1096802, 46.3410196 ], + [ 7.1097283000000004, 46.3410269 ], + [ 7.1097763, 46.3410352 ], + [ 7.1098165, 46.3410434 ], + [ 7.1098567, 46.3410543 ], + [ 7.109893, 46.3410688 ], + [ 7.1099292, 46.3410851 ], + [ 7.1099616, 46.3411041 ], + [ 7.1100237, 46.3411456 ], + [ 7.1100858, 46.3411872 ], + [ 7.1101479, 46.3412288 ], + [ 7.11021, 46.3412703 ], + [ 7.1102708, 46.3413119 ], + [ 7.1103354, 46.3413543 ], + [ 7.1104014, 46.3413932 ], + [ 7.1104701, 46.3414303 ], + [ 7.1105426, 46.3414647 ], + [ 7.1106164, 46.3414973 ], + [ 7.110698, 46.3415317 ], + [ 7.1107784, 46.3415688 ], + [ 7.1108574, 46.3416068 ], + [ 7.1109337, 46.3416466 ], + [ 7.1110075, 46.3416882 ], + [ 7.1110515, 46.3417153 ], + [ 7.1110929, 46.3417443 ], + [ 7.111133, 46.3417741 ], + [ 7.1111692, 46.3418056 ], + [ 7.1112028, 46.341839 ], + [ 7.1112931, 46.3419337 ], + [ 7.1113809, 46.3420285 ], + [ 7.1114673, 46.3421241 ], + [ 7.1115524, 46.3422206 ], + [ 7.111635, 46.342318 ], + [ 7.1117201, 46.3424145 ], + [ 7.1118157, 46.3425065 ], + [ 7.1119178, 46.3425949 ], + [ 7.1120277, 46.342678 ], + [ 7.1121454, 46.3427566 ], + [ 7.1122528, 46.3428199 ], + [ 7.1123668, 46.3428778 ], + [ 7.112486, 46.3429303 ], + [ 7.1126104, 46.3429766 ], + [ 7.1127387, 46.3430174 ], + [ 7.1127711, 46.3430274 ], + [ 7.112801, 46.3430392 ], + [ 7.1128307, 46.3430528 ], + [ 7.1128579, 46.343068099999996 ], + [ 7.1128838, 46.3430844 ], + [ 7.112911, 46.3431034 ], + [ 7.1129407, 46.3431214 ], + [ 7.1129705, 46.3431377 ], + [ 7.1130029, 46.3431531 ], + [ 7.1130366, 46.3431676 ], + [ 7.1131053, 46.3431957 ], + [ 7.1131739, 46.3432256 ], + [ 7.11324, 46.3432563 ], + [ 7.113306, 46.3432889 ], + [ 7.1133695, 46.3433224 ], + [ 7.113442, 46.3433658 ], + [ 7.1135066, 46.3434136 ], + [ 7.1135118, 46.3434182 ], + [ 7.113566, 46.343466 ], + [ 7.1136164, 46.343521 ], + [ 7.1136589, 46.3435805 ], + [ 7.1136847, 46.3436148 ], + [ 7.1137169, 46.3436472 ], + [ 7.1137544, 46.3436761 ], + [ 7.1137971, 46.3437014 ], + [ 7.1138451, 46.3437232 ], + [ 7.1138891, 46.3437422 ], + [ 7.1139124, 46.3437548 ], + [ 7.1139306, 46.3437639 ], + [ 7.1139694, 46.3437883 ], + [ 7.1140043, 46.3438145 ], + [ 7.1140366, 46.3438425 ], + [ 7.1140805, 46.343884 ], + [ 7.1141257, 46.3439264 ], + [ 7.1141696, 46.3439679 ], + [ 7.1142148, 46.3440094 ], + [ 7.1142588, 46.3440509 ], + [ 7.1143053, 46.3440879 ], + [ 7.1143584, 46.3441196 ], + [ 7.1144167, 46.3441458 ], + [ 7.1144815, 46.3441658 ], + [ 7.114549, 46.3441795 ], + [ 7.1146671, 46.3441906 ], + [ 7.1147879, 46.3441919 ], + [ 7.1149061, 46.3441823 ], + [ 7.1150231999999995, 46.3441619 ], + [ 7.1151351, 46.3441317 ], + [ 7.1152119, 46.3441049 ], + [ 7.1152874, 46.3440754 ], + [ 7.1153603, 46.3440433 ], + [ 7.1154294, 46.3440084 ], + [ 7.1154971, 46.3439708 ], + [ 7.1155805, 46.3439243 ], + [ 7.1156691, 46.3438813 ], + [ 7.1157603, 46.343842 ], + [ 7.1158553, 46.3438063 ], + [ 7.1159529, 46.3437742 ], + [ 7.116044, 46.3437502 ], + [ 7.1161376, 46.3437315 ], + [ 7.1162325, 46.3437174 ], + [ 7.1163287, 46.3437087 ], + [ 7.1164261, 46.3437054 ], + [ 7.1164976, 46.3437011 ], + [ 7.1165678, 46.3436896 ], + [ 7.1166342, 46.3436709 ], + [ 7.1166967, 46.3436459 ], + [ 7.1167527, 46.3436146 ], + [ 7.1167853, 46.343594 ], + [ 7.1168179, 46.3435725 ], + [ 7.1168492, 46.3435519 ], + [ 7.1168818, 46.3435304 ], + [ 7.1169131, 46.3435089 ], + [ 7.1169392, 46.3434927 ], + [ 7.1169679, 46.3434766 ], + [ 7.1169978, 46.3434623 ], + [ 7.1170278, 46.3434489 ], + [ 7.1170603, 46.3434373 ], + [ 7.1170668, 46.3434355 ], + [ 7.1170746, 46.3434329 ], + [ 7.1170811, 46.3434311 ], + [ 7.1170902, 46.3434284 ], + [ 7.1170968, 46.3434266 ], + [ 7.1171475, 46.3434133 ], + [ 7.1171982, 46.3434017 ], + [ 7.1172502, 46.343392 ], + [ 7.1173035, 46.3433831 ], + [ 7.1173568, 46.343377 ], + [ 7.1174231, 46.3433664 ], + [ 7.1174869, 46.3433513 ], + [ 7.1175481, 46.3433299 ], + [ 7.1176054, 46.3433039 ], + [ 7.1176575, 46.3432735 ], + [ 7.1177149, 46.3432323 ], + [ 7.1177684, 46.3431883 ], + [ 7.1178167, 46.3431417 ], + [ 7.1178599, 46.3430933 ], + [ 7.1178979, 46.3430421 ], + [ 7.1179529, 46.342964 ], + [ 7.1179987, 46.3429083 ], + [ 7.1180144, 46.3428886 ], + [ 7.1180785, 46.3428141 ], + [ 7.118149, 46.3427423 ], + [ 7.1182235, 46.3426724 ], + [ 7.1182352, 46.3426616 ], + [ 7.1182887, 46.3426258 ], + [ 7.1185654, 46.3413051 ], + [ 7.1185577, 46.341288 ], + [ 7.1185436, 46.341252 ], + [ 7.1185193, 46.3411961 ], + [ 7.1183452, 46.3409887 ], + [ 7.1182923, 46.3409157 ], + [ 7.1181815, 46.3405493 ], + [ 7.1181715, 46.3404809 ], + [ 7.1181946, 46.3403109 ], + [ 7.1181863, 46.340185 ], + [ 7.1183303, 46.3399794 ], + [ 7.1184739, 46.3398682 ], + [ 7.118534, 46.3397964 ], + [ 7.1186563, 46.3395494 ], + [ 7.1187196, 46.339394 ], + [ 7.1186865, 46.3392787 ], + [ 7.1185548, 46.3391371 ], + [ 7.1185129, 46.3389796 ], + [ 7.1184872, 46.3389345 ], + [ 7.1184628, 46.3388913 ], + [ 7.1183592, 46.3388289 ], + [ 7.1183425, 46.3387965 ], + [ 7.1183066, 46.338728 ], + [ 7.1182134, 46.3384462 ], + [ 7.1180912, 46.3382461 ], + [ 7.1179668, 46.3379768 ], + [ 7.1179561, 46.3378176 ], + [ 7.1180909, 46.3374185 ], + [ 7.1181134, 46.3373538 ], + [ 7.1183043, 46.3369118 ], + [ 7.118736, 46.3366152 ], + [ 7.1196102, 46.3363631 ], + [ 7.1196549, 46.3358289 ], + [ 7.1196735, 46.33444 ], + [ 7.1196814, 46.3337663 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00042", + "country" : "CHE", + "name" : [ + { + "text" : "Secteur Perche", + "lang" : "de-CH" + }, + { + "text" : "Secteur Perche", + "lang" : "fr-CH" + }, + { + "text" : "Secteur Perche", + "lang" : "it-CH" + }, + { + "text" : "Secteur Perche", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "startDateTime" : "2024-11-15T00:00:00+01:00", + "endDateTime" : "2025-05-31T00:00:00+02:00" + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Generaldirektion für Umwelt", + "lang" : "de-CH" + }, + { + "text" : "Direction générale de l'environnement", + "lang" : "fr-CH" + }, + { + "text" : "Direzione generale dell'Ambiente", + "lang" : "it-CH" + }, + { + "text" : "Environment Department", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.dge@vd.ch", + "phone" : "0041213164422", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.1939584, 46.2426364 ], + [ 6.1939114, 46.2422093 ], + [ 6.19408, 46.2422111 ], + [ 6.1940448, 46.2420488 ], + [ 6.1939156, 46.2420294 ], + [ 6.1938316, 46.2417315 ], + [ 6.1938339, 46.2414006 ], + [ 6.1935147, 46.2414131 ], + [ 6.193359, 46.2408536 ], + [ 6.1933505, 46.2408537 ], + [ 6.1935198, 46.2402772 ], + [ 6.1936736, 46.2397519 ], + [ 6.1931277, 46.2381084 ], + [ 6.1928378, 46.2377454 ], + [ 6.1926424, 46.2377881 ], + [ 6.1923214, 46.2376496 ], + [ 6.1922981, 46.2375324 ], + [ 6.1923261, 46.2374427 ], + [ 6.1925619, 46.2373373 ], + [ 6.1924623, 46.2371563 ], + [ 6.1925681, 46.2370675 ], + [ 6.1925739, 46.2368157 ], + [ 6.1924768, 46.2365267 ], + [ 6.1918421, 46.2359349 ], + [ 6.1915907, 46.2355901 ], + [ 6.1914098, 46.2350033 ], + [ 6.1913925, 46.234625199999996 ], + [ 6.1911483, 46.2339657 ], + [ 6.1903337, 46.232742 ], + [ 6.1898495, 46.2323768 ], + [ 6.1894689, 46.2320126 ], + [ 6.1889412, 46.231287 ], + [ 6.1887451, 46.2313568 ], + [ 6.1883045, 46.2307852 ], + [ 6.1874191, 46.2298306 ], + [ 6.1865382, 46.2286782 ], + [ 6.1861836, 46.2283144 ], + [ 6.1856721, 46.2280118 ], + [ 6.1851624, 46.2276282 ], + [ 6.1846296, 46.2271275 ], + [ 6.1840544, 46.2267793 ], + [ 6.1832014, 46.2255555 ], + [ 6.1830494, 46.2254009 ], + [ 6.1825996, 46.225234 ], + [ 6.1823462, 46.2249884 ], + [ 6.1826732, 46.2248571 ], + [ 6.1821929, 46.22433 ], + [ 6.1791523, 46.2201848 ], + [ 6.1789568, 46.2202276 ], + [ 6.1788304, 46.2200912 ], + [ 6.1787965, 46.2198839 ], + [ 6.1787072, 46.21982 ], + [ 6.1788637, 46.2197767 ], + [ 6.1764864, 46.2166553 ], + [ 6.1760959, 46.2161651 ], + [ 6.1758064, 46.215793 ], + [ 6.175582, 46.2154126 ], + [ 6.1753138, 46.2152387 ], + [ 6.1751471, 46.2151648 ], + [ 6.1749022, 46.2151081 ], + [ 6.1749998, 46.2148033 ], + [ 6.174677, 46.2147547 ], + [ 6.1741087, 46.2146764 ], + [ 6.1736187, 46.2145719 ], + [ 6.1731991, 46.2142253 ], + [ 6.1729333, 46.2145103 ], + [ 6.171967, 46.2142745 ], + [ 6.1713498, 46.2140696 ], + [ 6.1712622, 46.2139337 ], + [ 6.1724071, 46.2131818 ], + [ 6.1723834, 46.2130917 ], + [ 6.1731151, 46.2122903 ], + [ 6.1722048, 46.2118753 ], + [ 6.1708917, 46.2112734 ], + [ 6.1706706, 46.2115135 ], + [ 6.1658107, 46.2163808 ], + [ 6.1663204, 46.2169045 ], + [ 6.1670194, 46.2174058 ], + [ 6.1671058, 46.217468 ], + [ 6.1680204, 46.2179281 ], + [ 6.168556, 46.2181276 ], + [ 6.1691733, 46.2183325 ], + [ 6.1698193, 46.218518 ], + [ 6.1707467, 46.2187444 ], + [ 6.1707868, 46.2187945 ], + [ 6.1724903, 46.2210318 ], + [ 6.1725834, 46.2212901 ], + [ 6.1726409, 46.2213797 ], + [ 6.1727067, 46.2215614 ], + [ 6.1731675, 46.2222772 ], + [ 6.1733817, 46.2225257 ], + [ 6.1735082, 46.222662 ], + [ 6.1739266, 46.2230629 ], + [ 6.1740644, 46.2231617 ], + [ 6.1759689, 46.2257582 ], + [ 6.1762222, 46.2264585 ], + [ 6.1766831, 46.2271742 ], + [ 6.1770776, 46.2276069 ], + [ 6.1773311, 46.2278526 ], + [ 6.1775692, 46.2280691 ], + [ 6.17794, 46.2283348 ], + [ 6.1782207, 46.2287378 ], + [ 6.1783912, 46.2289652 ], + [ 6.1790238, 46.2296145 ], + [ 6.1797944, 46.2301686 ], + [ 6.1798367, 46.2301942 ], + [ 6.1799497, 46.2303002 ], + [ 6.1803988, 46.2306774 ], + [ 6.1809083, 46.231061 ], + [ 6.1811437, 46.2312181 ], + [ 6.1816942, 46.2319381 ], + [ 6.1819698, 46.2322651 ], + [ 6.1827133, 46.2330667 ], + [ 6.1830303, 46.2334778 ], + [ 6.1830815, 46.2335429 ], + [ 6.1837143, 46.2341924 ], + [ 6.1839932, 46.2343922 ], + [ 6.1842226, 46.2346534 ], + [ 6.1846032, 46.2350175 ], + [ 6.1848467, 46.2352243 ], + [ 6.184981, 46.2354256 ], + [ 6.185072, 46.2359443 ], + [ 6.185253, 46.2365311 ], + [ 6.1858076, 46.2376211 ], + [ 6.1858347, 46.2376578 ], + [ 6.185877, 46.238145 ], + [ 6.1859002, 46.2382622 ], + [ 6.1859210000000004, 46.2383595 ], + [ 6.186196, 46.23912 ], + [ 6.1866573, 46.2398359 ], + [ 6.1869632, 46.24015 ], + [ 6.1868689, 46.240783 ], + [ 6.1868963, 46.241049 ], + [ 6.1866367, 46.2413119 ], + [ 6.1858397, 46.2424217 ], + [ 6.1857444, 46.2426186 ], + [ 6.185408, 46.2439788 ], + [ 6.1854075, 46.2440025 ], + [ 6.1853926, 46.2440473 ], + [ 6.1851956, 46.2445269 ], + [ 6.1850792, 46.2453068 ], + [ 6.1850999, 46.2457438 ], + [ 6.1851866, 46.2464825 ], + [ 6.1852463, 46.2468275 ], + [ 6.1852529, 46.2468459 ], + [ 6.1853001, 46.247305 ], + [ 6.1855753, 46.2480656 ], + [ 6.1860365, 46.2487814 ], + [ 6.1860621, 46.2488132 ], + [ 6.1861335, 46.2489003 ], + [ 6.1862246, 46.2491524 ], + [ 6.1866858, 46.2498683 ], + [ 6.1868235, 46.2500097 ], + [ 6.1870592, 46.2505994 ], + [ 6.1871477, 46.2507523 ], + [ 6.187105, 46.2508668 ], + [ 6.1866948, 46.2516961 ], + [ 6.1865947, 46.2520999 ], + [ 6.1865019, 46.2527903 ], + [ 6.1865824, 46.2535724 ], + [ 6.1866994, 46.2539662 ], + [ 6.1868214, 46.2543005 ], + [ 6.1871406, 46.2549574 ], + [ 6.1873908, 46.255365 ], + [ 6.1877058, 46.2557926 ], + [ 6.1877253, 46.2559009 ], + [ 6.1877712, 46.2560171 ], + [ 6.1876708, 46.25669 ], + [ 6.1876524, 46.2574817 ], + [ 6.1877328, 46.2582637 ], + [ 6.1880077, 46.2590242 ], + [ 6.1884689999999996, 46.2597401 ], + [ 6.1889859, 46.2602874 ], + [ 6.1890769, 46.2603697 ], + [ 6.1891154, 46.2604761 ], + [ 6.1895766, 46.2611918 ], + [ 6.1898419, 46.2614642 ], + [ 6.1898594, 46.2616343 ], + [ 6.1901344, 46.2623948 ], + [ 6.1905956, 46.2631106 ], + [ 6.1907488, 46.2632678 ], + [ 6.1908917, 46.2635422 ], + [ 6.1912605, 46.2641189 ], + [ 6.1920789, 46.2651896 ], + [ 6.1926455, 46.2658046 ], + [ 6.1933444, 46.2664421 ], + [ 6.1946148, 46.2673175 ], + [ 6.1954097, 46.2677311 ], + [ 6.1959705, 46.2679926 ], + [ 6.1960534, 46.2680205 ], + [ 6.196548, 46.2682688 ], + [ 6.1970513, 46.2684573 ], + [ 6.1976049, 46.2686433 ], + [ 6.1981188, 46.2687973 ], + [ 6.1992061, 46.2690122 ], + [ 6.1998525, 46.2690586 ], + [ 6.1999929, 46.2691058 ], + [ 6.2010802, 46.2693207 ], + [ 6.2014328, 46.2693608 ], + [ 6.2017565, 46.2693913 ], + [ 6.2025284, 46.2694319 ], + [ 6.2025425, 46.2694312 ], + [ 6.203216, 46.2694652 ], + [ 6.2034851, 46.2695242 ], + [ 6.2041983, 46.26965 ], + [ 6.2045604, 46.2696989 ], + [ 6.2062755, 46.269732 ], + [ 6.2072635, 46.270347 ], + [ 6.2074418, 46.2704336 ], + [ 6.2075898, 46.2705974 ], + [ 6.2077947, 46.2708078 ], + [ 6.2078311, 46.2709179 ], + [ 6.2078914, 46.2710861 ], + [ 6.208014, 46.2714024 ], + [ 6.2081485, 46.2717066 ], + [ 6.2086104, 46.2724223 ], + [ 6.2091939, 46.273028 ], + [ 6.2094229, 46.2732284 ], + [ 6.2106761, 46.2740244 ], + [ 6.2107138, 46.2740826 ], + [ 6.2113474, 46.2747319 ], + [ 6.2113839, 46.2747629 ], + [ 6.2123697, 46.2755888 ], + [ 6.2135132, 46.276685 ], + [ 6.2136728, 46.2769586 ], + [ 6.2142861, 46.2778725 ], + [ 6.2144066, 46.2781369 ], + [ 6.2145568, 46.2784309 ], + [ 6.2147222, 46.2787216 ], + [ 6.2147604, 46.2790918 ], + [ 6.215036, 46.2798527 ], + [ 6.2154979, 46.2805688 ], + [ 6.2161317, 46.281218 ], + [ 6.2169188, 46.281781 ], + [ 6.2171241, 46.2818838 ], + [ 6.2171291, 46.2818909 ], + [ 6.217763, 46.28254 ], + [ 6.2180918, 46.2827993 ], + [ 6.2183252, 46.2829699 ], + [ 6.2191014, 46.2837639 ], + [ 6.2191189, 46.2837916 ], + [ 6.2195124, 46.284309 ], + [ 6.2199301, 46.2847813 ], + [ 6.2203072, 46.2851624 ], + [ 6.2205008, 46.285338 ], + [ 6.2205648, 46.2854094 ], + [ 6.2206299, 46.2855099 ], + [ 6.2206558, 46.2855818 ], + [ 6.221118, 46.2862975 ], + [ 6.2215829, 46.286796 ], + [ 6.2217101, 46.2869143 ], + [ 6.2219762, 46.2871407 ], + [ 6.2221946, 46.2874787 ], + [ 6.2228285, 46.2881278 ], + [ 6.2229047, 46.2881871 ], + [ 6.2229125, 46.2881961 ], + [ 6.2234257, 46.288701 ], + [ 6.2242129, 46.2892639 ], + [ 6.2251294, 46.2897235 ], + [ 6.2261471, 46.2900656 ], + [ 6.2262285, 46.2900867 ], + [ 6.2262814, 46.2901 ], + [ 6.2266185, 46.2902611 ], + [ 6.2273337, 46.2905578 ], + [ 6.2282377, 46.2908798 ], + [ 6.2294413, 46.2914329 ], + [ 6.2296485, 46.2915241 ], + [ 6.2299386, 46.2916468 ], + [ 6.2299496, 46.291664 ], + [ 6.2300727, 46.2918206 ], + [ 6.230393, 46.2923162 ], + [ 6.2306963, 46.2926316 ], + [ 6.2307727, 46.2928422 ], + [ 6.2308181, 46.2929305 ], + [ 6.2311647, 46.2935796 ], + [ 6.2312605, 46.2938484 ], + [ 6.2318775, 46.294942 ], + [ 6.23213, 46.2952596 ], + [ 6.232684, 46.2958438 ], + [ 6.2327571, 46.2959093 ], + [ 6.2328166, 46.2959738 ], + [ 6.2332043, 46.2965454 ], + [ 6.2336321, 46.2970787 ], + [ 6.2343548, 46.2978511 ], + [ 6.2347966, 46.2982683 ], + [ 6.2355226, 46.2988777 ], + [ 6.2357113, 46.2990774 ], + [ 6.2355545, 46.2994856 ], + [ 6.2353722, 46.3001675 ], + [ 6.2353633, 46.3002249 ], + [ 6.2352506, 46.3004771 ], + [ 6.2349658, 46.3017143 ], + [ 6.2346541, 46.3021599 ], + [ 6.2343444, 46.3029141 ], + [ 6.2342284, 46.3036941 ], + [ 6.2343096, 46.3044761 ], + [ 6.2343349, 46.3045774 ], + [ 6.2344307, 46.3049384 ], + [ 6.2346071, 46.3054019 ], + [ 6.2346815, 46.3055973 ], + [ 6.2351439, 46.3063128 ], + [ 6.2353176, 46.3064904 ], + [ 6.241515, 46.3043695 ], + [ 6.2418597, 46.3042209 ], + [ 6.2418119, 46.3041963 ], + [ 6.2417874, 46.3041331 ], + [ 6.2414597, 46.3042736 ], + [ 6.2410951, 46.3043237 ], + [ 6.240814, 46.3041228 ], + [ 6.2407181, 46.3037619 ], + [ 6.241357, 46.3030489 ], + [ 6.2413017, 46.3026164 ], + [ 6.2414398, 46.30224 ], + [ 6.2414494, 46.301808199999996 ], + [ 6.2417498, 46.3011366 ], + [ 6.2418257, 46.3006426 ], + [ 6.2423766, 46.2992088 ], + [ 6.2425505, 46.2989767 ], + [ 6.2426216, 46.2986986 ], + [ 6.2425277, 46.2982477 ], + [ 6.2421888, 46.2977223 ], + [ 6.2407556, 46.2962046 ], + [ 6.2397999, 46.2954028 ], + [ 6.2390771, 46.2946305 ], + [ 6.2385114, 46.2937967 ], + [ 6.2380678, 46.2933152 ], + [ 6.2378133, 46.2930876 ], + [ 6.2375607, 46.29277 ], + [ 6.2373774, 46.2922552 ], + [ 6.2369039, 46.2913685 ], + [ 6.2369143, 46.2909007 ], + [ 6.2366627, 46.2905382 ], + [ 6.2364471, 46.290311 ], + [ 6.2363419, 46.2903728 ], + [ 6.2360618, 46.2901268 ], + [ 6.2361557, 46.2899929 ], + [ 6.2358113, 46.2897193 ], + [ 6.2356472, 46.2895106 ], + [ 6.2357141, 46.2894214 ], + [ 6.2356297, 46.2891326 ], + [ 6.2352739, 46.2887869 ], + [ 6.2341843, 46.2881725 ], + [ 6.2330272, 46.2876833 ], + [ 6.2315241, 46.2869926 ], + [ 6.2303008, 46.2865567 ], + [ 6.229723, 46.2862807 ], + [ 6.2290154, 46.2860032 ], + [ 6.2284605, 46.2858623 ], + [ 6.2281188, 46.2854718 ], + [ 6.2278633, 46.2852891 ], + [ 6.2276408, 46.2847919 ], + [ 6.2269138, 46.2842262 ], + [ 6.2267867, 46.2841079 ], + [ 6.2269168, 46.2840913 ], + [ 6.2269837, 46.284002 ], + [ 6.2269218, 46.2838664 ], + [ 6.2264738, 46.2835917 ], + [ 6.2263497, 46.2833384 ], + [ 6.2258432, 46.2827751 ], + [ 6.2254616, 46.2824291 ], + [ 6.225044, 46.2819568 ], + [ 6.2247931, 46.2815672 ], + [ 6.2233975, 46.2801398 ], + [ 6.2227975, 46.2797015 ], + [ 6.2226099, 46.2793846 ], + [ 6.2217463, 46.2785477 ], + [ 6.2211662, 46.2783795 ], + [ 6.2212371, 46.2781103 ], + [ 6.2210915, 46.2776589 ], + [ 6.2205922, 46.2767808 ], + [ 6.2203448, 46.2762384 ], + [ 6.2195537, 46.2750601 ], + [ 6.2193054, 46.2745626 ], + [ 6.2175017, 46.2728336 ], + [ 6.2163810999999995, 46.2718949 ], + [ 6.2165801, 46.2716991 ], + [ 6.2162948, 46.271696 ], + [ 6.2160045, 46.271333 ], + [ 6.2155337, 46.270923 ], + [ 6.2152131, 46.2707576 ], + [ 6.2145067, 46.2704351 ], + [ 6.2142777, 46.2702347 ], + [ 6.2141551, 46.2699184 ], + [ 6.213888, 46.2691058 ], + [ 6.2136995, 46.2688339 ], + [ 6.2129641, 46.2680792 ], + [ 6.2125851, 46.2676252 ], + [ 6.2121786, 46.267243 ], + [ 6.2109851, 46.266663199999996 ], + [ 6.2103861, 46.2661889 ], + [ 6.210198, 46.2658989 ], + [ 6.2099443, 46.2656443 ], + [ 6.2096497, 46.2654791 ], + [ 6.2094306, 46.2654137 ], + [ 6.2088738, 46.2653627 ], + [ 6.2085257, 46.2652689 ], + [ 6.2085277, 46.265179 ], + [ 6.2084246, 46.2651509 ], + [ 6.2079427, 46.2652356 ], + [ 6.2064772, 46.2652196 ], + [ 6.2058011, 46.265284199999996 ], + [ 6.2054389, 46.2652353 ], + [ 6.2044449, 46.2650175 ], + [ 6.2028512, 46.2649371 ], + [ 6.2028532, 46.2648471 ], + [ 6.2026327, 46.2648447 ], + [ 6.2026307, 46.2649347 ], + [ 6.2023071, 46.2649041 ], + [ 6.2023351, 46.2648145 ], + [ 6.2021803, 46.2647678 ], + [ 6.2013388, 46.2646956 ], + [ 6.2010166, 46.2646021 ], + [ 6.200433, 46.2645957 ], + [ 6.1998794, 46.2644097 ], + [ 6.1999863, 46.2642759 ], + [ 6.1998856, 46.2641398 ], + [ 6.1995371, 46.264064 ], + [ 6.199302, 46.2641334 ], + [ 6.1985071, 46.2637198 ], + [ 6.1978082, 46.2630824 ], + [ 6.1969899, 46.2620116 ], + [ 6.1965178, 46.2611067 ], + [ 6.1962627, 46.260924 ], + [ 6.1965634, 46.2608193 ], + [ 6.1965297, 46.260594 ], + [ 6.1960888, 46.2600223 ], + [ 6.195815, 46.2595244 ], + [ 6.1955255, 46.2591434 ], + [ 6.1952434, 46.2590053 ], + [ 6.195441, 46.2588725 ], + [ 6.1953799, 46.2587099 ], + [ 6.195191, 46.2584648 ], + [ 6.1948088, 46.2581637 ], + [ 6.1941356, 46.2575535 ], + [ 6.1941539, 46.2567619 ], + [ 6.1944105, 46.2568817 ], + [ 6.1944032, 46.2571965 ], + [ 6.1943058, 46.2574834 ], + [ 6.1943928, 46.2576463 ], + [ 6.1945583, 46.2577831 ], + [ 6.1947538, 46.2577402 ], + [ 6.1946948, 46.2574877 ], + [ 6.1946822, 46.2563449 ], + [ 6.1945262, 46.2563612 ], + [ 6.1944759, 46.2568555 ], + [ 6.1942211, 46.2566547 ], + [ 6.1943286, 46.256494 ], + [ 6.1944914, 46.2561808 ], + [ 6.1945022, 46.2557131 ], + [ 6.1944145, 46.2555771 ], + [ 6.1942855, 46.2555487 ], + [ 6.1941603, 46.2553494 ], + [ 6.194011, 46.254511 ], + [ 6.1937362, 46.2540401 ], + [ 6.193357, 46.2536041 ], + [ 6.1931067, 46.2531965 ], + [ 6.1929845, 46.2528622 ], + [ 6.1930845, 46.2524584 ], + [ 6.1933251, 46.2521462 ], + [ 6.1936015, 46.2514025 ], + [ 6.1938612, 46.2513873 ], + [ 6.1939541, 46.2512984 ], + [ 6.1938923, 46.2511627 ], + [ 6.1937637, 46.2511163 ], + [ 6.1938726, 46.2508926 ], + [ 6.1938865, 46.250281 ], + [ 6.1935363, 46.2497193 ], + [ 6.1930746, 46.2489224 ], + [ 6.1928977, 46.2481557 ], + [ 6.1927721, 46.2479743 ], + [ 6.192518, 46.2477466 ], + [ 6.1923509, 46.2476818 ], + [ 6.1923525, 46.2476098 ], + [ 6.1926522, 46.2475502 ], + [ 6.1924038, 46.2470706 ], + [ 6.1923721, 46.2467552 ], + [ 6.1921132, 46.2467344 ], + [ 6.1918276, 46.2467492 ], + [ 6.1917014, 46.2465949 ], + [ 6.1917305, 46.2464602 ], + [ 6.1919266, 46.2463904 ], + [ 6.1921604, 46.246375 ], + [ 6.1920982, 46.2462574 ], + [ 6.1918, 46.2462541 ], + [ 6.1916476, 46.2461174 ], + [ 6.1915608, 46.2453787 ], + [ 6.1916272, 46.2453075 ], + [ 6.1916275, 46.2453067 ], + [ 6.191636, 46.2453061 ], + [ 6.1917422, 46.2449835 ], + [ 6.1918869, 46.2445441 ], + [ 6.1919743, 46.2442332 ], + [ 6.1922127, 46.2442228 ], + [ 6.1924699, 46.2442169 ], + [ 6.1925711, 46.2441746 ], + [ 6.1926992, 46.2439646 ], + [ 6.1927473, 46.2439215 ], + [ 6.1929057, 46.2437999 ], + [ 6.1931903, 46.2436899 ], + [ 6.1934178, 46.2436098 ], + [ 6.193582, 46.2435594 ], + [ 6.1936731, 46.2434126 ], + [ 6.1937267, 46.2432433 ], + [ 6.1937672, 46.2431354 ], + [ 6.1938102, 46.2430388 ], + [ 6.1939131, 46.2428891 ], + [ 6.1938976, 46.2428119 ], + [ 6.1939584, 46.2426364 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "WZV0029", + "country" : "CHE", + "name" : [ + { + "text" : "Wasser- und Zugvogelreservat Rive gauche du Petit-Lac", + "lang" : "de-CH" + }, + { + "text" : "Réserve d'oiseaux d'eau et de migrateurs Rive gauche du Petit-Lac", + "lang" : "fr-CH" + }, + { + "text" : "Riserva di uccelli acquatici e migratori Rive gauche du Petit-Lac", + "lang" : "it-CH" + }, + { + "text" : "Water Bird and Migratory Bird Reserves Rive gauche du Petit-Lac", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7930001, 47.424642 ], + [ 7.7926848, 47.424694 ], + [ 7.7921868, 47.424815 ], + [ 7.7919818, 47.4248621 ], + [ 7.7918499, 47.4248824 ], + [ 7.7915079, 47.4249299 ], + [ 7.7906724, 47.4250386 ], + [ 7.7903596, 47.4250595 ], + [ 7.7899439, 47.4250541 ], + [ 7.7895574, 47.4250221 ], + [ 7.7892196, 47.4249667 ], + [ 7.7888718, 47.4248682 ], + [ 7.7885922, 47.4247396 ], + [ 7.7883696, 47.4246379 ], + [ 7.788387, 47.4248738 ], + [ 7.7883952, 47.4249862 ], + [ 7.7887207, 47.4253294 ], + [ 7.7889408, 47.4255704 ], + [ 7.7891078, 47.425748 ], + [ 7.7894089, 47.4257583 ], + [ 7.7896208, 47.4257655 ], + [ 7.7898764, 47.4257876 ], + [ 7.7902922, 47.4258236 ], + [ 7.7905761, 47.4258482 ], + [ 7.7908517, 47.425872 ], + [ 7.7910924, 47.4259237 ], + [ 7.7914356, 47.4259983 ], + [ 7.7917826, 47.4260789 ], + [ 7.7921698, 47.4261518 ], + [ 7.7923602, 47.4261517 ], + [ 7.7925926, 47.4261295 ], + [ 7.7927291, 47.4261164 ], + [ 7.7931203, 47.4259745 ], + [ 7.7931787, 47.4259367 ], + [ 7.7931981, 47.4258842 ], + [ 7.7931679, 47.4256545 ], + [ 7.7931067, 47.4253251 ], + [ 7.7929905999999995, 47.4250315 ], + [ 7.7929636, 47.4249632 ], + [ 7.7929454, 47.4248318 ], + [ 7.7930001, 47.424642 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr127", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Dangeren", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Dangeren", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Dangeren", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Dangeren", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.2863336, 46.9724416 ], + [ 7.2863286, 46.9723004 ], + [ 7.2863128, 46.9721595 ], + [ 7.2862863, 46.9720194 ], + [ 7.2862491, 46.9718805 ], + [ 7.2862013, 46.971743 ], + [ 7.2861431, 46.9716075 ], + [ 7.2860745, 46.9714742 ], + [ 7.2859959, 46.9713436 ], + [ 7.2859074, 46.9712159 ], + [ 7.2858093, 46.9710917 ], + [ 7.2857018, 46.970971 ], + [ 7.2855852, 46.9708545 ], + [ 7.2854599, 46.9707422 ], + [ 7.2853262, 46.9706346 ], + [ 7.2851844, 46.9705319 ], + [ 7.285035, 46.9704345 ], + [ 7.2848783, 46.9703425 ], + [ 7.2847148, 46.9702563 ], + [ 7.284545, 46.970176 ], + [ 7.2843692, 46.970102 ], + [ 7.284188, 46.9700343 ], + [ 7.2840019, 46.9699732 ], + [ 7.2838114, 46.9699189 ], + [ 7.283617, 46.969871499999996 ], + [ 7.2834192, 46.9698311 ], + [ 7.2832186, 46.9697978 ], + [ 7.2830157, 46.9697718 ], + [ 7.2828112, 46.9697531 ], + [ 7.2826054, 46.9697417 ], + [ 7.2823991, 46.9697378 ], + [ 7.2821928, 46.9697412 ], + [ 7.281987, 46.969752 ], + [ 7.2817823, 46.9697701 ], + [ 7.2815793, 46.9697956 ], + [ 7.2813785, 46.9698283 ], + [ 7.2811805, 46.9698682 ], + [ 7.2809859, 46.969915 ], + [ 7.280795, 46.9699688 ], + [ 7.2806085, 46.9700294 ], + [ 7.2804269999999995, 46.9700966 ], + [ 7.2802508, 46.9701701 ], + [ 7.2800804, 46.9702499 ], + [ 7.2799164, 46.9703357 ], + [ 7.2797592, 46.9704272 ], + [ 7.2796092, 46.9705243 ], + [ 7.2794669, 46.9706266 ], + [ 7.2793325, 46.9707338 ], + [ 7.2792065, 46.9708457 ], + [ 7.2790893, 46.970962 ], + [ 7.278981, 46.9710823 ], + [ 7.2788822, 46.9712063 ], + [ 7.278793, 46.9713337 ], + [ 7.2787136, 46.9714641 ], + [ 7.2786443, 46.9715972 ], + [ 7.2785853, 46.9717326 ], + [ 7.2785367, 46.9718699 ], + [ 7.2784986, 46.9720087 ], + [ 7.2784713, 46.9721488 ], + [ 7.2784547, 46.9722896 ], + [ 7.2784488, 46.9724308 ], + [ 7.2784538, 46.9725721 ], + [ 7.2784696, 46.9727129 ], + [ 7.2784961, 46.972853 ], + [ 7.2785333, 46.972992 ], + [ 7.2785811, 46.9731294 ], + [ 7.2786393, 46.973265 ], + [ 7.2787078, 46.9733982 ], + [ 7.2787863999999995, 46.9735289 ], + [ 7.2788749, 46.9736565 ], + [ 7.278973, 46.9737808 ], + [ 7.2790805, 46.9739014 ], + [ 7.279197, 46.974018 ], + [ 7.2793223, 46.9741303 ], + [ 7.2794561, 46.9742379 ], + [ 7.2795978, 46.9743406 ], + [ 7.2797473, 46.974438 ], + [ 7.279904, 46.97453 ], + [ 7.2800675, 46.9746162 ], + [ 7.2802373, 46.9746965 ], + [ 7.2804131, 46.9747706 ], + [ 7.2805943, 46.9748382 ], + [ 7.2807804, 46.9748993 ], + [ 7.280971, 46.9749536 ], + [ 7.2811654, 46.9750011 ], + [ 7.2813632, 46.9750415 ], + [ 7.2815638, 46.9750747 ], + [ 7.2817667, 46.9751008 ], + [ 7.2819712, 46.9751195 ], + [ 7.282177, 46.9751308 ], + [ 7.2823833, 46.9751348 ], + [ 7.2825897, 46.9751314 ], + [ 7.2827955, 46.9751206 ], + [ 7.2830002, 46.9751025 ], + [ 7.2832032, 46.975077 ], + [ 7.283404, 46.9750443 ], + [ 7.283602, 46.9750044 ], + [ 7.2837967, 46.9749575 ], + [ 7.2839876, 46.9749037 ], + [ 7.2841740999999995, 46.9748431 ], + [ 7.2843557, 46.974776 ], + [ 7.2845319, 46.9747024 ], + [ 7.2847022, 46.974622600000004 ], + [ 7.2848662, 46.9745368 ], + [ 7.2850234, 46.9744453 ], + [ 7.2851734, 46.9743482 ], + [ 7.2853158, 46.9742459 ], + [ 7.2854502, 46.9741387 ], + [ 7.2855761, 46.9740268 ], + [ 7.2856933999999995, 46.9739105 ], + [ 7.2858016, 46.9737902 ], + [ 7.2859004, 46.9736662 ], + [ 7.2859897, 46.9735388 ], + [ 7.286069, 46.9734083 ], + [ 7.2861383, 46.9732753 ], + [ 7.2861972999999995, 46.9731399 ], + [ 7.2862459, 46.9730026 ], + [ 7.2862839, 46.9728637 ], + [ 7.2863112, 46.9727237 ], + [ 7.2863278, 46.9725829 ], + [ 7.2863336, 46.9724416 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0076", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Mühleberg", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Mühleberg", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Mühleberg", + "lang" : "it-CH" + }, + { + "text" : "Substation Mühleberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5407321, 47.5454066 ], + [ 7.5392528, 47.5447334 ], + [ 7.5391848, 47.5447912 ], + [ 7.5406594, 47.5454622 ], + [ 7.5407321, 47.5454066 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns265", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Allschwilerwald", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Allschwilerwald", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Allschwilerwald", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Allschwilerwald", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.007367, 47.1741666 ], + [ 8.0073601, 47.1740254 ], + [ 8.0073424, 47.1738847 ], + [ 8.0073138, 47.1737447 ], + [ 8.0072746, 47.173606 ], + [ 8.0072248, 47.1734689 ], + [ 8.0071645, 47.1733337 ], + [ 8.007094, 47.1732009 ], + [ 8.0070133, 47.1730708 ], + [ 8.0069227, 47.1729437 ], + [ 8.0068226, 47.17282 ], + [ 8.0067131, 47.1727001 ], + [ 8.0065945, 47.1725843 ], + [ 8.0064672, 47.1724728 ], + [ 8.0063315, 47.172366 ], + [ 8.0061878, 47.1722643 ], + [ 8.0060365, 47.1721678 ], + [ 8.005878, 47.1720768 ], + [ 8.0057127, 47.1719916 ], + [ 8.0055412, 47.1719124 ], + [ 8.0053638, 47.1718395 ], + [ 8.005181, 47.171773 ], + [ 8.0049934, 47.1717131 ], + [ 8.0048014, 47.17166 ], + [ 8.0046056, 47.1716138 ], + [ 8.0044066, 47.1715746 ], + [ 8.0042048, 47.1715426 ], + [ 8.0040008, 47.1715179 ], + [ 8.0037952, 47.1715005 ], + [ 8.0035886, 47.1714904 ], + [ 8.0033814, 47.1714877 ], + [ 8.0031744, 47.1714924 ], + [ 8.002968, 47.1715045 ], + [ 8.0027628, 47.171524 ], + [ 8.0025594, 47.1715507 ], + [ 8.0023583, 47.1715847 ], + [ 8.0021601, 47.1716258 ], + [ 8.0019653, 47.1716739 ], + [ 8.0017745, 47.1717289 ], + [ 8.0015881, 47.1717906 ], + [ 8.0014068, 47.1718589 ], + [ 8.0012309, 47.1719336 ], + [ 8.001061, 47.1720144 ], + [ 8.0008975, 47.1721013 ], + [ 8.000741, 47.1721938 ], + [ 8.0005917, 47.172291799999996 ], + [ 8.0004502, 47.1723949 ], + [ 8.0003168, 47.172503 ], + [ 8.0001918, 47.1726157 ], + [ 8.0000757, 47.1727327 ], + [ 7.9999687, 47.1728537 ], + [ 7.9998712, 47.1729783 ], + [ 7.9997833, 47.1731063 ], + [ 7.9997054, 47.1732372 ], + [ 7.9996376, 47.1733707 ], + [ 7.9995802, 47.1735064 ], + [ 7.9995332999999995, 47.173644 ], + [ 7.999497, 47.1737831 ], + [ 7.9994714, 47.1739233 ], + [ 7.9994566, 47.1740642 ], + [ 7.9994527, 47.1742055 ], + [ 7.9994596, 47.1743467 ], + [ 7.9994773, 47.1744874 ], + [ 7.9995058, 47.1746274 ], + [ 7.9995449999999995, 47.1747661 ], + [ 7.9995948, 47.1749032 ], + [ 7.9996551, 47.1750384 ], + [ 7.9997256, 47.1751712 ], + [ 7.9998062999999995, 47.1753013 ], + [ 7.9998968, 47.1754284 ], + [ 7.9999969, 47.1755521 ], + [ 8.0001065, 47.175672 ], + [ 8.000225, 47.1757879 ], + [ 8.0003523, 47.1758993 ], + [ 8.000488, 47.1760061 ], + [ 8.0006317, 47.1761079 ], + [ 8.000783, 47.1762044 ], + [ 8.0009415, 47.1762954 ], + [ 8.0011068, 47.1763806 ], + [ 8.0012783, 47.1764598 ], + [ 8.0014558, 47.1765327 ], + [ 8.0016386, 47.1765992 ], + [ 8.0018262, 47.1766591 ], + [ 8.0020182, 47.1767122 ], + [ 8.002214, 47.1767585 ], + [ 8.002413, 47.1767976 ], + [ 8.0026148, 47.1768296 ], + [ 8.0028188, 47.1768543 ], + [ 8.0030244, 47.1768718 ], + [ 8.0032311, 47.1768818 ], + [ 8.0034382, 47.1768845 ], + [ 8.0036453, 47.1768798 ], + [ 8.0038518, 47.1768677 ], + [ 8.004057, 47.1768483 ], + [ 8.0042604, 47.1768215 ], + [ 8.0044615, 47.1767875 ], + [ 8.0046598, 47.1767464 ], + [ 8.0048546, 47.1766983 ], + [ 8.0050454, 47.1766433 ], + [ 8.0052318, 47.1765816 ], + [ 8.0054131, 47.1765133 ], + [ 8.005589, 47.1764386 ], + [ 8.0057589, 47.1763577 ], + [ 8.0059224, 47.1762709 ], + [ 8.0060789, 47.1761784 ], + [ 8.0062282, 47.1760804 ], + [ 8.0063697, 47.1759772 ], + [ 8.0065031, 47.1758691 ], + [ 8.0066281, 47.1757564 ], + [ 8.0067442, 47.1756394 ], + [ 8.0068511, 47.1755184 ], + [ 8.0069487, 47.1753938 ], + [ 8.0070365, 47.1752658 ], + [ 8.0071144, 47.1751349 ], + [ 8.0071822, 47.1750014 ], + [ 8.0072396, 47.1748657 ], + [ 8.0072865, 47.1747281 ], + [ 8.0073228, 47.174589 ], + [ 8.0073483, 47.1744488 ], + [ 8.0073631, 47.1743079 ], + [ 8.007367, 47.1741666 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "WAW0001", + "country" : "CHE", + "name" : [ + { + "text" : "Justizvollzugsanstalt Wauwilermoos", + "lang" : "de-CH" + }, + { + "text" : "Justizvollzugsanstalt Wauwilermoos", + "lang" : "fr-CH" + }, + { + "text" : "Justizvollzugsanstalt Wauwilermoos", + "lang" : "it-CH" + }, + { + "text" : "Justizvollzugsanstalt Wauwilermoos", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Luzerner Polizei", + "lang" : "de-CH" + }, + { + "text" : "Police de Lucen", + "lang" : "fr-CH" + }, + { + "text" : "Polizia di Lucerna", + "lang" : "it-CH" + }, + { + "text" : "Lucerne Police", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Planung und Einsatz", + "lang" : "de-CH" + }, + { + "text" : "Planification et engagement", + "lang" : "fr-CH" + }, + { + "text" : "Planificatione e impiego", + "lang" : "it-CH" + }, + { + "text" : "Execution and deployment", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Franz Baumgartner", + "lang" : "de-CH" + }, + { + "text" : "Franz Baumgartner", + "lang" : "fr-CH" + }, + { + "text" : "Franz Baumgartner", + "lang" : "it-CH" + }, + { + "text" : "Franz Baumgartner", + "lang" : "en-GB" + } + ], + "siteURL" : "https://polizei.lu.ch/", + "email" : "einsatzplanung.polizei@lu.ch", + "phone" : "0041412488489", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8145445, 47.4010982 ], + [ 7.814607, 47.401211 ], + [ 7.8146064, 47.401225 ], + [ 7.8146089, 47.4012381 ], + [ 7.8146097999999995, 47.4012513 ], + [ 7.8146091, 47.4012644 ], + [ 7.8146029, 47.4012904 ], + [ 7.8145912, 47.4013167 ], + [ 7.8145768, 47.4013425 ], + [ 7.81456, 47.4013675 ], + [ 7.8145381, 47.4014016 ], + [ 7.8145101, 47.4014333 ], + [ 7.814473, 47.401460900000004 ], + [ 7.8143957, 47.4015211 ], + [ 7.8143765, 47.4015388 ], + [ 7.8143594, 47.4015574 ], + [ 7.8141268, 47.401703499999996 ], + [ 7.814072, 47.401733899999996 ], + [ 7.8140308, 47.4017608 ], + [ 7.8139936, 47.4017903 ], + [ 7.8139607, 47.4018221 ], + [ 7.8139323, 47.4018558 ], + [ 7.8139088, 47.4018912 ], + [ 7.813897, 47.4019146 ], + [ 7.8138883, 47.4019387 ], + [ 7.8138829, 47.4019632 ], + [ 7.8138816, 47.4019781 ], + [ 7.814116, 47.4020482 ], + [ 7.8145064, 47.4021768 ], + [ 7.8162933, 47.4021565 ], + [ 7.8163771, 47.4022721 ], + [ 7.8164415, 47.4023281 ], + [ 7.8165364, 47.4024103 ], + [ 7.816798, 47.4025282 ], + [ 7.817031, 47.4025842 ], + [ 7.8172059, 47.4026949 ], + [ 7.8174356, 47.4026503 ], + [ 7.8175175, 47.4026694 ], + [ 7.8175998, 47.4026877 ], + [ 7.8176825999999995, 47.4027051 ], + [ 7.8180333, 47.4027544 ], + [ 7.8181028999999995, 47.4027627 ], + [ 7.8182388, 47.4028018 ], + [ 7.8183665, 47.4028439 ], + [ 7.8185781, 47.402884 ], + [ 7.8186301, 47.4029001 ], + [ 7.8190195, 47.4029278 ], + [ 7.8192364, 47.402975 ], + [ 7.8196034, 47.4030347 ], + [ 7.8200082, 47.4030779 ], + [ 7.8201669, 47.4031076 ], + [ 7.8207135999999995, 47.4031402 ], + [ 7.8212804, 47.4031628 ], + [ 7.8221229, 47.4032617 ], + [ 7.8230165, 47.4032489 ], + [ 7.8235431, 47.4031383 ], + [ 7.8240504, 47.4030069 ], + [ 7.8228297, 47.4019077 ], + [ 7.8227712, 47.4018637 ], + [ 7.8225062, 47.4015978 ], + [ 7.8223537, 47.4015513 ], + [ 7.8218288, 47.4007763 ], + [ 7.8216938, 47.4005863 ], + [ 7.8214589, 47.4006496 ], + [ 7.8212006, 47.40078 ], + [ 7.8208906, 47.4009923 ], + [ 7.8207458, 47.4010902 ], + [ 7.8207839, 47.4008277 ], + [ 7.820888, 47.4005943 ], + [ 7.8210673, 47.4003487 ], + [ 7.8214177, 47.3999935 ], + [ 7.8213695, 47.3999692 ], + [ 7.8208605, 47.4000456 ], + [ 7.8202353, 47.4001386 ], + [ 7.8196538, 47.4002321 ], + [ 7.8192628, 47.4002665 ], + [ 7.8190436, 47.4003604 ], + [ 7.8188151999999995, 47.4000799 ], + [ 7.8182849, 47.3996843 ], + [ 7.818062, 47.3994171 ], + [ 7.8177683, 47.3986506 ], + [ 7.8179649, 47.3986264 ], + [ 7.8194034, 47.3989217 ], + [ 7.8197612, 47.399095 ], + [ 7.8202201, 47.399099 ], + [ 7.820631, 47.399041 ], + [ 7.8207281, 47.3987312 ], + [ 7.8204719, 47.3983488 ], + [ 7.8203571, 47.3981129 ], + [ 7.8202997, 47.3979579 ], + [ 7.8202342, 47.3977876 ], + [ 7.8202369, 47.3977882 ], + [ 7.8203395, 47.3978167 ], + [ 7.8204425, 47.3978085 ], + [ 7.8205033, 47.3977969 ], + [ 7.8205377, 47.3977902 ], + [ 7.8205903, 47.3977854 ], + [ 7.8207076, 47.3977801 ], + [ 7.8207701, 47.3977774 ], + [ 7.8207957, 47.3977791 ], + [ 7.8208344, 47.3977876 ], + [ 7.8208582, 47.397801 ], + [ 7.820921, 47.3978328 ], + [ 7.8209872, 47.3978458 ], + [ 7.8211876, 47.3978787 ], + [ 7.8213089, 47.3978939 ], + [ 7.8213612999999995, 47.3979095 ], + [ 7.8214184, 47.3979391 ], + [ 7.8215366, 47.3979821 ], + [ 7.8216385, 47.3980219 ], + [ 7.8216522, 47.3980302 ], + [ 7.8217552, 47.3980479 ], + [ 7.8218744000000004, 47.3980616 ], + [ 7.8219797, 47.3980749 ], + [ 7.8220434999999995, 47.3980871 ], + [ 7.8221183, 47.398119 ], + [ 7.8221652, 47.3981509 ], + [ 7.8222168, 47.3981658 ], + [ 7.8222558, 47.3981688 ], + [ 7.8223076, 47.3981579 ], + [ 7.8223718, 47.3981501 ], + [ 7.8225325, 47.3981956 ], + [ 7.8226256, 47.3982039 ], + [ 7.8226848, 47.3982267 ], + [ 7.82278, 47.3982278 ], + [ 7.8228055, 47.3982387 ], + [ 7.822841, 47.3982473 ], + [ 7.8229256, 47.3982773 ], + [ 7.8229733, 47.3982826 ], + [ 7.8230315, 47.3982648 ], + [ 7.8230389, 47.398261 ], + [ 7.8231334, 47.3982441 ], + [ 7.8231467, 47.3982382 ], + [ 7.823183, 47.3982613 ], + [ 7.8232456, 47.3983083 ], + [ 7.8233649, 47.3983527 ], + [ 7.8235306, 47.3983604 ], + [ 7.8236367, 47.398376 ], + [ 7.8236747, 47.3983864 ], + [ 7.8237665, 47.3984236 ], + [ 7.8239849, 47.3984276 ], + [ 7.8240861, 47.3983956 ], + [ 7.8244713, 47.3983179 ], + [ 7.8249569, 47.39822 ], + [ 7.8254087, 47.3981636 ], + [ 7.8257367, 47.3981233 ], + [ 7.8255403999999995, 47.3981193 ], + [ 7.8254582, 47.3981113 ], + [ 7.8253457, 47.3980704 ], + [ 7.8252248, 47.3980801 ], + [ 7.8252353, 47.3979315 ], + [ 7.8252247, 47.3978322 ], + [ 7.8251941, 47.3977487 ], + [ 7.8251289, 47.3976995 ], + [ 7.8248873, 47.3977898 ], + [ 7.8242638, 47.3981546 ], + [ 7.8237552, 47.3980766 ], + [ 7.8232707, 47.3979534 ], + [ 7.8229282, 47.3976721 ], + [ 7.8228735, 47.3975032 ], + [ 7.8228813, 47.3974206 ], + [ 7.822775, 47.3973748 ], + [ 7.8223895, 47.3972567 ], + [ 7.8221915, 47.3971033 ], + [ 7.8218694, 47.3972294 ], + [ 7.821785, 47.397055 ], + [ 7.8220134, 47.3968227 ], + [ 7.8222214999999995, 47.3966127 ], + [ 7.8223533, 47.3964793 ], + [ 7.8224553, 47.3963581 ], + [ 7.8226023, 47.3961825 ], + [ 7.822797, 47.3960537 ], + [ 7.8185322, 47.396747 ], + [ 7.8184578, 47.3967591 ], + [ 7.8183826, 47.396582 ], + [ 7.8181055, 47.3964821 ], + [ 7.8179074, 47.3963046 ], + [ 7.8177159, 47.3962983 ], + [ 7.8177705, 47.3964513 ], + [ 7.8176615, 47.3964627 ], + [ 7.8176341, 47.3964217 ], + [ 7.8176181, 47.3962482 ], + [ 7.8173252, 47.3965029 ], + [ 7.817303, 47.396523 ], + [ 7.8172027, 47.3964742 ], + [ 7.8170681, 47.3964526 ], + [ 7.8169535, 47.3963536 ], + [ 7.8169096, 47.3963333 ], + [ 7.8168538, 47.396327 ], + [ 7.8167226, 47.3963015 ], + [ 7.8166126, 47.3962511 ], + [ 7.8165161, 47.3962028 ], + [ 7.8164288, 47.3961759 ], + [ 7.8164564, 47.3962664 ], + [ 7.8168885, 47.3963949 ], + [ 7.8169963, 47.3964578 ], + [ 7.8174307, 47.3966414 ], + [ 7.8178657, 47.3968001 ], + [ 7.8176509, 47.396994 ], + [ 7.8175795, 47.3971011 ], + [ 7.8175612999999995, 47.3971284 ], + [ 7.8173001, 47.3969332 ], + [ 7.8172827, 47.3969253 ], + [ 7.8172644, 47.3969185 ], + [ 7.8172453, 47.3969127 ], + [ 7.8171418, 47.3968881 ], + [ 7.8171062, 47.3968845 ], + [ 7.8170874, 47.3968944 ], + [ 7.8170775, 47.396908 ], + [ 7.8170808, 47.3969239 ], + [ 7.8171033, 47.3969442 ], + [ 7.8171455, 47.3970066 ], + [ 7.8171491, 47.3970153 ], + [ 7.8171517, 47.3970243 ], + [ 7.8171537, 47.3970424 ], + [ 7.8171535, 47.3970605 ], + [ 7.8171472, 47.3970789 ], + [ 7.8171512, 47.3971082 ], + [ 7.8171381, 47.3971181 ], + [ 7.8171152, 47.397143 ], + [ 7.8170861, 47.3971647 ], + [ 7.8170632, 47.3971755 ], + [ 7.8170456, 47.397189 ], + [ 7.8170190999999996, 47.3971968 ], + [ 7.8170035, 47.3972014 ], + [ 7.8169875, 47.3972051 ], + [ 7.816971, 47.3972079 ], + [ 7.8169542, 47.3972097 ], + [ 7.8169372, 47.3972106 ], + [ 7.8169033, 47.3972093 ], + [ 7.8168645, 47.3972032 ], + [ 7.8168261999999995, 47.3971955 ], + [ 7.8167888, 47.3971861 ], + [ 7.8167652, 47.397178 ], + [ 7.8167419, 47.3971694 ], + [ 7.8167067, 47.3971555 ], + [ 7.8166836, 47.3971452 ], + [ 7.8166615, 47.3971339 ], + [ 7.8166404, 47.3971217 ], + [ 7.8166124, 47.3971067 ], + [ 7.8165838999999995, 47.3970922 ], + [ 7.8165548, 47.3970782 ], + [ 7.816532, 47.3970687 ], + [ 7.8165018, 47.3970626 ], + [ 7.8162793, 47.3970567 ], + [ 7.8158178, 47.3975087 ], + [ 7.8157566, 47.3976558 ], + [ 7.8158454, 47.3981672 ], + [ 7.8153597999999995, 47.3982666 ], + [ 7.814911, 47.3984494 ], + [ 7.8147002, 47.3986226 ], + [ 7.814481, 47.3991155 ], + [ 7.8141952, 47.3996381 ], + [ 7.8142022, 47.3999501 ], + [ 7.814418, 47.4001853 ], + [ 7.8145676, 47.4005939 ], + [ 7.8145746, 47.4006338 ], + [ 7.8145797, 47.400667 ], + [ 7.8145805, 47.4007003 ], + [ 7.8145772000000004, 47.4007335 ], + [ 7.8145695, 47.4007664 ], + [ 7.8145578, 47.4007987 ], + [ 7.8145483, 47.4008166 ], + [ 7.8145386, 47.4008344 ], + [ 7.8145286, 47.4008521 ], + [ 7.8144979, 47.4009046 ], + [ 7.81449, 47.4009192 ], + [ 7.8144839, 47.4009343 ], + [ 7.8144797, 47.4009496 ], + [ 7.814482, 47.4009661 ], + [ 7.8144769, 47.4009759 ], + [ 7.8144767, 47.4009871 ], + [ 7.8144782, 47.4009981 ], + [ 7.8144811, 47.401009 ], + [ 7.8144854, 47.4010197 ], + [ 7.8144908, 47.4010301 ], + [ 7.8144975, 47.4010402 ], + [ 7.8145055, 47.4010498 ], + [ 7.8145445, 47.4010982 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns226", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Wasserfalle - Roti Flue", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Wasserfalle - Roti Flue", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Wasserfalle - Roti Flue", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Wasserfalle - Roti Flue", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7405199, 47.4625124 ], + [ 7.7406274, 47.4621529 ], + [ 7.7408429, 47.4618644 ], + [ 7.7414366, 47.4619906 ], + [ 7.7416276, 47.4620328 ], + [ 7.7419886, 47.4621124 ], + [ 7.7425222, 47.4621805 ], + [ 7.742841, 47.4623103 ], + [ 7.7429496, 47.462309 ], + [ 7.7429613, 47.4621262 ], + [ 7.7430075, 47.4619368 ], + [ 7.7430733, 47.461805 ], + [ 7.7431481, 47.4616058 ], + [ 7.7432507, 47.4613766 ], + [ 7.7433684, 47.4612122 ], + [ 7.7435161, 47.4609704 ], + [ 7.7437563, 47.4606464 ], + [ 7.7443231, 47.4602019 ], + [ 7.744578, 47.46009 ], + [ 7.7449923, 47.459947 ], + [ 7.7451443, 47.459858 ], + [ 7.7451806, 47.4597511 ], + [ 7.7452572, 47.4596258 ], + [ 7.7455490000000005, 47.4593363 ], + [ 7.7457071, 47.4592208 ], + [ 7.7460546, 47.4590038 ], + [ 7.7463186, 47.4587972 ], + [ 7.7466283, 47.4585474 ], + [ 7.7468883, 47.4583307 ], + [ 7.7471924, 47.4581571 ], + [ 7.7474039, 47.4580822 ], + [ 7.747887, 47.4579552 ], + [ 7.7479369, 47.4579034 ], + [ 7.7479207, 47.4578416 ], + [ 7.7478447, 47.4578073 ], + [ 7.7476926, 47.4577588 ], + [ 7.7475678, 47.4577325 ], + [ 7.7474406, 47.4577062 ], + [ 7.7472044, 47.457667 ], + [ 7.7467596, 47.4578983 ], + [ 7.7455283999999995, 47.4585396 ], + [ 7.744482, 47.4588611 ], + [ 7.7436266, 47.459157 ], + [ 7.7437475, 47.459235 ], + [ 7.7428913999999995, 47.4595274 ], + [ 7.742935, 47.45956 ], + [ 7.7419059, 47.4601898 ], + [ 7.7414102, 47.4604932 ], + [ 7.7417172, 47.4606894 ], + [ 7.7410458, 47.4611754 ], + [ 7.7410317, 47.4611857 ], + [ 7.7406772, 47.4614425 ], + [ 7.7404741, 47.4613135 ], + [ 7.7404164, 47.4613553 ], + [ 7.7403435, 47.4613089 ], + [ 7.7395564, 47.4621736 ], + [ 7.7392315, 47.4620388 ], + [ 7.7392244, 47.4620523 ], + [ 7.7391271, 47.4623038 ], + [ 7.7390962, 47.4624295 ], + [ 7.7399517, 47.4624873 ], + [ 7.7405199, 47.4625124 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns308", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Landschachen - Huppergruben", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Landschachen - Huppergruben", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Landschachen - Huppergruben", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Landschachen - Huppergruben", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.3602889, 47.4006649 ], + [ 8.3603283, 47.400641 ], + [ 8.3603503, 47.4006188 ], + [ 8.3603347, 47.4005835 ], + [ 8.3603241, 47.400543 ], + [ 8.3603478, 47.4004753 ], + [ 8.3603635, 47.4003772 ], + [ 8.3603693, 47.4002792 ], + [ 8.3603728, 47.4001981 ], + [ 8.3603349, 47.4001646 ], + [ 8.360322, 47.400136 ], + [ 8.3603778, 47.4000511 ], + [ 8.3604042, 47.3999968 ], + [ 8.3604001, 47.3999056 ], + [ 8.3604068, 47.39986 ], + [ 8.360444, 47.3998302 ], + [ 8.3604477, 47.3998108 ], + [ 8.3604481, 47.3997812 ], + [ 8.3604168, 47.3997396 ], + [ 8.360403, 47.3997329 ], + [ 8.3603374, 47.3997416 ], + [ 8.3603319, 47.3997277 ], + [ 8.360384, 47.399719 ], + [ 8.3603901, 47.3996924 ], + [ 8.3603778, 47.3996819 ], + [ 8.3603474, 47.3996877 ], + [ 8.3603167, 47.3996802 ], + [ 8.3602753, 47.3996409 ], + [ 8.3602685, 47.3995992 ], + [ 8.3602352, 47.3995743 ], + [ 8.3601944, 47.3995635 ], + [ 8.3601604, 47.3995445 ], + [ 8.3601485, 47.3995098 ], + [ 8.3601129, 47.3995005 ], + [ 8.3600701, 47.3994703 ], + [ 8.3600729, 47.3994376 ], + [ 8.3601025, 47.3994106 ], + [ 8.3601444, 47.3993925 ], + [ 8.3601423, 47.3993716 ], + [ 8.3601223, 47.3993659 ], + [ 8.3600923, 47.3993726 ], + [ 8.3600825, 47.3993609 ], + [ 8.3601153, 47.3993134 ], + [ 8.3601036, 47.3992943 ], + [ 8.3601072, 47.3992572 ], + [ 8.3601326, 47.3992345 ], + [ 8.3601271, 47.3992142 ], + [ 8.3600953, 47.3991802 ], + [ 8.3600872, 47.3991599 ], + [ 8.3601128, 47.3991457 ], + [ 8.3601121, 47.3991136 ], + [ 8.360075, 47.3991129 ], + [ 8.36003, 47.3991476 ], + [ 8.35999, 47.3992198 ], + [ 8.360027, 47.3992586 ], + [ 8.3600624, 47.3992587 ], + [ 8.360062899999999, 47.3992813 ], + [ 8.360055299999999, 47.3993365 ], + [ 8.360040099999999, 47.3993511 ], + [ 8.3599675, 47.3993476 ], + [ 8.3599611, 47.3993289 ], + [ 8.3599378, 47.3993286 ], + [ 8.3599148, 47.399339 ], + [ 8.3598622, 47.3993438 ], + [ 8.3597794, 47.3993414 ], + [ 8.3597129, 47.3993404 ], + [ 8.359653699999999, 47.3993571 ], + [ 8.3596171, 47.3993821 ], + [ 8.3595759, 47.3993894 ], + [ 8.3595258, 47.3993905 ], + [ 8.359463, 47.3993954 ], + [ 8.3594048, 47.3994195 ], + [ 8.359354100000001, 47.3994313 ], + [ 8.3593051, 47.3994805 ], + [ 8.3592741, 47.3995307 ], + [ 8.3592618, 47.3995586 ], + [ 8.3592449, 47.3996194 ], + [ 8.3592409, 47.3996789 ], + [ 8.3592236, 47.3997198 ], + [ 8.3592332, 47.3997695 ], + [ 8.3592505, 47.3998181 ], + [ 8.3592812, 47.399887 ], + [ 8.3593044, 47.3999226 ], + [ 8.3592852, 47.3999984 ], + [ 8.3592418, 47.4000706 ], + [ 8.3592132, 47.4001947 ], + [ 8.3591886, 47.4002592 ], + [ 8.359148, 47.4003014 ], + [ 8.3590637, 47.4003537 ], + [ 8.3589831, 47.4003781 ], + [ 8.3589425, 47.4004219 ], + [ 8.3589356, 47.4004637 ], + [ 8.3589487, 47.4005172 ], + [ 8.3590272, 47.4006445 ], + [ 8.3590517, 47.4007032 ], + [ 8.3590483, 47.4007499 ], + [ 8.3590365, 47.4008529 ], + [ 8.3590245, 47.4009436 ], + [ 8.3590111, 47.4010069 ], + [ 8.3589851, 47.4010865 ], + [ 8.3589608, 47.4011661 ], + [ 8.358968, 47.4012271 ], + [ 8.3589852, 47.4013068 ], + [ 8.3589989, 47.4013484 ], + [ 8.3590228, 47.4013793 ], + [ 8.3590281, 47.4014269 ], + [ 8.3589968, 47.4015001 ], + [ 8.3589809, 47.4015296 ], + [ 8.3590093, 47.4016244 ], + [ 8.3589725, 47.4018004 ], + [ 8.35899, 47.4019506 ], + [ 8.358977, 47.4020605 ], + [ 8.3589617, 47.4021856 ], + [ 8.3589881, 47.4022698 ], + [ 8.359049, 47.4023369 ], + [ 8.3591388, 47.4023548 ], + [ 8.3592107, 47.402339 ], + [ 8.3592951, 47.4023299 ], + [ 8.359403499999999, 47.4023391 ], + [ 8.359519, 47.4023264 ], + [ 8.3595899, 47.4022532 ], + [ 8.359635, 47.402127899999996 ], + [ 8.3596053, 47.4019946 ], + [ 8.3596413, 47.4019183 ], + [ 8.3597246, 47.4018417 ], + [ 8.3597366, 47.4018196 ], + [ 8.3597109, 47.4017692 ], + [ 8.3597648, 47.4017231 ], + [ 8.3597614, 47.4016691 ], + [ 8.359763300000001, 47.4016353 ], + [ 8.3597901, 47.4016047 ], + [ 8.3597996, 47.4015793 ], + [ 8.3598363, 47.4015401 ], + [ 8.3598505, 47.4014961 ], + [ 8.3598364, 47.4014033 ], + [ 8.3599053, 47.4013622 ], + [ 8.3599496, 47.4013348 ], + [ 8.360001, 47.4012838 ], + [ 8.3600278, 47.4012498 ], + [ 8.3601198, 47.4011021 ], + [ 8.3601667, 47.4010814 ], + [ 8.3602213, 47.4010725 ], + [ 8.3602307, 47.4010404 ], + [ 8.3601779, 47.4010104 ], + [ 8.3601726, 47.4009935 ], + [ 8.3602086, 47.4009156 ], + [ 8.3601998, 47.4008413 ], + [ 8.360226, 47.4007685 ], + [ 8.3602674, 47.4007175 ], + [ 8.3602889, 47.4006649 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "KTAG701", + "country" : "CHE", + "name" : [ + { + "text" : "Egelsee", + "lang" : "de-CH" + }, + { + "text" : "Egelsee", + "lang" : "fr-CH" + }, + { + "text" : "Egelsee", + "lang" : "it-CH" + }, + { + "text" : "Egelsee", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "regulationExemption" : "NO", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "schedule" : [ + { + "day" : [ "ANY" ], + "startTime" : "00:00:00.00+01:00", + "endTime" : "00:00:00.00+01:00" + } + ] + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Aargau", + "lang" : "de-CH" + }, + { + "text" : "Canton d'Argovie", + "lang" : "fr-CH" + }, + { + "text" : "Canton Argovia", + "lang" : "it-CH" + }, + { + "text" : "Canton of Aargau", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Departement Bau, Verkehr und Umwelt (BVU)", + "lang" : "de-CH" + }, + { + "text" : "Département de la construction, des transports et de l'environnement (CTE)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento delle costruzioni, dei trasporti e dell'ambiente (CTA)", + "lang" : "it-CH" + }, + { + "text" : "Department of Civil Engineering,Transport and Environment (CTE)", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Sektion Gewässernutzung", + "lang" : "de-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "fr-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "it-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ag.ch/de/verwaltung/bvu/umwelt-natur-landschaft/hochwasserschutz-gewaesser/gewaessernutzung", + "email" : "alg@ag.ch", + "phone" : "0041 62 835 34 50", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.4476974, 47.5841911 ], + [ 9.4038888, 47.5666666 ], + [ 9.2613888, 47.628611 ], + [ 9.3016666, 47.6444444 ], + [ 9.4186653, 47.6040003 ], + [ 9.4476974, 47.5841911 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 120, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "CTR0017", + "country" : "CHE", + "name" : [ + { + "text" : "CTR FRIEDRICHSHAFEN 2", + "lang" : "de-CH" + }, + { + "text" : "CTR FRIEDRICHSHAFEN 2", + "lang" : "fr-CH" + }, + { + "text" : "CTR FRIEDRICHSHAFEN 2", + "lang" : "it-CH" + }, + { + "text" : "CTR FRIEDRICHSHAFEN 2", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only permitted from an altitude of 120 m above ground with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Bodensee-Airport", + "lang" : "de-CH" + }, + { + "text" : "Bodensee-Airport", + "lang" : "fr-CH" + }, + { + "text" : "Bodensee-Airport", + "lang" : "it-CH" + }, + { + "text" : "Bodensee-Airport", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Bodensee-Airport", + "lang" : "de-CH" + }, + { + "text" : "Bodensee-Airport", + "lang" : "fr-CH" + }, + { + "text" : "Bodensee-Airport", + "lang" : "it-CH" + }, + { + "text" : "Bodensee-Airport", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.bodensee-airport.eu/en/", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6363372, 46.7533871 ], + [ 7.6365371, 46.7530088 ], + [ 7.6366702, 46.7527337 ], + [ 7.6367118, 46.7524758 ], + [ 7.6368122, 46.7521949 ], + [ 7.6368954, 46.7519198 ], + [ 7.6369378, 46.7516561 ], + [ 7.6369214, 46.7511861 ], + [ 7.6368635, 46.7507905 ], + [ 7.6367639, 46.7504179 ], + [ 7.6365734, 46.7499936 ], + [ 7.6364159, 46.7494261 ], + [ 7.6363496, 46.749191 ], + [ 7.636433, 46.748961800000004 ], + [ 7.6367831, 46.7485032 ], + [ 7.6369326, 46.7482396 ], + [ 7.6370993, 46.7482053 ], + [ 7.637365, 46.7481596 ], + [ 7.637656, 46.7481194 ], + [ 7.6378309, 46.7480909 ], + [ 7.6380137999999995, 46.7480049 ], + [ 7.6382301, 46.7478789 ], + [ 7.6384879, 46.7477012 ], + [ 7.6384133, 46.7476496 ], + [ 7.6386047, 46.7474319 ], + [ 7.6388295, 46.7471855 ], + [ 7.6389375, 46.7469677 ], + [ 7.6390871, 46.7467212 ], + [ 7.6391371, 46.7465492 ], + [ 7.639221, 46.7464347 ], + [ 7.6392421, 46.7463927 ], + [ 7.639274, 46.7463982 ], + [ 7.6394038, 46.7461281 ], + [ 7.6397299, 46.7458306 ], + [ 7.639925, 46.7455155 ], + [ 7.6402507, 46.7451371 ], + [ 7.6415303, 46.7443702 ], + [ 7.6427716, 46.7438732 ], + [ 7.6425742, 46.7436037 ], + [ 7.6427309, 46.7435135 ], + [ 7.6429936, 46.7437559 ], + [ 7.6437121999999995, 46.7434667 ], + [ 7.6444044, 46.7431237 ], + [ 7.6443645, 46.7429438 ], + [ 7.6449915, 46.7426728 ], + [ 7.6451871, 46.7424926 ], + [ 7.6453427, 46.7421145 ], + [ 7.6456036, 46.7419071 ], + [ 7.6457344, 46.7418889 ], + [ 7.6458, 46.7419517 ], + [ 7.6465852, 46.7419503 ], + [ 7.6468858, 46.7418598 ], + [ 7.6471738, 46.7419043 ], + [ 7.6473704, 46.7419938 ], + [ 7.6471487, 46.7421742 ], + [ 7.6475417, 46.7422904 ], + [ 7.6480915, 46.7423524 ], + [ 7.6488113, 46.742378 ], + [ 7.6492429, 46.7423053 ], + [ 7.6494004, 46.7424399 ], + [ 7.6495704, 46.7423946 ], + [ 7.6493995, 46.742197 ], + [ 7.6510328, 46.7416093 ], + [ 7.6514633, 46.7412667 ], + [ 7.6515284, 46.7411766 ], + [ 7.6516592, 46.7411763 ], + [ 7.6517503, 46.7410412 ], + [ 7.6515930999999995, 46.7409966 ], + [ 7.6520486, 46.740366 ], + [ 7.6522057, 46.7403927 ], + [ 7.6528966, 46.7397167 ], + [ 7.6528308, 46.7396269 ], + [ 7.6528957, 46.7395098 ], + [ 7.6530268, 46.7395546 ], + [ 7.6531176, 46.7393565 ], + [ 7.6529603999999996, 46.7393298 ], + [ 7.6530898, 46.7389517 ], + [ 7.6532467, 46.7389245 ], + [ 7.6538694, 46.737565 ], + [ 7.6539604, 46.7374119 ], + [ 7.6541037, 46.7372677 ], + [ 7.6542995, 46.7371413 ], + [ 7.6545216, 46.73706 ], + [ 7.6548223, 46.7370054 ], + [ 7.6550576, 46.736942 ], + [ 7.6553975, 46.7368874 ], + [ 7.6556592, 46.7368689 ], + [ 7.6558422, 46.7368236 ], + [ 7.6559731, 46.7368593 ], + [ 7.656065, 46.7369131 ], + [ 7.6562871999999995, 46.7368677 ], + [ 7.6564562, 46.7365975 ], + [ 7.6563383, 46.7365528 ], + [ 7.6564162, 46.7364177 ], + [ 7.6563376, 46.7363729 ], + [ 7.6565461, 46.7361746 ], + [ 7.6566902, 46.7362283 ], + [ 7.6568596, 46.736048 ], + [ 7.6567809, 46.7359852 ], + [ 7.6572891, 46.7354715 ], + [ 7.6573273, 46.7352285 ], + [ 7.6573861, 46.7351878 ], + [ 7.6545116, 46.7310721 ], + [ 7.6476098, 46.721185 ], + [ 7.6441187, 46.7161836 ], + [ 7.6441189, 46.7162183 ], + [ 7.6441323, 46.7162992 ], + [ 7.6441195, 46.7163892 ], + [ 7.6440677, 46.7165152 ], + [ 7.6439373, 46.7166324 ], + [ 7.64382, 46.7167226 ], + [ 7.6437418, 46.7168127 ], + [ 7.6437033, 46.7170107 ], + [ 7.6435862, 46.7171548 ], + [ 7.6435338999999995, 46.7171549 ], + [ 7.6435732, 46.7171908 ], + [ 7.6435212, 46.7172629 ], + [ 7.6435346, 46.7173618 ], + [ 7.6435088, 46.7174518 ], + [ 7.6434829, 46.7175238 ], + [ 7.6435093, 46.7175777 ], + [ 7.6433398, 46.717731 ], + [ 7.6432355, 46.7178031 ], + [ 7.6431834, 46.7178752 ], + [ 7.6430399, 46.7179654 ], + [ 7.6428832, 46.7180196 ], + [ 7.6427786, 46.7180468 ], + [ 7.6425303, 46.7181012 ], + [ 7.6422557, 46.7181287 ], + [ 7.6420727, 46.718147 ], + [ 7.6418634, 46.7181474 ], + [ 7.6415888, 46.7181569 ], + [ 7.6412227, 46.7182115 ], + [ 7.6411441, 46.7181667 ], + [ 7.6410131, 46.7181129 ], + [ 7.6408428, 46.7180413 ], + [ 7.640712, 46.7180325 ], + [ 7.6405682, 46.7180597 ], + [ 7.6404635, 46.7180329 ], + [ 7.6402936, 46.7180872 ], + [ 7.6402095, 46.7181039 ], + [ 7.6401239, 46.7179483 ], + [ 7.6399711, 46.7177563 ], + [ 7.6398429, 46.7175817 ], + [ 7.6396648, 46.7173896 ], + [ 7.6394608, 46.7172675 ], + [ 7.6392569, 46.717163 ], + [ 7.6389263, 46.7170762 ], + [ 7.6385694, 46.716937 ], + [ 7.6379334, 46.7167107 ], + [ 7.6374497, 46.7165542 ], + [ 7.6369403, 46.7163103 ], + [ 7.6365831, 46.7160834 ], + [ 7.6361748, 46.715752 ], + [ 7.6358685, 46.7153853 ], + [ 7.6356892, 46.7150709 ], + [ 7.6355936, 46.7148612 ], + [ 7.6353501999999995, 46.7144593 ], + [ 7.635299, 46.7143283 ], + [ 7.6350199, 46.7144425 ], + [ 7.6345505, 46.7146181 ], + [ 7.6340166, 46.7148202 ], + [ 7.6334461000000005, 46.7150484 ], + [ 7.6327605, 46.7153556 ], + [ 7.6321771, 46.7156452 ], + [ 7.6317708, 46.7158557 ], + [ 7.6314723, 46.7160573 ], + [ 7.6308507, 46.7164255 ], + [ 7.6306608, 46.7165745 ], + [ 7.6305215, 46.7167146 ], + [ 7.6304205, 46.7168372 ], + [ 7.6302551, 46.7169774 ], + [ 7.6299256, 46.7172053 ], + [ 7.6294433999999995, 46.7174421 ], + [ 7.6290248, 46.7176701 ], + [ 7.6286570000000005, 46.7179068 ], + [ 7.628378, 46.7180734 ], + [ 7.6280481, 46.7181964 ], + [ 7.6277053, 46.7183456 ], + [ 7.6274387, 46.7185558 ], + [ 7.6272609, 46.7186611 ], + [ 7.6267408, 46.718863 ], + [ 7.6263727, 46.7190123 ], + [ 7.6253512, 46.7195998 ], + [ 7.6248944, 46.719889 ], + [ 7.6243870000000005, 46.7201871 ], + [ 7.6240827, 46.72038 ], + [ 7.6238414, 46.7205728 ], + [ 7.6236899000000005, 46.720739 ], + [ 7.6235192, 46.7210192 ], + [ 7.6233923, 46.7212205 ], + [ 7.6233172, 46.7214742 ], + [ 7.623229, 46.7217453 ], + [ 7.6231789, 46.7219203 ], + [ 7.6231542999999995, 46.7221214 ], + [ 7.623155, 46.72234 ], + [ 7.6231811, 46.7225672 ], + [ 7.6233091, 46.7229343 ], + [ 7.6234246, 46.7232227 ], + [ 7.6235652, 46.723476 ], + [ 7.6237319, 46.7236769 ], + [ 7.6239609999999995, 46.7239649 ], + [ 7.6243951, 46.7244364 ], + [ 7.6247273, 46.724759399999996 ], + [ 7.6253716, 46.7254927 ], + [ 7.6279258, 46.7243302 ], + [ 7.6281786, 46.7246208 ], + [ 7.6283092, 46.7245576 ], + [ 7.6285045, 46.7243054 ], + [ 7.6286625, 46.724602 ], + [ 7.6289911, 46.7250512 ], + [ 7.6286659, 46.7255465 ], + [ 7.6292281, 46.7254736 ], + [ 7.6295813, 46.725473 ], + [ 7.6296472, 46.7256078 ], + [ 7.6293865, 46.7258781 ], + [ 7.6290994, 46.726085499999996 ], + [ 7.6289953, 46.7262386 ], + [ 7.629232, 46.7265801 ], + [ 7.6289055, 46.7267335 ], + [ 7.6290368, 46.7268682 ], + [ 7.62943, 46.7270745 ], + [ 7.629627, 46.727308 ], + [ 7.6296798, 46.7274429 ], + [ 7.6298504, 46.7275775 ], + [ 7.6300338, 46.7276582 ], + [ 7.6301518, 46.7277389 ], + [ 7.6302567, 46.7277837 ], + [ 7.6304269, 46.7278374 ], + [ 7.6305843, 46.7279541 ], + [ 7.6306241, 46.728098 ], + [ 7.630415, 46.7281703 ], + [ 7.630219, 46.7282426 ], + [ 7.6301801000000005, 46.7283236 ], + [ 7.6301409, 46.7283507 ], + [ 7.630311, 46.7283414 ], + [ 7.6304549999999995, 46.7283861 ], + [ 7.6305077, 46.728476 ], + [ 7.6304293, 46.7285211 ], + [ 7.6301939999999995, 46.7285665 ], + [ 7.630247, 46.7287373 ], + [ 7.6299728, 46.7288997 ], + [ 7.629738, 46.729098 ], + [ 7.629582, 46.7293771 ], + [ 7.6292302, 46.7297555 ], + [ 7.6291392, 46.7299266 ], + [ 7.6291794, 46.7301964 ], + [ 7.629075, 46.7302685 ], + [ 7.6291807, 46.7305562 ], + [ 7.629011, 46.7306734 ], + [ 7.628815, 46.7307367 ], + [ 7.6285271, 46.7307192 ], + [ 7.6285941, 46.7311689 ], + [ 7.6287511, 46.7311686 ], + [ 7.6288546, 46.7308266 ], + [ 7.6290508, 46.7308263 ], + [ 7.6291168, 46.7309881 ], + [ 7.6290787, 46.731321 ], + [ 7.6292099, 46.7314377 ], + [ 7.6292105, 46.7315906 ], + [ 7.6298009, 46.7320664 ], + [ 7.6301292, 46.7324077 ], + [ 7.6303003, 46.7326953 ], + [ 7.6303666, 46.732938 ], + [ 7.6304981, 46.7331447 ], + [ 7.6303032, 46.7335049 ], + [ 7.6301074, 46.7336401 ], + [ 7.6302389, 46.7338378 ], + [ 7.6302655999999995, 46.7339727 ], + [ 7.6310246, 46.7340164 ], + [ 7.6311549, 46.7338813 ], + [ 7.6313124, 46.7340159 ], + [ 7.6315482, 46.7341055 ], + [ 7.6325301, 46.7342657 ], + [ 7.6324647, 46.7342838 ], + [ 7.631483, 46.7341506 ], + [ 7.6310252, 46.734178299999996 ], + [ 7.6300706, 46.7343328 ], + [ 7.6301109, 46.7346296 ], + [ 7.6308953, 46.7344484 ], + [ 7.631353, 46.7344027 ], + [ 7.6320074, 46.7344645 ], + [ 7.6320993, 46.7345363 ], + [ 7.6319688, 46.7346265 ], + [ 7.6316153, 46.7345552 ], + [ 7.6311835, 46.7345559 ], + [ 7.6303729, 46.7347192 ], + [ 7.6303341, 46.7348272 ], + [ 7.6305971, 46.7352135 ], + [ 7.6308331, 46.7353481 ], + [ 7.6310948, 46.7353656 ], + [ 7.6316436, 46.7351668 ], + [ 7.6318401, 46.7352294 ], + [ 7.6320373, 46.735499 ], + [ 7.6301821, 46.7362487 ], + [ 7.6302478, 46.7363386 ], + [ 7.6301829, 46.7364736 ], + [ 7.6302488, 46.7366084 ], + [ 7.6315832, 46.7365612 ], + [ 7.631819, 46.7366508 ], + [ 7.6317822, 46.7373255 ], + [ 7.6318494999999995, 46.7378381 ], + [ 7.6320468, 46.7381347 ], + [ 7.632505, 46.7381969 ], + [ 7.632481, 46.7388086 ], + [ 7.6328752, 46.7392757 ], + [ 7.6334924, 46.7398864 ], + [ 7.6337292, 46.7402458 ], + [ 7.6336903, 46.7403358 ], + [ 7.6334944, 46.7404261 ], + [ 7.6327487, 46.7404723 ], + [ 7.6321604, 46.7406083 ], + [ 7.6313756, 46.7406995 ], + [ 7.6312054, 46.7406728 ], + [ 7.6305884, 46.7401161 ], + [ 7.6303919, 46.7400445 ], + [ 7.6284548, 46.7398948 ], + [ 7.6285233, 46.7407673 ], + [ 7.6294393, 46.7407927 ], + [ 7.6302643, 46.7409713 ], + [ 7.6306831, 46.7409886 ], + [ 7.6308530999999995, 46.7409433 ], + [ 7.6309449, 46.7410151 ], + [ 7.6310102, 46.740988 ], + [ 7.631049, 46.740853 ], + [ 7.6313105, 46.7407896 ], + [ 7.6314022, 46.7408344 ], + [ 7.6314042, 46.7413921 ], + [ 7.6317053, 46.7414186 ], + [ 7.6317959, 46.7411486 ], + [ 7.6320577, 46.7411662 ], + [ 7.6320973, 46.741256 ], + [ 7.6319926, 46.7412562 ], + [ 7.6319928, 46.7413282 ], + [ 7.6319012, 46.7413283 ], + [ 7.6318362, 46.7414364 ], + [ 7.6323598, 46.7414805 ], + [ 7.6325822, 46.7414621 ], + [ 7.632621, 46.7413451 ], + [ 7.6322282, 46.7412828 ], + [ 7.6322541, 46.7411928 ], + [ 7.6327513, 46.74121 ], + [ 7.6327518, 46.7413449 ], + [ 7.6326212, 46.7413901 ], + [ 7.6326213, 46.7414351 ], + [ 7.6331451999999995, 46.7415691 ], + [ 7.6333418, 46.7416587 ], + [ 7.6332767, 46.7417488 ], + [ 7.6317323, 46.7416435 ], + [ 7.6315756, 46.7417337 ], + [ 7.6307902, 46.741663 ], + [ 7.6307513, 46.7417531 ], + [ 7.6306204, 46.7417353 ], + [ 7.6305555, 46.7418883 ], + [ 7.6300983, 46.742114 ], + [ 7.6301369, 46.741934 ], + [ 7.6299406, 46.7419163 ], + [ 7.6298759, 46.7421413 ], + [ 7.6292213, 46.7420255 ], + [ 7.6290251, 46.7420528 ], + [ 7.62896, 46.7421429 ], + [ 7.6290915, 46.7423226 ], + [ 7.6295497, 46.742384799999996 ], + [ 7.6301646, 46.7423657 ], + [ 7.6310141, 46.7420675 ], + [ 7.6312495, 46.7420221 ], + [ 7.6315769, 46.7421115 ], + [ 7.6318394, 46.742318 ], + [ 7.6322999, 46.7430368 ], + [ 7.6327853999999995, 46.7433958 ], + [ 7.6330874, 46.7436832 ], + [ 7.6334415, 46.7439075 ], + [ 7.6338353, 46.7442216 ], + [ 7.6347533, 46.7447868 ], + [ 7.6352514, 46.7450108 ], + [ 7.6355132999999995, 46.7450553 ], + [ 7.6357744, 46.744893 ], + [ 7.6360619, 46.7447845 ], + [ 7.6363889, 46.744739 ], + [ 7.6367166, 46.7448914 ], + [ 7.6378975, 46.7457439 ], + [ 7.6382253, 46.7459232 ], + [ 7.6385272, 46.7461746 ], + [ 7.638533, 46.7461771 ], + [ 7.6385314, 46.7461822 ], + [ 7.6384476, 46.7463026 ], + [ 7.6382233, 46.7464745 ], + [ 7.6379487, 46.7467725 ], + [ 7.6377326, 46.7469272 ], + [ 7.6374493999999995, 46.7471048 ], + [ 7.6371, 46.7472824 ], + [ 7.6368918, 46.7473797 ], + [ 7.6368176, 46.7474313 ], + [ 7.6365174, 46.7476491 ], + [ 7.6363183, 46.7477865 ], + [ 7.6361019, 46.7478782 ], + [ 7.6359354, 46.7479757 ], + [ 7.6358768, 46.7480501 ], + [ 7.6357854, 46.7481246 ], + [ 7.6356941, 46.7482105 ], + [ 7.6356028, 46.7482908 ], + [ 7.6355612, 46.7483194 ], + [ 7.6353861, 46.7483021 ], + [ 7.6346549, 46.7483077 ], + [ 7.6344301, 46.7483305 ], + [ 7.6342806, 46.7483993 ], + [ 7.6341887, 46.7485254 ], + [ 7.634779, 46.7486976 ], + [ 7.6349369, 46.7484912 ], + [ 7.6350955, 46.7484626 ], + [ 7.635453, 46.7484684 ], + [ 7.6355274, 46.7484742 ], + [ 7.6355856, 46.7485087 ], + [ 7.6355525, 46.7486291 ], + [ 7.6350026, 46.7494371 ], + [ 7.6348858, 46.7497294 ], + [ 7.6350603, 46.749804 ], + [ 7.6347688, 46.7503886 ], + [ 7.6346862, 46.7503829 ], + [ 7.6339697, 46.7512998 ], + [ 7.6332456, 46.7521594 ], + [ 7.6324462, 46.7529903 ], + [ 7.6321383, 46.7533512 ], + [ 7.6319638, 46.7535118 ], + [ 7.6314142, 46.7540045 ], + [ 7.6311395, 46.7542624 ], + [ 7.6307903, 46.7545316 ], + [ 7.6309401, 46.7545317 ], + [ 7.6312555, 46.7544573 ], + [ 7.6318798999999995, 46.754297 ], + [ 7.6321709, 46.7540105 ], + [ 7.6327367, 46.7534662 ], + [ 7.6328038, 46.7534776 ], + [ 7.6331865, 46.7529905 ], + [ 7.6335528, 46.752492 ], + [ 7.6338609, 46.7521939 ], + [ 7.6339604, 46.752108 ], + [ 7.6340102, 46.7520852 ], + [ 7.6340267, 46.7521309 ], + [ 7.633977, 46.752194 ], + [ 7.6338273, 46.7526182 ], + [ 7.6340344, 46.7526698 ], + [ 7.6342264, 46.7523776 ], + [ 7.6346668, 46.7524579 ], + [ 7.6345832, 46.7526527 ], + [ 7.6347413, 46.7526987 ], + [ 7.634608, 46.7529566 ], + [ 7.6344419, 46.7529221 ], + [ 7.6343502, 46.7531227 ], + [ 7.6339433, 46.7530309 ], + [ 7.6340346, 46.7527272 ], + [ 7.633852, 46.7526812 ], + [ 7.6337022, 46.7530824 ], + [ 7.6336262999999995, 46.7533689 ], + [ 7.6335518, 46.7535754 ], + [ 7.6334847, 46.7537817 ], + [ 7.6333677, 46.7540282 ], + [ 7.6331434, 46.7544179 ], + [ 7.6330597000000004, 46.7545669 ], + [ 7.6330095, 46.7547216 ], + [ 7.6329594, 46.7548822 ], + [ 7.6328679, 46.7551572 ], + [ 7.6336987, 46.7555072 ], + [ 7.633857, 46.7553983 ], + [ 7.6340322, 46.7552264 ], + [ 7.6342403, 46.7550889 ], + [ 7.6344975999999996, 46.7549687 ], + [ 7.6349721, 46.7547567 ], + [ 7.635521, 46.7545333 ], + [ 7.6356295, 46.7544588 ], + [ 7.6357289999999995, 46.7543786 ], + [ 7.6358953, 46.7542181 ], + [ 7.6361873, 46.7537597 ], + [ 7.6363372, 46.7533871 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "WZV0017", + "country" : "CHE", + "name" : [ + { + "text" : "Wasser- und Zugvogelreservat Kanderdelta bis Hilterfingen", + "lang" : "de-CH" + }, + { + "text" : "Réserve d'oiseaux d'eau et de migrateurs Kanderdelta bis Hilterfingen", + "lang" : "fr-CH" + }, + { + "text" : "Riserva di uccelli acquatici e migratori Kanderdelta bis Hilterfingen", + "lang" : "it-CH" + }, + { + "text" : "Water Bird and Migratory Bird Reserves Kanderdelta bis Hilterfingen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5516994, 47.5228572 ], + [ 7.5503241, 47.5217409 ], + [ 7.5501082, 47.5218519 ], + [ 7.5501403, 47.5218806 ], + [ 7.5500557, 47.5219241 ], + [ 7.5500236, 47.5218954 ], + [ 7.5499054, 47.5219563 ], + [ 7.5511266, 47.5229644 ], + [ 7.5496502, 47.5238587 ], + [ 7.5498616, 47.5240189 ], + [ 7.5514567, 47.5229964 ], + [ 7.5515523, 47.52294 ], + [ 7.5516994, 47.5228572 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns083", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Ziegelei Oberwil", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Ziegelei Oberwil", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Ziegelei Oberwil", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Ziegelei Oberwil", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.6164256, 46.9113884 ], + [ 9.6162404, 46.9090372 ], + [ 9.6158758, 46.9066958 ], + [ 9.615333, 46.9043707 ], + [ 9.6146135, 46.9020682 ], + [ 9.6137192, 46.8997947 ], + [ 9.6126526, 46.8975564 ], + [ 9.6114166, 46.8953594 ], + [ 9.6100148, 46.8932097 ], + [ 9.6084508, 46.8911133 ], + [ 9.6067291, 46.8890758 ], + [ 9.6048543, 46.8871029 ], + [ 9.6028316, 46.8851998 ], + [ 9.6006666, 46.883372 ], + [ 9.5983651, 46.8816243 ], + [ 9.5959336, 46.8799615 ], + [ 9.5933786, 46.8783882 ], + [ 9.5907072, 46.8769086 ], + [ 9.5879266, 46.8755269 ], + [ 9.5850446, 46.8742468 ], + [ 9.5820689, 46.8730719 ], + [ 9.5790078, 46.8720052 ], + [ 9.5758696, 46.8710498 ], + [ 9.5726629, 46.8702083 ], + [ 9.5693964, 46.8694829 ], + [ 9.5660791, 46.8688756 ], + [ 9.5627202, 46.8683882 ], + [ 9.5593286, 46.8680218 ], + [ 9.5559138, 46.8677777 ], + [ 9.5524851, 46.8676563 ], + [ 9.5490518, 46.867658 ], + [ 9.545623299999999, 46.8677829 ], + [ 9.542209, 46.8680306 ], + [ 9.538818299999999, 46.8684004 ], + [ 9.5354604, 46.8688912 ], + [ 9.5321444, 46.8695019 ], + [ 9.5288795, 46.8702306 ], + [ 9.5256746, 46.8710754 ], + [ 9.5225385, 46.8720341 ], + [ 9.5194797, 46.8731038 ], + [ 9.5165066, 46.8742818 ], + [ 9.5136273, 46.8755649 ], + [ 9.5108498, 46.8769494 ], + [ 9.5081816, 46.8784317 ], + [ 9.50563, 46.8800076 ], + [ 9.5032021, 46.8816729 ], + [ 9.5009044, 46.8834229 ], + [ 9.4987434, 46.885253 ], + [ 9.496724799999999, 46.8871581 ], + [ 9.4948543, 46.8891329 ], + [ 9.493137, 46.8911722 ], + [ 9.4915776, 46.8932702 ], + [ 9.4901804, 46.8954213 ], + [ 9.4889493, 46.8976196 ], + [ 9.4878875, 46.899859 ], + [ 9.4869982, 46.9021334 ], + [ 9.4862836, 46.9044366 ], + [ 9.4857459, 46.9067622 ], + [ 9.4853864, 46.909104 ], + [ 9.4852063, 46.9114554 ], + [ 9.485206, 46.9138101 ], + [ 9.4853855, 46.9161616 ], + [ 9.4857444, 46.9185034 ], + [ 9.4862818, 46.9208291 ], + [ 9.4869961, 46.9231323 ], + [ 9.4878854, 46.9254068 ], + [ 9.4889473, 46.9276463 ], + [ 9.490179, 46.9298446 ], + [ 9.4915771, 46.9319957 ], + [ 9.4931376, 46.9340937 ], + [ 9.4948565, 46.9361329 ], + [ 9.496729, 46.9381076 ], + [ 9.4987499, 46.9400125 ], + [ 9.5009137, 46.9418423 ], + [ 9.5032146, 46.943592 ], + [ 9.5056461, 46.9452567 ], + [ 9.5082017, 46.946832 ], + [ 9.5108743, 46.9483134 ], + [ 9.5136567, 46.9496969 ], + [ 9.5165411, 46.9509788 ], + [ 9.5195196, 46.9521555 ], + [ 9.5225841, 46.9532237 ], + [ 9.5257262, 46.9541806 ], + [ 9.5289372, 46.9550234 ], + [ 9.5322083, 46.95575 ], + [ 9.5355305, 46.9563582 ], + [ 9.5388948, 46.9568464 ], + [ 9.5422918, 46.9572133 ], + [ 9.5457122, 46.9574579 ], + [ 9.5491467, 46.9575795 ], + [ 9.5525857, 46.9575778 ], + [ 9.5560199, 46.9574527 ], + [ 9.5594398, 46.9572046 ], + [ 9.562836, 46.9568342 ], + [ 9.5661992, 46.9563425 ], + [ 9.5695201, 46.9557309 ], + [ 9.5727897, 46.955001 ], + [ 9.5759988, 46.9541549 ], + [ 9.579138799999999, 46.9531948 ], + [ 9.582201, 46.9521235 ], + [ 9.5851769, 46.9509438 ], + [ 9.5880585, 46.949659 ], + [ 9.5908378, 46.9482726 ], + [ 9.5935072, 46.9467884 ], + [ 9.5960594, 46.9452105 ], + [ 9.5984873, 46.9435433 ], + [ 9.6007843, 46.9417913 ], + [ 9.6029442, 46.9399593 ], + [ 9.604961, 46.9380524 ], + [ 9.6068291, 46.9360757 ], + [ 9.6085435, 46.9340348 ], + [ 9.6100996, 46.9319352 ], + [ 9.6114929, 46.9297826 ], + [ 9.6127198, 46.9275831 ], + [ 9.6137769, 46.9253425 ], + [ 9.6146612, 46.9230671 ], + [ 9.6153705, 46.9207632 ], + [ 9.6159028, 46.9184369 ], + [ 9.6162566, 46.9160947 ], + [ 9.616431, 46.9137431 ], + [ 9.6164256, 46.9113884 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSXU001", + "country" : "CHE", + "name" : [ + { + "text" : "LSXU Untervaz", + "lang" : "de-CH" + }, + { + "text" : "LSXU Untervaz", + "lang" : "fr-CH" + }, + { + "text" : "LSXU Untervaz", + "lang" : "it-CH" + }, + { + "text" : "LSXU Untervaz", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swiss Helicopter AG", + "lang" : "de-CH" + }, + { + "text" : "Swiss Helicopter AG", + "lang" : "fr-CH" + }, + { + "text" : "Swiss Helicopter AG", + "lang" : "it-CH" + }, + { + "text" : "Swiss Helicopter AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Adrian Roffler", + "lang" : "de-CH" + }, + { + "text" : "Adrian Roffler", + "lang" : "fr-CH" + }, + { + "text" : "Adrian Roffler", + "lang" : "it-CH" + }, + { + "text" : "Adrian Roffler", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swisshelicopter.ch/en/about-us/helicopter-bases/untervaz", + "email" : "untervaz@swisshelicopter.ch", + "phone" : "0041813225757", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4674999, 47.0738888 ], + [ 7.587576, 46.9715552 ], + [ 7.5942177, 46.9653074 ], + [ 7.5999873000000004, 46.9586663 ], + [ 7.604836, 46.9516888 ], + [ 7.6087226, 46.9444347 ], + [ 7.6116143, 46.9369658 ], + [ 7.613487, 46.929346 ], + [ 7.6143249, 46.9216403 ], + [ 7.6141214999999995, 46.9139145 ], + [ 7.6128789, 46.9062345 ], + [ 7.6106081, 46.8986658 ], + [ 7.6073289, 46.8912729 ], + [ 7.6030697, 46.8841188 ], + [ 7.5978671, 46.8772644 ], + [ 7.5917658, 46.870768 ], + [ 7.5848179, 46.8646851 ], + [ 7.577083, 46.8590672 ], + [ 7.5686269, 46.8539623 ], + [ 7.5595219, 46.8494136 ], + [ 7.5498453, 46.8454599 ], + [ 7.5396797, 46.8421348 ], + [ 7.5291114, 46.8394665 ], + [ 7.5182302, 46.8374776 ], + [ 7.5071286, 46.8361851 ], + [ 7.4959009, 46.8355999 ], + [ 7.4846425, 46.8357271 ], + [ 7.4734489, 46.8365655 ], + [ 7.4624152, 46.838108 ], + [ 7.4516351, 46.8403415 ], + [ 7.4412003, 46.8432471 ], + [ 7.4311994, 46.8468 ], + [ 7.4217176, 46.8509701 ], + [ 7.4128355, 46.855722 ], + [ 7.4046287, 46.8610151 ], + [ 7.3971674, 46.8668046 ], + [ 7.2763888, 46.9694444 ], + [ 7.4674999, 47.0738888 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 120, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "CTR0005", + "country" : "CHE", + "name" : [ + { + "text" : "CTR BERN", + "lang" : "de-CH" + }, + { + "text" : "CTR BERN", + "lang" : "fr-CH" + }, + { + "text" : "CTR BERN", + "lang" : "it-CH" + }, + { + "text" : "CTR BERN", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only permitted from an altitude of 120 m above ground with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Skyguide Special Flight Office", + "lang" : "de-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "it-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "en-GB" + } + ], + "siteURL" : "https://skyguide.ch/services/special-flights", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7424638, 47.4363675 ], + [ 7.7425028000000005, 47.436351 ], + [ 7.742601, 47.4364596 ], + [ 7.7429551, 47.4367734 ], + [ 7.7431777, 47.4370594 ], + [ 7.7435449, 47.4373712 ], + [ 7.7438526, 47.4375376 ], + [ 7.7444207, 47.4372384 ], + [ 7.744781, 47.4375148 ], + [ 7.7449945, 47.4376366 ], + [ 7.7453257, 47.4376875 ], + [ 7.7456519, 47.4377269 ], + [ 7.7461277, 47.4373753 ], + [ 7.7464348, 47.4370246 ], + [ 7.7464772, 47.4369752 ], + [ 7.7465156, 47.4369938 ], + [ 7.7466143, 47.4368799 ], + [ 7.7469983, 47.4366091 ], + [ 7.7472748, 47.4364594 ], + [ 7.7476217, 47.4362267 ], + [ 7.7482315, 47.4359073 ], + [ 7.7489402, 47.435664 ], + [ 7.749639, 47.4354587 ], + [ 7.7504101, 47.4352322 ], + [ 7.7501304, 47.4348033 ], + [ 7.7498362, 47.4343497 ], + [ 7.74958, 47.433957 ], + [ 7.7489897, 47.4334663 ], + [ 7.7484003, 47.4328665 ], + [ 7.7479185, 47.4320804 ], + [ 7.7476997, 47.4312264 ], + [ 7.7473188, 47.4305057 ], + [ 7.7469452, 47.4297958 ], + [ 7.7467398, 47.429483 ], + [ 7.7465549, 47.4291972 ], + [ 7.7463689, 47.4289118 ], + [ 7.7463496, 47.4288823 ], + [ 7.7463422, 47.428871 ], + [ 7.7461024, 47.4286514 ], + [ 7.745588, 47.4281708 ], + [ 7.7450974, 47.4277101 ], + [ 7.7446355, 47.4274894 ], + [ 7.7441426, 47.42725 ], + [ 7.7436975, 47.4270353 ], + [ 7.7432278, 47.4267155 ], + [ 7.7427997, 47.426377 ], + [ 7.7425594, 47.4261807 ], + [ 7.7422084, 47.4259212 ], + [ 7.7418056, 47.4256334 ], + [ 7.7416454, 47.4253992 ], + [ 7.7413447, 47.4252902 ], + [ 7.7410941, 47.4251603 ], + [ 7.7408927, 47.4250332 ], + [ 7.7405709, 47.4247891 ], + [ 7.7405633, 47.4247834 ], + [ 7.7402359, 47.4244596 ], + [ 7.7399867, 47.4240824 ], + [ 7.7398404, 47.4238564 ], + [ 7.7397329, 47.4236902 ], + [ 7.7395932, 47.4234744 ], + [ 7.7395629, 47.4232628 ], + [ 7.7395274, 47.423036 ], + [ 7.7395023, 47.422892 ], + [ 7.7394675, 47.4228553 ], + [ 7.739444, 47.4228629 ], + [ 7.7393577, 47.4229173 ], + [ 7.7393086, 47.4229355 ], + [ 7.7392693999999995, 47.422957 ], + [ 7.7392529, 47.4230058 ], + [ 7.7392353, 47.4230259 ], + [ 7.7391341, 47.4230562 ], + [ 7.7390508, 47.4231146 ], + [ 7.7389999, 47.4231795 ], + [ 7.7389506, 47.4233207 ], + [ 7.7389355, 47.4233745 ], + [ 7.7389487, 47.4234351 ], + [ 7.7389284, 47.4234692 ], + [ 7.7389268, 47.4234929 ], + [ 7.7389389, 47.4235264 ], + [ 7.7389094, 47.4235704 ], + [ 7.7389109, 47.4236785 ], + [ 7.7388907, 47.4237219 ], + [ 7.738889, 47.4237426 ], + [ 7.7389015, 47.4238137 ], + [ 7.7389, 47.4238551 ], + [ 7.7388839, 47.4239029 ], + [ 7.7388849, 47.4239245 ], + [ 7.7388962, 47.4239495 ], + [ 7.7389335, 47.4240153 ], + [ 7.7389108, 47.4240437 ], + [ 7.7388761, 47.4240688 ], + [ 7.7388712, 47.4241071 ], + [ 7.7388499, 47.424135 ], + [ 7.7387996999999995, 47.4241756 ], + [ 7.7387654999999995, 47.4241924 ], + [ 7.7386315, 47.4242212 ], + [ 7.7386152, 47.4242293 ], + [ 7.7385796, 47.4242801 ], + [ 7.7385587000000005, 47.424292 ], + [ 7.738503, 47.4242995 ], + [ 7.7384784, 47.4243054 ], + [ 7.7384458, 47.4243257 ], + [ 7.7384207, 47.4243742 ], + [ 7.7383347, 47.4244712 ], + [ 7.7383367, 47.4244837 ], + [ 7.7383546, 47.4244975 ], + [ 7.7384329, 47.4245171 ], + [ 7.7384546, 47.4245313 ], + [ 7.7384663, 47.4245602 ], + [ 7.7384638, 47.4245831 ], + [ 7.7384186, 47.4246869 ], + [ 7.7384241, 47.4247023 ], + [ 7.7384512, 47.4247468 ], + [ 7.7384493, 47.424761 ], + [ 7.7383744, 47.4248102 ], + [ 7.7383641, 47.4248326 ], + [ 7.7383613, 47.4248694 ], + [ 7.7383646, 47.4249304 ], + [ 7.738383, 47.4249785 ], + [ 7.7384134, 47.4250483 ], + [ 7.7384256, 47.4250656 ], + [ 7.7384965999999995, 47.4251067 ], + [ 7.7385000999999995, 47.4251289 ], + [ 7.7384917, 47.4251689 ], + [ 7.7384938, 47.4251934 ], + [ 7.7385348, 47.4252305 ], + [ 7.7385485, 47.4252538 ], + [ 7.7385711, 47.4253847 ], + [ 7.738595, 47.4254434 ], + [ 7.7385988, 47.4255026 ], + [ 7.7386042, 47.4255388 ], + [ 7.7386216, 47.4256375 ], + [ 7.7386232, 47.4257069 ], + [ 7.7386455, 47.4257574 ], + [ 7.7386551, 47.4257695 ], + [ 7.7386778, 47.4257868 ], + [ 7.7387183, 47.4258097 ], + [ 7.7387488, 47.4258318 ], + [ 7.7387522, 47.4259151 ], + [ 7.7387578999999995, 47.4259302 ], + [ 7.7388161, 47.4259726 ], + [ 7.738841, 47.4259967 ], + [ 7.7388566, 47.4260229 ], + [ 7.7388606, 47.4260423 ], + [ 7.7388808000000004, 47.4260586 ], + [ 7.738949, 47.4260904 ], + [ 7.7389521, 47.426103 ], + [ 7.7389408, 47.4261514 ], + [ 7.7389447, 47.4261608 ], + [ 7.7389867, 47.4261954 ], + [ 7.7390178, 47.4262326 ], + [ 7.7390397, 47.426265 ], + [ 7.7390609999999995, 47.4263154 ], + [ 7.7390681, 47.4263558 ], + [ 7.7390959, 47.4263682 ], + [ 7.7391299, 47.4263908 ], + [ 7.7391313, 47.4264237 ], + [ 7.7391432, 47.4264367 ], + [ 7.7391734, 47.4264537 ], + [ 7.7392012, 47.4264719 ], + [ 7.7392064, 47.4264945 ], + [ 7.7392222, 47.426549 ], + [ 7.7392418, 47.4265975 ], + [ 7.7392682, 47.4266518 ], + [ 7.7392857, 47.4266781 ], + [ 7.739312, 47.4267069 ], + [ 7.7393216, 47.4267455 ], + [ 7.7393339999999995, 47.4268116 ], + [ 7.7393197, 47.4268263 ], + [ 7.7392791, 47.4268508 ], + [ 7.7392632, 47.4268666 ], + [ 7.7392553, 47.4268829 ], + [ 7.7392546, 47.4268997 ], + [ 7.7392628, 47.4269441 ], + [ 7.739288, 47.4270232 ], + [ 7.7393056, 47.4270389 ], + [ 7.7393399, 47.4270655 ], + [ 7.7393602999999995, 47.4270939 ], + [ 7.7393884, 47.4271514 ], + [ 7.7394128, 47.4272242 ], + [ 7.7394154, 47.4272941 ], + [ 7.7393962, 47.4273517 ], + [ 7.7393542, 47.4273801 ], + [ 7.7393428, 47.4273917 ], + [ 7.7393462, 47.4274031 ], + [ 7.7394263, 47.4274438 ], + [ 7.7394448, 47.4274805 ], + [ 7.7394323, 47.4275477 ], + [ 7.7394442, 47.4276345 ], + [ 7.7393633, 47.4276992 ], + [ 7.7390379, 47.4279302 ], + [ 7.7384446, 47.4281837 ], + [ 7.7378806, 47.4282774 ], + [ 7.7372925, 47.4282972 ], + [ 7.736667, 47.4281878 ], + [ 7.7365493, 47.4282018 ], + [ 7.7364273, 47.4282093 ], + [ 7.736298, 47.4282133 ], + [ 7.7361653, 47.428207 ], + [ 7.7360372, 47.4281908 ], + [ 7.7357428, 47.4281453 ], + [ 7.7356683, 47.4281359 ], + [ 7.7355941, 47.4281293 ], + [ 7.7355193, 47.4281288 ], + [ 7.7354225, 47.4281366 ], + [ 7.7353265, 47.4281492 ], + [ 7.7351688, 47.4281765 ], + [ 7.735038, 47.4282063 ], + [ 7.7350171, 47.4282097 ], + [ 7.7348738, 47.4282487 ], + [ 7.7347589, 47.4282878 ], + [ 7.7346421, 47.4283288 ], + [ 7.7345261, 47.4283708 ], + [ 7.7343657, 47.4284326 ], + [ 7.7342478, 47.4284706 ], + [ 7.7341391999999995, 47.4285172 ], + [ 7.7340322, 47.4285706 ], + [ 7.7339312, 47.4286243 ], + [ 7.7338278, 47.4286768 ], + [ 7.7337389, 47.4287344 ], + [ 7.7328934, 47.4293541 ], + [ 7.7328899, 47.4293567 ], + [ 7.7328181, 47.4294227 ], + [ 7.7327655, 47.4294955 ], + [ 7.732729, 47.4295689 ], + [ 7.7326936, 47.4296744 ], + [ 7.7326542, 47.4297585 ], + [ 7.732609, 47.4298419 ], + [ 7.7325392, 47.4299162 ], + [ 7.7324579, 47.4299879 ], + [ 7.7323595, 47.4300471 ], + [ 7.7322467, 47.4300979 ], + [ 7.7321347, 47.4301398 ], + [ 7.7319683999999995, 47.4301976 ], + [ 7.7319068, 47.4302235 ], + [ 7.7318492, 47.4302519 ], + [ 7.7308488, 47.4307989 ], + [ 7.7307198, 47.4308731 ], + [ 7.7305954, 47.4309507 ], + [ 7.7304798, 47.4310332 ], + [ 7.7303122, 47.4311735 ], + [ 7.7301578, 47.4313026 ], + [ 7.7301535, 47.4313348 ], + [ 7.7301715, 47.4313607 ], + [ 7.7301886, 47.4313869 ], + [ 7.7302049, 47.4314133 ], + [ 7.7302203, 47.43144 ], + [ 7.730235, 47.4314669 ], + [ 7.7302487, 47.431494 ], + [ 7.7302616, 47.4315213 ], + [ 7.7302736, 47.4315488 ], + [ 7.7302847, 47.4315764 ], + [ 7.730295, 47.4316042 ], + [ 7.7303043, 47.4316322 ], + [ 7.7303128, 47.4316603 ], + [ 7.7303204, 47.4316885 ], + [ 7.7303271, 47.4317168 ], + [ 7.7303328, 47.4317452 ], + [ 7.7303377, 47.4317736 ], + [ 7.7303417, 47.4318022 ], + [ 7.7303447, 47.4319904 ], + [ 7.7303267, 47.432144 ], + [ 7.7305857, 47.4321142 ], + [ 7.7306566, 47.432106 ], + [ 7.7306933, 47.432183 ], + [ 7.7306305, 47.4324111 ], + [ 7.7306238, 47.43242 ], + [ 7.730577, 47.4325889 ], + [ 7.7305435, 47.4327216 ], + [ 7.7304799, 47.432962 ], + [ 7.7304769, 47.4329692 ], + [ 7.7304429, 47.433051 ], + [ 7.7303986, 47.4332329 ], + [ 7.7303203, 47.4334553 ], + [ 7.7302031, 47.4338131 ], + [ 7.7301202, 47.4340888 ], + [ 7.7301593, 47.4340912 ], + [ 7.7302025, 47.4341005 ], + [ 7.7305275, 47.4341705 ], + [ 7.7309909999999995, 47.4342699 ], + [ 7.7309942, 47.4343486 ], + [ 7.7309509, 47.4345823 ], + [ 7.7309484, 47.4346444 ], + [ 7.7310067, 47.434886 ], + [ 7.7310779, 47.4351431 ], + [ 7.7311774, 47.4352796 ], + [ 7.7314269, 47.4352453 ], + [ 7.7314699000000005, 47.4352371 ], + [ 7.7316242, 47.4352077 ], + [ 7.7317507, 47.435167 ], + [ 7.7319566, 47.4351076 ], + [ 7.7320495000000005, 47.4350832 ], + [ 7.7320743, 47.4350764 ], + [ 7.7321376, 47.4347936 ], + [ 7.7322565999999995, 47.4345639 ], + [ 7.7323039, 47.4344705 ], + [ 7.7324965, 47.4341724 ], + [ 7.7325697, 47.4339357 ], + [ 7.7325452, 47.4334384 ], + [ 7.7326969, 47.4331705 ], + [ 7.732603, 47.4326342 ], + [ 7.7324947, 47.4326333 ], + [ 7.7324967000000004, 47.4322537 ], + [ 7.7324981, 47.4319803 ], + [ 7.7325848, 47.4315256 ], + [ 7.7328214, 47.4311858 ], + [ 7.7325627, 47.4310023 ], + [ 7.7328638, 47.4307969 ], + [ 7.7331132, 47.4306831 ], + [ 7.7333557, 47.4305772 ], + [ 7.7335948, 47.4306242 ], + [ 7.7339922, 47.4307006 ], + [ 7.7345975, 47.430916 ], + [ 7.7354031, 47.4312316 ], + [ 7.7356099, 47.4308694 ], + [ 7.7354986, 47.4308331 ], + [ 7.735516, 47.4306223 ], + [ 7.7356227, 47.4305867 ], + [ 7.7356184, 47.4304912 ], + [ 7.7356294, 47.4304592 ], + [ 7.7356545, 47.4304274 ], + [ 7.7356292, 47.430398 ], + [ 7.7356103, 47.4303757 ], + [ 7.7355969, 47.4303583 ], + [ 7.7355858, 47.430336 ], + [ 7.7355763, 47.4303148 ], + [ 7.7355901, 47.4302948 ], + [ 7.7355217, 47.4301073 ], + [ 7.7355393, 47.4300772 ], + [ 7.7355732, 47.430044 ], + [ 7.7356078, 47.4300185 ], + [ 7.7356473, 47.4299938 ], + [ 7.7357007, 47.4299672 ], + [ 7.7357631, 47.4299374 ], + [ 7.7358185, 47.429924 ], + [ 7.7358595999999995, 47.4299178 ], + [ 7.7359158, 47.4299124 ], + [ 7.7359672, 47.4299109 ], + [ 7.736027, 47.4299149 ], + [ 7.7360823, 47.4299407 ], + [ 7.7361292, 47.4299701 ], + [ 7.7361773, 47.4300069 ], + [ 7.736244, 47.4300636 ], + [ 7.7363096, 47.4301188 ], + [ 7.7363796, 47.4301814 ], + [ 7.7364014, 47.4302043 ], + [ 7.7370677, 47.4306441 ], + [ 7.7365473, 47.4309743 ], + [ 7.7365588, 47.4309813 ], + [ 7.7365711, 47.4309877 ], + [ 7.7365842, 47.4309933 ], + [ 7.736598, 47.4309981 ], + [ 7.7366124, 47.4310021 ], + [ 7.7366272, 47.4310052 ], + [ 7.7366424, 47.4310075 ], + [ 7.7366577, 47.4310088 ], + [ 7.7366732, 47.4310092 ], + [ 7.7366887, 47.4310087 ], + [ 7.7367041, 47.4310073 ], + [ 7.7367192, 47.431005 ], + [ 7.7369668, 47.4309672 ], + [ 7.7372183, 47.4309438 ], + [ 7.7374717, 47.4309352 ], + [ 7.7375609, 47.430930000000004 ], + [ 7.7375644, 47.4309298 ], + [ 7.7375679, 47.4309293 ], + [ 7.7375713, 47.4309287 ], + [ 7.7375746, 47.4309278 ], + [ 7.7375778, 47.4309267 ], + [ 7.7375808, 47.4309255 ], + [ 7.7375836, 47.4309241 ], + [ 7.7375862, 47.4309225 ], + [ 7.7375887, 47.4309208 ], + [ 7.7375907999999995, 47.4309189 ], + [ 7.7375928, 47.4309169 ], + [ 7.7375944, 47.4309148 ], + [ 7.7375958, 47.4309126 ], + [ 7.7375969, 47.4309103 ], + [ 7.7375976, 47.430908 ], + [ 7.7375981, 47.4309056 ], + [ 7.7375983, 47.4309032 ], + [ 7.7375981, 47.4309008 ], + [ 7.7375932, 47.4308487 ], + [ 7.7375918, 47.4308316 ], + [ 7.7375926, 47.4308145 ], + [ 7.7375958, 47.4307975 ], + [ 7.7376011, 47.4307808 ], + [ 7.7376086, 47.4307644 ], + [ 7.7376183, 47.4307486 ], + [ 7.7376299, 47.4307334 ], + [ 7.7376467, 47.4307155 ], + [ 7.7376652, 47.4306985 ], + [ 7.7376854, 47.4306823 ], + [ 7.7377009999999995, 47.4306662 ], + [ 7.7377148, 47.4306494 ], + [ 7.7377267, 47.4306319 ], + [ 7.7377347, 47.4306143 ], + [ 7.7377475, 47.4305863 ], + [ 7.7376857, 47.4304759 ], + [ 7.737593, 47.4302525 ], + [ 7.7375346, 47.4300431 ], + [ 7.7377402, 47.4298568 ], + [ 7.7384532, 47.4298847 ], + [ 7.7384176, 47.4301599 ], + [ 7.7395086, 47.4306114 ], + [ 7.7404336, 47.4305248 ], + [ 7.740551, 47.4307787 ], + [ 7.7401729, 47.4308614 ], + [ 7.7398041, 47.4309364 ], + [ 7.7396557999999995, 47.4312951 ], + [ 7.7391559999999995, 47.4311991 ], + [ 7.7382649, 47.4310338 ], + [ 7.7379649, 47.4309773 ], + [ 7.7377953999999995, 47.4309622 ], + [ 7.737779, 47.430965 ], + [ 7.737763, 47.4309688 ], + [ 7.7377475, 47.4309735 ], + [ 7.7377327000000005, 47.4309792 ], + [ 7.7377188, 47.4309857 ], + [ 7.7377057, 47.430993 ], + [ 7.7376936, 47.431001 ], + [ 7.7376826, 47.4310098 ], + [ 7.7376728, 47.4310192 ], + [ 7.7376642, 47.4310291 ], + [ 7.7376570000000005, 47.4310395 ], + [ 7.7376431, 47.4310767 ], + [ 7.7376343, 47.4311146 ], + [ 7.7376306, 47.4311529 ], + [ 7.737632, 47.4311913 ], + [ 7.7376165, 47.4312963 ], + [ 7.7364833, 47.431422 ], + [ 7.7364291, 47.4314531 ], + [ 7.7362996, 47.4315256 ], + [ 7.7360606, 47.4316343 ], + [ 7.7359535, 47.4316832 ], + [ 7.7357838, 47.4317478 ], + [ 7.7356831, 47.4318262 ], + [ 7.7356494, 47.4318493 ], + [ 7.7355395, 47.4319151 ], + [ 7.7354321, 47.4319797 ], + [ 7.7354439, 47.4320625 ], + [ 7.7352815, 47.4324309 ], + [ 7.7352877, 47.4328168 ], + [ 7.735376, 47.4332308 ], + [ 7.7356049, 47.4336184 ], + [ 7.7358571, 47.434051 ], + [ 7.7360884, 47.4343952 ], + [ 7.7361386, 47.4344613 ], + [ 7.7361664999999995, 47.4344977 ], + [ 7.7364892, 47.434909 ], + [ 7.7367527, 47.435179 ], + [ 7.7368606, 47.4352952 ], + [ 7.7369637, 47.4353525 ], + [ 7.7373154, 47.4355045 ], + [ 7.7376480999999995, 47.4355535 ], + [ 7.7378476, 47.4355308 ], + [ 7.7378675999999995, 47.4354703 ], + [ 7.7378684, 47.4354121 ], + [ 7.7379673, 47.4352303 ], + [ 7.738006, 47.4351406 ], + [ 7.7381116, 47.435032 ], + [ 7.7382281, 47.4349778 ], + [ 7.7383484, 47.4349448 ], + [ 7.7386464, 47.4347994 ], + [ 7.7387806999999995, 47.434721 ], + [ 7.7388221999999995, 47.4346488 ], + [ 7.7389424, 47.434608 ], + [ 7.7390947, 47.4345755 ], + [ 7.739165, 47.4345378 ], + [ 7.7392674, 47.4345115 ], + [ 7.7393161, 47.4344496 ], + [ 7.7395192, 47.4344013 ], + [ 7.7396136, 47.4343581 ], + [ 7.7397829, 47.4343304 ], + [ 7.7398717999999995, 47.4342714 ], + [ 7.7401254999999995, 47.4341842 ], + [ 7.740293, 47.4341426 ], + [ 7.740498, 47.4341221 ], + [ 7.7406767, 47.4340875 ], + [ 7.7407511, 47.4341094 ], + [ 7.7410501, 47.4341737 ], + [ 7.741155, 47.4341759 ], + [ 7.7412638, 47.434199 ], + [ 7.7413995, 47.4341931 ], + [ 7.741471, 47.4342076 ], + [ 7.7415122, 47.4342251 ], + [ 7.7415226, 47.4342296 ], + [ 7.7415991, 47.4342791 ], + [ 7.7417323, 47.4343859 ], + [ 7.7417544, 47.4343912 ], + [ 7.7418718, 47.4344456 ], + [ 7.7419723, 47.4344548 ], + [ 7.7420186, 47.4344693 ], + [ 7.7420533, 47.4344727 ], + [ 7.7421258, 47.4344803 ], + [ 7.7421484, 47.4345132 ], + [ 7.7423888, 47.434863 ], + [ 7.7424525, 47.4350868 ], + [ 7.7424657, 47.4353705 ], + [ 7.7425489, 47.4356335 ], + [ 7.7424933, 47.4358052 ], + [ 7.7423171, 47.4362036 ], + [ 7.7424625, 47.436366 ], + [ 7.7424638, 47.4363675 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns053", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Wildenstein", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Wildenstein", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Wildenstein", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Wildenstein", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8671173, 47.4035499 ], + [ 7.8676768, 47.4036982 ], + [ 7.8678075, 47.4037525 ], + [ 7.8684683, 47.4040383 ], + [ 7.8688587, 47.4038381 ], + [ 7.8688206, 47.4037612 ], + [ 7.8688503999999995, 47.4037444 ], + [ 7.8688781, 47.403726 ], + [ 7.8689036, 47.4037062 ], + [ 7.8691911999999995, 47.4034185 ], + [ 7.8691945, 47.4034156 ], + [ 7.8691974, 47.4034126 ], + [ 7.8691999, 47.4034094 ], + [ 7.869202, 47.4034061 ], + [ 7.8692038, 47.4034027 ], + [ 7.8692051, 47.4033991 ], + [ 7.8692059, 47.4033956 ], + [ 7.8692063, 47.403392 ], + [ 7.869235, 47.4033581 ], + [ 7.8693354, 47.4032444 ], + [ 7.8694109999999995, 47.403191 ], + [ 7.8695286, 47.403119 ], + [ 7.8696779, 47.4030352 ], + [ 7.8697577, 47.4029919 ], + [ 7.8698419, 47.4029515 ], + [ 7.8699176, 47.4029225 ], + [ 7.870008, 47.4028849 ], + [ 7.8700986, 47.4028488 ], + [ 7.8701596, 47.4028184 ], + [ 7.8702478, 47.4027708 ], + [ 7.8703835, 47.4027123 ], + [ 7.8705098, 47.4026717 ], + [ 7.8706131, 47.4026441 ], + [ 7.8707036, 47.4026222 ], + [ 7.8707963, 47.4026033 ], + [ 7.8708828, 47.4025914 ], + [ 7.870985, 47.402571 ], + [ 7.8710734, 47.4025477 ], + [ 7.8711113, 47.4025362 ], + [ 7.8711893, 47.40251 ], + [ 7.8712883, 47.4024825 ], + [ 7.8713958, 47.4024692 ], + [ 7.8714295, 47.402459 ], + [ 7.8714672, 47.4024302 ], + [ 7.8715344, 47.4023798 ], + [ 7.8716246, 47.4023135 ], + [ 7.8716834, 47.4022803 ], + [ 7.8717486999999995, 47.4022558 ], + [ 7.8718245, 47.4022353 ], + [ 7.8719289, 47.4022221 ], + [ 7.8720576, 47.4022103 ], + [ 7.8721737, 47.4022111 ], + [ 7.8723089, 47.4022192 ], + [ 7.8724441, 47.402233 ], + [ 7.8725602, 47.4022412 ], + [ 7.8727253, 47.4022316 ], + [ 7.8728261, 47.4022263 ], + [ 7.8730637, 47.4022023 ], + [ 7.873331, 47.4021678 ], + [ 7.8734144, 47.4021503 ], + [ 7.8735049, 47.4021108 ], + [ 7.8740868, 47.4020649 ], + [ 7.8742883, 47.4020586 ], + [ 7.87449, 47.4020618 ], + [ 7.8746908, 47.4020744 ], + [ 7.8751043, 47.4021113 ], + [ 7.8752007, 47.4021219 ], + [ 7.8752965, 47.4021349 ], + [ 7.8753915, 47.4021502 ], + [ 7.8754608, 47.4021615 ], + [ 7.8755311, 47.4021693 ], + [ 7.8756022, 47.4021733 ], + [ 7.8758503, 47.4021889 ], + [ 7.8759475, 47.4021981 ], + [ 7.8760439, 47.40221 ], + [ 7.8761396, 47.4022246 ], + [ 7.8765556, 47.4022925 ], + [ 7.8767038, 47.4023203 ], + [ 7.8767881, 47.4023521 ], + [ 7.8769137, 47.4024156 ], + [ 7.876935, 47.4024359 ], + [ 7.8780895, 47.402043 ], + [ 7.8780962, 47.4020199 ], + [ 7.8780969, 47.4019976 ], + [ 7.8780947999999995, 47.4019755 ], + [ 7.8780896, 47.4019536 ], + [ 7.8780817, 47.401932 ], + [ 7.8780709, 47.401911 ], + [ 7.8780573, 47.4018908 ], + [ 7.8780412, 47.4018715 ], + [ 7.8780225999999995, 47.4018532 ], + [ 7.8780016, 47.4018362 ], + [ 7.8779785, 47.4018205 ], + [ 7.8779534, 47.4018062 ], + [ 7.8778539, 47.4017573 ], + [ 7.8777484, 47.4017145 ], + [ 7.8776377, 47.4016783 ], + [ 7.8769051999999995, 47.4014601 ], + [ 7.8763619, 47.4013052 ], + [ 7.8763451, 47.4013009 ], + [ 7.8763289, 47.4012955 ], + [ 7.8763135, 47.4012893 ], + [ 7.8762989999999995, 47.4012821 ], + [ 7.8762854, 47.4012741 ], + [ 7.876273, 47.4012653 ], + [ 7.8762618, 47.4012557 ], + [ 7.8762519, 47.4012456 ], + [ 7.8762433, 47.4012348 ], + [ 7.8762362, 47.4012236 ], + [ 7.8762305999999995, 47.4012121 ], + [ 7.8762304, 47.401202 ], + [ 7.8762313, 47.4011919 ], + [ 7.8762335, 47.401182 ], + [ 7.8762369, 47.4011722 ], + [ 7.8762381, 47.4011693 ], + [ 7.8762395, 47.4011665 ], + [ 7.8762409, 47.4011637 ], + [ 7.8762653, 47.401133 ], + [ 7.8762944, 47.4011153 ], + [ 7.8763252, 47.4010953 ], + [ 7.8764508, 47.4010796 ], + [ 7.8767534999999995, 47.4010481 ], + [ 7.8768585, 47.4010372 ], + [ 7.8769342, 47.401024 ], + [ 7.8770286, 47.4009956 ], + [ 7.8774592, 47.4008789 ], + [ 7.8772579, 47.4005763 ], + [ 7.8769046, 47.4000448 ], + [ 7.876675, 47.3997009 ], + [ 7.8763349, 47.3996641 ], + [ 7.8760002, 47.3998021 ], + [ 7.8758363, 47.3998484 ], + [ 7.8758222, 47.399845 ], + [ 7.8757319, 47.3998469 ], + [ 7.8756415, 47.3998437 ], + [ 7.8755519, 47.3998354 ], + [ 7.8754637, 47.399822 ], + [ 7.8753773, 47.3998038 ], + [ 7.8751201, 47.3997506 ], + [ 7.8749733, 47.3997384 ], + [ 7.8748258, 47.3997321 ], + [ 7.8746779, 47.3997317 ], + [ 7.8745647, 47.3997326 ], + [ 7.8744518, 47.3997388 ], + [ 7.8743399, 47.3997503 ], + [ 7.874241, 47.3997742 ], + [ 7.8741445, 47.3998022 ], + [ 7.8740506, 47.3998341 ], + [ 7.8739311999999995, 47.399871 ], + [ 7.8738072, 47.399900099999996 ], + [ 7.8736797, 47.3999213 ], + [ 7.8735499, 47.3999343 ], + [ 7.8735112, 47.3999433 ], + [ 7.8734737, 47.3999543 ], + [ 7.8734377, 47.3999674 ], + [ 7.8734034, 47.3999824 ], + [ 7.873371, 47.3999993 ], + [ 7.8733408, 47.400018 ], + [ 7.8732355, 47.4000958 ], + [ 7.8732246, 47.4001023 ], + [ 7.8732129, 47.4001082 ], + [ 7.8732006, 47.4001134 ], + [ 7.8731877, 47.4001179 ], + [ 7.8731742, 47.4001216 ], + [ 7.8731604, 47.4001246 ], + [ 7.8731462, 47.4001267 ], + [ 7.8731318, 47.400128 ], + [ 7.8731173, 47.4001285 ], + [ 7.8731028, 47.4001282 ], + [ 7.8730883, 47.400127 ], + [ 7.8730741, 47.400125 ], + [ 7.8730602, 47.4001223 ], + [ 7.8730485, 47.4001201 ], + [ 7.8730366, 47.4001186 ], + [ 7.8730246, 47.4001179 ], + [ 7.8730126, 47.4001178 ], + [ 7.872617, 47.3995382 ], + [ 7.8726014, 47.3995417 ], + [ 7.8725863, 47.3995461 ], + [ 7.8725718, 47.3995514 ], + [ 7.8725581, 47.3995576 ], + [ 7.8725453, 47.3995646 ], + [ 7.8725334, 47.3995723 ], + [ 7.8725225, 47.3995807 ], + [ 7.8724149, 47.3996958 ], + [ 7.8723911, 47.3997151 ], + [ 7.8723648, 47.3997329 ], + [ 7.8723362, 47.3997489 ], + [ 7.8723056, 47.3997631 ], + [ 7.8722732, 47.3997753 ], + [ 7.8722393, 47.3997855 ], + [ 7.8718148, 47.3999026 ], + [ 7.8717835, 47.3999115 ], + [ 7.8717511, 47.3999183 ], + [ 7.8717179, 47.3999232 ], + [ 7.8716842, 47.3999259 ], + [ 7.8716503, 47.3999265 ], + [ 7.8716164, 47.399925 ], + [ 7.8715829, 47.3999214 ], + [ 7.87155, 47.3999157 ], + [ 7.8714712, 47.399905 ], + [ 7.8713912, 47.399899 ], + [ 7.8713108, 47.3998976 ], + [ 7.8712515, 47.3999095 ], + [ 7.8711938, 47.3999246 ], + [ 7.871138, 47.3999427 ], + [ 7.8710845, 47.3999637 ], + [ 7.8710336, 47.3999876 ], + [ 7.8705064, 47.4002918 ], + [ 7.8704623, 47.4003254 ], + [ 7.8704222999999995, 47.4003612 ], + [ 7.8703867, 47.4003991 ], + [ 7.8703556, 47.4004585 ], + [ 7.8703313, 47.4005192 ], + [ 7.8703139, 47.4005811 ], + [ 7.8703056, 47.4006572 ], + [ 7.8703078, 47.4007336 ], + [ 7.8703206, 47.4008094 ], + [ 7.8703274, 47.4008772 ], + [ 7.8703284, 47.4009451 ], + [ 7.8703236, 47.401013 ], + [ 7.8703168, 47.4010439 ], + [ 7.8703062, 47.4010744 ], + [ 7.8702918, 47.4011041 ], + [ 7.8702737, 47.4011329 ], + [ 7.8702521, 47.4011605 ], + [ 7.8702272, 47.4011869 ], + [ 7.8701989999999995, 47.4012116 ], + [ 7.8701679, 47.4012347 ], + [ 7.870134, 47.4012559 ], + [ 7.8700976, 47.4012751 ], + [ 7.8700589, 47.4012921 ], + [ 7.8699608, 47.4013274 ], + [ 7.8698222, 47.4013649 ], + [ 7.8696099, 47.4014516 ], + [ 7.8693491, 47.40162 ], + [ 7.8693134, 47.4016531 ], + [ 7.8691966, 47.4018184 ], + [ 7.8691742, 47.4018501 ], + [ 7.868881, 47.4022654 ], + [ 7.8688633, 47.4022841 ], + [ 7.8688433, 47.4023018 ], + [ 7.8688211, 47.4023181 ], + [ 7.8687968999999995, 47.4023332 ], + [ 7.8687709, 47.4023467 ], + [ 7.8687433, 47.4023587 ], + [ 7.8687143, 47.402369 ], + [ 7.8686841, 47.4023776 ], + [ 7.8686528, 47.4023844 ], + [ 7.868315, 47.4024259 ], + [ 7.8679412, 47.4024562 ], + [ 7.867804, 47.4024695 ], + [ 7.8676679, 47.4024869 ], + [ 7.8675329, 47.4025081 ], + [ 7.8674507, 47.4025218 ], + [ 7.8673704, 47.40254 ], + [ 7.8672926, 47.4025626 ], + [ 7.8672055, 47.4025995 ], + [ 7.8671213, 47.4026393 ], + [ 7.8670402, 47.402682 ], + [ 7.8670079, 47.4027054 ], + [ 7.866979, 47.4027307 ], + [ 7.8669537, 47.4027577 ], + [ 7.8669322, 47.4027862 ], + [ 7.8668304, 47.4030188 ], + [ 7.8668157999999995, 47.4030924 ], + [ 7.8668116999999995, 47.4031666 ], + [ 7.866818, 47.4032408 ], + [ 7.8668559, 47.40343 ], + [ 7.8668852, 47.4034816 ], + [ 7.8669436, 47.4035206 ], + [ 7.8669785, 47.4035476 ], + [ 7.8671173, 47.4035499 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns319", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Vorderer Wisenberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Vorderer Wisenberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Vorderer Wisenberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Vorderer Wisenberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.2661388, 46.2308432 ], + [ 6.2658696, 46.2311139 ], + [ 6.2644466, 46.231295 ], + [ 6.2631725, 46.2318668 ], + [ 6.2625701, 46.2324726 ], + [ 6.262022, 46.2327185 ], + [ 6.2611752, 46.2335701 ], + [ 6.260001, 46.2337194 ], + [ 6.2587268, 46.2342912 ], + [ 6.2578648, 46.2351578 ], + [ 6.2575464, 46.2361873 ], + [ 6.25782, 46.237223 ], + [ 6.2578744, 46.2372815 ], + [ 6.2579369, 46.2375179 ], + [ 6.2587608, 46.2384021 ], + [ 6.2600098, 46.2390003 ], + [ 6.2614935, 46.2392212 ], + [ 6.2629861, 46.2390313 ], + [ 6.2642604, 46.2384595 ], + [ 6.264484, 46.2382346 ], + [ 6.2658925, 46.2384443 ], + [ 6.2659472, 46.2384374 ], + [ 6.266609, 46.2385359 ], + [ 6.2667570999999995, 46.238517 ], + [ 6.2667152, 46.2386527 ], + [ 6.266989, 46.2396884 ], + [ 6.2678131, 46.2405726 ], + [ 6.2690622, 46.2411706 ], + [ 6.270546, 46.2413914 ], + [ 6.2720386999999995, 46.2412014 ], + [ 6.2733129, 46.2406295 ], + [ 6.2739681, 46.2399705 ], + [ 6.2743177, 46.2400225 ], + [ 6.2758103, 46.2398324 ], + [ 6.2770844, 46.2392604 ], + [ 6.2779461, 46.2383937 ], + [ 6.2782642, 46.2373641 ], + [ 6.2779902, 46.2363284 ], + [ 6.277166, 46.2354443 ], + [ 6.2759169, 46.2348464 ], + [ 6.2744333, 46.2346257 ], + [ 6.2729408, 46.2348157 ], + [ 6.2716667, 46.2353876 ], + [ 6.2710115, 46.2360466 ], + [ 6.270662, 46.2359946 ], + [ 6.2705138, 46.2360135 ], + [ 6.2705558, 46.2358778 ], + [ 6.2703873, 46.2352407 ], + [ 6.2715557, 46.2347163 ], + [ 6.2724174, 46.2338496 ], + [ 6.2727355, 46.23282 ], + [ 6.2724617, 46.2317843 ], + [ 6.2716376, 46.2309002 ], + [ 6.2703887, 46.2303022 ], + [ 6.2689052, 46.2300814 ], + [ 6.2674128, 46.2302713 ], + [ 6.2661388, 46.2308432 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-10", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6337741, 47.4064391 ], + [ 7.6344377, 47.4065193 ], + [ 7.6351998, 47.4055118 ], + [ 7.6352715, 47.4054165 ], + [ 7.6353372, 47.4053429 ], + [ 7.6353822000000005, 47.4052912 ], + [ 7.6354209, 47.4052566 ], + [ 7.6354875, 47.4052104 ], + [ 7.6355531, 47.4051799 ], + [ 7.635637, 47.4051539 ], + [ 7.6357147, 47.4051415 ], + [ 7.6357909, 47.4051348 ], + [ 7.6363837, 47.4051215 ], + [ 7.6366458, 47.4051079 ], + [ 7.6369423, 47.405078 ], + [ 7.6372436, 47.4050422 ], + [ 7.6373974, 47.4050176 ], + [ 7.6374715, 47.4049961 ], + [ 7.6363433, 47.4037073 ], + [ 7.6367752, 47.4027722 ], + [ 7.6364858, 47.4025253 ], + [ 7.6363488, 47.402451 ], + [ 7.6360154, 47.4024232 ], + [ 7.6357225, 47.4024123 ], + [ 7.6352778, 47.4024098 ], + [ 7.6349494, 47.4023829 ], + [ 7.6346608, 47.4023684 ], + [ 7.6344726, 47.4032599 ], + [ 7.6342791, 47.4042025 ], + [ 7.6338965, 47.4060029 ], + [ 7.6337741, 47.4064391 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns250", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Häxenblätz - Brangboden", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Häxenblätz - Brangboden", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Häxenblätz - Brangboden", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Häxenblätz - Brangboden", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.8364096, 46.1788727 ], + [ 8.9353185, 46.180808 ], + [ 8.9401677, 46.180548 ], + [ 8.9448332, 46.1795938 ], + [ 8.9491108, 46.1779864 ], + [ 8.9528136, 46.1757962 ], + [ 8.9557796, 46.173119 ], + [ 8.9578794, 46.1700718 ], + [ 8.9590212, 46.1667879 ], + [ 8.959155299999999, 46.1634108 ], + [ 8.958276, 46.1600882 ], + [ 8.9564219, 46.1569652 ], + [ 8.9536743, 46.1541782 ], + [ 8.9501531, 46.151849 ], + [ 8.9460124, 46.1500794 ], + [ 8.941433, 46.1489466 ], + [ 8.9366149, 46.1485001 ], + [ 8.8377855, 46.1464683 ], + [ 8.8328933, 46.1466961 ], + [ 8.8281777, 46.1476296 ], + [ 8.8238468, 46.1492275 ], + [ 8.8200921, 46.1514193 ], + [ 8.8170793, 46.1541082 ], + [ 8.8149418, 46.1571754 ], + [ 8.8137741, 46.1604853 ], + [ 8.8136281, 46.1638918 ], + [ 8.8145102, 46.1672441 ], + [ 8.8163818, 46.1703942 ], + [ 8.8191603, 46.1732028 ], + [ 8.8227228, 46.1755456 ], + [ 8.826912, 46.1773191 ], + [ 8.8315425, 46.1784447 ], + [ 8.8364097, 46.1788728 ], + [ 8.8364096, 46.1788727 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 120, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "CTR0009", + "country" : "CHE", + "name" : [ + { + "text" : "CTR LOCARNO", + "lang" : "de-CH" + }, + { + "text" : "CTR LOCARNO", + "lang" : "fr-CH" + }, + { + "text" : "CTR LOCARNO", + "lang" : "it-CH" + }, + { + "text" : "CTR LOCARNO", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only permitted from an altitude of 120 m above ground with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Skyguide Special Flight Office", + "lang" : "de-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "it-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "en-GB" + } + ], + "siteURL" : "https://skyguide.ch/services/special-flights", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7978091, 47.3919126 ], + [ 7.7978429, 47.3919436 ], + [ 7.7978834, 47.3919803 ], + [ 7.797928, 47.3920146 ], + [ 7.7979766, 47.3920463 ], + [ 7.7980029, 47.3920602 ], + [ 7.79803, 47.3920734 ], + [ 7.7980578, 47.3920858 ], + [ 7.7981784, 47.3921368 ], + [ 7.7983059, 47.3921934 ], + [ 7.7984251, 47.3922516 ], + [ 7.7985384, 47.3923149 ], + [ 7.7986455, 47.3923831 ], + [ 7.7990464, 47.3926437 ], + [ 7.7990956, 47.3926762 ], + [ 7.7991493, 47.3927054 ], + [ 7.7992069, 47.3927307 ], + [ 7.7992679, 47.3927522 ], + [ 7.7994323, 47.3927981 ], + [ 7.7994742, 47.3928069 ], + [ 7.7995166, 47.3928148 ], + [ 7.7995593, 47.3928218 ], + [ 7.799651, 47.3928294 ], + [ 7.7997433, 47.3928325 ], + [ 7.7998357, 47.392831 ], + [ 7.7999124, 47.3928267 ], + [ 7.7999886, 47.3928197 ], + [ 7.8000642, 47.3928102 ], + [ 7.800127, 47.3928024 ], + [ 7.8001884, 47.3927905 ], + [ 7.8002477, 47.3927745 ], + [ 7.8003045, 47.3927547 ], + [ 7.8003546, 47.3927387 ], + [ 7.8004444, 47.3927157 ], + [ 7.8005347, 47.3926935 ], + [ 7.8006253, 47.3926721 ], + [ 7.8009766, 47.3925916 ], + [ 7.8010235, 47.3925801 ], + [ 7.8010703, 47.3925684 ], + [ 7.801117, 47.3925565 ], + [ 7.8011422, 47.39255 ], + [ 7.8011674, 47.3925434 ], + [ 7.8011925, 47.3925368 ], + [ 7.801217, 47.3925302 ], + [ 7.8012414, 47.3925236 ], + [ 7.8012657999999995, 47.392517 ], + [ 7.8014353, 47.3924793 ], + [ 7.8015836, 47.3924511 ], + [ 7.8016369, 47.3924407 ], + [ 7.801691, 47.3924323 ], + [ 7.8017456, 47.3924257 ], + [ 7.8017825, 47.3924219 ], + [ 7.8018197, 47.3924202 ], + [ 7.8018571, 47.3924207 ], + [ 7.8018942, 47.3924233 ], + [ 7.8019309, 47.3924281 ], + [ 7.8019668, 47.392435 ], + [ 7.8020018, 47.3924439 ], + [ 7.8020355, 47.3924548 ], + [ 7.8024575, 47.3926416 ], + [ 7.8024537, 47.3926546 ], + [ 7.8026857, 47.3926962 ], + [ 7.8027911, 47.3927163 ], + [ 7.8029043, 47.3927379 ], + [ 7.8029482, 47.3927462 ], + [ 7.8033677, 47.392816 ], + [ 7.803914, 47.3928681 ], + [ 7.8045446, 47.3929584 ], + [ 7.8048517, 47.3930021 ], + [ 7.8048735, 47.3930352 ], + [ 7.8049883, 47.3931353 ], + [ 7.8051411, 47.3932181 ], + [ 7.8052972, 47.3932667 ], + [ 7.8057058999999995, 47.3933403 ], + [ 7.8060386, 47.3934097 ], + [ 7.8064887, 47.3934659 ], + [ 7.806893, 47.3935203 ], + [ 7.8069994, 47.3935479 ], + [ 7.8072832, 47.3935598 ], + [ 7.8075391, 47.3935376 ], + [ 7.8077912, 47.3934642 ], + [ 7.8080256, 47.3933439 ], + [ 7.8085082, 47.3929942 ], + [ 7.8090057, 47.3928794 ], + [ 7.8092317, 47.3928086 ], + [ 7.8094075, 47.3927119 ], + [ 7.8095598, 47.3925591 ], + [ 7.8096281, 47.3924222 ], + [ 7.8095854, 47.3922557 ], + [ 7.809459, 47.3921542 ], + [ 7.8096762, 47.3916128 ], + [ 7.809577, 47.3916111 ], + [ 7.8093138, 47.39164 ], + [ 7.8091736, 47.3916866 ], + [ 7.8089282, 47.3918006 ], + [ 7.8087242, 47.3918592 ], + [ 7.8085336, 47.3918858 ], + [ 7.8083124, 47.3919012 ], + [ 7.8073113, 47.3916469 ], + [ 7.8071882, 47.3916332 ], + [ 7.8070622, 47.3916522 ], + [ 7.8067277, 47.3917535 ], + [ 7.8064442, 47.3918064 ], + [ 7.8061578, 47.3917632 ], + [ 7.8059180999999995, 47.3917001 ], + [ 7.8056917, 47.3916199 ], + [ 7.8055503, 47.3915462 ], + [ 7.8054428, 47.3914702 ], + [ 7.805083, 47.3914499 ], + [ 7.804219, 47.391386 ], + [ 7.8040562, 47.3913745 ], + [ 7.8031278, 47.3913076 ], + [ 7.8031127, 47.3913067 ], + [ 7.8021008, 47.3912301 ], + [ 7.8016419, 47.3911918 ], + [ 7.8012347, 47.3911566 ], + [ 7.8006934999999995, 47.391117 ], + [ 7.8001489, 47.3910705 ], + [ 7.7998537, 47.3909406 ], + [ 7.7997928, 47.3909138 ], + [ 7.7991586, 47.3907943 ], + [ 7.7986484, 47.3906328 ], + [ 7.7977922, 47.3902779 ], + [ 7.7974463, 47.3901661 ], + [ 7.7969675, 47.3900061 ], + [ 7.7963764, 47.3897598 ], + [ 7.7959963, 47.3896049 ], + [ 7.7959665, 47.3895928 ], + [ 7.7956289, 47.3894594 ], + [ 7.7955175, 47.3897803 ], + [ 7.7954913999999995, 47.3900196 ], + [ 7.7955143, 47.3903294 ], + [ 7.79584, 47.3904537 ], + [ 7.7959648, 47.3904917 ], + [ 7.7961555, 47.3905552 ], + [ 7.7962944, 47.3906317 ], + [ 7.7966074, 47.3908702 ], + [ 7.7966549, 47.3909095 ], + [ 7.796707, 47.390946 ], + [ 7.7967633, 47.3909795 ], + [ 7.7969596, 47.3910896 ], + [ 7.7970561, 47.3911501 ], + [ 7.7971543, 47.3912093 ], + [ 7.7972544, 47.3912671 ], + [ 7.7973292, 47.391312 ], + [ 7.7973975, 47.3913616 ], + [ 7.7974587, 47.3914152 ], + [ 7.7975122, 47.3914725 ], + [ 7.7976759, 47.3917452 ], + [ 7.7976987, 47.3917798 ], + [ 7.7977222, 47.3918141 ], + [ 7.7977465, 47.3918482 ], + [ 7.797777, 47.3918807 ], + [ 7.7978091, 47.3919126 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns225", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Ränggen", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Ränggen", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Ränggen", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Ränggen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8435162, 47.5330897 ], + [ 7.8439878, 47.5329315 ], + [ 7.8447151999999996, 47.5326674 ], + [ 7.8448952, 47.532619 ], + [ 7.8465361, 47.5326646 ], + [ 7.8477289, 47.5331761 ], + [ 7.848415, 47.5334715 ], + [ 7.8491227, 47.5337812 ], + [ 7.8499977, 47.5342163 ], + [ 7.8508, 47.5346137 ], + [ 7.8523391, 47.5352386 ], + [ 7.8527360999999996, 47.535063 ], + [ 7.8534577, 47.5347376 ], + [ 7.8545169999999995, 47.5342712 ], + [ 7.8548477, 47.5341182 ], + [ 7.8550756, 47.5339742 ], + [ 7.8551559, 47.5338935 ], + [ 7.8551316, 47.5338719 ], + [ 7.8551069, 47.5338831 ], + [ 7.8550816, 47.5338938 ], + [ 7.8550559, 47.5339039 ], + [ 7.8550297, 47.5339136 ], + [ 7.8550031, 47.5339226 ], + [ 7.8549761, 47.5339312 ], + [ 7.8549487, 47.5339391 ], + [ 7.8549209, 47.5339465 ], + [ 7.8548929, 47.5339533 ], + [ 7.8548645, 47.5339595 ], + [ 7.8548359, 47.5339651 ], + [ 7.8548071, 47.5339701 ], + [ 7.854778, 47.5339745 ], + [ 7.8547487, 47.5339783 ], + [ 7.8546306, 47.5339927 ], + [ 7.8546075, 47.5339951 ], + [ 7.8545843, 47.5339969 ], + [ 7.854561, 47.533998 ], + [ 7.8545376000000005, 47.5339985 ], + [ 7.8545142, 47.5339984 ], + [ 7.8544909, 47.5339976 ], + [ 7.8544675999999995, 47.5339962 ], + [ 7.8544444, 47.5339942 ], + [ 7.8544214, 47.5339916 ], + [ 7.8543985, 47.5339883 ], + [ 7.8543759, 47.5339844 ], + [ 7.8543534, 47.5339799 ], + [ 7.8543313, 47.5339748 ], + [ 7.8543095, 47.5339692 ], + [ 7.8542881, 47.5339629 ], + [ 7.854267, 47.533956 ], + [ 7.8542463, 47.5339486 ], + [ 7.8542261, 47.5339406 ], + [ 7.8542064, 47.5339321 ], + [ 7.8537241, 47.533715 ], + [ 7.853556, 47.5335539 ], + [ 7.8535425, 47.5335415 ], + [ 7.8535283, 47.5335295 ], + [ 7.8535134, 47.5335178 ], + [ 7.8534979, 47.5335066 ], + [ 7.8534818, 47.5334957 ], + [ 7.8534652, 47.5334852 ], + [ 7.8534479, 47.5334752 ], + [ 7.8534301, 47.5334656 ], + [ 7.8534119, 47.5334564 ], + [ 7.8533931, 47.533447699999996 ], + [ 7.8531962, 47.5333592 ], + [ 7.8531768, 47.5333502 ], + [ 7.8531578, 47.5333408 ], + [ 7.8531394, 47.5333309 ], + [ 7.8531215, 47.5333205 ], + [ 7.8531040999999995, 47.5333097 ], + [ 7.8530874, 47.5332985 ], + [ 7.8530712, 47.5332868 ], + [ 7.8530557, 47.5332748 ], + [ 7.8530408, 47.5332625 ], + [ 7.8530267, 47.5332497 ], + [ 7.8530131999999995, 47.5332366 ], + [ 7.8530004, 47.5332232 ], + [ 7.8525367, 47.5327155 ], + [ 7.8525054, 47.5326817 ], + [ 7.8524733, 47.5326482 ], + [ 7.8524405, 47.5326151 ], + [ 7.8524069999999995, 47.5325822 ], + [ 7.8523727999999995, 47.5325498 ], + [ 7.8523378, 47.5325176 ], + [ 7.8523022000000005, 47.5324859 ], + [ 7.8522658, 47.5324545 ], + [ 7.851927, 47.532167 ], + [ 7.8517418, 47.5319666 ], + [ 7.851722, 47.5319446 ], + [ 7.8517029, 47.5319223 ], + [ 7.8516846000000005, 47.5318997 ], + [ 7.8516669, 47.5318769 ], + [ 7.85165, 47.5318538 ], + [ 7.8516338, 47.5318305 ], + [ 7.8516183, 47.531807 ], + [ 7.8513483, 47.5313863 ], + [ 7.8511816, 47.5310723 ], + [ 7.8508225, 47.5305524 ], + [ 7.8504601, 47.5301519 ], + [ 7.8500225, 47.5296702 ], + [ 7.849862, 47.5295228 ], + [ 7.8498331, 47.5294958 ], + [ 7.8498051, 47.5294685 ], + [ 7.8497777, 47.5294408 ], + [ 7.8497512, 47.5294128 ], + [ 7.8497254, 47.5293844 ], + [ 7.8497004, 47.529355699999996 ], + [ 7.8496761, 47.5293268 ], + [ 7.8496527, 47.5292975 ], + [ 7.849633, 47.5292729 ], + [ 7.8496125, 47.5292486 ], + [ 7.8495913999999996, 47.5292245 ], + [ 7.8495696, 47.5292008 ], + [ 7.849547, 47.5291773 ], + [ 7.8495238, 47.5291542 ], + [ 7.8494999, 47.5291314 ], + [ 7.8494754, 47.5291089 ], + [ 7.8494502, 47.5290867 ], + [ 7.8494243, 47.5290649 ], + [ 7.8494022, 47.5290471 ], + [ 7.8493793, 47.5290297 ], + [ 7.8493558, 47.5290126 ], + [ 7.8493316, 47.5289961 ], + [ 7.8493069, 47.5289799 ], + [ 7.8492815, 47.5289642 ], + [ 7.8492555, 47.5289489 ], + [ 7.8492289, 47.5289341 ], + [ 7.8492018, 47.5289198 ], + [ 7.8491742, 47.5289059 ], + [ 7.849146, 47.5288925 ], + [ 7.8491173, 47.5288797 ], + [ 7.8490882, 47.5288673 ], + [ 7.8490585, 47.5288555 ], + [ 7.8487754, 47.5287449 ], + [ 7.8487443, 47.5287326 ], + [ 7.8487135, 47.5287199 ], + [ 7.8486831, 47.5287068 ], + [ 7.848653, 47.5286934 ], + [ 7.8486233, 47.5286795 ], + [ 7.848594, 47.5286654 ], + [ 7.8477925, 47.5282694 ], + [ 7.8477572, 47.5282523 ], + [ 7.8477215000000005, 47.5282358 ], + [ 7.8476852, 47.5282196 ], + [ 7.8476485, 47.528204 ], + [ 7.8476113, 47.5281889 ], + [ 7.8475737, 47.5281743 ], + [ 7.8475357, 47.5281601 ], + [ 7.8474973, 47.5281465 ], + [ 7.8474585, 47.5281334 ], + [ 7.8472205, 47.5280552 ], + [ 7.8467566, 47.5279824 ], + [ 7.846666, 47.527954199999996 ], + [ 7.8465997, 47.5279032 ], + [ 7.8465474, 47.5278831 ], + [ 7.8462024, 47.5279662 ], + [ 7.8461883, 47.5279699 ], + [ 7.8461745, 47.5279743 ], + [ 7.8461612, 47.5279792 ], + [ 7.8461483, 47.5279846 ], + [ 7.8461359999999996, 47.5279906 ], + [ 7.8461242, 47.5279971 ], + [ 7.846113, 47.5280041 ], + [ 7.8461025, 47.5280115 ], + [ 7.8460927, 47.5280193 ], + [ 7.8460836, 47.5280276 ], + [ 7.8460753, 47.5280362 ], + [ 7.8460677, 47.528045 ], + [ 7.8460609, 47.5280541 ], + [ 7.846055, 47.5280635 ], + [ 7.8460499, 47.5280731 ], + [ 7.8460457, 47.5280829 ], + [ 7.8460424, 47.5280929 ], + [ 7.8460401, 47.5281029 ], + [ 7.8460386, 47.5281131 ], + [ 7.846038, 47.5281233 ], + [ 7.8460384, 47.5281335 ], + [ 7.8460397, 47.5281437 ], + [ 7.8460637, 47.5282648 ], + [ 7.8460664, 47.5282816 ], + [ 7.8460683, 47.5282984 ], + [ 7.8460693, 47.5283153 ], + [ 7.8460695, 47.5283321 ], + [ 7.8460688, 47.528349 ], + [ 7.8460672, 47.5283659 ], + [ 7.8460648, 47.5283827 ], + [ 7.8460615, 47.5283994 ], + [ 7.8460574, 47.528416 ], + [ 7.8460524, 47.5284326 ], + [ 7.8460465, 47.528449 ], + [ 7.8460322, 47.5284854 ], + [ 7.8460171, 47.5285217 ], + [ 7.8460012, 47.5285578 ], + [ 7.8459845999999995, 47.5285938 ], + [ 7.8459672, 47.5286296 ], + [ 7.8459491, 47.5286653 ], + [ 7.8459302, 47.5287008 ], + [ 7.8459105000000005, 47.5287361 ], + [ 7.8456755, 47.5291282 ], + [ 7.8455201, 47.5293409 ], + [ 7.8455135, 47.5293505 ], + [ 7.8455075999999995, 47.5293603 ], + [ 7.8455025, 47.5293702 ], + [ 7.845498, 47.5293803 ], + [ 7.8454943, 47.5293906 ], + [ 7.8454913, 47.529401 ], + [ 7.8454891, 47.5294114 ], + [ 7.8454877, 47.5294219 ], + [ 7.8460129, 47.5295207 ], + [ 7.845956, 47.5301578 ], + [ 7.8458412, 47.5304285 ], + [ 7.845942, 47.5305433 ], + [ 7.845792, 47.530659299999996 ], + [ 7.8456145, 47.5305803 ], + [ 7.8454552, 47.5305537 ], + [ 7.8454508, 47.5305692 ], + [ 7.8454455, 47.5305846 ], + [ 7.8454394, 47.5305998 ], + [ 7.8454324, 47.5306149 ], + [ 7.8454245, 47.5306298 ], + [ 7.8454158, 47.5306444 ], + [ 7.8454063, 47.5306589 ], + [ 7.845396, 47.530673 ], + [ 7.8453849, 47.5306869 ], + [ 7.845373, 47.5307005 ], + [ 7.8453517, 47.5307236 ], + [ 7.8453297, 47.5307463 ], + [ 7.8453069, 47.5307686 ], + [ 7.8452834, 47.5307907 ], + [ 7.8452592, 47.5308124 ], + [ 7.8452342999999995, 47.5308337 ], + [ 7.8452088, 47.5308546 ], + [ 7.8451825, 47.5308752 ], + [ 7.8451556, 47.5308954 ], + [ 7.8450291, 47.5309734 ], + [ 7.844903, 47.5310359 ], + [ 7.8448933, 47.5310402 ], + [ 7.8448831, 47.5310441 ], + [ 7.8448725, 47.5310474 ], + [ 7.8448616, 47.5310501 ], + [ 7.8448504, 47.5310522 ], + [ 7.844839, 47.5310537 ], + [ 7.8448274, 47.5310546 ], + [ 7.8448158, 47.5310548 ], + [ 7.8448042000000004, 47.5310544 ], + [ 7.8447926, 47.5310534 ], + [ 7.8445947, 47.5310311 ], + [ 7.8444712, 47.5310344 ], + [ 7.8443097999999996, 47.5310655 ], + [ 7.8441569, 47.5311173 ], + [ 7.8438243, 47.5313215 ], + [ 7.843664, 47.5314591 ], + [ 7.8435175, 47.5316089 ], + [ 7.8432031, 47.5318688 ], + [ 7.8426389, 47.53259 ], + [ 7.842632, 47.5325996 ], + [ 7.8426259, 47.5326094 ], + [ 7.8426207, 47.5326195 ], + [ 7.8426164, 47.5326298 ], + [ 7.842613, 47.5326402 ], + [ 7.8426105, 47.5326507 ], + [ 7.8426089, 47.5326613 ], + [ 7.8426083, 47.532672 ], + [ 7.8426086, 47.5326827 ], + [ 7.8426098, 47.5326933 ], + [ 7.842612, 47.5327039 ], + [ 7.842615, 47.5327143 ], + [ 7.8426189, 47.5327246 ], + [ 7.8426237, 47.5327348 ], + [ 7.8426294, 47.5327447 ], + [ 7.842636, 47.5327544 ], + [ 7.8426434, 47.5327638 ], + [ 7.8426516, 47.5327729 ], + [ 7.8426606, 47.5327817 ], + [ 7.8426703, 47.5327901 ], + [ 7.8426807, 47.532798 ], + [ 7.8426919, 47.5328056 ], + [ 7.8428828, 47.5329265 ], + [ 7.8431102, 47.5330129 ], + [ 7.843476, 47.5330301 ], + [ 7.843498, 47.5330628 ], + [ 7.8435162, 47.5330897 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns270", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Sonnenberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Sonnenberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Sonnenberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Sonnenberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5505482, 47.4424153 ], + [ 7.5504821, 47.4435704 ], + [ 7.5508448, 47.4436215 ], + [ 7.5511558999999995, 47.4436585 ], + [ 7.5515988, 47.4436765 ], + [ 7.5518976, 47.4436861 ], + [ 7.5524234, 47.4436771 ], + [ 7.5529922, 47.4436414 ], + [ 7.5533691, 47.4436012 ], + [ 7.5538009, 47.4435358 ], + [ 7.5540785, 47.4434806 ], + [ 7.5545636, 47.443362 ], + [ 7.554919, 47.443258 ], + [ 7.5550426, 47.4432173 ], + [ 7.5554232, 47.4430903 ], + [ 7.5538442, 47.4418053 ], + [ 7.5531436, 47.4422462 ], + [ 7.5527931, 47.4423656 ], + [ 7.5523547, 47.4424255 ], + [ 7.5516182, 47.4424857 ], + [ 7.5509516, 47.442415 ], + [ 7.5505657, 47.4424034 ], + [ 7.5505482, 47.4424153 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr112", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Birsmatten", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Birsmatten", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Birsmatten", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Birsmatten", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.2364646, 46.2484926 ], + [ 6.236472, 46.2484893 ], + [ 6.2373344, 46.2476229 ], + [ 6.2376533, 46.2465934 ], + [ 6.2373801, 46.2455577 ], + [ 6.2365564, 46.2446733 ], + [ 6.2353076, 46.2440749 ], + [ 6.2338238, 46.2438536 ], + [ 6.2330871, 46.2439472 ], + [ 6.2323763, 46.2431839 ], + [ 6.2311276, 46.2425855 ], + [ 6.2296439, 46.2423641 ], + [ 6.228151, 46.2425536 ], + [ 6.2268763, 46.243125 ], + [ 6.2260137, 46.2439914 ], + [ 6.2256946, 46.2450208 ], + [ 6.2259676, 46.2460566 ], + [ 6.2267912, 46.2469411 ], + [ 6.22804, 46.2475395 ], + [ 6.2295238, 46.2477609 ], + [ 6.2295319, 46.2477598 ], + [ 6.2296154, 46.2480768 ], + [ 6.2304391, 46.2489612 ], + [ 6.231688, 46.2495596 ], + [ 6.2331719, 46.2497809 ], + [ 6.2346649, 46.2495914 ], + [ 6.2359397, 46.2490199 ], + [ 6.2364646, 46.2484926 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-32", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7270492, 47.3798266 ], + [ 7.7272029, 47.3802226 ], + [ 7.7273909, 47.3802978 ], + [ 7.7276039, 47.3801345 ], + [ 7.7278933, 47.3799431 ], + [ 7.7281565, 47.3797879 ], + [ 7.7284683, 47.3796181 ], + [ 7.7287274, 47.379488 ], + [ 7.7289607, 47.3794123 ], + [ 7.7291069, 47.3793521 ], + [ 7.7292062, 47.3792795 ], + [ 7.7293161, 47.3791646 ], + [ 7.7294501, 47.37901 ], + [ 7.7295958, 47.3788538 ], + [ 7.7296873, 47.378767 ], + [ 7.7297902, 47.3786472 ], + [ 7.7299864, 47.3785 ], + [ 7.7303505, 47.3782239 ], + [ 7.7308101, 47.377894 ], + [ 7.7310316, 47.3779491 ], + [ 7.7312024, 47.377977 ], + [ 7.7314185, 47.3779745 ], + [ 7.7315933999999995, 47.3779479 ], + [ 7.7317681, 47.377935 ], + [ 7.7319889, 47.3779447 ], + [ 7.7321314999999995, 47.3779446 ], + [ 7.7322413999999995, 47.3779223 ], + [ 7.732424, 47.3778886 ], + [ 7.7325814, 47.3778562 ], + [ 7.7326739, 47.3778404 ], + [ 7.7327566, 47.3778385 ], + [ 7.7329342, 47.3778104 ], + [ 7.7329761999999995, 47.3778086 ], + [ 7.7331, 47.3778119 ], + [ 7.7332278, 47.3778317 ], + [ 7.7333696, 47.3778385 ], + [ 7.7335255, 47.3778229 ], + [ 7.7336859, 47.3777858 ], + [ 7.7338056, 47.3777156 ], + [ 7.7339028, 47.3776532 ], + [ 7.7340292, 47.3775974 ], + [ 7.7342984999999995, 47.3775151 ], + [ 7.734266, 47.3773597 ], + [ 7.7332169, 47.3774559 ], + [ 7.7325679, 47.3775177 ], + [ 7.7320369, 47.3775705 ], + [ 7.7315416, 47.3776272 ], + [ 7.7313056, 47.3776476 ], + [ 7.7311476, 47.3776598 ], + [ 7.7310336, 47.3776608 ], + [ 7.7309672, 47.3776515 ], + [ 7.7308626, 47.3776001 ], + [ 7.7305937, 47.3774424 ], + [ 7.730397, 47.377331 ], + [ 7.7302131, 47.3772448 ], + [ 7.7300793, 47.3771869 ], + [ 7.7300061, 47.3771587 ], + [ 7.7299289, 47.3771569 ], + [ 7.7298969, 47.3771547 ], + [ 7.7298278, 47.3771485 ], + [ 7.7297829, 47.3771406 ], + [ 7.7297094, 47.3771255 ], + [ 7.7296703, 47.377119 ], + [ 7.7296309999999995, 47.3771192 ], + [ 7.7295922, 47.3771279 ], + [ 7.7294905, 47.3771713 ], + [ 7.7292615, 47.3772547 ], + [ 7.7290764, 47.3773257 ], + [ 7.7288864, 47.3773982 ], + [ 7.7287502, 47.3774568 ], + [ 7.7286063, 47.3775531 ], + [ 7.7285471, 47.3776249 ], + [ 7.7284727, 47.3777731 ], + [ 7.7283467, 47.3780155 ], + [ 7.7282715, 47.3781717 ], + [ 7.728338, 47.3782883 ], + [ 7.7284352, 47.3783186 ], + [ 7.728557, 47.3783444 ], + [ 7.7286549, 47.3783646 ], + [ 7.7289321, 47.3784156 ], + [ 7.7290552, 47.3784514 ], + [ 7.729113, 47.3784893 ], + [ 7.7291479, 47.3785476 ], + [ 7.7291408, 47.3786045 ], + [ 7.7288949, 47.3787949 ], + [ 7.7287453, 47.378931 ], + [ 7.7286228, 47.3790217 ], + [ 7.7284606, 47.3791177 ], + [ 7.7283066, 47.3791986 ], + [ 7.7281403, 47.3793038 ], + [ 7.7278911, 47.3794787 ], + [ 7.7277243, 47.3795941 ], + [ 7.7275576, 47.3796959 ], + [ 7.7273107, 47.3797847 ], + [ 7.7270492, 47.3798266 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns285", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Brocheni Flue", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Brocheni Flue", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Brocheni Flue", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Brocheni Flue", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5507789, 47.5059947 ], + [ 7.5513627, 47.5060146 ], + [ 7.5514028, 47.5060161 ], + [ 7.5514419, 47.5060174 ], + [ 7.5514756, 47.5060185 ], + [ 7.5515057, 47.5059178 ], + [ 7.5514828, 47.5059135 ], + [ 7.5514869000000004, 47.5058995 ], + [ 7.5515064, 47.5059017 ], + [ 7.5515115, 47.5057895 ], + [ 7.5515163, 47.5057259 ], + [ 7.5515245, 47.5056158 ], + [ 7.5515196, 47.5052836 ], + [ 7.5514756, 47.505286 ], + [ 7.5512963, 47.505291 ], + [ 7.5512862, 47.5052909 ], + [ 7.55126, 47.5052905 ], + [ 7.5512372, 47.50529 ], + [ 7.5513686, 47.5055473 ], + [ 7.5513899, 47.5056119 ], + [ 7.5514168999999995, 47.5056699 ], + [ 7.5514087, 47.5057173 ], + [ 7.5513879, 47.5058874 ], + [ 7.5513953, 47.5058885 ], + [ 7.5514027, 47.5058897 ], + [ 7.55141, 47.5058909 ], + [ 7.5514063, 47.5059049 ], + [ 7.5513995, 47.5059044 ], + [ 7.5513927, 47.5059038 ], + [ 7.5513859, 47.5059032 ], + [ 7.5513713, 47.5059017 ], + [ 7.5513566999999995, 47.5059002 ], + [ 7.5513422, 47.5058985 ], + [ 7.5512957, 47.5058924 ], + [ 7.5512497, 47.5058851 ], + [ 7.551204, 47.5058766 ], + [ 7.551144, 47.505866 ], + [ 7.5510839, 47.5058554 ], + [ 7.5510238, 47.505845 ], + [ 7.5509641, 47.5058347 ], + [ 7.5509044, 47.5058245 ], + [ 7.5508446, 47.5058145 ], + [ 7.5508091, 47.50581 ], + [ 7.550774, 47.5058041 ], + [ 7.5507395, 47.5057968 ], + [ 7.5507079, 47.5057888 ], + [ 7.550677, 47.5057796 ], + [ 7.5506469, 47.5057693 ], + [ 7.5506245, 47.5057623 ], + [ 7.5506024, 47.5057547 ], + [ 7.5505808, 47.5057465 ], + [ 7.5505668, 47.5057408 ], + [ 7.550553, 47.5057349 ], + [ 7.5505394, 47.5057287 ], + [ 7.5505301, 47.505721199999996 ], + [ 7.5505203, 47.5057139 ], + [ 7.5505101, 47.5057069 ], + [ 7.5504999, 47.5057005 ], + [ 7.5504893, 47.5056943 ], + [ 7.5504785, 47.5056884 ], + [ 7.5504655, 47.5056846 ], + [ 7.5504524, 47.505681 ], + [ 7.5504392, 47.5056777 ], + [ 7.5504083, 47.5056706 ], + [ 7.550377, 47.5056645 ], + [ 7.5503453, 47.5056595 ], + [ 7.5503085, 47.5056518 ], + [ 7.5502717, 47.5056441 ], + [ 7.5502348999999995, 47.5056365 ], + [ 7.5501948, 47.5056282 ], + [ 7.5501547, 47.5056201 ], + [ 7.5501146, 47.505612 ], + [ 7.5500914, 47.5056078 ], + [ 7.5500678, 47.5056048 ], + [ 7.5500439, 47.5056031 ], + [ 7.5500264, 47.5056026 ], + [ 7.5500088, 47.5056028 ], + [ 7.5499914, 47.5056037 ], + [ 7.5499745, 47.5056061 ], + [ 7.5499574, 47.505607499999996 ], + [ 7.5499402, 47.505608 ], + [ 7.5499221, 47.5056076 ], + [ 7.5499042, 47.5056061 ], + [ 7.5498864999999995, 47.5056036 ], + [ 7.5498692, 47.5056001 ], + [ 7.5498288, 47.5055934 ], + [ 7.5497885, 47.5055867 ], + [ 7.5497481, 47.5055801 ], + [ 7.5497026, 47.5055726 ], + [ 7.5496571, 47.5055651 ], + [ 7.5496116, 47.5055576 ], + [ 7.5495647, 47.5055496 ], + [ 7.5495178, 47.5055418 ], + [ 7.5494707, 47.5055342 ], + [ 7.5494235, 47.5055266 ], + [ 7.5493762, 47.5055192 ], + [ 7.5493288, 47.505512 ], + [ 7.5492824, 47.5055036 ], + [ 7.5492357, 47.5054957 ], + [ 7.5491888, 47.5054882 ], + [ 7.5491395, 47.505481 ], + [ 7.54909, 47.5054743 ], + [ 7.5490403, 47.5054682 ], + [ 7.54901, 47.5054632 ], + [ 7.5489794, 47.5054587 ], + [ 7.5489487, 47.5054548 ], + [ 7.548917, 47.5054512 ], + [ 7.5488851, 47.505448200000004 ], + [ 7.5488531, 47.5054457 ], + [ 7.5488441, 47.505446 ], + [ 7.548835, 47.5054458 ], + [ 7.5488261, 47.5054452 ], + [ 7.5488172, 47.505444 ], + [ 7.5488069, 47.5054423 ], + [ 7.5488001, 47.5054401 ], + [ 7.5487919, 47.5054374 ], + [ 7.5487842, 47.5054343 ], + [ 7.5487766, 47.5054306 ], + [ 7.5487696, 47.5054266 ], + [ 7.5487631, 47.5054221 ], + [ 7.5487572, 47.5054173 ], + [ 7.5487519, 47.5054121 ], + [ 7.5487473, 47.5054043 ], + [ 7.5487425, 47.5053965 ], + [ 7.5487378, 47.5053888 ], + [ 7.5487328, 47.5053808 ], + [ 7.5487278, 47.5053729 ], + [ 7.5487227, 47.505365 ], + [ 7.5487096000000005, 47.5053485 ], + [ 7.5486947, 47.5053327 ], + [ 7.5486782, 47.5053176 ], + [ 7.5486612, 47.5053043 ], + [ 7.548643, 47.5052918 ], + [ 7.5486235, 47.5052802 ], + [ 7.5485997000000005, 47.5052697 ], + [ 7.5485754, 47.5052598 ], + [ 7.5485505, 47.5052506 ], + [ 7.5485, 47.5052346 ], + [ 7.5484478, 47.5052213 ], + [ 7.5483942, 47.5052109 ], + [ 7.5483396, 47.5052033 ], + [ 7.5482859, 47.5051936 ], + [ 7.5482324, 47.5051832 ], + [ 7.5481793, 47.5051721 ], + [ 7.5481312, 47.5051614 ], + [ 7.5480936, 47.5051526 ], + [ 7.5480833, 47.5051502 ], + [ 7.5480357, 47.5051384 ], + [ 7.5479134, 47.5051042 ], + [ 7.5477778, 47.505072 ], + [ 7.5476201, 47.5050379 ], + [ 7.5473136, 47.5049745 ], + [ 7.547275, 47.5049606 ], + [ 7.5472346, 47.5049492 ], + [ 7.5471927, 47.5049406 ], + [ 7.5471499, 47.5049347 ], + [ 7.5470948, 47.5049312 ], + [ 7.5470835, 47.5049311 ], + [ 7.5470722, 47.5049312 ], + [ 7.5470608, 47.5049314 ], + [ 7.547061, 47.5049382 ], + [ 7.5470572, 47.5049434 ], + [ 7.5470526, 47.5049483 ], + [ 7.5470475, 47.504953 ], + [ 7.5470417, 47.5049573 ], + [ 7.5470354, 47.5049612 ], + [ 7.5470287, 47.5049648 ], + [ 7.5470214, 47.5049679 ], + [ 7.5470138, 47.5049706 ], + [ 7.5470059, 47.5049728 ], + [ 7.5469938, 47.5049747 ], + [ 7.5469991, 47.5050356 ], + [ 7.5469072, 47.505011 ], + [ 7.5467995, 47.5050526 ], + [ 7.5466655, 47.5049722 ], + [ 7.5464631, 47.504959 ], + [ 7.5462244, 47.5050091 ], + [ 7.5460096, 47.5050356 ], + [ 7.5458131999999996, 47.5051155 ], + [ 7.5456145, 47.5051347 ], + [ 7.5454346999999995, 47.5050901 ], + [ 7.5452194, 47.5050875 ], + [ 7.5452901, 47.5048853 ], + [ 7.5452525999999995, 47.5047863 ], + [ 7.5453919, 47.5045046 ], + [ 7.545338, 47.5044498 ], + [ 7.5450538, 47.5044823 ], + [ 7.5448239, 47.5045899 ], + [ 7.5447248, 47.5046447 ], + [ 7.5445918, 47.5046611 ], + [ 7.5444125, 47.5047262 ], + [ 7.5443859, 47.5046333 ], + [ 7.5443979, 47.5045736 ], + [ 7.5444663, 47.5044694 ], + [ 7.544423, 47.5043761 ], + [ 7.5443952, 47.5043743 ], + [ 7.5441799, 47.5043623 ], + [ 7.5440444, 47.5043953 ], + [ 7.54391, 47.5043454 ], + [ 7.5437579, 47.5043392 ], + [ 7.5437116, 47.5044346 ], + [ 7.5436011, 47.5044333 ], + [ 7.5435668, 47.5043168 ], + [ 7.5434698000000004, 47.5042491 ], + [ 7.5433749, 47.5042486 ], + [ 7.5433099, 47.5042803 ], + [ 7.5432065, 47.5044163 ], + [ 7.5430095999999995, 47.5043814 ], + [ 7.5425947, 47.5044438 ], + [ 7.5425329, 47.504319699999996 ], + [ 7.5423632, 47.5042843 ], + [ 7.5422602, 47.5042104 ], + [ 7.5420077, 47.5041563 ], + [ 7.541831, 47.5042175 ], + [ 7.5417506, 47.5043276 ], + [ 7.5414034999999995, 47.5044429 ], + [ 7.5412064, 47.5045811 ], + [ 7.5410693, 47.5045233 ], + [ 7.5409825999999995, 47.504515 ], + [ 7.5404618, 47.504658 ], + [ 7.5403409, 47.5046556 ], + [ 7.5399198, 47.5047694 ], + [ 7.5397146, 47.5047798 ], + [ 7.539544, 47.5048197 ], + [ 7.5394365, 47.5049531 ], + [ 7.5393218, 47.5049757 ], + [ 7.5390397, 47.5049983 ], + [ 7.5387299, 47.5049669 ], + [ 7.5386033999999995, 47.505 ], + [ 7.5385433, 47.5051415 ], + [ 7.5384082, 47.5052346 ], + [ 7.5382739, 47.5052454 ], + [ 7.5383028, 47.5050958 ], + [ 7.5382781, 47.5049978 ], + [ 7.5381442, 47.5049531 ], + [ 7.5380183, 47.504945 ], + [ 7.5376823, 47.5049479 ], + [ 7.5375691, 47.5049198 ], + [ 7.5374874, 47.5049286 ], + [ 7.5373675, 47.5049923 ], + [ 7.5371688, 47.5049216 ], + [ 7.5370683, 47.5049298 ], + [ 7.5369243, 47.5050318 ], + [ 7.5368809, 47.5051241 ], + [ 7.5367925, 47.5051331 ], + [ 7.5366684, 47.5049762 ], + [ 7.5365604, 47.504922 ], + [ 7.5364567000000005, 47.5049603 ], + [ 7.5363554, 47.505017 ], + [ 7.5361459, 47.5050094 ], + [ 7.5359861, 47.5050364 ], + [ 7.5359924, 47.505072 ], + [ 7.5360045, 47.5051404 ], + [ 7.5360137, 47.5051681 ], + [ 7.536111, 47.5051155 ], + [ 7.5362206, 47.5050815 ], + [ 7.5362922999999995, 47.5050959 ], + [ 7.5363445, 47.50512 ], + [ 7.536372, 47.5051282 ], + [ 7.5363993, 47.5051224 ], + [ 7.5364356, 47.5050742 ], + [ 7.5365052, 47.5050129 ], + [ 7.5365269999999995, 47.5049971 ], + [ 7.5366016, 47.5050124 ], + [ 7.5366688, 47.5050817 ], + [ 7.5366764, 47.5050868 ], + [ 7.5367885999999995, 47.5052601 ], + [ 7.536822, 47.5052691 ], + [ 7.5369141, 47.5052334 ], + [ 7.5369174, 47.5052291 ], + [ 7.5369706, 47.5051034 ], + [ 7.5370108, 47.5050391 ], + [ 7.5371519, 47.5049871 ], + [ 7.5371762, 47.5049837 ], + [ 7.537301, 47.505076 ], + [ 7.5373067, 47.5050894 ], + [ 7.5373967, 47.5050855 ], + [ 7.5374209, 47.5050728 ], + [ 7.537513, 47.5049928 ], + [ 7.5380205, 47.5050046 ], + [ 7.5381675999999995, 47.5050225 ], + [ 7.5381764, 47.5050201 ], + [ 7.5382009, 47.5050538 ], + [ 7.5381635, 47.5051665 ], + [ 7.5381776, 47.5052162 ], + [ 7.5382055, 47.5053143 ], + [ 7.5382679, 47.5053583 ], + [ 7.5384632, 47.5053357 ], + [ 7.5385618, 47.5052424 ], + [ 7.5386027, 47.505196 ], + [ 7.5386927, 47.5050383 ], + [ 7.5388806, 47.5050429 ], + [ 7.5389975, 47.5050587 ], + [ 7.5390239999999995, 47.5050846 ], + [ 7.5390166, 47.5051449 ], + [ 7.539063, 47.5051736 ], + [ 7.5393239, 47.5051094 ], + [ 7.5394189, 47.5050388 ], + [ 7.5395192, 47.5050015 ], + [ 7.5395823, 47.5048767 ], + [ 7.5399979, 47.5048142 ], + [ 7.5400323, 47.5048031 ], + [ 7.5401634, 47.5047609 ], + [ 7.5403998, 47.5047009 ], + [ 7.5405668, 47.5047147 ], + [ 7.5406948, 47.5046485 ], + [ 7.5410075, 47.5045644 ], + [ 7.5410741, 47.504660200000004 ], + [ 7.5411302, 47.5046733 ], + [ 7.5412284, 47.5046314 ], + [ 7.5412502, 47.5046221 ], + [ 7.5414613, 47.5044755 ], + [ 7.5416411, 47.5044334 ], + [ 7.5418189, 47.5043577 ], + [ 7.5418723, 47.5042617 ], + [ 7.5419589, 47.504217 ], + [ 7.5420841, 47.5042043 ], + [ 7.5421098, 47.5042185 ], + [ 7.5422028, 47.5042481 ], + [ 7.5422239, 47.5042816 ], + [ 7.542267, 47.5043499 ], + [ 7.5424529, 47.504372599999996 ], + [ 7.542477, 47.5044314 ], + [ 7.5425149000000005, 47.504524 ], + [ 7.5426322, 47.5045003 ], + [ 7.5430371, 47.5044391 ], + [ 7.5432049, 47.5044736 ], + [ 7.5432182999999995, 47.5044763 ], + [ 7.5432413, 47.5044698 ], + [ 7.5433151, 47.5043762 ], + [ 7.5433157, 47.5043588 ], + [ 7.5433386, 47.5043464 ], + [ 7.5433759, 47.5042993 ], + [ 7.5434988, 47.5043407 ], + [ 7.5435061, 47.5043673 ], + [ 7.5435403999999995, 47.5044771 ], + [ 7.5436172, 47.5045247 ], + [ 7.5436227, 47.5045244 ], + [ 7.5437, 47.5045168 ], + [ 7.5437533, 47.5044818 ], + [ 7.5438304, 47.5043908 ], + [ 7.5439338, 47.504405 ], + [ 7.5440301, 47.5044738 ], + [ 7.5441776, 47.5044074 ], + [ 7.5442205, 47.5044117 ], + [ 7.5443618, 47.5044256 ], + [ 7.5443838, 47.5044521 ], + [ 7.5443614, 47.5045542 ], + [ 7.5443344, 47.5046979 ], + [ 7.5443458, 47.5047278 ], + [ 7.5443523, 47.5047395 ], + [ 7.544403, 47.5047799 ], + [ 7.5444743, 47.5047634 ], + [ 7.544625, 47.5047283 ], + [ 7.5447822, 47.5047117 ], + [ 7.5448215, 47.504674 ], + [ 7.5448872, 47.50461 ], + [ 7.5450323, 47.5045495 ], + [ 7.5450985, 47.5045217 ], + [ 7.5451249, 47.5045188 ], + [ 7.5451846, 47.5045125 ], + [ 7.545247, 47.5045133 ], + [ 7.5452874, 47.5045138 ], + [ 7.5453062, 47.5045418 ], + [ 7.5452501, 47.5045944 ], + [ 7.5452405, 47.5046023 ], + [ 7.5452211, 47.5046378 ], + [ 7.5451975000000004, 47.5047408 ], + [ 7.5451951, 47.5047515 ], + [ 7.5451536, 47.5047838 ], + [ 7.5451371, 47.5047966 ], + [ 7.5451488, 47.5048114 ], + [ 7.5452117, 47.5048914 ], + [ 7.5452047, 47.5049241 ], + [ 7.5450424, 47.5049437 ], + [ 7.5450225, 47.5049559 ], + [ 7.5449905, 47.505004 ], + [ 7.5450419, 47.5050938 ], + [ 7.5450712, 47.5051561 ], + [ 7.5451128, 47.5051558 ], + [ 7.5452903, 47.5051548 ], + [ 7.5454278, 47.5051497 ], + [ 7.5454751, 47.505148 ], + [ 7.5455061, 47.5051655 ], + [ 7.5455348, 47.5051817 ], + [ 7.545577, 47.5051798 ], + [ 7.5457726, 47.5051709 ], + [ 7.5459995, 47.505088 ], + [ 7.5460531, 47.5050789 ], + [ 7.546074, 47.5050703 ], + [ 7.5463071, 47.5050354 ], + [ 7.5465011, 47.5050005 ], + [ 7.5465286, 47.5050022 ], + [ 7.5466118, 47.5050055 ], + [ 7.54662, 47.5050088 ], + [ 7.5466726, 47.5050187 ], + [ 7.546709, 47.5050443 ], + [ 7.5467792, 47.5050936 ], + [ 7.5468036, 47.5051018 ], + [ 7.546827, 47.5050913 ], + [ 7.5468943, 47.5050612 ], + [ 7.5469416, 47.505066 ], + [ 7.5469927, 47.505072 ], + [ 7.5470927, 47.5051242 ], + [ 7.5471327, 47.505336 ], + [ 7.5472884, 47.5054086 ], + [ 7.5472849, 47.5054291 ], + [ 7.54727, 47.5054462 ], + [ 7.5471967, 47.5055307 ], + [ 7.5473126, 47.5055589 ], + [ 7.5474828, 47.5055662 ], + [ 7.5475103, 47.5055553 ], + [ 7.5475369, 47.5055447 ], + [ 7.5476065, 47.5054969 ], + [ 7.5476649, 47.5055271 ], + [ 7.5476849, 47.5055348 ], + [ 7.5477427, 47.505599 ], + [ 7.5477606, 47.5056005 ], + [ 7.5478495, 47.5056503 ], + [ 7.5478876, 47.5056508 ], + [ 7.5479275, 47.5056258 ], + [ 7.5480339, 47.5055494 ], + [ 7.5480691, 47.5055313 ], + [ 7.5481381, 47.5054852 ], + [ 7.5481565, 47.5054863 ], + [ 7.548168, 47.5054804 ], + [ 7.5482212, 47.50549 ], + [ 7.5483996, 47.5055222 ], + [ 7.5484821, 47.5055444 ], + [ 7.5485231, 47.5055554 ], + [ 7.5485281, 47.5055723 ], + [ 7.5485491, 47.5056429 ], + [ 7.5485925, 47.505656 ], + [ 7.5486292, 47.50565 ], + [ 7.5487213, 47.5056351 ], + [ 7.5488249, 47.5056455 ], + [ 7.5489698, 47.5056585 ], + [ 7.5491472, 47.5057325 ], + [ 7.5492061, 47.5057634 ], + [ 7.5494316999999995, 47.5057486 ], + [ 7.5495859, 47.5058209 ], + [ 7.549658, 47.5058314 ], + [ 7.5498926, 47.5058222 ], + [ 7.5500696, 47.5058707 ], + [ 7.550187, 47.5059154 ], + [ 7.5502241, 47.5059315 ], + [ 7.5502763999999996, 47.5059471 ], + [ 7.5503059, 47.5059516 ], + [ 7.550347, 47.5059628 ], + [ 7.5504339, 47.5059712 ], + [ 7.5504494, 47.5059736 ], + [ 7.5505074, 47.5059772 ], + [ 7.5505867, 47.5059881 ], + [ 7.5507789, 47.5059947 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns191", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Birsig", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Birsig", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Birsig", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Birsig", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7502639, 47.4352752 ], + [ 7.749639, 47.4354587 ], + [ 7.7494807, 47.4355052 ], + [ 7.7489402, 47.435664 ], + [ 7.7488765, 47.4356859 ], + [ 7.7487342, 47.4357348 ], + [ 7.7482315, 47.4359073 ], + [ 7.7478543, 47.4361049 ], + [ 7.7477101, 47.4361804 ], + [ 7.7476217, 47.4362267 ], + [ 7.7476315, 47.4362316 ], + [ 7.7476586, 47.4362451 ], + [ 7.7482757, 47.4365529 ], + [ 7.7489044, 47.4368664 ], + [ 7.7497519, 47.4371687 ], + [ 7.7499075, 47.4372438 ], + [ 7.7499908, 47.4372839 ], + [ 7.7502359, 47.4370126 ], + [ 7.7503705, 47.4368626 ], + [ 7.7503777, 47.4368493 ], + [ 7.7503809, 47.4368425 ], + [ 7.7503835, 47.4368365 ], + [ 7.7503875, 47.4368268 ], + [ 7.7503966, 47.4368041 ], + [ 7.7504026, 47.4367882 ], + [ 7.7504058, 47.4367792 ], + [ 7.7504119, 47.436761 ], + [ 7.7504154, 47.4367497 ], + [ 7.7504174, 47.4367425 ], + [ 7.7504291, 47.4366929 ], + [ 7.7504398, 47.4366666 ], + [ 7.7504433, 47.4366579 ], + [ 7.7504466, 47.436649 ], + [ 7.7504485, 47.4366438 ], + [ 7.7504508, 47.4366371 ], + [ 7.7504523, 47.4366322 ], + [ 7.7504544, 47.4366246 ], + [ 7.7504564, 47.4366171 ], + [ 7.7504573, 47.4366124 ], + [ 7.7504581, 47.4366077 ], + [ 7.7504587, 47.4366029 ], + [ 7.7504604, 47.4365888 ], + [ 7.7504636, 47.4365651 ], + [ 7.7504641, 47.4365604 ], + [ 7.7504646, 47.4365556 ], + [ 7.7504649, 47.4365508 ], + [ 7.750466, 47.4365217 ], + [ 7.7504663, 47.4365169 ], + [ 7.7504672, 47.4365041 ], + [ 7.7504674, 47.436499 ], + [ 7.7504675, 47.436494 ], + [ 7.7504675, 47.4364889 ], + [ 7.7504673, 47.4364839 ], + [ 7.7504671, 47.4364789 ], + [ 7.750466, 47.4364659 ], + [ 7.7504657, 47.4364609 ], + [ 7.7504653, 47.436451 ], + [ 7.7504645, 47.4364311 ], + [ 7.7504639, 47.4364213 ], + [ 7.7504635, 47.4364163 ], + [ 7.750463, 47.4364115 ], + [ 7.7504623, 47.4364066 ], + [ 7.750461, 47.4363993 ], + [ 7.7504562, 47.4363749 ], + [ 7.7504529, 47.4363592 ], + [ 7.7504493, 47.4363435 ], + [ 7.7504456, 47.4363291 ], + [ 7.7504425, 47.4363165 ], + [ 7.7504387999999995, 47.4363022 ], + [ 7.7504356, 47.4362897 ], + [ 7.7504287, 47.4362641 ], + [ 7.7504255, 47.4362513 ], + [ 7.7504195, 47.4362287 ], + [ 7.7504183, 47.4362245 ], + [ 7.7504154, 47.4362145 ], + [ 7.7504142, 47.4362103 ], + [ 7.7504121, 47.4362019 ], + [ 7.7504082, 47.4361876 ], + [ 7.750405, 47.436175 ], + [ 7.7504010999999995, 47.4361608 ], + [ 7.7503982, 47.4361494 ], + [ 7.7503945, 47.4361338 ], + [ 7.7503913, 47.436118 ], + [ 7.7503904, 47.4361137 ], + [ 7.7503871, 47.4360935 ], + [ 7.7503853, 47.4360805 ], + [ 7.7503834, 47.4360688 ], + [ 7.7503811, 47.4360528 ], + [ 7.7503806, 47.4360484 ], + [ 7.7503801, 47.436044 ], + [ 7.7503787, 47.4360264 ], + [ 7.7503779, 47.4360176 ], + [ 7.7503741, 47.4359898 ], + [ 7.7503736, 47.4359853 ], + [ 7.7503732, 47.4359807 ], + [ 7.7503726, 47.4359714 ], + [ 7.7503722, 47.4359574 ], + [ 7.750372, 47.4359387 ], + [ 7.7503719, 47.4359199 ], + [ 7.7503721, 47.4359059 ], + [ 7.7503724, 47.4358966 ], + [ 7.7503729, 47.4358873 ], + [ 7.750374, 47.4358753 ], + [ 7.7503741999999995, 47.4358709 ], + [ 7.7503747, 47.435862 ], + [ 7.7503755, 47.4358398 ], + [ 7.750376, 47.435831 ], + [ 7.7503771, 47.4358189 ], + [ 7.7503773, 47.4358143 ], + [ 7.7503776, 47.4358096 ], + [ 7.7503778, 47.4358003 ], + [ 7.7503779, 47.4357909 ], + [ 7.7503779, 47.4357768 ], + [ 7.7503777, 47.4357437 ], + [ 7.7503774, 47.43571 ], + [ 7.7503774, 47.4356854 ], + [ 7.7503775, 47.4356756 ], + [ 7.7503777, 47.4356658 ], + [ 7.7503782, 47.435656 ], + [ 7.7503793, 47.435643 ], + [ 7.7503796, 47.435638 ], + [ 7.7503798, 47.4356329 ], + [ 7.75038, 47.4356226 ], + [ 7.7503801, 47.4356124 ], + [ 7.7503801, 47.4355969 ], + [ 7.7503796, 47.4355144 ], + [ 7.7503796, 47.4354989 ], + [ 7.7503799, 47.4354887 ], + [ 7.7503801, 47.4354836 ], + [ 7.7503804, 47.4354785 ], + [ 7.7503815, 47.4354658 ], + [ 7.7503817999999995, 47.4354611 ], + [ 7.7503828, 47.4354425 ], + [ 7.7503835, 47.4354332 ], + [ 7.7503849, 47.4354207 ], + [ 7.7503863, 47.4354063 ], + [ 7.7503879, 47.435394 ], + [ 7.7503893999999995, 47.4353808 ], + [ 7.7503907, 47.4353711 ], + [ 7.7503929, 47.4353567 ], + [ 7.7503957, 47.4353402 ], + [ 7.7503962, 47.4353374 ], + [ 7.7504029, 47.4352989 ], + [ 7.7503303, 47.4352863 ], + [ 7.7502885, 47.4352789 ], + [ 7.7502732, 47.4352763 ], + [ 7.7502689, 47.4352755 ], + [ 7.7502639, 47.4352752 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr009", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Moreplatz", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Moreplatz", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Moreplatz", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Moreplatz", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7078567, 47.3832322 ], + [ 7.7078576, 47.3832399 ], + [ 7.7078594, 47.3832476 ], + [ 7.7078622, 47.3832551 ], + [ 7.7078659, 47.3832624 ], + [ 7.7078706, 47.3832695 ], + [ 7.7078761, 47.3832763 ], + [ 7.707897, 47.3832969 ], + [ 7.7079186, 47.3833172 ], + [ 7.7079408, 47.3833372 ], + [ 7.7079769, 47.3833658 ], + [ 7.708012, 47.3833949 ], + [ 7.7080462, 47.3834245 ], + [ 7.708108, 47.3834814 ], + [ 7.7081719, 47.3835372 ], + [ 7.7082376, 47.3835921 ], + [ 7.7083179, 47.3836578 ], + [ 7.7084049, 47.3837195 ], + [ 7.708498, 47.3837769 ], + [ 7.70874, 47.3839346 ], + [ 7.709078, 47.3841366 ], + [ 7.709182, 47.3842057 ], + [ 7.709282, 47.3842775 ], + [ 7.7093777, 47.3843519 ], + [ 7.7095416, 47.3844822 ], + [ 7.7096197, 47.3845383 ], + [ 7.7097031, 47.3845907 ], + [ 7.7097913, 47.3846393 ], + [ 7.7099426, 47.3847095 ], + [ 7.7100978, 47.3847756 ], + [ 7.7102567, 47.3848374 ], + [ 7.7104374, 47.3849061 ], + [ 7.7106705, 47.3850697 ], + [ 7.7107218, 47.3851698 ], + [ 7.7107638, 47.3852952 ], + [ 7.7114711, 47.3853852 ], + [ 7.7118193, 47.3853853 ], + [ 7.7117919, 47.3853019 ], + [ 7.7116593, 47.3849019 ], + [ 7.7115074, 47.3844519 ], + [ 7.7113603, 47.3841347 ], + [ 7.711179, 47.3837444 ], + [ 7.7112579, 47.3835435 ], + [ 7.7105745, 47.3834749 ], + [ 7.71011, 47.3834261 ], + [ 7.7098644, 47.3834022 ], + [ 7.7096651, 47.3833669 ], + [ 7.7095403000000005, 47.383322 ], + [ 7.7094528, 47.3832857 ], + [ 7.7092908, 47.3832161 ], + [ 7.7091723, 47.3831736 ], + [ 7.7090034, 47.3831207 ], + [ 7.7088359, 47.3830984 ], + [ 7.7086554, 47.3830892 ], + [ 7.7085023, 47.383087 ], + [ 7.7084055, 47.3830832 ], + [ 7.7083153, 47.3830795 ], + [ 7.7080203, 47.3831139 ], + [ 7.707994, 47.3831179 ], + [ 7.7079683, 47.3831236 ], + [ 7.7079436, 47.383131 ], + [ 7.7079307, 47.3831368 ], + [ 7.7079186, 47.3831433 ], + [ 7.7079074, 47.3831504 ], + [ 7.7078971, 47.3831582 ], + [ 7.7078879, 47.3831665 ], + [ 7.7078797, 47.3831754 ], + [ 7.7078727, 47.3831847 ], + [ 7.7078669, 47.3831944 ], + [ 7.7078629, 47.3832017 ], + [ 7.7078599, 47.3832091 ], + [ 7.7078579, 47.3832168 ], + [ 7.7078568, 47.3832245 ], + [ 7.7078567, 47.3832322 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns230", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Geissrain", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Geissrain", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Geissrain", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Geissrain", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7951956, 47.4091195 ], + [ 7.7954635, 47.4092118 ], + [ 7.795853, 47.4093293 ], + [ 7.796077, 47.4093756 ], + [ 7.7962056, 47.4093867 ], + [ 7.7962192, 47.4093857 ], + [ 7.7962237, 47.4093854 ], + [ 7.7962327, 47.4093847 ], + [ 7.7962418, 47.4093841 ], + [ 7.7962463, 47.4093838 ], + [ 7.7962599, 47.409383 ], + [ 7.7962837, 47.4093817 ], + [ 7.7962881, 47.4093815 ], + [ 7.7962916, 47.4093813 ], + [ 7.7962975, 47.409381 ], + [ 7.7963075, 47.4093806 ], + [ 7.7963177, 47.4093802 ], + [ 7.7963234, 47.4093799 ], + [ 7.796327, 47.409379799999996 ], + [ 7.7963314, 47.4093796 ], + [ 7.7963553, 47.4093789 ], + [ 7.7964325, 47.4093743 ], + [ 7.7964377, 47.4093739 ], + [ 7.7964454, 47.4093733 ], + [ 7.7965051, 47.4093669 ], + [ 7.7965129, 47.4093659 ], + [ 7.7965176, 47.4093652 ], + [ 7.7965935, 47.4093534 ], + [ 7.7967692, 47.4093218 ], + [ 7.7969579, 47.4092879 ], + [ 7.7969597, 47.4092876 ], + [ 7.7969606, 47.4092874 ], + [ 7.7969615, 47.4092873 ], + [ 7.7969633, 47.409287 ], + [ 7.7969725, 47.409285 ], + [ 7.7969813, 47.4092826 ], + [ 7.7969899, 47.4092798 ], + [ 7.7969981, 47.4092765 ], + [ 7.7970059, 47.4092727 ], + [ 7.7970091, 47.409271 ], + [ 7.7970122, 47.4092692 ], + [ 7.7970153, 47.4092673 ], + [ 7.7970182, 47.4092653 ], + [ 7.7970243, 47.4092614 ], + [ 7.7970303, 47.4092575 ], + [ 7.7970363, 47.4092536 ], + [ 7.7970554, 47.4092778 ], + [ 7.7970571, 47.4092754 ], + [ 7.7970585, 47.4092729 ], + [ 7.7970592, 47.4092717 ], + [ 7.797062, 47.4092682 ], + [ 7.7970655, 47.4092649 ], + [ 7.7970668, 47.409264 ], + [ 7.7970695, 47.409262 ], + [ 7.7970726, 47.4092603 ], + [ 7.7970741, 47.4092595 ], + [ 7.7971018, 47.4092406 ], + [ 7.7971352, 47.4092221 ], + [ 7.7972849, 47.4091377 ], + [ 7.7975466, 47.4089757 ], + [ 7.7977714, 47.4088348 ], + [ 7.7978263, 47.4088004 ], + [ 7.798005, 47.408689 ], + [ 7.7980393, 47.4086642 ], + [ 7.7980385, 47.4086634 ], + [ 7.7980364, 47.4086608 ], + [ 7.7980343, 47.4086581 ], + [ 7.7980334, 47.4086568 ], + [ 7.7980324, 47.4086555 ], + [ 7.7979409, 47.4085358 ], + [ 7.7979343, 47.4085277 ], + [ 7.7978834, 47.408461 ], + [ 7.7978365, 47.4083991 ], + [ 7.7978041000000005, 47.4083563 ], + [ 7.7976989, 47.408235 ], + [ 7.7976788, 47.4082109 ], + [ 7.7976582, 47.408187 ], + [ 7.797637, 47.4081633 ], + [ 7.7976154, 47.4081399 ], + [ 7.7975932, 47.4081166 ], + [ 7.7975705, 47.4080936 ], + [ 7.7975384, 47.4080625 ], + [ 7.7975224999999995, 47.408047 ], + [ 7.7975172, 47.4080417 ], + [ 7.7975136, 47.4080382 ], + [ 7.7975066, 47.4080313 ], + [ 7.7974754, 47.4079998 ], + [ 7.7974686, 47.4079928 ], + [ 7.7974651, 47.4079892 ], + [ 7.79746, 47.4079839 ], + [ 7.7974452, 47.4079686 ], + [ 7.7974446, 47.407968 ], + [ 7.7974143, 47.4079361 ], + [ 7.7973837, 47.4079039 ], + [ 7.7973684, 47.4078874 ], + [ 7.7973637, 47.4078823 ], + [ 7.7973605, 47.4078788 ], + [ 7.7973537, 47.4078715 ], + [ 7.7973242, 47.4078388 ], + [ 7.7973174, 47.4078311 ], + [ 7.7973145, 47.4078279 ], + [ 7.7973102, 47.407823 ], + [ 7.7972952, 47.4078059 ], + [ 7.7972668, 47.4077728 ], + [ 7.7972437, 47.4077458 ], + [ 7.7972361, 47.4077367 ], + [ 7.7972209, 47.4077187 ], + [ 7.7972059, 47.4077005 ], + [ 7.7971983, 47.4076914 ], + [ 7.797176, 47.4076641 ], + [ 7.7971726, 47.4076593 ], + [ 7.7971722, 47.4076586 ], + [ 7.7971686, 47.4076546 ], + [ 7.7971675, 47.4076534 ], + [ 7.7971641, 47.4076503 ], + [ 7.7971622, 47.4076486 ], + [ 7.7971589, 47.4076462 ], + [ 7.7971561, 47.4076441 ], + [ 7.7971533, 47.4076424 ], + [ 7.7971494, 47.4076401 ], + [ 7.7971473, 47.407639 ], + [ 7.7971421, 47.4076365 ], + [ 7.7971408, 47.407636 ], + [ 7.7971342, 47.4076334 ], + [ 7.7971265, 47.407631 ], + [ 7.7971193, 47.407629299999996 ], + [ 7.7971178, 47.407629 ], + [ 7.7971117, 47.407628 ], + [ 7.7971091, 47.4076276 ], + [ 7.7971039, 47.4076272 ], + [ 7.7971002, 47.4076269 ], + [ 7.797096, 47.4076268 ], + [ 7.7970913, 47.4076267 ], + [ 7.7970881, 47.4076268 ], + [ 7.7970824, 47.4076271 ], + [ 7.7970803, 47.4076273 ], + [ 7.7970705, 47.407626 ], + [ 7.7970698, 47.4076265 ], + [ 7.7970649, 47.4076298 ], + [ 7.7969587, 47.4076572 ], + [ 7.7964427, 47.4077612 ], + [ 7.7962509, 47.4078007 ], + [ 7.7960061, 47.4078512 ], + [ 7.7957753, 47.4078809 ], + [ 7.7957637, 47.4078824 ], + [ 7.7953062, 47.4079113 ], + [ 7.7950805, 47.4079442 ], + [ 7.7949964, 47.4079686 ], + [ 7.7949553, 47.4079805 ], + [ 7.7948242, 47.4081839 ], + [ 7.7947993, 47.408464 ], + [ 7.7947985, 47.4084731 ], + [ 7.7948698, 47.4086695 ], + [ 7.7950336, 47.4089727 ], + [ 7.7951956, 47.4091195 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr122", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Ebnet", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Ebnet", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Ebnet", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Ebnet", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.8119350999999995, 46.4702531 ], + [ 6.8120408, 46.4701188 ], + [ 6.8122319000000005, 46.4701322 ], + [ 6.8124571, 46.470148 ], + [ 6.8130448999999995, 46.4699894 ], + [ 6.8133049, 46.4700178 ], + [ 6.8136953, 46.4700379 ], + [ 6.8137997, 46.4700205 ], + [ 6.8139585, 46.4697965 ], + [ 6.8144785, 46.4698623 ], + [ 6.8148088, 46.4698006 ], + [ 6.8150396, 46.4697575 ], + [ 6.8151963, 46.4697133 ], + [ 6.8153673999999995, 46.4698414 ], + [ 6.8155836, 46.4700033 ], + [ 6.8159952, 46.4698808 ], + [ 6.8162369, 46.469809 ], + [ 6.8166004000000004, 46.469901 ], + [ 6.8166923, 46.4698295 ], + [ 6.8175771, 46.4698793 ], + [ 6.8176407, 46.4700146 ], + [ 6.8179281, 46.4699262 ], + [ 6.8193363, 46.469754 ], + [ 6.8194948, 46.4695569 ], + [ 6.8197811, 46.4697093 ], + [ 6.8199217999999995, 46.4697842 ], + [ 6.8203382, 46.4696644 ], + [ 6.8205358, 46.4696076 ], + [ 6.8207731, 46.4694194 ], + [ 6.8209299, 46.4692949 ], + [ 6.821031, 46.469139 ], + [ 6.821185, 46.4689002 ], + [ 6.8213101, 46.4687071 ], + [ 6.8213938, 46.4685777 ], + [ 6.8214659, 46.4683845 ], + [ 6.821528, 46.4682186 ], + [ 6.8216978, 46.4681745 ], + [ 6.821984, 46.4681941 ], + [ 6.8223748, 46.4681782 ], + [ 6.8225438, 46.4681971 ], + [ 6.8227661, 46.4681084 ], + [ 6.8229637, 46.4679115 ], + [ 6.8229645, 46.4678396 ], + [ 6.8233287, 46.4678685 ], + [ 6.8233946, 46.4677969 ], + [ 6.8242005, 46.4679182 ], + [ 6.8241732, 46.468026 ], + [ 6.8258628, 46.4682871 ], + [ 6.8259938, 46.4682158 ], + [ 6.8279076, 46.4682261 ], + [ 6.8279062, 46.4683422 ], + [ 6.8279045, 46.468496 ], + [ 6.8290116, 46.468457 ], + [ 6.8294683, 46.4683695 ], + [ 6.8299635, 46.4683272 ], + [ 6.8303248, 46.4682531 ], + [ 6.8309031000000004, 46.4681343 ], + [ 6.8312983, 46.4680857 ], + [ 6.8314637, 46.4680653 ], + [ 6.8318242, 46.4678474 ], + [ 6.8320536, 46.4677086 ], + [ 6.8322664, 46.4675234 ], + [ 6.8323823, 46.4674225 ], + [ 6.8325786, 46.4673336 ], + [ 6.832693, 46.467217 ], + [ 6.832842, 46.4670651 ], + [ 6.8330626, 46.4671293 ], + [ 6.8331677, 46.4670399 ], + [ 6.8329346, 46.4669307 ], + [ 6.8330676, 46.4666795 ], + [ 6.8326795, 46.4664526 ], + [ 6.8328980999999995, 46.4661886 ], + [ 6.8330813, 46.4659668 ], + [ 6.8333518, 46.46564 ], + [ 6.8334978, 46.4654634 ], + [ 6.833643, 46.4652882 ], + [ 6.83384, 46.4651364 ], + [ 6.8340357, 46.4650924 ], + [ 6.8341657, 46.4651111 ], + [ 6.8342578, 46.4650216 ], + [ 6.8341928, 46.4650213 ], + [ 6.8343637, 46.4648693 ], + [ 6.8345227, 46.4646182 ], + [ 6.8343927, 46.4645996 ], + [ 6.8343935, 46.4645276 ], + [ 6.8344977, 46.4645281 ], + [ 6.8346301, 46.4643309 ], + [ 6.8345652999999995, 46.4643036 ], + [ 6.8345925, 46.4641958 ], + [ 6.8346965, 46.4642143 ], + [ 6.8348284, 46.4640621 ], + [ 6.8347252, 46.4639716 ], + [ 6.8349233, 46.4637208 ], + [ 6.8349784, 46.4635229 ], + [ 6.8350326, 46.4633323 ], + [ 6.8350995, 46.463092 ], + [ 6.8351279, 46.4628057 ], + [ 6.8351499, 46.4625888 ], + [ 6.8351728, 46.4623547 ], + [ 6.835116, 46.4621933 ], + [ 6.8350466999999995, 46.4619942 ], + [ 6.8350755, 46.4617425 ], + [ 6.8350539999999995, 46.4616268 ], + [ 6.8350141, 46.4614093 ], + [ 6.835056, 46.4611576 ], + [ 6.8351868, 46.4610954 ], + [ 6.8352164, 46.4607807 ], + [ 6.8354136, 46.4606018 ], + [ 6.8355502999999995, 46.4605306 ], + [ 6.8358065, 46.460397 ], + [ 6.8362365, 46.4603543 ], + [ 6.8363654, 46.4604719 ], + [ 6.8367572, 46.4603571 ], + [ 6.8369807, 46.4601603 ], + [ 6.8373714, 46.4600726 ], + [ 6.837568, 46.4600285 ], + [ 6.837774, 46.4599404 ], + [ 6.8381508, 46.459779 ], + [ 6.8385277, 46.4596178 ], + [ 6.838876, 46.4594687 ], + [ 6.8391185, 46.4593851 ], + [ 6.8404179, 46.4589371 ], + [ 6.8404188999999995, 46.4588472 ], + [ 6.8408106, 46.4587413 ], + [ 6.8408096, 46.4588312 ], + [ 6.840901, 46.4588047 ], + [ 6.8414182, 46.4591223 ], + [ 6.8421356, 46.4589911 ], + [ 6.8425964, 46.4585258 ], + [ 6.8442913, 46.4582828 ], + [ 6.8447861, 46.4582674 ], + [ 6.8450705, 46.4581466 ], + [ 6.8452046, 46.4580897 ], + [ 6.8455964, 46.4579748 ], + [ 6.8461076, 46.457948 ], + [ 6.8463779, 46.4579339 ], + [ 6.8465723, 46.4580068 ], + [ 6.8468064, 46.4580261 ], + [ 6.8472287, 46.4579516 ], + [ 6.8475497999999995, 46.457895 ], + [ 6.8477853, 46.4577883 ], + [ 6.8479825, 46.457757 ], + [ 6.8482115, 46.4577206 ], + [ 6.8489173, 46.4576088 ], + [ 6.8498716, 46.4574573 ], + [ 6.8500679, 46.4573683 ], + [ 6.85003, 46.4572602 ], + [ 6.8499389, 46.4572597 ], + [ 6.8499394, 46.4572147 ], + [ 6.8500309999999995, 46.4571702 ], + [ 6.849903, 46.4569627 ], + [ 6.8500334, 46.4569453 ], + [ 6.8500700000000005, 46.4571704 ], + [ 6.8501611, 46.4571709 ], + [ 6.8501604, 46.4572339 ], + [ 6.8500954, 46.4572335 ], + [ 6.8501592, 46.4573508 ], + [ 6.8502241, 46.4573692 ], + [ 6.8505500999999995, 46.4573079 ], + [ 6.8506142, 46.4573982 ], + [ 6.851658, 46.4571787 ], + [ 6.8516324, 46.4571336 ], + [ 6.8517244999999996, 46.4570441 ], + [ 6.8516612, 46.4568818 ], + [ 6.8517272, 46.4567922 ], + [ 6.8518319, 46.4567478 ], + [ 6.8520268, 46.4567758 ], + [ 6.8521823, 46.4568395 ], + [ 6.8524192, 46.4565979 ], + [ 6.8528833, 46.4555906 ], + [ 6.8531065, 46.4551066 ], + [ 6.8535197, 46.4542108 ], + [ 6.8537008, 46.4537825 ], + [ 6.8539134, 46.4532321 ], + [ 6.8540279, 46.4531761 ], + [ 6.8542404999999995, 46.4530719 ], + [ 6.8543456, 46.4529825 ], + [ 6.8544678999999995, 46.4527321 ], + [ 6.8545419, 46.4525795 ], + [ 6.8545926999999995, 46.4524759 ], + [ 6.8546385, 46.4523813 ], + [ 6.8547449, 46.4523162 ], + [ 6.8549005, 46.4522207 ], + [ 6.8550684, 46.4523385 ], + [ 6.8554589, 46.4523405 ], + [ 6.8562439, 46.4519577 ], + [ 6.8563998, 46.4519855 ], + [ 6.8567009, 46.4518251 ], + [ 6.8568583, 46.451718 ], + [ 6.8569246, 46.4516014 ], + [ 6.8568349, 46.451466 ], + [ 6.8568625999999995, 46.4513132 ], + [ 6.8571511, 46.451035 ], + [ 6.8572687, 46.450922 ], + [ 6.8574939, 46.4507047 ], + [ 6.8572606, 46.4506136 ], + [ 6.8573001, 46.4505688 ], + [ 6.8575596, 46.4506421 ], + [ 6.8576252, 46.4505974 ], + [ 6.8578153, 46.4506189 ], + [ 6.8580412, 46.4506445 ], + [ 6.8581723, 46.4505553 ], + [ 6.858333, 46.4502828 ], + [ 6.8584109, 46.4501517 ], + [ 6.8583731, 46.4500345 ], + [ 6.8585439, 46.4498825 ], + [ 6.8586739, 46.4499011 ], + [ 6.858676, 46.4497032 ], + [ 6.8587671, 46.4497037 ], + [ 6.8587682999999995, 46.4495868 ], + [ 6.8592315, 46.4488695 ], + [ 6.8593419, 46.4483618 ], + [ 6.8593953, 46.4480056 ], + [ 6.8594402, 46.4476111 ], + [ 6.8595732, 46.4473419 ], + [ 6.8597532, 46.4472453 ], + [ 6.8599299, 46.4471502 ], + [ 6.8600706, 46.4470746 ], + [ 6.8601619, 46.447057 ], + [ 6.8602053, 46.4471812 ], + [ 6.8602882, 46.4474175 ], + [ 6.8604398, 46.4474703 ], + [ 6.8606739999999995, 46.4475519 ], + [ 6.8608571, 46.4476157 ], + [ 6.8610711, 46.4476903 ], + [ 6.861251, 46.4477529 ], + [ 6.8615200000000005, 46.4478466 ], + [ 6.8616782, 46.4478932 ], + [ 6.8620779, 46.4480114 ], + [ 6.8622298, 46.448039 ], + [ 6.8624246, 46.4480744 ], + [ 6.8626885, 46.4481224 ], + [ 6.8628178, 46.448195 ], + [ 6.8629997, 46.4482319 ], + [ 6.8633406, 46.4483011 ], + [ 6.8636734, 46.4483687 ], + [ 6.8639437, 46.4484235 ], + [ 6.8641815, 46.4484718 ], + [ 6.8644147, 46.4484982 ], + [ 6.8645772, 46.4485164 ], + [ 6.8647665, 46.4485378 ], + [ 6.8647674, 46.4484478 ], + [ 6.8651574, 46.4484948 ], + [ 6.8652212, 46.448612 ], + [ 6.8661332, 46.4485267 ], + [ 6.8663962, 46.448424 ], + [ 6.8666559, 46.4483224 ], + [ 6.8667611, 46.448215 ], + [ 6.8666978, 46.4480527 ], + [ 6.8667245, 46.4479899 ], + [ 6.8669641, 46.4480202 ], + [ 6.8672444, 46.4480555 ], + [ 6.8674388, 46.4481284 ], + [ 6.8674772, 46.4481916 ], + [ 6.8677363, 46.4483099 ], + [ 6.8680982, 46.4483117 ], + [ 6.8682829, 46.4483126 ], + [ 6.8684868, 46.4482581 ], + [ 6.8687788, 46.4481802 ], + [ 6.8688391, 46.4480187 ], + [ 6.8688725999999996, 46.4479287 ], + [ 6.869166, 46.447797 ], + [ 6.8695656, 46.4476174 ], + [ 6.8696558, 46.4477078 ], + [ 6.8694587, 46.4478867 ], + [ 6.8695211, 46.448138900000004 ], + [ 6.8696503, 46.4482295 ], + [ 6.8700407, 46.4482315 ], + [ 6.8703396, 46.448278 ], + [ 6.870642, 46.4482193 ], + [ 6.8708009, 46.4481885 ], + [ 6.8710177, 46.4481464 ], + [ 6.8712487, 46.4480707 ], + [ 6.871474, 46.4479969 ], + [ 6.8717752, 46.4478983 ], + [ 6.8720396, 46.4478883 ], + [ 6.8721917999999995, 46.4478824 ], + [ 6.8724092, 46.4479383 ], + [ 6.8726201, 46.4479925 ], + [ 6.8728411, 46.4480206 ], + [ 6.8731021, 46.4479499 ], + [ 6.873206, 46.4479774 ], + [ 6.8731398, 46.4480851 ], + [ 6.8735316, 46.4479521 ], + [ 6.8737279000000004, 46.4478451 ], + [ 6.8737291, 46.4477282 ], + [ 6.8739349999999995, 46.4475682 ], + [ 6.8742433, 46.4473289 ], + [ 6.874386, 46.4472178 ], + [ 6.8747346, 46.4470156 ], + [ 6.8750004, 46.4468799 ], + [ 6.8751381, 46.4468568 ], + [ 6.8753654, 46.4468187 ], + [ 6.8755603999999995, 46.4468377 ], + [ 6.8758213999999995, 46.446776 ], + [ 6.8762595, 46.4464916 ], + [ 6.8763717, 46.4464189 ], + [ 6.8768272, 46.4464212 ], + [ 6.876931, 46.4463646 ], + [ 6.8770488, 46.4463004 ], + [ 6.8771544, 46.4462429 ], + [ 6.8771965, 46.4459462 ], + [ 6.8774174, 46.4459743 ], + [ 6.8775887, 46.4457683 ], + [ 6.8774595, 46.4456777 ], + [ 6.8779198, 46.4452121 ], + [ 6.8780103, 46.4452756 ], + [ 6.8783095, 46.445204 ], + [ 6.8786365, 46.4451257 ], + [ 6.8787074, 46.4450297 ], + [ 6.8787685, 46.4449465 ], + [ 6.8788552, 46.4445065 ], + [ 6.8789333, 46.4441107 ], + [ 6.879167, 46.4441568 ], + [ 6.8792349, 46.4438873 ], + [ 6.8791054, 46.4438237 ], + [ 6.8791721, 46.4436621 ], + [ 6.8791746, 46.4434192 ], + [ 6.8790956, 46.4432794 ], + [ 6.8790237, 46.4431528 ], + [ 6.878919, 46.4429681 ], + [ 6.8791405, 46.4429422 ], + [ 6.8792992, 46.4428569 ], + [ 6.8796378, 46.4426748 ], + [ 6.8796384, 46.4426119 ], + [ 6.8806195, 46.4421219 ], + [ 6.8808136, 46.4422308 ], + [ 6.8818599, 46.4417232 ], + [ 6.8819429, 46.4415607 ], + [ 6.8820167, 46.4414164 ], + [ 6.8821255, 46.4412028 ], + [ 6.8822171999999995, 46.4411402 ], + [ 6.8822821, 46.4411585 ], + [ 6.8822201, 46.4412524 ], + [ 6.8821747, 46.4413211 ], + [ 6.8820573, 46.4414993 ], + [ 6.8822513999999995, 46.4416082 ], + [ 6.8824462, 46.4416541 ], + [ 6.8824454, 46.4417261 ], + [ 6.8826011, 46.4417718 ], + [ 6.882602, 46.4416819 ], + [ 6.8829013, 46.4416833 ], + [ 6.8828999, 46.4418183 ], + [ 6.8830951, 46.4418192 ], + [ 6.8831221, 46.4417294 ], + [ 6.8832522, 46.44173 ], + [ 6.8832512999999995, 46.44182 ], + [ 6.883485, 46.4418661 ], + [ 6.8835513, 46.4417495 ], + [ 6.8835761, 46.4418666 ], + [ 6.8837065, 46.4418402 ], + [ 6.8839663, 46.4418865 ], + [ 6.8841599, 46.4420494 ], + [ 6.8842912, 46.4419331 ], + [ 6.8845244999999995, 46.4420242 ], + [ 6.8844845, 46.4421139 ], + [ 6.8845224, 46.4422311 ], + [ 6.8846776, 46.4423218 ], + [ 6.8849117, 46.4423409 ], + [ 6.8850953, 46.4422828 ], + [ 6.885491, 46.4421575 ], + [ 6.8857105, 46.442088 ], + [ 6.8858908, 46.4420308 ], + [ 6.8858267, 46.4419406 ], + [ 6.8859835, 46.4418784 ], + [ 6.8858308, 46.4415358 ], + [ 6.8885127, 46.4401365 ], + [ 6.8885942, 46.4400409 ], + [ 6.8886871, 46.4399326 ], + [ 6.8888419, 46.4397513 ], + [ 6.8889083, 46.4396167 ], + [ 6.8890647, 46.4395938 ], + [ 6.8893253, 46.4395557 ], + [ 6.8894876, 46.4394357 ], + [ 6.8897842, 46.4392161 ], + [ 6.8899161, 46.4390369 ], + [ 6.8902423, 46.4389485 ], + [ 6.8905407, 46.4390399 ], + [ 6.8905959, 46.4391307 ], + [ 6.8906943, 46.4392925 ], + [ 6.8908254, 46.4393551 ], + [ 6.8910181, 46.439447 ], + [ 6.8912516, 46.4395201 ], + [ 6.8919677, 46.4394786 ], + [ 6.8921323999999995, 46.439434 ], + [ 6.8922425, 46.4394041 ], + [ 6.8925549, 46.4393195 ], + [ 6.8927762, 46.4393026 ], + [ 6.8929718, 46.4393429 ], + [ 6.8932518, 46.4394007 ], + [ 6.8935887000000005, 46.4394702 ], + [ 6.8938995, 46.4395344 ], + [ 6.8942046999999995, 46.4395973 ], + [ 6.8945031, 46.4396887 ], + [ 6.8946461, 46.4396992 ], + [ 6.8950232, 46.4397272 ], + [ 6.8953182, 46.439749 ], + [ 6.8955433, 46.4397657 ], + [ 6.8957755, 46.4398066 ], + [ 6.8959988, 46.439846 ], + [ 6.8961895, 46.4398795 ], + [ 6.8964834, 46.4399314 ], + [ 6.8982712, 46.4402465 ], + [ 6.8982961, 46.4403636 ], + [ 6.8986363, 46.4404196 ], + [ 6.8991405, 46.4405026 ], + [ 6.8996564, 46.4405566 ], + [ 6.8999668, 46.4405891 ], + [ 6.9002194, 46.4406156 ], + [ 6.9003752, 46.4406614 ], + [ 6.9003756, 46.4406164 ], + [ 6.9005148, 46.4406085 ], + [ 6.9007776, 46.4405934 ], + [ 6.9009884, 46.4405814 ], + [ 6.9013912, 46.4405583 ], + [ 6.9016633, 46.4404259 ], + [ 6.9019003, 46.4403105 ], + [ 6.9020883, 46.440219 ], + [ 6.9022436, 46.4401434 ], + [ 6.902398, 46.4400683 ], + [ 6.9025473, 46.4399354 ], + [ 6.9026335, 46.439859 ], + [ 6.9027402, 46.4397643 ], + [ 6.9028312, 46.4396835 ], + [ 6.9029995, 46.439613 ], + [ 6.9032135, 46.4395234 ], + [ 6.9036805999999995, 46.4393277 ], + [ 6.9038542, 46.4392093 ], + [ 6.9040343, 46.4390865 ], + [ 6.9041005, 46.4389698 ], + [ 6.9042326, 46.4389385 ], + [ 6.9043614, 46.4389081 ], + [ 6.9049498, 46.438614 ], + [ 6.9048596, 46.4385236 ], + [ 6.9050554, 46.4384616 ], + [ 6.9052267, 46.438329 ], + [ 6.9053439, 46.438238 ], + [ 6.9054961, 46.438067 ], + [ 6.9056465, 46.4378976 ], + [ 6.9058796000000005, 46.4377712 ], + [ 6.9073734, 46.4369611 ], + [ 6.9076999, 46.4368277 ], + [ 6.907901, 46.4366468 ], + [ 6.9081069, 46.4364611 ], + [ 6.9082972, 46.4362902 ], + [ 6.9083957, 46.4362013 ], + [ 6.9084977, 46.4360797 ], + [ 6.9087018, 46.4358376 ], + [ 6.9088992, 46.435603 ], + [ 6.9090465, 46.4354277 ], + [ 6.9092777, 46.4351528 ], + [ 6.9093668, 46.4349428 ], + [ 6.909475, 46.4346875 ], + [ 6.9095174, 46.4345872 ], + [ 6.9093485, 46.4345684 ], + [ 6.9093232, 46.4344963 ], + [ 6.9095185, 46.4344793 ], + [ 6.9095476, 46.4341645 ], + [ 6.9096516999999995, 46.434165 ], + [ 6.9096556, 46.4337665 ], + [ 6.9096578, 46.4335353 ], + [ 6.909499, 46.4331404 ], + [ 6.9087708, 46.4311023 ], + [ 6.9087726, 46.430925 ], + [ 6.9087735, 46.4308324 ], + [ 6.908932, 46.4305813 ], + [ 6.9090408, 46.4305225 ], + [ 6.9094348, 46.4303091 ], + [ 6.909756, 46.4301353 ], + [ 6.9108343, 46.429462 ], + [ 6.9113947, 46.429112 ], + [ 6.9116147, 46.4289746 ], + [ 6.9119827, 46.4288495 ], + [ 6.9122674, 46.4287527 ], + [ 6.9125922, 46.4287992 ], + [ 6.9126303, 46.4288893 ], + [ 6.9128257, 46.4288722 ], + [ 6.9131114, 46.4289185 ], + [ 6.9131513, 46.4288288 ], + [ 6.9137265, 46.4289643 ], + [ 6.9141248, 46.4290582 ], + [ 6.9143701, 46.4291744 ], + [ 6.914604, 46.4292853 ], + [ 6.91491, 46.4295085 ], + [ 6.9152241, 46.4297379 ], + [ 6.9154405, 46.4298123 ], + [ 6.9156634, 46.4298889 ], + [ 6.9160284999999995, 46.4299665 ], + [ 6.9163371, 46.4299283 ], + [ 6.9165886, 46.4298972 ], + [ 6.9170458, 46.4297926 ], + [ 6.9174361, 46.4297032 ], + [ 6.9176592, 46.4296691 ], + [ 6.9181788, 46.4295896 ], + [ 6.9184725, 46.429483 ], + [ 6.9187728, 46.4293741 ], + [ 6.9190798000000004, 46.4292376 ], + [ 6.9193423, 46.4290863 ], + [ 6.9195507, 46.4289663 ], + [ 6.919852, 46.4286702 ], + [ 6.9201155, 46.4284111 ], + [ 6.9205537, 46.4279032 ], + [ 6.9211868, 46.4271701 ], + [ 6.9222211, 46.425875 ], + [ 6.922248, 46.4257852 ], + [ 6.9221836, 46.4257219 ], + [ 6.9220539, 46.4256763 ], + [ 6.9220543, 46.4256314 ], + [ 6.922249, 46.4256772 ], + [ 6.9223804, 46.4255429 ], + [ 6.9224843, 46.4255614 ], + [ 6.9224839, 46.4256063 ], + [ 6.9224188, 46.425606 ], + [ 6.9223525, 46.4257407 ], + [ 6.9224163, 46.4258759 ], + [ 6.9225459, 46.4259215 ], + [ 6.9226374, 46.4258769 ], + [ 6.9226962, 46.425767 ], + [ 6.9227434, 46.4256795 ], + [ 6.9226794, 46.4255622 ], + [ 6.9224852, 46.4254714 ], + [ 6.9225768, 46.4254088 ], + [ 6.92264, 46.4252604 ], + [ 6.9227099, 46.4250946 ], + [ 6.9232738, 46.4246204 ], + [ 6.9234727, 46.4243925 ], + [ 6.9236026, 46.4242441 ], + [ 6.9236484, 46.4238648 ], + [ 6.9236732, 46.4236597 ], + [ 6.9235723, 46.4233174 ], + [ 6.9235661, 46.4231996 ], + [ 6.9235502, 46.4229125 ], + [ 6.9234945, 46.4226919 ], + [ 6.923417, 46.422385 ], + [ 6.9233519, 46.4221277 ], + [ 6.9232994, 46.4219219 ], + [ 6.923302, 46.421652 ], + [ 6.9232392, 46.4214088 ], + [ 6.9233066999999995, 46.4211573 ], + [ 6.9234655, 46.4208701 ], + [ 6.9235902, 46.4207518 ], + [ 6.9239643, 46.4203956 ], + [ 6.9245534, 46.4199935 ], + [ 6.9247502, 46.4198145 ], + [ 6.9250378, 46.4196629 ], + [ 6.9254972, 46.4192332 ], + [ 6.9259278, 46.4190822 ], + [ 6.9259528, 46.4191903 ], + [ 6.9261223, 46.4191461 ], + [ 6.9268025, 46.4187443 ], + [ 6.9269504, 46.4185721 ], + [ 6.9270869, 46.4184129 ], + [ 6.9273023, 46.4181619 ], + [ 6.9273461, 46.4180011 ], + [ 6.9274252, 46.4177131 ], + [ 6.9275683, 46.4171888 ], + [ 6.927639, 46.416931 ], + [ 6.9276873, 46.4165576 ], + [ 6.9277092, 46.4163916 ], + [ 6.9276725, 46.4161396 ], + [ 6.9275437, 46.416004 ], + [ 6.9276219, 46.4158132 ], + [ 6.9277168, 46.415582 ], + [ 6.9276759, 46.4154345 ], + [ 6.9276161, 46.4152217 ], + [ 6.9277204, 46.4151952 ], + [ 6.9277213, 46.4151053 ], + [ 6.9275918, 46.4150417 ], + [ 6.9274246999999995, 46.4148341 ], + [ 6.9271402, 46.4146529 ], + [ 6.9270119999999995, 46.4144544 ], + [ 6.9271718, 46.4140683 ], + [ 6.9273421, 46.4139341 ], + [ 6.9276945, 46.4138008 ], + [ 6.9277977, 46.4138912 ], + [ 6.9278629, 46.4138735 ], + [ 6.9278877, 46.4140086 ], + [ 6.9279915, 46.414027 ], + [ 6.9280576, 46.4139194 ], + [ 6.9282791, 46.4138754 ], + [ 6.9285819, 46.4136559 ], + [ 6.9287112, 46.4135625 ], + [ 6.9288701, 46.4132663 ], + [ 6.9290405, 46.4131296 ], + [ 6.9291715, 46.4130248 ], + [ 6.9292374, 46.4129351 ], + [ 6.9289391, 46.4128438 ], + [ 6.9290047999999995, 46.4127722 ], + [ 6.9293035, 46.4128185 ], + [ 6.9293968, 46.412576 ], + [ 6.9296721, 46.4124319 ], + [ 6.9297889, 46.4123709 ], + [ 6.9298755, 46.4122347 ], + [ 6.9301585, 46.4117878 ], + [ 6.9303521, 46.4113416 ], + [ 6.9305174, 46.4109618 ], + [ 6.9306889, 46.4107107 ], + [ 6.9307479, 46.4103035 ], + [ 6.9307862, 46.4100365 ], + [ 6.9308677, 46.4097558 ], + [ 6.9309609, 46.4094345 ], + [ 6.9309411, 46.4092062 ], + [ 6.9309147, 46.4088992 ], + [ 6.9308904, 46.4086281 ], + [ 6.930867, 46.4083546 ], + [ 6.930741, 46.4079222 ], + [ 6.9307175999999995, 46.4076343 ], + [ 6.9306263, 46.4074104 ], + [ 6.9305524, 46.4072287 ], + [ 6.9303226, 46.406853 ], + [ 6.9301889, 46.4066332 ], + [ 6.93004, 46.4063898 ], + [ 6.9299758, 46.4063061 ], + [ 6.9297751, 46.4060443 ], + [ 6.929539, 46.4057371 ], + [ 6.9293093, 46.4054378 ], + [ 6.9290978, 46.4051986 ], + [ 6.9287542, 46.4048368 ], + [ 6.9285323, 46.4044957 ], + [ 6.9284722, 46.4044037 ], + [ 6.9281472, 46.4043843 ], + [ 6.9278264, 46.4039331 ], + [ 6.927632, 46.4038602 ], + [ 6.9270131, 46.4032997 ], + [ 6.9267933, 46.4031638 ], + [ 6.9263653, 46.4030449 ], + [ 6.9258023, 46.4027659 ], + [ 6.9251745, 46.4024548 ], + [ 6.9250462, 46.4022743 ], + [ 6.9251138999999995, 46.4019868 ], + [ 6.9250495999999995, 46.4019145 ], + [ 6.925249, 46.4014476 ], + [ 6.9253791, 46.4014482 ], + [ 6.925424, 46.4011663 ], + [ 6.9254422, 46.4010472 ], + [ 6.9254774, 46.4006798 ], + [ 6.925479, 46.4005041 ], + [ 6.9254168, 46.400207 ], + [ 6.9252631000000004, 46.3999634 ], + [ 6.9251737, 46.3997093 ], + [ 6.9250732, 46.399422799999996 ], + [ 6.9249351, 46.3991525 ], + [ 6.9248434, 46.398972 ], + [ 6.9249735999999995, 46.3989456 ], + [ 6.9249109, 46.3987024 ], + [ 6.9247807, 46.3987198 ], + [ 6.9244337, 46.3982954 ], + [ 6.9239439, 46.3978434 ], + [ 6.9237256, 46.3975456 ], + [ 6.9235952, 46.39759 ], + [ 6.9235306, 46.3975447 ], + [ 6.9236872, 46.3974824 ], + [ 6.9234413, 46.397282 ], + [ 6.9232098, 46.3970934 ], + [ 6.9228211, 46.3969567 ], + [ 6.9221722, 46.3968188 ], + [ 6.9197738, 46.3960882 ], + [ 6.9203796, 46.3951086 ], + [ 6.920657, 46.395082 ], + [ 6.9207719999999995, 46.3947785 ], + [ 6.9211197, 46.3945354 ], + [ 6.9209008999999995, 46.394305 ], + [ 6.9196889, 46.3938325 ], + [ 6.9194759999999995, 46.3937461 ], + [ 6.9192323, 46.3937351 ], + [ 6.9190145, 46.3937413 ], + [ 6.9186306, 46.39369 ], + [ 6.9184362, 46.3936333 ], + [ 6.9181033, 46.3935167 ], + [ 6.9177206, 46.3934303 ], + [ 6.9173385, 46.3933629 ], + [ 6.9169809, 46.3933694 ], + [ 6.9166295, 46.3934073 ], + [ 6.9164105, 46.3934486 ], + [ 6.9161094, 46.3935768 ], + [ 6.9158485, 46.3936727 ], + [ 6.9155485, 46.3937676 ], + [ 6.9150996, 46.3938915 ], + [ 6.9148709, 46.3940101 ], + [ 6.9146544, 46.3941342 ], + [ 6.9145145, 46.3942288 ], + [ 6.9143279, 46.3943592 ], + [ 6.914099, 46.3945058 ], + [ 6.9138958, 46.3946001 ], + [ 6.9136025, 46.3946744 ], + [ 6.9131394, 46.3946632 ], + [ 6.9125613999999995, 46.3945211 ], + [ 6.9119999, 46.3944304 ], + [ 6.9115192, 46.394313 ], + [ 6.9111874, 46.3941782 ], + [ 6.9109338, 46.3940926 ], + [ 6.910642, 46.3940201 ], + [ 6.9103902, 46.3939299 ], + [ 6.9099998, 46.3937157 ], + [ 6.9096264, 46.3935017 ], + [ 6.9093881, 46.3933557 ], + [ 6.9090081, 46.3931641 ], + [ 6.9085849, 46.3929831 ], + [ 6.9082012, 46.3928257 ], + [ 6.9078041, 46.3926386 ], + [ 6.9073975999999995, 46.3924091 ], + [ 6.9071269, 46.3921766 ], + [ 6.9068689, 46.3918839 ], + [ 6.9066402, 46.3915914 ], + [ 6.9064295, 46.391361 ], + [ 6.9061294, 46.3910572 ], + [ 6.9058206, 46.3909785 ], + [ 6.9044375, 46.3914847 ], + [ 6.9040859999999995, 46.3915334 ], + [ 6.9036292, 46.3915511 ], + [ 6.9033044, 46.3915217 ], + [ 6.9029314, 46.3914435 ], + [ 6.9017377, 46.3912011 ], + [ 6.8994823, 46.3907659 ], + [ 6.8964662, 46.3898635 ], + [ 6.8944392, 46.3895874 ], + [ 6.8939288, 46.3894294 ], + [ 6.8933982, 46.3892766 ], + [ 6.8929529, 46.3891143 ], + [ 6.8924710000000005, 46.3889609 ], + [ 6.8920429, 46.3888707 ], + [ 6.8915597, 46.3887639 ], + [ 6.8911961, 46.3886399 ], + [ 6.8909196, 46.3885774 ], + [ 6.8906102, 46.3884868 ], + [ 6.8903986, 46.3884372 ], + [ 6.8901948, 46.3884254 ], + [ 6.8900476, 46.3884409 ], + [ 6.8887238, 46.3886162 ], + [ 6.8876003, 46.388751 ], + [ 6.8870044, 46.3887841 ], + [ 6.8867116, 46.3888106 ], + [ 6.8861521, 46.3888627 ], + [ 6.8853707, 46.3889902 ], + [ 6.8847853, 46.3890306 ], + [ 6.8844444, 46.3890748 ], + [ 6.8840747, 46.3890748 ], + [ 6.8837341, 46.389012 ], + [ 6.883442, 46.3889736 ], + [ 6.8830504, 46.3889618 ], + [ 6.8824575, 46.3889391 ], + [ 6.881293, 46.3890323 ], + [ 6.8810989, 46.3886228 ], + [ 6.8807738, 46.3884765 ], + [ 6.8805236, 46.3883178 ], + [ 6.8803449, 46.3882278 ], + [ 6.8801168, 46.3880522 ], + [ 6.8799618, 46.3879507 ], + [ 6.8796283, 46.3878267 ], + [ 6.8793916, 46.3878561 ], + [ 6.8784744, 46.3878444 ], + [ 6.8780673, 46.3878432 ], + [ 6.877667, 46.3878205 ], + [ 6.8774225, 46.3878095 ], + [ 6.8772603, 46.3877799 ], + [ 6.8772444, 46.3876673 ], + [ 6.876733, 46.3876225 ], + [ 6.8761697999999996, 46.3876287 ], + [ 6.8756978, 46.387621 ], + [ 6.8752202, 46.3876096 ], + [ 6.8716336, 46.3852832 ], + [ 6.8722151, 46.384687 ], + [ 6.8716409, 46.3844273 ], + [ 6.8716288, 46.3844218 ], + [ 6.871028, 46.3841503 ], + [ 6.8716957999999995, 46.38338 ], + [ 6.8719962, 46.3829298 ], + [ 6.8723224, 46.3825023 ], + [ 6.8727954, 46.3820189 ], + [ 6.8733585, 46.3816187 ], + [ 6.8740745, 46.3811195 ], + [ 6.8749112, 46.3807368 ], + [ 6.8753189, 46.3805912 ], + [ 6.875491, 46.3805238 ], + [ 6.8755628, 46.3805007 ], + [ 6.8755892, 46.3804558 ], + [ 6.8755728, 46.3803928 ], + [ 6.8755626, 46.3803541 ], + [ 6.8755467, 46.3802415 ], + [ 6.8754921, 46.3801854 ], + [ 6.8753187, 46.3802187 ], + [ 6.8750758, 46.3802194 ], + [ 6.8748479, 46.3802524 ], + [ 6.8746947, 46.3802229 ], + [ 6.8745807, 46.3801666 ], + [ 6.8744734, 46.3800202 ], + [ 6.8743543, 46.3798289 ], + [ 6.8741911, 46.3796598 ], + [ 6.8739793, 46.3794798 ], + [ 6.8738177, 46.3793216 ], + [ 6.8735305, 46.3791258 ], + [ 6.8733529, 46.3790134 ], + [ 6.873103, 46.3789005 ], + [ 6.8727445, 46.3787648 ], + [ 6.872392, 46.3786001 ], + [ 6.8721981, 46.3784938 ], + [ 6.8718815, 46.3783186 ], + [ 6.8716392, 46.378179 ], + [ 6.8713363, 46.3780137 ], + [ 6.8711094, 46.3778785 ], + [ 6.8708259, 46.3777206 ], + [ 6.870589, 46.3776078 ], + [ 6.8703293, 46.3775067 ], + [ 6.8699977, 46.3772881 ], + [ 6.8697041, 46.3770852 ], + [ 6.869533, 46.3769719 ], + [ 6.8692495000000005, 46.3767356 ], + [ 6.8692724, 46.3766457 ], + [ 6.8694684, 46.3765442 ], + [ 6.8697772, 46.3764548 ], + [ 6.8702334, 46.3761782 ], + [ 6.8706901, 46.3759305 ], + [ 6.8712523, 46.3756113 ], + [ 6.8718281999999995, 46.3752218 ], + [ 6.8726589, 46.3747052 ], + [ 6.8732554, 46.3742097 ], + [ 6.8738976, 46.3736993 ], + [ 6.8745644, 46.37308 ], + [ 6.8751119, 46.3725286 ], + [ 6.8756881, 46.3719485 ], + [ 6.8759481000000005, 46.3715432 ], + [ 6.8755754, 46.3714531 ], + [ 6.8753413, 46.3713063 ], + [ 6.8752014, 46.371167 ], + [ 6.8750886, 46.3709973 ], + [ 6.8749413, 46.3708733 ], + [ 6.8746915, 46.3708334 ], + [ 6.8743172, 46.3708171 ], + [ 6.8740245, 46.3708391 ], + [ 6.8735437, 46.3708322 ], + [ 6.8732588, 46.3708163 ], + [ 6.8728688, 46.370827 ], + [ 6.8727883, 46.3708382 ], + [ 6.8728110000000004, 46.3709167 ], + [ 6.8728593, 46.371041 ], + [ 6.8728261, 46.3711803 ], + [ 6.8726959999999995, 46.3711986 ], + [ 6.8724862, 46.3713 ], + [ 6.8723161, 46.3714126 ], + [ 6.8722242, 46.3715021 ], + [ 6.8721259, 46.3716528 ], + [ 6.8719964000000004, 46.3717726 ], + [ 6.8717303, 46.3718892 ], + [ 6.8714438, 46.3719452 ], + [ 6.8711183, 46.3720012 ], + [ 6.870906, 46.3720308 ], + [ 6.8705483, 46.372064 ], + [ 6.8703205, 46.3720908 ], + [ 6.8701574, 46.3721583 ], + [ 6.8699787, 46.3722366 ], + [ 6.8697193, 46.3724125 ], + [ 6.8679412, 46.3715553 ], + [ 6.8675237, 46.3717916 ], + [ 6.8671251, 46.3719983 ], + [ 6.8667756, 46.372173599999996 ], + [ 6.8663028, 46.3723305 ], + [ 6.8658893, 46.3724139 ], + [ 6.8653841, 46.3725553 ], + [ 6.8648044, 46.37269 ], + [ 6.8644153, 46.3727681 ], + [ 6.8640737, 46.3728807 ], + [ 6.8636503, 46.3730539 ], + [ 6.8633236, 46.3732222 ], + [ 6.8631291, 46.3733302 ], + [ 6.8627477, 46.3736 ], + [ 6.8624544, 46.3738296 ], + [ 6.8622097, 46.3740839 ], + [ 6.8619073, 46.3743361 ], + [ 6.8616402999999995, 46.3746171 ], + [ 6.8613625, 46.3749279 ], + [ 6.8611188, 46.375157 ], + [ 6.8608583, 46.3754381 ], + [ 6.8605646, 46.375783 ], + [ 6.8602881, 46.3760461 ], + [ 6.8600017, 46.3763164 ], + [ 6.8597402, 46.3765363 ], + [ 6.8593992, 46.3767504 ], + [ 6.8591152, 46.3769461 ], + [ 6.8588608, 46.377121 ], + [ 6.8584695, 46.3773961 ], + [ 6.8581864, 46.3775827 ], + [ 6.8580568, 46.377699 ], + [ 6.8578773, 46.3778564 ], + [ 6.8577857, 46.3779918 ], + [ 6.8577208, 46.3781336 ], + [ 6.8576383, 46.3783293 ], + [ 6.8575827, 46.3785161 ], + [ 6.8575502, 46.3787418 ], + [ 6.857524, 46.3789216 ], + [ 6.8575234, 46.3790457 ], + [ 6.8574915, 46.3792975 ], + [ 6.8574671, 46.3794556 ], + [ 6.8573603, 46.3796421 ], + [ 6.8573269, 46.3797258 ], + [ 6.8572296, 46.3797882 ], + [ 6.8569683, 46.3799163 ], + [ 6.8568224, 46.3799571 ], + [ 6.8565226, 46.3800355 ], + [ 6.856166, 46.3801075 ], + [ 6.8559377, 46.3801809 ], + [ 6.8556665, 46.3802488 ], + [ 6.8554005, 46.3803546 ], + [ 6.8552763, 46.3805006 ], + [ 6.8551613, 46.3806871 ], + [ 6.8551293, 46.380793 ], + [ 6.855161, 46.3809506 ], + [ 6.8550625, 46.3814189 ], + [ 6.854998, 46.3817568 ], + [ 6.8548435, 46.3823011 ], + [ 6.8546805, 46.3826503 ], + [ 6.8542948, 46.383314 ], + [ 6.8537979, 46.3840348 ], + [ 6.8532762, 46.3847994 ], + [ 6.8530388, 46.3851104 ], + [ 6.8528598, 46.3852156 ], + [ 6.8525998999999995, 46.3853572 ], + [ 6.8523389, 46.3854476 ], + [ 6.8520387, 46.3856269 ], + [ 6.8518487, 46.3857662 ], + [ 6.851638, 46.3859424 ], + [ 6.8514684, 46.3860773 ], + [ 6.8512474999999995, 46.3863695 ], + [ 6.8511097, 46.3865657 ], + [ 6.8509146, 46.3867231 ], + [ 6.8505785, 46.3867672 ], + [ 6.8502202, 46.3868418 ], + [ 6.8500575999999995, 46.3868526 ], + [ 6.8497985, 46.3869197 ], + [ 6.849596, 46.3870095 ], + [ 6.8494165, 46.3870814 ], + [ 6.8491134, 46.3872345 ], + [ 6.8489341, 46.3873577 ], + [ 6.8487398, 46.3874368 ], + [ 6.848521, 46.3874635 ], + [ 6.8482449, 46.3875197 ], + [ 6.847903, 46.3875036 ], + [ 6.8475997, 46.3875253 ], + [ 6.847169, 46.3875303 ], + [ 6.8465746, 46.3874912 ], + [ 6.8461029, 46.3874617 ], + [ 6.8455988, 46.3874159 ], + [ 6.8451747, 46.387411 ], + [ 6.8448499, 46.3873877 ], + [ 6.8446228, 46.3873542 ], + [ 6.8445253, 46.3872799 ], + [ 6.8442978, 46.3871284 ], + [ 6.8439735, 46.3869864 ], + [ 6.8436722, 46.3868957 ], + [ 6.8432736, 46.3867947 ], + [ 6.8429416, 46.3866815 ], + [ 6.8426326, 46.3865574 ], + [ 6.8422595, 46.3864287 ], + [ 6.8417544, 46.3862479 ], + [ 6.8415015, 46.3861916 ], + [ 6.8411435, 46.38609 ], + [ 6.8409481, 46.3860556 ], + [ 6.8406716, 46.3860038 ], + [ 6.8404864, 46.3859245 ], + [ 6.8402331, 46.3857505 ], + [ 6.8400148, 46.3856602 ], + [ 6.8398048, 46.3856196 ], + [ 6.8395653, 46.3856038 ], + [ 6.8393063, 46.3855071 ], + [ 6.8390621, 46.3854051 ], + [ 6.8388013999999995, 46.3853147 ], + [ 6.8385417, 46.3852134 ], + [ 6.8383474, 46.385152 ], + [ 6.8381944, 46.3851001 ], + [ 6.8378853, 46.3849868 ], + [ 6.8375927, 46.3848521 ], + [ 6.8373163, 46.3847949 ], + [ 6.8370791, 46.3847163 ], + [ 6.8368454, 46.3846143 ], + [ 6.8366403, 46.3844233 ], + [ 6.8365273, 46.3843552 ], + [ 6.8363093, 46.38431 ], + [ 6.8361294, 46.3843324 ], + [ 6.835739, 46.3843726 ], + [ 6.8354376, 46.3843718 ], + [ 6.8351696, 46.3842814 ], + [ 6.8349824, 46.3841733 ], + [ 6.8348829, 46.3840558 ], + [ 6.8348125, 46.3839592 ], + [ 6.8346409999999995, 46.3838918 ], + [ 6.8343255, 46.3838414 ], + [ 6.833463, 46.3837325 ], + [ 6.8332426, 46.3833903 ], + [ 6.8329815, 46.383496 ], + [ 6.8328188, 46.383514 ], + [ 6.8325525, 46.3834955 ], + [ 6.8323252, 46.3834727 ], + [ 6.831934, 46.3834382 ], + [ 6.8316403999999995, 46.3833925 ], + [ 6.8314519, 46.3833923 ], + [ 6.8312022, 46.3834216 ], + [ 6.8310401, 46.383534 ], + [ 6.8308932, 46.3836575 ], + [ 6.8307136, 46.3837365 ], + [ 6.8304536, 46.3836686 ], + [ 6.8299001, 46.3835369 ], + [ 6.8289902, 46.3832432 ], + [ 6.828394, 46.3830915 ], + [ 6.8280375, 46.3830015 ], + [ 6.8276953, 46.3829447 ], + [ 6.8274455, 46.3829784 ], + [ 6.8273142, 46.3830902 ], + [ 6.8271254, 46.3831918 ], + [ 6.8269405, 46.3831574 ], + [ 6.8265895, 46.3831618 ], + [ 6.8262246, 46.383247 ], + [ 6.8259798, 46.3832628 ], + [ 6.8257916, 46.3832393 ], + [ 6.8256296, 46.3832016 ], + [ 6.8255078000000005, 46.3831226 ], + [ 6.825336, 46.3830767 ], + [ 6.8252159, 46.3830697 ], + [ 6.8250119, 46.383002 ], + [ 6.8248159, 46.3829524 ], + [ 6.8245167, 46.3829633 ], + [ 6.82415, 46.3829964 ], + [ 6.823905, 46.3830303 ], + [ 6.8237263, 46.3831021 ], + [ 6.8236279, 46.3831807 ], + [ 6.8234897, 46.3834058 ], + [ 6.8234476, 46.3836044 ], + [ 6.8235069, 46.3838971 ], + [ 6.8236028, 46.3841045 ], + [ 6.8236738, 46.3842956 ], + [ 6.8237235, 46.3844983 ], + [ 6.8236831, 46.3846897 ], + [ 6.8235515, 46.3848311 ], + [ 6.8234449, 46.3848467 ], + [ 6.8232333, 46.3848015 ], + [ 6.8230974, 46.3846847 ], + [ 6.8229021, 46.3845711 ], + [ 6.8226585, 46.3844862 ], + [ 6.8223978, 46.3845414 ], + [ 6.8216654, 46.384721 ], + [ 6.8212001, 46.3848444 ], + [ 6.8207606, 46.3849788 ], + [ 6.8202978, 46.3850977 ], + [ 6.8200112, 46.3851465 ], + [ 6.8197282, 46.3850973 ], + [ 6.8195393, 46.3849954 ], + [ 6.819306, 46.3849275 ], + [ 6.819069, 46.3849092 ], + [ 6.8187262, 46.3849767 ], + [ 6.8185085, 46.3850393 ], + [ 6.8181823999999995, 46.3852121 ], + [ 6.8178797, 46.3854595 ], + [ 6.8177261, 46.3855379 ], + [ 6.8174498, 46.3856164 ], + [ 6.8171305, 46.3856839 ], + [ 6.8169505, 46.3857242 ], + [ 6.8169032, 46.3858078 ], + [ 6.8167652, 46.3859374 ], + [ 6.8165766, 46.3859489 ], + [ 6.8163585, 46.3859082 ], + [ 6.8160658, 46.3859191 ], + [ 6.8157404, 46.3859588 ], + [ 6.8154707, 46.3860264 ], + [ 6.8153245, 46.3860869 ], + [ 6.8150726, 46.3862285 ], + [ 6.8150458, 46.3863003 ], + [ 6.8149746, 46.3864195 ], + [ 6.8149095, 46.3865659 ], + [ 6.8148325, 46.386757 ], + [ 6.814665, 46.386908 ], + [ 6.8145074, 46.3870539 ], + [ 6.8142792, 46.3871776 ], + [ 6.8138725, 46.3872896 ], + [ 6.8135139, 46.3873794 ], + [ 6.8131813999999995, 46.3874638 ], + [ 6.8127813, 46.3875651 ], + [ 6.8124489, 46.3876433 ], + [ 6.8122211, 46.3876654 ], + [ 6.8118479, 46.3876921 ], + [ 6.8113918, 46.3877822 ], + [ 6.811251, 46.3877994 ], + [ 6.8109743, 46.3879121 ], + [ 6.8107461, 46.3880395 ], + [ 6.8104638, 46.388208 ], + [ 6.809958, 46.3883095 ], + [ 6.8096817, 46.3883871 ], + [ 6.8092806, 46.3884991 ], + [ 6.8089873, 46.3885622 ], + [ 6.8085249, 46.3886406 ], + [ 6.8082547, 46.3886742 ], + [ 6.808011, 46.3886737 ], + [ 6.8075546, 46.3887899 ], + [ 6.8072938, 46.3888568 ], + [ 6.8069624, 46.3889809 ], + [ 6.8067339, 46.3890705 ], + [ 6.8064748, 46.3891329 ], + [ 6.8062457, 46.3891263 ], + [ 6.8058945, 46.3891432 ], + [ 6.8055799, 46.3891585 ], + [ 6.8053672, 46.3892103 ], + [ 6.8052373, 46.3893337 ], + [ 6.805106, 46.3895139 ], + [ 6.805014, 46.3897391 ], + [ 6.8049254, 46.3899527 ], + [ 6.8048111, 46.3902049 ], + [ 6.8047466, 46.3903692 ], + [ 6.8047353, 46.3905715 ], + [ 6.8047453, 46.3908307 ], + [ 6.8047501, 46.3910448 ], + [ 6.8047333, 46.3913038 ], + [ 6.8046289, 46.3915443 ], + [ 6.8045203, 46.3917308 ], + [ 6.8044557999999995, 46.3918932 ], + [ 6.8044378, 46.3921135 ], + [ 6.8044545, 46.3923503 ], + [ 6.8044536, 46.3925014 ], + [ 6.8044148, 46.3926253 ], + [ 6.8041759, 46.3926878 ], + [ 6.8040299, 46.3927329 ], + [ 6.8041364, 46.3929395 ], + [ 6.8043373, 46.3931313 ], + [ 6.8045102, 46.3932223 ], + [ 6.804662, 46.3932331 ], + [ 6.8046793, 46.3932179 ], + [ 6.8051186, 46.3933759 ], + [ 6.8053455, 46.393432 ], + [ 6.8055829, 46.3935611 ], + [ 6.8056164, 46.3936171 ], + [ 6.8052463, 46.3939954 ], + [ 6.8053363000000004, 46.3940833 ], + [ 6.8132318, 46.4106265 ], + [ 6.8211321, 46.427169 ], + [ 6.8211296, 46.4271701 ], + [ 6.8150472, 46.4480324 ], + [ 6.8089603, 46.4688944 ], + [ 6.8091397, 46.4689332 ], + [ 6.8092521, 46.4690634 ], + [ 6.8092694, 46.4692547 ], + [ 6.8104168, 46.4698219 ], + [ 6.8105673, 46.4703175 ], + [ 6.8106707, 46.4703811 ], + [ 6.8108768, 46.4703603 ], + [ 6.8119350999999995, 46.4702531 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "WZV0022", + "country" : "CHE", + "name" : [ + { + "text" : "Wasser- und Zugvogelreservat Les Grangettes", + "lang" : "de-CH" + }, + { + "text" : "Réserve d'oiseaux d'eau et de migrateurs Les Grangettes", + "lang" : "fr-CH" + }, + { + "text" : "Riserva di uccelli acquatici e migratori Les Grangettes", + "lang" : "it-CH" + }, + { + "text" : "Water Bird and Migratory Bird Reserves Les Grangettes", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.1659299, 46.806065 ], + [ 7.1651337, 46.8050843 ], + [ 7.1638943, 46.804406 ], + [ 7.1594306, 46.8042917 ], + [ 7.1584797, 46.8075624 ], + [ 7.1614655, 46.8093523 ], + [ 7.1659299, 46.806065 ] + ] + ], + "layer" : { + "upper" : 300, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "FR003", + "country" : "CHE", + "name" : [ + { + "text" : "BAPOL", + "lang" : "de-CH" + }, + { + "text" : "BAPOL", + "lang" : "fr-CH" + }, + { + "text" : "BAPOL", + "lang" : "it-CH" + }, + { + "text" : "BAPOL", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Sicherheits-, Justiz- und Sportdirektion (SJSD)", + "lang" : "de-CH" + }, + { + "text" : "Direction de la sécurité, de la justice et du sport (DSJS)", + "lang" : "fr-CH" + }, + { + "text" : "Direction de la sécurité, de la justice et du sport (DSJS)", + "lang" : "it-CH" + }, + { + "text" : "Direction de la sécurité, de la justice et du sport (DSJS)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Die Direktion", + "lang" : "de-CH" + }, + { + "text" : "La direction", + "lang" : "fr-CH" + }, + { + "text" : "La direction", + "lang" : "it-CH" + }, + { + "text" : "La direction", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Elsa Gendre", + "lang" : "de-CH" + }, + { + "text" : "Elsa Gendre", + "lang" : "fr-CH" + }, + { + "text" : "Elsa Gendre", + "lang" : "it-CH" + }, + { + "text" : "Elsa Gendre", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.fr.ch/police-et-securite/criminalite-ordre-public-et-circulation/drones-legislation-et-demandes-de-derogation", + "email" : "dsjs@fr.ch", + "phone" : "0041263051403", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7648025, 47.4806739 ], + [ 7.765179, 47.4806832 ], + [ 7.765308, 47.4805964 ], + [ 7.7654283, 47.4805723 ], + [ 7.7655076, 47.4805725 ], + [ 7.7656109, 47.4805779 ], + [ 7.7656973, 47.4805959 ], + [ 7.7657578, 47.4806383 ], + [ 7.7658588, 47.4807007 ], + [ 7.7674476, 47.4803729 ], + [ 7.7674899, 47.4803484 ], + [ 7.7677359, 47.4801952 ], + [ 7.7678948, 47.4800986 ], + [ 7.7681472, 47.4799475 ], + [ 7.7683292999999995, 47.4798479 ], + [ 7.7685075999999995, 47.479747 ], + [ 7.7686615, 47.4796603 ], + [ 7.7687859, 47.479598 ], + [ 7.7690604, 47.4794622 ], + [ 7.7694229, 47.4792826 ], + [ 7.7697, 47.4791562 ], + [ 7.7699388, 47.4790474 ], + [ 7.7699922, 47.4790212 ], + [ 7.7700348, 47.478989 ], + [ 7.770063, 47.4789629 ], + [ 7.7700981, 47.4789192 ], + [ 7.7701168, 47.4788893 ], + [ 7.7701379, 47.4788418 ], + [ 7.7701414, 47.4787905 ], + [ 7.7702024, 47.4786686 ], + [ 7.7702623, 47.4785842 ], + [ 7.7703456, 47.4785028 ], + [ 7.7704207, 47.4784215 ], + [ 7.7704878, 47.478358 ], + [ 7.7705705, 47.4782937 ], + [ 7.7706615, 47.4782324 ], + [ 7.7707653, 47.4781711 ], + [ 7.7708348, 47.4781372 ], + [ 7.7709068, 47.4781059 ], + [ 7.7709811, 47.4780772 ], + [ 7.7711283, 47.4780338 ], + [ 7.7711433, 47.4780327 ], + [ 7.7711584, 47.4780324 ], + [ 7.7711734, 47.478033 ], + [ 7.7712031, 47.4780367 ], + [ 7.7712175, 47.4780398 ], + [ 7.7712098, 47.4780023 ], + [ 7.7712072, 47.4779324 ], + [ 7.7712106, 47.4779043 ], + [ 7.7710178, 47.4774547 ], + [ 7.7715353, 47.4758394 ], + [ 7.771713, 47.4752676 ], + [ 7.7714286, 47.4752091 ], + [ 7.771221, 47.4751671 ], + [ 7.7708994, 47.4753889 ], + [ 7.7705544, 47.475605 ], + [ 7.7702094, 47.4758884 ], + [ 7.7697682, 47.4760922 ], + [ 7.7690994, 47.4763854 ], + [ 7.7685483, 47.4765983 ], + [ 7.7680647, 47.4767241 ], + [ 7.7680378999999995, 47.4767689 ], + [ 7.768003, 47.4767387 ], + [ 7.7679621999999995, 47.4767484 ], + [ 7.7679102, 47.4768006 ], + [ 7.767642, 47.4768604 ], + [ 7.7678696, 47.4770577 ], + [ 7.7678256, 47.4771337 ], + [ 7.7676134, 47.4771886 ], + [ 7.7673043, 47.4769289 ], + [ 7.7671745, 47.4769574 ], + [ 7.767182, 47.4769695 ], + [ 7.7672489, 47.4770742 ], + [ 7.7673589, 47.4772544 ], + [ 7.7673943, 47.4772887 ], + [ 7.7674298, 47.4773284 ], + [ 7.7675613, 47.4775364 ], + [ 7.7675294, 47.4775527 ], + [ 7.7674573, 47.4774391 ], + [ 7.7672805, 47.4774971 ], + [ 7.7671091, 47.477311 ], + [ 7.7670329, 47.4772284 ], + [ 7.7669393, 47.4772119 ], + [ 7.7667776, 47.4771828 ], + [ 7.7667157, 47.4771744 ], + [ 7.7666354, 47.4771746 ], + [ 7.7665136, 47.4771829 ], + [ 7.7664376, 47.4772045 ], + [ 7.7661575, 47.4772971 ], + [ 7.7661457, 47.4773027 ], + [ 7.7659693999999995, 47.4773865 ], + [ 7.765897, 47.4774209 ], + [ 7.7658585, 47.4774392 ], + [ 7.7657395000000005, 47.4774854 ], + [ 7.7655124, 47.4775737 ], + [ 7.7654615, 47.4775934 ], + [ 7.7653853, 47.4776232 ], + [ 7.7652179, 47.4776885 ], + [ 7.7651019, 47.4777338 ], + [ 7.7648046, 47.4778386 ], + [ 7.764781, 47.477847 ], + [ 7.7644247, 47.4779373 ], + [ 7.7642658, 47.4780076 ], + [ 7.7640878, 47.4780611 ], + [ 7.7636371, 47.478182 ], + [ 7.7636313, 47.4781836 ], + [ 7.7635532, 47.4782017 ], + [ 7.7633995, 47.4782371 ], + [ 7.7633044, 47.4782589 ], + [ 7.7630897999999995, 47.4783083 ], + [ 7.7629589, 47.4783214 ], + [ 7.7629502, 47.4783222 ], + [ 7.7627948, 47.4783408 ], + [ 7.7627098, 47.478351 ], + [ 7.7626987, 47.4783545 ], + [ 7.7625951, 47.4783871 ], + [ 7.7624827, 47.4784225 ], + [ 7.762178, 47.4785608 ], + [ 7.762132, 47.4785816 ], + [ 7.7617317, 47.478735 ], + [ 7.7616755, 47.4787532 ], + [ 7.7615863, 47.4787821 ], + [ 7.7615365, 47.4787982 ], + [ 7.7615138, 47.4788056 ], + [ 7.7614339, 47.4788465 ], + [ 7.7613768, 47.4788758 ], + [ 7.7611439, 47.4789075 ], + [ 7.7609948, 47.4788773 ], + [ 7.760735, 47.4787724 ], + [ 7.7606895, 47.4787558 ], + [ 7.7606177, 47.478785 ], + [ 7.7605752, 47.4788021 ], + [ 7.760461, 47.4787026 ], + [ 7.7604358, 47.4786807 ], + [ 7.7602484, 47.4785496 ], + [ 7.7601665, 47.4784788 ], + [ 7.7600771, 47.4783917 ], + [ 7.7599345, 47.4782746 ], + [ 7.7592885, 47.4779037 ], + [ 7.7589862, 47.4778094 ], + [ 7.7587992, 47.477751 ], + [ 7.7587897, 47.477749 ], + [ 7.7585289, 47.477692 ], + [ 7.7585011999999995, 47.4777591 ], + [ 7.7583949, 47.4780169 ], + [ 7.758288, 47.4782831 ], + [ 7.7585113, 47.4783628 ], + [ 7.7584078, 47.4785467 ], + [ 7.7582871, 47.4786682 ], + [ 7.7584885, 47.478721 ], + [ 7.7585882999999995, 47.4787445 ], + [ 7.7584501, 47.4790902 ], + [ 7.758356, 47.4792942 ], + [ 7.7583481, 47.4793184 ], + [ 7.7584218, 47.4793592 ], + [ 7.7585222, 47.4794138 ], + [ 7.7587674, 47.4791859 ], + [ 7.7589527, 47.4790196 ], + [ 7.7593827, 47.4792453 ], + [ 7.7595977, 47.4794607 ], + [ 7.7597691, 47.4796423 ], + [ 7.7600592, 47.4795129 ], + [ 7.7602147, 47.4794319 ], + [ 7.7605949, 47.4792386 ], + [ 7.7608956, 47.4792725 ], + [ 7.7609422, 47.4792725 ], + [ 7.7609366, 47.4791842 ], + [ 7.7612585, 47.4791642 ], + [ 7.7615837, 47.4794064 ], + [ 7.7618917, 47.479636 ], + [ 7.7620801, 47.4797782 ], + [ 7.7622084000000005, 47.4798716 ], + [ 7.7622387, 47.4801794 ], + [ 7.7623549, 47.4802406 ], + [ 7.7630603, 47.48042 ], + [ 7.7639779, 47.4806541 ], + [ 7.7648025, 47.4806739 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns076", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Grammel", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Grammel", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Grammel", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Grammel", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.1053821, 47.1706875 ], + [ 9.1052185, 47.1683356 ], + [ 9.1048745, 47.1659927 ], + [ 9.1043513, 47.1636654 ], + [ 9.1036503, 47.1613599 ], + [ 9.1027734, 47.1590825 ], + [ 9.101723, 47.1568396 ], + [ 9.1005021, 47.1546373 ], + [ 9.099114, 47.1524815 ], + [ 9.0975625, 47.1503782 ], + [ 9.0958519, 47.1483332 ], + [ 9.0939869, 47.146352 ], + [ 9.0919727, 47.1444401 ], + [ 9.0898146, 47.1426027 ], + [ 9.0875188, 47.140844799999996 ], + [ 9.0850914, 47.1391713 ], + [ 9.0825391, 47.1375867 ], + [ 9.0798689, 47.1360953 ], + [ 9.0770881, 47.1347013 ], + [ 9.0742044, 47.1334085 ], + [ 9.0712256, 47.1322203 ], + [ 9.0681599, 47.13114 ], + [ 9.0650157, 47.1301707 ], + [ 9.0618016, 47.1293149 ], + [ 9.0585263, 47.1285749 ], + [ 9.0551988, 47.1279529 ], + [ 9.0518283, 47.1274505 ], + [ 9.0484239, 47.127069 ], + [ 9.044995, 47.1268096 ], + [ 9.0415509, 47.1266729 ], + [ 9.038101, 47.1266593 ], + [ 9.0346548, 47.1267689 ], + [ 9.0312218, 47.1270013 ], + [ 9.0278112, 47.1273559 ], + [ 9.0244324, 47.1278317 ], + [ 9.0210946, 47.1284275 ], + [ 9.0178071, 47.1291416 ], + [ 9.0145787, 47.129972 ], + [ 9.0114183, 47.1309166 ], + [ 9.0083345, 47.1319726 ], + [ 9.0053358, 47.1331372 ], + [ 9.0024305, 47.1344073 ], + [ 8.9996263, 47.1357793 ], + [ 8.9969311, 47.1372495 ], + [ 8.9943522, 47.1388139 ], + [ 8.9918967, 47.1404682 ], + [ 8.9895712, 47.1422079 ], + [ 8.9873823, 47.1440282 ], + [ 8.9853358, 47.1459241 ], + [ 8.9834374, 47.1478905 ], + [ 8.9816924, 47.1499219 ], + [ 8.9801054, 47.1520128 ], + [ 8.9786809, 47.1541575 ], + [ 8.9774228, 47.1563501 ], + [ 8.9763345, 47.1585846 ], + [ 8.9754191, 47.1608548 ], + [ 8.9746791, 47.1631547 ], + [ 8.9741166, 47.1654777 ], + [ 8.973733, 47.1678177 ], + [ 8.9735295, 47.1701682 ], + [ 8.9735066, 47.1725227 ], + [ 8.9736645, 47.1748748 ], + [ 8.9740028, 47.177218 ], + [ 8.9745204, 47.1795459 ], + [ 8.9752161, 47.1818522 ], + [ 8.976088, 47.1841305 ], + [ 8.9771336, 47.1863745 ], + [ 8.9783502, 47.1885782 ], + [ 8.9797343, 47.1907354 ], + [ 8.9812823, 47.1928402 ], + [ 8.982990000000001, 47.1948869 ], + [ 8.9848525, 47.1968699 ], + [ 8.986865, 47.1987836 ], + [ 8.9890217, 47.200623 ], + [ 8.9913169, 47.2023828 ], + [ 8.9937442, 47.2040583 ], + [ 8.9962971, 47.2056448 ], + [ 8.9989684, 47.2071381 ], + [ 9.0017509, 47.208534 ], + [ 9.0046369, 47.2098286 ], + [ 9.0076185, 47.2110185 ], + [ 9.0106876, 47.2121004 ], + [ 9.0138356, 47.2130712 ], + [ 9.0170541, 47.2139283 ], + [ 9.020334, 47.2146694 ], + [ 9.0236665, 47.2152924 ], + [ 9.0270423, 47.2157957 ], + [ 9.0304521, 47.2161777 ], + [ 9.0338867, 47.2164376 ], + [ 9.0373366, 47.2165745 ], + [ 9.0407923, 47.2165881 ], + [ 9.0442442, 47.2164784 ], + [ 9.047683, 47.2162456 ], + [ 9.0510991, 47.2158904 ], + [ 9.0544833, 47.2154138 ], + [ 9.0578261, 47.2148171 ], + [ 9.0611184, 47.2141019 ], + [ 9.0643511, 47.2132701 ], + [ 9.0675155, 47.2123242 ], + [ 9.0706027, 47.2112666 ], + [ 9.0736043, 47.2101002 ], + [ 9.0765121, 47.2088284 ], + [ 9.0793181, 47.2074545 ], + [ 9.0820146, 47.2059824 ], + [ 9.0845942, 47.2044161 ], + [ 9.0870498, 47.2027598 ], + [ 9.0893747, 47.2010182 ], + [ 9.0915625, 47.199196 ], + [ 9.0936072, 47.1972982 ], + [ 9.0955033, 47.1953301 ], + [ 9.0972455, 47.1932969 ], + [ 9.0988291, 47.1912044 ], + [ 9.1002498, 47.1890583 ], + [ 9.1015036, 47.1868644 ], + [ 9.1025872, 47.1846287 ], + [ 9.1034976, 47.1823574 ], + [ 9.1042324, 47.1800568 ], + [ 9.1047895, 47.1777331 ], + [ 9.1051674, 47.1753927 ], + [ 9.1053651, 47.173042 ], + [ 9.1053821, 47.1706875 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZX001", + "country" : "CHE", + "name" : [ + { + "text" : "LSZX Schänis", + "lang" : "de-CH" + }, + { + "text" : "LSZX Schänis", + "lang" : "fr-CH" + }, + { + "text" : "LSZX Schänis", + "lang" : "it-CH" + }, + { + "text" : "LSZX Schänis", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Flugplatz Schänis", + "lang" : "de-CH" + }, + { + "text" : "Flugplatz Schänis", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatz Schänis", + "lang" : "it-CH" + }, + { + "text" : "Flugplatz Schänis", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Lukas Zeitner", + "lang" : "de-CH" + }, + { + "text" : "Lukas Zeitner", + "lang" : "fr-CH" + }, + { + "text" : "Lukas Zeitner", + "lang" : "it-CH" + }, + { + "text" : "Lukas Zeitner", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.flugplatz-schaenis.ch", + "email" : "flugplatzleiter@flugplatz-schaenis.ch", + "phone" : "0041552505000", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT12H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.5177799, 46.519695 ], + [ 6.517777, 46.5195537 ], + [ 6.5177633, 46.5194127 ], + [ 6.517739, 46.5192724 ], + [ 6.517704, 46.5191332 ], + [ 6.5176586, 46.5189955 ], + [ 6.5176028, 46.5188595 ], + [ 6.5175367, 46.5187258 ], + [ 6.5174606, 46.5185946 ], + [ 6.5173746999999995, 46.5184664 ], + [ 6.5172792, 46.5183415 ], + [ 6.5171743, 46.5182201 ], + [ 6.5170604, 46.5181028 ], + [ 6.5169377, 46.5179897 ], + [ 6.5168066, 46.5178812 ], + [ 6.5166675, 46.5177776 ], + [ 6.5165207, 46.5176791 ], + [ 6.5163666, 46.5175861 ], + [ 6.5162057, 46.5174988 ], + [ 6.5160385, 46.5174174 ], + [ 6.5158652, 46.5173421 ], + [ 6.5156865, 46.5172733 ], + [ 6.5155028, 46.517211 ], + [ 6.5153147, 46.5171554 ], + [ 6.5151226, 46.5171066 ], + [ 6.514927, 46.5170649 ], + [ 6.5147286, 46.5170303 ], + [ 6.5145278, 46.5170029 ], + [ 6.5143252, 46.5169829 ], + [ 6.5141214, 46.5169701 ], + [ 6.5139169, 46.5169648 ], + [ 6.5137122, 46.5169668 ], + [ 6.513508, 46.5169762 ], + [ 6.5133048, 46.516993 ], + [ 6.5131031, 46.5170171 ], + [ 6.5129036, 46.5170485 ], + [ 6.5127067, 46.517087 ], + [ 6.5125129, 46.5171326 ], + [ 6.5123229, 46.5171851 ], + [ 6.5121372, 46.5172445 ], + [ 6.5119562, 46.5173104 ], + [ 6.5117804, 46.5173828 ], + [ 6.5116104, 46.5174615 ], + [ 6.5114465, 46.5175461 ], + [ 6.5112893, 46.5176366 ], + [ 6.5111392, 46.5177327 ], + [ 6.5109966, 46.517834 ], + [ 6.5108618, 46.5179404 ], + [ 6.5107353, 46.5180514 ], + [ 6.5106174, 46.5181669 ], + [ 6.5105084, 46.5182865 ], + [ 6.5104086, 46.5184099 ], + [ 6.5103183, 46.5185366 ], + [ 6.5102378, 46.5186665 ], + [ 6.5101672, 46.5187991 ], + [ 6.5101067, 46.5189341 ], + [ 6.5100566, 46.5190711 ], + [ 6.5100169, 46.5192097 ], + [ 6.5099878, 46.5193495 ], + [ 6.5099693, 46.5194903 ], + [ 6.5099616000000005, 46.5196314 ], + [ 6.5099645, 46.5197727 ], + [ 6.5099781, 46.5199137 ], + [ 6.5100024, 46.5200539 ], + [ 6.5100374, 46.5201932 ], + [ 6.5100828, 46.5203309 ], + [ 6.5101386, 46.5204669 ], + [ 6.5102046, 46.5206006 ], + [ 6.5102807, 46.5207317 ], + [ 6.5103666, 46.52086 ], + [ 6.5104622, 46.5209849 ], + [ 6.510567, 46.5211062 ], + [ 6.5106809, 46.5212236 ], + [ 6.5108036, 46.5213367 ], + [ 6.5109347, 46.5214452 ], + [ 6.5110738, 46.5215489 ], + [ 6.5112206, 46.5216473 ], + [ 6.5113747, 46.5217403 ], + [ 6.5115356, 46.5218277 ], + [ 6.5117028999999995, 46.5219091 ], + [ 6.5118761, 46.5219843 ], + [ 6.5120548, 46.5220532 ], + [ 6.5122385, 46.5221155 ], + [ 6.5124267, 46.5221711 ], + [ 6.5126188, 46.5222199 ], + [ 6.5128143, 46.5222616 ], + [ 6.5130128, 46.5222962 ], + [ 6.5132136, 46.5223236 ], + [ 6.5134162, 46.5223436 ], + [ 6.51362, 46.5223564 ], + [ 6.5138245999999995, 46.5223618 ], + [ 6.5140291999999995, 46.5223597 ], + [ 6.5142335, 46.5223503 ], + [ 6.5144367, 46.5223335 ], + [ 6.5146384, 46.5223094 ], + [ 6.514838, 46.5222781 ], + [ 6.5150349, 46.5222395 ], + [ 6.5152286, 46.5221939 ], + [ 6.5154186, 46.5221414 ], + [ 6.5156044, 46.5220821 ], + [ 6.5157854, 46.5220161 ], + [ 6.5159612, 46.5219438 ], + [ 6.5161312, 46.5218651 ], + [ 6.5162949999999995, 46.5217804 ], + [ 6.5164522, 46.5216899 ], + [ 6.5166023, 46.5215939 ], + [ 6.516745, 46.5214925 ], + [ 6.5168797, 46.5213862 ], + [ 6.5170062, 46.5212751 ], + [ 6.5171242, 46.5211596 ], + [ 6.5172331, 46.52104 ], + [ 6.5173328999999995, 46.5209167 ], + [ 6.5174232, 46.5207899 ], + [ 6.5175038, 46.52066 ], + [ 6.5175744, 46.5205273 ], + [ 6.5176348, 46.5203923 ], + [ 6.5176849, 46.520255399999996 ], + [ 6.5177246, 46.5201167 ], + [ 6.5177537, 46.5199769 ], + [ 6.5177721, 46.5198362 ], + [ 6.5177799, 46.519695 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "TUI0001", + "country" : "CHE", + "name" : [ + { + "text" : "Prison de la Tuilière", + "lang" : "de-CH" + }, + { + "text" : "Prison de la Tuilière", + "lang" : "fr-CH" + }, + { + "text" : "Prison de la Tuilière", + "lang" : "it-CH" + }, + { + "text" : "Prison de la Tuilière", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Direction du Service pénitentiaire Vaud", + "lang" : "de-CH" + }, + { + "text" : "Direction du Service pénitentiaire Vaud", + "lang" : "fr-CH" + }, + { + "text" : "Direction du Service pénitentiaire Vaud", + "lang" : "it-CH" + }, + { + "text" : "Direction du Service pénitentiaire Vaud", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/toutes-les-autorites/departements/departement-de-la-jeunesse-de-lenvironnement-et-de-la-securite-djes/service-penitentiaire-spen/", + "email" : "info.spen@vd.ch", + "phone" : "0041213164801", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.8292602, 47.3018782 ], + [ 8.8307804, 47.3019687 ], + [ 8.832041199999999, 47.3020428 ], + [ 8.832689, 47.3020816 ], + [ 8.8339301, 47.3021552 ], + [ 8.8339391, 47.3021276 ], + [ 8.8342414, 47.3021731 ], + [ 8.8349652, 47.3022135 ], + [ 8.8355129, 47.3022065 ], + [ 8.8355087, 47.3021551 ], + [ 8.8351854, 47.3021541 ], + [ 8.8351892, 47.3017738 ], + [ 8.8351962, 47.301774 ], + [ 8.8352031, 47.3017742 ], + [ 8.8352101, 47.3017743 ], + [ 8.8352171, 47.3017743 ], + [ 8.8352241, 47.3017743 ], + [ 8.835231, 47.3017742 ], + [ 8.835238, 47.301774 ], + [ 8.835231199999999, 47.3017201 ], + [ 8.8352101, 47.3017204 ], + [ 8.835189, 47.3017197 ], + [ 8.835168, 47.3017183 ], + [ 8.8351472, 47.301716 ], + [ 8.8351266, 47.3017128 ], + [ 8.8351063, 47.3017089 ], + [ 8.8350864, 47.3017041 ], + [ 8.8350669, 47.3016986 ], + [ 8.8350479, 47.3016923 ], + [ 8.8350279, 47.3016846 ], + [ 8.8350086, 47.301676 ], + [ 8.8349902, 47.3016666 ], + [ 8.8349728, 47.3016564 ], + [ 8.8349563, 47.3016455 ], + [ 8.8349408, 47.3016339 ], + [ 8.8349265, 47.3016216 ], + [ 8.8349134, 47.3016087 ], + [ 8.8349015, 47.3015953 ], + [ 8.8348621, 47.3015474 ], + [ 8.8348309, 47.3015095 ], + [ 8.8348259, 47.3015039 ], + [ 8.8348216, 47.3014981 ], + [ 8.834817900000001, 47.301492 ], + [ 8.8348148, 47.3014858 ], + [ 8.8348125, 47.3014795 ], + [ 8.8348108, 47.301473 ], + [ 8.8348098, 47.3014665 ], + [ 8.8348095, 47.30146 ], + [ 8.834810000000001, 47.3014535 ], + [ 8.8348111, 47.301447 ], + [ 8.8348129, 47.3014405 ], + [ 8.8348154, 47.3014342 ], + [ 8.8348186, 47.3014281 ], + [ 8.8348225, 47.3014221 ], + [ 8.8348269, 47.3014163 ], + [ 8.834832, 47.3014107 ], + [ 8.8348377, 47.3014055 ], + [ 8.8348439, 47.3014005 ], + [ 8.8348656, 47.3013854 ], + [ 8.834886000000001, 47.3013696 ], + [ 8.8349051, 47.301353 ], + [ 8.8349228, 47.3013357 ], + [ 8.8349391, 47.3013178 ], + [ 8.834954, 47.3012993 ], + [ 8.8349673, 47.3012803 ], + [ 8.8350084, 47.3012236 ], + [ 8.8350211, 47.301206 ], + [ 8.8350333, 47.3011882 ], + [ 8.8350449, 47.3011703 ], + [ 8.8350561, 47.3011522 ], + [ 8.8350667, 47.3011339 ], + [ 8.8350768, 47.3011155 ], + [ 8.8350864, 47.301097 ], + [ 8.8350955, 47.3010784 ], + [ 8.835104, 47.3010597 ], + [ 8.8351121, 47.3010408 ], + [ 8.8351195, 47.3010218 ], + [ 8.8351265, 47.3010028 ], + [ 8.8351329, 47.3009836 ], + [ 8.8351387, 47.3009644 ], + [ 8.8351444, 47.3009452 ], + [ 8.8351496, 47.3009258 ], + [ 8.8351543, 47.300906499999996 ], + [ 8.8351587, 47.300887 ], + [ 8.8351626, 47.3008676 ], + [ 8.8351661, 47.3008481 ], + [ 8.8351692, 47.3008285 ], + [ 8.8351718, 47.300809 ], + [ 8.835174, 47.3007895 ], + [ 8.8351757, 47.3007699 ], + [ 8.835177, 47.3007503 ], + [ 8.8351779, 47.3007307 ], + [ 8.8351784, 47.3007111 ], + [ 8.8351784, 47.3006915 ], + [ 8.8351774, 47.3006416 ], + [ 8.8351773, 47.3006349 ], + [ 8.8351777, 47.3006283 ], + [ 8.8351786, 47.3006217 ], + [ 8.8351799, 47.3006151 ], + [ 8.8351817, 47.3006086 ], + [ 8.8351839, 47.3006021 ], + [ 8.8351866, 47.3005957 ], + [ 8.8351897, 47.3005895 ], + [ 8.8351933, 47.3005833 ], + [ 8.8351973, 47.3005773 ], + [ 8.8352017, 47.3005714 ], + [ 8.8352064, 47.3005656 ], + [ 8.8352116, 47.30056 ], + [ 8.8352172, 47.3005546 ], + [ 8.8344326, 47.3006565 ], + [ 8.8344194, 47.3006586 ], + [ 8.8344063, 47.3006611 ], + [ 8.834393500000001, 47.3006641 ], + [ 8.8343809, 47.3006675 ], + [ 8.8343686, 47.3006714 ], + [ 8.8343566, 47.3006757 ], + [ 8.8343449, 47.3006804 ], + [ 8.8343337, 47.3006855 ], + [ 8.8343229, 47.3006909 ], + [ 8.8343125, 47.3006968 ], + [ 8.8343025, 47.300703 ], + [ 8.8342931, 47.300709499999996 ], + [ 8.8339351, 47.3007363 ], + [ 8.833912399999999, 47.3006338 ], + [ 8.8339072, 47.3006153 ], + [ 8.8338961, 47.3005777 ], + [ 8.8338843, 47.3005401 ], + [ 8.833872, 47.3005026 ], + [ 8.833859, 47.3004652 ], + [ 8.8338454, 47.3004279 ], + [ 8.8338312, 47.3003907 ], + [ 8.8338165, 47.3003537 ], + [ 8.8338012, 47.3003169 ], + [ 8.8337853, 47.3002801 ], + [ 8.8337688, 47.3002435 ], + [ 8.8337517, 47.300207 ], + [ 8.833734, 47.3001707 ], + [ 8.8337158, 47.3001345 ], + [ 8.8336972, 47.3000982 ], + [ 8.833677999999999, 47.3000621 ], + [ 8.8336582, 47.3000261 ], + [ 8.8336377, 47.2999903 ], + [ 8.8336167, 47.2999546 ], + [ 8.833595, 47.2999191 ], + [ 8.8335727, 47.2998838 ], + [ 8.83355, 47.299849 ], + [ 8.8335267, 47.2998143 ], + [ 8.8335028, 47.2997798 ], + [ 8.8334784, 47.2997454 ], + [ 8.8334533, 47.2997113 ], + [ 8.8334277, 47.2996774 ], + [ 8.8334014, 47.2996437 ], + [ 8.8332599, 47.2996654 ], + [ 8.8331128, 47.2995261 ], + [ 8.833063899999999, 47.2994463 ], + [ 8.8331284, 47.2993265 ], + [ 8.832955, 47.2991467 ], + [ 8.8327441, 47.2989701 ], + [ 8.8325322, 47.298797 ], + [ 8.8323073, 47.2986322 ], + [ 8.8320666, 47.298477 ], + [ 8.8318097, 47.298336 ], + [ 8.8316075, 47.2982504 ], + [ 8.8314526, 47.2982197 ], + [ 8.8312106, 47.2981719 ], + [ 8.8309309, 47.2980943 ], + [ 8.8305985, 47.2980385 ], + [ 8.8302687, 47.2980677 ], + [ 8.8302214, 47.2981859 ], + [ 8.82996, 47.2988537 ], + [ 8.8299883, 47.298855 ], + [ 8.8300165, 47.2988571 ], + [ 8.8302835, 47.2989911 ], + [ 8.8301545, 47.29911 ], + [ 8.8290349, 47.3001425 ], + [ 8.8284558, 47.2999795 ], + [ 8.8280412, 47.3006588 ], + [ 8.8278383, 47.3009902 ], + [ 8.8273818, 47.3017428 ], + [ 8.827684, 47.301784 ], + [ 8.8283636, 47.3018246 ], + [ 8.8292602, 47.3018782 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VBS_11", + "country" : "CHE", + "name" : [ + { + "text" : "VBS_11 Hinwil", + "lang" : "de-CH" + }, + { + "text" : "VBS_11 Hinwil", + "lang" : "fr-CH" + }, + { + "text" : "VBS_11 Hinwil", + "lang" : "it-CH" + }, + { + "text" : "VBS_11 Hinwil", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "regulationExemption" : "YES", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Eidgenössisches Departement für Verteidigung, Bevölkerungsschutz und Sport (VBS)", + "lang" : "de-CH" + }, + { + "text" : "Département fédéral de la défense, de la protection de la population et des sports (DDPS)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento federale della difesa, della protezione della popolazione e dello sport (DDPS)", + "lang" : "it-CH" + }, + { + "text" : "Federal Department of Defence, Civil Protection and Sport (DDPS)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Lageverfolgungszentrum der Armee LVZ A", + "lang" : "de-CH" + }, + { + "text" : "Centre de suivi de la situation de l’armée, CSS A", + "lang" : "fr-CH" + }, + { + "text" : "Centro di monitoraggio della situazione dell’esercito, Centro mon sit Es", + "lang" : "it-CH" + }, + { + "text" : "Joint Operation Center, JOC", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vtg.admin.ch/en/joint-operations-command", + "email" : "lvz.op@vtg.admin.ch", + "phone" : "+41 58 464 96 43", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5180378999999995, 46.7786633 ], + [ 7.5180323, 46.778522 ], + [ 7.518016, 46.7783812 ], + [ 7.517989, 46.7782412 ], + [ 7.5179513, 46.7781023 ], + [ 7.5179031, 46.7779649 ], + [ 7.5178445, 46.7778295 ], + [ 7.5177756, 46.777696399999996 ], + [ 7.5176967, 46.7775659 ], + [ 7.517608, 46.7774384 ], + [ 7.5175097, 46.7773143 ], + [ 7.5174021, 46.7771939 ], + [ 7.5172854000000005, 46.7770776 ], + [ 7.5171601, 46.7769656 ], + [ 7.5170262999999995, 46.7768582 ], + [ 7.5168846, 46.7767559 ], + [ 7.5167353, 46.7766587 ], + [ 7.5165788, 46.7765671 ], + [ 7.5164156, 46.7764812 ], + [ 7.516246, 46.7764012 ], + [ 7.5160705, 46.7763275 ], + [ 7.5158897, 46.7762602 ], + [ 7.5157039999999995, 46.7761995 ], + [ 7.5155139, 46.7761456 ], + [ 7.51532, 46.7760986 ], + [ 7.5151228, 46.7760586 ], + [ 7.5149228, 46.7760257 ], + [ 7.5147205, 46.7760001 ], + [ 7.5145166, 46.7759818 ], + [ 7.5143116, 46.7759709 ], + [ 7.514106, 46.7759673 ], + [ 7.5139004, 46.7759711 ], + [ 7.5136954, 46.7759823 ], + [ 7.5134916, 46.7760009 ], + [ 7.5132894, 46.7760268 ], + [ 7.5130894999999995, 46.7760599 ], + [ 7.5128923, 46.7761002 ], + [ 7.5126986, 46.7761474 ], + [ 7.5125086, 46.7762016 ], + [ 7.5123231, 46.7762626 ], + [ 7.5121424999999995, 46.7763301 ], + [ 7.5119672, 46.776404 ], + [ 7.5117978, 46.7764842 ], + [ 7.5116347999999995, 46.7765703 ], + [ 7.5114785, 46.7766621 ], + [ 7.5113295, 46.7767595 ], + [ 7.5111881, 46.7768621 ], + [ 7.5110547, 46.7769696 ], + [ 7.5109296, 46.7770817 ], + [ 7.5108133, 46.7771982 ], + [ 7.510706, 46.7773188 ], + [ 7.5106079999999995, 46.777443 ], + [ 7.5105197, 46.7775706 ], + [ 7.5104410999999995, 46.7777012 ], + [ 7.5103727, 46.7778344 ], + [ 7.5103144, 46.7779699 ], + [ 7.5102666, 46.7781073 ], + [ 7.5102293, 46.7782462 ], + [ 7.5102025999999995, 46.7783863 ], + [ 7.5101867, 46.7785272 ], + [ 7.5101815, 46.7786684 ], + [ 7.5101871, 46.7788096 ], + [ 7.5102034, 46.7789505 ], + [ 7.5102304, 46.7790905 ], + [ 7.5102681, 46.7792294 ], + [ 7.5103162999999995, 46.7793668 ], + [ 7.5103749, 46.7795022 ], + [ 7.5104437, 46.7796353 ], + [ 7.5105225, 46.7797658 ], + [ 7.5106113, 46.7798933 ], + [ 7.5107096, 46.7800174 ], + [ 7.5108172, 46.7801378 ], + [ 7.5109338, 46.7802542 ], + [ 7.5110592, 46.7803662 ], + [ 7.5111929, 46.7804735 ], + [ 7.5113346, 46.7805759 ], + [ 7.5114839, 46.7806731 ], + [ 7.5116404, 46.7807647 ], + [ 7.5118037, 46.7808506 ], + [ 7.5119733, 46.7809305 ], + [ 7.5121488, 46.7810043 ], + [ 7.5123296, 46.7810716 ], + [ 7.5125153000000005, 46.7811323 ], + [ 7.5127054, 46.7811862 ], + [ 7.5128993, 46.7812332 ], + [ 7.5130966, 46.7812732 ], + [ 7.5132966, 46.7813061 ], + [ 7.5134989, 46.7813317 ], + [ 7.5137028, 46.78135 ], + [ 7.5139078, 46.781361 ], + [ 7.5141134, 46.7813645 ], + [ 7.514319, 46.7813607 ], + [ 7.5145241, 46.7813495 ], + [ 7.5147279000000005, 46.7813309 ], + [ 7.5149301, 46.781305 ], + [ 7.5151301, 46.7812719 ], + [ 7.5153272, 46.7812317 ], + [ 7.515521, 46.7811844 ], + [ 7.515711, 46.7811302 ], + [ 7.5158965, 46.7810692 ], + [ 7.5160771, 46.7810017 ], + [ 7.5162524, 46.7809277 ], + [ 7.5164218, 46.7808476 ], + [ 7.5165848, 46.7807615 ], + [ 7.5167411, 46.7806696 ], + [ 7.5168901, 46.7805723 ], + [ 7.5170315, 46.7804697 ], + [ 7.517165, 46.7803622 ], + [ 7.51729, 46.78025 ], + [ 7.5174063, 46.7801335 ], + [ 7.5175136, 46.780013 ], + [ 7.5176116, 46.7798887 ], + [ 7.5176999, 46.7797611 ], + [ 7.5177784, 46.7796306 ], + [ 7.5178469, 46.7794973 ], + [ 7.5179051, 46.7793618 ], + [ 7.5179529, 46.7792244 ], + [ 7.5179902, 46.7790855 ], + [ 7.5180168, 46.7789454 ], + [ 7.5180328, 46.7788045 ], + [ 7.5180378999999995, 46.7786633 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0126", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Wattenwil", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Wattenwil", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Wattenwil", + "lang" : "it-CH" + }, + { + "text" : "Substation Wattenwil", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.2513129, 46.9054428 ], + [ 8.2518057, 46.9061191 ], + [ 8.2508763, 46.9064611 ], + [ 8.250937, 46.9065409 ], + [ 8.2510209, 46.9066387 ], + [ 8.2511569, 46.9067965 ], + [ 8.2513448, 46.9070673 ], + [ 8.2513958, 46.9071276 ], + [ 8.2517805, 46.9069876 ], + [ 8.2523005, 46.9067984 ], + [ 8.2528744, 46.9075861 ], + [ 8.252432, 46.9077468 ], + [ 8.252273, 46.907712 ], + [ 8.2520533, 46.9077956 ], + [ 8.2522885, 46.9080868 ], + [ 8.2525378, 46.9079919 ], + [ 8.2525546, 46.9079059 ], + [ 8.2529917, 46.9077471 ], + [ 8.2536528, 46.9086543 ], + [ 8.2536343, 46.9086923 ], + [ 8.253624, 46.9087231 ], + [ 8.2533976, 46.9088096 ], + [ 8.253359, 46.9087609 ], + [ 8.2530122, 46.9088791 ], + [ 8.2532335, 46.90915 ], + [ 8.253564, 46.9090225 ], + [ 8.2535213, 46.9089684 ], + [ 8.2537064, 46.9088976 ], + [ 8.2553827, 46.9111997 ], + [ 8.256293, 46.9108885 ], + [ 8.2535453, 46.9071148 ], + [ 8.2542964, 46.9068716 ], + [ 8.2543875, 46.9069281 ], + [ 8.2546872, 46.9068367 ], + [ 8.2544903, 46.9065325 ], + [ 8.254192, 46.9066235 ], + [ 8.254183, 46.9067093 ], + [ 8.253428, 46.9069538 ], + [ 8.2508387, 46.9033972 ], + [ 8.2500253, 46.9036753 ], + [ 8.2506546, 46.9045391 ], + [ 8.2503375, 46.9046674 ], + [ 8.2501946, 46.9047082 ], + [ 8.2500691, 46.9047507 ], + [ 8.2497388, 46.9047366 ], + [ 8.249559, 46.9048022 ], + [ 8.2496108, 46.904857 ], + [ 8.2500473, 46.9054193 ], + [ 8.2502367, 46.9056985 ], + [ 8.2503053, 46.9057786 ], + [ 8.2513129, 46.9054428 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSPG002", + "country" : "CHE", + "name" : [ + { + "text" : "LSPG Kägiswil (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSPG Kägiswil (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSPG Kägiswil (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSPG Kägiswil (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Flugplatzgenossenschaft Obwalden", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzgenossenschaft Obwalden", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzgenossenschaft Obwalden", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzgenossenschaft Obwalden", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Jost Vogler", + "lang" : "de-CH" + }, + { + "text" : "Jost Vogler", + "lang" : "fr-CH" + }, + { + "text" : "Jost Vogler", + "lang" : "it-CH" + }, + { + "text" : "Jost Vogler", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.airportlspg.ch/index.php/fuer-piloten/drohnen", + "email" : "lspg@bluewin.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.0923144, 46.5956912 ], + [ 7.0922702, 46.5957014 ], + [ 7.0923063, 46.5957769 ], + [ 7.0922664, 46.5962011 ], + [ 7.0922263, 46.5966273 ], + [ 7.0924103, 46.5967466 ], + [ 7.0932034999999996, 46.5972611 ], + [ 7.0930324, 46.5983198 ], + [ 7.0939539, 46.5983906 ], + [ 7.0945855, 46.5969644 ], + [ 7.0956596, 46.590315 ], + [ 7.0957427, 46.5897932 ], + [ 7.0944264, 46.5896922 ], + [ 7.0943255, 46.590317 ], + [ 7.0944375, 46.5905611 ], + [ 7.0942806, 46.5905946 ], + [ 7.0938204, 46.5934434 ], + [ 7.0935025, 46.5934199 ], + [ 7.0934028, 46.5940369 ], + [ 7.0924763, 46.5939689 ], + [ 7.0923144, 46.5956912 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSGT002", + "country" : "CHE", + "name" : [ + { + "text" : "LSGT Gruyères (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSGT Gruyères (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSGT Gruyères (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSGT Gruyères (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Aérodrome de la Gruyère", + "lang" : "de-CH" + }, + { + "text" : "Aérodrome de la Gruyère", + "lang" : "fr-CH" + }, + { + "text" : "Aérodrome de la Gruyère", + "lang" : "it-CH" + }, + { + "text" : "Aérodrome de la Gruyère", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Bureau C", + "lang" : "de-CH" + }, + { + "text" : "Bureau C", + "lang" : "fr-CH" + }, + { + "text" : "Bureau C", + "lang" : "it-CH" + }, + { + "text" : "Bureau C", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.aerodrome-gruyere.ch/annonce-de-vol-de-drone/", + "email" : "bureau@aerodrome-gruyere.ch", + "phone" : "0041269210040", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.9957349, 46.2909594 ], + [ 8.9957404, 46.2908811 ], + [ 8.9957718, 46.2900744 ], + [ 8.9959465, 46.2897391 ], + [ 8.9944674, 46.2893942 ], + [ 8.994115, 46.2901366 ], + [ 8.9940991, 46.290129 ], + [ 8.9925224, 46.2893678 ], + [ 8.9924374, 46.2893456 ], + [ 8.9923856, 46.289349 ], + [ 8.991956, 46.2895763 ], + [ 8.9918336, 46.2896526 ], + [ 8.9917681, 46.2897678 ], + [ 8.9914556, 46.2907304 ], + [ 8.9935255, 46.291267 ], + [ 8.9930305, 46.2922456 ], + [ 8.9911371, 46.2917578 ], + [ 8.9910812, 46.2919367 ], + [ 8.9929432, 46.2924177 ], + [ 8.9919199, 46.2944428 ], + [ 8.9905262, 46.2940912 ], + [ 8.989791199999999, 46.2963958 ], + [ 8.9908117, 46.2965869 ], + [ 8.9893609, 46.2995113 ], + [ 8.9894621, 46.2995999 ], + [ 8.9896078, 46.2997041 ], + [ 8.9897441, 46.2997022 ], + [ 8.9899514, 46.2996445 ], + [ 8.9911858, 46.2991399 ], + [ 8.9919444, 46.298792 ], + [ 8.9921602, 46.2984849 ], + [ 8.9918104, 46.2983755 ], + [ 8.9924047, 46.2975494 ], + [ 8.9927591, 46.297639 ], + [ 8.992595, 46.29785 ], + [ 8.9929166, 46.2979715 ], + [ 8.9936546, 46.2967737 ], + [ 8.9939155, 46.2963643 ], + [ 8.9947024, 46.2953313 ], + [ 8.9948434, 46.2950891 ], + [ 8.9949861, 46.2947219 ], + [ 8.995183, 46.2944834 ], + [ 8.9953259, 46.2943042 ], + [ 8.9955272, 46.2938101 ], + [ 8.9956328, 46.2935558 ], + [ 8.995393, 46.2934772 ], + [ 8.9958109, 46.2918438 ], + [ 8.9957737, 46.2911362 ], + [ 8.9957765, 46.2910533 ], + [ 8.9957349, 46.2909594 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSPR002", + "country" : "CHE", + "name" : [ + { + "text" : "LSPR Lodrino (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSPR Lodrino (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSPR Lodrino (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSPR Lodrino (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Riviera Airport", + "lang" : "de-CH" + }, + { + "text" : "Riviera Airport", + "lang" : "fr-CH" + }, + { + "text" : "Riviera Airport", + "lang" : "it-CH" + }, + { + "text" : "Riviera Airport", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleiter", + "lang" : "de-CH" + }, + { + "text" : "Chef d'aérodrome", + "lang" : "fr-CH" + }, + { + "text" : "Capo d'aerodromo", + "lang" : "it-CH" + }, + { + "text" : "Capo d'aerodromo", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.riviera-airport.swiss/drones/", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.3190336, 47.3745881 ], + [ 8.3190672, 47.3746336 ], + [ 8.319083, 47.374685 ], + [ 8.3191093, 47.3747416 ], + [ 8.3192025, 47.3748028 ], + [ 8.3193793, 47.3748655 ], + [ 8.3195233, 47.3749112 ], + [ 8.3196541, 47.3749433 ], + [ 8.3197451, 47.3749365 ], + [ 8.3198205, 47.3748875 ], + [ 8.319881, 47.3748129 ], + [ 8.3198629, 47.3746908 ], + [ 8.3197684, 47.3745541 ], + [ 8.3196777, 47.3744497 ], + [ 8.3195331, 47.3743506 ], + [ 8.319409, 47.3742871 ], + [ 8.3192441, 47.3742325 ], + [ 8.3190584, 47.3741736 ], + [ 8.3189066, 47.3740875 ], + [ 8.3188002, 47.3740155 ], + [ 8.3186508, 47.373887 ], + [ 8.3185008, 47.3737788 ], + [ 8.318249, 47.3736988 ], + [ 8.3179982, 47.3736482 ], + [ 8.3177637, 47.373626 ], + [ 8.3175799, 47.3736223 ], + [ 8.31738, 47.3736363 ], + [ 8.3172506, 47.3736474 ], + [ 8.3170565, 47.373642 ], + [ 8.3170031, 47.3736428 ], + [ 8.3168404, 47.373671 ], + [ 8.3167308, 47.3736966 ], + [ 8.3166563, 47.3737364 ], + [ 8.316483999999999, 47.3738089 ], + [ 8.3162742, 47.3738737 ], + [ 8.3161086, 47.3739148 ], + [ 8.3157903, 47.3740392 ], + [ 8.3156185, 47.3741264 ], + [ 8.315532900000001, 47.3741801 ], + [ 8.3155002, 47.3742414 ], + [ 8.3155289, 47.3742934 ], + [ 8.3155461, 47.3743474 ], + [ 8.3155935, 47.3743836 ], + [ 8.31572, 47.3744019 ], + [ 8.3157647, 47.3744326 ], + [ 8.315902, 47.3744296 ], + [ 8.3161097, 47.3744182 ], + [ 8.3162158, 47.3744019 ], + [ 8.3163338, 47.3743569 ], + [ 8.3164462, 47.3743387 ], + [ 8.3165149, 47.3743192 ], + [ 8.3166236, 47.374266 ], + [ 8.316741799999999, 47.3741879 ], + [ 8.3168312, 47.3741728 ], + [ 8.316914, 47.3741504 ], + [ 8.3170114, 47.3741075 ], + [ 8.3171198, 47.3740838 ], + [ 8.3172095, 47.374076 ], + [ 8.317325, 47.3740715 ], + [ 8.3174055, 47.3740225 ], + [ 8.3175402, 47.3739772 ], + [ 8.3176198, 47.373976 ], + [ 8.3176947, 47.3739887 ], + [ 8.3177585, 47.3739758 ], + [ 8.3177589, 47.3739473 ], + [ 8.3178111, 47.3739336 ], + [ 8.3179673, 47.3739589 ], + [ 8.3180604, 47.3739759 ], + [ 8.3181114, 47.3739659 ], + [ 8.3181774, 47.3739815 ], + [ 8.3183137, 47.373985 ], + [ 8.3183656, 47.3740017 ], + [ 8.3183687, 47.374056 ], + [ 8.3183252, 47.3741385 ], + [ 8.318339, 47.3742083 ], + [ 8.3183499, 47.3742661 ], + [ 8.3183379, 47.3743316 ], + [ 8.3183597, 47.3743672 ], + [ 8.3184269, 47.3743809 ], + [ 8.3184807, 47.3743764 ], + [ 8.3185269, 47.3742975 ], + [ 8.31859, 47.3742643 ], + [ 8.3186629, 47.3742522 ], + [ 8.3187172, 47.3742634 ], + [ 8.3187386, 47.3742907 ], + [ 8.318736, 47.3743275 ], + [ 8.3187655, 47.3743648 ], + [ 8.31879, 47.3744077 ], + [ 8.3187643, 47.3744467 ], + [ 8.318779, 47.3744631 ], + [ 8.3188392, 47.3744594 ], + [ 8.3189081, 47.3744842 ], + [ 8.3189158, 47.3745227 ], + [ 8.3189115, 47.3745854 ], + [ 8.3189643, 47.3745901 ], + [ 8.3190336, 47.3745881 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "KTAG510", + "country" : "CHE", + "name" : [ + { + "text" : "Tote Reuss", + "lang" : "de-CH" + }, + { + "text" : "Tote Reuss", + "lang" : "fr-CH" + }, + { + "text" : "Tote Reuss", + "lang" : "it-CH" + }, + { + "text" : "Tote Reuss", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "regulationExemption" : "NO", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "schedule" : [ + { + "day" : [ "ANY" ], + "startTime" : "00:00:00.00+01:00", + "endTime" : "00:00:00.00+01:00" + } + ] + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Aargau", + "lang" : "de-CH" + }, + { + "text" : "Canton d'Argovie", + "lang" : "fr-CH" + }, + { + "text" : "Canton Argovia", + "lang" : "it-CH" + }, + { + "text" : "Canton of Aargau", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Departement Bau, Verkehr und Umwelt (BVU)", + "lang" : "de-CH" + }, + { + "text" : "Département de la construction, des transports et de l'environnement (CTE)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento delle costruzioni, dei trasporti e dell'ambiente (CTA)", + "lang" : "it-CH" + }, + { + "text" : "Department of Civil Engineering,Transport and Environment (CTE)", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Sektion Gewässernutzung", + "lang" : "de-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "fr-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "it-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ag.ch/de/verwaltung/bvu/umwelt-natur-landschaft/hochwasserschutz-gewaesser/gewaessernutzung", + "email" : "alg@ag.ch", + "phone" : "0041 62 835 34 50", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.2175202, 46.9454021 ], + [ 8.2215217, 46.9585821 ], + [ 8.2223098, 46.9608742 ], + [ 8.223272, 46.9631348 ], + [ 8.2244058, 46.9653578 ], + [ 8.2257081, 46.9675372 ], + [ 8.2271754, 46.9696669 ], + [ 8.228803599999999, 46.971741 ], + [ 8.2305883, 46.973754 ], + [ 8.2325246, 46.9757003 ], + [ 8.2346072, 46.9775745 ], + [ 8.2368304, 46.9793715 ], + [ 8.2391881, 46.9810863 ], + [ 8.2416739, 46.9827143 ], + [ 8.2442809, 46.9842509 ], + [ 8.247002, 46.9856921 ], + [ 8.2498297, 46.9870337 ], + [ 8.2527563, 46.9882721 ], + [ 8.2557738, 46.9894039 ], + [ 8.2588737, 46.9904261 ], + [ 8.2620478, 46.9913357 ], + [ 8.2652871, 46.9921304 ], + [ 8.2685829, 46.9928079 ], + [ 8.2719261, 46.9933663 ], + [ 8.275307399999999, 46.9938041 ], + [ 8.2787177, 46.9941201 ], + [ 8.2821474, 46.9943135 ], + [ 8.2855873, 46.9943837 ], + [ 8.2890278, 46.9943306 ], + [ 8.2924596, 46.9941542 ], + [ 8.2958731, 46.993854999999996 ], + [ 8.299259, 46.9934339 ], + [ 8.3026079, 46.9928921 ], + [ 8.3059108, 46.992231 ], + [ 8.3091585, 46.9914524 ], + [ 8.3123421, 46.9905585 ], + [ 8.3154528, 46.9895517 ], + [ 8.3184821, 46.9884349 ], + [ 8.3214218, 46.9872109 ], + [ 8.3242636, 46.9858834 ], + [ 8.3269999, 46.9844558 ], + [ 8.3296231, 46.9829321 ], + [ 8.332126, 46.9813164 ], + [ 8.3345018, 46.9796133 ], + [ 8.336744, 46.9778274 ], + [ 8.3388464, 46.9759636 ], + [ 8.3408032, 46.9740269 ], + [ 8.3426091, 46.9720228 ], + [ 8.3442592, 46.9699568 ], + [ 8.3457489, 46.9678344 ], + [ 8.3470743, 46.9656616 ], + [ 8.3482316, 46.9634442 ], + [ 8.3492177, 46.9611884 ], + [ 8.3500299, 46.9589004 ], + [ 8.350666, 46.9565863 ], + [ 8.3511244, 46.9542527 ], + [ 8.3514037, 46.9519058 ], + [ 8.3515033, 46.9495521 ], + [ 8.3514229, 46.9471981 ], + [ 8.3511626, 46.9448502 ], + [ 8.3507234, 46.9425148 ], + [ 8.3501063, 46.9401984 ], + [ 8.3460745, 46.9270229 ], + [ 8.3452817, 46.9247317 ], + [ 8.344315, 46.9224721 ], + [ 8.3431771, 46.9202502 ], + [ 8.3418712, 46.9180722 ], + [ 8.3404008, 46.9159439 ], + [ 8.33877, 46.9138713 ], + [ 8.3369832, 46.91186 ], + [ 8.3350455, 46.9099155 ], + [ 8.332962, 46.9080431 ], + [ 8.3307385, 46.906248 ], + [ 8.3283812, 46.904535 ], + [ 8.3258964, 46.9029089 ], + [ 8.323291, 46.9013741 ], + [ 8.3205721, 46.8999347 ], + [ 8.3177472, 46.8985948 ], + [ 8.314824, 46.8973581 ], + [ 8.3118105, 46.8962277 ], + [ 8.3087149, 46.895207 ], + [ 8.3055458, 46.8942986 ], + [ 8.3023117, 46.8935051 ], + [ 8.2990216, 46.8928286 ], + [ 8.2956844, 46.892271 ], + [ 8.2923093, 46.8918338 ], + [ 8.2889054, 46.8915181 ], + [ 8.2854822, 46.8913249 ], + [ 8.2820489, 46.8912547 ], + [ 8.278615, 46.8913077 ], + [ 8.2751898, 46.8914837 ], + [ 8.2717827, 46.8917822 ], + [ 8.268403, 46.8922025 ], + [ 8.2650599, 46.8927433 ], + [ 8.2617627, 46.8934033 ], + [ 8.2585202, 46.8941805 ], + [ 8.2553415, 46.8950729 ], + [ 8.2522351, 46.8960781 ], + [ 8.2492096, 46.8971932 ], + [ 8.2462732, 46.898415299999996 ], + [ 8.2434341, 46.899741 ], + [ 8.2406999, 46.9011666 ], + [ 8.2380781, 46.9026883 ], + [ 8.235576, 46.9043019 ], + [ 8.2332004, 46.906003 ], + [ 8.2309578, 46.9077869 ], + [ 8.2288544, 46.9096488 ], + [ 8.2268959, 46.9115835 ], + [ 8.2250877, 46.9135858 ], + [ 8.2234347, 46.9156501 ], + [ 8.2219416, 46.9177709 ], + [ 8.2206124, 46.9199424 ], + [ 8.2194508, 46.9221584 ], + [ 8.21846, 46.9244131 ], + [ 8.2176426, 46.9267003 ], + [ 8.2170011, 46.9290136 ], + [ 8.2165371, 46.9313467 ], + [ 8.216252, 46.9336932 ], + [ 8.2161465, 46.9360468 ], + [ 8.2162211, 46.9384009 ], + [ 8.2164754, 46.9407491 ], + [ 8.2169088, 46.943084999999996 ], + [ 8.2175202, 46.9454021 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSMA-01", + "country" : "CHE", + "name" : [ + { + "text" : "LSMA Alpnach", + "lang" : "de-CH" + }, + { + "text" : "LSMA Alpnach", + "lang" : "fr-CH" + }, + { + "text" : "LSMA Alpnach", + "lang" : "it-CH" + }, + { + "text" : "LSMA Alpnach", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Special Flight Office (SFO)", + "lang" : "de-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "fr-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "it-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "en-GB" + } + ], + "siteURL" : "https://skyguide.ch/services/special-flights", + "email" : "specialflight@skyguide.ch", + "phone" : "0041439316236", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6352559, 47.4908515 ], + [ 7.635501, 47.4909233 ], + [ 7.6356234, 47.4909633 ], + [ 7.6358763, 47.4910172 ], + [ 7.6362612, 47.4910857 ], + [ 7.6365162, 47.4911376 ], + [ 7.6366469, 47.4911537 ], + [ 7.636855, 47.4911514 ], + [ 7.6369687, 47.4911913 ], + [ 7.6371794, 47.4912787 ], + [ 7.6372498, 47.4913292 ], + [ 7.6372898, 47.4913536 ], + [ 7.6373733, 47.4914089 ], + [ 7.6374201, 47.4914373 ], + [ 7.6374718999999995, 47.4914654 ], + [ 7.6375354, 47.4914759 ], + [ 7.6376745, 47.4914636 ], + [ 7.6377667, 47.4915177 ], + [ 7.6378425, 47.4915661 ], + [ 7.637911, 47.4915939 ], + [ 7.6379984, 47.4916125 ], + [ 7.638101, 47.4916298 ], + [ 7.6382416, 47.4916269 ], + [ 7.638327, 47.4916249 ], + [ 7.6384469, 47.4916299 ], + [ 7.6385506, 47.4916298 ], + [ 7.6386722, 47.4916208 ], + [ 7.6387232, 47.4916153 ], + [ 7.6388544, 47.4915875 ], + [ 7.6390531, 47.4915687 ], + [ 7.6392261999999995, 47.4915571 ], + [ 7.6392632, 47.4915591 ], + [ 7.639314, 47.4915566 ], + [ 7.6393469, 47.4915486 ], + [ 7.6394606, 47.4915363 ], + [ 7.6395917, 47.4915193 ], + [ 7.639679, 47.4915111 ], + [ 7.6397566, 47.4915028 ], + [ 7.6397672, 47.4915001 ], + [ 7.639887, 47.4914645 ], + [ 7.6399527, 47.4914494 ], + [ 7.6399749, 47.4914383 ], + [ 7.6401829, 47.4913719 ], + [ 7.6402932, 47.4913227 ], + [ 7.6403747, 47.4912918 ], + [ 7.6404461, 47.4912797 ], + [ 7.6405907, 47.4913036 ], + [ 7.6407295, 47.4912385 ], + [ 7.6407498, 47.4912333 ], + [ 7.6407842, 47.4912435 ], + [ 7.640814, 47.4912796 ], + [ 7.6408426, 47.4912646 ], + [ 7.6408614, 47.4911931 ], + [ 7.6408926, 47.4911386 ], + [ 7.6409587, 47.4910792 ], + [ 7.6410115, 47.491028299999996 ], + [ 7.6410969, 47.4909574 ], + [ 7.6411196, 47.4909442 ], + [ 7.6411424, 47.4909332 ], + [ 7.6412732, 47.4909093 ], + [ 7.6413573, 47.4909236 ], + [ 7.6414124, 47.4908997 ], + [ 7.6414539999999995, 47.4908799 ], + [ 7.6416566, 47.4908162 ], + [ 7.6416942, 47.4908126 ], + [ 7.6417263, 47.4908174 ], + [ 7.6418187, 47.4908047 ], + [ 7.6418365, 47.4908104 ], + [ 7.6419027, 47.4908479 ], + [ 7.6419378, 47.4908522 ], + [ 7.6419663, 47.4908221 ], + [ 7.6419415, 47.4907837 ], + [ 7.6419524, 47.4907637 ], + [ 7.6419457, 47.4907428 ], + [ 7.6420125, 47.4907501 ], + [ 7.6420462, 47.4907763 ], + [ 7.6420505, 47.4907866 ], + [ 7.6421719, 47.4907534 ], + [ 7.6421937, 47.4907481 ], + [ 7.6422945, 47.490736 ], + [ 7.6423559, 47.490738 ], + [ 7.6425007, 47.4906858 ], + [ 7.6425503, 47.4906535 ], + [ 7.6425622, 47.4906076 ], + [ 7.6425754, 47.4905565 ], + [ 7.6425752, 47.4904981 ], + [ 7.6426258, 47.4904868 ], + [ 7.6432511, 47.4903469 ], + [ 7.6434001, 47.4902671 ], + [ 7.6434268, 47.490501 ], + [ 7.6434429999999995, 47.4907379 ], + [ 7.6434462, 47.4907846 ], + [ 7.6434938, 47.4907554 ], + [ 7.6435602, 47.4907403 ], + [ 7.6436288, 47.4906845 ], + [ 7.6436511, 47.4906747 ], + [ 7.6437034, 47.4906838 ], + [ 7.6438538, 47.4906684 ], + [ 7.6439159, 47.490679 ], + [ 7.6440025, 47.4906416 ], + [ 7.6441142, 47.4906416 ], + [ 7.6442307, 47.4906524 ], + [ 7.6442721, 47.4906202 ], + [ 7.6443104, 47.4906094 ], + [ 7.6443718, 47.490611 ], + [ 7.6443975, 47.4906192 ], + [ 7.6444393999999996, 47.4906515 ], + [ 7.6444995, 47.4905902 ], + [ 7.6445436, 47.4905816 ], + [ 7.6445536, 47.4905822 ], + [ 7.6445957, 47.4906243 ], + [ 7.6446415, 47.490655 ], + [ 7.6446754, 47.4906548 ], + [ 7.6446936999999995, 47.490662 ], + [ 7.6447123, 47.4906668 ], + [ 7.6447408, 47.4906939 ], + [ 7.6448063, 47.4907181 ], + [ 7.6448259, 47.4907182 ], + [ 7.64497, 47.4907391 ], + [ 7.6450306999999995, 47.4907464 ], + [ 7.645059, 47.4907483 ], + [ 7.6452452, 47.4907869 ], + [ 7.645264, 47.4907873 ], + [ 7.6452495, 47.490762 ], + [ 7.6451091, 47.490537 ], + [ 7.6447735, 47.4899886 ], + [ 7.6445626, 47.4896956 ], + [ 7.6441028, 47.4897731 ], + [ 7.6440845, 47.4897118 ], + [ 7.644027, 47.4895363 ], + [ 7.6439726, 47.4893811 ], + [ 7.6444301, 47.4893051 ], + [ 7.6442955999999995, 47.4887004 ], + [ 7.6442569, 47.4885042 ], + [ 7.6440072, 47.4885993 ], + [ 7.6437057, 47.4887505 ], + [ 7.6436172, 47.4888068 ], + [ 7.6434175, 47.4888932 ], + [ 7.6431021, 47.4889855 ], + [ 7.642797, 47.4891041 ], + [ 7.6424205, 47.4893545 ], + [ 7.6421744, 47.4894697 ], + [ 7.6417258, 47.4896271 ], + [ 7.641402, 47.4897102 ], + [ 7.6410373, 47.4898196 ], + [ 7.6401824, 47.4901434 ], + [ 7.6402814, 47.4903843 ], + [ 7.6401022, 47.4904157 ], + [ 7.6400257, 47.490225 ], + [ 7.6400151, 47.4901963 ], + [ 7.6397945, 47.4902663 ], + [ 7.6394243, 47.4903504 ], + [ 7.6391943, 47.4903844 ], + [ 7.6381101000000005, 47.4906158 ], + [ 7.6379283000000004, 47.490633 ], + [ 7.637415, 47.490607 ], + [ 7.6372232, 47.4906407 ], + [ 7.6369816, 47.4907465 ], + [ 7.6368224, 47.490755 ], + [ 7.6363872, 47.4906846 ], + [ 7.6360024, 47.4906499 ], + [ 7.6357142, 47.4906733 ], + [ 7.6353943, 47.4906839 ], + [ 7.6352113, 47.4906656 ], + [ 7.6346704, 47.490519 ], + [ 7.6345396, 47.4905117 ], + [ 7.63457, 47.4904727 ], + [ 7.6345282, 47.4904133 ], + [ 7.6344966, 47.4901495 ], + [ 7.6344082, 47.4899388 ], + [ 7.634285, 47.4897077 ], + [ 7.6342634, 47.4896026 ], + [ 7.6343989, 47.4892981 ], + [ 7.6345296, 47.4890711 ], + [ 7.6348933, 47.4887607 ], + [ 7.6350727, 47.48858 ], + [ 7.6352058, 47.4883807 ], + [ 7.6351681, 47.4883715 ], + [ 7.6352606, 47.4879208 ], + [ 7.6349272, 47.4878911 ], + [ 7.6342871, 47.4878519 ], + [ 7.6340965, 47.4877576 ], + [ 7.6337665, 47.4875965 ], + [ 7.6336368, 47.4875098 ], + [ 7.6334984, 47.4874149 ], + [ 7.6331898, 47.4872084 ], + [ 7.6328191, 47.4871672 ], + [ 7.6327323, 47.487427 ], + [ 7.6325942, 47.4878319 ], + [ 7.6324792, 47.4879972 ], + [ 7.6324236, 47.4880881 ], + [ 7.6323221, 47.4882385 ], + [ 7.6322422, 47.4884695 ], + [ 7.632166, 47.4887521 ], + [ 7.6321123, 47.4891166 ], + [ 7.6321082, 47.4892539 ], + [ 7.632081, 47.4892832 ], + [ 7.6320741, 47.4892906 ], + [ 7.6321048000000005, 47.489307 ], + [ 7.631832, 47.4895071 ], + [ 7.6315726, 47.4897563 ], + [ 7.6314024, 47.489861 ], + [ 7.631172, 47.4899356 ], + [ 7.6306823999999995, 47.490097 ], + [ 7.6305644, 47.4901503 ], + [ 7.630446, 47.4902449 ], + [ 7.6303848, 47.4902778 ], + [ 7.6303493, 47.4902969 ], + [ 7.6303304, 47.4903309 ], + [ 7.6302769, 47.4903192 ], + [ 7.6298854, 47.4902823 ], + [ 7.6296715, 47.4902892 ], + [ 7.6289592, 47.4903678 ], + [ 7.6286203, 47.4904254 ], + [ 7.6285157, 47.4904666 ], + [ 7.628436, 47.490542 ], + [ 7.6284198, 47.4905677 ], + [ 7.6284072, 47.4905877 ], + [ 7.6282813, 47.4907868 ], + [ 7.628215, 47.4908469 ], + [ 7.6281712, 47.4908613 ], + [ 7.6282808, 47.4909067 ], + [ 7.6284294, 47.4909696 ], + [ 7.6286069, 47.4910394 ], + [ 7.6287789, 47.4910995 ], + [ 7.6289539, 47.4911555 ], + [ 7.6291105, 47.4912066 ], + [ 7.6291785999999995, 47.4912206 ], + [ 7.6293161, 47.49123 ], + [ 7.6293248, 47.491236 ], + [ 7.6293536, 47.4912326 ], + [ 7.6293707, 47.4912309 ], + [ 7.6294305, 47.4912327 ], + [ 7.6295158, 47.4912542 ], + [ 7.6298012, 47.49135 ], + [ 7.6300142, 47.4914169 ], + [ 7.6301464, 47.491461 ], + [ 7.6301518, 47.4914626 ], + [ 7.6301746999999995, 47.4914694 ], + [ 7.6302031, 47.4914774 ], + [ 7.6302318, 47.4914852 ], + [ 7.6302606, 47.4914926 ], + [ 7.6303781, 47.4915219 ], + [ 7.6304337, 47.4915315 ], + [ 7.6304541, 47.491534 ], + [ 7.6304659, 47.491534 ], + [ 7.6305337, 47.4915274 ], + [ 7.6306534, 47.4915158 ], + [ 7.6307211, 47.491513 ], + [ 7.6307413, 47.4915143 ], + [ 7.6307628, 47.4915106 ], + [ 7.630777, 47.4915084 ], + [ 7.6307811999999995, 47.4914997 ], + [ 7.630788, 47.4914967 ], + [ 7.6307952, 47.4914941 ], + [ 7.6308783, 47.4914734 ], + [ 7.6308872, 47.4914719 ], + [ 7.6308963, 47.4914706 ], + [ 7.6309054, 47.4914697 ], + [ 7.6309146, 47.4914691 ], + [ 7.6309542, 47.4914682 ], + [ 7.6310408, 47.4914627 ], + [ 7.6310785, 47.4914624 ], + [ 7.6313086, 47.4914658 ], + [ 7.6313892, 47.4914638 ], + [ 7.6314664, 47.4914614 ], + [ 7.6316026, 47.4914587 ], + [ 7.6316188, 47.4914585 ], + [ 7.631635, 47.4914577 ], + [ 7.6316511, 47.4914565 ], + [ 7.6316671, 47.4914548 ], + [ 7.6320528, 47.4914177 ], + [ 7.6321897, 47.4913826 ], + [ 7.6323033, 47.4913549 ], + [ 7.632494, 47.4912969 ], + [ 7.6325859, 47.4912674 ], + [ 7.6327108, 47.4912235 ], + [ 7.6328049, 47.4911918 ], + [ 7.6329108, 47.4911483 ], + [ 7.6329454, 47.4911334 ], + [ 7.6331221, 47.4910142 ], + [ 7.6332724, 47.4909572 ], + [ 7.6332965999999995, 47.4909507 ], + [ 7.63332, 47.4909431 ], + [ 7.633387, 47.4909173 ], + [ 7.6334145, 47.4909364 ], + [ 7.6334254999999995, 47.4909454 ], + [ 7.6334576, 47.4909259 ], + [ 7.6335302, 47.4908762 ], + [ 7.6336246, 47.4908098 ], + [ 7.6337186, 47.4907424 ], + [ 7.6338864, 47.4906718 ], + [ 7.6339918, 47.4906315 ], + [ 7.6340268, 47.4906112 ], + [ 7.634104, 47.4905949 ], + [ 7.6342251, 47.4905879 ], + [ 7.6342623, 47.4905866 ], + [ 7.6344173, 47.4905883 ], + [ 7.6345927, 47.4906003 ], + [ 7.6346812, 47.4906284 ], + [ 7.634768, 47.4906435 ], + [ 7.6347842, 47.4906482 ], + [ 7.6348516, 47.4906597 ], + [ 7.6348635, 47.4906579 ], + [ 7.6349037, 47.490663 ], + [ 7.6350863, 47.4907584 ], + [ 7.6352559, 47.4908515 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns229", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Ermitage - Chilchholz", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Ermitage - Chilchholz", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Ermitage - Chilchholz", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Ermitage - Chilchholz", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.500955, 47.3905886 ], + [ 7.50124, 47.3906127 ], + [ 7.5013113, 47.3906088 ], + [ 7.5015137, 47.390559 ], + [ 7.5017256, 47.3905359 ], + [ 7.5017743, 47.3905295 ], + [ 7.5020088000000005, 47.3905332 ], + [ 7.5021574, 47.3905289 ], + [ 7.5022455, 47.39052 ], + [ 7.5023429, 47.3904995 ], + [ 7.5024111, 47.3904513 ], + [ 7.502431, 47.3904114 ], + [ 7.5024365, 47.3903757 ], + [ 7.5024239999999995, 47.3903272 ], + [ 7.5023996, 47.39028 ], + [ 7.5023545, 47.390243 ], + [ 7.5021653, 47.3902559 ], + [ 7.5020077, 47.3902726 ], + [ 7.5018578, 47.3902854 ], + [ 7.5017115, 47.3903327 ], + [ 7.5014866, 47.3903718 ], + [ 7.5013179, 47.3903923 ], + [ 7.5012111, 47.3904204 ], + [ 7.5010516, 47.3904397 ], + [ 7.5009578999999995, 47.3904512 ], + [ 7.500923, 47.3904677 ], + [ 7.5008837, 47.3904869 ], + [ 7.5008875, 47.3905112 ], + [ 7.500955, 47.3905886 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns078", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Stürmen - Eggfels - Bännli", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Stürmen - Eggfels - Bännli", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Stürmen - Eggfels - Bännli", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Stürmen - Eggfels - Bännli", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.089068, 46.2323232 ], + [ 9.0890348, 46.2324594 ], + [ 9.088605, 46.2341404 ], + [ 9.0999718, 46.2356418 ], + [ 9.100431, 46.2339739 ], + [ 9.1005811, 46.2334271 ], + [ 9.0988472, 46.2331871 ], + [ 9.0986762, 46.2336934 ], + [ 9.0906624, 46.2326101 ], + [ 9.0908949, 46.2318111 ], + [ 9.0892448, 46.2315991 ], + [ 9.0891222, 46.2321012 ], + [ 9.089065, 46.2323125 ], + [ 9.089068, 46.2323232 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSXV002", + "country" : "CHE", + "name" : [ + { + "text" : "LSXV San Vittore Heliport (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSXV San Vittore Heliport (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSXV San Vittore Heliport (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSXV San Vittore Heliport (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "HELI REZIA SA", + "lang" : "de-CH" + }, + { + "text" : "HELI REZIA SA", + "lang" : "fr-CH" + }, + { + "text" : "HELI REZIA SA", + "lang" : "it-CH" + }, + { + "text" : "HELI REZIA SA", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Capo d'aerodromo", + "lang" : "de-CH" + }, + { + "text" : "Capo d'aerodromo", + "lang" : "fr-CH" + }, + { + "text" : "Capo d'aerodromo", + "lang" : "it-CH" + }, + { + "text" : "Capo d'aerodromo", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.helirezia.ch/", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6080193, 47.5096429 ], + [ 7.6080193, 47.5096499 ], + [ 7.608082, 47.5099472 ], + [ 7.6081547, 47.5101446 ], + [ 7.6082618, 47.5104047 ], + [ 7.6084721, 47.5107553 ], + [ 7.6085775, 47.5109599 ], + [ 7.608676, 47.5112197 ], + [ 7.6088252, 47.5117842 ], + [ 7.6089016, 47.5120559 ], + [ 7.6089743, 47.5122742 ], + [ 7.6090365, 47.5124066 ], + [ 7.6091157, 47.5125296 ], + [ 7.6093498, 47.5128035 ], + [ 7.6095804000000005, 47.5130355 ], + [ 7.6096559, 47.513054 ], + [ 7.6098649, 47.5129863 ], + [ 7.6099848, 47.5129396 ], + [ 7.6100773, 47.5129232 ], + [ 7.610218, 47.5129323 ], + [ 7.6103724, 47.5129623 ], + [ 7.6105611, 47.5129899 ], + [ 7.6107704, 47.5130152 ], + [ 7.6109592, 47.513059 ], + [ 7.6111034, 47.513096 ], + [ 7.611258, 47.5131817 ], + [ 7.6113851, 47.5132257 ], + [ 7.6115085, 47.5132302 ], + [ 7.6116868, 47.513209 ], + [ 7.6120775, 47.5131178 ], + [ 7.6122572, 47.5130605 ], + [ 7.6122514, 47.5130428 ], + [ 7.6122473, 47.5130356 ], + [ 7.6121065, 47.5127845 ], + [ 7.6120830999999995, 47.5127227 ], + [ 7.6119111, 47.512572 ], + [ 7.6117186, 47.5124375 ], + [ 7.6115467, 47.5123169 ], + [ 7.611361, 47.5121708 ], + [ 7.6112613, 47.512085 ], + [ 7.6110684, 47.5118296 ], + [ 7.610748, 47.5113654 ], + [ 7.6105722, 47.511117 ], + [ 7.6104725, 47.5110172 ], + [ 7.6103865, 47.5109477 ], + [ 7.610249, 47.5108689 ], + [ 7.6100943999999995, 47.5107692 ], + [ 7.6099947, 47.5106857 ], + [ 7.6099361, 47.510616 ], + [ 7.6098844, 47.5105278 ], + [ 7.6098567, 47.510441900000004 ], + [ 7.6098117, 47.5103304 ], + [ 7.6097531, 47.5102329 ], + [ 7.6096327, 47.5101076 ], + [ 7.6095398, 47.5100055 ], + [ 7.6093747, 47.5098756 ], + [ 7.6092062, 47.5097388 ], + [ 7.6090618, 47.5095972 ], + [ 7.6088415, 47.5093698 ], + [ 7.6087005, 47.509226 ], + [ 7.608642, 47.5091633 ], + [ 7.608563, 47.5091239 ], + [ 7.6084668, 47.5090985 ], + [ 7.6080397, 47.5095918 ], + [ 7.6080397, 47.5095987 ], + [ 7.6080193, 47.5096429 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr041", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Obere Au", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Obere Au", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Obere Au", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Obere Au", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8332311, 47.4400705 ], + [ 7.8332332000000005, 47.4400854 ], + [ 7.8332361, 47.4401001 ], + [ 7.8332399, 47.4401148 ], + [ 7.8332446000000004, 47.440129400000004 ], + [ 7.8332502, 47.4401438 ], + [ 7.8332567, 47.440158 ], + [ 7.8332641, 47.440172 ], + [ 7.8332722, 47.4401859 ], + [ 7.8332813, 47.4401994 ], + [ 7.8332911, 47.4402128 ], + [ 7.8333018, 47.4402258 ], + [ 7.8333132, 47.4402385 ], + [ 7.8333254, 47.4402509 ], + [ 7.8333384, 47.4402629 ], + [ 7.833352, 47.4402746 ], + [ 7.8333663, 47.4402859 ], + [ 7.8333813, 47.4402968 ], + [ 7.833397, 47.4403072 ], + [ 7.8334133, 47.4403172 ], + [ 7.8334301, 47.4403267 ], + [ 7.8334475999999995, 47.4403358 ], + [ 7.8334656, 47.4403443 ], + [ 7.833484, 47.4403524 ], + [ 7.833503, 47.4403599 ], + [ 7.8335224, 47.4403669 ], + [ 7.8335422, 47.4403733 ], + [ 7.8335624, 47.4403791 ], + [ 7.8335829, 47.4403844 ], + [ 7.8341314, 47.4405154 ], + [ 7.8344649, 47.4405616 ], + [ 7.8351367, 47.4405127 ], + [ 7.8353475, 47.4404977 ], + [ 7.8356732000000004, 47.4404587 ], + [ 7.8357151, 47.440454 ], + [ 7.8357572, 47.44045 ], + [ 7.8357993, 47.4404466 ], + [ 7.8358415, 47.4404439 ], + [ 7.8358839, 47.4404417 ], + [ 7.8359262, 47.4404402 ], + [ 7.8359686, 47.4404393 ], + [ 7.8360111, 47.4404391 ], + [ 7.8360535, 47.4404395 ], + [ 7.8360959, 47.4404405 ], + [ 7.8361383, 47.4404421 ], + [ 7.8361806, 47.4404444 ], + [ 7.8362228, 47.4404473 ], + [ 7.8362649, 47.4404509 ], + [ 7.8362825, 47.4404521 ], + [ 7.8363001, 47.4404527 ], + [ 7.8363178, 47.4404527 ], + [ 7.8363355, 47.440452 ], + [ 7.836353, 47.4404507 ], + [ 7.8363705, 47.4404488 ], + [ 7.8363876999999995, 47.4404462 ], + [ 7.8364047, 47.440443 ], + [ 7.8364215, 47.4404392 ], + [ 7.8364379, 47.4404348 ], + [ 7.836454, 47.4404298 ], + [ 7.8364697, 47.4404243 ], + [ 7.8364848, 47.4404181 ], + [ 7.8364995, 47.4404115 ], + [ 7.8365137, 47.4404043 ], + [ 7.8365272, 47.4403966 ], + [ 7.8365402, 47.4403885 ], + [ 7.8365525, 47.4403799 ], + [ 7.836564, 47.4403708 ], + [ 7.8365749000000005, 47.4403613 ], + [ 7.8365849999999995, 47.4403515 ], + [ 7.8365943, 47.4403413 ], + [ 7.8366028, 47.4403308 ], + [ 7.8366109, 47.4403194 ], + [ 7.8366182, 47.4403077 ], + [ 7.8366247, 47.4402958 ], + [ 7.8366302, 47.4402837 ], + [ 7.8366349, 47.4402714 ], + [ 7.8366387, 47.440259 ], + [ 7.8366416999999995, 47.4402465 ], + [ 7.8366437, 47.4402339 ], + [ 7.8366448, 47.4402212 ], + [ 7.836645, 47.4402085 ], + [ 7.8366443, 47.4401959 ], + [ 7.8366427, 47.4401832 ], + [ 7.8366402, 47.4401707 ], + [ 7.8366368, 47.4401582 ], + [ 7.8366325, 47.4401459 ], + [ 7.8366273, 47.4401337 ], + [ 7.8366213, 47.4401217 ], + [ 7.8366144, 47.4401099 ], + [ 7.8362661, 47.4395551 ], + [ 7.8360924, 47.4392136 ], + [ 7.8348121, 47.4393841 ], + [ 7.8339768, 47.4394956 ], + [ 7.8331826, 47.4396015 ], + [ 7.8332311, 47.4400705 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns176", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Steingrube", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Steingrube", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Steingrube", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Steingrube", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6596527, 47.5143356 ], + [ 7.6589664, 47.5145295 ], + [ 7.6590998, 47.5147658 ], + [ 7.6591166, 47.5147956 ], + [ 7.6592673, 47.5148107 ], + [ 7.6596268, 47.5148267 ], + [ 7.6598804, 47.5147568 ], + [ 7.6598676999999995, 47.5147334 ], + [ 7.6596527, 47.5143356 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns099", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Zinggibrunn", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Zinggibrunn", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Zinggibrunn", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Zinggibrunn", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.35562, 47.1728547 ], + [ 7.3556148, 47.1727135 ], + [ 7.3555987, 47.1725726 ], + [ 7.3555719, 47.1724326 ], + [ 7.3555344, 47.1722936 ], + [ 7.3554862, 47.1721562 ], + [ 7.3554276, 47.1720207 ], + [ 7.3553587, 47.1718875 ], + [ 7.3552796, 47.1717569 ], + [ 7.3551906, 47.1716294 ], + [ 7.355092, 47.1715051 ], + [ 7.3549839, 47.1713846 ], + [ 7.3548667, 47.1712681 ], + [ 7.3547408, 47.1711559 ], + [ 7.3546064, 47.1710484 ], + [ 7.354464, 47.1709458 ], + [ 7.3543139, 47.1708484 ], + [ 7.3541565, 47.1707566 ], + [ 7.3539923, 47.1706705 ], + [ 7.3538217, 47.1705903 ], + [ 7.3536451, 47.1705164 ], + [ 7.3534632, 47.1704488 ], + [ 7.3532763, 47.1703878 ], + [ 7.353085, 47.1703336 ], + [ 7.3528898, 47.1702863 ], + [ 7.3526912, 47.1702461 ], + [ 7.3524898, 47.1702129 ], + [ 7.3522862, 47.170187 ], + [ 7.3520807999999995, 47.1701684 ], + [ 7.3518743, 47.1701572 ], + [ 7.3516672, 47.1701533 ], + [ 7.3514601, 47.1701569 ], + [ 7.3512536, 47.1701678 ], + [ 7.3510482, 47.1701861 ], + [ 7.3508444, 47.1702117 ], + [ 7.3506429, 47.1702445 ], + [ 7.3504442, 47.1702845 ], + [ 7.3502489, 47.1703315 ], + [ 7.3500574, 47.1703854 ], + [ 7.3498703, 47.1704461 ], + [ 7.3496881, 47.1705133 ], + [ 7.3495114, 47.170587 ], + [ 7.3493405, 47.1706669 ], + [ 7.349176, 47.1707528 ], + [ 7.3490183, 47.1708444 ], + [ 7.3488679, 47.1709415 ], + [ 7.3487251, 47.1710439 ], + [ 7.3485904, 47.1711512 ], + [ 7.3484641, 47.1712632 ], + [ 7.3483465, 47.1713795 ], + [ 7.3482381, 47.1714999 ], + [ 7.348139, 47.171624 ], + [ 7.3480495999999995, 47.1717514 ], + [ 7.3479701, 47.1718819 ], + [ 7.3479007, 47.172015 ], + [ 7.3478416, 47.1721504 ], + [ 7.3477931, 47.1722877 ], + [ 7.3477551, 47.1724266 ], + [ 7.3477278, 47.1725666 ], + [ 7.3477113, 47.1727075 ], + [ 7.3477056, 47.1728487 ], + [ 7.3477108, 47.1729899 ], + [ 7.3477268, 47.1731308 ], + [ 7.3477536, 47.1732708 ], + [ 7.3477911, 47.1734098 ], + [ 7.3478393, 47.1735472 ], + [ 7.3478978999999995, 47.1736827 ], + [ 7.3479668, 47.1738159 ], + [ 7.3480457999999995, 47.1739465 ], + [ 7.3481348, 47.1740741 ], + [ 7.3482335, 47.1741983 ], + [ 7.3483415, 47.1743189 ], + [ 7.3484587, 47.1744354 ], + [ 7.3485846, 47.1745475 ], + [ 7.348719, 47.1746551 ], + [ 7.3488614, 47.1747577 ], + [ 7.3490115, 47.174855 ], + [ 7.3491689000000004, 47.1749469 ], + [ 7.3493331, 47.175033 ], + [ 7.3495037, 47.1751132 ], + [ 7.3496803, 47.1751871 ], + [ 7.3498622, 47.175254699999996 ], + [ 7.3500491, 47.1753157 ], + [ 7.3502405, 47.1753699 ], + [ 7.3504357, 47.1754172 ], + [ 7.3506343, 47.1754575 ], + [ 7.3508357, 47.1754906 ], + [ 7.3510393, 47.1755165 ], + [ 7.3512447, 47.1755351 ], + [ 7.3514512, 47.1755463 ], + [ 7.3516584, 47.1755502 ], + [ 7.3518655, 47.1755467 ], + [ 7.352072, 47.1755357 ], + [ 7.3522775, 47.1755174 ], + [ 7.3524812, 47.1754918 ], + [ 7.3526828, 47.175459 ], + [ 7.3528815, 47.175419 ], + [ 7.3530768, 47.175372 ], + [ 7.3532683, 47.1753181 ], + [ 7.3534554, 47.1752574 ], + [ 7.3536376, 47.1751902 ], + [ 7.3538144, 47.1751165 ], + [ 7.3539853, 47.1750366 ], + [ 7.3541498, 47.1749507 ], + [ 7.3543075, 47.1748591 ], + [ 7.3544579, 47.1747619 ], + [ 7.3546007, 47.1746596 ], + [ 7.3547354, 47.1745522 ], + [ 7.3548617, 47.1744403 ], + [ 7.3549792, 47.1743239 ], + [ 7.3550877, 47.1742035 ], + [ 7.3551867, 47.1740795 ], + [ 7.3552761, 47.173952 ], + [ 7.3553556, 47.1738216 ], + [ 7.355425, 47.1736884 ], + [ 7.355484, 47.173553 ], + [ 7.3555326, 47.1734157 ], + [ 7.3555706, 47.1732768 ], + [ 7.3555979, 47.1731368 ], + [ 7.3556143, 47.1729959 ], + [ 7.35562, 47.1728547 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0088", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Pieterlen", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Pieterlen", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Pieterlen", + "lang" : "it-CH" + }, + { + "text" : "Substation Pieterlen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7988719, 47.479805 ], + [ 7.7989841, 47.4798853 ], + [ 7.7990115, 47.4798688 ], + [ 7.7991705, 47.4798875 ], + [ 7.7992951999999995, 47.4798984 ], + [ 7.7994354, 47.4799149 ], + [ 7.7996396, 47.4799434 ], + [ 7.7996841, 47.4799482 ], + [ 7.7998518, 47.4799824 ], + [ 7.8000445, 47.4800216 ], + [ 7.8007480000000005, 47.4801593 ], + [ 7.8007857, 47.4801996 ], + [ 7.800836, 47.4802533 ], + [ 7.80091, 47.4803591 ], + [ 7.8009988, 47.4804907 ], + [ 7.8010896, 47.480645 ], + [ 7.8011064, 47.4807159 ], + [ 7.8011288, 47.4808104 ], + [ 7.8012128, 47.4811331 ], + [ 7.8012473, 47.4812638 ], + [ 7.8012661, 47.4813824 ], + [ 7.8012987, 47.481532 ], + [ 7.8013103, 47.4816548 ], + [ 7.8013205, 47.4817778 ], + [ 7.8013293, 47.4819007 ], + [ 7.8013314, 47.4819462 ], + [ 7.8013317, 47.481999 ], + [ 7.8013303, 47.4820872 ], + [ 7.8016947, 47.4828453 ], + [ 7.8017604, 47.4829553 ], + [ 7.8018362, 47.4830799 ], + [ 7.8019426, 47.483179 ], + [ 7.8026434, 47.4836071 ], + [ 7.8034496, 47.4835898 ], + [ 7.8041629, 47.4834095 ], + [ 7.8045044, 47.4834103 ], + [ 7.804504, 47.4833593 ], + [ 7.8045167, 47.4833117 ], + [ 7.8045361, 47.4832839 ], + [ 7.8045643, 47.4832545 ], + [ 7.8046187, 47.483228 ], + [ 7.8046732, 47.4832147 ], + [ 7.8047213, 47.4832189 ], + [ 7.8047673, 47.4832378 ], + [ 7.8048001, 47.4832552 ], + [ 7.8048214, 47.4832695 ], + [ 7.8051433, 47.4826575 ], + [ 7.8048776, 47.4823775 ], + [ 7.8044142999999995, 47.4818867 ], + [ 7.8042723, 47.4816933 ], + [ 7.8042470999999995, 47.4816667 ], + [ 7.8040747, 47.4814836 ], + [ 7.8039949, 47.4813989 ], + [ 7.8034418, 47.4810528 ], + [ 7.8032833, 47.4808801 ], + [ 7.8030789, 47.4806581 ], + [ 7.802499, 47.4802265 ], + [ 7.8022957, 47.4800384 ], + [ 7.8021434, 47.4798934 ], + [ 7.8018941, 47.4796342 ], + [ 7.8018623, 47.479469 ], + [ 7.8017678, 47.479122 ], + [ 7.8016535000000005, 47.4787803 ], + [ 7.8016732, 47.4784928 ], + [ 7.8016445, 47.4784131 ], + [ 7.8015249, 47.4781063 ], + [ 7.8013332, 47.4777369 ], + [ 7.8011239, 47.4774317 ], + [ 7.8007325, 47.4772505 ], + [ 7.8006011, 47.4771334 ], + [ 7.8004194, 47.4769716 ], + [ 7.8000012, 47.4767645 ], + [ 7.7997678, 47.4769278 ], + [ 7.799619, 47.4768966 ], + [ 7.7994047, 47.4768324 ], + [ 7.799513, 47.4771035 ], + [ 7.7994546, 47.4775358 ], + [ 7.7993987, 47.4779618 ], + [ 7.7992032, 47.4782673 ], + [ 7.7990394, 47.4785263 ], + [ 7.7990101, 47.4786287 ], + [ 7.7989343, 47.4788935 ], + [ 7.7987859, 47.4791149 ], + [ 7.7985546, 47.4793488 ], + [ 7.7988719, 47.479805 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns314", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Strickrain", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Strickrain", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Strickrain", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Strickrain", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5406107, 47.4449578 ], + [ 7.5387292, 47.4445408 ], + [ 7.5387228, 47.4445423 ], + [ 7.5379209, 47.4447329 ], + [ 7.5365302, 47.4453132 ], + [ 7.5360209000000005, 47.4453428 ], + [ 7.5365508, 47.4448022 ], + [ 7.5367152, 47.4444954 ], + [ 7.5371749, 47.4447968 ], + [ 7.5377697999999995, 47.444514 ], + [ 7.5381715, 47.4444201 ], + [ 7.538178, 47.4444186 ], + [ 7.5365804, 47.4440645 ], + [ 7.5329233, 47.4434432 ], + [ 7.5328401, 47.4434292 ], + [ 7.5328284, 47.4434304 ], + [ 7.5316402, 47.4435584 ], + [ 7.5303047, 47.4437707 ], + [ 7.5303062, 47.4446091 ], + [ 7.5302892, 47.4448705 ], + [ 7.5302866, 47.4449377 ], + [ 7.5303125, 47.4449289 ], + [ 7.5303943, 47.4449756 ], + [ 7.5306397, 47.4449696 ], + [ 7.5308376, 47.4449577 ], + [ 7.5309151, 47.4449372 ], + [ 7.5311086, 47.4447998 ], + [ 7.5313238, 47.4447938 ], + [ 7.5315002, 47.4448024 ], + [ 7.5316035, 47.4447819 ], + [ 7.5317411, 47.4446767 ], + [ 7.5323781, 47.4446207 ], + [ 7.5335186, 47.4445584 ], + [ 7.5336221, 47.4446489 ], + [ 7.533876, 47.4446195 ], + [ 7.5339317999999995, 47.444523 ], + [ 7.5339015, 47.4444501 ], + [ 7.534603, 47.4443619 ], + [ 7.5347284, 47.4447005 ], + [ 7.5347158, 47.4448991 ], + [ 7.5346647, 47.4451941 ], + [ 7.5351983, 47.4451235 ], + [ 7.5353104, 47.4452052 ], + [ 7.5350868, 47.4453222 ], + [ 7.5351516, 47.4454857 ], + [ 7.5350828, 47.4455149 ], + [ 7.5348891, 47.4454859 ], + [ 7.534872, 47.4455501 ], + [ 7.5349927, 47.4456785 ], + [ 7.5351132, 47.4456814 ], + [ 7.5351573, 47.4457247 ], + [ 7.5357634000000004, 47.4458035 ], + [ 7.5362673000000004, 47.4459169 ], + [ 7.5368139, 47.4459106 ], + [ 7.5369647, 47.4459455 ], + [ 7.5373391, 47.4459277 ], + [ 7.5374901, 47.4460911 ], + [ 7.5373182, 47.4462635 ], + [ 7.5369914, 47.4464711 ], + [ 7.5368497, 47.4466143 ], + [ 7.5368110999999995, 47.4467457 ], + [ 7.5367946, 47.4470962 ], + [ 7.5366268, 47.4471489 ], + [ 7.5364717, 47.4471023 ], + [ 7.5363297, 47.4471316 ], + [ 7.5360721999999996, 47.4475348 ], + [ 7.5358830999999995, 47.4477306 ], + [ 7.5356339, 47.4479848 ], + [ 7.5355738, 47.4480754 ], + [ 7.5353241, 47.4480844 ], + [ 7.5346313, 47.4482047 ], + [ 7.5342395, 47.44817 ], + [ 7.5337746, 47.4481499 ], + [ 7.5334001, 47.4481385 ], + [ 7.5330083, 47.4481359 ], + [ 7.5323539, 47.4480664 ], + [ 7.5323363, 47.4478445 ], + [ 7.5314453, 47.4478919 ], + [ 7.5314799, 47.4479707 ], + [ 7.5312564, 47.4479857 ], + [ 7.5309959, 47.4479997 ], + [ 7.530568, 47.4479845 ], + [ 7.5300408, 47.4480212 ], + [ 7.5296817, 47.4480215 ], + [ 7.5296775, 47.4480222 ], + [ 7.5294238, 47.4480774 ], + [ 7.5288212, 47.4480818 ], + [ 7.5286663, 47.4481364 ], + [ 7.5279391, 47.4482966 ], + [ 7.527807, 47.4482383 ], + [ 7.5276061, 47.448219 ], + [ 7.5271986, 47.448266 ], + [ 7.5264239, 47.4483367 ], + [ 7.5254426, 47.448427 ], + [ 7.5253563, 47.448357 ], + [ 7.525243, 47.4483697 ], + [ 7.5235447, 47.4487876 ], + [ 7.523189, 47.448854 ], + [ 7.5227701, 47.4489439 ], + [ 7.5229425, 47.4490528 ], + [ 7.5230171, 47.4490527 ], + [ 7.5231209, 47.4493602 ], + [ 7.5227132999999995, 47.4493294 ], + [ 7.522702, 47.4494423 ], + [ 7.5227465, 47.4494354 ], + [ 7.5229991, 47.4494625 ], + [ 7.5232747, 47.4495129 ], + [ 7.5232403, 47.4495713 ], + [ 7.523516, 47.4496646 ], + [ 7.5239524, 47.4497694 ], + [ 7.5241011, 47.4494812 ], + [ 7.5241701, 47.4495201 ], + [ 7.524532, 47.4497067 ], + [ 7.5246584, 47.4498156 ], + [ 7.5245379, 47.4498468 ], + [ 7.5244747, 47.4497612 ], + [ 7.5241302999999995, 47.4497498 ], + [ 7.5240327, 47.449781 ], + [ 7.5239353, 47.4498434 ], + [ 7.5235336, 47.4499449 ], + [ 7.5231319, 47.4500036 ], + [ 7.5229886, 47.4500816 ], + [ 7.5229888, 47.4502217 ], + [ 7.5234708999999995, 47.4502058 ], + [ 7.5236087, 47.4502485 ], + [ 7.5235515, 47.4503381 ], + [ 7.5235573, 47.4504121 ], + [ 7.5238731, 47.4504819 ], + [ 7.5241947, 47.4505401 ], + [ 7.5242923, 47.4504961 ], + [ 7.5260276, 47.4499873 ], + [ 7.5261468, 47.4501931 ], + [ 7.5269777, 47.4498613 ], + [ 7.5269644, 47.4497896 ], + [ 7.526885, 47.4496733 ], + [ 7.5277428, 47.4495742 ], + [ 7.5284817, 47.4494483 ], + [ 7.5295922, 47.4493277 ], + [ 7.5303577, 47.4493182 ], + [ 7.5314927, 47.4493083 ], + [ 7.5322452, 47.4493793 ], + [ 7.5325356, 47.4494507 ], + [ 7.5326544, 47.4494506 ], + [ 7.5327731, 47.4493879 ], + [ 7.5333934, 47.4493695 ], + [ 7.5340798, 47.4493958 ], + [ 7.5345414, 47.4492521 ], + [ 7.5349504, 47.4491623 ], + [ 7.5350566, 47.4494755 ], + [ 7.5357690999999996, 47.4493585 ], + [ 7.5366394, 47.448946 ], + [ 7.5376818, 47.4484103 ], + [ 7.538327, 47.4476129 ], + [ 7.5383133, 47.4473354 ], + [ 7.5383921, 47.4471205 ], + [ 7.5385896, 47.4468876 ], + [ 7.5388719, 47.4466418 ], + [ 7.5389771, 47.4464179 ], + [ 7.5393328, 47.4460774 ], + [ 7.5393985, 47.445961 ], + [ 7.5395433, 47.445746 ], + [ 7.5397806, 47.4456294 ], + [ 7.5401364, 47.4453515 ], + [ 7.5403763, 47.445149 ], + [ 7.540583, 47.4449934 ], + [ 7.5406088, 47.4449603 ], + [ 7.5406107, 47.4449578 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr005", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Egglen", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Egglen", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Egglen", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Egglen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7398302999999995, 47.3542777 ], + [ 7.7402817, 47.3541947 ], + [ 7.7404224, 47.3541806 ], + [ 7.740613, 47.3541567 ], + [ 7.7410021, 47.3541078 ], + [ 7.7410896000000005, 47.3540981 ], + [ 7.74141, 47.3540685 ], + [ 7.7416179, 47.3540499 ], + [ 7.7422993, 47.3539801 ], + [ 7.7427949, 47.3539586 ], + [ 7.7434874, 47.3539302 ], + [ 7.7440864, 47.3539404 ], + [ 7.7449058, 47.3539414 ], + [ 7.7449964, 47.3539358 ], + [ 7.7451042, 47.3539228 ], + [ 7.7455605, 47.3538557 ], + [ 7.7456449, 47.3538491 ], + [ 7.7456902, 47.3538458 ], + [ 7.7463939, 47.3538482 ], + [ 7.7465072, 47.3538488 ], + [ 7.74663, 47.353856 ], + [ 7.7468772999999995, 47.353899 ], + [ 7.7470400999999995, 47.353924 ], + [ 7.7471793, 47.3539236 ], + [ 7.7472370999999995, 47.3539171 ], + [ 7.7474354, 47.3538709 ], + [ 7.7476245, 47.3538396 ], + [ 7.7477447999999995, 47.3538265 ], + [ 7.7479542, 47.3538121 ], + [ 7.7480699, 47.3538023 ], + [ 7.7481965, 47.353786 ], + [ 7.7483386, 47.3537665 ], + [ 7.7487448, 47.3537048 ], + [ 7.7489636, 47.3536723 ], + [ 7.7491433, 47.3536506 ], + [ 7.7494184, 47.3536297 ], + [ 7.7496716, 47.3536109 ], + [ 7.7497935, 47.3535957 ], + [ 7.7498575, 47.3535871 ], + [ 7.7499372, 47.353573 ], + [ 7.7499873, 47.3535603 ], + [ 7.750027, 47.3535994 ], + [ 7.7504744, 47.3535771 ], + [ 7.7505746, 47.3535387 ], + [ 7.7506841, 47.3535104 ], + [ 7.7510592, 47.3533081 ], + [ 7.7512236, 47.3532242 ], + [ 7.7513098, 47.353259 ], + [ 7.7513537, 47.353278 ], + [ 7.7514101, 47.3532938 ], + [ 7.7514774, 47.3533022 ], + [ 7.751554, 47.3533009 ], + [ 7.7516087, 47.3532922 ], + [ 7.7516680000000004, 47.3532708 ], + [ 7.7517225, 47.3532399 ], + [ 7.7517645, 47.3532026 ], + [ 7.7517909, 47.353161 ], + [ 7.7518093, 47.3531004 ], + [ 7.7518044, 47.3530771 ], + [ 7.7516025, 47.3530319 ], + [ 7.7512269, 47.3529862 ], + [ 7.7508393, 47.3530106 ], + [ 7.7499832, 47.3531574 ], + [ 7.7499839999999995, 47.3527557 ], + [ 7.7496156, 47.3528566 ], + [ 7.7493878, 47.352938 ], + [ 7.7493435, 47.3528488 ], + [ 7.7487437, 47.352961 ], + [ 7.7483749, 47.353013 ], + [ 7.7482499, 47.3530239 ], + [ 7.7482865, 47.3523246 ], + [ 7.748227, 47.3523056 ], + [ 7.7481424, 47.3522804 ], + [ 7.748102, 47.3523336 ], + [ 7.7480522, 47.3523656 ], + [ 7.7478963, 47.3524447 ], + [ 7.7478061, 47.3525235 ], + [ 7.7473091, 47.352578 ], + [ 7.7470871, 47.3525892 ], + [ 7.7463853, 47.3528993 ], + [ 7.7460629, 47.3528491 ], + [ 7.7455903, 47.3527887 ], + [ 7.7449096, 47.3527066 ], + [ 7.7447593999999995, 47.3526879 ], + [ 7.744256, 47.3527083 ], + [ 7.7436212, 47.3527057 ], + [ 7.7431991, 47.352726 ], + [ 7.7425708, 47.3527871 ], + [ 7.7447361, 47.3529624 ], + [ 7.7447012, 47.3534489 ], + [ 7.7431469, 47.3534381 ], + [ 7.7429683, 47.3533939 ], + [ 7.7429152, 47.3533983 ], + [ 7.7429085, 47.3533176 ], + [ 7.7422081, 47.3533492 ], + [ 7.7418173, 47.3533651 ], + [ 7.7396992000000004, 47.3537574 ], + [ 7.7397222, 47.3540105 ], + [ 7.7397238999999995, 47.3540302 ], + [ 7.7398302999999995, 47.3542777 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns347", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Helfenbergrüttenen", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Helfenbergrüttenen", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Helfenbergrüttenen", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Helfenbergrüttenen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.227424, 46.3808921 ], + [ 6.2271688, 46.3808952 ], + [ 6.2269145, 46.3809097 ], + [ 6.2266622, 46.3809358 ], + [ 6.2264128, 46.3809732 ], + [ 6.2261675, 46.3810219 ], + [ 6.2259273, 46.3810815 ], + [ 6.2256933, 46.3811519 ], + [ 6.2254664, 46.3812327 ], + [ 6.2252477, 46.3813237 ], + [ 6.225038, 46.3814243 ], + [ 6.2248382, 46.3815342 ], + [ 6.2246493, 46.3816529 ], + [ 6.224472, 46.3817799 ], + [ 6.2243071, 46.3819147 ], + [ 6.2241552, 46.3820566 ], + [ 6.2240171, 46.3822051 ], + [ 6.2238934, 46.3823595 ], + [ 6.223797, 46.3824994 ], + [ 6.2236919, 46.3826639 ], + [ 6.2236794, 46.3826838 ], + [ 6.2235858, 46.3828481 ], + [ 6.2235078999999995, 46.3830163 ], + [ 6.2234461, 46.3831876 ], + [ 6.2234007, 46.3833614 ], + [ 6.2233717, 46.3835368 ], + [ 6.2233594, 46.3837132 ], + [ 6.2233638, 46.3838898 ], + [ 6.2233849, 46.3840658 ], + [ 6.2234225, 46.3842405 ], + [ 6.2234766, 46.384413 ], + [ 6.2235469, 46.3845828 ], + [ 6.2236331, 46.384749 ], + [ 6.2237348, 46.384911 ], + [ 6.2238516, 46.385068 ], + [ 6.223983, 46.3852194 ], + [ 6.2241284, 46.3853645 ], + [ 6.2242872, 46.3855028 ], + [ 6.2244587, 46.3856335 ], + [ 6.2246423, 46.3857562 ], + [ 6.224837, 46.3858704 ], + [ 6.2250421, 46.3859754 ], + [ 6.2252567, 46.386071 ], + [ 6.2254799, 46.3861566 ], + [ 6.2256819, 46.3862233 ], + [ 6.2259197, 46.3862961 ], + [ 6.2259485, 46.3863048 ], + [ 6.2261859, 46.3863695 ], + [ 6.2264289, 46.3864234 ], + [ 6.2266765, 46.3864661 ], + [ 6.2269276, 46.3864976 ], + [ 6.2271812, 46.3865176 ], + [ 6.2274361, 46.3865261 ], + [ 6.2276912, 46.3865231 ], + [ 6.2279456, 46.3865085 ], + [ 6.228198, 46.3864824 ], + [ 6.2284474, 46.386445 ], + [ 6.2286927, 46.3863963 ], + [ 6.2289329, 46.3863367 ], + [ 6.2291669, 46.3862663 ], + [ 6.2293938, 46.3861855 ], + [ 6.2296126, 46.3860945 ], + [ 6.2298223, 46.3859939 ], + [ 6.230022, 46.385884 ], + [ 6.230211, 46.3857653 ], + [ 6.2303882999999995, 46.3856382 ], + [ 6.2305532, 46.3855035 ], + [ 6.230705, 46.3853615 ], + [ 6.2308431, 46.385213 ], + [ 6.2309668, 46.3850586 ], + [ 6.2310632, 46.3849188 ], + [ 6.2311683, 46.3847542 ], + [ 6.2311808, 46.3847343 ], + [ 6.2312744, 46.38457 ], + [ 6.2313522, 46.3844018 ], + [ 6.231414, 46.3842305 ], + [ 6.2314594, 46.3840567 ], + [ 6.2314884, 46.3838812 ], + [ 6.2315006, 46.3837049 ], + [ 6.2314962, 46.3835283 ], + [ 6.2314751, 46.3833523 ], + [ 6.2314374, 46.3831776 ], + [ 6.2313833, 46.3830051 ], + [ 6.231313, 46.382835299999996 ], + [ 6.2312268, 46.3826691 ], + [ 6.2311251, 46.3825071 ], + [ 6.2310083, 46.3823501 ], + [ 6.2308769, 46.382198700000004 ], + [ 6.2307315, 46.3820536 ], + [ 6.2305727, 46.3819154 ], + [ 6.2304011, 46.3817846 ], + [ 6.2302176, 46.3816619 ], + [ 6.2300229, 46.3815478 ], + [ 6.2298178, 46.3814427 ], + [ 6.2296032, 46.3813472 ], + [ 6.22938, 46.3812616 ], + [ 6.229178, 46.3811949 ], + [ 6.2289402, 46.3811221 ], + [ 6.2289115, 46.3811135 ], + [ 6.2286741, 46.3810487 ], + [ 6.2284311, 46.3809948 ], + [ 6.2281835, 46.3809521 ], + [ 6.2279324, 46.3809206 ], + [ 6.2276789, 46.3809006 ], + [ 6.227424, 46.3808921 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00031", + "country" : "CHE", + "name" : [ + { + "text" : "Hôpital régional GHOL site de Nyon", + "lang" : "de-CH" + }, + { + "text" : "Hôpital régional GHOL site de Nyon", + "lang" : "fr-CH" + }, + { + "text" : "Hôpital régional GHOL site de Nyon", + "lang" : "it-CH" + }, + { + "text" : "Hôpital régional GHOL site de Nyon", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kantonspolizei Waadt", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale vaudoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Vaud", + "lang" : "it-CH" + }, + { + "text" : "Vaud Cantonal Police", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.pcv@vd.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8040567, 47.3893628 ], + [ 7.8040743, 47.3894202 ], + [ 7.804126, 47.3894665 ], + [ 7.8042368, 47.3895462 ], + [ 7.8044242, 47.3897196 ], + [ 7.8045746, 47.3898404 ], + [ 7.804746, 47.3899476 ], + [ 7.8049302, 47.3900419 ], + [ 7.8051316, 47.3901184 ], + [ 7.8052328, 47.3901351 ], + [ 7.8053596, 47.3901826 ], + [ 7.805434, 47.3902332 ], + [ 7.8060637, 47.390516 ], + [ 7.8061554, 47.3905946 ], + [ 7.8062632, 47.3907238 ], + [ 7.8063549, 47.3907849 ], + [ 7.8065736999999995, 47.390866 ], + [ 7.8067009, 47.3909584 ], + [ 7.8068242, 47.3910016 ], + [ 7.8070074, 47.3910366 ], + [ 7.8072627, 47.3911214 ], + [ 7.8076856, 47.3912221 ], + [ 7.8079604, 47.3913089 ], + [ 7.8081721, 47.3913151 ], + [ 7.8079222, 47.3909101 ], + [ 7.8079933, 47.3906799 ], + [ 7.8082025, 47.3904894 ], + [ 7.8070202, 47.3896895 ], + [ 7.806573, 47.3893897 ], + [ 7.8064403, 47.389399 ], + [ 7.8063033, 47.3893778 ], + [ 7.8052318, 47.3893917 ], + [ 7.8047382, 47.3893935 ], + [ 7.8045938, 47.3893905 ], + [ 7.8044492, 47.3893746 ], + [ 7.8042026, 47.389321699999996 ], + [ 7.8041166, 47.3893203 ], + [ 7.8040567, 47.3893628 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns046", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Oberhasel", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Oberhasel", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Oberhasel", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Oberhasel", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.966238, 46.6511094 ], + [ 8.9666896, 46.6511097 ], + [ 8.9670866, 46.651169 ], + [ 8.9676259, 46.651297 ], + [ 8.9684185, 46.6515172 ], + [ 8.968892499999999, 46.6516458 ], + [ 8.9694011, 46.6517266 ], + [ 8.9699337, 46.6518457 ], + [ 8.9703356, 46.6519636 ], + [ 8.9705914, 46.6519995 ], + [ 8.9709049, 46.6521432 ], + [ 8.9717636, 46.6521868 ], + [ 8.9723006, 46.6522313 ], + [ 8.9727944, 46.6522197 ], + [ 8.973373, 46.652178 ], + [ 8.973491899999999, 46.6521685 ], + [ 8.9737369, 46.6523127 ], + [ 8.9742345, 46.6523797 ], + [ 8.9745593, 46.6525135 ], + [ 8.9752674, 46.652946299999996 ], + [ 8.9755383, 46.6530532 ], + [ 8.976158999999999, 46.6532291 ], + [ 8.9766315, 46.6533886 ], + [ 8.9770658, 46.6533836 ], + [ 8.977284, 46.6533295 ], + [ 8.9775984, 46.6533287 ], + [ 8.9777496, 46.6533926 ], + [ 8.9779216, 46.6534677 ], + [ 8.9780642, 46.6535701 ], + [ 8.9783836, 46.6538027 ], + [ 8.9790028, 46.6539509 ], + [ 8.9796622, 46.6540802 ], + [ 8.9801123, 46.654369 ], + [ 8.980478, 46.6545069 ], + [ 8.9811412, 46.6547652 ], + [ 8.9815569, 46.6547964 ], + [ 8.9819575, 46.6547817 ], + [ 8.9827156, 46.6550756 ], + [ 8.9829998, 46.6551915 ], + [ 8.9831659, 46.6553736 ], + [ 8.9835718, 46.6555431 ], + [ 8.9837483, 46.6556329 ], + [ 8.983755500000001, 46.655912 ], + [ 8.9840077, 46.6559661 ], + [ 8.9841474, 46.6559961 ], + [ 8.984441, 46.6559828 ], + [ 8.9844334, 46.6557157 ], + [ 8.9844404, 46.655476 ], + [ 8.9847722, 46.6553977 ], + [ 8.9851265, 46.6551349 ], + [ 8.9853783, 46.6550579 ], + [ 8.9859312, 46.6550302 ], + [ 8.9861271, 46.654999 ], + [ 8.9865147, 46.6549027 ], + [ 8.9868873, 46.6547387 ], + [ 8.987141, 46.6545286 ], + [ 8.9873366, 46.6543417 ], + [ 8.9875442, 46.6540914 ], + [ 8.9876994, 46.6538641 ], + [ 8.9878407, 46.65361 ], + [ 8.9879396, 46.6533269 ], + [ 8.988049, 46.6530686 ], + [ 8.9881427, 46.6528893 ], + [ 8.9881704, 46.6526611 ], + [ 8.9880839, 46.6524363 ], + [ 8.9880517, 46.6522809 ], + [ 8.9881718, 46.6521127 ], + [ 8.9883428, 46.6520094 ], + [ 8.9885314, 46.6517774 ], + [ 8.9886104, 46.6514855 ], + [ 8.9886967, 46.6512499 ], + [ 8.9888218, 46.6509688 ], + [ 8.9888933, 46.6508169 ], + [ 8.9891612, 46.6507894 ], + [ 8.9891584, 46.6505187 ], + [ 8.9897244, 46.6502084 ], + [ 8.9896836, 46.6499831 ], + [ 8.9900483, 46.6499141 ], + [ 8.9903644, 46.6497191 ], + [ 8.9905271, 46.6494964 ], + [ 8.9906283, 46.6493532 ], + [ 8.9908691, 46.64915 ], + [ 8.9910276, 46.64904 ], + [ 8.9913776, 46.6488854 ], + [ 8.9917223, 46.6488053 ], + [ 8.992038, 46.6487366 ], + [ 8.9923779, 46.6485731 ], + [ 8.9926482, 46.6484892 ], + [ 8.9928534, 46.648327 ], + [ 8.9929583, 46.6481679 ], + [ 8.9932006, 46.6480482 ], + [ 8.9934744, 46.6480003 ], + [ 8.993755, 46.6479593 ], + [ 8.9942053, 46.6477471 ], + [ 8.9944247, 46.6475937 ], + [ 8.9947265, 46.6474982 ], + [ 8.9950227, 46.6471229 ], + [ 8.9952007, 46.6468684 ], + [ 8.9953625, 46.6466456 ], + [ 8.9956911, 46.6464009 ], + [ 8.9958798, 46.6460627 ], + [ 8.9962009, 46.6457864 ], + [ 8.9966537, 46.6455462 ], + [ 8.9967028, 46.6453796 ], + [ 8.9969827, 46.6453482 ], + [ 8.9972905, 46.6448924 ], + [ 8.9973324, 46.6444772 ], + [ 8.9976284, 46.6440677 ], + [ 8.9998104, 46.644331 ], + [ 9.000134, 46.6444791 ], + [ 9.0003514, 46.6445423 ], + [ 9.0007029, 46.6446133 ], + [ 9.0010101, 46.6446216 ], + [ 9.001235, 46.6445765 ], + [ 9.0012016, 46.6443804 ], + [ 9.0011145, 46.6443068 ], + [ 9.0008712, 46.6442213 ], + [ 9.0008125, 46.6440562 ], + [ 9.0005688, 46.6439582 ], + [ 9.0008485, 46.6439175 ], + [ 9.000831, 46.6437612 ], + [ 9.0008781, 46.643557799999996 ], + [ 9.0007955, 46.6434667 ], + [ 9.0009755, 46.6432247 ], + [ 9.0009278, 46.6429581 ], + [ 9.0008713, 46.6428391 ], + [ 9.0005022, 46.642586 ], + [ 9.000823, 46.6425541 ], + [ 9.0008684, 46.6424586 ], + [ 9.0007177, 46.6422998 ], + [ 9.0004995, 46.6421801 ], + [ 9.0003139, 46.6419179 ], + [ 9.0002739, 46.6417468 ], + [ 9.000251, 46.6415777 ], + [ 9.0001698, 46.64131 ], + [ 9.0001512, 46.6410619 ], + [ 9.0002041, 46.6408018 ], + [ 9.0002584, 46.6407313 ], + [ 8.9999595, 46.6406711 ], + [ 8.9997807, 46.6405577 ], + [ 8.999763399999999, 46.6403841 ], + [ 8.9996654, 46.6402429 ], + [ 8.9994409, 46.64013 ], + [ 8.9992345, 46.6399673 ], + [ 8.9990316, 46.6398114 ], + [ 8.9989083, 46.6396953 ], + [ 8.9987515, 46.6395817 ], + [ 8.9988297, 46.6392649 ], + [ 8.9989111, 46.6390881 ], + [ 8.9990225, 46.6389289 ], + [ 8.9991994, 46.6388076 ], + [ 8.9992413, 46.6386469 ], + [ 8.9991269, 46.6386143 ], + [ 8.9989434, 46.6386229 ], + [ 8.9987637, 46.6386201 ], + [ 8.998727, 46.6384512 ], + [ 8.9988032, 46.6383173 ], + [ 8.9988588, 46.6381791 ], + [ 8.9989142, 46.6380341 ], + [ 8.9990036, 46.6379361 ], + [ 8.9987132, 46.6379706 ], + [ 8.9988264, 46.6377347 ], + [ 8.9987127, 46.6376433 ], + [ 8.9987002, 46.6375216 ], + [ 8.9985823, 46.6373693 ], + [ 8.9984318, 46.6373595 ], + [ 8.9982455, 46.6373545 ], + [ 8.9977757, 46.6374246 ], + [ 8.9969846, 46.6375973 ], + [ 8.9966776, 46.637738 ], + [ 8.99638, 46.6379192 ], + [ 8.9960434, 46.6380557 ], + [ 8.995087, 46.6381555 ], + [ 8.994610699999999, 46.63823 ], + [ 8.9941077, 46.6383953 ], + [ 8.9937734, 46.6385273 ], + [ 8.9932722, 46.6386428 ], + [ 8.9926873, 46.6386575 ], + [ 8.9922105, 46.6386893 ], + [ 8.9917867, 46.6387432 ], + [ 8.9912954, 46.6388631 ], + [ 8.9906341, 46.6390051 ], + [ 8.9900501, 46.6390537 ], + [ 8.9896809, 46.6391047 ], + [ 8.9892111, 46.6391499 ], + [ 8.9888453, 46.6391783 ], + [ 8.9885778, 46.6391877 ], + [ 8.9883097, 46.639064 ], + [ 8.9880894, 46.6390098 ], + [ 8.9878317, 46.6390483 ], + [ 8.9874428, 46.6390387 ], + [ 8.9871867, 46.6390208 ], + [ 8.9869118, 46.6386873 ], + [ 8.9866092, 46.6383269 ], + [ 8.986480199999999, 46.638098 ], + [ 8.9863657, 46.6377786 ], + [ 8.9861217, 46.6373837 ], + [ 8.9859468, 46.6371778 ], + [ 8.9857849, 46.6369401 ], + [ 8.9856514, 46.6368105 ], + [ 8.9854269, 46.6367247 ], + [ 8.9848394, 46.6364799 ], + [ 8.9844467, 46.6361656 ], + [ 8.9842545, 46.6358966 ], + [ 8.9841013, 46.6357333 ], + [ 8.9838112, 46.635497 ], + [ 8.9837713, 46.635301 ], + [ 8.9837541, 46.6351251 ], + [ 8.983788, 46.6348833 ], + [ 8.9838078, 46.6347184 ], + [ 8.9838132, 46.6346507 ], + [ 8.983570199999999, 46.6344611 ], + [ 8.9834349, 46.6344105 ], + [ 8.9831791, 46.6343725 ], + [ 8.9828703, 46.6343393 ], + [ 8.9823934, 46.6341906 ], + [ 8.9820616, 46.6341193 ], + [ 8.9816924, 46.6339987 ], + [ 8.9813893, 46.6338753 ], + [ 8.9811015, 46.6337179 ], + [ 8.9808926, 46.6336071 ], + [ 8.9806894, 46.6334105 ], + [ 8.9802068, 46.6330314 ], + [ 8.9798478, 46.6327529 ], + [ 8.9795245, 46.6326386 ], + [ 8.9789486, 46.6324795 ], + [ 8.9785049, 46.6323507 ], + [ 8.9781137, 46.6322574 ], + [ 8.9773906, 46.6320929 ], + [ 8.9768965, 46.631942 ], + [ 8.9766101, 46.6318612 ], + [ 8.9761533, 46.6317281 ], + [ 8.9757887, 46.6316526 ], + [ 8.9755723, 46.6316208 ], + [ 8.9753753, 46.6316115 ], + [ 8.9752243, 46.6315858 ], + [ 8.9750247, 46.6313959 ], + [ 8.9749232, 46.631099 ], + [ 8.9747167, 46.630785 ], + [ 8.9746923, 46.6307036 ], + [ 8.974497, 46.6304096 ], + [ 8.974127, 46.6301407 ], + [ 8.9737857, 46.6298823 ], + [ 8.9743492, 46.6298045 ], + [ 8.9744743, 46.6297827 ], + [ 8.975137, 46.6296894 ], + [ 8.9757404, 46.6296111 ], + [ 8.9766207, 46.6295084 ], + [ 8.9797037, 46.6290441 ], + [ 8.9828734, 46.6286178 ], + [ 8.9836828, 46.6284889 ], + [ 8.9841594, 46.6284283 ], + [ 8.9846249, 46.6283507 ], + [ 8.985915, 46.6281929 ], + [ 8.9865324, 46.6281174 ], + [ 8.9874981, 46.6279471 ], + [ 8.9895365, 46.627668 ], + [ 8.989965399999999, 46.6276261 ], + [ 8.991754, 46.6277454 ], + [ 8.9929944, 46.6278183 ], + [ 8.9945319, 46.6278063 ], + [ 8.99529, 46.6276568 ], + [ 8.9960939, 46.6275111 ], + [ 8.9962013, 46.6271595 ], + [ 8.9962359, 46.6265754 ], + [ 8.996255099999999, 46.6263327 ], + [ 8.9962675, 46.6258568 ], + [ 8.9965548, 46.6254038 ], + [ 8.9972162, 46.6248472 ], + [ 8.9974867, 46.6247447 ], + [ 8.9978616, 46.6246408 ], + [ 8.9985362, 46.6245418 ], + [ 8.999249, 46.6244063 ], + [ 8.9999273, 46.6244061 ], + [ 9.0006052, 46.6244236 ], + [ 9.0012174, 46.6244242 ], + [ 9.0019834, 46.6243239 ], + [ 9.0020763, 46.6243766 ], + [ 9.0025558, 46.6251781 ], + [ 9.0029651, 46.6260389 ], + [ 9.0033952, 46.6269397 ], + [ 9.0040682, 46.6276847 ], + [ 9.0050731, 46.6288425 ], + [ 9.0061233, 46.6300131 ], + [ 9.0066434, 46.63041 ], + [ 9.007787, 46.6311933 ], + [ 9.0087038, 46.6315622 ], + [ 9.0109986, 46.6324913 ], + [ 9.0121474, 46.6330052 ], + [ 9.012772, 46.6329786 ], + [ 9.013002, 46.6328049 ], + [ 9.013113, 46.6326059 ], + [ 9.0132655, 46.6324601 ], + [ 9.0135448, 46.6326627 ], + [ 9.0138036, 46.6326053 ], + [ 9.0137723, 46.6328481 ], + [ 9.0140514, 46.6330418 ], + [ 9.014311, 46.6330113 ], + [ 9.0146102, 46.6329982 ], + [ 9.0149648, 46.633092 ], + [ 9.0152457, 46.6333216 ], + [ 9.0156737, 46.6336927 ], + [ 9.0158821, 46.6336988 ], + [ 9.016099, 46.6337452 ], + [ 9.0164157, 46.6338845 ], + [ 9.0163546, 46.634029 ], + [ 9.0166157, 46.6340522 ], + [ 9.0166828, 46.6341141 ], + [ 9.016739, 46.634248 ], + [ 9.0168411, 46.6346148 ], + [ 9.0168346, 46.6348394 ], + [ 9.0167513, 46.6351188 ], + [ 9.0168195, 46.6352166 ], + [ 9.0171106, 46.6353741 ], + [ 9.0173225, 46.63547 ], + [ 9.0175956, 46.6354573 ], + [ 9.017805, 46.6354992 ], + [ 9.0179645, 46.6355958 ], + [ 9.0179954, 46.6357571 ], + [ 9.0180873, 46.6357736 ], + [ 9.0183622, 46.6358237 ], + [ 9.0185738, 46.6359376 ], + [ 9.0187757, 46.6361413 ], + [ 9.0189851, 46.6361832 ], + [ 9.0194468, 46.6363653 ], + [ 9.0197729, 46.6363788 ], + [ 9.0200425, 46.6364424 ], + [ 9.0203078, 46.6366092 ], + [ 9.0205716, 46.6367224 ], + [ 9.0207808, 46.6367284 ], + [ 9.0215223, 46.6366822 ], + [ 9.0221261, 46.6368354 ], + [ 9.0225306, 46.6368478 ], + [ 9.022675, 46.6368727 ], + [ 9.0230614, 46.6367147 ], + [ 9.0235946, 46.6366893 ], + [ 9.0242309, 46.6365908 ], + [ 9.0245693, 46.636577 ], + [ 9.0253998, 46.6328844 ], + [ 9.02589, 46.632285 ], + [ 9.0266015, 46.6316646 ], + [ 9.0254828, 46.6308453 ], + [ 9.0242632, 46.6297041 ], + [ 9.024273, 46.6291473 ], + [ 9.0241557, 46.628489 ], + [ 9.0232105, 46.626235199999996 ], + [ 9.0231138, 46.6256081 ], + [ 9.0229619, 46.624883 ], + [ 9.0225568, 46.6239549 ], + [ 9.0217426, 46.6228529 ], + [ 9.0213842, 46.6219556 ], + [ 9.0230377, 46.6210079 ], + [ 9.0233108, 46.6207751 ], + [ 9.0239129, 46.6199857 ], + [ 9.0248867, 46.6187377 ], + [ 9.0252394, 46.6178797 ], + [ 9.0252974, 46.6171877 ], + [ 9.0257212, 46.6154445 ], + [ 9.0256007, 46.6148715 ], + [ 9.0259866, 46.6142558 ], + [ 9.0260607, 46.613918 ], + [ 9.0247376, 46.6123204 ], + [ 9.0246263, 46.6114197 ], + [ 9.0254962, 46.6104199 ], + [ 9.0261362, 46.6095941 ], + [ 9.0261764, 46.6087405 ], + [ 9.025875599999999, 46.6082778 ], + [ 9.0255802, 46.6077477 ], + [ 9.0273705, 46.6063895 ], + [ 9.0291921, 46.6062924 ], + [ 9.03053, 46.6061749 ], + [ 9.031722, 46.6052829 ], + [ 9.0324309, 46.6050306 ], + [ 9.0336246, 46.6044213 ], + [ 9.0351055, 46.6038438 ], + [ 9.0352255, 46.6030431 ], + [ 9.0351212, 46.6028245 ], + [ 9.0349061, 46.6021453 ], + [ 9.0354571, 46.6014102 ], + [ 9.0347003, 46.6004783 ], + [ 9.0342141, 46.5999408 ], + [ 9.0340667, 46.5984853 ], + [ 9.0338431, 46.5975437 ], + [ 9.0341731, 46.5963423 ], + [ 9.0339046, 46.5952034 ], + [ 9.0339605, 46.5948877 ], + [ 9.0335857, 46.5941281 ], + [ 9.0341627, 46.5937781 ], + [ 9.0345403, 46.5933049 ], + [ 9.034965, 46.5922193 ], + [ 9.0354781, 46.5919151 ], + [ 9.0361277, 46.591816 ], + [ 9.037123, 46.5914871 ], + [ 9.0374499, 46.5915095 ], + [ 9.0382194, 46.5910488 ], + [ 9.0389726, 46.5909212 ], + [ 9.0407105, 46.5901139 ], + [ 9.041038, 46.5901543 ], + [ 9.0417057, 46.589785 ], + [ 9.0430107, 46.5884619 ], + [ 9.0433469, 46.5879173 ], + [ 9.0435622, 46.5872574 ], + [ 9.0436141, 46.5868068 ], + [ 9.0434977, 46.5864035 ], + [ 9.0431343, 46.5860308 ], + [ 9.0423596, 46.5854298 ], + [ 9.0422584, 46.5850984 ], + [ 9.0423962, 46.5844666 ], + [ 9.0439295, 46.5833652 ], + [ 9.0431474, 46.5833942 ], + [ 9.0425631, 46.5834924 ], + [ 9.0419755, 46.5834827 ], + [ 9.0403357, 46.5831909 ], + [ 9.0387571, 46.5827633 ], + [ 9.0375425, 46.5822855 ], + [ 9.0366068, 46.580652 ], + [ 9.0363247, 46.5799362 ], + [ 9.0361424, 46.579066 ], + [ 9.0356907, 46.5783525 ], + [ 9.0353426, 46.5776106 ], + [ 9.0352953, 46.5768914 ], + [ 9.0355335, 46.5761232 ], + [ 9.0356116, 46.5756723 ], + [ 9.0352363, 46.5748947 ], + [ 9.0342143, 46.5747471 ], + [ 9.0336572, 46.57444 ], + [ 9.0329461, 46.5737752 ], + [ 9.0321176, 46.5731119 ], + [ 9.0311312, 46.571956 ], + [ 9.0306655, 46.5716476 ], + [ 9.0299384, 46.5713249 ], + [ 9.0299904, 46.5708743 ], + [ 9.0293436, 46.5697316 ], + [ 9.0289906, 46.5688188 ], + [ 9.0285056, 46.5678538 ], + [ 9.027494, 46.5667252 ], + [ 9.02689, 46.5661488 ], + [ 9.0266147, 46.5656578 ], + [ 9.026531, 46.5650291 ], + [ 9.0266448, 46.5644607 ], + [ 9.0268892, 46.5638994 ], + [ 9.0269651, 46.5633765 ], + [ 9.0268228, 46.5629736 ], + [ 9.0267999, 46.5621911 ], + [ 9.0260801, 46.5607795 ], + [ 9.025604, 46.5601113 ], + [ 9.0254625, 46.5597354 ], + [ 9.0251957, 46.5595321 ], + [ 9.0246292, 46.5593421 ], + [ 9.0238064, 46.5588587 ], + [ 9.0233316, 46.5582355 ], + [ 9.023325, 46.5580106 ], + [ 9.0237074, 46.5577084 ], + [ 9.0239603, 46.5574349 ], + [ 9.0245335, 46.5560772 ], + [ 9.0247101, 46.5554269 ], + [ 9.0246375, 46.555176 ], + [ 9.024434, 46.5549089 ], + [ 9.0235394, 46.5542016 ], + [ 9.0231919, 46.5534686 ], + [ 9.0231819, 46.5531268 ], + [ 9.0227979, 46.5524843 ], + [ 9.0225871, 46.5519654 ], + [ 9.022314, 46.5515463 ], + [ 9.0216398, 46.5507909 ], + [ 9.02124, 46.5504995 ], + [ 9.020944, 46.5501887 ], + [ 9.0209356, 46.5499009 ], + [ 9.0208239, 46.5496505 ], + [ 9.0205965, 46.5494558 ], + [ 9.0201232, 46.5488775 ], + [ 9.0199823, 46.5485195 ], + [ 9.0196028, 46.5480299 ], + [ 9.0192277, 46.5472434 ], + [ 9.0194635, 46.5463853 ], + [ 9.0200845, 46.5453239 ], + [ 9.0204219, 46.5448243 ], + [ 9.0206434, 46.5443714 ], + [ 9.0212444, 46.5426264 ], + [ 9.021361, 46.5421569 ], + [ 9.0214572, 46.5409859 ], + [ 9.0211741, 46.540225 ], + [ 9.0211575, 46.5396584 ], + [ 9.0212109, 46.5392528 ], + [ 9.0219088, 46.5385952 ], + [ 9.0229583, 46.5379238 ], + [ 9.0224784, 46.5371207 ], + [ 9.0222658, 46.5365388 ], + [ 9.0216459, 46.5354047 ], + [ 9.021374, 46.5350216 ], + [ 9.0215849, 46.5342089 ], + [ 9.0217108, 46.5340542 ], + [ 9.0208133, 46.5336798 ], + [ 9.0186472, 46.5331701 ], + [ 9.0180503, 46.5328185 ], + [ 9.0173895, 46.5325128 ], + [ 9.016744599999999, 46.5321109 ], + [ 9.016589, 46.5321945 ], + [ 9.0165081, 46.5323524 ], + [ 9.0164271, 46.5325385 ], + [ 9.0163054, 46.5326402 ], + [ 9.0161997, 46.5327024 ], + [ 9.0160121, 46.5327816 ], + [ 9.0157511, 46.5328836 ], + [ 9.0154244, 46.5329971 ], + [ 9.015164, 46.5330935 ], + [ 9.0149023, 46.5331729 ], + [ 9.014707, 46.5332635 ], + [ 9.0145272, 46.5332753 ], + [ 9.0143804, 46.5332981 ], + [ 9.0142085, 46.5332985 ], + [ 9.0140454, 46.5332652 ], + [ 9.0138979, 46.5332092 ], + [ 9.0137339, 46.5331477 ], + [ 9.013554, 46.5330411 ], + [ 9.0134307, 46.532917499999996 ], + [ 9.0132998, 46.5327883 ], + [ 9.013152, 46.5326648 ], + [ 9.0129471, 46.5325133 ], + [ 9.0127504, 46.5323616 ], + [ 9.0125289, 46.5321989 ], + [ 9.0122667, 46.5320363 ], + [ 9.0121111, 46.5318959 ], + [ 9.0118564, 46.5316825 ], + [ 9.0115782, 46.5315592 ], + [ 9.0111205, 46.5314534 ], + [ 9.0107444, 46.5314092 ], + [ 9.0105731, 46.5314321 ], + [ 9.0103688, 46.5315227 ], + [ 9.0101412, 46.5316247 ], + [ 9.0098635, 46.5317436 ], + [ 9.0095867, 46.5318907 ], + [ 9.0093424, 46.5320095 ], + [ 9.0090484, 46.5321285 ], + [ 9.0087304, 46.5322588 ], + [ 9.008486, 46.532372 ], + [ 9.0082657, 46.5324458 ], + [ 9.0080861, 46.5324912 ], + [ 9.0078987, 46.532548 ], + [ 9.0076047, 46.5326388 ], + [ 9.0074172, 46.5327181 ], + [ 9.0072542, 46.532803 ], + [ 9.0071325, 46.5328764 ], + [ 9.00701, 46.5329782 ], + [ 9.0069125, 46.5331023 ], + [ 9.006783, 46.5332996 ], + [ 9.0066367, 46.5334521 ], + [ 9.0064336, 46.533644 ], + [ 9.0061894, 46.5339036 ], + [ 9.0059533, 46.5341633 ], + [ 9.005701, 46.5343723 ], + [ 9.0054329, 46.5346263 ], + [ 9.0051559, 46.534796 ], + [ 9.0048709, 46.5349994 ], + [ 9.0045856, 46.5351069 ], + [ 9.0042429, 46.5352598 ], + [ 9.0039332, 46.5354014 ], + [ 9.0035664, 46.5355655 ], + [ 9.0032889, 46.5356901 ], + [ 9.0031344, 46.5357863 ], + [ 9.0029796, 46.5358711 ], + [ 9.0027923, 46.5359898 ], + [ 9.0026623, 46.536114 ], + [ 9.0025154, 46.5362494 ], + [ 9.0023197, 46.5363287 ], + [ 9.0021568, 46.5364418 ], + [ 9.0019941, 46.536566 ], + [ 9.0018233, 46.5366903 ], + [ 9.0016278, 46.5368316 ], + [ 9.0014162, 46.5369841 ], + [ 9.0012044, 46.5370972 ], + [ 9.0008694, 46.5371544 ], + [ 9.0006089, 46.5373014 ], + [ 9.0003802, 46.5374258 ], + [ 9.0000867, 46.5375616 ], + [ 8.9998585, 46.5377312 ], + [ 8.9996556, 46.5378725 ], + [ 8.9995826, 46.5379965 ], + [ 8.999526, 46.5382107 ], + [ 8.9994373, 46.538498 ], + [ 8.9993571, 46.5387684 ], + [ 8.9992359, 46.5391123 ], + [ 8.9991548, 46.5392984 ], + [ 8.9990253, 46.5394676 ], + [ 8.998854099999999, 46.5396087 ], + [ 8.9986338, 46.5397106 ], + [ 8.9983565, 46.5397902 ], + [ 8.9981033, 46.5398527 ], + [ 8.9978583, 46.5398926 ], + [ 8.997548, 46.5399272 ], + [ 8.9971404, 46.5400352 ], + [ 8.9969079, 46.5409873 ], + [ 8.996917, 46.5413027 ], + [ 8.9970318, 46.541387 ], + [ 8.9971143, 46.541505 ], + [ 8.9971477, 46.5416175 ], + [ 8.9971312, 46.5417527 ], + [ 8.9970833, 46.5418712 ], + [ 8.9970269, 46.5420065 ], + [ 8.9969129, 46.5421813 ], + [ 8.9967664, 46.5423562 ], + [ 8.9965957, 46.5425424 ], + [ 8.9965553, 46.5426945 ], + [ 8.9965068, 46.5428243 ], + [ 8.9964913, 46.5429932 ], + [ 8.996468, 46.5432016 ], + [ 8.9963873, 46.5434552 ], + [ 8.9962737, 46.5436413 ], + [ 8.9961926, 46.5437711 ], + [ 8.9960868, 46.5438897 ], + [ 8.9960464, 46.5439854 ], + [ 8.9959574, 46.5441207 ], + [ 8.9959171, 46.5442786 ], + [ 8.9958607, 46.5444139 ], + [ 8.995722, 46.544493 ], + [ 8.9955914, 46.5445721 ], + [ 8.995379, 46.5446403 ], + [ 8.9952004, 46.5447476 ], + [ 8.9950289, 46.5448495 ], + [ 8.9948745, 46.5450075 ], + [ 8.9947361, 46.5451542 ], + [ 8.9945568, 46.545239 ], + [ 8.9943611, 46.5453183 ], + [ 8.9944521, 46.545594 ], + [ 8.9945676, 46.5458135 ], + [ 8.9947158, 46.5460046 ], + [ 8.9948476, 46.5462521 ], + [ 8.9946432, 46.5463145 ], + [ 8.9944961, 46.546388 ], + [ 8.9942433, 46.5464957 ], + [ 8.9941214, 46.5465634 ], + [ 8.99404, 46.5466819 ], + [ 8.9938941, 46.5468512 ], + [ 8.993739399999999, 46.546998 ], + [ 8.993577, 46.547218 ], + [ 8.9922347, 46.5467648 ], + [ 8.991989199999999, 46.5467035 ], + [ 8.9916952, 46.5466534 ], + [ 8.9914002, 46.5466259 ], + [ 8.9911063, 46.5466378 ], + [ 8.9907877, 46.5466387 ], + [ 8.9906167, 46.5467009 ], + [ 8.9903306, 46.5467016 ], + [ 8.9900936, 46.5466796 ], + [ 8.9897171, 46.5466523 ], + [ 8.9894719, 46.5466585 ], + [ 8.9894072, 46.5467036 ], + [ 8.9893172, 46.5467771 ], + [ 8.9892033, 46.5468956 ], + [ 8.9890981, 46.5470084 ], + [ 8.9868877, 46.5479764 ], + [ 8.9864063, 46.5481294 ], + [ 8.986161, 46.5481863 ], + [ 8.9860384, 46.5482316 ], + [ 8.9858265, 46.5482321 ], + [ 8.9855973, 46.5482552 ], + [ 8.9854017, 46.5482556 ], + [ 8.9851645, 46.5482843 ], + [ 8.9849601, 46.5483185 ], + [ 8.9848059, 46.5483977 ], + [ 8.9845931, 46.5484827 ], + [ 8.9844307, 46.54859 ], + [ 8.9842755, 46.5487198 ], + [ 8.9841868, 46.5488665 ], + [ 8.9840483, 46.5489851 ], + [ 8.9839173, 46.549019 ], + [ 8.9837455, 46.5489969 ], + [ 8.9834111, 46.5490202 ], + [ 8.9831901, 46.5490433 ], + [ 8.9830106, 46.5490943 ], + [ 8.9827413, 46.549168 ], + [ 8.9825453, 46.5492135 ], + [ 8.9823086, 46.5492873 ], + [ 8.9821616, 46.5493326 ], + [ 8.9819823, 46.5493612 ], + [ 8.981729, 46.5493673 ], + [ 8.9815081, 46.549396 ], + [ 8.9810916, 46.549425 ], + [ 8.9809608, 46.5494704 ], + [ 8.9806587, 46.5495105 ], + [ 8.9804225, 46.5495729 ], + [ 8.9801858, 46.5496466 ], + [ 8.9799897, 46.5496583 ], + [ 8.9798914, 46.5497261 ], + [ 8.9797692, 46.5498165 ], + [ 8.9796228, 46.5499406 ], + [ 8.9795333, 46.5500591 ], + [ 8.9794034, 46.5502509 ], + [ 8.9792982, 46.5504201 ], + [ 8.9791511, 46.5505499 ], + [ 8.9790619, 46.5506796 ], + [ 8.9790137, 46.5508205 ], + [ 8.9789572, 46.5510121 ], + [ 8.978925, 46.5511698 ], + [ 8.9788518, 46.5512883 ], + [ 8.9788031, 46.5513559 ], + [ 8.9787544, 46.5514461 ], + [ 8.9786985, 46.5516603 ], + [ 8.9786337, 46.5519308 ], + [ 8.9785696, 46.5522012 ], + [ 8.978546399999999, 46.5524152 ], + [ 8.9785306, 46.5526349 ], + [ 8.978473900000001, 46.5528209 ], + [ 8.9783685, 46.5529844 ], + [ 8.9782465, 46.5531649 ], + [ 8.9781658, 46.5532776 ], + [ 8.9780348, 46.5534019 ], + [ 8.9778722, 46.5535317 ], + [ 8.9776684, 46.5536729 ], + [ 8.977497, 46.5537803 ], + [ 8.9772609, 46.5538765 ], + [ 8.9769832, 46.5539166 ], + [ 8.9767054, 46.5539791 ], + [ 8.9763704, 46.5539798 ], + [ 8.975986, 46.5539919 ], + [ 8.9757168, 46.5540149 ], + [ 8.9755864, 46.5540715 ], + [ 8.9753821, 46.5541678 ], + [ 8.9751949, 46.5542638 ], + [ 8.9750311, 46.5543543 ], + [ 8.9747621, 46.5544393 ], + [ 8.97455, 46.5544623 ], + [ 8.9743126, 46.5544853 ], + [ 8.974075599999999, 46.5545196 ], + [ 8.9737492, 46.5545372 ], + [ 8.973357, 46.5545324 ], + [ 8.9731365, 46.5545779 ], + [ 8.9728913, 46.5546685 ], + [ 8.9726712, 46.5547535 ], + [ 8.9724592, 46.5548665 ], + [ 8.9722961, 46.5549795 ], + [ 8.9721499, 46.5551149 ], + [ 8.9720276, 46.5552841 ], + [ 8.9718807, 46.5554252 ], + [ 8.9717263, 46.5555269 ], + [ 8.9715952, 46.555561 ], + [ 8.9712933, 46.5555784 ], + [ 8.9709254, 46.5556299 ], + [ 8.9706724, 46.5556474 ], + [ 8.9703214, 46.5556875 ], + [ 8.9699614, 46.5556994 ], + [ 8.9695936, 46.5557509 ], + [ 8.9693327, 46.5558359 ], + [ 8.9690221, 46.5558928 ], + [ 8.9687363, 46.5559328 ], + [ 8.9683522, 46.555928 ], + [ 8.9680748, 46.5559174 ], + [ 8.9674557, 46.5564817 ], + [ 8.9672434, 46.5567018 ], + [ 8.9671051, 46.556826 ], + [ 8.9669178, 46.5569502 ], + [ 8.9667223, 46.5570971 ], + [ 8.9665181, 46.5571989 ], + [ 8.9663715, 46.5572611 ], + [ 8.9662412, 46.5572952 ], + [ 8.9660041, 46.5573575 ], + [ 8.9657758, 46.5574143 ], + [ 8.9655715, 46.5574541 ], + [ 8.9653098, 46.5574828 ], + [ 8.9649663, 46.5575005 ], + [ 8.964663999999999, 46.5575067 ], + [ 8.9642962, 46.5575018 ], + [ 8.9638308, 46.5575028 ], + [ 8.9635773, 46.5575032 ], + [ 8.963356600000001, 46.5575713 ], + [ 8.9631771, 46.5576505 ], + [ 8.9629161, 46.5577636 ], + [ 8.9625977, 46.5578037 ], + [ 8.962328, 46.5578944 ], + [ 8.9619527, 46.558002 ], + [ 8.9616344, 46.5581322 ], + [ 8.9613979, 46.5582453 ], + [ 8.9610956, 46.558336 ], + [ 8.9607609, 46.558438 ], + [ 8.9604509, 46.5585457 ], + [ 8.9603364, 46.5586192 ], + [ 8.9601733, 46.558732 ], + [ 8.9600185, 46.5588225 ], + [ 8.9598477, 46.5589523 ], + [ 8.9596759, 46.5590483 ], + [ 8.9594638, 46.5591897 ], + [ 8.9593175, 46.5592913 ], + [ 8.9591623, 46.5594268 ], + [ 8.9590975, 46.5595564 ], + [ 8.9590983, 46.559731 ], + [ 8.9591319, 46.5599392 ], + [ 8.9589269, 46.5598664 ], + [ 8.9586488, 46.5598051 ], + [ 8.9585351, 46.5598222 ], + [ 8.9584451, 46.5598955 ], + [ 8.9583232, 46.5599971 ], + [ 8.9581843, 46.5601608 ], + [ 8.9580135, 46.5604088 ], + [ 8.9578432, 46.5607866 ], + [ 8.9576657, 46.5612318 ], + [ 8.9574864, 46.5614067 ], + [ 8.9573957, 46.5612829 ], + [ 8.9572645, 46.5611706 ], + [ 8.957125, 46.5610807 ], + [ 8.9570757, 46.5610077 ], + [ 8.9569938, 46.5609064 ], + [ 8.956846, 46.5607546 ], + [ 8.9566738, 46.560603 ], + [ 8.9564855, 46.560485 ], + [ 8.9562889, 46.5603953 ], + [ 8.956101, 46.5603507 ], + [ 8.9558067, 46.5602948 ], + [ 8.9556025, 46.5602783 ], + [ 8.9554388, 46.5602562 ], + [ 8.9553157, 46.5602 ], + [ 8.9551685, 46.5600652 ], + [ 8.9550044, 46.5599135 ], + [ 8.9548237, 46.5597787 ], + [ 8.954701, 46.5596155 ], + [ 8.9545364, 46.5594752 ], + [ 8.9542995, 46.559340399999996 ], + [ 8.9539632, 46.5592398 ], + [ 8.9535875, 46.5591278 ], + [ 8.9531295, 46.5590723 ], + [ 8.9526552, 46.5590225 ], + [ 8.9523528, 46.5590232 ], + [ 8.952181, 46.5590291 ], + [ 8.9520744, 46.5590068 ], + [ 8.9519195, 46.5589508 ], + [ 8.9517557, 46.5589229 ], + [ 8.9514782, 46.5589685 ], + [ 8.9511595, 46.5590592 ], + [ 8.9510371, 46.5591722 ], + [ 8.9509803, 46.5592679 ], + [ 8.9508499, 46.5593301 ], + [ 8.9507027, 46.5593417 ], + [ 8.9506046, 46.5593306 ], + [ 8.9504409, 46.5593084 ], + [ 8.9502937, 46.55932 ], + [ 8.9502126, 46.5593088 ], + [ 8.950106, 46.5592865 ], + [ 8.950024299999999, 46.5592191 ], + [ 8.9498518, 46.5591462 ], + [ 8.9496879, 46.5590564 ], + [ 8.949492, 46.558961 ], + [ 8.9491564, 46.5589109 ], + [ 8.9487887, 46.5588497 ], + [ 8.9485427, 46.5587995 ], + [ 8.9483626, 46.5587154 ], + [ 8.9482645, 46.5586479 ], + [ 8.9481985, 46.5585299 ], + [ 8.9481169, 46.5584399 ], + [ 8.9479609, 46.5583726 ], + [ 8.947830100000001, 46.5583278 ], + [ 8.9477073, 46.5581928 ], + [ 8.9475595, 46.5580693 ], + [ 8.947314, 46.5579458 ], + [ 8.9463974, 46.5575872 ], + [ 8.9462172, 46.5575256 ], + [ 8.9460208, 46.5574977 ], + [ 8.9458577, 46.557498 ], + [ 8.9457432, 46.5575433 ], + [ 8.9456377, 46.5576166 ], + [ 8.9455722, 46.5577238 ], + [ 8.9455241, 46.5578422 ], + [ 8.9454588, 46.5579831 ], + [ 8.9453774, 46.558135300000004 ], + [ 8.9452722, 46.55831 ], + [ 8.9451741, 46.5584453 ], + [ 8.9451009, 46.5585694 ], + [ 8.9449543, 46.5586936 ], + [ 8.9448323, 46.5587614 ], + [ 8.9446283, 46.5588124 ], + [ 8.9444565, 46.5588184 ], + [ 8.9442522, 46.5588018 ], + [ 8.9440965, 46.5587739 ], + [ 8.9439406, 46.5586786 ], + [ 8.9438015, 46.5585718 ], + [ 8.9436867, 46.5584313 ], + [ 8.943596, 46.5582174 ], + [ 8.9435786, 46.5579753 ], + [ 8.9435949, 46.5577387 ], + [ 8.9435605, 46.5574403 ], + [ 8.9435436, 46.5572714 ], + [ 8.9434864, 46.5570912 ], + [ 8.9433707, 46.5569169 ], + [ 8.9431821, 46.5567314 ], + [ 8.9429195, 46.5564335 ], + [ 8.9426656, 46.5561861 ], + [ 8.9424441, 46.5560176 ], + [ 8.9422072, 46.5558829 ], + [ 8.9419782, 46.555827 ], + [ 8.9415444, 46.5557658 ], + [ 8.941135599999999, 46.5556933 ], + [ 8.9408985, 46.5556374 ], + [ 8.9407755, 46.5555814 ], + [ 8.9407096, 46.5554971 ], + [ 8.9407175, 46.5553731 ], + [ 8.9407828, 46.5551984 ], + [ 8.9408307, 46.5550463 ], + [ 8.9408057, 46.5548493 ], + [ 8.940723, 46.5546298 ], + [ 8.9406911, 46.5547424 ], + [ 8.9406183, 46.5548834 ], + [ 8.9405532, 46.5550018 ], + [ 8.9404797, 46.5550864 ], + [ 8.9404308, 46.5551766 ], + [ 8.940431199999999, 46.5553061 ], + [ 8.9404481, 46.5555032 ], + [ 8.9404734, 46.5556214 ], + [ 8.9404248, 46.5557509 ], + [ 8.9402865, 46.555909 ], + [ 8.9400494, 46.5560614 ], + [ 8.9398133, 46.5562194 ], + [ 8.9395519, 46.5563438 ], + [ 8.9393895, 46.556485 ], + [ 8.9393162, 46.5566653 ], + [ 8.939316999999999, 46.5568116 ], + [ 8.9393659, 46.5569298 ], + [ 8.9394405, 46.5570593 ], + [ 8.9395387, 46.5571605 ], + [ 8.9395793, 46.5572167 ], + [ 8.9395884, 46.5573067 ], + [ 8.9395393, 46.5573913 ], + [ 8.9395315, 46.557549 ], + [ 8.9395816, 46.5577686 ], + [ 8.9396642, 46.5579823 ], + [ 8.9397875, 46.5582243 ], + [ 8.9399519, 46.5584211 ], + [ 8.9401648, 46.5585728 ], + [ 8.9406967, 46.5588196 ], + [ 8.9411718, 46.5590778 ], + [ 8.9415477, 46.5592291 ], + [ 8.9417936, 46.5593357 ], + [ 8.9418755, 46.5594369 ], + [ 8.941884, 46.5595383 ], + [ 8.9418603, 46.5597411 ], + [ 8.9418939, 46.560067599999996 ], + [ 8.9418621, 46.5603324 ], + [ 8.9419366, 46.5604336 ], + [ 8.9421085, 46.5605741 ], + [ 8.9422725, 46.5606976 ], + [ 8.942395, 46.5608213 ], + [ 8.9424367, 46.5609451 ], + [ 8.9425266, 46.5610689 ], + [ 8.9426825, 46.5611643 ], + [ 8.9429122, 46.5613329 ], + [ 8.9429938, 46.5614228 ], + [ 8.942962099999999, 46.5615412 ], + [ 8.9429045, 46.5616426 ], + [ 8.9429052, 46.5617552 ], + [ 8.9429142, 46.5618734 ], + [ 8.9429142, 46.5620199 ], + [ 8.9428818, 46.5621156 ], + [ 8.9428085, 46.5621778 ], + [ 8.9426704, 46.5622513 ], + [ 8.9425726, 46.5623416 ], + [ 8.942548, 46.5624542 ], + [ 8.942524, 46.5626739 ], + [ 8.9425171, 46.5628372 ], + [ 8.942484199999999, 46.5629443 ], + [ 8.9424196, 46.5630571 ], + [ 8.942363199999999, 46.5632542 ], + [ 8.9423062, 46.5634908 ], + [ 8.9422259, 46.5638006 ], + [ 8.9421696, 46.5641218 ], + [ 8.9420391, 46.5643248 ], + [ 8.9418766, 46.564494 ], + [ 8.9417793, 46.5646575 ], + [ 8.9417467, 46.564866 ], + [ 8.9417396, 46.5650799 ], + [ 8.9417647, 46.5652769 ], + [ 8.9418964, 46.565440100000004 ], + [ 8.9421012, 46.5656199 ], + [ 8.9422485, 46.5657266 ], + [ 8.9422898, 46.5658336 ], + [ 8.9422493, 46.5659913 ], + [ 8.9421932, 46.5661434 ], + [ 8.9420466, 46.5662958 ], + [ 8.9418418, 46.5664087 ], + [ 8.9417034, 46.5665048 ], + [ 8.9416799, 46.5666569 ], + [ 8.941688599999999, 46.5668821 ], + [ 8.941689, 46.5671017 ], + [ 8.941657, 46.5673271 ], + [ 8.9415437, 46.5675356 ], + [ 8.9414054, 46.5677216 ], + [ 8.9411366, 46.5679362 ], + [ 8.9408426, 46.5682127 ], + [ 8.9404843, 46.5684949 ], + [ 8.9400117, 46.5689744 ], + [ 8.9397757, 46.5692283 ], + [ 8.9395969, 46.5695721 ], + [ 8.9395075, 46.5698764 ], + [ 8.9394841, 46.570062300000004 ], + [ 8.9395415, 46.5702479 ], + [ 8.9395997, 46.5703773 ], + [ 8.9396489, 46.570535 ], + [ 8.9396249, 46.5706701 ], + [ 8.9396825, 46.5708334 ], + [ 8.9397161, 46.5709572 ], + [ 8.9397821, 46.5711317 ], + [ 8.9398152, 46.5712386 ], + [ 8.939774, 46.5713401 ], + [ 8.9397091, 46.5714698 ], + [ 8.9397017, 46.5716161 ], + [ 8.9397837, 46.5718074 ], + [ 8.9398743, 46.5719593 ], + [ 8.9399816, 46.5721507 ], + [ 8.9401049, 46.5723925 ], + [ 8.9401632, 46.572612 ], + [ 8.9401966, 46.5728767 ], + [ 8.9402458, 46.5730906 ], + [ 8.9402711, 46.573327 ], + [ 8.9403216, 46.5735298 ], + [ 8.9404367, 46.5737097 ], + [ 8.9406249, 46.5739685 ], + [ 8.9408724, 46.5744241 ], + [ 8.9407005, 46.5745484 ], + [ 8.9404973, 46.5748641 ], + [ 8.9403267, 46.5751233 ], + [ 8.9402293, 46.5753151 ], + [ 8.9401148, 46.5754505 ], + [ 8.9399599, 46.5755408 ], + [ 8.9398215, 46.5756085 ], + [ 8.9396172, 46.5756822 ], + [ 8.9393884, 46.5757221 ], + [ 8.9392743, 46.5758123 ], + [ 8.9392012, 46.575942 ], + [ 8.9391115, 46.5760605 ], + [ 8.9389563, 46.5761396 ], + [ 8.9388344, 46.576213 ], + [ 8.9387938, 46.5763087 ], + [ 8.9387289, 46.5764666 ], + [ 8.938655, 46.5765962 ], + [ 8.9385164, 46.5766866 ], + [ 8.9382635, 46.5767715 ], + [ 8.9380344, 46.5768001 ], + [ 8.9376995, 46.5768401 ], + [ 8.9374544, 46.5768517 ], + [ 8.9372502, 46.5768409 ], + [ 8.9370131, 46.5768187 ], + [ 8.9368166, 46.576791 ], + [ 8.9365872, 46.5768139 ], + [ 8.9361952, 46.5768202 ], + [ 8.9359167, 46.5767475 ], + [ 8.935606, 46.5767199 ], + [ 8.9351889, 46.5767037 ], + [ 8.9348703, 46.5766536 ], + [ 8.9347069, 46.5767046 ], + [ 8.9337666, 46.5766723 ], + [ 8.9332348, 46.5766396 ], + [ 8.9326458, 46.5765729 ], + [ 8.932098, 46.5765514 ], + [ 8.931632, 46.576479 ], + [ 8.9316565, 46.5764508 ], + [ 8.9310263, 46.5763393 ], + [ 8.9305437, 46.5762557 ], + [ 8.9302409, 46.5761885 ], + [ 8.9296355, 46.5760882 ], + [ 8.9289399, 46.5759712 ], + [ 8.9287605, 46.5759995 ], + [ 8.9286131, 46.5759492 ], + [ 8.9282455, 46.5759835 ], + [ 8.9276971, 46.5759113 ], + [ 8.9274192, 46.5758892 ], + [ 8.9268634, 46.5759296 ], + [ 8.9261688, 46.5759983 ], + [ 8.9254001, 46.576039 ], + [ 8.9247052, 46.5761247 ], + [ 8.9244523, 46.5760913 ], + [ 8.9241249, 46.5760468 ], + [ 8.9237809, 46.575991 ], + [ 8.9234046, 46.5759184 ], + [ 8.9229795, 46.5758516 ], + [ 8.9224971, 46.5757454 ], + [ 8.9221041, 46.5756897 ], + [ 8.9217525, 46.5756227 ], + [ 8.921319, 46.5755164 ], + [ 8.9211712, 46.5755111 ], + [ 8.920951, 46.5755395 ], + [ 8.9206894, 46.5755456 ], + [ 8.9202806, 46.5755969 ], + [ 8.9201498, 46.5757042 ], + [ 8.920035500000001, 46.5757269 ], + [ 8.9199217, 46.5757101 ], + [ 8.9197744, 46.5756934 ], + [ 8.9196026, 46.5756431 ], + [ 8.9194467, 46.5756658 ], + [ 8.919292, 46.575677400000004 ], + [ 8.9191527, 46.5756833 ], + [ 8.9190461, 46.5756609 ], + [ 8.9188667, 46.5755993 ], + [ 8.9187024, 46.5755263 ], + [ 8.9185221, 46.5754646 ], + [ 8.918334, 46.5754143 ], + [ 8.9180157, 46.5754035 ], + [ 8.9177869, 46.5754488 ], + [ 8.9168231, 46.5757488 ], + [ 8.9165773, 46.5758281 ], + [ 8.9164304, 46.5758509 ], + [ 8.9162837, 46.5758568 ], + [ 8.9157689, 46.5759364 ], + [ 8.9154255, 46.5759933 ], + [ 8.9152374, 46.576033 ], + [ 8.9150004, 46.5760447 ], + [ 8.9146813, 46.5760339 ], + [ 8.9143464, 46.5760457 ], + [ 8.9140598, 46.5760631 ], + [ 8.913668, 46.5760468 ], + [ 8.9135372, 46.5760975 ], + [ 8.9133653, 46.5761035 ], + [ 8.913169, 46.5761095 ], + [ 8.9130137, 46.5761265 ], + [ 8.912817, 46.5760931 ], + [ 8.9126291, 46.5760483 ], + [ 8.912522899999999, 46.5759809 ], + [ 8.9123677, 46.5759417 ], + [ 8.9122041, 46.5759533 ], + [ 8.912049, 46.5760098 ], + [ 8.9119423, 46.5760719 ], + [ 8.9117958, 46.5761454 ], + [ 8.9116731, 46.5762188 ], + [ 8.911551, 46.5762865 ], + [ 8.9113461, 46.5763714 ], + [ 8.9111915, 46.5764109 ], + [ 8.9110689, 46.5764337 ], + [ 8.9108892, 46.5764508 ], + [ 8.9108322, 46.5765128 ], + [ 8.9107669, 46.5765411 ], + [ 8.9106688, 46.5765639 ], + [ 8.9105627, 46.5766485 ], + [ 8.910497, 46.5767217 ], + [ 8.910399, 46.5767162 ], + [ 8.9102353, 46.576694 ], + [ 8.9100799, 46.5766773 ], + [ 8.9099497, 46.5766889 ], + [ 8.9097532, 46.576751 ], + [ 8.9096633, 46.5768019 ], + [ 8.9095491, 46.5768303 ], + [ 8.9094425, 46.5768416 ], + [ 8.9092874, 46.5768362 ], + [ 8.9090834, 46.5768309 ], + [ 8.90883, 46.5768369 ], + [ 8.9086582, 46.5769385 ], + [ 8.9084947, 46.5769839 ], + [ 8.9082991, 46.577108 ], + [ 8.9083566, 46.577215 ], + [ 8.908324, 46.5772432 ], + [ 8.9080543, 46.577221 ], + [ 8.9078741, 46.5773452 ], + [ 8.9074987, 46.5775147 ], + [ 8.9071146, 46.5776955 ], + [ 8.9069271, 46.5777859 ], + [ 8.906658, 46.5778764 ], + [ 8.906462, 46.5779893 ], + [ 8.9063144, 46.5779895 ], + [ 8.9057419, 46.5779284 ], + [ 8.9057184, 46.5781424 ], + [ 8.9055959, 46.5782271 ], + [ 8.9054244, 46.5783401 ], + [ 8.9052527, 46.5784417 ], + [ 8.9050564, 46.5785433 ], + [ 8.9048526, 46.5786055 ], + [ 8.9046727, 46.5786171 ], + [ 8.9044032, 46.5786344 ], + [ 8.9040923, 46.5786574 ], + [ 8.9041827, 46.5788037 ], + [ 8.9042651, 46.5789556 ], + [ 8.9043307, 46.5791469 ], + [ 8.9044051, 46.5793045 ], + [ 8.9044868, 46.5794903 ], + [ 8.9045203, 46.579676 ], + [ 8.9045366, 46.5797943 ], + [ 8.9045374, 46.5799463 ], + [ 8.904546, 46.5801434 ], + [ 8.904514, 46.5803462 ], + [ 8.9044818, 46.5805433 ], + [ 8.9044001, 46.5807462 ], + [ 8.9042865, 46.5809773 ], + [ 8.9040994, 46.5812985 ], + [ 8.9036063, 46.5840794 ], + [ 8.9036407, 46.5840875 ], + [ 8.9048597, 46.5847646 ], + [ 8.9067202, 46.5860002 ], + [ 8.9079505, 46.5866141 ], + [ 8.9089753, 46.5873477 ], + [ 8.9095025, 46.5875388 ], + [ 8.9099745, 46.5880995 ], + [ 8.9113347, 46.5886847 ], + [ 8.9120999, 46.5894666 ], + [ 8.9126047, 46.5897929 ], + [ 8.9130357, 46.5902822 ], + [ 8.9136754, 46.5907688 ], + [ 8.9139742, 46.5911968 ], + [ 8.9144852, 46.591748 ], + [ 8.9151474, 46.5920993 ], + [ 8.9160028, 46.5923581 ], + [ 8.9162071, 46.5926703 ], + [ 8.9161729, 46.5928507 ], + [ 8.9158572, 46.5932417 ], + [ 8.9151124, 46.5946459 ], + [ 8.9153406, 46.5958306 ], + [ 8.9157108, 46.5960057 ], + [ 8.9163265, 46.5960877 ], + [ 8.9170316, 46.5965734 ], + [ 8.916712799999999, 46.5968475 ], + [ 8.9164641, 46.5973006 ], + [ 8.9164111, 46.597751099999996 ], + [ 8.91629, 46.5980946 ], + [ 8.9159724, 46.5984136 ], + [ 8.9155472, 46.598617 ], + [ 8.9154701, 46.5991399 ], + [ 8.9152805, 46.5993673 ], + [ 8.9148553, 46.5995707 ], + [ 8.9132401, 46.6001765 ], + [ 8.912725, 46.6004351 ], + [ 8.912708, 46.6007682 ], + [ 8.9123544, 46.6012046 ], + [ 8.9115837, 46.6016645 ], + [ 8.9115238, 46.6018632 ], + [ 8.9116356, 46.6021316 ], + [ 8.911118, 46.6023003 ], + [ 8.9108191, 46.6023491 ], + [ 8.9092817, 46.6034217 ], + [ 8.9090716, 46.6038563 ], + [ 8.9090379, 46.6040546 ], + [ 8.9090814, 46.604216 ], + [ 8.9072397, 46.6061022 ], + [ 8.9070786, 46.6064192 ], + [ 8.907063, 46.6068063 ], + [ 8.9070982, 46.6071387 ], + [ 8.907041, 46.6074364 ], + [ 8.906078, 46.6089963 ], + [ 8.9058585, 46.6095659 ], + [ 8.9061068, 46.6100576 ], + [ 8.9057524, 46.610467 ], + [ 8.9056817, 46.6112327 ], + [ 8.9056932, 46.6116554 ], + [ 8.9054023, 46.6120011 ], + [ 8.905710299999999, 46.612285 ], + [ 8.9062176, 46.6131782 ], + [ 8.9063635, 46.6137431 ], + [ 8.9063404, 46.6138514 ], + [ 8.9066099, 46.6141628 ], + [ 8.9066234, 46.6146575 ], + [ 8.9067929, 46.6151321 ], + [ 8.9071307, 46.6155507 ], + [ 8.9075974, 46.6159045 ], + [ 8.9083879, 46.6161642 ], + [ 8.9093028, 46.6161974 ], + [ 8.9100672, 46.6164575 ], + [ 8.9105966, 46.6167205 ], + [ 8.9106325, 46.6170799 ], + [ 8.910889, 46.6178684 ], + [ 8.9111611, 46.6182697 ], + [ 8.9116972, 46.6187756 ], + [ 8.9116766, 46.6193522 ], + [ 8.9112436, 46.6199645 ], + [ 8.9107103, 46.6205202 ], + [ 8.9104697, 46.620855399999996 ], + [ 8.9100117, 46.6218122 ], + [ 8.9093556, 46.6228052 ], + [ 8.9090801, 46.6230602 ], + [ 8.9090684, 46.6230792 ], + [ 8.9083707, 46.6236861 ], + [ 8.9082039, 46.6238229 ], + [ 8.9080042, 46.6239851 ], + [ 8.9077833, 46.6242037 ], + [ 8.907551699999999, 46.6244247 ], + [ 8.9073345, 46.6246886 ], + [ 8.9070536, 46.6248649 ], + [ 8.9066431, 46.6251079 ], + [ 8.906248399999999, 46.625301 ], + [ 8.9060884, 46.6253318 ], + [ 8.9058388, 46.6254289 ], + [ 8.9056699, 46.6256403 ], + [ 8.9055627, 46.6258421 ], + [ 8.9053834, 46.62618 ], + [ 8.9051489, 46.6264147 ], + [ 8.9048579, 46.6265776 ], + [ 8.9044442, 46.626825 ], + [ 8.9041093, 46.6270583 ], + [ 8.9036934, 46.6273712 ], + [ 8.9032333, 46.6277456 ], + [ 8.9029224, 46.6280485 ], + [ 8.9026184, 46.6283965 ], + [ 8.9022095, 46.628881 ], + [ 8.9018519, 46.6293017 ], + [ 8.901383299999999, 46.6297822 ], + [ 8.900903, 46.6302853 ], + [ 8.9003947, 46.6307143 ], + [ 8.9001848, 46.6309847 ], + [ 8.8996141, 46.6315542 ], + [ 8.8992296, 46.631824 ], + [ 8.8988325, 46.632236 ], + [ 8.898497, 46.6326295 ], + [ 8.8981838, 46.6330001 ], + [ 8.8977806, 46.6334259 ], + [ 8.8974678, 46.6338147 ], + [ 8.8973044, 46.6343238 ], + [ 8.897136, 46.6344383 ], + [ 8.8969569, 46.6346361 ], + [ 8.8968024, 46.6349017 ], + [ 8.8966212, 46.6351741 ], + [ 8.8964408, 46.6354805 ], + [ 8.8962715, 46.6358295 ], + [ 8.8961792, 46.6361305 ], + [ 8.896122, 46.6363725 ], + [ 8.896041199999999, 46.6365853 ], + [ 8.8959624, 46.6369021 ], + [ 8.8958242, 46.6370456 ], + [ 8.8955811, 46.6371447 ], + [ 8.895366899999999, 46.6372527 ], + [ 8.895219, 46.6373692 ], + [ 8.8950633, 46.6375895 ], + [ 8.8949728, 46.6380779 ], + [ 8.8948471, 46.6383836 ], + [ 8.8951, 46.6388319 ], + [ 8.8951548, 46.6388957 ], + [ 8.8950598, 46.6393392 ], + [ 8.8950147, 46.6396347 ], + [ 8.894805, 46.6398217 ], + [ 8.8946628, 46.6399985 ], + [ 8.8946925, 46.6400997 ], + [ 8.8947747, 46.6401814 ], + [ 8.8949466, 46.6401056 ], + [ 8.8952609, 46.6398343 ], + [ 8.8956333, 46.6397743 ], + [ 8.8959141, 46.639743 ], + [ 8.8961435, 46.6396223 ], + [ 8.8964717, 46.6394997 ], + [ 8.8968555, 46.6393812 ], + [ 8.897056899999999, 46.6393432 ], + [ 8.89739, 46.6393132 ], + [ 8.897668, 46.6392971 ], + [ 8.8979155, 46.6392723 ], + [ 8.8982261, 46.6392221 ], + [ 8.8984368, 46.6391638 ], + [ 8.898824, 46.6390519 ], + [ 8.8991613, 46.6390872 ], + [ 8.899439600000001, 46.6390825 ], + [ 8.8996267, 46.6391192 ], + [ 8.8999961, 46.6392513 ], + [ 8.9006701, 46.6394505 ], + [ 8.9012663, 46.6396686 ], + [ 8.9016319, 46.6397826 ], + [ 8.9020339, 46.639946 ], + [ 8.9025793, 46.6402165 ], + [ 8.9031775, 46.6403577 ], + [ 8.9037648, 46.6404563 ], + [ 8.904181, 46.6405111 ], + [ 8.9048118, 46.6406205 ], + [ 8.905247, 46.6406527 ], + [ 8.905879, 46.6406831 ], + [ 8.9065412, 46.6405957 ], + [ 8.9066357, 46.6405881 ], + [ 8.9071839, 46.6405109 ], + [ 8.9078547, 46.6403468 ], + [ 8.9084836, 46.6402373 ], + [ 8.9093093, 46.6401552 ], + [ 8.9098292, 46.6401482 ], + [ 8.9102913, 46.6401801 ], + [ 8.9106281, 46.6401951 ], + [ 8.9111331, 46.6402402 ], + [ 8.9116971, 46.6402936 ], + [ 8.9120431, 46.6402883 ], + [ 8.9124745, 46.6402708 ], + [ 8.9130844, 46.6401818 ], + [ 8.9133614, 46.6401296 ], + [ 8.9137526, 46.6400424 ], + [ 8.9141147, 46.6399985 ], + [ 8.9142378, 46.6401125 ], + [ 8.9142806, 46.6402723 ], + [ 8.9142004, 46.6405371 ], + [ 8.9140177, 46.6407216 ], + [ 8.9138656, 46.6409532 ], + [ 8.913526300000001, 46.6411752 ], + [ 8.9132692, 46.6412385 ], + [ 8.9130516, 46.6413128 ], + [ 8.912747, 46.6414306 ], + [ 8.9122871, 46.6416921 ], + [ 8.9118354, 46.6418339 ], + [ 8.9114202, 46.641998 ], + [ 8.9110413, 46.6421752 ], + [ 8.9104801, 46.6424354 ], + [ 8.9097325, 46.6428077 ], + [ 8.909467, 46.6429502 ], + [ 8.909263, 46.6430445 ], + [ 8.9089342, 46.6432935 ], + [ 8.9086864, 46.6434921 ], + [ 8.908386, 46.6437047 ], + [ 8.9080091, 46.6439858 ], + [ 8.9076926, 46.644176 ], + [ 8.9073325, 46.6444749 ], + [ 8.9072561, 46.64476 ], + [ 8.907226099999999, 46.6448889 ], + [ 8.9072349, 46.6453312 ], + [ 8.9073035, 46.6455133 ], + [ 8.9071736, 46.64572 ], + [ 8.9070598, 46.6458903 ], + [ 8.9068938, 46.646122 ], + [ 8.9067458, 46.6463829 ], + [ 8.9065768, 46.6465966 ], + [ 8.906238, 46.6468366 ], + [ 8.9059314, 46.647065 ], + [ 8.9055419, 46.6473643 ], + [ 8.9052873, 46.6475517 ], + [ 8.9049014, 46.6480766 ], + [ 8.9048817, 46.6482212 ], + [ 8.9049374, 46.6485591 ], + [ 8.9049419, 46.648936 ], + [ 8.9049567, 46.6492112 ], + [ 8.9048725, 46.6495686 ], + [ 8.9047114, 46.6498319 ], + [ 8.9045953, 46.6504265 ], + [ 8.9045989, 46.6507695 ], + [ 8.9047111, 46.6511453 ], + [ 8.9049926, 46.6514656 ], + [ 8.9052086, 46.6516644 ], + [ 8.9056437, 46.6519878 ], + [ 8.9061029, 46.6522071 ], + [ 8.9066614, 46.652475 ], + [ 8.9070348, 46.6526612 ], + [ 8.907469, 46.6529552 ], + [ 8.9078131, 46.6531439 ], + [ 8.9083381, 46.6533513 ], + [ 8.9088351, 46.6535206 ], + [ 8.9092498, 46.6538124 ], + [ 8.9096945, 46.6541311 ], + [ 8.9099121, 46.6543526 ], + [ 8.9102946, 46.6546943 ], + [ 8.9105559, 46.6549628 ], + [ 8.9106772, 46.6553093 ], + [ 8.9108128, 46.65573 ], + [ 8.9114116, 46.6560663 ], + [ 8.9116158, 46.656007 ], + [ 8.9120735, 46.656019 ], + [ 8.9124629, 46.655924 ], + [ 8.9131846, 46.6560317 ], + [ 8.913507899999999, 46.6559105 ], + [ 8.9145909, 46.6558515 ], + [ 8.9150039, 46.6556662 ], + [ 8.9152312, 46.6553753 ], + [ 8.9159733, 46.6552757 ], + [ 8.9168063, 46.6546801 ], + [ 8.918182, 46.6548152 ], + [ 8.9183854, 46.6550825 ], + [ 8.9194951, 46.6550501 ], + [ 8.9202744, 46.654878 ], + [ 8.9206446, 46.6550351 ], + [ 8.9213293, 46.6552241 ], + [ 8.9230355, 46.6554988 ], + [ 8.9254189, 46.6552158 ], + [ 8.9259513, 46.6555687 ], + [ 8.9263201, 46.6561487 ], + [ 8.9268855, 46.6562763 ], + [ 8.929493, 46.6560622 ], + [ 8.9307588, 46.6560007 ], + [ 8.9317814, 46.6561222 ], + [ 8.9330571, 46.6573651 ], + [ 8.933951, 46.6580282 ], + [ 8.9340166, 46.6580671 ], + [ 8.934323, 46.6582482 ], + [ 8.9357872, 46.6582739 ], + [ 8.9369699, 46.6585103 ], + [ 8.9388024, 46.6586211 ], + [ 8.9395625, 46.6587011 ], + [ 8.9398238, 46.6586977 ], + [ 8.9404675, 46.6583473 ], + [ 8.940923399999999, 46.6582963 ], + [ 8.941049, 46.6581147 ], + [ 8.9414384, 46.6580196 ], + [ 8.9415665, 46.6579279 ], + [ 8.9421514, 46.6578122 ], + [ 8.9425631, 46.6575818 ], + [ 8.9439643, 46.6572215 ], + [ 8.9445125, 46.6571962 ], + [ 8.9450139, 46.6573695 ], + [ 8.9453404, 46.6573652 ], + [ 8.9458275, 46.6574937 ], + [ 8.9465472, 46.6575292 ], + [ 8.9473435, 46.6579685 ], + [ 8.947973, 46.6580501 ], + [ 8.9491587, 46.6583943 ], + [ 8.950208, 46.6585333 ], + [ 8.951025, 46.6587744 ], + [ 8.9518529, 46.6589433 ], + [ 8.9527051, 46.6590399 ], + [ 8.9530421, 46.659207 ], + [ 8.9531294, 46.6592897 ], + [ 8.9534925, 46.6592773 ], + [ 8.9538265, 46.6593034 ], + [ 8.9542193, 46.6593042 ], + [ 8.954676599999999, 46.6592706 ], + [ 8.9551276, 46.6592481 ], + [ 8.955664, 46.6592386 ], + [ 8.9563247, 46.6592097 ], + [ 8.9567869, 46.6591194 ], + [ 8.9573533, 46.6591344 ], + [ 8.9578196, 46.6591886 ], + [ 8.9582512, 46.6591755 ], + [ 8.9589033, 46.65907 ], + [ 8.959449, 46.6589 ], + [ 8.9598062, 46.6587656 ], + [ 8.9604459, 46.6583933 ], + [ 8.9616205, 46.657327 ], + [ 8.96441, 46.6530319 ], + [ 8.9647754, 46.6526695 ], + [ 8.9650815, 46.6522874 ], + [ 8.9652154, 46.6519679 ], + [ 8.9656382, 46.651526 ], + [ 8.9658782, 46.6512935 ], + [ 8.9660337, 46.6511904 ], + [ 8.966238, 46.6511094 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "JBG0016", + "country" : "CHE", + "name" : [ + { + "text" : "Eidgenössisches Jagdbanngebiet Greina", + "lang" : "de-CH" + }, + { + "text" : "District franc fédéral Greina", + "lang" : "fr-CH" + }, + { + "text" : "Bandita federale di caccia Greina", + "lang" : "it-CH" + }, + { + "text" : "Federal Game Reserve Greina", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.4559695, 47.4528223 ], + [ 8.4559614, 47.4526812 ], + [ 8.4559423, 47.4525405 ], + [ 8.4559125, 47.4524007 ], + [ 8.4558719, 47.4522621 ], + [ 8.4558206, 47.4521252 ], + [ 8.4557589, 47.4519903 ], + [ 8.4556868, 47.4518578 ], + [ 8.4556047, 47.451728 ], + [ 8.4555126, 47.4516013 ], + [ 8.4554108, 47.451478 ], + [ 8.4552997, 47.4513585 ], + [ 8.4551795, 47.4512432 ], + [ 8.4550506, 47.4511322 ], + [ 8.4549133, 47.451026 ], + [ 8.454768, 47.4509248 ], + [ 8.4546151, 47.4508289 ], + [ 8.454455, 47.4507385 ], + [ 8.4542882, 47.450654 ], + [ 8.4541151, 47.4505755 ], + [ 8.4539361, 47.4505033 ], + [ 8.4537518, 47.4504375 ], + [ 8.453562699999999, 47.4503783 ], + [ 8.4533693, 47.450326 ], + [ 8.4531721, 47.4502805 ], + [ 8.452971699999999, 47.4502422 ], + [ 8.4527686, 47.450211 ], + [ 8.4525633, 47.450187 ], + [ 8.4523565, 47.4501704 ], + [ 8.4521487, 47.4501611 ], + [ 8.4519405, 47.4501592 ], + [ 8.4517324, 47.4501648 ], + [ 8.451525, 47.4501777 ], + [ 8.4513189, 47.4501979 ], + [ 8.4511146, 47.4502254 ], + [ 8.4509128, 47.4502602 ], + [ 8.4507139, 47.4503021 ], + [ 8.4505185, 47.4503509 ], + [ 8.450327099999999, 47.4504067 ], + [ 8.4501403, 47.4504691 ], + [ 8.4499586, 47.4505381 ], + [ 8.4497824, 47.4506135 ], + [ 8.4496123, 47.450695 ], + [ 8.4494488, 47.4507824 ], + [ 8.4492922, 47.4508755 ], + [ 8.449143, 47.4509741 ], + [ 8.4490016, 47.4510778 ], + [ 8.4488684, 47.4511864 ], + [ 8.4487437, 47.4512995 ], + [ 8.448628, 47.451417 ], + [ 8.4485214, 47.4515384 ], + [ 8.4484244, 47.4516634 ], + [ 8.4483372, 47.4517916 ], + [ 8.44826, 47.4519228 ], + [ 8.448193, 47.4520566 ], + [ 8.4481364, 47.4521925 ], + [ 8.4480904, 47.4523303 ], + [ 8.4480551, 47.4524695 ], + [ 8.4480306, 47.4526098 ], + [ 8.4480169, 47.4527508 ], + [ 8.4480141, 47.452892 ], + [ 8.4480223, 47.4530332 ], + [ 8.4480413, 47.4531738 ], + [ 8.4480711, 47.4533136 ], + [ 8.4481117, 47.4534522 ], + [ 8.4481629, 47.4535891 ], + [ 8.4482246, 47.453724 ], + [ 8.4482967, 47.4538566 ], + [ 8.4483788, 47.4539864 ], + [ 8.4484709, 47.4541131 ], + [ 8.4485726, 47.4542363 ], + [ 8.4486837, 47.4543558 ], + [ 8.4488039, 47.4544712 ], + [ 8.4489328, 47.4545822 ], + [ 8.4490701, 47.4546884 ], + [ 8.4492154, 47.4547896 ], + [ 8.4493683, 47.4548855 ], + [ 8.4495284, 47.4549759 ], + [ 8.4496953, 47.4550604 ], + [ 8.4498684, 47.4551389 ], + [ 8.4500474, 47.4552112 ], + [ 8.4502317, 47.455277 ], + [ 8.4504208, 47.4553361 ], + [ 8.4506142, 47.4553885 ], + [ 8.4508114, 47.4554339 ], + [ 8.4510119, 47.4554723 ], + [ 8.451215, 47.4555035 ], + [ 8.4514203, 47.4555275 ], + [ 8.4516271, 47.4555441 ], + [ 8.4518349, 47.4555533 ], + [ 8.4520432, 47.4555552 ], + [ 8.4522513, 47.4555497 ], + [ 8.4524587, 47.4555368 ], + [ 8.4526648, 47.4555165 ], + [ 8.4528691, 47.455489 ], + [ 8.453071, 47.4554543 ], + [ 8.4532699, 47.4554124 ], + [ 8.4534653, 47.4553635 ], + [ 8.4536567, 47.4553078 ], + [ 8.4538435, 47.4552453 ], + [ 8.4540252, 47.4551763 ], + [ 8.4542014, 47.455101 ], + [ 8.4543715, 47.4550194 ], + [ 8.4545351, 47.454932 ], + [ 8.4546917, 47.4548389 ], + [ 8.4548409, 47.4547403 ], + [ 8.4549823, 47.4546366 ], + [ 8.4551155, 47.454528 ], + [ 8.4552401, 47.4544148 ], + [ 8.4553559, 47.4542974 ], + [ 8.4554624, 47.454176 ], + [ 8.4555594, 47.454051 ], + [ 8.4556466, 47.4539227 ], + [ 8.4557238, 47.4537915 ], + [ 8.4557908, 47.4536578 ], + [ 8.4558473, 47.4535218 ], + [ 8.4558933, 47.453384 ], + [ 8.4559286, 47.4532448 ], + [ 8.4559531, 47.4531045 ], + [ 8.4559668, 47.4529636 ], + [ 8.4559695, 47.4528223 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0093", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Regensdorf", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Regensdorf", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Regensdorf", + "lang" : "it-CH" + }, + { + "text" : "Substation Regensdorf", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8245704, 47.4599664 ], + [ 7.8250172, 47.4599865 ], + [ 7.8253321, 47.4600092 ], + [ 7.8255868, 47.4600451 ], + [ 7.8259194, 47.4601188 ], + [ 7.826161, 47.4601323 ], + [ 7.8265464, 47.4601856 ], + [ 7.826621, 47.4601691 ], + [ 7.8267322, 47.4600519 ], + [ 7.8268815, 47.4599179 ], + [ 7.8270558999999995, 47.459751 ], + [ 7.8270973, 47.4596842 ], + [ 7.8271026, 47.4596677 ], + [ 7.827107, 47.459651 ], + [ 7.8271106, 47.4596343 ], + [ 7.8271134, 47.4596175 ], + [ 7.8271154, 47.4596006 ], + [ 7.8271166, 47.4595838 ], + [ 7.8271169, 47.4595668 ], + [ 7.8271163999999995, 47.45955 ], + [ 7.8271151, 47.4595331 ], + [ 7.827113, 47.4595162 ], + [ 7.8271101, 47.4594994 ], + [ 7.8270745, 47.4594321 ], + [ 7.8269722999999995, 47.459451 ], + [ 7.8269094, 47.4593991 ], + [ 7.8261402, 47.4595349 ], + [ 7.8252536, 47.4596801 ], + [ 7.8247003, 47.4598454 ], + [ 7.8245704, 47.4599664 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns304", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Neumatt", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Neumatt", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Neumatt", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Neumatt", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8846733, 47.4137568 ], + [ 7.8846187, 47.4136539 ], + [ 7.8845877, 47.4135211 ], + [ 7.884558, 47.4133936 ], + [ 7.8846018, 47.4133667 ], + [ 7.8846938, 47.4133011 ], + [ 7.8847274, 47.4132011 ], + [ 7.8847372, 47.4130974 ], + [ 7.8844003, 47.4128837 ], + [ 7.8839924, 47.4126081 ], + [ 7.8837625, 47.4125102 ], + [ 7.8835804, 47.4124512 ], + [ 7.8836034, 47.4125508 ], + [ 7.8836979, 47.4127573 ], + [ 7.8837341, 47.412829 ], + [ 7.8837779, 47.4129414 ], + [ 7.8838065, 47.4130378 ], + [ 7.8838607, 47.4131425 ], + [ 7.8838918, 47.4132087 ], + [ 7.8839418, 47.4132698 ], + [ 7.8839717, 47.4133147 ], + [ 7.8839909, 47.4134063 ], + [ 7.8840242, 47.4134591 ], + [ 7.8840667, 47.4135995 ], + [ 7.8841000999999995, 47.4136664 ], + [ 7.884119, 47.41369 ], + [ 7.8841375, 47.4137171 ], + [ 7.8841825, 47.4137404 ], + [ 7.8843071, 47.4137573 ], + [ 7.8843977, 47.4137664 ], + [ 7.8846733, 47.4137568 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns127", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Mapprach - Hofmatt", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Mapprach - Hofmatt", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Mapprach - Hofmatt", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Mapprach - Hofmatt", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.7584041, 46.5116623 ], + [ 8.7582575, 46.5093097 ], + [ 8.7579328, 46.5069657 ], + [ 8.7574309, 46.5046365 ], + [ 8.7567532, 46.5023287 ], + [ 8.7559015, 46.5000486 ], + [ 8.7548783, 46.4978023 ], + [ 8.7536864, 46.4955961 ], + [ 8.752329, 46.4934359 ], + [ 8.7508099, 46.4913278 ], + [ 8.7491332, 46.4892775 ], + [ 8.7473036, 46.4872905 ], + [ 8.7453261, 46.4853724 ], + [ 8.7432061, 46.4835283 ], + [ 8.7409494, 46.4817634 ], + [ 8.7385623, 46.4800824 ], + [ 8.7360512, 46.47849 ], + [ 8.7334231, 46.4769904 ], + [ 8.7306851, 46.4755879 ], + [ 8.7278448, 46.4742863 ], + [ 8.7249099, 46.473089 ], + [ 8.7218884, 46.4719994 ], + [ 8.7187887, 46.4710205 ], + [ 8.7156191, 46.470155 ], + [ 8.7123885, 46.4694051 ], + [ 8.7091055, 46.468773 ], + [ 8.7057792, 46.4682604 ], + [ 8.702418699999999, 46.4678687 ], + [ 8.6990332, 46.4675989 ], + [ 8.6956319, 46.4674518 ], + [ 8.6922241, 46.4674279 ], + [ 8.6888192, 46.467527 ], + [ 8.6854265, 46.4677491 ], + [ 8.6820551, 46.4680935 ], + [ 8.6787145, 46.4685592 ], + [ 8.6754136, 46.469145 ], + [ 8.6721615, 46.4698492 ], + [ 8.6689671, 46.47067 ], + [ 8.6658392, 46.4716051 ], + [ 8.6627863, 46.472652 ], + [ 8.6598167, 46.4738077 ], + [ 8.6569386, 46.4750691 ], + [ 8.6541599, 46.4764328 ], + [ 8.6514881, 46.477895 ], + [ 8.6489306, 46.4794518 ], + [ 8.6464945, 46.4810989 ], + [ 8.6441863, 46.4828317 ], + [ 8.6420124, 46.4846455 ], + [ 8.6399788, 46.4865355 ], + [ 8.638091, 46.4884963 ], + [ 8.6363542, 46.4905226 ], + [ 8.6347732, 46.4926089 ], + [ 8.6333524, 46.4947495 ], + [ 8.6320957, 46.4969385 ], + [ 8.6310064, 46.4991699 ], + [ 8.6300877, 46.5014376 ], + [ 8.6293421, 46.5037354 ], + [ 8.6287715, 46.506057 ], + [ 8.6283777, 46.508396 ], + [ 8.6281617, 46.5107461 ], + [ 8.6281241, 46.5131007 ], + [ 8.6282651, 46.5154535 ], + [ 8.6285842, 46.5177979 ], + [ 8.6290807, 46.5201276 ], + [ 8.6297532, 46.5224362 ], + [ 8.6305999, 46.5247173 ], + [ 8.6316184, 46.5269647 ], + [ 8.6328061, 46.5291722 ], + [ 8.6341596, 46.5313337 ], + [ 8.635675299999999, 46.5334434 ], + [ 8.637349, 46.5354954 ], + [ 8.6391762, 46.5374841 ], + [ 8.6411519, 46.5394041 ], + [ 8.6432706, 46.5412501 ], + [ 8.6455265, 46.5430169 ], + [ 8.6479135, 46.5446999 ], + [ 8.6504251, 46.5462943 ], + [ 8.6530543, 46.5477957 ], + [ 8.655793899999999, 46.5492001 ], + [ 8.6586364, 46.5505035 ], + [ 8.6615741, 46.5517025 ], + [ 8.6645988, 46.5527937 ], + [ 8.6677022, 46.553774 ], + [ 8.6708759, 46.5546409 ], + [ 8.6741111, 46.555392 ], + [ 8.6773989, 46.5560251 ], + [ 8.6807303, 46.5565385 ], + [ 8.684096199999999, 46.5569309 ], + [ 8.6874872, 46.5572011 ], + [ 8.6908941, 46.5573484 ], + [ 8.6943075, 46.5573724 ], + [ 8.6977181, 46.5572731 ], + [ 8.7011164, 46.5570506 ], + [ 8.7044932, 46.5567057 ], + [ 8.7078391, 46.5562392 ], + [ 8.7111449, 46.5556525 ], + [ 8.7144017, 46.5549472 ], + [ 8.7176003, 46.5541251 ], + [ 8.7207321, 46.5531886 ], + [ 8.7237885, 46.5521402 ], + [ 8.726761, 46.5509828 ], + [ 8.7296415, 46.5497196 ], + [ 8.7324221, 46.5483541 ], + [ 8.7350951, 46.5468899 ], + [ 8.7376533, 46.5453312 ], + [ 8.7400896, 46.5436822 ], + [ 8.7423973, 46.5419475 ], + [ 8.7445701, 46.5401317 ], + [ 8.7466021, 46.5382399 ], + [ 8.7484877, 46.5362773 ], + [ 8.7502217, 46.5342492 ], + [ 8.7517995, 46.5321613 ], + [ 8.7532166, 46.5300193 ], + [ 8.754469199999999, 46.5278289 ], + [ 8.7555539, 46.5255964 ], + [ 8.7564678, 46.5233276 ], + [ 8.7572083, 46.521029 ], + [ 8.7577735, 46.5187068 ], + [ 8.7581618, 46.5163673 ], + [ 8.7583722, 46.514017 ], + [ 8.7584041, 46.5116623 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSPM001", + "country" : "CHE", + "name" : [ + { + "text" : "LSPM Ambri Airport", + "lang" : "de-CH" + }, + { + "text" : "LSPM Ambri Airport", + "lang" : "fr-CH" + }, + { + "text" : "LSPM Ambri Airport", + "lang" : "it-CH" + }, + { + "text" : "LSPM Ambri Airport", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "HELI REZIA SA", + "lang" : "de-CH" + }, + { + "text" : "HELI REZIA SA", + "lang" : "fr-CH" + }, + { + "text" : "HELI REZIA SA", + "lang" : "it-CH" + }, + { + "text" : "HELI REZIA SA", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Capo d'aerodromo", + "lang" : "de-CH" + }, + { + "text" : "Capo d'aerodromo", + "lang" : "fr-CH" + }, + { + "text" : "Capo d'aerodromo", + "lang" : "it-CH" + }, + { + "text" : "Capo d'aerodromo", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.helirezia.ch/", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.0245787, 47.477941 ], + [ 9.0245822, 47.4779398 ], + [ 9.0245858, 47.4779388 ], + [ 9.0245895, 47.477938 ], + [ 9.0245933, 47.4779373 ], + [ 9.0245972, 47.4779368 ], + [ 9.024601, 47.4779364 ], + [ 9.0246049, 47.4779362 ], + [ 9.0246089, 47.4779362 ], + [ 9.0246128, 47.4779364 ], + [ 9.0246166, 47.4779367 ], + [ 9.0246205, 47.4779372 ], + [ 9.0246243, 47.4779378 ], + [ 9.024628, 47.4779387 ], + [ 9.0246316, 47.4779396 ], + [ 9.025366, 47.4781867 ], + [ 9.0254582, 47.4782164 ], + [ 9.0256733, 47.478282 ], + [ 9.0259131, 47.4783505 ], + [ 9.0261662, 47.4784145 ], + [ 9.0262938, 47.4784428 ], + [ 9.0262959, 47.4784385 ], + [ 9.0264233, 47.4784667 ], + [ 9.0269215, 47.4785684 ], + [ 9.0270486, 47.4785961 ], + [ 9.0272414, 47.4786429 ], + [ 9.0273465, 47.4786709 ], + [ 9.0273571, 47.4786739 ], + [ 9.0273676, 47.478677 ], + [ 9.0273782, 47.4786802 ], + [ 9.0273887, 47.4786834 ], + [ 9.0273991, 47.4786867 ], + [ 9.0274095, 47.4786901 ], + [ 9.0274199, 47.4786935 ], + [ 9.0274302, 47.4786969 ], + [ 9.0274405, 47.4787004 ], + [ 9.0274508, 47.478704 ], + [ 9.027461, 47.4787076 ], + [ 9.0274711, 47.4787113 ], + [ 9.0274812, 47.478715 ], + [ 9.0274913, 47.4787188 ], + [ 9.0277206, 47.4787891 ], + [ 9.0277756, 47.4788091 ], + [ 9.027811, 47.478819 ], + [ 9.0278787, 47.478841 ], + [ 9.0278676, 47.4788574 ], + [ 9.0278414, 47.4788961 ], + [ 9.0273924, 47.478943 ], + [ 9.0271249, 47.4789709 ], + [ 9.0269702, 47.478987 ], + [ 9.0268574, 47.4789985 ], + [ 9.0265898, 47.4790258 ], + [ 9.0262883, 47.4790565 ], + [ 9.0260159, 47.4790842 ], + [ 9.0259909, 47.478993 ], + [ 9.0258569, 47.4790285 ], + [ 9.0257782, 47.4787199 ], + [ 9.0255251, 47.478806 ], + [ 9.025231, 47.478922 ], + [ 9.0249841, 47.4790597 ], + [ 9.0249748, 47.4791382 ], + [ 9.0249595, 47.4792664 ], + [ 9.025102, 47.4799029 ], + [ 9.0253564, 47.4798664 ], + [ 9.0257433, 47.4798422 ], + [ 9.0257496, 47.4798597 ], + [ 9.0259573, 47.4804391 ], + [ 9.0260576, 47.4808355 ], + [ 9.0260722, 47.4809445 ], + [ 9.0261226, 47.4813209 ], + [ 9.0261651, 47.4821107 ], + [ 9.0261816, 47.4821439 ], + [ 9.0262164, 47.4822407 ], + [ 9.0262866, 47.4824361 ], + [ 9.0265995, 47.4838498 ], + [ 9.0267572, 47.4845717 ], + [ 9.027333, 47.4844754 ], + [ 9.0281372, 47.4842596 ], + [ 9.0281287, 47.4842343 ], + [ 9.0285056, 47.4839801 ], + [ 9.0287698, 47.4837817 ], + [ 9.0288961, 47.483691 ], + [ 9.0289801, 47.4836763 ], + [ 9.0290994, 47.4836853 ], + [ 9.0291661, 47.4837142 ], + [ 9.0300904, 47.483817 ], + [ 9.030095, 47.4838023 ], + [ 9.0301194, 47.4838055 ], + [ 9.0302521, 47.483337 ], + [ 9.0305285, 47.4823852 ], + [ 9.0305577, 47.4822861 ], + [ 9.0309007, 47.4811033 ], + [ 9.0310737, 47.480209 ], + [ 9.0313891, 47.480237 ], + [ 9.0314161, 47.4802437 ], + [ 9.0319983, 47.4803872 ], + [ 9.0321407, 47.4804223 ], + [ 9.0322894, 47.4804589 ], + [ 9.0328515, 47.4805971 ], + [ 9.0332373, 47.4806918 ], + [ 9.0332554, 47.4806967 ], + [ 9.0332731, 47.4807022 ], + [ 9.0332903, 47.4807083 ], + [ 9.0333071, 47.480715000000004 ], + [ 9.0333233, 47.4807223 ], + [ 9.0333389, 47.480730199999996 ], + [ 9.0333539, 47.4807386 ], + [ 9.0333677, 47.4807472 ], + [ 9.0333808, 47.4807562 ], + [ 9.0333932, 47.4807657 ], + [ 9.0334049, 47.4807756 ], + [ 9.0334159, 47.4807858 ], + [ 9.033426, 47.4807964 ], + [ 9.0334354, 47.4808074 ], + [ 9.0334441, 47.4808184 ], + [ 9.033452, 47.4808298 ], + [ 9.0334591, 47.4808413 ], + [ 9.0334654, 47.4808531 ], + [ 9.0334708, 47.4808651 ], + [ 9.0334754, 47.4808773 ], + [ 9.0334791, 47.4808895 ], + [ 9.033482, 47.4809019 ], + [ 9.0334839, 47.4809143 ], + [ 9.033485, 47.4809267 ], + [ 9.0334852, 47.4809392 ], + [ 9.0334846, 47.4809516 ], + [ 9.033483, 47.4809641 ], + [ 9.0334806, 47.4809764 ], + [ 9.0337406, 47.4805316 ], + [ 9.033733, 47.4805393 ], + [ 9.0337249, 47.4805468 ], + [ 9.0337161, 47.4805539 ], + [ 9.0337068, 47.4805606 ], + [ 9.0336969, 47.4805671 ], + [ 9.0336865, 47.4805731 ], + [ 9.0336757, 47.4805787 ], + [ 9.033664, 47.480584 ], + [ 9.033652, 47.4805889 ], + [ 9.0336395, 47.4805933 ], + [ 9.0336268, 47.4805972 ], + [ 9.0336137, 47.4806006 ], + [ 9.0336003, 47.4806035 ], + [ 9.0335867, 47.4806059 ], + [ 9.0335732, 47.4806082 ], + [ 9.0335595, 47.4806101 ], + [ 9.0335457, 47.4806117 ], + [ 9.0335319, 47.4806129 ], + [ 9.0335179, 47.4806137 ], + [ 9.033504, 47.4806141 ], + [ 9.03349, 47.4806141 ], + [ 9.0334758, 47.4806138 ], + [ 9.0334616, 47.480613 ], + [ 9.0334474, 47.4806118 ], + [ 9.0334333, 47.4806103 ], + [ 9.0334194, 47.4806083 ], + [ 9.0334055, 47.4806059 ], + [ 9.0333918, 47.4806032 ], + [ 9.0331736, 47.4805497 ], + [ 9.0328612, 47.4804729 ], + [ 9.0327658, 47.4804494 ], + [ 9.0327544, 47.4802832 ], + [ 9.0327538, 47.4801818 ], + [ 9.0327693, 47.4799522 ], + [ 9.0327827, 47.4797395 ], + [ 9.032798, 47.4794937 ], + [ 9.0327989, 47.4794824 ], + [ 9.0317417, 47.4792475 ], + [ 9.0317172, 47.4792979 ], + [ 9.0316947, 47.4794282 ], + [ 9.0316216, 47.4797445 ], + [ 9.0314752, 47.4801237 ], + [ 9.0311147, 47.4800597 ], + [ 9.0308964, 47.4800064 ], + [ 9.030609, 47.4799362 ], + [ 9.030533, 47.4799176 ], + [ 9.0304864, 47.4799056 ], + [ 9.0304399, 47.4798933 ], + [ 9.0303936, 47.4798807 ], + [ 9.0303475, 47.4798679 ], + [ 9.0303016, 47.4798547 ], + [ 9.0302558, 47.4798412 ], + [ 9.0302103, 47.4798274 ], + [ 9.03019, 47.4798211 ], + [ 9.0301697, 47.4798148 ], + [ 9.0301494, 47.4798084 ], + [ 9.0301292, 47.479802 ], + [ 9.030109, 47.4797955 ], + [ 9.0300889, 47.479789 ], + [ 9.0300688, 47.4797823 ], + [ 9.0300328, 47.4797703 ], + [ 9.0299969, 47.4797581 ], + [ 9.0299611, 47.4797456 ], + [ 9.0299255, 47.479733 ], + [ 9.02989, 47.4797203 ], + [ 9.0298547, 47.4797073 ], + [ 9.0298195, 47.4796941 ], + [ 9.0297894, 47.4796827 ], + [ 9.0297595, 47.4796712 ], + [ 9.0297297, 47.4796595 ], + [ 9.0297001, 47.4796477 ], + [ 9.0296705, 47.4796357 ], + [ 9.0296411, 47.4796237 ], + [ 9.0296117, 47.4796115 ], + [ 9.0296157, 47.4796076 ], + [ 9.0294974, 47.4795546 ], + [ 9.0293809, 47.4794974 ], + [ 9.0290987, 47.479351 ], + [ 9.0290588, 47.4793303 ], + [ 9.0285929, 47.4790887 ], + [ 9.02837, 47.4789789 ], + [ 9.0281364, 47.478876 ], + [ 9.0278975, 47.4787816 ], + [ 9.0276503, 47.4786969 ], + [ 9.0276401, 47.4786938 ], + [ 9.0276409, 47.4786919 ], + [ 9.0276352, 47.4786901 ], + [ 9.0276333, 47.4786895 ], + [ 9.0276314, 47.478689 ], + [ 9.0276295, 47.4786884 ], + [ 9.0276276, 47.4786879 ], + [ 9.0276257, 47.4786874 ], + [ 9.0276238, 47.4786869 ], + [ 9.0276218, 47.4786864 ], + [ 9.0276199, 47.4786859 ], + [ 9.0276179, 47.4786855 ], + [ 9.027616, 47.4786851 ], + [ 9.027614, 47.4786846 ], + [ 9.027612, 47.478684200000004 ], + [ 9.02761, 47.4786839 ], + [ 9.0276081, 47.4786835 ], + [ 9.0276026, 47.4786825 ], + [ 9.0273959, 47.4786205 ], + [ 9.0271369, 47.4785538 ], + [ 9.0271007, 47.478546 ], + [ 9.0268775, 47.4784976 ], + [ 9.0267751, 47.478477 ], + [ 9.0266584, 47.4784536 ], + [ 9.0264699, 47.4784139 ], + [ 9.026379, 47.4783947 ], + [ 9.0261039, 47.478332 ], + [ 9.0258346, 47.4782602 ], + [ 9.0255689, 47.4781818 ], + [ 9.0254297, 47.4781378 ], + [ 9.0254045, 47.4781298 ], + [ 9.0246328, 47.4778698 ], + [ 9.0246303, 47.4778686 ], + [ 9.024628, 47.4778672 ], + [ 9.0246258, 47.4778658 ], + [ 9.0246238, 47.4778643 ], + [ 9.0246219, 47.4778626 ], + [ 9.0246202, 47.4778609 ], + [ 9.0246187, 47.4778591 ], + [ 9.0246174, 47.4778572 ], + [ 9.0246163, 47.4778553 ], + [ 9.0246154, 47.4778533 ], + [ 9.0246147, 47.4778513 ], + [ 9.0246142, 47.4778493 ], + [ 9.0246139, 47.4778472 ], + [ 9.0245578, 47.4779532 ], + [ 9.0245599, 47.4779514 ], + [ 9.0245621, 47.4779497 ], + [ 9.0245645, 47.477948 ], + [ 9.024567, 47.4779464 ], + [ 9.0245697, 47.4779449 ], + [ 9.0245724, 47.4779436 ], + [ 9.0245753, 47.4779423 ], + [ 9.0245787, 47.477941 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VBS_21", + "country" : "CHE", + "name" : [ + { + "text" : "VBS_21 Bronschhofen", + "lang" : "de-CH" + }, + { + "text" : "VBS_21 Bronschhofen", + "lang" : "fr-CH" + }, + { + "text" : "VBS_21 Bronschhofen", + "lang" : "it-CH" + }, + { + "text" : "VBS_21 Bronschhofen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "regulationExemption" : "YES", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Eidgenössisches Departement für Verteidigung, Bevölkerungsschutz und Sport (VBS)", + "lang" : "de-CH" + }, + { + "text" : "Département fédéral de la défense, de la protection de la population et des sports (DDPS)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento federale della difesa, della protezione della popolazione e dello sport (DDPS)", + "lang" : "it-CH" + }, + { + "text" : "Federal Department of Defence, Civil Protection and Sport (DDPS)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Lageverfolgungszentrum der Armee LVZ A", + "lang" : "de-CH" + }, + { + "text" : "Centre de suivi de la situation de l’armée, CSS A", + "lang" : "fr-CH" + }, + { + "text" : "Centro di monitoraggio della situazione dell’esercito, Centro mon sit Es", + "lang" : "it-CH" + }, + { + "text" : "Joint Operation Center, JOC", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vtg.admin.ch/en/joint-operations-command", + "email" : "lvz.op@vtg.admin.ch", + "phone" : "+41 58 464 96 43", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.0365839, 46.9066083 ], + [ 9.0364103, 46.9067028 ], + [ 9.03626, 46.9068088 ], + [ 9.0360597, 46.906999 ], + [ 9.0359339, 46.9071277 ], + [ 9.0357257, 46.9073009 ], + [ 9.0356009, 46.9074071 ], + [ 9.0355161, 46.9075644 ], + [ 9.0353909, 46.9076592 ], + [ 9.0352921, 46.9076753 ], + [ 9.0351921, 46.9077592 ], + [ 9.0350918, 46.9078655 ], + [ 9.0349659, 46.9080168 ], + [ 9.0346357, 46.9080877 ], + [ 9.0345015, 46.9082388 ], + [ 9.034408, 46.9084073 ], + [ 9.0342816, 46.908598 ], + [ 9.0341812, 46.9087269 ], + [ 9.0339318, 46.9088941 ], + [ 9.0336666, 46.9089993 ], + [ 9.0335009, 46.9090826 ], + [ 9.0334254, 46.9091666 ], + [ 9.0333008, 46.9092277 ], + [ 9.0330784, 46.9092541 ], + [ 9.0330209, 46.9092763 ], + [ 9.0328957, 46.9093711 ], + [ 9.0328038, 46.9094832 ], + [ 9.0326938, 46.9096459 ], + [ 9.0326576, 46.9098373 ], + [ 9.0326468, 46.9099726 ], + [ 9.0325949, 46.9101583 ], + [ 9.0324829, 46.9104225 ], + [ 9.0324557, 46.9105858 ], + [ 9.0322475, 46.9107308 ], + [ 9.0321069, 46.9108031 ], + [ 9.0319973, 46.9109262 ], + [ 9.031847, 46.9110885 ], + [ 9.0316874, 46.9112679 ], + [ 9.0315452, 46.9113964 ], + [ 9.0312875, 46.9115917 ], + [ 9.0311612, 46.9117599 ], + [ 9.0310761, 46.9119059 ], + [ 9.0309429, 46.9120346 ], + [ 9.0307187, 46.912168199999996 ], + [ 9.0305998, 46.9123647 ], + [ 9.0305631, 46.9125675 ], + [ 9.030504, 46.9127023 ], + [ 9.0303862, 46.9128255 ], + [ 9.0302373, 46.9128976 ], + [ 9.0300127, 46.9130424 ], + [ 9.0298873, 46.9131598 ], + [ 9.0296881, 46.913305 ], + [ 9.0295049, 46.9134389 ], + [ 9.0293302, 46.9135502 ], + [ 9.029139, 46.9136616 ], + [ 9.0289821, 46.9137111 ], + [ 9.0288072, 46.9138451 ], + [ 9.0286477, 46.91403 ], + [ 9.0285202, 46.9142714 ], + [ 9.0282628, 46.9144443 ], + [ 9.0281295, 46.9145447 ], + [ 9.0279451, 46.9147182 ], + [ 9.0277795, 46.9148071 ], + [ 9.0277215, 46.9148461 ], + [ 9.027638, 46.9149074 ], + [ 9.0275286, 46.9150363 ], + [ 9.0274525, 46.9151542 ], + [ 9.0273677, 46.9153114 ], + [ 9.027275, 46.9154516 ], + [ 9.0271583, 46.9155297 ], + [ 9.0270431, 46.9155739 ], + [ 9.026828, 46.9156286 ], + [ 9.0265636, 46.9157055 ], + [ 9.0262834, 46.9157483 ], + [ 9.0259129, 46.9158189 ], + [ 9.0255744, 46.9158895 ], + [ 9.0252857, 46.9159774 ], + [ 9.0250211, 46.9160487 ], + [ 9.0248635, 46.916132 ], + [ 9.0246242, 46.9161977 ], + [ 9.0243838, 46.9163087 ], + [ 9.024242, 46.916426 ], + [ 9.0240762, 46.9165093 ], + [ 9.023796, 46.9165803 ], + [ 9.0234005, 46.9166394 ], + [ 9.0228894, 46.9167256 ], + [ 9.0224434, 46.9168517 ], + [ 9.0218638, 46.9170953 ], + [ 9.0213096, 46.9173109 ], + [ 9.021192, 46.9174678 ], + [ 9.0211889, 46.9176426 ], + [ 9.0211285, 46.9177944 ], + [ 9.0209547, 46.917855 ], + [ 9.0207715, 46.917989 ], + [ 9.0206542, 46.918129 ], + [ 9.0204379, 46.9182515 ], + [ 9.0200661, 46.9183894 ], + [ 9.0197184, 46.9185108 ], + [ 9.019339, 46.9186148 ], + [ 9.0190902, 46.9187483 ], + [ 9.0189149, 46.9188992 ], + [ 9.018870100000001, 46.9191074 ], + [ 9.0188097, 46.9192311 ], + [ 9.0185947, 46.919314 ], + [ 9.0184225, 46.9192901 ], + [ 9.0182433, 46.9192266 ], + [ 9.0180779, 46.9192647 ], + [ 9.0179285, 46.9193482 ], + [ 9.0176878, 46.9194817 ], + [ 9.0174144, 46.919643 ], + [ 9.0171729, 46.9198047 ], + [ 9.0169083, 46.919904 ], + [ 9.0166765, 46.9199756 ], + [ 9.0164878, 46.9199797 ], + [ 9.0162585, 46.9199383 ], + [ 9.0160546, 46.919869 ], + [ 9.015858, 46.919828 ], + [ 9.0156604, 46.9198321 ], + [ 9.015397, 46.9198639 ], + [ 9.0150592, 46.9199288 ], + [ 9.0147537, 46.9200054 ], + [ 9.0144637, 46.9201102 ], + [ 9.0142398, 46.920255 ], + [ 9.01413, 46.9204007 ], + [ 9.0140869, 46.9205245 ], + [ 9.0140173, 46.920727 ], + [ 9.0139983, 46.9208904 ], + [ 9.0139382, 46.9210253 ], + [ 9.0138537, 46.9211374 ], + [ 9.0137372, 46.9212211 ], + [ 9.0136383, 46.9212372 ], + [ 9.0135152, 46.9212362 ], + [ 9.0133343, 46.921223499999996 ], + [ 9.0131285, 46.9212331 ], + [ 9.0129401, 46.9212148 ], + [ 9.0127178, 46.9212468 ], + [ 9.0125029, 46.9213353 ], + [ 9.0123116, 46.9214465 ], + [ 9.0121283, 46.921603 ], + [ 9.011886, 46.9217928 ], + [ 9.01171, 46.9219774 ], + [ 9.0115918, 46.9221458 ], + [ 9.0114744, 46.9222857 ], + [ 9.0113736, 46.9224316 ], + [ 9.0112711, 46.9226564 ], + [ 9.0112189, 46.9228083 ], + [ 9.0111095, 46.9229428 ], + [ 9.0110174, 46.9230209 ], + [ 9.0109827, 46.9231222 ], + [ 9.0109804, 46.9232687 ], + [ 9.0109451, 46.9234095 ], + [ 9.0107372, 46.923515 ], + [ 9.0106043, 46.9235985 ], + [ 9.0104542, 46.9237157 ], + [ 9.0102797, 46.9238101 ], + [ 9.0100387, 46.9239605 ], + [ 9.0098476, 46.9241057 ], + [ 9.0097882, 46.9242067 ], + [ 9.009744, 46.924352999999996 ], + [ 9.0096856, 46.9244314 ], + [ 9.0095862, 46.9244589 ], + [ 9.009412, 46.9245363 ], + [ 9.0092625, 46.9246142 ], + [ 9.0091789, 46.9247318 ], + [ 9.0091183, 46.924878 ], + [ 9.0090182, 46.9249618 ], + [ 9.0089095, 46.9250625 ], + [ 9.0087857, 46.9250953 ], + [ 9.008571, 46.9251612 ], + [ 9.008569, 46.9252627 ], + [ 9.0084854, 46.9253523 ], + [ 9.0083769, 46.9254304 ], + [ 9.0082681, 46.9255254 ], + [ 9.0081344, 46.9256428 ], + [ 9.0080098, 46.9257321 ], + [ 9.0078919, 46.9258833 ], + [ 9.0078003, 46.9259784 ], + [ 9.0076921, 46.9260114 ], + [ 9.0075921, 46.9261009 ], + [ 9.0075298, 46.9263541 ], + [ 9.0074634, 46.9264156 ], + [ 9.0073956, 46.926511 ], + [ 9.0072955, 46.926623 ], + [ 9.0071459, 46.9267007 ], + [ 9.00694, 46.9267329 ], + [ 9.0066418, 46.9268376 ], + [ 9.0063594, 46.9270046 ], + [ 9.0062172, 46.9271388 ], + [ 9.0061566, 46.9273131 ], + [ 9.0061469, 46.9274032 ], + [ 9.0060465, 46.9274757 ], + [ 9.0058727, 46.9275703 ], + [ 9.0056562, 46.9277151 ], + [ 9.0053572, 46.9279045 ], + [ 9.0055176, 46.9280862 ], + [ 9.0056793, 46.9282285 ], + [ 9.0058506, 46.9283314 ], + [ 9.0060948, 46.9284292 ], + [ 9.0064301, 46.9285277 ], + [ 9.0066838, 46.9286144 ], + [ 9.006946, 46.9286559 ], + [ 9.0072818, 46.928715 ], + [ 9.00756, 46.928768 ], + [ 9.0077969, 46.9288432 ], + [ 9.0080176, 46.9289239 ], + [ 9.008319, 46.9290674 ], + [ 9.0087825, 46.9293418 ], + [ 9.0100987, 46.9301418 ], + [ 9.0104155, 46.9303642 ], + [ 9.0107072, 46.9305696 ], + [ 9.0109422, 46.9307745 ], + [ 9.0111526, 46.930951 ], + [ 9.0112574, 46.9310815 ], + [ 9.0113694, 46.9312346 ], + [ 9.0115282, 46.9315292 ], + [ 9.0125632, 46.9333758 ], + [ 9.0126265, 46.9335173 ], + [ 9.0126664, 46.933591 ], + [ 9.0127147, 46.9336421 ], + [ 9.0138175, 46.9349141 ], + [ 9.0141038, 46.9349897 ], + [ 9.0144066, 46.935071 ], + [ 9.014856, 46.9352213 ], + [ 9.0151902, 46.9353367 ], + [ 9.0155404, 46.93552 ], + [ 9.0160213, 46.9357663 ], + [ 9.0163869, 46.9360004 ], + [ 9.016573, 46.9361598 ], + [ 9.0167589, 46.9363135 ], + [ 9.0169112, 46.9365233 ], + [ 9.0170311, 46.9367217 ], + [ 9.0171907, 46.9369823 ], + [ 9.0184047, 46.9389601 ], + [ 9.0187335, 46.9394195 ], + [ 9.0189739, 46.9397203 ], + [ 9.0191503, 46.939998 ], + [ 9.0193823, 46.9403212 ], + [ 9.0195261, 46.9405762 ], + [ 9.0197512, 46.9408599 ], + [ 9.0223213, 46.9437393 ], + [ 9.0243955, 46.9426899 ], + [ 9.0262488, 46.9424731 ], + [ 9.026509, 46.9426388 ], + [ 9.0267119, 46.9427813 ], + [ 9.0269064, 46.9429182 ], + [ 9.0270188, 46.9430544 ], + [ 9.0271791, 46.9432812 ], + [ 9.0272591, 46.9434342 ], + [ 9.0272964, 46.9436374 ], + [ 9.0272923, 46.9438629 ], + [ 9.0273389, 46.9440213 ], + [ 9.0275082, 46.9442199 ], + [ 9.0277662, 46.9444757 ], + [ 9.0279704, 46.9445506 ], + [ 9.0281765, 46.944524 ], + [ 9.028391, 46.9445032 ], + [ 9.0285391, 46.9444592 ], + [ 9.0285923, 46.9442848 ], + [ 9.0311197, 46.9472821 ], + [ 9.0314091, 46.9476567 ], + [ 9.0316337, 46.9479742 ], + [ 9.0317862, 46.9481614 ], + [ 9.0391121, 46.9560063 ], + [ 9.0388649, 46.9560608 ], + [ 9.0387466, 46.9562234 ], + [ 9.0386597, 46.9565046 ], + [ 9.0385553, 46.956831 ], + [ 9.0388796, 46.957076 ], + [ 9.0389345, 46.9572117 ], + [ 9.039022, 46.9573928 ], + [ 9.0391247, 46.9576136 ], + [ 9.0391792, 46.9577889 ], + [ 9.0392595, 46.9579192 ], + [ 9.0393475, 46.9580327 ], + [ 9.0395263, 46.9581637 ], + [ 9.0396473, 46.9583112 ], + [ 9.0397423, 46.9585206 ], + [ 9.0397157, 46.9586219 ], + [ 9.0396157, 46.9586832 ], + [ 9.0394993, 46.9587725 ], + [ 9.0393584, 46.9588392 ], + [ 9.039185, 46.9588659 ], + [ 9.0389951, 46.9589152 ], + [ 9.0390079, 46.9590959 ], + [ 9.0392065, 46.9590636 ], + [ 9.0393866, 46.9590706 ], + [ 9.0395435, 46.9590718 ], + [ 9.0397501, 46.9590056 ], + [ 9.0399325, 46.9589225 ], + [ 9.039931, 46.9590127 ], + [ 9.0398956, 46.9591478 ], + [ 9.0398522, 46.9592602 ], + [ 9.0397039, 46.9592985 ], + [ 9.0395702, 46.959416 ], + [ 9.0393964, 46.9594824 ], + [ 9.0392228, 46.9595261 ], + [ 9.0391959, 46.9596443 ], + [ 9.0391596, 46.9598301 ], + [ 9.0391819, 46.9599995 ], + [ 9.0392923, 46.9602316 ], + [ 9.0394939, 46.9604644 ], + [ 9.0398596, 46.9607209 ], + [ 9.0402743, 46.9609666 ], + [ 9.0402317, 46.9610791 ], + [ 9.0402618, 46.961209 ], + [ 9.0403893, 46.9614356 ], + [ 9.0415408, 46.9632773 ], + [ 9.0418295, 46.9637024 ], + [ 9.042038, 46.9640029 ], + [ 9.04217, 46.9644607 ], + [ 9.042383, 46.9649643 ], + [ 9.0426478, 46.9653611 ], + [ 9.0422116, 46.9653859 ], + [ 9.0418246, 46.9654111 ], + [ 9.0413288, 46.9655314 ], + [ 9.0408646, 46.9657477 ], + [ 9.043994, 46.9692062 ], + [ 9.0441587, 46.9692186 ], + [ 9.0442644, 46.9692928 ], + [ 9.0444167, 46.969497 ], + [ 9.0447146, 46.9698714 ], + [ 9.0449738, 46.9701047 ], + [ 9.0452884, 46.9704342 ], + [ 9.0457813, 46.9709285 ], + [ 9.0459427, 46.9711047 ], + [ 9.0460887, 46.9712355 ], + [ 9.0461442, 46.97136 ], + [ 9.0461671, 46.9714673 ], + [ 9.0462226, 46.9715918 ], + [ 9.0462864, 46.9716656 ], + [ 9.0464165, 46.9717851 ], + [ 9.0466908, 46.972086 ], + [ 9.0469887, 46.9724323 ], + [ 9.0471588, 46.972597 ], + [ 9.0473681, 46.9728356 ], + [ 9.0474634, 46.973028 ], + [ 9.0477046, 46.9733457 ], + [ 9.0479717, 46.9736241 ], + [ 9.0481735, 46.9738342 ], + [ 9.0483082, 46.9741342 ], + [ 9.0485303, 46.9746096 ], + [ 9.0487005, 46.9751917 ], + [ 9.049549, 46.9751023 ], + [ 9.0499695, 46.9750717 ], + [ 9.0505609, 46.9751213 ], + [ 9.0510618, 46.9751421 ], + [ 9.0513822, 46.9751671 ], + [ 9.0517844, 46.9752097 ], + [ 9.0520472, 46.9752342 ], + [ 9.0522209, 46.9752186 ], + [ 9.0526005, 46.9751369 ], + [ 9.052847, 46.9751388 ], + [ 9.0530031, 46.9751399 ], + [ 9.0531757, 46.9751413 ], + [ 9.053332, 46.9751481 ], + [ 9.0534563, 46.9751039 ], + [ 9.0536384, 46.9750376 ], + [ 9.0537958, 46.9749712 ], + [ 9.0539948, 46.9748711 ], + [ 9.0541524, 46.9748102 ], + [ 9.0543262, 46.974744 ], + [ 9.0544672, 46.9746773 ], + [ 9.054692, 46.9745324 ], + [ 9.0548574, 46.9744604 ], + [ 9.0551446, 46.974502 ], + [ 9.0553993, 46.9745039 ], + [ 9.0554306, 46.9746169 ], + [ 9.0554538, 46.9747018 ], + [ 9.0555427, 46.9747926 ], + [ 9.0556072, 46.9748609 ], + [ 9.0556635, 46.9749571 ], + [ 9.055777, 46.9750426 ], + [ 9.0558663, 46.9751166 ], + [ 9.0559717, 46.9751793 ], + [ 9.0560277, 46.9752644 ], + [ 9.0561073, 46.9754511 ], + [ 9.056219, 46.9756437 ], + [ 9.0563551, 46.9758252 ], + [ 9.0565952, 46.9762387 ], + [ 9.057011, 46.9769242 ], + [ 9.0572264, 46.9773093 ], + [ 9.0574571, 46.9782302 ], + [ 9.0575053, 46.9783039 ], + [ 9.0576182, 46.9784232 ], + [ 9.0578134, 46.9785488 ], + [ 9.0579598, 46.9786344 ], + [ 9.0582284, 46.9788225 ], + [ 9.058407, 46.9789423 ], + [ 9.0584295, 46.9790892 ], + [ 9.0583451, 46.9791788 ], + [ 9.0581716, 46.9792563 ], + [ 9.0579392, 46.9793674 ], + [ 9.0577971, 46.9795073 ], + [ 9.057721, 46.9796251 ], + [ 9.0577594, 46.9797551 ], + [ 9.0578479, 46.9798574 ], + [ 9.0579784, 46.9799316 ], + [ 9.0581576, 46.9800457 ], + [ 9.0585255, 46.9802008 ], + [ 9.0588591, 46.9803669 ], + [ 9.0592101, 46.9805613 ], + [ 9.0594622, 46.9806928 ], + [ 9.0596002, 46.9808292 ], + [ 9.0596801, 46.9809426 ], + [ 9.0597111, 46.9810726 ], + [ 9.0597494, 46.9812252 ], + [ 9.0598215, 46.9813272 ], + [ 9.0599186, 46.9814407 ], + [ 9.0600489, 46.9815375 ], + [ 9.060292, 46.9817254 ], + [ 9.0604873, 46.981851 ], + [ 9.06078, 46.9820506 ], + [ 9.060926, 46.9821757 ], + [ 9.0611122, 46.9823577 ], + [ 9.0612495, 46.9824939 ], + [ 9.0613624, 46.9826415 ], + [ 9.0614657, 46.9828509 ], + [ 9.0616017, 46.9830549 ], + [ 9.0617378, 46.9832645 ], + [ 9.0618824, 46.9834519 ], + [ 9.0620607, 46.9836166 ], + [ 9.062272, 46.9837818 ], + [ 9.0624987, 46.9839696 ], + [ 9.0622847, 46.9839849 ], + [ 9.0621701, 46.9839727 ], + [ 9.0619978, 46.9839545 ], + [ 9.0617589, 46.9839358 ], + [ 9.061488, 46.9839169 ], + [ 9.0612083, 46.9839316 ], + [ 9.0610259, 46.9839867 ], + [ 9.0609175, 46.9840704 ], + [ 9.0607846, 46.9841598 ], + [ 9.0606333, 46.9843447 ], + [ 9.060498, 46.9845466 ], + [ 9.0604043, 46.9847602 ], + [ 9.0603097, 46.9850021 ], + [ 9.0608852, 46.9850121 ], + [ 9.0614109, 46.9850329 ], + [ 9.06174, 46.9850467 ], + [ 9.0620776, 46.9850436 ], + [ 9.0624547, 46.9850971 ], + [ 9.0627578, 46.9851727 ], + [ 9.0630278, 46.9852706 ], + [ 9.0633212, 46.9854364 ], + [ 9.0635407, 46.9856016 ], + [ 9.0637505, 46.9858005 ], + [ 9.0639363, 46.9860218 ], + [ 9.064072, 46.9862428 ], + [ 9.0641902, 46.9865369 ], + [ 9.0642336, 46.9869094 ], + [ 9.0644773, 46.9890147 ], + [ 9.0645009, 46.9895506 ], + [ 9.0645394, 46.9897088 ], + [ 9.0646506, 46.989907 ], + [ 9.0648036, 46.9901281 ], + [ 9.064973, 46.9903211 ], + [ 9.0652326, 46.9905374 ], + [ 9.0654927, 46.9907141 ], + [ 9.0657125, 46.9908623 ], + [ 9.0658819, 46.9910272 ], + [ 9.0660282, 46.9911636 ], + [ 9.0662475, 46.991295 ], + [ 9.0665665, 46.9914326 ], + [ 9.0669092, 46.9915706 ], + [ 9.0672368, 46.991669 ], + [ 9.0676303, 46.9917452 ], + [ 9.0679263, 46.9917756 ], + [ 9.0684109, 46.9917961 ], + [ 9.0688392, 46.9917993 ], + [ 9.0692499, 46.9918193 ], + [ 9.0695708, 46.9918329 ], + [ 9.0701404, 46.9907827 ], + [ 9.0762967, 46.9920803 ], + [ 9.0764051, 46.9920246 ], + [ 9.0765707, 46.9919582 ], + [ 9.0768427, 46.9919321 ], + [ 9.0770154, 46.9919333 ], + [ 9.0772783, 46.9919578 ], + [ 9.077606, 46.9920336 ], + [ 9.0778129, 46.9919449 ], + [ 9.077987, 46.9918616 ], + [ 9.0781105, 46.9918681 ], + [ 9.0781924, 46.9918857 ], + [ 9.0782825, 46.9919032 ], + [ 9.0784127, 46.9919944 ], + [ 9.0785017, 46.9920854 ], + [ 9.0785989, 46.9921988 ], + [ 9.0787371, 46.9922562 ], + [ 9.0789027, 46.9922179 ], + [ 9.0790676, 46.9922079 ], + [ 9.0791987, 46.9922483 ], + [ 9.0793443, 46.9923622 ], + [ 9.0794671, 46.9924251 ], + [ 9.0795817, 46.9924372 ], + [ 9.0797383, 46.9924271 ], + [ 9.0800358, 46.9923447 ], + [ 9.0802252, 46.9923292 ], + [ 9.0803562, 46.9923696 ], + [ 9.0805042, 46.9923989 ], + [ 9.0806524, 46.9924056 ], + [ 9.0808174, 46.992373 ], + [ 9.0809997, 46.9922898 ], + [ 9.081206, 46.9922631 ], + [ 9.0813785, 46.9922587 ], + [ 9.0877875, 46.9937718 ], + [ 9.0875774, 46.993996 ], + [ 9.0875429, 46.9941029 ], + [ 9.087598, 46.9942386 ], + [ 9.0877356, 46.9944087 ], + [ 9.0878965, 46.9945904 ], + [ 9.0879753, 46.9947996 ], + [ 9.0880053, 46.9949746 ], + [ 9.0880193, 46.9951608 ], + [ 9.0880829, 46.9952798 ], + [ 9.0881386, 46.9953816 ], + [ 9.0881673, 46.9956186 ], + [ 9.0880126, 46.9960405 ], + [ 9.0884547, 46.9961452 ], + [ 9.0888645, 46.9962666 ], + [ 9.0892329, 46.996354 ], + [ 9.0896023, 46.9964468 ], + [ 9.089799, 46.996482 ], + [ 9.0900619, 46.9964784 ], + [ 9.0902927, 46.9964744 ], + [ 9.0905155, 46.9964478 ], + [ 9.0907711, 46.9964215 ], + [ 9.0910007, 46.996457 ], + [ 9.0912465, 46.9965152 ], + [ 9.0915011, 46.9965621 ], + [ 9.0916734, 46.996552199999996 ], + [ 9.0919135, 46.996503 ], + [ 9.0921779, 46.9964147 ], + [ 9.0924679, 46.9962759 ], + [ 9.092725, 46.996165 ], + [ 9.0930221, 46.9961502 ], + [ 9.0932516, 46.9961857 ], + [ 9.0934733, 46.9962043 ], + [ 9.0937857, 46.9962065 ], + [ 9.0939835, 46.9961966 ], + [ 9.0941799, 46.996277 ], + [ 9.0944493, 46.996403 ], + [ 9.0947115, 46.9964839 ], + [ 9.0949569, 46.9965533 ], + [ 9.095203, 46.9966172 ], + [ 9.0954498, 46.9966246 ], + [ 9.0956548, 46.9966374 ], + [ 9.0958516, 46.9967008 ], + [ 9.0960393, 46.9967924 ], + [ 9.0961773, 46.9968948 ], + [ 9.0964051, 46.9970318 ], + [ 9.0967155, 46.9971582 ], + [ 9.0970999, 46.9973076 ], + [ 9.0974849, 46.9974513 ], + [ 9.0976889, 46.9975373 ], + [ 9.0979189, 46.9975616 ], + [ 9.0981237, 46.9975912 ], + [ 9.0983048, 46.9976264 ], + [ 9.0985254, 46.9977183 ], + [ 9.0989096, 46.997862 ], + [ 9.0992775, 46.9980112 ], + [ 9.0996125, 46.9981321 ], + [ 9.0998424, 46.9981788 ], + [ 9.1000886, 46.9982201 ], + [ 9.1003433, 46.9982444 ], + [ 9.1004586, 46.9982509 ], + [ 9.1005883, 46.9983252 ], + [ 9.100751, 46.9984561 ], + [ 9.1009142, 46.9985249 ], + [ 9.101137, 46.9985264 ], + [ 9.1014247, 46.9985286 ], + [ 9.1018276, 46.9985315 ], + [ 9.102099, 46.998539 ], + [ 9.1023545, 46.9985352 ], + [ 9.1025936, 46.998503 ], + [ 9.1029329, 46.9983927 ], + [ 9.1032382, 46.9983272 ], + [ 9.1034605, 46.9983119 ], + [ 9.103757, 46.998331 ], + [ 9.1039291, 46.9983435 ], + [ 9.1042412, 46.9983626 ], + [ 9.1044718, 46.9983755 ], + [ 9.1046618, 46.9983261 ], + [ 9.1048928, 46.9982771 ], + [ 9.1051154, 46.9982449 ], + [ 9.1053304, 46.9982069 ], + [ 9.1055869, 46.9981298 ], + [ 9.1057855, 46.998041 ], + [ 9.1060906, 46.9979924 ], + [ 9.1063131, 46.9980108 ], + [ 9.106493, 46.9980348 ], + [ 9.1065991, 46.9980919 ], + [ 9.1068207, 46.9981612 ], + [ 9.1069835, 46.9982412 ], + [ 9.1072949, 46.9983168 ], + [ 9.1075168, 46.998340999999996 ], + [ 9.1078132, 46.99836 ], + [ 9.10806, 46.9983391 ], + [ 9.1083982, 46.9982739 ], + [ 9.1086631, 46.9982024 ], + [ 9.1089513, 46.998165 ], + [ 9.1091813, 46.9981892 ], + [ 9.1093792, 46.9982076 ], + [ 9.109608, 46.9982712 ], + [ 9.1097715, 46.9983232 ], + [ 9.1099523, 46.998347 ], + [ 9.1100747, 46.9983986 ], + [ 9.1102301, 46.9984786 ], + [ 9.1105161, 46.9985822 ], + [ 9.1106897, 46.9985609 ], + [ 9.1109213, 46.9984779 ], + [ 9.1112443, 46.998373 ], + [ 9.1115414, 46.9982792 ], + [ 9.1117647, 46.9982189 ], + [ 9.1119245, 46.9980169 ], + [ 9.112142, 46.9977986 ], + [ 9.1124733, 46.997643 ], + [ 9.112754, 46.9976281 ], + [ 9.1130332, 46.9976469 ], + [ 9.1132637, 46.9976318 ], + [ 9.1135687, 46.9976339 ], + [ 9.1138068, 46.9976525 ], + [ 9.1140603, 46.9977163 ], + [ 9.1142645, 46.9978079 ], + [ 9.114518, 46.9979507 ], + [ 9.1148443, 46.9980827 ], + [ 9.115222, 46.9981475 ], + [ 9.1154689, 46.9981322 ], + [ 9.1157411, 46.9981116 ], + [ 9.1160308, 46.9980178 ], + [ 9.116238, 46.9979403 ], + [ 9.116478, 46.9978349 ], + [ 9.1166195, 46.9977344 ], + [ 9.11686, 46.9975951 ], + [ 9.1171001, 46.9975177 ], + [ 9.117357, 46.9974294 ], + [ 9.1176132, 46.997341 ], + [ 9.1178607, 46.9972919 ], + [ 9.1180489, 46.997344 ], + [ 9.1182782, 46.9974246 ], + [ 9.1184337, 46.9974821 ], + [ 9.1186637, 46.9975287 ], + [ 9.1188767, 46.9975585 ], + [ 9.1190164, 46.9975594 ], + [ 9.119215, 46.9975214 ], + [ 9.1193892, 46.9974436 ], + [ 9.11958, 46.9973153 ], + [ 9.1197707, 46.9972377 ], + [ 9.1199106, 46.9972161 ], + [ 9.120077, 46.9971495 ], + [ 9.1202174, 46.9970942 ], + [ 9.1204659, 46.9969719 ], + [ 9.1207556, 46.9968781 ], + [ 9.1210119, 46.9968235 ], + [ 9.1212012, 46.9968304 ], + [ 9.1212825, 46.9968818 ], + [ 9.1213805, 46.9969388 ], + [ 9.1215279, 46.9969736 ], + [ 9.1217007, 46.9969805 ], + [ 9.1223792, 46.9967316 ], + [ 9.1227269, 46.9966043 ], + [ 9.1228841, 46.9965321 ], + [ 9.1229533, 46.9963521 ], + [ 9.1230873, 46.9961726 ], + [ 9.1232375, 46.9960609 ], + [ 9.1234443, 46.9959721 ], + [ 9.1237091, 46.9958723 ], + [ 9.1240889, 46.995796 ], + [ 9.1247319, 46.9957273 ], + [ 9.1249302, 46.9956836 ], + [ 9.1250461, 46.9956562 ], + [ 9.125138, 46.9955721 ], + [ 9.1252134, 46.9954881 ], + [ 9.1252884, 46.9954153 ], + [ 9.1254284, 46.9953995 ], + [ 9.1255694, 46.995361 ], + [ 9.1257505, 46.9953171 ], + [ 9.1258668, 46.9952784 ], + [ 9.1259834, 46.9951721 ], + [ 9.1261672, 46.9950043 ], + [ 9.1263678, 46.9948252 ], + [ 9.1265497, 46.9947305 ], + [ 9.1267319, 46.9946698 ], + [ 9.1269056, 46.9946259 ], + [ 9.1270305, 46.9945477 ], + [ 9.1272524, 46.9945211 ], + [ 9.127492, 46.9944833 ], + [ 9.1277574, 46.9943498 ], + [ 9.1280653, 46.9941321 ], + [ 9.1283065, 46.9939871 ], + [ 9.1284883, 46.993915 ], + [ 9.1287527, 46.9938549 ], + [ 9.1290343, 46.9937665 ], + [ 9.1292841, 46.9935822 ], + [ 9.1296567, 46.99341 ], + [ 9.1300548, 46.9931872 ], + [ 9.1303624, 46.993037 ], + [ 9.1307199, 46.9928027 ], + [ 9.1308873, 46.992612199999996 ], + [ 9.1309894, 46.9924098 ], + [ 9.1312148, 46.9922084 ], + [ 9.1315384, 46.9920189 ], + [ 9.1316864, 46.9919974 ], + [ 9.1318598, 46.9919704 ], + [ 9.1320334, 46.9919264 ], + [ 9.1322486, 46.9918433 ], + [ 9.1324978, 46.9916927 ], + [ 9.1327883, 46.9915482 ], + [ 9.1330694, 46.9914712 ], + [ 9.1333089, 46.9914052 ], + [ 9.1335252, 46.9912544 ], + [ 9.1337331, 46.991098 ], + [ 9.1339331, 46.9909527 ], + [ 9.1340844, 46.9907451 ], + [ 9.1342346, 46.9906107 ], + [ 9.1343854, 46.9904426 ], + [ 9.1345276, 46.9902857 ], + [ 9.1347031, 46.9901177 ], + [ 9.1348284, 46.9900001 ], + [ 9.1349952, 46.9898716 ], + [ 9.135259, 46.9898171 ], + [ 9.135449, 46.9897732 ], + [ 9.1355905, 46.9896727 ], + [ 9.1357412, 46.9895272 ], + [ 9.1359575, 46.9893764 ], + [ 9.1361822, 46.9892312 ], + [ 9.1364309, 46.989092 ], + [ 9.1366387, 46.9889581 ], + [ 9.1368484, 46.9887283 ], + [ 9.1369251, 46.9885315 ], + [ 9.136961, 46.9883401 ], + [ 9.1370619, 46.9882053 ], + [ 9.1372875, 46.9880095 ], + [ 9.1379858, 46.9875125 ], + [ 9.1382181, 46.9874238 ], + [ 9.138517, 46.9872624 ], + [ 9.1388481, 46.9871293 ], + [ 9.1391348, 46.9872046 ], + [ 9.1394613, 46.9873421 ], + [ 9.1397411, 46.9873553 ], + [ 9.1400964, 46.9872619 ], + [ 9.1409146, 46.9870193 ], + [ 9.1413365, 46.9868755 ], + [ 9.1416185, 46.9867253 ], + [ 9.1420909, 46.9865141 ], + [ 9.1425056, 46.9862971 ], + [ 9.1428735, 46.9859274 ], + [ 9.14325, 46.9855183 ], + [ 9.1433004, 46.9854228 ], + [ 9.143368, 46.9853274 ], + [ 9.1434779, 46.9851646 ], + [ 9.1436368, 46.9849684 ], + [ 9.1438288, 46.9847779 ], + [ 9.1440559, 46.9844749 ], + [ 9.1442899, 46.9842622 ], + [ 9.1444993, 46.9840267 ], + [ 9.1446835, 46.9838251 ], + [ 9.1448843, 46.9836008 ], + [ 9.1450848, 46.9833936 ], + [ 9.1453301, 46.9829949 ], + [ 9.1455403, 46.9826805 ], + [ 9.1457677, 46.982338 ], + [ 9.1460034, 46.9820238 ], + [ 9.1463197, 46.9817891 ], + [ 9.1466602, 46.9815659 ], + [ 9.147009, 46.9813483 ], + [ 9.147258, 46.9812203 ], + [ 9.147424, 46.9810917 ], + [ 9.1475487, 46.981008 ], + [ 9.1476828, 46.9808566 ], + [ 9.1478085, 46.9807278 ], + [ 9.1480166, 46.9805544 ], + [ 9.1482906, 46.9803871 ], + [ 9.1485641, 46.9802536 ], + [ 9.1488536, 46.9801597 ], + [ 9.1491932, 46.9800379 ], + [ 9.149598, 46.9798996 ], + [ 9.1499547, 46.9797498 ], + [ 9.1503426, 46.9796228 ], + [ 9.1506578, 46.9794838 ], + [ 9.1509565, 46.9792942 ], + [ 9.1512066, 46.9791211 ], + [ 9.1514478, 46.9789309 ], + [ 9.1516642, 46.9787857 ], + [ 9.1519952, 46.9786527 ], + [ 9.1523273, 46.9784519 ], + [ 9.1527675, 46.9781391 ], + [ 9.1531253, 46.9778934 ], + [ 9.153565, 46.9776651 ], + [ 9.1539053, 46.9774643 ], + [ 9.1545777, 46.977091 ], + [ 9.1553329, 46.9766562 ], + [ 9.1559051, 46.9763612 ], + [ 9.156511, 46.9759874 ], + [ 9.1571332, 46.9756363 ], + [ 9.1639175, 46.9703582 ], + [ 9.1645084, 46.9699053 ], + [ 9.1651348, 46.9693061 ], + [ 9.1655282, 46.9688689 ], + [ 9.1659457, 46.9684656 ], + [ 9.1663727, 46.9679495 ], + [ 9.1667009, 46.967478 ], + [ 9.167045, 46.9670179 ], + [ 9.1672737, 46.9665684 ], + [ 9.1674361, 46.966152 ], + [ 9.1675824, 46.9657471 ], + [ 9.1677127, 46.9653024 ], + [ 9.1678429, 46.9648295 ], + [ 9.167926, 46.9642493 ], + [ 9.1690075, 46.9580702 ], + [ 9.1690374, 46.9577207 ], + [ 9.1690981, 46.9574899 ], + [ 9.1691997, 46.9573045 ], + [ 9.1693249, 46.9571643 ], + [ 9.1694837, 46.9570188 ], + [ 9.1698231, 46.9568462 ], + [ 9.1702291, 46.9566515 ], + [ 9.1705778, 46.956462 ], + [ 9.1708451, 46.9561931 ], + [ 9.1714926, 46.9552387 ], + [ 9.171371, 46.9551082 ], + [ 9.1712664, 46.9549722 ], + [ 9.1711958, 46.954718 ], + [ 9.1711344, 46.9544694 ], + [ 9.1711048, 46.954238 ], + [ 9.1711164, 46.9540126 ], + [ 9.1711283, 46.9537702 ], + [ 9.1710994, 46.9535105 ], + [ 9.1710067, 46.9531321 ], + [ 9.1706097, 46.9511332 ], + [ 9.1705568, 46.950817 ], + [ 9.1705429, 46.9506422 ], + [ 9.1705793, 46.9503942 ], + [ 9.1712943, 46.9466432 ], + [ 9.1713998, 46.9461985 ], + [ 9.1714872, 46.9458776 ], + [ 9.1716235, 46.9455457 ], + [ 9.1717418, 46.945321 ], + [ 9.1717451, 46.9451406 ], + [ 9.1717004, 46.9448245 ], + [ 9.1716384, 46.944559 ], + [ 9.1715345, 46.9443666 ], + [ 9.1713577, 46.9441286 ], + [ 9.1702603, 46.9427398 ], + [ 9.1700346, 46.9424619 ], + [ 9.1697759, 46.9422064 ], + [ 9.1696063, 46.9419628 ], + [ 9.1694958, 46.9416915 ], + [ 9.1693764, 46.9414031 ], + [ 9.1693139, 46.941194 ], + [ 9.1692685, 46.9409568 ], + [ 9.1692718, 46.9407539 ], + [ 9.169309, 46.9404834 ], + [ 9.1694047, 46.9400893 ], + [ 9.1703982, 46.9363964 ], + [ 9.1704948, 46.9359798 ], + [ 9.1704757, 46.9356413 ], + [ 9.1703594, 46.9351668 ], + [ 9.1702181, 46.9347317 ], + [ 9.1701584, 46.9343309 ], + [ 9.1701622, 46.9341166 ], + [ 9.1701336, 46.9338176 ], + [ 9.1701869, 46.9335585 ], + [ 9.1702641, 46.9333559 ], + [ 9.1704078, 46.9331032 ], + [ 9.1705496, 46.932918 ], + [ 9.1708012, 46.9325982 ], + [ 9.1708109, 46.9325875 ], + [ 9.1707755, 46.9325751 ], + [ 9.170714, 46.9325541 ], + [ 9.170642, 46.9325131 ], + [ 9.1706301, 46.9325064 ], + [ 9.1705672, 46.9324741 ], + [ 9.1704574, 46.9323939 ], + [ 9.170417, 46.9323448 ], + [ 9.1704102, 46.9323367 ], + [ 9.1703818, 46.9323079 ], + [ 9.170358, 46.9322838 ], + [ 9.1702806, 46.9322503 ], + [ 9.1702285, 46.9322134 ], + [ 9.1702279, 46.932213 ], + [ 9.1702253, 46.9322092 ], + [ 9.1702019, 46.9321746 ], + [ 9.1701329, 46.9321135 ], + [ 9.1701237, 46.9321036 ], + [ 9.1701069, 46.9320856 ], + [ 9.1700993, 46.9320774 ], + [ 9.1700881, 46.9320654 ], + [ 9.1700765, 46.9320515 ], + [ 9.1700516, 46.9320215 ], + [ 9.1700386, 46.9319715 ], + [ 9.170036, 46.9319585 ], + [ 9.1700301, 46.93193 ], + [ 9.1700056, 46.9318982 ], + [ 9.1699903, 46.9318783 ], + [ 9.169977, 46.9318497 ], + [ 9.1699548, 46.931801899999996 ], + [ 9.1699417, 46.9317783 ], + [ 9.1699358, 46.9317678 ], + [ 9.1699091, 46.9317211 ], + [ 9.1698841, 46.9316772 ], + [ 9.1698326, 46.9316161 ], + [ 9.169804, 46.9315971 ], + [ 9.1697766, 46.9315789 ], + [ 9.1697101, 46.9315358 ], + [ 9.1697076, 46.9315318 ], + [ 9.1696964, 46.931514 ], + [ 9.1696788, 46.9314822 ], + [ 9.1696556, 46.9314748 ], + [ 9.1696483, 46.9314725 ], + [ 9.1696428, 46.9314708 ], + [ 9.1695925, 46.9314722 ], + [ 9.1695368, 46.9314676 ], + [ 9.1695128, 46.9314525 ], + [ 9.1695065, 46.9314427 ], + [ 9.1694909, 46.9314183 ], + [ 9.1694306, 46.9313812 ], + [ 9.1693602, 46.9313531 ], + [ 9.1692592, 46.9313213 ], + [ 9.1691752, 46.9312965 ], + [ 9.1691496, 46.931289 ], + [ 9.1690186, 46.9312404 ], + [ 9.1689103, 46.9311968 ], + [ 9.1688016, 46.9311363 ], + [ 9.1687453, 46.9311112 ], + [ 9.1686775, 46.9310811 ], + [ 9.1685636, 46.9310329 ], + [ 9.1685469, 46.9310258 ], + [ 9.1685435, 46.9310244 ], + [ 9.1685298, 46.9310184 ], + [ 9.1684695, 46.9309924 ], + [ 9.1684661, 46.9309905 ], + [ 9.168395, 46.9309504 ], + [ 9.1683593, 46.9309312 ], + [ 9.168314, 46.9309326 ], + [ 9.1682697, 46.9309323 ], + [ 9.168216, 46.930932 ], + [ 9.1681487, 46.9309224 ], + [ 9.1681049, 46.9309061 ], + [ 9.1680549, 46.9308721 ], + [ 9.1680501, 46.9308688 ], + [ 9.1680072, 46.930849 ], + [ 9.1679174, 46.9308475 ], + [ 9.1679057, 46.9308495 ], + [ 9.1677852, 46.93087 ], + [ 9.1677076, 46.9308725 ], + [ 9.1676896, 46.930873 ], + [ 9.1675165, 46.9308639 ], + [ 9.1674978, 46.9308629 ], + [ 9.1673224, 46.9308851 ], + [ 9.1673193, 46.9308855 ], + [ 9.1672552, 46.9308937 ], + [ 9.1671399, 46.9309389 ], + [ 9.1670398, 46.9309505 ], + [ 9.1669958, 46.9309556 ], + [ 9.1669425, 46.9309516 ], + [ 9.1668942, 46.930948 ], + [ 9.1668197, 46.930944 ], + [ 9.1667282, 46.9309503 ], + [ 9.1666052, 46.9309727 ], + [ 9.1665609, 46.9309831 ], + [ 9.1664998, 46.9309976 ], + [ 9.1664573, 46.9310111 ], + [ 9.1664324, 46.9310191 ], + [ 9.1663903, 46.9310239 ], + [ 9.1663447, 46.9310162 ], + [ 9.1662975, 46.930991399999996 ], + [ 9.1662842, 46.9309884 ], + [ 9.1662759, 46.9309866 ], + [ 9.1662093, 46.9309716 ], + [ 9.1661127, 46.9309504 ], + [ 9.1660885, 46.9309388 ], + [ 9.1660541, 46.9309224 ], + [ 9.1659816, 46.9309129 ], + [ 9.1659726, 46.9309127 ], + [ 9.1658795, 46.9309109 ], + [ 9.1657766, 46.9309062 ], + [ 9.1657277, 46.930904 ], + [ 9.1657199, 46.9309035 ], + [ 9.1656752, 46.9309008 ], + [ 9.1656626, 46.9309 ], + [ 9.1656123, 46.9308734 ], + [ 9.1656029, 46.9308685 ], + [ 9.1655364, 46.9308518 ], + [ 9.165486, 46.9308554 ], + [ 9.1654695, 46.9308584 ], + [ 9.1654009, 46.9308708 ], + [ 9.1653303, 46.9308874 ], + [ 9.1652854, 46.9309029 ], + [ 9.1652245, 46.9308989 ], + [ 9.1651695, 46.9308891 ], + [ 9.1651315, 46.9308932 ], + [ 9.165105, 46.9309028 ], + [ 9.1650849, 46.9309179 ], + [ 9.165042, 46.9309313 ], + [ 9.1650008, 46.9309333 ], + [ 9.1649567, 46.9309396 ], + [ 9.164904, 46.9309666 ], + [ 9.1648739, 46.9309784 ], + [ 9.1648296, 46.9309959 ], + [ 9.1647815, 46.9310072 ], + [ 9.1647422, 46.9310008 ], + [ 9.164733, 46.9309985 ], + [ 9.1647131, 46.9309934 ], + [ 9.1646975, 46.9309979 ], + [ 9.1646794, 46.9310031 ], + [ 9.164673, 46.931007 ], + [ 9.1646521, 46.9310198 ], + [ 9.1646079, 46.9310254 ], + [ 9.1645851, 46.9310195 ], + [ 9.1645539, 46.9310114 ], + [ 9.1644971, 46.9310108 ], + [ 9.1643949, 46.9310371 ], + [ 9.164368, 46.9310504 ], + [ 9.1643299, 46.9310691 ], + [ 9.164276, 46.9310904 ], + [ 9.1641985, 46.9311042 ], + [ 9.1641806, 46.9311074 ], + [ 9.1641597, 46.9311083 ], + [ 9.1641024, 46.9311107 ], + [ 9.1639882, 46.9310856 ], + [ 9.1639567, 46.931067 ], + [ 9.1639124, 46.9310684 ], + [ 9.1638778, 46.9310823 ], + [ 9.1638682, 46.9310853 ], + [ 9.1638022, 46.931106 ], + [ 9.1637624, 46.9311172 ], + [ 9.163717, 46.9311172 ], + [ 9.1636268, 46.9310995 ], + [ 9.1636138, 46.9310967 ], + [ 9.1635354, 46.9310797 ], + [ 9.1634549, 46.9310767 ], + [ 9.1633043, 46.931074 ], + [ 9.1632685, 46.9310755 ], + [ 9.163085, 46.9310829 ], + [ 9.1630305, 46.931088 ], + [ 9.1629912, 46.9310835 ], + [ 9.1628826, 46.9310712 ], + [ 9.1628198, 46.9310749 ], + [ 9.1627629, 46.9310694 ], + [ 9.1626613, 46.9310519 ], + [ 9.1625072, 46.9310345 ], + [ 9.162458, 46.9310362 ], + [ 9.1624254, 46.9310373 ], + [ 9.1623671, 46.9310394 ], + [ 9.1622818, 46.9310484 ], + [ 9.1621965, 46.9310568 ], + [ 9.1621921, 46.9310582 ], + [ 9.1621333, 46.9310775 ], + [ 9.1621198, 46.931079 ], + [ 9.162049, 46.9310865 ], + [ 9.1619966, 46.9310795 ], + [ 9.1619548, 46.9310738 ], + [ 9.1618935, 46.9310585 ], + [ 9.1618104, 46.9310697 ], + [ 9.1617256, 46.9310942 ], + [ 9.1617027, 46.9311011 ], + [ 9.1616136, 46.9311279 ], + [ 9.1615796, 46.9311381 ], + [ 9.1614632, 46.9311759 ], + [ 9.1614174, 46.9311928 ], + [ 9.1613486, 46.9312023 ], + [ 9.161325, 46.9312055 ], + [ 9.161306, 46.931221 ], + [ 9.1612969, 46.9312285 ], + [ 9.1612782, 46.9312563 ], + [ 9.1612509, 46.9312737 ], + [ 9.1611986, 46.9312808 ], + [ 9.1611858, 46.9312855 ], + [ 9.1611825, 46.9312867 ], + [ 9.1611796, 46.9312878 ], + [ 9.1611421, 46.931301500000004 ], + [ 9.161114, 46.9313118 ], + [ 9.1610972, 46.9313189 ], + [ 9.1609716, 46.9313718 ], + [ 9.1609165, 46.9313896 ], + [ 9.1608524, 46.9313842 ], + [ 9.1607902, 46.9313731 ], + [ 9.1607408, 46.9313774 ], + [ 9.1607006, 46.9314084 ], + [ 9.1606628, 46.9314298 ], + [ 9.160652, 46.9314359 ], + [ 9.1606109, 46.9314401 ], + [ 9.1605687, 46.9314228 ], + [ 9.1605642, 46.9314209 ], + [ 9.1605545, 46.9314169 ], + [ 9.1605131, 46.9314133 ], + [ 9.160416, 46.9314253 ], + [ 9.1603899, 46.9314286 ], + [ 9.1603281, 46.9314284 ], + [ 9.1602332, 46.9314281 ], + [ 9.1601733, 46.9314269 ], + [ 9.1600114, 46.9314237 ], + [ 9.1598938, 46.9314221 ], + [ 9.1598672, 46.9314217 ], + [ 9.1598671, 46.9314217 ], + [ 9.1598649, 46.9314216 ], + [ 9.15982, 46.9314133 ], + [ 9.1597664, 46.9314034 ], + [ 9.1596888, 46.9313983 ], + [ 9.159661, 46.9313965 ], + [ 9.1595853, 46.9314112 ], + [ 9.1595432, 46.9314194 ], + [ 9.1594468, 46.9314336 ], + [ 9.1593881, 46.931438 ], + [ 9.1593181, 46.9314405 ], + [ 9.1592546, 46.9314527 ], + [ 9.1591697, 46.9314731 ], + [ 9.1591067, 46.9314719 ], + [ 9.1590471, 46.9314763 ], + [ 9.1589401, 46.9315161 ], + [ 9.158844, 46.9315401 ], + [ 9.1587181, 46.9315674 ], + [ 9.1585832, 46.9316062 ], + [ 9.1584927, 46.9316442 ], + [ 9.1584404, 46.9316853 ], + [ 9.1584021, 46.9317141 ], + [ 9.1583315, 46.93173 ], + [ 9.158202, 46.9317425 ], + [ 9.1580424, 46.9317499 ], + [ 9.1578556, 46.9317435 ], + [ 9.1577855, 46.9317414 ], + [ 9.1577371, 46.9317399 ], + [ 9.1575362, 46.9317088 ], + [ 9.1574805, 46.9316995 ], + [ 9.1574169, 46.931689 ], + [ 9.157402, 46.9316865 ], + [ 9.1573351, 46.9316796 ], + [ 9.1572758, 46.9316848 ], + [ 9.1571961, 46.9317024 ], + [ 9.1570789, 46.9317235 ], + [ 9.1570104, 46.9317331 ], + [ 9.1569697, 46.9317301 ], + [ 9.1569166, 46.9317316 ], + [ 9.1568607, 46.9317467 ], + [ 9.1567697, 46.9317688 ], + [ 9.1566763, 46.9317824 ], + [ 9.156518, 46.9318197 ], + [ 9.1563971, 46.9318537 ], + [ 9.1563893, 46.9318553 ], + [ 9.1563391, 46.931866 ], + [ 9.1562776, 46.9318669 ], + [ 9.1562308, 46.9318792 ], + [ 9.1562084, 46.9318851 ], + [ 9.1561455, 46.9319082 ], + [ 9.1560968, 46.9319175 ], + [ 9.1560207, 46.9319165 ], + [ 9.1559601, 46.9319221 ], + [ 9.1559188, 46.9319259 ], + [ 9.1558428, 46.9319291 ], + [ 9.155794, 46.9319349 ], + [ 9.155678, 46.9319587 ], + [ 9.1556223, 46.9319663 ], + [ 9.1555067, 46.931982 ], + [ 9.1554385, 46.9320013 ], + [ 9.155424, 46.9320054 ], + [ 9.1554009, 46.9320058 ], + [ 9.1553782, 46.9320061 ], + [ 9.1553371, 46.9319917 ], + [ 9.1552743, 46.9319862 ], + [ 9.1551581, 46.932003 ], + [ 9.1551387, 46.9320088 ], + [ 9.1551238, 46.9320133 ], + [ 9.1550166, 46.9320458 ], + [ 9.1549467, 46.9320815 ], + [ 9.1549243, 46.9320929 ], + [ 9.1548348, 46.9321169 ], + [ 9.1546842, 46.9321153 ], + [ 9.1546043, 46.9321091 ], + [ 9.1544075, 46.9320937 ], + [ 9.154255, 46.9320817 ], + [ 9.1541313, 46.932119900000004 ], + [ 9.1540474, 46.9321458 ], + [ 9.1538641, 46.932139 ], + [ 9.1538264, 46.9321269 ], + [ 9.1536882, 46.9320826 ], + [ 9.153557, 46.9320711 ], + [ 9.1535422, 46.9320698 ], + [ 9.1534916, 46.9320654 ], + [ 9.1534009, 46.9320574 ], + [ 9.1533359, 46.9320517 ], + [ 9.1532189, 46.9320776 ], + [ 9.1531512, 46.9320926 ], + [ 9.152939, 46.9321034 ], + [ 9.1527789, 46.9320611 ], + [ 9.1527557, 46.932055 ], + [ 9.1527167, 46.9320447 ], + [ 9.1526328, 46.9320026 ], + [ 9.1525211, 46.9319538 ], + [ 9.1522026, 46.9318714 ], + [ 9.1520672, 46.9318722 ], + [ 9.1520256, 46.931877 ], + [ 9.1519601, 46.9318661 ], + [ 9.1518625, 46.931858 ], + [ 9.1518342, 46.9318603 ], + [ 9.1517611, 46.9318661 ], + [ 9.1517513, 46.9318664 ], + [ 9.1516639, 46.9318693 ], + [ 9.1515401, 46.9318551 ], + [ 9.1514276, 46.9318425 ], + [ 9.1512511, 46.9318368 ], + [ 9.1512067, 46.9318285 ], + [ 9.1511202, 46.9318124 ], + [ 9.1509106, 46.931765 ], + [ 9.1508963, 46.9317622 ], + [ 9.1508722, 46.9317574 ], + [ 9.1507881, 46.9317408 ], + [ 9.1507831, 46.9317398 ], + [ 9.150611, 46.9317079 ], + [ 9.1504869, 46.9316865 ], + [ 9.1504367, 46.931683 ], + [ 9.1504312, 46.9316818 ], + [ 9.1503993, 46.931678 ], + [ 9.1502894, 46.9315723 ], + [ 9.1500605, 46.9314946 ], + [ 9.1500508, 46.931486 ], + [ 9.1499725, 46.9314165 ], + [ 9.1499697, 46.931321 ], + [ 9.149874, 46.9311855 ], + [ 9.1496929, 46.9310673 ], + [ 9.1496923, 46.9310449 ], + [ 9.1496915, 46.9310169 ], + [ 9.1496266, 46.9309614 ], + [ 9.1495942, 46.9309336 ], + [ 9.149555, 46.9309276 ], + [ 9.1494744, 46.9309202 ], + [ 9.1494384, 46.9309236 ], + [ 9.1493889, 46.9309191 ], + [ 9.1493371, 46.930907 ], + [ 9.1493102, 46.9308922 ], + [ 9.149244, 46.9308641 ], + [ 9.1491938, 46.9308387 ], + [ 9.1491559, 46.9308249 ], + [ 9.1491136, 46.9308075 ], + [ 9.1490778, 46.9307956 ], + [ 9.1490472, 46.9307966 ], + [ 9.1489976, 46.9308087 ], + [ 9.1489892, 46.9308092 ], + [ 9.1489421, 46.9308115 ], + [ 9.1489065, 46.9308092 ], + [ 9.148863, 46.9307955 ], + [ 9.148825, 46.9307799 ], + [ 9.1488057, 46.9307635 ], + [ 9.148789, 46.9307414 ], + [ 9.1487778, 46.9307349 ], + [ 9.1487579, 46.9307233 ], + [ 9.148743, 46.9307135 ], + [ 9.1485681, 46.9306459 ], + [ 9.1485266, 46.9306298 ], + [ 9.1485009, 46.930619899999996 ], + [ 9.1484763, 46.9305387 ], + [ 9.1484704, 46.9305194 ], + [ 9.1484702, 46.9305114 ], + [ 9.1484687, 46.9304599 ], + [ 9.148402, 46.9303744 ], + [ 9.1483101, 46.9302658 ], + [ 9.1482878, 46.9302515 ], + [ 9.1482651, 46.9302214 ], + [ 9.1483128, 46.9300939 ], + [ 9.148324, 46.9300637 ], + [ 9.1479195, 46.9297284 ], + [ 9.1478466, 46.9295808 ], + [ 9.147757, 46.9294364 ], + [ 9.1477211, 46.9294173 ], + [ 9.1476795, 46.9294341 ], + [ 9.1475412, 46.9295295 ], + [ 9.1474026, 46.9296169 ], + [ 9.1473413, 46.9297032 ], + [ 9.1469699, 46.9298275 ], + [ 9.146485, 46.9298232 ], + [ 9.1458297, 46.9298583 ], + [ 9.1441715, 46.9298277 ], + [ 9.1433653, 46.9297221 ], + [ 9.1429056, 46.9296643 ], + [ 9.1422042, 46.9298408 ], + [ 9.1419265, 46.9297896 ], + [ 9.1416246, 46.9298218 ], + [ 9.1412493, 46.9298781 ], + [ 9.1410309, 46.9299966 ], + [ 9.1406823, 46.9299547 ], + [ 9.1406262, 46.929975 ], + [ 9.1403841, 46.9299832 ], + [ 9.1399773, 46.9300008 ], + [ 9.1397327, 46.930039 ], + [ 9.1395829, 46.930089699999996 ], + [ 9.1394957, 46.9302086 ], + [ 9.139385, 46.9302194 ], + [ 9.1392873, 46.9302186 ], + [ 9.1392247, 46.9301549 ], + [ 9.1390536, 46.9301736 ], + [ 9.138914, 46.930231 ], + [ 9.1388357, 46.9303083 ], + [ 9.1387415, 46.930312 ], + [ 9.1387304, 46.930386 ], + [ 9.1387631, 46.9304616 ], + [ 9.1386925, 46.930571 ], + [ 9.1386345, 46.9306526 ], + [ 9.1385918, 46.9307939 ], + [ 9.1385618, 46.9308278 ], + [ 9.1384803, 46.9308878 ], + [ 9.1385187, 46.9309299 ], + [ 9.1385324, 46.9309643 ], + [ 9.1385038, 46.9310437 ], + [ 9.1384557, 46.9310946 ], + [ 9.1383871, 46.9311873 ], + [ 9.1383127, 46.9312812 ], + [ 9.1383041, 46.931302099999996 ], + [ 9.138279, 46.9313601 ], + [ 9.1382368, 46.9314115 ], + [ 9.1382111, 46.9314511 ], + [ 9.1380947, 46.9314943 ], + [ 9.1380178, 46.9315116 ], + [ 9.1379662, 46.9315839 ], + [ 9.1378798, 46.9316174 ], + [ 9.137797, 46.9316625 ], + [ 9.1377137, 46.9316891 ], + [ 9.1376368, 46.9317064 ], + [ 9.137589, 46.9317376 ], + [ 9.1375427, 46.9317637 ], + [ 9.1375095, 46.9317803 ], + [ 9.1374803, 46.9318153 ], + [ 9.1374557, 46.9318872 ], + [ 9.1374208, 46.9319546 ], + [ 9.1374057, 46.9320102 ], + [ 9.13736, 46.9320547 ], + [ 9.1373238, 46.9320829 ], + [ 9.1372843, 46.9321088 ], + [ 9.1372753, 46.9321436 ], + [ 9.1372704, 46.9322013 ], + [ 9.1372085, 46.9322668 ], + [ 9.13712, 46.9323442 ], + [ 9.1369759, 46.9324709 ], + [ 9.13695, 46.9325035 ], + [ 9.1368859, 46.932606 ], + [ 9.1368503, 46.9326526 ], + [ 9.1368116, 46.9327062 ], + [ 9.1367492, 46.9327556 ], + [ 9.1367103, 46.9328023 ], + [ 9.1366377, 46.9328495 ], + [ 9.1365513, 46.9328854 ], + [ 9.1364644, 46.9329051 ], + [ 9.1363609, 46.9329579 ], + [ 9.1362481, 46.9330127 ], + [ 9.1361484, 46.9330533 ], + [ 9.1360682, 46.9330707 ], + [ 9.1359879, 46.933088 ], + [ 9.1359087, 46.9331376 ], + [ 9.135792, 46.9331739 ], + [ 9.1356651, 46.9332081 ], + [ 9.1355256, 46.9332678 ], + [ 9.1354458, 46.933299 ], + [ 9.135359, 46.933321 ], + [ 9.135225, 46.9333438 ], + [ 9.1351553, 46.9333748 ], + [ 9.1350584, 46.9333993 ], + [ 9.1350183, 46.9334091 ], + [ 9.1349357, 46.9334564 ], + [ 9.1348256, 46.933488 ], + [ 9.134719, 46.9335242 ], + [ 9.1346089, 46.9335581 ], + [ 9.1344915, 46.9335714 ], + [ 9.1344209, 46.9335725 ], + [ 9.1343497, 46.9335574 ], + [ 9.1342315, 46.9335718 ], + [ 9.1341315, 46.9336056 ], + [ 9.1340044, 46.9336305 ], + [ 9.1338906, 46.9336529 ], + [ 9.1338067, 46.9336611 ], + [ 9.1337233, 46.9336854 ], + [ 9.1336076, 46.933754 ], + [ 9.1334811, 46.9337997 ], + [ 9.1332876, 46.9338533 ], + [ 9.1331442, 46.9338992 ], + [ 9.1330614, 46.933942 ], + [ 9.1329933, 46.9339722 ], + [ 9.1329611, 46.9339883 ], + [ 9.1329063, 46.934019 ], + [ 9.1328671, 46.9340579 ], + [ 9.1327827, 46.9341262 ], + [ 9.1327039, 46.9341885 ], + [ 9.1326613, 46.9342529 ], + [ 9.1325625, 46.9343212 ], + [ 9.1324368, 46.9343923 ], + [ 9.1323516, 46.9344673 ], + [ 9.1322491, 46.9345265 ], + [ 9.1321214, 46.9346414 ], + [ 9.1320385, 46.9346818 ], + [ 9.1319428, 46.9347432 ], + [ 9.1318507, 46.9347584 ], + [ 9.1317809, 46.9347859 ], + [ 9.1316598, 46.93479 ], + [ 9.1314841, 46.9347425 ], + [ 9.1314484, 46.9347862 ], + [ 9.13136, 46.9348118 ], + [ 9.1312754, 46.9347986 ], + [ 9.1312184, 46.9347798 ], + [ 9.1312543, 46.934743 ], + [ 9.1313013, 46.9347112 ], + [ 9.1312447, 46.934678 ], + [ 9.1311732, 46.9346594 ], + [ 9.1311047, 46.934623 ], + [ 9.1310228, 46.9345884 ], + [ 9.1309778, 46.9345683 ], + [ 9.1309095, 46.9345394 ], + [ 9.1308086, 46.9345409 ], + [ 9.1307179, 46.9345491 ], + [ 9.1306555, 46.9345985 ], + [ 9.1305221, 46.9346373 ], + [ 9.1304142, 46.934632 ], + [ 9.1303576, 46.9346605 ], + [ 9.1303118, 46.9346958 ], + [ 9.1302588, 46.9347242 ], + [ 9.1301742, 46.9347151 ], + [ 9.1301536, 46.9346981 ], + [ 9.1300794, 46.9346946 ], + [ 9.1299898, 46.9347351 ], + [ 9.1299503, 46.9347438 ], + [ 9.1299214, 46.9347604 ], + [ 9.1298873, 46.9347736 ], + [ 9.1298553, 46.9347994 ], + [ 9.1298221, 46.9348155 ], + [ 9.129802399999999, 46.9348296 ], + [ 9.1297807, 46.9348374 ], + [ 9.1297514, 46.9348407 ], + [ 9.1297278, 46.9348422 ], + [ 9.1297037, 46.9348512 ], + [ 9.1296905, 46.9348595 ], + [ 9.1296629, 46.9348645 ], + [ 9.1296453, 46.9348659 ], + [ 9.1296309, 46.9348632 ], + [ 9.129618, 46.9348548 ], + [ 9.1296052, 46.9348509 ], + [ 9.1296024, 46.9348418 ], + [ 9.129597, 46.9348038 ], + [ 9.1295788, 46.9347862 ], + [ 9.1295679, 46.9347621 ], + [ 9.1295539, 46.9347445 ], + [ 9.1295112, 46.9347255 ], + [ 9.1294974, 46.9347136 ], + [ 9.1294602, 46.9347107 ], + [ 9.1294298, 46.9347071 ], + [ 9.1293878, 46.93471 ], + [ 9.1293566, 46.9347076 ], + [ 9.129318, 46.934711 ], + [ 9.1293077, 46.9347054 ], + [ 9.1293055, 46.9346893 ], + [ 9.12929, 46.9346763 ], + [ 9.1292826, 46.9346568 ], + [ 9.1292546, 46.9346474 ], + [ 9.1292305, 46.934631 ], + [ 9.1292385, 46.9346194 ], + [ 9.1292261, 46.934606 ], + [ 9.129201, 46.9346044 ], + [ 9.1291953, 46.9345909 ], + [ 9.1291906, 46.9345754 ], + [ 9.1292056, 46.9345677 ], + [ 9.1292155, 46.934563 ], + [ 9.1292122, 46.9345394 ], + [ 9.1291905, 46.9345362 ], + [ 9.1291728, 46.9345111 ], + [ 9.1291458, 46.9345075 ], + [ 9.1291291, 46.9345112 ], + [ 9.129119, 46.93452 ], + [ 9.1290861, 46.9345176 ], + [ 9.1290707, 46.9345092 ], + [ 9.1290541, 46.9344904 ], + [ 9.1290269, 46.9344994 ], + [ 9.1290062, 46.9345118 ], + [ 9.1289673, 46.934532 ], + [ 9.1289292, 46.9345257 ], + [ 9.1289074, 46.9345 ], + [ 9.1288982, 46.9344889 ], + [ 9.1288663, 46.934494 ], + [ 9.1288384, 46.9344881 ], + [ 9.1288112, 46.9344539 ], + [ 9.1288105, 46.934432 ], + [ 9.1288201, 46.9344163 ], + [ 9.1288255, 46.9343983 ], + [ 9.1287952, 46.9343994 ], + [ 9.128777, 46.9343835 ], + [ 9.1287712, 46.9343605 ], + [ 9.1287664, 46.9343392 ], + [ 9.1287487, 46.9343271 ], + [ 9.1287249, 46.9343053 ], + [ 9.1287058, 46.9342877 ], + [ 9.1287215, 46.9342776 ], + [ 9.1287237, 46.9342678 ], + [ 9.1287121, 46.9342472 ], + [ 9.1286839, 46.9342332 ], + [ 9.1286588, 46.9341976 ], + [ 9.1286751, 46.9341535 ], + [ 9.128655, 46.9341319 ], + [ 9.1286108, 46.934117 ], + [ 9.1285115, 46.9341167 ], + [ 9.1284449, 46.9341408 ], + [ 9.1283582, 46.9341674 ], + [ 9.128245, 46.934206 ], + [ 9.1281531, 46.9342287 ], + [ 9.1281012, 46.9342369 ], + [ 9.1280608, 46.9342381 ], + [ 9.1280269, 46.9342299 ], + [ 9.1280235, 46.9342023 ], + [ 9.127988, 46.9341729 ], + [ 9.1279129, 46.9341394 ], + [ 9.1278815, 46.9341052 ], + [ 9.1278275, 46.9340991 ], + [ 9.1277333, 46.9341028 ], + [ 9.1276406, 46.9341526 ], + [ 9.1275538, 46.9341747 ], + [ 9.1275071, 46.9341892 ], + [ 9.1274716, 46.9342099 ], + [ 9.127426, 46.9342054 ], + [ 9.1273961, 46.9341931 ], + [ 9.1273547, 46.9341615 ], + [ 9.1273004, 46.9341461 ], + [ 9.1272991, 46.9341046 ], + [ 9.1272975, 46.9340539 ], + [ 9.1272622, 46.9340014 ], + [ 9.1272565, 46.9339277 ], + [ 9.1271355, 46.9339341 ], + [ 9.127025, 46.9339541 ], + [ 9.1268889, 46.9340161 ], + [ 9.1267823, 46.9340523 ], + [ 9.1265893, 46.9341243 ], + [ 9.1264635, 46.9341907 ], + [ 9.1264195, 46.9341736 ], + [ 9.1262129, 46.934093 ], + [ 9.1260195, 46.933939 ], + [ 9.1259081, 46.9338207 ], + [ 9.125755, 46.9336617 ], + [ 9.1256132, 46.9336499 ], + [ 9.1255867, 46.9336653 ], + [ 9.1255227, 46.9336628 ], + [ 9.1254903, 46.9336483 ], + [ 9.1254825, 46.9336149 ], + [ 9.1254669, 46.9335483 ], + [ 9.1254312, 46.9334831 ], + [ 9.1252967, 46.9334332 ], + [ 9.1252216, 46.9334009 ], + [ 9.1251431, 46.9333155 ], + [ 9.1249347, 46.9332723 ], + [ 9.1247999, 46.9332664 ], + [ 9.1247909, 46.9333023 ], + [ 9.1247385, 46.9333618 ], + [ 9.1246468, 46.9334185 ], + [ 9.1243949, 46.9334891 ], + [ 9.1243312, 46.9335004 ], + [ 9.1242797, 46.9334678 ], + [ 9.1242083, 46.9334446 ], + [ 9.1241357, 46.9334376 ], + [ 9.1241223, 46.9333859 ], + [ 9.1240256, 46.9333101 ], + [ 9.1239652, 46.9332614 ], + [ 9.1238578, 46.9332191 ], + [ 9.1238051, 46.9332026 ], + [ 9.123744, 46.9332139 ], + [ 9.1236444, 46.9331773 ], + [ 9.1234764, 46.9331879 ], + [ 9.1232914, 46.9332596 ], + [ 9.1230374, 46.9333187 ], + [ 9.1226745, 46.9333425 ], + [ 9.1223376, 46.9333361 ], + [ 9.1219897, 46.9334079 ], + [ 9.1215865, 46.9334323 ], + [ 9.1213173, 46.9334362 ], + [ 9.1210839, 46.9333879 ], + [ 9.1209172, 46.9333327 ], + [ 9.1208585, 46.9332851 ], + [ 9.1206488, 46.9331475 ], + [ 9.1205379, 46.9330477 ], + [ 9.1205135, 46.9328036 ], + [ 9.120567, 46.9325791 ], + [ 9.1206956, 46.9325044 ], + [ 9.1209502, 46.9324638 ], + [ 9.1207808, 46.9322172 ], + [ 9.1207628, 46.9320699 ], + [ 9.1207979, 46.9319033 ], + [ 9.1206323, 46.9317743 ], + [ 9.1206181, 46.931536 ], + [ 9.1206, 46.9313886 ], + [ 9.1206431, 46.9312576 ], + [ 9.1206597, 46.9311433 ], + [ 9.1206379, 46.9310916 ], + [ 9.1208082, 46.9310489 ], + [ 9.1208638, 46.930996 ], + [ 9.1209402, 46.9309097 ], + [ 9.1209296, 46.9308413 ], + [ 9.1209337, 46.9308089 ], + [ 9.1208381, 46.9307677 ], + [ 9.1207437, 46.9307091 ], + [ 9.1207055, 46.9306163 ], + [ 9.1207005, 46.9305114 ], + [ 9.1207218, 46.9303866 ], + [ 9.1207804, 46.9303223 ], + [ 9.1208351, 46.9302949 ], + [ 9.1208806, 46.9302954 ], + [ 9.1210297, 46.9302741 ], + [ 9.121073, 46.9302061 ], + [ 9.1212751, 46.9301023 ], + [ 9.1212258, 46.9299795 ], + [ 9.1211203, 46.929942 ], + [ 9.1210768, 46.9298976 ], + [ 9.1210702, 46.9298481 ], + [ 9.1209857, 46.9298378 ], + [ 9.1208609, 46.9298293 ], + [ 9.1207952, 46.9298268 ], + [ 9.1207583, 46.9297778 ], + [ 9.1207091, 46.9297128 ], + [ 9.1207093, 46.9296643 ], + [ 9.1207307, 46.9296477 ], + [ 9.1206226, 46.9295549 ], + [ 9.1205726, 46.9294898 ], + [ 9.1205316, 46.9294455 ], + [ 9.1205339, 46.9293048 ], + [ 9.120473, 46.9291858 ], + [ 9.1204876, 46.9291412 ], + [ 9.1207086, 46.9291045 ], + [ 9.1207017, 46.9290458 ], + [ 9.1207649, 46.9290218 ], + [ 9.1208251, 46.9290071 ], + [ 9.1208743, 46.928966 ], + [ 9.120939, 46.9288843 ], + [ 9.1209142, 46.9287625 ], + [ 9.1208693, 46.9285383 ], + [ 9.1208746, 46.9283864 ], + [ 9.1208739, 46.9281751 ], + [ 9.1208809, 46.9280211 ], + [ 9.1210058, 46.927927 ], + [ 9.1210788, 46.9278793 ], + [ 9.1211513, 46.9278298 ], + [ 9.1214211, 46.9276298 ], + [ 9.1216826, 46.9275807 ], + [ 9.1218071, 46.92758 ], + [ 9.1219051, 46.9275924 ], + [ 9.1219013, 46.9276317 ], + [ 9.1220047, 46.9276543 ], + [ 9.1220727, 46.9276211 ], + [ 9.1222296, 46.9275818 ], + [ 9.1223303, 46.9275181 ], + [ 9.1223389, 46.9274165 ], + [ 9.1223946, 46.9273684 ], + [ 9.1224571, 46.9273756 ], + [ 9.1224629, 46.9273455 ], + [ 9.1224352, 46.9273194 ], + [ 9.1224954, 46.9272539 ], + [ 9.1228563, 46.9271702 ], + [ 9.1230677, 46.9271463 ], + [ 9.1232759, 46.9271831 ], + [ 9.1234401, 46.9270538 ], + [ 9.1235912, 46.9267454 ], + [ 9.1236289, 46.9265535 ], + [ 9.1236511, 46.9264009 ], + [ 9.1238084, 46.9263732 ], + [ 9.1238469, 46.9263127 ], + [ 9.1237477, 46.9262634 ], + [ 9.1238512, 46.9262342 ], + [ 9.1245195, 46.9260509 ], + [ 9.1245597, 46.9259373 ], + [ 9.1247076, 46.9258707 ], + [ 9.1247334, 46.9257871 ], + [ 9.1246571, 46.9257144 ], + [ 9.1247167, 46.9255752 ], + [ 9.1247811, 46.925482 ], + [ 9.1249338, 46.9254614 ], + [ 9.1250777, 46.9254363 ], + [ 9.125124, 46.9254079 ], + [ 9.1250893, 46.9252677 ], + [ 9.1252551, 46.9251869 ], + [ 9.1254282, 46.9251267 ], + [ 9.1255145, 46.9249801 ], + [ 9.1256046, 46.9248474 ], + [ 9.1257353, 46.9247209 ], + [ 9.1259448, 46.9245333 ], + [ 9.1261019, 46.9243903 ], + [ 9.1262263, 46.9242778 ], + [ 9.126364, 46.9241604 ], + [ 9.1264623, 46.924076 ], + [ 9.126627299999999, 46.9239721 ], + [ 9.1268266, 46.9238861 ], + [ 9.1270259, 46.9238002 ], + [ 9.1272449, 46.9237001 ], + [ 9.1273435, 46.9236248 ], + [ 9.1273956, 46.9235687 ], + [ 9.1275151, 46.9235162 ], + [ 9.1276752, 46.9234677 ], + [ 9.1277809, 46.9234062 ], + [ 9.1278728, 46.923331 ], + [ 9.1279627, 46.9231913 ], + [ 9.128032900000001, 46.9230704 ], + [ 9.1281241, 46.9229722 ], + [ 9.1282629, 46.9228917 ], + [ 9.1283883, 46.9228115 ], + [ 9.1285601, 46.9227074 ], + [ 9.1286906, 46.9225764 ], + [ 9.1287942, 46.9224457 ], + [ 9.1288747, 46.922328 ], + [ 9.1286833, 46.9221302 ], + [ 9.1285144, 46.9217891 ], + [ 9.1285147, 46.9215441 ], + [ 9.1285602, 46.9209068 ], + [ 9.1285071, 46.9205141 ], + [ 9.1285075, 46.9200959 ], + [ 9.1286052, 46.9191775 ], + [ 9.1289868, 46.9177964 ], + [ 9.129211, 46.9165152 ], + [ 9.1292964, 46.9159981 ], + [ 9.129272, 46.9159785 ], + [ 9.1289346, 46.9157061 ], + [ 9.1285937, 46.9153352 ], + [ 9.128103, 46.9146657 ], + [ 9.1280226, 46.9146948 ], + [ 9.1279782, 46.9147171 ], + [ 9.1279008, 46.9147693 ], + [ 9.1278389, 46.914812 ], + [ 9.1277723, 46.9148486 ], + [ 9.1277077, 46.9148758 ], + [ 9.1276206, 46.9149065 ], + [ 9.1275085, 46.9149345 ], + [ 9.127401, 46.9149608 ], + [ 9.1271472, 46.9150048 ], + [ 9.1269989, 46.9150286 ], + [ 9.1269518, 46.9150386 ], + [ 9.1269053, 46.9150672 ], + [ 9.1267167, 46.9151736 ], + [ 9.1266568, 46.9152085 ], + [ 9.1266055, 46.9152279 ], + [ 9.1265426, 46.9152412 ], + [ 9.1262708, 46.9152854 ], + [ 9.1261181, 46.915314 ], + [ 9.1259906, 46.9153499 ], + [ 9.1259031, 46.9153682 ], + [ 9.1258246, 46.9153848 ], + [ 9.1257709, 46.9154026 ], + [ 9.1257244, 46.9154327 ], + [ 9.1256802, 46.9154612 ], + [ 9.1255662, 46.9154985 ], + [ 9.1254432, 46.915539 ], + [ 9.1253311, 46.9155638 ], + [ 9.1252233, 46.9155825 ], + [ 9.1251219, 46.9155901 ], + [ 9.1249911, 46.9155952 ], + [ 9.1248612, 46.9156002 ], + [ 9.1247279, 46.9155784 ], + [ 9.1246009, 46.9155586 ], + [ 9.1244826, 46.9155325 ], + [ 9.1243872, 46.9155138 ], + [ 9.1242651, 46.9155079 ], + [ 9.1240979, 46.9155057 ], + [ 9.1240168, 46.9155116 ], + [ 9.123976, 46.9155091 ], + [ 9.1239687, 46.9155042 ], + [ 9.1239484, 46.9154909 ], + [ 9.1239447, 46.9154739 ], + [ 9.1239378, 46.9154415 ], + [ 9.1238983, 46.9154065 ], + [ 9.1238222, 46.9153566 ], + [ 9.123781, 46.9153371 ], + [ 9.1236996, 46.9153352 ], + [ 9.123605, 46.9153373 ], + [ 9.1235484, 46.9152903 ], + [ 9.1235766, 46.9152453 ], + [ 9.1235792, 46.915241 ], + [ 9.1236143, 46.915208 ], + [ 9.1237171, 46.9151724 ], + [ 9.1237656, 46.9151361 ], + [ 9.1237928, 46.9150646 ], + [ 9.1238615, 46.9149522 ], + [ 9.1238979, 46.9148882 ], + [ 9.1239594, 46.9148331 ], + [ 9.1241833, 46.9146998 ], + [ 9.1242518, 46.9146524 ], + [ 9.1243164, 46.914554 ], + [ 9.1243367, 46.9144794 ], + [ 9.1243744, 46.914386 ], + [ 9.1244142, 46.9142879 ], + [ 9.1244137, 46.9141982 ], + [ 9.124414699999999, 46.9140852 ], + [ 9.1244327, 46.9140138 ], + [ 9.1244605, 46.9139623 ], + [ 9.1245039, 46.9139075 ], + [ 9.1245201, 46.9138485 ], + [ 9.1245049, 46.9137234 ], + [ 9.124516, 46.9136458 ], + [ 9.124547, 46.9136001 ], + [ 9.1245697, 46.9135651 ], + [ 9.1245961, 46.9135021 ], + [ 9.1246285, 46.9134266 ], + [ 9.12464, 46.9133817 ], + [ 9.1246555, 46.9133404 ], + [ 9.1246951, 46.913287 ], + [ 9.1247568, 46.9132395 ], + [ 9.1247891, 46.9132015 ], + [ 9.1248133, 46.9131493 ], + [ 9.1248403, 46.9130708 ], + [ 9.1248561, 46.9129922 ], + [ 9.1248837, 46.9129266 ], + [ 9.1248942, 46.9128889 ], + [ 9.1249137, 46.9128576 ], + [ 9.1249139, 46.912857 ], + [ 9.124914, 46.9128571 ], + [ 9.1249408, 46.912814 ], + [ 9.1249656, 46.9127394 ], + [ 9.1249853, 46.9126667 ], + [ 9.1249855, 46.912631 ], + [ 9.1250721, 46.9125143 ], + [ 9.1251112, 46.9124642 ], + [ 9.1251873, 46.912299 ], + [ 9.1252826, 46.912098 ], + [ 9.1253645, 46.9119746 ], + [ 9.1253604, 46.9119127 ], + [ 9.1253722, 46.9118599 ], + [ 9.125364, 46.9117409 ], + [ 9.1253732, 46.9117256 ], + [ 9.1254154, 46.9116458 ], + [ 9.125466, 46.9115731 ], + [ 9.1255203, 46.9115346 ], + [ 9.1255457, 46.9114264 ], + [ 9.1255384, 46.9113857 ], + [ 9.1255571, 46.9113717 ], + [ 9.1256503, 46.9113349 ], + [ 9.1256687, 46.9113113 ], + [ 9.1256991, 46.9112881 ], + [ 9.1257148, 46.9112333 ], + [ 9.1257382, 46.9112024 ], + [ 9.1257963, 46.9111446 ], + [ 9.1259078, 46.9110103 ], + [ 9.1259299, 46.9109705 ], + [ 9.125939, 46.9109394 ], + [ 9.1259115, 46.9109176 ], + [ 9.1258866, 46.9108934 ], + [ 9.1258519, 46.9108316 ], + [ 9.1258353, 46.9108039 ], + [ 9.1258191, 46.9107769 ], + [ 9.125818, 46.9107386 ], + [ 9.1258188, 46.9107364 ], + [ 9.1258275, 46.9107109 ], + [ 9.1255973, 46.910676 ], + [ 9.1251371, 46.9107066 ], + [ 9.1247667, 46.9107209 ], + [ 9.1244306, 46.9107073 ], + [ 9.1241025, 46.9106599 ], + [ 9.1237492, 46.9106462 ], + [ 9.1234865, 46.9106669 ], + [ 9.123273, 46.9106371 ], + [ 9.1230518, 46.9105961 ], + [ 9.1227413, 46.9104812 ], + [ 9.1224548, 46.9104228 ], + [ 9.1221748, 46.9104715 ], + [ 9.1217955, 46.9105422 ], + [ 9.1214165, 46.9106241 ], + [ 9.1209146, 46.9106883 ], + [ 9.1204204, 46.9107581 ], + [ 9.1200838, 46.9107557 ], + [ 9.1198761, 46.910884 ], + [ 9.1196848, 46.9110124 ], + [ 9.119403, 46.9111852 ], + [ 9.1191047, 46.9113523 ], + [ 9.1188724, 46.9114579 ], + [ 9.118502, 46.911551 ], + [ 9.1181391, 46.9115992 ], + [ 9.1178764, 46.91162 ], + [ 9.1176296, 46.9116521 ], + [ 9.1172672, 46.9116891 ], + [ 9.1170929, 46.9117837 ], + [ 9.1167707, 46.9118998 ], + [ 9.1164646, 46.9120555 ], + [ 9.1162154, 46.9121947 ], + [ 9.1160814, 46.9123461 ], + [ 9.1159484, 46.9124749 ], + [ 9.1158481, 46.9125475 ], + [ 9.1156997, 46.9125803 ], + [ 9.1155596, 46.9126131 ], + [ 9.1153374, 46.9126453 ], + [ 9.1149911, 46.9127218 ], + [ 9.1145793, 46.912781 ], + [ 9.114143, 46.91284 ], + [ 9.113796, 46.9129502 ], + [ 9.1134167, 46.9130491 ], + [ 9.1130704, 46.9131031 ], + [ 9.1126835, 46.9131679 ], + [ 9.1124526, 46.9132396 ], + [ 9.1121792, 46.9133673 ], + [ 9.1119142, 46.9134727 ], + [ 9.1116912, 46.9135838 ], + [ 9.1113851, 46.9136888 ], + [ 9.1111287, 46.9137829 ], + [ 9.1108653, 46.9138374 ], + [ 9.1104947, 46.9138743 ], + [ 9.1102566, 46.913895 ], + [ 9.1099855, 46.9138875 ], + [ 9.1096889, 46.9139023 ], + [ 9.1094829, 46.9139799 ], + [ 9.1092756, 46.9140685 ], + [ 9.1088131, 46.9142119 ], + [ 9.1084425, 46.9142769 ], + [ 9.1081296, 46.9143198 ], + [ 9.1077914, 46.9143963 ], + [ 9.1074546, 46.9144108 ], + [ 9.1069371, 46.9143958 ], + [ 9.106224, 46.9143175 ], + [ 9.105305, 46.914215 ], + [ 9.1043981, 46.9109263 ], + [ 9.1018575, 46.9105528 ], + [ 9.0940843, 46.9126566 ], + [ 9.0939193, 46.9126553 ], + [ 9.0938137, 46.9126094 ], + [ 9.0937498, 46.9125075 ], + [ 9.0936859, 46.9123774 ], + [ 9.0936381, 46.9122924 ], + [ 9.0935837, 46.9121228 ], + [ 9.0935038, 46.911953 ], + [ 9.0933902, 46.911862 ], + [ 9.0932188, 46.9118382 ], + [ 9.0929815, 46.9117801 ], + [ 9.0928095, 46.9117111 ], + [ 9.0926563, 46.9115577 ], + [ 9.0924131, 46.911336 ], + [ 9.0921381, 46.9110916 ], + [ 9.0805577, 46.9138152 ], + [ 9.0804021, 46.9138253 ], + [ 9.0802549, 46.9137622 ], + [ 9.080085, 46.9136256 ], + [ 9.0798498, 46.9134209 ], + [ 9.0797301, 46.9132113 ], + [ 9.079585, 46.9130805 ], + [ 9.0794301, 46.9130061 ], + [ 9.0793068, 46.9129713 ], + [ 9.0791183, 46.9129529 ], + [ 9.0788482, 46.9129228 ], + [ 9.0786182, 46.9129154 ], + [ 9.0783894, 46.9128405 ], + [ 9.0782759, 46.9127494 ], + [ 9.0780407, 46.9125447 ], + [ 9.0779208, 46.9123802 ], + [ 9.0777586, 46.9122549 ], + [ 9.0775736, 46.912028 ], + [ 9.0773389, 46.9117838 ], + [ 9.0772769, 46.9115803 ], + [ 9.0770145, 46.9115615 ], + [ 9.0766794, 46.9114688 ], + [ 9.0763785, 46.9112634 ], + [ 9.0760274, 46.9111313 ], + [ 9.0754729, 46.9108959 ], + [ 9.0753185, 46.9107819 ], + [ 9.0751808, 46.9106795 ], + [ 9.0749943, 46.910537 ], + [ 9.0747508, 46.9103829 ], + [ 9.0744739, 46.9102344 ], + [ 9.0741892, 46.9100742 ], + [ 9.074018, 46.9099771 ], + [ 9.074011, 46.9099095 ], + [ 9.0741115, 46.9098143 ], + [ 9.0741951, 46.9097303 ], + [ 9.0743039, 46.9095845 ], + [ 9.074307, 46.9094153 ], + [ 9.0741456, 46.9092337 ], + [ 9.0732085, 46.9082906 ], + [ 9.0730233, 46.9081088 ], + [ 9.0729683, 46.9079448 ], + [ 9.0729379, 46.9078092 ], + [ 9.0730963, 46.9076751 ], + [ 9.0728546, 46.9073913 ], + [ 9.0726274, 46.9072318 ], + [ 9.0723923, 46.9070269 ], + [ 9.0720935, 46.9067541 ], + [ 9.0717303, 46.9063567 ], + [ 9.0716507, 46.9062206 ], + [ 9.071512, 46.9061406 ], + [ 9.0712994, 46.9060826 ], + [ 9.0710552, 46.905985 ], + [ 9.0708351, 46.9058705 ], + [ 9.0706239, 46.9057224 ], + [ 9.0703883, 46.905557 ], + [ 9.0703011, 46.9053872 ], + [ 9.07032, 46.905252 ], + [ 9.0701168, 46.9051265 ], + [ 9.0699632, 46.9049843 ], + [ 9.0699, 46.9048484 ], + [ 9.0698606, 46.9047129 ], + [ 9.0697478, 46.9045936 ], + [ 9.069586, 46.9044795 ], + [ 9.069514, 46.9043494 ], + [ 9.0694096, 46.9042076 ], + [ 9.069141, 46.9040364 ], + [ 9.0688236, 46.9038762 ], + [ 9.0684155, 46.9037321 ], + [ 9.0680152, 46.9035994 ], + [ 9.0675908, 46.9034553 ], + [ 9.0671832, 46.9032717 ], + [ 9.0667995, 46.9031166 ], + [ 9.0663193, 46.9028649 ], + [ 9.0659055, 46.9025854 ], + [ 9.0658769, 46.9023428 ], + [ 9.0658396, 46.9020887 ], + [ 9.0658359, 46.9018292 ], + [ 9.0658645, 46.9016095 ], + [ 9.0659427, 46.9013732 ], + [ 9.0660131, 46.9010974 ], + [ 9.0661247, 46.9008276 ], + [ 9.0662187, 46.9005971 ], + [ 9.0663713, 46.9003275 ], + [ 9.0665972, 46.9000642 ], + [ 9.0669817, 46.8996779 ], + [ 9.0670337, 46.8995261 ], + [ 9.0670866, 46.8993234 ], + [ 9.0671834, 46.8989689 ], + [ 9.0672778, 46.898727 ], + [ 9.0673559, 46.8984626 ], + [ 9.0673848, 46.8981978 ], + [ 9.0674559, 46.8979163 ], + [ 9.0675153, 46.8977927 ], + [ 9.0676582, 46.8976076 ], + [ 9.0677357, 46.8974052 ], + [ 9.0679617, 46.8971475 ], + [ 9.0681871, 46.8969236 ], + [ 9.0683216, 46.8967612 ], + [ 9.0683575, 46.896564 ], + [ 9.0683632, 46.8962652 ], + [ 9.0683425, 46.8960169 ], + [ 9.0683049, 46.8958022 ], + [ 9.0684551, 46.8956962 ], + [ 9.0686625, 46.8955569 ], + [ 9.0689433, 46.8954574 ], + [ 9.0691833, 46.8953633 ], + [ 9.0692511, 46.8952454 ], + [ 9.069287, 46.8950765 ], + [ 9.0692079, 46.8948504 ], + [ 9.0691532, 46.8946977 ], + [ 9.0691888, 46.8945456 ], + [ 9.0693051, 46.8944564 ], + [ 9.069382, 46.8942877 ], + [ 9.0693816, 46.8938422 ], + [ 9.0694207, 46.8934816 ], + [ 9.0695046, 46.8933525 ], + [ 9.0696792, 46.8932692 ], + [ 9.0698039, 46.8931348 ], + [ 9.0694465, 46.8924667 ], + [ 9.0693101, 46.89224 ], + [ 9.0692065, 46.8920982 ], + [ 9.0691349, 46.8919286 ], + [ 9.0691382, 46.891765 ], + [ 9.0691497, 46.8915509 ], + [ 9.0690294, 46.8913695 ], + [ 9.0688526, 46.8911652 ], + [ 9.0687979, 46.8910124 ], + [ 9.0688174, 46.8908435 ], + [ 9.0687448, 46.8907471 ], + [ 9.0686399, 46.8906447 ], + [ 9.0685925, 46.8905146 ], + [ 9.068538, 46.8903394 ], + [ 9.0684177, 46.8901863 ], + [ 9.0683963, 46.8899944 ], + [ 9.0683995, 46.8898026 ], + [ 9.0684022, 46.889673 ], + [ 9.0683297, 46.8895822 ], + [ 9.0681829, 46.8895022 ], + [ 9.067947, 46.8893764 ], + [ 9.0675397, 46.8891984 ], + [ 9.0672545, 46.8890723 ], + [ 9.0670932, 46.8888906 ], + [ 9.0669893, 46.8887376 ], + [ 9.0669501, 46.8886075 ], + [ 9.0669524, 46.8884947 ], + [ 9.0669292, 46.8883761 ], + [ 9.0668487, 46.888291 ], + [ 9.0667183, 46.8882393 ], + [ 9.0665793, 46.8881988 ], + [ 9.0664495, 46.8881357 ], + [ 9.0663197, 46.888022 ], + [ 9.066281, 46.8878807 ], + [ 9.0662429, 46.8877337 ], + [ 9.0661455, 46.8876315 ], + [ 9.0659819, 46.8875908 ], + [ 9.0657784, 46.8874821 ], + [ 9.0654952, 46.8872827 ], + [ 9.0652442, 46.8870664 ], + [ 9.0650182, 46.8868336 ], + [ 9.0647103, 46.8865775 ], + [ 9.0647366, 46.8864705 ], + [ 9.0648626, 46.8863248 ], + [ 9.06499, 46.8860889 ], + [ 9.0651608, 46.885718 ], + [ 9.0650549, 46.8856326 ], + [ 9.0649506, 46.8855191 ], + [ 9.0648308, 46.8853264 ], + [ 9.0647369, 46.8850438 ], + [ 9.0647409, 46.8847957 ], + [ 9.0648431, 46.8845934 ], + [ 9.0649375, 46.8843516 ], + [ 9.0651291, 46.8841782 ], + [ 9.0653284, 46.8840444 ], + [ 9.0654134, 46.8838984 ], + [ 9.0654165, 46.8837011 ], + [ 9.0653131, 46.8835367 ], + [ 9.065103, 46.8833152 ], + [ 9.06491, 46.8830882 ], + [ 9.0647561, 46.882963 ], + [ 9.0647508, 46.8828163 ], + [ 9.0647361, 46.8826809 ], + [ 9.0646227, 46.882618 ], + [ 9.0645507, 46.8825159 ], + [ 9.0645867, 46.8823245 ], + [ 9.0646065, 46.882138499999996 ], + [ 9.064552, 46.8819633 ], + [ 9.0645048, 46.8818388 ], + [ 9.0645413, 46.8816079 ], + [ 9.0646456, 46.8812873 ], + [ 9.0647412, 46.8809778 ], + [ 9.0648865, 46.8806292 ], + [ 9.0650311, 46.8803371 ], + [ 9.0654986, 46.8799063 ], + [ 9.0655496, 46.8798277 ], + [ 9.0655512, 46.8797206 ], + [ 9.0654729, 46.8794889 ], + [ 9.0653712, 46.8792173 ], + [ 9.0652842, 46.879025 ], + [ 9.0653121, 46.8788335 ], + [ 9.0653303, 46.8787039 ], + [ 9.0653098, 46.8784613 ], + [ 9.0652643, 46.8782297 ], + [ 9.0651786, 46.8779979 ], + [ 9.0651262, 46.877676 ], + [ 9.0651872, 46.877496 ], + [ 9.0651726, 46.8773944 ], + [ 9.065068, 46.8772414 ], + [ 9.0649813, 46.8770321 ], + [ 9.0649209, 46.8767158 ], + [ 9.0648457, 46.876343 ], + [ 9.0647336, 46.8761617 ], + [ 9.0645954, 46.876093 ], + [ 9.06449, 46.8760246 ], + [ 9.0644662, 46.875968 ], + [ 9.0644598, 46.8758665 ], + [ 9.0644714, 46.8756804 ], + [ 9.0645412, 46.8751686 ], + [ 9.0638196, 46.8748402 ], + [ 9.0613264, 46.8739578 ], + [ 9.0600507, 46.8729862 ], + [ 9.0592422, 46.8722779 ], + [ 9.0578044, 46.8711466 ], + [ 9.0574585, 46.8705487 ], + [ 9.0572488, 46.8701198 ], + [ 9.0571407, 46.8700134 ], + [ 9.0568743, 46.8698822 ], + [ 9.0565181, 46.8698153 ], + [ 9.0557874, 46.8695107 ], + [ 9.0553854, 46.8692285 ], + [ 9.0550735, 46.868891 ], + [ 9.0549076, 46.8686054 ], + [ 9.0547055, 46.8684283 ], + [ 9.053978, 46.8682317 ], + [ 9.0526613, 46.8680703 ], + [ 9.0520238, 46.8678094 ], + [ 9.0515306, 46.8675464 ], + [ 9.0506756, 46.8674685 ], + [ 9.0503084, 46.8674737 ], + [ 9.0483682, 46.8670781 ], + [ 9.0479699, 46.8669218 ], + [ 9.0473691, 46.8665704 ], + [ 9.0469645, 46.8661982 ], + [ 9.046563, 46.8659339 ], + [ 9.0461905, 46.8657592 ], + [ 9.0457267, 46.8656038 ], + [ 9.0452945, 46.865187 ], + [ 9.0451886, 46.8649625 ], + [ 9.044437, 46.8660144 ], + [ 9.0443703, 46.866059 ], + [ 9.0442544, 46.8661033 ], + [ 9.0440563, 46.8661694 ], + [ 9.0437842, 46.8662575 ], + [ 9.0434217, 46.8663337 ], + [ 9.0431658, 46.8663882 ], + [ 9.0428782, 46.8664198 ], + [ 9.0426646, 46.866435 ], + [ 9.042523599999999, 46.8665185 ], + [ 9.042333, 46.8666128 ], + [ 9.0421844, 46.8666626 ], + [ 9.0420369, 46.866667 ], + [ 9.0419134, 46.8666491 ], + [ 9.0405047, 46.8674166 ], + [ 9.0402656, 46.8674823 ], + [ 9.0400433, 46.8675314 ], + [ 9.0398379, 46.8675466 ], + [ 9.039558, 46.867589699999996 ], + [ 9.0393428, 46.8676613 ], + [ 9.0390952, 46.867744 ], + [ 9.0388717, 46.8678381 ], + [ 9.0386151, 46.8679771 ], + [ 9.0384897, 46.8681172 ], + [ 9.0383481, 46.8682063 ], + [ 9.0382478, 46.8683352 ], + [ 9.0381801, 46.8684305 ], + [ 9.0380711, 46.8685425 ], + [ 9.0379547, 46.8686261 ], + [ 9.0378132, 46.8687774 ], + [ 9.0375039, 46.8690738 ], + [ 9.0372968, 46.8691962 ], + [ 9.0370069, 46.8693463 ], + [ 9.0366754, 46.8695017 ], + [ 9.0364017, 46.8696461 ], + [ 9.0361534, 46.8697626 ], + [ 9.0360531, 46.8698916 ], + [ 9.0359602, 46.8700205 ], + [ 9.0358022, 46.8701378 ], + [ 9.0356607, 46.8702325 ], + [ 9.0354957, 46.8703102 ], + [ 9.0352976, 46.8703763 ], + [ 9.0351151, 46.8704426 ], + [ 9.034892, 46.8705254 ], + [ 9.0347018, 46.8706086 ], + [ 9.034496, 46.8706633 ], + [ 9.0342575, 46.8706953 ], + [ 9.0340261, 46.8707725 ], + [ 9.0336225, 46.8708483 ], + [ 9.0332197, 46.8708677 ], + [ 9.0325714, 46.8708795 ], + [ 9.0323326, 46.871842 ], + [ 9.0322413, 46.8718865 ], + [ 9.0320742, 46.8720318 ], + [ 9.0319641, 46.872217 ], + [ 9.0318644, 46.8723121 ], + [ 9.0317958, 46.8724582 ], + [ 9.0317279, 46.8726043 ], + [ 9.0316674, 46.872773 ], + [ 9.0315403, 46.8729694 ], + [ 9.0314154, 46.8730981 ], + [ 9.0312644, 46.8732605 ], + [ 9.0312302, 46.8733504 ], + [ 9.0312021, 46.8735363 ], + [ 9.0311248, 46.87375 ], + [ 9.0309976, 46.8739689 ], + [ 9.0308548, 46.8741313 ], + [ 9.0305972, 46.8743212 ], + [ 9.0304558, 46.8744215 ], + [ 9.0302981, 46.8745217 ], + [ 9.0300819, 46.8746442 ], + [ 9.0298499, 46.8747834 ], + [ 9.0297736, 46.8748955 ], + [ 9.0296889, 46.8750527 ], + [ 9.0296289, 46.8751877 ], + [ 9.0294697, 46.8753781 ], + [ 9.0293441, 46.8755407 ], + [ 9.0291436, 46.8757196 ], + [ 9.0289435, 46.8758872 ], + [ 9.028827, 46.8759653 ], + [ 9.028784, 46.8760946 ], + [ 9.028698, 46.8762914 ], + [ 9.0285886, 46.8764484 ], + [ 9.0284296, 46.8766164 ], + [ 9.0282717, 46.8767392 ], + [ 9.0280391, 46.8768615 ], + [ 9.0277747, 46.876989 ], + [ 9.0274608, 46.8770769 ], + [ 9.02718, 46.8771761 ], + [ 9.0269074, 46.8772754 ], + [ 9.0266505, 46.8773807 ], + [ 9.026427, 46.877503 ], + [ 9.0264001, 46.8776211 ], + [ 9.0264209, 46.8778525 ], + [ 9.0264733, 46.8781011 ], + [ 9.0264925, 46.8784171 ], + [ 9.0264613, 46.8787777 ], + [ 9.0264132, 46.8791777 ], + [ 9.0262815, 46.8796616 ], + [ 9.0262289, 46.879853 ], + [ 9.026323, 46.8800963 ], + [ 9.0264104, 46.8802491 ], + [ 9.0265389, 46.8804081 ], + [ 9.0266346, 46.880595 ], + [ 9.0265741, 46.8807412 ], + [ 9.0265542, 46.880927 ], + [ 9.0265672, 46.8811471 ], + [ 9.0266111, 46.8814125 ], + [ 9.0266964, 46.8816895 ], + [ 9.0267987, 46.8819609 ], + [ 9.0268122, 46.8821133 ], + [ 9.0268103, 46.8822148 ], + [ 9.0268972, 46.8824354 ], + [ 9.0270152, 46.8826846 ], + [ 9.0271343, 46.8829111 ], + [ 9.027116, 46.8830406 ], + [ 9.0271206, 46.8832268 ], + [ 9.0270973, 46.8836044 ], + [ 9.0270668, 46.8839594 ], + [ 9.0272016, 46.88422 ], + [ 9.0273619, 46.8844524 ], + [ 9.0276606, 46.8847084 ], + [ 9.0286168, 46.8854547 ], + [ 9.0288763, 46.885631599999996 ], + [ 9.0290286, 46.8858189 ], + [ 9.0290426, 46.8859599 ], + [ 9.0289982, 46.8861513 ], + [ 9.0289778, 46.8863486 ], + [ 9.0289502, 46.8865233 ], + [ 9.0290626, 46.8866651 ], + [ 9.0291666, 46.886852 ], + [ 9.0292539, 46.8870049 ], + [ 9.0293334, 46.8871409 ], + [ 9.0294119, 46.8873558 ], + [ 9.0294504, 46.8874915 ], + [ 9.0295043, 46.8877062 ], + [ 9.0295243, 46.8879375 ], + [ 9.029496, 46.8881743 ], + [ 9.0294265, 46.8883484 ], + [ 9.0293342, 46.8885 ], + [ 9.0292247, 46.8886232 ], + [ 9.0291, 46.8887351 ], + [ 9.0289163, 46.8889028 ], + [ 9.0287077, 46.8890591 ], + [ 9.0285407, 46.88921 ], + [ 9.028382, 46.8893611 ], + [ 9.0283222, 46.8895297 ], + [ 9.028285, 46.8897438 ], + [ 9.0282411, 46.8899239 ], + [ 9.0281309, 46.8901091 ], + [ 9.0280627, 46.890244 ], + [ 9.0279274, 46.8904403 ], + [ 9.0278667, 46.8906315 ], + [ 9.0278134, 46.8908848 ], + [ 9.0278082, 46.891178 ], + [ 9.0277699, 46.8914653 ], + [ 9.0278052, 46.8917702 ], + [ 9.0277405, 46.8921927 ], + [ 9.0284693, 46.8923168 ], + [ 9.0287314, 46.8923583 ], + [ 9.0290115, 46.8923153 ], + [ 9.0293734, 46.8922674 ], + [ 9.0299077, 46.8922209 ], + [ 9.03027, 46.8921842 ], + [ 9.0306155, 46.8921361 ], + [ 9.0308953, 46.8921102 ], + [ 9.0311163, 46.8921514 ], + [ 9.0313448, 46.892249 ], + [ 9.0316305, 46.8923415 ], + [ 9.0318756, 46.8924168 ], + [ 9.0321116, 46.89252 ], + [ 9.0322413, 46.8926057 ], + [ 9.0323878, 46.8926801 ], + [ 9.0325344, 46.8927828 ], + [ 9.0326805, 46.8928685 ], + [ 9.0328511, 46.8929488 ], + [ 9.0330885, 46.8930183 ], + [ 9.0332269, 46.8930927 ], + [ 9.0334535, 46.8932636 ], + [ 9.0337547, 46.893407 ], + [ 9.0340151, 46.8935612 ], + [ 9.0343159, 46.893744 ], + [ 9.0348285, 46.8940187 ], + [ 9.0350071, 46.8941217 ], + [ 9.0351461, 46.8941622 ], + [ 9.0353093, 46.8942142 ], + [ 9.0354806, 46.8942663 ], + [ 9.0356767, 46.8943242 ], + [ 9.0359216, 46.8943937 ], + [ 9.0360853, 46.8944346 ], + [ 9.0362574, 46.8944585 ], + [ 9.0364534, 46.8945388 ], + [ 9.0366656, 46.8946139 ], + [ 9.0368371, 46.8946715 ], + [ 9.037049, 46.8947352 ], + [ 9.0373356, 46.8947995 ], + [ 9.0376136, 46.8948524 ], + [ 9.0378023, 46.8948821 ], + [ 9.0380562, 46.8948953 ], + [ 9.0382041, 46.8949304 ], + [ 9.0383589, 46.8949767 ], + [ 9.0385141, 46.8950116 ], + [ 9.0387357, 46.8950416 ], + [ 9.0390225, 46.8950889 ], + [ 9.0393257, 46.8951307 ], + [ 9.0395051, 46.8951773 ], + [ 9.0396759, 46.8952688 ], + [ 9.0398962, 46.8953664 ], + [ 9.0400592, 46.8954409 ], + [ 9.0401806, 46.8955208 ], + [ 9.0403019, 46.8956289 ], + [ 9.040457, 46.8957146 ], + [ 9.0405705, 46.8957776 ], + [ 9.0407671, 46.895796 ], + [ 9.0409306, 46.8958593 ], + [ 9.0409874, 46.8958936 ], + [ 9.0410691, 46.8959112 ], + [ 9.0412006, 46.8959178 ], + [ 9.0412907, 46.8959128 ], + [ 9.0413894, 46.8958967 ], + [ 9.041456, 46.8958747 ], + [ 9.0415053, 46.895875 ], + [ 9.0415711, 46.8958812 ], + [ 9.041644, 46.8959044 ], + [ 9.041718, 46.8959105 ], + [ 9.0417834, 46.8959054 ], + [ 9.0418909, 46.895878 ], + [ 9.0419578, 46.8958109 ], + [ 9.0420658, 46.8957722 ], + [ 9.0421634, 46.8958012 ], + [ 9.0422363, 46.8958525 ], + [ 9.0423173, 46.8959264 ], + [ 9.0423732, 46.8960397 ], + [ 9.042362, 46.8961862 ], + [ 9.0423265, 46.8963438 ], + [ 9.0422668, 46.8964618 ], + [ 9.0421824, 46.8966021 ], + [ 9.0421723, 46.8967035 ], + [ 9.04208, 46.896827 ], + [ 9.0419468, 46.8969274 ], + [ 9.0417801, 46.8970333 ], + [ 9.0417609, 46.8971854 ], + [ 9.0416773, 46.8972694 ], + [ 9.0415939, 46.8973363 ], + [ 9.0415027, 46.8974145 ], + [ 9.0414524, 46.8974875 ], + [ 9.041442, 46.8976059 ], + [ 9.0414394, 46.897713 ], + [ 9.0414041, 46.8978763 ], + [ 9.0413285, 46.8979547 ], + [ 9.0412121, 46.8980383 ], + [ 9.0410702, 46.8981782 ], + [ 9.0410276, 46.8982907 ], + [ 9.0410241, 46.8984486 ], + [ 9.041014, 46.8985499 ], + [ 9.0409714, 46.8986625 ], + [ 9.0409197, 46.8987974 ], + [ 9.0409425, 46.8989047 ], + [ 9.0410221, 46.8990406 ], + [ 9.0410697, 46.8991257 ], + [ 9.0411171, 46.8992558 ], + [ 9.041139, 46.8994138 ], + [ 9.0411179, 46.8996674 ], + [ 9.041041, 46.8998416 ], + [ 9.0408256, 46.8999358 ], + [ 9.0407596, 46.8999523 ], + [ 9.0406919, 46.9000476 ], + [ 9.0406498, 46.9001488 ], + [ 9.0406388, 46.9003009 ], + [ 9.0406525, 46.9004589 ], + [ 9.0407061, 46.9006624 ], + [ 9.0408103, 46.9007986 ], + [ 9.0408737, 46.9009456 ], + [ 9.0409619, 46.9010705 ], + [ 9.0409599, 46.9011662 ], + [ 9.0409185, 46.9012111 ], + [ 9.0408748, 46.9013405 ], + [ 9.0409062, 46.9014308 ], + [ 9.0410606, 46.9015167 ], + [ 9.0411908, 46.9015911 ], + [ 9.041222, 46.9017041 ], + [ 9.0412031, 46.9018392 ], + [ 9.0412329, 46.9019861 ], + [ 9.0412307, 46.9021327 ], + [ 9.0411717, 46.9022168 ], + [ 9.0410705, 46.9023739 ], + [ 9.0409928, 46.9025482 ], + [ 9.0409583, 46.9026833 ], + [ 9.0409297, 46.9028805 ], + [ 9.0408865, 46.9030267 ], + [ 9.0408271, 46.9030995 ], + [ 9.0407123, 46.9031269 ], + [ 9.0406128, 46.9031486 ], + [ 9.0405377, 46.9032439 ], + [ 9.0405038, 46.9032888 ], + [ 9.0404208, 46.9033389 ], + [ 9.04028, 46.9034055 ], + [ 9.0401308, 46.9034663 ], + [ 9.0399333, 46.9034986 ], + [ 9.0398094, 46.903526 ], + [ 9.0397349, 46.9035874 ], + [ 9.0396599, 46.9036319 ], + [ 9.0395925, 46.9037103 ], + [ 9.0395269, 46.903738 ], + [ 9.0394197, 46.9037485 ], + [ 9.0392789, 46.9037868 ], + [ 9.0391541, 46.903893 ], + [ 9.0391277, 46.904 ], + [ 9.0390919, 46.9041464 ], + [ 9.0390483, 46.9042814 ], + [ 9.038955, 46.9044555 ], + [ 9.0387961, 46.9046291 ], + [ 9.0385722, 46.9047683 ], + [ 9.0384468, 46.9048576 ], + [ 9.0383712, 46.9049641 ], + [ 9.0382715, 46.905031 ], + [ 9.0380981, 46.905103 ], + [ 9.0378828, 46.9052029 ], + [ 9.0378234, 46.9053039 ], + [ 9.0377366, 46.9055288 ], + [ 9.0376523, 46.9056748 ], + [ 9.0374861, 46.9057976 ], + [ 9.0374178, 46.9059268 ], + [ 9.0372519, 46.9060326 ], + [ 9.0371259, 46.9061556 ], + [ 9.0370656, 46.9063357 ], + [ 9.0369731, 46.9064534 ], + [ 9.0367993, 46.906514 ], + [ 9.0365839, 46.9066083 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "JBG0022", + "country" : "CHE", + "name" : [ + { + "text" : "Eidgenössisches Jagdbanngebiet Kärpf", + "lang" : "de-CH" + }, + { + "text" : "District franc fédéral Kärpf", + "lang" : "fr-CH" + }, + { + "text" : "Bandita federale di caccia Kärpf", + "lang" : "it-CH" + }, + { + "text" : "Federal Game Reserve Kärpf", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8761839, 47.4522457 ], + [ 7.8763753, 47.4526023 ], + [ 7.8766035, 47.4530331 ], + [ 7.8766037, 47.4530335 ], + [ 7.8767546, 47.453306 ], + [ 7.876818, 47.4534234 ], + [ 7.8767723, 47.4539303 ], + [ 7.8771981, 47.453679 ], + [ 7.8777533, 47.4531142 ], + [ 7.8781001, 47.4527519 ], + [ 7.8780466, 47.4524034 ], + [ 7.8784847, 47.4519885 ], + [ 7.8785821, 47.451889 ], + [ 7.8783806, 47.4519162 ], + [ 7.8783766, 47.4519168 ], + [ 7.878255, 47.4519364 ], + [ 7.8782525, 47.4519368 ], + [ 7.8781829, 47.4519336 ], + [ 7.8781475, 47.4519283 ], + [ 7.8781288, 47.4519256 ], + [ 7.8781027, 47.4519161 ], + [ 7.8782075, 47.4517837 ], + [ 7.878252, 47.4517275 ], + [ 7.8782649, 47.4517115 ], + [ 7.8782784, 47.4516957 ], + [ 7.8782923, 47.4516802 ], + [ 7.8783066, 47.4516648 ], + [ 7.8783214, 47.4516496 ], + [ 7.8783367, 47.4516346 ], + [ 7.8784243, 47.4515503 ], + [ 7.8784261, 47.4515485 ], + [ 7.8785024, 47.451471 ], + [ 7.8785157, 47.4514593 ], + [ 7.8785275, 47.4514489 ], + [ 7.8785405, 47.45144 ], + [ 7.8785542, 47.4514316 ], + [ 7.8785685999999995, 47.4514238 ], + [ 7.8785836, 47.4514165 ], + [ 7.8785992, 47.4514097 ], + [ 7.8786153, 47.4514036 ], + [ 7.8786318, 47.451398 ], + [ 7.8786399, 47.4513957 ], + [ 7.8785902, 47.4513855 ], + [ 7.8785541, 47.4513489 ], + [ 7.8786816, 47.451377 ], + [ 7.8786819999999995, 47.4513771 ], + [ 7.8786824, 47.4513768 ], + [ 7.8786822999999995, 47.4513765 ], + [ 7.8786687, 47.4513032 ], + [ 7.8786568, 47.4512182 ], + [ 7.8786685, 47.4511735 ], + [ 7.8787239, 47.4511139 ], + [ 7.8787381, 47.4510506 ], + [ 7.8786995, 47.4510179 ], + [ 7.8786819999999995, 47.451016 ], + [ 7.8786452, 47.451012 ], + [ 7.8785372, 47.4510458 ], + [ 7.8783858, 47.4511131 ], + [ 7.8783373999999995, 47.4511454 ], + [ 7.8782929, 47.4511751 ], + [ 7.8782455, 47.4512067 ], + [ 7.8781943, 47.4512527 ], + [ 7.8779522, 47.4511899 ], + [ 7.8780570999999995, 47.4508662 ], + [ 7.8778296, 47.4506943 ], + [ 7.87779, 47.4506644 ], + [ 7.8776863, 47.4507686 ], + [ 7.8776600000000006, 47.4509502 ], + [ 7.8774903, 47.451206 ], + [ 7.8773842, 47.4513661 ], + [ 7.8770375999999995, 47.4516467 ], + [ 7.876767, 47.4518323 ], + [ 7.8764827, 47.4520416 ], + [ 7.8761834, 47.4522449 ], + [ 7.8761839, 47.4522457 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr067", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Löli", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Löli", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Löli", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Löli", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6389205, 47.540144 ], + [ 7.6378778, 47.540322 ], + [ 7.6368541, 47.5404949 ], + [ 7.6358262, 47.5406659 ], + [ 7.6347954, 47.5408342 ], + [ 7.6335308, 47.5410512 ], + [ 7.6335591, 47.5413943 ], + [ 7.6335945, 47.5418106 ], + [ 7.6336607, 47.5425248 ], + [ 7.6330078, 47.5425766 ], + [ 7.6326863, 47.5425618 ], + [ 7.6322647, 47.5432488 ], + [ 7.6323108, 47.5434689 ], + [ 7.6324115, 47.5439577 ], + [ 7.6327052, 47.5451324 ], + [ 7.6330518, 47.5457548 ], + [ 7.6331066, 47.5458444 ], + [ 7.6333059, 47.5461995 ], + [ 7.6336177, 47.5467755 ], + [ 7.6337756, 47.5470445 ], + [ 7.633972, 47.5473983 ], + [ 7.633945, 47.5474355 ], + [ 7.633958, 47.5474524 ], + [ 7.6342053, 47.547451 ], + [ 7.6363223, 47.5471522 ], + [ 7.6367253999999996, 47.547081 ], + [ 7.6370917, 47.5470162 ], + [ 7.6381149, 47.5468347 ], + [ 7.6394003, 47.5466061 ], + [ 7.6397645, 47.5465389 ], + [ 7.6401275, 47.546464 ], + [ 7.6404849, 47.5463824 ], + [ 7.6408387, 47.5462942 ], + [ 7.6411941, 47.5461987 ], + [ 7.6414352, 47.5461283 ], + [ 7.6416931, 47.5460487 ], + [ 7.6419398, 47.5459678 ], + [ 7.6423173, 47.5458367 ], + [ 7.6425494, 47.5457184 ], + [ 7.6428195, 47.5456451 ], + [ 7.6431852, 47.5454924 ], + [ 7.6435424, 47.5453336 ], + [ 7.6439927, 47.5451227 ], + [ 7.6450679, 47.5446189 ], + [ 7.6459394, 47.5442107 ], + [ 7.6470346, 47.5436976 ], + [ 7.6481286, 47.543185 ], + [ 7.6492239, 47.5426718 ], + [ 7.6499503, 47.5423257 ], + [ 7.6501547, 47.5421871 ], + [ 7.650411, 47.5420934 ], + [ 7.6516986, 47.5414368 ], + [ 7.6528221, 47.5408632 ], + [ 7.6538855, 47.5403214 ], + [ 7.654949, 47.5397781 ], + [ 7.6555719, 47.5394613 ], + [ 7.6566216, 47.5389259 ], + [ 7.6573817, 47.5385375 ], + [ 7.6576853, 47.5383823 ], + [ 7.6579264, 47.5382632 ], + [ 7.6580571, 47.5382253 ], + [ 7.6580249, 47.5380318 ], + [ 7.6580207, 47.5380067 ], + [ 7.6582656, 47.5372458 ], + [ 7.6585162, 47.5364948 ], + [ 7.6587676, 47.5358611 ], + [ 7.6589938, 47.5352267 ], + [ 7.6591442, 47.5347173 ], + [ 7.6592001, 47.5343134 ], + [ 7.6588252, 47.5345365 ], + [ 7.6582298, 47.534891 ], + [ 7.6574304, 47.5353014 ], + [ 7.6568731, 47.5355459 ], + [ 7.6563757, 47.5357301 ], + [ 7.6554079999999995, 47.5360883 ], + [ 7.6544691, 47.5364288 ], + [ 7.6536863, 47.5366797 ], + [ 7.6530277, 47.5368987 ], + [ 7.6520671, 47.5372117 ], + [ 7.651336, 47.5374143 ], + [ 7.6503454, 47.5376903 ], + [ 7.6493467, 47.5379685 ], + [ 7.6492523, 47.5380911 ], + [ 7.648568, 47.5381782 ], + [ 7.6479348, 47.5383483 ], + [ 7.6476477, 47.5384091 ], + [ 7.647117, 47.5385431 ], + [ 7.6464165, 47.5387215 ], + [ 7.6458601999999996, 47.5388474 ], + [ 7.6450884, 47.5390127 ], + [ 7.6440679, 47.5392265 ], + [ 7.6430342, 47.5394206 ], + [ 7.6420082, 47.5396083 ], + [ 7.6409763, 47.5397899 ], + [ 7.639949, 47.5399684 ], + [ 7.6389205, 47.540144 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns017", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Muttenzer Hard", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Muttenzer Hard", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Muttenzer Hard", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Muttenzer Hard", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.6526073, 47.3670071 ], + [ 8.6522924, 47.3672856 ], + [ 8.6522174, 47.3675392 ], + [ 8.6522481, 47.367663 ], + [ 8.6524374, 47.36784 ], + [ 8.6524736, 47.367867 ], + [ 8.6526691, 47.368013 ], + [ 8.6531515, 47.3682625 ], + [ 8.6533244, 47.3682993 ], + [ 8.6533349, 47.3682975 ], + [ 8.6535104, 47.3682677 ], + [ 8.65387, 47.3681263 ], + [ 8.6540225, 47.3681013 ], + [ 8.6540692, 47.3680936 ], + [ 8.6540707, 47.3680938 ], + [ 8.6542908, 47.3681182 ], + [ 8.6543984, 47.3681918 ], + [ 8.6543787, 47.3683143 ], + [ 8.6542789, 47.3684089 ], + [ 8.6540976, 47.3685287 ], + [ 8.6539535, 47.3686534 ], + [ 8.6539313, 47.3686968 ], + [ 8.6538447, 47.3688666 ], + [ 8.6537909, 47.3689609 ], + [ 8.653763, 47.3690098 ], + [ 8.6537624, 47.3692734 ], + [ 8.6537234, 47.3693263 ], + [ 8.6536585, 47.3694142 ], + [ 8.6535337, 47.3695294 ], + [ 8.6534586, 47.3695986 ], + [ 8.6533483, 47.3698971 ], + [ 8.6532505, 47.3704007 ], + [ 8.6531181, 47.370867 ], + [ 8.653199, 47.3710285 ], + [ 8.6532148, 47.3710432 ], + [ 8.6534184, 47.371233 ], + [ 8.6534543, 47.3712664 ], + [ 8.6537514, 47.3714054 ], + [ 8.6537953, 47.3714429 ], + [ 8.6539253, 47.371554 ], + [ 8.6539823, 47.3716027 ], + [ 8.6541172, 47.3716699 ], + [ 8.6544216, 47.3718762 ], + [ 8.6546745, 47.3720506 ], + [ 8.6548225, 47.3720949 ], + [ 8.6552262, 47.3721482 ], + [ 8.6555164, 47.3721568 ], + [ 8.6556352, 47.3721987 ], + [ 8.6557502, 47.3723055 ], + [ 8.6558911, 47.3723274 ], + [ 8.6559021, 47.3723258 ], + [ 8.6561115, 47.3722963 ], + [ 8.6561121, 47.3722964 ], + [ 8.6561595, 47.3723093 ], + [ 8.6561474, 47.3723589 ], + [ 8.6559142, 47.3725295 ], + [ 8.655815, 47.3725603 ], + [ 8.655809, 47.3725621 ], + [ 8.6555097, 47.3725556 ], + [ 8.6555043, 47.3725555 ], + [ 8.6553898, 47.3725827 ], + [ 8.6553667, 47.372619 ], + [ 8.6557533, 47.3727867 ], + [ 8.6557603, 47.3727832 ], + [ 8.6558362, 47.3727459 ], + [ 8.656016, 47.3726574 ], + [ 8.6560843, 47.3726238 ], + [ 8.656172399999999, 47.3725853 ], + [ 8.6565, 47.3724937 ], + [ 8.656506199999999, 47.3724938 ], + [ 8.6566246, 47.3724969 ], + [ 8.6567803, 47.3725339 ], + [ 8.6578127, 47.3729179 ], + [ 8.6587633, 47.3731409 ], + [ 8.6592355, 47.3732924 ], + [ 8.6596311, 47.3733926 ], + [ 8.6600635, 47.3734552 ], + [ 8.6602655, 47.3734845 ], + [ 8.6610274, 47.3735949 ], + [ 8.6612334, 47.3736248 ], + [ 8.6612621, 47.3736223 ], + [ 8.6614422, 47.3736064 ], + [ 8.6616088, 47.3735398 ], + [ 8.6620586, 47.3734056 ], + [ 8.6626285, 47.3733087 ], + [ 8.662961, 47.3732035 ], + [ 8.6635306, 47.3728646 ], + [ 8.6638392, 47.3726383 ], + [ 8.6641754, 47.3725142 ], + [ 8.6642974, 47.3724076 ], + [ 8.6643147, 47.3723553 ], + [ 8.6645025, 47.3721698 ], + [ 8.6652843, 47.3716176 ], + [ 8.6656112, 47.3714384 ], + [ 8.6657488, 47.3713209 ], + [ 8.6658746, 47.3711504 ], + [ 8.6659425, 47.3711038 ], + [ 8.6660527, 47.3710604 ], + [ 8.666535, 47.370959 ], + [ 8.6666759, 47.3708693 ], + [ 8.6668117, 47.3706727 ], + [ 8.666967, 47.3705748 ], + [ 8.6669781, 47.3705737 ], + [ 8.6671216, 47.3705597 ], + [ 8.667121999999999, 47.3705592 ], + [ 8.6672171, 47.3704516 ], + [ 8.6672532, 47.3703523 ], + [ 8.6673546, 47.3702127 ], + [ 8.6674968, 47.370120299999996 ], + [ 8.6675054, 47.3701208 ], + [ 8.6675697, 47.3701249 ], + [ 8.6676754, 47.3701724 ], + [ 8.6676827, 47.3701688 ], + [ 8.6677867, 47.3701172 ], + [ 8.6677985, 47.3701156 ], + [ 8.6678207, 47.3701127 ], + [ 8.6678606, 47.3701074 ], + [ 8.6679526, 47.3701352 ], + [ 8.667899, 47.3702195 ], + [ 8.6677735, 47.3703485 ], + [ 8.6677794, 47.3703737 ], + [ 8.6678291, 47.3704064 ], + [ 8.6678357, 47.3704014 ], + [ 8.6680282, 47.370255 ], + [ 8.6680373, 47.3702553 ], + [ 8.6681634, 47.3702607 ], + [ 8.6681652, 47.3702587 ], + [ 8.6682189, 47.370199 ], + [ 8.6682315, 47.3700558 ], + [ 8.6681735, 47.3698945 ], + [ 8.6680455, 47.3696836 ], + [ 8.6680391, 47.3695766 ], + [ 8.668175699999999, 47.3694159 ], + [ 8.6684888, 47.3693253 ], + [ 8.6684967, 47.3693249 ], + [ 8.6689185, 47.3692992 ], + [ 8.6689203, 47.3692982 ], + [ 8.669014, 47.3692478 ], + [ 8.6693821, 47.3688472 ], + [ 8.6697675, 47.3685093 ], + [ 8.6699258, 47.3681973 ], + [ 8.6700308, 47.3680981 ], + [ 8.6704362, 47.3678806 ], + [ 8.6705616, 47.367748 ], + [ 8.6706827, 47.3674336 ], + [ 8.6710358, 47.3671267 ], + [ 8.6711617, 47.367074099999996 ], + [ 8.6711733, 47.3670725 ], + [ 8.6711742, 47.3670724 ], + [ 8.6712361, 47.3670641 ], + [ 8.67129, 47.3670569 ], + [ 8.6713361, 47.3670333 ], + [ 8.6713447, 47.3670289 ], + [ 8.6714395, 47.3669371 ], + [ 8.6714949, 47.3668834 ], + [ 8.6721889, 47.3663131 ], + [ 8.6726717, 47.3659587 ], + [ 8.6730333, 47.3657363 ], + [ 8.6730613, 47.3657199 ], + [ 8.6731393, 47.3656742 ], + [ 8.6737752, 47.3651194 ], + [ 8.6738295, 47.365072 ], + [ 8.6741229, 47.3649339 ], + [ 8.6745146, 47.3648101 ], + [ 8.6746664, 47.364732 ], + [ 8.6748982, 47.364542900000004 ], + [ 8.6749379, 47.3645105 ], + [ 8.6750827, 47.3643578 ], + [ 8.6751123, 47.3642667 ], + [ 8.6750792, 47.3641519 ], + [ 8.6750208, 47.3640868 ], + [ 8.6750336, 47.3640863 ], + [ 8.6750856, 47.3640843 ], + [ 8.6753275, 47.3641821 ], + [ 8.6753585, 47.3641897 ], + [ 8.6753887, 47.3641972 ], + [ 8.6754234, 47.3642057 ], + [ 8.6754272, 47.3642029 ], + [ 8.6754702, 47.3641702 ], + [ 8.6752934, 47.3640661 ], + [ 8.6751534, 47.3639838 ], + [ 8.6751527, 47.3639514 ], + [ 8.675274, 47.3638178 ], + [ 8.6752831, 47.3638191 ], + [ 8.675371, 47.3638312 ], + [ 8.675374399999999, 47.3638284 ], + [ 8.6754243, 47.3637866 ], + [ 8.6753815, 47.3637141 ], + [ 8.6754237, 47.3636471 ], + [ 8.6755506, 47.3635759 ], + [ 8.6756132, 47.3635408 ], + [ 8.6758294, 47.363444 ], + [ 8.6761125, 47.3633814 ], + [ 8.6762785, 47.3633447 ], + [ 8.6765441, 47.3633021 ], + [ 8.6765658, 47.3632986 ], + [ 8.6766268, 47.3632888 ], + [ 8.6768738, 47.3632664 ], + [ 8.6770923, 47.3632466 ], + [ 8.6773124, 47.3632266 ], + [ 8.6774573, 47.3631797 ], + [ 8.6775398, 47.3631531 ], + [ 8.677552, 47.3631418 ], + [ 8.6775683, 47.3631267 ], + [ 8.6776232, 47.3631132 ], + [ 8.677624999999999, 47.3631128 ], + [ 8.6778408, 47.3630599 ], + [ 8.678779, 47.3628853 ], + [ 8.678985, 47.362847 ], + [ 8.6791574, 47.362789 ], + [ 8.6792031, 47.3627736 ], + [ 8.6792478, 47.3627765 ], + [ 8.6793953, 47.3627859 ], + [ 8.6796888, 47.362709 ], + [ 8.679867699999999, 47.3626786 ], + [ 8.679909, 47.3626716 ], + [ 8.6800004, 47.3626716 ], + [ 8.6801552, 47.3626716 ], + [ 8.6801741, 47.3626624 ], + [ 8.6801867, 47.3626563 ], + [ 8.6802495, 47.3626256 ], + [ 8.6802682, 47.362604 ], + [ 8.6802895, 47.3625793 ], + [ 8.6803075, 47.3625787 ], + [ 8.6804813, 47.3625728 ], + [ 8.6804876, 47.3625694 ], + [ 8.6805491, 47.3625365 ], + [ 8.680640799999999, 47.3624874 ], + [ 8.6806639, 47.3624618 ], + [ 8.680977500000001, 47.3621124 ], + [ 8.681081, 47.3620032 ], + [ 8.6817123, 47.3614846 ], + [ 8.6817495, 47.3614347 ], + [ 8.6817941, 47.3613002 ], + [ 8.6818089, 47.3612533 ], + [ 8.6817677, 47.3611341 ], + [ 8.6817119, 47.361082 ], + [ 8.6817088, 47.3610792 ], + [ 8.681705000000001, 47.3610768 ], + [ 8.6816338, 47.3610305 ], + [ 8.6813949, 47.3608754 ], + [ 8.6812424, 47.3607312 ], + [ 8.681197300000001, 47.3606886 ], + [ 8.6811412, 47.3606658 ], + [ 8.6810235, 47.3606636 ], + [ 8.6809888, 47.360663 ], + [ 8.6809162, 47.3606039 ], + [ 8.6809145, 47.3606024 ], + [ 8.680875499999999, 47.3605707 ], + [ 8.6809564, 47.3604636 ], + [ 8.6809983, 47.3604443 ], + [ 8.6810054, 47.3604447 ], + [ 8.6811136, 47.3604503 ], + [ 8.6812617, 47.3604999 ], + [ 8.6816325, 47.3605049 ], + [ 8.6816713, 47.3606359 ], + [ 8.6818525, 47.3607048 ], + [ 8.6818762, 47.3607076 ], + [ 8.6819426, 47.3607155 ], + [ 8.6819579, 47.3607173 ], + [ 8.6819653, 47.3607156 ], + [ 8.6820724, 47.36069 ], + [ 8.6822079, 47.360628 ], + [ 8.6823501, 47.3605629 ], + [ 8.6825516, 47.3605157 ], + [ 8.6826417, 47.3604644 ], + [ 8.6827047, 47.3603944 ], + [ 8.6829256, 47.3601492 ], + [ 8.683067, 47.359912 ], + [ 8.6831893, 47.3598198 ], + [ 8.6834572, 47.3597279 ], + [ 8.6836507, 47.3596232 ], + [ 8.6840047, 47.3595313 ], + [ 8.6841847, 47.3594151 ], + [ 8.6843066, 47.3593067 ], + [ 8.684514, 47.3590616 ], + [ 8.684588699999999, 47.3589735 ], + [ 8.6846298, 47.3588616 ], + [ 8.6845629, 47.3586041 ], + [ 8.684482299999999, 47.3584988 ], + [ 8.6843271, 47.3584861 ], + [ 8.6842663, 47.3584664 ], + [ 8.684244, 47.3584592 ], + [ 8.684163, 47.358433 ], + [ 8.6841307, 47.3584073 ], + [ 8.6841277, 47.3583371 ], + [ 8.6841393, 47.3583357 ], + [ 8.6843798, 47.3583047 ], + [ 8.6845245, 47.3583221 ], + [ 8.6845357, 47.3583202 ], + [ 8.6846405, 47.3583028 ], + [ 8.6846738, 47.3582548 ], + [ 8.6847137, 47.3580888 ], + [ 8.6848011, 47.3578648 ], + [ 8.6849271, 47.3575945 ], + [ 8.6849433, 47.357435100000004 ], + [ 8.6849911, 47.3572709 ], + [ 8.6851454, 47.3570227 ], + [ 8.6853559, 47.3567389 ], + [ 8.6855198, 47.3565599 ], + [ 8.6856547, 47.3563273 ], + [ 8.6857493, 47.356239 ], + [ 8.6863914, 47.3557922 ], + [ 8.6865623, 47.3556282 ], + [ 8.6868485, 47.3553537 ], + [ 8.6870429, 47.3551231 ], + [ 8.6871775, 47.3550452 ], + [ 8.6873496, 47.3548412 ], + [ 8.6875407, 47.3546148 ], + [ 8.6880355, 47.3540976 ], + [ 8.688087, 47.3540621 ], + [ 8.6882587, 47.3539036 ], + [ 8.6883759, 47.3537674 ], + [ 8.6885989, 47.3535086 ], + [ 8.6888762, 47.3531413 ], + [ 8.6890649, 47.3528334 ], + [ 8.6890403, 47.3526898 ], + [ 8.689180799999999, 47.3525848 ], + [ 8.6892706, 47.3525173 ], + [ 8.6893208, 47.3523467 ], + [ 8.6894362, 47.3521305 ], + [ 8.6894885, 47.351932 ], + [ 8.689578000000001, 47.3517412 ], + [ 8.6895653, 47.3516514 ], + [ 8.6894803, 47.3515273 ], + [ 8.6894863, 47.3515011 ], + [ 8.6894971, 47.3514542 ], + [ 8.6893774, 47.3513125 ], + [ 8.689376, 47.3513107 ], + [ 8.6889999, 47.3514414 ], + [ 8.6889939, 47.3514435 ], + [ 8.6888627, 47.3514386 ], + [ 8.6887722, 47.3513586 ], + [ 8.6888035, 47.3512741 ], + [ 8.6888257, 47.3512141 ], + [ 8.6889493, 47.3510653 ], + [ 8.6890436, 47.3510229 ], + [ 8.6891899, 47.3508837 ], + [ 8.6892043, 47.350881 ], + [ 8.6894469, 47.3508368 ], + [ 8.6894472, 47.3508366 ], + [ 8.6895555, 47.3507817 ], + [ 8.6896305, 47.3507071 ], + [ 8.6896175, 47.3506622 ], + [ 8.689565, 47.350625 ], + [ 8.6895955, 47.3505689 ], + [ 8.6896065, 47.3505681 ], + [ 8.6897765, 47.3505553 ], + [ 8.6899691, 47.3506079 ], + [ 8.690244, 47.3507132 ], + [ 8.6903808, 47.3507368 ], + [ 8.6904885, 47.3507216 ], + [ 8.6904859, 47.3507146 ], + [ 8.6904592, 47.3506421 ], + [ 8.6904579, 47.350642 ], + [ 8.6903715, 47.3506386 ], + [ 8.6898288, 47.3504153 ], + [ 8.6898104, 47.3503093 ], + [ 8.6896989, 47.3500677 ], + [ 8.6896681, 47.3498296 ], + [ 8.6896787, 47.349718 ], + [ 8.6897127, 47.3496969 ], + [ 8.6897391, 47.3496381 ], + [ 8.6897819, 47.3496017 ], + [ 8.6899722, 47.3493276 ], + [ 8.6900534, 47.3492105 ], + [ 8.6900725, 47.3491829 ], + [ 8.6901888, 47.348946 ], + [ 8.6901932, 47.34874 ], + [ 8.6901415, 47.3485669 ], + [ 8.6901595, 47.348546 ], + [ 8.6900862, 47.3481285 ], + [ 8.6901015, 47.3481041 ], + [ 8.6900496, 47.3479796 ], + [ 8.6900061, 47.3479315 ], + [ 8.6898801, 47.3475798 ], + [ 8.6898392, 47.3474656 ], + [ 8.6898234, 47.3474216 ], + [ 8.6898209, 47.3473664 ], + [ 8.6898166, 47.3472728 ], + [ 8.6898044, 47.3470063 ], + [ 8.6898297, 47.3468441 ], + [ 8.6899162, 47.3466371 ], + [ 8.6897896, 47.3464334 ], + [ 8.6896974, 47.3461124 ], + [ 8.6898045, 47.345827 ], + [ 8.6898866, 47.3454891 ], + [ 8.6898878, 47.3454842 ], + [ 8.6898652, 47.3454326 ], + [ 8.6897633, 47.3451995 ], + [ 8.689772, 47.3451751 ], + [ 8.689726, 47.3451334 ], + [ 8.689744, 47.3449964 ], + [ 8.6898967, 47.3447915 ], + [ 8.6900612, 47.3445243 ], + [ 8.6901276, 47.3443077 ], + [ 8.6901326, 47.3441835 ], + [ 8.6900754, 47.3438324 ], + [ 8.6900929, 47.3437324 ], + [ 8.6901341, 47.343698 ], + [ 8.690142, 47.3436914 ], + [ 8.6903901, 47.3434845 ], + [ 8.6904451, 47.343402 ], + [ 8.6903516, 47.3433502 ], + [ 8.6903258, 47.3433359 ], + [ 8.6903403, 47.3432781 ], + [ 8.6904046, 47.3432025 ], + [ 8.690406, 47.343201 ], + [ 8.6904361, 47.3432093 ], + [ 8.6905032, 47.3432278 ], + [ 8.6905071, 47.3432245 ], + [ 8.6905759, 47.3431667 ], + [ 8.6906954, 47.3429585 ], + [ 8.690729900000001, 47.3427369 ], + [ 8.6907042, 47.3425986 ], + [ 8.6907043, 47.342593 ], + [ 8.6907095, 47.342433 ], + [ 8.6907812, 47.3422529 ], + [ 8.6907858, 47.3422415 ], + [ 8.6907844, 47.342217 ], + [ 8.690779, 47.3421228 ], + [ 8.6908271, 47.3420288 ], + [ 8.6908544, 47.3420123 ], + [ 8.6908546, 47.3420122 ], + [ 8.6911546, 47.3418318 ], + [ 8.6914873, 47.3413469 ], + [ 8.6915137, 47.3412315 ], + [ 8.6915145, 47.3409832 ], + [ 8.6916116, 47.340778 ], + [ 8.6918089, 47.3406157 ], + [ 8.6918255, 47.3406061 ], + [ 8.6921314, 47.3404287 ], + [ 8.6927506, 47.339804 ], + [ 8.6928631, 47.339721 ], + [ 8.693055, 47.3395794 ], + [ 8.6931711, 47.3394838 ], + [ 8.6932074, 47.3394539 ], + [ 8.6934081, 47.3392886 ], + [ 8.693408999999999, 47.339288 ], + [ 8.693855899999999, 47.3389734 ], + [ 8.6942209, 47.338798 ], + [ 8.6942485, 47.3387847 ], + [ 8.6948543, 47.3384381 ], + [ 8.6949775, 47.3383315 ], + [ 8.6949867, 47.3383208 ], + [ 8.6953613, 47.3378829 ], + [ 8.6955789, 47.3377366 ], + [ 8.6962874, 47.3374779 ], + [ 8.696326, 47.3374739 ], + [ 8.6964854, 47.3374571 ], + [ 8.6965065, 47.3374549 ], + [ 8.6968772, 47.3374625 ], + [ 8.697226, 47.3374974 ], + [ 8.6977304, 47.3374478 ], + [ 8.698056, 47.3373408 ], + [ 8.698644999999999, 47.3369548 ], + [ 8.6987341, 47.3369151 ], + [ 8.7000014, 47.3363382 ], + [ 8.7001591, 47.3362669 ], + [ 8.7006194, 47.3360588 ], + [ 8.7009423, 47.3358925 ], + [ 8.7009816, 47.3358691 ], + [ 8.7010198, 47.3358514 ], + [ 8.7010721, 47.335827 ], + [ 8.701336, 47.3356911 ], + [ 8.7015831, 47.3355818 ], + [ 8.7016401, 47.3355439 ], + [ 8.7017311, 47.3355063 ], + [ 8.7018269, 47.3354671 ], + [ 8.7019407, 47.3354184 ], + [ 8.7021028, 47.3353487 ], + [ 8.7021966, 47.3352952 ], + [ 8.7023407, 47.3352306 ], + [ 8.7024826, 47.3351832 ], + [ 8.7026523, 47.3351178 ], + [ 8.7028133, 47.3350719 ], + [ 8.7030215, 47.3349956 ], + [ 8.703256, 47.3349421 ], + [ 8.7034188, 47.3349042 ], + [ 8.7035709, 47.3348664 ], + [ 8.7036915, 47.3348226 ], + [ 8.7038199, 47.3347628 ], + [ 8.7039124, 47.3347231 ], + [ 8.7040085, 47.3346939 ], + [ 8.7040513, 47.3346859 ], + [ 8.7040792, 47.3346788 ], + [ 8.7041812, 47.3347601 ], + [ 8.7045866, 47.3345921 ], + [ 8.704909, 47.3344791 ], + [ 8.7051535, 47.334432 ], + [ 8.7053432, 47.3343778 ], + [ 8.7055165, 47.3343267 ], + [ 8.705678, 47.334300999999996 ], + [ 8.7058141, 47.3342884 ], + [ 8.7058638, 47.3342896 ], + [ 8.7058702, 47.3342809 ], + [ 8.7058704, 47.3342809 ], + [ 8.7059183, 47.3342177 ], + [ 8.7060462, 47.3341358 ], + [ 8.706196, 47.3340697 ], + [ 8.7062989, 47.334017 ], + [ 8.7064501, 47.3339745 ], + [ 8.7065764, 47.3339637 ], + [ 8.7065927, 47.3339638 ], + [ 8.706693, 47.3339649 ], + [ 8.7068505, 47.3339462 ], + [ 8.7070724, 47.3339215 ], + [ 8.7073103, 47.3337692 ], + [ 8.7074804, 47.3336564 ], + [ 8.7075918, 47.3335761 ], + [ 8.7076424, 47.3334778 ], + [ 8.7077024, 47.3333224 ], + [ 8.7078491, 47.3330914 ], + [ 8.7079465, 47.3328407 ], + [ 8.7080023, 47.3327174 ], + [ 8.7080166, 47.3326234 ], + [ 8.708026199999999, 47.3325663 ], + [ 8.7080379, 47.3325122 ], + [ 8.7080424, 47.3323889 ], + [ 8.7080884, 47.3322032 ], + [ 8.7080988, 47.3320809 ], + [ 8.7081198, 47.3318901 ], + [ 8.7081238, 47.331779 ], + [ 8.7081369, 47.3316337 ], + [ 8.7081578, 47.3315398 ], + [ 8.7081799, 47.3314953 ], + [ 8.7081797, 47.3314165 ], + [ 8.7081611, 47.3313311 ], + [ 8.7081464, 47.3312316 ], + [ 8.7081239, 47.330982 ], + [ 8.7081704, 47.3308158 ], + [ 8.7084209, 47.3306791 ], + [ 8.7086469, 47.3306142 ], + [ 8.7089385, 47.3305455 ], + [ 8.7092467, 47.3304869 ], + [ 8.7096336, 47.3303766 ], + [ 8.7098889, 47.3302953 ], + [ 8.7100089, 47.3302332 ], + [ 8.7100255, 47.3301678 ], + [ 8.7100293, 47.3300853 ], + [ 8.7100581, 47.3300069 ], + [ 8.7101019, 47.3299139 ], + [ 8.7101735, 47.3298246 ], + [ 8.7106971, 47.3297407 ], + [ 8.710640099999999, 47.3296402 ], + [ 8.7105856, 47.3294408 ], + [ 8.7104632, 47.3289934 ], + [ 8.7101845, 47.328026 ], + [ 8.7100837, 47.3275454 ], + [ 8.709999700000001, 47.3272471 ], + [ 8.7099552, 47.3271153 ], + [ 8.7098725, 47.3269685 ], + [ 8.7097901, 47.3268159 ], + [ 8.7097464, 47.326745 ], + [ 8.7096456, 47.3267033 ], + [ 8.7095445, 47.3266437 ], + [ 8.7094732, 47.3265195 ], + [ 8.7094506, 47.3262974 ], + [ 8.7092715, 47.3259245 ], + [ 8.7089109, 47.3256189 ], + [ 8.7086116, 47.3253973 ], + [ 8.7073548, 47.3244329 ], + [ 8.7069428, 47.3241126 ], + [ 8.7067451, 47.3239648 ], + [ 8.7066299, 47.3238671 ], + [ 8.7064838, 47.3237383 ], + [ 8.7066413, 47.3236537 ], + [ 8.7067513, 47.3235857 ], + [ 8.7068678, 47.3235113 ], + [ 8.7070578, 47.3233626 ], + [ 8.7074082, 47.3231493 ], + [ 8.708048999999999, 47.3227291 ], + [ 8.7081871, 47.3226618 ], + [ 8.7082697, 47.3225897 ], + [ 8.7083226, 47.3225407 ], + [ 8.7079129, 47.3223179 ], + [ 8.7075981, 47.3220419 ], + [ 8.7063186, 47.321008 ], + [ 8.7059403, 47.3207028 ], + [ 8.7054476, 47.3203024 ], + [ 8.7046529, 47.3196564 ], + [ 8.7042725, 47.319339 ], + [ 8.7042618, 47.3193302 ], + [ 8.7041301, 47.3193992 ], + [ 8.7036372, 47.3196591 ], + [ 8.702988, 47.3200141 ], + [ 8.7028286, 47.3200939 ], + [ 8.7027373, 47.3201567 ], + [ 8.7024747, 47.3203373 ], + [ 8.7022682, 47.3204177 ], + [ 8.701947, 47.3201817 ], + [ 8.7016551, 47.3199403 ], + [ 8.7012634, 47.3196706 ], + [ 8.7010259, 47.3194524 ], + [ 8.7008182, 47.3193107 ], + [ 8.7004687, 47.3190699 ], + [ 8.7004684, 47.3190692 ], + [ 8.7004681, 47.3190694 ], + [ 8.7001262, 47.3188154 ], + [ 8.6997852, 47.3185567 ], + [ 8.699738, 47.3185176 ], + [ 8.6996735, 47.3185183 ], + [ 8.6996043, 47.318527 ], + [ 8.6990256, 47.318706 ], + [ 8.699000999999999, 47.3187147 ], + [ 8.698832, 47.3187698 ], + [ 8.6985768, 47.3188166 ], + [ 8.6982724, 47.3188427 ], + [ 8.6974316, 47.3188451 ], + [ 8.697352, 47.3188487 ], + [ 8.6973515, 47.3188487 ], + [ 8.6976178, 47.3190281 ], + [ 8.6977355, 47.3191456 ], + [ 8.6978045, 47.3192678 ], + [ 8.6978132, 47.3193247 ], + [ 8.6978153, 47.3193381 ], + [ 8.6978221, 47.3193843 ], + [ 8.6978242, 47.3194362 ], + [ 8.6978302, 47.3195836 ], + [ 8.6978131, 47.3200859 ], + [ 8.6978103, 47.320226 ], + [ 8.6978075, 47.3202366 ], + [ 8.6977786, 47.3203438 ], + [ 8.69774, 47.320424 ], + [ 8.697682499999999, 47.3205455 ], + [ 8.6975812, 47.3207646 ], + [ 8.6975284, 47.3208789 ], + [ 8.6973874, 47.3208625 ], + [ 8.6967092, 47.3207833 ], + [ 8.6961799, 47.3207417 ], + [ 8.6960838, 47.320734 ], + [ 8.6960192, 47.3207275 ], + [ 8.6956399, 47.3207393 ], + [ 8.6953305, 47.3207644 ], + [ 8.694976, 47.3207965 ], + [ 8.6948073, 47.3208117 ], + [ 8.6947051, 47.320821 ], + [ 8.6940917, 47.3208972 ], + [ 8.6938978, 47.3209148 ], + [ 8.6936477, 47.3209307 ], + [ 8.6933045, 47.3209641 ], + [ 8.6930533, 47.320972 ], + [ 8.6930476, 47.3209728 ], + [ 8.6928315, 47.3209951 ], + [ 8.6927246, 47.3210205 ], + [ 8.692575099999999, 47.3210637 ], + [ 8.6924232, 47.3211412 ], + [ 8.6922028, 47.3212627 ], + [ 8.6916945, 47.3215548 ], + [ 8.6912126, 47.3218406 ], + [ 8.6907364, 47.3221264 ], + [ 8.6903306, 47.3223799 ], + [ 8.6903288, 47.3223716 ], + [ 8.6903108, 47.3223825 ], + [ 8.6901195, 47.3225101 ], + [ 8.6900139, 47.3225891 ], + [ 8.6899332, 47.3226747 ], + [ 8.6898834, 47.3228096 ], + [ 8.6897247, 47.3233039 ], + [ 8.68964, 47.3236064 ], + [ 8.6895965, 47.3237616 ], + [ 8.6894867, 47.3241706 ], + [ 8.6893924, 47.3244962 ], + [ 8.689324599999999, 47.3248605 ], + [ 8.6893262, 47.3252025 ], + [ 8.6893611, 47.3256046 ], + [ 8.6894033, 47.3260457 ], + [ 8.6894045, 47.3263673 ], + [ 8.6893764, 47.3265277 ], + [ 8.6892998, 47.3267883 ], + [ 8.6892342, 47.3269794 ], + [ 8.6891619, 47.3271534 ], + [ 8.6888152, 47.3275727 ], + [ 8.688566999999999, 47.327848 ], + [ 8.6883688, 47.3280839 ], + [ 8.6882025, 47.3283238 ], + [ 8.6880556, 47.3285721 ], + [ 8.687856, 47.3290201 ], + [ 8.6876807, 47.3294202 ], + [ 8.6875708, 47.3296205 ], + [ 8.6874655, 47.3297472 ], + [ 8.6873327, 47.3298576 ], + [ 8.6871979, 47.3299819 ], + [ 8.6870682, 47.3300958 ], + [ 8.6869964, 47.3301591 ], + [ 8.6868036, 47.3302997 ], + [ 8.6864475, 47.3305892 ], + [ 8.6862319, 47.3307903 ], + [ 8.6859133, 47.3310673 ], + [ 8.6857123, 47.3312768 ], + [ 8.6854829, 47.3315433 ], + [ 8.6851916, 47.331884 ], + [ 8.685043199999999, 47.3320718 ], + [ 8.6848325, 47.3323164 ], + [ 8.684684, 47.3324998 ], + [ 8.6844054, 47.3328405 ], + [ 8.6851799, 47.3330339 ], + [ 8.6849332, 47.3334207 ], + [ 8.6844324, 47.3341219 ], + [ 8.6827841, 47.3355167 ], + [ 8.682907, 47.3357059 ], + [ 8.6820244, 47.3366676 ], + [ 8.6822521, 47.3367311 ], + [ 8.6822834, 47.3371482 ], + [ 8.6816256, 47.3375875 ], + [ 8.6817785, 47.3376737 ], + [ 8.6817925, 47.3376697 ], + [ 8.6818638, 47.3377762 ], + [ 8.6816945, 47.3379263 ], + [ 8.6814094, 47.3382217 ], + [ 8.6814626, 47.3382684 ], + [ 8.6813822, 47.338332199999996 ], + [ 8.6812676, 47.3384176 ], + [ 8.6810751, 47.3386059 ], + [ 8.6808331, 47.3388704 ], + [ 8.6807412, 47.3389703 ], + [ 8.68035, 47.3390793 ], + [ 8.6801037, 47.3391575 ], + [ 8.6797394, 47.3393186 ], + [ 8.6795823, 47.3393891 ], + [ 8.6794349, 47.3394557 ], + [ 8.6792525, 47.3395785 ], + [ 8.6792352, 47.3396141 ], + [ 8.6790836, 47.3397134 ], + [ 8.6790402, 47.3397677 ], + [ 8.6791809, 47.3398403 ], + [ 8.679375199999999, 47.3399484 ], + [ 8.679336, 47.3399849 ], + [ 8.6792739, 47.3399883 ], + [ 8.6789893, 47.3401002 ], + [ 8.6786831, 47.3402519 ], + [ 8.6786314, 47.3403038 ], + [ 8.6785616, 47.3404322 ], + [ 8.6783931, 47.3409819 ], + [ 8.6782716, 47.3411055 ], + [ 8.678412699999999, 47.3413721 ], + [ 8.6783624, 47.3414851 ], + [ 8.6781766, 47.3416868 ], + [ 8.6781164, 47.341834 ], + [ 8.6780971, 47.3420258 ], + [ 8.6780883, 47.3420488 ], + [ 8.6780756, 47.3420822 ], + [ 8.6780385, 47.3421794 ], + [ 8.6777823, 47.3426598 ], + [ 8.6776215, 47.3428576 ], + [ 8.676797, 47.3436581 ], + [ 8.676604, 47.3438958 ], + [ 8.6763087, 47.3443461 ], + [ 8.6761351, 47.3445611 ], + [ 8.6760924, 47.3447757 ], + [ 8.6760423, 47.3448428 ], + [ 8.6758394, 47.34493 ], + [ 8.6756735, 47.3450012 ], + [ 8.6756322, 47.345019 ], + [ 8.6755949, 47.3451795 ], + [ 8.6756476, 47.345456 ], + [ 8.6756406, 47.3455532 ], + [ 8.6755705, 47.3456673 ], + [ 8.6754052, 47.3457312 ], + [ 8.675279, 47.3457524 ], + [ 8.6752681, 47.3457542 ], + [ 8.6752205, 47.3457524 ], + [ 8.6750754, 47.3457468 ], + [ 8.675048199999999, 47.3457458 ], + [ 8.6749092, 47.3456465 ], + [ 8.6749055, 47.3456439 ], + [ 8.6748933, 47.3456442 ], + [ 8.674869900000001, 47.3456447 ], + [ 8.6746529, 47.3456502 ], + [ 8.6746065, 47.3456596 ], + [ 8.6745107, 47.3456792 ], + [ 8.6744671, 47.3456881 ], + [ 8.674346, 47.3457128 ], + [ 8.6739818, 47.3459 ], + [ 8.6735363, 47.346129 ], + [ 8.6731445, 47.3462987 ], + [ 8.672827999999999, 47.3463479 ], + [ 8.6724834, 47.3463268 ], + [ 8.672441, 47.3463242 ], + [ 8.6724253, 47.3463244 ], + [ 8.6723209, 47.3463258 ], + [ 8.6721076, 47.3463287 ], + [ 8.671715, 47.3464075 ], + [ 8.6715564, 47.3464213 ], + [ 8.6711884, 47.3464535 ], + [ 8.6710546, 47.3464651 ], + [ 8.6707287, 47.3464935 ], + [ 8.6707046, 47.3464957 ], + [ 8.6701739, 47.3466686 ], + [ 8.6699197, 47.3467829 ], + [ 8.6696335, 47.3468438 ], + [ 8.6695417, 47.3468634 ], + [ 8.6693334, 47.3469242 ], + [ 8.6691568, 47.3470172 ], + [ 8.6691209, 47.3470361 ], + [ 8.669039399999999, 47.3471179 ], + [ 8.6687768, 47.3472116 ], + [ 8.6685387, 47.347331 ], + [ 8.6682555, 47.3475068 ], + [ 8.6679803, 47.3477391 ], + [ 8.6677862, 47.34793 ], + [ 8.6673956, 47.3481991 ], + [ 8.6671686, 47.3484341 ], + [ 8.6671505, 47.3484658 ], + [ 8.6669266, 47.3488579 ], + [ 8.6665629, 47.3493269 ], + [ 8.6662261, 47.349563 ], + [ 8.6660848, 47.3497271 ], + [ 8.6660767, 47.3497365 ], + [ 8.6660679, 47.3498734 ], + [ 8.6660137, 47.3499882 ], + [ 8.6659349, 47.3500736 ], + [ 8.6655523, 47.350361 ], + [ 8.6653911, 47.3504877 ], + [ 8.665188, 47.3509298 ], + [ 8.6651743, 47.3509596 ], + [ 8.6650497, 47.3511246 ], + [ 8.664805, 47.3513593 ], + [ 8.6646951, 47.3515412 ], + [ 8.6645786, 47.3517338 ], + [ 8.664504, 47.3518573 ], + [ 8.6643086, 47.3522236 ], + [ 8.6640421, 47.3527212 ], + [ 8.6639404, 47.3528464 ], + [ 8.6638535, 47.3530399 ], + [ 8.6638406, 47.3532008 ], + [ 8.6638253, 47.3533927 ], + [ 8.6637822, 47.3535642 ], + [ 8.6638391, 47.3537363 ], + [ 8.6638931, 47.3538418 ], + [ 8.6637258, 47.3538787 ], + [ 8.6633566, 47.3538826 ], + [ 8.6626722, 47.3539942 ], + [ 8.6619873, 47.3541454 ], + [ 8.6615094, 47.354199 ], + [ 8.6611645, 47.3542836 ], + [ 8.660786, 47.3544604 ], + [ 8.6601856, 47.3548226 ], + [ 8.6601319, 47.354855 ], + [ 8.6598021, 47.3551382 ], + [ 8.6591364, 47.3558937 ], + [ 8.6587504, 47.3562648 ], + [ 8.6582709, 47.3567736 ], + [ 8.6575204, 47.3574275 ], + [ 8.6575081, 47.3574382 ], + [ 8.6570652, 47.3578241 ], + [ 8.6569457, 47.3579282 ], + [ 8.6564498, 47.3583004 ], + [ 8.6548913, 47.3597309 ], + [ 8.6548518, 47.3597601 ], + [ 8.6545137, 47.3600093 ], + [ 8.6538194, 47.360702 ], + [ 8.6537875, 47.3607339 ], + [ 8.6536212, 47.3610433 ], + [ 8.6533313, 47.3615496 ], + [ 8.6531793, 47.3618152 ], + [ 8.6531246, 47.3618849 ], + [ 8.6529671, 47.3620855 ], + [ 8.6526928, 47.3624815 ], + [ 8.6526472, 47.3625727 ], + [ 8.6526382, 47.3625907 ], + [ 8.6524281, 47.3630105 ], + [ 8.652426, 47.363368 ], + [ 8.6524248, 47.3635646 ], + [ 8.6524564, 47.3636422 ], + [ 8.6524879, 47.3637086 ], + [ 8.6525962, 47.363937 ], + [ 8.6526324, 47.3641979 ], + [ 8.6526672, 47.3644489 ], + [ 8.6526787, 47.3645318 ], + [ 8.6526867, 47.3645891 ], + [ 8.6526932, 47.3646244 ], + [ 8.652697, 47.3646448 ], + [ 8.652679599999999, 47.3647435 ], + [ 8.6526548, 47.3648845 ], + [ 8.6525106, 47.3652935 ], + [ 8.6525101, 47.3654 ], + [ 8.6525085, 47.3657829 ], + [ 8.6525499, 47.3658589 ], + [ 8.652649, 47.3660404 ], + [ 8.6526784, 47.3660942 ], + [ 8.652756, 47.3661946 ], + [ 8.6528176, 47.3662744 ], + [ 8.6529432, 47.3665016 ], + [ 8.6529802, 47.3666267 ], + [ 8.6530058, 47.3666913 ], + [ 8.6530268, 47.3667445 ], + [ 8.6529963, 47.3667997 ], + [ 8.6528851, 47.3668593 ], + [ 8.6527051, 47.3669206 ], + [ 8.6526073, 47.3670071 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "WZV0013", + "country" : "CHE", + "name" : [ + { + "text" : "Wasser- und Zugvogelreservat Greifensee", + "lang" : "de-CH" + }, + { + "text" : "Réserve d'oiseaux d'eau et de migrateurs Greifensee", + "lang" : "fr-CH" + }, + { + "text" : "Riserva di uccelli acquatici e migratori Greifensee", + "lang" : "it-CH" + }, + { + "text" : "Water Bird and Migratory Bird Reserves Greifensee", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.2018617, 47.3180394 ], + [ 8.2018895, 47.3179699 ], + [ 8.2019256, 47.3179263 ], + [ 8.2020214, 47.3178705 ], + [ 8.2021288, 47.3178263 ], + [ 8.2020589, 47.3177999 ], + [ 8.2019512, 47.3177852 ], + [ 8.2017779, 47.3177907 ], + [ 8.2016568, 47.3177803 ], + [ 8.2015784, 47.3177654 ], + [ 8.201451, 47.3177483 ], + [ 8.2013639, 47.3177507 ], + [ 8.2013023, 47.3177319 ], + [ 8.2012289, 47.3176915 ], + [ 8.2011611, 47.3176746 ], + [ 8.2010406, 47.3176414 ], + [ 8.2009629, 47.3176171 ], + [ 8.2008921, 47.3175742 ], + [ 8.200848, 47.3175361 ], + [ 8.2008023, 47.3175073 ], + [ 8.200771, 47.3174932 ], + [ 8.2007185, 47.3174702 ], + [ 8.2006787, 47.3174606 ], + [ 8.2006252, 47.3174531 ], + [ 8.2005809, 47.3174179 ], + [ 8.200554, 47.3174007 ], + [ 8.2005261, 47.3173988 ], + [ 8.2004723, 47.3174107 ], + [ 8.2004154, 47.317409 ], + [ 8.2003563, 47.3173826 ], + [ 8.2003055, 47.317349899999996 ], + [ 8.2002741, 47.3173489 ], + [ 8.2002326, 47.3173483 ], + [ 8.2002063, 47.317332 ], + [ 8.2001775, 47.3173086 ], + [ 8.2001257, 47.3172933 ], + [ 8.2000995, 47.317284 ], + [ 8.2000798, 47.3172762 ], + [ 8.2000497, 47.3172814 ], + [ 8.200015, 47.3173018 ], + [ 8.200007, 47.3173233 ], + [ 8.1999947, 47.3173325 ], + [ 8.199961, 47.317343 ], + [ 8.1999157, 47.3173668 ], + [ 8.1998841, 47.3173938 ], + [ 8.1998821, 47.3174182 ], + [ 8.1998677, 47.3174501 ], + [ 8.1998428, 47.3174965 ], + [ 8.199821, 47.3175482 ], + [ 8.199819399999999, 47.3175985 ], + [ 8.1997912, 47.3176618 ], + [ 8.1997515, 47.3177062 ], + [ 8.1996986, 47.3177396 ], + [ 8.1996296, 47.3177623 ], + [ 8.1996112, 47.3177591 ], + [ 8.1995904, 47.3177551 ], + [ 8.1995543, 47.3177583 ], + [ 8.1995181, 47.3177531 ], + [ 8.1994899, 47.3177356 ], + [ 8.1994638, 47.3177329 ], + [ 8.1994376, 47.3177215 ], + [ 8.1994192, 47.317722 ], + [ 8.1994004, 47.3177312 ], + [ 8.1993334, 47.3177329 ], + [ 8.1992997, 47.3177331 ], + [ 8.1992689, 47.3177382 ], + [ 8.199227, 47.3177546 ], + [ 8.1991797, 47.3177586 ], + [ 8.1991337, 47.3177754 ], + [ 8.1990853, 47.317791 ], + [ 8.1990619, 47.3178163 ], + [ 8.1990309, 47.3178437 ], + [ 8.1990284, 47.3178747 ], + [ 8.1990253, 47.3179102 ], + [ 8.1990381, 47.3179345 ], + [ 8.1990268, 47.3179746 ], + [ 8.1990301, 47.3179985 ], + [ 8.1990364, 47.3180236 ], + [ 8.1990206, 47.3180435 ], + [ 8.1989759, 47.3180628 ], + [ 8.1989259, 47.3180957 ], + [ 8.1988816, 47.3181071 ], + [ 8.1988469, 47.3181251 ], + [ 8.198823, 47.3181533 ], + [ 8.1988222, 47.3181768 ], + [ 8.1988238, 47.3182106 ], + [ 8.1987818, 47.3182571 ], + [ 8.1987261, 47.3183012 ], + [ 8.1987098, 47.3183261 ], + [ 8.1987054, 47.3183517 ], + [ 8.1987108, 47.3183921 ], + [ 8.1987471, 47.3184496 ], + [ 8.1987595, 47.3184846 ], + [ 8.1987566, 47.3185313 ], + [ 8.198725, 47.3186087 ], + [ 8.1987259, 47.3186714 ], + [ 8.1987208, 47.3187292 ], + [ 8.1987003, 47.3187896 ], + [ 8.1986642, 47.3188348 ], + [ 8.1986645, 47.3188608 ], + [ 8.198684, 47.3188957 ], + [ 8.1986876, 47.3189423 ], + [ 8.1986733, 47.3189799 ], + [ 8.1986376, 47.3190132 ], + [ 8.1986161, 47.3190435 ], + [ 8.1985936, 47.3190877 ], + [ 8.1985923, 47.319122 ], + [ 8.1985995, 47.3191731 ], + [ 8.1986341, 47.3192303 ], + [ 8.1986397, 47.3192487 ], + [ 8.1986672, 47.3192667 ], + [ 8.1986913, 47.3192905 ], + [ 8.1987053, 47.3193132 ], + [ 8.1987026, 47.3193335 ], + [ 8.1986338, 47.3193856 ], + [ 8.198622, 47.3194323 ], + [ 8.1986169, 47.3194923 ], + [ 8.1986013, 47.3195242 ], + [ 8.1986191, 47.3195725 ], + [ 8.1985977, 47.3196074 ], + [ 8.198604, 47.3196367 ], + [ 8.198598, 47.3196768 ], + [ 8.198561, 47.3197035 ], + [ 8.1985631, 47.3197299 ], + [ 8.1985908, 47.3198 ], + [ 8.1985975, 47.3198541 ], + [ 8.1985828, 47.3199088 ], + [ 8.1985582, 47.3199763 ], + [ 8.1985354, 47.3200501 ], + [ 8.1985217, 47.3200911 ], + [ 8.1985252, 47.3201287 ], + [ 8.1985289, 47.320184 ], + [ 8.1985238, 47.320244 ], + [ 8.1984838, 47.320317 ], + [ 8.1984862, 47.3203579 ], + [ 8.1984802, 47.3203997 ], + [ 8.1984487, 47.3204375 ], + [ 8.1984034, 47.320473 ], + [ 8.1983604, 47.320498 ], + [ 8.1983447, 47.3205217 ], + [ 8.1982894, 47.3206014 ], + [ 8.1982641, 47.3206628 ], + [ 8.1982243, 47.3207035 ], + [ 8.1981665, 47.3207308 ], + [ 8.1981204, 47.3207451 ], + [ 8.1979994, 47.3207509 ], + [ 8.1979126, 47.3207398 ], + [ 8.1978178, 47.3207111 ], + [ 8.1977492, 47.3206859 ], + [ 8.1977047, 47.3206862 ], + [ 8.1976757, 47.3206909 ], + [ 8.1976351, 47.320678 ], + [ 8.1975659, 47.3206528 ], + [ 8.1975082, 47.3206399 ], + [ 8.1974758, 47.320617 ], + [ 8.1974099, 47.3206149 ], + [ 8.1973916, 47.3206154 ], + [ 8.1973043, 47.3206177 ], + [ 8.1972481, 47.3206333 ], + [ 8.1972356, 47.3206616 ], + [ 8.1971948, 47.320708 ], + [ 8.1971627, 47.3207437 ], + [ 8.1971531, 47.3207776 ], + [ 8.1971294, 47.3208243 ], + [ 8.1971153, 47.3208738 ], + [ 8.1970946, 47.3209239 ], + [ 8.1970755, 47.3209532 ], + [ 8.1970315, 47.3209898 ], + [ 8.1969935, 47.3210271 ], + [ 8.1969582, 47.321048 ], + [ 8.1969089, 47.3210817 ], + [ 8.1968403, 47.3210953 ], + [ 8.1967295, 47.3210948 ], + [ 8.1966567, 47.3211027 ], + [ 8.1965718, 47.3210958 ], + [ 8.1965029, 47.3210822 ], + [ 8.1964301, 47.3210497 ], + [ 8.1963653, 47.3210311 ], + [ 8.1963484, 47.3210098 ], + [ 8.1963427, 47.320983 ], + [ 8.1963283, 47.3209741 ], + [ 8.1963034, 47.3209726 ], + [ 8.1962816, 47.3209847 ], + [ 8.1962653, 47.321007 ], + [ 8.1962394, 47.3210187 ], + [ 8.1961585, 47.3210361 ], + [ 8.1960671, 47.3210746 ], + [ 8.1960207, 47.3211009 ], + [ 8.195999, 47.3211237 ], + [ 8.1959935, 47.3211493 ], + [ 8.1960051, 47.3211797 ], + [ 8.1960018, 47.3211971 ], + [ 8.1959865, 47.3212054 ], + [ 8.195964, 47.3212027 ], + [ 8.1959397, 47.3212016 ], + [ 8.1959196, 47.3212116 ], + [ 8.1958984, 47.321245 ], + [ 8.1958936, 47.3212629 ], + [ 8.1958954, 47.3212768 ], + [ 8.1959149, 47.3213106 ], + [ 8.1959209, 47.3213393 ], + [ 8.1959117, 47.3213548 ], + [ 8.1958842, 47.3213699 ], + [ 8.1958667, 47.321389 ], + [ 8.1958506, 47.3214217 ], + [ 8.1958206, 47.3214571 ], + [ 8.1957892, 47.3214723 ], + [ 8.1957716, 47.3214838 ], + [ 8.1957501, 47.3215072 ], + [ 8.1957049, 47.3215281 ], + [ 8.1956466, 47.3215475 ], + [ 8.1956176, 47.3215629 ], + [ 8.1955821, 47.3215967 ], + [ 8.1955455, 47.3216149 ], + [ 8.1954894, 47.3216218 ], + [ 8.1954459, 47.3216253 ], + [ 8.1954227, 47.3216341 ], + [ 8.1954138, 47.3216469 ], + [ 8.1954057, 47.3216608 ], + [ 8.1953567, 47.3216929 ], + [ 8.1953165, 47.3217284 ], + [ 8.1952951, 47.321757 ], + [ 8.1952887, 47.321778 ], + [ 8.1952864, 47.3218029 ], + [ 8.1952696, 47.3218207 ], + [ 8.1952734, 47.3218367 ], + [ 8.1952922, 47.3218455 ], + [ 8.1953228, 47.3218562 ], + [ 8.1953321, 47.3218672 ], + [ 8.1953265, 47.3218868 ], + [ 8.1953201, 47.3219077 ], + [ 8.195297, 47.3219258 ], + [ 8.1952934, 47.3219459 ], + [ 8.1953013, 47.3219678 ], + [ 8.1952967, 47.3219825 ], + [ 8.195274, 47.3219984 ], + [ 8.195262, 47.3220125 ], + [ 8.1952513, 47.3220666 ], + [ 8.1952388, 47.3221041 ], + [ 8.1952178, 47.3221232 ], + [ 8.1951803, 47.3221349 ], + [ 8.195165, 47.3221423 ], + [ 8.195164, 47.3221556 ], + [ 8.1951733, 47.3221686 ], + [ 8.1951752, 47.322184 ], + [ 8.1951562, 47.3222099 ], + [ 8.195142, 47.3222423 ], + [ 8.1951408, 47.3222656 ], + [ 8.1951551, 47.322294 ], + [ 8.1951793, 47.3223188 ], + [ 8.1951832, 47.3223413 ], + [ 8.1951706, 47.3223943 ], + [ 8.1951495, 47.3224395 ], + [ 8.1951328, 47.322458 ], + [ 8.1951124, 47.3224701 ], + [ 8.1950923, 47.3224817 ], + [ 8.1950763, 47.3224915 ], + [ 8.1950702, 47.3225078 ], + [ 8.1950728, 47.3225461 ], + [ 8.1950689, 47.3225784 ], + [ 8.1950467, 47.322623 ], + [ 8.1950087, 47.3226762 ], + [ 8.1949634, 47.3227576 ], + [ 8.1949368, 47.3227821 ], + [ 8.1948939, 47.3227997 ], + [ 8.1948194, 47.3228239 ], + [ 8.1947327, 47.3228581 ], + [ 8.1946693, 47.3228812 ], + [ 8.194609, 47.3229046 ], + [ 8.1945339, 47.3229311 ], + [ 8.1944745, 47.3229476 ], + [ 8.1944033, 47.3229636 ], + [ 8.194348, 47.3229727 ], + [ 8.194304, 47.3229787 ], + [ 8.1942687, 47.3229815 ], + [ 8.1942314, 47.322979 ], + [ 8.194197, 47.3229731 ], + [ 8.1941547, 47.3229631 ], + [ 8.194094400000001, 47.3229431 ], + [ 8.1940069, 47.3229153 ], + [ 8.1939024, 47.3228823 ], + [ 8.1938213, 47.3228595 ], + [ 8.1937405, 47.3228416 ], + [ 8.1936661, 47.3228304 ], + [ 8.1935663, 47.3228225 ], + [ 8.1935166, 47.3228223 ], + [ 8.1934766, 47.322826 ], + [ 8.1934348, 47.3228354 ], + [ 8.1933931, 47.3228514 ], + [ 8.1933408, 47.3228824 ], + [ 8.193305, 47.3229058 ], + [ 8.1932698, 47.3229331 ], + [ 8.1932498, 47.3229521 ], + [ 8.1932251, 47.3229805 ], + [ 8.1932044, 47.3230214 ], + [ 8.1931883, 47.3230545 ], + [ 8.1931789, 47.3230795 ], + [ 8.1931733, 47.3231032 ], + [ 8.1931712, 47.3231263 ], + [ 8.1931744, 47.3231617 ], + [ 8.1931804, 47.3231895 ], + [ 8.1931852, 47.323206 ], + [ 8.1932021, 47.3232415 ], + [ 8.1932148, 47.3232612 ], + [ 8.1932421, 47.3232859 ], + [ 8.1932883, 47.32332 ], + [ 8.1933473, 47.3233585 ], + [ 8.1933741, 47.3233725 ], + [ 8.1934425, 47.3234034 ], + [ 8.1935309, 47.3234396 ], + [ 8.1936138, 47.3234748 ], + [ 8.1937073, 47.3235123 ], + [ 8.193749, 47.3235311 ], + [ 8.1938014, 47.3235532 ], + [ 8.1938366, 47.3235628 ], + [ 8.1939102, 47.3235754 ], + [ 8.1939446, 47.3235783 ], + [ 8.1939877, 47.3235805 ], + [ 8.1940349, 47.3235833 ], + [ 8.1940661, 47.3235839 ], + [ 8.1940972, 47.3235828 ], + [ 8.1941779, 47.3235762 ], + [ 8.1943208, 47.323563 ], + [ 8.1943754, 47.3235588 ], + [ 8.1944336, 47.3235548 ], + [ 8.1945014, 47.323551 ], + [ 8.1945365, 47.3235482 ], + [ 8.1945715, 47.3235388 ], + [ 8.1946384, 47.3235162 ], + [ 8.1946651, 47.3235023 ], + [ 8.1947108, 47.3234682 ], + [ 8.1947576, 47.3234272 ], + [ 8.1947713, 47.3234098 ], + [ 8.1947802, 47.32339 ], + [ 8.1947933, 47.3233511 ], + [ 8.194801, 47.3233331 ], + [ 8.1948063, 47.3233195 ], + [ 8.1948271, 47.3232832 ], + [ 8.1948468, 47.3232475 ], + [ 8.1948535, 47.3232353 ], + [ 8.1948893, 47.3231631 ], + [ 8.1949386, 47.3230659 ], + [ 8.1949832, 47.3229834 ], + [ 8.1950139, 47.3229239 ], + [ 8.1950475, 47.3228615 ], + [ 8.195089, 47.3227827 ], + [ 8.1951266, 47.3227098 ], + [ 8.1951683, 47.3226304 ], + [ 8.1951859, 47.3225969 ], + [ 8.1952126, 47.3225522 ], + [ 8.1952266, 47.3225295 ], + [ 8.1952445, 47.3225006 ], + [ 8.1952594, 47.3224596 ], + [ 8.1952736, 47.3224019 ], + [ 8.1952805, 47.3223228 ], + [ 8.1952823, 47.3222686 ], + [ 8.1952897, 47.3222526 ], + [ 8.1953018, 47.3222357 ], + [ 8.195305, 47.3222164 ], + [ 8.1953017, 47.3221955 ], + [ 8.1953087, 47.3221714 ], + [ 8.1953236, 47.3221605 ], + [ 8.1953532, 47.3221467 ], + [ 8.195368, 47.3221285 ], + [ 8.1953696, 47.322116 ], + [ 8.1953643, 47.3220982 ], + [ 8.195364, 47.3220815 ], + [ 8.1953728, 47.3220651 ], + [ 8.1953769, 47.3220605 ], + [ 8.1953893, 47.3220399 ], + [ 8.1953958, 47.3220171 ], + [ 8.1954165, 47.3219773 ], + [ 8.195415, 47.3219632 ], + [ 8.1954131, 47.3219449 ], + [ 8.1954135, 47.3219228 ], + [ 8.1954143, 47.3219045 ], + [ 8.1954047, 47.3218796 ], + [ 8.195407, 47.3218623 ], + [ 8.195406, 47.3218454 ], + [ 8.1953859, 47.3218259 ], + [ 8.1953734, 47.3218198 ], + [ 8.1953606, 47.3218147 ], + [ 8.1953573, 47.3218048 ], + [ 8.1953624, 47.3217938 ], + [ 8.1953899, 47.3217765 ], + [ 8.1954117, 47.3217575 ], + [ 8.1954445, 47.3217413 ], + [ 8.1954731, 47.3217197 ], + [ 8.1954977, 47.3217037 ], + [ 8.1955188, 47.3217021 ], + [ 8.1955571, 47.3217068 ], + [ 8.1955895, 47.3217 ], + [ 8.195629, 47.3216796 ], + [ 8.1957067, 47.3216385 ], + [ 8.1957627, 47.3215932 ], + [ 8.1958125, 47.321568 ], + [ 8.1958521, 47.3215572 ], + [ 8.1958818, 47.3215461 ], + [ 8.1959232, 47.3215117 ], + [ 8.1959804, 47.3214704 ], + [ 8.1960006, 47.3214457 ], + [ 8.1960013, 47.3214295 ], + [ 8.1959916, 47.3214138 ], + [ 8.1959916, 47.3213996 ], + [ 8.1960115, 47.3213683 ], + [ 8.1960245, 47.3213402 ], + [ 8.1960335, 47.3213078 ], + [ 8.196039, 47.3212764 ], + [ 8.1960651, 47.3212373 ], + [ 8.196079, 47.3212138 ], + [ 8.1961062, 47.3211984 ], + [ 8.1961406, 47.3211752 ], + [ 8.196177, 47.3211526 ], + [ 8.1962122, 47.3211265 ], + [ 8.1962463, 47.3211136 ], + [ 8.196284, 47.3211119 ], + [ 8.1963123, 47.3211207 ], + [ 8.1963444, 47.3211467 ], + [ 8.1963649, 47.3211574 ], + [ 8.1964006, 47.321162 ], + [ 8.1964582, 47.321166 ], + [ 8.1964993, 47.3211773 ], + [ 8.196527, 47.3211944 ], + [ 8.1965564, 47.3212046 ], + [ 8.1966045, 47.3212049 ], + [ 8.1966533, 47.3212077 ], + [ 8.1966819, 47.3212106 ], + [ 8.1967855, 47.3212234 ], + [ 8.1968324, 47.3212188 ], + [ 8.1969253, 47.3212019 ], + [ 8.1970399, 47.3211716 ], + [ 8.1970777, 47.3211576 ], + [ 8.1971122, 47.3211389 ], + [ 8.1971405, 47.321108 ], + [ 8.1971586, 47.3210701 ], + [ 8.1971626, 47.3210426 ], + [ 8.1971667, 47.3210172 ], + [ 8.1971846, 47.3209929 ], + [ 8.1972043, 47.3209542 ], + [ 8.1972106, 47.3209353 ], + [ 8.197216, 47.320894 ], + [ 8.1972177, 47.3208516 ], + [ 8.1972292, 47.320826 ], + [ 8.1972616, 47.320792 ], + [ 8.1973084, 47.3207626 ], + [ 8.1973541, 47.3207496 ], + [ 8.1974196, 47.3207378 ], + [ 8.1974697, 47.3207338 ], + [ 8.1975028, 47.3207413 ], + [ 8.1975763, 47.3207665 ], + [ 8.1976384, 47.3207755 ], + [ 8.1977567, 47.320794 ], + [ 8.1978204, 47.3208163 ], + [ 8.1978476, 47.3208358 ], + [ 8.1978792, 47.3208512 ], + [ 8.1978935, 47.3208711 ], + [ 8.1979182, 47.3208816 ], + [ 8.1979535, 47.3208766 ], + [ 8.1979913, 47.3208807 ], + [ 8.1980232, 47.3208787 ], + [ 8.1980455, 47.3208721 ], + [ 8.1980651, 47.3208562 ], + [ 8.1980876, 47.3208482 ], + [ 8.1981172, 47.3208498 ], + [ 8.1981776, 47.3208634 ], + [ 8.1981939, 47.3208618 ], + [ 8.1982111, 47.320849 ], + [ 8.1982323, 47.320835 ], + [ 8.1982457, 47.3208334 ], + [ 8.1982706, 47.3208356 ], + [ 8.1983064, 47.3208482 ], + [ 8.1983283, 47.3208479 ], + [ 8.1983529, 47.3208377 ], + [ 8.1983907, 47.3208088 ], + [ 8.1984145, 47.3207789 ], + [ 8.1984212, 47.3207525 ], + [ 8.198436, 47.3207342 ], + [ 8.198462899999999, 47.3207175 ], + [ 8.1984703, 47.3207041 ], + [ 8.198468, 47.3206881 ], + [ 8.1984655, 47.320663 ], + [ 8.1984738, 47.3206393 ], + [ 8.1984995, 47.3206135 ], + [ 8.1985387, 47.3205798 ], + [ 8.1985499, 47.3205574 ], + [ 8.1985689, 47.3205029 ], + [ 8.1985761, 47.3204714 ], + [ 8.1985916, 47.3204508 ], + [ 8.1986306, 47.3204371 ], + [ 8.1986601, 47.3204228 ], + [ 8.1986871, 47.3203989 ], + [ 8.1986924, 47.3203754 ], + [ 8.1987012, 47.3203259 ], + [ 8.1987159, 47.3202654 ], + [ 8.1987403, 47.3202233 ], + [ 8.1987431, 47.3201945 ], + [ 8.1987468, 47.3201147 ], + [ 8.1987371, 47.3200624 ], + [ 8.1987412, 47.3200397 ], + [ 8.198761, 47.3200111 ], + [ 8.198802, 47.3199739 ], + [ 8.1988097, 47.3199509 ], + [ 8.1988118, 47.3199324 ], + [ 8.1988091, 47.3199065 ], + [ 8.1988121, 47.3198642 ], + [ 8.1988047, 47.3198394 ], + [ 8.1987742, 47.3198087 ], + [ 8.1987592, 47.3197781 ], + [ 8.1987562, 47.3197343 ], + [ 8.19877, 47.3196682 ], + [ 8.1988016, 47.3196001 ], + [ 8.1988125, 47.3195517 ], + [ 8.1988141, 47.3195277 ], + [ 8.1987986, 47.3194861 ], + [ 8.1988006, 47.3194613 ], + [ 8.1988138, 47.3194399 ], + [ 8.1988413, 47.3193925 ], + [ 8.1988391, 47.3193749 ], + [ 8.198816, 47.3193303 ], + [ 8.1988025, 47.319297 ], + [ 8.1988069, 47.3192718 ], + [ 8.1988296, 47.319248 ], + [ 8.1988341, 47.3192269 ], + [ 8.198824, 47.3192091 ], + [ 8.1987953, 47.3191971 ], + [ 8.1987813, 47.319182 ], + [ 8.1987768, 47.3191409 ], + [ 8.1987975, 47.3190903 ], + [ 8.1988296, 47.31906 ], + [ 8.1988615, 47.3190217 ], + [ 8.1988598, 47.3190059 ], + [ 8.1988393, 47.3189884 ], + [ 8.1988388, 47.3189752 ], + [ 8.1988637, 47.3189474 ], + [ 8.1988786, 47.3189304 ], + [ 8.198881, 47.3189031 ], + [ 8.1988883, 47.3188539 ], + [ 8.1989021, 47.3188249 ], + [ 8.1989211, 47.3187902 ], + [ 8.1989313, 47.3187548 ], + [ 8.1989437, 47.3186976 ], + [ 8.1989527, 47.3186617 ], + [ 8.1989789, 47.3186068 ], + [ 8.1989983, 47.318549 ], + [ 8.1989964, 47.3184855 ], + [ 8.1989792, 47.318444 ], + [ 8.1989575, 47.3184159 ], + [ 8.1989244, 47.3183944 ], + [ 8.1989017, 47.3183569 ], + [ 8.1988877, 47.3183427 ], + [ 8.1988866, 47.3183165 ], + [ 8.1989278, 47.3182624 ], + [ 8.1989811, 47.3182209 ], + [ 8.1989888, 47.3182013 ], + [ 8.1989825, 47.3181753 ], + [ 8.1989894, 47.3181582 ], + [ 8.1990177, 47.3181425 ], + [ 8.1990557, 47.3181117 ], + [ 8.1990908, 47.3181026 ], + [ 8.1991267, 47.3180648 ], + [ 8.1992116, 47.3179856 ], + [ 8.199285, 47.3179402 ], + [ 8.1993359, 47.3179285 ], + [ 8.199421, 47.3179274 ], + [ 8.1994637, 47.3179236 ], + [ 8.1994972, 47.3179192 ], + [ 8.199542, 47.31792 ], + [ 8.199694, 47.3179271 ], + [ 8.199747, 47.3179218 ], + [ 8.1997967, 47.3179101 ], + [ 8.1998561, 47.3178791 ], + [ 8.1998649, 47.3178594 ], + [ 8.199875, 47.3178434 ], + [ 8.1998959, 47.3178358 ], + [ 8.1999215, 47.3178293 ], + [ 8.1999427, 47.3178195 ], + [ 8.1999685, 47.3177947 ], + [ 8.1999884, 47.3177736 ], + [ 8.2000009, 47.3177573 ], + [ 8.2000005, 47.3177297 ], + [ 8.1999982, 47.3177001 ], + [ 8.2000046, 47.3176764 ], + [ 8.2000014, 47.3176444 ], + [ 8.1999861, 47.3175912 ], + [ 8.1999857, 47.3175589 ], + [ 8.2000028, 47.3175337 ], + [ 8.2000354, 47.3175183 ], + [ 8.2001095, 47.3174904 ], + [ 8.2001422, 47.3174795 ], + [ 8.2001699, 47.3174812 ], + [ 8.2001899, 47.3174933 ], + [ 8.2002476, 47.3175213 ], + [ 8.2002853, 47.3175313 ], + [ 8.2003272, 47.3175288 ], + [ 8.2003923, 47.3175397 ], + [ 8.2004357, 47.3175651 ], + [ 8.2004512, 47.3175733 ], + [ 8.2004786, 47.3175789 ], + [ 8.2005455, 47.3175818 ], + [ 8.2006055, 47.3175977 ], + [ 8.2006651, 47.3176219 ], + [ 8.2007144, 47.3176592 ], + [ 8.2007547, 47.3177098 ], + [ 8.2008309, 47.3177465 ], + [ 8.200888, 47.3177775 ], + [ 8.2009396, 47.317814 ], + [ 8.2009559, 47.3178256 ], + [ 8.2010359, 47.3178408 ], + [ 8.20108, 47.3178405 ], + [ 8.2011366, 47.3178316 ], + [ 8.2012059, 47.3178368 ], + [ 8.2012377, 47.3178523 ], + [ 8.2012632, 47.3178764 ], + [ 8.2013368, 47.3178831 ], + [ 8.2014062, 47.3178883 ], + [ 8.2014904, 47.3179035 ], + [ 8.2016257, 47.3179683 ], + [ 8.2016826, 47.3179879 ], + [ 8.2017667, 47.3179902 ], + [ 8.2018006, 47.3180128 ], + [ 8.2018617, 47.3180394 ] + ], + [ + [ 8.1940487, 47.3230971 ], + [ 8.1940342, 47.3231 ], + [ 8.1940207, 47.3231001 ], + [ 8.194007, 47.3230978 ], + [ 8.1939903, 47.32311 ], + [ 8.1939547, 47.3231019 ], + [ 8.193941, 47.3231219 ], + [ 8.1939308, 47.3231369 ], + [ 8.1938313, 47.3232827 ], + [ 8.1938423, 47.3232956 ], + [ 8.193838, 47.3233065 ], + [ 8.1938314, 47.3233178 ], + [ 8.1938252, 47.3233256 ], + [ 8.1938159, 47.3233341 ], + [ 8.1938084, 47.3233414 ], + [ 8.1938019, 47.3233484 ], + [ 8.1938114, 47.3233558 ], + [ 8.1938177, 47.3233679 ], + [ 8.1938169, 47.3233808 ], + [ 8.1938093, 47.3233925 ], + [ 8.193798, 47.3234005 ], + [ 8.1937836, 47.3234057 ], + [ 8.1937675, 47.3234074 ], + [ 8.1937514, 47.3234056 ], + [ 8.1937376, 47.323401 ], + [ 8.1937264, 47.3233938 ], + [ 8.1937189, 47.3233846 ], + [ 8.1937158, 47.3233744 ], + [ 8.1937175, 47.3233699 ], + [ 8.1937193, 47.3233654 ], + [ 8.1937213, 47.323361 ], + [ 8.1937236, 47.3233565 ], + [ 8.1937088, 47.323351 ], + [ 8.1936958, 47.3233462 ], + [ 8.193682, 47.3233416 ], + [ 8.1936674, 47.3233372 ], + [ 8.1936547, 47.3233331 ], + [ 8.1936421, 47.3233281 ], + [ 8.1936302, 47.3233234 ], + [ 8.1936168, 47.323319 ], + [ 8.1936048, 47.3233142 ], + [ 8.1935931, 47.3233098 ], + [ 8.1935806, 47.3233047 ], + [ 8.1935687, 47.3233007 ], + [ 8.1935565, 47.3232956 ], + [ 8.1935439, 47.3232917 ], + [ 8.1935307, 47.3232864 ], + [ 8.1935192, 47.3232821 ], + [ 8.193507, 47.3232764 ], + [ 8.1934954, 47.3232713 ], + [ 8.1934855, 47.323266 ], + [ 8.1934738, 47.3232601 ], + [ 8.1934629, 47.3232539 ], + [ 8.1934526, 47.3232481 ], + [ 8.1934415, 47.323241 ], + [ 8.1934316, 47.3232354 ], + [ 8.1934207, 47.3232285 ], + [ 8.1934114, 47.3232227 ], + [ 8.1934018, 47.323215 ], + [ 8.1933934, 47.3232069 ], + [ 8.1933865, 47.3231987 ], + [ 8.1933805, 47.3231905 ], + [ 8.1933762, 47.3231814 ], + [ 8.1933729, 47.3231725 ], + [ 8.1933705, 47.3231621 ], + [ 8.1933701, 47.3231526 ], + [ 8.1933698, 47.3231431 ], + [ 8.1933699, 47.3231332 ], + [ 8.1933712, 47.3231249 ], + [ 8.1933736, 47.3231154 ], + [ 8.1933774, 47.3231063 ], + [ 8.1933809, 47.3230975 ], + [ 8.1933855, 47.3230871 ], + [ 8.1933879, 47.3230795 ], + [ 8.1933932, 47.3230693 ], + [ 8.1933971, 47.323061 ], + [ 8.193403, 47.3230514 ], + [ 8.193408699999999, 47.3230441 ], + [ 8.1934143, 47.3230357 ], + [ 8.1934209, 47.3230279 ], + [ 8.1934295, 47.3230188 ], + [ 8.1934365, 47.3230118 ], + [ 8.1934454, 47.323004 ], + [ 8.1934531, 47.3229971 ], + [ 8.1934631, 47.3229889 ], + [ 8.1934727, 47.3229826 ], + [ 8.1934839, 47.3229772 ], + [ 8.1934941, 47.3229725 ], + [ 8.1935067, 47.3229678 ], + [ 8.1935183, 47.3229635 ], + [ 8.1935327, 47.3229611 ], + [ 8.1935448, 47.3229599 ], + [ 8.1935591, 47.32296 ], + [ 8.1935699, 47.3229599 ], + [ 8.1935831, 47.3229597 ], + [ 8.1935938, 47.3229599 ], + [ 8.1936072, 47.3229603 ], + [ 8.1936183, 47.322961 ], + [ 8.1936345, 47.3229617 ], + [ 8.1936456, 47.3229629 ], + [ 8.1936611, 47.3229636 ], + [ 8.1936743, 47.322965 ], + [ 8.1936899, 47.3229666 ], + [ 8.193701, 47.3229686 ], + [ 8.1937156, 47.3229707 ], + [ 8.193728, 47.3229729 ], + [ 8.1937426, 47.3229754 ], + [ 8.1937546, 47.3229793 ], + [ 8.1937674, 47.3229828 ], + [ 8.1937808, 47.3229865 ], + [ 8.193794, 47.3229901 ], + [ 8.1938065, 47.3229942 ], + [ 8.1938234, 47.3229989 ], + [ 8.1938419, 47.3229754 ], + [ 8.1938754, 47.3229877 ], + [ 8.1938579, 47.3230117 ], + [ 8.193923999999999, 47.3230358 ], + [ 8.1939442, 47.3230129 ], + [ 8.1939778, 47.3230251 ], + [ 8.1939609, 47.3230494 ], + [ 8.1939864, 47.3230586 ], + [ 8.1939932, 47.3230501 ], + [ 8.1940065, 47.3230439 ], + [ 8.1940235, 47.3230413 ], + [ 8.1940392, 47.3230425 ], + [ 8.1940533, 47.3230472 ], + [ 8.1940643, 47.3230547 ], + [ 8.1940698, 47.3230644 ], + [ 8.1940699, 47.3230739 ], + [ 8.1940661, 47.3230835 ], + [ 8.1940581, 47.3230906 ], + [ 8.1940487, 47.3230971 ] + ], + [ + [ 8.1946696, 47.3233596 ], + [ 8.1946489, 47.3233848 ], + [ 8.194628699999999, 47.3234042 ], + [ 8.1946137, 47.3234142 ], + [ 8.1945972, 47.3234273 ], + [ 8.1945794, 47.3234401 ], + [ 8.1945617, 47.323451 ], + [ 8.1945433, 47.3234616 ], + [ 8.1945165, 47.3234742 ], + [ 8.1944863, 47.3234802 ], + [ 8.1944587, 47.3234829 ], + [ 8.1944306, 47.3234811 ], + [ 8.1944037, 47.3234788 ], + [ 8.1943721, 47.3234765 ], + [ 8.1943357, 47.3234733 ], + [ 8.1943157, 47.3234704 ], + [ 8.1942724, 47.3234637 ], + [ 8.1942375, 47.3234591 ], + [ 8.1942123, 47.3234561 ], + [ 8.1941871, 47.3234529 ], + [ 8.194162, 47.3234494 ], + [ 8.194143799999999, 47.3234474 ], + [ 8.1941257, 47.3234449 ], + [ 8.1941078, 47.3234417 ], + [ 8.1940675, 47.3234248 ], + [ 8.1939128, 47.3233504 ], + [ 8.1939212, 47.3233424 ], + [ 8.19393, 47.3233466 ], + [ 8.1939566, 47.3233058 ], + [ 8.1939922, 47.323252 ], + [ 8.1940294, 47.323198 ], + [ 8.1940441, 47.3231755 ], + [ 8.1940584, 47.3231536 ], + [ 8.1940778, 47.3231259 ], + [ 8.1941013, 47.3231108 ], + [ 8.1941183, 47.3230995 ], + [ 8.1941397, 47.3230897 ], + [ 8.1941604, 47.3230822 ], + [ 8.1941834, 47.3230755 ], + [ 8.1942067, 47.3230721 ], + [ 8.1942303, 47.3230698 ], + [ 8.1942523, 47.3230672 ], + [ 8.1942754, 47.3230645 ], + [ 8.1942978, 47.3230624 ], + [ 8.1943189, 47.3230606 ], + [ 8.1943434, 47.3230564 ], + [ 8.1943688, 47.3230544 ], + [ 8.1945367, 47.3230518 ], + [ 8.1945986, 47.3230531 ], + [ 8.1946373, 47.3230557 ], + [ 8.1947096, 47.3230667 ], + [ 8.1947473, 47.3230756 ], + [ 8.1947597, 47.3230987 ], + [ 8.1947684, 47.3231196 ], + [ 8.1947703, 47.3231363 ], + [ 8.1947703, 47.3231582 ], + [ 8.1947666, 47.323172 ], + [ 8.1947583, 47.3232042 ], + [ 8.1947379, 47.3232428 ], + [ 8.1947208, 47.3232783 ], + [ 8.1946912, 47.3233261 ], + [ 8.1946696, 47.3233596 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "KTAG201", + "country" : "CHE", + "name" : [ + { + "text" : "Aabach", + "lang" : "de-CH" + }, + { + "text" : "Aabach", + "lang" : "fr-CH" + }, + { + "text" : "Aabach", + "lang" : "it-CH" + }, + { + "text" : "Aabach", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "regulationExemption" : "NO", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "schedule" : [ + { + "day" : [ "ANY" ], + "startTime" : "00:00:00.00+01:00", + "endTime" : "00:00:00.00+01:00" + } + ] + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Aargau", + "lang" : "de-CH" + }, + { + "text" : "Canton d'Argovie", + "lang" : "fr-CH" + }, + { + "text" : "Canton Argovia", + "lang" : "it-CH" + }, + { + "text" : "Canton of Aargau", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Departement Bau, Verkehr und Umwelt (BVU)", + "lang" : "de-CH" + }, + { + "text" : "Département de la construction, des transports et de l'environnement (CTE)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento delle costruzioni, dei trasporti e dell'ambiente (CTA)", + "lang" : "it-CH" + }, + { + "text" : "Department of Civil Engineering,Transport and Environment (CTE)", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Sektion Gewässernutzung", + "lang" : "de-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "fr-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "it-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ag.ch/de/verwaltung/bvu/umwelt-natur-landschaft/hochwasserschutz-gewaesser/gewaessernutzung", + "email" : "alg@ag.ch", + "phone" : "0041 62 835 34 50", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.6032871, 47.2578789 ], + [ 8.6032785, 47.2577377 ], + [ 8.6032592, 47.2575971 ], + [ 8.6032291, 47.2574573 ], + [ 8.6031882, 47.2573188 ], + [ 8.6031368, 47.2571819 ], + [ 8.6030749, 47.2570471 ], + [ 8.6030027, 47.2569146 ], + [ 8.6029205, 47.2567849 ], + [ 8.6028284, 47.2566583 ], + [ 8.6027267, 47.2565352 ], + [ 8.6026157, 47.2564159 ], + [ 8.6024956, 47.2563006 ], + [ 8.6023669, 47.2561898 ], + [ 8.6022298, 47.2560838 ], + [ 8.6020847, 47.2559828 ], + [ 8.601932099999999, 47.2558871 ], + [ 8.6017724, 47.2557969 ], + [ 8.6016059, 47.2557126 ], + [ 8.6014332, 47.2556343 ], + [ 8.6012547, 47.2555623 ], + [ 8.6010709, 47.2554967 ], + [ 8.6008823, 47.2554378 ], + [ 8.6006894, 47.2553857 ], + [ 8.6004928, 47.2553405 ], + [ 8.600293, 47.2553024 ], + [ 8.6000906, 47.2552714 ], + [ 8.599886, 47.2552477 ], + [ 8.5996799, 47.2552314 ], + [ 8.599472800000001, 47.2552224 ], + [ 8.5992654, 47.2552208 ], + [ 8.599058, 47.2552266 ], + [ 8.5988515, 47.2552397 ], + [ 8.5986462, 47.2552602 ], + [ 8.5984427, 47.255288 ], + [ 8.598241699999999, 47.255323 ], + [ 8.5980437, 47.2553651 ], + [ 8.5978491, 47.2554143 ], + [ 8.597658599999999, 47.2554703 ], + [ 8.5974727, 47.2555329 ], + [ 8.5972918, 47.2556022 ], + [ 8.5971165, 47.2556778 ], + [ 8.5969473, 47.2557595 ], + [ 8.5967845, 47.2558471 ], + [ 8.5966287, 47.2559405 ], + [ 8.5964803, 47.2560392 ], + [ 8.596339799999999, 47.2561431 ], + [ 8.5962073, 47.2562519 ], + [ 8.5960835, 47.2563652 ], + [ 8.5959685, 47.2564828 ], + [ 8.5958627, 47.2566043 ], + [ 8.5957663, 47.2567294 ], + [ 8.5956798, 47.2568578 ], + [ 8.5956032, 47.2569891 ], + [ 8.5955368, 47.257123 ], + [ 8.5954808, 47.257259 ], + [ 8.5954354, 47.2573968 ], + [ 8.5954006, 47.2575361 ], + [ 8.5953765, 47.2576764 ], + [ 8.5953633, 47.2578174 ], + [ 8.5953609, 47.2579587 ], + [ 8.5953694, 47.2580998 ], + [ 8.5953888, 47.2582405 ], + [ 8.5954189, 47.2583803 ], + [ 8.5954597, 47.2585188 ], + [ 8.5955111, 47.2586556 ], + [ 8.595573, 47.2587905 ], + [ 8.5956451, 47.2589229 ], + [ 8.5957273, 47.2590527 ], + [ 8.5958194, 47.2591792 ], + [ 8.5959211, 47.2593024 ], + [ 8.5960321, 47.2594217 ], + [ 8.5961522, 47.259537 ], + [ 8.5962809, 47.2596478 ], + [ 8.596418, 47.2597538 ], + [ 8.596563100000001, 47.2598549 ], + [ 8.5967157, 47.2599506 ], + [ 8.5968754, 47.2600407 ], + [ 8.5970419, 47.2601251 ], + [ 8.5972147, 47.2602034 ], + [ 8.597393199999999, 47.2602754 ], + [ 8.597577, 47.260341 ], + [ 8.5977656, 47.2603999 ], + [ 8.5979585, 47.260452 ], + [ 8.5981551, 47.2604972 ], + [ 8.5983549, 47.2605353 ], + [ 8.5985573, 47.2605663 ], + [ 8.5987619, 47.26059 ], + [ 8.598968, 47.2606063 ], + [ 8.5991751, 47.2606153 ], + [ 8.5993826, 47.2606169 ], + [ 8.59959, 47.2606112 ], + [ 8.5997966, 47.260598 ], + [ 8.6000019, 47.2605775 ], + [ 8.6002054, 47.2605497 ], + [ 8.6004064, 47.2605147 ], + [ 8.6006045, 47.2604726 ], + [ 8.600799, 47.2604234 ], + [ 8.6009896, 47.2603674 ], + [ 8.6011755, 47.2603048 ], + [ 8.6013564, 47.2602355 ], + [ 8.6015317, 47.2601599 ], + [ 8.601701, 47.2600782 ], + [ 8.6018637, 47.2599905 ], + [ 8.6020195, 47.2598972 ], + [ 8.6021679, 47.2597985 ], + [ 8.6023085, 47.2596945 ], + [ 8.6024409, 47.259585799999996 ], + [ 8.6025647, 47.2594724 ], + [ 8.6026797, 47.2593548 ], + [ 8.6027855, 47.2592333 ], + [ 8.6028818, 47.2591082 ], + [ 8.6029684, 47.2589798 ], + [ 8.6030449, 47.2588485 ], + [ 8.6031113, 47.2587146 ], + [ 8.6031672, 47.2585786 ], + [ 8.6032127, 47.2584407 ], + [ 8.6032475, 47.2583015 ], + [ 8.6032715, 47.2581611 ], + [ 8.6032847, 47.2580202 ], + [ 8.6032871, 47.2578789 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "HOR0001", + "country" : "CHE", + "name" : [ + { + "text" : "Gefängnis Horgen", + "lang" : "de-CH" + }, + { + "text" : "Gefängnis Horgen", + "lang" : "fr-CH" + }, + { + "text" : "Gefängnis Horgen", + "lang" : "it-CH" + }, + { + "text" : "Gefängnis Horgen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "de-CH" + }, + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "fr-CH" + }, + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "it-CH" + }, + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "de-CH" + }, + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "fr-CH" + }, + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "it-CH" + }, + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Reno Berner", + "lang" : "de-CH" + }, + { + "text" : "Reno Berner", + "lang" : "fr-CH" + }, + { + "text" : "Reno Berner", + "lang" : "it-CH" + }, + { + "text" : "Reno Berner", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.zh.ch/de/direktion-der-justiz-und-des-innern/justizvollzug-wiedereingliederung.html", + "email" : "sicherheit-juwe@ji.zh.ch", + "phone" : "0041432583400", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT12H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.335214, 46.8296418 ], + [ 8.3352135, 46.8297017 ], + [ 8.3348722, 46.8303632 ], + [ 8.334879, 46.8311964 ], + [ 8.3350703, 46.8313868 ], + [ 8.3351516, 46.8314677 ], + [ 8.3352066, 46.8314953 ], + [ 8.3358786, 46.8318332 ], + [ 8.3357826, 46.8319919 ], + [ 8.3356983, 46.8321311 ], + [ 8.3356981, 46.8322425 ], + [ 8.3356975, 46.832495 ], + [ 8.3356975, 46.8325238 ], + [ 8.3357563, 46.8326639 ], + [ 8.3359429, 46.8331083 ], + [ 8.3352114, 46.8336263 ], + [ 8.3342502, 46.8337833 ], + [ 8.3325529, 46.8337309 ], + [ 8.3324866, 46.8337133 ], + [ 8.3322623, 46.8336536 ], + [ 8.3322761, 46.8338342 ], + [ 8.3325803, 46.8378285 ], + [ 8.3316471, 46.8399484 ], + [ 8.3311996, 46.8403277 ], + [ 8.3311469, 46.8403723 ], + [ 8.3311254, 46.8405082 ], + [ 8.3310226, 46.84116 ], + [ 8.3308783, 46.8412589 ], + [ 8.3302394, 46.8417977 ], + [ 8.3300341, 46.8418014 ], + [ 8.3291682, 46.8421763 ], + [ 8.329161, 46.8422 ], + [ 8.328964, 46.8428528 ], + [ 8.3289452, 46.842915 ], + [ 8.328941, 46.8431061 ], + [ 8.3289287, 46.8436642 ], + [ 8.3286799, 46.8442395 ], + [ 8.3285014, 46.8446967 ], + [ 8.3284996, 46.8447185 ], + [ 8.3287505, 46.8447758 ], + [ 8.3288142, 46.8447962 ], + [ 8.3290528, 46.8448923 ], + [ 8.3292203, 46.8449681 ], + [ 8.3293189, 46.844998 ], + [ 8.3294296, 46.8450416 ], + [ 8.3295352, 46.8450633 ], + [ 8.3296163, 46.8450786 ], + [ 8.3296982, 46.8450799 ], + [ 8.3297524, 46.8450992 ], + [ 8.3298191, 46.845121 ], + [ 8.3299084, 46.8451291 ], + [ 8.3299195, 46.8451301 ], + [ 8.3299912, 46.8451188 ], + [ 8.330069, 46.8451063 ], + [ 8.3301537, 46.8451284 ], + [ 8.3302457, 46.8451397 ], + [ 8.330295, 46.8451561 ], + [ 8.3303611, 46.8451786 ], + [ 8.3304484, 46.8452022 ], + [ 8.3305233, 46.8452089 ], + [ 8.3306313, 46.845218 ], + [ 8.3306883, 46.845231 ], + [ 8.3306955, 46.845233 ], + [ 8.3307685, 46.8452527 ], + [ 8.3308314, 46.8452655 ], + [ 8.3308758, 46.8452594 ], + [ 8.3309339, 46.8452529 ], + [ 8.3309512, 46.845251 ], + [ 8.3310629, 46.8452462 ], + [ 8.3311885, 46.8452433 ], + [ 8.3312805, 46.8452661 ], + [ 8.3313958, 46.8452812 ], + [ 8.3315356, 46.8452973 ], + [ 8.3316951, 46.8453228 ], + [ 8.3318413, 46.8453286 ], + [ 8.3319806, 46.8453355 ], + [ 8.3320464, 46.8453349 ], + [ 8.3320834, 46.8453509 ], + [ 8.3321473, 46.8453682 ], + [ 8.3322483, 46.845387099999996 ], + [ 8.3323085, 46.8454129 ], + [ 8.3323554, 46.845433 ], + [ 8.3324496, 46.8454597 ], + [ 8.33254, 46.8454756 ], + [ 8.3325899, 46.8454738 ], + [ 8.3326533, 46.8454714 ], + [ 8.3327441, 46.845501 ], + [ 8.3328817, 46.8455353 ], + [ 8.3329893, 46.8455544 ], + [ 8.3330267, 46.8455819 ], + [ 8.3330915, 46.845608 ], + [ 8.3332033, 46.8456677 ], + [ 8.3332969, 46.8457135 ], + [ 8.3333302, 46.8457667 ], + [ 8.3333839, 46.8458301 ], + [ 8.3334857, 46.8459148 ], + [ 8.3335684, 46.8460002 ], + [ 8.3336841, 46.8460772 ], + [ 8.333781, 46.8461227 ], + [ 8.3339125, 46.8461484 ], + [ 8.3340424, 46.8461833 ], + [ 8.334161, 46.8462038 ], + [ 8.3342, 46.8462105 ], + [ 8.334366, 46.8462246 ], + [ 8.3345467, 46.8462376 ], + [ 8.3346659, 46.8462372 ], + [ 8.3348372, 46.8462773 ], + [ 8.3349794, 46.8463041 ], + [ 8.3351161, 46.8463339 ], + [ 8.3352868, 46.8463684 ], + [ 8.335405, 46.8463666 ], + [ 8.3355088, 46.8463822 ], + [ 8.3355801, 46.8464067 ], + [ 8.335614, 46.8464215 ], + [ 8.3356182, 46.846423 ], + [ 8.3357103, 46.8464423 ], + [ 8.3357632, 46.8464579 ], + [ 8.3358087, 46.8464705 ], + [ 8.3358348, 46.8464777 ], + [ 8.335852299999999, 46.8465009 ], + [ 8.3358682, 46.8465485 ], + [ 8.3358621, 46.8465817 ], + [ 8.3358919, 46.8466323 ], + [ 8.3359356, 46.8466583 ], + [ 8.3359559, 46.8466958 ], + [ 8.3360178, 46.8467529 ], + [ 8.3360728, 46.8467732 ], + [ 8.3361634, 46.8468017 ], + [ 8.3362402, 46.8468603 ], + [ 8.3363316, 46.8469199 ], + [ 8.3364992, 46.8469929 ], + [ 8.3365863, 46.8470528 ], + [ 8.3366468, 46.8471029 ], + [ 8.3367446, 46.8471147 ], + [ 8.3369017, 46.8471337 ], + [ 8.336973799999999, 46.8471424 ], + [ 8.3369747, 46.8471431 ], + [ 8.3370211, 46.8471796 ], + [ 8.3370704, 46.8472323 ], + [ 8.3371186, 46.8472833 ], + [ 8.3371254, 46.8472905 ], + [ 8.3371969, 46.8473184 ], + [ 8.3372948, 46.8473361 ], + [ 8.3373401, 46.8473407 ], + [ 8.3373926, 46.8473385 ], + [ 8.3374884, 46.8473329 ], + [ 8.337588, 46.8473565 ], + [ 8.337689, 46.8473762 ], + [ 8.3378066, 46.8473964 ], + [ 8.3378892, 46.8474471 ], + [ 8.3379656, 46.847479 ], + [ 8.3380439, 46.8474976 ], + [ 8.3381025, 46.8474927 ], + [ 8.3381278, 46.8474906 ], + [ 8.3381902, 46.8474685 ], + [ 8.33825, 46.8474738 ], + [ 8.3382692, 46.8474784 ], + [ 8.338369, 46.8475023 ], + [ 8.338451599999999, 46.8475338 ], + [ 8.338527, 46.847586 ], + [ 8.3385922, 46.8476448 ], + [ 8.3386444, 46.8477016 ], + [ 8.3386485, 46.8477142 ], + [ 8.3386705, 46.847781 ], + [ 8.338693, 46.8478575 ], + [ 8.3387298, 46.8479309 ], + [ 8.3387694, 46.8479962 ], + [ 8.3387975, 46.8480637 ], + [ 8.3388497, 46.8481296 ], + [ 8.3388997, 46.8481751 ], + [ 8.3389267, 46.8481997 ], + [ 8.3389951, 46.8482568 ], + [ 8.3390491, 46.8482992 ], + [ 8.3390945, 46.8483563 ], + [ 8.339166, 46.8484094 ], + [ 8.3392447, 46.8484586 ], + [ 8.3392767, 46.8484804 ], + [ 8.3393422, 46.8484809 ], + [ 8.3394135, 46.8484896 ], + [ 8.3394981, 46.8485584 ], + [ 8.3396199, 46.84858 ], + [ 8.3396693, 46.8485794 ], + [ 8.3397809, 46.8486035 ], + [ 8.3398582, 46.8486322 ], + [ 8.3399602, 46.8486396 ], + [ 8.3400601, 46.8486388 ], + [ 8.3401637, 46.8486483 ], + [ 8.3402258, 46.8486765 ], + [ 8.3403063, 46.8487284 ], + [ 8.3404182, 46.8487806 ], + [ 8.3405193, 46.8488294 ], + [ 8.3405886, 46.8488491 ], + [ 8.3406646, 46.8488399 ], + [ 8.3407371, 46.8488414 ], + [ 8.3408099, 46.848856 ], + [ 8.3409079, 46.8488988 ], + [ 8.3409856, 46.8489494 ], + [ 8.3410154, 46.8489995 ], + [ 8.3410248, 46.8490062 ], + [ 8.3410353, 46.8490136 ], + [ 8.3410651, 46.8490347 ], + [ 8.3411361, 46.8490455 ], + [ 8.341261, 46.8490683 ], + [ 8.3414128, 46.8490807 ], + [ 8.3415271, 46.8490918 ], + [ 8.3416391, 46.8490809 ], + [ 8.3417272, 46.8490729 ], + [ 8.341755, 46.8490771 ], + [ 8.3418394, 46.8490897 ], + [ 8.3419192, 46.849122 ], + [ 8.3419688, 46.849164 ], + [ 8.342034, 46.8492042 ], + [ 8.3420349, 46.8492047 ], + [ 8.3421247, 46.8492322 ], + [ 8.342238, 46.8492788 ], + [ 8.3423675, 46.849319 ], + [ 8.3425265, 46.8493923 ], + [ 8.3425909, 46.8494598 ], + [ 8.3426661, 46.8495433 ], + [ 8.3427611, 46.8496269 ], + [ 8.3428715, 46.8497044 ], + [ 8.3429978, 46.849777 ], + [ 8.3431209, 46.8498594 ], + [ 8.3433532, 46.8500216 ], + [ 8.343439, 46.850054 ], + [ 8.343552, 46.8500678 ], + [ 8.3436494, 46.8500654 ], + [ 8.343736, 46.8500863 ], + [ 8.343803, 46.8501029 ], + [ 8.3438231, 46.8501079 ], + [ 8.3439397, 46.8501208 ], + [ 8.3440205, 46.8501083 ], + [ 8.3440801, 46.8500844 ], + [ 8.3441672, 46.850023 ], + [ 8.3442429, 46.8499649 ], + [ 8.3442627, 46.8499497 ], + [ 8.3443735, 46.8499102 ], + [ 8.3445025, 46.8499218 ], + [ 8.344653600000001, 46.8499124 ], + [ 8.3448059, 46.8498867 ], + [ 8.3449866, 46.8498757 ], + [ 8.3451181, 46.8498772 ], + [ 8.345293, 46.8498995 ], + [ 8.3454177, 46.8498963 ], + [ 8.3454682, 46.8498951 ], + [ 8.3455834, 46.8498857 ], + [ 8.3456115, 46.8498754 ], + [ 8.3456837, 46.849849 ], + [ 8.3458317, 46.8498135 ], + [ 8.3459657, 46.8497919 ], + [ 8.3461306, 46.8497846 ], + [ 8.346142, 46.8497841 ], + [ 8.3462722, 46.849789799999996 ], + [ 8.3463938, 46.849736 ], + [ 8.3464415, 46.8497361 ], + [ 8.3465034, 46.8497363 ], + [ 8.3465644, 46.8497171 ], + [ 8.3466558, 46.8496883 ], + [ 8.3468061, 46.8496815 ], + [ 8.3468183, 46.8496691 ], + [ 8.3468553, 46.8496313 ], + [ 8.3469178, 46.8496086 ], + [ 8.3469325, 46.8496033 ], + [ 8.3469516, 46.8496028 ], + [ 8.3470312, 46.8496006 ], + [ 8.347095, 46.8495762 ], + [ 8.3471269, 46.8495641 ], + [ 8.3471395, 46.8495491 ], + [ 8.3471609, 46.8495237 ], + [ 8.3471896, 46.8495191 ], + [ 8.347222, 46.8495138 ], + [ 8.3472652, 46.8495068 ], + [ 8.3473292, 46.8494689 ], + [ 8.3473374, 46.8494668 ], + [ 8.3473433, 46.8494653 ], + [ 8.3474096, 46.8494483 ], + [ 8.3475566, 46.8494314 ], + [ 8.3476447, 46.8494306 ], + [ 8.3476624, 46.8494364 ], + [ 8.3477196, 46.8494692 ], + [ 8.347744, 46.8494831 ], + [ 8.3477485, 46.8494844 ], + [ 8.3478052, 46.8495004 ], + [ 8.3478433, 46.8495028 ], + [ 8.3478859, 46.8495054 ], + [ 8.3478962, 46.849506 ], + [ 8.3479281, 46.849508 ], + [ 8.3480346, 46.8494997 ], + [ 8.3481198, 46.849505 ], + [ 8.3481839, 46.8495345 ], + [ 8.3481892, 46.849537 ], + [ 8.3482671, 46.8495716 ], + [ 8.3483615, 46.8495729 ], + [ 8.3484856, 46.8495548 ], + [ 8.348571, 46.8495254 ], + [ 8.3486107, 46.849502 ], + [ 8.3486394, 46.8494852 ], + [ 8.3486563, 46.8494716 ], + [ 8.3486853, 46.8494484 ], + [ 8.3487366, 46.8494458 ], + [ 8.3488144, 46.8494728 ], + [ 8.3489875, 46.8494605 ], + [ 8.34911, 46.8494628 ], + [ 8.349149, 46.8494792 ], + [ 8.3491927, 46.8495064 ], + [ 8.34923, 46.8495769 ], + [ 8.3492786, 46.849601 ], + [ 8.3493329, 46.8495988 ], + [ 8.3493765, 46.8496082 ], + [ 8.34941, 46.8496343 ], + [ 8.3494112, 46.8496352 ], + [ 8.3495091, 46.8496513 ], + [ 8.3496153, 46.8496514 ], + [ 8.3498258, 46.8496201 ], + [ 8.3498335, 46.849619 ], + [ 8.3498624, 46.8496172 ], + [ 8.3498915, 46.8496161 ], + [ 8.3499206, 46.8496158 ], + [ 8.3499497, 46.8496162 ], + [ 8.3499788, 46.8496174 ], + [ 8.3500078, 46.8496193 ], + [ 8.3500263, 46.8496208 ], + [ 8.3500448, 46.8496224 ], + [ 8.3500633, 46.8496241 ], + [ 8.3500817, 46.849626 ], + [ 8.3501001, 46.8496279 ], + [ 8.3501186, 46.84963 ], + [ 8.3501363, 46.8496322 ], + [ 8.350154, 46.8496348 ], + [ 8.3501715, 46.8496379 ], + [ 8.3501888, 46.8496414 ], + [ 8.350206, 46.8496453 ], + [ 8.350223, 46.8496496 ], + [ 8.3502405, 46.8496545 ], + [ 8.3502578, 46.8496598 ], + [ 8.3502748, 46.8496655 ], + [ 8.3502915, 46.8496715 ], + [ 8.350308, 46.849678 ], + [ 8.3503241, 46.8496848 ], + [ 8.3503405, 46.8496921 ], + [ 8.3503568, 46.8496994 ], + [ 8.3503731, 46.8497069 ], + [ 8.3503893, 46.8497144 ], + [ 8.3504055, 46.8497219 ], + [ 8.3504215, 46.8497295 ], + [ 8.3504403, 46.8497387 ], + [ 8.3504588, 46.849748 ], + [ 8.3504772, 46.8497575 ], + [ 8.3504953, 46.8497672 ], + [ 8.3505131, 46.8497772 ], + [ 8.3505308, 46.8497873 ], + [ 8.3505487, 46.8497977 ], + [ 8.3505666, 46.849808 ], + [ 8.3505846, 46.8498183 ], + [ 8.3506027, 46.8498286 ], + [ 8.3506207, 46.8498388 ], + [ 8.3506389, 46.849849 ], + [ 8.3506542, 46.8498576 ], + [ 8.3506693, 46.8498663 ], + [ 8.3506843, 46.8498751 ], + [ 8.3506992, 46.849884 ], + [ 8.350714, 46.8498931 ], + [ 8.3507286, 46.8499022 ], + [ 8.3507439, 46.8499116 ], + [ 8.3507595, 46.8499208 ], + [ 8.3507755, 46.8499297 ], + [ 8.3507918, 46.8499384 ], + [ 8.3508084, 46.8499467 ], + [ 8.3508253, 46.8499548 ], + [ 8.3508414, 46.8499621 ], + [ 8.3508579, 46.8499691 ], + [ 8.3508746, 46.8499757 ], + [ 8.3508917, 46.849982 ], + [ 8.3509089, 46.8499879 ], + [ 8.3509265, 46.8499935 ], + [ 8.350943000000001, 46.8499987 ], + [ 8.3509593, 46.8500041 ], + [ 8.3509754, 46.8500098 ], + [ 8.3509914, 46.8500157 ], + [ 8.3510072, 46.8500218 ], + [ 8.351022799999999, 46.8500281 ], + [ 8.3510335, 46.8500328 ], + [ 8.3510438, 46.8500379 ], + [ 8.3510537, 46.8500434 ], + [ 8.3510632, 46.8500492 ], + [ 8.3510722, 46.8500553 ], + [ 8.3510807, 46.8500618 ], + [ 8.3510823, 46.850063 ], + [ 8.3510838, 46.8500642 ], + [ 8.3510855, 46.8500654 ], + [ 8.3510871, 46.8500666 ], + [ 8.3510888, 46.8500678 ], + [ 8.3510905, 46.8500689 ], + [ 8.3511014, 46.8500754 ], + [ 8.3511133, 46.8500812 ], + [ 8.351126, 46.8500861 ], + [ 8.3511393, 46.8500902 ], + [ 8.3511532, 46.8500933 ], + [ 8.3511674, 46.8500954 ], + [ 8.3511923, 46.8500976 ], + [ 8.3512175, 46.8500986 ], + [ 8.351242599999999, 46.8500985 ], + [ 8.3512677, 46.8500971 ], + [ 8.3512926, 46.8500945 ], + [ 8.3513171, 46.8500907 ], + [ 8.3513237, 46.8500895 ], + [ 8.3513302, 46.8500884 ], + [ 8.3513368, 46.8500874 ], + [ 8.3513434, 46.8500864 ], + [ 8.3513501, 46.8500854 ], + [ 8.3513567, 46.8500845 ], + [ 8.3513722, 46.8500827 ], + [ 8.3513877, 46.8500811 ], + [ 8.3514033, 46.8500798 ], + [ 8.351419, 46.8500788 ], + [ 8.3514346, 46.8500781 ], + [ 8.3514503, 46.8500777 ], + [ 8.3514608, 46.8500776 ], + [ 8.3514712, 46.8500778 ], + [ 8.3514816, 46.8500782 ], + [ 8.351492, 46.8500789 ], + [ 8.3515023, 46.8500798 ], + [ 8.3515126, 46.8500809 ], + [ 8.3515239, 46.8500823 ], + [ 8.3515351, 46.8500836 ], + [ 8.3515464, 46.8500848 ], + [ 8.3515577, 46.850086 ], + [ 8.351569, 46.8500871 ], + [ 8.3515803, 46.8500881 ], + [ 8.3519778, 46.8501243 ], + [ 8.3520152, 46.8501273 ], + [ 8.3520526, 46.8501302 ], + [ 8.35209, 46.8501328 ], + [ 8.3521275, 46.8501353 ], + [ 8.352165, 46.8501376 ], + [ 8.3522025, 46.8501397 ], + [ 8.3526186, 46.8502049 ], + [ 8.352751, 46.8502365 ], + [ 8.3527534, 46.8502517 ], + [ 8.3527596, 46.850291 ], + [ 8.3529447, 46.850323 ], + [ 8.352949, 46.8503238 ], + [ 8.3530571, 46.8503296 ], + [ 8.353094, 46.8503316 ], + [ 8.3530981, 46.8503479 ], + [ 8.353106499999999, 46.8503815 ], + [ 8.3531082, 46.8503885 ], + [ 8.3531355, 46.8504472 ], + [ 8.3531823, 46.8504717 ], + [ 8.3532873, 46.8504535 ], + [ 8.353341, 46.850474 ], + [ 8.353387, 46.8504626 ], + [ 8.3535106, 46.8504319 ], + [ 8.3536284, 46.8505141 ], + [ 8.3537575, 46.8505904 ], + [ 8.3538514, 46.8506372 ], + [ 8.3538778, 46.8506503 ], + [ 8.3539811, 46.8507073 ], + [ 8.3540409, 46.8507329 ], + [ 8.3540903, 46.8507424 ], + [ 8.3541816, 46.8507418 ], + [ 8.3543057, 46.8507251 ], + [ 8.3543483, 46.8507041 ], + [ 8.3545719, 46.850706 ], + [ 8.3546025, 46.8507063 ], + [ 8.3547049, 46.8507438 ], + [ 8.3547307, 46.8507553 ], + [ 8.3548162, 46.8507935 ], + [ 8.3549517, 46.8508328 ], + [ 8.3550591, 46.8508417 ], + [ 8.3551223, 46.8508333 ], + [ 8.3552096, 46.8508218 ], + [ 8.3556219, 46.8508246 ], + [ 8.3557566, 46.8508255 ], + [ 8.3559294, 46.8508266 ], + [ 8.3561241, 46.8508387 ], + [ 8.3561707, 46.850834 ], + [ 8.3562443, 46.8508509 ], + [ 8.3563453, 46.8508569 ], + [ 8.356541, 46.8508865 ], + [ 8.3567105, 46.8509341 ], + [ 8.3567767, 46.8509607 ], + [ 8.3570787, 46.8510575 ], + [ 8.3576242, 46.8511488 ], + [ 8.3576786, 46.8511774 ], + [ 8.3576797, 46.8511775 ], + [ 8.3577112, 46.8511945 ], + [ 8.3579568, 46.8513234 ], + [ 8.3579803, 46.8513648 ], + [ 8.3580889, 46.8515549 ], + [ 8.3583834, 46.851873 ], + [ 8.3585513, 46.8522718 ], + [ 8.3585866, 46.8523556 ], + [ 8.3588892, 46.852561 ], + [ 8.3590014, 46.8526371 ], + [ 8.3593793, 46.8531012 ], + [ 8.3595341, 46.8532015 ], + [ 8.3595456, 46.8534013 ], + [ 8.3595492, 46.8534655 ], + [ 8.3597126, 46.8537393 ], + [ 8.3597293, 46.8537793 ], + [ 8.3598065, 46.8539241 ], + [ 8.3598337, 46.8539752 ], + [ 8.3598365, 46.8539793 ], + [ 8.3598392, 46.8539835 ], + [ 8.3598417, 46.853987599999996 ], + [ 8.3598441, 46.8539919 ], + [ 8.3598463, 46.8539962 ], + [ 8.3598484, 46.8540005 ], + [ 8.3598505, 46.8540048 ], + [ 8.3598525, 46.8540091 ], + [ 8.3598546, 46.8540134 ], + [ 8.3598567, 46.8540177 ], + [ 8.3598589, 46.854022 ], + [ 8.359861, 46.8540263 ], + [ 8.3598626, 46.8540295 ], + [ 8.3598643, 46.8540328 ], + [ 8.3598661, 46.854036 ], + [ 8.3598678, 46.8540392 ], + [ 8.3598696, 46.8540424 ], + [ 8.3598715, 46.8540456 ], + [ 8.3598732, 46.8540489 ], + [ 8.3598748, 46.8540521 ], + [ 8.3598761, 46.8540555 ], + [ 8.3598773, 46.8540588 ], + [ 8.3598782, 46.8540622 ], + [ 8.3598789, 46.8540656 ], + [ 8.3598793, 46.8540677 ], + [ 8.3598795, 46.8540698 ], + [ 8.3598796, 46.854072 ], + [ 8.3598796, 46.8540741 ], + [ 8.3598795, 46.8540762 ], + [ 8.3598792, 46.8540783 ], + [ 8.359878, 46.8540828 ], + [ 8.3598761, 46.8540872 ], + [ 8.3598738, 46.8540915 ], + [ 8.3598709, 46.8540956 ], + [ 8.3598675, 46.8540996 ], + [ 8.3598636, 46.8541033 ], + [ 8.3598584, 46.8541086 ], + [ 8.3598524, 46.8541135 ], + [ 8.3598457, 46.854118 ], + [ 8.3598385, 46.854122 ], + [ 8.3598307, 46.8541255 ], + [ 8.3598224, 46.8541284 ], + [ 8.3598138, 46.8541308 ], + [ 8.3598048, 46.8541327 ], + [ 8.3597306, 46.8541525 ], + [ 8.3597111, 46.8541586 ], + [ 8.3596937, 46.8541656 ], + [ 8.3596773, 46.8541736 ], + [ 8.359662, 46.8541826 ], + [ 8.359648, 46.8541926 ], + [ 8.3596354, 46.8542034 ], + [ 8.3596243, 46.8542149 ], + [ 8.3596148, 46.8542271 ], + [ 8.3596069, 46.8542398 ], + [ 8.3596015, 46.854251 ], + [ 8.3595975, 46.8542625 ], + [ 8.3595947, 46.8542742 ], + [ 8.3595933, 46.8542859 ], + [ 8.3595933, 46.8542977 ], + [ 8.3595946, 46.8543095 ], + [ 8.3596276, 46.854509 ], + [ 8.3596407, 46.854588 ], + [ 8.3597225, 46.8547291 ], + [ 8.3597307, 46.8547432 ], + [ 8.3597434, 46.8547494 ], + [ 8.3598928, 46.8548226 ], + [ 8.3599249, 46.8548384 ], + [ 8.3599795, 46.8548652 ], + [ 8.3604984, 46.8551214 ], + [ 8.3605165, 46.8551283 ], + [ 8.3605343, 46.8551356 ], + [ 8.3605518, 46.8551432 ], + [ 8.3605689, 46.8551511 ], + [ 8.3605857, 46.8551594 ], + [ 8.3606021, 46.8551681 ], + [ 8.3606144, 46.855175 ], + [ 8.3606261, 46.8551824 ], + [ 8.3606374, 46.8551902 ], + [ 8.360648, 46.8551983 ], + [ 8.3606581, 46.8552067 ], + [ 8.3606676, 46.8552155 ], + [ 8.3606766, 46.8552245 ], + [ 8.360685, 46.8552337 ], + [ 8.360693, 46.8552432 ], + [ 8.3607005, 46.8552528 ], + [ 8.3607075, 46.8552626 ], + [ 8.360714, 46.8552726 ], + [ 8.3607194, 46.8552822 ], + [ 8.3607237, 46.8552922 ], + [ 8.360727, 46.8553023 ], + [ 8.3607291, 46.8553126 ], + [ 8.3607302, 46.8553229 ], + [ 8.3607302, 46.8553333 ], + [ 8.36073, 46.8553436 ], + [ 8.3607307, 46.8553539 ], + [ 8.3607323, 46.8553642 ], + [ 8.3607348, 46.8553744 ], + [ 8.3607381, 46.8553845 ], + [ 8.3607423, 46.8553945 ], + [ 8.36075, 46.8554104 ], + [ 8.3607581, 46.8554263 ], + [ 8.3607666, 46.8554421 ], + [ 8.3607755, 46.8554577 ], + [ 8.3607848, 46.8554733 ], + [ 8.3607946, 46.8554887 ], + [ 8.3608046, 46.855504 ], + [ 8.3608148, 46.8555193 ], + [ 8.3608252, 46.8555345 ], + [ 8.360835699999999, 46.8555497 ], + [ 8.3608465, 46.8555648 ], + [ 8.3608574, 46.8555798 ], + [ 8.3608641, 46.8555884 ], + [ 8.3608717, 46.8555966 ], + [ 8.36088, 46.8556044 ], + [ 8.360889, 46.8556119 ], + [ 8.3608987, 46.8556189 ], + [ 8.3609091, 46.8556255 ], + [ 8.3609169, 46.8556306 ], + [ 8.360924, 46.8556362 ], + [ 8.3609303, 46.8556421 ], + [ 8.3609358, 46.8556485 ], + [ 8.3609405, 46.8556552 ], + [ 8.3609442, 46.8556621 ], + [ 8.360947, 46.8556692 ], + [ 8.3609488, 46.8556765 ], + [ 8.360949399999999, 46.8556814 ], + [ 8.3609493, 46.8556864 ], + [ 8.3609485, 46.8556913 ], + [ 8.360947, 46.8556961 ], + [ 8.3609448, 46.8557008 ], + [ 8.360942, 46.8557053 ], + [ 8.3609387, 46.8557097 ], + [ 8.3609347, 46.8557138 ], + [ 8.3609301, 46.8557176 ], + [ 8.3609251, 46.8557211 ], + [ 8.3609169, 46.8557269 ], + [ 8.3609096, 46.8557332 ], + [ 8.3609033, 46.8557399 ], + [ 8.360898, 46.8557471 ], + [ 8.3608938, 46.8557546 ], + [ 8.3608908, 46.8557624 ], + [ 8.360887, 46.8557752 ], + [ 8.3608836, 46.8557882 ], + [ 8.3608808, 46.8558012 ], + [ 8.3608785, 46.8558142 ], + [ 8.3608768, 46.8558273 ], + [ 8.3608755, 46.8558404 ], + [ 8.3608745, 46.8558535 ], + [ 8.360873699999999, 46.8558666 ], + [ 8.3608731, 46.8558797 ], + [ 8.3608725, 46.8558928 ], + [ 8.3608722, 46.8559059 ], + [ 8.3608719, 46.855919 ], + [ 8.3608722, 46.8559289 ], + [ 8.3608734, 46.8559387 ], + [ 8.3608755, 46.8559485 ], + [ 8.3608784, 46.8559581 ], + [ 8.3608822, 46.8559676 ], + [ 8.3608869, 46.855977 ], + [ 8.3608903, 46.8559841 ], + [ 8.3608927, 46.8559915 ], + [ 8.3608942, 46.8559989 ], + [ 8.3608947, 46.8560064 ], + [ 8.3608941, 46.8560139 ], + [ 8.3608927, 46.8560214 ], + [ 8.3608902, 46.8560287 ], + [ 8.3608868, 46.8560358 ], + [ 8.3608856, 46.8560377 ], + [ 8.3608842, 46.8560396 ], + [ 8.3608825, 46.8560413 ], + [ 8.3608806, 46.8560429 ], + [ 8.3608785, 46.8560444 ], + [ 8.3608763, 46.8560458 ], + [ 8.3608738, 46.856047 ], + [ 8.3608712, 46.856048 ], + [ 8.3608685, 46.8560489 ], + [ 8.3608657, 46.8560497 ], + [ 8.3608628, 46.8560502 ], + [ 8.3608598, 46.8560506 ], + [ 8.3608568, 46.8560508 ], + [ 8.3608538, 46.8560508 ], + [ 8.3608508, 46.8560506 ], + [ 8.3608478, 46.8560503 ], + [ 8.3608449, 46.8560497 ], + [ 8.3608421, 46.856049 ], + [ 8.360839, 46.8560483 ], + [ 8.3608359, 46.8560477 ], + [ 8.3608326, 46.8560472 ], + [ 8.3608294, 46.856047 ], + [ 8.3608261, 46.856047 ], + [ 8.3608228, 46.8560471 ], + [ 8.3608196, 46.8560474 ], + [ 8.3608164, 46.8560479 ], + [ 8.3608133, 46.8560486 ], + [ 8.3608103, 46.8560495 ], + [ 8.3608074, 46.8560505 ], + [ 8.3608046, 46.8560517 ], + [ 8.360802, 46.856053 ], + [ 8.3607995, 46.8560545 ], + [ 8.3607973, 46.8560562 ], + [ 8.3607952, 46.8560579 ], + [ 8.3607836, 46.8560692 ], + [ 8.3607726, 46.8560807 ], + [ 8.3607624, 46.8560926 ], + [ 8.3607528, 46.8561047 ], + [ 8.360744, 46.856117 ], + [ 8.3607359, 46.8561296 ], + [ 8.3607284, 46.8561424 ], + [ 8.3607216, 46.8561554 ], + [ 8.3607155, 46.8561685 ], + [ 8.3607099, 46.8561817 ], + [ 8.360705, 46.8561951 ], + [ 8.3607008, 46.8562085 ], + [ 8.3606974, 46.8562216 ], + [ 8.3606947, 46.8562348 ], + [ 8.3606929, 46.8562481 ], + [ 8.3606918, 46.8562614 ], + [ 8.3606914, 46.8562747 ], + [ 8.3606919, 46.8562881 ], + [ 8.3606929, 46.8563013 ], + [ 8.3606945, 46.8563146 ], + [ 8.3606965, 46.8563278 ], + [ 8.360699, 46.856341 ], + [ 8.360702, 46.8563542 ], + [ 8.3607055, 46.8563673 ], + [ 8.3607085, 46.8563764 ], + [ 8.3607121, 46.8563855 ], + [ 8.3607162, 46.8563944 ], + [ 8.360721, 46.8564032 ], + [ 8.3607264, 46.8564118 ], + [ 8.3607324, 46.8564202 ], + [ 8.3607388, 46.8564285 ], + [ 8.3607455, 46.8564366 ], + [ 8.360752399999999, 46.8564447 ], + [ 8.3607597, 46.8564526 ], + [ 8.3607672, 46.8564604 ], + [ 8.3607749, 46.8564681 ], + [ 8.3607781, 46.856471 ], + [ 8.3607816, 46.8564736 ], + [ 8.3607853, 46.8564761 ], + [ 8.3607894, 46.8564784 ], + [ 8.3607936, 46.8564804 ], + [ 8.3607981, 46.8564822 ], + [ 8.3608028, 46.8564838 ], + [ 8.3608077, 46.8564851 ], + [ 8.3608141, 46.8564869 ], + [ 8.3608203, 46.8564889 ], + [ 8.3608263, 46.8564912 ], + [ 8.360832, 46.8564939 ], + [ 8.3608375, 46.8564967 ], + [ 8.3608427, 46.8564999 ], + [ 8.360843299999999, 46.8565004 ], + [ 8.360844, 46.8565009 ], + [ 8.3608445, 46.8565014 ], + [ 8.360845, 46.856502 ], + [ 8.3608454, 46.8565026 ], + [ 8.3608457, 46.8565033 ], + [ 8.3608459, 46.8565039 ], + [ 8.3608461, 46.8565046 ], + [ 8.3608461, 46.8565053 ], + [ 8.3608461, 46.856506 ], + [ 8.360846, 46.8565066 ], + [ 8.3608458, 46.8565073 ], + [ 8.3608455, 46.8565079 ], + [ 8.3608451, 46.8565086 ], + [ 8.3608448, 46.8565091 ], + [ 8.3608446, 46.8565096 ], + [ 8.3608444, 46.8565101 ], + [ 8.3608444, 46.8565107 ], + [ 8.3608443, 46.8565112 ], + [ 8.3608444, 46.8565118 ], + [ 8.3608445, 46.8565123 ], + [ 8.3608447, 46.8565128 ], + [ 8.3608449, 46.8565133 ], + [ 8.3608452, 46.8565138 ], + [ 8.3608456, 46.8565143 ], + [ 8.360846, 46.8565148 ], + [ 8.3608465, 46.8565152 ], + [ 8.3608471, 46.8565156 ], + [ 8.3608477, 46.856516 ], + [ 8.3608483, 46.8565163 ], + [ 8.360849, 46.8565166 ], + [ 8.3608497, 46.8565168 ], + [ 8.3608843, 46.8565275 ], + [ 8.360918999999999, 46.856538 ], + [ 8.3609537, 46.8565483 ], + [ 8.3609886, 46.8565586 ], + [ 8.3610236, 46.8565686 ], + [ 8.3610586, 46.8565786 ], + [ 8.3610938, 46.8565883 ], + [ 8.3611291, 46.8565978 ], + [ 8.3611646, 46.856607 ], + [ 8.3612002, 46.8566159 ], + [ 8.3612359, 46.8566246 ], + [ 8.3612718, 46.856633 ], + [ 8.3612837, 46.8566353 ], + [ 8.3612957, 46.856637 ], + [ 8.3613079, 46.856638 ], + [ 8.3613202, 46.8566383 ], + [ 8.3613325, 46.8566379 ], + [ 8.3613448, 46.8566369 ], + [ 8.361354, 46.8566361 ], + [ 8.3613634, 46.8566359 ], + [ 8.3613727, 46.8566363 ], + [ 8.3613819, 46.8566373 ], + [ 8.361391, 46.8566388 ], + [ 8.3613998, 46.856641 ], + [ 8.3614083, 46.8566436 ], + [ 8.3614164, 46.8566468 ], + [ 8.3614257, 46.8566513 ], + [ 8.361434299999999, 46.8566562 ], + [ 8.3614424, 46.8566616 ], + [ 8.3614497, 46.8566674 ], + [ 8.3614564, 46.8566737 ], + [ 8.3614622, 46.8566803 ], + [ 8.3614673, 46.8566872 ], + [ 8.3614714, 46.8566944 ], + [ 8.3614742, 46.8566994 ], + [ 8.3614773, 46.8567043 ], + [ 8.3614808, 46.856709 ], + [ 8.3614847, 46.8567136 ], + [ 8.3614889, 46.8567181 ], + [ 8.3614934, 46.8567225 ], + [ 8.3614978, 46.8567264 ], + [ 8.3615026, 46.8567301 ], + [ 8.3615075, 46.8567337 ], + [ 8.3615128, 46.8567371 ], + [ 8.3615182, 46.8567403 ], + [ 8.3615239, 46.8567433 ], + [ 8.361532799999999, 46.8567475 ], + [ 8.3615423, 46.8567512 ], + [ 8.3615522, 46.8567542 ], + [ 8.3615625, 46.8567566 ], + [ 8.361573, 46.8567584 ], + [ 8.3615837, 46.8567596 ], + [ 8.3615944, 46.8567604 ], + [ 8.3616051, 46.8567613 ], + [ 8.3616157, 46.8567623 ], + [ 8.3616264, 46.8567633 ], + [ 8.361637, 46.8567643 ], + [ 8.3616476, 46.8567655 ], + [ 8.3616722, 46.856768 ], + [ 8.3616969, 46.8567705 ], + [ 8.3617216, 46.856773 ], + [ 8.3617463, 46.8567754 ], + [ 8.361771, 46.8567777 ], + [ 8.3617957, 46.8567799 ], + [ 8.3618204, 46.856782 ], + [ 8.3618452, 46.8567837 ], + [ 8.3618701, 46.8567852 ], + [ 8.3618949, 46.8567865 ], + [ 8.3619198, 46.8567874 ], + [ 8.3619448, 46.856788 ], + [ 8.3619521, 46.856788 ], + [ 8.3619594, 46.8567875 ], + [ 8.3619667, 46.8567866 ], + [ 8.3619738, 46.8567853 ], + [ 8.3619807, 46.8567836 ], + [ 8.3619874, 46.8567815 ], + [ 8.361994, 46.8567793 ], + [ 8.3620008, 46.8567775 ], + [ 8.3620078, 46.856775999999996 ], + [ 8.3620149, 46.8567748 ], + [ 8.3620221, 46.8567739 ], + [ 8.3620294, 46.8567733 ], + [ 8.3620497, 46.8567724 ], + [ 8.3620701, 46.8567717 ], + [ 8.3620906, 46.8567713 ], + [ 8.362111, 46.8567712 ], + [ 8.362131399999999, 46.8567714 ], + [ 8.3621518, 46.8567719 ], + [ 8.3621723, 46.8567725 ], + [ 8.3621927, 46.8567727 ], + [ 8.3622131, 46.8567726 ], + [ 8.3622335, 46.8567722 ], + [ 8.3622539, 46.8567715 ], + [ 8.3622743, 46.8567705 ], + [ 8.3622848, 46.8567698 ], + [ 8.3622953, 46.8567691 ], + [ 8.3623058, 46.8567683 ], + [ 8.3623162, 46.8567675 ], + [ 8.3623267, 46.8567665 ], + [ 8.3623371, 46.8567656 ], + [ 8.3623462, 46.8567646 ], + [ 8.3623553, 46.8567637 ], + [ 8.3623644, 46.8567627 ], + [ 8.3623735, 46.8567616 ], + [ 8.3623825, 46.8567605 ], + [ 8.3623916, 46.8567593 ], + [ 8.362411, 46.8567568 ], + [ 8.3624304, 46.8567543 ], + [ 8.3624498, 46.8567519 ], + [ 8.3624692, 46.8567496 ], + [ 8.3624886, 46.8567473 ], + [ 8.3625081, 46.856745 ], + [ 8.3625428, 46.856741 ], + [ 8.3625775, 46.8567369 ], + [ 8.3626121, 46.8567327 ], + [ 8.362646699999999, 46.8567285 ], + [ 8.3626814, 46.8567242 ], + [ 8.362716, 46.8567198 ], + [ 8.3627193, 46.8567194 ], + [ 8.3627027, 46.8567626 ], + [ 8.362695, 46.8567825 ], + [ 8.3627449, 46.856787 ], + [ 8.3627577, 46.8567778 ], + [ 8.3627701, 46.856769 ], + [ 8.3627739, 46.8567701 ], + [ 8.3627769, 46.856771 ], + [ 8.36278, 46.8567719 ], + [ 8.3627831, 46.8567728 ], + [ 8.3627862, 46.8567737 ], + [ 8.3627892, 46.8567745 ], + [ 8.3627923, 46.8567753 ], + [ 8.3628194, 46.8567826 ], + [ 8.3628462, 46.8567902 ], + [ 8.3628729, 46.856798 ], + [ 8.3628993, 46.8568062 ], + [ 8.3629256, 46.8568147 ], + [ 8.3629516, 46.8568235 ], + [ 8.3629549, 46.8568246 ], + [ 8.3629582, 46.8568257 ], + [ 8.3629615, 46.8568268 ], + [ 8.3629648, 46.8568279 ], + [ 8.3629682, 46.8568289 ], + [ 8.3629715, 46.85683 ], + [ 8.3629949, 46.856836799999996 ], + [ 8.3630188, 46.8568429 ], + [ 8.363043, 46.8568483 ], + [ 8.3630675, 46.8568529 ], + [ 8.3630924, 46.8568567 ], + [ 8.3631174, 46.8568598 ], + [ 8.363127800000001, 46.8568609 ], + [ 8.3631381, 46.8568618 ], + [ 8.3631484, 46.8568627 ], + [ 8.3631588, 46.8568635 ], + [ 8.3631692, 46.8568642 ], + [ 8.3631796, 46.8568648 ], + [ 8.3631997, 46.8568657 ], + [ 8.3632197, 46.8568664 ], + [ 8.3632398, 46.8568666 ], + [ 8.3632599, 46.8568666 ], + [ 8.36328, 46.8568663 ], + [ 8.3633001, 46.8568656 ], + [ 8.3633305, 46.856864 ], + [ 8.3633609, 46.856862 ], + [ 8.3633911, 46.856859299999996 ], + [ 8.3634213, 46.8568562 ], + [ 8.3634513, 46.8568525 ], + [ 8.3634812, 46.8568482 ], + [ 8.3634884, 46.8568471 ], + [ 8.3634956, 46.856846 ], + [ 8.3635028, 46.8568448 ], + [ 8.36351, 46.8568436 ], + [ 8.3635172, 46.8568424 ], + [ 8.3635244, 46.8568411 ], + [ 8.3635791, 46.8568304 ], + [ 8.363633, 46.8568179 ], + [ 8.363686, 46.8568036 ], + [ 8.363738, 46.8567877 ], + [ 8.3637888, 46.85677 ], + [ 8.3638383, 46.8567507 ], + [ 8.3638457, 46.856748 ], + [ 8.3638527, 46.856745 ], + [ 8.3638594, 46.8567415 ], + [ 8.3638656, 46.8567377 ], + [ 8.3638714, 46.8567335 ], + [ 8.3638766, 46.856729 ], + [ 8.3638814, 46.8567243 ], + [ 8.3638856, 46.8567193 ], + [ 8.3638892, 46.8567142 ], + [ 8.3638921, 46.8567088 ], + [ 8.3640464, 46.8563403 ], + [ 8.3640489, 46.8563343 ], + [ 8.3640489, 46.856329099999996 ], + [ 8.3640495, 46.8563239 ], + [ 8.3640507, 46.8563187 ], + [ 8.3640526, 46.8563136 ], + [ 8.364055, 46.8563086 ], + [ 8.3640581, 46.8563038 ], + [ 8.3640617, 46.8562992 ], + [ 8.3640659, 46.8562948 ], + [ 8.3640705, 46.8562907 ], + [ 8.3640757, 46.8562868 ], + [ 8.3640813, 46.8562832 ], + [ 8.3640873, 46.85628 ], + [ 8.3640937, 46.8562771 ], + [ 8.3641004, 46.8562746 ], + [ 8.364125, 46.8562632 ], + [ 8.3641412, 46.8562558 ], + [ 8.3641493, 46.8562524 ], + [ 8.3641574, 46.8562491 ], + [ 8.3641655, 46.856245799999996 ], + [ 8.3641736, 46.8562424 ], + [ 8.3641817, 46.8562391 ], + [ 8.3641898, 46.8562357 ], + [ 8.3642033, 46.8562301 ], + [ 8.3642169, 46.8562244 ], + [ 8.3642304, 46.8562188 ], + [ 8.364244, 46.8562132 ], + [ 8.3642575, 46.8562075 ], + [ 8.364271, 46.8562018 ], + [ 8.364291, 46.8561935 ], + [ 8.3643109, 46.8561851 ], + [ 8.3643309, 46.8561766 ], + [ 8.3643508, 46.8561682 ], + [ 8.3643707, 46.8561598 ], + [ 8.3643906, 46.8561513 ], + [ 8.3644015, 46.8561467 ], + [ 8.3644123, 46.856142 ], + [ 8.3644232, 46.8561374 ], + [ 8.3644341, 46.8561327 ], + [ 8.364445, 46.856128 ], + [ 8.3644558, 46.8561234 ], + [ 8.3644811, 46.8561125 ], + [ 8.3645064, 46.8561015 ], + [ 8.3645317, 46.8560906 ], + [ 8.3645569, 46.8560796 ], + [ 8.3645822, 46.8560686 ], + [ 8.3646074, 46.8560576 ], + [ 8.3646167, 46.8560533 ], + [ 8.3646261, 46.8560491 ], + [ 8.3646355, 46.856045 ], + [ 8.364645, 46.8560408 ], + [ 8.3646545, 46.8560367 ], + [ 8.364664, 46.8560326 ], + [ 8.3647017, 46.856011 ], + [ 8.364706, 46.8560096 ], + [ 8.36471, 46.8560079 ], + [ 8.3647139, 46.8560059 ], + [ 8.3647174, 46.8560037 ], + [ 8.3647206, 46.8560013 ], + [ 8.3647234, 46.8559987 ], + [ 8.3647258, 46.855995899999996 ], + [ 8.3647279, 46.8559929 ], + [ 8.3647292, 46.8559904 ], + [ 8.3647303, 46.8559878 ], + [ 8.3647311, 46.8559851 ], + [ 8.3647315, 46.8559825 ], + [ 8.3647317, 46.8559798 ], + [ 8.3647315, 46.8559771 ], + [ 8.3647312, 46.8559738 ], + [ 8.3647312, 46.8559706 ], + [ 8.3647317, 46.8559673 ], + [ 8.3647326, 46.8559641 ], + [ 8.3647339, 46.855961 ], + [ 8.3647356, 46.855958 ], + [ 8.3647377, 46.855955 ], + [ 8.3647402, 46.8559522 ], + [ 8.364743, 46.8559496 ], + [ 8.3647461, 46.8559472 ], + [ 8.3647495, 46.8559449 ], + [ 8.3647533, 46.8559429 ], + [ 8.3647572, 46.8559411 ], + [ 8.3647614, 46.8559395 ], + [ 8.364785, 46.8559328 ], + [ 8.3648105, 46.8559228 ], + [ 8.3648362, 46.8559131 ], + [ 8.3648622, 46.8559038 ], + [ 8.3648885, 46.8558948 ], + [ 8.3649151, 46.8558863 ], + [ 8.3649419, 46.8558781 ], + [ 8.3649764, 46.8558678 ], + [ 8.3650107, 46.8558572 ], + [ 8.365044900000001, 46.8558465 ], + [ 8.3650789, 46.8558354 ], + [ 8.3651128, 46.8558242 ], + [ 8.3651465, 46.8558128 ], + [ 8.3651678, 46.8558054 ], + [ 8.3651891, 46.855798 ], + [ 8.3652103, 46.8557905 ], + [ 8.3652315, 46.855783 ], + [ 8.3652526, 46.8557755 ], + [ 8.3652738, 46.8557679 ], + [ 8.3652808, 46.8557653 ], + [ 8.3652879, 46.8557627 ], + [ 8.365295, 46.8557602 ], + [ 8.3653021, 46.8557576 ], + [ 8.3653092, 46.855755 ], + [ 8.3653163, 46.8557524 ], + [ 8.3653444, 46.8557422 ], + [ 8.3653728, 46.8557322 ], + [ 8.3654013, 46.8557224 ], + [ 8.3654299, 46.8557128 ], + [ 8.3654587, 46.8557035 ], + [ 8.3654877, 46.8556943 ], + [ 8.3655152, 46.8556858 ], + [ 8.3655428, 46.8556775 ], + [ 8.3655705, 46.8556692 ], + [ 8.3655983, 46.8556612 ], + [ 8.3656262, 46.8556532 ], + [ 8.3656542, 46.8556454 ], + [ 8.3656822, 46.8556377 ], + [ 8.3657103, 46.8556302 ], + [ 8.3657386, 46.8556229 ], + [ 8.3657669, 46.8556157 ], + [ 8.3657953, 46.8556087 ], + [ 8.3658237, 46.8556018 ], + [ 8.3658303, 46.8556003 ], + [ 8.3658368, 46.8555989 ], + [ 8.3658434, 46.8555976 ], + [ 8.3658501, 46.8555964 ], + [ 8.3658568, 46.8555953 ], + [ 8.3658635, 46.8555943 ], + [ 8.3658739, 46.855593 ], + [ 8.3658844, 46.8555919 ], + [ 8.365895, 46.855591 ], + [ 8.3659056, 46.8555904 ], + [ 8.3659162, 46.85559 ], + [ 8.3659268, 46.8555899 ], + [ 8.365948, 46.8555917 ], + [ 8.365969, 46.8555947 ], + [ 8.3659895, 46.8555989 ], + [ 8.3660095, 46.8556043 ], + [ 8.3660287, 46.8556107 ], + [ 8.366047, 46.8556183 ], + [ 8.3660651, 46.8556272 ], + [ 8.366082, 46.855637 ], + [ 8.3660977, 46.8556478 ], + [ 8.3661121, 46.8556594 ], + [ 8.3661252, 46.8556717 ], + [ 8.3661367, 46.8556847 ], + [ 8.3661525, 46.8557218 ], + [ 8.3661689, 46.8557587 ], + [ 8.366186, 46.8557954 ], + [ 8.3662036, 46.8558321 ], + [ 8.3662219, 46.8558686 ], + [ 8.3662408, 46.8559049 ], + [ 8.3662452, 46.855913 ], + [ 8.3662497, 46.8559211 ], + [ 8.3662544, 46.8559292 ], + [ 8.3662591, 46.8559372 ], + [ 8.3662641, 46.8559452 ], + [ 8.3662691, 46.8559531 ], + [ 8.3662743, 46.855961 ], + [ 8.3662798, 46.8559688 ], + [ 8.3662854, 46.8559766 ], + [ 8.3662912, 46.8559842 ], + [ 8.3662972, 46.8559919 ], + [ 8.3663034, 46.8559994 ], + [ 8.3663123, 46.8560097 ], + [ 8.3663214, 46.8560198 ], + [ 8.3663307, 46.8560299 ], + [ 8.3663403, 46.8560398 ], + [ 8.3663502, 46.8560496 ], + [ 8.3663604, 46.8560593 ], + [ 8.3663706, 46.856069 ], + [ 8.3663807, 46.8560787 ], + [ 8.3663907, 46.8560885 ], + [ 8.3664005, 46.8560983 ], + [ 8.3664103, 46.8561081 ], + [ 8.36642, 46.856118 ], + [ 8.3664287, 46.856127 ], + [ 8.3664375, 46.856136 ], + [ 8.3664463, 46.856145 ], + [ 8.366455, 46.856154 ], + [ 8.3664638, 46.8561629 ], + [ 8.3664726, 46.8561719 ], + [ 8.3664814, 46.8561809 ], + [ 8.36649, 46.8561899 ], + [ 8.3664986, 46.856199 ], + [ 8.366507, 46.8562081 ], + [ 8.3665153, 46.8562173 ], + [ 8.3665235, 46.8562265 ], + [ 8.3665245, 46.8562276 ], + [ 8.3665255, 46.8562288 ], + [ 8.3665264, 46.8562299 ], + [ 8.3665274, 46.856231 ], + [ 8.3665283, 46.8562322 ], + [ 8.3665292, 46.8562333 ], + [ 8.366533, 46.8562436 ], + [ 8.3665379, 46.8562537 ], + [ 8.366544, 46.8562635 ], + [ 8.3665511, 46.8562729 ], + [ 8.3665593, 46.8562819 ], + [ 8.3665685, 46.8562905 ], + [ 8.3665787, 46.8562985 ], + [ 8.3665897, 46.856306000000004 ], + [ 8.3666737, 46.856359 ], + [ 8.3666876, 46.8563672 ], + [ 8.3667013, 46.8563756 ], + [ 8.3667147, 46.8563842 ], + [ 8.3667279, 46.8563929 ], + [ 8.3667409, 46.8564018 ], + [ 8.3667537, 46.8564109 ], + [ 8.3667638, 46.8564183 ], + [ 8.3667738, 46.8564258 ], + [ 8.3667837, 46.8564334 ], + [ 8.3667934, 46.8564411 ], + [ 8.3668029, 46.8564488 ], + [ 8.3668123, 46.8564567 ], + [ 8.3669643, 46.8565754 ], + [ 8.3669904, 46.8565916 ], + [ 8.3670184, 46.8566063 ], + [ 8.3670481, 46.8566192 ], + [ 8.3670792, 46.8566304 ], + [ 8.3671117, 46.856639799999996 ], + [ 8.3671452, 46.8566473 ], + [ 8.3671483, 46.8566478 ], + [ 8.3671514, 46.8566484 ], + [ 8.3671546, 46.856649 ], + [ 8.3671577, 46.8566495 ], + [ 8.3671608, 46.85665 ], + [ 8.367164, 46.8566505 ], + [ 8.3671946, 46.8566515 ], + [ 8.3672252, 46.8566505 ], + [ 8.3672556, 46.8566475 ], + [ 8.3672853, 46.8566425 ], + [ 8.3673143, 46.8566357 ], + [ 8.3673422, 46.8566269 ], + [ 8.367352499999999, 46.8566232 ], + [ 8.3673937, 46.8566072 ], + [ 8.3673953, 46.8566065 ], + [ 8.3673968, 46.8566058 ], + [ 8.3673984, 46.8566051 ], + [ 8.3673999, 46.8566044 ], + [ 8.3674015, 46.8566038 ], + [ 8.3674031, 46.8566031 ], + [ 8.3674301, 46.8565923 ], + [ 8.3674582, 46.856583 ], + [ 8.3674872, 46.856575 ], + [ 8.367517, 46.8565687 ], + [ 8.3675474, 46.8565638 ], + [ 8.3675783, 46.8565605 ], + [ 8.3676004, 46.856559 ], + [ 8.3676227, 46.856558 ], + [ 8.367645, 46.8565576 ], + [ 8.3676672, 46.8565577 ], + [ 8.367689500000001, 46.8565584 ], + [ 8.3677117, 46.8565596 ], + [ 8.3677338, 46.8565612 ], + [ 8.3677559, 46.8565629 ], + [ 8.367778, 46.8565647 ], + [ 8.3678001, 46.8565667 ], + [ 8.3678221, 46.8565687 ], + [ 8.3678441, 46.8565709 ], + [ 8.3678603, 46.8565727 ], + [ 8.3678764, 46.8565746 ], + [ 8.3678924, 46.8565768 ], + [ 8.3679084, 46.8565791 ], + [ 8.3679244, 46.8565816 ], + [ 8.3679402, 46.8565843 ], + [ 8.367956, 46.8565873 ], + [ 8.3679717, 46.8565906 ], + [ 8.3679872, 46.8565942 ], + [ 8.3680025, 46.8565982 ], + [ 8.3680176, 46.8566025 ], + [ 8.3680325, 46.8566072 ], + [ 8.3680497, 46.856613 ], + [ 8.3680665, 46.8566192 ], + [ 8.3680829, 46.8566258 ], + [ 8.368099, 46.8566329 ], + [ 8.3681147, 46.8566403 ], + [ 8.36813, 46.8566482 ], + [ 8.3681452, 46.8566561 ], + [ 8.3681605, 46.8566639 ], + [ 8.368176, 46.8566716 ], + [ 8.3681916, 46.8566791 ], + [ 8.3682074, 46.8566864 ], + [ 8.3682234, 46.8566936 ], + [ 8.3682368, 46.8566995 ], + [ 8.3682501, 46.8567055 ], + [ 8.3682635, 46.8567115 ], + [ 8.3682768, 46.8567175 ], + [ 8.3682902, 46.8567235 ], + [ 8.3683035, 46.8567296 ], + [ 8.3683063, 46.8567309 ], + [ 8.3683091, 46.8567321 ], + [ 8.3683119, 46.8567334 ], + [ 8.368314699999999, 46.8567347 ], + [ 8.3683176, 46.856736 ], + [ 8.3683204, 46.8567373 ], + [ 8.3683365, 46.8567446 ], + [ 8.3683529, 46.8567517 ], + [ 8.3683693, 46.8567587 ], + [ 8.3683859, 46.8567655 ], + [ 8.3684027, 46.8567722 ], + [ 8.3684195, 46.8567787 ], + [ 8.3684317, 46.8567832 ], + [ 8.3684439, 46.8567877 ], + [ 8.3684562, 46.8567921 ], + [ 8.3684686, 46.8567964 ], + [ 8.368481, 46.8568006 ], + [ 8.3684935, 46.8568048 ], + [ 8.368496799999999, 46.8568059 ], + [ 8.3685001, 46.856807 ], + [ 8.3685035, 46.856808 ], + [ 8.3685068, 46.8568091 ], + [ 8.3685102, 46.8568102 ], + [ 8.3685135, 46.8568112 ], + [ 8.3685295, 46.8568162 ], + [ 8.3685455, 46.8568211 ], + [ 8.3685616, 46.856826 ], + [ 8.3685777, 46.8568307 ], + [ 8.3685939, 46.8568354 ], + [ 8.3686101, 46.85684 ], + [ 8.3686232, 46.8568437 ], + [ 8.3686364, 46.8568472 ], + [ 8.3686495, 46.8568508 ], + [ 8.3686627, 46.8568542 ], + [ 8.368676, 46.8568576 ], + [ 8.3686893, 46.856861 ], + [ 8.3687026, 46.8568642 ], + [ 8.368716, 46.856867199999996 ], + [ 8.3687296, 46.8568701 ], + [ 8.3687432, 46.8568727 ], + [ 8.3687569, 46.8568751 ], + [ 8.3687707, 46.8568774 ], + [ 8.3687822, 46.8568791 ], + [ 8.3687939, 46.8568805 ], + [ 8.3688056, 46.8568818 ], + [ 8.3688173, 46.8568828 ], + [ 8.3688291, 46.8568837 ], + [ 8.3688409, 46.8568843 ], + [ 8.3688527, 46.8568848 ], + [ 8.3688645, 46.8568853 ], + [ 8.3688764, 46.8568857 ], + [ 8.3688882, 46.8568861 ], + [ 8.3689, 46.8568864 ], + [ 8.3689118, 46.8568868 ], + [ 8.3689246, 46.8568869 ], + [ 8.3689374, 46.8568868 ], + [ 8.3689502, 46.8568863 ], + [ 8.3689629, 46.8568854 ], + [ 8.3689756, 46.8568843 ], + [ 8.3689882, 46.8568828 ], + [ 8.368992800000001, 46.8568826 ], + [ 8.3690347, 46.8568837 ], + [ 8.3690426, 46.8568833 ], + [ 8.3692743, 46.8568734 ], + [ 8.3692994, 46.8568724 ], + [ 8.3693246, 46.856873 ], + [ 8.3693496, 46.8568752 ], + [ 8.3693741, 46.8568789 ], + [ 8.3693981, 46.8568842 ], + [ 8.3694213, 46.856891 ], + [ 8.3694859, 46.8569134 ], + [ 8.3696375, 46.8569316 ], + [ 8.3697758, 46.8569879 ], + [ 8.3698997, 46.8570526 ], + [ 8.369976, 46.8570924 ], + [ 8.3700347, 46.8571231 ], + [ 8.3702936, 46.8572582 ], + [ 8.3707943, 46.8575325 ], + [ 8.3709633, 46.8576251 ], + [ 8.371067, 46.8572079 ], + [ 8.3708392, 46.8564826 ], + [ 8.3709132, 46.8551828 ], + [ 8.3709157, 46.8549861 ], + [ 8.3709431, 46.8528041 ], + [ 8.3709435, 46.8527733 ], + [ 8.3709099, 46.8526799 ], + [ 8.3708994, 46.8526504 ], + [ 8.3707774, 46.8521962 ], + [ 8.3707477, 46.8518402 ], + [ 8.3706801, 46.8516474 ], + [ 8.3704625, 46.851426000000004 ], + [ 8.3702134, 46.8512032 ], + [ 8.3699888, 46.8510278 ], + [ 8.3697753, 46.8508928 ], + [ 8.3694333, 46.850677 ], + [ 8.3693349, 46.8505915 ], + [ 8.3692849, 46.8505482 ], + [ 8.3692264, 46.8505005 ], + [ 8.3691237, 46.8504784 ], + [ 8.3687447, 46.8503236 ], + [ 8.3685839, 46.8502008 ], + [ 8.3684081, 46.850007 ], + [ 8.3683421, 46.8499027 ], + [ 8.368314699999999, 46.8497608 ], + [ 8.3684299, 46.8496348 ], + [ 8.3685415, 46.8494513 ], + [ 8.3685667, 46.8493971 ], + [ 8.3685752, 46.849372 ], + [ 8.3686809, 46.8490602 ], + [ 8.3687293, 46.8488264 ], + [ 8.3687469, 46.8486688 ], + [ 8.3688279, 46.8483465 ], + [ 8.3689261, 46.8482279 ], + [ 8.3689902, 46.8480659 ], + [ 8.3692438, 46.847793 ], + [ 8.369326, 46.8476547 ], + [ 8.3692932, 46.8475826 ], + [ 8.3691641, 46.8472413 ], + [ 8.3691056, 46.8470799 ], + [ 8.3689496, 46.8468153 ], + [ 8.368909500000001, 46.8466564 ], + [ 8.3689025, 46.846598 ], + [ 8.3689177, 46.8465281 ], + [ 8.368951299999999, 46.8463738 ], + [ 8.3691292, 46.8461952 ], + [ 8.3694309, 46.8460493 ], + [ 8.369901, 46.8455905 ], + [ 8.3701391, 46.8452891 ], + [ 8.3700593, 46.8451031 ], + [ 8.3700695, 46.845037 ], + [ 8.3702519, 46.844855 ], + [ 8.3702561, 46.8448508 ], + [ 8.3702655, 46.8448385 ], + [ 8.3702743, 46.84336 ], + [ 8.3702754, 46.8431773 ], + [ 8.3702787, 46.8428837 ], + [ 8.3702799, 46.8426222 ], + [ 8.3702877, 46.8421702 ], + [ 8.3702908, 46.8416015 ], + [ 8.3702905, 46.8415612 ], + [ 8.3702889, 46.8413399 ], + [ 8.3702934, 46.8413095 ], + [ 8.3703226, 46.8411124 ], + [ 8.3703448, 46.8408946 ], + [ 8.3703501, 46.8408694 ], + [ 8.3703795, 46.8408006 ], + [ 8.3704867, 46.8398731 ], + [ 8.3706051, 46.8395709 ], + [ 8.3707987, 46.8393006 ], + [ 8.3708088, 46.8390701 ], + [ 8.370782, 46.8389534 ], + [ 8.3707778, 46.8389352 ], + [ 8.3709058, 46.8387662 ], + [ 8.3711784, 46.8385065 ], + [ 8.371188, 46.8384973 ], + [ 8.3711885, 46.8384951 ], + [ 8.3712167, 46.8383585 ], + [ 8.3713772, 46.8381801 ], + [ 8.3714081, 46.8381458 ], + [ 8.3715589, 46.8378117 ], + [ 8.3708736, 46.8362993 ], + [ 8.3707085, 46.8361224 ], + [ 8.3706134, 46.8360205 ], + [ 8.3708693, 46.8347564 ], + [ 8.3710456, 46.8344395 ], + [ 8.371072999999999, 46.83442 ], + [ 8.3710764, 46.8344104 ], + [ 8.3711036, 46.8343983 ], + [ 8.3712679, 46.8342818 ], + [ 8.3716297, 46.8340537 ], + [ 8.3716708, 46.8339097 ], + [ 8.3717091, 46.8335049 ], + [ 8.3717749, 46.8333703 ], + [ 8.3718331, 46.8332512 ], + [ 8.3718897, 46.8330366 ], + [ 8.3718934, 46.8330282 ], + [ 8.3721478, 46.8326883 ], + [ 8.3724278, 46.8323687 ], + [ 8.372467, 46.8322834 ], + [ 8.3725227, 46.8321619 ], + [ 8.3727119, 46.8320742 ], + [ 8.3729248, 46.8319756 ], + [ 8.3732773, 46.8317626 ], + [ 8.3732828, 46.8317572 ], + [ 8.373595, 46.8314537 ], + [ 8.3738205, 46.8311814 ], + [ 8.3739038, 46.8311403 ], + [ 8.3741482, 46.8310195 ], + [ 8.3743183, 46.8306593 ], + [ 8.3743774, 46.8305105 ], + [ 8.374399499999999, 46.8304547 ], + [ 8.3745064, 46.8303057 ], + [ 8.37458, 46.8300382 ], + [ 8.3746065, 46.829886 ], + [ 8.3746663, 46.8297815 ], + [ 8.3747064, 46.8297115 ], + [ 8.3746641, 46.8296537 ], + [ 8.3746074, 46.8295764 ], + [ 8.3746056, 46.8295296 ], + [ 8.3747061, 46.8293204 ], + [ 8.3747211, 46.8293064 ], + [ 8.3747727, 46.8292582 ], + [ 8.374803, 46.8292299 ], + [ 8.3748103, 46.829228 ], + [ 8.3749675, 46.8291867 ], + [ 8.3751114, 46.828986 ], + [ 8.3751518, 46.8289297 ], + [ 8.375227, 46.8288741 ], + [ 8.3753041, 46.8288171 ], + [ 8.3753297, 46.8287534 ], + [ 8.37533, 46.8287531 ], + [ 8.37533, 46.8287526 ], + [ 8.3753658, 46.8286636 ], + [ 8.3753886, 46.8285574 ], + [ 8.3753755, 46.8285079 ], + [ 8.375353, 46.8284783 ], + [ 8.3752589, 46.8283546 ], + [ 8.3753763, 46.8282001 ], + [ 8.3755158, 46.8280164 ], + [ 8.3756082, 46.8278516 ], + [ 8.3756276, 46.8278172 ], + [ 8.3757822, 46.8276929 ], + [ 8.3758492, 46.8276586 ], + [ 8.376, 46.8276171 ], + [ 8.3761514, 46.8274861 ], + [ 8.3763437, 46.8273933 ], + [ 8.3764874, 46.8273543 ], + [ 8.3765672, 46.8273327 ], + [ 8.3766289, 46.8273017 ], + [ 8.3767937, 46.8271782 ], + [ 8.376804, 46.8271552 ], + [ 8.3768165, 46.8271301 ], + [ 8.3767641, 46.8269629 ], + [ 8.3767593, 46.8268255 ], + [ 8.3767093, 46.8264504 ], + [ 8.3764817, 46.8261496 ], + [ 8.3763862, 46.8260234 ], + [ 8.3764348, 46.825961 ], + [ 8.3765229, 46.8258478 ], + [ 8.3765683, 46.8257215 ], + [ 8.3765717, 46.8256508 ], + [ 8.3765735, 46.825613 ], + [ 8.3766135, 46.8255087 ], + [ 8.3767356, 46.8254189 ], + [ 8.376781, 46.8253855 ], + [ 8.3768388, 46.8252905 ], + [ 8.3768266, 46.8252404 ], + [ 8.3768118, 46.8251793 ], + [ 8.376818, 46.8251263 ], + [ 8.3768529, 46.8250737 ], + [ 8.3769194, 46.8249738 ], + [ 8.3769783, 46.824928 ], + [ 8.3769791, 46.8248817 ], + [ 8.3768971, 46.8247942 ], + [ 8.3768907, 46.8247874 ], + [ 8.3767814, 46.8245898 ], + [ 8.3768061, 46.8245331 ], + [ 8.3768425, 46.8244879 ], + [ 8.3769751, 46.824399 ], + [ 8.3770119, 46.8243743 ], + [ 8.377071, 46.824271 ], + [ 8.3770615, 46.8241669 ], + [ 8.3770802, 46.8240529 ], + [ 8.3770732, 46.8240177 ], + [ 8.3770701, 46.8240022 ], + [ 8.3770412, 46.8239594 ], + [ 8.3770852, 46.8239008 ], + [ 8.3771083, 46.8238812 ], + [ 8.3771275, 46.8238649 ], + [ 8.3772977, 46.8237464 ], + [ 8.3774474, 46.8236899 ], + [ 8.3775002, 46.8236443 ], + [ 8.3775392, 46.8235343 ], + [ 8.3775554, 46.8234885 ], + [ 8.3775523, 46.8234331 ], + [ 8.3775073, 46.8232176 ], + [ 8.3775133, 46.8231689 ], + [ 8.3775197, 46.8231551 ], + [ 8.3775406, 46.8231103 ], + [ 8.3775207, 46.8230543 ], + [ 8.3774773, 46.8230082 ], + [ 8.377466, 46.8230024 ], + [ 8.3772226, 46.8228791 ], + [ 8.377086, 46.8226839 ], + [ 8.3770314, 46.8224751 ], + [ 8.3769986, 46.8224198 ], + [ 8.3770843, 46.8223421 ], + [ 8.3771369, 46.8223073 ], + [ 8.3771498, 46.8222988 ], + [ 8.3771546, 46.8222896 ], + [ 8.3771788, 46.8222441 ], + [ 8.3772734, 46.8221435 ], + [ 8.3773917, 46.8220179 ], + [ 8.3773236, 46.8218801 ], + [ 8.3772642, 46.8217602 ], + [ 8.3771057, 46.8217096 ], + [ 8.3770727, 46.8216929 ], + [ 8.3769728, 46.8216425 ], + [ 8.3768968, 46.8215843 ], + [ 8.3767797, 46.821479 ], + [ 8.3766579, 46.8212795 ], + [ 8.3766214, 46.8212401 ], + [ 8.3765069, 46.8211543 ], + [ 8.3763457, 46.821107 ], + [ 8.3761874, 46.8210041 ], + [ 8.3760915, 46.8207939 ], + [ 8.3760962, 46.8206875 ], + [ 8.3760954, 46.8206856 ], + [ 8.3760495, 46.8205821 ], + [ 8.3759281, 46.8204436 ], + [ 8.375848, 46.8203522 ], + [ 8.3757049, 46.8202259 ], + [ 8.3756782, 46.8201777 ], + [ 8.3756466, 46.8201209 ], + [ 8.3756035, 46.8200837 ], + [ 8.3755276, 46.8200407 ], + [ 8.3755009, 46.8200068 ], + [ 8.3754954, 46.8199999 ], + [ 8.375468, 46.8199473 ], + [ 8.3754614, 46.8198935 ], + [ 8.3754382, 46.8198363 ], + [ 8.375413, 46.8197923 ], + [ 8.375379, 46.8197601 ], + [ 8.3753594, 46.8197415 ], + [ 8.3753318, 46.8196937 ], + [ 8.3753263, 46.8196339 ], + [ 8.3753665, 46.8195524 ], + [ 8.3754255, 46.8194326 ], + [ 8.3754451, 46.8194117 ], + [ 8.375581, 46.8192664 ], + [ 8.3755836, 46.8191352 ], + [ 8.3755863, 46.819013 ], + [ 8.3755905, 46.8188231 ], + [ 8.375652, 46.8186606 ], + [ 8.3757449, 46.8184963 ], + [ 8.3756536, 46.8184085 ], + [ 8.3757038, 46.8183044 ], + [ 8.3757114, 46.8182912 ], + [ 8.3757298, 46.818259499999996 ], + [ 8.3756521, 46.8181384 ], + [ 8.3756351, 46.8181118 ], + [ 8.3756031, 46.818062 ], + [ 8.3755889, 46.8180248 ], + [ 8.3755527, 46.8179298 ], + [ 8.3755364, 46.8179014 ], + [ 8.375409, 46.8176802 ], + [ 8.3751983, 46.8175904 ], + [ 8.3751823, 46.8175836 ], + [ 8.3751813, 46.8175774 ], + [ 8.3751707, 46.8175077 ], + [ 8.3750726, 46.8173932 ], + [ 8.3748752, 46.8172973 ], + [ 8.3746514, 46.8171688 ], + [ 8.3745882, 46.8171169 ], + [ 8.3744053, 46.8169667 ], + [ 8.3743712, 46.8168619 ], + [ 8.3743435, 46.8167766 ], + [ 8.3741598, 46.8166608 ], + [ 8.3741418, 46.8166442 ], + [ 8.3740924, 46.8165986 ], + [ 8.3740322, 46.8164838 ], + [ 8.374003, 46.816428 ], + [ 8.3738723, 46.8162429 ], + [ 8.3738534, 46.8162162 ], + [ 8.3739623, 46.8162279 ], + [ 8.3739194, 46.8161832 ], + [ 8.3738784, 46.8161579 ], + [ 8.3738034, 46.8161266 ], + [ 8.3737482, 46.8160706 ], + [ 8.3736925, 46.8160272 ], + [ 8.3736735, 46.8159853 ], + [ 8.3736095, 46.8159087 ], + [ 8.3735737, 46.8158917 ], + [ 8.3735446, 46.8158269 ], + [ 8.3734915, 46.8158051 ], + [ 8.3734683, 46.8157473 ], + [ 8.3734419, 46.815674 ], + [ 8.3733707, 46.8155687 ], + [ 8.3732964, 46.8155221 ], + [ 8.3732509, 46.8154504 ], + [ 8.3732024, 46.8153672 ], + [ 8.3731137, 46.8153528 ], + [ 8.3730335, 46.8153239 ], + [ 8.3729924, 46.8153066 ], + [ 8.372986, 46.815272 ], + [ 8.372991, 46.8152512 ], + [ 8.3729607, 46.8152136 ], + [ 8.3729228, 46.8151876 ], + [ 8.3729215, 46.8151868 ], + [ 8.3728594, 46.8151467 ], + [ 8.3728562, 46.8150573 ], + [ 8.3728552, 46.8150286 ], + [ 8.3728424, 46.8149996 ], + [ 8.3728604, 46.8149759 ], + [ 8.3728829, 46.8149291 ], + [ 8.3728889, 46.8148741 ], + [ 8.3728732, 46.8148286 ], + [ 8.3728884, 46.8147242 ], + [ 8.3729199, 46.8146619 ], + [ 8.3729257, 46.8146311 ], + [ 8.3729042, 46.8145741 ], + [ 8.372882, 46.8144937 ], + [ 8.3728869, 46.8144652 ], + [ 8.3728415, 46.8144015 ], + [ 8.3727834, 46.8143396 ], + [ 8.3727824, 46.8143386 ], + [ 8.3727319, 46.8142902 ], + [ 8.3726555, 46.8142185 ], + [ 8.3726222, 46.8142037 ], + [ 8.372643, 46.8141655 ], + [ 8.3726086, 46.8141409 ], + [ 8.3725994, 46.8141172 ], + [ 8.372607, 46.8140939 ], + [ 8.3726094, 46.8140773 ], + [ 8.37257, 46.8140617 ], + [ 8.3725567, 46.81403 ], + [ 8.372493, 46.8139628 ], + [ 8.3725056, 46.8139007 ], + [ 8.3724928, 46.8138668 ], + [ 8.3724481, 46.8138261 ], + [ 8.3724397, 46.8138065 ], + [ 8.3724437, 46.8137599 ], + [ 8.3724077, 46.813702 ], + [ 8.3723868, 46.8136616 ], + [ 8.3723254, 46.8136123 ], + [ 8.3722671, 46.813534 ], + [ 8.3722612, 46.813517 ], + [ 8.372248, 46.8134791 ], + [ 8.372248, 46.8134381 ], + [ 8.3722013, 46.8133548 ], + [ 8.3721766, 46.8132847 ], + [ 8.372159, 46.8132463 ], + [ 8.3721513, 46.8131897 ], + [ 8.3721133, 46.8131381 ], + [ 8.3721069, 46.8130936 ], + [ 8.3720508, 46.8130176 ], + [ 8.372020299999999, 46.8129593 ], + [ 8.3719715, 46.8128939 ], + [ 8.3719508, 46.8128586 ], + [ 8.371931, 46.8128156 ], + [ 8.3719057, 46.812780599999996 ], + [ 8.3718823, 46.8127452 ], + [ 8.3718654, 46.8126732 ], + [ 8.3718425, 46.8126208 ], + [ 8.3718043, 46.8125981 ], + [ 8.3717575, 46.8125688 ], + [ 8.3717054, 46.8125028 ], + [ 8.3716608, 46.8124673 ], + [ 8.3716516, 46.8124191 ], + [ 8.3716455, 46.8123556 ], + [ 8.3716077, 46.812306 ], + [ 8.3715575, 46.8122501 ], + [ 8.3714803, 46.8122002 ], + [ 8.3714755, 46.8121818 ], + [ 8.3713637, 46.8121322 ], + [ 8.3712152, 46.8121533 ], + [ 8.3712098, 46.8121536 ], + [ 8.3711193, 46.8121587 ], + [ 8.3710629, 46.8121362 ], + [ 8.3710102, 46.8121343 ], + [ 8.3709674, 46.8121182 ], + [ 8.3709127, 46.8120908 ], + [ 8.3709387, 46.8120462 ], + [ 8.3709363, 46.8120263 ], + [ 8.3709348, 46.811961 ], + [ 8.3709043, 46.8119233 ], + [ 8.3709043, 46.811903 ], + [ 8.370893, 46.8118701 ], + [ 8.3708729, 46.8118473 ], + [ 8.3708791, 46.81177 ], + [ 8.3708569, 46.811731 ], + [ 8.3708625, 46.81169 ], + [ 8.3708163, 46.811658 ], + [ 8.3707926, 46.8116209 ], + [ 8.3708078, 46.8115973 ], + [ 8.370813, 46.8115893 ], + [ 8.3707669, 46.8115345 ], + [ 8.3707825, 46.8114734 ], + [ 8.370737, 46.8114517 ], + [ 8.3707044, 46.8114217 ], + [ 8.3706944, 46.8113898 ], + [ 8.3706565, 46.8113519 ], + [ 8.3706913, 46.8113198 ], + [ 8.3706005, 46.8112684 ], + [ 8.370595, 46.8112653 ], + [ 8.3705595, 46.8112452 ], + [ 8.3705299, 46.8111969 ], + [ 8.3704948, 46.8111532 ], + [ 8.3704928, 46.8111263 ], + [ 8.3704995, 46.8111047 ], + [ 8.3705052, 46.8110896 ], + [ 8.3705107, 46.8110754 ], + [ 8.3704938, 46.8110209 ], + [ 8.3704659, 46.810985 ], + [ 8.3704824, 46.8109404 ], + [ 8.3704951, 46.8109153 ], + [ 8.3704735, 46.8108839 ], + [ 8.3704444, 46.81084 ], + [ 8.3704057, 46.810814 ], + [ 8.3703741, 46.8107962 ], + [ 8.37033, 46.8107713 ], + [ 8.3702857, 46.8107287 ], + [ 8.3702607, 46.8107083 ], + [ 8.3702548, 46.8106662 ], + [ 8.3702767, 46.8106288 ], + [ 8.3702678, 46.8105733 ], + [ 8.3702594, 46.8105435 ], + [ 8.3702894, 46.8104995 ], + [ 8.3702927, 46.8104947 ], + [ 8.3702976, 46.810446999999996 ], + [ 8.370279, 46.8104379 ], + [ 8.3702191, 46.810408699999996 ], + [ 8.370202, 46.8103765 ], + [ 8.3701864, 46.8103212 ], + [ 8.3702512, 46.8102763 ], + [ 8.3702888, 46.8102368 ], + [ 8.3703076, 46.8102092 ], + [ 8.3703213, 46.810189 ], + [ 8.370337899999999, 46.8101483 ], + [ 8.3703342, 46.8101374 ], + [ 8.3703203, 46.8100974 ], + [ 8.3703341, 46.810015 ], + [ 8.3703563, 46.8099964 ], + [ 8.370359, 46.80997 ], + [ 8.3703342, 46.8099499 ], + [ 8.3703286, 46.8099004 ], + [ 8.3703133, 46.8098802 ], + [ 8.3702847, 46.8098424 ], + [ 8.3702577, 46.8098196 ], + [ 8.3702411, 46.8097974 ], + [ 8.3702539, 46.8097929 ], + [ 8.3702211, 46.8097745 ], + [ 8.3701894, 46.8097606 ], + [ 8.3701519, 46.8097385 ], + [ 8.370138, 46.8097245 ], + [ 8.3701356, 46.8097221 ], + [ 8.3701157, 46.8096958 ], + [ 8.3700875, 46.8096555 ], + [ 8.3700444, 46.8096065 ], + [ 8.3700104, 46.8095641 ], + [ 8.3699991, 46.8095478 ], + [ 8.3699953, 46.809537 ], + [ 8.3699958, 46.8095239 ], + [ 8.3699997, 46.8095002 ], + [ 8.370009, 46.8094654 ], + [ 8.370012, 46.8094302 ], + [ 8.37001, 46.8093652 ], + [ 8.3699979, 46.8093053 ], + [ 8.3699978, 46.809305 ], + [ 8.3699754, 46.8091995 ], + [ 8.3699608, 46.8091306 ], + [ 8.3699403, 46.809034 ], + [ 8.3699468, 46.8090334 ], + [ 8.3699545, 46.8090324 ], + [ 8.369952, 46.8090221 ], + [ 8.3699452, 46.8090227 ], + [ 8.3699387, 46.8090234 ], + [ 8.3699336, 46.8090014 ], + [ 8.3699321, 46.8089922 ], + [ 8.3699174, 46.8089013 ], + [ 8.3699103, 46.8087895 ], + [ 8.369911, 46.8087776 ], + [ 8.3699016, 46.808722 ], + [ 8.3698896, 46.808666099999996 ], + [ 8.3698598, 46.808593 ], + [ 8.3698336, 46.8085151 ], + [ 8.36979, 46.808466 ], + [ 8.3697177, 46.8084005 ], + [ 8.369621, 46.8083336 ], + [ 8.3695749, 46.8082963 ], + [ 8.3695097, 46.8082336 ], + [ 8.3694192, 46.8081812 ], + [ 8.369332, 46.8081877 ], + [ 8.3692335, 46.80816 ], + [ 8.3691101, 46.8081041 ], + [ 8.3690715, 46.8080796 ], + [ 8.3690196, 46.8080311 ], + [ 8.3689524, 46.8079815 ], + [ 8.3689464, 46.8079324 ], + [ 8.3689619, 46.8078903 ], + [ 8.368939, 46.8078367 ], + [ 8.3689246, 46.8077532 ], + [ 8.3688534, 46.8076883 ], + [ 8.3688099, 46.8076516 ], + [ 8.3687813, 46.8076128 ], + [ 8.3687513, 46.8075577 ], + [ 8.3687352, 46.8075079 ], + [ 8.3687353, 46.8074619 ], + [ 8.3687324, 46.8074085 ], + [ 8.3687288, 46.8073596 ], + [ 8.3687256, 46.8073014 ], + [ 8.3687089, 46.8072492 ], + [ 8.3686947, 46.8071609 ], + [ 8.3686833, 46.8071014 ], + [ 8.3686761, 46.8070387 ], + [ 8.3686839, 46.8069806 ], + [ 8.3686924, 46.8069394 ], + [ 8.368676, 46.8068699 ], + [ 8.3686647, 46.8068155 ], + [ 8.3686547, 46.8067459 ], + [ 8.3686548, 46.806688 ], + [ 8.368648199999999, 46.8066266 ], + [ 8.3686392, 46.8065586 ], + [ 8.3686291, 46.8064652 ], + [ 8.3686172, 46.8064035 ], + [ 8.3686101, 46.8063378 ], + [ 8.3686098, 46.8062851 ], + [ 8.3686188, 46.8062412 ], + [ 8.3686462, 46.8061909 ], + [ 8.3686768, 46.8061439 ], + [ 8.3687251, 46.8060877 ], + [ 8.3687483, 46.8060702 ], + [ 8.3688, 46.8060253 ], + [ 8.368851, 46.805964 ], + [ 8.3688872, 46.8059195 ], + [ 8.3689225, 46.8058789 ], + [ 8.3689455, 46.8058297 ], + [ 8.3689628, 46.8057586 ], + [ 8.3689949, 46.8056743 ], + [ 8.3690219, 46.8056233 ], + [ 8.3690414, 46.8055731 ], + [ 8.3690536, 46.8055188 ], + [ 8.3690651, 46.805471 ], + [ 8.3690767, 46.8054022 ], + [ 8.3690845, 46.8053644 ], + [ 8.3690978, 46.8053452 ], + [ 8.369102, 46.8053428 ], + [ 8.3691105, 46.8053091 ], + [ 8.3691097, 46.8053089 ], + [ 8.3691145, 46.8053036 ], + [ 8.3691155, 46.8052998 ], + [ 8.3691131, 46.8052884 ], + [ 8.3691083, 46.8052729 ], + [ 8.3691004, 46.8052356 ], + [ 8.3690879, 46.8051968 ], + [ 8.3690799, 46.8051465 ], + [ 8.3690707, 46.8051036 ], + [ 8.3690658, 46.8050719 ], + [ 8.3690538, 46.805014 ], + [ 8.3690444, 46.8049527 ], + [ 8.3690401, 46.8048976 ], + [ 8.3690401, 46.8048454 ], + [ 8.3690292, 46.804782 ], + [ 8.3690137, 46.8047242 ], + [ 8.3690035, 46.8046786 ], + [ 8.368999, 46.8046626 ], + [ 8.3689895, 46.8046291 ], + [ 8.3689647, 46.8045872 ], + [ 8.3689341, 46.8045387 ], + [ 8.368882, 46.8044915 ], + [ 8.3688322, 46.8044559 ], + [ 8.3687937, 46.8044226 ], + [ 8.3687513, 46.8043727 ], + [ 8.3687341, 46.8043259 ], + [ 8.3687456, 46.8042515 ], + [ 8.3687582, 46.8041684 ], + [ 8.3687868, 46.8040937 ], + [ 8.3687957, 46.8040611 ], + [ 8.3688002, 46.8040204 ], + [ 8.3688032, 46.803985 ], + [ 8.3687888, 46.8039538 ], + [ 8.3687578, 46.8039229 ], + [ 8.3686963, 46.8038693 ], + [ 8.3686258, 46.8038 ], + [ 8.3685509, 46.8037405 ], + [ 8.3684655, 46.8036748 ], + [ 8.368431, 46.8036204 ], + [ 8.3684032, 46.8035658 ], + [ 8.3683815, 46.8035012 ], + [ 8.3683781, 46.80343 ], + [ 8.3683888, 46.8033662 ], + [ 8.3684114, 46.8032755 ], + [ 8.3684453, 46.8032036 ], + [ 8.3684965, 46.8031121 ], + [ 8.3685237, 46.8030765 ], + [ 8.3685264, 46.8030729 ], + [ 8.3685742, 46.8030365 ], + [ 8.368627, 46.8030177 ], + [ 8.3686858, 46.8030017 ], + [ 8.3687338, 46.8029846 ], + [ 8.3687681, 46.8029628 ], + [ 8.3687818, 46.8029448 ], + [ 8.3688381, 46.8028695 ], + [ 8.3688962, 46.8028077 ], + [ 8.3689471, 46.8027354 ], + [ 8.3690152, 46.802644 ], + [ 8.3690618, 46.8026004 ], + [ 8.3690881, 46.8025568 ], + [ 8.3691004, 46.8025226 ], + [ 8.3690898, 46.8024689 ], + [ 8.3690806, 46.8024286 ], + [ 8.3690555, 46.8023733 ], + [ 8.3690226, 46.802317 ], + [ 8.3689848, 46.8022622 ], + [ 8.3689609, 46.802224 ], + [ 8.3689422, 46.8021844 ], + [ 8.368946, 46.8021496 ], + [ 8.368971, 46.8021113 ], + [ 8.3690107, 46.802064 ], + [ 8.369059, 46.8020197 ], + [ 8.3691091, 46.8019838 ], + [ 8.369155899999999, 46.8019451 ], + [ 8.369192, 46.8018931 ], + [ 8.3692079, 46.8018401 ], + [ 8.3692076, 46.8018042 ], + [ 8.3692147, 46.8017699 ], + [ 8.3692221, 46.8017177 ], + [ 8.3692711, 46.8016051 ], + [ 8.3692963, 46.8015631 ], + [ 8.3693247, 46.8015133 ], + [ 8.3693401, 46.8014647 ], + [ 8.3693552, 46.8014097 ], + [ 8.3693514, 46.8013559 ], + [ 8.3693462, 46.8012989 ], + [ 8.3693417, 46.8012493 ], + [ 8.3693392, 46.8011875 ], + [ 8.3693349, 46.8011216 ], + [ 8.3693346, 46.8011172 ], + [ 8.3693515, 46.8010332 ], + [ 8.3693549, 46.801016 ], + [ 8.3693683, 46.8009433 ], + [ 8.3693835, 46.8008737 ], + [ 8.3693931, 46.8008105 ], + [ 8.3693991, 46.8007421 ], + [ 8.3694084, 46.8006724 ], + [ 8.369418, 46.8006147 ], + [ 8.3694236, 46.8005685 ], + [ 8.3694259, 46.8005139 ], + [ 8.3694207, 46.8004716 ], + [ 8.369420999999999, 46.8004322 ], + [ 8.369420999999999, 46.8004075 ], + [ 8.3694161, 46.8003767 ], + [ 8.3694129, 46.80035 ], + [ 8.3694062, 46.8003263 ], + [ 8.3693819, 46.8003048 ], + [ 8.3693463, 46.8002814 ], + [ 8.3693036, 46.8002653 ], + [ 8.3692395, 46.8002416 ], + [ 8.3691673, 46.8002257 ], + [ 8.3690997, 46.800215 ], + [ 8.3690397, 46.8002061 ], + [ 8.3689685, 46.8001865 ], + [ 8.3689089, 46.8001703 ], + [ 8.3688864, 46.8001637 ], + [ 8.3688609, 46.8001561 ], + [ 8.368814799999999, 46.8001364 ], + [ 8.3687839, 46.8001138 ], + [ 8.3687671, 46.8000864 ], + [ 8.3687279, 46.8000466 ], + [ 8.3687091, 46.8000145 ], + [ 8.368686199999999, 46.7999737 ], + [ 8.3686546, 46.7999307 ], + [ 8.3686214, 46.7998887 ], + [ 8.3685889, 46.7998572 ], + [ 8.3685469, 46.7998335 ], + [ 8.3685139, 46.7998206 ], + [ 8.3684889, 46.7997902 ], + [ 8.3684741, 46.7997535 ], + [ 8.3684671, 46.7997109 ], + [ 8.3684597, 46.7996571 ], + [ 8.3684546, 46.7995929 ], + [ 8.3684382, 46.799525 ], + [ 8.3684271, 46.7994559 ], + [ 8.3684244, 46.7994023 ], + [ 8.3684398, 46.7993759 ], + [ 8.36846, 46.7993495 ], + [ 8.3684897, 46.7993207 ], + [ 8.3685017, 46.7992833 ], + [ 8.3685031, 46.7992416 ], + [ 8.3684986, 46.7991974 ], + [ 8.3684834, 46.7991514 ], + [ 8.3684608, 46.7990987 ], + [ 8.3684399, 46.7990379 ], + [ 8.3684258, 46.7989826 ], + [ 8.3684178, 46.7989307 ], + [ 8.3684206, 46.7988873 ], + [ 8.3684404, 46.7988567 ], + [ 8.3684733, 46.7988257 ], + [ 8.3685039, 46.7988016 ], + [ 8.3685304, 46.7987827 ], + [ 8.3685606, 46.7987666 ], + [ 8.368583, 46.7987544 ], + [ 8.3686165, 46.7986466 ], + [ 8.3686218, 46.7986345 ], + [ 8.3686343, 46.7986154 ], + [ 8.3686525, 46.7985943 ], + [ 8.36869, 46.7985633 ], + [ 8.3687105, 46.7985478 ], + [ 8.3687197, 46.7985408 ], + [ 8.3687545, 46.7985237 ], + [ 8.3687931, 46.7985072 ], + [ 8.3688304, 46.7984914 ], + [ 8.3688677, 46.7984733 ], + [ 8.3689063, 46.7984625 ], + [ 8.3689339, 46.7984621 ], + [ 8.3689216, 46.7984417 ], + [ 8.3689123, 46.7984189 ], + [ 8.3688733, 46.7983995 ], + [ 8.3688367, 46.798375899999996 ], + [ 8.3688179, 46.7983513 ], + [ 8.3687849, 46.7982516 ], + [ 8.3687784, 46.7982026 ], + [ 8.3687861, 46.7981672 ], + [ 8.3687983, 46.7981496 ], + [ 8.3687656, 46.7980973 ], + [ 8.3687503, 46.7980584 ], + [ 8.3687373, 46.7980333 ], + [ 8.3686425, 46.7979809 ], + [ 8.368631, 46.7978919 ], + [ 8.3686295, 46.7978898 ], + [ 8.368588, 46.7978282 ], + [ 8.3685516, 46.7977829 ], + [ 8.3685357, 46.7977489 ], + [ 8.3685467, 46.7977234 ], + [ 8.3685526, 46.7976935 ], + [ 8.3685328, 46.7976388 ], + [ 8.3685236, 46.7975914 ], + [ 8.3685189, 46.7975669 ], + [ 8.3685235, 46.7975538 ], + [ 8.3685341, 46.7975292 ], + [ 8.3685374, 46.7974927 ], + [ 8.3685666, 46.7974302 ], + [ 8.3685852, 46.7973728 ], + [ 8.3686045, 46.7973249 ], + [ 8.3686249, 46.7972881 ], + [ 8.3686221, 46.797245 ], + [ 8.3686104, 46.797199 ], + [ 8.3685894, 46.7971458 ], + [ 8.3685673, 46.7970924 ], + [ 8.3685814, 46.7970463 ], + [ 8.3686066, 46.7970125 ], + [ 8.3686215, 46.7969756 ], + [ 8.3686057, 46.7969303 ], + [ 8.3686115, 46.7968802 ], + [ 8.3685821, 46.7968329 ], + [ 8.3685632, 46.7967709 ], + [ 8.3685579, 46.7967148 ], + [ 8.3685764, 46.79664 ], + [ 8.3686111, 46.7965505 ], + [ 8.3686552, 46.7964738 ], + [ 8.3686907, 46.7964118 ], + [ 8.3686966, 46.796343 ], + [ 8.3687256, 46.7962773 ], + [ 8.3687437, 46.7961927 ], + [ 8.3687288, 46.7961012 ], + [ 8.3687183, 46.795994 ], + [ 8.3687213, 46.7959295 ], + [ 8.3687212, 46.795858 ], + [ 8.3687074, 46.795782 ], + [ 8.368716, 46.7957232 ], + [ 8.3687088, 46.7955557 ], + [ 8.3687055, 46.795461 ], + [ 8.368707, 46.7953801 ], + [ 8.368721, 46.795299299999996 ], + [ 8.368769499999999, 46.7951692 ], + [ 8.3688129, 46.7950433 ], + [ 8.368815, 46.7950372 ], + [ 8.3688043, 46.7950088 ], + [ 8.3687944, 46.7949773 ], + [ 8.3687704, 46.7949315 ], + [ 8.3687536, 46.7948868 ], + [ 8.3687497, 46.7948411 ], + [ 8.3687525, 46.7947914 ], + [ 8.3687723, 46.794741 ], + [ 8.3687872, 46.7947049 ], + [ 8.3687988, 46.7946731 ], + [ 8.3688039, 46.7946407 ], + [ 8.3688007, 46.7945938 ], + [ 8.3687902, 46.7945419 ], + [ 8.368776, 46.7944969 ], + [ 8.3687711, 46.7944555 ], + [ 8.3687818, 46.7944178 ], + [ 8.3687975, 46.7943653 ], + [ 8.3688052, 46.7943071 ], + [ 8.3688053, 46.7942902 ], + [ 8.3688054, 46.7942569 ], + [ 8.3688132, 46.7942016 ], + [ 8.368817, 46.7941577 ], + [ 8.3688192, 46.7941057 ], + [ 8.3688173, 46.7940938 ], + [ 8.3688173, 46.7940773 ], + [ 8.368817, 46.7940494 ], + [ 8.3688237, 46.7940237 ], + [ 8.3688314, 46.7939978 ], + [ 8.3688334, 46.7939747 ], + [ 8.3688333, 46.793949 ], + [ 8.368845, 46.7939281 ], + [ 8.3688349, 46.7939116 ], + [ 8.3688273, 46.7938759 ], + [ 8.3688106, 46.7938187 ], + [ 8.3687888, 46.7937549 ], + [ 8.3687558, 46.7936803 ], + [ 8.3687204, 46.7936073 ], + [ 8.3686779, 46.7935225 ], + [ 8.3686498, 46.7934451 ], + [ 8.3686431, 46.7933724 ], + [ 8.368645, 46.7933111 ], + [ 8.3686435, 46.7932654 ], + [ 8.3686285, 46.7932324 ], + [ 8.3685954, 46.7931976 ], + [ 8.3685979, 46.7931688 ], + [ 8.3686046, 46.7931532 ], + [ 8.3686221, 46.7930966 ], + [ 8.3686412, 46.7930541 ], + [ 8.3686578, 46.7930081 ], + [ 8.3686661, 46.7929568 ], + [ 8.3686946, 46.7928989 ], + [ 8.3687703, 46.792791199999996 ], + [ 8.3688399, 46.792707 ], + [ 8.3688839, 46.7926511 ], + [ 8.3688986, 46.7925922 ], + [ 8.3688995, 46.7925668 ], + [ 8.3688789, 46.7925388 ], + [ 8.3688496, 46.7925144 ], + [ 8.3688389, 46.7924742 ], + [ 8.3688494, 46.7924395 ], + [ 8.368867999999999, 46.7924016 ], + [ 8.3688796, 46.7923674 ], + [ 8.3688826, 46.7923496 ], + [ 8.3688983, 46.7923103 ], + [ 8.3689076, 46.7922885 ], + [ 8.3689154, 46.7922704 ], + [ 8.3689093, 46.7922473 ], + [ 8.3688846, 46.7922402 ], + [ 8.3688778, 46.7922222 ], + [ 8.368872, 46.7921965 ], + [ 8.3688362, 46.7921355 ], + [ 8.3687848, 46.7920824 ], + [ 8.3687753, 46.7920445 ], + [ 8.368772, 46.7919986 ], + [ 8.3687673, 46.7919463 ], + [ 8.3687754, 46.7918723 ], + [ 8.3687747, 46.7918261 ], + [ 8.368754, 46.7918052 ], + [ 8.3687278, 46.7917855 ], + [ 8.3686887, 46.7917612 ], + [ 8.3691914, 46.7891436 ], + [ 8.368860399999999, 46.7892682 ], + [ 8.3686431, 46.78935 ], + [ 8.3685798, 46.7893738 ], + [ 8.3683558, 46.7894581 ], + [ 8.368302, 46.7894784 ], + [ 8.3671283, 46.790017399999996 ], + [ 8.3664972, 46.7907695 ], + [ 8.3655897, 46.7911626 ], + [ 8.3651031, 46.7914841 ], + [ 8.3642669, 46.791834 ], + [ 8.3634574, 46.7923731 ], + [ 8.363430900000001, 46.7923908 ], + [ 8.3631787, 46.7925587 ], + [ 8.3631317, 46.7925673 ], + [ 8.3628866, 46.7926119 ], + [ 8.3628177, 46.7926455 ], + [ 8.3627072, 46.7926153 ], + [ 8.3621092, 46.792452 ], + [ 8.3617976, 46.7923731 ], + [ 8.3614783, 46.7922772 ], + [ 8.3612488, 46.7921645 ], + [ 8.3611754, 46.7920855 ], + [ 8.3610688, 46.7919332 ], + [ 8.3609704, 46.7917809 ], + [ 8.360839, 46.7916625 ], + [ 8.3606254, 46.7915214 ], + [ 8.3604457, 46.7913973 ], + [ 8.3603304, 46.791262 ], + [ 8.3601172, 46.7911492 ], + [ 8.3598392, 46.7910251 ], + [ 8.3595768, 46.7909969 ], + [ 8.3592817, 46.7909745 ], + [ 8.3590358, 46.7909576 ], + [ 8.3587738, 46.7909068 ], + [ 8.3585687, 46.7908336 ], + [ 8.3582654, 46.7907151 ], + [ 8.3579956, 46.7905911 ], + [ 8.3577249, 46.7904105 ], + [ 8.3575522, 46.7901229 ], + [ 8.3574546, 46.7900158 ], + [ 8.3573723, 46.789948 ], + [ 8.3572246, 46.7898746 ], + [ 8.356971, 46.7897901 ], + [ 8.3567002, 46.7897055 ], + [ 8.3564793, 46.7896152 ], + [ 8.3563073, 46.789463 ], + [ 8.3561674, 46.7893276 ], + [ 8.3560934, 46.7892092 ], + [ 8.3560196, 46.7890568 ], + [ 8.3558233, 46.7888764 ], + [ 8.3556591, 46.7887522 ], + [ 8.35543, 46.7886619 ], + [ 8.3551432, 46.7885944 ], + [ 8.3547988, 46.7885606 ], + [ 8.3545858, 46.7885493 ], + [ 8.3543565, 46.7884985 ], + [ 8.3539964, 46.7884534 ], + [ 8.3536599, 46.7884027 ], + [ 8.3532916, 46.7883576 ], + [ 8.3528902, 46.7882899 ], + [ 8.3524559, 46.7882167 ], + [ 8.3521195, 46.7881716 ], + [ 8.3517023, 46.7881829 ], + [ 8.3514969, 46.7881886 ], + [ 8.3512351, 46.788104 ], + [ 8.3510054, 46.7879742 ], + [ 8.3508253, 46.7878784 ], + [ 8.3507103, 46.7878558 ], + [ 8.3504978, 46.7878727 ], + [ 8.3501206, 46.7878842 ], + [ 8.3494979, 46.7878954 ], + [ 8.3489982, 46.787827899999996 ], + [ 8.348711699999999, 46.7878278 ], + [ 8.3485069, 46.7878673 ], + [ 8.3483267, 46.7879069 ], + [ 8.3479905, 46.787873 ], + [ 8.3473843, 46.7877998 ], + [ 8.3465897, 46.7877152 ], + [ 8.3459837, 46.7876023 ], + [ 8.345443, 46.787529 ], + [ 8.3449919, 46.7874727 ], + [ 8.3447051, 46.7874557 ], + [ 8.3442873, 46.7874389 ], + [ 8.3439846, 46.7873995 ], + [ 8.343829, 46.7873487 ], + [ 8.3437635, 46.7872979 ], + [ 8.3437464, 46.7872528 ], + [ 8.3437469, 46.787185 ], + [ 8.3436979, 46.7870947 ], + [ 8.3435914, 46.7869933 ], + [ 8.3433533, 46.7869029 ], + [ 8.3429193, 46.7867901 ], + [ 8.3422803, 46.7866153 ], + [ 8.3415754, 46.7864122 ], + [ 8.3406583, 46.7860005 ], + [ 8.3401088, 46.7857917 ], + [ 8.3396908, 46.7856112 ], + [ 8.339330499999999, 46.7854588 ], + [ 8.3389539, 46.7853066 ], + [ 8.3385524, 46.7851373 ], + [ 8.3381261, 46.7849963 ], + [ 8.3378068, 46.7849455 ], + [ 8.3374955, 46.784827 ], + [ 8.3371679, 46.7847706 ], + [ 8.3368645, 46.784686 ], + [ 8.3365859, 46.7845731 ], + [ 8.3361928, 46.7845111 ], + [ 8.3358983, 46.7845224 ], + [ 8.3356273, 46.7845167 ], + [ 8.3354799, 46.7844603 ], + [ 8.3354063, 46.78437 ], + [ 8.3353569, 46.7843023 ], + [ 8.3352589, 46.7842176 ], + [ 8.335169, 46.7841781 ], + [ 8.3350296, 46.7841105 ], + [ 8.3348081, 46.7840315 ], + [ 8.3345874, 46.7839524 ], + [ 8.334276, 46.7838791 ], + [ 8.3340713, 46.7838284 ], + [ 8.3338662, 46.7838001 ], + [ 8.3336368, 46.783788799999996 ], + [ 8.3334239, 46.7837324 ], + [ 8.3330966, 46.7836365 ], + [ 8.3328588, 46.7835124 ], + [ 8.3324654, 46.7832867 ], + [ 8.3343175, 46.7898199 ], + [ 8.333975, 46.7966407 ], + [ 8.333639, 46.7965279 ], + [ 8.3334422, 46.7964602 ], + [ 8.3332374, 46.7963981 ], + [ 8.333048699999999, 46.7963755 ], + [ 8.3329014, 46.7963304 ], + [ 8.3327372, 46.7962571 ], + [ 8.3325982, 46.7961668 ], + [ 8.332516, 46.7960991 ], + [ 8.3323363, 46.7960709 ], + [ 8.3321803, 46.7960483 ], + [ 8.3320412, 46.7960032 ], + [ 8.3319261, 46.7959241 ], + [ 8.3317547, 46.7958564 ], + [ 8.3315167, 46.7958226 ], + [ 8.331205, 46.7957831 ], + [ 8.3310169, 46.7957492 ], + [ 8.3308608, 46.7956645 ], + [ 8.330591, 46.7954445 ], + [ 8.330337, 46.7953317 ], + [ 8.3301974, 46.7952019 ], + [ 8.3300661, 46.7951398 ], + [ 8.3299759, 46.7951286 ], + [ 8.3298454, 46.7950101 ], + [ 8.3296324, 46.7949536 ], + [ 8.3293864, 46.7948803 ], + [ 8.3292225, 46.7947675 ], + [ 8.3290425, 46.7946772 ], + [ 8.328878, 46.794632 ], + [ 8.3287308, 46.7945418 ], + [ 8.3285095, 46.794474 ], + [ 8.3282717, 46.7944063 ], + [ 8.3280018, 46.7943217 ], + [ 8.3277226, 46.7942201 ], + [ 8.3276084, 46.7941468 ], + [ 8.3275095, 46.794056499999996 ], + [ 8.3273133, 46.7939719 ], + [ 8.3271823, 46.793921 ], + [ 8.3270098, 46.7937856 ], + [ 8.3268378, 46.793684 ], + [ 8.3266494, 46.7935768 ], + [ 8.326396, 46.7934527 ], + [ 8.3259863, 46.7933342 ], + [ 8.3256006, 46.7931762 ], + [ 8.325142, 46.793069 ], + [ 8.3249042, 46.7930408 ], + [ 8.3247651, 46.7929956 ], + [ 8.3247, 46.7929222 ], + [ 8.3245686, 46.7927981 ], + [ 8.3243144, 46.7927191 ], + [ 8.3240443, 46.792674 ], + [ 8.323905, 46.7926175 ], + [ 8.3238231, 46.7925159 ], + [ 8.3236265, 46.792358 ], + [ 8.3233725, 46.7920984 ], + [ 8.3231507, 46.7919517 ], + [ 8.3229383, 46.7918783 ], + [ 8.3227004, 46.7917993 ], + [ 8.3224629, 46.7916921 ], + [ 8.322225, 46.7915623 ], + [ 8.3220693, 46.7914494 ], + [ 8.3217583, 46.7913084 ], + [ 8.3215208, 46.7912012 ], + [ 8.3212342, 46.7910995 ], + [ 8.3209803, 46.7910374 ], + [ 8.3206602, 46.7908851 ], + [ 8.3203329, 46.7907496 ], + [ 8.3199393, 46.7906086 ], + [ 8.3194152, 46.7904449 ], + [ 8.3189402, 46.7903319 ], + [ 8.318506, 46.7903093 ], + [ 8.3181862, 46.7903318 ], + [ 8.3174815, 46.7898353 ], + [ 8.3172604, 46.7897281 ], + [ 8.3170885, 46.7896773 ], + [ 8.3169576, 46.7895869 ], + [ 8.3167611, 46.7894798 ], + [ 8.316555900000001, 46.7894006 ], + [ 8.3163597, 46.7892652 ], + [ 8.3161626, 46.7890733 ], + [ 8.3158682, 46.7888929 ], + [ 8.3155647, 46.7887517 ], + [ 8.315392899999999, 46.7885599 ], + [ 8.3150978, 46.7883285 ], + [ 8.3147788, 46.7880464 ], + [ 8.3146309, 46.7879617 ], + [ 8.314418, 46.7879052 ], + [ 8.3142214, 46.7878939 ], + [ 8.3141312, 46.7878375 ], + [ 8.3140328, 46.7877247 ], + [ 8.3138614, 46.7875554 ], + [ 8.3136811, 46.7874369 ], + [ 8.3135173, 46.7873352 ], + [ 8.3134677, 46.7872506 ], + [ 8.3133864, 46.7871377 ], + [ 8.3132881, 46.787132 ], + [ 8.3131404, 46.7871095 ], + [ 8.3130335, 46.7870305 ], + [ 8.3129269, 46.7869684 ], + [ 8.3127388, 46.7868782 ], + [ 8.3125337, 46.786799 ], + [ 8.3124849, 46.7867144 ], + [ 8.3124772, 46.7865959 ], + [ 8.3124109, 46.7865451 ], + [ 8.3123045, 46.7864944 ], + [ 8.3121736, 46.7863984 ], + [ 8.3119691, 46.7862573 ], + [ 8.3118458, 46.7861219 ], + [ 8.3118132, 46.7859809 ], + [ 8.311723, 46.785868 ], + [ 8.311592, 46.7858173 ], + [ 8.3114203, 46.7857777 ], + [ 8.3113626, 46.7856536 ], + [ 8.3112562, 46.7856028 ], + [ 8.3111252, 46.785597 ], + [ 8.3110109, 46.7853657 ], + [ 8.3108876, 46.7853318 ], + [ 8.3105605, 46.7853995 ], + [ 8.3102732, 46.7854502 ], + [ 8.3098882, 46.7852808 ], + [ 8.3096672, 46.7851341 ], + [ 8.3092085, 46.7849083 ], + [ 8.3087989, 46.7847389 ], + [ 8.3081352, 46.7845922 ], + [ 8.3079141, 46.7853989 ], + [ 8.3077992, 46.7855287 ], + [ 8.3076188, 46.785664 ], + [ 8.307431, 46.7857936 ], + [ 8.3072343, 46.7859291 ], + [ 8.3071517, 46.786087 ], + [ 8.3070701, 46.7862561 ], + [ 8.3069633, 46.7864875 ], + [ 8.3069059, 46.786685 ], + [ 8.3067912, 46.7868767 ], + [ 8.3067009, 46.7872208 ], + [ 8.3065617, 46.7873675 ], + [ 8.3064473, 46.7874295 ], + [ 8.3062338, 46.7874407 ], + [ 8.3060049, 46.7874576 ], + [ 8.3056195, 46.7875196 ], + [ 8.3053162, 46.7875928 ], + [ 8.3051201, 46.7876662 ], + [ 8.3049399, 46.7878127 ], + [ 8.3046609, 46.7880271 ], + [ 8.3044315, 46.7882131 ], + [ 8.3042921, 46.7884049 ], + [ 8.3040295, 46.7885177 ], + [ 8.3036613, 46.7886305 ], + [ 8.3033331, 46.7886811 ], + [ 8.3029643, 46.78876 ], + [ 8.3026777, 46.7887995 ], + [ 8.3023507, 46.7888275 ], + [ 8.3019732, 46.7888725 ], + [ 8.3016536, 46.7889007 ], + [ 8.3012853, 46.7889061 ], + [ 8.3010231, 46.7888891 ], + [ 8.3007933, 46.7889004 ], + [ 8.3004412, 46.7889454 ], + [ 8.2999662, 46.7890356 ], + [ 8.2994991, 46.7891087 ], + [ 8.2990156, 46.7891763 ], + [ 8.2933133, 46.7898964 ], + [ 8.2932472, 46.7900656 ], + [ 8.2931821, 46.7901389 ], + [ 8.2930753, 46.7902235 ], + [ 8.2929363, 46.7902799 ], + [ 8.2928868, 46.7903588 ], + [ 8.2928871, 46.7904322 ], + [ 8.2929114, 46.7905168 ], + [ 8.2929196, 46.790624 ], + [ 8.2928866, 46.7907087 ], + [ 8.2928047, 46.7907594 ], + [ 8.2926735, 46.7908496 ], + [ 8.29251, 46.790968 ], + [ 8.292428, 46.791064 ], + [ 8.2924195, 46.7911992 ], + [ 8.2924601, 46.7912784 ], + [ 8.2924853, 46.7913685 ], + [ 8.2924763, 46.7915266 ], + [ 8.2925337, 46.7917353 ], + [ 8.2924274, 46.7917973 ], + [ 8.2923943, 46.7919835 ], + [ 8.2922714, 46.7921302 ], + [ 8.2920337, 46.792367 ], + [ 8.2918207, 46.7925136 ], + [ 8.291722, 46.7925869 ], + [ 8.2915906, 46.792773 ], + [ 8.2914512, 46.7930155 ], + [ 8.2913452, 46.7930944 ], + [ 8.2912224, 46.7931453 ], + [ 8.2910827, 46.7932129 ], + [ 8.2909601, 46.7932805 ], + [ 8.2909107, 46.7933652 ], + [ 8.2908041, 46.7934554 ], + [ 8.2907302, 46.7935456 ], + [ 8.2906643, 46.7936245 ], + [ 8.2905828, 46.7936471 ], + [ 8.2905088, 46.7936753 ], + [ 8.2904675, 46.7937599 ], + [ 8.290402, 46.7938614 ], + [ 8.2902954, 46.7940081 ], + [ 8.2901234, 46.7942054 ], + [ 8.2899592, 46.7943351 ], + [ 8.2891155, 46.7947691 ], + [ 8.288607, 46.7950228 ], + [ 8.2882872, 46.7951977 ], + [ 8.2880332, 46.7953893 ], + [ 8.2879104, 46.7954458 ], + [ 8.2878117, 46.795519 ], + [ 8.287681, 46.7956431 ], + [ 8.2875664, 46.7957954 ], + [ 8.2874345, 46.7958969 ], + [ 8.2872713, 46.7959814 ], + [ 8.2870903, 46.7960828 ], + [ 8.2869349, 46.7961956 ], + [ 8.2867543, 46.7963762 ], + [ 8.2865655, 46.7965509 ], + [ 8.286443, 46.7966749 ], + [ 8.2863197, 46.7968499 ], + [ 8.2861479, 46.7970133 ], + [ 8.2859751, 46.7972163 ], + [ 8.2858113, 46.7973686 ], + [ 8.2856477, 46.7974871 ], + [ 8.285508, 46.7976055 ], + [ 8.285418, 46.7977126 ], + [ 8.2853194, 46.797848 ], + [ 8.2851721, 46.7980115 ], + [ 8.2850159, 46.798175 ], + [ 8.2848683, 46.7983725 ], + [ 8.2848186, 46.7985981 ], + [ 8.2847614, 46.798756 ], + [ 8.2846305, 46.7988688 ], + [ 8.2845153, 46.7989873 ], + [ 8.2843511, 46.7992184 ], + [ 8.2842448, 46.7993312 ], + [ 8.2841379, 46.7994102 ], + [ 8.2839578, 46.7994609 ], + [ 8.2837693, 46.7995511 ], + [ 8.2836056, 46.7996639 ], + [ 8.2834334, 46.7998556 ], + [ 8.283376, 46.8000586 ], + [ 8.2833757, 46.8001941 ], + [ 8.2832119, 46.8002956 ], + [ 8.2831381, 46.8004478 ], + [ 8.2833428, 46.8004987 ], + [ 8.2836624, 46.8005666 ], + [ 8.2839738, 46.8006401 ], + [ 8.2842358, 46.8007417 ], + [ 8.2843583, 46.8008264 ], + [ 8.2844898, 46.8009619 ], + [ 8.2845963, 46.8010183 ], + [ 8.2847186, 46.8010918 ], + [ 8.2847928, 46.8011708 ], + [ 8.2848662, 46.8013118 ], + [ 8.2848742, 46.8014077 ], + [ 8.2849644, 46.8015658 ], + [ 8.2850137, 46.8017351 ], + [ 8.2850949, 46.8018479 ], + [ 8.285127899999999, 46.8019155 ], + [ 8.2851688, 46.8020171 ], + [ 8.2852343, 46.8022767 ], + [ 8.2852585, 46.8024629 ], + [ 8.28525, 46.8026547 ], + [ 8.2852092, 46.8028183 ], + [ 8.2851352, 46.80301 ], + [ 8.2850693, 46.8031398 ], + [ 8.2849136, 46.8032865 ], + [ 8.2849381, 46.8033316 ], + [ 8.2849794, 46.8034614 ], + [ 8.2849874, 46.8036025 ], + [ 8.2849953, 46.8037435 ], + [ 8.2849621, 46.803924 ], + [ 8.2849051, 46.8040481 ], + [ 8.2848804, 46.8041947 ], + [ 8.2848717, 46.8043189 ], + [ 8.2848886, 46.8044543 ], + [ 8.2848885, 46.8045558 ], + [ 8.2848633, 46.8047195 ], + [ 8.284806, 46.8048775 ], + [ 8.2847407, 46.8050522 ], + [ 8.2846584, 46.8052328 ], + [ 8.2845759, 46.8054019 ], + [ 8.2845431, 46.8055542 ], + [ 8.2845927, 46.8057405 ], + [ 8.284658, 46.8059323 ], + [ 8.2847069, 46.8061806 ], + [ 8.284797, 46.8064458 ], + [ 8.2848133, 46.8065981 ], + [ 8.2852059, 46.8066208 ], + [ 8.2855175, 46.8066435 ], + [ 8.2859601, 46.806672 ], + [ 8.2862554, 46.8067059 ], + [ 8.2864354, 46.8067455 ], + [ 8.2866406, 46.806779399999996 ], + [ 8.2868285, 46.8068021 ], + [ 8.2870089, 46.8068191 ], + [ 8.287189099999999, 46.8068192 ], + [ 8.2874842, 46.8067911 ], + [ 8.2878202, 46.8067574 ], + [ 8.2881734, 46.8067181 ], + [ 8.2886153, 46.8067013 ], + [ 8.2888942, 46.8066789 ], + [ 8.2891239, 46.8066056 ], + [ 8.2894026, 46.8065154 ], + [ 8.2894269, 46.8066565 ], + [ 8.2894513, 46.8068032 ], + [ 8.2894679, 46.8069725 ], + [ 8.2895905, 46.8072151 ], + [ 8.2897209, 46.8075424 ], + [ 8.289942, 46.8080051 ], + [ 8.2902207, 46.8084904 ], + [ 8.290507, 46.808987 ], + [ 8.290581, 46.809162 ], + [ 8.2906055, 46.8093143 ], + [ 8.2905722, 46.8094891 ], + [ 8.290523, 46.8096358 ], + [ 8.2905396, 46.8098614 ], + [ 8.2905478, 46.8100646 ], + [ 8.2905961, 46.8102733 ], + [ 8.2906781, 46.810437 ], + [ 8.2908173, 46.8105894 ], + [ 8.2909571, 46.8106796 ], + [ 8.2910712, 46.8107475 ], + [ 8.2912433, 46.810804 ], + [ 8.2914072, 46.810866 ], + [ 8.2915139, 46.8109338 ], + [ 8.2915469, 46.8109958 ], + [ 8.291489, 46.8110692 ], + [ 8.2913828, 46.8111312 ], + [ 8.2912762, 46.8111762 ], + [ 8.2910628, 46.8111988 ], + [ 8.2908011, 46.811272 ], + [ 8.290522, 46.811334 ], + [ 8.2902348, 46.8113507 ], + [ 8.2899484, 46.8113676 ], + [ 8.289801, 46.8114183 ], + [ 8.289776, 46.8115424 ], + [ 8.2897677, 46.8116383 ], + [ 8.2897678, 46.8118019 ], + [ 8.2897753, 46.8121236 ], + [ 8.2897921, 46.8124056 ], + [ 8.2898408, 46.8126426 ], + [ 8.2898978, 46.8128288 ], + [ 8.28989, 46.8129529 ], + [ 8.2898819, 46.8130601 ], + [ 8.289848899999999, 46.8131504 ], + [ 8.2898325, 46.8132519 ], + [ 8.2898652, 46.8133535 ], + [ 8.2898892, 46.813472 ], + [ 8.2899219, 46.8136242 ], + [ 8.2899223, 46.813754 ], + [ 8.2898894, 46.8139007 ], + [ 8.2898233, 46.8140191 ], + [ 8.2897332, 46.8141715 ], + [ 8.2896758, 46.8143238 ], + [ 8.2896106, 46.8144479 ], + [ 8.2895694, 46.8145889 ], + [ 8.2895284, 46.8147411 ], + [ 8.289487, 46.814916 ], + [ 8.2894293, 46.8151023 ], + [ 8.2893388, 46.8153335 ], + [ 8.2892241, 46.8155422 ], + [ 8.2891091, 46.81583 ], + [ 8.2890843, 46.8160217 ], + [ 8.2890025, 46.8163376 ], + [ 8.2889936, 46.8165577 ], + [ 8.2889528, 46.8168735 ], + [ 8.2888621, 46.81715 ], + [ 8.2887313, 46.8173192 ], + [ 8.2886576, 46.817477 ], + [ 8.2886081, 46.8176069 ], + [ 8.2886405, 46.8177423 ], + [ 8.2886981, 46.817968 ], + [ 8.2888048, 46.8181373 ], + [ 8.2888122, 46.8182389 ], + [ 8.2887717, 46.8183234 ], + [ 8.2886564, 46.8184362 ], + [ 8.2887058, 46.8185039 ], + [ 8.2886891, 46.8185885 ], + [ 8.2886159, 46.8187239 ], + [ 8.288501, 46.8188649 ], + [ 8.2884346, 46.819068 ], + [ 8.288451, 46.8193331 ], + [ 8.2885328, 46.8197393 ], + [ 8.288598, 46.8199764 ], + [ 8.2887128, 46.82014 ], + [ 8.2888274, 46.820343199999996 ], + [ 8.2889749, 46.8206084 ], + [ 8.289114, 46.8208567 ], + [ 8.2892862, 46.8210824 ], + [ 8.2895399, 46.8213251 ], + [ 8.2897861, 46.821613 ], + [ 8.2899738, 46.8218275 ], + [ 8.2901135, 46.8220644 ], + [ 8.2902281, 46.8223184 ], + [ 8.2903506, 46.8226062 ], + [ 8.2904244, 46.8227642 ], + [ 8.2905474, 46.8229842 ], + [ 8.290703, 46.8231874 ], + [ 8.2908501, 46.8233736 ], + [ 8.2908832, 46.8235485 ], + [ 8.2908827, 46.8237798 ], + [ 8.290883000000001, 46.8240563 ], + [ 8.2909317, 46.8243383 ], + [ 8.2910951, 46.8245698 ], + [ 8.2912593, 46.8247448 ], + [ 8.2913654, 46.8248802 ], + [ 8.2914233, 46.8250156 ], + [ 8.2914638, 46.8251454 ], + [ 8.2915461, 46.8253767 ], + [ 8.2915782, 46.8256419 ], + [ 8.2916358, 46.8258168 ], + [ 8.2917344, 46.8259861 ], + [ 8.2918326, 46.8261384 ], + [ 8.2919474, 46.8262458 ], + [ 8.2920941, 46.8264094 ], + [ 8.2921931, 46.8265561 ], + [ 8.2922832, 46.8267593 ], + [ 8.2923404, 46.826906 ], + [ 8.292373, 46.8271034 ], + [ 8.2924302, 46.8273516 ], + [ 8.2925287, 46.8276224 ], + [ 8.2927169, 46.8278708 ], + [ 8.2929133, 46.8280628 ], + [ 8.2931265, 46.8281248 ], + [ 8.2933476, 46.828125 ], + [ 8.2937417, 46.828125 ], + [ 8.2941188, 46.8280914 ], + [ 8.294627, 46.8280069 ], + [ 8.2952087, 46.8278604 ], + [ 8.2957584, 46.8277591 ], + [ 8.2962671, 46.8277084 ], + [ 8.2965289, 46.8276861 ], + [ 8.2966928, 46.8276917 ], + [ 8.2968157, 46.8277425 ], + [ 8.296906, 46.8278047 ], + [ 8.2969635, 46.8278667 ], + [ 8.2970209, 46.8279739 ], + [ 8.2969796, 46.8280529 ], + [ 8.2969387, 46.8282108 ], + [ 8.2968732, 46.8284196 ], + [ 8.2968563, 46.8286452 ], + [ 8.2968562, 46.8288427 ], + [ 8.2968724, 46.8289837 ], + [ 8.296873, 46.8291756 ], + [ 8.2968316, 46.8293053 ], + [ 8.2967988, 46.8295084 ], + [ 8.2968315, 46.8297623 ], + [ 8.2969211, 46.8299879 ], + [ 8.2970442, 46.8301516 ], + [ 8.2972165, 46.8302702 ], + [ 8.297462, 46.8304113 ], + [ 8.2984784, 46.8308065 ], + [ 8.2983234, 46.8305864 ], + [ 8.2982244, 46.8303946 ], + [ 8.2981102, 46.8302705 ], + [ 8.298127, 46.8299884 ], + [ 8.298217, 46.8296725 ], + [ 8.298381, 46.8293228 ], + [ 8.2984878, 46.8290858 ], + [ 8.2986679, 46.828973 ], + [ 8.2988897, 46.828911 ], + [ 8.2990616, 46.8287983 ], + [ 8.2991606, 46.8286911 ], + [ 8.2992014, 46.8285784 ], + [ 8.2992012, 46.8284091 ], + [ 8.2991772, 46.8281383 ], + [ 8.2991936, 46.8278843 ], + [ 8.2992594, 46.8275967 ], + [ 8.2993576, 46.8273315 ], + [ 8.299473, 46.827072 ], + [ 8.2996041, 46.826869 ], + [ 8.2997764, 46.8266264 ], + [ 8.3000386, 46.8264234 ], + [ 8.3002687, 46.8262655 ], + [ 8.3004244, 46.8261696 ], + [ 8.3005225, 46.8260568 ], + [ 8.3005963, 46.8259046 ], + [ 8.3005968, 46.8257805 ], + [ 8.3005226, 46.8256506 ], + [ 8.3004326, 46.8255547 ], + [ 8.3003511, 46.8254757 ], + [ 8.3003837, 46.8253628 ], + [ 8.3004407, 46.8252952 ], + [ 8.3005718, 46.8252952 ], + [ 8.3006789, 46.8253347 ], + [ 8.3007361, 46.8254251 ], + [ 8.3008755, 46.8255379 ], + [ 8.3009903, 46.8257016 ], + [ 8.301014200000001, 46.8258088 ], + [ 8.3010061, 46.8259724 ], + [ 8.3009574, 46.8261529 ], + [ 8.3008997, 46.8262827 ], + [ 8.3008014, 46.826435 ], + [ 8.3006449, 46.8265872 ], + [ 8.3005632, 46.8267056 ], + [ 8.3005225, 46.8268749 ], + [ 8.3006037, 46.8270329 ], + [ 8.3007842, 46.8271514 ], + [ 8.3009073, 46.8272699 ], + [ 8.300981, 46.8273716 ], + [ 8.3010056, 46.8275746 ], + [ 8.3010382, 46.8278229 ], + [ 8.3010793, 46.8280881 ], + [ 8.3010458, 46.8283476 ], + [ 8.3009313, 46.8285619 ], + [ 8.3008901, 46.828703 ], + [ 8.3009063, 46.8287932 ], + [ 8.3010621, 46.8290584 ], + [ 8.3012914, 46.8293067 ], + [ 8.3014391, 46.8293237 ], + [ 8.3017345, 46.8293013 ], + [ 8.3021278, 46.829307 ], + [ 8.3023657, 46.8293804 ], + [ 8.3026037, 46.8294594 ], + [ 8.3028249, 46.8295611 ], + [ 8.302964, 46.8296514 ], + [ 8.3031032, 46.8297473 ], + [ 8.3031935, 46.8298658 ], + [ 8.3032594, 46.82999 ], + [ 8.3033166, 46.830131 ], + [ 8.3034392, 46.8302664 ], + [ 8.30348, 46.8304075 ], + [ 8.3034801, 46.8305204 ], + [ 8.3033658, 46.830746 ], + [ 8.3032584, 46.8309998 ], + [ 8.3032749, 46.8312086 ], + [ 8.3033492, 46.8312932 ], + [ 8.3034721, 46.831344 ], + [ 8.3035867, 46.8313948 ], + [ 8.3037835, 46.8314005 ], + [ 8.3039638, 46.8314062 ], + [ 8.3041442, 46.8314176 ], + [ 8.3042016, 46.8314232 ], + [ 8.3043159, 46.8313443 ], + [ 8.3046282, 46.8311525 ], + [ 8.3048244, 46.8310228 ], + [ 8.3049803, 46.8308367 ], + [ 8.3051368, 46.8306336 ], + [ 8.3052427, 46.8304476 ], + [ 8.305325, 46.8302163 ], + [ 8.305489, 46.8299173 ], + [ 8.3056207, 46.8296521 ], + [ 8.3057188, 46.8293869 ], + [ 8.3058588, 46.8291275 ], + [ 8.3060474, 46.8289358 ], + [ 8.3063342, 46.8288342 ], + [ 8.306646, 46.8287666 ], + [ 8.3069083, 46.8287272 ], + [ 8.3072528, 46.8286032 ], + [ 8.3075314, 46.8285017 ], + [ 8.3077034, 46.828451 ], + [ 8.3078428, 46.8284567 ], + [ 8.3081627, 46.8284849 ], + [ 8.3085885, 46.8284229 ], + [ 8.3090396, 46.8284061 ], + [ 8.3094908, 46.8283442 ], + [ 8.309737, 46.8282709 ], + [ 8.3099416, 46.8282597 ], + [ 8.3100972, 46.8282541 ], + [ 8.3102039, 46.8281694 ], + [ 8.3102619, 46.8281074 ], + [ 8.3102121, 46.8279664 ], + [ 8.3103598, 46.8278818 ], + [ 8.3103845, 46.8277858 ], + [ 8.3105237, 46.8277803 ], + [ 8.310499, 46.8276731 ], + [ 8.3106391, 46.8276731 ], + [ 8.310606, 46.8276054 ], + [ 8.3108359, 46.8275886 ], + [ 8.3110076, 46.8276168 ], + [ 8.3111717, 46.8276845 ], + [ 8.3113272, 46.8276732 ], + [ 8.3114665, 46.8276282 ], + [ 8.3116307, 46.8275999 ], + [ 8.31177, 46.8274985 ], + [ 8.312008, 46.8275268 ], + [ 8.3121805, 46.8274026 ], + [ 8.3123524, 46.8273463 ], + [ 8.3124833, 46.8272842 ], + [ 8.3124834, 46.8271376 ], + [ 8.312746, 46.8271714 ], + [ 8.3127298, 46.8270755 ], + [ 8.3129508, 46.8270699 ], + [ 8.313123, 46.8270812 ], + [ 8.3134096, 46.8271208 ], + [ 8.3134592, 46.8269967 ], + [ 8.313689, 46.827228 ], + [ 8.3137136, 46.8270757 ], + [ 8.3136808, 46.8269233 ], + [ 8.3138529, 46.8269798 ], + [ 8.3139596, 46.8271434 ], + [ 8.3143199, 46.8272846 ], + [ 8.3145826, 46.827420000000004 ], + [ 8.3147876, 46.8275329 ], + [ 8.3149841, 46.8275273 ], + [ 8.3152218, 46.8275387 ], + [ 8.3154598, 46.8276121 ], + [ 8.3156068, 46.8276854 ], + [ 8.3157546, 46.8277588 ], + [ 8.3159184, 46.8279054 ], + [ 8.316107, 46.8280184 ], + [ 8.3163042, 46.828103 ], + [ 8.3164843, 46.8281482 ], + [ 8.3165741, 46.8282328 ], + [ 8.3166483, 46.828261 ], + [ 8.3168453, 46.8282328 ], + [ 8.3170252, 46.8282104 ], + [ 8.3170995, 46.8283457 ], + [ 8.3171897, 46.8283006 ], + [ 8.3171972, 46.8284134 ], + [ 8.3173779, 46.8282893 ], + [ 8.3175418, 46.8282442 ], + [ 8.317722, 46.8282442 ], + [ 8.3178941, 46.8283007 ], + [ 8.3180504, 46.828391 ], + [ 8.3181238, 46.8282668 ], + [ 8.3183285, 46.8283628 ], + [ 8.3183449, 46.8282613 ], + [ 8.3186078, 46.8281598 ], + [ 8.3185749, 46.8279511 ], + [ 8.319034, 46.8279229 ], + [ 8.319272, 46.8280978 ], + [ 8.3195093, 46.828284 ], + [ 8.3198293, 46.8284138 ], + [ 8.3199356, 46.828002 ], + [ 8.3204117, 46.8283123 ], + [ 8.3207394, 46.8282616 ], + [ 8.3209445, 46.8282334 ], + [ 8.3211085, 46.8282899 ], + [ 8.3212478, 46.8283407 ], + [ 8.3215506, 46.8282223 ], + [ 8.3217967, 46.828149 ], + [ 8.3220427, 46.8281095 ], + [ 8.32224, 46.8281038 ], + [ 8.3225183, 46.8281885 ], + [ 8.3226334, 46.8276131 ], + [ 8.322797, 46.8276018 ], + [ 8.3228466, 46.8274269 ], + [ 8.3229612, 46.8273762 ], + [ 8.3230675, 46.8274101 ], + [ 8.3231907, 46.8274835 ], + [ 8.3233545, 46.8276301 ], + [ 8.3235428, 46.8278728 ], + [ 8.3237895, 46.8280816 ], + [ 8.3239781, 46.8282902 ], + [ 8.3241004, 46.8284031 ], + [ 8.3242156, 46.828437 ], + [ 8.324429, 46.8284087 ], + [ 8.3247242, 46.8287247 ], + [ 8.324519, 46.829052 ], + [ 8.3247399, 46.8290351 ], + [ 8.3248876, 46.8290012 ], + [ 8.3250601, 46.8289279 ], + [ 8.3252975, 46.8289673 ], + [ 8.3255192, 46.8289956 ], + [ 8.3257484, 46.82899 ], + [ 8.3260025, 46.8289956 ], + [ 8.3263307, 46.8289787 ], + [ 8.3265933, 46.8289562 ], + [ 8.3268719, 46.8289111 ], + [ 8.3270851, 46.8288717 ], + [ 8.3272901, 46.828883 ], + [ 8.3276018, 46.8289112 ], + [ 8.3278724, 46.8289281 ], + [ 8.3280606, 46.828962 ], + [ 8.328241, 46.829024 ], + [ 8.3284869, 46.8291313 ], + [ 8.3286676, 46.8291594 ], + [ 8.3289133, 46.8291539 ], + [ 8.329233200000001, 46.829182 ], + [ 8.3294874, 46.8291934 ], + [ 8.3297248, 46.8291877 ], + [ 8.329963, 46.8291765 ], + [ 8.3302501, 46.8291482 ], + [ 8.3305368, 46.8290975 ], + [ 8.3307746, 46.8290581 ], + [ 8.3310042, 46.8290243 ], + [ 8.3312335, 46.8289678 ], + [ 8.331455, 46.8289904 ], + [ 8.331684599999999, 46.8290016 ], + [ 8.3319468, 46.8289566 ], + [ 8.3323728, 46.8289114 ], + [ 8.3323812, 46.8290694 ], + [ 8.332857, 46.8290074 ], + [ 8.3328733, 46.8291991 ], + [ 8.3330127, 46.8292104 ], + [ 8.3331525, 46.8292894 ], + [ 8.3333492, 46.8292499 ], + [ 8.3332423, 46.8293684 ], + [ 8.3337095, 46.8293854 ], + [ 8.3337507, 46.8293008 ], + [ 8.3339061, 46.8292894 ], + [ 8.3339639, 46.8293628 ], + [ 8.3340456, 46.8294023 ], + [ 8.3341277, 46.8294136 ], + [ 8.3342672, 46.8295715 ], + [ 8.3343819, 46.8295265 ], + [ 8.3345785, 46.8296224 ], + [ 8.3347508, 46.8295376 ], + [ 8.335083, 46.8296123 ], + [ 8.335214, 46.8296418 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "JBG0020", + "country" : "CHE", + "name" : [ + { + "text" : "Eidgenössisches Jagdbanngebiet Hutstock", + "lang" : "de-CH" + }, + { + "text" : "District franc fédéral Hutstock", + "lang" : "fr-CH" + }, + { + "text" : "Bandita federale di caccia Hutstock", + "lang" : "it-CH" + }, + { + "text" : "Federal Game Reserve Hutstock", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.4304715, 46.7365059 ], + [ 9.4304609, 46.7363648 ], + [ 9.4304396, 46.7362242 ], + [ 9.4304076, 46.7360847 ], + [ 9.430365, 46.7359464 ], + [ 9.430312, 46.7358099 ], + [ 9.4302486, 46.7356755 ], + [ 9.4301751, 46.7355436 ], + [ 9.4300917, 46.7354145 ], + [ 9.4299985, 46.7352885 ], + [ 9.4298959, 46.7351661 ], + [ 9.4297841, 46.7350476 ], + [ 9.4296635, 46.7349332 ], + [ 9.4295343, 46.7348233 ], + [ 9.4293969, 46.7347183 ], + [ 9.4292517, 46.7346183 ], + [ 9.4290991, 46.7345237 ], + [ 9.4289395, 46.7344347 ], + [ 9.4287734, 46.7343515 ], + [ 9.4286011, 46.7342745 ], + [ 9.4284232, 46.7342037 ], + [ 9.4282402, 46.7341395 ], + [ 9.428052600000001, 46.7340819 ], + [ 9.4278608, 46.7340312 ], + [ 9.4276654, 46.7339874 ], + [ 9.427467, 46.7339507 ], + [ 9.427266, 46.7339213 ], + [ 9.4270631, 46.733899 ], + [ 9.4268587, 46.7338842 ], + [ 9.4266535, 46.7338767 ], + [ 9.4264481, 46.7338765 ], + [ 9.4262429, 46.7338838 ], + [ 9.4260385, 46.7338985 ], + [ 9.4258355, 46.7339204 ], + [ 9.4256345, 46.7339497 ], + [ 9.4254359, 46.7339862 ], + [ 9.4252404, 46.7340297 ], + [ 9.4250485, 46.7340802 ], + [ 9.4248608, 46.7341376 ], + [ 9.4246776, 46.7342016 ], + [ 9.4244995, 46.7342722 ], + [ 9.4243271, 46.734349 ], + [ 9.4241608, 46.734432 ], + [ 9.424001, 46.7345208 ], + [ 9.4238481, 46.7346152 ], + [ 9.4237027, 46.734715 ], + [ 9.4235651, 46.73482 ], + [ 9.4234356, 46.7349297 ], + [ 9.4233147, 46.7350439 ], + [ 9.4232026, 46.7351623 ], + [ 9.4230997, 46.7352846 ], + [ 9.4230063, 46.7354105 ], + [ 9.4229225, 46.7355395 ], + [ 9.4228487, 46.7356714 ], + [ 9.4227851, 46.7358057 ], + [ 9.4227317, 46.7359421 ], + [ 9.4226888, 46.7360803 ], + [ 9.4226565, 46.7362198 ], + [ 9.4226348, 46.7363603 ], + [ 9.4226239, 46.7365014 ], + [ 9.4226237, 46.7366427 ], + [ 9.4226342, 46.7367838 ], + [ 9.4226556, 46.7369243 ], + [ 9.4226875, 46.7370639 ], + [ 9.4227301, 46.7372021 ], + [ 9.4227831, 46.7373386 ], + [ 9.4228464, 46.737473 ], + [ 9.4229199, 46.737605 ], + [ 9.4230033, 46.7377341 ], + [ 9.4230964, 46.73786 ], + [ 9.423199, 46.7379824 ], + [ 9.4233108, 46.738101 ], + [ 9.4234315, 46.7382154 ], + [ 9.4235606, 46.7383253 ], + [ 9.423698, 46.7384303 ], + [ 9.4238432, 46.7385303 ], + [ 9.4239958, 46.738625 ], + [ 9.4241554, 46.738714 ], + [ 9.4243216, 46.7387971 ], + [ 9.4244938, 46.7388742 ], + [ 9.4246717, 46.7389449 ], + [ 9.4248547, 46.7390092 ], + [ 9.4250424, 46.7390667 ], + [ 9.4252342, 46.7391175 ], + [ 9.4254296, 46.7391613 ], + [ 9.4256281, 46.7391979 ], + [ 9.425829, 46.7392274 ], + [ 9.426032, 46.7392496 ], + [ 9.4262364, 46.7392645 ], + [ 9.4264416, 46.739272 ], + [ 9.4266471, 46.7392722 ], + [ 9.4268523, 46.7392649 ], + [ 9.4270567, 46.7392502 ], + [ 9.4272597, 46.7392282 ], + [ 9.4274608, 46.739199 ], + [ 9.4276593, 46.7391625 ], + [ 9.4278548, 46.739119 ], + [ 9.4280467, 46.7390684 ], + [ 9.4282345, 46.7390111 ], + [ 9.4284177, 46.738947 ], + [ 9.4285958, 46.7388765 ], + [ 9.4287682, 46.7387996 ], + [ 9.4289346, 46.7387167 ], + [ 9.4290944, 46.7386279 ], + [ 9.4292472, 46.7385334 ], + [ 9.4293927, 46.7384336 ], + [ 9.4295303, 46.7383286 ], + [ 9.4296597, 46.7382189 ], + [ 9.4297807, 46.7381047 ], + [ 9.4298927, 46.7379862 ], + [ 9.4299956, 46.7378639 ], + [ 9.4300891, 46.7377381 ], + [ 9.4301728, 46.7376091 ], + [ 9.4302466, 46.7374772 ], + [ 9.4303102, 46.7373429 ], + [ 9.4303636, 46.7372064 ], + [ 9.4304065, 46.7370683 ], + [ 9.4304388, 46.7369287 ], + [ 9.4304604, 46.7367882 ], + [ 9.4304713, 46.7366471 ], + [ 9.4304715, 46.7365059 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "CAZ0001", + "country" : "CHE", + "name" : [ + { + "text" : "JVA Cazis Tignez", + "lang" : "de-CH" + }, + { + "text" : "JVA Cazis Tignez", + "lang" : "fr-CH" + }, + { + "text" : "JVA Cazis Tignez", + "lang" : "it-CH" + }, + { + "text" : "JVA Cazis Tignez", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Justizvollzugsanstalt Cazis Tignez", + "lang" : "de-CH" + }, + { + "text" : "Établissement pénitentiaire Cazis Tignez", + "lang" : "fr-CH" + }, + { + "text" : "Penitenziario Cazis Tignez", + "lang" : "it-CH" + }, + { + "text" : "Cazis Tignez prison", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Sicherheit", + "lang" : "de-CH" + }, + { + "text" : "Département de sécurité", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di sicurezza", + "lang" : "it-CH" + }, + { + "text" : "Security Department", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Martin Muoth", + "lang" : "de-CH" + }, + { + "text" : "Martin Muoth", + "lang" : "fr-CH" + }, + { + "text" : "Martin Muoth", + "lang" : "it-CH" + }, + { + "text" : "Martin Muoth", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ajv.gr.ch", + "email" : "info.ct@ajv.gr.ch", + "phone" : "0041814231212", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8566022, 47.4034942 ], + [ 7.8569473, 47.403112 ], + [ 7.8572412, 47.4031112 ], + [ 7.8577934, 47.4030283 ], + [ 7.8581949, 47.4031485 ], + [ 7.8586821, 47.4032916 ], + [ 7.8590841, 47.4033804 ], + [ 7.8593275, 47.4034295 ], + [ 7.8596217, 47.4032528 ], + [ 7.8599479, 47.4031881 ], + [ 7.8603712, 47.4031221 ], + [ 7.8604034, 47.4030893 ], + [ 7.860263, 47.4030291 ], + [ 7.8600682, 47.4029633 ], + [ 7.8598467, 47.4029585 ], + [ 7.8596226, 47.4029392 ], + [ 7.8595028, 47.4028885 ], + [ 7.8593437999999995, 47.4028111 ], + [ 7.85924, 47.4026959 ], + [ 7.8591774999999995, 47.402681 ], + [ 7.8588105, 47.4025937 ], + [ 7.8584252, 47.4025529 ], + [ 7.8580454, 47.4025305 ], + [ 7.8576903, 47.4025021 ], + [ 7.8571665, 47.4023454 ], + [ 7.8566275, 47.402188699999996 ], + [ 7.8562782, 47.4020244 ], + [ 7.8566859000000004, 47.4018217 ], + [ 7.8571259, 47.4016357 ], + [ 7.8573688, 47.4015888 ], + [ 7.8575227, 47.4014092 ], + [ 7.8574209, 47.4013794 ], + [ 7.8573056999999995, 47.4013805 ], + [ 7.8572308, 47.4013458 ], + [ 7.8571549, 47.4013435 ], + [ 7.8572026, 47.4014266 ], + [ 7.8570607, 47.4015056 ], + [ 7.8569247, 47.4015462 ], + [ 7.856804, 47.4015736 ], + [ 7.8568257, 47.401626 ], + [ 7.856757, 47.4016637 ], + [ 7.8567418, 47.401659 ], + [ 7.8567262, 47.401655 ], + [ 7.8567103, 47.4016516 ], + [ 7.8566941, 47.4016488 ], + [ 7.8566777, 47.4016467 ], + [ 7.8566611, 47.4016452 ], + [ 7.8566445, 47.4016444 ], + [ 7.8566278, 47.4016442 ], + [ 7.8566111, 47.4016447 ], + [ 7.8565945, 47.4016459 ], + [ 7.8565781, 47.4016478 ], + [ 7.8565618, 47.4016502 ], + [ 7.8565457, 47.4016534 ], + [ 7.85653, 47.4016571 ], + [ 7.8562342, 47.4017457 ], + [ 7.8552851, 47.4012826 ], + [ 7.8551292, 47.4014067 ], + [ 7.8548726, 47.401272 ], + [ 7.8547735, 47.4013083 ], + [ 7.8547472, 47.4012903 ], + [ 7.8547313, 47.4012595 ], + [ 7.8545647, 47.4011422 ], + [ 7.8544462, 47.4010799 ], + [ 7.8542938, 47.4009852 ], + [ 7.8543555, 47.4009498 ], + [ 7.8544627, 47.4008282 ], + [ 7.8548823, 47.4008416 ], + [ 7.8549812, 47.4007956 ], + [ 7.8550207, 47.4007911 ], + [ 7.8553771999999995, 47.4008012 ], + [ 7.8557001, 47.4008493 ], + [ 7.8560188, 47.4009331 ], + [ 7.8559924, 47.4008622 ], + [ 7.8560572, 47.4007412 ], + [ 7.856135, 47.4006841 ], + [ 7.8561447, 47.40068 ], + [ 7.8561936, 47.400689 ], + [ 7.8561983, 47.4006823 ], + [ 7.8564157, 47.4007602 ], + [ 7.8567037, 47.4008268 ], + [ 7.856812, 47.4008749 ], + [ 7.8569504, 47.4008959 ], + [ 7.8569764, 47.4008453 ], + [ 7.8567238, 47.4007259 ], + [ 7.8564638, 47.400653 ], + [ 7.8562565, 47.4006012 ], + [ 7.8560267, 47.4005479 ], + [ 7.8558285, 47.4004717 ], + [ 7.8557554, 47.4005158 ], + [ 7.8556572, 47.40052 ], + [ 7.8555121, 47.4004852 ], + [ 7.8553694, 47.4004559 ], + [ 7.855357, 47.4004557 ], + [ 7.8553245, 47.4004251 ], + [ 7.8553067, 47.4004262 ], + [ 7.8552018, 47.4003523 ], + [ 7.8551356, 47.4002811 ], + [ 7.8550256, 47.4000693 ], + [ 7.8545861, 47.4002682 ], + [ 7.8545305, 47.4002454 ], + [ 7.8543724, 47.4003544 ], + [ 7.8543445, 47.4006782 ], + [ 7.8543385, 47.4008487 ], + [ 7.8541761, 47.4010178 ], + [ 7.8540988, 47.4011076 ], + [ 7.8541611, 47.4011613 ], + [ 7.8543046, 47.4012599 ], + [ 7.8543994999999995, 47.4013044 ], + [ 7.8545735, 47.4013852 ], + [ 7.854643, 47.4013871 ], + [ 7.8548086999999995, 47.4015051 ], + [ 7.8549505, 47.4015692 ], + [ 7.8551733, 47.4017503 ], + [ 7.8556608, 47.4020124 ], + [ 7.8557573, 47.4020817 ], + [ 7.8558343, 47.4021368 ], + [ 7.8559146, 47.402193 ], + [ 7.8561002, 47.4022744 ], + [ 7.8556497, 47.4024902 ], + [ 7.8553166, 47.4028209 ], + [ 7.8555662, 47.4030649 ], + [ 7.8557146, 47.4032417 ], + [ 7.8555453, 47.4033964 ], + [ 7.8549065, 47.4029915 ], + [ 7.854761, 47.4030242 ], + [ 7.8548756, 47.4033301 ], + [ 7.8549074999999995, 47.4034373 ], + [ 7.8550223, 47.4039736 ], + [ 7.8550294, 47.404004 ], + [ 7.8550356, 47.4040344 ], + [ 7.855041, 47.4040649 ], + [ 7.8550456, 47.4040955 ], + [ 7.8550494, 47.4041261 ], + [ 7.8550524, 47.4041567 ], + [ 7.8550546, 47.4041874 ], + [ 7.8550559, 47.4042181 ], + [ 7.8550586, 47.4042453 ], + [ 7.8550599, 47.4043235 ], + [ 7.8550517, 47.4043639 ], + [ 7.8550428, 47.4044043 ], + [ 7.8550331, 47.4044446 ], + [ 7.8550225, 47.4044848 ], + [ 7.8550112, 47.4045248 ], + [ 7.854999, 47.4045648 ], + [ 7.8549861, 47.4046047 ], + [ 7.8549724, 47.4046444 ], + [ 7.8549579, 47.404684 ], + [ 7.8549426, 47.4047235 ], + [ 7.8549098, 47.4047906 ], + [ 7.8548764, 47.4048576 ], + [ 7.8548424, 47.4049244 ], + [ 7.8548077, 47.404991 ], + [ 7.8547724, 47.4050575 ], + [ 7.8547536000000004, 47.4050923 ], + [ 7.8547355, 47.4051273 ], + [ 7.854718, 47.4051625 ], + [ 7.8547013, 47.4051978 ], + [ 7.8546854, 47.4052333 ], + [ 7.8546701, 47.4052689 ], + [ 7.8546556, 47.4053047 ], + [ 7.8546418, 47.4053406 ], + [ 7.8545796, 47.4055265 ], + [ 7.8545751, 47.4055386 ], + [ 7.8545697, 47.4055505 ], + [ 7.8545635, 47.4055622 ], + [ 7.8545565, 47.4055737 ], + [ 7.8545487, 47.4055849 ], + [ 7.8545400999999995, 47.4055959 ], + [ 7.8545308, 47.4056067 ], + [ 7.8545207, 47.405617 ], + [ 7.85451, 47.4056271 ], + [ 7.8544961, 47.4056377 ], + [ 7.8544816, 47.4056478 ], + [ 7.8544665, 47.4056575 ], + [ 7.8544507, 47.4056668 ], + [ 7.8544343, 47.4056755 ], + [ 7.8544173, 47.4056837 ], + [ 7.8543999, 47.4056914 ], + [ 7.8543819, 47.4056986 ], + [ 7.8543635, 47.4057052 ], + [ 7.8543297, 47.4057164 ], + [ 7.8542839, 47.4057309 ], + [ 7.8542316, 47.4057475 ], + [ 7.854196, 47.405759 ], + [ 7.8541609, 47.4057709 ], + [ 7.8541452, 47.4057765 ], + [ 7.8546422, 47.4060566 ], + [ 7.8546156, 47.4060854 ], + [ 7.8544778, 47.4063123 ], + [ 7.8545326, 47.4063935 ], + [ 7.8546326, 47.406367 ], + [ 7.8546481, 47.4063935 ], + [ 7.8545831, 47.4064969 ], + [ 7.8546015, 47.4065656 ], + [ 7.8543109, 47.4069254 ], + [ 7.8541098, 47.4070591 ], + [ 7.8540794, 47.4070536 ], + [ 7.8540437, 47.4070471 ], + [ 7.8538201999999995, 47.4071882 ], + [ 7.8535957, 47.4071883 ], + [ 7.8535526, 47.4075466 ], + [ 7.8535846, 47.407558 ], + [ 7.8535587, 47.4076437 ], + [ 7.8534702, 47.4080097 ], + [ 7.853474, 47.4082942 ], + [ 7.8534061, 47.4086656 ], + [ 7.8533528, 47.4089922 ], + [ 7.8534916, 47.4092256 ], + [ 7.8537458, 47.4096015 ], + [ 7.8539255, 47.4097668 ], + [ 7.8548144, 47.4096989 ], + [ 7.8550992, 47.4095158 ], + [ 7.855195, 47.4094645 ], + [ 7.8558173, 47.4093935 ], + [ 7.8562935, 47.4093156 ], + [ 7.8566709, 47.4091667 ], + [ 7.8570063999999995, 47.4089947 ], + [ 7.8572505, 47.4088695 ], + [ 7.857439, 47.4087641 ], + [ 7.857916, 47.4085752 ], + [ 7.8580567, 47.4083312 ], + [ 7.8582174, 47.4079718 ], + [ 7.8582231, 47.4078038 ], + [ 7.858192, 47.4077107 ], + [ 7.8582382, 47.4074971 ], + [ 7.85815, 47.4073943 ], + [ 7.8582474, 47.4073328 ], + [ 7.8583216, 47.4072859 ], + [ 7.8584845, 47.4071852 ], + [ 7.8584420999999995, 47.4069559 ], + [ 7.8583797, 47.4067993 ], + [ 7.8583443, 47.4065469 ], + [ 7.858332, 47.406354 ], + [ 7.8582591, 47.4062903 ], + [ 7.8581573, 47.4062014 ], + [ 7.8580562, 47.4058157 ], + [ 7.8578017, 47.4055206 ], + [ 7.8576262, 47.4053158 ], + [ 7.8574012, 47.4051291 ], + [ 7.8571012, 47.40469 ], + [ 7.8569264, 47.4046699 ], + [ 7.8567834, 47.4045307 ], + [ 7.8566932, 47.404418 ], + [ 7.8566226, 47.4043279 ], + [ 7.8564704, 47.4042176 ], + [ 7.8565685, 47.4041536 ], + [ 7.8567633, 47.4040265 ], + [ 7.8571554, 47.403818 ], + [ 7.8566022, 47.4034942 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns346", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Homberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Homberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Homberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Homberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8865646, 46.3042066 ], + [ 7.8864563, 46.301853 ], + [ 7.8861704, 46.2995066 ], + [ 7.8857078, 46.2971738 ], + [ 7.8850697, 46.2948609 ], + [ 7.884258, 46.2925743 ], + [ 7.8832748, 46.2903203 ], + [ 7.8821228, 46.2881051 ], + [ 7.8808053000000005, 46.2859347 ], + [ 7.8793258999999995, 46.283815 ], + [ 7.8776886, 46.2817519 ], + [ 7.8758979, 46.2797511 ], + [ 7.8739589, 46.2778179 ], + [ 7.8718766, 46.2759576 ], + [ 7.869657, 46.2741755 ], + [ 7.8673061, 46.2724763 ], + [ 7.8648302999999995, 46.2708647 ], + [ 7.8622364000000005, 46.2693451 ], + [ 7.8595315, 46.2679217 ], + [ 7.8567231, 46.2665983 ], + [ 7.8538187, 46.2653786 ], + [ 7.8508264, 46.2642659 ], + [ 7.8477543999999995, 46.2632632 ], + [ 7.8446110000000004, 46.2623734 ], + [ 7.8414049, 46.2615988 ], + [ 7.8381448, 46.2609415 ], + [ 7.8348397, 46.2604034 ], + [ 7.8314985, 46.2599859 ], + [ 7.8281305, 46.2596902 ], + [ 7.8247447999999995, 46.259517 ], + [ 7.8213506, 46.2594669 ], + [ 7.8179573, 46.2595399 ], + [ 7.8145742, 46.259736 ], + [ 7.8112105, 46.2600545 ], + [ 7.8078753, 46.2604945 ], + [ 7.8045779, 46.2610549 ], + [ 7.8013272, 46.2617342 ], + [ 7.7981321, 46.2625304 ], + [ 7.7950014, 46.2634414 ], + [ 7.7919436, 46.2644648 ], + [ 7.7889669999999995, 46.2655976 ], + [ 7.7860799, 46.2668369 ], + [ 7.7832902, 46.2681792 ], + [ 7.7806054, 46.2696208 ], + [ 7.778033, 46.2711579 ], + [ 7.7755799, 46.2727861 ], + [ 7.7732529, 46.2745011 ], + [ 7.7710585, 46.2762982 ], + [ 7.7690025, 46.2781724 ], + [ 7.7670905999999995, 46.2801186 ], + [ 7.7653282, 46.2821315 ], + [ 7.7637199, 46.2842055 ], + [ 7.7622704, 46.2863351 ], + [ 7.7609834, 46.2885143 ], + [ 7.7598627, 46.2907372 ], + [ 7.7589112, 46.2929977 ], + [ 7.7581316000000005, 46.2952897 ], + [ 7.7575261, 46.2976067 ], + [ 7.7570963, 46.2999426 ], + [ 7.7568434, 46.3022908 ], + [ 7.7567682, 46.304645 ], + [ 7.7568709, 46.3069987 ], + [ 7.7571512, 46.3093455 ], + [ 7.7576084, 46.3116789 ], + [ 7.7582413, 46.3139924 ], + [ 7.7590481, 46.3162799 ], + [ 7.7600266, 46.318535 ], + [ 7.7611742, 46.3207515 ], + [ 7.7624877, 46.3229233 ], + [ 7.7639637, 46.3250444 ], + [ 7.7655978999999995, 46.3271092 ], + [ 7.7673860999999995, 46.3291118 ], + [ 7.7693232, 46.3310468 ], + [ 7.771404, 46.332909 ], + [ 7.7736228, 46.334693 ], + [ 7.7759735, 46.3363942 ], + [ 7.7784496999999995, 46.3380077 ], + [ 7.7810445, 46.3395293 ], + [ 7.7837509, 46.3409546 ], + [ 7.7865614, 46.3422798 ], + [ 7.7894684, 46.3435012 ], + [ 7.7924637, 46.3446155 ], + [ 7.7955394, 46.3456197 ], + [ 7.7986867, 46.3465109 ], + [ 7.8018973, 46.3472867 ], + [ 7.8051621, 46.347945 ], + [ 7.8084723, 46.348484 ], + [ 7.8118187, 46.3489022 ], + [ 7.8151922, 46.3491984 ], + [ 7.8185835, 46.3493718 ], + [ 7.8219832, 46.349422 ], + [ 7.8253821, 46.3493489 ], + [ 7.8287708, 46.3491525 ], + [ 7.8321399, 46.3488335 ], + [ 7.8354803, 46.3483927 ], + [ 7.8387827, 46.3478314 ], + [ 7.8420381, 46.3471511 ], + [ 7.8452376, 46.3463536 ], + [ 7.8483722, 46.3454412 ], + [ 7.8514335, 46.3444163 ], + [ 7.8544131, 46.3432818 ], + [ 7.8573027, 46.3420408 ], + [ 7.8600943999999995, 46.3406967 ], + [ 7.8627806, 46.3392532 ], + [ 7.8653538, 46.3377142 ], + [ 7.8678071, 46.336084 ], + [ 7.8701337, 46.334367 ], + [ 7.8723273, 46.3325681 ], + [ 7.8743818, 46.330692 ], + [ 7.8762916, 46.328744 ], + [ 7.8780514, 46.3267293 ], + [ 7.8796565, 46.3246537 ], + [ 7.8811025, 46.3225226 ], + [ 7.8823855, 46.320342 ], + [ 7.8835018, 46.3181179 ], + [ 7.8844484999999995, 46.3158563 ], + [ 7.8852231, 46.3135635 ], + [ 7.8858234, 46.3112458 ], + [ 7.8862477, 46.3089094 ], + [ 7.886495, 46.3065609 ], + [ 7.8865646, 46.3042066 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSTA001", + "country" : "CHE", + "name" : [ + { + "text" : "LSTA Raron", + "lang" : "de-CH" + }, + { + "text" : "LSTA Raron", + "lang" : "fr-CH" + }, + { + "text" : "LSTA Raron", + "lang" : "it-CH" + }, + { + "text" : "LSTA Raron", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Flugplatz Raron", + "lang" : "de-CH" + }, + { + "text" : "Flugplatz Raron", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatz Raron", + "lang" : "it-CH" + }, + { + "text" : "Flugplatz Raron", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Lisa Best", + "lang" : "de-CH" + }, + { + "text" : "Lisa Best", + "lang" : "fr-CH" + }, + { + "text" : "Lisa Best", + "lang" : "it-CH" + }, + { + "text" : "Lisa Best", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.fgo.ch", + "email" : "info@fgo.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 10.3363557, 46.8050195 ], + [ 10.3363427, 46.8048785 ], + [ 10.336319, 46.8047382 ], + [ 10.3362847, 46.8045989 ], + [ 10.3362397, 46.804461 ], + [ 10.3361843, 46.804325 ], + [ 10.3361186, 46.8041911 ], + [ 10.3360428, 46.8040597 ], + [ 10.3359571, 46.8039313 ], + [ 10.3358618, 46.8038061 ], + [ 10.335757, 46.8036845 ], + [ 10.3356431, 46.8035669 ], + [ 10.3355203, 46.8034535 ], + [ 10.3353891, 46.8033446 ], + [ 10.3352498, 46.8032406 ], + [ 10.3351028, 46.8031418 ], + [ 10.3349484, 46.8030484 ], + [ 10.3347871, 46.8029607 ], + [ 10.3346194, 46.8028789 ], + [ 10.3344456, 46.8028032 ], + [ 10.3342664, 46.8027339 ], + [ 10.334082, 46.8026711 ], + [ 10.3338932, 46.802615 ], + [ 10.3337003, 46.802565799999996 ], + [ 10.333504, 46.8025236 ], + [ 10.3333047, 46.8024885 ], + [ 10.333103, 46.8024606 ], + [ 10.3328994, 46.80244 ], + [ 10.3326946, 46.8024267 ], + [ 10.332489, 46.8024208 ], + [ 10.3322833, 46.8024224 ], + [ 10.3320779, 46.8024313 ], + [ 10.3318736, 46.8024475 ], + [ 10.3316707, 46.8024711 ], + [ 10.3314699, 46.802502 ], + [ 10.3312718, 46.80254 ], + [ 10.3310768, 46.8025851 ], + [ 10.3308855, 46.8026371 ], + [ 10.3306984, 46.802696 ], + [ 10.3305161, 46.8027615 ], + [ 10.330339, 46.8028334 ], + [ 10.3301677, 46.8029116 ], + [ 10.330002499999999, 46.8029959 ], + [ 10.329844, 46.803086 ], + [ 10.3296926, 46.8031816 ], + [ 10.3295487, 46.8032826 ], + [ 10.3294127, 46.8033886 ], + [ 10.3292849, 46.8034993 ], + [ 10.3291657, 46.8036145 ], + [ 10.3290555, 46.8037338 ], + [ 10.3289545, 46.8038569 ], + [ 10.3288631, 46.8039835 ], + [ 10.3287814, 46.8041131 ], + [ 10.3287097, 46.8042456 ], + [ 10.3286482, 46.8043804 ], + [ 10.3285971, 46.8045172 ], + [ 10.3285565, 46.8046557 ], + [ 10.3285264, 46.8047955 ], + [ 10.3285071, 46.8049362 ], + [ 10.3284985, 46.8050773 ], + [ 10.3285007, 46.8052186 ], + [ 10.3285137, 46.8053596 ], + [ 10.3285374, 46.8055 ], + [ 10.3285717, 46.8056393 ], + [ 10.3286167, 46.8057771 ], + [ 10.328672, 46.8059132 ], + [ 10.3287377, 46.8060471 ], + [ 10.3288135, 46.8061784 ], + [ 10.3288992, 46.8063069 ], + [ 10.3289945, 46.8064321 ], + [ 10.3290993, 46.8065537 ], + [ 10.3292132, 46.8066713 ], + [ 10.3293359, 46.8067848 ], + [ 10.3294671, 46.8068936 ], + [ 10.3296064, 46.8069976 ], + [ 10.3297535, 46.8070964 ], + [ 10.3299079, 46.8071898 ], + [ 10.3300691, 46.8072776 ], + [ 10.3302369, 46.8073594 ], + [ 10.3304106, 46.807435 ], + [ 10.3305899, 46.8075044 ], + [ 10.3307743, 46.8075672 ], + [ 10.3309631, 46.8076233 ], + [ 10.331156, 46.8076725 ], + [ 10.3313524, 46.8077147 ], + [ 10.3315517, 46.8077498 ], + [ 10.3317534, 46.8077777 ], + [ 10.331957, 46.8077983 ], + [ 10.3321618, 46.8078116 ], + [ 10.3323674, 46.8078174 ], + [ 10.3325732, 46.8078159 ], + [ 10.3327786, 46.807807 ], + [ 10.332983, 46.8077908 ], + [ 10.3331858, 46.8077672 ], + [ 10.3333866, 46.8077363 ], + [ 10.3335848, 46.8076983 ], + [ 10.3337798, 46.8076532 ], + [ 10.3339711, 46.8076011 ], + [ 10.3341582, 46.8075423 ], + [ 10.3343405, 46.8074768 ], + [ 10.3345176, 46.8074048 ], + [ 10.334689, 46.8073266 ], + [ 10.3348541, 46.8072424 ], + [ 10.3350126, 46.8071523 ], + [ 10.335164, 46.8070566 ], + [ 10.335308, 46.8069556 ], + [ 10.335444, 46.8068496 ], + [ 10.3355718, 46.8067389 ], + [ 10.3356909, 46.8066237 ], + [ 10.3358011, 46.8065044 ], + [ 10.3359021, 46.8063813 ], + [ 10.3359935, 46.8062547 ], + [ 10.3360752, 46.806125 ], + [ 10.3361469, 46.8059926 ], + [ 10.3362083, 46.8058578 ], + [ 10.3362595, 46.8057209 ], + [ 10.3363001, 46.8055824 ], + [ 10.3363301, 46.8054426 ], + [ 10.3363494, 46.805302 ], + [ 10.3363579, 46.8051608 ], + [ 10.3363557, 46.8050195 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0090", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Pradella", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Pradella", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Pradella", + "lang" : "it-CH" + }, + { + "text" : "Substation Pradella", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.2388574, 46.7021113 ], + [ 8.2388499, 46.7019702 ], + [ 8.2388317, 46.7018294 ], + [ 8.2388029, 46.7016896 ], + [ 8.2387634, 46.7015509 ], + [ 8.2387134, 46.7014139 ], + [ 8.2386531, 46.7012788 ], + [ 8.2385825, 46.7011461 ], + [ 8.238502, 46.7010161 ], + [ 8.2384117, 46.7008893 ], + [ 8.2383119, 46.7007658 ], + [ 8.2382028, 46.7006461 ], + [ 8.2380848, 46.7005305 ], + [ 8.2379581, 46.7004193 ], + [ 8.2378232, 46.7003128 ], + [ 8.2376803, 46.7002113 ], + [ 8.2375299, 46.7001151 ], + [ 8.2373724, 46.7000244 ], + [ 8.2372082, 46.6999395 ], + [ 8.2370378, 46.6998607 ], + [ 8.2368616, 46.6997881 ], + [ 8.2366802, 46.699722 ], + [ 8.2364939, 46.6996624 ], + [ 8.2363034, 46.6996097 ], + [ 8.2361092, 46.6995639 ], + [ 8.2359117, 46.6995251 ], + [ 8.2357115, 46.6994936 ], + [ 8.2355092, 46.6994692 ], + [ 8.2353054, 46.6994522 ], + [ 8.2351005, 46.6994425 ], + [ 8.2348952, 46.6994403 ], + [ 8.2346899, 46.6994454 ], + [ 8.2344854, 46.6994579 ], + [ 8.2342821, 46.6994778 ], + [ 8.2340805, 46.6995049 ], + [ 8.2338814, 46.6995393 ], + [ 8.2336851, 46.6995808 ], + [ 8.2334922, 46.6996293 ], + [ 8.2333033, 46.6996847 ], + [ 8.2331188, 46.6997468 ], + [ 8.2329394, 46.6998155 ], + [ 8.2327654, 46.6998905 ], + [ 8.2325973, 46.6999717 ], + [ 8.2324357, 46.7000589 ], + [ 8.2322809, 46.7001517 ], + [ 8.2321333, 46.70025 ], + [ 8.2319935, 46.7003534 ], + [ 8.2318617, 46.7004618 ], + [ 8.2317383, 46.7005747 ], + [ 8.2316237, 46.700692 ], + [ 8.2315182, 46.7008132 ], + [ 8.231422, 46.700938 ], + [ 8.2313355, 46.7010662 ], + [ 8.231258799999999, 46.7011972 ], + [ 8.2311922, 46.7013309 ], + [ 8.2311359, 46.7014667 ], + [ 8.23109, 46.7016044 ], + [ 8.2310546, 46.7017436 ], + [ 8.2310299, 46.7018839 ], + [ 8.2310158, 46.7020248 ], + [ 8.2310125, 46.7021661 ], + [ 8.231020000000001, 46.7023073 ], + [ 8.2310381, 46.702448 ], + [ 8.231067, 46.7025879 ], + [ 8.2311065, 46.7027266 ], + [ 8.2311564, 46.7028636 ], + [ 8.2312167, 46.7029986 ], + [ 8.2312872, 46.7031313 ], + [ 8.2313677, 46.7032613 ], + [ 8.231458, 46.7033882 ], + [ 8.2315578, 46.7035117 ], + [ 8.2316669, 46.7036314 ], + [ 8.2317849, 46.703747 ], + [ 8.2319116, 46.7038582 ], + [ 8.2320465, 46.7039647 ], + [ 8.2321894, 46.7040662 ], + [ 8.2323398, 46.7041625 ], + [ 8.2324973, 46.7042531 ], + [ 8.2326615, 46.704338 ], + [ 8.2328319, 46.7044168 ], + [ 8.2330081, 46.7044894 ], + [ 8.2331896, 46.7045556 ], + [ 8.2333758, 46.7046151 ], + [ 8.2335664, 46.7046679 ], + [ 8.2337606, 46.7047137 ], + [ 8.2339581, 46.7047524 ], + [ 8.2341583, 46.704784 ], + [ 8.2343606, 46.7048084 ], + [ 8.2345645, 46.7048254 ], + [ 8.2347694, 46.704835 ], + [ 8.2349748, 46.7048373 ], + [ 8.23518, 46.7048322 ], + [ 8.2353846, 46.7048197 ], + [ 8.2355879, 46.7047998 ], + [ 8.2357895, 46.7047726 ], + [ 8.2359887, 46.7047383 ], + [ 8.236185, 46.7046968 ], + [ 8.2363778, 46.7046482 ], + [ 8.2365668, 46.7045929 ], + [ 8.2367512, 46.7045307 ], + [ 8.2369307, 46.7044621 ], + [ 8.2371047, 46.704387 ], + [ 8.2372728, 46.7043058 ], + [ 8.237434499999999, 46.7042187 ], + [ 8.2375893, 46.7041258 ], + [ 8.2377368, 46.7040275 ], + [ 8.2378766, 46.7039241 ], + [ 8.2380084, 46.7038157 ], + [ 8.2381318, 46.7037027 ], + [ 8.2382464, 46.7035855 ], + [ 8.2383519, 46.7034643 ], + [ 8.238448, 46.7033394 ], + [ 8.2385346, 46.7032113 ], + [ 8.2386112, 46.7030802 ], + [ 8.2386778, 46.7029466 ], + [ 8.2387341, 46.7028107 ], + [ 8.23878, 46.702673 ], + [ 8.2388154, 46.7025338 ], + [ 8.2388401, 46.7023936 ], + [ 8.2388541, 46.7022526 ], + [ 8.2388574, 46.7021113 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0056", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Innertkirchen", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Innertkirchen", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Innertkirchen", + "lang" : "it-CH" + }, + { + "text" : "Substation Innertkirchen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.0741435, 47.0446324 ], + [ 7.0741391, 47.0444911 ], + [ 7.0741238, 47.0443503 ], + [ 7.0740978, 47.0442101 ], + [ 7.0740611, 47.0440711 ], + [ 7.0740138, 47.0439335 ], + [ 7.073956, 47.0437979 ], + [ 7.0738879, 47.0436645 ], + [ 7.0738097, 47.0435337 ], + [ 7.0737216, 47.0434059 ], + [ 7.0736239, 47.0432814 ], + [ 7.0735167, 47.0431606 ], + [ 7.0734004, 47.0430438 ], + [ 7.0732754, 47.0429313 ], + [ 7.0731419, 47.0428235 ], + [ 7.0730003, 47.0427206 ], + [ 7.0728511, 47.0426228 ], + [ 7.0726946, 47.0425306 ], + [ 7.0725312, 47.042444 ], + [ 7.0723614, 47.0423635 ], + [ 7.0721857, 47.0422891 ], + [ 7.0720045, 47.0422211 ], + [ 7.0718184, 47.0421597 ], + [ 7.0716279, 47.042105 ], + [ 7.0714334, 47.0420572 ], + [ 7.0712355, 47.0420165 ], + [ 7.0710347, 47.0419828 ], + [ 7.0708317, 47.0419565 ], + [ 7.0706269, 47.0419374 ], + [ 7.070421, 47.0419256 ], + [ 7.0702144, 47.0419213 ], + [ 7.0700078, 47.0419243 ], + [ 7.0698017, 47.0419347 ], + [ 7.0695966, 47.0419525 ], + [ 7.0693933, 47.0419776 ], + [ 7.0691921, 47.0420099 ], + [ 7.0689936, 47.0420494 ], + [ 7.0687985, 47.042096 ], + [ 7.0686072, 47.0421494 ], + [ 7.0684202, 47.0422096 ], + [ 7.0682381, 47.0422765 ], + [ 7.0680614, 47.0423497 ], + [ 7.0678905, 47.0424292 ], + [ 7.067726, 47.0425146 ], + [ 7.0675682, 47.0426059 ], + [ 7.0674176, 47.0427027 ], + [ 7.0672746, 47.0428047 ], + [ 7.0671397, 47.0429117 ], + [ 7.0670131, 47.0430233 ], + [ 7.0668952, 47.0431394 ], + [ 7.0667864, 47.0432595 ], + [ 7.0666869, 47.0433833 ], + [ 7.0665971, 47.0435106 ], + [ 7.0665171, 47.0436408 ], + [ 7.0664472, 47.0437738 ], + [ 7.0663875, 47.0439091 ], + [ 7.0663383, 47.0440463 ], + [ 7.0662997, 47.0441851 ], + [ 7.0662717, 47.0443251 ], + [ 7.0662545, 47.0444659 ], + [ 7.0662481, 47.0446071 ], + [ 7.0662525, 47.0447483 ], + [ 7.0662678, 47.0448892 ], + [ 7.0662937, 47.0450294 ], + [ 7.0663304, 47.0451684 ], + [ 7.0663777, 47.045306 ], + [ 7.0664354, 47.0454416 ], + [ 7.0665035, 47.045575 ], + [ 7.0665817, 47.0457058 ], + [ 7.0666698, 47.0458336 ], + [ 7.0667675, 47.0459581 ], + [ 7.0668747, 47.0460789 ], + [ 7.0669909, 47.0461957 ], + [ 7.067116, 47.0463082 ], + [ 7.0672495, 47.0464161 ], + [ 7.067391, 47.046519 ], + [ 7.0675403, 47.0466167 ], + [ 7.0676968, 47.046709 ], + [ 7.0678602, 47.0467955 ], + [ 7.0680299, 47.0468761 ], + [ 7.0682057, 47.0469505 ], + [ 7.0683868, 47.0470185 ], + [ 7.068573, 47.0470799 ], + [ 7.0687636, 47.0471346 ], + [ 7.0689581, 47.0471824 ], + [ 7.0691559999999996, 47.0472231 ], + [ 7.0693567, 47.0472568 ], + [ 7.0695598, 47.0472832 ], + [ 7.0697646, 47.0473023 ], + [ 7.0699705, 47.047314 ], + [ 7.0701771, 47.0473184 ], + [ 7.0703838, 47.0473153 ], + [ 7.0705899, 47.0473049 ], + [ 7.070795, 47.0472871 ], + [ 7.0709984, 47.047262 ], + [ 7.0711996, 47.0472297 ], + [ 7.071398, 47.0471902 ], + [ 7.0715932, 47.0471437 ], + [ 7.0717845, 47.0470902 ], + [ 7.0719715, 47.04703 ], + [ 7.0721536, 47.0469631 ], + [ 7.0723303, 47.0468899 ], + [ 7.0725012, 47.0468104 ], + [ 7.0726658, 47.0467249 ], + [ 7.0728236, 47.0466337 ], + [ 7.0729742, 47.0465369 ], + [ 7.0731171, 47.0464349 ], + [ 7.0732521, 47.0463279 ], + [ 7.0733787, 47.0462162 ], + [ 7.0734966, 47.0461001 ], + [ 7.0736054, 47.04598 ], + [ 7.0737049, 47.0458561 ], + [ 7.0737947, 47.0457289 ], + [ 7.0738747, 47.0455986 ], + [ 7.0739446, 47.0454657 ], + [ 7.0740042, 47.0453304 ], + [ 7.0740534, 47.0451932 ], + [ 7.074092, 47.0450544 ], + [ 7.07412, 47.0449144 ], + [ 7.0741371, 47.0447736 ], + [ 7.0741435, 47.0446324 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "STJ0001", + "country" : "CHE", + "name" : [ + { + "text" : "MZ St-Johannsen", + "lang" : "de-CH" + }, + { + "text" : "MZ St-Johannsen", + "lang" : "fr-CH" + }, + { + "text" : "MZ St-Johannsen", + "lang" : "it-CH" + }, + { + "text" : "MZ St-Johannsen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "MZ St-Johannsen", + "lang" : "de-CH" + }, + { + "text" : "MZ St-Johannsen", + "lang" : "fr-CH" + }, + { + "text" : "MZ St-Johannsen", + "lang" : "it-CH" + }, + { + "text" : "MZ St-Johannsen", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Bereichsleitung Ressourcen", + "lang" : "de-CH" + }, + { + "text" : "Bereichsleitung Ressourcen", + "lang" : "fr-CH" + }, + { + "text" : "Bereichsleitung Ressourcen", + "lang" : "it-CH" + }, + { + "text" : "Bereichsleitung Ressourcen", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Gabriel Flück", + "lang" : "de-CH" + }, + { + "text" : "Gabriel Flück", + "lang" : "fr-CH" + }, + { + "text" : "Gabriel Flück", + "lang" : "it-CH" + }, + { + "text" : "Gabriel Flück", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ajv.sid.be.ch/de/start/themen/erwachsenen--und-jugendvollzug/massnahmenzentrum-st-johannsen.html", + "email" : "st-johannsen@be.ch", + "phone" : "0041316356611", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 5.9913786, 46.1942125 ], + [ 5.9913907, 46.1942595 ], + [ 5.9911545, 46.1950112 ], + [ 5.9914228, 46.1960476 ], + [ 5.9922418, 46.1969337 ], + [ 5.9934869, 46.1975348 ], + [ 5.9949684, 46.1977592 ], + [ 5.9949887, 46.1977567 ], + [ 5.9950033, 46.1979752 ], + [ 5.9951487, 46.1982431 ], + [ 5.9950548999999995, 46.1985777 ], + [ 5.9952113, 46.1994287 ], + [ 5.9952335, 46.199481 ], + [ 5.9959229, 46.2004006 ], + [ 5.9970607, 46.2010719 ], + [ 5.998479, 46.2013958 ], + [ 5.9999686, 46.2013245 ], + [ 6.0000377, 46.2013116 ], + [ 6.0013955, 46.2008466 ], + [ 6.0023944, 46.2000567 ], + [ 6.0028828, 46.1990617 ], + [ 6.0027867, 46.1980127 ], + [ 6.0027666, 46.19796 ], + [ 6.0026941, 46.1978463 ], + [ 6.0027451, 46.1977348 ], + [ 6.0027536, 46.1976816 ], + [ 6.0026974, 46.1968376 ], + [ 6.0022681, 46.1960471 ], + [ 6.0015079, 46.1953875 ], + [ 6.0004912, 46.1949234 ], + [ 5.9993178, 46.1947004 ], + [ 5.9992446, 46.1946947 ], + [ 5.999043, 46.1947068 ], + [ 5.9992280000000004, 46.1941179 ], + [ 5.9989595, 46.1930816 ], + [ 5.9981405, 46.1921954 ], + [ 5.9978868, 46.192073 ], + [ 5.9985655, 46.1921758 ], + [ 6.0000578, 46.1919894 ], + [ 6.0013337, 46.1914205 ], + [ 6.0017129, 46.1910416 ], + [ 6.0028112, 46.1905519 ], + [ 6.0036765, 46.1896873 ], + [ 6.0039994, 46.1886585 ], + [ 6.0037309, 46.1876222 ], + [ 6.0029119, 46.1867361 ], + [ 6.001667, 46.1861351 ], + [ 6.0001858, 46.1859108 ], + [ 5.9986937, 46.1860972 ], + [ 5.9979182, 46.1864429 ], + [ 5.9967633, 46.1865872 ], + [ 5.9954874, 46.187156 ], + [ 5.9946221, 46.1880206 ], + [ 5.9942989, 46.1890494 ], + [ 5.9945673, 46.1900857 ], + [ 5.9953862, 46.1909718 ], + [ 5.9955724, 46.1910617 ], + [ 5.9958392, 46.1913504 ], + [ 5.9960929, 46.1914729 ], + [ 5.9954142, 46.19137 ], + [ 5.9939219, 46.1915564 ], + [ 5.9926459, 46.1921251 ], + [ 5.9917804, 46.1929897 ], + [ 5.9917275, 46.1931581 ], + [ 5.9917017999999995, 46.1931838 ], + [ 5.9913786, 46.1942125 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-17", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5074453, 47.3910242 ], + [ 7.5089176, 47.3906936 ], + [ 7.5089268, 47.3906914 ], + [ 7.5088752, 47.3906362 ], + [ 7.508769, 47.3904592 ], + [ 7.5086408, 47.3901645 ], + [ 7.5087062, 47.3900274 ], + [ 7.5088556, 47.3898103 ], + [ 7.5090572, 47.389608 ], + [ 7.5093647, 47.3893588 ], + [ 7.509459, 47.3892697 ], + [ 7.5098827, 47.3889331 ], + [ 7.5095992, 47.3887751 ], + [ 7.5089892, 47.3884353 ], + [ 7.5087463, 47.3882999 ], + [ 7.5080839, 47.3888537 ], + [ 7.5082064, 47.3890766 ], + [ 7.5083059, 47.3894058 ], + [ 7.5083053, 47.3895575 ], + [ 7.5081589, 47.3895495 ], + [ 7.5078494, 47.3895199 ], + [ 7.507727, 47.3895499 ], + [ 7.5076501, 47.3896524 ], + [ 7.5075668, 47.3896956 ], + [ 7.5072531, 47.3897002 ], + [ 7.5069617, 47.3897534 ], + [ 7.5067452, 47.3898366 ], + [ 7.5067283, 47.3899113 ], + [ 7.5066591, 47.3899716 ], + [ 7.506508, 47.3900487 ], + [ 7.5064173, 47.3901002 ], + [ 7.506383, 47.3901503 ], + [ 7.5063661, 47.3902066 ], + [ 7.5063689, 47.3902604 ], + [ 7.5063851, 47.3903056 ], + [ 7.5064095, 47.3903378 ], + [ 7.5064478999999995, 47.3903625 ], + [ 7.5065194, 47.3903944 ], + [ 7.5067245, 47.3904911 ], + [ 7.5068038999999995, 47.3905318 ], + [ 7.5068602, 47.3905717 ], + [ 7.5069094, 47.390613 ], + [ 7.5069071, 47.3905916 ], + [ 7.5069355, 47.3906092 ], + [ 7.5071072999999995, 47.3905858 ], + [ 7.5072887999999995, 47.3906592 ], + [ 7.5073917, 47.390791899999996 ], + [ 7.5074171, 47.3909372 ], + [ 7.5074453, 47.3910242 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns214", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Stürmen - Eggfels - Bännli", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Stürmen - Eggfels - Bännli", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Stürmen - Eggfels - Bännli", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Stürmen - Eggfels - Bännli", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.1078876, 47.0452793 ], + [ 7.1073858, 47.0445079 ], + [ 7.1029231, 47.046335 ], + [ 7.1026058, 47.0464437 ], + [ 7.1005319, 47.0471539 ], + [ 7.1003819, 47.0472053 ], + [ 7.09969, 47.0477514 ], + [ 7.0992906, 47.0486134 ], + [ 7.0988216, 47.0488841 ], + [ 7.0985551, 47.04915 ], + [ 7.0956862, 47.0519418 ], + [ 7.0954574, 47.0523453 ], + [ 7.0962556, 47.0525564 ], + [ 7.099258, 47.053335 ], + [ 7.1007433, 47.0540383 ], + [ 7.1018301, 47.0546697 ], + [ 7.1027896, 47.0551318 ], + [ 7.1047353, 47.0557627 ], + [ 7.1063088, 47.0564617 ], + [ 7.1072102, 47.057024 ], + [ 7.108367, 47.0576685 ], + [ 7.1116018, 47.059005 ], + [ 7.1125143, 47.059506 ], + [ 7.1150577, 47.0609259 ], + [ 7.1166171, 47.0615498 ], + [ 7.1178948, 47.0619548 ], + [ 7.1203704, 47.0629314 ], + [ 7.1233133, 47.0643356 ], + [ 7.1241508, 47.064757 ], + [ 7.1253471, 47.0656147 ], + [ 7.1261617, 47.0664384 ], + [ 7.1272005, 47.0677756 ], + [ 7.1287795, 47.0698986 ], + [ 7.130517, 47.071533 ], + [ 7.1315779, 47.0720794 ], + [ 7.1324682, 47.0726647 ], + [ 7.1328996, 47.0732064 ], + [ 7.1340287, 47.075069 ], + [ 7.1357866, 47.0772205 ], + [ 7.1371672, 47.0783099 ], + [ 7.1376863, 47.0786258 ], + [ 7.1386309, 47.0791114 ], + [ 7.1395446, 47.0793694 ], + [ 7.1417304, 47.0798222 ], + [ 7.143687, 47.0800658 ], + [ 7.1482595, 47.0808509 ], + [ 7.1499082, 47.0812739 ], + [ 7.1536581, 47.0821768 ], + [ 7.1560948, 47.0825395 ], + [ 7.1567848, 47.0824931 ], + [ 7.1574648, 47.0821412 ], + [ 7.1578254, 47.0814843 ], + [ 7.1579279, 47.0807778 ], + [ 7.1578641, 47.0800832 ], + [ 7.1582324, 47.0792116 ], + [ 7.1581089, 47.0778048 ], + [ 7.1578792, 47.0771961 ], + [ 7.1576796, 47.0766466 ], + [ 7.1566305, 47.0747416 ], + [ 7.1561055, 47.0739599 ], + [ 7.1553945, 47.0731821 ], + [ 7.1542208, 47.0719883 ], + [ 7.1525575, 47.0709733 ], + [ 7.1510951, 47.0699237 ], + [ 7.1497042, 47.0687686 ], + [ 7.1465329, 47.0668193 ], + [ 7.1439558, 47.0653466 ], + [ 7.1424897, 47.063993 ], + [ 7.1420354, 47.0637335 ], + [ 7.1409681, 47.0630226 ], + [ 7.1396056, 47.0616968 ], + [ 7.1393889999999995, 47.0613131 ], + [ 7.1383654, 47.0601619 ], + [ 7.1373898, 47.0589646 ], + [ 7.136696, 47.0584322 ], + [ 7.1348814, 47.0576693 ], + [ 7.1339752, 47.0571782 ], + [ 7.132436, 47.0564517 ], + [ 7.131456, 47.0557861 ], + [ 7.1301029, 47.0553363 ], + [ 7.1288708, 47.0547351 ], + [ 7.12761, 47.0539875 ], + [ 7.1265945, 47.0536231 ], + [ 7.1237776, 47.0521444 ], + [ 7.1231771, 47.0518686 ], + [ 7.1213632, 47.0513357 ], + [ 7.1194741, 47.0504555 ], + [ 7.1182248, 47.0500107 ], + [ 7.1163259, 47.0492788 ], + [ 7.1146936, 47.0487947 ], + [ 7.1127818, 47.0478926 ], + [ 7.1117301, 47.0473182 ], + [ 7.109116, 47.0462818 ], + [ 7.108607, 47.0459877 ], + [ 7.1078876, 47.0452793 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "WZV0015", + "country" : "CHE", + "name" : [ + { + "text" : "Wasser- und Zugvogelreservat Hagneckdelta und St. Petersinsel", + "lang" : "de-CH" + }, + { + "text" : "Réserve d'oiseaux d'eau et de migrateurs Hagneckdelta und St. Petersinsel", + "lang" : "fr-CH" + }, + { + "text" : "Riserva di uccelli acquatici e migratori Hagneckdelta und St. Petersinsel", + "lang" : "it-CH" + }, + { + "text" : "Water Bird and Migratory Bird Reserves Hagneckdelta und St. Petersinsel", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8164288, 47.3961759 ], + [ 7.8165161, 47.3962028 ], + [ 7.8166126, 47.3962511 ], + [ 7.8167226, 47.3963015 ], + [ 7.8168538, 47.396327 ], + [ 7.8169096, 47.3963333 ], + [ 7.8169535, 47.3963536 ], + [ 7.8170681, 47.3964526 ], + [ 7.8172027, 47.3964742 ], + [ 7.817303, 47.396523 ], + [ 7.8173252, 47.3965029 ], + [ 7.8176181, 47.3962482 ], + [ 7.8176341, 47.3964217 ], + [ 7.8176615, 47.3964627 ], + [ 7.8177705, 47.3964513 ], + [ 7.8177159, 47.3962983 ], + [ 7.8179074, 47.3963046 ], + [ 7.8181055, 47.3964821 ], + [ 7.8183826, 47.396582 ], + [ 7.8184578, 47.3967591 ], + [ 7.8185322, 47.396747 ], + [ 7.822797, 47.3960537 ], + [ 7.8233208, 47.3959732 ], + [ 7.8233568, 47.395946 ], + [ 7.8233789, 47.3958279 ], + [ 7.8234024, 47.3956555 ], + [ 7.8233872, 47.3955942 ], + [ 7.8232739, 47.3955072 ], + [ 7.8232454, 47.3954554 ], + [ 7.8232468, 47.3954163 ], + [ 7.8233683, 47.3953415 ], + [ 7.8233866, 47.3953015 ], + [ 7.8233656, 47.3952594 ], + [ 7.8233889, 47.3951789 ], + [ 7.8234418, 47.3951162 ], + [ 7.8235697, 47.3950305 ], + [ 7.8236827, 47.3949668 ], + [ 7.823938, 47.3949537 ], + [ 7.8239411, 47.394911 ], + [ 7.8238874, 47.3946526 ], + [ 7.8238753, 47.3942879 ], + [ 7.8238588, 47.3941909 ], + [ 7.8238087, 47.3943086 ], + [ 7.8237198, 47.3944016 ], + [ 7.8235764, 47.394371 ], + [ 7.8234753, 47.3943116 ], + [ 7.8234009, 47.3943102 ], + [ 7.8233424, 47.3943495 ], + [ 7.8232539, 47.3944074 ], + [ 7.8231756, 47.3944637 ], + [ 7.8228873, 47.3947215 ], + [ 7.8225878, 47.394813 ], + [ 7.8224956, 47.394853 ], + [ 7.8224257999999995, 47.3949096 ], + [ 7.8223955, 47.3949903 ], + [ 7.8223606, 47.395118 ], + [ 7.8223014, 47.3952035 ], + [ 7.8221665, 47.3952973 ], + [ 7.8221454, 47.3953135 ], + [ 7.8220092, 47.3953957 ], + [ 7.8219801, 47.3954124 ], + [ 7.8218407, 47.3955124 ], + [ 7.8217823, 47.3955589 ], + [ 7.82172, 47.3956489 ], + [ 7.8216190999999995, 47.3957446 ], + [ 7.821534, 47.3957739 ], + [ 7.8212706999999995, 47.3957756 ], + [ 7.8211394, 47.3957799 ], + [ 7.8209475, 47.3957903 ], + [ 7.8206997, 47.3958172 ], + [ 7.8204218, 47.3958257 ], + [ 7.8201073999999995, 47.3958669 ], + [ 7.8200285, 47.3958772 ], + [ 7.8198606, 47.3959175 ], + [ 7.8196712999999995, 47.3959781 ], + [ 7.8193853, 47.3960193 ], + [ 7.8190355, 47.3960333 ], + [ 7.8189316, 47.3960373 ], + [ 7.8186511, 47.3960197 ], + [ 7.8184628, 47.3959722 ], + [ 7.8182993, 47.3959205 ], + [ 7.8180823, 47.3958329 ], + [ 7.8181416, 47.3956353 ], + [ 7.8181312, 47.3956053 ], + [ 7.8180867, 47.3955777 ], + [ 7.8178391, 47.3954779 ], + [ 7.8177306, 47.3954322 ], + [ 7.8169093, 47.395916 ], + [ 7.8167039, 47.3960402 ], + [ 7.8165054, 47.3961612 ], + [ 7.8164288, 47.3961759 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns228", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Wasserfalle - Roti Flue", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Wasserfalle - Roti Flue", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Wasserfalle - Roti Flue", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Wasserfalle - Roti Flue", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5502259, 47.2074147 ], + [ 7.5500869999999995, 47.207278 ], + [ 7.549911, 47.2071235 ], + [ 7.5498035, 47.20703 ], + [ 7.5496581, 47.2069177 ], + [ 7.5495251, 47.2068423 ], + [ 7.5493831, 47.2067759 ], + [ 7.5492279, 47.2067149 ], + [ 7.5489736, 47.2066387 ], + [ 7.5488061, 47.2065894 ], + [ 7.5486211999999995, 47.2065517 ], + [ 7.5483943, 47.206516 ], + [ 7.5482474, 47.2064991 ], + [ 7.5480601, 47.2064813 ], + [ 7.5478777, 47.2064562 ], + [ 7.5476004, 47.2063979 ], + [ 7.5474527, 47.2063684 ], + [ 7.5473331, 47.2063542 ], + [ 7.5472505, 47.2063435 ], + [ 7.5470921, 47.2063338 ], + [ 7.5469172, 47.2063258 ], + [ 7.5466929, 47.2063323 ], + [ 7.5465089, 47.2063478 ], + [ 7.5463167, 47.2063615 ], + [ 7.5457319, 47.2063827 ], + [ 7.5450505, 47.2063932 ], + [ 7.5447734, 47.2064051 ], + [ 7.5445845, 47.2064216 ], + [ 7.5441754, 47.2064516 ], + [ 7.5438297, 47.2064644 ], + [ 7.543513, 47.2064647 ], + [ 7.5431986, 47.2064435 ], + [ 7.5425625, 47.2063829 ], + [ 7.5423669, 47.2063633 ], + [ 7.5420633, 47.2063626 ], + [ 7.5419775, 47.2063537 ], + [ 7.5416202, 47.2063073 ], + [ 7.5413809, 47.2062732 ], + [ 7.5411037, 47.2062277 ], + [ 7.5410269, 47.2061918 ], + [ 7.5409608, 47.2061757 ], + [ 7.5408460999999996, 47.2061596 ], + [ 7.5404657, 47.2061041 ], + [ 7.5402891, 47.2060773 ], + [ 7.5392214, 47.2059253 ], + [ 7.5383393, 47.2057965 ], + [ 7.5379019, 47.2057366 ], + [ 7.5374753, 47.205675 ], + [ 7.5370495, 47.2056142 ], + [ 7.5366758, 47.2055542 ], + [ 7.536476, 47.2055121 ], + [ 7.5361121, 47.2054261 ], + [ 7.5357952, 47.2053418 ], + [ 7.5356441, 47.2052789 ], + [ 7.535531, 47.2052322 ], + [ 7.5353221, 47.2051281 ], + [ 7.5351578, 47.2050527 ], + [ 7.5349761, 47.2049485 ], + [ 7.5348646, 47.2048722 ], + [ 7.5347545, 47.2046545 ], + [ 7.5346387, 47.2044702 ], + [ 7.5345601, 47.204348 ], + [ 7.534408, 47.2041826 ], + [ 7.5343022, 47.2040883 ], + [ 7.5342353, 47.2040119 ], + [ 7.5341939, 47.2039336 ], + [ 7.5341458, 47.2038059 ], + [ 7.5341234, 47.2036908 ], + [ 7.5340836, 47.2035802 ], + [ 7.5340099, 47.2034427 ], + [ 7.5338007000000005, 47.203173 ], + [ 7.5337354, 47.203075 ], + [ 7.5336428, 47.2029528 ], + [ 7.53356, 47.2028134 ], + [ 7.5334831, 47.2026704 ], + [ 7.5334242, 47.2025067 ], + [ 7.5333711, 47.2023422 ], + [ 7.5333247, 47.2022271 ], + [ 7.5332379, 47.2020796 ], + [ 7.5331626, 47.2019593 ], + [ 7.533017, 47.2017597 ], + [ 7.5329335, 47.2016266 ], + [ 7.5328979, 47.2015672 ], + [ 7.5327598, 47.2013829 ], + [ 7.532649, 47.2012293 ], + [ 7.5325879, 47.2011645 ], + [ 7.532383, 47.2009866 ], + [ 7.5322169, 47.2008285 ], + [ 7.5320881, 47.2007297 ], + [ 7.531946, 47.2006137 ], + [ 7.5318741, 47.2005346 ], + [ 7.5318104, 47.2004339 ], + [ 7.5317286, 47.2003522 ], + [ 7.5316402, 47.2002803 ], + [ 7.5315527, 47.2002254 ], + [ 7.5314305, 47.2001626 ], + [ 7.5312729, 47.2001097 ], + [ 7.5311268, 47.200053 ], + [ 7.5310483, 47.1999965 ], + [ 7.5309162, 47.1999309 ], + [ 7.530813, 47.1998617 ], + [ 7.5306998, 47.1997692 ], + [ 7.5305941, 47.1996793 ], + [ 7.530466, 47.1995562 ], + [ 7.5303074, 47.1994196 ], + [ 7.5302355, 47.1993505 ], + [ 7.5300901, 47.1992003 ], + [ 7.5300132, 47.1990888 ], + [ 7.5299181, 47.1989459 ], + [ 7.5297949, 47.198758 ], + [ 7.5296527, 47.1985971 ], + [ 7.5295412, 47.1984947 ], + [ 7.5293959, 47.1984004 ], + [ 7.5292704, 47.1983177 ], + [ 7.5290648000000004, 47.1982099 ], + [ 7.5290458000000005, 47.1982009 ], + [ 7.5288271, 47.198104 ], + [ 7.5285481, 47.1979873 ], + [ 7.5283649, 47.1979055 ], + [ 7.5280686, 47.1977718 ], + [ 7.5279786, 47.1977313 ], + [ 7.5277574, 47.1976506 ], + [ 7.5274372, 47.1975429 ], + [ 7.5268431, 47.1973778 ], + [ 7.5265427, 47.1972862 ], + [ 7.5262489, 47.1971903 ], + [ 7.525701, 47.1970225 ], + [ 7.5246381, 47.1966788 ], + [ 7.5245456, 47.1966464 ], + [ 7.5240208, 47.1964777 ], + [ 7.5239375, 47.196449 ], + [ 7.5235587, 47.1963368 ], + [ 7.5231824, 47.1962149 ], + [ 7.5229184, 47.1961484 ], + [ 7.5223952, 47.1960067 ], + [ 7.5222979, 47.1959835 ], + [ 7.521882, 47.195865 ], + [ 7.5214579, 47.1957339 ], + [ 7.5211691, 47.1956586 ], + [ 7.5206221, 47.1955339 ], + [ 7.5200941, 47.195466 ], + [ 7.5195794, 47.1954457 ], + [ 7.5194804, 47.1954421 ], + [ 7.5190054, 47.1954551 ], + [ 7.5185163, 47.1954626 ], + [ 7.5180264, 47.195471 ], + [ 7.5174787, 47.1954678 ], + [ 7.5168766, 47.1954619 ], + [ 7.5166696, 47.1954549 ], + [ 7.5164741, 47.1954622 ], + [ 7.5163174999999995, 47.1954739 ], + [ 7.516155, 47.1954912 ], + [ 7.5160074, 47.1955075 ], + [ 7.5158408, 47.1955229 ], + [ 7.5152304999999995, 47.1955241 ], + [ 7.5150045, 47.1955315 ], + [ 7.5147538, 47.1955649 ], + [ 7.5146697, 47.195583 ], + [ 7.514424, 47.1956281 ], + [ 7.514264, 47.1956472 ], + [ 7.5141255000000005, 47.1956751 ], + [ 7.514053, 47.1956833 ], + [ 7.5136835, 47.1957384 ], + [ 7.5135351, 47.1957609 ], + [ 7.51347, 47.19577 ], + [ 7.5132976, 47.1958007 ], + [ 7.5130239, 47.1958512 ], + [ 7.5125943, 47.1959558 ], + [ 7.5122736, 47.1960234 ], + [ 7.5121433, 47.196047 ], + [ 7.5121004, 47.1960524 ], + [ 7.5119619, 47.1960551 ], + [ 7.5117903, 47.1960507 ], + [ 7.5117153, 47.1960418 ], + [ 7.5113408, 47.1959909 ], + [ 7.5112921, 47.1959801 ], + [ 7.5111898, 47.1959756 ], + [ 7.5110752, 47.1959847 ], + [ 7.5109828, 47.1959983 ], + [ 7.5108327, 47.1960002 ], + [ 7.5107271, 47.1959966 ], + [ 7.5107106, 47.1959952 ], + [ 7.5105256, 47.1969788 ], + [ 7.5106666, 47.1969897 ], + [ 7.5111285, 47.1970172 ], + [ 7.511291, 47.197026 ], + [ 7.5113603, 47.1970297 ], + [ 7.5113875, 47.197031 ], + [ 7.5115937, 47.1970413 ], + [ 7.5118222, 47.197051 ], + [ 7.5120069, 47.1970463 ], + [ 7.5123781, 47.1970318 ], + [ 7.5125603, 47.1970118 ], + [ 7.5126460999999995, 47.1970001 ], + [ 7.5128176, 47.1969928 ], + [ 7.5128555, 47.196981 ], + [ 7.5129297, 47.1969675 ], + [ 7.5133767, 47.1969195 ], + [ 7.5134509, 47.1969123 ], + [ 7.5135639, 47.1968996 ], + [ 7.5137709, 47.1968788 ], + [ 7.5141634, 47.1968615 ], + [ 7.5144505, 47.1968569 ], + [ 7.5147911, 47.1968358 ], + [ 7.5154038, 47.1968139 ], + [ 7.51577, 47.19681 ], + [ 7.5161164, 47.1968008 ], + [ 7.5163737, 47.1967746 ], + [ 7.5166055, 47.1967547 ], + [ 7.5168455, 47.1967347 ], + [ 7.5170475, 47.1967147 ], + [ 7.517252, 47.1966886 ], + [ 7.5175613, 47.1966451 ], + [ 7.5178656, 47.1966081 ], + [ 7.5181756, 47.1965862 ], + [ 7.518334, 47.1965763 ], + [ 7.5185031, 47.1965753 ], + [ 7.5189872, 47.196575 ], + [ 7.5191984, 47.1965855 ], + [ 7.5197156, 47.1966274 ], + [ 7.5198294, 47.196649 ], + [ 7.5198979, 47.1966508 ], + [ 7.5202172, 47.1966792 ], + [ 7.5207055, 47.1967347 ], + [ 7.5211906, 47.1968028 ], + [ 7.5214678, 47.1968431 ], + [ 7.5216906, 47.1968914 ], + [ 7.5219216, 47.1969362 ], + [ 7.5222541, 47.1970097 ], + [ 7.5223794999999996, 47.1970366 ], + [ 7.5224282, 47.1970456 ], + [ 7.5231138, 47.1972097 ], + [ 7.5237987, 47.1973756 ], + [ 7.5244844, 47.1975801 ], + [ 7.5246701, 47.1976376 ], + [ 7.5248219, 47.1976869 ], + [ 7.5251718, 47.1977893 ], + [ 7.525242, 47.1978224 ], + [ 7.5252568, 47.1978287 ], + [ 7.5253657, 47.1978458 ], + [ 7.5255176, 47.1978888 ], + [ 7.5256991, 47.1979525 ], + [ 7.5259047, 47.1980388 ], + [ 7.5265708, 47.1983674 ], + [ 7.5268994, 47.1985309 ], + [ 7.5272246, 47.1986854 ], + [ 7.5274293, 47.1987913 ], + [ 7.5276126, 47.198882 ], + [ 7.5278025, 47.1989728 ], + [ 7.5278743, 47.1990177 ], + [ 7.5282624, 47.1992666 ], + [ 7.5286645, 47.1995271 ], + [ 7.5290609, 47.1997893 ], + [ 7.5294606, 47.2000499 ], + [ 7.5298635, 47.2003132 ], + [ 7.5302533, 47.2005791 ], + [ 7.5305572, 47.2007632 ], + [ 7.5306629, 47.2008351 ], + [ 7.5308314, 47.2009456 ], + [ 7.5308776, 47.2009699 ], + [ 7.5309222, 47.2010265 ], + [ 7.5310098, 47.2011218 ], + [ 7.5311231, 47.2012602 ], + [ 7.531352, 47.201528 ], + [ 7.5314463, 47.2016342 ], + [ 7.5315305, 47.2017231 ], + [ 7.5316049, 47.2018058 ], + [ 7.5316743, 47.2018768 ], + [ 7.5317934, 47.202026 ], + [ 7.5318893, 47.2021788 ], + [ 7.5320176, 47.2023865 ], + [ 7.5321110000000004, 47.2025303 ], + [ 7.5322186, 47.2027119 ], + [ 7.5322897, 47.2028306 ], + [ 7.5323882, 47.202979 ], + [ 7.5324485, 47.2030734 ], + [ 7.5325071999999995, 47.2031399 ], + [ 7.5325641999999995, 47.2031939 ], + [ 7.5325980999999995, 47.203236 ], + [ 7.5326436, 47.2032764 ], + [ 7.5327362, 47.2034104 ], + [ 7.5328032, 47.2035183 ], + [ 7.5328554, 47.2036334 ], + [ 7.5329026, 47.2037728 ], + [ 7.5329425, 47.203905 ], + [ 7.5329797, 47.2039787 ], + [ 7.5330219, 47.2040578 ], + [ 7.5330922000000005, 47.2041666 ], + [ 7.5331386, 47.2042323 ], + [ 7.5332129, 47.2043167 ], + [ 7.5332427, 47.2043751 ], + [ 7.5332824, 47.2043931 ], + [ 7.5333386, 47.2044578 ], + [ 7.5333948, 47.2045271 ], + [ 7.533762, 47.205025 ], + [ 7.5338645, 47.2051419 ], + [ 7.5339239, 47.2051931 ], + [ 7.5341552, 47.2053305 ], + [ 7.5342609, 47.2054052 ], + [ 7.5344368, 47.2055102 ], + [ 7.5345887000000005, 47.2055865 ], + [ 7.5347134, 47.205635 ], + [ 7.5348851, 47.2056907 ], + [ 7.5349379, 47.2057149 ], + [ 7.5351038, 47.2057624 ], + [ 7.5354166, 47.2058413 ], + [ 7.5357327, 47.2059112 ], + [ 7.5358424, 47.2059399 ], + [ 7.5360009, 47.2059829 ], + [ 7.5362213, 47.2060448 ], + [ 7.5365168, 47.2061489 ], + [ 7.5368536, 47.2062782 ], + [ 7.536994, 47.2063302 ], + [ 7.5370335, 47.206278 ], + [ 7.5370821, 47.2062825 ], + [ 7.5374105, 47.2063155 ], + [ 7.5377704, 47.2064176 ], + [ 7.5383515, 47.2065962 ], + [ 7.53894, 47.2067629 ], + [ 7.5390168, 47.206788 ], + [ 7.5390283, 47.2067602 ], + [ 7.5393047, 47.2068041 ], + [ 7.5396456, 47.2068892 ], + [ 7.5397537, 47.2069151 ], + [ 7.5400492, 47.206985 ], + [ 7.5403619, 47.2070495 ], + [ 7.5405963, 47.2070953 ], + [ 7.5408604, 47.2071453 ], + [ 7.5410056, 47.2071722 ], + [ 7.5413958999999995, 47.2072132 ], + [ 7.5416402, 47.2072436 ], + [ 7.5416295, 47.2072778 ], + [ 7.5427691, 47.2074188 ], + [ 7.5431387, 47.2074528 ], + [ 7.5433804, 47.2074597 ], + [ 7.5438515, 47.2074593 ], + [ 7.5439505, 47.2074484 ], + [ 7.544089, 47.2074393 ], + [ 7.5442540000000005, 47.2074256 ], + [ 7.5445238, 47.2074235 ], + [ 7.5449131, 47.2074242 ], + [ 7.5453025, 47.2074273 ], + [ 7.5456705, 47.2074387 ], + [ 7.5458726, 47.207426 ], + [ 7.5461547, 47.2074149 ], + [ 7.5463345, 47.2074111 ], + [ 7.5467289, 47.2074117 ], + [ 7.5470787, 47.2074158 ], + [ 7.547421, 47.2074245 ], + [ 7.5476751, 47.2074333 ], + [ 7.5478666, 47.2074474 ], + [ 7.5482099, 47.2075037 ], + [ 7.5484245, 47.2075503 ], + [ 7.5485896, 47.2076113 ], + [ 7.5487382, 47.2076796 ], + [ 7.5490885, 47.2079131 ], + [ 7.5492356, 47.2080344 ], + [ 7.5494604, 47.2082501 ], + [ 7.5496365, 47.2084423 ], + [ 7.5497159, 47.2085385 ], + [ 7.5498045000000005, 47.2086805 ], + [ 7.5499619, 47.2089898 ], + [ 7.5501077, 47.2093009 ], + [ 7.5502569, 47.2096408 ], + [ 7.5503772, 47.209933 ], + [ 7.5505287, 47.2102089 ], + [ 7.550624, 47.2103789 ], + [ 7.5507273999999995, 47.2105317 ], + [ 7.5508937, 47.2107564 ], + [ 7.5510459999999995, 47.210982 ], + [ 7.5511932999999996, 47.2112103 ], + [ 7.5513373, 47.2114404 ], + [ 7.5514921, 47.2116643 ], + [ 7.5515624, 47.2117631 ], + [ 7.5516245, 47.211871 ], + [ 7.5516345000000005, 47.2118845 ], + [ 7.551699, 47.2119748 ], + [ 7.5529883, 47.211866 ], + [ 7.5529551999999995, 47.2118194 ], + [ 7.5527856, 47.2116117 ], + [ 7.55264, 47.2114248 ], + [ 7.5525672, 47.2113349 ], + [ 7.5524844, 47.2111974 ], + [ 7.5523595, 47.2110086 ], + [ 7.5522708, 47.2108495 ], + [ 7.5522096, 47.2107371 ], + [ 7.552092, 47.2105312 ], + [ 7.5520539, 47.2104548 ], + [ 7.5519312, 47.2102049 ], + [ 7.5518384, 47.2100296 ], + [ 7.5517448, 47.2098299 ], + [ 7.5516562, 47.2096861 ], + [ 7.551518, 47.2094677 ], + [ 7.5514534, 47.209331 ], + [ 7.5513762, 47.2091279 ], + [ 7.5512616999999995, 47.2088068 ], + [ 7.5512193, 47.2086505 ], + [ 7.5511637, 47.2084831 ], + [ 7.5510957, 47.2083519 ], + [ 7.5510113, 47.2082153 ], + [ 7.5509402, 47.2081317 ], + [ 7.5506079, 47.2078154 ], + [ 7.5504739, 47.2076833 ], + [ 7.5503119, 47.2075144 ], + [ 7.5502259, 47.2074147 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "WZV0001", + "country" : "CHE", + "name" : [ + { + "text" : "Wasser- und Zugvogelreservat Aare bei Solothurn und Naturschutzreservat Aare Flumenthal", + "lang" : "de-CH" + }, + { + "text" : "Réserve d'oiseaux d'eau et de migrateurs Aare bei Solothurn und Naturschutzreservat Aare Flumenthal", + "lang" : "fr-CH" + }, + { + "text" : "Riserva di uccelli acquatici e migratori Aare bei Solothurn und Naturschutzreservat Aare Flumenthal", + "lang" : "it-CH" + }, + { + "text" : "Water Bird and Migratory Bird Reserves Aare bei Solothurn und Naturschutzreservat Aare Flumenthal", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.6801379, 46.5821887 ], + [ 9.6796395, 46.5821704 ], + [ 9.6793453, 46.5821762 ], + [ 9.6792324, 46.5822066 ], + [ 9.6791431, 46.5823153 ], + [ 9.6791347, 46.5826053 ], + [ 9.6790337, 46.5827282 ], + [ 9.6790045, 46.5829089 ], + [ 9.6789193, 46.5830175 ], + [ 9.6788324, 46.5830868 ], + [ 9.6786234, 46.5831612 ], + [ 9.6779606, 46.5833289 ], + [ 9.6773498, 46.5834508 ], + [ 9.6770223, 46.5835191 ], + [ 9.6767841, 46.58358 ], + [ 9.6764049, 46.5836015 ], + [ 9.676010999999999, 46.5836432 ], + [ 9.6756078, 46.5836567 ], + [ 9.6753271, 46.5837747 ], + [ 9.6750679, 46.5838192 ], + [ 9.6745664, 46.5837447 ], + [ 9.6743481, 46.5837912 ], + [ 9.6742394, 46.5839227 ], + [ 9.673913, 46.5840192 ], + [ 9.6733616, 46.5840216 ], + [ 9.6729859, 46.5839894 ], + [ 9.6726951, 46.5840401 ], + [ 9.6723863, 46.5840678 ], + [ 9.6722065, 46.5841183 ], + [ 9.6720414, 46.5843096 ], + [ 9.6719996, 46.5844615 ], + [ 9.6719356, 46.5845726 ], + [ 9.6718459, 46.5846134 ], + [ 9.6716502, 46.5846135 ], + [ 9.6714348, 46.5845548 ], + [ 9.670936, 46.5843863 ], + [ 9.6706372, 46.5843804 ], + [ 9.6702641, 46.5843741 ], + [ 9.6699761, 46.5843521 ], + [ 9.6697078, 46.5843947 ], + [ 9.6694473, 46.5845664 ], + [ 9.6692934, 46.5847498 ], + [ 9.6692599, 46.5849073 ], + [ 9.6691737, 46.5850913 ], + [ 9.6690434, 46.5852349 ], + [ 9.6689065, 46.5853768 ], + [ 9.6686897, 46.5854223 ], + [ 9.668562, 46.5854307 ], + [ 9.6684029, 46.5853711 ], + [ 9.6683231, 46.5854941 ], + [ 9.6682598, 46.5855405 ], + [ 9.6680819, 46.5855008 ], + [ 9.6676454, 46.5855368 ], + [ 9.6669634, 46.585754 ], + [ 9.666228, 46.5859836 ], + [ 9.6661989, 46.5861882 ], + [ 9.666071, 46.5863902 ], + [ 9.665877, 46.5866523 ], + [ 9.6655372, 46.5874924 ], + [ 9.6650734, 46.5882176 ], + [ 9.6645065, 46.588933 ], + [ 9.6639156, 46.589461 ], + [ 9.6633381, 46.5921858 ], + [ 9.6630581, 46.5927771 ], + [ 9.6628653, 46.593326 ], + [ 9.6628664, 46.593772 ], + [ 9.6629665, 46.5941223 ], + [ 9.6632315, 46.5950911 ], + [ 9.6634509, 46.5953676 ], + [ 9.663789, 46.5957334 ], + [ 9.6641373, 46.5961277 ], + [ 9.6646001, 46.5966687 ], + [ 9.665231, 46.5972867 ], + [ 9.6658515, 46.5978532 ], + [ 9.6657355, 46.5978499 ], + [ 9.6652022, 46.5977973 ], + [ 9.6646023, 46.5977345 ], + [ 9.6639136, 46.5977137 ], + [ 9.6631347, 46.5977406 ], + [ 9.6625132, 46.597747 ], + [ 9.661876, 46.5977882 ], + [ 9.661056, 46.5978272 ], + [ 9.660352, 46.5978524 ], + [ 9.6597993, 46.5977259 ], + [ 9.659218, 46.5976971 ], + [ 9.6587312, 46.597764 ], + [ 9.6582357, 46.5978195 ], + [ 9.6578951, 46.5980096 ], + [ 9.65755, 46.5980909 ], + [ 9.6569307, 46.5981488 ], + [ 9.6565809, 46.5983162 ], + [ 9.6562534, 46.5986263 ], + [ 9.6560844, 46.5989448 ], + [ 9.6558856, 46.5991492 ], + [ 9.6555312, 46.5996031 ], + [ 9.6551972, 46.5999535 ], + [ 9.6549548, 46.6001129 ], + [ 9.6535544, 46.6007478 ], + [ 9.6540109, 46.6018134 ], + [ 9.6543905, 46.6022959 ], + [ 9.6546169, 46.6024435 ], + [ 9.6550174, 46.6026385 ], + [ 9.6556313, 46.6030827 ], + [ 9.6560311, 46.6032606 ], + [ 9.6564453, 46.6033935 ], + [ 9.656775, 46.6034714 ], + [ 9.656893, 46.6035649 ], + [ 9.656919, 46.6038009 ], + [ 9.656904, 46.604032 ], + [ 9.6568864, 46.6043984 ], + [ 9.6567464, 46.6047671 ], + [ 9.6565604, 46.6050073 ], + [ 9.6564662, 46.6051377 ], + [ 9.6566568, 46.6055466 ], + [ 9.6567776, 46.6058479 ], + [ 9.6569058, 46.6059076 ], + [ 9.6570837, 46.6059296 ], + [ 9.6572827, 46.6059651 ], + [ 9.6574258, 46.6059918 ], + [ 9.6575164, 46.6060314 ], + [ 9.657900099999999, 46.6062738 ], + [ 9.658102, 46.6063821 ], + [ 9.6583232, 46.6064821 ], + [ 9.6585389, 46.6066076 ], + [ 9.6586757, 46.6066601 ], + [ 9.6588028, 46.606695 ], + [ 9.6589052, 46.6067044 ], + [ 9.6593094, 46.6068092 ], + [ 9.6592979, 46.6070076 ], + [ 9.6592675, 46.6074782 ], + [ 9.6592051, 46.6079665 ], + [ 9.6591025, 46.60849 ], + [ 9.6592155, 46.6090151 ], + [ 9.6591804, 46.6095716 ], + [ 9.6591854, 46.6096924 ], + [ 9.6593742, 46.6096585 ], + [ 9.6595581, 46.609367 ], + [ 9.6597229, 46.6092468 ], + [ 9.6606597, 46.6091655 ], + [ 9.6609896, 46.609249 ], + [ 9.661355, 46.6092419 ], + [ 9.6615786, 46.6092825 ], + [ 9.661944, 46.6092754 ], + [ 9.6623055, 46.6094933 ], + [ 9.6625429, 46.6095517 ], + [ 9.6627069, 46.6097285 ], + [ 9.6632735, 46.6098524 ], + [ 9.6636269, 46.6098725 ], + [ 9.6641209, 46.6098178 ], + [ 9.6646454, 46.6098706 ], + [ 9.6649119, 46.6100003 ], + [ 9.6655252, 46.6099883 ], + [ 9.66609, 46.6100673 ], + [ 9.6666391, 46.6100836 ], + [ 9.6669746, 46.610302 ], + [ 9.667341799999999, 46.6103398 ], + [ 9.667627, 46.6102892 ], + [ 9.6680594, 46.6103257 ], + [ 9.669337, 46.6105887 ], + [ 9.6698619, 46.6106504 ], + [ 9.670221699999999, 46.6105084 ], + [ 9.670707, 46.6105618 ], + [ 9.670816, 46.6105137 ], + [ 9.6712778, 46.6107663 ], + [ 9.6711008, 46.6110851 ], + [ 9.6709012, 46.6114672 ], + [ 9.671073, 46.6118134 ], + [ 9.671423, 46.6120472 ], + [ 9.6719397, 46.6123063 ], + [ 9.6722538, 46.6124606 ], + [ 9.6727199, 46.6126978 ], + [ 9.6727547, 46.6129263 ], + [ 9.6730929, 46.6130916 ], + [ 9.67318, 46.6133821 ], + [ 9.6736816, 46.6136702 ], + [ 9.6743104, 46.6140131 ], + [ 9.6750314, 46.6143943 ], + [ 9.6752988, 46.6146412 ], + [ 9.6755909, 46.6148761 ], + [ 9.6763644, 46.6153021 ], + [ 9.6769927, 46.6156507 ], + [ 9.6774327, 46.6158484 ], + [ 9.6775934, 46.6159253 ], + [ 9.6779633, 46.6160269 ], + [ 9.6782147, 46.6160474 ], + [ 9.6786541, 46.616367 ], + [ 9.678825400000001, 46.6164837 ], + [ 9.679023, 46.6166229 ], + [ 9.6792384, 46.6167963 ], + [ 9.6796181, 46.6167421 ], + [ 9.6798998, 46.6167246 ], + [ 9.6802579, 46.6167571 ], + [ 9.6807507, 46.6168096 ], + [ 9.6813611, 46.6169055 ], + [ 9.6817399, 46.6170236 ], + [ 9.6821855, 46.6171403 ], + [ 9.6824661, 46.617272 ], + [ 9.6828021, 46.6175401 ], + [ 9.6829682, 46.617726 ], + [ 9.6832237, 46.6180418 ], + [ 9.683392, 46.6182793 ], + [ 9.6835874, 46.618562 ], + [ 9.6837132, 46.6187601 ], + [ 9.6839691, 46.6191047 ], + [ 9.6841624, 46.6193358 ], + [ 9.6844355, 46.61968 ], + [ 9.6846524, 46.6198703 ], + [ 9.6849643, 46.6201678 ], + [ 9.6852331, 46.6204088 ], + [ 9.6854875, 46.6205181 ], + [ 9.6857857, 46.6205059 ], + [ 9.6861491, 46.6204694 ], + [ 9.6864662, 46.620497 ], + [ 9.6868306, 46.6204662 ], + [ 9.6871214, 46.6204714 ], + [ 9.6874272, 46.6204419 ], + [ 9.6877257, 46.6204354 ], + [ 9.6881078, 46.6204386 ], + [ 9.6885321, 46.6204524 ], + [ 9.6890633, 46.6204467 ], + [ 9.6893957, 46.6204509 ], + [ 9.6897841, 46.6204081 ], + [ 9.6903216, 46.6205343 ], + [ 9.690738, 46.6205541 ], + [ 9.6913641, 46.6206322 ], + [ 9.6917713, 46.6206292 ], + [ 9.6921958, 46.6206487 ], + [ 9.6925273, 46.6206302 ], + [ 9.6928664, 46.6205998 ], + [ 9.6934906, 46.6206322 ], + [ 9.6940062, 46.6206441 ], + [ 9.6943456, 46.6206195 ], + [ 9.6945941, 46.6206084 ], + [ 9.6948954, 46.6206478 ], + [ 9.695693200000001, 46.6208486 ], + [ 9.6959018, 46.6210563 ], + [ 9.6961048, 46.6211266 ], + [ 9.6963532, 46.6212877 ], + [ 9.6965176, 46.6214334 ], + [ 9.6966184, 46.6216376 ], + [ 9.6967377, 46.621893299999996 ], + [ 9.696782, 46.6221334 ], + [ 9.6967859, 46.622403 ], + [ 9.6967781, 46.6225869 ], + [ 9.6967762, 46.6227361 ], + [ 9.6967786, 46.6229713 ], + [ 9.6968423, 46.6232626 ], + [ 9.6968686, 46.6236581 ], + [ 9.696885, 46.6240307 ], + [ 9.6968859, 46.6244037 ], + [ 9.6968857, 46.6245758 ], + [ 9.6968862, 46.6247824 ], + [ 9.6968638, 46.6250067 ], + [ 9.6968818, 46.6252244 ], + [ 9.6969384, 46.6255617 ], + [ 9.6968506, 46.6258046 ], + [ 9.6967778, 46.6260358 ], + [ 9.696606, 46.6262806 ], + [ 9.6964611, 46.6263698 ], + [ 9.6963157, 46.6264647 ], + [ 9.696174899999999, 46.6266515 ], + [ 9.696276600000001, 46.6268788 ], + [ 9.6964274, 46.6270878 ], + [ 9.6963274, 46.6272736 ], + [ 9.6961806, 46.6273342 ], + [ 9.6960602, 46.6274229 ], + [ 9.6959835, 46.6275622 ], + [ 9.6959925, 46.6277572 ], + [ 9.6960921, 46.627933 ], + [ 9.6961306, 46.6280526 ], + [ 9.6961051, 46.6282253 ], + [ 9.6959451, 46.6283608 ], + [ 9.695734, 46.6284686 ], + [ 9.6955723, 46.6285639 ], + [ 9.6954451, 46.6286873 ], + [ 9.6954481, 46.628934 ], + [ 9.6954393, 46.6292899 ], + [ 9.6953733, 46.6296644 ], + [ 9.6953114, 46.629941099999996 ], + [ 9.6951839, 46.6302309 ], + [ 9.6952607, 46.6306424 ], + [ 9.6951586, 46.6309544 ], + [ 9.69508, 46.6312431 ], + [ 9.6950483, 46.6314618 ], + [ 9.6949924, 46.6316868 ], + [ 9.6950279, 46.6319098 ], + [ 9.695151, 46.6320622 ], + [ 9.6951739, 46.6321994 ], + [ 9.6951605, 46.6324465 ], + [ 9.695097, 46.632706 ], + [ 9.6949998, 46.6329377 ], + [ 9.6948233, 46.6330735 ], + [ 9.6946368, 46.6331809 ], + [ 9.6945689, 46.6333144 ], + [ 9.6945073, 46.6336197 ], + [ 9.6944394, 46.6339483 ], + [ 9.6943979, 46.634305 ], + [ 9.6943504, 46.6347308 ], + [ 9.6943675, 46.6351033 ], + [ 9.6943386, 46.635368 ], + [ 9.6943365, 46.6356894 ], + [ 9.6943421, 46.6359991 ], + [ 9.6943306, 46.6362921 ], + [ 9.6942862, 46.6365971 ], + [ 9.6942755, 46.6369073 ], + [ 9.6942886, 46.6371825 ], + [ 9.6942682, 46.6374756 ], + [ 9.6941986, 46.637764 ], + [ 9.6940404, 46.6381233 ], + [ 9.6939996, 46.6383193 ], + [ 9.6939054, 46.6386254 ], + [ 9.6938095, 46.6388915 ], + [ 9.6936899, 46.6391753 ], + [ 9.6935541, 46.6394824 ], + [ 9.6934195, 46.639818 ], + [ 9.6933648, 46.6402497 ], + [ 9.6934241, 46.6406329 ], + [ 9.6936307, 46.6409842 ], + [ 9.6940321, 46.6410329 ], + [ 9.694575799999999, 46.6411072 ], + [ 9.6948521, 46.6411529 ], + [ 9.695235199999999, 46.6411733 ], + [ 9.6957394, 46.6413002 ], + [ 9.6960925, 46.6413843 ], + [ 9.6966622, 46.6414925 ], + [ 9.6969796, 46.6415259 ], + [ 9.6975971, 46.6415871 ], + [ 9.6978527, 46.6415471 ], + [ 9.6983738, 46.64149 ], + [ 9.6989561, 46.6413339 ], + [ 9.6994171, 46.6412263 ], + [ 9.7001679, 46.6411181 ], + [ 9.7006137, 46.6410568 ], + [ 9.700829, 46.6410292 ], + [ 9.7011169, 46.6409828 ], + [ 9.7014603, 46.6408548 ], + [ 9.7017399, 46.6407857 ], + [ 9.7023898, 46.6406452 ], + [ 9.7029531, 46.6404265 ], + [ 9.7034654, 46.64018 ], + [ 9.7038259, 46.6398967 ], + [ 9.7041057, 46.6396553 ], + [ 9.70448, 46.6394866 ], + [ 9.7050074, 46.6392112 ], + [ 9.7054336, 46.6388977 ], + [ 9.7057234, 46.6387021 ], + [ 9.7060962, 46.6384988 ], + [ 9.7064724, 46.6381808 ], + [ 9.7068925, 46.6377412 ], + [ 9.7072691, 46.6374346 ], + [ 9.7076544, 46.6371393 ], + [ 9.7080552, 46.6368264 ], + [ 9.7084987, 46.6365356 ], + [ 9.7089839, 46.6362496 ], + [ 9.709449, 46.6358722 ], + [ 9.7097506, 46.6355672 ], + [ 9.7102404, 46.6351949 ], + [ 9.7108685, 46.6345787 ], + [ 9.711141, 46.6343777 ], + [ 9.7113556, 46.6341607 ], + [ 9.7115322, 46.6340306 ], + [ 9.7119105, 46.633764 ], + [ 9.712216399999999, 46.633545 ], + [ 9.7124124, 46.6332941 ], + [ 9.7125493, 46.6330156 ], + [ 9.712642, 46.6328702 ], + [ 9.7127977, 46.6326314 ], + [ 9.7129873, 46.6324207 ], + [ 9.7131725, 46.6323019 ], + [ 9.7134197, 46.6320842 ], + [ 9.7135321, 46.6318063 ], + [ 9.7136733, 46.631631 ], + [ 9.7139514, 46.6313495 ], + [ 9.7140156, 46.63113 ], + [ 9.7139878, 46.6308782 ], + [ 9.713921599999999, 46.6307017 ], + [ 9.7137971, 46.630538 ], + [ 9.7136976, 46.630345 ], + [ 9.7135414, 46.630205 ], + [ 9.7134202, 46.6300986 ], + [ 9.7131648, 46.6299664 ], + [ 9.7129019, 46.6298516 ], + [ 9.7126396, 46.6297483 ], + [ 9.7123611, 46.629651 ], + [ 9.712024, 46.6295551 ], + [ 9.7117302, 46.6294813 ], + [ 9.7113126, 46.6294329 ], + [ 9.7110428, 46.6293469 ], + [ 9.7108309, 46.6292598 ], + [ 9.7105506, 46.6291167 ], + [ 9.7103358, 46.6289607 ], + [ 9.7101357, 46.6287642 ], + [ 9.7099531, 46.628596 ], + [ 9.7099468, 46.6284469 ], + [ 9.709882, 46.6283049 ], + [ 9.7097891, 46.6280946 ], + [ 9.709687, 46.6278615 ], + [ 9.7095828, 46.6275769 ], + [ 9.7095799, 46.6271579 ], + [ 9.709469200000001, 46.6269136 ], + [ 9.70945, 46.6266903 ], + [ 9.7094636, 46.6264317 ], + [ 9.7093834, 46.6261351 ], + [ 9.7095573, 46.6259419 ], + [ 9.7098322, 46.6257809 ], + [ 9.7099756, 46.6257149 ], + [ 9.7103105, 46.6257004 ], + [ 9.7110558, 46.6255419 ], + [ 9.7115079, 46.6254214 ], + [ 9.7116552, 46.6253507 ], + [ 9.711875599999999, 46.6252148 ], + [ 9.7119857, 46.625097 ], + [ 9.7120302, 46.6249127 ], + [ 9.7122396, 46.6248049 ], + [ 9.7124837, 46.6248239 ], + [ 9.7126803, 46.62482 ], + [ 9.712922, 46.6247833 ], + [ 9.7131787, 46.6248499 ], + [ 9.7136263, 46.6250282 ], + [ 9.7143923, 46.6253637 ], + [ 9.7150571, 46.6256214 ], + [ 9.7153145, 46.625684 ], + [ 9.7157762, 46.6256748 ], + [ 9.7164289, 46.6256458 ], + [ 9.7166822, 46.6256128 ], + [ 9.7167895, 46.6255429 ], + [ 9.71686, 46.6254339 ], + [ 9.7169864, 46.6250049 ], + [ 9.7171301, 46.6248505 ], + [ 9.717433, 46.6247528 ], + [ 9.7176135, 46.6246575 ], + [ 9.7176974, 46.6245762 ], + [ 9.7178282, 46.624386200000004 ], + [ 9.7180842, 46.6242815 ], + [ 9.7186394, 46.6238758 ], + [ 9.7190414, 46.6236724 ], + [ 9.7192326, 46.6235411 ], + [ 9.7193261, 46.6234156 ], + [ 9.7194278, 46.6233697 ], + [ 9.7196552, 46.623417 ], + [ 9.7199261, 46.6233957 ], + [ 9.7202949, 46.6233523 ], + [ 9.7205103, 46.6233879 ], + [ 9.7206799, 46.6234208 ], + [ 9.7210246, 46.6235223 ], + [ 9.7211622, 46.6235895 ], + [ 9.7213382, 46.6235832 ], + [ 9.7215613, 46.6235483 ], + [ 9.7216602, 46.6236099 ], + [ 9.7219561, 46.6237727 ], + [ 9.7223632, 46.6239028 ], + [ 9.7226377, 46.6239442 ], + [ 9.7228221, 46.6239433 ], + [ 9.7229375, 46.6238138 ], + [ 9.7230354, 46.6237537 ], + [ 9.7231398, 46.6237516 ], + [ 9.723386, 46.6237827 ], + [ 9.7235899, 46.6237786 ], + [ 9.7236922, 46.6237268 ], + [ 9.7237748, 46.6235952 ], + [ 9.723919, 46.6233932 ], + [ 9.7240199, 46.6233082 ], + [ 9.7242946, 46.6232612 ], + [ 9.724825599999999, 46.6231924 ], + [ 9.725169, 46.6231469 ], + [ 9.7254345, 46.6230724 ], + [ 9.7256253, 46.622933 ], + [ 9.7258083, 46.6227053 ], + [ 9.7260429, 46.6224601 ], + [ 9.7263422, 46.6222983 ], + [ 9.7267239, 46.6222899 ], + [ 9.7268833, 46.6223151 ], + [ 9.7270667, 46.6223283 ], + [ 9.727488, 46.6222903 ], + [ 9.7277499, 46.6222099 ], + [ 9.7279379, 46.622137 ], + [ 9.7282139, 46.6220047 ], + [ 9.7285647, 46.6218649 ], + [ 9.7288074, 46.6217162 ], + [ 9.7290636, 46.6215212 ], + [ 9.7293769, 46.6212847 ], + [ 9.7294398, 46.6212088 ], + [ 9.7295668, 46.6210854 ], + [ 9.7297674, 46.6209262 ], + [ 9.7300252, 46.6207483 ], + [ 9.7302512, 46.6206114 ], + [ 9.7303864, 46.6204879 ], + [ 9.7305298, 46.6203469 ], + [ 9.7305784, 46.620145 ], + [ 9.7306841, 46.6199247 ], + [ 9.7307211, 46.6198148 ], + [ 9.7307711, 46.6196473 ], + [ 9.7307695, 46.619435 ], + [ 9.7307047, 46.619293 ], + [ 9.7306429, 46.6192026 ], + [ 9.7304667, 46.6189941 ], + [ 9.7303714, 46.6189043 ], + [ 9.7301559, 46.6187312 ], + [ 9.730034, 46.6186075 ], + [ 9.7299449, 46.6184891 ], + [ 9.7298046, 46.6183199 ], + [ 9.7297234, 46.6181954 ], + [ 9.7296678, 46.6180589 ], + [ 9.7295944, 46.6179057 ], + [ 9.7296605, 46.617732 ], + [ 9.7297356, 46.6175582 ], + [ 9.7298188, 46.6173843 ], + [ 9.7298894, 46.6172965 ], + [ 9.7300983, 46.6171428 ], + [ 9.730266499999999, 46.6170071 ], + [ 9.7303769, 46.6168785 ], + [ 9.7305649, 46.6166333 ], + [ 9.7306199, 46.616391 ], + [ 9.7306969, 46.616263000000004 ], + [ 9.7308146, 46.6161113 ], + [ 9.7308547, 46.6159038 ], + [ 9.7309093, 46.6156329 ], + [ 9.7309945, 46.6155047 ], + [ 9.7311062, 46.6154048 ], + [ 9.7312837, 46.6152976 ], + [ 9.7314278, 46.6151738 ], + [ 9.7315949, 46.6150152 ], + [ 9.731712, 46.6148692 ], + [ 9.7320713, 46.6151797 ], + [ 9.7324422, 46.6153805 ], + [ 9.7328578, 46.6154804 ], + [ 9.7330808, 46.6156175 ], + [ 9.733691499999999, 46.6157551 ], + [ 9.7341258, 46.6157379 ], + [ 9.7347076, 46.6155013 ], + [ 9.7354269, 46.6153702 ], + [ 9.7358005, 46.6153461 ], + [ 9.7362735, 46.6150866 ], + [ 9.7366935, 46.6150198 ], + [ 9.7369251, 46.6150735 ], + [ 9.7372976, 46.6152908 ], + [ 9.7377098, 46.6156156 ], + [ 9.7386166, 46.6156139 ], + [ 9.7393596, 46.6154657 ], + [ 9.7409069, 46.615476 ], + [ 9.7416444, 46.6154861 ], + [ 9.7422471, 46.6151657 ], + [ 9.7427922, 46.6149132 ], + [ 9.7432833, 46.6148116 ], + [ 9.7436115, 46.6146799 ], + [ 9.7439586, 46.6144542 ], + [ 9.7441874, 46.6143269 ], + [ 9.7443227, 46.6140909 ], + [ 9.7444813, 46.6139285 ], + [ 9.7446464, 46.6137595 ], + [ 9.7448734, 46.6133599 ], + [ 9.7455278, 46.6126669 ], + [ 9.7455202, 46.6116475 ], + [ 9.7455567, 46.6104941 ], + [ 9.7455369, 46.6096866 ], + [ 9.7462541, 46.6090711 ], + [ 9.746929399999999, 46.608486 ], + [ 9.7481413, 46.6067471 ], + [ 9.7481346, 46.6062448 ], + [ 9.7480279, 46.6057544 ], + [ 9.7484266, 46.6053817 ], + [ 9.7492437, 46.6051189 ], + [ 9.7499684, 46.6046805 ], + [ 9.7501747, 46.6038192 ], + [ 9.75006, 46.6031418 ], + [ 9.7500801, 46.6026191 ], + [ 9.7518587, 46.6024371 ], + [ 9.7523805, 46.6024265 ], + [ 9.7528958, 46.6024332 ], + [ 9.7532278, 46.6024492 ], + [ 9.7536341, 46.6024467 ], + [ 9.7536807, 46.601993 ], + [ 9.7536351, 46.601501 ], + [ 9.7539272, 46.6011571 ], + [ 9.754313, 46.6008855 ], + [ 9.7545799, 46.6005248 ], + [ 9.7548376, 46.6001584 ], + [ 9.7552471, 46.599852 ], + [ 9.7555642, 46.5996908 ], + [ 9.7562123, 46.5995997 ], + [ 9.7562582, 46.5995861 ], + [ 9.7565555, 46.5995355 ], + [ 9.7566572, 46.599339 ], + [ 9.7567335, 46.5988902 ], + [ 9.756876, 46.5984462 ], + [ 9.7570698, 46.5980187 ], + [ 9.7572556, 46.5976142 ], + [ 9.7574934, 46.597031 ], + [ 9.757666, 46.5967185 ], + [ 9.7578748, 46.5965258 ], + [ 9.7579719, 46.5964497 ], + [ 9.7580597, 46.5963279 ], + [ 9.7580693, 46.5961328 ], + [ 9.7580288, 46.5958924 ], + [ 9.7580649, 46.5954787 ], + [ 9.7582323, 46.5952925 ], + [ 9.7584924, 46.5951163 ], + [ 9.7586544, 46.5949933 ], + [ 9.7587889, 46.5948019 ], + [ 9.7588669, 46.59464 ], + [ 9.7588849, 46.5944332 ], + [ 9.7589344, 46.5941799 ], + [ 9.7590938, 46.5939767 ], + [ 9.7593846, 46.5937369 ], + [ 9.7595398, 46.5936656 ], + [ 9.7598575, 46.5934827 ], + [ 9.7600673, 46.593313 ], + [ 9.7602517, 46.5931036 ], + [ 9.7605536, 46.5929726 ], + [ 9.7607721, 46.592797 ], + [ 9.7610274, 46.5924717 ], + [ 9.7611898, 46.5923774 ], + [ 9.7614527, 46.5922871 ], + [ 9.7616579, 46.5922208 ], + [ 9.7619477, 46.5922048 ], + [ 9.7621299, 46.5921904 ], + [ 9.7622997, 46.5920615 ], + [ 9.7623858, 46.5918995 ], + [ 9.7624139, 46.5917557 ], + [ 9.7624487, 46.5915601 ], + [ 9.7622858, 46.5913962 ], + [ 9.7621355, 46.5913527 ], + [ 9.7618108, 46.5913349 ], + [ 9.7616254, 46.5912346 ], + [ 9.761528, 46.5910583 ], + [ 9.7615783, 46.5908223 ], + [ 9.7616364, 46.5905805 ], + [ 9.7617035, 46.5903557 ], + [ 9.7617316, 46.5901945 ], + [ 9.7616139, 46.5901505 ], + [ 9.7613661, 46.5901947 ], + [ 9.7610935, 46.5902103 ], + [ 9.7608385, 46.5900308 ], + [ 9.7605382, 46.589743 ], + [ 9.7600862, 46.589383 ], + [ 9.7597787, 46.589101 ], + [ 9.7594691, 46.5887674 ], + [ 9.7593458, 46.5885572 ], + [ 9.759045, 46.5882579 ], + [ 9.7587274, 46.5879301 ], + [ 9.7585211, 46.5877038 ], + [ 9.7579838, 46.5875231 ], + [ 9.7576294, 46.587345 ], + [ 9.7572231, 46.5871163 ], + [ 9.7569173, 46.5868917 ], + [ 9.7568018, 46.5866697 ], + [ 9.7565245, 46.5865594 ], + [ 9.7561781, 46.5863755 ], + [ 9.7559351, 46.5860351 ], + [ 9.7558125, 46.5858593 ], + [ 9.7551847, 46.5856957 ], + [ 9.7547829, 46.5856687 ], + [ 9.7546113, 46.5856429 ], + [ 9.7544459, 46.5855523 ], + [ 9.7540247, 46.5852616 ], + [ 9.7534974, 46.5848731 ], + [ 9.7529683, 46.5844438 ], + [ 9.751887, 46.5835762 ], + [ 9.751577, 46.5833656 ], + [ 9.7513821, 46.5831759 ], + [ 9.7511161, 46.5829465 ], + [ 9.7509032, 46.5829273 ], + [ 9.7506478, 46.5829266 ], + [ 9.750618, 46.5828392 ], + [ 9.7506184, 46.5826396 ], + [ 9.7504025, 46.5821686 ], + [ 9.7504567, 46.5820442 ], + [ 9.7505533, 46.581919 ], + [ 9.7505323, 46.5816377 ], + [ 9.7511215, 46.5812794 ], + [ 9.7508064, 46.5806637 ], + [ 9.7504565, 46.5800545 ], + [ 9.7501733, 46.5795935 ], + [ 9.749956, 46.5792987 ], + [ 9.7499829, 46.5791279 ], + [ 9.7501246, 46.578855 ], + [ 9.7501597, 46.578684 ], + [ 9.7503388, 46.578293 ], + [ 9.7503212, 46.5780908 ], + [ 9.7502049, 46.5779465 ], + [ 9.7500365, 46.5777856 ], + [ 9.749957, 46.5775289 ], + [ 9.750005699999999, 46.5772755 ], + [ 9.7500162, 46.5769668 ], + [ 9.749916, 46.5767608 ], + [ 9.749772, 46.5765018 ], + [ 9.7498541, 46.576322 ], + [ 9.7499534, 46.5760498 ], + [ 9.7499103, 46.575863 ], + [ 9.7497603, 46.5757133 ], + [ 9.7496495, 46.5755817 ], + [ 9.7497006, 46.5752311 ], + [ 9.749604, 46.5749178 ], + [ 9.7496393, 46.574579 ], + [ 9.7495575, 46.5742311 ], + [ 9.7497633, 46.5737971 ], + [ 9.7498678, 46.5735313 ], + [ 9.7498545, 46.573222200000004 ], + [ 9.7499677, 46.5727785 ], + [ 9.7500059, 46.5725085 ], + [ 9.7500298, 46.5721125 ], + [ 9.7499525, 46.5718505 ], + [ 9.7497698, 46.5716594 ], + [ 9.7495041, 46.5714528 ], + [ 9.7493172, 46.5711644 ], + [ 9.7493519, 46.5710031 ], + [ 9.7496666, 46.5706184 ], + [ 9.7499918, 46.570268 ], + [ 9.7503572, 46.5697161 ], + [ 9.750021199999999, 46.5694308 ], + [ 9.7498253, 46.5691023 ], + [ 9.7494529, 46.5689381 ], + [ 9.7488472, 46.5687326 ], + [ 9.7485599, 46.5686124 ], + [ 9.7479789, 46.568395 ], + [ 9.747686, 46.5681432 ], + [ 9.7473959, 46.5681491 ], + [ 9.7469638, 46.5681349 ], + [ 9.7466635, 46.5679005 ], + [ 9.7467574, 46.5675775 ], + [ 9.7464385, 46.5674809 ], + [ 9.7461192, 46.5669945 ], + [ 9.7453672, 46.5666661 ], + [ 9.7450157, 46.5663982 ], + [ 9.744971, 46.5661355 ], + [ 9.7451765, 46.565713 ], + [ 9.745309, 46.5653205 ], + [ 9.745416, 46.5649229 ], + [ 9.7454105, 46.5646021 ], + [ 9.7452655, 46.5643185 ], + [ 9.7450163, 46.5641173 ], + [ 9.7446291, 46.5639876 ], + [ 9.7444066, 46.5640094 ], + [ 9.7434158, 46.5641041 ], + [ 9.7426237, 46.5641948 ], + [ 9.7424, 46.5641879 ], + [ 9.741412, 46.5643512 ], + [ 9.740969400000001, 46.5644692 ], + [ 9.7404736, 46.5645079 ], + [ 9.7398792, 46.5643768 ], + [ 9.7392966, 46.5643314 ], + [ 9.7389634, 46.5642807 ], + [ 9.7383727, 46.5642355 ], + [ 9.7379387, 46.5641755 ], + [ 9.7375712, 46.5642977 ], + [ 9.7372225, 46.5644767 ], + [ 9.7367755, 46.5646862 ], + [ 9.7362846, 46.5648396 ], + [ 9.7358982, 46.5649219 ], + [ 9.7355259, 46.5649295 ], + [ 9.7349061, 46.564988 ], + [ 9.7344934, 46.565025 ], + [ 9.7339818, 46.5650754 ], + [ 9.733659, 46.5650992 ], + [ 9.733035600000001, 46.5652437 ], + [ 9.7328053, 46.5652942 ], + [ 9.7322192, 46.5653577 ], + [ 9.7317887, 46.5653607 ], + [ 9.7314705, 46.5652984 ], + [ 9.7307763, 46.5651406 ], + [ 9.7304785, 46.5649632 ], + [ 9.7301749, 46.5648433 ], + [ 9.7298796, 46.564918 ], + [ 9.729690699999999, 46.5649619 ], + [ 9.7292185, 46.564983 ], + [ 9.7288718, 46.5649403 ], + [ 9.7284907, 46.5650128 ], + [ 9.7281687, 46.5650543 ], + [ 9.7278562, 46.5651072 ], + [ 9.7273925, 46.5651345 ], + [ 9.7269882, 46.565178 ], + [ 9.7263339, 46.5652096 ], + [ 9.725846, 46.5652431 ], + [ 9.725433, 46.5652924 ], + [ 9.7248949, 46.5653157 ], + [ 9.7242555, 46.5652952 ], + [ 9.7242994, 46.5650016 ], + [ 9.7243074, 46.5648064 ], + [ 9.7243132, 46.5645767 ], + [ 9.7242701, 46.5643654 ], + [ 9.7241716, 46.5641954 ], + [ 9.723863099999999, 46.5638814 ], + [ 9.7237231, 46.5638507 ], + [ 9.7232746, 46.5636363 ], + [ 9.7225571, 46.5635247 ], + [ 9.7217325, 46.563232 ], + [ 9.7213174, 46.5631142 ], + [ 9.7209605, 46.5636233 ], + [ 9.7206824, 46.5638359 ], + [ 9.7202059, 46.5642954 ], + [ 9.7199229, 46.5643911 ], + [ 9.7189788, 46.5645901 ], + [ 9.7184668, 46.5648253 ], + [ 9.7179718, 46.5654652 ], + [ 9.7176206, 46.5654903 ], + [ 9.7173935, 46.5656748 ], + [ 9.7170123, 46.5665374 ], + [ 9.7169991, 46.5665921 ], + [ 9.7164394, 46.5666453 ], + [ 9.7159412, 46.5666268 ], + [ 9.7152218, 46.5666641 ], + [ 9.7149877, 46.5666231 ], + [ 9.7146186, 46.5665159 ], + [ 9.71423, 46.5663517 ], + [ 9.7134794, 46.5662465 ], + [ 9.7129057, 46.5662179 ], + [ 9.7121575, 46.56617 ], + [ 9.7114663, 46.5660807 ], + [ 9.7109132, 46.56596 ], + [ 9.7105696, 46.565858 ], + [ 9.7099705, 46.5656121 ], + [ 9.7091466, 46.5653535 ], + [ 9.7087573, 46.5651723 ], + [ 9.7081408, 46.5648982 ], + [ 9.7076269, 46.5647021 ], + [ 9.7069581, 46.5643888 ], + [ 9.70672, 46.5642331 ], + [ 9.7059307, 46.5640025 ], + [ 9.7056368, 46.5639168 ], + [ 9.7052954, 46.5638836 ], + [ 9.705074, 46.5639131 ], + [ 9.7040547, 46.5637394 ], + [ 9.7038549, 46.5637209 ], + [ 9.7035301, 46.5636935 ], + [ 9.7021776, 46.563644 ], + [ 9.701191, 46.5636881 ], + [ 9.7009638, 46.5642031 ], + [ 9.7007978, 46.564484 ], + [ 9.7005952, 46.5647494 ], + [ 9.700169, 46.5653009 ], + [ 9.6998077, 46.5658676 ], + [ 9.6996783, 46.5660294 ], + [ 9.6994322, 46.5662303 ], + [ 9.6988004, 46.5667042 ], + [ 9.6981502, 46.5671458 ], + [ 9.6979633, 46.5673578 ], + [ 9.6977902, 46.5676063 ], + [ 9.6976385, 46.5678013 ], + [ 9.6975004, 46.5678939 ], + [ 9.6973253, 46.5679585 ], + [ 9.697169, 46.5680433 ], + [ 9.6969231, 46.5682483 ], + [ 9.6965491, 46.5685088 ], + [ 9.6959957, 46.5688711 ], + [ 9.6956852, 46.5690896 ], + [ 9.695516, 46.5692971 ], + [ 9.695335, 46.5694925 ], + [ 9.6950735, 46.569755 ], + [ 9.6946469, 46.5701637 ], + [ 9.6944397, 46.5703188 ], + [ 9.6942513, 46.5703388 ], + [ 9.6939707, 46.5702791 ], + [ 9.6937327, 46.5702635 ], + [ 9.6935286, 46.5703368 ], + [ 9.6933241, 46.5705369 ], + [ 9.693111, 46.5706881 ], + [ 9.6927101, 46.5710104 ], + [ 9.6926321, 46.5711346 ], + [ 9.6926729, 46.5712522 ], + [ 9.692803, 46.5714006 ], + [ 9.6927839, 46.5714699 ], + [ 9.6926145, 46.5715538 ], + [ 9.6921669, 46.5717546 ], + [ 9.6920607, 46.5718874 ], + [ 9.6920741, 46.5720713 ], + [ 9.6921897, 46.5721651 ], + [ 9.6922642, 46.5722288 ], + [ 9.6922947, 46.5722973 ], + [ 9.6922424, 46.5723713 ], + [ 9.6921333, 46.5724156 ], + [ 9.6919897, 46.5724531 ], + [ 9.6917284, 46.572466 ], + [ 9.6914785, 46.5724785 ], + [ 9.6912303, 46.5725296 ], + [ 9.6910729, 46.5726287 ], + [ 9.6908624, 46.5727825 ], + [ 9.6907411, 46.5729462 ], + [ 9.6905223, 46.573449600000004 ], + [ 9.6903719, 46.5737174 ], + [ 9.6900415, 46.5742039 ], + [ 9.68979, 46.5745697 ], + [ 9.6893595, 46.5750621 ], + [ 9.6890579, 46.5753597 ], + [ 9.6887822, 46.5755758 ], + [ 9.6885973, 46.5756974 ], + [ 9.6885169, 46.5757471 ], + [ 9.6884628, 46.575818 ], + [ 9.6885499, 46.5759301 ], + [ 9.6885403, 46.5760132 ], + [ 9.6884876, 46.5761192 ], + [ 9.6882717, 46.5762632 ], + [ 9.6879805, 46.5764176 ], + [ 9.687709, 46.5765978 ], + [ 9.6874953, 46.5767943 ], + [ 9.6870668, 46.5772967 ], + [ 9.686825, 46.5774238 ], + [ 9.6866713, 46.5775535 ], + [ 9.686289, 46.57795 ], + [ 9.6859666, 46.5782798 ], + [ 9.6858705, 46.578557 ], + [ 9.6856052, 46.5787283 ], + [ 9.6850782, 46.5791582 ], + [ 9.6846908, 46.5794544 ], + [ 9.6843349, 46.5798 ], + [ 9.6835083, 46.5802818 ], + [ 9.6830229, 46.5806344 ], + [ 9.6829185, 46.5807712 ], + [ 9.6828319, 46.5808875 ], + [ 9.682785299999999, 46.5808843 ], + [ 9.6827211, 46.5811051 ], + [ 9.6826361, 46.5812194 ], + [ 9.6824044, 46.5813365 ], + [ 9.682021, 46.5815523 ], + [ 9.6814207, 46.5818286 ], + [ 9.681004, 46.5821845 ], + [ 9.6807669, 46.5822694 ], + [ 9.6805603, 46.582285 ], + [ 9.6801379, 46.5821887 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "JBG0028", + "country" : "CHE", + "name" : [ + { + "text" : "Eidgenössisches Jagdbanngebiet Piz Ela", + "lang" : "de-CH" + }, + { + "text" : "District franc fédéral Piz Ela", + "lang" : "fr-CH" + }, + { + "text" : "Bandita federale di caccia Piz Ela", + "lang" : "it-CH" + }, + { + "text" : "Federal Game Reserve Piz Ela", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.166272, 46.4801068 ], + [ 6.1662297, 46.4801908 ], + [ 6.1661798, 46.4802522 ], + [ 6.1661215, 46.4803079 ], + [ 6.1659904, 46.4803461 ], + [ 6.1658511, 46.4803843 ], + [ 6.1656626, 46.480422 ], + [ 6.1654497, 46.4804594 ], + [ 6.1653011, 46.480565 ], + [ 6.1652261, 46.4806374 ], + [ 6.1651596, 46.4807156 ], + [ 6.1651001, 46.4808388 ], + [ 6.1650166, 46.480945 ], + [ 6.1649745, 46.4810234 ], + [ 6.1648675, 46.4810899 ], + [ 6.1647112, 46.4811448 ], + [ 6.1645724, 46.4811604 ], + [ 6.1644178, 46.4811252 ], + [ 6.1641168, 46.481083 ], + [ 6.163808, 46.481007 ], + [ 6.1635316, 46.4809595 ], + [ 6.1632713, 46.4809009 ], + [ 6.162904, 46.4809087 ], + [ 6.1625535, 46.4808942 ], + [ 6.1622919, 46.4809256 ], + [ 6.1621678, 46.481009 ], + [ 6.1620679, 46.4811206 ], + [ 6.1619428, 46.4812825 ], + [ 6.1619403, 46.4814232 ], + [ 6.1624208, 46.4823786 ], + [ 6.1625716, 46.4826107 ], + [ 6.1626658, 46.4828086 ], + [ 6.1627207, 46.4829329 ], + [ 6.1627345, 46.4830737 ], + [ 6.1627165999999995, 46.4831748 ], + [ 6.1626741, 46.4832701 ], + [ 6.1626069, 46.4833764 ], + [ 6.1625233999999995, 46.4834826 ], + [ 6.1625048, 46.483595 ], + [ 6.1625107, 46.4837244 ], + [ 6.1625569, 46.4838711 ], + [ 6.1626597, 46.4840691 ], + [ 6.162706, 46.4842102 ], + [ 6.1626548, 46.4843278 ], + [ 6.1625805, 46.4843891 ], + [ 6.1624734, 46.4844444 ], + [ 6.1623425, 46.4844714 ], + [ 6.1622119, 46.4844702 ], + [ 6.1620816, 46.4844353 ], + [ 6.1619115, 46.484383 ], + [ 6.1617336, 46.4842801 ], + [ 6.1616456, 46.4841836 ], + [ 6.1615503, 46.4840476 ], + [ 6.1614547, 46.4839061 ], + [ 6.1613833, 46.4838097 ], + [ 6.1612551, 46.4836736 ], + [ 6.1610376, 46.4835083 ], + [ 6.1605465, 46.4831549 ], + [ 6.1602229, 46.483 ], + [ 6.1600691, 46.482931 ], + [ 6.1598898, 46.482907 ], + [ 6.1596781, 46.4828881 ], + [ 6.1595219, 46.4829541 ], + [ 6.1593488, 46.4830482 ], + [ 6.1591577, 46.4832265 ], + [ 6.1590257, 46.483321 ], + [ 6.1588681, 46.4834603 ], + [ 6.1587446, 46.483521 ], + [ 6.15863, 46.4835312 ], + [ 6.1584913, 46.4835412 ], + [ 6.1584013, 46.4835628 ], + [ 6.1583435, 46.4835792 ], + [ 6.1582607, 46.4836572 ], + [ 6.1581615, 46.4837183 ], + [ 6.1580875, 46.4837682 ], + [ 6.1578569, 46.4838617 ], + [ 6.1576113, 46.4839214 ], + [ 6.1574469, 46.4839874 ], + [ 6.1571684, 46.4840467 ], + [ 6.1568823, 46.4840777 ], + [ 6.1565634, 46.484103 ], + [ 6.1562048, 46.4840885 ], + [ 6.1560492, 46.4841095 ], + [ 6.1558525, 46.4841639 ], + [ 6.1557209, 46.4842246 ], + [ 6.1556127, 46.4843419 ], + [ 6.1554871, 46.4845038 ], + [ 6.1553776, 46.4846942 ], + [ 6.1551349, 46.4850409 ], + [ 6.1550267, 46.485158 ], + [ 6.1549116999999995, 46.485202 ], + [ 6.15478, 46.4852458 ], + [ 6.1546171, 46.485233 ], + [ 6.1544793, 46.4851923 ], + [ 6.1543174, 46.4851177 ], + [ 6.154148, 46.4850204 ], + [ 6.154043, 46.4849519 ], + [ 6.153897, 46.4848943 ], + [ 6.1536774, 46.4848529 ], + [ 6.1535307, 46.4848571 ], + [ 6.1533183, 46.4848551 ], + [ 6.1530811, 46.4849036 ], + [ 6.152836, 46.484907 ], + [ 6.1525667, 46.4848989 ], + [ 6.152241, 46.4848677 ], + [ 6.1518992, 46.4848139 ], + [ 6.1516306, 46.4847777 ], + [ 6.1514271, 46.4847589 ], + [ 6.1513042, 46.4847747 ], + [ 6.1511654, 46.4847959 ], + [ 6.1510339, 46.4848453 ], + [ 6.1509509, 46.4849121 ], + [ 6.1508271, 46.4850009 ], + [ 6.1506218, 46.4850609 ], + [ 6.1504745, 46.4850934 ], + [ 6.150303, 46.4850973 ], + [ 6.1499685, 46.4850773 ], + [ 6.1496107, 46.485029 ], + [ 6.1491056, 46.484973600000004 ], + [ 6.1485603, 46.4849011 ], + [ 6.1481451, 46.4848522 ], + [ 6.1474606, 46.4847783 ], + [ 6.1467527, 46.4846817 ], + [ 6.1465172, 46.4846232 ], + [ 6.1463873, 46.4845769 ], + [ 6.1462988, 46.4845142 ], + [ 6.1461542, 46.4843835 ], + [ 6.1460181, 46.4842359 ], + [ 6.1457603, 46.4840534 ], + [ 6.1454863, 46.4838708 ], + [ 6.145188, 46.4836822 ], + [ 6.1448726, 46.4835274 ], + [ 6.1445735, 46.4833727 ], + [ 6.1443065, 46.483252 ], + [ 6.1441272, 46.4832279 ], + [ 6.1439966, 46.4832435 ], + [ 6.1437992, 46.4833092 ], + [ 6.1434467, 46.483396 ], + [ 6.1430691, 46.4835275 ], + [ 6.1427161, 46.4836536 ], + [ 6.1424624, 46.4836738 ], + [ 6.1422836, 46.4836439 ], + [ 6.1421054999999996, 46.483569 ], + [ 6.1418703, 46.4834824 ], + [ 6.141578, 46.4834009 ], + [ 6.1412617, 46.4833023 ], + [ 6.1408466, 46.4832477 ], + [ 6.1403835, 46.4831252 ], + [ 6.1401477, 46.483095 ], + [ 6.1399437, 46.4830987 ], + [ 6.1397958, 46.4831422 ], + [ 6.1396891, 46.483175 ], + [ 6.1395657, 46.4832301 ], + [ 6.1394247, 46.4833583 ], + [ 6.1393491000000004, 46.4834701 ], + [ 6.1392085, 46.4835813 ], + [ 6.1390681, 46.4836644 ], + [ 6.138871, 46.4837357 ], + [ 6.1385433, 46.4838058 ], + [ 6.1381918, 46.4838307 ], + [ 6.138021, 46.4838065 ], + [ 6.1378423, 46.4837598 ], + [ 6.1376397, 46.4836848 ], + [ 6.1374209, 46.4835927 ], + [ 6.1371386, 46.4834324 ], + [ 6.1368642, 46.4832666 ], + [ 6.1366373, 46.4831745 ], + [ 6.1364752, 46.4831111 ], + [ 6.1362964, 46.4830813 ], + [ 6.1361087, 46.4830851 ], + [ 6.1359854, 46.4831177 ], + [ 6.1358538, 46.4831728 ], + [ 6.1357058, 46.4832332 ], + [ 6.1356316, 46.4832889 ], + [ 6.1355725, 46.4833783 ], + [ 6.1355383, 46.4834624 ], + [ 6.1355287, 46.483541 ], + [ 6.1355344, 46.4836762 ], + [ 6.1356139, 46.4838064 ], + [ 6.135644, 46.4839249 ], + [ 6.1356176, 46.4840428 ], + [ 6.1354772, 46.4841258 ], + [ 6.1353861, 46.4842038 ], + [ 6.1352306, 46.4842249 ], + [ 6.1350757, 46.4842178 ], + [ 6.1349047, 46.4841992 ], + [ 6.1347421, 46.4841583 ], + [ 6.1345233, 46.4840831 ], + [ 6.1344107, 46.483992 ], + [ 6.1342422, 46.4838385 ], + [ 6.1340582, 46.4836398 ], + [ 6.1338741, 46.4834411 ], + [ 6.1337064, 46.483237 ], + [ 6.1335301, 46.4830722 ], + [ 6.1334021, 46.4829471 ], + [ 6.1332408, 46.4828331 ], + [ 6.1329985, 46.4827012 ], + [ 6.1328132, 46.4825701 ], + [ 6.1326673, 46.4825124 ], + [ 6.1324884, 46.4824883 ], + [ 6.1323172, 46.482481 ], + [ 6.1320969, 46.4824676 ], + [ 6.1319103, 46.4824265 ], + [ 6.1317733, 46.4823183 ], + [ 6.1315736, 46.4820913 ], + [ 6.1311476, 46.4817497 ], + [ 6.1306243, 46.4813564 ], + [ 6.1300917, 46.4810475 ], + [ 6.1300023, 46.4810072 ], + [ 6.1296858, 46.4809312 ], + [ 6.1291741, 46.4808025 ], + [ 6.1288246, 46.4807147 ], + [ 6.1286134, 46.480679 ], + [ 6.1284174, 46.4806715 ], + [ 6.1282782, 46.4807039 ], + [ 6.1281705, 46.4807817 ], + [ 6.1280628, 46.4808763 ], + [ 6.1279546, 46.4809936 ], + [ 6.1279447, 46.4810834 ], + [ 6.1279845, 46.4811345 ], + [ 6.1280407, 46.4811856 ], + [ 6.1280728, 46.4812197 ], + [ 6.1281607, 46.4813218 ], + [ 6.1282163, 46.481412399999996 ], + [ 6.1282305, 46.4815138 ], + [ 6.1281798, 46.4816091 ], + [ 6.1280802, 46.4817038 ], + [ 6.1278911, 46.4817639 ], + [ 6.1277597, 46.4818133 ], + [ 6.1275965, 46.4818287 ], + [ 6.1273113, 46.4817922 ], + [ 6.12697, 46.4817157 ], + [ 6.1266047, 46.4816222 ], + [ 6.1258159, 46.4814741 ], + [ 6.125563, 46.4814605 ], + [ 6.1253997, 46.4814813 ], + [ 6.1253337, 46.4815201 ], + [ 6.1253, 46.4815817 ], + [ 6.1252491, 46.4816826 ], + [ 6.1251889, 46.4818339 ], + [ 6.1251299, 46.4819516 ], + [ 6.1250713, 46.4820185 ], + [ 6.1249893, 46.4820402 ], + [ 6.1248666, 46.4820503 ], + [ 6.1247537, 46.4819873 ], + [ 6.1246252, 46.4818848 ], + [ 6.1244964, 46.4817879 ], + [ 6.1244086, 46.4816858 ], + [ 6.1242788, 46.481634 ], + [ 6.1241647, 46.4816384 ], + [ 6.1240504, 46.4816374 ], + [ 6.1238961, 46.4816021 ], + [ 6.1237258, 46.4815273 ], + [ 6.1236367, 46.4815096 ], + [ 6.1235227, 46.4814917 ], + [ 6.1234167, 46.4814851 ], + [ 6.1230254, 46.4814588 ], + [ 6.1226993, 46.4814444 ], + [ 6.1223576, 46.4813849 ], + [ 6.1220903, 46.4812979 ], + [ 6.1219118, 46.481223 ], + [ 6.121806, 46.4812221 ], + [ 6.1216915, 46.4812267 ], + [ 6.1216168, 46.4813047 ], + [ 6.1215499, 46.4813941 ], + [ 6.1214825, 46.4815059 ], + [ 6.1214143, 46.481646 ], + [ 6.1212505, 46.4816895 ], + [ 6.1126472, 46.4831321 ], + [ 6.1129513, 46.4834445 ], + [ 6.1131032, 46.4836092 ], + [ 6.1132145, 46.4837678 ], + [ 6.1133172, 46.4839432 ], + [ 6.1134282, 46.4841132 ], + [ 6.1135391, 46.4843055 ], + [ 6.113674, 46.4844982 ], + [ 6.1137455, 46.4846058 ], + [ 6.1138653, 46.4847477 ], + [ 6.1140175, 46.4848841 ], + [ 6.1141855, 46.4850715 ], + [ 6.1143935, 46.4853042 ], + [ 6.1146088, 46.4855707 ], + [ 6.1147912, 46.485837 ], + [ 6.1150041, 46.4862329 ], + [ 6.1151225, 46.4864535 ], + [ 6.1152566, 46.4866968 ], + [ 6.115366, 46.486951 ], + [ 6.1155164, 46.4872057 ], + [ 6.1156498, 46.4874771 ], + [ 6.1157518, 46.4877033 ], + [ 6.1159019, 46.4879579 ], + [ 6.1160762, 46.4882353 ], + [ 6.1161783, 46.4884557 ], + [ 6.1163054, 46.4886371 ], + [ 6.1164331, 46.4887903 ], + [ 6.1165604, 46.4889603 ], + [ 6.116705, 46.489091 ], + [ 6.1168407, 46.4892499 ], + [ 6.117058, 46.489404 ], + [ 6.1172023, 46.489546 ], + [ 6.1173702, 46.489739 ], + [ 6.1174411, 46.489869 ], + [ 6.1175774, 46.4900054 ], + [ 6.1176817, 46.4900852 ], + [ 6.1178889, 46.4903516 ], + [ 6.1180236, 46.4905893 ], + [ 6.1180935, 46.4907757 ], + [ 6.1181551, 46.4909732 ], + [ 6.1181438, 46.4911363 ], + [ 6.1181654, 46.4912828 ], + [ 6.1181693, 46.491508 ], + [ 6.1181754, 46.4916262 ], + [ 6.1182627, 46.4917509 ], + [ 6.1183746, 46.4918701 ], + [ 6.1184702, 46.4920061 ], + [ 6.1185419, 46.4921024 ], + [ 6.1185719, 46.4922434 ], + [ 6.118624, 46.4924914 ], + [ 6.1186681, 46.4927564 ], + [ 6.1187286, 46.4930101 ], + [ 6.1188204, 46.4933543 ], + [ 6.1189026, 46.4937547 ], + [ 6.1189522, 46.4941434 ], + [ 6.1190758, 46.4945161 ], + [ 6.1191772, 46.4947645 ], + [ 6.1192949, 46.4950302 ], + [ 6.1193969, 46.4952394 ], + [ 6.1195078, 46.4954318 ], + [ 6.1196189, 46.4956016 ], + [ 6.1197297, 46.4957828 ], + [ 6.1198655, 46.4959417 ], + [ 6.1199448, 46.4960606 ], + [ 6.120048, 46.4962191 ], + [ 6.1201431, 46.4963608 ], + [ 6.1202622, 46.4965532 ], + [ 6.1203801, 46.4967907 ], + [ 6.1204736, 46.4970166 ], + [ 6.1205677, 46.4972314 ], + [ 6.1206376, 46.4974178 ], + [ 6.120749, 46.4975595 ], + [ 6.1208849, 46.4977296 ], + [ 6.1210204, 46.4978997 ], + [ 6.121302, 46.4981219 ], + [ 6.1215743, 46.4983947 ], + [ 6.1218056, 46.4986782 ], + [ 6.1220842, 46.4990579 ], + [ 6.1224118, 46.4994493 ], + [ 6.1224653, 46.4996411 ], + [ 6.1224626, 46.4997705 ], + [ 6.122492, 46.4999508 ], + [ 6.1226271, 46.5001379 ], + [ 6.1227316, 46.5002459 ], + [ 6.122892, 46.5003768 ], + [ 6.1229064, 46.5004894 ], + [ 6.1228727, 46.500551 ], + [ 6.1228459, 46.5006689 ], + [ 6.1227521, 46.5008932 ], + [ 6.1226578, 46.5011173 ], + [ 6.1225821, 46.5012348 ], + [ 6.1224979, 46.5013803 ], + [ 6.1224232, 46.5014584 ], + [ 6.1222668, 46.5015243 ], + [ 6.122175, 46.5016192 ], + [ 6.1220996, 46.5017366 ], + [ 6.1220077, 46.5018483 ], + [ 6.121949, 46.5019209 ], + [ 6.1217857, 46.5019194 ], + [ 6.1216553, 46.5019068 ], + [ 6.1213216, 46.5018699 ], + [ 6.1210365, 46.5018221 ], + [ 6.1208823, 46.5017813 ], + [ 6.1208241, 46.5018313 ], + [ 6.1207656, 46.5019097 ], + [ 6.1206982, 46.5020215 ], + [ 6.1206057, 46.5021725 ], + [ 6.1204807, 46.5023064 ], + [ 6.1203468, 46.502474 ], + [ 6.1194137, 46.5021837 ], + [ 6.1192026, 46.5021085 ], + [ 6.1190398, 46.5020901 ], + [ 6.1188841, 46.502128 ], + [ 6.1187769, 46.5021833 ], + [ 6.1186865, 46.5022161 ], + [ 6.1185477, 46.5022148 ], + [ 6.1183846, 46.5022076 ], + [ 6.1182458, 46.5022064 ], + [ 6.1180344, 46.5021762 ], + [ 6.11788, 46.5021297 ], + [ 6.1177096, 46.5020718 ], + [ 6.1175153, 46.5019911 ], + [ 6.1173617, 46.5019108 ], + [ 6.1171674, 46.5018301 ], + [ 6.1169963, 46.5018004 ], + [ 6.1168493, 46.5018215 ], + [ 6.1166442, 46.501864499999996 ], + [ 6.116496, 46.5019307 ], + [ 6.1162497, 46.5019959 ], + [ 6.1160212, 46.5019992 ], + [ 6.1158507, 46.5019639 ], + [ 6.1156385, 46.5019506 ], + [ 6.1154832, 46.5019547 ], + [ 6.1153677, 46.5020324 ], + [ 6.1152594, 46.5021326 ], + [ 6.1150864, 46.5022322 ], + [ 6.1149804, 46.50222 ], + [ 6.1149138, 46.5022981 ], + [ 6.1148384, 46.5023819 ], + [ 6.1147396, 46.5024429 ], + [ 6.1146233, 46.5025374 ], + [ 6.114467, 46.5026034 ], + [ 6.1142776, 46.502686 ], + [ 6.1142023, 46.5027866 ], + [ 6.1141756, 46.5029102 ], + [ 6.1141327, 46.5030166 ], + [ 6.1141627, 46.5031576 ], + [ 6.114077, 46.5033819 ], + [ 6.1139671, 46.5035777 ], + [ 6.1138248, 46.5037677 ], + [ 6.1137174, 46.5038342 ], + [ 6.113569, 46.5039059 ], + [ 6.1133633, 46.5039939 ], + [ 6.113133, 46.5040874 ], + [ 6.113058, 46.5041711 ], + [ 6.1130066, 46.5042944 ], + [ 6.11288, 46.5045239 ], + [ 6.1126411, 46.5046343 ], + [ 6.1125266, 46.5046387 ], + [ 6.1124794, 46.5045539 ], + [ 6.1124641, 46.5044805 ], + [ 6.1124161, 46.5044295 ], + [ 6.1119638, 46.5041943 ], + [ 6.1117126, 46.5040906 ], + [ 6.1114368, 46.503998 ], + [ 6.1112503, 46.5039174 ], + [ 6.111088, 46.5038764 ], + [ 6.1109911, 46.503808 ], + [ 6.1108705, 46.503728100000004 ], + [ 6.1107005, 46.5036364 ], + [ 6.1105468, 46.5035786 ], + [ 6.1103185, 46.5035595 ], + [ 6.1100911, 46.503501 ], + [ 6.1099208, 46.5034375 ], + [ 6.1098083, 46.5033408 ], + [ 6.10968, 46.5032101 ], + [ 6.1095347, 46.5031411 ], + [ 6.1093538, 46.5031956 ], + [ 6.1093275, 46.5032063 ], + [ 6.1099412, 46.5041653 ], + [ 6.1125449, 46.5095759 ], + [ 6.1147122, 46.5115356 ], + [ 6.1160738, 46.512874 ], + [ 6.1171973, 46.5138318 ], + [ 6.1206404, 46.5169307 ], + [ 6.1253944, 46.5208095 ], + [ 6.1289746, 46.5236669 ], + [ 6.13524, 46.5287053 ], + [ 6.1379611, 46.5310127 ], + [ 6.1437355, 46.5277678 ], + [ 6.1473065, 46.5310744 ], + [ 6.1522187, 46.5355565 ], + [ 6.1534921, 46.5368305 ], + [ 6.1537626, 46.536867 ], + [ 6.1539247, 46.5369361 ], + [ 6.1541525, 46.5369888 ], + [ 6.1544211, 46.5370531 ], + [ 6.1546735, 46.5370949 ], + [ 6.1550072, 46.537143 ], + [ 6.1553903, 46.5371915 ], + [ 6.155602, 46.5372329 ], + [ 6.1557238, 46.5372846 ], + [ 6.1558364, 46.5373645 ], + [ 6.1559736, 46.5374557 ], + [ 6.1561435, 46.5375586 ], + [ 6.1563375, 46.5376561 ], + [ 6.1565319, 46.537759199999996 ], + [ 6.1568323, 46.5378576 ], + [ 6.1571165, 46.5379502 ], + [ 6.1574173, 46.5380318 ], + [ 6.1576609, 46.5381185 ], + [ 6.1578881, 46.5381937 ], + [ 6.1581151, 46.5382914 ], + [ 6.158277, 46.5383717 ], + [ 6.1584473, 46.5384408 ], + [ 6.1586422, 46.5385046 ], + [ 6.1589348, 46.538586 ], + [ 6.1591218, 46.5386383 ], + [ 6.1593489, 46.5387192 ], + [ 6.1596075, 46.5388791 ], + [ 6.1598175, 46.5390105 ], + [ 6.1601485, 46.5392274 ], + [ 6.1605607, 46.5394562 ], + [ 6.1607632, 46.5395594 ], + [ 6.1609409, 46.5396792 ], + [ 6.1611752, 46.5398164 ], + [ 6.1613607, 46.5399475 ], + [ 6.1615783, 46.5401015 ], + [ 6.161707, 46.5402265 ], + [ 6.1618917, 46.5404083 ], + [ 6.1620371, 46.5404996 ], + [ 6.1621658, 46.5406021 ], + [ 6.1623187999999995, 46.5407329 ], + [ 6.162415, 46.5408182 ], + [ 6.1624874, 46.5408921 ], + [ 6.1626321, 46.5410284 ], + [ 6.1627849, 46.541148 ], + [ 6.1629546, 46.5412621 ], + [ 6.1631, 46.5413478 ], + [ 6.1632855, 46.5414846 ], + [ 6.1634641, 46.5415481 ], + [ 6.1636257, 46.5416396 ], + [ 6.1638036, 46.5417313 ], + [ 6.1640232, 46.541784 ], + [ 6.1642908, 46.5419103 ], + [ 6.1645017, 46.5419853 ], + [ 6.1646958, 46.5420828 ], + [ 6.1648986, 46.5421746 ], + [ 6.165117, 46.5422947 ], + [ 6.1653433, 46.5424263 ], + [ 6.1655299, 46.5424955 ], + [ 6.1657733, 46.5425934 ], + [ 6.1659188, 46.5426792 ], + [ 6.1660723, 46.5427706 ], + [ 6.1662493, 46.5429185 ], + [ 6.166459, 46.5430836 ], + [ 6.1667009, 46.5432434 ], + [ 6.1668389, 46.5433009 ], + [ 6.1669851, 46.5433586 ], + [ 6.1671956, 46.5434505 ], + [ 6.1673093, 46.5435022 ], + [ 6.167487, 46.5436051 ], + [ 6.1676652, 46.5437023 ], + [ 6.1678677, 46.5437886 ], + [ 6.1679565, 46.5438401 ], + [ 6.1681024, 46.5439089 ], + [ 6.1683132, 46.5440066 ], + [ 6.1685472, 46.5441606 ], + [ 6.1687817, 46.544309 ], + [ 6.1690563, 46.544480300000004 ], + [ 6.1693227, 46.5446403 ], + [ 6.1695577, 46.5447494 ], + [ 6.1697195, 46.5448353 ], + [ 6.1698479, 46.5449715 ], + [ 6.1699355, 46.5451131 ], + [ 6.1699903, 46.5452428 ], + [ 6.1700868, 46.5453169 ], + [ 6.1702247, 46.5453801 ], + [ 6.1703130999999996, 46.5454485 ], + [ 6.1704672, 46.5455342 ], + [ 6.1705636, 46.5456083 ], + [ 6.1706852, 46.5456713 ], + [ 6.1708149, 46.5457175 ], + [ 6.1709692, 46.5457752 ], + [ 6.1711317, 46.5458329 ], + [ 6.1712613, 46.5458847 ], + [ 6.1715135, 46.5459546 ], + [ 6.1717485, 46.5460636 ], + [ 6.1719756, 46.5461444 ], + [ 6.172357, 46.5462829 ], + [ 6.1726087, 46.5463753 ], + [ 6.1728439999999996, 46.5464731 ], + [ 6.1729731, 46.5465643 ], + [ 6.1731265, 46.5466614 ], + [ 6.173247, 46.5467694 ], + [ 6.1733924, 46.5468607 ], + [ 6.1735462, 46.5469409 ], + [ 6.1736753, 46.547049 ], + [ 6.173828, 46.5471741 ], + [ 6.1739896, 46.5472882 ], + [ 6.1742062, 46.5475039 ], + [ 6.174391, 46.5476858 ], + [ 6.1745830999999995, 46.5479069 ], + [ 6.1747996, 46.5481283 ], + [ 6.1750247, 46.5483274 ], + [ 6.1752182, 46.5484867 ], + [ 6.175372, 46.5485668 ], + [ 6.1766994, 46.5492597 ], + [ 6.1769453, 46.5473655 ], + [ 6.1770935, 46.5463934 ], + [ 6.1771621, 46.546214 ], + [ 6.1772863, 46.5461137 ], + [ 6.1774264, 46.5460475 ], + [ 6.1775668, 46.5459643 ], + [ 6.1777391, 46.5459153 ], + [ 6.1779441, 46.5458777 ], + [ 6.1781892, 46.5458687 ], + [ 6.1785563, 46.5459058 ], + [ 6.1788827, 46.5459256 ], + [ 6.1791599, 46.5459562 ], + [ 6.1794782, 46.5459703 ], + [ 6.1800006, 46.5460032 ], + [ 6.1802452, 46.5460335 ], + [ 6.1804413, 46.5460296 ], + [ 6.1806128, 46.5460312 ], + [ 6.1808093, 46.5459936 ], + [ 6.1810306, 46.5459562 ], + [ 6.1812688, 46.5458964 ], + [ 6.1816216, 46.5457928 ], + [ 6.1817779, 46.5457491 ], + [ 6.1819498, 46.5457168 ], + [ 6.182121, 46.5457465 ], + [ 6.1822098, 46.5458036 ], + [ 6.1823229, 46.5458778 ], + [ 6.1824518, 46.5459802 ], + [ 6.1826539, 46.5460834 ], + [ 6.18293, 46.5461814 ], + [ 6.1831738, 46.5462624 ], + [ 6.1834427, 46.5462986 ], + [ 6.1836457, 46.546368 ], + [ 6.1838, 46.5464257 ], + [ 6.1839865, 46.5465004 ], + [ 6.1842217999999995, 46.5465983 ], + [ 6.1845535, 46.5467757 ], + [ 6.1847806, 46.5468734 ], + [ 6.1849675, 46.5469313 ], + [ 6.1851465, 46.5469611 ], + [ 6.1853672, 46.5469687 ], + [ 6.1857016, 46.5469942 ], + [ 6.1859466, 46.5470076 ], + [ 6.1861502999999995, 46.5470263 ], + [ 6.1864187, 46.5471019 ], + [ 6.1867197, 46.5471778 ], + [ 6.1869797, 46.5472644 ], + [ 6.1873285, 46.5473914 ], + [ 6.1877184, 46.5475187 ], + [ 6.1880183, 46.5476564 ], + [ 6.188237, 46.547771 ], + [ 6.188432, 46.5478289 ], + [ 6.1886443, 46.5478477 ], + [ 6.1887995, 46.5478323 ], + [ 6.188931, 46.5478053 ], + [ 6.1891032, 46.5477562 ], + [ 6.1893165, 46.5476961 ], + [ 6.1894975, 46.5476415 ], + [ 6.1897026, 46.5475814 ], + [ 6.1898831, 46.5475493 ], + [ 6.1901278, 46.5475571 ], + [ 6.1903803, 46.5475987 ], + [ 6.1905751, 46.5476681 ], + [ 6.1909337, 46.5477388 ], + [ 6.1913071, 46.5478546 ], + [ 6.1914304, 46.5478276 ], + [ 6.1915044, 46.5478 ], + [ 6.1915459, 46.5477498 ], + [ 6.1915473, 46.547671 ], + [ 6.1915323, 46.5475977 ], + [ 6.1914451, 46.5474562 ], + [ 6.1913246, 46.5473258 ], + [ 6.1911408, 46.547099 ], + [ 6.1909484, 46.5468892 ], + [ 6.1905708, 46.5465143 ], + [ 6.190281, 46.5462698 ], + [ 6.1900724, 46.5460541 ], + [ 6.1898882, 46.5458443 ], + [ 6.1897362, 46.5456684 ], + [ 6.1895678, 46.5454812 ], + [ 6.1894319, 46.5453113 ], + [ 6.1892473, 46.5451182 ], + [ 6.1890702, 46.5449703 ], + [ 6.1888525, 46.5448164 ], + [ 6.1887313, 46.5447366 ], + [ 6.1885697, 46.5446227 ], + [ 6.1884166, 46.5445143 ], + [ 6.1882722, 46.5443612 ], + [ 6.1882005, 46.5442536 ], + [ 6.1880711, 46.5441792 ], + [ 6.1879167, 46.5441215 ], + [ 6.1877629, 46.5440414 ], + [ 6.1876094, 46.5439669 ], + [ 6.1874471, 46.5439035 ], + [ 6.1872611, 46.5437893 ], + [ 6.1871974, 46.5436875 ], + [ 6.1870926, 46.5436022 ], + [ 6.1868989, 46.5434878 ], + [ 6.1867615, 46.5434023 ], + [ 6.1865836, 46.5432881 ], + [ 6.1856218, 46.5426999 ], + [ 6.1854601, 46.5426084 ], + [ 6.1853392, 46.5425173 ], + [ 6.1851946, 46.5423752 ], + [ 6.1851232, 46.5422565 ], + [ 6.1849863, 46.5421314 ], + [ 6.184793, 46.5420003 ], + [ 6.1828823, 46.5400755 ], + [ 6.1827214, 46.5399503 ], + [ 6.1826658, 46.5398541 ], + [ 6.1826919, 46.5397643 ], + [ 6.1827108, 46.5396181 ], + [ 6.1826721, 46.539494 ], + [ 6.1826568, 46.539432 ], + [ 6.1825192, 46.5393575 ], + [ 6.1823659, 46.5392605 ], + [ 6.1823102, 46.5391643 ], + [ 6.1823124, 46.5390519 ], + [ 6.1823404, 46.5388495 ], + [ 6.1822855, 46.5387195 ], + [ 6.1822299, 46.5386235 ], + [ 6.1820289, 46.5384528 ], + [ 6.1818926, 46.5383053 ], + [ 6.1817561, 46.5381858 ], + [ 6.1817163, 46.5381066 ], + [ 6.181653, 46.5379936 ], + [ 6.181655, 46.5378867 ], + [ 6.1816157, 46.5377907 ], + [ 6.1815192, 46.5376998 ], + [ 6.1813904, 46.5375973 ], + [ 6.1813022, 46.5375008 ], + [ 6.1811821, 46.5373759 ], + [ 6.1811191, 46.5372459 ], + [ 6.1810566, 46.5370765 ], + [ 6.1810447, 46.5368345 ], + [ 6.1810833, 46.5364916 ], + [ 6.1811215, 46.5361769 ], + [ 6.1811755, 46.5358903 ], + [ 6.1812281, 46.5356938 ], + [ 6.1812886, 46.5355087 ], + [ 6.1813396, 46.5353853 ], + [ 6.1812762, 46.5352722 ], + [ 6.1811638, 46.5351642 ], + [ 6.1810026, 46.535039 ], + [ 6.180776, 46.5349188 ], + [ 6.1806891, 46.5347661 ], + [ 6.1806506, 46.5346363 ], + [ 6.18067, 46.5344508 ], + [ 6.1807051, 46.5343049 ], + [ 6.1808218, 46.5341764 ], + [ 6.180898, 46.5340364 ], + [ 6.1809823999999995, 46.533874 ], + [ 6.1810172, 46.5337618 ], + [ 6.1809779, 46.5336657 ], + [ 6.180906, 46.5335695 ], + [ 6.1807207, 46.5334272 ], + [ 6.1805524, 46.5332511 ], + [ 6.1804, 46.5330979 ], + [ 6.1803288, 46.5329509 ], + [ 6.180315, 46.5328269 ], + [ 6.1803657, 46.5327149 ], + [ 6.1804412, 46.532603 ], + [ 6.1805897, 46.5325256 ], + [ 6.1807955, 46.5324317 ], + [ 6.180895, 46.5323595 ], + [ 6.1809046, 46.532264 ], + [ 6.1809305, 46.5321798 ], + [ 6.1808919, 46.5320556 ], + [ 6.1809108, 46.5319264 ], + [ 6.1809452, 46.531814 ], + [ 6.1810039, 46.5317414 ], + [ 6.1811932, 46.5316588 ], + [ 6.1814481, 46.5315598 ], + [ 6.1817351, 46.5314779 ], + [ 6.1819005, 46.5313725 ], + [ 6.1819585, 46.531333599999996 ], + [ 6.1820983, 46.5312787 ], + [ 6.1822863, 46.5312522 ], + [ 6.1824339, 46.5312253 ], + [ 6.1826377, 46.5312384 ], + [ 6.1827846, 46.5312454 ], + [ 6.1828992, 46.5312407 ], + [ 6.1829979, 46.5312023 ], + [ 6.1831789, 46.5311252 ], + [ 6.183369, 46.5309918 ], + [ 6.1834939, 46.5308579 ], + [ 6.1836029, 46.5307069 ], + [ 6.1837277, 46.5305618 ], + [ 6.1838619, 46.5303773 ], + [ 6.1839299, 46.5302203 ], + [ 6.1840148, 46.5300353 ], + [ 6.1841229, 46.5299237 ], + [ 6.1842138, 46.5298513 ], + [ 6.1843879, 46.5297066 ], + [ 6.1845291, 46.5295728 ], + [ 6.1847677, 46.5294906 ], + [ 6.1849401, 46.5294302 ], + [ 6.185162, 46.5293479 ], + [ 6.185417, 46.5292431 ], + [ 6.1856481, 46.5290989 ], + [ 6.1858551, 46.5289545 ], + [ 6.1900635, 46.5283338 ], + [ 6.1903345, 46.5282405 ], + [ 6.1904828, 46.5281687 ], + [ 6.1906147, 46.5281023 ], + [ 6.1908115, 46.5280647 ], + [ 6.190951, 46.5280209 ], + [ 6.1910578, 46.5279825 ], + [ 6.191214, 46.5279219 ], + [ 6.1913787, 46.5278447 ], + [ 6.1915185, 46.5277896 ], + [ 6.1916995, 46.5277124 ], + [ 6.1918152, 46.5276403 ], + [ 6.1920542, 46.5275243 ], + [ 6.1922109, 46.5274244 ], + [ 6.1923025, 46.5273183 ], + [ 6.1924926, 46.5272019 ], + [ 6.1926985, 46.5270855 ], + [ 6.1932004, 46.5268873 ], + [ 6.1932838, 46.5267869 ], + [ 6.1933347, 46.5266803 ], + [ 6.1934517, 46.5265182 ], + [ 6.1935935, 46.5263563 ], + [ 6.1936927, 46.5262784 ], + [ 6.1938168, 46.5261951 ], + [ 6.1940395, 46.5260564 ], + [ 6.1942628, 46.5258951 ], + [ 6.1944786, 46.5257057 ], + [ 6.1946123, 46.5255212 ], + [ 6.1946793, 46.5254262 ], + [ 6.1947066, 46.5252632 ], + [ 6.1947086, 46.5251451 ], + [ 6.194703, 46.5250156 ], + [ 6.1946642, 46.5248971 ], + [ 6.1946746, 46.5247621 ], + [ 6.194709, 46.5246667 ], + [ 6.1947105, 46.5245654 ], + [ 6.1947212, 46.5244193 ], + [ 6.1947405, 46.5242506 ], + [ 6.1947432, 46.5240986 ], + [ 6.1947067, 46.5238621 ], + [ 6.1947408, 46.5237611 ], + [ 6.1948001, 46.5236434 ], + [ 6.1948679, 46.523492 ], + [ 6.194927, 46.5233857 ], + [ 6.1949714, 46.5231891 ], + [ 6.195023, 46.5230377 ], + [ 6.1950026, 46.5228068 ], + [ 6.1950059, 46.5226097 ], + [ 6.1950332, 46.5224525 ], + [ 6.1951174, 46.5222957 ], + [ 6.1952517, 46.5220887 ], + [ 6.1953934, 46.5219323 ], + [ 6.1955502, 46.5218268 ], + [ 6.1957556, 46.5217499 ], + [ 6.1959601, 46.5217292 ], + [ 6.1962056, 46.5216976 ], + [ 6.1964677, 46.5216549 ], + [ 6.1966815, 46.5215836 ], + [ 6.1969196, 46.5215013 ], + [ 6.1971094, 46.5213793 ], + [ 6.1972746, 46.5212794 ], + [ 6.1973832, 46.5211452 ], + [ 6.1974832, 46.5210111 ], + [ 6.1975186, 46.5208708 ], + [ 6.1975202, 46.5207638 ], + [ 6.1975148, 46.5206118 ], + [ 6.1974921, 46.520516 ], + [ 6.1975183, 46.5204037 ], + [ 6.1976855, 46.5201801 ], + [ 6.1981874, 46.5204434 ], + [ 6.1983742, 46.5205013 ], + [ 6.1985449, 46.5205366 ], + [ 6.1987007, 46.5205098 ], + [ 6.1989384, 46.520444499999996 ], + [ 6.1991037, 46.520339 ], + [ 6.1990804, 46.5202543 ], + [ 6.1990757, 46.5200685 ], + [ 6.1990543, 46.5198827 ], + [ 6.1990651, 46.5197309 ], + [ 6.1991482, 46.5196584 ], + [ 6.1992304, 46.5196086 ], + [ 6.1993699, 46.5195816 ], + [ 6.1995335, 46.519555 ], + [ 6.1997801, 46.5194727 ], + [ 6.2001675, 46.5192567 ], + [ 6.1996835, 46.5189091 ], + [ 6.1994007, 46.5187377 ], + [ 6.1991586, 46.5185668 ], + [ 6.1987779, 46.5184003 ], + [ 6.1984543, 46.5182343 ], + [ 6.1981869, 46.5181025 ], + [ 6.1981104, 46.5180655 ], + [ 6.1978062, 46.5179191 ], + [ 6.1973942, 46.5176846 ], + [ 6.1970859, 46.5175581 ], + [ 6.1968506, 46.5174828 ], + [ 6.1964845, 46.517412 ], + [ 6.1961509, 46.5173416 ], + [ 6.1959802, 46.5172894 ], + [ 6.1958184, 46.517209199999996 ], + [ 6.1956236, 46.517123 ], + [ 6.1953582, 46.5169069 ], + [ 6.1950678, 46.5166961 ], + [ 6.1948017, 46.516508 ], + [ 6.1944794, 46.5162632 ], + [ 6.1941889, 46.516058 ], + [ 6.1939317, 46.5158362 ], + [ 6.1937238, 46.5155812 ], + [ 6.1934994, 46.5153316 ], + [ 6.1932767, 46.5149921 ], + [ 6.1929184, 46.5144598 ], + [ 6.1926415, 46.5139621 ], + [ 6.1925546, 46.5137926 ], + [ 6.1924659, 46.5137187 ], + [ 6.1923529, 46.5136558 ], + [ 6.1921918, 46.5135249 ], + [ 6.1921035, 46.5134509 ], + [ 6.1920239, 46.5133377 ], + [ 6.1919527, 46.5131907 ], + [ 6.1918726, 46.5131 ], + [ 6.1918011, 46.5129867 ], + [ 6.1916806, 46.5128789 ], + [ 6.1914148, 46.5126794 ], + [ 6.1911337, 46.5124012 ], + [ 6.1909007, 46.5121909 ], + [ 6.190676, 46.5119752 ], + [ 6.190313, 46.5117187 ], + [ 6.1897648, 46.5113142 ], + [ 6.1894981, 46.5111542 ], + [ 6.189394, 46.5110407 ], + [ 6.1893466, 46.5109448 ], + [ 6.1892668, 46.5108371 ], + [ 6.1891459, 46.5107459 ], + [ 6.1889033, 46.5106199 ], + [ 6.1883631, 46.5102437 ], + [ 6.1879202, 46.5098853 ], + [ 6.1877027, 46.5097257 ], + [ 6.1875334, 46.5096005 ], + [ 6.1874134, 46.5094531 ], + [ 6.1872945, 46.5092607 ], + [ 6.1871582, 46.5091132 ], + [ 6.186997, 46.508988 ], + [ 6.1868522, 46.508874 ], + [ 6.1867233, 46.5087773 ], + [ 6.1865863, 46.5086635 ], + [ 6.1864574, 46.5085666 ], + [ 6.1863048, 46.5084246 ], + [ 6.1861187, 46.5083329 ], + [ 6.1859245, 46.5082467 ], + [ 6.1857705, 46.5081778 ], + [ 6.1856089, 46.5080863 ], + [ 6.1854799, 46.5079783 ], + [ 6.1853437, 46.5078308 ], + [ 6.1833418, 46.5060796 ], + [ 6.1829328, 46.5056652 ], + [ 6.1824492, 46.5053119 ], + [ 6.1822085, 46.5050677 ], + [ 6.1819203, 46.5047669 ], + [ 6.1817596, 46.5046191 ], + [ 6.1815742, 46.5044655 ], + [ 6.1813477, 46.504351 ], + [ 6.1811448, 46.5042873 ], + [ 6.1809018, 46.504195 ], + [ 6.1806671, 46.5040804 ], + [ 6.1804804, 46.5040168 ], + [ 6.1803592, 46.5039425 ], + [ 6.1801908, 46.503761 ], + [ 6.1800641, 46.5035346 ], + [ 6.179961, 46.5033818 ], + [ 6.1798324000000004, 46.5032568 ], + [ 6.179663, 46.503154 ], + [ 6.179477, 46.5030454 ], + [ 6.179113, 46.5028677 ], + [ 6.17849, 46.5025413 ], + [ 6.1782962, 46.5024327 ], + [ 6.1781846, 46.5022797 ], + [ 6.1780648, 46.5021267 ], + [ 6.1779458, 46.501939899999996 ], + [ 6.177851, 46.5017421 ], + [ 6.1778137, 46.5015448 ], + [ 6.1778002, 46.5013871 ], + [ 6.1777714, 46.5011731 ], + [ 6.1778396, 46.5010105 ], + [ 6.1779326, 46.5008256 ], + [ 6.178066, 46.5006748 ], + [ 6.1782411, 46.5004627 ], + [ 6.1784156, 46.5002954 ], + [ 6.1786063, 46.500134 ], + [ 6.1787727, 46.4999441 ], + [ 6.1790218, 46.4997044 ], + [ 6.1793118, 46.4994537 ], + [ 6.1800313, 46.4989257 ], + [ 6.1801637, 46.4988311 ], + [ 6.1802786, 46.4987928 ], + [ 6.1808346, 46.4987472 ], + [ 6.1813334, 46.4986898 ], + [ 6.1816519, 46.4986702 ], + [ 6.1819874, 46.4986337 ], + [ 6.1821599, 46.4985677 ], + [ 6.1823333, 46.4984455 ], + [ 6.1847332999999995, 46.4965821 ], + [ 6.1853527, 46.4961711 ], + [ 6.186591, 46.4953662 ], + [ 6.1868793, 46.4952225 ], + [ 6.1871348, 46.495073 ], + [ 6.187332, 46.4949958 ], + [ 6.1899614, 46.4939728 ], + [ 6.1902415, 46.4938289 ], + [ 6.1904398, 46.4937068 ], + [ 6.1905149, 46.4935894 ], + [ 6.1905004, 46.4934936 ], + [ 6.1904777, 46.4934033 ], + [ 6.1904311, 46.493251 ], + [ 6.1903607, 46.4930759 ], + [ 6.1902579, 46.4928894 ], + [ 6.1901943, 46.4927875 ], + [ 6.1900488, 46.4927074 ], + [ 6.1898712, 46.4926045 ], + [ 6.189734, 46.4925188 ], + [ 6.1895966, 46.4924389 ], + [ 6.1895335, 46.4923145 ], + [ 6.18956, 46.4921909 ], + [ 6.1896683, 46.492085 ], + [ 6.1898079, 46.4920132 ], + [ 6.1899971, 46.4919472 ], + [ 6.1901851, 46.4919151 ], + [ 6.1902355, 46.4918312 ], + [ 6.1902537, 46.49173 ], + [ 6.190305, 46.4916067 ], + [ 6.1903875, 46.4915399 ], + [ 6.1904776, 46.4915182 ], + [ 6.1906245, 46.4915196 ], + [ 6.1907959, 46.491521 ], + [ 6.19087, 46.4914824 ], + [ 6.1909285, 46.4913985 ], + [ 6.190916, 46.4911846 ], + [ 6.1909264, 46.4910665 ], + [ 6.1909853, 46.4909656 ], + [ 6.1910437, 46.4908874 ], + [ 6.1911427, 46.490832 ], + [ 6.1912732, 46.4908389 ], + [ 6.1914771, 46.4908407 ], + [ 6.1916891, 46.4908425 ], + [ 6.1918532, 46.4907878 ], + [ 6.1919198, 46.4907264 ], + [ 6.1919789, 46.4906144 ], + [ 6.1919969, 46.4905076 ], + [ 6.1919926, 46.4902882 ], + [ 6.1920049, 46.4900518 ], + [ 6.1920332, 46.4898327 ], + [ 6.1921417, 46.4896985 ], + [ 6.1922828, 46.4895649 ], + [ 6.1924236, 46.4894423 ], + [ 6.1925071, 46.4893305 ], + [ 6.1925007, 46.4892404 ], + [ 6.1924699, 46.4891276 ], + [ 6.1924396, 46.4889922 ], + [ 6.1924182, 46.4888289 ], + [ 6.1924452, 46.4886602 ], + [ 6.1925625, 46.4884982 ], + [ 6.1927532, 46.488331 ], + [ 6.1930019, 46.4881025 ], + [ 6.1932427, 46.4878626 ], + [ 6.1934177, 46.4876503 ], + [ 6.1935598, 46.4874547 ], + [ 6.193662, 46.487225 ], + [ 6.1937146, 46.487006 ], + [ 6.193702, 46.486792 ], + [ 6.1936161, 46.486583 ], + [ 6.1934403, 46.4863507 ], + [ 6.1931832, 46.4861121 ], + [ 6.1929034, 46.4857832 ], + [ 6.1925913, 46.4854259 ], + [ 6.1923771, 46.4850976 ], + [ 6.1920514, 46.4845882 ], + [ 6.1919248, 46.4843394 ], + [ 6.1918469, 46.4841363 ], + [ 6.1918494, 46.48399 ], + [ 6.1919092, 46.4838329 ], + [ 6.1920582, 46.4837104 ], + [ 6.192257, 46.4835434 ], + [ 6.1924799, 46.4833878 ], + [ 6.1926621, 46.4832376 ], + [ 6.1927711, 46.4830809 ], + [ 6.1928141, 46.4829631 ], + [ 6.1928166000000004, 46.4828 ], + [ 6.192787, 46.4826364 ], + [ 6.1927407, 46.4824729 ], + [ 6.1927434, 46.4823209 ], + [ 6.1927952, 46.4821583 ], + [ 6.1929469, 46.4818782 ], + [ 6.193115, 46.4816152 ], + [ 6.1933079, 46.4813132 ], + [ 6.193457, 46.4811682 ], + [ 6.1935887, 46.481101699999996 ], + [ 6.1938264, 46.4810475 ], + [ 6.1940236, 46.4809706 ], + [ 6.1942778, 46.4808884 ], + [ 6.1945244, 46.4807837 ], + [ 6.1947472, 46.4806507 ], + [ 6.1950609, 46.4804452 ], + [ 6.1958467, 46.4798276 ], + [ 6.1959034, 46.4798036 ], + [ 6.1959778, 46.4797539 ], + [ 6.1960887, 46.4796922 ], + [ 6.1962168, 46.4796809 ], + [ 6.1964, 46.4796576 ], + [ 6.1965461, 46.4796592 ], + [ 6.1966913, 46.4796988 ], + [ 6.1969092, 46.4797641 ], + [ 6.1970544, 46.4798037 ], + [ 6.1972902, 46.4798819 ], + [ 6.1977261, 46.4799876 ], + [ 6.1979985, 46.4800537 ], + [ 6.198162, 46.4800934 ], + [ 6.1983628, 46.4801081 ], + [ 6.1985445, 46.4801354 ], + [ 6.1986483, 46.4801671 ], + [ 6.1987798, 46.4802389 ], + [ 6.1988632, 46.4802935 ], + [ 6.1989593, 46.4803796 ], + [ 6.199049, 46.4804437 ], + [ 6.1991747, 46.4805335 ], + [ 6.1993179, 46.4806612 ], + [ 6.1994077, 46.4807379 ], + [ 6.1994246, 46.4808013 ], + [ 6.1994037, 46.4809145 ], + [ 6.1993659, 46.4809647 ], + [ 6.1993086, 46.481065 ], + [ 6.1992323, 46.4812155 ], + [ 6.1991754, 46.4813032 ], + [ 6.1991539, 46.4814418 ], + [ 6.1991513, 46.4815553 ], + [ 6.1991824, 46.4816366 ], + [ 6.1992577, 46.481708 ], + [ 6.1993831, 46.4818103 ], + [ 6.1995995, 46.4819262 ], + [ 6.1998873, 46.4821186 ], + [ 6.2000312, 46.4822337 ], + [ 6.2001744, 46.4823615 ], + [ 6.2003173, 46.4825018 ], + [ 6.2004235, 46.4826417 ], + [ 6.2005293, 46.4828069 ], + [ 6.2005985, 46.4829844 ], + [ 6.200705, 46.4831118 ], + [ 6.2008663, 46.4832523 ], + [ 6.2010097, 46.4833674 ], + [ 6.2011538, 46.4834573 ], + [ 6.2014259, 46.483536 ], + [ 6.2017158, 46.4836401 ], + [ 6.2020428, 46.4837195 ], + [ 6.2022607, 46.483785 ], + [ 6.2024591000000004, 46.4839006 ], + [ 6.2026572, 46.4840163 ], + [ 6.2028376, 46.4841192 ], + [ 6.2030715, 46.4842858 ], + [ 6.2032863, 46.4844648 ], + [ 6.2035022, 46.4846186 ], + [ 6.2036649, 46.4846961 ], + [ 6.2038818, 46.4847868 ], + [ 6.2042812, 46.4849047 ], + [ 6.205369, 46.4852699 ], + [ 6.2055143, 46.4853093 ], + [ 6.2056964, 46.4853365 ], + [ 6.2058056, 46.4853503 ], + [ 6.2059514, 46.4853645 ], + [ 6.2060789, 46.4853786 ], + [ 6.2061878, 46.4854049 ], + [ 6.2063336, 46.4854191 ], + [ 6.2063879, 46.4854449 ], + [ 6.2065148, 46.4854842 ], + [ 6.2066961, 46.4855493 ], + [ 6.2068408, 46.4856139 ], + [ 6.2069491, 46.4856655 ], + [ 6.2070392, 46.4857296 ], + [ 6.2071472, 46.4857939 ], + [ 6.2072371, 46.4858706 ], + [ 6.2073265, 46.4859472 ], + [ 6.2073977, 46.4860364 ], + [ 6.2074508, 46.4861 ], + [ 6.2074491, 46.4861757 ], + [ 6.207476, 46.486605 ], + [ 6.207474, 46.4866933 ], + [ 6.2074906, 46.4867693 ], + [ 6.207526, 46.4868201 ], + [ 6.2075794, 46.4868711 ], + [ 6.2076527, 46.4868719 ], + [ 6.2077255, 46.4868727 ], + [ 6.2078354000000004, 46.4868739 ], + [ 6.2079274, 46.4868371 ], + [ 6.2080557, 46.4868132 ], + [ 6.2081665, 46.4867766 ], + [ 6.2082768, 46.48674 ], + [ 6.2084421, 46.4867038 ], + [ 6.2085521, 46.4866798 ], + [ 6.2086438, 46.4866555 ], + [ 6.208772, 46.4866569 ], + [ 6.2088815, 46.4866581 ], + [ 6.208991, 46.4866593 ], + [ 6.2091008, 46.4866605 ], + [ 6.2092097, 46.486687 ], + [ 6.2092817, 46.4867256 ], + [ 6.2093907, 46.4867645 ], + [ 6.209481, 46.4868035 ], + [ 6.2095543, 46.4868043 ], + [ 6.209682, 46.4868057 ], + [ 6.2098281, 46.4868072 ], + [ 6.2099748, 46.4867835 ], + [ 6.2101030999999995, 46.4867598 ], + [ 6.2102132, 46.4867356 ], + [ 6.2103414, 46.486737 ], + [ 6.2104875, 46.4867386 ], + [ 6.2106152, 46.48674 ], + [ 6.2106695, 46.4867532 ], + [ 6.2107794, 46.4867544 ], + [ 6.2108882, 46.4867808 ], + [ 6.2109977, 46.4867819 ], + [ 6.2110026, 46.4867812 ], + [ 6.2110854, 46.4867209 ], + [ 6.2110651, 46.4865766 ], + [ 6.2109526, 46.4864919 ], + [ 6.2108611, 46.4864538 ], + [ 6.2107392, 46.4864246 ], + [ 6.210617, 46.4864122 ], + [ 6.2104785, 46.4863997 ], + [ 6.2103239, 46.4863758 ], + [ 6.2102022, 46.4863411 ], + [ 6.2100647, 46.4862668 ], + [ 6.2099192, 46.4861866 ], + [ 6.209716, 46.4861342 ], + [ 6.2095462, 46.4860483 ], + [ 6.2093679, 46.4859792 ], + [ 6.2092306, 46.4858936 ], + [ 6.2091092, 46.485825 ], + [ 6.2090459, 46.485712 ], + [ 6.2090481, 46.4855938 ], + [ 6.2090529, 46.4852955 ], + [ 6.2090424, 46.4849692 ], + [ 6.2090314, 46.4846483 ], + [ 6.2089777999999995, 46.4844452 ], + [ 6.2088908, 46.4842756 ], + [ 6.2087894, 46.4840102 ], + [ 6.2087288, 46.4837397 ], + [ 6.2086428, 46.4835307 ], + [ 6.2085669, 46.4831811 ], + [ 6.2085227, 46.482905 ], + [ 6.2085265, 46.4826856 ], + [ 6.2085713, 46.4824496 ], + [ 6.2085822, 46.4822921 ], + [ 6.2086422, 46.4821238 ], + [ 6.208751, 46.481956 ], + [ 6.2088769, 46.4817546 ], + [ 6.2090858, 46.4814806 ], + [ 6.2092444, 46.4812738 ], + [ 6.2094366, 46.4809997 ], + [ 6.2096877, 46.4806418 ], + [ 6.2099381, 46.4802951 ], + [ 6.2101484, 46.4799255 ], + [ 6.2104651, 46.4795456 ], + [ 6.2106081, 46.479305 ], + [ 6.210743, 46.4790472 ], + [ 6.2108196, 46.4788622 ], + [ 6.2108804, 46.4786433 ], + [ 6.2108349, 46.4784403 ], + [ 6.2108225, 46.4781981 ], + [ 6.2108039, 46.4778717 ], + [ 6.2108241, 46.4776411 ], + [ 6.2108928, 46.4774335 ], + [ 6.2110088, 46.477322 ], + [ 6.2111895, 46.4772504 ], + [ 6.2114188, 46.4772074 ], + [ 6.2117543, 46.4771653 ], + [ 6.2121311, 46.4770786 ], + [ 6.2125895, 46.4769813 ], + [ 6.2127069, 46.4769182 ], + [ 6.2128026, 46.4768799 ], + [ 6.2129364, 46.476829 ], + [ 6.2130705, 46.476765 ], + [ 6.2131662, 46.4767266 ], + [ 6.2132818, 46.4766362 ], + [ 6.2133781, 46.4765718 ], + [ 6.2135325, 46.4764556 ], + [ 6.213679, 46.4763647 ], + [ 6.2137812, 46.4762898 ], + [ 6.2138792, 46.4762235 ], + [ 6.2140518, 46.4761337 ], + [ 6.2141663, 46.4761088 ], + [ 6.2142995, 46.4760839 ], + [ 6.2144509, 46.4760856 ], + [ 6.2146401000000004, 46.4761008 ], + [ 6.2147532, 46.4761413 ], + [ 6.2148849, 46.476182 ], + [ 6.2150922, 46.4762498 ], + [ 6.2152045, 46.4763033 ], + [ 6.2153554, 46.4763443 ], + [ 6.2154683, 46.4763716 ], + [ 6.2155631, 46.4763727 ], + [ 6.2156579, 46.4763737 ], + [ 6.2157527, 46.4763747 ], + [ 6.2162448, 46.4764063 ], + [ 6.2164154, 46.4764212 ], + [ 6.2164723, 46.4764218 ], + [ 6.2166795, 46.4764764 ], + [ 6.2167737, 46.4765037 ], + [ 6.2168488, 46.4765306 ], + [ 6.2169048, 46.4765706 ], + [ 6.2170551, 46.4766377 ], + [ 6.2171672, 46.4767043 ], + [ 6.2172802, 46.4767449 ], + [ 6.2173547, 46.4767981 ], + [ 6.2174683, 46.4768124 ], + [ 6.2175628, 46.4768265 ], + [ 6.2176200999999995, 46.476814 ], + [ 6.217696, 46.4768018 ], + [ 6.2177299, 46.4767824 ], + [ 6.2177545, 46.4767369 ], + [ 6.2177183, 46.4766448 ], + [ 6.217665, 46.4765532 ], + [ 6.2175966, 46.4764831 ], + [ 6.2174779000000004, 46.4764057 ], + [ 6.2173496, 46.4763212 ], + [ 6.2171594, 46.4762196 ], + [ 6.2170103, 46.4761001 ], + [ 6.2168434, 46.4759411 ], + [ 6.2167518, 46.475796 ], + [ 6.2165863, 46.4755585 ], + [ 6.2164388, 46.4753867 ], + [ 6.2163836, 46.4753074 ], + [ 6.2163278, 46.4752545 ], + [ 6.2162228, 46.4751663 ], + [ 6.2160655, 46.4751206 ], + [ 6.2159152, 46.4750535 ], + [ 6.2158035, 46.4749737 ], + [ 6.2156915999999995, 46.4748809 ], + [ 6.2156183, 46.4747752 ], + [ 6.2155449, 46.4746566 ], + [ 6.2155256, 46.4745216 ], + [ 6.215508, 46.4743967 ], + [ 6.2155535, 46.4742767 ], + [ 6.2156134, 46.4741465 ], + [ 6.2156733, 46.4740161 ], + [ 6.2157517, 46.473899 ], + [ 6.2158882, 46.4737434 ], + [ 6.216025, 46.4735615 ], + [ 6.2162572, 46.4733544 ], + [ 6.2163922, 46.473251 ], + [ 6.2165712, 46.4731062 ], + [ 6.2165717, 46.4730874 ], + [ 6.216498, 46.4727289 ], + [ 6.2168598, 46.4726349 ], + [ 6.2169237, 46.4726184 ], + [ 6.2168298, 46.4725212 ], + [ 6.2166687, 46.4724108 ], + [ 6.2165466, 46.4722516 ], + [ 6.2167749, 46.4721061 ], + [ 6.2165751, 46.4719264 ], + [ 6.2167918, 46.4717909 ], + [ 6.2169343, 46.4716786 ], + [ 6.2170422, 46.4715677 ], + [ 6.2172635, 46.4713342 ], + [ 6.2179208, 46.4706827 ], + [ 6.2180158, 46.4706746 ], + [ 6.2181248, 46.4706758 ], + [ 6.218207, 46.4706578 ], + [ 6.2182351, 46.4706205 ], + [ 6.2182641, 46.4705454 ], + [ 6.2182378, 46.4704123 ], + [ 6.2182155, 46.4702815 ], + [ 6.2184591, 46.4703405 ], + [ 6.2186491, 46.4703802 ], + [ 6.2191657, 46.4704234 ], + [ 6.2195456, 46.4705028 ], + [ 6.2198437, 46.4705624 ], + [ 6.2201964, 46.4706227 ], + [ 6.2203872, 46.4706248 ], + [ 6.2205235, 46.4706262 ], + [ 6.2206598, 46.4706277 ], + [ 6.2208229, 46.4706294 ], + [ 6.2209592, 46.4706309 ], + [ 6.2211227, 46.4706326 ], + [ 6.2212863, 46.4706344 ], + [ 6.2215031, 46.4706744 ], + [ 6.2216117, 46.4706944 ], + [ 6.2218016, 46.4707341 ], + [ 6.2220717, 46.4708311 ], + [ 6.222265, 46.4708996 ], + [ 6.2222878, 46.4708258 ], + [ 6.222295, 46.4707592 ], + [ 6.2223722, 46.4706565 ], + [ 6.2224868, 46.4705532 ], + [ 6.2225988, 46.4704226 ], + [ 6.2227087, 46.4703672 ], + [ 6.222605, 46.4703112 ], + [ 6.22264, 46.4701857 ], + [ 6.2226003, 46.4700298 ], + [ 6.2225591, 46.4697633 ], + [ 6.2225084, 46.4695933 ], + [ 6.2224317, 46.4693666 ], + [ 6.2223814, 46.4691778 ], + [ 6.2223584, 46.4689894 ], + [ 6.2223311, 46.4686652 ], + [ 6.2222298, 46.4684125 ], + [ 6.2221569, 46.468253 ], + [ 6.2221057, 46.4681019 ], + [ 6.222059, 46.4679 ], + [ 6.2220496, 46.4676113 ], + [ 6.2219425, 46.4676176 ], + [ 6.2218672, 46.4676167 ], + [ 6.2217712, 46.4676157 ], + [ 6.221632, 46.4675993 ], + [ 6.2214911, 46.467587 ], + [ 6.2213561, 46.4675292 ], + [ 6.2212207, 46.46749 ], + [ 6.2210853, 46.4674509 ], + [ 6.2209629, 46.4673554 ], + [ 6.2208437, 46.4672978 ], + [ 6.2207193, 46.4672417 ], + [ 6.2206242, 46.4671815 ], + [ 6.2204545, 46.4670909 ], + [ 6.2203385, 46.467023 ], + [ 6.2202249, 46.4669522 ], + [ 6.2200362, 46.4668561 ], + [ 6.2198476, 46.4667599 ], + [ 6.2197671, 46.4667025 ], + [ 6.2196602, 46.4666073 ], + [ 6.2196078, 46.4665314 ], + [ 6.219555, 46.4664555 ], + [ 6.2195571, 46.4663615 ], + [ 6.2195584, 46.466305 ], + [ 6.2195873, 46.4662301 ], + [ 6.2196154, 46.4661927 ], + [ 6.2196435, 46.4661554 ], + [ 6.2196985, 46.4661183 ], + [ 6.2197265999999996, 46.4660809 ], + [ 6.2198092, 46.4660441 ], + [ 6.2198645, 46.4660072 ], + [ 6.219919, 46.4660078 ], + [ 6.219974, 46.4659895 ], + [ 6.2201102, 46.465991 ], + [ 6.2202461, 46.4660113 ], + [ 6.2203543, 46.4660313 ], + [ 6.2205174, 46.4660517 ], + [ 6.2206165, 46.4660936 ], + [ 6.2207614, 46.4661109 ], + [ 6.2208625, 46.4661035 ], + [ 6.220925, 46.4660938 ], + [ 6.2209526, 46.4660752 ], + [ 6.221008, 46.4660383 ], + [ 6.2210088, 46.4660006 ], + [ 6.2210105, 46.4659253 ], + [ 6.220985, 46.4658497 ], + [ 6.220959, 46.465793 ], + [ 6.2209057, 46.4657548 ], + [ 6.2207967, 46.4657536 ], + [ 6.2206877, 46.4657524 ], + [ 6.2205518, 46.4657322 ], + [ 6.2204428, 46.465731 ], + [ 6.220307, 46.4657107 ], + [ 6.2201651, 46.4656891 ], + [ 6.2200057, 46.465628 ], + [ 6.2198743, 46.4655743 ], + [ 6.2197116, 46.4655349 ], + [ 6.2195118, 46.4654293 ], + [ 6.2193056, 46.4652986 ], + [ 6.2188436, 46.4651813 ], + [ 6.2187291, 46.4651158 ], + [ 6.2185214, 46.4650493 ], + [ 6.2183272, 46.4650211 ], + [ 6.2180576, 46.4650123 ], + [ 6.2177794, 46.4649931 ], + [ 6.2176482, 46.464929 ], + [ 6.2175547, 46.4648528 ], + [ 6.2174735, 46.4648237 ], + [ 6.217296, 46.4647954 ], + [ 6.2171535, 46.4648156 ], + [ 6.2170851, 46.4648733 ], + [ 6.2169673, 46.4649363 ], + [ 6.2168267, 46.4649991 ], + [ 6.2166626, 46.4650614 ], + [ 6.2165079, 46.4650627 ], + [ 6.2163996, 46.4650333 ], + [ 6.2163051, 46.4649805 ], + [ 6.2162256, 46.4648997 ], + [ 6.2161578, 46.4647831 ], + [ 6.2161231, 46.4646067 ], + [ 6.2160851, 46.46447 ], + [ 6.2160325, 46.4643846 ], + [ 6.215993, 46.4643325 ], + [ 6.2158988, 46.464289 ], + [ 6.2157908, 46.4642455 ], + [ 6.2156681, 46.4642348 ], + [ 6.2155433, 46.4642146 ], + [ 6.215307, 46.4642451 ], + [ 6.215099, 46.4643383 ], + [ 6.2149018, 46.4644053 ], + [ 6.2146772, 46.4644943 ], + [ 6.2144921, 46.4644761 ], + [ 6.2143997, 46.4644431 ], + [ 6.214262, 46.4643773 ], + [ 6.2141471, 46.4643119 ], + [ 6.2139631, 46.4642296 ], + [ 6.2138018, 46.4641798 ], + [ 6.2136174, 46.4641135 ], + [ 6.2134337, 46.4640153 ], + [ 6.2132502, 46.4639451 ], + [ 6.2130645, 46.4638988 ], + [ 6.2129717, 46.4638978 ], + [ 6.2128695, 46.4639175 ], + [ 6.2128141, 46.4639592 ], + [ 6.2127826, 46.4640403 ], + [ 6.2127115, 46.4641038 ], + [ 6.2126166, 46.464183 ], + [ 6.2125695, 46.4642145 ], + [ 6.2124068, 46.464229 ], + [ 6.2122448, 46.464195 ], + [ 6.2121064, 46.4641454 ], + [ 6.2119216, 46.4640952 ], + [ 6.2117132, 46.4640609 ], + [ 6.2115389, 46.4640349 ], + [ 6.2113403, 46.4640704 ], + [ 6.2112009, 46.4641195 ], + [ 6.2110732, 46.4641523 ], + [ 6.2110031, 46.4642315 ], + [ 6.2109863, 46.464358 ], + [ 6.2109838, 46.4644704 ], + [ 6.210982, 46.4645506 ], + [ 6.2109396, 46.4646261 ], + [ 6.2108974, 46.4646916 ], + [ 6.2106754, 46.4647559 ], + [ 6.2105359, 46.4647544 ], + [ 6.2103524, 46.4646997 ], + [ 6.2103058, 46.4646556 ], + [ 6.2102142, 46.4646066 ], + [ 6.2100903, 46.4645416 ], + [ 6.2099419, 46.4644836 ], + [ 6.2098341, 46.4644305 ], + [ 6.209713, 46.4643681 ], + [ 6.2095704, 46.4643431 ], + [ 6.2094474, 46.4643652 ], + [ 6.2093569, 46.4644442 ], + [ 6.209263, 46.4645481 ], + [ 6.2091673, 46.4646755 ], + [ 6.2091416, 46.4647715 ], + [ 6.2090951, 46.4648838 ], + [ 6.2090673, 46.4649793 ], + [ 6.2089955, 46.465075 ], + [ 6.2089241, 46.4651545 ], + [ 6.2088288, 46.4652497 ], + [ 6.2087571, 46.4653453 ], + [ 6.2086739, 46.4654252 ], + [ 6.2086367, 46.4655205 ], + [ 6.2086349, 46.4656008 ], + [ 6.2086802, 46.4656655 ], + [ 6.2087487, 46.4657144 ], + [ 6.2088389, 46.4658277 ], + [ 6.208907, 46.4659641 ], + [ 6.2088363, 46.4660858 ], + [ 6.2086917, 46.4661793 ], + [ 6.2085186, 46.4662752 ], + [ 6.2083054, 46.4663671 ], + [ 6.2080784, 46.4664541 ], + [ 6.2078231, 46.4665712 ], + [ 6.2075886, 46.4666651 ], + [ 6.2075098, 46.4666967 ], + [ 6.2073541, 46.4667588 ], + [ 6.207137, 46.4668251 ], + [ 6.2068758, 46.4669305 ], + [ 6.2066972, 46.4669991 ], + [ 6.2065185, 46.4670772 ], + [ 6.20638, 46.4671697 ], + [ 6.2062028, 46.4673242 ], + [ 6.2061075, 46.4674356 ], + [ 6.2059889, 46.4675307 ], + [ 6.2058708, 46.4676257 ], + [ 6.2057055, 46.4677362 ], + [ 6.2055156, 46.4679108 ], + [ 6.2053979, 46.4679898 ], + [ 6.2051858, 46.4681159 ], + [ 6.2050434, 46.4682428 ], + [ 6.2049252, 46.4683378 ], + [ 6.2047364, 46.4684642 ], + [ 6.2045244, 46.4685903 ], + [ 6.2042903, 46.468668 ], + [ 6.2038931, 46.46876 ], + [ 6.2039007, 46.468677 ], + [ 6.204037, 46.4685689 ], + [ 6.2042008, 46.4685065 ], + [ 6.2043425, 46.4684136 ], + [ 6.2044666, 46.4683396 ], + [ 6.2045335, 46.468189 ], + [ 6.2046708, 46.4680595 ], + [ 6.2047348, 46.4679283 ], + [ 6.2048885, 46.467756 ], + [ 6.2049878, 46.4675923 ], + [ 6.2050856, 46.4674084 ], + [ 6.2051592, 46.4672326 ], + [ 6.20521, 46.4670566 ], + [ 6.2052133, 46.4669121 ], + [ 6.2051238, 46.4667506 ], + [ 6.2050579, 46.4665894 ], + [ 6.2049463, 46.4663794 ], + [ 6.2048426, 46.4661976 ], + [ 6.2048537, 46.4659955 ], + [ 6.2048562, 46.4658872 ], + [ 6.204895, 46.4656852 ], + [ 6.2049191, 46.4655209 ], + [ 6.2049653, 46.4652955 ], + [ 6.2050543, 46.4649811 ], + [ 6.2051418, 46.4647091 ], + [ 6.2052508, 46.4642477 ], + [ 6.2049934, 46.4646525 ], + [ 6.2036602, 46.4667507 ], + [ 6.2034938, 46.4669094 ], + [ 6.2034, 46.4669566 ], + [ 6.2032594, 46.4670032 ], + [ 6.2031434, 46.4670019 ], + [ 6.2029815, 46.4669681 ], + [ 6.2027963, 46.466934 ], + [ 6.2026104, 46.466932 ], + [ 6.2024709, 46.4669465 ], + [ 6.2023078, 46.4669608 ], + [ 6.2021915, 46.4669755 ], + [ 6.2020512, 46.4670062 ], + [ 6.2019338, 46.467069 ], + [ 6.2017921, 46.4671639 ], + [ 6.2016033, 46.4672902 ], + [ 6.2015083, 46.4673856 ], + [ 6.201413, 46.4674808 ], + [ 6.2012477, 46.4676074 ], + [ 6.2011281, 46.4677506 ], + [ 6.2009852, 46.4678935 ], + [ 6.2008436, 46.4680043 ], + [ 6.2007015, 46.4681152 ], + [ 6.2005594, 46.468242 ], + [ 6.2003216, 46.4684802 ], + [ 6.2001714, 46.4684987 ], + [ 6.2000574, 46.4684696 ], + [ 6.1998626, 46.4684115 ], + [ 6.1996763, 46.4683368 ], + [ 6.1995797, 46.468274 ], + [ 6.1994676, 46.468138 ], + [ 6.1993481, 46.4679906 ], + [ 6.1992849, 46.4678719 ], + [ 6.1990738, 46.4677969 ], + [ 6.1987978, 46.4677324 ], + [ 6.1985464, 46.4676403 ], + [ 6.1982949, 46.4675536 ], + [ 6.1981089, 46.4674675 ], + [ 6.1980207, 46.4673767 ], + [ 6.1979339, 46.4672239 ], + [ 6.1978056, 46.4670877 ], + [ 6.197612, 46.4669567 ], + [ 6.1974588, 46.4668427 ], + [ 6.1972483, 46.4667621 ], + [ 6.1969473, 46.46672 ], + [ 6.1967764, 46.4666848 ], + [ 6.1966383, 46.4666553 ], + [ 6.1964441, 46.4665749 ], + [ 6.1962906, 46.4664891 ], + [ 6.196104, 46.4664143 ], + [ 6.1959255, 46.4663732 ], + [ 6.1957462, 46.4663661 ], + [ 6.1954447, 46.4663465 ], + [ 6.1952161, 46.4663445 ], + [ 6.1950127, 46.4663258 ], + [ 6.1948427, 46.4662512 ], + [ 6.1945748, 46.4661699 ], + [ 6.1942818, 46.4661391 ], + [ 6.1937521, 46.4661007 ], + [ 6.1932791, 46.4660909 ], + [ 6.1927329, 46.4660804 ], + [ 6.1924809, 46.4660332 ], + [ 6.1922534, 46.4659636 ], + [ 6.1920428, 46.4658885 ], + [ 6.1918554, 46.4658812 ], + [ 6.1916752, 46.4659134 ], + [ 6.1915113999999996, 46.4659569 ], + [ 6.1913383, 46.4660567 ], + [ 6.1911665, 46.4660945 ], + [ 6.1909699, 46.4661321 ], + [ 6.1907747, 46.466091 ], + [ 6.1905724, 46.4660105 ], + [ 6.1903619, 46.4659073 ], + [ 6.1901757, 46.4658325 ], + [ 6.1899557, 46.4658249 ], + [ 6.1897593, 46.4658569 ], + [ 6.1895617, 46.4659564 ], + [ 6.189388, 46.4660956 ], + [ 6.1891643, 46.4663017 ], + [ 6.1888411, 46.4665745 ], + [ 6.188718, 46.4666185 ], + [ 6.1884805, 46.4666839 ], + [ 6.187925, 46.466724 ], + [ 6.1874924, 46.4667426 ], + [ 6.1872645, 46.4667123 ], + [ 6.1868424, 46.4665961 ], + [ 6.1864611, 46.4664745 ], + [ 6.1862095, 46.4663934 ], + [ 6.1860721, 46.4663359 ], + [ 6.1857968, 46.466204 ], + [ 6.1852959, 46.4659406 ], + [ 6.184884, 46.4657006 ], + [ 6.1843928, 46.465336 ], + [ 6.1839797, 46.4651692 ], + [ 6.1838087999999996, 46.4651507 ], + [ 6.1837589, 46.4651953 ], + [ 6.1836998, 46.4653074 ], + [ 6.1836086, 46.4653965 ], + [ 6.183485, 46.465463 ], + [ 6.1833295, 46.4655009 ], + [ 6.183142, 46.4654993 ], + [ 6.182816, 46.4654851 ], + [ 6.1825307, 46.4654713 ], + [ 6.1821716, 46.4654793 ], + [ 6.1816231, 46.4655869 ], + [ 6.1813363, 46.4656574 ], + [ 6.1812288, 46.4657464 ], + [ 6.1811704, 46.4658079 ], + [ 6.1812101, 46.4658871 ], + [ 6.1812329, 46.4659717 ], + [ 6.1812947, 46.4661692 ], + [ 6.1813554, 46.4664285 ], + [ 6.181394, 46.4665526 ], + [ 6.1813927, 46.4666259 ], + [ 6.1813671, 46.4666762 ], + [ 6.1812848, 46.4667318 ], + [ 6.18117, 46.4667702 ], + [ 6.1810301, 46.4668195 ], + [ 6.1809315, 46.4668805 ], + [ 6.1808732, 46.4669363 ], + [ 6.1807979, 46.4670426 ], + [ 6.1806978, 46.4671823 ], + [ 6.1806295, 46.4673393 ], + [ 6.1805288, 46.4675015 ], + [ 6.180436, 46.4676808 ], + [ 6.1803262, 46.4678879 ], + [ 6.180282, 46.4680733 ], + [ 6.1802059, 46.4682302 ], + [ 6.1801461, 46.4683872 ], + [ 6.180062, 46.4685215 ], + [ 6.1799947, 46.4686334 ], + [ 6.1799694, 46.468689499999996 ], + [ 6.1799185, 46.4687959 ], + [ 6.1799171, 46.4688747 ], + [ 6.1798747, 46.4689644 ], + [ 6.1798242, 46.4690539 ], + [ 6.1797486, 46.4691715 ], + [ 6.1796738, 46.4692553 ], + [ 6.1795749, 46.4693274 ], + [ 6.1794428, 46.4694107 ], + [ 6.1792529, 46.4695271 ], + [ 6.1790392, 46.4696321 ], + [ 6.1787112, 46.4697248 ], + [ 6.1785312, 46.4697457 ], + [ 6.1784239, 46.4698291 ], + [ 6.1783072, 46.4699632 ], + [ 6.178199, 46.470086 ], + [ 6.1780821, 46.4702482 ], + [ 6.1779384, 46.4705113 ], + [ 6.1778282, 46.4707523 ], + [ 6.1771698, 46.4724626 ], + [ 6.1770444, 46.4726416 ], + [ 6.1769444, 46.4727589 ], + [ 6.1768863, 46.472809 ], + [ 6.1768599, 46.47291 ], + [ 6.1768324, 46.4730956 ], + [ 6.1768298999999995, 46.4732192 ], + [ 6.1768849, 46.4733379 ], + [ 6.1770183, 46.4736374 ], + [ 6.1770416, 46.4737221 ], + [ 6.1770062, 46.4738624 ], + [ 6.1769311, 46.4739574 ], + [ 6.1767988, 46.4740631 ], + [ 6.1766271, 46.4740784 ], + [ 6.1763737, 46.4741099 ], + [ 6.1761767, 46.4741812 ], + [ 6.1760861, 46.4742255 ], + [ 6.1760272, 46.4743262 ], + [ 6.1759762, 46.4744384 ], + [ 6.1759404, 46.4746124 ], + [ 6.1759038, 46.4748541 ], + [ 6.1758508, 46.4750675 ], + [ 6.1758389, 46.4752811 ], + [ 6.1758112, 46.4754723 ], + [ 6.1758156, 46.4756693 ], + [ 6.1758123, 46.4758606 ], + [ 6.1758003, 46.4760799 ], + [ 6.1758057, 46.4762319 ], + [ 6.1757623, 46.4763834 ], + [ 6.175671, 46.4764783 ], + [ 6.1755229, 46.4765445 ], + [ 6.1753583, 46.4766218 ], + [ 6.1752586, 46.4767109 ], + [ 6.1751991, 46.476851 ], + [ 6.1750754, 46.4769399 ], + [ 6.1749508, 46.4770458 ], + [ 6.1748034, 46.4770838 ], + [ 6.1746807, 46.4771108 ], + [ 6.1745342, 46.4770757 ], + [ 6.1744044, 46.4770408 ], + [ 6.1742419, 46.4769943 ], + [ 6.1740634, 46.4769533 ], + [ 6.1739003, 46.4769293 ], + [ 6.1737041, 46.4769669 ], + [ 6.1734744, 46.4770268 ], + [ 6.1732618, 46.4770698 ], + [ 6.1729994, 46.4771349 ], + [ 6.1727951, 46.4771499 ], + [ 6.1725586, 46.4771366 ], + [ 6.1723385, 46.4771346 ], + [ 6.1720857, 46.4771379 ], + [ 6.1718073, 46.4771916 ], + [ 6.1715133, 46.4772003 ], + [ 6.1713091, 46.4772096 ], + [ 6.1711705, 46.4772028 ], + [ 6.1710076, 46.47719 ], + [ 6.1708538, 46.4771211 ], + [ 6.1707252, 46.4770185 ], + [ 6.1705238, 46.476876 ], + [ 6.1702655, 46.4767161 ], + [ 6.1700228, 46.4766013 ], + [ 6.1697629, 46.4765427 ], + [ 6.1694296, 46.4764721 ], + [ 6.1690149, 46.476384 ], + [ 6.1688761, 46.476388299999996 ], + [ 6.1687283, 46.4764433 ], + [ 6.1685802, 46.4765094 ], + [ 6.1684065, 46.476643 ], + [ 6.1682645, 46.4768161 ], + [ 6.1681809, 46.4769448 ], + [ 6.1681125, 46.4771016 ], + [ 6.1680607, 46.4772644 ], + [ 6.1679209, 46.477325 ], + [ 6.1677979, 46.4773632 ], + [ 6.1675206, 46.4773552 ], + [ 6.167008, 46.4772773 ], + [ 6.1667889, 46.4772134 ], + [ 6.166618, 46.4771949 ], + [ 6.1664703, 46.4772273 ], + [ 6.1663389, 46.4772769 ], + [ 6.1662485, 46.4773322 ], + [ 6.1661171, 46.4773816 ], + [ 6.1659448, 46.4774251 ], + [ 6.1657968, 46.4774857 ], + [ 6.1656478, 46.4776082 ], + [ 6.1655069, 46.4777362 ], + [ 6.1653895, 46.4779152 ], + [ 6.1653209, 46.4781003 ], + [ 6.1653253, 46.4782917 ], + [ 6.1653634, 46.4784552 ], + [ 6.1653535, 46.4785452 ], + [ 6.1653194, 46.4786293 ], + [ 6.1652279, 46.478729799999996 ], + [ 6.16516, 46.4788642 ], + [ 6.1651501, 46.4789766 ], + [ 6.1651645, 46.4790725 ], + [ 6.1652518, 46.4792195 ], + [ 6.1654044, 46.4793392 ], + [ 6.1655656, 46.4794588 ], + [ 6.1657589, 46.4796012 ], + [ 6.1658709, 46.479714799999996 ], + [ 6.1660810999999995, 46.4798461 ], + [ 6.1661931, 46.4799653 ], + [ 6.166272, 46.4801068 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "JBG0023", + "country" : "CHE", + "name" : [ + { + "text" : "Eidgenössisches Jagdbanngebiet Le Noirmont", + "lang" : "de-CH" + }, + { + "text" : "District franc fédéral Le Noirmont", + "lang" : "fr-CH" + }, + { + "text" : "Bandita federale di caccia Le Noirmont", + "lang" : "it-CH" + }, + { + "text" : "Federal Game Reserve Le Noirmont", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6868947, 47.5062966 ], + [ 7.6868631, 47.5063102 ], + [ 7.6869396, 47.5064125 ], + [ 7.6870652, 47.5065654 ], + [ 7.6872098, 47.5067423 ], + [ 7.687354, 47.5069244 ], + [ 7.6874699, 47.5070616 ], + [ 7.6875724, 47.5072012 ], + [ 7.6876660999999995, 47.5073235 ], + [ 7.6877526, 47.5074385 ], + [ 7.6878505, 47.5075822 ], + [ 7.687856, 47.5075922 ], + [ 7.6878861, 47.5075828 ], + [ 7.6881105, 47.5079044 ], + [ 7.6881875, 47.5079203 ], + [ 7.6887497, 47.5076987 ], + [ 7.6887773, 47.5076905 ], + [ 7.6889116, 47.5076501 ], + [ 7.6890871, 47.5076261 ], + [ 7.6892629, 47.5076288 ], + [ 7.6892781, 47.5076152 ], + [ 7.6892076, 47.507524599999996 ], + [ 7.689166, 47.5074276 ], + [ 7.6890859, 47.5070987 ], + [ 7.6890657000000004, 47.5070641 ], + [ 7.6887964, 47.5069247 ], + [ 7.6886527000000005, 47.5068266 ], + [ 7.6885596, 47.5067558 ], + [ 7.6883159, 47.5065893 ], + [ 7.6882051, 47.5065142 ], + [ 7.6881415, 47.5064618 ], + [ 7.6880515, 47.5063542 ], + [ 7.6879971, 47.5062673 ], + [ 7.6879176000000005, 47.506095 ], + [ 7.6878411, 47.5059103 ], + [ 7.6877893, 47.50578 ], + [ 7.6877018, 47.5056478 ], + [ 7.6876255, 47.5055153 ], + [ 7.6875284, 47.5053984 ], + [ 7.6875032999999995, 47.5053715 ], + [ 7.6873436, 47.5054336 ], + [ 7.687322, 47.5054433 ], + [ 7.687161, 47.5055159 ], + [ 7.6869402000000004, 47.5056101 ], + [ 7.6872267, 47.5059813 ], + [ 7.687181, 47.5060315 ], + [ 7.6869564, 47.506249 ], + [ 7.6868947, 47.5062966 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns130", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Talweiher", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Talweiher", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Talweiher", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Talweiher", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.5028008, 46.664153 ], + [ 6.5025444, 46.6641567 ], + [ 6.5022888, 46.6641719 ], + [ 6.5020353, 46.6641986 ], + [ 6.5017848, 46.6642366 ], + [ 6.5015384, 46.6642858 ], + [ 6.5012973, 46.6643461 ], + [ 6.5010624, 46.664417 ], + [ 6.5008347, 46.6644984 ], + [ 6.5006153, 46.6645898 ], + [ 6.500405, 46.664691 ], + [ 6.5002048, 46.6648014 ], + [ 6.5000155, 46.6649205 ], + [ 6.4998379, 46.665048 ], + [ 6.4996728, 46.6651831 ], + [ 6.4995209, 46.6653254 ], + [ 6.4993829, 46.6654743 ], + [ 6.4992592, 46.665629 ], + [ 6.4991506, 46.665789 ], + [ 6.4990573, 46.6659535 ], + [ 6.4989799, 46.6661218 ], + [ 6.4989187, 46.6662933 ], + [ 6.4988738999999995, 46.6664672 ], + [ 6.4988457, 46.6666427 ], + [ 6.4988357, 46.6667696 ], + [ 6.4988297, 46.6669056 ], + [ 6.4988335, 46.6671317 ], + [ 6.4988556, 46.6673076 ], + [ 6.4988943, 46.6674822 ], + [ 6.4989495999999995, 46.6676546 ], + [ 6.4990211, 46.6678242 ], + [ 6.4991086, 46.6679903 ], + [ 6.4992117, 46.668152 ], + [ 6.4993299, 46.6683087 ], + [ 6.4994627, 46.6684598 ], + [ 6.4996096, 46.6686045 ], + [ 6.49977, 46.6687424 ], + [ 6.4999431, 46.6688727 ], + [ 6.5001282, 46.668995 ], + [ 6.5003245, 46.6691086 ], + [ 6.5005312, 46.6692132 ], + [ 6.5007475, 46.6693082 ], + [ 6.5009722, 46.6693934 ], + [ 6.5012046, 46.6694682 ], + [ 6.5014436, 46.6695323 ], + [ 6.5016882, 46.6695856 ], + [ 6.5019373, 46.6696278 ], + [ 6.5021899, 46.6696586 ], + [ 6.5024449, 46.669678 ], + [ 6.5026086, 46.6696844 ], + [ 6.5028061, 46.6696892 ], + [ 6.5031552, 46.6696871 ], + [ 6.5034108, 46.6696719 ], + [ 6.5036644, 46.6696452 ], + [ 6.5039149, 46.6696071 ], + [ 6.5041612, 46.6695579 ], + [ 6.5044024, 46.6694977 ], + [ 6.5046373, 46.6694267 ], + [ 6.504865, 46.6693453 ], + [ 6.5050844, 46.6692539 ], + [ 6.5052947, 46.6691527 ], + [ 6.5054949, 46.6690423 ], + [ 6.5056842, 46.6689231 ], + [ 6.5058618, 46.6687957 ], + [ 6.5060269, 46.6686605 ], + [ 6.5061788, 46.6685182 ], + [ 6.5063169, 46.6683694 ], + [ 6.5064405, 46.6682146 ], + [ 6.5065491, 46.6680547 ], + [ 6.5066423, 46.6678901 ], + [ 6.5067197, 46.6677218 ], + [ 6.5067809, 46.6675503 ], + [ 6.5068257, 46.6673764 ], + [ 6.5068539, 46.6672009 ], + [ 6.5068635, 46.6670812 ], + [ 6.50687, 46.6669456 ], + [ 6.5068665, 46.6667123 ], + [ 6.5068444, 46.6665363 ], + [ 6.5068056, 46.6663618 ], + [ 6.5067504, 46.6661893 ], + [ 6.5066787999999995, 46.6660197 ], + [ 6.5065913, 46.6658537 ], + [ 6.5064882, 46.665692 ], + [ 6.50637, 46.6655353 ], + [ 6.5062372, 46.6653842 ], + [ 6.5060902, 46.6652395 ], + [ 6.5059299, 46.6651016 ], + [ 6.5057568, 46.6649713 ], + [ 6.5055717, 46.6648491 ], + [ 6.5053753, 46.6647354 ], + [ 6.5051686, 46.6646309 ], + [ 6.5049524, 46.6645358 ], + [ 6.5047276, 46.6644507 ], + [ 6.5044953, 46.6643759 ], + [ 6.5042563, 46.6643118 ], + [ 6.5040116999999995, 46.6642585 ], + [ 6.5037626, 46.6642163 ], + [ 6.5035101, 46.6641855 ], + [ 6.5032551, 46.6641661 ], + [ 6.5031014, 46.66416 ], + [ 6.5029034, 46.6641548 ], + [ 6.5028008, 46.664153 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00024", + "country" : "CHE", + "name" : [ + { + "text" : "Hôpital régional eHnv site de St-Loup - Pompaples", + "lang" : "de-CH" + }, + { + "text" : "Hôpital régional eHnv site de St-Loup - Pompaples", + "lang" : "fr-CH" + }, + { + "text" : "Hôpital régional eHnv site de St-Loup - Pompaples", + "lang" : "it-CH" + }, + { + "text" : "Hôpital régional eHnv site de St-Loup - Pompaples", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kantonspolizei Waadt", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale vaudoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Vaud", + "lang" : "it-CH" + }, + { + "text" : "Vaud Cantonal Police", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.pcv@vd.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7345882, 47.5092942 ], + [ 7.7350603, 47.5099259 ], + [ 7.7356110000000005, 47.5098216 ], + [ 7.7365097, 47.5097239 ], + [ 7.7373585, 47.5096665 ], + [ 7.7375543, 47.5096159 ], + [ 7.7381078, 47.5093485 ], + [ 7.7382184, 47.5092729 ], + [ 7.7383435, 47.5091271 ], + [ 7.7384381, 47.5089803 ], + [ 7.7385117, 47.5089023 ], + [ 7.7385744, 47.5088695 ], + [ 7.7388664, 47.5088186 ], + [ 7.73914, 47.5087602 ], + [ 7.7394391, 47.5086565 ], + [ 7.7396556, 47.5085364 ], + [ 7.7397551, 47.5084758 ], + [ 7.7399101, 47.5084028 ], + [ 7.7400427, 47.5083095 ], + [ 7.7401499, 47.5082128 ], + [ 7.7401973, 47.5080987 ], + [ 7.7402045, 47.5079656 ], + [ 7.7401399, 47.5078409 ], + [ 7.7400471, 47.5077379 ], + [ 7.7399225, 47.5076378 ], + [ 7.7398056, 47.5075105 ], + [ 7.7397568, 47.5073749 ], + [ 7.7397515, 47.5071429 ], + [ 7.7397066, 47.5070073 ], + [ 7.7397254, 47.5067846 ], + [ 7.7397642, 47.5065836 ], + [ 7.7397, 47.5063128 ], + [ 7.7395264, 47.5063111 ], + [ 7.7392833, 47.5063578 ], + [ 7.7384927999999995, 47.5066114 ], + [ 7.7386378, 47.5068484 ], + [ 7.7385205, 47.5070873 ], + [ 7.7381654, 47.5074107 ], + [ 7.7380478, 47.5075178 ], + [ 7.7378742, 47.507649 ], + [ 7.7378219999999995, 47.5076882 ], + [ 7.7376549, 47.5078652 ], + [ 7.7374941, 47.5080342 ], + [ 7.737484, 47.508044 ], + [ 7.737302, 47.5082195 ], + [ 7.7370879, 47.508426299999996 ], + [ 7.7370514, 47.5084605 ], + [ 7.7368769, 47.5085725 ], + [ 7.7368097, 47.508609 ], + [ 7.736515, 47.5087737 ], + [ 7.7361974, 47.5089475 ], + [ 7.7361278, 47.5089855 ], + [ 7.7358763, 47.5090925 ], + [ 7.7358559, 47.5090998 ], + [ 7.7354617, 47.5092402 ], + [ 7.7353174, 47.5092737 ], + [ 7.7351536, 47.5093123 ], + [ 7.7349392, 47.5093472 ], + [ 7.7348334, 47.5093312 ], + [ 7.7345882, 47.5092942 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns125", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Büchlihau", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Büchlihau", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Büchlihau", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Büchlihau", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8794078, 47.4906338 ], + [ 7.8796756, 47.4909079 ], + [ 7.8798695, 47.491039 ], + [ 7.8802166, 47.4910814 ], + [ 7.8802155, 47.4911801 ], + [ 7.8804257, 47.4912477 ], + [ 7.8805376, 47.4913343 ], + [ 7.8805498, 47.491347 ], + [ 7.8805626, 47.4913593 ], + [ 7.8805762999999995, 47.4913712 ], + [ 7.8805907, 47.4913827 ], + [ 7.8806058, 47.4913938 ], + [ 7.880678, 47.4914545 ], + [ 7.8809332, 47.4916716 ], + [ 7.8809535, 47.4916894 ], + [ 7.8809733, 47.4917076 ], + [ 7.8809925, 47.491726 ], + [ 7.8810111, 47.4917447 ], + [ 7.8810291, 47.4917636 ], + [ 7.8810464, 47.4917829 ], + [ 7.881063, 47.4918023 ], + [ 7.8810789, 47.4918219 ], + [ 7.8810942, 47.4918417 ], + [ 7.8811089, 47.4918618 ], + [ 7.8811229, 47.4918821 ], + [ 7.8811362, 47.4919026 ], + [ 7.881144, 47.4919191 ], + [ 7.8811508, 47.4919358 ], + [ 7.8811568, 47.4919527 ], + [ 7.8811619, 47.4919696 ], + [ 7.8811661, 47.4919867 ], + [ 7.8811694, 47.4920039 ], + [ 7.8811718, 47.4920212 ], + [ 7.8811733, 47.4920385 ], + [ 7.8811739, 47.4920558 ], + [ 7.8811736, 47.4920731 ], + [ 7.8811723, 47.4920904 ], + [ 7.8811702, 47.4921077 ], + [ 7.8811671, 47.4921249 ], + [ 7.8811637, 47.4921424 ], + [ 7.8811594, 47.4921599 ], + [ 7.8811541, 47.4921772 ], + [ 7.8811478, 47.4921944 ], + [ 7.8811406999999996, 47.4922114 ], + [ 7.8811327, 47.4922282 ], + [ 7.8811237, 47.4922448 ], + [ 7.8811139, 47.4922612 ], + [ 7.8811032, 47.4922773 ], + [ 7.8810915999999995, 47.4922932 ], + [ 7.8810792, 47.4923088 ], + [ 7.881066, 47.492323999999996 ], + [ 7.8810999, 47.4927646 ], + [ 7.880884, 47.4930926 ], + [ 7.8808168, 47.493302 ], + [ 7.880738, 47.4934933 ], + [ 7.8806531, 47.4936616 ], + [ 7.8804181, 47.4939944 ], + [ 7.8805102, 47.4940995 ], + [ 7.8808954, 47.4939374 ], + [ 7.8809542, 47.4941109 ], + [ 7.8809701, 47.4941559 ], + [ 7.8810964, 47.4943908 ], + [ 7.8811472, 47.4945808 ], + [ 7.8812681, 47.494729 ], + [ 7.8814039, 47.4950515 ], + [ 7.8814999, 47.4953616 ], + [ 7.8815129, 47.4956987 ], + [ 7.8816539, 47.4956707 ], + [ 7.8818631, 47.4957272 ], + [ 7.8819351, 47.4958143 ], + [ 7.8819526, 47.495824999999996 ], + [ 7.8819694, 47.495836 ], + [ 7.8819856999999995, 47.495847499999996 ], + [ 7.8820014, 47.4958594 ], + [ 7.8820163999999995, 47.4958716 ], + [ 7.8820308, 47.4958842 ], + [ 7.8820446, 47.4958971 ], + [ 7.8820575999999996, 47.4959103 ], + [ 7.88207, 47.4959238 ], + [ 7.8820816, 47.4959377 ], + [ 7.8820925, 47.4959518 ], + [ 7.88223, 47.496115 ], + [ 7.8822461, 47.4961348 ], + [ 7.8822627, 47.4961544 ], + [ 7.88228, 47.4961737 ], + [ 7.8822978, 47.4961928 ], + [ 7.8823159, 47.4962121 ], + [ 7.8823346, 47.4962311 ], + [ 7.8823539, 47.4962498 ], + [ 7.8823738, 47.4962683 ], + [ 7.8826697, 47.4965248 ], + [ 7.8827469, 47.4966247 ], + [ 7.8828149, 47.4966734 ], + [ 7.8828534, 47.4966838 ], + [ 7.8829077, 47.4966985 ], + [ 7.8831521, 47.4967088 ], + [ 7.8831656, 47.4967097 ], + [ 7.8831792, 47.4967102 ], + [ 7.8831927, 47.4967102 ], + [ 7.8832063, 47.4967098 ], + [ 7.8833119, 47.4966904 ], + [ 7.883421, 47.4966354 ], + [ 7.8835155, 47.4965163 ], + [ 7.8837577, 47.4960883 ], + [ 7.8837636, 47.4960772 ], + [ 7.8837689, 47.4960659 ], + [ 7.8837735, 47.4960546 ], + [ 7.8837775, 47.496043 ], + [ 7.8837808, 47.4960314 ], + [ 7.8837835, 47.4960197 ], + [ 7.8837855, 47.496008 ], + [ 7.8837869, 47.495994 ], + [ 7.8837874, 47.4959801 ], + [ 7.883787, 47.4959661 ], + [ 7.8837855999999995, 47.4959521 ], + [ 7.883791, 47.4959292 ], + [ 7.8837039, 47.495711 ], + [ 7.8836724, 47.4955834 ], + [ 7.8836811, 47.4954733 ], + [ 7.8837165, 47.4953208 ], + [ 7.8842543, 47.4942831 ], + [ 7.8844268, 47.4939611 ], + [ 7.8844346, 47.493943 ], + [ 7.8844433, 47.493925 ], + [ 7.8844527, 47.4939071 ], + [ 7.8844629, 47.4938895 ], + [ 7.8844739, 47.4938721 ], + [ 7.8844856, 47.4938549 ], + [ 7.8844981, 47.493838 ], + [ 7.8845114, 47.4938213 ], + [ 7.8845254, 47.493805 ], + [ 7.8845401, 47.4937889 ], + [ 7.8845555, 47.4937731 ], + [ 7.8845716, 47.4937576 ], + [ 7.8845884, 47.4937425 ], + [ 7.8848991999999996, 47.4935269 ], + [ 7.8846643, 47.4932505 ], + [ 7.8845936, 47.4932193 ], + [ 7.8845872, 47.4932191 ], + [ 7.884518, 47.4931415 ], + [ 7.8843755, 47.4931471 ], + [ 7.8842964, 47.4931642 ], + [ 7.8842917, 47.4931958 ], + [ 7.8842597, 47.4931928 ], + [ 7.8840461, 47.4931891 ], + [ 7.8839597999999995, 47.4929291 ], + [ 7.8838298, 47.4925274 ], + [ 7.883847, 47.4925207 ], + [ 7.8838633, 47.492513 ], + [ 7.8838785, 47.4925044 ], + [ 7.8838925, 47.4924949 ], + [ 7.8839052, 47.4924845 ], + [ 7.8839164, 47.4924735 ], + [ 7.8839262, 47.4924618 ], + [ 7.8839344, 47.4924495 ], + [ 7.8839409, 47.4924368 ], + [ 7.8839458, 47.4924238 ], + [ 7.8839489, 47.4924105 ], + [ 7.8839502, 47.4923971 ], + [ 7.8839473, 47.4923723 ], + [ 7.8839415, 47.4923476 ], + [ 7.8839329, 47.4923234 ], + [ 7.8839214, 47.4922997 ], + [ 7.8838787, 47.4922256 ], + [ 7.8838691, 47.4922116 ], + [ 7.8838614, 47.4921971 ], + [ 7.8838555, 47.4921822 ], + [ 7.8838516, 47.4921671 ], + [ 7.8838495, 47.4921517 ], + [ 7.8838494, 47.4921363 ], + [ 7.8838512, 47.492121 ], + [ 7.883855, 47.4921058 ], + [ 7.8838606, 47.4920909 ], + [ 7.8838681, 47.4920763 ], + [ 7.8838774, 47.4920623 ], + [ 7.8838885, 47.4920488 ], + [ 7.8839272, 47.4920111 ], + [ 7.8839713, 47.4919761 ], + [ 7.8840202999999995, 47.4919443 ], + [ 7.884215, 47.491828 ], + [ 7.88434, 47.491742 ], + [ 7.8843954, 47.4916638 ], + [ 7.8844231, 47.4915674 ], + [ 7.8844317, 47.4915031 ], + [ 7.8844427, 47.4913269 ], + [ 7.8844652, 47.4912255 ], + [ 7.8844972, 47.4911433 ], + [ 7.8845286, 47.4910765 ], + [ 7.8845214, 47.4910687 ], + [ 7.8844569, 47.4909194 ], + [ 7.8844834, 47.4908188 ], + [ 7.8843936, 47.4906766 ], + [ 7.8841380999999995, 47.4906087 ], + [ 7.8839974999999995, 47.4906037 ], + [ 7.8839364, 47.4906285 ], + [ 7.8836697000000004, 47.4905509 ], + [ 7.8835949, 47.4906134 ], + [ 7.8833893, 47.4905522 ], + [ 7.8831474, 47.4904375 ], + [ 7.8829504, 47.4903931 ], + [ 7.882906, 47.490383 ], + [ 7.8829142, 47.4903689 ], + [ 7.8829272, 47.490348 ], + [ 7.8829408999999995, 47.4903274 ], + [ 7.8829554, 47.4903069 ], + [ 7.8829704, 47.4902867 ], + [ 7.8829861999999995, 47.4902667 ], + [ 7.8829983, 47.4902537 ], + [ 7.8830108, 47.490241 ], + [ 7.8830238, 47.4902284 ], + [ 7.8830372, 47.4902161 ], + [ 7.883051, 47.4902039 ], + [ 7.8829819, 47.4900325 ], + [ 7.8828668, 47.4897473 ], + [ 7.8828631, 47.489738 ], + [ 7.8828152, 47.4897496 ], + [ 7.8827564, 47.4897556 ], + [ 7.8825304, 47.4897875 ], + [ 7.8823515, 47.4897882 ], + [ 7.8823339, 47.4897884 ], + [ 7.8823115999999995, 47.489761 ], + [ 7.8822168999999995, 47.4897964 ], + [ 7.8821127, 47.489806 ], + [ 7.8820072, 47.4898157 ], + [ 7.8819717, 47.4895908 ], + [ 7.8819592, 47.4895295 ], + [ 7.8819441, 47.4894685 ], + [ 7.8819265, 47.4894078 ], + [ 7.8818627, 47.4892548 ], + [ 7.881843, 47.4891972 ], + [ 7.8818283000000005, 47.4891389 ], + [ 7.8818187, 47.4890802 ], + [ 7.8818119, 47.489022 ], + [ 7.8818101, 47.4889637 ], + [ 7.8818132, 47.4889055 ], + [ 7.8818149, 47.4888602 ], + [ 7.8818135, 47.488815 ], + [ 7.8818089, 47.4887699 ], + [ 7.8818006, 47.4887256 ], + [ 7.8817892, 47.4886816 ], + [ 7.8817748, 47.488638 ], + [ 7.8817498, 47.4885618 ], + [ 7.8816969, 47.4885756 ], + [ 7.8816764, 47.488581 ], + [ 7.881537, 47.4886174 ], + [ 7.8814145, 47.488653 ], + [ 7.8813547, 47.488686 ], + [ 7.8812844, 47.4887276 ], + [ 7.8811069, 47.4888443 ], + [ 7.8809889, 47.4889603 ], + [ 7.8809618, 47.4890234 ], + [ 7.8809786, 47.4890312 ], + [ 7.8809949, 47.4890395 ], + [ 7.8810106, 47.4890484 ], + [ 7.8810257, 47.4890577 ], + [ 7.8810401, 47.4890675 ], + [ 7.8810538, 47.4890777 ], + [ 7.8810669, 47.4890884 ], + [ 7.8810791, 47.4890994 ], + [ 7.8810906, 47.4891109 ], + [ 7.8811013, 47.4891226 ], + [ 7.8809804, 47.4892093 ], + [ 7.8808217, 47.489276 ], + [ 7.8808085, 47.4892821 ], + [ 7.8807948, 47.4892877 ], + [ 7.8807807, 47.4892927 ], + [ 7.8807661, 47.4892972 ], + [ 7.8807511, 47.489301 ], + [ 7.8807358999999995, 47.4893043 ], + [ 7.8807203, 47.4893068 ], + [ 7.8807046, 47.4893088 ], + [ 7.8806887, 47.4893101 ], + [ 7.8806728, 47.4893108 ], + [ 7.8806568, 47.4893108 ], + [ 7.8806408, 47.4893101 ], + [ 7.8802574, 47.4895652 ], + [ 7.8799953, 47.4897517 ], + [ 7.8798783, 47.4898181 ], + [ 7.8796595, 47.4899277 ], + [ 7.8798989, 47.4901769 ], + [ 7.8798176, 47.4903068 ], + [ 7.8794078, 47.4906338 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns249", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Steingraben", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Steingraben", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Steingraben", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Steingraben", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5580111, 47.4385409 ], + [ 7.5579225999999995, 47.4381602 ], + [ 7.5579918, 47.4377318 ], + [ 7.5573952, 47.4375777 ], + [ 7.5562199, 47.4374361 ], + [ 7.5557989, 47.437389 ], + [ 7.5547298, 47.4377113 ], + [ 7.5545898000000005, 47.4378542 ], + [ 7.55403, 47.4384616 ], + [ 7.5557337, 47.4396736 ], + [ 7.5557688, 47.4396973 ], + [ 7.5559614, 47.4395425 ], + [ 7.5563115, 47.4392327 ], + [ 7.5570127, 47.4391011 ], + [ 7.5577137, 47.4388505 ], + [ 7.5580111, 47.4385409 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr111", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Einschlag", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Einschlag", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Einschlag", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Einschlag", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 5.9709269, 46.2043303 ], + [ 5.9709079, 46.2043384 ], + [ 5.9723147, 46.2047288 ], + [ 5.973831, 46.2047157 ], + [ 5.9752247, 46.2043007 ], + [ 5.9762836, 46.2035469 ], + [ 5.9763064, 46.2035226 ], + [ 5.9768691, 46.2025454 ], + [ 5.9768507, 46.201493 ], + [ 5.9762541, 46.2005256 ], + [ 5.9751699, 46.1997902 ], + [ 5.9751142, 46.199765 ], + [ 5.9739951, 46.1994187 ], + [ 5.9727765, 46.1993316 ], + [ 5.9715793, 46.1995121 ], + [ 5.9705224999999995, 46.1999425 ], + [ 5.9697111, 46.2005799 ], + [ 5.9696887, 46.2006044 ], + [ 5.9693404999999995, 46.2012267 ], + [ 5.9693469, 46.2012259 ], + [ 5.9693781999999995, 46.2012093 ], + [ 5.9694739, 46.2011812 ], + [ 5.9695333999999995, 46.201156 ], + [ 5.969575, 46.2011014 ], + [ 5.9696812, 46.2010705 ], + [ 5.9697098, 46.2010348 ], + [ 5.9697652, 46.201041 ], + [ 5.9698344, 46.2011559 ], + [ 5.9699525, 46.2012026 ], + [ 5.9700285, 46.201221 ], + [ 5.9701251, 46.201283 ], + [ 5.9701958, 46.2013525 ], + [ 5.9702253, 46.2013773 ], + [ 5.9702953999999995, 46.2014258 ], + [ 5.970321, 46.2014501 ], + [ 5.9703636, 46.201469 ], + [ 5.970395, 46.2014764 ], + [ 5.9704515, 46.2014645 ], + [ 5.970467, 46.2014702 ], + [ 5.9704822, 46.2015116 ], + [ 5.9704552, 46.201625 ], + [ 5.9704783, 46.2016887 ], + [ 5.970518, 46.201726 ], + [ 5.9705896, 46.2017085 ], + [ 5.9706154, 46.2016743 ], + [ 5.9708193, 46.201591 ], + [ 5.9708427, 46.2015641 ], + [ 5.9708875, 46.2015407 ], + [ 5.9709607, 46.2015403 ], + [ 5.9710168, 46.2015648 ], + [ 5.971039, 46.2016169 ], + [ 5.9710772, 46.2016444 ], + [ 5.9711203, 46.2016501 ], + [ 5.9711822, 46.2016414 ], + [ 5.9713549, 46.2015702 ], + [ 5.9714271, 46.2015909 ], + [ 5.9715278, 46.2015903 ], + [ 5.9715708, 46.2016112 ], + [ 5.9716552, 46.2016731 ], + [ 5.9717082999999995, 46.2017023 ], + [ 5.971766, 46.2017689 ], + [ 5.9718149, 46.2018143 ], + [ 5.9719701, 46.2019659 ], + [ 5.9720404, 46.2020858 ], + [ 5.9720916, 46.2021316 ], + [ 5.972107, 46.2021552 ], + [ 5.97215, 46.2021821 ], + [ 5.9722029, 46.2021828 ], + [ 5.9722301, 46.2021634 ], + [ 5.9722401, 46.2021621 ], + [ 5.9722791, 46.2021655 ], + [ 5.9723071999999995, 46.2021614 ], + [ 5.9723203, 46.2021303 ], + [ 5.9723652, 46.202117 ], + [ 5.9724183, 46.2021256 ], + [ 5.9724626999999995, 46.2021274 ], + [ 5.9726224, 46.202159 ], + [ 5.9726835, 46.2021736 ], + [ 5.9727383, 46.2021949 ], + [ 5.972728, 46.2022409 ], + [ 5.972718, 46.2022512 ], + [ 5.9726834, 46.2022703 ], + [ 5.972641, 46.2022601 ], + [ 5.972604, 46.2022646 ], + [ 5.9725705, 46.2022849 ], + [ 5.9725605999999996, 46.2023112 ], + [ 5.9725544, 46.2023538 ], + [ 5.9725317, 46.2023803 ], + [ 5.9725421, 46.2024022 ], + [ 5.9725968, 46.2024162 ], + [ 5.972651, 46.2024233 ], + [ 5.9727795, 46.2024125 ], + [ 5.9728058, 46.2024131 ], + [ 5.9728737, 46.2024198 ], + [ 5.9730032, 46.2024393 ], + [ 5.9730887, 46.2024589 ], + [ 5.9732520000000005, 46.2024914 ], + [ 5.9732644, 46.2024915 ], + [ 5.9733932, 46.2025336 ], + [ 5.9734299, 46.2025752 ], + [ 5.9734437, 46.2026281 ], + [ 5.9733996, 46.2026861 ], + [ 5.9733971, 46.2027096 ], + [ 5.9734308, 46.2027358 ], + [ 5.9734853, 46.20275 ], + [ 5.9735182, 46.2027778 ], + [ 5.9734437, 46.2028163 ], + [ 5.9733903999999995, 46.2028345 ], + [ 5.973278, 46.2028608 ], + [ 5.9732529, 46.2029313 ], + [ 5.9732074, 46.202973 ], + [ 5.9731552, 46.2029907 ], + [ 5.9731026, 46.2030219 ], + [ 5.9730527, 46.2030877 ], + [ 5.9730359, 46.2031724 ], + [ 5.9729928, 46.2032316 ], + [ 5.9729186, 46.2032552 ], + [ 5.9728858, 46.2032896 ], + [ 5.9728311, 46.2033278 ], + [ 5.9727823, 46.2033398 ], + [ 5.9727757, 46.2033557 ], + [ 5.9727813, 46.2033723 ], + [ 5.9728131, 46.2034013 ], + [ 5.9728364, 46.2034129 ], + [ 5.9728747, 46.2034437 ], + [ 5.9728823, 46.2034627 ], + [ 5.972876, 46.203484 ], + [ 5.9728476, 46.2035014 ], + [ 5.972835, 46.2035206 ], + [ 5.9728316, 46.2036002 ], + [ 5.9728088, 46.2036172 ], + [ 5.9726951, 46.2036508 ], + [ 5.9726627, 46.2036568 ], + [ 5.9726194, 46.2036814 ], + [ 5.9725793, 46.2036963 ], + [ 5.9725522, 46.2037152 ], + [ 5.9724974, 46.2037411 ], + [ 5.9723777, 46.2037656 ], + [ 5.9723439, 46.2037889 ], + [ 5.9721767, 46.203851 ], + [ 5.972082, 46.2038567 ], + [ 5.9720227, 46.2038792 ], + [ 5.9719472, 46.2039342 ], + [ 5.9719207, 46.2039664 ], + [ 5.9719103, 46.2039961 ], + [ 5.9718883, 46.2040158 ], + [ 5.971788, 46.2040657 ], + [ 5.9717609, 46.2040817 ], + [ 5.9717101, 46.2041296 ], + [ 5.9716313, 46.204175 ], + [ 5.9715931, 46.2041883 ], + [ 5.9715239, 46.2042541 ], + [ 5.9714107, 46.2042789 ], + [ 5.9713560999999995, 46.2043257 ], + [ 5.9712092, 46.2043327 ], + [ 5.9711167, 46.204298 ], + [ 5.9709269, 46.2043303 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-59", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8525683, 47.5130396 ], + [ 7.8525632, 47.5130591 ], + [ 7.8525541, 47.5130903 ], + [ 7.8525446, 47.5131215 ], + [ 7.8525348, 47.5131527 ], + [ 7.8525247, 47.5131838 ], + [ 7.8525141, 47.5132146 ], + [ 7.8525031, 47.5132453 ], + [ 7.8524919, 47.5132759 ], + [ 7.8524803, 47.5133065 ], + [ 7.8523262, 47.5136322 ], + [ 7.8522751, 47.5137407 ], + [ 7.8522638, 47.5137629 ], + [ 7.8522533, 47.5137852 ], + [ 7.8522435999999995, 47.5138076 ], + [ 7.8522346, 47.5138302 ], + [ 7.8522263, 47.5138529 ], + [ 7.852219, 47.5138747 ], + [ 7.8522124, 47.5138965 ], + [ 7.8522065, 47.5139184 ], + [ 7.8522013, 47.5139405 ], + [ 7.8521994, 47.5139494 ], + [ 7.8523205, 47.51397 ], + [ 7.8523408, 47.5140462 ], + [ 7.8526454999999995, 47.5141229 ], + [ 7.8526183, 47.5136694 ], + [ 7.853104, 47.513663 ], + [ 7.8531319, 47.5133707 ], + [ 7.8532103, 47.5131345 ], + [ 7.8530827, 47.5130784 ], + [ 7.8525683, 47.5130396 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns159", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Seematten-Holl", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Seematten-Holl", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Seematten-Holl", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Seematten-Holl", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7344296, 47.48635 ], + [ 7.7344234, 47.4862088 ], + [ 7.7344063, 47.486068 ], + [ 7.7343782999999995, 47.485928 ], + [ 7.7343395, 47.4857892 ], + [ 7.7342901, 47.485652 ], + [ 7.7342302, 47.4855167 ], + [ 7.7341599, 47.4853837 ], + [ 7.7340794, 47.4852534 ], + [ 7.733989, 47.4851262 ], + [ 7.7338889, 47.4850023 ], + [ 7.7337793, 47.4848821 ], + [ 7.7336606, 47.484766 ], + [ 7.7335331, 47.4846542 ], + [ 7.7333972, 47.4845472 ], + [ 7.7332532, 47.4844451 ], + [ 7.7331015, 47.4843482 ], + [ 7.7329425, 47.4842569 ], + [ 7.7327767, 47.4841713 ], + [ 7.7326046, 47.4840917 ], + [ 7.7324265, 47.4840184 ], + [ 7.732243, 47.4839514 ], + [ 7.7320545, 47.4838911 ], + [ 7.7318617, 47.4838375 ], + [ 7.731665, 47.4837909 ], + [ 7.731465, 47.4837513 ], + [ 7.7312622, 47.4837188 ], + [ 7.7310572, 47.4836936 ], + [ 7.7308504, 47.4836756 ], + [ 7.7306425999999995, 47.4836651 ], + [ 7.7304343, 47.4836619 ], + [ 7.730226, 47.4836661 ], + [ 7.7300183, 47.4836777 ], + [ 7.7298118, 47.4836967 ], + [ 7.7296071, 47.483723 ], + [ 7.7294046, 47.4837565 ], + [ 7.729205, 47.4837971 ], + [ 7.7290089, 47.4838447 ], + [ 7.7288166, 47.4838993 ], + [ 7.7286289, 47.4839606 ], + [ 7.7284461, 47.4840284 ], + [ 7.7282688, 47.4841027 ], + [ 7.7280975, 47.4841831 ], + [ 7.7279327, 47.4842695 ], + [ 7.7277747, 47.4843617 ], + [ 7.7276241, 47.4844593 ], + [ 7.7274812, 47.4845621 ], + [ 7.7273464, 47.4846699 ], + [ 7.7272202, 47.4847822 ], + [ 7.7271028, 47.484899 ], + [ 7.7269946, 47.4850197 ], + [ 7.7268958, 47.4851441 ], + [ 7.7268068, 47.4852718 ], + [ 7.7267277, 47.4854025 ], + [ 7.7266589, 47.4855358 ], + [ 7.7266004, 47.4856714 ], + [ 7.7265525, 47.4858089 ], + [ 7.7265153, 47.4859479 ], + [ 7.7264889, 47.486088 ], + [ 7.7264733, 47.4862289 ], + [ 7.7264686000000005, 47.4863701 ], + [ 7.7264748, 47.4865113 ], + [ 7.7264919, 47.4866521 ], + [ 7.7265198999999996, 47.4867921 ], + [ 7.7265586, 47.4869309 ], + [ 7.726608, 47.4870681 ], + [ 7.7266679, 47.4872034 ], + [ 7.7267382, 47.4873364 ], + [ 7.7268187, 47.4874667 ], + [ 7.7269091, 47.487594 ], + [ 7.7270092, 47.4877179 ], + [ 7.7271187, 47.4878381 ], + [ 7.7272374, 47.4879542 ], + [ 7.7273648999999995, 47.4880659 ], + [ 7.7275008, 47.488173 ], + [ 7.7276448, 47.4882751 ], + [ 7.7277965, 47.488372 ], + [ 7.7279555, 47.4884633 ], + [ 7.7281213, 47.4885489 ], + [ 7.7282934999999995, 47.4886285 ], + [ 7.7284716, 47.4887018 ], + [ 7.7286551, 47.4887688 ], + [ 7.7288435, 47.4888291 ], + [ 7.7290364, 47.4888827 ], + [ 7.7292331, 47.4889294 ], + [ 7.7294331, 47.488969 ], + [ 7.7296359, 47.4890015 ], + [ 7.729841, 47.4890267 ], + [ 7.7300477, 47.4890446 ], + [ 7.7302555, 47.4890552 ], + [ 7.7304639, 47.4890583 ], + [ 7.7306722, 47.4890541 ], + [ 7.7308799, 47.4890425 ], + [ 7.7310865, 47.4890235 ], + [ 7.7312912, 47.4889973 ], + [ 7.7314937, 47.4889638 ], + [ 7.7316933, 47.4889232 ], + [ 7.7318895, 47.4888755 ], + [ 7.7320817, 47.488821 ], + [ 7.7322695, 47.4887597 ], + [ 7.7324523, 47.4886918 ], + [ 7.7326296, 47.4886175 ], + [ 7.7328009, 47.4885371 ], + [ 7.7329657, 47.4884507 ], + [ 7.7331237, 47.4883585 ], + [ 7.7332743, 47.4882609 ], + [ 7.7334172, 47.4881581 ], + [ 7.7335519999999995, 47.4880503 ], + [ 7.7336782, 47.4879379 ], + [ 7.7337956, 47.4878212 ], + [ 7.7339038, 47.4877005 ], + [ 7.7340026, 47.4875761 ], + [ 7.7340916, 47.4874483 ], + [ 7.7341706, 47.4873176 ], + [ 7.7342395, 47.4871843 ], + [ 7.7342979, 47.4870487 ], + [ 7.7343458, 47.4869112 ], + [ 7.734383, 47.4867722 ], + [ 7.7344094, 47.4866321 ], + [ 7.734425, 47.4864912 ], + [ 7.7344296, 47.48635 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LIE0001", + "country" : "CHE", + "name" : [ + { + "text" : "Gefängnis Liestal", + "lang" : "de-CH" + }, + { + "text" : "Gefängnis Liestal", + "lang" : "fr-CH" + }, + { + "text" : "Gefängnis Liestal", + "lang" : "it-CH" + }, + { + "text" : "Gefängnis Liestal", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Justizvollzug Basel-Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Amt für Justizvollzug Basel-Landschaft", + "lang" : "fr-CH" + }, + { + "text" : "Amt für Justizvollzug Basel-Landschaft", + "lang" : "it-CH" + }, + { + "text" : "Amt für Justizvollzug Basel-Landschaft", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Amtsleitung", + "lang" : "de-CH" + }, + { + "text" : "Amtsleitung", + "lang" : "fr-CH" + }, + { + "text" : "Amtsleitung", + "lang" : "it-CH" + }, + { + "text" : "Amtsleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Nicolas Pozar", + "lang" : "de-CH" + }, + { + "text" : "Nicolas Pozar", + "lang" : "fr-CH" + }, + { + "text" : "Nicolas Pozar", + "lang" : "it-CH" + }, + { + "text" : "Nicolas Pozar", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/sicherheitsdirektion/bv-sid/justizvollzug", + "email" : "kanzlei.ajv@bl.ch", + "phone" : "0041615529045", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P21DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.0365725, 47.1763041 ], + [ 9.0370618, 47.1760328 ], + [ 9.0382602, 47.1753828 ], + [ 9.0386841, 47.1752203 ], + [ 9.0392153, 47.1740586 ], + [ 9.0394716, 47.1741136 ], + [ 9.0403038, 47.1724277 ], + [ 9.041453, 47.1726942 ], + [ 9.0418291, 47.1715958 ], + [ 9.0422827, 47.1714114 ], + [ 9.0410663, 47.1700473 ], + [ 9.0413944, 47.1693284 ], + [ 9.0401402, 47.1690778 ], + [ 9.0398192, 47.1697696 ], + [ 9.0394807, 47.1697005 ], + [ 9.0386321, 47.1716296 ], + [ 9.038792, 47.1718603 ], + [ 9.0385617, 47.1717898 ], + [ 9.0365725, 47.1763041 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZX002", + "country" : "CHE", + "name" : [ + { + "text" : "LSZX Schänis (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSZX Schänis (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSZX Schänis (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSZX Schänis (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Flugplatz Schänis", + "lang" : "de-CH" + }, + { + "text" : "Flugplatz Schänis", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatz Schänis", + "lang" : "it-CH" + }, + { + "text" : "Flugplatz Schänis", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Lukas Zeitner", + "lang" : "de-CH" + }, + { + "text" : "Lukas Zeitner", + "lang" : "fr-CH" + }, + { + "text" : "Lukas Zeitner", + "lang" : "it-CH" + }, + { + "text" : "Lukas Zeitner", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.flugplatz-schaenis.ch", + "email" : "flugplatzleiter@flugplatz-schaenis.ch", + "phone" : "0041552505000", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT12H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6581471, 47.503334100000004 ], + [ 7.6581428, 47.5033396 ], + [ 7.658134, 47.5033533 ], + [ 7.6581272, 47.5033674 ], + [ 7.6581228, 47.5033821 ], + [ 7.6581207, 47.5033968 ], + [ 7.6581208, 47.5034118 ], + [ 7.6581232, 47.5034265 ], + [ 7.6581279, 47.5034411 ], + [ 7.6581348, 47.5034553 ], + [ 7.6581439, 47.5034688 ], + [ 7.6581548999999995, 47.5034817 ], + [ 7.6581712, 47.5034975 ], + [ 7.6582037, 47.5035347 ], + [ 7.6582302, 47.5035739 ], + [ 7.6582505, 47.5036148 ], + [ 7.6582645, 47.5036569 ], + [ 7.6583206, 47.5036722 ], + [ 7.6586043, 47.503764 ], + [ 7.6588722, 47.5038753 ], + [ 7.6591216, 47.5040051 ], + [ 7.6593496, 47.5041518 ], + [ 7.6597295, 47.5042166 ], + [ 7.6600203, 47.5042925 ], + [ 7.6601511, 47.5042996 ], + [ 7.6604051, 47.5042548 ], + [ 7.6605358, 47.5042521 ], + [ 7.6606776, 47.5042813 ], + [ 7.6611392, 47.5044011 ], + [ 7.6612941, 47.5044333 ], + [ 7.6614662, 47.5044566 ], + [ 7.6616411, 47.5044676 ], + [ 7.6618167, 47.5044662 ], + [ 7.6621559999999995, 47.5044422 ], + [ 7.6624991, 47.5043934 ], + [ 7.6625369, 47.5043848 ], + [ 7.6625941, 47.5043678 ], + [ 7.6626482, 47.504347 ], + [ 7.662699, 47.5043225 ], + [ 7.6627456, 47.5042944 ], + [ 7.6627875, 47.5042632 ], + [ 7.6628246, 47.5042292 ], + [ 7.6628561, 47.5041928 ], + [ 7.662882, 47.5041544 ], + [ 7.6629016, 47.5041143 ], + [ 7.6629149, 47.5040731 ], + [ 7.6630478, 47.5036498 ], + [ 7.663181, 47.5033836 ], + [ 7.6631878, 47.5033668 ], + [ 7.6632033, 47.5033143 ], + [ 7.6632107, 47.503261 ], + [ 7.6632098, 47.5032074 ], + [ 7.6632007, 47.5031543 ], + [ 7.6631833, 47.503102 ], + [ 7.663158, 47.5030513 ], + [ 7.6631251, 47.5030026 ], + [ 7.6630848, 47.5029565 ], + [ 7.6626508, 47.5024291 ], + [ 7.6624379000000005, 47.502134 ], + [ 7.6614926, 47.5023708 ], + [ 7.6616383, 47.5025844 ], + [ 7.6611736, 47.5027255 ], + [ 7.6611531, 47.5027072 ], + [ 7.6610909, 47.5026595 ], + [ 7.6610216, 47.5026164 ], + [ 7.6609461, 47.5025784 ], + [ 7.6608652, 47.502546 ], + [ 7.6607796, 47.5025195 ], + [ 7.6606905, 47.5024992 ], + [ 7.6605986999999995, 47.5024854 ], + [ 7.6605052, 47.5024781 ], + [ 7.6604112, 47.5024774 ], + [ 7.6603176, 47.5024835 ], + [ 7.6602254, 47.502496 ], + [ 7.6601357, 47.5025152 ], + [ 7.6600494, 47.5025405 ], + [ 7.6599675, 47.5025718 ], + [ 7.6598908, 47.5026088 ], + [ 7.6596134, 47.5027878 ], + [ 7.659427, 47.5028988 ], + [ 7.6592166, 47.5030002 ], + [ 7.6589917, 47.5030862 ], + [ 7.6587548, 47.5031557 ], + [ 7.6585084, 47.503208 ], + [ 7.6582553, 47.5032427 ], + [ 7.6581471, 47.503334100000004 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns145", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Sulzgrube", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Sulzgrube", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Sulzgrube", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Sulzgrube", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.9033608, 47.4137058 ], + [ 7.9034046, 47.4136458 ], + [ 7.9034468, 47.413564 ], + [ 7.9032791, 47.4134656 ], + [ 7.9032675999999995, 47.413356 ], + [ 7.9031172, 47.413318 ], + [ 7.9030648, 47.4133967 ], + [ 7.9030123, 47.4134054 ], + [ 7.9030068, 47.4134272 ], + [ 7.9029641, 47.4134223 ], + [ 7.9029259, 47.4134355 ], + [ 7.9029073, 47.4134782 ], + [ 7.9028887, 47.4135209 ], + [ 7.9028743, 47.4136803 ], + [ 7.9029381999999995, 47.4137227 ], + [ 7.9030328, 47.4139965 ], + [ 7.9034536, 47.4143578 ], + [ 7.903598, 47.4144818 ], + [ 7.9038088, 47.4145998 ], + [ 7.9048088, 47.4151034 ], + [ 7.9048736, 47.4150278 ], + [ 7.9047711, 47.4150079 ], + [ 7.9047957, 47.4148722 ], + [ 7.9050206, 47.4146281 ], + [ 7.9053772, 47.4145462 ], + [ 7.9053785, 47.4145209 ], + [ 7.9052641, 47.414492 ], + [ 7.9050245, 47.4144844 ], + [ 7.9048495, 47.4144661 ], + [ 7.9043143, 47.414229399999996 ], + [ 7.9037757, 47.4138611 ], + [ 7.9037428, 47.413843 ], + [ 7.9036869, 47.4138322 ], + [ 7.9035237, 47.4138201 ], + [ 7.9034126, 47.4137803 ], + [ 7.9033608, 47.4137058 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr056", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Flüematt", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Flüematt", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Flüematt", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Flüematt", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.3551111, 47.329177 ], + [ 8.3549366, 47.3291501 ], + [ 8.3546908, 47.3291377 ], + [ 8.3541981, 47.3291342 ], + [ 8.3536425, 47.329249 ], + [ 8.3531951, 47.3293556 ], + [ 8.3526938, 47.3294811 ], + [ 8.352293, 47.3296038 ], + [ 8.3520427, 47.3297173 ], + [ 8.3518236, 47.3298781 ], + [ 8.3515748, 47.3302076 ], + [ 8.351491, 47.3303923 ], + [ 8.3512571, 47.330814 ], + [ 8.3510009, 47.3311638 ], + [ 8.3507673, 47.3316342 ], + [ 8.3503126, 47.3322713 ], + [ 8.3501261, 47.3324347 ], + [ 8.3496872, 47.3327513 ], + [ 8.3491949, 47.333096 ], + [ 8.3487395, 47.3334185 ], + [ 8.3483024, 47.3336534 ], + [ 8.3478768, 47.3338614 ], + [ 8.347228, 47.3342099 ], + [ 8.3467669, 47.3345162 ], + [ 8.346461, 47.3347504 ], + [ 8.3459024, 47.3350829 ], + [ 8.3454332, 47.3353415 ], + [ 8.3450033, 47.3355855 ], + [ 8.3447866, 47.335703 ], + [ 8.3443261, 47.3358812 ], + [ 8.3438601, 47.3360763 ], + [ 8.343332, 47.3362796 ], + [ 8.3430164, 47.3364087 ], + [ 8.3427834, 47.336459 ], + [ 8.3422701, 47.336535 ], + [ 8.3417573, 47.3365851 ], + [ 8.3414559, 47.3366562 ], + [ 8.3412726, 47.3367719 ], + [ 8.3407412, 47.3369937 ], + [ 8.3395654, 47.3372488 ], + [ 8.338837, 47.3375626 ], + [ 8.3383216, 47.3378673 ], + [ 8.3376316, 47.3382854 ], + [ 8.336883, 47.3386992 ], + [ 8.3364093, 47.3390048 ], + [ 8.3362942, 47.3391427 ], + [ 8.3360879, 47.3396278 ], + [ 8.335893, 47.3399345 ], + [ 8.3355392, 47.3405757 ], + [ 8.3354913, 47.3408022 ], + [ 8.3354908, 47.3411483 ], + [ 8.3355594, 47.3416625 ], + [ 8.3356231, 47.3423152 ], + [ 8.3357542, 47.3426903 ], + [ 8.3359216, 47.3431198 ], + [ 8.3361087, 47.3434194 ], + [ 8.3364226, 47.3438153 ], + [ 8.3366983, 47.3441508 ], + [ 8.3370013, 47.3444372 ], + [ 8.3370456, 47.3444614 ], + [ 8.3374189, 47.3446789 ], + [ 8.3374884, 47.344705 ], + [ 8.3377849, 47.3448226 ], + [ 8.3379788, 47.3449195 ], + [ 8.3381899, 47.3449804 ], + [ 8.3384177, 47.3449957 ], + [ 8.3387837, 47.3449332 ], + [ 8.3391556, 47.3448046 ], + [ 8.3395133, 47.3446324 ], + [ 8.339679, 47.3445054 ], + [ 8.3397678, 47.3443811 ], + [ 8.3398716, 47.3442104 ], + [ 8.3399556, 47.3439896 ], + [ 8.3401754, 47.3436761 ], + [ 8.3403617, 47.3433749 ], + [ 8.3407588, 47.342809 ], + [ 8.3410392, 47.3425173 ], + [ 8.3411619, 47.3423987 ], + [ 8.341194699999999, 47.3423299 ], + [ 8.3420474, 47.3420372 ], + [ 8.3422321, 47.3420015 ], + [ 8.3431466, 47.3422845 ], + [ 8.3436905, 47.342373 ], + [ 8.3441337, 47.342473 ], + [ 8.3446683, 47.3426594 ], + [ 8.3448738, 47.3428288 ], + [ 8.3449688, 47.3429705 ], + [ 8.344969, 47.3432237 ], + [ 8.3450128, 47.3435121 ], + [ 8.3464349, 47.3434827 ], + [ 8.3465437, 47.3434589 ], + [ 8.3465759, 47.3433617 ], + [ 8.346723, 47.3431607 ], + [ 8.3469352, 47.3427993 ], + [ 8.3468775, 47.3427075 ], + [ 8.3467059, 47.3424917 ], + [ 8.3465992, 47.3422838 ], + [ 8.346508, 47.3420442 ], + [ 8.3465129, 47.3418502 ], + [ 8.346269, 47.3418524 ], + [ 8.3460006, 47.3417582 ], + [ 8.3458175, 47.341667 ], + [ 8.3450918, 47.3412153 ], + [ 8.3448806, 47.3410563 ], + [ 8.3446423, 47.3408908 ], + [ 8.3443369, 47.3408342 ], + [ 8.3439123, 47.3407825 ], + [ 8.3437218, 47.340699 ], + [ 8.3432728, 47.3404202 ], + [ 8.3430242, 47.3403342 ], + [ 8.3425358, 47.3403099 ], + [ 8.3422242, 47.3402727 ], + [ 8.3421723, 47.3402332 ], + [ 8.341547, 47.3402877 ], + [ 8.3407024, 47.3403657 ], + [ 8.340534, 47.3404122 ], + [ 8.3402409, 47.3405348 ], + [ 8.339945, 47.340675 ], + [ 8.3397325, 47.3408349 ], + [ 8.3393466, 47.3411819 ], + [ 8.3391841, 47.3414088 ], + [ 8.3388395, 47.3419622 ], + [ 8.3384801, 47.3426824 ], + [ 8.3382279, 47.3430647 ], + [ 8.3380451, 47.343116 ], + [ 8.3379097, 47.3430771 ], + [ 8.3377706, 47.3429548 ], + [ 8.3376014, 47.3426402 ], + [ 8.3375442, 47.3424147 ], + [ 8.3374726, 47.3418655 ], + [ 8.3374959, 47.3413456 ], + [ 8.3375887, 47.340971 ], + [ 8.3376757, 47.3408306 ], + [ 8.3379105, 47.3406874 ], + [ 8.3381635, 47.3405246 ], + [ 8.338186199999999, 47.3404434 ], + [ 8.3381892, 47.3402442 ], + [ 8.3382583, 47.3399504 ], + [ 8.3384573, 47.3396034 ], + [ 8.3386509, 47.3394242 ], + [ 8.3391146, 47.339204 ], + [ 8.3398344, 47.3389754 ], + [ 8.3400848, 47.3388648 ], + [ 8.3404792, 47.3386251 ], + [ 8.340891599999999, 47.3384013 ], + [ 8.3412349, 47.3383071 ], + [ 8.3414034, 47.3382942 ], + [ 8.3416992, 47.3383772 ], + [ 8.3417143, 47.3382915 ], + [ 8.3418433, 47.3379994 ], + [ 8.3419588, 47.3378843 ], + [ 8.3422227, 47.33776 ], + [ 8.3427846, 47.3375735 ], + [ 8.3435525, 47.3373939 ], + [ 8.3443944, 47.3371872 ], + [ 8.3451481, 47.3369013 ], + [ 8.3458783, 47.3365326 ], + [ 8.3471308, 47.3358625 ], + [ 8.3474228, 47.335621 ], + [ 8.3476809, 47.3353218 ], + [ 8.3478485, 47.3351915 ], + [ 8.3479866, 47.3351909 ], + [ 8.3483949, 47.335181 ], + [ 8.3487324, 47.3351982 ], + [ 8.3490196, 47.335244 ], + [ 8.3489661, 47.3351133 ], + [ 8.3489533, 47.3349023 ], + [ 8.3490027, 47.3346979 ], + [ 8.3490838, 47.3345831 ], + [ 8.3496925, 47.3342484 ], + [ 8.3499006, 47.3341591 ], + [ 8.3501747, 47.3340909 ], + [ 8.3506293, 47.333959 ], + [ 8.351859900000001, 47.3335981 ], + [ 8.3522382, 47.3333728 ], + [ 8.3526324, 47.333125 ], + [ 8.3529934, 47.3330196 ], + [ 8.3533153, 47.3330296 ], + [ 8.3534876, 47.3330899 ], + [ 8.3539742, 47.3333951 ], + [ 8.3549206, 47.3336352 ], + [ 8.3555026, 47.3337215 ], + [ 8.3566835, 47.3331576 ], + [ 8.357903, 47.3325079 ], + [ 8.3580135, 47.3325403 ], + [ 8.3586065, 47.3327812 ], + [ 8.3590288, 47.3330957 ], + [ 8.3595629, 47.3333617 ], + [ 8.3602267, 47.3336123 ], + [ 8.3608142, 47.3338232 ], + [ 8.3612715, 47.334236 ], + [ 8.361482, 47.3344217 ], + [ 8.3617971, 47.3349635 ], + [ 8.3621804, 47.3356373 ], + [ 8.3624374, 47.335772 ], + [ 8.3626643, 47.3357428 ], + [ 8.362964, 47.3356174 ], + [ 8.3632451, 47.3356105 ], + [ 8.3641921, 47.3353341 ], + [ 8.3646915, 47.3351341 ], + [ 8.3649434, 47.3349726 ], + [ 8.3653136, 47.334669 ], + [ 8.3657489, 47.3343398 ], + [ 8.3667436, 47.3337766 ], + [ 8.3677425, 47.3332942 ], + [ 8.3687379, 47.3328991 ], + [ 8.369301, 47.3325965 ], + [ 8.3698908, 47.3321222 ], + [ 8.3707923, 47.331286 ], + [ 8.3714411, 47.3308646 ], + [ 8.3715436, 47.3313834 ], + [ 8.3717507, 47.3316542 ], + [ 8.3721432, 47.3319071 ], + [ 8.3725753, 47.3321223 ], + [ 8.3726457, 47.3323131 ], + [ 8.3726114, 47.3326232 ], + [ 8.3725991, 47.3328746 ], + [ 8.3726973, 47.3329506 ], + [ 8.3730511, 47.3332211 ], + [ 8.3731879, 47.333384 ], + [ 8.373469, 47.3333818 ], + [ 8.3736018, 47.3333169 ], + [ 8.374375, 47.3324981 ], + [ 8.3756548, 47.3311428 ], + [ 8.3764527, 47.3302978 ], + [ 8.3781092, 47.3285304 ], + [ 8.3791415, 47.3274027 ], + [ 8.3790098, 47.3273543 ], + [ 8.3770169, 47.3265751 ], + [ 8.3775748, 47.3260249 ], + [ 8.3780083, 47.3254919 ], + [ 8.3784146, 47.3250113 ], + [ 8.3785727, 47.3248738 ], + [ 8.378783, 47.3246087 ], + [ 8.378833, 47.324536 ], + [ 8.377738, 47.3242858 ], + [ 8.3778296, 47.3240421 ], + [ 8.3770082, 47.3238368 ], + [ 8.3771829, 47.3235186 ], + [ 8.3769644, 47.3234577 ], + [ 8.3771997, 47.3230667 ], + [ 8.3771068, 47.323001 ], + [ 8.3770329, 47.3228883 ], + [ 8.3769268, 47.3228248 ], + [ 8.3769186, 47.322736 ], + [ 8.3767299, 47.3225389 ], + [ 8.3769186, 47.32236 ], + [ 8.3781865, 47.3210753 ], + [ 8.3776973, 47.3210133 ], + [ 8.3776861, 47.3206673 ], + [ 8.3777814, 47.3205835 ], + [ 8.3779635, 47.3205197 ], + [ 8.37778, 47.3202201 ], + [ 8.3784955, 47.32003 ], + [ 8.3791595, 47.3198925 ], + [ 8.3789628, 47.3194664 ], + [ 8.3788059, 47.3192288 ], + [ 8.3785687, 47.3190543 ], + [ 8.3782367, 47.3189843 ], + [ 8.3777336, 47.3190299 ], + [ 8.3768714, 47.3191996 ], + [ 8.373869299999999, 47.319203 ], + [ 8.3720885, 47.3191587 ], + [ 8.3720772, 47.3192558 ], + [ 8.3720157, 47.319433 ], + [ 8.3710983, 47.319214 ], + [ 8.3710768, 47.3192565 ], + [ 8.3707829, 47.3191864 ], + [ 8.3705117, 47.3193577 ], + [ 8.370542, 47.3203066 ], + [ 8.369848, 47.320284 ], + [ 8.3696944, 47.3196772 ], + [ 8.3695011, 47.3197557 ], + [ 8.3693705, 47.3198502 ], + [ 8.3693472, 47.319975 ], + [ 8.3692954, 47.3205049 ], + [ 8.3692215, 47.3205839 ], + [ 8.3687327, 47.3206157 ], + [ 8.3683409, 47.3205435 ], + [ 8.3690923, 47.3192796 ], + [ 8.3668964, 47.3190307 ], + [ 8.3666327, 47.3196968 ], + [ 8.366064399999999, 47.3198862 ], + [ 8.3651525, 47.3189795 ], + [ 8.3649209, 47.3188939 ], + [ 8.3628695, 47.3183828 ], + [ 8.3626963, 47.3185491 ], + [ 8.3623905, 47.3187465 ], + [ 8.3616045, 47.3191878 ], + [ 8.3612378, 47.3196857 ], + [ 8.3611543, 47.3199715 ], + [ 8.3612313, 47.3205559 ], + [ 8.3609777, 47.321233 ], + [ 8.3605251, 47.3218366 ], + [ 8.3599574, 47.3221862 ], + [ 8.3595915, 47.3228782 ], + [ 8.3591194, 47.3234529 ], + [ 8.3584087, 47.3231886 ], + [ 8.3579668, 47.323162 ], + [ 8.3570919, 47.3235891 ], + [ 8.3568799, 47.3237927 ], + [ 8.3561014, 47.3255429 ], + [ 8.35577, 47.3262847 ], + [ 8.3558195, 47.3265693 ], + [ 8.3561118, 47.326882 ], + [ 8.3560251, 47.3269876 ], + [ 8.3551222, 47.3270848 ], + [ 8.3551111, 47.329177 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "WZV0027", + "country" : "CHE", + "name" : [ + { + "text" : "Wasser- und Zugvogelreservat Reuss: Bremgarten - Zufikon bis Brücke von Rottenschwil", + "lang" : "de-CH" + }, + { + "text" : "Réserve d'oiseaux d'eau et de migrateurs Reuss: Bremgarten - Zufikon bis Brücke von Rottenschwil", + "lang" : "fr-CH" + }, + { + "text" : "Riserva di uccelli acquatici e migratori Reuss: Bremgarten - Zufikon bis Brücke von Rottenschwil", + "lang" : "it-CH" + }, + { + "text" : "Water Bird and Migratory Bird Reserves Reuss: Bremgarten - Zufikon bis Brücke von Rottenschwil", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.7528377, 47.37824 ], + [ 8.7527345, 47.3782978 ], + [ 8.7526788, 47.3783479 ], + [ 8.7526819, 47.3784171 ], + [ 8.7529769, 47.3786729 ], + [ 8.7531617, 47.3788111 ], + [ 8.753400899999999, 47.3790054 ], + [ 8.7538516, 47.3794518 ], + [ 8.753975, 47.3794594 ], + [ 8.7549212, 47.3788945 ], + [ 8.754479, 47.3784192 ], + [ 8.7584507, 47.376438 ], + [ 8.7591435, 47.3770868 ], + [ 8.760119, 47.3765359 ], + [ 8.7602166, 47.3764628 ], + [ 8.7603324, 47.3763814 ], + [ 8.7608046, 47.3760891 ], + [ 8.7611632, 47.3758142 ], + [ 8.7616434, 47.3762198 ], + [ 8.762257, 47.3759699 ], + [ 8.7623681, 47.3759128 ], + [ 8.7626495, 47.3757765 ], + [ 8.7630001, 47.3759767 ], + [ 8.7635073, 47.374805 ], + [ 8.763395299999999, 47.3748261 ], + [ 8.7632913, 47.3748543 ], + [ 8.7632828, 47.3748841 ], + [ 8.7631369, 47.3749271 ], + [ 8.7630929, 47.3749141 ], + [ 8.7627623, 47.375043 ], + [ 8.7622374, 47.3753395 ], + [ 8.7606913, 47.373926 ], + [ 8.7604103, 47.3740759 ], + [ 8.7585157, 47.3751041 ], + [ 8.7582407, 47.3752827 ], + [ 8.7576481, 47.375688 ], + [ 8.7570137, 47.3760559 ], + [ 8.7564903, 47.3763659 ], + [ 8.7559337, 47.3766179 ], + [ 8.7554896, 47.3767597 ], + [ 8.7548722, 47.3771238 ], + [ 8.7528377, 47.37824 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZK002", + "country" : "CHE", + "name" : [ + { + "text" : "LSZK Speck-Fehraltorf (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSZK Speck-Fehraltorf (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSZK Speck-Fehraltorf (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSZK Speck-Fehraltorf (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Flugplatz Speck-Fehraltorf", + "lang" : "de-CH" + }, + { + "text" : "Flugplatz Speck-Fehraltorf", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatz Speck-Fehraltorf", + "lang" : "it-CH" + }, + { + "text" : "Flugplatz Speck-Fehraltorf", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Luca Marchetti", + "lang" : "de-CH" + }, + { + "text" : "Luca Marchetti", + "lang" : "fr-CH" + }, + { + "text" : "Luca Marchetti", + "lang" : "it-CH" + }, + { + "text" : "Luca Marchetti", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.fgzo.ch/flugvorbereitung.php", + "email" : "flugplatzleiter@fgzo.ch", + "phone" : "0041449541252", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7218158, 47.4386353 ], + [ 7.7218082, 47.4386428 ], + [ 7.7223812, 47.4386957 ], + [ 7.7224546, 47.4386949 ], + [ 7.7225604, 47.4386583 ], + [ 7.7226324, 47.4385906 ], + [ 7.7226554, 47.438408 ], + [ 7.7227464999999995, 47.4382272 ], + [ 7.7229618, 47.4382292 ], + [ 7.7230457, 47.4382501 ], + [ 7.7233939, 47.4383134 ], + [ 7.7234359999999995, 47.4383187 ], + [ 7.7234926, 47.438328 ], + [ 7.7235662, 47.4383434 ], + [ 7.7236173, 47.4383566 ], + [ 7.7236657, 47.4383713 ], + [ 7.7237161, 47.4383883 ], + [ 7.7237664, 47.4384071 ], + [ 7.7238126, 47.4384287 ], + [ 7.723852, 47.4384503 ], + [ 7.7238698, 47.438464 ], + [ 7.7239049, 47.4384515 ], + [ 7.7241525, 47.4382171 ], + [ 7.7245272, 47.438017 ], + [ 7.7247663, 47.4379087 ], + [ 7.7244036, 47.437787900000004 ], + [ 7.724043, 47.437679 ], + [ 7.7235034, 47.4375535 ], + [ 7.7235333, 47.4374637 ], + [ 7.7235382, 47.437449 ], + [ 7.7235174, 47.4374481 ], + [ 7.7233093, 47.4374229 ], + [ 7.722744, 47.4373456 ], + [ 7.7224618, 47.4377327 ], + [ 7.7219853, 47.4383886 ], + [ 7.7218158, 47.4386353 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns117", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Öschberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Öschberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Öschberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Öschberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.9197516, 46.8552668 ], + [ 6.9203647, 46.85437 ], + [ 6.9179285, 46.8543589 ], + [ 6.9179482, 46.8544876 ], + [ 6.9155541, 46.8545909 ], + [ 6.9154669, 46.8549333 ], + [ 6.9197516, 46.8552668 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSMP002", + "country" : "CHE", + "name" : [ + { + "text" : "LSMP Payerne Mil (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSMP Payerne Mil (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSMP Payerne Mil (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSMP Payerne Mil (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Skyguide Special Flight Office", + "lang" : "de-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "it-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.skyguide.ch/services/special-flights", + "email" : "specialflight@skyguide.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.5263201, 47.1409621 ], + [ 9.5263479, 47.1404499 ], + [ 9.5265459, 47.1400467 ], + [ 9.5266698, 47.1395591 ], + [ 9.5266257, 47.1392695 ], + [ 9.5277621, 47.1355771 ], + [ 9.5278734, 47.1355006 ], + [ 9.5278612, 47.1354942 ], + [ 9.5271688, 47.1349986 ], + [ 9.5248075, 47.1346129 ], + [ 9.5246317, 47.1347301 ], + [ 9.5246308, 47.1350784 ], + [ 9.5245817, 47.1353194 ], + [ 9.5244753, 47.1357339 ], + [ 9.5243861, 47.1358316 ], + [ 9.5242298, 47.1358881 ], + [ 9.5241283, 47.1359897 ], + [ 9.5240667, 47.1361345 ], + [ 9.5223807, 47.1368698 ], + [ 9.5222487, 47.1369525 ], + [ 9.522376, 47.1378793 ], + [ 9.5236835, 47.1394857 ], + [ 9.5237099, 47.139663 ], + [ 9.523723799999999, 47.1397695 ], + [ 9.5238282, 47.1398637 ], + [ 9.5238862, 47.1399747 ], + [ 9.5242892, 47.1409121 ], + [ 9.5243174, 47.1413416 ], + [ 9.5243033, 47.1415353 ], + [ 9.5244062, 47.1434358 ], + [ 9.5243651, 47.1438292 ], + [ 9.5243513, 47.1439779 ], + [ 9.5243396, 47.1441045 ], + [ 9.5244061, 47.144397 ], + [ 9.5244383, 47.1445855 ], + [ 9.5244316, 47.1446801 ], + [ 9.524484, 47.1447541 ], + [ 9.5244988, 47.1447628 ], + [ 9.5246176, 47.1449811 ], + [ 9.5248621, 47.1450557 ], + [ 9.5249912, 47.1450358 ], + [ 9.5252536, 47.1444101 ], + [ 9.5253888, 47.1438927 ], + [ 9.5255309, 47.143616 ], + [ 9.5256374, 47.143145 ], + [ 9.5256879, 47.1428607 ], + [ 9.5260336, 47.1420495 ], + [ 9.5260408, 47.1420214 ], + [ 9.5261234, 47.1416969 ], + [ 9.5262583, 47.1413224 ], + [ 9.5263201, 47.1409621 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LIE001", + "country" : "LIE", + "name" : [ + { + "text" : "Schloss Vaduz", + "lang" : "de-CH" + }, + { + "text" : "Château de Vaduz", + "lang" : "fr-CH" + }, + { + "text" : "Castello di Vaduz", + "lang" : "it-CH" + }, + { + "text" : "Castle of Vaduz", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 27, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Hochbau und Raumplanung", + "lang" : "de-CH" + }, + { + "text" : "Amt für Hochbau und Raumplanung", + "lang" : "fr-CH" + }, + { + "text" : "Amt für Hochbau und Raumplanung", + "lang" : "it-CH" + }, + { + "text" : "Amt für Hochbau und Raumplanung", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachbereich Zivilluftfahrt", + "lang" : "de-CH" + }, + { + "text" : "Fachbereich Zivilluftfahrt", + "lang" : "fr-CH" + }, + { + "text" : "Fachbereich Zivilluftfahrt", + "lang" : "it-CH" + }, + { + "text" : "Fachbereich Zivilluftfahrt", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Kerstin Fitz", + "lang" : "de-CH" + }, + { + "text" : "Kerstin Fitz", + "lang" : "fr-CH" + }, + { + "text" : "Kerstin Fitz", + "lang" : "it-CH" + }, + { + "text" : "Kerstin Fitz", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.llv.li/en/national-administration/office-of-building-construction-and-spatial-planning/civil-aviation", + "email" : "info.ahr@llv.li", + "phone" : "004232367110", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 5.9998186, 46.1541436 ], + [ 5.9998922, 46.1542233 ], + [ 5.99977, 46.1546125 ], + [ 6.0000383, 46.1556488 ], + [ 6.0001341, 46.1557526 ], + [ 6.0002075, 46.1560361 ], + [ 6.001026, 46.1569222 ], + [ 6.0022702, 46.1575231 ], + [ 6.0037507, 46.1577474 ], + [ 6.005242, 46.157561 ], + [ 6.0056094, 46.1573971 ], + [ 6.0057474, 46.1573798 ], + [ 6.0070225, 46.1568109 ], + [ 6.0078872, 46.1559462 ], + [ 6.0082098, 46.1549174 ], + [ 6.0079414, 46.1538811 ], + [ 6.0072259, 46.1531066 ], + [ 6.0069585, 46.1520741 ], + [ 6.0061399, 46.151188 ], + [ 6.0048958, 46.1505871 ], + [ 6.0034155, 46.1503628 ], + [ 6.0019244, 46.1505493 ], + [ 6.0006495, 46.1511181 ], + [ 6.0005547, 46.1512129 ], + [ 5.9998247, 46.1504225 ], + [ 5.9985807, 46.1498215 ], + [ 5.9983796, 46.1497911 ], + [ 5.9978417, 46.1495312 ], + [ 5.9963615, 46.1493068 ], + [ 5.9948704, 46.1494932 ], + [ 5.9935954, 46.1500619 ], + [ 5.9927306, 46.1509265 ], + [ 5.9924076, 46.1519553 ], + [ 5.9926756999999995, 46.1529916 ], + [ 5.9934940999999995, 46.1538778 ], + [ 5.9937339, 46.1539936 ], + [ 5.9937571, 46.1540188 ], + [ 5.9950012, 46.1546198 ], + [ 5.9952442, 46.1546567 ], + [ 5.9954772, 46.1547692 ], + [ 5.9969575, 46.1549936 ], + [ 5.9984488, 46.1548072 ], + [ 5.9997239, 46.1542384 ], + [ 5.9998186, 46.1541436 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-23", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.1277174, 46.4539019 ], + [ 7.1272371, 46.4532196 ], + [ 7.1271683, 46.4525178 ], + [ 7.1265319, 46.4522848 ], + [ 7.1261761, 46.4525843 ], + [ 7.1262694, 46.4531018 ], + [ 7.1263624, 46.4536814 ], + [ 7.1264044, 46.4540665 ], + [ 7.126492, 46.4542368 ], + [ 7.1266745, 46.4541725 ], + [ 7.1270078, 46.4541662 ], + [ 7.1273062, 46.4543371 ], + [ 7.1275397, 46.4544736 ], + [ 7.1277174, 46.4539019 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00007", + "country" : "CHE", + "name" : [ + { + "text" : "La Sarouche", + "lang" : "de-CH" + }, + { + "text" : "La Sarouche", + "lang" : "fr-CH" + }, + { + "text" : "La Sarouche", + "lang" : "it-CH" + }, + { + "text" : "La Sarouche", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "startDateTime" : "2025-01-01T00:00:00+01:00", + "endDateTime" : "2025-06-30T00:00:00+02:00" + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Generaldirektion für Umwelt", + "lang" : "de-CH" + }, + { + "text" : "Direction générale de l'environnement", + "lang" : "fr-CH" + }, + { + "text" : "Direzione generale dell'Ambiente", + "lang" : "it-CH" + }, + { + "text" : "Environment Department", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.dge@vd.ch", + "phone" : "0041213164422", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.6058808, 46.6846992 ], + [ 8.6057626, 46.684675 ], + [ 8.605492, 46.6846288 ], + [ 8.6053198, 46.6846733 ], + [ 8.6051389, 46.6847346 ], + [ 8.6050326, 46.6847287 ], + [ 8.6048767, 46.6846604 ], + [ 8.604792, 46.6846361 ], + [ 8.6047377, 46.6846205 ], + [ 8.6045002, 46.6845915 ], + [ 8.604303, 46.6846189 ], + [ 8.6041057, 46.6846746 ], + [ 8.6039663, 46.6847642 ], + [ 8.6037929, 46.6848339 ], + [ 8.6037435, 46.6848536 ], + [ 8.6034566, 46.6848863 ], + [ 8.603254, 46.6848856 ], + [ 8.6032188, 46.6848854 ], + [ 8.603046299999999, 46.6848791 ], + [ 8.6028748, 46.6848448 ], + [ 8.6026778, 46.6848046 ], + [ 8.6024656, 46.6847362 ], + [ 8.6022851, 46.6847018 ], + [ 8.6022007, 46.6846907 ], + [ 8.602154, 46.6846844 ], + [ 8.6020563, 46.6846278 ], + [ 8.6018929, 46.6845877 ], + [ 8.6017286, 46.6845871 ], + [ 8.6015661, 46.6845511 ], + [ 8.601548, 46.6845471 ], + [ 8.6013192, 46.6845068 ], + [ 8.6010729, 46.6845284 ], + [ 8.6008348, 46.6845895 ], + [ 8.6006776, 46.6847242 ], + [ 8.6005129, 46.6848137 ], + [ 8.6003732, 46.6848525 ], + [ 8.6001354, 46.6848517 ], + [ 8.5998322, 46.6848506 ], + [ 8.5994964, 46.6848494 ], + [ 8.5993243, 46.6847868 ], + [ 8.5991608, 46.6847073 ], + [ 8.5989392, 46.6847347 ], + [ 8.5984142, 46.6847554 ], + [ 8.5981842, 46.6847714 ], + [ 8.5979052, 46.6847929 ], + [ 8.5976926, 46.6847865 ], + [ 8.5974217, 46.6848024 ], + [ 8.597249, 46.6848243 ], + [ 8.5971504, 46.6848746 ], + [ 8.5970601, 46.6849307 ], + [ 8.5969206, 46.6849413 ], + [ 8.5968052, 46.6849354 ], + [ 8.596642, 46.6849066 ], + [ 8.5964778, 46.6849059 ], + [ 8.5963381, 46.6849449 ], + [ 8.5962228, 46.6849782 ], + [ 8.5960837, 46.6850059 ], + [ 8.5958945, 46.6850616 ], + [ 8.5957386, 46.685106 ], + [ 8.5955654, 46.6851449 ], + [ 8.5953848, 46.6851837 ], + [ 8.5952536, 46.6852001 ], + [ 8.5950815, 46.6852106 ], + [ 8.5948928, 46.6852157 ], + [ 8.5947208, 46.6852319 ], + [ 8.5944334, 46.685242099999996 ], + [ 8.5942277, 46.6852921 ], + [ 8.5940966, 46.6853478 ], + [ 8.5939318, 46.685398 ], + [ 8.5937266, 46.685431 ], + [ 8.593431, 46.6854412 ], + [ 8.5933401, 46.6855817 ], + [ 8.5933317, 46.6856492 ], + [ 8.5933884, 46.6857396 ], + [ 8.5934606, 46.6858695 ], + [ 8.5935665, 46.6860445 ], + [ 8.5936476, 46.6861687 ], + [ 8.5936388, 46.6862533 ], + [ 8.5935559, 46.686348699999996 ], + [ 8.5934811, 46.6864836 ], + [ 8.5933401, 46.6866915 ], + [ 8.593199, 46.6868544 ], + [ 8.5931084, 46.6868991 ], + [ 8.5929607, 46.6869436 ], + [ 8.5927798, 46.6870049 ], + [ 8.5927052, 46.6870723 ], + [ 8.5926475, 46.6871621 ], + [ 8.59263, 46.6872974 ], + [ 8.5926279, 46.6875452 ], + [ 8.5926192, 46.6877085 ], + [ 8.5926417, 46.6878833 ], + [ 8.592674, 46.6879791 ], + [ 8.592788, 46.6881147 ], + [ 8.5928774, 46.6882052 ], + [ 8.5929343, 46.6883068 ], + [ 8.5929498, 46.6884195 ], + [ 8.5929652, 46.6885323 ], + [ 8.5930216, 46.6886451 ], + [ 8.5931362, 46.6887302 ], + [ 8.593234, 46.688798 ], + [ 8.5933723, 46.6888831 ], + [ 8.593528, 46.6889794 ], + [ 8.5936586, 46.689087 ], + [ 8.5937721, 46.6892 ], + [ 8.5938123, 46.6893185 ], + [ 8.5938198, 46.6894424 ], + [ 8.5938104, 46.6896115 ], + [ 8.5937355, 46.6897407 ], + [ 8.59371, 46.6898476 ], + [ 8.5938309, 46.6900735 ], + [ 8.5939448, 46.6902428 ], + [ 8.5940422, 46.6904009 ], + [ 8.5941392, 46.6905816 ], + [ 8.594228, 46.6907622 ], + [ 8.594333, 46.690971 ], + [ 8.5944223, 46.6911347 ], + [ 8.5943714, 46.6912753 ], + [ 8.5943048, 46.6914103 ], + [ 8.5942878, 46.6915285 ], + [ 8.5943357, 46.6916696 ], + [ 8.5943599, 46.6918048 ], + [ 8.5943666, 46.6919288 ], + [ 8.5943409, 46.6921033 ], + [ 8.5943068, 46.692266599999996 ], + [ 8.5942318, 46.6924241 ], + [ 8.5940496, 46.6926206 ], + [ 8.5939349, 46.6926821 ], + [ 8.5938193, 46.6927381 ], + [ 8.5938192, 46.6928112 ], + [ 8.593842800000001, 46.6928846 ], + [ 8.5938831, 46.6930086 ], + [ 8.5939968, 46.6931274 ], + [ 8.59416, 46.6932351 ], + [ 8.5943479, 46.6933822 ], + [ 8.5946179, 46.6935127 ], + [ 8.594781, 46.6936092 ], + [ 8.5949026, 46.6937561 ], + [ 8.594941500000001, 46.6940097 ], + [ 8.5949493, 46.6941449 ], + [ 8.5949398, 46.6942744 ], + [ 8.5949555, 46.6943928 ], + [ 8.5950362, 46.6945395 ], + [ 8.5951092, 46.6946638 ], + [ 8.5951982, 46.69485 ], + [ 8.595263, 46.6949404 ], + [ 8.5954259, 46.695065 ], + [ 8.595549, 46.6951273 ], + [ 8.5956467, 46.6951897 ], + [ 8.5957034, 46.6952406 ], + [ 8.5957524, 46.695314 ], + [ 8.5957927, 46.6953649 ], + [ 8.5958656, 46.695489 ], + [ 8.5959308, 46.6955569 ], + [ 8.5960121, 46.6957262 ], + [ 8.5960431, 46.6958784 ], + [ 8.5960833, 46.6959969 ], + [ 8.596229600000001, 46.696189 ], + [ 8.5963847, 46.6962965 ], + [ 8.5965072, 46.6964041 ], + [ 8.5967032, 46.6965117 ], + [ 8.596809499999999, 46.696591 ], + [ 8.5968901, 46.6966927 ], + [ 8.596972, 46.6967775 ], + [ 8.5970854, 46.6969582 ], + [ 8.5971906, 46.6970994 ], + [ 8.5973131, 46.6972126 ], + [ 8.5974188, 46.6973369 ], + [ 8.5975251, 46.6974161 ], + [ 8.5976643, 46.6974674 ], + [ 8.5977871, 46.6974791 ], + [ 8.5979756, 46.6975023 ], + [ 8.5982044, 46.697537 ], + [ 8.5984507, 46.6975547 ], + [ 8.5986469, 46.6975949 ], + [ 8.5989015, 46.6976522 ], + [ 8.5990405, 46.6976921 ], + [ 8.5991872, 46.6977489 ], + [ 8.5993177, 46.6978508 ], + [ 8.5993667, 46.6979637 ], + [ 8.5993656, 46.6980651 ], + [ 8.5993479, 46.6982283 ], + [ 8.599371, 46.6984312 ], + [ 8.5993452, 46.6985608 ], + [ 8.5992872, 46.6987127 ], + [ 8.5992205, 46.698842 ], + [ 8.5991212, 46.6989374 ], + [ 8.598998, 46.6990215 ], + [ 8.5988905, 46.6991168 ], + [ 8.5987582, 46.6992347 ], + [ 8.5986426, 46.69933 ], + [ 8.5985267, 46.699493 ], + [ 8.5984929, 46.6996675 ], + [ 8.5985323, 46.6998647 ], + [ 8.5985476, 46.7000057 ], + [ 8.598596, 46.7001298 ], + [ 8.5986844, 46.7002879 ], + [ 8.5987658, 46.7004234 ], + [ 8.59888, 46.7005307 ], + [ 8.5989533, 46.700593 ], + [ 8.5990671, 46.700678 ], + [ 8.5991319, 46.7008022 ], + [ 8.5992133, 46.7009375 ], + [ 8.599343, 46.7010789 ], + [ 8.5994818, 46.7011864 ], + [ 8.5996212, 46.7012827 ], + [ 8.5997104, 46.7014013 ], + [ 8.5998238, 46.7015483 ], + [ 8.5999212, 46.7016669 ], + [ 8.6000265, 46.7018476 ], + [ 8.6001082, 46.7019605 ], + [ 8.6002386, 46.7020962 ], + [ 8.600409299999999, 46.7022432 ], + [ 8.6006788, 46.7024245 ], + [ 8.6008259, 46.7025377 ], + [ 8.6009973, 46.7026397 ], + [ 8.6011521, 46.7027305 ], + [ 8.6014139, 46.7028553 ], + [ 8.6015856, 46.7029743 ], + [ 8.6018217, 46.7031216 ], + [ 8.6019117, 46.7032008 ], + [ 8.601935600000001, 46.7032853 ], + [ 8.6020421, 46.7033703 ], + [ 8.6021481, 46.7034382 ], + [ 8.6021637, 46.7035172 ], + [ 8.602302, 46.7037148 ], + [ 8.6024158, 46.7038729 ], + [ 8.6024721, 46.7039802 ], + [ 8.6024794, 46.704093 ], + [ 8.6025766, 46.7042792 ], + [ 8.602689699999999, 46.7044823 ], + [ 8.6028606, 46.7046746 ], + [ 8.6029831, 46.7048215 ], + [ 8.6031297, 46.7049121 ], + [ 8.6032603, 46.7050197 ], + [ 8.603424, 46.7051047 ], + [ 8.6035954, 46.7052067 ], + [ 8.6036847, 46.7052915 ], + [ 8.6037573, 46.7054383 ], + [ 8.603806, 46.7055342 ], + [ 8.6039201, 46.7056698 ], + [ 8.6039923, 46.7058335 ], + [ 8.6040728, 46.7060422 ], + [ 8.6040717, 46.7062168 ], + [ 8.6041033, 46.706431 ], + [ 8.6041756, 46.7066003 ], + [ 8.604265, 46.706764 ], + [ 8.6044115, 46.7068885 ], + [ 8.6045419, 46.7069847 ], + [ 8.6047054, 46.7070979 ], + [ 8.6048687, 46.7072055 ], + [ 8.6049584, 46.7072679 ], + [ 8.6050225, 46.707437 ], + [ 8.605006, 46.707544 ], + [ 8.6050045, 46.7076623 ], + [ 8.6049461, 46.7077974 ], + [ 8.6048628, 46.7079886 ], + [ 8.6048126, 46.708163 ], + [ 8.6047207, 46.7083374 ], + [ 8.604646, 46.7085117 ], + [ 8.6046607, 46.7086977 ], + [ 8.6047173, 46.7088218 ], + [ 8.6047983, 46.7089403 ], + [ 8.6049128, 46.7090534 ], + [ 8.605084, 46.709223 ], + [ 8.6052875, 46.7094097 ], + [ 8.605548, 46.7096247 ], + [ 8.605728, 46.7097831 ], + [ 8.6059644, 46.7099416 ], + [ 8.606185, 46.7100494 ], + [ 8.6065775, 46.7103213 ], + [ 8.6067892, 46.7104741 ], + [ 8.6070509, 46.710627099999996 ], + [ 8.6072223, 46.7107291 ], + [ 8.6074014, 46.7108819 ], + [ 8.6075482, 46.7110571 ], + [ 8.607629, 46.7112039 ], + [ 8.6077258, 46.7114463 ], + [ 8.6077976, 46.7116663 ], + [ 8.6078463, 46.7118355 ], + [ 8.6078936, 46.7120216 ], + [ 8.6079913, 46.7121909 ], + [ 8.6080639, 46.7122982 ], + [ 8.6081291, 46.7124392 ], + [ 8.6082341, 46.7126424 ], + [ 8.6084324, 46.7124404 ], + [ 8.6086286, 46.7125538 ], + [ 8.6087183, 46.7126161 ], + [ 8.6088405, 46.7127122 ], + [ 8.6089464, 46.7128084 ], + [ 8.6091095, 46.7129385 ], + [ 8.6091752, 46.7130289 ], + [ 8.6093373, 46.7131928 ], + [ 8.6095093, 46.7132835 ], + [ 8.6097305, 46.7133407 ], + [ 8.6098617, 46.7133242 ], + [ 8.6099771, 46.7132908 ], + [ 8.6101249, 46.7132463 ], + [ 8.6102731, 46.7132186 ], + [ 8.6104202, 46.713253 ], + [ 8.6105342, 46.7133492 ], + [ 8.6105914, 46.7134226 ], + [ 8.6105908, 46.713507 ], + [ 8.6106721, 46.7135976 ], + [ 8.6108603, 46.7137222 ], + [ 8.6110722, 46.7138412 ], + [ 8.6112522, 46.7139601 ], + [ 8.6114225, 46.7141973 ], + [ 8.6114548, 46.7143665 ], + [ 8.6113718, 46.7144619 ], + [ 8.6112558, 46.7145798 ], + [ 8.6111814, 46.7146922 ], + [ 8.610935, 46.7147138 ], + [ 8.6108854, 46.7147982 ], + [ 8.6109917, 46.7147985 ], + [ 8.6109741, 46.7150069 ], + [ 8.6106953, 46.715006 ], + [ 8.6105235, 46.714887 ], + [ 8.6104162, 46.7149543 ], + [ 8.6103166, 46.7150723 ], + [ 8.6103402, 46.7152188 ], + [ 8.6104139, 46.7153374 ], + [ 8.6104862, 46.7154671 ], + [ 8.6106575, 46.7155973 ], + [ 8.6108293, 46.7157162 ], + [ 8.6110014, 46.7157732 ], + [ 8.61128, 46.7158023 ], + [ 8.6115674, 46.7157865 ], + [ 8.6118795, 46.7157762 ], + [ 8.6121744, 46.7158055 ], + [ 8.6123302, 46.7158285 ], + [ 8.61242, 46.7158965 ], + [ 8.6124359, 46.7159867 ], + [ 8.6124433, 46.7160656 ], + [ 8.6124506, 46.7161388 ], + [ 8.6124999, 46.7162234 ], + [ 8.6125807, 46.7163309 ], + [ 8.6126047, 46.716421 ], + [ 8.6125547, 46.7164884 ], + [ 8.6125214, 46.7165728 ], + [ 8.6124722, 46.7166402 ], + [ 8.6123971, 46.7167582 ], + [ 8.6123225, 46.716865 ], + [ 8.6122887, 46.7170002 ], + [ 8.612320799999999, 46.7170847 ], + [ 8.6124675, 46.7172543 ], + [ 8.6126057, 46.7174069 ], + [ 8.6127768, 46.7176046 ], + [ 8.612875, 46.7176839 ], + [ 8.6129971, 46.717734899999996 ], + [ 8.613078999999999, 46.7178141 ], + [ 8.6131113, 46.7178705 ], + [ 8.6132173, 46.7179723 ], + [ 8.6133887, 46.7181082 ], + [ 8.6136005, 46.7183004 ], + [ 8.6139686, 46.7185326 ], + [ 8.6141642, 46.7186179 ], + [ 8.6143035, 46.718669 ], + [ 8.6144588, 46.7187428 ], + [ 8.6145574, 46.7188052 ], + [ 8.6146301, 46.7189124 ], + [ 8.614695, 46.7190028 ], + [ 8.6148343, 46.7190146 ], + [ 8.6150067, 46.7190489 ], + [ 8.6151628, 46.7190833 ], + [ 8.6153591, 46.7191628 ], + [ 8.6155227, 46.7192423 ], + [ 8.6157025, 46.71935 ], + [ 8.615841, 46.7194405 ], + [ 8.6159959, 46.7195706 ], + [ 8.616102, 46.7197119 ], + [ 8.6161914, 46.7198361 ], + [ 8.6162556, 46.7199321 ], + [ 8.6163289, 46.7200676 ], + [ 8.6164096, 46.7202087 ], + [ 8.6165235, 46.7203668 ], + [ 8.6168089, 46.7205988 ], + [ 8.6169233, 46.7207456 ], + [ 8.6171021, 46.7209209 ], + [ 8.617298, 46.72113 ], + [ 8.6174444, 46.7212827 ], + [ 8.6175829, 46.7214464 ], + [ 8.61777, 46.7216274 ], + [ 8.6179089, 46.7218081 ], + [ 8.6179976, 46.7219381 ], + [ 8.6180791, 46.7220792 ], + [ 8.6181267, 46.722237 ], + [ 8.6181915, 46.722395 ], + [ 8.618248, 46.7225472 ], + [ 8.6182961, 46.7226883 ], + [ 8.6184188, 46.722807 ], + [ 8.6184585, 46.7229029 ], + [ 8.6184823, 46.7230551 ], + [ 8.6184489, 46.7231338 ], + [ 8.6183993, 46.7231844 ], + [ 8.6183498, 46.7232406 ], + [ 8.6183403, 46.7234039 ], + [ 8.6182984, 46.7235783 ], + [ 8.6182882, 46.7237867 ], + [ 8.6182872, 46.723967 ], + [ 8.618319, 46.7241135 ], + [ 8.6183918, 46.7242602 ], + [ 8.6184979, 46.7244015 ], + [ 8.6186276, 46.7245766 ], + [ 8.6187332, 46.7246953 ], + [ 8.6188727, 46.7247915 ], + [ 8.6190606, 46.7248936 ], + [ 8.6192403, 46.7250013 ], + [ 8.619453, 46.7250809 ], + [ 8.6196988, 46.7251381 ], + [ 8.6199689, 46.7251897 ], + [ 8.6201244, 46.7252353 ], + [ 8.6202966, 46.7253316 ], + [ 8.6204023, 46.7254503 ], + [ 8.6204993, 46.7256253 ], + [ 8.6205557, 46.7257719 ], + [ 8.6205955, 46.7259466 ], + [ 8.6205209, 46.7261266 ], + [ 8.620503, 46.7263181 ], + [ 8.620494, 46.7264645 ], + [ 8.6204847, 46.7265997 ], + [ 8.620492, 46.7267462 ], + [ 8.6205559, 46.7269041 ], + [ 8.6206215, 46.7270227 ], + [ 8.6207103, 46.7271582 ], + [ 8.6208495, 46.727277 ], + [ 8.6210533, 46.727396 ], + [ 8.621274, 46.7275432 ], + [ 8.6214375, 46.727617 ], + [ 8.6215602, 46.7276569 ], + [ 8.6218473, 46.7277367 ], + [ 8.6221501, 46.7278222 ], + [ 8.6223875, 46.7279076 ], + [ 8.6226333, 46.7280042 ], + [ 8.6228542, 46.7280838 ], + [ 8.6230097, 46.7281632 ], + [ 8.6231481, 46.7282876 ], + [ 8.6232455, 46.7284401 ], + [ 8.6233429, 46.7285925 ], + [ 8.6234078, 46.7287898 ], + [ 8.6234881, 46.7289479 ], + [ 8.6235199, 46.7290945 ], + [ 8.6235771, 46.7292017 ], + [ 8.6237073, 46.7293599 ], + [ 8.6238215, 46.7294955 ], + [ 8.6238859, 46.729597 ], + [ 8.6239595, 46.72971 ], + [ 8.6240736, 46.72984 ], + [ 8.624244000000001, 46.7300433 ], + [ 8.6244073, 46.7302185 ], + [ 8.6245453, 46.7303542 ], + [ 8.6247339, 46.73049 ], + [ 8.6249053, 46.7305864 ], + [ 8.6250606, 46.7306602 ], + [ 8.625273, 46.7307623 ], + [ 8.625511, 46.7308363 ], + [ 8.6257732, 46.7308992 ], + [ 8.6260189, 46.7309901 ], + [ 8.6262805, 46.7310587 ], + [ 8.626494, 46.7310987 ], + [ 8.6266824, 46.7311896 ], + [ 8.626820500000001, 46.7312971 ], + [ 8.6269759, 46.731444 ], + [ 8.6271228, 46.7315798 ], + [ 8.627344, 46.7316706 ], + [ 8.6275561, 46.7317616 ], + [ 8.627794, 46.7318693 ], + [ 8.6280475, 46.7319773 ], + [ 8.628334, 46.7321021 ], + [ 8.6285869, 46.7323002 ], + [ 8.6288812, 46.7325153 ], + [ 8.6291916, 46.7326852 ], + [ 8.6293708, 46.732838 ], + [ 8.629698, 46.7330644 ], + [ 8.6299108, 46.7331835 ], + [ 8.6300655, 46.7333361 ], + [ 8.6302614, 46.7335057 ], + [ 8.6304491, 46.7336753 ], + [ 8.6306195, 46.7338732 ], + [ 8.6307987, 46.734099 ], + [ 8.6309046, 46.7342289 ], + [ 8.6310266, 46.7343814 ], + [ 8.631223, 46.7345004 ], + [ 8.631509, 46.7346761 ], + [ 8.6317379, 46.7348176 ], + [ 8.6320157, 46.7349537 ], + [ 8.632261100000001, 46.7351066 ], + [ 8.6324249, 46.7352255 ], + [ 8.6325799, 46.7353556 ], + [ 8.632734899999999, 46.7355251 ], + [ 8.6328976, 46.735706 ], + [ 8.6330441, 46.7359317 ], + [ 8.633149, 46.7361293 ], + [ 8.6332302, 46.736321 ], + [ 8.6332776, 46.7365072 ], + [ 8.6333505, 46.7366932 ], + [ 8.6334481, 46.7368569 ], + [ 8.6335698, 46.7370319 ], + [ 8.6337, 46.7371508 ], + [ 8.6338636, 46.7372639 ], + [ 8.6340849, 46.7373943 ], + [ 8.6343463, 46.7375303 ], + [ 8.6345424, 46.7376324 ], + [ 8.6346896, 46.7377399 ], + [ 8.6348448, 46.7378812 ], + [ 8.634934, 46.7379942 ], + [ 8.6350647, 46.7381355 ], + [ 8.6351543, 46.7382653 ], + [ 8.6352849, 46.7383615 ], + [ 8.6354237, 46.7384633 ], + [ 8.6355622, 46.7385483 ], + [ 8.635644, 46.7385881 ], + [ 8.6357588, 46.7386392 ], + [ 8.6359057, 46.7387353 ], + [ 8.6361756, 46.7389165 ], + [ 8.6364122, 46.7391145 ], + [ 8.6366415, 46.739273 ], + [ 8.6368542, 46.7393863 ], + [ 8.6370338, 46.739482699999996 ], + [ 8.6371812, 46.7395621 ], + [ 8.6373863, 46.7395909 ], + [ 8.6375827, 46.7395971 ], + [ 8.6378459, 46.7396263 ], + [ 8.638075, 46.7396665 ], + [ 8.6383214, 46.7397122 ], + [ 8.6386572, 46.7397697 ], + [ 8.6389273, 46.7398889 ], + [ 8.6390992, 46.7400078 ], + [ 8.6393693, 46.740127 ], + [ 8.6395408, 46.7402233 ], + [ 8.6396461, 46.7403983 ], + [ 8.639662, 46.7404884 ], + [ 8.6396448, 46.7405954 ], + [ 8.6396283, 46.7407024 ], + [ 8.6395612, 46.7408093 ], + [ 8.639479, 46.7408654 ], + [ 8.6393638, 46.7409437 ], + [ 8.639306, 46.7410281 ], + [ 8.6393047, 46.7411183 ], + [ 8.6392958, 46.7412308 ], + [ 8.6393119, 46.7413323 ], + [ 8.6393852, 46.7414283 ], + [ 8.6394994, 46.7415244 ], + [ 8.6396056, 46.7415925 ], + [ 8.639679, 46.741694 ], + [ 8.6396944, 46.7417955 ], + [ 8.6397103, 46.7418857 ], + [ 8.6397755, 46.7419874 ], + [ 8.6398982, 46.742061 ], + [ 8.639939, 46.7421286 ], + [ 8.6399711, 46.7421738 ], + [ 8.6400112, 46.7423204 ], + [ 8.6400843, 46.7424841 ], + [ 8.6401981, 46.7426365 ], + [ 8.6403042, 46.7427326 ], + [ 8.640467600000001, 46.7428346 ], + [ 8.640697, 46.7429255 ], + [ 8.6408848, 46.7430218 ], + [ 8.6411056, 46.7431295 ], + [ 8.6413514, 46.7432206 ], + [ 8.6415557, 46.7433621 ], + [ 8.6417521, 46.7435091 ], + [ 8.6419313, 46.7436619 ], + [ 8.64207, 46.7437918 ], + [ 8.6422178, 46.7438542 ], + [ 8.6422998, 46.7438996 ], + [ 8.6424627, 46.743979 ], + [ 8.6426344, 46.7440866 ], + [ 8.6427494, 46.7441828 ], + [ 8.6429122, 46.7443298 ], + [ 8.643034, 46.7445104 ], + [ 8.6431477, 46.7446911 ], + [ 8.6432615, 46.7448773 ], + [ 8.6433182, 46.7450015 ], + [ 8.6434076, 46.7451933 ], + [ 8.643538, 46.7452838 ], + [ 8.6436364, 46.7453687 ], + [ 8.6437421, 46.7454478 ], + [ 8.6438158, 46.7455608 ], + [ 8.6438724, 46.7456792 ], + [ 8.6439613, 46.7458485 ], + [ 8.6439923, 46.746102 ], + [ 8.644048699999999, 46.7462825 ], + [ 8.6440483, 46.7464121 ], + [ 8.6440223, 46.7465303 ], + [ 8.6439146, 46.7466878 ], + [ 8.6437991, 46.7468282 ], + [ 8.6436583, 46.7469685 ], + [ 8.643460900000001, 46.7471032 ], + [ 8.6432629, 46.7472095 ], + [ 8.6429416, 46.7473661 ], + [ 8.642703000000001, 46.7474499 ], + [ 8.6425793, 46.7475509 ], + [ 8.6425124, 46.747669 ], + [ 8.6425365, 46.7477986 ], + [ 8.6425684, 46.7479058 ], + [ 8.6426414, 46.7480242 ], + [ 8.6427398, 46.7481091 ], + [ 8.6427553, 46.7482162 ], + [ 8.6427871, 46.7483234 ], + [ 8.6428439, 46.7484474 ], + [ 8.6429176, 46.7485265 ], + [ 8.6429664, 46.7486224 ], + [ 8.6430063, 46.7487241 ], + [ 8.6430219, 46.74891 ], + [ 8.6430696, 46.7490678 ], + [ 8.6431184, 46.7492369 ], + [ 8.643191, 46.7493386 ], + [ 8.643281, 46.7494515 ], + [ 8.6434358, 46.7495704 ], + [ 8.6435832, 46.7496835 ], + [ 8.6438124, 46.7497632 ], + [ 8.644075, 46.7498035 ], + [ 8.6442304, 46.7498715 ], + [ 8.6443368, 46.7499113 ], + [ 8.6444103, 46.7500186 ], + [ 8.644475, 46.7501315 ], + [ 8.6445151, 46.7502386 ], + [ 8.6446052, 46.7503572 ], + [ 8.644703, 46.7504477 ], + [ 8.6448009, 46.75051 ], + [ 8.6448913, 46.7505665 ], + [ 8.6449478, 46.75064 ], + [ 8.6449557, 46.7507358 ], + [ 8.6449792, 46.7508372 ], + [ 8.6450283, 46.7509501 ], + [ 8.6451093, 46.7510574 ], + [ 8.6452397, 46.7512211 ], + [ 8.6453862, 46.751368 ], + [ 8.6454184, 46.7515653 ], + [ 8.6456155, 46.7515603 ], + [ 8.6457958, 46.7515384 ], + [ 8.646124799999999, 46.7515113 ], + [ 8.646412399999999, 46.7514559 ], + [ 8.6468479, 46.7513616 ], + [ 8.6472102, 46.7512838 ], + [ 8.6474899, 46.7512059 ], + [ 8.6478105, 46.7510943 ], + [ 8.6480741, 46.7509937 ], + [ 8.6483291, 46.75091 ], + [ 8.6486661, 46.7508322 ], + [ 8.6489698, 46.7508051 ], + [ 8.6492494, 46.7507271 ], + [ 8.6494805, 46.7505983 ], + [ 8.6496618, 46.7504749 ], + [ 8.6498518, 46.7503741 ], + [ 8.6503288, 46.7502348 ], + [ 8.6505755, 46.7501454 ], + [ 8.6507893, 46.7500504 ], + [ 8.6509132, 46.7499944 ], + [ 8.6510689, 46.7499667 ], + [ 8.6512418, 46.749911 ], + [ 8.6514394, 46.7498552 ], + [ 8.6515467, 46.749788 ], + [ 8.6517358, 46.7497211 ], + [ 8.6519833, 46.7495979 ], + [ 8.6522872, 46.7494692 ], + [ 8.6525753, 46.7494026 ], + [ 8.6528711, 46.7493191 ], + [ 8.6530848, 46.7492915 ], + [ 8.653331, 46.7493261 ], + [ 8.6542996, 46.7494362 ], + [ 8.6544389, 46.7494479 ], + [ 8.6545459, 46.7494032 ], + [ 8.6547599, 46.7493138 ], + [ 8.6551543, 46.7492135 ], + [ 8.655459, 46.7491581 ], + [ 8.6557956, 46.749103 ], + [ 8.6561246, 46.7490364 ], + [ 8.6563303, 46.7489807 ], + [ 8.6564624, 46.7488909 ], + [ 8.6567169, 46.7487847 ], + [ 8.6570138, 46.7486731 ], + [ 8.6572689, 46.748595 ], + [ 8.6576062, 46.7485002 ], + [ 8.6580254, 46.7484057 ], + [ 8.6585432, 46.7482609 ], + [ 8.6590862, 46.7481105 ], + [ 8.6594149, 46.7480665 ], + [ 8.6596944, 46.748056 ], + [ 8.6600469, 46.7481248 ], + [ 8.6603746, 46.7481483 ], + [ 8.6606704, 46.7482055 ], + [ 8.6609739, 46.7482065 ], + [ 8.6613181, 46.7482357 ], + [ 8.6615809, 46.7482422 ], + [ 8.6617784, 46.7482598 ], + [ 8.6619837, 46.7482209 ], + [ 8.6622222, 46.7481709 ], + [ 8.6625759, 46.7480762 ], + [ 8.6627978, 46.7479418 ], + [ 8.6628476, 46.7479362 ], + [ 8.6631357, 46.7478357 ], + [ 8.6635143, 46.7476848 ], + [ 8.6638272, 46.7475618 ], + [ 8.6640329, 46.747433 ], + [ 8.6641117, 46.7473753 ], + [ 8.6642558, 46.7472703 ], + [ 8.664429, 46.7471188 ], + [ 8.6645614, 46.7469671 ], + [ 8.664768, 46.7467028 ], + [ 8.6648422, 46.7466187 ], + [ 8.6649906, 46.7465627 ], + [ 8.6652538, 46.7465185 ], + [ 8.6653852, 46.7464682 ], + [ 8.6655256, 46.7463503 ], + [ 8.6657072, 46.7462044 ], + [ 8.6658144, 46.7460639 ], + [ 8.6659216, 46.7460305 ], + [ 8.6661358, 46.745986 ], + [ 8.6664397, 46.7459362 ], + [ 8.6667595, 46.7458978 ], + [ 8.6669738, 46.745859 ], + [ 8.6671136, 46.74582 ], + [ 8.6672209, 46.7457189 ], + [ 8.6673202, 46.7455897 ], + [ 8.6673954, 46.7454096 ], + [ 8.667478, 46.7452634 ], + [ 8.667561, 46.7451398 ], + [ 8.6676762, 46.7450612 ], + [ 8.6678328, 46.7449715 ], + [ 8.6679565, 46.7449043 ], + [ 8.6680059, 46.7448481 ], + [ 8.6680801, 46.7447639 ], + [ 8.6682374, 46.7446347 ], + [ 8.6683779, 46.7444831 ], + [ 8.6684769, 46.7443763 ], + [ 8.6685765, 46.7442246 ], + [ 8.6686342, 46.7441347 ], + [ 8.6687831, 46.7439942 ], + [ 8.6688824, 46.7438988 ], + [ 8.6690878, 46.7437981 ], + [ 8.669236, 46.7437308 ], + [ 8.6694824, 46.7436697 ], + [ 8.6696885, 46.743597 ], + [ 8.6699602, 46.7434964 ], + [ 8.6701496, 46.7434069 ], + [ 8.6704047, 46.743295 ], + [ 8.6705362, 46.7432504 ], + [ 8.6707171, 46.7431157 ], + [ 8.6708491, 46.7430203 ], + [ 8.6709404, 46.7429361 ], + [ 8.6710723, 46.7428745 ], + [ 8.6712939, 46.7427963 ], + [ 8.6715408, 46.7426844 ], + [ 8.6718374, 46.7425276 ], + [ 8.6720272, 46.7423872 ], + [ 8.6721758, 46.7423033 ], + [ 8.6723481, 46.7422587 ], + [ 8.6725293, 46.7422029 ], + [ 8.6726446, 46.7421301 ], + [ 8.6727843, 46.7420178 ], + [ 8.6729333, 46.7419168 ], + [ 8.6731642, 46.7417484 ], + [ 8.6733283, 46.7416646 ], + [ 8.6734187, 46.7416478 ], + [ 8.6736162, 46.7416259 ], + [ 8.673912, 46.7416155 ], + [ 8.6742402, 46.7415884 ], + [ 8.6745197, 46.7415441 ], + [ 8.6747743, 46.7414829 ], + [ 8.675120100000001, 46.7413656 ], + [ 8.6753669, 46.7412876 ], + [ 8.6755813, 46.7411811 ], + [ 8.6757459, 46.7410858 ], + [ 8.6759111, 46.7409398 ], + [ 8.676158, 46.7407603 ], + [ 8.6763641, 46.7405807 ], + [ 8.6764797, 46.7404515 ], + [ 8.6766529, 46.7402999 ], + [ 8.6769085, 46.7401373 ], + [ 8.6773291, 46.7398287 ], + [ 8.677882, 46.739436 ], + [ 8.6784424, 46.739049 ], + [ 8.6798352, 46.7381235 ], + [ 8.6804942, 46.7376523 ], + [ 8.6811047, 46.7371358 ], + [ 8.6814094, 46.7369114 ], + [ 8.6815914, 46.7367147 ], + [ 8.6817162, 46.7365235 ], + [ 8.6817826, 46.7363548 ], + [ 8.681866, 46.7361409 ], + [ 8.6818998, 46.735972 ], + [ 8.6819501, 46.7357807 ], + [ 8.6820577, 46.735657 ], + [ 8.6820992, 46.7355444 ], + [ 8.6821166, 46.7353756 ], + [ 8.6821673, 46.7351953 ], + [ 8.6822008, 46.7349815 ], + [ 8.6822596, 46.7348013 ], + [ 8.6823511, 46.7346214 ], + [ 8.6824503, 46.7344188 ], + [ 8.6825092, 46.7342443 ], + [ 8.6826001, 46.73407 ], + [ 8.682667, 46.7338504 ], + [ 8.6827179, 46.7336478 ], + [ 8.6827844, 46.7334452 ], + [ 8.6828918, 46.7332821 ], + [ 8.6830161, 46.7331755 ], + [ 8.6831646, 46.7330181 ], + [ 8.6832644, 46.7328439 ], + [ 8.6834045, 46.7326752 ], + [ 8.6835206, 46.7325347 ], + [ 8.6835623, 46.732394 ], + [ 8.6835875, 46.7322814 ], + [ 8.6836863, 46.7322029 ], + [ 8.6838668, 46.7321583 ], + [ 8.6840152, 46.7321024 ], + [ 8.6841467, 46.7320238 ], + [ 8.6843617, 46.7318105 ], + [ 8.684717299999999, 46.7313777 ], + [ 8.685064, 46.7310238 ], + [ 8.6853367, 46.7306865 ], + [ 8.685444, 46.7305516 ], + [ 8.6854776, 46.7304166 ], + [ 8.6854046, 46.7302643 ], + [ 8.6854383, 46.7300954 ], + [ 8.6854891, 46.7299208 ], + [ 8.6855976, 46.7296282 ], + [ 8.6857979, 46.7290261 ], + [ 8.6859304, 46.7287785 ], + [ 8.6859074, 46.7285644 ], + [ 8.685876, 46.7282996 ], + [ 8.6857862, 46.7281303 ], + [ 8.6856554, 46.7280623 ], + [ 8.6854999, 46.7280224 ], + [ 8.6852953, 46.7279767 ], + [ 8.6850574, 46.7279423 ], + [ 8.6847948, 46.7278683 ], + [ 8.684582, 46.7277888 ], + [ 8.6844018, 46.7277038 ], + [ 8.684263, 46.7275739 ], + [ 8.6841901, 46.7274948 ], + [ 8.6840432, 46.7272972 ], + [ 8.6839949, 46.7271506 ], + [ 8.6839376, 46.7270434 ], + [ 8.683815599999999, 46.7269303 ], + [ 8.6836685, 46.7268623 ], + [ 8.6834795, 46.7267885 ], + [ 8.6832261, 46.726754 ], + [ 8.6829636, 46.7267194 ], + [ 8.682716899999999, 46.7266961 ], + [ 8.6823482, 46.7266613 ], + [ 8.6819378, 46.7265924 ], + [ 8.681667000000001, 46.7265861 ], + [ 8.6815115, 46.7265125 ], + [ 8.6813811, 46.7264219 ], + [ 8.681267, 46.7263314 ], + [ 8.681111, 46.7262353 ], + [ 8.6809396, 46.7261784 ], + [ 8.6807594, 46.7261272 ], + [ 8.6805957, 46.7260477 ], + [ 8.6804813, 46.7259461 ], + [ 8.6803835, 46.7258556 ], + [ 8.6802604, 46.7257652 ], + [ 8.6801381, 46.7256352 ], + [ 8.6800736, 46.7255336 ], + [ 8.6800001, 46.725432 ], + [ 8.6798943, 46.7252739 ], + [ 8.6797961, 46.7251666 ], + [ 8.6797149, 46.7250819 ], + [ 8.6796176, 46.7249069 ], + [ 8.6795039, 46.7246925 ], + [ 8.6793896, 46.7245909 ], + [ 8.6792587, 46.7244834 ], + [ 8.6791439, 46.7244323 ], + [ 8.6790462, 46.724342 ], + [ 8.6789811, 46.7242854 ], + [ 8.6789978, 46.7241954 ], + [ 8.6790556, 46.724077199999996 ], + [ 8.6791392, 46.7239422 ], + [ 8.6792298, 46.7238636 ], + [ 8.679411, 46.7237459 ], + [ 8.6796002, 46.7236507 ], + [ 8.679781, 46.7235498 ], + [ 8.6799463, 46.7234489 ], + [ 8.6800695, 46.723331 ], + [ 8.6801852, 46.7232412 ], + [ 8.680367, 46.7230445 ], + [ 8.6806065, 46.7227579 ], + [ 8.6808462, 46.722477 ], + [ 8.6811107, 46.7221397 ], + [ 8.6816151, 46.7215328 ], + [ 8.6817064, 46.721381 ], + [ 8.681756, 46.7212628 ], + [ 8.6817322, 46.72115 ], + [ 8.6816998, 46.7210936 ], + [ 8.6817658, 46.721015 ], + [ 8.6818484, 46.7209081 ], + [ 8.6820051, 46.720824 ], + [ 8.682145, 46.7207568 ], + [ 8.6822684, 46.7207178 ], + [ 8.6824406, 46.7207071 ], + [ 8.6825635, 46.7206848 ], + [ 8.6826863, 46.7206909 ], + [ 8.6828505, 46.7207534 ], + [ 8.683023, 46.7207537 ], + [ 8.6832117, 46.7207092 ], + [ 8.6833272, 46.7206139 ], + [ 8.6834675, 46.720496 ], + [ 8.6835992, 46.7203893 ], + [ 8.6837148, 46.7202994 ], + [ 8.6839125, 46.7201874 ], + [ 8.6839865, 46.7200637 ], + [ 8.6840615, 46.7199118 ], + [ 8.6840866, 46.7197598 ], + [ 8.6840555, 46.719545600000004 ], + [ 8.6840812, 46.7193485 ], + [ 8.684066, 46.7191851 ], + [ 8.684067, 46.7189822 ], + [ 8.6840352, 46.7187738 ], + [ 8.6840615, 46.7185316 ], + [ 8.684103, 46.7183796 ], + [ 8.6841131, 46.7181431 ], + [ 8.6840241, 46.7178667 ], + [ 8.6840013, 46.7176244 ], + [ 8.6839859, 46.7173821 ], + [ 8.6839543, 46.7171793 ], + [ 8.6839064, 46.7169143 ], + [ 8.6838742, 46.7167904 ], + [ 8.6839076, 46.7167172 ], + [ 8.6839574, 46.7166442 ], + [ 8.6840316, 46.7165992 ], + [ 8.6841634, 46.7164982 ], + [ 8.6843365, 46.7163861 ], + [ 8.6845015, 46.7162345 ], + [ 8.684649199999999, 46.716156 ], + [ 8.684855, 46.7160383 ], + [ 8.6850198, 46.7159543 ], + [ 8.6851685, 46.715842 ], + [ 8.6851275, 46.7157687 ], + [ 8.68512, 46.715656 ], + [ 8.6850632, 46.715532 ], + [ 8.6849982, 46.7154078 ], + [ 8.6849498, 46.7152949 ], + [ 8.6849665, 46.7152049 ], + [ 8.6850084, 46.7150698 ], + [ 8.6850587, 46.7148783 ], + [ 8.6850434, 46.7147094 ], + [ 8.6850115, 46.7145346 ], + [ 8.6850045, 46.7143712 ], + [ 8.6849315, 46.7142189 ], + [ 8.6848587, 46.7141117 ], + [ 8.684792999999999, 46.7139932 ], + [ 8.684655, 46.7138575 ], + [ 8.6844829, 46.7137332 ], + [ 8.6843691, 46.7136202 ], + [ 8.6842056, 46.7135127 ], + [ 8.6840751, 46.7133827 ], + [ 8.6839606, 46.7132753 ], + [ 8.6838963, 46.7131118 ], + [ 8.6838722, 46.7129878 ], + [ 8.6837825, 46.7129255 ], + [ 8.6836515, 46.7128463 ], + [ 8.6835039, 46.7127558 ], + [ 8.683513, 46.7126543 ], + [ 8.6835384, 46.712553 ], + [ 8.6836208, 46.7125082 ], + [ 8.6837436, 46.7124466 ], + [ 8.683908, 46.7124133 ], + [ 8.6840396, 46.7123405 ], + [ 8.6841963, 46.712262 ], + [ 8.6843282, 46.7121666 ], + [ 8.6844273, 46.7120317 ], + [ 8.6845435, 46.7118631 ], + [ 8.6846752, 46.711762 ], + [ 8.6847741, 46.7117229 ], + [ 8.6849383, 46.7116501 ], + [ 8.6851195, 46.7115661 ], + [ 8.6852179, 46.7114707 ], + [ 8.6853341, 46.711302 ], + [ 8.6854834, 46.7110771 ], + [ 8.6856403, 46.7108634 ], + [ 8.6857972, 46.7106103 ], + [ 8.6859631, 46.7103629 ], + [ 8.6862292, 46.7097103 ], + [ 8.6863202, 46.7096147 ], + [ 8.6863859, 46.7095586 ], + [ 8.68651, 46.7094801 ], + [ 8.6866081, 46.7094128 ], + [ 8.6866993, 46.7093229 ], + [ 8.686807, 46.7091767 ], + [ 8.6869465, 46.7090589 ], + [ 8.6870868, 46.7089747 ], + [ 8.6872426, 46.7089245 ], + [ 8.6873662, 46.7088967 ], + [ 8.6874652, 46.7088293 ], + [ 8.6875723, 46.7087621 ], + [ 8.6878018, 46.7087177 ], + [ 8.687958, 46.7086843 ], + [ 8.6881478, 46.7085497 ], + [ 8.6884363, 46.7083026 ], + [ 8.6886834, 46.7081004 ], + [ 8.6887662, 46.7080049 ], + [ 8.6888237, 46.7079094 ], + [ 8.688849, 46.7078024 ], + [ 8.688891, 46.7077124 ], + [ 8.6889648, 46.7076506 ], + [ 8.6890558, 46.7075945 ], + [ 8.6891704, 46.7075273 ], + [ 8.6892617, 46.7074487 ], + [ 8.6893767, 46.7073307 ], + [ 8.6894841, 46.7072409 ], + [ 8.6895508, 46.7071172 ], + [ 8.6896086, 46.7070384 ], + [ 8.6897155, 46.7069599 ], + [ 8.6898632, 46.7068814 ], + [ 8.6900277, 46.70682 ], + [ 8.6902003, 46.7067529 ], + [ 8.6903983, 46.7066576 ], + [ 8.690669, 46.706557 ], + [ 8.6909323, 46.7064564 ], + [ 8.6911134, 46.7064062 ], + [ 8.6912613, 46.7063671 ], + [ 8.6914335, 46.7063225 ], + [ 8.6915736, 46.7063003 ], + [ 8.6917378, 46.7062614 ], + [ 8.6920002, 46.7062283 ], + [ 8.6922304, 46.7061783 ], + [ 8.6923617, 46.7060941 ], + [ 8.6924607, 46.7060269 ], + [ 8.6925354, 46.7059032 ], + [ 8.6926346, 46.70574 ], + [ 8.6928, 46.7054701 ], + [ 8.6929573, 46.7053128 ], + [ 8.6932534, 46.7051785 ], + [ 8.6936393, 46.7050781 ], + [ 8.6936733, 46.7048867 ], + [ 8.6935917, 46.7047175 ], + [ 8.6935278, 46.7045033 ], + [ 8.6934063, 46.7042663 ], + [ 8.6932598, 46.7040124 ], + [ 8.6930972, 46.7037358 ], + [ 8.6930325, 46.7036229 ], + [ 8.6930002, 46.7034989 ], + [ 8.6930253, 46.7033863 ], + [ 8.6930339, 46.7032625 ], + [ 8.6930512, 46.7031274 ], + [ 8.6930277, 46.7030315 ], + [ 8.6929874, 46.702913 ], + [ 8.6929633, 46.7027552 ], + [ 8.6929397, 46.70262 ], + [ 8.6929318, 46.7024903 ], + [ 8.6928096, 46.7022985 ], + [ 8.6927121, 46.7021461 ], + [ 8.6926558, 46.7019769 ], + [ 8.6925513, 46.7018397 ], + [ 8.6925241, 46.7018307 ], + [ 8.6913899, 46.7008536 ], + [ 8.6912504, 46.7004772 ], + [ 8.6910992, 46.6995972 ], + [ 8.6907552, 46.6988633 ], + [ 8.6906151, 46.69846 ], + [ 8.6906763, 46.6982794 ], + [ 8.6904468, 46.697967 ], + [ 8.6900467, 46.6976295 ], + [ 8.6898036, 46.6972993 ], + [ 8.6896625, 46.696851 ], + [ 8.6894983, 46.6965379 ], + [ 8.6890947, 46.6960475 ], + [ 8.6862687, 46.6942792 ], + [ 8.6857865, 46.6943474 ], + [ 8.6848323, 46.6943579 ], + [ 8.6841839, 46.6945899 ], + [ 8.6839235, 46.6946377 ], + [ 8.6824146, 46.6944112 ], + [ 8.6816328, 46.6945277 ], + [ 8.6805337, 46.6950615 ], + [ 8.6793948, 46.6950019 ], + [ 8.6788725, 46.6950346 ], + [ 8.6781112, 46.6949079 ], + [ 8.676768, 46.6944907 ], + [ 8.6762646, 46.6942083 ], + [ 8.6750311, 46.6928722 ], + [ 8.6746301, 46.6924896 ], + [ 8.6743208, 46.6921151 ], + [ 8.673884, 46.6913102 ], + [ 8.6737492, 46.6911317 ], + [ 8.6737779, 46.68953 ], + [ 8.6738969, 46.6890159 ], + [ 8.6738478, 46.6885846 ], + [ 8.6737476, 46.6882078 ], + [ 8.674456, 46.6865987 ], + [ 8.6744426, 46.6860141 ], + [ 8.6748615, 46.6854697 ], + [ 8.6748487, 46.6849121 ], + [ 8.6751013, 46.6845225 ], + [ 8.6750256, 46.6840735 ], + [ 8.6740582, 46.6834992 ], + [ 8.6732933, 46.6826348 ], + [ 8.673088, 46.6822322 ], + [ 8.6731492, 46.6820516 ], + [ 8.6728714, 46.6813348 ], + [ 8.6730802, 46.6807478 ], + [ 8.6738134, 46.6796602 ], + [ 8.6740247, 46.6791811 ], + [ 8.6742007, 46.6783066 ], + [ 8.6736833, 46.6768277 ], + [ 8.673998600000001, 46.6763295 ], + [ 8.6741221, 46.6760132 ], + [ 8.6741394, 46.675626199999996 ], + [ 8.6739166, 46.6745312 ], + [ 8.6739093, 46.6744953 ], + [ 8.6733655, 46.6742214 ], + [ 8.6730139, 46.6740626 ], + [ 8.6722925, 46.6739534 ], + [ 8.6714154, 46.6738945 ], + [ 8.6699242, 46.6737322 ], + [ 8.6687193, 46.673768 ], + [ 8.6685552, 46.6737731 ], + [ 8.6684892, 46.673818 ], + [ 8.6683905, 46.6738966 ], + [ 8.668307800000001, 46.6739583 ], + [ 8.6682096, 46.6740199 ], + [ 8.6681594, 46.6740761 ], + [ 8.6680365, 46.6741321 ], + [ 8.6679377, 46.674205 ], + [ 8.6678223, 46.6742667 ], + [ 8.6677396, 46.674334 ], + [ 8.6676082, 46.674373 ], + [ 8.6674775, 46.6743726 ], + [ 8.6673546, 46.6743948 ], + [ 8.6671897, 46.6744338 ], + [ 8.6670754, 46.6744728 ], + [ 8.6669678, 46.6745176 ], + [ 8.666812, 46.6745284 ], + [ 8.6667062, 46.6745111 ], + [ 8.6665666, 46.6744769 ], + [ 8.6664107, 46.6744482 ], + [ 8.6662721, 46.674352 ], + [ 8.6661254, 46.6742953 ], + [ 8.6659611, 46.6742554 ], + [ 8.6658222, 46.6742155 ], + [ 8.6657404, 46.6741758 ], + [ 8.6656341, 46.6741022 ], + [ 8.6654632, 46.6739834 ], + [ 8.6652996, 46.6738308 ], + [ 8.6650871, 46.6736837 ], + [ 8.6649083, 46.6735085 ], + [ 8.6647298, 46.6732376 ], + [ 8.6645254, 46.6730849 ], + [ 8.6643461, 46.6729604 ], + [ 8.6643705, 46.6729209 ], + [ 8.6643791, 46.6728309 ], + [ 8.6644053, 46.6726902 ], + [ 8.6643489, 46.6724702 ], + [ 8.6642357, 46.6722728 ], + [ 8.6641061, 46.6720302 ], + [ 8.6639427, 46.6718156 ], + [ 8.6638545, 46.6716012 ], + [ 8.6636989, 46.6715106 ], + [ 8.663461999999999, 46.6714028 ], + [ 8.6632167, 46.6713176 ], + [ 8.6630279, 46.6712776 ], + [ 8.6627005, 46.6712484 ], + [ 8.6623235, 46.6712303 ], + [ 8.6619788, 46.6711954 ], + [ 8.6617335, 46.6712173 ], + [ 8.6613972, 46.6712275 ], + [ 8.6611995, 46.6713 ], + [ 8.6609536, 46.6713725 ], + [ 8.6605836, 46.6714447 ], + [ 8.6602303, 46.6715732 ], + [ 8.6599595, 46.6716624 ], + [ 8.6597296, 46.671718 ], + [ 8.6594666, 46.6717904 ], + [ 8.65927, 46.6718011 ], + [ 8.6591142, 46.6718119 ], + [ 8.6588521, 46.6718166 ], + [ 8.6585564, 46.671782 ], + [ 8.658237, 46.6718148 ], + [ 8.6579994, 46.6718197 ], + [ 8.657704, 46.6718357 ], + [ 8.6572283, 46.6718567 ], + [ 8.6565559, 46.6718884 ], + [ 8.6561535, 46.671904 ], + [ 8.6557605, 46.6718972 ], + [ 8.6555131, 46.6721217 ], + [ 8.655291, 46.6722674 ], + [ 8.6551424, 46.6723797 ], + [ 8.6549774, 46.6724919 ], + [ 8.6548616, 46.6726436 ], + [ 8.6547135, 46.6728121 ], + [ 8.6545886, 46.6730371 ], + [ 8.6544639, 46.6733015 ], + [ 8.6544226, 46.6733914 ], + [ 8.6543157, 46.6734305 ], + [ 8.6541923, 46.6735034 ], + [ 8.6540199, 46.6735705 ], + [ 8.6538393, 46.6736431 ], + [ 8.6536085, 46.6737326 ], + [ 8.6534441, 46.6737939 ], + [ 8.6533207, 46.6738668 ], + [ 8.6531322, 46.6739451 ], + [ 8.6530001, 46.6739953 ], + [ 8.6529175, 46.6740966 ], + [ 8.6527698, 46.6742144 ], + [ 8.6525556, 46.6743151 ], + [ 8.652391399999999, 46.6743878 ], + [ 8.6522266, 46.6744323 ], + [ 8.6520294, 46.6744937 ], + [ 8.6518415, 46.6744931 ], + [ 8.6517017, 46.6745208 ], + [ 8.6515452, 46.6745766 ], + [ 8.6513733, 46.6746324 ], + [ 8.6512329, 46.6747108 ], + [ 8.6511179, 46.6747894 ], + [ 8.6509204, 46.6748733 ], + [ 8.6507561, 46.6749009 ], + [ 8.6506087, 46.674923 ], + [ 8.6505013, 46.674979 ], + [ 8.6504197, 46.6750181 ], + [ 8.6503041, 46.6750741 ], + [ 8.6501481, 46.6751468 ], + [ 8.6499758, 46.6751857 ], + [ 8.6498361, 46.6751852 ], + [ 8.6496644, 46.675179 ], + [ 8.6494668, 46.6751841 ], + [ 8.6492867, 46.6752398 ], + [ 8.6491304, 46.6752619 ], + [ 8.6488841, 46.6752836 ], + [ 8.6486954, 46.6753168 ], + [ 8.648515, 46.6753274 ], + [ 8.6484249, 46.6753159 ], + [ 8.6482857, 46.6752985 ], + [ 8.6481713, 46.6752982 ], + [ 8.6479334, 46.6752919 ], + [ 8.6477526, 46.6753138 ], + [ 8.6475069, 46.6753242 ], + [ 8.647310000000001, 46.6753237 ], + [ 8.647146, 46.6753681 ], + [ 8.6469652, 46.6754295 ], + [ 8.6468253, 46.675491 ], + [ 8.6466281, 46.6755524 ], + [ 8.6465128, 46.6755465 ], + [ 8.646382, 46.6755404 ], + [ 8.6462671, 46.6755175 ], + [ 8.6460875, 46.6754887 ], + [ 8.6458415, 46.6754823 ], + [ 8.645669, 46.6754761 ], + [ 8.6454061, 46.6755202 ], + [ 8.6452583, 46.6755592 ], + [ 8.6450615, 46.6755981 ], + [ 8.6448402, 46.6756367 ], + [ 8.6445451, 46.6756302 ], + [ 8.6441839, 46.6755896 ], + [ 8.6438322, 46.6755321 ], + [ 8.6435047, 46.6754635 ], + [ 8.6431939, 46.6753723 ], + [ 8.6428911, 46.6752756 ], + [ 8.642662, 46.6751846 ], + [ 8.6424246, 46.6750543 ], + [ 8.6421718, 46.6748901 ], + [ 8.6420495, 46.6747545 ], + [ 8.6419691, 46.6745909 ], + [ 8.6418883, 46.6743371 ], + [ 8.6417542, 46.6748436 ], + [ 8.6417278, 46.6750521 ], + [ 8.6416937, 46.6752829 ], + [ 8.6416598, 46.6755194 ], + [ 8.6415922, 46.6757502 ], + [ 8.6414673, 46.6760089 ], + [ 8.6413759, 46.6762339 ], + [ 8.6412672, 46.6765265 ], + [ 8.6410852, 46.676864 ], + [ 8.6409669, 46.6772748 ], + [ 8.6408169, 46.6777306 ], + [ 8.6406831, 46.6781414 ], + [ 8.6405568, 46.6785578 ], + [ 8.6404647, 46.6788617 ], + [ 8.6404072, 46.6789236 ], + [ 8.6403575, 46.6789628 ], + [ 8.6402505, 46.6790019 ], + [ 8.64007, 46.6790407 ], + [ 8.6398976, 46.6791134 ], + [ 8.6396676, 46.679169 ], + [ 8.6393716, 46.6793032 ], + [ 8.6389771, 46.679454 ], + [ 8.638771, 46.6795547 ], + [ 8.6385898, 46.6796725 ], + [ 8.6383925, 46.6798013 ], + [ 8.6382029, 46.6799078 ], + [ 8.6379969, 46.680048 ], + [ 8.6378074, 46.6801994 ], + [ 8.6376428, 46.6803285 ], + [ 8.6374114, 46.6805023 ], + [ 8.6372962, 46.6806146 ], + [ 8.6371643, 46.6806705 ], + [ 8.636926, 46.6807937 ], + [ 8.6367365, 46.6809395 ], + [ 8.6365389, 46.6810572 ], + [ 8.636357199999999, 46.6812255 ], + [ 8.6362586, 46.6813098 ], + [ 8.6361671, 46.6814221 ], + [ 8.636076599999999, 46.6815401 ], + [ 8.6360098, 46.6816582 ], + [ 8.6359596, 46.681827 ], + [ 8.6358836, 46.6821198 ], + [ 8.6357834, 46.6824292 ], + [ 8.6357168, 46.6826318 ], + [ 8.6356331, 46.6828005 ], + [ 8.6355504, 46.6829017 ], + [ 8.6354022, 46.6830364 ], + [ 8.6352292, 46.6831541 ], + [ 8.6351297, 46.683272099999996 ], + [ 8.6350137, 46.6834576 ], + [ 8.6349384, 46.6836715 ], + [ 8.6349376, 46.6838573 ], + [ 8.6348219, 46.6839471 ], + [ 8.6346663, 46.6839691 ], + [ 8.6343791, 46.6839851 ], + [ 8.6341087, 46.6839108 ], + [ 8.6338385, 46.6838143 ], + [ 8.6335359, 46.6837625 ], + [ 8.6332572, 46.6837221 ], + [ 8.633028, 46.6837044 ], + [ 8.6326919, 46.6836527 ], + [ 8.6324056, 46.683601 ], + [ 8.6321674, 46.6835439 ], + [ 8.6318894, 46.6834584 ], + [ 8.6317102, 46.6833339 ], + [ 8.6316456, 46.6831873 ], + [ 8.6315809, 46.6830687 ], + [ 8.6314994, 46.6830009 ], + [ 8.6313762, 46.6829385 ], + [ 8.6312539, 46.6828367 ], + [ 8.631198, 46.6827125 ], + [ 8.6311989, 46.682566 ], + [ 8.6311496, 46.6824814 ], + [ 8.6310442, 46.6824078 ], + [ 8.6308562, 46.6823283 ], + [ 8.6306682, 46.682248799999996 ], + [ 8.6304389, 46.6821522 ], + [ 8.6301364, 46.6820667 ], + [ 8.629849, 46.6820038 ], + [ 8.6294974, 46.6819519 ], + [ 8.629226599999999, 46.6819003 ], + [ 8.6289487, 46.6818543 ], + [ 8.6286702, 46.6817858 ], + [ 8.6284816, 46.6817175 ], + [ 8.6282695, 46.681621 ], + [ 8.6279667, 46.6815242 ], + [ 8.6277215, 46.6814446 ], + [ 8.6274014, 46.6814153 ], + [ 8.6271143, 46.6814369 ], + [ 8.6266879, 46.6814805 ], + [ 8.6262856, 46.6815016 ], + [ 8.626056, 46.6815009 ], + [ 8.6257772, 46.6814886 ], + [ 8.625548, 46.681471 ], + [ 8.6252697, 46.681408 ], + [ 8.6250488, 46.6813229 ], + [ 8.6248198, 46.6812375 ], + [ 8.6246555, 46.6812314 ], + [ 8.6244588, 46.6812757 ], + [ 8.6242451, 46.6813314 ], + [ 8.6240398, 46.681432 ], + [ 8.6238096, 46.6815157 ], + [ 8.6236119, 46.6816277 ], + [ 8.6233654, 46.6817113 ], + [ 8.623168100000001, 46.6817332 ], + [ 8.6229878, 46.6817439 ], + [ 8.6227832, 46.6817262 ], + [ 8.6226026, 46.6816862 ], + [ 8.6224467, 46.6816575 ], + [ 8.6222991, 46.6816683 ], + [ 8.6221593, 46.681741 ], + [ 8.6220361, 46.6817462 ], + [ 8.6218725, 46.6817738 ], + [ 8.6215853, 46.681756 ], + [ 8.6213316, 46.6817382 ], + [ 8.621052, 46.6817654 ], + [ 8.6207725, 46.6818715 ], + [ 8.6205429, 46.6819102 ], + [ 8.6203784, 46.6819715 ], + [ 8.620303700000001, 46.682067 ], + [ 8.6200904, 46.6821395 ], + [ 8.6198934, 46.6821726 ], + [ 8.6196958, 46.6822171 ], + [ 8.6195073, 46.6823009 ], + [ 8.6193343, 46.6823848 ], + [ 8.6191616, 46.68248 ], + [ 8.6189715, 46.6826033 ], + [ 8.6188239, 46.6826928 ], + [ 8.6186258, 46.6828275 ], + [ 8.6184612, 46.6829564 ], + [ 8.6183041, 46.6830572 ], + [ 8.6181814, 46.6830906 ], + [ 8.6180085, 46.6831407 ], + [ 8.6176721, 46.683224 ], + [ 8.6174995, 46.683291 ], + [ 8.6172689, 46.6833578 ], + [ 8.6170558, 46.6834022 ], + [ 8.6168743, 46.683469099999996 ], + [ 8.6167185, 46.6835193 ], + [ 8.616594899999999, 46.6835471 ], + [ 8.616505, 46.6835805 ], + [ 8.6163653, 46.6836195 ], + [ 8.6161768, 46.6836301 ], + [ 8.6159709, 46.6836688 ], + [ 8.6156838, 46.6836903 ], + [ 8.615479, 46.6837009 ], + [ 8.615372, 46.6837062 ], + [ 8.615282, 46.683734 ], + [ 8.6151917, 46.68379 ], + [ 8.6150928, 46.6838629 ], + [ 8.6149605, 46.6839413 ], + [ 8.6147628, 46.6840195 ], + [ 8.614582, 46.684120300000004 ], + [ 8.6143681, 46.6842041 ], + [ 8.6142039, 46.6842429 ], + [ 8.6140475, 46.6842987 ], + [ 8.6137358, 46.6843201 ], + [ 8.6134739, 46.6843361 ], + [ 8.613186, 46.6843577 ], + [ 8.6129564, 46.6843963 ], + [ 8.6127351, 46.6844011 ], + [ 8.6125134, 46.6844284 ], + [ 8.6123246, 46.6844616 ], + [ 8.6121358, 46.6844947 ], + [ 8.6119224, 46.6845278 ], + [ 8.6116842, 46.6845833 ], + [ 8.6114292, 46.6846163 ], + [ 8.6111259, 46.6846828 ], + [ 8.6107307, 46.6848447 ], + [ 8.6105338, 46.6848834 ], + [ 8.6103694, 46.6849505 ], + [ 8.6101807, 46.6849893 ], + [ 8.6099588, 46.6850053 ], + [ 8.6097946, 46.6850047 ], + [ 8.609589, 46.6850942 ], + [ 8.6092442, 46.6851718 ], + [ 8.6090795, 46.685222 ], + [ 8.6088746, 46.6853057 ], + [ 8.6087426, 46.685401 ], + [ 8.6085462, 46.6852707 ], + [ 8.608318, 46.685146 ], + [ 8.6080399, 46.6849816 ], + [ 8.6078927, 46.6849023 ], + [ 8.6076472, 46.6848845 ], + [ 8.6073519, 46.684906 ], + [ 8.6071383, 46.6849277 ], + [ 8.6069828, 46.6849159 ], + [ 8.6067695, 46.6848757 ], + [ 8.6062945, 46.6847838 ], + [ 8.6058808, 46.6846992 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "JBG0014", + "country" : "CHE", + "name" : [ + { + "text" : "Eidgenössisches Jagdbanngebiet Fellital", + "lang" : "de-CH" + }, + { + "text" : "District franc fédéral Fellital", + "lang" : "fr-CH" + }, + { + "text" : "Bandita federale di caccia Fellital", + "lang" : "it-CH" + }, + { + "text" : "Federal Game Reserve Fellital", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.7192298, 46.9402755 ], + [ 6.7193548, 46.9402092 ], + [ 6.7188828, 46.9399631 ], + [ 6.7183911, 46.9390625 ], + [ 6.7183589999999995, 46.938984 ], + [ 6.7187064, 46.9387957 ], + [ 6.7187906, 46.9387275 ], + [ 6.7188086, 46.9386917 ], + [ 6.718891, 46.9386379 ], + [ 6.7188696, 46.9385484 ], + [ 6.7189966, 46.9384813 ], + [ 6.718981, 46.9383797 ], + [ 6.7190197, 46.9383211 ], + [ 6.7191303, 46.9382584 ], + [ 6.7191802, 46.9381868 ], + [ 6.7191873, 46.9381102 ], + [ 6.7192473, 46.938053 ], + [ 6.7191841, 46.9380268 ], + [ 6.7191744, 46.9377746 ], + [ 6.719437, 46.9375146 ], + [ 6.7195542, 46.9374642 ], + [ 6.7197326, 46.9373624 ], + [ 6.7197619, 46.9373129 ], + [ 6.7198863, 46.9371392 ], + [ 6.7200207, 46.9369516 ], + [ 6.7200511, 46.937035 ], + [ 6.7201066, 46.9369866 ], + [ 6.7201067, 46.937004 ], + [ 6.7201105, 46.9370142 ], + [ 6.7201367, 46.9370018 ], + [ 6.7201655, 46.9370164 ], + [ 6.7201463, 46.9370458 ], + [ 6.7201451, 46.9370593 ], + [ 6.7201364, 46.9370701 ], + [ 6.7201264, 46.9370992 ], + [ 6.7201252, 46.9371113 ], + [ 6.720108, 46.9371264 ], + [ 6.720111, 46.9371392 ], + [ 6.7201367, 46.9371314 ], + [ 6.7201454, 46.937111 ], + [ 6.7201541, 46.9371034 ], + [ 6.7201697, 46.9370893 ], + [ 6.7201724, 46.9370817 ], + [ 6.7202003, 46.937064 ], + [ 6.7202115, 46.937064 ], + [ 6.7202181, 46.9370566 ], + [ 6.7202376, 46.9370779 ], + [ 6.7205206, 46.9368254 ], + [ 6.7206797, 46.9366827 ], + [ 6.7207794, 46.9365539 ], + [ 6.7207851, 46.9365031 ], + [ 6.7208728, 46.9363755 ], + [ 6.7208556, 46.9362699 ], + [ 6.7209195, 46.9362 ], + [ 6.7209201, 46.9361536 ], + [ 6.7208686, 46.9361001 ], + [ 6.7208457, 46.9360944 ], + [ 6.7207412, 46.9360683 ], + [ 6.7206348, 46.9360418 ], + [ 6.715621, 46.9347898 ], + [ 6.7133009, 46.9340878 ], + [ 6.7130443, 46.9344952 ], + [ 6.7128135, 46.9348904 ], + [ 6.712464, 46.9348885 ], + [ 6.7120273, 46.9349076 ], + [ 6.7116299, 46.9349969 ], + [ 6.711286, 46.9351882 ], + [ 6.7118939, 46.9354902 ], + [ 6.7121536, 46.9356813 ], + [ 6.7124358, 46.9358955 ], + [ 6.7127304, 46.9361376 ], + [ 6.7130019999999995, 46.9363583 ], + [ 6.7131659, 46.9365848 ], + [ 6.7133547, 46.9368374 ], + [ 6.7134145, 46.9369308 ], + [ 6.7136012, 46.9370564 ], + [ 6.7138406, 46.9372986 ], + [ 6.7139843, 46.9375624 ], + [ 6.7141528, 46.9376032 ], + [ 6.7147154, 46.9379648 ], + [ 6.7153635, 46.9384019 ], + [ 6.7156568, 46.9385891 ], + [ 6.7160716, 46.9386877 ], + [ 6.716515, 46.9388476 ], + [ 6.7166495, 46.9389611 ], + [ 6.7168002, 46.9391092 ], + [ 6.7171689, 46.9393483 ], + [ 6.7174844, 46.9395618 ], + [ 6.7178599, 46.939778 ], + [ 6.718146, 46.9399378 ], + [ 6.7184427, 46.9400966 ], + [ 6.7186753, 46.9402245 ], + [ 6.7187915, 46.940288 ], + [ 6.7190089, 46.9403928 ], + [ 6.7192298, 46.9402755 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "NAT1", + "country" : "CHE", + "name" : [ + { + "text" : "Creux du Van", + "lang" : "de-CH" + }, + { + "text" : "Creux du Van", + "lang" : "fr-CH" + }, + { + "text" : "Creux du Van", + "lang" : "it-CH" + }, + { + "text" : "Creux du Van", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "regulationExemption" : "NO", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Section nature", + "lang" : "de-CH" + }, + { + "text" : "Section nature", + "lang" : "fr-CH" + }, + { + "text" : "Section nature", + "lang" : "it-CH" + }, + { + "text" : "Section nature", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Service de la faune, des forêts et de la nature", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, des forêts et de la nature", + "lang" : "fr-CH" + }, + { + "text" : "Service de la faune, des forêts et de la nature", + "lang" : "it-CH" + }, + { + "text" : "Service de la faune, des forêts et de la nature", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Chef de la section nature", + "lang" : "de-CH" + }, + { + "text" : "Chef de la section nature", + "lang" : "fr-CH" + }, + { + "text" : "Chef de la section nature", + "lang" : "it-CH" + }, + { + "text" : "Chef de la section nature", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ne.ch/autorites/DDTE/SFFN/nature/Pages/accueil.aspx", + "email" : "sffn@ne.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.087029, 46.1510628 ], + [ 6.086773, 46.1513193 ], + [ 6.086771, 46.1513257 ], + [ 6.0864424, 46.151367 ], + [ 6.0851683, 46.1519368 ], + [ 6.084305, 46.1528021 ], + [ 6.083984, 46.1538301 ], + [ 6.0839215, 46.1537999 ], + [ 6.0824408, 46.1535767 ], + [ 6.0809499, 46.1537642 ], + [ 6.0796757, 46.1543339 ], + [ 6.0788122, 46.1551991 ], + [ 6.0787678, 46.1553415 ], + [ 6.0778305, 46.1552001 ], + [ 6.0763395, 46.1553876 ], + [ 6.0750653, 46.1559572 ], + [ 6.0742016, 46.1568224 ], + [ 6.0738802, 46.1578514 ], + [ 6.0741499, 46.1588876 ], + [ 6.0749697, 46.1597732 ], + [ 6.0762148, 46.1603733 ], + [ 6.0776956, 46.1605967 ], + [ 6.0791867, 46.1604092 ], + [ 6.0804611, 46.1598395 ], + [ 6.0813246, 46.1589742 ], + [ 6.0813691, 46.1588319 ], + [ 6.0823064, 46.1589732 ], + [ 6.0837975, 46.1587857 ], + [ 6.0850717, 46.1582159 ], + [ 6.0858774, 46.1574085 ], + [ 6.0863641, 46.1579341 ], + [ 6.0876093000000004, 46.1585341 ], + [ 6.0890901, 46.1587573 ], + [ 6.0905811, 46.1585697 ], + [ 6.0915493, 46.1581367 ], + [ 6.0924647, 46.1582746 ], + [ 6.0934934, 46.1581452 ], + [ 6.0939811, 46.1586717 ], + [ 6.0952264, 46.1592716 ], + [ 6.0967073, 46.1594947 ], + [ 6.0981983, 46.159307 ], + [ 6.0994724, 46.1587371 ], + [ 6.1003356, 46.1578717 ], + [ 6.1006566, 46.1568426 ], + [ 6.1003864, 46.1558065 ], + [ 6.0995663, 46.1549211 ], + [ 6.0985606, 46.1544367 ], + [ 6.0977581, 46.1535703 ], + [ 6.0965129, 46.1529704 ], + [ 6.0950322, 46.1527473 ], + [ 6.0945384, 46.1528094 ], + [ 6.0944265, 46.1526886 ], + [ 6.0944555, 46.1525956 ], + [ 6.0941854, 46.1515595 ], + [ 6.0934051, 46.1507169 ], + [ 6.0930684, 46.1509866 ], + [ 6.0928485, 46.151305 ], + [ 6.0918115, 46.1519464 ], + [ 6.0917351, 46.1519323 ], + [ 6.0903773, 46.1516812 ], + [ 6.0896718, 46.1515516 ], + [ 6.087029, 46.1510628 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-7", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 5.9934277, 46.2181846 ], + [ 5.993236, 46.2184976 ], + [ 5.9933379, 46.2187266 ], + [ 5.9929458, 46.2192364 ], + [ 5.992795, 46.2202776 ], + [ 5.9932263, 46.2212804 ], + [ 5.9932321, 46.2212881 ], + [ 5.9932322, 46.2212882 ], + [ 5.9932661, 46.2213329 ], + [ 5.9932963, 46.2213608 ], + [ 5.9932923, 46.2213624 ], + [ 5.9933023, 46.2213752 ], + [ 5.9936491, 46.221687 ], + [ 5.9940033, 46.2220147 ], + [ 5.9940251, 46.2220252 ], + [ 5.9940557, 46.2220528 ], + [ 5.9948954, 46.2224472 ], + [ 5.9950101, 46.2225028 ], + [ 5.9950167, 46.2225042 ], + [ 5.995077, 46.2225325 ], + [ 5.9953295, 46.2225822 ], + [ 5.9955096, 46.2225469 ], + [ 5.9957952, 46.2224728 ], + [ 5.9961227, 46.2223553 ], + [ 5.9963725, 46.2223534 ], + [ 5.9965532, 46.2223084 ], + [ 5.9967724, 46.2222905 ], + [ 5.9968486, 46.2223149 ], + [ 5.9970293, 46.2223406 ], + [ 5.9972843, 46.2222987 ], + [ 5.9973743, 46.2222998 ], + [ 5.9974796999999995, 46.2222665 ], + [ 5.9975688, 46.2222682 ], + [ 5.9976685, 46.2222291 ], + [ 5.9977708, 46.2222042 ], + [ 5.9978117, 46.2221663 ], + [ 5.997847, 46.2221512 ], + [ 5.9978911, 46.2221425 ], + [ 5.9979482, 46.2221427 ], + [ 5.9979914, 46.2221405 ], + [ 5.9980179, 46.2221376 ], + [ 5.9980689, 46.2221079 ], + [ 5.9981329, 46.2220835 ], + [ 5.9983454, 46.2219824 ], + [ 5.9984825, 46.2219264 ], + [ 5.998518, 46.2219022 ], + [ 5.9986124, 46.2218474 ], + [ 5.9986856, 46.2217477 ], + [ 5.9987682, 46.2216805 ], + [ 5.9988198, 46.2216587 ], + [ 5.9988604, 46.2216336 ], + [ 5.9989115, 46.2216333 ], + [ 5.9989801, 46.2216296 ], + [ 5.9990993, 46.221618 ], + [ 5.9991483, 46.2215925 ], + [ 5.9991631, 46.2215545 ], + [ 5.9992147, 46.2214892 ], + [ 5.9992324, 46.2214552 ], + [ 5.9992536, 46.2214298 ], + [ 5.9993529, 46.2213575 ], + [ 5.9994248, 46.2212624 ], + [ 5.9994807, 46.2211958 ], + [ 5.9995037, 46.2211212 ], + [ 5.9995027, 46.2210921 ], + [ 5.9995742, 46.2210954 ], + [ 5.9996189, 46.2209924 ], + [ 6.0000253, 46.2200551 ], + [ 6.0000357, 46.220031 ], + [ 6.0001703, 46.2200702 ], + [ 6.000294, 46.2201251 ], + [ 6.0003737, 46.2201404 ], + [ 6.0006538, 46.2202338 ], + [ 6.0011114, 46.2203933 ], + [ 6.0013279, 46.2204274 ], + [ 6.0015392, 46.2205001 ], + [ 6.0016575, 46.2205923 ], + [ 6.0017956, 46.220721 ], + [ 6.0020139, 46.2211222 ], + [ 6.0021435, 46.2212857 ], + [ 6.0023161, 46.2215284 ], + [ 6.0025262, 46.2217746 ], + [ 6.0025687, 46.2219072 ], + [ 6.0026095, 46.2219706 ], + [ 6.00275, 46.2221247 ], + [ 6.0027811, 46.2221441 ], + [ 6.0028532, 46.2222231 ], + [ 6.0029068, 46.2223109 ], + [ 6.0030583, 46.2224204 ], + [ 6.0031216, 46.2224874 ], + [ 6.0031937, 46.2225293 ], + [ 6.0032124, 46.2225607 ], + [ 6.0034659, 46.2227407 ], + [ 6.0041382, 46.2225623 ], + [ 6.0043597, 46.2225233 ], + [ 6.0044383, 46.2224827 ], + [ 6.0045482, 46.2224535 ], + [ 6.0051653, 46.2221072 ], + [ 6.0055715, 46.2218974 ], + [ 6.0055957, 46.2218788 ], + [ 6.0062608, 46.2211719 ], + [ 6.0065787, 46.2203569 ], + [ 6.0065181, 46.2195136 ], + [ 6.006085, 46.2187245 ], + [ 6.0053219, 46.218067 ], + [ 6.0051867, 46.2179821 ], + [ 6.0038852, 46.2174414 ], + [ 6.0038466, 46.2174375 ], + [ 6.0033126, 46.2171058 ], + [ 6.0032482, 46.2170251 ], + [ 6.0031298, 46.2169279 ], + [ 6.00241, 46.2165298 ], + [ 6.0023977, 46.2164766 ], + [ 6.0018433, 46.2157242 ], + [ 6.0009808, 46.2151278 ], + [ 5.9998948, 46.2147457 ], + [ 5.998692, 46.2146156 ], + [ 5.9986672, 46.2146157 ], + [ 5.9971816, 46.2148234 ], + [ 5.9971689999999995, 46.2148293 ], + [ 5.9966668, 46.2147966 ], + [ 5.9964047, 46.2148154 ], + [ 5.9952292, 46.2150325 ], + [ 5.9942078, 46.2154912 ], + [ 5.9934407, 46.2161465 ], + [ 5.9932937, 46.216411 ], + [ 5.99334, 46.2166935 ], + [ 5.9936539, 46.2173135 ], + [ 5.9935514, 46.2178984 ], + [ 5.9934277, 46.2181846 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-24", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.965343, 46.06386 ], + [ 6.9653389, 46.0637187 ], + [ 6.9653241999999995, 46.0635778 ], + [ 6.9652989, 46.0634376 ], + [ 6.9652631, 46.0632985 ], + [ 6.965217, 46.063161 ], + [ 6.9651605, 46.0630253 ], + [ 6.9650939, 46.0628918 ], + [ 6.9650174, 46.0627609 ], + [ 6.9649311, 46.0626331 ], + [ 6.9648354, 46.0625085 ], + [ 6.9647303, 46.0623876 ], + [ 6.9646164, 46.0622707 ], + [ 6.9644938, 46.0621581 ], + [ 6.964363, 46.0620501 ], + [ 6.9642241, 46.061947 ], + [ 6.9640778, 46.0618491 ], + [ 6.9639243, 46.0617567 ], + [ 6.963764, 46.06167 ], + [ 6.9635974, 46.0615893 ], + [ 6.963425, 46.0615147 ], + [ 6.9632473, 46.0614466 ], + [ 6.9630646, 46.061385 ], + [ 6.9628776, 46.0613301 ], + [ 6.9626867, 46.0612821 ], + [ 6.9624924, 46.0612412 ], + [ 6.9622954, 46.0612074 ], + [ 6.9620961, 46.0611808 ], + [ 6.961895, 46.0611615 ], + [ 6.9616928, 46.0611495 ], + [ 6.9614899, 46.061145 ], + [ 6.9612870000000004, 46.0611478 ], + [ 6.9610845999999995, 46.061158 ], + [ 6.9608832, 46.0611756 ], + [ 6.9606834, 46.0612005 ], + [ 6.9604858, 46.0612327 ], + [ 6.9602909, 46.061272 ], + [ 6.9600991, 46.0613183 ], + [ 6.9599112, 46.0613716 ], + [ 6.9597275, 46.0614316 ], + [ 6.9595485, 46.0614983 ], + [ 6.9593748, 46.0615714 ], + [ 6.9592068, 46.0616507 ], + [ 6.9590451, 46.061736 ], + [ 6.9588899, 46.0618271 ], + [ 6.9587419, 46.0619237 ], + [ 6.9586013, 46.0620256 ], + [ 6.9584685, 46.0621325 ], + [ 6.958344, 46.062244 ], + [ 6.958228, 46.06236 ], + [ 6.9581209, 46.06248 ], + [ 6.9580229, 46.0626037 ], + [ 6.9579344, 46.0627309 ], + [ 6.9578556, 46.0628611 ], + [ 6.9577867, 46.062994 ], + [ 6.9577279, 46.0631292 ], + [ 6.9576793, 46.0632663 ], + [ 6.957641, 46.0634051 ], + [ 6.9576133, 46.0635451 ], + [ 6.9575962, 46.0636858 ], + [ 6.9575896, 46.0638271 ], + [ 6.9575937, 46.0639683 ], + [ 6.9576083, 46.0641092 ], + [ 6.9576336, 46.0642494 ], + [ 6.9576694, 46.0643885 ], + [ 6.9577155, 46.0645261 ], + [ 6.957772, 46.0646618 ], + [ 6.9578385, 46.0647952 ], + [ 6.9579151, 46.0649261 ], + [ 6.9580013, 46.065054 ], + [ 6.9580971, 46.0651786 ], + [ 6.9582021, 46.0652995 ], + [ 6.958316, 46.0654164 ], + [ 6.9584386, 46.065529 ], + [ 6.9585694, 46.065637 ], + [ 6.9587082, 46.0657401 ], + [ 6.9588546000000004, 46.065838 ], + [ 6.9590081, 46.0659304 ], + [ 6.9591684, 46.0660171 ], + [ 6.959335, 46.0660978 ], + [ 6.9595074, 46.0661724 ], + [ 6.9596852, 46.0662406 ], + [ 6.9598678, 46.0663022 ], + [ 6.9600549, 46.066356999999996 ], + [ 6.9602458, 46.066405 ], + [ 6.96044, 46.066446 ], + [ 6.9606371, 46.0664798 ], + [ 6.9608365, 46.0665064 ], + [ 6.9610375, 46.0665257 ], + [ 6.9612397999999995, 46.0665376 ], + [ 6.9614426, 46.0665422 ], + [ 6.9616456, 46.0665393 ], + [ 6.961848, 46.0665291 ], + [ 6.9620494, 46.0665115 ], + [ 6.9622492, 46.0664866 ], + [ 6.9624469, 46.0664545 ], + [ 6.9626418, 46.0664152 ], + [ 6.9628336, 46.0663688 ], + [ 6.9630216, 46.0663156 ], + [ 6.9632053, 46.0662555 ], + [ 6.9633842, 46.0661889 ], + [ 6.963558, 46.0661158 ], + [ 6.9637259, 46.0660364 ], + [ 6.9638877, 46.0659511 ], + [ 6.9640428, 46.06586 ], + [ 6.9641909, 46.0657634 ], + [ 6.9643315, 46.0656615 ], + [ 6.9644642999999995, 46.0655546 ], + [ 6.9645888, 46.0654431 ], + [ 6.9647048, 46.0653271 ], + [ 6.9648119, 46.0652071 ], + [ 6.9649098, 46.0650833 ], + [ 6.9649982999999995, 46.0649562 ], + [ 6.9650771, 46.064826 ], + [ 6.965146, 46.0646931 ], + [ 6.9652048, 46.0645579 ], + [ 6.9652534, 46.0644207 ], + [ 6.9652916, 46.0642819 ], + [ 6.9653193, 46.064142 ], + [ 6.9653364, 46.0640012 ], + [ 6.965343, 46.06386 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0026", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Châtelard", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Châtelard", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Châtelard", + "lang" : "it-CH" + }, + { + "text" : "Substation Châtelard", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5937713, 47.4845586 ], + [ 7.5937597, 47.4845597 ], + [ 7.5937483, 47.4845613 ], + [ 7.5937371, 47.4845634 ], + [ 7.5937261, 47.4845661 ], + [ 7.5937154, 47.4845693 ], + [ 7.593705, 47.484573 ], + [ 7.5936951, 47.4845771 ], + [ 7.5936855, 47.4845817 ], + [ 7.5936765, 47.4845868 ], + [ 7.5936679, 47.4845924 ], + [ 7.59366, 47.4845983 ], + [ 7.5936527, 47.4846046 ], + [ 7.593646, 47.4846112 ], + [ 7.59364, 47.4846181 ], + [ 7.5936348, 47.484625199999996 ], + [ 7.5936303, 47.4846326 ], + [ 7.5935548, 47.4847641 ], + [ 7.5935515, 47.4847708 ], + [ 7.5935491, 47.4847777 ], + [ 7.5935476, 47.4847846 ], + [ 7.593547, 47.4847917 ], + [ 7.5935473, 47.4847987 ], + [ 7.5935485, 47.4848057 ], + [ 7.5935506, 47.4848126 ], + [ 7.5935535, 47.4848193 ], + [ 7.5935573, 47.4848259 ], + [ 7.593562, 47.4848322 ], + [ 7.5935673999999995, 47.4848382 ], + [ 7.5935736, 47.4848439 ], + [ 7.5935805, 47.4848491 ], + [ 7.5935880000000004, 47.484854 ], + [ 7.5935962, 47.4848584 ], + [ 7.5936048, 47.4848622 ], + [ 7.593614, 47.4848656 ], + [ 7.5936334, 47.4848707 ], + [ 7.593708, 47.4848844 ], + [ 7.593709, 47.4848846 ], + [ 7.5939027, 47.4849184 ], + [ 7.5940948, 47.4849487 ], + [ 7.5942899, 47.4849745 ], + [ 7.5944853, 47.4849991 ], + [ 7.5946812999999995, 47.4850212 ], + [ 7.5948782999999995, 47.4850412 ], + [ 7.5950765, 47.4850576 ], + [ 7.5952741, 47.4850713 ], + [ 7.5954724, 47.4850782 ], + [ 7.5956559, 47.4850808 ], + [ 7.5958654, 47.4850802 ], + [ 7.596915, 47.4850817 ], + [ 7.5977713, 47.4850813 ], + [ 7.5979239, 47.4850812 ], + [ 7.5980254, 47.4850813 ], + [ 7.5984754, 47.4850812 ], + [ 7.5987359, 47.4850811 ], + [ 7.5987341, 47.4846337 ], + [ 7.5980336, 47.4846316 ], + [ 7.5967939, 47.4846305 ], + [ 7.5956137, 47.4846299 ], + [ 7.5947984, 47.4845784 ], + [ 7.5940715, 47.4844841 ], + [ 7.5940682, 47.4843991 ], + [ 7.5940612, 47.4844109 ], + [ 7.5940533, 47.4844224 ], + [ 7.5940445, 47.4844336 ], + [ 7.5940349, 47.4844445 ], + [ 7.5940246, 47.4844551 ], + [ 7.5940134, 47.4844652 ], + [ 7.5940015, 47.484475 ], + [ 7.5939889, 47.4844844 ], + [ 7.5939755, 47.4844933 ], + [ 7.5939616, 47.4845018 ], + [ 7.593947, 47.4845098 ], + [ 7.5939329, 47.4845167 ], + [ 7.5939182, 47.4845232 ], + [ 7.5939032, 47.4845292 ], + [ 7.5938877, 47.4845347 ], + [ 7.5938719, 47.4845397 ], + [ 7.5938558, 47.4845441 ], + [ 7.5938393, 47.4845481 ], + [ 7.5938226, 47.4845515 ], + [ 7.5938057, 47.4845544 ], + [ 7.5937886, 47.4845568 ], + [ 7.5937713, 47.4845586 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns022", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Fiechten", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Fiechten", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Fiechten", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Fiechten", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5604284, 47.4658622 ], + [ 7.5615635, 47.4660456 ], + [ 7.5619765999999995, 47.465909 ], + [ 7.5625781, 47.4655159 ], + [ 7.5632155, 47.4652989 ], + [ 7.5640771, 47.4649616 ], + [ 7.564617, 47.4646825 ], + [ 7.5651595, 47.4642974 ], + [ 7.5656191, 47.4638323 ], + [ 7.5658788, 47.463776 ], + [ 7.5660903, 47.4632951 ], + [ 7.5661015, 47.4630251 ], + [ 7.5659832, 47.4629692 ], + [ 7.5661365, 47.4628328 ], + [ 7.5665851, 47.4627362 ], + [ 7.5673525999999995, 47.4626232 ], + [ 7.5676947, 47.4624226 ], + [ 7.5675645, 47.4623106 ], + [ 7.5674814, 47.4621665 ], + [ 7.5668315, 47.462047 ], + [ 7.56617, 47.4620237 ], + [ 7.5661345, 47.4620077 ], + [ 7.5658978999999995, 47.4618478 ], + [ 7.5654961, 47.4617521 ], + [ 7.5646681000000005, 47.4612564 ], + [ 7.5646207, 47.4612003 ], + [ 7.5645732, 47.4611123 ], + [ 7.5642434, 47.4608987 ], + [ 7.5639951, 47.4607949 ], + [ 7.5638414, 47.460739 ], + [ 7.5636525, 47.4607712 ], + [ 7.5634165, 47.4608516 ], + [ 7.5631569, 47.460972 ], + [ 7.5630393, 47.4612124 ], + [ 7.5624258, 47.4615175 ], + [ 7.5618112, 47.4613579 ], + [ 7.5615155, 47.461174 ], + [ 7.5613972, 47.461102 ], + [ 7.5606648, 47.4610547 ], + [ 7.5605823999999995, 47.461167 ], + [ 7.5606181, 47.4612871 ], + [ 7.5606891, 47.4613431 ], + [ 7.5603703, 47.4614075 ], + [ 7.5601925, 47.4611113 ], + [ 7.5600975, 47.4608951 ], + [ 7.5595898, 47.4609758 ], + [ 7.5594473, 47.4606475 ], + [ 7.5591876, 47.4607359 ], + [ 7.559081, 47.4606078 ], + [ 7.5587502, 47.4605521 ], + [ 7.5586557, 47.4605682 ], + [ 7.5584669, 47.4606325 ], + [ 7.5577427, 47.4605451 ], + [ 7.5574829, 47.4605774 ], + [ 7.5568573, 47.4607623 ], + [ 7.5566215, 47.4609387 ], + [ 7.556409, 47.461011 ], + [ 7.5561024, 47.4612356 ], + [ 7.5564617, 47.4614144 ], + [ 7.556516, 47.4614393 ], + [ 7.5565271, 47.4614469 ], + [ 7.5567291, 47.4615474 ], + [ 7.5568523, 47.4616708 ], + [ 7.5572207, 47.4618899 ], + [ 7.5576114, 47.4621506 ], + [ 7.5578382, 47.4623302 ], + [ 7.558035, 47.462534 ], + [ 7.5582684, 47.4627222 ], + [ 7.5585461, 47.4629292 ], + [ 7.5588766, 47.4632144 ], + [ 7.5592068999999995, 47.4635166 ], + [ 7.5593475, 47.463647 ], + [ 7.5593534, 47.4636552 ], + [ 7.559425, 47.4637126 ], + [ 7.5603359, 47.4643205 ], + [ 7.5603933, 47.4645338 ], + [ 7.5605235, 47.4646138 ], + [ 7.560553, 47.4647554 ], + [ 7.5605785, 47.4647765 ], + [ 7.5606200999999995, 47.464881 ], + [ 7.5605978, 47.4649697 ], + [ 7.5606071, 47.4650142 ], + [ 7.5605675, 47.4650897 ], + [ 7.5605319, 47.4652312 ], + [ 7.56058, 47.4655779 ], + [ 7.5604395, 47.4658517 ], + [ 7.5604284, 47.4658622 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr109", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Bielgrabe", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Bielgrabe", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Bielgrabe", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Bielgrabe", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7016569, 47.4982774 ], + [ 7.7016609, 47.4982887 ], + [ 7.7018167, 47.4987318 ], + [ 7.7019511, 47.498875 ], + [ 7.7021942, 47.4989729 ], + [ 7.7024921, 47.4990631 ], + [ 7.7025557, 47.4992553 ], + [ 7.702604, 47.4992443 ], + [ 7.7026076, 47.4992435 ], + [ 7.7027008, 47.4992224 ], + [ 7.7027139, 47.4988949 ], + [ 7.7025212, 47.4988424 ], + [ 7.7024087, 47.4983882 ], + [ 7.7023447, 47.4983739 ], + [ 7.702263, 47.4983568 ], + [ 7.7022106, 47.4983464 ], + [ 7.70214, 47.498334 ], + [ 7.7020679, 47.4983223 ], + [ 7.7020114, 47.4983137 ], + [ 7.7019523, 47.4983059 ], + [ 7.7019041, 47.4982998 ], + [ 7.7018558, 47.4982945 ], + [ 7.7018096, 47.4982895 ], + [ 7.7017569, 47.4982849 ], + [ 7.7017079, 47.4982806 ], + [ 7.7016569, 47.4982774 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr101", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Rüti", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Rüti", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Rüti", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Rüti", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8749403000000004, 47.406994 ], + [ 7.8749155, 47.4070279 ], + [ 7.8748963, 47.4070664 ], + [ 7.8748464, 47.4071928 ], + [ 7.8747808, 47.4073982 ], + [ 7.8747524, 47.407439 ], + [ 7.8745617, 47.4076076 ], + [ 7.8744802, 47.4076903 ], + [ 7.8744473, 47.4077375 ], + [ 7.8744157999999995, 47.4077946 ], + [ 7.8744004, 47.4078376 ], + [ 7.8743935, 47.4078685 ], + [ 7.8743932, 47.4078977 ], + [ 7.8743983, 47.4079287 ], + [ 7.8744485, 47.4081033 ], + [ 7.8744481, 47.4081391 ], + [ 7.8744372, 47.4081739 ], + [ 7.8743753, 47.408284 ], + [ 7.8741399, 47.4087729 ], + [ 7.8741328, 47.4087861 ], + [ 7.8741285, 47.408795 ], + [ 7.8741242, 47.408806 ], + [ 7.8741209, 47.4088171 ], + [ 7.8741187, 47.4088284 ], + [ 7.8741176, 47.4088397 ], + [ 7.8741175, 47.4088511 ], + [ 7.8741184, 47.4088624 ], + [ 7.8741204, 47.4088737 ], + [ 7.8741235, 47.4088849 ], + [ 7.8741327, 47.4089067 ], + [ 7.8741459, 47.4089276 ], + [ 7.8741629, 47.4089471 ], + [ 7.8743136, 47.4091176 ], + [ 7.8743533, 47.4091625 ], + [ 7.874482, 47.4091732 ], + [ 7.8746851, 47.4091893 ], + [ 7.8747007, 47.409192 ], + [ 7.8747328, 47.4091976 ], + [ 7.8748024, 47.4092166 ], + [ 7.8753487, 47.4093825 ], + [ 7.8760593, 47.4096129 ], + [ 7.8763087, 47.4096865 ], + [ 7.8765459, 47.4097833 ], + [ 7.876854, 47.4099494 ], + [ 7.8769576, 47.4100046 ], + [ 7.8770446, 47.4100411 ], + [ 7.8771007, 47.4100628 ], + [ 7.8771207, 47.4100672 ], + [ 7.8771586, 47.4100747 ], + [ 7.8773493, 47.4101052 ], + [ 7.8774537, 47.4101356 ], + [ 7.8775137, 47.4101579 ], + [ 7.8775744, 47.4101891 ], + [ 7.8776325, 47.4102229 ], + [ 7.8776851, 47.41027 ], + [ 7.8777216, 47.4103104 ], + [ 7.8777603, 47.4103556 ], + [ 7.877791, 47.4104166 ], + [ 7.8778254, 47.4105094 ], + [ 7.8778269, 47.4105125 ], + [ 7.877831, 47.4105189 ], + [ 7.877836, 47.410525 ], + [ 7.8778419, 47.4105308 ], + [ 7.8778486, 47.4105361 ], + [ 7.8778561, 47.4105409 ], + [ 7.8778643, 47.4105451 ], + [ 7.8778731, 47.4105488 ], + [ 7.8778824, 47.4105518 ], + [ 7.8778921, 47.4105542 ], + [ 7.8779021, 47.4105558 ], + [ 7.8779123, 47.4105568 ], + [ 7.8779226, 47.410557 ], + [ 7.8779329, 47.4105566 ], + [ 7.8779430999999995, 47.4105554 ], + [ 7.877953, 47.4105535 ], + [ 7.8779626, 47.4105509 ], + [ 7.8779717, 47.4105477 ], + [ 7.8779803, 47.4105439 ], + [ 7.8782792, 47.4103861 ], + [ 7.8784319, 47.4103363 ], + [ 7.878553, 47.4103035 ], + [ 7.878652, 47.4102845 ], + [ 7.8787105, 47.4100415 ], + [ 7.8787613, 47.4098229 ], + [ 7.8788061, 47.4096305 ], + [ 7.8788181, 47.4095789 ], + [ 7.8788249, 47.4095455 ], + [ 7.8788225, 47.4095149 ], + [ 7.8788149, 47.4094876 ], + [ 7.878803, 47.409463 ], + [ 7.8787872, 47.4094401 ], + [ 7.878569, 47.4092061 ], + [ 7.8786124, 47.409161 ], + [ 7.8786828, 47.4090765 ], + [ 7.8787499, 47.4090129 ], + [ 7.8786982, 47.4089979 ], + [ 7.8786488, 47.4089838 ], + [ 7.8785997, 47.408969 ], + [ 7.8785511, 47.4089536 ], + [ 7.878503, 47.4089376 ], + [ 7.8784553, 47.4089208 ], + [ 7.8784081, 47.4089035 ], + [ 7.8783701, 47.4088885 ], + [ 7.8783325, 47.4088722 ], + [ 7.8782556, 47.4088416 ], + [ 7.8781643, 47.4088093 ], + [ 7.8781278, 47.4087975 ], + [ 7.878087, 47.4087852 ], + [ 7.8780459, 47.4087736 ], + [ 7.8780044, 47.4087626 ], + [ 7.8779625, 47.4087523 ], + [ 7.8779202, 47.4087427 ], + [ 7.8779088, 47.4087398 ], + [ 7.8778811, 47.4087334 ], + [ 7.877853, 47.4087277 ], + [ 7.8778246, 47.4087226 ], + [ 7.8777959, 47.4087183 ], + [ 7.8777671, 47.4087146 ], + [ 7.8777306, 47.4087102 ], + [ 7.8776943, 47.408705 ], + [ 7.8776582, 47.4086991 ], + [ 7.8776223, 47.4086925 ], + [ 7.8775868, 47.4086852 ], + [ 7.8775516, 47.4086773 ], + [ 7.8775167, 47.4086686 ], + [ 7.877509, 47.4086666 ], + [ 7.8774892, 47.4086611 ], + [ 7.8774697, 47.408655 ], + [ 7.8774508, 47.4086482 ], + [ 7.8774323, 47.4086408 ], + [ 7.8774145, 47.4086328 ], + [ 7.8773972, 47.4086242 ], + [ 7.8773805, 47.408615 ], + [ 7.8773646, 47.4086053 ], + [ 7.8773494, 47.4085951 ], + [ 7.8773349, 47.4085843 ], + [ 7.8773304, 47.4085808 ], + [ 7.8770223999999995, 47.4083528 ], + [ 7.8769749000000004, 47.4083176 ], + [ 7.8769287, 47.4082836 ], + [ 7.8769024, 47.4082633 ], + [ 7.8768768, 47.4082424 ], + [ 7.8768521, 47.4082211 ], + [ 7.8768283, 47.4081993 ], + [ 7.8768053, 47.4081772 ], + [ 7.8767831, 47.4081546 ], + [ 7.8767619, 47.4081316 ], + [ 7.8767415, 47.4081082 ], + [ 7.8767221, 47.4080845 ], + [ 7.8767076, 47.4080659 ], + [ 7.8767005, 47.4080564 ], + [ 7.8766944, 47.4080465 ], + [ 7.8766893, 47.4080365 ], + [ 7.8766850999999996, 47.4080262 ], + [ 7.876682, 47.4080158 ], + [ 7.8766799, 47.4080052 ], + [ 7.8766789, 47.4079946 ], + [ 7.8766789, 47.4079839 ], + [ 7.87668, 47.4079733 ], + [ 7.8766821, 47.4079627 ], + [ 7.876683, 47.4079595 ], + [ 7.8766877, 47.407951 ], + [ 7.8766934, 47.4079428 ], + [ 7.8767001, 47.4079349 ], + [ 7.8767076, 47.4079274 ], + [ 7.8767159, 47.4079203 ], + [ 7.8767251, 47.4079137 ], + [ 7.8767351, 47.4079076 ], + [ 7.8767457, 47.407902 ], + [ 7.8767569, 47.4078971 ], + [ 7.8767639, 47.4078944 ], + [ 7.8767769, 47.4078901 ], + [ 7.8767904, 47.4078864 ], + [ 7.8768042, 47.4078835 ], + [ 7.8768183, 47.4078812 ], + [ 7.8768326, 47.4078796 ], + [ 7.8768471, 47.4078787 ], + [ 7.8768616, 47.4078786 ], + [ 7.8768761, 47.4078791 ], + [ 7.8768905, 47.4078804 ], + [ 7.8769047, 47.4078824 ], + [ 7.8769208, 47.4078854 ], + [ 7.8769428999999995, 47.4078889 ], + [ 7.8769653, 47.4078917 ], + [ 7.8769879, 47.4078938 ], + [ 7.8770106, 47.4078952 ], + [ 7.8770333, 47.4078958 ], + [ 7.8770561, 47.4078958 ], + [ 7.8770788, 47.407895 ], + [ 7.8771015, 47.4078936 ], + [ 7.877124, 47.4078914 ], + [ 7.8771464, 47.4078884 ], + [ 7.8771685, 47.4078848 ], + [ 7.8771963, 47.407879199999996 ], + [ 7.8772229, 47.407873 ], + [ 7.8772492, 47.4078661 ], + [ 7.877275, 47.4078586 ], + [ 7.8773004, 47.4078504 ], + [ 7.8773254, 47.4078416 ], + [ 7.8773498, 47.4078321 ], + [ 7.8773738, 47.4078221 ], + [ 7.8773916, 47.4078142 ], + [ 7.8774048, 47.4078089 ], + [ 7.8774174, 47.4078042 ], + [ 7.8774366, 47.4077977 ], + [ 7.8774562, 47.407792 ], + [ 7.8774761, 47.4077869 ], + [ 7.8774965, 47.4077825 ], + [ 7.8775171, 47.4077788 ], + [ 7.8775379999999995, 47.4077758 ], + [ 7.877559, 47.4077734 ], + [ 7.8775802, 47.4077718 ], + [ 7.8776015, 47.407771 ], + [ 7.878205, 47.4069808 ], + [ 7.8786149, 47.4071329 ], + [ 7.8791164, 47.407534 ], + [ 7.8805955999999995, 47.4074706 ], + [ 7.8814373, 47.4073128 ], + [ 7.8825815, 47.4074015 ], + [ 7.8833391, 47.407481 ], + [ 7.884008, 47.4074017 ], + [ 7.8839818, 47.4072393 ], + [ 7.8841015, 47.4072205 ], + [ 7.8838446, 47.4070658 ], + [ 7.8834851, 47.4063445 ], + [ 7.8832995, 47.4062713 ], + [ 7.8832749, 47.4061014 ], + [ 7.8829547, 47.4057842 ], + [ 7.8830905, 47.4055496 ], + [ 7.8830988, 47.4054356 ], + [ 7.8830819, 47.4050784 ], + [ 7.8830749, 47.4037927 ], + [ 7.8825330000000005, 47.4034922 ], + [ 7.8817696, 47.4032432 ], + [ 7.8815200999999995, 47.4031989 ], + [ 7.8809577, 47.4031297 ], + [ 7.8803538, 47.4030849 ], + [ 7.879746, 47.4038654 ], + [ 7.8798727, 47.404442 ], + [ 7.8795721, 47.4044411 ], + [ 7.8795359, 47.4044415 ], + [ 7.8794997, 47.4044412 ], + [ 7.8794636, 47.4044401 ], + [ 7.8794275, 47.4044383 ], + [ 7.8793915, 47.4044358 ], + [ 7.8793556, 47.4044326 ], + [ 7.8793199, 47.4044286 ], + [ 7.8792843999999995, 47.404424 ], + [ 7.8792491, 47.4044186 ], + [ 7.879214, 47.4044126 ], + [ 7.8791877, 47.4044076 ], + [ 7.8790917, 47.4043904 ], + [ 7.8790593, 47.4043853 ], + [ 7.8790267, 47.4043809 ], + [ 7.8789939, 47.4043773 ], + [ 7.8789609, 47.4043743 ], + [ 7.8789278, 47.404372 ], + [ 7.8788944999999995, 47.4043705 ], + [ 7.8788613, 47.4043697 ], + [ 7.878828, 47.4043696 ], + [ 7.8787948, 47.4043702 ], + [ 7.8785901, 47.4043817 ], + [ 7.8784986, 47.4043827 ], + [ 7.8783379, 47.4042887 ], + [ 7.8780439, 47.4041536 ], + [ 7.8776720000000005, 47.4039825 ], + [ 7.8774546999999995, 47.4038958 ], + [ 7.8771295, 47.4037816 ], + [ 7.8767392, 47.4036572 ], + [ 7.8761167, 47.403451 ], + [ 7.8757597, 47.4033349 ], + [ 7.8756848999999995, 47.4033743 ], + [ 7.8756407, 47.4033972 ], + [ 7.8754721, 47.403459 ], + [ 7.8753503, 47.4034914 ], + [ 7.8752703, 47.4035219 ], + [ 7.875182, 47.403579 ], + [ 7.8751654, 47.4036 ], + [ 7.8751614, 47.4036195 ], + [ 7.8751808, 47.4040123 ], + [ 7.8751726, 47.4042366 ], + [ 7.8751379, 47.4044132 ], + [ 7.8751359999999995, 47.4046107 ], + [ 7.8750873, 47.4048219 ], + [ 7.8750898, 47.404869 ], + [ 7.8751161, 47.4049425 ], + [ 7.8751334, 47.4049667 ], + [ 7.8752289, 47.4050655 ], + [ 7.8752382999999995, 47.4050864 ], + [ 7.8752387, 47.4051205 ], + [ 7.8752233, 47.4052693 ], + [ 7.875194, 47.4054131 ], + [ 7.8751922, 47.4054252 ], + [ 7.8751915, 47.4054374 ], + [ 7.8751919, 47.4054495 ], + [ 7.8751933, 47.4054617 ], + [ 7.8751958, 47.4054737 ], + [ 7.8752343, 47.4056546 ], + [ 7.8752448, 47.4057823 ], + [ 7.8752451, 47.4057984 ], + [ 7.8752442, 47.4058144 ], + [ 7.8752423, 47.4058305 ], + [ 7.8752393, 47.4058464 ], + [ 7.8752353, 47.4058623 ], + [ 7.8752303, 47.405878 ], + [ 7.8752242, 47.4058935 ], + [ 7.8752171, 47.4059089 ], + [ 7.875209, 47.405924 ], + [ 7.8752, 47.4059389 ], + [ 7.8751899, 47.4059534 ], + [ 7.8751789, 47.4059677 ], + [ 7.875167, 47.4059816 ], + [ 7.8751541, 47.4059951 ], + [ 7.8749358, 47.4062071 ], + [ 7.8749296, 47.4062124 ], + [ 7.8749204, 47.4062211 ], + [ 7.8749120999999995, 47.4062303 ], + [ 7.8749047999999995, 47.4062399 ], + [ 7.8748983, 47.4062497 ], + [ 7.8748929, 47.4062598 ], + [ 7.8748885, 47.4062702 ], + [ 7.8748848, 47.4062817 ], + [ 7.8748825, 47.4062924 ], + [ 7.8748812, 47.4063031 ], + [ 7.8748811, 47.4063139 ], + [ 7.8748819999999995, 47.4063246 ], + [ 7.8748839, 47.4063353 ], + [ 7.8748869, 47.4063459 ], + [ 7.8748909, 47.4063564 ], + [ 7.874896, 47.4063666 ], + [ 7.874902, 47.4063765 ], + [ 7.875073, 47.4066654 ], + [ 7.8750792, 47.4067279 ], + [ 7.875059, 47.4068201 ], + [ 7.8750452, 47.4068623 ], + [ 7.8749403000000004, 47.406994 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns287", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Wisenberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Wisenberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Wisenberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Wisenberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.4228011, 46.7651171 ], + [ 9.4227906, 46.764976 ], + [ 9.4227693, 46.7648355 ], + [ 9.4227373, 46.7646959 ], + [ 9.4226947, 46.7645577 ], + [ 9.4226417, 46.7644212 ], + [ 9.4225783, 46.7642868 ], + [ 9.4225048, 46.7641548 ], + [ 9.4224213, 46.7640257 ], + [ 9.4223282, 46.7638998 ], + [ 9.4222255, 46.7637774 ], + [ 9.4221137, 46.7636588 ], + [ 9.421993, 46.7635444 ], + [ 9.4218638, 46.7634345 ], + [ 9.4217263, 46.7633295 ], + [ 9.4215811, 46.7632295 ], + [ 9.4214284, 46.7631348 ], + [ 9.4212687, 46.7630458 ], + [ 9.4211025, 46.7629627 ], + [ 9.4209302, 46.7628856 ], + [ 9.4207522, 46.7628149 ], + [ 9.4205691, 46.7627506 ], + [ 9.4203814, 46.762693 ], + [ 9.4201895, 46.7626423 ], + [ 9.419993999999999, 46.7625985 ], + [ 9.4197955, 46.7625618 ], + [ 9.4195944, 46.7625323 ], + [ 9.4193914, 46.7625101 ], + [ 9.4191869, 46.7624952 ], + [ 9.4189816, 46.7624876 ], + [ 9.418776, 46.7624875 ], + [ 9.4185707, 46.7624948 ], + [ 9.4183662, 46.7625094 ], + [ 9.4181631, 46.7625314 ], + [ 9.417962, 46.7625606 ], + [ 9.4177633, 46.7625971 ], + [ 9.4175678, 46.7626406 ], + [ 9.4173757, 46.7626911 ], + [ 9.4171878, 46.7627484 ], + [ 9.4170046, 46.7628125 ], + [ 9.4168264, 46.762883 ], + [ 9.4166539, 46.7629598 ], + [ 9.4164874, 46.7630427 ], + [ 9.4163275, 46.7631315 ], + [ 9.4161746, 46.763226 ], + [ 9.4160291, 46.7633258 ], + [ 9.4158914, 46.7634307 ], + [ 9.4157618, 46.7635404 ], + [ 9.4156408, 46.7636546 ], + [ 9.4155286, 46.763773 ], + [ 9.4154257, 46.7638953 ], + [ 9.4153321, 46.7640212 ], + [ 9.4152483, 46.7641502 ], + [ 9.4151745, 46.764282 ], + [ 9.4151107, 46.7644163 ], + [ 9.4150573, 46.7645528 ], + [ 9.4150144, 46.7646909 ], + [ 9.414982, 46.7648305 ], + [ 9.4149603, 46.764971 ], + [ 9.4149494, 46.765112 ], + [ 9.4149492, 46.7652533 ], + [ 9.4149597, 46.7653944 ], + [ 9.414981, 46.7655349 ], + [ 9.415013, 46.7656745 ], + [ 9.4150555, 46.7658127 ], + [ 9.4151085, 46.7659492 ], + [ 9.4151719, 46.7660837 ], + [ 9.4152454, 46.7662156 ], + [ 9.4153288, 46.7663447 ], + [ 9.415422, 46.7664707 ], + [ 9.4155246, 46.7665931 ], + [ 9.4156364, 46.7667117 ], + [ 9.4157571, 46.7668261 ], + [ 9.4158864, 46.7669359 ], + [ 9.4160238, 46.767041 ], + [ 9.4161691, 46.767141 ], + [ 9.4163217, 46.7672357 ], + [ 9.4164814, 46.7673247 ], + [ 9.4166476, 46.7674078 ], + [ 9.41682, 46.7674849 ], + [ 9.4169979, 46.7675557 ], + [ 9.417181, 46.7676199 ], + [ 9.4173688, 46.7676775 ], + [ 9.4175607, 46.7677283 ], + [ 9.4177562, 46.767772 ], + [ 9.4179547, 46.7678087 ], + [ 9.4181558, 46.7678382 ], + [ 9.4183589, 46.7678605 ], + [ 9.4185633, 46.7678754 ], + [ 9.4187687, 46.7678829 ], + [ 9.4189743, 46.767883 ], + [ 9.4191796, 46.7678758 ], + [ 9.4193842, 46.7678611 ], + [ 9.4195873, 46.7678392 ], + [ 9.4197884, 46.7678099 ], + [ 9.4199871, 46.7677735 ], + [ 9.4201827, 46.7677299 ], + [ 9.4203747, 46.7676794 ], + [ 9.4205626, 46.7676221 ], + [ 9.4207459, 46.7675581 ], + [ 9.4209241, 46.7674875 ], + [ 9.4210966, 46.7674107 ], + [ 9.421263100000001, 46.7673278 ], + [ 9.421423, 46.7672389 ], + [ 9.4215759, 46.7671445 ], + [ 9.4217214, 46.7670447 ], + [ 9.4218592, 46.7669398 ], + [ 9.4219887, 46.7668301 ], + [ 9.4221097, 46.7667158 ], + [ 9.422221799999999, 46.7665974 ], + [ 9.4223248, 46.7664751 ], + [ 9.4224183, 46.7663493 ], + [ 9.422502099999999, 46.7662203 ], + [ 9.422576, 46.7660884 ], + [ 9.4226397, 46.7659541 ], + [ 9.4226931, 46.7658177 ], + [ 9.422736, 46.7656795 ], + [ 9.4227684, 46.76554 ], + [ 9.42279, 46.7653995 ], + [ 9.422801, 46.7652584 ], + [ 9.4228011, 46.7651171 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0101", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Rothenbrunnen", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Rothenbrunnen", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Rothenbrunnen", + "lang" : "it-CH" + }, + { + "text" : "Substation Rothenbrunnen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7936833, 47.4084272 ], + [ 7.7938879, 47.4083339 ], + [ 7.7946371, 47.4080517 ], + [ 7.7948454, 47.4079734 ], + [ 7.7950642, 47.4079094 ], + [ 7.7952335999999995, 47.4078844 ], + [ 7.7952968, 47.4078751 ], + [ 7.7955404999999995, 47.40786 ], + [ 7.7957557, 47.4078467 ], + [ 7.7959934, 47.4078161 ], + [ 7.7961932, 47.4077515 ], + [ 7.7961704, 47.4076928 ], + [ 7.7961304, 47.4076962 ], + [ 7.7961266, 47.4076756 ], + [ 7.7961672, 47.4076722 ], + [ 7.7961015, 47.4075834 ], + [ 7.7959291, 47.4075628 ], + [ 7.7952574, 47.40753 ], + [ 7.7948734, 47.4074243 ], + [ 7.7944937, 47.4073474 ], + [ 7.7943072, 47.4072317 ], + [ 7.7942614, 47.4070695 ], + [ 7.7940943, 47.4070717 ], + [ 7.7940766, 47.4070897 ], + [ 7.7940575, 47.4071071 ], + [ 7.7940371, 47.4071237 ], + [ 7.7940155, 47.4071396 ], + [ 7.7939926, 47.4071547 ], + [ 7.7939687, 47.407169 ], + [ 7.7939436, 47.4071824 ], + [ 7.7939176, 47.4071949 ], + [ 7.7937045, 47.4072852 ], + [ 7.7935465, 47.4073649 ], + [ 7.7935224, 47.4073763 ], + [ 7.7934993, 47.4073887 ], + [ 7.7934773, 47.407401899999996 ], + [ 7.7934564, 47.407416 ], + [ 7.7934369, 47.4074309 ], + [ 7.7934186, 47.4074465 ], + [ 7.7934017, 47.4074629 ], + [ 7.7933863, 47.4074798 ], + [ 7.7933723, 47.4074974 ], + [ 7.7933599000000005, 47.4075155 ], + [ 7.7933316, 47.4074985 ], + [ 7.7932466, 47.4074774 ], + [ 7.7932109, 47.4074755 ], + [ 7.7931542, 47.4074885 ], + [ 7.7931078, 47.4075513 ], + [ 7.7931442, 47.4076102 ], + [ 7.7931275, 47.4077472 ], + [ 7.7931442, 47.4077718 ], + [ 7.7930171999999995, 47.407855 ], + [ 7.7929689, 47.4078898 ], + [ 7.7929239, 47.407861 ], + [ 7.7928813, 47.4078286 ], + [ 7.7928470999999995, 47.4078817 ], + [ 7.7928572, 47.4079243 ], + [ 7.7928788, 47.4080484 ], + [ 7.7927403, 47.4081959 ], + [ 7.7925331, 47.4083384 ], + [ 7.7924226, 47.4084269 ], + [ 7.7923821, 47.4084401 ], + [ 7.7922451, 47.4085189 ], + [ 7.7921594, 47.4085002 ], + [ 7.7919028, 47.4085404 ], + [ 7.791781, 47.408598 ], + [ 7.7916892, 47.4086605 ], + [ 7.791594, 47.4087867 ], + [ 7.791612, 47.4087922 ], + [ 7.7919344, 47.4088899 ], + [ 7.7919487, 47.4090489 ], + [ 7.7920655, 47.4092751 ], + [ 7.7925998, 47.409305 ], + [ 7.7925854, 47.4090732 ], + [ 7.7924413999999995, 47.4086335 ], + [ 7.792954, 47.4083777 ], + [ 7.7931736, 47.4082184 ], + [ 7.7934819, 47.4081701 ], + [ 7.7937464, 47.4082898 ], + [ 7.7936789, 47.4083631 ], + [ 7.7936833, 47.4084272 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr080", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Wänge", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Wänge", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Wänge", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Wänge", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.548445, 47.444218 ], + [ 7.5488276, 47.4442639 ], + [ 7.5488524, 47.4441616 ], + [ 7.5488464, 47.4441609 ], + [ 7.5487849, 47.4441536 ], + [ 7.5487269999999995, 47.4441468 ], + [ 7.5486813, 47.4441414 ], + [ 7.5486059999999995, 47.4441325 ], + [ 7.5486106, 47.4441144 ], + [ 7.5485489, 47.4441074 ], + [ 7.5485443, 47.4441252 ], + [ 7.548471, 47.4441166 ], + [ 7.5484683, 47.4441271 ], + [ 7.548445, 47.444218 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns173", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Mausohrkolonie, Baslerstrasse 30", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Mausohrkolonie, Baslerstrasse 30", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Mausohrkolonie, Baslerstrasse 30", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Mausohrkolonie, Baslerstrasse 30", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.9157473, 47.4210001 ], + [ 7.915802, 47.4210733 ], + [ 7.9159986, 47.4213369 ], + [ 7.9162263, 47.4216082 ], + [ 7.9166134, 47.4214785 ], + [ 7.9166548, 47.4214645 ], + [ 7.9171593, 47.4213036 ], + [ 7.9173158, 47.4214826 ], + [ 7.9175063, 47.4217362 ], + [ 7.9176365, 47.4219159 ], + [ 7.9177088, 47.4220188 ], + [ 7.9178635, 47.4222133 ], + [ 7.9179693, 47.422344 ], + [ 7.918241, 47.4225893 ], + [ 7.9186031, 47.4228385 ], + [ 7.9187273, 47.4228958 ], + [ 7.9189605, 47.422998 ], + [ 7.9191917, 47.4230938 ], + [ 7.9194835999999995, 47.4231721 ], + [ 7.9196995, 47.423017 ], + [ 7.9196739, 47.4229364 ], + [ 7.9196314999999995, 47.4228816 ], + [ 7.9195768, 47.4228314 ], + [ 7.919521, 47.4227879 ], + [ 7.9193325, 47.4226591 ], + [ 7.9190764, 47.4225019 ], + [ 7.9189378999999995, 47.4224417 ], + [ 7.9189777, 47.4223939 ], + [ 7.9189059, 47.422357 ], + [ 7.9188392, 47.4223297 ], + [ 7.9187743, 47.4223086 ], + [ 7.9187688, 47.4223141 ], + [ 7.918733, 47.4223025 ], + [ 7.9186016, 47.4222123 ], + [ 7.9184701, 47.4221126 ], + [ 7.9183212, 47.4219995 ], + [ 7.9183334, 47.4219877 ], + [ 7.9183799, 47.4219457 ], + [ 7.9184218, 47.4219165 ], + [ 7.9183777, 47.4218797 ], + [ 7.9183612, 47.4218834 ], + [ 7.9183430999999995, 47.421814 ], + [ 7.9181836, 47.4216307 ], + [ 7.9179513, 47.4214119 ], + [ 7.9177026999999995, 47.421199 ], + [ 7.9173116, 47.4209263 ], + [ 7.9172346000000005, 47.420843 ], + [ 7.9171571, 47.4207805 ], + [ 7.9169905, 47.4206781 ], + [ 7.9169457, 47.4206077 ], + [ 7.9169407, 47.4205232 ], + [ 7.9169233, 47.4204829 ], + [ 7.9168769, 47.4204555 ], + [ 7.9168041, 47.420435 ], + [ 7.9164693, 47.4204104 ], + [ 7.9162140999999995, 47.4202497 ], + [ 7.9161476, 47.4202401 ], + [ 7.9160955, 47.4201851 ], + [ 7.9161295, 47.4201056 ], + [ 7.9166728, 47.4201064 ], + [ 7.9172231, 47.4201481 ], + [ 7.9178378, 47.4201963 ], + [ 7.9180147, 47.420216 ], + [ 7.9180184, 47.4199271 ], + [ 7.9173511, 47.4198705 ], + [ 7.9171554, 47.4196102 ], + [ 7.9171057, 47.4194846 ], + [ 7.9169725, 47.4191478 ], + [ 7.9170638, 47.4189407 ], + [ 7.9174021, 47.4190547 ], + [ 7.9174759, 47.4186716 ], + [ 7.917438, 47.418275 ], + [ 7.9178607, 47.4179746 ], + [ 7.9178817, 47.4177835 ], + [ 7.9179337, 47.4173234 ], + [ 7.9176813, 47.4173269 ], + [ 7.917391, 47.4169161 ], + [ 7.9174299, 47.4167754 ], + [ 7.9174572, 47.4166773 ], + [ 7.9174599, 47.4166677 ], + [ 7.9174197, 47.416663 ], + [ 7.9171351, 47.4166441 ], + [ 7.9170119, 47.4166195 ], + [ 7.9170044, 47.4166324 ], + [ 7.9168646, 47.4168698 ], + [ 7.9167219, 47.4171123 ], + [ 7.9166651, 47.4172053 ], + [ 7.9166283, 47.4171941 ], + [ 7.9165692, 47.4174341 ], + [ 7.9165434, 47.4175563 ], + [ 7.9164396, 47.4175862 ], + [ 7.9163023, 47.4176545 ], + [ 7.9161892, 47.41768 ], + [ 7.9160824, 47.417698 ], + [ 7.9157779999999995, 47.4178087 ], + [ 7.9156279, 47.4179646 ], + [ 7.9154414, 47.4180405 ], + [ 7.9152024999999995, 47.418039 ], + [ 7.9150089999999995, 47.4179997 ], + [ 7.9148222, 47.4180657 ], + [ 7.9146738, 47.4181181 ], + [ 7.9145636, 47.4181856 ], + [ 7.9145798, 47.4183352 ], + [ 7.91454, 47.4184239 ], + [ 7.9145128, 47.4184483 ], + [ 7.9143426, 47.4186006 ], + [ 7.9143557, 47.418755 ], + [ 7.9142453, 47.4187982 ], + [ 7.9143106, 47.4188896 ], + [ 7.9142928, 47.4189133 ], + [ 7.9141442, 47.4189314 ], + [ 7.9139789, 47.4190397 ], + [ 7.9135286, 47.4192551 ], + [ 7.9131417, 47.4194336 ], + [ 7.9127082, 47.4193771 ], + [ 7.9126511, 47.4196382 ], + [ 7.9126077, 47.4198234 ], + [ 7.9128007, 47.4202621 ], + [ 7.9127944, 47.4202625 ], + [ 7.9124193, 47.4203001 ], + [ 7.9129091, 47.4208752 ], + [ 7.913278, 47.4212088 ], + [ 7.9139284, 47.4209877 ], + [ 7.9141117, 47.4209018 ], + [ 7.9147996, 47.4208392 ], + [ 7.9157473, 47.4210001 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns340", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Zigflue", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Zigflue", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Zigflue", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Zigflue", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.0434461, 47.1091698 ], + [ 9.0486881, 47.1198926 ], + [ 9.070287, 47.125106 ], + [ 9.1215668, 47.1126105 ], + [ 9.1282858, 47.1027952 ], + [ 9.0981954, 47.0728841 ], + [ 9.0894589, 47.0571754 ], + [ 9.1080757, 47.0405915 ], + [ 9.079615, 47.0280464 ], + [ 9.0550354, 47.0274357 ], + [ 9.021789, 47.0362964 ], + [ 9.0024382, 47.052636 ], + [ 9.0355887, 47.0695735 ], + [ 9.0402844, 47.0857023 ], + [ 9.0238463, 47.0880896 ], + [ 9.0246173, 47.1006815 ], + [ 9.0434461, 47.1091698 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZM001", + "country" : "CHE", + "name" : [ + { + "text" : "LSZM Mollis", + "lang" : "de-CH" + }, + { + "text" : "LSZM Mollis", + "lang" : "fr-CH" + }, + { + "text" : "LSZM Mollis", + "lang" : "it-CH" + }, + { + "text" : "LSZM Mollis", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Mollis Airport AG", + "lang" : "de-CH" + }, + { + "text" : "Mollis Airport AG", + "lang" : "fr-CH" + }, + { + "text" : "Mollis Airport AG", + "lang" : "it-CH" + }, + { + "text" : "Mollis Airport AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Stefan Oswald", + "lang" : "de-CH" + }, + { + "text" : "Stefan Oswald", + "lang" : "fr-CH" + }, + { + "text" : "Stefan Oswald", + "lang" : "it-CH" + }, + { + "text" : "Stefan Oswald", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.mollisairport.ch", + "email" : "flugbetrieb@mollisairport.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P20DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.0357198, 46.2210206 ], + [ 9.0357103, 46.2208795 ], + [ 9.0356902, 46.2207389 ], + [ 9.0356596, 46.2205992 ], + [ 9.0356184, 46.2204608 ], + [ 9.0355669, 46.2203242 ], + [ 9.0355051, 46.2201895 ], + [ 9.0354333, 46.2200574 ], + [ 9.0353516, 46.2199279 ], + [ 9.0352602, 46.2198017 ], + [ 9.0351595, 46.2196789 ], + [ 9.0350496, 46.21956 ], + [ 9.0349309, 46.2194452 ], + [ 9.0348038, 46.2193349 ], + [ 9.0346684, 46.2192293 ], + [ 9.0345254, 46.2191288 ], + [ 9.0343749, 46.2190337 ], + [ 9.0342175, 46.2189441 ], + [ 9.0340535, 46.2188604 ], + [ 9.0338834, 46.2187828 ], + [ 9.0337078, 46.2187114 ], + [ 9.033527, 46.2186465 ], + [ 9.0333415, 46.2185883 ], + [ 9.0331519, 46.2185369 ], + [ 9.0329587, 46.218492499999996 ], + [ 9.0327624, 46.2184551 ], + [ 9.0325636, 46.2184249 ], + [ 9.0323627, 46.218402 ], + [ 9.0321604, 46.2183864 ], + [ 9.0319572, 46.2183782 ], + [ 9.0317537, 46.2183774 ], + [ 9.0315504, 46.2183839 ], + [ 9.0313478, 46.2183979 ], + [ 9.0311466, 46.2184192 ], + [ 9.0309473, 46.2184477 ], + [ 9.0307503, 46.2184835 ], + [ 9.0305564, 46.2185263 ], + [ 9.030366, 46.2185762 ], + [ 9.0301795, 46.2186329 ], + [ 9.0299976, 46.2186963 ], + [ 9.0298208, 46.2187662 ], + [ 9.0296494, 46.2188425 ], + [ 9.029484, 46.2189249 ], + [ 9.0293251, 46.2190131 ], + [ 9.029173, 46.219107 ], + [ 9.0290283, 46.2192063 ], + [ 9.0288912, 46.2193108 ], + [ 9.0287621, 46.2194201 ], + [ 9.0286415, 46.2195339 ], + [ 9.0285297, 46.2196519 ], + [ 9.0284268, 46.2197738 ], + [ 9.0283334, 46.2198993 ], + [ 9.0282495, 46.2200281 ], + [ 9.0281754, 46.2201597 ], + [ 9.0281114, 46.2202938 ], + [ 9.0280575, 46.22043 ], + [ 9.028014, 46.2205681 ], + [ 9.027981, 46.2207075 ], + [ 9.0279585, 46.2208479 ], + [ 9.0279467, 46.2209889 ], + [ 9.0279455, 46.2211302 ], + [ 9.0279549, 46.2212714 ], + [ 9.027975, 46.221412 ], + [ 9.0280056, 46.2215516 ], + [ 9.0280468, 46.22169 ], + [ 9.0280983, 46.2218267 ], + [ 9.02816, 46.2219613 ], + [ 9.0282319, 46.2220935 ], + [ 9.0283136, 46.2222229 ], + [ 9.0284049, 46.2223492 ], + [ 9.0285056, 46.222472 ], + [ 9.0286155, 46.2225909 ], + [ 9.0287342, 46.2227057 ], + [ 9.0288613, 46.222816 ], + [ 9.0289966, 46.2229216 ], + [ 9.0291397, 46.2230221 ], + [ 9.0292902, 46.2231172 ], + [ 9.0294476, 46.2232068 ], + [ 9.0296116, 46.2232905 ], + [ 9.0297817, 46.2233682 ], + [ 9.0299573, 46.2234395 ], + [ 9.0301382, 46.2235044 ], + [ 9.0303236, 46.2235626 ], + [ 9.0305133, 46.223614 ], + [ 9.0307065, 46.2236585 ], + [ 9.0309028, 46.2236959 ], + [ 9.0311016, 46.2237261 ], + [ 9.0313025, 46.223749 ], + [ 9.0315048, 46.2237646 ], + [ 9.031708, 46.2237728 ], + [ 9.0319116, 46.2237736 ], + [ 9.0321149, 46.2237671 ], + [ 9.0323175, 46.2237531 ], + [ 9.0325187, 46.2237318 ], + [ 9.0327181, 46.2237033 ], + [ 9.032915, 46.2236675 ], + [ 9.033109, 46.2236246 ], + [ 9.0332995, 46.2235748 ], + [ 9.0334859, 46.2235181 ], + [ 9.0336678, 46.2234546 ], + [ 9.0338447, 46.2233847 ], + [ 9.0340161, 46.2233085 ], + [ 9.0341814, 46.2232261 ], + [ 9.0343404, 46.2231378 ], + [ 9.0344924, 46.2230439 ], + [ 9.0346372, 46.2229446 ], + [ 9.0347743, 46.2228401 ], + [ 9.0349033, 46.2227308 ], + [ 9.0350239, 46.222617 ], + [ 9.0351358, 46.222499 ], + [ 9.0352386, 46.222377 ], + [ 9.0353321, 46.2222515 ], + [ 9.0354159, 46.2221228 ], + [ 9.03549, 46.2219912 ], + [ 9.035554, 46.2218571 ], + [ 9.0356078, 46.2217208 ], + [ 9.0356513, 46.2215828 ], + [ 9.0356843, 46.2214434 ], + [ 9.0357068, 46.221303 ], + [ 9.0357186, 46.2211619 ], + [ 9.0357198, 46.2210206 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0046", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Gorduno", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Gorduno", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Gorduno", + "lang" : "it-CH" + }, + { + "text" : "Substation Gorduno", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7699843, 47.5235496 ], + [ 7.7700351, 47.5235293 ], + [ 7.7700631, 47.523518 ], + [ 7.7701619, 47.5234242 ], + [ 7.7702419, 47.5234218 ], + [ 7.7703695, 47.523418 ], + [ 7.7704632, 47.5233988 ], + [ 7.7706899, 47.523427 ], + [ 7.7707967, 47.5234693 ], + [ 7.7708777, 47.523484 ], + [ 7.7713754999999995, 47.523385 ], + [ 7.7716026, 47.5233907 ], + [ 7.7716946, 47.52337 ], + [ 7.7717731, 47.523341 ], + [ 7.7718994, 47.5233307 ], + [ 7.7718964, 47.5233228 ], + [ 7.7718868, 47.5232973 ], + [ 7.7717083, 47.5228208 ], + [ 7.7714584, 47.5220961 ], + [ 7.7712073, 47.5213705 ], + [ 7.7711856, 47.5212795 ], + [ 7.7712161, 47.5212179 ], + [ 7.7712285, 47.5211928 ], + [ 7.7713304, 47.5211328 ], + [ 7.7714254, 47.5210889 ], + [ 7.7715148, 47.521029 ], + [ 7.7715461999999995, 47.5209543 ], + [ 7.7715182, 47.520871 ], + [ 7.7714468, 47.5207938 ], + [ 7.7712319999999995, 47.5206081 ], + [ 7.7709811, 47.5204412 ], + [ 7.7707136, 47.5202844 ], + [ 7.7702955, 47.5200601 ], + [ 7.7702207, 47.5200148 ], + [ 7.7701863, 47.5199939 ], + [ 7.7701545, 47.5199746 ], + [ 7.7701456, 47.5199675 ], + [ 7.7700504, 47.5198902 ], + [ 7.7699584999999995, 47.5197969 ], + [ 7.769886, 47.519696 ], + [ 7.7698294, 47.5195885 ], + [ 7.7695848, 47.5189232 ], + [ 7.7695108, 47.5187219 ], + [ 7.7684662, 47.5191274 ], + [ 7.7683168, 47.5188345 ], + [ 7.7680646, 47.5183411 ], + [ 7.7679025, 47.5183779 ], + [ 7.7677774, 47.5184064 ], + [ 7.7677171, 47.5184201 ], + [ 7.7682072, 47.5193043 ], + [ 7.7682541, 47.5194186 ], + [ 7.7682359, 47.5195077 ], + [ 7.7681269, 47.5196303 ], + [ 7.7679545999999995, 47.5197872 ], + [ 7.7676779, 47.5199861 ], + [ 7.7674664, 47.5201011 ], + [ 7.7672068, 47.5202155 ], + [ 7.766984, 47.5203137 ], + [ 7.7665253, 47.5205018 ], + [ 7.7663063999999995, 47.5205875 ], + [ 7.7661767, 47.5206261 ], + [ 7.7657405, 47.5207221 ], + [ 7.7646369, 47.5209981 ], + [ 7.764275, 47.5210735 ], + [ 7.7639965, 47.5211095 ], + [ 7.7635845, 47.5211331 ], + [ 7.763046, 47.5211513 ], + [ 7.7629139, 47.5211448 ], + [ 7.7627635, 47.5211051 ], + [ 7.7626273, 47.5210272 ], + [ 7.7624742, 47.5208513 ], + [ 7.7623292, 47.520705 ], + [ 7.762105, 47.520456 ], + [ 7.76208, 47.5204261 ], + [ 7.7620724, 47.5204392 ], + [ 7.7619625, 47.520673 ], + [ 7.7618095, 47.5208997 ], + [ 7.7616447, 47.5211205 ], + [ 7.7616076, 47.521156500000004 ], + [ 7.7614874, 47.5212733 ], + [ 7.7614812, 47.5212794 ], + [ 7.7614746, 47.5212841 ], + [ 7.7614878, 47.5212932 ], + [ 7.7611068, 47.5215146 ], + [ 7.7606923, 47.5217393 ], + [ 7.7604212, 47.5218546 ], + [ 7.7603928, 47.5218662 ], + [ 7.7601584, 47.5219591 ], + [ 7.7599324, 47.5220327 ], + [ 7.7598753, 47.5220425 ], + [ 7.759752, 47.5220634 ], + [ 7.7596422, 47.5220534 ], + [ 7.7592449, 47.5219566 ], + [ 7.7591379, 47.5219334 ], + [ 7.7590721, 47.5219271 ], + [ 7.7586433, 47.5218684 ], + [ 7.7583548, 47.5218369 ], + [ 7.7578968, 47.5218198 ], + [ 7.757641, 47.5218177 ], + [ 7.7573508, 47.5218178 ], + [ 7.7571123, 47.5218137 ], + [ 7.7569402, 47.5217962 ], + [ 7.7569144, 47.5217936 ], + [ 7.7567856, 47.5217334 ], + [ 7.7567749, 47.5217306 ], + [ 7.7567799, 47.5217287 ], + [ 7.7567707, 47.5216963 ], + [ 7.7567635, 47.5216863 ], + [ 7.7567569, 47.5216759 ], + [ 7.7567512, 47.5216652 ], + [ 7.7567465, 47.5216542 ], + [ 7.7567449, 47.5216494 ], + [ 7.7567274, 47.5216549 ], + [ 7.756708, 47.521661 ], + [ 7.7566963, 47.5216647 ], + [ 7.756434, 47.5217494 ], + [ 7.7561034, 47.5218519 ], + [ 7.7553763, 47.521154 ], + [ 7.7552432, 47.5211878 ], + [ 7.7551155, 47.5212421 ], + [ 7.7551089, 47.5212363 ], + [ 7.7550995, 47.5212281 ], + [ 7.7550845, 47.5212149 ], + [ 7.7550779, 47.5212091 ], + [ 7.7545988, 47.520747 ], + [ 7.7544127, 47.5209406 ], + [ 7.7543263, 47.5209064 ], + [ 7.7544439, 47.5207842 ], + [ 7.7541698, 47.520533 ], + [ 7.7539589, 47.5203405 ], + [ 7.7539375, 47.5203524 ], + [ 7.7539225, 47.5203868 ], + [ 7.7539011, 47.5204339 ], + [ 7.7538788, 47.5204807 ], + [ 7.7538556, 47.5205274 ], + [ 7.7538316, 47.5205739 ], + [ 7.7538067, 47.5206202 ], + [ 7.753781, 47.5206663 ], + [ 7.7537544, 47.5207121 ], + [ 7.7537269, 47.5207577 ], + [ 7.7536986, 47.5208031 ], + [ 7.7536787, 47.5208351 ], + [ 7.7536593, 47.5208673 ], + [ 7.7536404999999995, 47.5208996 ], + [ 7.7536223, 47.5209321 ], + [ 7.7536046, 47.5209647 ], + [ 7.7535875999999995, 47.5209975 ], + [ 7.7534846, 47.5211995 ], + [ 7.7534326, 47.5213015 ], + [ 7.7534241999999995, 47.5213189 ], + [ 7.7534165, 47.5213364 ], + [ 7.7534096, 47.521354 ], + [ 7.7534035, 47.5213718 ], + [ 7.7533982, 47.5213897 ], + [ 7.7533908, 47.5214155 ], + [ 7.7533828, 47.5214411 ], + [ 7.7533741, 47.5214667 ], + [ 7.7533648, 47.5214922 ], + [ 7.7533548, 47.5215176 ], + [ 7.7532877, 47.5216831 ], + [ 7.7532707, 47.5217238 ], + [ 7.7532529, 47.5217644 ], + [ 7.7532341, 47.5218047 ], + [ 7.7532145, 47.5218448 ], + [ 7.753194, 47.5218848 ], + [ 7.7531726, 47.5219245 ], + [ 7.7531504, 47.521964 ], + [ 7.7531272, 47.5220033 ], + [ 7.7531033, 47.5220424 ], + [ 7.7530785, 47.5220812 ], + [ 7.7530528, 47.5221197 ], + [ 7.7530263, 47.522158 ], + [ 7.7529989, 47.522196 ], + [ 7.7529707, 47.5222338 ], + [ 7.7529417, 47.5222712 ], + [ 7.7529202999999995, 47.5222977 ], + [ 7.752898, 47.5223239 ], + [ 7.7528749999999995, 47.5223497 ], + [ 7.7528511, 47.5223752 ], + [ 7.7528264, 47.5224004 ], + [ 7.7528009, 47.5224252 ], + [ 7.7527747, 47.5224496 ], + [ 7.7527477000000005, 47.5224736 ], + [ 7.7527199, 47.5224973 ], + [ 7.7526914, 47.5225205 ], + [ 7.7526622, 47.5225433 ], + [ 7.7526322, 47.5225657 ], + [ 7.7526016, 47.5225877 ], + [ 7.7520285, 47.5229896 ], + [ 7.752005, 47.5230065 ], + [ 7.7519822, 47.5230237 ], + [ 7.75196, 47.5230414 ], + [ 7.7519384, 47.5230594 ], + [ 7.7519175, 47.5230777 ], + [ 7.7519135, 47.5230814 ], + [ 7.7518899, 47.5230809 ], + [ 7.7518648, 47.5230808 ], + [ 7.7517876, 47.523154 ], + [ 7.7516584, 47.5233107 ], + [ 7.75148, 47.523551 ], + [ 7.7513456, 47.5237062 ], + [ 7.7511578, 47.52389 ], + [ 7.7511087, 47.5239742 ], + [ 7.7509289, 47.5239898 ], + [ 7.7507451, 47.5240048 ], + [ 7.7508818, 47.5242176 ], + [ 7.7510918, 47.5243733 ], + [ 7.7516759, 47.5247013 ], + [ 7.7515881, 47.5248639 ], + [ 7.752172, 47.5249756 ], + [ 7.7526630999999995, 47.5250177 ], + [ 7.7537044, 47.5249264 ], + [ 7.7534691, 47.5252076 ], + [ 7.7535431, 47.5253439 ], + [ 7.7537208, 47.5253062 ], + [ 7.7537377, 47.5253456 ], + [ 7.7537917, 47.5254716 ], + [ 7.7539498, 47.5254277 ], + [ 7.7540757, 47.5254034 ], + [ 7.7542156, 47.5253607 ], + [ 7.7543644, 47.5253479 ], + [ 7.7544746, 47.5253539 ], + [ 7.7550763, 47.525318 ], + [ 7.7552231, 47.5253302 ], + [ 7.7553632, 47.5253683 ], + [ 7.7554635, 47.5254063 ], + [ 7.7555762, 47.5254242 ], + [ 7.7556442, 47.5254494 ], + [ 7.7558297, 47.5254662 ], + [ 7.7560589, 47.5255328 ], + [ 7.7562725, 47.5256099 ], + [ 7.7564372, 47.5256494 ], + [ 7.7565797, 47.5256772 ], + [ 7.7566739, 47.5257345 ], + [ 7.7568117, 47.525785 ], + [ 7.7569037, 47.5258369 ], + [ 7.7570511, 47.5258998 ], + [ 7.7572365, 47.5259152 ], + [ 7.757314, 47.5259363 ], + [ 7.7574178, 47.5259734 ], + [ 7.7575061, 47.5259987 ], + [ 7.7575181, 47.5260014 ], + [ 7.7576488, 47.5260313 ], + [ 7.7577667, 47.5260324 ], + [ 7.7578695, 47.5260491 ], + [ 7.7578700000000005, 47.5260552 ], + [ 7.7580117, 47.5260212 ], + [ 7.7580833, 47.5259898 ], + [ 7.7581530999999995, 47.5259012 ], + [ 7.7582912, 47.5257962 ], + [ 7.7583737, 47.5257606 ], + [ 7.7585016, 47.525647 ], + [ 7.7585186, 47.5255642 ], + [ 7.7585121, 47.5254956 ], + [ 7.7586919, 47.5254603 ], + [ 7.7588667000000004, 47.5254186 ], + [ 7.7590432, 47.5254247 ], + [ 7.75918, 47.5253801 ], + [ 7.7593506, 47.5253827 ], + [ 7.7594934, 47.5253713 ], + [ 7.7595875, 47.5253866 ], + [ 7.7597579, 47.5254278 ], + [ 7.7598468, 47.5254282 ], + [ 7.760009, 47.5253781 ], + [ 7.7600705, 47.5253678 ], + [ 7.7601082, 47.525315 ], + [ 7.7601527, 47.5253016 ], + [ 7.760353, 47.5252962 ], + [ 7.7604358, 47.5253111 ], + [ 7.7606098, 47.5252793 ], + [ 7.7606701000000005, 47.5252325 ], + [ 7.7607771, 47.5252124 ], + [ 7.7608387, 47.5252254 ], + [ 7.7608529, 47.5252254 ], + [ 7.7609329, 47.5252547 ], + [ 7.7610038, 47.5252919 ], + [ 7.761066, 47.5253015 ], + [ 7.761133, 47.5253177 ], + [ 7.7613939, 47.5252995 ], + [ 7.761502, 47.5253063 ], + [ 7.7615804, 47.5252879 ], + [ 7.7616909, 47.5252325 ], + [ 7.7617697, 47.5252574 ], + [ 7.7618323, 47.5252709 ], + [ 7.7618862, 47.525306 ], + [ 7.7620777, 47.5253212 ], + [ 7.7621625, 47.5253297 ], + [ 7.7621934, 47.5253233 ], + [ 7.7622641, 47.5253749 ], + [ 7.7622641, 47.5253747 ], + [ 7.7622642, 47.5253749 ], + [ 7.7624436, 47.5253157 ], + [ 7.7625168, 47.5253055 ], + [ 7.7625592, 47.5252651 ], + [ 7.7625964, 47.5251991 ], + [ 7.762713, 47.5250958 ], + [ 7.7627924, 47.524984 ], + [ 7.7628149, 47.5249088 ], + [ 7.7628775999999995, 47.5248628 ], + [ 7.7631425, 47.5247705 ], + [ 7.763257, 47.524803 ], + [ 7.7633669, 47.5247685 ], + [ 7.7634927, 47.5247165 ], + [ 7.763621, 47.5247029 ], + [ 7.7640288, 47.52476 ], + [ 7.7641024, 47.5247817 ], + [ 7.7642864, 47.5248037 ], + [ 7.7644231999999995, 47.5248588 ], + [ 7.7645665, 47.5248853 ], + [ 7.7649616, 47.5248482 ], + [ 7.765024, 47.5248787 ], + [ 7.7651088999999995, 47.5248028 ], + [ 7.7652599, 47.5247513 ], + [ 7.7654602, 47.5247531 ], + [ 7.7655592, 47.5247209 ], + [ 7.7657652, 47.5247276 ], + [ 7.7659617999999995, 47.5246677 ], + [ 7.7659828, 47.5245891 ], + [ 7.7660269, 47.5244998 ], + [ 7.7661442, 47.5245016 ], + [ 7.7663060999999995, 47.5245478 ], + [ 7.7663917, 47.5245401 ], + [ 7.766466, 47.52448 ], + [ 7.7665763, 47.5244686 ], + [ 7.7666563, 47.5244951 ], + [ 7.766675, 47.5244952 ], + [ 7.7667313, 47.5244956 ], + [ 7.7668452, 47.524441 ], + [ 7.7670641, 47.5243762 ], + [ 7.7671308, 47.5243183 ], + [ 7.7672972, 47.524258 ], + [ 7.7674204, 47.524172899999996 ], + [ 7.7674693, 47.5240899 ], + [ 7.7675503, 47.5240329 ], + [ 7.7677175, 47.5240151 ], + [ 7.7678929, 47.5240356 ], + [ 7.7680864, 47.5240383 ], + [ 7.7682223, 47.5240384 ], + [ 7.7683113, 47.523974 ], + [ 7.768439, 47.5238449 ], + [ 7.7687391, 47.5238 ], + [ 7.7689859, 47.5237634 ], + [ 7.7691148, 47.5237608 ], + [ 7.7692119, 47.5237222 ], + [ 7.7692761, 47.5236556 ], + [ 7.7694901, 47.5235862 ], + [ 7.7695655, 47.5235891 ], + [ 7.7698285, 47.5235424 ], + [ 7.7699062, 47.523546 ], + [ 7.7699843, 47.5235496 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns029", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Bärenfels", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Bärenfels", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Bärenfels", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Bärenfels", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.6301547, 46.5363756 ], + [ 6.6301514, 46.5362343 ], + [ 6.6301375, 46.5360934 ], + [ 6.6301128, 46.5359531 ], + [ 6.6300776, 46.5358139 ], + [ 6.6300319, 46.5356762 ], + [ 6.6299758, 46.5355403 ], + [ 6.6299094, 46.5354067 ], + [ 6.629833, 46.5352756 ], + [ 6.6297467999999995, 46.5351474 ], + [ 6.629651, 46.5350226 ], + [ 6.6295458, 46.5349014 ], + [ 6.6294316, 46.5347841 ], + [ 6.6293086, 46.5346711 ], + [ 6.6291773, 46.5345628 ], + [ 6.6290379, 46.5344593 ], + [ 6.6288909, 46.534361 ], + [ 6.6287366, 46.5342681 ], + [ 6.6285754, 46.534181 ], + [ 6.6284079, 46.5340997 ], + [ 6.6282345, 46.5340247 ], + [ 6.6280556, 46.533956 ], + [ 6.6278717, 46.5338938 ], + [ 6.6276834000000004, 46.5338384 ], + [ 6.6274911, 46.5337899 ], + [ 6.6272953999999995, 46.5337484 ], + [ 6.6270969, 46.533714 ], + [ 6.626896, 46.5336868 ], + [ 6.6266933, 46.5336669 ], + [ 6.6264894, 46.5336543 ], + [ 6.6262848, 46.5336492 ], + [ 6.6260801, 46.5336514 ], + [ 6.6258759, 46.533661 ], + [ 6.6256726, 46.533678 ], + [ 6.625471, 46.5337023 ], + [ 6.6252714, 46.5337339 ], + [ 6.6250745, 46.5337726 ], + [ 6.6248809, 46.5338184 ], + [ 6.6246909, 46.5338711 ], + [ 6.6245052, 46.5339306 ], + [ 6.6243243, 46.5339967 ], + [ 6.6241487, 46.5340693 ], + [ 6.6239788, 46.5341481 ], + [ 6.6238151, 46.5342329 ], + [ 6.623658, 46.5343236 ], + [ 6.6235081000000005, 46.5344197 ], + [ 6.6233656, 46.5345212 ], + [ 6.6232311, 46.5346277 ], + [ 6.6231048, 46.5347389 ], + [ 6.6229871, 46.5348545 ], + [ 6.6228783, 46.5349742 ], + [ 6.6227787, 46.5350976 ], + [ 6.6226886, 46.5352245 ], + [ 6.6226083, 46.5353545 ], + [ 6.622538, 46.5354872 ], + [ 6.6224778, 46.5356222 ], + [ 6.6224279, 46.5357593 ], + [ 6.6223885, 46.5358979 ], + [ 6.6223597, 46.5360378 ], + [ 6.6223415, 46.5361785 ], + [ 6.622334, 46.5363197 ], + [ 6.6223372, 46.536461 ], + [ 6.6223510999999995, 46.536602 ], + [ 6.6223757, 46.5367422 ], + [ 6.6224109, 46.5368814 ], + [ 6.6224567, 46.5370191 ], + [ 6.6225128, 46.537155 ], + [ 6.6225791, 46.5372887 ], + [ 6.6226554, 46.5374198 ], + [ 6.6227417, 46.5375479 ], + [ 6.6228375, 46.5376728 ], + [ 6.6229426, 46.537794 ], + [ 6.6230568, 46.5379113 ], + [ 6.6231797, 46.538024300000004 ], + [ 6.6233111000000005, 46.5381327 ], + [ 6.6234505, 46.5382362 ], + [ 6.6235975, 46.5383345 ], + [ 6.6237518, 46.5384273 ], + [ 6.6239129, 46.5385145 ], + [ 6.6240804, 46.5385957 ], + [ 6.6242539, 46.5386708 ], + [ 6.6244328, 46.5387395 ], + [ 6.6246165999999995, 46.5388017 ], + [ 6.624805, 46.5388571 ], + [ 6.6249972, 46.5389056 ], + [ 6.625193, 46.5389472 ], + [ 6.6253915, 46.5389816 ], + [ 6.6255925, 46.5390088 ], + [ 6.6257952, 46.5390287 ], + [ 6.6259991, 46.5390412 ], + [ 6.6262037, 46.5390464 ], + [ 6.6264084, 46.5390441 ], + [ 6.6266127, 46.5390345 ], + [ 6.626816, 46.5390175 ], + [ 6.6270176, 46.5389932 ], + [ 6.6272172, 46.5389617 ], + [ 6.6274141, 46.5389229 ], + [ 6.6276078, 46.5388771 ], + [ 6.6277978, 46.5388244 ], + [ 6.6279835, 46.5387649 ], + [ 6.6281644, 46.5386988 ], + [ 6.6283401, 46.5386262 ], + [ 6.62851, 46.5385474 ], + [ 6.6286737, 46.5384625 ], + [ 6.6288308, 46.5383719 ], + [ 6.6289808, 46.5382757 ], + [ 6.6291232, 46.5381742 ], + [ 6.6292577999999995, 46.5380677 ], + [ 6.6293841, 46.5379565 ], + [ 6.6295018, 46.5378409 ], + [ 6.6296106, 46.5377212 ], + [ 6.6297101, 46.5375978 ], + [ 6.6298002, 46.5374709 ], + [ 6.6298805, 46.5373409 ], + [ 6.6299508, 46.5372082 ], + [ 6.630011, 46.5370731 ], + [ 6.6300608, 46.5369361 ], + [ 6.6301002, 46.5367974 ], + [ 6.630129, 46.5366576 ], + [ 6.6301472, 46.5365168 ], + [ 6.6301547, 46.5363756 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BOI0001", + "country" : "CHE", + "name" : [ + { + "text" : "Prison du Bois-Mermet", + "lang" : "de-CH" + }, + { + "text" : "Prison du Bois-Mermet", + "lang" : "fr-CH" + }, + { + "text" : "Prison du Bois-Mermet", + "lang" : "it-CH" + }, + { + "text" : "Prison du Bois-Mermet", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Direction du Service pénitentiaire Vaud", + "lang" : "de-CH" + }, + { + "text" : "Direction du Service pénitentiaire Vaud", + "lang" : "fr-CH" + }, + { + "text" : "Direction du Service pénitentiaire Vaud", + "lang" : "it-CH" + }, + { + "text" : "Direction du Service pénitentiaire Vaud", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/toutes-les-autorites/departements/departement-de-la-jeunesse-de-lenvironnement-et-de-la-securite-djes/service-penitentiaire-spen/", + "email" : "info.spen@vd.ch", + "phone" : "0041213164801", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.2274512, 47.5946179 ], + [ 8.227631, 47.5945602 ], + [ 8.2277176, 47.5945207 ], + [ 8.2277833, 47.5944857 ], + [ 8.227892, 47.5944198 ], + [ 8.2280197, 47.5943246 ], + [ 8.2282025, 47.5941666 ], + [ 8.228379, 47.5940067 ], + [ 8.2286157, 47.5937667 ], + [ 8.2287553, 47.5936321 ], + [ 8.2288873, 47.593508 ], + [ 8.2289638, 47.593436 ], + [ 8.2292136, 47.5931899 ], + [ 8.2294333, 47.5929812 ], + [ 8.2296585, 47.5927637 ], + [ 8.2297959, 47.5926276 ], + [ 8.2299746, 47.5924421 ], + [ 8.2301945, 47.5921807 ], + [ 8.2303361, 47.5919972 ], + [ 8.2303415, 47.5919901 ], + [ 8.2303659, 47.5919585 ], + [ 8.2305254, 47.5917404 ], + [ 8.2305538, 47.5917015 ], + [ 8.2306689, 47.5915358 ], + [ 8.2307963, 47.591355 ], + [ 8.2309159, 47.5911798 ], + [ 8.2310273, 47.5910001 ], + [ 8.2311478, 47.5908147 ], + [ 8.2312953, 47.5906006 ], + [ 8.2314361, 47.5904016 ], + [ 8.2315176, 47.5902756 ], + [ 8.2316345, 47.5900958 ], + [ 8.2317878, 47.589877 ], + [ 8.2318986, 47.5897294 ], + [ 8.2319048, 47.5897217 ], + [ 8.232023, 47.5895754 ], + [ 8.2321288, 47.5894515 ], + [ 8.2321603, 47.5894119 ], + [ 8.2322584, 47.5893013 ], + [ 8.2323834, 47.5891704 ], + [ 8.2324698, 47.5890847 ], + [ 8.2326111, 47.5889557 ], + [ 8.2327797, 47.5888147 ], + [ 8.2329034, 47.5887148 ], + [ 8.2330473, 47.5886065 ], + [ 8.2332984, 47.5884267 ], + [ 8.2334634, 47.5883064 ], + [ 8.2336825, 47.5881503 ], + [ 8.2338257, 47.5880398 ], + [ 8.2339949, 47.5879179 ], + [ 8.2341568, 47.5878003 ], + [ 8.2343747, 47.5876451 ], + [ 8.234544, 47.5875237 ], + [ 8.2347324, 47.5873889 ], + [ 8.2349282, 47.5872514 ], + [ 8.2351284, 47.5871067 ], + [ 8.2352579, 47.5870119 ], + [ 8.2354079, 47.5868973 ], + [ 8.235518, 47.5868198 ], + [ 8.2357009, 47.5866911 ], + [ 8.2360233, 47.586462 ], + [ 8.2363942, 47.5861954 ], + [ 8.2365841, 47.5860589 ], + [ 8.2367607, 47.5859329 ], + [ 8.2369345, 47.585811 ], + [ 8.2371022, 47.585685 ], + [ 8.2372729, 47.5855632 ], + [ 8.2374363, 47.5854476 ], + [ 8.2375495, 47.5853591 ], + [ 8.2377305, 47.5852268 ], + [ 8.2378793, 47.5851237 ], + [ 8.2379926, 47.5850414 ], + [ 8.238178, 47.584907 ], + [ 8.2384223, 47.584731 ], + [ 8.2386431, 47.5845717 ], + [ 8.2387814, 47.5844696 ], + [ 8.2389211, 47.5843655 ], + [ 8.2391508, 47.5842051 ], + [ 8.2393612, 47.5840509 ], + [ 8.2395362, 47.5839176 ], + [ 8.2396721, 47.5838238 ], + [ 8.2397218, 47.5837895 ], + [ 8.2397683, 47.5837551 ], + [ 8.2399173, 47.5836447 ], + [ 8.2401005, 47.5835099 ], + [ 8.2402406, 47.58341 ], + [ 8.2403844, 47.5833075 ], + [ 8.2405729, 47.5831712 ], + [ 8.2407017, 47.5830739 ], + [ 8.240923, 47.5829138 ], + [ 8.241145, 47.5827547 ], + [ 8.2414554, 47.582531 ], + [ 8.24177, 47.582309 ], + [ 8.2422487, 47.5819597 ], + [ 8.24244, 47.5818216 ], + [ 8.2426091, 47.5817065 ], + [ 8.2427485, 47.5816102 ], + [ 8.2428922, 47.5815045 ], + [ 8.2430835, 47.5813675 ], + [ 8.2433398, 47.5811803 ], + [ 8.2435104, 47.581061 ], + [ 8.2437327, 47.5808989 ], + [ 8.2438868, 47.5807869 ], + [ 8.2439772, 47.5807169 ], + [ 8.244149, 47.5805903 ], + [ 8.2443566, 47.5804418 ], + [ 8.2446217, 47.5802379 ], + [ 8.2449042, 47.5800394 ], + [ 8.2449701, 47.5799931 ], + [ 8.245194, 47.5798361 ], + [ 8.245357, 47.5797179 ], + [ 8.2455926, 47.5795443 ], + [ 8.2457276, 47.5794501 ], + [ 8.2459099, 47.5793183 ], + [ 8.2461588, 47.5791373 ], + [ 8.2463308, 47.5790149 ], + [ 8.2465368, 47.5788643 ], + [ 8.246777, 47.5786979 ], + [ 8.2469652, 47.5785598 ], + [ 8.2472884, 47.5783286 ], + [ 8.2475462, 47.5781403 ], + [ 8.2478381, 47.5779269 ], + [ 8.2480115, 47.5777993 ], + [ 8.2481834, 47.5776769 ], + [ 8.2483924, 47.5775273 ], + [ 8.2486014, 47.5773756 ], + [ 8.2488059, 47.5772281 ], + [ 8.2490282, 47.577068 ], + [ 8.2491957, 47.5769498 ], + [ 8.2494017, 47.5767991 ], + [ 8.2495677, 47.5766819 ], + [ 8.2498197, 47.5764999 ], + [ 8.2500062, 47.5763536 ], + [ 8.2502374, 47.5761903 ], + [ 8.2503871, 47.5760795 ], + [ 8.2505473, 47.5759747 ], + [ 8.2506792, 47.5758806 ], + [ 8.2508496, 47.575753 ], + [ 8.2510704, 47.575594 ], + [ 8.2512393, 47.5754695 ], + [ 8.2514482, 47.5753167 ], + [ 8.2516764, 47.5751525 ], + [ 8.2519152, 47.5749871 ], + [ 8.2520588, 47.5748753 ], + [ 8.2522348, 47.5747342 ], + [ 8.2523707, 47.5746205 ], + [ 8.2525575, 47.5744493 ], + [ 8.2527177, 47.5743064 ], + [ 8.2527518, 47.5742737 ], + [ 8.2528866, 47.5741446 ], + [ 8.2532474, 47.5737811 ], + [ 8.2523444, 47.573381499999996 ], + [ 8.2515902, 47.5730453 ], + [ 8.2514514, 47.5729832 ], + [ 8.2514094, 47.573036 ], + [ 8.251389, 47.5730615 ], + [ 8.25124, 47.57321 ], + [ 8.2510245, 47.5733983 ], + [ 8.2508409, 47.5735575 ], + [ 8.2506118, 47.5737286 ], + [ 8.250373100000001, 47.5739433 ], + [ 8.2502785, 47.5740096 ], + [ 8.2500781, 47.574055 ], + [ 8.2497552, 47.5741412 ], + [ 8.2494497, 47.5742153 ], + [ 8.2493755, 47.574217 ], + [ 8.2493655, 47.5741982 ], + [ 8.2493994, 47.5741269 ], + [ 8.2493407, 47.5741151 ], + [ 8.2491921, 47.574121 ], + [ 8.248976, 47.5742196 ], + [ 8.2487565, 47.5743263 ], + [ 8.2485114, 47.5744244 ], + [ 8.2483529, 47.5745081 ], + [ 8.2482335, 47.5745708 ], + [ 8.2480054, 47.5746519 ], + [ 8.2479274, 47.5746787 ], + [ 8.2478003, 47.5747224 ], + [ 8.2477537, 47.5747108 ], + [ 8.247716, 47.5746807 ], + [ 8.2476905, 47.5746809 ], + [ 8.247671, 47.5746963 ], + [ 8.2476615, 47.5747412 ], + [ 8.2475786, 47.5747755 ], + [ 8.2475217, 47.5747867 ], + [ 8.2473845, 47.5748139 ], + [ 8.2472896, 47.5748251 ], + [ 8.2472417, 47.5748063 ], + [ 8.2470672, 47.5748783 ], + [ 8.2469448, 47.5749288 ], + [ 8.246687, 47.5750326 ], + [ 8.2464417, 47.5751266 ], + [ 8.2462833, 47.5752096 ], + [ 8.2462595, 47.5752102 ], + [ 8.2461998, 47.5752119 ], + [ 8.2461781, 47.5752273 ], + [ 8.2461785, 47.5752478 ], + [ 8.2461422, 47.57529 ], + [ 8.2460006, 47.5753456 ], + [ 8.2457788, 47.575389799999996 ], + [ 8.2455253, 47.5754215 ], + [ 8.2453757, 47.5754252 ], + [ 8.2452508, 47.575443 ], + [ 8.2450121, 47.5755162 ], + [ 8.2449716, 47.5755271 ], + [ 8.2448995, 47.5755466 ], + [ 8.2448621, 47.5755567 ], + [ 8.2447266, 47.575569 ], + [ 8.2445832, 47.575591 ], + [ 8.2445362, 47.575621 ], + [ 8.2443514, 47.5756593 ], + [ 8.2441573, 47.5756923 ], + [ 8.2441039, 47.5757014 ], + [ 8.2439307, 47.5757436 ], + [ 8.2437223, 47.5757606 ], + [ 8.2436911, 47.5757672 ], + [ 8.2435732, 47.5757922 ], + [ 8.2433099, 47.5758512 ], + [ 8.2431769, 47.5758747 ], + [ 8.2429971, 47.5758746 ], + [ 8.2428671, 47.5758733 ], + [ 8.2426196, 47.5759121 ], + [ 8.2419471, 47.5760449 ], + [ 8.2415123, 47.5761766 ], + [ 8.2412702, 47.5763106 ], + [ 8.2407379, 47.5764967 ], + [ 8.2403922, 47.576618 ], + [ 8.240101, 47.5767348 ], + [ 8.2400341, 47.5767554 ], + [ 8.2399997, 47.5767148 ], + [ 8.239912, 47.5767428 ], + [ 8.2398697, 47.576828 ], + [ 8.2397905, 47.5768758 ], + [ 8.2395907, 47.5769215 ], + [ 8.239499, 47.5769743 ], + [ 8.2393635, 47.5770748 ], + [ 8.2391263, 47.5771954 ], + [ 8.2388969, 47.5773497 ], + [ 8.2387404, 47.5774742 ], + [ 8.2385587, 47.5775444 ], + [ 8.2384199, 47.5776084 ], + [ 8.2383358, 47.5777254 ], + [ 8.2382754, 47.5778289 ], + [ 8.2381473, 47.577887 ], + [ 8.2380579, 47.5778978 ], + [ 8.238031, 47.577936 ], + [ 8.2380348, 47.5780175 ], + [ 8.2379845, 47.5780855 ], + [ 8.2378928, 47.5781079 ], + [ 8.2378191, 47.5781308 ], + [ 8.2377083, 47.5782193 ], + [ 8.2375267, 47.5783726 ], + [ 8.2372846, 47.5786123 ], + [ 8.237035, 47.5789153 ], + [ 8.2369577, 47.5790767 ], + [ 8.2368672, 47.579239 ], + [ 8.2368248, 47.5793514 ], + [ 8.2367915, 47.5794308 ], + [ 8.2367251, 47.5794611 ], + [ 8.2366598, 47.5794915 ], + [ 8.2366583, 47.5795417 ], + [ 8.2365791, 47.5796635 ], + [ 8.2364787, 47.5798054 ], + [ 8.2363196, 47.5800161 ], + [ 8.2362586, 47.5800851 ], + [ 8.236235, 47.5801751 ], + [ 8.2361662, 47.5802754 ], + [ 8.2360333, 47.5804061 ], + [ 8.2359619, 47.5804949 ], + [ 8.2358401, 47.580576 ], + [ 8.2356579, 47.5806874 ], + [ 8.2355911, 47.5806971 ], + [ 8.2353647, 47.5808057 ], + [ 8.2352286, 47.5808911 ], + [ 8.2349677, 47.5811597 ], + [ 8.2347216, 47.581452 ], + [ 8.2344325, 47.5818189 ], + [ 8.2340803, 47.5822729 ], + [ 8.2337386, 47.5827112 ], + [ 8.2333324, 47.5832225 ], + [ 8.2329673, 47.5836923 ], + [ 8.2327777, 47.5839363 ], + [ 8.2326476, 47.5840891 ], + [ 8.2324772, 47.5842696 ], + [ 8.2323079, 47.584436 ], + [ 8.2321003, 47.5846052 ], + [ 8.2318985, 47.5847621 ], + [ 8.231529, 47.5850384 ], + [ 8.2311689, 47.585308 ], + [ 8.2307038, 47.5856635 ], + [ 8.2303166, 47.585959 ], + [ 8.2298279, 47.5863304 ], + [ 8.2294137, 47.586659 ], + [ 8.2291356, 47.5869023 ], + [ 8.2288838, 47.5871387 ], + [ 8.2285164, 47.5874775 ], + [ 8.2282279, 47.5877439 ], + [ 8.2280127, 47.5879561 ], + [ 8.227755, 47.5882066 ], + [ 8.2275747, 47.5883616 ], + [ 8.2274108, 47.5884991 ], + [ 8.2270683, 47.5887512 ], + [ 8.2266606, 47.5890411 ], + [ 8.2262589, 47.5893268 ], + [ 8.2256871, 47.5897393 ], + [ 8.225321, 47.5900098 ], + [ 8.2248236, 47.590443 ], + [ 8.2244326, 47.5907994 ], + [ 8.2239815, 47.5912099 ], + [ 8.2235895, 47.5915795 ], + [ 8.2234826, 47.5916958 ], + [ 8.2234596, 47.5917529 ], + [ 8.2234898, 47.5918431 ], + [ 8.2236024, 47.5919276 ], + [ 8.2237619, 47.5920265 ], + [ 8.2238105, 47.5920754 ], + [ 8.2238412, 47.5921228 ], + [ 8.2238565, 47.5921762 ], + [ 8.223851, 47.5922783 ], + [ 8.2238174, 47.5925611 ], + [ 8.2237938, 47.5926511 ], + [ 8.2237847, 47.5926775 ], + [ 8.2237133, 47.5927688 ], + [ 8.2237602, 47.5927873 ], + [ 8.2237008, 47.5929534 ], + [ 8.2235858, 47.593302800000004 ], + [ 8.2235502, 47.5933929 ], + [ 8.2234996, 47.5934268 ], + [ 8.2234852, 47.5934364 ], + [ 8.2239371, 47.5937127 ], + [ 8.2243767, 47.5939815 ], + [ 8.2247189, 47.5942016 ], + [ 8.2247912, 47.5942482 ], + [ 8.2249112, 47.5942008 ], + [ 8.2249354, 47.5942204 ], + [ 8.2249708, 47.5941904 ], + [ 8.2249922, 47.5941629 ], + [ 8.2252615, 47.5940573 ], + [ 8.2252908, 47.5940488 ], + [ 8.2253183, 47.5940492 ], + [ 8.2253481, 47.5940585 ], + [ 8.2253762, 47.5940816 ], + [ 8.2253954, 47.5941172 ], + [ 8.2253992, 47.5941482 ], + [ 8.2253878, 47.5941821 ], + [ 8.2253813, 47.5941915 ], + [ 8.2253633, 47.5942175 ], + [ 8.2253414, 47.5942398 ], + [ 8.2252959, 47.5942749 ], + [ 8.2256575, 47.5945037 ], + [ 8.2259601, 47.5946946 ], + [ 8.2260733, 47.5946253 ], + [ 8.2261146, 47.5946083 ], + [ 8.2261724, 47.5945987 ], + [ 8.2262122, 47.5946017 ], + [ 8.2262541, 47.5946075 ], + [ 8.2262992, 47.5946187 ], + [ 8.2263967, 47.5946459 ], + [ 8.2266418, 47.5947157 ], + [ 8.226696, 47.5947233 ], + [ 8.226744, 47.5947241 ], + [ 8.2268111, 47.5947227 ], + [ 8.2269525, 47.5947136 ], + [ 8.2270591, 47.5946987 ], + [ 8.2271596, 47.5946872 ], + [ 8.2273227, 47.5946538 ], + [ 8.2274512, 47.5946179 ] + ], + [ + [ 8.2455391, 47.5773602 ], + [ 8.2454262, 47.5774054 ], + [ 8.2453155, 47.5774653 ], + [ 8.2450631, 47.5776055 ], + [ 8.2448649, 47.577700899999996 ], + [ 8.2447866, 47.5777096 ], + [ 8.2447127, 47.5777423 ], + [ 8.2445611, 47.5778119 ], + [ 8.2444906, 47.5778192 ], + [ 8.2444136, 47.5777862 ], + [ 8.2443987, 47.5777137 ], + [ 8.2443665, 47.577667 ], + [ 8.2443079, 47.5775654 ], + [ 8.2442538, 47.5774932 ], + [ 8.2442377, 47.577355 ], + [ 8.2442379, 47.5771401 ], + [ 8.2442099, 47.5771054 ], + [ 8.2442387, 47.577073 ], + [ 8.2442239, 47.5770073 ], + [ 8.2441605, 47.5769675 ], + [ 8.2441419, 47.5769152 ], + [ 8.2441145, 47.5767999 ], + [ 8.244147, 47.5767514 ], + [ 8.2442932, 47.576706 ], + [ 8.244324, 47.5766749 ], + [ 8.2441642, 47.5766143 ], + [ 8.2441395, 47.5765433 ], + [ 8.2441541, 47.5764814 ], + [ 8.2442506, 47.5765062 ], + [ 8.2442767, 47.5765463 ], + [ 8.2444007, 47.5765763 ], + [ 8.2445662, 47.5766288 ], + [ 8.2447096, 47.5766465 ], + [ 8.2447871, 47.5767091 ], + [ 8.2448381, 47.5767141 ], + [ 8.2448608, 47.5766615 ], + [ 8.245016, 47.5766859 ], + [ 8.2451083, 47.576696 ], + [ 8.2451969, 47.5767208 ], + [ 8.2452523, 47.5767499 ], + [ 8.2452535, 47.5768225 ], + [ 8.2451994, 47.5768645 ], + [ 8.2452308, 47.5769851 ], + [ 8.245254599999999, 47.5771139 ], + [ 8.2452428, 47.5772241 ], + [ 8.2452553, 47.5772697 ], + [ 8.2453164, 47.5772893 ], + [ 8.2453848, 47.5772808 ], + [ 8.2454447, 47.5772307 ], + [ 8.2454937, 47.5772263 ], + [ 8.2455551, 47.5771493 ], + [ 8.2456285, 47.577087 ], + [ 8.2457594, 47.5770658 ], + [ 8.2458116, 47.5770265 ], + [ 8.245984, 47.5769084 ], + [ 8.2460719, 47.5768903 ], + [ 8.2461277, 47.5768268 ], + [ 8.2461532, 47.576605 ], + [ 8.2461078, 47.576467 ], + [ 8.2459797, 47.5763149 ], + [ 8.2458649, 47.5762459 ], + [ 8.2457468, 47.5762158 ], + [ 8.245686, 47.5762163 ], + [ 8.2456091, 47.5763028 ], + [ 8.2455323, 47.5763974 ], + [ 8.2454675, 47.5763858 ], + [ 8.2454608, 47.5764557 ], + [ 8.2454182, 47.5764815 ], + [ 8.2453567, 47.5764376 ], + [ 8.2452105, 47.576487 ], + [ 8.2449957, 47.5765316 ], + [ 8.2447493, 47.5765643 ], + [ 8.244626, 47.5765733 ], + [ 8.2445212, 47.5765176 ], + [ 8.2443494, 47.5764397 ], + [ 8.2441774, 47.5763509 ], + [ 8.2439985, 47.5763214 ], + [ 8.2436715, 47.5762217 ], + [ 8.2434491, 47.5761683 ], + [ 8.2434739, 47.5760163 ], + [ 8.2435327, 47.5760159 ], + [ 8.243602, 47.5759402 ], + [ 8.2437263, 47.5758735 ], + [ 8.2438609, 47.5758403 ], + [ 8.2441243, 47.5757712 ], + [ 8.2443921, 47.5757329 ], + [ 8.2445098, 47.5757388 ], + [ 8.2445595, 47.5757787 ], + [ 8.2446158, 47.5758602 ], + [ 8.2446903, 47.5758664 ], + [ 8.2447721, 47.5758322 ], + [ 8.244948, 47.5758054 ], + [ 8.245183, 47.5757956 ], + [ 8.2454002, 47.5757793 ], + [ 8.245631, 47.575752 ], + [ 8.245792699999999, 47.5756971 ], + [ 8.245912, 47.5756842 ], + [ 8.2459812, 47.5757186 ], + [ 8.2460734, 47.5757206 ], + [ 8.2462039, 47.5756753 ], + [ 8.2462558, 47.575617199999996 ], + [ 8.2462945, 47.5753604 ], + [ 8.2463687, 47.575341 ], + [ 8.2464285, 47.5752869 ], + [ 8.2465627, 47.5752295 ], + [ 8.2467325, 47.5751866 ], + [ 8.2468897, 47.5751008 ], + [ 8.2471587, 47.5750156 ], + [ 8.247529, 47.574896 ], + [ 8.2478274, 47.5748132 ], + [ 8.2481721, 47.5746858 ], + [ 8.2484932, 47.5745518 ], + [ 8.2487422, 47.5744479 ], + [ 8.2489621, 47.574359 ], + [ 8.2492007, 47.5743304 ], + [ 8.2494022, 47.5743101 ], + [ 8.2497263, 47.5742406 ], + [ 8.2499974, 47.5741674 ], + [ 8.2500174, 47.5741927 ], + [ 8.2496655, 47.5744639 ], + [ 8.2491506, 47.5748384 ], + [ 8.2487518, 47.5751234 ], + [ 8.2481845, 47.5755184 ], + [ 8.2476981, 47.5758402 ], + [ 8.2472984, 47.5760755 ], + [ 8.2468302, 47.5764227 ], + [ 8.2464373, 47.576713 ], + [ 8.2460426, 47.5770087 ], + [ 8.245797, 47.5772012 ], + [ 8.2455391, 47.5773602 ] + ], + [ + [ 8.2401265, 47.5796627 ], + [ 8.2399127, 47.5797148 ], + [ 8.2397798, 47.5797894 ], + [ 8.2396221, 47.579858 ], + [ 8.2394705, 47.5798836 ], + [ 8.2393742, 47.5798628 ], + [ 8.2392928, 47.579799 ], + [ 8.2392755, 47.5796871 ], + [ 8.2393011, 47.5796026 ], + [ 8.2394085, 47.5794623 ], + [ 8.2395307, 47.5792621 ], + [ 8.239749400000001, 47.5789354 ], + [ 8.2399604, 47.5786916 ], + [ 8.2401084, 47.5785771 ], + [ 8.2402326, 47.5785103 ], + [ 8.2404083, 47.5784538 ], + [ 8.2406048, 47.5784493 ], + [ 8.2408174, 47.5784708 ], + [ 8.2410082, 47.5785293 ], + [ 8.2411684, 47.5786355 ], + [ 8.241257, 47.5787361 ], + [ 8.2412951, 47.5788953 ], + [ 8.2413589, 47.5789792 ], + [ 8.241384, 47.5790173 ], + [ 8.2413217, 47.5791849 ], + [ 8.2413244, 47.5792202 ], + [ 8.2414612, 47.5792499 ], + [ 8.2416369, 47.579195 ], + [ 8.2418042, 47.5791785 ], + [ 8.2422565, 47.5790924 ], + [ 8.2424078, 47.5790453 ], + [ 8.242523, 47.5788237 ], + [ 8.242534, 47.5786595 ], + [ 8.242483, 47.5785326 ], + [ 8.242417, 47.5784549 ], + [ 8.2423543, 47.5784415 ], + [ 8.2421704, 47.5783983 ], + [ 8.242096, 47.5783498 ], + [ 8.2420226, 47.578223 ], + [ 8.2419137, 47.5782606 ], + [ 8.2416659, 47.5782777 ], + [ 8.2414837, 47.578348 ], + [ 8.2413458, 47.5783889 ], + [ 8.2411933, 47.5783547 ], + [ 8.2411028, 47.5782771 ], + [ 8.2410549, 47.5782084 ], + [ 8.2410715, 47.5781194 ], + [ 8.2411947, 47.5779927 ], + [ 8.2413312, 47.5778522 ], + [ 8.2415375, 47.5777465 ], + [ 8.2416956, 47.5777101 ], + [ 8.2418096, 47.5777154 ], + [ 8.2419535, 47.5777727 ], + [ 8.2420933, 47.5778637 ], + [ 8.2421289, 47.5778511 ], + [ 8.2420806, 47.5777579 ], + [ 8.2420699, 47.5776384 ], + [ 8.2420496, 47.5774699 ], + [ 8.2420925, 47.577353 ], + [ 8.2421543, 47.5772974 ], + [ 8.2421136, 47.5772654 ], + [ 8.2420725, 47.5772075 ], + [ 8.2420719, 47.577163 ], + [ 8.2421311, 47.5770905 ], + [ 8.2421923, 47.576995 ], + [ 8.2422336, 47.576918 ], + [ 8.242228, 47.5768414 ], + [ 8.2421841, 47.5767405 ], + [ 8.2421719, 47.5766685 ], + [ 8.2422107, 47.5765731 ], + [ 8.242119, 47.5765676 ], + [ 8.2420584, 47.5765466 ], + [ 8.2420324, 47.5764502 ], + [ 8.2421113, 47.5763438 ], + [ 8.2420885, 47.5763148 ], + [ 8.2419974, 47.5763461 ], + [ 8.2419143, 47.5763207 ], + [ 8.2418385, 47.5763289 ], + [ 8.2417958, 47.5763123 ], + [ 8.2418398, 47.5762706 ], + [ 8.2420462, 47.576171 ], + [ 8.2421861, 47.5761117 ], + [ 8.2423867, 47.5760811 ], + [ 8.2425319, 47.576077 ], + [ 8.242646, 47.5760869 ], + [ 8.2429195, 47.5761525 ], + [ 8.2432021, 47.5762225 ], + [ 8.2435494, 47.576286 ], + [ 8.2437578, 47.5763336 ], + [ 8.2438906, 47.5764001 ], + [ 8.2439724, 47.5764916 ], + [ 8.2440211, 47.5766139 ], + [ 8.2440153, 47.5766645 ], + [ 8.2440089, 47.5767471 ], + [ 8.2440065, 47.5768304 ], + [ 8.2440513, 47.5768685 ], + [ 8.2440769, 47.5769168 ], + [ 8.2440893, 47.5769983 ], + [ 8.2441427, 47.5771298 ], + [ 8.2441697, 47.5772937 ], + [ 8.2441718, 47.577444 ], + [ 8.2441997, 47.5775128 ], + [ 8.2442817, 47.5776196 ], + [ 8.2443503, 47.577731 ], + [ 8.2443739, 47.5778122 ], + [ 8.2443434, 47.5778645 ], + [ 8.2440413, 47.5779878 ], + [ 8.2438352, 47.5781058 ], + [ 8.2437137, 47.5781987 ], + [ 8.2434503, 47.5783693 ], + [ 8.2432929, 47.5784548 ], + [ 8.2431915, 47.578546 ], + [ 8.2431348, 47.5786445 ], + [ 8.2429748, 47.5788542 ], + [ 8.2429455, 47.5789909 ], + [ 8.242977, 47.5791594 ], + [ 8.2428994, 47.5791967 ], + [ 8.2428519, 47.5793121 ], + [ 8.2427676, 47.5793526 ], + [ 8.2427214, 47.5794035 ], + [ 8.2425314, 47.5795505 ], + [ 8.242109, 47.5798526 ], + [ 8.2419056, 47.5799967 ], + [ 8.2417213, 47.5800808 ], + [ 8.2415738, 47.5802306 ], + [ 8.2411536, 47.5805265 ], + [ 8.2409234, 47.5806784 ], + [ 8.2408284, 47.5807496 ], + [ 8.2406006, 47.5809138 ], + [ 8.2404591, 47.5810175 ], + [ 8.2402728, 47.5811093 ], + [ 8.2401162, 47.58125 ], + [ 8.2398086, 47.5814562 ], + [ 8.2394458, 47.5817072 ], + [ 8.2389302, 47.5820528 ], + [ 8.2386225, 47.5822589 ], + [ 8.2383406, 47.5823867 ], + [ 8.2381337, 47.582448 ], + [ 8.2379717, 47.5825258 ], + [ 8.2379192, 47.5826059 ], + [ 8.2377054, 47.582655 ], + [ 8.2375351, 47.5826209 ], + [ 8.2374289, 47.5825388 ], + [ 8.2373667, 47.582415 ], + [ 8.2373543, 47.5823277 ], + [ 8.2373866, 47.5822447 ], + [ 8.2375257, 47.5821302 ], + [ 8.2378875, 47.581959 ], + [ 8.2380807, 47.5818763 ], + [ 8.2384041, 47.5816793 ], + [ 8.2385143, 47.5815803 ], + [ 8.2386252, 47.5815228 ], + [ 8.2388809, 47.5812802 ], + [ 8.2390537, 47.5811747 ], + [ 8.2391244, 47.5811221 ], + [ 8.2392936, 47.581081 ], + [ 8.2395735, 47.580964 ], + [ 8.2398792, 47.5807809 ], + [ 8.2400907, 47.5807288 ], + [ 8.2403483, 47.5806181 ], + [ 8.2405305, 47.5805539 ], + [ 8.2406538, 47.5804257 ], + [ 8.2406661, 47.580352 ], + [ 8.2407285, 47.5801844 ], + [ 8.2406681, 47.5800238 ], + [ 8.24053, 47.5799037 ], + [ 8.2404454, 47.5797739 ], + [ 8.2404251, 47.5796084 ], + [ 8.2401265, 47.5796627 ] + ], + [ + [ 8.2354622, 47.5831617 ], + [ 8.235634, 47.5832031 ], + [ 8.2356725, 47.5832124 ], + [ 8.2358337, 47.5832604 ], + [ 8.2359769, 47.5833024 ], + [ 8.2360536, 47.5833571 ], + [ 8.2360698, 47.5834015 ], + [ 8.2360553, 47.5834692 ], + [ 8.2360028, 47.583531 ], + [ 8.2358853, 47.5835717 ], + [ 8.2358927, 47.5836224 ], + [ 8.2357787, 47.5837399 ], + [ 8.2356422, 47.5838544 ], + [ 8.2354962, 47.58392 ], + [ 8.2353794, 47.5840068 ], + [ 8.2353087, 47.5840503 ], + [ 8.2351512, 47.5840974 ], + [ 8.2349425, 47.5841465 ], + [ 8.2348086, 47.5841336 ], + [ 8.2346718, 47.5840824 ], + [ 8.2344741, 47.5839793 ], + [ 8.2344195, 47.5839076 ], + [ 8.2343781, 47.5838249 ], + [ 8.2343925, 47.5837465 ], + [ 8.2344735, 47.5836477 ], + [ 8.2346447, 47.5834806 ], + [ 8.234773, 47.5834183 ], + [ 8.2348388, 47.5833472 ], + [ 8.2349826, 47.5832787 ], + [ 8.2351886, 47.5831974 ], + [ 8.2353285, 47.5831641 ], + [ 8.2354622, 47.5831617 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "KTAG301", + "country" : "CHE", + "name" : [ + { + "text" : "Klingnauer Stausee", + "lang" : "de-CH" + }, + { + "text" : "Klingnauer Stausee", + "lang" : "fr-CH" + }, + { + "text" : "Klingnauer Stausee", + "lang" : "it-CH" + }, + { + "text" : "Klingnauer Stausee", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "regulationExemption" : "NO", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "schedule" : [ + { + "day" : [ "ANY" ], + "startTime" : "00:00:00.00+01:00", + "endTime" : "00:00:00.00+01:00" + } + ] + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Aargau", + "lang" : "de-CH" + }, + { + "text" : "Canton d'Argovie", + "lang" : "fr-CH" + }, + { + "text" : "Canton Argovia", + "lang" : "it-CH" + }, + { + "text" : "Canton of Aargau", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Departement Bau, Verkehr und Umwelt (BVU)", + "lang" : "de-CH" + }, + { + "text" : "Département de la construction, des transports et de l'environnement (CTE)", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento delle costruzioni, dei trasporti e dell'ambiente (CTA)", + "lang" : "it-CH" + }, + { + "text" : "Department of Civil Engineering,Transport and Environment (CTE)", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Sektion Gewässernutzung", + "lang" : "de-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "fr-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "it-CH" + }, + { + "text" : "Sektion Gewässernutzung", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ag.ch/de/verwaltung/bvu/umwelt-natur-landschaft/hochwasserschutz-gewaesser/gewaessernutzung", + "email" : "alg@ag.ch", + "phone" : "0041 62 835 34 50", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.0700057, 47.5238202 ], + [ 9.0698425, 47.5214685 ], + [ 9.0694978, 47.5191258 ], + [ 9.0689727, 47.5167986 ], + [ 9.0682686, 47.5144931 ], + [ 9.0673873, 47.5122157 ], + [ 9.0663315, 47.5099727 ], + [ 9.0651039, 47.5077702 ], + [ 9.063708, 47.5056143 ], + [ 9.0621476, 47.5035107 ], + [ 9.060427, 47.5014654 ], + [ 9.058551, 47.4994838 ], + [ 9.0565246, 47.4975715 ], + [ 9.0543534, 47.4957336 ], + [ 9.0520435, 47.4939752 ], + [ 9.0496011, 47.4923011 ], + [ 9.0470329, 47.4907159 ], + [ 9.044346, 47.4892238 ], + [ 9.0415477, 47.4878291 ], + [ 9.0386457, 47.4865355 ], + [ 9.0356479, 47.4853465 ], + [ 9.0325625, 47.4842654 ], + [ 9.0293981, 47.4832952 ], + [ 9.0261631, 47.4824385 ], + [ 9.0228666, 47.4816976 ], + [ 9.0195175, 47.4810746 ], + [ 9.0161249, 47.4805712 ], + [ 9.0126981, 47.4801887 ], + [ 9.0092466, 47.4799283 ], + [ 9.0057797, 47.4797905 ], + [ 9.002307, 47.4797758 ], + [ 8.9988378, 47.4798843 ], + [ 8.9953818, 47.4801156 ], + [ 8.9919483, 47.4804691 ], + [ 8.9885467, 47.4809439 ], + [ 8.9851864, 47.4815385 ], + [ 8.9818765, 47.4822515 ], + [ 8.9786261, 47.4830809 ], + [ 8.9754441, 47.4840243 ], + [ 8.9723391, 47.4850793 ], + [ 8.9693198, 47.4862429 ], + [ 8.9663942, 47.4875119 ], + [ 8.9635705, 47.4888829 ], + [ 8.9608564, 47.4903521 ], + [ 8.9582593, 47.4919156 ], + [ 8.9557863, 47.4935689 ], + [ 8.9534443, 47.4953077 ], + [ 8.9512395, 47.4971271 ], + [ 8.9491782, 47.4990222 ], + [ 8.9472659, 47.5009877 ], + [ 8.9455078, 47.5030184 ], + [ 8.9439089, 47.5051086 ], + [ 8.9424735, 47.5072526 ], + [ 8.9412055, 47.5094446 ], + [ 8.9401085, 47.5116785 ], + [ 8.9391855, 47.5139482 ], + [ 8.938439, 47.5162476 ], + [ 8.9378711, 47.5185703 ], + [ 8.9374834, 47.5209099 ], + [ 8.9372769, 47.52326 ], + [ 8.9372523, 47.5256143 ], + [ 8.9374096, 47.5279661 ], + [ 8.9377485, 47.5303092 ], + [ 8.938268, 47.5326371 ], + [ 8.9389668, 47.5349433 ], + [ 8.9398429, 47.5372216 ], + [ 8.9408939, 47.5394658 ], + [ 8.9421171, 47.5416696 ], + [ 8.943509, 47.543827 ], + [ 8.9450659, 47.5459321 ], + [ 8.9467835, 47.5479791 ], + [ 8.9486571, 47.5499624 ], + [ 8.9506816, 47.5518766 ], + [ 8.9528514, 47.5537164 ], + [ 8.9551607, 47.5554767 ], + [ 8.957603, 47.5571528 ], + [ 8.9601718, 47.55874 ], + [ 8.9628598, 47.5602339 ], + [ 8.9656599, 47.5616305 ], + [ 8.9685642, 47.562926 ], + [ 8.9715649, 47.5641166 ], + [ 8.9746536, 47.5651993 ], + [ 8.977822, 47.566171 ], + [ 8.9810612, 47.5670291 ], + [ 8.9843625, 47.5677711 ], + [ 8.9877167, 47.5683951 ], + [ 8.9911146, 47.5688993 ], + [ 8.9945469, 47.5692824 ], + [ 8.9980042, 47.5695433 ], + [ 9.0014769, 47.5696813 ], + [ 9.0049556, 47.569696 ], + [ 9.0084306, 47.5695873 ], + [ 9.0118924, 47.5693556 ], + [ 9.0153315, 47.5690016 ], + [ 9.0187384, 47.568526 ], + [ 9.0221039, 47.5679304 ], + [ 9.0254186, 47.5672163 ], + [ 9.0286734, 47.5663856 ], + [ 9.0318594, 47.5654408 ], + [ 9.0349679, 47.5643842 ], + [ 9.0379903, 47.563219 ], + [ 9.0409183, 47.5619482 ], + [ 9.0437438, 47.560575299999996 ], + [ 9.0464592, 47.5591042 ], + [ 9.049057, 47.5575388 ], + [ 9.0515301, 47.5558835 ], + [ 9.0538716, 47.5541428 ], + [ 9.0560752, 47.5523214 ], + [ 9.0581348, 47.5504245 ], + [ 9.0600448, 47.5484571 ], + [ 9.0618, 47.5464248 ], + [ 9.0633955, 47.544333 ], + [ 9.064827, 47.5421875 ], + [ 9.0660907, 47.5399942 ], + [ 9.067183, 47.5377591 ], + [ 9.0681009, 47.5354884 ], + [ 9.0688421, 47.5331882 ], + [ 9.0694044, 47.5308649 ], + [ 9.0697864, 47.5285249 ], + [ 9.069987, 47.5261745 ], + [ 9.0700057, 47.5238202 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZT001", + "country" : "CHE", + "name" : [ + { + "text" : "LSZT Lommis", + "lang" : "de-CH" + }, + { + "text" : "LSZT Lommis", + "lang" : "fr-CH" + }, + { + "text" : "LSZT Lommis", + "lang" : "it-CH" + }, + { + "text" : "LSZT Lommis", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Motorfluggruppe Thurgau", + "lang" : "de-CH" + }, + { + "text" : "Motorfluggruppe Thurgau", + "lang" : "fr-CH" + }, + { + "text" : "Motorfluggruppe Thurgau", + "lang" : "it-CH" + }, + { + "text" : "Motorfluggruppe Thurgau", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.mfgt.ch/flugplatz/drohnen/drones/", + "phone" : "0041523663333", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P04DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5429346, 47.553413 ], + [ 7.5429058, 47.5534348 ], + [ 7.5430551999999995, 47.5534845 ], + [ 7.5431756, 47.5535371 ], + [ 7.5432992, 47.5535911 ], + [ 7.5433863, 47.5536298 ], + [ 7.5437188, 47.5537777 ], + [ 7.5440797, 47.554004 ], + [ 7.544143, 47.5540462 ], + [ 7.5442903999999995, 47.5541445 ], + [ 7.544499, 47.554248 ], + [ 7.5449211, 47.5544832 ], + [ 7.5449959, 47.5545756 ], + [ 7.5450206, 47.5545906 ], + [ 7.5450197, 47.554607 ], + [ 7.545111, 47.5547252 ], + [ 7.5454092, 47.5549783 ], + [ 7.5455399, 47.5550687 ], + [ 7.5458625999999995, 47.5552504 ], + [ 7.5459899, 47.5553524 ], + [ 7.5461042, 47.5554387 ], + [ 7.5461933, 47.5555176 ], + [ 7.546269, 47.5556006 ], + [ 7.546354, 47.5556734 ], + [ 7.5465212, 47.5557213 ], + [ 7.546818, 47.5558963 ], + [ 7.5468927, 47.5559701 ], + [ 7.547103, 47.5560374 ], + [ 7.54759, 47.5561175 ], + [ 7.5477019, 47.5561516 ], + [ 7.5478102, 47.5561224 ], + [ 7.5481039, 47.556303 ], + [ 7.5482298, 47.5563666 ], + [ 7.5483058, 47.5564379 ], + [ 7.5484188, 47.5565171 ], + [ 7.5486394, 47.556662 ], + [ 7.5488471, 47.5568076 ], + [ 7.549108, 47.5569805 ], + [ 7.5493395, 47.557189 ], + [ 7.5495643, 47.5573824 ], + [ 7.5497892, 47.5575223 ], + [ 7.5501715, 47.5577509 ], + [ 7.5502531, 47.5577556 ], + [ 7.5502796, 47.5577717 ], + [ 7.5503322, 47.5578135 ], + [ 7.5503418, 47.5578077 ], + [ 7.5504702, 47.5578084 ], + [ 7.5510658, 47.5580826 ], + [ 7.5511492, 47.558073 ], + [ 7.5512314, 47.5581053 ], + [ 7.5514059, 47.5581714 ], + [ 7.5515875, 47.5582518 ], + [ 7.5519085, 47.5583867 ], + [ 7.5520844, 47.558399 ], + [ 7.5521975999999995, 47.5584312 ], + [ 7.552357, 47.5584838 ], + [ 7.5525039, 47.5584972 ], + [ 7.5525961, 47.5585592 ], + [ 7.5528242, 47.558594 ], + [ 7.5530094, 47.5586381 ], + [ 7.5532056, 47.5586922 ], + [ 7.5533871, 47.558746 ], + [ 7.5535399, 47.5588376 ], + [ 7.5536419, 47.5589119 ], + [ 7.5537495, 47.5590227 ], + [ 7.5538602, 47.559142 ], + [ 7.5539806, 47.5592606 ], + [ 7.5541226, 47.5593725 ], + [ 7.5542358, 47.5594596 ], + [ 7.554369, 47.5595336 ], + [ 7.5545608, 47.5596502 ], + [ 7.5547685, 47.559765 ], + [ 7.5549774, 47.5598842 ], + [ 7.5551633, 47.559992199999996 ], + [ 7.5553592, 47.5600992 ], + [ 7.5555625, 47.5602201 ], + [ 7.555808, 47.5603439 ], + [ 7.5560296000000005, 47.5604544 ], + [ 7.5562279, 47.5605532 ], + [ 7.5565238, 47.5607038 ], + [ 7.5567085, 47.5608153 ], + [ 7.5567919, 47.5607943 ], + [ 7.556812, 47.5608202 ], + [ 7.5568159999999995, 47.5608252 ], + [ 7.5569572, 47.5609196 ], + [ 7.5574414, 47.5613787 ], + [ 7.5579111, 47.5616998 ], + [ 7.5579596, 47.5616672 ], + [ 7.5579713, 47.5616589 ], + [ 7.5586591, 47.5620205 ], + [ 7.55868, 47.5620031 ], + [ 7.5586972, 47.5619887 ], + [ 7.5582045, 47.5617346 ], + [ 7.5580435999999995, 47.5616446 ], + [ 7.5579026, 47.5615481 ], + [ 7.5578879, 47.5615381 ], + [ 7.5576212, 47.5613504 ], + [ 7.5576215, 47.5613423 ], + [ 7.5576208000000005, 47.5613342 ], + [ 7.5576191, 47.5613262 ], + [ 7.5576165, 47.561318299999996 ], + [ 7.5576128, 47.5613106 ], + [ 7.5576083, 47.5613031 ], + [ 7.5576028, 47.5612959 ], + [ 7.5575965, 47.561289 ], + [ 7.5573683, 47.5610683 ], + [ 7.5573756, 47.561060499999996 ], + [ 7.5572338, 47.560927 ], + [ 7.557082, 47.560803 ], + [ 7.5568612, 47.5606766 ], + [ 7.5564303, 47.5604566 ], + [ 7.5562252, 47.5603521 ], + [ 7.5557792, 47.5601333 ], + [ 7.5557491, 47.5601619 ], + [ 7.5557053, 47.560137 ], + [ 7.5555232, 47.5600361 ], + [ 7.5555064, 47.5600275 ], + [ 7.5554813, 47.5600175 ], + [ 7.5552861, 47.5598956 ], + [ 7.5551577, 47.5598003 ], + [ 7.5549744, 47.5596826 ], + [ 7.5544827, 47.5594356 ], + [ 7.5544725, 47.5594306 ], + [ 7.5544175, 47.5593976 ], + [ 7.5542396, 47.5592794 ], + [ 7.5542215, 47.5592632 ], + [ 7.5541821, 47.5592168 ], + [ 7.5542176, 47.5591823 ], + [ 7.5540217, 47.5589539 ], + [ 7.5538340999999996, 47.5587765 ], + [ 7.5536922, 47.5586895 ], + [ 7.5535929, 47.5586286 ], + [ 7.5529909, 47.5584288 ], + [ 7.5521167, 47.5581904 ], + [ 7.552094, 47.5581842 ], + [ 7.5518102, 47.5581005 ], + [ 7.5513462, 47.5579402 ], + [ 7.5513252, 47.557961 ], + [ 7.5512411, 47.5579258 ], + [ 7.5504868, 47.5576103 ], + [ 7.5504135, 47.5575794 ], + [ 7.5497577, 47.5573156 ], + [ 7.5497388, 47.5572935 ], + [ 7.5495206, 47.5570374 ], + [ 7.5492406, 47.5568017 ], + [ 7.548893, 47.556553 ], + [ 7.5489224, 47.5565264 ], + [ 7.5487748, 47.5564498 ], + [ 7.5487567, 47.5564679 ], + [ 7.5485425, 47.5562849 ], + [ 7.5484453, 47.556247 ], + [ 7.5483343, 47.5561785 ], + [ 7.5482096, 47.5561124 ], + [ 7.5480781, 47.5560583 ], + [ 7.5480488999999995, 47.5560385 ], + [ 7.5478874000000005, 47.5559746 ], + [ 7.5479275, 47.5559362 ], + [ 7.5478044, 47.5558809 ], + [ 7.5477941, 47.555891 ], + [ 7.547737, 47.5559451 ], + [ 7.5475525, 47.5558568 ], + [ 7.5475118, 47.5558373 ], + [ 7.5474519, 47.5558942 ], + [ 7.5472804, 47.5558634 ], + [ 7.5471899, 47.5558479 ], + [ 7.5470982, 47.5558326 ], + [ 7.5470246, 47.5558047 ], + [ 7.5469028, 47.5557617 ], + [ 7.5467696, 47.5556917 ], + [ 7.5465748, 47.5555475 ], + [ 7.5465019, 47.5554854 ], + [ 7.546434, 47.5554087 ], + [ 7.5463077, 47.5553012 ], + [ 7.5463283, 47.5552818 ], + [ 7.5463202, 47.5552777 ], + [ 7.5461206, 47.5551222 ], + [ 7.5459512, 47.5550204 ], + [ 7.5457708, 47.5548979 ], + [ 7.5456778, 47.554815 ], + [ 7.5456562, 47.5547552 ], + [ 7.5456464, 47.5547469 ], + [ 7.5456225, 47.5547396 ], + [ 7.5456163, 47.554739 ], + [ 7.54561, 47.5547387 ], + [ 7.5456037, 47.5547389 ], + [ 7.5455974, 47.5547394 ], + [ 7.5455912, 47.5547403 ], + [ 7.5455852, 47.5547415 ], + [ 7.5455793, 47.5547431 ], + [ 7.5455736, 47.554745 ], + [ 7.5455683, 47.5547472 ], + [ 7.5455632, 47.5547498 ], + [ 7.5455585, 47.5547526 ], + [ 7.5455541, 47.5547557 ], + [ 7.5455502, 47.5547591 ], + [ 7.5455467, 47.5547627 ], + [ 7.5455437, 47.5547664 ], + [ 7.5455412, 47.5547703 ], + [ 7.5455391, 47.5547744 ], + [ 7.5455377, 47.5547786 ], + [ 7.5455336, 47.5547842 ], + [ 7.5455394, 47.55479 ], + [ 7.5455372, 47.5547956 ], + [ 7.5455185, 47.5548057 ], + [ 7.5453691, 47.5546747 ], + [ 7.5452132, 47.55451 ], + [ 7.5451898, 47.5545147 ], + [ 7.5451668, 47.5544999 ], + [ 7.5451771, 47.5544897 ], + [ 7.5451793, 47.5544825 ], + [ 7.5451759, 47.5544766 ], + [ 7.5451627, 47.5544648 ], + [ 7.5450072, 47.5543816 ], + [ 7.5447399, 47.5542392 ], + [ 7.544449, 47.5540877 ], + [ 7.5441648, 47.5539249 ], + [ 7.5441367, 47.5538961 ], + [ 7.5437482, 47.5536584 ], + [ 7.5435374, 47.5535622 ], + [ 7.5433493, 47.5534784 ], + [ 7.5432275, 47.5534325 ], + [ 7.5431471, 47.5534006 ], + [ 7.5431139, 47.553389 ], + [ 7.5430201, 47.5533487 ], + [ 7.5430038, 47.553361 ], + [ 7.5430001, 47.5533675 ], + [ 7.5429921, 47.5533722 ], + [ 7.5429842, 47.553377 ], + [ 7.5429766, 47.553382 ], + [ 7.5429731, 47.5533845 ], + [ 7.5429695, 47.5533869 ], + [ 7.5429661, 47.5533894 ], + [ 7.5429627, 47.5533919 ], + [ 7.5429346, 47.553413 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns133", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Bachgraben", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Bachgraben", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Bachgraben", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Bachgraben", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6278410999999995, 47.5235891 ], + [ 7.6290721, 47.5228689 ], + [ 7.6289553, 47.5227891 ], + [ 7.6283632, 47.5229894 ], + [ 7.6283422, 47.5229951 ], + [ 7.6282495, 47.5230155 ], + [ 7.628154, 47.5230292 ], + [ 7.628057, 47.5230361 ], + [ 7.6279596, 47.5230361 ], + [ 7.6278625, 47.5230292 ], + [ 7.6277671, 47.5230155 ], + [ 7.6276743, 47.5229951 ], + [ 7.6275853, 47.5229683 ], + [ 7.6275009, 47.5229352 ], + [ 7.6274218, 47.5228964 ], + [ 7.6273493, 47.5228522 ], + [ 7.6273336, 47.5228412 ], + [ 7.6272701, 47.5227911 ], + [ 7.6272147, 47.5227367 ], + [ 7.627168, 47.5226787 ], + [ 7.6271305, 47.5226178 ], + [ 7.6271026, 47.5225544 ], + [ 7.6270846, 47.5224895 ], + [ 7.6270768, 47.5224237 ], + [ 7.6270791, 47.5223577 ], + [ 7.627084, 47.5223305 ], + [ 7.6276872000000004, 47.5216582 ], + [ 7.6278164, 47.5215127 ], + [ 7.6279622, 47.5213375 ], + [ 7.6280089, 47.521299 ], + [ 7.6280612, 47.521264 ], + [ 7.6281188, 47.5212328 ], + [ 7.6281604, 47.5212141 ], + [ 7.6282251, 47.5211902 ], + [ 7.6282867, 47.5211727 ], + [ 7.6286546, 47.5210725 ], + [ 7.628757, 47.5210391 ], + [ 7.6289146, 47.5209924 ], + [ 7.6290651, 47.5209596 ], + [ 7.6292334, 47.5209351 ], + [ 7.6294087, 47.5209224 ], + [ 7.6295634, 47.5209148 ], + [ 7.62971, 47.5209096 ], + [ 7.6298436, 47.5209121 ], + [ 7.6299616, 47.5209138 ], + [ 7.6301299, 47.5209318 ], + [ 7.6313958, 47.5211395 ], + [ 7.6314883, 47.5211523 ], + [ 7.6315375, 47.5211563 ], + [ 7.6315968, 47.5211611 ], + [ 7.6316387, 47.5211619 ], + [ 7.6317025, 47.5211587 ], + [ 7.6319814, 47.5210234 ], + [ 7.6319892, 47.520997 ], + [ 7.6320672, 47.5206958 ], + [ 7.6316595, 47.5204626 ], + [ 7.6312065, 47.5202717 ], + [ 7.629263, 47.5196574 ], + [ 7.6298384, 47.5193185 ], + [ 7.6301995, 47.5191656 ], + [ 7.630628, 47.5189784 ], + [ 7.630829, 47.5189035 ], + [ 7.630981, 47.5188568 ], + [ 7.6310338, 47.5188435 ], + [ 7.6311854, 47.518813 ], + [ 7.6316382, 47.5187443 ], + [ 7.6320201, 47.5187268 ], + [ 7.6321315, 47.5187193 ], + [ 7.632218, 47.5187119 ], + [ 7.6326811, 47.5186528 ], + [ 7.6328857, 47.5186307 ], + [ 7.6330606, 47.518607 ], + [ 7.6330919, 47.5186001 ], + [ 7.6335502, 47.5187996 ], + [ 7.6342466, 47.51899 ], + [ 7.6349746, 47.5191396 ], + [ 7.6349952, 47.519084 ], + [ 7.635009, 47.5190466 ], + [ 7.6350683, 47.5188865 ], + [ 7.6354704, 47.5186029 ], + [ 7.6368035, 47.5176735 ], + [ 7.6368319, 47.5176494 ], + [ 7.637029, 47.5175154 ], + [ 7.6372395, 47.5173015 ], + [ 7.6367782, 47.5170144 ], + [ 7.6366723, 47.5169485 ], + [ 7.6361702000000005, 47.5166348 ], + [ 7.6369219, 47.5162025 ], + [ 7.6375322, 47.5157244 ], + [ 7.6378252, 47.5157598 ], + [ 7.6385761, 47.5151761 ], + [ 7.6385686, 47.5149757 ], + [ 7.6385669, 47.5149573 ], + [ 7.6385623, 47.5149391 ], + [ 7.638555, 47.5149213 ], + [ 7.6385449, 47.5149041 ], + [ 7.6385237, 47.5148788 ], + [ 7.6385058, 47.5148631 ], + [ 7.6384856, 47.5148488 ], + [ 7.6384633, 47.5148359 ], + [ 7.638431, 47.5148234 ], + [ 7.6383421, 47.5147998 ], + [ 7.6383309, 47.5147982 ], + [ 7.6382622, 47.5147913 ], + [ 7.6381844999999995, 47.514789 ], + [ 7.638116, 47.5147836 ], + [ 7.6380487, 47.5147735 ], + [ 7.6379833, 47.5147586 ], + [ 7.6379398, 47.5147445 ], + [ 7.6378617, 47.5147138 ], + [ 7.6377887, 47.5146777 ], + [ 7.6377798, 47.5146736 ], + [ 7.6375793, 47.5145692 ], + [ 7.6375196, 47.5144873 ], + [ 7.6375083, 47.5144724 ], + [ 7.6374994, 47.5144567 ], + [ 7.6374929, 47.5144405 ], + [ 7.6374897, 47.5144279 ], + [ 7.6374877, 47.5144112 ], + [ 7.6374884, 47.5143944 ], + [ 7.6374916, 47.5143778 ], + [ 7.6374973, 47.5143614 ], + [ 7.6375055, 47.5143455 ], + [ 7.6375093, 47.5143396 ], + [ 7.6375136999999995, 47.5143307 ], + [ 7.6375195, 47.5143221 ], + [ 7.6375265, 47.514314 ], + [ 7.6375348, 47.5143064 ], + [ 7.6375440999999995, 47.5142995 ], + [ 7.6375546, 47.5142932 ], + [ 7.6375659, 47.5142877 ], + [ 7.6375361, 47.5142635 ], + [ 7.6372767, 47.514085 ], + [ 7.6372417, 47.5140492 ], + [ 7.6371986, 47.5139951 ], + [ 7.6371961, 47.5139904 ], + [ 7.6371472, 47.5139117 ], + [ 7.6370864, 47.5138369 ], + [ 7.6370144, 47.5137669 ], + [ 7.6369321, 47.5137023 ], + [ 7.6368402, 47.5136439 ], + [ 7.6364222, 47.5134099 ], + [ 7.6363449, 47.5133491 ], + [ 7.6360554, 47.513623 ], + [ 7.6355829, 47.5137804 ], + [ 7.6346186, 47.5142117 ], + [ 7.6342546, 47.5143562 ], + [ 7.6338329, 47.5146007 ], + [ 7.6335245, 47.5147325 ], + [ 7.6331479, 47.5148586 ], + [ 7.6327991, 47.5149428 ], + [ 7.6326372, 47.5149968 ], + [ 7.6321975, 47.515066 ], + [ 7.6319635, 47.515126 ], + [ 7.6317927999999995, 47.5152013 ], + [ 7.6315135, 47.5153589 ], + [ 7.6311948, 47.5157408 ], + [ 7.6307258000000004, 47.5161886 ], + [ 7.6304562, 47.5159888 ], + [ 7.6303915, 47.5159409 ], + [ 7.6303506, 47.5160091 ], + [ 7.6303447, 47.516068 ], + [ 7.6303871999999995, 47.5161242 ], + [ 7.6303961000000005, 47.5161267 ], + [ 7.6305, 47.516169 ], + [ 7.6305309, 47.5162234 ], + [ 7.6304996, 47.5163036 ], + [ 7.6304031, 47.5163095 ], + [ 7.630363, 47.5163282 ], + [ 7.6303491999999995, 47.516373 ], + [ 7.630348, 47.516395 ], + [ 7.6303833, 47.5164804 ], + [ 7.6304013, 47.5165153 ], + [ 7.6303974, 47.5165244 ], + [ 7.6303635, 47.5165808 ], + [ 7.6303735, 47.516666 ], + [ 7.6304466, 47.5167833 ], + [ 7.6304682, 47.5168261 ], + [ 7.6304638, 47.5168635 ], + [ 7.6304315, 47.5170099 ], + [ 7.6304645, 47.5171398 ], + [ 7.6305192, 47.5172752 ], + [ 7.6305686999999995, 47.5173249 ], + [ 7.6306068, 47.517415 ], + [ 7.6306037, 47.5174884 ], + [ 7.6306142999999995, 47.5175851 ], + [ 7.6306109, 47.5175937 ], + [ 7.6305751, 47.5176646 ], + [ 7.6305575999999995, 47.5177282 ], + [ 7.630539, 47.5177752 ], + [ 7.6304839, 47.5178165 ], + [ 7.6304839, 47.5178258 ], + [ 7.6304714, 47.5178687 ], + [ 7.6304883, 47.5179405 ], + [ 7.6304909, 47.5179714 ], + [ 7.6304957, 47.517998 ], + [ 7.6304644, 47.5180386 ], + [ 7.6304425, 47.51809 ], + [ 7.6304552, 47.518151 ], + [ 7.6304481, 47.5181866 ], + [ 7.6303843, 47.5182061 ], + [ 7.6302709, 47.5183024 ], + [ 7.6302107, 47.5183204 ], + [ 7.6302036, 47.5183328 ], + [ 7.630158, 47.5184135 ], + [ 7.6300988, 47.5184574 ], + [ 7.6300715, 47.5184827 ], + [ 7.6300653, 47.5185252 ], + [ 7.6301074, 47.5185622 ], + [ 7.6300973, 47.5186493 ], + [ 7.6300763, 47.5186766 ], + [ 7.6300598, 47.5186961 ], + [ 7.6300492, 47.5187767 ], + [ 7.6300109, 47.5188179 ], + [ 7.6300004999999995, 47.518857 ], + [ 7.6299969, 47.5188655 ], + [ 7.6299474, 47.5189097 ], + [ 7.6299406, 47.5189242 ], + [ 7.6298999, 47.5190041 ], + [ 7.6298509, 47.519069 ], + [ 7.629777, 47.5190745 ], + [ 7.6297353999999995, 47.5190913 ], + [ 7.6296658, 47.519161 ], + [ 7.6296529, 47.5191687 ], + [ 7.6295402, 47.5192248 ], + [ 7.6295125, 47.5192529 ], + [ 7.6294837, 47.5192798 ], + [ 7.6293682, 47.5193211 ], + [ 7.6293029, 47.5193719 ], + [ 7.6289169, 47.5195 ], + [ 7.6288450999999995, 47.519537 ], + [ 7.6288121, 47.5195806 ], + [ 7.6287663, 47.5196121 ], + [ 7.6286765, 47.5196108 ], + [ 7.6286239, 47.5195926 ], + [ 7.6285869, 47.5195949 ], + [ 7.6285282, 47.5196109 ], + [ 7.6285241, 47.5196132 ], + [ 7.628425, 47.5196748 ], + [ 7.6283281, 47.5196654 ], + [ 7.6282777, 47.5196559 ], + [ 7.6282486, 47.5196636 ], + [ 7.6282305, 47.5196668 ], + [ 7.6281877, 47.5197194 ], + [ 7.6281137999999995, 47.5197396 ], + [ 7.6280478, 47.519735 ], + [ 7.6279937, 47.5197199 ], + [ 7.6279284, 47.5196842 ], + [ 7.6278583, 47.5197035 ], + [ 7.6278483, 47.5198103 ], + [ 7.6278213, 47.5198295 ], + [ 7.6278189, 47.5198318 ], + [ 7.6277665, 47.5198415 ], + [ 7.6276271, 47.5198651 ], + [ 7.6275533, 47.5198605 ], + [ 7.6275335, 47.5198746 ], + [ 7.6274309, 47.5199424 ], + [ 7.6272532, 47.5199997 ], + [ 7.6271287999999995, 47.5199642 ], + [ 7.627091, 47.5199852 ], + [ 7.6270258, 47.5200327 ], + [ 7.6269884999999995, 47.5200425 ], + [ 7.6269294, 47.5200388 ], + [ 7.6268109, 47.5200554 ], + [ 7.6268001, 47.5200618 ], + [ 7.6267643, 47.5200723 ], + [ 7.6267177, 47.5200817 ], + [ 7.6267051, 47.5200811 ], + [ 7.6264561, 47.5200318 ], + [ 7.6264209, 47.5200842 ], + [ 7.6263646, 47.5200926 ], + [ 7.6263259, 47.5201025 ], + [ 7.6262273, 47.5200848 ], + [ 7.6260375, 47.5201109 ], + [ 7.6258112, 47.5201977 ], + [ 7.6257792, 47.5202364 ], + [ 7.6257166, 47.5202876 ], + [ 7.625648, 47.5202605 ], + [ 7.6256046, 47.5202423 ], + [ 7.6253078, 47.5202795 ], + [ 7.6252309, 47.5203378 ], + [ 7.6251729, 47.5203597 ], + [ 7.6251051, 47.5203865 ], + [ 7.6249455, 47.5204374 ], + [ 7.6247784, 47.5205064 ], + [ 7.6246861, 47.5205499 ], + [ 7.6245121000000005, 47.5206402 ], + [ 7.6244597, 47.5206674 ], + [ 7.6243757, 47.5207092 ], + [ 7.624269, 47.5207679 ], + [ 7.6242668, 47.5207983 ], + [ 7.6242592, 47.5208793 ], + [ 7.6239777, 47.5212097 ], + [ 7.6238604, 47.5213707 ], + [ 7.6238034, 47.5215268 ], + [ 7.6237764, 47.5216917 ], + [ 7.6237079, 47.5218482 ], + [ 7.6236098, 47.5220056 ], + [ 7.6234956, 47.5221571 ], + [ 7.6232586, 47.5224325 ], + [ 7.6235688, 47.5224604 ], + [ 7.6242678, 47.5224592 ], + [ 7.6247838, 47.522466 ], + [ 7.6254311999999995, 47.5223264 ], + [ 7.6259024, 47.5222405 ], + [ 7.6261517, 47.5226197 ], + [ 7.6264646, 47.5230158 ], + [ 7.6267501, 47.5233732 ], + [ 7.6272856, 47.523567 ], + [ 7.6278410999999995, 47.5235891 ] + ], + [ + [ 7.6313601, 47.5172954 ], + [ 7.6319655, 47.5175488 ], + [ 7.6316454, 47.5178546 ], + [ 7.6312695, 47.5179134 ], + [ 7.6311706, 47.5176078 ], + [ 7.6311731, 47.5174947 ], + [ 7.6312141, 47.5174014 ], + [ 7.6313601, 47.5172954 ] + ], + [ + [ 7.6268121, 47.5201788 ], + [ 7.6270138, 47.520593 ], + [ 7.6272193999999995, 47.5210026 ], + [ 7.6274179, 47.521338 ], + [ 7.6275386, 47.5214913 ], + [ 7.6272396, 47.5217761 ], + [ 7.6268514, 47.5220972 ], + [ 7.6264476, 47.521797 ], + [ 7.6259573, 47.5214608 ], + [ 7.6257256, 47.5211437 ], + [ 7.6252273, 47.520479 ], + [ 7.6258242, 47.5203783 ], + [ 7.6262481, 47.5202454 ], + [ 7.6264315, 47.5202099 ], + [ 7.6268121, 47.5201788 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns219", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Rütihard - Rothallen", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Rütihard - Rothallen", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Rütihard - Rothallen", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Rütihard - Rothallen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7461476, 47.4595084 ], + [ 7.7461261, 47.4595203 ], + [ 7.746045, 47.4595691 ], + [ 7.7460337, 47.4595763 ], + [ 7.7460231, 47.4595839 ], + [ 7.7460132, 47.459592 ], + [ 7.746004, 47.4596005 ], + [ 7.7459956, 47.4596093 ], + [ 7.745988, 47.4596184 ], + [ 7.7459812, 47.4596279 ], + [ 7.7459753, 47.4596376 ], + [ 7.7459702, 47.4596475 ], + [ 7.745966, 47.4596576 ], + [ 7.7459628, 47.4596679 ], + [ 7.7459603999999995, 47.4596783 ], + [ 7.745959, 47.4596887 ], + [ 7.7459585, 47.4596992 ], + [ 7.745959, 47.4597097 ], + [ 7.7459603, 47.4597202 ], + [ 7.7459626, 47.4597306 ], + [ 7.7459658000000005, 47.4597408 ], + [ 7.7460016, 47.4598338 ], + [ 7.746084, 47.4599384 ], + [ 7.7461971, 47.460052 ], + [ 7.7462249, 47.4600874 ], + [ 7.7463403, 47.460076 ], + [ 7.74638, 47.460056 ], + [ 7.746405, 47.4600245 ], + [ 7.7464281, 47.4599028 ], + [ 7.7464185, 47.459821 ], + [ 7.7464262, 47.4596676 ], + [ 7.746405, 47.4596228 ], + [ 7.7464252, 47.4595876 ], + [ 7.7464235, 47.4595487 ], + [ 7.7465314, 47.4594784 ], + [ 7.7466013, 47.4594413 ], + [ 7.7466574, 47.459426 ], + [ 7.7468072, 47.4594227 ], + [ 7.7468436, 47.4594287 ], + [ 7.7468966, 47.4594232 ], + [ 7.7469804, 47.4593711 ], + [ 7.7470825, 47.4593379 ], + [ 7.7471857, 47.4593345 ], + [ 7.7472442, 47.4592911 ], + [ 7.7472445, 47.4591438 ], + [ 7.7472522, 47.4591151 ], + [ 7.7471707, 47.4589789 ], + [ 7.7471533, 47.4589543 ], + [ 7.7471648, 47.458952 ], + [ 7.7471867, 47.4589484 ], + [ 7.7472089, 47.4589453 ], + [ 7.7472313, 47.4589429 ], + [ 7.7472537, 47.458941 ], + [ 7.7472763, 47.4589398 ], + [ 7.7472989, 47.4589392 ], + [ 7.7473215, 47.4589392 ], + [ 7.7473441, 47.4589398 ], + [ 7.7473667, 47.458941 ], + [ 7.7473890999999995, 47.4589429 ], + [ 7.7474115, 47.4589453 ], + [ 7.7474336, 47.4589484 ], + [ 7.7474556, 47.458952 ], + [ 7.7474834, 47.4589594 ], + [ 7.7475109, 47.4589672 ], + [ 7.7473396, 47.4587539 ], + [ 7.7471017, 47.4585846 ], + [ 7.7470285, 47.4586107 ], + [ 7.7469845, 47.4586137 ], + [ 7.7469225999999995, 47.4586296 ], + [ 7.74685, 47.4586168 ], + [ 7.7467699, 47.4585893 ], + [ 7.7466959, 47.4585552 ], + [ 7.7466503, 47.4585291 ], + [ 7.7466283, 47.4585474 ], + [ 7.7463186, 47.4587972 ], + [ 7.7460546, 47.4590038 ], + [ 7.7457071, 47.4592208 ], + [ 7.7455490000000005, 47.4593363 ], + [ 7.7454217, 47.4594625 ], + [ 7.7454499, 47.4594931 ], + [ 7.7455195, 47.4595291 ], + [ 7.7456233999999995, 47.4595267 ], + [ 7.7457177, 47.4595052 ], + [ 7.7457642, 47.4595037 ], + [ 7.7458243, 47.4594937 ], + [ 7.7459679, 47.4594811 ], + [ 7.7461476, 47.4595084 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns358", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Bad Bubendorf", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Bad Bubendorf", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Bad Bubendorf", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Bad Bubendorf", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.0416442, 46.1404634 ], + [ 6.040366, 46.1406238 ], + [ 6.0390917, 46.141193 ], + [ 6.0390715, 46.1412132 ], + [ 6.0390324, 46.1412307 ], + [ 6.0381684, 46.1420956 ], + [ 6.0378464, 46.1431245 ], + [ 6.0381153, 46.1441608 ], + [ 6.0387166, 46.1448111 ], + [ 6.0388542, 46.1453415 ], + [ 6.0389359, 46.1454299 ], + [ 6.0389685, 46.1455556 ], + [ 6.0397876, 46.1464414 ], + [ 6.0398655, 46.146479 ], + [ 6.039879, 46.1464936 ], + [ 6.0411234, 46.1470942 ], + [ 6.0423629, 46.1472815 ], + [ 6.0424877, 46.1477624 ], + [ 6.0433069, 46.1486482 ], + [ 6.0445514, 46.1492486 ], + [ 6.0460318, 46.1494724 ], + [ 6.0475227, 46.1492854 ], + [ 6.0487971, 46.148716 ], + [ 6.0494015, 46.1481108 ], + [ 6.0485217, 46.1471171 ], + [ 6.0475548, 46.1441279 ], + [ 6.0474365, 46.143771 ], + [ 6.0465414, 46.1436357 ], + [ 6.0465016, 46.1434823 ], + [ 6.0456825, 46.1425965 ], + [ 6.0456819, 46.1425962 ], + [ 6.0456817, 46.142596 ], + [ 6.0454933, 46.1425051 ], + [ 6.0454002, 46.1421468 ], + [ 6.0445812, 46.1412611 ], + [ 6.0436223, 46.1407983 ], + [ 6.0428242, 46.141238799999996 ], + [ 6.0424782, 46.1414111 ], + [ 6.042469, 46.1413886 ], + [ 6.0421567, 46.1409418 ], + [ 6.0420416, 46.1408031 ], + [ 6.0416442, 46.1404634 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-30", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.6857964, 47.0559317 ], + [ 8.6859096, 47.0558785 ], + [ 8.686054, 47.0557906 ], + [ 8.6861986, 47.055714 ], + [ 8.6864406, 47.0556125 ], + [ 8.686816199999999, 47.0555249 ], + [ 8.6870754, 47.0554232 ], + [ 8.6873989, 47.0552861 ], + [ 8.6877511, 47.0550806 ], + [ 8.6881208, 47.0548805 ], + [ 8.6885022, 47.0545842 ], + [ 8.6890324, 47.0542845 ], + [ 8.6899717, 47.0539189 ], + [ 8.6901639, 47.0538017 ], + [ 8.6902663, 47.0537149 ], + [ 8.6904078, 47.0535706 ], + [ 8.6905295, 47.053534 ], + [ 8.6907014, 47.0534963 ], + [ 8.6909884, 47.0534558 ], + [ 8.6912495, 47.0533991 ], + [ 8.6916021, 47.0533514 ], + [ 8.6921432, 47.0532713 ], + [ 8.6924719, 47.0532524 ], + [ 8.6926425, 47.0531978 ], + [ 8.6927291, 47.0530999 ], + [ 8.6927808, 47.0529916 ], + [ 8.6928093, 47.0529064 ], + [ 8.6928962, 47.0528255 ], + [ 8.6929845, 47.052767 ], + [ 8.6931605, 47.0526559 ], + [ 8.6933183, 47.0525113 ], + [ 8.6934341, 47.0523621 ], + [ 8.6935428, 47.0522244 ], + [ 8.6937171, 47.0520794 ], + [ 8.6939338, 47.051956 ], + [ 8.6941443, 47.0518779 ], + [ 8.6944132, 47.051804 ], + [ 8.6946678, 47.0517869 ], + [ 8.6948312, 47.051738 ], + [ 8.6949828, 47.0516443 ], + [ 8.6951012, 47.0515345 ], + [ 8.6952465, 47.0513112 ], + [ 8.6953056, 47.0511634 ], + [ 8.6953968, 47.0510203 ], + [ 8.6954496, 47.0509233 ], + [ 8.6955862, 47.0508525 ], + [ 8.695821, 47.0507625 ], + [ 8.6960552, 47.0506444 ], + [ 8.6962297, 47.0505106 ], + [ 8.6964206, 47.0503709 ], + [ 8.6965934, 47.0501978 ], + [ 8.6966664, 47.0500158 ], + [ 8.6967439, 47.0499181 ], + [ 8.6968621, 47.0498027 ], + [ 8.6970719, 47.0496964 ], + [ 8.6971919, 47.0496203 ], + [ 8.6972417, 47.0494669 ], + [ 8.6972769, 47.0493534 ], + [ 8.6973644, 47.0492951 ], + [ 8.6975428, 47.0492232 ], + [ 8.6977367, 47.0491399 ], + [ 8.6978714, 47.0490296 ], + [ 8.6979556, 47.0488981 ], + [ 8.6979909, 47.0487902 ], + [ 8.6980789, 47.0487205 ], + [ 8.6982701, 47.0485976 ], + [ 8.6986166, 47.0484261 ], + [ 8.6990287, 47.0482532 ], + [ 8.6994641, 47.0480513 ], + [ 8.6997725, 47.0479428 ], + [ 8.7001329, 47.0478781 ], + [ 8.7005363, 47.0478574 ], + [ 8.7008484, 47.0478389 ], + [ 8.7013157, 47.0477717 ], + [ 8.701948699999999, 47.0477176 ], + [ 8.7024896, 47.0476317 ], + [ 8.7026729, 47.0476613 ], + [ 8.7028154, 47.0477031 ], + [ 8.7029417, 47.0477566 ], + [ 8.7030746, 47.0477759 ], + [ 8.7031971, 47.0477393 ], + [ 8.7032843, 47.0476696 ], + [ 8.7033537, 47.0475779 ], + [ 8.703441, 47.0475138 ], + [ 8.7037021, 47.0474571 ], + [ 8.7040103, 47.0473428 ], + [ 8.7041959, 47.0472595 ], + [ 8.7043683, 47.0472442 ], + [ 8.704573, 47.0472057 ], + [ 8.7048079, 47.0471213 ], + [ 8.7049916, 47.046993 ], + [ 8.7050878, 47.0467823 ], + [ 8.7051797, 47.0466335 ], + [ 8.7053163, 47.0465627 ], + [ 8.7055202, 47.0465242 ], + [ 8.7057589, 47.0464961 ], + [ 8.7060493, 47.0465344 ], + [ 8.7062917, 47.0465907 ], + [ 8.7065474, 47.0465848 ], + [ 8.7062514, 47.0459661 ], + [ 8.7061204, 47.0459917 ], + [ 8.7060626, 47.0459818 ], + [ 8.7059694, 47.0459388 ], + [ 8.7057991, 47.0458301 ], + [ 8.7056048, 47.0457556 ], + [ 8.7053902, 47.0455859 ], + [ 8.705358499999999, 47.0454626 ], + [ 8.7054045, 47.0453883 ], + [ 8.7054655, 47.0452911 ], + [ 8.7053956, 47.0452194 ], + [ 8.7052638, 47.0452112 ], + [ 8.7049492, 47.045196 ], + [ 8.7047314, 47.0451334 ], + [ 8.7047109, 47.0450662 ], + [ 8.7047747, 47.0450197 ], + [ 8.7047715, 47.0449521 ], + [ 8.7046929, 47.0448637 ], + [ 8.7043635, 47.0445669 ], + [ 8.7042477, 47.0444007 ], + [ 8.7041332, 47.0442567 ], + [ 8.704077999999999, 47.0441453 ], + [ 8.7040898, 47.0440548 ], + [ 8.7040592, 47.0439428 ], + [ 8.703987399999999, 47.0438261 ], + [ 8.7039841, 47.0437585 ], + [ 8.703979799999999, 47.0436797 ], + [ 8.7039148, 47.0435403 ], + [ 8.7037939, 47.043436 ], + [ 8.7036482, 47.0433267 ], + [ 8.7035409, 47.0431713 ], + [ 8.7035345, 47.0430418 ], + [ 8.7035697, 47.0429283 ], + [ 8.7036882, 47.0428241 ], + [ 8.7036902, 47.0427001 ], + [ 8.703631099999999, 47.0423576 ], + [ 8.703494899999999, 47.041955 ], + [ 8.703383, 47.0415348 ], + [ 8.7032761, 47.0412217 ], + [ 8.7026206, 47.0398615 ], + [ 8.7030789, 47.0396255 ], + [ 8.7033825, 47.0394211 ], + [ 8.703531, 47.0392654 ], + [ 8.7036806, 47.0391211 ], + [ 8.7037975, 47.0389886 ], + [ 8.7039746, 47.0388943 ], + [ 8.7042502, 47.0387922 ], + [ 8.7044081, 47.0386533 ], + [ 8.704578099999999, 47.0384351 ], + [ 8.7047316, 47.0382117 ], + [ 8.7048859, 47.0379883 ], + [ 8.7050931, 47.0378481 ], + [ 8.7054029, 47.0377677 ], + [ 8.7057231, 47.0377434 ], + [ 8.7061356, 47.0377281 ], + [ 8.7064378, 47.037676 ], + [ 8.7066464, 47.0375584 ], + [ 8.7067126, 47.037399 ], + [ 8.7065836, 47.0373006 ], + [ 8.706449, 47.0372417 ], + [ 8.7061271, 47.0370913 ], + [ 8.7058452, 47.0370641 ], + [ 8.705547, 47.0370429 ], + [ 8.7052163, 47.0368645 ], + [ 8.7049749, 47.0366729 ], + [ 8.7047951, 47.0365474 ], + [ 8.704712, 47.0363746 ], + [ 8.7047139, 47.036245 ], + [ 8.704579, 47.0360339 ], + [ 8.7044452, 47.0358341 ], + [ 8.7043083, 47.0355779 ], + [ 8.7040613, 47.0351102 ], + [ 8.703873699999999, 47.0348271 ], + [ 8.7037416, 47.0346667 ], + [ 8.7035479, 47.034581 ], + [ 8.7033294, 47.0345185 ], + [ 8.7032354, 47.0344418 ], + [ 8.7033525, 47.034315 ], + [ 8.703558, 47.0341356 ], + [ 8.7037539, 47.0339337 ], + [ 8.7039396, 47.0338561 ], + [ 8.7040544, 47.0338421 ], + [ 8.7041103, 47.033807 ], + [ 8.7041398, 47.0337331 ], + [ 8.704147, 47.0335525 ], + [ 8.7041199, 47.0333446 ], + [ 8.7040126, 47.0331892 ], + [ 8.7038135, 47.033008 ], + [ 8.7035826, 47.0328442 ], + [ 8.703408, 47.0326565 ], + [ 8.7032268, 47.0325085 ], + [ 8.703104100000001, 47.0323592 ], + [ 8.7030708, 47.0322023 ], + [ 8.7030545, 47.0320335 ], + [ 8.7030457, 47.0318702 ], + [ 8.703013200000001, 47.0317132 ], + [ 8.7029702, 47.0315281 ], + [ 8.7029347, 47.0313148 ], + [ 8.7028075, 47.0310811 ], + [ 8.7026497, 47.0309099 ], + [ 8.7025419, 47.030732 ], + [ 8.7025312, 47.0305238 ], + [ 8.7024958, 47.0303104 ], + [ 8.7023704, 47.0301217 ], + [ 8.7022664, 47.0298592 ], + [ 8.7021214, 47.0296032 ], + [ 8.7018632, 47.0293951 ], + [ 8.7016149, 47.0292204 ], + [ 8.7013094, 47.0290641 ], + [ 8.7011328, 47.0290006 ], + [ 8.700792, 47.028952 ], + [ 8.700513, 47.0289755 ], + [ 8.7001524, 47.0290289 ], + [ 8.6998739, 47.0290748 ], + [ 8.6995897, 47.0291603 ], + [ 8.699403, 47.0292266 ], + [ 8.6991951, 47.0291977 ], + [ 8.6990362, 47.0291563 ], + [ 8.6988351, 47.0290989 ], + [ 8.6985466, 47.0289309 ], + [ 8.6984246, 47.0288154 ], + [ 8.6983364, 47.028699 ], + [ 8.6983635, 47.0285913 ], + [ 8.6984175, 47.0285111 ], + [ 8.6984812, 47.028459 ], + [ 8.6985878, 47.0284452 ], + [ 8.6986766, 47.0284093 ], + [ 8.6987312, 47.0283517 ], + [ 8.6988181, 47.0282707 ], + [ 8.6989311, 47.0282173 ], + [ 8.6990431, 47.0281529 ], + [ 8.6990877, 47.0280559 ], + [ 8.6990338, 47.027967 ], + [ 8.6988709, 47.027858 ], + [ 8.6987104, 47.0277829 ], + [ 8.6985482, 47.0276683 ], + [ 8.6983509, 47.027532 ], + [ 8.698213299999999, 47.0274167 ], + [ 8.6980994, 47.0272897 ], + [ 8.6980177, 47.0271394 ], + [ 8.6979036, 47.0270068 ], + [ 8.6977158, 47.0268871 ], + [ 8.697470299999999, 47.0267632 ], + [ 8.6972444, 47.0267009 ], + [ 8.6969944, 47.0266672 ], + [ 8.6967956, 47.0266379 ], + [ 8.696735499999999, 47.0265999 ], + [ 8.6967469, 47.0264925 ], + [ 8.6967506, 47.0264022 ], + [ 8.6968019, 47.026277 ], + [ 8.6967701, 47.0261482 ], + [ 8.6965885, 47.0259777 ], + [ 8.6963322, 47.0258145 ], + [ 8.6959969, 47.0255404 ], + [ 8.6958009, 47.0254209 ], + [ 8.6956621, 47.0252889 ], + [ 8.6954561, 47.0251302 ], + [ 8.6953369, 47.0250597 ], + [ 8.695133, 47.0249572 ], + [ 8.6949233, 47.0248832 ], + [ 8.6947493, 47.0248647 ], + [ 8.694622, 47.0248 ], + [ 8.6945109, 47.0247237 ], + [ 8.6943573, 47.0246258 ], + [ 8.6942476, 47.0245775 ], + [ 8.694168, 47.024478 ], + [ 8.6941056, 47.0243779 ], + [ 8.6940259, 47.0242727 ], + [ 8.6939234, 47.0242131 ], + [ 8.6937971, 47.0241596 ], + [ 8.6937106, 47.0240827 ], + [ 8.693598099999999, 47.0239839 ], + [ 8.6935785, 47.0239167 ], + [ 8.6935068, 47.0238056 ], + [ 8.6934025, 47.0237065 ], + [ 8.6932242, 47.0236036 ], + [ 8.6930283, 47.0234898 ], + [ 8.6927567, 47.0233383 ], + [ 8.692484, 47.0231754 ], + [ 8.6922794, 47.0230393 ], + [ 8.6921915, 47.0229341 ], + [ 8.6920115, 47.0227975 ], + [ 8.6917481, 47.0226458 ], + [ 8.6914856, 47.0225277 ], + [ 8.6913252, 47.0224582 ], + [ 8.6911516, 47.022451 ], + [ 8.6909297, 47.0224561 ], + [ 8.6907236, 47.0224665 ], + [ 8.6904502, 47.0224502 ], + [ 8.690253, 47.0224549 ], + [ 8.6901025, 47.0224188 ], + [ 8.6899914, 47.0223425 ], + [ 8.689954, 47.0222532 ], + [ 8.6898061, 47.0221157 ], + [ 8.6895476, 47.0220653 ], + [ 8.6893062, 47.0220089 ], + [ 8.6890885, 47.0219462 ], + [ 8.6887436, 47.0218246 ], + [ 8.6884394, 47.0216851 ], + [ 8.6881039, 47.0215745 ], + [ 8.6877751, 47.0214355 ], + [ 8.6874204, 47.0212802 ], + [ 8.6871175, 47.0211576 ], + [ 8.6866778, 47.0209535 ], + [ 8.6863507, 47.020854 ], + [ 8.6861198, 47.0208594 ], + [ 8.6859735, 47.0208965 ], + [ 8.685793499999999, 47.0209346 ], + [ 8.6856635, 47.0209657 ], + [ 8.6854917, 47.0210035 ], + [ 8.685326, 47.0209848 ], + [ 8.6851424, 47.0209383 ], + [ 8.6849221, 47.0208306 ], + [ 8.6847277, 47.0207449 ], + [ 8.684636, 47.0207245 ], + [ 8.6845623, 47.0207375 ], + [ 8.6845089, 47.0208121 ], + [ 8.6844957, 47.02088 ], + [ 8.684523800000001, 47.0209582 ], + [ 8.6844366, 47.0210278 ], + [ 8.6843464, 47.0210355 ], + [ 8.684271, 47.0210092 ], + [ 8.6841876, 47.0209941 ], + [ 8.6840464, 47.0209692 ], + [ 8.6838798, 47.0209448 ], + [ 8.6837222, 47.0209203 ], + [ 8.6835162, 47.0209364 ], + [ 8.6833848, 47.020945 ], + [ 8.6831966, 47.0209832 ], + [ 8.6830572, 47.0209976 ], + [ 8.6828934, 47.021024 ], + [ 8.6826961, 47.0210285 ], + [ 8.6825321, 47.0210437 ], + [ 8.6823467, 47.0211324 ], + [ 8.6821258, 47.0211826 ], + [ 8.6819456, 47.0212093 ], + [ 8.6816201, 47.0212845 ], + [ 8.6811302, 47.0213972 ], + [ 8.6806934, 47.0215651 ], + [ 8.6805734, 47.0216354 ], + [ 8.6805026, 47.0217048 ], + [ 8.6804064, 47.0217746 ], + [ 8.6802679, 47.0217948 ], + [ 8.6803132, 47.021726 ], + [ 8.6803096, 47.0216415 ], + [ 8.6801823, 47.0215768 ], + [ 8.6801005, 47.0215957 ], + [ 8.6800202, 47.0216426 ], + [ 8.6799151, 47.0216845 ], + [ 8.6797882, 47.0217776 ], + [ 8.6796683, 47.0218536 ], + [ 8.6794797, 47.0218749 ], + [ 8.6793142, 47.0218674 ], + [ 8.6791391, 47.021832 ], + [ 8.6790039, 47.0217788 ], + [ 8.6787843, 47.0216711 ], + [ 8.6784721, 47.0215373 ], + [ 8.6781518, 47.0214094 ], + [ 8.677934, 47.0213411 ], + [ 8.6777617, 47.0213565 ], + [ 8.6775258, 47.0214294 ], + [ 8.6772597, 47.0215483 ], + [ 8.6769733, 47.0217522 ], + [ 8.6767174, 47.0219216 ], + [ 8.6764167, 47.022182 ], + [ 8.6759833, 47.0224231 ], + [ 8.6758218, 47.0224832 ], + [ 8.6756038, 47.0225841 ], + [ 8.675428, 47.0226952 ], + [ 8.6752373, 47.0228405 ], + [ 8.6750663, 47.0228784 ], + [ 8.6749394, 47.0228305 ], + [ 8.6748949, 47.0227526 ], + [ 8.6749303, 47.0226503 ], + [ 8.675048199999999, 47.022518 ], + [ 8.6752722, 47.0223944 ], + [ 8.6753576, 47.0222798 ], + [ 8.6753595, 47.02215 ], + [ 8.675181, 47.0222162 ], + [ 8.6749642, 47.0223339 ], + [ 8.6745947, 47.022534 ], + [ 8.6741743, 47.0227016 ], + [ 8.6738296, 47.0229067 ], + [ 8.6736308, 47.0230578 ], + [ 8.6735085, 47.0232467 ], + [ 8.6733999, 47.0233843 ], + [ 8.6733513, 47.0235603 ], + [ 8.6733423, 47.023707 ], + [ 8.6733502, 47.0238702 ], + [ 8.6734235, 47.0240209 ], + [ 8.6735159, 47.0242103 ], + [ 8.6735826, 47.0243947 ], + [ 8.6735281, 47.024458 ], + [ 8.673446, 47.0244599 ], + [ 8.6733231, 47.0244796 ], + [ 8.6731891, 47.0244432 ], + [ 8.6731037, 47.0243777 ], + [ 8.6730161, 47.0242895 ], + [ 8.6722871, 47.0234043 ], + [ 8.672157, 47.0232889 ], + [ 8.6720483, 47.0232464 ], + [ 8.671941799999999, 47.0232658 ], + [ 8.6718371, 47.0233245 ], + [ 8.6717185, 47.0234231 ], + [ 8.6716003, 47.0235385 ], + [ 8.6714829, 47.0236539 ], + [ 8.6713402, 47.0237756 ], + [ 8.6711713, 47.0238696 ], + [ 8.6709362, 47.0239426 ], + [ 8.6706415, 47.0240001 ], + [ 8.6704084, 47.0241238 ], + [ 8.6702585, 47.0242569 ], + [ 8.6702328, 47.0243928 ], + [ 8.670179, 47.0244842 ], + [ 8.6700779, 47.0245936 ], + [ 8.6700227, 47.0246569 ], + [ 8.669894, 47.0247106 ], + [ 8.6697452, 47.024714 ], + [ 8.6696276, 47.0246772 ], + [ 8.6695097, 47.0246236 ], + [ 8.6693329, 47.0245544 ], + [ 8.6691402, 47.0245023 ], + [ 8.6688993, 47.0244685 ], + [ 8.6686355, 47.0244746 ], + [ 8.6684567, 47.0245293 ], + [ 8.6683459, 47.0246108 ], + [ 8.6682374, 47.0247542 ], + [ 8.6681945, 47.0248904 ], + [ 8.6681362, 47.0250384 ], + [ 8.6680359, 47.0251816 ], + [ 8.6679094, 47.0252972 ], + [ 8.667815300000001, 47.0253896 ], + [ 8.66778, 47.0254975 ], + [ 8.6677604, 47.0256106 ], + [ 8.6677418, 47.025735 ], + [ 8.6677477, 47.0258477 ], + [ 8.667739, 47.0260057 ], + [ 8.6676901, 47.0261702 ], + [ 8.6676337, 47.0263631 ], + [ 8.6675762, 47.0265449 ], + [ 8.6674866, 47.0267273 ], + [ 8.6673876, 47.026893 ], + [ 8.6673022, 47.027002 ], + [ 8.667174, 47.0270783 ], + [ 8.6670303, 47.0271605 ], + [ 8.6668271, 47.0272271 ], + [ 8.6666742, 47.0272983 ], + [ 8.6665779, 47.0273681 ], + [ 8.6665166, 47.027454 ], + [ 8.6664161, 47.0275916 ], + [ 8.6663045, 47.0276731 ], + [ 8.6661201, 47.0277732 ], + [ 8.6659098, 47.0278513 ], + [ 8.6656902, 47.0279239 ], + [ 8.6654388, 47.028003 ], + [ 8.6652081, 47.0280195 ], + [ 8.6649716, 47.0280701 ], + [ 8.6646401, 47.0282073 ], + [ 8.6644973, 47.0283289 ], + [ 8.6643787, 47.0284274 ], + [ 8.664278, 47.0285537 ], + [ 8.6641726, 47.0287647 ], + [ 8.6640967, 47.0288961 ], + [ 8.6639877, 47.0290225 ], + [ 8.6638626, 47.0291608 ], + [ 8.6636961, 47.0292885 ], + [ 8.6635202, 47.0293997 ], + [ 8.6632706, 47.0295237 ], + [ 8.6629979, 47.0296822 ], + [ 8.6627517, 47.029885 ], + [ 8.6624682, 47.0301453 ], + [ 8.6622414, 47.0304041 ], + [ 8.6620829, 47.0307008 ], + [ 8.6620752, 47.03087 ], + [ 8.6621087, 47.0310383 ], + [ 8.6621067, 47.0311681 ], + [ 8.6620473, 47.0313046 ], + [ 8.6619564, 47.0314646 ], + [ 8.6617849, 47.0316601 ], + [ 8.6616397, 47.0318946 ], + [ 8.6615818, 47.0320594 ], + [ 8.6616382, 47.0321877 ], + [ 8.6616605, 47.0322999 ], + [ 8.6617402, 47.0324052 ], + [ 8.6617681, 47.0324778 ], + [ 8.6616604, 47.0328016 ], + [ 8.661767, 47.0327878 ], + [ 8.6618927, 47.0328188 ], + [ 8.6619219, 47.0329083 ], + [ 8.6619101, 47.0330044 ], + [ 8.6618914, 47.0331232 ], + [ 8.6618523, 47.0333214 ], + [ 8.6618151, 47.0335646 ], + [ 8.661821, 47.0338576 ], + [ 8.6618638, 47.0340426 ], + [ 8.6619849, 47.0341582 ], + [ 8.6621479, 47.0342729 ], + [ 8.662303099999999, 47.0344102 ], + [ 8.6624531, 47.034604 ], + [ 8.6606778, 47.0357324 ], + [ 8.6614848, 47.0360297 ], + [ 8.6617191, 47.0360976 ], + [ 8.661946499999999, 47.0361882 ], + [ 8.6622426, 47.0363337 ], + [ 8.662469699999999, 47.0364129 ], + [ 8.6626999, 47.0365542 ], + [ 8.6628031, 47.0366421 ], + [ 8.6628567, 47.0367197 ], + [ 8.6628614, 47.0368211 ], + [ 8.6628424, 47.036923 ], + [ 8.6627815, 47.0370314 ], + [ 8.6627544, 47.0371391 ], + [ 8.6627511, 47.0372464 ], + [ 8.6627954, 47.037313 ], + [ 8.6628745, 47.0373958 ], + [ 8.6629956, 47.0375113 ], + [ 8.6631494, 47.0376206 ], + [ 8.6632697, 47.0377023 ], + [ 8.663432199999999, 47.0378282 ], + [ 8.66352, 47.0379277 ], + [ 8.6636585, 47.0380541 ], + [ 8.6637396, 47.038182 ], + [ 8.6638131, 47.0383381 ], + [ 8.6638668, 47.0384214 ], + [ 8.6639643, 47.0385489 ], + [ 8.6640701, 47.0386817 ], + [ 8.6641567, 47.0387643 ], + [ 8.6642722, 47.0389251 ], + [ 8.6643632, 47.0390921 ], + [ 8.6645217, 47.0392969 ], + [ 8.6647788, 47.0396405 ], + [ 8.6650264, 47.0399675 ], + [ 8.6652727, 47.0402719 ], + [ 8.6654899, 47.0404923 ], + [ 8.6657447, 47.0406274 ], + [ 8.6658696, 47.0406583 ], + [ 8.6660053, 47.0407284 ], + [ 8.6661163, 47.0407992 ], + [ 8.6661962, 47.0409157 ], + [ 8.6662593, 47.0410101 ], + [ 8.6663213, 47.0410988 ], + [ 8.6664158, 47.0411644 ], + [ 8.6665504, 47.0412233 ], + [ 8.6667106, 47.0412872 ], + [ 8.6668615, 47.0413402 ], + [ 8.6669983, 47.0414273 ], + [ 8.6670929, 47.0414983 ], + [ 8.6672389, 47.0416246 ], + [ 8.6673197, 47.0417411 ], + [ 8.667401, 47.0418802 ], + [ 8.6674906, 47.0420191 ], + [ 8.6675541, 47.0421359 ], + [ 8.667608, 47.0422249 ], + [ 8.6676537, 47.0423197 ], + [ 8.6677157, 47.0424028 ], + [ 8.6678539, 47.0425124 ], + [ 8.6679173, 47.0426236 ], + [ 8.6679566, 47.042758 ], + [ 8.6679721, 47.0428985 ], + [ 8.6679798, 47.0430505 ], + [ 8.6679969, 47.0432249 ], + [ 8.6680716, 47.0433979 ], + [ 8.6682104, 47.0435301 ], + [ 8.6683328, 47.0436682 ], + [ 8.6684711, 47.0437834 ], + [ 8.6685693, 47.0439389 ], + [ 8.6686941, 47.0441107 ], + [ 8.6688508, 47.0442706 ], + [ 8.669072, 47.0444121 ], + [ 8.669204, 47.0445725 ], + [ 8.6693019, 47.0447168 ], + [ 8.669410599999999, 47.0449004 ], + [ 8.6694988, 47.0450166 ], + [ 8.6696101, 47.0450987 ], + [ 8.6696718, 47.0451705 ], + [ 8.6699459, 47.0453616 ], + [ 8.6701312, 47.0454418 ], + [ 8.670206499999999, 47.0454626 ], + [ 8.6702967, 47.0454493 ], + [ 8.6704005, 47.0453849 ], + [ 8.670494099999999, 47.0452701 ], + [ 8.6706537, 47.0451649 ], + [ 8.6707438, 47.045146 ], + [ 8.6708686, 47.0451713 ], + [ 8.67097, 47.0452197 ], + [ 8.6710564, 47.045291 ], + [ 8.6711579, 47.0453394 ], + [ 8.6712999, 47.0453643 ], + [ 8.6713999, 47.0453846 ], + [ 8.6714671, 47.0454112 ], + [ 8.6716045, 47.0455207 ], + [ 8.6716924, 47.0456202 ], + [ 8.6718464, 47.045735 ], + [ 8.6719862, 47.0458785 ], + [ 8.6721223, 47.0459654 ], + [ 8.6721889, 47.045964 ], + [ 8.672327, 47.0459269 ], + [ 8.6725118, 47.0459847 ], + [ 8.6726848, 47.0461386 ], + [ 8.6729532, 47.0459012 ], + [ 8.6732712, 47.0459955 ], + [ 8.6734493, 47.0460816 ], + [ 8.6736384, 47.0462238 ], + [ 8.6737748, 47.0463221 ], + [ 8.6738362, 47.0463827 ], + [ 8.674025499999999, 47.0465305 ], + [ 8.6741207, 47.0466297 ], + [ 8.6741838, 47.0467241 ], + [ 8.6743337, 47.0469124 ], + [ 8.6744482, 47.047062 ], + [ 8.6745297, 47.0472066 ], + [ 8.674710900000001, 47.0473602 ], + [ 8.6749688, 47.0475572 ], + [ 8.6751406, 47.0476942 ], + [ 8.6752599, 47.0477648 ], + [ 8.67543, 47.0478679 ], + [ 8.6756506, 47.0479812 ], + [ 8.6758699, 47.0480719 ], + [ 8.6761125, 47.0481397 ], + [ 8.6763806, 47.0482068 ], + [ 8.6766328, 47.0483024 ], + [ 8.6767847, 47.0483609 ], + [ 8.6769044, 47.0484485 ], + [ 8.6770289, 47.0484624 ], + [ 8.677219000000001, 47.0484638 ], + [ 8.6773846, 47.0484769 ], + [ 8.6775683, 47.0485232 ], + [ 8.6777874, 47.0486084 ], + [ 8.6780247, 47.0487327 ], + [ 8.6782452, 47.0488404 ], + [ 8.6784741, 47.0489534 ], + [ 8.6786937, 47.0490611 ], + [ 8.67888, 47.049147 ], + [ 8.6790406, 47.0492279 ], + [ 8.6791748, 47.0492699 ], + [ 8.6793347, 47.0493169 ], + [ 8.6794333, 47.0493146 ], + [ 8.679564899999999, 47.0493116 ], + [ 8.6796629, 47.0492812 ], + [ 8.6797914, 47.0492161 ], + [ 8.6799931, 47.0491157 ], + [ 8.6801803, 47.0490663 ], + [ 8.680369, 47.0490451 ], + [ 8.6805438, 47.0490636 ], + [ 8.6807109, 47.0491048 ], + [ 8.6809057, 47.0492018 ], + [ 8.6810941, 47.049344 ], + [ 8.6812412, 47.0494815 ], + [ 8.6814526, 47.0497303 ], + [ 8.6816275, 47.0499291 ], + [ 8.6818049, 47.0501618 ], + [ 8.6820141, 47.0503881 ], + [ 8.6821053, 47.0505607 ], + [ 8.6821391, 47.0507403 ], + [ 8.6821873, 47.0508688 ], + [ 8.6822738, 47.0509457 ], + [ 8.6823931, 47.0510163 ], + [ 8.6825949, 47.0510962 ], + [ 8.6827631, 47.0511487 ], + [ 8.6830633, 47.0512151 ], + [ 8.6833303, 47.0512709 ], + [ 8.6835641, 47.0513162 ], + [ 8.6838626, 47.0513432 ], + [ 8.6840871, 47.0513774 ], + [ 8.6843799, 47.051444 ], + [ 8.6846408, 47.0515563 ], + [ 8.6849089, 47.0516234 ], + [ 8.685243, 47.0517003 ], + [ 8.6855334, 47.051733 ], + [ 8.6857078, 47.0519093 ], + [ 8.6857811, 47.0520543 ], + [ 8.6858805, 47.0522266 ], + [ 8.6859565, 47.0524166 ], + [ 8.6860297, 47.0525558 ], + [ 8.686052, 47.052668 ], + [ 8.6860306, 47.0527361 ], + [ 8.6859997, 47.0527876 ], + [ 8.6859299, 47.0528624 ], + [ 8.6858429, 47.0529434 ], + [ 8.6856397, 47.0530157 ], + [ 8.6855293, 47.0531141 ], + [ 8.6854925, 47.0531939 ], + [ 8.6855055, 47.0532949 ], + [ 8.6855677, 47.0533837 ], + [ 8.6856403, 47.0535004 ], + [ 8.685671, 47.0536181 ], + [ 8.6857101, 47.0537411 ], + [ 8.6857667, 47.0538752 ], + [ 8.6857991, 47.0540322 ], + [ 8.6858465, 47.0541608 ], + [ 8.6858471, 47.0543242 ], + [ 8.6858369, 47.0544541 ], + [ 8.6857952, 47.0546072 ], + [ 8.6857436, 47.0547212 ], + [ 8.6856566, 47.0548021 ], + [ 8.6855298, 47.0549008 ], + [ 8.6854182, 47.0549879 ], + [ 8.6852575, 47.0550818 ], + [ 8.6850553, 47.0551598 ], + [ 8.6849369, 47.0552696 ], + [ 8.68492, 47.0554278 ], + [ 8.6849275, 47.0555741 ], + [ 8.6849445, 47.0557373 ], + [ 8.685012799999999, 47.0559498 ], + [ 8.685137, 47.055947 ], + [ 8.6852851, 47.0559492 ], + [ 8.6854668, 47.055945 ], + [ 8.685649, 47.0559578 ], + [ 8.6857964, 47.0559317 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "JBG0026", + "country" : "CHE", + "name" : [ + { + "text" : "Eidgenössisches Jagdbanngebiet Mythen", + "lang" : "de-CH" + }, + { + "text" : "District franc fédéral Mythen", + "lang" : "fr-CH" + }, + { + "text" : "Bandita federale di caccia Mythen", + "lang" : "it-CH" + }, + { + "text" : "Federal Game Reserve Mythen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5532996, 47.4917393 ], + [ 7.5532255, 47.4917656 ], + [ 7.5532654, 47.4919015 ], + [ 7.553354, 47.4921586 ], + [ 7.5533734, 47.4922629 ], + [ 7.5538767, 47.4923891 ], + [ 7.5537234, 47.4922324 ], + [ 7.5535333, 47.4920236 ], + [ 7.5534075, 47.4918712 ], + [ 7.5533201, 47.4917647 ], + [ 7.5532996, 47.4917393 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns035", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Marbach", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Marbach", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Marbach", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Marbach", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.2000772, 46.3668604 ], + [ 6.2000751, 46.3667191 ], + [ 6.2000623, 46.3665781 ], + [ 6.2000389, 46.3664378 ], + [ 6.2000049, 46.3662985 ], + [ 6.1999604, 46.3661606 ], + [ 6.1999055, 46.3660245 ], + [ 6.1998404, 46.3658906 ], + [ 6.1997653, 46.3657592 ], + [ 6.1996804, 46.3656307 ], + [ 6.1995859, 46.3655055 ], + [ 6.199482, 46.3653839 ], + [ 6.1993691, 46.3652662 ], + [ 6.1992474, 46.3651528 ], + [ 6.1991173, 46.3650439 ], + [ 6.1989792, 46.3649399 ], + [ 6.1988334, 46.364841 ], + [ 6.1986803, 46.3647476 ], + [ 6.1985204, 46.3646598 ], + [ 6.198354, 46.3645779 ], + [ 6.1981817, 46.3645022 ], + [ 6.1980039, 46.3644328 ], + [ 6.1978212, 46.36437 ], + [ 6.1976339, 46.3643139 ], + [ 6.1974426, 46.3642646 ], + [ 6.1972478, 46.3642223 ], + [ 6.1970502, 46.3641872 ], + [ 6.1968501, 46.3641592 ], + [ 6.1966482, 46.3641386 ], + [ 6.196445, 46.3641253 ], + [ 6.1962411, 46.3641193 ], + [ 6.1960371, 46.3641208 ], + [ 6.1958334, 46.3641296 ], + [ 6.1956306, 46.3641459 ], + [ 6.1954294, 46.3641694 ], + [ 6.1952302, 46.3642002 ], + [ 6.1950336, 46.3642382 ], + [ 6.1948402, 46.3642832 ], + [ 6.1946504000000004, 46.3643352 ], + [ 6.1944649, 46.364394 ], + [ 6.194284, 46.3644594 ], + [ 6.1941083, 46.3645313 ], + [ 6.1939383, 46.3646095 ], + [ 6.1937744, 46.3646937 ], + [ 6.1936171, 46.3647838 ], + [ 6.1934669, 46.3648794 ], + [ 6.1933241, 46.3649803 ], + [ 6.1931891, 46.3650863 ], + [ 6.1930623, 46.365197 ], + [ 6.192944, 46.3653121 ], + [ 6.1928346, 46.3654314 ], + [ 6.1927344, 46.3655545 ], + [ 6.1926436, 46.365681 ], + [ 6.1925625, 46.3658107 ], + [ 6.1924913, 46.3659431 ], + [ 6.1924303, 46.3660779 ], + [ 6.1923795, 46.3662147 ], + [ 6.1923391, 46.3663532 ], + [ 6.1923092, 46.366493 ], + [ 6.19229, 46.3666337 ], + [ 6.1922814, 46.3667748 ], + [ 6.1922835, 46.3669161 ], + [ 6.1922963, 46.3670571 ], + [ 6.1923197, 46.3671975 ], + [ 6.1923537, 46.3673368 ], + [ 6.1923982, 46.3674747 ], + [ 6.192453, 46.3676108 ], + [ 6.1925181, 46.3677447 ], + [ 6.1925932, 46.367876 ], + [ 6.1926781, 46.3680045 ], + [ 6.1927726, 46.3681297 ], + [ 6.1928765, 46.3682514 ], + [ 6.1929894, 46.3683691 ], + [ 6.1931111, 46.3684825 ], + [ 6.1932411, 46.3685914 ], + [ 6.1933793, 46.3686954 ], + [ 6.1935251, 46.3687943 ], + [ 6.1936781, 46.3688877 ], + [ 6.1938381, 46.3689755 ], + [ 6.1940044, 46.3690574 ], + [ 6.1941767, 46.3691331 ], + [ 6.1943545, 46.3692025 ], + [ 6.1945373, 46.3692653 ], + [ 6.1947246, 46.3693215 ], + [ 6.1949159, 46.3693707 ], + [ 6.1951107, 46.369413 ], + [ 6.1953084, 46.3694482 ], + [ 6.1955085, 46.3694761 ], + [ 6.1957104, 46.3694968 ], + [ 6.1959136, 46.3695101 ], + [ 6.1961175, 46.369516 ], + [ 6.1963216, 46.3695146 ], + [ 6.1965253, 46.3695057 ], + [ 6.196728, 46.3694895 ], + [ 6.1969293, 46.369466 ], + [ 6.1971285, 46.3694352 ], + [ 6.1973251, 46.3693972 ], + [ 6.1975186, 46.3693521 ], + [ 6.1977083, 46.3693002 ], + [ 6.1978939, 46.3692413 ], + [ 6.1980748, 46.3691759 ], + [ 6.1982505, 46.369104 ], + [ 6.1984205, 46.3690258 ], + [ 6.1985844, 46.3689416 ], + [ 6.1987417, 46.3688516 ], + [ 6.1988919, 46.3687559 ], + [ 6.1990348, 46.368655 ], + [ 6.1991698, 46.368549 ], + [ 6.1992966, 46.3684383 ], + [ 6.1994148, 46.3683232 ], + [ 6.1995242, 46.3682039 ], + [ 6.1996244, 46.3680808 ], + [ 6.1997152, 46.3679542 ], + [ 6.1997963, 46.3678246 ], + [ 6.1998674, 46.3676922 ], + [ 6.1999285, 46.3675573 ], + [ 6.1999792, 46.3674205 ], + [ 6.2000196, 46.367282 ], + [ 6.2000495, 46.3671422 ], + [ 6.2000687, 46.3670016 ], + [ 6.2000772, 46.3668604 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0029", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Crans", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Crans", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Crans", + "lang" : "it-CH" + }, + { + "text" : "Substation Crans", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8754134, 46.6698598 ], + [ 7.8741362, 46.6707778 ], + [ 7.8709867, 46.670788 ], + [ 7.8709848000000004, 46.6710381 ], + [ 7.8753052, 46.671027 ], + [ 7.8777477, 46.6732593 ], + [ 7.8780628, 46.673116 ], + [ 7.875823, 46.6710583 ], + [ 7.8774443, 46.669879 ], + [ 7.8763648, 46.6692274 ], + [ 7.8754134, 46.6698598 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSXI002", + "country" : "CHE", + "name" : [ + { + "text" : "LSXI Interlaken (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSXI Interlaken (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSXI Interlaken (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSXI Interlaken (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "REGA", + "lang" : "de-CH" + }, + { + "text" : "REGA", + "lang" : "fr-CH" + }, + { + "text" : "REGA", + "lang" : "it-CH" + }, + { + "text" : "REGA", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Leitung Einsatzbasis Wilderswil", + "lang" : "de-CH" + }, + { + "text" : "Leitung Einsatzbasis Wilderswil", + "lang" : "fr-CH" + }, + { + "text" : "Leitung Einsatzbasis Wilderswil", + "lang" : "it-CH" + }, + { + "text" : "Leitung Einsatzbasis Wilderswil", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.rega.ch/en/our-missions/locations-and-infrastructure/rega-10-wilderswil-base/lsxi-interlaken-authorization-for-drone-pilot", + "email" : "ebbo@rega.ch", + "phone" : "0041338289030", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P01DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6668959999999995, 46.4128268 ], + [ 7.6669845, 46.4129998 ], + [ 7.6671606, 46.4131259 ], + [ 7.6674081, 46.4132167 ], + [ 7.6676719, 46.413296 ], + [ 7.6679192, 46.4133586 ], + [ 7.6681152, 46.4133828 ], + [ 7.6683031, 46.4133959 ], + [ 7.6685145, 46.4134029 ], + [ 7.6686707, 46.4134335 ], + [ 7.6689597, 46.4135405 ], + [ 7.6692008, 46.413654 ], + [ 7.6694563, 46.4137276 ], + [ 7.6696541, 46.4137913 ], + [ 7.6699016, 46.4138822 ], + [ 7.670085, 46.4139856 ], + [ 7.6703695, 46.4141771 ], + [ 7.6705528, 46.4142692 ], + [ 7.6706612, 46.4143404 ], + [ 7.6708915, 46.4144033 ], + [ 7.6711634, 46.414488 ], + [ 7.671493, 46.4145829 ], + [ 7.6718478999999995, 46.4146884 ], + [ 7.672071, 46.4147741 ], + [ 7.6723446, 46.4148926 ], + [ 7.6724522, 46.4149468 ], + [ 7.6728152, 46.4150577 ], + [ 7.6730708, 46.4151428 ], + [ 7.6732939, 46.4152284 ], + [ 7.6736091, 46.4153742 ], + [ 7.6739388, 46.4154747 ], + [ 7.6741673, 46.4154869 ], + [ 7.6743136, 46.4154839 ], + [ 7.6745846, 46.4155462 ], + [ 7.6747498, 46.4156047 ], + [ 7.6749467, 46.4156233 ], + [ 7.6750416, 46.4157624 ], + [ 7.6750615, 46.4158578 ], + [ 7.675365, 46.4161054 ], + [ 7.6757009, 46.4161605 ], + [ 7.6760017, 46.4163517 ], + [ 7.676252, 46.4165045 ], + [ 7.6764606, 46.4166355 ], + [ 7.6766801000000005, 46.4166255 ], + [ 7.6768445, 46.4166615 ], + [ 7.6769782, 46.4167491 ], + [ 7.6771624, 46.4168693 ], + [ 7.6773702, 46.4169722 ], + [ 7.6775364, 46.4170534 ], + [ 7.6776628, 46.4171636 ], + [ 7.6778309, 46.4172899 ], + [ 7.6779311, 46.4173498 ], + [ 7.6780459, 46.4173813 ], + [ 7.6782112, 46.41744 ], + [ 7.6783205, 46.4175223 ], + [ 7.6783973, 46.417611 ], + [ 7.67853, 46.417659 ], + [ 7.6786636999999995, 46.4177577 ], + [ 7.6788471, 46.4178556 ], + [ 7.6790964, 46.4179858 ], + [ 7.6793285000000004, 46.4180713 ], + [ 7.6795272, 46.4181573 ], + [ 7.6797161, 46.4182099 ], + [ 7.6799148, 46.4182904 ], + [ 7.6800395, 46.4183555 ], + [ 7.68023, 46.4184306 ], + [ 7.6804043, 46.4185004 ], + [ 7.6806528, 46.4186137 ], + [ 7.6807774, 46.4186788 ], + [ 7.6808803999999995, 46.418812 ], + [ 7.6809924, 46.4189507 ], + [ 7.6810602, 46.4190226 ], + [ 7.6811587, 46.4190375 ], + [ 7.6812815, 46.4190575 ], + [ 7.6814034, 46.4190494 ], + [ 7.6815254, 46.4190526 ], + [ 7.6817277, 46.4192176 ], + [ 7.681875, 46.4192484 ], + [ 7.681968, 46.4193199 ], + [ 7.6820846, 46.4193907 ], + [ 7.682193, 46.4194505 ], + [ 7.6822924, 46.4194936 ], + [ 7.6824098, 46.4195813 ], + [ 7.6826356, 46.4197121 ], + [ 7.6828921999999995, 46.4198197 ], + [ 7.6830891, 46.4198663 ], + [ 7.6832535, 46.4199081 ], + [ 7.6833448, 46.4199514 ], + [ 7.6834477, 46.4200677 ], + [ 7.6835652, 46.4201554 ], + [ 7.6837142, 46.4202144 ], + [ 7.6838741, 46.4203408 ], + [ 7.6841145, 46.4204487 ], + [ 7.6843606, 46.4205855 ], + [ 7.6845644, 46.4207101 ], + [ 7.6847071, 46.4208086 ], + [ 7.6849248, 46.4209508 ], + [ 7.6851823, 46.4210808 ], + [ 7.6853738, 46.4211728 ], + [ 7.6855391, 46.4212427 ], + [ 7.6857793999999995, 46.4213449 ], + [ 7.6860025, 46.4214193 ], + [ 7.6861264, 46.4214732 ], + [ 7.6862854, 46.421577 ], + [ 7.6864362, 46.4216698 ], + [ 7.6866006, 46.4217115 ], + [ 7.6868625, 46.4217457 ], + [ 7.6871092, 46.4218139 ], + [ 7.687251, 46.4218956 ], + [ 7.6874254, 46.421971 ], + [ 7.6875257, 46.4220478 ], + [ 7.6876413, 46.4220849 ], + [ 7.6877895, 46.4221214 ], + [ 7.6879873, 46.4221793 ], + [ 7.6881842, 46.4222147 ], + [ 7.6883414, 46.4222736 ], + [ 7.6887155, 46.4226662 ], + [ 7.6888791, 46.4228714 ], + [ 7.6890771, 46.4231381 ], + [ 7.68919, 46.4233106 ], + [ 7.6891937, 46.423395 ], + [ 7.6891721, 46.42348 ], + [ 7.6891847, 46.4235757 ], + [ 7.6891964999999995, 46.4236656 ], + [ 7.689249, 46.4237491 ], + [ 7.6893159, 46.4238041 ], + [ 7.6894234, 46.4238526 ], + [ 7.68954, 46.4239122 ], + [ 7.6896014, 46.4240181 ], + [ 7.6896557, 46.4241523 ], + [ 7.6897731, 46.4242232 ], + [ 7.6899051, 46.4242769 ], + [ 7.6900397, 46.4243757 ], + [ 7.6901326999999995, 46.4244526 ], + [ 7.6902224, 46.4246798 ], + [ 7.6910047, 46.4248843 ], + [ 7.6912897000000005, 46.4246318 ], + [ 7.6917188, 46.4245859 ], + [ 7.6921741, 46.4245848 ], + [ 7.692721, 46.4247006 ], + [ 7.6929815999999995, 46.4248079 ], + [ 7.6936719, 46.4249863 ], + [ 7.6936053, 46.4246536 ], + [ 7.6939548, 46.424266 ], + [ 7.6940577, 46.4240229 ], + [ 7.6942771, 46.4236625 ], + [ 7.6947303, 46.4232117 ], + [ 7.6963505, 46.4219667 ], + [ 7.696867, 46.4211559 ], + [ 7.69723, 46.4208852 ], + [ 7.6973588, 46.420615 ], + [ 7.6979415, 46.4200559 ], + [ 7.6982653, 46.4197583 ], + [ 7.6987838, 46.4193793 ], + [ 7.6988746, 46.4193341 ], + [ 7.6991076, 46.4190817 ], + [ 7.7008861, 46.4183579 ], + [ 7.7011454, 46.4181774 ], + [ 7.7023533, 46.4177968 ], + [ 7.7027681999999995, 46.417526 ], + [ 7.7043254, 46.4167757 ], + [ 7.7048176, 46.4163517 ], + [ 7.705076, 46.4159913 ], + [ 7.705087, 46.4159049 ], + [ 7.7050837, 46.4157229 ], + [ 7.7047672, 46.4141734 ], + [ 7.7046367, 46.4135785 ], + [ 7.704614, 46.4134211 ], + [ 7.7046562, 46.4132511 ], + [ 7.7046977, 46.4130754 ], + [ 7.7047182, 46.4127875 ], + [ 7.7047270999999995, 46.4126181 ], + [ 7.7048335, 46.4124356 ], + [ 7.7047611, 46.412251 ], + [ 7.704817, 46.4120356 ], + [ 7.7049422, 46.4117229 ], + [ 7.7051009, 46.4114208 ], + [ 7.7052361, 46.4111475 ], + [ 7.7054626, 46.4109061 ], + [ 7.7056431, 46.4107613 ], + [ 7.7058471, 46.4107571 ], + [ 7.7060765, 46.4107975 ], + [ 7.7063241, 46.4108827 ], + [ 7.7071102, 46.4104154 ], + [ 7.7072229, 46.4101876 ], + [ 7.7072949, 46.4099605 ], + [ 7.7073967, 46.4096709 ], + [ 7.7077945, 46.4090595 ], + [ 7.7076317, 46.4088486 ], + [ 7.70746, 46.4086435 ], + [ 7.7073054, 46.4084494 ], + [ 7.7071363999999996, 46.4083006 ], + [ 7.7070008, 46.4081569 ], + [ 7.7068228, 46.4080027 ], + [ 7.7067504, 46.4078126 ], + [ 7.7066789, 46.4076561 ], + [ 7.706546, 46.4073995 ], + [ 7.7064871, 46.4071696 ], + [ 7.7064354, 46.4068887 ], + [ 7.706344, 46.4066594 ], + [ 7.7061931, 46.4065442 ], + [ 7.7060088, 46.4064183 ], + [ 7.7057341, 46.4062661 ], + [ 7.7053855, 46.4061098 ], + [ 7.7053303, 46.4059643 ], + [ 7.7053058, 46.4057618 ], + [ 7.7052577, 46.4055712 ], + [ 7.7052007, 46.4053919 ], + [ 7.7050931, 46.4051461 ], + [ 7.7049511, 46.404867 ], + [ 7.7048262, 46.4045878 ], + [ 7.7046536, 46.4043602 ], + [ 7.7043528, 46.404169 ], + [ 7.7040267, 46.4039615 ], + [ 7.7037511, 46.4037868 ], + [ 7.7034503, 46.4036013 ], + [ 7.7031794, 46.4035449 ], + [ 7.7030754, 46.4033835 ], + [ 7.7029244, 46.4030878 ], + [ 7.7028014, 46.4028591 ], + [ 7.7026369, 46.4026201 ], + [ 7.7024824, 46.4024316 ], + [ 7.7022881, 46.4022496 ], + [ 7.7020432, 46.4020347 ], + [ 7.7017731, 46.4018035 ], + [ 7.7015518, 46.4015825 ], + [ 7.7013404, 46.4013839 ], + [ 7.7011415, 46.4010891 ], + [ 7.7009507, 46.4008055 ], + [ 7.7007348, 46.4005169 ], + [ 7.7005306000000004, 46.4003068 ], + [ 7.7002217, 46.4001102 ], + [ 7.6998693, 46.3998469 ], + [ 7.6996317, 46.3996093 ], + [ 7.6993363, 46.3993504 ], + [ 7.6990463, 46.3990462 ], + [ 7.6987942, 46.3988428 ], + [ 7.6986054, 46.3985987 ], + [ 7.698421, 46.3982754 ], + [ 7.6979348, 46.3975469 ], + [ 7.6976863, 46.3972306 ], + [ 7.6974098, 46.3968472 ], + [ 7.697183, 46.3964854 ], + [ 7.6969317, 46.3961128 ], + [ 7.6966679, 46.3958251 ], + [ 7.6964331, 46.3956608 ], + [ 7.6960673, 46.395471 ], + [ 7.6955345, 46.3951775 ], + [ 7.69511, 46.3949381 ], + [ 7.6948761, 46.3947963 ], + [ 7.6948851, 46.3946326 ], + [ 7.6947279, 46.3945569 ], + [ 7.6945265, 46.3944032 ], + [ 7.694382, 46.3942595 ], + [ 7.6941733, 46.3941342 ], + [ 7.693916, 46.3940041 ], + [ 7.6937724, 46.3938887 ], + [ 7.6935466, 46.3937411 ], + [ 7.6934002, 46.3935355 ], + [ 7.6932828, 46.3934476 ], + [ 7.6930923, 46.3933783 ], + [ 7.6928864, 46.3933149 ], + [ 7.6926571, 46.3932745 ], + [ 7.6923456, 46.3932188 ], + [ 7.6921461, 46.393127 ], + [ 7.6919637, 46.3930406 ], + [ 7.6917226, 46.3929046 ], + [ 7.6915302, 46.3927845 ], + [ 7.6912963, 46.3926314 ], + [ 7.6910967, 46.3925227 ], + [ 7.6908972, 46.3924253 ], + [ 7.6906977, 46.3923336 ], + [ 7.6905098, 46.392298 ], + [ 7.6904079, 46.3922098 ], + [ 7.6903527, 46.3920531 ], + [ 7.6902632, 46.391852 ], + [ 7.6901087, 46.3916578 ], + [ 7.6899408000000005, 46.3915372 ], + [ 7.6896591, 46.391413299999996 ], + [ 7.6892564, 46.3913087 ], + [ 7.6889856, 46.3912579 ], + [ 7.6891118, 46.3911483 ], + [ 7.6892472, 46.3910778 ], + [ 7.6894548, 46.3909891 ], + [ 7.6897184, 46.3908765 ], + [ 7.6898429, 46.3907386 ], + [ 7.6899104, 46.3905851 ], + [ 7.6898625, 46.3904113 ], + [ 7.6896936, 46.3902624 ], + [ 7.6894444, 46.3901491 ], + [ 7.689318, 46.3900391 ], + [ 7.6893134, 46.3899151 ], + [ 7.6893982, 46.3898119 ], + [ 7.6895174, 46.3897474 ], + [ 7.6896102, 46.3896215 ], + [ 7.6896788, 46.3895186 ], + [ 7.689842, 46.3893236 ], + [ 7.6899403, 46.3891356 ], + [ 7.6901984, 46.3888878 ], + [ 7.6905665, 46.3885477 ], + [ 7.6909697999999995, 46.3882575 ], + [ 7.6913162, 46.3879742 ], + [ 7.6916673, 46.3878147 ], + [ 7.6920969, 46.3877665 ], + [ 7.6928683, 46.3871418 ], + [ 7.6924009, 46.3872584 ], + [ 7.692213, 46.3872285 ], + [ 7.6920064, 46.3871651 ], + [ 7.6916949, 46.3871095 ], + [ 7.6914069, 46.3870308 ], + [ 7.6910692, 46.3869137 ], + [ 7.690662, 46.3867078 ], + [ 7.6902801, 46.3865182 ], + [ 7.6900626, 46.3863874 ], + [ 7.6898124, 46.3862346 ], + [ 7.6895533, 46.3860652 ], + [ 7.6893429, 46.385889 ], + [ 7.6892399000000005, 46.3857671 ], + [ 7.6891767, 46.3856162 ], + [ 7.6891034, 46.3854035 ], + [ 7.6890646, 46.3852633 ], + [ 7.6888795, 46.3851205 ], + [ 7.6886374, 46.3849563 ], + [ 7.6884361, 46.3848083 ], + [ 7.6883747, 46.3847081 ], + [ 7.6883854, 46.3845612 ], + [ 7.6884368, 46.384441699999996 ], + [ 7.6885034999999995, 46.3842712 ], + [ 7.6885612, 46.3840953 ], + [ 7.6885791999999995, 46.3839371 ], + [ 7.6884763, 46.3838208 ], + [ 7.6882757999999995, 46.3836839 ], + [ 7.6881747, 46.3836071 ], + [ 7.6881629, 46.3835116 ], + [ 7.6882231999999995, 46.3833918 ], + [ 7.6883297, 46.3832205 ], + [ 7.6884623, 46.3830769 ], + [ 7.6885056, 46.3829463 ], + [ 7.6884585, 46.3827782 ], + [ 7.6883302, 46.3824369 ], + [ 7.6881875, 46.3821353 ], + [ 7.6880547, 46.3818788 ], + [ 7.6881475, 46.3817584 ], + [ 7.6882332, 46.3816608 ], + [ 7.6882946, 46.3815807 ], + [ 7.6882981, 46.3814678 ], + [ 7.6882204, 46.3813511 ], + [ 7.6880777, 46.3812355 ], + [ 7.6878439, 46.3810994 ], + [ 7.6876092, 46.3809238 ], + [ 7.6875234, 46.3808241 ], + [ 7.6874935, 46.3806894 ], + [ 7.6875115, 46.3805368 ], + [ 7.6875692, 46.3803496 ], + [ 7.6875628, 46.3801974 ], + [ 7.6874679, 46.3800641 ], + [ 7.6873018, 46.3799717 ], + [ 7.6870707, 46.3798918 ], + [ 7.6867386, 46.3797407 ], + [ 7.6863747, 46.3795846 ], + [ 7.6860416, 46.3793998 ], + [ 7.685611, 46.3792169 ], + [ 7.6853466, 46.3791152 ], + [ 7.6853519, 46.3790418 ], + [ 7.6853231, 46.3789466 ], + [ 7.6852381, 46.3788468 ], + [ 7.6849989999999995, 46.3787783 ], + [ 7.6847182, 46.3786658 ], + [ 7.6844393, 46.3786095 ], + [ 7.6842922, 46.3786067 ], + [ 7.6841216, 46.3785933 ], + [ 7.6839492, 46.378563 ], + [ 7.6837434, 46.3784996 ], + [ 7.6833734, 46.3784113 ], + [ 7.6828769, 46.3782016 ], + [ 7.6826702000000004, 46.3781212 ], + [ 7.6824075, 46.3780589 ], + [ 7.6821114999999995, 46.3779747 ], + [ 7.6818886, 46.377906 ], + [ 7.6816666, 46.3778486 ], + [ 7.6813967, 46.3778089 ], + [ 7.6812469, 46.3777331 ], + [ 7.6811096, 46.3777472 ], + [ 7.6808218, 46.3776797 ], + [ 7.6806006, 46.377639 ], + [ 7.6803064, 46.3776 ], + [ 7.6801512, 46.3775919 ], + [ 7.6798263, 46.3775985 ], + [ 7.6795799, 46.3775358 ], + [ 7.6793496999999995, 46.3774729 ], + [ 7.6791521, 46.3774262 ], + [ 7.6789247, 46.3774308 ], + [ 7.6786241, 46.3774425 ], + [ 7.6784183, 46.3773735 ], + [ 7.6782378, 46.3773433 ], + [ 7.677968, 46.377315 ], + [ 7.677644, 46.3773385 ], + [ 7.6773986, 46.3773152 ], + [ 7.677089, 46.3772934 ], + [ 7.6767388, 46.3772892 ], + [ 7.6762993, 46.3772757 ], + [ 7.6759897, 46.3772651 ], + [ 7.6756784, 46.3772206 ], + [ 7.6753282, 46.3771996 ], + [ 7.6748625, 46.377147 ], + [ 7.6745295, 46.3771707 ], + [ 7.6741884, 46.3771776 ], + [ 7.6739032, 46.3771722 ], + [ 7.6735684, 46.3771282 ], + [ 7.6733247, 46.3771332 ], + [ 7.6729259, 46.3771413 ], + [ 7.6726235, 46.3771079 ], + [ 7.6723040000000005, 46.3770525 ], + [ 7.6720828999999995, 46.3770005 ], + [ 7.6718347, 46.3768984 ], + [ 7.6716352, 46.3767954 ], + [ 7.6714511, 46.3766695 ], + [ 7.6712796, 46.3764644 ], + [ 7.6712001, 46.3763025 ], + [ 7.6710647, 46.3761643 ], + [ 7.6709492, 46.3761328 ], + [ 7.6707308, 46.3761542 ], + [ 7.6704068, 46.3762003 ], + [ 7.670045, 46.3762977 ], + [ 7.6696732, 46.3763673 ], + [ 7.6692851, 46.3764203 ], + [ 7.6687464, 46.3765722 ], + [ 7.6682654, 46.3767341 ], + [ 7.66788, 46.3768603 ], + [ 7.6674289, 46.3769766 ], + [ 7.6672565, 46.3769407 ], + [ 7.6670697, 46.37695 ], + [ 7.6668675, 46.3769655 ], + [ 7.6666663, 46.3770259 ], + [ 7.6664876, 46.3770295 ], + [ 7.6663008, 46.3770389 ], + [ 7.6660571, 46.3770326 ], + [ 7.6658297, 46.3770484 ], + [ 7.6655527, 46.3770484 ], + [ 7.6652034, 46.3770555 ], + [ 7.6642495, 46.3770071 ], + [ 7.663727, 46.3769557 ], + [ 7.6633686999999995, 46.3769404 ], + [ 7.6631169, 46.3769456 ], + [ 7.6629634, 46.3769656 ], + [ 7.6627225, 46.3770436 ], + [ 7.6625609, 46.3770751 ], + [ 7.6623415999999995, 46.3770853 ], + [ 7.6620421, 46.3771307 ], + [ 7.6618887, 46.3771565 ], + [ 7.6617902, 46.3771246 ], + [ 7.6615438000000005, 46.3770674 ], + [ 7.6613625, 46.3770148 ], + [ 7.6610358, 46.376982 ], + [ 7.6607109, 46.3769942 ], + [ 7.6603598999999996, 46.3769675 ], + [ 7.6599438, 46.3769364 ], + [ 7.659609, 46.3768981 ], + [ 7.6590865, 46.3768522 ], + [ 7.6583347, 46.3767547 ], + [ 7.6579574, 46.3768806 ], + [ 7.657703, 46.3770324 ], + [ 7.6574086999999995, 46.3771961 ], + [ 7.6570667, 46.3773891 ], + [ 7.6566551, 46.3776624 ], + [ 7.6562607, 46.3779692 ], + [ 7.6559205, 46.3782071 ], + [ 7.6555405, 46.3784629 ], + [ 7.6553438, 46.3786247 ], + [ 7.6551687, 46.3787297 ], + [ 7.6549448, 46.3788074 ], + [ 7.6548004, 46.3788667 ], + [ 7.6547246, 46.3790037 ], + [ 7.6545839, 46.3791531 ], + [ 7.6544267, 46.3792803 ], + [ 7.6543049, 46.379277 ], + [ 7.654101, 46.3792812 ], + [ 7.6539168, 46.3793356 ], + [ 7.6537246, 46.3794071 ], + [ 7.6535558, 46.3794613 ], + [ 7.6532824, 46.3795513 ], + [ 7.653091, 46.3796455 ], + [ 7.6529421, 46.379778 ], + [ 7.6525323, 46.3801133 ], + [ 7.652331, 46.3801625 ], + [ 7.6519772, 46.3802485 ], + [ 7.6518247, 46.3803193 ], + [ 7.6515457, 46.3804432 ], + [ 7.6513138, 46.3805606 ], + [ 7.6510656, 46.3806502 ], + [ 7.650793, 46.3807459 ], + [ 7.6504879, 46.3808367 ], + [ 7.6502948, 46.3809025 ], + [ 7.6499319, 46.3809718 ], + [ 7.6495195, 46.3810365 ], + [ 7.6490484, 46.3810572 ], + [ 7.648561, 46.381067 ], + [ 7.6480005, 46.3810895 ], + [ 7.6470673, 46.3811534 ], + [ 7.6467929, 46.3812097 ], + [ 7.646652, 46.381331 ], + [ 7.6465762, 46.3814846 ], + [ 7.646559, 46.3816598 ], + [ 7.6465273, 46.381869 ], + [ 7.6465165, 46.3820215 ], + [ 7.6466446, 46.3821599 ], + [ 7.6466752, 46.3823115 ], + [ 7.6466788999999995, 46.3824128 ], + [ 7.6467249, 46.3825472 ], + [ 7.6467474, 46.382699 ], + [ 7.6466471, 46.3828193 ], + [ 7.6463863, 46.3830163 ], + [ 7.6464305, 46.3831056 ], + [ 7.6466164, 46.3830849 ], + [ 7.6468041, 46.3830868 ], + [ 7.6470334, 46.3831217 ], + [ 7.6471741, 46.3831809 ], + [ 7.6473221, 46.3832174 ], + [ 7.647509, 46.3832136 ], + [ 7.6477771, 46.3832083 ], + [ 7.6480443000000005, 46.3831916 ], + [ 7.6483295, 46.3832028 ], + [ 7.6486192, 46.383321 ], + [ 7.6488762999999995, 46.3834342 ], + [ 7.649065, 46.3834755 ], + [ 7.6492617, 46.383511 ], + [ 7.6494458, 46.3836426 ], + [ 7.6495578, 46.3838039 ], + [ 7.6496119, 46.3839268 ], + [ 7.6497228, 46.3840542 ], + [ 7.6500044, 46.3841782 ], + [ 7.6504331, 46.3843219 ], + [ 7.6507951, 46.3844217 ], + [ 7.6511967, 46.3844869 ], + [ 7.6516471, 46.3845624 ], + [ 7.6522681, 46.3846344 ], + [ 7.6534288, 46.3847746 ], + [ 7.6534811, 46.3846552 ], + [ 7.6535849, 46.3846079 ], + [ 7.6537167, 46.3846392 ], + [ 7.6538828, 46.384737200000004 ], + [ 7.6541129, 46.3847889 ], + [ 7.6544252, 46.3848616 ], + [ 7.6546464, 46.3849136 ], + [ 7.6548593, 46.3849319 ], + [ 7.6553233, 46.384945 ], + [ 7.6556384, 46.3848992 ], + [ 7.655938, 46.3848594 ], + [ 7.6562792, 46.3848412 ], + [ 7.6566130999999995, 46.384857 ], + [ 7.6567765, 46.3848762 ], + [ 7.6569228, 46.384879 ], + [ 7.6570906, 46.384791 ], + [ 7.657208, 46.3846815 ], + [ 7.6573425, 46.3845886 ], + [ 7.6574174, 46.3846266 ], + [ 7.6572007, 46.3849071 ], + [ 7.6570987, 46.3849994 ], + [ 7.6569976, 46.3851029 ], + [ 7.6568956, 46.3852008 ], + [ 7.6567937, 46.3853044 ], + [ 7.656669, 46.3854309 ], + [ 7.6565499, 46.3855122 ], + [ 7.6563676, 46.3856287 ], + [ 7.6562972, 46.3857034 ], + [ 7.6561862, 46.3857732 ], + [ 7.6559876, 46.38589 ], + [ 7.6557654, 46.3860128 ], + [ 7.6556779, 46.3860711 ], + [ 7.6555922, 46.386163 ], + [ 7.6554991999999995, 46.386272 ], + [ 7.6554224, 46.3863863 ], + [ 7.6553303, 46.3865179 ], + [ 7.6551607, 46.3865606 ], + [ 7.6549675, 46.3866096 ], + [ 7.654871, 46.3866398 ], + [ 7.6546778, 46.3866888 ], + [ 7.6545017, 46.3867599 ], + [ 7.6543826, 46.38683 ], + [ 7.6542553, 46.3868946 ], + [ 7.6541443000000005, 46.3869702 ], + [ 7.6540323, 46.3870231 ], + [ 7.6538635, 46.3870604 ], + [ 7.653702, 46.3871032 ], + [ 7.6535729, 46.3871283 ], + [ 7.6534113, 46.3871428 ], + [ 7.6532425, 46.3872082 ], + [ 7.6530971999999995, 46.3872394 ], + [ 7.652969, 46.3872814 ], + [ 7.6528317999999995, 46.387301 ], + [ 7.6526792, 46.3873493 ], + [ 7.6525519, 46.3874251 ], + [ 7.6524247, 46.387501 ], + [ 7.6523307, 46.3875817 ], + [ 7.652236, 46.3876513 ], + [ 7.6520852999999995, 46.3877615 ], + [ 7.6519661, 46.3878258 ], + [ 7.6518713, 46.3879011 ], + [ 7.6516393, 46.387996 ], + [ 7.6515111000000005, 46.3880436 ], + [ 7.6513423, 46.3881033 ], + [ 7.6511825, 46.3881573 ], + [ 7.6509803, 46.3881952 ], + [ 7.650835, 46.3882263 ], + [ 7.6506905, 46.3882687 ], + [ 7.6505624, 46.3883221 ], + [ 7.6504504, 46.3883638 ], + [ 7.6503231, 46.388434 ], + [ 7.6501624, 46.388488 ], + [ 7.6499847, 46.3885309 ], + [ 7.6498239, 46.3885624 ], + [ 7.6496379999999995, 46.3886 ], + [ 7.6494611, 46.38866 ], + [ 7.6493347, 46.3887527 ], + [ 7.6492507, 46.3888727 ], + [ 7.649174, 46.3890039 ], + [ 7.6489545, 46.3889915 ], + [ 7.6488625, 46.3889312 ], + [ 7.6486964, 46.388844399999996 ], + [ 7.6485467, 46.3887797 ], + [ 7.6483815, 46.3887154 ], + [ 7.6482749, 46.3886838 ], + [ 7.6481486, 46.3885961 ], + [ 7.6480972, 46.3885181 ], + [ 7.6480178, 46.3883676 ], + [ 7.6479077, 46.3882571 ], + [ 7.6478066, 46.3881745 ], + [ 7.647673, 46.3880926 ], + [ 7.6474681, 46.388046 ], + [ 7.6472145000000005, 46.3880117 ], + [ 7.6470511, 46.3880093 ], + [ 7.6469681, 46.3879602 ], + [ 7.6468029, 46.3879071 ], + [ 7.6465403, 46.3878504 ], + [ 7.6463516, 46.387809 ], + [ 7.6461233, 46.3877968 ], + [ 7.645903, 46.3877674 ], + [ 7.6456177, 46.3877561 ], + [ 7.6453488, 46.3877559 ], + [ 7.6451186, 46.3876929 ], + [ 7.6449453, 46.3876231 ], + [ 7.6448189, 46.3875128 ], + [ 7.6445817, 46.387292 ], + [ 7.6443642, 46.3871443 ], + [ 7.6442063000000005, 46.3870629 ], + [ 7.6440997, 46.3870368 ], + [ 7.6439047, 46.3870351 ], + [ 7.6437098, 46.3870446 ], + [ 7.6434913, 46.3870828 ], + [ 7.643263, 46.3870705 ], + [ 7.6430906, 46.3870288 ], + [ 7.6429661, 46.3869693 ], + [ 7.6427693, 46.3869338 ], + [ 7.642632, 46.3869478 ], + [ 7.6424696, 46.3869679 ], + [ 7.6422746, 46.3869776 ], + [ 7.6419596, 46.3870234 ], + [ 7.6416834, 46.3870402 ], + [ 7.6414243, 46.3870679 ], + [ 7.6412185, 46.3870043 ], + [ 7.6410136, 46.3869578 ], + [ 7.6407321, 46.386845 ], + [ 7.6404586, 46.3867152 ], + [ 7.6401987, 46.3865231 ], + [ 7.6398639, 46.386293 ], + [ 7.6394452, 46.3860025 ], + [ 7.6393468, 46.3859763 ], + [ 7.6391266, 46.3859695 ], + [ 7.638873, 46.3859407 ], + [ 7.6387421, 46.3859038 ], + [ 7.638651, 46.3858718 ], + [ 7.6383955, 46.3857812 ], + [ 7.6382214, 46.3857113 ], + [ 7.638022, 46.3856138 ], + [ 7.6377494, 46.3855065 ], + [ 7.6374282000000004, 46.3854115 ], + [ 7.6372378, 46.3853307 ], + [ 7.6370636, 46.3852439 ], + [ 7.636856, 46.3851241 ], + [ 7.6365076, 46.3849619 ], + [ 7.6362334, 46.3848265 ], + [ 7.6357776, 46.3846214 ], + [ 7.6353959, 46.3844316 ], + [ 7.6350566, 46.3842805 ], + [ 7.6348283, 46.3842739 ], + [ 7.6345602, 46.3842905 ], + [ 7.6341712, 46.3843264 ], + [ 7.6339355, 46.3843142 ], + [ 7.6336107, 46.3843433 ], + [ 7.6334996, 46.3844018 ], + [ 7.6334707, 46.3845039 ], + [ 7.6334778, 46.3846728 ], + [ 7.6336167, 46.3849013 ], + [ 7.6332619, 46.3849647 ], + [ 7.6328955, 46.3849663 ], + [ 7.6325795, 46.3849953 ], + [ 7.6323042, 46.3850233 ], + [ 7.6317356, 46.3850403 ], + [ 7.6313854, 46.3850416 ], + [ 7.6310315, 46.3851333 ], + [ 7.6307661, 46.3852231 ], + [ 7.6305448, 46.3853684 ], + [ 7.6303932, 46.3854617 ], + [ 7.6301838, 46.385511 ], + [ 7.630015, 46.3855595 ], + [ 7.6297188, 46.3856724 ], + [ 7.6294154, 46.3858137 ], + [ 7.6292304, 46.3858682 ], + [ 7.6289714, 46.3859129 ], + [ 7.6286644, 46.385964 ], + [ 7.628399, 46.386037 ], + [ 7.6281255, 46.3861101 ], + [ 7.6279088, 46.3861876 ], + [ 7.6278229, 46.3862683 ], + [ 7.6277227, 46.3864225 ], + [ 7.6276532, 46.3865141 ], + [ 7.6275502, 46.3865837 ], + [ 7.6273814, 46.3866266 ], + [ 7.6271638, 46.3866816 ], + [ 7.6269715, 46.3867588 ], + [ 7.626845, 46.3868347 ], + [ 7.6267259, 46.3869216 ], + [ 7.6265842, 46.3870427 ], + [ 7.6263872, 46.3871933 ], + [ 7.6262626000000004, 46.3873423 ], + [ 7.6261289, 46.3874464 ], + [ 7.6260106, 46.3875334 ], + [ 7.6257046, 46.3876241 ], + [ 7.6253895, 46.3876754 ], + [ 7.6252134, 46.3877409 ], + [ 7.6251051, 46.3878952 ], + [ 7.6249389, 46.3880057 ], + [ 7.6247872, 46.3880651 ], + [ 7.624668, 46.3881464 ], + [ 7.6246489, 46.3882708 ], + [ 7.6246119, 46.3883729 ], + [ 7.6245478, 46.3884024 ], + [ 7.6244404, 46.3883482 ], + [ 7.6242743, 46.3882613 ], + [ 7.6240677, 46.3881865 ], + [ 7.6238791, 46.3881508 ], + [ 7.6237004, 46.3881656 ], + [ 7.6235721, 46.3881964 ], + [ 7.6233708, 46.388268 ], + [ 7.6231631, 46.3883567 ], + [ 7.6230358, 46.3884326 ], + [ 7.622885, 46.3885145 ], + [ 7.6227496, 46.3885961 ], + [ 7.622615, 46.3886945 ], + [ 7.6223992, 46.3887891 ], + [ 7.6222466, 46.3888371 ], + [ 7.6220372, 46.3888921 ], + [ 7.6219025, 46.3889681 ], + [ 7.6217779, 46.3891171 ], + [ 7.6216515000000005, 46.3892042 ], + [ 7.6215151, 46.3892519 ], + [ 7.6212542, 46.3892347 ], + [ 7.6209031, 46.389202 ], + [ 7.6204844, 46.389109 ], + [ 7.6199907, 46.3889778 ], + [ 7.6198735, 46.3889012 ], + [ 7.6196993, 46.3888089 ], + [ 7.619434, 46.3886957 ], + [ 7.6191371, 46.3885944 ], + [ 7.618907, 46.3885201 ], + [ 7.6187888, 46.3884097 ], + [ 7.6186761, 46.388254 ], + [ 7.618558, 46.388138 ], + [ 7.6183965, 46.3879721 ], + [ 7.6186077999999995, 46.3879622 ], + [ 7.618893, 46.3879792 ], + [ 7.6191457, 46.3879854 ], + [ 7.619384, 46.3880428 ], + [ 7.6195418, 46.3881242 ], + [ 7.6196196, 46.388038 ], + [ 7.6197019, 46.3878616 ], + [ 7.6196721, 46.3877157 ], + [ 7.6195873, 46.3876271 ], + [ 7.6195015999999995, 46.3875161 ], + [ 7.6195306, 46.3874366 ], + [ 7.619585, 46.387165 ], + [ 7.6196402, 46.38691 ], + [ 7.6197335, 46.3866151 ], + [ 7.6198473, 46.3864043 ], + [ 7.6201173, 46.3862298 ], + [ 7.6206989, 46.385925 ], + [ 7.6205616, 46.3859448 ], + [ 7.6202637, 46.386024 ], + [ 7.6200281, 46.3860398 ], + [ 7.6198241, 46.3860213 ], + [ 7.6196003999999995, 46.38593 ], + [ 7.6192837, 46.3857277 ], + [ 7.6189923, 46.3855699 ], + [ 7.6186449, 46.3854301 ], + [ 7.6181936, 46.3853152 ], + [ 7.6176594, 46.3851904 ], + [ 7.6177534, 46.385104 ], + [ 7.6178148, 46.3850013 ], + [ 7.6179377, 46.3848128 ], + [ 7.6180308, 46.3847039 ], + [ 7.6181961000000005, 46.3845709 ], + [ 7.6183803, 46.3845053 ], + [ 7.6186222, 46.384444 ], + [ 7.6188081, 46.3844123 ], + [ 7.6190248, 46.3843346 ], + [ 7.6192307, 46.3842009 ], + [ 7.6204048, 46.3832361 ], + [ 7.6206478, 46.3830227 ], + [ 7.6207975999999995, 46.3828901 ], + [ 7.6208988, 46.3827866 ], + [ 7.620991, 46.3826551 ], + [ 7.6210759, 46.382535 ], + [ 7.6211554, 46.3824827 ], + [ 7.6212899, 46.3823785 ], + [ 7.6214813, 46.3822902 ], + [ 7.6217141999999996, 46.3822179 ], + [ 7.6218903000000005, 46.3821468 ], + [ 7.6220303, 46.3819748 ], + [ 7.6220656, 46.3818558 ], + [ 7.6223085, 46.3816141 ], + [ 7.6224738, 46.3814699 ], + [ 7.6226562, 46.3813535 ], + [ 7.6228394999999995, 46.3812597 ], + [ 7.6229876, 46.3811046 ], + [ 7.6232088000000005, 46.3809311 ], + [ 7.6234211, 46.3807577 ], + [ 7.6235339, 46.3807329 ], + [ 7.6236458, 46.3806743 ], + [ 7.623682, 46.3805608 ], + [ 7.6237399, 46.3803848 ], + [ 7.6237923, 46.380271 ], + [ 7.6238528, 46.3801515 ], + [ 7.6239395, 46.3800878 ], + [ 7.6240822, 46.3800004 ], + [ 7.6242159, 46.3798793 ], + [ 7.6243089, 46.3797648 ], + [ 7.624337, 46.379657 ], + [ 7.6243316, 46.3795218 ], + [ 7.6243841, 46.3794137 ], + [ 7.6244301, 46.3793395 ], + [ 7.6245232, 46.3792362 ], + [ 7.6246902, 46.3791201 ], + [ 7.6248401, 46.3790156 ], + [ 7.6249638, 46.378844 ], + [ 7.6249188, 46.3787547 ], + [ 7.6247699, 46.3786844 ], + [ 7.624686, 46.3786185 ], + [ 7.6246337, 46.3785237 ], + [ 7.6245698, 46.3783558 ], + [ 7.6245239, 46.3782326 ], + [ 7.6244509, 46.3780368 ], + [ 7.6243797, 46.3778803 ], + [ 7.6242923000000005, 46.3777298 ], + [ 7.6243509, 46.3775539 ], + [ 7.6243447, 46.3773962 ], + [ 7.6243313, 46.3772781 ], + [ 7.6243431, 46.3771651 ], + [ 7.6243955, 46.3770457 ], + [ 7.6243902, 46.3769217 ], + [ 7.6243263, 46.376737 ], + [ 7.6243633, 46.376646 ], + [ 7.6244058, 46.3764874 ], + [ 7.6244898, 46.3763503 ], + [ 7.6246244, 46.3762575 ], + [ 7.6247174, 46.3761429 ], + [ 7.6246976, 46.3760588 ], + [ 7.6246127999999995, 46.3759646 ], + [ 7.6244721, 46.375911 ], + [ 7.6243314, 46.3758517 ], + [ 7.6242367, 46.375724 ], + [ 7.6241403, 46.3755511 ], + [ 7.6240835, 46.3753436 ], + [ 7.6241269, 46.3752131 ], + [ 7.6241523, 46.3750378 ], + [ 7.6241867, 46.3748793 ], + [ 7.6241706, 46.3746654 ], + [ 7.6241293, 46.3744632 ], + [ 7.6240879, 46.3742273 ], + [ 7.6240393, 46.3740365 ], + [ 7.6240601, 46.3739403 ], + [ 7.6241297, 46.3738544 ], + [ 7.6241911, 46.3737516 ], + [ 7.6242011, 46.3736049 ], + [ 7.6241488, 46.3735157 ], + [ 7.6240406, 46.3734559 ], + [ 7.6239062, 46.3733514 ], + [ 7.6239044, 46.3732952 ], + [ 7.6239965, 46.3731636 ], + [ 7.6240724, 46.3730212 ], + [ 7.6241782, 46.3728386 ], + [ 7.6242767, 46.3726563 ], + [ 7.624285, 46.3722502 ], + [ 7.6242634, 46.3721097 ], + [ 7.6243402, 46.3720011 ], + [ 7.6244585, 46.3719086 ], + [ 7.6245443, 46.3718166 ], + [ 7.624621, 46.3716968 ], + [ 7.6246148, 46.3715503 ], + [ 7.624503, 46.3713946 ], + [ 7.6244318, 46.3712382 ], + [ 7.6243362999999995, 46.3710823 ], + [ 7.6242569, 46.370926 ], + [ 7.6242075, 46.3707071 ], + [ 7.6241932, 46.3705608 ], + [ 7.6242366, 46.3704303 ], + [ 7.6242483, 46.3703004 ], + [ 7.6242096, 46.3701546 ], + [ 7.6241619, 46.3699864 ], + [ 7.6241052, 46.3697903 ], + [ 7.624025, 46.3696171 ], + [ 7.6239304, 46.369478 ], + [ 7.6238339, 46.3692939 ], + [ 7.623752, 46.3690926 ], + [ 7.6236366, 46.36883 ], + [ 7.6235753, 46.368741 ], + [ 7.6234570999999995, 46.3686137 ], + [ 7.6233318, 46.3685315 ], + [ 7.6231397, 46.368417 ], + [ 7.6230622, 46.3683002 ], + [ 7.623, 46.3681717 ], + [ 7.6229775, 46.3680199 ], + [ 7.6229325, 46.3679081 ], + [ 7.6228631, 46.3678024 ], + [ 7.622735, 46.3676414 ], + [ 7.6225583, 46.3674983 ], + [ 7.6224393, 46.3673598 ], + [ 7.6223355999999995, 46.3672097 ], + [ 7.6222491, 46.3670816 ], + [ 7.6220805, 46.3669328 ], + [ 7.6218613, 46.3667399 ], + [ 7.6216352, 46.3663835 ], + [ 7.6215279, 46.366132 ], + [ 7.6214631, 46.365936 ], + [ 7.6214406, 46.365773 ], + [ 7.6214507000000005, 46.3656318 ], + [ 7.6215437, 46.3655115 ], + [ 7.6215772, 46.3653361 ], + [ 7.6215629, 46.3651841 ], + [ 7.6215053, 46.3649542 ], + [ 7.6214224999999995, 46.364719 ], + [ 7.6213775, 46.3646128 ], + [ 7.6212773, 46.3645472 ], + [ 7.6211853, 46.36447 ], + [ 7.6209805, 46.3644347 ], + [ 7.6207667, 46.364377 ], + [ 7.6206513000000005, 46.3643285 ], + [ 7.6205836, 46.3642678 ], + [ 7.6205314, 46.36419 ], + [ 7.62048, 46.3641233 ], + [ 7.6204494, 46.3639661 ], + [ 7.62038, 46.3638491 ], + [ 7.6202629, 46.3637836 ], + [ 7.6201961, 46.3637399 ], + [ 7.6201041, 46.3636741 ], + [ 7.6200282999999995, 46.3635967 ], + [ 7.61995, 46.3634798 ], + [ 7.6198562, 46.3633746 ], + [ 7.6194647, 46.3633316 ], + [ 7.6195015999999995, 46.363455 ], + [ 7.6194808, 46.3635399 ], + [ 7.6194364, 46.3636367 ], + [ 7.6194066, 46.3637161 ], + [ 7.61932, 46.3637912 ], + [ 7.6192252, 46.3638438 ], + [ 7.6190971, 46.3639083 ], + [ 7.6188958, 46.3639518 ], + [ 7.6186441, 46.3639737 ], + [ 7.6184175, 46.3639838 ], + [ 7.6181884, 46.3639488 ], + [ 7.6177148, 46.3639019 ], + [ 7.6172826, 46.3638822 ], + [ 7.6168018, 46.3638467 ], + [ 7.6166268, 46.3637374 ], + [ 7.6165275999999995, 46.3636998 ], + [ 7.6163895, 46.3637026 ], + [ 7.6162434, 46.3637169 ], + [ 7.6160566, 46.3637262 ], + [ 7.6158699, 46.3637298 ], + [ 7.6156651, 46.3636944 ], + [ 7.6154765, 46.3636588 ], + [ 7.6153033, 46.3635889 ], + [ 7.6150246, 46.3635436 ], + [ 7.6147151, 46.363516 ], + [ 7.6143462, 46.3634499 ], + [ 7.6140511, 46.3633825 ], + [ 7.6137543999999995, 46.3632868 ], + [ 7.6135127, 46.3631395 ], + [ 7.6132702, 46.3629695 ], + [ 7.6130529, 46.3628328 ], + [ 7.6128211, 46.3627246 ], + [ 7.6126786, 46.3626148 ], + [ 7.6125054, 46.3625562 ], + [ 7.6123981, 46.3625244 ], + [ 7.6122023, 46.3625057 ], + [ 7.6119497, 46.3624939 ], + [ 7.6117531, 46.3624526 ], + [ 7.6115628, 46.3623662 ], + [ 7.6113976999999995, 46.3623075 ], + [ 7.6112164, 46.3622547 ], + [ 7.6108646, 46.3621939 ], + [ 7.6103675, 46.3621699 ], + [ 7.609884, 46.362078 ], + [ 7.609727, 46.3619966 ], + [ 7.6095439, 46.3618931 ], + [ 7.6093437999999995, 46.3617674 ], + [ 7.6091184, 46.3616252 ], + [ 7.6087378, 46.3614693 ], + [ 7.6083076, 46.3612805 ], + [ 7.6077701, 46.361043 ], + [ 7.6075085, 46.3610087 ], + [ 7.6072892, 46.3610187 ], + [ 7.6071042, 46.3610787 ], + [ 7.6068867000000004, 46.3611169 ], + [ 7.6066188, 46.361139 ], + [ 7.6064419, 46.3611875 ], + [ 7.6062244, 46.3612483 ], + [ 7.6060646, 46.3613191 ], + [ 7.6058462, 46.3613345 ], + [ 7.6057065, 46.3613092 ], + [ 7.6055269, 46.3612902 ], + [ 7.6054222, 46.3613092 ], + [ 7.605359, 46.3613499 ], + [ 7.6051958, 46.3613531 ], + [ 7.6050577, 46.3613446 ], + [ 7.6048936, 46.3613195 ], + [ 7.604732, 46.3613341 ], + [ 7.6046444, 46.3613752 ], + [ 7.6045739999999995, 46.3614498 ], + [ 7.6044963, 46.3615528 ], + [ 7.6044358, 46.3616668 ], + [ 7.6043816, 46.3617356 ], + [ 7.604303, 46.3617878 ], + [ 7.6042226, 46.3618176 ], + [ 7.6040945, 46.3618652 ], + [ 7.6038932, 46.3619142 ], + [ 7.6036984, 46.3619294 ], + [ 7.6035547999999995, 46.3619942 ], + [ 7.6034754, 46.3620465 ], + [ 7.6033301, 46.3620719 ], + [ 7.6032164, 46.3620854 ], + [ 7.6031207, 46.3621212 ], + [ 7.603025, 46.3621738 ], + [ 7.6029041, 46.36221 ], + [ 7.6026271, 46.3621929 ], + [ 7.6023826, 46.3621695 ], + [ 7.6020082, 46.3621712 ], + [ 7.6018078, 46.3622316 ], + [ 7.6016625, 46.362257 ], + [ 7.6015778, 46.3621853 ], + [ 7.6016158, 46.3621057 ], + [ 7.6017097, 46.3620249 ], + [ 7.6017567, 46.3619732 ], + [ 7.6018092, 46.3618707 ], + [ 7.6021017, 46.3616563 ], + [ 7.6023165, 46.3615337 ], + [ 7.602563, 46.3613993 ], + [ 7.6026822, 46.3613237 ], + [ 7.6027833000000005, 46.3612032 ], + [ 7.6029089, 46.3610824 ], + [ 7.6030335000000004, 46.3609447 ], + [ 7.6031321, 46.3607736 ], + [ 7.6031999, 46.3606313 ], + [ 7.6031756999999995, 46.3604401 ], + [ 7.6031381, 46.3600914 ], + [ 7.6030798, 46.3598613 ], + [ 7.6030295, 46.3596143 ], + [ 7.6030242, 46.3594791 ], + [ 7.6030767, 46.3593653 ], + [ 7.6031535, 46.3592511 ], + [ 7.60327, 46.3591079 ], + [ 7.6033361, 46.358943 ], + [ 7.6033471, 46.3588131 ], + [ 7.6033589, 46.3586945 ], + [ 7.603396, 46.3585924 ], + [ 7.6034313000000004, 46.3584619 ], + [ 7.6034252, 46.3583211 ], + [ 7.6034091, 46.3581186 ], + [ 7.603376, 46.3578881 ], + [ 7.6032904, 46.3577769 ], + [ 7.6031677, 46.3577625 ], + [ 7.6029963, 46.3577433 ], + [ 7.6028475, 46.3576786 ], + [ 7.6026572, 46.3575978 ], + [ 7.6024644, 46.3574606 ], + [ 7.602265, 46.3573406 ], + [ 7.6020235, 46.3572099 ], + [ 7.6017998, 46.3571016 ], + [ 7.6016493, 46.3570032 ], + [ 7.6015564, 46.3569035 ], + [ 7.6014601, 46.3567419 ], + [ 7.6013573999999995, 46.3565974 ], + [ 7.6012312, 46.3565039 ], + [ 7.6011059, 46.3564219 ], + [ 7.6009067, 46.3563075 ], + [ 7.6007065, 46.3561873 ], + [ 7.6005444, 46.3559932 ], + [ 7.6004805, 46.3558028 ], + [ 7.6004285, 46.3555219 ], + [ 7.6004116, 46.3552968 ], + [ 7.600308, 46.3551467 ], + [ 7.6001449999999995, 46.3549413 ], + [ 7.6000504, 46.3547909 ], + [ 7.6000794, 46.3547114 ], + [ 7.600157, 46.3546141 ], + [ 7.6002185, 46.3545338 ], + [ 7.6001582, 46.3544506 ], + [ 7.6000473, 46.3543117 ], + [ 7.5999590999999995, 46.3541387 ], + [ 7.5998953, 46.3539596 ], + [ 7.5999045, 46.3537904 ], + [ 7.5999444, 46.353564 ], + [ 7.599978, 46.3533829 ], + [ 7.5999124, 46.3531645 ], + [ 7.5998332, 46.3530081 ], + [ 7.5997496, 46.3527391 ], + [ 7.5997327, 46.352514 ], + [ 7.5997077, 46.3523058 ], + [ 7.59956, 46.3520608 ], + [ 7.5994871, 46.3518536 ], + [ 7.5994387, 46.3516629 ], + [ 7.5994397, 46.3514768 ], + [ 7.5994861, 46.3512166 ], + [ 7.5995513, 46.351018 ], + [ 7.5995776, 46.3508596 ], + [ 7.5995389, 46.3506913 ], + [ 7.5994418, 46.3505128 ], + [ 7.5993608, 46.3503171 ], + [ 7.5992636000000005, 46.3501217 ], + [ 7.5991348, 46.3499269 ], + [ 7.5990123, 46.3497094 ], + [ 7.5988891, 46.3494751 ], + [ 7.5988009, 46.3493021 ], + [ 7.5989816999999995, 46.3489377 ], + [ 7.5989863, 46.3488418 ], + [ 7.5989413, 46.3487525 ], + [ 7.5988332, 46.348687 ], + [ 7.5987881999999995, 46.348575 ], + [ 7.598791, 46.3484397 ], + [ 7.5988652, 46.3482635 ], + [ 7.5989907, 46.3481427 ], + [ 7.5991081, 46.3480219 ], + [ 7.5991388, 46.3479706 ], + [ 7.5991498, 46.3478521 ], + [ 7.5991698, 46.3477389 ], + [ 7.5992239999999995, 46.3476645 ], + [ 7.5993269, 46.3476005 ], + [ 7.5994712, 46.3475413 ], + [ 7.5996147, 46.347470799999996 ], + [ 7.5997266, 46.3474236 ], + [ 7.5997394, 46.3473443 ], + [ 7.5997197, 46.3472489 ], + [ 7.5997071, 46.3471308 ], + [ 7.5996946, 46.3470295 ], + [ 7.5996992, 46.346928 ], + [ 7.5996939999999995, 46.3468041 ], + [ 7.5996554, 46.3466582 ], + [ 7.599651, 46.3465343 ], + [ 7.599753, 46.3464364 ], + [ 7.5998875, 46.3463492 ], + [ 7.6000066, 46.346268 ], + [ 7.6000997, 46.3461647 ], + [ 7.6002, 46.346033 ], + [ 7.6002199, 46.3459199 ], + [ 7.6001958, 46.3457062 ], + [ 7.6001662, 46.3455883 ], + [ 7.6001446999999995, 46.3454534 ], + [ 7.6001881000000004, 46.3453117 ], + [ 7.6003145, 46.3452134 ], + [ 7.6003986, 46.3450876 ], + [ 7.6005484, 46.3449664 ], + [ 7.6006559, 46.3448008 ], + [ 7.6006442, 46.3447107 ], + [ 7.6006544, 46.344564 ], + [ 7.6006761, 46.3444959 ], + [ 7.6008025, 46.3444145 ], + [ 7.6009143, 46.3443446 ], + [ 7.600966, 46.3442308 ], + [ 7.6009787, 46.3441404 ], + [ 7.6010734, 46.344054 ], + [ 7.601234, 46.3440057 ], + [ 7.6014975, 46.3438935 ], + [ 7.6010835, 46.3439016 ], + [ 7.6009617, 46.3438984 ], + [ 7.6008011, 46.3439522 ], + [ 7.6005838, 46.3440186 ], + [ 7.6004547, 46.344038 ], + [ 7.6003095, 46.344069 ], + [ 7.600175, 46.3441506 ], + [ 7.6000379, 46.3441872 ], + [ 7.5998521, 46.3442247 ], + [ 7.5996932, 46.3443179 ], + [ 7.5995992999999995, 46.3444044 ], + [ 7.5994422, 46.3445428 ], + [ 7.5992761, 46.3446474 ], + [ 7.599101, 46.344758 ], + [ 7.5989737, 46.3448169 ], + [ 7.5987824, 46.3449222 ], + [ 7.5986163, 46.3450381 ], + [ 7.5984494, 46.3451373 ], + [ 7.5982734, 46.345214 ], + [ 7.5980641, 46.3452632 ], + [ 7.5979008, 46.3452326 ], + [ 7.5976854, 46.3451354 ], + [ 7.5974337, 46.3451402 ], + [ 7.5972838, 46.3452504 ], + [ 7.5972954999999995, 46.3453572 ], + [ 7.5972106, 46.3454661 ], + [ 7.5971167, 46.3455467 ], + [ 7.5969425, 46.3456742 ], + [ 7.5966888, 46.3458426 ], + [ 7.596381, 46.3460743 ], + [ 7.5958447, 46.3464962 ], + [ 7.5956444, 46.3465735 ], + [ 7.5953466, 46.3466358 ], + [ 7.5950641999999995, 46.3466864 ], + [ 7.5948343, 46.3466458 ], + [ 7.5945881, 46.3465717 ], + [ 7.5944014, 46.346581 ], + [ 7.5941848, 46.3466586 ], + [ 7.5940179, 46.3467633 ], + [ 7.5939663, 46.3468995 ], + [ 7.5939147, 46.3470303 ], + [ 7.5938289, 46.3471108 ], + [ 7.5937277, 46.3472313 ], + [ 7.5935932, 46.3473185 ], + [ 7.5935001, 46.347433 ], + [ 7.5934297, 46.347519 ], + [ 7.5933402, 46.347718 ], + [ 7.5932903, 46.3478993 ], + [ 7.5932341, 46.3481204 ], + [ 7.5931211, 46.3483368 ], + [ 7.5928851, 46.3487473 ], + [ 7.5927353, 46.3488743 ], + [ 7.592608, 46.3489501 ], + [ 7.5924726, 46.3490204 ], + [ 7.5922244, 46.3491042 ], + [ 7.5919754, 46.3491936 ], + [ 7.5917759, 46.3492764 ], + [ 7.591626, 46.3494034 ], + [ 7.5914535, 46.3495589 ], + [ 7.5913622, 46.3497186 ], + [ 7.5914614, 46.3497674 ], + [ 7.5915623, 46.3498444 ], + [ 7.5916876, 46.3499321 ], + [ 7.5917749, 46.3500882 ], + [ 7.591846, 46.3502391 ], + [ 7.5918872, 46.3504524 ], + [ 7.5919583, 46.3506145 ], + [ 7.5919995, 46.3508336 ], + [ 7.5919705, 46.35093 ], + [ 7.5918757, 46.3509882 ], + [ 7.5917655, 46.3510806 ], + [ 7.5916707, 46.3511614 ], + [ 7.5916499, 46.3512519 ], + [ 7.5916704, 46.3513475 ], + [ 7.5917462, 46.3514192 ], + [ 7.5918616, 46.351456400000004 ], + [ 7.592115, 46.3514966 ], + [ 7.5921681, 46.3516138 ], + [ 7.5921147, 46.3516883 ], + [ 7.5920217, 46.3518028 ], + [ 7.591833, 46.3519756 ], + [ 7.5924721, 46.3522957 ], + [ 7.5925235, 46.3523792 ], + [ 7.5925774, 46.3524965 ], + [ 7.5925899, 46.3526203 ], + [ 7.5925229, 46.3527627 ], + [ 7.5923982, 46.3529004 ], + [ 7.592242, 46.3530669 ], + [ 7.5921895, 46.3531807 ], + [ 7.5921524, 46.3532715 ], + [ 7.5920585, 46.353375 ], + [ 7.5919556, 46.3534389 ], + [ 7.5917984, 46.3535717 ], + [ 7.5916422, 46.3537269 ], + [ 7.5914317, 46.3539734 ], + [ 7.5912691, 46.3541795 ], + [ 7.591018, 46.35441 ], + [ 7.5908228, 46.3546055 ], + [ 7.5907452, 46.3547028 ], + [ 7.5907884, 46.3547584 ], + [ 7.5908487000000004, 46.3548587 ], + [ 7.5908621, 46.3549825 ], + [ 7.5907681, 46.3550858 ], + [ 7.5906742, 46.3551778 ], + [ 7.5904927, 46.355311 ], + [ 7.590424, 46.3554251 ], + [ 7.5902912, 46.3555687 ], + [ 7.590143, 46.3557294 ], + [ 7.5901157999999995, 46.3558539 ], + [ 7.5901219, 46.3560229 ], + [ 7.590146, 46.3562141 ], + [ 7.5903089999999995, 46.356442 ], + [ 7.5902438, 46.3566351 ], + [ 7.590185, 46.3567996 ], + [ 7.5901018, 46.3569591 ], + [ 7.5900322, 46.3570507 ], + [ 7.5899211, 46.3571036 ], + [ 7.5897451, 46.3571916 ], + [ 7.5895529, 46.3572686 ], + [ 7.5893469, 46.357391 ], + [ 7.5890501, 46.3575096 ], + [ 7.5887856, 46.3575994 ], + [ 7.5885707, 46.3577219 ], + [ 7.5884542, 46.3578652 ], + [ 7.5883718, 46.3580303 ], + [ 7.5882868, 46.3581503 ], + [ 7.5881784, 46.3582877 ], + [ 7.5880943, 46.358419 ], + [ 7.5880094, 46.3585447 ], + [ 7.5879551, 46.3586078 ], + [ 7.5878368, 46.3586947 ], + [ 7.5876869, 46.358816 ], + [ 7.5875541, 46.3589652 ], + [ 7.5874303, 46.3591086 ], + [ 7.5873056, 46.3592576 ], + [ 7.5872125, 46.3593721 ], + [ 7.5871186, 46.3594641 ], + [ 7.5869832, 46.3595401 ], + [ 7.5868549, 46.3595707 ], + [ 7.5866439, 46.3595974 ], + [ 7.5863361000000005, 46.3596091 ], + [ 7.5861529, 46.3597142 ], + [ 7.5860102, 46.3598183 ], + [ 7.5857935, 46.3598789 ], + [ 7.5853947999999995, 46.3598699 ], + [ 7.5851332, 46.3598467 ], + [ 7.5847841, 46.3598593 ], + [ 7.5846225, 46.3598793 ], + [ 7.58447, 46.3599387 ], + [ 7.5843499, 46.3599692 ], + [ 7.5841414, 46.3600466 ], + [ 7.5839076, 46.3601018 ], + [ 7.5836829, 46.3601738 ], + [ 7.5834321, 46.3602183 ], + [ 7.5831919, 46.3603074 ], + [ 7.5829608, 46.3604191 ], + [ 7.5827206, 46.360514 ], + [ 7.5825933, 46.3605954 ], + [ 7.5825318, 46.3606811 ], + [ 7.5824243, 46.3608467 ], + [ 7.5823257, 46.3610347 ], + [ 7.5822335, 46.3611717 ], + [ 7.582078, 46.3613552 ], + [ 7.5819072, 46.3615446 ], + [ 7.5817906, 46.3616821 ], + [ 7.5816975, 46.3618136 ], + [ 7.5816558, 46.3619948 ], + [ 7.5816400999999995, 46.3622093 ], + [ 7.5816317, 46.3624181 ], + [ 7.5815736000000005, 46.3625827 ], + [ 7.5815446, 46.3626734 ], + [ 7.5814759, 46.3627932 ], + [ 7.581426, 46.3629689 ], + [ 7.5814159, 46.3631326 ], + [ 7.5814091999999995, 46.3633808 ], + [ 7.5814025, 46.3636121 ], + [ 7.5812743000000005, 46.3636596 ], + [ 7.5810893, 46.3637309 ], + [ 7.5808573, 46.3638143 ], + [ 7.5806172, 46.3639148 ], + [ 7.5804446, 46.3640705 ], + [ 7.5802387, 46.364221 ], + [ 7.5801221, 46.3643642 ], + [ 7.5799794, 46.3644515 ], + [ 7.5798602, 46.3645271 ], + [ 7.5797012, 46.3646035 ], + [ 7.5795487, 46.3646741 ], + [ 7.5792769, 46.3647754 ], + [ 7.5790124, 46.3648763 ], + [ 7.5787721999999995, 46.3649769 ], + [ 7.5784599, 46.365107 ], + [ 7.5782937, 46.3652172 ], + [ 7.5781591, 46.3653102 ], + [ 7.577954, 46.3654831 ], + [ 7.5777788, 46.3655656 ], + [ 7.5775839, 46.365575 ], + [ 7.5769212, 46.3658979 ], + [ 7.5768362, 46.3660067 ], + [ 7.5767512, 46.3661268 ], + [ 7.5766598, 46.3662695 ], + [ 7.5765531, 46.366452 ], + [ 7.5764545, 46.3666456 ], + [ 7.5763712, 46.3668107 ], + [ 7.5762636, 46.3669537 ], + [ 7.5761461, 46.3670743 ], + [ 7.5760124, 46.3671954 ], + [ 7.5758616, 46.3672829 ], + [ 7.5756945, 46.3673876 ], + [ 7.5755356, 46.3674752 ], + [ 7.5753595, 46.3675519 ], + [ 7.5751762, 46.3676401 ], + [ 7.5749612, 46.3677514 ], + [ 7.5747147, 46.3678971 ], + [ 7.5745006, 46.3680535 ], + [ 7.5742395, 46.3682277 ], + [ 7.5740182, 46.3683842 ], + [ 7.5737888, 46.3685634 ], + [ 7.5734978, 46.3688172 ], + [ 7.5729962, 46.3692892 ], + [ 7.5725472, 46.3696643 ], + [ 7.5722951, 46.3698835 ], + [ 7.5722623, 46.3700702 ], + [ 7.5722368, 46.3702623 ], + [ 7.5721805, 46.3704945 ], + [ 7.5721601, 46.3707881 ], + [ 7.5719718, 46.3711808 ], + [ 7.5720971, 46.3712685 ], + [ 7.572281, 46.3714003 ], + [ 7.5724153, 46.3714934 ], + [ 7.5725235, 46.3715647 ], + [ 7.5725359, 46.3716715 ], + [ 7.5725484, 46.3717897 ], + [ 7.572569, 46.3718964 ], + [ 7.5726058, 46.3719971 ], + [ 7.5726759, 46.3721255 ], + [ 7.5727462, 46.3722764 ], + [ 7.572736, 46.3724287 ], + [ 7.5726583, 46.3725261 ], + [ 7.5725181, 46.3726754 ], + [ 7.5723763, 46.3728022 ], + [ 7.5722523, 46.3729454 ], + [ 7.572143, 46.3730773 ], + [ 7.5720687, 46.3732535 ], + [ 7.5719953, 46.3734522 ], + [ 7.5719525999999995, 46.3736109 ], + [ 7.5719578, 46.3737517 ], + [ 7.5720045, 46.3738862 ], + [ 7.5720233, 46.3739648 ], + [ 7.5720149, 46.3741566 ], + [ 7.5719876, 46.3742924 ], + [ 7.5719359, 46.3744231 ], + [ 7.5719176, 46.3745812 ], + [ 7.5719066, 46.3747167 ], + [ 7.5719037, 46.3748633 ], + [ 7.5718132, 46.3750456 ], + [ 7.5717406, 46.3752555 ], + [ 7.5716202, 46.375506 ], + [ 7.5714322, 46.3757013 ], + [ 7.571366, 46.375883 ], + [ 7.5715085, 46.3759929 ], + [ 7.5717086, 46.3761019 ], + [ 7.5717608, 46.3761855 ], + [ 7.5717976, 46.3763031 ], + [ 7.5718425, 46.3764093 ], + [ 7.5719273000000005, 46.3765035 ], + [ 7.5720598, 46.3765685 ], + [ 7.5722582, 46.3766436 ], + [ 7.5725794, 46.3767557 ], + [ 7.5728526, 46.3768745 ], + [ 7.573125, 46.3769763 ], + [ 7.5734902, 46.3771496 ], + [ 7.573952, 46.3773155 ], + [ 7.5740985, 46.3777298 ], + [ 7.5741542, 46.3779091 ], + [ 7.574318, 46.3781483 ], + [ 7.574363, 46.3782603 ], + [ 7.5745974, 46.3784361 ], + [ 7.5746983, 46.3785186 ], + [ 7.5750349, 46.3785967 ], + [ 7.5758297, 46.3787391 ], + [ 7.5761175, 46.3788294 ], + [ 7.5763159, 46.3789043 ], + [ 7.5764828, 46.3790252 ], + [ 7.576562, 46.3791703 ], + [ 7.5766249, 46.3793268 ], + [ 7.5766147, 46.379468 ], + [ 7.5766371, 46.3796311 ], + [ 7.5766278, 46.3798003 ], + [ 7.5766574, 46.3799407 ], + [ 7.5767087, 46.3800074 ], + [ 7.5768566, 46.3800383 ], + [ 7.5770281, 46.3800575 ], + [ 7.5772231, 46.3800537 ], + [ 7.5774984, 46.3800258 ], + [ 7.5778054, 46.3799803 ], + [ 7.5780896, 46.3799579 ], + [ 7.5783513, 46.3799923 ], + [ 7.5786789, 46.380048 ], + [ 7.5789107, 46.3801506 ], + [ 7.5790865, 46.3802768 ], + [ 7.5792037, 46.3803647 ], + [ 7.5792739000000005, 46.3804874 ], + [ 7.5793432, 46.38061 ], + [ 7.5794036, 46.3806934 ], + [ 7.5795423, 46.3809219 ], + [ 7.5796133, 46.3810614 ], + [ 7.5796925, 46.3812121 ], + [ 7.5797555, 46.3813631 ], + [ 7.5797851, 46.3815035 ], + [ 7.579727, 46.3816737 ], + [ 7.5796745, 46.3817988 ], + [ 7.5795912, 46.3819469 ], + [ 7.5794918, 46.382118 ], + [ 7.5793824, 46.3822273 ], + [ 7.5793542, 46.3823349 ], + [ 7.5793983, 46.3824186 ], + [ 7.5794578, 46.3824908 ], + [ 7.5795489, 46.3825285 ], + [ 7.5796075, 46.3825724 ], + [ 7.5796922, 46.382661 ], + [ 7.5797445, 46.3827502 ], + [ 7.5797714, 46.3828117 ], + [ 7.5798083, 46.3829181 ], + [ 7.5797972, 46.3830536 ], + [ 7.5797772, 46.3831724 ], + [ 7.5798654, 46.3833398 ], + [ 7.5799861, 46.3835121 ], + [ 7.5800636, 46.3836233 ], + [ 7.580124, 46.383718 ], + [ 7.580177, 46.3838242 ], + [ 7.5801733, 46.3839426 ], + [ 7.5801513, 46.3842136 ], + [ 7.5700046, 46.4037758 ], + [ 7.5841155, 46.4167504 ], + [ 7.5838543, 46.4163458 ], + [ 7.5838147, 46.416139 ], + [ 7.5839181, 46.4158959 ], + [ 7.5840738, 46.4157338 ], + [ 7.5843983999999995, 46.4155535 ], + [ 7.5850482, 46.4153278 ], + [ 7.5852816, 46.4150576 ], + [ 7.5853072, 46.4149226 ], + [ 7.5852152, 46.4145629 ], + [ 7.5854358, 46.4143647 ], + [ 7.5863447, 46.4137789 ], + [ 7.5866045, 46.4136616 ], + [ 7.5876833, 46.4134173 ], + [ 7.5893079, 46.4129834 ], + [ 7.5904774, 46.412622 ], + [ 7.592232, 46.4121968 ], + [ 7.5928431, 46.412151 ], + [ 7.5948576, 46.4116265 ], + [ 7.5955072999999995, 46.4114277 ], + [ 7.5960274, 46.4114 ], + [ 7.5960024, 46.4117419 ], + [ 7.5960687, 46.4122096 ], + [ 7.5966175, 46.4130634 ], + [ 7.5969444, 46.4136746 ], + [ 7.5975312, 46.4142315 ], + [ 7.5981569, 46.4147074 ], + [ 7.5988084, 46.4150843 ], + [ 7.5994203, 46.4152904 ], + [ 7.5998111, 46.4155147 ], + [ 7.6000464, 46.4158922 ], + [ 7.6001775, 46.4162518 ], + [ 7.6002046, 46.4166116 ], + [ 7.6003095, 46.4169263 ], + [ 7.6001413, 46.4172234 ], + [ 7.6001169, 46.4177632 ], + [ 7.5994298, 46.4185288 ], + [ 7.5991706, 46.418862 ], + [ 7.5990416, 46.419204 ], + [ 7.5990165, 46.4195369 ], + [ 7.5991083, 46.4197886 ], + [ 7.599278, 46.4199863 ], + [ 7.5993436, 46.4201931 ], + [ 7.5991494, 46.4204812 ], + [ 7.5986956, 46.4210036 ], + [ 7.5985012, 46.4212468 ], + [ 7.5984368, 46.4214537 ], + [ 7.5985282, 46.4215616 ], + [ 7.5993098, 46.4219473 ], + [ 7.5994794, 46.422127 ], + [ 7.5995451, 46.422605 ], + [ 7.599852, 46.4224737 ], + [ 7.6000174, 46.4223296 ], + [ 7.6001828, 46.4221853 ], + [ 7.6002562000000005, 46.4219866 ], + [ 7.6006708, 46.4219728 ], + [ 7.6005988, 46.4217994 ], + [ 7.6008743, 46.4217602 ], + [ 7.6008185, 46.4215866 ], + [ 7.6010054, 46.4215884 ], + [ 7.6009595, 46.4214429 ], + [ 7.6011157, 46.4214792 ], + [ 7.6010715, 46.4213955 ], + [ 7.6012179, 46.421387 ], + [ 7.6011215, 46.4212311 ], + [ 7.6013264, 46.4212495 ], + [ 7.6012445, 46.4210482 ], + [ 7.6012212, 46.4208569 ], + [ 7.6010722, 46.4208036 ], + [ 7.6008645999999995, 46.4206948 ], + [ 7.6007121, 46.4205456 ], + [ 7.6006627, 46.4203267 ], + [ 7.6009785999999995, 46.4204841 ], + [ 7.6012179, 46.4205751 ], + [ 7.6015213, 46.42062 ], + [ 7.601534, 46.4205352 ], + [ 7.6024524, 46.4207143 ], + [ 7.6027233, 46.4207598 ], + [ 7.602977, 46.4207943 ], + [ 7.6032616, 46.4207887 ], + [ 7.603445, 46.4207062 ], + [ 7.6036438, 46.4205783 ], + [ 7.6039148999999995, 46.4204263 ], + [ 7.6041851, 46.4202632 ], + [ 7.6044002, 46.4201518 ], + [ 7.6046487, 46.4200624 ], + [ 7.6049134, 46.4199499 ], + [ 7.6050653, 46.4198849 ], + [ 7.6052423000000005, 46.4198308 ], + [ 7.6054845, 46.4197865 ], + [ 7.6056308, 46.419778 ], + [ 7.6058322, 46.4197289 ], + [ 7.6060996, 46.4196899 ], + [ 7.6063759, 46.4196732 ], + [ 7.6066831, 46.4196276 ], + [ 7.607095, 46.4195405 ], + [ 7.6074518, 46.4194997 ], + [ 7.6076361, 46.4194284 ], + [ 7.6079731, 46.4193034 ], + [ 7.6084529, 46.4191022 ], + [ 7.6085975, 46.419048599999996 ], + [ 7.6087267, 46.4190235 ], + [ 7.6088648, 46.4190039 ], + [ 7.6090265, 46.4189782 ], + [ 7.6091963, 46.4189579 ], + [ 7.6093418, 46.4189325 ], + [ 7.609462, 46.4188851 ], + [ 7.6095885, 46.418781 ], + [ 7.6096599, 46.4187402 ], + [ 7.6098143, 46.4187315 ], + [ 7.6099371, 46.4187517 ], + [ 7.6100736, 46.4187039 ], + [ 7.6101856, 46.4186566 ], + [ 7.6103455, 46.4185857 ], + [ 7.6105235, 46.418554 ], + [ 7.6107258, 46.4185275 ], + [ 7.6108794, 46.4185076 ], + [ 7.6110239, 46.4184595 ], + [ 7.6112832, 46.4184206 ], + [ 7.6114547, 46.4184285 ], + [ 7.6116101, 46.4184592 ], + [ 7.6117834, 46.4185066 ], + [ 7.6119722, 46.4185593 ], + [ 7.6122647, 46.4185309 ], + [ 7.6127001, 46.4184265 ], + [ 7.6132412, 46.41832 ], + [ 7.6134165, 46.4182262 ], + [ 7.613535, 46.418145 ], + [ 7.6136406, 46.418143 ], + [ 7.6138031999999995, 46.4181341 ], + [ 7.6139297, 46.4180357 ], + [ 7.6141077, 46.4180097 ], + [ 7.6143335, 46.4179544 ], + [ 7.6144762, 46.4178502 ], + [ 7.6145748, 46.4176735 ], + [ 7.6147457, 46.4174784 ], + [ 7.6148957, 46.4173514 ], + [ 7.6150113, 46.4174055 ], + [ 7.6151053, 46.4173021 ], + [ 7.6152732, 46.4174398 ], + [ 7.6154323999999995, 46.4171379 ], + [ 7.6155103, 46.4168488 ], + [ 7.6155764, 46.4166671 ], + [ 7.6156596, 46.4164963 ], + [ 7.6157663, 46.4163307 ], + [ 7.6158983, 46.4161589 ], + [ 7.6160457, 46.4159869 ], + [ 7.6161776, 46.4158208 ], + [ 7.6163782, 46.4157491 ], + [ 7.6166031, 46.4156771 ], + [ 7.6167514, 46.4155163 ], + [ 7.6168879, 46.4152543 ], + [ 7.6170860000000005, 46.4149234 ], + [ 7.6172416, 46.4145425 ], + [ 7.6173321, 46.4143491 ], + [ 7.6173882, 46.414128 ], + [ 7.61742, 46.4139132 ], + [ 7.61746, 46.4136926 ], + [ 7.6174672999999995, 46.4134556 ], + [ 7.6174161, 46.4131918 ], + [ 7.6172908, 46.4129123 ], + [ 7.6172024, 46.4127392 ], + [ 7.6171475, 46.4125824 ], + [ 7.6170275, 46.412427 ], + [ 7.6169083, 46.4122941 ], + [ 7.6167964999999995, 46.4121384 ], + [ 7.6165078, 46.4118398 ], + [ 7.6162776999999995, 46.4115794 ], + [ 7.6160125, 46.4112689 ], + [ 7.6156676999999995, 46.4109825 ], + [ 7.6153195, 46.4106286 ], + [ 7.6151408, 46.4104235 ], + [ 7.6149866, 46.4102292 ], + [ 7.6149389, 46.4100442 ], + [ 7.6149336, 46.4099315 ], + [ 7.6149292, 46.4098133 ], + [ 7.6148742, 46.4096453 ], + [ 7.6148264999999995, 46.4094827 ], + [ 7.6146795, 46.40926 ], + [ 7.6146525, 46.4092042 ], + [ 7.6145758, 46.4091099 ], + [ 7.6144891999999995, 46.408982 ], + [ 7.6143602, 46.4088041 ], + [ 7.614289, 46.408642 ], + [ 7.6141754, 46.4084582 ], + [ 7.6140456, 46.4082691 ], + [ 7.6139256, 46.4081193 ], + [ 7.6138407, 46.4080139 ], + [ 7.6137641, 46.4079476 ], + [ 7.6137623, 46.4078913 ], + [ 7.6137588, 46.4078068 ], + [ 7.6136992, 46.4077404 ], + [ 7.6136235, 46.4076798 ], + [ 7.6136208, 46.4076066 ], + [ 7.6136823, 46.4075153 ], + [ 7.6136616, 46.4073972 ], + [ 7.6135678, 46.4073032 ], + [ 7.6134957, 46.4071186 ], + [ 7.6134236, 46.4069565 ], + [ 7.6133316, 46.4068907 ], + [ 7.6132397, 46.4066276 ], + [ 7.6130873999999995, 46.4062753 ], + [ 7.6129892, 46.4060519 ], + [ 7.6128936, 46.4058959 ], + [ 7.6127574, 46.405752 ], + [ 7.6126185, 46.4055349 ], + [ 7.6124805, 46.4053347 ], + [ 7.6116722, 46.4036367 ], + [ 7.611841, 46.4035658 ], + [ 7.6120062, 46.4036414 ], + [ 7.6120035, 46.4035626 ], + [ 7.6119992, 46.4034612 ], + [ 7.6120281, 46.4033704 ], + [ 7.6121058, 46.403273 ], + [ 7.612208, 46.403192 ], + [ 7.6123281, 46.4031446 ], + [ 7.6125069, 46.4031299 ], + [ 7.6126296, 46.4031387 ], + [ 7.6127687, 46.4031754 ], + [ 7.612951, 46.403245 ], + [ 7.613109, 46.4033378 ], + [ 7.6132732, 46.4033683 ], + [ 7.6134357999999995, 46.4033708 ], + [ 7.6136308, 46.4033613 ], + [ 7.6138095, 46.4033408 ], + [ 7.6140615, 46.4033472 ], + [ 7.6142728, 46.4033429 ], + [ 7.6145166, 46.4033326 ], + [ 7.6147116, 46.4033174 ], + [ 7.6149716, 46.4033009 ], + [ 7.6151161, 46.4032529 ], + [ 7.6150702, 46.4031355 ], + [ 7.6150188, 46.4030688 ], + [ 7.6150469, 46.4029612 ], + [ 7.615093, 46.4028926 ], + [ 7.6151292, 46.4027792 ], + [ 7.6151346, 46.4026945 ], + [ 7.6152566, 46.4026978 ], + [ 7.6154101, 46.4026777 ], + [ 7.6155302, 46.4026191 ], + [ 7.6155908, 46.4025164 ], + [ 7.6155945, 46.4023923 ], + [ 7.615572, 46.4022405 ], + [ 7.6155659, 46.402094 ], + [ 7.6155498, 46.401897 ], + [ 7.6155192, 46.4017398 ], + [ 7.6155455, 46.4015701 ], + [ 7.615589, 46.4014396 ], + [ 7.6155574999999995, 46.4012711 ], + [ 7.6155342, 46.4010968 ], + [ 7.6155181, 46.4008886 ], + [ 7.6155165, 46.4006461 ], + [ 7.6155501, 46.4004706 ], + [ 7.6155772, 46.4003236 ], + [ 7.6155476, 46.4001944 ], + [ 7.6154827, 46.3999985 ], + [ 7.6154693, 46.3998578 ], + [ 7.6154965, 46.3997332 ], + [ 7.6154731, 46.3995477 ], + [ 7.6153866, 46.3994253 ], + [ 7.6152846, 46.3993089 ], + [ 7.6151827999999995, 46.3992152 ], + [ 7.6150628000000005, 46.3990653 ], + [ 7.6149356, 46.3989325 ], + [ 7.6147677, 46.3987892 ], + [ 7.614599, 46.3986404 ], + [ 7.6145305, 46.3985515 ], + [ 7.6145026, 46.3984675 ], + [ 7.6144811, 46.3983438 ], + [ 7.6144044, 46.3982553 ], + [ 7.6142961, 46.398201 ], + [ 7.6141228, 46.3981368 ], + [ 7.6140778000000005, 46.3980306 ], + [ 7.6140498999999995, 46.3979352 ], + [ 7.6140437, 46.3977775 ], + [ 7.6141507, 46.3971947 ], + [ 7.6143394, 46.397236 ], + [ 7.6144882, 46.3972839 ], + [ 7.6146201, 46.3973377 ], + [ 7.6147283, 46.3974031 ], + [ 7.6148709, 46.3974962 ], + [ 7.6149439999999995, 46.397506 ], + [ 7.6151318, 46.3975192 ], + [ 7.6153123, 46.3975495 ], + [ 7.6154252, 46.397519 ], + [ 7.6155577999999995, 46.3975898 ], + [ 7.6156328, 46.397639 ], + [ 7.6157085, 46.3976994 ], + [ 7.6158583, 46.397781 ], + [ 7.6159512, 46.3978582 ], + [ 7.6160514, 46.397935 ], + [ 7.6161353, 46.3979955 ], + [ 7.616333, 46.3980479 ], + [ 7.6165062, 46.3981065 ], + [ 7.6166298999999995, 46.3981436 ], + [ 7.6167446, 46.3981806 ], + [ 7.616935, 46.3982558 ], + [ 7.6170595, 46.3983154 ], + [ 7.6169665, 46.3984413 ], + [ 7.6169131, 46.3985325 ], + [ 7.6169256, 46.3986282 ], + [ 7.616996, 46.3987564 ], + [ 7.6170483, 46.3988624 ], + [ 7.6171429, 46.3989733 ], + [ 7.6172422, 46.3990165 ], + [ 7.6173966, 46.3990134 ], + [ 7.6175412, 46.3989768 ], + [ 7.6177208, 46.3989901 ], + [ 7.6177713, 46.3990173 ], + [ 7.6179004, 46.3989922 ], + [ 7.6180458, 46.3989725 ], + [ 7.6181668, 46.398953 ], + [ 7.6182894999999995, 46.3989563 ], + [ 7.6183636, 46.3989831 ], + [ 7.6184214, 46.3990045 ], + [ 7.6184899, 46.3990988 ], + [ 7.6185431, 46.3991936 ], + [ 7.6186568999999995, 46.3992027 ], + [ 7.6187643, 46.3992401 ], + [ 7.6188798, 46.3992885 ], + [ 7.6189637, 46.3993376 ], + [ 7.6190557, 46.3993977 ], + [ 7.6191767, 46.3993728 ], + [ 7.6193392, 46.399364 ], + [ 7.6194611, 46.3993672 ], + [ 7.6196326, 46.399375 ], + [ 7.6197536, 46.3993501 ], + [ 7.6199063, 46.3993019 ], + [ 7.6200824, 46.3992421 ], + [ 7.6202458, 46.3992501 ], + [ 7.6204083, 46.3992469 ], + [ 7.6205392, 46.3992613 ], + [ 7.6207207, 46.3993309 ], + [ 7.6209761, 46.3993992 ], + [ 7.6212722, 46.3994835 ], + [ 7.6213958, 46.3995205 ], + [ 7.6215665, 46.3995172 ], + [ 7.6217452, 46.3995022 ], + [ 7.6220612, 46.3994679 ], + [ 7.6224115, 46.3994835 ], + [ 7.6228016, 46.39947 ], + [ 7.6230877, 46.3995095 ], + [ 7.6233405, 46.3995213 ], + [ 7.623521, 46.3995515 ], + [ 7.6237269, 46.3996151 ], + [ 7.6239254, 46.3996902 ], + [ 7.6240816, 46.3997491 ], + [ 7.6242558, 46.3998246 ], + [ 7.6244219, 46.399917 ], + [ 7.6246295, 46.40002 ], + [ 7.6248443, 46.4000947 ], + [ 7.6250663, 46.400141 ], + [ 7.6252478, 46.4002107 ], + [ 7.6251916, 46.4004316 ], + [ 7.6251852, 46.4006911 ], + [ 7.6251849, 46.4010745 ], + [ 7.6252761, 46.4011235 ], + [ 7.6253655, 46.401116 ], + [ 7.6254702, 46.4010857 ], + [ 7.6256716, 46.4010479 ], + [ 7.625835, 46.4010615 ], + [ 7.625965, 46.4010589 ], + [ 7.6260788, 46.4010512 ], + [ 7.6262422, 46.4010592 ], + [ 7.6263974999999995, 46.4010842 ], + [ 7.6265861, 46.4011199 ], + [ 7.6268578, 46.4011935 ], + [ 7.627088, 46.4012509 ], + [ 7.6272767, 46.4012866 ], + [ 7.6275069, 46.4013497 ], + [ 7.6277029, 46.4013796 ], + [ 7.6279321, 46.4014033 ], + [ 7.6280866, 46.4014115 ], + [ 7.6282337, 46.4014142 ], + [ 7.6283791, 46.4014 ], + [ 7.6285262, 46.4014027 ], + [ 7.6286147, 46.4013896 ], + [ 7.6287962, 46.4014425 ], + [ 7.6290102, 46.4015114 ], + [ 7.6292322, 46.4015578 ], + [ 7.6294038, 46.4015882 ], + [ 7.6295509, 46.4016021 ], + [ 7.6297477, 46.401632 ], + [ 7.6300194, 46.4017056 ], + [ 7.6301837, 46.4017418 ], + [ 7.6304618, 46.401787 ], + [ 7.6306839, 46.4018501 ], + [ 7.6308319000000004, 46.4018811 ], + [ 7.6310458, 46.4019388 ], + [ 7.6312598, 46.4020022 ], + [ 7.6314819, 46.4020654 ], + [ 7.6318266999999995, 46.4021375 ], + [ 7.6316885, 46.4023432 ], + [ 7.6316849, 46.4024617 ], + [ 7.6317137, 46.4025682 ], + [ 7.63184, 46.4026785 ], + [ 7.6319475, 46.4027214 ], + [ 7.6320621, 46.4027416 ], + [ 7.6322002, 46.4027276 ], + [ 7.6323871, 46.4027127 ], + [ 7.6325506, 46.4027375 ], + [ 7.6326499, 46.4027807 ], + [ 7.6327835, 46.4028681 ], + [ 7.6329252, 46.4029556 ], + [ 7.633066, 46.4030092 ], + [ 7.6331815, 46.403052 ], + [ 7.6333864, 46.4030817 ], + [ 7.6334776, 46.403125 ], + [ 7.6335761, 46.4031511 ], + [ 7.6338062, 46.4031974 ], + [ 7.633929, 46.4032174 ], + [ 7.6340988, 46.4032028 ], + [ 7.6342369, 46.4031888 ], + [ 7.6343578999999995, 46.4031639 ], + [ 7.6345115, 46.4031382 ], + [ 7.634674, 46.4031349 ], + [ 7.6347723, 46.4031387 ], + [ 7.634934, 46.4031128 ], + [ 7.63512, 46.4030809 ], + [ 7.6352573, 46.4030725 ], + [ 7.6354695, 46.4030852 ], + [ 7.6355931, 46.403111 ], + [ 7.6356753, 46.4031432 ], + [ 7.6357764, 46.40322 ], + [ 7.63591, 46.4033076 ], + [ 7.6359777, 46.4033739 ], + [ 7.6361365, 46.4034723 ], + [ 7.6361979, 46.403595 ], + [ 7.6363495, 46.403716 ], + [ 7.636484, 46.4038204 ], + [ 7.6365923, 46.4038802 ], + [ 7.636716, 46.4039285 ], + [ 7.6369453, 46.4039577 ], + [ 7.6371737, 46.4039701 ], + [ 7.6373047, 46.4039958 ], + [ 7.6374112, 46.4040217 ], + [ 7.6376847, 46.4041347 ], + [ 7.63785, 46.4042047 ], + [ 7.6380323, 46.40428 ], + [ 7.6382454, 46.4043264 ], + [ 7.6384584, 46.404356 ], + [ 7.6386471, 46.404386099999996 ], + [ 7.6388918, 46.4044149 ], + [ 7.6391284, 46.4044159 ], + [ 7.6394796, 46.4044427 ], + [ 7.639857, 46.4045198 ], + [ 7.6400872, 46.4045771 ], + [ 7.6403653, 46.4046223 ], + [ 7.6406524000000005, 46.404673 ], + [ 7.6408483, 46.4046916 ], + [ 7.6409703, 46.4046948 ], + [ 7.6411165, 46.404675 ], + [ 7.6412935, 46.4046207 ], + [ 7.6414868, 46.4045886 ], + [ 7.6416745, 46.4045905 ], + [ 7.6418226, 46.4046383 ], + [ 7.6420131, 46.4047077 ], + [ 7.6422343, 46.4047485 ], + [ 7.6424881, 46.4047997 ], + [ 7.6427589000000005, 46.4048451 ], + [ 7.6431029, 46.4049057 ], + [ 7.6434631, 46.4049492 ], + [ 7.643772, 46.4049544 ], + [ 7.6440924, 46.4050155 ], + [ 7.6443958, 46.4050771 ], + [ 7.6445439, 46.4051193 ], + [ 7.6447001, 46.4051613 ], + [ 7.6449574, 46.4052746 ], + [ 7.6451975, 46.4053825 ], + [ 7.6453383, 46.4054359 ], + [ 7.6455514, 46.4054713 ], + [ 7.6457547, 46.405484 ], + [ 7.6459098999999995, 46.4054809 ], + [ 7.6461113, 46.4054487 ], + [ 7.6464047, 46.4054429 ], + [ 7.6466178, 46.405478 ], + [ 7.6467984, 46.4055307 ], + [ 7.6469311, 46.4055957 ], + [ 7.6470566, 46.4056722 ], + [ 7.6472236, 46.4057703 ], + [ 7.6473491, 46.4058637 ], + [ 7.6474232, 46.4058846 ], + [ 7.6475712, 46.4059155 ], + [ 7.6477428, 46.4059402 ], + [ 7.6478981, 46.4059652 ], + [ 7.6480064, 46.4060138 ], + [ 7.64814, 46.4060958 ], + [ 7.648242, 46.4062009 ], + [ 7.6483432, 46.4063002 ], + [ 7.6484307, 46.4064395 ], + [ 7.6484921, 46.406551 ], + [ 7.6485788, 46.4066959 ], + [ 7.6486013, 46.4068533 ], + [ 7.6486599, 46.4070776 ], + [ 7.6487123, 46.4071724 ], + [ 7.6487989, 46.4072947 ], + [ 7.6489678, 46.4074604 ], + [ 7.6491962000000004, 46.4076701 ], + [ 7.6492593, 46.407821 ], + [ 7.6493875, 46.4079706 ], + [ 7.6495798, 46.4080964 ], + [ 7.6497866, 46.4081768 ], + [ 7.6500167999999995, 46.4082287 ], + [ 7.6503338, 46.4082336 ], + [ 7.6505831, 46.4081608 ], + [ 7.6504484999999995, 46.4084567 ], + [ 7.6504457, 46.4085808 ], + [ 7.650508, 46.4087148 ], + [ 7.6506416999999995, 46.4088024 ], + [ 7.6507907, 46.408867 ], + [ 7.6509811, 46.4089365 ], + [ 7.6512105, 46.4089826 ], + [ 7.6513514, 46.4090474 ], + [ 7.6514516, 46.4091018 ], + [ 7.6514949, 46.4091686 ], + [ 7.6516051, 46.4092792 ], + [ 7.6516573999999995, 46.4093569 ], + [ 7.6517105999999995, 46.409463 ], + [ 7.6517305, 46.4095585 ], + [ 7.6517919, 46.40967 ], + [ 7.6519021, 46.4097862 ], + [ 7.6521503, 46.4098714 ], + [ 7.6523499, 46.4099858 ], + [ 7.6524592, 46.4100624 ], + [ 7.6525666, 46.410111 ], + [ 7.6527807, 46.4101744 ], + [ 7.6530027, 46.410215 ], + [ 7.6532321, 46.4102611 ], + [ 7.6533161, 46.4103328 ], + [ 7.6533676, 46.4103881 ], + [ 7.6534046, 46.4105114 ], + [ 7.6534425, 46.410629 ], + [ 7.6535906, 46.4106712 ], + [ 7.6538281, 46.410705899999996 ], + [ 7.6541540999999995, 46.4107274 ], + [ 7.6540367, 46.4108425 ], + [ 7.6539202, 46.4109802 ], + [ 7.6539012, 46.4111159 ], + [ 7.6539760999999995, 46.4111538 ], + [ 7.6541242, 46.4111904 ], + [ 7.6543355, 46.4111804 ], + [ 7.6545134, 46.4111431 ], + [ 7.6547067, 46.4110997 ], + [ 7.6549704, 46.4109872 ], + [ 7.6554255, 46.4109612 ], + [ 7.6554508, 46.4111918 ], + [ 7.6555437, 46.4112633 ], + [ 7.6556188, 46.4113237 ], + [ 7.6556865, 46.4113845 ], + [ 7.6558363, 46.4114547 ], + [ 7.6559528, 46.4115256 ], + [ 7.6561596, 46.4116061 ], + [ 7.6563574, 46.4116696 ], + [ 7.6565705, 46.4117105 ], + [ 7.6567845, 46.4117569 ], + [ 7.6568441, 46.4118347 ], + [ 7.6569363, 46.4119004 ], + [ 7.6570211, 46.4119663 ], + [ 7.6570336999999995, 46.4120845 ], + [ 7.6571385, 46.4122685 ], + [ 7.6572486, 46.4123677 ], + [ 7.6573805, 46.4124045 ], + [ 7.6575683, 46.412429 ], + [ 7.6577318, 46.412437 ], + [ 7.6578401, 46.4124968 ], + [ 7.6579882, 46.4125388 ], + [ 7.6581273, 46.4125699 ], + [ 7.6582258, 46.4125849 ], + [ 7.6583241, 46.4125941 ], + [ 7.6583928, 46.4126829 ], + [ 7.6585102, 46.4127707 ], + [ 7.6586267, 46.4128305 ], + [ 7.6587911, 46.4128778 ], + [ 7.6589390999999996, 46.4129031 ], + [ 7.6590692, 46.4129117 ], + [ 7.6592714, 46.4128682 ], + [ 7.6593618, 46.4129002 ], + [ 7.6595253, 46.4129194 ], + [ 7.6596426, 46.4130015 ], + [ 7.6597843999999995, 46.413089 ], + [ 7.6599678, 46.4131923 ], + [ 7.6601899, 46.4132498 ], + [ 7.6603949, 46.4132909 ], + [ 7.660422, 46.4133466 ], + [ 7.6605384999999995, 46.4134177 ], + [ 7.6607028, 46.4134537 ], + [ 7.6609151, 46.413472 ], + [ 7.6610785, 46.4134688 ], + [ 7.6612482, 46.4134427 ], + [ 7.6614018, 46.4134227 ], + [ 7.6616122, 46.4133903 ], + [ 7.6617107, 46.4134165 ], + [ 7.6618425, 46.413459 ], + [ 7.6619915, 46.4135067 ], + [ 7.6621974, 46.4135645 ], + [ 7.6622941, 46.4135513 ], + [ 7.6624168, 46.4135544 ], + [ 7.6625957, 46.4135678 ], + [ 7.6627998, 46.4135805 ], + [ 7.6629876, 46.413588 ], + [ 7.6632874, 46.4135538 ], + [ 7.6634906, 46.4135384 ], + [ 7.6637164, 46.4134887 ], + [ 7.663925, 46.4134225 ], + [ 7.6641435, 46.4133843 ], + [ 7.6643964, 46.4134016 ], + [ 7.664559, 46.4134097 ], + [ 7.6648344, 46.4133703 ], + [ 7.6650601, 46.413315 ], + [ 7.665294, 46.4132652 ], + [ 7.6656408, 46.4131792 ], + [ 7.6659316, 46.4131225 ], + [ 7.6663028, 46.4130587 ], + [ 7.6666495999999995, 46.4129784 ], + [ 7.6668959999999995, 46.4128268 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "JBG0024", + "country" : "CHE", + "name" : [ + { + "text" : "Eidgenössisches Jagdbanngebiet Leukerbad", + "lang" : "de-CH" + }, + { + "text" : "District franc fédéral Leukerbad", + "lang" : "fr-CH" + }, + { + "text" : "Bandita federale di caccia Leukerbad", + "lang" : "it-CH" + }, + { + "text" : "Federal Game Reserve Leukerbad", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6298669, 47.5190691 ], + [ 7.6300569, 47.5190189 ], + [ 7.6304698, 47.5188673 ], + [ 7.6308301, 47.5188021 ], + [ 7.6311373, 47.5187298 ], + [ 7.6318366, 47.5186065 ], + [ 7.6318575, 47.5185275 ], + [ 7.6318469, 47.5185131 ], + [ 7.631804, 47.5183983 ], + [ 7.6316023, 47.5183052 ], + [ 7.6314004, 47.5181978 ], + [ 7.6311876, 47.5179755 ], + [ 7.6309113, 47.517818 ], + [ 7.6308153, 47.517653 ], + [ 7.6307085, 47.5174305 ], + [ 7.6306057, 47.5173899 ], + [ 7.6306142999999995, 47.5175851 ], + [ 7.630539, 47.5177752 ], + [ 7.6304542, 47.517853099999996 ], + [ 7.6304909, 47.5179714 ], + [ 7.6304316, 47.5181857 ], + [ 7.6302036, 47.5183328 ], + [ 7.630158, 47.5184135 ], + [ 7.6300773, 47.5184622 ], + [ 7.6300579, 47.518531 ], + [ 7.6300821, 47.5185903 ], + [ 7.6300763, 47.5186766 ], + [ 7.6299969, 47.5188655 ], + [ 7.6299406, 47.5189242 ], + [ 7.6298669, 47.5190691 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr094", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Asphof", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Asphof", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Asphof", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Asphof", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.2132139, 46.1587359 ], + [ 7.2132092, 46.1585946 ], + [ 7.2131938, 46.1584537 ], + [ 7.2131679, 46.1583136 ], + [ 7.2131314, 46.1581746 ], + [ 7.2130845, 46.1580372 ], + [ 7.2130273, 46.1579016 ], + [ 7.21296, 46.1577683 ], + [ 7.2128828, 46.1576376 ], + [ 7.2127958, 46.1575099 ], + [ 7.2126993, 46.1573855 ], + [ 7.2125935, 46.1572648 ], + [ 7.2124789, 46.1571482 ], + [ 7.2123556, 46.1570358 ], + [ 7.212224, 46.1569281 ], + [ 7.2120845, 46.1568254 ], + [ 7.2119374, 46.1567278 ], + [ 7.2117832, 46.1566357 ], + [ 7.2116222, 46.1565494 ], + [ 7.211455, 46.156469 ], + [ 7.211282, 46.1563949 ], + [ 7.2111036, 46.1563271 ], + [ 7.2109203, 46.1562659 ], + [ 7.2107327, 46.1562114 ], + [ 7.2105413, 46.1561639 ], + [ 7.2103465, 46.1561234 ], + [ 7.210149, 46.15609 ], + [ 7.2099492, 46.1560638 ], + [ 7.2097477, 46.156045 ], + [ 7.2095451, 46.1560335 ], + [ 7.2093418, 46.1560294 ], + [ 7.2091386, 46.1560326 ], + [ 7.2089359, 46.1560433 ], + [ 7.2087342, 46.1560613 ], + [ 7.2085342, 46.1560867 ], + [ 7.2083364, 46.1561193 ], + [ 7.2081413, 46.156159 ], + [ 7.2079494, 46.1562058 ], + [ 7.2077614, 46.1562594 ], + [ 7.2075776, 46.1563199 ], + [ 7.2073986, 46.1563869 ], + [ 7.207225, 46.1564604 ], + [ 7.2070571, 46.1565401 ], + [ 7.2068954, 46.1566258 ], + [ 7.2067404, 46.1567172 ], + [ 7.2065925, 46.1568141 ], + [ 7.2064522, 46.1569163 ], + [ 7.2063197, 46.1570235 ], + [ 7.2061954, 46.1571353 ], + [ 7.2060798, 46.1572515 ], + [ 7.205973, 46.1573718 ], + [ 7.2058755, 46.1574957 ], + [ 7.2057874, 46.1576231 ], + [ 7.205709, 46.1577535 ], + [ 7.2056406, 46.1578865 ], + [ 7.2055823, 46.1580218 ], + [ 7.2055342, 46.1581591 ], + [ 7.2054966, 46.158298 ], + [ 7.2054694, 46.158438 ], + [ 7.2054529, 46.1585788 ], + [ 7.2054469, 46.15872 ], + [ 7.2054516, 46.1588613 ], + [ 7.205467, 46.1590022 ], + [ 7.2054929, 46.1591423 ], + [ 7.2055294, 46.1592813 ], + [ 7.2055763, 46.1594188 ], + [ 7.2056334, 46.1595544 ], + [ 7.2057007, 46.1596877 ], + [ 7.205778, 46.1598184 ], + [ 7.205865, 46.1599461 ], + [ 7.2059614, 46.1600704 ], + [ 7.2060672, 46.1601911 ], + [ 7.2061818, 46.1603078 ], + [ 7.2063051, 46.1604201 ], + [ 7.2064367, 46.1605278 ], + [ 7.2065762, 46.1606306 ], + [ 7.2067233, 46.1607282 ], + [ 7.2068775, 46.1608203 ], + [ 7.2070384, 46.1609066 ], + [ 7.2072057, 46.160987 ], + [ 7.2073787, 46.1610612 ], + [ 7.2075571, 46.1611289 ], + [ 7.2077404, 46.1611901 ], + [ 7.207928, 46.1612446 ], + [ 7.2081195, 46.1612921 ], + [ 7.2083142, 46.1613327 ], + [ 7.2085118, 46.1613661 ], + [ 7.2087116, 46.1613922 ], + [ 7.2089131, 46.1614111 ], + [ 7.2091158, 46.1614226 ], + [ 7.209319, 46.1614267 ], + [ 7.2095223, 46.1614234 ], + [ 7.2097251, 46.1614127 ], + [ 7.2099267, 46.1613947 ], + [ 7.2101268, 46.1613694 ], + [ 7.2103246, 46.1613368 ], + [ 7.2105197, 46.161297 ], + [ 7.2107116, 46.1612503 ], + [ 7.2108997, 46.1611966 ], + [ 7.2110834, 46.1611361 ], + [ 7.2112624, 46.1610691 ], + [ 7.2114361, 46.1609956 ], + [ 7.211604, 46.1609159 ], + [ 7.2117656, 46.1608302 ], + [ 7.2119206, 46.1607388 ], + [ 7.2120685, 46.1606418 ], + [ 7.2122089, 46.1605396 ], + [ 7.2123414, 46.1604325 ], + [ 7.2124656, 46.1603206 ], + [ 7.2125813, 46.1602044 ], + [ 7.212688, 46.1600842 ], + [ 7.2127856, 46.1599602 ], + [ 7.2128736, 46.1598329 ], + [ 7.212952, 46.1597025 ], + [ 7.2130203999999996, 46.1595694 ], + [ 7.2130787, 46.1594341 ], + [ 7.2131267, 46.1592968 ], + [ 7.2131644, 46.1591579 ], + [ 7.2131915, 46.1590179 ], + [ 7.213208, 46.1588771 ], + [ 7.2132139, 46.1587359 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0094", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Riddes", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Riddes", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Riddes", + "lang" : "it-CH" + }, + { + "text" : "Substation Riddes", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.49149, 47.4079927 ], + [ 7.4916053, 47.4081975 ], + [ 7.4917850999999995, 47.4084486 ], + [ 7.4919694, 47.4086457 ], + [ 7.4922549, 47.4089046 ], + [ 7.492453, 47.409076 ], + [ 7.4926314, 47.4092113 ], + [ 7.492735, 47.4092802 ], + [ 7.4926639999999995, 47.4088149 ], + [ 7.4926679, 47.4085592 ], + [ 7.492676, 47.4085435 ], + [ 7.4926462, 47.4083645 ], + [ 7.4926256, 47.4082777 ], + [ 7.4925715, 47.4081791 ], + [ 7.4923479, 47.4080078 ], + [ 7.4916998, 47.4076791 ], + [ 7.4912304, 47.4074913 ], + [ 7.49149, 47.4079927 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns195", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Birshollen", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Birshollen", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Birshollen", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Birshollen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.846078, 47.405976 ], + [ 7.8460774, 47.4059764 ], + [ 7.8460406, 47.405994 ], + [ 7.8460149999999995, 47.4060129 ], + [ 7.8456621, 47.4062737 ], + [ 7.8454491, 47.4065185 ], + [ 7.8453783, 47.4066933 ], + [ 7.845412, 47.4067122 ], + [ 7.8453424, 47.4070158 ], + [ 7.8453423, 47.4070184 ], + [ 7.8453379, 47.407124 ], + [ 7.8454281, 47.4071465 ], + [ 7.8454766, 47.4071731 ], + [ 7.8454955, 47.4071823 ], + [ 7.845495, 47.4072048 ], + [ 7.8455288, 47.4072109 ], + [ 7.8455515, 47.407218 ], + [ 7.8455461, 47.4072297 ], + [ 7.845536, 47.4072405 ], + [ 7.8455416, 47.4072435 ], + [ 7.845537, 47.4072595 ], + [ 7.8455232, 47.407273 ], + [ 7.8455196, 47.407284 ], + [ 7.8455132, 47.4072975 ], + [ 7.8454966, 47.4073098 ], + [ 7.845504, 47.4073153 ], + [ 7.8454985, 47.4073245 ], + [ 7.8455005, 47.4073386 ], + [ 7.8454857, 47.4073496 ], + [ 7.8454831, 47.4073692 ], + [ 7.8454776, 47.4073797 ], + [ 7.8454692999999995, 47.4073932 ], + [ 7.8454667, 47.4074079 ], + [ 7.8454556, 47.4074177 ], + [ 7.8454557, 47.407425 ], + [ 7.845452, 47.4074367 ], + [ 7.8454447, 47.4074502 ], + [ 7.8454364, 47.40746 ], + [ 7.8454328, 47.4074717 ], + [ 7.8454209, 47.4074913 ], + [ 7.84542, 47.4075011 ], + [ 7.8454136, 47.4075103 ], + [ 7.8454155, 47.4075176 ], + [ 7.8454128, 47.407528 ], + [ 7.8454054, 47.4075372 ], + [ 7.8454044, 47.4075452 ], + [ 7.8454064, 47.4075574 ], + [ 7.8454065, 47.4075576 ], + [ 7.8454136, 47.4075644 ], + [ 7.845426, 47.407572 ], + [ 7.845439, 47.4075758 ], + [ 7.8454467, 47.4075805 ], + [ 7.8454513, 47.4075864 ], + [ 7.8454636, 47.4075855 ], + [ 7.845474, 47.4075915 ], + [ 7.8454908, 47.4075914 ], + [ 7.8454992, 47.4075931 ], + [ 7.8455051000000005, 47.4076029 ], + [ 7.8455071, 47.4076033 ], + [ 7.8455123, 47.4076131 ], + [ 7.8455087, 47.4076455 ], + [ 7.8455107, 47.4076565 ], + [ 7.8455036, 47.4076642 ], + [ 7.8455069, 47.4076689 ], + [ 7.8455051000000005, 47.4076902 ], + [ 7.8454994, 47.4077022 ], + [ 7.8455039, 47.4077043 ], + [ 7.8455009, 47.4077252 ], + [ 7.8454984, 47.4077482 ], + [ 7.8454927, 47.4077606 ], + [ 7.8454781, 47.4077656 ], + [ 7.8454708, 47.4077681 ], + [ 7.8454429999999995, 47.4077679 ], + [ 7.8454068, 47.407774 ], + [ 7.8453855, 47.4077881 ], + [ 7.8453791, 47.4078187 ], + [ 7.8453843, 47.4078464 ], + [ 7.8453871, 47.4078504 ], + [ 7.8453831, 47.4078798 ], + [ 7.8453794, 47.4078867 ], + [ 7.8453833, 47.407906 ], + [ 7.8453777, 47.4079147 ], + [ 7.8453827, 47.4079221 ], + [ 7.845373, 47.4079374 ], + [ 7.8453738, 47.4079495 ], + [ 7.8453683, 47.4079648 ], + [ 7.8453678, 47.4080013 ], + [ 7.8453568, 47.4080319 ], + [ 7.8453591, 47.4080555 ], + [ 7.8453599, 47.4080685 ], + [ 7.8453528, 47.4081123 ], + [ 7.8457650999999995, 47.4080683 ], + [ 7.8457676, 47.4080681 ], + [ 7.8458342, 47.4077839 ], + [ 7.8458354, 47.4077786 ], + [ 7.8458409, 47.4077667 ], + [ 7.8458632999999995, 47.4077175 ], + [ 7.8459017, 47.4076333 ], + [ 7.8459155, 47.4076031 ], + [ 7.845954, 47.4075187 ], + [ 7.8460546, 47.4072983 ], + [ 7.8462439, 47.4073394 ], + [ 7.8464228, 47.4073782 ], + [ 7.8464943, 47.4073937 ], + [ 7.8468195, 47.4073793 ], + [ 7.8468634999999995, 47.4073 ], + [ 7.8467641, 47.4072856 ], + [ 7.8467696, 47.4072652 ], + [ 7.8467812, 47.4072414 ], + [ 7.8469616, 47.4068687 ], + [ 7.8469638, 47.4068511 ], + [ 7.8469786, 47.4067322 ], + [ 7.8469945, 47.4066049 ], + [ 7.847054, 47.4064374 ], + [ 7.8472147, 47.4060985 ], + [ 7.8472147, 47.4060983 ], + [ 7.8472133, 47.4060982 ], + [ 7.8469524, 47.406071 ], + [ 7.846078, 47.405976 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr086", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Papur", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Papur", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Papur", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Papur", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7855018, 47.5013107 ], + [ 7.7854814999999995, 47.5013648 ], + [ 7.7854765, 47.5013779 ], + [ 7.785471, 47.501392 ], + [ 7.7854672, 47.5014011 ], + [ 7.7854642, 47.5014083 ], + [ 7.7854599, 47.5014183 ], + [ 7.7854564, 47.5014273 ], + [ 7.7854551999999995, 47.50143 ], + [ 7.7854521, 47.5014372 ], + [ 7.7854445, 47.5014564 ], + [ 7.7854425, 47.5014618 ], + [ 7.7854414, 47.5014645 ], + [ 7.7854402, 47.5014673 ], + [ 7.7854385, 47.5014713 ], + [ 7.7854364, 47.5014761 ], + [ 7.7854323999999995, 47.5014847 ], + [ 7.7854259, 47.5014981 ], + [ 7.7854225, 47.5015048 ], + [ 7.785419, 47.5015115 ], + [ 7.7854126, 47.5015228 ], + [ 7.785406, 47.5015341 ], + [ 7.7853991, 47.5015452 ], + [ 7.7853956, 47.5015506 ], + [ 7.785386, 47.5015656 ], + [ 7.7853824, 47.5015709 ], + [ 7.7853782, 47.5015774 ], + [ 7.7853726, 47.5015857 ], + [ 7.7853707, 47.5015884 ], + [ 7.7853659, 47.5015947 ], + [ 7.7853638, 47.5015973 ], + [ 7.7853601, 47.5016017 ], + [ 7.7853557, 47.5016068 ], + [ 7.7853498, 47.5016138 ], + [ 7.7853397, 47.5016263 ], + [ 7.7853375, 47.5016289 ], + [ 7.7853337, 47.5016333 ], + [ 7.785323, 47.5016452 ], + [ 7.7853198, 47.5016488 ], + [ 7.7853174, 47.5016513 ], + [ 7.7853125, 47.5016563 ], + [ 7.7853101, 47.5016588 ], + [ 7.7853068, 47.5016624 ], + [ 7.7853044, 47.5016649 ], + [ 7.7852993999999995, 47.5016699 ], + [ 7.7852969, 47.5016724 ], + [ 7.7852935, 47.5016759 ], + [ 7.785291, 47.5016784 ], + [ 7.7852743, 47.5016941 ], + [ 7.7852543, 47.5017121 ], + [ 7.7852515, 47.5017145 ], + [ 7.7852401, 47.501724 ], + [ 7.7852277999999995, 47.5017347 ], + [ 7.7852249, 47.501737 ], + [ 7.7852219, 47.5017394 ], + [ 7.7852185, 47.5017421 ], + [ 7.785208, 47.50175 ], + [ 7.7852011999999995, 47.5017554 ], + [ 7.7851979, 47.5017581 ], + [ 7.7851882, 47.5017662 ], + [ 7.7851849, 47.501769 ], + [ 7.7851814, 47.5017717 ], + [ 7.7851778, 47.5017743 ], + [ 7.7851742, 47.501777 ], + [ 7.7851668, 47.5017822 ], + [ 7.7851593, 47.5017875 ], + [ 7.7851441, 47.5017979 ], + [ 7.7850946, 47.5018317 ], + [ 7.7850831, 47.5018394 ], + [ 7.7850753, 47.5018444 ], + [ 7.7850714, 47.5018468 ], + [ 7.7850675, 47.5018492 ], + [ 7.7850635, 47.5018515 ], + [ 7.7850515, 47.5018581 ], + [ 7.7850477, 47.5018603 ], + [ 7.7850401, 47.5018649 ], + [ 7.7850287, 47.5018719 ], + [ 7.7850249, 47.5018742 ], + [ 7.7850211, 47.5018764 ], + [ 7.7850172, 47.5018786 ], + [ 7.7850017, 47.501886999999996 ], + [ 7.7849877, 47.5018949 ], + [ 7.7849817, 47.5018981 ], + [ 7.7849614, 47.5019086 ], + [ 7.7849578, 47.5019104 ], + [ 7.7849516, 47.5019134 ], + [ 7.7849417, 47.501918 ], + [ 7.7849183, 47.5019288 ], + [ 7.7848786, 47.5019469 ], + [ 7.7848686, 47.5019514 ], + [ 7.7848623, 47.5019541 ], + [ 7.7848586, 47.5019558 ], + [ 7.7848521999999996, 47.5019584 ], + [ 7.7848485, 47.50196 ], + [ 7.7848431, 47.5019621 ], + [ 7.7848291, 47.5019677 ], + [ 7.7848021, 47.5019781 ], + [ 7.7847836, 47.5019849 ], + [ 7.7847657, 47.5019917 ], + [ 7.7847526, 47.5019964 ], + [ 7.7847393, 47.5020009 ], + [ 7.784726, 47.5020053 ], + [ 7.7847042, 47.5020121 ], + [ 7.7846963, 47.5020146 ], + [ 7.7846829, 47.5020189 ], + [ 7.7846734, 47.5020217 ], + [ 7.7846665999999995, 47.5020237 ], + [ 7.7846501, 47.5020284 ], + [ 7.7846445, 47.50203 ], + [ 7.7846281, 47.5020346 ], + [ 7.7846202, 47.5020369 ], + [ 7.7846105, 47.5020395 ], + [ 7.7845978, 47.5020426 ], + [ 7.7845534, 47.502053 ], + [ 7.7845444, 47.5020552 ], + [ 7.7845272, 47.5020594 ], + [ 7.7845075, 47.5020639 ], + [ 7.7845016, 47.5020651 ], + [ 7.7844755, 47.5020706 ], + [ 7.7844611, 47.5020735 ], + [ 7.7844492, 47.5020757 ], + [ 7.7844245999999995, 47.5020804 ], + [ 7.7844126, 47.5020826 ], + [ 7.784388, 47.5020872 ], + [ 7.7843761, 47.5020894 ], + [ 7.7843659, 47.5020914 ], + [ 7.7843471, 47.5020951 ], + [ 7.7843427, 47.502096 ], + [ 7.7843326, 47.5020982 ], + [ 7.7843226, 47.5021004 ], + [ 7.7843086, 47.5021036 ], + [ 7.7843028, 47.502105 ], + [ 7.7842944, 47.5021071 ], + [ 7.7842902, 47.5021082 ], + [ 7.7842862, 47.5021093 ], + [ 7.7842796, 47.5021112 ], + [ 7.7842731, 47.5021133 ], + [ 7.7842606, 47.5021173 ], + [ 7.7842489, 47.5021212 ], + [ 7.784238, 47.502125 ], + [ 7.7841752, 47.5021466 ], + [ 7.7841819999999995, 47.5021729 ], + [ 7.7841898, 47.5022033 ], + [ 7.784193, 47.5022155 ], + [ 7.7841942, 47.5022198 ], + [ 7.7841956, 47.5022244 ], + [ 7.7841975, 47.5022305 ], + [ 7.784199, 47.5022351 ], + [ 7.7842011, 47.5022407 ], + [ 7.7842022, 47.5022436 ], + [ 7.7842034, 47.5022464 ], + [ 7.7842052, 47.5022503 ], + [ 7.7842065, 47.5022531 ], + [ 7.7842085, 47.502257 ], + [ 7.7842099000000005, 47.5022598 ], + [ 7.7842125, 47.5022645 ], + [ 7.7842148, 47.5022684 ], + [ 7.7842164, 47.5022711 ], + [ 7.7842189, 47.502275 ], + [ 7.7842225, 47.5022804 ], + [ 7.7842252, 47.5022842 ], + [ 7.7842287, 47.5022888 ], + [ 7.7842308, 47.5022914 ], + [ 7.7842339, 47.5022951 ], + [ 7.784237, 47.5022985 ], + [ 7.7842402, 47.5023019 ], + [ 7.7842436, 47.5023052 ], + [ 7.784248, 47.5023093 ], + [ 7.7842506, 47.5023116 ], + [ 7.7842525, 47.5023132 ], + [ 7.7842568, 47.5023168 ], + [ 7.7842613, 47.5023203 ], + [ 7.7842657, 47.5023236 ], + [ 7.7842701, 47.5023267 ], + [ 7.7842743, 47.5023296 ], + [ 7.7842787, 47.5023324 ], + [ 7.7842829, 47.502335 ], + [ 7.7842869, 47.5023374 ], + [ 7.7842909, 47.5023396 ], + [ 7.7842974, 47.5023431 ], + [ 7.7843037, 47.5023464 ], + [ 7.7843143999999995, 47.502352 ], + [ 7.784318, 47.5023538 ], + [ 7.7843216, 47.5023555 ], + [ 7.7843253, 47.5023572 ], + [ 7.7843279, 47.5023583 ], + [ 7.7843342, 47.5023609 ], + [ 7.7843406, 47.5023634 ], + [ 7.7843444, 47.5023649 ], + [ 7.7843482, 47.5023663 ], + [ 7.7843575, 47.5023694 ], + [ 7.7843614, 47.5023707 ], + [ 7.7843698, 47.5023732 ], + [ 7.7843777, 47.5023756 ], + [ 7.7843911, 47.5023797 ], + [ 7.784394, 47.5023806 ], + [ 7.7844008, 47.5023825 ], + [ 7.7844049, 47.5023835 ], + [ 7.7844088, 47.5023844 ], + [ 7.7844209, 47.5023868 ], + [ 7.7844311, 47.5023886 ], + [ 7.7844351, 47.5023892 ], + [ 7.7844476, 47.5023909 ], + [ 7.7844523, 47.5023914 ], + [ 7.7844616, 47.5023924 ], + [ 7.7844662, 47.502393 ], + [ 7.7844736999999995, 47.5023939 ], + [ 7.7844811, 47.502394699999996 ], + [ 7.7844857, 47.5023952 ], + [ 7.7844904, 47.5023955 ], + [ 7.7844951, 47.5023957 ], + [ 7.7844998, 47.5023959 ], + [ 7.7845187, 47.5023965 ], + [ 7.7845234, 47.5023967 ], + [ 7.784528, 47.502397 ], + [ 7.7845327, 47.5023973 ], + [ 7.7845419, 47.502398 ], + [ 7.7845606, 47.5023993 ], + [ 7.7845638, 47.5023994 ], + [ 7.7845685, 47.5023996 ], + [ 7.7845733, 47.5023997 ], + [ 7.7845781, 47.5023996 ], + [ 7.7845829, 47.5023995 ], + [ 7.7845877, 47.5023992 ], + [ 7.7845924, 47.5023989 ], + [ 7.7846073, 47.5023973 ], + [ 7.7846122, 47.5023969 ], + [ 7.7846171, 47.5023965 ], + [ 7.7846221, 47.5023963 ], + [ 7.7846271, 47.502396 ], + [ 7.7846421, 47.5023954 ], + [ 7.7846471, 47.5023952 ], + [ 7.7846521, 47.5023949 ], + [ 7.7846571, 47.5023946 ], + [ 7.7846619, 47.5023941 ], + [ 7.7846769, 47.5023924 ], + [ 7.7846816, 47.5023919 ], + [ 7.7846863, 47.5023914 ], + [ 7.7847005, 47.5023903 ], + [ 7.7847052, 47.5023898 ], + [ 7.7847265, 47.5023875 ], + [ 7.7847314999999995, 47.502387 ], + [ 7.7847467, 47.5023858 ], + [ 7.7847562, 47.5023849 ], + [ 7.7847612, 47.5023845 ], + [ 7.7847764999999995, 47.5023834 ], + [ 7.7847861, 47.5023826 ], + [ 7.7847909, 47.5023823 ], + [ 7.7847957, 47.502382 ], + [ 7.7848005, 47.5023818 ], + [ 7.784815, 47.5023811 ], + [ 7.7848199000000005, 47.5023808 ], + [ 7.7848292, 47.5023802 ], + [ 7.7848342, 47.5023799 ], + [ 7.7848393, 47.5023797 ], + [ 7.7848444, 47.5023795 ], + [ 7.7848495, 47.5023794 ], + [ 7.7848547, 47.5023793 ], + [ 7.784865, 47.5023791 ], + [ 7.7848806, 47.502379 ], + [ 7.7849013, 47.5023789 ], + [ 7.7849117, 47.502379 ], + [ 7.784922, 47.502379 ], + [ 7.7849322999999995, 47.5023792 ], + [ 7.7849374000000005, 47.5023794 ], + [ 7.7849425, 47.5023796 ], + [ 7.7849474999999995, 47.50238 ], + [ 7.7849661, 47.5023815 ], + [ 7.7849708, 47.5023819 ], + [ 7.7849799, 47.5023828 ], + [ 7.7849893, 47.5023837 ], + [ 7.784994, 47.5023842 ], + [ 7.7850152, 47.5023866 ], + [ 7.7850202, 47.5023871 ], + [ 7.7850302, 47.5023881 ], + [ 7.7850352, 47.5023886 ], + [ 7.7850401, 47.5023893 ], + [ 7.7850486, 47.5023906 ], + [ 7.7850532, 47.5023913 ], + [ 7.7850623, 47.5023926 ], + [ 7.7850669, 47.5023933 ], + [ 7.7850741, 47.5023945 ], + [ 7.7850771, 47.5023951 ], + [ 7.7851016, 47.5023998 ], + [ 7.7851135, 47.5024019 ], + [ 7.7851236, 47.5024039 ], + [ 7.7851307, 47.5024054 ], + [ 7.7851336, 47.5024061 ], + [ 7.7851436, 47.5024083 ], + [ 7.7851534000000004, 47.5024107 ], + [ 7.7851615, 47.5024129 ], + [ 7.7851693, 47.5024147 ], + [ 7.7851731, 47.5024157 ], + [ 7.7851771, 47.5024168 ], + [ 7.7851868, 47.5024195 ], + [ 7.7851948, 47.5024218 ], + [ 7.7852033, 47.5024242 ], + [ 7.7852112, 47.5024265 ], + [ 7.7852196, 47.5024288 ], + [ 7.7852331, 47.5024329 ], + [ 7.7852466, 47.5024373 ], + [ 7.7852599, 47.5024419 ], + [ 7.785273, 47.5024466 ], + [ 7.7852768, 47.502448 ], + [ 7.7852833, 47.5024506 ], + [ 7.7853072, 47.5024606 ], + [ 7.785311, 47.5024622 ], + [ 7.7853163, 47.5024643 ], + [ 7.7853200000000005, 47.5024659 ], + [ 7.7853262999999995, 47.5024687 ], + [ 7.78533, 47.5024704 ], + [ 7.7853335999999995, 47.5024722 ], + [ 7.7853469, 47.5024789 ], + [ 7.7853531, 47.502482 ], + [ 7.7853566, 47.5024839 ], + [ 7.7853601, 47.502485899999996 ], + [ 7.7853706, 47.5024918 ], + [ 7.7853801, 47.5024971 ], + [ 7.7853997, 47.5025087 ], + [ 7.7854031, 47.5025107 ], + [ 7.7854065, 47.5025129 ], + [ 7.7854098, 47.502515 ], + [ 7.785413, 47.5025172 ], + [ 7.7854161, 47.5025195 ], + [ 7.7854275, 47.5025279 ], + [ 7.7854433, 47.5025394 ], + [ 7.7854464, 47.5025417 ], + [ 7.7854495, 47.502544 ], + [ 7.7854524, 47.5025464 ], + [ 7.7854631, 47.5025551 ], + [ 7.7854659999999996, 47.5025575 ], + [ 7.7854763, 47.5025664 ], + [ 7.785479, 47.5025688 ], + [ 7.785486, 47.5025754 ], + [ 7.7855016, 47.5025905 ], + [ 7.7855093, 47.5025979 ], + [ 7.7855118, 47.5026004 ], + [ 7.7855237, 47.5026133 ], + [ 7.7855261, 47.5026158 ], + [ 7.7855299, 47.5026202 ], + [ 7.7855321, 47.5026227 ], + [ 7.7855335, 47.5026246 ], + [ 7.785539, 47.5026317 ], + [ 7.7855435, 47.5026381 ], + [ 7.7855453, 47.5026407 ], + [ 7.7855489, 47.5026465 ], + [ 7.7855523, 47.5026519 ], + [ 7.7855556, 47.5026577 ], + [ 7.7855589, 47.5026631 ], + [ 7.7855653, 47.5026744 ], + [ 7.7855666, 47.5026771 ], + [ 7.7855691, 47.5026824 ], + [ 7.7855719, 47.5026879 ], + [ 7.7855731, 47.5026906 ], + [ 7.7855765, 47.5026988 ], + [ 7.7855792, 47.5027057 ], + [ 7.7855802, 47.5027085 ], + [ 7.785583, 47.5027168 ], + [ 7.7855857, 47.5027251 ], + [ 7.7855875, 47.50273 ], + [ 7.7855891, 47.5027349 ], + [ 7.78559, 47.502738 ], + [ 7.7855924, 47.5027475 ], + [ 7.7855939, 47.5027532 ], + [ 7.7855959, 47.5027619 ], + [ 7.7855965, 47.502765 ], + [ 7.7855969, 47.5027681 ], + [ 7.7855973, 47.5027713 ], + [ 7.7855976, 47.5027746 ], + [ 7.7855985, 47.5027884 ], + [ 7.7855989999999995, 47.5027956 ], + [ 7.7856003, 47.5028061 ], + [ 7.7856006, 47.50281 ], + [ 7.7856009, 47.502814 ], + [ 7.7856012, 47.5028219 ], + [ 7.7856014, 47.5028299 ], + [ 7.7856015, 47.5028379 ], + [ 7.785602, 47.5029099 ], + [ 7.785602, 47.5029219 ], + [ 7.7856018, 47.5029298 ], + [ 7.7856017, 47.5029338 ], + [ 7.7856015, 47.5029377 ], + [ 7.7856012, 47.5029416 ], + [ 7.7856008, 47.5029455 ], + [ 7.7856000000000005, 47.5029524 ], + [ 7.7855986, 47.5029677 ], + [ 7.7855982, 47.5029715 ], + [ 7.7855977, 47.5029753 ], + [ 7.785597, 47.5029791 ], + [ 7.7855947, 47.5029893 ], + [ 7.7855941, 47.5029929 ], + [ 7.7855935, 47.5029966 ], + [ 7.7855919, 47.5030077 ], + [ 7.7855913, 47.5030114 ], + [ 7.7855906, 47.503015 ], + [ 7.7855893, 47.5030201 ], + [ 7.785588, 47.5030251 ], + [ 7.7855853, 47.5030362 ], + [ 7.7855843, 47.5030398 ], + [ 7.7855834, 47.5030428 ], + [ 7.785582, 47.5030469 ], + [ 7.7855783, 47.503058 ], + [ 7.7855715, 47.5030759 ], + [ 7.7855687, 47.5030828 ], + [ 7.7855615, 47.5030993 ], + [ 7.7855589, 47.5031053 ], + [ 7.7855522, 47.503121 ], + [ 7.7855492, 47.5031279 ], + [ 7.7855469, 47.5031327 ], + [ 7.7855428, 47.5031414 ], + [ 7.7855394, 47.5031481 ], + [ 7.7855359, 47.5031548 ], + [ 7.7855307, 47.5031642 ], + [ 7.785528, 47.5031689 ], + [ 7.7855229, 47.5031774 ], + [ 7.78552, 47.5031821 ], + [ 7.7855171, 47.5031866 ], + [ 7.7855158, 47.5031885 ], + [ 7.7855139, 47.5031912 ], + [ 7.7855106, 47.5031957 ], + [ 7.7855092, 47.5031976 ], + [ 7.7855071, 47.5032002 ], + [ 7.7855035, 47.5032046 ], + [ 7.7854976, 47.5032115 ], + [ 7.785496, 47.5032133 ], + [ 7.7854938, 47.5032158 ], + [ 7.7854868, 47.5032231 ], + [ 7.7854836, 47.5032266 ], + [ 7.7854811, 47.5032292 ], + [ 7.7854766, 47.5032336 ], + [ 7.7854738999999995, 47.5032361 ], + [ 7.7854711, 47.5032385 ], + [ 7.7854635, 47.5032451 ], + [ 7.7854603000000004, 47.5032477 ], + [ 7.785457, 47.5032502 ], + [ 7.7854502, 47.5032552 ], + [ 7.7854398, 47.5032627 ], + [ 7.7854329, 47.5032677 ], + [ 7.7854295, 47.5032702 ], + [ 7.7854206999999995, 47.503277 ], + [ 7.7854173, 47.5032796 ], + [ 7.7853999, 47.5032924 ], + [ 7.7853965, 47.503295 ], + [ 7.7853877, 47.5033018 ], + [ 7.7853842, 47.5033044 ], + [ 7.7853807, 47.503307 ], + [ 7.7853735, 47.5033121 ], + [ 7.7853626, 47.5033197 ], + [ 7.7853515, 47.5033272 ], + [ 7.7852777, 47.5033777 ], + [ 7.785161, 47.5034575 ], + [ 7.7851429, 47.5034698 ], + [ 7.7851356, 47.5034746 ], + [ 7.7851282, 47.5034794 ], + [ 7.7851245, 47.5034817 ], + [ 7.7851146, 47.5034877 ], + [ 7.7851109, 47.50349 ], + [ 7.7851035, 47.5034947 ], + [ 7.7850889, 47.5035042 ], + [ 7.7850852, 47.5035066 ], + [ 7.7850815, 47.5035089 ], + [ 7.7850716, 47.5035148 ], + [ 7.7850642, 47.5035195 ], + [ 7.7850494999999995, 47.5035288 ], + [ 7.7850458, 47.503531100000004 ], + [ 7.7850421, 47.5035334 ], + [ 7.7850383, 47.5035356 ], + [ 7.7850345, 47.5035377 ], + [ 7.7850294, 47.5035403 ], + [ 7.7850255, 47.5035424 ], + [ 7.7850217, 47.5035446 ], + [ 7.7850178, 47.5035469 ], + [ 7.7850064, 47.5035537 ], + [ 7.7850026, 47.503556 ], + [ 7.7849987, 47.5035581 ], + [ 7.7849948, 47.5035602 ], + [ 7.7849897, 47.5035628 ], + [ 7.7849862, 47.5035646 ], + [ 7.7849721, 47.5035723 ], + [ 7.7849686, 47.5035742 ], + [ 7.7849564, 47.5035805 ], + [ 7.7849457, 47.503586 ], + [ 7.7849422, 47.5035878 ], + [ 7.7849299, 47.5035939 ], + [ 7.7849191, 47.5035993 ], + [ 7.7849155, 47.5036011 ], + [ 7.7849103, 47.5036034 ], + [ 7.7849067, 47.5036052 ], + [ 7.7848959, 47.5036106 ], + [ 7.7848836, 47.5036167 ], + [ 7.7848694, 47.503624 ], + [ 7.7848499, 47.5036337 ], + [ 7.7848463, 47.5036355 ], + [ 7.7848427000000004, 47.5036372 ], + [ 7.7848375, 47.5036396 ], + [ 7.7848266, 47.5036447 ], + [ 7.7848229, 47.5036464 ], + [ 7.7848177, 47.5036487 ], + [ 7.7848067, 47.5036537 ], + [ 7.784803, 47.5036553 ], + [ 7.7847977, 47.5036575 ], + [ 7.7847802, 47.5036649 ], + [ 7.78477, 47.5036691 ], + [ 7.7847647, 47.5036712 ], + [ 7.7847468, 47.5036783 ], + [ 7.7847414, 47.5036804 ], + [ 7.7847377, 47.5036819 ], + [ 7.7847238999999995, 47.5036875 ], + [ 7.7847174, 47.5036901 ], + [ 7.7847136, 47.5036916 ], + [ 7.7847006, 47.5036963 ], + [ 7.7846951, 47.5036982 ], + [ 7.7846874, 47.503701 ], + [ 7.7846819, 47.5037029 ], + [ 7.7846688, 47.5037076 ], + [ 7.7846508, 47.5037143 ], + [ 7.7846377, 47.503719 ], + [ 7.7846245, 47.5037236 ], + [ 7.7846112, 47.503728100000004 ], + [ 7.7845979, 47.5037325 ], + [ 7.7845759, 47.5037394 ], + [ 7.7845626, 47.5037437 ], + [ 7.7845549, 47.5037463 ], + [ 7.7845416, 47.5037506 ], + [ 7.7845198, 47.5037574 ], + [ 7.7845119, 47.50376 ], + [ 7.7844985, 47.5037642 ], + [ 7.7844888999999995, 47.5037671 ], + [ 7.7844821, 47.5037691 ], + [ 7.7844656, 47.503773699999996 ], + [ 7.784449, 47.5037783 ], + [ 7.7844324, 47.5037827 ], + [ 7.7844169, 47.5037867 ], + [ 7.78441, 47.5037885 ], + [ 7.7844071, 47.5037893 ], + [ 7.7843991, 47.5037915 ], + [ 7.7843893, 47.503794 ], + [ 7.7843795, 47.5037965 ], + [ 7.7843637999999995, 47.5038003 ], + [ 7.784354, 47.5038027 ], + [ 7.7843373, 47.5038071 ], + [ 7.7843264, 47.5038101 ], + [ 7.7843167, 47.5038127 ], + [ 7.7843098, 47.5038145 ], + [ 7.7843069, 47.5038152 ], + [ 7.7843, 47.5038169 ], + [ 7.7842901, 47.5038193 ], + [ 7.7842645, 47.5038254 ], + [ 7.7842547, 47.5038278 ], + [ 7.7842465, 47.5038299 ], + [ 7.7842426, 47.5038307 ], + [ 7.7842265, 47.5038342 ], + [ 7.784222, 47.5038351 ], + [ 7.784213, 47.5038366 ], + [ 7.7842085, 47.5038374 ], + [ 7.7842001, 47.5038391 ], + [ 7.7841957, 47.5038399 ], + [ 7.7841866, 47.5038414 ], + [ 7.7841821, 47.5038422 ], + [ 7.7841738, 47.5038439 ], + [ 7.784162, 47.5038463 ], + [ 7.7841536, 47.503848 ], + [ 7.7841492, 47.5038488 ], + [ 7.7841401, 47.5038504 ], + [ 7.7841357, 47.5038512 ], + [ 7.7841273, 47.5038529 ], + [ 7.7841233, 47.5038536 ], + [ 7.7841051, 47.5038568 ], + [ 7.7841009, 47.5038576 ], + [ 7.7840963, 47.5038583 ], + [ 7.7840872, 47.5038596 ], + [ 7.7840827, 47.5038604 ], + [ 7.7840742, 47.5038619 ], + [ 7.7840697, 47.5038627 ], + [ 7.7840606, 47.5038641 ], + [ 7.7840561, 47.503864899999996 ], + [ 7.7840477, 47.5038665 ], + [ 7.7840432, 47.5038672 ], + [ 7.784034, 47.5038686 ], + [ 7.7840295, 47.5038694 ], + [ 7.784021, 47.5038708 ], + [ 7.7840162, 47.5038716 ], + [ 7.7840014, 47.5038735 ], + [ 7.7839965, 47.5038742 ], + [ 7.7839879, 47.5038755 ], + [ 7.783983, 47.5038762 ], + [ 7.7839781, 47.5038768 ], + [ 7.7839681, 47.5038779 ], + [ 7.7839632, 47.5038785 ], + [ 7.7839483, 47.5038804 ], + [ 7.7839431, 47.5038809 ], + [ 7.7839378, 47.5038814 ], + [ 7.7839221, 47.5038827 ], + [ 7.7839168999999995, 47.5038833 ], + [ 7.7839019, 47.5038849 ], + [ 7.7838968, 47.5038854 ], + [ 7.7838916, 47.5038857 ], + [ 7.7838863, 47.5038859 ], + [ 7.7838811, 47.5038861 ], + [ 7.7838758, 47.5038862 ], + [ 7.7838652, 47.5038864 ], + [ 7.7838439, 47.5038866 ], + [ 7.7838332999999995, 47.5038867 ], + [ 7.783828, 47.5038869 ], + [ 7.7838228, 47.503887 ], + [ 7.7838176, 47.5038872 ], + [ 7.7838124, 47.5038875 ], + [ 7.7838072, 47.5038879 ], + [ 7.7837858, 47.5038899 ], + [ 7.7837805, 47.5038902 ], + [ 7.7837751, 47.5038905 ], + [ 7.7837697, 47.5038908 ], + [ 7.7837643, 47.5038909 ], + [ 7.7837533, 47.5038911 ], + [ 7.7837203, 47.5038914 ], + [ 7.7837093, 47.5038916 ], + [ 7.7837038, 47.5038917 ], + [ 7.7836984000000005, 47.5038919 ], + [ 7.7836929999999995, 47.5038922 ], + [ 7.7836877, 47.5038926 ], + [ 7.7836785, 47.5038933 ], + [ 7.7836689, 47.503894 ], + [ 7.7836597, 47.5038948 ], + [ 7.7836548, 47.5038952 ], + [ 7.7836498, 47.5038955 ], + [ 7.7836448, 47.5038957 ], + [ 7.7840799, 47.5051893 ], + [ 7.7840899, 47.5051869 ], + [ 7.7840997, 47.5051845 ], + [ 7.7841095, 47.505182 ], + [ 7.7841175, 47.5051797 ], + [ 7.7841273, 47.5051772 ], + [ 7.7841527, 47.5051709 ], + [ 7.7841596, 47.5051691 ], + [ 7.7841625, 47.5051683 ], + [ 7.7841705, 47.505166 ], + [ 7.7841859, 47.5051619 ], + [ 7.7841956, 47.5051592 ], + [ 7.7842035, 47.5051568 ], + [ 7.784216, 47.5051533 ], + [ 7.7842422, 47.5051459 ], + [ 7.784249, 47.5051439 ], + [ 7.7842585, 47.505141 ], + [ 7.7842719, 47.5051367 ], + [ 7.7842797, 47.505134 ], + [ 7.7842852, 47.5051322 ], + [ 7.7842929, 47.5051295 ], + [ 7.7842984, 47.5051277 ], + [ 7.7843062, 47.505125 ], + [ 7.7843117, 47.5051231 ], + [ 7.7843194, 47.5051204 ], + [ 7.7843249, 47.5051186 ], + [ 7.7843326, 47.5051159 ], + [ 7.7843381, 47.505114 ], + [ 7.7843459, 47.5051114 ], + [ 7.7843514, 47.5051095 ], + [ 7.7843591, 47.5051068 ], + [ 7.7843646, 47.5051049 ], + [ 7.7843777, 47.5051002 ], + [ 7.7843957, 47.5050935 ], + [ 7.7844088, 47.5050887 ], + [ 7.7844143, 47.5050868 ], + [ 7.7844274, 47.505082 ], + [ 7.7844312, 47.5050806 ], + [ 7.7844452, 47.5050752 ], + [ 7.7844505999999996, 47.5050731 ], + [ 7.7844647, 47.5050677 ], + [ 7.7844685, 47.5050663 ], + [ 7.7844816, 47.5050615 ], + [ 7.7844871, 47.5050596 ], + [ 7.7845002, 47.5050548 ], + [ 7.784504, 47.5050533 ], + [ 7.7845104, 47.5050507 ], + [ 7.7845179, 47.5050477 ], + [ 7.7845244000000005, 47.5050451 ], + [ 7.7845282000000005, 47.5050437 ], + [ 7.7845412, 47.5050389 ], + [ 7.7845467, 47.505037 ], + [ 7.7845598, 47.5050323 ], + [ 7.7845701, 47.5050284 ], + [ 7.7845728, 47.5050274 ], + [ 7.7845765, 47.5050259 ], + [ 7.784584, 47.5050227 ], + [ 7.7845878, 47.5050212 ], + [ 7.784597, 47.5050177 ], + [ 7.7846009, 47.5050163 ], + [ 7.7846139999999995, 47.5050116 ], + [ 7.7846195, 47.5050098 ], + [ 7.7846273, 47.505007 ], + [ 7.7846326999999995, 47.5050052 ], + [ 7.7846405, 47.5050025 ], + [ 7.784646, 47.5050006 ], + [ 7.7846498, 47.5049992 ], + [ 7.7846589999999996, 47.5049958 ], + [ 7.7846627999999995, 47.5049944 ], + [ 7.7846693, 47.5049918 ], + [ 7.7846768, 47.5049887 ], + [ 7.7846832, 47.5049862 ], + [ 7.784687, 47.5049847 ], + [ 7.7847001, 47.50498 ], + [ 7.784732, 47.5049689 ], + [ 7.7847451, 47.5049641 ], + [ 7.7847489, 47.5049626 ], + [ 7.7847554, 47.5049601 ], + [ 7.7847629, 47.504957 ], + [ 7.7847693, 47.5049545 ], + [ 7.7847731, 47.504953 ], + [ 7.7847862, 47.5049482 ], + [ 7.7847916999999995, 47.5049463 ], + [ 7.7847994, 47.5049436 ], + [ 7.7848048, 47.5049417 ], + [ 7.7848179, 47.5049369 ], + [ 7.7848217, 47.5049354 ], + [ 7.7848282, 47.5049329 ], + [ 7.7848357, 47.5049298 ], + [ 7.7848421, 47.5049273 ], + [ 7.7848459, 47.5049258 ], + [ 7.784859, 47.504921 ], + [ 7.7848645, 47.5049191 ], + [ 7.7848722, 47.5049163 ], + [ 7.7848776, 47.5049144 ], + [ 7.784888, 47.5049105 ], + [ 7.7848906, 47.5049095 ], + [ 7.7848944, 47.504908 ], + [ 7.7849018999999995, 47.5049048 ], + [ 7.7849056, 47.5049033 ], + [ 7.7849186, 47.5048984 ], + [ 7.7849241, 47.5048965 ], + [ 7.7849318, 47.5048937 ], + [ 7.7849372, 47.5048918 ], + [ 7.7849503, 47.504887 ], + [ 7.7849541, 47.5048856 ], + [ 7.7849606, 47.504883 ], + [ 7.7849681, 47.5048799 ], + [ 7.7849745, 47.5048774 ], + [ 7.7849783, 47.5048759 ], + [ 7.7849914, 47.5048712 ], + [ 7.7849969, 47.5048693 ], + [ 7.7850046, 47.5048665 ], + [ 7.7850101, 47.5048647 ], + [ 7.7850233, 47.50486 ], + [ 7.7850363, 47.5048551 ], + [ 7.7850401, 47.5048536 ], + [ 7.7850475, 47.5048504 ], + [ 7.7850513, 47.5048489 ], + [ 7.7850605, 47.5048454 ], + [ 7.7850643, 47.504844 ], + [ 7.7850775, 47.5048394 ], + [ 7.7850829, 47.5048375 ], + [ 7.7850907, 47.5048348 ], + [ 7.7850961, 47.5048329 ], + [ 7.7851092, 47.5048281 ], + [ 7.785113, 47.5048266 ], + [ 7.7851195, 47.5048241 ], + [ 7.785127, 47.504821 ], + [ 7.7851334, 47.5048185 ], + [ 7.7851372, 47.504817 ], + [ 7.7851503, 47.5048122 ], + [ 7.7851558, 47.5048103 ], + [ 7.7851635, 47.5048076 ], + [ 7.785169, 47.5048057 ], + [ 7.7851821, 47.5048009 ], + [ 7.7851859, 47.5047994 ], + [ 7.7851923, 47.5047969 ], + [ 7.7851998, 47.5047938 ], + [ 7.7852062, 47.5047913 ], + [ 7.78521, 47.5047898 ], + [ 7.7852231, 47.504785 ], + [ 7.7852419, 47.5047784 ], + [ 7.7852549, 47.5047737 ], + [ 7.7852587, 47.5047722 ], + [ 7.7852651, 47.5047697 ], + [ 7.7852726, 47.504766599999996 ], + [ 7.7852791, 47.5047641 ], + [ 7.7852829, 47.5047626 ], + [ 7.7852958999999995, 47.5047578 ], + [ 7.7853014, 47.5047559 ], + [ 7.7853145, 47.5047511 ], + [ 7.7853183, 47.5047496 ], + [ 7.7853324, 47.5047442 ], + [ 7.7853378, 47.5047422 ], + [ 7.7853518, 47.5047367 ], + [ 7.7853557, 47.5047353 ], + [ 7.7853688, 47.5047306 ], + [ 7.7853743, 47.5047287 ], + [ 7.785382, 47.504726 ], + [ 7.7853875, 47.5047241 ], + [ 7.7853952, 47.5047214 ], + [ 7.7854007, 47.5047195 ], + [ 7.7854138, 47.5047148 ], + [ 7.7854176, 47.5047133 ], + [ 7.785424, 47.5047107 ], + [ 7.7854315, 47.5047077 ], + [ 7.785438, 47.5047051 ], + [ 7.7854418, 47.5047037 ], + [ 7.7854548999999995, 47.5046989 ], + [ 7.7854603000000004, 47.504697 ], + [ 7.7854681, 47.5046942 ], + [ 7.7854735, 47.5046923 ], + [ 7.7854867, 47.5046876 ], + [ 7.7854905, 47.5046862 ], + [ 7.7855045, 47.5046807 ], + [ 7.7855099, 47.5046787 ], + [ 7.785524, 47.5046733 ], + [ 7.7855278, 47.5046718 ], + [ 7.7855409, 47.5046671 ], + [ 7.7855464, 47.5046652 ], + [ 7.7855595, 47.5046604 ], + [ 7.7855633, 47.504659 ], + [ 7.7855773, 47.5046535 ], + [ 7.7855827, 47.5046515 ], + [ 7.7855968, 47.5046461 ], + [ 7.7856006, 47.5046446 ], + [ 7.7856137, 47.5046399 ], + [ 7.7856192, 47.504638 ], + [ 7.7856323, 47.5046333 ], + [ 7.7856502, 47.5046265 ], + [ 7.7856688, 47.5046197 ], + [ 7.7856866, 47.5046129 ], + [ 7.7857052, 47.5046061 ], + [ 7.7857231, 47.5045992 ], + [ 7.7857416, 47.5045925 ], + [ 7.7857595, 47.5045857 ], + [ 7.7857726, 47.504581 ], + [ 7.7857781, 47.5045791 ], + [ 7.7857859, 47.5045764 ], + [ 7.7857913, 47.5045745 ], + [ 7.7858044, 47.5045698 ], + [ 7.7858082, 47.5045683 ], + [ 7.7858222999999995, 47.5045629 ], + [ 7.7858277000000005, 47.5045609 ], + [ 7.7858418, 47.5045554 ], + [ 7.7858456, 47.504554 ], + [ 7.7858587, 47.5045492 ], + [ 7.7858642, 47.5045473 ], + [ 7.7858719, 47.5045446 ], + [ 7.7858774, 47.5045427 ], + [ 7.7858905, 47.504538 ], + [ 7.7859084, 47.5045313 ], + [ 7.7859216, 47.5045266 ], + [ 7.7859271, 47.5045246 ], + [ 7.7859402, 47.5045199 ], + [ 7.7859581, 47.5045131 ], + [ 7.7859766, 47.5045063 ], + [ 7.7859945, 47.5044995 ], + [ 7.7860077, 47.5044948 ], + [ 7.7860131, 47.5044929 ], + [ 7.7860263, 47.5044882 ], + [ 7.7860442, 47.5044814 ], + [ 7.7860496, 47.5044794 ], + [ 7.7860572999999995, 47.5044766 ], + [ 7.7860627000000004, 47.5044746 ], + [ 7.7860665000000004, 47.5044732 ], + [ 7.7860805, 47.5044677 ], + [ 7.7860859, 47.5044657 ], + [ 7.7860961, 47.5044616 ], + [ 7.7861089, 47.5044563 ], + [ 7.7861127, 47.5044547 ], + [ 7.78612, 47.5044514 ], + [ 7.7861237, 47.5044498 ], + [ 7.786129, 47.5044476 ], + [ 7.7861327, 47.5044461 ], + [ 7.7861427, 47.5044417 ], + [ 7.7861663, 47.5044311 ], + [ 7.7861763, 47.5044267 ], + [ 7.7861864, 47.5044223 ], + [ 7.7861917, 47.5044201 ], + [ 7.7861953, 47.5044185 ], + [ 7.7862063, 47.5044135 ], + [ 7.7862116, 47.5044112 ], + [ 7.7862152, 47.5044095 ], + [ 7.7862225, 47.5044061 ], + [ 7.7862262, 47.5044044 ], + [ 7.7862314, 47.504402 ], + [ 7.786235, 47.5044003 ], + [ 7.7862458, 47.504395 ], + [ 7.7862580999999995, 47.504389 ], + [ 7.7862689, 47.5043836 ], + [ 7.7862725, 47.5043819 ], + [ 7.7862777, 47.5043795 ], + [ 7.7862813, 47.5043777 ], + [ 7.7862921, 47.5043723 ], + [ 7.7863044, 47.5043663 ], + [ 7.7863187, 47.5043589 ], + [ 7.786331, 47.5043529 ], + [ 7.7863407, 47.504348 ], + [ 7.7863442, 47.5043461 ], + [ 7.7863548, 47.5043404 ], + [ 7.7863583, 47.5043385 ], + [ 7.7863619, 47.5043367 ], + [ 7.786367, 47.5043342 ], + [ 7.7863706, 47.5043324 ], + [ 7.7863847, 47.5043249 ], + [ 7.7863883, 47.504323 ], + [ 7.7863934, 47.5043205 ], + [ 7.7863969, 47.5043187 ], + [ 7.7864005, 47.5043168 ], + [ 7.7864039, 47.5043148 ], + [ 7.7864144, 47.5043089 ], + [ 7.7864179, 47.5043069 ], + [ 7.7864214, 47.5043051 ], + [ 7.7864265, 47.5043025 ], + [ 7.7864301, 47.5043007 ], + [ 7.7864336, 47.5042988 ], + [ 7.7864439999999995, 47.5042929 ], + [ 7.7864535, 47.5042876 ], + [ 7.7864699, 47.5042784 ], + [ 7.7864838, 47.5042703 ], + [ 7.7864932, 47.504265 ], + [ 7.7865096, 47.5042557 ], + [ 7.786513, 47.5042537 ], + [ 7.7865267, 47.5042453 ], + [ 7.7865301, 47.5042433 ], + [ 7.7865464, 47.504234 ], + [ 7.7865559, 47.5042287 ], + [ 7.7865696, 47.5042206 ], + [ 7.786579, 47.5042152 ], + [ 7.7865928, 47.504207 ], + [ 7.7866022, 47.5042015 ], + [ 7.7866056, 47.5041995 ], + [ 7.7866192, 47.5041911 ], + [ 7.7866226, 47.504189 ], + [ 7.786632, 47.5041836 ], + [ 7.7866457, 47.5041753 ], + [ 7.786655, 47.5041698 ], + [ 7.7866584, 47.5041678 ], + [ 7.7866652, 47.5041635 ], + [ 7.7866786, 47.5041548 ], + [ 7.7866853, 47.5041505 ], + [ 7.7866887, 47.5041484 ], + [ 7.786698, 47.5041428 ], + [ 7.7867014, 47.5041407 ], + [ 7.7867217, 47.5041278 ], + [ 7.7867251, 47.5041257 ], + [ 7.7867346, 47.50412 ], + [ 7.7867381, 47.5041178 ], + [ 7.7867417, 47.5041155 ], + [ 7.7867488, 47.5041109 ], + [ 7.7867698999999995, 47.5040967 ], + [ 7.7867805, 47.5040897 ], + [ 7.7867877, 47.5040852 ], + [ 7.7867971, 47.5040795 ], + [ 7.7868039, 47.5040753 ], + [ 7.7868239, 47.5040624 ], + [ 7.7868295, 47.5040588 ], + [ 7.7868327, 47.5040567 ], + [ 7.7868358, 47.5040545 ], + [ 7.7868413, 47.5040505 ], + [ 7.7868482, 47.5040456 ], + [ 7.7868552, 47.5040407 ], + [ 7.7868659000000005, 47.5040332 ], + [ 7.7868946999999995, 47.5040135 ], + [ 7.786956, 47.5039716 ], + [ 7.7869668, 47.5039642 ], + [ 7.7869739, 47.5039593 ], + [ 7.786981, 47.5039543 ], + [ 7.7869879, 47.5039493 ], + [ 7.7869913, 47.5039468 ], + [ 7.7869999, 47.5039401 ], + [ 7.7870065, 47.5039353 ], + [ 7.7870167, 47.5039281 ], + [ 7.7870408, 47.5039114 ], + [ 7.7870475, 47.5039065 ], + [ 7.7870508, 47.5039041 ], + [ 7.7870541, 47.5039017 ], + [ 7.7870572, 47.5038992 ], + [ 7.7870603, 47.5038967 ], + [ 7.7870699, 47.5038885 ], + [ 7.7870726999999995, 47.5038861 ], + [ 7.7870756, 47.5038838 ], + [ 7.7870844, 47.5038767 ], + [ 7.7870873, 47.5038743 ], + [ 7.7870902, 47.5038719 ], + [ 7.7870929, 47.5038695 ], + [ 7.7870966, 47.503866 ], + [ 7.7870992999999995, 47.5038636 ], + [ 7.7871105, 47.503854 ], + [ 7.7871132, 47.5038516 ], + [ 7.7871151, 47.5038499 ], + [ 7.7871274, 47.5038384 ], + [ 7.78713, 47.5038359 ], + [ 7.7871326, 47.5038334 ], + [ 7.787136, 47.5038299 ], + [ 7.7871384, 47.5038274 ], + [ 7.7871434, 47.5038224 ], + [ 7.7871459, 47.50382 ], + [ 7.7871492, 47.5038164 ], + [ 7.7871517, 47.5038139 ], + [ 7.7871566, 47.5038089 ], + [ 7.7871591, 47.5038064 ], + [ 7.7871624, 47.5038028 ], + [ 7.7871697, 47.5037954 ], + [ 7.787172, 47.5037928 ], + [ 7.7871752, 47.5037892 ], + [ 7.787186, 47.5037773 ], + [ 7.7871898999999996, 47.503773 ], + [ 7.7871921, 47.5037704 ], + [ 7.7871951, 47.5037667 ], + [ 7.7871994, 47.5037616 ], + [ 7.787203, 47.5037572 ], + [ 7.7872050999999995, 47.5037546 ], + [ 7.7872119, 47.5037457 ], + [ 7.7872147, 47.5037419 ], + [ 7.7872187, 47.5037366 ], + [ 7.7872215, 47.5037328 ], + [ 7.7872256, 47.5037273 ], + [ 7.7872281999999995, 47.5037237 ], + [ 7.7872349, 47.5037149 ], + [ 7.7872411, 47.5037072 ], + [ 7.7872458, 47.5037008 ], + [ 7.7872477, 47.5036982 ], + [ 7.7872546, 47.5036879 ], + [ 7.7872645, 47.5036737 ], + [ 7.7872707, 47.5036644 ], + [ 7.7872746, 47.5036578 ], + [ 7.7872805, 47.5036472 ], + [ 7.7872869, 47.5036359 ], + [ 7.7872912, 47.5036285 ], + [ 7.7872959999999996, 47.50362 ], + [ 7.7872985, 47.5036152 ], + [ 7.787302, 47.5036085 ], + [ 7.7873076999999995, 47.5035971 ], + [ 7.7873273, 47.5035565 ], + [ 7.7873338, 47.503543 ], + [ 7.7873379, 47.5035342 ], + [ 7.78734, 47.5035294 ], + [ 7.7873426, 47.5035234 ], + [ 7.7873448, 47.5035186 ], + [ 7.787351, 47.503505 ], + [ 7.7873532, 47.5035001 ], + [ 7.7873557, 47.5034941 ], + [ 7.787363, 47.5034776 ], + [ 7.7873659, 47.5034708 ], + [ 7.7873689, 47.5034626 ], + [ 7.7873726, 47.5034528 ], + [ 7.7873756, 47.5034447 ], + [ 7.7873776, 47.5034398 ], + [ 7.7873826, 47.5034281 ], + [ 7.7873855, 47.5034212 ], + [ 7.7873886, 47.5034131 ], + [ 7.7873906, 47.5034083 ], + [ 7.7873957, 47.5033966 ], + [ 7.7873985999999995, 47.5033897 ], + [ 7.7874017, 47.5033816 ], + [ 7.7874037, 47.5033768 ], + [ 7.7874088, 47.5033651 ], + [ 7.7874116, 47.5033582 ], + [ 7.7874148, 47.5033501 ], + [ 7.7874168, 47.5033452 ], + [ 7.7874218, 47.5033336 ], + [ 7.7874247, 47.5033267 ], + [ 7.7874278, 47.5033186 ], + [ 7.7874298, 47.5033137 ], + [ 7.7874347, 47.503302 ], + [ 7.7874369, 47.5032966 ], + [ 7.787438, 47.5032939 ], + [ 7.7874406, 47.5032883 ], + [ 7.7874417, 47.5032856 ], + [ 7.7874476, 47.5032704 ], + [ 7.7874505, 47.5032623 ], + [ 7.7874543, 47.5032525 ], + [ 7.7874573, 47.5032443 ], + [ 7.7874601, 47.5032374 ], + [ 7.7874643, 47.5032277 ], + [ 7.7874671, 47.5032207 ], + [ 7.7874701, 47.5032127 ], + [ 7.7874738, 47.5032029 ], + [ 7.7874768, 47.5031948 ], + [ 7.7874797000000004, 47.5031879 ], + [ 7.7874838, 47.5031782 ], + [ 7.7874867, 47.5031714 ], + [ 7.7874898, 47.5031632 ], + [ 7.7874966, 47.5031466 ], + [ 7.7874997, 47.5031385 ], + [ 7.7875025, 47.5031316 ], + [ 7.7875067, 47.5031219 ], + [ 7.7875096, 47.5031151 ], + [ 7.7875126, 47.5031069 ], + [ 7.7875194, 47.5030903 ], + [ 7.7875225, 47.5030822 ], + [ 7.7875253, 47.5030753 ], + [ 7.7875295, 47.5030656 ], + [ 7.7875319, 47.5030596 ], + [ 7.787536, 47.5030499 ], + [ 7.7875385, 47.5030438 ], + [ 7.7875425, 47.5030341 ], + [ 7.7875489, 47.5030183 ], + [ 7.7875519, 47.5030102 ], + [ 7.7875531, 47.5030073 ], + [ 7.7875548, 47.5030033 ], + [ 7.7875598, 47.5029916 ], + [ 7.7875618, 47.5029868 ], + [ 7.787565, 47.5029786 ], + [ 7.7875678, 47.5029718 ], + [ 7.787572, 47.5029621 ], + [ 7.7875749, 47.5029552 ], + [ 7.7875779, 47.5029471 ], + [ 7.7875818, 47.5029373 ], + [ 7.7875839, 47.5029319 ], + [ 7.787585, 47.5029293 ], + [ 7.7875875, 47.5029236 ], + [ 7.7875886, 47.5029209 ], + [ 7.7875946, 47.5029057 ], + [ 7.7875975, 47.5028976 ], + [ 7.7876012, 47.5028878 ], + [ 7.7876041, 47.5028796 ], + [ 7.7876142, 47.502854 ], + [ 7.7876171, 47.5028458 ], + [ 7.7876208, 47.502836 ], + [ 7.7876236, 47.5028278 ], + [ 7.7876253, 47.5028229 ], + [ 7.787627, 47.5028179 ], + [ 7.7876279, 47.5028148 ], + [ 7.7876304, 47.5028054 ], + [ 7.7876319, 47.5028004 ], + [ 7.7876332999999995, 47.5027954 ], + [ 7.7876341, 47.5027922 ], + [ 7.7876347, 47.502789 ], + [ 7.7876365, 47.5027794 ], + [ 7.7876372, 47.5027762 ], + [ 7.7876384, 47.5027711 ], + [ 7.7876396, 47.502766 ], + [ 7.7876402, 47.5027625 ], + [ 7.7876407, 47.502759 ], + [ 7.787641, 47.5027554 ], + [ 7.7876413, 47.5027518 ], + [ 7.7876421, 47.5027373 ], + [ 7.7876423, 47.5027337 ], + [ 7.7876426, 47.5027302 ], + [ 7.7876438, 47.50272 ], + [ 7.7876441, 47.5027164 ], + [ 7.7876443, 47.5027128 ], + [ 7.7876444, 47.5027092 ], + [ 7.7876445, 47.5027019 ], + [ 7.7876445, 47.502691 ], + [ 7.7876443, 47.5026837 ], + [ 7.7876442, 47.5026801 ], + [ 7.787644, 47.5026765 ], + [ 7.7876438, 47.5026729 ], + [ 7.7876434, 47.5026693 ], + [ 7.7876422, 47.5026593 ], + [ 7.7876418, 47.5026558 ], + [ 7.7876413, 47.5026488 ], + [ 7.7876407, 47.5026383 ], + [ 7.7876405, 47.5026348 ], + [ 7.7876402, 47.5026313 ], + [ 7.7876398, 47.5026279 ], + [ 7.7876393, 47.5026244 ], + [ 7.7876386, 47.502621 ], + [ 7.7876361, 47.5026109 ], + [ 7.7876354, 47.5026073 ], + [ 7.7876334, 47.5025966 ], + [ 7.7876327, 47.5025931 ], + [ 7.7876319, 47.5025896 ], + [ 7.7876304, 47.5025845 ], + [ 7.7876289, 47.5025795 ], + [ 7.7876263, 47.5025701 ], + [ 7.7876253, 47.502567 ], + [ 7.7876218999999995, 47.5025571 ], + [ 7.7876183, 47.5025459 ], + [ 7.7876157, 47.5025377 ], + [ 7.787612, 47.5025265 ], + [ 7.7876052, 47.5025086 ], + [ 7.7876024, 47.5025017 ], + [ 7.7875983, 47.502492 ], + [ 7.7875951, 47.5024839 ], + [ 7.787593, 47.502479 ], + [ 7.7875889, 47.5024703 ], + [ 7.7875856, 47.5024635 ], + [ 7.7875747, 47.5024413 ], + [ 7.7875718, 47.5024357 ], + [ 7.7875679, 47.5024278 ], + [ 7.787565, 47.5024223 ], + [ 7.7875611, 47.5024144 ], + [ 7.7875581, 47.5024088 ], + [ 7.7875542, 47.502401 ], + [ 7.7875511, 47.5023955 ], + [ 7.787548, 47.5023896 ], + [ 7.787545, 47.5023841 ], + [ 7.7875437, 47.5023814 ], + [ 7.7875411, 47.5023761 ], + [ 7.7875383, 47.5023706 ], + [ 7.7875371, 47.5023679 ], + [ 7.7875347, 47.5023626 ], + [ 7.7875315, 47.5023558 ], + [ 7.7875282, 47.502349 ], + [ 7.7875258, 47.5023443 ], + [ 7.7875214, 47.5023356 ], + [ 7.7875173, 47.5023282 ], + [ 7.7875138, 47.5023216 ], + [ 7.7875069, 47.502308 ], + [ 7.7874967, 47.5022878 ], + [ 7.7874646, 47.5022233 ], + [ 7.7874544, 47.5022031 ], + [ 7.787451, 47.5021964 ], + [ 7.7874474, 47.5021897 ], + [ 7.7874433, 47.5021822 ], + [ 7.7874398, 47.5021756 ], + [ 7.7874362999999995, 47.5021688 ], + [ 7.7874295, 47.5021554 ], + [ 7.7873301, 47.5019561 ], + [ 7.7872984, 47.5018928 ], + [ 7.7872913, 47.5018782 ], + [ 7.7872859, 47.5018666 ], + [ 7.7872786, 47.5018506 ], + [ 7.787276, 47.5018446 ], + [ 7.7872723, 47.501836 ], + [ 7.7872704, 47.5018318 ], + [ 7.7872667, 47.5018237 ], + [ 7.787263, 47.501816 ], + [ 7.7872576, 47.5018048 ], + [ 7.7872397, 47.5017683 ], + [ 7.7872095, 47.5017609 ], + [ 7.7871953, 47.5017574 ], + [ 7.787188, 47.5017554 ], + [ 7.787167, 47.5017493 ], + [ 7.787163, 47.5017482 ], + [ 7.7871533, 47.5017455 ], + [ 7.7871465, 47.5017436 ], + [ 7.787131, 47.5017396 ], + [ 7.7871064, 47.5017331 ], + [ 7.7870936, 47.5017301 ], + [ 7.7870836, 47.5017278 ], + [ 7.7870637, 47.5017234 ], + [ 7.7870437, 47.5017191 ], + [ 7.7870337, 47.501717 ], + [ 7.7870235, 47.501715 ], + [ 7.7870116, 47.5017128 ], + [ 7.7870015, 47.5017109 ], + [ 7.7869872, 47.5017081 ], + [ 7.786977, 47.5017061 ], + [ 7.7869651, 47.501704 ], + [ 7.7869549, 47.5017021 ], + [ 7.7869406, 47.5016992 ], + [ 7.7869305, 47.501697300000004 ], + [ 7.7869185, 47.5016952 ], + [ 7.7869084, 47.5016932 ], + [ 7.7868941, 47.5016904 ], + [ 7.786884, 47.5016885 ], + [ 7.786872, 47.5016863 ], + [ 7.7868619, 47.5016843 ], + [ 7.7868376, 47.5016794 ], + [ 7.7868144, 47.5016749 ], + [ 7.7866659, 47.5016467 ], + [ 7.7866427, 47.5016422 ], + [ 7.7866183, 47.5016373 ], + [ 7.7866082, 47.5016353 ], + [ 7.7865962, 47.5016332 ], + [ 7.7865861, 47.5016312 ], + [ 7.7865719, 47.5016284 ], + [ 7.7865618, 47.5016265 ], + [ 7.78655, 47.5016244 ], + [ 7.7865397, 47.5016224 ], + [ 7.7865253, 47.5016195 ], + [ 7.7865152, 47.5016176 ], + [ 7.7865032, 47.5016155 ], + [ 7.7864930999999995, 47.5016135 ], + [ 7.7864831, 47.5016114 ], + [ 7.7864689, 47.5016084 ], + [ 7.7864559, 47.5016057 ], + [ 7.7864488, 47.5016043 ], + [ 7.7864368, 47.5016022 ], + [ 7.7864267, 47.5016002 ], + [ 7.7864167, 47.5015981 ], + [ 7.7863895, 47.5015924 ], + [ 7.7863824, 47.5015909 ], + [ 7.7863735, 47.5015892 ], + [ 7.7863503, 47.5015846 ], + [ 7.7863403, 47.5015825 ], + [ 7.7863302999999995, 47.5015803 ], + [ 7.7863204, 47.501578 ], + [ 7.7863093, 47.5015753 ], + [ 7.7862994, 47.501573 ], + [ 7.7862638, 47.5015649 ], + [ 7.7862539, 47.5015626 ], + [ 7.786244, 47.5015603 ], + [ 7.7862329, 47.5015575 ], + [ 7.7862173, 47.501553799999996 ], + [ 7.7862074, 47.5015514 ], + [ 7.7861907, 47.501547 ], + [ 7.7861741, 47.5015426 ], + [ 7.7861575, 47.5015381 ], + [ 7.786141, 47.5015335 ], + [ 7.7861329999999995, 47.5015312 ], + [ 7.7861107, 47.5015251 ], + [ 7.7861079, 47.5015243 ], + [ 7.7860864, 47.5015179 ], + [ 7.7860613999999995, 47.501511 ], + [ 7.7860478, 47.5015069 ], + [ 7.7860399000000005, 47.5015045 ], + [ 7.7860235, 47.5014997 ], + [ 7.7860179, 47.5014981 ], + [ 7.7860043, 47.5014941 ], + [ 7.7860015, 47.5014932 ], + [ 7.7859976, 47.501492 ], + [ 7.7859881, 47.5014889 ], + [ 7.7859749, 47.5014843 ], + [ 7.7859634, 47.50148 ], + [ 7.7859503, 47.5014754 ], + [ 7.7859371, 47.5014708 ], + [ 7.7859316, 47.501469 ], + [ 7.7859184, 47.5014644 ], + [ 7.7859069, 47.5014602 ], + [ 7.7858918, 47.5014553 ], + [ 7.7858878, 47.5014539 ], + [ 7.7858813, 47.5014515 ], + [ 7.7858787, 47.5014506 ], + [ 7.785875, 47.5014491 ], + [ 7.7858639, 47.5014447 ], + [ 7.7858455, 47.5014375 ], + [ 7.7858415999999995, 47.5014359 ], + [ 7.7858295, 47.5014308 ], + [ 7.7858189, 47.5014265 ], + [ 7.7858108999999995, 47.5014232 ], + [ 7.7858064, 47.5014213 ], + [ 7.7857872, 47.501413 ], + [ 7.7857723, 47.5014064 ], + [ 7.7857375, 47.5013907 ], + [ 7.7857223, 47.501384 ], + [ 7.7857173, 47.5013819 ], + [ 7.7857045, 47.5013764 ], + [ 7.7856879, 47.5013694 ], + [ 7.7856776, 47.5013653 ], + [ 7.7856738, 47.5013638 ], + [ 7.7856646, 47.5013603 ], + [ 7.7856543, 47.5013564 ], + [ 7.7856505, 47.501355 ], + [ 7.7856451, 47.5013532 ], + [ 7.7856374, 47.5013506 ], + [ 7.7856133, 47.5013428 ], + [ 7.7856049, 47.5013402 ], + [ 7.7855988, 47.5013383 ], + [ 7.7855869, 47.5013349 ], + [ 7.7855696, 47.5013299 ], + [ 7.7855018, 47.5013107 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr143", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Eileten", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Eileten", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Eileten", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Eileten", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.3290658, 47.5079083 ], + [ 9.3288912, 47.505557 ], + [ 9.3285352, 47.503215 ], + [ 9.3279989, 47.5008889 ], + [ 9.3272837, 47.498585 ], + [ 9.326391600000001, 47.4963097 ], + [ 9.3253252, 47.494069 ], + [ 9.3240873, 47.4918693 ], + [ 9.3226813, 47.4897164 ], + [ 9.3211111, 47.4876164 ], + [ 9.3193811, 47.4855749 ], + [ 9.3174959, 47.4835975 ], + [ 9.3154608, 47.4816897 ], + [ 9.3132814, 47.4798567 ], + [ 9.310963600000001, 47.4781035 ], + [ 9.3085138, 47.4764349 ], + [ 9.3059387, 47.4748554 ], + [ 9.3032453, 47.4733694 ], + [ 9.300441, 47.4719809 ], + [ 9.2975336, 47.4706938 ], + [ 9.294531, 47.4695115 ], + [ 9.2914413, 47.4684373 ], + [ 9.2882731, 47.4674742 ], + [ 9.285035, 47.4666247 ], + [ 9.2817358, 47.4658912 ], + [ 9.2783846, 47.4652757 ], + [ 9.2749906, 47.4647798 ], + [ 9.2715631, 47.464405 ], + [ 9.2681113, 47.4641523 ], + [ 9.2646448, 47.4640223 ], + [ 9.261173, 47.4640154 ], + [ 9.2577055, 47.4641317 ], + [ 9.2542516, 47.4643707 ], + [ 9.2508209, 47.4647319 ], + [ 9.2474226, 47.4652143 ], + [ 9.2440662, 47.4658165 ], + [ 9.2407608, 47.4665368 ], + [ 9.2375154, 47.4673735 ], + [ 9.234339, 47.468324 ], + [ 9.2312401, 47.4693859 ], + [ 9.2282273, 47.4705563 ], + [ 9.2253088, 47.4718319 ], + [ 9.2224926, 47.4732092 ], + [ 9.2197865, 47.4746845 ], + [ 9.2171978, 47.4762537 ], + [ 9.2147336, 47.4779126 ], + [ 9.2124007, 47.4796566 ], + [ 9.2102055, 47.481481 ], + [ 9.208154, 47.4833807 ], + [ 9.2062518, 47.4853505 ], + [ 9.2045042, 47.4873851 ], + [ 9.2029159, 47.4894789 ], + [ 9.2014914, 47.4916261 ], + [ 9.2002345, 47.4938209 ], + [ 9.1991487, 47.4960573 ], + [ 9.198237, 47.4983291 ], + [ 9.197502, 47.5006301 ], + [ 9.1969455, 47.502954 ], + [ 9.1965694, 47.5052945 ], + [ 9.1963744, 47.5076451 ], + [ 9.1963613, 47.5099994 ], + [ 9.1965301, 47.512351 ], + [ 9.1968803, 47.5146933 ], + [ 9.197411, 47.51702 ], + [ 9.1981208, 47.5193247 ], + [ 9.1990077, 47.521601 ], + [ 9.2000694, 47.5238428 ], + [ 9.201303, 47.5260438 ], + [ 9.202705, 47.5281981 ], + [ 9.2042717, 47.5302997 ], + [ 9.2059987, 47.5323429 ], + [ 9.2078815, 47.5343221 ], + [ 9.2099147, 47.5362317 ], + [ 9.2120929, 47.5380666 ], + [ 9.21441, 47.5398218 ], + [ 9.2168598, 47.5414924 ], + [ 9.2194355, 47.5430738 ], + [ 9.2221301, 47.5445618 ], + [ 9.2249361, 47.5459521 ], + [ 9.2278459, 47.547241 ], + [ 9.2308515, 47.548425 ], + [ 9.2339446, 47.5495008 ], + [ 9.2371167, 47.5504654 ], + [ 9.2403592, 47.5513162 ], + [ 9.2436631, 47.5520508 ], + [ 9.2470193, 47.5526673 ], + [ 9.2504186, 47.5531639 ], + [ 9.2538518, 47.5535393 ], + [ 9.2573093, 47.5537925 ], + [ 9.2607816, 47.5539227 ], + [ 9.264259299999999, 47.553929600000004 ], + [ 9.2677327, 47.5538132 ], + [ 9.2711924, 47.5535737 ], + [ 9.2746287, 47.553212 ], + [ 9.2780323, 47.5527288 ], + [ 9.2813938, 47.5521256 ], + [ 9.284704, 47.5514041 ], + [ 9.2879538, 47.5505662 ], + [ 9.2911342, 47.5496142 ], + [ 9.2942366, 47.5485507 ], + [ 9.2972523, 47.5473787 ], + [ 9.3001732, 47.5461013 ], + [ 9.3029913, 47.5447221 ], + [ 9.3056987, 47.5432449 ], + [ 9.308288, 47.5416737 ], + [ 9.3107522, 47.5400129 ], + [ 9.3130845, 47.538266899999996 ], + [ 9.3152785, 47.5364407 ], + [ 9.3173283, 47.5345391 ], + [ 9.3192281, 47.5325675 ], + [ 9.3209728, 47.5305312 ], + [ 9.3225576, 47.5284358 ], + [ 9.3239783, 47.5262871 ], + [ 9.3252308, 47.524091 ], + [ 9.3263119, 47.5218535 ], + [ 9.3272185, 47.5195807 ], + [ 9.3279482, 47.5172789 ], + [ 9.328499, 47.5149543 ], + [ 9.3288695, 47.5126134 ], + [ 9.3290586, 47.5102626 ], + [ 9.3290658, 47.5079083 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZV001", + "country" : "CHE", + "name" : [ + { + "text" : "LSZV Sitterdorf", + "lang" : "de-CH" + }, + { + "text" : "LSZV Sitterdorf", + "lang" : "fr-CH" + }, + { + "text" : "LSZV Sitterdorf", + "lang" : "it-CH" + }, + { + "text" : "LSZV Sitterdorf", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Flugplatz Sitterdorf", + "lang" : "de-CH" + }, + { + "text" : "Flugplatz Sitterdorf", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatz Sitterdorf", + "lang" : "it-CH" + }, + { + "text" : "Flugplatz Sitterdorf", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Willi Hefel", + "lang" : "de-CH" + }, + { + "text" : "Willi Hefel", + "lang" : "fr-CH" + }, + { + "text" : "Willi Hefel", + "lang" : "it-CH" + }, + { + "text" : "Willi Hefel", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.erlebnisflugplatz.ch/deu/drohnen_42639.shtml", + "email" : "info@erlebnisflugplatz.ch", + "phone" : "0041714223031", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P02DT12H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.7701987, 46.4626796 ], + [ 8.7699151, 46.4629274 ], + [ 8.7697228, 46.4630156 ], + [ 8.7696214, 46.4631302 ], + [ 8.7696183, 46.4632656 ], + [ 8.7696231, 46.4633952 ], + [ 8.7696292, 46.4635472 ], + [ 8.7695619, 46.4636894 ], + [ 8.7695179, 46.46382 ], + [ 8.7694013, 46.4639743 ], + [ 8.7692775, 46.4641345 ], + [ 8.7691848, 46.4642715 ], + [ 8.7691098, 46.4644308 ], + [ 8.7690901, 46.4645552 ], + [ 8.7690538, 46.4646686 ], + [ 8.7688872, 46.4647788 ], + [ 8.7686971, 46.4649234 ], + [ 8.7686134, 46.4650602 ], + [ 8.7685192, 46.4651691 ], + [ 8.7683931, 46.4652673 ], + [ 8.7681925, 46.4653501 ], + [ 8.7680994, 46.4654701 ], + [ 8.7680555, 46.4656063 ], + [ 8.7680308, 46.4657928 ], + [ 8.7679887, 46.4659684 ], + [ 8.7679956, 46.4661486 ], + [ 8.7679294, 46.4663358 ], + [ 8.7679194, 46.466494 ], + [ 8.7679744, 46.4666451 ], + [ 8.7680932, 46.4667781 ], + [ 8.7681623, 46.4668726 ], + [ 8.7681683, 46.4670192 ], + [ 8.7681651, 46.4671545 ], + [ 8.7682605, 46.4672937 ], + [ 8.7683995, 46.4675222 ], + [ 8.7685646, 46.4677841 ], + [ 8.7686695, 46.4679794 ], + [ 8.7687633, 46.4680847 ], + [ 8.7689117, 46.4681326 ], + [ 8.7691355, 46.4682299 ], + [ 8.7696988, 46.4684674 ], + [ 8.7704017, 46.4687248 ], + [ 8.7708146, 46.4688691 ], + [ 8.771118, 46.4689311 ], + [ 8.7713963, 46.4689597 ], + [ 8.7716819, 46.4689601 ], + [ 8.7720343, 46.4690266 ], + [ 8.7722814, 46.4690784 ], + [ 8.7724465, 46.469143 ], + [ 8.7725503, 46.4692931 ], + [ 8.7725793, 46.469411 ], + [ 8.7726363, 46.4696129 ], + [ 8.772708, 46.4697807 ], + [ 8.7727775, 46.4698922 ], + [ 8.7729261, 46.4699457 ], + [ 8.7730971, 46.4699482 ], + [ 8.7732108, 46.4699404 ], + [ 8.7734081, 46.4699874 ], + [ 8.773629, 46.4700001 ], + [ 8.7738707, 46.4699336 ], + [ 8.7740976, 46.4698955 ], + [ 8.7742788, 46.4699483 ], + [ 8.7744947, 46.4700571 ], + [ 8.7747019, 46.4701434 ], + [ 8.7749342, 46.4702573 ], + [ 8.7751844, 46.4704048 ], + [ 8.775319, 46.4705151 ], + [ 8.7755055, 46.4706863 ], + [ 8.7756245, 46.470825 ], + [ 8.7757379, 46.4710032 ], + [ 8.7758402, 46.4711253 ], + [ 8.7759093, 46.4712199 ], + [ 8.7760945, 46.4713686 ], + [ 8.7762191, 46.4714395 ], + [ 8.776411, 46.4715656 ], + [ 8.7764539, 46.4716212 ], + [ 8.776533, 46.4717606 ], + [ 8.7766214, 46.471945 ], + [ 8.7766899, 46.472017 ], + [ 8.7768081, 46.4721219 ], + [ 8.7769755, 46.4722428 ], + [ 8.7771442, 46.4723861 ], + [ 8.7772378, 46.4724858 ], + [ 8.777315, 46.4725802 ], + [ 8.7773587, 46.4726695 ], + [ 8.777363, 46.4727766 ], + [ 8.7773833, 46.4728721 ], + [ 8.7773225, 46.4729804 ], + [ 8.7772355, 46.4730496 ], + [ 8.7771163, 46.4731364 ], + [ 8.7769888, 46.473212 ], + [ 8.7768482, 46.4733501 ], + [ 8.7767372, 46.4734367 ], + [ 8.7766845, 46.4735449 ], + [ 8.7766812, 46.4736745 ], + [ 8.776709199999999, 46.4737529 ], + [ 8.7767769, 46.4738249 ], + [ 8.7768686, 46.4738795 ], + [ 8.7769845, 46.4739282 ], + [ 8.7770499, 46.4739381 ], + [ 8.7771882, 46.4739355 ], + [ 8.7773263, 46.4739273 ], + [ 8.7774883, 46.4738961 ], + [ 8.7776754, 46.4738925 ], + [ 8.7778235, 46.4739235 ], + [ 8.7779069, 46.4739727 ], + [ 8.7779907, 46.4740332 ], + [ 8.7780348, 46.4741056 ], + [ 8.7780556, 46.4742236 ], + [ 8.7780945, 46.4743807 ], + [ 8.778067, 46.4745222 ], + [ 8.7780579, 46.474714 ], + [ 8.7780579, 46.4749114 ], + [ 8.7780487, 46.4750975 ], + [ 8.7780735, 46.4753113 ], + [ 8.7781273, 46.4754456 ], + [ 8.7782613, 46.4755332 ], + [ 8.7784174, 46.4755585 ], + [ 8.7786051, 46.4755775 ], + [ 8.7788261, 46.4755958 ], + [ 8.7791529, 46.4756122 ], + [ 8.7794449, 46.4755729 ], + [ 8.7796786, 46.4755121 ], + [ 8.7798455, 46.4754131 ], + [ 8.7800193, 46.4752689 ], + [ 8.7801931, 46.475119 ], + [ 8.7804226, 46.4749569 ], + [ 8.7806555, 46.4748623 ], + [ 8.7807752, 46.4747981 ], + [ 8.7809702, 46.474783 ], + [ 8.7811326, 46.4747687 ], + [ 8.7812949, 46.4747488 ], + [ 8.7815125, 46.4746939 ], + [ 8.7816547, 46.4745897 ], + [ 8.7817575, 46.4744976 ], + [ 8.7818995, 46.4743822 ], + [ 8.7821002, 46.474305 ], + [ 8.7823666, 46.4742493 ], + [ 8.782650499999999, 46.4742101 ], + [ 8.7828682, 46.4741608 ], + [ 8.7830772, 46.4740893 ], + [ 8.7832376, 46.4740242 ], + [ 8.7836172, 46.4739382 ], + [ 8.7838771, 46.4739162 ], + [ 8.7840814, 46.473918 ], + [ 8.7842529, 46.473943 ], + [ 8.7843688, 46.4739859 ], + [ 8.7844766, 46.4740347 ], + [ 8.784667, 46.4740986 ], + [ 8.784881, 46.4741623 ], + [ 8.785159, 46.4741795 ], + [ 8.7852751, 46.4742337 ], + [ 8.7854337, 46.4743266 ], + [ 8.7856248, 46.4744188 ], + [ 8.7858148, 46.4744997 ], + [ 8.7861033, 46.4745788 ], + [ 8.7863516, 46.4746812 ], + [ 8.7866071, 46.4747441 ], + [ 8.7869103, 46.4747946 ], + [ 8.7870741, 46.4748028 ], + [ 8.7872804, 46.4748834 ], + [ 8.7875525, 46.4749572 ], + [ 8.7878538, 46.4749628 ], + [ 8.7880751, 46.4749925 ], + [ 8.7883343, 46.4749424 ], + [ 8.788416, 46.4749578 ], + [ 8.7885101, 46.4750743 ], + [ 8.7886502, 46.4751112 ], + [ 8.7888143, 46.4751306 ], + [ 8.7889554, 46.4752068 ], + [ 8.7891541, 46.4752764 ], + [ 8.7892944, 46.4753245 ], + [ 8.7894514, 46.4753835 ], + [ 8.7897072, 46.4754575 ], + [ 8.7899125, 46.4754988 ], + [ 8.7901814, 46.4755106 ], + [ 8.7903147, 46.47557 ], + [ 8.7905942, 46.4756492 ], + [ 8.7908555, 46.4756499 ], + [ 8.7911407, 46.4756614 ], + [ 8.7914349, 46.4756785 ], + [ 8.7916567, 46.475725 ], + [ 8.7918063, 46.4757841 ], + [ 8.7920447, 46.4758472 ], + [ 8.7922662, 46.4758825 ], + [ 8.7924531, 46.4758733 ], + [ 8.7926555, 46.4758301 ], + [ 8.7928672, 46.4758316 ], + [ 8.7931435, 46.4758151 ], + [ 8.7934968, 46.4758816 ], + [ 8.7937837, 46.4759326 ], + [ 8.7940314, 46.4760068 ], + [ 8.7942472, 46.4761098 ], + [ 8.794496, 46.4762291 ], + [ 8.7946772, 46.4762819 ], + [ 8.7948685, 46.4763799 ], + [ 8.7950758, 46.4764661 ], + [ 8.7952804, 46.4764791 ], + [ 8.7953476, 46.4765285 ], + [ 8.7954072, 46.4766008 ], + [ 8.7955841, 46.4767439 ], + [ 8.7957893, 46.4767795 ], + [ 8.7957152, 46.4769726 ], + [ 8.7959307, 46.4770643 ], + [ 8.796308, 46.4769161 ], + [ 8.796634300000001, 46.4767183 ], + [ 8.7968745, 46.4766236 ], + [ 8.7971067, 46.4765064 ], + [ 8.7973323, 46.4764458 ], + [ 8.797616099999999, 46.4764009 ], + [ 8.7980123, 46.4763312 ], + [ 8.7983334, 46.476218 ], + [ 8.798684399999999, 46.4760309 ], + [ 8.7990592, 46.4758209 ], + [ 8.7993138, 46.4756525 ], + [ 8.7995637, 46.4753941 ], + [ 8.7997263, 46.4751599 ], + [ 8.8000465, 46.4748155 ], + [ 8.8003346, 46.4746861 ], + [ 8.800679, 46.4745273 ], + [ 8.801152, 46.4743379 ], + [ 8.8013367, 46.4742723 ], + [ 8.8016488, 46.4741254 ], + [ 8.8019857, 46.473995 ], + [ 8.8023144, 46.4738591 ], + [ 8.8025957, 46.4737522 ], + [ 8.8029163, 46.4736164 ], + [ 8.8032365, 46.4734694 ], + [ 8.8035735, 46.4733444 ], + [ 8.8039349, 46.4732136 ], + [ 8.804344, 46.4730422 ], + [ 8.8047192, 46.472849 ], + [ 8.8050132, 46.472663 ], + [ 8.8053478, 46.4724706 ], + [ 8.805591100000001, 46.4722462 ], + [ 8.8058769, 46.4720546 ], + [ 8.8062292, 46.47189 ], + [ 8.8065961, 46.4716913 ], + [ 8.8070367, 46.4715081 ], + [ 8.8073549, 46.4713161 ], + [ 8.8077512, 46.471021 ], + [ 8.8080844, 46.4708116 ], + [ 8.80834, 46.4706827 ], + [ 8.8085663, 46.470622 ], + [ 8.8088158, 46.4705439 ], + [ 8.809053, 46.4703646 ], + [ 8.8092766, 46.4702589 ], + [ 8.8095366, 46.4702425 ], + [ 8.8097148, 46.470211 ], + [ 8.8099788, 46.4700931 ], + [ 8.8102667, 46.469958 ], + [ 8.8106192, 46.469799 ], + [ 8.810905, 46.4696131 ], + [ 8.8113402, 46.4692835 ], + [ 8.8116828, 46.4690908 ], + [ 8.8122019, 46.4688272 ], + [ 8.8126824, 46.4686151 ], + [ 8.812962, 46.4684744 ], + [ 8.813203399999999, 46.4683965 ], + [ 8.8135343, 46.4683225 ], + [ 8.813875, 46.4682765 ], + [ 8.8141966, 46.4681857 ], + [ 8.8144754, 46.4680112 ], + [ 8.8150009, 46.4677136 ], + [ 8.8154449, 46.467412 ], + [ 8.8158093, 46.4671513 ], + [ 8.8160079, 46.4670233 ], + [ 8.8163701, 46.466898 ], + [ 8.8167561, 46.4667779 ], + [ 8.817288, 46.4666379 ], + [ 8.8177964, 46.4664984 ], + [ 8.8181677, 46.4664123 ], + [ 8.8184642, 46.4662939 ], + [ 8.8188189, 46.4661913 ], + [ 8.8192777, 46.4660583 ], + [ 8.8195745, 46.4659512 ], + [ 8.8198478, 46.46585 ], + [ 8.8202164, 46.4656908 ], + [ 8.8205286, 46.4655495 ], + [ 8.8209139, 46.4654067 ], + [ 8.8212494, 46.4652536 ], + [ 8.8215694, 46.4651008 ], + [ 8.8217842, 46.4649726 ], + [ 8.8220155, 46.4648499 ], + [ 8.8222547, 46.4647211 ], + [ 8.8224685, 46.4645536 ], + [ 8.8227136, 46.4643684 ], + [ 8.8229587, 46.4641832 ], + [ 8.8231883, 46.4640266 ], + [ 8.8234007, 46.4638365 ], + [ 8.8236287, 46.4636179 ], + [ 8.8238253, 46.463445 ], + [ 8.8239467, 46.4632284 ], + [ 8.8240365, 46.4630181 ], + [ 8.8240944, 46.4628309 ], + [ 8.8241263, 46.4626161 ], + [ 8.8241175, 46.4623963 ], + [ 8.824101, 46.4621995 ], + [ 8.8240917, 46.4619628 ], + [ 8.8240829, 46.4617431 ], + [ 8.8240982, 46.4615173 ], + [ 8.8241557, 46.4613133 ], + [ 8.824242, 46.4610296 ], + [ 8.8243552, 46.4608077 ], + [ 8.8245081, 46.4605509 ], + [ 8.8246521, 46.4602946 ], + [ 8.8248148, 46.4600716 ], + [ 8.8250013, 46.4598537 ], + [ 8.8251563, 46.4596478 ], + [ 8.8253264, 46.4594246 ], + [ 8.825433199999999, 46.4592422 ], + [ 8.8255923, 46.4589402 ], + [ 8.8257476, 46.4585539 ], + [ 8.8259586, 46.4581214 ], + [ 8.8263185, 46.4575563 ], + [ 8.8264265, 46.4573908 ], + [ 8.8264908, 46.4571696 ], + [ 8.8265244, 46.4569885 ], + [ 8.8265729, 46.4567847 ], + [ 8.8266287, 46.4565468 ], + [ 8.8267088, 46.4563085 ], + [ 8.8267919, 46.4561547 ], + [ 8.8268829, 46.4559894 ], + [ 8.8269931, 46.4558746 ], + [ 8.8271653, 46.4557077 ], + [ 8.8274345, 46.4555108 ], + [ 8.8278, 46.4552952 ], + [ 8.8280019, 46.4552349 ], + [ 8.8281853, 46.4551524 ], + [ 8.8283201, 46.4550484 ], + [ 8.8283966, 46.4549228 ], + [ 8.8284739, 46.4548255 ], + [ 8.8285765, 46.4547333 ], + [ 8.828710300000001, 46.4546236 ], + [ 8.8288278, 46.4545085 ], + [ 8.828926599999999, 46.4543319 ], + [ 8.8290581, 46.4541603 ], + [ 8.8291649, 46.4539778 ], + [ 8.8292548, 46.4537731 ], + [ 8.8292869, 46.4535638 ], + [ 8.8293287, 46.4533883 ], + [ 8.8293681, 46.4531452 ], + [ 8.8293921, 46.4529417 ], + [ 8.8294583, 46.45276 ], + [ 8.8295732, 46.4525774 ], + [ 8.8297048, 46.4524114 ], + [ 8.829843799999999, 46.452217 ], + [ 8.8299165, 46.4520071 ], + [ 8.8300042, 46.451746 ], + [ 8.8300585, 46.4514856 ], + [ 8.8300493, 46.4512547 ], + [ 8.830032, 46.4510238 ], + [ 8.8300061, 46.4507763 ], + [ 8.8299364, 46.4504676 ], + [ 8.8299139, 46.4503215 ], + [ 8.8300276, 46.4503137 ], + [ 8.8300406, 46.4502175 ], + [ 8.8300528, 46.4501215 ], + [ 8.8300558, 46.4499861 ], + [ 8.8300978, 46.4498161 ], + [ 8.8301791, 46.449623 ], + [ 8.830286, 46.4494461 ], + [ 8.8304242, 46.4492179 ], + [ 8.8306263, 46.4489773 ], + [ 8.830828499999999, 46.4487421 ], + [ 8.8309991, 46.4485415 ], + [ 8.8312112, 46.4483458 ], + [ 8.8313845, 46.4481847 ], + [ 8.8317269, 46.4479919 ], + [ 8.8319645, 46.4478351 ], + [ 8.8321479, 46.4477244 ], + [ 8.832355100000001, 46.447619 ], + [ 8.8326188, 46.4474954 ], + [ 8.8328429, 46.447384 ], + [ 8.8330579, 46.447267 ], + [ 8.8331672, 46.4471522 ], + [ 8.8332828, 46.4469977 ], + [ 8.8334069, 46.4468262 ], + [ 8.8335391, 46.4466828 ], + [ 8.8336883, 46.446539 ], + [ 8.8338422, 46.4463217 ], + [ 8.8339264, 46.4461791 ], + [ 8.8340004, 46.4459916 ], + [ 8.8340978, 46.4457925 ], + [ 8.8341656, 46.4456446 ], + [ 8.834329499999999, 46.4454722 ], + [ 8.834439, 46.4453631 ], + [ 8.8344995, 46.4452492 ], + [ 8.8345743, 46.4450898 ], + [ 8.8346318, 46.4448914 ], + [ 8.8347062, 46.4447152 ], + [ 8.8347822, 46.4445727 ], + [ 8.8348715, 46.4443737 ], + [ 8.8349535, 46.4441805 ], + [ 8.8350508, 46.4439756 ], + [ 8.8351415, 46.4438047 ], + [ 8.835248, 46.4436111 ], + [ 8.8353156, 46.4434576 ], + [ 8.835390499999999, 46.4433038 ], + [ 8.8354303, 46.4430776 ], + [ 8.835446, 46.4428686 ], + [ 8.8354797, 46.4426933 ], + [ 8.8355782, 46.4425053 ], + [ 8.8356865, 46.442351 ], + [ 8.8358165, 46.4421568 ], + [ 8.8359988, 46.4420349 ], + [ 8.8361395, 46.4418743 ], + [ 8.8362897, 46.4417699 ], + [ 8.8364389, 46.441626 ], + [ 8.8365525, 46.4414266 ], + [ 8.8366591, 46.4412384 ], + [ 8.8368285, 46.4409927 ], + [ 8.8370077, 46.4407808 ], + [ 8.8372166, 46.4405229 ], + [ 8.8374343, 46.4402594 ], + [ 8.8376608, 46.4400238 ], + [ 8.838112, 46.4396994 ], + [ 8.8383102, 46.4395602 ], + [ 8.8385174, 46.4394603 ], + [ 8.8387009, 46.4393497 ], + [ 8.8389491, 46.4392603 ], + [ 8.8392309, 46.4391815 ], + [ 8.839441, 46.4391267 ], + [ 8.8396992, 46.4390766 ], + [ 8.8398996, 46.4389938 ], + [ 8.8400269, 46.438918 ], + [ 8.8402172, 46.4387903 ], + [ 8.8402941, 46.4386816 ], + [ 8.8403362, 46.4385173 ], + [ 8.8403297, 46.4383597 ], + [ 8.840332, 46.4381962 ], + [ 8.8402932, 46.4380503 ], + [ 8.8401993, 46.4379394 ], + [ 8.8401057, 46.4378454 ], + [ 8.8399557, 46.4377694 ], + [ 8.839782, 46.4376882 ], + [ 8.8395667, 46.4376021 ], + [ 8.8393431, 46.4375107 ], + [ 8.8390942, 46.4373859 ], + [ 8.8388207, 46.4372841 ], + [ 8.8385806, 46.4371816 ], + [ 8.8384314, 46.4371056 ], + [ 8.8382647, 46.4370131 ], + [ 8.8381138, 46.4369032 ], + [ 8.8379714, 46.4368045 ], + [ 8.8378462, 46.4367449 ], + [ 8.8376177, 46.4367156 ], + [ 8.8374542, 46.4367131 ], + [ 8.8372767, 46.4367391 ], + [ 8.8369851, 46.4367843 ], + [ 8.8367922, 46.4368443 ], + [ 8.8366323, 46.4369208 ], + [ 8.8364154, 46.436992599999996 ], + [ 8.8362311, 46.4370695 ], + [ 8.8361196, 46.437128 ], + [ 8.8360149, 46.4371695 ], + [ 8.8357889, 46.4372077 ], + [ 8.835603, 46.4372507 ], + [ 8.8352637, 46.4373081 ], + [ 8.8348583, 46.4373611 ], + [ 8.8343714, 46.4374044 ], + [ 8.833966, 46.4374517 ], + [ 8.8338352, 46.437426 ], + [ 8.8336526, 46.4373507 ], + [ 8.8334635, 46.4373035 ], + [ 8.8333237, 46.4372725 ], + [ 8.8332439, 46.4373022 ], + [ 8.8331653, 46.4373771 ], + [ 8.8330948, 46.4374516 ], + [ 8.8330161, 46.4375209 ], + [ 8.8329145, 46.4376187 ], + [ 8.832745899999999, 46.4376727 ], + [ 8.8326181, 46.4377315 ], + [ 8.832472, 46.4377457 ], + [ 8.8323002, 46.4377376 ], + [ 8.8321185, 46.4376623 ], + [ 8.8319764, 46.4375749 ], + [ 8.8318801, 46.4374077 ], + [ 8.8317743, 46.4372123 ], + [ 8.8316785, 46.4370619 ], + [ 8.8316569, 46.4369158 ], + [ 8.8316926, 46.4367855 ], + [ 8.8317776, 46.4366766 ], + [ 8.831757, 46.43657 ], + [ 8.8316559, 46.4364986 ], + [ 8.8315151, 46.4364337 ], + [ 8.8312776, 46.4363988 ], + [ 8.8309262, 46.4363661 ], + [ 8.830607, 46.4363217 ], + [ 8.8303366, 46.4362761 ], + [ 8.8301954, 46.4362224 ], + [ 8.8301697, 46.4361723 ], + [ 8.8301575, 46.4360767 ], + [ 8.8301859, 46.4359803 ], + [ 8.8302395, 46.4358834 ], + [ 8.8303413, 46.4357912 ], + [ 8.8304346, 46.435688 ], + [ 8.8304242, 46.4356317 ], + [ 8.8303158, 46.4355607 ], + [ 8.830224, 46.4355003 ], + [ 8.8300415, 46.435425 ], + [ 8.8298767, 46.4353718 ], + [ 8.8296384, 46.4353087 ], + [ 8.8294176, 46.4352961 ], + [ 8.8291966, 46.4352721 ], + [ 8.8290172, 46.4352531 ], + [ 8.8288119, 46.4352063 ], + [ 8.8286945, 46.4351353 ], + [ 8.828600999999999, 46.4350413 ], + [ 8.8285226, 46.4349018 ], + [ 8.8284081, 46.4346842 ], + [ 8.8283311, 46.4346012 ], + [ 8.828097, 46.4344479 ], + [ 8.8279563, 46.4343828 ], + [ 8.8277345, 46.4343309 ], + [ 8.8275957, 46.4343392 ], + [ 8.8274432, 46.4343871 ], + [ 8.8272, 46.4344201 ], + [ 8.8269235, 46.4344198 ], + [ 8.8267126, 46.4344408 ], + [ 8.8265926, 46.4344882 ], + [ 8.8264898, 46.434569 ], + [ 8.8263872, 46.4346613 ], + [ 8.8263014, 46.4347419 ], + [ 8.8261823, 46.4348231 ], + [ 8.8260876, 46.4349038 ], + [ 8.8259836, 46.4349396 ], + [ 8.8258475, 46.434993 ], + [ 8.825654, 46.4350588 ], + [ 8.8254285, 46.4351139 ], + [ 8.8252685, 46.4351846 ], + [ 8.8251097, 46.4352723 ], + [ 8.8249908, 46.4353648 ], + [ 8.8248567, 46.4354632 ], + [ 8.8246726, 46.4355457 ], + [ 8.8245286, 46.4356104 ], + [ 8.8244094, 46.4356861 ], + [ 8.8243327, 46.435806 ], + [ 8.8242464, 46.4358979 ], + [ 8.8241591, 46.4359502 ], + [ 8.8240561, 46.4360254 ], + [ 8.8239366, 46.4360897 ], + [ 8.8238183, 46.436171 ], + [ 8.8237809, 46.4362675 ], + [ 8.8236797, 46.4363823 ], + [ 8.8235373, 46.4364752 ], + [ 8.8233854, 46.4365458 ], + [ 8.8232093, 46.4366282 ], + [ 8.8230721, 46.4366702 ], + [ 8.8229864, 46.4367508 ], + [ 8.8229159, 46.4368255 ], + [ 8.8228049, 46.4369066 ], + [ 8.8226149, 46.437045499999996 ], + [ 8.8224217, 46.4370943 ], + [ 8.8222694, 46.437148 ], + [ 8.8221564, 46.437184 ], + [ 8.8220954, 46.437281 ], + [ 8.8219929, 46.4373732 ], + [ 8.8218409, 46.4374438 ], + [ 8.8217026, 46.4374409 ], + [ 8.8216287, 46.4374141 ], + [ 8.821519, 46.4373204 ], + [ 8.8213927, 46.4372156 ], + [ 8.8212829, 46.4371219 ], + [ 8.8212222, 46.4370385 ], + [ 8.8211202, 46.4369278 ], + [ 8.8210265, 46.436828 ], + [ 8.8208947, 46.4367911 ], + [ 8.8207639, 46.4367656 ], + [ 8.8205992, 46.4367179 ], + [ 8.8204343, 46.4366647 ], + [ 8.8202701, 46.4366341 ], + [ 8.8200891, 46.4365868 ], + [ 8.8199152, 46.4365282 ], + [ 8.8197745, 46.4364633 ], + [ 8.8195448, 46.4364168 ], + [ 8.8194046, 46.4363745 ], + [ 8.8192162, 46.4363556 ], + [ 8.8190619, 46.4363642 ], + [ 8.8188826, 46.4363507 ], + [ 8.8187025, 46.4363373 ], + [ 8.8185474, 46.436312 ], + [ 8.8184724, 46.436274 ], + [ 8.8183478, 46.4362031 ], + [ 8.8182226, 46.4361436 ], + [ 8.8181149, 46.4360949 ], + [ 8.817982, 46.4360185 ], + [ 8.8178324, 46.4359594 ], + [ 8.8176363, 46.4359237 ], + [ 8.8173815, 46.4358835 ], + [ 8.8171762, 46.4358366 ], + [ 8.816964, 46.435807 ], + [ 8.8167671, 46.4357713 ], + [ 8.8165033, 46.4356975 ], + [ 8.8162965, 46.4356225 ], + [ 8.816090299999999, 46.4355419 ], + [ 8.8158507, 46.4354619 ], + [ 8.8156032, 46.4353877 ], + [ 8.8152737, 46.435287 ], + [ 8.8150257, 46.4351903 ], + [ 8.8148083, 46.4350535 ], + [ 8.8145757, 46.4349282 ], + [ 8.8142348, 46.43476 ], + [ 8.8140254, 46.4346175 ], + [ 8.8138505, 46.4345194 ], + [ 8.8136345, 46.4344051 ], + [ 8.8134089, 46.4342629 ], + [ 8.8131238, 46.4340541 ], + [ 8.8128383, 46.4338286 ], + [ 8.8123886, 46.4335721 ], + [ 8.8122305, 46.4334963 ], + [ 8.812100000000001, 46.4334818 ], + [ 8.811985, 46.4334672 ], + [ 8.8118463, 46.4334528 ], + [ 8.8117163, 46.4334554 ], + [ 8.81153, 46.4334872 ], + [ 8.8113684, 46.4335298 ], + [ 8.8112158, 46.4335721 ], + [ 8.811020899999999, 46.4335815 ], + [ 8.8108503, 46.4335904 ], + [ 8.8106478, 46.4336225 ], + [ 8.8102116, 46.4337098 ], + [ 8.8098643, 46.4337727 ], + [ 8.8095805, 46.4338064 ], + [ 8.8092485, 46.4338635 ], + [ 8.8088987, 46.4338589 ], + [ 8.8084418, 46.4338339 ], + [ 8.8082126, 46.4338101 ], + [ 8.8079418, 46.4337476 ], + [ 8.8077011, 46.4336508 ], + [ 8.8075175, 46.4335303 ], + [ 8.8052075, 46.4317422 ], + [ 8.794546799999999, 46.434133 ], + [ 8.7940584, 46.4335335 ], + [ 8.7938805, 46.4333451 ], + [ 8.793734, 46.433145 ], + [ 8.7936806, 46.4330277 ], + [ 8.7935103, 46.4328505 ], + [ 8.7933836, 46.4327288 ], + [ 8.7933483, 46.4326505 ], + [ 8.7932203, 46.4325064 ], + [ 8.793061699999999, 46.4324079 ], + [ 8.7928619, 46.4322877 ], + [ 8.7926713, 46.4322124 ], + [ 8.7924885, 46.4321201 ], + [ 8.7922728, 46.4320171 ], + [ 8.7920325, 46.4319033 ], + [ 8.7918127, 46.4316988 ], + [ 8.791564900000001, 46.431416 ], + [ 8.7912071, 46.4314172 ], + [ 8.790874, 46.4314291 ], + [ 8.7904567, 46.4313921 ], + [ 8.790138, 46.4313642 ], + [ 8.7898837, 46.4313071 ], + [ 8.7898353, 46.4313248 ], + [ 8.7896732, 46.4313449 ], + [ 8.7895526, 46.4313697 ], + [ 8.7893092, 46.4313912 ], + [ 8.7891466, 46.4313943 ], + [ 8.7889992, 46.4313858 ], + [ 8.7888449, 46.4313944 ], + [ 8.7886888, 46.4313636 ], + [ 8.7885259, 46.4313554 ], + [ 8.788453, 46.431368 ], + [ 8.7883329, 46.4314097 ], + [ 8.7882038, 46.4314516 ], + [ 8.7880194, 46.4315229 ], + [ 8.7878831, 46.4315706 ], + [ 8.7876806, 46.4316025 ], + [ 8.7874858, 46.4316175 ], + [ 8.7874221, 46.4316413 ], + [ 8.7872933, 46.4316944 ], + [ 8.7871568, 46.4317309 ], + [ 8.7870193, 46.4317616 ], + [ 8.7868493, 46.431793 ], + [ 8.7866554, 46.4318138 ], + [ 8.7865336, 46.4318217 ], + [ 8.786372, 46.4318642 ], + [ 8.7861384, 46.4319193 ], + [ 8.785978, 46.4319787 ], + [ 8.7857271, 46.4320286 ], + [ 8.7855567, 46.4320432 ], + [ 8.7853722, 46.4321142 ], + [ 8.7851609, 46.4321183 ], + [ 8.78499, 46.4321158 ], + [ 8.7847943, 46.4321252 ], + [ 8.7845343, 46.4321358 ], + [ 8.7843476, 46.4321506 ], + [ 8.7841287, 46.4321773 ], + [ 8.7838868, 46.432227 ], + [ 8.7836598, 46.4322595 ], + [ 8.7834083, 46.4322812 ], + [ 8.7831725, 46.4322855 ], + [ 8.7829128, 46.4323074 ], + [ 8.7827173, 46.4322942 ], + [ 8.7824642, 46.4322877 ], + [ 8.7822768, 46.4322744 ], + [ 8.7821089, 46.4323565 ], + [ 8.7818823, 46.4324002 ], + [ 8.7816239, 46.4324446 ], + [ 8.7813642, 46.4324664 ], + [ 8.7811131, 46.432505 ], + [ 8.7808855, 46.4325093 ], + [ 8.7806563, 46.4324854 ], + [ 8.7805768, 46.4325264 ], + [ 8.7804498, 46.432619 ], + [ 8.7802877, 46.4326389 ], + [ 8.7801313, 46.4325968 ], + [ 8.7800066, 46.4325202 ], + [ 8.7797088, 46.4326161 ], + [ 8.7793968, 46.4327573 ], + [ 8.7791248, 46.4328752 ], + [ 8.778638, 46.4331212 ], + [ 8.7782512, 46.4330326 ], + [ 8.7779178, 46.4330333 ], + [ 8.7775926, 46.4330394 ], + [ 8.7772581, 46.4330288 ], + [ 8.777031, 46.4330557 ], + [ 8.7756882, 46.4326582 ], + [ 8.7751371, 46.4325051 ], + [ 8.7747733, 46.4323597 ], + [ 8.7743956, 46.4322823 ], + [ 8.7740848, 46.4322431 ], + [ 8.7737313, 46.4321539 ], + [ 8.7732868, 46.4320382 ], + [ 8.7727264, 46.4318684 ], + [ 8.7721898, 46.4316757 ], + [ 8.7718688, 46.4315858 ], + [ 8.7713935, 46.4315045 ], + [ 8.7706815, 46.4314222 ], + [ 8.7696335, 46.4312727 ], + [ 8.7692966, 46.4311946 ], + [ 8.7690181, 46.431149 ], + [ 8.7685471, 46.4311748 ], + [ 8.7681731, 46.4311819 ], + [ 8.7678972, 46.4312039 ], + [ 8.7676444, 46.4312087 ], + [ 8.767439, 46.4311562 ], + [ 8.7672398, 46.4310584 ], + [ 8.7670319, 46.4309384 ], + [ 8.7668309, 46.4308012 ], + [ 8.7666602, 46.4306071 ], + [ 8.7665736, 46.4304565 ], + [ 8.7664239, 46.430386 ], + [ 8.7662121, 46.4303732 ], + [ 8.7660012, 46.4303939 ], + [ 8.7658471, 46.4304139 ], + [ 8.765677, 46.4304396 ], + [ 8.7655556, 46.4304644 ], + [ 8.7653527, 46.4304794 ], + [ 8.7651661, 46.4304999 ], + [ 8.7650195, 46.4304913 ], + [ 8.7647739, 46.4304565 ], + [ 8.7644952, 46.4303998 ], + [ 8.7642235, 46.4303315 ], + [ 8.7640082, 46.4302398 ], + [ 8.763801, 46.4301478 ], + [ 8.7635949, 46.4300671 ], + [ 8.7633636, 46.4299869 ], + [ 8.7631325, 46.4299124 ], + [ 8.762910699999999, 46.4298546 ], + [ 8.7626813, 46.4298193 ], + [ 8.7624766, 46.429795 ], + [ 8.7621987, 46.4297721 ], + [ 8.7619383, 46.4297657 ], + [ 8.7617756, 46.4297631 ], + [ 8.7615877, 46.4297609 ], + [ 8.7613175, 46.4297209 ], + [ 8.7610397, 46.4296979 ], + [ 8.7608133, 46.4297191 ], + [ 8.7607086, 46.4297605 ], + [ 8.7606036, 46.4297907 ], + [ 8.76041, 46.4298224 ], + [ 8.76024, 46.4298538 ], + [ 8.7601846, 46.4298831 ], + [ 8.7600331, 46.4299761 ], + [ 8.7598656, 46.4300751 ], + [ 8.7596746, 46.4301802 ], + [ 8.7594413, 46.4302521 ], + [ 8.7592145, 46.4302903 ], + [ 8.7589479, 46.4303291 ], + [ 8.7586465, 46.4303404 ], + [ 8.7584838, 46.4303378 ], + [ 8.7583353, 46.4302841 ], + [ 8.7581853, 46.4302023 ], + [ 8.7579526, 46.4300659 ], + [ 8.7576396, 46.4299703 ], + [ 8.7573847, 46.4299187 ], + [ 8.7570314, 46.4298407 ], + [ 8.7567124, 46.4297959 ], + [ 8.7562711, 46.4297421 ], + [ 8.7559754, 46.4296857 ], + [ 8.7555514, 46.4296767 ], + [ 8.7551027, 46.4296512 ], + [ 8.7547434, 46.4296242 ], + [ 8.7543533, 46.4296314 ], + [ 8.7540443, 46.4296316 ], + [ 8.7536629, 46.4296668 ], + [ 8.7533856, 46.4296664 ], + [ 8.7529119, 46.4296188 ], + [ 8.752528, 46.429581 ], + [ 8.7521751, 46.4295142 ], + [ 8.7518225, 46.4294644 ], + [ 8.7515355, 46.4293965 ], + [ 8.7512471, 46.4293117 ], + [ 8.7509828, 46.4292094 ], + [ 8.7507514, 46.4291237 ], + [ 8.7504978, 46.4290946 ], + [ 8.7502619, 46.4290932 ], + [ 8.750067, 46.4291025 ], + [ 8.749831799999999, 46.4291295 ], + [ 8.7495805, 46.4291624 ], + [ 8.749394, 46.4291828 ], + [ 8.7491339, 46.4291876 ], + [ 8.7488396, 46.4291593 ], + [ 8.7485375, 46.4291424 ], + [ 8.7481697, 46.4290984 ], + [ 8.7479078, 46.4290639 ], + [ 8.7476887, 46.4290849 ], + [ 8.7473943, 46.4290509 ], + [ 8.747061, 46.4290571 ], + [ 8.7467364, 46.4290857 ], + [ 8.7463478, 46.429155 ], + [ 8.7459764, 46.4292352 ], + [ 8.7455627, 46.4292767 ], + [ 8.7451405, 46.4293071 ], + [ 8.7447078, 46.4292701 ], + [ 8.7443561, 46.4292203 ], + [ 8.7438726, 46.4291334 ], + [ 8.7434298, 46.4290515 ], + [ 8.7430502, 46.4289233 ], + [ 8.7427461, 46.4288556 ], + [ 8.742523, 46.4287751 ], + [ 8.742269199999999, 46.4287405 ], + [ 8.7420174, 46.4287507 ], + [ 8.7417231, 46.4287225 ], + [ 8.7414715, 46.4287441 ], + [ 8.7412664, 46.4287027 ], + [ 8.7409615, 46.4286013 ], + [ 8.7406568, 46.4285111 ], + [ 8.7404842, 46.4284692 ], + [ 8.7403157, 46.4283258 ], + [ 8.7401895, 46.4282209 ], + [ 8.7399996, 46.428134299999996 ], + [ 8.7397686, 46.4280654 ], + [ 8.7394249, 46.4280097 ], + [ 8.7391062, 46.4279761 ], + [ 8.7387622, 46.4279431 ], + [ 8.7386026, 46.4277994 ], + [ 8.7384082, 46.4276283 ], + [ 8.7381739, 46.4274523 ], + [ 8.7380278, 46.4272632 ], + [ 8.7375642, 46.4277004 ], + [ 8.7373909, 46.4278333 ], + [ 8.7372561, 46.4279428 ], + [ 8.7371057, 46.4280471 ], + [ 8.7369288, 46.4280954 ], + [ 8.7367264, 46.428133 ], + [ 8.7365802, 46.4281414 ], + [ 8.7363839, 46.4281281 ], + [ 8.7361967, 46.4281204 ], + [ 8.7359851, 46.428113 ], + [ 8.7357476, 46.4280779 ], + [ 8.7355262, 46.428037 ], + [ 8.7352565, 46.4280138 ], + [ 8.7350036, 46.4280127 ], + [ 8.7348086, 46.428022 ], + [ 8.7346479, 46.4280701 ], + [ 8.734471, 46.4281185 ], + [ 8.7342624, 46.4282013 ], + [ 8.7340216, 46.4283016 ], + [ 8.7335468, 46.42844 ], + [ 8.7332725, 46.4285015 ], + [ 8.7330865, 46.4285444 ], + [ 8.7328872, 46.4286439 ], + [ 8.7325893, 46.4287339 ], + [ 8.7322999, 46.4288408 ], + [ 8.7320261, 46.4289192 ], + [ 8.7317696, 46.4290084 ], + [ 8.7314778, 46.4290477 ], + [ 8.7312022, 46.4290866 ], + [ 8.7309097, 46.4290976 ], + [ 8.7306663, 46.4291191 ], + [ 8.7304243, 46.4291687 ], + [ 8.7301345, 46.4292586 ], + [ 8.7298364, 46.4293429 ], + [ 8.7268191, 46.4296411 ], + [ 8.726153, 46.4296703 ], + [ 8.7258943, 46.4297371 ], + [ 8.7257271, 46.4298191 ], + [ 8.7255541, 46.429997 ], + [ 8.7253669, 46.4301977 ], + [ 8.7252364, 46.43042 ], + [ 8.7250961, 46.4305749 ], + [ 8.7249202, 46.4306682 ], + [ 8.7244189, 46.4307564 ], + [ 8.7244195, 46.4309875 ], + [ 8.724461699999999, 46.4312235 ], + [ 8.7245219, 46.4315325 ], + [ 8.7245746, 46.4318358 ], + [ 8.724606, 46.432027 ], + [ 8.7245356, 46.4321128 ], + [ 8.7241809, 46.4324125 ], + [ 8.7239926, 46.432602 ], + [ 8.7238121, 46.4327744 ], + [ 8.7236971, 46.4329683 ], + [ 8.7235854, 46.4332296 ], + [ 8.7233911, 46.4334756 ], + [ 8.7232542, 46.4337375 ], + [ 8.7232196, 46.4338902 ], + [ 8.7232419, 46.4340421 ], + [ 8.7232138, 46.4341609 ], + [ 8.7231352, 46.4342414 ], + [ 8.7230645, 46.4343102 ], + [ 8.722954099999999, 46.4343912 ], + [ 8.7228348, 46.4344667 ], + [ 8.7227055, 46.4345029 ], + [ 8.7225281, 46.4345343 ], + [ 8.7223581, 46.4345656 ], + [ 8.7222301, 46.4346244 ], + [ 8.7221273, 46.4347108 ], + [ 8.7220501, 46.4348193 ], + [ 8.7220215, 46.4349157 ], + [ 8.7219516, 46.4350185 ], + [ 8.7218747, 46.4351383 ], + [ 8.7217318, 46.4352198 ], + [ 8.721612499999999, 46.4352954 ], + [ 8.7214447, 46.4353886 ], + [ 8.721316999999999, 46.4354585 ], + [ 8.7211324, 46.4355296 ], + [ 8.7207932, 46.4355922 ], + [ 8.7192375, 46.4360155 ], + [ 8.7185788, 46.4358133 ], + [ 8.7185161, 46.4358765 ], + [ 8.7184292, 46.4359514 ], + [ 8.7183666, 46.4360201 ], + [ 8.7182717, 46.4361008 ], + [ 8.7180806, 46.4362058 ], + [ 8.7179043, 46.4362823 ], + [ 8.717817, 46.4363404 ], + [ 8.7177805, 46.436448 ], + [ 8.7177288, 46.4366013 ], + [ 8.7172699, 46.4369367 ], + [ 8.7170549, 46.4370646 ], + [ 8.7167913, 46.437199 ], + [ 8.7165994, 46.4373041 ], + [ 8.7165137, 46.4373959 ], + [ 8.7164048, 46.4375388 ], + [ 8.716312, 46.4376702 ], + [ 8.7162283, 46.4378127 ], + [ 8.7162106, 46.4379934 ], + [ 8.716142, 46.4381185 ], + [ 8.7159899, 46.438189 ], + [ 8.7157481, 46.4382498 ], + [ 8.7153344, 46.4382969 ], + [ 8.7151159, 46.4385489 ], + [ 8.7149997, 46.438692 ], + [ 8.7148801, 46.4387618 ], + [ 8.714761, 46.4388486 ], + [ 8.7146087, 46.4389077 ], + [ 8.7144258, 46.4390181 ], + [ 8.7142984, 46.4390994 ], + [ 8.714147, 46.4391981 ], + [ 8.7140532, 46.43929 ], + [ 8.7139419, 46.4393653 ], + [ 8.7137834, 46.4394753 ], + [ 8.7136234, 46.4395515 ], + [ 8.713416, 46.4396567 ], + [ 8.7133051, 46.4397491 ], + [ 8.7130305, 46.4397991 ], + [ 8.712814, 46.4398933 ], + [ 8.7126278, 46.4399306 ], + [ 8.7124426, 46.439979 ], + [ 8.712177, 46.4400628 ], + [ 8.7118712, 46.4401699 ], + [ 8.7115831, 46.4402992 ], + [ 8.7113434, 46.4404163 ], + [ 8.7111283, 46.4405386 ], + [ 8.7109859, 46.440637100000004 ], + [ 8.7108402, 46.440668 ], + [ 8.7106532, 46.4406713 ], + [ 8.7103996, 46.4406477 ], + [ 8.7101039, 46.4405912 ], + [ 8.7098498, 46.4405451 ], + [ 8.7095899, 46.4405611 ], + [ 8.7094697, 46.4406028 ], + [ 8.7093844, 46.4407114 ], + [ 8.7091537, 46.4408622 ], + [ 8.7089079, 46.4410302 ], + [ 8.7087667, 46.441185 ], + [ 8.7086348, 46.4413508 ], + [ 8.7085768, 46.4415493 ], + [ 8.7085342, 46.4417079 ], + [ 8.7085306, 46.4418319 ], + [ 8.7084935, 46.4419171 ], + [ 8.7083523, 46.4420719 ], + [ 8.7082269, 46.4422039 ], + [ 8.7082219, 46.442266 ], + [ 8.7082184, 46.4423957 ], + [ 8.7082235, 46.4425422 ], + [ 8.7081684, 46.4425883 ], + [ 8.7080221, 46.442591 ], + [ 8.7078348, 46.4425831 ], + [ 8.7077363, 46.4427879 ], + [ 8.7076166, 46.4430607 ], + [ 8.7075379, 46.4433496 ], + [ 8.7074985, 46.4436097 ], + [ 8.7075656, 46.4438733 ], + [ 8.7076941, 46.4440458 ], + [ 8.7077736, 46.4442077 ], + [ 8.707753199999999, 46.4443095 ], + [ 8.7073536, 46.4447172 ], + [ 8.7071119, 46.4447835 ], + [ 8.706871, 46.4448838 ], + [ 8.7066117, 46.4451365 ], + [ 8.7062085, 46.4454595 ], + [ 8.7063262, 46.4455533 ], + [ 8.706419499999999, 46.4456474 ], + [ 8.7065047, 46.4457417 ], + [ 8.7065564, 46.445831 ], + [ 8.7065445, 46.4459495 ], + [ 8.7065973, 46.44605 ], + [ 8.7067025, 46.4462341 ], + [ 8.7068375, 46.4463726 ], + [ 8.7070307, 46.4465269 ], + [ 8.7072582, 46.4467256 ], + [ 8.7073134, 46.4468939 ], + [ 8.7073603, 46.4470564 ], + [ 8.7074051, 46.4471627 ], + [ 8.707450399999999, 46.4472915 ], + [ 8.7074072, 46.4474277 ], + [ 8.7073942, 46.4475293 ], + [ 8.7073591, 46.4476652 ], + [ 8.707298399999999, 46.4477847 ], + [ 8.7071957, 46.4478768 ], + [ 8.707094, 46.4479801 ], + [ 8.7071203, 46.4480304 ], + [ 8.7072123, 46.448102 ], + [ 8.7072894, 46.4481964 ], + [ 8.7073342, 46.4483027 ], + [ 8.7073383, 46.4484098 ], + [ 8.7073427, 46.448528 ], + [ 8.7073548, 46.4486293 ], + [ 8.7073428, 46.4487422 ], + [ 8.7073388, 46.4488494 ], + [ 8.7072947, 46.4489799 ], + [ 8.7072766, 46.4491437 ], + [ 8.7072832, 46.449324 ], + [ 8.7073301, 46.4494866 ], + [ 8.7074015, 46.4496488 ], + [ 8.7073565, 46.4497455 ], + [ 8.7072936, 46.449803 ], + [ 8.7071902, 46.4498668 ], + [ 8.707128, 46.4499582 ], + [ 8.7071095, 46.450105 ], + [ 8.7070984, 46.4502575 ], + [ 8.7070067, 46.4504057 ], + [ 8.7068402, 46.4505215 ], + [ 8.7065706, 46.450718 ], + [ 8.7065969, 46.4507627 ], + [ 8.7066661, 46.4508685 ], + [ 8.7067786, 46.4510525 ], + [ 8.7068824, 46.4512142 ], + [ 8.706995, 46.451398 ], + [ 8.7070581, 46.4515604 ], + [ 8.7070543, 46.4516732 ], + [ 8.7070173, 46.4517641 ], + [ 8.7068975, 46.4518227 ], + [ 8.7067371, 46.4518876 ], + [ 8.7065221, 46.4520155 ], + [ 8.7063465, 46.4521259 ], + [ 8.7063033, 46.4522619 ], + [ 8.7063083, 46.4524084 ], + [ 8.7063145, 46.4525661 ], + [ 8.7064419, 46.4526934 ], + [ 8.7069625, 46.4531067 ], + [ 8.707241400000001, 46.4533778 ], + [ 8.7074874, 46.4536327 ], + [ 8.7076543, 46.4537423 ], + [ 8.70783, 46.4538801 ], + [ 8.7079744, 46.4540352 ], + [ 8.7080561, 46.4542592 ], + [ 8.708829399999999, 46.4546567 ], + [ 8.7088337, 46.4547694 ], + [ 8.7088786, 46.4548812 ], + [ 8.7089803, 46.4549865 ], + [ 8.7091558, 46.455113 ], + [ 8.7092986, 46.4552344 ], + [ 8.7094649, 46.4553215 ], + [ 8.7095241, 46.4553825 ], + [ 8.7096516, 46.4555098 ], + [ 8.7097787, 46.455654 ], + [ 8.7099149, 46.4558094 ], + [ 8.7100512, 46.4559647 ], + [ 8.7101464, 46.4561039 ], + [ 8.7102935, 46.456338 ], + [ 8.7103665, 46.4565395 ], + [ 8.7105316, 46.4568128 ], + [ 8.710685999999999, 46.4570129 ], + [ 8.710822499999999, 46.4571795 ], + [ 8.7109729, 46.4572782 ], + [ 8.7110993, 46.4573943 ], + [ 8.7112415, 46.4574876 ], + [ 8.7113833, 46.4575695 ], + [ 8.7115708, 46.4577916 ], + [ 8.7127117, 46.4593209 ], + [ 8.712808, 46.4592628 ], + [ 8.7129346, 46.4591815 ], + [ 8.7131843, 46.4591093 ], + [ 8.713419, 46.4590543 ], + [ 8.7136209, 46.4590224 ], + [ 8.7139373, 46.4589827 ], + [ 8.7142131, 46.4589495 ], + [ 8.7146842, 46.4589128 ], + [ 8.7154276, 46.4587638 ], + [ 8.7155103, 46.4587848 ], + [ 8.7155852, 46.4588229 ], + [ 8.7158238, 46.4588974 ], + [ 8.7160531, 46.458927 ], + [ 8.7162911, 46.4589792 ], + [ 8.7165126, 46.4590201 ], + [ 8.7166367, 46.4590742 ], + [ 8.7168089, 46.4590937 ], + [ 8.7170305, 46.4591402 ], + [ 8.7173166, 46.4591632 ], + [ 8.7174309, 46.4591781 ], + [ 8.7175542, 46.4591983 ], + [ 8.7176927, 46.459207 ], + [ 8.7177823, 46.4592111 ], + [ 8.7179439, 46.459163 ], + [ 8.7180887, 46.459126499999996 ], + [ 8.7182522, 46.4591235 ], + [ 8.7184155, 46.4591487 ], + [ 8.7185063, 46.4591696 ], + [ 8.7186139, 46.4592127 ], + [ 8.7188037, 46.4592881 ], + [ 8.7189776, 46.459347 ], + [ 8.7191912, 46.4593994 ], + [ 8.7195571, 46.4591842 ], + [ 8.719729300000001, 46.4592035 ], + [ 8.7199085, 46.4592116 ], + [ 8.7201859, 46.4592121 ], + [ 8.7204196, 46.4591514 ], + [ 8.7205816, 46.4591202 ], + [ 8.720703199999999, 46.4591011 ], + [ 8.7208483, 46.4590758 ], + [ 8.721075, 46.4590266 ], + [ 8.7212683, 46.4589779 ], + [ 8.7214203, 46.4589018 ], + [ 8.7215789, 46.4587974 ], + [ 8.7217055, 46.4586824 ], + [ 8.7218079, 46.4586073 ], + [ 8.7219008, 46.4584759 ], + [ 8.7220918, 46.4583652 ], + [ 8.72227, 46.4583281 ], + [ 8.7224406, 46.4583194 ], + [ 8.7226197, 46.4583217 ], + [ 8.722782, 46.4583018 ], + [ 8.7230171, 46.4582693 ], + [ 8.7232298, 46.4582823 ], + [ 8.7234171, 46.4582901 ], + [ 8.7236379, 46.458303 ], + [ 8.7238193, 46.4583673 ], + [ 8.7239921, 46.4584149 ], + [ 8.7241573, 46.4584851 ], + [ 8.7243232, 46.4585497 ], + [ 8.7244873, 46.4585749 ], + [ 8.7246522, 46.4586282 ], + [ 8.7248255, 46.4586982 ], + [ 8.7250076, 46.4587625 ], + [ 8.7250995, 46.4588286 ], + [ 8.7252098, 46.4589504 ], + [ 8.7253381, 46.4591116 ], + [ 8.7254319, 46.4592226 ], + [ 8.7255678, 46.4593611 ], + [ 8.7257589, 46.459459 ], + [ 8.7259237, 46.4595124 ], + [ 8.726128899999999, 46.4595537 ], + [ 8.7261959, 46.4595976 ], + [ 8.7262636, 46.4596753 ], + [ 8.7263891, 46.4597519 ], + [ 8.7265068, 46.4598398 ], + [ 8.7266233, 46.4599166 ], + [ 8.726701, 46.4600336 ], + [ 8.7268373, 46.4601889 ], + [ 8.7269735, 46.4603386 ], + [ 8.7270584, 46.4604216 ], + [ 8.7271633, 46.4606227 ], + [ 8.7272604, 46.4608069 ], + [ 8.7274557, 46.4610119 ], + [ 8.7275735, 46.4611056 ], + [ 8.7276966, 46.4611483 ], + [ 8.7279271, 46.4611949 ], + [ 8.7282058, 46.4612461 ], + [ 8.7284921, 46.4612747 ], + [ 8.7287765, 46.4612581 ], + [ 8.7289961, 46.461254 ], + [ 8.7291905, 46.4612167 ], + [ 8.7293836, 46.4611567 ], + [ 8.7295363, 46.4611145 ], + [ 8.7296815, 46.461061 ], + [ 8.7298244, 46.4609795 ], + [ 8.7299672, 46.4608584 ], + [ 8.7300998, 46.4607206 ], + [ 8.7302499, 46.4605996 ], + [ 8.7303544, 46.460547 ], + [ 8.7304997, 46.4605329 ], + [ 8.7306961, 46.4605462 ], + [ 8.7308672, 46.4605543 ], + [ 8.7310125, 46.4605066 ], + [ 8.7312518, 46.4603724 ], + [ 8.7314348, 46.4602676 ], + [ 8.7316177, 46.4603601 ], + [ 8.7317757, 46.460436 ], + [ 8.7318999, 46.4604901 ], + [ 8.732104, 46.4605202 ], + [ 8.7322758, 46.4605227 ], + [ 8.7324525, 46.4604631 ], + [ 8.7325945, 46.4603421 ], + [ 8.7327284, 46.4602268 ], + [ 8.7328881, 46.4601336 ], + [ 8.7331037, 46.4600283 ], + [ 8.7333142, 46.4599848 ], + [ 8.7335337, 46.4599752 ], + [ 8.7337526, 46.459943 ], + [ 8.734005, 46.4599495 ], + [ 8.734234, 46.4599622 ], + [ 8.7344726, 46.4600423 ], + [ 8.734678, 46.4600893 ], + [ 8.7348096, 46.4601151 ], + [ 8.7349882, 46.4600948 ], + [ 8.7352071, 46.4600626 ], + [ 8.7353837, 46.4599974 ], + [ 8.7355923, 46.4599089 ], + [ 8.7357673, 46.4598098 ], + [ 8.7359841, 46.4597213 ], + [ 8.7362587, 46.4596711 ], + [ 8.7364615, 46.4596448 ], + [ 8.7366651, 46.4596524 ], + [ 8.7369346, 46.4596586 ], + [ 8.737161799999999, 46.4596318 ], + [ 8.7374389, 46.4596493 ], + [ 8.7376902, 46.4596107 ], + [ 8.7378427, 46.4595572 ], + [ 8.7379693, 46.459442 ], + [ 8.7381203, 46.4593603 ], + [ 8.7383453, 46.4592773 ], + [ 8.7385134, 46.4591953 ], + [ 8.7386674, 46.4591699 ], + [ 8.7388611, 46.459138 ], + [ 8.7391283, 46.4590824 ], + [ 8.7394588, 46.4589861 ], + [ 8.7398931, 46.4588427 ], + [ 8.7403666, 46.4586705 ], + [ 8.7404573, 46.4586857 ], + [ 8.7405721, 46.458723 ], + [ 8.7407338, 46.4586805 ], + [ 8.740920299999999, 46.4586546 ], + [ 8.741085, 46.4587022 ], + [ 8.7413413, 46.4588046 ], + [ 8.7415791, 46.4588453 ], + [ 8.7418979, 46.4588733 ], + [ 8.742225, 46.4589066 ], + [ 8.7425034, 46.4589466 ], + [ 8.7428469, 46.4589852 ], + [ 8.7432324, 46.4590458 ], + [ 8.7435102, 46.4590631 ], + [ 8.743837899999999, 46.4591191 ], + [ 8.7440922, 46.4591707 ], + [ 8.7443902, 46.4592835 ], + [ 8.7448237, 46.4595461 ], + [ 8.7450803, 46.4596597 ], + [ 8.7452452, 46.459713 ], + [ 8.7454596, 46.4597654 ], + [ 8.7456894, 46.4598119 ], + [ 8.745944, 46.4598748 ], + [ 8.7461347, 46.4599558 ], + [ 8.7463081, 46.4600258 ], + [ 8.7464595, 46.4601302 ], + [ 8.7466171, 46.4602231 ], + [ 8.7467179, 46.4602833 ], + [ 8.7469301, 46.460313 ], + [ 8.7471186, 46.4603321 ], + [ 8.7473319, 46.4603732 ], + [ 8.7475103, 46.4603474 ], + [ 8.7476629, 46.4602995 ], + [ 8.7478722, 46.4602392 ], + [ 8.7481156, 46.4602064 ], + [ 8.748349, 46.4601344 ], + [ 8.7486409, 46.4600952 ], + [ 8.7489596, 46.4601174 ], + [ 8.7491798, 46.4601359 ], + [ 8.7493617, 46.460189 ], + [ 8.7495351, 46.4602589 ], + [ 8.7497243, 46.4603119 ], + [ 8.7498722, 46.4603373 ], + [ 8.7500187, 46.4603401 ], + [ 8.7501561, 46.4602982 ], + [ 8.750331599999999, 46.4602216 ], + [ 8.7505426, 46.4602008 ], + [ 8.7508123, 46.4602126 ], + [ 8.7510072, 46.4601977 ], + [ 8.7512849, 46.4602095 ], + [ 8.7515714, 46.4602436 ], + [ 8.7519074, 46.4603105 ], + [ 8.7522043, 46.4604065 ], + [ 8.7524513, 46.4604583 ], + [ 8.7527239, 46.4605603 ], + [ 8.7529641, 46.4606686 ], + [ 8.7532201, 46.4607539 ], + [ 8.7535111, 46.4609121 ], + [ 8.7537104, 46.4610099 ], + [ 8.7539357, 46.461141 ], + [ 8.7541842, 46.4612546 ], + [ 8.7544687, 46.461441 ], + [ 8.7548109, 46.4616601 ], + [ 8.7548338, 46.4618344 ], + [ 8.7548395, 46.4619696 ], + [ 8.7548282, 46.4621051 ], + [ 8.7548655, 46.4622341 ], + [ 8.7549286, 46.4623851 ], + [ 8.7550404, 46.4625352 ], + [ 8.7551501, 46.4626291 ], + [ 8.7552686, 46.4627509 ], + [ 8.7554274, 46.462855 ], + [ 8.7557182, 46.4630018 ], + [ 8.7560145, 46.4630751 ], + [ 8.7562123, 46.4631448 ], + [ 8.7564836, 46.4631905 ], + [ 8.7566875, 46.4632092 ], + [ 8.7569552, 46.463176 ], + [ 8.7571666, 46.4631664 ], + [ 8.757402, 46.4631451 ], + [ 8.7576128, 46.463113 ], + [ 8.7577913, 46.4630928 ], + [ 8.7579602, 46.4630444 ], + [ 8.7581373, 46.4629961 ], + [ 8.7582823, 46.4629369 ], + [ 8.7584676, 46.462894 ], + [ 8.7586359, 46.4628233 ], + [ 8.758829, 46.4627633 ], + [ 8.7589905, 46.4627151 ], + [ 8.7591348, 46.4626561 ], + [ 8.7593279, 46.4626017 ], + [ 8.7595465, 46.4625581 ], + [ 8.7597886, 46.4625085 ], + [ 8.760016, 46.4624873 ], + [ 8.7602822, 46.462426 ], + [ 8.760525, 46.4623707 ], + [ 8.7607258, 46.4622994 ], + [ 8.7609493, 46.462188 ], + [ 8.7611641, 46.4620543 ], + [ 8.7613932, 46.4618696 ], + [ 8.7617172, 46.4616098 ], + [ 8.7623215, 46.4612321 ], + [ 8.7625303, 46.4611494 ], + [ 8.7626583, 46.4610961 ], + [ 8.762877, 46.4610526 ], + [ 8.7631436, 46.4610081 ], + [ 8.7633708, 46.4609813 ], + [ 8.7636713, 46.4609588 ], + [ 8.7639146, 46.460926 ], + [ 8.7641749, 46.4609212 ], + [ 8.7644426, 46.460888 ], + [ 8.7646291, 46.4608619 ], + [ 8.7649212, 46.4608282 ], + [ 8.7651637, 46.4607955 ], + [ 8.7654966, 46.4607667 ], + [ 8.7657334, 46.4607679 ], + [ 8.7660024, 46.4607854 ], + [ 8.7661906, 46.4607988 ], + [ 8.7664037, 46.4608286 ], + [ 8.7665847, 46.460876 ], + [ 8.766733200000001, 46.4609239 ], + [ 8.7668902, 46.4609885 ], + [ 8.76704, 46.4610591 ], + [ 8.7701987, 46.4626796 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "JBG0009", + "country" : "CHE", + "name" : [ + { + "text" : "Eidgenössisches Jagdbanngebiet Campo Tencia", + "lang" : "de-CH" + }, + { + "text" : "District franc fédéral Campo Tencia", + "lang" : "fr-CH" + }, + { + "text" : "Bandita federale di caccia Campo Tencia", + "lang" : "it-CH" + }, + { + "text" : "Federal Game Reserve Campo Tencia", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.174521, 46.6971305 ], + [ 8.0375999, 46.7193508 ], + [ 7.9839237999999995, 46.6934816 ], + [ 7.9338432999999995, 46.6934949 ], + [ 7.9161994, 46.7134669 ], + [ 7.9266569, 46.7545652 ], + [ 7.9581368999999995, 46.7564505 ], + [ 8.0148244, 46.7876733 ], + [ 8.0411999, 46.7876724 ], + [ 8.1973024, 46.7535102 ], + [ 8.2032868, 46.7520268 ], + [ 8.2088822, 46.7499466 ], + [ 8.2139637, 46.7473163 ], + [ 8.2184176, 46.7441946 ], + [ 8.2221445, 46.7406514 ], + [ 8.2250612, 46.7367658 ], + [ 8.2271027, 46.7326247 ], + [ 8.2282236, 46.7283207 ], + [ 8.2283991, 46.7239499 ], + [ 8.2276255, 46.7196099 ], + [ 8.2259203, 46.7153976 ], + [ 8.2233217, 46.7114071 ], + [ 8.219888, 46.7077274 ], + [ 8.2156959, 46.7044407 ], + [ 8.2108391, 46.7016203 ], + [ 8.2054261, 46.699329 ], + [ 8.1995775, 46.6976181 ], + [ 8.193424, 46.6965256 ], + [ 8.1871026, 46.6960759 ], + [ 8.1807545, 46.696279 ], + [ 8.1745211, 46.6971305 ], + [ 8.174521, 46.6971305 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 120, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "CTR0011", + "country" : "CHE", + "name" : [ + { + "text" : "CTR MEIRINGEN", + "lang" : "de-CH" + }, + { + "text" : "CTR MEIRINGEN", + "lang" : "fr-CH" + }, + { + "text" : "CTR MEIRINGEN", + "lang" : "it-CH" + }, + { + "text" : "CTR MEIRINGEN", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only permitted from an altitude of 120 m above ground with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Skyguide Special Flight Office", + "lang" : "de-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "it-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "en-GB" + } + ], + "siteURL" : "https://skyguide.ch/services/special-flights", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P14DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.55834, 47.4219414 ], + [ 8.5583316, 47.4218003 ], + [ 8.5583123, 47.4216596 ], + [ 8.5582822, 47.4215199 ], + [ 8.5582413, 47.4213813 ], + [ 8.5581899, 47.4212445 ], + [ 8.5581279, 47.4211096 ], + [ 8.5580557, 47.4209771 ], + [ 8.5579733, 47.4208474 ], + [ 8.557881, 47.4207208 ], + [ 8.5577791, 47.4205976 ], + [ 8.5576678, 47.4204782 ], + [ 8.5575475, 47.420363 ], + [ 8.5574184, 47.4202521 ], + [ 8.557281, 47.420146 ], + [ 8.5571356, 47.420045 ], + [ 8.5569826, 47.4199492 ], + [ 8.5568224, 47.419859 ], + [ 8.5566555, 47.4197746 ], + [ 8.5564823, 47.4196963 ], + [ 8.5563033, 47.4196242 ], + [ 8.556119, 47.4195585 ], + [ 8.5559299, 47.4194995 ], + [ 8.5557365, 47.4194473 ], + [ 8.5555393, 47.4194021 ], + [ 8.555339, 47.4193639 ], + [ 8.5551359, 47.4193329 ], + [ 8.5549307, 47.4193091 ], + [ 8.554724, 47.4192927 ], + [ 8.5545163, 47.4192836 ], + [ 8.5543082, 47.4192819 ], + [ 8.5541002, 47.4192876 ], + [ 8.553893, 47.4193007 ], + [ 8.553687, 47.4193211 ], + [ 8.5534829, 47.4193488 ], + [ 8.5532813, 47.4193838 ], + [ 8.5530826, 47.4194258 ], + [ 8.5528874, 47.4194748 ], + [ 8.5526962, 47.4195307 ], + [ 8.5525097, 47.4195934 ], + [ 8.5523282, 47.4196625 ], + [ 8.5521523, 47.419738 ], + [ 8.5519824, 47.4198197 ], + [ 8.5518191, 47.4199073 ], + [ 8.5516628, 47.4200005 ], + [ 8.5515139, 47.4200992 ], + [ 8.5513728, 47.420203 ], + [ 8.5512398, 47.4203118 ], + [ 8.5511155, 47.420425 ], + [ 8.551, 47.4205426 ], + [ 8.5508938, 47.4206641 ], + [ 8.5507971, 47.4207891 ], + [ 8.5507102, 47.4209175 ], + [ 8.5506333, 47.4210488 ], + [ 8.5505666, 47.4211826 ], + [ 8.5505103, 47.4213186 ], + [ 8.5504646, 47.4214564 ], + [ 8.5504295, 47.4215956 ], + [ 8.5504053, 47.4217359 ], + [ 8.5503919, 47.4218769 ], + [ 8.5503894, 47.4220182 ], + [ 8.5503978, 47.4221593 ], + [ 8.5504171, 47.4223 ], + [ 8.5504472, 47.4224397 ], + [ 8.550488, 47.4225783 ], + [ 8.5505394, 47.4227151 ], + [ 8.5506014, 47.42285 ], + [ 8.5506736, 47.4229825 ], + [ 8.550756, 47.4231122 ], + [ 8.5508483, 47.4232388 ], + [ 8.550950199999999, 47.423362 ], + [ 8.5510614, 47.4234814 ], + [ 8.5511818, 47.4235967 ], + [ 8.5513108, 47.4237075 ], + [ 8.5514482, 47.4238136 ], + [ 8.5515936, 47.4239147 ], + [ 8.5517466, 47.4240105 ], + [ 8.5519068, 47.4241007 ], + [ 8.5520737, 47.4241851 ], + [ 8.5522469, 47.4242634 ], + [ 8.5524259, 47.4243355 ], + [ 8.5526103, 47.4244012 ], + [ 8.5527994, 47.4244602 ], + [ 8.5529928, 47.4245124 ], + [ 8.55319, 47.4245576 ], + [ 8.5533904, 47.4245958 ], + [ 8.5535934, 47.4246268 ], + [ 8.5537986, 47.4246506 ], + [ 8.5540054, 47.4246671 ], + [ 8.5542131, 47.4246761 ], + [ 8.5544212, 47.4246778 ], + [ 8.5546292, 47.4246721 ], + [ 8.5548365, 47.424659 ], + [ 8.5550424, 47.4246386 ], + [ 8.5552466, 47.4246109 ], + [ 8.5554483, 47.424576 ], + [ 8.555647, 47.4245339 ], + [ 8.5558422, 47.4244849 ], + [ 8.5560333, 47.424429 ], + [ 8.5562199, 47.4243663 ], + [ 8.5564014, 47.4242972 ], + [ 8.5565773, 47.4242217 ], + [ 8.5567472, 47.42414 ], + [ 8.5569105, 47.4240524 ], + [ 8.5570668, 47.4239591 ], + [ 8.5572157, 47.4238605 ], + [ 8.5573569, 47.4237566 ], + [ 8.557489799999999, 47.4236479 ], + [ 8.5576141, 47.423534599999996 ], + [ 8.5577296, 47.4234171 ], + [ 8.5578358, 47.4232956 ], + [ 8.5579325, 47.4231705 ], + [ 8.5580194, 47.4230421 ], + [ 8.5580963, 47.4229109 ], + [ 8.558163, 47.422776999999996 ], + [ 8.5582192, 47.422641 ], + [ 8.5582649, 47.4225032 ], + [ 8.5583, 47.422364 ], + [ 8.5583242, 47.4222237 ], + [ 8.5583375, 47.4220827 ], + [ 8.55834, 47.4219414 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0108", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Seebach", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Seebach", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Seebach", + "lang" : "it-CH" + }, + { + "text" : "Substation Seebach", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.9391397, 47.4184041 ], + [ 7.9392162, 47.4183789 ], + [ 7.9393679, 47.4183243 ], + [ 7.9395314, 47.418325 ], + [ 7.9397058, 47.4183993 ], + [ 7.9399309, 47.4184634 ], + [ 7.9402032, 47.4186502 ], + [ 7.9403058, 47.4187851 ], + [ 7.9404918, 47.4189202 ], + [ 7.9409299, 47.4190401 ], + [ 7.9411237, 47.4191679 ], + [ 7.9421418, 47.4193563 ], + [ 7.9421645, 47.4191428 ], + [ 7.9411045, 47.4190112 ], + [ 7.9407961, 47.418948 ], + [ 7.9405052, 47.4188329 ], + [ 7.9403323, 47.4186019 ], + [ 7.9401903, 47.4184619 ], + [ 7.940043, 47.4184605 ], + [ 7.9395539, 47.4182837 ], + [ 7.939419, 47.4181936 ], + [ 7.9391397, 47.4184041 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns168", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Schafmatt", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Schafmatt", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Schafmatt", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Schafmatt", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8271352, 46.408591 ], + [ 7.827013, 46.4086612 ], + [ 7.8268051, 46.4087942 ], + [ 7.8266214, 46.4089098 ], + [ 7.8263939, 46.408919 ], + [ 7.8262079, 46.4089388 ], + [ 7.8261268, 46.4089627 ], + [ 7.8259591, 46.4090498 ], + [ 7.825549, 46.4092085 ], + [ 7.8251694, 46.409316 ], + [ 7.8250566, 46.4093459 ], + [ 7.8249519, 46.4093644 ], + [ 7.8248068, 46.409423 ], + [ 7.8246951, 46.4094926 ], + [ 7.8245836, 46.4095788 ], + [ 7.8244639, 46.4096598 ], + [ 7.8243531, 46.4097404 ], + [ 7.824201, 46.4098388 ], + [ 7.8239998, 46.4098926 ], + [ 7.8238303, 46.4099516 ], + [ 7.8235724, 46.4100346 ], + [ 7.8233702, 46.4100603 ], + [ 7.8233165, 46.4101739 ], + [ 7.8232446, 46.4102315 ], + [ 7.8231642, 46.410244 ], + [ 7.8230422, 46.4102402 ], + [ 7.8228799, 46.4102766 ], + [ 7.8227529, 46.4103632 ], + [ 7.8226271, 46.4105005 ], + [ 7.8225583, 46.4106652 ], + [ 7.822465, 46.4108022 ], + [ 7.8222002, 46.4109416 ], + [ 7.8221219, 46.4110219 ], + [ 7.8220672, 46.4111016 ], + [ 7.8219494, 46.4112389 ], + [ 7.8218634, 46.4113757 ], + [ 7.8218096, 46.4114612 ], + [ 7.8217621, 46.4115297 ], + [ 7.8216919, 46.4116098 ], + [ 7.8216047, 46.41169 ], + [ 7.8215277, 46.4118324 ], + [ 7.8214649, 46.4119179 ], + [ 7.8214091, 46.4119639 ], + [ 7.8212731, 46.4120394 ], + [ 7.8211949, 46.4121309 ], + [ 7.8211238, 46.4121998 ], + [ 7.8210436, 46.4122404 ], + [ 7.8209473, 46.412304 ], + [ 7.8208356, 46.4123621 ], + [ 7.8207646, 46.4124422 ], + [ 7.8206935, 46.4125054 ], + [ 7.8206541, 46.4125624 ], + [ 7.8205504999999995, 46.4126317 ], + [ 7.8204541, 46.4126784 ], + [ 7.8203341, 46.4127197 ], + [ 7.820197, 46.412767 ], + [ 7.8200366, 46.4128371 ], + [ 7.8198031, 46.4129253 ], + [ 7.8196518, 46.4130349 ], + [ 7.8194669999999995, 46.4131055 ], + [ 7.8193402, 46.4132202 ], + [ 7.819253, 46.4133175 ], + [ 7.8191576, 46.4133867 ], + [ 7.8190468, 46.4134731 ], + [ 7.8189119, 46.4135879 ], + [ 7.8186256, 46.4138067 ], + [ 7.8184897, 46.4138935 ], + [ 7.8184197, 46.4139962 ], + [ 7.8183488, 46.4140875 ], + [ 7.8182696, 46.4141622 ], + [ 7.8181895, 46.4142085 ], + [ 7.8180453, 46.4142841 ], + [ 7.8179508, 46.4143759 ], + [ 7.8178972, 46.4144895 ], + [ 7.8178282, 46.4146317 ], + [ 7.8177492, 46.4147232 ], + [ 7.8176499, 46.4149391 ], + [ 7.8175728, 46.4150757 ], + [ 7.8174796, 46.4152239 ], + [ 7.8173711, 46.4154062 ], + [ 7.8172281, 46.4155326 ], + [ 7.817094, 46.4156587 ], + [ 7.8169986, 46.4157279 ], + [ 7.8169124, 46.4158478 ], + [ 7.8168201, 46.4160241 ], + [ 7.8167349, 46.4161608 ], + [ 7.8166092, 46.4163208 ], + [ 7.8164966, 46.4163789 ], + [ 7.8163514, 46.4164206 ], + [ 7.8162313999999995, 46.4164733 ], + [ 7.8160781, 46.4165207 ], + [ 7.8160152, 46.4165838 ], + [ 7.8159127, 46.4166926 ], + [ 7.8158022, 46.4168298 ], + [ 7.8156704, 46.4170462 ], + [ 7.8155608, 46.4171834 ], + [ 7.8154665, 46.4172977 ], + [ 7.8153304, 46.4173674 ], + [ 7.8152096, 46.4174201 ], + [ 7.8150979, 46.4174839 ], + [ 7.8149629, 46.4175931 ], + [ 7.8148432, 46.4176795 ], + [ 7.8146918, 46.4177722 ], + [ 7.814437, 46.4179566 ], + [ 7.8146841, 46.4180771 ], + [ 7.8149149, 46.4181696 ], + [ 7.8151131, 46.4182681 ], + [ 7.8153114, 46.418378 ], + [ 7.8155585, 46.4184927 ], + [ 7.8157975, 46.4185963 ], + [ 7.8159711, 46.418667 ], + [ 7.8160964, 46.4187949 ], + [ 7.816189, 46.4189007 ], + [ 7.8163385, 46.419 ], + [ 7.8163883, 46.4190332 ], + [ 7.8164951, 46.4190711 ], + [ 7.8165845, 46.4190753 ], + [ 7.8167144, 46.4190507 ], + [ 7.8168515, 46.4190092 ], + [ 7.8169805, 46.4189733 ], + [ 7.8172011, 46.4190038 ], + [ 7.8173576, 46.4190692 ], + [ 7.8175214, 46.4191174 ], + [ 7.817686, 46.419177 ], + [ 7.8180073, 46.4193131 ], + [ 7.8181965, 46.419395 ], + [ 7.8183956, 46.4195048 ], + [ 7.8185524, 46.4196039 ], + [ 7.8186693, 46.4196869 ], + [ 7.8188176, 46.4197467 ], + [ 7.8189977, 46.4198004 ], + [ 7.8192376, 46.4199265 ], + [ 7.8194533, 46.4200756 ], + [ 7.8197023, 46.4202298 ], + [ 7.8199006, 46.420334 ], + [ 7.8201304, 46.4204039 ], + [ 7.820286, 46.4204467 ], + [ 7.8203755, 46.4204565 ], + [ 7.8205878, 46.4204703 ], + [ 7.8208326, 46.4204891 ], + [ 7.8211417, 46.4205069 ], + [ 7.8213052, 46.4205214 ], + [ 7.8214761, 46.4205414 ], + [ 7.8216479, 46.4205725 ], + [ 7.8218368, 46.4206149 ], + [ 7.821911, 46.4206532 ], + [ 7.8220829, 46.4207014 ], + [ 7.8222556999999995, 46.4207552 ], + [ 7.8224763, 46.4207913 ], + [ 7.8226318, 46.4208228 ], + [ 7.8227709, 46.4208433 ], + [ 7.8229345, 46.420869 ], + [ 7.8231643, 46.4209388 ], + [ 7.8233442, 46.4209699 ], + [ 7.8235669, 46.421079399999996 ], + [ 7.8237805, 46.4211607 ], + [ 7.8240856, 46.4213028 ], + [ 7.8245633, 46.4214874 ], + [ 7.8247513, 46.4215184 ], + [ 7.8249149, 46.4215441 ], + [ 7.825039, 46.4216155 ], + [ 7.8251224, 46.4216876 ], + [ 7.8252222, 46.4217651 ], + [ 7.8253879, 46.4218642 ], + [ 7.8254967, 46.4219585 ], + [ 7.8255559, 46.4220478 ], + [ 7.8256239999999995, 46.4221371 ], + [ 7.8256263, 46.4222273 ], + [ 7.8256458, 46.42234 ], + [ 7.8256723, 46.4224128 ], + [ 7.8257322, 46.4224967 ], + [ 7.825832, 46.4225797 ], + [ 7.8259479, 46.4226344 ], + [ 7.8260385, 46.4226951 ], + [ 7.8261472, 46.4227725 ], + [ 7.8262643, 46.4228835 ], + [ 7.8264321, 46.4230502 ], + [ 7.8265563, 46.423133 ], + [ 7.8267211, 46.4232208 ], + [ 7.8268705, 46.4232975 ], + [ 7.8271736, 46.4233888 ], + [ 7.8274448, 46.423458 ], + [ 7.8277885, 46.423543 ], + [ 7.8281493, 46.4236278 ], + [ 7.8284889, 46.4238314 ], + [ 7.8285888, 46.4239314 ], + [ 7.8286894, 46.4240089 ], + [ 7.8288775, 46.4240511 ], + [ 7.8290747, 46.4241102 ], + [ 7.8292627, 46.4241468 ], + [ 7.8294264, 46.4241781 ], + [ 7.8295667, 46.4242437 ], + [ 7.8296826, 46.424304 ], + [ 7.8298485, 46.4244256 ], + [ 7.8299818, 46.4245308 ], + [ 7.8301221, 46.4245964 ], + [ 7.8303682, 46.4246716 ], + [ 7.8306211, 46.4246846 ], + [ 7.830866, 46.4247091 ], + [ 7.831118, 46.4247109 ], + [ 7.8313976, 46.4248025 ], + [ 7.831537, 46.4248567 ], + [ 7.8317942, 46.4250165 ], + [ 7.8319601, 46.4251268 ], + [ 7.8322652, 46.4252688 ], + [ 7.8324949, 46.425333 ], + [ 7.83274, 46.4253744 ], + [ 7.832864, 46.4254346 ], + [ 7.8329982, 46.4255567 ], + [ 7.8330908, 46.4256625 ], + [ 7.8332729, 46.425767 ], + [ 7.8334529, 46.425815 ], + [ 7.8337801, 46.425855 ], + [ 7.8340333, 46.4259019 ], + [ 7.8342293, 46.4259159 ], + [ 7.8343605, 46.425959 ], + [ 7.8344195, 46.4260258 ], + [ 7.8344869, 46.4261207 ], + [ 7.8345804999999995, 46.4262434 ], + [ 7.8346803, 46.4263322 ], + [ 7.8347809, 46.4264153 ], + [ 7.8348959, 46.4264642 ], + [ 7.8350179, 46.426468 ], + [ 7.8351641, 46.4264432 ], + [ 7.8353407, 46.4263615 ], + [ 7.8355093, 46.4262912 ], + [ 7.8356312, 46.4262837 ], + [ 7.8357462, 46.4263214 ], + [ 7.8358785, 46.4264096 ], + [ 7.8360118, 46.4265092 ], + [ 7.8361286, 46.426592 ], + [ 7.8362365, 46.4266637 ], + [ 7.836327, 46.4266962 ], + [ 7.836507, 46.4267498 ], + [ 7.8367529, 46.4267912 ], + [ 7.8369583, 46.4268614 ], + [ 7.8372045, 46.4269479 ], + [ 7.8375094, 46.4270673 ], + [ 7.8378632, 46.4271973 ], + [ 7.8383483, 46.4273705 ], + [ 7.8385698999999995, 46.4274348 ], + [ 7.8387173, 46.4274663 ], + [ 7.8388789, 46.4274356 ], + [ 7.8390811, 46.4273987 ], + [ 7.8392832, 46.4273503 ], + [ 7.8395178, 46.4273072 ], + [ 7.8398491, 46.4272401 ], + [ 7.8401659, 46.4272069 ], + [ 7.8405948, 46.427155 ], + [ 7.840920000000001, 46.4271501 ], + [ 7.8410115, 46.4272051 ], + [ 7.8411436, 46.4272595 ], + [ 7.8412343, 46.4273202 ], + [ 7.8413176, 46.427364 ], + [ 7.8414152999999995, 46.4273908 ], + [ 7.8415129, 46.4273836 ], + [ 7.8416174, 46.4273424 ], + [ 7.8417636, 46.4273176 ], + [ 7.8418775, 46.4273272 ], + [ 7.8419681, 46.4273708 ], + [ 7.8420361, 46.4274489 ], + [ 7.8421187, 46.4275096 ], + [ 7.8422103, 46.427576 ], + [ 7.8424176, 46.4276912 ], + [ 7.8425998, 46.427807 ], + [ 7.84284, 46.4279669 ], + [ 7.8430059, 46.4280716 ], + [ 7.8430903999999995, 46.4281774 ], + [ 7.8431169, 46.4282392 ], + [ 7.8431282, 46.4283406 ], + [ 7.843164, 46.4284529 ], + [ 7.8432231, 46.4285254 ], + [ 7.8434144, 46.428669 ], + [ 7.84363, 46.4287956 ], + [ 7.8440338, 46.4289755 ], + [ 7.8442381, 46.4290062 ], + [ 7.8443601, 46.4290044 ], + [ 7.8445135, 46.4289681 ], + [ 7.8446921, 46.4289371 ], + [ 7.8447735, 46.4289471 ], + [ 7.8448549, 46.4289572 ], + [ 7.8449942, 46.4289889 ], + [ 7.8450672, 46.4289708 ], + [ 7.8451719, 46.428941 ], + [ 7.8452763999999995, 46.4288885 ], + [ 7.8454054, 46.4288584 ], + [ 7.8455273, 46.4288451 ], + [ 7.8456909, 46.4288765 ], + [ 7.8459126, 46.4289351 ], + [ 7.8460754, 46.4289664 ], + [ 7.8461657, 46.4289764 ], + [ 7.8462551, 46.4289693 ], + [ 7.8464005, 46.4289445 ], + [ 7.8465720999999995, 46.4289588 ], + [ 7.8469636, 46.4290091 ], + [ 7.8473813, 46.4290872 ], + [ 7.8477992, 46.4291881 ], + [ 7.8481196, 46.4293072 ], + [ 7.8483412, 46.4293602 ], + [ 7.8484977, 46.4294142 ], + [ 7.8486464, 46.4295135 ], + [ 7.8487655, 46.4296696 ], + [ 7.8488836, 46.4298089 ], + [ 7.8490911, 46.4299355 ], + [ 7.8494197, 46.4300488 ], + [ 7.8498062, 46.4301953 ], + [ 7.8500289, 46.4302991 ], + [ 7.8502076, 46.430268 ], + [ 7.8504831, 46.4302524 ], + [ 7.8506956, 46.4302886 ], + [ 7.8508613, 46.4303707 ], + [ 7.8510679, 46.430486 ], + [ 7.8513056, 46.4305274 ], + [ 7.8515323, 46.4305069 ], + [ 7.8516959, 46.4305326 ], + [ 7.8517714, 46.4306161 ], + [ 7.8518222, 46.4306717 ], + [ 7.8518997, 46.4308173 ], + [ 7.8520087, 46.4309286 ], + [ 7.8521164, 46.4309776 ], + [ 7.8522233, 46.4310267 ], + [ 7.8523392, 46.431087 ], + [ 7.8524145999999995, 46.4311535 ], + [ 7.8525053, 46.4312142 ], + [ 7.85262, 46.4312181 ], + [ 7.8527918, 46.4312549 ], + [ 7.8529475, 46.431309 ], + [ 7.8531376999999996, 46.4314019 ], + [ 7.8533115, 46.4314895 ], + [ 7.8534182999999995, 46.4315273 ], + [ 7.8536145, 46.4315525 ], + [ 7.8538575999999996, 46.431543 ], + [ 7.8541186, 46.4315446 ], + [ 7.8543475, 46.4315974 ], + [ 7.8546179, 46.431661 ], + [ 7.8547816, 46.4316979 ], + [ 7.8549626, 46.4317516 ], + [ 7.8550926, 46.4317382 ], + [ 7.8552054, 46.4317139 ], + [ 7.855368, 46.4317113 ], + [ 7.8555376, 46.4316692 ], + [ 7.8556361, 46.4316846 ], + [ 7.8557023, 46.4317232 ], + [ 7.8557532, 46.4317844 ], + [ 7.8558459, 46.4318958 ], + [ 7.8559304999999995, 46.4320074 ], + [ 7.8559885, 46.4320459 ], + [ 7.8561036, 46.432095 ], + [ 7.8562185, 46.432127 ], + [ 7.8563586999999995, 46.4321756 ], + [ 7.8564736, 46.4322134 ], + [ 7.8565814, 46.4322681 ], + [ 7.8566963, 46.4323001 ], + [ 7.8568753000000005, 46.4323144 ], + [ 7.8570624, 46.4323227 ], + [ 7.8573084, 46.4323866 ], + [ 7.8575058, 46.4324568 ], + [ 7.8576776, 46.4324881 ], + [ 7.8578188, 46.4325649 ], + [ 7.8581972, 46.4327001 ], + [ 7.8583274, 46.4327149 ], + [ 7.8584261, 46.4327586 ], + [ 7.8585339, 46.4328132 ], + [ 7.8586592, 46.4329299 ], + [ 7.8587691, 46.4330523 ], + [ 7.8589584, 46.4331396 ], + [ 7.8591149, 46.4331767 ], + [ 7.8592948, 46.4332078 ], + [ 7.8595308, 46.4332266 ], + [ 7.8597351, 46.4332517 ], + [ 7.8598987000000005, 46.4332774 ], + [ 7.8600859, 46.4332913 ], + [ 7.8603805, 46.4333318 ], + [ 7.861597, 46.4337474 ], + [ 7.8619091999999995, 46.433844 ], + [ 7.8620901, 46.4338978 ], + [ 7.8622947, 46.433951 ], + [ 7.8629852, 46.4341714 ], + [ 7.8631338, 46.4342482 ], + [ 7.8632914, 46.434336 ], + [ 7.8634248, 46.4344525 ], + [ 7.8635409, 46.434524 ], + [ 7.8636973999999995, 46.4345779 ], + [ 7.8639192, 46.4346536 ], + [ 7.8641652, 46.434706 ], + [ 7.8644032, 46.4347813 ], + [ 7.864626, 46.4348795 ], + [ 7.8648082, 46.4349895 ], + [ 7.8649336, 46.435106 ], + [ 7.8650241, 46.4351442 ], + [ 7.8651482999999995, 46.4352155 ], + [ 7.8652968, 46.4352809 ], + [ 7.8654858, 46.4353288 ], + [ 7.8656344, 46.4353942 ], + [ 7.8658327, 46.4354927 ], + [ 7.8660475, 46.4356078 ], + [ 7.866196, 46.4356675 ], + [ 7.8663619, 46.4357666 ], + [ 7.8665024, 46.4358546 ], + [ 7.8665757, 46.4358591 ], + [ 7.8668358, 46.4358438 ], + [ 7.86704, 46.4358575 ], + [ 7.8672038, 46.4359058 ], + [ 7.8674489, 46.435947 ], + [ 7.86763, 46.4360176 ], + [ 7.8678516, 46.4360705 ], + [ 7.8680653, 46.4361517 ], + [ 7.8682148, 46.4362285 ], + [ 7.8684051, 46.4363327 ], + [ 7.868448, 46.4364054 ], + [ 7.8685884, 46.4364766 ], + [ 7.8687044, 46.4365424 ], + [ 7.8688205, 46.4366254 ], + [ 7.8689702, 46.4367302 ], + [ 7.8691208, 46.4368519 ], + [ 7.8692633999999995, 46.4369908 ], + [ 7.8693786, 46.4370567 ], + [ 7.8695352, 46.437122 ], + [ 7.8697253, 46.4371924 ], + [ 7.8698892, 46.4372518 ], + [ 7.870112, 46.43735 ], + [ 7.8703094, 46.4374259 ], + [ 7.8704355, 46.4375368 ], + [ 7.87051, 46.437592 ], + [ 7.8706492, 46.4376068 ], + [ 7.8708526, 46.4376205 ], + [ 7.8709676, 46.4376582 ], + [ 7.8711149, 46.4376786 ], + [ 7.871253, 46.4376593 ], + [ 7.8713821, 46.4376348 ], + [ 7.8716006, 46.4375918 ], + [ 7.8718861, 46.43761 ], + [ 7.8722451, 46.4376495 ], + [ 7.8726782, 46.4377048 ], + [ 7.8728247, 46.4377194 ], + [ 7.8728641, 46.4376679 ], + [ 7.8729096, 46.43756 ], + [ 7.8729643, 46.43748 ], + [ 7.873069, 46.4374559 ], + [ 7.8732305, 46.4374138 ], + [ 7.8733268, 46.4373558 ], + [ 7.8733877, 46.4372364 ], + [ 7.8734716, 46.4370545 ], + [ 7.8736438, 46.436826 ], + [ 7.8738149, 46.4365581 ], + [ 7.8740397, 46.4362046 ], + [ 7.8741086, 46.4360681 ], + [ 7.8741701, 46.4359317 ], + [ 7.8741739, 46.4357962 ], + [ 7.8741522, 46.4356328 ], + [ 7.8741558, 46.4354692 ], + [ 7.8741655999999995, 46.4352657 ], + [ 7.8741752, 46.4350456 ], + [ 7.8742427, 46.434847 ], + [ 7.8742604, 46.4346265 ], + [ 7.8742409, 46.4345253 ], + [ 7.8741889, 46.4344302 ], + [ 7.8740961, 46.4343188 ], + [ 7.8740685, 46.4342119 ], + [ 7.8740723, 46.434082 ], + [ 7.8741106, 46.4339912 ], + [ 7.8741643, 46.4339001 ], + [ 7.8742829, 46.4337796 ], + [ 7.8744015, 46.4336592 ], + [ 7.874561, 46.4335664 ], + [ 7.8746167, 46.4335239 ], + [ 7.8746967, 46.4334627 ], + [ 7.8748227, 46.4333478 ], + [ 7.8749085999999995, 46.4332168 ], + [ 7.8749775, 46.4330802 ], + [ 7.8750799, 46.432977 ], + [ 7.8751985, 46.4328623 ], + [ 7.875316, 46.4327137 ], + [ 7.875465, 46.4325363 ], + [ 7.8756292, 46.4323194 ], + [ 7.8758247, 46.4320622 ], + [ 7.8759978, 46.4318451 ], + [ 7.8761064, 46.4316967 ], + [ 7.876168, 46.4315771 ], + [ 7.8762032, 46.4313959 ], + [ 7.8762403, 46.4312656 ], + [ 7.8762697, 46.4311692 ], + [ 7.8763478, 46.431072 ], + [ 7.8763932, 46.4309641 ], + [ 7.8764710000000004, 46.4308273 ], + [ 7.8765805, 46.4306959 ], + [ 7.8766807, 46.430508 ], + [ 7.8767494, 46.4303602 ], + [ 7.8768275, 46.4302574 ], + [ 7.8769471, 46.4301652 ], + [ 7.8771054, 46.430033 ], + [ 7.8772646, 46.4299176 ], + [ 7.8774308, 46.429757 ], + [ 7.877596, 46.4295737 ], + [ 7.8778243, 46.4293387 ], + [ 7.8781394, 46.4289894 ], + [ 7.8792714, 46.4277018 ], + [ 7.8793587, 46.4276439 ], + [ 7.8794549, 46.4275803 ], + [ 7.8796549, 46.4274757 ], + [ 7.8798456, 46.4273259 ], + [ 7.8801165, 46.4271467 ], + [ 7.8805060000000005, 46.426847 ], + [ 7.8810548, 46.4264433 ], + [ 7.8816057, 46.4261016 ], + [ 7.8817985, 46.4260196 ], + [ 7.8819345, 46.4259384 ], + [ 7.8820776, 46.4258401 ], + [ 7.8822947, 46.4257407 ], + [ 7.8824713, 46.4256646 ], + [ 7.8826073, 46.4255891 ], + [ 7.8827597, 46.4255416 ], + [ 7.8830107, 46.4255036 ], + [ 7.8832208, 46.4254551 ], + [ 7.8834403, 46.4254518 ], + [ 7.8836852, 46.4254648 ], + [ 7.8839615, 46.4254548 ], + [ 7.884188, 46.4254061 ], + [ 7.8844134, 46.4253348 ], + [ 7.8846204, 46.4251903 ], + [ 7.8848914, 46.4250224 ], + [ 7.8852118, 46.4248367 ], + [ 7.8853978, 46.4248055 ], + [ 7.8855847, 46.4247913 ], + [ 7.8857055, 46.4247555 ], + [ 7.8857997, 46.4246468 ], + [ 7.8858614, 46.424533 ], + [ 7.8859394, 46.4244246 ], + [ 7.8861, 46.4243768 ], + [ 7.8863019, 46.4243172 ], + [ 7.8865944, 46.4242956 ], + [ 7.8868535, 46.4242576 ], + [ 7.887145, 46.4242191 ], + [ 7.8874111, 46.4241416 ], + [ 7.887734, 46.424063 ], + [ 7.888181, 46.4240446 ], + [ 7.8883507, 46.4240081 ], + [ 7.8884774, 46.4238932 ], + [ 7.8886032, 46.4237727 ], + [ 7.8886649, 46.4236588 ], + [ 7.888766, 46.4234992 ], + [ 7.8888846, 46.4233957 ], + [ 7.8890266, 46.4232525 ], + [ 7.8892091, 46.4231027 ], + [ 7.8893671, 46.4229422 ], + [ 7.8894265, 46.422755 ], + [ 7.8894848, 46.4225283 ], + [ 7.8895849, 46.4223462 ], + [ 7.8896884, 46.4222825 ], + [ 7.8898254, 46.4222352 ], + [ 7.8899361, 46.4221487 ], + [ 7.8900232, 46.4220626 ], + [ 7.8901683, 46.4220096 ], + [ 7.8902952, 46.4219229 ], + [ 7.8903407, 46.4218206 ], + [ 7.8903768, 46.4216676 ], + [ 7.8903652, 46.4215437 ], + [ 7.8904178, 46.4214187 ], + [ 7.8904958, 46.4213101 ], + [ 7.8905341, 46.421225 ], + [ 7.8906203, 46.4211276 ], + [ 7.8908141, 46.4210737 ], + [ 7.8909500999999995, 46.4209983 ], + [ 7.8910941999999995, 46.4209283 ], + [ 7.8911407, 46.4208427 ], + [ 7.8911456, 46.4207523 ], + [ 7.8910924, 46.4206065 ], + [ 7.8910727, 46.4204883 ], + [ 7.8911077, 46.4202958 ], + [ 7.8910988, 46.4200138 ], + [ 7.8911269, 46.4198722 ], + [ 7.8912201, 46.4197354 ], + [ 7.8914687, 46.4196186 ], + [ 7.8938465, 46.4189203 ], + [ 7.8936665, 46.418878 ], + [ 7.8934621, 46.4188419 ], + [ 7.8926217, 46.4187649 ], + [ 7.8921328, 46.4187276 ], + [ 7.8918392, 46.4187153 ], + [ 7.8916024, 46.4186852 ], + [ 7.8913491, 46.4186384 ], + [ 7.8911194, 46.4185744 ], + [ 7.8909546, 46.4185148 ], + [ 7.8907401, 46.4184224 ], + [ 7.8904615, 46.4183533 ], + [ 7.8902408, 46.4183174 ], + [ 7.8899948, 46.4182536 ], + [ 7.8897751, 46.4182345 ], + [ 7.8895384, 46.41821 ], + [ 7.8893667, 46.4181902 ], + [ 7.889087, 46.418093 ], + [ 7.8889863, 46.4179987 ], + [ 7.8887878, 46.417889 ], + [ 7.8885811, 46.4177681 ], + [ 7.8883085, 46.4176314 ], + [ 7.88816, 46.4175716 ], + [ 7.88792, 46.41744 ], + [ 7.8876553, 46.4172861 ], + [ 7.8874883, 46.417142 ], + [ 7.8873619999999995, 46.4170143 ], + [ 7.8871707, 46.4168762 ], + [ 7.8868968, 46.4166887 ], + [ 7.8865966, 46.4164677 ], + [ 7.8863125, 46.4162239 ], + [ 7.8860271, 46.4159181 ], + [ 7.8857237, 46.4155898 ], + [ 7.8854314, 46.4153461 ], + [ 7.8851148, 46.4150972 ], + [ 7.884965, 46.4149698 ], + [ 7.8848075, 46.4148933 ], + [ 7.8846448, 46.4148789 ], + [ 7.8845301, 46.4148695 ], + [ 7.8843928, 46.414883 ], + [ 7.8842304, 46.4149024 ], + [ 7.884061, 46.4149558 ], + [ 7.883946, 46.4149126 ], + [ 7.8838138, 46.4148526 ], + [ 7.8836825, 46.4148038 ], + [ 7.8835503, 46.4147327 ], + [ 7.8834341, 46.4146498 ], + [ 7.8832927, 46.4145504 ], + [ 7.8831839, 46.4144618 ], + [ 7.8830273, 46.4144023 ], + [ 7.882838, 46.4143149 ], + [ 7.8826001, 46.414251 ], + [ 7.8825388, 46.4141052 ], + [ 7.8825435, 46.4139923 ], + [ 7.8824997, 46.4139027 ], + [ 7.8821692, 46.4137385 ], + [ 7.8819776, 46.4135779 ], + [ 7.8817456, 46.4134349 ], + [ 7.8816274, 46.4132957 ], + [ 7.8816253, 46.4132279 ], + [ 7.8815325, 46.4131221 ], + [ 7.8814133, 46.4129548 ], + [ 7.8812788, 46.4128101 ], + [ 7.8811374999999995, 46.4127221 ], + [ 7.8809667999999995, 46.4127248 ], + [ 7.8808124, 46.4127329 ], + [ 7.8806182, 46.4127416 ], + [ 7.8803572, 46.4127344 ], + [ 7.8801865, 46.4127314 ], + [ 7.8801112, 46.412665 ], + [ 7.8799079, 46.4126625 ], + [ 7.8797454, 46.4126651 ], + [ 7.8796387, 46.4126386 ], + [ 7.8794332, 46.4125628 ], + [ 7.8792268, 46.4124588 ], + [ 7.8790437, 46.4123432 ], + [ 7.8787872, 46.4121893 ], + [ 7.8785867, 46.4120118 ], + [ 7.8784510999999995, 46.411839 ], + [ 7.87834, 46.4116601 ], + [ 7.8782929, 46.4114634 ], + [ 7.8782454, 46.411227 ], + [ 7.8781852, 46.4111208 ], + [ 7.8779106, 46.4109333 ], + [ 7.877706, 46.4108687 ], + [ 7.87637, 46.4107995 ], + [ 7.8759657, 46.4103544 ], + [ 7.8758914, 46.4103104 ], + [ 7.8757025, 46.4102682 ], + [ 7.8754503, 46.4102497 ], + [ 7.8751253, 46.4102605 ], + [ 7.8748743999999995, 46.4102983 ], + [ 7.8745577, 46.4103314 ], + [ 7.8742823, 46.4103471 ], + [ 7.8741269, 46.4103326 ], + [ 7.8738577, 46.4103087 ], + [ 7.8737287, 46.4103388 ], + [ 7.8736765, 46.4102156 ], + [ 7.8735899, 46.4100532 ], + [ 7.8734819, 46.4099758 ], + [ 7.8733265, 46.4099558 ], + [ 7.8731001, 46.4099988 ], + [ 7.872501, 46.4100929 ], + [ 7.8718946, 46.4101928 ], + [ 7.8712245, 46.4103557 ], + [ 7.8705231, 46.4105643 ], + [ 7.8703031, 46.4102856 ], + [ 7.8701685999999995, 46.4101409 ], + [ 7.8700178, 46.4099853 ], + [ 7.8698672, 46.4098522 ], + [ 7.8696587000000005, 46.4096918 ], + [ 7.8694044, 46.4096112 ], + [ 7.8689948, 46.4095103 ], + [ 7.8686758, 46.4094646 ], + [ 7.8685879, 46.4092402 ], + [ 7.8683971, 46.408865 ], + [ 7.8681726, 46.4084341 ], + [ 7.8680137, 46.4082785 ], + [ 7.8678411, 46.408236 ], + [ 7.8676376999999995, 46.4082111 ], + [ 7.8673047, 46.4082389 ], + [ 7.8671167, 46.4082136 ], + [ 7.866824, 46.4082068 ], + [ 7.8666361, 46.4081873 ], + [ 7.8664471, 46.4081225 ], + [ 7.8662914, 46.4080686 ], + [ 7.8661928, 46.4080362 ], + [ 7.8660616999999995, 46.4080044 ], + [ 7.8658831, 46.4080298 ], + [ 7.8656402, 46.4080449 ], + [ 7.8654117, 46.4080372 ], + [ 7.8651921, 46.408018 ], + [ 7.8650043, 46.4080154 ], + [ 7.8648406, 46.4079671 ], + [ 7.8647409, 46.4078953 ], + [ 7.8645263, 46.4077914 ], + [ 7.8643199, 46.4076931 ], + [ 7.8641076, 46.4076738 ], + [ 7.8639103, 46.407598 ], + [ 7.8636227, 46.4075065 ], + [ 7.8632883, 46.407461 ], + [ 7.8630505, 46.4074082 ], + [ 7.8629753000000004, 46.4073529 ], + [ 7.8628339, 46.4072423 ], + [ 7.8626933999999995, 46.4071541 ], + [ 7.8625034, 46.4070725 ], + [ 7.8623173, 46.4070867 ], + [ 7.8621398, 46.4071516 ], + [ 7.8619854, 46.407154 ], + [ 7.8618381, 46.4071225 ], + [ 7.8617555, 46.4070616 ], + [ 7.8616559, 46.4070068 ], + [ 7.8615155, 46.40693 ], + [ 7.8613256, 46.4068539 ], + [ 7.8610957, 46.4067672 ], + [ 7.8609544, 46.4066734 ], + [ 7.8608118000000005, 46.4065233 ], + [ 7.8607891, 46.4063205 ], + [ 7.8607177, 46.4053001 ], + [ 7.8602004, 46.4051388 ], + [ 7.8560912, 46.4034479 ], + [ 7.85171, 46.4008015 ], + [ 7.8511375, 46.4004266 ], + [ 7.8510193, 46.4002761 ], + [ 7.8509955, 46.4000281 ], + [ 7.8510275, 46.3997567 ], + [ 7.8511175, 46.399507 ], + [ 7.8512176, 46.3993135 ], + [ 7.851268, 46.3991039 ], + [ 7.8513011, 46.3988551 ], + [ 7.8512457, 46.3986303 ], + [ 7.8511743, 46.3984225 ], + [ 7.8510956, 46.3982261 ], + [ 7.851008, 46.3980357 ], + [ 7.8508482, 46.3978575 ], + [ 7.8505897000000004, 46.3976358 ], + [ 7.8502674, 46.3974715 ], + [ 7.8500357, 46.3973397 ], + [ 7.8498119, 46.3971964 ], + [ 7.8496693, 46.397035 ], + [ 7.8493786, 46.3968476 ], + [ 7.8490725999999995, 46.3966773 ], + [ 7.848545, 46.3964316 ], + [ 7.8481453, 46.3961218 ], + [ 7.8483483, 46.3961129 ], + [ 7.8485259, 46.3960538 ], + [ 7.8486201, 46.3959507 ], + [ 7.8486902, 46.3958594 ], + [ 7.8485428, 46.3958165 ], + [ 7.8482328, 46.3957762 ], + [ 7.8479474, 46.3957523 ], + [ 7.8476793, 46.3957509 ], + [ 7.8473228, 46.3957903 ], + [ 7.8468599, 46.3958257 ], + [ 7.8463655, 46.3958841 ], + [ 7.8460182, 46.3959573 ], + [ 7.8455664, 46.3960545 ], + [ 7.845144, 46.3960837 ], + [ 7.8448992, 46.3960537 ], + [ 7.8443586, 46.3959154 ], + [ 7.8441343, 46.3960203 ], + [ 7.8439241, 46.3960631 ], + [ 7.8437374, 46.3960829 ], + [ 7.8434145, 46.3961557 ], + [ 7.8430744, 46.3962005 ], + [ 7.8428317, 46.3962437 ], + [ 7.8426866, 46.3962911 ], + [ 7.8425028999999995, 46.3963899 ], + [ 7.8422787, 46.3965175 ], + [ 7.8420535000000005, 46.3966057 ], + [ 7.8416736, 46.3966567 ], + [ 7.8411802, 46.3967546 ], + [ 7.8406126, 46.3968086 ], + [ 7.8402349000000005, 46.3974861 ], + [ 7.8403195, 46.3976145 ], + [ 7.8403502, 46.397806 ], + [ 7.8404034, 46.3979689 ], + [ 7.8404769, 46.3982386 ], + [ 7.8404813, 46.3983908 ], + [ 7.8404613, 46.3985379 ], + [ 7.8404494, 46.3986905 ], + [ 7.8404304, 46.3988657 ], + [ 7.8403534, 46.3990024 ], + [ 7.8402685, 46.3991673 ], + [ 7.8401681, 46.3993382 ], + [ 7.8400121, 46.3995494 ], + [ 7.8399261, 46.3996806 ], + [ 7.8399374, 46.3997877 ], + [ 7.8397812, 46.3999819 ], + [ 7.8395349, 46.400189 ], + [ 7.8396739, 46.4002037 ], + [ 7.8397716, 46.4002305 ], + [ 7.8399361, 46.4002674 ], + [ 7.8399953, 46.4003624 ], + [ 7.8399426, 46.4004874 ], + [ 7.8398413, 46.4006301 ], + [ 7.8397237, 46.4007785 ], + [ 7.8395375, 46.401092 ], + [ 7.8394252, 46.401404 ], + [ 7.8392968, 46.4017333 ], + [ 7.8391127, 46.40212 ], + [ 7.8389668, 46.4023876 ], + [ 7.8388362, 46.4026434 ], + [ 7.8386883, 46.4028603 ], + [ 7.8385112, 46.4032016 ], + [ 7.8383144, 46.4034078 ], + [ 7.8380854, 46.4036596 ], + [ 7.8378803999999995, 46.4038491 ], + [ 7.8376827, 46.404044 ], + [ 7.8373479, 46.4042693 ], + [ 7.8369735, 46.4045346 ], + [ 7.8365097, 46.4047845 ], + [ 7.8359668, 46.4051202 ], + [ 7.8358308999999995, 46.4052126 ], + [ 7.835688, 46.4053333 ], + [ 7.8355459, 46.4054654 ], + [ 7.8354748999999995, 46.4055398 ], + [ 7.8353876, 46.4056033 ], + [ 7.8352029, 46.4056851 ], + [ 7.8349604, 46.4057565 ], + [ 7.8346719, 46.405874 ], + [ 7.8344711, 46.4059785 ], + [ 7.8342793, 46.4060888 ], + [ 7.8340478000000004, 46.4062222 ], + [ 7.8338906999999995, 46.4064108 ], + [ 7.8337649, 46.4065482 ], + [ 7.8336605, 46.4066119 ], + [ 7.8335162, 46.4066592 ], + [ 7.8333791999999995, 46.4067065 ], + [ 7.8332585, 46.4067705 ], + [ 7.8331063, 46.4068462 ], + [ 7.8329215, 46.4069111 ], + [ 7.8326484, 46.4070225 ], + [ 7.8324798, 46.4070928 ], + [ 7.8323266, 46.4071517 ], + [ 7.8321663, 46.4072274 ], + [ 7.8320301, 46.407286 ], + [ 7.8319409, 46.4073043 ], + [ 7.8317887, 46.4073856 ], + [ 7.8317176, 46.4074545 ], + [ 7.8316221, 46.4075068 ], + [ 7.8314942, 46.4075821 ], + [ 7.8313247, 46.4076298 ], + [ 7.831083, 46.4076956 ], + [ 7.8309125, 46.4077322 ], + [ 7.8307162, 46.4076675 ], + [ 7.8304857, 46.4075976 ], + [ 7.8302926, 46.4076458 ], + [ 7.830115, 46.4076992 ], + [ 7.8299139, 46.4077644 ], + [ 7.8295912, 46.407871 ], + [ 7.8291332, 46.4080529 ], + [ 7.8289901, 46.4081511 ], + [ 7.828844, 46.4081815 ], + [ 7.8286417, 46.4081904 ], + [ 7.8284711, 46.4082099 ], + [ 7.8282203, 46.4082533 ], + [ 7.8279379, 46.408314 ], + [ 7.8277695, 46.4084013 ], + [ 7.8275512, 46.4084611 ], + [ 7.8273826, 46.4085257 ], + [ 7.8271644, 46.4085743 ], + [ 7.8271352, 46.408591 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "JBG0007", + "country" : "CHE", + "name" : [ + { + "text" : "Eidgenössisches Jagdbanngebiet Bietschhorn", + "lang" : "de-CH" + }, + { + "text" : "District franc fédéral Bietschhorn", + "lang" : "fr-CH" + }, + { + "text" : "Bandita federale di caccia Bietschhorn", + "lang" : "it-CH" + }, + { + "text" : "Federal Game Reserve Bietschhorn", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.060351, 46.1589629 ], + [ 6.0603866, 46.1588533 ], + [ 6.0603775, 46.1587851 ], + [ 6.060423, 46.1584809 ], + [ 6.0602983, 46.1581893 ], + [ 6.0602747, 46.1580119 ], + [ 6.060106, 46.1577396 ], + [ 6.0599918, 46.1574726 ], + [ 6.0598825, 46.1573788 ], + [ 6.0597938, 46.1572357 ], + [ 6.058991, 46.1566009 ], + [ 6.0588957, 46.156546 ], + [ 6.0575639, 46.1560448 ], + [ 6.0575337, 46.1560426 ], + [ 6.0574844, 46.156024 ], + [ 6.0559797, 46.1559134 ], + [ 6.0558564, 46.1559387 ], + [ 6.0551075, 46.1557663 ], + [ 6.0538886, 46.1557623 ], + [ 6.052728, 46.1560211 ], + [ 6.05174, 46.1565171 ], + [ 6.0510219, 46.1572015 ], + [ 6.050957, 46.1572899 ], + [ 6.0505443, 46.1582997 ], + [ 6.0507173, 46.1593425 ], + [ 6.0514498, 46.1602606 ], + [ 6.0516433, 46.1603678 ], + [ 6.0518932, 46.160548 ], + [ 6.052166, 46.1607115 ], + [ 6.0524592, 46.1608568 ], + [ 6.0527705, 46.1609827 ], + [ 6.0527757, 46.1609846 ], + [ 6.0530488, 46.1610742 ], + [ 6.053331, 46.1611488 ], + [ 6.0536206, 46.161208 ], + [ 6.0539159, 46.1612516 ], + [ 6.0541042, 46.1612948 ], + [ 6.0549678, 46.1612979 ], + [ 6.0550229, 46.1613206 ], + [ 6.056209, 46.1615061 ], + [ 6.0574196, 46.1614276 ], + [ 6.0585358, 46.1610929 ], + [ 6.0594484, 46.1605348 ], + [ 6.0595466, 46.1604524 ], + [ 6.0602667, 46.1595272 ], + [ 6.060351, 46.1589629 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AMSL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "GE70-36", + "country" : "CHE", + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kanton Genf", + "lang" : "de-CH" + }, + { + "text" : "Canton de Genève", + "lang" : "fr-CH" + }, + { + "text" : "Cantone di Ginebra", + "lang" : "it-CH" + }, + { + "text" : "Canton of Geneva", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Genfer Kantonspolizei", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale genevoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Ginevra", + "lang" : "it-CH" + }, + { + "text" : "Cantonal Police of Geneva", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ge.ch/faire-voler-drone-geneve", + "email" : "bsda.autorisations@police.ge.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6426691, 47.5089935 ], + [ 7.6436423, 47.509304 ], + [ 7.6436809, 47.5093163 ], + [ 7.6437072, 47.5092609 ], + [ 7.6437482, 47.5091949 ], + [ 7.6438181, 47.5091408 ], + [ 7.6438066, 47.5091265 ], + [ 7.6438249, 47.5091194 ], + [ 7.6438532, 47.5091084 ], + [ 7.6438665, 47.509127 ], + [ 7.6439166, 47.5091115 ], + [ 7.6440493, 47.5091002 ], + [ 7.6442573, 47.5090918 ], + [ 7.6442291, 47.5090737 ], + [ 7.6436945, 47.5087315 ], + [ 7.643084, 47.5083406 ], + [ 7.6430643, 47.5083638 ], + [ 7.6427886, 47.5087875 ], + [ 7.6426779, 47.5089576 ], + [ 7.6426691, 47.5089935 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns183", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Eselhallen", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Eselhallen", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Eselhallen", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Eselhallen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.9393744, 46.5627872 ], + [ 7.9392633, 46.5604336 ], + [ 7.9389737, 46.5580874 ], + [ 7.9385066, 46.5557547 ], + [ 7.9378633, 46.5534422 ], + [ 7.9370454, 46.551156 ], + [ 7.9360553, 46.5489025 ], + [ 7.9348957, 46.5466878 ], + [ 7.9335698, 46.544518 ], + [ 7.9320812, 46.542399 ], + [ 7.9304341, 46.5403367 ], + [ 7.9286329, 46.5383367 ], + [ 7.9266827, 46.5364044 ], + [ 7.9245887, 46.5345451 ], + [ 7.9223567, 46.532764 ], + [ 7.9199929000000004, 46.5310659 ], + [ 7.9175037, 46.5294555 ], + [ 7.9148959, 46.5279371 ], + [ 7.9121767, 46.5265149 ], + [ 7.9093536, 46.5251928 ], + [ 7.9064342, 46.5239745 ], + [ 7.9034265, 46.5228632 ], + [ 7.9003388, 46.521862 ], + [ 7.8971796, 46.5209736 ], + [ 7.8939574, 46.5202005 ], + [ 7.8906811, 46.5195448 ], + [ 7.8873596, 46.5190082 ], + [ 7.8840021, 46.5185922 ], + [ 7.8806177, 46.5182981 ], + [ 7.8772155999999995, 46.5181265 ], + [ 7.8738052, 46.5180779 ], + [ 7.8703958, 46.5181525 ], + [ 7.8669967, 46.5183501 ], + [ 7.8636172, 46.5186702 ], + [ 7.8602665, 46.5191118 ], + [ 7.8569539, 46.5196737 ], + [ 7.8536883, 46.5203545 ], + [ 7.8504787, 46.5211522 ], + [ 7.8473339, 46.5220647 ], + [ 7.8442625, 46.5230894 ], + [ 7.8412728, 46.5242236 ], + [ 7.8383731, 46.5254642 ], + [ 7.8355713, 46.5268078 ], + [ 7.8328751, 46.5282507 ], + [ 7.8302919, 46.5297889 ], + [ 7.8278286, 46.5314183 ], + [ 7.8254922, 46.5331344 ], + [ 7.823289, 46.5349324 ], + [ 7.821225, 46.5368076 ], + [ 7.8193059, 46.5387547 ], + [ 7.8175369, 46.5407684 ], + [ 7.815923, 46.5428432 ], + [ 7.8144685, 46.5449734 ], + [ 7.8131775999999995, 46.5471532 ], + [ 7.8120536, 46.5493766 ], + [ 7.8110997, 46.5516375 ], + [ 7.8103186, 46.5539298 ], + [ 7.8097124, 46.5562472 ], + [ 7.8092828999999995, 46.5585832 ], + [ 7.809031, 46.5609316 ], + [ 7.8089578, 46.5632858 ], + [ 7.8090632, 46.5656394 ], + [ 7.8093471, 46.567986 ], + [ 7.8098088, 46.5703192 ], + [ 7.8104469, 46.5726325 ], + [ 7.8112597, 46.5749195 ], + [ 7.8122451, 46.5771741 ], + [ 7.8134003, 46.5793901 ], + [ 7.8147223, 46.5815613 ], + [ 7.8162073, 46.5836818 ], + [ 7.8178514, 46.5857457 ], + [ 7.81965, 46.5877475 ], + [ 7.8215983, 46.5896816 ], + [ 7.8236909, 46.5915428 ], + [ 7.825922, 46.5933258 ], + [ 7.8282856, 46.5950259 ], + [ 7.8307752, 46.5966383 ], + [ 7.8333839, 46.5981586 ], + [ 7.8361046, 46.5995826 ], + [ 7.8389299, 46.6009065 ], + [ 7.8418519, 46.6021266 ], + [ 7.8448627, 46.6032395 ], + [ 7.847954, 46.6042422 ], + [ 7.8511173, 46.605132 ], + [ 7.854344, 46.6059063 ], + [ 7.8576251, 46.6065631 ], + [ 7.8609516, 46.6071005 ], + [ 7.8643145, 46.6075171 ], + [ 7.8677044, 46.6078118 ], + [ 7.8711120999999995, 46.6079837 ], + [ 7.8745281, 46.6080323 ], + [ 7.8779432, 46.6079576 ], + [ 7.8813479, 46.6077596 ], + [ 7.8847328999999995, 46.6074391 ], + [ 7.8880888, 46.6069968 ], + [ 7.8914065, 46.6064339 ], + [ 7.8946768, 46.6057521 ], + [ 7.8978908, 46.6049531 ], + [ 7.9010396, 46.6040393 ], + [ 7.9041145, 46.603013 ], + [ 7.9071072000000004, 46.6018771 ], + [ 7.9100094, 46.6006348 ], + [ 7.9128132, 46.5992893 ], + [ 7.9155108, 46.5978446 ], + [ 7.9180949, 46.5963044 ], + [ 7.9205583, 46.5946731 ], + [ 7.9228944, 46.5929551 ], + [ 7.9250967, 46.5911551 ], + [ 7.9271592, 46.589278 ], + [ 7.9290762, 46.5873291 ], + [ 7.9308425, 46.5853137 ], + [ 7.9324533, 46.5832373 ], + [ 7.9339040999999995, 46.5811056 ], + [ 7.935191, 46.5789244 ], + [ 7.9363106, 46.5766998 ], + [ 7.9372596, 46.5744378 ], + [ 7.9380356, 46.5721446 ], + [ 7.9386365, 46.5698266 ], + [ 7.9390605999999995, 46.5674901 ], + [ 7.9393068, 46.5651415 ], + [ 7.9393744, 46.5627872 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSWB001", + "country" : "CHE", + "name" : [ + { + "text" : "LSWB Blumental", + "lang" : "de-CH" + }, + { + "text" : "LSWB Blumental", + "lang" : "fr-CH" + }, + { + "text" : "LSWB Blumental", + "lang" : "it-CH" + }, + { + "text" : "LSWB Blumental", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "limitedApplicability" : [ + { + "startDateTime" : "2024-12-01T00:00:00+01:00", + "endDateTime" : "2025-04-30T00:00:00+02:00" + } + ], + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Gemeinde Lauterbrunnen", + "lang" : "de-CH" + }, + { + "text" : "Gemeinde Lauterbrunnen", + "lang" : "fr-CH" + }, + { + "text" : "Gemeinde Lauterbrunnen", + "lang" : "it-CH" + }, + { + "text" : "Gemeinde Lauterbrunnen", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Lorenz von Allmen", + "lang" : "de-CH" + }, + { + "text" : "Lorenz von Allmen", + "lang" : "fr-CH" + }, + { + "text" : "Lorenz von Allmen", + "lang" : "it-CH" + }, + { + "text" : "Lorenz von Allmen", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.lauterbrunnen.ch/kontakt", + "email" : "lorenz.v.allmen@gmail.com", + "phone" : "0041793110148", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P01DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.4805368, 47.0896177 ], + [ 8.4804008, 47.0872649 ], + [ 8.4800847, 47.0849202 ], + [ 8.4795895, 47.08259 ], + [ 8.4789164, 47.0802808 ], + [ 8.4780674, 47.0779987 ], + [ 8.4770448, 47.0757501 ], + [ 8.4758515, 47.0735411 ], + [ 8.4744907, 47.0713779 ], + [ 8.4729661, 47.0692662 ], + [ 8.471282, 47.0672119 ], + [ 8.469443, 47.0652206 ], + [ 8.4674541, 47.0632978 ], + [ 8.4653208, 47.0614487 ], + [ 8.463049, 47.0596783 ], + [ 8.4606449, 47.0579916 ], + [ 8.458115, 47.0563932 ], + [ 8.4554663, 47.0548873 ], + [ 8.4527061, 47.0534782 ], + [ 8.4498419, 47.0521697 ], + [ 8.4468816, 47.0509654 ], + [ 8.4438332, 47.0498685 ], + [ 8.4407051, 47.048882 ], + [ 8.4375059, 47.0480088 ], + [ 8.4342443, 47.047251 ], + [ 8.4309293, 47.046611 ], + [ 8.4275698, 47.0460902 ], + [ 8.4241752, 47.0456903 ], + [ 8.4207546, 47.0454122 ], + [ 8.4173174, 47.0452568 ], + [ 8.4138731, 47.0452245 ], + [ 8.4104309, 47.0453153 ], + [ 8.4070005, 47.0455291 ], + [ 8.403591, 47.0458651 ], + [ 8.400212, 47.0463226 ], + [ 8.3968724, 47.0469003 ], + [ 8.3935817, 47.0475965 ], + [ 8.3903486, 47.0484094 ], + [ 8.3871821, 47.0493367 ], + [ 8.3840909, 47.050376 ], + [ 8.3810833, 47.0515243 ], + [ 8.3781676, 47.0527786 ], + [ 8.3753519, 47.0541353 ], + [ 8.3726437, 47.0555909 ], + [ 8.3700506, 47.0571413 ], + [ 8.3675796, 47.0587822 ], + [ 8.3652375, 47.0605092 ], + [ 8.3630308, 47.0623176 ], + [ 8.3609654, 47.0642023 ], + [ 8.359047, 47.0661584 ], + [ 8.357281, 47.0681803 ], + [ 8.3556721, 47.0702625 ], + [ 8.3542249, 47.0723995 ], + [ 8.3529432, 47.0745852 ], + [ 8.3518306, 47.0768137 ], + [ 8.3508901, 47.079079 ], + [ 8.3501244, 47.0813748 ], + [ 8.3495356, 47.0836948 ], + [ 8.3491254, 47.0860326 ], + [ 8.3488948, 47.088382 ], + [ 8.3488445, 47.0907363 ], + [ 8.3489747, 47.0930892 ], + [ 8.3492851, 47.0954343 ], + [ 8.3497748, 47.097765 ], + [ 8.3504425, 47.100075 ], + [ 8.3512864, 47.102358 ], + [ 8.3523042, 47.1046077 ], + [ 8.3534932, 47.1068179 ], + [ 8.35485, 47.1089826 ], + [ 8.356371, 47.1110958 ], + [ 8.3580521, 47.1131518 ], + [ 8.3598886, 47.1151449 ], + [ 8.3618755, 47.1170695 ], + [ 8.3640075, 47.1189205 ], + [ 8.3662785, 47.1206928 ], + [ 8.3686825, 47.1223814 ], + [ 8.3712128, 47.1239818 ], + [ 8.3738626, 47.1254896 ], + [ 8.3766244, 47.1269006 ], + [ 8.3794908, 47.1282109 ], + [ 8.3824539, 47.129417 ], + [ 8.3855055, 47.1305155 ], + [ 8.3886374, 47.1315034 ], + [ 8.3918407, 47.132378 ], + [ 8.3951069, 47.1331369 ], + [ 8.3984269, 47.1337781 ], + [ 8.4017916, 47.1342996 ], + [ 8.4051917, 47.1347002 ], + [ 8.4086179, 47.1349787 ], + [ 8.4120608, 47.1351344 ], + [ 8.415511, 47.1351668 ], + [ 8.4189589, 47.1350758 ], + [ 8.422395, 47.1348617 ], + [ 8.42581, 47.1345251 ], + [ 8.4291945, 47.1340669 ], + [ 8.432539, 47.1334883 ], + [ 8.4358346, 47.132791 ], + [ 8.4390721, 47.1319768 ], + [ 8.4422425, 47.1310481 ], + [ 8.4453373, 47.1300073 ], + [ 8.4483479, 47.1288573 ], + [ 8.4512661, 47.1276012 ], + [ 8.4540838, 47.1262426 ], + [ 8.4567933, 47.1247852 ], + [ 8.4593872, 47.1232329 ], + [ 8.4618583, 47.12159 ], + [ 8.4642, 47.119861 ], + [ 8.4664057, 47.1180507 ], + [ 8.4684694, 47.1161641 ], + [ 8.4703856, 47.1142062 ], + [ 8.4721488, 47.1121826 ], + [ 8.4737544, 47.1100987 ], + [ 8.4751979, 47.1079603 ], + [ 8.4764755, 47.1057733 ], + [ 8.4775835, 47.1035435 ], + [ 8.478519, 47.1012772 ], + [ 8.4792794, 47.0989806 ], + [ 8.4798628, 47.09666 ], + [ 8.4802674, 47.0943216 ], + [ 8.4804923, 47.0919721 ], + [ 8.4805368, 47.0896177 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSXN001", + "country" : "CHE", + "name" : [ + { + "text" : "LSXN Haltikon", + "lang" : "de-CH" + }, + { + "text" : "LSXN Haltikon", + "lang" : "fr-CH" + }, + { + "text" : "LSXN Haltikon", + "lang" : "it-CH" + }, + { + "text" : "LSXN Haltikon", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Heliswiss International AG", + "lang" : "de-CH" + }, + { + "text" : "Heliswiss International AG", + "lang" : "fr-CH" + }, + { + "text" : "Heliswiss International AG", + "lang" : "it-CH" + }, + { + "text" : "Heliswiss International AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "DPFO", + "lang" : "de-CH" + }, + { + "text" : "DPFO", + "lang" : "fr-CH" + }, + { + "text" : "DPFO", + "lang" : "it-CH" + }, + { + "text" : "DPFO", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Sandra Werder", + "lang" : "de-CH" + }, + { + "text" : "Sandra Werder", + "lang" : "fr-CH" + }, + { + "text" : "Sandra Werder", + "lang" : "it-CH" + }, + { + "text" : "Sandra Werder", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.heliswissinternational.com/en/", + "email" : "info@heliswiss.com", + "phone" : "0041418543223", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P02DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.0648613, 47.3985954 ], + [ 8.0648542, 47.3984543 ], + [ 8.0648363, 47.3983135 ], + [ 8.0648075, 47.3981736 ], + [ 8.0647679, 47.3980349 ], + [ 8.0647177, 47.3978978 ], + [ 8.0646571, 47.3977627 ], + [ 8.064586, 47.3976299 ], + [ 8.0645049, 47.3974999 ], + [ 8.0644138, 47.3973728 ], + [ 8.0643131, 47.3972492 ], + [ 8.064203, 47.3971294 ], + [ 8.0640838, 47.3970136 ], + [ 8.0639558, 47.3969022 ], + [ 8.0638195, 47.3967955 ], + [ 8.0636751, 47.3966938 ], + [ 8.063523, 47.3965974 ], + [ 8.0633637, 47.3965065 ], + [ 8.0631977, 47.3964214 ], + [ 8.0630253, 47.3963424 ], + [ 8.0628471, 47.3962695 ], + [ 8.0626634, 47.3962031 ], + [ 8.062475, 47.3961433 ], + [ 8.0622821, 47.3960903 ], + [ 8.0620855, 47.3960442 ], + [ 8.0618855, 47.396005099999996 ], + [ 8.0616829, 47.3959732 ], + [ 8.061478, 47.3959486 ], + [ 8.0612715, 47.3959313 ], + [ 8.061064, 47.3959213 ], + [ 8.060856, 47.3959187 ], + [ 8.0606481, 47.3959235 ], + [ 8.0604408, 47.3959357 ], + [ 8.0602348, 47.3959553 ], + [ 8.0600305, 47.3959821 ], + [ 8.0598286, 47.3960162 ], + [ 8.0596296, 47.3960574 ], + [ 8.0594341, 47.3961056 ], + [ 8.0592425, 47.3961607 ], + [ 8.0590554, 47.3962225 ], + [ 8.0588734, 47.3962909 ], + [ 8.0586969, 47.3963656 ], + [ 8.0585264, 47.3964466 ], + [ 8.0583623, 47.3965335 ], + [ 8.0582052, 47.396626 ], + [ 8.0580554, 47.3967241 ], + [ 8.0579134, 47.3968273 ], + [ 8.0577795, 47.3969355 ], + [ 8.0576542, 47.3970482 ], + [ 8.0575377, 47.3971652 ], + [ 8.0574304, 47.3972863 ], + [ 8.0573326, 47.397411 ], + [ 8.0572445, 47.3975389 ], + [ 8.0571664, 47.3976699 ], + [ 8.0570985, 47.3978034 ], + [ 8.057041, 47.3979391 ], + [ 8.056994, 47.3980768 ], + [ 8.0569577, 47.3982159 ], + [ 8.0569322, 47.3983561 ], + [ 8.0569175, 47.398497 ], + [ 8.0569137, 47.3986382 ], + [ 8.0569207, 47.3987794 ], + [ 8.0569387, 47.3989201 ], + [ 8.0569675, 47.39906 ], + [ 8.057007, 47.3991987 ], + [ 8.0570572, 47.3993358 ], + [ 8.0571178, 47.399471 ], + [ 8.0571888, 47.3996037 ], + [ 8.0572699, 47.3997338 ], + [ 8.057361, 47.3998608 ], + [ 8.0574617, 47.3999845 ], + [ 8.0575718, 47.4001043 ], + [ 8.057691, 47.4002201 ], + [ 8.057819, 47.4003315 ], + [ 8.0579553, 47.400438199999996 ], + [ 8.0580997, 47.4005399 ], + [ 8.0582518, 47.4006363 ], + [ 8.0584111, 47.4007272 ], + [ 8.0585771, 47.4008123 ], + [ 8.0587495, 47.4008914 ], + [ 8.0589278, 47.4009643 ], + [ 8.0591114, 47.4010307 ], + [ 8.0592999, 47.4010905 ], + [ 8.0594927, 47.4011435 ], + [ 8.0596894, 47.4011896 ], + [ 8.0598894, 47.4012287 ], + [ 8.0600921, 47.4012605 ], + [ 8.0602969, 47.4012852 ], + [ 8.0605034, 47.4013025 ], + [ 8.060711, 47.4013125 ], + [ 8.060919, 47.4013151 ], + [ 8.0611269, 47.4013103 ], + [ 8.0613342, 47.4012981 ], + [ 8.0615403, 47.4012785 ], + [ 8.0617446, 47.4012517 ], + [ 8.0619465, 47.4012176 ], + [ 8.0621455, 47.4011764 ], + [ 8.0623411, 47.4011282 ], + [ 8.0625327, 47.4010731 ], + [ 8.0627197, 47.4010113 ], + [ 8.0629018, 47.4009429 ], + [ 8.0630783, 47.4008681 ], + [ 8.0632488, 47.4007872 ], + [ 8.0634129, 47.4007003 ], + [ 8.06357, 47.4006077 ], + [ 8.0637198, 47.4005096 ], + [ 8.0638618, 47.4004064 ], + [ 8.0639957, 47.4002983 ], + [ 8.064121, 47.4001855 ], + [ 8.0642375, 47.4000684 ], + [ 8.0643448, 47.3999474 ], + [ 8.0644426, 47.3998227 ], + [ 8.0645307, 47.3996948 ], + [ 8.0646088, 47.3995638 ], + [ 8.0646766, 47.3994303 ], + [ 8.0647341, 47.3992945 ], + [ 8.0647811, 47.3991569 ], + [ 8.0648174, 47.3990178 ], + [ 8.0648429, 47.3988776 ], + [ 8.0648576, 47.3987367 ], + [ 8.0648613, 47.3985954 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "AAR0002", + "country" : "CHE", + "name" : [ + { + "text" : "Bezirksgefängnis Aarau Telli", + "lang" : "de-CH" + }, + { + "text" : "Bezirksgefängnis Aarau Telli", + "lang" : "fr-CH" + }, + { + "text" : "Bezirksgefängnis Aarau Telli", + "lang" : "it-CH" + }, + { + "text" : "Bezirksgefängnis Aarau Telli", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Bezirksgefängnis Aarau", + "lang" : "de-CH" + }, + { + "text" : "Bezirksgefängnis Aarau", + "lang" : "fr-CH" + }, + { + "text" : "Bezirksgefängnis Aarau", + "lang" : "it-CH" + }, + { + "text" : "Bezirksgefängnis Aarau", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Gefängnisleitung", + "lang" : "de-CH" + }, + { + "text" : "Gefängnisleitung", + "lang" : "fr-CH" + }, + { + "text" : "Gefängnisleitung", + "lang" : "it-CH" + }, + { + "text" : "Gefängnisleitung", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ag.ch/de/verwaltung/dvi/strafverfolgung-strafvollzug/strafvollzug/bezirksgefaengnisse", + "email" : "justizvollzug@ag.ch", + "phone" : "0041628358250", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4201732, 47.1824263 ], + [ 7.4209005, 47.1823083 ], + [ 7.4211982, 47.1823309 ], + [ 7.4219915, 47.1820719 ], + [ 7.4224961, 47.1819705 ], + [ 7.4228928, 47.1818297 ], + [ 7.4232399000000004, 47.1817397 ], + [ 7.4237858, 47.1816158 ], + [ 7.4241083, 47.1814749 ], + [ 7.4250818, 47.1822765 ], + [ 7.4262315, 47.181459 ], + [ 7.4263807, 47.1813858 ], + [ 7.4266537, 47.1813238 ], + [ 7.4269596, 47.181166 ], + [ 7.4274139, 47.1810309 ], + [ 7.4277776, 47.1808843 ], + [ 7.4279351, 47.1808787 ], + [ 7.4283729, 47.1807717 ], + [ 7.4287036, 47.1807662 ], + [ 7.4290177, 47.1808003 ], + [ 7.4293566, 47.1807553 ], + [ 7.429712, 47.1808231 ], + [ 7.4299511, 47.1808232 ], + [ 7.4299676, 47.1807725 ], + [ 7.4300426, 47.1805638 ], + [ 7.4301507, 47.1803099 ], + [ 7.4302167, 47.1800166 ], + [ 7.4303907, 47.1797063 ], + [ 7.4304328, 47.1794637 ], + [ 7.4305574, 47.1792324 ], + [ 7.4306976, 47.1790125 ], + [ 7.4307809, 47.1786797 ], + [ 7.4308477, 47.1784201 ], + [ 7.4308478000000004, 47.1781437 ], + [ 7.4308486, 47.177856 ], + [ 7.4308157, 47.1774892 ], + [ 7.4308166, 47.1771845 ], + [ 7.4181536, 47.174633299999996 ], + [ 7.4189395, 47.1740864 ], + [ 7.4070447999999995, 47.1684706 ], + [ 7.4054199, 47.1711835 ], + [ 7.4049905, 47.1710591 ], + [ 7.4039337, 47.1708778 ], + [ 7.4069836, 47.1660331 ], + [ 7.4008213, 47.1657129 ], + [ 7.393852, 47.1645002 ], + [ 7.3961856, 47.162403 ], + [ 7.396062, 47.1623296 ], + [ 7.3958066, 47.1622165 ], + [ 7.3955256, 47.1621148 ], + [ 7.3951375, 47.1620016 ], + [ 7.394882, 47.1619619 ], + [ 7.3945104, 47.161815 ], + [ 7.3943043, 47.1617753 ], + [ 7.3941222, 47.1617075 ], + [ 7.3938338, 47.1615944 ], + [ 7.3936271, 47.1614476 ], + [ 7.3934623, 47.1613627 ], + [ 7.3932811, 47.1612667 ], + [ 7.3929177, 47.1611253 ], + [ 7.3924645, 47.1609799 ], + [ 7.3922122, 47.161083 ], + [ 7.3918824, 47.1611548 ], + [ 7.3913813, 47.1611096 ], + [ 7.3899969, 47.1608392 ], + [ 7.3886126, 47.1603439 ], + [ 7.3878874, 47.1602536 ], + [ 7.38736, 47.1601364 ], + [ 7.3872019, 47.1600014 ], + [ 7.387202, 47.1599115 ], + [ 7.3872944, 47.1597586 ], + [ 7.3871627, 47.1596686 ], + [ 7.386899, 47.1596235 ], + [ 7.3861076, 47.159776 ], + [ 7.3857776, 47.1600008 ], + [ 7.3853556, 47.1600725 ], + [ 7.3848941, 47.1599824 ], + [ 7.3839707, 47.1602248 ], + [ 7.3831394, 47.1607011 ], + [ 7.3827169999999995, 47.1610787 ], + [ 7.3825452, 47.1614204 ], + [ 7.3821219, 47.1626345 ], + [ 7.3818575, 47.1631741 ], + [ 7.3817516, 47.1635519 ], + [ 7.3817908, 47.1639117 ], + [ 7.3821856, 47.1647214 ], + [ 7.3821455, 47.1651712 ], + [ 7.3821356, 47.1652338 ], + [ 7.3820761, 47.1653464 ], + [ 7.3820125, 47.1654277 ], + [ 7.3819415, 47.1655321 ], + [ 7.3817383, 47.1659022 ], + [ 7.3815541, 47.1663235 ], + [ 7.3812485, 47.1668786 ], + [ 7.3809000000000005, 47.167383 ], + [ 7.3805415, 47.1680708 ], + [ 7.3802721, 47.1686653 ], + [ 7.3802711, 47.1688542 ], + [ 7.3805446, 47.1689807 ], + [ 7.3810044999999995, 47.1691438 ], + [ 7.3815821, 47.1693217 ], + [ 7.3823477, 47.1695707 ], + [ 7.3828248, 47.1697563 ], + [ 7.3833522, 47.1699352 ], + [ 7.3840832, 47.1701791 ], + [ 7.3847705, 47.1703723 ], + [ 7.3857777, 47.1705823 ], + [ 7.386456, 47.1707583 ], + [ 7.3870462, 47.1708274 ], + [ 7.3874517, 47.1708999 ], + [ 7.3872783, 47.1711722 ], + [ 7.3871281, 47.1713982 ], + [ 7.3869678, 47.1717904 ], + [ 7.386663, 47.1723512 ], + [ 7.3863532, 47.172998 ], + [ 7.3859064, 47.1737618 ], + [ 7.3857644, 47.1739819 ], + [ 7.3855942, 47.1743515 ], + [ 7.3853884, 47.1748646 ], + [ 7.3853651, 47.1751226 ], + [ 7.3852379, 47.1752909 ], + [ 7.3851206, 47.1755049 ], + [ 7.3846567, 47.1760745 ], + [ 7.3844487, 47.1763301 ], + [ 7.3856216, 47.1766972 ], + [ 7.3859642, 47.1762386 ], + [ 7.3864967, 47.1754343 ], + [ 7.3961172, 47.1787375 ], + [ 7.3969293, 47.1776774 ], + [ 7.4010913, 47.1788315 ], + [ 7.4015244, 47.1774099 ], + [ 7.4034649, 47.1778287 ], + [ 7.4090051, 47.1799992 ], + [ 7.4102464, 47.1792157 ], + [ 7.4201732, 47.1824263 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "WZV0036", + "country" : "CHE", + "name" : [ + { + "text" : "Wasser- und Zugvogelreservat Witi", + "lang" : "de-CH" + }, + { + "text" : "Réserve d'oiseaux d'eau et de migrateurs Witi", + "lang" : "fr-CH" + }, + { + "text" : "Riserva di uccelli acquatici e migratori Witi", + "lang" : "it-CH" + }, + { + "text" : "Water Bird and Migratory Bird Reserves Witi", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5735241, 47.2203545 ], + [ 7.573441, 47.2201296 ], + [ 7.5731936, 47.2202048 ], + [ 7.5730287, 47.2202238 ], + [ 7.5728633, 47.2200927 ], + [ 7.572725, 47.2199054 ], + [ 7.5725596, 47.2197368 ], + [ 7.5723667, 47.2194745 ], + [ 7.572195, 47.2191127 ], + [ 7.5721469, 47.2190268 ], + [ 7.5720805, 47.2188748 ], + [ 7.5720067, 47.2187248 ], + [ 7.5719304, 47.2185747 ], + [ 7.5718483, 47.2184084 ], + [ 7.5709632, 47.218511 ], + [ 7.5708774, 47.2185039 ], + [ 7.5706792, 47.2184735 ], + [ 7.5705141000000005, 47.2184314 ], + [ 7.5703853, 47.2183821 ], + [ 7.5702481, 47.2182923 ], + [ 7.5701604, 47.2181953 ], + [ 7.5700602, 47.218065 ], + [ 7.5699345000000005, 47.2179428 ], + [ 7.5697997, 47.2178216 ], + [ 7.56945, 47.217527 ], + [ 7.5692673, 47.2173796 ], + [ 7.5690688999999995, 47.2172412 ], + [ 7.5688574, 47.2171201 ], + [ 7.5687095, 47.2170528 ], + [ 7.5685765, 47.2170098 ], + [ 7.5682794, 47.2169471 ], + [ 7.5671204, 47.2167442 ], + [ 7.5669199, 47.2167203 ], + [ 7.5661565, 47.2166806 ], + [ 7.5656169, 47.2166686 ], + [ 7.5654502, 47.2166643 ], + [ 7.5651945, 47.2166717 ], + [ 7.5646334, 47.216675 ], + [ 7.5643314, 47.2166808 ], + [ 7.5641475, 47.2166963 ], + [ 7.5640155, 47.2167117 ], + [ 7.5639272, 47.2167226 ], + [ 7.5634612, 47.2168005 ], + [ 7.5632658, 47.2168439 ], + [ 7.5629854, 47.2169027 ], + [ 7.5627775, 47.2169334 ], + [ 7.5625664, 47.2169669 ], + [ 7.5621613, 47.2170133 ], + [ 7.561965, 47.217027 ], + [ 7.5616028, 47.2170282 ], + [ 7.5613717000000005, 47.2170078 ], + [ 7.560903, 47.2169787 ], + [ 7.5607643, 47.2169688 ], + [ 7.559911, 47.2169097 ], + [ 7.5598871, 47.2176446 ], + [ 7.56001, 47.2176397 ], + [ 7.5602411, 47.217654 ], + [ 7.5604854, 47.2176762 ], + [ 7.5608749, 47.2177135 ], + [ 7.5617291, 47.2177755 ], + [ 7.5619057, 47.2177853 ], + [ 7.5620262, 47.217796 ], + [ 7.5622489999999996, 47.2178101 ], + [ 7.5627284, 47.2178222 ], + [ 7.5631922, 47.2178307 ], + [ 7.5633093, 47.2178431 ], + [ 7.5636394, 47.2178427 ], + [ 7.563754, 47.2178021 ], + [ 7.5638133, 47.2177653 ], + [ 7.5639246, 47.217722 ], + [ 7.564064, 47.2176849 ], + [ 7.5641406, 47.2176614 ], + [ 7.5643171, 47.2176271 ], + [ 7.5644887, 47.2175918 ], + [ 7.5646371, 47.2175691 ], + [ 7.5648846, 47.2175365 ], + [ 7.5651725, 47.2175019 ], + [ 7.5657864, 47.2175004 ], + [ 7.5664226, 47.2175249 ], + [ 7.5666595, 47.2175399 ], + [ 7.5668287, 47.2175685 ], + [ 7.5670268, 47.2176033 ], + [ 7.5673472, 47.2176992 ], + [ 7.5675123, 47.2177495 ], + [ 7.5676749999999995, 47.2178068 ], + [ 7.5678005, 47.2178633 ], + [ 7.5678534, 47.2178939 ], + [ 7.5679278, 47.2179406 ], + [ 7.5680311, 47.2180169 ], + [ 7.5680667, 47.2180474 ], + [ 7.5681113, 47.218087 ], + [ 7.5681709, 47.2181517 ], + [ 7.5682413, 47.2182469 ], + [ 7.5683274, 47.2183952 ], + [ 7.5683846, 47.2185068 ], + [ 7.5684384, 47.218576 ], + [ 7.568469, 47.2186056 ], + [ 7.568498, 47.2186289 ], + [ 7.5685459, 47.2186523 ], + [ 7.5686599, 47.218698 ], + [ 7.5688077, 47.2187518 ], + [ 7.5690042, 47.2188119 ], + [ 7.5691446, 47.2188557 ], + [ 7.5692965, 47.2188952 ], + [ 7.5694361, 47.2189283 ], + [ 7.5695847, 47.2189731 ], + [ 7.5697218, 47.2190333 ], + [ 7.5698738, 47.2191059 ], + [ 7.5700416, 47.219202 ], + [ 7.5701366, 47.2192585 ], + [ 7.5703581, 47.2194013 ], + [ 7.5705003, 47.2195054 ], + [ 7.5705697, 47.2195585 ], + [ 7.5706788, 47.219642 ], + [ 7.5706863, 47.2196496 ], + [ 7.5707978, 47.2197201 ], + [ 7.5708264, 47.2199076 ], + [ 7.5709365, 47.2200763 ], + [ 7.5710746, 47.2201885 ], + [ 7.5713226, 47.2203757 ], + [ 7.571626, 47.2205817 ], + [ 7.5717913, 47.2206939 ], + [ 7.572012, 47.2208438 ], + [ 7.5725087, 47.2214994 ], + [ 7.5728953, 47.2219865 ], + [ 7.5731719, 47.22238 ], + [ 7.5735856, 47.2228295 ], + [ 7.5738620999999995, 47.2231479 ], + [ 7.5741928, 47.2234288 ], + [ 7.574552, 47.2238222 ], + [ 7.5750209, 47.2242341 ], + [ 7.5755169, 47.2245522 ], + [ 7.5758476, 47.2247955 ], + [ 7.576178, 47.2249264 ], + [ 7.5767289, 47.2250946 ], + [ 7.5775556, 47.2253561 ], + [ 7.5784095, 47.2255988 ], + [ 7.5788505, 47.2257108 ], + [ 7.5792084, 47.2259165 ], + [ 7.5799253, 47.2261595 ], + [ 7.5809166, 47.2265332 ], + [ 7.5818258, 47.2267758 ], + [ 7.5824866, 47.2269813 ], + [ 7.5834232, 47.2272614 ], + [ 7.5842225, 47.2274291 ], + [ 7.5852134, 47.2276716 ], + [ 7.585737, 47.2278022 ], + [ 7.5860403, 47.2279519 ], + [ 7.5865359, 47.2281199 ], + [ 7.5869499000000005, 47.2283257 ], + [ 7.5872531, 47.2284377 ], + [ 7.5877761, 47.2286434 ], + [ 7.5886855, 47.2289234 ], + [ 7.5892917, 47.2290914 ], + [ 7.5897329, 47.2292408 ], + [ 7.5899516, 47.2289781 ], + [ 7.5901162, 47.2288091 ], + [ 7.5903357, 47.2284901 ], + [ 7.590253, 47.2284338 ], + [ 7.5895642, 47.2282661 ], + [ 7.5895641, 47.2282097 ], + [ 7.5894541, 47.2281349 ], + [ 7.5891782, 47.2280416 ], + [ 7.5887652, 47.227892 ], + [ 7.5882968, 47.2277427 ], + [ 7.5877458, 47.2275371 ], + [ 7.5872501, 47.2273502 ], + [ 7.5865884999999995, 47.2271449 ], + [ 7.5859822, 47.2269207 ], + [ 7.5851837, 47.2267342 ], + [ 7.5843577, 47.2264539 ], + [ 7.5838613, 47.2263233 ], + [ 7.5832833, 47.226174 ], + [ 7.5827043, 47.226006 ], + [ 7.5820437, 47.2258568 ], + [ 7.5813549, 47.2256514 ], + [ 7.5807214, 47.2254272 ], + [ 7.5801706, 47.2252779 ], + [ 7.5795644, 47.2251098 ], + [ 7.5792059, 47.2249791 ], + [ 7.5789309, 47.2249044 ], + [ 7.5785450999999995, 47.2247549 ], + [ 7.5782418, 47.2245865 ], + [ 7.577994, 47.2244742 ], + [ 7.5777734, 47.2243621 ], + [ 7.5774701, 47.2242123 ], + [ 7.5772494, 47.2240626 ], + [ 7.5769742, 47.2238942 ], + [ 7.5767534, 47.2237258 ], + [ 7.5765326, 47.2235573 ], + [ 7.5758983, 47.2230143 ], + [ 7.5754293, 47.2225648 ], + [ 7.5750156, 47.222134 ], + [ 7.5744628, 47.2215346 ], + [ 7.5741047, 47.221197599999996 ], + [ 7.573911, 47.2209728 ], + [ 7.5737737, 47.2208229 ], + [ 7.5736626000000005, 47.2206355 ], + [ 7.5735241, 47.2203545 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "WZV0002", + "country" : "CHE", + "name" : [ + { + "text" : "Wasser- und Zugvogelreservat Aare bei Solothurn und Naturschutzreservat Aare Flumenthal", + "lang" : "de-CH" + }, + { + "text" : "Réserve d'oiseaux d'eau et de migrateurs Aare bei Solothurn und Naturschutzreservat Aare Flumenthal", + "lang" : "fr-CH" + }, + { + "text" : "Riserva di uccelli acquatici e migratori Aare bei Solothurn und Naturschutzreservat Aare Flumenthal", + "lang" : "it-CH" + }, + { + "text" : "Water Bird and Migratory Bird Reserves Aare bei Solothurn und Naturschutzreservat Aare Flumenthal", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "de-CH" + }, + { + "text" : "Conférence pour forêt, faune et paysage (CFP)", + "lang" : "fr-CH" + }, + { + "text" : "Conferenza per la foresta, la fauna e il paesaggio (CFP)", + "lang" : "it-CH" + }, + { + "text" : "Konferenz für Wald, Wildtiere und Landschaft (KWL)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Jagdverwaltung", + "lang" : "de-CH" + }, + { + "text" : "Service de la chasse", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio della caccia", + "lang" : "it-CH" + }, + { + "text" : "Hunting authority", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kwl-cfp.ch/jfk/adressen-jagd-fischerei", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.6007784, 46.5269708 ], + [ 8.60077, 46.5268296 ], + [ 8.6007509, 46.5266889 ], + [ 8.6007212, 46.5265492 ], + [ 8.6006809, 46.5264106 ], + [ 8.6006302, 46.5262738 ], + [ 8.6005692, 46.5261389 ], + [ 8.600498, 46.5260064 ], + [ 8.600416899999999, 46.5258767 ], + [ 8.600326, 46.5257501 ], + [ 8.6002257, 46.525627 ], + [ 8.6001161, 46.5255076 ], + [ 8.5999977, 46.5253923 ], + [ 8.5998707, 46.5252815 ], + [ 8.5997355, 46.5251755 ], + [ 8.5995924, 46.5250744 ], + [ 8.5994419, 46.5249787 ], + [ 8.5992843, 46.5248886 ], + [ 8.59912, 46.5248042 ], + [ 8.5989497, 46.5247259 ], + [ 8.5987736, 46.5246539 ], + [ 8.5985923, 46.5245883 ], + [ 8.5984062, 46.5245294 ], + [ 8.598216, 46.5244772 ], + [ 8.598022, 46.5244321 ], + [ 8.597824899999999, 46.5243939 ], + [ 8.5976252, 46.524363 ], + [ 8.5974234, 46.5243393 ], + [ 8.5972201, 46.5243229 ], + [ 8.5970158, 46.5243139 ], + [ 8.5968112, 46.5243123 ], + [ 8.5966066, 46.5243181 ], + [ 8.5964028, 46.5243312 ], + [ 8.5962003, 46.5243518 ], + [ 8.5959996, 46.5243796 ], + [ 8.5958013, 46.5244146 ], + [ 8.5956059, 46.5244567 ], + [ 8.595414, 46.5245058 ], + [ 8.5952261, 46.5245618 ], + [ 8.5950426, 46.5246245 ], + [ 8.5948642, 46.5246937 ], + [ 8.5946913, 46.5247693 ], + [ 8.5945243, 46.524851 ], + [ 8.5943638, 46.5249387 ], + [ 8.5942101, 46.525032 ], + [ 8.5940637, 46.5251308 ], + [ 8.593925, 46.5252347 ], + [ 8.5937944, 46.5253435 ], + [ 8.5936722, 46.5254568 ], + [ 8.593558699999999, 46.525574399999996 ], + [ 8.5934543, 46.5256959 ], + [ 8.5933593, 46.5258211 ], + [ 8.5932739, 46.5259495 ], + [ 8.5931984, 46.5260808 ], + [ 8.5931329, 46.5262147 ], + [ 8.5930777, 46.5263507 ], + [ 8.5930328, 46.5264886 ], + [ 8.5929985, 46.5266279 ], + [ 8.5929747, 46.5267682 ], + [ 8.5929617, 46.5269092 ], + [ 8.5929593, 46.5270505 ], + [ 8.592967699999999, 46.5271916 ], + [ 8.5929868, 46.5273323 ], + [ 8.5930165, 46.5274721 ], + [ 8.5930567, 46.5276106 ], + [ 8.5931074, 46.5277475 ], + [ 8.5931685, 46.5278824 ], + [ 8.5932396, 46.5280148 ], + [ 8.5933207, 46.5281446 ], + [ 8.5934116, 46.5282712 ], + [ 8.5935119, 46.5283943 ], + [ 8.5936214, 46.5285137 ], + [ 8.5937398, 46.5286289 ], + [ 8.5938668, 46.5287398 ], + [ 8.594002, 46.5288458 ], + [ 8.5941451, 46.5289469 ], + [ 8.5942957, 46.5290426 ], + [ 8.5944533, 46.5291328 ], + [ 8.5946175, 46.5292171 ], + [ 8.5947879, 46.5292954 ], + [ 8.594964, 46.5293675 ], + [ 8.5951453, 46.529433 ], + [ 8.5953314, 46.529492 ], + [ 8.5955216, 46.5295441 ], + [ 8.5957156, 46.5295893 ], + [ 8.5959127, 46.5296274 ], + [ 8.596112399999999, 46.5296584 ], + [ 8.5963143, 46.5296821 ], + [ 8.5965176, 46.5296985 ], + [ 8.5967219, 46.5297075 ], + [ 8.5969266, 46.5297091 ], + [ 8.5971311, 46.5297033 ], + [ 8.5973349, 46.5296901 ], + [ 8.5975375, 46.5296696 ], + [ 8.5977382, 46.5296418 ], + [ 8.5979365, 46.5296068 ], + [ 8.5981319, 46.5295647 ], + [ 8.5983239, 46.5295156 ], + [ 8.5985118, 46.5294596 ], + [ 8.5986953, 46.5293969 ], + [ 8.5988737, 46.5293276 ], + [ 8.5990466, 46.529252 ], + [ 8.5992136, 46.5291703 ], + [ 8.5993742, 46.5290826 ], + [ 8.5995278, 46.5289893 ], + [ 8.599674199999999, 46.5288905 ], + [ 8.5998129, 46.5287866 ], + [ 8.5999436, 46.5286778 ], + [ 8.6000658, 46.5285645 ], + [ 8.6001792, 46.5284469 ], + [ 8.600283600000001, 46.5283253 ], + [ 8.600378599999999, 46.5282002 ], + [ 8.6004639, 46.5280718 ], + [ 8.6005395, 46.5279405 ], + [ 8.6006049, 46.5278066 ], + [ 8.6006602, 46.5276705 ], + [ 8.600705, 46.5275327 ], + [ 8.6007393, 46.5273934 ], + [ 8.600763, 46.5272531 ], + [ 8.6007761, 46.5271121 ], + [ 8.6007784, 46.5269708 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0002", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Airolo", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Airolo", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Airolo", + "lang" : "it-CH" + }, + { + "text" : "Substation Airolo", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6178447, 47.2268233 ], + [ 7.6178388, 47.2266821 ], + [ 7.6178221, 47.2265413 ], + [ 7.6177946, 47.2264013 ], + [ 7.6177563, 47.2262625 ], + [ 7.6177074000000005, 47.2261252 ], + [ 7.6176481, 47.2259898 ], + [ 7.6175784, 47.2258567 ], + [ 7.6174986, 47.2257263 ], + [ 7.6174089, 47.225599 ], + [ 7.6173096000000005, 47.225475 ], + [ 7.6172008, 47.2253547 ], + [ 7.617083, 47.2252385 ], + [ 7.6169563, 47.2251266 ], + [ 7.6168213, 47.2250194 ], + [ 7.6166782, 47.2249171 ], + [ 7.6165275, 47.2248201 ], + [ 7.6163695, 47.2247286 ], + [ 7.6162047, 47.2246428 ], + [ 7.6160335, 47.2245631 ], + [ 7.6158564, 47.2244896 ], + [ 7.615674, 47.2244224 ], + [ 7.6154866, 47.2243619 ], + [ 7.6152949, 47.2243081 ], + [ 7.6150991999999995, 47.2242613 ], + [ 7.6149003, 47.2242215 ], + [ 7.6146985, 47.2241888 ], + [ 7.6144945, 47.2241633 ], + [ 7.6142889, 47.2241452 ], + [ 7.6140821, 47.2241345 ], + [ 7.6138748, 47.2241311 ], + [ 7.6136675, 47.2241351 ], + [ 7.6134608, 47.2241465 ], + [ 7.6132553, 47.2241652 ], + [ 7.6130514, 47.2241913 ], + [ 7.6128499, 47.2242246 ], + [ 7.6126512, 47.224265 ], + [ 7.6124559, 47.2243125 ], + [ 7.6122645, 47.2243668 ], + [ 7.6120775, 47.2244279 ], + [ 7.6118955, 47.2244956 ], + [ 7.6117189, 47.2245697 ], + [ 7.6115482, 47.2246499 ], + [ 7.611384, 47.2247362 ], + [ 7.6112266, 47.2248282 ], + [ 7.6110765, 47.2249256 ], + [ 7.6109341, 47.2250283 ], + [ 7.6107997, 47.225136 ], + [ 7.6106738, 47.2252482 ], + [ 7.6105567, 47.2253648 ], + [ 7.6104488, 47.2254854 ], + [ 7.6103502, 47.2256097 ], + [ 7.6102613, 47.2257374 ], + [ 7.6101824, 47.225868 ], + [ 7.6101136, 47.2260013 ], + [ 7.6100551, 47.2261368 ], + [ 7.6100072, 47.2262743 ], + [ 7.6099698, 47.2264132 ], + [ 7.6099432, 47.2265533 ], + [ 7.6099274, 47.2266942 ], + [ 7.6099224, 47.2268354 ], + [ 7.6099283, 47.2269766 ], + [ 7.609945, 47.2271174 ], + [ 7.6099725, 47.2272575 ], + [ 7.6100107, 47.2273963 ], + [ 7.6100596, 47.2275336 ], + [ 7.6101189, 47.227669 ], + [ 7.6101886, 47.227802 ], + [ 7.6102682999999995, 47.2279324 ], + [ 7.610358, 47.2280598 ], + [ 7.6104574, 47.2281838 ], + [ 7.6105661, 47.2283041 ], + [ 7.6106839, 47.2284203 ], + [ 7.6108106, 47.2285322 ], + [ 7.6109456, 47.2286394 ], + [ 7.6110887, 47.2287417 ], + [ 7.6112394, 47.2288387 ], + [ 7.6113973999999995, 47.2289302 ], + [ 7.6115622, 47.229016 ], + [ 7.6117334, 47.2290957 ], + [ 7.6119105000000005, 47.2291693 ], + [ 7.612093, 47.2292364 ], + [ 7.6122803, 47.229297 ], + [ 7.6124721, 47.2293507 ], + [ 7.6126678, 47.2293976 ], + [ 7.6128667, 47.2294374 ], + [ 7.6130685, 47.2294701 ], + [ 7.6132725, 47.2294955 ], + [ 7.6134782, 47.2295137 ], + [ 7.613685, 47.2295244 ], + [ 7.6138923, 47.2295278 ], + [ 7.6140996, 47.2295238 ], + [ 7.6143064, 47.2295124 ], + [ 7.6145119, 47.2294936 ], + [ 7.6147157, 47.2294676 ], + [ 7.6149173, 47.2294343 ], + [ 7.615116, 47.2293939 ], + [ 7.6153113999999995, 47.2293464 ], + [ 7.6155028, 47.2292921 ], + [ 7.6156898, 47.2292309 ], + [ 7.6158718, 47.2291633 ], + [ 7.6160484, 47.2290892 ], + [ 7.6162191, 47.2290089 ], + [ 7.6163833, 47.2289226 ], + [ 7.6165407, 47.2288306 ], + [ 7.6166908, 47.2287332 ], + [ 7.6168332, 47.2286305 ], + [ 7.6169676, 47.2285228 ], + [ 7.6170935, 47.2284106 ], + [ 7.6172105, 47.228294 ], + [ 7.6173185, 47.2281733 ], + [ 7.617417, 47.228049 ], + [ 7.6175059, 47.2279214 ], + [ 7.6175847999999995, 47.2277908 ], + [ 7.6176536, 47.2276575 ], + [ 7.6177121, 47.2275219 ], + [ 7.6177600000000005, 47.2273845 ], + [ 7.6177974, 47.2272455 ], + [ 7.617824, 47.2271054 ], + [ 7.6178398, 47.2269646 ], + [ 7.6178447, 47.2268233 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SOD0001", + "country" : "CHE", + "name" : [ + { + "text" : "JVA Solothurn", + "lang" : "de-CH" + }, + { + "text" : "JVA Solothurn", + "lang" : "fr-CH" + }, + { + "text" : "JVA Solothurn", + "lang" : "it-CH" + }, + { + "text" : "JVA Solothurn", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Justizvollzug des Kantons Solothurn", + "lang" : "de-CH" + }, + { + "text" : "Amt für Justizvollzug des Kantons Solothurn", + "lang" : "fr-CH" + }, + { + "text" : "Amt für Justizvollzug des Kantons Solothurn", + "lang" : "it-CH" + }, + { + "text" : "Amt für Justizvollzug des Kantons Solothurn", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Amtsleitung", + "lang" : "de-CH" + }, + { + "text" : "Direction de l'office", + "lang" : "fr-CH" + }, + { + "text" : "Direzione dell'ufficio", + "lang" : "it-CH" + }, + { + "text" : "Head of Division", + "lang" : "en-GB" + } + ], + "siteURL" : "https://so.ch/verwaltung/departement-des-innern/amt-fuer-justizvollzug/", + "email" : "ajuv@ddi.so.ch", + "phone" : "0041326276336", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.350519, 47.4269258 ], + [ 7.3505558, 47.4269379 ], + [ 7.350634, 47.426959 ], + [ 7.3507142, 47.4269766 ], + [ 7.3507457, 47.4269819 ], + [ 7.3508664, 47.4267809 ], + [ 7.3511402, 47.4266312 ], + [ 7.3514245, 47.4264529 ], + [ 7.3518771, 47.4263319 ], + [ 7.3523191, 47.4262109 ], + [ 7.3525611, 47.4261825 ], + [ 7.3529188, 47.4261899 ], + [ 7.3531924, 47.4261401 ], + [ 7.353487, 47.426069 ], + [ 7.3537923, 47.4259478 ], + [ 7.3541503, 47.4257268 ], + [ 7.3546869, 47.4256772 ], + [ 7.3555076, 47.4255921 ], + [ 7.3559495, 47.4255425 ], + [ 7.3561389, 47.4255284 ], + [ 7.3557116, 47.4245965 ], + [ 7.3556405, 47.4244411 ], + [ 7.3556326, 47.4244382 ], + [ 7.3556118999999995, 47.4244299 ], + [ 7.355111, 47.4245358 ], + [ 7.3544354, 47.4245707 ], + [ 7.3541317, 47.4246427 ], + [ 7.3537803, 47.4246689 ], + [ 7.3531575, 47.4247545 ], + [ 7.3523577, 47.4248827 ], + [ 7.3512893, 47.4251873 ], + [ 7.3512131, 47.4251999 ], + [ 7.3511616, 47.4252085 ], + [ 7.3500684, 47.4253461 ], + [ 7.3495653, 47.4253864 ], + [ 7.3488962, 47.4254085 ], + [ 7.3487522, 47.4253965 ], + [ 7.3484437, 47.4254905 ], + [ 7.3482362, 47.4255732 ], + [ 7.3478409, 47.4255989 ], + [ 7.3477082, 47.4256664 ], + [ 7.347605, 47.4258077 ], + [ 7.3476362, 47.4259892 ], + [ 7.3483852, 47.425908 ], + [ 7.3488375999999995, 47.4258869 ], + [ 7.3492128, 47.4259606 ], + [ 7.349458, 47.4260088 ], + [ 7.3498787, 47.4261019 ], + [ 7.3501179, 47.4266401 ], + [ 7.3501389, 47.4266734 ], + [ 7.3502632, 47.4267782 ], + [ 7.3503454999999995, 47.4268378 ], + [ 7.3503826, 47.4268622 ], + [ 7.3504224, 47.4268846 ], + [ 7.3504648, 47.4269047 ], + [ 7.3505093, 47.4269226 ], + [ 7.350519, 47.4269258 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns323", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Berg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Berg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Berg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Berg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.849012, 47.3815977 ], + [ 7.8490231, 47.3816936 ], + [ 7.8492099, 47.3818007 ], + [ 7.8492823, 47.3818075 ], + [ 7.8493448, 47.3817838 ], + [ 7.8493645, 47.3817463 ], + [ 7.8492916, 47.381674 ], + [ 7.8492465, 47.3816321 ], + [ 7.84926, 47.3815945 ], + [ 7.8494687, 47.3814252 ], + [ 7.8496123, 47.3812796 ], + [ 7.8498038999999995, 47.3811104 ], + [ 7.8499681, 47.3809669 ], + [ 7.8500157, 47.3808802 ], + [ 7.8500601, 47.3808426 ], + [ 7.8500233, 47.3808054 ], + [ 7.849984, 47.3807866 ], + [ 7.8499012, 47.3807869 ], + [ 7.8497643, 47.3808881 ], + [ 7.8495867, 47.3810736 ], + [ 7.8495111, 47.3811021 ], + [ 7.8493879, 47.3812102 ], + [ 7.8493028, 47.3813415 ], + [ 7.84906, 47.3815718 ], + [ 7.849012, 47.3815977 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns203", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Hecken-Komplex Schmutzberg", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Hecken-Komplex Schmutzberg", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Hecken-Komplex Schmutzberg", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Hecken-Komplex Schmutzberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.4732188, 46.5417862 ], + [ 6.4732159, 46.5416449 ], + [ 6.4732024, 46.5415039 ], + [ 6.4731781999999995, 46.5413636 ], + [ 6.4731433, 46.5412244 ], + [ 6.473098, 46.5410866 ], + [ 6.4730423, 46.5409507 ], + [ 6.4729763, 46.5408169 ], + [ 6.4729003, 46.5406857 ], + [ 6.4728144, 46.5405575 ], + [ 6.472719, 46.5404325 ], + [ 6.4726141, 46.5403111 ], + [ 6.4725003, 46.5401937 ], + [ 6.4723776, 46.5400805 ], + [ 6.4722466, 46.539972 ], + [ 6.4721075, 46.5398683 ], + [ 6.4719607, 46.5397698 ], + [ 6.4718067, 46.5396767 ], + [ 6.4716458, 46.5395893 ], + [ 6.4714785, 46.5395079 ], + [ 6.4713053, 46.5394326 ], + [ 6.4711265000000004, 46.5393636 ], + [ 6.4709427999999996, 46.5393012 ], + [ 6.4707547, 46.5392455 ], + [ 6.4705625, 46.5391967 ], + [ 6.4703669, 46.5391549 ], + [ 6.4701685, 46.5391203 ], + [ 6.4699676, 46.5390928 ], + [ 6.469765, 46.5390726 ], + [ 6.4695611, 46.5390598 ], + [ 6.4693565, 46.5390544 ], + [ 6.4691517, 46.5390563 ], + [ 6.4689474, 46.5390656 ], + [ 6.4687441, 46.5390823 ], + [ 6.4685424, 46.5391064 ], + [ 6.4683427, 46.5391377 ], + [ 6.4681457, 46.5391761 ], + [ 6.4679518, 46.5392216 ], + [ 6.4677617, 46.5392741 ], + [ 6.4675758, 46.5393333 ], + [ 6.4673947, 46.5393992 ], + [ 6.4672188, 46.5394715 ], + [ 6.4670486, 46.5395501 ], + [ 6.4668847, 46.5396347 ], + [ 6.4667273, 46.5397251 ], + [ 6.4665771, 46.5398211 ], + [ 6.4664342999999995, 46.5399223 ], + [ 6.4662994, 46.5400286 ], + [ 6.4661728, 46.5401396 ], + [ 6.4660547, 46.5402551 ], + [ 6.4659455999999995, 46.5403746 ], + [ 6.4658456, 46.5404979 ], + [ 6.4657552, 46.5406247 ], + [ 6.4656745, 46.5407545 ], + [ 6.4656038, 46.5408871 ], + [ 6.4655432, 46.5410221 ], + [ 6.4654929, 46.541159 ], + [ 6.4654530999999995, 46.5412976 ], + [ 6.4654238, 46.5414375 ], + [ 6.4654052, 46.541578200000004 ], + [ 6.4653973, 46.5417194 ], + [ 6.4654002, 46.5418606 ], + [ 6.4654137, 46.5420016 ], + [ 6.4654378999999995, 46.5421419 ], + [ 6.4654727, 46.5422811 ], + [ 6.465518, 46.5424189 ], + [ 6.4655737, 46.5425549 ], + [ 6.4656397, 46.5426886 ], + [ 6.4657157, 46.5428198 ], + [ 6.4658014999999995, 46.5429481 ], + [ 6.465897, 46.5430731 ], + [ 6.4660018, 46.5431945 ], + [ 6.4661157, 46.5433119 ], + [ 6.4662383, 46.543425 ], + [ 6.4663694, 46.5435336 ], + [ 6.4665084, 46.5436373 ], + [ 6.4666552, 46.5437358 ], + [ 6.4668092999999995, 46.5438289 ], + [ 6.4669701, 46.5439163 ], + [ 6.4671374, 46.5439977 ], + [ 6.4673107, 46.5440731 ], + [ 6.4674894, 46.544142 ], + [ 6.4676731, 46.5442044 ], + [ 6.4678613, 46.5442601 ], + [ 6.4680535, 46.5443089 ], + [ 6.4682490999999995, 46.5443507 ], + [ 6.4684476, 46.5443854 ], + [ 6.4686485, 46.5444129 ], + [ 6.4688511, 46.544433 ], + [ 6.469055, 46.5444459 ], + [ 6.4692597, 46.5444513 ], + [ 6.4694644, 46.5444493 ], + [ 6.4696687, 46.54444 ], + [ 6.4698721, 46.5444233 ], + [ 6.4700738, 46.5443993 ], + [ 6.4702735, 46.544368 ], + [ 6.4704706, 46.5443295 ], + [ 6.4706644, 46.544284 ], + [ 6.4708546, 46.5442316 ], + [ 6.4710404, 46.5441723 ], + [ 6.4712216, 46.5441065 ], + [ 6.4713975, 46.5440341 ], + [ 6.4715677, 46.5439555 ], + [ 6.4717316, 46.5438709 ], + [ 6.471889, 46.5437805 ], + [ 6.4720392, 46.5436845 ], + [ 6.472182, 46.5435832 ], + [ 6.4723169, 46.5434769 ], + [ 6.4724435, 46.5433659 ], + [ 6.4725616, 46.5432505 ], + [ 6.4726707, 46.5431309 ], + [ 6.4727706, 46.5430076 ], + [ 6.4728611, 46.5428808 ], + [ 6.4729418, 46.542751 ], + [ 6.4730125, 46.5426184 ], + [ 6.4730731, 46.5424834 ], + [ 6.4731233, 46.5423465 ], + [ 6.4731631, 46.5422079 ], + [ 6.4731923, 46.542068 ], + [ 6.4732109, 46.5419273 ], + [ 6.4732188, 46.5417862 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0122", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Vaux", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Vaux", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Vaux", + "lang" : "it-CH" + }, + { + "text" : "Substation Vaux", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5538233, 47.4580094 ], + [ 7.5525953, 47.4580225 ], + [ 7.5502446, 47.4581081 ], + [ 7.5486474999999995, 47.4578478 ], + [ 7.5473662, 47.4575278 ], + [ 7.5461727, 47.457279 ], + [ 7.5460276, 47.457752 ], + [ 7.5460378, 47.4577929 ], + [ 7.545991, 47.45786 ], + [ 7.5459602, 47.4579117 ], + [ 7.5458074, 47.458025 ], + [ 7.5458144, 47.4582008 ], + [ 7.5458001, 47.4585795 ], + [ 7.5457985, 47.458712 ], + [ 7.5460441, 47.4588648 ], + [ 7.5460515, 47.4588689 ], + [ 7.546261, 47.4589296 ], + [ 7.5463316, 47.4589587 ], + [ 7.5463725, 47.4589707 ], + [ 7.5465397, 47.4590448 ], + [ 7.5466864000000005, 47.4591055 ], + [ 7.5468668, 47.4591733 ], + [ 7.5473161, 47.4593612 ], + [ 7.5475747, 47.459525 ], + [ 7.5473129, 47.4597446 ], + [ 7.547398, 47.4597693 ], + [ 7.5476794, 47.4598413 ], + [ 7.5482521, 47.4598407 ], + [ 7.548532, 47.4598789 ], + [ 7.5487265, 47.4598986 ], + [ 7.5489217, 47.4599321 ], + [ 7.5489957, 47.4599422 ], + [ 7.549771, 47.4600738 ], + [ 7.55164, 47.4602083 ], + [ 7.5532577, 47.4602953 ], + [ 7.5536497, 47.4603699 ], + [ 7.5537498, 47.4602335 ], + [ 7.553599, 47.460186 ], + [ 7.5526138, 47.4598871 ], + [ 7.5521815, 47.4597445 ], + [ 7.5517192, 47.4596632 ], + [ 7.5508751, 47.4595686 ], + [ 7.5506639, 47.4594666 ], + [ 7.5504928, 47.45931 ], + [ 7.5503919, 47.4590853 ], + [ 7.5512942, 47.4588791 ], + [ 7.5521074, 47.4586057 ], + [ 7.5538233, 47.4580094 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr028", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Blatte", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Blatte", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Blatte", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Blatte", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.1622969, 46.8032871 ], + [ 7.1637795, 46.8040773 ], + [ 7.1644046, 46.8041811 ], + [ 7.1648234, 46.804073 ], + [ 7.1656196, 46.8035978 ], + [ 7.1662062, 46.8031794 ], + [ 7.1671904, 46.8024846 ], + [ 7.1666648, 46.8009181 ], + [ 7.1628948, 46.8015136 ], + [ 7.1627453, 46.8029777 ], + [ 7.1622969, 46.8032871 ] + ] + ], + "layer" : { + "upper" : 300, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "FR001", + "country" : "CHE", + "name" : [ + { + "text" : "Etablissement pénitentiaire \"Prison centrale\" et Maison \"Les Falaises\"", + "lang" : "de-CH" + }, + { + "text" : "Etablissement pénitentiaire \"Prison centrale\" et Maison \"Les Falaises\"", + "lang" : "fr-CH" + }, + { + "text" : "Etablissement pénitentiaire \"Prison centrale\" et Maison \"Les Falaises\"", + "lang" : "it-CH" + }, + { + "text" : "Etablissement pénitentiaire \"Prison centrale\" et Maison \"Les Falaises\"", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Freiburger Strafanstalt (FRSA)", + "lang" : "de-CH" + }, + { + "text" : "Etablissement de détention fribourgeois (EDFR)", + "lang" : "fr-CH" + }, + { + "text" : "Etablissement de détention fribourgeois (EDFR)", + "lang" : "it-CH" + }, + { + "text" : "Etablissement de détention fribourgeois (EDFR)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Direktor", + "lang" : "de-CH" + }, + { + "text" : "Directeur", + "lang" : "fr-CH" + }, + { + "text" : "Directeur", + "lang" : "it-CH" + }, + { + "text" : "Directeur", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Guido Sturny", + "lang" : "de-CH" + }, + { + "text" : "Guido Sturny", + "lang" : "fr-CH" + }, + { + "text" : "Guido Sturny", + "lang" : "it-CH" + }, + { + "text" : "Guido Sturny", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.fr.ch/police-et-securite/criminalite-ordre-public-et-circulation/drones-legislation-et-demandes-de-derogation", + "email" : "edfr-eb_Bellechasse@fr.ch", + "phone" : "0041263041010", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 9.382897700000001, 46.8113075 ], + [ 9.3828872, 46.8111664 ], + [ 9.382866, 46.8110259 ], + [ 9.3828341, 46.8108863 ], + [ 9.382791600000001, 46.810748 ], + [ 9.3827386, 46.8106115 ], + [ 9.3826753, 46.8104771 ], + [ 9.3826018, 46.8103451 ], + [ 9.3825184, 46.810216 ], + [ 9.3824252, 46.81009 ], + [ 9.3823226, 46.8099676 ], + [ 9.3822107, 46.809849 ], + [ 9.38209, 46.8097345 ], + [ 9.3819608, 46.8096246 ], + [ 9.3818233, 46.8095195 ], + [ 9.381678, 46.8094194 ], + [ 9.3815252, 46.8093248 ], + [ 9.3813655, 46.8092357 ], + [ 9.3811992, 46.8091525 ], + [ 9.3810268, 46.8090754 ], + [ 9.3808487, 46.8090046 ], + [ 9.3806655, 46.8089402 ], + [ 9.3804777, 46.8088826 ], + [ 9.3802857, 46.8088318 ], + [ 9.38009, 46.8087879 ], + [ 9.3798914, 46.8087512 ], + [ 9.3796902, 46.8087216 ], + [ 9.379487, 46.8086993 ], + [ 9.3792823, 46.8086843 ], + [ 9.3790769, 46.8086767 ], + [ 9.3788711, 46.8086765 ], + [ 9.3786656, 46.8086837 ], + [ 9.3784609, 46.8086983 ], + [ 9.3782576, 46.8087202 ], + [ 9.3780563, 46.8087493 ], + [ 9.3778574, 46.8087857 ], + [ 9.3776617, 46.8088292 ], + [ 9.3774694, 46.8088796 ], + [ 9.3772813, 46.8089369 ], + [ 9.3770979, 46.8090008 ], + [ 9.3769195, 46.8090713 ], + [ 9.3767468, 46.8091481 ], + [ 9.3765801, 46.8092309 ], + [ 9.37642, 46.8093197 ], + [ 9.3762669, 46.8094141 ], + [ 9.3761212, 46.8095138 ], + [ 9.3759832, 46.8096187 ], + [ 9.3758535, 46.8097283 ], + [ 9.3757323, 46.8098425 ], + [ 9.37562, 46.8099609 ], + [ 9.3755168, 46.8100831 ], + [ 9.3754231, 46.8102089 ], + [ 9.3753391, 46.8103379 ], + [ 9.3752651, 46.8104697 ], + [ 9.3752012, 46.810604 ], + [ 9.3751477, 46.8107405 ], + [ 9.3751046, 46.8108786 ], + [ 9.3750721, 46.8110181 ], + [ 9.3750503, 46.8111586 ], + [ 9.3750392, 46.8112997 ], + [ 9.3750389, 46.811441 ], + [ 9.3750493, 46.8115821 ], + [ 9.3750705, 46.8117226 ], + [ 9.3751024, 46.8118622 ], + [ 9.3751449, 46.8120004 ], + [ 9.3751979, 46.8121369 ], + [ 9.3752612, 46.8122714 ], + [ 9.3753347, 46.8124033 ], + [ 9.3754181, 46.8125325 ], + [ 9.3755112, 46.8126585 ], + [ 9.3756138, 46.8127809 ], + [ 9.3757257, 46.8128995 ], + [ 9.3758464, 46.813014 ], + [ 9.3759757, 46.8131239 ], + [ 9.3761131, 46.813229 ], + [ 9.3762584, 46.8133291 ], + [ 9.3764112, 46.8134238 ], + [ 9.3765709, 46.8135128 ], + [ 9.3767372, 46.8135961 ], + [ 9.3769096, 46.8136732 ], + [ 9.3770877, 46.813744 ], + [ 9.3772709, 46.8138083 ], + [ 9.3774588, 46.813866 ], + [ 9.3776508, 46.8139168 ], + [ 9.3778464, 46.8139607 ], + [ 9.3780451, 46.8139974 ], + [ 9.3782464, 46.814027 ], + [ 9.3784496, 46.8140493 ], + [ 9.3786542, 46.8140643 ], + [ 9.3788597, 46.8140719 ], + [ 9.3790655, 46.8140721 ], + [ 9.379271, 46.8140649 ], + [ 9.3794757, 46.8140503 ], + [ 9.379679, 46.8140284 ], + [ 9.3798804, 46.8139992 ], + [ 9.3800793, 46.8139629 ], + [ 9.3802751, 46.8139194 ], + [ 9.3804673, 46.813869 ], + [ 9.3806554, 46.8138117 ], + [ 9.3808389, 46.8137477 ], + [ 9.3810173, 46.8136773 ], + [ 9.38119, 46.8136005 ], + [ 9.3813567, 46.8135176 ], + [ 9.3815168, 46.8134288 ], + [ 9.3816699, 46.8133344 ], + [ 9.3818156, 46.8132347 ], + [ 9.3819536, 46.8131298 ], + [ 9.3820833, 46.8130202 ], + [ 9.3822045, 46.812906 ], + [ 9.3823168, 46.8127876 ], + [ 9.38242, 46.8126653 ], + [ 9.3825136, 46.8125395 ], + [ 9.3825976, 46.8124106 ], + [ 9.3826716, 46.8122787 ], + [ 9.3827355, 46.8121444 ], + [ 9.382789, 46.812008 ], + [ 9.3828321, 46.8118699 ], + [ 9.3828646, 46.8117303 ], + [ 9.3828864, 46.8115899 ], + [ 9.3828974, 46.8114488 ], + [ 9.382897700000001, 46.8113075 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0018", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Bonaduz", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Bonaduz", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Bonaduz", + "lang" : "it-CH" + }, + { + "text" : "Substation Bonaduz", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.5046710999999995, 47.3897976 ], + [ 7.5045733, 47.3898641 ], + [ 7.5047894, 47.389892 ], + [ 7.5051056, 47.3898499 ], + [ 7.5052193, 47.3898574 ], + [ 7.5053882, 47.3900107 ], + [ 7.5054634, 47.3900067 ], + [ 7.5054329, 47.3898358 ], + [ 7.5056595, 47.3898162 ], + [ 7.5059864, 47.3898043 ], + [ 7.505983, 47.3897763 ], + [ 7.5059823, 47.389771 ], + [ 7.5059812, 47.389762 ], + [ 7.5058708, 47.3896122 ], + [ 7.5056929, 47.3895287 ], + [ 7.5053878, 47.3894493 ], + [ 7.5051688, 47.3894472 ], + [ 7.5049691, 47.3893964 ], + [ 7.5048743, 47.3892634 ], + [ 7.5047745, 47.3891803 ], + [ 7.5046853, 47.389106 ], + [ 7.5043823, 47.3892059 ], + [ 7.5041257, 47.3893168 ], + [ 7.5039656, 47.3893776 ], + [ 7.5037217, 47.3893161 ], + [ 7.5034334000000005, 47.3893064 ], + [ 7.5033102, 47.3892979 ], + [ 7.5031367, 47.3893331 ], + [ 7.5031492, 47.3893782 ], + [ 7.5031505, 47.3893829 ], + [ 7.5031531000000005, 47.389392 ], + [ 7.5033973, 47.3893992 ], + [ 7.5034469999999995, 47.3895032 ], + [ 7.5036886, 47.3895162 ], + [ 7.5039177, 47.3896428 ], + [ 7.504024, 47.3896773 ], + [ 7.5041334, 47.3896266 ], + [ 7.5044, 47.3897103 ], + [ 7.5046146, 47.3897079 ], + [ 7.5046710999999995, 47.3897976 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns144", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Stürmen - Eggfels - Bännli", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Stürmen - Eggfels - Bännli", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Stürmen - Eggfels - Bännli", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Stürmen - Eggfels - Bännli", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.9209092, 46.3775808 ], + [ 6.9206541999999995, 46.3775854 ], + [ 6.9204001, 46.3776015 ], + [ 6.9201481, 46.3776291 ], + [ 6.9198992, 46.3776681 ], + [ 6.9196545, 46.3777182 ], + [ 6.9194151, 46.3777793 ], + [ 6.919182, 46.3778512 ], + [ 6.9189562, 46.3779334 ], + [ 6.9187386, 46.3780256 ], + [ 6.9185303, 46.3781275 ], + [ 6.9183319999999995, 46.3782387 ], + [ 6.9181446, 46.3783585 ], + [ 6.9179689, 46.3784866 ], + [ 6.9178057, 46.3786224 ], + [ 6.9176557, 46.3787652 ], + [ 6.9175195, 46.3789146 ], + [ 6.9173978, 46.3790697 ], + [ 6.9172909, 46.3792301 ], + [ 6.9171994, 46.379395 ], + [ 6.9171237, 46.3795636 ], + [ 6.9170641, 46.3797353 ], + [ 6.9170209, 46.3799094 ], + [ 6.9169941999999995, 46.380085 ], + [ 6.9169846, 46.3802331 ], + [ 6.9169813, 46.3803687 ], + [ 6.9169874, 46.3805737 ], + [ 6.9170107, 46.3807495 ], + [ 6.9170506, 46.3809239 ], + [ 6.9171069, 46.3810962 ], + [ 6.9171794, 46.3812655 ], + [ 6.9172677, 46.3814312 ], + [ 6.9173714, 46.3815925 ], + [ 6.9174902, 46.3817488 ], + [ 6.9176234999999995, 46.3818994 ], + [ 6.9177707999999996, 46.3820436 ], + [ 6.9179313, 46.3821809 ], + [ 6.9181045, 46.3823106 ], + [ 6.9182896, 46.3824322 ], + [ 6.9184858, 46.3825451 ], + [ 6.9186922, 46.3826489 ], + [ 6.918908, 46.3827432 ], + [ 6.9191322, 46.3828275 ], + [ 6.919364, 46.3829014 ], + [ 6.9196022, 46.3829647 ], + [ 6.9198459, 46.3830171 ], + [ 6.920094, 46.3830583 ], + [ 6.9203455, 46.3830882 ], + [ 6.9205993, 46.3831067 ], + [ 6.9208269, 46.3831135 ], + [ 6.921415, 46.383119 ], + [ 6.9216974, 46.3831146 ], + [ 6.9219515, 46.3830985 ], + [ 6.9222036, 46.3830708 ], + [ 6.9224525, 46.3830319 ], + [ 6.9226972, 46.3829817 ], + [ 6.9229366, 46.3829206 ], + [ 6.9231697, 46.3828488 ], + [ 6.9233955, 46.3827666 ], + [ 6.9236131, 46.3826743 ], + [ 6.9238215, 46.3825724 ], + [ 6.9240198, 46.3824612 ], + [ 6.9242072, 46.3823414 ], + [ 6.9243829, 46.3822133 ], + [ 6.9245461, 46.3820775 ], + [ 6.924696, 46.3819346 ], + [ 6.9248322, 46.3817853 ], + [ 6.924954, 46.3816301 ], + [ 6.9250608, 46.3814697 ], + [ 6.9251523, 46.3813049 ], + [ 6.9252279, 46.3811362 ], + [ 6.9252875, 46.3809645 ], + [ 6.9253307, 46.3807904 ], + [ 6.9253574, 46.3806148 ], + [ 6.9253674, 46.3804383 ], + [ 6.9253687, 46.3803027 ], + [ 6.925362, 46.3801262 ], + [ 6.9253387, 46.3799503 ], + [ 6.9252988, 46.3797759 ], + [ 6.9252424999999995, 46.3796036 ], + [ 6.92517, 46.3794343 ], + [ 6.9250817, 46.3792686 ], + [ 6.9249779, 46.3791073 ], + [ 6.9248591, 46.378951 ], + [ 6.9247258, 46.3788004 ], + [ 6.9245785, 46.3786562 ], + [ 6.924418, 46.378519 ], + [ 6.9242448, 46.3783893 ], + [ 6.9240597, 46.3782677 ], + [ 6.9238634999999995, 46.3781548 ], + [ 6.9236571, 46.378051 ], + [ 6.9234413, 46.3779567 ], + [ 6.9232171000000005, 46.3778725 ], + [ 6.9229853, 46.3777985 ], + [ 6.9227471, 46.3777352 ], + [ 6.9225034999999995, 46.3776829 ], + [ 6.9222554, 46.3776416 ], + [ 6.9220039, 46.3776117 ], + [ 6.9217501, 46.3775932 ], + [ 6.9215226, 46.3775865 ], + [ 6.9209367, 46.3775809 ], + [ 6.9209092, 46.3775808 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "VD00046", + "country" : "CHE", + "name" : [ + { + "text" : "HRC site de Rennaz", + "lang" : "de-CH" + }, + { + "text" : "HRC site de Rennaz", + "lang" : "fr-CH" + }, + { + "text" : "HRC site de Rennaz", + "lang" : "it-CH" + }, + { + "text" : "HRC site de Rennaz", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kantonspolizei Waadt", + "lang" : "de-CH" + }, + { + "text" : "Police cantonale vaudoise", + "lang" : "fr-CH" + }, + { + "text" : "Polizia cantonale di Vaud", + "lang" : "it-CH" + }, + { + "text" : "Vaud Cantonal Police", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/themes/securite/drones", + "email" : "info.pcv@vd.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.9365742, 46.8573956 ], + [ 6.9317338, 46.8539235 ], + [ 6.9323365, 46.8451978 ], + [ 6.9262221, 46.8403435 ], + [ 6.9227208000000005, 46.8430408 ], + [ 6.9194153, 46.8405124 ], + [ 6.9172563, 46.8421164 ], + [ 6.9126937, 46.8383965 ], + [ 6.9113361, 46.838876 ], + [ 6.9107787, 46.8383742 ], + [ 6.9104434999999995, 46.8386011 ], + [ 6.9073224, 46.8343299 ], + [ 6.9069844, 46.8286016 ], + [ 6.9063400999999995, 46.8284133 ], + [ 6.9013548, 46.8317606 ], + [ 6.8996742, 46.8291529 ], + [ 6.8969821, 46.8300541 ], + [ 6.8938477, 46.8312536 ], + [ 6.8953852, 46.8336025 ], + [ 6.8968101, 46.8346519 ], + [ 6.8980958, 46.8352014 ], + [ 6.8977796, 46.8354851 ], + [ 6.8982363, 46.8357013 ], + [ 6.897431, 46.8370541 ], + [ 6.8967067, 46.8367223 ], + [ 6.895991, 46.8375042 ], + [ 6.8968622, 46.8378232 ], + [ 6.8999153, 46.8404653 ], + [ 6.9017519, 46.8412656 ], + [ 6.9048027, 46.8382061 ], + [ 6.9157203, 46.8447622 ], + [ 6.9140142, 46.845886 ], + [ 6.9153373, 46.846807 ], + [ 6.9142671, 46.8473886 ], + [ 6.9145224, 46.848229 ], + [ 6.913372, 46.8484207 ], + [ 6.9134607, 46.8488727 ], + [ 6.9160094, 46.8487513 ], + [ 6.9165235, 46.8500886 ], + [ 6.9174475, 46.8505363 ], + [ 6.9194807, 46.8514046 ], + [ 6.9179827, 46.852686 ], + [ 6.9146148, 46.8526157 ], + [ 6.9143983, 46.8535718 ], + [ 6.9199336, 46.8536538 ], + [ 6.9208564, 46.8530157 ], + [ 6.9252177, 46.8541067 ], + [ 6.9242636, 46.8558305 ], + [ 6.9261963, 46.8562674 ], + [ 6.9271908, 46.8545581 ], + [ 6.9289141, 46.8549374 ], + [ 6.9293978, 46.8545392 ], + [ 6.9310309, 46.8557321 ], + [ 6.9314314, 46.8544277 ], + [ 6.9345546, 46.856419700000004 ], + [ 6.9334302, 46.8573277 ], + [ 6.9351056, 46.8585064 ], + [ 6.9365742, 46.8573956 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSMP003", + "country" : "CHE", + "name" : [ + { + "text" : "LSMP Payerne Mil (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSMP Payerne Mil (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSMP Payerne Mil (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSMP Payerne Mil (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Skyguide Special Flight Office", + "lang" : "de-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "it-CH" + }, + { + "text" : "Skyguide Special Flight Office", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.skyguide.ch/services/special-flights", + "email" : "specialflight@skyguide.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.5683404, 46.7353257 ], + [ 6.5683373, 46.7351844 ], + [ 6.5683234, 46.7350435 ], + [ 6.5682988, 46.7349032 ], + [ 6.5682636, 46.734764 ], + [ 6.5682179, 46.7346263 ], + [ 6.5681617, 46.7344904 ], + [ 6.5680952999999995, 46.7343567 ], + [ 6.5680188, 46.7342255 ], + [ 6.5679324, 46.7340973 ], + [ 6.5678363, 46.7339724 ], + [ 6.5677309, 46.7338512 ], + [ 6.5676164, 46.7337338 ], + [ 6.5674931, 46.7336208 ], + [ 6.5673614, 46.7335123 ], + [ 6.5672216, 46.7334088 ], + [ 6.5670742, 46.7333104 ], + [ 6.5669194, 46.7332175 ], + [ 6.5667577999999995, 46.7331302 ], + [ 6.5665897, 46.7330489 ], + [ 6.5664157, 46.7329737 ], + [ 6.5662362, 46.7329049 ], + [ 6.5660518, 46.7328427 ], + [ 6.5658628, 46.7327872 ], + [ 6.5656699, 46.732738499999996 ], + [ 6.5654734999999995, 46.7326969 ], + [ 6.5652743000000005, 46.7326624 ], + [ 6.5650727, 46.7326351 ], + [ 6.5648693, 46.7326151 ], + [ 6.5646646, 46.7326024 ], + [ 6.5644593, 46.7325971 ], + [ 6.5642538, 46.7325993 ], + [ 6.5640488, 46.7326088 ], + [ 6.5638448, 46.7326257 ], + [ 6.5636423, 46.7326499 ], + [ 6.563442, 46.7326813 ], + [ 6.5632443, 46.7327199 ], + [ 6.5630499, 46.7327656 ], + [ 6.5628592, 46.7328182 ], + [ 6.5626727, 46.7328776 ], + [ 6.5624911, 46.7329436 ], + [ 6.5623147, 46.7330161 ], + [ 6.562144, 46.7330948 ], + [ 6.5619796, 46.7331795 ], + [ 6.5618219, 46.7332701 ], + [ 6.5616713, 46.7333662 ], + [ 6.5615281, 46.7334676 ], + [ 6.561393, 46.733574 ], + [ 6.561266, 46.7336851 ], + [ 6.5611478, 46.7338006 ], + [ 6.5610384, 46.7339203 ], + [ 6.5609383999999995, 46.7340437 ], + [ 6.5608478, 46.7341705 ], + [ 6.5607671, 46.7343004 ], + [ 6.5606963, 46.7344331 ], + [ 6.5606358, 46.7345681 ], + [ 6.5605856, 46.7347051 ], + [ 6.5605459, 46.7348437 ], + [ 6.5605167, 46.7349836 ], + [ 6.5604983, 46.7351243 ], + [ 6.5604907, 46.7352655 ], + [ 6.5604937, 46.7354067 ], + [ 6.5605076, 46.7355477 ], + [ 6.5605321, 46.735688 ], + [ 6.5605673, 46.7358272 ], + [ 6.560613, 46.7359649 ], + [ 6.5606691999999995, 46.7361008 ], + [ 6.5607356, 46.7362345 ], + [ 6.5608121, 46.7363657 ], + [ 6.5608985, 46.7364939 ], + [ 6.5609945, 46.7366188 ], + [ 6.5610999, 46.7367401 ], + [ 6.5612144, 46.7368574 ], + [ 6.5613377, 46.7369704 ], + [ 6.5614694, 46.7370789 ], + [ 6.5616091999999995, 46.7371825 ], + [ 6.5617566, 46.7372808 ], + [ 6.5619114, 46.7373738 ], + [ 6.562073, 46.7374611 ], + [ 6.5622411, 46.7375424 ], + [ 6.5624151, 46.7376176 ], + [ 6.5625946, 46.7376864 ], + [ 6.5627791, 46.7377486 ], + [ 6.562968, 46.7378041 ], + [ 6.563161, 46.7378528 ], + [ 6.5633574, 46.7378944 ], + [ 6.5635566, 46.7379289 ], + [ 6.5637583, 46.7379562 ], + [ 6.5639617, 46.7379762 ], + [ 6.5641663999999995, 46.7379889 ], + [ 6.5643717, 46.7379942 ], + [ 6.5645772000000004, 46.737992 ], + [ 6.5647823, 46.7379825 ], + [ 6.5649863, 46.7379656 ], + [ 6.5651887, 46.7379415 ], + [ 6.5653891, 46.73791 ], + [ 6.5655868, 46.7378714 ], + [ 6.5657812, 46.7378257 ], + [ 6.565972, 46.7377731 ], + [ 6.5661584, 46.7377137 ], + [ 6.5663401, 46.7376477 ], + [ 6.5665165, 46.7375752 ], + [ 6.5666872, 46.7374965 ], + [ 6.5668516, 46.7374117 ], + [ 6.5670093, 46.7373212 ], + [ 6.5671599, 46.7372251 ], + [ 6.567303, 46.7371237 ], + [ 6.5674382, 46.7370172 ], + [ 6.5675650999999995, 46.7369061 ], + [ 6.5676834, 46.7367906 ], + [ 6.5677927, 46.7366709 ], + [ 6.5678928, 46.7365475 ], + [ 6.5679833, 46.7364207 ], + [ 6.568064, 46.7362908 ], + [ 6.5681348, 46.7361581 ], + [ 6.5681953, 46.7360231 ], + [ 6.5682455, 46.7358861 ], + [ 6.5682852, 46.7357475 ], + [ 6.5683143, 46.7356076 ], + [ 6.5683327, 46.7354669 ], + [ 6.5683404, 46.7353257 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "MAP0001", + "country" : "CHE", + "name" : [ + { + "text" : "Prison de la Croisée", + "lang" : "de-CH" + }, + { + "text" : "Prison de la Croisée", + "lang" : "fr-CH" + }, + { + "text" : "Prison de la Croisée", + "lang" : "it-CH" + }, + { + "text" : "Prison de la Croisée", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Direction du Service pénitentiaire Vaud", + "lang" : "de-CH" + }, + { + "text" : "Direction du Service pénitentiaire Vaud", + "lang" : "fr-CH" + }, + { + "text" : "Direction du Service pénitentiaire Vaud", + "lang" : "it-CH" + }, + { + "text" : "Direction du Service pénitentiaire Vaud", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.vd.ch/toutes-les-autorites/departements/departement-de-la-jeunesse-de-lenvironnement-et-de-la-securite-djes/service-penitentiaire-spen/", + "email" : "info.spen@vd.ch", + "phone" : "0041213164801", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.7676395, 47.4256292 ], + [ 7.7678453, 47.4261896 ], + [ 7.7679976, 47.4265535 ], + [ 7.7681179, 47.4268481 ], + [ 7.7689266, 47.4267503 ], + [ 7.7699309, 47.4265782 ], + [ 7.7699151, 47.4265409 ], + [ 7.769903, 47.426503 ], + [ 7.7698984, 47.4264844 ], + [ 7.769875, 47.4264272 ], + [ 7.7698302, 47.4263713 ], + [ 7.7697951, 47.4263419 ], + [ 7.7697121, 47.4263666 ], + [ 7.7696203, 47.4261971 ], + [ 7.7695317, 47.4261077 ], + [ 7.7694568, 47.4259664 ], + [ 7.7694023, 47.4257917 ], + [ 7.7693563999999995, 47.4256622 ], + [ 7.769334, 47.4256037 ], + [ 7.7693069, 47.4255609 ], + [ 7.7692507, 47.4254723 ], + [ 7.7691578, 47.4253081 ], + [ 7.7690409, 47.4251691 ], + [ 7.7690109, 47.4251152 ], + [ 7.7688941, 47.424905 ], + [ 7.7690064, 47.4248687 ], + [ 7.7690012, 47.424812 ], + [ 7.7688768, 47.4247224 ], + [ 7.768797, 47.4245934 ], + [ 7.7688006, 47.4245191 ], + [ 7.7688328, 47.4244401 ], + [ 7.7687817, 47.4244529 ], + [ 7.7685714, 47.424506 ], + [ 7.7683658, 47.4242304 ], + [ 7.7679815, 47.4240413 ], + [ 7.767972, 47.4240057 ], + [ 7.7675576, 47.424204 ], + [ 7.7671215, 47.4242988 ], + [ 7.767222, 47.4244974 ], + [ 7.7674399, 47.4247663 ], + [ 7.7675118, 47.4249822 ], + [ 7.7676029, 47.4252566 ], + [ 7.7676395, 47.4256292 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr063", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Gugen", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Gugen", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Gugen", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Gugen", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6035547999999995, 47.585474 ], + [ 7.603466, 47.584948 ], + [ 7.602891, 47.5826262 ], + [ 7.6021372, 47.5803278 ], + [ 7.6012068, 47.5780593 ], + [ 7.6001022, 47.5758268 ], + [ 7.5988266, 47.5736365 ], + [ 7.5973834, 47.5714944 ], + [ 7.5957767, 47.5694062 ], + [ 7.5940109, 47.5673778 ], + [ 7.5920907, 47.5654148 ], + [ 7.5900216, 47.5635223 ], + [ 7.5882632, 47.5620786 ], + [ 7.5865062, 47.5602711 ], + [ 7.584445, 47.5583748 ], + [ 7.5822403, 47.556554 ], + [ 7.5798979, 47.5548138 ], + [ 7.5774244, 47.5531589 ], + [ 7.5748265, 47.5515938 ], + [ 7.5721112999999995, 47.5501229 ], + [ 7.5692862, 47.5487501 ], + [ 7.5663591, 47.5474793 ], + [ 7.5633378, 47.5463138 ], + [ 7.5602308, 47.5452569 ], + [ 7.5570464, 47.5443114 ], + [ 7.5537934, 47.54348 ], + [ 7.5504807, 47.5427649 ], + [ 7.5471173, 47.5421681 ], + [ 7.5437125, 47.5416912 ], + [ 7.5402755, 47.5413355 ], + [ 7.5368158, 47.541102 ], + [ 7.5333428, 47.5409913 ], + [ 7.529866, 47.5410038 ], + [ 7.5263949, 47.5411393 ], + [ 7.522939, 47.5413976 ], + [ 7.5195077999999995, 47.5417778 ], + [ 7.5161106, 47.5422791 ], + [ 7.5127567, 47.5428999 ], + [ 7.5117438, 47.5431266 ], + [ 7.5111928, 47.5431491 ], + [ 7.5077378, 47.5434133 ], + [ 7.5046783999999995, 47.5437578 ], + [ 7.5048821, 47.5438243 ], + [ 7.504948, 47.5438571 ], + [ 7.5050801, 47.5439694 ], + [ 7.5050258, 47.5440034 ], + [ 7.5050278, 47.5440483 ], + [ 7.5051053, 47.5440953 ], + [ 7.5052672000000005, 47.544203 ], + [ 7.5053425, 47.5442226 ], + [ 7.5053928, 47.5442426 ], + [ 7.5053855, 47.5443286 ], + [ 7.5054605, 47.5443873 ], + [ 7.5055635, 47.5443979 ], + [ 7.5056503, 47.5444397 ], + [ 7.5056907, 47.5444654 ], + [ 7.5059367, 47.5445162 ], + [ 7.5059769, 47.5445811 ], + [ 7.5060364, 47.544639 ], + [ 7.5062639, 47.5447319 ], + [ 7.5064136, 47.5447663 ], + [ 7.5066118, 47.5447973 ], + [ 7.5067196, 47.5447875 ], + [ 7.506989, 47.5448056 ], + [ 7.5070392, 47.5448603 ], + [ 7.5071962, 47.5449345 ], + [ 7.5073256, 47.5449818 ], + [ 7.5074183, 47.5450402 ], + [ 7.5075017, 47.5450526 ], + [ 7.5075426, 47.5449798 ], + [ 7.5075484, 47.5449337 ], + [ 7.5076015, 47.5449183 ], + [ 7.5076368, 47.5448925 ], + [ 7.5077004, 47.5448773 ], + [ 7.5079065, 47.5448886 ], + [ 7.5079975999999995, 47.5449786 ], + [ 7.5080825, 47.5450297 ], + [ 7.5082074, 47.5450502 ], + [ 7.5082643000000004, 47.5450495 ], + [ 7.5083513, 47.5450615 ], + [ 7.5085065, 47.5450544 ], + [ 7.5085568, 47.545061 ], + [ 7.5086434, 47.5451174 ], + [ 7.5087015, 47.5451805 ], + [ 7.508709, 47.5452058 ], + [ 7.5087503, 47.5452418 ], + [ 7.5089778, 47.5452771 ], + [ 7.5090326, 47.5452916 ], + [ 7.5090908, 47.5453268 ], + [ 7.5092219, 47.5454622 ], + [ 7.5092327, 47.5455137 ], + [ 7.5092267, 47.5455862 ], + [ 7.5092322, 47.5456117 ], + [ 7.5092812, 47.5457085 ], + [ 7.5092780999999995, 47.5457304 ], + [ 7.5093461999999995, 47.5458394 ], + [ 7.5098338, 47.5453869 ], + [ 7.5109814, 47.5445121 ], + [ 7.5113059, 47.544566 ], + [ 7.5140095, 47.5450522 ], + [ 7.5167641, 47.5454136 ], + [ 7.5188629, 47.5463403 ], + [ 7.5222681, 47.5487063 ], + [ 7.5219049, 47.548927 ], + [ 7.5254286, 47.5509147 ], + [ 7.5247977, 47.5514779 ], + [ 7.5273233, 47.5527843 ], + [ 7.52962, 47.5536976 ], + [ 7.5307908, 47.5540596 ], + [ 7.5307094, 47.5542033 ], + [ 7.5331226000000004, 47.5547059 ], + [ 7.5342618, 47.5549432 ], + [ 7.5350106, 47.555113 ], + [ 7.5365298, 47.5554575 ], + [ 7.5379603, 47.5566494 ], + [ 7.539491, 47.5580031 ], + [ 7.5403671, 47.5572774 ], + [ 7.5438097, 47.5595871 ], + [ 7.5468618, 47.5614991 ], + [ 7.5496966, 47.5624241 ], + [ 7.5546595, 47.5643666 ], + [ 7.5572997, 47.5650307 ], + [ 7.5582650000000005, 47.5672471 ], + [ 7.5593353, 47.5693894 ], + [ 7.5564642, 47.5713871 ], + [ 7.5568956, 47.5724659 ], + [ 7.5624082, 47.5748755 ], + [ 7.5654375, 47.5762202 ], + [ 7.5664902, 47.5776694 ], + [ 7.5690791, 47.5774147 ], + [ 7.5716147, 47.5771124 ], + [ 7.5752538, 47.5761401 ], + [ 7.5764032, 47.576454 ], + [ 7.5788585, 47.5766687 ], + [ 7.5807642, 47.5762962 ], + [ 7.5846599, 47.5755212 ], + [ 7.5843971, 47.5785818 ], + [ 7.5847394, 47.5808568 ], + [ 7.5857254, 47.5840902 ], + [ 7.5869704, 47.5865515 ], + [ 7.5882543, 47.588521 ], + [ 7.5890451, 47.5899018 ], + [ 7.5931714, 47.5889797 ], + [ 7.5984685, 47.5876436 ], + [ 7.6019749999999995, 47.586146 ], + [ 7.6035547999999995, 47.585474 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LFSB001", + "country" : "CHE", + "name" : [ + { + "text" : "LFSB Basel-Mulhouse", + "lang" : "de-CH" + }, + { + "text" : "LFSB Basel-Mulhouse", + "lang" : "fr-CH" + }, + { + "text" : "LFSB Basel-Mulhouse", + "lang" : "it-CH" + }, + { + "text" : "LFSB Basel-Mulhouse", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Direction générale de l'aviation civile (DGAC)", + "lang" : "de-CH" + }, + { + "text" : "Direction générale de l'aviation civile (DGAC)", + "lang" : "fr-CH" + }, + { + "text" : "Direction générale de l'aviation civile (DGAC)", + "lang" : "it-CH" + }, + { + "text" : "French Civil Aviation Authority (DGAC)", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "DGAC SUBDIVISION CONTRÔLE Bâle-Mulhouse", + "lang" : "de-CH" + }, + { + "text" : "DGAC SUBDIVISION CONTRÔLE Bâle-Mulhouse", + "lang" : "fr-CH" + }, + { + "text" : "DGAC SUBDIVISION CONTRÔLE Bâle-Mulhouse", + "lang" : "it-CH" + }, + { + "text" : "DGAC ATC OPERATIONS UNIT Bâle-Mulhouse", + "lang" : "en-GB" + } + ], + "siteURL" : "https://app.clearance.aero", + "email" : "bale.atm-procedures@aviation-civile.gouv.fr", + "phone" : "0033389907875", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.7772847, 46.9026086 ], + [ 6.7773792, 46.9026134 ], + [ 6.7776217, 46.9026331 ], + [ 6.7778776, 46.9026194 ], + [ 6.7781247, 46.9025718 ], + [ 6.7783535, 46.9024922 ], + [ 6.7785459, 46.9024081 ], + [ 6.7787422, 46.902303 ], + [ 6.7789061, 46.9021744 ], + [ 6.7789726, 46.9020963 ], + [ 6.7789819, 46.9020888 ], + [ 6.7791075, 46.9019344 ], + [ 6.7791866, 46.9017662 ], + [ 6.7792162, 46.9015905 ], + [ 6.7792004, 46.9014588 ], + [ 6.7792008, 46.9014564 ], + [ 6.7791866, 46.9012863 ], + [ 6.7791258, 46.9011212 ], + [ 6.7791229, 46.9011156 ], + [ 6.7790188, 46.9009624 ], + [ 6.7789911, 46.90093 ], + [ 6.7789588, 46.9008942 ], + [ 6.7788174, 46.9007452 ], + [ 6.778656, 46.9006072 ], + [ 6.7784584, 46.9004934 ], + [ 6.7782321, 46.9004084 ], + [ 6.778066, 46.9003726 ], + [ 6.7780003, 46.9003474 ], + [ 6.7779985, 46.900347 ], + [ 6.7779503, 46.9003081 ], + [ 6.7777539, 46.9002004 ], + [ 6.7775312, 46.9001204 ], + [ 6.7772903, 46.9000709 ], + [ 6.77704, 46.9000539 ], + [ 6.7767896, 46.9000699 ], + [ 6.7765483, 46.9001184 ], + [ 6.7765052, 46.9001336 ], + [ 6.7763846, 46.900159 ], + [ 6.7763536, 46.9001702 ], + [ 6.7761229, 46.900217 ], + [ 6.7759043, 46.9002942 ], + [ 6.7757654, 46.9003552 ], + [ 6.7757164, 46.9003778 ], + [ 6.775622, 46.9004235 ], + [ 6.775429, 46.9005376 ], + [ 6.7752718, 46.9006752 ], + [ 6.7751564, 46.900831 ], + [ 6.7750872, 46.9009991 ], + [ 6.7750666, 46.901173299999996 ], + [ 6.7750956, 46.9013469 ], + [ 6.775173, 46.9015134 ], + [ 6.7752959, 46.9016665 ], + [ 6.775672, 46.902043 ], + [ 6.7756945, 46.9020863 ], + [ 6.7758237, 46.9022352 ], + [ 6.7759921, 46.9023644 ], + [ 6.7761936, 46.9024691 ], + [ 6.7764205, 46.9025454 ], + [ 6.7766646, 46.9025904 ], + [ 6.7769168, 46.9026025 ], + [ 6.7771097000000005, 46.902599 ], + [ 6.7771961, 46.9025911 ], + [ 6.7772847, 46.9026086 ] + ] + ], + "layer" : { + "upper" : 120, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "NE03", + "country" : "CHE", + "name" : [ + { + "text" : "EEP Bellevue", + "lang" : "de-CH" + }, + { + "text" : "EEP Bellevue", + "lang" : "fr-CH" + }, + { + "text" : "EEP Bellevue", + "lang" : "it-CH" + }, + { + "text" : "EEP Bellevue", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "regulationExemption" : "YES", + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Police Neuchâteloise", + "lang" : "de-CH" + }, + { + "text" : "Police Neuchâteloise", + "lang" : "fr-CH" + }, + { + "text" : "Police Neuchâteloise", + "lang" : "it-CH" + }, + { + "text" : "Police Neuchâteloise", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "PN - Rens et opérations", + "lang" : "de-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "fr-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "it-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "PN - Rens et opérations", + "lang" : "de-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "fr-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "it-CH" + }, + { + "text" : "PN - Rens et opérations", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.ne.ch/autorites/DESC/PONE/Pages/Drones.aspx", + "email" : "Police.Neuchateloise@ne.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4960989, 47.411248 ], + [ 7.4964477, 47.4112681 ], + [ 7.4966328, 47.4112708 ], + [ 7.4965899, 47.4111886 ], + [ 7.4965239, 47.411157 ], + [ 7.4964172, 47.4111289 ], + [ 7.496332, 47.4110346 ], + [ 7.4957742, 47.4110135 ], + [ 7.4952944, 47.4111017 ], + [ 7.4950575, 47.4111912 ], + [ 7.4948814, 47.4113011 ], + [ 7.4947001, 47.4114406 ], + [ 7.4944298, 47.4116635 ], + [ 7.4944156, 47.4117667 ], + [ 7.4944091, 47.4117711 ], + [ 7.4943332, 47.4117469 ], + [ 7.4942117, 47.4118584 ], + [ 7.494181, 47.4118898 ], + [ 7.4942136999999995, 47.4119033 ], + [ 7.494358, 47.4119629 ], + [ 7.4941062, 47.4122278 ], + [ 7.4939651, 47.4121711 ], + [ 7.4939407, 47.4121613 ], + [ 7.4938935, 47.4122197 ], + [ 7.4936306, 47.4125755 ], + [ 7.4937094, 47.4127106 ], + [ 7.4937877, 47.4128473 ], + [ 7.4938371, 47.4129336 ], + [ 7.4940803, 47.4133582 ], + [ 7.4940814, 47.4133602 ], + [ 7.4940289, 47.4134388 ], + [ 7.4938082999999995, 47.413653 ], + [ 7.493577, 47.4138031 ], + [ 7.4935258, 47.4138621 ], + [ 7.493352, 47.4140109 ], + [ 7.4934735, 47.4139868 ], + [ 7.4936127, 47.4139591 ], + [ 7.4936574, 47.4139503 ], + [ 7.4937765, 47.4139229 ], + [ 7.4939143, 47.4138888 ], + [ 7.4939463, 47.4138742 ], + [ 7.4940219, 47.4138399 ], + [ 7.4941225, 47.4138012 ], + [ 7.4942673, 47.4138349 ], + [ 7.4943893, 47.4138659 ], + [ 7.4944174, 47.413873 ], + [ 7.4945315, 47.4139252 ], + [ 7.4946444, 47.4140023 ], + [ 7.4947371, 47.4140296 ], + [ 7.4949634, 47.4140717 ], + [ 7.4951883, 47.414115 ], + [ 7.4953968, 47.4141616 ], + [ 7.4956773, 47.4141989 ], + [ 7.4958659, 47.4142196 ], + [ 7.4959651, 47.414247 ], + [ 7.4959772, 47.4142654 ], + [ 7.4960028, 47.4142663 ], + [ 7.4961836, 47.4142714 ], + [ 7.4962872, 47.4141495 ], + [ 7.4964796, 47.4141124 ], + [ 7.4965534, 47.4133743 ], + [ 7.4968378, 47.4133098 ], + [ 7.4970729, 47.4132563 ], + [ 7.497056, 47.4126525 ], + [ 7.4971998, 47.412592599999996 ], + [ 7.4972329, 47.4125789 ], + [ 7.4973022, 47.41255 ], + [ 7.4975321, 47.4124507 ], + [ 7.4975279, 47.4124354 ], + [ 7.4974969, 47.4123859 ], + [ 7.4974123, 47.4122055 ], + [ 7.4973953, 47.4121837 ], + [ 7.4973759, 47.4121629 ], + [ 7.4973541, 47.4121432 ], + [ 7.4973358, 47.4121287 ], + [ 7.4973163, 47.4121151 ], + [ 7.4972955, 47.4121022 ], + [ 7.4972801, 47.4120908 ], + [ 7.4972662, 47.4120786 ], + [ 7.4972538, 47.4120656 ], + [ 7.497243, 47.412052 ], + [ 7.497234, 47.4120378 ], + [ 7.4972268, 47.4120232 ], + [ 7.497221, 47.4120067 ], + [ 7.4972174, 47.41199 ], + [ 7.4972162, 47.4119731 ], + [ 7.4972172, 47.4119562 ], + [ 7.4972205, 47.4119395 ], + [ 7.4972131, 47.4118818 ], + [ 7.4971902, 47.4117951 ], + [ 7.4970877, 47.4118047 ], + [ 7.4970818999999995, 47.412057 ], + [ 7.4970295, 47.4120444 ], + [ 7.496973, 47.4120084 ], + [ 7.496911, 47.4119604 ], + [ 7.4968553, 47.4119059 ], + [ 7.4967843, 47.4118928 ], + [ 7.4967018, 47.4118927 ], + [ 7.4966344, 47.4119158 ], + [ 7.4966434, 47.4119777 ], + [ 7.4966494, 47.4120456 ], + [ 7.4966458, 47.4121283 ], + [ 7.4966365, 47.4122213 ], + [ 7.4966166, 47.4123404 ], + [ 7.4966039, 47.4123842 ], + [ 7.495202, 47.412109 ], + [ 7.4952661, 47.4119979 ], + [ 7.4953788, 47.4117825 ], + [ 7.4954378, 47.4116272 ], + [ 7.4954449, 47.4115322 ], + [ 7.4954778, 47.4114653 ], + [ 7.4955532, 47.4113763 ], + [ 7.495627, 47.411363 ], + [ 7.4958338, 47.4113548 ], + [ 7.4958886, 47.411296899999996 ], + [ 7.4960989, 47.411248 ] + ], + [ + [ 7.494612, 47.4119237 ], + [ 7.4946727, 47.4120041 ], + [ 7.4946282, 47.4120565 ], + [ 7.4945306, 47.4119901 ], + [ 7.494536, 47.4119673 ], + [ 7.4945729, 47.4119458 ], + [ 7.494612, 47.4119237 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns336", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Uf Geren", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Uf Geren", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Uf Geren", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Uf Geren", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.9433311, 46.1599824 ], + [ 8.943177500000001, 46.15763 ], + [ 8.9428469, 46.1552865 ], + [ 8.9423403, 46.1529582 ], + [ 8.9416591, 46.1506515 ], + [ 8.9408053, 46.1483727 ], + [ 8.939781, 46.1461282 ], + [ 8.9385893, 46.1439239 ], + [ 8.937233299999999, 46.141766 ], + [ 8.9357169, 46.1396604 ], + [ 8.9340441, 46.1376128 ], + [ 8.9322195, 46.1356288 ], + [ 8.9302483, 46.1337139 ], + [ 8.9281357, 46.1318733 ], + [ 8.9258876, 46.1301121 ], + [ 8.923510199999999, 46.128435 ], + [ 8.9210099, 46.1268467 ], + [ 8.9183936, 46.1253514 ], + [ 8.9156686, 46.1239534 ], + [ 8.9128421, 46.1226564 ], + [ 8.9099221, 46.1214639 ], + [ 8.9069164, 46.1203793 ], + [ 8.9038333, 46.1194055 ], + [ 8.9006813, 46.1185451 ], + [ 8.8974689, 46.1178005 ], + [ 8.894205, 46.1171738 ], + [ 8.8908984, 46.1166666 ], + [ 8.8875583, 46.1162803 ], + [ 8.8841937, 46.1160161 ], + [ 8.8808138, 46.1158746 ], + [ 8.877428, 46.1158562 ], + [ 8.8740453, 46.1159609 ], + [ 8.8706752, 46.1161886 ], + [ 8.8673268, 46.1165384 ], + [ 8.8640093, 46.1170096 ], + [ 8.8607316, 46.1176008 ], + [ 8.8575029, 46.1183103 ], + [ 8.8543319, 46.1191363 ], + [ 8.851227399999999, 46.1200765 ], + [ 8.8481977, 46.1211283 ], + [ 8.8452512, 46.1222889 ], + [ 8.842396, 46.123555 ], + [ 8.8396398, 46.1249232 ], + [ 8.8369903, 46.1263898 ], + [ 8.8344546, 46.1279508 ], + [ 8.8320398, 46.1296018 ], + [ 8.8297524, 46.1313384 ], + [ 8.8275987, 46.1331558 ], + [ 8.8255846, 46.135049 ], + [ 8.8237157, 46.1370129 ], + [ 8.821997, 46.139042 ], + [ 8.8204333, 46.1411309 ], + [ 8.819029, 46.1432738 ], + [ 8.8177878, 46.1454649 ], + [ 8.8167132, 46.147698 ], + [ 8.8158082, 46.1499672 ], + [ 8.8150751, 46.1522662 ], + [ 8.8145162, 46.1545887 ], + [ 8.8141329, 46.1569284 ], + [ 8.8139263, 46.1592788 ], + [ 8.813897, 46.1616334 ], + [ 8.8140451, 46.163986 ], + [ 8.814370199999999, 46.1663299 ], + [ 8.8148714, 46.1686588 ], + [ 8.8155474, 46.1709662 ], + [ 8.8163964, 46.1732459 ], + [ 8.817416099999999, 46.1754916 ], + [ 8.8186036, 46.1776972 ], + [ 8.8199558, 46.1798565 ], + [ 8.8214689, 46.1819637 ], + [ 8.8231388, 46.184013 ], + [ 8.824961, 46.1859987 ], + [ 8.8269304, 46.1879154 ], + [ 8.8290417, 46.1897579 ], + [ 8.8312891, 46.1915211 ], + [ 8.8336665, 46.1932001 ], + [ 8.8361673, 46.1947904 ], + [ 8.8387846, 46.1962875 ], + [ 8.8415113, 46.1976874 ], + [ 8.8443399, 46.1989862 ], + [ 8.8472627, 46.2001804 ], + [ 8.8502716, 46.2012666 ], + [ 8.8533583, 46.2022419 ], + [ 8.8565145, 46.2031036 ], + [ 8.8597313, 46.2038494 ], + [ 8.8630001, 46.2044771 ], + [ 8.8663117, 46.2049851 ], + [ 8.8696571, 46.205372 ], + [ 8.8730272, 46.2056367 ], + [ 8.8764126, 46.2057784 ], + [ 8.879804, 46.2057969 ], + [ 8.8831922, 46.205692 ], + [ 8.8865678, 46.205464 ], + [ 8.8899216, 46.2051135 ], + [ 8.8932443, 46.2046416 ], + [ 8.8965268, 46.204049499999996 ], + [ 8.8997601, 46.2033388 ], + [ 8.9029353, 46.2025115 ], + [ 8.9060437, 46.2015699 ], + [ 8.9090767, 46.2005165 ], + [ 8.9120261, 46.1993543 ], + [ 8.9148837, 46.1980864 ], + [ 8.9176416, 46.1967163 ], + [ 8.9202924, 46.1952478 ], + [ 8.9228288, 46.1936849 ], + [ 8.9252437, 46.192032 ], + [ 8.9275306, 46.1902934 ], + [ 8.9296832, 46.1884741 ], + [ 8.9316957, 46.186579 ], + [ 8.9335624, 46.1846134 ], + [ 8.9352783, 46.1825825 ], + [ 8.9368388, 46.180492 ], + [ 8.9382394, 46.1783477 ], + [ 8.9394765, 46.1761553 ], + [ 8.9405467, 46.173921 ], + [ 8.9414469, 46.1716508 ], + [ 8.9421749, 46.1693509 ], + [ 8.9427285, 46.1670278 ], + [ 8.9431064, 46.1646877 ], + [ 8.9433074, 46.1623371 ], + [ 8.9433311, 46.1599824 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZL001", + "country" : "CHE", + "name" : [ + { + "text" : "LSZL Locarno", + "lang" : "de-CH" + }, + { + "text" : "LSZL Locarno", + "lang" : "fr-CH" + }, + { + "text" : "LSZL Locarno", + "lang" : "it-CH" + }, + { + "text" : "LSZL Locarno", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Skyguide", + "lang" : "de-CH" + }, + { + "text" : "Skyguide", + "lang" : "fr-CH" + }, + { + "text" : "Skyguide", + "lang" : "it-CH" + }, + { + "text" : "Skyguide", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Special Flight Office (SFO)", + "lang" : "de-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "fr-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "it-CH" + }, + { + "text" : "Special Flight Office (SFO)", + "lang" : "en-GB" + } + ], + "siteURL" : "https://skyguide.ch/services/special-flights", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6064549, 47.494047 ], + [ 7.606794, 47.4939576 ], + [ 7.6067928, 47.493949 ], + [ 7.6067863, 47.4939254 ], + [ 7.6067766, 47.4939024 ], + [ 7.6067639, 47.49388 ], + [ 7.6066749, 47.4937364 ], + [ 7.6066631000000005, 47.4937148 ], + [ 7.606654, 47.4936925 ], + [ 7.6066479000000005, 47.4936698 ], + [ 7.6066446, 47.4936468 ], + [ 7.6066443, 47.4936237 ], + [ 7.6066142, 47.4936243 ], + [ 7.6066334, 47.4933592 ], + [ 7.6066557, 47.4931549 ], + [ 7.6066597, 47.4931552 ], + [ 7.6066958, 47.4928947 ], + [ 7.6067350000000005, 47.492679 ], + [ 7.6068149, 47.492506 ], + [ 7.6071526, 47.4924149 ], + [ 7.6070831, 47.4922933 ], + [ 7.6071193, 47.4922258 ], + [ 7.6071875, 47.4921942 ], + [ 7.6083461, 47.4918926 ], + [ 7.6083266, 47.4917262 ], + [ 7.6081465, 47.4913464 ], + [ 7.6079513, 47.4909713 ], + [ 7.6079679, 47.4909699 ], + [ 7.6080541, 47.4909626 ], + [ 7.6080122, 47.4908626 ], + [ 7.6079774, 47.4907795 ], + [ 7.6079427, 47.4906965 ], + [ 7.6079024, 47.4906002 ], + [ 7.6078022, 47.4903607 ], + [ 7.6077753, 47.4902966 ], + [ 7.6077571, 47.4902527 ], + [ 7.6077372, 47.4902047 ], + [ 7.6077297999999995, 47.4901151 ], + [ 7.6077128, 47.4899066 ], + [ 7.6077059, 47.4898224 ], + [ 7.6077027, 47.4897834 ], + [ 7.607705, 47.4897661 ], + [ 7.6077126, 47.4897093 ], + [ 7.6077266, 47.489606 ], + [ 7.6077398, 47.4895069 ], + [ 7.6077555, 47.4893866 ], + [ 7.6075776, 47.4893805 ], + [ 7.6074278, 47.4893928 ], + [ 7.6073063, 47.4894028 ], + [ 7.6073509999999995, 47.4889112 ], + [ 7.6073259, 47.4889074 ], + [ 7.6073178, 47.488917 ], + [ 7.6073093, 47.4889265 ], + [ 7.6073015999999996, 47.4889364 ], + [ 7.6072947, 47.4889466 ], + [ 7.6072887, 47.488957 ], + [ 7.6072836, 47.4889676 ], + [ 7.6072793, 47.4889784 ], + [ 7.607276, 47.4889893 ], + [ 7.6072736, 47.4890004 ], + [ 7.6072625, 47.4890848 ], + [ 7.6072026, 47.4893762 ], + [ 7.6070704, 47.489656 ], + [ 7.6070307, 47.490091 ], + [ 7.6069515, 47.4905017 ], + [ 7.6069192, 47.4906075 ], + [ 7.6068687, 47.4909664 ], + [ 7.6068024, 47.4913963 ], + [ 7.6067509, 47.4915091 ], + [ 7.6066603, 47.4922071 ], + [ 7.6066363, 47.4924141 ], + [ 7.6066177, 47.4925471 ], + [ 7.606558, 47.4929972 ], + [ 7.6064863, 47.4935571 ], + [ 7.6064661000000005, 47.4938717 ], + [ 7.6064549, 47.494047 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns157", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Reinacherheide", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Reinacherheide", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Reinacherheide", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Reinacherheide", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 6.122995, 46.237363 ], + [ 6.1229931, 46.2372217 ], + [ 6.1229806, 46.2370807 ], + [ 6.1229574, 46.2369403 ], + [ 6.1229236, 46.236801 ], + [ 6.1228794, 46.236663 ], + [ 6.1228249, 46.2365269 ], + [ 6.1227602, 46.236393 ], + [ 6.1226854, 46.2362615 ], + [ 6.1226009, 46.236133 ], + [ 6.1225067, 46.2360077 ], + [ 6.1224033, 46.235886 ], + [ 6.1222908, 46.2357683 ], + [ 6.1221696, 46.2356548 ], + [ 6.1220399, 46.2355458 ], + [ 6.1219023, 46.2354417 ], + [ 6.121757, 46.2353427 ], + [ 6.1216044, 46.2352492 ], + [ 6.121445, 46.2351613 ], + [ 6.1212792, 46.2350793 ], + [ 6.1211074, 46.2350035 ], + [ 6.1209301, 46.234934 ], + [ 6.1207478, 46.234871 ], + [ 6.1205611, 46.2348148 ], + [ 6.1203703, 46.2347654 ], + [ 6.1201761, 46.234723 ], + [ 6.119979, 46.2346877 ], + [ 6.1197794, 46.2346596 ], + [ 6.119578, 46.2346388 ], + [ 6.1193753, 46.2346254 ], + [ 6.1191718999999996, 46.2346193 ], + [ 6.1189683, 46.2346206 ], + [ 6.1187651, 46.2346293 ], + [ 6.1185629, 46.2346454 ], + [ 6.1183621, 46.2346688 ], + [ 6.1181633, 46.2346995 ], + [ 6.1179670999999995, 46.2347373 ], + [ 6.1177741, 46.2347822 ], + [ 6.1175847, 46.2348341 ], + [ 6.1173995, 46.2348927 ], + [ 6.1172189, 46.234958 ], + [ 6.1170436, 46.2350298 ], + [ 6.1168739, 46.2351079 ], + [ 6.1167103, 46.235192 ], + [ 6.1165532, 46.2352819 ], + [ 6.1164032, 46.2353774 ], + [ 6.1162606, 46.2354783 ], + [ 6.1161256999999996, 46.2355841 ], + [ 6.1159991, 46.2356947 ], + [ 6.115881, 46.2358098 ], + [ 6.1157717, 46.235929 ], + [ 6.1156715, 46.236052 ], + [ 6.1155807, 46.2361785 ], + [ 6.1154997, 46.2363081 ], + [ 6.1154285, 46.2364405 ], + [ 6.1153674, 46.2365752 ], + [ 6.1153165, 46.236712 ], + [ 6.115276, 46.2368505 ], + [ 6.115246, 46.2369903 ], + [ 6.1152266, 46.2371309 ], + [ 6.1152179, 46.2372721 ], + [ 6.1152197, 46.2374133 ], + [ 6.1152323, 46.2375544 ], + [ 6.1152554, 46.2376947 ], + [ 6.1152892, 46.2378341 ], + [ 6.1153333, 46.237972 ], + [ 6.1153879, 46.2381081 ], + [ 6.1154526, 46.2382421 ], + [ 6.1155273, 46.2383735 ], + [ 6.1156119, 46.238502 ], + [ 6.115706, 46.2386273 ], + [ 6.1158094, 46.238749 ], + [ 6.1159219, 46.2388668 ], + [ 6.1160431, 46.2389803 ], + [ 6.1161727, 46.2390893 ], + [ 6.1163104, 46.2391934 ], + [ 6.1164557, 46.2392924 ], + [ 6.1166083, 46.2393859 ], + [ 6.1167677, 46.2394738 ], + [ 6.1169335, 46.2395558 ], + [ 6.1171053, 46.2396316 ], + [ 6.1172826, 46.2397011 ], + [ 6.1174649, 46.2397641 ], + [ 6.1176517, 46.2398204 ], + [ 6.1178424, 46.2398698 ], + [ 6.1180367, 46.2399122 ], + [ 6.1182338, 46.2399475 ], + [ 6.1184334, 46.2399756 ], + [ 6.1186348, 46.2399964 ], + [ 6.1188375, 46.2400098 ], + [ 6.1190409, 46.2400159 ], + [ 6.1192445, 46.2400146 ], + [ 6.1194478, 46.2400059 ], + [ 6.1196501, 46.2399898 ], + [ 6.1198509, 46.2399664 ], + [ 6.1200497, 46.2399357 ], + [ 6.1202458, 46.2398979 ], + [ 6.1204389, 46.2398529 ], + [ 6.1206283, 46.2398011 ], + [ 6.1208135, 46.2397424 ], + [ 6.1209941, 46.2396771 ], + [ 6.1211695, 46.2396053 ], + [ 6.1213392, 46.2395272 ], + [ 6.1215028, 46.2394431 ], + [ 6.1216598, 46.2393532 ], + [ 6.1218099, 46.2392577 ], + [ 6.1219525, 46.2391568 ], + [ 6.1220873, 46.239051 ], + [ 6.122214, 46.2389403 ], + [ 6.1223321, 46.2388253 ], + [ 6.1224414, 46.238706 ], + [ 6.1225415, 46.238583 ], + [ 6.1226323, 46.2384565 ], + [ 6.1227133, 46.2383269 ], + [ 6.1227845, 46.2381946 ], + [ 6.1228456, 46.2380598 ], + [ 6.1228965, 46.237923 ], + [ 6.1229369, 46.2377845 ], + [ 6.1229669, 46.2376448 ], + [ 6.1229863, 46.2375041 ], + [ 6.122995, 46.237363 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0085", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Palexpo", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Palexpo", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Palexpo", + "lang" : "it-CH" + }, + { + "text" : "Substation Palexpo", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.7347434, 47.5044532 ], + [ 8.7347345, 47.5043121 ], + [ 8.7347148, 47.5041715 ], + [ 8.734684099999999, 47.5040317 ], + [ 8.7346428, 47.5038933 ], + [ 8.7345908, 47.5037565 ], + [ 8.7345282, 47.5036217 ], + [ 8.7344554, 47.5034894 ], + [ 8.7343725, 47.5033598 ], + [ 8.7342796, 47.5032333 ], + [ 8.7341772, 47.5031103 ], + [ 8.7340653, 47.5029911 ], + [ 8.7339444, 47.502876 ], + [ 8.7338148, 47.5027654 ], + [ 8.7336768, 47.5026595 ], + [ 8.7335309, 47.5025586 ], + [ 8.7333773, 47.5024631 ], + [ 8.7332166, 47.5023732 ], + [ 8.7330491, 47.502289 ], + [ 8.7328754, 47.502211 ], + [ 8.7326959, 47.5021391 ], + [ 8.7325111, 47.5020738 ], + [ 8.7323215, 47.5020151 ], + [ 8.7321276, 47.5019632 ], + [ 8.73193, 47.5019183 ], + [ 8.7317292, 47.5018804 ], + [ 8.7315257, 47.5018497 ], + [ 8.7313202, 47.5018262 ], + [ 8.7311131, 47.5018101 ], + [ 8.730905, 47.5018013 ], + [ 8.7306966, 47.5017999 ], + [ 8.7304883, 47.501806 ], + [ 8.7302808, 47.5018194 ], + [ 8.7300746, 47.5018401 ], + [ 8.7298703, 47.5018681 ], + [ 8.7296685, 47.5019034 ], + [ 8.7294696, 47.5019457 ], + [ 8.7292743, 47.5019951 ], + [ 8.729083, 47.5020513 ], + [ 8.7288964, 47.5021142 ], + [ 8.7287149, 47.5021836 ], + [ 8.728539, 47.5022594 ], + [ 8.7283691, 47.5023413 ], + [ 8.7282059, 47.5024291 ], + [ 8.7280496, 47.5025226 ], + [ 8.7279008, 47.5026215 ], + [ 8.7277598, 47.5027256 ], + [ 8.727627, 47.5028345 ], + [ 8.7275029, 47.5029479 ], + [ 8.7273876, 47.5030657 ], + [ 8.7272817, 47.5031873 ], + [ 8.7271852, 47.5033125 ], + [ 8.7270986, 47.503441 ], + [ 8.727022, 47.5035724 ], + [ 8.7269556, 47.5037063 ], + [ 8.7268997, 47.5038424 ], + [ 8.7268544, 47.5039803 ], + [ 8.7268198, 47.5041195 ], + [ 8.726796, 47.5042599 ], + [ 8.726783, 47.5044009 ], + [ 8.726781, 47.5045421 ], + [ 8.7267899, 47.504683299999996 ], + [ 8.7268096, 47.5048239 ], + [ 8.7268402, 47.504963599999996 ], + [ 8.7268816, 47.505102 ], + [ 8.7269336, 47.5052388 ], + [ 8.7269961, 47.5053736 ], + [ 8.7270689, 47.505506 ], + [ 8.7271518, 47.5056356 ], + [ 8.7272446, 47.5057621 ], + [ 8.7273471, 47.5058851 ], + [ 8.7274589, 47.5060043 ], + [ 8.7275798, 47.5061194 ], + [ 8.7277094, 47.50623 ], + [ 8.7278474, 47.5063359 ], + [ 8.7279934, 47.5064368 ], + [ 8.7281469, 47.5065323 ], + [ 8.7283076, 47.5066223 ], + [ 8.7284751, 47.5067064 ], + [ 8.7286488, 47.5067845 ], + [ 8.7288283, 47.5068563 ], + [ 8.7290132, 47.5069216 ], + [ 8.7292028, 47.5069804 ], + [ 8.7293967, 47.5070322 ], + [ 8.7295943, 47.5070772 ], + [ 8.7297951, 47.5071151 ], + [ 8.7299986, 47.5071458 ], + [ 8.7302042, 47.5071693 ], + [ 8.7304113, 47.5071854 ], + [ 8.7306194, 47.5071941 ], + [ 8.7308278, 47.5071955 ], + [ 8.7310361, 47.5071895 ], + [ 8.731243599999999, 47.5071761 ], + [ 8.7314499, 47.5071553 ], + [ 8.7316542, 47.5071273 ], + [ 8.7318561, 47.5070921 ], + [ 8.732055, 47.5070497 ], + [ 8.7322503, 47.5070004 ], + [ 8.7324416, 47.5069442 ], + [ 8.7326282, 47.5068813 ], + [ 8.7328097, 47.5068118 ], + [ 8.7329857, 47.506736 ], + [ 8.7331555, 47.5066541 ], + [ 8.7333188, 47.5065663 ], + [ 8.733475, 47.5064728 ], + [ 8.7336239, 47.5063739 ], + [ 8.7337648, 47.5062698 ], + [ 8.7338976, 47.5061609 ], + [ 8.7340218, 47.5060474 ], + [ 8.734137, 47.5059297 ], + [ 8.734243, 47.5058081 ], + [ 8.7343394, 47.5056828 ], + [ 8.734426, 47.5055544 ], + [ 8.7345026, 47.505423 ], + [ 8.7345689, 47.5052891 ], + [ 8.7346248, 47.505153 ], + [ 8.7346701, 47.5050151 ], + [ 8.7347047, 47.5048758 ], + [ 8.7347285, 47.5047355 ], + [ 8.7347414, 47.5045945 ], + [ 8.7347434, 47.5044532 ] + ] + ], + "layer" : { + "upper" : 150, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "WTH0001", + "country" : "CHE", + "name" : [ + { + "text" : "Gefängnis Winterthur", + "lang" : "de-CH" + }, + { + "text" : "Gefängnis Winterthur", + "lang" : "fr-CH" + }, + { + "text" : "Gefängnis Winterthur", + "lang" : "it-CH" + }, + { + "text" : "Gefängnis Winterthur", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "de-CH" + }, + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "fr-CH" + }, + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "it-CH" + }, + { + "text" : "Amt für Justizvollzug und Wiedereingliederung des Kantons Zürich", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "de-CH" + }, + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "fr-CH" + }, + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "it-CH" + }, + { + "text" : "Fachbereich FCL - Sicherheit", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Reno Berner", + "lang" : "de-CH" + }, + { + "text" : "Reno Berner", + "lang" : "fr-CH" + }, + { + "text" : "Reno Berner", + "lang" : "it-CH" + }, + { + "text" : "Reno Berner", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.zh.ch/de/direktion-der-justiz-und-des-innern/justizvollzug-wiedereingliederung.html", + "email" : "sicherheit-juwe@ji.zh.ch", + "phone" : "0041432583400", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT12H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.4371418, 47.2713095 ], + [ 8.4371338, 47.2711684 ], + [ 8.4371148, 47.2710277 ], + [ 8.437085100000001, 47.2708879 ], + [ 8.4370447, 47.2707493 ], + [ 8.4369937, 47.2706124 ], + [ 8.4369322, 47.2704775 ], + [ 8.4368605, 47.2703449 ], + [ 8.4367786, 47.2702151 ], + [ 8.4366869, 47.2700884 ], + [ 8.4365855, 47.2699651 ], + [ 8.4364748, 47.2698456 ], + [ 8.4363551, 47.2697302 ], + [ 8.4362267, 47.2696192 ], + [ 8.4360899, 47.269513 ], + [ 8.4359451, 47.2694117 ], + [ 8.4357928, 47.2693158 ], + [ 8.4356332, 47.2692254 ], + [ 8.435467, 47.2691408 ], + [ 8.4352945, 47.2690623 ], + [ 8.4351161, 47.26899 ], + [ 8.4349325, 47.2689242 ], + [ 8.4347441, 47.268865 ], + [ 8.4345513, 47.2688126 ], + [ 8.4343548, 47.2687671 ], + [ 8.4341551, 47.2687287 ], + [ 8.4339527, 47.2686975 ], + [ 8.4337481, 47.2686735 ], + [ 8.4335421, 47.2686569 ], + [ 8.433335, 47.2686476 ], + [ 8.4331274, 47.2686457 ], + [ 8.43292, 47.2686511 ], + [ 8.4327133, 47.268664 ], + [ 8.4325079, 47.2686842 ], + [ 8.4323044, 47.2687117 ], + [ 8.4321032, 47.2687464 ], + [ 8.4319049, 47.2687883 ], + [ 8.4317102, 47.2688371 ], + [ 8.4315195, 47.2688928 ], + [ 8.4313333, 47.2689553 ], + [ 8.4311522, 47.2690242 ], + [ 8.4309766, 47.2690996 ], + [ 8.430807, 47.269181 ], + [ 8.430644, 47.2692684 ], + [ 8.4304879, 47.2693615 ], + [ 8.4303391, 47.2694601 ], + [ 8.4301982, 47.2695638 ], + [ 8.4300654, 47.2696723 ], + [ 8.4299411, 47.2697855 ], + [ 8.4298258, 47.2699029 ], + [ 8.4297196, 47.2700243 ], + [ 8.4296228, 47.2701493 ], + [ 8.4295358, 47.2702776 ], + [ 8.4294589, 47.2704087 ], + [ 8.429392, 47.2705425 ], + [ 8.4293356, 47.2706784 ], + [ 8.4292897, 47.2708162 ], + [ 8.4292545, 47.2709554 ], + [ 8.42923, 47.2710957 ], + [ 8.4292163, 47.2712367 ], + [ 8.4292135, 47.2713779 ], + [ 8.4292215, 47.2715191 ], + [ 8.4292404, 47.2716598 ], + [ 8.4292701, 47.2717996 ], + [ 8.4293105, 47.2719382 ], + [ 8.4293615, 47.2720751 ], + [ 8.429423, 47.27221 ], + [ 8.4294947, 47.2723426 ], + [ 8.4295766, 47.2724724 ], + [ 8.4296683, 47.2725991 ], + [ 8.4297696, 47.2727224 ], + [ 8.4298803, 47.272842 ], + [ 8.43, 47.2729574 ], + [ 8.4301284, 47.2730683 ], + [ 8.4302652, 47.2731746 ], + [ 8.43041, 47.2732758 ], + [ 8.4305624, 47.2733718 ], + [ 8.4307219, 47.2734621 ], + [ 8.4308881, 47.2735467 ], + [ 8.4310607, 47.2736253 ], + [ 8.431239, 47.2736975 ], + [ 8.4314227, 47.2737634 ], + [ 8.4316111, 47.2738226 ], + [ 8.4318039, 47.273875 ], + [ 8.4320004, 47.2739205 ], + [ 8.4322001, 47.2739589 ], + [ 8.4324026, 47.2739901 ], + [ 8.4326071, 47.2740141 ], + [ 8.4328132, 47.2740307 ], + [ 8.4330204, 47.27404 ], + [ 8.4332279, 47.2740419 ], + [ 8.4334353, 47.2740365 ], + [ 8.433642, 47.2740236 ], + [ 8.4338474, 47.2740034 ], + [ 8.434051, 47.2739759 ], + [ 8.4342522, 47.2739412 ], + [ 8.4344505, 47.2738993 ], + [ 8.4346453, 47.2738505 ], + [ 8.434836, 47.2737948 ], + [ 8.4350222, 47.2737323 ], + [ 8.4352033, 47.2736634 ], + [ 8.4353789, 47.273588 ], + [ 8.4355485, 47.2735065 ], + [ 8.4357115, 47.2734191 ], + [ 8.4358676, 47.273326 ], + [ 8.4360164, 47.2732275 ], + [ 8.4361573, 47.2731238 ], + [ 8.4362901, 47.2730152 ], + [ 8.4364144, 47.272902 ], + [ 8.4365297, 47.2727846 ], + [ 8.4366359, 47.2726632 ], + [ 8.4367326, 47.2725382 ], + [ 8.4368196, 47.2724099 ], + [ 8.4368966, 47.2722787 ], + [ 8.4369634, 47.272145 ], + [ 8.4370198, 47.272009 ], + [ 8.4370657, 47.2718713 ], + [ 8.4371009, 47.271732 ], + [ 8.4371254, 47.2715918 ], + [ 8.437139, 47.2714508 ], + [ 8.4371418, 47.2713095 ] + ] + ], + "layer" : { + "upper" : 200, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "SVA0080", + "country" : "CHE", + "name" : [ + { + "text" : "Unterwerk Obfelden", + "lang" : "de-CH" + }, + { + "text" : "Sous-station Obfelden", + "lang" : "fr-CH" + }, + { + "text" : "Sottostazione Obfelden", + "lang" : "it-CH" + }, + { + "text" : "Substation Obfelden", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Swissgrid AG", + "lang" : "de-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "fr-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "it-CH" + }, + { + "text" : "Swissgrid AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "CEO-SO-SE", + "lang" : "de-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "fr-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "it-CH" + }, + { + "text" : "CEO-SO-SE", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.swissgrid.ch/en/home/about-us/contact.html", + "email" : "physicalsecurity@swissgrid.ch", + "phone" : "0041585803112", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P05DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 8.1872653, 47.6075158 ], + [ 8.1875529, 47.6074207 ], + [ 8.1880094, 47.6072493 ], + [ 8.188452, 47.6070619 ], + [ 8.1888794, 47.6068591 ], + [ 8.1892907, 47.6066415 ], + [ 8.1896845, 47.6064096 ], + [ 8.1900598, 47.606164 ], + [ 8.1904156, 47.6059056 ], + [ 8.1907509, 47.6056348 ], + [ 8.1910647, 47.6053526 ], + [ 8.1913564, 47.6050597 ], + [ 8.1916249, 47.6047569 ], + [ 8.1918696, 47.6044449 ], + [ 8.1920899, 47.6041247 ], + [ 8.1922851, 47.6037972 ], + [ 8.1924546, 47.6034632 ], + [ 8.1925981, 47.6031237 ], + [ 8.1927151, 47.6027795 ], + [ 8.1928053, 47.6024317 ], + [ 8.1928685, 47.6020811 ], + [ 8.1929045, 47.6017288 ], + [ 8.1929131, 47.6013758 ], + [ 8.1928944, 47.6010228 ], + [ 8.1928485, 47.6006711 ], + [ 8.1927754, 47.6003214 ], + [ 8.1926753, 47.5999748 ], + [ 8.1925485, 47.5996323 ], + [ 8.1923954, 47.5992946 ], + [ 8.1922164, 47.5989629 ], + [ 8.192012, 47.598638 ], + [ 8.1917828, 47.5983207 ], + [ 8.1915292, 47.598012 ], + [ 8.1912522, 47.5977127 ], + [ 8.1909524, 47.5974236 ], + [ 8.1906306, 47.5971455 ], + [ 8.1902878, 47.5968792 ], + [ 8.1899248, 47.5966254 ], + [ 8.1895427, 47.5963847 ], + [ 8.1891424, 47.596158 ], + [ 8.1887252, 47.5959457 ], + [ 8.1882922, 47.5957484 ], + [ 8.1878445, 47.5955668 ], + [ 8.1873833, 47.5954013 ], + [ 8.18691, 47.5952523 ], + [ 8.1864258, 47.5951203 ], + [ 8.185932, 47.5950056 ], + [ 8.1854301, 47.5949085 ], + [ 8.1849213, 47.5948293 ], + [ 8.1844071, 47.5947683 ], + [ 8.1838889, 47.5947255 ], + [ 8.1833681, 47.5947012 ], + [ 8.1828461, 47.5946953 ], + [ 8.1823244, 47.5947078 ], + [ 8.1818044, 47.5947389 ], + [ 8.1812875, 47.5947883 ], + [ 8.1807751, 47.5948559 ], + [ 8.1802686, 47.5949416 ], + [ 8.1797695, 47.5950451 ], + [ 8.179279, 47.5951661 ], + [ 8.1787986, 47.5953043 ], + [ 8.1783295, 47.5954593 ], + [ 8.1778731, 47.5956308 ], + [ 8.1774306, 47.5958181 ], + [ 8.1770031, 47.5960209 ], + [ 8.1765919, 47.5962385 ], + [ 8.1761982, 47.5964703 ], + [ 8.1758229, 47.5967158 ], + [ 8.175467, 47.5969742 ], + [ 8.1751317, 47.5972449 ], + [ 8.1748178, 47.5975271 ], + [ 8.1745261, 47.5978199 ], + [ 8.1742575, 47.5981228 ], + [ 8.1740127, 47.5984347 ], + [ 8.1737924, 47.5987548 ], + [ 8.1735971, 47.5990823 ], + [ 8.1734275, 47.5994163 ], + [ 8.1732839, 47.5997558 ], + [ 8.1731667, 47.600099900000004 ], + [ 8.1730764, 47.6004477 ], + [ 8.1730533, 47.6005754 ], + [ 8.1731153, 47.6006235 ], + [ 8.1734255, 47.6008387 ], + [ 8.1744993, 47.6015432 ], + [ 8.1748378, 47.6017558 ], + [ 8.1751895, 47.6019582 ], + [ 8.1755539, 47.6021501 ], + [ 8.1759303, 47.6023312 ], + [ 8.176318, 47.602501 ], + [ 8.1767162, 47.6026593 ], + [ 8.1771241, 47.6028057 ], + [ 8.1775411, 47.60294 ], + [ 8.1779664, 47.603062 ], + [ 8.178399, 47.6031713 ], + [ 8.1823833, 47.604112 ], + [ 8.1827341, 47.6042025 ], + [ 8.1830769, 47.6043062 ], + [ 8.1834105, 47.6044228 ], + [ 8.1837338, 47.6045519 ], + [ 8.1840458, 47.6046932 ], + [ 8.1843456, 47.6048462 ], + [ 8.1846136, 47.6049998 ], + [ 8.184632, 47.6050104 ], + [ 8.1849044, 47.6051852 ], + [ 8.1851548, 47.6053613 ], + [ 8.1853963, 47.605543 ], + [ 8.1856285, 47.6057301 ], + [ 8.1858512, 47.6059225 ], + [ 8.1860641, 47.6061198 ], + [ 8.186267, 47.606322 ], + [ 8.1864596, 47.6065286 ], + [ 8.1866417, 47.6067396 ], + [ 8.1871161, 47.6073237 ], + [ 8.1872653, 47.6075158 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "ENSI003", + "country" : "CHE", + "name" : [ + { + "text" : "KKA Leibstadt", + "lang" : "de-CH" + }, + { + "text" : "KKA Leibstadt", + "lang" : "fr-CH" + }, + { + "text" : "KKA Leibstadt", + "lang" : "it-CH" + }, + { + "text" : "KKA Leibstadt", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "SENSITIVE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Kernkraftwerk Leibstadt AG", + "lang" : "de-CH" + }, + { + "text" : "Kernkraftwerk Leibstadt AG", + "lang" : "fr-CH" + }, + { + "text" : "Kernkraftwerk Leibstadt AG", + "lang" : "it-CH" + }, + { + "text" : "Kernkraftwerk Leibstadt AG", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Sicherungsbeauftragter", + "lang" : "de-CH" + }, + { + "text" : "Sicherungsbeauftragter", + "lang" : "fr-CH" + }, + { + "text" : "Sicherungsbeauftragter", + "lang" : "it-CH" + }, + { + "text" : "Sicherungsbeauftragter", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Martin Süss", + "lang" : "de-CH" + }, + { + "text" : "Martin Süss", + "lang" : "fr-CH" + }, + { + "text" : "Martin Süss", + "lang" : "it-CH" + }, + { + "text" : "Martin Süss", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.kkl.ch/unternehmen/medien/kontakt-medienstelle", + "email" : "medien@kkl.ch", + "phone" : "0041562677111", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P03DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.2932267, 47.0906466 ], + [ 7.2931888, 47.0905638 ], + [ 7.2924303, 47.0900097 ], + [ 7.2916377, 47.0894312 ], + [ 7.2901972, 47.0883814 ], + [ 7.2900013999999995, 47.0882292 ], + [ 7.2886385, 47.0871975 ], + [ 7.2879407, 47.0866694 ], + [ 7.2872929, 47.0861792 ], + [ 7.2871441, 47.0866054 ], + [ 7.2851711, 47.0853156 ], + [ 7.2850901, 47.0855422 ], + [ 7.2849294, 47.0860025 ], + [ 7.2849503, 47.0860655 ], + [ 7.2866046, 47.0873909 ], + [ 7.2866311, 47.0873127 ], + [ 7.2883598, 47.0884429 ], + [ 7.2875254, 47.0891416 ], + [ 7.2879843, 47.0893977 ], + [ 7.2881237, 47.0894752 ], + [ 7.288722, 47.0898088 ], + [ 7.2893269, 47.0901469 ], + [ 7.289469, 47.0902254 ], + [ 7.2901975, 47.090632 ], + [ 7.2903801999999995, 47.0907456 ], + [ 7.2905419, 47.0908726 ], + [ 7.2906798, 47.0910068 ], + [ 7.290886, 47.0911987 ], + [ 7.2911108, 47.0913816 ], + [ 7.2913513, 47.0915537 ], + [ 7.2915012, 47.0916501 ], + [ 7.2920649, 47.0911759 ], + [ 7.2922299, 47.0910376 ], + [ 7.292948, 47.0914379 ], + [ 7.2932267, 47.0906466 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSZP002", + "country" : "CHE", + "name" : [ + { + "text" : "LSZP Biel-Kappelen (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSZP Biel-Kappelen (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSZP Biel-Kappelen (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSZP Biel-Kappelen (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Flugplatz Biel-Kappelen", + "lang" : "de-CH" + }, + { + "text" : "Flugplatz Biel-Kappelen", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatz Biel-Kappelen", + "lang" : "it-CH" + }, + { + "text" : "Flugplatz Biel-Kappelen", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Paul Misteli", + "lang" : "de-CH" + }, + { + "text" : "Paul Misteli", + "lang" : "fr-CH" + }, + { + "text" : "Paul Misteli", + "lang" : "it-CH" + }, + { + "text" : "Paul Misteli", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.lszp.ch", + "email" : "misteli.p@bluewin.ch", + "phone" : "0041791362839", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P02DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8092695, 47.4931879 ], + [ 7.8093436, 47.4933965 ], + [ 7.8093988, 47.4938722 ], + [ 7.8094866, 47.4941472 ], + [ 7.8096706000000005, 47.4945147 ], + [ 7.8098906, 47.4949498 ], + [ 7.8102645, 47.4948963 ], + [ 7.8102913, 47.4948924 ], + [ 7.8103487, 47.4947658 ], + [ 7.8103549999999995, 47.4947512 ], + [ 7.8103605, 47.4947365 ], + [ 7.8103653, 47.4947217 ], + [ 7.8103694, 47.4947068 ], + [ 7.8103727, 47.4946918 ], + [ 7.8103753, 47.4946767 ], + [ 7.8103771, 47.4946616 ], + [ 7.8103782, 47.4946465 ], + [ 7.8103785, 47.4946313 ], + [ 7.8103779, 47.4946111 ], + [ 7.8103765, 47.494591 ], + [ 7.8103744, 47.4945708 ], + [ 7.8103715, 47.4945507 ], + [ 7.8103677, 47.4945307 ], + [ 7.8103633, 47.4945108 ], + [ 7.8103163, 47.4943168 ], + [ 7.8103098, 47.4942907 ], + [ 7.8103025, 47.4942647 ], + [ 7.8102944, 47.4942388 ], + [ 7.8102856, 47.494213 ], + [ 7.8102761, 47.4941874 ], + [ 7.8102687, 47.4941699 ], + [ 7.8102606, 47.4941525 ], + [ 7.8102516, 47.4941354 ], + [ 7.8102419, 47.4941184 ], + [ 7.8102314, 47.4941016 ], + [ 7.8102201, 47.4940851 ], + [ 7.8102081, 47.4940689 ], + [ 7.8101953, 47.4940528 ], + [ 7.8101818, 47.4940371 ], + [ 7.8101676, 47.4940217 ], + [ 7.8100092, 47.4938547 ], + [ 7.8098614, 47.4936751 ], + [ 7.8098426, 47.4936508 ], + [ 7.8098246, 47.4936263 ], + [ 7.8098073, 47.4936015 ], + [ 7.8097908, 47.4935765 ], + [ 7.809775, 47.4935513 ], + [ 7.80976, 47.4935258 ], + [ 7.8097457, 47.4935002 ], + [ 7.8097345, 47.4934806 ], + [ 7.8097227, 47.4934612 ], + [ 7.8097101, 47.493442 ], + [ 7.809697, 47.493423 ], + [ 7.8096831, 47.4934042 ], + [ 7.8096686, 47.4933857 ], + [ 7.8096611, 47.4933769 ], + [ 7.8096528, 47.4933684 ], + [ 7.8096438, 47.4933602 ], + [ 7.8096341, 47.4933524 ], + [ 7.8096238, 47.493345 ], + [ 7.8096129, 47.493338 ], + [ 7.8096014, 47.4933314 ], + [ 7.8095894, 47.4933253 ], + [ 7.8095769, 47.4933197 ], + [ 7.8092695, 47.4931879 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns269", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Im Boden", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Im Boden", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Im Boden", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Im Boden", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8303359, 47.309674 ], + [ 7.820107, 47.3217609 ], + [ 7.8151452, 47.3309515 ], + [ 7.8358823, 47.344194 ], + [ 7.8480565, 47.3441515 ], + [ 7.8732384, 47.3489166 ], + [ 7.9003103, 47.3574463 ], + [ 7.9082646, 47.3588534 ], + [ 7.9197323, 47.3681605 ], + [ 7.9472276, 47.3637255 ], + [ 7.949325, 47.3615576 ], + [ 7.9550013, 47.3462417 ], + [ 7.9503193, 47.3271941 ], + [ 7.9135743, 47.3307689 ], + [ 7.9072857, 47.3378103 ], + [ 7.8965496, 47.320224 ], + [ 7.8906917, 47.3157498 ], + [ 7.8303359, 47.309674 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSPO001", + "country" : "CHE", + "name" : [ + { + "text" : "LSPO Olten", + "lang" : "de-CH" + }, + { + "text" : "LSPO Olten", + "lang" : "fr-CH" + }, + { + "text" : "LSPO Olten", + "lang" : "it-CH" + }, + { + "text" : "LSPO Olten", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft weighing more than 250 g is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Segelfluggruppe Olten / SGOlten", + "lang" : "de-CH" + }, + { + "text" : "Segelfluggruppe Olten / SGOlten", + "lang" : "fr-CH" + }, + { + "text" : "Segelfluggruppe Olten / SGOlten", + "lang" : "it-CH" + }, + { + "text" : "Segelfluggruppe Olten / SGOlten", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Urs Müller", + "lang" : "de-CH" + }, + { + "text" : "Urs Müller", + "lang" : "fr-CH" + }, + { + "text" : "Urs Müller", + "lang" : "it-CH" + }, + { + "text" : "Urs Müller", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.sgolten.ch", + "email" : "flugplatzchef@sgolten.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P02DT12H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.6381874, 47.5470174 ], + [ 7.6371631, 47.547199 ], + [ 7.6367928, 47.5472646 ], + [ 7.636393, 47.5473355 ], + [ 7.6341467, 47.5478054 ], + [ 7.6342178, 47.5478607 ], + [ 7.6343794, 47.5481289 ], + [ 7.6345716, 47.5483905 ], + [ 7.6347632, 47.5486217 ], + [ 7.6348674, 47.5487299 ], + [ 7.6350095, 47.5488672 ], + [ 7.6351821, 47.5490121 ], + [ 7.6353767999999995, 47.5491629 ], + [ 7.6355782, 47.5493125 ], + [ 7.6357893, 47.5494404 ], + [ 7.636037, 47.549574 ], + [ 7.6362287, 47.5496705 ], + [ 7.6364167, 47.5497604 ], + [ 7.6365141, 47.5498473 ], + [ 7.6366531, 47.5499289 ], + [ 7.6367357, 47.5499667 ], + [ 7.6370962, 47.5500798 ], + [ 7.6374898, 47.5501887 ], + [ 7.6382258, 47.5503322 ], + [ 7.6392095, 47.5505224 ], + [ 7.6401832, 47.5507114 ], + [ 7.6411066, 47.5508906 ], + [ 7.6413672, 47.5509355 ], + [ 7.6416238, 47.5509716 ], + [ 7.6418812, 47.5509937 ], + [ 7.6421447, 47.5509961 ], + [ 7.6424065, 47.5509808 ], + [ 7.6426567, 47.5509439 ], + [ 7.6429030000000004, 47.5508883 ], + [ 7.643136, 47.5508148 ], + [ 7.6433544, 47.5507304 ], + [ 7.6435579, 47.5506361 ], + [ 7.6437079, 47.5505463 ], + [ 7.6448946, 47.5499861 ], + [ 7.6452765, 47.5498265 ], + [ 7.6455135, 47.5497106 ], + [ 7.6457026, 47.5495615 ], + [ 7.6462348, 47.5490225 ], + [ 7.6465383, 47.5487222 ], + [ 7.6467353, 47.5486151 ], + [ 7.6469019, 47.5485517 ], + [ 7.6472028, 47.5483094 ], + [ 7.6472754, 47.5482553 ], + [ 7.646299, 47.5469554 ], + [ 7.6484302, 47.5459811 ], + [ 7.6491175, 47.5470111 ], + [ 7.6492955, 47.546904 ], + [ 7.6499488, 47.5464935 ], + [ 7.6505814999999995, 47.5460938 ], + [ 7.650846, 47.5458326 ], + [ 7.6511358, 47.5456031 ], + [ 7.6515471, 47.5454358 ], + [ 7.6517281, 47.5453203 ], + [ 7.6517514, 47.545305 ], + [ 7.6517744, 47.5452895 ], + [ 7.651797, 47.5452737 ], + [ 7.6518194, 47.5452578 ], + [ 7.6518411, 47.5452419 ], + [ 7.6518624, 47.5452259 ], + [ 7.6518835, 47.5452096 ], + [ 7.6519042, 47.5451932 ], + [ 7.6524562, 47.5447564 ], + [ 7.6524848, 47.5447342 ], + [ 7.6525139, 47.5447124 ], + [ 7.6525436, 47.544691 ], + [ 7.6525737, 47.5446698 ], + [ 7.6526041, 47.544649 ], + [ 7.6526351, 47.5446285 ], + [ 7.6526665, 47.5446084 ], + [ 7.6526984, 47.5445886 ], + [ 7.6555607, 47.5427734 ], + [ 7.6553476, 47.5426384 ], + [ 7.6557018, 47.5423854 ], + [ 7.6564245, 47.5419449 ], + [ 7.6571206, 47.5414829 ], + [ 7.6578365999999995, 47.5410057 ], + [ 7.6582878999999995, 47.5405086 ], + [ 7.6584476, 47.5403113 ], + [ 7.6588263, 47.5398435 ], + [ 7.6585362, 47.5393861 ], + [ 7.6581074000000005, 47.5385285 ], + [ 7.6580882, 47.5384082 ], + [ 7.6578513, 47.5385344 ], + [ 7.6567893, 47.5390768 ], + [ 7.6558481, 47.5395575 ], + [ 7.6557544, 47.5396255 ], + [ 7.6556885999999995, 47.539709 ], + [ 7.6556303, 47.539763 ], + [ 7.6555534, 47.5398076 ], + [ 7.6554622, 47.5398381 ], + [ 7.6552761, 47.5398674 ], + [ 7.6551908, 47.539892 ], + [ 7.6551176, 47.5399292 ], + [ 7.6540537, 47.5404725 ], + [ 7.6529917, 47.5410143 ], + [ 7.6518665, 47.5415879 ], + [ 7.6505804, 47.542244 ], + [ 7.6504756, 47.5423065 ], + [ 7.6503818, 47.5423754 ], + [ 7.6502676, 47.5424764 ], + [ 7.6501734, 47.5425483 ], + [ 7.6500644, 47.542614 ], + [ 7.6499705, 47.5426538 ], + [ 7.649872, 47.5426866 ], + [ 7.6497706, 47.5427142 ], + [ 7.6495695999999995, 47.5427614 ], + [ 7.6493818000000005, 47.5428283 ], + [ 7.6482887, 47.5433406 ], + [ 7.6471928, 47.5438536 ], + [ 7.6460989, 47.5443659 ], + [ 7.6459993, 47.5444126 ], + [ 7.6459994, 47.5444147 ], + [ 7.6459988, 47.5444169 ], + [ 7.6452241, 47.544776 ], + [ 7.6448141, 47.5449727 ], + [ 7.6448111999999995, 47.5449736 ], + [ 7.644808, 47.5449742 ], + [ 7.6448048, 47.5449745 ], + [ 7.6448015, 47.5449743 ], + [ 7.6441517999999995, 47.5452791 ], + [ 7.6435034, 47.5455795 ], + [ 7.6433614, 47.54566 ], + [ 7.6432359, 47.5457518 ], + [ 7.6431332, 47.5458192 ], + [ 7.64302, 47.5458793 ], + [ 7.6429341, 47.5459127 ], + [ 7.6428028, 47.5459479 ], + [ 7.6426634, 47.5459754 ], + [ 7.6424831, 47.5460037 ], + [ 7.6423093, 47.5460483 ], + [ 7.6420601999999995, 47.5461335 ], + [ 7.6418082, 47.5462157 ], + [ 7.6415534, 47.5462938 ], + [ 7.6412977, 47.5463679 ], + [ 7.6409369, 47.5464658 ], + [ 7.6405792, 47.5465572 ], + [ 7.6402125, 47.5466419 ], + [ 7.6398426, 47.5467195 ], + [ 7.6394709, 47.5467897 ], + [ 7.6381874, 47.5470174 ] + ], + [ + [ 7.6578584, 47.5407846 ], + [ 7.6578987, 47.5408935 ], + [ 7.6575423, 47.5409541 ], + [ 7.6575035, 47.5408458 ], + [ 7.6578584, 47.5407846 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLns307", + "country" : "CHE", + "name" : [ + { + "text" : "Geschütztes Naturobjekt Muttenzer Hard", + "lang" : "de-CH" + }, + { + "text" : "Objet naturel protégé Muttenzer Hard", + "lang" : "fr-CH" + }, + { + "text" : "Oggetto naturale protetto Muttenzer Hard", + "lang" : "it-CH" + }, + { + "text" : "Protected natural object Muttenzer Hard", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Ebenrain-Zentrum für Landwirtschaft, Natur und Ernährung", + "lang" : "de-CH" + }, + { + "text" : "Centre Ebenrain pour l’Agriculture, la Nature et l’Alimentation", + "lang" : "fr-CH" + }, + { + "text" : "Centro Ebenrain per l’Agricoltura, la Natura e l’Alimentazione", + "lang" : "it-CH" + }, + { + "text" : "Ebenrain Centre for Agriculture, Nature and Food", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Abteilung Natur und Landschaft", + "lang" : "de-CH" + }, + { + "text" : "Département Nature et Paysage", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento Natura e Paesaggio", + "lang" : "it-CH" + }, + { + "text" : "Department for Nature and Landscape", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Abteilungsleiter", + "lang" : "de-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "fr-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "it-CH" + }, + { + "text" : "Abteilungsleiter", + "lang" : "en-GB" + } + ], + "siteURL" : "http://www.natur-und-landschaft.bl.ch", + "email" : "naturundlandschaft@bl.ch", + "phone" : "+41 61 552 21 21", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P07DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8895845, 47.3437101 ], + [ 7.8815372, 47.3393745 ], + [ 7.8817067, 47.3392299 ], + [ 7.8808201, 47.3387539 ], + [ 7.8806572, 47.3388984 ], + [ 7.8800419, 47.3385671 ], + [ 7.8795689, 47.3389826 ], + [ 7.884798, 47.3418012 ], + [ 7.8844776, 47.3422567 ], + [ 7.8847062, 47.3423835 ], + [ 7.8850266, 47.3419235 ], + [ 7.8885214, 47.3438069 ], + [ 7.8881539, 47.3441771 ], + [ 7.8873136, 47.3435436 ], + [ 7.8871669, 47.3437267 ], + [ 7.8871225, 47.3439473 ], + [ 7.8878766, 47.3443986 ], + [ 7.8876703, 47.3445793 ], + [ 7.8882804, 47.3448881 ], + [ 7.8895845, 47.3437101 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "LSPO002", + "country" : "CHE", + "name" : [ + { + "text" : "LSPO Olten (Flugplatzperimeter)", + "lang" : "de-CH" + }, + { + "text" : "LSPO Olten (Périmètre d'aérodrome)", + "lang" : "fr-CH" + }, + { + "text" : "LSPO Olten (Perimetro dell'aerodromo)", + "lang" : "it-CH" + }, + { + "text" : "LSPO Olten (Airport perimeter)", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "AIR_TRAFFIC" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Segelfluggruppe Olten / SGOlten", + "lang" : "de-CH" + }, + { + "text" : "Segelfluggruppe Olten / SGOlten", + "lang" : "fr-CH" + }, + { + "text" : "Segelfluggruppe Olten / SGOlten", + "lang" : "it-CH" + }, + { + "text" : "Segelfluggruppe Olten / SGOlten", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Flugplatzleitung", + "lang" : "de-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "fr-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "it-CH" + }, + { + "text" : "Flugplatzleitung", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Urs Müller", + "lang" : "de-CH" + }, + { + "text" : "Urs Müller", + "lang" : "fr-CH" + }, + { + "text" : "Urs Müller", + "lang" : "it-CH" + }, + { + "text" : "Urs Müller", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.sgolten.ch", + "email" : "flugplatzchef@sgolten.ch", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P02DT12H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.4135751, 47.3820225 ], + [ 7.4134516, 47.3819195 ], + [ 7.4131838, 47.3817272 ], + [ 7.4133667, 47.3815025 ], + [ 7.4138174, 47.3811197 ], + [ 7.4140783, 47.380817 ], + [ 7.4142508, 47.38093 ], + [ 7.4144091, 47.3811039 ], + [ 7.4144603, 47.3811602 ], + [ 7.4144622, 47.3811578 ], + [ 7.4147611, 47.3815021 ], + [ 7.4148693, 47.3816029 ], + [ 7.4149524, 47.3816803 ], + [ 7.4150449, 47.381679 ], + [ 7.4149904, 47.3815666 ], + [ 7.4151133, 47.3814768 ], + [ 7.4153318, 47.3815702 ], + [ 7.4154884, 47.3816779 ], + [ 7.41568, 47.3819246 ], + [ 7.4159296, 47.3821262 ], + [ 7.4160657, 47.3822192 ], + [ 7.4162967, 47.3823769 ], + [ 7.4164619, 47.382535 ], + [ 7.4166586, 47.3824891 ], + [ 7.4167494, 47.3825154 ], + [ 7.4167825, 47.3825603 ], + [ 7.4169075, 47.3828186 ], + [ 7.4169631, 47.3828439 ], + [ 7.4170601, 47.3829206 ], + [ 7.4171746, 47.3830111 ], + [ 7.4172294, 47.3830054 ], + [ 7.4172584, 47.3830024 ], + [ 7.41729, 47.3829991 ], + [ 7.4174752, 47.3829799 ], + [ 7.4174819, 47.3829226 ], + [ 7.4174474, 47.3827153 ], + [ 7.4174427, 47.3826871 ], + [ 7.4174276, 47.3826715 ], + [ 7.4173923, 47.3826352 ], + [ 7.4173889, 47.3826318 ], + [ 7.4173884, 47.3826312 ], + [ 7.4172772, 47.3825166 ], + [ 7.4171917, 47.3824285 ], + [ 7.4170435999999995, 47.3822939 ], + [ 7.4170068, 47.3822604 ], + [ 7.4170014, 47.3821791 ], + [ 7.4170013, 47.3821783 ], + [ 7.4170012, 47.3821762 ], + [ 7.4169832, 47.3819027 ], + [ 7.4169793, 47.3818461 ], + [ 7.4169721, 47.3817409 ], + [ 7.4158579, 47.3812788 ], + [ 7.415481, 47.3811378 ], + [ 7.4154672, 47.3811261 ], + [ 7.4155993, 47.3811091 ], + [ 7.4158113, 47.3810813 ], + [ 7.4160071, 47.3810505 ], + [ 7.4162906, 47.3810502 ], + [ 7.4165745, 47.3810825 ], + [ 7.4165955, 47.3810803 ], + [ 7.4167596, 47.3810632 ], + [ 7.4170202, 47.3810095 ], + [ 7.417021, 47.3810091 ], + [ 7.4172125, 47.3809698 ], + [ 7.4175699, 47.3809246 ], + [ 7.4178201999999995, 47.380893 ], + [ 7.4178415, 47.3808903 ], + [ 7.4184028, 47.3807822 ], + [ 7.4188706, 47.3806403 ], + [ 7.418953, 47.3805895 ], + [ 7.4191434, 47.3804723 ], + [ 7.4193406, 47.3803021 ], + [ 7.4193517, 47.3802925 ], + [ 7.4195577, 47.3800919 ], + [ 7.4198027, 47.3799455 ], + [ 7.4200498, 47.3799271 ], + [ 7.4202479, 47.3799309 ], + [ 7.420267, 47.3799634 ], + [ 7.420343, 47.3800933 ], + [ 7.420388, 47.3801872 ], + [ 7.420673, 47.3802827 ], + [ 7.4206813, 47.3803104 ], + [ 7.4207817, 47.3803521 ], + [ 7.4208601, 47.3803839 ], + [ 7.4208867, 47.3803944 ], + [ 7.4209896, 47.3804393 ], + [ 7.4210754, 47.3804867 ], + [ 7.4210946, 47.3805014 ], + [ 7.4212184, 47.3806124 ], + [ 7.4215199, 47.3806517 ], + [ 7.4216815, 47.3806887 ], + [ 7.4217402, 47.3807053 ], + [ 7.4220948, 47.3807471 ], + [ 7.4222089, 47.3807254 ], + [ 7.4225082, 47.3806473 ], + [ 7.4226436, 47.3806203 ], + [ 7.4228131, 47.3805757 ], + [ 7.4228913, 47.3805551 ], + [ 7.4231783, 47.3804613 ], + [ 7.4235086, 47.3803627 ], + [ 7.4236603, 47.3802958 ], + [ 7.4237372, 47.3801677 ], + [ 7.4238145, 47.3800261 ], + [ 7.4238624, 47.3797413 ], + [ 7.4238711, 47.3796598 ], + [ 7.4238775, 47.3795999 ], + [ 7.4238303, 47.3796032 ], + [ 7.4237831, 47.3796065 ], + [ 7.4229304, 47.3796601 ], + [ 7.421844, 47.3797319 ], + [ 7.4199453, 47.3798812 ], + [ 7.4181357, 47.3800443 ], + [ 7.4168374, 47.3801603 ], + [ 7.4168307, 47.3801609 ], + [ 7.4164909, 47.3801913 ], + [ 7.4146022, 47.3803565 ], + [ 7.4140403, 47.380399 ], + [ 7.4116977, 47.3805763 ], + [ 7.4127507999999995, 47.3815666 ], + [ 7.413038, 47.381825 ], + [ 7.4130616, 47.3818463 ], + [ 7.4130852, 47.3818675 ], + [ 7.4134558, 47.3822009 ], + [ 7.4135478, 47.3821514 ], + [ 7.4135751, 47.3820225 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr027", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Vordere Rohrberg", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Vordere Rohrberg", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Vordere Rohrberg", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Vordere Rohrberg", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.78768, 47.42813 ], + [ 7.7873329, 47.4283256 ], + [ 7.7873597, 47.4283411 ], + [ 7.7873755, 47.4283503 ], + [ 7.7873985999999995, 47.4283637 ], + [ 7.7873912, 47.4285511 ], + [ 7.787868, 47.4286357 ], + [ 7.788417, 47.4288494 ], + [ 7.7891316, 47.4291177 ], + [ 7.7895459, 47.4292718 ], + [ 7.789745, 47.4292113 ], + [ 7.7907397, 47.4288205 ], + [ 7.7909377, 47.4287357 ], + [ 7.7910484, 47.4286763 ], + [ 7.7907126, 47.4284854 ], + [ 7.7902339, 47.4283673 ], + [ 7.7897551, 47.4281764 ], + [ 7.7893362, 47.4279903 ], + [ 7.7891112, 47.4278189 ], + [ 7.7889324, 47.4276508 ], + [ 7.7883448, 47.4278757 ], + [ 7.7881371, 47.4279551 ], + [ 7.78768, 47.42813 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr138", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Brunnmätteli", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Brunnmätteli", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Brunnmätteli", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Brunnmätteli", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + }, + { + "type" : "Feature", + "geometry" : { + "type" : "Polygon", + "coordinates" : [ + [ + [ 7.8313608, 47.4397459 ], + [ 7.8313662, 47.4398089 ], + [ 7.8314058, 47.4398161 ], + [ 7.8319707, 47.4399772 ], + [ 7.8322994999999995, 47.440021 ], + [ 7.832373, 47.4400377 ], + [ 7.8325252, 47.4400723 ], + [ 7.8325592, 47.4400827 ], + [ 7.8326996, 47.4401252 ], + [ 7.8328884, 47.4401825 ], + [ 7.8329889999999995, 47.440213 ], + [ 7.8332043, 47.4402783 ], + [ 7.8332002, 47.4402408 ], + [ 7.8331899, 47.440148 ], + [ 7.8331294, 47.4396019 ], + [ 7.8330544, 47.4390548 ], + [ 7.8330509, 47.439032 ], + [ 7.8330465, 47.4390094 ], + [ 7.8330413, 47.4389868 ], + [ 7.8330353, 47.4389643 ], + [ 7.8330284, 47.4389419 ], + [ 7.8330208, 47.4389197 ], + [ 7.8330165, 47.4389085 ], + [ 7.8330123, 47.4388976 ], + [ 7.8330029, 47.4388756 ], + [ 7.8329927999999995, 47.4388538 ], + [ 7.8329818, 47.4388322 ], + [ 7.8329371, 47.4387467 ], + [ 7.8328084, 47.4388008 ], + [ 7.8326827, 47.438846 ], + [ 7.8324085, 47.4389861 ], + [ 7.8323552, 47.4390685 ], + [ 7.8322595, 47.4392417 ], + [ 7.8320351, 47.4392175 ], + [ 7.8317109, 47.4391465 ], + [ 7.8315776, 47.4391349 ], + [ 7.8314306, 47.4396597 ], + [ 7.8313741, 47.4397397 ], + [ 7.8313608, 47.4397459 ] + ] + ], + "layer" : { + "upper" : 99999, + "upperReference" : "AGL", + "lower" : 0, + "lowerReference" : "AGL", + "uom" : "m" + } + }, + "properties" : { + "identifier" : "BLwr090", + "country" : "CHE", + "name" : [ + { + "text" : "Wildruhezohne Holden", + "lang" : "de-CH" + }, + { + "text" : "Zone de tranquillité pour la faune sauvage Holden", + "lang" : "fr-CH" + }, + { + "text" : "Zone di tranquillità per la fauna selvatica Holden", + "lang" : "it-CH" + }, + { + "text" : "Wildlife refuge Holden", + "lang" : "en-GB" + } + ], + "type" : "REQ_AUTHORIZATION", + "variant" : "COMMON", + "restrictionConditions" : "The operation of unmanned aircraft is only allowed with exemption permit.", + "region" : 0, + "reason" : [ "NATURE" ], + "extendedProperties" : { + "addInfo" : "Exemption permits may be applied for at the competent authority." + }, + "zoneAuthority" : [ + { + "name" : [ + { + "text" : "Amt für Wald beider Basel", + "lang" : "de-CH" + }, + { + "text" : "Office des forêts des Cantons de Bâle", + "lang" : "fr-CH" + }, + { + "text" : "Ufficio forestale dei Cantoni di Basilea", + "lang" : "it-CH" + }, + { + "text" : "Forest office of the Cantons of Basel", + "lang" : "en-GB" + } + ], + "service" : [ + { + "text" : "Fachstelle Wildtiere, Jagd und Fischerei", + "lang" : "de-CH" + }, + { + "text" : "Service de la faune, de la chasse et de la pêche", + "lang" : "fr-CH" + }, + { + "text" : "Dipartimento di fauna selvatica, caccia e pesca", + "lang" : "it-CH" + }, + { + "text" : "Department of wildlife, hunting and fisheries", + "lang" : "en-GB" + } + ], + "contactName" : [ + { + "text" : "Wildtiermanagement", + "lang" : "de-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "fr-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "it-CH" + }, + { + "text" : "Wildtiermanagement", + "lang" : "en-GB" + } + ], + "siteURL" : "https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fuer-wald-beider-basel/jagd/", + "email" : "jagdundfischerei@bl.ch", + "phone" : "+41 61 552 56 59", + "purpose" : "AUTHORIZATION", + "intervalBefore" : "P10DT00H" + } + ] + } + } + ] +} diff --git a/monitoring/uss_qualifier/test_data/che/geoawareness/SwissGeozones_ED318_Testdaten.zip b/monitoring/uss_qualifier/test_data/che/geoawareness/SwissGeozones_ED318_Testdaten.zip new file mode 100644 index 0000000000..d5ddc94b05 Binary files /dev/null and b/monitoring/uss_qualifier/test_data/che/geoawareness/SwissGeozones_ED318_Testdaten.zip differ diff --git a/monitoring/uss_qualifier/test_data/che/geoawareness/flattened_schema.json b/monitoring/uss_qualifier/test_data/che/geoawareness/flattened_schema.json new file mode 100644 index 0000000000..3a5a1b9bdd --- /dev/null +++ b/monitoring/uss_qualifier/test_data/che/geoawareness/flattened_schema.json @@ -0,0 +1,1925 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "title": "GeoJSON FeatureCollection", + "type": "object", + "required": [ + "type", + "features" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "FeatureCollection" + ] + }, + "name": { + "type": "string", + "maxLength": 200 + }, + "bbox": { + "type": "array", + "minItems": 4, + "items": { + "type": "number" + } + }, + "metadata": { + "$schema": "http://json-schema.org/draft-07/schema#", + "title": "collection metadata", + "type": "object", + "properties": { + "validFrom": { + "type": "string", + "format": "date-time" + }, + "validTo": { + "type": "string", + "format": "date-time" + }, + "issued": { + "type": "string", + "format": "date-time" + }, + "provider": { + "type": "array", + "items": { + "type": "object", + "properties": { + "text": { + "type": "string", + "maxLength": 200 + }, + "lang": { + "type": "string", + "maxLength": 5 + } + }, + "required": [ + "lang" + ] + } + }, + "description": { + "type": "array", + "items": { + "type": "object", + "properties": { + "text": { + "type": "string", + "maxLength": 200 + }, + "lang": { + "type": "string", + "maxLength": 5 + } + }, + "required": [ + "lang" + ] + } + }, + "otherGeoid": { + "type": "string" + }, + "technicalLimitations": { + "type": "array", + "items": { + "type": "object", + "properties": { + "text": { + "type": "string", + "maxLength": 200 + }, + "lang": { + "type": "string", + "maxLength": 5 + } + }, + "required": [ + "lang" + ] + } + } + }, + "required": [] + }, + "features": { + "type": "array", + "items": { + "title": "GeoJSON Feature", + "type": "object", + "required": [ + "type", + "properties", + "geometry" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "Feature" + ] + }, + "id": { + "oneOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + }, + "properties": { + "oneOf": [ + { + "type": "null" + }, + { + "$schema": "http://json-schema.org/draft-07/schema#", + "title": "UASZoneVersion", + "type": "object", + "properties": { + "identifier": { + "type": "string", + "maxLength": 7 + }, + "country": { + "type": "string", + "minLength": 3, + "maxLength": 3 + }, + "name": { + "type": "array", + "items": { + "type": "object", + "properties": { + "text": { + "type": "string", + "maxLength": 200 + }, + "lang": { + "type": "string", + "maxLength": 5 + } + }, + "required": [ + "lang" + ] + } + }, + "type": { + "type": "string", + "enum": [ + "USPACE", + "PROHIBITED", + "REQ_AUTHORIZATION", + "CONDITIONAL", + "NO_RESTRICTION" + ] + }, + "variant": { + "type": "string", + "enum": [ + "COMMON", + "CUSTOMIZED" + ] + }, + "restrictionConditions": { + "type": "string" + }, + "region": { + "type": "integer" + }, + "reason": { + "type": "array", + "maxItems": 9, + "items": { + "type": "string", + "enum": [ + "AIR_TRAFFIC", + "SENSITIVE", + "PRIVACY", + "POPULATION", + "NATURE", + "NOISE", + "EMERGENCY", + "DAR", + "OTHER" + ] + } + }, + "otherReasonInfo": { + "type": "array", + "items": { + "type": "object", + "properties": { + "text": { + "type": "string", + "maxLength": 200 + }, + "lang": { + "type": "string", + "maxLength": 5 + } + }, + "required": [ + "lang" + ] + } + }, + "regulationExemption": { + "type": "string", + "enum": [ + "YES", + "NO" + ] + }, + "message": { + "type": "array", + "items": { + "type": "object", + "properties": { + "text": { + "type": "string", + "maxLength": 200 + }, + "lang": { + "type": "string", + "maxLength": 5 + } + }, + "required": [ + "lang" + ] + } + }, + "zoneAuthority": { + "type": "array", + "items": { + "$schema": "http://json-schema.org/draft-07/schema#", + "title": "authority", + "type": "object", + "properties": { + "name": { + "type": "array", + "items": { + "type": "object", + "properties": { + "text": { + "type": "string", + "maxLength": 200 + }, + "lang": { + "type": "string", + "maxLength": 5 + } + }, + "required": [ + "lang" + ] + } + }, + "service": { + "type": "array", + "items": { + "type": "object", + "properties": { + "text": { + "type": "string", + "maxLength": 200 + }, + "lang": { + "type": "string", + "maxLength": 5 + } + }, + "required": [ + "lang" + ] + } + }, + "contactName": { + "type": "array", + "items": { + "type": "object", + "properties": { + "text": { + "type": "string", + "maxLength": 200 + }, + "lang": { + "type": "string", + "maxLength": 5 + } + }, + "required": [ + "lang" + ] + } + }, + "siteURL": { + "type": "string", + "format": "uri" + }, + "email": { + "type": "string", + "format": "email" + }, + "phone": { + "type": "string", + "maxLength": 200 + }, + "purpose": { + "type": "string", + "enum": [ + "AUTHORIZATION", + "NOTIFICATION", + "INFORMATION" + ] + }, + "intervalBefore": { + "description": "A period of time expressed according to the ISO 8601 rules for time intervals.", + "type": "string", + "format": "duration" + } + }, + "required": [ + "purpose" + ] + }, + "minItems": 1 + }, + "limitedApplicability": { + "type": "array", + "items": { + "$schema": "http://json-schema.org/draft-07/schema#", + "title": "timePeriod", + "type": "object", + "definitions": { + "dailyPeriod": { + "type": "object", + "additionalProperties": false, + "required": [ + "day" + ], + "properties": { + "day": { + "type": "array", + "items": { + "type": "string", + "enum": [ + "MON", + "TUE", + "WED", + "THU", + "FRI", + "SAT", + "SUN", + "ANY" + ] + } + }, + "startTime": { + "type": "string", + "format": "time" + }, + "startEvent": { + "type": "string", + "enum": [ + "BMCT", + "SR", + "SS", + "EECT" + ] + }, + "endTime": { + "type": "string", + "format": "time" + }, + "endEvent": { + "type": "string", + "enum": [ + "BMCT", + "SR", + "SS", + "EECT" + ] + } + } + } + }, + "properties": { + "startDateTime": { + "type": "string", + "format": "date-time" + }, + "endDateTime": { + "type": "string", + "format": "date-time" + }, + "schedule": { + "type": "array", + "items": { + "type": "object", + "additionalProperties": false, + "required": [ + "day" + ], + "properties": { + "day": { + "type": "array", + "items": { + "type": "string", + "enum": [ + "MON", + "TUE", + "WED", + "THU", + "FRI", + "SAT", + "SUN", + "ANY" + ] + } + }, + "startTime": { + "type": "string", + "format": "time" + }, + "startEvent": { + "type": "string", + "enum": [ + "BMCT", + "SR", + "SS", + "EECT" + ] + }, + "endTime": { + "type": "string", + "format": "time" + }, + "endEvent": { + "type": "string", + "enum": [ + "BMCT", + "SR", + "SS", + "EECT" + ] + } + } + } + } + }, + "additionalProperties": false, + "required": [] + } + }, + "dataSource": { + "type": "object", + "properties": { + "creationDate": { + "type": "string", + "format": "DateTimeType" + }, + "updateDateTime": { + "type": "string", + "format": "DateTimeType" + }, + "originator": { + "type": "object", + "properties": { + "text": { + "type": "string", + "maxLength": 200 + }, + "lang": { + "type": "string", + "maxLength": 5 + } + }, + "required": [ + "lang" + ] + } + } + }, + "extendedProperties": { + "type": "object" + } + }, + "required": [ + "identifier", + "country", + "type", + "variant", + "zoneAuthority" + ], + "additionalProperties": false + } + ] + }, + "geometry": { + "oneOf": [ + { + "type": "null" + }, + { + "$schema": "http://json-schema.org/draft-07/schema#", + "title": "Any one of the GeoJSON geometry types, including LayeredGeoJSON validation.", + "definitions": { + "normalGeometry": { + "allOf": [ + { + "oneOf": [ + { + "type": "null" + }, + { + "title": "GeoJSON Point with LayeredGeoJSON extent validation", + "type": "object", + "required": [ + "type", + "coordinates" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "Point" + ] + }, + "coordinates": { + "type": "array", + "minItems": 2, + "items": { + "type": "number" + } + }, + "bbox": { + "type": "array", + "minItems": 4, + "items": { + "type": "number" + } + } + }, + "extent": { + "type": "object", + "required": [ + "subType", + "radius" + ], + "properties": { + "subType": { + "type": "string", + "enum": [ + "Circle" + ] + }, + "radius": { + "type": "number" + } + } + } + }, + { + "title": "GeoJSON LineString", + "type": "object", + "required": [ + "type", + "coordinates" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "LineString" + ] + }, + "coordinates": { + "type": "array", + "minItems": 2, + "items": { + "type": "array", + "minItems": 2, + "items": { + "type": "number" + } + } + }, + "bbox": { + "type": "array", + "minItems": 4, + "items": { + "type": "number" + } + } + } + }, + { + "title": "GeoJSON Polygon", + "type": "object", + "required": [ + "type", + "coordinates" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "Polygon" + ] + }, + "coordinates": { + "type": "array", + "items": { + "type": "array", + "minItems": 4, + "items": { + "type": "array", + "minItems": 2, + "items": { + "type": "number" + } + } + } + }, + "bbox": { + "type": "array", + "minItems": 4, + "items": { + "type": "number" + } + } + } + }, + { + "title": "GeoJSON MultiPoint", + "type": "object", + "required": [ + "type", + "coordinates" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "MultiPoint" + ] + }, + "coordinates": { + "type": "array", + "items": { + "type": "array", + "minItems": 2, + "items": { + "type": "number" + } + } + }, + "bbox": { + "type": "array", + "minItems": 4, + "items": { + "type": "number" + } + } + } + }, + { + "title": "GeoJSON MultiLineString", + "type": "object", + "required": [ + "type", + "coordinates" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "MultiLineString" + ] + }, + "coordinates": { + "type": "array", + "items": { + "type": "array", + "minItems": 2, + "items": { + "type": "array", + "minItems": 2, + "items": { + "type": "number" + } + } + } + }, + "bbox": { + "type": "array", + "minItems": 4, + "items": { + "type": "number" + } + } + } + }, + { + "title": "GeoJSON MultiPolygon", + "type": "object", + "required": [ + "type", + "coordinates" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "MultiPolygon" + ] + }, + "coordinates": { + "type": "array", + "items": { + "type": "array", + "items": { + "type": "array", + "minItems": 4, + "items": { + "type": "array", + "minItems": 2, + "items": { + "type": "number" + } + } + } + } + }, + "bbox": { + "type": "array", + "minItems": 4, + "items": { + "type": "number" + } + } + } + } + ] + }, + { + "$schema": "http://json-schema.org/draft-07/schema#", + "title": "LayeredGeoJSON members", + "description": "A vertical layer extent for all standard GeoJSON geometries", + "type": "object", + "definitions": { + "verticalReference": { + "description": "A code indicating a vertical reference system. Allowed values:\nAGL = Above ground level (or above water surface, as applicable)\nAMSL = Above Mean Sea Level\nWGS84 = Above the surface of the WGS-84 ellipsoid (Ellipsoidal height)", + "type": "string", + "enum": [ + "AGL", + "AMSL", + "WGS84" + ] + } + }, + "properties": { + "layer": { + "type": "object", + "properties": { + "upper": { + "description": "The value of the upper limit of the airspace layer expressed in metres (m) or feet (ft), in relation with the vertical datum specified in the upperReference property. A positive value is interpreted as meaning \"above\" the reference surface.", + "type": "number" + }, + "upperReference": { + "description": "A code indicating a vertical reference system. Allowed values:\nAGL = Above ground level (or above water surface, as applicable)\nAMSL = Above Mean Sea Level\nWGS84 = Above the surface of the WGS-84 ellipsoid (Ellipsoidal height)", + "type": "string", + "enum": [ + "AGL", + "AMSL", + "WGS84" + ] + }, + "lower": { + "description": "The value of the lower limit of the airspace layer expressed in metres (m) or feet (ft), in relation with the vertical datum specified in the lowerReference property. A positive value is interpreted as meaning \"above\" the reference surface.", + "type": "number" + }, + "lowerReference": { + "description": "A code indicating a vertical reference system. Allowed values:\nAGL = Above ground level (or above water surface, as applicable)\nAMSL = Above Mean Sea Level\nWGS84 = Above the surface of the WGS-84 ellipsoid (Ellipsoidal height)", + "type": "string", + "enum": [ + "AGL", + "AMSL", + "WGS84" + ] + }, + "uom": { + "description": "The unit of measurement in which the upper and lower values are expressed. Allowable values:\nm = metres\nft = feet\nIf this member is not specified, the units should be assumed to be metres.", + "type": "string", + "enum": [ + "m", + "ft" + ], + "default": "m" + } + } + } + } + } + ] + }, + "geometryCollection": { + "allOf": [ + { + "title": "GeoJSON GeometryCollection", + "type": "object", + "required": [ + "type", + "geometries" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "GeometryCollection" + ] + }, + "geometries": { + "type": "array", + "items": { + "allOf": [ + { + "oneOf": [ + { + "type": "null" + }, + { + "title": "GeoJSON Point with LayeredGeoJSON extent validation", + "type": "object", + "required": [ + "type", + "coordinates" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "Point" + ] + }, + "coordinates": { + "type": "array", + "minItems": 2, + "items": { + "type": "number" + } + }, + "bbox": { + "type": "array", + "minItems": 4, + "items": { + "type": "number" + } + } + }, + "extent": { + "type": "object", + "required": [ + "subType", + "radius" + ], + "properties": { + "subType": { + "type": "string", + "enum": [ + "Circle" + ] + }, + "radius": { + "type": "number" + } + } + } + }, + { + "title": "GeoJSON LineString", + "type": "object", + "required": [ + "type", + "coordinates" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "LineString" + ] + }, + "coordinates": { + "type": "array", + "minItems": 2, + "items": { + "type": "array", + "minItems": 2, + "items": { + "type": "number" + } + } + }, + "bbox": { + "type": "array", + "minItems": 4, + "items": { + "type": "number" + } + } + } + }, + { + "title": "GeoJSON Polygon", + "type": "object", + "required": [ + "type", + "coordinates" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "Polygon" + ] + }, + "coordinates": { + "type": "array", + "items": { + "type": "array", + "minItems": 4, + "items": { + "type": "array", + "minItems": 2, + "items": { + "type": "number" + } + } + } + }, + "bbox": { + "type": "array", + "minItems": 4, + "items": { + "type": "number" + } + } + } + }, + { + "title": "GeoJSON MultiPoint", + "type": "object", + "required": [ + "type", + "coordinates" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "MultiPoint" + ] + }, + "coordinates": { + "type": "array", + "items": { + "type": "array", + "minItems": 2, + "items": { + "type": "number" + } + } + }, + "bbox": { + "type": "array", + "minItems": 4, + "items": { + "type": "number" + } + } + } + }, + { + "title": "GeoJSON MultiLineString", + "type": "object", + "required": [ + "type", + "coordinates" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "MultiLineString" + ] + }, + "coordinates": { + "type": "array", + "items": { + "type": "array", + "minItems": 2, + "items": { + "type": "array", + "minItems": 2, + "items": { + "type": "number" + } + } + } + }, + "bbox": { + "type": "array", + "minItems": 4, + "items": { + "type": "number" + } + } + } + }, + { + "title": "GeoJSON MultiPolygon", + "type": "object", + "required": [ + "type", + "coordinates" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "MultiPolygon" + ] + }, + "coordinates": { + "type": "array", + "items": { + "type": "array", + "items": { + "type": "array", + "minItems": 4, + "items": { + "type": "array", + "minItems": 2, + "items": { + "type": "number" + } + } + } + } + }, + "bbox": { + "type": "array", + "minItems": 4, + "items": { + "type": "number" + } + } + } + } + ] + }, + { + "$schema": "http://json-schema.org/draft-07/schema#", + "title": "LayeredGeoJSON members", + "description": "A vertical layer extent for all standard GeoJSON geometries", + "type": "object", + "definitions": { + "verticalReference": { + "description": "A code indicating a vertical reference system. Allowed values:\nAGL = Above ground level (or above water surface, as applicable)\nAMSL = Above Mean Sea Level\nWGS84 = Above the surface of the WGS-84 ellipsoid (Ellipsoidal height)", + "type": "string", + "enum": [ + "AGL", + "AMSL", + "WGS84" + ] + } + }, + "properties": { + "layer": { + "type": "object", + "properties": { + "upper": { + "description": "The value of the upper limit of the airspace layer expressed in metres (m) or feet (ft), in relation with the vertical datum specified in the upperReference property. A positive value is interpreted as meaning \"above\" the reference surface.", + "type": "number" + }, + "upperReference": { + "description": "A code indicating a vertical reference system. Allowed values:\nAGL = Above ground level (or above water surface, as applicable)\nAMSL = Above Mean Sea Level\nWGS84 = Above the surface of the WGS-84 ellipsoid (Ellipsoidal height)", + "type": "string", + "enum": [ + "AGL", + "AMSL", + "WGS84" + ] + }, + "lower": { + "description": "The value of the lower limit of the airspace layer expressed in metres (m) or feet (ft), in relation with the vertical datum specified in the lowerReference property. A positive value is interpreted as meaning \"above\" the reference surface.", + "type": "number" + }, + "lowerReference": { + "description": "A code indicating a vertical reference system. Allowed values:\nAGL = Above ground level (or above water surface, as applicable)\nAMSL = Above Mean Sea Level\nWGS84 = Above the surface of the WGS-84 ellipsoid (Ellipsoidal height)", + "type": "string", + "enum": [ + "AGL", + "AMSL", + "WGS84" + ] + }, + "uom": { + "description": "The unit of measurement in which the upper and lower values are expressed. Allowable values:\nm = metres\nft = feet\nIf this member is not specified, the units should be assumed to be metres.", + "type": "string", + "enum": [ + "m", + "ft" + ], + "default": "m" + } + } + } + } + } + ] + } + }, + "bbox": { + "type": "array", + "minItems": 4, + "items": { + "type": "number" + } + } + } + }, + { + "$schema": "http://json-schema.org/draft-07/schema#", + "title": "LayeredGeoJSON members", + "description": "A vertical layer extent for all standard GeoJSON geometries", + "type": "object", + "definitions": { + "verticalReference": { + "description": "A code indicating a vertical reference system. Allowed values:\nAGL = Above ground level (or above water surface, as applicable)\nAMSL = Above Mean Sea Level\nWGS84 = Above the surface of the WGS-84 ellipsoid (Ellipsoidal height)", + "type": "string", + "enum": [ + "AGL", + "AMSL", + "WGS84" + ] + } + }, + "properties": { + "layer": { + "type": "object", + "properties": { + "upper": { + "description": "The value of the upper limit of the airspace layer expressed in metres (m) or feet (ft), in relation with the vertical datum specified in the upperReference property. A positive value is interpreted as meaning \"above\" the reference surface.", + "type": "number" + }, + "upperReference": { + "description": "A code indicating a vertical reference system. Allowed values:\nAGL = Above ground level (or above water surface, as applicable)\nAMSL = Above Mean Sea Level\nWGS84 = Above the surface of the WGS-84 ellipsoid (Ellipsoidal height)", + "type": "string", + "enum": [ + "AGL", + "AMSL", + "WGS84" + ] + }, + "lower": { + "description": "The value of the lower limit of the airspace layer expressed in metres (m) or feet (ft), in relation with the vertical datum specified in the lowerReference property. A positive value is interpreted as meaning \"above\" the reference surface.", + "type": "number" + }, + "lowerReference": { + "description": "A code indicating a vertical reference system. Allowed values:\nAGL = Above ground level (or above water surface, as applicable)\nAMSL = Above Mean Sea Level\nWGS84 = Above the surface of the WGS-84 ellipsoid (Ellipsoidal height)", + "type": "string", + "enum": [ + "AGL", + "AMSL", + "WGS84" + ] + }, + "uom": { + "description": "The unit of measurement in which the upper and lower values are expressed. Allowable values:\nm = metres\nft = feet\nIf this member is not specified, the units should be assumed to be metres.", + "type": "string", + "enum": [ + "m", + "ft" + ], + "default": "m" + } + } + } + } + } + ] + } + }, + "oneOf": [ + { + "allOf": [ + { + "oneOf": [ + { + "type": "null" + }, + { + "title": "GeoJSON Point with LayeredGeoJSON extent validation", + "type": "object", + "required": [ + "type", + "coordinates" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "Point" + ] + }, + "coordinates": { + "type": "array", + "minItems": 2, + "items": { + "type": "number" + } + }, + "bbox": { + "type": "array", + "minItems": 4, + "items": { + "type": "number" + } + } + }, + "extent": { + "type": "object", + "required": [ + "subType", + "radius" + ], + "properties": { + "subType": { + "type": "string", + "enum": [ + "Circle" + ] + }, + "radius": { + "type": "number" + } + } + } + }, + { + "title": "GeoJSON LineString", + "type": "object", + "required": [ + "type", + "coordinates" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "LineString" + ] + }, + "coordinates": { + "type": "array", + "minItems": 2, + "items": { + "type": "array", + "minItems": 2, + "items": { + "type": "number" + } + } + }, + "bbox": { + "type": "array", + "minItems": 4, + "items": { + "type": "number" + } + } + } + }, + { + "title": "GeoJSON Polygon", + "type": "object", + "required": [ + "type", + "coordinates" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "Polygon" + ] + }, + "coordinates": { + "type": "array", + "items": { + "type": "array", + "minItems": 4, + "items": { + "type": "array", + "minItems": 2, + "items": { + "type": "number" + } + } + } + }, + "bbox": { + "type": "array", + "minItems": 4, + "items": { + "type": "number" + } + } + } + }, + { + "title": "GeoJSON MultiPoint", + "type": "object", + "required": [ + "type", + "coordinates" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "MultiPoint" + ] + }, + "coordinates": { + "type": "array", + "items": { + "type": "array", + "minItems": 2, + "items": { + "type": "number" + } + } + }, + "bbox": { + "type": "array", + "minItems": 4, + "items": { + "type": "number" + } + } + } + }, + { + "title": "GeoJSON MultiLineString", + "type": "object", + "required": [ + "type", + "coordinates" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "MultiLineString" + ] + }, + "coordinates": { + "type": "array", + "items": { + "type": "array", + "minItems": 2, + "items": { + "type": "array", + "minItems": 2, + "items": { + "type": "number" + } + } + } + }, + "bbox": { + "type": "array", + "minItems": 4, + "items": { + "type": "number" + } + } + } + }, + { + "title": "GeoJSON MultiPolygon", + "type": "object", + "required": [ + "type", + "coordinates" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "MultiPolygon" + ] + }, + "coordinates": { + "type": "array", + "items": { + "type": "array", + "items": { + "type": "array", + "minItems": 4, + "items": { + "type": "array", + "minItems": 2, + "items": { + "type": "number" + } + } + } + } + }, + "bbox": { + "type": "array", + "minItems": 4, + "items": { + "type": "number" + } + } + } + } + ] + }, + { + "$schema": "http://json-schema.org/draft-07/schema#", + "title": "LayeredGeoJSON members", + "description": "A vertical layer extent for all standard GeoJSON geometries", + "type": "object", + "definitions": { + "verticalReference": { + "description": "A code indicating a vertical reference system. Allowed values:\nAGL = Above ground level (or above water surface, as applicable)\nAMSL = Above Mean Sea Level\nWGS84 = Above the surface of the WGS-84 ellipsoid (Ellipsoidal height)", + "type": "string", + "enum": [ + "AGL", + "AMSL", + "WGS84" + ] + } + }, + "properties": { + "layer": { + "type": "object", + "properties": { + "upper": { + "description": "The value of the upper limit of the airspace layer expressed in metres (m) or feet (ft), in relation with the vertical datum specified in the upperReference property. A positive value is interpreted as meaning \"above\" the reference surface.", + "type": "number" + }, + "upperReference": { + "description": "A code indicating a vertical reference system. Allowed values:\nAGL = Above ground level (or above water surface, as applicable)\nAMSL = Above Mean Sea Level\nWGS84 = Above the surface of the WGS-84 ellipsoid (Ellipsoidal height)", + "type": "string", + "enum": [ + "AGL", + "AMSL", + "WGS84" + ] + }, + "lower": { + "description": "The value of the lower limit of the airspace layer expressed in metres (m) or feet (ft), in relation with the vertical datum specified in the lowerReference property. A positive value is interpreted as meaning \"above\" the reference surface.", + "type": "number" + }, + "lowerReference": { + "description": "A code indicating a vertical reference system. Allowed values:\nAGL = Above ground level (or above water surface, as applicable)\nAMSL = Above Mean Sea Level\nWGS84 = Above the surface of the WGS-84 ellipsoid (Ellipsoidal height)", + "type": "string", + "enum": [ + "AGL", + "AMSL", + "WGS84" + ] + }, + "uom": { + "description": "The unit of measurement in which the upper and lower values are expressed. Allowable values:\nm = metres\nft = feet\nIf this member is not specified, the units should be assumed to be metres.", + "type": "string", + "enum": [ + "m", + "ft" + ], + "default": "m" + } + } + } + } + } + ] + }, + { + "allOf": [ + { + "title": "GeoJSON GeometryCollection", + "type": "object", + "required": [ + "type", + "geometries" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "GeometryCollection" + ] + }, + "geometries": { + "type": "array", + "items": { + "allOf": [ + { + "oneOf": [ + { + "type": "null" + }, + { + "title": "GeoJSON Point with LayeredGeoJSON extent validation", + "type": "object", + "required": [ + "type", + "coordinates" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "Point" + ] + }, + "coordinates": { + "type": "array", + "minItems": 2, + "items": { + "type": "number" + } + }, + "bbox": { + "type": "array", + "minItems": 4, + "items": { + "type": "number" + } + } + }, + "extent": { + "type": "object", + "required": [ + "subType", + "radius" + ], + "properties": { + "subType": { + "type": "string", + "enum": [ + "Circle" + ] + }, + "radius": { + "type": "number" + } + } + } + }, + { + "title": "GeoJSON LineString", + "type": "object", + "required": [ + "type", + "coordinates" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "LineString" + ] + }, + "coordinates": { + "type": "array", + "minItems": 2, + "items": { + "type": "array", + "minItems": 2, + "items": { + "type": "number" + } + } + }, + "bbox": { + "type": "array", + "minItems": 4, + "items": { + "type": "number" + } + } + } + }, + { + "title": "GeoJSON Polygon", + "type": "object", + "required": [ + "type", + "coordinates" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "Polygon" + ] + }, + "coordinates": { + "type": "array", + "items": { + "type": "array", + "minItems": 4, + "items": { + "type": "array", + "minItems": 2, + "items": { + "type": "number" + } + } + } + }, + "bbox": { + "type": "array", + "minItems": 4, + "items": { + "type": "number" + } + } + } + }, + { + "title": "GeoJSON MultiPoint", + "type": "object", + "required": [ + "type", + "coordinates" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "MultiPoint" + ] + }, + "coordinates": { + "type": "array", + "items": { + "type": "array", + "minItems": 2, + "items": { + "type": "number" + } + } + }, + "bbox": { + "type": "array", + "minItems": 4, + "items": { + "type": "number" + } + } + } + }, + { + "title": "GeoJSON MultiLineString", + "type": "object", + "required": [ + "type", + "coordinates" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "MultiLineString" + ] + }, + "coordinates": { + "type": "array", + "items": { + "type": "array", + "minItems": 2, + "items": { + "type": "array", + "minItems": 2, + "items": { + "type": "number" + } + } + } + }, + "bbox": { + "type": "array", + "minItems": 4, + "items": { + "type": "number" + } + } + } + }, + { + "title": "GeoJSON MultiPolygon", + "type": "object", + "required": [ + "type", + "coordinates" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "MultiPolygon" + ] + }, + "coordinates": { + "type": "array", + "items": { + "type": "array", + "items": { + "type": "array", + "minItems": 4, + "items": { + "type": "array", + "minItems": 2, + "items": { + "type": "number" + } + } + } + } + }, + "bbox": { + "type": "array", + "minItems": 4, + "items": { + "type": "number" + } + } + } + } + ] + }, + { + "$schema": "http://json-schema.org/draft-07/schema#", + "title": "LayeredGeoJSON members", + "description": "A vertical layer extent for all standard GeoJSON geometries", + "type": "object", + "definitions": { + "verticalReference": { + "description": "A code indicating a vertical reference system. Allowed values:\nAGL = Above ground level (or above water surface, as applicable)\nAMSL = Above Mean Sea Level\nWGS84 = Above the surface of the WGS-84 ellipsoid (Ellipsoidal height)", + "type": "string", + "enum": [ + "AGL", + "AMSL", + "WGS84" + ] + } + }, + "properties": { + "layer": { + "type": "object", + "properties": { + "upper": { + "description": "The value of the upper limit of the airspace layer expressed in metres (m) or feet (ft), in relation with the vertical datum specified in the upperReference property. A positive value is interpreted as meaning \"above\" the reference surface.", + "type": "number" + }, + "upperReference": { + "description": "A code indicating a vertical reference system. Allowed values:\nAGL = Above ground level (or above water surface, as applicable)\nAMSL = Above Mean Sea Level\nWGS84 = Above the surface of the WGS-84 ellipsoid (Ellipsoidal height)", + "type": "string", + "enum": [ + "AGL", + "AMSL", + "WGS84" + ] + }, + "lower": { + "description": "The value of the lower limit of the airspace layer expressed in metres (m) or feet (ft), in relation with the vertical datum specified in the lowerReference property. A positive value is interpreted as meaning \"above\" the reference surface.", + "type": "number" + }, + "lowerReference": { + "description": "A code indicating a vertical reference system. Allowed values:\nAGL = Above ground level (or above water surface, as applicable)\nAMSL = Above Mean Sea Level\nWGS84 = Above the surface of the WGS-84 ellipsoid (Ellipsoidal height)", + "type": "string", + "enum": [ + "AGL", + "AMSL", + "WGS84" + ] + }, + "uom": { + "description": "The unit of measurement in which the upper and lower values are expressed. Allowable values:\nm = metres\nft = feet\nIf this member is not specified, the units should be assumed to be metres.", + "type": "string", + "enum": [ + "m", + "ft" + ], + "default": "m" + } + } + } + } + } + ] + } + }, + "bbox": { + "type": "array", + "minItems": 4, + "items": { + "type": "number" + } + } + } + }, + { + "$schema": "http://json-schema.org/draft-07/schema#", + "title": "LayeredGeoJSON members", + "description": "A vertical layer extent for all standard GeoJSON geometries", + "type": "object", + "definitions": { + "verticalReference": { + "description": "A code indicating a vertical reference system. Allowed values:\nAGL = Above ground level (or above water surface, as applicable)\nAMSL = Above Mean Sea Level\nWGS84 = Above the surface of the WGS-84 ellipsoid (Ellipsoidal height)", + "type": "string", + "enum": [ + "AGL", + "AMSL", + "WGS84" + ] + } + }, + "properties": { + "layer": { + "type": "object", + "properties": { + "upper": { + "description": "The value of the upper limit of the airspace layer expressed in metres (m) or feet (ft), in relation with the vertical datum specified in the upperReference property. A positive value is interpreted as meaning \"above\" the reference surface.", + "type": "number" + }, + "upperReference": { + "description": "A code indicating a vertical reference system. Allowed values:\nAGL = Above ground level (or above water surface, as applicable)\nAMSL = Above Mean Sea Level\nWGS84 = Above the surface of the WGS-84 ellipsoid (Ellipsoidal height)", + "type": "string", + "enum": [ + "AGL", + "AMSL", + "WGS84" + ] + }, + "lower": { + "description": "The value of the lower limit of the airspace layer expressed in metres (m) or feet (ft), in relation with the vertical datum specified in the lowerReference property. A positive value is interpreted as meaning \"above\" the reference surface.", + "type": "number" + }, + "lowerReference": { + "description": "A code indicating a vertical reference system. Allowed values:\nAGL = Above ground level (or above water surface, as applicable)\nAMSL = Above Mean Sea Level\nWGS84 = Above the surface of the WGS-84 ellipsoid (Ellipsoidal height)", + "type": "string", + "enum": [ + "AGL", + "AMSL", + "WGS84" + ] + }, + "uom": { + "description": "The unit of measurement in which the upper and lower values are expressed. Allowable values:\nm = metres\nft = feet\nIf this member is not specified, the units should be assumed to be metres.", + "type": "string", + "enum": [ + "m", + "ft" + ], + "default": "m" + } + } + } + } + } + ] + } + ] + } + ] + }, + "bbox": { + "type": "array", + "minItems": 4, + "items": { + "type": "number" + } + } + } + } + } + } +} \ No newline at end of file